[{"answer": "SELECT COUNT(*) FROM head WHERE age > 56", "question": "How many heads of the departments are older than 56 ?", "context": "CREATE TABLE head (age INTEGER)"}, {"answer": "SELECT name, born_state, age FROM head ORDER BY age", "question": "List the name, born state and age of the heads of departments ordered by age.", "context": "CREATE TABLE head (name VARCHAR, born_state VARCHAR, age VARCHAR)"}, {"answer": "SELECT creation, name, budget_in_billions FROM department", "question": "List the creation year, name and budget of each department.", "context": "CREATE TABLE department (creation VARCHAR, name VARCHAR, budget_in_billions VARCHAR)"}, {"answer": "SELECT MAX(budget_in_billions), MIN(budget_in_billions) FROM department", "question": "What are the maximum and minimum budget of the departments?", "context": "CREATE TABLE department (budget_in_billions INTEGER)"}, {"answer": "SELECT AVG(num_employees) FROM department WHERE ranking BETWEEN 10 AND 15", "question": "What is the average number of employees of the departments whose rank is between 10 and 15?", "context": "CREATE TABLE department (num_employees INTEGER, ranking INTEGER)"}, {"answer": "SELECT name FROM head WHERE born_state <> 'California'", "question": "What are the names of the heads who are born outside the California state?", "context": "CREATE TABLE head (name VARCHAR, born_state VARCHAR)"}, {"answer": "SELECT DISTINCT T1.creation FROM department AS T1 JOIN management AS T2 ON T1.department_id = T2.department_id JOIN head AS T3 ON T2.head_id = T3.head_id WHERE T3.born_state = 'Alabama'", "question": "What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'?", "context": "CREATE TABLE department (creation VARCHAR, department_id VARCHAR); CREATE TABLE management (department_id VARCHAR, head_id VARCHAR); CREATE TABLE head (head_id VARCHAR, born_state VARCHAR)"}, {"answer": "SELECT born_state FROM head GROUP BY born_state HAVING COUNT(*) >= 3", "question": "What are the names of the states where at least 3 heads were born?", "context": "CREATE TABLE head (born_state VARCHAR)"}, {"answer": "SELECT creation FROM department GROUP BY creation ORDER BY COUNT(*) DESC LIMIT 1", "question": "In which year were most departments established?", "context": "CREATE TABLE department (creation VARCHAR)"}, {"answer": "SELECT T1.name, T1.num_employees FROM department AS T1 JOIN management AS T2 ON T1.department_id = T2.department_id WHERE T2.temporary_acting = 'Yes'", "question": "Show the name and number of employees for the departments managed by heads whose temporary acting value is 'Yes'?", "context": "CREATE TABLE management (department_id VARCHAR, temporary_acting VARCHAR); CREATE TABLE department (name VARCHAR, num_employees VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT temporary_acting) FROM management", "question": "How many acting statuses are there?", "context": "CREATE TABLE management (temporary_acting VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM department WHERE NOT department_id IN (SELECT department_id FROM management)", "question": "How many departments are led by heads who are not mentioned?", "context": "CREATE TABLE management (department_id VARCHAR); CREATE TABLE department (department_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.age FROM management AS T2 JOIN head AS T1 ON T1.head_id = T2.head_id WHERE T2.temporary_acting = 'Yes'", "question": "What are the distinct ages of the heads who are acting?", "context": "CREATE TABLE head (age VARCHAR, head_id VARCHAR); CREATE TABLE management (head_id VARCHAR, temporary_acting VARCHAR)"}, {"answer": "SELECT T3.born_state FROM department AS T1 JOIN management AS T2 ON T1.department_id = T2.department_id JOIN head AS T3 ON T2.head_id = T3.head_id WHERE T1.name = 'Treasury' INTERSECT SELECT T3.born_state FROM department AS T1 JOIN management AS T2 ON T1.department_id = T2.department_id JOIN head AS T3 ON T2.head_id = T3.head_id WHERE T1.name = 'Homeland Security'", "question": "List the states where both the secretary of 'Treasury' department and the secretary of 'Homeland Security' were born.", "context": "CREATE TABLE management (department_id VARCHAR, head_id VARCHAR); CREATE TABLE head (born_state VARCHAR, head_id VARCHAR); CREATE TABLE department (department_id VARCHAR, name VARCHAR)"}, {"answer": "SELECT T1.department_id, T1.name, COUNT(*) FROM management AS T2 JOIN department AS T1 ON T1.department_id = T2.department_id GROUP BY T1.department_id HAVING COUNT(*) > 1", "question": "Which department has more than 1 head at a time? List the id, name and the number of heads.", "context": "CREATE TABLE management (department_id VARCHAR); CREATE TABLE department (department_id VARCHAR, name VARCHAR)"}, {"answer": "SELECT head_id, name FROM head WHERE name LIKE '%Ha%'", "question": "Which head's name has the substring 'Ha'? List the id and name.", "context": "CREATE TABLE head (head_id VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM farm", "question": "How many farms are there?", "context": "CREATE TABLE farm (Id VARCHAR)"}, {"answer": "SELECT Total_Horses FROM farm ORDER BY Total_Horses", "question": "List the total number of horses on farms in ascending order.", "context": "CREATE TABLE farm (Total_Horses VARCHAR)"}, {"answer": "SELECT Hosts FROM farm_competition WHERE Theme <> 'Aliens'", "question": "What are the hosts of competitions whose theme is not \"Aliens\"?", "context": "CREATE TABLE farm_competition (Hosts VARCHAR, Theme VARCHAR)"}, {"answer": "SELECT Theme FROM farm_competition ORDER BY YEAR", "question": "What are the themes of farm competitions sorted by year in ascending order?", "context": "CREATE TABLE farm_competition (Theme VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT AVG(Working_Horses) FROM farm WHERE Total_Horses > 5000", "question": "What is the average number of working horses of farms with more than 5000 total number of horses?", "context": "CREATE TABLE farm (Working_Horses INTEGER, Total_Horses INTEGER)"}, {"answer": "SELECT MAX(Cows), MIN(Cows) FROM farm", "question": "What are the maximum and minimum number of cows across all farms.", "context": "CREATE TABLE farm (Cows INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT Status) FROM city", "question": "How many different statuses do cities have?", "context": "CREATE TABLE city (Status VARCHAR)"}, {"answer": "SELECT Official_Name FROM city ORDER BY Population DESC", "question": "List official names of cities in descending order of population.", "context": "CREATE TABLE city (Official_Name VARCHAR, Population VARCHAR)"}, {"answer": "SELECT Official_Name, Status FROM city ORDER BY Population DESC LIMIT 1", "question": "List the official name and status of the city with the largest population.", "context": "CREATE TABLE city (Official_Name VARCHAR, Status VARCHAR, Population VARCHAR)"}, {"answer": "SELECT T2.Year, T1.Official_Name FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID", "question": "Show the years and the official names of the host cities of competitions.", "context": "CREATE TABLE city (Official_Name VARCHAR, City_ID VARCHAR); CREATE TABLE farm_competition (Year VARCHAR, Host_city_ID VARCHAR)"}, {"answer": "SELECT T1.Official_Name FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID GROUP BY T2.Host_city_ID HAVING COUNT(*) > 1", "question": "Show the official names of the cities that have hosted more than one competition.", "context": "CREATE TABLE farm_competition (Host_city_ID VARCHAR); CREATE TABLE city (Official_Name VARCHAR, City_ID VARCHAR)"}, {"answer": "SELECT T1.Status FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID GROUP BY T2.Host_city_ID ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the status of the city that has hosted the greatest number of competitions.", "context": "CREATE TABLE city (Status VARCHAR, City_ID VARCHAR); CREATE TABLE farm_competition (Host_city_ID VARCHAR)"}, {"answer": "SELECT T2.Theme FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID WHERE T1.Population > 1000", "question": "Please show the themes of competitions with host cities having populations larger than 1000.", "context": "CREATE TABLE city (City_ID VARCHAR, Population INTEGER); CREATE TABLE farm_competition (Theme VARCHAR, Host_city_ID VARCHAR)"}, {"answer": "SELECT Status, AVG(Population) FROM city GROUP BY Status", "question": "Please show the different statuses of cities and the average population of cities with each status.", "context": "CREATE TABLE city (Status VARCHAR, Population INTEGER)"}, {"answer": "SELECT Status FROM city GROUP BY Status ORDER BY COUNT(*)", "question": "Please show the different statuses, ordered by the number of cities that have each.", "context": "CREATE TABLE city (Status VARCHAR)"}, {"answer": "SELECT Status FROM city GROUP BY Status ORDER BY COUNT(*) DESC LIMIT 1", "question": "List the most common type of Status across cities.", "context": "CREATE TABLE city (Status VARCHAR)"}, {"answer": "SELECT Official_Name FROM city WHERE NOT City_ID IN (SELECT Host_city_ID FROM farm_competition)", "question": "List the official names of cities that have not held any competition.", "context": "CREATE TABLE farm_competition (Official_Name VARCHAR, City_ID VARCHAR, Host_city_ID VARCHAR); CREATE TABLE city (Official_Name VARCHAR, City_ID VARCHAR, Host_city_ID VARCHAR)"}, {"answer": "SELECT Status FROM city WHERE Population > 1500 INTERSECT SELECT Status FROM city WHERE Population < 500", "question": "Show the status shared by cities with population bigger than 1500 and smaller than 500.", "context": "CREATE TABLE city (Status VARCHAR, Population INTEGER)"}, {"answer": "SELECT Official_Name FROM city WHERE Population > 1500 OR Population < 500", "question": "Find the official names of cities with population bigger than 1500 or smaller than 500.", "context": "CREATE TABLE city (Official_Name VARCHAR, Population VARCHAR)"}, {"answer": "SELECT Census_Ranking FROM city WHERE Status <> \"Village\"", "question": "Show the census ranking of cities whose status are not \"Village\".", "context": "CREATE TABLE city (Census_Ranking VARCHAR, Status VARCHAR)"}, {"answer": "SELECT T1.course_name FROM courses AS T1 JOIN student_course_registrations AS T2 ON T1.course_id = T2.course_Id GROUP BY T1.course_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "which course has most number of registered students?", "context": "CREATE TABLE courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE student_course_registrations (course_Id VARCHAR)"}, {"answer": "SELECT student_id FROM student_course_registrations GROUP BY student_id ORDER BY COUNT(*) LIMIT 1", "question": "what is id of students who registered some courses but the least number of courses in these students?", "context": "CREATE TABLE student_course_registrations (student_id VARCHAR)"}, {"answer": "SELECT T2.first_name, T2.last_name FROM candidates AS T1 JOIN people AS T2 ON T1.candidate_id = T2.person_id", "question": "what are the first name and last name of all candidates?", "context": "CREATE TABLE candidates (candidate_id VARCHAR); CREATE TABLE people (first_name VARCHAR, last_name VARCHAR, person_id VARCHAR)"}, {"answer": "SELECT student_id FROM students WHERE NOT student_id IN (SELECT student_id FROM student_course_attendance)", "question": "List the id of students who never attends courses?", "context": "CREATE TABLE student_course_attendance (student_id VARCHAR); CREATE TABLE students (student_id VARCHAR)"}, {"answer": "SELECT student_id FROM student_course_attendance", "question": "List the id of students who attended some courses?", "context": "CREATE TABLE student_course_attendance (student_id VARCHAR)"}, {"answer": "SELECT T1.student_id, T2.course_name FROM student_course_registrations AS T1 JOIN courses AS T2 ON T1.course_id = T2.course_id", "question": "What are the ids of all students for courses and what are the names of those courses?", "context": "CREATE TABLE courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE student_course_registrations (student_id VARCHAR, course_id VARCHAR)"}, {"answer": "SELECT T2.student_details FROM student_course_registrations AS T1 JOIN students AS T2 ON T1.student_id = T2.student_id ORDER BY T1.registration_date DESC LIMIT 1", "question": "What is detail of the student who most recently registered course?", "context": "CREATE TABLE student_course_registrations (student_id VARCHAR, registration_date VARCHAR); CREATE TABLE students (student_details VARCHAR, student_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM courses AS T1 JOIN student_course_attendance AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = \"English\"", "question": "How many students attend course English?", "context": "CREATE TABLE student_course_attendance (course_id VARCHAR); CREATE TABLE courses (course_id VARCHAR, course_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM courses AS T1 JOIN student_course_attendance AS T2 ON T1.course_id = T2.course_id WHERE T2.student_id = 171", "question": "How many courses do the student whose id is 171 attend?", "context": "CREATE TABLE courses (course_id VARCHAR); CREATE TABLE student_course_attendance (course_id VARCHAR, student_id VARCHAR)"}, {"answer": "SELECT T2.candidate_id FROM people AS T1 JOIN candidates AS T2 ON T1.person_id = T2.candidate_id WHERE T1.email_address = \"stanley.monahan@example.org\"", "question": "Find id of the candidate whose email is stanley.monahan@example.org?", "context": "CREATE TABLE candidates (candidate_id VARCHAR); CREATE TABLE people (person_id VARCHAR, email_address VARCHAR)"}, {"answer": "SELECT candidate_id FROM candidate_assessments ORDER BY assessment_date DESC LIMIT 1", "question": "Find id of the candidate who most recently accessed the course?", "context": "CREATE TABLE candidate_assessments (candidate_id VARCHAR, assessment_date VARCHAR)"}, {"answer": "SELECT T1.student_details FROM students AS T1 JOIN student_course_registrations AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is detail of the student who registered the most number of courses?", "context": "CREATE TABLE students (student_details VARCHAR, student_id VARCHAR); CREATE TABLE student_course_registrations (student_id VARCHAR)"}, {"answer": "SELECT T1.student_id, COUNT(*) FROM students AS T1 JOIN student_course_registrations AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id", "question": "List the id of students who registered some courses and the number of their registered courses?", "context": "CREATE TABLE students (student_id VARCHAR); CREATE TABLE student_course_registrations (student_id VARCHAR)"}, {"answer": "SELECT T3.course_name, COUNT(*) FROM students AS T1 JOIN student_course_registrations AS T2 ON T1.student_id = T2.student_id JOIN courses AS T3 ON T2.course_id = T3.course_id GROUP BY T2.course_id", "question": "How many registed students do each course have? List course name and the number of their registered students?", "context": "CREATE TABLE students (student_id VARCHAR); CREATE TABLE courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE student_course_registrations (course_id VARCHAR, student_id VARCHAR)"}, {"answer": "SELECT candidate_id FROM candidate_assessments WHERE asessment_outcome_code = \"Pass\"", "question": "Find id of candidates whose assessment code is \"Pass\"?", "context": "CREATE TABLE candidate_assessments (candidate_id VARCHAR, asessment_outcome_code VARCHAR)"}, {"answer": "SELECT T3.cell_mobile_number FROM candidates AS T1 JOIN candidate_assessments AS T2 ON T1.candidate_id = T2.candidate_id JOIN people AS T3 ON T1.candidate_id = T3.person_id WHERE T2.asessment_outcome_code = \"Fail\"", "question": "Find the cell mobile number of the candidates whose assessment code is \"Fail\"?", "context": "CREATE TABLE candidates (candidate_id VARCHAR); CREATE TABLE people (cell_mobile_number VARCHAR, person_id VARCHAR); CREATE TABLE candidate_assessments (candidate_id VARCHAR, asessment_outcome_code VARCHAR)"}, {"answer": "SELECT student_id FROM student_course_attendance WHERE course_id = 301", "question": "What are the id of students who registered course 301?", "context": "CREATE TABLE student_course_attendance (student_id VARCHAR, course_id VARCHAR)"}, {"answer": "SELECT student_id FROM student_course_attendance WHERE course_id = 301 ORDER BY date_of_attendance DESC LIMIT 1", "question": "What is the id of the student who most recently registered course 301?", "context": "CREATE TABLE student_course_attendance (student_id VARCHAR, course_id VARCHAR, date_of_attendance VARCHAR)"}, {"answer": "SELECT DISTINCT T1.city FROM addresses AS T1 JOIN people_addresses AS T2 ON T1.address_id = T2.address_id", "question": "Find distinct cities of addresses of people?", "context": "CREATE TABLE addresses (city VARCHAR, address_id VARCHAR); CREATE TABLE people_addresses (address_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.city FROM addresses AS T1 JOIN people_addresses AS T2 ON T1.address_id = T2.address_id JOIN students AS T3 ON T2.person_id = T3.student_id", "question": "Find distinct cities of address of students?", "context": "CREATE TABLE students (student_id VARCHAR); CREATE TABLE addresses (city VARCHAR, address_id VARCHAR); CREATE TABLE people_addresses (address_id VARCHAR, person_id VARCHAR)"}, {"answer": "SELECT course_name FROM courses ORDER BY course_name", "question": "List the names of courses in alphabetical order?", "context": "CREATE TABLE courses (course_name VARCHAR)"}, {"answer": "SELECT first_name FROM people ORDER BY first_name", "question": "List the first names of people in alphabetical order?", "context": "CREATE TABLE people (first_name VARCHAR)"}, {"answer": "SELECT student_id FROM student_course_registrations UNION SELECT student_id FROM student_course_attendance", "question": "What are the id of students who registered courses or attended courses?", "context": "CREATE TABLE student_course_attendance (student_id VARCHAR); CREATE TABLE student_course_registrations (student_id VARCHAR)"}, {"answer": "SELECT course_id FROM student_course_registrations WHERE student_id = 121 UNION SELECT course_id FROM student_course_attendance WHERE student_id = 121", "question": "Find the id of courses which are registered or attended by student whose id is 121?", "context": "CREATE TABLE student_course_attendance (course_id VARCHAR, student_id VARCHAR); CREATE TABLE student_course_registrations (course_id VARCHAR, student_id VARCHAR)"}, {"answer": "SELECT * FROM student_course_registrations WHERE NOT student_id IN (SELECT student_id FROM student_course_attendance)", "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 T2.student_id FROM courses AS T1 JOIN student_course_registrations AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = \"statistics\" ORDER BY T2.registration_date", "question": "List the id of students who registered course statistics in the order of registration date.", "context": "CREATE TABLE student_course_registrations (student_id VARCHAR, course_id VARCHAR, registration_date VARCHAR); CREATE TABLE courses (course_id VARCHAR, course_name VARCHAR)"}, {"answer": "SELECT T2.student_id FROM courses AS T1 JOIN student_course_attendance AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = \"statistics\" ORDER BY T2.date_of_attendance", "question": "List the id of students who attended  statistics courses in the order of attendance date.", "context": "CREATE TABLE student_course_attendance (student_id VARCHAR, course_id VARCHAR, date_of_attendance VARCHAR); CREATE TABLE courses (course_id VARCHAR, course_name VARCHAR)"}, {"answer": "SELECT date FROM weather WHERE max_temperature_f > 85", "question": "Give me the dates when the max temperature was higher than 85.", "context": "CREATE TABLE weather (date VARCHAR, max_temperature_f INTEGER)"}, {"answer": "SELECT name FROM station WHERE lat < 37.5", "question": "What are the names of stations that have latitude lower than 37.5?", "context": "CREATE TABLE station (name VARCHAR, lat INTEGER)"}, {"answer": "SELECT city, MAX(lat) FROM station GROUP BY city", "question": "For each city, return the highest latitude among its stations.", "context": "CREATE TABLE station (city VARCHAR, lat INTEGER)"}, {"answer": "SELECT start_station_name, end_station_name FROM trip ORDER BY id LIMIT 3", "question": "Give me the start station and end station for the trips with the three oldest id.", "context": "CREATE TABLE trip (start_station_name VARCHAR, end_station_name VARCHAR, id VARCHAR)"}, {"answer": "SELECT AVG(lat), AVG(long) FROM station WHERE city = \"San Jose\"", "question": "What is the average latitude and longitude of stations located in San Jose city?", "context": "CREATE TABLE station (lat INTEGER, long INTEGER, city VARCHAR)"}, {"answer": "SELECT id FROM trip ORDER BY duration LIMIT 1", "question": "What is the id of the trip that has the shortest duration?", "context": "CREATE TABLE trip (id VARCHAR, duration VARCHAR)"}, {"answer": "SELECT SUM(duration), MAX(duration) FROM trip WHERE bike_id = 636", "question": "What is the total and maximum duration of trips with bike id 636?", "context": "CREATE TABLE trip (duration INTEGER, bike_id VARCHAR)"}, {"answer": "SELECT zip_code, AVG(mean_temperature_f) FROM weather WHERE date LIKE \"8/%\" GROUP BY zip_code", "question": "For each zip code, return the average mean temperature of August there.", "context": "CREATE TABLE weather (zip_code VARCHAR, mean_temperature_f INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT bike_id) FROM trip", "question": "From the trip record, find the number of unique bikes.", "context": "CREATE TABLE trip (bike_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT city) FROM station", "question": "What is the number of distinct cities the stations are located at?", "context": "CREATE TABLE station (city VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM station WHERE city = \"Mountain View\"", "question": "How many stations does Mountain View city has?", "context": "CREATE TABLE station (city VARCHAR)"}, {"answer": "SELECT DISTINCT T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id WHERE T2.bikes_available = 7", "question": "Return the unique name for stations that have ever had 7 bikes available.", "context": "CREATE TABLE station (name VARCHAR, id VARCHAR); CREATE TABLE status (station_id VARCHAR, bikes_available VARCHAR)"}, {"answer": "SELECT start_station_name, start_station_id FROM trip WHERE start_date LIKE \"8/%\" GROUP BY start_station_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which start station had the most trips starting from August? Give me the name and id of the station.", "context": "CREATE TABLE trip (start_station_name VARCHAR, start_station_id VARCHAR, start_date VARCHAR)"}, {"answer": "SELECT bike_id FROM trip WHERE zip_code = 94002 GROUP BY bike_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which bike traveled the most often in zip code 94002?", "context": "CREATE TABLE trip (bike_id VARCHAR, zip_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM weather WHERE mean_humidity > 50 AND mean_visibility_miles > 8", "question": "How many days had both mean humidity above 50 and mean visibility above 8?", "context": "CREATE TABLE weather (mean_humidity VARCHAR, mean_visibility_miles VARCHAR)"}, {"answer": "SELECT T1.lat, T1.long, T1.city FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id ORDER BY T2.duration LIMIT 1", "question": "What is the latitude, longitude, city of the station from which the shortest trip started?", "context": "CREATE TABLE trip (start_station_id VARCHAR, duration VARCHAR); CREATE TABLE station (lat VARCHAR, long VARCHAR, city VARCHAR, id VARCHAR)"}, {"answer": "SELECT id FROM station WHERE city = \"San Francisco\" INTERSECT SELECT station_id FROM status GROUP BY station_id HAVING AVG(bikes_available) > 10", "question": "What are the ids of stations that are located in San Francisco and have average bike availability above 10.", "context": "CREATE TABLE status (id VARCHAR, station_id VARCHAR, city VARCHAR, bikes_available INTEGER); CREATE TABLE station (id VARCHAR, station_id VARCHAR, city VARCHAR, bikes_available INTEGER)"}, {"answer": "SELECT T1.name, T1.id FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id GROUP BY T2.station_id HAVING AVG(T2.bikes_available) > 14 UNION SELECT name, id FROM station WHERE installation_date LIKE \"12/%\"", "question": "What are the names and ids of stations that had more than 14 bikes available on average or were installed in December?", "context": "CREATE TABLE station (name VARCHAR, id VARCHAR); CREATE TABLE station (name VARCHAR, id VARCHAR, installation_date VARCHAR); CREATE TABLE status (station_id VARCHAR, bikes_available INTEGER)"}, {"answer": "SELECT cloud_cover FROM weather WHERE zip_code = 94107 GROUP BY cloud_cover ORDER BY COUNT(*) DESC LIMIT 3", "question": "What is the 3 most common cloud cover rates in the region of zip code 94107?", "context": "CREATE TABLE weather (cloud_cover VARCHAR, zip_code VARCHAR)"}, {"answer": "SELECT zip_code FROM weather GROUP BY zip_code ORDER BY AVG(mean_sea_level_pressure_inches) LIMIT 1", "question": "What is the zip code in which the average mean sea level pressure is the lowest?", "context": "CREATE TABLE weather (zip_code VARCHAR, mean_sea_level_pressure_inches INTEGER)"}, {"answer": "SELECT AVG(bikes_available) FROM status WHERE NOT station_id IN (SELECT id FROM station WHERE city = \"Palo Alto\")", "question": "What is the average bike availability in stations that are not located in Palo Alto?", "context": "CREATE TABLE status (bikes_available INTEGER, station_id VARCHAR, id VARCHAR, city VARCHAR); CREATE TABLE station (bikes_available INTEGER, station_id VARCHAR, id VARCHAR, city VARCHAR)"}, {"answer": "SELECT AVG(long) FROM station WHERE NOT id IN (SELECT station_id FROM status GROUP BY station_id HAVING MAX(bikes_available) > 10)", "question": "What is the average longitude of stations that never had bike availability more than 10?", "context": "CREATE TABLE station (long INTEGER, id VARCHAR, station_id VARCHAR, bikes_available INTEGER); CREATE TABLE status (long INTEGER, id VARCHAR, station_id VARCHAR, bikes_available INTEGER)"}, {"answer": "SELECT date, zip_code FROM weather WHERE max_temperature_f >= 80", "question": "When and in what zip code did max temperature reach 80?", "context": "CREATE TABLE weather (date VARCHAR, zip_code VARCHAR, max_temperature_f VARCHAR)"}, {"answer": "SELECT T1.id FROM trip AS T1 JOIN weather AS T2 ON T1.zip_code = T2.zip_code GROUP BY T2.zip_code HAVING AVG(T2.mean_temperature_f) > 60", "question": "Give me ids for all the trip that took place in a zip code area with average mean temperature above 60.", "context": "CREATE TABLE trip (id VARCHAR, zip_code VARCHAR); CREATE TABLE weather (zip_code VARCHAR, mean_temperature_f INTEGER)"}, {"answer": "SELECT zip_code, COUNT(*) FROM weather WHERE max_wind_Speed_mph >= 25 GROUP BY zip_code", "question": "For each zip code, return how many times max wind speed reached 25?", "context": "CREATE TABLE weather (zip_code VARCHAR, max_wind_Speed_mph VARCHAR)"}, {"answer": "SELECT date, zip_code FROM weather WHERE min_dew_point_f < (SELECT MIN(min_dew_point_f) FROM weather WHERE zip_code = 94107)", "question": "On which day and in which zip code was the min dew point lower than any day in zip code 94107?", "context": "CREATE TABLE weather (date VARCHAR, zip_code VARCHAR, min_dew_point_f INTEGER)"}, {"answer": "SELECT T1.id, T2.installation_date FROM trip AS T1 JOIN station AS T2 ON T1.end_station_id = T2.id", "question": "For each trip, return its ending station's installation date.", "context": "CREATE TABLE station (installation_date VARCHAR, id VARCHAR); CREATE TABLE trip (id VARCHAR, end_station_id VARCHAR)"}, {"answer": "SELECT T1.id FROM trip AS T1 JOIN station AS T2 ON T1.start_station_id = T2.id ORDER BY T2.dock_count DESC LIMIT 1", "question": "Which trip started from the station with the largest dock count? Give me the trip id.", "context": "CREATE TABLE trip (id VARCHAR, start_station_id VARCHAR); CREATE TABLE station (id VARCHAR, dock_count VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM trip AS T1 JOIN station AS T2 ON T1.end_station_id = T2.id WHERE T2.city <> \"San Francisco\"", "question": "Count the number of trips that did not end in San Francisco city.", "context": "CREATE TABLE trip (end_station_id VARCHAR); CREATE TABLE station (id VARCHAR, city VARCHAR)"}, {"answer": "SELECT date FROM weather WHERE zip_code = 94107 AND EVENTS <> \"Fog\" AND EVENTS <> \"Rain\"", "question": "In zip code 94107, on which day neither Fog nor Rain was not observed?", "context": "CREATE TABLE weather (date VARCHAR, EVENTS VARCHAR, zip_code VARCHAR)"}, {"answer": "SELECT id FROM station WHERE lat > 37.4 EXCEPT SELECT station_id FROM status GROUP BY station_id HAVING MIN(bikes_available) < 7", "question": "What are the ids of stations that have latitude above 37.4 and never had bike availability below 7?", "context": "CREATE TABLE status (id VARCHAR, station_id VARCHAR, lat INTEGER, bikes_available INTEGER); CREATE TABLE station (id VARCHAR, station_id VARCHAR, lat INTEGER, bikes_available INTEGER)"}, {"answer": "SELECT T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id GROUP BY T2.station_id HAVING AVG(bikes_available) > 10 EXCEPT SELECT name FROM station WHERE city = \"San Jose\"", "question": "What are names of stations that have average bike availability above 10 and are not located in San Jose city?", "context": "CREATE TABLE station (name VARCHAR, id VARCHAR); CREATE TABLE status (station_id VARCHAR); CREATE TABLE station (name VARCHAR, city VARCHAR, bikes_available INTEGER)"}, {"answer": "SELECT name, lat, city FROM station ORDER BY lat LIMIT 1", "question": "What are the name, latitude, and city of the station with the lowest latitude?", "context": "CREATE TABLE station (name VARCHAR, lat VARCHAR, city VARCHAR)"}, {"answer": "SELECT date, mean_temperature_f, mean_humidity FROM weather ORDER BY max_gust_speed_mph DESC LIMIT 3", "question": "What are the date, mean temperature and mean humidity for the top 3 days with the largest max gust speeds?", "context": "CREATE TABLE weather (date VARCHAR, mean_temperature_f VARCHAR, mean_humidity VARCHAR, max_gust_speed_mph VARCHAR)"}, {"answer": "SELECT city, COUNT(*) FROM station GROUP BY city HAVING COUNT(*) >= 15", "question": "List the name and the number of stations for all the cities that have at least 15 stations.", "context": "CREATE TABLE station (city VARCHAR)"}, {"answer": "SELECT start_station_id, start_station_name FROM trip GROUP BY start_station_name HAVING COUNT(*) >= 200", "question": "Find the ids and names of stations from which at least 200 trips started.", "context": "CREATE TABLE trip (start_station_id VARCHAR, start_station_name VARCHAR)"}, {"answer": "SELECT zip_code FROM weather GROUP BY zip_code HAVING AVG(mean_visibility_miles) < 10", "question": "Find the zip code in which the average mean visibility is lower than 10.", "context": "CREATE TABLE weather (zip_code VARCHAR, mean_visibility_miles INTEGER)"}, {"answer": "SELECT city FROM station GROUP BY city ORDER BY MAX(lat) DESC", "question": "List all the cities in a decreasing order of each city's stations' highest latitude.", "context": "CREATE TABLE station (city VARCHAR, lat INTEGER)"}, {"answer": "SELECT date, cloud_cover FROM weather ORDER BY cloud_cover DESC LIMIT 5", "question": "What are the dates that had the top 5 cloud cover rates? Also tell me the cloud cover rate.", "context": "CREATE TABLE weather (date VARCHAR, cloud_cover VARCHAR)"}, {"answer": "SELECT id, duration FROM trip ORDER BY duration DESC LIMIT 3", "question": "What are the ids and durations of the trips with the top 3 durations?", "context": "CREATE TABLE trip (id VARCHAR, duration VARCHAR)"}, {"answer": "SELECT T1.name, T1.long, AVG(T2.duration) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id GROUP BY T2.start_station_id", "question": "For each station, return its longitude and the average duration of trips that started from the station.", "context": "CREATE TABLE station (name VARCHAR, long VARCHAR, id VARCHAR); CREATE TABLE trip (duration INTEGER, start_station_id VARCHAR)"}, {"answer": "SELECT T1.name, T1.lat, MIN(T2.duration) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.end_station_id GROUP BY T2.end_station_id", "question": "For each station, find its latitude and the minimum duration of trips that ended at the station.", "context": "CREATE TABLE trip (duration INTEGER, end_station_id VARCHAR); CREATE TABLE station (name VARCHAR, lat VARCHAR, id VARCHAR)"}, {"answer": "SELECT DISTINCT start_station_name FROM trip WHERE duration < 100", "question": "List all the distinct stations from which a trip of duration below 100 started.", "context": "CREATE TABLE trip (start_station_name VARCHAR, duration INTEGER)"}, {"answer": "SELECT DISTINCT zip_code FROM weather EXCEPT SELECT DISTINCT zip_code FROM weather WHERE max_dew_point_f >= 70", "question": "Find all the zip codes in which the max dew point have never reached 70.", "context": "CREATE TABLE weather (zip_code VARCHAR, max_dew_point_f VARCHAR)"}, {"answer": "SELECT id FROM trip WHERE duration >= (SELECT AVG(duration) FROM trip WHERE zip_code = 94103)", "question": "Find the id for the trips that lasted at least as long as the average duration of trips in zip code 94103.", "context": "CREATE TABLE trip (id VARCHAR, duration INTEGER, zip_code VARCHAR)"}, {"answer": "SELECT date FROM weather WHERE mean_sea_level_pressure_inches BETWEEN 30.3 AND 31", "question": "What are the dates in which the mean sea level pressure was between 30.3 and 31?", "context": "CREATE TABLE weather (date VARCHAR, mean_sea_level_pressure_inches INTEGER)"}, {"answer": "SELECT date, max_temperature_f - min_temperature_f FROM weather ORDER BY max_temperature_f - min_temperature_f LIMIT 1", "question": "Find the day in which the difference between the max temperature and min temperature was the smallest. Also report the difference.", "context": "CREATE TABLE weather (date VARCHAR, max_temperature_f VARCHAR, min_temperature_f VARCHAR)"}, {"answer": "SELECT DISTINCT T1.id, T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id WHERE T2.bikes_available > 12", "question": "What are the id and name of the stations that have ever had more than 12 bikes available?", "context": "CREATE TABLE station (id VARCHAR, name VARCHAR); CREATE TABLE status (station_id VARCHAR, bikes_available INTEGER)"}, {"answer": "SELECT zip_code FROM weather GROUP BY zip_code HAVING AVG(mean_humidity) < 70 INTERSECT SELECT zip_code FROM trip GROUP BY zip_code HAVING COUNT(*) >= 100", "question": "Give me the zip code where the average mean humidity is below 70 and at least 100 trips took place.", "context": "CREATE TABLE weather (zip_code VARCHAR, mean_humidity INTEGER); CREATE TABLE trip (zip_code VARCHAR, mean_humidity INTEGER)"}, {"answer": "SELECT name FROM station WHERE city = \"Palo Alto\" EXCEPT SELECT end_station_name FROM trip GROUP BY end_station_name HAVING COUNT(*) > 100", "question": "What are the names of stations that are located in Palo Alto city but have never been the ending point of trips more than 100 times?", "context": "CREATE TABLE trip (name VARCHAR, end_station_name VARCHAR, city VARCHAR); CREATE TABLE station (name VARCHAR, end_station_name VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM station AS T1 JOIN trip AS T2 JOIN station AS T3 JOIN trip AS T4 ON T1.id = T2.start_station_id AND T2.id = T4.id AND T3.id = T4.end_station_id WHERE T1.city = \"Mountain View\" AND T3.city = \"Palo Alto\"", "question": "How many trips started from Mountain View city and ended at Palo Alto city?", "context": "CREATE TABLE station (city VARCHAR, id VARCHAR); CREATE TABLE trip (end_station_id VARCHAR, id VARCHAR); CREATE TABLE station (id VARCHAR, city VARCHAR); CREATE TABLE trip (start_station_id VARCHAR, id VARCHAR)"}, {"answer": "SELECT AVG(T1.lat), AVG(T1.long) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id", "question": "What is the average latitude and longitude of the starting points of all trips?", "context": "CREATE TABLE trip (start_station_id VARCHAR); CREATE TABLE station (lat INTEGER, long INTEGER, id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM book", "question": "How many books are there?", "context": "CREATE TABLE book (Id VARCHAR)"}, {"answer": "SELECT Writer FROM book ORDER BY Writer", "question": "List the writers of the books in ascending alphabetical order.", "context": "CREATE TABLE book (Writer VARCHAR)"}, {"answer": "SELECT Title FROM book ORDER BY Issues", "question": "List the titles of the books in ascending order of issues.", "context": "CREATE TABLE book (Title VARCHAR, Issues VARCHAR)"}, {"answer": "SELECT Title FROM book WHERE Writer <> \"Elaine Lee\"", "question": "What are the titles of the books whose writer is not \"Elaine Lee\"?", "context": "CREATE TABLE book (Title VARCHAR, Writer VARCHAR)"}, {"answer": "SELECT Title, Issues FROM book", "question": "What are the title and issues of the books?", "context": "CREATE TABLE book (Title VARCHAR, Issues VARCHAR)"}, {"answer": "SELECT Publication_Date FROM publication ORDER BY Price DESC", "question": "What are the dates of publications in descending order of price?", "context": "CREATE TABLE publication (Publication_Date VARCHAR, Price VARCHAR)"}, {"answer": "SELECT DISTINCT Publisher FROM publication WHERE Price > 5000000", "question": "What are the distinct publishers of publications with price higher than 5000000?", "context": "CREATE TABLE publication (Publisher VARCHAR, Price INTEGER)"}, {"answer": "SELECT Publisher FROM publication ORDER BY Price DESC LIMIT 1", "question": "List the publisher of the publication with the highest price.", "context": "CREATE TABLE publication (Publisher VARCHAR, Price VARCHAR)"}, {"answer": "SELECT Publication_Date FROM publication ORDER BY Price LIMIT 3", "question": "List the publication dates of publications with 3 lowest prices.", "context": "CREATE TABLE publication (Publication_Date VARCHAR, Price VARCHAR)"}, {"answer": "SELECT T1.Title, T2.Publication_Date FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID", "question": "Show the title and publication dates of books.", "context": "CREATE TABLE book (Title VARCHAR, Book_ID VARCHAR); CREATE TABLE publication (Publication_Date VARCHAR, Book_ID VARCHAR)"}, {"answer": "SELECT T1.Writer FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID WHERE T2.Price > 4000000", "question": "Show writers who have published a book with price more than 4000000.", "context": "CREATE TABLE publication (Book_ID VARCHAR, Price INTEGER); CREATE TABLE book (Writer VARCHAR, Book_ID VARCHAR)"}, {"answer": "SELECT T1.Title FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID ORDER BY T2.Price DESC", "question": "Show the titles of books in descending order of publication price.", "context": "CREATE TABLE publication (Book_ID VARCHAR, Price VARCHAR); CREATE TABLE book (Title VARCHAR, Book_ID VARCHAR)"}, {"answer": "SELECT Publisher FROM publication GROUP BY Publisher HAVING COUNT(*) > 1", "question": "Show publishers that have more than one publication.", "context": "CREATE TABLE publication (Publisher VARCHAR)"}, {"answer": "SELECT Publisher, COUNT(*) FROM publication GROUP BY Publisher", "question": "Show different publishers together with the number of publications they have.", "context": "CREATE TABLE publication (Publisher VARCHAR)"}, {"answer": "SELECT Publication_Date FROM publication GROUP BY Publication_Date ORDER BY COUNT(*) DESC LIMIT 1", "question": "Please show the most common publication date.", "context": "CREATE TABLE publication (Publication_Date VARCHAR)"}, {"answer": "SELECT Writer FROM book GROUP BY Writer HAVING COUNT(*) > 1", "question": "List the writers who have written more than one book.", "context": "CREATE TABLE book (Writer VARCHAR)"}, {"answer": "SELECT Title FROM book WHERE NOT Book_ID IN (SELECT Book_ID FROM publication)", "question": "List the titles of books that are not published.", "context": "CREATE TABLE book (Title VARCHAR, Book_ID VARCHAR); CREATE TABLE publication (Title VARCHAR, Book_ID VARCHAR)"}, {"answer": "SELECT Publisher FROM publication WHERE Price > 10000000 INTERSECT SELECT Publisher FROM publication WHERE Price < 5000000", "question": "Show the publishers that have publications with price higher than 10000000 and publications with price lower than 5000000.", "context": "CREATE TABLE publication (Publisher VARCHAR, Price INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT Publication_Date) FROM publication", "question": "What is the number of distinct publication dates?", "context": "CREATE TABLE publication (Publication_Date VARCHAR)"}, {"answer": "SELECT Price FROM publication WHERE Publisher = \"Person\" OR Publisher = \"Wiley\"", "question": "Show the prices of publications whose publisher is either \"Person\" or \"Wiley\"", "context": "CREATE TABLE publication (Price VARCHAR, Publisher VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM actor", "question": "How many actors are there?", "context": "CREATE TABLE actor (Id VARCHAR)"}, {"answer": "SELECT Name FROM actor ORDER BY Name", "question": "List the name of actors in ascending alphabetical order.", "context": "CREATE TABLE actor (Name VARCHAR)"}, {"answer": "SELECT Character, Duration FROM actor", "question": "What are the characters and duration of actors?", "context": "CREATE TABLE actor (Character VARCHAR, Duration VARCHAR)"}, {"answer": "SELECT Name FROM actor WHERE Age <> 20", "question": "List the name of actors whose age is not 20.", "context": "CREATE TABLE actor (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Character FROM actor ORDER BY age DESC", "question": "What are the characters of actors in descending order of age?", "context": "CREATE TABLE actor (Character VARCHAR, age VARCHAR)"}, {"answer": "SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1", "question": "What is the duration of the oldest actor?", "context": "CREATE TABLE actor (Duration VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Name FROM musical WHERE Nominee = \"Bob Fosse\"", "question": "What are the names of musicals with nominee \"Bob Fosse\"?", "context": "CREATE TABLE musical (Name VARCHAR, Nominee VARCHAR)"}, {"answer": "SELECT DISTINCT Nominee FROM musical WHERE Award <> \"Tony Award\"", "question": "What are the distinct nominees of the musicals with the award that is not \"Tony Award\"?", "context": "CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR)"}, {"answer": "SELECT T1.Name, T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID", "question": "Show names of actors and names of musicals they are in.", "context": "CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID WHERE T2.Name = \"The Phantom of the Opera\"", "question": "Show names of actors that have appeared in musical with name \"The Phantom of the Opera\".", "context": "CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Musical_ID VARCHAR, Name VARCHAR)"}, {"answer": "SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID ORDER BY T2.Year DESC", "question": "Show names of actors in descending order of the year their musical is awarded.", "context": "CREATE TABLE musical (Musical_ID VARCHAR, Year VARCHAR); CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR)"}, {"answer": "SELECT T2.Name, COUNT(*) FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID", "question": "Show names of musicals and the number of actors who have appeared in the musicals.", "context": "CREATE TABLE actor (Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID HAVING COUNT(*) >= 3", "question": "Show names of musicals which have at least three actors.", "context": "CREATE TABLE actor (Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR)"}, {"answer": "SELECT Nominee, COUNT(*) FROM musical GROUP BY Nominee", "question": "Show different nominees and the number of musicals they have been nominated.", "context": "CREATE TABLE musical (Nominee VARCHAR)"}, {"answer": "SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1", "question": "Please show the nominee who has been nominated the greatest number of times.", "context": "CREATE TABLE musical (Nominee VARCHAR)"}, {"answer": "SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1", "question": "List the most common result of the musicals.", "context": "CREATE TABLE musical (RESULT VARCHAR)"}, {"answer": "SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*) > 2", "question": "List the nominees that have been nominated more than two musicals.", "context": "CREATE TABLE musical (Nominee VARCHAR)"}, {"answer": "SELECT Name FROM musical WHERE NOT Musical_ID IN (SELECT Musical_ID FROM actor)", "question": "List the name of musicals that do not have actors.", "context": "CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR)"}, {"answer": "SELECT Nominee FROM musical WHERE Award = \"Tony Award\" INTERSECT SELECT Nominee FROM musical WHERE Award = \"Drama Desk Award\"", "question": "Show the nominees that have nominated musicals for both \"Tony Award\" and \"Drama Desk Award\".", "context": "CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR)"}, {"answer": "SELECT Nominee FROM musical WHERE Award = \"Tony Award\" OR Award = \"Cleavant Derricks\"", "question": "Show the musical nominee with award \"Bob Fosse\" or \"Cleavant Derricks\".", "context": "CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR)"}, {"answer": "SELECT email FROM user_profiles WHERE name = 'Mary'", "question": "Find the emails of the user named \"Mary\".", "context": "CREATE TABLE user_profiles (email VARCHAR, name VARCHAR)"}, {"answer": "SELECT partitionid FROM user_profiles WHERE name = 'Iron Man'", "question": "What is the partition id of the user named \"Iron Man\".", "context": "CREATE TABLE user_profiles (partitionid VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM user_profiles", "question": "How many users are there?", "context": "CREATE TABLE user_profiles (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM follows", "question": "How many followers does each user have?", "context": "CREATE TABLE follows (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM follows GROUP BY f1", "question": "Find the number of followers for each user.", "context": "CREATE TABLE follows (f1 VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM tweets", "question": "Find the number of tweets in record.", "context": "CREATE TABLE tweets (Id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT UID) FROM tweets", "question": "Find the number of users who posted some tweets.", "context": "CREATE TABLE tweets (UID VARCHAR)"}, {"answer": "SELECT name, email FROM user_profiles WHERE name LIKE '%Swift%'", "question": "Find the name and email of the user whose name contains the word \u2018Swift\u2019.", "context": "CREATE TABLE user_profiles (name VARCHAR, email VARCHAR)"}, {"answer": "SELECT name FROM user_profiles WHERE email LIKE '%superstar%' OR email LIKE '%edu%'", "question": "Find the names of users whose emails contain \u2018superstar\u2019 or \u2018edu\u2019.", "context": "CREATE TABLE user_profiles (name VARCHAR, email VARCHAR)"}, {"answer": "SELECT text FROM tweets WHERE text LIKE '%intern%'", "question": "Return the text of tweets about the topic 'intern'.", "context": "CREATE TABLE tweets (text VARCHAR)"}, {"answer": "SELECT name, email FROM user_profiles WHERE followers > 1000", "question": "Find the name and email of the users who have more than 1000 followers.", "context": "CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, followers INTEGER)"}, {"answer": "SELECT T1.name FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f1 GROUP BY T2.f1 HAVING COUNT(*) > (SELECT COUNT(*) FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f1 WHERE T1.name = 'Tyler Swift')", "question": "Find the names of the users whose number of followers is greater than that of the user named \"Tyler Swift\".", "context": "CREATE TABLE follows (f1 VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR)"}, {"answer": "SELECT T1.name, T1.email FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f1 GROUP BY T2.f1 HAVING COUNT(*) > 1", "question": "Find the name and email for the users who have more than one follower.", "context": "CREATE TABLE follows (f1 VARCHAR); CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, uid VARCHAR)"}, {"answer": "SELECT T1.name FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING COUNT(*) > 1", "question": "Find the names of users who have more than one tweet.", "context": "CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR)"}, {"answer": "SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = \"Mary\" INTERSECT SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = \"Susan\"", "question": "Find the id of users who are followed by Mary and Susan.", "context": "CREATE TABLE follows (f1 VARCHAR, f2 VARCHAR); CREATE TABLE user_profiles (uid VARCHAR, name VARCHAR)"}, {"answer": "SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = \"Mary\" OR T1.name = \"Susan\"", "question": "Find the id of users who are followed by Mary or Susan.", "context": "CREATE TABLE follows (f1 VARCHAR, f2 VARCHAR); CREATE TABLE user_profiles (uid VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 1", "question": "Find the name of the user who has the largest number of followers.", "context": "CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR)"}, {"answer": "SELECT name, email FROM user_profiles ORDER BY followers LIMIT 1", "question": "Find the name and email of the user followed by the least number of people.", "context": "CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, followers VARCHAR)"}, {"answer": "SELECT name, followers FROM user_profiles ORDER BY followers DESC", "question": "List the name and number of followers for each user, and sort the results by the number of followers in descending order.", "context": "CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR)"}, {"answer": "SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 5", "question": "List the names of 5 users followed by the largest number of other users.", "context": "CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR)"}, {"answer": "SELECT text FROM tweets ORDER BY createdate", "question": "List the text of all tweets in the order of date.", "context": "CREATE TABLE tweets (text VARCHAR, createdate VARCHAR)"}, {"answer": "SELECT T1.name, COUNT(*) FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid", "question": "Find the name of each user and number of tweets tweeted by each of them.", "context": "CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR)"}, {"answer": "SELECT T1.name, T1.partitionid FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING COUNT(*) < 2", "question": "Find the name and partition id for users who tweeted less than twice.", "context": "CREATE TABLE user_profiles (name VARCHAR, partitionid VARCHAR, uid VARCHAR); CREATE TABLE tweets (uid VARCHAR)"}, {"answer": "SELECT T1.name, COUNT(*) FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING COUNT(*) > 1", "question": "Find the name of the user who tweeted more than once, and number of tweets tweeted by them.", "context": "CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR)"}, {"answer": "SELECT AVG(followers) FROM user_profiles WHERE NOT UID IN (SELECT UID FROM tweets)", "question": "Find the average number of followers for the users who do not have any tweet.", "context": "CREATE TABLE user_profiles (followers INTEGER, UID VARCHAR); CREATE TABLE tweets (followers INTEGER, UID VARCHAR)"}, {"answer": "SELECT AVG(followers) FROM user_profiles WHERE UID IN (SELECT UID FROM tweets)", "question": "Find the average number of followers for the users who had some tweets.", "context": "CREATE TABLE user_profiles (followers INTEGER, UID VARCHAR); CREATE TABLE tweets (followers INTEGER, UID VARCHAR)"}, {"answer": "SELECT MAX(followers), SUM(followers) FROM user_profiles", "question": "Find the maximum and total number of followers of all users.", "context": "CREATE TABLE user_profiles (followers INTEGER)"}, {"answer": "SELECT DISTINCT (catalog_entry_name) FROM catalog_contents", "question": "Find the names of all the catalog entries.", "context": "CREATE TABLE catalog_contents (catalog_entry_name VARCHAR)"}, {"answer": "SELECT attribute_data_type FROM Attribute_Definitions GROUP BY attribute_data_type HAVING COUNT(*) > 3", "question": "Find the list of attribute data types possessed by more than 3 attribute definitions.", "context": "CREATE TABLE Attribute_Definitions (attribute_data_type VARCHAR)"}, {"answer": "SELECT attribute_data_type FROM Attribute_Definitions WHERE attribute_name = \"Green\"", "question": "What is the attribute data type of the attribute with name \"Green\"?", "context": "CREATE TABLE Attribute_Definitions (attribute_data_type VARCHAR, attribute_name VARCHAR)"}, {"answer": "SELECT catalog_level_name, catalog_level_number FROM Catalog_Structure WHERE catalog_level_number BETWEEN 5 AND 10", "question": "Find the name and level of catalog structure with level between 5 and 10.", "context": "CREATE TABLE Catalog_Structure (catalog_level_name VARCHAR, catalog_level_number INTEGER)"}, {"answer": "SELECT DISTINCT (catalog_publisher) FROM catalogs WHERE catalog_publisher LIKE \"%Murray%\"", "question": "Find all the catalog publishers whose name contains \"Murray\"", "context": "CREATE TABLE catalogs (catalog_publisher VARCHAR)"}, {"answer": "SELECT catalog_publisher FROM catalogs GROUP BY catalog_publisher ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which catalog publisher has published the most catalogs?", "context": "CREATE TABLE catalogs (catalog_publisher VARCHAR)"}, {"answer": "SELECT t1.catalog_name, t1.date_of_publication FROM catalogs AS t1 JOIN catalog_structure AS t2 ON t1.catalog_id = t2.catalog_id WHERE catalog_level_number > 5", "question": "Find the names and publication dates of all catalogs that have catalog level number greater than 5.", "context": "CREATE TABLE catalogs (catalog_name VARCHAR, date_of_publication VARCHAR, catalog_id VARCHAR); CREATE TABLE catalog_structure (catalog_id VARCHAR)"}, {"answer": "SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.attribute_value = (SELECT attribute_value FROM Catalog_Contents_Additional_Attributes GROUP BY attribute_value ORDER BY COUNT(*) DESC LIMIT 1)", "question": "What are the entry names of catalog with the attribute possessed by most entries.", "context": "CREATE TABLE Catalog_Contents_Additional_Attributes (catalog_entry_id VARCHAR, attribute_value VARCHAR); CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, catalog_entry_id VARCHAR); CREATE TABLE Catalog_Contents_Additional_Attributes (attribute_value VARCHAR)"}, {"answer": "SELECT catalog_entry_name FROM catalog_contents ORDER BY price_in_dollars DESC LIMIT 1", "question": "What is the entry name of the most expensive catalog (in USD)?", "context": "CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, price_in_dollars VARCHAR)"}, {"answer": "SELECT t2.catalog_level_name FROM catalog_contents AS t1 JOIN catalog_structure AS t2 ON t1.catalog_level_number = t2.catalog_level_number ORDER BY t1.price_in_dollars LIMIT 1", "question": "What is the level name of the cheapest catalog (in USD)?", "context": "CREATE TABLE catalog_structure (catalog_level_name VARCHAR, catalog_level_number VARCHAR); CREATE TABLE catalog_contents (catalog_level_number VARCHAR, price_in_dollars VARCHAR)"}, {"answer": "SELECT AVG(price_in_euros), MIN(price_in_euros) FROM catalog_contents", "question": "What are the average and minimum price (in Euro) of all products?", "context": "CREATE TABLE catalog_contents (price_in_euros INTEGER)"}, {"answer": "SELECT catalog_entry_name FROM catalog_contents ORDER BY height DESC LIMIT 1", "question": "What is the product with the highest height? Give me the catalog entry name.", "context": "CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, height VARCHAR)"}, {"answer": "SELECT catalog_entry_name FROM catalog_contents ORDER BY capacity LIMIT 1", "question": "Find the name of the product that has the smallest capacity.", "context": "CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT catalog_entry_name FROM catalog_contents WHERE product_stock_number LIKE \"2%\"", "question": "Find the names of all the products whose stock number starts with \"2\".", "context": "CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, product_stock_number VARCHAR)"}, {"answer": "SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.catalog_level_number = \"8\"", "question": "Find the names of catalog entries with level number 8.", "context": "CREATE TABLE Catalog_Contents_Additional_Attributes (catalog_entry_id VARCHAR, catalog_level_number VARCHAR); CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, catalog_entry_id VARCHAR)"}, {"answer": "SELECT catalog_entry_name FROM catalog_contents WHERE LENGTH < 3 OR width > 5", "question": "Find the names of the products with length smaller than 3 or height greater than 5.", "context": "CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, LENGTH VARCHAR, width VARCHAR)"}, {"answer": "SELECT t1.attribute_name, t1.attribute_id FROM Attribute_Definitions AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.attribute_id = t2.attribute_id WHERE t2.attribute_value = 0", "question": "Find the name and attribute ID of the attribute definitions with attribute value 0.", "context": "CREATE TABLE Catalog_Contents_Additional_Attributes (attribute_id VARCHAR, attribute_value VARCHAR); CREATE TABLE Attribute_Definitions (attribute_name VARCHAR, attribute_id VARCHAR)"}, {"answer": "SELECT catalog_entry_name, capacity FROM Catalog_Contents WHERE price_in_dollars > 700", "question": "Find the name and capacity of products with price greater than 700 (in USD).", "context": "CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, capacity VARCHAR, price_in_dollars INTEGER)"}, {"answer": "SELECT date_of_latest_revision FROM Catalogs GROUP BY date_of_latest_revision HAVING COUNT(*) > 1", "question": "Find the dates on which more than one revisions were made.", "context": "CREATE TABLE Catalogs (date_of_latest_revision VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM catalog_contents", "question": "How many products are there in the records?", "context": "CREATE TABLE catalog_contents (Id VARCHAR)"}, {"answer": "SELECT catalog_entry_name FROM catalog_contents WHERE next_entry_id > 8", "question": "Name all the products with next entry ID greater than 8.", "context": "CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, next_entry_id INTEGER)"}, {"answer": "SELECT COUNT(*) FROM Aircraft", "question": "How many aircrafts do we have?", "context": "CREATE TABLE Aircraft (Id VARCHAR)"}, {"answer": "SELECT name, distance FROM Aircraft", "question": "Show name and distance for all aircrafts.", "context": "CREATE TABLE Aircraft (name VARCHAR, distance VARCHAR)"}, {"answer": "SELECT aid FROM Aircraft WHERE distance > 1000", "question": "Show ids for all aircrafts with more than 1000 distance.", "context": "CREATE TABLE Aircraft (aid VARCHAR, distance INTEGER)"}, {"answer": "SELECT COUNT(*) FROM Aircraft WHERE distance BETWEEN 1000 AND 5000", "question": "How many aircrafts have distance between 1000 and 5000?", "context": "CREATE TABLE Aircraft (distance INTEGER)"}, {"answer": "SELECT name, distance FROM Aircraft WHERE aid = 12", "question": "What is the name and distance for aircraft with id 12?", "context": "CREATE TABLE Aircraft (name VARCHAR, distance VARCHAR, aid VARCHAR)"}, {"answer": "SELECT MIN(distance), AVG(distance), MAX(distance) FROM Aircraft", "question": "What is the minimum, average, and maximum distance of all aircrafts.", "context": "CREATE TABLE Aircraft (distance INTEGER)"}, {"answer": "SELECT aid, name FROM Aircraft ORDER BY distance DESC LIMIT 1", "question": "Show the id and name of the aircraft with the maximum distance.", "context": "CREATE TABLE Aircraft (aid VARCHAR, name VARCHAR, distance VARCHAR)"}, {"answer": "SELECT name FROM Aircraft ORDER BY distance LIMIT 3", "question": "Show the name of aircrafts with top three lowest distances.", "context": "CREATE TABLE Aircraft (name VARCHAR, distance VARCHAR)"}, {"answer": "SELECT name FROM Aircraft WHERE distance > (SELECT AVG(distance) FROM Aircraft)", "question": "Show names for all aircrafts with distances more than the average.", "context": "CREATE TABLE Aircraft (name VARCHAR, distance INTEGER)"}, {"answer": "SELECT COUNT(*) FROM Employee", "question": "How many employees do we have?", "context": "CREATE TABLE Employee (Id VARCHAR)"}, {"answer": "SELECT name, salary FROM Employee ORDER BY salary", "question": "Show name and salary for all employees sorted by salary.", "context": "CREATE TABLE Employee (name VARCHAR, salary VARCHAR)"}, {"answer": "SELECT eid FROM Employee WHERE salary > 100000", "question": "Show ids for all employees with at least 100000 salary.", "context": "CREATE TABLE Employee (eid VARCHAR, salary INTEGER)"}, {"answer": "SELECT COUNT(*) FROM Employee WHERE salary BETWEEN 100000 AND 200000", "question": "How many employees have salary between 100000 and 200000?", "context": "CREATE TABLE Employee (salary INTEGER)"}, {"answer": "SELECT name, salary FROM Employee WHERE eid = 242518965", "question": "What is the name and salary for employee with id 242518965?", "context": "CREATE TABLE Employee (name VARCHAR, salary VARCHAR, eid VARCHAR)"}, {"answer": "SELECT AVG(salary), MAX(salary) FROM Employee", "question": "What is average and maximum salary of all employees.", "context": "CREATE TABLE Employee (salary INTEGER)"}, {"answer": "SELECT eid, name FROM Employee ORDER BY salary DESC LIMIT 1", "question": "Show the id and name of the employee with maximum salary.", "context": "CREATE TABLE Employee (eid VARCHAR, name VARCHAR, salary VARCHAR)"}, {"answer": "SELECT name FROM Employee ORDER BY salary LIMIT 3", "question": "Show the name of employees with three lowest salaries.", "context": "CREATE TABLE Employee (name VARCHAR, salary VARCHAR)"}, {"answer": "SELECT name FROM Employee WHERE salary > (SELECT AVG(salary) FROM Employee)", "question": "Show names for all employees with salary more than the average.", "context": "CREATE TABLE Employee (name VARCHAR, salary INTEGER)"}, {"answer": "SELECT eid, salary FROM Employee WHERE name = 'Mark Young'", "question": "Show the id and salary of Mark Young.", "context": "CREATE TABLE Employee (eid VARCHAR, salary VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Flight", "question": "How many flights do we have?", "context": "CREATE TABLE Flight (Id VARCHAR)"}, {"answer": "SELECT flno, origin, destination FROM Flight ORDER BY origin", "question": "Show flight number, origin, destination of all flights in the alphabetical order of the departure cities.", "context": "CREATE TABLE Flight (flno VARCHAR, origin VARCHAR, destination VARCHAR)"}, {"answer": "SELECT flno FROM Flight WHERE origin = \"Los Angeles\"", "question": "Show all flight number from Los Angeles.", "context": "CREATE TABLE Flight (flno VARCHAR, origin VARCHAR)"}, {"answer": "SELECT origin FROM Flight WHERE destination = \"Honolulu\"", "question": "Show origins of all flights with destination Honolulu.", "context": "CREATE TABLE Flight (origin VARCHAR, destination VARCHAR)"}, {"answer": "SELECT departure_date, arrival_date FROM Flight WHERE origin = \"Los Angeles\" AND destination = \"Honolulu\"", "question": "Show me the departure date and arrival date for all flights from Los Angeles to Honolulu.", "context": "CREATE TABLE Flight (departure_date VARCHAR, arrival_date VARCHAR, origin VARCHAR, destination VARCHAR)"}, {"answer": "SELECT flno FROM Flight WHERE distance > 2000", "question": "Show flight number for all flights with more than 2000 distance.", "context": "CREATE TABLE Flight (flno VARCHAR, distance INTEGER)"}, {"answer": "SELECT AVG(price) FROM Flight WHERE origin = \"Los Angeles\" AND destination = \"Honolulu\"", "question": "What is the average price for flights from Los Angeles to Honolulu.", "context": "CREATE TABLE Flight (price INTEGER, origin VARCHAR, destination VARCHAR)"}, {"answer": "SELECT origin, destination FROM Flight WHERE price > 300", "question": "Show origin and destination for flights with price higher than 300.", "context": "CREATE TABLE Flight (origin VARCHAR, destination VARCHAR, price INTEGER)"}, {"answer": "SELECT flno, distance FROM Flight ORDER BY price DESC LIMIT 1", "question": "Show the flight number and distance of the flight with maximum price.", "context": "CREATE TABLE Flight (flno VARCHAR, distance VARCHAR, price VARCHAR)"}, {"answer": "SELECT flno FROM Flight ORDER BY distance LIMIT 3", "question": "Show the flight number of flights with three lowest distances.", "context": "CREATE TABLE Flight (flno VARCHAR, distance VARCHAR)"}, {"answer": "SELECT AVG(distance), AVG(price) FROM Flight WHERE origin = \"Los Angeles\"", "question": "What is the average distance and average price for flights from Los Angeles.", "context": "CREATE TABLE Flight (distance INTEGER, price INTEGER, origin VARCHAR)"}, {"answer": "SELECT origin, COUNT(*) FROM Flight GROUP BY origin", "question": "Show all origins and the number of flights from each origin.", "context": "CREATE TABLE Flight (origin VARCHAR)"}, {"answer": "SELECT destination, COUNT(*) FROM Flight GROUP BY destination", "question": "Show all destinations and the number of flights to each destination.", "context": "CREATE TABLE Flight (destination VARCHAR)"}, {"answer": "SELECT origin FROM Flight GROUP BY origin ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which origin has most number of flights?", "context": "CREATE TABLE Flight (origin VARCHAR)"}, {"answer": "SELECT destination FROM Flight GROUP BY destination ORDER BY COUNT(*) LIMIT 1", "question": "Which destination has least number of flights?", "context": "CREATE TABLE Flight (destination VARCHAR)"}, {"answer": "SELECT T2.name FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid WHERE T1.flno = 99", "question": "What is the aircraft name for the flight with number 99", "context": "CREATE TABLE Flight (aid VARCHAR, flno VARCHAR); CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR)"}, {"answer": "SELECT T1.flno FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid WHERE T2.name = \"Airbus A340-300\"", "question": "Show all flight numbers with aircraft Airbus A340-300.", "context": "CREATE TABLE Flight (flno VARCHAR, aid VARCHAR); CREATE TABLE Aircraft (aid VARCHAR, name VARCHAR)"}, {"answer": "SELECT T2.name, COUNT(*) FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid GROUP BY T1.aid", "question": "Show aircraft names and number of flights for each aircraft.", "context": "CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR); CREATE TABLE Flight (aid VARCHAR)"}, {"answer": "SELECT T2.name FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid GROUP BY T1.aid HAVING COUNT(*) >= 2", "question": "Show names for all aircraft with at least two flights.", "context": "CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR); CREATE TABLE Flight (aid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT eid) FROM Certificate", "question": "How many employees have certificate.", "context": "CREATE TABLE Certificate (eid VARCHAR)"}, {"answer": "SELECT eid FROM Employee EXCEPT SELECT eid FROM Certificate", "question": "Show ids for all employees who don't have a certificate.", "context": "CREATE TABLE Employee (eid VARCHAR); CREATE TABLE Certificate (eid VARCHAR)"}, {"answer": "SELECT T3.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T1.name = \"John Williams\"", "question": "Show names for all aircrafts of which John Williams has certificates.", "context": "CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR); CREATE TABLE Employee (eid VARCHAR, name VARCHAR); CREATE TABLE Certificate (eid VARCHAR, aid VARCHAR)"}, {"answer": "SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = \"Boeing 737-800\"", "question": "Show names for all employees who have certificate of Boeing 737-800.", "context": "CREATE TABLE Employee (name VARCHAR, eid VARCHAR); CREATE TABLE Certificate (eid VARCHAR, aid VARCHAR); CREATE TABLE Aircraft (aid VARCHAR, name VARCHAR)"}, {"answer": "SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = \"Boeing 737-800\" INTERSECT SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = \"Airbus A340-300\"", "question": "Show names for all employees who have certificates on both Boeing 737-800 and Airbus A340-300.", "context": "CREATE TABLE Employee (name VARCHAR, eid VARCHAR); CREATE TABLE Certificate (eid VARCHAR, aid VARCHAR); CREATE TABLE Aircraft (aid VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM Employee EXCEPT SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = \"Boeing 737-800\"", "question": "Show names for all employees who do not have certificate of Boeing 737-800.", "context": "CREATE TABLE Certificate (eid VARCHAR, aid VARCHAR); CREATE TABLE Employee (name VARCHAR, eid VARCHAR); CREATE TABLE Employee (name VARCHAR); CREATE TABLE Aircraft (aid VARCHAR, name VARCHAR)"}, {"answer": "SELECT T2.name FROM Certificate AS T1 JOIN Aircraft AS T2 ON T2.aid = T1.aid GROUP BY T1.aid ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the name of aircraft which fewest people have its certificate.", "context": "CREATE TABLE Certificate (aid VARCHAR); CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR)"}, {"answer": "SELECT T2.name FROM Certificate AS T1 JOIN Aircraft AS T2 ON T2.aid = T1.aid WHERE T2.distance > 5000 GROUP BY T1.aid ORDER BY COUNT(*) >= 5", "question": "Show the name and distance of the aircrafts with more than 5000 distance and which at least 5 people have its certificate.", "context": "CREATE TABLE Certificate (aid VARCHAR); CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR, distance INTEGER)"}, {"answer": "SELECT T1.name, T1.salary FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid GROUP BY T1.eid ORDER BY COUNT(*) DESC LIMIT 1", "question": "what is the salary and name of the employee who has the most number of aircraft certificates?", "context": "CREATE TABLE Certificate (eid VARCHAR); CREATE TABLE Employee (name VARCHAR, salary VARCHAR, eid VARCHAR)"}, {"answer": "SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.distance > 5000 GROUP BY T1.eid ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the salary and name of the employee who has the most number of certificates on aircrafts with distance more than 5000?", "context": "CREATE TABLE Aircraft (aid VARCHAR, distance INTEGER); CREATE TABLE Employee (name VARCHAR, eid VARCHAR); CREATE TABLE Certificate (eid VARCHAR, aid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT allergy) FROM Allergy_type", "question": "How many allergies are there?", "context": "CREATE TABLE Allergy_type (allergy VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT allergytype) FROM Allergy_type", "question": "How many different allergy types exist?", "context": "CREATE TABLE Allergy_type (allergytype VARCHAR)"}, {"answer": "SELECT DISTINCT allergytype FROM Allergy_type", "question": "Show all allergy types.", "context": "CREATE TABLE Allergy_type (allergytype VARCHAR)"}, {"answer": "SELECT allergy, allergytype FROM Allergy_type", "question": "Show all allergies and their types.", "context": "CREATE TABLE Allergy_type (allergy VARCHAR, allergytype VARCHAR)"}, {"answer": "SELECT DISTINCT allergy FROM Allergy_type WHERE allergytype = \"food\"", "question": "Show all allergies with type food.", "context": "CREATE TABLE Allergy_type (allergy VARCHAR, allergytype VARCHAR)"}, {"answer": "SELECT allergytype FROM Allergy_type WHERE allergy = \"Cat\"", "question": "What is the type of allergy Cat?", "context": "CREATE TABLE Allergy_type (allergytype VARCHAR, allergy VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Allergy_type WHERE allergytype = \"animal\"", "question": "How many allergies have type animal?", "context": "CREATE TABLE Allergy_type (allergytype VARCHAR)"}, {"answer": "SELECT allergytype, COUNT(*) FROM Allergy_type GROUP BY allergytype", "question": "Show all allergy types and the number of allergies in each type.", "context": "CREATE TABLE Allergy_type (allergytype VARCHAR)"}, {"answer": "SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which allergy type has most number of allergies?", "context": "CREATE TABLE Allergy_type (allergytype VARCHAR)"}, {"answer": "SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY COUNT(*) LIMIT 1", "question": "Which allergy type has least number of allergies?", "context": "CREATE TABLE Allergy_type (allergytype VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Student", "question": "How many students are there?", "context": "CREATE TABLE Student (Id VARCHAR)"}, {"answer": "SELECT Fname, Lname FROM Student", "question": "Show first name and last name for all students.", "context": "CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT advisor) FROM Student", "question": "How many different advisors are listed?", "context": "CREATE TABLE Student (advisor VARCHAR)"}, {"answer": "SELECT DISTINCT Major FROM Student", "question": "Show all majors.", "context": "CREATE TABLE Student (Major VARCHAR)"}, {"answer": "SELECT DISTINCT city_code FROM Student", "question": "Show all cities where students live.", "context": "CREATE TABLE Student (city_code VARCHAR)"}, {"answer": "SELECT Fname, Lname, Age FROM Student WHERE Sex = 'F'", "question": "Show first name, last name, age for all female students. Their sex is F.", "context": "CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, Age VARCHAR, Sex VARCHAR)"}, {"answer": "SELECT StuID FROM Student WHERE Sex = 'M'", "question": "Show student ids for all male students.", "context": "CREATE TABLE Student (StuID VARCHAR, Sex VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Student WHERE age = 18", "question": "How many students are age 18?", "context": "CREATE TABLE Student (age VARCHAR)"}, {"answer": "SELECT StuID FROM Student WHERE age > 20", "question": "Show all student ids who are older than 20.", "context": "CREATE TABLE Student (StuID VARCHAR, age INTEGER)"}, {"answer": "SELECT city_code FROM Student WHERE LName = \"Kim\"", "question": "Which city does the student whose last name is \"Kim\" live in?", "context": "CREATE TABLE Student (city_code VARCHAR, LName VARCHAR)"}, {"answer": "SELECT Advisor FROM Student WHERE StuID = 1004", "question": "Who is the advisor of student with ID 1004?", "context": "CREATE TABLE Student (Advisor VARCHAR, StuID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Student WHERE city_code = \"HKG\" OR city_code = \"CHI\"", "question": "How many students live in HKG or CHI?", "context": "CREATE TABLE Student (city_code VARCHAR)"}, {"answer": "SELECT MIN(age), AVG(age), MAX(age) FROM Student", "question": "Show the minimum, average, and maximum age of all students.", "context": "CREATE TABLE Student (age INTEGER)"}, {"answer": "SELECT LName FROM Student WHERE age = (SELECT MIN(age) FROM Student)", "question": "What is the last name of the youngest student?", "context": "CREATE TABLE Student (LName VARCHAR, age INTEGER)"}, {"answer": "SELECT StuID FROM Student WHERE age = (SELECT MAX(age) FROM Student)", "question": "Show the student id of the oldest student.", "context": "CREATE TABLE Student (StuID VARCHAR, age INTEGER)"}, {"answer": "SELECT major, COUNT(*) FROM Student GROUP BY major", "question": "Show all majors and corresponding number of students.", "context": "CREATE TABLE Student (major VARCHAR)"}, {"answer": "SELECT major FROM Student GROUP BY major ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which major has most number of students?", "context": "CREATE TABLE Student (major VARCHAR)"}, {"answer": "SELECT age, COUNT(*) FROM Student GROUP BY age", "question": "Show all ages and corresponding number of students.", "context": "CREATE TABLE Student (age VARCHAR)"}, {"answer": "SELECT AVG(age), sex FROM Student GROUP BY sex", "question": "Show the average age for male and female students.", "context": "CREATE TABLE Student (sex VARCHAR, age INTEGER)"}, {"answer": "SELECT city_code, COUNT(*) FROM Student GROUP BY city_code", "question": "Show all cities and corresponding number of students.", "context": "CREATE TABLE Student (city_code VARCHAR)"}, {"answer": "SELECT advisor, COUNT(*) FROM Student GROUP BY advisor", "question": "Show all advisors and corresponding number of students.", "context": "CREATE TABLE Student (advisor VARCHAR)"}, {"answer": "SELECT advisor FROM Student GROUP BY advisor ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which advisor has most number of students?", "context": "CREATE TABLE Student (advisor VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Has_allergy WHERE Allergy = \"Cat\"", "question": "How many students have cat allergies?", "context": "CREATE TABLE Has_allergy (Allergy VARCHAR)"}, {"answer": "SELECT StuID FROM Has_allergy GROUP BY StuID HAVING COUNT(*) >= 2", "question": "Show all student IDs who have at least two allergies.", "context": "CREATE TABLE Has_allergy (StuID VARCHAR)"}, {"answer": "SELECT StuID FROM Student EXCEPT SELECT StuID FROM Has_allergy", "question": "What are the student ids of students who don't have any allergies?", "context": "CREATE TABLE Has_allergy (StuID VARCHAR); CREATE TABLE Student (StuID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM has_allergy AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T2.sex = \"F\" AND T1.allergy = \"Milk\" OR T1.allergy = \"Eggs\"", "question": "How many female students have milk or egg allergies?", "context": "CREATE TABLE Student (StuID VARCHAR, sex VARCHAR); CREATE TABLE has_allergy (StuID VARCHAR, allergy VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Has_allergy AS T1 JOIN Allergy_type AS T2 ON T1.allergy = T2.allergy WHERE T2.allergytype = \"food\"", "question": "How many students have a food allergy?", "context": "CREATE TABLE Has_allergy (allergy VARCHAR); CREATE TABLE Allergy_type (allergy VARCHAR, allergytype VARCHAR)"}, {"answer": "SELECT Allergy FROM Has_allergy GROUP BY Allergy ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which allergy has most number of students affected?", "context": "CREATE TABLE Has_allergy (Allergy VARCHAR)"}, {"answer": "SELECT Allergy, COUNT(*) FROM Has_allergy GROUP BY Allergy", "question": "Show all allergies with number of students affected.", "context": "CREATE TABLE Has_allergy (Allergy VARCHAR)"}, {"answer": "SELECT T2.allergytype, COUNT(*) FROM Has_allergy AS T1 JOIN Allergy_type AS T2 ON T1.allergy = T2.allergy GROUP BY T2.allergytype", "question": "Show all allergy type with number of students affected.", "context": "CREATE TABLE Has_allergy (allergy VARCHAR); CREATE TABLE Allergy_type (allergytype VARCHAR, allergy VARCHAR)"}, {"answer": "SELECT lname, age FROM Student WHERE StuID IN (SELECT StuID FROM Has_allergy WHERE Allergy = \"Milk\" INTERSECT SELECT StuID FROM Has_allergy WHERE Allergy = \"Cat\")", "question": "Find the last name and age of the student who has allergy to both milk and cat.", "context": "CREATE TABLE Has_allergy (lname VARCHAR, age VARCHAR, StuID VARCHAR, Allergy VARCHAR); CREATE TABLE Student (lname VARCHAR, age VARCHAR, StuID VARCHAR, Allergy VARCHAR)"}, {"answer": "SELECT T1.Allergy, T1.AllergyType FROM Allergy_type AS T1 JOIN Has_allergy AS T2 ON T1.Allergy = T2.Allergy JOIN Student AS T3 ON T3.StuID = T2.StuID WHERE T3.Fname = \"Lisa\" ORDER BY T1.Allergy", "question": "What are the allergies and their types that the student with first name Lisa has? And order the result by name of allergies.", "context": "CREATE TABLE Has_allergy (Allergy VARCHAR, StuID VARCHAR); CREATE TABLE Student (StuID VARCHAR, Fname VARCHAR); CREATE TABLE Allergy_type (Allergy VARCHAR, AllergyType VARCHAR)"}, {"answer": "SELECT fname, sex FROM Student WHERE StuID IN (SELECT StuID FROM Has_allergy WHERE Allergy = \"Milk\" EXCEPT SELECT StuID FROM Has_allergy WHERE Allergy = \"Cat\")", "question": "Find the first name and gender of the student who has allergy to milk but not cat.", "context": "CREATE TABLE Student (fname VARCHAR, sex VARCHAR, StuID VARCHAR, Allergy VARCHAR); CREATE TABLE Has_allergy (fname VARCHAR, sex VARCHAR, StuID VARCHAR, Allergy VARCHAR)"}, {"answer": "SELECT AVG(age) FROM Student WHERE StuID IN (SELECT T1.StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = \"food\" INTERSECT SELECT T1.StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = \"animal\")", "question": "Find the average age of the students who have allergies with food and animal types.", "context": "CREATE TABLE Student (age INTEGER, StuID VARCHAR); CREATE TABLE Allergy_Type (Allergy VARCHAR, allergytype VARCHAR); CREATE TABLE Has_allergy (StuID VARCHAR, Allergy VARCHAR)"}, {"answer": "SELECT fname, lname FROM Student WHERE NOT StuID IN (SELECT T1.StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = \"food\")", "question": "List the first and last name of the students who do not have any food type allergy.", "context": "CREATE TABLE Student (fname VARCHAR, lname VARCHAR, StuID VARCHAR); CREATE TABLE Allergy_Type (Allergy VARCHAR, allergytype VARCHAR); CREATE TABLE Has_allergy (StuID VARCHAR, Allergy VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Student WHERE sex = \"M\" AND StuID IN (SELECT StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = \"food\")", "question": "Find the number of male (sex is 'M') students who have some food type allery.", "context": "CREATE TABLE Has_allergy (Allergy VARCHAR); CREATE TABLE Allergy_Type (Allergy VARCHAR, allergytype VARCHAR); CREATE TABLE Student (sex VARCHAR, StuID VARCHAR)"}, {"answer": "SELECT DISTINCT T1.fname, T1.city_code FROM Student AS T1 JOIN Has_Allergy AS T2 ON T1.stuid = T2.stuid WHERE T2.Allergy = \"Milk\" OR T2.Allergy = \"Cat\"", "question": "Find the different first names and cities of the students who have allergy to milk or cat.", "context": "CREATE TABLE Has_Allergy (stuid VARCHAR, Allergy VARCHAR); CREATE TABLE Student (fname VARCHAR, city_code VARCHAR, stuid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Student WHERE age > 18 AND NOT StuID IN (SELECT StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = \"food\" OR T2.allergytype = \"animal\")", "question": "Find the number of students who are older than 18 and do not have allergy to either food or animal.", "context": "CREATE TABLE Allergy_Type (Allergy VARCHAR, allergytype VARCHAR); CREATE TABLE Has_allergy (Allergy VARCHAR); CREATE TABLE Student (age VARCHAR, StuID VARCHAR)"}, {"answer": "SELECT fname, major FROM Student WHERE NOT StuID IN (SELECT StuID FROM Has_allergy WHERE Allergy = \"Soy\")", "question": "Find the first name and major of the students who are not allegry to soy.", "context": "CREATE TABLE Has_allergy (fname VARCHAR, major VARCHAR, StuID VARCHAR, Allergy VARCHAR); CREATE TABLE Student (fname VARCHAR, major VARCHAR, StuID VARCHAR, Allergy VARCHAR)"}, {"answer": "SELECT billing_country, COUNT(*) FROM invoices GROUP BY billing_country ORDER BY COUNT(*) DESC LIMIT 5", "question": "A list of the top 5 countries by number of invoices. List country name and number of invoices.", "context": "CREATE TABLE invoices (billing_country VARCHAR)"}, {"answer": "SELECT billing_country, SUM(total) FROM invoices GROUP BY billing_country ORDER BY SUM(total) DESC LIMIT 8", "question": "A list of the top 8 countries by gross/total invoice size. List country name and gross invoice size.", "context": "CREATE TABLE invoices (billing_country VARCHAR, total INTEGER)"}, {"answer": "SELECT billing_country, AVG(total) FROM invoices GROUP BY billing_country ORDER BY AVG(total) DESC LIMIT 10", "question": "A list of the top 10 countries by average invoice size. List country name and average invoice size.", "context": "CREATE TABLE invoices (billing_country VARCHAR, total INTEGER)"}, {"answer": "SELECT T1.first_name, T1.last_name FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id ORDER BY T2.invoice_date DESC LIMIT 5", "question": "Find out 5 customers who most recently purchased something. List customers' first and last name.", "context": "CREATE TABLE customers (first_name VARCHAR, last_name VARCHAR, id VARCHAR); CREATE TABLE invoices (customer_id VARCHAR, invoice_date VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.last_name, COUNT(*) FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 10", "question": "Find out the top 10 customers by total number of orders. List customers' first and last name and the number of total orders.", "context": "CREATE TABLE customers (first_name VARCHAR, last_name VARCHAR, id VARCHAR); CREATE TABLE invoices (customer_id VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.last_name, SUM(T2.total) FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id GROUP BY T1.id ORDER BY SUM(T2.total) DESC LIMIT 10", "question": "List the top 10 customers by total gross sales. List customers' first and last name and total gross sales.", "context": "CREATE TABLE invoices (total INTEGER, customer_id VARCHAR); CREATE TABLE customers (first_name VARCHAR, last_name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T1.name, COUNT(*) FROM genres AS T1 JOIN tracks AS T2 ON T2.genre_id = T1.id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 5", "question": "List the top 5 genres by number of tracks. List genres name and total tracks.", "context": "CREATE TABLE tracks (genre_id VARCHAR); CREATE TABLE genres (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT title FROM albums", "question": "List every album's title.", "context": "CREATE TABLE albums (title VARCHAR)"}, {"answer": "SELECT title FROM albums ORDER BY title", "question": "List every album ordered by album title in ascending order.", "context": "CREATE TABLE albums (title VARCHAR)"}, {"answer": "SELECT title FROM albums WHERE title LIKE 'A%' ORDER BY title", "question": "List every album whose title starts with A in alphabetical order.", "context": "CREATE TABLE albums (title VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.last_name FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id ORDER BY total LIMIT 10", "question": "List the customers first and last name of 10 least expensive invoices.", "context": "CREATE TABLE customers (first_name VARCHAR, last_name VARCHAR, id VARCHAR); CREATE TABLE invoices (customer_id VARCHAR)"}, {"answer": "SELECT SUM(total) FROM invoices WHERE billing_city = \"Chicago\" AND billing_state = \"IL\"", "question": "List total amount of  invoice from Chicago, IL.", "context": "CREATE TABLE invoices (total INTEGER, billing_city VARCHAR, billing_state VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM invoices WHERE billing_city = \"Chicago\" AND billing_state = \"IL\"", "question": "List the number of invoices from Chicago, IL.", "context": "CREATE TABLE invoices (billing_city VARCHAR, billing_state VARCHAR)"}, {"answer": "SELECT billing_state, COUNT(*) FROM invoices WHERE billing_country = \"USA\" GROUP BY billing_state", "question": "List the number of invoices from the US, grouped by state.", "context": "CREATE TABLE invoices (billing_state VARCHAR, billing_country VARCHAR)"}, {"answer": "SELECT billing_state, COUNT(*) FROM invoices WHERE billing_country = \"USA\" GROUP BY billing_state ORDER BY COUNT(*) DESC LIMIT 1", "question": "List the state in the US with the most invoices.", "context": "CREATE TABLE invoices (billing_state VARCHAR, billing_country VARCHAR)"}, {"answer": "SELECT billing_state, COUNT(*), SUM(total) FROM invoices WHERE billing_state = \"CA\"", "question": "List the number of invoices and the invoice total from California.", "context": "CREATE TABLE invoices (billing_state VARCHAR, total INTEGER)"}, {"answer": "SELECT T1.title FROM albums AS T1 JOIN artists AS T2 ON T1.artist_id = T2.id WHERE T2.name = \"Aerosmith\"", "question": "List Aerosmith's albums.", "context": "CREATE TABLE artists (id VARCHAR, name VARCHAR); CREATE TABLE albums (title VARCHAR, artist_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM albums AS T1 JOIN artists AS T2 ON T1.artist_id = T2.id WHERE T2.name = \"Billy Cobham\"", "question": "How many albums does Billy Cobham has?", "context": "CREATE TABLE artists (id VARCHAR, name VARCHAR); CREATE TABLE albums (artist_id VARCHAR)"}, {"answer": "SELECT company FROM customers WHERE first_name = \"Eduardo\" AND last_name = \"Martins\"", "question": "Eduardo Martins is a customer at which company?", "context": "CREATE TABLE customers (company VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT email, phone FROM customers WHERE first_name = \"Astrid\" AND last_name = \"Gruber\"", "question": "What is Astrid Gruber's email and phone number?", "context": "CREATE TABLE customers (email VARCHAR, phone VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM customers WHERE city = \"Prague\"", "question": "How many customers live in Prague city?", "context": "CREATE TABLE customers (city VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM customers WHERE state = \"CA\"", "question": "How many customers in state of CA?", "context": "CREATE TABLE customers (state VARCHAR)"}, {"answer": "SELECT country FROM customers WHERE first_name = \"Roberto\" AND last_name = \"Almeida\"", "question": "What country does Roberto Almeida live?", "context": "CREATE TABLE customers (country VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT T2.title FROM artists AS T1 JOIN albums AS T2 ON T1.id = T2.artist_id WHERE T1.name LIKE '%Led%'", "question": "List the name of albums that are released by aritist whose name has 'Led'", "context": "CREATE TABLE artists (id VARCHAR, name VARCHAR); CREATE TABLE albums (title VARCHAR, artist_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM employees AS T1 JOIN customers AS T2 ON T2.support_rep_id = T1.id WHERE T1.first_name = \"Steve\" AND T1.last_name = \"Johnson\"", "question": "How many customers does Steve Johnson support?", "context": "CREATE TABLE employees (id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE customers (support_rep_id VARCHAR)"}, {"answer": "SELECT title, phone, hire_date FROM employees WHERE first_name = \"Nancy\" AND last_name = \"Edwards\"", "question": "What is the title, phone and hire date of Nancy Edwards?", "context": "CREATE TABLE employees (title VARCHAR, phone VARCHAR, hire_date VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT T2.first_name, T2.last_name FROM employees AS T1 JOIN employees AS T2 ON T1.id = T2.reports_to WHERE T1.first_name = \"Nancy\" AND T1.last_name = \"Edwards\"", "question": "find the full name of employees who report to Nancy Edwards?", "context": "CREATE TABLE employees (id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, reports_to VARCHAR)"}, {"answer": "SELECT address FROM employees WHERE first_name = \"Nancy\" AND last_name = \"Edwards\"", "question": "What is the address of employee Nancy Edwards?", "context": "CREATE TABLE employees (address VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.last_name FROM employees AS T1 JOIN customers AS T2 ON T1.id = T2.support_rep_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the full name of employee who supported the most number of customers.", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, id VARCHAR); CREATE TABLE customers (support_rep_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM employees WHERE country = \"Canada\"", "question": "How many employees are living in Canada?", "context": "CREATE TABLE employees (country VARCHAR)"}, {"answer": "SELECT phone FROM employees WHERE first_name = \"Nancy\" AND last_name = \"Edwards\"", "question": "What is employee Nancy Edwards's phone number?", "context": "CREATE TABLE employees (phone VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT first_name, last_name FROM employees ORDER BY birth_date DESC LIMIT 1", "question": "Who is the youngest employee in the company? List employee's first and last name.", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, birth_date VARCHAR)"}, {"answer": "SELECT first_name, last_name FROM employees ORDER BY hire_date LIMIT 10", "question": "List top 10 employee work longest in the company. List employee's first and last name.", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR)"}, {"answer": "SELECT COUNT(*), city FROM employees WHERE title = 'IT Staff' GROUP BY city", "question": "Find the number of employees whose title is IT Staff from each city?", "context": "CREATE TABLE employees (city VARCHAR, title VARCHAR)"}, {"answer": "SELECT T2.first_name, T2.last_name, COUNT(T1.reports_to) FROM employees AS T1 JOIN employees AS T2 ON T1.reports_to = T2.id GROUP BY T1.reports_to ORDER BY COUNT(T1.reports_to) DESC LIMIT 1", "question": "Which employee manage most number of peoples? List employee's first and last name, and number of people report to that employee.", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, id VARCHAR); CREATE TABLE employees (reports_to VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM customers AS T1 JOIN invoices AS T2 ON T1.id = T2.customer_id WHERE T1.first_name = \"Lucas\" AND T1.last_name = \"Mancini\"", "question": "How many orders does Lucas Mancini has?", "context": "CREATE TABLE invoices (customer_id VARCHAR); CREATE TABLE customers (id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT SUM(T2.total) FROM customers AS T1 JOIN invoices AS T2 ON T1.id = T2.customer_id WHERE T1.first_name = \"Lucas\" AND T1.last_name = \"Mancini\"", "question": "What is the total amount of money spent by Lucas Mancini?", "context": "CREATE TABLE invoices (total INTEGER, customer_id VARCHAR); CREATE TABLE customers (id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT name FROM media_types", "question": "List all media types.", "context": "CREATE TABLE media_types (name VARCHAR)"}, {"answer": "SELECT DISTINCT name FROM genres", "question": "List all different genre types.", "context": "CREATE TABLE genres (name VARCHAR)"}, {"answer": "SELECT name FROM playlists", "question": "List the name of all playlist.", "context": "CREATE TABLE playlists (name VARCHAR)"}, {"answer": "SELECT composer FROM tracks WHERE name = \"Fast As a Shark\"", "question": "Who is the composer of track Fast As a Shark?", "context": "CREATE TABLE tracks (composer VARCHAR, name VARCHAR)"}, {"answer": "SELECT milliseconds FROM tracks WHERE name = \"Fast As a Shark\"", "question": "How long does track Fast As a Shark has?", "context": "CREATE TABLE tracks (milliseconds VARCHAR, name VARCHAR)"}, {"answer": "SELECT T2.name FROM genres AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T1.name = \"Rock\"", "question": "What is the name of tracks whose genre is Rock?", "context": "CREATE TABLE genres (id VARCHAR, name VARCHAR); CREATE TABLE tracks (name VARCHAR, genre_id VARCHAR)"}, {"answer": "SELECT T1.title FROM albums AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T2.name = \"Balls to the Wall\"", "question": "What is title of album which track Balls to the Wall belongs to?", "context": "CREATE TABLE tracks (genre_id VARCHAR, name VARCHAR); CREATE TABLE albums (title VARCHAR, id VARCHAR)"}, {"answer": "SELECT T2.name FROM albums AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T1.title = \"Balls to the Wall\"", "question": "List name of all tracks in Balls to the Wall.", "context": "CREATE TABLE tracks (name VARCHAR, genre_id VARCHAR); CREATE TABLE albums (id VARCHAR, title VARCHAR)"}, {"answer": "SELECT T1.title FROM albums AS T1 JOIN tracks AS T2 ON T1.id = T2.album_id GROUP BY T1.id HAVING COUNT(T1.id) > 10", "question": "List title of albums have the number of tracks greater than 10.", "context": "CREATE TABLE tracks (album_id VARCHAR); CREATE TABLE albums (title VARCHAR, id VARCHAR)"}, {"answer": "SELECT T2.name FROM genres AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id JOIN media_types AS T3 ON T3.id = T2.media_type_id WHERE T1.name = \"Rock\" AND T3.name = \"MPEG audio file\"", "question": "List the name of tracks belongs to genre Rock and whose media type is MPEG audio file.", "context": "CREATE TABLE genres (id VARCHAR, name VARCHAR); CREATE TABLE tracks (name VARCHAR, genre_id VARCHAR, media_type_id VARCHAR); CREATE TABLE media_types (id VARCHAR, name VARCHAR)"}, {"answer": "SELECT T2.name FROM genres AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id JOIN media_types AS T3 ON T3.id = T2.media_type_id WHERE T1.name = \"Rock\" OR T3.name = \"MPEG audio file\"", "question": "List the name of tracks belongs to genre Rock or media type is MPEG audio file.", "context": "CREATE TABLE genres (id VARCHAR, name VARCHAR); CREATE TABLE tracks (name VARCHAR, genre_id VARCHAR, media_type_id VARCHAR); CREATE TABLE media_types (id VARCHAR, name VARCHAR)"}, {"answer": "SELECT T2.name FROM genres AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T1.name = \"Rock\" OR T1.name = \"Jazz\"", "question": "List the name of tracks belongs to genre Rock or genre Jazz.", "context": "CREATE TABLE genres (id VARCHAR, name VARCHAR); CREATE TABLE tracks (name VARCHAR, genre_id VARCHAR)"}, {"answer": "SELECT T1.name FROM tracks AS T1 JOIN playlist_tracks AS T2 ON T1.id = T2.track_id JOIN playlists AS T3 ON T3.id = T2.playlist_id WHERE T3.name = \"Movies\"", "question": "List the name of all tracks in the playlists of Movies.", "context": "CREATE TABLE playlists (id VARCHAR, name VARCHAR); CREATE TABLE playlist_tracks (track_id VARCHAR, playlist_id VARCHAR); CREATE TABLE tracks (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T2.name FROM playlist_tracks AS T1 JOIN playlists AS T2 ON T2.id = T1.playlist_id GROUP BY T1.playlist_id HAVING COUNT(T1.track_id) > 100", "question": "List the name of playlist which has number of tracks greater than 100.", "context": "CREATE TABLE playlist_tracks (playlist_id VARCHAR, track_id VARCHAR); CREATE TABLE playlists (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T1.name FROM tracks AS T1 JOIN invoice_lines AS T2 ON T1.id = T2.track_id JOIN invoices AS T3 ON T3.id = T2.invoice_id JOIN customers AS T4 ON T4.id = T3.customer_id WHERE T4.first_name = \"Daan\" AND T4.last_name = \"Peeters\"", "question": "List all tracks bought by customer Daan Peeters.", "context": "CREATE TABLE invoices (id VARCHAR, customer_id VARCHAR); CREATE TABLE invoice_lines (track_id VARCHAR, invoice_id VARCHAR); CREATE TABLE tracks (name VARCHAR, id VARCHAR); CREATE TABLE customers (id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT unit_price FROM tracks WHERE name = \"Fast As a Shark\"", "question": "How much is the track Fast As a Shark?", "context": "CREATE TABLE tracks (unit_price VARCHAR, name VARCHAR)"}, {"answer": "SELECT T1.name FROM tracks AS T1 JOIN playlist_tracks AS T2 ON T1.id = T2.track_id JOIN playlists AS T3 ON T2.playlist_id = T3.id WHERE T3.name = 'Movies' EXCEPT SELECT T1.name FROM tracks AS T1 JOIN playlist_tracks AS T2 ON T1.id = T2.track_id JOIN playlists AS T3 ON T2.playlist_id = T3.id WHERE T3.name = 'Music'", "question": "Find the name of tracks which are in Movies playlist but not in music playlist.", "context": "CREATE TABLE playlists (id VARCHAR, name VARCHAR); CREATE TABLE playlist_tracks (track_id VARCHAR, playlist_id VARCHAR); CREATE TABLE tracks (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T1.name FROM tracks AS T1 JOIN playlist_tracks AS T2 ON T1.id = T2.track_id JOIN playlists AS T3 ON T2.playlist_id = T3.id WHERE T3.name = 'Movies' INTERSECT SELECT T1.name FROM tracks AS T1 JOIN playlist_tracks AS T2 ON T1.id = T2.track_id JOIN playlists AS T3 ON T2.playlist_id = T3.id WHERE T3.name = 'Music'", "question": "Find the name of tracks which are in both Movies and music playlists.", "context": "CREATE TABLE playlists (id VARCHAR, name VARCHAR); CREATE TABLE playlist_tracks (track_id VARCHAR, playlist_id VARCHAR); CREATE TABLE tracks (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.name FROM genres AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id GROUP BY T1.name", "question": "Find number of tracks in each genre?", "context": "CREATE TABLE tracks (genre_id VARCHAR); CREATE TABLE genres (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM editor", "question": "How many editors are there?", "context": "CREATE TABLE editor (Id VARCHAR)"}, {"answer": "SELECT Name FROM editor ORDER BY Age", "question": "List the names of editors in ascending order of age.", "context": "CREATE TABLE editor (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Name, Age FROM editor", "question": "What are the names and ages of editors?", "context": "CREATE TABLE editor (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Name FROM editor WHERE Age > 25", "question": "List the names of editors who are older than 25.", "context": "CREATE TABLE editor (Name VARCHAR, Age INTEGER)"}, {"answer": "SELECT Name FROM editor WHERE Age = 24 OR Age = 25", "question": "Show the names of editors of age either 24 or 25.", "context": "CREATE TABLE editor (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Name FROM editor ORDER BY Age LIMIT 1", "question": "What is the name of the youngest editor?", "context": "CREATE TABLE editor (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Age, COUNT(*) FROM editor GROUP BY Age", "question": "What are the different ages of editors? Show each age along with the number of editors of that age.", "context": "CREATE TABLE editor (Age VARCHAR)"}, {"answer": "SELECT Age FROM editor GROUP BY Age ORDER BY COUNT(*) DESC LIMIT 1", "question": "Please show the most common age of editors.", "context": "CREATE TABLE editor (Age VARCHAR)"}, {"answer": "SELECT DISTINCT Theme FROM journal", "question": "Show the distinct themes of journals.", "context": "CREATE TABLE journal (Theme VARCHAR)"}, {"answer": "SELECT T2.Name, T3.Theme FROM journal_committee AS T1 JOIN editor AS T2 ON T1.Editor_ID = T2.Editor_ID JOIN journal AS T3 ON T1.Journal_ID = T3.Journal_ID", "question": "Show the names of editors and the theme of journals for which they serve on committees.", "context": "CREATE TABLE journal_committee (Editor_ID VARCHAR, Journal_ID VARCHAR); CREATE TABLE editor (Name VARCHAR, Editor_ID VARCHAR); CREATE TABLE journal (Theme VARCHAR, Journal_ID VARCHAR)"}, {"answer": "SELECT T2.Name, T2.age, T3.Theme FROM journal_committee AS T1 JOIN editor AS T2 ON T1.Editor_ID = T2.Editor_ID JOIN journal AS T3 ON T1.Journal_ID = T3.Journal_ID ORDER BY T3.Theme", "question": "Show the names and ages of editors and the theme of journals for which they serve on committees, in ascending alphabetical order of theme.", "context": "CREATE TABLE journal_committee (Editor_ID VARCHAR, Journal_ID VARCHAR); CREATE TABLE editor (Name VARCHAR, age VARCHAR, Editor_ID VARCHAR); CREATE TABLE journal (Theme VARCHAR, Journal_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM journal_committee AS T1 JOIN editor AS T2 ON T1.Editor_ID = T2.Editor_ID JOIN journal AS T3 ON T1.Journal_ID = T3.Journal_ID WHERE T3.Sales > 3000", "question": "Show the names of editors that are on the committee of journals with sales bigger than 3000.", "context": "CREATE TABLE journal_committee (Editor_ID VARCHAR, Journal_ID VARCHAR); CREATE TABLE editor (Name VARCHAR, Editor_ID VARCHAR); CREATE TABLE journal (Journal_ID VARCHAR, Sales INTEGER)"}, {"answer": "SELECT T1.editor_id, T1.Name, COUNT(*) FROM editor AS T1 JOIN journal_committee AS T2 ON T1.Editor_ID = T2.Editor_ID GROUP BY T1.editor_id", "question": "Show the id, name of each editor and the number of journal committees they are on.", "context": "CREATE TABLE editor (editor_id VARCHAR, Name VARCHAR, Editor_ID VARCHAR); CREATE TABLE journal_committee (Editor_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM editor AS T1 JOIN journal_committee AS T2 ON T1.Editor_ID = T2.Editor_ID GROUP BY T1.Name HAVING COUNT(*) >= 2", "question": "Show the names of editors that are on at least two journal committees.", "context": "CREATE TABLE editor (Name VARCHAR, Editor_ID VARCHAR); CREATE TABLE journal_committee (Editor_ID VARCHAR)"}, {"answer": "SELECT Name FROM editor WHERE NOT editor_id IN (SELECT editor_id FROM journal_committee)", "question": "List the names of editors that are not on any journal committee.", "context": "CREATE TABLE editor (Name VARCHAR, editor_id VARCHAR); CREATE TABLE journal_committee (Name VARCHAR, editor_id VARCHAR)"}, {"answer": "SELECT date, theme, sales FROM journal EXCEPT SELECT T1.date, T1.theme, T1.sales FROM journal AS T1 JOIN journal_committee AS T2 ON T1.journal_ID = T2.journal_ID", "question": "List the date, theme and sales of the journal which did not have any of the listed editors serving on committee.", "context": "CREATE TABLE journal_committee (journal_ID VARCHAR); CREATE TABLE journal (date VARCHAR, theme VARCHAR, sales VARCHAR); CREATE TABLE journal (date VARCHAR, theme VARCHAR, sales VARCHAR, journal_ID VARCHAR)"}, {"answer": "SELECT AVG(T1.sales) FROM journal AS T1 JOIN journal_committee AS T2 ON T1.journal_ID = T2.journal_ID WHERE T2.work_type = 'Photo'", "question": "What is the average sales of the journals that have an editor whose work type is 'Photo'?", "context": "CREATE TABLE journal_committee (journal_ID VARCHAR, work_type VARCHAR); CREATE TABLE journal (sales INTEGER, journal_ID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Accounts", "question": "How many accounts do we have?", "context": "CREATE TABLE Accounts (Id VARCHAR)"}, {"answer": "SELECT account_id, customer_id, account_name FROM Accounts", "question": "Show ids, customer ids, names for all accounts.", "context": "CREATE TABLE Accounts (account_id VARCHAR, customer_id VARCHAR, account_name VARCHAR)"}, {"answer": "SELECT other_account_details FROM Accounts WHERE account_name = \"338\"", "question": "Show other account details for account with name 338.", "context": "CREATE TABLE Accounts (other_account_details VARCHAR, account_name VARCHAR)"}, {"answer": "SELECT T2.customer_first_name, T2.customer_last_name, T2.customer_phone FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.account_name = \"162\"", "question": "What is the first name, last name, and phone of the customer with account name 162?", "context": "CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR, account_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = \"Art\" AND T2.customer_last_name = \"Turcotte\"", "question": "How many accounts does the customer with first name Art and last name Turcotte have?", "context": "CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR)"}, {"answer": "SELECT customer_id, COUNT(*) FROM Accounts GROUP BY customer_id", "question": "Show all customer ids and the number of accounts for each customer.", "context": "CREATE TABLE Accounts (customer_id VARCHAR)"}, {"answer": "SELECT customer_id, COUNT(*) FROM Accounts GROUP BY customer_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the customer id and number of accounts with most accounts.", "context": "CREATE TABLE Accounts (customer_id VARCHAR)"}, {"answer": "SELECT T2.customer_first_name, T2.customer_last_name, T1.customer_id FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) LIMIT 1", "question": "What is the customer first, last name and id with least number of accounts.", "context": "CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Customers WHERE NOT customer_id IN (SELECT customer_id FROM Accounts)", "question": "Show the number of all customers without an account.", "context": "CREATE TABLE Customers (customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR)"}, {"answer": "SELECT customer_first_name, customer_last_name FROM Customers EXCEPT SELECT T1.customer_first_name, T1.customer_last_name FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id", "question": "Show the first names and last names of customers without any account.", "context": "CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR)"}, {"answer": "SELECT DISTINCT T1.customer_first_name, T1.customer_last_name FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id", "question": "Show distinct first and last names for all customers with an account.", "context": "CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT customer_id) FROM Accounts", "question": "How many customers have an account?", "context": "CREATE TABLE Accounts (customer_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Customers", "question": "How many customers do we have?", "context": "CREATE TABLE Customers (Id VARCHAR)"}, {"answer": "SELECT customer_id, customer_first_name, customer_last_name, customer_phone FROM Customers", "question": "Show ids, first names, last names, and phones for all customers.", "context": "CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR, customer_phone VARCHAR)"}, {"answer": "SELECT customer_phone, customer_email FROM Customers WHERE customer_first_name = \"Aniyah\" AND customer_last_name = \"Feest\"", "question": "What is the phone and email for customer with first name Aniyah and last name Feest?", "context": "CREATE TABLE Customers (customer_phone VARCHAR, customer_email VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Customers_cards", "question": "Show the number of customer cards.", "context": "CREATE TABLE Customers_cards (Id VARCHAR)"}, {"answer": "SELECT card_id, customer_id, card_type_code, card_number FROM Customers_cards", "question": "Show ids, customer ids, card type codes, card numbers for all cards.", "context": "CREATE TABLE Customers_cards (card_id VARCHAR, customer_id VARCHAR, card_type_code VARCHAR, card_number VARCHAR)"}, {"answer": "SELECT date_valid_from, date_valid_to FROM Customers_cards WHERE card_number = \"4560596484842\"", "question": "Show the date valid from and the date valid to for the card with card number '4560596484842'.", "context": "CREATE TABLE Customers_cards (date_valid_from VARCHAR, date_valid_to VARCHAR, card_number VARCHAR)"}, {"answer": "SELECT T2.customer_first_name, T2.customer_last_name, T2.customer_phone FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.card_number = \"4560596484842\"", "question": "What is the first name, last name, and phone of the customer with card 4560596484842.", "context": "CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE Customers_cards (customer_id VARCHAR, card_number VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = \"Art\" AND T2.customer_last_name = \"Turcotte\"", "question": "How many cards does customer Art Turcotte have?", "context": "CREATE TABLE Customers_cards (customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Customers_cards WHERE card_type_code = \"Debit\"", "question": "How many debit cards do we have?", "context": "CREATE TABLE Customers_cards (card_type_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = \"Blanche\" AND T2.customer_last_name = \"Huels\" AND T1.card_type_code = \"Credit\"", "question": "How many credit cards does customer Blanche Huels have?", "context": "CREATE TABLE Customers_cards (customer_id VARCHAR, card_type_code VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR)"}, {"answer": "SELECT customer_id, COUNT(*) FROM Customers_cards GROUP BY customer_id", "question": "Show all customer ids and the number of cards owned by each customer.", "context": "CREATE TABLE Customers_cards (customer_id VARCHAR)"}, {"answer": "SELECT customer_id, COUNT(*) FROM Customers_cards GROUP BY customer_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the customer id with most number of cards, and how many does he have?", "context": "CREATE TABLE Customers_cards (customer_id VARCHAR)"}, {"answer": "SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2", "question": "Show id, first and last names for all customers with at least two cards.", "context": "CREATE TABLE Customers_cards (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) LIMIT 1", "question": "What is the customer id, first and last name with least number of accounts.", "context": "CREATE TABLE Customers_cards (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT card_type_code, COUNT(*) FROM Customers_cards GROUP BY card_type_code", "question": "Show all card type codes and the number of cards in each type.", "context": "CREATE TABLE Customers_cards (card_type_code VARCHAR)"}, {"answer": "SELECT card_type_code FROM Customers_cards GROUP BY card_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the card type code with most number of cards?", "context": "CREATE TABLE Customers_cards (card_type_code VARCHAR)"}, {"answer": "SELECT card_type_code FROM Customers_cards GROUP BY card_type_code HAVING COUNT(*) >= 5", "question": "Show card type codes with at least 5 cards.", "context": "CREATE TABLE Customers_cards (card_type_code VARCHAR)"}, {"answer": "SELECT card_type_code, COUNT(DISTINCT customer_id) FROM Customers_cards GROUP BY card_type_code", "question": "Show all card type codes and the number of customers holding cards in each type.", "context": "CREATE TABLE Customers_cards (card_type_code VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT customer_id, customer_first_name FROM Customers EXCEPT SELECT T1.customer_id, T2.customer_first_name FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE card_type_code = \"Credit\"", "question": "Show the customer ids and firstname without a credit card.", "context": "CREATE TABLE Customers_cards (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, card_type_code VARCHAR)"}, {"answer": "SELECT DISTINCT card_type_code FROM Customers_Cards", "question": "Show all card type codes.", "context": "CREATE TABLE Customers_Cards (card_type_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT card_type_code) FROM Customers_Cards", "question": "Show the number of card types.", "context": "CREATE TABLE Customers_Cards (card_type_code VARCHAR)"}, {"answer": "SELECT DISTINCT transaction_type FROM Financial_Transactions", "question": "Show all transaction types.", "context": "CREATE TABLE Financial_Transactions (transaction_type VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT transaction_type) FROM Financial_Transactions", "question": "Show the number of transaction types.", "context": "CREATE TABLE Financial_Transactions (transaction_type VARCHAR)"}, {"answer": "SELECT AVG(transaction_amount), SUM(transaction_amount) FROM Financial_transactions", "question": "What is the average and total transaction amount?", "context": "CREATE TABLE Financial_transactions (transaction_amount INTEGER)"}, {"answer": "SELECT T2.card_type_code, COUNT(*) FROM Financial_transactions AS T1 JOIN Customers_cards AS T2 ON T1.card_id = T2.card_id GROUP BY T2.card_type_code", "question": "Show the card type codes and the number of transactions.", "context": "CREATE TABLE Financial_transactions (card_id VARCHAR); CREATE TABLE Customers_cards (card_type_code VARCHAR, card_id VARCHAR)"}, {"answer": "SELECT transaction_type, COUNT(*) FROM Financial_transactions GROUP BY transaction_type", "question": "Show the transaction type and the number of transactions.", "context": "CREATE TABLE Financial_transactions (transaction_type VARCHAR)"}, {"answer": "SELECT transaction_type FROM Financial_transactions GROUP BY transaction_type ORDER BY SUM(transaction_amount) DESC LIMIT 1", "question": "What is the transaction type that has processed the greatest total amount in transactions?", "context": "CREATE TABLE Financial_transactions (transaction_type VARCHAR, transaction_amount INTEGER)"}, {"answer": "SELECT account_id, COUNT(*) FROM Financial_transactions GROUP BY account_id", "question": "Show the account id and the number of transactions for each account", "context": "CREATE TABLE Financial_transactions (account_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM track", "question": "How many tracks do we have?", "context": "CREATE TABLE track (Id VARCHAR)"}, {"answer": "SELECT name, LOCATION FROM track", "question": "Show the name and location for all tracks.", "context": "CREATE TABLE track (name VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT name, seating FROM track WHERE year_opened > 2000 ORDER BY seating", "question": "Show names and seatings, ordered by seating for all tracks opened after 2000.", "context": "CREATE TABLE track (name VARCHAR, seating VARCHAR, year_opened INTEGER)"}, {"answer": "SELECT name, LOCATION, seating FROM track ORDER BY year_opened DESC LIMIT 1", "question": "What is the name, location and seating for the most recently opened track?", "context": "CREATE TABLE track (name VARCHAR, LOCATION VARCHAR, seating VARCHAR, year_opened VARCHAR)"}, {"answer": "SELECT MIN(seating), MAX(seating), AVG(seating) FROM track", "question": "What is the minimum, maximum, and average seating for all tracks.", "context": "CREATE TABLE track (seating INTEGER)"}, {"answer": "SELECT name, LOCATION, year_opened FROM track WHERE seating > (SELECT AVG(seating) FROM track)", "question": "Show the name, location, open year for all tracks with a seating higher than the average.", "context": "CREATE TABLE track (name VARCHAR, LOCATION VARCHAR, year_opened VARCHAR, seating INTEGER)"}, {"answer": "SELECT DISTINCT LOCATION FROM track", "question": "What are distinct locations where tracks are located?", "context": "CREATE TABLE track (LOCATION VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM race", "question": "How many races are there?", "context": "CREATE TABLE race (Id VARCHAR)"}, {"answer": "SELECT DISTINCT CLASS FROM race", "question": "What are the distinct classes that races can have?", "context": "CREATE TABLE race (CLASS VARCHAR)"}, {"answer": "SELECT name, CLASS, date FROM race", "question": "Show name, class, and date for all races.", "context": "CREATE TABLE race (name VARCHAR, CLASS VARCHAR, date VARCHAR)"}, {"answer": "SELECT CLASS, COUNT(*) FROM race GROUP BY CLASS", "question": "Show the race class and number of races in each class.", "context": "CREATE TABLE race (CLASS VARCHAR)"}, {"answer": "SELECT CLASS FROM race GROUP BY CLASS ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the race class with most number of races.", "context": "CREATE TABLE race (CLASS VARCHAR)"}, {"answer": "SELECT CLASS FROM race GROUP BY CLASS HAVING COUNT(*) >= 2", "question": "List the race class with at least two races.", "context": "CREATE TABLE race (CLASS VARCHAR)"}, {"answer": "SELECT name FROM track EXCEPT SELECT T2.name FROM race AS T1 JOIN track AS T2 ON T1.track_id = T2.track_id WHERE T1.class = 'GT'", "question": "What are the names for tracks without a race in class 'GT'.", "context": "CREATE TABLE race (track_id VARCHAR, class VARCHAR); CREATE TABLE track (name VARCHAR); CREATE TABLE track (name VARCHAR, track_id VARCHAR)"}, {"answer": "SELECT name FROM track WHERE NOT track_id IN (SELECT track_id FROM race)", "question": "Show all track names that have had no races.", "context": "CREATE TABLE track (name VARCHAR, track_id VARCHAR); CREATE TABLE race (name VARCHAR, track_id VARCHAR)"}, {"answer": "SELECT year_opened FROM track WHERE seating BETWEEN 4000 AND 5000", "question": "Show year where a track with a seating at least 5000 opened and a track with seating no more than 4000 opened.", "context": "CREATE TABLE track (year_opened VARCHAR, seating INTEGER)"}, {"answer": "SELECT T2.name, COUNT(*) FROM race AS T1 JOIN track AS T2 ON T1.track_id = T2.track_id GROUP BY T1.track_id", "question": "Show the name of track and the number of races in each track.", "context": "CREATE TABLE track (name VARCHAR, track_id VARCHAR); CREATE TABLE race (track_id VARCHAR)"}, {"answer": "SELECT T2.name FROM race AS T1 JOIN track AS T2 ON T1.track_id = T2.track_id GROUP BY T1.track_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the name of track with most number of races.", "context": "CREATE TABLE track (name VARCHAR, track_id VARCHAR); CREATE TABLE race (track_id VARCHAR)"}, {"answer": "SELECT T1.name, T1.date, T2.name FROM race AS T1 JOIN track AS T2 ON T1.track_id = T2.track_id", "question": "Show the name and date for each race and its track name.", "context": "CREATE TABLE race (name VARCHAR, date VARCHAR, track_id VARCHAR); CREATE TABLE track (name VARCHAR, track_id VARCHAR)"}, {"answer": "SELECT T2.name, T2.location FROM race AS T1 JOIN track AS T2 ON T1.track_id = T2.track_id GROUP BY T1.track_id HAVING COUNT(*) = 1", "question": "Show the name and location of track with 1 race.", "context": "CREATE TABLE race (track_id VARCHAR); CREATE TABLE track (name VARCHAR, location VARCHAR, track_id VARCHAR)"}, {"answer": "SELECT LOCATION FROM track WHERE seating > 90000 INTERSECT SELECT LOCATION FROM track WHERE seating < 70000", "question": "Find the locations where have both tracks with more than 90000 seats and tracks with less than 70000 seats.", "context": "CREATE TABLE track (LOCATION VARCHAR, seating INTEGER)"}, {"answer": "SELECT COUNT(*) FROM member WHERE Membership_card = 'Black'", "question": "How many members have the black membership card?", "context": "CREATE TABLE member (Membership_card VARCHAR)"}, {"answer": "SELECT COUNT(*), address FROM member GROUP BY address", "question": "Find the number of members living in each address.", "context": "CREATE TABLE member (address VARCHAR)"}, {"answer": "SELECT name FROM member WHERE address = 'Harford' OR address = 'Waterbury'", "question": "Give me the names of members whose address is in Harford or Waterbury.", "context": "CREATE TABLE member (name VARCHAR, address VARCHAR)"}, {"answer": "SELECT name, member_id FROM member WHERE Membership_card = 'Black' OR age < 30", "question": "Find the ids and names of members who are under age 30 or with black membership card.", "context": "CREATE TABLE member (name VARCHAR, member_id VARCHAR, Membership_card VARCHAR, age VARCHAR)"}, {"answer": "SELECT Time_of_purchase, age, address FROM member ORDER BY Time_of_purchase", "question": "Find the purchase time, age and address of each member, and show the results in the order of purchase time.", "context": "CREATE TABLE member (Time_of_purchase VARCHAR, age VARCHAR, address VARCHAR)"}, {"answer": "SELECT Membership_card FROM member GROUP BY Membership_card HAVING COUNT(*) > 5", "question": "Which membership card has more than 5 members?", "context": "CREATE TABLE member (Membership_card VARCHAR)"}, {"answer": "SELECT address FROM member WHERE age < 30 INTERSECT SELECT address FROM member WHERE age > 40", "question": "Which address has both members younger than 30 and members older than 40?", "context": "CREATE TABLE member (address VARCHAR, age INTEGER)"}, {"answer": "SELECT membership_card FROM member WHERE address = 'Hartford' INTERSECT SELECT membership_card FROM member WHERE address = 'Waterbury'", "question": "What is the membership card held by both members living in Hartford and ones living in Waterbury address?", "context": "CREATE TABLE member (membership_card VARCHAR, address VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM member WHERE address <> 'Hartford'", "question": "How many members are not living in Hartford?", "context": "CREATE TABLE member (address VARCHAR)"}, {"answer": "SELECT address FROM member EXCEPT SELECT address FROM member WHERE Membership_card = 'Black'", "question": "Which address do not have any member with the black membership card?", "context": "CREATE TABLE member (address VARCHAR, Membership_card VARCHAR)"}, {"answer": "SELECT address FROM shop ORDER BY open_year", "question": "Show the shop addresses ordered by their opening year.", "context": "CREATE TABLE shop (address VARCHAR, open_year VARCHAR)"}, {"answer": "SELECT AVG(num_of_staff), AVG(score) FROM shop", "question": "What are the average score and average staff number of all shops?", "context": "CREATE TABLE shop (num_of_staff INTEGER, score INTEGER)"}, {"answer": "SELECT shop_id, address FROM shop WHERE score < (SELECT AVG(score) FROM shop)", "question": "Find the id and address of the shops whose score is below the average score.", "context": "CREATE TABLE shop (shop_id VARCHAR, address VARCHAR, score INTEGER)"}, {"answer": "SELECT address, num_of_staff FROM shop WHERE NOT shop_id IN (SELECT shop_id FROM happy_hour)", "question": "Find the address and staff number of the shops that do not have any happy hour.", "context": "CREATE TABLE shop (address VARCHAR, num_of_staff VARCHAR, shop_id VARCHAR); CREATE TABLE happy_hour (address VARCHAR, num_of_staff VARCHAR, shop_id VARCHAR)"}, {"answer": "SELECT t1.address, t1.shop_id FROM shop AS t1 JOIN happy_hour AS t2 ON t1.shop_id = t2.shop_id WHERE MONTH = 'May'", "question": "What are the id and address of the shops which have a happy hour in May?", "context": "CREATE TABLE shop (address VARCHAR, shop_id VARCHAR); CREATE TABLE happy_hour (shop_id VARCHAR)"}, {"answer": "SELECT shop_id, COUNT(*) FROM happy_hour GROUP BY shop_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "which shop has happy hour most frequently? List its id and number of happy hours.", "context": "CREATE TABLE happy_hour (shop_id VARCHAR)"}, {"answer": "SELECT MONTH FROM happy_hour GROUP BY MONTH ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which month has the most happy hours?", "context": "CREATE TABLE happy_hour (MONTH VARCHAR)"}, {"answer": "SELECT MONTH FROM happy_hour GROUP BY MONTH HAVING COUNT(*) > 2", "question": "Which months have more than 2 happy hours?", "context": "CREATE TABLE happy_hour (MONTH VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM ALBUM", "question": "How many albums are there?", "context": "CREATE TABLE ALBUM (Id VARCHAR)"}, {"answer": "SELECT Name FROM GENRE", "question": "List the names of all music genres.", "context": "CREATE TABLE GENRE (Name VARCHAR)"}, {"answer": "SELECT * FROM CUSTOMER WHERE State = \"NY\"", "question": "Find all the customer information in state NY.", "context": "CREATE TABLE CUSTOMER (State VARCHAR)"}, {"answer": "SELECT FirstName, LastName FROM EMPLOYEE WHERE City = \"Calgary\"", "question": "What are the first names and last names of the employees who live in Calgary city.", "context": "CREATE TABLE EMPLOYEE (FirstName VARCHAR, LastName VARCHAR, City VARCHAR)"}, {"answer": "SELECT DISTINCT (BillingCountry) FROM INVOICE", "question": "What are the distinct billing countries of the invoices?", "context": "CREATE TABLE INVOICE (BillingCountry VARCHAR)"}, {"answer": "SELECT Name FROM ARTIST WHERE Name LIKE \"%a%\"", "question": "Find the names of all artists that have \"a\" in their names.", "context": "CREATE TABLE ARTIST (Name VARCHAR)"}, {"answer": "SELECT Title FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T2.Name = \"AC/DC\"", "question": "Find the title of all the albums of the artist \"AC/DC\".", "context": "CREATE TABLE ARTIST (ArtistId VARCHAR, Name VARCHAR); CREATE TABLE ALBUM (ArtistId VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T2.Name = \"Metallica\"", "question": "Hom many albums does the artist \"Metallica\" have?", "context": "CREATE TABLE ARTIST (ArtistId VARCHAR, Name VARCHAR); CREATE TABLE ALBUM (ArtistId VARCHAR)"}, {"answer": "SELECT T2.Name FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T1.Title = \"Balls to the Wall\"", "question": "Which artist does the album \"Balls to the Wall\" belong to?", "context": "CREATE TABLE ALBUM (ArtistId VARCHAR, Title VARCHAR); CREATE TABLE ARTIST (Name VARCHAR, ArtistId VARCHAR)"}, {"answer": "SELECT T2.Name FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId GROUP BY T2.Name ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which artist has the most albums?", "context": "CREATE TABLE ALBUM (ArtistId VARCHAR); CREATE TABLE ARTIST (Name VARCHAR, ArtistId VARCHAR)"}, {"answer": "SELECT Name FROM TRACK WHERE Name LIKE '%you%'", "question": "Find the names of all the tracks that contain the word \"you\".", "context": "CREATE TABLE TRACK (Name VARCHAR)"}, {"answer": "SELECT AVG(UnitPrice) FROM TRACK", "question": "What is the average unit price of all the tracks?", "context": "CREATE TABLE TRACK (UnitPrice INTEGER)"}, {"answer": "SELECT MAX(Milliseconds), MIN(Milliseconds) FROM TRACK", "question": "What are the durations of the longest and the shortest tracks in milliseconds?", "context": "CREATE TABLE TRACK (Milliseconds INTEGER)"}, {"answer": "SELECT T1.Title, T2.AlbumID, COUNT(*) FROM ALBUM AS T1 JOIN TRACK AS T2 ON T1.AlbumId = T2.AlbumId GROUP BY T2.AlbumID", "question": "Show the album names, ids and the number of tracks for each album.", "context": "CREATE TABLE ALBUM (Title VARCHAR, AlbumId VARCHAR); CREATE TABLE TRACK (AlbumID VARCHAR, AlbumId VARCHAR)"}, {"answer": "SELECT T1.Name FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId GROUP BY T2.GenreId ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the most common genre in all tracks?", "context": "CREATE TABLE GENRE (Name VARCHAR, GenreId VARCHAR); CREATE TABLE TRACK (GenreId VARCHAR)"}, {"answer": "SELECT T1.Name FROM MEDIATYPE AS T1 JOIN TRACK AS T2 ON T1.MediaTypeId = T2.MediaTypeId GROUP BY T2.MediaTypeId ORDER BY COUNT(*) LIMIT 1", "question": "What is the least common media type in all tracks?", "context": "CREATE TABLE MEDIATYPE (Name VARCHAR, MediaTypeId VARCHAR); CREATE TABLE TRACK (MediaTypeId VARCHAR)"}, {"answer": "SELECT T1.Title, T2.AlbumID FROM ALBUM AS T1 JOIN TRACK AS T2 ON T1.AlbumId = T2.AlbumId WHERE T2.UnitPrice > 1 GROUP BY T2.AlbumID", "question": "Show the album names and ids for albums that contain tracks with unit price bigger than 1.", "context": "CREATE TABLE ALBUM (Title VARCHAR, AlbumId VARCHAR); CREATE TABLE TRACK (AlbumID VARCHAR, AlbumId VARCHAR, UnitPrice INTEGER)"}, {"answer": "SELECT COUNT(*) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = \"Rock\"", "question": "How many tracks belong to rock genre?", "context": "CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)"}, {"answer": "SELECT AVG(UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = \"Jazz\"", "question": "What is the average unit price of tracks that belong to Jazz genre?", "context": "CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)"}, {"answer": "SELECT FirstName, LastName FROM CUSTOMER WHERE Email = \"luisg@embraer.com.br\"", "question": "What is the first name and last name of the customer that has email \"luisg@embraer.com.br\"?", "context": "CREATE TABLE CUSTOMER (FirstName VARCHAR, LastName VARCHAR, Email VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM CUSTOMER WHERE Email LIKE \"%gmail.com%\"", "question": "How many customers have email that contains \"gmail.com\"?", "context": "CREATE TABLE CUSTOMER (Email VARCHAR)"}, {"answer": "SELECT T2.FirstName, T2.LastName FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId WHERE T1.FirstName = \"Leonie\"", "question": "What is the first name and last name employee helps the customer with first name Leonie?", "context": "CREATE TABLE CUSTOMER (SupportRepId VARCHAR, FirstName VARCHAR); CREATE TABLE EMPLOYEE (FirstName VARCHAR, LastName VARCHAR, EmployeeId VARCHAR)"}, {"answer": "SELECT T2.City FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId WHERE T1.PostalCode = \"70174\"", "question": "What city does the employee who helps the customer with postal code 70174 live in?", "context": "CREATE TABLE EMPLOYEE (City VARCHAR, EmployeeId VARCHAR); CREATE TABLE CUSTOMER (SupportRepId VARCHAR, PostalCode VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT city) FROM EMPLOYEE", "question": "How many distinct cities does the employees live in?", "context": "CREATE TABLE EMPLOYEE (city VARCHAR)"}, {"answer": "SELECT T2.InvoiceDate FROM CUSTOMER AS T1 JOIN INVOICE AS T2 ON T1.CustomerId = T2.CustomerId WHERE T1.FirstName = \"Astrid\" AND LastName = \"Gruber\"", "question": "Find all invoice dates corresponding to customers with first name Astrid and last name Gruber.", "context": "CREATE TABLE CUSTOMER (CustomerId VARCHAR, FirstName VARCHAR); CREATE TABLE INVOICE (InvoiceDate VARCHAR, CustomerId VARCHAR)"}, {"answer": "SELECT LastName FROM CUSTOMER EXCEPT SELECT T1.LastName FROM CUSTOMER AS T1 JOIN Invoice AS T2 ON T1.CustomerId = T2.CustomerId WHERE T2.total > 20", "question": "Find all the customer last names that do not have invoice totals larger than 20.", "context": "CREATE TABLE CUSTOMER (LastName VARCHAR); CREATE TABLE CUSTOMER (LastName VARCHAR, CustomerId VARCHAR); CREATE TABLE Invoice (CustomerId VARCHAR, total INTEGER)"}, {"answer": "SELECT DISTINCT T1.FirstName FROM CUSTOMER AS T1 JOIN INVOICE AS T2 ON T1.CustomerId = T2.CustomerId WHERE T1.country = \"Brazil\"", "question": "Find the first names of all customers that live in Brazil and have an invoice.", "context": "CREATE TABLE CUSTOMER (FirstName VARCHAR, CustomerId VARCHAR, country VARCHAR); CREATE TABLE INVOICE (CustomerId VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Address FROM CUSTOMER AS T1 JOIN INVOICE AS T2 ON T1.CustomerId = T2.CustomerId WHERE T1.country = \"Germany\"", "question": "Find the address of all customers that live in Germany and have invoice.", "context": "CREATE TABLE INVOICE (CustomerId VARCHAR); CREATE TABLE CUSTOMER (Address VARCHAR, CustomerId VARCHAR, country VARCHAR)"}, {"answer": "SELECT Phone FROM EMPLOYEE", "question": "List the phone numbers of all employees.", "context": "CREATE TABLE EMPLOYEE (Phone VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM MEDIATYPE AS T1 JOIN TRACK AS T2 ON T1.MediaTypeId = T2.MediaTypeId WHERE T1.Name = \"AAC audio file\"", "question": "How many tracks are in the AAC audio file media type?", "context": "CREATE TABLE MEDIATYPE (MediaTypeId VARCHAR, Name VARCHAR); CREATE TABLE TRACK (MediaTypeId VARCHAR)"}, {"answer": "SELECT AVG(Milliseconds) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = \"Latin\" OR T1.Name = \"Pop\"", "question": "What is the average duration in milliseconds of tracks that belong to Latin or Pop genre?", "context": "CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)"}, {"answer": "SELECT T1.FirstName, T1.SupportRepId FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId GROUP BY T1.SupportRepId HAVING COUNT(*) >= 10", "question": "Please show the employee first names and ids of employees who serve at least 10 customers.", "context": "CREATE TABLE CUSTOMER (FirstName VARCHAR, SupportRepId VARCHAR); CREATE TABLE EMPLOYEE (EmployeeId VARCHAR)"}, {"answer": "SELECT T1.LastName FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId GROUP BY T1.SupportRepId HAVING COUNT(*) <= 20", "question": "Please show the employee last names that serves no more than 20 customers.", "context": "CREATE TABLE EMPLOYEE (EmployeeId VARCHAR); CREATE TABLE CUSTOMER (LastName VARCHAR, SupportRepId VARCHAR)"}, {"answer": "SELECT Title FROM ALBUM ORDER BY Title", "question": "Please list all album titles in alphabetical order.", "context": "CREATE TABLE ALBUM (Title 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", "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 Name FROM ARTIST EXCEPT SELECT T2.Name FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId", "question": "Find the names of artists that do not have any albums.", "context": "CREATE TABLE ARTIST (Name VARCHAR); CREATE TABLE ALBUM (ArtistId VARCHAR); CREATE TABLE ARTIST (Name VARCHAR, ArtistId VARCHAR)"}, {"answer": "SELECT AVG(T2.UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = \"Rock\"", "question": "What is the average unit price of rock tracks?", "context": "CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR); CREATE TABLE TRACK (UnitPrice INTEGER, GenreId VARCHAR)"}, {"answer": "SELECT MAX(Milliseconds), MIN(Milliseconds) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = \"Pop\"", "question": "What are the duration of the longest and shortest pop tracks in milliseconds?", "context": "CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)"}, {"answer": "SELECT BirthDate FROM EMPLOYEE WHERE City = \"Edmonton\"", "question": "What are the birth dates of employees living in Edmonton?", "context": "CREATE TABLE EMPLOYEE (BirthDate VARCHAR, City VARCHAR)"}, {"answer": "SELECT DISTINCT (UnitPrice) FROM TRACK", "question": "What are the distinct unit prices of all tracks?", "context": "CREATE TABLE TRACK (UnitPrice VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM ARTIST WHERE NOT artistid IN (SELECT artistid FROM ALBUM)", "question": "How many artists do not have any album?", "context": "CREATE TABLE ARTIST (artistid VARCHAR); CREATE TABLE ALBUM (artistid VARCHAR)"}, {"answer": "SELECT T1.Title FROM Album AS T1 JOIN Track AS T2 ON T1.AlbumId = T2.AlbumId JOIN Genre AS T3 ON T2.GenreID = T3.GenreID WHERE T3.Name = 'Reggae' INTERSECT SELECT T1.Title FROM Album AS T1 JOIN Track AS T2 ON T1.AlbumId = T2.AlbumId JOIN Genre AS T3 ON T2.GenreID = T3.GenreID WHERE T3.Name = 'Rock'", "question": "What are the album titles for albums containing both 'Reggae' and 'Rock' genre tracks?", "context": "CREATE TABLE Genre (GenreID VARCHAR, Name VARCHAR); CREATE TABLE Track (AlbumId VARCHAR, GenreID VARCHAR); CREATE TABLE Album (Title VARCHAR, AlbumId VARCHAR)"}, {"answer": "SELECT customer_phone FROM available_policies", "question": "Find all the phone numbers.", "context": "CREATE TABLE available_policies (customer_phone VARCHAR)"}, {"answer": "SELECT customer_phone FROM available_policies WHERE policy_type_code = \"Life Insurance\"", "question": "What are the customer phone numbers under the policy \"Life Insurance\"?", "context": "CREATE TABLE available_policies (customer_phone VARCHAR, policy_type_code VARCHAR)"}, {"answer": "SELECT policy_type_code FROM available_policies GROUP BY policy_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which policy type has the most records in the database?", "context": "CREATE TABLE available_policies (policy_type_code VARCHAR)"}, {"answer": "SELECT customer_phone FROM available_policies WHERE policy_type_code = (SELECT policy_type_code FROM available_policies GROUP BY policy_type_code ORDER BY COUNT(*) DESC LIMIT 1)", "question": "What are all the customer phone numbers under the most popular policy type?", "context": "CREATE TABLE available_policies (customer_phone VARCHAR, policy_type_code VARCHAR)"}, {"answer": "SELECT policy_type_code FROM available_policies GROUP BY policy_type_code HAVING COUNT(*) > 4", "question": "Find the policy type used by more than 4 customers.", "context": "CREATE TABLE available_policies (policy_type_code VARCHAR)"}, {"answer": "SELECT SUM(settlement_amount), AVG(settlement_amount) FROM settlements", "question": "Find the total and average amount of settlements.", "context": "CREATE TABLE settlements (settlement_amount INTEGER)"}, {"answer": "SELECT t2.service_name FROM first_notification_of_loss AS t1 JOIN services AS t2 ON t1.service_id = t2.service_id GROUP BY t1.service_id HAVING COUNT(*) > 2", "question": "Find the name of services that have been used for more than 2 times in first notification of loss.", "context": "CREATE TABLE services (service_name VARCHAR, service_id VARCHAR); CREATE TABLE first_notification_of_loss (service_id VARCHAR)"}, {"answer": "SELECT t1.Effective_Date FROM claims AS t1 JOIN settlements AS t2 ON t1.claim_id = t2.claim_id GROUP BY t1.claim_id ORDER BY SUM(t2.settlement_amount) DESC LIMIT 1", "question": "What is the effective date of the claim that has the largest amount of total settlement?", "context": "CREATE TABLE settlements (claim_id VARCHAR, settlement_amount INTEGER); CREATE TABLE claims (Effective_Date VARCHAR, claim_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id WHERE t1.customer_name = \"Dayana Robel\"", "question": "How many policies are listed for the customer named \"Dayana Robel\"?", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR)"}, {"answer": "SELECT t1.customer_name FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id GROUP BY t1.customer_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the customer who has the most policies listed?", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR)"}, {"answer": "SELECT DISTINCT t3.policy_type_code FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id JOIN available_policies AS t3 ON t2.policy_id = t3.policy_id WHERE t1.customer_name = \"Dayana Robel\"", "question": "What are all the policy types of the customer named \"Dayana Robel\"?", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE available_policies (policy_type_code VARCHAR, policy_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR, policy_id VARCHAR)"}, {"answer": "SELECT DISTINCT t3.policy_type_code FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id JOIN available_policies AS t3 ON t2.policy_id = t3.policy_id WHERE t1.customer_name = (SELECT t1.customer_name FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id GROUP BY t1.customer_name ORDER BY COUNT(*) DESC LIMIT 1)", "question": "What are all the policy types of the customer that has the most policies listed?", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE available_policies (policy_type_code VARCHAR, policy_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR, policy_id VARCHAR)"}, {"answer": "SELECT service_name FROM services ORDER BY service_name", "question": "List all the services in the alphabetical order.", "context": "CREATE TABLE services (service_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM services", "question": "How many services are there?", "context": "CREATE TABLE services (Id VARCHAR)"}, {"answer": "SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id", "question": "Find the names of users who do not have a first notification of loss record.", "context": "CREATE TABLE first_notification_of_loss (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR)"}, {"answer": "SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id JOIN services AS t3 ON t2.service_id = t3.service_id WHERE t3.service_name = \"Close a policy\" OR t3.service_name = \"Upgrade a policy\"", "question": "Find the names of customers who have used either the service \"Close a policy\" or the service \"Upgrade a policy\".", "context": "CREATE TABLE first_notification_of_loss (customer_id VARCHAR, service_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE services (service_id VARCHAR, service_name VARCHAR)"}, {"answer": "SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id JOIN services AS t3 ON t2.service_id = t3.service_id WHERE t3.service_name = \"Close a policy\" INTERSECT SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id JOIN services AS t3 ON t2.service_id = t3.service_id WHERE t3.service_name = \"New policy application\"", "question": "Find the names of customers who have used both the service \"Close a policy\" and the service \"New policy application\".", "context": "CREATE TABLE first_notification_of_loss (customer_id VARCHAR, service_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE services (service_id VARCHAR, service_name VARCHAR)"}, {"answer": "SELECT customer_id FROM customers WHERE customer_name LIKE \"%Diana%\"", "question": "Find the IDs of customers whose name contains \"Diana\".", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR)"}, {"answer": "SELECT MAX(settlement_amount), MIN(settlement_amount) FROM settlements", "question": "What are the maximum and minimum settlement amount on record?", "context": "CREATE TABLE settlements (settlement_amount INTEGER)"}, {"answer": "SELECT customer_id, customer_name FROM customers ORDER BY customer_id", "question": "List all the customers in increasing order of IDs.", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR)"}, {"answer": "SELECT t2.date_opened, t2.date_closed FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id WHERE t1.customer_name LIKE \"%Diana%\"", "question": "Retrieve the open and close dates of all the policies associated with the customer whose name contains \"Diana\"", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customers_policies (date_opened VARCHAR, date_closed VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM enzyme", "question": "How many kinds of enzymes are there?", "context": "CREATE TABLE enzyme (Id VARCHAR)"}, {"answer": "SELECT name FROM enzyme ORDER BY name DESC", "question": "List the name of enzymes in descending lexicographical order.", "context": "CREATE TABLE enzyme (name VARCHAR)"}, {"answer": "SELECT name, LOCATION FROM enzyme", "question": "List the names and the locations that the enzymes can make an effect.", "context": "CREATE TABLE enzyme (name VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT MAX(OMIM) FROM enzyme", "question": "What is the maximum Online Mendelian Inheritance in Man (OMIM) value of the enzymes?", "context": "CREATE TABLE enzyme (OMIM INTEGER)"}, {"answer": "SELECT product, chromosome, porphyria FROM enzyme WHERE LOCATION = 'Cytosol'", "question": "What is the product, chromosome and porphyria related to the enzymes which take effect at the location 'Cytosol'?", "context": "CREATE TABLE enzyme (product VARCHAR, chromosome VARCHAR, porphyria VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT name FROM enzyme WHERE product <> 'Heme'", "question": "What are the names of enzymes who does not produce 'Heme'?", "context": "CREATE TABLE enzyme (name VARCHAR, product VARCHAR)"}, {"answer": "SELECT name, trade_name FROM medicine WHERE FDA_approved = 'Yes'", "question": "What are the names and trade names of the medicines which has 'Yes' value in the FDA record?", "context": "CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR, FDA_approved VARCHAR)"}, {"answer": "SELECT T1.name FROM enzyme AS T1 JOIN medicine_enzyme_interaction AS T2 ON T1.id = T2.enzyme_id JOIN medicine AS T3 ON T2.medicine_id = T3.id WHERE T3.name = 'Amisulpride' AND T2.interaction_type = 'inhibitor'", "question": "What are the names of enzymes in the medicine named 'Amisulpride' that can serve as an 'inhibitor'?", "context": "CREATE TABLE medicine (id VARCHAR, name VARCHAR); CREATE TABLE medicine_enzyme_interaction (enzyme_id VARCHAR, medicine_id VARCHAR, interaction_type VARCHAR); CREATE TABLE enzyme (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T1.id, T1.Name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id GROUP BY T1.id HAVING COUNT(*) >= 2", "question": "What are the ids and names of the medicine that can interact with two or more enzymes?", "context": "CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR); CREATE TABLE medicine (id VARCHAR, Name VARCHAR)"}, {"answer": "SELECT T1.id, T1.Name, T1.FDA_approved FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id GROUP BY T1.id ORDER BY COUNT(*) DESC", "question": "What are the ids, names and FDA approval status of medicines in descending order of the number of enzymes that it can interact with.", "context": "CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR); CREATE TABLE medicine (id VARCHAR, Name VARCHAR, FDA_approved VARCHAR)"}, {"answer": "SELECT T1.id, T1.name FROM enzyme AS T1 JOIN medicine_enzyme_interaction AS T2 ON T1.id = T2.enzyme_id WHERE T2.interaction_type = 'activitor' GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the id and name of the enzyme with most number of medicines that can interact as 'activator'?", "context": "CREATE TABLE medicine_enzyme_interaction (enzyme_id VARCHAR, interaction_type VARCHAR); CREATE TABLE enzyme (id VARCHAR, name VARCHAR)"}, {"answer": "SELECT T1.interaction_type FROM medicine_enzyme_interaction AS T1 JOIN medicine AS T2 ON T1.medicine_id = T2.id JOIN enzyme AS T3 ON T1.enzyme_id = T3.id WHERE T3.name = 'ALA synthase' AND T2.name = 'Aripiprazole'", "question": "What is the interaction type of the enzyme named 'ALA synthase' and the medicine named 'Aripiprazole'?", "context": "CREATE TABLE enzyme (id VARCHAR, name VARCHAR); CREATE TABLE medicine (id VARCHAR, name VARCHAR); CREATE TABLE medicine_enzyme_interaction (interaction_type VARCHAR, medicine_id VARCHAR, enzyme_id VARCHAR)"}, {"answer": "SELECT interaction_type, COUNT(*) FROM medicine_enzyme_interaction GROUP BY interaction_type ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most common interaction type between enzymes and medicine? And how many are there?", "context": "CREATE TABLE medicine_enzyme_interaction (interaction_type VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM medicine WHERE FDA_approved = 'No'", "question": "How many medicines have the FDA approval status 'No' ?", "context": "CREATE TABLE medicine (FDA_approved VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM enzyme WHERE NOT id IN (SELECT enzyme_id FROM medicine_enzyme_interaction)", "question": "How many enzymes do not have any interactions?", "context": "CREATE TABLE medicine_enzyme_interaction (id VARCHAR, enzyme_id VARCHAR); CREATE TABLE enzyme (id VARCHAR, enzyme_id VARCHAR)"}, {"answer": "SELECT T1.id, T1.trade_name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id GROUP BY T1.id HAVING COUNT(*) >= 3", "question": "What is the id and trade name of the medicines can interact with at least 3 enzymes?", "context": "CREATE TABLE medicine (id VARCHAR, trade_name VARCHAR); CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.name, T1.location, T1.product FROM enzyme AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.enzyme_id = T1.id WHERE T2.interaction_type = 'inhibitor'", "question": "What are the distinct name, location and products of the enzymes which has any 'inhibitor' interaction?", "context": "CREATE TABLE enzyme (name VARCHAR, location VARCHAR, product VARCHAR, id VARCHAR); CREATE TABLE medicine_enzyme_interaction (enzyme_id VARCHAR, interaction_type VARCHAR)"}, {"answer": "SELECT T1.name, T1.trade_name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id WHERE interaction_type = 'inhibitor' INTERSECT SELECT T1.name, T1.trade_name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id WHERE interaction_type = 'activitor'", "question": "List the medicine name and trade name which can both interact as 'inhibitor' and 'activitor' with enzymes.", "context": "CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR, id VARCHAR); CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR)"}, {"answer": "SELECT name, trade_name FROM medicine EXCEPT SELECT T1.name, T1.trade_name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id JOIN enzyme AS T3 ON T3.id = T2.enzyme_id WHERE T3.product = 'Protoporphyrinogen IX'", "question": "Show the medicine names and trade names that cannot interact with the enzyme with product 'Heme'.", "context": "CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR); CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR, enzyme_id VARCHAR); CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR, id VARCHAR); CREATE TABLE enzyme (id VARCHAR, product VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT FDA_approved) FROM medicine", "question": "How many distinct FDA approval statuses are there for the medicines?", "context": "CREATE TABLE medicine (FDA_approved VARCHAR)"}, {"answer": "SELECT name FROM enzyme WHERE name LIKE \"%ALA%\"", "question": "Which enzyme names have the substring \"ALA\"?", "context": "CREATE TABLE enzyme (name VARCHAR)"}, {"answer": "SELECT trade_name, COUNT(*) FROM medicine GROUP BY trade_name", "question": "find the number of medicines offered by each trade.", "context": "CREATE TABLE medicine (trade_name VARCHAR)"}, {"answer": "SELECT school, nickname FROM university ORDER BY founded", "question": "List all schools and their nicknames in the order of founded year.", "context": "CREATE TABLE university (school VARCHAR, nickname VARCHAR, founded VARCHAR)"}, {"answer": "SELECT school, LOCATION FROM university WHERE affiliation = 'Public'", "question": "List all public schools and their locations.", "context": "CREATE TABLE university (school VARCHAR, LOCATION VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT founded FROM university ORDER BY enrollment DESC LIMIT 1", "question": "When was the school with the largest enrollment founded?", "context": "CREATE TABLE university (founded VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT founded FROM university WHERE affiliation <> 'Public' ORDER BY founded DESC LIMIT 1", "question": "Find the founded year of the newest non public school.", "context": "CREATE TABLE university (founded VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT school_id) FROM basketball_match", "question": "How many schools are in the basketball match?", "context": "CREATE TABLE basketball_match (school_id VARCHAR)"}, {"answer": "SELECT acc_percent FROM basketball_match ORDER BY acc_percent DESC LIMIT 1", "question": "What is the highest acc percent score in the competition?", "context": "CREATE TABLE basketball_match (acc_percent VARCHAR)"}, {"answer": "SELECT t1.Primary_conference FROM university AS t1 JOIN basketball_match AS t2 ON t1.school_id = t2.school_id ORDER BY t2.acc_percent LIMIT 1", "question": "What is the primary conference of the school that has the lowest acc percent score in the competition?", "context": "CREATE TABLE basketball_match (school_id VARCHAR, acc_percent VARCHAR); CREATE TABLE university (Primary_conference VARCHAR, school_id VARCHAR)"}, {"answer": "SELECT t2.team_name, t2.ACC_Regular_Season FROM university AS t1 JOIN basketball_match AS t2 ON t1.school_id = t2.school_id ORDER BY t1.founded LIMIT 1", "question": "What is the team name and acc regular season score of the school that was founded for the longest time?", "context": "CREATE TABLE university (school_id VARCHAR, founded VARCHAR); CREATE TABLE basketball_match (team_name VARCHAR, ACC_Regular_Season VARCHAR, school_id VARCHAR)"}, {"answer": "SELECT t2.All_Games, t1.location FROM university AS t1 JOIN basketball_match AS t2 ON t1.school_id = t2.school_id WHERE team_name = 'Clemson'", "question": "Find the location and all games score of the school that has Clemson as its team name.", "context": "CREATE TABLE basketball_match (All_Games VARCHAR, school_id VARCHAR); CREATE TABLE university (location VARCHAR, school_id VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM university WHERE founded < 1850", "question": "What are the average enrollment size of the universities that are founded before 1850?", "context": "CREATE TABLE university (enrollment INTEGER, founded INTEGER)"}, {"answer": "SELECT enrollment, primary_conference FROM university ORDER BY founded LIMIT 1", "question": "Show the enrollment and primary_conference of the oldest college.", "context": "CREATE TABLE university (enrollment VARCHAR, primary_conference VARCHAR, founded VARCHAR)"}, {"answer": "SELECT SUM(enrollment), MIN(enrollment) FROM university", "question": "What is the total and minimum enrollment of all schools?", "context": "CREATE TABLE university (enrollment INTEGER)"}, {"answer": "SELECT SUM(enrollment), affiliation FROM university GROUP BY affiliation", "question": "Find the total student enrollment for different affiliation type schools.", "context": "CREATE TABLE university (affiliation VARCHAR, enrollment INTEGER)"}, {"answer": "SELECT COUNT(*) FROM university WHERE NOT school_id IN (SELECT school_id FROM basketball_match)", "question": "How many schools do not participate in the basketball match?", "context": "CREATE TABLE university (school_id VARCHAR); CREATE TABLE basketball_match (school_id VARCHAR)"}, {"answer": "SELECT school FROM university WHERE founded > 1850 OR affiliation = 'Public'", "question": "Find the schools that were either founded after 1850 or public.", "context": "CREATE TABLE university (school VARCHAR, founded VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT affiliation) FROM university", "question": "Find how many different affiliation types there are.", "context": "CREATE TABLE university (affiliation VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM university WHERE LOCATION LIKE \"%NY%\"", "question": "Find how many school locations have the word 'NY'.", "context": "CREATE TABLE university (LOCATION VARCHAR)"}, {"answer": "SELECT t2.team_name FROM university AS t1 JOIN basketball_match AS t2 ON t1.school_id = t2.school_id WHERE enrollment < (SELECT AVG(enrollment) FROM university)", "question": "Find the team names of the universities whose enrollments are smaller than the average enrollment size.", "context": "CREATE TABLE university (school_id VARCHAR); CREATE TABLE basketball_match (team_name VARCHAR, school_id VARCHAR); CREATE TABLE university (enrollment INTEGER)"}, {"answer": "SELECT COUNT(*), affiliation FROM university WHERE enrollment > 20000 GROUP BY affiliation", "question": "Find the number of universities that have over a 20000 enrollment size for each affiliation type.", "context": "CREATE TABLE university (affiliation VARCHAR, enrollment INTEGER)"}, {"answer": "SELECT SUM(Enrollment), affiliation FROM university WHERE founded > 1850 GROUP BY affiliation", "question": "Find the total number of students enrolled in the colleges that were founded after the year of 1850 for each affiliation type.", "context": "CREATE TABLE university (affiliation VARCHAR, Enrollment INTEGER, founded INTEGER)"}, {"answer": "SELECT MAX(Enrollment) FROM university", "question": "What is the maximum enrollment across all schools?", "context": "CREATE TABLE university (Enrollment INTEGER)"}, {"answer": "SELECT * FROM basketball_match", "question": "List all information regarding the basketball match.", "context": "CREATE TABLE basketball_match (Id VARCHAR)"}, {"answer": "SELECT team_name FROM basketball_match ORDER BY All_Home DESC", "question": "List names of all teams in the basketball competition, ordered by all home scores in descending order.", "context": "CREATE TABLE basketball_match (team_name VARCHAR, All_Home VARCHAR)"}, {"answer": "SELECT Model_name FROM chip_model WHERE Launch_year BETWEEN 2002 AND 2004", "question": "the names of models that launched between 2002 and 2004.", "context": "CREATE TABLE chip_model (Model_name VARCHAR, Launch_year INTEGER)"}, {"answer": "SELECT Model_name, RAM_MiB FROM chip_model ORDER BY RAM_MiB LIMIT 1", "question": "Which model has the least amount of RAM? List the model name and the amount of RAM.", "context": "CREATE TABLE chip_model (Model_name VARCHAR, RAM_MiB VARCHAR)"}, {"answer": "SELECT chip_model, screen_mode FROM phone WHERE Hardware_Model_name = \"LG-P760\"", "question": "What are the chip model and screen mode of the phone with hardware model name \"LG-P760\"?", "context": "CREATE TABLE phone (chip_model VARCHAR, screen_mode VARCHAR, Hardware_Model_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM phone WHERE Company_name = \"Nokia Corporation\"", "question": "How many phone hardware models are produced by the company named \"Nokia Corporation\"?", "context": "CREATE TABLE phone (Company_name VARCHAR)"}, {"answer": "SELECT MAX(T1.RAM_MiB), MIN(T1.RAM_MiB) FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T2.Company_name = \"Nokia Corporation\"", "question": "What is maximum and minimum RAM size of phone produced by company named \"Nokia Corporation\"?", "context": "CREATE TABLE phone (chip_model VARCHAR, Company_name VARCHAR); CREATE TABLE chip_model (RAM_MiB INTEGER, Model_name VARCHAR)"}, {"answer": "SELECT AVG(T1.ROM_MiB) FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T2.Company_name = \"Nokia Corporation\"", "question": "What is the average ROM size of phones produced by the company named \"Nokia Corporation\"?", "context": "CREATE TABLE phone (chip_model VARCHAR, Company_name VARCHAR); CREATE TABLE chip_model (ROM_MiB INTEGER, Model_name VARCHAR)"}, {"answer": "SELECT T2.Hardware_Model_name, T2.Company_name FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T1.Launch_year = 2002 OR T1.RAM_MiB > 32", "question": "List the hardware model name and company name for all the phones that were launched in year 2002 or have RAM size greater than 32.", "context": "CREATE TABLE chip_model (Model_name VARCHAR, Launch_year VARCHAR, RAM_MiB VARCHAR); CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, chip_model VARCHAR)"}, {"answer": "SELECT Hardware_Model_name, Company_name FROM phone WHERE Accreditation_type LIKE 'Full'", "question": "Find all phones that have word 'Full' in their accreditation types. List the Hardware Model name and Company name.", "context": "CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, Accreditation_type VARCHAR)"}, {"answer": "SELECT T1.Char_cells, T1.Pixels, T1.Hardware_colours FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T2.Hardware_Model_name = \"LG-P760\"", "question": "Find the Char cells, Pixels and Hardware colours for the screen of the phone whose hardware model name is \"LG-P760\".", "context": "CREATE TABLE phone (screen_mode VARCHAR, Hardware_Model_name VARCHAR); CREATE TABLE screen_mode (Char_cells VARCHAR, Pixels VARCHAR, Hardware_colours VARCHAR, Graphics_mode VARCHAR)"}, {"answer": "SELECT T2.Hardware_Model_name, T2.Company_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T1.Type = \"Graphics\"", "question": "List the hardware model name and company name for the phone whose screen mode type is \"Graphics.\"", "context": "CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR)"}, {"answer": "SELECT Company_name, COUNT(*) FROM phone GROUP BY Company_name ORDER BY COUNT(*) LIMIT 1", "question": "Find the name of the company that has the least number of phone models. List the company name and the number of phone model produced by that company.", "context": "CREATE TABLE phone (Company_name VARCHAR)"}, {"answer": "SELECT Company_name FROM phone GROUP BY Company_name HAVING COUNT(*) > 1", "question": "List the name of the company that produced more than one phone model.", "context": "CREATE TABLE phone (Company_name VARCHAR)"}, {"answer": "SELECT MAX(used_kb), MIN(used_kb), AVG(used_kb) FROM screen_mode", "question": "List the maximum, minimum and average number of used kb in screen mode.", "context": "CREATE TABLE screen_mode (used_kb INTEGER)"}, {"answer": "SELECT T2.Hardware_Model_name FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T1.Launch_year = 2002 ORDER BY T1.RAM_MiB DESC LIMIT 1", "question": "List the name of the phone model launched in year 2002 and with the highest RAM size.", "context": "CREATE TABLE chip_model (Model_name VARCHAR, Launch_year VARCHAR, RAM_MiB VARCHAR); CREATE TABLE phone (Hardware_Model_name VARCHAR, chip_model VARCHAR)"}, {"answer": "SELECT T1.WiFi, T3.Type FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model JOIN screen_mode AS T3 ON T2.screen_mode = T3.Graphics_mode WHERE T2.Hardware_Model_name = \"LG-P760\"", "question": "What are the wifi and screen mode type of the hardware model named \"LG-P760\"?", "context": "CREATE TABLE phone (chip_model VARCHAR, screen_mode VARCHAR, Hardware_Model_name VARCHAR); CREATE TABLE chip_model (WiFi VARCHAR, Model_name VARCHAR); CREATE TABLE screen_mode (Type VARCHAR, Graphics_mode VARCHAR)"}, {"answer": "SELECT T2.Hardware_Model_name FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model JOIN screen_mode AS T3 ON T2.screen_mode = T3.Graphics_mode WHERE T3.Type = \"Text\" OR T1.RAM_MiB > 32", "question": "List the hardware model name for the phones that have screen mode type \"Text\" or RAM size greater than 32.", "context": "CREATE TABLE chip_model (Model_name VARCHAR, RAM_MiB VARCHAR); CREATE TABLE phone (Hardware_Model_name VARCHAR, chip_model VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR)"}, {"answer": "SELECT DISTINCT T2.Hardware_Model_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T1.Type = \"Graphics\" OR t2.Company_name = \"Nokia Corporation\"", "question": "List the hardware model name for the phones that were produced by \"Nokia Corporation\" or whose screen mode type is \"Graphics.\"", "context": "CREATE TABLE phone (Hardware_Model_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR)"}, {"answer": "SELECT DISTINCT T2.Hardware_Model_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE t2.Company_name = \"Nokia Corporation\" AND T1.Type <> \"Text\"", "question": "List the hardware model name for the phons that were produced by \"Nokia Corporation\" but whose screen mode type is not Text.", "context": "CREATE TABLE phone (Hardware_Model_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR)"}, {"answer": "SELECT DISTINCT T2.Hardware_Model_name, T2.Company_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T1.used_kb BETWEEN 10 AND 15", "question": "List the phone hardware model and company name for the phones whose screen usage in kb is between 10 and 15.", "context": "CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, used_kb INTEGER)"}, {"answer": "SELECT Accreditation_type, COUNT(*) FROM phone GROUP BY Accreditation_type", "question": "Find the number of phones for each accreditation type.", "context": "CREATE TABLE phone (Accreditation_type VARCHAR)"}, {"answer": "SELECT Accreditation_level FROM phone GROUP BY Accreditation_level HAVING COUNT(*) > 3", "question": "Find the accreditation level that more than 3 phones use.", "context": "CREATE TABLE phone (Accreditation_level VARCHAR)"}, {"answer": "SELECT * FROM chip_model", "question": "Find the details for all chip models.", "context": "CREATE TABLE chip_model (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM chip_model WHERE wifi = 'No'", "question": "How many models do not have the wifi function?", "context": "CREATE TABLE chip_model (wifi VARCHAR)"}, {"answer": "SELECT model_name FROM chip_model ORDER BY launch_year", "question": "List all the model names sorted by their launch year.", "context": "CREATE TABLE chip_model (model_name VARCHAR, launch_year VARCHAR)"}, {"answer": "SELECT AVG(RAM_MiB) FROM chip_model WHERE NOT model_name IN (SELECT chip_model FROM phone)", "question": "Find the average ram mib size of the chip models that are never used by any phone.", "context": "CREATE TABLE chip_model (RAM_MiB INTEGER, model_name VARCHAR, chip_model VARCHAR); CREATE TABLE phone (RAM_MiB INTEGER, model_name VARCHAR, chip_model VARCHAR)"}, {"answer": "SELECT model_name FROM chip_model EXCEPT SELECT chip_model FROM phone WHERE Accreditation_type = 'Full'", "question": "Find the names of the chip models that are not used by any phone with full accreditation type.", "context": "CREATE TABLE chip_model (model_name VARCHAR, chip_model VARCHAR, Accreditation_type VARCHAR); CREATE TABLE phone (model_name VARCHAR, chip_model VARCHAR, Accreditation_type VARCHAR)"}, {"answer": "SELECT t1.pixels FROM screen_mode AS t1 JOIN phone AS t2 ON t1.Graphics_mode = t2.screen_mode WHERE t2.Accreditation_type = 'Provisional' INTERSECT SELECT t1.pixels FROM screen_mode AS t1 JOIN phone AS t2 ON t1.Graphics_mode = t2.screen_mode WHERE t2.Accreditation_type = 'Full'", "question": "Find the pixels of the screen modes that are used by both phones with full accreditation types and phones with Provisional accreditation types.", "context": "CREATE TABLE phone (screen_mode VARCHAR, Accreditation_type VARCHAR); CREATE TABLE screen_mode (pixels VARCHAR, Graphics_mode VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM country", "question": "How many countries are there in total?", "context": "CREATE TABLE country (Id VARCHAR)"}, {"answer": "SELECT Country_name, Capital FROM country", "question": "Show the country name and capital of all countries.", "context": "CREATE TABLE country (Country_name VARCHAR, Capital VARCHAR)"}, {"answer": "SELECT Official_native_language FROM country WHERE Official_native_language LIKE \"%English%\"", "question": "Show all official native languages that contain the word \"English\".", "context": "CREATE TABLE country (Official_native_language VARCHAR)"}, {"answer": "SELECT DISTINCT POSITION FROM match_season", "question": "Show all distinct positions of matches.", "context": "CREATE TABLE match_season (POSITION VARCHAR)"}, {"answer": "SELECT Player FROM match_season WHERE College = \"UCLA\"", "question": "Show the players from college UCLA.", "context": "CREATE TABLE match_season (Player VARCHAR, College VARCHAR)"}, {"answer": "SELECT DISTINCT POSITION FROM match_season WHERE College = \"UCLA\" OR College = \"Duke\"", "question": "Show the distinct position of players from college UCLA or Duke.", "context": "CREATE TABLE match_season (POSITION VARCHAR, College VARCHAR)"}, {"answer": "SELECT Draft_Pick_Number, Draft_Class FROM match_season WHERE POSITION = \"Defender\"", "question": "Show the draft pick numbers and draft classes of players whose positions are defenders.", "context": "CREATE TABLE match_season (Draft_Pick_Number VARCHAR, Draft_Class VARCHAR, POSITION VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Team) FROM match_season", "question": "How many distinct teams are involved in match seasons?", "context": "CREATE TABLE match_season (Team VARCHAR)"}, {"answer": "SELECT Player, Years_Played FROM player", "question": "Show the players and the years played.", "context": "CREATE TABLE player (Player VARCHAR, Years_Played VARCHAR)"}, {"answer": "SELECT Name FROM Team", "question": "Show all team names.", "context": "CREATE TABLE Team (Name VARCHAR)"}, {"answer": "SELECT T2.Season, T2.Player, T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country", "question": "Show the season, the player, and the name of the country that player belongs to.", "context": "CREATE TABLE match_season (Season VARCHAR, Player VARCHAR, Country VARCHAR); CREATE TABLE country (Country_name VARCHAR, Country_id 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\"", "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 DISTINCT T2.Position FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Capital = \"Dublin\"", "question": "What are the distinct positions of the players from a country whose capital is Dublin?", "context": "CREATE TABLE country (Country_id VARCHAR, Capital VARCHAR); CREATE TABLE match_season (Position VARCHAR, Country VARCHAR)"}, {"answer": "SELECT T1.Official_native_language FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.College = \"Maryland\" OR T2.College = \"Duke\"", "question": "What are the official languages of the countries of players from Maryland or Duke college?", "context": "CREATE TABLE country (Official_native_language VARCHAR, Country_id VARCHAR); CREATE TABLE match_season (Country VARCHAR, College VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT T1.Official_native_language) FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = \"Defender\"", "question": "How many distinct official languages are there among countries of players whose positions are defenders.", "context": "CREATE TABLE country (Official_native_language VARCHAR, Country_id VARCHAR); CREATE TABLE match_season (Country VARCHAR, Position VARCHAR)"}, {"answer": "SELECT T1.Season, T1.Player, T2.Name FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id", "question": "Show the season, the player, and the name of the team that players belong to.", "context": "CREATE TABLE team (Name VARCHAR, Team_id VARCHAR); CREATE TABLE match_season (Season VARCHAR, Player VARCHAR, Team VARCHAR)"}, {"answer": "SELECT T1.Position FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = \"Ryley Goldner\"", "question": "Show the positions of the players from the team with name \"Ryley Goldner\".", "context": "CREATE TABLE match_season (Position VARCHAR, Team VARCHAR); CREATE TABLE team (Team_id VARCHAR, Name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT T1.College) FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = \"Columbus Crew\"", "question": "How many distinct colleges are associated with players from the team with name \"Columbus Crew\".", "context": "CREATE TABLE match_season (College VARCHAR, Team VARCHAR); CREATE TABLE team (Team_id VARCHAR, Name VARCHAR)"}, {"answer": "SELECT T1.Player, T1.Years_Played FROM player AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = \"Columbus Crew\"", "question": "Show the players and years played for players from team \"Columbus Crew\".", "context": "CREATE TABLE player (Player VARCHAR, Years_Played VARCHAR, Team VARCHAR); CREATE TABLE team (Team_id VARCHAR, Name VARCHAR)"}, {"answer": "SELECT POSITION, COUNT(*) FROM match_season GROUP BY POSITION", "question": "Show the position of players and the corresponding number of players.", "context": "CREATE TABLE match_season (POSITION VARCHAR)"}, {"answer": "SELECT Country_name, COUNT(*) FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country GROUP BY T1.Country_name", "question": "Show the country names and the corresponding number of players.", "context": "CREATE TABLE match_season (Country VARCHAR); CREATE TABLE country (Country_name VARCHAR, Country_id VARCHAR)"}, {"answer": "SELECT player FROM match_season ORDER BY College", "question": "Return all players sorted by college in ascending alphabetical order.", "context": "CREATE TABLE match_season (player VARCHAR, College VARCHAR)"}, {"answer": "SELECT POSITION FROM match_season GROUP BY POSITION ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most common position of players in match seasons.", "context": "CREATE TABLE match_season (POSITION VARCHAR)"}, {"answer": "SELECT College FROM match_season GROUP BY College ORDER BY COUNT(*) DESC LIMIT 3", "question": "Show the top 3 most common colleges of players in match seasons.", "context": "CREATE TABLE match_season (College VARCHAR)"}, {"answer": "SELECT College FROM match_season GROUP BY College HAVING COUNT(*) >= 2", "question": "Show the name of colleges that have at least two players.", "context": "CREATE TABLE match_season (College VARCHAR)"}, {"answer": "SELECT College FROM match_season GROUP BY College HAVING COUNT(*) >= 2 ORDER BY College DESC", "question": "Show the name of colleges that have at least two players in descending alphabetical order.", "context": "CREATE TABLE match_season (College VARCHAR)"}, {"answer": "SELECT Name FROM team WHERE NOT Team_id IN (SELECT Team FROM match_season)", "question": "What are the names of teams that do no have match season record?", "context": "CREATE TABLE match_season (Name VARCHAR, Team_id VARCHAR, Team VARCHAR); CREATE TABLE team (Name VARCHAR, Team_id VARCHAR, Team VARCHAR)"}, {"answer": "SELECT T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = \"Forward\" INTERSECT SELECT T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = \"Defender\"", "question": "What are the names of countries that have both players with position forward and players with position defender?", "context": "CREATE TABLE country (Country_name VARCHAR, Country_id VARCHAR); CREATE TABLE match_season (Country VARCHAR, Position VARCHAR)"}, {"answer": "SELECT College FROM match_season WHERE POSITION = \"Midfielder\" INTERSECT SELECT College FROM match_season WHERE POSITION = \"Defender\"", "question": "Which college have both players with position midfielder and players with position defender?", "context": "CREATE TABLE match_season (College VARCHAR, POSITION VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM climber", "question": "How many climbers are there?", "context": "CREATE TABLE climber (Id VARCHAR)"}, {"answer": "SELECT Name FROM climber ORDER BY Points DESC", "question": "List the names of climbers in descending order of points.", "context": "CREATE TABLE climber (Name VARCHAR, Points VARCHAR)"}, {"answer": "SELECT Name FROM climber WHERE Country <> \"Switzerland\"", "question": "List the names of climbers whose country is not Switzerland.", "context": "CREATE TABLE climber (Name VARCHAR, Country VARCHAR)"}, {"answer": "SELECT MAX(Points) FROM climber WHERE Country = \"United Kingdom\"", "question": "What is the maximum point for climbers whose country is United Kingdom?", "context": "CREATE TABLE climber (Points INTEGER, Country VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Country) FROM climber", "question": "How many distinct countries are the climbers from?", "context": "CREATE TABLE climber (Country VARCHAR)"}, {"answer": "SELECT Name FROM mountain ORDER BY Name", "question": "What are the names of mountains in ascending alphabetical order?", "context": "CREATE TABLE mountain (Name VARCHAR)"}, {"answer": "SELECT Country FROM mountain WHERE Height > 5000", "question": "What are the countries of mountains with height bigger than 5000?", "context": "CREATE TABLE mountain (Country VARCHAR, Height INTEGER)"}, {"answer": "SELECT Name FROM mountain ORDER BY Height DESC LIMIT 1", "question": "What is the name of the highest mountain?", "context": "CREATE TABLE mountain (Name VARCHAR, Height VARCHAR)"}, {"answer": "SELECT DISTINCT Range FROM mountain ORDER BY Prominence DESC LIMIT 3", "question": "List the distinct ranges of the mountains with the top 3 prominence.", "context": "CREATE TABLE mountain (Range VARCHAR, Prominence VARCHAR)"}, {"answer": "SELECT T1.Name, T2.Name FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID", "question": "Show names of climbers and the names of mountains they climb.", "context": "CREATE TABLE mountain (Name VARCHAR, Mountain_ID VARCHAR); CREATE TABLE climber (Name VARCHAR, Mountain_ID VARCHAR)"}, {"answer": "SELECT T1.Name, T2.Height FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID", "question": "Show the names of climbers and the heights of mountains they climb.", "context": "CREATE TABLE mountain (Height VARCHAR, Mountain_ID VARCHAR); CREATE TABLE climber (Name VARCHAR, Mountain_ID VARCHAR)"}, {"answer": "SELECT T2.Height FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID ORDER BY T1.Points DESC LIMIT 1", "question": "Show the height of the mountain climbed by the climber with the maximum points.", "context": "CREATE TABLE climber (Mountain_ID VARCHAR, Points VARCHAR); CREATE TABLE mountain (Height VARCHAR, Mountain_ID VARCHAR)"}, {"answer": "SELECT DISTINCT T2.Name FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID WHERE T1.Country = \"West Germany\"", "question": "Show the distinct names of mountains climbed by climbers from country \"West Germany\".", "context": "CREATE TABLE mountain (Name VARCHAR, Mountain_ID VARCHAR); CREATE TABLE climber (Mountain_ID VARCHAR, Country VARCHAR)"}, {"answer": "SELECT T1.Time FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID WHERE T2.Country = \"Uganda\"", "question": "Show the times used by climbers to climb mountains in Country Uganda.", "context": "CREATE TABLE mountain (Mountain_ID VARCHAR, Country VARCHAR); CREATE TABLE climber (Time VARCHAR, Mountain_ID VARCHAR)"}, {"answer": "SELECT Country, COUNT(*) FROM climber GROUP BY Country", "question": "Please show the countries and the number of climbers from each country.", "context": "CREATE TABLE climber (Country VARCHAR)"}, {"answer": "SELECT Country FROM mountain GROUP BY Country HAVING COUNT(*) > 1", "question": "List the countries that have more than one mountain.", "context": "CREATE TABLE mountain (Country VARCHAR)"}, {"answer": "SELECT Name FROM mountain WHERE NOT Mountain_ID IN (SELECT Mountain_ID FROM climber)", "question": "List the names of mountains that do not have any climber.", "context": "CREATE TABLE mountain (Name VARCHAR, Mountain_ID VARCHAR); CREATE TABLE climber (Name VARCHAR, Mountain_ID VARCHAR)"}, {"answer": "SELECT Country FROM mountain WHERE Height > 5600 INTERSECT SELECT Country FROM mountain WHERE Height < 5200", "question": "Show the countries that have mountains with height more than 5600 stories and mountains with height less than 5200.", "context": "CREATE TABLE mountain (Country VARCHAR, Height INTEGER)"}, {"answer": "SELECT Range FROM mountain GROUP BY Range ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the range that has the most number of mountains.", "context": "CREATE TABLE mountain (Range VARCHAR)"}, {"answer": "SELECT Name FROM mountain WHERE Height > 5000 OR Prominence > 1000", "question": "Show the names of mountains with height more than 5000 or prominence more than 1000.", "context": "CREATE TABLE mountain (Name VARCHAR, Height VARCHAR, Prominence VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM body_builder", "question": "How many body builders are there?", "context": "CREATE TABLE body_builder (Id VARCHAR)"}, {"answer": "SELECT Total FROM body_builder ORDER BY Total", "question": "List the total scores of body builders in ascending order.", "context": "CREATE TABLE body_builder (Total VARCHAR)"}, {"answer": "SELECT Snatch, Clean_Jerk FROM body_builder ORDER BY Snatch", "question": "List the snatch score and clean jerk score of body builders in ascending order of snatch score.", "context": "CREATE TABLE body_builder (Snatch VARCHAR, Clean_Jerk VARCHAR)"}, {"answer": "SELECT AVG(Snatch) FROM body_builder", "question": "What is the average snatch score of body builders?", "context": "CREATE TABLE body_builder (Snatch INTEGER)"}, {"answer": "SELECT Clean_Jerk FROM body_builder ORDER BY Total DESC LIMIT 1", "question": "What are the clean and jerk score of the body builder with the highest total score?", "context": "CREATE TABLE body_builder (Clean_Jerk VARCHAR, Total VARCHAR)"}, {"answer": "SELECT Birth_Date FROM People ORDER BY Height", "question": "What are the birthdays of people in ascending order of height?", "context": "CREATE TABLE People (Birth_Date VARCHAR, Height VARCHAR)"}, {"answer": "SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID", "question": "What are the names of body builders?", "context": "CREATE TABLE body_builder (People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Total > 300", "question": "What are the names of body builders whose total score is higher than 300?", "context": "CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE body_builder (People_ID VARCHAR, Total INTEGER)"}, {"answer": "SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Weight DESC LIMIT 1", "question": "What is the name of the body builder with the greatest body weight?", "context": "CREATE TABLE body_builder (People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR, Weight VARCHAR)"}, {"answer": "SELECT T2.Birth_Date, T2.Birth_Place FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Total DESC LIMIT 1", "question": "What are the birth date and birth place of the body builder with the highest total points?", "context": "CREATE TABLE body_builder (People_ID VARCHAR, Total VARCHAR); CREATE TABLE people (Birth_Date VARCHAR, Birth_Place VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T2.Height FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Total < 315", "question": "What are the heights of body builders with total score smaller than 315?", "context": "CREATE TABLE people (Height VARCHAR, People_ID VARCHAR); CREATE TABLE body_builder (People_ID VARCHAR, Total INTEGER)"}, {"answer": "SELECT AVG(T1.Total) FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Height > 200", "question": "What is the average total score of body builders with height bigger than 200?", "context": "CREATE TABLE people (People_ID VARCHAR, Height INTEGER); CREATE TABLE body_builder (Total INTEGER, People_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Total DESC", "question": "What are the names of body builders in descending order of total scores?", "context": "CREATE TABLE body_builder (People_ID VARCHAR, Total VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT Birth_Place, COUNT(*) FROM people GROUP BY Birth_Place", "question": "List each birth place along with the number of people from there.", "context": "CREATE TABLE people (Birth_Place VARCHAR)"}, {"answer": "SELECT Birth_Place FROM people GROUP BY Birth_Place ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most common birth place of people?", "context": "CREATE TABLE people (Birth_Place VARCHAR)"}, {"answer": "SELECT Birth_Place FROM people GROUP BY Birth_Place HAVING COUNT(*) >= 2", "question": "What are the birth places that are shared by at least two people?", "context": "CREATE TABLE people (Birth_Place VARCHAR)"}, {"answer": "SELECT Height, Weight FROM people ORDER BY Height DESC", "question": "List the height and weight of people in descending order of height.", "context": "CREATE TABLE people (Height VARCHAR, Weight VARCHAR)"}, {"answer": "SELECT * FROM body_builder", "question": "Show all information about each body builder.", "context": "CREATE TABLE body_builder (Id VARCHAR)"}, {"answer": "SELECT Name, birth_place FROM people EXCEPT SELECT T1.Name, T1.birth_place FROM people AS T1 JOIN body_builder AS T2 ON T1.people_id = T2.people_id", "question": "List the names and origins of people who are not body builders.", "context": "CREATE TABLE people (Name VARCHAR, birth_place VARCHAR, people_id VARCHAR); CREATE TABLE body_builder (people_id VARCHAR); CREATE TABLE people (Name VARCHAR, birth_place VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Birth_Place) FROM people", "question": "How many distinct birth places are there?", "context": "CREATE TABLE people (Birth_Place VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM people WHERE NOT people_id IN (SELECT People_ID FROM body_builder)", "question": "How many persons are not body builders?", "context": "CREATE TABLE body_builder (people_id VARCHAR, People_ID VARCHAR); CREATE TABLE people (people_id VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T2.weight FROM body_builder AS T1 JOIN people AS T2 ON T1.people_id = T2.people_id WHERE T1.snatch > 140 OR T2.height > 200", "question": "List the weight of the body builders who have snatch score higher than 140 or have the height greater than 200.", "context": "CREATE TABLE people (weight VARCHAR, people_id VARCHAR, height VARCHAR); CREATE TABLE body_builder (people_id VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT T1.total FROM body_builder AS T1 JOIN people AS T2 ON T1.people_id = T2.people_id WHERE T2.Birth_Date LIKE \"%January%\"", "question": "What are the total scores of the body builders whose birthday contains the string \"January\" ?", "context": "CREATE TABLE people (people_id VARCHAR, Birth_Date VARCHAR); CREATE TABLE body_builder (total VARCHAR, people_id VARCHAR)"}, {"answer": "SELECT MIN(snatch) FROM body_builder", "question": "What is the minimum snatch score?", "context": "CREATE TABLE body_builder (snatch INTEGER)"}, {"answer": "SELECT COUNT(*) FROM election", "question": "How many elections are there?", "context": "CREATE TABLE election (Id VARCHAR)"}, {"answer": "SELECT Votes FROM election ORDER BY Votes DESC", "question": "List the votes of elections in descending order.", "context": "CREATE TABLE election (Votes VARCHAR)"}, {"answer": "SELECT Date, Vote_Percent FROM election", "question": "List the dates and vote percents of elections.", "context": "CREATE TABLE election (Date VARCHAR, Vote_Percent VARCHAR)"}, {"answer": "SELECT MIN(Vote_Percent), MAX(Vote_Percent) FROM election", "question": "What are the minimum and maximum vote percents of elections?", "context": "CREATE TABLE election (Vote_Percent INTEGER)"}, {"answer": "SELECT Name, Party FROM representative", "question": "What are the names and parties of representatives?", "context": "CREATE TABLE representative (Name VARCHAR, Party VARCHAR)"}, {"answer": "SELECT Name FROM Representative WHERE Party <> \"Republican\"", "question": "What are the names of representatives whose party is not \"Republican\"?", "context": "CREATE TABLE Representative (Name VARCHAR, Party VARCHAR)"}, {"answer": "SELECT Lifespan FROM representative WHERE State = \"New York\" OR State = \"Indiana\"", "question": "What are the life spans of representatives from New York state or Indiana state?", "context": "CREATE TABLE representative (Lifespan VARCHAR, State VARCHAR)"}, {"answer": "SELECT T2.Name, T1.Date FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID", "question": "What are the names of representatives and the dates of elections they participated in.", "context": "CREATE TABLE election (Date VARCHAR, Representative_ID VARCHAR); CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID WHERE Votes > 10000", "question": "What are the names of representatives with more than 10000 votes in election?", "context": "CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR); CREATE TABLE election (Representative_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID ORDER BY votes DESC", "question": "What are the names of representatives in descending order of votes?", "context": "CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR); CREATE TABLE election (Representative_ID VARCHAR)"}, {"answer": "SELECT T2.Party FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID ORDER BY votes LIMIT 1", "question": "What is the party of the representative that has the smallest number of votes.", "context": "CREATE TABLE representative (Party VARCHAR, Representative_ID VARCHAR); CREATE TABLE election (Representative_ID VARCHAR)"}, {"answer": "SELECT T2.Lifespan FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID ORDER BY Vote_Percent DESC", "question": "What are the lifespans of representatives in descending order of vote percent?", "context": "CREATE TABLE election (Representative_ID VARCHAR); CREATE TABLE representative (Lifespan VARCHAR, Representative_ID VARCHAR)"}, {"answer": "SELECT AVG(T1.Votes) FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID WHERE T2.Party = \"Republican\"", "question": "What is the average number of votes of representatives from party \"Republican\"?", "context": "CREATE TABLE election (Votes INTEGER, Representative_ID VARCHAR); CREATE TABLE representative (Representative_ID VARCHAR, Party VARCHAR)"}, {"answer": "SELECT Party, COUNT(*) FROM representative GROUP BY Party", "question": "What are the different parties of representative? Show the party name and the number of representatives in each party.", "context": "CREATE TABLE representative (Party VARCHAR)"}, {"answer": "SELECT Party, COUNT(*) FROM representative GROUP BY Party ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the party that has the largest number of representatives?", "context": "CREATE TABLE representative (Party VARCHAR)"}, {"answer": "SELECT Party FROM representative GROUP BY Party HAVING COUNT(*) >= 3", "question": "What parties have at least three representatives?", "context": "CREATE TABLE representative (Party VARCHAR)"}, {"answer": "SELECT State FROM representative GROUP BY State HAVING COUNT(*) >= 2", "question": "What states have at least two representatives?", "context": "CREATE TABLE representative (State VARCHAR)"}, {"answer": "SELECT Name FROM representative WHERE NOT Representative_ID IN (SELECT Representative_ID FROM election)", "question": "List the names of representatives that have not participated in elections listed here.", "context": "CREATE TABLE election (Name VARCHAR, Representative_ID VARCHAR); CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR)"}, {"answer": "SELECT Party FROM representative WHERE State = \"New York\" INTERSECT SELECT Party FROM representative WHERE State = \"Pennsylvania\"", "question": "Show the parties that have both representatives in New York state and representatives in Pennsylvania state.", "context": "CREATE TABLE representative (Party VARCHAR, State VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Party) FROM representative", "question": "How many distinct parties are there for representatives?", "context": "CREATE TABLE representative (Party VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Apartment_Bookings", "question": "How many apartment bookings are there in total?", "context": "CREATE TABLE Apartment_Bookings (Id VARCHAR)"}, {"answer": "SELECT booking_start_date, booking_end_date FROM Apartment_Bookings", "question": "Show the start dates and end dates of all the apartment bookings.", "context": "CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, booking_end_date VARCHAR)"}, {"answer": "SELECT DISTINCT building_description FROM Apartment_Buildings", "question": "Show all distinct building descriptions.", "context": "CREATE TABLE Apartment_Buildings (building_description VARCHAR)"}, {"answer": "SELECT building_short_name FROM Apartment_Buildings WHERE building_manager = \"Emma\"", "question": "Show the short names of the buildings managed by \"Emma\".", "context": "CREATE TABLE Apartment_Buildings (building_short_name VARCHAR, building_manager VARCHAR)"}, {"answer": "SELECT building_address, building_phone FROM Apartment_Buildings WHERE building_manager = \"Brenden\"", "question": "Show the addresses and phones of all the buildings managed by \"Brenden\".", "context": "CREATE TABLE Apartment_Buildings (building_address VARCHAR, building_phone VARCHAR, building_manager VARCHAR)"}, {"answer": "SELECT building_full_name FROM Apartment_Buildings WHERE building_full_name LIKE \"%court%\"", "question": "What are the building full names that contain the word \"court\"?", "context": "CREATE TABLE Apartment_Buildings (building_full_name VARCHAR)"}, {"answer": "SELECT MIN(bathroom_count), MAX(bathroom_count) FROM Apartments", "question": "What is the minimum and maximum number of bathrooms of all the apartments?", "context": "CREATE TABLE Apartments (bathroom_count INTEGER)"}, {"answer": "SELECT AVG(bedroom_count) FROM Apartments", "question": "What is the average number of bedrooms of all apartments?", "context": "CREATE TABLE Apartments (bedroom_count INTEGER)"}, {"answer": "SELECT apt_number, room_count FROM Apartments", "question": "Return the apartment number and the number of rooms for each apartment.", "context": "CREATE TABLE Apartments (apt_number VARCHAR, room_count VARCHAR)"}, {"answer": "SELECT AVG(room_count) FROM Apartments WHERE apt_type_code = \"Studio\"", "question": "What is the average number of rooms of apartments with type code \"Studio\"?", "context": "CREATE TABLE Apartments (room_count INTEGER, apt_type_code VARCHAR)"}, {"answer": "SELECT apt_number FROM Apartments WHERE apt_type_code = \"Flat\"", "question": "Return the apartment numbers of the apartments with type code \"Flat\".", "context": "CREATE TABLE Apartments (apt_number VARCHAR, apt_type_code VARCHAR)"}, {"answer": "SELECT guest_first_name, guest_last_name FROM Guests", "question": "Return the first names and last names of all guests", "context": "CREATE TABLE Guests (guest_first_name VARCHAR, guest_last_name VARCHAR)"}, {"answer": "SELECT date_of_birth FROM Guests WHERE gender_code = \"Male\"", "question": "Return the date of birth for all the guests with gender code \"Male\".", "context": "CREATE TABLE Guests (date_of_birth VARCHAR, gender_code VARCHAR)"}, {"answer": "SELECT T2.apt_number, T1.booking_start_date, T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id", "question": "Show the apartment numbers, start dates, and end dates of all the apartment bookings.", "context": "CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, apt_id VARCHAR); CREATE TABLE Apartments (apt_number VARCHAR, apt_id VARCHAR)"}, {"answer": "SELECT T1.booking_start_date, T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.apt_type_code = \"Duplex\"", "question": "What are the booking start and end dates of the apartments with type code \"Duplex\"?", "context": "CREATE TABLE Apartments (apt_id VARCHAR, apt_type_code VARCHAR); CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, apt_id VARCHAR)"}, {"answer": "SELECT T1.booking_start_date, T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 2", "question": "What are the booking start and end dates of the apartments with more than 2 bedrooms?", "context": "CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, apt_id VARCHAR); CREATE TABLE Apartments (apt_id VARCHAR, bedroom_count INTEGER)"}, {"answer": "SELECT T1.booking_status_code FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.apt_number = \"Suite 634\"", "question": "What is the booking status code of the apartment with apartment number \"Suite 634\"?", "context": "CREATE TABLE Apartments (apt_id VARCHAR, apt_number VARCHAR); CREATE TABLE Apartment_Bookings (booking_status_code VARCHAR, apt_id VARCHAR)"}, {"answer": "SELECT DISTINCT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = \"Confirmed\"", "question": "Show the distinct apartment numbers of the apartments that have bookings with status code \"Confirmed\".", "context": "CREATE TABLE Apartments (apt_number VARCHAR, apt_id VARCHAR); CREATE TABLE Apartment_Bookings (apt_id VARCHAR, booking_status_code VARCHAR)"}, {"answer": "SELECT AVG(room_count) FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = \"Provisional\"", "question": "Show the average room count of the apartments that have booking status code \"Provisional\".", "context": "CREATE TABLE Apartment_Bookings (apt_id VARCHAR, booking_status_code VARCHAR); CREATE TABLE Apartments (apt_id VARCHAR)"}, {"answer": "SELECT T2.guest_first_name, T1.booking_start_date, T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id", "question": "Show the guest first names, start dates, and end dates of all the apartment bookings.", "context": "CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, guest_id VARCHAR); CREATE TABLE Guests (guest_first_name VARCHAR, guest_id VARCHAR)"}, {"answer": "SELECT T1.booking_start_date, T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id WHERE T2.gender_code = \"Female\"", "question": "Show the start dates and end dates of all the apartment bookings made by guests with gender code \"Female\".", "context": "CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, guest_id VARCHAR); CREATE TABLE Guests (guest_id VARCHAR, gender_code VARCHAR)"}, {"answer": "SELECT T2.guest_first_name, T2.guest_last_name FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id WHERE T1.booking_status_code = \"Confirmed\"", "question": "Show the first names and last names of all the guests that have apartment bookings with status code \"Confirmed\".", "context": "CREATE TABLE Apartment_Bookings (guest_id VARCHAR, booking_status_code VARCHAR); CREATE TABLE Guests (guest_first_name VARCHAR, guest_last_name VARCHAR, guest_id VARCHAR)"}, {"answer": "SELECT T1.facility_code FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 4", "question": "Show the facility codes of apartments with more than 4 bedrooms.", "context": "CREATE TABLE Apartment_Facilities (facility_code VARCHAR, apt_id VARCHAR); CREATE TABLE Apartments (apt_id VARCHAR, bedroom_count INTEGER)"}, {"answer": "SELECT SUM(T2.room_count) FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.facility_code = \"Gym\"", "question": "Show the total number of rooms of all apartments with facility code \"Gym\".", "context": "CREATE TABLE Apartments (room_count INTEGER, apt_id VARCHAR); CREATE TABLE Apartment_Facilities (apt_id VARCHAR, facility_code VARCHAR)"}, {"answer": "SELECT SUM(T2.room_count) FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T1.building_short_name = \"Columbus Square\"", "question": "Show the total number of rooms of the apartments in the building with short name \"Columbus Square\".", "context": "CREATE TABLE Apartment_Buildings (building_id VARCHAR, building_short_name VARCHAR); CREATE TABLE Apartments (room_count INTEGER, building_id VARCHAR)"}, {"answer": "SELECT T1.building_address FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T2.bathroom_count > 2", "question": "Show the addresses of the buildings that have apartments with more than 2 bathrooms.", "context": "CREATE TABLE Apartment_Buildings (building_address VARCHAR, building_id VARCHAR); CREATE TABLE Apartments (building_id VARCHAR, bathroom_count INTEGER)"}, {"answer": "SELECT T2.apt_type_code, T2.apt_number FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T1.building_manager = \"Kyle\"", "question": "Show the apartment type codes and apartment numbers in the buildings managed by \"Kyle\".", "context": "CREATE TABLE Apartment_Buildings (building_id VARCHAR, building_manager VARCHAR); CREATE TABLE Apartments (apt_type_code VARCHAR, apt_number VARCHAR, building_id VARCHAR)"}, {"answer": "SELECT booking_status_code, COUNT(*) FROM Apartment_Bookings GROUP BY booking_status_code", "question": "Show the booking status code and the corresponding number of bookings.", "context": "CREATE TABLE Apartment_Bookings (booking_status_code VARCHAR)"}, {"answer": "SELECT apt_number FROM Apartments ORDER BY room_count", "question": "Return all the apartment numbers sorted by the room count in ascending order.", "context": "CREATE TABLE Apartments (apt_number VARCHAR, room_count VARCHAR)"}, {"answer": "SELECT apt_number FROM Apartments ORDER BY bedroom_count DESC LIMIT 1", "question": "Return the apartment number with the largest number of bedrooms.", "context": "CREATE TABLE Apartments (apt_number VARCHAR, bedroom_count VARCHAR)"}, {"answer": "SELECT apt_type_code, COUNT(*) FROM Apartments GROUP BY apt_type_code ORDER BY COUNT(*)", "question": "Show the apartment type codes and the corresponding number of apartments sorted by the number of apartments in ascending order.", "context": "CREATE TABLE Apartments (apt_type_code VARCHAR)"}, {"answer": "SELECT apt_type_code FROM Apartments GROUP BY apt_type_code ORDER BY AVG(room_count) DESC LIMIT 3", "question": "Show the top 3 apartment type codes sorted by the average number of rooms in descending order.", "context": "CREATE TABLE Apartments (apt_type_code VARCHAR, room_count INTEGER)"}, {"answer": "SELECT apt_type_code, bathroom_count, bedroom_count FROM Apartments GROUP BY apt_type_code ORDER BY SUM(room_count) DESC LIMIT 1", "question": "Show the apartment type code that has the largest number of total rooms, together with the number of bathrooms and number of bedrooms.", "context": "CREATE TABLE Apartments (apt_type_code VARCHAR, bathroom_count VARCHAR, bedroom_count VARCHAR, room_count INTEGER)"}, {"answer": "SELECT apt_type_code FROM Apartments GROUP BY apt_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most common apartment type code.", "context": "CREATE TABLE Apartments (apt_type_code VARCHAR)"}, {"answer": "SELECT apt_type_code FROM Apartments WHERE bathroom_count > 1 GROUP BY apt_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most common apartment type code among apartments with more than 1 bathroom.", "context": "CREATE TABLE Apartments (apt_type_code VARCHAR, bathroom_count INTEGER)"}, {"answer": "SELECT apt_type_code, MAX(room_count), MIN(room_count) FROM Apartments GROUP BY apt_type_code", "question": "Show each apartment type code, and the maximum and minimum number of rooms for each type.", "context": "CREATE TABLE Apartments (apt_type_code VARCHAR, room_count INTEGER)"}, {"answer": "SELECT gender_code, COUNT(*) FROM Guests GROUP BY gender_code ORDER BY COUNT(*) DESC", "question": "Show each gender code and the corresponding count of guests sorted by the count in descending order.", "context": "CREATE TABLE Guests (gender_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Apartments WHERE NOT apt_id IN (SELECT apt_id FROM Apartment_Facilities)", "question": "How many apartments do not have any facility?", "context": "CREATE TABLE Apartment_Facilities (apt_id VARCHAR); CREATE TABLE Apartments (apt_id VARCHAR)"}, {"answer": "SELECT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = \"Confirmed\" INTERSECT SELECT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = \"Provisional\"", "question": "Show the apartment numbers of apartments with bookings that have status code both \"Provisional\" and \"Confirmed\"", "context": "CREATE TABLE Apartments (apt_number VARCHAR, apt_id VARCHAR); CREATE TABLE Apartment_Bookings (apt_id VARCHAR, booking_status_code VARCHAR)"}, {"answer": "SELECT T1.apt_number FROM Apartments AS T1 JOIN View_Unit_Status AS T2 ON T1.apt_id = T2.apt_id WHERE T2.available_yn = 0 INTERSECT SELECT T1.apt_number FROM Apartments AS T1 JOIN View_Unit_Status AS T2 ON T1.apt_id = T2.apt_id WHERE T2.available_yn = 1", "question": "Show the apartment numbers of apartments with unit status availability of both 0 and 1.", "context": "CREATE TABLE View_Unit_Status (apt_id VARCHAR, available_yn VARCHAR); CREATE TABLE Apartments (apt_number VARCHAR, apt_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM game WHERE season > 2007", "question": "How many games are held after season 2007?", "context": "CREATE TABLE game (season INTEGER)"}, {"answer": "SELECT Date FROM game ORDER BY home_team DESC", "question": "List the dates of games by the home team name in descending order.", "context": "CREATE TABLE game (Date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT season, home_team, away_team FROM game", "question": "List the season, home team, away team of all the games.", "context": "CREATE TABLE game (season VARCHAR, home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(home_games), MIN(home_games), AVG(home_games) FROM stadium", "question": "What are the maximum, minimum and average home games each stadium held?", "context": "CREATE TABLE stadium (home_games INTEGER)"}, {"answer": "SELECT average_attendance FROM stadium WHERE capacity_percentage > 100", "question": "What is the average attendance of stadiums with capacity percentage higher than 100%?", "context": "CREATE TABLE stadium (average_attendance VARCHAR, capacity_percentage INTEGER)"}, {"answer": "SELECT player, number_of_matches, SOURCE FROM injury_accident WHERE injury <> 'Knee problem'", "question": "What are the player name, number of matches, and information source for players who do not suffer from injury of 'Knee problem'?", "context": "CREATE TABLE injury_accident (player VARCHAR, number_of_matches VARCHAR, SOURCE VARCHAR, injury VARCHAR)"}, {"answer": "SELECT T1.season FROM game AS T1 JOIN injury_accident AS T2 ON T1.id = T2.game_id WHERE T2.player = 'Walter Samuel'", "question": "What is the season of the game which causes the player 'Walter Samuel' to get injured?", "context": "CREATE TABLE injury_accident (game_id VARCHAR, player VARCHAR); CREATE TABLE game (season VARCHAR, id VARCHAR)"}, {"answer": "SELECT T1.id, T1.score, T1.date FROM game AS T1 JOIN injury_accident AS T2 ON T2.game_id = T1.id GROUP BY T1.id HAVING COUNT(*) >= 2", "question": "What are the ids, scores, and dates of the games which caused at least two injury accidents?", "context": "CREATE TABLE game (id VARCHAR, score VARCHAR, date VARCHAR); CREATE TABLE injury_accident (game_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", "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.season, T2.name FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id WHERE T3.injury = 'Foot injury' OR T3.injury = 'Knee problem'", "question": "In which season and which stadium did any player have an injury of 'Foot injury' or 'Knee problem'?", "context": "CREATE TABLE stadium (name VARCHAR, id VARCHAR); CREATE TABLE injury_accident (game_id VARCHAR, injury VARCHAR); CREATE TABLE game (season VARCHAR, stadium_id VARCHAR, id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT SOURCE) FROM injury_accident", "question": "How many different kinds of information sources are there for injury accidents?", "context": "CREATE TABLE injury_accident (SOURCE VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM game WHERE NOT id IN (SELECT game_id FROM injury_accident)", "question": "How many games are free of injury accidents?", "context": "CREATE TABLE injury_accident (id VARCHAR, game_id VARCHAR); CREATE TABLE game (id VARCHAR, game_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT T1.injury) FROM injury_accident AS T1 JOIN game AS T2 ON T1.game_id = T2.id WHERE T2.season > 2010", "question": "How many distinct kinds of injuries happened after season 2010?", "context": "CREATE TABLE injury_accident (injury VARCHAR, game_id VARCHAR); CREATE TABLE game (id VARCHAR, season INTEGER)"}, {"answer": "SELECT T2.name FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id WHERE T3.player = 'Walter Samuel' INTERSECT SELECT T2.name FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id WHERE T3.player = 'Thiago Motta'", "question": "List the name of the stadium where both the player 'Walter Samuel' and the player 'Thiago Motta' got injured.", "context": "CREATE TABLE stadium (name VARCHAR, id VARCHAR); CREATE TABLE game (stadium_id VARCHAR, id VARCHAR); CREATE TABLE injury_accident (game_id VARCHAR, player VARCHAR)"}, {"answer": "SELECT name, average_attendance, total_attendance FROM stadium EXCEPT SELECT T2.name, T2.average_attendance, T2.total_attendance FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id", "question": "Show the name, average attendance, total attendance for stadiums where no accidents happened.", "context": "CREATE TABLE stadium (name VARCHAR, average_attendance VARCHAR, total_attendance VARCHAR, id VARCHAR); CREATE TABLE stadium (name VARCHAR, average_attendance VARCHAR, total_attendance VARCHAR); CREATE TABLE game (stadium_id VARCHAR, id VARCHAR); CREATE TABLE injury_accident (game_id VARCHAR)"}, {"answer": "SELECT name FROM stadium WHERE name LIKE \"%Bank%\"", "question": "Which stadium name contains the substring \"Bank\"?", "context": "CREATE TABLE stadium (name VARCHAR)"}, {"answer": "SELECT T1.id, COUNT(*) FROM stadium AS T1 JOIN game AS T2 ON T1.id = T2.stadium_id GROUP BY T1.id", "question": "How many games has each stadium held?", "context": "CREATE TABLE stadium (id VARCHAR); CREATE TABLE game (stadium_id VARCHAR)"}, {"answer": "SELECT T1.date, T2.player FROM game AS T1 JOIN injury_accident AS T2 ON T1.id = T2.game_id ORDER BY T1.season DESC", "question": "For each injury accident, find the date of the game and the name of the injured player in the game, and sort the results in descending order of game season.", "context": "CREATE TABLE game (date VARCHAR, id VARCHAR, season VARCHAR); CREATE TABLE injury_accident (player VARCHAR, game_id VARCHAR)"}, {"answer": "SELECT T1.name, T2.name FROM Country AS T1 JOIN League AS T2 ON T1.id = T2.country_id", "question": "List all country and league names.", "context": "CREATE TABLE League (name VARCHAR, country_id VARCHAR); CREATE TABLE Country (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Country AS T1 JOIN League AS T2 ON T1.id = T2.country_id WHERE T1.name = \"England\"", "question": "How many leagues are there in England?", "context": "CREATE TABLE League (country_id VARCHAR); CREATE TABLE Country (id VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(weight) FROM Player", "question": "What is the average weight of all players?", "context": "CREATE TABLE Player (weight INTEGER)"}, {"answer": "SELECT MAX(weight), MIN(weight) FROM Player", "question": "What is the maximum and minimum height of all players?", "context": "CREATE TABLE Player (weight INTEGER)"}, {"answer": "SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T2.overall_rating > (SELECT AVG(overall_rating) FROM Player_Attributes)", "question": "List all player names who have an overall rating higher than the average.", "context": "CREATE TABLE Player (player_name VARCHAR, player_api_id VARCHAR); CREATE TABLE Player_Attributes (overall_rating INTEGER); CREATE TABLE Player_Attributes (player_api_id VARCHAR, overall_rating INTEGER)"}, {"answer": "SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T2.dribbling = (SELECT MAX(overall_rating) FROM Player_Attributes)", "question": "What are the names of players who have the best dribbling?", "context": "CREATE TABLE Player (player_name VARCHAR, player_api_id VARCHAR); CREATE TABLE Player_Attributes (player_api_id VARCHAR, dribbling VARCHAR); CREATE TABLE Player_Attributes (overall_rating INTEGER)"}, {"answer": "SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T2.crossing > 90 AND T2.preferred_foot = \"right\"", "question": "List the names of all players who have a crossing score higher than 90 and prefer their right foot.", "context": "CREATE TABLE Player (player_name VARCHAR, player_api_id VARCHAR); CREATE TABLE Player_Attributes (player_api_id VARCHAR, crossing VARCHAR, preferred_foot VARCHAR)"}, {"answer": "SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T2.preferred_foot = \"left\" AND T2.overall_rating >= 85 AND T2.overall_rating <= 90", "question": "List the names of all left-footed players who have overall rating between 85 and 90.", "context": "CREATE TABLE Player (player_name VARCHAR, player_api_id VARCHAR); CREATE TABLE Player_Attributes (player_api_id VARCHAR, overall_rating VARCHAR, preferred_foot VARCHAR)"}, {"answer": "SELECT preferred_foot, AVG(overall_rating) FROM Player_Attributes GROUP BY preferred_foot", "question": "What is the average rating for right-footed players and left-footed players?", "context": "CREATE TABLE Player_Attributes (preferred_foot VARCHAR, overall_rating INTEGER)"}, {"answer": "SELECT preferred_foot, COUNT(*) FROM Player_Attributes WHERE overall_rating > 80 GROUP BY preferred_foot", "question": "Of all players with an overall rating greater than 80, how many are right-footed and left-footed?", "context": "CREATE TABLE Player_Attributes (preferred_foot VARCHAR, overall_rating INTEGER)"}, {"answer": "SELECT player_api_id FROM Player WHERE height >= 180 INTERSECT SELECT player_api_id FROM Player_Attributes WHERE overall_rating > 85", "question": "List all of the player ids with a height of at least 180cm and an overall rating higher than 85.", "context": "CREATE TABLE Player_Attributes (player_api_id VARCHAR, height VARCHAR, overall_rating INTEGER); CREATE TABLE Player (player_api_id VARCHAR, height VARCHAR, overall_rating INTEGER)"}, {"answer": "SELECT player_api_id FROM Player WHERE height >= 180 AND height <= 190 INTERSECT SELECT player_api_id FROM Player_Attributes WHERE preferred_foot = \"left\"", "question": "List all of the ids for left-footed players with a height between 180cm and 190cm.", "context": "CREATE TABLE Player_Attributes (player_api_id VARCHAR, preferred_foot VARCHAR, height VARCHAR); CREATE TABLE Player (player_api_id VARCHAR, preferred_foot VARCHAR, height VARCHAR)"}, {"answer": "SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id ORDER BY overall_rating DESC LIMIT 3", "question": "Who are the top 3 players in terms of overall rating?", "context": "CREATE TABLE Player (player_name VARCHAR, player_api_id VARCHAR); CREATE TABLE Player_Attributes (player_api_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.player_name, T1.birthday FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id ORDER BY potential DESC LIMIT 5", "question": "List the names and birthdays of the top five players in terms of potential.", "context": "CREATE TABLE Player_Attributes (player_api_id VARCHAR); CREATE TABLE Player (player_name VARCHAR, birthday VARCHAR, player_api_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM performance", "question": "How many performances are there?", "context": "CREATE TABLE performance (Id VARCHAR)"}, {"answer": "SELECT HOST FROM performance ORDER BY Attendance", "question": "List the hosts of performances in ascending order of attendance.", "context": "CREATE TABLE performance (HOST VARCHAR, Attendance VARCHAR)"}, {"answer": "SELECT Date, LOCATION FROM performance", "question": "What are the dates and locations of performances?", "context": "CREATE TABLE performance (Date VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT Attendance FROM performance WHERE LOCATION = \"TD Garden\" OR LOCATION = \"Bell Centre\"", "question": "Show the attendances of the performances at location \"TD Garden\" or \"Bell Centre\"", "context": "CREATE TABLE performance (Attendance VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT AVG(Attendance) FROM performance", "question": "What is the average number of attendees for performances?", "context": "CREATE TABLE performance (Attendance INTEGER)"}, {"answer": "SELECT Date FROM performance ORDER BY Attendance DESC LIMIT 1", "question": "What is the date of the performance with the highest number of attendees?", "context": "CREATE TABLE performance (Date VARCHAR, Attendance VARCHAR)"}, {"answer": "SELECT LOCATION, COUNT(*) FROM performance GROUP BY LOCATION", "question": "Show different locations and the number of performances at each location.", "context": "CREATE TABLE performance (LOCATION VARCHAR)"}, {"answer": "SELECT LOCATION FROM performance GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most common location of performances.", "context": "CREATE TABLE performance (LOCATION VARCHAR)"}, {"answer": "SELECT LOCATION FROM performance GROUP BY LOCATION HAVING COUNT(*) >= 2", "question": "Show the locations that have at least two performances.", "context": "CREATE TABLE performance (LOCATION VARCHAR)"}, {"answer": "SELECT LOCATION FROM performance WHERE Attendance > 2000 INTERSECT SELECT LOCATION FROM performance WHERE Attendance < 1000", "question": "Show the locations that have both performances with more than 2000 attendees and performances with less than 1000 attendees.", "context": "CREATE TABLE performance (LOCATION VARCHAR, Attendance INTEGER)"}, {"answer": "SELECT T2.Name, T3.Location FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID", "question": "Show the names of members and the location of the performances they attended.", "context": "CREATE TABLE performance (Location VARCHAR, Performance_ID VARCHAR); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR)"}, {"answer": "SELECT T2.Name, T3.Location FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID ORDER BY T2.Name", "question": "Show the names of members and the location of performances they attended in ascending alphabetical order of their names.", "context": "CREATE TABLE performance (Location VARCHAR, Performance_ID VARCHAR); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR)"}, {"answer": "SELECT T3.Date FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID WHERE T2.Role = \"Violin\"", "question": "Show the dates of performances with attending members whose roles are \"Violin\".", "context": "CREATE TABLE performance (Date VARCHAR, Performance_ID VARCHAR); CREATE TABLE member (Member_ID VARCHAR, Role VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR)"}, {"answer": "SELECT T2.Name, T3.Date FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID ORDER BY T3.Attendance DESC", "question": "Show the names of members and the dates of performances they attended in descending order of attendance of the performances.", "context": "CREATE TABLE performance (Date VARCHAR, Performance_ID VARCHAR, Attendance VARCHAR); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR)"}, {"answer": "SELECT Name FROM member WHERE NOT Member_ID IN (SELECT Member_ID FROM member_attendance)", "question": "List the names of members who did not attend any performance.", "context": "CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Name VARCHAR, Member_ID VARCHAR)"}, {"answer": "SELECT DISTINCT building FROM classroom WHERE capacity > 50", "question": "Find the buildings which have rooms with capacity more than 50.", "context": "CREATE TABLE classroom (building VARCHAR, capacity INTEGER)"}, {"answer": "SELECT COUNT(*) FROM classroom WHERE building <> 'Lamberton'", "question": "Count the number of rooms that are not in the Lamberton building.", "context": "CREATE TABLE classroom (building VARCHAR)"}, {"answer": "SELECT dept_name, building FROM department WHERE budget > (SELECT AVG(budget) FROM department)", "question": "What is the name and building of the departments whose budget is more than the average budget?", "context": "CREATE TABLE department (dept_name VARCHAR, building VARCHAR, budget INTEGER)"}, {"answer": "SELECT building, room_number FROM classroom WHERE capacity BETWEEN 50 AND 100", "question": "Find the room number of the rooms which can sit 50 to 100 students and their buildings.", "context": "CREATE TABLE classroom (building VARCHAR, room_number VARCHAR, capacity INTEGER)"}, {"answer": "SELECT dept_name, building FROM department ORDER BY budget DESC LIMIT 1", "question": "Find the name and building of the department with the highest budget.", "context": "CREATE TABLE department (dept_name VARCHAR, building VARCHAR, budget VARCHAR)"}, {"answer": "SELECT name FROM student WHERE dept_name = 'History' ORDER BY tot_cred DESC LIMIT 1", "question": "What is the name of the student who has the highest total credits in the History department.", "context": "CREATE TABLE student (name VARCHAR, dept_name VARCHAR, tot_cred VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM classroom WHERE building = 'Lamberton'", "question": "How many rooms does the Lamberton building have?", "context": "CREATE TABLE classroom (building VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT s_id) FROM advisor", "question": "How many students have advisors?", "context": "CREATE TABLE advisor (s_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT dept_name) FROM course", "question": "How many departments offer courses?", "context": "CREATE TABLE course (dept_name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT course_id) FROM course WHERE dept_name = 'Physics'", "question": "How many different courses offered by Physics department?", "context": "CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR)"}, {"answer": "SELECT T1.title FROM course AS T1 JOIN prereq AS T2 ON T1.course_id = T2.course_id GROUP BY T2.course_id HAVING COUNT(*) = 2", "question": "Find the title of courses that have two prerequisites?", "context": "CREATE TABLE prereq (course_id VARCHAR); CREATE TABLE course (title VARCHAR, course_id VARCHAR)"}, {"answer": "SELECT T1.title, T1.credits, T1.dept_name FROM course AS T1 JOIN prereq AS T2 ON T1.course_id = T2.course_id GROUP BY T2.course_id HAVING COUNT(*) > 1", "question": "Find the title, credit, and department name of courses that have more than one prerequisites?", "context": "CREATE TABLE prereq (course_id VARCHAR); CREATE TABLE course (title VARCHAR, credits VARCHAR, dept_name VARCHAR, course_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM course WHERE NOT course_id IN (SELECT course_id FROM prereq)", "question": "How many courses that do not have prerequisite?", "context": "CREATE TABLE prereq (course_id VARCHAR); CREATE TABLE course (course_id VARCHAR)"}, {"answer": "SELECT title FROM course WHERE NOT course_id IN (SELECT course_id FROM prereq)", "question": "Find the name of the courses that do not have any prerequisite?", "context": "CREATE TABLE prereq (title VARCHAR, course_id VARCHAR); CREATE TABLE course (title VARCHAR, course_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT id) FROM teaches", "question": "How many different instructors have taught some course?", "context": "CREATE TABLE teaches (id VARCHAR)"}, {"answer": "SELECT SUM(budget) FROM department WHERE dept_name = 'Marketing' OR dept_name = 'Finance'", "question": "Find the total budgets of the Marketing or Finance department.", "context": "CREATE TABLE department (budget INTEGER, dept_name VARCHAR)"}, {"answer": "SELECT dept_name FROM instructor WHERE name LIKE '%Soisalon%'", "question": "Find the department name of the instructor whose name contains 'Soisalon'.", "context": "CREATE TABLE instructor (dept_name VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM classroom WHERE building = 'Lamberton' AND capacity < 50", "question": "How many rooms whose capacity is less than 50 does the Lamberton building have?", "context": "CREATE TABLE classroom (building VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT dept_name, budget FROM department WHERE budget > (SELECT AVG(budget) FROM department)", "question": "Find the name and budget of departments whose budgets are more than the average budget.", "context": "CREATE TABLE department (dept_name VARCHAR, budget INTEGER)"}, {"answer": "SELECT name FROM instructor WHERE dept_name = 'Statistics' ORDER BY salary LIMIT 1", "question": "what is the name of the instructor who is in Statistics department and earns the lowest salary?", "context": "CREATE TABLE instructor (name VARCHAR, dept_name VARCHAR, salary VARCHAR)"}, {"answer": "SELECT title FROM course WHERE dept_name = 'Statistics' INTERSECT SELECT title FROM course WHERE dept_name = 'Psychology'", "question": "Find the title of course that is provided by both Statistics and Psychology departments.", "context": "CREATE TABLE course (title VARCHAR, dept_name VARCHAR)"}, {"answer": "SELECT title FROM course WHERE dept_name = 'Statistics' EXCEPT SELECT title FROM course WHERE dept_name = 'Psychology'", "question": "Find the title of course that is provided by Statistics but not Psychology departments.", "context": "CREATE TABLE course (title VARCHAR, dept_name VARCHAR)"}, {"answer": "SELECT id FROM teaches WHERE semester = 'Fall' AND YEAR = 2009 EXCEPT SELECT id FROM teaches WHERE semester = 'Spring' AND YEAR = 2010", "question": "Find the id of instructors who taught a class in Fall 2009 but not in Spring 2010.", "context": "CREATE TABLE teaches (id VARCHAR, semester VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT DISTINCT T1.name FROM student AS T1 JOIN takes AS T2 ON T1.id = T2.id WHERE YEAR = 2009 OR YEAR = 2010", "question": "Find the name of students who took any class in the years of 2009 and 2010.", "context": "CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE takes (id VARCHAR)"}, {"answer": "SELECT dept_name FROM course GROUP BY dept_name ORDER BY COUNT(*) DESC LIMIT 3", "question": "Find the names of the top 3 departments that provide the largest amount of courses?", "context": "CREATE TABLE course (dept_name VARCHAR)"}, {"answer": "SELECT dept_name FROM course GROUP BY dept_name ORDER BY SUM(credits) DESC LIMIT 1", "question": "Find the name of the department that offers the highest total credits?", "context": "CREATE TABLE course (dept_name VARCHAR, credits INTEGER)"}, {"answer": "SELECT title FROM course ORDER BY title, credits", "question": "List the names of all courses ordered by their titles and credits.", "context": "CREATE TABLE course (title VARCHAR, credits VARCHAR)"}, {"answer": "SELECT dept_name FROM department ORDER BY budget LIMIT 1", "question": "Which department has the lowest budget?", "context": "CREATE TABLE department (dept_name VARCHAR, budget VARCHAR)"}, {"answer": "SELECT dept_name, building FROM department ORDER BY budget DESC", "question": "List the names and buildings of all departments sorted by the budget from large to small.", "context": "CREATE TABLE department (dept_name VARCHAR, building VARCHAR, budget VARCHAR)"}, {"answer": "SELECT name FROM instructor ORDER BY salary DESC LIMIT 1", "question": "Who is the instructor with the highest salary?", "context": "CREATE TABLE instructor (name VARCHAR, salary VARCHAR)"}, {"answer": "SELECT * FROM instructor ORDER BY salary", "question": "List the information of all instructors ordered by their salary in ascending order.", "context": "CREATE TABLE instructor (salary VARCHAR)"}, {"answer": "SELECT name, dept_name FROM student ORDER BY tot_cred", "question": "Find the name of the students and their department names sorted by their total credits in ascending order.", "context": "CREATE TABLE student (name VARCHAR, dept_name VARCHAR, tot_cred VARCHAR)"}, {"answer": "SELECT T1.title, T3.name FROM course AS T1 JOIN teaches AS T2 ON T1.course_id = T2.course_id JOIN instructor AS T3 ON T2.id = T3.id WHERE YEAR = 2008 ORDER BY T1.title", "question": "list in alphabetic order all course names and their instructors' names in year 2008.", "context": "CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE teaches (course_id VARCHAR, id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T1.name FROM instructor AS T1 JOIN advisor AS T2 ON T1.id = T2.i_id GROUP BY T2.i_id HAVING COUNT(*) > 1", "question": "Find the name of instructors who are advising more than one student.", "context": "CREATE TABLE advisor (i_id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T1.name FROM student AS T1 JOIN advisor AS T2 ON T1.id = T2.s_id GROUP BY T2.s_id HAVING COUNT(*) > 1", "question": "Find the name of the students who have more than one advisor?", "context": "CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE advisor (s_id VARCHAR)"}, {"answer": "SELECT COUNT(*), building FROM classroom WHERE capacity > 50 GROUP BY building", "question": "Find the number of rooms with more than 50 capacity for each building.", "context": "CREATE TABLE classroom (building VARCHAR, capacity INTEGER)"}, {"answer": "SELECT MAX(capacity), AVG(capacity), building FROM classroom GROUP BY building", "question": "Find the maximum and average capacity among rooms in each building.", "context": "CREATE TABLE classroom (building VARCHAR, capacity INTEGER)"}, {"answer": "SELECT title FROM course GROUP BY title HAVING COUNT(*) > 1", "question": "Find the title of the course that is offered by more than one department.", "context": "CREATE TABLE course (title VARCHAR)"}, {"answer": "SELECT SUM(credits), dept_name FROM course GROUP BY dept_name", "question": "Find the total credits of courses provided by different department.", "context": "CREATE TABLE course (dept_name VARCHAR, credits INTEGER)"}, {"answer": "SELECT MIN(salary), dept_name FROM instructor GROUP BY dept_name HAVING AVG(salary) > (SELECT AVG(salary) FROM instructor)", "question": "Find the minimum salary for the departments whose average salary is above the average payment of all instructors.", "context": "CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER)"}, {"answer": "SELECT COUNT(*), semester, YEAR FROM SECTION GROUP BY semester, YEAR", "question": "Find the number of courses provided in each semester and year.", "context": "CREATE TABLE SECTION (semester VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT YEAR FROM SECTION GROUP BY YEAR ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the year which offers the largest number of courses.", "context": "CREATE TABLE SECTION (YEAR VARCHAR)"}, {"answer": "SELECT semester, YEAR FROM SECTION GROUP BY semester, YEAR ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the year and semester when offers the largest number of courses.", "context": "CREATE TABLE SECTION (semester VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT dept_name FROM student GROUP BY dept_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of department has the highest amount of students?", "context": "CREATE TABLE student (dept_name VARCHAR)"}, {"answer": "SELECT COUNT(*), dept_name FROM student GROUP BY dept_name", "question": "Find the total number of students in each department.", "context": "CREATE TABLE student (dept_name VARCHAR)"}, {"answer": "SELECT semester, YEAR FROM takes GROUP BY semester, YEAR ORDER BY COUNT(*) LIMIT 1", "question": "Find the semester and year which has the least number of student taking any class.", "context": "CREATE TABLE takes (semester VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT i_id FROM advisor AS T1 JOIN student AS T2 ON T1.s_id = T2.id WHERE T2.dept_name = 'History'", "question": "What is the id of the instructor who advises of all students from History department?", "context": "CREATE TABLE advisor (s_id VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR)"}, {"answer": "SELECT T2.name, T2.salary FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id WHERE T3.dept_name = 'History'", "question": "Find the name and salary of the instructors who are advisors of any student from History department?", "context": "CREATE TABLE instructor (name VARCHAR, salary VARCHAR, id VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR)"}, {"answer": "SELECT course_id FROM course EXCEPT SELECT course_id FROM prereq", "question": "Find the id of the courses that do not have any prerequisite?", "context": "CREATE TABLE prereq (course_id VARCHAR); CREATE TABLE course (course_id VARCHAR)"}, {"answer": "SELECT title FROM course WHERE course_id IN (SELECT T1.prereq_id FROM prereq AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.title = 'International Finance')", "question": "What is the title of the prerequisite class of International Finance course?", "context": "CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE prereq (prereq_id VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM course WHERE course_id IN (SELECT T1.course_id FROM prereq AS T1 JOIN course AS T2 ON T1.prereq_id = T2.course_id WHERE T2.title = 'Differential Geometry')", "question": "Find the title of course whose prerequisite is course Differential Geometry.", "context": "CREATE TABLE prereq (course_id VARCHAR, prereq_id VARCHAR); CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR)"}, {"answer": "SELECT name FROM student WHERE id IN (SELECT id FROM takes WHERE semester = 'Fall' AND YEAR = 2003)", "question": "Find the names of students who have taken any course in the fall semester of year 2003.", "context": "CREATE TABLE student (name VARCHAR, id VARCHAR, semester VARCHAR, YEAR VARCHAR); CREATE TABLE takes (name VARCHAR, id VARCHAR, semester VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT T1.title FROM course AS T1 JOIN SECTION AS T2 ON T1.course_id = T2.course_id WHERE building = 'Chandler' AND semester = 'Fall' AND YEAR = 2010", "question": "What is the title of the course that was offered at building Chandler during the fall semester in the year of 2010?", "context": "CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE SECTION (course_id VARCHAR)"}, {"answer": "SELECT T1.name FROM instructor AS T1 JOIN teaches AS T2 ON T1.id = T2.id JOIN course AS T3 ON T2.course_id = T3.course_id WHERE T3.title = 'C Programming'", "question": "Find the name of the instructors who taught C Programming course before.", "context": "CREATE TABLE teaches (id VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T2.name, T2.salary FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id WHERE T3.dept_name = 'Math'", "question": "Find the name and salary of instructors who are advisors of the students from the Math department.", "context": "CREATE TABLE instructor (name VARCHAR, salary VARCHAR, id VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR)"}, {"answer": "SELECT T2.name FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id WHERE T3.dept_name = 'Math' ORDER BY T3.tot_cred", "question": "Find the name of instructors who are advisors of the students from the Math department, and sort the results by students' total credit.", "context": "CREATE TABLE student (id VARCHAR, dept_name VARCHAR, tot_cred VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT title FROM course WHERE course_id IN (SELECT T1.prereq_id FROM prereq AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.title = 'Mobile Computing')", "question": "What is the course title of the prerequisite of course Mobile Computing?", "context": "CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE prereq (prereq_id VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR)"}, {"answer": "SELECT T2.name FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id ORDER BY T3.tot_cred DESC LIMIT 1", "question": "Find the name of instructor who is the advisor of the student who has the highest number of total credits.", "context": "CREATE TABLE student (id VARCHAR, tot_cred VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT name FROM instructor WHERE NOT id IN (SELECT id FROM teaches)", "question": "Find the name of instructors who didn't teach any courses?", "context": "CREATE TABLE teaches (name VARCHAR, id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT id FROM instructor EXCEPT SELECT id FROM teaches", "question": "Find the id of instructors who didn't teach any courses?", "context": "CREATE TABLE teaches (id VARCHAR); CREATE TABLE instructor (id VARCHAR)"}, {"answer": "SELECT name FROM instructor WHERE NOT id IN (SELECT id FROM teaches WHERE semester = 'Spring')", "question": "Find the names of instructors who didn't each any courses in any Spring semester.", "context": "CREATE TABLE teaches (name VARCHAR, id VARCHAR, semester VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR, semester VARCHAR)"}, {"answer": "SELECT dept_name FROM instructor GROUP BY dept_name ORDER BY AVG(salary) DESC LIMIT 1", "question": "Find the name of the department which has the highest average salary of professors.", "context": "CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER)"}, {"answer": "SELECT AVG(T1.salary), COUNT(*) FROM instructor AS T1 JOIN department AS T2 ON T1.dept_name = T2.dept_name ORDER BY T2.budget DESC LIMIT 1", "question": "Find the number and averaged salary of all instructors who are in the department with the highest budget.", "context": "CREATE TABLE department (dept_name VARCHAR, budget VARCHAR); CREATE TABLE instructor (salary INTEGER, dept_name VARCHAR)"}, {"answer": "SELECT T3.title, T3.credits FROM classroom AS T1 JOIN SECTION AS T2 ON T1.building = T2.building AND T1.room_number = T2.room_number JOIN course AS T3 ON T2.course_id = T3.course_id WHERE T1.capacity = (SELECT MAX(capacity) FROM classroom)", "question": "What is the title and credits of the course that is taught in the largest classroom (with the highest capacity)?", "context": "CREATE TABLE SECTION (course_id VARCHAR, building VARCHAR, room_number VARCHAR); CREATE TABLE course (title VARCHAR, credits VARCHAR, course_id VARCHAR); CREATE TABLE classroom (capacity INTEGER, building VARCHAR, room_number VARCHAR); CREATE TABLE classroom (capacity INTEGER)"}, {"answer": "SELECT name FROM student WHERE NOT id IN (SELECT T1.id FROM takes AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.dept_name = 'Biology')", "question": "Find the name of students who didn't take any course from Biology department.", "context": "CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR); CREATE TABLE takes (id VARCHAR, course_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT T2.id), COUNT(DISTINCT T3.id), T3.dept_name FROM department AS T1 JOIN student AS T2 ON T1.dept_name = T2.dept_name JOIN instructor AS T3 ON T1.dept_name = T3.dept_name GROUP BY T3.dept_name", "question": "Find the total number of students and total number of instructors for each department.", "context": "CREATE TABLE department (dept_name VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR); CREATE TABLE instructor (dept_name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T1.name FROM student AS T1 JOIN takes AS T2 ON T1.id = T2.id WHERE T2.course_id IN (SELECT T4.prereq_id FROM course AS T3 JOIN prereq AS T4 ON T3.course_id = T4.course_id WHERE T3.title = 'International Finance')", "question": "Find the name of students who have taken the prerequisite course of the course with title International Finance.", "context": "CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR); CREATE TABLE prereq (prereq_id VARCHAR, course_id VARCHAR); CREATE TABLE takes (id VARCHAR, course_id VARCHAR)"}, {"answer": "SELECT name, salary FROM instructor WHERE salary < (SELECT AVG(salary) FROM instructor WHERE dept_name = 'Physics')", "question": "Find the name and salary of instructors whose salary is below the average salary of the instructors in the Physics department.", "context": "CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR)"}, {"answer": "SELECT T3.name FROM course AS T1 JOIN takes AS T2 ON T1.course_id = T2.course_id JOIN student AS T3 ON T2.id = T3.id WHERE T1.dept_name = 'Statistics'", "question": "Find the name of students who took some course offered by Statistics department.", "context": "CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE takes (course_id VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR)"}, {"answer": "SELECT T2.building, T2.room_number, T2.semester, T2.year FROM course AS T1 JOIN SECTION AS T2 ON T1.course_id = T2.course_id WHERE T1.dept_name = 'Psychology' ORDER BY T1.title", "question": "Find the building, room number, semester and year of all courses offered by Psychology department sorted by course titles.", "context": "CREATE TABLE SECTION (building VARCHAR, room_number VARCHAR, semester VARCHAR, year VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR, title VARCHAR)"}, {"answer": "SELECT name FROM instructor WHERE dept_name = 'Comp. Sci.'", "question": "Find the names of all instructors in computer science department", "context": "CREATE TABLE instructor (name VARCHAR, dept_name VARCHAR)"}, {"answer": "SELECT name FROM instructor WHERE dept_name = 'Comp. Sci.' AND salary > 80000", "question": "Find the names of all instructors in Comp. Sci. department with salary > 80000.", "context": "CREATE TABLE instructor (name VARCHAR, dept_name VARCHAR, salary VARCHAR)"}, {"answer": "SELECT name, course_id FROM instructor AS T1 JOIN teaches AS T2 ON T1.ID = T2.ID", "question": "Find the names of all instructors who have taught some course and the course_id.", "context": "CREATE TABLE instructor (ID VARCHAR); CREATE TABLE teaches (ID VARCHAR)"}, {"answer": "SELECT name, course_id FROM instructor AS T1 JOIN teaches AS T2 ON T1.ID = T2.ID WHERE T1.dept_name = 'Art'", "question": "Find the names of all instructors in the Art department who have taught some course and the course_id.", "context": "CREATE TABLE instructor (ID VARCHAR, dept_name VARCHAR); CREATE TABLE teaches (ID VARCHAR)"}, {"answer": "SELECT name FROM instructor WHERE name LIKE '%dar%'", "question": "Find the names of all instructors whose name includes the substring \u201cdar\u201d.", "context": "CREATE TABLE instructor (name VARCHAR)"}, {"answer": "SELECT DISTINCT name FROM instructor ORDER BY name", "question": "List in alphabetic order the names of all distinct instructors.", "context": "CREATE TABLE instructor (name VARCHAR)"}, {"answer": "SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 UNION SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010", "question": "Find courses that ran in Fall 2009 or in Spring 2010.", "context": "CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 INTERSECT SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010", "question": "Find courses that ran in Fall 2009 and in Spring 2010.", "context": "CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 EXCEPT SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010", "question": "Find courses that ran in Fall 2009 but not in Spring 2010.", "context": "CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT DISTINCT salary FROM instructor WHERE salary < (SELECT MAX(salary) FROM instructor)", "question": "Find the salaries of all distinct instructors that are less than the largest salary.", "context": "CREATE TABLE instructor (salary INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT ID) FROM teaches WHERE semester = 'Spring' AND YEAR = 2010", "question": "Find the total number of instructors who teach a course in the Spring 2010 semester.", "context": "CREATE TABLE teaches (ID VARCHAR, semester VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT dept_name, AVG(salary) FROM instructor GROUP BY dept_name HAVING AVG(salary) > 42000", "question": "Find the names and average salaries of all departments whose average salary is greater than 42000.", "context": "CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER)"}, {"answer": "SELECT name FROM instructor WHERE salary > (SELECT MIN(salary) FROM instructor WHERE dept_name = 'Biology')", "question": "Find names of instructors with salary greater than that of some (at least one) instructor in the Biology department.", "context": "CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR)"}, {"answer": "SELECT name FROM instructor WHERE salary > (SELECT MAX(salary) FROM instructor WHERE dept_name = 'Biology')", "question": "Find the names of all instructors whose salary is greater than the salary of all instructors in the Biology department.", "context": "CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM debate", "question": "How many debates are there?", "context": "CREATE TABLE debate (Id VARCHAR)"}, {"answer": "SELECT Venue FROM debate ORDER BY Num_of_Audience", "question": "List the venues of debates in ascending order of the number of audience.", "context": "CREATE TABLE debate (Venue VARCHAR, Num_of_Audience VARCHAR)"}, {"answer": "SELECT Date, Venue FROM debate", "question": "What are the date and venue of each debate?", "context": "CREATE TABLE debate (Date VARCHAR, Venue VARCHAR)"}, {"answer": "SELECT Date FROM debate WHERE Num_of_Audience > 150", "question": "List the dates of debates with number of audience bigger than 150", "context": "CREATE TABLE debate (Date VARCHAR, Num_of_Audience INTEGER)"}, {"answer": "SELECT Name FROM people WHERE Age = 35 OR Age = 36", "question": "Show the names of people aged either 35 or 36.", "context": "CREATE TABLE people (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Party FROM people ORDER BY Age LIMIT 1", "question": "What is the party of the youngest people?", "context": "CREATE TABLE people (Party VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Party, COUNT(*) FROM people GROUP BY Party", "question": "Show different parties of people along with the number of people in each party.", "context": "CREATE TABLE people (Party VARCHAR)"}, {"answer": "SELECT Party FROM people GROUP BY Party ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the party that has the most people.", "context": "CREATE TABLE people (Party VARCHAR)"}, {"answer": "SELECT DISTINCT Venue FROM debate", "question": "Show the distinct venues of debates", "context": "CREATE TABLE debate (Venue VARCHAR)"}, {"answer": "SELECT T3.Name, T2.Date, T2.Venue FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Affirmative = T3.People_ID", "question": "Show the names of people, and dates and venues of debates they are on the affirmative side.", "context": "CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate (Date VARCHAR, Venue VARCHAR, Debate_ID VARCHAR); CREATE TABLE debate_people (Debate_ID VARCHAR, Affirmative VARCHAR)"}, {"answer": "SELECT T3.Name, T2.Date, T2.Venue FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Negative = T3.People_ID ORDER BY T3.Name", "question": "Show the names of people, and dates and venues of debates they are on the negative side, ordered in ascending alphabetical order of name.", "context": "CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate (Date VARCHAR, Venue VARCHAR, Debate_ID VARCHAR); CREATE TABLE debate_people (Debate_ID VARCHAR, Negative VARCHAR)"}, {"answer": "SELECT T3.Name FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Affirmative = T3.People_ID WHERE T2.Num_of_Audience > 200", "question": "Show the names of people that are on affirmative side of debates with number of audience bigger than 200.", "context": "CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate (Debate_ID VARCHAR, Num_of_Audience INTEGER); CREATE TABLE debate_people (Debate_ID VARCHAR, Affirmative VARCHAR)"}, {"answer": "SELECT T2.Name, COUNT(*) FROM debate_people AS T1 JOIN people AS T2 ON T1.Affirmative = T2.People_ID GROUP BY T2.Name", "question": "Show the names of people and the number of times they have been on the affirmative side of debates.", "context": "CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate_people (Affirmative VARCHAR)"}, {"answer": "SELECT T2.Name FROM debate_people AS T1 JOIN people AS T2 ON T1.Negative = T2.People_ID GROUP BY T2.Name HAVING COUNT(*) >= 2", "question": "Show the names of people who have been on the negative side of debates at least twice.", "context": "CREATE TABLE debate_people (Negative VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT Name FROM people WHERE NOT People_id IN (SELECT Affirmative FROM debate_people)", "question": "List the names of people that have not been on the affirmative side of debates.", "context": "CREATE TABLE debate_people (Name VARCHAR, People_id VARCHAR, Affirmative VARCHAR); CREATE TABLE people (Name VARCHAR, People_id VARCHAR, Affirmative VARCHAR)"}, {"answer": "SELECT customer_details FROM customers ORDER BY customer_details", "question": "List the names of all the customers in alphabetical order.", "context": "CREATE TABLE customers (customer_details VARCHAR)"}, {"answer": "SELECT policy_type_code FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t2.customer_details = \"Dayana Robel\"", "question": "Find all the policy type codes associated with the customer \"Dayana Robel\"", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_details VARCHAR); CREATE TABLE policies (customer_id VARCHAR)"}, {"answer": "SELECT policy_type_code FROM policies GROUP BY policy_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which type of policy is most frequently used? Give me the policy type code.", "context": "CREATE TABLE policies (policy_type_code VARCHAR)"}, {"answer": "SELECT policy_type_code FROM policies GROUP BY policy_type_code HAVING COUNT(*) > 2", "question": "Find all the policy types that are used by more than 2 customers.", "context": "CREATE TABLE policies (policy_type_code VARCHAR)"}, {"answer": "SELECT SUM(amount_piad), AVG(amount_piad) FROM claim_headers", "question": "Find the total and average amount paid in claim headers.", "context": "CREATE TABLE claim_headers (amount_piad INTEGER)"}, {"answer": "SELECT SUM(t1.amount_claimed) FROM claim_headers AS t1 JOIN claims_documents AS t2 ON t1.claim_header_id = t2.claim_id WHERE t2.created_date = (SELECT created_date FROM claims_documents ORDER BY created_date LIMIT 1)", "question": "Find the total amount claimed in the most recently created document.", "context": "CREATE TABLE claim_headers (amount_claimed INTEGER, claim_header_id VARCHAR); CREATE TABLE claims_documents (claim_id VARCHAR, created_date VARCHAR); CREATE TABLE claims_documents (created_date VARCHAR)"}, {"answer": "SELECT t3.customer_details FROM claim_headers AS t1 JOIN policies AS t2 ON t1.policy_id = t2.policy_id JOIN customers AS t3 ON t2.customer_id = t3.customer_id WHERE t1.amount_claimed = (SELECT MAX(amount_claimed) FROM claim_headers)", "question": "What is the name of the customer who has made the largest amount of claim in a single claim?", "context": "CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE claim_headers (amount_claimed INTEGER); CREATE TABLE policies (policy_id VARCHAR, customer_id VARCHAR); CREATE TABLE claim_headers (policy_id VARCHAR, amount_claimed INTEGER)"}, {"answer": "SELECT t3.customer_details FROM claim_headers AS t1 JOIN policies AS t2 ON t1.policy_id = t2.policy_id JOIN customers AS t3 ON t2.customer_id = t3.customer_id WHERE t1.amount_piad = (SELECT MIN(amount_piad) FROM claim_headers)", "question": "What is the name of the customer who has made the minimum amount of payment in one claim?", "context": "CREATE TABLE claim_headers (amount_piad INTEGER); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE policies (policy_id VARCHAR, customer_id VARCHAR); CREATE TABLE claim_headers (policy_id VARCHAR, amount_piad INTEGER)"}, {"answer": "SELECT customer_details FROM customers EXCEPT SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id", "question": "Find the names of customers who have no policies associated.", "context": "CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_details VARCHAR); CREATE TABLE policies (customer_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM claims_processing_stages", "question": "How many claim processing stages are there in total?", "context": "CREATE TABLE claims_processing_stages (Id VARCHAR)"}, {"answer": "SELECT t2.claim_status_name FROM claims_processing AS t1 JOIN claims_processing_stages AS t2 ON t1.claim_stage_id = t2.claim_stage_id GROUP BY t1.claim_stage_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the claim processing stage that most of the claims are on?", "context": "CREATE TABLE claims_processing (claim_stage_id VARCHAR); CREATE TABLE claims_processing_stages (claim_status_name VARCHAR, claim_stage_id VARCHAR)"}, {"answer": "SELECT customer_details FROM customers WHERE customer_details LIKE \"%Diana%\"", "question": "Find the names of customers whose name contains \"Diana\".", "context": "CREATE TABLE customers (customer_details VARCHAR)"}, {"answer": "SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = \"Deputy\"", "question": "Find the names of the customers who have an deputy policy.", "context": "CREATE TABLE policies (customer_id VARCHAR, policy_type_code VARCHAR); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = \"Deputy\" OR t1.policy_type_code = \"Uniform\"", "question": "Find the names of customers who either have an deputy policy or uniformed policy.", "context": "CREATE TABLE policies (customer_id VARCHAR, policy_type_code VARCHAR); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT customer_details FROM customers UNION SELECT staff_details FROM staff", "question": "Find the names of all the customers and staff members.", "context": "CREATE TABLE staff (customer_details VARCHAR, staff_details VARCHAR); CREATE TABLE customers (customer_details VARCHAR, staff_details VARCHAR)"}, {"answer": "SELECT policy_type_code, COUNT(*) FROM policies GROUP BY policy_type_code", "question": "Find the number of records of each policy type and its type code.", "context": "CREATE TABLE policies (policy_type_code VARCHAR)"}, {"answer": "SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id GROUP BY t2.customer_details ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of the customer that has been involved in the most policies.", "context": "CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE policies (customer_id VARCHAR)"}, {"answer": "SELECT claim_status_description FROM claims_processing_stages WHERE claim_status_name = \"Open\"", "question": "What is the description of the claim status \"Open\"?", "context": "CREATE TABLE claims_processing_stages (claim_status_description VARCHAR, claim_status_name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT claim_outcome_code) FROM claims_processing", "question": "How many distinct claim outcome codes are there?", "context": "CREATE TABLE claims_processing (claim_outcome_code VARCHAR)"}, {"answer": "SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.start_date = (SELECT MAX(start_date) FROM policies)", "question": "Which customer is associated with the latest policy?", "context": "CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE policies (start_date INTEGER); CREATE TABLE policies (customer_id VARCHAR, start_date INTEGER)"}, {"answer": "SELECT account_id, date_account_opened, account_name, other_account_details FROM Accounts", "question": "Show the id, the date of account opened, the account name, and other account detail for all accounts.", "context": "CREATE TABLE Accounts (account_id VARCHAR, date_account_opened VARCHAR, account_name VARCHAR, other_account_details VARCHAR)"}, {"answer": "SELECT T1.account_id, T1.date_account_opened, T1.account_name, T1.other_account_details FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = 'Meaghan'", "question": "Show the id, the account name, and other account details for all accounts by the customer with first name 'Meaghan'.", "context": "CREATE TABLE Accounts (account_id VARCHAR, date_account_opened VARCHAR, account_name VARCHAR, other_account_details VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR)"}, {"answer": "SELECT T1.account_name, T1.other_account_details FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = \"Meaghan\" AND T2.customer_last_name = \"Keeling\"", "question": "Show the account name and other account detail for all accounts by the customer with first name Meaghan and last name Keeling.", "context": "CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR); CREATE TABLE Accounts (account_name VARCHAR, other_account_details VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T2.customer_first_name, T2.customer_last_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.account_name = \"900\"", "question": "Show the first name and last name for the customer with account name 900.", "context": "CREATE TABLE Accounts (customer_id VARCHAR, account_name VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.customer_first_name, T1.customer_last_name, T1.phone_number FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id", "question": "Show the unique first names, last names, and phone numbers for all customers with any account.", "context": "CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, phone_number VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT customer_id FROM Customers EXCEPT SELECT customer_id FROM Accounts", "question": "Show customer ids who don't have an account.", "context": "CREATE TABLE Customers (customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR)"}, {"answer": "SELECT COUNT(*), customer_id FROM Accounts GROUP BY customer_id", "question": "How many accounts does each customer have? List the number and customer id.", "context": "CREATE TABLE Accounts (customer_id VARCHAR)"}, {"answer": "SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the customer id, first and last name with most number of accounts.", "context": "CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name, COUNT(*) FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id", "question": "Show id, first name and last name for all customers and the number of accounts.", "context": "CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T2.customer_first_name, T1.customer_id FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2", "question": "Show first name and id for all customers with at least 2 accounts.", "context": "CREATE TABLE Customers (customer_first_name VARCHAR, customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR)"}, {"answer": "SELECT gender, COUNT(*) FROM Customers GROUP BY gender", "question": "Show the number of customers for each gender.", "context": "CREATE TABLE Customers (gender VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Financial_transactions", "question": "How many transactions do we have?", "context": "CREATE TABLE Financial_transactions (Id VARCHAR)"}, {"answer": "SELECT COUNT(*), account_id FROM Financial_transactions", "question": "How many transaction does each account have? Show the number and account id.", "context": "CREATE TABLE Financial_transactions (account_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Financial_transactions AS T1 JOIN Accounts AS T2 ON T1.account_id = T2.account_id WHERE T2.account_name = \"337\"", "question": "How many transaction does account with name 337 have?", "context": "CREATE TABLE Accounts (account_id VARCHAR, account_name VARCHAR); CREATE TABLE Financial_transactions (account_id VARCHAR)"}, {"answer": "SELECT AVG(transaction_amount), MIN(transaction_amount), MAX(transaction_amount), SUM(transaction_amount) FROM Financial_transactions", "question": "What is the average, minimum, maximum, and total transaction amount?", "context": "CREATE TABLE Financial_transactions (transaction_amount INTEGER)"}, {"answer": "SELECT transaction_id FROM Financial_transactions WHERE transaction_amount > (SELECT AVG(transaction_amount) FROM Financial_transactions)", "question": "Show ids for all transactions whose amounts are greater than the average.", "context": "CREATE TABLE Financial_transactions (transaction_id VARCHAR, transaction_amount INTEGER)"}, {"answer": "SELECT transaction_type, SUM(transaction_amount) FROM Financial_transactions GROUP BY transaction_type", "question": "Show the transaction types and the total amount of transactions.", "context": "CREATE TABLE Financial_transactions (transaction_type VARCHAR, transaction_amount INTEGER)"}, {"answer": "SELECT T2.account_name, T1.account_id, COUNT(*) FROM Financial_transactions AS T1 JOIN Accounts AS T2 ON T1.account_id = T2.account_id GROUP BY T1.account_id", "question": "Show the account name, id and the number of transactions for each account.", "context": "CREATE TABLE Financial_transactions (account_id VARCHAR); CREATE TABLE Accounts (account_name VARCHAR, account_id VARCHAR)"}, {"answer": "SELECT account_id FROM Financial_transactions GROUP BY account_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the account id with most number of transactions.", "context": "CREATE TABLE Financial_transactions (account_id VARCHAR)"}, {"answer": "SELECT T1.account_id, T2.account_name FROM Financial_transactions AS T1 JOIN Accounts AS T2 ON T1.account_id = T2.account_id GROUP BY T1.account_id HAVING COUNT(*) >= 4", "question": "Show the account id and name with at least 4 transactions.", "context": "CREATE TABLE Financial_transactions (account_id VARCHAR); CREATE TABLE Accounts (account_name VARCHAR, account_id VARCHAR)"}, {"answer": "SELECT DISTINCT product_size FROM Products", "question": "Show all product sizes.", "context": "CREATE TABLE Products (product_size VARCHAR)"}, {"answer": "SELECT DISTINCT product_color FROM Products", "question": "Show all product colors.", "context": "CREATE TABLE Products (product_color VARCHAR)"}, {"answer": "SELECT invoice_number, COUNT(*) FROM Financial_transactions GROUP BY invoice_number", "question": "Show the invoice number and the number of transactions for each invoice.", "context": "CREATE TABLE Financial_transactions (invoice_number VARCHAR)"}, {"answer": "SELECT T2.invoice_number, T2.invoice_date FROM Financial_transactions AS T1 JOIN Invoices AS T2 ON T1.invoice_number = T2.invoice_number GROUP BY T1.invoice_number ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the invoice number and invoice date for the invoice with most number of transactions?", "context": "CREATE TABLE Invoices (invoice_number VARCHAR, invoice_date VARCHAR); CREATE TABLE Financial_transactions (invoice_number VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Invoices", "question": "How many invoices do we have?", "context": "CREATE TABLE Invoices (Id VARCHAR)"}, {"answer": "SELECT T1.invoice_date, T1.order_id, T2.order_details FROM Invoices AS T1 JOIN Orders AS T2 ON T1.order_id = T2.order_id", "question": "Show invoice dates and order id and details for all invoices.", "context": "CREATE TABLE Invoices (invoice_date VARCHAR, order_id VARCHAR); CREATE TABLE Orders (order_details VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT order_id, COUNT(*) FROM Invoices GROUP BY order_id", "question": "Show the order ids and the number of invoices for each order.", "context": "CREATE TABLE Invoices (order_id VARCHAR)"}, {"answer": "SELECT T2.order_id, T2.order_details FROM Invoices AS T1 JOIN Orders AS T2 ON T1.order_id = T2.order_id GROUP BY T2.order_id HAVING COUNT(*) > 2", "question": "What is the order id and order details for the order more than two invoices.", "context": "CREATE TABLE Orders (order_id VARCHAR, order_details VARCHAR); CREATE TABLE Invoices (order_id VARCHAR)"}, {"answer": "SELECT T2.customer_last_name, T1.customer_id, T2.phone_number FROM Orders AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the customer last name, id and phone number with most number of orders?", "context": "CREATE TABLE Orders (customer_id VARCHAR); CREATE TABLE Customers (customer_last_name VARCHAR, phone_number VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT product_name FROM Products EXCEPT SELECT T1.product_name FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id", "question": "Show all product names without an order.", "context": "CREATE TABLE Products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE Order_items (product_id VARCHAR); CREATE TABLE Products (product_name VARCHAR)"}, {"answer": "SELECT T2.product_name, SUM(T1.product_quantity) FROM Order_items AS T1 JOIN Products AS T2 ON T1.product_id = T2.product_id GROUP BY T2.product_name", "question": "Show all product names and the total quantity ordered for each product name.", "context": "CREATE TABLE Products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE Order_items (product_quantity INTEGER, product_id VARCHAR)"}, {"answer": "SELECT order_id, COUNT(*) FROM Order_items GROUP BY order_id", "question": "Show the order ids and the number of items in each order.", "context": "CREATE TABLE Order_items (order_id VARCHAR)"}, {"answer": "SELECT product_id, COUNT(DISTINCT order_id) FROM Order_items GROUP BY product_id", "question": "Show the product ids and the number of unique orders containing each product.", "context": "CREATE TABLE Order_items (product_id VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT T2.product_name, COUNT(*) FROM Order_items AS T1 JOIN Products AS T2 ON T1.product_id = T2.product_id JOIN Orders AS T3 ON T3.order_id = T1.order_id GROUP BY T2.product_name", "question": "Show all product names and the number of customers having an order on each product.", "context": "CREATE TABLE Order_items (product_id VARCHAR, order_id VARCHAR); CREATE TABLE Orders (order_id VARCHAR); CREATE TABLE Products (product_name VARCHAR, product_id VARCHAR)"}, {"answer": "SELECT order_id, COUNT(DISTINCT product_id) FROM Order_items GROUP BY order_id", "question": "Show order ids and the number of products in each order.", "context": "CREATE TABLE Order_items (order_id VARCHAR, product_id VARCHAR)"}, {"answer": "SELECT order_id, SUM(product_quantity) FROM Order_items GROUP BY order_id", "question": "Show order ids and the total quantity in each order.", "context": "CREATE TABLE Order_items (order_id VARCHAR, product_quantity INTEGER)"}, {"answer": "SELECT COUNT(*) FROM products WHERE NOT product_id IN (SELECT product_id FROM Order_items)", "question": "How many products were not included in any order?", "context": "CREATE TABLE products (product_id VARCHAR); CREATE TABLE Order_items (product_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Church WHERE Open_Date < 1850", "question": "How many churches opened before 1850 are there?", "context": "CREATE TABLE Church (Open_Date INTEGER)"}, {"answer": "SELECT name, open_date, organized_by FROM Church", "question": "Show the name, open date, and organizer for all churches.", "context": "CREATE TABLE Church (name VARCHAR, open_date VARCHAR, organized_by VARCHAR)"}, {"answer": "SELECT name FROM church ORDER BY open_date DESC", "question": "List all church names in descending order of opening date.", "context": "CREATE TABLE church (name VARCHAR, open_date VARCHAR)"}, {"answer": "SELECT open_date FROM church GROUP BY open_date HAVING COUNT(*) >= 2", "question": "Show the opening year in whcih at least two churches opened.", "context": "CREATE TABLE church (open_date VARCHAR)"}, {"answer": "SELECT organized_by, name FROM church WHERE open_date BETWEEN 1830 AND 1840", "question": "Show the organizer and name for churches that opened between 1830 and 1840.", "context": "CREATE TABLE church (organized_by VARCHAR, name VARCHAR, open_date INTEGER)"}, {"answer": "SELECT open_date, COUNT(*) FROM church GROUP BY open_date", "question": "Show all opening years and the number of churches that opened in that year.", "context": "CREATE TABLE church (open_date VARCHAR)"}, {"answer": "SELECT name, open_date FROM church ORDER BY open_date DESC LIMIT 3", "question": "Show the name and opening year for three churches that opened most recently.", "context": "CREATE TABLE church (name VARCHAR, open_date VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM people WHERE is_male = 'F' AND age > 30", "question": "How many female people are older than 30 in our record?", "context": "CREATE TABLE people (is_male VARCHAR, age VARCHAR)"}, {"answer": "SELECT country FROM people WHERE age < 25 INTERSECT SELECT country FROM people WHERE age > 30", "question": "Show the country where people older than 30 and younger than 25 are from.", "context": "CREATE TABLE people (country VARCHAR, age INTEGER)"}, {"answer": "SELECT MIN(age), MAX(age), AVG(age) FROM people", "question": "Show the minimum, maximum, and average age for all people.", "context": "CREATE TABLE people (age INTEGER)"}, {"answer": "SELECT name, country FROM people WHERE age < (SELECT AVG(age) FROM people)", "question": "Show the name and country for all people whose age is smaller than the average.", "context": "CREATE TABLE people (name VARCHAR, country VARCHAR, age INTEGER)"}, {"answer": "SELECT T2.name, T3.name FROM wedding AS T1 JOIN people AS T2 ON T1.male_id = T2.people_id JOIN people AS T3 ON T1.female_id = T3.people_id WHERE T1.year > 2014", "question": "Show the pair of male and female names in all weddings after year 2014", "context": "CREATE TABLE wedding (male_id VARCHAR, female_id VARCHAR, year INTEGER); CREATE TABLE people (name VARCHAR, people_id VARCHAR)"}, {"answer": "SELECT name, age FROM people WHERE is_male = 'T' AND NOT people_id IN (SELECT male_id FROM wedding)", "question": "Show the name and age for all male people who don't have a wedding.", "context": "CREATE TABLE wedding (name VARCHAR, age VARCHAR, is_male VARCHAR, people_id VARCHAR, male_id VARCHAR); CREATE TABLE people (name VARCHAR, age VARCHAR, is_male VARCHAR, people_id VARCHAR, male_id VARCHAR)"}, {"answer": "SELECT name FROM church EXCEPT SELECT T1.name FROM church AS T1 JOIN wedding AS T2 ON T1.church_id = T2.church_id WHERE T2.year = 2015", "question": "Show all church names except for those that had a wedding in year 2015.", "context": "CREATE TABLE church (name VARCHAR); CREATE TABLE wedding (church_id VARCHAR, year VARCHAR); CREATE TABLE church (name VARCHAR, church_id VARCHAR)"}, {"answer": "SELECT T1.name FROM church AS T1 JOIN wedding AS T2 ON T1.church_id = T2.church_id GROUP BY T1.church_id HAVING COUNT(*) >= 2", "question": "Show all church names that have hosted least two weddings.", "context": "CREATE TABLE wedding (church_id VARCHAR); CREATE TABLE church (name VARCHAR, church_id VARCHAR)"}, {"answer": "SELECT T2.name FROM wedding AS T1 JOIN people AS T2 ON T1.female_id = T2.people_id WHERE T1.year = 2016 AND T2.is_male = 'F' AND T2.country = 'Canada'", "question": "Show the names for all females from Canada having a wedding in year 2016.", "context": "CREATE TABLE people (name VARCHAR, people_id VARCHAR, country VARCHAR, is_male VARCHAR); CREATE TABLE wedding (female_id VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM wedding WHERE YEAR = 2016", "question": "How many weddings are there in year 2016?", "context": "CREATE TABLE wedding (YEAR VARCHAR)"}, {"answer": "SELECT T4.name FROM wedding AS T1 JOIN people AS T2 ON T1.male_id = T2.people_id JOIN people AS T3 ON T1.female_id = T3.people_id JOIN church AS T4 ON T4.church_id = T1.church_id WHERE T2.age > 30 OR T3.age > 30", "question": "Show the church names for the weddings of all people older than 30.", "context": "CREATE TABLE church (name VARCHAR, church_id VARCHAR); CREATE TABLE people (people_id VARCHAR, age VARCHAR); CREATE TABLE wedding (male_id VARCHAR, female_id VARCHAR, church_id VARCHAR)"}, {"answer": "SELECT country, COUNT(*) FROM people GROUP BY country", "question": "Show all countries and the number of people from each country.", "context": "CREATE TABLE people (country VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT church_id) FROM wedding WHERE YEAR = 2016", "question": "How many churches have a wedding in year 2016?", "context": "CREATE TABLE wedding (church_id VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM artist", "question": "How many artists do we have?", "context": "CREATE TABLE artist (Id VARCHAR)"}, {"answer": "SELECT name, age, country FROM artist ORDER BY Year_Join", "question": "Show all artist name, age, and country ordered by the yeared they joined.", "context": "CREATE TABLE artist (name VARCHAR, age VARCHAR, country VARCHAR, Year_Join VARCHAR)"}, {"answer": "SELECT DISTINCT country FROM artist", "question": "What are all distinct country for artists?", "context": "CREATE TABLE artist (country VARCHAR)"}, {"answer": "SELECT name, year_join FROM artist WHERE country <> 'United States'", "question": "Show all artist names and the year joined who are not from United States.", "context": "CREATE TABLE artist (name VARCHAR, year_join VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM artist WHERE age > 46 AND year_join > 1990", "question": "How many artists are above age 46 and joined after 1990?", "context": "CREATE TABLE artist (age VARCHAR, year_join VARCHAR)"}, {"answer": "SELECT AVG(age), MIN(age) FROM artist WHERE country = 'United States'", "question": "What is the average and minimum age of all artists from United States.", "context": "CREATE TABLE artist (age INTEGER, country VARCHAR)"}, {"answer": "SELECT name FROM artist ORDER BY year_join DESC LIMIT 1", "question": "What is the name of the artist who joined latest?", "context": "CREATE TABLE artist (name VARCHAR, year_join VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM exhibition WHERE YEAR >= 2005", "question": "How many exhibition are there in year 2005 or after?", "context": "CREATE TABLE exhibition (YEAR VARCHAR)"}, {"answer": "SELECT theme, YEAR FROM exhibition WHERE ticket_price < 15", "question": "Show theme and year for all exhibitions with ticket prices lower than 15.", "context": "CREATE TABLE exhibition (theme VARCHAR, YEAR VARCHAR, ticket_price INTEGER)"}, {"answer": "SELECT T2.name, COUNT(*) FROM exhibition AS T1 JOIN artist AS T2 ON T1.artist_id = T2.artist_id GROUP BY T1.artist_id", "question": "Show all artist names and the number of exhibitions for each artist.", "context": "CREATE TABLE artist (name VARCHAR, artist_id VARCHAR); CREATE TABLE exhibition (artist_id VARCHAR)"}, {"answer": "SELECT T2.name, T2.country FROM exhibition AS T1 JOIN artist AS T2 ON T1.artist_id = T2.artist_id GROUP BY T1.artist_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name and country for the artist with most number of exhibitions?", "context": "CREATE TABLE exhibition (artist_id VARCHAR); CREATE TABLE artist (name VARCHAR, country VARCHAR, artist_id VARCHAR)"}, {"answer": "SELECT name FROM artist WHERE NOT artist_id IN (SELECT artist_id FROM exhibition)", "question": "Show names for artists without any exhibition.", "context": "CREATE TABLE artist (name VARCHAR, artist_id VARCHAR); CREATE TABLE exhibition (name VARCHAR, artist_id VARCHAR)"}, {"answer": "SELECT T1.theme, T2.name FROM exhibition AS T1 JOIN artist AS T2 ON T1.artist_id = T2.artist_id WHERE T1.ticket_price > (SELECT AVG(ticket_price) FROM exhibition)", "question": "What is the theme and artist name for the exhibition with a ticket price higher than the average?", "context": "CREATE TABLE exhibition (ticket_price INTEGER); CREATE TABLE exhibition (theme VARCHAR, artist_id VARCHAR, ticket_price INTEGER); CREATE TABLE artist (name VARCHAR, artist_id VARCHAR)"}, {"answer": "SELECT AVG(ticket_price), MIN(ticket_price), MAX(ticket_price) FROM exhibition WHERE YEAR < 2009", "question": "Show the average, minimum, and maximum ticket prices for exhibitions for all years before 2009.", "context": "CREATE TABLE exhibition (ticket_price INTEGER, YEAR INTEGER)"}, {"answer": "SELECT theme, YEAR FROM exhibition ORDER BY ticket_price DESC", "question": "Show theme and year for all exhibitions in an descending order of ticket price.", "context": "CREATE TABLE exhibition (theme VARCHAR, YEAR VARCHAR, ticket_price VARCHAR)"}, {"answer": "SELECT T2.theme, T1.date, T1.attendance FROM exhibition_record AS T1 JOIN exhibition AS T2 ON T1.exhibition_id = T2.exhibition_id WHERE T2.year = 2004", "question": "What is the theme, date, and attendance for the exhibition in year 2004?", "context": "CREATE TABLE exhibition_record (date VARCHAR, attendance VARCHAR, exhibition_id VARCHAR); CREATE TABLE exhibition (theme VARCHAR, exhibition_id VARCHAR, year VARCHAR)"}, {"answer": "SELECT name FROM artist EXCEPT SELECT T2.name FROM exhibition AS T1 JOIN artist AS T2 ON T1.artist_id = T2.artist_id WHERE T1.year = 2004", "question": "Show all artist names who didn't have an exhibition in 2004.", "context": "CREATE TABLE exhibition (artist_id VARCHAR, year VARCHAR); CREATE TABLE artist (name VARCHAR); CREATE TABLE artist (name VARCHAR, artist_id VARCHAR)"}, {"answer": "SELECT T2.theme FROM exhibition_record AS T1 JOIN exhibition AS T2 ON T1.exhibition_id = T2.exhibition_id WHERE T1.attendance < 100 INTERSECT SELECT T2.theme FROM exhibition_record AS T1 JOIN exhibition AS T2 ON T1.exhibition_id = T2.exhibition_id WHERE T1.attendance > 500", "question": "Show the theme for exhibitions with both records of an attendance below 100 and above 500.", "context": "CREATE TABLE exhibition (theme VARCHAR, exhibition_id VARCHAR); CREATE TABLE exhibition_record (exhibition_id VARCHAR, attendance INTEGER)"}, {"answer": "SELECT COUNT(*) FROM exhibition_record AS T1 JOIN exhibition AS T2 ON T1.exhibition_id = T2.exhibition_id WHERE T1.attendance > 100 OR T2.ticket_price < 10", "question": "How many exhibitions have a attendance more than 100 or have a ticket price below 10?", "context": "CREATE TABLE exhibition_record (exhibition_id VARCHAR, attendance VARCHAR); CREATE TABLE exhibition (exhibition_id VARCHAR, ticket_price VARCHAR)"}, {"answer": "SELECT T3.name FROM exhibition_record AS T1 JOIN exhibition AS T2 ON T1.exhibition_id = T2.exhibition_id JOIN artist AS T3 ON T3.artist_id = T2.artist_id GROUP BY T3.artist_id HAVING AVG(T1.attendance) > 200", "question": "Show all artist names with an average exhibition attendance over 200.", "context": "CREATE TABLE artist (name VARCHAR, artist_id VARCHAR); CREATE TABLE exhibition (exhibition_id VARCHAR, artist_id VARCHAR); CREATE TABLE exhibition_record (exhibition_id VARCHAR, attendance INTEGER)"}, {"answer": "SELECT i_id FROM item WHERE title = \"orange\"", "question": "Find the id of the item whose title is \"orange\".", "context": "CREATE TABLE item (i_id VARCHAR, title VARCHAR)"}, {"answer": "SELECT * FROM item", "question": "List all information in the item table.", "context": "CREATE TABLE item (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM review", "question": "Find the number of reviews.", "context": "CREATE TABLE review (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM useracct", "question": "How many users are there?", "context": "CREATE TABLE useracct (Id VARCHAR)"}, {"answer": "SELECT AVG(rating), MAX(rating) FROM review", "question": "Find the average and maximum rating of all reviews.", "context": "CREATE TABLE review (rating INTEGER)"}, {"answer": "SELECT MIN(rank) FROM review", "question": "Find the highest rank of all reviews.", "context": "CREATE TABLE review (rank INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT u_id) FROM review", "question": "How many different users wrote some reviews?", "context": "CREATE TABLE review (u_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT i_id) FROM review", "question": "How many different items were reviewed by some users?", "context": "CREATE TABLE review (i_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM item WHERE NOT i_id IN (SELECT i_id FROM review)", "question": "Find the number of items that did not receive any review.", "context": "CREATE TABLE review (i_id VARCHAR); CREATE TABLE item (i_id VARCHAR)"}, {"answer": "SELECT name FROM useracct WHERE NOT u_id IN (SELECT u_id FROM review)", "question": "Find the names of users who did not leave any review.", "context": "CREATE TABLE review (name VARCHAR, u_id VARCHAR); CREATE TABLE useracct (name VARCHAR, u_id VARCHAR)"}, {"answer": "SELECT T1.title FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id WHERE T2.rating = 10", "question": "Find the names of goods that receive a rating of 10.", "context": "CREATE TABLE item (title VARCHAR, i_id VARCHAR); CREATE TABLE review (i_id VARCHAR, rating VARCHAR)"}, {"answer": "SELECT T1.title FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id WHERE T2.rating > (SELECT AVG(rating) FROM review)", "question": "Find the titles of items whose rating is higher than the average review rating of all items.", "context": "CREATE TABLE review (rating INTEGER); CREATE TABLE item (title VARCHAR, i_id VARCHAR); CREATE TABLE review (i_id VARCHAR, rating INTEGER)"}, {"answer": "SELECT T1.title FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id WHERE T2.rating < 5", "question": "Find the titles of items that received any rating below 5.", "context": "CREATE TABLE item (title VARCHAR, i_id VARCHAR); CREATE TABLE review (i_id VARCHAR, rating INTEGER)"}, {"answer": "SELECT T1.title FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id WHERE T2.rating > 8 INTERSECT SELECT T1.title FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id WHERE T2.rating < 5", "question": "Find the titles of items that received both a rating higher than 8 and a rating below 5.", "context": "CREATE TABLE item (title VARCHAR, i_id VARCHAR); CREATE TABLE review (i_id VARCHAR, rating INTEGER)"}, {"answer": "SELECT T1.title FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id WHERE T2.rank > 3 INTERSECT SELECT T1.title FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id GROUP BY T2.i_id HAVING AVG(T2.rating) > 5", "question": "Find the names of items whose rank is higher than 3 and whose average rating is above 5.", "context": "CREATE TABLE item (title VARCHAR, i_id VARCHAR); CREATE TABLE review (i_id VARCHAR, rank INTEGER, rating INTEGER)"}, {"answer": "SELECT T1.title FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id GROUP BY T2.i_id ORDER BY AVG(T2.rating) LIMIT 1", "question": "Find the name of the item with the lowest average rating.", "context": "CREATE TABLE item (title VARCHAR, i_id VARCHAR); CREATE TABLE review (i_id VARCHAR, rating INTEGER)"}, {"answer": "SELECT title FROM item ORDER BY title", "question": "List the titles of all items in alphabetic order .", "context": "CREATE TABLE item (title VARCHAR)"}, {"answer": "SELECT T1.name FROM useracct AS T1 JOIN review AS T2 ON T1.u_id = T2.u_id GROUP BY T2.u_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of the user who gives the most reviews.", "context": "CREATE TABLE useracct (name VARCHAR, u_id VARCHAR); CREATE TABLE review (u_id VARCHAR)"}, {"answer": "SELECT T1.title, T1.i_id FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id GROUP BY T2.i_id ORDER BY AVG(T2.rating) DESC LIMIT 1", "question": "Find the name and id of the item with the highest average rating.", "context": "CREATE TABLE item (title VARCHAR, i_id VARCHAR); CREATE TABLE review (i_id VARCHAR, rating INTEGER)"}, {"answer": "SELECT T1.title, T1.i_id FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id GROUP BY T2.i_id ORDER BY AVG(T2.rank) DESC LIMIT 1", "question": "Find the name and id of the good with the highest average rank.", "context": "CREATE TABLE review (i_id VARCHAR, rank INTEGER); CREATE TABLE item (title VARCHAR, i_id VARCHAR)"}, {"answer": "SELECT T1.name, AVG(T2.rating) FROM useracct AS T1 JOIN review AS T2 ON T1.u_id = T2.u_id GROUP BY T2.u_id", "question": "For each user, return the name and the average rating of reviews given by them.", "context": "CREATE TABLE review (rating INTEGER, u_id VARCHAR); CREATE TABLE useracct (name VARCHAR, u_id VARCHAR)"}, {"answer": "SELECT T1.name, COUNT(*) FROM useracct AS T1 JOIN review AS T2 ON T1.u_id = T2.u_id GROUP BY T2.u_id", "question": "For each user, find their name and the number of reviews written by them.", "context": "CREATE TABLE useracct (name VARCHAR, u_id VARCHAR); CREATE TABLE review (u_id VARCHAR)"}, {"answer": "SELECT T1.name FROM useracct AS T1 JOIN review AS T2 ON T1.u_id = T2.u_id ORDER BY T2.rating DESC LIMIT 1", "question": "Find the name of the user who gave the highest rating.", "context": "CREATE TABLE review (u_id VARCHAR, rating VARCHAR); CREATE TABLE useracct (name VARCHAR, u_id VARCHAR)"}, {"answer": "SELECT T1.name FROM useracct AS T1 JOIN trust AS T2 ON T1.u_id = T2.source_u_id GROUP BY T2.source_u_id ORDER BY AVG(trust) DESC LIMIT 1", "question": "Find the name of the source user with the highest average trust score.", "context": "CREATE TABLE useracct (name VARCHAR, u_id VARCHAR); CREATE TABLE trust (source_u_id VARCHAR)"}, {"answer": "SELECT T1.name, AVG(trust) FROM useracct AS T1 JOIN trust AS T2 ON T1.u_id = T2.target_u_id GROUP BY T2.target_u_id", "question": "Find each target user's name and average trust score.", "context": "CREATE TABLE trust (target_u_id VARCHAR); CREATE TABLE useracct (name VARCHAR, u_id VARCHAR)"}, {"answer": "SELECT T1.name FROM useracct AS T1 JOIN trust AS T2 ON T1.u_id = T2.target_u_id ORDER BY trust LIMIT 1", "question": "Find the name of the target user with the lowest trust score.", "context": "CREATE TABLE trust (target_u_id VARCHAR); CREATE TABLE useracct (name VARCHAR, u_id VARCHAR)"}, {"answer": "SELECT title FROM item WHERE NOT i_id IN (SELECT i_id FROM review)", "question": "Find the names of the items that did not receive any review.", "context": "CREATE TABLE item (title VARCHAR, i_id VARCHAR); CREATE TABLE review (title VARCHAR, i_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM useracct WHERE NOT u_id IN (SELECT u_id FROM review)", "question": "Find the number of users who did not write any review.", "context": "CREATE TABLE review (u_id VARCHAR); CREATE TABLE useracct (u_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM player", "question": "How many players are there?", "context": "CREATE TABLE player (Id VARCHAR)"}, {"answer": "SELECT Player_name FROM player ORDER BY Votes", "question": "List the names of players in ascending order of votes.", "context": "CREATE TABLE player (Player_name VARCHAR, Votes VARCHAR)"}, {"answer": "SELECT Gender, Occupation FROM player", "question": "What are the gender and occupation of players?", "context": "CREATE TABLE player (Gender VARCHAR, Occupation VARCHAR)"}, {"answer": "SELECT Player_name, residence FROM player WHERE Occupation <> \"Researcher\"", "question": "List the name and residence for players whose occupation is not \"Researcher\".", "context": "CREATE TABLE player (Player_name VARCHAR, residence VARCHAR, Occupation VARCHAR)"}, {"answer": "SELECT Sponsor_name FROM player WHERE Residence = \"Brandon\" OR Residence = \"Birtle\"", "question": "Show the names of sponsors of players whose residence is either \"Brandon\" or \"Birtle\".", "context": "CREATE TABLE player (Sponsor_name VARCHAR, Residence VARCHAR)"}, {"answer": "SELECT Player_name FROM player ORDER BY Votes DESC LIMIT 1", "question": "What is the name of the player with the largest number of votes?", "context": "CREATE TABLE player (Player_name VARCHAR, Votes VARCHAR)"}, {"answer": "SELECT Occupation, COUNT(*) FROM player GROUP BY Occupation", "question": "Show different occupations along with the number of players in each occupation.", "context": "CREATE TABLE player (Occupation VARCHAR)"}, {"answer": "SELECT Occupation FROM player GROUP BY Occupation ORDER BY COUNT(*) DESC LIMIT 1", "question": "Please show the most common occupation of players.", "context": "CREATE TABLE player (Occupation VARCHAR)"}, {"answer": "SELECT Residence FROM player GROUP BY Residence HAVING COUNT(*) >= 2", "question": "Show the residences that have at least two players.", "context": "CREATE TABLE player (Residence VARCHAR)"}, {"answer": "SELECT T3.Player_name, T2.coach_name FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID", "question": "Show the names of players and names of their coaches.", "context": "CREATE TABLE player (Player_name VARCHAR, Player_ID VARCHAR); CREATE TABLE coach (coach_name VARCHAR, Coach_ID VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR)"}, {"answer": "SELECT T3.Player_name FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID WHERE T2.Rank = 1", "question": "Show the names of players coached by the rank 1 coach.", "context": "CREATE TABLE player (Player_name VARCHAR, Player_ID VARCHAR); CREATE TABLE coach (Coach_ID VARCHAR, Rank VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR)"}, {"answer": "SELECT T3.Player_name, T3.gender FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID WHERE T1.Starting_year > 2011", "question": "Show the names and genders of players with a coach starting after 2011.", "context": "CREATE TABLE player (Player_name VARCHAR, gender VARCHAR, Player_ID VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR, Starting_year INTEGER); CREATE TABLE coach (Coach_ID VARCHAR)"}, {"answer": "SELECT T3.Player_name, T2.coach_name FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID ORDER BY T3.Votes DESC", "question": "Show the names of players and names of their coaches in descending order of the votes of players.", "context": "CREATE TABLE coach (coach_name VARCHAR, Coach_ID VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR); CREATE TABLE player (Player_name VARCHAR, Player_ID VARCHAR, Votes VARCHAR)"}, {"answer": "SELECT Player_name FROM player WHERE NOT Player_ID IN (SELECT Player_ID FROM player_coach)", "question": "List the names of players that do not have coaches.", "context": "CREATE TABLE player (Player_name VARCHAR, Player_ID VARCHAR); CREATE TABLE player_coach (Player_name VARCHAR, Player_ID VARCHAR)"}, {"answer": "SELECT Residence FROM player WHERE gender = \"M\" INTERSECT SELECT Residence FROM player WHERE gender = \"F\"", "question": "Show the residences that have both a player of gender \"M\" and a player of gender \"F\".", "context": "CREATE TABLE player (Residence VARCHAR, gender VARCHAR)"}, {"answer": "SELECT T1.club_id, T1.club_name, COUNT(*) FROM club AS T1 JOIN coach AS T2 ON T1.club_id = T2.club_id GROUP BY T1.club_id", "question": "How many coaches does each club has? List the club id, name and the number of coaches.", "context": "CREATE TABLE club (club_id VARCHAR, club_name VARCHAR); CREATE TABLE coach (club_id VARCHAR)"}, {"answer": "SELECT T1.club_id, T1.gold FROM match_result AS T1 JOIN coach AS T2 ON T1.club_id = T2.club_id GROUP BY T1.club_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "How many gold medals has the club with the most coaches won?", "context": "CREATE TABLE match_result (club_id VARCHAR, gold VARCHAR); CREATE TABLE coach (club_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM gymnast", "question": "How many gymnasts are there?", "context": "CREATE TABLE gymnast (Id VARCHAR)"}, {"answer": "SELECT Total_Points FROM gymnast ORDER BY Total_Points DESC", "question": "List the total points of gymnasts in descending order.", "context": "CREATE TABLE gymnast (Total_Points VARCHAR)"}, {"answer": "SELECT Total_Points FROM gymnast ORDER BY Floor_Exercise_Points DESC", "question": "List the total points of gymnasts in descending order of floor exercise points.", "context": "CREATE TABLE gymnast (Total_Points VARCHAR, Floor_Exercise_Points VARCHAR)"}, {"answer": "SELECT AVG(Horizontal_Bar_Points) FROM gymnast", "question": "What is the average horizontal bar points for all gymnasts?", "context": "CREATE TABLE gymnast (Horizontal_Bar_Points INTEGER)"}, {"answer": "SELECT Name FROM People ORDER BY Name", "question": "What are the names of people in ascending alphabetical order?", "context": "CREATE TABLE People (Name VARCHAR)"}, {"answer": "SELECT T2.Name FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID", "question": "What are the names of gymnasts?", "context": "CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID WHERE T2.Hometown <> \"Santo Domingo\"", "question": "What are the names of gymnasts whose hometown is not \"Santo Domingo\"?", "context": "CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR, Hometown VARCHAR)"}, {"answer": "SELECT Age FROM people ORDER BY Height DESC LIMIT 1", "question": "What is the age of the tallest person?", "context": "CREATE TABLE people (Age VARCHAR, Height VARCHAR)"}, {"answer": "SELECT Name FROM People ORDER BY Age DESC LIMIT 5", "question": "List the names of the top 5 oldest people.", "context": "CREATE TABLE People (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT T1.Total_Points FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID ORDER BY T2.Age LIMIT 1", "question": "What is the total point count of the youngest gymnast?", "context": "CREATE TABLE people (People_ID VARCHAR, Age VARCHAR); CREATE TABLE gymnast (Total_Points VARCHAR, Gymnast_ID VARCHAR)"}, {"answer": "SELECT AVG(T2.Age) FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID", "question": "What is the average age of all gymnasts?", "context": "CREATE TABLE people (Age INTEGER, People_ID VARCHAR); CREATE TABLE gymnast (Gymnast_ID VARCHAR)"}, {"answer": "SELECT DISTINCT T2.Hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID WHERE T1.Total_Points > 57.5", "question": "What are the distinct hometowns of gymnasts with total points more than 57.5?", "context": "CREATE TABLE gymnast (Gymnast_ID VARCHAR, Total_Points INTEGER); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T2.Hometown, COUNT(*) FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID GROUP BY T2.Hometown", "question": "What are the hometowns of gymnasts and the corresponding number of gymnasts?", "context": "CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T2.Hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID GROUP BY T2.Hometown ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most common hometown of gymnasts?", "context": "CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T2.Hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID GROUP BY T2.Hometown HAVING COUNT(*) >= 2", "question": "What are the hometowns that are shared by at least two gymnasts?", "context": "CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID ORDER BY T2.Height", "question": "List the names of gymnasts in ascending order by their heights.", "context": "CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR, Height VARCHAR)"}, {"answer": "SELECT DISTINCT Hometown FROM people EXCEPT SELECT DISTINCT T2.Hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID", "question": "List the distinct hometowns that are not associated with any gymnast.", "context": "CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR)"}, {"answer": "SELECT Hometown FROM people WHERE Age > 23 INTERSECT SELECT Hometown FROM people WHERE Age < 20", "question": "Show the hometowns shared by people older than 23 and younger than 20.", "context": "CREATE TABLE people (Hometown VARCHAR, Age INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT Hometown) FROM people", "question": "How many distinct hometowns did these people have?", "context": "CREATE TABLE people (Hometown VARCHAR)"}, {"answer": "SELECT T2.Age FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID ORDER BY T1.Total_Points DESC", "question": "Show the ages of gymnasts in descending order of total points.", "context": "CREATE TABLE people (Age VARCHAR, People_ID VARCHAR); CREATE TABLE gymnast (Gymnast_ID VARCHAR, Total_Points VARCHAR)"}, {"answer": "SELECT SUM(T2.balance) FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid WHERE T1.name <> 'Brown'", "question": "Find the total savings balance of all accounts except the account with name \u2018Brown\u2019.", "context": "CREATE TABLE accounts (custid VARCHAR, name VARCHAR); CREATE TABLE savings (balance INTEGER, custid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM accounts", "question": "How many accounts are there in total?", "context": "CREATE TABLE accounts (Id VARCHAR)"}, {"answer": "SELECT SUM(balance) FROM checking", "question": "What is the total checking balance in all accounts?", "context": "CREATE TABLE checking (balance INTEGER)"}, {"answer": "SELECT AVG(balance) FROM checking", "question": "Find the average checking balance.", "context": "CREATE TABLE checking (balance INTEGER)"}, {"answer": "SELECT COUNT(*) FROM savings WHERE balance > (SELECT AVG(balance) FROM savings)", "question": "How many accounts have a savings balance above the average savings balance?", "context": "CREATE TABLE savings (balance INTEGER)"}, {"answer": "SELECT T1.custid, T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T2.balance < (SELECT MAX(balance) FROM checking)", "question": "Find the name and id of accounts whose checking balance is below the maximum checking balance.", "context": "CREATE TABLE accounts (custid VARCHAR, name VARCHAR); CREATE TABLE checking (balance INTEGER); CREATE TABLE checking (custid VARCHAR, balance INTEGER)"}, {"answer": "SELECT T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T1.name LIKE '%ee%'", "question": "What is the checking balance of the account whose owner\u2019s name contains the substring \u2018ee\u2019?", "context": "CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (custid VARCHAR, name VARCHAR)"}, {"answer": "SELECT T2.balance, T3.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid WHERE T1.name = 'Brown'", "question": "Find the checking balance and saving balance in the Brown\u2019s account.", "context": "CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (custid VARCHAR, name VARCHAR); CREATE TABLE savings (balance VARCHAR, custid VARCHAR)"}, {"answer": "SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T2.balance > (SELECT AVG(balance) FROM checking) INTERSECT SELECT T1.name FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid WHERE T2.balance < (SELECT AVG(balance) FROM savings)", "question": "Find the names of accounts whose checking balance is above the average checking balance, but savings balance is below the average savings balance.", "context": "CREATE TABLE checking (custid VARCHAR, balance INTEGER); CREATE TABLE savings (custid VARCHAR, balance INTEGER); CREATE TABLE savings (balance INTEGER); CREATE TABLE checking (balance INTEGER); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)"}, {"answer": "SELECT T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T1.name IN (SELECT T1.name FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid WHERE T2.balance > (SELECT AVG(balance) FROM savings))", "question": "Find the checking balance of the accounts whose savings balance is higher than the average savings balance.", "context": "CREATE TABLE accounts (custid VARCHAR, name VARCHAR); CREATE TABLE checking (balance INTEGER, custid VARCHAR); CREATE TABLE savings (balance INTEGER, custid VARCHAR); CREATE TABLE savings (balance INTEGER)"}, {"answer": "SELECT name FROM accounts ORDER BY name", "question": "List all customers\u2019 names in the alphabetical order.", "context": "CREATE TABLE accounts (name VARCHAR)"}, {"answer": "SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T2.balance + T3.balance LIMIT 1", "question": "Find the name of account that has the lowest total checking and saving balance.", "context": "CREATE TABLE checking (custid VARCHAR, balance VARCHAR); CREATE TABLE savings (custid VARCHAR, balance VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)"}, {"answer": "SELECT T1.name, T2.balance + T3.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid WHERE T3.balance > (SELECT AVG(balance) FROM savings)", "question": "Find the names and total checking and savings balances of accounts whose savings balance is higher than the average savings balance.", "context": "CREATE TABLE checking (balance INTEGER, custid VARCHAR); CREATE TABLE savings (balance INTEGER, custid VARCHAR); CREATE TABLE savings (balance INTEGER); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)"}, {"answer": "SELECT T1.name, T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T3.balance LIMIT 1", "question": "Find the name and checking balance of the account with the lowest savings balance.", "context": "CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE savings (custid VARCHAR, balance VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid GROUP BY T1.name", "question": "Find the number of checking accounts for each account name.", "context": "CREATE TABLE checking (custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)"}, {"answer": "SELECT SUM(T2.balance), T1.name FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid GROUP BY T1.name", "question": "Find the total saving balance for each account name.", "context": "CREATE TABLE savings (balance INTEGER, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)"}, {"answer": "SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T2.balance < (SELECT AVG(balance) FROM checking)", "question": "Find the name of accounts whose checking balance is below the average checking balance.", "context": "CREATE TABLE accounts (name VARCHAR, custid VARCHAR); CREATE TABLE checking (balance INTEGER); CREATE TABLE checking (custid VARCHAR, balance INTEGER)"}, {"answer": "SELECT T3.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T2.balance DESC LIMIT 1", "question": "Find the saving balance of the account with the highest checking balance.", "context": "CREATE TABLE savings (balance VARCHAR, custid VARCHAR); CREATE TABLE checking (custid VARCHAR, balance VARCHAR); CREATE TABLE accounts (custid VARCHAR)"}, {"answer": "SELECT T1.balance + T2.balance FROM checking AS T1 JOIN savings AS T2 ON T1.custid = T2.custid ORDER BY T1.balance + T2.balance", "question": "Find the total checking and saving balance of all accounts sorted by the total balance in ascending order.", "context": "CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE savings (balance VARCHAR, custid VARCHAR)"}, {"answer": "SELECT T2.balance, T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T3.balance LIMIT 1", "question": "Find the name and checking balance of the account with the lowest saving balance.", "context": "CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE savings (custid VARCHAR, balance VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)"}, {"answer": "SELECT T2.balance, T3.balance, T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid", "question": "Find the name, checking balance and saving balance of all accounts in the bank.", "context": "CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE savings (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)"}, {"answer": "SELECT T2.balance, T3.balance, T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T2.balance + T3.balance DESC", "question": "Find the name, checking balance and savings balance of all accounts in the bank sorted by their total checking and savings balance in descending order.", "context": "CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE savings (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)"}, {"answer": "SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid WHERE T2.balance > T3.balance", "question": "Find the name of accounts whose checking balance is higher than corresponding saving balance.", "context": "CREATE TABLE savings (custid VARCHAR, balance INTEGER); CREATE TABLE accounts (name VARCHAR, custid VARCHAR); CREATE TABLE checking (custid VARCHAR, balance INTEGER)"}, {"answer": "SELECT T1.name, T3.balance + T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid WHERE T3.balance < T2.balance", "question": "Find the name and total checking and savings balance of the accounts whose savings balance is lower than corresponding checking balance.", "context": "CREATE TABLE checking (balance INTEGER, custid VARCHAR); CREATE TABLE savings (balance INTEGER, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)"}, {"answer": "SELECT T1.name, T2.balance FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid ORDER BY T2.balance DESC LIMIT 3", "question": "Find the name and savings balance of the top 3 accounts with the highest saving balance sorted by savings balance in descending order.", "context": "CREATE TABLE savings (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM browser WHERE market_share >= 5", "question": "How many main stream browsers whose market share is at least 5 exist?", "context": "CREATE TABLE browser (market_share VARCHAR)"}, {"answer": "SELECT name FROM browser ORDER BY market_share DESC", "question": "List the name of browsers in descending order by market share.", "context": "CREATE TABLE browser (name VARCHAR, market_share VARCHAR)"}, {"answer": "SELECT id, name, market_share FROM browser", "question": "List the ids, names and market shares of all browsers.", "context": "CREATE TABLE browser (id VARCHAR, name VARCHAR, market_share VARCHAR)"}, {"answer": "SELECT MAX(market_share), MIN(market_share), AVG(market_share) FROM browser", "question": "What is the maximum, minimum and average market share of the listed browsers?", "context": "CREATE TABLE browser (market_share INTEGER)"}, {"answer": "SELECT id, market_share FROM browser WHERE name = 'Safari'", "question": "What is the id and market share of the browser Safari?", "context": "CREATE TABLE browser (id VARCHAR, market_share VARCHAR, name VARCHAR)"}, {"answer": "SELECT name, operating_system FROM web_client_accelerator WHERE CONNECTION <> 'Broadband'", "question": "What are the name and os of web client accelerators that do not work with only a 'Broadband' type connection?", "context": "CREATE TABLE web_client_accelerator (name VARCHAR, operating_system VARCHAR, CONNECTION VARCHAR)"}, {"answer": "SELECT T1.name FROM browser AS T1 JOIN accelerator_compatible_browser AS T2 ON T1.id = T2.browser_id JOIN web_client_accelerator AS T3 ON T2.accelerator_id = T3.id WHERE T3.name = 'CProxy' AND T2.compatible_since_year > 1998", "question": "What is the name of the browser that became compatible with the accelerator 'CProxy' after year 1998 ?", "context": "CREATE TABLE accelerator_compatible_browser (browser_id VARCHAR, accelerator_id VARCHAR, compatible_since_year VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, name VARCHAR); CREATE TABLE browser (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T1.id, T1.Name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id GROUP BY T1.id HAVING COUNT(*) >= 2", "question": "What are the ids and names of the web accelerators that are compatible with two or more browsers?", "context": "CREATE TABLE accelerator_compatible_browser (accelerator_id VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, Name VARCHAR)"}, {"answer": "SELECT T1.id, T1.name FROM browser AS T1 JOIN accelerator_compatible_browser AS T2 ON T1.id = T2.browser_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the id and name of the browser that is compatible with the most web accelerators?", "context": "CREATE TABLE browser (id VARCHAR, name VARCHAR); CREATE TABLE accelerator_compatible_browser (browser_id VARCHAR)"}, {"answer": "SELECT T1.compatible_since_year FROM accelerator_compatible_browser AS T1 JOIN browser AS T2 ON T1.browser_id = T2.id JOIN web_client_accelerator AS T3 ON T1.accelerator_id = T3.id WHERE T3.name = 'CACHEbox' AND T2.name = 'Internet Explorer'", "question": "When did the web accelerator 'CACHEbox' and browser 'Internet Explorer' become compatible?", "context": "CREATE TABLE accelerator_compatible_browser (compatible_since_year VARCHAR, browser_id VARCHAR, accelerator_id VARCHAR); CREATE TABLE browser (id VARCHAR, name VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT client) FROM web_client_accelerator", "question": "How many different kinds of clients are supported by the web clients accelerators?", "context": "CREATE TABLE web_client_accelerator (client VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM web_client_accelerator WHERE NOT id IN (SELECT accelerator_id FROM accelerator_compatible_browser)", "question": "How many accelerators are not compatible with the browsers listed ?", "context": "CREATE TABLE accelerator_compatible_browser (id VARCHAR, accelerator_id VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, accelerator_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T3.market_share > 15", "question": "What distinct accelerator names are compatible with the browswers that have market share higher than 15?", "context": "CREATE TABLE web_client_accelerator (name VARCHAR, id VARCHAR); CREATE TABLE accelerator_compatible_browser (accelerator_id VARCHAR, browser_id VARCHAR); CREATE TABLE browser (id VARCHAR, market_share INTEGER)"}, {"answer": "SELECT T3.name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T1.name = 'CACHEbox' INTERSECT SELECT T3.name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T1.name = 'Fasterfox'", "question": "List the names of the browser that are compatible with both 'CACHEbox' and 'Fasterfox'.", "context": "CREATE TABLE accelerator_compatible_browser (accelerator_id VARCHAR, browser_id VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, name VARCHAR); CREATE TABLE browser (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT name, operating_system FROM web_client_accelerator EXCEPT SELECT T1.name, T1.operating_system FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T3.name = 'Opera'", "question": "Show the accelerator names and supporting operating systems that are not compatible with the browser named 'Opera'.", "context": "CREATE TABLE browser (id VARCHAR, name VARCHAR); CREATE TABLE web_client_accelerator (name VARCHAR, operating_system VARCHAR); CREATE TABLE accelerator_compatible_browser (accelerator_id VARCHAR, browser_id VARCHAR); CREATE TABLE web_client_accelerator (name VARCHAR, operating_system VARCHAR, id VARCHAR)"}, {"answer": "SELECT name FROM web_client_accelerator WHERE name LIKE \"%Opera%\"", "question": "Which accelerator name contains substring \"Opera\"?", "context": "CREATE TABLE web_client_accelerator (name VARCHAR)"}, {"answer": "SELECT Operating_system, COUNT(*) FROM web_client_accelerator GROUP BY Operating_system", "question": "Find the number of web accelerators used for each Operating system.", "context": "CREATE TABLE web_client_accelerator (Operating_system VARCHAR)"}, {"answer": "SELECT T2.name, T3.name FROM accelerator_compatible_browser AS T1 JOIN browser AS T2 ON T1.browser_id = T2.id JOIN web_client_accelerator AS T3 ON T1.accelerator_id = T3.id ORDER BY T1.compatible_since_year DESC", "question": "give me names of all compatible browsers and accelerators in the descending order of compatible year", "context": "CREATE TABLE accelerator_compatible_browser (browser_id VARCHAR, accelerator_id VARCHAR, compatible_since_year VARCHAR); CREATE TABLE web_client_accelerator (name VARCHAR, id VARCHAR); CREATE TABLE browser (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM wrestler", "question": "How many wrestlers are there?", "context": "CREATE TABLE wrestler (Id VARCHAR)"}, {"answer": "SELECT Name FROM wrestler ORDER BY Days_held DESC", "question": "List the names of wrestlers in descending order of days held.", "context": "CREATE TABLE wrestler (Name VARCHAR, Days_held VARCHAR)"}, {"answer": "SELECT Name FROM wrestler ORDER BY Days_held LIMIT 1", "question": "What is the name of the wrestler with the fewest days held?", "context": "CREATE TABLE wrestler (Name VARCHAR, Days_held VARCHAR)"}, {"answer": "SELECT DISTINCT Reign FROM wrestler WHERE LOCATION <> \"Tokyo , Japan\"", "question": "What are the distinct reigns of wrestlers whose location is not \"Tokyo,Japan\" ?", "context": "CREATE TABLE wrestler (Reign VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT Name, LOCATION FROM wrestler", "question": "What are the names and location of the wrestlers?", "context": "CREATE TABLE wrestler (Name VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT Elimination_Move FROM Elimination WHERE Team = \"Team Orton\"", "question": "What are the elimination moves of wrestlers whose team is \"Team Orton\"?", "context": "CREATE TABLE Elimination (Elimination_Move VARCHAR, Team VARCHAR)"}, {"answer": "SELECT T2.Name, T1.Elimination_Move FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID", "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.Team FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID ORDER BY T2.Days_held DESC", "question": "List the names of wrestlers and the teams in elimination in descending order of days held.", "context": "CREATE TABLE elimination (Team VARCHAR, Wrestler_ID VARCHAR); CREATE TABLE wrestler (Name VARCHAR, Wrestler_ID VARCHAR, Days_held VARCHAR)"}, {"answer": "SELECT T1.Time FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID ORDER BY T2.Days_held DESC LIMIT 1", "question": "List the time of elimination of the wrestlers with largest days held.", "context": "CREATE TABLE wrestler (Wrestler_ID VARCHAR, Days_held VARCHAR); CREATE TABLE elimination (Time VARCHAR, Wrestler_ID VARCHAR)"}, {"answer": "SELECT T1.Time FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID WHERE T2.Days_held > 50", "question": "Show times of elimination of wrestlers with days held more than 50.", "context": "CREATE TABLE wrestler (Wrestler_ID VARCHAR, Days_held INTEGER); CREATE TABLE elimination (Time VARCHAR, Wrestler_ID VARCHAR)"}, {"answer": "SELECT Team, COUNT(*) FROM elimination GROUP BY Team", "question": "Show different teams in eliminations and the number of eliminations from each team.", "context": "CREATE TABLE elimination (Team VARCHAR)"}, {"answer": "SELECT Team FROM elimination GROUP BY Team HAVING COUNT(*) > 3", "question": "Show teams that have suffered more than three eliminations.", "context": "CREATE TABLE elimination (Team VARCHAR)"}, {"answer": "SELECT Reign, Days_held FROM wrestler", "question": "Show the reign and days held of wrestlers.", "context": "CREATE TABLE wrestler (Reign VARCHAR, Days_held VARCHAR)"}, {"answer": "SELECT Name FROM wrestler WHERE Days_held < 100", "question": "What are the names of wrestlers days held less than 100?", "context": "CREATE TABLE wrestler (Name VARCHAR, Days_held INTEGER)"}, {"answer": "SELECT Reign FROM wrestler GROUP BY Reign ORDER BY COUNT(*) DESC LIMIT 1", "question": "Please show the most common reigns of wrestlers.", "context": "CREATE TABLE wrestler (Reign VARCHAR)"}, {"answer": "SELECT LOCATION FROM wrestler GROUP BY LOCATION HAVING COUNT(*) > 2", "question": "List the locations that are shared by more than two wrestlers.", "context": "CREATE TABLE wrestler (LOCATION VARCHAR)"}, {"answer": "SELECT Name FROM wrestler WHERE NOT Wrestler_ID IN (SELECT Wrestler_ID FROM elimination)", "question": "List the names of wrestlers that have not been eliminated.", "context": "CREATE TABLE elimination (Name VARCHAR, Wrestler_ID VARCHAR); CREATE TABLE wrestler (Name VARCHAR, Wrestler_ID VARCHAR)"}, {"answer": "SELECT Team FROM Elimination WHERE Eliminated_By = \"Orton\" INTERSECT SELECT Team FROM Elimination WHERE Eliminated_By = \"Benjamin\"", "question": "Show the teams that have both wrestlers eliminated by \"Orton\" and wrestlers eliminated by \"Benjamin\".", "context": "CREATE TABLE Elimination (Team VARCHAR, Eliminated_By VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT team) FROM elimination", "question": "What is the number of distinct teams that suffer elimination?", "context": "CREATE TABLE elimination (team VARCHAR)"}, {"answer": "SELECT TIME FROM elimination WHERE Eliminated_By = \"Punk\" OR Eliminated_By = \"Orton\"", "question": "Show the times of elimination by \"Punk\" or \"Orton\".", "context": "CREATE TABLE elimination (TIME VARCHAR, Eliminated_By VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM school", "question": "How many schools are there?", "context": "CREATE TABLE school (Id VARCHAR)"}, {"answer": "SELECT school_name FROM school ORDER BY school_name", "question": "Show all school names in alphabetical order.", "context": "CREATE TABLE school (school_name VARCHAR)"}, {"answer": "SELECT school_name, LOCATION, mascot FROM school", "question": "List the name, location, mascot for all schools.", "context": "CREATE TABLE school (school_name VARCHAR, LOCATION VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT SUM(enrollment), AVG(enrollment) FROM school", "question": "What are the total and average enrollment of all schools?", "context": "CREATE TABLE school (enrollment INTEGER)"}, {"answer": "SELECT mascot FROM school WHERE enrollment > (SELECT AVG(enrollment) FROM school)", "question": "What are the mascots for schools with enrollments above the average?", "context": "CREATE TABLE school (mascot VARCHAR, enrollment INTEGER)"}, {"answer": "SELECT school_name FROM school ORDER BY enrollment LIMIT 1", "question": "List the name of the school with the smallest enrollment.", "context": "CREATE TABLE school (school_name VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT AVG(enrollment), MAX(enrollment), MIN(enrollment) FROM school", "question": "Show the average, maximum, minimum enrollment of all schools.", "context": "CREATE TABLE school (enrollment INTEGER)"}, {"answer": "SELECT county, COUNT(*), SUM(enrollment) FROM school GROUP BY county", "question": "Show each county along with the number of schools and total enrollment in each county.", "context": "CREATE TABLE school (county VARCHAR, enrollment INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT T1.donator_name) FROM endowment AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T2.school_name = \"Glenn\"", "question": "How many donors have endowment for school named \"Glenn\"?", "context": "CREATE TABLE school (school_id VARCHAR, school_name VARCHAR); CREATE TABLE endowment (donator_name VARCHAR, school_id VARCHAR)"}, {"answer": "SELECT donator_name, SUM(amount) FROM endowment GROUP BY donator_name ORDER BY SUM(amount) DESC", "question": "List each donator name and the amount of endowment in descending order of the amount of endowment.", "context": "CREATE TABLE endowment (donator_name VARCHAR, amount INTEGER)"}, {"answer": "SELECT school_name FROM school WHERE NOT school_id IN (SELECT school_id FROM endowment)", "question": "List the names of the schools without any endowment.", "context": "CREATE TABLE endowment (school_name VARCHAR, school_id VARCHAR); CREATE TABLE school (school_name VARCHAR, school_id VARCHAR)"}, {"answer": "SELECT T2.school_name FROM endowment AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id GROUP BY T1.school_id HAVING SUM(T1.amount) <= 10", "question": "List all the names of schools with an endowment amount smaller than or equal to 10.", "context": "CREATE TABLE school (school_name VARCHAR, school_id VARCHAR); CREATE TABLE endowment (school_id VARCHAR, amount INTEGER)"}, {"answer": "SELECT T1.donator_name FROM endowment AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T2.school_name = 'Glenn' INTERSECT SELECT T1.donator_name FROM endowment AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T2.school_name = 'Triton'", "question": "Show the names of donors who donated to both school \"Glenn\" and \"Triton.\"", "context": "CREATE TABLE school (school_id VARCHAR, school_name VARCHAR); CREATE TABLE endowment (donator_name VARCHAR, school_id VARCHAR)"}, {"answer": "SELECT donator_name FROM endowment EXCEPT SELECT donator_name FROM endowment WHERE amount < 9", "question": "Show the names of all the donors except those whose donation amount less than 9.", "context": "CREATE TABLE endowment (donator_name VARCHAR, amount INTEGER)"}, {"answer": "SELECT amount, donator_name FROM endowment ORDER BY amount DESC LIMIT 1", "question": "List the amount and donor name for the largest amount of donation.", "context": "CREATE TABLE endowment (amount VARCHAR, donator_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM budget WHERE budgeted > 3000 AND YEAR <= 2001", "question": "How many budgets are above 3000 in year 2001 or before?", "context": "CREATE TABLE budget (budgeted VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT T2.school_name, T1.budgeted, T1.invested FROM budget AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T1.year >= 2002", "question": "Show each school name, its budgeted amount, and invested amount in year 2002 or after.", "context": "CREATE TABLE budget (budgeted VARCHAR, invested VARCHAR, school_id VARCHAR, year VARCHAR); CREATE TABLE school (school_name VARCHAR, school_id VARCHAR)"}, {"answer": "SELECT DISTINCT donator_name FROM endowment", "question": "Show all donor names.", "context": "CREATE TABLE endowment (donator_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM budget WHERE budgeted < invested", "question": "How many budget record has a budget amount smaller than the invested amount?", "context": "CREATE TABLE budget (budgeted INTEGER, invested VARCHAR)"}, {"answer": "SELECT SUM(T1.budgeted) FROM budget AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T2.school_name = 'Glenn'", "question": "What is the total budget amount for school \"Glenn\" in all years?", "context": "CREATE TABLE budget (budgeted INTEGER, school_id VARCHAR); CREATE TABLE school (school_id VARCHAR, school_name VARCHAR)"}, {"answer": "SELECT T2.school_name FROM budget AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id JOIN endowment AS T3 ON T2.school_id = T3.school_id GROUP BY T2.school_name HAVING SUM(T1.budgeted) > 100 OR SUM(T3.amount) > 10", "question": "Show the names of schools with a total budget amount greater than 100 or a total endowment greater than 10.", "context": "CREATE TABLE endowment (school_id VARCHAR, amount INTEGER); CREATE TABLE budget (school_id VARCHAR, budgeted INTEGER); CREATE TABLE school (school_name VARCHAR, school_id VARCHAR)"}, {"answer": "SELECT T2.School_name FROM endowment AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T1.amount > 8.5 GROUP BY T1.school_id HAVING COUNT(*) > 1", "question": "Find the names of schools that have more than one donator with donation amount above 8.5.", "context": "CREATE TABLE school (School_name VARCHAR, school_id VARCHAR); CREATE TABLE endowment (school_id VARCHAR, amount INTEGER)"}, {"answer": "SELECT COUNT(*) FROM (SELECT * FROM endowment WHERE amount > 8.5 GROUP BY school_id HAVING COUNT(*) > 1)", "question": "Find the number of schools that have more than one donator whose donation amount is less than 8.5.", "context": "CREATE TABLE endowment (school_id VARCHAR, amount INTEGER)"}, {"answer": "SELECT T1.School_name, T1.Mascot, T1.IHSAA_Football_Class FROM school AS T1 JOIN budget AS T2 ON T1.school_id = T2.school_id WHERE Budgeted > 6000 OR YEAR < 2003 ORDER BY T2.total_budget_percent_invested, T2.total_budget_percent_budgeted", "question": "List the name, IHSAA Football Class, and Mascot of the schools that have more than 6000 of budgeted amount or were founded before 2003, in the order of percent of total invested budget and total budgeted budget.", "context": "CREATE TABLE school (School_name VARCHAR, Mascot VARCHAR, IHSAA_Football_Class VARCHAR, school_id VARCHAR); CREATE TABLE budget (school_id VARCHAR, total_budget_percent_invested VARCHAR, total_budget_percent_budgeted VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM building", "question": "How many buildings are there?", "context": "CREATE TABLE building (Id VARCHAR)"}, {"answer": "SELECT name, street_address, floors FROM building ORDER BY floors", "question": "Show the name, street address, and number of floors for all buildings ordered by the number of floors.", "context": "CREATE TABLE building (name VARCHAR, street_address VARCHAR, floors VARCHAR)"}, {"answer": "SELECT name FROM building ORDER BY height_feet DESC LIMIT 1", "question": "What is the name of the tallest building?", "context": "CREATE TABLE building (name VARCHAR, height_feet VARCHAR)"}, {"answer": "SELECT AVG(floors), MAX(floors), MIN(floors) FROM building", "question": "What are the average, maximum, and minimum number of floors for all buildings?", "context": "CREATE TABLE building (floors INTEGER)"}, {"answer": "SELECT COUNT(*) FROM building WHERE height_feet > (SELECT AVG(height_feet) FROM building) OR floors > (SELECT AVG(floors) FROM building)", "question": "Show the number of buildings with a height above the average or a number of floors above the average.", "context": "CREATE TABLE building (height_feet INTEGER, floors INTEGER)"}, {"answer": "SELECT name FROM building WHERE height_feet >= 200 AND floors >= 20", "question": "List the names of buildings with at least 200 feet of height and with at least 20 floors.", "context": "CREATE TABLE building (name VARCHAR, height_feet VARCHAR, floors VARCHAR)"}, {"answer": "SELECT institution, LOCATION FROM institution WHERE founded > 1990 AND TYPE = 'Private'", "question": "Show the names and locations of institutions that are founded after 1990 and have the type \"Private\".", "context": "CREATE TABLE institution (institution VARCHAR, LOCATION VARCHAR, founded VARCHAR, TYPE VARCHAR)"}, {"answer": "SELECT TYPE, COUNT(*), SUM(enrollment) FROM institution GROUP BY TYPE", "question": "Show institution types, along with the number of institutions and total enrollment for each type.", "context": "CREATE TABLE institution (TYPE VARCHAR, enrollment INTEGER)"}, {"answer": "SELECT TYPE FROM institution GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the institution type with the largest number of institutions.", "context": "CREATE TABLE institution (TYPE VARCHAR)"}, {"answer": "SELECT TYPE FROM institution WHERE founded > 1990 AND enrollment >= 1000", "question": "Show the institution type with an institution founded after 1990 and an institution with at least 1000 enrollment.", "context": "CREATE TABLE institution (TYPE VARCHAR, founded VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT name FROM building WHERE NOT building_id IN (SELECT building_id FROM institution)", "question": "Show the name of buildings that do not have any institution.", "context": "CREATE TABLE building (name VARCHAR, building_id VARCHAR); CREATE TABLE institution (name VARCHAR, building_id VARCHAR)"}, {"answer": "SELECT name FROM building EXCEPT SELECT T1.name FROM building AS T1 JOIN institution AS T2 ON T1.building_id = T2.building_id WHERE T2.founded = 2003", "question": "Show the names of buildings except for those having an institution founded in 2003.", "context": "CREATE TABLE building (name VARCHAR, building_id VARCHAR); CREATE TABLE building (name VARCHAR); CREATE TABLE institution (building_id VARCHAR, founded VARCHAR)"}, {"answer": "SELECT T1.name, COUNT(*) FROM building AS T1 JOIN institution AS T2 ON T1.building_id = T2.building_id GROUP BY T1.building_id", "question": "For each building, show the name of the building and the number of institutions in it.", "context": "CREATE TABLE building (name VARCHAR, building_id VARCHAR); CREATE TABLE institution (building_id VARCHAR)"}, {"answer": "SELECT T1.name, T1.height_feet FROM building AS T1 JOIN institution AS T2 ON T1.building_id = T2.building_id WHERE T2.founded > 1880 GROUP BY T1.building_id HAVING COUNT(*) >= 2", "question": "Show the names and heights of buildings with at least two institutions founded after 1880.", "context": "CREATE TABLE building (name VARCHAR, height_feet VARCHAR, building_id VARCHAR); CREATE TABLE institution (building_id VARCHAR, founded INTEGER)"}, {"answer": "SELECT DISTINCT TYPE FROM institution", "question": "Show all the distinct institution types.", "context": "CREATE TABLE institution (TYPE VARCHAR)"}, {"answer": "SELECT T1.institution, COUNT(*) FROM institution AS T1 JOIN protein AS T2 ON T1.institution_id = T2.institution_id GROUP BY T1.institution_id", "question": "Show institution names along with the number of proteins for each institution.", "context": "CREATE TABLE institution (institution VARCHAR, institution_id VARCHAR); CREATE TABLE protein (institution_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM institution AS T1 JOIN protein AS T2 ON T1.institution_id = T2.institution_id WHERE T1.founded > 1880 OR T1.type = 'Private'", "question": "How many proteins are associated with an institution founded after 1880 or an institution with type \"Private\"?", "context": "CREATE TABLE institution (institution_id VARCHAR, founded VARCHAR, type VARCHAR); CREATE TABLE protein (institution_id VARCHAR)"}, {"answer": "SELECT T2.protein_name, T1.institution FROM institution AS T1 JOIN protein AS T2 ON T1.institution_id = T2.institution_id", "question": "Show the protein name and the institution name.", "context": "CREATE TABLE institution (institution VARCHAR, institution_id VARCHAR); CREATE TABLE protein (protein_name VARCHAR, institution_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM institution AS T1 JOIN protein AS T2 ON T1.institution_id = T2.institution_id JOIN building AS T3 ON T3.building_id = T1.building_id WHERE T3.floors >= 20", "question": "How many proteins are associated with an institution in a building with at least 20 floors?", "context": "CREATE TABLE institution (institution_id VARCHAR, building_id VARCHAR); CREATE TABLE building (building_id VARCHAR, floors VARCHAR); CREATE TABLE protein (institution_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM institution WHERE NOT institution_id IN (SELECT institution_id FROM protein)", "question": "How many institutions do not have an associated protein in our record?", "context": "CREATE TABLE protein (institution_id VARCHAR); CREATE TABLE institution (institution_id VARCHAR)"}, {"answer": "SELECT LOCATION FROM cinema EXCEPT SELECT LOCATION FROM cinema WHERE capacity > 800", "question": "Show all the locations where no cinema has capacity over 800.", "context": "CREATE TABLE cinema (LOCATION VARCHAR, capacity INTEGER)"}, {"answer": "SELECT LOCATION FROM cinema WHERE openning_year = 2010 INTERSECT SELECT LOCATION FROM cinema WHERE openning_year = 2011", "question": "Show all the locations where some cinemas were opened in both year 2010 and year 2011.", "context": "CREATE TABLE cinema (LOCATION VARCHAR, openning_year VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM cinema", "question": "How many cinema do we have?", "context": "CREATE TABLE cinema (Id VARCHAR)"}, {"answer": "SELECT name, openning_year, capacity FROM cinema", "question": "Show name, opening year, and capacity for each cinema.", "context": "CREATE TABLE cinema (name VARCHAR, openning_year VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT name, LOCATION FROM cinema WHERE capacity > (SELECT AVG(capacity) FROM cinema)", "question": "Show the cinema name and location for cinemas with capacity above average.", "context": "CREATE TABLE cinema (name VARCHAR, LOCATION VARCHAR, capacity INTEGER)"}, {"answer": "SELECT DISTINCT LOCATION FROM cinema", "question": "What are all the locations with a cinema?", "context": "CREATE TABLE cinema (LOCATION VARCHAR)"}, {"answer": "SELECT name, openning_year FROM cinema ORDER BY openning_year DESC", "question": "Show all the cinema names and opening years in descending order of opening year.", "context": "CREATE TABLE cinema (name VARCHAR, openning_year VARCHAR)"}, {"answer": "SELECT name, LOCATION FROM cinema ORDER BY capacity DESC LIMIT 1", "question": "What are the name and location of the cinema with the largest capacity?", "context": "CREATE TABLE cinema (name VARCHAR, LOCATION VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT AVG(capacity), MIN(capacity), MAX(capacity) FROM cinema WHERE openning_year >= 2011", "question": "Show the average, minimum, and maximum capacity for all the cinemas opened in year 2011 or later.", "context": "CREATE TABLE cinema (capacity INTEGER, openning_year VARCHAR)"}, {"answer": "SELECT LOCATION, COUNT(*) FROM cinema GROUP BY LOCATION", "question": "Show each location and the number of cinemas there.", "context": "CREATE TABLE cinema (LOCATION VARCHAR)"}, {"answer": "SELECT LOCATION FROM cinema WHERE openning_year >= 2010 GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the location with the most cinemas opened in year 2010 or later?", "context": "CREATE TABLE cinema (LOCATION VARCHAR, openning_year VARCHAR)"}, {"answer": "SELECT LOCATION FROM cinema WHERE capacity > 300 GROUP BY LOCATION HAVING COUNT(*) >= 2", "question": "Show all the locations with at least two cinemas with capacity above 300.", "context": "CREATE TABLE cinema (LOCATION VARCHAR, capacity INTEGER)"}, {"answer": "SELECT title, directed_by FROM film", "question": "Show the title and director for all films.", "context": "CREATE TABLE film (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT DISTINCT directed_by FROM film", "question": "Show all directors.", "context": "CREATE TABLE film (directed_by VARCHAR)"}, {"answer": "SELECT directed_by, COUNT(*) FROM film GROUP BY directed_by", "question": "List all directors along with the number of films directed by each director.", "context": "CREATE TABLE film (directed_by VARCHAR)"}, {"answer": "SELECT T2.name, SUM(T1.show_times_per_day) FROM schedule AS T1 JOIN cinema AS T2 ON T1.cinema_id = T2.cinema_id GROUP BY T1.cinema_id", "question": "What is total number of show times per dat for each cinema?", "context": "CREATE TABLE schedule (show_times_per_day INTEGER, cinema_id VARCHAR); CREATE TABLE cinema (name VARCHAR, cinema_id VARCHAR)"}, {"answer": "SELECT T2.title, MAX(T1.price) FROM schedule AS T1 JOIN film AS T2 ON T1.film_id = T2.film_id GROUP BY T1.film_id", "question": "What are the title and maximum price of each film?", "context": "CREATE TABLE film (title VARCHAR, film_id VARCHAR); CREATE TABLE schedule (price INTEGER, film_id VARCHAR)"}, {"answer": "SELECT T3.name, T2.title, T1.date, T1.price FROM schedule AS T1 JOIN film AS T2 ON T1.film_id = T2.film_id JOIN cinema AS T3 ON T1.cinema_id = T3.cinema_id", "question": "Show cinema name, film title, date, and price for each record in schedule.", "context": "CREATE TABLE schedule (date VARCHAR, price VARCHAR, film_id VARCHAR, cinema_id VARCHAR); CREATE TABLE cinema (name VARCHAR, cinema_id VARCHAR); CREATE TABLE film (title VARCHAR, film_id VARCHAR)"}, {"answer": "SELECT title, directed_by FROM film WHERE NOT film_id IN (SELECT film_id FROM schedule)", "question": "What are the title and director of the films without any schedule?", "context": "CREATE TABLE schedule (title VARCHAR, directed_by VARCHAR, film_id VARCHAR); CREATE TABLE film (title VARCHAR, directed_by VARCHAR, film_id VARCHAR)"}, {"answer": "SELECT T2.directed_by FROM schedule AS T1 JOIN film AS T2 ON T1.film_id = T2.film_id GROUP BY T2.directed_by ORDER BY SUM(T1.show_times_per_day) DESC LIMIT 1", "question": "Show director with the largest number of show times in total.", "context": "CREATE TABLE schedule (film_id VARCHAR, show_times_per_day INTEGER); CREATE TABLE film (directed_by VARCHAR, film_id VARCHAR)"}, {"answer": "SELECT LOCATION FROM cinema WHERE capacity > 300 GROUP BY LOCATION HAVING COUNT(*) > 1", "question": "Find the locations that have more than one movie theater with capacity above 300.", "context": "CREATE TABLE cinema (LOCATION VARCHAR, capacity INTEGER)"}, {"answer": "SELECT COUNT(*) FROM film WHERE title LIKE \"%Dummy%\"", "question": "How many films have the word 'Dummy' in their titles?", "context": "CREATE TABLE film (title VARCHAR)"}, {"answer": "SELECT T1.good_or_bad_customer FROM customers AS T1 JOIN discount_coupons AS T2 ON T1.coupon_id = T2.coupon_id WHERE T2.coupon_amount = 500", "question": "Are the customers holding coupons with amount 500 bad or good?", "context": "CREATE TABLE discount_coupons (coupon_id VARCHAR, coupon_amount VARCHAR); CREATE TABLE customers (good_or_bad_customer VARCHAR, coupon_id VARCHAR)"}, {"answer": "SELECT T1.customer_id, T1.first_name, COUNT(*) FROM Customers AS T1 JOIN bookings AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id", "question": "How many bookings did each customer make? List the customer id, first name, and the count.", "context": "CREATE TABLE bookings (customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR)"}, {"answer": "SELECT customer_id, SUM(amount_paid) FROM Payments GROUP BY customer_id ORDER BY SUM(amount_paid) DESC LIMIT 1", "question": "What is the maximum total amount paid by a customer? List the customer id and amount.", "context": "CREATE TABLE Payments (customer_id VARCHAR, amount_paid INTEGER)"}, {"answer": "SELECT T1.booking_id, T1.amount_of_refund FROM Bookings AS T1 JOIN Payments AS T2 ON T1.booking_id = T2.booking_id GROUP BY T1.booking_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What are the id and the amount of refund of the booking that incurred the most times of payments?", "context": "CREATE TABLE Payments (booking_id VARCHAR); CREATE TABLE Bookings (booking_id VARCHAR, amount_of_refund VARCHAR)"}, {"answer": "SELECT product_id FROM products_booked GROUP BY product_id HAVING COUNT(*) = 3", "question": "What is the id of the product that is booked for 3 times?", "context": "CREATE TABLE products_booked (product_id VARCHAR)"}, {"answer": "SELECT T2.product_description FROM products_booked AS T1 JOIN products_for_hire AS T2 ON T1.product_id = T2.product_id WHERE T1.booked_amount = 102.76", "question": "What is the product description of the product booked with an amount of 102.76?", "context": "CREATE TABLE products_for_hire (product_description VARCHAR, product_id VARCHAR); CREATE TABLE products_booked (product_id VARCHAR, booked_amount VARCHAR)"}, {"answer": "SELECT T3.booking_start_date, T3.booking_end_date FROM Products_for_hire AS T1 JOIN products_booked AS T2 ON T1.product_id = T2.product_id JOIN bookings AS T3 ON T2.booking_id = T3.booking_id WHERE T1.product_name = 'Book collection A'", "question": "What are the start date and end date of the booking that has booked the product named 'Book collection A'?", "context": "CREATE TABLE bookings (booking_start_date VARCHAR, booking_end_date VARCHAR, booking_id VARCHAR); CREATE TABLE products_booked (product_id VARCHAR, booking_id VARCHAR); CREATE TABLE Products_for_hire (product_id VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT T2.product_name FROM view_product_availability AS T1 JOIN products_for_hire AS T2 ON T1.product_id = T2.product_id WHERE T1.available_yn = 1", "question": "What are the names of products whose availability equals to 1?", "context": "CREATE TABLE view_product_availability (product_id VARCHAR, available_yn VARCHAR); CREATE TABLE products_for_hire (product_name VARCHAR, product_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT product_type_code) FROM products_for_hire", "question": "How many different product types are there?", "context": "CREATE TABLE products_for_hire (product_type_code VARCHAR)"}, {"answer": "SELECT first_name, last_name, gender_mf FROM customers WHERE good_or_bad_customer = 'good' ORDER BY last_name", "question": "What are the first name, last name, and gender of all the good customers? Order by their last name.", "context": "CREATE TABLE customers (first_name VARCHAR, last_name VARCHAR, gender_mf VARCHAR, good_or_bad_customer VARCHAR)"}, {"answer": "SELECT AVG(amount_due) FROM payments", "question": "What is the average amount due for all the payments?", "context": "CREATE TABLE payments (amount_due INTEGER)"}, {"answer": "SELECT MAX(booked_count), MIN(booked_count), AVG(booked_count) FROM products_booked", "question": "What are the maximum, minimum, and average booked count for the products booked?", "context": "CREATE TABLE products_booked (booked_count INTEGER)"}, {"answer": "SELECT DISTINCT payment_type_code FROM payments", "question": "What are all the distinct payment types?", "context": "CREATE TABLE payments (payment_type_code VARCHAR)"}, {"answer": "SELECT daily_hire_cost FROM Products_for_hire WHERE product_name LIKE '%Book%'", "question": "What are the daily hire costs for the products with substring 'Book' in its name?", "context": "CREATE TABLE Products_for_hire (daily_hire_cost VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Products_for_hire WHERE NOT product_id IN (SELECT product_id FROM products_booked WHERE booked_amount > 200)", "question": "How many products are never booked with amount higher than 200?", "context": "CREATE TABLE products_booked (product_id VARCHAR, booked_amount INTEGER); CREATE TABLE Products_for_hire (product_id VARCHAR, booked_amount INTEGER)"}, {"answer": "SELECT T1.coupon_amount FROM Discount_Coupons AS T1 JOIN customers AS T2 ON T1.coupon_id = T2.coupon_id WHERE T2.good_or_bad_customer = 'good' INTERSECT SELECT T1.coupon_amount FROM Discount_Coupons AS T1 JOIN customers AS T2 ON T1.coupon_id = T2.coupon_id WHERE T2.good_or_bad_customer = 'bad'", "question": "What are the coupon amount of the coupons owned by both good and bad customers?", "context": "CREATE TABLE Discount_Coupons (coupon_amount VARCHAR, coupon_id VARCHAR); CREATE TABLE customers (coupon_id VARCHAR, good_or_bad_customer VARCHAR)"}, {"answer": "SELECT payment_date FROM payments WHERE amount_paid > 300 OR payment_type_code = 'Check'", "question": "What are the payment date of the payment with amount paid higher than 300 or with payment type is 'Check'", "context": "CREATE TABLE payments (payment_date VARCHAR, amount_paid VARCHAR, payment_type_code VARCHAR)"}, {"answer": "SELECT product_name, product_description FROM products_for_hire WHERE product_type_code = 'Cutlery' AND daily_hire_cost < 20", "question": "What are the names and descriptions of the products that are of 'Cutlery' type and have daily hire cost lower than 20?", "context": "CREATE TABLE products_for_hire (product_name VARCHAR, product_description VARCHAR, product_type_code VARCHAR, daily_hire_cost VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM phone", "question": "How many phones are there?", "context": "CREATE TABLE phone (Id VARCHAR)"}, {"answer": "SELECT Name FROM phone ORDER BY Price", "question": "List the names of phones in ascending order of price.", "context": "CREATE TABLE phone (Name VARCHAR, Price VARCHAR)"}, {"answer": "SELECT Memory_in_G, Carrier FROM phone", "question": "What are the memories and carriers of phones?", "context": "CREATE TABLE phone (Memory_in_G VARCHAR, Carrier VARCHAR)"}, {"answer": "SELECT DISTINCT Carrier FROM phone WHERE Memory_in_G > 32", "question": "List the distinct carriers of phones with memories bigger than 32.", "context": "CREATE TABLE phone (Carrier VARCHAR, Memory_in_G INTEGER)"}, {"answer": "SELECT Name FROM phone WHERE Carrier = \"Sprint\" OR Carrier = \"TMobile\"", "question": "Show the names of phones with carrier either \"Sprint\" or \"TMobile\".", "context": "CREATE TABLE phone (Name VARCHAR, Carrier VARCHAR)"}, {"answer": "SELECT Carrier FROM phone ORDER BY Price DESC LIMIT 1", "question": "What is the carrier of the most expensive phone?", "context": "CREATE TABLE phone (Carrier VARCHAR, Price VARCHAR)"}, {"answer": "SELECT Carrier, COUNT(*) FROM phone GROUP BY Carrier", "question": "Show different carriers of phones together with the number of phones with each carrier.", "context": "CREATE TABLE phone (Carrier VARCHAR)"}, {"answer": "SELECT Carrier FROM phone GROUP BY Carrier ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most frequently used carrier of the phones.", "context": "CREATE TABLE phone (Carrier VARCHAR)"}, {"answer": "SELECT Carrier FROM phone WHERE Memory_in_G < 32 INTERSECT SELECT Carrier FROM phone WHERE Memory_in_G > 64", "question": "Show the carriers that have both phones with memory smaller than 32 and phones with memory bigger than 64.", "context": "CREATE TABLE phone (Carrier VARCHAR, Memory_in_G INTEGER)"}, {"answer": "SELECT T3.Name, T2.District FROM phone_market AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID JOIN phone AS T3 ON T1.Phone_ID = T3.Phone_ID", "question": "Show the names of phones and the districts of markets they are on.", "context": "CREATE TABLE phone (Name VARCHAR, Phone_ID VARCHAR); CREATE TABLE market (District VARCHAR, Market_ID VARCHAR); CREATE TABLE phone_market (Market_ID VARCHAR, Phone_ID VARCHAR)"}, {"answer": "SELECT T3.Name, T2.District FROM phone_market AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID JOIN phone AS T3 ON T1.Phone_ID = T3.Phone_ID ORDER BY T2.Ranking", "question": "Show the names of phones and the districts of markets they are on, in ascending order of the ranking of the market.", "context": "CREATE TABLE market (District VARCHAR, Market_ID VARCHAR, Ranking VARCHAR); CREATE TABLE phone (Name VARCHAR, Phone_ID VARCHAR); CREATE TABLE phone_market (Market_ID VARCHAR, Phone_ID VARCHAR)"}, {"answer": "SELECT T3.Name FROM phone_market AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID JOIN phone AS T3 ON T1.Phone_ID = T3.Phone_ID WHERE T2.Num_of_shops > 50", "question": "Show the names of phones that are on market with number of shops greater than 50.", "context": "CREATE TABLE market (Market_ID VARCHAR, Num_of_shops INTEGER); CREATE TABLE phone (Name VARCHAR, Phone_ID VARCHAR); CREATE TABLE phone_market (Market_ID VARCHAR, Phone_ID VARCHAR)"}, {"answer": "SELECT T2.Name, SUM(T1.Num_of_stock) FROM phone_market AS T1 JOIN phone AS T2 ON T1.Phone_ID = T2.Phone_ID GROUP BY T2.Name", "question": "For each phone, show its names and total number of stocks.", "context": "CREATE TABLE phone_market (Num_of_stock INTEGER, Phone_ID VARCHAR); CREATE TABLE phone (Name VARCHAR, Phone_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM phone_market AS T1 JOIN phone AS T2 ON T1.Phone_ID = T2.Phone_ID GROUP BY T2.Name HAVING SUM(T1.Num_of_stock) >= 2000 ORDER BY SUM(T1.Num_of_stock) DESC", "question": "Show the names of phones that have total number of stocks bigger than 2000, in descending order of the total number of stocks.", "context": "CREATE TABLE phone_market (Phone_ID VARCHAR, Num_of_stock INTEGER); CREATE TABLE phone (Name VARCHAR, Phone_ID VARCHAR)"}, {"answer": "SELECT Name FROM phone WHERE NOT Phone_id IN (SELECT Phone_ID FROM phone_market)", "question": "List the names of phones that are not on any market.", "context": "CREATE TABLE phone (Name VARCHAR, Phone_id VARCHAR, Phone_ID VARCHAR); CREATE TABLE phone_market (Name VARCHAR, Phone_id VARCHAR, Phone_ID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM company", "question": "How many gas companies are there?", "context": "CREATE TABLE company (Id VARCHAR)"}, {"answer": "SELECT company, rank FROM company ORDER BY Sales_billion DESC", "question": "List the company name and rank for all companies in the decreasing order of their sales.", "context": "CREATE TABLE company (company VARCHAR, rank VARCHAR, Sales_billion VARCHAR)"}, {"answer": "SELECT company, main_industry FROM company WHERE headquarters <> 'USA'", "question": "Show the company name and the main industry for all companies whose headquarters are not from USA.", "context": "CREATE TABLE company (company VARCHAR, main_industry VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT company, headquarters FROM company ORDER BY market_value DESC", "question": "Show all company names and headquarters in the descending order of market value.", "context": "CREATE TABLE company (company VARCHAR, headquarters VARCHAR, market_value VARCHAR)"}, {"answer": "SELECT MIN(market_value), MAX(market_value), AVG(market_value) FROM company", "question": "Show minimum, maximum, and average market value for all companies.", "context": "CREATE TABLE company (market_value INTEGER)"}, {"answer": "SELECT DISTINCT main_industry FROM company", "question": "Show all main industry for all companies.", "context": "CREATE TABLE company (main_industry VARCHAR)"}, {"answer": "SELECT headquarters, COUNT(*) FROM company GROUP BY headquarters", "question": "List all headquarters and the number of companies in each headquarter.", "context": "CREATE TABLE company (headquarters VARCHAR)"}, {"answer": "SELECT main_industry, SUM(market_value) FROM company GROUP BY main_industry", "question": "Show all main industry and total market value in each industry.", "context": "CREATE TABLE company (main_industry VARCHAR, market_value INTEGER)"}, {"answer": "SELECT main_industry, COUNT(*) FROM company GROUP BY main_industry ORDER BY SUM(market_value) DESC LIMIT 1", "question": "List the main industry with highest total market value and its number of companies.", "context": "CREATE TABLE company (main_industry VARCHAR, market_value INTEGER)"}, {"answer": "SELECT headquarters FROM company WHERE main_industry = 'Banking' GROUP BY headquarters HAVING COUNT(*) >= 2", "question": "Show headquarters with at least two companies in the banking industry.", "context": "CREATE TABLE company (headquarters VARCHAR, main_industry VARCHAR)"}, {"answer": "SELECT station_id, LOCATION, manager_name FROM gas_station ORDER BY open_year", "question": "Show gas station id, location, and manager_name for all gas stations ordered by open year.", "context": "CREATE TABLE gas_station (station_id VARCHAR, LOCATION VARCHAR, manager_name VARCHAR, open_year VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM gas_station WHERE open_year BETWEEN 2000 AND 2005", "question": "How many gas station are opened between 2000 and 2005?", "context": "CREATE TABLE gas_station (open_year INTEGER)"}, {"answer": "SELECT LOCATION, COUNT(*) FROM gas_station GROUP BY LOCATION ORDER BY COUNT(*)", "question": "Show all locations and the number of gas stations in each location ordered by the count.", "context": "CREATE TABLE gas_station (LOCATION VARCHAR)"}, {"answer": "SELECT headquarters FROM company WHERE main_industry = 'Banking' INTERSECT SELECT headquarters FROM company WHERE main_industry = 'Oil and gas'", "question": "Show all headquarters with both a company in banking industry and a company in Oil and gas.", "context": "CREATE TABLE company (headquarters VARCHAR, main_industry VARCHAR)"}, {"answer": "SELECT headquarters FROM company EXCEPT SELECT headquarters FROM company WHERE main_industry = 'Banking'", "question": "Show all headquarters without a company in banking industry.", "context": "CREATE TABLE company (headquarters VARCHAR, main_industry VARCHAR)"}, {"answer": "SELECT T2.company, COUNT(*) FROM station_company AS T1 JOIN company AS T2 ON T1.company_id = T2.company_id GROUP BY T1.company_id", "question": "Show the company name with the number of gas station.", "context": "CREATE TABLE station_company (company_id VARCHAR); CREATE TABLE company (company VARCHAR, company_id VARCHAR)"}, {"answer": "SELECT company, main_industry FROM company WHERE NOT company_id IN (SELECT company_id FROM station_company)", "question": "Show company name and main industry without a gas station.", "context": "CREATE TABLE station_company (company VARCHAR, main_industry VARCHAR, company_id VARCHAR); CREATE TABLE company (company VARCHAR, main_industry VARCHAR, company_id VARCHAR)"}, {"answer": "SELECT T3.manager_name FROM station_company AS T1 JOIN company AS T2 ON T1.company_id = T2.company_id JOIN gas_station AS T3 ON T1.station_id = T3.station_id WHERE T2.company = 'ExxonMobil'", "question": "Show the manager name for gas stations belonging to the ExxonMobil company.", "context": "CREATE TABLE gas_station (manager_name VARCHAR, station_id VARCHAR); CREATE TABLE station_company (company_id VARCHAR, station_id VARCHAR); CREATE TABLE company (company_id VARCHAR, company VARCHAR)"}, {"answer": "SELECT T3.location FROM station_company AS T1 JOIN company AS T2 ON T1.company_id = T2.company_id JOIN gas_station AS T3 ON T1.station_id = T3.station_id WHERE T2.market_value > 100", "question": "Show all locations where a gas station for company with market value greater than 100 is located.", "context": "CREATE TABLE gas_station (location VARCHAR, station_id VARCHAR); CREATE TABLE company (company_id VARCHAR, market_value INTEGER); CREATE TABLE station_company (company_id VARCHAR, station_id VARCHAR)"}, {"answer": "SELECT manager_name FROM gas_station WHERE open_year > 2000 GROUP BY manager_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the manager name with most number of gas stations opened after 2000.", "context": "CREATE TABLE gas_station (manager_name VARCHAR, open_year INTEGER)"}, {"answer": "SELECT LOCATION FROM gas_station ORDER BY open_year", "question": "order all gas station locations by the opening year.", "context": "CREATE TABLE gas_station (LOCATION VARCHAR, open_year VARCHAR)"}, {"answer": "SELECT rank, company, market_value FROM company WHERE main_industry = 'Banking' ORDER BY sales_billion, profits_billion", "question": "find the rank, company names, market values of the companies in the banking industry order by their sales and profits in billion.", "context": "CREATE TABLE company (rank VARCHAR, company VARCHAR, market_value VARCHAR, main_industry VARCHAR, sales_billion VARCHAR, profits_billion VARCHAR)"}, {"answer": "SELECT T3.location, T3.Representative_Name FROM station_company AS T1 JOIN company AS T2 ON T1.company_id = T2.company_id JOIN gas_station AS T3 ON T1.station_id = T3.station_id ORDER BY T2.Assets_billion DESC LIMIT 3", "question": "find the location and Representative name of the gas stations owned by the companies with top 3 Asset amounts.", "context": "CREATE TABLE gas_station (location VARCHAR, Representative_Name VARCHAR, station_id VARCHAR); CREATE TABLE station_company (company_id VARCHAR, station_id VARCHAR); CREATE TABLE company (company_id VARCHAR, Assets_billion VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM region", "question": "How many regions do we have?", "context": "CREATE TABLE region (Id VARCHAR)"}, {"answer": "SELECT DISTINCT region_name FROM region ORDER BY Label", "question": "Show all distinct region names ordered by their labels.", "context": "CREATE TABLE region (region_name VARCHAR, Label VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT party_name) FROM party", "question": "How many parties do we have?", "context": "CREATE TABLE party (party_name VARCHAR)"}, {"answer": "SELECT minister, took_office, left_office FROM party ORDER BY left_office", "question": "Show the ministers and the time they took and left office, listed by the time they left office.", "context": "CREATE TABLE party (minister VARCHAR, took_office VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT minister FROM party WHERE took_office > 1961 OR took_office < 1959", "question": "Show the minister who took office after 1961 or before 1959.", "context": "CREATE TABLE party (minister VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT minister FROM party WHERE party_name <> 'Progress Party'", "question": "Show all ministers who do not belong to Progress Party.", "context": "CREATE TABLE party (minister VARCHAR, party_name VARCHAR)"}, {"answer": "SELECT minister, party_name FROM party ORDER BY took_office DESC", "question": "Show all ministers and parties they belong to in descending order of the time they took office.", "context": "CREATE TABLE party (minister VARCHAR, party_name VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT minister FROM party ORDER BY left_office DESC LIMIT 1", "question": "Return the minister who left office at the latest time.", "context": "CREATE TABLE party (minister VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT T1.member_name, T2.party_name FROM Member AS T1 JOIN party AS T2 ON T1.party_id = T2.party_id", "question": "List member names and their party names.", "context": "CREATE TABLE party (party_name VARCHAR, party_id VARCHAR); CREATE TABLE Member (member_name VARCHAR, party_id VARCHAR)"}, {"answer": "SELECT T2.party_name, COUNT(*) FROM Member AS T1 JOIN party AS T2 ON T1.party_id = T2.party_id GROUP BY T1.party_id", "question": "Show all party names and the number of members in each party.", "context": "CREATE TABLE party (party_name VARCHAR, party_id VARCHAR); CREATE TABLE Member (party_id VARCHAR)"}, {"answer": "SELECT T2.party_name FROM Member AS T1 JOIN party AS T2 ON T1.party_id = T2.party_id GROUP BY T1.party_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of party with most number of members?", "context": "CREATE TABLE party (party_name VARCHAR, party_id VARCHAR); CREATE TABLE Member (party_id VARCHAR)"}, {"answer": "SELECT T1.party_name, T2.region_name FROM party AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id", "question": "Show all party names and their region names.", "context": "CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE party (party_name VARCHAR, region_id VARCHAR)"}, {"answer": "SELECT party_name FROM party WHERE NOT party_id IN (SELECT party_id FROM Member)", "question": "Show names of parties that does not have any members.", "context": "CREATE TABLE party (party_name VARCHAR, party_id VARCHAR); CREATE TABLE Member (party_name VARCHAR, party_id VARCHAR)"}, {"answer": "SELECT member_name FROM member WHERE party_id = 3 INTERSECT SELECT member_name FROM member WHERE party_id = 1", "question": "Show the member names which are in both the party with id 3 and the party with id 1.", "context": "CREATE TABLE member (member_name VARCHAR, party_id VARCHAR)"}, {"answer": "SELECT T1.member_name FROM Member AS T1 JOIN party AS T2 ON T1.party_id = T2.party_id WHERE T2.Party_name <> \"Progress Party\"", "question": "Show member names that are not in the Progress Party.", "context": "CREATE TABLE party (party_id VARCHAR, Party_name VARCHAR); CREATE TABLE Member (member_name VARCHAR, party_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM party_events", "question": "How many party events do we have?", "context": "CREATE TABLE party_events (Id VARCHAR)"}, {"answer": "SELECT T2.party_name, COUNT(*) FROM party_events AS T1 JOIN party AS T2 ON T1.party_id = T2.party_id GROUP BY T1.party_id", "question": "Show party names and the number of events for each party.", "context": "CREATE TABLE party (party_name VARCHAR, party_id VARCHAR); CREATE TABLE party_events (party_id VARCHAR)"}, {"answer": "SELECT member_name FROM member EXCEPT SELECT T1.member_name FROM member AS T1 JOIN party_events AS T2 ON T1.member_id = T2.member_in_charge_id", "question": "Show all member names who are not in charge of any event.", "context": "CREATE TABLE member (member_name VARCHAR); CREATE TABLE party_events (member_in_charge_id VARCHAR); CREATE TABLE member (member_name VARCHAR, member_id VARCHAR)"}, {"answer": "SELECT T2.party_name FROM party_events AS T1 JOIN party AS T2 ON T1.party_id = T2.party_id GROUP BY T1.party_id HAVING COUNT(*) >= 2", "question": "What are the names of parties with at least 2 events?", "context": "CREATE TABLE party (party_name VARCHAR, party_id VARCHAR); CREATE TABLE party_events (party_id VARCHAR)"}, {"answer": "SELECT T1.member_name FROM member AS T1 JOIN party_events AS T2 ON T1.member_id = T2.member_in_charge_id GROUP BY T2.member_in_charge_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of member in charge of greatest number of events?", "context": "CREATE TABLE party_events (member_in_charge_id VARCHAR); CREATE TABLE member (member_name VARCHAR, member_id VARCHAR)"}, {"answer": "SELECT event_name FROM party_events GROUP BY event_name HAVING COUNT(*) > 2", "question": "find the event names that have more than 2 records.", "context": "CREATE TABLE party_events (event_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM region AS t1 JOIN party AS t2 ON t1.region_id = t2.region_id JOIN party_events AS t3 ON t2.party_id = t3.party_id WHERE t1.region_name = \"United Kingdom\" AND t3.Event_Name = \"Annaual Meeting\"", "question": "How many Annual Meeting events happened in the United Kingdom region?", "context": "CREATE TABLE party_events (party_id VARCHAR, Event_Name VARCHAR); CREATE TABLE region (region_id VARCHAR, region_name VARCHAR); CREATE TABLE party (region_id VARCHAR, party_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM pilot", "question": "How many pilots are there?", "context": "CREATE TABLE pilot (Id VARCHAR)"}, {"answer": "SELECT Pilot_name FROM pilot ORDER BY Rank", "question": "List the names of pilots in ascending order of rank.", "context": "CREATE TABLE pilot (Pilot_name VARCHAR, Rank VARCHAR)"}, {"answer": "SELECT POSITION, Team FROM pilot", "question": "What are the positions and teams of pilots?", "context": "CREATE TABLE pilot (POSITION VARCHAR, Team VARCHAR)"}, {"answer": "SELECT DISTINCT POSITION FROM pilot WHERE Age > 30", "question": "List the distinct positions of pilots older than 30.", "context": "CREATE TABLE pilot (POSITION VARCHAR, Age INTEGER)"}, {"answer": "SELECT Pilot_name FROM pilot WHERE Team = \"Bradley\" OR Team = \"Fordham\"", "question": "Show the names of pilots from team \"Bradley\" or \"Fordham\".", "context": "CREATE TABLE pilot (Pilot_name VARCHAR, Team VARCHAR)"}, {"answer": "SELECT Join_Year FROM pilot ORDER BY Rank LIMIT 1", "question": "What is the joined year of the pilot of the highest rank?", "context": "CREATE TABLE pilot (Join_Year VARCHAR, Rank VARCHAR)"}, {"answer": "SELECT Nationality, COUNT(*) FROM pilot GROUP BY Nationality", "question": "What are the different nationalities of pilots? Show each nationality and the number of pilots of each nationality.", "context": "CREATE TABLE pilot (Nationality VARCHAR)"}, {"answer": "SELECT Nationality FROM pilot GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most common nationality of pilots.", "context": "CREATE TABLE pilot (Nationality VARCHAR)"}, {"answer": "SELECT POSITION FROM pilot WHERE Join_Year < 2000 INTERSECT SELECT POSITION FROM pilot WHERE Join_Year > 2005", "question": "Show the pilot positions that have both pilots joining after year 2005 and pilots joining before 2000.", "context": "CREATE TABLE pilot (POSITION VARCHAR, Join_Year INTEGER)"}, {"answer": "SELECT T3.Pilot_name, T2.Model FROM pilot_record AS T1 JOIN aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN pilot AS T3 ON T1.Pilot_ID = T3.Pilot_ID", "question": "Show the names of pilots and models of aircrafts they have flied with.", "context": "CREATE TABLE pilot_record (Aircraft_ID VARCHAR, Pilot_ID VARCHAR); CREATE TABLE pilot (Pilot_name VARCHAR, Pilot_ID VARCHAR); CREATE TABLE aircraft (Model VARCHAR, Aircraft_ID VARCHAR)"}, {"answer": "SELECT T3.Pilot_name, T2.Fleet_Series FROM pilot_record AS T1 JOIN aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN pilot AS T3 ON T1.Pilot_ID = T3.Pilot_ID ORDER BY T3.Rank", "question": "Show the names of pilots and fleet series of the aircrafts they have flied with in ascending order of the rank of the pilot.", "context": "CREATE TABLE pilot (Pilot_name VARCHAR, Pilot_ID VARCHAR, Rank VARCHAR); CREATE TABLE pilot_record (Aircraft_ID VARCHAR, Pilot_ID VARCHAR); CREATE TABLE aircraft (Fleet_Series VARCHAR, Aircraft_ID VARCHAR)"}, {"answer": "SELECT T2.Fleet_Series FROM pilot_record AS T1 JOIN aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN pilot AS T3 ON T1.Pilot_ID = T3.Pilot_ID WHERE T3.Age < 34", "question": "Show the fleet series of the aircrafts flied by pilots younger than 34", "context": "CREATE TABLE pilot_record (Aircraft_ID VARCHAR, Pilot_ID VARCHAR); CREATE TABLE pilot (Pilot_ID VARCHAR, Age INTEGER); CREATE TABLE aircraft (Fleet_Series VARCHAR, Aircraft_ID VARCHAR)"}, {"answer": "SELECT T2.Pilot_name, COUNT(*) FROM pilot_record AS T1 JOIN pilot AS T2 ON T1.pilot_ID = T2.pilot_ID GROUP BY T2.Pilot_name", "question": "Show the names of pilots and the number of records they have.", "context": "CREATE TABLE pilot (Pilot_name VARCHAR, pilot_ID VARCHAR); CREATE TABLE pilot_record (pilot_ID VARCHAR)"}, {"answer": "SELECT T2.Pilot_name, COUNT(*) FROM pilot_record AS T1 JOIN pilot AS T2 ON T1.pilot_ID = T2.pilot_ID GROUP BY T2.Pilot_name HAVING COUNT(*) > 1", "question": "Show names of pilots that have more than one record.", "context": "CREATE TABLE pilot (Pilot_name VARCHAR, pilot_ID VARCHAR); CREATE TABLE pilot_record (pilot_ID VARCHAR)"}, {"answer": "SELECT Pilot_name FROM pilot WHERE NOT Pilot_ID IN (SELECT Pilot_ID FROM pilot_record)", "question": "List the names of pilots that do not have any record.", "context": "CREATE TABLE pilot_record (Pilot_name VARCHAR, Pilot_ID VARCHAR); CREATE TABLE pilot (Pilot_name VARCHAR, Pilot_ID VARCHAR)"}, {"answer": "SELECT document_status_code FROM Ref_Document_Status", "question": "What document status codes do we have?", "context": "CREATE TABLE Ref_Document_Status (document_status_code VARCHAR)"}, {"answer": "SELECT document_status_description FROM Ref_Document_Status WHERE document_status_code = \"working\"", "question": "What is the description of document status code 'working'?", "context": "CREATE TABLE Ref_Document_Status (document_status_description VARCHAR, document_status_code VARCHAR)"}, {"answer": "SELECT document_type_code FROM Ref_Document_Types", "question": "What document type codes do we have?", "context": "CREATE TABLE Ref_Document_Types (document_type_code VARCHAR)"}, {"answer": "SELECT document_type_description FROM Ref_Document_Types WHERE document_type_code = \"Paper\"", "question": "What is the description of document type 'Paper'?", "context": "CREATE TABLE Ref_Document_Types (document_type_description VARCHAR, document_type_code VARCHAR)"}, {"answer": "SELECT shipping_agent_name FROM Ref_Shipping_Agents", "question": "What are the shipping agent names?", "context": "CREATE TABLE Ref_Shipping_Agents (shipping_agent_name VARCHAR)"}, {"answer": "SELECT shipping_agent_code FROM Ref_Shipping_Agents WHERE shipping_agent_name = \"UPS\"", "question": "What is the shipping agent code of shipping agent UPS?", "context": "CREATE TABLE Ref_Shipping_Agents (shipping_agent_code VARCHAR, shipping_agent_name VARCHAR)"}, {"answer": "SELECT role_code FROM ROLES", "question": "What are all role codes?", "context": "CREATE TABLE ROLES (role_code VARCHAR)"}, {"answer": "SELECT role_description FROM ROLES WHERE role_code = \"ED\"", "question": "What is the description of role code ED?", "context": "CREATE TABLE ROLES (role_description VARCHAR, role_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Employees", "question": "How many employees do we have?", "context": "CREATE TABLE Employees (Id VARCHAR)"}, {"answer": "SELECT T1.role_description FROM ROLES AS T1 JOIN Employees AS T2 ON T1.role_code = T2.role_code WHERE T2.employee_name = \"Koby\"", "question": "What is the role of the employee named Koby?", "context": "CREATE TABLE ROLES (role_description VARCHAR, role_code VARCHAR); CREATE TABLE Employees (role_code VARCHAR, employee_name VARCHAR)"}, {"answer": "SELECT document_id, receipt_date FROM Documents", "question": "List all document ids and receipt dates of documents.", "context": "CREATE TABLE Documents (document_id VARCHAR, receipt_date VARCHAR)"}, {"answer": "SELECT T1.role_description, T2.role_code, COUNT(*) FROM ROLES AS T1 JOIN Employees AS T2 ON T1.role_code = T2.role_code GROUP BY T2.role_code", "question": "How many employees does each role have? List role description, id and number of employees.", "context": "CREATE TABLE ROLES (role_description VARCHAR, role_code VARCHAR); CREATE TABLE Employees (role_code VARCHAR)"}, {"answer": "SELECT Roles.role_description, COUNT(Employees.employee_id) FROM ROLES JOIN Employees ON Employees.role_code = Roles.role_code GROUP BY Employees.role_code HAVING COUNT(Employees.employee_id) > 1", "question": "List roles that have more than one employee. List the role description and number of employees.", "context": "CREATE TABLE ROLES (Id VARCHAR); CREATE TABLE Employees (Id VARCHAR)"}, {"answer": "SELECT Ref_Document_Status.document_status_description FROM Ref_Document_Status JOIN Documents ON Documents.document_status_code = Ref_Document_Status.document_status_code WHERE Documents.document_id = 1", "question": "What is the document status description of the document with id 1?", "context": "CREATE TABLE Documents (Id VARCHAR); CREATE TABLE Ref_Document_Status (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Documents WHERE document_status_code = \"done\"", "question": "How many documents have the status code done?", "context": "CREATE TABLE Documents (document_status_code VARCHAR)"}, {"answer": "SELECT document_type_code FROM Documents WHERE document_id = 2", "question": "List the document type code for the document with the id 2.", "context": "CREATE TABLE Documents (document_type_code VARCHAR, document_id VARCHAR)"}, {"answer": "SELECT document_id FROM Documents WHERE document_status_code = \"done\" AND document_type_code = \"Paper\"", "question": "List the document ids for any documents with the status code done and the type code paper.", "context": "CREATE TABLE Documents (document_id VARCHAR, document_status_code VARCHAR, document_type_code VARCHAR)"}, {"answer": "SELECT Ref_Shipping_Agents.shipping_agent_name FROM Ref_Shipping_Agents JOIN Documents ON Documents.shipping_agent_code = Ref_Shipping_Agents.shipping_agent_code WHERE Documents.document_id = 2", "question": "What is the name of the shipping agent of the document with id 2?", "context": "CREATE TABLE Documents (Id VARCHAR); CREATE TABLE Ref_Shipping_Agents (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Ref_Shipping_Agents JOIN Documents ON Documents.shipping_agent_code = Ref_Shipping_Agents.shipping_agent_code WHERE Ref_Shipping_Agents.shipping_agent_name = \"USPS\"", "question": "How many documents were shipped by USPS?", "context": "CREATE TABLE Documents (Id VARCHAR); CREATE TABLE Ref_Shipping_Agents (Id VARCHAR)"}, {"answer": "SELECT Ref_Shipping_Agents.shipping_agent_name, COUNT(Documents.document_id) FROM Ref_Shipping_Agents JOIN Documents ON Documents.shipping_agent_code = Ref_Shipping_Agents.shipping_agent_code GROUP BY Ref_Shipping_Agents.shipping_agent_code ORDER BY COUNT(Documents.document_id) DESC LIMIT 1", "question": "Which shipping agent shipped the most documents? List the shipping agent name and the number of documents.", "context": "CREATE TABLE Documents (Id VARCHAR); CREATE TABLE Ref_Shipping_Agents (Id VARCHAR)"}, {"answer": "SELECT receipt_date FROM Documents WHERE document_id = 3", "question": "What is the receipt date of the document with id 3?", "context": "CREATE TABLE Documents (receipt_date VARCHAR, document_id VARCHAR)"}, {"answer": "SELECT Addresses.address_details FROM Addresses JOIN Documents_Mailed ON Documents_Mailed.mailed_to_address_id = Addresses.address_id WHERE document_id = 4", "question": "What address was the document with id 4 mailed to?", "context": "CREATE TABLE Addresses (document_id VARCHAR); CREATE TABLE Documents_Mailed (document_id VARCHAR)"}, {"answer": "SELECT mailing_date FROM Documents_Mailed WHERE document_id = 7", "question": "What is the mail date of the document with id 7?", "context": "CREATE TABLE Documents_Mailed (mailing_date VARCHAR, document_id VARCHAR)"}, {"answer": "SELECT document_id FROM Documents WHERE document_status_code = \"done\" AND document_type_code = \"Paper\" EXCEPT SELECT document_id FROM Documents JOIN Ref_Shipping_Agents ON Documents.shipping_agent_code = Ref_Shipping_Agents.shipping_agent_code WHERE Ref_Shipping_Agents.shipping_agent_name = \"USPS\"", "question": "List the document ids of documents with the status done and type Paper, which not shipped by the shipping agent named USPS.", "context": "CREATE TABLE Ref_Shipping_Agents (document_id VARCHAR, document_status_code VARCHAR, document_type_code VARCHAR); CREATE TABLE Documents (document_id VARCHAR, document_status_code VARCHAR, document_type_code VARCHAR)"}, {"answer": "SELECT document_id FROM Documents WHERE document_status_code = \"done\" AND document_type_code = \"Paper\" INTERSECT SELECT document_id FROM Documents JOIN Ref_Shipping_Agents ON Documents.shipping_agent_code = Ref_Shipping_Agents.shipping_agent_code WHERE Ref_Shipping_Agents.shipping_agent_name = \"USPS\"", "question": "List document id of documents status is done and document type is Paper and the document is shipped by shipping agent named USPS.", "context": "CREATE TABLE Ref_Shipping_Agents (document_id VARCHAR, document_status_code VARCHAR, document_type_code VARCHAR); CREATE TABLE Documents (document_id VARCHAR, document_status_code VARCHAR, document_type_code VARCHAR)"}, {"answer": "SELECT draft_details FROM Document_Drafts WHERE document_id = 7", "question": "What is draft detail of the document with id 7?", "context": "CREATE TABLE Document_Drafts (draft_details VARCHAR, document_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Draft_Copies WHERE document_id = 2", "question": "How many draft copies does the document with id 2 have?", "context": "CREATE TABLE Draft_Copies (document_id VARCHAR)"}, {"answer": "SELECT document_id, COUNT(copy_number) FROM Draft_Copies GROUP BY document_id ORDER BY COUNT(copy_number) DESC LIMIT 1", "question": "Which document has the most draft copies? List its document id and number of draft copies.", "context": "CREATE TABLE Draft_Copies (document_id VARCHAR, copy_number VARCHAR)"}, {"answer": "SELECT document_id, COUNT(*) FROM Draft_Copies GROUP BY document_id HAVING COUNT(*) > 1", "question": "Which documents have more than 1 draft copies? List document id and number of draft copies.", "context": "CREATE TABLE Draft_Copies (document_id VARCHAR)"}, {"answer": "SELECT Employees.employee_name FROM Employees JOIN Circulation_History ON Circulation_History.employee_id = Employees.employee_id WHERE Circulation_History.document_id = 1", "question": "List all employees in the circulation history of the document with id 1. List the employee's name.", "context": "CREATE TABLE Circulation_History (Id VARCHAR); CREATE TABLE Employees (Id VARCHAR)"}, {"answer": "SELECT employee_name FROM Employees EXCEPT SELECT Employees.employee_name FROM Employees JOIN Circulation_History ON Circulation_History.employee_id = Employees.employee_id", "question": "List the employees who have not showed up in any circulation history of documents. List the employee's name.", "context": "CREATE TABLE Circulation_History (employee_name VARCHAR); CREATE TABLE Employees (employee_name VARCHAR)"}, {"answer": "SELECT Employees.employee_name, COUNT(*) FROM Employees JOIN Circulation_History ON Circulation_History.employee_id = Employees.employee_id GROUP BY Circulation_History.document_id, Circulation_History.draft_number, Circulation_History.copy_number ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which employee has showed up in most circulation history documents. List the employee's name and the number of drafts and copies.", "context": "CREATE TABLE Circulation_History (Id VARCHAR); CREATE TABLE Employees (Id VARCHAR)"}, {"answer": "SELECT document_id, COUNT(DISTINCT employee_id) FROM Circulation_History GROUP BY document_id", "question": "For each document, list the number of employees who have showed up in the circulation history of that document. List the document ids and number of employees.", "context": "CREATE TABLE Circulation_History (document_id VARCHAR, employee_id VARCHAR)"}, {"answer": "SELECT dname FROM department ORDER BY mgr_start_date", "question": "List all department names ordered by their starting date.", "context": "CREATE TABLE department (dname VARCHAR, mgr_start_date VARCHAR)"}, {"answer": "SELECT Dependent_name FROM dependent WHERE relationship = 'Spouse'", "question": "find all dependent names who have a spouse relation with some employee.", "context": "CREATE TABLE dependent (Dependent_name VARCHAR, relationship VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM dependent WHERE sex = 'F'", "question": "how many female dependents are there?", "context": "CREATE TABLE dependent (sex VARCHAR)"}, {"answer": "SELECT t1.dname FROM department AS t1 JOIN dept_locations AS t2 ON t1.dnumber = t2.dnumber WHERE t2.dlocation = 'Houston'", "question": "Find the names of departments that are located in Houston.", "context": "CREATE TABLE dept_locations (dnumber VARCHAR, dlocation VARCHAR); CREATE TABLE department (dname VARCHAR, dnumber VARCHAR)"}, {"answer": "SELECT fname, lname FROM employee WHERE salary > 30000", "question": "Return the first names and last names of employees who earn more than 30000 in salary.", "context": "CREATE TABLE employee (fname VARCHAR, lname VARCHAR, salary INTEGER)"}, {"answer": "SELECT COUNT(*), sex FROM employee WHERE salary < 50000 GROUP BY sex", "question": "Find the number of employees of each gender whose salary is lower than 50000.", "context": "CREATE TABLE employee (sex VARCHAR, salary INTEGER)"}, {"answer": "SELECT fname, lname, address FROM employee ORDER BY Bdate", "question": "list the first and last names, and the addresses of all employees in the ascending order of their birth date.", "context": "CREATE TABLE employee (fname VARCHAR, lname VARCHAR, address VARCHAR, Bdate 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'", "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_id, T1.event_details FROM EVENTS AS T1 JOIN Participants_in_Events AS T2 ON T1.Event_ID = T2.Event_ID GROUP BY T1.Event_ID HAVING COUNT(*) > 1", "question": "What are the ids and details of events that have more than one participants?", "context": "CREATE TABLE EVENTS (event_id VARCHAR, event_details VARCHAR, Event_ID VARCHAR); CREATE TABLE Participants_in_Events (Event_ID VARCHAR)"}, {"answer": "SELECT T1.Participant_ID, T1.Participant_Type_Code, COUNT(*) FROM Participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID GROUP BY T1.Participant_ID", "question": "How many events have each participants attended? List the participant id, type and the number.", "context": "CREATE TABLE Participants (Participant_ID VARCHAR, Participant_Type_Code VARCHAR); CREATE TABLE Participants_in_Events (Participant_ID VARCHAR)"}, {"answer": "SELECT Participant_ID, Participant_Type_Code, Participant_Details FROM Participants", "question": "What are all the the participant ids, type code and details?", "context": "CREATE TABLE Participants (Participant_ID VARCHAR, Participant_Type_Code VARCHAR, Participant_Details VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM participants WHERE participant_type_code = 'Organizer'", "question": "How many participants belong to the type 'Organizer'?", "context": "CREATE TABLE participants (participant_type_code VARCHAR)"}, {"answer": "SELECT service_type_code FROM services ORDER BY service_type_code", "question": "List the type of the services in alphabetical order.", "context": "CREATE TABLE services (service_type_code VARCHAR)"}, {"answer": "SELECT service_id, event_details FROM EVENTS", "question": "List the service id and details for the events.", "context": "CREATE TABLE EVENTS (service_id VARCHAR, event_details VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID WHERE T1.participant_details LIKE '%Dr.%'", "question": "How many events had participants whose details had the substring 'Dr.'", "context": "CREATE TABLE participants (Participant_ID VARCHAR, participant_details VARCHAR); CREATE TABLE Participants_in_Events (Participant_ID VARCHAR)"}, {"answer": "SELECT participant_type_code FROM participants GROUP BY participant_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most common participant type?", "context": "CREATE TABLE participants (participant_type_code VARCHAR)"}, {"answer": "SELECT T3.service_id, T4.Service_Type_Code FROM participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID JOIN EVENTS AS T3 ON T2.Event_ID = T3.Event_ID JOIN services AS T4 ON T3.service_id = T4.service_id GROUP BY T3.service_id ORDER BY COUNT(*) LIMIT 1", "question": "Which service id and type has the least number of participants?", "context": "CREATE TABLE Participants_in_Events (Participant_ID VARCHAR, Event_ID VARCHAR); CREATE TABLE services (Service_Type_Code VARCHAR, service_id VARCHAR); CREATE TABLE EVENTS (service_id VARCHAR, Event_ID VARCHAR); CREATE TABLE participants (Participant_ID VARCHAR)"}, {"answer": "SELECT Event_ID FROM Participants_in_Events GROUP BY Event_ID ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the id of the event with the most participants?", "context": "CREATE TABLE Participants_in_Events (Event_ID VARCHAR)"}, {"answer": "SELECT event_id FROM EVENTS EXCEPT SELECT T1.event_id FROM Participants_in_Events AS T1 JOIN Participants AS T2 ON T1.Participant_ID = T2.Participant_ID WHERE Participant_Details = 'Kenyatta Kuhn'", "question": "Which events id does not have any participant with detail 'Kenyatta Kuhn'?", "context": "CREATE TABLE Participants (Participant_ID VARCHAR); CREATE TABLE EVENTS (event_id VARCHAR, Participant_Details VARCHAR); CREATE TABLE Participants_in_Events (event_id VARCHAR, Participant_ID VARCHAR)"}, {"answer": "SELECT T1.service_type_code FROM services AS T1 JOIN EVENTS AS T2 ON T1.service_id = T2.service_id WHERE T2.event_details = 'Success' INTERSECT SELECT T1.service_type_code FROM services AS T1 JOIN EVENTS AS T2 ON T1.service_id = T2.service_id WHERE T2.event_details = 'Fail'", "question": "Which services type had both successful and failure event details?", "context": "CREATE TABLE EVENTS (service_id VARCHAR, event_details VARCHAR); CREATE TABLE services (service_type_code VARCHAR, service_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM EVENTS WHERE NOT event_id IN (SELECT event_id FROM Participants_in_Events)", "question": "How many events did not have any participants?", "context": "CREATE TABLE EVENTS (event_id VARCHAR); CREATE TABLE Participants_in_Events (event_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT participant_id) FROM participants_in_Events", "question": "What are all the distinct participant ids who attended any events?", "context": "CREATE TABLE participants_in_Events (participant_id VARCHAR)"}, {"answer": "SELECT name FROM races ORDER BY date DESC LIMIT 1", "question": "What is the name of the race held most recently?", "context": "CREATE TABLE races (name VARCHAR, date VARCHAR)"}, {"answer": "SELECT name, date FROM races ORDER BY date DESC LIMIT 1", "question": "What is the name and date of the most recent race?", "context": "CREATE TABLE races (name VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM races WHERE YEAR = 2017", "question": "Find the names of all races held in 2017.", "context": "CREATE TABLE races (name VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT DISTINCT name FROM races WHERE YEAR BETWEEN 2014 AND 2017", "question": "Find the distinct names of all races held between 2014 and 2017?", "context": "CREATE TABLE races (name VARCHAR, YEAR INTEGER)"}, {"answer": "SELECT DISTINCT T1.forename, T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE T2.milliseconds < 93000", "question": "List the forename and surname of all distinct drivers who once had laptime less than 93000 milliseconds?", "context": "CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR); CREATE TABLE laptimes (driverid VARCHAR, milliseconds INTEGER)"}, {"answer": "SELECT DISTINCT T1.driverid, T1.nationality FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE T2.milliseconds > 100000", "question": "Find all the distinct id and nationality of drivers who have had laptime more than 100000 milliseconds?", "context": "CREATE TABLE laptimes (driverid VARCHAR, milliseconds INTEGER); CREATE TABLE drivers (driverid VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT T1.forename, T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid ORDER BY T2.milliseconds LIMIT 1", "question": "What are the forename and surname of the driver who has the smallest laptime?", "context": "CREATE TABLE laptimes (driverid VARCHAR, milliseconds VARCHAR); CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR)"}, {"answer": "SELECT T1.driverid, T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid ORDER BY T2.milliseconds DESC LIMIT 1", "question": "What is the id and family name of the driver who has the longest laptime?", "context": "CREATE TABLE drivers (driverid VARCHAR, surname VARCHAR); CREATE TABLE laptimes (driverid VARCHAR, milliseconds VARCHAR)"}, {"answer": "SELECT T1.driverid, T1.forename, T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE POSITION = '1' GROUP BY T1.driverid HAVING COUNT(*) >= 2", "question": "What is the id, forname and surname of the driver who had the first position in terms of laptime at least twice?", "context": "CREATE TABLE drivers (driverid VARCHAR, forename VARCHAR, surname VARCHAR); CREATE TABLE laptimes (driverid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM results AS T1 JOIN races AS T2 ON T1.raceid = T2.raceid WHERE T2.name = \"Australian Grand Prix\" AND YEAR = 2009", "question": "How many drivers participated in the race Australian Grand Prix held in 2009?", "context": "CREATE TABLE races (raceid VARCHAR, name VARCHAR); CREATE TABLE results (raceid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT driverId) FROM results WHERE NOT raceId IN (SELECT raceId FROM races WHERE YEAR <> 2009)", "question": "How many drivers did not participate in the races held in 2009?", "context": "CREATE TABLE races (driverId VARCHAR, raceId VARCHAR, YEAR VARCHAR); CREATE TABLE results (driverId VARCHAR, raceId VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT T2.name, T2.year FROM results AS T1 JOIN races AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T1.driverid = T3.driverid WHERE T3.forename = \"Lewis\"", "question": "Give me a list of names and years of races that had any driver whose forename is Lewis?", "context": "CREATE TABLE drivers (driverid VARCHAR, forename VARCHAR); CREATE TABLE races (name VARCHAR, year VARCHAR, raceid VARCHAR); CREATE TABLE results (raceid VARCHAR, driverid VARCHAR)"}, {"answer": "SELECT forename, surname FROM drivers WHERE nationality = \"German\"", "question": "Find the forename and surname of drivers whose nationality is German?", "context": "CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT T2.driverid, T3.forename FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = \"Australian Grand Prix\" INTERSECT SELECT T2.driverid, T3.forename FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = \"Chinese Grand Prix\"", "question": "Find the id and forenames of drivers who participated both the races with name Australian Grand Prix and the races with name Chinese Grand Prix?", "context": "CREATE TABLE races (raceid VARCHAR, name VARCHAR); CREATE TABLE results (driverid VARCHAR, raceid VARCHAR); CREATE TABLE drivers (forename VARCHAR, driverid VARCHAR)"}, {"answer": "SELECT T3.forename, T3.surname FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = \"Australian Grand Prix\" EXCEPT SELECT T3.forename, T3.surname FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = \"Chinese Grand Prix\"", "question": "What are the forenames and surnames of drivers who participated in the races named Australian Grand Prix but not the races named Chinese Grand Prix?", "context": "CREATE TABLE races (raceid VARCHAR, name VARCHAR); CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR); CREATE TABLE results (raceid VARCHAR, driverid VARCHAR)"}, {"answer": "SELECT DISTINCT T1.forename FROM drivers AS T1 JOIN driverstandings AS T2 ON T1.driverid = T2.driverid WHERE T2.position = 1 AND T2.wins = 1", "question": "Find all the forenames of distinct drivers who was in position 1 as standing and won?", "context": "CREATE TABLE driverstandings (driverid VARCHAR, position VARCHAR, wins VARCHAR); CREATE TABLE drivers (forename VARCHAR, driverid VARCHAR)"}, {"answer": "SELECT DISTINCT T1.forename FROM drivers AS T1 JOIN driverstandings AS T2 ON T1.driverid = T2.driverid WHERE T2.position = 1 AND T2.wins = 1 AND T2.points > 20", "question": "Find all the forenames of distinct drivers who won in position 1 as driver standing and had more than 20 points?", "context": "CREATE TABLE drivers (forename VARCHAR, driverid VARCHAR); CREATE TABLE driverstandings (driverid VARCHAR, points VARCHAR, position VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(*), nationality FROM constructors GROUP BY nationality", "question": "What are the numbers of constructors for different nationalities?", "context": "CREATE TABLE constructors (nationality VARCHAR)"}, {"answer": "SELECT COUNT(*), constructorid FROM constructorStandings GROUP BY constructorid", "question": "What are the numbers of races for each constructor id?", "context": "CREATE TABLE constructorStandings (constructorid VARCHAR)"}, {"answer": "SELECT T1.name FROM races AS T1 JOIN circuits AS T2 ON T1.circuitid = T2.circuitid WHERE T2.country = \"Spain\" AND T1.year > 2017", "question": "What are the names of races that were held after 2017 and the circuits were in the country of Spain?", "context": "CREATE TABLE races (name VARCHAR, circuitid VARCHAR, year VARCHAR); CREATE TABLE circuits (circuitid VARCHAR, country VARCHAR)"}, {"answer": "SELECT DISTINCT T1.name FROM races AS T1 JOIN circuits AS T2 ON T1.circuitid = T2.circuitid WHERE T2.country = \"Spain\" AND T1.year > 2000", "question": "What are the unique names of races that held after 2000 and the circuits were in Spain?", "context": "CREATE TABLE races (name VARCHAR, circuitid VARCHAR, year VARCHAR); CREATE TABLE circuits (circuitid VARCHAR, country VARCHAR)"}, {"answer": "SELECT DISTINCT driverid, STOP FROM pitstops WHERE duration < (SELECT MAX(duration) FROM pitstops WHERE raceid = 841)", "question": "Find the distinct driver id and the stop number of all drivers that have a shorter pit stop duration than some drivers in the race with id 841.", "context": "CREATE TABLE pitstops (driverid VARCHAR, STOP VARCHAR, duration INTEGER, raceid VARCHAR)"}, {"answer": "SELECT DISTINCT driverid, STOP FROM pitstops WHERE duration > (SELECT MIN(duration) FROM pitstops WHERE raceid = 841)", "question": "Find the distinct driver id of all drivers that have a longer stop duration than some drivers in the race whose id is 841?", "context": "CREATE TABLE pitstops (driverid VARCHAR, STOP VARCHAR, duration INTEGER, raceid VARCHAR)"}, {"answer": "SELECT DISTINCT forename FROM drivers ORDER BY forename", "question": "List the forenames of all distinct drivers in alphabetical order?", "context": "CREATE TABLE drivers (forename VARCHAR)"}, {"answer": "SELECT DISTINCT name FROM races ORDER BY name DESC", "question": "List the names of all distinct races in reversed  lexicographic order?", "context": "CREATE TABLE races (name VARCHAR)"}, {"answer": "SELECT name FROM races WHERE YEAR BETWEEN 2009 AND 2011", "question": "What are the names of races held between 2009 and 2011?", "context": "CREATE TABLE races (name VARCHAR, YEAR INTEGER)"}, {"answer": "SELECT name FROM races WHERE TIME > \"12:00:00\" OR TIME < \"09:00:00\"", "question": "What are the names of races held after 12:00:00 or before 09:00:00?", "context": "CREATE TABLE races (name VARCHAR, TIME VARCHAR)"}, {"answer": "SELECT T1.forename, T1.surname, T1.driverid FROM drivers AS T1 JOIN pitstops AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) > 8 UNION SELECT T1.forename, T1.surname, T1.driverid FROM drivers AS T1 JOIN results AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) > 5", "question": "What are the drivers' first, last names and id who had more than 8 pit stops or participated in more than 5 race results?", "context": "CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR); CREATE TABLE results (driverid VARCHAR); CREATE TABLE pitstops (driverid VARCHAR)"}, {"answer": "SELECT T1.surname, T1.driverid FROM drivers AS T1 JOIN pitstops AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) = 11 INTERSECT SELECT T1.surname, T1.driverid FROM drivers AS T1 JOIN results AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) > 5", "question": "What are the drivers' last names and id who had 11 pit stops and participated in more than 5 race results?", "context": "CREATE TABLE drivers (surname VARCHAR, driverid VARCHAR); CREATE TABLE results (driverid VARCHAR); CREATE TABLE pitstops (driverid VARCHAR)"}, {"answer": "SELECT T1.driverid, T1.surname FROM drivers AS T1 JOIN results AS T2 ON T1.driverid = T2.driverid JOIN races AS T3 ON T2.raceid = T3.raceid WHERE T3.year > 2010 GROUP BY T1.driverid ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the id and last name of the driver who participated in the most races after 2010?", "context": "CREATE TABLE drivers (driverid VARCHAR, surname VARCHAR); CREATE TABLE races (raceid VARCHAR, year INTEGER); CREATE TABLE results (driverid VARCHAR, raceid VARCHAR)"}, {"answer": "SELECT name FROM circuits WHERE country = \"UK\" OR country = \"Malaysia\"", "question": "What are the names of circuits that belong to UK or Malaysia?", "context": "CREATE TABLE circuits (name VARCHAR, country VARCHAR)"}, {"answer": "SELECT circuitid, LOCATION FROM circuits WHERE country = \"France\" OR country = \"Belgium\"", "question": "Find the id and location of circuits that belong to France or Belgium?", "context": "CREATE TABLE circuits (circuitid VARCHAR, LOCATION VARCHAR, country VARCHAR)"}, {"answer": "SELECT T1.name FROM constructors AS T1 JOIN constructorstandings AS T2 ON T1.constructorid = T2.constructorid WHERE T1.nationality = \"Japanese\" AND T2.points > 5", "question": "Find the names of Japanese constructors that have once earned more than 5 points?", "context": "CREATE TABLE constructorstandings (constructorid VARCHAR, points VARCHAR); CREATE TABLE constructors (name VARCHAR, constructorid VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT AVG(T2.fastestlapspeed) FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid WHERE T1.year = 2008 AND T1.name = \"Monaco Grand Prix\"", "question": "What is the average fastest lap speed in race named 'Monaco Grand Prix' in 2008 ?", "context": "CREATE TABLE results (fastestlapspeed INTEGER, raceid VARCHAR); CREATE TABLE races (raceid VARCHAR, year VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(T2.fastestlapspeed) FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid WHERE T1.year = 2008 AND T1.name = \"Monaco Grand Prix\"", "question": "What is the maximum fastest lap speed in race named 'Monaco Grand Prix' in 2008 ?", "context": "CREATE TABLE results (fastestlapspeed INTEGER, raceid VARCHAR); CREATE TABLE races (raceid VARCHAR, year VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(T2.fastestlapspeed), T1.name, T1.year FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid WHERE T1.year > 2014 GROUP BY T1.name ORDER BY T1.year", "question": "What are the maximum fastest lap speed in races held after 2004 grouped by race name and ordered by year?", "context": "CREATE TABLE results (fastestlapspeed INTEGER, raceid VARCHAR); CREATE TABLE races (name VARCHAR, year INTEGER, raceid VARCHAR)"}, {"answer": "SELECT AVG(T2.fastestlapspeed), T1.name, T1.year FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid WHERE T1.year > 2014 GROUP BY T1.name ORDER BY T1.year", "question": "What are the average fastest lap speed in races held after 2004 grouped by race name and ordered by year?", "context": "CREATE TABLE results (fastestlapspeed INTEGER, raceid VARCHAR); CREATE TABLE races (name VARCHAR, year INTEGER, raceid VARCHAR)"}, {"answer": "SELECT T1.driverid, T1.forename, COUNT(*) FROM drivers AS T1 JOIN results AS T2 ON T1.driverid = T2.driverid JOIN races AS T3 ON T2.raceid = T3.raceid GROUP BY T1.driverid HAVING COUNT(*) >= 2", "question": "Find the id, forename and number of races of all drivers who have at least participated in two races?", "context": "CREATE TABLE drivers (driverid VARCHAR, forename VARCHAR); CREATE TABLE races (raceid VARCHAR); CREATE TABLE results (driverid VARCHAR, raceid VARCHAR)"}, {"answer": "SELECT T1.driverid, COUNT(*) FROM drivers AS T1 JOIN results AS T2 ON T1.driverid = T2.driverid JOIN races AS T3 ON T2.raceid = T3.raceid GROUP BY T1.driverid HAVING COUNT(*) <= 30", "question": "Find the driver id and number of races of all drivers who have at most participated in 30 races?", "context": "CREATE TABLE races (raceid VARCHAR); CREATE TABLE results (driverid VARCHAR, raceid VARCHAR); CREATE TABLE drivers (driverid VARCHAR)"}, {"answer": "SELECT T1.driverid, T1.surname FROM drivers AS T1 JOIN results AS T2 ON T1.driverid = T2.driverid JOIN races AS T3 ON T2.raceid = T3.raceid GROUP BY T1.driverid ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the id and surname of the driver who participated the most number of races?", "context": "CREATE TABLE drivers (driverid VARCHAR, surname VARCHAR); CREATE TABLE races (raceid VARCHAR); CREATE TABLE results (driverid VARCHAR, raceid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM technician", "question": "How many technicians are there?", "context": "CREATE TABLE technician (Id VARCHAR)"}, {"answer": "SELECT Name FROM technician ORDER BY Age", "question": "List the names of technicians in ascending order of age.", "context": "CREATE TABLE technician (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Team, Starting_Year FROM technician", "question": "What are the team and starting year of technicians?", "context": "CREATE TABLE technician (Team VARCHAR, Starting_Year VARCHAR)"}, {"answer": "SELECT Name FROM technician WHERE Team <> \"NYY\"", "question": "List the name of technicians whose team is not \"NYY\".", "context": "CREATE TABLE technician (Name VARCHAR, Team VARCHAR)"}, {"answer": "SELECT Name FROM technician WHERE Age = 36 OR Age = 37", "question": "Show the name of technicians aged either 36 or 37", "context": "CREATE TABLE technician (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Starting_Year FROM technician ORDER BY Age DESC LIMIT 1", "question": "What is the starting year of the oldest technicians?", "context": "CREATE TABLE technician (Starting_Year VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Team, COUNT(*) FROM technician GROUP BY Team", "question": "Show different teams of technicians and the number of technicians in each team.", "context": "CREATE TABLE technician (Team VARCHAR)"}, {"answer": "SELECT Team FROM technician GROUP BY Team ORDER BY COUNT(*) DESC LIMIT 1", "question": "Please show the team that has the most number of technicians.", "context": "CREATE TABLE technician (Team VARCHAR)"}, {"answer": "SELECT Team FROM technician GROUP BY Team HAVING COUNT(*) >= 2", "question": "Show the team that have at least two technicians.", "context": "CREATE TABLE technician (Team VARCHAR)"}, {"answer": "SELECT T3.Name, T2.Machine_series FROM repair_assignment AS T1 JOIN machine AS T2 ON T1.machine_id = T2.machine_id JOIN technician AS T3 ON T1.technician_ID = T3.technician_ID", "question": "Show names of technicians and series of machines they are assigned to repair.", "context": "CREATE TABLE machine (Machine_series VARCHAR, machine_id VARCHAR); CREATE TABLE repair_assignment (machine_id VARCHAR, technician_ID VARCHAR); CREATE TABLE technician (Name VARCHAR, technician_ID VARCHAR)"}, {"answer": "SELECT T3.Name FROM repair_assignment AS T1 JOIN machine AS T2 ON T1.machine_id = T2.machine_id JOIN technician AS T3 ON T1.technician_ID = T3.technician_ID ORDER BY T2.quality_rank", "question": "Show names of technicians in ascending order of quality rank of the machine they are assigned.", "context": "CREATE TABLE repair_assignment (machine_id VARCHAR, technician_ID VARCHAR); CREATE TABLE machine (machine_id VARCHAR, quality_rank VARCHAR); CREATE TABLE technician (Name VARCHAR, technician_ID VARCHAR)"}, {"answer": "SELECT T3.Name FROM repair_assignment AS T1 JOIN machine AS T2 ON T1.machine_id = T2.machine_id JOIN technician AS T3 ON T1.technician_ID = T3.technician_ID WHERE T2.value_points > 70", "question": "Show names of technicians who are assigned to repair machines with value point more than 70.", "context": "CREATE TABLE machine (machine_id VARCHAR, value_points INTEGER); CREATE TABLE repair_assignment (machine_id VARCHAR, technician_ID VARCHAR); CREATE TABLE technician (Name VARCHAR, technician_ID VARCHAR)"}, {"answer": "SELECT T2.Name, COUNT(*) FROM repair_assignment AS T1 JOIN technician AS T2 ON T1.technician_ID = T2.technician_ID GROUP BY T2.Name", "question": "Show names of technicians and the number of machines they are assigned to repair.", "context": "CREATE TABLE repair_assignment (technician_ID VARCHAR); CREATE TABLE technician (Name VARCHAR, technician_ID VARCHAR)"}, {"answer": "SELECT Name FROM technician WHERE NOT technician_id IN (SELECT technician_id FROM repair_assignment)", "question": "List the names of technicians who have not been assigned to repair machines.", "context": "CREATE TABLE technician (Name VARCHAR, technician_id VARCHAR); CREATE TABLE repair_assignment (Name VARCHAR, technician_id VARCHAR)"}, {"answer": "SELECT Starting_Year FROM technician WHERE Team = \"CLE\" INTERSECT SELECT Starting_Year FROM technician WHERE Team = \"CWS\"", "question": "Show the starting years shared by technicians from team \"CLE\" and \"CWS\".", "context": "CREATE TABLE technician (Starting_Year VARCHAR, Team VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM entrepreneur", "question": "How many entrepreneurs are there?", "context": "CREATE TABLE entrepreneur (Id VARCHAR)"}, {"answer": "SELECT Company FROM entrepreneur ORDER BY Money_Requested DESC", "question": "List the companies of entrepreneurs in descending order of money requested.", "context": "CREATE TABLE entrepreneur (Company VARCHAR, Money_Requested VARCHAR)"}, {"answer": "SELECT Company, Investor FROM entrepreneur", "question": "List the companies and the investors of entrepreneurs.", "context": "CREATE TABLE entrepreneur (Company VARCHAR, Investor VARCHAR)"}, {"answer": "SELECT AVG(Money_Requested) FROM entrepreneur", "question": "What is the average money requested by all entrepreneurs?", "context": "CREATE TABLE entrepreneur (Money_Requested INTEGER)"}, {"answer": "SELECT Name FROM People ORDER BY Weight", "question": "What are the names of people in ascending order of weight?", "context": "CREATE TABLE People (Name VARCHAR, Weight VARCHAR)"}, {"answer": "SELECT T2.Name FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID", "question": "What are the names of entrepreneurs?", "context": "CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE entrepreneur (People_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Investor <> \"Rachel Elnaugh\"", "question": "What are the names of entrepreneurs whose investor is not \"Rachel Elnaugh\"?", "context": "CREATE TABLE entrepreneur (People_ID VARCHAR, Investor VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT Weight FROM people ORDER BY Height LIMIT 1", "question": "What is the weight of the shortest person?", "context": "CREATE TABLE people (Weight VARCHAR, Height VARCHAR)"}, {"answer": "SELECT T2.Name FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Weight DESC LIMIT 1", "question": "What is the name of the entrepreneur with the greatest weight?", "context": "CREATE TABLE people (Name VARCHAR, People_ID VARCHAR, Weight VARCHAR); CREATE TABLE entrepreneur (People_ID VARCHAR)"}, {"answer": "SELECT SUM(T1.Money_Requested) FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Height > 1.85", "question": "What is the total money requested by entrepreneurs with height more than 1.85?", "context": "CREATE TABLE people (People_ID VARCHAR, Height INTEGER); CREATE TABLE entrepreneur (Money_Requested INTEGER, People_ID VARCHAR)"}, {"answer": "SELECT T2.Date_of_Birth FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Investor = \"Simon Woodroffe\" OR T1.Investor = \"Peter Jones\"", "question": "What are the dates of birth of entrepreneurs with investor \"Simon Woodroffe\" or \"Peter Jones\"?", "context": "CREATE TABLE entrepreneur (People_ID VARCHAR, Investor VARCHAR); CREATE TABLE people (Date_of_Birth VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T2.Weight FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Money_Requested DESC", "question": "What are the weights of entrepreneurs in descending order of money requested?", "context": "CREATE TABLE entrepreneur (People_ID VARCHAR, Money_Requested VARCHAR); CREATE TABLE people (Weight VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT Investor, COUNT(*) FROM entrepreneur GROUP BY Investor", "question": "What are the investors of entrepreneurs and the corresponding number of entrepreneurs invested by each investor?", "context": "CREATE TABLE entrepreneur (Investor VARCHAR)"}, {"answer": "SELECT Investor FROM entrepreneur GROUP BY Investor ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the investor that has invested in the most number of entrepreneurs?", "context": "CREATE TABLE entrepreneur (Investor VARCHAR)"}, {"answer": "SELECT Investor FROM entrepreneur GROUP BY Investor HAVING COUNT(*) >= 2", "question": "What are the investors that have invested in at least two entrepreneurs?", "context": "CREATE TABLE entrepreneur (Investor VARCHAR)"}, {"answer": "SELECT T2.Name, T1.Company FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Money_Requested", "question": "List the names of entrepreneurs and their companies in descending order of money requested?", "context": "CREATE TABLE entrepreneur (Company VARCHAR, People_ID VARCHAR, Money_Requested VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT Name FROM people WHERE NOT People_ID IN (SELECT People_ID FROM entrepreneur)", "question": "List the names of people that are not entrepreneurs.", "context": "CREATE TABLE entrepreneur (Name VARCHAR, People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT Investor FROM entrepreneur WHERE Money_Requested > 140000 INTERSECT SELECT Investor FROM entrepreneur WHERE Money_Requested < 120000", "question": "Show the investors shared by entrepreneurs that requested more than 140000 and entrepreneurs that requested less than 120000.", "context": "CREATE TABLE entrepreneur (Investor VARCHAR, Money_Requested INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT Company) FROM entrepreneur", "question": "How many distinct companies are there?", "context": "CREATE TABLE entrepreneur (Company VARCHAR)"}, {"answer": "SELECT T1.Company FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Height DESC LIMIT 1", "question": "Show the company of the tallest entrepreneur.", "context": "CREATE TABLE entrepreneur (Company VARCHAR, People_ID VARCHAR); CREATE TABLE people (People_ID VARCHAR, Height VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM perpetrator", "question": "How many perpetrators are there?", "context": "CREATE TABLE perpetrator (Id VARCHAR)"}, {"answer": "SELECT Date FROM perpetrator ORDER BY Killed DESC", "question": "List the date of perpetrators in descending order of the number of people killed.", "context": "CREATE TABLE perpetrator (Date VARCHAR, Killed VARCHAR)"}, {"answer": "SELECT Injured FROM perpetrator ORDER BY Injured", "question": "List the number of people injured by perpetrators in ascending order.", "context": "CREATE TABLE perpetrator (Injured VARCHAR)"}, {"answer": "SELECT AVG(Injured) FROM perpetrator", "question": "What is the average number of people injured by all perpetrators?", "context": "CREATE TABLE perpetrator (Injured INTEGER)"}, {"answer": "SELECT LOCATION FROM perpetrator ORDER BY Killed DESC LIMIT 1", "question": "What is the location of the perpetrator with the largest kills.", "context": "CREATE TABLE perpetrator (LOCATION VARCHAR, Killed VARCHAR)"}, {"answer": "SELECT Name FROM People ORDER BY Height", "question": "What are the names of people in ascending order of height?", "context": "CREATE TABLE People (Name VARCHAR, Height VARCHAR)"}, {"answer": "SELECT T1.Name FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID", "question": "What are the names of perpetrators?", "context": "CREATE TABLE perpetrator (People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Country <> \"China\"", "question": "What are the names of perpetrators whose country is not \"China\"?", "context": "CREATE TABLE perpetrator (People_ID VARCHAR, Country VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Weight DESC LIMIT 1", "question": "What is the name of the perpetrator with the biggest weight.", "context": "CREATE TABLE perpetrator (People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR, Weight VARCHAR)"}, {"answer": "SELECT SUM(T2.Killed) FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Height > 1.84", "question": "What is the total kills of the perpetrators with height more than 1.84.", "context": "CREATE TABLE people (People_ID VARCHAR, Height INTEGER); CREATE TABLE perpetrator (Killed INTEGER, People_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Country = \"China\" OR T2.Country = \"Japan\"", "question": "What are the names of perpetrators in country \"China\" or \"Japan\"?", "context": "CREATE TABLE perpetrator (People_ID VARCHAR, Country VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T1.Height FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Injured DESC", "question": "What are the heights of perpetrators in descending order of the number of people they injured?", "context": "CREATE TABLE perpetrator (People_ID VARCHAR, Injured VARCHAR); CREATE TABLE people (Height VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT Country, COUNT(*) FROM perpetrator GROUP BY Country", "question": "What are the countries of perpetrators? Show each country and the corresponding number of perpetrators there.", "context": "CREATE TABLE perpetrator (Country VARCHAR)"}, {"answer": "SELECT Country, COUNT(*) FROM perpetrator GROUP BY Country ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the country that has the most perpetrators?", "context": "CREATE TABLE perpetrator (Country VARCHAR)"}, {"answer": "SELECT Country, COUNT(*) FROM perpetrator GROUP BY Country HAVING COUNT(*) >= 2", "question": "What are the countries that have at least two perpetrators?", "context": "CREATE TABLE perpetrator (Country VARCHAR)"}, {"answer": "SELECT T1.Name FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Year DESC", "question": "List the names of perpetrators in descending order of the year.", "context": "CREATE TABLE perpetrator (People_ID VARCHAR, Year VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT Name FROM people WHERE NOT People_ID IN (SELECT People_ID FROM perpetrator)", "question": "List the names of people that are not perpetrators.", "context": "CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE perpetrator (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT Country FROM perpetrator WHERE Injured > 50 INTERSECT SELECT Country FROM perpetrator WHERE Injured < 20", "question": "Show the countries that have both perpetrators with injures more than 50 and perpetrators with injures smaller than 20.", "context": "CREATE TABLE perpetrator (Country VARCHAR, Injured INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT LOCATION) FROM perpetrator", "question": "How many distinct locations of perpetrators are there?", "context": "CREATE TABLE perpetrator (LOCATION VARCHAR)"}, {"answer": "SELECT T2.Date FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Height DESC LIMIT 1", "question": "Show the date of the tallest perpetrator.", "context": "CREATE TABLE perpetrator (Date VARCHAR, People_ID VARCHAR); CREATE TABLE people (People_ID VARCHAR, Height VARCHAR)"}, {"answer": "SELECT MAX(YEAR) FROM perpetrator", "question": "In which year did the most recent crime happen?", "context": "CREATE TABLE perpetrator (YEAR INTEGER)"}, {"answer": "SELECT campus FROM campuses WHERE county = \"Los Angeles\"", "question": "Report the name of all campuses in Los Angeles county.", "context": "CREATE TABLE campuses (campus VARCHAR, county VARCHAR)"}, {"answer": "SELECT campus FROM campuses WHERE LOCATION = \"Chico\"", "question": "What are the names of all campuses located at Chico?", "context": "CREATE TABLE campuses (campus VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT campus FROM campuses WHERE YEAR = 1958", "question": "Find all the campuses opened in 1958.", "context": "CREATE TABLE campuses (campus VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT campus FROM campuses WHERE YEAR < 1800", "question": "Find the name of the campuses opened before 1800.", "context": "CREATE TABLE campuses (campus VARCHAR, YEAR INTEGER)"}, {"answer": "SELECT campus FROM campuses WHERE YEAR >= 1935 AND YEAR <= 1939", "question": "Which campus was opened between 1935 and 1939?", "context": "CREATE TABLE campuses (campus VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT campus FROM campuses WHERE LOCATION = \"Northridge\" AND county = \"Los Angeles\" UNION SELECT campus FROM campuses WHERE LOCATION = \"San Francisco\" AND county = \"San Francisco\"", "question": "Find the name of the campuses that is in Northridge, Los Angeles or in San Francisco, San Francisco.", "context": "CREATE TABLE campuses (campus VARCHAR, LOCATION VARCHAR, county VARCHAR)"}, {"answer": "SELECT campusfee FROM campuses AS T1 JOIN csu_fees AS T2 ON T1.id = t2.campus WHERE t1.campus = \"San Jose State University\" AND T2.year = 1996", "question": "What is the campus fee of \"San Jose State University\" in year 1996?", "context": "CREATE TABLE csu_fees (year VARCHAR); CREATE TABLE campuses (id VARCHAR)"}, {"answer": "SELECT campusfee FROM campuses AS T1 JOIN csu_fees AS T2 ON T1.id = t2.campus WHERE t1.campus = \"San Francisco State University\" AND T2.year = 1996", "question": "What is the campus fee of \"San Francisco State University\" in year 1996?", "context": "CREATE TABLE csu_fees (year VARCHAR); CREATE TABLE campuses (id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM csu_fees WHERE campusfee > (SELECT AVG(campusfee) FROM csu_fees)", "question": "Find the count of universities whose campus fee is greater than the average campus fee.", "context": "CREATE TABLE csu_fees (campusfee INTEGER)"}, {"answer": "SELECT campus FROM campuses WHERE county = \"Los Angeles\" AND YEAR > 1950", "question": "Which university is in Los Angeles county and opened after 1950?", "context": "CREATE TABLE campuses (campus VARCHAR, county VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT YEAR FROM degrees GROUP BY YEAR ORDER BY SUM(degrees) DESC LIMIT 1", "question": "Which year has the most degrees conferred?", "context": "CREATE TABLE degrees (YEAR VARCHAR, degrees INTEGER)"}, {"answer": "SELECT campus FROM degrees GROUP BY campus ORDER BY SUM(degrees) DESC LIMIT 1", "question": "Which campus has the most degrees conferred in all times?", "context": "CREATE TABLE degrees (campus VARCHAR, degrees INTEGER)"}, {"answer": "SELECT T1.campus FROM campuses AS T1 JOIN faculty AS T2 ON T1.id = T2.campus WHERE T2.year = 2003 ORDER BY T2.faculty DESC LIMIT 1", "question": "Which campus has the most faculties in year 2003?", "context": "CREATE TABLE faculty (campus VARCHAR, year VARCHAR, faculty VARCHAR); CREATE TABLE campuses (campus VARCHAR, id VARCHAR)"}, {"answer": "SELECT AVG(campusfee) FROM csu_fees WHERE YEAR = 1996", "question": "Find the average fee on a CSU campus in 1996", "context": "CREATE TABLE csu_fees (campusfee INTEGER, YEAR VARCHAR)"}, {"answer": "SELECT AVG(campusfee) FROM csu_fees WHERE YEAR = 2005", "question": "What is the average fee on a CSU campus in 2005?", "context": "CREATE TABLE csu_fees (campusfee INTEGER, YEAR VARCHAR)"}, {"answer": "SELECT T1.campus, SUM(T2.degrees) FROM campuses AS T1 JOIN degrees AS T2 ON T1.id = T2.campus WHERE T2.year >= 1998 AND T2.year <= 2002 GROUP BY T1.campus", "question": "report the total number of degrees granted between 1998 and 2002.", "context": "CREATE TABLE campuses (campus VARCHAR, id VARCHAR); CREATE TABLE degrees (degrees INTEGER, campus VARCHAR, year VARCHAR)"}, {"answer": "SELECT T1.campus, SUM(T2.degrees) FROM campuses AS T1 JOIN degrees AS T2 ON T1.id = T2.campus WHERE T1.county = \"Orange\" AND T2.year >= 2000 GROUP BY T1.campus", "question": "For each Orange county campus, report the number of degrees granted after 2000.", "context": "CREATE TABLE campuses (campus VARCHAR, id VARCHAR, county VARCHAR); CREATE TABLE degrees (degrees INTEGER, campus VARCHAR, year VARCHAR)"}, {"answer": "SELECT T1.campus FROM campuses AS T1 JOIN faculty AS T2 ON T1.id = T2.campus WHERE T2.year = 2002 AND faculty > (SELECT MAX(faculty) FROM campuses AS T1 JOIN faculty AS T2 ON T1.id = T2.campus WHERE T2.year = 2002 AND T1.county = \"Orange\")", "question": "Find the names of the campus which has more faculties in 2002 than every campus in Orange county.", "context": "CREATE TABLE campuses (campus VARCHAR, id VARCHAR, county VARCHAR); CREATE TABLE faculty (campus VARCHAR, year VARCHAR)"}, {"answer": "SELECT T1.campus FROM campuses AS t1 JOIN enrollments AS t2 ON t1.id = t2.campus WHERE t2.year = 1956 AND totalenrollment_ay > 400 AND FTE_AY > 200", "question": "What campus had more than 400 total enrollment but more than 200 full time enrollment in year 1956?", "context": "CREATE TABLE enrollments (campus VARCHAR, year VARCHAR); CREATE TABLE campuses (id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM campuses WHERE county = \"Los Angeles\"", "question": "How many campuses are there in Los Angeles county?", "context": "CREATE TABLE campuses (county VARCHAR)"}, {"answer": "SELECT degrees FROM campuses AS T1 JOIN degrees AS T2 ON t1.id = t2.campus WHERE t1.campus = \"San Jose State University\" AND t2.year = 2000", "question": "How many degrees were conferred in \"San Jose State University\" in 2000?", "context": "CREATE TABLE degrees (Id VARCHAR); CREATE TABLE campuses (Id VARCHAR)"}, {"answer": "SELECT degrees FROM campuses AS T1 JOIN degrees AS T2 ON t1.id = t2.campus WHERE t1.campus = \"San Francisco State University\" AND t2.year = 2001", "question": "What are the degrees conferred in \"San Francisco State University\" in 2001.", "context": "CREATE TABLE degrees (Id VARCHAR); CREATE TABLE campuses (Id VARCHAR)"}, {"answer": "SELECT SUM(faculty) FROM faculty WHERE YEAR = 2002", "question": "How many faculty is there in total in the year of 2002?", "context": "CREATE TABLE faculty (faculty INTEGER, YEAR VARCHAR)"}, {"answer": "SELECT faculty FROM faculty AS T1 JOIN campuses AS T2 ON T1.campus = T2.id WHERE T1.year = 2002 AND T2.campus = \"Long Beach State University\"", "question": "What is the number of faculty lines in campus \"Long Beach State University\" in 2002?", "context": "CREATE TABLE campuses (id VARCHAR, campus VARCHAR); CREATE TABLE faculty (campus VARCHAR, year VARCHAR)"}, {"answer": "SELECT faculty FROM faculty AS T1 JOIN campuses AS T2 ON T1.campus = T2.id WHERE T1.year = 2004 AND T2.campus = \"San Francisco State University\"", "question": "How many faculty lines are there in \"San Francisco State University\" in year 2004?", "context": "CREATE TABLE campuses (id VARCHAR, campus VARCHAR); CREATE TABLE faculty (campus VARCHAR, year VARCHAR)"}, {"answer": "SELECT T1.campus FROM campuses AS t1 JOIN faculty AS t2 ON t1.id = t2.campus WHERE t2.faculty >= 600 AND t2.faculty <= 1000 AND T1.year = 2004", "question": "List the campus that have between 600 and 1000 faculty lines in year 2004.", "context": "CREATE TABLE campuses (id VARCHAR); CREATE TABLE faculty (campus VARCHAR, faculty VARCHAR)"}, {"answer": "SELECT T2.faculty FROM campuses AS T1 JOIN faculty AS T2 ON T1.id = t2.campus JOIN degrees AS T3 ON T1.id = t3.campus AND t2.year = t3.year WHERE t2.year = 2002 ORDER BY t3.degrees DESC LIMIT 1", "question": "How many faculty lines are there in the university that conferred the most number of degrees in year 2002?", "context": "CREATE TABLE campuses (id VARCHAR); CREATE TABLE faculty (faculty VARCHAR); CREATE TABLE degrees (Id VARCHAR)"}, {"answer": "SELECT T2.faculty FROM campuses AS T1 JOIN faculty AS T2 ON T1.id = t2.campus JOIN degrees AS T3 ON T1.id = t3.campus AND t2.year = t3.year WHERE t2.year = 2001 ORDER BY t3.degrees LIMIT 1", "question": "How many faculty lines are there in the university that conferred the least number of degrees in year 2001?", "context": "CREATE TABLE campuses (id VARCHAR); CREATE TABLE faculty (faculty VARCHAR); CREATE TABLE degrees (Id VARCHAR)"}, {"answer": "SELECT SUM(t1.undergraduate) FROM discipline_enrollments AS t1 JOIN campuses AS t2 ON t1.campus = t2.id WHERE t1.year = 2004 AND t2.campus = \"San Jose State University\"", "question": "How many undergraduates are there in \"San Jose State University\" in year 2004?", "context": "CREATE TABLE discipline_enrollments (undergraduate INTEGER, campus VARCHAR, year VARCHAR); CREATE TABLE campuses (id VARCHAR, campus VARCHAR)"}, {"answer": "SELECT SUM(t1.graduate) FROM discipline_enrollments AS t1 JOIN campuses AS t2 ON t1.campus = t2.id WHERE t1.year = 2004 AND t2.campus = \"San Francisco State University\"", "question": "What is the number of graduates in \"San Francisco State University\" in year 2004?", "context": "CREATE TABLE discipline_enrollments (graduate INTEGER, campus VARCHAR, year VARCHAR); CREATE TABLE campuses (id VARCHAR, campus VARCHAR)"}, {"answer": "SELECT t1.campusfee FROM csu_fees AS t1 JOIN campuses AS t2 ON t1.campus = t2.id WHERE t2.campus = \"San Francisco State University\" AND t1.year = 2000", "question": "What is the campus fee of \"San Francisco State University\" in year 2000?", "context": "CREATE TABLE campuses (id VARCHAR, campus VARCHAR); CREATE TABLE csu_fees (campusfee VARCHAR, campus VARCHAR, year VARCHAR)"}, {"answer": "SELECT t1.campusfee FROM csu_fees AS t1 JOIN campuses AS t2 ON t1.campus = t2.id WHERE t2.campus = \"San Jose State University\" AND t1.year = 2000", "question": "Find the campus fee of \"San Jose State University\" in year 2000.", "context": "CREATE TABLE campuses (id VARCHAR, campus VARCHAR); CREATE TABLE csu_fees (campusfee VARCHAR, campus VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM campuses", "question": "How many CSU campuses are there?", "context": "CREATE TABLE campuses (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM candidate", "question": "How many candidates are there?", "context": "CREATE TABLE candidate (Id VARCHAR)"}, {"answer": "SELECT poll_source FROM candidate GROUP BY poll_source ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which poll resource provided the most number of candidate information?", "context": "CREATE TABLE candidate (poll_source VARCHAR)"}, {"answer": "SELECT support_rate FROM candidate ORDER BY support_rate DESC LIMIT 3", "question": "what are the top 3 highest support rates?", "context": "CREATE TABLE candidate (support_rate VARCHAR)"}, {"answer": "SELECT Candidate_ID FROM candidate ORDER BY oppose_rate LIMIT 1", "question": "Find the id of the candidate who got the lowest oppose rate.", "context": "CREATE TABLE candidate (Candidate_ID VARCHAR, oppose_rate VARCHAR)"}, {"answer": "SELECT Support_rate, Consider_rate, Oppose_rate FROM candidate ORDER BY unsure_rate", "question": "Please list support, consider, and oppose rates for each candidate in ascending order by unsure rate.", "context": "CREATE TABLE candidate (Support_rate VARCHAR, Consider_rate VARCHAR, Oppose_rate VARCHAR, unsure_rate VARCHAR)"}, {"answer": "SELECT poll_source FROM candidate ORDER BY oppose_rate DESC LIMIT 1", "question": "which poll source does the highest oppose rate come from?", "context": "CREATE TABLE candidate (poll_source VARCHAR, oppose_rate VARCHAR)"}, {"answer": "SELECT name FROM people ORDER BY date_of_birth", "question": "List all people names in the order of their date of birth from old to young.", "context": "CREATE TABLE people (name VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT AVG(height), AVG(weight) FROM people WHERE sex = 'M'", "question": "Find the average height and weight for all males (sex is M).", "context": "CREATE TABLE people (height INTEGER, weight INTEGER, sex VARCHAR)"}, {"answer": "SELECT name FROM people WHERE height > 200 OR height < 190", "question": "find the names of people who are taller than 200 or lower than 190.", "context": "CREATE TABLE people (name VARCHAR, height VARCHAR)"}, {"answer": "SELECT AVG(weight), MIN(weight), sex FROM people GROUP BY sex", "question": "Find the average and minimum weight for each gender.", "context": "CREATE TABLE people (sex VARCHAR, weight INTEGER)"}, {"answer": "SELECT t1.name, t1.sex FROM people AS t1 JOIN candidate AS t2 ON t1.people_id = t2.people_id ORDER BY t2.support_rate DESC LIMIT 1", "question": "Find the name and gender of the candidate who got the highest support rate.", "context": "CREATE TABLE candidate (people_id VARCHAR, support_rate VARCHAR); CREATE TABLE people (name VARCHAR, sex VARCHAR, people_id VARCHAR)"}, {"answer": "SELECT t1.name, t1.sex, MIN(oppose_rate) FROM people AS t1 JOIN candidate AS t2 ON t1.people_id = t2.people_id GROUP BY t1.sex", "question": "Find the name of the candidates whose oppose percentage is the lowest for each sex.", "context": "CREATE TABLE candidate (people_id VARCHAR); CREATE TABLE people (name VARCHAR, sex VARCHAR, people_id VARCHAR)"}, {"answer": "SELECT t1.sex FROM people AS t1 JOIN candidate AS t2 ON t1.people_id = t2.people_id GROUP BY t1.sex ORDER BY AVG(t2.unsure_rate) DESC LIMIT 1", "question": "which gender got the highest average uncertain ratio.", "context": "CREATE TABLE candidate (people_id VARCHAR, unsure_rate INTEGER); CREATE TABLE people (sex VARCHAR, people_id VARCHAR)"}, {"answer": "SELECT name FROM people WHERE NOT people_id IN (SELECT people_id FROM candidate)", "question": "what are the names of people who did not participate in the candidate election.", "context": "CREATE TABLE candidate (name VARCHAR, people_id VARCHAR); CREATE TABLE people (name VARCHAR, people_id VARCHAR)"}, {"answer": "SELECT t1.name FROM people AS t1 JOIN candidate AS t2 ON t1.people_id = t2.people_id WHERE t2.support_rate < t2.oppose_rate", "question": "Find the names of the candidates whose support percentage is lower than their oppose rate.", "context": "CREATE TABLE candidate (people_id VARCHAR, support_rate INTEGER, oppose_rate VARCHAR); CREATE TABLE people (name VARCHAR, people_id VARCHAR)"}, {"answer": "SELECT COUNT(*), sex FROM people WHERE weight > 85 GROUP BY sex", "question": "how many people are there whose weight is higher than 85 for each gender?", "context": "CREATE TABLE people (sex VARCHAR, weight INTEGER)"}, {"answer": "SELECT MAX(support_rate), MIN(consider_rate), MIN(oppose_rate) FROM candidate", "question": "find the highest support percentage, lowest consider rate and oppose rate of all candidates.", "context": "CREATE TABLE candidate (support_rate INTEGER, consider_rate INTEGER, oppose_rate INTEGER)"}, {"answer": "SELECT t1.name FROM people AS t1 JOIN candidate AS t2 ON t1.people_id = t2.people_id WHERE t1.sex = 'F' ORDER BY t1.name", "question": "list all female (sex is F) candidate names in the alphabetical order.", "context": "CREATE TABLE candidate (people_id VARCHAR); CREATE TABLE people (name VARCHAR, people_id VARCHAR, sex VARCHAR)"}, {"answer": "SELECT name FROM people WHERE height < (SELECT AVG(height) FROM people)", "question": "find the name of people whose height is lower than the average.", "context": "CREATE TABLE people (name VARCHAR, height INTEGER)"}, {"answer": "SELECT * FROM people", "question": "List all info about all people.", "context": "CREATE TABLE people (Id VARCHAR)"}, {"answer": "SELECT title FROM Movie WHERE director = 'Steven Spielberg'", "question": "Find the titles of all movies directed by steven spielberg.", "context": "CREATE TABLE Movie (title VARCHAR, director VARCHAR)"}, {"answer": "SELECT title FROM Movie WHERE director = 'James Cameron' AND YEAR > 2000", "question": "What is the name of the movie produced after 2000 and directed by James Cameron?", "context": "CREATE TABLE Movie (title VARCHAR, director VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Movie WHERE YEAR < 2000", "question": "How many movies were made before 2000?", "context": "CREATE TABLE Movie (YEAR INTEGER)"}, {"answer": "SELECT director FROM Movie WHERE title = 'Avatar'", "question": "Who is the director of movie Avatar?", "context": "CREATE TABLE Movie (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Reviewer", "question": "How many reviewers listed?", "context": "CREATE TABLE Reviewer (Id VARCHAR)"}, {"answer": "SELECT rID FROM Reviewer WHERE name LIKE \"%Mike%\"", "question": "What is the id of the reviewer whose name has substring \u201cMike\u201d?", "context": "CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR)"}, {"answer": "SELECT rID FROM Reviewer WHERE name = \"Daniel Lewis\"", "question": "What is the reviewer id of Daniel Lewis?", "context": "CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Rating WHERE stars > 3", "question": "What is the total number of ratings that has more than 3 stars?", "context": "CREATE TABLE Rating (stars INTEGER)"}, {"answer": "SELECT MAX(stars), MIN(stars) FROM Rating", "question": "What is the lowest and highest rating star?", "context": "CREATE TABLE Rating (stars INTEGER)"}, {"answer": "SELECT DISTINCT YEAR FROM Movie AS T1 JOIN Rating AS T2 ON T1.mID = T2.mID WHERE T2.stars >= 4 ORDER BY T1.year", "question": "Find all years that have a movie that received a rating of 4 or 5, and sort them in increasing order of year.", "context": "CREATE TABLE Movie (mID VARCHAR, year VARCHAR); CREATE TABLE Rating (mID VARCHAR, stars VARCHAR)"}, {"answer": "SELECT T1.director, T1.title FROM Movie AS T1 JOIN Rating AS T2 ON T1.mID = T2.mID WHERE T2.stars = 5", "question": "What are the names of directors who directed movies with 5 star rating? Also return the title of these movies.", "context": "CREATE TABLE Movie (director VARCHAR, title VARCHAR, mID VARCHAR); CREATE TABLE Rating (mID VARCHAR, stars VARCHAR)"}, {"answer": "SELECT T2.name, AVG(T1.stars) FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID GROUP BY T2.name", "question": "What is the average rating star for each reviewer?", "context": "CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Rating (stars INTEGER, rID VARCHAR)"}, {"answer": "SELECT title FROM Movie WHERE NOT mID IN (SELECT mID FROM Rating)", "question": "Find the titles of all movies that have no ratings.", "context": "CREATE TABLE Rating (title VARCHAR, mID VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)"}, {"answer": "SELECT DISTINCT name FROM Reviewer AS T1 JOIN Rating AS T2 ON T1.rID = T2.rID WHERE ratingDate = \"null\"", "question": "Find the names of all reviewers who have ratings with a NULL value for the date.", "context": "CREATE TABLE Rating (rID VARCHAR); CREATE TABLE Reviewer (rID VARCHAR)"}, {"answer": "SELECT AVG(T1.stars), T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T2.year = (SELECT MIN(YEAR) FROM Movie)", "question": "What is the average rating stars and title for the oldest movie?", "context": "CREATE TABLE Movie (title VARCHAR, mID VARCHAR, year VARCHAR); CREATE TABLE Rating (stars INTEGER, mID VARCHAR); CREATE TABLE Movie (YEAR INTEGER)"}, {"answer": "SELECT title FROM Movie WHERE YEAR = (SELECT MAX(YEAR) FROM Movie)", "question": "What is the name of the most recent movie?", "context": "CREATE TABLE Movie (title VARCHAR, YEAR INTEGER)"}, {"answer": "SELECT MAX(T1.stars), T2.year FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T2.year = (SELECT MAX(YEAR) FROM Movie)", "question": "What is the maximum stars and year for the most recent movie?", "context": "CREATE TABLE Rating (stars INTEGER, mID VARCHAR); CREATE TABLE Movie (YEAR INTEGER); CREATE TABLE Movie (year VARCHAR, mID VARCHAR)"}, {"answer": "SELECT title FROM Movie WHERE YEAR > (SELECT MAX(YEAR) FROM Movie WHERE director = \"Steven Spielberg\")", "question": "What is the names of movies whose created year is after all movies directed by Steven Spielberg?", "context": "CREATE TABLE Movie (title VARCHAR, YEAR INTEGER, director VARCHAR)"}, {"answer": "SELECT T2.title, T2.director FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars > (SELECT AVG(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T2.director = \"James Cameron\")", "question": "What are the titles and directors of the movies whose star is greater than the average stars of the movies directed by James Cameron?", "context": "CREATE TABLE Rating (mID VARCHAR, stars INTEGER); CREATE TABLE Movie (title VARCHAR, director VARCHAR, mID VARCHAR)"}, {"answer": "SELECT T3.name, T2.title, T1.stars, T1.ratingDate FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID JOIN Reviewer AS T3 ON T1.rID = T3.rID ORDER BY T3.name, T2.title, T1.stars", "question": "Return reviewer name, movie title, stars, and ratingDate. And sort the data first by reviewer name, then by movie title, and lastly by number of stars.", "context": "CREATE TABLE Rating (stars VARCHAR, ratingDate VARCHAR, mID VARCHAR, rID VARCHAR); CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)"}, {"answer": "SELECT T2.name FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID GROUP BY T1.rID HAVING COUNT(*) >= 3", "question": "Find the names of all reviewers who have contributed three or more ratings.", "context": "CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Rating (rID VARCHAR)"}, {"answer": "SELECT DISTINCT T3.name FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID JOIN Reviewer AS T3 ON T1.rID = T3.rID WHERE T2.title = 'Gone with the Wind'", "question": "Find the names of all reviewers who rated Gone with the Wind.", "context": "CREATE TABLE Movie (mID VARCHAR, title VARCHAR); CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Rating (mID VARCHAR, rID VARCHAR)"}, {"answer": "SELECT DISTINCT T2.director FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID JOIN Reviewer AS T3 ON T1.rID = T3.rID WHERE T3.name = 'Sarah Martinez'", "question": "Find the names of all directors whose movies are rated by Sarah Martinez.", "context": "CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR); CREATE TABLE Movie (director VARCHAR, mID VARCHAR); CREATE TABLE Rating (mID VARCHAR, rID VARCHAR)"}, {"answer": "SELECT DISTINCT T3.name, T2.title, T1.stars FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID JOIN Reviewer AS T3 ON T1.rID = T3.rID WHERE T2.director = T3.name", "question": "For any rating where the name of reviewer is the same as the director of the movie, return the reviewer name, movie title, and number of stars.", "context": "CREATE TABLE Rating (stars VARCHAR, mID VARCHAR, rID VARCHAR); CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR, director VARCHAR)"}, {"answer": "SELECT name FROM Reviewer UNION SELECT title FROM Movie", "question": "Return all reviewer names and movie names together in a single list.", "context": "CREATE TABLE Reviewer (name VARCHAR, title VARCHAR); CREATE TABLE Movie (name VARCHAR, title VARCHAR)"}, {"answer": "SELECT DISTINCT title FROM Movie EXCEPT SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID JOIN Reviewer AS T3 ON T1.rID = T3.rID WHERE T3.name = 'Chris Jackson'", "question": "Find the titles of all movies not reviewed by Chris Jackson.", "context": "CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR); CREATE TABLE Movie (title VARCHAR); CREATE TABLE Rating (mID VARCHAR, rID VARCHAR)"}, {"answer": "SELECT T1.title, T1.director FROM Movie AS T1 JOIN Movie AS T2 ON T1.director = T2.director WHERE T1.title <> T2.title ORDER BY T1.director, T1.title", "question": "For all directors who directed more than one movie, return the titles of all movies directed by them, along with the director name. Sort by director name, then movie title.", "context": "CREATE TABLE Movie (title VARCHAR, director VARCHAR); CREATE TABLE Movie (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT T1.title, T1.year FROM Movie AS T1 JOIN Movie AS T2 ON T1.director = T2.director WHERE T1.title <> T2.title", "question": "For directors who had more than one movie, return the titles and produced years of all movies directed by them.", "context": "CREATE TABLE Movie (director VARCHAR, title VARCHAR); CREATE TABLE Movie (title VARCHAR, year VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM Movie GROUP BY director HAVING COUNT(*) = 1", "question": "What are the names of the directors who made exactly one movie?", "context": "CREATE TABLE Movie (director VARCHAR)"}, {"answer": "SELECT director FROM Movie WHERE director <> \"null\" GROUP BY director HAVING COUNT(*) = 1", "question": "What are the names of the directors who made exactly one movie excluding director NULL?", "context": "CREATE TABLE Movie (director VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.director FROM Movie AS T1 JOIN Rating AS T2 ON T1.mID = T2.mID GROUP BY T1.director", "question": "How many movie reviews does each director get?", "context": "CREATE TABLE Rating (mID VARCHAR); CREATE TABLE Movie (director VARCHAR, mID VARCHAR)"}, {"answer": "SELECT T2.title, AVG(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID GROUP BY T1.mID ORDER BY AVG(T1.stars) DESC LIMIT 1", "question": "Find the movies with the highest average rating. Return the movie titles and average rating.", "context": "CREATE TABLE Rating (stars INTEGER, mID VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)"}, {"answer": "SELECT T2.title, AVG(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID GROUP BY T1.mID ORDER BY AVG(T1.stars) LIMIT 1", "question": "What are the movie titles and average rating of the movies with the lowest average rating?", "context": "CREATE TABLE Rating (stars INTEGER, mID VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)"}, {"answer": "SELECT T2.title, T2.year FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID ORDER BY T1.stars DESC LIMIT 3", "question": "What are the names and years of the movies that has the top 3 highest rating star?", "context": "CREATE TABLE Rating (mID VARCHAR, stars VARCHAR); CREATE TABLE Movie (title VARCHAR, year VARCHAR, mID VARCHAR)"}, {"answer": "SELECT T2.title, T1.stars, T2.director, MAX(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE director <> \"null\" GROUP BY director", "question": "For each director, return the director's name together with the title of the movie they directed that received the highest rating among all of their movies, and the value of that rating. Ignore movies whose director is NULL.", "context": "CREATE TABLE Rating (stars INTEGER, mID VARCHAR); CREATE TABLE Movie (title VARCHAR, director VARCHAR, mID VARCHAR)"}, {"answer": "SELECT T2.title, T1.rID, T1.stars, MIN(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID GROUP BY T1.rID", "question": "Find the title and star rating of the movie that got the least rating star for each reviewer.", "context": "CREATE TABLE Rating (rID VARCHAR, stars INTEGER, mID VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)"}, {"answer": "SELECT T2.title, T1.stars, T2.director, MIN(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID GROUP BY T2.director", "question": "Find the title and score of the movie with the lowest rating among all movies directed by each director.", "context": "CREATE TABLE Rating (stars INTEGER, mID VARCHAR); CREATE TABLE Movie (title VARCHAR, director VARCHAR, mID VARCHAR)"}, {"answer": "SELECT T2.title, T1.mID FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID GROUP BY T1.mID ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the movie that is rated by most of times?", "context": "CREATE TABLE Rating (mID VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)"}, {"answer": "SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars BETWEEN 3 AND 5", "question": "What are the titles of all movies that have rating star is between 3 and 5?", "context": "CREATE TABLE Rating (mID VARCHAR, stars INTEGER); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)"}, {"answer": "SELECT T2.name FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID WHERE T1.stars > 3", "question": "Find the names of reviewers who had given higher than 3 star ratings.", "context": "CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Rating (rID VARCHAR, stars INTEGER)"}, {"answer": "SELECT mID, AVG(stars) FROM Rating WHERE NOT mID IN (SELECT T1.mID FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID WHERE T2.name = \"Brittany Harris\") GROUP BY mID", "question": "Find the average rating star for each movie that are not reviewed by Brittany Harris.", "context": "CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR); CREATE TABLE Rating (mID VARCHAR, stars INTEGER); CREATE TABLE Rating (mID VARCHAR, rID VARCHAR)"}, {"answer": "SELECT mID FROM Rating EXCEPT SELECT T1.mID FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID WHERE T2.name = \"Brittany Harris\"", "question": "What are the ids of the movies that are not reviewed by Brittany Harris.", "context": "CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR); CREATE TABLE Rating (mID VARCHAR); CREATE TABLE Rating (mID VARCHAR, rID VARCHAR)"}, {"answer": "SELECT mID, AVG(stars) FROM Rating GROUP BY mID HAVING COUNT(*) >= 2", "question": "Find the average rating star for each movie that received at least 2 ratings.", "context": "CREATE TABLE Rating (mID VARCHAR, stars INTEGER)"}, {"answer": "SELECT rID FROM Rating EXCEPT SELECT rID FROM Rating WHERE stars = 4", "question": "find the ids of reviewers who did not give 4 star.", "context": "CREATE TABLE Rating (rID VARCHAR, stars VARCHAR)"}, {"answer": "SELECT rID FROM Rating WHERE stars <> 4", "question": "Find the ids of reviewers who didn't only give 4 star.", "context": "CREATE TABLE Rating (rID VARCHAR, stars VARCHAR)"}, {"answer": "SELECT DISTINCT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID JOIN Reviewer AS T3 ON T1.rID = T3.rID WHERE T3.name = 'Brittany Harris' OR T2.year > 2000", "question": "What are names of the movies that are either made after 2000 or reviewed by Brittany Harris?", "context": "CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR, year VARCHAR); CREATE TABLE Rating (mID VARCHAR, rID VARCHAR)"}, {"answer": "SELECT title FROM Movie WHERE director = \"James Cameron\" OR YEAR < 1980", "question": "What are names of the movies that are either made before 1980 or directed by James Cameron?", "context": "CREATE TABLE Movie (title VARCHAR, director VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT T2.name FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID WHERE T1.stars = 3 INTERSECT SELECT T2.name FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID WHERE T1.stars = 4", "question": "What are the names of reviewers who had rated 3 star and 4 star?", "context": "CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Rating (rID VARCHAR, stars VARCHAR)"}, {"answer": "SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars = 3 INTERSECT SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars = 4", "question": "What are the names of movies that get 3 star and 4 star?", "context": "CREATE TABLE Rating (mID VARCHAR, stars VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM county_public_safety", "question": "How many counties are there?", "context": "CREATE TABLE county_public_safety (Id VARCHAR)"}, {"answer": "SELECT Name FROM county_public_safety ORDER BY Population DESC", "question": "List the names of counties in descending order of population.", "context": "CREATE TABLE county_public_safety (Name VARCHAR, Population VARCHAR)"}, {"answer": "SELECT DISTINCT Police_force FROM county_public_safety WHERE LOCATION <> \"East\"", "question": "List the distinct police forces of counties whose location is not on east side.", "context": "CREATE TABLE county_public_safety (Police_force VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT MIN(Crime_rate), MAX(Crime_rate) FROM county_public_safety", "question": "What are the minimum and maximum crime rate of counties?", "context": "CREATE TABLE county_public_safety (Crime_rate INTEGER)"}, {"answer": "SELECT Crime_rate FROM county_public_safety ORDER BY Police_officers", "question": "Show the crime rates of counties in ascending order of number of police officers.", "context": "CREATE TABLE county_public_safety (Crime_rate VARCHAR, Police_officers VARCHAR)"}, {"answer": "SELECT Name FROM city ORDER BY Name", "question": "What are the names of cities in ascending alphabetical order?", "context": "CREATE TABLE city (Name VARCHAR)"}, {"answer": "SELECT Hispanic FROM city WHERE Black > 10", "question": "What are the percentage of hispanics in cities with the black percentage higher than 10?", "context": "CREATE TABLE city (Hispanic VARCHAR, Black INTEGER)"}, {"answer": "SELECT Name FROM county_public_safety ORDER BY Population DESC LIMIT 1", "question": "List the name of the county with the largest population.", "context": "CREATE TABLE county_public_safety (Name VARCHAR, Population VARCHAR)"}, {"answer": "SELECT Name FROM city ORDER BY White DESC LIMIT 5", "question": "List the names of the city with the top 5 white percentages.", "context": "CREATE TABLE city (Name VARCHAR, White VARCHAR)"}, {"answer": "SELECT T1.Name, T2.Name FROM city AS T1 JOIN county_public_safety AS T2 ON T1.County_ID = T2.County_ID", "question": "Show names of cities and names of counties they are in.", "context": "CREATE TABLE city (Name VARCHAR, County_ID VARCHAR); CREATE TABLE county_public_safety (Name VARCHAR, County_ID VARCHAR)"}, {"answer": "SELECT T1.White, T2.Crime_rate FROM city AS T1 JOIN county_public_safety AS T2 ON T1.County_ID = T2.County_ID", "question": "Show white percentages of cities and the crime rates of counties they are in.", "context": "CREATE TABLE city (White VARCHAR, County_ID VARCHAR); CREATE TABLE county_public_safety (Crime_rate VARCHAR, County_ID VARCHAR)"}, {"answer": "SELECT name FROM city WHERE county_ID = (SELECT county_ID FROM county_public_safety ORDER BY Police_officers DESC LIMIT 1)", "question": "Show the name of cities in the county that has the largest number of police officers.", "context": "CREATE TABLE city (name VARCHAR, county_ID VARCHAR, Police_officers VARCHAR); CREATE TABLE county_public_safety (name VARCHAR, county_ID VARCHAR, Police_officers VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM city WHERE county_ID IN (SELECT county_ID FROM county_public_safety WHERE population > 20000)", "question": "Show the number of cities in counties that have a population more than 20000.", "context": "CREATE TABLE county_public_safety (county_ID VARCHAR, population INTEGER); CREATE TABLE city (county_ID VARCHAR, population INTEGER)"}, {"answer": "SELECT T2.Crime_rate FROM city AS T1 JOIN county_public_safety AS T2 ON T1.County_ID = T2.County_ID WHERE T1.White > 90", "question": "Show the crime rate of counties with a city having white percentage more than 90.", "context": "CREATE TABLE county_public_safety (Crime_rate VARCHAR, County_ID VARCHAR); CREATE TABLE city (County_ID VARCHAR, White INTEGER)"}, {"answer": "SELECT Police_force, COUNT(*) FROM county_public_safety GROUP BY Police_force", "question": "Please show the police forces and the number of counties with each police force.", "context": "CREATE TABLE county_public_safety (Police_force VARCHAR)"}, {"answer": "SELECT LOCATION FROM county_public_safety GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the location shared by most counties?", "context": "CREATE TABLE county_public_safety (LOCATION VARCHAR)"}, {"answer": "SELECT Name FROM county_public_safety WHERE NOT County_ID IN (SELECT County_ID FROM city)", "question": "List the names of counties that do not have any cities.", "context": "CREATE TABLE city (Name VARCHAR, County_ID VARCHAR); CREATE TABLE county_public_safety (Name VARCHAR, County_ID VARCHAR)"}, {"answer": "SELECT Police_force FROM county_public_safety WHERE LOCATION = \"East\" INTERSECT SELECT Police_force FROM county_public_safety WHERE LOCATION = \"West\"", "question": "Show the police force shared by counties with location on the east and west.", "context": "CREATE TABLE county_public_safety (Police_force VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT name FROM city WHERE county_id IN (SELECT county_id FROM county_public_safety WHERE Crime_rate < 100)", "question": "Show the names of cities in counties that have a crime rate less than 100.", "context": "CREATE TABLE county_public_safety (name VARCHAR, county_id VARCHAR, Crime_rate INTEGER); CREATE TABLE city (name VARCHAR, county_id VARCHAR, Crime_rate INTEGER)"}, {"answer": "SELECT Case_burden FROM county_public_safety ORDER BY Population DESC", "question": "Show the case burden of counties in descending order of population.", "context": "CREATE TABLE county_public_safety (Case_burden VARCHAR, Population VARCHAR)"}, {"answer": "SELECT roomName FROM Rooms WHERE basePrice < 160 AND beds = 2 AND decor = 'modern'", "question": "Find the names of all modern rooms with a base price below $160 and two beds.", "context": "CREATE TABLE Rooms (roomName VARCHAR, decor VARCHAR, basePrice VARCHAR, beds VARCHAR)"}, {"answer": "SELECT roomName, RoomId FROM Rooms WHERE basePrice > 160 AND maxOccupancy > 2", "question": "Find all the rooms that have a price higher than 160 and can accommodate more than 2 people. Report room names and ids.", "context": "CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR, basePrice VARCHAR, maxOccupancy VARCHAR)"}, {"answer": "SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the most popular room in the hotel. The most popular room is the room that had seen the largest number of reservations.", "context": "CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR)"}, {"answer": "SELECT kids FROM Reservations WHERE FirstName = \"ROY\" AND LastName = \"SWEAZY\"", "question": "How many kids stay in the rooms reserved by ROY SWEAZY?", "context": "CREATE TABLE Reservations (kids VARCHAR, FirstName VARCHAR, LastName VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Reservations WHERE FirstName = \"ROY\" AND LastName = \"SWEAZY\"", "question": "How many times does ROY SWEAZY has reserved a room.", "context": "CREATE TABLE Reservations (FirstName VARCHAR, LastName VARCHAR)"}, {"answer": "SELECT T2.roomName, T1.Rate, T1.CheckIn, T1.CheckOut FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room ORDER BY T1.Rate DESC LIMIT 1", "question": "Which room has the highest rate? List the room's full name, rate, check in and check out date.", "context": "CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR); CREATE TABLE Reservations (Rate VARCHAR, CheckIn VARCHAR, CheckOut VARCHAR, Room VARCHAR)"}, {"answer": "SELECT Adults FROM Reservations WHERE CheckIn = \"2010-10-23\" AND FirstName = \"CONRAD\" AND LastName = \"SELBIG\"", "question": "How many adults stay in the room CONRAD SELBIG checked in on Oct 23, 2010?", "context": "CREATE TABLE Reservations (Adults VARCHAR, LastName VARCHAR, CheckIn VARCHAR, FirstName VARCHAR)"}, {"answer": "SELECT Kids FROM Reservations WHERE CheckIn = \"2010-09-21\" AND FirstName = \"DAMIEN\" AND LastName = \"TRACHSEL\"", "question": "How many kids stay in the room DAMIEN TRACHSEL checked in on Sep 21, 2010?", "context": "CREATE TABLE Reservations (Kids VARCHAR, LastName VARCHAR, CheckIn VARCHAR, FirstName VARCHAR)"}, {"answer": "SELECT SUM(beds) FROM Rooms WHERE bedtype = 'King'", "question": "How many king beds are there?", "context": "CREATE TABLE Rooms (beds INTEGER, bedtype VARCHAR)"}, {"answer": "SELECT roomName, decor FROM Rooms WHERE bedtype = 'King' ORDER BY basePrice", "question": "List the names and decor of rooms that have a king bed. Sort the list by their price.", "context": "CREATE TABLE Rooms (roomName VARCHAR, decor VARCHAR, bedtype VARCHAR, basePrice VARCHAR)"}, {"answer": "SELECT roomName, basePrice FROM Rooms ORDER BY basePrice LIMIT 1", "question": "Which room has cheapest base price? List the room's name and the base price.", "context": "CREATE TABLE Rooms (roomName VARCHAR, basePrice VARCHAR)"}, {"answer": "SELECT decor FROM Rooms WHERE roomName = \"Recluse and defiance\"", "question": "What is the decor of room Recluse and defiance?", "context": "CREATE TABLE Rooms (decor VARCHAR, roomName VARCHAR)"}, {"answer": "SELECT bedType, AVG(basePrice) FROM Rooms GROUP BY bedType", "question": "What is the average base price of different bed type? List bed type and average base price.", "context": "CREATE TABLE Rooms (bedType VARCHAR, basePrice INTEGER)"}, {"answer": "SELECT SUM(maxOccupancy) FROM Rooms WHERE decor = 'modern'", "question": "What is the total number of people who could stay in the modern rooms in this inn?", "context": "CREATE TABLE Rooms (maxOccupancy INTEGER, decor VARCHAR)"}, {"answer": "SELECT T2.decor FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T2.decor ORDER BY COUNT(T2.decor) LIMIT 1", "question": "What kind of decor has the least number of reservations?", "context": "CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (decor VARCHAR, RoomId VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE T2.maxOccupancy = T1.Adults + T1.Kids", "question": "List how many times the number of people in the room reached the maximum occupancy of the room. The number of people include adults and kids.", "context": "CREATE TABLE Rooms (RoomId VARCHAR, maxOccupancy VARCHAR); CREATE TABLE Reservations (Room VARCHAR, Adults VARCHAR, Kids VARCHAR)"}, {"answer": "SELECT T1.firstname, T1.lastname FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE T1.Rate - T2.basePrice > 0", "question": "Find the first and last names of people who payed more than the rooms' base prices.", "context": "CREATE TABLE Reservations (firstname VARCHAR, lastname VARCHAR, Room VARCHAR, Rate VARCHAR); CREATE TABLE Rooms (RoomId VARCHAR, basePrice VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Rooms", "question": "How many rooms are there?", "context": "CREATE TABLE Rooms (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Rooms WHERE bedType = \"King\"", "question": "Find the number of rooms with a king bed.", "context": "CREATE TABLE Rooms (bedType VARCHAR)"}, {"answer": "SELECT bedType, COUNT(*) FROM Rooms GROUP BY bedType", "question": "Find the number of rooms for each bed type.", "context": "CREATE TABLE Rooms (bedType VARCHAR)"}, {"answer": "SELECT roomName FROM Rooms ORDER BY maxOccupancy DESC LIMIT 1", "question": "Find the name of the room with the maximum occupancy.", "context": "CREATE TABLE Rooms (roomName VARCHAR, maxOccupancy VARCHAR)"}, {"answer": "SELECT RoomId, roomName FROM Rooms ORDER BY basePrice DESC LIMIT 1", "question": "Find the id and name of the most expensive base price room.", "context": "CREATE TABLE Rooms (RoomId VARCHAR, roomName VARCHAR, basePrice VARCHAR)"}, {"answer": "SELECT roomName, bedType FROM Rooms WHERE decor = \"traditional\"", "question": "List the type of bed and name of all traditional rooms.", "context": "CREATE TABLE Rooms (roomName VARCHAR, bedType VARCHAR, decor VARCHAR)"}, {"answer": "SELECT decor, COUNT(*) FROM Rooms WHERE bedType = \"King\" GROUP BY decor", "question": "Find the number of rooms with king bed for each decor type.", "context": "CREATE TABLE Rooms (decor VARCHAR, bedType VARCHAR)"}, {"answer": "SELECT decor, AVG(basePrice), MIN(basePrice) FROM Rooms GROUP BY decor", "question": "Find the average and minimum price of the rooms in different decor.", "context": "CREATE TABLE Rooms (decor VARCHAR, basePrice INTEGER)"}, {"answer": "SELECT roomName FROM Rooms ORDER BY basePrice", "question": "List the name of all rooms sorted by their prices.", "context": "CREATE TABLE Rooms (roomName VARCHAR, basePrice VARCHAR)"}, {"answer": "SELECT decor, COUNT(*) FROM Rooms WHERE basePrice > 120 GROUP BY decor", "question": "Find the number of rooms with price higher than 120 for different decor.", "context": "CREATE TABLE Rooms (decor VARCHAR, basePrice INTEGER)"}, {"answer": "SELECT roomName FROM Rooms WHERE bedType = \"King\" OR bedType = \"Queen\"", "question": "List the name of rooms with king or queen bed.", "context": "CREATE TABLE Rooms (roomName VARCHAR, bedType VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT bedType) FROM Rooms", "question": "How many different types of beds are there?", "context": "CREATE TABLE Rooms (bedType VARCHAR)"}, {"answer": "SELECT RoomId, roomName FROM Rooms ORDER BY basePrice DESC LIMIT 3", "question": "Find the name and id of the top 3 expensive rooms.", "context": "CREATE TABLE Rooms (RoomId VARCHAR, roomName VARCHAR, basePrice VARCHAR)"}, {"answer": "SELECT roomName FROM Rooms WHERE basePrice > (SELECT AVG(basePrice) FROM Rooms)", "question": "Find the name of rooms whose price is higher than the average price.", "context": "CREATE TABLE Rooms (roomName VARCHAR, basePrice INTEGER)"}, {"answer": "SELECT COUNT(*) FROM rooms WHERE NOT roomid IN (SELECT DISTINCT room FROM reservations)", "question": "Find the number of rooms that do not have any reservation.", "context": "CREATE TABLE rooms (roomid VARCHAR, room VARCHAR); CREATE TABLE reservations (roomid VARCHAR, room VARCHAR)"}, {"answer": "SELECT T2.roomName, COUNT(*), T1.Room FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room", "question": "Return the name and number of reservations made for each of the rooms.", "context": "CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR)"}, {"answer": "SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room HAVING COUNT(*) > 60", "question": "Find the names of rooms that have been reserved for more than 60 times.", "context": "CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR)"}, {"answer": "SELECT roomname FROM rooms WHERE baseprice BETWEEN 120 AND 150", "question": "Find the name of rooms whose base price is between 120 and 150.", "context": "CREATE TABLE rooms (roomname VARCHAR, baseprice INTEGER)"}, {"answer": "SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE firstname LIKE '%ROY%'", "question": "Find the name of rooms booked by some customers whose first name contains ROY.", "context": "CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR)"}, {"answer": "SELECT T1.cmi_details FROM Customer_Master_Index AS T1 JOIN CMI_Cross_References AS T2 ON T1.master_customer_id = T2.master_customer_id WHERE T2.source_system_code = 'Tax'", "question": "what are the details of the cmi masters that have the cross reference code 'Tax'?", "context": "CREATE TABLE CMI_Cross_References (master_customer_id VARCHAR, source_system_code VARCHAR); CREATE TABLE Customer_Master_Index (cmi_details VARCHAR, master_customer_id VARCHAR)"}, {"answer": "SELECT T1.cmi_cross_ref_id, T1.source_system_code FROM CMI_Cross_References AS T1 JOIN Council_Tax AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id GROUP BY T1.cmi_cross_ref_id HAVING COUNT(*) >= 1", "question": "What is the cmi cross reference id that is related to at least one council tax entry? List the cross reference id and source system code.", "context": "CREATE TABLE Council_Tax (cmi_cross_ref_id VARCHAR); CREATE TABLE CMI_Cross_References (cmi_cross_ref_id VARCHAR, source_system_code VARCHAR)"}, {"answer": "SELECT T2.cmi_cross_ref_id, T2.master_customer_id, COUNT(*) FROM Business_Rates AS T1 JOIN CMI_Cross_References AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id GROUP BY T2.cmi_cross_ref_id", "question": "How many business rates are related to each cmi cross reference? List cross reference id, master customer id and the n", "context": "CREATE TABLE CMI_Cross_References (cmi_cross_ref_id VARCHAR, master_customer_id VARCHAR); CREATE TABLE Business_Rates (cmi_cross_ref_id VARCHAR)"}, {"answer": "SELECT T1.source_system_code, T2.council_tax_id FROM CMI_Cross_References AS T1 JOIN Benefits_Overpayments AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id ORDER BY T2.council_tax_id", "question": "What is the tax source system code related to the benefits and overpayments? List the code and the benifit id, order by benifit id.", "context": "CREATE TABLE CMI_Cross_References (source_system_code VARCHAR, cmi_cross_ref_id VARCHAR); CREATE TABLE Benefits_Overpayments (council_tax_id VARCHAR, cmi_cross_ref_id VARCHAR)"}, {"answer": "SELECT T1.source_system_code, T1.master_customer_id, T2.council_tax_id FROM CMI_Cross_References AS T1 JOIN Parking_Fines AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id", "question": "Wat is the tax source system code and master customer id of the taxes related to each parking fine id?", "context": "CREATE TABLE CMI_Cross_References (source_system_code VARCHAR, master_customer_id VARCHAR, cmi_cross_ref_id VARCHAR); CREATE TABLE Parking_Fines (council_tax_id VARCHAR, cmi_cross_ref_id VARCHAR)"}, {"answer": "SELECT T1.council_tax_id FROM Rent_Arrears AS T1 JOIN CMI_Cross_References AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id JOIN Customer_Master_Index AS T3 ON T3.master_customer_id = T2.master_customer_id WHERE T3.cmi_details <> 'Schmidt ,  Kertzmann and Lubowitz'", "question": "What are the renting arrears tax ids related to the customer master index whose detail is not 'Schmidt, Kertzmann and Lubowitz'?", "context": "CREATE TABLE Rent_Arrears (council_tax_id VARCHAR, cmi_cross_ref_id VARCHAR); CREATE TABLE Customer_Master_Index (master_customer_id VARCHAR, cmi_details VARCHAR); CREATE TABLE CMI_Cross_References (cmi_cross_ref_id VARCHAR, master_customer_id VARCHAR)"}, {"answer": "SELECT T1.electoral_register_id FROM Electoral_Register AS T1 JOIN CMI_Cross_References AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id WHERE T2.source_system_code = 'Electoral' OR T2.source_system_code = 'Tax'", "question": "What are the register ids of electoral registries that have the cross reference source system code 'Electoral' or 'Tax'?", "context": "CREATE TABLE Electoral_Register (electoral_register_id VARCHAR, cmi_cross_ref_id VARCHAR); CREATE TABLE CMI_Cross_References (cmi_cross_ref_id VARCHAR, source_system_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT source_system_code) FROM CMI_cross_references", "question": "How many different source system code for the cmi cross references are there?", "context": "CREATE TABLE CMI_cross_references (source_system_code VARCHAR)"}, {"answer": "SELECT * FROM customer_master_index ORDER BY cmi_details DESC", "question": "List all information about customer master index, and sort them by details in descending order.", "context": "CREATE TABLE customer_master_index (cmi_details VARCHAR)"}, {"answer": "SELECT council_tax_id, cmi_cross_ref_id FROM parking_fines", "question": "List the council tax ids and their related cmi cross references of all the parking fines.", "context": "CREATE TABLE parking_fines (council_tax_id VARCHAR, cmi_cross_ref_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM rent_arrears", "question": "How many council taxes are collected for renting arrears ?", "context": "CREATE TABLE rent_arrears (Id VARCHAR)"}, {"answer": "SELECT DISTINCT T2.source_system_code FROM customer_master_index AS T1 JOIN cmi_cross_references AS T2 ON T1.master_customer_id = T2.master_customer_id WHERE T1.cmi_details = 'Gottlieb ,  Becker and Wyman'", "question": "What are the distinct cross reference source system codes which are related to the master customer details 'Gottlieb, Becker and Wyman'?", "context": "CREATE TABLE customer_master_index (master_customer_id VARCHAR, cmi_details VARCHAR); CREATE TABLE cmi_cross_references (source_system_code VARCHAR, master_customer_id VARCHAR)"}, {"answer": "SELECT cmi_cross_ref_id FROM cmi_cross_references EXCEPT SELECT cmi_cross_ref_id FROM parking_fines", "question": "Which cmi cross reference id is not related to any parking taxes?", "context": "CREATE TABLE parking_fines (cmi_cross_ref_id VARCHAR); CREATE TABLE cmi_cross_references (cmi_cross_ref_id VARCHAR)"}, {"answer": "SELECT DISTINCT source_system_code FROM cmi_cross_references WHERE source_system_code LIKE '%en%'", "question": "Which distinct source system code includes the substring 'en'?", "context": "CREATE TABLE cmi_cross_references (source_system_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM party", "question": "How many parties are there?", "context": "CREATE TABLE party (Id VARCHAR)"}, {"answer": "SELECT Party_Theme FROM party ORDER BY Number_of_hosts", "question": "List the themes of parties in ascending order of number of hosts.", "context": "CREATE TABLE party (Party_Theme VARCHAR, Number_of_hosts VARCHAR)"}, {"answer": "SELECT Party_Theme, LOCATION FROM party", "question": "What are the themes and locations of parties?", "context": "CREATE TABLE party (Party_Theme VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT First_year, Last_year FROM party WHERE Party_Theme = \"Spring\" OR Party_Theme = \"Teqnology\"", "question": "Show the first year and last year of parties with theme \"Spring\" or \"Teqnology\".", "context": "CREATE TABLE party (First_year VARCHAR, Last_year VARCHAR, Party_Theme VARCHAR)"}, {"answer": "SELECT AVG(Number_of_hosts) FROM party", "question": "What is the average number of hosts for parties?", "context": "CREATE TABLE party (Number_of_hosts INTEGER)"}, {"answer": "SELECT LOCATION FROM party ORDER BY Number_of_hosts DESC LIMIT 1", "question": "What is the location of the party with the most hosts?", "context": "CREATE TABLE party (LOCATION VARCHAR, Number_of_hosts VARCHAR)"}, {"answer": "SELECT Nationality, COUNT(*) FROM HOST GROUP BY Nationality", "question": "Show different nationalities along with the number of hosts of each nationality.", "context": "CREATE TABLE HOST (Nationality VARCHAR)"}, {"answer": "SELECT Nationality FROM HOST GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most common nationality of hosts.", "context": "CREATE TABLE HOST (Nationality VARCHAR)"}, {"answer": "SELECT Nationality FROM HOST WHERE Age > 45 INTERSECT SELECT Nationality FROM HOST WHERE Age < 35", "question": "Show the nations that have both hosts older than 45 and hosts younger than 35.", "context": "CREATE TABLE HOST (Nationality VARCHAR, Age INTEGER)"}, {"answer": "SELECT T3.Party_Theme, T2.Name FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID", "question": "Show the themes of parties and the names of the party hosts.", "context": "CREATE TABLE HOST (Name VARCHAR, Host_ID VARCHAR); CREATE TABLE party_host (Host_ID VARCHAR, Party_ID VARCHAR); CREATE TABLE party (Party_Theme VARCHAR, Party_ID VARCHAR)"}, {"answer": "SELECT T3.Location, T2.Name FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID ORDER BY T2.Age", "question": "Show the locations of parties and the names of the party hosts in ascending order of the age of the host.", "context": "CREATE TABLE party (Location VARCHAR, Party_ID VARCHAR); CREATE TABLE HOST (Name VARCHAR, Host_ID VARCHAR, Age VARCHAR); CREATE TABLE party_host (Host_ID VARCHAR, Party_ID VARCHAR)"}, {"answer": "SELECT T3.Location FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID WHERE T2.Age > 50", "question": "Show the locations of parties with hosts older than 50.", "context": "CREATE TABLE party (Location VARCHAR, Party_ID VARCHAR); CREATE TABLE party_host (Host_ID VARCHAR, Party_ID VARCHAR); CREATE TABLE HOST (Host_ID VARCHAR, Age INTEGER)"}, {"answer": "SELECT T2.Name FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID WHERE T3.Number_of_hosts > 20", "question": "Show the host names for parties with number of hosts greater than 20.", "context": "CREATE TABLE HOST (Name VARCHAR, Host_ID VARCHAR); CREATE TABLE party_host (Host_ID VARCHAR, Party_ID VARCHAR); CREATE TABLE party (Party_ID VARCHAR, Number_of_hosts INTEGER)"}, {"answer": "SELECT Name, Nationality FROM HOST ORDER BY Age DESC LIMIT 1", "question": "Show the name and the nationality of the oldest host.", "context": "CREATE TABLE HOST (Name VARCHAR, Nationality VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Name FROM HOST WHERE NOT Host_ID IN (SELECT Host_ID FROM party_host)", "question": "List the names of hosts who did not serve as a host of any party in our record.", "context": "CREATE TABLE HOST (Name VARCHAR, Host_ID VARCHAR); CREATE TABLE party_host (Name VARCHAR, Host_ID VARCHAR)"}, {"answer": "SELECT region_code, region_name FROM region ORDER BY region_code", "question": "Show all region code and region name sorted by the codes.", "context": "CREATE TABLE region (region_code VARCHAR, region_name VARCHAR)"}, {"answer": "SELECT region_name FROM region ORDER BY region_name", "question": "List all region names in alphabetical order.", "context": "CREATE TABLE region (region_name VARCHAR)"}, {"answer": "SELECT region_name FROM region WHERE region_name <> 'Denmark'", "question": "Show names for all regions except for Denmark.", "context": "CREATE TABLE region (region_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM storm WHERE Number_Deaths > 0", "question": "How many storms had death records?", "context": "CREATE TABLE storm (Number_Deaths INTEGER)"}, {"answer": "SELECT name, dates_active, number_deaths FROM storm WHERE number_deaths >= 1", "question": "List name, dates active, and number of deaths for all storms with at least 1 death.", "context": "CREATE TABLE storm (name VARCHAR, dates_active VARCHAR, number_deaths VARCHAR)"}, {"answer": "SELECT AVG(damage_millions_USD), MAX(damage_millions_USD) FROM storm WHERE max_speed > 1000", "question": "Show the average and maximum damage for all storms with max speed higher than 1000.", "context": "CREATE TABLE storm (damage_millions_USD INTEGER, max_speed INTEGER)"}, {"answer": "SELECT SUM(number_deaths), SUM(damage_millions_USD) FROM storm WHERE max_speed > (SELECT AVG(max_speed) FROM storm)", "question": "What is the total number of deaths and damage for all storms with a max speed greater than the average?", "context": "CREATE TABLE storm (number_deaths INTEGER, damage_millions_USD INTEGER, max_speed INTEGER)"}, {"answer": "SELECT name, damage_millions_USD FROM storm ORDER BY max_speed DESC", "question": "List name and damage for all storms in a descending order of max speed.", "context": "CREATE TABLE storm (name VARCHAR, damage_millions_USD VARCHAR, max_speed VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT region_id) FROM affected_region", "question": "How many regions are affected?", "context": "CREATE TABLE affected_region (region_id VARCHAR)"}, {"answer": "SELECT region_name FROM region WHERE NOT region_id IN (SELECT region_id FROM affected_region)", "question": "Show the name for regions not affected.", "context": "CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_name VARCHAR, region_id VARCHAR)"}, {"answer": "SELECT T1.region_name, COUNT(*) FROM region AS T1 JOIN affected_region AS T2 ON T1.region_id = T2.region_id GROUP BY T1.region_id", "question": "Show the name for regions and the number of storms for each region.", "context": "CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR)"}, {"answer": "SELECT T1.name, COUNT(*) FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id", "question": "List the name for storms and the number of affected regions for each storm.", "context": "CREATE TABLE affected_region (storm_id VARCHAR); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR)"}, {"answer": "SELECT T1.name, T1.max_speed FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the storm name and max speed which affected the greatest number of regions?", "context": "CREATE TABLE storm (name VARCHAR, max_speed VARCHAR, storm_id VARCHAR); CREATE TABLE affected_region (storm_id VARCHAR)"}, {"answer": "SELECT name FROM storm WHERE NOT storm_id IN (SELECT storm_id FROM affected_region)", "question": "Show the name of storms which don't have affected region in record.", "context": "CREATE TABLE affected_region (name VARCHAR, storm_id VARCHAR); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR)"}, {"answer": "SELECT T1.name FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id HAVING COUNT(*) >= 2 INTERSECT SELECT T1.name FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id HAVING SUM(T2.number_city_affected) >= 10", "question": "Show storm name with at least two regions and 10 cities affected.", "context": "CREATE TABLE affected_region (storm_id VARCHAR, number_city_affected INTEGER); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR)"}, {"answer": "SELECT name FROM storm EXCEPT SELECT T1.name FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id HAVING COUNT(*) >= 2", "question": "Show all storm names except for those with at least two affected regions.", "context": "CREATE TABLE storm (name VARCHAR); CREATE TABLE affected_region (storm_id VARCHAR); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR)"}, {"answer": "SELECT T2.region_name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T3.number_deaths >= 10", "question": "What are the region names affected by the storm with a number of deaths of least 10?", "context": "CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE storm (storm_id VARCHAR, number_deaths VARCHAR)"}, {"answer": "SELECT T3.name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T2.region_name = 'Denmark'", "question": "Show all storm names affecting region \"Denmark\".", "context": "CREATE TABLE region (region_id VARCHAR, region_name VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR)"}, {"answer": "SELECT T1.region_name FROM region AS T1 JOIN affected_region AS T2 ON T1.region_id = T2.region_id GROUP BY T1.region_id HAVING COUNT(*) >= 2", "question": "Show the region name with at least two storms.", "context": "CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR)"}, {"answer": "SELECT T2.region_name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id ORDER BY T3.Number_Deaths DESC LIMIT 1", "question": "Find the names of the regions which were affected by the storm that killed the greatest number of people.", "context": "CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE storm (storm_id VARCHAR, Number_Deaths VARCHAR)"}, {"answer": "SELECT T3.Name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T2.Region_name = 'Afghanistan' INTERSECT SELECT T3.Name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T2.Region_name = 'Albania'", "question": "Find the name of the storm that affected both Afghanistan and Albania regions.", "context": "CREATE TABLE storm (Name VARCHAR, storm_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE region (region_id VARCHAR, Region_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM county", "question": "How many counties are there in total?", "context": "CREATE TABLE county (Id VARCHAR)"}, {"answer": "SELECT County_name, Population FROM county", "question": "Show the county name and population of all counties.", "context": "CREATE TABLE county (County_name VARCHAR, Population VARCHAR)"}, {"answer": "SELECT AVG(Population) FROM county", "question": "Show the average population of all counties.", "context": "CREATE TABLE county (Population INTEGER)"}, {"answer": "SELECT MAX(Population), MIN(Population) FROM county", "question": "Return the maximum and minimum population among all counties.", "context": "CREATE TABLE county (Population INTEGER)"}, {"answer": "SELECT DISTINCT District FROM election", "question": "Show all the distinct districts for elections.", "context": "CREATE TABLE election (District VARCHAR)"}, {"answer": "SELECT Zip_code FROM county WHERE County_name = \"Howard\"", "question": "Show the zip code of the county with name \"Howard\".", "context": "CREATE TABLE county (Zip_code VARCHAR, County_name VARCHAR)"}, {"answer": "SELECT Delegate FROM election WHERE District = 1", "question": "Show the delegate from district 1 in election.", "context": "CREATE TABLE election (Delegate VARCHAR, District VARCHAR)"}, {"answer": "SELECT Delegate, Committee FROM election", "question": "Show the delegate and committee information of elections.", "context": "CREATE TABLE election (Delegate VARCHAR, Committee VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Governor) FROM party", "question": "How many distinct governors are there?", "context": "CREATE TABLE party (Governor VARCHAR)"}, {"answer": "SELECT Lieutenant_Governor, Comptroller FROM party WHERE Party = \"Democratic\"", "question": "Show the lieutenant governor and comptroller from the democratic party.", "context": "CREATE TABLE party (Lieutenant_Governor VARCHAR, Comptroller VARCHAR, Party VARCHAR)"}, {"answer": "SELECT DISTINCT YEAR FROM party WHERE Governor = \"Eliot Spitzer\"", "question": "In which distinct years was the governor \"Eliot Spitzer\"?", "context": "CREATE TABLE party (YEAR VARCHAR, Governor VARCHAR)"}, {"answer": "SELECT * FROM election", "question": "Show all the information about election.", "context": "CREATE TABLE election (Id VARCHAR)"}, {"answer": "SELECT T2.Delegate, T1.County_name FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District", "question": "Show the delegates and the names of county they belong to.", "context": "CREATE TABLE election (Delegate VARCHAR, District VARCHAR); CREATE TABLE county (County_name VARCHAR, County_id VARCHAR)"}, {"answer": "SELECT T2.Delegate FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District WHERE T1.Population < 100000", "question": "Which delegates are from counties with population smaller than 100000?", "context": "CREATE TABLE election (Delegate VARCHAR, District VARCHAR); CREATE TABLE county (County_id VARCHAR, Population INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT T2.Delegate) FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District WHERE T1.Population > 50000", "question": "How many distinct delegates are from counties with population larger than 50000?", "context": "CREATE TABLE election (Delegate VARCHAR, District VARCHAR); CREATE TABLE county (County_id VARCHAR, Population INTEGER)"}, {"answer": "SELECT T1.County_name FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District WHERE T2.Committee = \"Appropriations\"", "question": "What are the names of the county that the delegates on \"Appropriations\" committee belong to?", "context": "CREATE TABLE election (District VARCHAR, Committee VARCHAR); CREATE TABLE county (County_name VARCHAR, County_id VARCHAR)"}, {"answer": "SELECT T1.Delegate, T2.Party FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID", "question": "Show the delegates and the names of the party they belong to.", "context": "CREATE TABLE election (Delegate VARCHAR, Party VARCHAR); CREATE TABLE party (Party VARCHAR, Party_ID VARCHAR)"}, {"answer": "SELECT T2.Governor FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T1.District = 1", "question": "Who were the governors of the parties associated with delegates from district 1?", "context": "CREATE TABLE party (Governor VARCHAR, Party_ID VARCHAR); CREATE TABLE election (Party VARCHAR, District VARCHAR)"}, {"answer": "SELECT T2.Comptroller FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T1.District = 1 OR T1.District = 2", "question": "Who were the comptrollers of the parties associated with the delegates from district 1 or district 2?", "context": "CREATE TABLE party (Comptroller VARCHAR, Party_ID VARCHAR); CREATE TABLE election (Party VARCHAR, District VARCHAR)"}, {"answer": "SELECT T1.Committee FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T2.Party = \"Democratic\"", "question": "Return all the committees that have delegates from Democratic party.", "context": "CREATE TABLE election (Committee VARCHAR, Party VARCHAR); CREATE TABLE party (Party_ID VARCHAR, Party VARCHAR)"}, {"answer": "SELECT T1.County_name, COUNT(*) FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District GROUP BY T1.County_id", "question": "Show the name of each county along with the corresponding number of delegates from that county.", "context": "CREATE TABLE election (District VARCHAR); CREATE TABLE county (County_name VARCHAR, County_id VARCHAR)"}, {"answer": "SELECT T2.Party, COUNT(*) FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID GROUP BY T1.Party", "question": "Show the name of each party and the corresponding number of delegates from that party.", "context": "CREATE TABLE election (Party VARCHAR); CREATE TABLE party (Party VARCHAR, Party_ID VARCHAR)"}, {"answer": "SELECT County_name FROM county ORDER BY Population", "question": "Return the names of all counties sorted by population in ascending order.", "context": "CREATE TABLE county (County_name VARCHAR, Population VARCHAR)"}, {"answer": "SELECT County_name FROM county ORDER BY County_name DESC", "question": "Return the names of all counties sorted by county name in descending alphabetical order.", "context": "CREATE TABLE county (County_name VARCHAR)"}, {"answer": "SELECT County_name FROM county ORDER BY Population DESC LIMIT 1", "question": "Show the name of the county with the biggest population.", "context": "CREATE TABLE county (County_name VARCHAR, Population VARCHAR)"}, {"answer": "SELECT County_name FROM county ORDER BY Population LIMIT 3", "question": "Show the 3 counties with the smallest population.", "context": "CREATE TABLE county (County_name VARCHAR, Population VARCHAR)"}, {"answer": "SELECT T1.County_name FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District GROUP BY T1.County_id HAVING COUNT(*) >= 2", "question": "Show the names of counties that have at least two delegates.", "context": "CREATE TABLE election (District VARCHAR); CREATE TABLE county (County_name VARCHAR, County_id VARCHAR)"}, {"answer": "SELECT Party FROM party GROUP BY Party HAVING COUNT(*) >= 2", "question": "Show the name of the party that has at least two records.", "context": "CREATE TABLE party (Party VARCHAR)"}, {"answer": "SELECT T2.Party FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID GROUP BY T1.Party ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the name of the party that has the most delegates.", "context": "CREATE TABLE election (Party VARCHAR); CREATE TABLE party (Party VARCHAR, Party_ID VARCHAR)"}, {"answer": "SELECT Governor FROM party GROUP BY Governor ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the people that have been governor the most times.", "context": "CREATE TABLE party (Governor VARCHAR)"}, {"answer": "SELECT Comptroller, COUNT(*) FROM party GROUP BY Comptroller ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the people that have been comptroller the most times and the corresponding number of times.", "context": "CREATE TABLE party (Comptroller VARCHAR)"}, {"answer": "SELECT Party FROM party WHERE NOT Party_ID IN (SELECT Party FROM election)", "question": "What are the names of parties that do not have delegates in election?", "context": "CREATE TABLE election (Party VARCHAR, Party_ID VARCHAR); CREATE TABLE party (Party VARCHAR, Party_ID VARCHAR)"}, {"answer": "SELECT T2.Party FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T1.Committee = \"Appropriations\" INTERSECT SELECT T2.Party FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T1.Committee = \"Economic Matters\"", "question": "What are the names of parties that have both delegates on \"Appropriations\" committee and", "context": "CREATE TABLE election (Party VARCHAR, Committee VARCHAR); CREATE TABLE party (Party VARCHAR, Party_ID VARCHAR)"}, {"answer": "SELECT T1.Committee FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T2.Party = \"Democratic\" INTERSECT SELECT T1.Committee FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T2.Party = \"Liberal\"", "question": "Which committees have delegates from both democratic party and liberal party?", "context": "CREATE TABLE election (Committee VARCHAR, Party VARCHAR); CREATE TABLE party (Party_ID VARCHAR, Party VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM journalist", "question": "How many journalists are there?", "context": "CREATE TABLE journalist (Id VARCHAR)"}, {"answer": "SELECT Name FROM journalist ORDER BY Years_working", "question": "List the names of journalists in ascending order of years working.", "context": "CREATE TABLE journalist (Name VARCHAR, Years_working VARCHAR)"}, {"answer": "SELECT Nationality, Age FROM journalist", "question": "What are the nationalities and ages of journalists?", "context": "CREATE TABLE journalist (Nationality VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Name FROM journalist WHERE Nationality = \"England\" OR Nationality = \"Wales\"", "question": "Show the names of journalists from \"England\" or \"Wales\".", "context": "CREATE TABLE journalist (Name VARCHAR, Nationality VARCHAR)"}, {"answer": "SELECT AVG(Years_working) FROM journalist", "question": "What is the average number of years spent working as a journalist?", "context": "CREATE TABLE journalist (Years_working INTEGER)"}, {"answer": "SELECT Nationality FROM journalist ORDER BY Years_working DESC LIMIT 1", "question": "What is the nationality of the journalist with the largest number of years working?", "context": "CREATE TABLE journalist (Nationality VARCHAR, Years_working VARCHAR)"}, {"answer": "SELECT Nationality, COUNT(*) FROM journalist GROUP BY Nationality", "question": "Show the different nationalities and the number of journalists of each nationality.", "context": "CREATE TABLE journalist (Nationality VARCHAR)"}, {"answer": "SELECT Nationality FROM journalist GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most common nationality for journalists.", "context": "CREATE TABLE journalist (Nationality VARCHAR)"}, {"answer": "SELECT Nationality FROM journalist WHERE Years_working > 10 INTERSECT SELECT Nationality FROM journalist WHERE Years_working < 3", "question": "Show the nations that have both journalists with more than 10 years of working and journalists with less than 3 years of working.", "context": "CREATE TABLE journalist (Nationality VARCHAR, Years_working INTEGER)"}, {"answer": "SELECT Date, Name, venue FROM event ORDER BY Event_Attendance DESC", "question": "Show the dates, places, and names of events in descending order of the attendance.", "context": "CREATE TABLE event (Date VARCHAR, Name VARCHAR, venue VARCHAR, Event_Attendance VARCHAR)"}, {"answer": "SELECT T3.Name, T2.Date FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID", "question": "Show the names of journalists and the dates of the events they reported.", "context": "CREATE TABLE journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Event_ID VARCHAR, journalist_ID VARCHAR); CREATE TABLE event (Date VARCHAR, Event_ID VARCHAR)"}, {"answer": "SELECT T3.Name, T2.Name FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID ORDER BY T2.Event_Attendance", "question": "Show the names of journalists and the names of the events they reported in ascending order", "context": "CREATE TABLE journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Event_ID VARCHAR, journalist_ID VARCHAR); CREATE TABLE event (Name VARCHAR, Event_ID VARCHAR, Event_Attendance VARCHAR)"}, {"answer": "SELECT T3.Name, COUNT(*) FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID GROUP BY T3.Name", "question": "Show the names of journalists and the number of events they reported.", "context": "CREATE TABLE journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Event_ID VARCHAR, journalist_ID VARCHAR); CREATE TABLE event (Event_ID VARCHAR)"}, {"answer": "SELECT T3.Name FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID GROUP BY T3.Name HAVING COUNT(*) > 1", "question": "Show the names of journalists that have reported more than one event.", "context": "CREATE TABLE journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Event_ID VARCHAR, journalist_ID VARCHAR); CREATE TABLE event (Event_ID VARCHAR)"}, {"answer": "SELECT Name FROM journalist WHERE NOT journalist_ID IN (SELECT journalist_ID FROM news_report)", "question": "List the names of journalists who have not reported any event.", "context": "CREATE TABLE journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Name VARCHAR, journalist_ID VARCHAR)"}, {"answer": "SELECT AVG(Event_Attendance), MAX(Event_Attendance) FROM event", "question": "what are the average and maximum attendances of all events?", "context": "CREATE TABLE event (Event_Attendance INTEGER)"}, {"answer": "SELECT AVG(t1.age), AVG(Years_working), t2.work_type FROM journalist AS t1 JOIN news_report AS t2 ON t1.journalist_id = t2.journalist_id GROUP BY t2.work_type", "question": "Find the average age and experience working length of journalists working on different role type.", "context": "CREATE TABLE news_report (work_type VARCHAR, journalist_id VARCHAR); CREATE TABLE journalist (age INTEGER, journalist_id VARCHAR)"}, {"answer": "SELECT venue, name FROM event ORDER BY Event_Attendance DESC LIMIT 2", "question": "List the event venues and names that have the top 2 most number of people attended.", "context": "CREATE TABLE event (venue VARCHAR, name VARCHAR, Event_Attendance VARCHAR)"}, {"answer": "SELECT ResName FROM Restaurant", "question": "Show me all the restaurants.", "context": "CREATE TABLE Restaurant (ResName VARCHAR)"}, {"answer": "SELECT Address FROM Restaurant WHERE ResName = \"Subway\"", "question": "What is the address of the restaurant Subway?", "context": "CREATE TABLE Restaurant (Address VARCHAR, ResName VARCHAR)"}, {"answer": "SELECT Rating FROM Restaurant WHERE ResName = \"Subway\"", "question": "What is the rating of the restaurant Subway?", "context": "CREATE TABLE Restaurant (Rating VARCHAR, ResName VARCHAR)"}, {"answer": "SELECT ResTypeName FROM Restaurant_Type", "question": "List all restaurant types.", "context": "CREATE TABLE Restaurant_Type (ResTypeName VARCHAR)"}, {"answer": "SELECT ResTypeDescription FROM Restaurant_Type WHERE ResTypeName = \"Sandwich\"", "question": "What is the description of the restaurant type Sandwich?", "context": "CREATE TABLE Restaurant_Type (ResTypeDescription VARCHAR, ResTypeName VARCHAR)"}, {"answer": "SELECT ResName, Rating FROM Restaurant ORDER BY Rating DESC LIMIT 1", "question": "Which restaurants have highest rating? List the restaurant name and its rating.", "context": "CREATE TABLE Restaurant (ResName VARCHAR, Rating VARCHAR)"}, {"answer": "SELECT Age FROM Student WHERE Fname = \"Linda\" AND Lname = \"Smith\"", "question": "What is the age of student Linda Smith?", "context": "CREATE TABLE Student (Age VARCHAR, Fname VARCHAR, Lname VARCHAR)"}, {"answer": "SELECT Sex FROM Student WHERE Fname = \"Linda\" AND Lname = \"Smith\"", "question": "What is the gender of the student Linda Smith?", "context": "CREATE TABLE Student (Sex VARCHAR, Fname VARCHAR, Lname VARCHAR)"}, {"answer": "SELECT Fname, Lname FROM Student WHERE Major = 600", "question": "List all students' first names and last names who majored in 600.", "context": "CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, Major VARCHAR)"}, {"answer": "SELECT city_code FROM Student WHERE Fname = \"Linda\" AND Lname = \"Smith\"", "question": "Which city does student Linda Smith live in?", "context": "CREATE TABLE Student (city_code VARCHAR, Fname VARCHAR, Lname VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Student WHERE Advisor = 1121", "question": "Advisor 1121 has how many students?", "context": "CREATE TABLE Student (Advisor VARCHAR)"}, {"answer": "SELECT Advisor, COUNT(*) FROM Student GROUP BY Advisor ORDER BY COUNT(Advisor) DESC LIMIT 1", "question": "Which Advisor has most of students? List advisor and the number of students.", "context": "CREATE TABLE Student (Advisor VARCHAR)"}, {"answer": "SELECT Major, COUNT(*) FROM Student GROUP BY Major ORDER BY COUNT(Major) LIMIT 1", "question": "Which major has least number of students? List the major and the number of students.", "context": "CREATE TABLE Student (Major VARCHAR)"}, {"answer": "SELECT Major, COUNT(*) FROM Student GROUP BY Major HAVING COUNT(Major) BETWEEN 2 AND 30", "question": "Which major has between 2 and 30 number of students? List major and the number of students.", "context": "CREATE TABLE Student (Major VARCHAR)"}, {"answer": "SELECT Fname, Lname FROM Student WHERE Age > 18 AND Major = 600", "question": "Which student's age is older than 18 and is majoring in 600? List each student's first and last name.", "context": "CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, Age VARCHAR, Major VARCHAR)"}, {"answer": "SELECT Fname, Lname FROM Student WHERE Age > 18 AND Major <> 600 AND Sex = 'F'", "question": "List all female students age is older than 18 who is not majoring in 600. List students' first name and last name.", "context": "CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, Sex VARCHAR, Age VARCHAR, Major VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Restaurant JOIN Type_Of_Restaurant ON Restaurant.ResID = Type_Of_Restaurant.ResID JOIN Restaurant_Type ON Type_Of_Restaurant.ResTypeID = Restaurant_Type.ResTypeID GROUP BY Type_Of_Restaurant.ResTypeID HAVING Restaurant_Type.ResTypeName = 'Sandwich'", "question": "How many restaurant is the Sandwich type restaurant?", "context": "CREATE TABLE Type_Of_Restaurant (Id VARCHAR); CREATE TABLE Restaurant (Id VARCHAR); CREATE TABLE Restaurant_Type (Id VARCHAR)"}, {"answer": "SELECT SUM(Spent) FROM Student JOIN Visits_Restaurant ON Student.StuID = Visits_Restaurant.StuID WHERE Student.Fname = \"Linda\" AND Student.Lname = \"Smith\"", "question": "How long does student Linda Smith spend on the restaurant in total?", "context": "CREATE TABLE Visits_Restaurant (Spent INTEGER); CREATE TABLE Student (Spent INTEGER)"}, {"answer": "SELECT COUNT(*) FROM Student JOIN Visits_Restaurant ON Student.StuID = Visits_Restaurant.StuID JOIN Restaurant ON Visits_Restaurant.ResID = Restaurant.ResID WHERE Student.Fname = \"Linda\" AND Student.Lname = \"Smith\" AND Restaurant.ResName = \"Subway\"", "question": "How many times has the student Linda Smith visited Subway?", "context": "CREATE TABLE Visits_Restaurant (Id VARCHAR); CREATE TABLE Student (Id VARCHAR); CREATE TABLE Restaurant (Id VARCHAR)"}, {"answer": "SELECT TIME FROM Student JOIN Visits_Restaurant ON Student.StuID = Visits_Restaurant.StuID JOIN Restaurant ON Visits_Restaurant.ResID = Restaurant.ResID WHERE Student.Fname = \"Linda\" AND Student.Lname = \"Smith\" AND Restaurant.ResName = \"Subway\"", "question": "When did Linda Smith visit Subway?", "context": "CREATE TABLE Restaurant (TIME VARCHAR); CREATE TABLE Visits_Restaurant (TIME VARCHAR); CREATE TABLE Student (TIME VARCHAR)"}, {"answer": "SELECT Restaurant.ResName, SUM(Visits_Restaurant.Spent) FROM Visits_Restaurant JOIN Restaurant ON Visits_Restaurant.ResID = Restaurant.ResID GROUP BY Restaurant.ResID ORDER BY SUM(Visits_Restaurant.Spent) LIMIT 1", "question": "At which restaurant did the students spend the least amount of time? List restaurant and the time students spent on in total.", "context": "CREATE TABLE Visits_Restaurant (Id VARCHAR); CREATE TABLE Restaurant (Id VARCHAR)"}, {"answer": "SELECT Student.Fname, Student.Lname FROM Student JOIN Visits_Restaurant ON Student.StuID = Visits_Restaurant.StuID GROUP BY Student.StuID ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which student visited restaurant most often? List student's first name and last name.", "context": "CREATE TABLE Visits_Restaurant (Id VARCHAR); CREATE TABLE Student (Id VARCHAR)"}, {"answer": "SELECT actual_order_id FROM actual_orders WHERE order_status_code = 'Success'", "question": "Find the ids of orders whose status is 'Success'.", "context": "CREATE TABLE actual_orders (actual_order_id VARCHAR, order_status_code VARCHAR)"}, {"answer": "SELECT t1.product_name, t1.product_price FROM products AS t1 JOIN regular_order_products AS t2 ON t1.product_id = t2.product_id GROUP BY t2.product_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name and price of the product that has been ordered the greatest number of times.", "context": "CREATE TABLE products (product_name VARCHAR, product_price VARCHAR, product_id VARCHAR); CREATE TABLE regular_order_products (product_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM customers", "question": "Find the number of customers in total.", "context": "CREATE TABLE customers (Id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT payment_method) FROM customers", "question": "How many different payment methods are there?", "context": "CREATE TABLE customers (payment_method VARCHAR)"}, {"answer": "SELECT truck_details FROM trucks ORDER BY truck_licence_number", "question": "Show the details of all trucks in the order of their license number.", "context": "CREATE TABLE trucks (truck_details VARCHAR, truck_licence_number VARCHAR)"}, {"answer": "SELECT product_name FROM products ORDER BY product_price DESC LIMIT 1", "question": "Find the name of the most expensive product.", "context": "CREATE TABLE products (product_name VARCHAR, product_price VARCHAR)"}, {"answer": "SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.state_province_county = 'California'", "question": "Find the names of customers who are not living in the state of California.", "context": "CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR); CREATE TABLE addresses (address_id VARCHAR, state_province_county VARCHAR)"}, {"answer": "SELECT customer_email, customer_name FROM customers WHERE payment_method = 'Visa'", "question": "List the names and emails of customers who payed by Visa card.", "context": "CREATE TABLE customers (customer_email VARCHAR, customer_name VARCHAR, payment_method VARCHAR)"}, {"answer": "SELECT t1.customer_name, t1.customer_phone FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.state_province_county = 'California'", "question": "Find the names and phone numbers of customers living in California state.", "context": "CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE addresses (address_id VARCHAR, state_province_county VARCHAR)"}, {"answer": "SELECT state_province_county FROM addresses WHERE NOT address_id IN (SELECT employee_address_id FROM Employees)", "question": "Find the states which do not have any employee in their record.", "context": "CREATE TABLE Employees (state_province_county VARCHAR, address_id VARCHAR, employee_address_id VARCHAR); CREATE TABLE addresses (state_province_county VARCHAR, address_id VARCHAR, employee_address_id VARCHAR)"}, {"answer": "SELECT customer_name, customer_phone, customer_email FROM Customers ORDER BY date_became_customer", "question": "List the names, phone numbers, and emails of all customers sorted by their dates of becoming customers.", "context": "CREATE TABLE Customers (customer_name VARCHAR, customer_phone VARCHAR, customer_email VARCHAR, date_became_customer VARCHAR)"}, {"answer": "SELECT customer_name FROM Customers ORDER BY date_became_customer LIMIT 5", "question": "Find the name of the first 5 customers.", "context": "CREATE TABLE Customers (customer_name VARCHAR, date_became_customer VARCHAR)"}, {"answer": "SELECT payment_method FROM Customers GROUP BY payment_method ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the payment method that is used most frequently.", "context": "CREATE TABLE Customers (payment_method VARCHAR)"}, {"answer": "SELECT route_name FROM Delivery_Routes ORDER BY route_name", "question": "List the names of all routes in alphabetic order.", "context": "CREATE TABLE Delivery_Routes (route_name VARCHAR)"}, {"answer": "SELECT t1.route_name FROM Delivery_Routes AS t1 JOIN Delivery_Route_Locations AS t2 ON t1.route_id = t2.route_id GROUP BY t1.route_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of route that has the highest number of deliveries.", "context": "CREATE TABLE Delivery_Routes (route_name VARCHAR, route_id VARCHAR); CREATE TABLE Delivery_Route_Locations (route_id VARCHAR)"}, {"answer": "SELECT t2.state_province_county, COUNT(*) FROM customer_addresses AS t1 JOIN addresses AS t2 ON t1.address_id = t2.address_id GROUP BY t2.state_province_county", "question": "List the state names and the number of customers living in each state.", "context": "CREATE TABLE customer_addresses (address_id VARCHAR); CREATE TABLE addresses (state_province_county VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM authors", "question": "How many authors are there?", "context": "CREATE TABLE authors (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM inst", "question": "How many institutions are there?", "context": "CREATE TABLE inst (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM papers", "question": "How many papers are published in total?", "context": "CREATE TABLE papers (Id VARCHAR)"}, {"answer": "SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = \"Jeremy\" AND t1.lname = \"Gibbons\"", "question": "What are the titles of papers published by \"Jeremy Gibbons\"?", "context": "CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR)"}, {"answer": "SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = \"Aaron\" AND t1.lname = \"Turon\"", "question": "Find all the papers published by \"Aaron Turon\".", "context": "CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = \"Atsushi\" AND t1.lname = \"Ohori\"", "question": "How many papers have \"Atsushi Ohori\" published?", "context": "CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE papers (paperid VARCHAR)"}, {"answer": "SELECT DISTINCT t3.name FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t1.fname = \"Matthias\" AND t1.lname = \"Blume\"", "question": "What is the name of the institution that \"Matthias Blume\" belongs to?", "context": "CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE inst (name VARCHAR, instid VARCHAR)"}, {"answer": "SELECT DISTINCT t3.name FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t1.fname = \"Katsuhiro\" AND t1.lname = \"Ueno\"", "question": "Which institution does \"Katsuhiro Ueno\" belong to?", "context": "CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE inst (name VARCHAR, instid VARCHAR)"}, {"answer": "SELECT DISTINCT t1.fname, t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = \"University of Oxford\"", "question": "Who belong to the institution \"University of Oxford\"? Show the first names and last names.", "context": "CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (fname VARCHAR, lname VARCHAR, authid VARCHAR); CREATE TABLE inst (instid VARCHAR, name VARCHAR)"}, {"answer": "SELECT DISTINCT t1.fname, t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = \"Google\"", "question": "Which authors belong to the institution \"Google\"? Show the first names and last names.", "context": "CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (fname VARCHAR, lname VARCHAR, authid VARCHAR); CREATE TABLE inst (instid VARCHAR, name VARCHAR)"}, {"answer": "SELECT t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title = \"Binders Unbound\"", "question": "What are the last names of the author of the paper titled \"Binders Unbound\"?", "context": "CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE authors (lname VARCHAR, authid VARCHAR); CREATE TABLE papers (paperid VARCHAR, title VARCHAR)"}, {"answer": "SELECT t1.fname, t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title = \"Nameless ,  Painless\"", "question": "Find the first and last name of the author(s) who wrote the paper \"Nameless, Painless\".", "context": "CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (paperid VARCHAR, title VARCHAR); CREATE TABLE authors (fname VARCHAR, lname VARCHAR, authid VARCHAR)"}, {"answer": "SELECT DISTINCT t1.title FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = \"Indiana University\"", "question": "What are the papers published under the institution \"Indiana University\"?", "context": "CREATE TABLE inst (instid VARCHAR, name VARCHAR); CREATE TABLE authorship (paperid VARCHAR, instid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR)"}, {"answer": "SELECT DISTINCT t1.title FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = \"Google\"", "question": "Find all the papers published by the institution \"Google\".", "context": "CREATE TABLE inst (instid VARCHAR, name VARCHAR); CREATE TABLE authorship (paperid VARCHAR, instid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT t1.title) FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = \"Tokohu University\"", "question": "How many papers are published by the institution \"Tokohu University\"?", "context": "CREATE TABLE inst (instid VARCHAR, name VARCHAR); CREATE TABLE authorship (paperid VARCHAR, instid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT t1.title) FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = \"University of Pennsylvania\"", "question": "Find the number of papers published by the institution \"University of Pennsylvania\".", "context": "CREATE TABLE inst (instid VARCHAR, name VARCHAR); CREATE TABLE authorship (paperid VARCHAR, instid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR)"}, {"answer": "SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = \"Olin\" AND t1.lname = \"Shivers\"", "question": "Find the papers which have \"Olin Shivers\" as an author.", "context": "CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR)"}, {"answer": "SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = \"Stephanie\" AND t1.lname = \"Weirich\"", "question": "Which papers have \"Stephanie Weirich\" as an author?", "context": "CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR)"}, {"answer": "SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid JOIN inst AS t4 ON t2.instid = t4.instid WHERE t4.country = \"USA\" AND t2.authorder = 2 AND t1.lname = \"Turon\"", "question": "Which paper is published in an institution in \"USA\" and have \"Turon\" as its second author?", "context": "CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR, instid VARCHAR, authorder VARCHAR); CREATE TABLE authors (authid VARCHAR, lname VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE inst (instid VARCHAR, country VARCHAR)"}, {"answer": "SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid JOIN inst AS t4 ON t2.instid = t4.instid WHERE t4.country = \"Japan\" AND t2.authorder = 1 AND t1.lname = \"Ohori\"", "question": "Find the titles of papers whose first author is affiliated with an institution in the country \"Japan\" and has last name \"Ohori\"?", "context": "CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR, instid VARCHAR, authorder VARCHAR); CREATE TABLE authors (authid VARCHAR, lname VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE inst (instid VARCHAR, country VARCHAR)"}, {"answer": "SELECT t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid GROUP BY t1.fname, t1.lname ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the last name of the author that has published the most papers?", "context": "CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE authors (lname VARCHAR, fname VARCHAR, authid VARCHAR); CREATE TABLE papers (paperid VARCHAR)"}, {"answer": "SELECT t1.country FROM inst AS t1 JOIN authorship AS t2 ON t1.instid = t2.instid JOIN papers AS t3 ON t2.paperid = t3.paperid GROUP BY t1.country ORDER BY COUNT(*) DESC LIMIT 1", "question": "Retrieve the country that has published the most papers.", "context": "CREATE TABLE inst (country VARCHAR, instid VARCHAR); CREATE TABLE authorship (instid VARCHAR, paperid VARCHAR); CREATE TABLE papers (paperid VARCHAR)"}, {"answer": "SELECT t1.name FROM inst AS t1 JOIN authorship AS t2 ON t1.instid = t2.instid JOIN papers AS t3 ON t2.paperid = t3.paperid GROUP BY t1.name ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of the organization that has published the largest number of papers.", "context": "CREATE TABLE inst (name VARCHAR, instid VARCHAR); CREATE TABLE authorship (instid VARCHAR, paperid VARCHAR); CREATE TABLE papers (paperid VARCHAR)"}, {"answer": "SELECT title FROM papers WHERE title LIKE \"%ML%\"", "question": "Find the titles of the papers that contain the word \"ML\".", "context": "CREATE TABLE papers (title VARCHAR)"}, {"answer": "SELECT title FROM papers WHERE title LIKE \"%Database%\"", "question": "Which paper's title contains the word \"Database\"?", "context": "CREATE TABLE papers (title VARCHAR)"}, {"answer": "SELECT t1.fname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title LIKE \"%Functional%\"", "question": "Find the first names of all the authors who have written a paper with title containing the word \"Functional\".", "context": "CREATE TABLE authors (fname VARCHAR, authid VARCHAR); CREATE TABLE papers (paperid VARCHAR, title VARCHAR); CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR)"}, {"answer": "SELECT t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title LIKE \"%Monadic%\"", "question": "Find the last names of all the authors that have written a paper with title containing the word \"Monadic\".", "context": "CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE authors (lname VARCHAR, authid VARCHAR); CREATE TABLE papers (paperid VARCHAR, title VARCHAR)"}, {"answer": "SELECT t2.title FROM authorship AS t1 JOIN papers AS t2 ON t1.paperid = t2.paperid WHERE t1.authorder = (SELECT MAX(authorder) FROM authorship)", "question": "Retrieve the title of the paper that has the largest number of authors.", "context": "CREATE TABLE authorship (authorder INTEGER); CREATE TABLE authorship (paperid VARCHAR, authorder INTEGER); CREATE TABLE papers (title VARCHAR, paperid VARCHAR)"}, {"answer": "SELECT fname FROM authors WHERE lname = \"Ueno\"", "question": "What is the first name of the author with last name \"Ueno\"?", "context": "CREATE TABLE authors (fname VARCHAR, lname VARCHAR)"}, {"answer": "SELECT lname FROM authors WHERE fname = \"Amal\"", "question": "Find the last name of the author with first name \"Amal\".", "context": "CREATE TABLE authors (lname VARCHAR, fname VARCHAR)"}, {"answer": "SELECT fname FROM authors ORDER BY fname", "question": "Find the first names of all the authors ordered in alphabetical order.", "context": "CREATE TABLE authors (fname VARCHAR)"}, {"answer": "SELECT lname FROM authors ORDER BY lname", "question": "Retrieve all the last names of authors in alphabetical order.", "context": "CREATE TABLE authors (lname VARCHAR)"}, {"answer": "SELECT fname, lname FROM authors ORDER BY lname", "question": "Retrieve all the first and last names of authors in the alphabetical order of last names.", "context": "CREATE TABLE authors (fname VARCHAR, lname VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT last_name) FROM actor", "question": "How many different last names do the actors and actresses have?", "context": "CREATE TABLE actor (last_name VARCHAR)"}, {"answer": "SELECT first_name FROM actor GROUP BY first_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most popular first name of the actors?", "context": "CREATE TABLE actor (first_name VARCHAR)"}, {"answer": "SELECT first_name, last_name FROM actor GROUP BY first_name, last_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most popular full name of the actors?", "context": "CREATE TABLE actor (first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT district FROM address GROUP BY district HAVING COUNT(*) >= 2", "question": "Which districts have at least two addresses?", "context": "CREATE TABLE address (district VARCHAR)"}, {"answer": "SELECT phone, postal_code FROM address WHERE address = '1031 Daugavpils Parkway'", "question": "What is the phone number and postal code of the address 1031 Daugavpils Parkway?", "context": "CREATE TABLE address (phone VARCHAR, postal_code VARCHAR, address VARCHAR)"}, {"answer": "SELECT T2.city, COUNT(*), T1.city_id FROM address AS T1 JOIN city AS T2 ON T1.city_id = T2.city_id GROUP BY T1.city_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which city has the most addresses? List the city name, number of addresses, and city id.", "context": "CREATE TABLE address (city_id VARCHAR); CREATE TABLE city (city VARCHAR, city_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM address WHERE district = 'California'", "question": "How many addresses are in the district of California?", "context": "CREATE TABLE address (district VARCHAR)"}, {"answer": "SELECT title, film_id FROM film WHERE rental_rate = 0.99 INTERSECT SELECT T1.title, T1.film_id FROM film AS T1 JOIN inventory AS T2 ON T1.film_id = T2.film_id GROUP BY T1.film_id HAVING COUNT(*) < 3", "question": "Which film is rented at a fee of 0.99 and has less than 3 in the inventory? List the film title and id.", "context": "CREATE TABLE film (title VARCHAR, film_id VARCHAR, rental_rate VARCHAR); CREATE TABLE inventory (film_id VARCHAR); CREATE TABLE film (title VARCHAR, film_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM city AS T1 JOIN country AS T2 ON T1.country_id = T2.country_id WHERE T2.country = 'Australia'", "question": "How many cities are in Australia?", "context": "CREATE TABLE country (country_id VARCHAR, country VARCHAR); CREATE TABLE city (country_id VARCHAR)"}, {"answer": "SELECT T2.country FROM city AS T1 JOIN country AS T2 ON T1.country_id = T2.country_id GROUP BY T2.country_id HAVING COUNT(*) >= 3", "question": "Which countries have at least 3 cities?", "context": "CREATE TABLE country (country VARCHAR, country_id VARCHAR); CREATE TABLE city (country_id VARCHAR)"}, {"answer": "SELECT payment_date FROM payment WHERE amount > 10 UNION SELECT T1.payment_date FROM payment AS T1 JOIN staff AS T2 ON T1.staff_id = T2.staff_id WHERE T2.first_name = 'Elsa'", "question": "Find all the payment dates for the payments with an amount larger than 10 and the payments handled by a staff person with the first name Elsa.", "context": "CREATE TABLE payment (payment_date VARCHAR, staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, first_name VARCHAR); CREATE TABLE payment (payment_date VARCHAR, amount INTEGER)"}, {"answer": "SELECT COUNT(*) FROM customer WHERE active = '1'", "question": "How many customers have an active value of 1?", "context": "CREATE TABLE customer (active VARCHAR)"}, {"answer": "SELECT title, rental_rate FROM film ORDER BY rental_rate DESC LIMIT 1", "question": "Which film has the highest rental rate? And what is the rate?", "context": "CREATE TABLE film (title VARCHAR, rental_rate VARCHAR)"}, {"answer": "SELECT T2.title, T2.film_id, T2.description FROM film_actor AS T1 JOIN film AS T2 ON T1.film_id = T2.film_id GROUP BY T2.film_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which film has the most number of actors or actresses? List the film name, film id and description.", "context": "CREATE TABLE film_actor (film_id VARCHAR); CREATE TABLE film (title VARCHAR, film_id VARCHAR, description VARCHAR)"}, {"answer": "SELECT T2.first_name, T2.last_name, T2.actor_id FROM film_actor AS T1 JOIN actor AS T2 ON T1.actor_id = T2.actor_id GROUP BY T2.actor_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which film actor (actress) starred the most films? List his or her first name, last name and actor id.", "context": "CREATE TABLE film_actor (actor_id VARCHAR); CREATE TABLE actor (first_name VARCHAR, last_name VARCHAR, actor_id VARCHAR)"}, {"answer": "SELECT T2.first_name, T2.last_name FROM film_actor AS T1 JOIN actor AS T2 ON T1.actor_id = T2.actor_id GROUP BY T2.actor_id HAVING COUNT(*) > 30", "question": "Which film actors (actresses) played a role in more than 30 films? List his or her first name and last name.", "context": "CREATE TABLE film_actor (actor_id VARCHAR); CREATE TABLE actor (first_name VARCHAR, last_name VARCHAR, actor_id VARCHAR)"}, {"answer": "SELECT store_id FROM inventory GROUP BY store_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which store owns most items?", "context": "CREATE TABLE inventory (store_id VARCHAR)"}, {"answer": "SELECT SUM(amount) FROM payment", "question": "What is the total amount of all payments?", "context": "CREATE TABLE payment (amount INTEGER)"}, {"answer": "SELECT T1.first_name, T1.last_name, T1.customer_id FROM customer AS T1 JOIN payment AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY SUM(amount) LIMIT 1", "question": "Which customer, who has made at least one payment, has spent the least money? List his or her first name, last name, and the id.", "context": "CREATE TABLE payment (customer_id VARCHAR); CREATE TABLE customer (first_name VARCHAR, last_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T1.name FROM category AS T1 JOIN film_category AS T2 ON T1.category_id = T2.category_id JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T3.title = 'HUNGER ROOF'", "question": "What is the genre name of the film HUNGER ROOF?", "context": "CREATE TABLE film_category (category_id VARCHAR, film_id VARCHAR); CREATE TABLE film (film_id VARCHAR, title VARCHAR); CREATE TABLE category (name VARCHAR, category_id VARCHAR)"}, {"answer": "SELECT T2.name, T1.category_id, COUNT(*) FROM film_category AS T1 JOIN category AS T2 ON T1.category_id = T2.category_id GROUP BY T1.category_id", "question": "How many films are there in each category? List the genre name, genre id and the count.", "context": "CREATE TABLE film_category (category_id VARCHAR); CREATE TABLE category (name VARCHAR, category_id VARCHAR)"}, {"answer": "SELECT T1.title, T1.film_id FROM film AS T1 JOIN inventory AS T2 ON T1.film_id = T2.film_id GROUP BY T1.film_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which film has the most copies in the inventory? List both title and id.", "context": "CREATE TABLE film (title VARCHAR, film_id VARCHAR); CREATE TABLE inventory (film_id VARCHAR)"}, {"answer": "SELECT T1.title, T2.inventory_id FROM film AS T1 JOIN inventory AS T2 ON T1.film_id = T2.film_id JOIN rental AS T3 ON T2.inventory_id = T3.inventory_id GROUP BY T2.inventory_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the film title and inventory id of the item in the inventory which was rented most frequently?", "context": "CREATE TABLE film (title VARCHAR, film_id VARCHAR); CREATE TABLE inventory (inventory_id VARCHAR, film_id VARCHAR); CREATE TABLE rental (inventory_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT language_id) FROM film", "question": "How many languages are in these films?", "context": "CREATE TABLE film (language_id VARCHAR)"}, {"answer": "SELECT title FROM film WHERE rating = 'R'", "question": "What are all the movies rated as R? List the titles.", "context": "CREATE TABLE film (title VARCHAR, rating VARCHAR)"}, {"answer": "SELECT T2.address FROM store AS T1 JOIN address AS T2 ON T1.address_id = T2.address_id WHERE store_id = 1", "question": "Where is store 1 located?", "context": "CREATE TABLE store (address_id VARCHAR); CREATE TABLE address (address VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.last_name, T1.staff_id FROM staff AS T1 JOIN payment AS T2 ON T1.staff_id = T2.staff_id GROUP BY T1.staff_id ORDER BY COUNT(*) LIMIT 1", "question": "Which staff handled least number of payments? List the full name and the id.", "context": "CREATE TABLE payment (staff_id VARCHAR); CREATE TABLE staff (first_name VARCHAR, last_name VARCHAR, staff_id VARCHAR)"}, {"answer": "SELECT T2.name FROM film AS T1 JOIN LANGUAGE AS T2 ON T1.language_id = T2.language_id WHERE T1.title = 'AIRPORT POLLOCK'", "question": "Which language does the film AIRPORT POLLOCK use? List the language name.", "context": "CREATE TABLE film (language_id VARCHAR, title VARCHAR); CREATE TABLE LANGUAGE (name VARCHAR, language_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM store", "question": "How many stores are there?", "context": "CREATE TABLE store (Id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT rating) FROM film", "question": "How many kinds of different ratings are listed?", "context": "CREATE TABLE film (rating VARCHAR)"}, {"answer": "SELECT title FROM film WHERE special_features LIKE '%Deleted Scenes%'", "question": "Which movies have 'Deleted Scenes' as a substring in the special feature?", "context": "CREATE TABLE film (title VARCHAR, special_features VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM inventory WHERE store_id = 1", "question": "How many items in inventory does store 1 have?", "context": "CREATE TABLE inventory (store_id VARCHAR)"}, {"answer": "SELECT payment_date FROM payment ORDER BY payment_date LIMIT 1", "question": "When did the first payment happen?", "context": "CREATE TABLE payment (payment_date VARCHAR)"}, {"answer": "SELECT T2.address, T1.email FROM customer AS T1 JOIN address AS T2 ON T2.address_id = T1.address_id WHERE T1.first_name = 'LINDA'", "question": "Where does the customer with the first name Linda live? And what is her email?", "context": "CREATE TABLE customer (email VARCHAR, address_id VARCHAR, first_name VARCHAR); CREATE TABLE address (address VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT title FROM film WHERE LENGTH > 100 OR rating = 'PG' EXCEPT SELECT title FROM film WHERE replacement_cost > 200", "question": "Find all the films longer than 100 minutes, or rated PG, except those who cost more than 200 for replacement. List the titles.", "context": "CREATE TABLE film (title VARCHAR, replacement_cost INTEGER, LENGTH VARCHAR, rating VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.last_name FROM customer AS T1 JOIN rental AS T2 ON T1.customer_id = T2.customer_id ORDER BY T2.rental_date LIMIT 1", "question": "What is the first name and the last name of the customer who made the earliest rental?", "context": "CREATE TABLE customer (first_name VARCHAR, last_name VARCHAR, customer_id VARCHAR); CREATE TABLE rental (customer_id VARCHAR, rental_date VARCHAR)"}, {"answer": "SELECT DISTINCT T1.first_name, T1.last_name FROM staff AS T1 JOIN rental AS T2 ON T1.staff_id = T2.staff_id JOIN customer AS T3 ON T2.customer_id = T3.customer_id WHERE T3.first_name = 'APRIL' AND T3.last_name = 'BURNS'", "question": "What is the full name of the staff member who has rented a film to a customer with the first name April and the last name Burns?", "context": "CREATE TABLE customer (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE rental (staff_id VARCHAR, customer_id VARCHAR); CREATE TABLE staff (first_name VARCHAR, last_name VARCHAR, staff_id VARCHAR)"}, {"answer": "SELECT store_id FROM customer GROUP BY store_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which store has most the customers?", "context": "CREATE TABLE customer (store_id VARCHAR)"}, {"answer": "SELECT amount FROM payment ORDER BY amount DESC LIMIT 1", "question": "What is the largest payment amount?", "context": "CREATE TABLE payment (amount VARCHAR)"}, {"answer": "SELECT T2.address FROM staff AS T1 JOIN address AS T2 ON T1.address_id = T2.address_id WHERE T1.first_name = 'Elsa'", "question": "Where does the staff member with the first name Elsa live?", "context": "CREATE TABLE staff (address_id VARCHAR, first_name VARCHAR); CREATE TABLE address (address VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT first_name FROM customer WHERE NOT customer_id IN (SELECT customer_id FROM rental WHERE rental_date > '2005-08-23 02:06:01')", "question": "What are the first names of customers who have not rented any films after '2005-08-23 02:06:01'?", "context": "CREATE TABLE customer (first_name VARCHAR, customer_id VARCHAR, rental_date INTEGER); CREATE TABLE rental (first_name VARCHAR, customer_id VARCHAR, rental_date INTEGER)"}, {"answer": "SELECT COUNT(*) FROM bank", "question": "How many bank branches are there?", "context": "CREATE TABLE bank (Id VARCHAR)"}, {"answer": "SELECT SUM(no_of_customers) FROM bank", "question": "How many customers are there?", "context": "CREATE TABLE bank (no_of_customers INTEGER)"}, {"answer": "SELECT SUM(no_of_customers) FROM bank WHERE city = 'New York City'", "question": "Find the number of customers in the banks at New York City.", "context": "CREATE TABLE bank (no_of_customers INTEGER, city VARCHAR)"}, {"answer": "SELECT AVG(no_of_customers) FROM bank WHERE state = 'Utah'", "question": "Find the average number of customers in all banks of Utah state.", "context": "CREATE TABLE bank (no_of_customers INTEGER, state VARCHAR)"}, {"answer": "SELECT AVG(no_of_customers) FROM bank", "question": "Find the average number of customers cross all banks.", "context": "CREATE TABLE bank (no_of_customers INTEGER)"}, {"answer": "SELECT city, state FROM bank WHERE bname = 'morningside'", "question": "Find the city and state of the bank branch named morningside.", "context": "CREATE TABLE bank (city VARCHAR, state VARCHAR, bname VARCHAR)"}, {"answer": "SELECT bname FROM bank WHERE state = 'New York'", "question": "Find the branch names of banks in the New York state.", "context": "CREATE TABLE bank (bname VARCHAR, state VARCHAR)"}, {"answer": "SELECT cust_name FROM customer ORDER BY acc_bal", "question": "List the name of all customers sorted by their account balance in ascending order.", "context": "CREATE TABLE customer (cust_name VARCHAR, acc_bal VARCHAR)"}, {"answer": "SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name ORDER BY SUM(T2.amount)", "question": "List the name of all different customers who have some loan sorted by their total loan amount.", "context": "CREATE TABLE loan (cust_id VARCHAR, amount INTEGER); CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR)"}, {"answer": "SELECT state, acc_type, credit_score FROM customer WHERE no_of_loans = 0", "question": "Find the state, account type, and credit score of the customer whose number of loan is 0.", "context": "CREATE TABLE customer (state VARCHAR, acc_type VARCHAR, credit_score VARCHAR, no_of_loans VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT city) FROM bank", "question": "Find the number of different cities which banks are located at.", "context": "CREATE TABLE bank (city VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT state) FROM bank", "question": "Find the number of different states which banks are located at.", "context": "CREATE TABLE bank (state VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT acc_type) FROM customer", "question": "How many distinct types of accounts are there?", "context": "CREATE TABLE customer (acc_type VARCHAR)"}, {"answer": "SELECT cust_name, acc_bal FROM customer WHERE cust_name LIKE '%a%'", "question": "Find the name and account balance of the customer whose name includes the letter \u2018a\u2019.", "context": "CREATE TABLE customer (cust_name VARCHAR, acc_bal VARCHAR)"}, {"answer": "SELECT SUM(acc_bal) FROM customer WHERE state = 'Utah' OR state = 'Texas'", "question": "Find the total account balance of each customer from Utah or Texas.", "context": "CREATE TABLE customer (acc_bal INTEGER, state VARCHAR)"}, {"answer": "SELECT cust_name FROM customer WHERE acc_type = 'saving' INTERSECT SELECT cust_name FROM customer WHERE acc_type = 'checking'", "question": "Find the name of customers who have both saving and checking account types.", "context": "CREATE TABLE customer (cust_name VARCHAR, acc_type VARCHAR)"}, {"answer": "SELECT cust_name FROM customer EXCEPT SELECT cust_name FROM customer WHERE acc_type = 'saving'", "question": "Find the name of customers who do not have an saving account.", "context": "CREATE TABLE customer (cust_name VARCHAR, acc_type VARCHAR)"}, {"answer": "SELECT cust_name FROM customer EXCEPT SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE T2.loan_type = 'Mortgages'", "question": "Find the name of customers who do not have a loan with a type of Mortgages.", "context": "CREATE TABLE loan (cust_id VARCHAR, loan_type VARCHAR); CREATE TABLE customer (cust_name VARCHAR); CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR)"}, {"answer": "SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE loan_type = 'Mortgages' INTERSECT SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE loan_type = 'Auto'", "question": "Find the name of customers who have loans of both Mortgages and Auto.", "context": "CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR); CREATE TABLE loan (cust_id VARCHAR)"}, {"answer": "SELECT cust_name FROM customer WHERE credit_score < (SELECT AVG(credit_score) FROM customer)", "question": "Find the name of customers whose credit score is below the average credit scores of all customers.", "context": "CREATE TABLE customer (cust_name VARCHAR, credit_score INTEGER)"}, {"answer": "SELECT bname FROM bank ORDER BY no_of_customers DESC LIMIT 1", "question": "Find the branch name of the bank that has the most number of customers.", "context": "CREATE TABLE bank (bname VARCHAR, no_of_customers VARCHAR)"}, {"answer": "SELECT cust_name FROM customer ORDER BY credit_score LIMIT 1", "question": "Find the name of customer who has the lowest credit score.", "context": "CREATE TABLE customer (cust_name VARCHAR, credit_score VARCHAR)"}, {"answer": "SELECT cust_name, acc_type, acc_bal FROM customer ORDER BY credit_score DESC LIMIT 1", "question": "Find the name, account type, and account balance of the customer who has the highest credit score.", "context": "CREATE TABLE customer (cust_name VARCHAR, acc_type VARCHAR, acc_bal VARCHAR, credit_score VARCHAR)"}, {"answer": "SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name ORDER BY SUM(T2.amount) DESC LIMIT 1", "question": "Find the name of customer who has the highest amount of loans.", "context": "CREATE TABLE loan (cust_id VARCHAR, amount INTEGER); CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR)"}, {"answer": "SELECT state FROM bank GROUP BY state ORDER BY SUM(no_of_customers) DESC LIMIT 1", "question": "Find the state which has the most number of customers.", "context": "CREATE TABLE bank (state VARCHAR, no_of_customers INTEGER)"}, {"answer": "SELECT AVG(acc_bal), acc_type FROM customer WHERE credit_score < 50 GROUP BY acc_type", "question": "For each account type, find the average account balance of customers with credit score lower than 50.", "context": "CREATE TABLE customer (acc_type VARCHAR, acc_bal INTEGER, credit_score INTEGER)"}, {"answer": "SELECT SUM(acc_bal), state FROM customer WHERE credit_score > 100 GROUP BY state", "question": "For each state, find the total account balance of customers whose credit score is above 100.", "context": "CREATE TABLE customer (state VARCHAR, acc_bal INTEGER, credit_score INTEGER)"}, {"answer": "SELECT SUM(amount), T1.bname FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id GROUP BY T1.bname", "question": "Find the total amount of loans offered by each bank branch.", "context": "CREATE TABLE loan (branch_id VARCHAR); CREATE TABLE bank (bname VARCHAR, branch_id VARCHAR)"}, {"answer": "SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name HAVING COUNT(*) > 1", "question": "Find the name of customers who have more than one loan.", "context": "CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR); CREATE TABLE loan (cust_id VARCHAR)"}, {"answer": "SELECT T1.cust_name, T1.acc_type FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name HAVING SUM(T2.amount) > 5000", "question": "Find the name and account balance of the customers who have loans with a total amount of more than 5000.", "context": "CREATE TABLE loan (cust_id VARCHAR, amount INTEGER); CREATE TABLE customer (cust_name VARCHAR, acc_type VARCHAR, cust_id VARCHAR)"}, {"answer": "SELECT T1.bname FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id GROUP BY T1.bname ORDER BY SUM(T2.amount) DESC LIMIT 1", "question": "Find the name of bank branch that provided the greatest total amount of loans.", "context": "CREATE TABLE loan (branch_id VARCHAR, amount INTEGER); CREATE TABLE bank (bname VARCHAR, branch_id VARCHAR)"}, {"answer": "SELECT T2.bname FROM loan AS T1 JOIN bank AS T2 ON T1.branch_id = T2.branch_id JOIN customer AS T3 ON T1.cust_id = T3.cust_id WHERE T3.credit_score < 100 GROUP BY T2.bname ORDER BY SUM(T1.amount) DESC LIMIT 1", "question": "Find the name of bank branch that provided the greatest total amount of loans to customers with credit score is less than 100.", "context": "CREATE TABLE loan (branch_id VARCHAR, cust_id VARCHAR, amount INTEGER); CREATE TABLE bank (bname VARCHAR, branch_id VARCHAR); CREATE TABLE customer (cust_id VARCHAR, credit_score INTEGER)"}, {"answer": "SELECT DISTINCT T1.bname FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id", "question": "Find the name of bank branches that provided some loans.", "context": "CREATE TABLE loan (branch_id VARCHAR); CREATE TABLE bank (bname VARCHAR, branch_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.cust_name, T1.credit_score FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id", "question": "Find the name and credit score of the customers who have some loans.", "context": "CREATE TABLE customer (cust_name VARCHAR, credit_score VARCHAR, cust_id VARCHAR); CREATE TABLE loan (cust_id VARCHAR)"}, {"answer": "SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE amount > 3000", "question": "Find the the name of the customers who have a loan with amount more than 3000.", "context": "CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR); CREATE TABLE loan (cust_id VARCHAR)"}, {"answer": "SELECT T1.bname, T1.city FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id WHERE T2.loan_type = 'Business'", "question": "Find the city and name of bank branches that provide business loans.", "context": "CREATE TABLE bank (bname VARCHAR, city VARCHAR, branch_id VARCHAR); CREATE TABLE loan (branch_id VARCHAR, loan_type VARCHAR)"}, {"answer": "SELECT T2.bname FROM loan AS T1 JOIN bank AS T2 ON T1.branch_id = T2.branch_id JOIN customer AS T3 ON T1.cust_id = T3.cust_id WHERE T3.credit_score < 100", "question": "Find the names of bank branches that have provided a loan to any customer whose credit score is below 100.", "context": "CREATE TABLE bank (bname VARCHAR, branch_id VARCHAR); CREATE TABLE customer (cust_id VARCHAR, credit_score INTEGER); CREATE TABLE loan (branch_id VARCHAR, cust_id VARCHAR)"}, {"answer": "SELECT SUM(T2.amount) FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id WHERE T1.state = 'New York'", "question": "Find the total amount of loans provided by bank branches in the state of New York.", "context": "CREATE TABLE bank (branch_id VARCHAR, state VARCHAR); CREATE TABLE loan (amount INTEGER, branch_id VARCHAR)"}, {"answer": "SELECT AVG(credit_score) FROM customer WHERE cust_id IN (SELECT cust_id FROM loan)", "question": "Find the average credit score of the customers who have some loan.", "context": "CREATE TABLE loan (credit_score INTEGER, cust_id VARCHAR); CREATE TABLE customer (credit_score INTEGER, cust_id VARCHAR)"}, {"answer": "SELECT AVG(credit_score) FROM customer WHERE NOT cust_id IN (SELECT cust_id FROM loan)", "question": "Find the average credit score of the customers who do not have any loan.", "context": "CREATE TABLE loan (credit_score INTEGER, cust_id VARCHAR); CREATE TABLE customer (credit_score INTEGER, cust_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM ASSESSMENT_NOTES", "question": "How many assessment notes are there in total?", "context": "CREATE TABLE ASSESSMENT_NOTES (Id VARCHAR)"}, {"answer": "SELECT date_of_notes FROM Assessment_Notes", "question": "What are the dates of the assessment notes?", "context": "CREATE TABLE Assessment_Notes (date_of_notes VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM ADDRESSES WHERE zip_postcode = \"197\"", "question": "How many addresses have zip code 197?", "context": "CREATE TABLE ADDRESSES (zip_postcode VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT incident_type_code) FROM Behavior_Incident", "question": "How many distinct incident type codes are there?", "context": "CREATE TABLE Behavior_Incident (incident_type_code VARCHAR)"}, {"answer": "SELECT DISTINCT detention_type_code FROM Detention", "question": "Return all distinct detention type codes.", "context": "CREATE TABLE Detention (detention_type_code VARCHAR)"}, {"answer": "SELECT date_incident_start, date_incident_end FROM Behavior_Incident WHERE incident_type_code = \"NOISE\"", "question": "What are the start and end dates for incidents with incident type code \"NOISE\"?", "context": "CREATE TABLE Behavior_Incident (date_incident_start VARCHAR, date_incident_end VARCHAR, incident_type_code VARCHAR)"}, {"answer": "SELECT detention_summary FROM Detention", "question": "Return all detention summaries.", "context": "CREATE TABLE Detention (detention_summary VARCHAR)"}, {"answer": "SELECT cell_mobile_number, email_address FROM STUDENTS", "question": "Return the cell phone number and email address for all students.", "context": "CREATE TABLE STUDENTS (cell_mobile_number VARCHAR, email_address VARCHAR)"}, {"answer": "SELECT email_address FROM Students WHERE first_name = \"Emma\" AND last_name = \"Rohan\"", "question": "What is the email of the student with first name \"Emma\" and last name \"Rohan\"?", "context": "CREATE TABLE Students (email_address VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT student_id) FROM Students_in_Detention", "question": "How many distinct students have been in detention?", "context": "CREATE TABLE Students_in_Detention (student_id VARCHAR)"}, {"answer": "SELECT gender FROM TEACHERS WHERE last_name = \"Medhurst\"", "question": "What is the gender of the teacher with last name \"Medhurst\"?", "context": "CREATE TABLE TEACHERS (gender VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT incident_type_description FROM Ref_Incident_Type WHERE incident_type_code = \"VIOLENCE\"", "question": "What is the incident type description for the incident type with code \"VIOLENCE\"?", "context": "CREATE TABLE Ref_Incident_Type (incident_type_description VARCHAR, incident_type_code VARCHAR)"}, {"answer": "SELECT MAX(monthly_rental), MIN(monthly_rental) FROM Student_Addresses", "question": "Find the maximum and minimum monthly rental for all student addresses.", "context": "CREATE TABLE Student_Addresses (monthly_rental INTEGER)"}, {"answer": "SELECT first_name FROM Teachers WHERE email_address LIKE '%man%'", "question": "Find the first names of teachers whose email address contains the word \"man\".", "context": "CREATE TABLE Teachers (first_name VARCHAR, email_address VARCHAR)"}, {"answer": "SELECT * FROM Assessment_Notes ORDER BY date_of_notes", "question": "List all information about the assessment notes sorted by date in ascending order.", "context": "CREATE TABLE Assessment_Notes (date_of_notes VARCHAR)"}, {"answer": "SELECT city FROM Addresses ORDER BY city", "question": "List all cities of addresses in alphabetical order.", "context": "CREATE TABLE Addresses (city VARCHAR)"}, {"answer": "SELECT first_name, last_name FROM Teachers ORDER BY last_name", "question": "Find the first names and last names of teachers in alphabetical order of last name.", "context": "CREATE TABLE Teachers (first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT * FROM Student_Addresses ORDER BY monthly_rental DESC", "question": "Find all information about student addresses, and sort by monthly rental in descending order.", "context": "CREATE TABLE Student_Addresses (monthly_rental VARCHAR)"}, {"answer": "SELECT T1.student_id, T2.first_name FROM Assessment_Notes AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the id and first name of the student that has the most number of assessment notes?", "context": "CREATE TABLE Students (first_name VARCHAR, student_id VARCHAR); CREATE TABLE Assessment_Notes (student_id VARCHAR)"}, {"answer": "SELECT T1.teacher_id, T2.first_name FROM Assessment_Notes AS T1 JOIN Teachers AS T2 ON T1.teacher_id = T2.teacher_id GROUP BY T1.teacher_id ORDER BY COUNT(*) DESC LIMIT 3", "question": "Find the ids and first names of the 3 teachers that have the most number of assessment notes?", "context": "CREATE TABLE Assessment_Notes (teacher_id VARCHAR); CREATE TABLE Teachers (first_name VARCHAR, teacher_id VARCHAR)"}, {"answer": "SELECT T1.student_id, T2.last_name FROM Behavior_Incident AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the id and last name of the student that has the most behavior incidents?", "context": "CREATE TABLE Students (last_name VARCHAR, student_id VARCHAR); CREATE TABLE Behavior_Incident (student_id VARCHAR)"}, {"answer": "SELECT T1.teacher_id, T2.last_name FROM Detention AS T1 JOIN Teachers AS T2 ON T1.teacher_id = T2.teacher_id WHERE T1.detention_type_code = \"AFTER\" GROUP BY T1.teacher_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the id and last name of the teacher that has the most detentions with detention type code \"AFTER\"?", "context": "CREATE TABLE Detention (teacher_id VARCHAR, detention_type_code VARCHAR); CREATE TABLE Teachers (last_name VARCHAR, teacher_id VARCHAR)"}, {"answer": "SELECT T1.student_id, T2.first_name FROM Student_Addresses AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY AVG(monthly_rental) DESC LIMIT 1", "question": "What are the id and first name of the student whose addresses have the highest average monthly rental?", "context": "CREATE TABLE Students (first_name VARCHAR, student_id VARCHAR); CREATE TABLE Student_Addresses (student_id VARCHAR)"}, {"answer": "SELECT T2.address_id, T1.city FROM Addresses AS T1 JOIN Student_Addresses AS T2 ON T1.address_id = T2.address_id GROUP BY T2.address_id ORDER BY AVG(monthly_rental) DESC LIMIT 1", "question": "Find the id and city of the student address with the highest average monthly rental.", "context": "CREATE TABLE Student_Addresses (address_id VARCHAR); CREATE TABLE Addresses (city VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT T1.incident_type_code, T2.incident_type_description FROM Behavior_Incident AS T1 JOIN Ref_Incident_Type AS T2 ON T1.incident_type_code = T2.incident_type_code GROUP BY T1.incident_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What are the code and description of the most frequent behavior incident type?", "context": "CREATE TABLE Ref_Incident_Type (incident_type_description VARCHAR, incident_type_code VARCHAR); CREATE TABLE Behavior_Incident (incident_type_code VARCHAR)"}, {"answer": "SELECT T1.detention_type_code, T2.detention_type_description FROM Detention AS T1 JOIN Ref_Detention_Type AS T2 ON T1.detention_type_code = T2.detention_type_code GROUP BY T1.detention_type_code ORDER BY COUNT(*) LIMIT 1", "question": "What are the code and description of the least frequent detention type ?", "context": "CREATE TABLE Ref_Detention_Type (detention_type_description VARCHAR, detention_type_code VARCHAR); CREATE TABLE Detention (detention_type_code VARCHAR)"}, {"answer": "SELECT T1.date_of_notes FROM Assessment_Notes AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id WHERE T2.first_name = \"Fanny\"", "question": "Find the dates of assessment notes for students with first name \"Fanny\".", "context": "CREATE TABLE Students (student_id VARCHAR, first_name VARCHAR); CREATE TABLE Assessment_Notes (date_of_notes VARCHAR, student_id VARCHAR)"}, {"answer": "SELECT T1.text_of_notes FROM Assessment_Notes AS T1 JOIN Teachers AS T2 ON T1.teacher_id = T2.teacher_id WHERE T2.last_name = \"Schuster\"", "question": "Find the texts of assessment notes for teachers with last name \"Schuster\".", "context": "CREATE TABLE Assessment_Notes (text_of_notes VARCHAR, teacher_id VARCHAR); CREATE TABLE Teachers (teacher_id VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT T1.date_incident_start, date_incident_end FROM Behavior_Incident AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id WHERE T2.last_name = \"Fahey\"", "question": "Find the start and end dates of behavior incidents of students with last name \"Fahey\".", "context": "CREATE TABLE Behavior_Incident (date_incident_start VARCHAR, student_id VARCHAR); CREATE TABLE Students (student_id VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT T1.datetime_detention_start, datetime_detention_end FROM Detention AS T1 JOIN Teachers AS T2 ON T1.teacher_id = T2.teacher_id WHERE T2.last_name = \"Schultz\"", "question": "Find the start and end dates of detentions of teachers with last name \"Schultz\".", "context": "CREATE TABLE Detention (datetime_detention_start VARCHAR, teacher_id VARCHAR); CREATE TABLE Teachers (teacher_id VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT T2.address_id, T1.zip_postcode FROM Addresses AS T1 JOIN Student_Addresses AS T2 ON T1.address_id = T2.address_id ORDER BY monthly_rental DESC LIMIT 1", "question": "What are the id and zip code of the address with the highest monthly rental?", "context": "CREATE TABLE Student_Addresses (address_id VARCHAR); CREATE TABLE Addresses (zip_postcode VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT T2.cell_mobile_number FROM Student_Addresses AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id ORDER BY T1.monthly_rental LIMIT 1", "question": "What is the cell phone number of the student whose address has the lowest monthly rental?", "context": "CREATE TABLE Students (cell_mobile_number VARCHAR, student_id VARCHAR); CREATE TABLE Student_Addresses (student_id VARCHAR, monthly_rental VARCHAR)"}, {"answer": "SELECT T2.monthly_rental FROM Addresses AS T1 JOIN Student_Addresses AS T2 ON T1.address_id = T2.address_id WHERE T1.state_province_county = \"Texas\"", "question": "What are the monthly rentals of student addresses in Texas state?", "context": "CREATE TABLE Addresses (address_id VARCHAR, state_province_county VARCHAR); CREATE TABLE Student_Addresses (monthly_rental VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT T2.first_name, T2.last_name FROM Addresses AS T1 JOIN Students AS T2 ON T1.address_id = T2.address_id WHERE T1.state_province_county = \"Wisconsin\"", "question": "What are the first names and last names of students with address in Wisconsin state?", "context": "CREATE TABLE Addresses (address_id VARCHAR, state_province_county VARCHAR); CREATE TABLE Students (first_name VARCHAR, last_name VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT T1.line_1, AVG(T2.monthly_rental) FROM Addresses AS T1 JOIN Student_Addresses AS T2 ON T1.address_id = T2.address_id GROUP BY T2.address_id", "question": "What are the line 1 and average monthly rentals of all student addresses?", "context": "CREATE TABLE Addresses (line_1 VARCHAR, address_id VARCHAR); CREATE TABLE Student_Addresses (monthly_rental INTEGER, address_id VARCHAR)"}, {"answer": "SELECT T1.zip_postcode FROM Addresses AS T1 JOIN Teachers AS T2 ON T1.address_id = T2.address_id WHERE T2.first_name = \"Lyla\"", "question": "What is the zip code of the address where the teacher with first name \"Lyla\" lives?", "context": "CREATE TABLE Teachers (address_id VARCHAR, first_name VARCHAR); CREATE TABLE Addresses (zip_postcode VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT T2.email_address FROM Addresses AS T1 JOIN Teachers AS T2 ON T1.address_id = T2.address_id WHERE T1.zip_postcode = \"918\"", "question": "What are the email addresses of teachers whose address has zip code \"918\"?", "context": "CREATE TABLE Addresses (address_id VARCHAR, zip_postcode VARCHAR); CREATE TABLE Teachers (email_address VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM STUDENTS WHERE NOT student_id IN (SELECT student_id FROM Behavior_Incident)", "question": "How many students are not involved in any behavior incident?", "context": "CREATE TABLE STUDENTS (student_id VARCHAR); CREATE TABLE Behavior_Incident (student_id VARCHAR)"}, {"answer": "SELECT last_name FROM Teachers EXCEPT SELECT T1.last_name FROM Teachers AS T1 JOIN Detention AS T2 ON T1.teacher_id = T2.teacher_id", "question": "Find the last names of teachers who are not involved in any detention.", "context": "CREATE TABLE Teachers (last_name VARCHAR); CREATE TABLE Teachers (last_name VARCHAR, teacher_id VARCHAR); CREATE TABLE Detention (teacher_id VARCHAR)"}, {"answer": "SELECT T1.line_1 FROM Addresses AS T1 JOIN Students AS T2 ON T1.address_id = T2.address_id INTERSECT SELECT T1.line_1 FROM Addresses AS T1 JOIN Teachers AS T2 ON T1.address_id = T2.address_id", "question": "What are the line 1 of addresses shared by some students and some teachers?", "context": "CREATE TABLE Teachers (address_id VARCHAR); CREATE TABLE Students (address_id VARCHAR); CREATE TABLE Addresses (line_1 VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT T1.asset_id, T1.asset_details FROM Assets AS T1 JOIN Asset_Parts AS T2 ON T1.asset_id = T2.asset_id GROUP BY T1.asset_id HAVING COUNT(*) = 2 INTERSECT SELECT T1.asset_id, T1.asset_details FROM Assets AS T1 JOIN Fault_Log AS T2 ON T1.asset_id = T2.asset_id GROUP BY T1.asset_id HAVING COUNT(*) < 2", "question": "Which assets have 2 parts and have less than 2 fault logs? List the asset id and detail.", "context": "CREATE TABLE Assets (asset_id VARCHAR, asset_details VARCHAR); CREATE TABLE Asset_Parts (asset_id VARCHAR); CREATE TABLE Fault_Log (asset_id VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.maintenance_contract_id FROM Maintenance_Contracts AS T1 JOIN Assets AS T2 ON T1.maintenance_contract_id = T2.maintenance_contract_id GROUP BY T1.maintenance_contract_id", "question": "How many assets does each maintenance contract contain? List the number and the contract id.", "context": "CREATE TABLE Assets (maintenance_contract_id VARCHAR); CREATE TABLE Maintenance_Contracts (maintenance_contract_id VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.company_id FROM Third_Party_Companies AS T1 JOIN Assets AS T2 ON T1.company_id = T2.supplier_company_id GROUP BY T1.company_id", "question": "How many assets does each third party company supply? List the count and the company id.", "context": "CREATE TABLE Assets (supplier_company_id VARCHAR); CREATE TABLE Third_Party_Companies (company_id VARCHAR)"}, {"answer": "SELECT T1.company_id, T1.company_name FROM Third_Party_Companies AS T1 JOIN Maintenance_Engineers AS T2 ON T1.company_id = T2.company_id GROUP BY T1.company_id HAVING COUNT(*) >= 2 UNION SELECT T3.company_id, T3.company_name FROM Third_Party_Companies AS T3 JOIN Maintenance_Contracts AS T4 ON T3.company_id = T4.maintenance_contract_company_id GROUP BY T3.company_id HAVING COUNT(*) >= 2", "question": "Which third party companies have at least 2 maintenance engineers or have at least 2 maintenance contracts? List the company id and name.", "context": "CREATE TABLE Maintenance_Contracts (maintenance_contract_company_id VARCHAR); CREATE TABLE Maintenance_Engineers (company_id VARCHAR); CREATE TABLE Third_Party_Companies (company_id VARCHAR, company_name VARCHAR)"}, {"answer": "SELECT T1.staff_name, T1.staff_id FROM Staff AS T1 JOIN Fault_Log AS T2 ON T1.staff_id = T2.recorded_by_staff_id EXCEPT SELECT T3.staff_name, T3.staff_id FROM Staff AS T3 JOIN Engineer_Visits AS T4 ON T3.staff_id = T4.contact_staff_id", "question": "What is the name and id of the staff who recorded the fault log but has not contacted any visiting engineers?", "context": "CREATE TABLE Engineer_Visits (contact_staff_id VARCHAR); CREATE TABLE Staff (staff_name VARCHAR, staff_id VARCHAR); CREATE TABLE Fault_Log (recorded_by_staff_id VARCHAR)"}, {"answer": "SELECT T1.engineer_id, T1.first_name, T1.last_name FROM Maintenance_Engineers AS T1 JOIN Engineer_Visits AS T2 GROUP BY T1.engineer_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which engineer has visited the most times? Show the engineer id, first name and last name.", "context": "CREATE TABLE Maintenance_Engineers (engineer_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE Engineer_Visits (Id VARCHAR)"}, {"answer": "SELECT T1.part_name, T1.part_id FROM Parts AS T1 JOIN Part_Faults AS T2 ON T1.part_id = T2.part_id GROUP BY T1.part_id HAVING COUNT(*) > 2", "question": "Which parts have more than 2 faults? Show the part name and id.", "context": "CREATE TABLE Parts (part_name VARCHAR, part_id VARCHAR); CREATE TABLE Part_Faults (part_id VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.last_name, T1.other_details, T3.skill_description FROM Maintenance_Engineers AS T1 JOIN Engineer_Skills AS T2 ON T1.engineer_id = T2.engineer_id JOIN Skills AS T3 ON T2.skill_id = T3.skill_id", "question": "List all every engineer's first name, last name, details and coresponding skill description.", "context": "CREATE TABLE Maintenance_Engineers (first_name VARCHAR, last_name VARCHAR, other_details VARCHAR, engineer_id VARCHAR); CREATE TABLE Engineer_Skills (engineer_id VARCHAR, skill_id VARCHAR); CREATE TABLE Skills (skill_description VARCHAR, skill_id VARCHAR)"}, {"answer": "SELECT T1.fault_short_name, T3.skill_description FROM Part_Faults AS T1 JOIN Skills_Required_To_Fix AS T2 ON T1.part_fault_id = T2.part_fault_id JOIN Skills AS T3 ON T2.skill_id = T3.skill_id", "question": "For all the faults of different parts, what are all the decriptions of the skills required to fix them? List the name of the faults and the skill description.", "context": "CREATE TABLE Skills_Required_To_Fix (part_fault_id VARCHAR, skill_id VARCHAR); CREATE TABLE Part_Faults (fault_short_name VARCHAR, part_fault_id VARCHAR); CREATE TABLE Skills (skill_description VARCHAR, skill_id VARCHAR)"}, {"answer": "SELECT T1.part_name, COUNT(*) FROM Parts AS T1 JOIN Asset_Parts AS T2 ON T1.part_id = T2.part_id GROUP BY T1.part_name", "question": "How many assets can each parts be used in? List the part name and the number.", "context": "CREATE TABLE Parts (part_name VARCHAR, part_id VARCHAR); CREATE TABLE Asset_Parts (part_id VARCHAR)"}, {"answer": "SELECT T1.fault_description, T2.fault_status FROM Fault_Log AS T1 JOIN Fault_Log_Parts AS T2 ON T1.fault_log_entry_id = T2.fault_log_entry_id", "question": "What are all the fault descriptions and the fault status of all the faults recoreded in the logs?", "context": "CREATE TABLE Fault_Log (fault_description VARCHAR, fault_log_entry_id VARCHAR); CREATE TABLE Fault_Log_Parts (fault_status VARCHAR, fault_log_entry_id VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.fault_log_entry_id FROM Fault_Log AS T1 JOIN Engineer_Visits AS T2 ON T1.fault_log_entry_id = T2.fault_log_entry_id GROUP BY T1.fault_log_entry_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "How many engineer visits are required at most for a single fault log? List the number and the log entry id.", "context": "CREATE TABLE Fault_Log (fault_log_entry_id VARCHAR); CREATE TABLE Engineer_Visits (fault_log_entry_id VARCHAR)"}, {"answer": "SELECT DISTINCT last_name FROM Maintenance_Engineers", "question": "What are all the distinct last names of all the engineers?", "context": "CREATE TABLE Maintenance_Engineers (last_name VARCHAR)"}, {"answer": "SELECT DISTINCT fault_status FROM Fault_Log_Parts", "question": "How many fault status codes are recorded in the fault log parts table?", "context": "CREATE TABLE Fault_Log_Parts (fault_status VARCHAR)"}, {"answer": "SELECT first_name, last_name FROM Maintenance_Engineers WHERE NOT engineer_id IN (SELECT engineer_id FROM Engineer_Visits)", "question": "Which engineers have never visited to maintain the assets? List the engineer first name and last name.", "context": "CREATE TABLE Engineer_Visits (first_name VARCHAR, last_name VARCHAR, engineer_id VARCHAR); CREATE TABLE Maintenance_Engineers (first_name VARCHAR, last_name VARCHAR, engineer_id VARCHAR)"}, {"answer": "SELECT asset_id, asset_details, asset_make, asset_model FROM Assets", "question": "List the asset id, details, make and model for every asset.", "context": "CREATE TABLE Assets (asset_id VARCHAR, asset_details VARCHAR, asset_make VARCHAR, asset_model VARCHAR)"}, {"answer": "SELECT asset_acquired_date FROM Assets ORDER BY asset_acquired_date LIMIT 1", "question": "When was the first asset acquired?", "context": "CREATE TABLE Assets (asset_acquired_date VARCHAR)"}, {"answer": "SELECT T1.part_id, T1.part_name FROM Parts AS T1 JOIN Part_Faults AS T2 ON T1.part_id = T2.part_id JOIN Skills_Required_To_Fix AS T3 ON T2.part_fault_id = T3.part_fault_id GROUP BY T1.part_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which part fault requires the most number of skills to fix? List part id and name.", "context": "CREATE TABLE Part_Faults (part_id VARCHAR, part_fault_id VARCHAR); CREATE TABLE Skills_Required_To_Fix (part_fault_id VARCHAR); CREATE TABLE Parts (part_id VARCHAR, part_name VARCHAR)"}, {"answer": "SELECT T1.part_name FROM Parts AS T1 JOIN Part_Faults AS T2 ON T1.part_id = T2.part_id GROUP BY T1.part_name ORDER BY COUNT(*) LIMIT 1", "question": "Which kind of part has the least number of faults? List the part name.", "context": "CREATE TABLE Parts (part_name VARCHAR, part_id VARCHAR); CREATE TABLE Part_Faults (part_id VARCHAR)"}, {"answer": "SELECT T1.engineer_id, T1.first_name, T1.last_name FROM Maintenance_Engineers AS T1 JOIN Engineer_Visits AS T2 ON T1.engineer_id = T2.engineer_id GROUP BY T1.engineer_id ORDER BY COUNT(*) LIMIT 1", "question": "Among those engineers who have visited, which engineer makes the least number of visits? List the engineer id, first name and last name.", "context": "CREATE TABLE Engineer_Visits (engineer_id VARCHAR); CREATE TABLE Maintenance_Engineers (engineer_id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT T1.staff_name, T3.first_name, T3.last_name FROM Staff AS T1 JOIN Engineer_Visits AS T2 ON T1.staff_id = T2.contact_staff_id JOIN Maintenance_Engineers AS T3 ON T2.engineer_id = T3.engineer_id", "question": "Which staff have contacted which engineers? List the staff name and the engineer first name and last name.", "context": "CREATE TABLE Engineer_Visits (contact_staff_id VARCHAR, engineer_id VARCHAR); CREATE TABLE Staff (staff_name VARCHAR, staff_id VARCHAR); CREATE TABLE Maintenance_Engineers (first_name VARCHAR, last_name VARCHAR, engineer_id VARCHAR)"}, {"answer": "SELECT T1.fault_log_entry_id, T1.fault_description, T1.fault_log_entry_datetime FROM Fault_Log AS T1 JOIN Fault_Log_Parts AS T2 ON T1.fault_log_entry_id = T2.fault_log_entry_id GROUP BY T1.fault_log_entry_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which fault log included the most number of faulty parts? List the fault log id, description and record time.", "context": "CREATE TABLE Fault_Log (fault_log_entry_id VARCHAR, fault_description VARCHAR, fault_log_entry_datetime VARCHAR); CREATE TABLE Fault_Log_Parts (fault_log_entry_id VARCHAR)"}, {"answer": "SELECT T1.skill_id, T1.skill_description FROM Skills AS T1 JOIN Skills_Required_To_Fix AS T2 ON T1.skill_id = T2.skill_id GROUP BY T1.skill_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which skill is used in fixing the most number of faults? List the skill id and description.", "context": "CREATE TABLE Skills (skill_id VARCHAR, skill_description VARCHAR); CREATE TABLE Skills_Required_To_Fix (skill_id VARCHAR)"}, {"answer": "SELECT DISTINCT asset_model FROM Assets", "question": "What are all the distinct asset models?", "context": "CREATE TABLE Assets (asset_model VARCHAR)"}, {"answer": "SELECT asset_make, asset_model, asset_details FROM Assets ORDER BY asset_disposed_date", "question": "List the all the assets make, model, details by the disposed date ascendingly.", "context": "CREATE TABLE Assets (asset_make VARCHAR, asset_model VARCHAR, asset_details VARCHAR, asset_disposed_date VARCHAR)"}, {"answer": "SELECT part_id, chargeable_amount FROM Parts ORDER BY chargeable_amount LIMIT 1", "question": "Which part has the least chargeable amount? List the part id and amount.", "context": "CREATE TABLE Parts (part_id VARCHAR, chargeable_amount VARCHAR)"}, {"answer": "SELECT T1.company_name FROM Third_Party_Companies AS T1 JOIN Maintenance_Contracts AS T2 ON T1.company_id = T2.maintenance_contract_company_id ORDER BY T2.contract_start_date LIMIT 1", "question": "Which company started the earliest the maintenance contract? Show the company name.", "context": "CREATE TABLE Third_Party_Companies (company_name VARCHAR, company_id VARCHAR); CREATE TABLE Maintenance_Contracts (maintenance_contract_company_id VARCHAR, contract_start_date VARCHAR)"}, {"answer": "SELECT T1.company_name FROM Third_Party_Companies AS T1 JOIN Maintenance_Contracts AS T2 ON T1.company_id = T2.maintenance_contract_company_id JOIN Ref_Company_Types AS T3 ON T1.company_type_code = T3.company_type_code ORDER BY T2.contract_end_date DESC LIMIT 1", "question": "What is the description of the type of the company who concluded its contracts most recently?", "context": "CREATE TABLE Maintenance_Contracts (maintenance_contract_company_id VARCHAR, contract_end_date VARCHAR); CREATE TABLE Third_Party_Companies (company_name VARCHAR, company_id VARCHAR, company_type_code VARCHAR); CREATE TABLE Ref_Company_Types (company_type_code VARCHAR)"}, {"answer": "SELECT gender FROM staff GROUP BY gender ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which gender makes up the majority of the staff?", "context": "CREATE TABLE staff (gender VARCHAR)"}, {"answer": "SELECT T1.staff_name, COUNT(*) FROM Staff AS T1 JOIN Engineer_Visits AS T2 ON T1.staff_id = T2.contact_staff_id GROUP BY T1.staff_name", "question": "How many engineers did each staff contact? List both the contact staff name and number of engineers contacted.", "context": "CREATE TABLE Engineer_Visits (contact_staff_id VARCHAR); CREATE TABLE Staff (staff_name VARCHAR, staff_id VARCHAR)"}, {"answer": "SELECT asset_model FROM Assets WHERE NOT asset_id IN (SELECT asset_id FROM Fault_Log)", "question": "Which assets did not incur any fault log? List the asset model.", "context": "CREATE TABLE Fault_Log (asset_model VARCHAR, asset_id VARCHAR); CREATE TABLE Assets (asset_model VARCHAR, asset_id VARCHAR)"}, {"answer": "SELECT local_authority, services FROM station", "question": "list the local authorities and services provided by all stations.", "context": "CREATE TABLE station (local_authority VARCHAR, services VARCHAR)"}, {"answer": "SELECT train_number, name FROM train ORDER BY TIME", "question": "show all train numbers and names ordered by their time from early to late.", "context": "CREATE TABLE train (train_number VARCHAR, name VARCHAR, TIME VARCHAR)"}, {"answer": "SELECT TIME, train_number FROM train WHERE destination = 'Chennai' ORDER BY TIME", "question": "Give me the times and numbers of all trains that go to Chennai, ordered by time.", "context": "CREATE TABLE train (TIME VARCHAR, train_number VARCHAR, destination VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM train WHERE name LIKE \"%Express%\"", "question": "How many trains have 'Express' in their names?", "context": "CREATE TABLE train (name VARCHAR)"}, {"answer": "SELECT train_number, TIME FROM train WHERE origin = 'Chennai' AND destination = 'Guruvayur'", "question": "Find the number and time of the train that goes from Chennai to Guruvayur.", "context": "CREATE TABLE train (train_number VARCHAR, TIME VARCHAR, origin VARCHAR, destination VARCHAR)"}, {"answer": "SELECT origin, COUNT(*) FROM train GROUP BY origin", "question": "Find the number of trains starting from each origin.", "context": "CREATE TABLE train (origin VARCHAR)"}, {"answer": "SELECT t1.name FROM train AS t1 JOIN route AS t2 ON t1.id = t2.train_id GROUP BY t2.train_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of the train whose route runs through greatest number of stations.", "context": "CREATE TABLE route (train_id VARCHAR); CREATE TABLE train (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT COUNT(*), t1.network_name, t1.services FROM station AS t1 JOIN route AS t2 ON t1.id = t2.station_id GROUP BY t2.station_id", "question": "Find the number of trains for each station, as well as the station network name and services.", "context": "CREATE TABLE route (station_id VARCHAR); CREATE TABLE station (network_name VARCHAR, services VARCHAR, id VARCHAR)"}, {"answer": "SELECT AVG(high_temperature), day_of_week FROM weekly_weather GROUP BY day_of_week", "question": "What is the average high temperature for each day of week?", "context": "CREATE TABLE weekly_weather (day_of_week VARCHAR, high_temperature INTEGER)"}, {"answer": "SELECT MAX(t1.low_temperature), AVG(t1.precipitation) FROM weekly_weather AS t1 JOIN station AS t2 ON t1.station_id = t2.id WHERE t2.network_name = \"Amersham\"", "question": "Give me the maximum low temperature and average precipitation at the Amersham station.", "context": "CREATE TABLE weekly_weather (low_temperature INTEGER, precipitation INTEGER, station_id VARCHAR); CREATE TABLE station (id VARCHAR, network_name VARCHAR)"}, {"answer": "SELECT t3.name, t3.time FROM station AS t1 JOIN route AS t2 ON t1.id = t2.station_id JOIN train AS t3 ON t2.train_id = t3.id WHERE t1.local_authority = \"Chiltern\"", "question": "Find names and times of trains that run through stations for the local authority Chiltern.", "context": "CREATE TABLE station (id VARCHAR, local_authority VARCHAR); CREATE TABLE route (station_id VARCHAR, train_id VARCHAR); CREATE TABLE train (name VARCHAR, time VARCHAR, id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT services) FROM station", "question": "How many different services are provided by all stations?", "context": "CREATE TABLE station (services VARCHAR)"}, {"answer": "SELECT t2.id, t2.local_authority FROM weekly_weather AS t1 JOIN station AS t2 ON t1.station_id = t2.id GROUP BY t1.station_id ORDER BY AVG(high_temperature) DESC LIMIT 1", "question": "Find the id and local authority of the station with has the highest average high temperature.", "context": "CREATE TABLE weekly_weather (station_id VARCHAR); CREATE TABLE station (id VARCHAR, local_authority VARCHAR)"}, {"answer": "SELECT t2.id, t2.local_authority FROM weekly_weather AS t1 JOIN station AS t2 ON t1.station_id = t2.id GROUP BY t1.station_id HAVING MAX(t1.precipitation) > 50", "question": "Find the id and local authority of the station whose maximum precipitation is higher than 50.", "context": "CREATE TABLE weekly_weather (station_id VARCHAR, precipitation INTEGER); CREATE TABLE station (id VARCHAR, local_authority VARCHAR)"}, {"answer": "SELECT MIN(low_temperature), MAX(wind_speed_mph) FROM weekly_weather", "question": "show the lowest low temperature and highest wind speed in miles per hour.", "context": "CREATE TABLE weekly_weather (low_temperature INTEGER, wind_speed_mph INTEGER)"}, {"answer": "SELECT origin FROM train GROUP BY origin HAVING COUNT(*) > 1", "question": "Find the origins from which more than 1 train starts.", "context": "CREATE TABLE train (origin VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE DEPT_NAME = \"Accounting\"", "question": "Find the number of professors in accounting department.", "context": "CREATE TABLE professor (dept_code VARCHAR); CREATE TABLE department (dept_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT PROF_NUM) FROM CLASS WHERE CRS_CODE = \"ACCT-211\"", "question": "How many professors are teaching class with code ACCT-211?", "context": "CREATE TABLE CLASS (PROF_NUM VARCHAR, CRS_CODE VARCHAR)"}, {"answer": "SELECT T3.EMP_FNAME, T3.EMP_LNAME FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code JOIN employee AS T3 ON T1.EMP_NUM = T3.EMP_NUM WHERE DEPT_NAME = \"Biology\"", "question": "What is the first and last name of the professor in biology department?", "context": "CREATE TABLE professor (dept_code VARCHAR, EMP_NUM VARCHAR); CREATE TABLE department (dept_code VARCHAR); CREATE TABLE employee (EMP_FNAME VARCHAR, EMP_LNAME VARCHAR, EMP_NUM VARCHAR)"}, {"answer": "SELECT DISTINCT T1.EMP_FNAME, T1.EMP_DOB FROM employee AS T1 JOIN CLASS AS T2 ON T1.EMP_NUM = T2.PROF_NUM WHERE CRS_CODE = \"ACCT-211\"", "question": "What are the first names and date of birth of professors teaching course ACCT-211?", "context": "CREATE TABLE CLASS (PROF_NUM VARCHAR); CREATE TABLE employee (EMP_FNAME VARCHAR, EMP_DOB VARCHAR, EMP_NUM VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM employee AS T1 JOIN CLASS AS T2 ON T1.EMP_NUM = T2.PROF_NUM WHERE T1.EMP_LNAME = 'Graztevski'", "question": "How many classes are professor whose last name is Graztevski has?", "context": "CREATE TABLE CLASS (PROF_NUM VARCHAR); CREATE TABLE employee (EMP_NUM VARCHAR, EMP_LNAME VARCHAR)"}, {"answer": "SELECT school_code FROM department WHERE dept_name = \"Accounting\"", "question": "What is the code of the school where the accounting department belongs to?", "context": "CREATE TABLE department (school_code VARCHAR, dept_name VARCHAR)"}, {"answer": "SELECT crs_credit, crs_description FROM course WHERE crs_code = 'CIS-220'", "question": "How many credits does course CIS-220 have, and what its description?", "context": "CREATE TABLE course (crs_credit VARCHAR, crs_description VARCHAR, crs_code VARCHAR)"}, {"answer": "SELECT dept_address FROM department WHERE dept_name = 'History'", "question": "what is the address of history department?", "context": "CREATE TABLE department (dept_address VARCHAR, dept_name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT dept_address) FROM department WHERE school_code = 'BUS'", "question": "How many different locations does the school with code BUS has?", "context": "CREATE TABLE department (dept_address VARCHAR, school_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT dept_address), school_code FROM department GROUP BY school_code", "question": "How many different locations does each school have?", "context": "CREATE TABLE department (school_code VARCHAR, dept_address VARCHAR)"}, {"answer": "SELECT crs_credit, crs_description FROM course WHERE crs_code = 'QM-261'", "question": "Find the description and credit for the course QM-261?", "context": "CREATE TABLE course (crs_credit VARCHAR, crs_description VARCHAR, crs_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT dept_name), school_code FROM department GROUP BY school_code", "question": "Find the number of departments in each school.", "context": "CREATE TABLE department (school_code VARCHAR, dept_name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT dept_name), school_code FROM department GROUP BY school_code HAVING COUNT(DISTINCT dept_name) < 5", "question": "Find the number of different departments in each school whose number of different departments is less than 5.", "context": "CREATE TABLE department (school_code VARCHAR, dept_name VARCHAR)"}, {"answer": "SELECT COUNT(*), crs_code FROM CLASS GROUP BY crs_code", "question": "How many sections does each course has?", "context": "CREATE TABLE CLASS (crs_code VARCHAR)"}, {"answer": "SELECT SUM(crs_credit), dept_code FROM course GROUP BY dept_code", "question": "What is the total credit does each department offer?", "context": "CREATE TABLE course (dept_code VARCHAR, crs_credit INTEGER)"}, {"answer": "SELECT COUNT(*), class_room FROM CLASS GROUP BY class_room HAVING COUNT(*) >= 2", "question": "Find the number of classes offered for all class rooms that held at least 2 classes.", "context": "CREATE TABLE CLASS (class_room VARCHAR)"}, {"answer": "SELECT COUNT(*), dept_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code GROUP BY dept_code", "question": "Find the number of classes in each department.", "context": "CREATE TABLE CLASS (crs_code VARCHAR); CREATE TABLE course (crs_code VARCHAR)"}, {"answer": "SELECT COUNT(*), T3.school_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T2.dept_code = T3.dept_code GROUP BY T3.school_code", "question": "Find the number of classes in each school.", "context": "CREATE TABLE department (school_code VARCHAR, dept_code VARCHAR); CREATE TABLE CLASS (crs_code VARCHAR); CREATE TABLE course (crs_code VARCHAR, dept_code VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.school_code FROM department AS T1 JOIN professor AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.school_code", "question": "What is the number of professors for different school?", "context": "CREATE TABLE department (school_code VARCHAR, dept_code VARCHAR); CREATE TABLE professor (dept_code VARCHAR)"}, {"answer": "SELECT emp_jobcode, COUNT(*) FROM employee GROUP BY emp_jobcode ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the count and code of the job has most employees.", "context": "CREATE TABLE employee (emp_jobcode VARCHAR)"}, {"answer": "SELECT T1.school_code FROM department AS T1 JOIN professor AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.school_code ORDER BY COUNT(*) LIMIT 1", "question": "Which school has the smallest amount of professors?", "context": "CREATE TABLE department (school_code VARCHAR, dept_code VARCHAR); CREATE TABLE professor (dept_code VARCHAR)"}, {"answer": "SELECT COUNT(*), dept_code FROM professor WHERE prof_high_degree = 'Ph.D.' GROUP BY dept_code", "question": "Find the number of professors with a Ph.D. degree in each department.", "context": "CREATE TABLE professor (dept_code VARCHAR, prof_high_degree VARCHAR)"}, {"answer": "SELECT COUNT(*), dept_code FROM student GROUP BY dept_code", "question": "Find the number of students for each department.", "context": "CREATE TABLE student (dept_code VARCHAR)"}, {"answer": "SELECT SUM(stu_hrs), dept_code FROM student GROUP BY dept_code", "question": "Find the total number of hours have done for all students in each department.", "context": "CREATE TABLE student (dept_code VARCHAR, stu_hrs INTEGER)"}, {"answer": "SELECT MAX(stu_gpa), AVG(stu_gpa), MIN(stu_gpa), dept_code FROM student GROUP BY dept_code", "question": "Find the max, average, and minimum gpa of all students in each department.", "context": "CREATE TABLE student (dept_code VARCHAR, stu_gpa INTEGER)"}, {"answer": "SELECT T2.dept_name, AVG(T1.stu_gpa) FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY AVG(T1.stu_gpa) DESC LIMIT 1", "question": "What is the name and the average gpa of department whose students have the highest average gpa?", "context": "CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR); CREATE TABLE student (stu_gpa INTEGER, dept_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT school_code) FROM department", "question": "how many schools exist in total?", "context": "CREATE TABLE department (school_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT class_code) FROM CLASS", "question": "How many different classes are there?", "context": "CREATE TABLE CLASS (class_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT crs_code) FROM CLASS", "question": "How many courses are offered?", "context": "CREATE TABLE CLASS (crs_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT dept_name) FROM department", "question": "How many departments does the college has?", "context": "CREATE TABLE department (dept_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM department AS T1 JOIN course AS T2 ON T1.dept_code = T2.dept_code WHERE dept_name = \"Computer Info. Systems\"", "question": "How many courses are offered by the Computer Info. Systems department?", "context": "CREATE TABLE course (dept_code VARCHAR); CREATE TABLE department (dept_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT class_section) FROM CLASS WHERE crs_code = 'ACCT-211'", "question": "How many sections does course ACCT-211 has?", "context": "CREATE TABLE CLASS (class_section VARCHAR, crs_code VARCHAR)"}, {"answer": "SELECT SUM(T1.crs_credit), T1.dept_code FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code GROUP BY T1.dept_code", "question": "Find the total credits of all classes offered by each department.", "context": "CREATE TABLE CLASS (crs_code VARCHAR); CREATE TABLE course (dept_code VARCHAR, crs_credit INTEGER, crs_code VARCHAR)"}, {"answer": "SELECT T3.dept_name FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T1.dept_code = T3.dept_code GROUP BY T1.dept_code ORDER BY SUM(T1.crs_credit) DESC LIMIT 1", "question": "Find the name of the department that offers the largest number of credits of all classes.", "context": "CREATE TABLE CLASS (crs_code VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR); CREATE TABLE course (dept_code VARCHAR, crs_code VARCHAR, crs_credit INTEGER)"}, {"answer": "SELECT COUNT(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code WHERE T1.crs_code = 'ACCT-211'", "question": "How many students enrolled in class ACCT-211?", "context": "CREATE TABLE enroll (class_code VARCHAR); CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR)"}, {"answer": "SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211'", "question": "What is the first name of each student enrolled in class ACCT-211?", "context": "CREATE TABLE student (stu_fname VARCHAR, stu_num VARCHAR); CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE enroll (class_code VARCHAR, stu_num VARCHAR)"}, {"answer": "SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211' AND T2.enroll_grade = 'C'", "question": "What is the first name of students enrolled in class ACCT-211 and got grade C?", "context": "CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE student (stu_fname VARCHAR, stu_num VARCHAR); CREATE TABLE enroll (class_code VARCHAR, stu_num VARCHAR, enroll_grade VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM employee", "question": "Find the total number of employees.", "context": "CREATE TABLE employee (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM professor WHERE prof_high_degree = 'Ph.D.'", "question": "How many professors do have a Ph.D. degree?", "context": "CREATE TABLE professor (prof_high_degree VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code WHERE T4.dept_name = 'Accounting'", "question": "How many students are enrolled in the class taught by some professor from the accounting department?", "context": "CREATE TABLE enroll (class_code VARCHAR); CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE course (crs_code VARCHAR, dept_code VARCHAR); CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR)"}, {"answer": "SELECT T4.dept_name FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code GROUP BY T3.dept_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the department that has the largest number of students enrolled?", "context": "CREATE TABLE enroll (class_code VARCHAR); CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE course (dept_code VARCHAR, crs_code VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR)"}, {"answer": "SELECT dept_name FROM department ORDER BY dept_name", "question": "list names of all departments ordered by their names.", "context": "CREATE TABLE department (dept_name VARCHAR)"}, {"answer": "SELECT class_code FROM CLASS WHERE class_room = 'KLR209'", "question": "List the codes of all courses that take place in room KLR209.", "context": "CREATE TABLE CLASS (class_code VARCHAR, class_room VARCHAR)"}, {"answer": "SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' ORDER BY emp_dob", "question": "List the first name of all employees with job code PROF ordered by their date of birth.", "context": "CREATE TABLE employee (emp_fname VARCHAR, emp_jobcode VARCHAR, emp_dob VARCHAR)"}, {"answer": "SELECT T2.emp_fname, T1.prof_office FROM professor AS T1 JOIN employee AS T2 ON T1.emp_num = T2.emp_num ORDER BY T2.emp_fname", "question": "Find the first names and offices of all professors sorted by alphabetical order of their first name.", "context": "CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)"}, {"answer": "SELECT emp_fname, emp_lname FROM employee ORDER BY emp_dob LIMIT 1", "question": "What is the first and last name of the oldest employee?", "context": "CREATE TABLE employee (emp_fname VARCHAR, emp_lname VARCHAR, emp_dob VARCHAR)"}, {"answer": "SELECT stu_fname, stu_lname, stu_gpa FROM student WHERE stu_gpa > 3 ORDER BY stu_dob DESC LIMIT 1", "question": "What is the first, last name, gpa of the youngest one among students whose GPA is above 3?", "context": "CREATE TABLE student (stu_fname VARCHAR, stu_lname VARCHAR, stu_gpa INTEGER, stu_dob VARCHAR)"}, {"answer": "SELECT DISTINCT stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE enroll_grade = 'C'", "question": "What is the first name of students who got grade C in any class?", "context": "CREATE TABLE student (stu_num VARCHAR); CREATE TABLE enroll (stu_num VARCHAR)"}, {"answer": "SELECT T2.dept_name FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY COUNT(*) LIMIT 1", "question": "What is the name of department where has the smallest number of professors?", "context": "CREATE TABLE professor (dept_code VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR)"}, {"answer": "SELECT T2.dept_name, T1.dept_code FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T1.prof_high_degree = 'Ph.D.' GROUP BY T1.dept_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of department where has the largest number of professors with a Ph.D. degree?", "context": "CREATE TABLE professor (dept_code VARCHAR, prof_high_degree VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR)"}, {"answer": "SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' EXCEPT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num", "question": "What are the first names of the professors who do not teach a class.", "context": "CREATE TABLE employee (emp_fname VARCHAR, emp_jobcode VARCHAR); CREATE TABLE CLASS (prof_num VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)"}, {"answer": "SELECT T1.emp_fname FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History' EXCEPT SELECT T4.emp_fname FROM employee AS T4 JOIN CLASS AS T5 ON T4.emp_num = T5.prof_num", "question": "What is the first names of the professors from the history department who do not teach a class.", "context": "CREATE TABLE professor (emp_num VARCHAR, dept_code VARCHAR); CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE CLASS (prof_num VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)"}, {"answer": "SELECT T1.emp_lname, T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History'", "question": "What is the last name and office of the professor from the history department?", "context": "CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE employee (emp_lname VARCHAR, emp_num VARCHAR); CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR, dept_code VARCHAR)"}, {"answer": "SELECT T3.dept_name, T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T1.emp_lname = 'Heffington'", "question": "What is department name and office for the professor whose last name is Heffington?", "context": "CREATE TABLE employee (emp_num VARCHAR, emp_lname VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR); CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR, dept_code VARCHAR)"}, {"answer": "SELECT T1.emp_lname, T1.emp_hiredate FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num WHERE T2.prof_office = 'DRE 102'", "question": "Find the last name and hire date of the professor who is in office DRE 102.", "context": "CREATE TABLE professor (emp_num VARCHAR, prof_office VARCHAR); CREATE TABLE employee (emp_lname VARCHAR, emp_hiredate VARCHAR, emp_num VARCHAR)"}, {"answer": "SELECT T1.crs_code FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num WHERE T3.stu_lname = 'Smithson'", "question": "What is the code of the course which the student whose last name is Smithson took?", "context": "CREATE TABLE student (stu_num VARCHAR, stu_lname VARCHAR); CREATE TABLE enroll (class_code VARCHAR, stu_num VARCHAR); CREATE TABLE CLASS (crs_code VARCHAR, class_code VARCHAR)"}, {"answer": "SELECT T4.crs_description, T4.crs_credit FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num JOIN course AS T4 ON T4.crs_code = T1.crs_code WHERE T3.stu_lname = 'Smithson'", "question": "What are the description and credit of the course which the student whose last name is Smithson took?", "context": "CREATE TABLE student (stu_num VARCHAR, stu_lname VARCHAR); CREATE TABLE course (crs_description VARCHAR, crs_credit VARCHAR, crs_code VARCHAR); CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE enroll (class_code VARCHAR, stu_num VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM professor WHERE prof_high_degree = 'Ph.D.' OR prof_high_degree = 'MA'", "question": "How many professors who has a either Ph.D. or MA degree?", "context": "CREATE TABLE professor (prof_high_degree VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T2.dept_name = 'Accounting' OR T2.dept_name = 'Biology'", "question": "How many professors who are from either Accounting or Biology department?", "context": "CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE professor (dept_code VARCHAR)"}, {"answer": "SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'CIS-220' INTERSECT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'QM-261'", "question": "Find the first name of the professor who is teaching two courses with code CIS-220 and QM-261.", "context": "CREATE TABLE CLASS (prof_num VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)"}, {"answer": "SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Accounting' INTERSECT SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Computer Info. Systems'", "question": "Find the first name of student who is taking classes from accounting and Computer Info. Systems departments", "context": "CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE enroll (stu_num VARCHAR, class_code VARCHAR); CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE course (crs_code VARCHAR, dept_code VARCHAR); CREATE TABLE student (stu_fname VARCHAR, stu_num VARCHAR)"}, {"answer": "SELECT AVG(T2.stu_gpa) FROM enroll AS T1 JOIN student AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T1.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211'", "question": "What is the average gpa of the students enrolled in the course with code ACCT-211?", "context": "CREATE TABLE enroll (stu_num VARCHAR, class_code VARCHAR); CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE student (stu_gpa INTEGER, stu_num VARCHAR)"}, {"answer": "SELECT stu_gpa, stu_phone, stu_fname FROM student ORDER BY stu_gpa DESC LIMIT 5", "question": "What is the first name, gpa and phone number of the top 5 students with highest gpa?", "context": "CREATE TABLE student (stu_gpa VARCHAR, stu_phone VARCHAR, stu_fname VARCHAR)"}, {"answer": "SELECT T2.dept_name FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code ORDER BY stu_gpa LIMIT 1", "question": "What is the department name of the students with lowest gpa belongs to?", "context": "CREATE TABLE student (dept_code VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR)"}, {"answer": "SELECT stu_fname, stu_gpa FROM student WHERE stu_gpa < (SELECT AVG(stu_gpa) FROM student)", "question": "Find the first name and gpa of the students whose gpa is lower than the average gpa of all students.", "context": "CREATE TABLE student (stu_fname VARCHAR, stu_gpa INTEGER)"}, {"answer": "SELECT T2.dept_name, T2.dept_address FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name and address of the department that has the highest number of students.", "context": "CREATE TABLE student (dept_code VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_address VARCHAR, dept_code VARCHAR)"}, {"answer": "SELECT T2.dept_name, T2.dept_address, COUNT(*) FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY COUNT(*) DESC LIMIT 3", "question": "Find the name, address, number of students in the departments that have the top 3 highest number of students.", "context": "CREATE TABLE student (dept_code VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_address VARCHAR, dept_code VARCHAR)"}, {"answer": "SELECT T1.emp_fname, T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T3.dept_code = T2.dept_code WHERE T3.dept_name = 'History' AND T2.prof_high_degree = 'Ph.D.'", "question": "Find the first name and office of the professor who is in the history department and has a Ph.D. degree.", "context": "CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR, dept_code VARCHAR, prof_high_degree VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)"}, {"answer": "SELECT T2.emp_fname, T1.crs_code FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num", "question": "Find the first names of all instructors who have taught some course and the course code.", "context": "CREATE TABLE CLASS (crs_code VARCHAR, prof_num VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)"}, {"answer": "SELECT T2.emp_fname, T3.crs_description 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", "question": "Find the first names of all instructors who have taught some course and the course description.", "context": "CREATE TABLE course (crs_description VARCHAR, crs_code VARCHAR); CREATE TABLE CLASS (prof_num VARCHAR, crs_code VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)"}, {"answer": "SELECT T2.emp_fname, T4.prof_office, T3.crs_description 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", "question": "Find the first names and offices of all instructors who have taught some course and also find the course description.", "context": "CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR); CREATE TABLE course (crs_description VARCHAR, crs_code VARCHAR); CREATE TABLE CLASS (prof_num VARCHAR, crs_code VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num 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", "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 T1.stu_fname, T1.stu_lname, T4.crs_description FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code JOIN course AS T4 ON T3.crs_code = T4.crs_code", "question": "Find names of all students who took some course and the course description.", "context": "CREATE TABLE enroll (stu_num VARCHAR, class_code VARCHAR); CREATE TABLE course (crs_description VARCHAR, crs_code VARCHAR); CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE student (stu_fname VARCHAR, stu_lname VARCHAR, stu_num VARCHAR)"}, {"answer": "SELECT T1.stu_fname, T1.stu_lname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE T2.enroll_grade = 'C' OR T2.enroll_grade = 'A'", "question": "Find names of all students who took some course and got A or C.", "context": "CREATE TABLE enroll (stu_num VARCHAR, enroll_grade VARCHAR); CREATE TABLE student (stu_fname VARCHAR, stu_lname VARCHAR, stu_num VARCHAR)"}, {"answer": "SELECT T2.emp_fname, T1.class_room FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN professor AS T3 ON T2.emp_num = T3.emp_num JOIN department AS T4 ON T4.dept_code = T3.dept_code WHERE T4.dept_name = 'Accounting'", "question": "Find the first names of all professors in the Accounting department who is teaching some course and the class room.", "context": "CREATE TABLE CLASS (class_room VARCHAR, prof_num VARCHAR); CREATE TABLE professor (emp_num VARCHAR, dept_code VARCHAR); CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)"}, {"answer": "SELECT DISTINCT T2.emp_fname, T3.prof_high_degree FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN professor AS T3 ON T2.emp_num = T3.emp_num JOIN department AS T4 ON T4.dept_code = T3.dept_code WHERE T4.dept_name = 'Computer Info. Systems'", "question": "Find the first names and degree of all professors who are teaching some class in Computer Info. Systems department.", "context": "CREATE TABLE professor (prof_high_degree VARCHAR, emp_num VARCHAR, dept_code VARCHAR); CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR); CREATE TABLE CLASS (prof_num VARCHAR)"}, {"answer": "SELECT T1.stu_lname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE T2.enroll_grade = 'A' AND T2.class_code = 10018", "question": "What is the last name of the student who got a grade A in the class with code 10018.", "context": "CREATE TABLE enroll (stu_num VARCHAR, enroll_grade VARCHAR, class_code VARCHAR); CREATE TABLE student (stu_lname VARCHAR, stu_num VARCHAR)"}, {"answer": "SELECT T2.emp_fname, T1.prof_office FROM professor AS T1 JOIN employee AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T1.dept_code = T3.dept_code WHERE T3.dept_name = 'History' AND T1.prof_high_degree <> 'Ph.D.'", "question": "Find the first name and office of history professor who did not get a Ph.D. degree.", "context": "CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR, dept_code VARCHAR, prof_high_degree VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)"}, {"answer": "SELECT T2.emp_fname FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num GROUP BY T1.prof_num HAVING COUNT(*) > 1", "question": "Find the first names of professors who are teaching more than one class.", "context": "CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR); CREATE TABLE CLASS (prof_num VARCHAR)"}, {"answer": "SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num GROUP BY T2.stu_num HAVING COUNT(*) = 1", "question": "Find the first names of students who took exactly one class.", "context": "CREATE TABLE enroll (stu_num VARCHAR); CREATE TABLE student (stu_fname VARCHAR, stu_num VARCHAR)"}, {"answer": "SELECT T2.dept_name FROM course AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T1.crs_description LIKE '%Statistics%'", "question": "Find the name of department that offers the class whose description has the word \"Statistics\".", "context": "CREATE TABLE course (dept_code VARCHAR, crs_description VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR)"}, {"answer": "SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211' AND T1.stu_lname LIKE 'S%'", "question": "What is the first name of the student whose last name starting with the letter S and is taking ACCT-211 class?", "context": "CREATE TABLE enroll (stu_num VARCHAR, class_code VARCHAR); CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE student (stu_fname VARCHAR, stu_num VARCHAR, stu_lname VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM club", "question": "How many clubs are there?", "context": "CREATE TABLE club (Id VARCHAR)"}, {"answer": "SELECT DISTINCT Region FROM club ORDER BY Region", "question": "List the distinct region of clubs in ascending alphabetical order.", "context": "CREATE TABLE club (Region VARCHAR)"}, {"answer": "SELECT AVG(Gold) FROM club_rank", "question": "What is the average number of gold medals for clubs?", "context": "CREATE TABLE club_rank (Gold INTEGER)"}, {"answer": "SELECT Competition_type, Country FROM competition", "question": "What are the types and countries of competitions?", "context": "CREATE TABLE competition (Competition_type VARCHAR, Country VARCHAR)"}, {"answer": "SELECT DISTINCT YEAR FROM competition WHERE Competition_type <> \"Tournament\"", "question": "What are the distinct years in which the competitions type is not \"Tournament\"?", "context": "CREATE TABLE competition (YEAR VARCHAR, Competition_type VARCHAR)"}, {"answer": "SELECT MAX(Silver), MIN(Silver) FROM club_rank", "question": "What are the maximum and minimum number of silver medals for clubs.", "context": "CREATE TABLE club_rank (Silver INTEGER)"}, {"answer": "SELECT COUNT(*) FROM club_rank WHERE Total < 10", "question": "How many clubs have total medals less than 10?", "context": "CREATE TABLE club_rank (Total INTEGER)"}, {"answer": "SELECT name FROM club ORDER BY Start_year", "question": "List all club names in ascending order of start year.", "context": "CREATE TABLE club (name VARCHAR, Start_year VARCHAR)"}, {"answer": "SELECT name FROM club ORDER BY name DESC", "question": "List all club names in descending alphabetical order.", "context": "CREATE TABLE club (name VARCHAR)"}, {"answer": "SELECT T1.name, T2.Player_id FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID", "question": "Please show the names and the players of clubs.", "context": "CREATE TABLE club (name VARCHAR, Club_ID VARCHAR); CREATE TABLE player (Player_id VARCHAR, Club_ID VARCHAR)"}, {"answer": "SELECT T1.name FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID WHERE T2.Position = \"Right Wing\"", "question": "Show the names of clubs that have players with position \"Right Wing\".", "context": "CREATE TABLE club (name VARCHAR, Club_ID VARCHAR); CREATE TABLE player (Club_ID VARCHAR, Position VARCHAR)"}, {"answer": "SELECT AVG(T2.Points) FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID WHERE T1.name = \"AIB\"", "question": "What is the average points of players from club with name \"AIB\".", "context": "CREATE TABLE player (Points INTEGER, Club_ID VARCHAR); CREATE TABLE club (Club_ID VARCHAR, name VARCHAR)"}, {"answer": "SELECT POSITION, AVG(Points) FROM player GROUP BY POSITION", "question": "List the position of players and the average number of points of players of each position.", "context": "CREATE TABLE player (POSITION VARCHAR, Points INTEGER)"}, {"answer": "SELECT POSITION FROM player GROUP BY name HAVING AVG(Points) >= 20", "question": "List the position of players with average number of points scored by players of that position bigger than 20.", "context": "CREATE TABLE player (POSITION VARCHAR, name VARCHAR, Points INTEGER)"}, {"answer": "SELECT Competition_type, COUNT(*) FROM competition GROUP BY Competition_type", "question": "List the types of competition and the number of competitions of each type.", "context": "CREATE TABLE competition (Competition_type VARCHAR)"}, {"answer": "SELECT Competition_type FROM competition GROUP BY Competition_type ORDER BY COUNT(*) DESC LIMIT 1", "question": "List the most common type of competition.", "context": "CREATE TABLE competition (Competition_type VARCHAR)"}, {"answer": "SELECT Competition_type FROM competition GROUP BY Competition_type HAVING COUNT(*) <= 5", "question": "List the types of competition that have at most five competitions of that type.", "context": "CREATE TABLE competition (Competition_type VARCHAR)"}, {"answer": "SELECT name FROM CLub WHERE NOT Club_ID IN (SELECT Club_ID FROM player)", "question": "List the names of clubs that do not have any players.", "context": "CREATE TABLE player (name VARCHAR, Club_ID VARCHAR); CREATE TABLE CLub (name VARCHAR, Club_ID VARCHAR)"}, {"answer": "SELECT POSITION FROM player WHERE Points > 20 INTERSECT SELECT POSITION FROM player WHERE Points < 10", "question": "What are the positions with both players having more than 20 points and less than 10 points.", "context": "CREATE TABLE player (POSITION VARCHAR, Points INTEGER)"}, {"answer": "SELECT SUM(Points) FROM player", "question": "Show total points of all players.", "context": "CREATE TABLE player (Points INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT POSITION) FROM player", "question": "how many different positions are there?", "context": "CREATE TABLE player (POSITION VARCHAR)"}, {"answer": "SELECT name FROM player WHERE points > (SELECT AVG(points) FROM player)", "question": "what are the name of players who get more than the average points.", "context": "CREATE TABLE player (name VARCHAR, points INTEGER)"}, {"answer": "SELECT COUNT(*), POSITION FROM player WHERE points < 30 GROUP BY POSITION", "question": "find the number of players whose points are lower than 30 in each position.", "context": "CREATE TABLE player (POSITION VARCHAR, points INTEGER)"}, {"answer": "SELECT country FROM competition WHERE competition_type = 'Tournament' GROUP BY country ORDER BY COUNT(*) DESC LIMIT 1", "question": "which country did participated in the most number of Tournament competitions?", "context": "CREATE TABLE competition (country VARCHAR, competition_type VARCHAR)"}, {"answer": "SELECT country FROM competition WHERE competition_type = 'Friendly' INTERSECT SELECT country FROM competition WHERE competition_type = 'Tournament'", "question": "which countries did participated in both Friendly and Tournament type competitions.", "context": "CREATE TABLE competition (country VARCHAR, competition_type VARCHAR)"}, {"answer": "SELECT country FROM competition EXCEPT SELECT country FROM competition WHERE competition_type = 'Friendly'", "question": "Find the countries that have never participated in any competition with Friendly type.", "context": "CREATE TABLE competition (country VARCHAR, competition_type VARCHAR)"}, {"answer": "SELECT SUM(num_of_component) FROM furniture", "question": "How many furniture components are there in total?", "context": "CREATE TABLE furniture (num_of_component INTEGER)"}, {"answer": "SELECT name, furniture_id FROM furniture ORDER BY market_rate DESC LIMIT 1", "question": "Return the name and id of the furniture with the highest market rate.", "context": "CREATE TABLE furniture (name VARCHAR, furniture_id VARCHAR, market_rate VARCHAR)"}, {"answer": "SELECT SUM(market_rate) FROM furniture ORDER BY market_rate DESC LIMIT 2", "question": "find the total market rate of the furnitures that have the top 2 market shares.", "context": "CREATE TABLE furniture (market_rate INTEGER)"}, {"answer": "SELECT Num_of_Component, name FROM furniture WHERE Num_of_Component > 10", "question": "Find the component amounts and names of all furnitures that have more than 10 components.", "context": "CREATE TABLE furniture (Num_of_Component INTEGER, name VARCHAR)"}, {"answer": "SELECT name, Num_of_Component FROM furniture ORDER BY market_rate LIMIT 1", "question": "Find the name and component amount of the least popular furniture.", "context": "CREATE TABLE furniture (name VARCHAR, Num_of_Component VARCHAR, market_rate VARCHAR)"}, {"answer": "SELECT t1.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID WHERE t2.Price_in_Dollar < (SELECT MAX(Price_in_Dollar) FROM furniture_manufacte)", "question": "Find the names of furnitures whose prices are lower than the highest price.", "context": "CREATE TABLE furniture_manufacte (Furniture_ID VARCHAR, Price_in_Dollar INTEGER); CREATE TABLE furniture (name VARCHAR, Furniture_ID VARCHAR); CREATE TABLE furniture_manufacte (Price_in_Dollar INTEGER)"}, {"answer": "SELECT open_year, name FROM manufacturer ORDER BY num_of_shops DESC LIMIT 1", "question": "Which manufacturer has the most number of shops? List its name and year of opening.", "context": "CREATE TABLE manufacturer (open_year VARCHAR, name VARCHAR, num_of_shops VARCHAR)"}, {"answer": "SELECT AVG(Num_of_Factories) FROM manufacturer WHERE num_of_shops > 20", "question": "Find the average number of factories for the manufacturers that have more than 20 shops.", "context": "CREATE TABLE manufacturer (Num_of_Factories INTEGER, num_of_shops INTEGER)"}, {"answer": "SELECT name, manufacturer_id FROM manufacturer ORDER BY open_year", "question": "List all manufacturer names and ids ordered by their opening year.", "context": "CREATE TABLE manufacturer (name VARCHAR, manufacturer_id VARCHAR, open_year VARCHAR)"}, {"answer": "SELECT name, open_year FROM manufacturer WHERE num_of_shops > 10 OR Num_of_Factories < 10", "question": "Give me the name and year of opening of the manufacturers that have either less than 10 factories or more than 10 shops.", "context": "CREATE TABLE manufacturer (name VARCHAR, open_year VARCHAR, num_of_shops VARCHAR, Num_of_Factories VARCHAR)"}, {"answer": "SELECT MAX(num_of_shops), AVG(Num_of_Factories) FROM manufacturer WHERE open_year < 1990", "question": "what is the average number of factories and maximum number of shops for manufacturers that opened before 1990.", "context": "CREATE TABLE manufacturer (num_of_shops INTEGER, Num_of_Factories INTEGER, open_year INTEGER)"}, {"answer": "SELECT t1.manufacturer_id, t1.num_of_shops FROM manufacturer AS t1 JOIN furniture_manufacte AS t2 ON t1.manufacturer_id = t2.manufacturer_id ORDER BY t2.Price_in_Dollar DESC LIMIT 1", "question": "Find the id and number of shops for the company that produces the most expensive furniture.", "context": "CREATE TABLE manufacturer (manufacturer_id VARCHAR, num_of_shops VARCHAR); CREATE TABLE furniture_manufacte (manufacturer_id VARCHAR, Price_in_Dollar VARCHAR)"}, {"answer": "SELECT COUNT(*), t1.name FROM manufacturer AS t1 JOIN furniture_manufacte AS t2 ON t1.manufacturer_id = t2.manufacturer_id GROUP BY t1.manufacturer_id", "question": "Find the number of funiture types produced by each manufacturer as well as the company names.", "context": "CREATE TABLE furniture_manufacte (manufacturer_id VARCHAR); CREATE TABLE manufacturer (name VARCHAR, manufacturer_id VARCHAR)"}, {"answer": "SELECT t1.name, t2.price_in_dollar FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID", "question": "Give me the names and prices of furnitures which some companies are manufacturing.", "context": "CREATE TABLE furniture_manufacte (price_in_dollar VARCHAR, Furniture_ID VARCHAR); CREATE TABLE furniture (name VARCHAR, Furniture_ID VARCHAR)"}, {"answer": "SELECT Market_Rate, name FROM furniture WHERE NOT Furniture_ID IN (SELECT Furniture_ID FROM furniture_manufacte)", "question": "Find the market shares and names of furnitures which no any company is producing in our records.", "context": "CREATE TABLE furniture (Market_Rate VARCHAR, name VARCHAR, Furniture_ID VARCHAR); CREATE TABLE furniture_manufacte (Market_Rate VARCHAR, name VARCHAR, Furniture_ID VARCHAR)"}, {"answer": "SELECT t3.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID JOIN manufacturer AS t3 ON t2.manufacturer_id = t3.manufacturer_id WHERE t1.num_of_component < 6 INTERSECT SELECT t3.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID JOIN manufacturer AS t3 ON t2.manufacturer_id = t3.manufacturer_id WHERE t1.num_of_component > 10", "question": "Find the name of the company that produces both furnitures with less than 6 components and furnitures with more than 10 components.", "context": "CREATE TABLE furniture_manufacte (Furniture_ID VARCHAR, manufacturer_id VARCHAR); CREATE TABLE manufacturer (name VARCHAR, manufacturer_id VARCHAR); CREATE TABLE furniture (Furniture_ID VARCHAR, num_of_component INTEGER)"}, {"answer": "SELECT T1.first_name, T2.department_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id", "question": "Display the first name and department name for each employee.", "context": "CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT first_name, last_name, salary FROM employees WHERE salary < 6000", "question": "List the full name (first and last name), and salary for those employees who earn below 6000.", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary INTEGER)"}, {"answer": "SELECT first_name, department_id FROM employees WHERE last_name = 'McEwen'", "question": "Display the first name, and department number for all employees whose last name is \"McEwen\".", "context": "CREATE TABLE employees (first_name VARCHAR, department_id VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT * FROM employees WHERE department_id = \"null\"", "question": "Return all the information for all employees without any department number.", "context": "CREATE TABLE employees (department_id VARCHAR)"}, {"answer": "SELECT * FROM departments WHERE department_name = 'Marketing'", "question": "Display all the information about the department Marketing.", "context": "CREATE TABLE departments (department_name VARCHAR)"}, {"answer": "SELECT hire_date FROM employees WHERE NOT first_name LIKE '%M%'", "question": "when is the hire date for those employees whose first name does not containing the letter M?", "context": "CREATE TABLE employees (hire_date VARCHAR, first_name VARCHAR)"}, {"answer": "SELECT first_name, last_name, hire_date, salary, department_id FROM employees WHERE NOT first_name LIKE '%M%'", "question": "display the full name (first and last), hire date, salary, and department number for those employees whose first name does not containing the letter M.", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, salary VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT first_name, last_name, hire_date, salary, department_id FROM employees WHERE NOT first_name LIKE '%M%' ORDER BY department_id", "question": "display the full name (first and last), hire date, salary, and department number for those employees whose first name does not containing the letter M and make the result set in ascending order by department number.", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, salary VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT phone_number FROM employees WHERE salary BETWEEN 8000 AND 12000", "question": "what is the phone number of employees whose salary is in the range of 8000 and 12000?", "context": "CREATE TABLE employees (phone_number VARCHAR, salary INTEGER)"}, {"answer": "SELECT * FROM employees WHERE salary BETWEEN 8000 AND 12000 AND commission_pct <> \"null\" OR department_id <> 40", "question": "display all the information of employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40.", "context": "CREATE TABLE employees (department_id VARCHAR, salary VARCHAR, commission_pct VARCHAR)"}, {"answer": "SELECT first_name, last_name, salary FROM employees WHERE commission_pct = \"null\"", "question": "What are the full name (first and last name) and salary for all employees who does not have any value for commission?", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary VARCHAR, commission_pct VARCHAR)"}, {"answer": "SELECT first_name, last_name, salary FROM employees WHERE first_name LIKE '%m'", "question": "Display the first and last name, and salary for those employees whose first name is ending with the letter m.", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary VARCHAR)"}, {"answer": "SELECT job_id, hire_date FROM employees WHERE hire_date BETWEEN '2007-11-05' AND '2009-07-05'", "question": "Find job id and date of hire for those employees who was hired between November 5th, 2007 and July 5th, 2009.", "context": "CREATE TABLE employees (job_id VARCHAR, hire_date INTEGER)"}, {"answer": "SELECT first_name, last_name FROM employees WHERE department_id = 70 OR department_id = 90", "question": "What are the first and last name for those employees who works either in department 70 or 90?", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT salary, manager_id FROM employees WHERE manager_id <> \"null\"", "question": "Find the salary and manager number for those employees who is working under a manager.", "context": "CREATE TABLE employees (salary VARCHAR, manager_id VARCHAR)"}, {"answer": "SELECT * FROM employees WHERE hire_date < '2002-06-21'", "question": "display all the details from Employees table for those employees who was hired before 2002-06-21.", "context": "CREATE TABLE employees (hire_date INTEGER)"}, {"answer": "SELECT * FROM employees WHERE first_name LIKE '%D%' OR first_name LIKE '%S%' ORDER BY salary DESC", "question": "display all the information for all employees who have the letters D or S in their first name and also arrange the result in descending order by salary.", "context": "CREATE TABLE employees (salary VARCHAR, first_name VARCHAR)"}, {"answer": "SELECT * FROM employees WHERE hire_date > '1987-09-07'", "question": "display those employees who joined after 7th September, 1987.", "context": "CREATE TABLE employees (hire_date INTEGER)"}, {"answer": "SELECT job_title FROM jobs WHERE min_salary > 9000", "question": "display the job title of jobs which minimum salary is greater than 9000.", "context": "CREATE TABLE jobs (job_title VARCHAR, min_salary INTEGER)"}, {"answer": "SELECT job_title, max_salary - min_salary FROM jobs WHERE max_salary BETWEEN 12000 AND 18000", "question": "display job Title, the difference between minimum and maximum salaries for those jobs which max salary within the range 12000 to 18000.", "context": "CREATE TABLE jobs (job_title VARCHAR, max_salary INTEGER, min_salary VARCHAR)"}, {"answer": "SELECT email FROM employees WHERE commission_pct = \"null\" AND salary BETWEEN 7000 AND 12000 AND department_id = 50", "question": "display the emails of the employees who have no commission percentage and salary within the range 7000 to 12000 and works in that department which number is 50.", "context": "CREATE TABLE employees (email VARCHAR, department_id VARCHAR, commission_pct VARCHAR, salary VARCHAR)"}, {"answer": "SELECT employee_id, MAX(end_date) FROM job_history GROUP BY employee_id", "question": "display the employee ID for each employee and the date on which he ended his previous job.", "context": "CREATE TABLE job_history (employee_id VARCHAR, end_date INTEGER)"}, {"answer": "SELECT department_id FROM employees GROUP BY department_id HAVING COUNT(commission_pct) > 10", "question": "display those departments where more than ten employees work who got a commission percentage.", "context": "CREATE TABLE employees (department_id VARCHAR, commission_pct VARCHAR)"}, {"answer": "SELECT DISTINCT department_id FROM employees GROUP BY department_id, manager_id HAVING COUNT(employee_id) >= 4", "question": "Find the ids of the departments where any manager is managing 4 or more employees.", "context": "CREATE TABLE employees (department_id VARCHAR, manager_id VARCHAR, employee_id VARCHAR)"}, {"answer": "SELECT department_id, AVG(salary) FROM employees WHERE commission_pct <> \"null\" GROUP BY department_id", "question": "display the average salary of employees for each department who gets a commission percentage.", "context": "CREATE TABLE employees (department_id VARCHAR, salary INTEGER, commission_pct VARCHAR)"}, {"answer": "SELECT country_id, COUNT(*) FROM locations GROUP BY country_id", "question": "display the country ID and number of cities for each country.", "context": "CREATE TABLE locations (country_id VARCHAR)"}, {"answer": "SELECT job_id FROM job_history WHERE end_date - start_date > 300 GROUP BY job_id HAVING COUNT(*) >= 2", "question": "display job ID for those jobs that were done by two or more for more than 300 days.", "context": "CREATE TABLE job_history (job_id VARCHAR, end_date VARCHAR, start_date VARCHAR)"}, {"answer": "SELECT employee_id FROM job_history GROUP BY employee_id HAVING COUNT(*) >= 2", "question": "display the ID for those employees who did two or more jobs in the past.", "context": "CREATE TABLE job_history (employee_id VARCHAR)"}, {"answer": "SELECT T1.employee_id, T4.country_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id JOIN countries AS T4 ON T3.country_id = T4.country_id", "question": "Find employee with ID and name of the country presently where (s)he is working.", "context": "CREATE TABLE countries (country_name VARCHAR, country_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR); CREATE TABLE locations (location_id VARCHAR, country_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT T2.department_name, COUNT(*) FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id GROUP BY T2.department_name", "question": "display the department name and number of employees in each of the department.", "context": "CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (department_id VARCHAR)"}, {"answer": "SELECT * FROM job_history AS T1 JOIN employees AS T2 ON T1.employee_id = T2.employee_id WHERE T2.salary >= 12000", "question": "Can you return all detailed info of jobs which was done by any of the employees who is presently earning a salary on and above 12000?", "context": "CREATE TABLE job_history (employee_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR, salary VARCHAR)"}, {"answer": "SELECT job_title, AVG(salary) FROM employees AS T1 JOIN jobs AS T2 ON T1.job_id = T2.job_id GROUP BY T2.job_title", "question": "display job title and average salary of employees.", "context": "CREATE TABLE jobs (job_title VARCHAR, job_id VARCHAR); CREATE TABLE employees (job_id VARCHAR)"}, {"answer": "SELECT first_name, last_name FROM employees WHERE salary > (SELECT salary FROM employees WHERE employee_id = 163)", "question": "What is the full name ( first name and last name ) for those employees who gets more salary than the employee whose id is 163?", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary INTEGER, employee_id VARCHAR)"}, {"answer": "SELECT MIN(salary), department_id FROM employees GROUP BY department_id", "question": "return the smallest salary for every departments.", "context": "CREATE TABLE employees (department_id VARCHAR, salary INTEGER)"}, {"answer": "SELECT first_name, last_name, department_id FROM employees WHERE salary IN (SELECT MIN(salary) FROM employees GROUP BY department_id)", "question": "Find the first name and last name and department id for those employees who earn such amount of salary which is the smallest salary of any of the departments.", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR, salary INTEGER)"}, {"answer": "SELECT employee_id FROM employees WHERE salary > (SELECT AVG(salary) FROM employees)", "question": "Find the employee id for all employees who earn more than the average salary.", "context": "CREATE TABLE employees (employee_id VARCHAR, salary INTEGER)"}, {"answer": "SELECT employee_id, salary FROM employees WHERE manager_id = (SELECT employee_id FROM employees WHERE first_name = 'Payam')", "question": "display the employee id and salary of all employees who report to Payam (first name).", "context": "CREATE TABLE employees (employee_id VARCHAR, salary VARCHAR, manager_id VARCHAR, first_name VARCHAR)"}, {"answer": "SELECT DISTINCT T2.department_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id", "question": "find the name of all departments that do actually have one or more employees assigned to them.", "context": "CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (department_id VARCHAR)"}, {"answer": "SELECT DISTINCT * FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id WHERE T1.employee_id = T2.manager_id", "question": "get the details of employees who manage a department.", "context": "CREATE TABLE departments (department_id VARCHAR, manager_id VARCHAR); CREATE TABLE employees (department_id VARCHAR, employee_id VARCHAR)"}, {"answer": "SELECT job_id FROM employees GROUP BY job_id HAVING AVG(salary) > 8000", "question": "Find the job ID for those jobs which average salary is above 8000.", "context": "CREATE TABLE employees (job_id VARCHAR, salary INTEGER)"}, {"answer": "SELECT T1.employee_id, T2.job_title FROM employees AS T1 JOIN jobs AS T2 ON T1.job_id = T2.job_id WHERE T1.department_id = 80", "question": "display the employee ID and job name for all those jobs in department 80.", "context": "CREATE TABLE jobs (job_title VARCHAR, job_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR, job_id VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.job_id FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id WHERE T2.department_name = 'Finance'", "question": "What is the first name and job id for all employees in the Finance department?", "context": "CREATE TABLE departments (department_id VARCHAR, department_name VARCHAR); CREATE TABLE employees (first_name VARCHAR, job_id VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT * FROM employees WHERE salary BETWEEN (SELECT MIN(salary) FROM employees) AND 2500", "question": "display all the information of the employees whose salary if within the range of smallest salary and 2500.", "context": "CREATE TABLE employees (salary INTEGER)"}, {"answer": "SELECT * FROM employees WHERE NOT department_id IN (SELECT department_id FROM departments WHERE manager_id BETWEEN 100 AND 200)", "question": "Find the ids of the employees who does not work in those departments where some employees works whose manager id within the range 100 and 200.", "context": "CREATE TABLE departments (department_id VARCHAR, manager_id INTEGER); CREATE TABLE employees (department_id VARCHAR, manager_id INTEGER)"}, {"answer": "SELECT first_name, last_name, hire_date FROM employees WHERE department_id = (SELECT department_id FROM employees WHERE first_name = \"Clara\")", "question": "display the employee name ( first name and last name ) and hire date for all employees in the same department as Clara.", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT first_name, last_name, hire_date FROM employees WHERE department_id = (SELECT department_id FROM employees WHERE first_name = \"Clara\") AND first_name <> \"Clara\"", "question": "display the employee name ( first name and last name ) and hire date for all employees in the same department as Clara excluding Clara.", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT employee_id, first_name, last_name FROM employees WHERE department_id IN (SELECT department_id FROM employees WHERE first_name LIKE '%T%')", "question": "display the employee number and name( first name and last name ) for all employees who work in a department with any employee whose name contains a \u2019T\u2019.", "context": "CREATE TABLE employees (employee_id VARCHAR, first_name VARCHAR, last_name VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT employee_id, first_name, last_name, salary FROM employees WHERE salary > (SELECT AVG(salary) FROM employees) AND department_id IN (SELECT department_id FROM employees WHERE first_name LIKE '%J%')", "question": "display the employee number, name( first name and last name ), and salary for all employees who earn more than the average salary and who work in a department with any employee with a 'J' in their first name.", "context": "CREATE TABLE employees (employee_id VARCHAR, first_name VARCHAR, last_name VARCHAR, salary INTEGER, department_id VARCHAR)"}, {"answer": "SELECT employee_id, job_id FROM employees WHERE salary < (SELECT MIN(salary) FROM employees WHERE job_id = 'MK_MAN')", "question": "display the employee number and job id for all employees whose salary is smaller than any salary of those employees whose job title is MK_MAN.", "context": "CREATE TABLE employees (employee_id VARCHAR, job_id VARCHAR, salary INTEGER)"}, {"answer": "SELECT employee_id, first_name, last_name, job_id FROM employees WHERE salary > (SELECT MAX(salary) FROM employees WHERE job_id = 'PU_MAN')", "question": "display the employee number, name( first name and last name ) and job title for all employees whose salary is more than any salary of those employees whose job title is PU_MAN.", "context": "CREATE TABLE employees (employee_id VARCHAR, first_name VARCHAR, last_name VARCHAR, job_id VARCHAR, salary INTEGER)"}, {"answer": "SELECT department_id, SUM(salary) FROM employees GROUP BY department_id HAVING COUNT(*) >= 2", "question": "display the department id and the total salary for those departments which contains at least two employees.", "context": "CREATE TABLE employees (department_id VARCHAR, salary INTEGER)"}, {"answer": "SELECT * FROM employees WHERE NOT employee_id IN (SELECT employee_id FROM job_history)", "question": "display all the information of those employees who did not have any job in the past.", "context": "CREATE TABLE job_history (employee_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR)"}, {"answer": "SELECT first_name, last_name, salary, department_id, MAX(salary) FROM employees GROUP BY department_id", "question": "display the department ID, full name (first and last name), salary for those employees who is highest salary in every department.", "context": "CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary INTEGER, department_id VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.last_name, T2.department_name, T3.city, T3.state_province FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id", "question": "display the first and last name, department, city, and state province for each employee.", "context": "CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR, location_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR); CREATE TABLE locations (city VARCHAR, state_province VARCHAR, location_id VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.last_name, T3.city FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id WHERE T1.first_name LIKE '%z%'", "question": "display those employees who contain a letter z to their first name and also display their last name, city.", "context": "CREATE TABLE locations (city VARCHAR, location_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR)"}, {"answer": "SELECT T1.department_name, T2.city, T2.state_province FROM departments AS T1 JOIN locations AS T2 ON T2.location_id = T1.location_id", "question": "display the department name, city, and state province for each department.", "context": "CREATE TABLE locations (city VARCHAR, state_province VARCHAR, location_id VARCHAR); CREATE TABLE departments (department_name VARCHAR, location_id VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.last_name, T1.employee_id, T4.country_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id JOIN countries AS T4 ON T3.country_id = T4.country_id", "question": "display the full name (first and last name ) of employee with ID and name of the country presently where (s)he is working.", "context": "CREATE TABLE countries (country_name VARCHAR, country_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR); CREATE TABLE locations (location_id VARCHAR, country_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, employee_id VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT department_name, COUNT(*) FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id GROUP BY department_name", "question": "display the department name and number of employees in each of the department.", "context": "CREATE TABLE employees (department_id VARCHAR); CREATE TABLE departments (department_id VARCHAR)"}, {"answer": "SELECT first_name, last_name, salary FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id WHERE T3.city = 'London'", "question": "display the full name (first and last name), and salary of those employees who working in any department located in London.", "context": "CREATE TABLE locations (location_id VARCHAR, city VARCHAR); CREATE TABLE employees (department_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR)"}, {"answer": "SELECT song_name, releasedate FROM song ORDER BY releasedate DESC LIMIT 1", "question": "What is the name of the song that was released in the most recent year?", "context": "CREATE TABLE song (song_name VARCHAR, releasedate VARCHAR)"}, {"answer": "SELECT f_id FROM files ORDER BY duration DESC LIMIT 1", "question": "What is the id of the longest song?", "context": "CREATE TABLE files (f_id VARCHAR, duration VARCHAR)"}, {"answer": "SELECT song_name FROM song WHERE languages = \"english\"", "question": "Find the names of all English songs.", "context": "CREATE TABLE song (song_name VARCHAR, languages VARCHAR)"}, {"answer": "SELECT f_id FROM files WHERE formats = \"mp3\"", "question": "What are the id of songs whose format is mp3.", "context": "CREATE TABLE files (f_id VARCHAR, formats VARCHAR)"}, {"answer": "SELECT DISTINCT T1.artist_name, T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.rating > 9", "question": "List the name and country of origin for all singers who have produced songs with rating above 9.", "context": "CREATE TABLE song (artist_name VARCHAR, rating INTEGER); CREATE TABLE artist (artist_name VARCHAR, country VARCHAR)"}, {"answer": "SELECT DISTINCT T1.file_size, T1.formats FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T2.resolution < 800", "question": "List the file size and format for all songs that have resolution lower than 800.", "context": "CREATE TABLE song (f_id VARCHAR, resolution INTEGER); CREATE TABLE files (file_size VARCHAR, formats VARCHAR, f_id VARCHAR)"}, {"answer": "SELECT T1.artist_name FROM song AS T1 JOIN files AS T2 ON T1.f_id = T2.f_id ORDER BY T2.duration LIMIT 1", "question": "What is the name of the artist who produced the shortest song?", "context": "CREATE TABLE files (f_id VARCHAR, duration VARCHAR); CREATE TABLE song (artist_name VARCHAR, f_id VARCHAR)"}, {"answer": "SELECT T1.artist_name, T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name ORDER BY T2.rating DESC LIMIT 3", "question": "What are the names and countries of origin for the artists who produced the top three highly rated songs.", "context": "CREATE TABLE song (artist_name VARCHAR, rating VARCHAR); CREATE TABLE artist (artist_name VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM files WHERE duration LIKE \"4:%\"", "question": "How many songs have 4 minute duration?", "context": "CREATE TABLE files (duration VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM artist WHERE country = \"Bangladesh\"", "question": "How many artists are from Bangladesh?", "context": "CREATE TABLE artist (country VARCHAR)"}, {"answer": "SELECT AVG(T2.rating) FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T1.gender = \"Female\"", "question": "What is the average rating of songs produced by female artists?", "context": "CREATE TABLE song (rating INTEGER, artist_name VARCHAR); CREATE TABLE artist (artist_name VARCHAR, gender VARCHAR)"}, {"answer": "SELECT formats FROM files GROUP BY formats ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most popular file format?", "context": "CREATE TABLE files (formats VARCHAR)"}, {"answer": "SELECT artist_name FROM artist WHERE country = \"UK\" INTERSECT SELECT artist_name FROM song WHERE languages = \"english\"", "question": "Find the names of the artists who are from UK and have produced English songs.", "context": "CREATE TABLE artist (artist_name VARCHAR, country VARCHAR, languages VARCHAR); CREATE TABLE song (artist_name VARCHAR, country VARCHAR, languages VARCHAR)"}, {"answer": "SELECT f_id FROM files WHERE formats = \"mp4\" INTERSECT SELECT f_id FROM song WHERE resolution < 1000", "question": "Find the id of songs that are available in mp4 format and have resolution lower than 1000.", "context": "CREATE TABLE song (f_id VARCHAR, formats VARCHAR, resolution INTEGER); CREATE TABLE files (f_id VARCHAR, formats VARCHAR, resolution INTEGER)"}, {"answer": "SELECT T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T1.gender = \"Female\" AND T2.languages = \"bangla\"", "question": "What is the country of origin of the artist who is female and produced a song in Bangla?", "context": "CREATE TABLE artist (country VARCHAR, artist_name VARCHAR, gender VARCHAR); CREATE TABLE song (artist_name VARCHAR, languages VARCHAR)"}, {"answer": "SELECT AVG(T1.duration) FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T1.formats = \"mp3\" AND T2.resolution < 800", "question": "What is the average duration of songs that have mp3 format and resolution below 800?", "context": "CREATE TABLE files (duration INTEGER, f_id VARCHAR, formats VARCHAR); CREATE TABLE song (f_id VARCHAR, resolution VARCHAR)"}, {"answer": "SELECT COUNT(*), gender FROM artist GROUP BY gender", "question": "What is the number of artists for each gender?", "context": "CREATE TABLE artist (gender VARCHAR)"}, {"answer": "SELECT AVG(rating), languages FROM song GROUP BY languages", "question": "What is the average rating of songs for each language?", "context": "CREATE TABLE song (languages VARCHAR, rating INTEGER)"}, {"answer": "SELECT T1.gender, T1.artist_name FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name ORDER BY T2.resolution LIMIT 1", "question": "Return the gender and name of artist who produced the song with the lowest resolution.", "context": "CREATE TABLE artist (gender VARCHAR, artist_name VARCHAR); CREATE TABLE song (artist_name VARCHAR, resolution VARCHAR)"}, {"answer": "SELECT COUNT(*), formats FROM files GROUP BY formats", "question": "For each file format, return the number of artists who released songs in that format.", "context": "CREATE TABLE files (formats VARCHAR)"}, {"answer": "SELECT DISTINCT song_name FROM song WHERE resolution > (SELECT MIN(resolution) FROM song WHERE languages = \"english\")", "question": "Find the distinct names of all songs that have a higher resolution than some songs in English.", "context": "CREATE TABLE song (song_name VARCHAR, resolution INTEGER, languages VARCHAR)"}, {"answer": "SELECT song_name FROM song WHERE rating < (SELECT MAX(rating) FROM song WHERE genre_is = \"blues\")", "question": "What are the names of all songs that have a lower rating than some song of blues genre?", "context": "CREATE TABLE song (song_name VARCHAR, rating INTEGER, genre_is VARCHAR)"}, {"answer": "SELECT T1.artist_name, T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.song_name LIKE \"%love%\"", "question": "What is the name and country of origin of the artist who released a song that has \"love\" in its title?", "context": "CREATE TABLE song (artist_name VARCHAR, song_name VARCHAR); CREATE TABLE artist (artist_name VARCHAR, country VARCHAR)"}, {"answer": "SELECT T1.artist_name, T1.gender FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.releasedate LIKE \"%Mar%\"", "question": "List the name and gender for all artists who released songs in March.", "context": "CREATE TABLE song (artist_name VARCHAR, releasedate VARCHAR); CREATE TABLE artist (artist_name VARCHAR, gender VARCHAR)"}, {"answer": "SELECT g_name, rating FROM genre ORDER BY g_name", "question": "List the names of all genres in alphabetical oder, together with its ratings.", "context": "CREATE TABLE genre (g_name VARCHAR, rating VARCHAR)"}, {"answer": "SELECT song_name FROM song ORDER BY resolution", "question": "Give me a list of the names of all songs ordered by their resolution.", "context": "CREATE TABLE song (song_name VARCHAR, resolution VARCHAR)"}, {"answer": "SELECT f_id FROM files WHERE formats = \"mp4\" UNION SELECT f_id FROM song WHERE resolution > 720", "question": "What are the ids of songs that are available in either mp4 format or have resolution above 720?", "context": "CREATE TABLE song (f_id VARCHAR, formats VARCHAR, resolution INTEGER); CREATE TABLE files (f_id VARCHAR, formats VARCHAR, resolution INTEGER)"}, {"answer": "SELECT T2.song_name FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T1.duration LIKE \"4:%\" UNION SELECT song_name FROM song WHERE languages = \"english\"", "question": "List the names of all songs that have 4 minute duration or are in English.", "context": "CREATE TABLE files (f_id VARCHAR, duration VARCHAR); CREATE TABLE song (song_name VARCHAR, f_id VARCHAR); CREATE TABLE song (song_name VARCHAR, languages VARCHAR)"}, {"answer": "SELECT languages FROM song GROUP BY languages ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the language used most often in the songs?", "context": "CREATE TABLE song (languages VARCHAR)"}, {"answer": "SELECT artist_name FROM song WHERE resolution > 500 GROUP BY languages ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the language that was used most often in songs with resolution above 500?", "context": "CREATE TABLE song (artist_name VARCHAR, languages VARCHAR, resolution INTEGER)"}, {"answer": "SELECT artist_name FROM artist WHERE country = \"UK\" AND gender = \"Male\"", "question": "What are the names of artists who are Male and are from UK?", "context": "CREATE TABLE artist (artist_name VARCHAR, country VARCHAR, gender VARCHAR)"}, {"answer": "SELECT song_name FROM song WHERE genre_is = \"modern\" OR languages = \"english\"", "question": "Find the names of songs whose genre is modern or language is English.", "context": "CREATE TABLE song (song_name VARCHAR, genre_is VARCHAR, languages VARCHAR)"}, {"answer": "SELECT T2.song_name FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T1.formats = \"mp3\" INTERSECT SELECT song_name FROM song WHERE resolution < 1000", "question": "Return the names of songs for which format is mp3 and resolution is below 1000.", "context": "CREATE TABLE song (song_name VARCHAR, resolution INTEGER); CREATE TABLE song (song_name VARCHAR, f_id VARCHAR); CREATE TABLE files (f_id VARCHAR, formats VARCHAR)"}, {"answer": "SELECT artist_name FROM artist WHERE country = \"UK\" INTERSECT SELECT T1.artist_name FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.languages = \"english\"", "question": "Return the names of singers who are from UK and released an English song.", "context": "CREATE TABLE song (artist_name VARCHAR, languages VARCHAR); CREATE TABLE artist (artist_name VARCHAR); CREATE TABLE artist (artist_name VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(rating), AVG(resolution) FROM song WHERE languages = \"bangla\"", "question": "What are the average rating and resolution of songs that are in Bangla?", "context": "CREATE TABLE song (rating INTEGER, resolution INTEGER, languages VARCHAR)"}, {"answer": "SELECT MAX(T2.resolution), MIN(T2.resolution) FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T1.duration LIKE \"3:%\"", "question": "What are the maximum and minimum resolution of songs whose duration is 3 minutes?", "context": "CREATE TABLE files (f_id VARCHAR, duration VARCHAR); CREATE TABLE song (resolution INTEGER, f_id VARCHAR)"}, {"answer": "SELECT MAX(T1.duration), MAX(T2.resolution), T2.languages FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id GROUP BY T2.languages ORDER BY T2.languages", "question": "What are the maximum duration and resolution of songs grouped and ordered by languages?", "context": "CREATE TABLE song (languages VARCHAR, resolution INTEGER, f_id VARCHAR); CREATE TABLE files (duration INTEGER, f_id VARCHAR)"}, {"answer": "SELECT MIN(T1.duration), MIN(T2.rating), T2.genre_is FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id GROUP BY T2.genre_is ORDER BY T2.genre_is", "question": "What are the shortest duration and lowest rating of songs grouped by genre and ordered by genre?", "context": "CREATE TABLE song (genre_is VARCHAR, rating INTEGER, f_id VARCHAR); CREATE TABLE files (duration INTEGER, f_id VARCHAR)"}, {"answer": "SELECT T1.artist_name, COUNT(*) FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.languages = \"english\" GROUP BY T2.artist_name HAVING COUNT(*) >= 1", "question": "Find the names and number of works of all artists who have at least one English songs.", "context": "CREATE TABLE song (artist_name VARCHAR, languages VARCHAR); CREATE TABLE artist (artist_name VARCHAR)"}, {"answer": "SELECT T1.artist_name, T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.resolution > 900 GROUP BY T2.artist_name HAVING COUNT(*) >= 1", "question": "Find the name and country of origin for all artists who have release at least one song of resolution above 900.", "context": "CREATE TABLE song (artist_name VARCHAR, resolution INTEGER); CREATE TABLE artist (artist_name VARCHAR, country VARCHAR)"}, {"answer": "SELECT T1.artist_name, COUNT(*) FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name GROUP BY T2.artist_name ORDER BY COUNT(*) DESC LIMIT 3", "question": "Find the names and number of works of the three artists who have produced the most songs.", "context": "CREATE TABLE song (artist_name VARCHAR); CREATE TABLE artist (artist_name VARCHAR)"}, {"answer": "SELECT T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name GROUP BY T2.artist_name ORDER BY COUNT(*) LIMIT 1", "question": "Find the country of origin for the artist who made the least number of songs?", "context": "CREATE TABLE song (artist_name VARCHAR); CREATE TABLE artist (country VARCHAR, artist_name VARCHAR)"}, {"answer": "SELECT song_name FROM song WHERE rating < (SELECT MIN(rating) FROM song WHERE languages = 'english')", "question": "What are the names of the songs whose rating is below the rating of all songs in English?", "context": "CREATE TABLE song (song_name VARCHAR, rating INTEGER, languages VARCHAR)"}, {"answer": "SELECT f_id FROM song WHERE resolution > (SELECT MAX(resolution) FROM song WHERE rating < 8)", "question": "What is ids of the songs whose resolution is higher than the resolution of any songs with rating lower than 8?", "context": "CREATE TABLE song (f_id VARCHAR, resolution INTEGER, rating INTEGER)"}, {"answer": "SELECT f_id FROM song WHERE resolution > (SELECT AVG(resolution) FROM song WHERE genre_is = \"modern\")", "question": "What is ids of the songs whose resolution is higher than the average resolution of songs in modern genre?", "context": "CREATE TABLE song (f_id VARCHAR, resolution INTEGER, genre_is VARCHAR)"}, {"answer": "SELECT T1.artist_name FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.languages = \"bangla\" GROUP BY T2.artist_name ORDER BY COUNT(*) DESC LIMIT 3", "question": "Find the top 3 artists who have the largest number of songs works whose language is Bangla.", "context": "CREATE TABLE song (artist_name VARCHAR, languages VARCHAR); CREATE TABLE artist (artist_name VARCHAR)"}, {"answer": "SELECT f_id, genre_is, artist_name FROM song WHERE languages = \"english\" ORDER BY rating", "question": "List the id, genre and artist name of English songs ordered by rating.", "context": "CREATE TABLE song (f_id VARCHAR, genre_is VARCHAR, artist_name VARCHAR, languages VARCHAR, rating VARCHAR)"}, {"answer": "SELECT T1.duration, T1.file_size, T1.formats FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T2.genre_is = \"pop\" ORDER BY T2.song_name", "question": "List the duration, file size and format of songs whose genre is pop, ordered by title?", "context": "CREATE TABLE song (f_id VARCHAR, genre_is VARCHAR, song_name VARCHAR); CREATE TABLE files (duration VARCHAR, file_size VARCHAR, formats VARCHAR, f_id VARCHAR)"}, {"answer": "SELECT DISTINCT artist_name FROM song WHERE languages = \"english\" EXCEPT SELECT DISTINCT artist_name FROM song WHERE rating > 8", "question": "Find the names of the artists who have produced English songs but have never received rating higher than 8.", "context": "CREATE TABLE song (artist_name VARCHAR, languages VARCHAR, rating INTEGER)"}, {"answer": "SELECT DISTINCT artist_name FROM artist WHERE country = \"Bangladesh\" EXCEPT SELECT DISTINCT artist_name FROM song WHERE rating > 7", "question": "Find the names of the artists who are from Bangladesh and have never received rating higher than 7.", "context": "CREATE TABLE artist (artist_name VARCHAR, country VARCHAR, rating INTEGER); CREATE TABLE song (artist_name VARCHAR, country VARCHAR, rating INTEGER)"}, {"answer": "SELECT T1.name_full, T1.college_id FROM college AS T1 JOIN player_college AS T2 ON T1.college_id = T2.college_id GROUP BY T1.college_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "what is the full name and id of the college with the largest number of baseball players?", "context": "CREATE TABLE player_college (college_id VARCHAR); CREATE TABLE college (name_full VARCHAR, college_id VARCHAR)"}, {"answer": "SELECT AVG(T1.salary) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings'", "question": "What is average salary of the players in the team named 'Boston Red Stockings' ?", "context": "CREATE TABLE salary (salary INTEGER, team_id VARCHAR); CREATE TABLE team (team_id_br VARCHAR, name VARCHAR)"}, {"answer": "SELECT name_first, name_last FROM player AS T1 JOIN all_star AS T2 ON T1.player_id = T2.player_id WHERE YEAR = 1998", "question": "What are first and last names of players participating in all star game in 1998?", "context": "CREATE TABLE all_star (player_id VARCHAR); CREATE TABLE player (player_id VARCHAR)"}, {"answer": "SELECT T1.name_first, T1.name_last, T1.player_id, COUNT(*) FROM player AS T1 JOIN all_star AS T2 ON T1.player_id = T2.player_id GROUP BY T1.player_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What are the first name, last name and id of the player with the most all star game experiences? Also list the count.", "context": "CREATE TABLE player (name_first VARCHAR, name_last VARCHAR, player_id VARCHAR); CREATE TABLE all_star (player_id VARCHAR)"}, {"answer": "SELECT yearid, COUNT(*) FROM hall_of_fame GROUP BY yearid", "question": "How many players enter hall of fame each year?", "context": "CREATE TABLE hall_of_fame (yearid VARCHAR)"}, {"answer": "SELECT YEAR, AVG(attendance) FROM home_game GROUP BY YEAR", "question": "What is the average number of attendance at home games for each year?", "context": "CREATE TABLE home_game (YEAR VARCHAR, attendance INTEGER)"}, {"answer": "SELECT T2.team_id, T2.rank FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id WHERE T1.year = 2014 GROUP BY T1.team_id ORDER BY AVG(T1.attendance) DESC LIMIT 1", "question": "In 2014, what are the id and rank of the team that has the largest average number of attendance?", "context": "CREATE TABLE team (team_id VARCHAR, rank VARCHAR); CREATE TABLE home_game (team_id VARCHAR, year VARCHAR, attendance INTEGER)"}, {"answer": "SELECT T1.name_first, T1.name_last, T2.player_id FROM player AS T1 JOIN manager_award AS T2 ON T1.player_id = T2.player_id GROUP BY T2.player_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What are the manager's first name, last name and id who won the most manager award?", "context": "CREATE TABLE player (name_first VARCHAR, name_last VARCHAR, player_id VARCHAR); CREATE TABLE manager_award (player_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM park WHERE state = 'NY'", "question": "How many parks are there in the state of NY?", "context": "CREATE TABLE park (state VARCHAR)"}, {"answer": "SELECT T1.name_first, T1.name_last, T1.player_id FROM player AS T1 JOIN player_award AS T2 ON T1.player_id = T2.player_id GROUP BY T1.player_id ORDER BY COUNT(*) DESC LIMIT 3", "question": "Which 3 players won the most player awards? List their full name and id.", "context": "CREATE TABLE player (name_first VARCHAR, name_last VARCHAR, player_id VARCHAR); CREATE TABLE player_award (player_id VARCHAR)"}, {"answer": "SELECT birth_country FROM player GROUP BY birth_country ORDER BY COUNT(*) LIMIT 3", "question": "List three countries which are the origins of the least players.", "context": "CREATE TABLE player (birth_country VARCHAR)"}, {"answer": "SELECT name_first, name_last FROM player WHERE death_year = ''", "question": "Find all the players' first name and last name who have empty death record.", "context": "CREATE TABLE player (name_first VARCHAR, name_last VARCHAR, death_year VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM player WHERE birth_country = 'USA' AND bats = 'R'", "question": "How many players born in USA are right-handed batters? That is, have the batter value 'R'.", "context": "CREATE TABLE player (birth_country VARCHAR, bats VARCHAR)"}, {"answer": "SELECT AVG(T1.height) FROM player AS T1 JOIN player_college AS T2 ON T1.player_id = T2.player_id JOIN college AS T3 ON T3.college_id = T2.college_id WHERE T3.name_full = 'Yale University'", "question": "What is the average height of the players from the college named 'Yale University'?", "context": "CREATE TABLE player_college (player_id VARCHAR, college_id VARCHAR); CREATE TABLE player (height INTEGER, player_id VARCHAR); CREATE TABLE college (college_id VARCHAR, name_full VARCHAR)"}, {"answer": "SELECT T1.name, T1.team_id, MAX(T2.salary) FROM team AS T1 JOIN salary AS T2 ON T1.team_id = T2.team_id GROUP BY T1.team_id", "question": "What is the highest salary among each team? List the team name, id and maximum salary.", "context": "CREATE TABLE salary (salary INTEGER, team_id VARCHAR); CREATE TABLE team (name VARCHAR, team_id VARCHAR)"}, {"answer": "SELECT T1.name, T1.team_id FROM team AS T1 JOIN salary AS T2 ON T1.team_id = T2.team_id GROUP BY T1.team_id ORDER BY AVG(T2.salary) LIMIT 1", "question": "What are the name and id of the team offering the lowest average salary?", "context": "CREATE TABLE team (name VARCHAR, team_id VARCHAR); CREATE TABLE salary (team_id VARCHAR, salary INTEGER)"}, {"answer": "SELECT T1.name_first, T1.name_last FROM player AS T1 JOIN player_award AS T2 WHERE T2.year = 1960 INTERSECT SELECT T1.name_first, T1.name_last FROM player AS T1 JOIN player_award AS T2 WHERE T2.year = 1961", "question": "Find the players' first name and last name who won award both in 1960 and in 1961.", "context": "CREATE TABLE player (name_first VARCHAR, name_last VARCHAR); CREATE TABLE player_award (year VARCHAR)"}, {"answer": "SELECT name_first, name_last FROM player WHERE weight > 220 OR height < 75", "question": "List players' first name and last name who have weight greater than 220 or height shorter than 75.", "context": "CREATE TABLE player (name_first VARCHAR, name_last VARCHAR, weight VARCHAR, height VARCHAR)"}, {"answer": "SELECT MAX(T1.wins) FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings'", "question": "List the maximum scores of the team Boston Red Stockings when the team won in postseason?", "context": "CREATE TABLE team (team_id_br VARCHAR, name VARCHAR); CREATE TABLE postseason (wins INTEGER, team_id_winner VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_loser = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2009", "question": "How many times did Boston Red Stockings lose in 2009 postseason?", "context": "CREATE TABLE postseason (team_id_loser VARCHAR, year VARCHAR); CREATE TABLE team (team_id_br VARCHAR, name VARCHAR)"}, {"answer": "SELECT T2.name, T1.team_id_winner FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T1.year = 2008 GROUP BY T1.team_id_winner ORDER BY COUNT(*) DESC LIMIT 1", "question": "What are the name and id of the team with the most victories in 2008 postseason?", "context": "CREATE TABLE postseason (team_id_winner VARCHAR, year VARCHAR); CREATE TABLE team (name VARCHAR, team_id_br VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.year FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' GROUP BY T1.year", "question": "What is the number of wins the team Boston Red Stockings got in the postseasons each year in history?", "context": "CREATE TABLE team (team_id_br VARCHAR, name VARCHAR); CREATE TABLE postseason (year VARCHAR, team_id_winner VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM (SELECT * FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' UNION SELECT * FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_loser = T2.team_id_br WHERE T2.name = 'Boston Red Stockings')", "question": "What is the total number of postseason games that team Boston Red Stockings participated in?", "context": "CREATE TABLE postseason (team_id_winner VARCHAR, team_id_loser VARCHAR); CREATE TABLE team (team_id_br VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM postseason WHERE YEAR = 1885 AND ties = 1", "question": "How many games in 1885 postseason resulted in ties (that is, the value of \"ties\" is '1')?", "context": "CREATE TABLE postseason (YEAR VARCHAR, ties VARCHAR)"}, {"answer": "SELECT SUM(T1.salary) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2010", "question": "What is the total salary paid by team Boston Red Stockings in 2010?", "context": "CREATE TABLE salary (salary INTEGER, team_id VARCHAR, year VARCHAR); CREATE TABLE team (team_id_br VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2000", "question": "How many players were in the team Boston Red Stockings in 2000?", "context": "CREATE TABLE salary (team_id VARCHAR, year VARCHAR); CREATE TABLE team (team_id_br VARCHAR, name VARCHAR)"}, {"answer": "SELECT salary FROM salary WHERE YEAR = 2001 ORDER BY salary DESC LIMIT 3", "question": "List the 3 highest salaries of the players in 2001?", "context": "CREATE TABLE salary (salary VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT salary FROM salary WHERE YEAR = 2010 UNION SELECT salary FROM salary WHERE YEAR = 2001", "question": "What were all the salary values of players in 2010 and 2001?", "context": "CREATE TABLE salary (salary VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT yearid FROM hall_of_fame GROUP BY yearid ORDER BY COUNT(*) LIMIT 1", "question": "In which year did the least people enter hall of fame?", "context": "CREATE TABLE hall_of_fame (yearid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM park WHERE city = 'Atlanta'", "question": "How many parks are there in Atlanta city?", "context": "CREATE TABLE park (city VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM home_game AS T1 JOIN park AS T2 ON T1.park_id = T2.park_id WHERE T1.year = 1907 AND T2.park_name = 'Columbia Park'", "question": "How many games were played in park \"Columbia Park\" in 1907?", "context": "CREATE TABLE park (park_id VARCHAR, park_name VARCHAR); CREATE TABLE home_game (park_id VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM home_game AS T1 JOIN park AS T2 ON T1.park_id = T2.park_id WHERE T1.year = 2000 AND T2.city = 'Atlanta'", "question": "How many games were played in city Atlanta in 2000?", "context": "CREATE TABLE park (park_id VARCHAR, city VARCHAR); CREATE TABLE home_game (park_id VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(T1.attendance) FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year BETWEEN 2000 AND 2010", "question": "What is the total home game attendance of team Boston Red Stockings from 2000 to 2010?", "context": "CREATE TABLE team (team_id_br VARCHAR, name VARCHAR); CREATE TABLE home_game (attendance INTEGER, team_id VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(T1.salary) FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id WHERE T2.name_first = 'Len' AND T2.name_last = 'Barker' AND T1.year BETWEEN 1985 AND 1990", "question": "How much did the the player with first name Len and last name Barker earn between 1985 to 1990 in total?", "context": "CREATE TABLE salary (salary INTEGER, player_id VARCHAR, year VARCHAR); CREATE TABLE player (player_id VARCHAR, name_first VARCHAR, name_last VARCHAR)"}, {"answer": "SELECT T2.name_first, T2.name_last FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id JOIN team AS T3 ON T3.team_id_br = T1.team_id WHERE T1.year = 2005 AND T3.name = 'Washington Nationals' INTERSECT SELECT T2.name_first, T2.name_last FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id JOIN team AS T3 ON T3.team_id_br = T1.team_id WHERE T1.year = 2007 AND T3.name = 'Washington Nationals'", "question": "List players' first name and last name who received salary from team Washington Nationals in both 2005 and 2007.", "context": "CREATE TABLE player (name_first VARCHAR, name_last VARCHAR, player_id VARCHAR); CREATE TABLE team (team_id_br VARCHAR, name VARCHAR); CREATE TABLE salary (player_id VARCHAR, team_id VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(T1.games) FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year BETWEEN 1990 AND 2000", "question": "How many home games did the team Boston Red Stockings play from 1990 to 2000 in total?", "context": "CREATE TABLE team (team_id_br VARCHAR, name VARCHAR); CREATE TABLE home_game (games INTEGER, team_id VARCHAR, year VARCHAR)"}, {"answer": "SELECT T2.name FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T1.year = 1980 ORDER BY T1.attendance LIMIT 1", "question": "Which team had the least number of attendances in home games in 1980?", "context": "CREATE TABLE home_game (team_id VARCHAR, year VARCHAR, attendance VARCHAR); CREATE TABLE team (name VARCHAR, team_id_br VARCHAR)"}, {"answer": "SELECT state FROM park GROUP BY state HAVING COUNT(*) > 2", "question": "List the names of states that have more than 2 parks.", "context": "CREATE TABLE park (state VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM team_franchise WHERE active = 'Y'", "question": "How many team franchises are active, with active value 'Y'?", "context": "CREATE TABLE team_franchise (active VARCHAR)"}, {"answer": "SELECT city FROM park GROUP BY city HAVING COUNT(*) BETWEEN 2 AND 4", "question": "Which cities have 2 to 4 parks?", "context": "CREATE TABLE park (city VARCHAR)"}, {"answer": "SELECT T2.park_name FROM home_game AS T1 JOIN park AS T2 ON T1.park_id = T2.park_id WHERE T1.year = 2008 ORDER BY T1.attendance DESC LIMIT 1", "question": "Which park had most attendances in 2008?", "context": "CREATE TABLE park (park_name VARCHAR, park_id VARCHAR); CREATE TABLE home_game (park_id VARCHAR, year VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM camera_lens WHERE focal_length_mm > 15", "question": "How many camera lenses have a focal length longer than 15 mm?", "context": "CREATE TABLE camera_lens (focal_length_mm INTEGER)"}, {"answer": "SELECT brand, name FROM camera_lens ORDER BY max_aperture DESC", "question": "Find the brand and name for each camera lens, and sort in descending order of maximum aperture.", "context": "CREATE TABLE camera_lens (brand VARCHAR, name VARCHAR, max_aperture VARCHAR)"}, {"answer": "SELECT id, color, name FROM photos", "question": "List the id, color scheme, and name for all the photos.", "context": "CREATE TABLE photos (id VARCHAR, color VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(height), AVG(height) FROM mountain", "question": "What are the maximum and average height of the mountains?", "context": "CREATE TABLE mountain (height INTEGER)"}, {"answer": "SELECT AVG(prominence) FROM mountain WHERE country = 'Morocco'", "question": "What are the average prominence of the mountains in country 'Morocco'?", "context": "CREATE TABLE mountain (prominence INTEGER, country VARCHAR)"}, {"answer": "SELECT name, height, prominence FROM mountain WHERE range <> 'Aberdare Range'", "question": "What are the name, height and prominence of mountains which do not belong to the range 'Aberdare Range'?", "context": "CREATE TABLE mountain (name VARCHAR, height VARCHAR, prominence VARCHAR, range VARCHAR)"}, {"answer": "SELECT T1.id, T1.name FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id WHERE T1.height > 4000", "question": "What are the id and name of the photos for mountains?", "context": "CREATE TABLE photos (mountain_id VARCHAR); CREATE TABLE mountain (id VARCHAR, name VARCHAR, height INTEGER)"}, {"answer": "SELECT T1.id, T1.name FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id GROUP BY T1.id HAVING COUNT(*) >= 2", "question": "What are the id and name of the mountains that have at least 2 photos?", "context": "CREATE TABLE mountain (id VARCHAR, name VARCHAR); CREATE TABLE photos (mountain_id VARCHAR)"}, {"answer": "SELECT T2.name FROM photos AS T1 JOIN camera_lens AS T2 ON T1.camera_lens_id = T2.id GROUP BY T2.id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What are the names of the cameras that have taken picture of the most mountains?", "context": "CREATE TABLE camera_lens (name VARCHAR, id VARCHAR); CREATE TABLE photos (camera_lens_id VARCHAR)"}, {"answer": "SELECT T1.name FROM camera_lens AS T1 JOIN photos AS T2 ON T2.camera_lens_id = T1.id WHERE T1.brand = 'Sigma' OR T1.brand = 'Olympus'", "question": "What are the names of photos taken with the lens brand 'Sigma' or 'Olympus'?", "context": "CREATE TABLE photos (camera_lens_id VARCHAR); CREATE TABLE camera_lens (name VARCHAR, id VARCHAR, brand VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT brand) FROM camera_lens", "question": "How many different kinds of lens brands are there?", "context": "CREATE TABLE camera_lens (brand VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM camera_lens WHERE NOT id IN (SELECT camera_lens_id FROM photos)", "question": "How many camera lenses are not used in taking any photos?", "context": "CREATE TABLE photos (id VARCHAR, camera_lens_id VARCHAR); CREATE TABLE camera_lens (id VARCHAR, camera_lens_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT T2.camera_lens_id) FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id WHERE T1.country = 'Ethiopia'", "question": "How many distinct kinds of camera lenses are used to take photos of mountains in the country 'Ethiopia'?", "context": "CREATE TABLE mountain (id VARCHAR, country VARCHAR); CREATE TABLE photos (camera_lens_id VARCHAR, mountain_id VARCHAR)"}, {"answer": "SELECT T3.brand FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id JOIN camera_lens AS T3 ON T2.camera_lens_id = T3.id WHERE T1.range = 'Toubkal Atlas' INTERSECT SELECT T3.brand FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id JOIN camera_lens AS T3 ON T2.camera_lens_id = T3.id WHERE T1.range = 'Lasta Massif'", "question": "List the brands of lenses that took both a picture of mountains with range 'Toubkal Atlas' and a picture of mountains with range 'Lasta Massif'", "context": "CREATE TABLE mountain (id VARCHAR, range VARCHAR); CREATE TABLE photos (mountain_id VARCHAR, camera_lens_id VARCHAR); CREATE TABLE camera_lens (brand VARCHAR, id VARCHAR)"}, {"answer": "SELECT name, prominence FROM mountain EXCEPT SELECT T1.name, T1.prominence FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id JOIN camera_lens AS T3 ON T2.camera_lens_id = T3.id WHERE T3.brand = 'Sigma'", "question": "Show the name and prominence of the mountains whose picture is not taken by a lens of brand 'Sigma'.", "context": "CREATE TABLE camera_lens (id VARCHAR, brand VARCHAR); CREATE TABLE mountain (name VARCHAR, prominence VARCHAR, id VARCHAR); CREATE TABLE photos (mountain_id VARCHAR, camera_lens_id VARCHAR); CREATE TABLE mountain (name VARCHAR, prominence VARCHAR)"}, {"answer": "SELECT name FROM camera_lens WHERE name LIKE \"%Digital%\"", "question": "List the camera lens names containing substring \"Digital\".", "context": "CREATE TABLE camera_lens (name VARCHAR)"}, {"answer": "SELECT T1.name, COUNT(*) FROM camera_lens AS T1 JOIN photos AS T2 ON T1.id = T2.camera_lens_id GROUP BY T1.id ORDER BY COUNT(*)", "question": "What is the name of each camera lens and the number of photos taken by it? Order the result by the count of photos.", "context": "CREATE TABLE photos (camera_lens_id VARCHAR); CREATE TABLE camera_lens (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT name FROM channel WHERE OWNER <> 'CCTV'", "question": "Find the names of channels that are not owned by CCTV.", "context": "CREATE TABLE channel (name VARCHAR, OWNER VARCHAR)"}, {"answer": "SELECT name FROM channel ORDER BY rating_in_percent DESC", "question": "List all channel names ordered by their rating in percent from big to small.", "context": "CREATE TABLE channel (name VARCHAR, rating_in_percent VARCHAR)"}, {"answer": "SELECT OWNER FROM channel ORDER BY rating_in_percent DESC LIMIT 1", "question": "What is the owner of the channel that has the highest rating ratio?", "context": "CREATE TABLE channel (OWNER VARCHAR, rating_in_percent VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM program", "question": "how many programs are there?", "context": "CREATE TABLE program (Id VARCHAR)"}, {"answer": "SELECT name FROM program ORDER BY launch", "question": "list all the names of programs, ordering by launch time.", "context": "CREATE TABLE program (name VARCHAR, launch VARCHAR)"}, {"answer": "SELECT name, origin, OWNER FROM program", "question": "List the name, origin and owner of each program.", "context": "CREATE TABLE program (name VARCHAR, origin VARCHAR, OWNER VARCHAR)"}, {"answer": "SELECT name FROM program ORDER BY launch DESC LIMIT 1", "question": "find the name of the program that was launched most recently.", "context": "CREATE TABLE program (name VARCHAR, launch VARCHAR)"}, {"answer": "SELECT SUM(Share_in_percent) FROM channel WHERE OWNER = 'CCTV'", "question": "find the total percentage share of all channels owned by CCTV.", "context": "CREATE TABLE channel (Share_in_percent INTEGER, OWNER VARCHAR)"}, {"answer": "SELECT t1.name FROM channel AS t1 JOIN broadcast AS t2 ON t1.channel_id = t2.channel_id WHERE t2.time_of_day = 'Morning'", "question": "Find the names of the channels that are broadcast in the morning.", "context": "CREATE TABLE channel (name VARCHAR, channel_id VARCHAR); CREATE TABLE broadcast (channel_id VARCHAR, time_of_day VARCHAR)"}, {"answer": "SELECT t1.name FROM channel AS t1 JOIN broadcast AS t2 ON t1.channel_id = t2.channel_id WHERE t2.time_of_day = 'Morning' INTERSECT SELECT t1.name FROM channel AS t1 JOIN broadcast AS t2 ON t1.channel_id = t2.channel_id WHERE t2.time_of_day = 'Night'", "question": "what are the names of the channels that broadcast in both morning and night?", "context": "CREATE TABLE channel (name VARCHAR, channel_id VARCHAR); CREATE TABLE broadcast (channel_id VARCHAR, time_of_day VARCHAR)"}, {"answer": "SELECT COUNT(*), time_of_day FROM broadcast GROUP BY time_of_day", "question": "how many programs are broadcast in each time section of the day?", "context": "CREATE TABLE broadcast (time_of_day VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT program_id) FROM broadcast WHERE time_of_day = 'Night'", "question": "find the number of different programs that are broadcast during night time.", "context": "CREATE TABLE broadcast (program_id VARCHAR, time_of_day VARCHAR)"}, {"answer": "SELECT name FROM program EXCEPT SELECT t1.name FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = \"Morning\"", "question": "Find the names of programs that are never broadcasted in the morning.", "context": "CREATE TABLE broadcast (program_id VARCHAR, Time_of_day VARCHAR); CREATE TABLE program (name VARCHAR, program_id VARCHAR); CREATE TABLE program (name VARCHAR)"}, {"answer": "SELECT t1.owner FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = \"Morning\" INTERSECT SELECT t1.owner FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = \"Night\"", "question": "find the program owners that have some programs in both morning and night time.", "context": "CREATE TABLE broadcast (program_id VARCHAR, Time_of_day VARCHAR); CREATE TABLE program (owner VARCHAR, program_id VARCHAR)"}, {"answer": "SELECT origin FROM program ORDER BY origin", "question": "List all program origins in the alphabetical order.", "context": "CREATE TABLE program (origin VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT OWNER) FROM channel", "question": "what is the number of different channel owners?", "context": "CREATE TABLE channel (OWNER VARCHAR)"}, {"answer": "SELECT name FROM program WHERE origin <> 'Beijing'", "question": "find the names of programs whose origin is not in Beijing.", "context": "CREATE TABLE program (name VARCHAR, origin VARCHAR)"}, {"answer": "SELECT name FROM channel WHERE OWNER = 'CCTV' OR OWNER = 'HBS'", "question": "What are the names of the channels owned by CCTV or HBS?", "context": "CREATE TABLE channel (name VARCHAR, OWNER VARCHAR)"}, {"answer": "SELECT SUM(Rating_in_percent), OWNER FROM channel GROUP BY OWNER", "question": "Find the total rating ratio for each channel owner.", "context": "CREATE TABLE channel (OWNER VARCHAR, Rating_in_percent INTEGER)"}, {"answer": "SELECT t1.name FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id GROUP BY t2.program_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of the program that is broadcast most frequently.", "context": "CREATE TABLE program (name VARCHAR, program_id VARCHAR); CREATE TABLE broadcast (program_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM COURSES", "question": "How many courses are there in total?", "context": "CREATE TABLE COURSES (Id VARCHAR)"}, {"answer": "SELECT course_description FROM COURSES WHERE course_name = \"database\"", "question": "What are the descriptions of the courses with name \"database\"?", "context": "CREATE TABLE COURSES (course_description VARCHAR, course_name VARCHAR)"}, {"answer": "SELECT address_line_1 FROM Course_Authors_and_Tutors WHERE personal_name = \"Cathrine\"", "question": "What are the addresses of the course authors or tutors with personal name \"Cathrine\"", "context": "CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR, personal_name VARCHAR)"}, {"answer": "SELECT address_line_1 FROM Course_Authors_and_Tutors", "question": "List the addresses of all the course authors or tutors.", "context": "CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR)"}, {"answer": "SELECT login_name, family_name FROM Course_Authors_and_Tutors", "question": "List all the login names and family names of course author and tutors.", "context": "CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR, family_name VARCHAR)"}, {"answer": "SELECT date_of_enrolment, date_of_completion FROM Student_Course_Enrolment", "question": "List all the dates of enrollment and completion of students.", "context": "CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, date_of_completion VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT student_id) FROM Student_Course_Enrolment", "question": "How many distinct students are enrolled in courses?", "context": "CREATE TABLE Student_Course_Enrolment (student_id VARCHAR)"}, {"answer": "SELECT COUNT(course_id) FROM Student_Course_Enrolment", "question": "How many distinct courses are enrolled in by students?", "context": "CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)"}, {"answer": "SELECT date_test_taken FROM Student_Tests_Taken WHERE test_result = \"Pass\"", "question": "Find the dates of the tests taken with result \"Pass\".", "context": "CREATE TABLE Student_Tests_Taken (date_test_taken VARCHAR, test_result VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Student_Tests_Taken WHERE test_result = \"Fail\"", "question": "How many tests have result \"Fail\"?", "context": "CREATE TABLE Student_Tests_Taken (test_result VARCHAR)"}, {"answer": "SELECT login_name FROM Students WHERE family_name = \"Ward\"", "question": "What are the login names of the students with family name \"Ward\"?", "context": "CREATE TABLE Students (login_name VARCHAR, family_name VARCHAR)"}, {"answer": "SELECT date_of_latest_logon FROM Students WHERE family_name = \"Jaskolski\" OR family_name = \"Langosh\"", "question": "What are the dates of the latest logon of the students with family name \"Jaskolski\" or \"Langosh\"?", "context": "CREATE TABLE Students (date_of_latest_logon VARCHAR, family_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Students WHERE personal_name LIKE \"%son%\"", "question": "How many students have personal names that contain the word \"son\"?", "context": "CREATE TABLE Students (personal_name VARCHAR)"}, {"answer": "SELECT subject_name FROM SUBJECTS", "question": "List all the subject names.", "context": "CREATE TABLE SUBJECTS (subject_name VARCHAR)"}, {"answer": "SELECT * FROM Course_Authors_and_Tutors ORDER BY personal_name", "question": "List all the information about course authors and tutors in alphabetical order of the personal name.", "context": "CREATE TABLE Course_Authors_and_Tutors (personal_name VARCHAR)"}, {"answer": "SELECT personal_name, family_name FROM Students ORDER BY family_name", "question": "List the personal names and family names of all the students in alphabetical order of family name.", "context": "CREATE TABLE Students (personal_name VARCHAR, family_name VARCHAR)"}, {"answer": "SELECT test_result, COUNT(*) FROM Student_Tests_Taken GROUP BY test_result ORDER BY COUNT(*) DESC", "question": "List each test result and its count in descending order of count.", "context": "CREATE TABLE Student_Tests_Taken (test_result VARCHAR)"}, {"answer": "SELECT T1.login_name FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T2.course_name = \"advanced database\"", "question": "Find the login name of the course author that teaches the course with name \"advanced database\".", "context": "CREATE TABLE Courses (author_id VARCHAR, course_name VARCHAR); CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR, author_id VARCHAR)"}, {"answer": "SELECT T1.address_line_1 FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T2.course_name = \"operating system\" OR T2.course_name = \"data structure\"", "question": "Find the addresses of the course authors who teach the course with name \"operating system\" or \"data structure\".", "context": "CREATE TABLE Courses (author_id VARCHAR, course_name VARCHAR); CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR, author_id VARCHAR)"}, {"answer": "SELECT T1.personal_name, T1.family_name, T2.author_id FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id GROUP BY T2.author_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the personal name, family name, and author ID of the course author that teaches the most courses.", "context": "CREATE TABLE Courses (author_id VARCHAR); CREATE TABLE Course_Authors_and_Tutors (personal_name VARCHAR, family_name VARCHAR, author_id VARCHAR)"}, {"answer": "SELECT T1.address_line_1, T2.author_id FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id GROUP BY T2.author_id HAVING COUNT(*) >= 2", "question": "Find the addresses and author IDs of the course authors that teach at least two courses.", "context": "CREATE TABLE Courses (author_id VARCHAR); CREATE TABLE Course_Authors_and_Tutors (address_line_1 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\"", "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 T1.course_name, T1.course_description FROM Courses AS T1 JOIN Subjects AS T2 ON T1.subject_id = T2.subject_id WHERE T2.subject_name = \"Computer Science\"", "question": "Find the names and descriptions of courses that belong to the subject named \"Computer Science\".", "context": "CREATE TABLE Courses (course_name VARCHAR, course_description VARCHAR, subject_id VARCHAR); CREATE TABLE Subjects (subject_id VARCHAR, subject_name VARCHAR)"}, {"answer": "SELECT T1.subject_id, T2.subject_name, COUNT(*) FROM Courses AS T1 JOIN Subjects AS T2 ON T1.subject_id = T2.subject_id GROUP BY T1.subject_id", "question": "Find the subject ID, subject name, and the corresponding number of available courses for each subject.", "context": "CREATE TABLE Courses (subject_id VARCHAR); CREATE TABLE Subjects (subject_name VARCHAR, subject_id VARCHAR)"}, {"answer": "SELECT T1.subject_id, T2.subject_name, COUNT(*) FROM Courses AS T1 JOIN Subjects AS T2 ON T1.subject_id = T2.subject_id GROUP BY T1.subject_id ORDER BY COUNT(*)", "question": "Find the subject ID, name of subject and the corresponding number of courses for each subject, and sort by the course count in ascending order.", "context": "CREATE TABLE Courses (subject_id VARCHAR); CREATE TABLE Subjects (subject_name VARCHAR, subject_id 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\"", "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 T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the course that has the most student enrollment?", "context": "CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)"}, {"answer": "SELECT T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name HAVING COUNT(*) = 1", "question": "What are the names of the courses that have exactly 1 student enrollment?", "context": "CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)"}, {"answer": "SELECT T1.course_description, T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name HAVING COUNT(*) > 2", "question": "What are the descriptions and names of the courses that have student enrollment bigger than 2?", "context": "CREATE TABLE Student_Course_Enrolment (course_id VARCHAR); CREATE TABLE Courses (course_description VARCHAR, course_name VARCHAR, course_id VARCHAR)"}, {"answer": "SELECT T1.course_name, COUNT(*) FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name", "question": "What is the name of each course and the corresponding number of student enrollment?", "context": "CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)"}, {"answer": "SELECT T1.date_of_enrolment FROM Student_Course_Enrolment AS T1 JOIN Student_Tests_Taken AS T2 ON T1.registration_id = T2.registration_id WHERE T2.test_result = \"Pass\"", "question": "What are the enrollment dates of all the tests that have result \"Pass\"?", "context": "CREATE TABLE Student_Tests_Taken (registration_id VARCHAR, test_result VARCHAR); CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, registration_id VARCHAR)"}, {"answer": "SELECT T1.date_of_completion FROM Student_Course_Enrolment AS T1 JOIN Student_Tests_Taken AS T2 ON T1.registration_id = T2.registration_id WHERE T2.test_result = \"Fail\"", "question": "What are the completion dates of all the tests that have result \"Fail\"?", "context": "CREATE TABLE Student_Tests_Taken (registration_id VARCHAR, test_result VARCHAR); CREATE TABLE Student_Course_Enrolment (date_of_completion VARCHAR, registration_id VARCHAR)"}, {"answer": "SELECT T1.date_of_enrolment, T1.date_of_completion FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id WHERE T2.personal_name = \"Karson\"", "question": "List the dates of enrollment and completion of the student with personal name \"Karson\".", "context": "CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, date_of_completion VARCHAR, student_id VARCHAR); CREATE TABLE Students (student_id VARCHAR, personal_name VARCHAR)"}, {"answer": "SELECT T1.date_of_enrolment, T1.date_of_completion FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id WHERE T2.family_name = \"Zieme\" AND T2.personal_name = \"Bernie\"", "question": "List the dates of enrollment and completion of the student with family name \"Zieme\" and personal name \"Bernie\".", "context": "CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, date_of_completion VARCHAR, student_id VARCHAR); CREATE TABLE Students (student_id VARCHAR, family_name VARCHAR, personal_name VARCHAR)"}, {"answer": "SELECT T1.student_id, T2.login_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the student ID and login name of the student with the most course enrollments", "context": "CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (login_name VARCHAR, student_id VARCHAR)"}, {"answer": "SELECT T1.student_id, T2.personal_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING COUNT(*) >= 2", "question": "Find the student ID and personal name of the student with at least two enrollments.", "context": "CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (personal_name VARCHAR, student_id VARCHAR)"}, {"answer": "SELECT T1.student_id, T2.middle_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING COUNT(*) <= 2", "question": "Find the student ID and middle name for all the students with at most two enrollments.", "context": "CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (middle_name VARCHAR, student_id VARCHAR)"}, {"answer": "SELECT personal_name FROM Students EXCEPT SELECT T1.personal_name FROM Students AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.student_id = T2.student_id", "question": "Find the personal names of students not enrolled in any course.", "context": "CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (personal_name VARCHAR); CREATE TABLE Students (personal_name VARCHAR, student_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Students WHERE NOT student_id IN (SELECT student_id FROM Student_Course_Enrolment)", "question": "How many students did not have any course enrollment?", "context": "CREATE TABLE Students (student_id VARCHAR); CREATE TABLE Student_Course_Enrolment (student_id VARCHAR)"}, {"answer": "SELECT login_name FROM Course_Authors_and_Tutors INTERSECT SELECT login_name FROM Students", "question": "Find the common login name of course authors and students.", "context": "CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR); CREATE TABLE Students (login_name VARCHAR)"}, {"answer": "SELECT personal_name FROM Course_Authors_and_Tutors INTERSECT SELECT personal_name FROM Students", "question": "Find the common personal name of course authors and students.", "context": "CREATE TABLE Course_Authors_and_Tutors (personal_name VARCHAR); CREATE TABLE Students (personal_name VARCHAR)"}, {"answer": "SELECT T1.Date_Claim_Made, T1.Claim_id FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id GROUP BY T1.Claim_id HAVING COUNT(*) > 2 UNION SELECT T1.Date_Claim_Made, T1.Claim_id FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id WHERE T1.Amount_Claimed = (SELECT MAX(Amount_Claimed) FROM Claims)", "question": "Which claims caused more than 2 settlements or have the maximum claim value? List the date the claim was made and the claim id.", "context": "CREATE TABLE Settlements (Claim_id VARCHAR); CREATE TABLE Claims (Amount_Claimed INTEGER); CREATE TABLE Claims (Date_Claim_Made VARCHAR, Claim_id VARCHAR, Amount_Claimed INTEGER)"}, {"answer": "SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2 EXCEPT SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.customer_id JOIN Claims AS T3 ON T2.policy_id = T3.policy_id", "question": "Which customer had at least 2 policies but did not file any claims? List the customer details and id.", "context": "CREATE TABLE Customers (customer_details VARCHAR, customer_id VARCHAR, Customer_id VARCHAR); CREATE TABLE Customer_Policies (customer_id VARCHAR, policy_id VARCHAR); CREATE TABLE Claims (policy_id VARCHAR)"}, {"answer": "SELECT Payment_Method_Code, Date_Payment_Made, Amount_Payment FROM Payments ORDER BY Date_Payment_Made", "question": "List the method, date and amount of all the payments, in ascending order of date.", "context": "CREATE TABLE Payments (Payment_Method_Code VARCHAR, Date_Payment_Made VARCHAR, Amount_Payment VARCHAR)"}, {"answer": "SELECT Amount_Settled, Amount_Claimed FROM Claims ORDER BY Amount_Claimed DESC LIMIT 1", "question": "Among all the claims, what is the settlement amount of the claim with the largest claim amount? List both the settlement amount and claim amount.", "context": "CREATE TABLE Claims (Amount_Settled VARCHAR, Amount_Claimed VARCHAR)"}, {"answer": "SELECT Amount_Settled, Amount_Claimed FROM Claims ORDER BY Amount_Settled LIMIT 1", "question": "Among all the claims, what is the amount claimed in the claim with the least amount settled? List both the settlement amount and claim amount.", "context": "CREATE TABLE Claims (Amount_Settled VARCHAR, Amount_Claimed VARCHAR)"}, {"answer": "SELECT Date_Claim_Made, Date_Claim_Settled FROM Claims WHERE Amount_Claimed > (SELECT AVG(Amount_Claimed) FROM Claims)", "question": "Among all the claims, which claims have a claimed amount larger than the average? List the date the claim was made and the date it was settled.", "context": "CREATE TABLE Claims (Date_Claim_Made VARCHAR, Date_Claim_Settled VARCHAR, Amount_Claimed INTEGER)"}, {"answer": "SELECT Date_Claim_Made FROM Claims WHERE Amount_Settled <= (SELECT AVG(Amount_Settled) FROM Claims)", "question": "Among all the claims, which settlements have a claimed amount that is no more than the average? List the claim start date.", "context": "CREATE TABLE Claims (Date_Claim_Made VARCHAR, Amount_Settled INTEGER)"}, {"answer": "SELECT T1.Claim_id, COUNT(*) FROM Claims AS T1 JOIN Settlements AS T2 ON T1.claim_id = T2.claim_id GROUP BY T1.claim_id", "question": "How many settlements does each claim correspond to? List the claim id and the number of settlements.", "context": "CREATE TABLE Settlements (claim_id VARCHAR); CREATE TABLE Claims (Claim_id VARCHAR, claim_id VARCHAR)"}, {"answer": "SELECT T1.claim_id, T1.date_claim_made, COUNT(*) FROM Claims AS T1 JOIN Settlements AS T2 ON T1.claim_id = T2.claim_id GROUP BY T1.claim_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which claim incurred the most number of settlements? List the claim id, the date the claim was made, and the number.", "context": "CREATE TABLE Claims (claim_id VARCHAR, date_claim_made VARCHAR); CREATE TABLE Settlements (claim_id VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.claim_id FROM Claims AS T1 JOIN Settlements AS T2 ON T1.claim_id = T2.claim_id GROUP BY T1.claim_id ORDER BY T1.Date_Claim_Settled DESC LIMIT 1", "question": "How many settlements were made on the claim with the most recent claim settlement date? List the number and the claim id.", "context": "CREATE TABLE Settlements (claim_id VARCHAR); CREATE TABLE Claims (claim_id VARCHAR, Date_Claim_Settled VARCHAR)"}, {"answer": "SELECT Date_Claim_Made FROM Claims ORDER BY Date_Claim_Made LIMIT 1", "question": "Of all the claims, what was the earliest date when any claim was made?", "context": "CREATE TABLE Claims (Date_Claim_Made VARCHAR)"}, {"answer": "SELECT SUM(Amount_Settled) FROM Settlements", "question": "What is the total amount of settlement made for all the settlements?", "context": "CREATE TABLE Settlements (Amount_Settled INTEGER)"}, {"answer": "SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.Customer_id GROUP BY T1.customer_id HAVING COUNT(*) > 1", "question": "Who are the customers that had more than 1 policy? List the customer details and id.", "context": "CREATE TABLE Customers (customer_details VARCHAR, customer_id VARCHAR, Customer_id VARCHAR); CREATE TABLE Customer_Policies (Customer_id VARCHAR)"}, {"answer": "SELECT Date_Claim_Made, Date_Claim_Settled FROM Settlements", "question": "What are the claim dates and settlement dates of all the settlements?", "context": "CREATE TABLE Settlements (Date_Claim_Made VARCHAR, Date_Claim_Settled VARCHAR)"}, {"answer": "SELECT Payment_Method_Code FROM Payments GROUP BY Payment_Method_Code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most popular payment method?", "context": "CREATE TABLE Payments (Payment_Method_Code VARCHAR)"}, {"answer": "SELECT Payment_Method_Code FROM Payments GROUP BY Payment_Method_Code ORDER BY COUNT(*) LIMIT 1", "question": "With which kind of payment method were the least number of payments processed?", "context": "CREATE TABLE Payments (Payment_Method_Code VARCHAR)"}, {"answer": "SELECT SUM(Amount_Payment) FROM Payments", "question": "What is the total amount of payment?", "context": "CREATE TABLE Payments (Amount_Payment INTEGER)"}, {"answer": "SELECT DISTINCT customer_details FROM Customers", "question": "What are all the distinct details of the customers?", "context": "CREATE TABLE Customers (customer_details VARCHAR)"}, {"answer": "SELECT Policy_Type_Code FROM Customer_Policies GROUP BY Policy_Type_Code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which kind of policy type was chosen by the most customers?", "context": "CREATE TABLE Customer_Policies (Policy_Type_Code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Settlements", "question": "How many settlements are there in total?", "context": "CREATE TABLE Settlements (Id VARCHAR)"}, {"answer": "SELECT Payment_ID, Date_Payment_Made, Amount_Payment FROM Payments WHERE Payment_Method_Code = 'Visa'", "question": "Which Payments were processed with Visa? List the payment Id, the date and the amount.", "context": "CREATE TABLE Payments (Payment_ID VARCHAR, Date_Payment_Made VARCHAR, Amount_Payment VARCHAR, Payment_Method_Code VARCHAR)"}, {"answer": "SELECT customer_details FROM Customers EXCEPT SELECT T1.customer_details FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.customer_id = T2.customer_id", "question": "List the details of the customers who do not have any policies.", "context": "CREATE TABLE Customer_Policies (customer_id VARCHAR); CREATE TABLE Customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_details VARCHAR)"}, {"answer": "SELECT T1.claim_id, T1.date_claim_made, T1.Date_Claim_Settled FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id GROUP BY T1.claim_id HAVING COUNT(*) = 1", "question": "List the date the claim was made, the date it was settled and the amount settled for all the claims which had exactly one settlement.", "context": "CREATE TABLE Claims (claim_id VARCHAR, date_claim_made VARCHAR, Date_Claim_Settled VARCHAR, Claim_id VARCHAR); CREATE TABLE Settlements (Claim_id VARCHAR)"}, {"answer": "SELECT SUM(Amount_Claimed) FROM Claims", "question": "Find the total claimed amount of all the claims.", "context": "CREATE TABLE Claims (Amount_Claimed INTEGER)"}, {"answer": "SELECT name FROM department GROUP BY departmentID ORDER BY COUNT(departmentID) DESC LIMIT 1", "question": "Which department has the largest number of employees?", "context": "CREATE TABLE department (name VARCHAR, departmentID VARCHAR)"}, {"answer": "SELECT head FROM department GROUP BY departmentID ORDER BY COUNT(departmentID) LIMIT 1", "question": "What is the employee id of the head whose department has the least number of employees?", "context": "CREATE TABLE department (head VARCHAR, departmentID VARCHAR)"}, {"answer": "SELECT T2.name, T2.position FROM department AS T1 JOIN physician AS T2 ON T1.head = T2.EmployeeID GROUP BY departmentID ORDER BY COUNT(departmentID) LIMIT 1", "question": "what is the name and position of the head whose department has least number of employees?", "context": "CREATE TABLE department (head VARCHAR); CREATE TABLE physician (name VARCHAR, position VARCHAR, EmployeeID VARCHAR)"}, {"answer": "SELECT name FROM appointment AS T1 JOIN patient AS T2 ON T1.patient = T2.ssn", "question": "What are names of patients who made an appointment?", "context": "CREATE TABLE appointment (patient VARCHAR); CREATE TABLE patient (ssn VARCHAR)"}, {"answer": "SELECT name, phone FROM appointment AS T1 JOIN patient AS T2 ON T1.patient = T2.ssn GROUP BY T1.patient HAVING COUNT(*) > 1", "question": "what are name and phone number of patients who had more than one appointment?", "context": "CREATE TABLE appointment (patient VARCHAR); CREATE TABLE patient (ssn VARCHAR)"}, {"answer": "SELECT appointmentid FROM appointment ORDER BY START DESC LIMIT 1", "question": "Find the id of the appointment with the most recent start date?", "context": "CREATE TABLE appointment (appointmentid VARCHAR, START VARCHAR)"}, {"answer": "SELECT T2.name FROM appointment AS T1 JOIN physician AS T2 ON T1.Physician = T2.EmployeeID", "question": "List the name of physicians who took some appointment.", "context": "CREATE TABLE appointment (Physician VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)"}, {"answer": "SELECT name FROM physician EXCEPT SELECT T2.name FROM appointment AS T1 JOIN physician AS T2 ON T1.Physician = T2.EmployeeID", "question": "List the name of physicians who never took any appointment.", "context": "CREATE TABLE physician (name VARCHAR); CREATE TABLE appointment (Physician VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)"}, {"answer": "SELECT T1.name, T3.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T2.PrimaryAffiliation = 1", "question": "Find the names of all physicians and their primary affiliated departments' names.", "context": "CREATE TABLE department (name VARCHAR, DepartmentID VARCHAR); CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR, PrimaryAffiliation VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)"}, {"answer": "SELECT T1.name FROM patient AS T1 JOIN appointment AS T2 ON T1.ssn = T2.patient ORDER BY T2.start DESC LIMIT 1", "question": "What is the name of the patient who made the most recent appointment?", "context": "CREATE TABLE patient (name VARCHAR, ssn VARCHAR); CREATE TABLE appointment (patient VARCHAR, start VARCHAR)"}, {"answer": "SELECT COUNT(patient) FROM stay WHERE room = 112", "question": "How many patients stay in room 112?", "context": "CREATE TABLE stay (patient VARCHAR, room VARCHAR)"}, {"answer": "SELECT COUNT(T1.SSN) FROM patient AS T1 JOIN prescribes AS T2 ON T1.SSN = T2.patient JOIN physician AS T3 ON T2.physician = T3.employeeid WHERE T3.name = \"John Dorian\"", "question": "How many patients' prescriptions are made by physician John Dorian?", "context": "CREATE TABLE patient (SSN VARCHAR); CREATE TABLE prescribes (patient VARCHAR, physician VARCHAR); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR)"}, {"answer": "SELECT T4.name FROM stay AS T1 JOIN patient AS T2 ON T1.Patient = T2.SSN JOIN Prescribes AS T3 ON T3.Patient = T2.SSN JOIN Medication AS T4 ON T3.Medication = T4.Code WHERE room = 111", "question": "Find the name of medication used on the patient who stays in room 111?", "context": "CREATE TABLE Prescribes (Patient VARCHAR, Medication VARCHAR); CREATE TABLE Medication (name VARCHAR, Code VARCHAR); CREATE TABLE patient (SSN VARCHAR); CREATE TABLE stay (Patient VARCHAR)"}, {"answer": "SELECT patient FROM stay WHERE room = 111 ORDER BY staystart DESC LIMIT 1", "question": "Find the patient who most recently stayed in room 111.", "context": "CREATE TABLE stay (patient VARCHAR, room VARCHAR, staystart VARCHAR)"}, {"answer": "SELECT T1.name FROM nurse AS T1 JOIN appointment AS T2 ON T1.employeeid = T2.prepnurse GROUP BY T1.employeeid ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the nurse has the most appointments?", "context": "CREATE TABLE nurse (name VARCHAR, employeeid VARCHAR); CREATE TABLE appointment (prepnurse VARCHAR)"}, {"answer": "SELECT T1.name, COUNT(*) FROM physician AS T1 JOIN patient AS T2 ON T1.employeeid = T2.PCP GROUP BY T1.employeeid", "question": "How many patients do each physician take care of? List their names and number of patients they take care of.", "context": "CREATE TABLE patient (PCP VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR)"}, {"answer": "SELECT T1.name FROM physician AS T1 JOIN patient AS T2 ON T1.employeeid = T2.PCP GROUP BY T1.employeeid HAVING COUNT(*) > 1", "question": "Find the name of physicians who are in charge of more than one patient.", "context": "CREATE TABLE patient (PCP VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.blockfloor FROM BLOCK AS T1 JOIN room AS T2 ON T1.blockfloor = T2.blockfloor AND T1.blockcode = T2.blockcode GROUP BY T1.blockfloor", "question": "Find the number of rooms located on each block floor.", "context": "CREATE TABLE room (blockfloor VARCHAR, blockcode VARCHAR); CREATE TABLE BLOCK (blockfloor VARCHAR, blockcode VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.blockcode FROM BLOCK AS T1 JOIN room AS T2 ON T1.blockfloor = T2.blockfloor AND T1.blockcode = T2.blockcode GROUP BY T1.blockcode", "question": "Find the number of rooms for different block code?", "context": "CREATE TABLE room (blockfloor VARCHAR, blockcode VARCHAR); CREATE TABLE BLOCK (blockcode VARCHAR, blockfloor VARCHAR)"}, {"answer": "SELECT DISTINCT blockcode FROM room WHERE unavailable = 0", "question": "What are the unique block codes that have available rooms?", "context": "CREATE TABLE room (blockcode VARCHAR, unavailable VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT roomtype) FROM room", "question": "How many different types of rooms are there?", "context": "CREATE TABLE room (roomtype VARCHAR)"}, {"answer": "SELECT DISTINCT T1.name FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician JOIN medication AS T3 ON T3.code = T2.medication WHERE T3.name = \"Thesisin\"", "question": "What is the names of the physicians who prescribe medication Thesisin?", "context": "CREATE TABLE physician (name VARCHAR, employeeid VARCHAR); CREATE TABLE prescribes (physician VARCHAR, medication VARCHAR); CREATE TABLE medication (code VARCHAR, name VARCHAR)"}, {"answer": "SELECT DISTINCT T1.name, T1.position FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician JOIN medication AS T3 ON T3.code = T2.medication WHERE T3.Brand = \"X\"", "question": "Find the name and position of physicians who prescribe some medication whose brand is X?", "context": "CREATE TABLE medication (code VARCHAR, Brand VARCHAR); CREATE TABLE prescribes (physician VARCHAR, medication VARCHAR); CREATE TABLE physician (name VARCHAR, position VARCHAR, employeeid VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.name FROM medication AS T1 JOIN prescribes AS T2 ON T1.code = T2.medication GROUP BY T1.brand", "question": "Find the number of medications prescribed for each brand.", "context": "CREATE TABLE medication (name VARCHAR, brand VARCHAR, code VARCHAR); CREATE TABLE prescribes (medication VARCHAR)"}, {"answer": "SELECT name FROM physician WHERE POSITION LIKE '%senior%'", "question": "Find the name of physicians whose position title contains the word 'senior'.", "context": "CREATE TABLE physician (name VARCHAR, POSITION VARCHAR)"}, {"answer": "SELECT patient FROM undergoes ORDER BY dateundergoes LIMIT 1", "question": "Find the patient who has the most recent undergoing treatment?", "context": "CREATE TABLE undergoes (patient VARCHAR, dateundergoes VARCHAR)"}, {"answer": "SELECT DISTINCT T2.name FROM undergoes AS T1 JOIN patient AS T2 ON T1.patient = T2.SSN JOIN stay AS T3 ON T1.Stay = T3.StayID WHERE T3.room = 111", "question": "Find the names of all patients who have an undergoing treatment and are staying in room 111.", "context": "CREATE TABLE undergoes (patient VARCHAR, Stay VARCHAR); CREATE TABLE stay (StayID VARCHAR, room VARCHAR); CREATE TABLE patient (name VARCHAR, SSN VARCHAR)"}, {"answer": "SELECT DISTINCT name FROM nurse ORDER BY name", "question": "List the names of all distinct nurses ordered by alphabetical order?", "context": "CREATE TABLE nurse (name VARCHAR)"}, {"answer": "SELECT DISTINCT T2.name FROM undergoes AS T1 JOIN nurse AS T2 ON T1.AssistingNurse = T2.EmployeeID", "question": "Find the names of nurses who are nursing an undergoing treatment.", "context": "CREATE TABLE undergoes (AssistingNurse VARCHAR); CREATE TABLE nurse (name VARCHAR, EmployeeID VARCHAR)"}, {"answer": "SELECT DISTINCT name FROM medication ORDER BY name", "question": "List the names of all distinct medications, ordered in an alphabetical order.", "context": "CREATE TABLE medication (name VARCHAR)"}, {"answer": "SELECT T1.name FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician ORDER BY T2.dose DESC LIMIT 1", "question": "What are the names of the physician who prescribed the highest dose?", "context": "CREATE TABLE prescribes (physician VARCHAR, dose VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR)"}, {"answer": "SELECT physician, department FROM affiliated_with WHERE primaryaffiliation = 1", "question": "List the physicians' employee ids together with their primary affiliation departments' ids.", "context": "CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR, primaryaffiliation VARCHAR)"}, {"answer": "SELECT DISTINCT T2.name FROM affiliated_with AS T1 JOIN department AS T2 ON T1.department = T2.departmentid WHERE PrimaryAffiliation = 1", "question": "List the names of departments where some physicians are primarily affiliated with.", "context": "CREATE TABLE affiliated_with (department VARCHAR); CREATE TABLE department (name VARCHAR, departmentid VARCHAR)"}, {"answer": "SELECT nurse FROM on_call WHERE blockfloor = 1 AND blockcode = 1", "question": "What nurses are on call with block floor 1 and block code 1? Tell me their names.", "context": "CREATE TABLE on_call (nurse VARCHAR, blockfloor VARCHAR, blockcode VARCHAR)"}, {"answer": "SELECT MAX(cost), MIN(cost), AVG(cost) FROM procedures", "question": "What are the highest cost, lowest cost and average cost of procedures?", "context": "CREATE TABLE procedures (cost INTEGER)"}, {"answer": "SELECT name, cost FROM procedures ORDER BY cost DESC", "question": "List the name and cost of all procedures sorted by the cost from the highest to the lowest.", "context": "CREATE TABLE procedures (name VARCHAR, cost VARCHAR)"}, {"answer": "SELECT name FROM procedures ORDER BY cost LIMIT 3", "question": "Find the three most expensive procedures.", "context": "CREATE TABLE procedures (name VARCHAR, cost VARCHAR)"}, {"answer": "SELECT T1.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T3.cost > 5000", "question": "Find the physicians who are trained in a procedure that costs more than 5000.", "context": "CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR); CREATE TABLE procedures (code VARCHAR, cost INTEGER)"}, {"answer": "SELECT T1.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment ORDER BY T3.cost DESC LIMIT 1", "question": "Find the physician who was trained in the most expensive procedure?", "context": "CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR); CREATE TABLE procedures (code VARCHAR, cost VARCHAR)"}, {"answer": "SELECT AVG(T3.cost) FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T1.name = \"John Wen\"", "question": "What is the average cost of procedures that physician John Wen was trained in?", "context": "CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE procedures (cost INTEGER, code VARCHAR); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR)"}, {"answer": "SELECT T3.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T1.name = \"John Wen\"", "question": "Find the names of procedures which physician John Wen was trained in.", "context": "CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR); CREATE TABLE procedures (name VARCHAR, code VARCHAR)"}, {"answer": "SELECT name FROM procedures WHERE cost > 1000 UNION SELECT T3.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T1.name = \"John Wen\"", "question": "Find all procedures which cost more than 1000 or which physician John Wen was trained in.", "context": "CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE procedures (name VARCHAR, cost INTEGER); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR); CREATE TABLE procedures (name VARCHAR, code VARCHAR)"}, {"answer": "SELECT name FROM procedures WHERE cost > 1000 EXCEPT SELECT T3.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T1.name = \"John Wen\"", "question": "Find the names of all procedures which cost more than 1000 but which physician John Wen was not trained in?", "context": "CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE procedures (name VARCHAR, cost INTEGER); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR); CREATE TABLE procedures (name VARCHAR, code VARCHAR)"}, {"answer": "SELECT name FROM procedures WHERE cost < 5000 INTERSECT SELECT T3.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T1.name = \"John Wen\"", "question": "Find the names of all procedures such that the cost is less than 5000 and physician John Wen was trained in.", "context": "CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE procedures (name VARCHAR, cost INTEGER); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR); CREATE TABLE procedures (name VARCHAR, code VARCHAR)"}, {"answer": "SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T3.name = 'Surgery' INTERSECT SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T3.name = 'Psychiatry'", "question": "Find the name of physicians who are affiliated with both Surgery and Psychiatry departments.", "context": "CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR); CREATE TABLE department (DepartmentID VARCHAR, name VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)"}, {"answer": "SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T3.name = 'Surgery' OR T3.name = 'Psychiatry'", "question": "Find the name of physicians who are affiliated with Surgery or Psychiatry department.", "context": "CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR); CREATE TABLE department (DepartmentID VARCHAR, name VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)"}, {"answer": "SELECT name FROM patient EXCEPT SELECT T1.name FROM patient AS T1 JOIN Prescribes AS T2 ON T2.Patient = T1.SSN JOIN Medication AS T3 ON T2.Medication = T3.Code WHERE T3.name = 'Procrastin-X'", "question": "Find the names of patients who are not using the medication of Procrastin-X.", "context": "CREATE TABLE Prescribes (Patient VARCHAR, Medication VARCHAR); CREATE TABLE Medication (Code VARCHAR, name VARCHAR); CREATE TABLE patient (name VARCHAR, SSN VARCHAR); CREATE TABLE patient (name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM patient WHERE NOT SSN IN (SELECT T1.patient FROM Prescribes AS T1 JOIN Medication AS T2 ON T1.Medication = T2.Code WHERE T2.name = 'Procrastin-X')", "question": "Find the number of patients who are not using the medication of Procrastin-X.", "context": "CREATE TABLE Prescribes (patient VARCHAR, Medication VARCHAR); CREATE TABLE patient (SSN VARCHAR); CREATE TABLE Medication (Code VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM appointment", "question": "How many appointments are there?", "context": "CREATE TABLE appointment (Id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.name FROM nurse AS T1 JOIN on_call AS T2 ON T1.EmployeeID = T2.nurse", "question": "Find the names of nurses who are on call.", "context": "CREATE TABLE on_call (nurse VARCHAR); CREATE TABLE nurse (name VARCHAR, EmployeeID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM ship", "question": "How many ships are there?", "context": "CREATE TABLE ship (Id VARCHAR)"}, {"answer": "SELECT Name FROM ship ORDER BY Tonnage", "question": "List the name of ships in ascending order of tonnage.", "context": "CREATE TABLE ship (Name VARCHAR, Tonnage VARCHAR)"}, {"answer": "SELECT TYPE, Nationality FROM ship", "question": "What are the type and nationality of ships?", "context": "CREATE TABLE ship (TYPE VARCHAR, Nationality VARCHAR)"}, {"answer": "SELECT Name FROM ship WHERE Nationality <> \"United States\"", "question": "List the name of ships whose nationality is not \"United States\".", "context": "CREATE TABLE ship (Name VARCHAR, Nationality VARCHAR)"}, {"answer": "SELECT Name FROM ship WHERE Nationality = \"United States\" OR Nationality = \"United Kingdom\"", "question": "Show the name of ships whose nationality is either United States or United Kingdom.", "context": "CREATE TABLE ship (Name VARCHAR, Nationality VARCHAR)"}, {"answer": "SELECT Name FROM ship ORDER BY Tonnage DESC LIMIT 1", "question": "What is the name of the ship with the largest tonnage?", "context": "CREATE TABLE ship (Name VARCHAR, Tonnage VARCHAR)"}, {"answer": "SELECT TYPE, COUNT(*) FROM ship GROUP BY TYPE", "question": "Show different types of ships and the number of ships of each type.", "context": "CREATE TABLE ship (TYPE VARCHAR)"}, {"answer": "SELECT TYPE FROM ship GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1", "question": "Please show the most common type of ships.", "context": "CREATE TABLE ship (TYPE VARCHAR)"}, {"answer": "SELECT Nationality FROM ship GROUP BY Nationality HAVING COUNT(*) > 2", "question": "List the nations that have more than two ships.", "context": "CREATE TABLE ship (Nationality VARCHAR)"}, {"answer": "SELECT TYPE, AVG(Tonnage) FROM ship GROUP BY TYPE", "question": "Show different types of ships and the average tonnage of ships of each type.", "context": "CREATE TABLE ship (TYPE VARCHAR, Tonnage INTEGER)"}, {"answer": "SELECT T1.Code, T1.Fate, T2.Name FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID", "question": "Show codes and fates of missions, and names of ships involved.", "context": "CREATE TABLE mission (Code VARCHAR, Fate VARCHAR, Ship_ID VARCHAR); CREATE TABLE ship (Name VARCHAR, Ship_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID WHERE T1.Launched_Year > 1928", "question": "Show names of ships involved in a mission launched after 1928.", "context": "CREATE TABLE mission (Ship_ID VARCHAR, Launched_Year INTEGER); CREATE TABLE ship (Name VARCHAR, Ship_ID VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Fate FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID WHERE T2.Nationality = \"United States\"", "question": "Show the distinct fate of missions that involve ships with nationality \"United States\"", "context": "CREATE TABLE mission (Fate VARCHAR, Ship_ID VARCHAR); CREATE TABLE ship (Ship_ID VARCHAR, Nationality VARCHAR)"}, {"answer": "SELECT Name FROM ship WHERE NOT Ship_ID IN (SELECT Ship_ID FROM mission)", "question": "List the name of ships that are not involved in any mission", "context": "CREATE TABLE mission (Name VARCHAR, Ship_ID VARCHAR); CREATE TABLE ship (Name VARCHAR, Ship_ID VARCHAR)"}, {"answer": "SELECT TYPE FROM ship WHERE Tonnage > 6000 INTERSECT SELECT TYPE FROM ship WHERE Tonnage < 4000", "question": "Show the types of ships that have both ships with tonnage larger than 6000 and ships with tonnage smaller than 4000.", "context": "CREATE TABLE ship (TYPE VARCHAR, Tonnage INTEGER)"}, {"answer": "SELECT COUNT(*) FROM list", "question": "Find the number of students in total.", "context": "CREATE TABLE list (Id VARCHAR)"}, {"answer": "SELECT lastname FROM list WHERE classroom = 111", "question": "Find the last names of students studying in room 111.", "context": "CREATE TABLE list (lastname VARCHAR, classroom VARCHAR)"}, {"answer": "SELECT firstname FROM list WHERE classroom = 108", "question": "Find the first names of students studying in room 108.", "context": "CREATE TABLE list (firstname VARCHAR, classroom VARCHAR)"}, {"answer": "SELECT DISTINCT firstname FROM list WHERE classroom = 107", "question": "What are the first names of students studying in room 107?", "context": "CREATE TABLE list (firstname VARCHAR, classroom VARCHAR)"}, {"answer": "SELECT DISTINCT classroom, grade FROM list", "question": "For each classroom report the grade that is taught in it. Report just the classroom number and the grade number.", "context": "CREATE TABLE list (classroom VARCHAR, grade VARCHAR)"}, {"answer": "SELECT DISTINCT grade FROM list WHERE classroom = 103", "question": "Which grade is studying in classroom 103?", "context": "CREATE TABLE list (grade VARCHAR, classroom VARCHAR)"}, {"answer": "SELECT DISTINCT grade FROM list WHERE classroom = 105", "question": "Find the grade studying in room 105.", "context": "CREATE TABLE list (grade VARCHAR, classroom VARCHAR)"}, {"answer": "SELECT DISTINCT classroom FROM list WHERE grade = 4", "question": "Which classrooms are used by grade 4?", "context": "CREATE TABLE list (classroom VARCHAR, grade VARCHAR)"}, {"answer": "SELECT DISTINCT classroom FROM list WHERE grade = 5", "question": "Which classrooms are used by grade 5?", "context": "CREATE TABLE list (classroom VARCHAR, grade VARCHAR)"}, {"answer": "SELECT DISTINCT T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 5", "question": "Find the last names of the teachers that teach fifth grade.", "context": "CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (lastname VARCHAR, classroom VARCHAR)"}, {"answer": "SELECT DISTINCT T2.firstname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 1", "question": "Find the first names of the teachers that teach first grade.", "context": "CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (firstname VARCHAR, classroom VARCHAR)"}, {"answer": "SELECT firstname FROM teachers WHERE classroom = 110", "question": "Find the first names of all the teachers that teach in classroom 110.", "context": "CREATE TABLE teachers (firstname VARCHAR, classroom VARCHAR)"}, {"answer": "SELECT lastname FROM teachers WHERE classroom = 109", "question": "Find the last names of teachers teaching in classroom 109.", "context": "CREATE TABLE teachers (lastname VARCHAR, classroom VARCHAR)"}, {"answer": "SELECT DISTINCT firstname, lastname FROM teachers", "question": "Report the first name and last name of all the teachers.", "context": "CREATE TABLE teachers (firstname VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT DISTINCT firstname, lastname FROM list", "question": "Report the first name and last name of all the students.", "context": "CREATE TABLE list (firstname VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT T1.firstname, T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = \"OTHA\" AND T2.lastname = \"MOYER\"", "question": "Find all students taught by OTHA MOYER. Output the first and last names of the students.", "context": "CREATE TABLE list (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT T1.firstname, T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = \"MARROTTE\" AND T2.lastname = \"KIRK\"", "question": "Find all students taught by MARROTTE KIRK. Output first and last names of students.", "context": "CREATE TABLE list (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT T2.firstname, T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = \"EVELINA\" AND T1.lastname = \"BROMLEY\"", "question": "Find the first and last name of all the teachers that teach EVELINA BROMLEY.", "context": "CREATE TABLE teachers (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR); CREATE TABLE list (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = \"GELL\" AND T1.lastname = \"TAMI\"", "question": "Find the last names of all the teachers that teach GELL TAMI.", "context": "CREATE TABLE teachers (lastname VARCHAR, classroom VARCHAR); CREATE TABLE list (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = \"LORIA\" AND T2.lastname = \"ONDERSMA\"", "question": "How many students does LORIA ONDERSMA teaches?", "context": "CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = \"KAWA\" AND T2.lastname = \"GORDON\"", "question": "How many students does KAWA GORDON teaches?", "context": "CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = \"TARRING\" AND T2.lastname = \"LEIA\"", "question": "Find the number of students taught by TARRING LEIA.", "context": "CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = \"CHRISSY\" AND T1.lastname = \"NABOZNY\"", "question": "How many teachers does the student named CHRISSY NABOZNY have?", "context": "CREATE TABLE teachers (classroom VARCHAR); CREATE TABLE list (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = \"MADLOCK\" AND T1.lastname = \"RAY\"", "question": "How many teachers does the student named MADLOCK RAY have?", "context": "CREATE TABLE teachers (classroom VARCHAR); CREATE TABLE list (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT DISTINCT T1.firstname, T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.grade = 1 EXCEPT SELECT T1.firstname, T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = \"OTHA\" AND T2.lastname = \"MOYER\"", "question": "Find all first-grade students who are NOT taught by OTHA MOYER. Report their first and last names.", "context": "CREATE TABLE list (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR, grade VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT DISTINCT T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.grade = 3 AND T2.firstname <> \"COVIN\" AND T2.lastname <> \"JEROME\"", "question": "Find the last names of the students in third grade that are not taught by COVIN JEROME.", "context": "CREATE TABLE list (lastname VARCHAR, classroom VARCHAR, grade VARCHAR); CREATE TABLE teachers (classroom VARCHAR, lastname VARCHAR, firstname VARCHAR)"}, {"answer": "SELECT grade, COUNT(DISTINCT classroom), COUNT(*) FROM list GROUP BY grade", "question": "For each grade, report the grade, the number of classrooms in which it is taught and the total number of students in the grade.", "context": "CREATE TABLE list (grade VARCHAR, classroom VARCHAR)"}, {"answer": "SELECT classroom, COUNT(DISTINCT grade) FROM list GROUP BY classroom", "question": "For each classroom, report the classroom number and the number of grades using it.", "context": "CREATE TABLE list (classroom VARCHAR, grade VARCHAR)"}, {"answer": "SELECT classroom FROM list GROUP BY classroom ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which classroom has the most students?", "context": "CREATE TABLE list (classroom VARCHAR)"}, {"answer": "SELECT classroom, COUNT(*) FROM list GROUP BY classroom", "question": "Report the number of students in each classroom.", "context": "CREATE TABLE list (classroom VARCHAR)"}, {"answer": "SELECT classroom, COUNT(*) FROM list WHERE grade = \"0\" GROUP BY classroom", "question": "For each grade 0 classroom, report the total number of students.", "context": "CREATE TABLE list (classroom VARCHAR, grade VARCHAR)"}, {"answer": "SELECT classroom, COUNT(*) FROM list WHERE grade = \"4\" GROUP BY classroom", "question": "Report the total number of students for each fourth-grade classroom.", "context": "CREATE TABLE list (classroom VARCHAR, grade VARCHAR)"}, {"answer": "SELECT T2.firstname, T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom GROUP BY T2.firstname, T2.lastname ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of the teacher who teaches the largest number of students.", "context": "CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR)"}, {"answer": "SELECT COUNT(*), classroom FROM list GROUP BY classroom", "question": "Find the number of students in one classroom.", "context": "CREATE TABLE list (classroom VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM company WHERE Headquarters = 'USA'", "question": "How many companies are headquartered in the US?", "context": "CREATE TABLE company (Headquarters VARCHAR)"}, {"answer": "SELECT Name FROM company ORDER BY Sales_in_Billion", "question": "List the names of companies by ascending number of sales.", "context": "CREATE TABLE company (Name VARCHAR, Sales_in_Billion VARCHAR)"}, {"answer": "SELECT Headquarters, Industry FROM company", "question": "What are the headquarters and industries of all companies?", "context": "CREATE TABLE company (Headquarters VARCHAR, Industry VARCHAR)"}, {"answer": "SELECT Name FROM company WHERE Industry = \"Banking\" OR Industry = \"Retailing\"", "question": "Show the names of companies in the banking or retailing industry?", "context": "CREATE TABLE company (Name VARCHAR, Industry VARCHAR)"}, {"answer": "SELECT MAX(Market_Value_in_Billion), MIN(Market_Value_in_Billion) FROM company", "question": "What is the maximum and minimum market value of companies?", "context": "CREATE TABLE company (Market_Value_in_Billion INTEGER)"}, {"answer": "SELECT Headquarters FROM company ORDER BY Sales_in_Billion DESC LIMIT 1", "question": "What is the headquarter of the company with the largest sales?", "context": "CREATE TABLE company (Headquarters VARCHAR, Sales_in_Billion VARCHAR)"}, {"answer": "SELECT Headquarters, COUNT(*) FROM company GROUP BY Headquarters", "question": "Show the different headquarters and number of companies at each headquarter.", "context": "CREATE TABLE company (Headquarters VARCHAR)"}, {"answer": "SELECT Headquarters FROM company GROUP BY Headquarters ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most common headquarter for companies.", "context": "CREATE TABLE company (Headquarters VARCHAR)"}, {"answer": "SELECT Headquarters FROM company GROUP BY Headquarters HAVING COUNT(*) >= 2", "question": "Show the headquarters that have at least two companies.", "context": "CREATE TABLE company (Headquarters VARCHAR)"}, {"answer": "SELECT Headquarters FROM company WHERE Industry = \"Banking\" INTERSECT SELECT Headquarters FROM company WHERE Industry = \"Oil and gas\"", "question": "Show the headquarters that have both companies in banking industry and companies in oil and gas industry.", "context": "CREATE TABLE company (Headquarters VARCHAR, Industry VARCHAR)"}, {"answer": "SELECT T3.Name, T2.Name FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID", "question": "Show the names of companies and of employees.", "context": "CREATE TABLE company (Name VARCHAR, Company_ID VARCHAR); CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T3.Name, T2.Name FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID ORDER BY T1.Year_working", "question": "Show names of companies and that of employees in descending order of number of years working for that employee.", "context": "CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE company (Name VARCHAR, Company_ID VARCHAR); CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR, Year_working VARCHAR)"}, {"answer": "SELECT T2.Name FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID WHERE T3.Sales_in_Billion > 200", "question": "Show the names of employees that work for companies with sales bigger than 200.", "context": "CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR); CREATE TABLE company (Company_ID VARCHAR, Sales_in_Billion INTEGER); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T3.Name, COUNT(*) FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID GROUP BY T3.Name", "question": "Show the names of companies and the number of employees they have", "context": "CREATE TABLE company (Name VARCHAR, Company_ID VARCHAR); CREATE TABLE people (People_ID VARCHAR); CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR)"}, {"answer": "SELECT Name FROM people WHERE NOT People_ID IN (SELECT People_ID FROM employment)", "question": "List the names of people that are not employed by any company", "context": "CREATE TABLE employment (Name VARCHAR, People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT name FROM company WHERE Sales_in_Billion > 200 ORDER BY Sales_in_Billion, Profits_in_Billion DESC", "question": "list the names of the companies with more than 200 sales in the descending order of sales and profits.", "context": "CREATE TABLE company (name VARCHAR, Sales_in_Billion INTEGER, Profits_in_Billion VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM film", "question": "How many film are there?", "context": "CREATE TABLE film (Id VARCHAR)"}, {"answer": "SELECT DISTINCT Director FROM film", "question": "List the distinct director of all films.", "context": "CREATE TABLE film (Director VARCHAR)"}, {"answer": "SELECT AVG(Gross_in_dollar) FROM film", "question": "What is the average ticket sales gross in dollars of films?", "context": "CREATE TABLE film (Gross_in_dollar INTEGER)"}, {"answer": "SELECT Low_Estimate, High_Estimate FROM film_market_estimation", "question": "What are the low and high estimates of film markets?", "context": "CREATE TABLE film_market_estimation (Low_Estimate VARCHAR, High_Estimate VARCHAR)"}, {"answer": "SELECT TYPE FROM film_market_estimation WHERE YEAR = 1995", "question": "What are the types of film market estimations in year 1995?", "context": "CREATE TABLE film_market_estimation (TYPE VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT MAX(Number_cities), MIN(Number_cities) FROM market", "question": "What are the maximum and minimum number of cities in all markets.", "context": "CREATE TABLE market (Number_cities INTEGER)"}, {"answer": "SELECT COUNT(*) FROM market WHERE Number_cities < 300", "question": "How many markets have number of cities smaller than 300?", "context": "CREATE TABLE market (Number_cities INTEGER)"}, {"answer": "SELECT Country FROM market ORDER BY Country", "question": "List all countries of markets in ascending alphabetical order.", "context": "CREATE TABLE market (Country VARCHAR)"}, {"answer": "SELECT Country FROM market ORDER BY Number_cities DESC", "question": "List all countries of markets in descending order of number of cities.", "context": "CREATE TABLE market (Country VARCHAR, Number_cities VARCHAR)"}, {"answer": "SELECT T1.Title, T2.Type FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_ID", "question": "Please show the titles of films and the types of market estimations.", "context": "CREATE TABLE film (Title VARCHAR, Film_ID VARCHAR); CREATE TABLE film_market_estimation (Type VARCHAR, Film_ID VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Director FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_ID WHERE T2.Year = 1995", "question": "Show the distinct director of films with market estimation in the year of 1995.", "context": "CREATE TABLE film (Director VARCHAR, Film_ID VARCHAR); CREATE TABLE film_market_estimation (Film_ID VARCHAR, Year VARCHAR)"}, {"answer": "SELECT AVG(T2.Number_cities) FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID WHERE T1.Low_Estimate > 10000", "question": "What is the average number of cities of markets with low film market estimate bigger than 10000?", "context": "CREATE TABLE market (Number_cities INTEGER, Market_ID VARCHAR); CREATE TABLE film_market_estimation (Market_ID VARCHAR, Low_Estimate INTEGER)"}, {"answer": "SELECT T2.Country, T1.Year FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID", "question": "Please list the countries and years of film market estimations.", "context": "CREATE TABLE film_market_estimation (Year VARCHAR, Market_ID VARCHAR); CREATE TABLE market (Country VARCHAR, Market_ID VARCHAR)"}, {"answer": "SELECT T1.Year FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID WHERE T2.Country = \"Japan\" ORDER BY T1.Year DESC", "question": "Please list the years of film market estimations when the market is in country \"Japan\" in descending order.", "context": "CREATE TABLE film_market_estimation (Year VARCHAR, Market_ID VARCHAR); CREATE TABLE market (Market_ID VARCHAR, Country VARCHAR)"}, {"answer": "SELECT Studio, COUNT(*) FROM film GROUP BY Studio", "question": "List the studios of each film and the number of films produced by that studio.", "context": "CREATE TABLE film (Studio VARCHAR)"}, {"answer": "SELECT Studio FROM film GROUP BY Studio ORDER BY COUNT(*) DESC LIMIT 1", "question": "List the name of film studio that have the most number of films.", "context": "CREATE TABLE film (Studio VARCHAR)"}, {"answer": "SELECT Studio FROM film GROUP BY Studio HAVING COUNT(*) >= 2", "question": "List the names of studios that have at least two films.", "context": "CREATE TABLE film (Studio VARCHAR)"}, {"answer": "SELECT Title FROM film WHERE NOT Film_ID IN (SELECT Film_ID FROM film_market_estimation)", "question": "List the title of films that do not have any market estimation.", "context": "CREATE TABLE film_market_estimation (Title VARCHAR, Film_ID VARCHAR); CREATE TABLE film (Title VARCHAR, Film_ID VARCHAR)"}, {"answer": "SELECT Studio FROM film WHERE Director = \"Nicholas Meyer\" INTERSECT SELECT Studio FROM film WHERE Director = \"Walter Hill\"", "question": "Show the studios that have produced films with director \"Nicholas Meyer\" and \"Walter Hill\".", "context": "CREATE TABLE film (Studio VARCHAR, Director VARCHAR)"}, {"answer": "SELECT title, Studio FROM film WHERE Studio LIKE \"%Universal%\"", "question": "Find the titles and studios of the films that are produced by some film studios that contained the word \"Universal\".", "context": "CREATE TABLE film (title VARCHAR, Studio VARCHAR)"}, {"answer": "SELECT Studio FROM film EXCEPT SELECT Studio FROM film WHERE Director = \"Walter Hill\"", "question": "Show the studios that have not produced films with director \"Walter Hill\".", "context": "CREATE TABLE film (Studio VARCHAR, Director VARCHAR)"}, {"answer": "SELECT Studio FROM film GROUP BY Studio HAVING AVG(Gross_in_dollar) >= 4500000", "question": "List the studios which average gross is above 4500000.", "context": "CREATE TABLE film (Studio VARCHAR, Gross_in_dollar INTEGER)"}, {"answer": "SELECT t1.title FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_ID ORDER BY high_estimate DESC LIMIT 1", "question": "What is the title of the film that has the highest high market estimation.", "context": "CREATE TABLE film_market_estimation (Film_ID VARCHAR); CREATE TABLE film (Film_ID VARCHAR)"}, {"answer": "SELECT title, director FROM film WHERE NOT film_id IN (SELECT film_id FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.market_id = T2.Market_ID WHERE country = 'China')", "question": "What are the titles and directors of the films were never presented in China?", "context": "CREATE TABLE film (title VARCHAR, director VARCHAR, film_id VARCHAR, country VARCHAR); CREATE TABLE market (Market_ID VARCHAR); CREATE TABLE film_market_estimation (market_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Ref_calendar", "question": "How many calendar items do we have?", "context": "CREATE TABLE Ref_calendar (Id VARCHAR)"}, {"answer": "SELECT calendar_date, day_Number FROM Ref_calendar", "question": "Show all calendar dates and day Numbers.", "context": "CREATE TABLE Ref_calendar (calendar_date VARCHAR, day_Number VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Ref_document_types", "question": "Show the number of document types.", "context": "CREATE TABLE Ref_document_types (Id VARCHAR)"}, {"answer": "SELECT document_type_code, document_type_name FROM Ref_document_types", "question": "List all document type codes and document type names.", "context": "CREATE TABLE Ref_document_types (document_type_code VARCHAR, document_type_name VARCHAR)"}, {"answer": "SELECT document_type_name, document_type_description FROM Ref_document_types WHERE document_type_code = \"RV\"", "question": "What is the name and description for document type code RV?", "context": "CREATE TABLE Ref_document_types (document_type_name VARCHAR, document_type_description VARCHAR, document_type_code VARCHAR)"}, {"answer": "SELECT document_type_code FROM Ref_document_types WHERE document_type_name = \"Paper\"", "question": "What is the document type code for document type \"Paper\"?", "context": "CREATE TABLE Ref_document_types (document_type_code VARCHAR, document_type_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM All_documents WHERE document_type_code = \"CV\" OR document_type_code = \"BK\"", "question": "Show the number of documents with document type code CV or BK.", "context": "CREATE TABLE All_documents (document_type_code VARCHAR)"}, {"answer": "SELECT date_stored FROM All_documents WHERE Document_name = \"Marry CV\"", "question": "What is the date when the document \"Marry CV\" was stored?", "context": "CREATE TABLE All_documents (date_stored VARCHAR, Document_name VARCHAR)"}, {"answer": "SELECT T2.day_Number, T1.Date_Stored FROM All_documents AS T1 JOIN Ref_calendar AS T2 ON T1.date_stored = T2.calendar_date", "question": "What is the day Number and date of all the documents?", "context": "CREATE TABLE All_documents (Date_Stored VARCHAR, date_stored VARCHAR); CREATE TABLE Ref_calendar (day_Number VARCHAR, calendar_date VARCHAR)"}, {"answer": "SELECT T2.document_type_name FROM All_documents AS T1 JOIN Ref_document_types AS T2 ON T1.document_type_code = T2.document_type_code WHERE T1.document_name = \"How to read a book\"", "question": "What is the document type name for the document with name \"How to read a book\"?", "context": "CREATE TABLE Ref_document_types (document_type_name VARCHAR, document_type_code VARCHAR); CREATE TABLE All_documents (document_type_code VARCHAR, document_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Ref_locations", "question": "Show the number of locations.", "context": "CREATE TABLE Ref_locations (Id VARCHAR)"}, {"answer": "SELECT location_code, location_name FROM Ref_locations", "question": "List all location codes and location names.", "context": "CREATE TABLE Ref_locations (location_code VARCHAR, location_name VARCHAR)"}, {"answer": "SELECT location_name, location_description FROM Ref_locations WHERE location_code = \"x\"", "question": "What are the name and description for location code x?", "context": "CREATE TABLE Ref_locations (location_name VARCHAR, location_description VARCHAR, location_code VARCHAR)"}, {"answer": "SELECT location_code FROM Ref_locations WHERE location_name = \"Canada\"", "question": "What is the location code for the country \"Canada\"?", "context": "CREATE TABLE Ref_locations (location_code VARCHAR, location_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM ROLES", "question": "How many roles are there?", "context": "CREATE TABLE ROLES (Id VARCHAR)"}, {"answer": "SELECT role_code, role_name, role_description FROM ROLES", "question": "List all role codes, role names, and role descriptions.", "context": "CREATE TABLE ROLES (role_code VARCHAR, role_name VARCHAR, role_description VARCHAR)"}, {"answer": "SELECT role_name, role_description FROM ROLES WHERE role_code = \"MG\"", "question": "What are the name and description for role code \"MG\"?", "context": "CREATE TABLE ROLES (role_name VARCHAR, role_description VARCHAR, role_code VARCHAR)"}, {"answer": "SELECT role_description FROM ROLES WHERE role_name = \"Proof Reader\"", "question": "Show the description for role name \"Proof Reader\".", "context": "CREATE TABLE ROLES (role_description VARCHAR, role_name VARCHAR)"}, {"answer": "SELECT employee_name, role_code, date_of_birth FROM Employees WHERE employee_Name = 'Armani'", "question": "Show the name, role code, and date of birth for the employee with name 'Armani'.", "context": "CREATE TABLE Employees (employee_name VARCHAR, role_code VARCHAR, date_of_birth VARCHAR, employee_Name VARCHAR)"}, {"answer": "SELECT employee_ID FROM Employees WHERE employee_name = \"Ebba\"", "question": "What is the id for the employee called Ebba?", "context": "CREATE TABLE Employees (employee_ID VARCHAR, employee_name VARCHAR)"}, {"answer": "SELECT employee_name FROM Employees WHERE role_code = \"HR\"", "question": "Show the names of all the employees with role \"HR\".", "context": "CREATE TABLE Employees (employee_name VARCHAR, role_code VARCHAR)"}, {"answer": "SELECT role_code, COUNT(*) FROM Employees GROUP BY role_code", "question": "Show all role codes and the number of employees in each role.", "context": "CREATE TABLE Employees (role_code VARCHAR)"}, {"answer": "SELECT role_code FROM Employees GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the role code with the largest number of employees?", "context": "CREATE TABLE Employees (role_code VARCHAR)"}, {"answer": "SELECT role_code FROM Employees GROUP BY role_code HAVING COUNT(*) >= 3", "question": "Show all role codes with at least 3 employees.", "context": "CREATE TABLE Employees (role_code VARCHAR)"}, {"answer": "SELECT role_code FROM Employees GROUP BY role_code ORDER BY COUNT(*) LIMIT 1", "question": "Show the role code with the least employees.", "context": "CREATE TABLE Employees (role_code VARCHAR)"}, {"answer": "SELECT T2.role_name, T2.role_description FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T1.employee_name = \"Ebba\"", "question": "What is the role name and role description for employee called Ebba?", "context": "CREATE TABLE Employees (role_code VARCHAR, employee_name VARCHAR); CREATE TABLE ROLES (role_name VARCHAR, role_description VARCHAR, role_code VARCHAR)"}, {"answer": "SELECT T1.employee_name FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T2.role_name = \"Editor\"", "question": "Show the names of employees with role name Editor.", "context": "CREATE TABLE ROLES (role_code VARCHAR, role_name VARCHAR); CREATE TABLE Employees (employee_name VARCHAR, role_code VARCHAR)"}, {"answer": "SELECT T1.employee_id FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T2.role_name = \"Human Resource\" OR T2.role_name = \"Manager\"", "question": "Show the employee ids for all employees with role name \"Human Resource\" or \"Manager\".", "context": "CREATE TABLE Employees (employee_id VARCHAR, role_code VARCHAR); CREATE TABLE ROLES (role_code VARCHAR, role_name VARCHAR)"}, {"answer": "SELECT DISTINCT location_code FROM Document_locations", "question": "What are the different location codes for documents?", "context": "CREATE TABLE Document_locations (location_code VARCHAR)"}, {"answer": "SELECT T3.location_name FROM All_documents AS T1 JOIN Document_locations AS T2 ON T1.document_id = T2.document_id JOIN Ref_locations AS T3 ON T2.location_code = T3.location_code WHERE T1.document_name = \"Robin CV\"", "question": "Show the location name for document \"Robin CV\".", "context": "CREATE TABLE Ref_locations (location_name VARCHAR, location_code VARCHAR); CREATE TABLE All_documents (document_id VARCHAR, document_name VARCHAR); CREATE TABLE Document_locations (document_id VARCHAR, location_code VARCHAR)"}, {"answer": "SELECT location_code, date_in_location_from, date_in_locaton_to FROM Document_locations", "question": "Show the location code, the starting date and ending data in that location for all the documents.", "context": "CREATE TABLE Document_locations (location_code VARCHAR, date_in_location_from VARCHAR, date_in_locaton_to VARCHAR)"}, {"answer": "SELECT T1.date_in_location_from, T1.date_in_locaton_to FROM Document_locations AS T1 JOIN All_documents AS T2 ON T1.document_id = T2.document_id WHERE T2.document_name = \"Robin CV\"", "question": "What is \"the date in location from\" and \"the date in location to\" for the document with name \"Robin CV\"?", "context": "CREATE TABLE All_documents (document_id VARCHAR, document_name VARCHAR); CREATE TABLE Document_locations (date_in_location_from VARCHAR, date_in_locaton_to VARCHAR, document_id VARCHAR)"}, {"answer": "SELECT location_code, COUNT(*) FROM Document_locations GROUP BY location_code", "question": "Show the location codes and the number of documents in each location.", "context": "CREATE TABLE Document_locations (location_code VARCHAR)"}, {"answer": "SELECT location_code FROM Document_locations GROUP BY location_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the location code with the most documents?", "context": "CREATE TABLE Document_locations (location_code VARCHAR)"}, {"answer": "SELECT location_code FROM Document_locations GROUP BY location_code HAVING COUNT(*) >= 3", "question": "Show the location codes with at least 3 documents.", "context": "CREATE TABLE Document_locations (location_code VARCHAR)"}, {"answer": "SELECT T2.location_name, T1.location_code FROM Document_locations AS T1 JOIN Ref_locations AS T2 ON T1.location_code = T2.location_code GROUP BY T1.location_code ORDER BY COUNT(*) LIMIT 1", "question": "Show the location name and code with the least documents.", "context": "CREATE TABLE Document_locations (location_code VARCHAR); CREATE TABLE Ref_locations (location_name VARCHAR, location_code VARCHAR)"}, {"answer": "SELECT T2.employee_name, T3.employee_name FROM Documents_to_be_destroyed AS T1 JOIN Employees AS T2 ON T1.Destruction_Authorised_by_Employee_ID = T2.employee_id JOIN Employees AS T3 ON T1.Destroyed_by_Employee_ID = T3.employee_id", "question": "What are the names of the employees who authorised the destruction and the employees who destroyed the corresponding documents?", "context": "CREATE TABLE Employees (employee_name VARCHAR, employee_id VARCHAR); CREATE TABLE Documents_to_be_destroyed (Destruction_Authorised_by_Employee_ID VARCHAR, Destroyed_by_Employee_ID VARCHAR)"}, {"answer": "SELECT Destruction_Authorised_by_Employee_ID, COUNT(*) FROM Documents_to_be_destroyed GROUP BY Destruction_Authorised_by_Employee_ID", "question": "Show the id of each employee and the number of document destruction authorised by that employee.", "context": "CREATE TABLE Documents_to_be_destroyed (Destruction_Authorised_by_Employee_ID VARCHAR)"}, {"answer": "SELECT Destroyed_by_Employee_ID, COUNT(*) FROM Documents_to_be_destroyed GROUP BY Destroyed_by_Employee_ID", "question": "Show the employee ids and the number of documents destroyed by each employee.", "context": "CREATE TABLE Documents_to_be_destroyed (Destroyed_by_Employee_ID VARCHAR)"}, {"answer": "SELECT employee_id FROM Employees EXCEPT SELECT Destruction_Authorised_by_Employee_ID FROM Documents_to_be_destroyed", "question": "Show the ids of the employees who don't authorize destruction for any document.", "context": "CREATE TABLE Documents_to_be_destroyed (employee_id VARCHAR, Destruction_Authorised_by_Employee_ID VARCHAR); CREATE TABLE Employees (employee_id VARCHAR, Destruction_Authorised_by_Employee_ID VARCHAR)"}, {"answer": "SELECT DISTINCT Destruction_Authorised_by_Employee_ID FROM Documents_to_be_destroyed", "question": "Show the ids of all employees who have authorized destruction.", "context": "CREATE TABLE Documents_to_be_destroyed (Destruction_Authorised_by_Employee_ID VARCHAR)"}, {"answer": "SELECT DISTINCT Destroyed_by_Employee_ID FROM Documents_to_be_destroyed", "question": "Show the ids of all employees who have destroyed a document.", "context": "CREATE TABLE Documents_to_be_destroyed (Destroyed_by_Employee_ID VARCHAR)"}, {"answer": "SELECT employee_id FROM Employees EXCEPT SELECT Destroyed_by_Employee_ID FROM Documents_to_be_destroyed", "question": "Show the ids of all employees who don't destroy any document.", "context": "CREATE TABLE Employees (employee_id VARCHAR, Destroyed_by_Employee_ID VARCHAR); CREATE TABLE Documents_to_be_destroyed (employee_id VARCHAR, Destroyed_by_Employee_ID VARCHAR)"}, {"answer": "SELECT Destroyed_by_Employee_ID FROM Documents_to_be_destroyed UNION SELECT Destruction_Authorised_by_Employee_ID FROM Documents_to_be_destroyed", "question": "Show the ids of all employees who have either destroyed a document or made an authorization to do this.", "context": "CREATE TABLE Documents_to_be_destroyed (Destroyed_by_Employee_ID VARCHAR, Destruction_Authorised_by_Employee_ID VARCHAR)"}, {"answer": "SELECT clubname FROM club", "question": "What are the names of all clubs?", "context": "CREATE TABLE club (clubname VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM student", "question": "How many students are there?", "context": "CREATE TABLE student (Id VARCHAR)"}, {"answer": "SELECT DISTINCT fname FROM student", "question": "What are the first names of all the students?", "context": "CREATE TABLE student (fname VARCHAR)"}, {"answer": "SELECT t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Bootup Baltimore\"", "question": "Find the last names of the members of the club \"Bootup Baltimore\".", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (lname VARCHAR, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)"}, {"answer": "SELECT t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Hopkins Student Enterprises\"", "question": "Who are the members of the club named \"Hopkins Student Enterprises\"? Show the last name.", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (lname VARCHAR, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Tennis Club\"", "question": "How many members does the club \"Tennis Club\" has?", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE student (stuid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Pen and Paper Gaming\"", "question": "Find the number of members of club \"Pen and Paper Gaming\".", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE student (stuid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = \"Linda\" AND t3.lname = \"Smith\"", "question": "How many clubs does \"Linda Smith\" belong to?", "context": "CREATE TABLE student (stuid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = \"Tracy\" AND t3.lname = \"Kim\"", "question": "Find the number of clubs where \"Tracy Kim\" is a member.", "context": "CREATE TABLE student (stuid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubid VARCHAR)"}, {"answer": "SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Bootup Baltimore\" AND t3.sex = \"F\"", "question": "Find all the female members of club \"Bootup Baltimore\". Show the first name and last name.", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR, sex VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)"}, {"answer": "SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Hopkins Student Enterprises\" AND t3.sex = \"M\"", "question": "Find all the male members of club \"Hopkins Student Enterprises\". Show the first name and last name.", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR, sex VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)"}, {"answer": "SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Bootup Baltimore\" AND t3.major = \"600\"", "question": "Find all members of \"Bootup Baltimore\" whose major is \"600\". Show the first name and last name.", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR, major VARCHAR)"}, {"answer": "SELECT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.major = \"600\" GROUP BY t1.clubname ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which club has the most members majoring in \"600\"?", "context": "CREATE TABLE student (stuid VARCHAR, major VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubname VARCHAR, clubid VARCHAR)"}, {"answer": "SELECT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.sex = \"F\" GROUP BY t1.clubname ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of the club that has the most female students.", "context": "CREATE TABLE student (stuid VARCHAR, sex VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubname VARCHAR, clubid VARCHAR)"}, {"answer": "SELECT clubdesc FROM club WHERE clubname = \"Tennis Club\"", "question": "What is the description of the club named \"Tennis Club\"?", "context": "CREATE TABLE club (clubdesc VARCHAR, clubname VARCHAR)"}, {"answer": "SELECT clubdesc FROM club WHERE clubname = \"Pen and Paper Gaming\"", "question": "Find the description of the club \"Pen and Paper Gaming\".", "context": "CREATE TABLE club (clubdesc VARCHAR, clubname VARCHAR)"}, {"answer": "SELECT clublocation FROM club WHERE clubname = \"Tennis Club\"", "question": "What is the location of the club named \"Tennis Club\"?", "context": "CREATE TABLE club (clublocation VARCHAR, clubname VARCHAR)"}, {"answer": "SELECT clublocation FROM club WHERE clubname = \"Pen and Paper Gaming\"", "question": "Find the location of the club \"Pen and Paper Gaming\".", "context": "CREATE TABLE club (clublocation VARCHAR, clubname VARCHAR)"}, {"answer": "SELECT clublocation FROM club WHERE clubname = \"Hopkins Student Enterprises\"", "question": "Where is the club \"Hopkins Student Enterprises\" located?", "context": "CREATE TABLE club (clublocation VARCHAR, clubname VARCHAR)"}, {"answer": "SELECT clubname FROM club WHERE clublocation = \"AKW\"", "question": "Find the name of all the clubs at \"AKW\".", "context": "CREATE TABLE club (clubname VARCHAR, clublocation VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM club WHERE clublocation = \"HHH\"", "question": "How many clubs are located at \"HHH\"?", "context": "CREATE TABLE club (clublocation VARCHAR)"}, {"answer": "SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Bootup Baltimore\" AND t2.position = \"President\"", "question": "What are the first and last name of the president of the club \"Bootup Baltimore\"?", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR, position VARCHAR)"}, {"answer": "SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Hopkins Student Enterprises\" AND t2.position = \"CTO\"", "question": "Who is the \"CTO\" of club \"Hopkins Student Enterprises\"? Show the first name and last name.", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT t2.position) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid WHERE t1.clubname = \"Bootup Baltimore\"", "question": "How many different roles are there in the club \"Bootup Baltimore\"?", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE member_of_club (position VARCHAR, clubid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Bootup Baltimore\" AND t3.age > 18", "question": "How many members of \"Bootup Baltimore\" are older than 18?", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (stuid VARCHAR, age VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Bootup Baltimore\" AND t3.age < 18", "question": "How many members of club \"Bootup Baltimore\" are younger than 18?", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (stuid VARCHAR, age VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)"}, {"answer": "SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.city_code = \"BAL\"", "question": "Find the names of all the clubs that have at least a member from the city with city code \"BAL\".", "context": "CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubname VARCHAR, clubid VARCHAR); CREATE TABLE student (stuid VARCHAR, city_code VARCHAR)"}, {"answer": "SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.city_code = \"HOU\"", "question": "Find the names of the clubs that have at least a member from the city with city code \"HOU\".", "context": "CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubname VARCHAR, clubid VARCHAR); CREATE TABLE student (stuid VARCHAR, city_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT t1.clubname) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = \"Eric\" AND t3.lname = \"Tai\"", "question": "How many clubs does the student named \"Eric Tai\" belong to?", "context": "CREATE TABLE student (stuid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubname VARCHAR, clubid VARCHAR)"}, {"answer": "SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = \"Davis\" AND t3.lname = \"Steven\"", "question": "List the clubs having \"Davis Steven\" as a member.", "context": "CREATE TABLE student (stuid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubname VARCHAR, clubid VARCHAR)"}, {"answer": "SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.advisor = 1121", "question": "List the clubs that have at least a member with advisor \"1121\".", "context": "CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubname VARCHAR, clubid VARCHAR); CREATE TABLE student (stuid VARCHAR, advisor VARCHAR)"}, {"answer": "SELECT AVG(t3.age) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Bootup Baltimore\"", "question": "What is the average age of the members of the club \"Bootup Baltimore\"?", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)"}, {"answer": "SELECT AVG(t3.age) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Hopkins Student Enterprises\"", "question": "Find the average age of members of the club \"Hopkins Student Enterprises\".", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)"}, {"answer": "SELECT AVG(t3.age) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Tennis Club\"", "question": "Retrieve the average age of members of the club \"Tennis Club\".", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)"}, {"answer": "SELECT T1.grant_amount FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id WHERE T2.sent_date < '1986-08-26 20:49:27' INTERSECT SELECT grant_amount FROM grants WHERE grant_end_date > '1989-03-16 18:27:16'", "question": "What are the distinct grant amount for the grants where the documents were sent before '1986-08-26 20:49:27' and grant were ended after '1989-03-16 18:27:16'?", "context": "CREATE TABLE grants (grant_amount VARCHAR, grant_end_date INTEGER); CREATE TABLE Grants (grant_amount VARCHAR, grant_id VARCHAR); CREATE TABLE Documents (grant_id VARCHAR, sent_date INTEGER)"}, {"answer": "SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id WHERE T2.outcome_code = 'Paper' INTERSECT SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id WHERE T2.outcome_code = 'Patent'", "question": "List the project details of the project both producing patent and paper as outcomes.", "context": "CREATE TABLE Project_outcomes (project_id VARCHAR, outcome_code VARCHAR); CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR)"}, {"answer": "SELECT SUM(grant_amount) FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id JOIN organisation_Types AS T3 ON T2.organisation_type = T3.organisation_type WHERE T3.organisation_type_description = 'Research'", "question": "What is the total grant amount of the organisations described as research?", "context": "CREATE TABLE organisation_Types (organisation_type VARCHAR, organisation_type_description VARCHAR); CREATE TABLE Grants (organisation_id VARCHAR); CREATE TABLE Organisations (organisation_id VARCHAR, organisation_type VARCHAR)"}, {"answer": "SELECT date_from, date_to FROM Project_Staff WHERE project_id IN (SELECT project_id FROM Project_Staff GROUP BY project_id ORDER BY COUNT(*) DESC LIMIT 1) UNION SELECT date_from, date_to FROM Project_Staff WHERE role_code = 'leader'", "question": "List from which date and to which date these staff work: project staff of the project which hires the most staffs", "context": "CREATE TABLE Project_Staff (date_from VARCHAR, date_to VARCHAR, project_id VARCHAR, role_code VARCHAR)"}, {"answer": "SELECT T2.organisation_id, T2.organisation_details FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id GROUP BY T2.organisation_id HAVING SUM(T1.grant_amount) > 6000", "question": "Find the organisation ids and details of the organisations which are involved in", "context": "CREATE TABLE Grants (organisation_id VARCHAR, grant_amount INTEGER); CREATE TABLE Organisations (organisation_id VARCHAR, organisation_details VARCHAR)"}, {"answer": "SELECT T1.organisation_type, T1.organisation_id FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the organisation type and id of the organisation which has the most number of research staff?", "context": "CREATE TABLE Research_Staff (employer_organisation_id VARCHAR); CREATE TABLE Organisations (organisation_type VARCHAR, organisation_id VARCHAR)"}, {"answer": "SELECT T1.organisation_type FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_type ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which organisation type hires most research staff?", "context": "CREATE TABLE Research_Staff (employer_organisation_id VARCHAR); CREATE TABLE Organisations (organisation_type VARCHAR, organisation_id VARCHAR)"}, {"answer": "SELECT T1.sent_date FROM documents AS T1 JOIN Grants AS T2 ON T1.grant_id = T2.grant_id JOIN Organisations AS T3 ON T2.organisation_id = T3.organisation_id JOIN organisation_Types AS T4 ON T3.organisation_type = T4.organisation_type WHERE T2.grant_amount > 5000 AND T4.organisation_type_description = 'Research'", "question": "Find out the send dates of the documents with the grant amount of more than 5000 were granted by organisation type described", "context": "CREATE TABLE organisation_Types (organisation_type VARCHAR, organisation_type_description VARCHAR); CREATE TABLE Grants (grant_id VARCHAR, organisation_id VARCHAR, grant_amount VARCHAR); CREATE TABLE Organisations (organisation_id VARCHAR, organisation_type VARCHAR); CREATE TABLE documents (sent_date VARCHAR, grant_id VARCHAR)"}, {"answer": "SELECT T1.response_received_date FROM Documents AS T1 JOIN Document_Types AS T2 ON T1.document_type_code = T2.document_type_code JOIN Grants AS T3 ON T1.grant_id = T3.grant_id WHERE T2.document_description = 'Regular' OR T3.grant_amount > 100", "question": "What are the response received dates for the documents described as 'Regular' or granted with more than 100?", "context": "CREATE TABLE Documents (response_received_date VARCHAR, document_type_code VARCHAR, grant_id VARCHAR); CREATE TABLE Document_Types (document_type_code VARCHAR, document_description VARCHAR); CREATE TABLE Grants (grant_id VARCHAR, grant_amount VARCHAR)"}, {"answer": "SELECT project_details FROM Projects WHERE NOT project_id IN (SELECT project_id FROM Project_Staff WHERE role_code = 'researcher')", "question": "List the project details of the projects which did not hire any staff for a researcher role.", "context": "CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR, role_code VARCHAR); CREATE TABLE Project_Staff (project_details VARCHAR, project_id VARCHAR, role_code VARCHAR)"}, {"answer": "SELECT T1.task_details, T1.task_id, T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id WHERE T2.project_details = 'omnis' UNION SELECT T1.task_details, T1.task_id, T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id JOIN Project_outcomes AS T3 ON T2.project_id = T3.project_id GROUP BY T2.project_id HAVING COUNT(*) > 2", "question": "What are the task details, task id and project id for the projects which are detailed as 'omnis' or  have more than 2 outcomes?", "context": "CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR); CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Tasks (task_details VARCHAR, task_id VARCHAR, project_id VARCHAR)"}, {"answer": "SELECT date_from, date_to FROM Project_Staff WHERE role_code = 'researcher'", "question": "When do all the researcher role staff start to work, and when do they stop working?", "context": "CREATE TABLE Project_Staff (date_from VARCHAR, date_to VARCHAR, role_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT role_code) FROM Project_Staff", "question": "How many kinds of roles are there for the staff?", "context": "CREATE TABLE Project_Staff (role_code VARCHAR)"}, {"answer": "SELECT SUM(grant_amount), organisation_id FROM Grants GROUP BY organisation_id", "question": "What is the total amount of grants given by each organisations? Also list the organisation id.", "context": "CREATE TABLE Grants (organisation_id VARCHAR, grant_amount INTEGER)"}, {"answer": "SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id JOIN Research_outcomes AS T3 ON T2.outcome_code = T3.outcome_code WHERE T3.outcome_description LIKE '%Published%'", "question": "List the project details of the projects with the research outcome described with the substring 'Published'.", "context": "CREATE TABLE Research_outcomes (outcome_code VARCHAR, outcome_description VARCHAR); CREATE TABLE Project_outcomes (project_id VARCHAR, outcome_code VARCHAR); CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR)"}, {"answer": "SELECT T1.project_id, COUNT(*) FROM Project_Staff AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id ORDER BY COUNT(*)", "question": "How many staff does each project has? List the project id and the number in an ascending order.", "context": "CREATE TABLE Project_Staff (project_id VARCHAR); CREATE TABLE Projects (project_id VARCHAR)"}, {"answer": "SELECT role_description FROM Staff_Roles WHERE role_code = 'researcher'", "question": "What is the complete description of the researcher role.", "context": "CREATE TABLE Staff_Roles (role_description VARCHAR, role_code VARCHAR)"}, {"answer": "SELECT date_from FROM Project_Staff ORDER BY date_from LIMIT 1", "question": "When did the first staff for the projects started working?", "context": "CREATE TABLE Project_Staff (date_from VARCHAR)"}, {"answer": "SELECT T1.project_details, T1.project_id FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which project made the most number of outcomes? List the project details and the project id.", "context": "CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR)"}, {"answer": "SELECT project_details FROM Projects WHERE NOT project_id IN (SELECT project_id FROM Project_outcomes)", "question": "Which projects have no outcome? List the project details.", "context": "CREATE TABLE Project_outcomes (project_details VARCHAR, project_id VARCHAR); CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR)"}, {"answer": "SELECT T1.organisation_id, T1.organisation_type, T1.organisation_details FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which organisation hired the most number of research staff? List the organisation id, type and detail.", "context": "CREATE TABLE Organisations (organisation_id VARCHAR, organisation_type VARCHAR, organisation_details VARCHAR); CREATE TABLE Research_Staff (employer_organisation_id VARCHAR)"}, {"answer": "SELECT T1.role_description, T2.staff_id FROM Staff_Roles AS T1 JOIN Project_Staff AS T2 ON T1.role_code = T2.role_code JOIN Project_outcomes AS T3 ON T2.project_id = T3.project_id GROUP BY T2.staff_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the role description and the id of the project staff involved in most number of project outcomes?", "context": "CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Project_Staff (staff_id VARCHAR, role_code VARCHAR, project_id VARCHAR); CREATE TABLE Staff_Roles (role_description VARCHAR, role_code VARCHAR)"}, {"answer": "SELECT document_type_code FROM Document_Types WHERE document_description LIKE 'Initial%'", "question": "Which document type is described with the prefix 'Initial'?", "context": "CREATE TABLE Document_Types (document_type_code VARCHAR, document_description VARCHAR)"}, {"answer": "SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Regular' INTERSECT SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Initial Application'", "question": "For grants with both documents described as 'Regular' and documents described as 'Initial Application', list its start date.", "context": "CREATE TABLE Grants (grant_start_date VARCHAR, grant_id VARCHAR); CREATE TABLE Document_Types (document_type_code VARCHAR, document_description VARCHAR); CREATE TABLE Documents (grant_id VARCHAR, document_type_code VARCHAR)"}, {"answer": "SELECT grant_id, COUNT(*) FROM Documents GROUP BY grant_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "How many documents can one grant have at most? List the grant id and number.", "context": "CREATE TABLE Documents (grant_id VARCHAR)"}, {"answer": "SELECT T1.organisation_type_description FROM organisation_Types AS T1 JOIN Organisations AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_details = 'quo'", "question": "Find the organisation type description of the organisation detailed as 'quo'.", "context": "CREATE TABLE Organisations (organisation_type VARCHAR, organisation_details VARCHAR); CREATE TABLE organisation_Types (organisation_type_description VARCHAR, organisation_type VARCHAR)"}, {"answer": "SELECT organisation_details FROM Organisations AS T1 JOIN organisation_Types AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_type_description = 'Sponsor' ORDER BY organisation_details", "question": "What are all the details of the organisations described as 'Sponsor'? Sort the result in an ascending order.", "context": "CREATE TABLE organisation_Types (organisation_type VARCHAR, organisation_type_description VARCHAR); CREATE TABLE Organisations (organisation_type VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Project_outcomes WHERE outcome_code = 'Patent'", "question": "How many Patent outcomes are generated from all the projects?", "context": "CREATE TABLE Project_outcomes (outcome_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Project_Staff WHERE role_code = 'leader' OR date_from < '1989-04-24 23:51:54'", "question": "How many project staff worked as leaders or started working before '1989-04-24 23:51:54'?", "context": "CREATE TABLE Project_Staff (role_code VARCHAR, date_from VARCHAR)"}, {"answer": "SELECT date_to FROM Project_Staff ORDER BY date_to DESC LIMIT 1", "question": "What is the last date of the staff leaving the projects?", "context": "CREATE TABLE Project_Staff (date_to VARCHAR)"}, {"answer": "SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code JOIN Projects AS T3 ON T2.project_id = T3.project_id WHERE T3.project_details = 'sint'", "question": "What are the result description of the project whose detail is 'sint'?", "context": "CREATE TABLE Project_outcomes (outcome_code VARCHAR, project_id VARCHAR); CREATE TABLE Research_outcomes (outcome_description VARCHAR, outcome_code VARCHAR); CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR)"}, {"answer": "SELECT T1.organisation_id, COUNT(*) FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id GROUP BY T1.organisation_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "List the organisation id with the maximum outcome count, and the count.", "context": "CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Projects (organisation_id VARCHAR, project_id VARCHAR)"}, {"answer": "SELECT project_details FROM Projects WHERE organisation_id IN (SELECT organisation_id FROM Projects GROUP BY organisation_id ORDER BY COUNT(*) DESC LIMIT 1)", "question": "List the project details of the projects launched by the organisation", "context": "CREATE TABLE Projects (project_details VARCHAR, organisation_id VARCHAR)"}, {"answer": "SELECT staff_details FROM Research_Staff ORDER BY staff_details", "question": "List the research staff details, and order in ascending order.", "context": "CREATE TABLE Research_Staff (staff_details VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Tasks", "question": "How many tasks are there in total?", "context": "CREATE TABLE Tasks (Id VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.project_details FROM Projects AS T1 JOIN Tasks AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id", "question": "How many tasks does each project have? List the task count and the project detail.", "context": "CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR); CREATE TABLE Tasks (project_id VARCHAR)"}, {"answer": "SELECT role_code FROM Project_Staff WHERE date_from > '2003-04-19 15:06:20' AND date_to < '2016-03-15 00:33:18'", "question": "What are the staff roles of the staff who", "context": "CREATE TABLE Project_Staff (role_code VARCHAR, date_from VARCHAR, date_to VARCHAR)"}, {"answer": "SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code", "question": "What are the descriptions of all the project outcomes?", "context": "CREATE TABLE Research_outcomes (outcome_description VARCHAR, outcome_code VARCHAR); CREATE TABLE Project_outcomes (outcome_code VARCHAR)"}, {"answer": "SELECT role_code FROM Project_Staff GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which role is most common for the staff?", "context": "CREATE TABLE Project_Staff (role_code VARCHAR)"}, {"answer": "SELECT COUNT(T2.friend) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Dan'", "question": "How many friends does Dan have?", "context": "CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Person WHERE gender = 'female'", "question": "How many females does this network has?", "context": "CREATE TABLE Person (gender VARCHAR)"}, {"answer": "SELECT AVG(age) FROM Person", "question": "What is the average age for all person?", "context": "CREATE TABLE Person (age INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT city) FROM Person", "question": "How many different cities are they from?", "context": "CREATE TABLE Person (city VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT job) FROM Person", "question": "How many type of jobs do they have?", "context": "CREATE TABLE Person (job VARCHAR)"}, {"answer": "SELECT name FROM Person WHERE age = (SELECT MAX(age) FROM person)", "question": "Who is the oldest person?", "context": "CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE person (name VARCHAR, age INTEGER)"}, {"answer": "SELECT name FROM Person WHERE job = 'student' AND age = (SELECT MAX(age) FROM person WHERE job = 'student')", "question": "Who is the oldest person whose job is student?", "context": "CREATE TABLE person (name VARCHAR, job VARCHAR, age INTEGER); CREATE TABLE Person (name VARCHAR, job VARCHAR, age INTEGER)"}, {"answer": "SELECT name FROM Person WHERE gender = 'male' AND age = (SELECT MIN(age) FROM person WHERE gender = 'male')", "question": "Who is the youngest male?", "context": "CREATE TABLE Person (name VARCHAR, gender VARCHAR, age INTEGER); CREATE TABLE person (name VARCHAR, gender VARCHAR, age INTEGER)"}, {"answer": "SELECT age FROM Person WHERE job = 'doctor' AND name = 'Zach'", "question": "How old is the doctor named Zach?", "context": "CREATE TABLE Person (age VARCHAR, job VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM Person WHERE age < 30", "question": "Who is the person whose age is below 30?", "context": "CREATE TABLE Person (name VARCHAR, age INTEGER)"}, {"answer": "SELECT COUNT(*) FROM Person WHERE age > 30 AND job = 'engineer'", "question": "How many people whose age is greater 30 and job is engineer?", "context": "CREATE TABLE Person (age VARCHAR, job VARCHAR)"}, {"answer": "SELECT AVG(age), gender FROM Person GROUP BY gender", "question": "What is the average age for each gender?", "context": "CREATE TABLE Person (gender VARCHAR, age INTEGER)"}, {"answer": "SELECT AVG(age), job FROM Person GROUP BY job", "question": "What is average age for different job title?", "context": "CREATE TABLE Person (job VARCHAR, age INTEGER)"}, {"answer": "SELECT AVG(age), job FROM Person WHERE gender = 'male' GROUP BY job", "question": "What is average age of male for different job title?", "context": "CREATE TABLE Person (job VARCHAR, age INTEGER, gender VARCHAR)"}, {"answer": "SELECT MIN(age), job FROM Person GROUP BY job", "question": "What is minimum age for different job title?", "context": "CREATE TABLE Person (job VARCHAR, age INTEGER)"}, {"answer": "SELECT COUNT(*), gender FROM Person WHERE age < 40 GROUP BY gender", "question": "Find the number of people who is under 40 for each gender.", "context": "CREATE TABLE Person (gender VARCHAR, age INTEGER)"}, {"answer": "SELECT name FROM Person WHERE age > (SELECT MIN(age) FROM person WHERE job = 'engineer') ORDER BY age", "question": "Find the name of people whose age is greater than any engineer sorted by their age.", "context": "CREATE TABLE Person (name VARCHAR, age INTEGER, job VARCHAR); CREATE TABLE person (name VARCHAR, age INTEGER, job VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Person WHERE age > (SELECT MAX(age) FROM person WHERE job = 'engineer')", "question": "Find the number of people whose age is greater than all engineers.", "context": "CREATE TABLE Person (age INTEGER, job VARCHAR); CREATE TABLE person (age INTEGER, job VARCHAR)"}, {"answer": "SELECT name, job FROM Person ORDER BY name", "question": "list the name, job title of all people ordered by their names.", "context": "CREATE TABLE Person (name VARCHAR, job VARCHAR)"}, {"answer": "SELECT name FROM Person ORDER BY age DESC", "question": "Find the names of all person sorted in the descending order using age.", "context": "CREATE TABLE Person (name VARCHAR, age VARCHAR)"}, {"answer": "SELECT name FROM Person WHERE gender = 'male' ORDER BY age", "question": "Find the name and age of all males in order of their age.", "context": "CREATE TABLE Person (name VARCHAR, gender VARCHAR, age VARCHAR)"}, {"answer": "SELECT T1.name, T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Dan' INTERSECT SELECT T1.name, T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Alice'", "question": "Find the name and age of the person who is a friend of both Dan and Alice.", "context": "CREATE TABLE Person (name VARCHAR, age VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR)"}, {"answer": "SELECT DISTINCT T1.name, T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Dan' OR T2.friend = 'Alice'", "question": "Find the name and age of the person who is a friend of Dan or Alice.", "context": "CREATE TABLE Person (name VARCHAR, age VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR)"}, {"answer": "SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) INTERSECT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 30)", "question": "Find the name of the person who has friends with age above 40 and under age 30?", "context": "CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR)"}, {"answer": "SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) EXCEPT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 30)", "question": "Find the name of the person who has friends with age above 40 but not under age 30?", "context": "CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR)"}, {"answer": "SELECT name FROM person EXCEPT SELECT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.job = 'student'", "question": "Find the name of the person who has no student friends.", "context": "CREATE TABLE Person (name VARCHAR, job VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE person (name VARCHAR)"}, {"answer": "SELECT name FROM PersonFriend GROUP BY name HAVING COUNT(*) = 1", "question": "Find the person who has exactly one friend.", "context": "CREATE TABLE PersonFriend (name VARCHAR)"}, {"answer": "SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Bob'", "question": "Who are the friends of Bob?", "context": "CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR)"}, {"answer": "SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Bob'", "question": "Find the name of persons who are friends with Bob.", "context": "CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR)"}, {"answer": "SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Zach' AND T1.gender = 'female'", "question": "Find the names of females who are friends with Zach", "context": "CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR, gender VARCHAR)"}, {"answer": "SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'female'", "question": "Find the female friends of Alice.", "context": "CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR, gender VARCHAR)"}, {"answer": "SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'male' AND T1.job = 'doctor'", "question": "Find the male friend of Alice whose job is a doctor?", "context": "CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR, job VARCHAR, gender VARCHAR)"}, {"answer": "SELECT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.city = 'new york city'", "question": "Who has a friend that is from new york city?", "context": "CREATE TABLE Person (name VARCHAR, city VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR)"}, {"answer": "SELECT DISTINCT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.age < (SELECT AVG(age) FROM person)", "question": "Who has friends that are younger than the average age?", "context": "CREATE TABLE person (age INTEGER); CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR)"}, {"answer": "SELECT DISTINCT T2.name, T2.friend, T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.age > (SELECT AVG(age) FROM person)", "question": "Who has friends that are older than the average age? Print their friends and their ages as well", "context": "CREATE TABLE person (age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (age INTEGER, name VARCHAR)"}, {"answer": "SELECT friend FROM PersonFriend WHERE name = 'Zach' AND YEAR = (SELECT MAX(YEAR) FROM PersonFriend WHERE name = 'Zach')", "question": "Who is the friend of Zach with longest year relationship?", "context": "CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR, YEAR INTEGER)"}, {"answer": "SELECT T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Zach' AND T2.year = (SELECT MAX(YEAR) FROM PersonFriend WHERE name = 'Zach')", "question": "What is the age of the friend of Zach with longest year relationship?", "context": "CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR, year VARCHAR); CREATE TABLE PersonFriend (YEAR INTEGER, name VARCHAR); CREATE TABLE Person (age VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM PersonFriend WHERE friend = 'Alice' AND YEAR = (SELECT MIN(YEAR) FROM PersonFriend WHERE friend = 'Alice')", "question": "Find the name of persons who are friends with Alice for the shortest years.", "context": "CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR, YEAR INTEGER)"}, {"answer": "SELECT T1.name, T1.age, T1.job FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Alice' AND T2.year = (SELECT MAX(YEAR) FROM PersonFriend WHERE friend = 'Alice')", "question": "Find the name, age, and job title of persons who are friends with Alice for the longest years.", "context": "CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR, year VARCHAR); CREATE TABLE Person (name VARCHAR, age VARCHAR, job VARCHAR); CREATE TABLE PersonFriend (YEAR INTEGER, friend VARCHAR)"}, {"answer": "SELECT name FROM person EXCEPT SELECT name FROM PersonFriend", "question": "Who is the person that has no friend?", "context": "CREATE TABLE PersonFriend (name VARCHAR); CREATE TABLE person (name VARCHAR)"}, {"answer": "SELECT T2.name, AVG(T1.age) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend GROUP BY T2.name ORDER BY AVG(T1.age) DESC LIMIT 1", "question": "Which person whose friends have the oldest average age?", "context": "CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (age INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT name) FROM PersonFriend WHERE NOT friend IN (SELECT name FROM person WHERE city = 'Austin')", "question": "What is the total number of people who has no friend living in the city of Austin.", "context": "CREATE TABLE person (name VARCHAR, friend VARCHAR, city VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR, city VARCHAR)"}, {"answer": "SELECT DISTINCT T4.name FROM PersonFriend AS T1 JOIN Person AS T2 ON T1.name = T2.name JOIN PersonFriend AS T3 ON T1.friend = T3.name JOIN PersonFriend AS T4 ON T3.friend = T4.name WHERE T2.name = 'Alice' AND T4.name <> 'Alice'", "question": "Find Alice's friends of friends.", "context": "CREATE TABLE PersonFriend (name VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM member", "question": "How many members are there?", "context": "CREATE TABLE member (Id VARCHAR)"}, {"answer": "SELECT Name FROM member ORDER BY Name", "question": "List the names of members in ascending alphabetical order.", "context": "CREATE TABLE member (Name VARCHAR)"}, {"answer": "SELECT Name, Country FROM member", "question": "What are the names and countries of members?", "context": "CREATE TABLE member (Name VARCHAR, Country VARCHAR)"}, {"answer": "SELECT Name FROM member WHERE Country = \"United States\" OR Country = \"Canada\"", "question": "Show the names of members whose country is \"United States\" or \"Canada\".", "context": "CREATE TABLE member (Name VARCHAR, Country VARCHAR)"}, {"answer": "SELECT Country, COUNT(*) FROM member GROUP BY Country", "question": "Show the different countries and the number of members from each.", "context": "CREATE TABLE member (Country VARCHAR)"}, {"answer": "SELECT Country FROM member GROUP BY Country ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most common country across members.", "context": "CREATE TABLE member (Country VARCHAR)"}, {"answer": "SELECT Country FROM member GROUP BY Country HAVING COUNT(*) > 2", "question": "Which countries have more than two members?", "context": "CREATE TABLE member (Country VARCHAR)"}, {"answer": "SELECT Leader_Name, College_Location FROM college", "question": "Show the leader names and locations of colleges.", "context": "CREATE TABLE college (Leader_Name VARCHAR, College_Location VARCHAR)"}, {"answer": "SELECT T2.Name, T1.Name FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID", "question": "Show the names of members and names of colleges they go to.", "context": "CREATE TABLE member (Name VARCHAR, College_ID VARCHAR); CREATE TABLE college (Name VARCHAR, College_ID VARCHAR)"}, {"answer": "SELECT T2.Name, T1.College_Location FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID ORDER BY T2.Name", "question": "Show the names of members and the locations of colleges they go to in ascending alphabetical order of member names.", "context": "CREATE TABLE member (Name VARCHAR, College_ID VARCHAR); CREATE TABLE college (College_Location VARCHAR, College_ID VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Leader_Name FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID WHERE T2.Country = \"Canada\"", "question": "Show the distinct leader names of colleges associated with members from country \"Canada\".", "context": "CREATE TABLE college (Leader_Name VARCHAR, College_ID VARCHAR); CREATE TABLE member (College_ID VARCHAR, Country VARCHAR)"}, {"answer": "SELECT T1.Name, T2.Decoration_Theme FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID", "question": "Show the names of members and the decoration themes they have.", "context": "CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE round (Decoration_Theme VARCHAR, Member_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID WHERE T2.Rank_in_Round > 3", "question": "Show the names of members that have a rank in round higher than 3.", "context": "CREATE TABLE round (Member_ID VARCHAR, Rank_in_Round INTEGER); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID ORDER BY Rank_in_Round", "question": "Show the names of members in ascending order of their rank in rounds.", "context": "CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE round (Member_ID VARCHAR)"}, {"answer": "SELECT Name FROM member WHERE NOT Member_ID IN (SELECT Member_ID FROM round)", "question": "List the names of members who did not participate in any round.", "context": "CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE round (Name VARCHAR, Member_ID VARCHAR)"}, {"answer": "SELECT document_name, access_count FROM documents ORDER BY document_name", "question": "Find the name and access counts of all documents, in alphabetic order of the document name.", "context": "CREATE TABLE documents (document_name VARCHAR, access_count VARCHAR)"}, {"answer": "SELECT document_name, access_count FROM documents ORDER BY access_count DESC LIMIT 1", "question": "Find the name of the document that has been accessed the greatest number of times, as well as the count of how many times it has been accessed?", "context": "CREATE TABLE documents (document_name VARCHAR, access_count VARCHAR)"}, {"answer": "SELECT document_type_code FROM documents GROUP BY document_type_code HAVING COUNT(*) > 4", "question": "Find the types of documents with more than 4 documents.", "context": "CREATE TABLE documents (document_type_code VARCHAR)"}, {"answer": "SELECT SUM(access_count) FROM documents GROUP BY document_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the total access count of all documents in the most popular document type.", "context": "CREATE TABLE documents (access_count INTEGER, document_type_code VARCHAR)"}, {"answer": "SELECT AVG(access_count) FROM documents", "question": "What is the average access count of documents?", "context": "CREATE TABLE documents (access_count INTEGER)"}, {"answer": "SELECT t2.document_structure_description FROM documents AS t1 JOIN document_structures AS t2 ON t1.document_structure_code = t2.document_structure_code GROUP BY t1.document_structure_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the structure of the document with the least number of accesses?", "context": "CREATE TABLE document_structures (document_structure_description VARCHAR, document_structure_code VARCHAR); CREATE TABLE documents (document_structure_code VARCHAR)"}, {"answer": "SELECT document_type_code FROM documents WHERE document_name = \"David CV\"", "question": "What is the type of the document named \"David CV\"?", "context": "CREATE TABLE documents (document_type_code VARCHAR, document_name VARCHAR)"}, {"answer": "SELECT document_name FROM documents GROUP BY document_type_code ORDER BY COUNT(*) DESC LIMIT 3 INTERSECT SELECT document_name FROM documents GROUP BY document_structure_code ORDER BY COUNT(*) DESC LIMIT 3", "question": "Find the list of documents that are both in the most three popular type and have the most three popular structure.", "context": "CREATE TABLE documents (document_name VARCHAR, document_type_code VARCHAR, document_structure_code VARCHAR)"}, {"answer": "SELECT document_type_code FROM documents GROUP BY document_type_code HAVING SUM(access_count) > 10000", "question": "What document types do have more than 10000 total access number.", "context": "CREATE TABLE documents (document_type_code VARCHAR, access_count INTEGER)"}, {"answer": "SELECT t2.section_title FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code WHERE t1.document_name = \"David CV\"", "question": "What are all the section titles of the document named \"David CV\"?", "context": "CREATE TABLE documents (document_code VARCHAR, document_name VARCHAR); CREATE TABLE document_sections (section_title VARCHAR, document_code VARCHAR)"}, {"answer": "SELECT document_name FROM documents WHERE NOT document_code IN (SELECT document_code FROM document_sections)", "question": "Find all the name of documents without any sections.", "context": "CREATE TABLE document_sections (document_name VARCHAR, document_code VARCHAR); CREATE TABLE documents (document_name VARCHAR, document_code VARCHAR)"}, {"answer": "SELECT user_name, password FROM users GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "List all the username and passwords of users with the most popular role.", "context": "CREATE TABLE users (user_name VARCHAR, password VARCHAR, role_code VARCHAR)"}, {"answer": "SELECT AVG(t1.access_count) FROM documents AS t1 JOIN document_functional_areas AS t2 ON t1.document_code = t2.document_code JOIN functional_areas AS t3 ON t2.functional_area_code = t3.functional_area_code WHERE t3.functional_area_description = \"Acknowledgement\"", "question": "Find the average access counts of documents with functional area \"Acknowledgement\".", "context": "CREATE TABLE document_functional_areas (document_code VARCHAR, functional_area_code VARCHAR); CREATE TABLE documents (access_count INTEGER, document_code VARCHAR); CREATE TABLE functional_areas (functional_area_code VARCHAR, functional_area_description VARCHAR)"}, {"answer": "SELECT document_name FROM documents EXCEPT SELECT t1.document_name FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code JOIN document_sections_images AS t3 ON t2.section_id = t3.section_id", "question": "Find names of the document without any images.", "context": "CREATE TABLE document_sections_images (section_id VARCHAR); CREATE TABLE documents (document_name VARCHAR); CREATE TABLE documents (document_name VARCHAR, document_code VARCHAR); CREATE TABLE document_sections (document_code VARCHAR, section_id VARCHAR)"}, {"answer": "SELECT t1.document_name FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code GROUP BY t1.document_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the document with the most number of sections?", "context": "CREATE TABLE document_sections (document_code VARCHAR); CREATE TABLE documents (document_name VARCHAR, document_code VARCHAR)"}, {"answer": "SELECT document_name FROM documents WHERE document_name LIKE \"%CV%\"", "question": "List all the document names which contains \"CV\".", "context": "CREATE TABLE documents (document_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM users WHERE user_login = 1", "question": "How many users are logged in?", "context": "CREATE TABLE users (user_login VARCHAR)"}, {"answer": "SELECT role_description FROM ROLES WHERE role_code = (SELECT role_code FROM users WHERE user_login = 1 GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1)", "question": "Find the description of the most popular role among the users that have logged in.", "context": "CREATE TABLE users (role_description VARCHAR, role_code VARCHAR, user_login VARCHAR); CREATE TABLE ROLES (role_description VARCHAR, role_code VARCHAR, user_login VARCHAR)"}, {"answer": "SELECT AVG(access_count) FROM documents GROUP BY document_structure_code ORDER BY COUNT(*) LIMIT 1", "question": "Find the average access count of documents with the least popular structure.", "context": "CREATE TABLE documents (access_count INTEGER, document_structure_code VARCHAR)"}, {"answer": "SELECT image_name, image_url FROM images ORDER BY image_name", "question": "List all the image name and URLs in the order of their names.", "context": "CREATE TABLE images (image_name VARCHAR, image_url VARCHAR)"}, {"answer": "SELECT COUNT(*), role_code FROM users GROUP BY role_code", "question": "Find the number of users in each role.", "context": "CREATE TABLE users (role_code VARCHAR)"}, {"answer": "SELECT document_type_code FROM documents GROUP BY document_type_code HAVING COUNT(*) > 2", "question": "What document types have more than 2 corresponding documents?", "context": "CREATE TABLE documents (document_type_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Companies", "question": "How many companies are there?", "context": "CREATE TABLE Companies (Id VARCHAR)"}, {"answer": "SELECT name FROM Companies ORDER BY Market_Value_billion DESC", "question": "List the names of companies in descending order of market value.", "context": "CREATE TABLE Companies (name VARCHAR, Market_Value_billion VARCHAR)"}, {"answer": "SELECT name FROM Companies WHERE Headquarters <> 'USA'", "question": "What are the names of companies whose headquarters are not \"USA\"?", "context": "CREATE TABLE Companies (name VARCHAR, Headquarters VARCHAR)"}, {"answer": "SELECT name, Assets_billion FROM Companies ORDER BY name", "question": "What are the name and assets of each company, sorted in ascending order of company name?", "context": "CREATE TABLE Companies (name VARCHAR, Assets_billion VARCHAR)"}, {"answer": "SELECT AVG(Profits_billion) FROM Companies", "question": "What are the average profits of companies?", "context": "CREATE TABLE Companies (Profits_billion INTEGER)"}, {"answer": "SELECT MAX(Sales_billion), MIN(Sales_billion) FROM Companies WHERE Industry <> \"Banking\"", "question": "What are the maximum and minimum sales of the companies whose industries are not \"Banking\".", "context": "CREATE TABLE Companies (Sales_billion INTEGER, Industry VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Industry) FROM Companies", "question": "How many different industries are the companies in?", "context": "CREATE TABLE Companies (Industry VARCHAR)"}, {"answer": "SELECT name FROM buildings ORDER BY Height DESC", "question": "List the names of buildings in descending order of building height.", "context": "CREATE TABLE buildings (name VARCHAR, Height VARCHAR)"}, {"answer": "SELECT Stories FROM buildings ORDER BY Height DESC LIMIT 1", "question": "Find the stories of the building with the largest height.", "context": "CREATE TABLE buildings (Stories VARCHAR, Height VARCHAR)"}, {"answer": "SELECT T3.name, T2.name FROM Office_locations AS T1 JOIN buildings AS T2 ON T1.building_id = T2.id JOIN Companies AS T3 ON T1.company_id = T3.id", "question": "List the name of a building along with the name of a company whose office is in the building.", "context": "CREATE TABLE buildings (name VARCHAR, id VARCHAR); CREATE TABLE Office_locations (building_id VARCHAR, company_id VARCHAR); CREATE TABLE Companies (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T2.name FROM Office_locations AS T1 JOIN buildings AS T2 ON T1.building_id = T2.id JOIN Companies AS T3 ON T1.company_id = T3.id GROUP BY T1.building_id HAVING COUNT(*) > 1", "question": "Show the names of the buildings that have more than one company offices.", "context": "CREATE TABLE buildings (name VARCHAR, id VARCHAR); CREATE TABLE Companies (id VARCHAR); CREATE TABLE Office_locations (building_id VARCHAR, company_id VARCHAR)"}, {"answer": "SELECT T2.name FROM Office_locations AS T1 JOIN buildings AS T2 ON T1.building_id = T2.id JOIN Companies AS T3 ON T1.company_id = T3.id GROUP BY T1.building_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the name of the building that has the most company offices.", "context": "CREATE TABLE buildings (name VARCHAR, id VARCHAR); CREATE TABLE Companies (id VARCHAR); CREATE TABLE Office_locations (building_id VARCHAR, company_id VARCHAR)"}, {"answer": "SELECT name FROM buildings WHERE Status = \"on-hold\" ORDER BY Stories", "question": "Please show the names of the buildings whose status is \"on-hold\", in ascending order of stories.", "context": "CREATE TABLE buildings (name VARCHAR, Status VARCHAR, Stories VARCHAR)"}, {"answer": "SELECT Industry, COUNT(*) FROM Companies GROUP BY Industry", "question": "Please show each industry and the corresponding number of companies in that industry.", "context": "CREATE TABLE Companies (Industry VARCHAR)"}, {"answer": "SELECT Industry FROM Companies GROUP BY Industry ORDER BY COUNT(*) DESC", "question": "Please show the industries of companies in descending order of the number of companies.", "context": "CREATE TABLE Companies (Industry VARCHAR)"}, {"answer": "SELECT Industry FROM Companies GROUP BY Industry ORDER BY COUNT(*) DESC LIMIT 1", "question": "List the industry shared by the most companies.", "context": "CREATE TABLE Companies (Industry VARCHAR)"}, {"answer": "SELECT name FROM buildings WHERE NOT id IN (SELECT building_id FROM Office_locations)", "question": "List the names of buildings that have no company office.", "context": "CREATE TABLE buildings (name VARCHAR, id VARCHAR, building_id VARCHAR); CREATE TABLE Office_locations (name VARCHAR, id VARCHAR, building_id VARCHAR)"}, {"answer": "SELECT Industry FROM Companies WHERE Headquarters = \"USA\" INTERSECT SELECT Industry FROM Companies WHERE Headquarters = \"China\"", "question": "Show the industries shared by companies whose headquarters are \"USA\" and companies whose headquarters are \"China\".", "context": "CREATE TABLE Companies (Industry VARCHAR, Headquarters VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Companies WHERE Industry = \"Banking\" OR Industry = \"Conglomerate\"", "question": "Find the number of companies whose industry is \"Banking\" or \"Conglomerate\",", "context": "CREATE TABLE Companies (Industry VARCHAR)"}, {"answer": "SELECT Headquarters FROM Companies GROUP BY Headquarters HAVING COUNT(*) > 2", "question": "Show the headquarters shared by more than two companies.", "context": "CREATE TABLE Companies (Headquarters VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Products", "question": "How many products are there?", "context": "CREATE TABLE Products (Id VARCHAR)"}, {"answer": "SELECT Product_Name FROM Products ORDER BY Product_Price", "question": "List the name of products in ascending order of price.", "context": "CREATE TABLE Products (Product_Name VARCHAR, Product_Price VARCHAR)"}, {"answer": "SELECT Product_Name, Product_Type_Code FROM Products", "question": "What are the names and type codes of products?", "context": "CREATE TABLE Products (Product_Name VARCHAR, Product_Type_Code VARCHAR)"}, {"answer": "SELECT Product_Price FROM Products WHERE Product_Name = \"Dining\" OR Product_Name = \"Trading Policy\"", "question": "Show the prices of the products named \"Dining\" or \"Trading Policy\".", "context": "CREATE TABLE Products (Product_Price VARCHAR, Product_Name VARCHAR)"}, {"answer": "SELECT AVG(Product_Price) FROM Products", "question": "What is the average price for products?", "context": "CREATE TABLE Products (Product_Price INTEGER)"}, {"answer": "SELECT Product_Name FROM Products ORDER BY Product_Price DESC LIMIT 1", "question": "What is the name of the product with the highest price?", "context": "CREATE TABLE Products (Product_Name VARCHAR, Product_Price VARCHAR)"}, {"answer": "SELECT Product_Type_Code, COUNT(*) FROM Products GROUP BY Product_Type_Code", "question": "Show different type codes of products and the number of products with each type code.", "context": "CREATE TABLE Products (Product_Type_Code VARCHAR)"}, {"answer": "SELECT Product_Type_Code FROM Products GROUP BY Product_Type_Code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most common type code across products.", "context": "CREATE TABLE Products (Product_Type_Code VARCHAR)"}, {"answer": "SELECT Product_Type_Code FROM Products GROUP BY Product_Type_Code HAVING COUNT(*) >= 2", "question": "Show the product type codes that have at least two products.", "context": "CREATE TABLE Products (Product_Type_Code VARCHAR)"}, {"answer": "SELECT Product_Type_Code FROM Products WHERE Product_Price > 4500 INTERSECT SELECT Product_Type_Code FROM Products WHERE Product_Price < 3000", "question": "Show the product type codes that have both products with price higher than 4500 and products with price lower than 3000.", "context": "CREATE TABLE Products (Product_Type_Code VARCHAR, Product_Price INTEGER)"}, {"answer": "SELECT T1.Product_Name, COUNT(*) FROM Products AS T1 JOIN Products_in_Events AS T2 ON T1.Product_ID = T2.Product_ID GROUP BY T1.Product_Name", "question": "Show the names of products and the number of events they are in.", "context": "CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_ID VARCHAR)"}, {"answer": "SELECT T1.Product_Name, COUNT(*) FROM Products AS T1 JOIN Products_in_Events AS T2 ON T1.Product_ID = T2.Product_ID GROUP BY T1.Product_Name ORDER BY COUNT(*) DESC", "question": "Show the names of products and the number of events they are in, sorted by the number of events in descending order.", "context": "CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_ID VARCHAR)"}, {"answer": "SELECT T1.Product_Name FROM Products AS T1 JOIN Products_in_Events AS T2 ON T1.Product_ID = T2.Product_ID GROUP BY T1.Product_Name HAVING COUNT(*) >= 2", "question": "Show the names of products that are in at least two events.", "context": "CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_ID VARCHAR)"}, {"answer": "SELECT T1.Product_Name FROM Products AS T1 JOIN Products_in_Events AS T2 ON T1.Product_ID = T2.Product_ID GROUP BY T1.Product_Name HAVING COUNT(*) >= 2 ORDER BY T1.Product_Name", "question": "Show the names of products that are in at least two events in ascending alphabetical order of product name.", "context": "CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_ID VARCHAR)"}, {"answer": "SELECT Product_Name FROM Products WHERE NOT Product_ID IN (SELECT Product_ID FROM Products_in_Events)", "question": "List the names of products that are not in any event.", "context": "CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_Name VARCHAR, Product_ID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM artwork", "question": "How many artworks are there?", "context": "CREATE TABLE artwork (Id VARCHAR)"}, {"answer": "SELECT Name FROM artwork ORDER BY Name", "question": "List the name of artworks in ascending alphabetical order.", "context": "CREATE TABLE artwork (Name VARCHAR)"}, {"answer": "SELECT Name FROM artwork WHERE TYPE <> \"Program Talent Show\"", "question": "List the name of artworks whose type is not \"Program Talent Show\".", "context": "CREATE TABLE artwork (Name VARCHAR, TYPE VARCHAR)"}, {"answer": "SELECT Festival_Name, LOCATION FROM festival_detail", "question": "What are the names and locations of festivals?", "context": "CREATE TABLE festival_detail (Festival_Name VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT Chair_Name FROM festival_detail ORDER BY YEAR", "question": "What are the names of the chairs of festivals, sorted in ascending order of the year held?", "context": "CREATE TABLE festival_detail (Chair_Name VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT LOCATION FROM festival_detail ORDER BY Num_of_Audience DESC LIMIT 1", "question": "What is the location of the festival with the largest number of audience?", "context": "CREATE TABLE festival_detail (LOCATION VARCHAR, Num_of_Audience VARCHAR)"}, {"answer": "SELECT Festival_Name FROM festival_detail WHERE YEAR = 2007", "question": "What are the names of festivals held in year 2007?", "context": "CREATE TABLE festival_detail (Festival_Name VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT AVG(Num_of_Audience) FROM festival_detail", "question": "What is the average number of audience for festivals?", "context": "CREATE TABLE festival_detail (Num_of_Audience INTEGER)"}, {"answer": "SELECT Festival_Name FROM festival_detail ORDER BY YEAR DESC LIMIT 3", "question": "Show the names of the three most recent festivals.", "context": "CREATE TABLE festival_detail (Festival_Name VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT T2.Name, T3.Festival_Name FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID", "question": "For each nomination, show the name of the artwork and name of the festival where it is nominated.", "context": "CREATE TABLE artwork (Name VARCHAR, Artwork_ID VARCHAR); CREATE TABLE nomination (Artwork_ID VARCHAR, Festival_ID VARCHAR); CREATE TABLE festival_detail (Festival_Name VARCHAR, Festival_ID VARCHAR)"}, {"answer": "SELECT DISTINCT T2.Type FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID WHERE T3.Year = 2007", "question": "Show distinct types of artworks that are nominated in festivals in 2007.", "context": "CREATE TABLE nomination (Artwork_ID VARCHAR, Festival_ID VARCHAR); CREATE TABLE festival_detail (Festival_ID VARCHAR, Year VARCHAR); CREATE TABLE artwork (Type VARCHAR, Artwork_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID ORDER BY T3.Year", "question": "Show the names of artworks in ascending order of the year they are nominated in.", "context": "CREATE TABLE artwork (Name VARCHAR, Artwork_ID VARCHAR); CREATE TABLE nomination (Artwork_ID VARCHAR, Festival_ID VARCHAR); CREATE TABLE festival_detail (Festival_ID VARCHAR, Year VARCHAR)"}, {"answer": "SELECT T3.Festival_Name FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID WHERE T2.Type = \"Program Talent Show\"", "question": "Show the names of festivals that have nominated artworks of type \"Program Talent Show\".", "context": "CREATE TABLE nomination (Artwork_ID VARCHAR, Festival_ID VARCHAR); CREATE TABLE artwork (Artwork_ID VARCHAR, Type VARCHAR); CREATE TABLE festival_detail (Festival_Name VARCHAR, Festival_ID VARCHAR)"}, {"answer": "SELECT T1.Festival_ID, T3.Festival_Name FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID GROUP BY T1.Festival_ID HAVING COUNT(*) >= 2", "question": "Show the ids and names of festivals that have at least two nominations for artworks.", "context": "CREATE TABLE nomination (Festival_ID VARCHAR, Artwork_ID VARCHAR); CREATE TABLE festival_detail (Festival_Name VARCHAR, Festival_ID VARCHAR); CREATE TABLE artwork (Artwork_ID VARCHAR)"}, {"answer": "SELECT T1.Festival_ID, T3.Festival_Name, COUNT(*) FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID GROUP BY T1.Festival_ID", "question": "Show the id, name of each festival and the number of artworks it has nominated.", "context": "CREATE TABLE nomination (Festival_ID VARCHAR, Artwork_ID VARCHAR); CREATE TABLE festival_detail (Festival_Name VARCHAR, Festival_ID VARCHAR); CREATE TABLE artwork (Artwork_ID VARCHAR)"}, {"answer": "SELECT TYPE, COUNT(*) FROM artwork GROUP BY TYPE", "question": "Please show different types of artworks with the corresponding number of artworks of each type.", "context": "CREATE TABLE artwork (TYPE VARCHAR)"}, {"answer": "SELECT TYPE FROM artwork GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1", "question": "List the most common type of artworks.", "context": "CREATE TABLE artwork (TYPE VARCHAR)"}, {"answer": "SELECT YEAR FROM festival_detail GROUP BY YEAR HAVING COUNT(*) > 1", "question": "List the year in which there are more than one festivals.", "context": "CREATE TABLE festival_detail (YEAR VARCHAR)"}, {"answer": "SELECT Name FROM Artwork WHERE NOT Artwork_ID IN (SELECT Artwork_ID FROM nomination)", "question": "List the name of artworks that are not nominated.", "context": "CREATE TABLE nomination (Name VARCHAR, Artwork_ID VARCHAR); CREATE TABLE Artwork (Name VARCHAR, Artwork_ID VARCHAR)"}, {"answer": "SELECT Num_of_Audience FROM festival_detail WHERE YEAR = 2008 OR YEAR = 2010", "question": "Show the number of audience in year 2008 or 2010.", "context": "CREATE TABLE festival_detail (Num_of_Audience VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT SUM(Num_of_Audience) FROM festival_detail", "question": "What are the total number of the audiences who visited any of the festivals?", "context": "CREATE TABLE festival_detail (Num_of_Audience INTEGER)"}, {"answer": "SELECT YEAR FROM festival_detail WHERE LOCATION = 'United States' INTERSECT SELECT YEAR FROM festival_detail WHERE LOCATION <> 'United States'", "question": "In which year are there festivals both inside the 'United States' and outside the 'United States'?", "context": "CREATE TABLE festival_detail (YEAR VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM premises", "question": "How many premises are there?", "context": "CREATE TABLE premises (Id VARCHAR)"}, {"answer": "SELECT DISTINCT premises_type FROM premises", "question": "What are all the distinct premise types?", "context": "CREATE TABLE premises (premises_type VARCHAR)"}, {"answer": "SELECT premises_type, premise_details FROM premises ORDER BY premises_type", "question": "Find the types and details for all premises and order by the premise type.", "context": "CREATE TABLE premises (premises_type VARCHAR, premise_details VARCHAR)"}, {"answer": "SELECT premises_type, COUNT(*) FROM premises GROUP BY premises_type", "question": "Show each premise type and the number of premises in that type.", "context": "CREATE TABLE premises (premises_type VARCHAR)"}, {"answer": "SELECT product_category, COUNT(*) FROM mailshot_campaigns GROUP BY product_category", "question": "Show all distinct product categories along with the number of mailshots in each category.", "context": "CREATE TABLE mailshot_campaigns (product_category VARCHAR)"}, {"answer": "SELECT customer_name, customer_phone FROM customers WHERE NOT customer_id IN (SELECT customer_id FROM mailshot_customers)", "question": "Show the name and phone of the customer without any mailshot.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T1.customer_name, T1.customer_phone FROM customers AS T1 JOIN mailshot_customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.outcome_code = 'No Response'", "question": "Show the name and phone for customers with a mailshot with outcome code 'No Response'.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_id VARCHAR, outcome_code VARCHAR)"}, {"answer": "SELECT outcome_code, COUNT(*) FROM mailshot_customers GROUP BY outcome_code", "question": "Show the outcome code of mailshots along with the number of mailshots in each outcome code.", "context": "CREATE TABLE mailshot_customers (outcome_code VARCHAR)"}, {"answer": "SELECT T2.customer_name FROM mailshot_customers AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id WHERE outcome_code = 'Order' GROUP BY T1.customer_id HAVING COUNT(*) >= 2", "question": "Show the names of customers who have at least 2 mailshots with outcome code 'Order'.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_id VARCHAR)"}, {"answer": "SELECT T2.customer_name FROM mailshot_customers AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the names of customers who have the most mailshots.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_id VARCHAR)"}, {"answer": "SELECT T2.customer_name, T2.payment_method FROM mailshot_customers AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.outcome_code = 'Order' INTERSECT SELECT T2.customer_name, T2.payment_method FROM mailshot_customers AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.outcome_code = 'No Response'", "question": "What are the name and payment method of customers who have both mailshots in 'Order' outcome and mailshots in 'No Response' outcome.", "context": "CREATE TABLE customers (customer_name VARCHAR, payment_method VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_id VARCHAR, outcome_code VARCHAR)"}, {"answer": "SELECT T2.premises_type, T1.address_type_code FROM customer_addresses AS T1 JOIN premises AS T2 ON T1.premise_id = T2.premise_id", "question": "Show the premise type and address type code for all customer addresses.", "context": "CREATE TABLE premises (premises_type VARCHAR, premise_id VARCHAR); CREATE TABLE customer_addresses (address_type_code VARCHAR, premise_id VARCHAR)"}, {"answer": "SELECT DISTINCT address_type_code FROM customer_addresses", "question": "What are the distinct address type codes for all customer addresses?", "context": "CREATE TABLE customer_addresses (address_type_code VARCHAR)"}, {"answer": "SELECT order_shipping_charges, customer_id FROM customer_orders WHERE order_status_code = 'Cancelled' OR order_status_code = 'Paid'", "question": "Show the shipping charge and customer id for customer orders with order status Cancelled or Paid.", "context": "CREATE TABLE customer_orders (order_shipping_charges VARCHAR, customer_id VARCHAR, order_status_code VARCHAR)"}, {"answer": "SELECT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE shipping_method_code = 'FedEx' AND order_status_code = 'Paid'", "question": "Show the names of customers having an order with shipping method FedEx and order status Paid.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM COURSE", "question": "How many courses are there in total?", "context": "CREATE TABLE COURSE (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM COURSE WHERE Credits > 2", "question": "How many courses have more than 2 credits?", "context": "CREATE TABLE COURSE (Credits INTEGER)"}, {"answer": "SELECT CName FROM COURSE WHERE Credits = 1", "question": "List all names of courses with 1 credit?", "context": "CREATE TABLE COURSE (CName VARCHAR, Credits VARCHAR)"}, {"answer": "SELECT CName FROM COURSE WHERE Days = \"MTW\"", "question": "Which courses are taught on days MTW?", "context": "CREATE TABLE COURSE (CName VARCHAR, Days VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM DEPARTMENT WHERE Division = \"AS\"", "question": "What is the number of departments in Division \"AS\"?", "context": "CREATE TABLE DEPARTMENT (Division VARCHAR)"}, {"answer": "SELECT DPhone FROM DEPARTMENT WHERE Room = 268", "question": "What are the phones of departments in Room 268?", "context": "CREATE TABLE DEPARTMENT (DPhone VARCHAR, Room VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT StuID) FROM ENROLLED_IN WHERE Grade = \"B\"", "question": "Find the number of students that have at least one grade \"B\".", "context": "CREATE TABLE ENROLLED_IN (StuID VARCHAR, Grade VARCHAR)"}, {"answer": "SELECT MAX(gradepoint), MIN(gradepoint) FROM GRADECONVERSION", "question": "Find the max and min grade point for all letter grade.", "context": "CREATE TABLE GRADECONVERSION (gradepoint INTEGER)"}, {"answer": "SELECT DISTINCT Fname FROM STUDENT WHERE Fname LIKE '%a%'", "question": "Find the first names of students whose first names contain letter \"a\".", "context": "CREATE TABLE STUDENT (Fname VARCHAR)"}, {"answer": "SELECT Fname, Lname FROM FACULTY WHERE sex = \"M\" AND Building = \"NEB\"", "question": "Find the first names and last names of male (sex is M) faculties who live in building NEB.", "context": "CREATE TABLE FACULTY (Fname VARCHAR, Lname VARCHAR, sex VARCHAR, Building VARCHAR)"}, {"answer": "SELECT Room FROM FACULTY WHERE Rank = \"Professor\" AND Building = \"NEB\"", "question": "Find the rooms of faculties with rank professor who live in building NEB.", "context": "CREATE TABLE FACULTY (Room VARCHAR, Rank VARCHAR, Building VARCHAR)"}, {"answer": "SELECT DName FROM DEPARTMENT WHERE Building = \"Mergenthaler\"", "question": "Find the department name that is in Building \"Mergenthaler\".", "context": "CREATE TABLE DEPARTMENT (DName VARCHAR, Building VARCHAR)"}, {"answer": "SELECT * FROM COURSE ORDER BY Credits", "question": "List all information about courses sorted by credits in the ascending order.", "context": "CREATE TABLE COURSE (Credits VARCHAR)"}, {"answer": "SELECT CName FROM COURSE ORDER BY Credits", "question": "List the course name of courses sorted by credits.", "context": "CREATE TABLE COURSE (CName VARCHAR, Credits VARCHAR)"}, {"answer": "SELECT Fname FROM STUDENT ORDER BY Age DESC", "question": "Find the first name of students in the descending order of age.", "context": "CREATE TABLE STUDENT (Fname VARCHAR, Age VARCHAR)"}, {"answer": "SELECT LName FROM STUDENT WHERE Sex = \"F\" ORDER BY Age DESC", "question": "Find the last name of female (sex is F) students in the descending order of age.", "context": "CREATE TABLE STUDENT (LName VARCHAR, Sex VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Lname FROM FACULTY WHERE Building = \"Barton\" ORDER BY Lname", "question": "Find the last names of faculties in building Barton in alphabetic order.", "context": "CREATE TABLE FACULTY (Lname VARCHAR, Building VARCHAR)"}, {"answer": "SELECT Fname FROM FACULTY WHERE Rank = \"Professor\" ORDER BY Fname", "question": "Find the first names of faculties of rank Professor in alphabetic order.", "context": "CREATE TABLE FACULTY (Fname VARCHAR, Rank VARCHAR)"}, {"answer": "SELECT T1.DName FROM DEPARTMENT AS T1 JOIN MINOR_IN AS T2 ON T1.DNO = T2.DNO GROUP BY T2.DNO ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of the department that has the biggest number of students minored in?", "context": "CREATE TABLE DEPARTMENT (DName VARCHAR, DNO VARCHAR); CREATE TABLE MINOR_IN (DNO VARCHAR)"}, {"answer": "SELECT DName FROM DEPARTMENT EXCEPT SELECT T1.DName FROM DEPARTMENT AS T1 JOIN MINOR_IN AS T2 ON T1.DNO = T2.DNO", "question": "Find the name of the department that has no students minored in?", "context": "CREATE TABLE DEPARTMENT (DName VARCHAR, DNO VARCHAR); CREATE TABLE MINOR_IN (DNO VARCHAR); CREATE TABLE DEPARTMENT (DName VARCHAR)"}, {"answer": "SELECT T1.DName FROM DEPARTMENT AS T1 JOIN MEMBER_OF AS T2 ON T1.DNO = T2.DNO GROUP BY T2.DNO ORDER BY COUNT(*) LIMIT 1", "question": "Find the name of the department that has the fewest members.", "context": "CREATE TABLE MEMBER_OF (DNO VARCHAR); CREATE TABLE DEPARTMENT (DName VARCHAR, DNO VARCHAR)"}, {"answer": "SELECT Rank FROM FACULTY GROUP BY Rank ORDER BY COUNT(*) LIMIT 1", "question": "Find the rank of the faculty that the fewest faculties belong to.", "context": "CREATE TABLE FACULTY (Rank VARCHAR)"}, {"answer": "SELECT T2.Fname, T2.Lname FROM COURSE AS T1 JOIN FACULTY AS T2 ON T1.Instructor = T2.FacID GROUP BY T1.Instructor ORDER BY COUNT(*) DESC LIMIT 3", "question": "What are the first and last names of the instructors who teach the top 3 number of courses?", "context": "CREATE TABLE COURSE (Instructor VARCHAR); CREATE TABLE FACULTY (Fname VARCHAR, Lname VARCHAR, FacID VARCHAR)"}, {"answer": "SELECT T2.Building FROM COURSE AS T1 JOIN FACULTY AS T2 ON T1.Instructor = T2.FacID GROUP BY T1.Instructor ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which building does the instructor who teaches the most number of courses live in?", "context": "CREATE TABLE COURSE (Instructor VARCHAR); CREATE TABLE FACULTY (Building VARCHAR, FacID VARCHAR)"}, {"answer": "SELECT T1.CName FROM COURSE AS T1 JOIN ENROLLED_IN AS T2 ON T1.CID = T2.CID GROUP BY T2.CID HAVING COUNT(*) >= 5", "question": "What are the name of courses that have at least five enrollments?", "context": "CREATE TABLE ENROLLED_IN (CID VARCHAR); CREATE TABLE COURSE (CName VARCHAR, CID VARCHAR)"}, {"answer": "SELECT T2.Fname, T2.Lname FROM COURSE AS T1 JOIN FACULTY AS T2 ON T1.Instructor = T2.FacID WHERE T1.CName = \"COMPUTER LITERACY\"", "question": "Find the first name and last name of the instructor of course that has course name", "context": "CREATE TABLE FACULTY (Fname VARCHAR, Lname VARCHAR, FacID VARCHAR); CREATE TABLE COURSE (Instructor VARCHAR, CName VARCHAR)"}, {"answer": "SELECT T2.Dname, T2.Room FROM COURSE AS T1 JOIN DEPARTMENT AS T2 ON T1.DNO = T2.DNO WHERE T1.CName = \"INTRODUCTION TO COMPUTER SCIENCE\"", "question": "Find the department name and room of the course INTRODUCTION TO COMPUTER SCIENCE.", "context": "CREATE TABLE COURSE (DNO VARCHAR, CName VARCHAR); CREATE TABLE DEPARTMENT (Dname VARCHAR, Room VARCHAR, DNO VARCHAR)"}, {"answer": "SELECT T3.Fname, T3.LName, T2.gradepoint FROM ENROLLED_IN AS T1 JOIN GRADECONVERSION AS T2 JOIN STUDENT AS T3 ON T1.Grade = T2.lettergrade AND T1.StuID = T3.StuID", "question": "Find the student first and last names and grade points of all enrollments.", "context": "CREATE TABLE ENROLLED_IN (Grade VARCHAR, StuID VARCHAR); CREATE TABLE STUDENT (Fname VARCHAR, LName VARCHAR, StuID VARCHAR); CREATE TABLE GRADECONVERSION (gradepoint VARCHAR, lettergrade VARCHAR)"}, {"answer": "SELECT DISTINCT T3.Fname FROM ENROLLED_IN AS T1 JOIN GRADECONVERSION AS T2 JOIN STUDENT AS T3 ON T1.Grade = T2.lettergrade AND T1.StuID = T3.StuID WHERE T2.gradepoint >= 3.8", "question": "Find the distinct student first names of all students that have grade point at least 3.8 in one course.", "context": "CREATE TABLE ENROLLED_IN (Grade VARCHAR, StuID VARCHAR); CREATE TABLE STUDENT (Fname VARCHAR, StuID VARCHAR); CREATE TABLE GRADECONVERSION (gradepoint VARCHAR, lettergrade VARCHAR)"}, {"answer": "SELECT T1.Fname, T1.Lname FROM FACULTY AS T1 JOIN MEMBER_OF AS T2 ON T1.FacID = T2.FacID WHERE T2.DNO = 520", "question": "Find the full names of faculties who are members of department with department number 520.", "context": "CREATE TABLE FACULTY (Fname VARCHAR, Lname VARCHAR, FacID VARCHAR); CREATE TABLE MEMBER_OF (FacID VARCHAR, DNO VARCHAR)"}, {"answer": "SELECT T2.Fname, T2.Lname FROM MINOR_IN AS T1 JOIN STUDENT AS T2 ON T1.StuID = T2.StuID WHERE T1.DNO = 140", "question": "What are the first names and last names of the students that minor in the department with DNO 140.", "context": "CREATE TABLE STUDENT (Fname VARCHAR, Lname VARCHAR, StuID VARCHAR); CREATE TABLE MINOR_IN (StuID VARCHAR, DNO VARCHAR)"}, {"answer": "SELECT T2.Lname FROM DEPARTMENT AS T1 JOIN FACULTY AS T2 ON T1.DNO = T3.DNO JOIN MEMBER_OF AS T3 ON T2.FacID = T3.FacID WHERE T1.DName = \"Computer Science\"", "question": "Find the last names of faculties who are members of computer science department.", "context": "CREATE TABLE DEPARTMENT (DNO VARCHAR, DName VARCHAR); CREATE TABLE MEMBER_OF (DNO VARCHAR, FacID VARCHAR); CREATE TABLE FACULTY (Lname VARCHAR, FacID VARCHAR)"}, {"answer": "SELECT AVG(T2.gradepoint) FROM ENROLLED_IN AS T1 JOIN GRADECONVERSION AS T2 JOIN STUDENT AS T3 ON T1.Grade = T2.lettergrade AND T1.StuID = T3.StuID WHERE T3.LName = \"Smith\"", "question": "Find the average grade point of student whose last name is Smith.", "context": "CREATE TABLE ENROLLED_IN (Grade VARCHAR, StuID VARCHAR); CREATE TABLE STUDENT (LName VARCHAR, StuID VARCHAR); CREATE TABLE GRADECONVERSION (gradepoint INTEGER, lettergrade VARCHAR)"}, {"answer": "SELECT MAX(T2.gradepoint), MIN(T2.gradepoint) FROM ENROLLED_IN AS T1 JOIN GRADECONVERSION AS T2 JOIN STUDENT AS T3 ON T1.Grade = T2.lettergrade AND T1.StuID = T3.StuID WHERE T3.city_code = \"NYC\"", "question": "What is the maximum and minimum grade point of students who live in NYC?", "context": "CREATE TABLE ENROLLED_IN (Grade VARCHAR, StuID VARCHAR); CREATE TABLE STUDENT (city_code VARCHAR, StuID VARCHAR); CREATE TABLE GRADECONVERSION (gradepoint INTEGER, lettergrade VARCHAR)"}, {"answer": "SELECT CName FROM COURSE WHERE Credits = 3 UNION SELECT CName FROM COURSE WHERE Credits = 1 AND Hours = 4", "question": "Find the names of courses that have either 3 credits or 1 credit but 4 hours.", "context": "CREATE TABLE COURSE (CName VARCHAR, Credits VARCHAR, Hours VARCHAR)"}, {"answer": "SELECT DName FROM DEPARTMENT WHERE Division = \"AS\" UNION SELECT DName FROM DEPARTMENT WHERE Division = \"EN\" AND Building = \"NEB\"", "question": "Find the names of departments that are either in division AS or in division EN and in Building NEB.", "context": "CREATE TABLE DEPARTMENT (DName VARCHAR, Division VARCHAR, Building VARCHAR)"}, {"answer": "SELECT Fname FROM STUDENT WHERE NOT StuID IN (SELECT StuID FROM ENROLLED_IN)", "question": "Find the first name of students not enrolled in any course.", "context": "CREATE TABLE STUDENT (Fname VARCHAR, StuID VARCHAR); CREATE TABLE ENROLLED_IN (Fname VARCHAR, StuID VARCHAR)"}, {"answer": "SELECT product_id FROM product_suppliers ORDER BY total_amount_purchased DESC LIMIT 3", "question": "What are the ids of the top three products that were purchased in the largest amount?", "context": "CREATE TABLE product_suppliers (product_id VARCHAR, total_amount_purchased VARCHAR)"}, {"answer": "SELECT product_id, product_type_code FROM products ORDER BY product_price LIMIT 1", "question": "What are the product id and product type of the cheapest product?", "context": "CREATE TABLE products (product_id VARCHAR, product_type_code VARCHAR, product_price VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT product_type_code) FROM products", "question": "Find the number of different product types.", "context": "CREATE TABLE products (product_type_code VARCHAR)"}, {"answer": "SELECT T1.address_details FROM addresses AS T1 JOIN customer_addresses AS T2 ON T1.address_id = T2.address_id WHERE T2.customer_id = 10", "question": "Return the address of customer 10.", "context": "CREATE TABLE customer_addresses (address_id VARCHAR, customer_id VARCHAR); CREATE TABLE addresses (address_details VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT T1.staff_id, T1.staff_gender FROM staff AS T1 JOIN staff_department_assignments AS T2 ON T1.staff_id = T2.staff_id WHERE T2.job_title_code = \"Department Manager\"", "question": "What are the staff ids and genders of all staffs whose job title is Department Manager?", "context": "CREATE TABLE staff_department_assignments (staff_id VARCHAR, job_title_code VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_gender VARCHAR)"}, {"answer": "SELECT payment_method_code, COUNT(*) FROM customers GROUP BY payment_method_code", "question": "For each payment method, return how many customers use it.", "context": "CREATE TABLE customers (payment_method_code VARCHAR)"}, {"answer": "SELECT product_id FROM order_items GROUP BY product_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the id of the product that was ordered the most often?", "context": "CREATE TABLE order_items (product_id VARCHAR)"}, {"answer": "SELECT T1.customer_name, T1.customer_phone, T1.customer_email FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T2.customer_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What are the name, phone number and email address of the customer who made the largest number of orders?", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_email VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR)"}, {"answer": "SELECT product_type_code, AVG(product_price) FROM products GROUP BY product_type_code", "question": "What is the average price for each type of product?", "context": "CREATE TABLE products (product_type_code VARCHAR, product_price INTEGER)"}, {"answer": "SELECT COUNT(*) FROM department_stores AS T1 JOIN department_store_chain AS T2 ON T1.dept_store_chain_id = T2.dept_store_chain_id WHERE T2.dept_store_chain_name = \"South\"", "question": "How many department stores does the store chain South have?", "context": "CREATE TABLE department_stores (dept_store_chain_id VARCHAR); CREATE TABLE department_store_chain (dept_store_chain_id VARCHAR, dept_store_chain_name VARCHAR)"}, {"answer": "SELECT T1.staff_name, T2.job_title_code FROM staff AS T1 JOIN staff_department_assignments AS T2 ON T1.staff_id = T2.staff_id ORDER BY T2.date_assigned_to DESC LIMIT 1", "question": "What is the name and job title of the staff who was assigned the latest?", "context": "CREATE TABLE staff (staff_name VARCHAR, staff_id VARCHAR); CREATE TABLE staff_department_assignments (job_title_code VARCHAR, staff_id VARCHAR, date_assigned_to VARCHAR)"}, {"answer": "SELECT T2.product_type_code, T2.product_name, T2.product_price FROM product_suppliers AS T1 JOIN products AS T2 ON T1.product_id = T2.product_id WHERE T1.supplier_id = 3", "question": "Give me the product type, name and price for all the products supplied by supplier id 3.", "context": "CREATE TABLE products (product_type_code VARCHAR, product_name VARCHAR, product_price VARCHAR, product_id VARCHAR); CREATE TABLE product_suppliers (product_id VARCHAR, supplier_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status_code = \"Pending\" ORDER BY T2.customer_id", "question": "Return the distinct name of customers whose order status is Pending, in the order of customer id.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_status_code VARCHAR)"}, {"answer": "SELECT T1.customer_name, T1.customer_address FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status_code = \"New\" INTERSECT SELECT T1.customer_name, T1.customer_address FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status_code = \"Pending\"", "question": "Find the name and address of the customers who have both New and Pending orders.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_address VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_status_code VARCHAR)"}, {"answer": "SELECT T1.product_id FROM product_suppliers AS T1 JOIN products AS T2 ON T1.product_id = T2.product_id WHERE T1.supplier_id = 2 AND T2.product_price > (SELECT AVG(product_price) FROM products)", "question": "Return ids of all the products that are supplied by supplier id 2 and are more expensive than the average price of all products.", "context": "CREATE TABLE products (product_id VARCHAR, product_price INTEGER); CREATE TABLE product_suppliers (product_id VARCHAR, supplier_id VARCHAR); CREATE TABLE products (product_price INTEGER)"}, {"answer": "SELECT T2.dept_store_id, T2.store_name FROM departments AS T1 JOIN department_stores AS T2 ON T1.dept_store_id = T2.dept_store_id WHERE T1.department_name = \"marketing\" INTERSECT SELECT T2.dept_store_id, T2.store_name FROM departments AS T1 JOIN department_stores AS T2 ON T1.dept_store_id = T2.dept_store_id WHERE T1.department_name = \"managing\"", "question": "What is the id and name of the department store that has both marketing and managing department?", "context": "CREATE TABLE department_stores (dept_store_id VARCHAR, store_name VARCHAR); CREATE TABLE departments (dept_store_id VARCHAR, department_name VARCHAR)"}, {"answer": "SELECT dept_store_chain_id FROM department_stores GROUP BY dept_store_chain_id ORDER BY COUNT(*) DESC LIMIT 2", "question": "What are the ids of the two department store chains with the largest number of department stores?", "context": "CREATE TABLE department_stores (dept_store_chain_id VARCHAR)"}, {"answer": "SELECT department_id FROM staff_department_assignments GROUP BY department_id ORDER BY COUNT(*) LIMIT 1", "question": "What is the id of the department with the least number of staff?", "context": "CREATE TABLE staff_department_assignments (department_id VARCHAR)"}, {"answer": "SELECT product_type_code, MAX(product_price), MIN(product_price) FROM products GROUP BY product_type_code", "question": "For each product type, return the maximum and minimum price.", "context": "CREATE TABLE products (product_type_code VARCHAR, product_price INTEGER)"}, {"answer": "SELECT product_type_code FROM products GROUP BY product_type_code HAVING AVG(product_price) > (SELECT AVG(product_price) FROM products)", "question": "Find the product type whose average price is higher than the average price of all products.", "context": "CREATE TABLE products (product_type_code VARCHAR, product_price INTEGER)"}, {"answer": "SELECT T1.staff_id, T1.staff_name FROM staff AS T1 JOIN Staff_Department_Assignments AS T2 ON T1.staff_id = T2.staff_id ORDER BY date_assigned_to - date_assigned_from LIMIT 1", "question": "Find the id and name of the staff who has been assigned for the shortest period.", "context": "CREATE TABLE Staff_Department_Assignments (staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_name VARCHAR)"}, {"answer": "SELECT product_name, product_id FROM products WHERE product_price BETWEEN 600 AND 700", "question": "Return the names and ids of all products whose price is between 600 and 700.", "context": "CREATE TABLE products (product_name VARCHAR, product_id VARCHAR, product_price INTEGER)"}, {"answer": "SELECT DISTINCT customer_id FROM Customer_Orders WHERE order_date > (SELECT MIN(order_date) FROM Customer_Orders WHERE order_status_code = \"Cancelled\")", "question": "Find the ids of all distinct customers who made order after some orders that were Cancelled.", "context": "CREATE TABLE Customer_Orders (customer_id VARCHAR, order_date INTEGER, order_status_code VARCHAR)"}, {"answer": "SELECT staff_id FROM Staff_Department_Assignments WHERE date_assigned_to < (SELECT MAX(date_assigned_to) FROM Staff_Department_Assignments WHERE job_title_code = 'Clerical Staff')", "question": "What is id of the staff who had a Staff Department Assignment earlier than any Clerical Staff?", "context": "CREATE TABLE Staff_Department_Assignments (staff_id VARCHAR, date_assigned_to INTEGER, job_title_code VARCHAR)"}, {"answer": "SELECT customer_name, customer_id FROM customers WHERE customer_address LIKE \"%TN%\"", "question": "What are the names and ids of customers whose address contains TN?", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR, customer_address VARCHAR)"}, {"answer": "SELECT T1.staff_name, T1.staff_gender FROM staff AS T1 JOIN staff_department_assignments AS T2 ON T1.staff_id = T2.staff_id WHERE T2.date_assigned_from LIKE \"2016%\"", "question": "Return the name and gender of the staff who was assigned in 2016.", "context": "CREATE TABLE staff (staff_name VARCHAR, staff_gender VARCHAR, staff_id VARCHAR); CREATE TABLE staff_department_assignments (staff_id VARCHAR, date_assigned_from VARCHAR)"}, {"answer": "SELECT T1.staff_name FROM staff AS T1 JOIN staff_department_assignments AS T2 ON T1.staff_id = T2.staff_id GROUP BY T2.staff_id HAVING COUNT(*) > 1", "question": "List the name of staff who has been assigned multiple jobs.", "context": "CREATE TABLE staff (staff_name VARCHAR, staff_id VARCHAR); CREATE TABLE staff_department_assignments (staff_id VARCHAR)"}, {"answer": "SELECT T1.supplier_name, T1.supplier_phone FROM Suppliers AS T1 JOIN supplier_addresses AS T2 ON T1.supplier_id = T2.supplier_id JOIN addresses AS T3 ON T2.address_id = T3.address_id ORDER BY T3.address_details", "question": "List the name and phone number of all suppliers in the alphabetical order of their addresses.", "context": "CREATE TABLE addresses (address_id VARCHAR, address_details VARCHAR); CREATE TABLE supplier_addresses (supplier_id VARCHAR, address_id VARCHAR); CREATE TABLE Suppliers (supplier_name VARCHAR, supplier_phone VARCHAR, supplier_id VARCHAR)"}, {"answer": "SELECT customer_phone FROM customers UNION SELECT supplier_phone FROM suppliers", "question": "What are the phone numbers of all customers and suppliers.", "context": "CREATE TABLE suppliers (customer_phone VARCHAR, supplier_phone VARCHAR); CREATE TABLE customers (customer_phone VARCHAR, supplier_phone VARCHAR)"}, {"answer": "SELECT product_id FROM Order_Items GROUP BY product_id HAVING COUNT(*) > 3 UNION SELECT product_id FROM Product_Suppliers GROUP BY product_id HAVING SUM(total_amount_purchased) > 80000", "question": "Return the ids of all products that were ordered more than three times or supplied more than 80000.", "context": "CREATE TABLE Order_Items (product_id VARCHAR, total_amount_purchased INTEGER); CREATE TABLE Product_Suppliers (product_id VARCHAR, total_amount_purchased INTEGER)"}, {"answer": "SELECT product_id, product_name FROM products WHERE product_price < 600 OR product_price > 900", "question": "What are id and name of the products whose price is lower than 600 or higher than 900?", "context": "CREATE TABLE products (product_id VARCHAR, product_name VARCHAR, product_price VARCHAR)"}, {"answer": "SELECT supplier_id FROM Product_Suppliers GROUP BY supplier_id HAVING AVG(total_amount_purchased) > 50000 OR AVG(total_amount_purchased) < 30000", "question": "Find the id of suppliers whose average amount purchased for each product is above 50000 or below 30000.", "context": "CREATE TABLE Product_Suppliers (supplier_id VARCHAR, total_amount_purchased INTEGER)"}, {"answer": "SELECT AVG(total_amount_purchased), AVG(total_value_purchased) FROM Product_Suppliers WHERE supplier_id = (SELECT supplier_id FROM Product_Suppliers GROUP BY supplier_id ORDER BY COUNT(*) DESC LIMIT 1)", "question": "What are the average amount purchased and value purchased for the supplier who supplies the most products.", "context": "CREATE TABLE Product_Suppliers (total_amount_purchased INTEGER, total_value_purchased INTEGER, supplier_id VARCHAR)"}, {"answer": "SELECT MAX(customer_code), MIN(customer_code) FROM Customers", "question": "What is the largest and smallest customer codes?", "context": "CREATE TABLE Customers (customer_code INTEGER)"}, {"answer": "SELECT DISTINCT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id JOIN order_items AS T3 ON T2.order_id = T3.order_id JOIN products AS T4 ON T3.product_id = T4.product_id WHERE T4.product_name = \"keyboard\"", "question": "List the names of all the distinct customers who bought a keyboard.", "context": "CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.supplier_name, T1.supplier_phone FROM suppliers AS T1 JOIN product_suppliers AS T2 ON T1.supplier_id = T2.supplier_id JOIN products AS T3 ON T2.product_id = T3.product_id WHERE T3.product_name = \"red jeans\"", "question": "List the names and phone numbers of all the distinct suppliers who supply red jeans.", "context": "CREATE TABLE product_suppliers (supplier_id VARCHAR, product_id VARCHAR); CREATE TABLE suppliers (supplier_name VARCHAR, supplier_phone VARCHAR, supplier_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT MAX(product_price), MIN(product_price), product_type_code FROM products GROUP BY product_type_code ORDER BY product_type_code", "question": "What are the highest and lowest prices of products, grouped by and alphabetically ordered by product type?", "context": "CREATE TABLE products (product_type_code VARCHAR, product_price INTEGER)"}, {"answer": "SELECT order_id, customer_id FROM customer_orders WHERE order_status_code = \"Cancelled\" ORDER BY order_date", "question": "List the order id, customer id for orders in Cancelled status, ordered by their order dates.", "context": "CREATE TABLE customer_orders (order_id VARCHAR, customer_id VARCHAR, order_status_code VARCHAR, order_date VARCHAR)"}, {"answer": "SELECT DISTINCT T3.product_name FROM customer_orders AS T1 JOIN order_items AS T2 ON T1.order_id = T2.order_id JOIN products AS T3 ON T2.product_id = T3.product_id GROUP BY T3.product_id HAVING COUNT(DISTINCT T1.customer_id) >= 2", "question": "Find the names of products that were bought by at least two distinct customers.", "context": "CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE customer_orders (order_id VARCHAR, customer_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id JOIN order_items AS T3 ON T2.order_id = T3.order_id GROUP BY T1.customer_id HAVING COUNT(DISTINCT T3.product_id) >= 3", "question": "Find the names of customers who have bought by at least three distinct products.", "context": "CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT T1.staff_name, T1.staff_gender FROM staff AS T1 JOIN Staff_Department_Assignments AS T2 ON T1.staff_id = T2.staff_id WHERE T2.job_title_code = \"Sales Person\" EXCEPT SELECT T1.staff_name, T1.staff_gender FROM staff AS T1 JOIN Staff_Department_Assignments AS T2 ON T1.staff_id = T2.staff_id WHERE T2.job_title_code = \"Clerical Staff\"", "question": "Find the name and gender of the staff who has been assigned the job of Sales Person but never Clerical Staff.", "context": "CREATE TABLE staff (staff_name VARCHAR, staff_gender VARCHAR, staff_id VARCHAR); CREATE TABLE Staff_Department_Assignments (staff_id VARCHAR, job_title_code VARCHAR)"}, {"answer": "SELECT customer_id, customer_name FROM customers WHERE customer_address LIKE \"%WY%\" AND payment_method_code <> \"Credit Card\"", "question": "Find the id and name of customers whose address contains WY state and do not use credit card for payment.", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR, customer_address VARCHAR, payment_method_code VARCHAR)"}, {"answer": "SELECT AVG(product_price) FROM products WHERE product_type_code = 'Clothes'", "question": "Find the average price of all product clothes.", "context": "CREATE TABLE products (product_price INTEGER, product_type_code VARCHAR)"}, {"answer": "SELECT product_name FROM products WHERE product_type_code = 'Hardware' ORDER BY product_price DESC LIMIT 1", "question": "Find the name of the most expensive hardware product.", "context": "CREATE TABLE products (product_name VARCHAR, product_type_code VARCHAR, product_price VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM aircraft", "question": "How many aircrafts are there?", "context": "CREATE TABLE aircraft (Id VARCHAR)"}, {"answer": "SELECT Description FROM aircraft", "question": "List the description of all aircrafts.", "context": "CREATE TABLE aircraft (Description VARCHAR)"}, {"answer": "SELECT AVG(International_Passengers) FROM airport", "question": "What is the average number of international passengers of all airports?", "context": "CREATE TABLE airport (International_Passengers INTEGER)"}, {"answer": "SELECT International_Passengers, Domestic_Passengers FROM airport WHERE Airport_Name = \"London Heathrow\"", "question": "What are the number of international and domestic passengers of the airport named London \"Heathrow\"?", "context": "CREATE TABLE airport (International_Passengers VARCHAR, Domestic_Passengers VARCHAR, Airport_Name VARCHAR)"}, {"answer": "SELECT SUM(Domestic_Passengers) FROM airport WHERE Airport_Name LIKE \"%London%\"", "question": "What are the total number of Domestic Passengers of airports that contain the word \"London\".", "context": "CREATE TABLE airport (Domestic_Passengers INTEGER, Airport_Name VARCHAR)"}, {"answer": "SELECT MAX(Transit_Passengers), MIN(Transit_Passengers) FROM airport", "question": "What are the maximum and minimum number of transit passengers of all aiports.", "context": "CREATE TABLE airport (Transit_Passengers INTEGER)"}, {"answer": "SELECT Name FROM pilot WHERE Age >= 25", "question": "What are the name of pilots aged 25 or older?", "context": "CREATE TABLE pilot (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Name FROM pilot ORDER BY Name", "question": "List all pilot names in ascending alphabetical order.", "context": "CREATE TABLE pilot (Name VARCHAR)"}, {"answer": "SELECT Name FROM pilot WHERE Age <= 30 ORDER BY Name DESC", "question": "List names of all pilot aged 30 or younger in descending alphabetical order.", "context": "CREATE TABLE pilot (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT T1.Aircraft FROM aircraft AS T1 JOIN airport_aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN airport AS T3 ON T2.Airport_ID = T3.Airport_ID WHERE T3.Airport_Name = \"London Gatwick\"", "question": "Please show the names of aircrafts associated with airport with name \"London Gatwick\".", "context": "CREATE TABLE airport (Airport_ID VARCHAR, Airport_Name VARCHAR); CREATE TABLE aircraft (Aircraft VARCHAR, Aircraft_ID VARCHAR); CREATE TABLE airport_aircraft (Aircraft_ID VARCHAR, Airport_ID VARCHAR)"}, {"answer": "SELECT T1.Aircraft, T1.Description FROM aircraft AS T1 JOIN airport_aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN airport AS T3 ON T2.Airport_ID = T3.Airport_ID WHERE T3.Total_Passengers > 10000000", "question": "Please show the names and descriptions of aircrafts associated with airports that have a total number of passengers bigger than 10000000.", "context": "CREATE TABLE airport (Airport_ID VARCHAR, Total_Passengers INTEGER); CREATE TABLE aircraft (Aircraft VARCHAR, Description VARCHAR, Aircraft_ID VARCHAR); CREATE TABLE airport_aircraft (Aircraft_ID VARCHAR, Airport_ID VARCHAR)"}, {"answer": "SELECT AVG(T3.Total_Passengers) FROM aircraft AS T1 JOIN airport_aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN airport AS T3 ON T2.Airport_ID = T3.Airport_ID WHERE T1.Aircraft = \"Robinson R-22\"", "question": "What is the average total number of passengers of airports that are associated with aircraft \"Robinson R-22\"?", "context": "CREATE TABLE airport (Total_Passengers INTEGER, Airport_ID VARCHAR); CREATE TABLE aircraft (Aircraft_ID VARCHAR, Aircraft VARCHAR); CREATE TABLE airport_aircraft (Aircraft_ID VARCHAR, Airport_ID VARCHAR)"}, {"answer": "SELECT T2.Location, T1.Aircraft FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft", "question": "Please list the location and the winning aircraft name.", "context": "CREATE TABLE MATCH (Location VARCHAR, Winning_Aircraft VARCHAR); CREATE TABLE aircraft (Aircraft VARCHAR, Aircraft_ID VARCHAR)"}, {"answer": "SELECT T1.Aircraft FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft ORDER BY COUNT(*) DESC LIMIT 1", "question": "List the name of the aircraft that has been named winning aircraft the most number of times.", "context": "CREATE TABLE MATCH (Winning_Aircraft VARCHAR); CREATE TABLE aircraft (Aircraft VARCHAR, Aircraft_ID VARCHAR)"}, {"answer": "SELECT T1.Aircraft, COUNT(*) FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft", "question": "List the names of aircrafts and the number of times it won matches.", "context": "CREATE TABLE MATCH (Winning_Aircraft VARCHAR); CREATE TABLE aircraft (Aircraft VARCHAR, Aircraft_ID VARCHAR)"}, {"answer": "SELECT Name FROM pilot ORDER BY Age DESC", "question": "List names of all pilot in descending order of age.", "context": "CREATE TABLE pilot (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT T1.Aircraft FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft HAVING COUNT(*) >= 2", "question": "List the names of aircrafts and that won matches at least twice.", "context": "CREATE TABLE MATCH (Winning_Aircraft VARCHAR); CREATE TABLE aircraft (Aircraft VARCHAR, Aircraft_ID VARCHAR)"}, {"answer": "SELECT Aircraft FROM aircraft WHERE NOT Aircraft_ID IN (SELECT Winning_Aircraft FROM MATCH)", "question": "List the names of aircrafts and that did not win any match.", "context": "CREATE TABLE aircraft (Aircraft VARCHAR, Aircraft_ID VARCHAR, Winning_Aircraft VARCHAR); CREATE TABLE MATCH (Aircraft VARCHAR, Aircraft_ID VARCHAR, Winning_Aircraft VARCHAR)"}, {"answer": "SELECT T1.Aircraft FROM aircraft AS T1 JOIN airport_aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN airport AS T3 ON T2.Airport_ID = T3.Airport_ID WHERE T3.Airport_Name = \"London Heathrow\" INTERSECT SELECT T1.Aircraft FROM aircraft AS T1 JOIN airport_aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN airport AS T3 ON T2.Airport_ID = T3.Airport_ID WHERE T3.Airport_Name = \"London Gatwick\"", "question": "Show the names of aircrafts that are associated with both an airport named \"London Heathrow\" and an airport named \"London Gatwick\"", "context": "CREATE TABLE airport (Airport_ID VARCHAR, Airport_Name VARCHAR); CREATE TABLE aircraft (Aircraft VARCHAR, Aircraft_ID VARCHAR); CREATE TABLE airport_aircraft (Aircraft_ID VARCHAR, Airport_ID VARCHAR)"}, {"answer": "SELECT * FROM airport ORDER BY International_Passengers DESC LIMIT 1", "question": "Show all information on the airport that has the largest number of international passengers.", "context": "CREATE TABLE airport (International_Passengers VARCHAR)"}, {"answer": "SELECT t1.name, t1.age FROM pilot AS t1 JOIN MATCH AS t2 ON t1.pilot_id = t2.winning_pilot WHERE t1.age < 30 GROUP BY t2.winning_pilot ORDER BY COUNT(*) DESC LIMIT 1", "question": "find the name and age of the pilot who has won the most number of times among the pilots who are younger than 30.", "context": "CREATE TABLE MATCH (winning_pilot VARCHAR); CREATE TABLE pilot (name VARCHAR, age INTEGER, pilot_id VARCHAR)"}, {"answer": "SELECT t1.name, t1.age FROM pilot AS t1 JOIN MATCH AS t2 ON t1.pilot_id = t2.winning_pilot ORDER BY t1.age LIMIT 1", "question": "what is the name and age of the youngest winning pilot?", "context": "CREATE TABLE pilot (name VARCHAR, age VARCHAR, pilot_id VARCHAR); CREATE TABLE MATCH (winning_pilot VARCHAR)"}, {"answer": "SELECT name FROM pilot WHERE NOT pilot_id IN (SELECT Winning_Pilot FROM MATCH WHERE country = 'Australia')", "question": "find the name of pilots who did not win the matches held in the country of Australia.", "context": "CREATE TABLE MATCH (name VARCHAR, pilot_id VARCHAR, Winning_Pilot VARCHAR, country VARCHAR); CREATE TABLE pilot (name VARCHAR, pilot_id VARCHAR, Winning_Pilot VARCHAR, country VARCHAR)"}, {"answer": "SELECT T1.property_id, COUNT(*) FROM properties AS T1 JOIN residents AS T2 ON T1.property_id = T2.property_id GROUP BY T1.property_id", "question": "How many residents does each property have? List property id and resident count.", "context": "CREATE TABLE properties (property_id VARCHAR); CREATE TABLE residents (property_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.service_type_code FROM services AS T1 JOIN organizations AS T2 ON T1.organization_id = T2.organization_id WHERE T2.organization_details = 'Denesik and Sons Party'", "question": "What is the distinct service types that are provided by the organization which has detail 'Denesik and Sons Party'?", "context": "CREATE TABLE services (service_type_code VARCHAR, organization_id VARCHAR); CREATE TABLE organizations (organization_id VARCHAR, organization_details VARCHAR)"}, {"answer": "SELECT T1.resident_id, T1.other_details, COUNT(*) FROM Residents AS T1 JOIN Residents_Services AS T2 ON T1.resident_id = T2.resident_id GROUP BY T1.resident_id ORDER BY COUNT(*) DESC", "question": "How many services has each resident requested? List the resident id, details, and the count in descending order of the count.", "context": "CREATE TABLE Residents_Services (resident_id VARCHAR); CREATE TABLE Residents (resident_id VARCHAR, other_details VARCHAR)"}, {"answer": "SELECT T1.service_id, T1.service_details, COUNT(*) FROM Services AS T1 JOIN Residents_Services AS T2 ON T1.service_id = T2.service_id GROUP BY T1.service_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the maximum number that a certain service is provided? List the service id, details and number.", "context": "CREATE TABLE Services (service_id VARCHAR, service_details VARCHAR); CREATE TABLE Residents_Services (service_id VARCHAR)"}, {"answer": "SELECT T1.thing_id, T1.type_of_Thing_Code, T2.organization_details FROM Things AS T1 JOIN Organizations AS T2 ON T1.organization_id = T2.organization_id", "question": "List the id and type of each thing, and the details of the organization that owns it.", "context": "CREATE TABLE Organizations (organization_details VARCHAR, organization_id VARCHAR); CREATE TABLE Things (thing_id VARCHAR, type_of_Thing_Code VARCHAR, organization_id VARCHAR)"}, {"answer": "SELECT T1.customer_id, T1.customer_details FROM Customers AS T1 JOIN Customer_Events AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 3", "question": "What are the id and details of the customers who have at least 3 events?", "context": "CREATE TABLE Customers (customer_id VARCHAR, customer_details VARCHAR); CREATE TABLE Customer_Events (customer_id VARCHAR)"}, {"answer": "SELECT T2.date_moved_in, T1.customer_id, T1.customer_details FROM Customers AS T1 JOIN Customer_Events AS T2 ON T1.customer_id = T2.customer_id", "question": "What is each customer's move in date, and the corresponding customer id and details?", "context": "CREATE TABLE Customer_Events (date_moved_in VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, customer_details VARCHAR)"}, {"answer": "SELECT T1.Customer_Event_ID, T1.property_id FROM Customer_Events AS T1 JOIN Customer_Event_Notes AS T2 ON T1.Customer_Event_ID = T2.Customer_Event_ID GROUP BY T1.customer_event_id HAVING COUNT(*) BETWEEN 1 AND 3", "question": "Which events have the number of notes between one and three? List the event id and the property id.", "context": "CREATE TABLE Customer_Events (Customer_Event_ID VARCHAR, property_id VARCHAR, customer_event_id VARCHAR); CREATE TABLE Customer_Event_Notes (Customer_Event_ID VARCHAR)"}, {"answer": "SELECT DISTINCT T2.thing_id, T2.Type_of_Thing_Code FROM Timed_Status_of_Things AS T1 JOIN Things AS T2 ON T1.thing_id = T2.thing_id WHERE T1.Status_of_Thing_Code = 'Close' OR T1.Date_and_Date < '2017-06-19 02:59:21'", "question": "What are the distinct id and type of the thing that has the status 'Close' or has a status record before the date '2017-06-19 02:59:21'", "context": "CREATE TABLE Timed_Status_of_Things (thing_id VARCHAR, Status_of_Thing_Code VARCHAR, Date_and_Date VARCHAR); CREATE TABLE Things (thing_id VARCHAR, Type_of_Thing_Code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT T2.Location_Code) FROM Things AS T1 JOIN Timed_Locations_of_Things AS T2 ON T1.thing_id = T2.thing_id WHERE T1.service_details = 'Unsatisfied'", "question": "How many distinct locations have the things with service detail 'Unsatisfied' been located in?", "context": "CREATE TABLE Timed_Locations_of_Things (Location_Code VARCHAR, thing_id VARCHAR); CREATE TABLE Things (thing_id VARCHAR, service_details VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Status_of_Thing_Code) FROM Timed_Status_of_Things", "question": "How many different status codes of things are there?", "context": "CREATE TABLE Timed_Status_of_Things (Status_of_Thing_Code VARCHAR)"}, {"answer": "SELECT organization_id FROM organizations EXCEPT SELECT parent_organization_id FROM organizations", "question": "Which organizations are not a parent organization of others? List the organization id.", "context": "CREATE TABLE organizations (organization_id VARCHAR, parent_organization_id VARCHAR)"}, {"answer": "SELECT MAX(date_moved_in) FROM Residents", "question": "When is the last day any resident moved in?", "context": "CREATE TABLE Residents (date_moved_in INTEGER)"}, {"answer": "SELECT other_details FROM Residents WHERE other_details LIKE '%Miss%'", "question": "What are the resident details containing the substring 'Miss'?", "context": "CREATE TABLE Residents (other_details VARCHAR)"}, {"answer": "SELECT customer_event_id, date_moved_in, property_id FROM customer_events", "question": "List the customer event id and the corresponding move in date and property id.", "context": "CREATE TABLE customer_events (customer_event_id VARCHAR, date_moved_in VARCHAR, property_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM customers WHERE NOT customer_id IN (SELECT customer_id FROM customer_events)", "question": "How many customers did not have any event?", "context": "CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE customer_events (customer_id VARCHAR)"}, {"answer": "SELECT DISTINCT date_moved_in FROM residents", "question": "What are the distinct move in dates of the residents?", "context": "CREATE TABLE residents (date_moved_in VARCHAR)"}, {"answer": "SELECT LOCATION FROM school ORDER BY Enrollment", "question": "List the locations of schools in ascending order of enrollment.", "context": "CREATE TABLE school (LOCATION VARCHAR, Enrollment VARCHAR)"}, {"answer": "SELECT LOCATION FROM school ORDER BY Founded DESC", "question": "List the locations of schools in descending order of founded year.", "context": "CREATE TABLE school (LOCATION VARCHAR, Founded VARCHAR)"}, {"answer": "SELECT Enrollment FROM school WHERE Denomination <> \"Catholic\"", "question": "What are the enrollments of schools whose denomination is not \"Catholic\"?", "context": "CREATE TABLE school (Enrollment VARCHAR, Denomination VARCHAR)"}, {"answer": "SELECT AVG(Enrollment) FROM school", "question": "What is the average enrollment of schools?", "context": "CREATE TABLE school (Enrollment INTEGER)"}, {"answer": "SELECT Team FROM player ORDER BY Team", "question": "What are the teams of the players, sorted in ascending alphabetical order?", "context": "CREATE TABLE player (Team VARCHAR)"}, {"answer": "SELECT Team FROM player ORDER BY Age DESC LIMIT 1", "question": "Find the team of the player of the highest age.", "context": "CREATE TABLE player (Team VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Team FROM player ORDER BY Age DESC LIMIT 5", "question": "List the teams of the players with the top 5 largest ages.", "context": "CREATE TABLE player (Team VARCHAR, Age VARCHAR)"}, {"answer": "SELECT T1.Team, T2.Location FROM player AS T1 JOIN school AS T2 ON T1.School_ID = T2.School_ID", "question": "For each player, show the team and the location of school they belong to.", "context": "CREATE TABLE school (Location VARCHAR, School_ID VARCHAR); CREATE TABLE player (Team VARCHAR, School_ID VARCHAR)"}, {"answer": "SELECT T2.Location FROM player AS T1 JOIN school AS T2 ON T1.School_ID = T2.School_ID GROUP BY T1.School_ID HAVING COUNT(*) > 1", "question": "Show the locations of schools that have more than 1 player.", "context": "CREATE TABLE player (School_ID VARCHAR); CREATE TABLE school (Location VARCHAR, School_ID VARCHAR)"}, {"answer": "SELECT T2.Denomination FROM player AS T1 JOIN school AS T2 ON T1.School_ID = T2.School_ID GROUP BY T1.School_ID ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the denomination of the school that has the most players.", "context": "CREATE TABLE player (School_ID VARCHAR); CREATE TABLE school (Denomination VARCHAR, School_ID VARCHAR)"}, {"answer": "SELECT T1.Location, T2.Nickname FROM school AS T1 JOIN school_details AS T2 ON T1.School_ID = T2.School_ID", "question": "Show locations and nicknames of schools.", "context": "CREATE TABLE school (Location VARCHAR, School_ID VARCHAR); CREATE TABLE school_details (Nickname VARCHAR, School_ID VARCHAR)"}, {"answer": "SELECT Denomination, COUNT(*) FROM school GROUP BY Denomination", "question": "Please show different denominations and the corresponding number of schools.", "context": "CREATE TABLE school (Denomination VARCHAR)"}, {"answer": "SELECT Denomination, COUNT(*) FROM school GROUP BY Denomination ORDER BY COUNT(*) DESC", "question": "Please show different denominations and the corresponding number of schools in descending order.", "context": "CREATE TABLE school (Denomination VARCHAR)"}, {"answer": "SELECT School_Colors FROM school ORDER BY Enrollment DESC LIMIT 1", "question": "List the school color of the school that has the largest enrollment.", "context": "CREATE TABLE school (School_Colors VARCHAR, Enrollment VARCHAR)"}, {"answer": "SELECT LOCATION FROM school WHERE NOT School_ID IN (SELECT School_ID FROM Player)", "question": "List the locations of schools that do not have any player.", "context": "CREATE TABLE school (LOCATION VARCHAR, School_ID VARCHAR); CREATE TABLE Player (LOCATION VARCHAR, School_ID VARCHAR)"}, {"answer": "SELECT Denomination FROM school WHERE Founded < 1890 INTERSECT SELECT Denomination FROM school WHERE Founded > 1900", "question": "Show the denomination shared by schools founded before 1890 and schools founded after 1900", "context": "CREATE TABLE school (Denomination VARCHAR, Founded INTEGER)"}, {"answer": "SELECT Nickname FROM school_details WHERE Division <> \"Division 1\"", "question": "Show the nicknames of schools that are not in division 1.", "context": "CREATE TABLE school_details (Nickname VARCHAR, Division VARCHAR)"}, {"answer": "SELECT Denomination FROM school GROUP BY Denomination HAVING COUNT(*) > 1", "question": "Show the denomination shared by more than one school.", "context": "CREATE TABLE school (Denomination VARCHAR)"}, {"answer": "SELECT DISTINCT District_name FROM district ORDER BY city_area DESC", "question": "Find all the distinct district names ordered by city area in descending.", "context": "CREATE TABLE district (District_name VARCHAR, city_area VARCHAR)"}, {"answer": "SELECT max_page_size FROM product GROUP BY max_page_size HAVING COUNT(*) > 3", "question": "Find the list of page size which have more than 3 product listed", "context": "CREATE TABLE product (max_page_size VARCHAR)"}, {"answer": "SELECT District_name, City_Population FROM district WHERE City_Population BETWEEN 200000 AND 2000000", "question": "Find the name and population of district with population between 200000 and 2000000", "context": "CREATE TABLE district (District_name VARCHAR, City_Population INTEGER)"}, {"answer": "SELECT district_name FROM district WHERE city_area > 10 OR City_Population > 100000", "question": "Find the name all districts with city area greater than 10 or population larger than 100000", "context": "CREATE TABLE district (district_name VARCHAR, city_area VARCHAR, City_Population VARCHAR)"}, {"answer": "SELECT district_name FROM district ORDER BY city_population DESC LIMIT 1", "question": "Which district has the largest population?", "context": "CREATE TABLE district (district_name VARCHAR, city_population VARCHAR)"}, {"answer": "SELECT district_name FROM district ORDER BY city_area LIMIT 1", "question": "Which district has the least area?", "context": "CREATE TABLE district (district_name VARCHAR, city_area VARCHAR)"}, {"answer": "SELECT SUM(city_population) FROM district ORDER BY city_area DESC LIMIT 3", "question": "Find the total population of the top 3 districts with the largest area.", "context": "CREATE TABLE district (city_population INTEGER, city_area VARCHAR)"}, {"answer": "SELECT TYPE, COUNT(*) FROM store GROUP BY TYPE", "question": "Find all types of store and number of them.", "context": "CREATE TABLE store (TYPE VARCHAR)"}, {"answer": "SELECT t1.store_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id WHERE t3.district_name = \"Khanewal District\"", "question": "Find the names of all stores in Khanewal District.", "context": "CREATE TABLE district (district_id VARCHAR, district_name VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR); CREATE TABLE store (store_name VARCHAR, store_id VARCHAR)"}, {"answer": "SELECT t1.store_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id WHERE district_id = (SELECT district_id FROM district ORDER BY city_population DESC LIMIT 1)", "question": "Find all the stores in the district with the most population.", "context": "CREATE TABLE store_district (store_id VARCHAR); CREATE TABLE district (district_id VARCHAR, city_population VARCHAR); CREATE TABLE store (store_name VARCHAR, store_id VARCHAR)"}, {"answer": "SELECT t3.headquartered_city FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id WHERE t1.store_name = \"Blackville\"", "question": "Which city is the headquarter of the store named \"Blackville\" in?", "context": "CREATE TABLE store (store_id VARCHAR, store_name VARCHAR); CREATE TABLE district (headquartered_city VARCHAR, district_id VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR)"}, {"answer": "SELECT t3.headquartered_city, COUNT(*) FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id GROUP BY t3.headquartered_city", "question": "Find the number of stores in each city.", "context": "CREATE TABLE district (headquartered_city VARCHAR, district_id VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR); CREATE TABLE store (store_id VARCHAR)"}, {"answer": "SELECT t3.headquartered_city FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id GROUP BY t3.headquartered_city ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the city with the most number of stores.", "context": "CREATE TABLE district (headquartered_city VARCHAR, district_id VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR); CREATE TABLE store (store_id VARCHAR)"}, {"answer": "SELECT AVG(pages_per_minute_color) FROM product", "question": "What is the average pages per minute color?", "context": "CREATE TABLE product (pages_per_minute_color INTEGER)"}, {"answer": "SELECT t1.product FROM product AS t1 JOIN store_product AS t2 ON t1.product_id = t2.product_id JOIN store AS t3 ON t2.store_id = t3.store_id WHERE t3.store_name = \"Miramichi\"", "question": "What products are available at store named \"Miramichi\"?", "context": "CREATE TABLE store_product (product_id VARCHAR, store_id VARCHAR); CREATE TABLE store (store_id VARCHAR, store_name VARCHAR); CREATE TABLE product (product VARCHAR, product_id VARCHAR)"}, {"answer": "SELECT product FROM product WHERE max_page_size = \"A4\" AND pages_per_minute_color < 5", "question": "Find products with max page size as \"A4\" and pages per minute color smaller than 5.", "context": "CREATE TABLE product (product VARCHAR, max_page_size VARCHAR, pages_per_minute_color VARCHAR)"}, {"answer": "SELECT product FROM product WHERE max_page_size = \"A4\" OR pages_per_minute_color < 5", "question": "Find products with max page size as \"A4\" or pages per minute color smaller than 5.", "context": "CREATE TABLE product (product VARCHAR, max_page_size VARCHAR, pages_per_minute_color VARCHAR)"}, {"answer": "SELECT product FROM product WHERE product LIKE \"%Scanner%\"", "question": "Find all the product whose name contains the word \"Scanner\".", "context": "CREATE TABLE product (product VARCHAR)"}, {"answer": "SELECT max_page_size FROM product GROUP BY max_page_size ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the most prominent max page size among all the products.", "context": "CREATE TABLE product (max_page_size VARCHAR)"}, {"answer": "SELECT product FROM product WHERE product <> (SELECT max_page_size FROM product GROUP BY max_page_size ORDER BY COUNT(*) DESC LIMIT 1)", "question": "Find the name of the products that are not using the most frequently-used max page size.", "context": "CREATE TABLE product (product VARCHAR, max_page_size VARCHAR)"}, {"answer": "SELECT SUM(city_population) FROM district WHERE city_area > (SELECT AVG(city_area) FROM district)", "question": "Find the total population of the districts where the area is bigger than the average city area.", "context": "CREATE TABLE district (city_population INTEGER, city_area INTEGER)"}, {"answer": "SELECT t3.District_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id WHERE t1.Type = \"City Mall\" INTERSECT SELECT t3.District_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id WHERE t1.Type = \"Village Store\"", "question": "Find the names of districts where have both city mall and village store type stores.", "context": "CREATE TABLE district (District_name VARCHAR, district_id VARCHAR); CREATE TABLE store (store_id VARCHAR, Type VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR)"}, {"answer": "SELECT SUM(enr) FROM College", "question": "What is the total enrollment number of all colleges?", "context": "CREATE TABLE College (enr INTEGER)"}, {"answer": "SELECT AVG(enr) FROM College", "question": "What is the average enrollment number?", "context": "CREATE TABLE College (enr INTEGER)"}, {"answer": "SELECT COUNT(*) FROM College", "question": "How many colleges in total?", "context": "CREATE TABLE College (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Player WHERE HS > 1000", "question": "How many players have more than 1000 hours of training?", "context": "CREATE TABLE Player (HS INTEGER)"}, {"answer": "SELECT COUNT(*) FROM College WHERE enr > 15000", "question": "How many colleges has more than 15000 students?", "context": "CREATE TABLE College (enr INTEGER)"}, {"answer": "SELECT AVG(HS) FROM Player", "question": "What is the average training hours of all players?", "context": "CREATE TABLE Player (HS INTEGER)"}, {"answer": "SELECT pName, HS FROM Player WHERE HS < 1500", "question": "Find the name and training hours of players whose hours are below 1500.", "context": "CREATE TABLE Player (pName VARCHAR, HS INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT cName) FROM tryout", "question": "How many different colleges do attend the tryout test?", "context": "CREATE TABLE tryout (cName VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT pPos) FROM tryout", "question": "What are the unique types of player positions in the tryout?", "context": "CREATE TABLE tryout (pPos VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM tryout WHERE decision = 'yes'", "question": "How many students got accepted after the tryout?", "context": "CREATE TABLE tryout (decision VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM tryout WHERE pPos = 'goalie'", "question": "How many students whose are playing the role of goalie?", "context": "CREATE TABLE tryout (pPos VARCHAR)"}, {"answer": "SELECT AVG(HS), MAX(HS), MIN(HS) FROM Player", "question": "Find the max, average and min training hours of all players.", "context": "CREATE TABLE Player (HS INTEGER)"}, {"answer": "SELECT AVG(enr) FROM College WHERE state = 'FL'", "question": "What is average enrollment of colleges in the state FL?", "context": "CREATE TABLE College (enr INTEGER, state VARCHAR)"}, {"answer": "SELECT pName FROM Player WHERE HS BETWEEN 500 AND 1500", "question": "What are the names of players whose training hours is between 500 and 1500?", "context": "CREATE TABLE Player (pName VARCHAR, HS INTEGER)"}, {"answer": "SELECT DISTINCT pName FROM Player WHERE pName LIKE '%a%'", "question": "Find the players whose names contain letter 'a'.", "context": "CREATE TABLE Player (pName VARCHAR)"}, {"answer": "SELECT cName, enr FROM College WHERE enr > 10000 AND state = \"LA\"", "question": "Find the name, enrollment of the colleges whose size is bigger than 10000 and location is in state LA.", "context": "CREATE TABLE College (cName VARCHAR, enr VARCHAR, state VARCHAR)"}, {"answer": "SELECT * FROM College ORDER BY enr", "question": "List all information about college sorted by enrollment number in the ascending order.", "context": "CREATE TABLE College (enr VARCHAR)"}, {"answer": "SELECT cName FROM College WHERE enr > 18000 ORDER BY cName", "question": "List the name of the colleges whose enrollment is greater 18000 sorted by the college's name.", "context": "CREATE TABLE College (cName VARCHAR, enr INTEGER)"}, {"answer": "SELECT pName FROM Player WHERE yCard = 'yes' ORDER BY HS DESC", "question": "Find the name of players whose card is yes in the descending order of training hours.", "context": "CREATE TABLE Player (pName VARCHAR, yCard VARCHAR, HS VARCHAR)"}, {"answer": "SELECT DISTINCT cName FROM tryout ORDER BY cName", "question": "Find the name of different colleges involved in the tryout in alphabetical order.", "context": "CREATE TABLE tryout (cName VARCHAR)"}, {"answer": "SELECT pPos FROM tryout GROUP BY pPos ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which position is most popular among players in the tryout?", "context": "CREATE TABLE tryout (pPos VARCHAR)"}, {"answer": "SELECT COUNT(*), cName FROM tryout GROUP BY cName ORDER BY COUNT(*) DESC", "question": "Find the number of students who participate in the tryout for each college ordered by descending count.", "context": "CREATE TABLE tryout (cName VARCHAR)"}, {"answer": "SELECT MIN(T2.HS), T1.pPos FROM tryout AS T1 JOIN player AS T2 ON T1.pID = T2.pID GROUP BY T1.pPos", "question": "What is minimum hours of the students playing in different position?", "context": "CREATE TABLE player (HS INTEGER, pID VARCHAR); CREATE TABLE tryout (pPos VARCHAR, pID VARCHAR)"}, {"answer": "SELECT cName FROM college ORDER BY enr DESC LIMIT 3", "question": "What are the names of schools with the top 3 largest size?", "context": "CREATE TABLE college (cName VARCHAR, enr VARCHAR)"}, {"answer": "SELECT cName, state, MIN(enr) FROM college GROUP BY state", "question": "What is the name of school that has the smallest enrollment in each state?", "context": "CREATE TABLE college (cName VARCHAR, state VARCHAR, enr INTEGER)"}, {"answer": "SELECT DISTINCT state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName", "question": "Find the states where have some college students in tryout.", "context": "CREATE TABLE college (cName VARCHAR); CREATE TABLE tryout (cName VARCHAR)"}, {"answer": "SELECT DISTINCT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.decision = 'yes'", "question": "Find the states where have some college students in tryout and their decisions are yes.", "context": "CREATE TABLE tryout (cName VARCHAR, decision VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR)"}, {"answer": "SELECT T1.pName, T2.cName FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes'", "question": "Find the name and college of students whose decisions are yes in the tryout.", "context": "CREATE TABLE tryout (cName VARCHAR, pID VARCHAR, decision VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR)"}, {"answer": "SELECT T1.pName FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID ORDER BY T1.pName", "question": "Find the name of all students who were in the tryout sorted in alphabetic order.", "context": "CREATE TABLE tryout (pID VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR)"}, {"answer": "SELECT T1.pName, T1.HS FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes'", "question": "Find the name and hours of the students whose tryout decision is yes.", "context": "CREATE TABLE player (pName VARCHAR, HS VARCHAR, pID VARCHAR); CREATE TABLE tryout (pID VARCHAR, decision VARCHAR)"}, {"answer": "SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'striker'", "question": "Find the states of the colleges that have students in the tryout who played in striker position.", "context": "CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR)"}, {"answer": "SELECT T1.pName FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes' AND T2.pPos = 'striker'", "question": "Find the names of the students who are in the position of striker and got a yes tryout decision.", "context": "CREATE TABLE tryout (pID VARCHAR, decision VARCHAR, pPos VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR)"}, {"answer": "SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName JOIN player AS T3 ON T2.pID = T3.pID WHERE T3.pName = 'Charles'", "question": "Find the state of the college which player Charles is attending.", "context": "CREATE TABLE tryout (cName VARCHAR, pID VARCHAR); CREATE TABLE player (pID VARCHAR, pName VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR)"}, {"answer": "SELECT AVG(T1.HS), MAX(T1.HS) FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes'", "question": "Find the average and maximum hours for the students whose tryout decision is yes.", "context": "CREATE TABLE player (HS INTEGER, pID VARCHAR); CREATE TABLE tryout (pID VARCHAR, decision VARCHAR)"}, {"answer": "SELECT AVG(T1.HS) FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'no'", "question": "Find the average hours for the students whose tryout decision is no.", "context": "CREATE TABLE player (HS INTEGER, pID VARCHAR); CREATE TABLE tryout (pID VARCHAR, decision VARCHAR)"}, {"answer": "SELECT MAX(T1.HS), pPos FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T1.HS > 1000 GROUP BY T2.pPos", "question": "What is the maximum training hours for the students whose training hours is greater than 1000 in different positions?", "context": "CREATE TABLE player (HS INTEGER, pID VARCHAR); CREATE TABLE tryout (pPos VARCHAR, pID VARCHAR)"}, {"answer": "SELECT T1.cName FROM tryout AS T1 JOIN player AS T2 ON T1.pID = T2.pID WHERE T2.pName LIKE 'D%'", "question": "Which colleges do the tryout players whose name starts with letter D go to?", "context": "CREATE TABLE tryout (cName VARCHAR, pID VARCHAR); CREATE TABLE player (pID VARCHAR, pName VARCHAR)"}, {"answer": "SELECT cName FROM tryout WHERE decision = 'yes' AND pPos = 'goalie'", "question": "Which college has any student who is a goalie and succeeded in the tryout.", "context": "CREATE TABLE tryout (cName VARCHAR, decision VARCHAR, pPos VARCHAR)"}, {"answer": "SELECT T2.pName FROM tryout AS T1 JOIN player AS T2 ON T1.pID = T2.pID WHERE T1.cName = (SELECT cName FROM college ORDER BY enr DESC LIMIT 1)", "question": "Find the name of the tryout players who are from the college with largest size.", "context": "CREATE TABLE college (cName VARCHAR, enr VARCHAR); CREATE TABLE tryout (pID VARCHAR, cName VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR)"}, {"answer": "SELECT DISTINCT T1.state, T1.enr FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.decision = 'yes'", "question": "What is the state and enrollment of the colleges where have any students who got accepted in the tryout decision.", "context": "CREATE TABLE tryout (cName VARCHAR, decision VARCHAR); CREATE TABLE college (state VARCHAR, enr VARCHAR, cName VARCHAR)"}, {"answer": "SELECT cName FROM College WHERE enr < 13000 AND state = \"AZ\" UNION SELECT cName FROM College WHERE enr > 15000 AND state = \"LA\"", "question": "Find the names of either colleges in LA with greater than 15000 size or in state AZ with less than 13000 enrollment.", "context": "CREATE TABLE College (cName VARCHAR, enr VARCHAR, state VARCHAR)"}, {"answer": "SELECT cName FROM tryout WHERE pPos = 'goalie' INTERSECT SELECT cName FROM tryout WHERE pPos = 'mid'", "question": "Find the names of schools that have some students playing in goalie and mid positions.", "context": "CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR)"}, {"answer": "SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'goalie' INTERSECT SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'mid'", "question": "Find the names of states that have some college students playing in goalie and mid positions.", "context": "CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM (SELECT cName FROM tryout WHERE pPos = 'goalie' INTERSECT SELECT cName FROM tryout WHERE pPos = 'mid')", "question": "How many schools have some students playing in goalie and mid positions.", "context": "CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR)"}, {"answer": "SELECT cName FROM tryout WHERE pPos = 'mid' EXCEPT SELECT cName FROM tryout WHERE pPos = 'goalie'", "question": "Find the names of schools that have some players in the mid position but not in the goalie position.", "context": "CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR)"}, {"answer": "SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'mid' EXCEPT SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'goalie'", "question": "Find the names of states that have some college students playing in the mid position but not in the goalie position.", "context": "CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM (SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'mid' EXCEPT SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'goalie')", "question": "How many states that have some college students playing in the mid position but not in the goalie position.", "context": "CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR)"}, {"answer": "SELECT DISTINCT state FROM college WHERE enr < (SELECT MAX(enr) FROM college)", "question": "Find the states where have the colleges whose enrollments are less than the largest size.", "context": "CREATE TABLE college (state VARCHAR, enr INTEGER)"}, {"answer": "SELECT DISTINCT cName FROM college WHERE enr > (SELECT MIN(enr) FROM college WHERE state = 'FL')", "question": "Find names of colleges with enrollment greater than that of some (at least one) college in the FL state.", "context": "CREATE TABLE college (cName VARCHAR, enr INTEGER, state VARCHAR)"}, {"answer": "SELECT cName FROM college WHERE enr > (SELECT MAX(enr) FROM college WHERE state = 'FL')", "question": "Find names of all colleges whose enrollment is greater than that of all colleges in the FL state.", "context": "CREATE TABLE college (cName VARCHAR, enr INTEGER, state VARCHAR)"}, {"answer": "SELECT SUM(enr) FROM college WHERE NOT cName IN (SELECT cName FROM tryout WHERE pPos = \"goalie\")", "question": "What is the total number of enrollment of schools that do not have any goalie player?", "context": "CREATE TABLE college (enr INTEGER, cName VARCHAR, pPos VARCHAR); CREATE TABLE tryout (enr INTEGER, cName VARCHAR, pPos VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT state) FROM college WHERE enr > (SELECT AVG(enr) FROM college)", "question": "What is the number of states that has some college whose enrollment is larger than the average enrollment?", "context": "CREATE TABLE college (state VARCHAR, enr INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT state) FROM college WHERE enr < (SELECT AVG(enr) FROM college)", "question": "What is the number of states that has some colleges whose enrollment is smaller than the average enrollment?", "context": "CREATE TABLE college (state VARCHAR, enr INTEGER)"}, {"answer": "SELECT COUNT(*) FROM device", "question": "How many devices are there?", "context": "CREATE TABLE device (Id VARCHAR)"}, {"answer": "SELECT Carrier FROM device ORDER BY Carrier", "question": "List the carriers of devices in ascending alphabetical order.", "context": "CREATE TABLE device (Carrier VARCHAR)"}, {"answer": "SELECT Carrier FROM device WHERE Software_Platform <> 'Android'", "question": "What are the carriers of devices whose software platforms are not \"Android\"?", "context": "CREATE TABLE device (Carrier VARCHAR, Software_Platform VARCHAR)"}, {"answer": "SELECT Shop_Name FROM shop ORDER BY Open_Year", "question": "What are the names of shops in ascending order of open year?", "context": "CREATE TABLE shop (Shop_Name VARCHAR, Open_Year VARCHAR)"}, {"answer": "SELECT AVG(Quantity) FROM stock", "question": "What is the average quantity of stocks?", "context": "CREATE TABLE stock (Quantity INTEGER)"}, {"answer": "SELECT Shop_Name, LOCATION FROM shop ORDER BY Shop_Name", "question": "What are the names and location of the shops in ascending alphabetical order of name.", "context": "CREATE TABLE shop (Shop_Name VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Software_Platform) FROM device", "question": "How many different software platforms are there for devices?", "context": "CREATE TABLE device (Software_Platform VARCHAR)"}, {"answer": "SELECT Open_Date, Open_Year FROM shop WHERE Shop_Name = \"Apple\"", "question": "List the open date of open year of the shop named \"Apple\".", "context": "CREATE TABLE shop (Open_Date VARCHAR, Open_Year VARCHAR, Shop_Name VARCHAR)"}, {"answer": "SELECT Shop_Name FROM shop ORDER BY Open_Year DESC LIMIT 1", "question": "List the name of the shop with the latest open year.", "context": "CREATE TABLE shop (Shop_Name VARCHAR, Open_Year VARCHAR)"}, {"answer": "SELECT T3.Shop_Name, T2.Carrier FROM stock AS T1 JOIN device AS T2 ON T1.Device_ID = T2.Device_ID JOIN shop AS T3 ON T1.Shop_ID = T3.Shop_ID", "question": "Show names of shops and the carriers of devices they have in stock.", "context": "CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR); CREATE TABLE stock (Device_ID VARCHAR, Shop_ID VARCHAR); CREATE TABLE device (Carrier VARCHAR, Device_ID VARCHAR)"}, {"answer": "SELECT T2.Shop_Name FROM stock AS T1 JOIN shop AS T2 ON T1.Shop_ID = T2.Shop_ID GROUP BY T1.Shop_ID HAVING COUNT(*) > 1", "question": "Show names of shops that have more than one kind of device in stock.", "context": "CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR); CREATE TABLE stock (Shop_ID VARCHAR)"}, {"answer": "SELECT T2.Shop_Name FROM stock AS T1 JOIN shop AS T2 ON T1.Shop_ID = T2.Shop_ID GROUP BY T1.Shop_ID ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the name of the shop that has the most kind of devices in stock.", "context": "CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR); CREATE TABLE stock (Shop_ID VARCHAR)"}, {"answer": "SELECT T2.Shop_Name FROM stock AS T1 JOIN shop AS T2 ON T1.Shop_ID = T2.Shop_ID GROUP BY T1.Shop_ID ORDER BY SUM(T1.quantity) DESC LIMIT 1", "question": "Show the name of the shop that have the largest quantity of devices in stock.", "context": "CREATE TABLE stock (Shop_ID VARCHAR, quantity INTEGER); CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR)"}, {"answer": "SELECT Software_Platform, COUNT(*) FROM device GROUP BY Software_Platform", "question": "Please show different software platforms and the corresponding number of devices using each.", "context": "CREATE TABLE device (Software_Platform VARCHAR)"}, {"answer": "SELECT Software_Platform FROM device GROUP BY Software_Platform ORDER BY COUNT(*) DESC", "question": "Please show the software platforms of devices in descending order of the count.", "context": "CREATE TABLE device (Software_Platform VARCHAR)"}, {"answer": "SELECT Software_Platform FROM device GROUP BY Software_Platform ORDER BY COUNT(*) DESC LIMIT 1", "question": "List the software platform shared by the greatest number of devices.", "context": "CREATE TABLE device (Software_Platform VARCHAR)"}, {"answer": "SELECT Shop_Name FROM shop WHERE NOT Shop_ID IN (SELECT Shop_ID FROM stock)", "question": "List the names of shops that have no devices in stock.", "context": "CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR); CREATE TABLE stock (Shop_Name VARCHAR, Shop_ID VARCHAR)"}, {"answer": "SELECT LOCATION FROM shop WHERE Open_Year > 2012 INTERSECT SELECT LOCATION FROM shop WHERE Open_Year < 2008", "question": "Show the locations shared by shops with open year later than 2012 and shops with open year before 2008.", "context": "CREATE TABLE shop (LOCATION VARCHAR, Open_Year INTEGER)"}, {"answer": "SELECT Carrier FROM device WHERE NOT Device_ID IN (SELECT Device_ID FROM stock)", "question": "List the carriers of devices that have no devices in stock.", "context": "CREATE TABLE stock (Carrier VARCHAR, Device_ID VARCHAR); CREATE TABLE device (Carrier VARCHAR, Device_ID VARCHAR)"}, {"answer": "SELECT T2.Carrier FROM stock AS T1 JOIN device AS T2 ON T1.Device_ID = T2.Device_ID GROUP BY T1.Device_ID HAVING COUNT(*) > 1", "question": "Show the carriers of devices in stock at more than one shop.", "context": "CREATE TABLE stock (Device_ID VARCHAR); CREATE TABLE device (Carrier VARCHAR, Device_ID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM BOOKINGS", "question": "How many bookings do we have?", "context": "CREATE TABLE BOOKINGS (Id VARCHAR)"}, {"answer": "SELECT Order_Date FROM BOOKINGS", "question": "List the order dates of all the bookings.", "context": "CREATE TABLE BOOKINGS (Order_Date VARCHAR)"}, {"answer": "SELECT Planned_Delivery_Date, Actual_Delivery_Date FROM BOOKINGS", "question": "Show all the planned delivery dates and actual delivery dates of bookings.", "context": "CREATE TABLE BOOKINGS (Planned_Delivery_Date VARCHAR, Actual_Delivery_Date VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM CUSTOMERS", "question": "How many customers do we have?", "context": "CREATE TABLE CUSTOMERS (Id VARCHAR)"}, {"answer": "SELECT Customer_Phone, Customer_Email_Address FROM CUSTOMERS WHERE Customer_Name = \"Harold\"", "question": "What are the phone and email for customer Harold?", "context": "CREATE TABLE CUSTOMERS (Customer_Phone VARCHAR, Customer_Email_Address VARCHAR, Customer_Name VARCHAR)"}, {"answer": "SELECT Store_Name FROM Drama_Workshop_Groups", "question": "Show all the Store_Name of drama workshop groups.", "context": "CREATE TABLE Drama_Workshop_Groups (Store_Name VARCHAR)"}, {"answer": "SELECT MIN(Order_Quantity), AVG(Order_Quantity), MAX(Order_Quantity) FROM INVOICES", "question": "Show the minimum, average, maximum order quantity of all invoices.", "context": "CREATE TABLE INVOICES (Order_Quantity INTEGER)"}, {"answer": "SELECT DISTINCT payment_method_code FROM INVOICES", "question": "What are the distinct payment method codes in all the invoices?", "context": "CREATE TABLE INVOICES (payment_method_code VARCHAR)"}, {"answer": "SELECT Marketing_Region_Descriptrion FROM Marketing_Regions WHERE Marketing_Region_Name = \"China\"", "question": "What is the description of the marketing region China?", "context": "CREATE TABLE Marketing_Regions (Marketing_Region_Descriptrion VARCHAR, Marketing_Region_Name VARCHAR)"}, {"answer": "SELECT DISTINCT Product_Name FROM PRODUCTS WHERE Product_Price > (SELECT AVG(Product_Price) FROM PRODUCTS)", "question": "Show all the distinct product names with price higher than the average.", "context": "CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price INTEGER)"}, {"answer": "SELECT Product_Name FROM PRODUCTS ORDER BY Product_Price DESC LIMIT 1", "question": "What is the name of the most expensive product?", "context": "CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price VARCHAR)"}, {"answer": "SELECT Customer_Phone FROM PERFORMERS WHERE Customer_Name = \"Ashley\"", "question": "What is the phone number of the performer Ashley?", "context": "CREATE TABLE PERFORMERS (Customer_Phone VARCHAR, Customer_Name VARCHAR)"}, {"answer": "SELECT payment_method_code, COUNT(*) FROM INVOICES GROUP BY payment_method_code", "question": "Show all payment method codes and the number of orders for each code.", "context": "CREATE TABLE INVOICES (payment_method_code VARCHAR)"}, {"answer": "SELECT payment_method_code FROM INVOICES GROUP BY payment_method_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the payment method code used by the most orders?", "context": "CREATE TABLE INVOICES (payment_method_code VARCHAR)"}, {"answer": "SELECT T1.City_Town FROM Addresses AS T1 JOIN Stores AS T2 ON T1.Address_ID = T2.Address_ID WHERE T2.Store_Name = \"FJA Filming\"", "question": "Which city is the address of the store named \"FJA Filming\" located in?", "context": "CREATE TABLE Addresses (City_Town VARCHAR, Address_ID VARCHAR); CREATE TABLE Stores (Address_ID VARCHAR, Store_Name VARCHAR)"}, {"answer": "SELECT T1.State_County FROM Addresses AS T1 JOIN Stores AS T2 ON T1.Address_ID = T2.Address_ID WHERE T2.Marketing_Region_Code = \"CA\"", "question": "What are the states or counties of the address of the stores with marketing region code \"CA\"?", "context": "CREATE TABLE Addresses (State_County VARCHAR, Address_ID VARCHAR); CREATE TABLE Stores (Address_ID VARCHAR, Marketing_Region_Code VARCHAR)"}, {"answer": "SELECT T1.Marketing_Region_Name FROM Marketing_Regions AS T1 JOIN Stores AS T2 ON T1.Marketing_Region_Code = T2.Marketing_Region_Code WHERE T2.Store_Name = \"Rob Dinning\"", "question": "What is the name of the marketing region that the store Rob Dinning belongs to?", "context": "CREATE TABLE Marketing_Regions (Marketing_Region_Name VARCHAR, Marketing_Region_Code VARCHAR); CREATE TABLE Stores (Marketing_Region_Code VARCHAR, Store_Name VARCHAR)"}, {"answer": "SELECT T1.Service_Type_Description FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code WHERE T2.Product_Price > 100", "question": "What are the descriptions of the service types with product price above 100?", "context": "CREATE TABLE Services (Service_Type_Code VARCHAR, Product_Price INTEGER); CREATE TABLE Ref_Service_Types (Service_Type_Description VARCHAR, Service_Type_Code VARCHAR)"}, {"answer": "SELECT T1.Service_Type_Description, T2.Service_Type_Code, COUNT(*) FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code GROUP BY T2.Service_Type_Code", "question": "What is the description, code and the corresponding count of each service type?", "context": "CREATE TABLE Services (Service_Type_Code VARCHAR); CREATE TABLE Ref_Service_Types (Service_Type_Description VARCHAR, Service_Type_Code VARCHAR)"}, {"answer": "SELECT T1.Service_Type_Description, T1.Service_Type_Code FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code GROUP BY T1.Service_Type_Code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the description and code of the type of service that is performed the most often?", "context": "CREATE TABLE Services (Service_Type_Code VARCHAR); CREATE TABLE Ref_Service_Types (Service_Type_Description VARCHAR, Service_Type_Code VARCHAR)"}, {"answer": "SELECT T1.Store_Phone, T1.Store_Email_Address FROM Drama_Workshop_Groups AS T1 JOIN Services AS T2 ON T1.Workshop_Group_ID = T2.Workshop_Group_ID", "question": "What are the phones and emails of workshop groups in which services are performed?", "context": "CREATE TABLE Services (Workshop_Group_ID VARCHAR); CREATE TABLE Drama_Workshop_Groups (Store_Phone VARCHAR, Store_Email_Address VARCHAR, Workshop_Group_ID VARCHAR)"}, {"answer": "SELECT T1.Store_Phone, T1.Store_Email_Address FROM Drama_Workshop_Groups AS T1 JOIN Services AS T2 ON T1.Workshop_Group_ID = T2.Workshop_Group_ID WHERE T2.Product_Name = \"film\"", "question": "What are the names of workshop groups in which services with product name \"film\" are performed?", "context": "CREATE TABLE Services (Workshop_Group_ID VARCHAR, Product_Name VARCHAR); CREATE TABLE Drama_Workshop_Groups (Store_Phone VARCHAR, Store_Email_Address VARCHAR, Workshop_Group_ID VARCHAR)"}, {"answer": "SELECT Product_Name, AVG(Product_Price) FROM PRODUCTS GROUP BY Product_Name", "question": "What are the different product names? What is the average product price for each of them?", "context": "CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price INTEGER)"}, {"answer": "SELECT Product_Name FROM PRODUCTS GROUP BY Product_Name HAVING AVG(Product_Price) < 1000000", "question": "What are the product names with average product price smaller than 1000000?", "context": "CREATE TABLE PRODUCTS (Product_Name VARCHAR, Product_Price INTEGER)"}, {"answer": "SELECT SUM(T1.Order_Quantity) FROM ORDER_ITEMS AS T1 JOIN Products AS T2 ON T1.Product_ID = T2.Product_ID WHERE T2.Product_Name = \"photo\"", "question": "What are the total order quantities of photo products?", "context": "CREATE TABLE ORDER_ITEMS (Order_Quantity INTEGER, Product_ID VARCHAR); CREATE TABLE Products (Product_ID VARCHAR, Product_Name VARCHAR)"}, {"answer": "SELECT T1.Other_Item_Details FROM ORDER_ITEMS AS T1 JOIN Products AS T2 ON T1.Product_ID = T2.Product_ID WHERE T2.Product_price > 2000", "question": "What are the order details of the products with price higher than 2000?", "context": "CREATE TABLE Products (Product_ID VARCHAR, Product_price INTEGER); CREATE TABLE ORDER_ITEMS (Other_Item_Details VARCHAR, Product_ID VARCHAR)"}, {"answer": "SELECT T1.Actual_Delivery_Date FROM Customer_Orders AS T1 JOIN ORDER_ITEMS AS T2 ON T1.Order_ID = T2.Order_ID WHERE T2.Order_Quantity = 1", "question": "What are the actual delivery dates of orders with quantity 1?", "context": "CREATE TABLE Customer_Orders (Actual_Delivery_Date VARCHAR, Order_ID VARCHAR); CREATE TABLE ORDER_ITEMS (Order_ID VARCHAR, Order_Quantity VARCHAR)"}, {"answer": "SELECT T1.Order_Date FROM Customer_Orders AS T1 JOIN ORDER_ITEMS AS T2 ON T1.Order_ID = T2.Order_ID JOIN Products AS T3 ON T2.Product_ID = T3.Product_ID WHERE T3.Product_price > 1000", "question": "What are the order dates of orders with price higher than 1000?", "context": "CREATE TABLE Products (Product_ID VARCHAR, Product_price INTEGER); CREATE TABLE ORDER_ITEMS (Order_ID VARCHAR, Product_ID VARCHAR); CREATE TABLE Customer_Orders (Order_Date VARCHAR, Order_ID VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Currency_Code) FROM Drama_Workshop_Groups", "question": "How many distinct currency codes are there for all drama workshop groups?", "context": "CREATE TABLE Drama_Workshop_Groups (Currency_Code VARCHAR)"}, {"answer": "SELECT T2.Store_Name FROM Addresses AS T1 JOIN Drama_Workshop_Groups AS T2 ON T1.Address_ID = T2.Address_ID WHERE T1.City_Town = \"Feliciaberg\"", "question": "What are the names of the drama workshop groups with address in Feliciaberg city?", "context": "CREATE TABLE Addresses (Address_ID VARCHAR, City_Town VARCHAR); CREATE TABLE Drama_Workshop_Groups (Store_Name VARCHAR, Address_ID VARCHAR)"}, {"answer": "SELECT T2.Store_Email_Address FROM Addresses AS T1 JOIN Drama_Workshop_Groups AS T2 ON T1.Address_ID = T2.Address_ID WHERE T1.State_County = \"Alaska\"", "question": "What are the email addresses of the drama workshop groups with address in Alaska state?", "context": "CREATE TABLE Drama_Workshop_Groups (Store_Email_Address VARCHAR, Address_ID VARCHAR); CREATE TABLE Addresses (Address_ID VARCHAR, State_County VARCHAR)"}, {"answer": "SELECT T1.City_Town, COUNT(*) FROM Addresses AS T1 JOIN Drama_Workshop_Groups AS T2 ON T1.Address_ID = T2.Address_ID GROUP BY T1.City_Town", "question": "Show all cities along with the number of drama workshop groups in each city.", "context": "CREATE TABLE Addresses (City_Town VARCHAR, Address_ID VARCHAR); CREATE TABLE Drama_Workshop_Groups (Address_ID VARCHAR)"}, {"answer": "SELECT Marketing_Region_Code FROM Drama_Workshop_Groups GROUP BY Marketing_Region_Code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the marketing region code that has the most drama workshop groups?", "context": "CREATE TABLE Drama_Workshop_Groups (Marketing_Region_Code VARCHAR)"}, {"answer": "SELECT T1.City_Town FROM Addresses AS T1 JOIN Customers AS T2 ON T1.Address_ID = T2.Address_ID EXCEPT SELECT T1.City_Town FROM Addresses AS T1 JOIN Performers AS T2 ON T1.Address_ID = T2.Address_ID", "question": "Show all cities where at least one customer lives in but no performer lives in.", "context": "CREATE TABLE Customers (Address_ID VARCHAR); CREATE TABLE Addresses (City_Town VARCHAR, Address_ID VARCHAR); CREATE TABLE Performers (Address_ID VARCHAR)"}, {"answer": "SELECT Status_Code FROM BOOKINGS GROUP BY Status_Code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most frequent status of bookings?", "context": "CREATE TABLE BOOKINGS (Status_Code VARCHAR)"}, {"answer": "SELECT T2.Store_Name FROM Bookings AS T1 JOIN Drama_Workshop_Groups AS T2 ON T1.Workshop_Group_ID = T2.Workshop_Group_ID WHERE T1.Status_Code = \"stop\"", "question": "What are the names of the workshop groups that have bookings with status code \"stop\"?", "context": "CREATE TABLE Bookings (Workshop_Group_ID VARCHAR, Status_Code VARCHAR); CREATE TABLE Drama_Workshop_Groups (Store_Name VARCHAR, Workshop_Group_ID VARCHAR)"}, {"answer": "SELECT Customer_Name FROM Clients EXCEPT SELECT T2.Customer_Name FROM Bookings AS T1 JOIN Clients AS T2 ON T1.Customer_ID = T2.Client_ID", "question": "Show the names of all the clients with no booking.", "context": "CREATE TABLE Clients (Customer_Name VARCHAR, Client_ID VARCHAR); CREATE TABLE Bookings (Customer_ID VARCHAR); CREATE TABLE Clients (Customer_Name VARCHAR)"}, {"answer": "SELECT AVG(Order_Quantity) FROM Invoices WHERE payment_method_code = \"MasterCard\"", "question": "What is the average quantities ordered with payment method code \"MasterCard\" on invoices?", "context": "CREATE TABLE Invoices (Order_Quantity INTEGER, payment_method_code VARCHAR)"}, {"answer": "SELECT Product_ID FROM INVOICES GROUP BY Product_ID ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the product ID of the most frequently ordered item on invoices?", "context": "CREATE TABLE INVOICES (Product_ID VARCHAR)"}, {"answer": "SELECT T1.Service_Type_Description FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code WHERE T2.Product_Name = 'photo' INTERSECT SELECT T1.Service_Type_Description FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code WHERE T2.Product_Name = 'film'", "question": "What is the description of the service type which offers both the photo product and the film product?", "context": "CREATE TABLE Ref_Service_Types (Service_Type_Description VARCHAR, Service_Type_Code VARCHAR); CREATE TABLE Services (Service_Type_Code VARCHAR, Product_Name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Band", "question": "How many bands are there?", "context": "CREATE TABLE Band (Id VARCHAR)"}, {"answer": "SELECT DISTINCT label FROM Albums", "question": "What are all the labels?", "context": "CREATE TABLE Albums (label VARCHAR)"}, {"answer": "SELECT * FROM Albums WHERE YEAR = 2012", "question": "Find all the albums in 2012.", "context": "CREATE TABLE Albums (YEAR VARCHAR)"}, {"answer": "SELECT DISTINCT T1.stageposition FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id WHERE Firstname = \"Solveig\"", "question": "Find all the stage positions of the musicians with first name \"Solveig\"", "context": "CREATE TABLE Band (id VARCHAR); CREATE TABLE Performance (stageposition VARCHAR, bandmate VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Songs", "question": "How many songs are there?", "context": "CREATE TABLE Songs (Id VARCHAR)"}, {"answer": "SELECT T3.Title FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T2.Lastname = \"Heilo\"", "question": "Find all the songs performed by artist with last name \"Heilo\"", "context": "CREATE TABLE Songs (Title VARCHAR, SongId VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Band (id VARCHAR, Lastname VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM performance AS T1 JOIN band AS T2 ON T1.bandmate = T2.id JOIN songs AS T3 ON T3.songid = T1.songid WHERE T3.Title = \"Flash\"", "question": "Hom many musicians performed in the song \"Flash\"?", "context": "CREATE TABLE performance (bandmate VARCHAR, songid VARCHAR); CREATE TABLE songs (songid VARCHAR, Title VARCHAR); CREATE TABLE band (id VARCHAR)"}, {"answer": "SELECT T3.Title FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T2.firstname = \"Marianne\"", "question": "Find all the songs produced by artists with first name \"Marianne\".", "context": "CREATE TABLE Songs (Title VARCHAR, SongId VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Band (id VARCHAR, firstname VARCHAR)"}, {"answer": "SELECT T2.firstname, T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = \"Badlands\"", "question": "Who performed the song named \"Badlands\"? Show the first name and the last name.", "context": "CREATE TABLE Band (firstname VARCHAR, lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Songs (SongId VARCHAR, Title VARCHAR)"}, {"answer": "SELECT T2.firstname, T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = \"Badlands\" AND T1.StagePosition = \"back\"", "question": "Who is performing in the back stage position for the song \"Badlands\"? Show the first name and the last name.", "context": "CREATE TABLE Band (firstname VARCHAR, lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR, StagePosition VARCHAR); CREATE TABLE Songs (SongId VARCHAR, Title VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT label) FROM albums", "question": "How many unique labels are there for albums?", "context": "CREATE TABLE albums (label VARCHAR)"}, {"answer": "SELECT label FROM albums GROUP BY label ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the label that has the most albums?", "context": "CREATE TABLE albums (label VARCHAR)"}, {"answer": "SELECT T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY lastname ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the last name of the musician that have produced the most number of songs?", "context": "CREATE TABLE Songs (SongId VARCHAR); CREATE TABLE Band (lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR)"}, {"answer": "SELECT T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id WHERE stageposition = \"back\" GROUP BY lastname ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the last name of the musician that has been at the back position the most?", "context": "CREATE TABLE Band (lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR)"}, {"answer": "SELECT title FROM songs WHERE title LIKE '% the %'", "question": "Find all the songs whose name contains the word \"the\".", "context": "CREATE TABLE songs (title VARCHAR)"}, {"answer": "SELECT DISTINCT instrument FROM Instruments", "question": "What are all the instruments used?", "context": "CREATE TABLE Instruments (instrument VARCHAR)"}, {"answer": "SELECT T4.instrument FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId JOIN Instruments AS T4 ON T4.songid = T3.songid AND T4.bandmateid = T2.id WHERE T2.lastname = \"Heilo\" AND T3.title = \"Le Pop\"", "question": "What instrument did the musician with last name \"Heilo\" use in the song \"Le Pop\"?", "context": "CREATE TABLE Songs (SongId VARCHAR, songid VARCHAR, title VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Band (id VARCHAR, lastname VARCHAR); CREATE TABLE Instruments (instrument VARCHAR, songid VARCHAR, bandmateid VARCHAR)"}, {"answer": "SELECT instrument FROM instruments GROUP BY instrument ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most used instrument?", "context": "CREATE TABLE instruments (instrument VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM instruments WHERE instrument = \"drums\"", "question": "How many songs have used the instrument \"drums\"?", "context": "CREATE TABLE instruments (instrument VARCHAR)"}, {"answer": "SELECT instrument FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = \"Le Pop\"", "question": "What instruments does the the song \"Le Pop\" use?", "context": "CREATE TABLE instruments (songid VARCHAR); CREATE TABLE songs (songid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT instrument) FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = \"Le Pop\"", "question": "How many instruments does the song \"Le Pop\" use?", "context": "CREATE TABLE instruments (songid VARCHAR); CREATE TABLE songs (songid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT instrument) FROM instruments AS T1 JOIN Band AS T2 ON T1.bandmateid = T2.id WHERE T2.lastname = \"Heilo\"", "question": "How many instrument does the musician with last name \"Heilo\" use?", "context": "CREATE TABLE instruments (bandmateid VARCHAR); CREATE TABLE Band (id VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT instrument FROM instruments AS T1 JOIN Band AS T2 ON T1.bandmateid = T2.id WHERE T2.lastname = \"Heilo\"", "question": "Find all the instruments ever used by the musician with last name \"Heilo\"?", "context": "CREATE TABLE instruments (bandmateid VARCHAR); CREATE TABLE Band (id VARCHAR, lastname VARCHAR)"}, {"answer": "SELECT title FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid GROUP BY T1.songid ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which song has the most vocals?", "context": "CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR)"}, {"answer": "SELECT TYPE FROM vocals GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which vocal type is the most frequently appearring type?", "context": "CREATE TABLE vocals (TYPE VARCHAR)"}, {"answer": "SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE lastname = \"Heilo\" GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which vocal type has the band mate with last name \"Heilo\" played the most?", "context": "CREATE TABLE vocals (bandmate VARCHAR); CREATE TABLE band (id VARCHAR)"}, {"answer": "SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = \"Le Pop\"", "question": "What are the vocal types used in song \"Le Pop\"?", "context": "CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = \"Demon Kitty Rag\"", "question": "Find the number of vocal types used in song \"Demon Kitty Rag\"?", "context": "CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT title) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE TYPE = \"lead\"", "question": "How many songs have a lead vocal?", "context": "CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR)"}, {"answer": "SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid JOIN band AS T3 ON T1.bandmate = T3.id WHERE T3.firstname = \"Solveig\" AND T2.title = \"A Bar In Amsterdam\"", "question": "Which vocal type did the musician with first name \"Solveig\" played in the song with title \"A Bar in Amsterdam\"?", "context": "CREATE TABLE vocals (songid VARCHAR, bandmate VARCHAR); CREATE TABLE band (id VARCHAR, firstname VARCHAR); CREATE TABLE songs (songid VARCHAR, title VARCHAR)"}, {"answer": "SELECT DISTINCT title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid EXCEPT SELECT t2.title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid WHERE TYPE = \"lead\"", "question": "Find all the songs that do not have a lead vocal.", "context": "CREATE TABLE songs (title VARCHAR, songid VARCHAR); CREATE TABLE vocals (songid VARCHAR)"}, {"answer": "SELECT DISTINCT TYPE FROM vocals", "question": "Find all the vocal types.", "context": "CREATE TABLE vocals (TYPE VARCHAR)"}, {"answer": "SELECT * FROM Albums WHERE YEAR = 2010", "question": "What are the albums produced in year 2010?", "context": "CREATE TABLE Albums (YEAR VARCHAR)"}, {"answer": "SELECT T2.firstname, T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = \"Le Pop\"", "question": "Who performed the song named \"Le Pop\"?", "context": "CREATE TABLE Band (firstname VARCHAR, lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Songs (SongId VARCHAR, Title VARCHAR)"}, {"answer": "SELECT T4.instrument FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId JOIN Instruments AS T4 ON T4.songid = T3.songid AND T4.bandmateid = T2.id WHERE T2.lastname = \"Heilo\" AND T3.title = \"Badlands\"", "question": "What instrument did the musician with last name \"Heilo\" use in the song \"Badlands\"?", "context": "CREATE TABLE Songs (SongId VARCHAR, songid VARCHAR, title VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Band (id VARCHAR, lastname VARCHAR); CREATE TABLE Instruments (instrument VARCHAR, songid VARCHAR, bandmateid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT instrument) FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = \"Badlands\"", "question": "How many instruments does the song \"Badlands\" use?", "context": "CREATE TABLE instruments (songid VARCHAR); CREATE TABLE songs (songid VARCHAR)"}, {"answer": "SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = \"Badlands\"", "question": "What are the vocal types used in song \"Badlands\"?", "context": "CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = \"Le Pop\"", "question": "Find the number of vocal types used in song \"Le Pop\"", "context": "CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT title) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE TYPE = \"shared\"", "question": "How many songs have a shared vocal?", "context": "CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR)"}, {"answer": "SELECT DISTINCT title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid EXCEPT SELECT t2.title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid WHERE TYPE = \"back\"", "question": "Find all the songs that do not have a back vocal.", "context": "CREATE TABLE songs (title VARCHAR, songid VARCHAR); CREATE TABLE vocals (songid VARCHAR)"}, {"answer": "SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE firstname = \"Solveig\" GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which vocal type has the band mate with first name \"Solveig\" played the most?", "context": "CREATE TABLE vocals (bandmate VARCHAR); CREATE TABLE band (id VARCHAR)"}, {"answer": "SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid JOIN band AS T3 ON T1.bandmate = T3.id WHERE T3.lastname = \"Heilo\" AND T2.title = \"Der Kapitan\"", "question": "Which vocal type did the musician with last name \"Heilo\" played in the song with title \"Der Kapitan\"?", "context": "CREATE TABLE band (id VARCHAR, lastname VARCHAR); CREATE TABLE vocals (songid VARCHAR, bandmate VARCHAR); CREATE TABLE songs (songid VARCHAR, title VARCHAR)"}, {"answer": "SELECT t2.firstname FROM Performance AS t1 JOIN Band AS t2 ON t1.bandmate = t2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY firstname ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the first name of the band mate that has performed in most songs.", "context": "CREATE TABLE Songs (SongId VARCHAR); CREATE TABLE Band (firstname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR)"}, {"answer": "SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE firstname = \"Marianne\" GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which vocal type has the band mate with first name \"Marianne\" played the most?", "context": "CREATE TABLE vocals (bandmate VARCHAR); CREATE TABLE band (id VARCHAR)"}, {"answer": "SELECT T2.firstname, T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = \"Der Kapitan\" AND T1.StagePosition = \"back\"", "question": "Who is performing in the back stage position for the song \"Der Kapitan\"? Show the first name and last name.", "context": "CREATE TABLE Band (firstname VARCHAR, lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR, StagePosition VARCHAR); CREATE TABLE Songs (SongId VARCHAR, Title VARCHAR)"}, {"answer": "SELECT T3.title FROM albums AS T1 JOIN tracklists AS T2 ON T1.aid = T2.albumid JOIN songs AS T3 ON T2.songid = T3.songid WHERE T1.title = \"A Kiss Before You Go: Live in Hamburg\"", "question": "What are the songs in album \"A Kiss Before You Go: Live in Hamburg\"?", "context": "CREATE TABLE songs (title VARCHAR, songid VARCHAR); CREATE TABLE albums (aid VARCHAR, title VARCHAR); CREATE TABLE tracklists (albumid VARCHAR, songid VARCHAR)"}, {"answer": "SELECT T3.title FROM albums AS T1 JOIN tracklists AS T2 ON T1.aid = T2.albumid JOIN songs AS T3 ON T2.songid = T3.songid WHERE t1.label = \"Universal Music Group\"", "question": "What are all the songs in albums under label \"Universal Music Group\"?", "context": "CREATE TABLE songs (title VARCHAR, songid VARCHAR); CREATE TABLE albums (aid VARCHAR); CREATE TABLE tracklists (albumid VARCHAR, songid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT T3.title) FROM albums AS T1 JOIN tracklists AS T2 ON T1.aid = T2.albumid JOIN songs AS T3 ON T2.songid = T3.songid WHERE t1.type = \"Studio\"", "question": "Find the number of songs in all the studio albums.", "context": "CREATE TABLE songs (title VARCHAR, songid VARCHAR); CREATE TABLE albums (aid VARCHAR); CREATE TABLE tracklists (albumid VARCHAR, songid VARCHAR)"}, {"answer": "SELECT founder FROM manufacturers WHERE name = 'Sony'", "question": "Who is the founder of Sony?", "context": "CREATE TABLE manufacturers (founder VARCHAR, name VARCHAR)"}, {"answer": "SELECT headquarter FROM manufacturers WHERE founder = 'James'", "question": "Where is the headquarter of the company founded by James?", "context": "CREATE TABLE manufacturers (headquarter VARCHAR, founder VARCHAR)"}, {"answer": "SELECT name, headquarter FROM manufacturers ORDER BY revenue DESC", "question": "Find all manufacturers' names and their headquarters, sorted by the ones with highest revenue first.", "context": "CREATE TABLE manufacturers (name VARCHAR, headquarter VARCHAR, revenue VARCHAR)"}, {"answer": "SELECT AVG(revenue), MAX(revenue), SUM(revenue) FROM manufacturers", "question": "What are the average, maximum and total revenues of all companies?", "context": "CREATE TABLE manufacturers (revenue INTEGER)"}, {"answer": "SELECT COUNT(*) FROM manufacturers WHERE founder = 'Andy'", "question": "How many companies were created by Andy?", "context": "CREATE TABLE manufacturers (founder VARCHAR)"}, {"answer": "SELECT SUM(revenue) FROM manufacturers WHERE headquarter = 'Austin'", "question": "Find the total revenue created by the companies whose headquarter is located at Austin.", "context": "CREATE TABLE manufacturers (revenue INTEGER, headquarter VARCHAR)"}, {"answer": "SELECT DISTINCT headquarter FROM manufacturers", "question": "What are the different cities listed?", "context": "CREATE TABLE manufacturers (headquarter VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM manufacturers WHERE headquarter = 'Tokyo' OR headquarter = 'Beijing'", "question": "Find the number of manufactures that are based in Tokyo or Beijing.", "context": "CREATE TABLE manufacturers (headquarter VARCHAR)"}, {"answer": "SELECT founder FROM manufacturers WHERE name LIKE 'S%'", "question": "Find the founder of the company whose name begins with the letter 'S'.", "context": "CREATE TABLE manufacturers (founder VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM manufacturers WHERE revenue BETWEEN 100 AND 150", "question": "Find the name of companies whose revenue is between 100 and 150.", "context": "CREATE TABLE manufacturers (name VARCHAR, revenue INTEGER)"}, {"answer": "SELECT SUM(revenue) FROM manufacturers WHERE Headquarter = 'Tokyo' OR Headquarter = 'Taiwan'", "question": "What is the total revenue of all companies whose main office is at Tokyo or Taiwan?", "context": "CREATE TABLE manufacturers (revenue INTEGER, Headquarter VARCHAR)"}, {"answer": "SELECT T1.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code WHERE T2.name = 'Creative Labs' INTERSECT SELECT T1.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code WHERE T2.name = 'Sony'", "question": "Find the name of product that is produced by both companies Creative Labs and Sony.", "context": "CREATE TABLE manufacturers (code VARCHAR, name VARCHAR); CREATE TABLE products (name VARCHAR, Manufacturer VARCHAR)"}, {"answer": "SELECT name, headquarter, founder FROM manufacturers ORDER BY revenue DESC LIMIT 1", "question": "Find the name, headquarter and founder of the manufacturer that has the highest revenue.", "context": "CREATE TABLE manufacturers (name VARCHAR, headquarter VARCHAR, founder VARCHAR, revenue VARCHAR)"}, {"answer": "SELECT name, headquarter, revenue FROM manufacturers ORDER BY revenue DESC", "question": "Find the name, headquarter and revenue of all manufacturers sorted by their revenue in the descending order.", "context": "CREATE TABLE manufacturers (name VARCHAR, headquarter VARCHAR, revenue VARCHAR)"}, {"answer": "SELECT name FROM manufacturers WHERE revenue > (SELECT AVG(revenue) FROM manufacturers)", "question": "Find the name of companies whose revenue is greater than the average revenue of all companies.", "context": "CREATE TABLE manufacturers (name VARCHAR, revenue INTEGER)"}, {"answer": "SELECT name FROM manufacturers WHERE revenue < (SELECT MIN(revenue) FROM manufacturers WHERE headquarter = 'Austin')", "question": "Find the name of companies whose revenue is smaller than the revenue of all companies based in Austin.", "context": "CREATE TABLE manufacturers (name VARCHAR, revenue INTEGER, headquarter VARCHAR)"}, {"answer": "SELECT SUM(revenue) FROM manufacturers WHERE revenue > (SELECT MIN(revenue) FROM manufacturers WHERE headquarter = 'Austin')", "question": "Find the total revenue of companies whose revenue is larger than the revenue of some companies based in Austin.", "context": "CREATE TABLE manufacturers (revenue INTEGER, headquarter VARCHAR)"}, {"answer": "SELECT SUM(revenue), founder FROM manufacturers GROUP BY founder", "question": "Find the total revenue of companies of each founder.", "context": "CREATE TABLE manufacturers (founder VARCHAR, revenue INTEGER)"}, {"answer": "SELECT name, MAX(revenue), Headquarter FROM manufacturers GROUP BY Headquarter", "question": "Find the name and revenue of the company that earns the highest revenue in each city.", "context": "CREATE TABLE manufacturers (name VARCHAR, Headquarter VARCHAR, revenue INTEGER)"}, {"answer": "SELECT SUM(revenue), name FROM manufacturers GROUP BY name", "question": "Find the total revenue for each manufacturer.", "context": "CREATE TABLE manufacturers (name VARCHAR, revenue INTEGER)"}, {"answer": "SELECT AVG(T1.price), T2.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code GROUP BY T2.name", "question": "Find the average prices of all products from each manufacture, and list each company's name.", "context": "CREATE TABLE products (price INTEGER, Manufacturer VARCHAR); CREATE TABLE manufacturers (name VARCHAR, code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT T1.name), T2.Headquarter FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code GROUP BY T2.Headquarter", "question": "Find the number of different products that are produced by companies at different headquarter cities.", "context": "CREATE TABLE manufacturers (Headquarter VARCHAR, code VARCHAR); CREATE TABLE products (name VARCHAR, Manufacturer VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT name) FROM products WHERE NOT name IN (SELECT T1.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code WHERE T2.name = 'Sony')", "question": "Find number of products which Sony does not make.", "context": "CREATE TABLE manufacturers (code VARCHAR, name VARCHAR); CREATE TABLE products (name VARCHAR); CREATE TABLE products (name VARCHAR, Manufacturer VARCHAR)"}, {"answer": "SELECT name FROM manufacturers EXCEPT SELECT T2.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code WHERE T1.name = 'DVD drive'", "question": "Find the name of companies that do not make DVD drive.", "context": "CREATE TABLE manufacturers (name VARCHAR, code VARCHAR); CREATE TABLE products (Manufacturer VARCHAR, name VARCHAR); CREATE TABLE manufacturers (name VARCHAR)"}, {"answer": "SELECT COUNT(*), T2.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code GROUP BY T2.name", "question": "Find the number of products for each manufacturer, showing the name of each company.", "context": "CREATE TABLE products (Manufacturer VARCHAR); CREATE TABLE manufacturers (name VARCHAR, code VARCHAR)"}, {"answer": "SELECT Name FROM Products", "question": "Select the names of all the products in the store.", "context": "CREATE TABLE Products (Name VARCHAR)"}, {"answer": "SELECT name, price FROM products", "question": "Select the names and the prices of all the products in the store.", "context": "CREATE TABLE products (name VARCHAR, price VARCHAR)"}, {"answer": "SELECT name FROM products WHERE price <= 200", "question": "Select the name of the products with a price less than or equal to $200.", "context": "CREATE TABLE products (name VARCHAR, price VARCHAR)"}, {"answer": "SELECT * FROM products WHERE price BETWEEN 60 AND 120", "question": "Find all information of all the products with a price between $60 and $120.", "context": "CREATE TABLE products (price INTEGER)"}, {"answer": "SELECT AVG(price) FROM products", "question": "Compute the average price of all the products.", "context": "CREATE TABLE products (price INTEGER)"}, {"answer": "SELECT AVG(price) FROM products WHERE Manufacturer = 2", "question": "Compute the average price of all products with manufacturer code equal to 2.", "context": "CREATE TABLE products (price INTEGER, Manufacturer VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM products WHERE price >= 180", "question": "Compute the number of products with a price larger than or equal to $180.", "context": "CREATE TABLE products (price VARCHAR)"}, {"answer": "SELECT name, price FROM products WHERE price >= 180 ORDER BY price DESC, name", "question": "Select the name and price of all products with a price larger than or equal to $180, and sort first by price (in descending order), and then by name  (in ascending order).", "context": "CREATE TABLE products (name VARCHAR, price VARCHAR)"}, {"answer": "SELECT * FROM products AS T1 JOIN Manufacturers AS T2 ON T1.manufacturer = T2.code", "question": "Select all the data from the products and each product's manufacturer.", "context": "CREATE TABLE products (manufacturer VARCHAR); CREATE TABLE Manufacturers (code VARCHAR)"}, {"answer": "SELECT AVG(Price), Manufacturer FROM Products GROUP BY Manufacturer", "question": "Select the average price of each manufacturer's products, showing only the manufacturer's code.", "context": "CREATE TABLE Products (Manufacturer VARCHAR, Price INTEGER)"}, {"answer": "SELECT AVG(T1.Price), T2.name FROM products AS T1 JOIN Manufacturers AS T2 ON T1.manufacturer = T2.code GROUP BY T2.name", "question": "Select the average price of each manufacturer's products, showing the manufacturer's name.", "context": "CREATE TABLE Manufacturers (name VARCHAR, code VARCHAR); CREATE TABLE products (Price INTEGER, manufacturer VARCHAR)"}, {"answer": "SELECT AVG(T1.Price), T2.name FROM products AS T1 JOIN Manufacturers AS T2 ON T1.manufacturer = T2.code GROUP BY T2.name HAVING AVG(T1.price) >= 150", "question": "Select the names of manufacturer whose products have an average price higher than or equal to $150.", "context": "CREATE TABLE Manufacturers (name VARCHAR, code VARCHAR); CREATE TABLE products (Price INTEGER, manufacturer VARCHAR, price INTEGER)"}, {"answer": "SELECT name, price FROM Products ORDER BY price LIMIT 1", "question": "Select the name and price of the cheapest product.", "context": "CREATE TABLE Products (name VARCHAR, price VARCHAR)"}, {"answer": "SELECT T1.Name, MAX(T1.Price), T2.name FROM products AS T1 JOIN Manufacturers AS T2 ON T1.manufacturer = T2.code GROUP BY T2.name", "question": "Select the name of each manufacturer along with the name and price of its most expensive product.", "context": "CREATE TABLE Manufacturers (name VARCHAR, code VARCHAR); CREATE TABLE products (Name VARCHAR, Price INTEGER, manufacturer VARCHAR)"}, {"answer": "SELECT code, name, MIN(price) FROM products GROUP BY name", "question": "Select the code of the product that is cheapest in each product category.", "context": "CREATE TABLE products (code VARCHAR, name VARCHAR, price INTEGER)"}, {"answer": "SELECT problem_log_id FROM problem_log ORDER BY log_entry_date DESC LIMIT 1", "question": "What is the id of the problem log that is created most recently?", "context": "CREATE TABLE problem_log (problem_log_id VARCHAR, log_entry_date VARCHAR)"}, {"answer": "SELECT problem_log_id, problem_id FROM problem_log ORDER BY log_entry_date LIMIT 1", "question": "What is the oldest log id and its corresponding problem id?", "context": "CREATE TABLE problem_log (problem_log_id VARCHAR, problem_id VARCHAR, log_entry_date VARCHAR)"}, {"answer": "SELECT problem_log_id, log_entry_date FROM problem_log WHERE problem_id = 10", "question": "Find all the ids and dates of the logs for the problem whose id is 10.", "context": "CREATE TABLE problem_log (problem_log_id VARCHAR, log_entry_date VARCHAR, problem_id VARCHAR)"}, {"answer": "SELECT problem_log_id, log_entry_description FROM problem_log", "question": "List all the log ids and their descriptions from the problem logs.", "context": "CREATE TABLE problem_log (problem_log_id VARCHAR, log_entry_description VARCHAR)"}, {"answer": "SELECT DISTINCT staff_first_name, staff_last_name FROM staff AS T1 JOIN problem_log AS T2 ON T1.staff_id = T2.assigned_to_staff_id WHERE T2.problem_id = 1", "question": "List the first and last names of all distinct staff members who are assigned to the problem whose id is 1.", "context": "CREATE TABLE problem_log (assigned_to_staff_id VARCHAR, problem_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR)"}, {"answer": "SELECT DISTINCT T2.problem_id, T2.problem_log_id FROM staff AS T1 JOIN problem_log AS T2 ON T1.staff_id = T2.assigned_to_staff_id WHERE T1.staff_first_name = \"Rylan\" AND T1.staff_last_name = \"Homenick\"", "question": "List the problem id and log id which are assigned to the staff named Rylan Homenick.", "context": "CREATE TABLE problem_log (problem_id VARCHAR, problem_log_id VARCHAR, assigned_to_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM product AS T1 JOIN problems AS T2 ON T1.product_id = T2.product_id WHERE T1.product_name = \"voluptatem\"", "question": "How many problems are there for product voluptatem?", "context": "CREATE TABLE problems (product_id VARCHAR); CREATE TABLE product (product_id VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.product_name FROM product AS T1 JOIN problems AS T2 ON T1.product_id = T2.product_id GROUP BY T1.product_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "How many problems does the product with the most problems have? List the number of the problems and product name.", "context": "CREATE TABLE problems (product_id VARCHAR); CREATE TABLE product (product_name VARCHAR, product_id VARCHAR)"}, {"answer": "SELECT T1.problem_description FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE T2.staff_first_name = \"Christop\"", "question": "Give me a list of descriptions of the problems that are reported by the staff whose first name is Christop.", "context": "CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR); CREATE TABLE problems (problem_description VARCHAR, reported_by_staff_id VARCHAR)"}, {"answer": "SELECT T1.problem_id FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE T2.staff_last_name = \"Bosco\"", "question": "Find the ids of the problems that are reported by the staff whose last name is Bosco.", "context": "CREATE TABLE problems (problem_id VARCHAR, reported_by_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_last_name VARCHAR)"}, {"answer": "SELECT problem_id FROM problems WHERE date_problem_reported > \"1978-06-26\"", "question": "What are the ids of the problems which are reported after 1978-06-26?", "context": "CREATE TABLE problems (problem_id VARCHAR, date_problem_reported INTEGER)"}, {"answer": "SELECT problem_id FROM problems WHERE date_problem_reported < \"1978-06-26\"", "question": "What are the ids of the problems which are reported before 1978-06-26?", "context": "CREATE TABLE problems (problem_id VARCHAR, date_problem_reported INTEGER)"}, {"answer": "SELECT COUNT(*), T2.product_id FROM problems AS T1 JOIN product AS T2 ON T1.product_id = T2.product_id GROUP BY T2.product_id", "question": "For each product which has problems, what are the number of problems and the product id?", "context": "CREATE TABLE problems (product_id VARCHAR); CREATE TABLE product (product_id VARCHAR)"}, {"answer": "SELECT COUNT(*), T2.product_id FROM problems AS T1 JOIN product AS T2 ON T1.product_id = T2.product_id WHERE T1.date_problem_reported > \"1986-11-13\" GROUP BY T2.product_id", "question": "For each product that has problems, find the number of problems reported after 1986-11-13 and the product id?", "context": "CREATE TABLE product (product_id VARCHAR); CREATE TABLE problems (product_id VARCHAR, date_problem_reported INTEGER)"}, {"answer": "SELECT DISTINCT product_name FROM product ORDER BY product_name", "question": "List the names of all the distinct product names in alphabetical order?", "context": "CREATE TABLE product (product_name VARCHAR)"}, {"answer": "SELECT DISTINCT product_name FROM product ORDER BY product_id", "question": "List all the distinct product names ordered by product id?", "context": "CREATE TABLE product (product_name VARCHAR, product_id VARCHAR)"}, {"answer": "SELECT product_id FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE T2.staff_first_name = \"Dameon\" AND T2.staff_last_name = \"Frami\" UNION SELECT product_id FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE T2.staff_first_name = \"Jolie\" AND T2.staff_last_name = \"Weber\"", "question": "What are the id of problems reported by the staff named Dameon Frami or Jolie Weber?", "context": "CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR); CREATE TABLE problems (reported_by_staff_id VARCHAR)"}, {"answer": "SELECT product_id FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE T2.staff_first_name = \"Christop\" AND T2.staff_last_name = \"Berge\" INTERSECT SELECT product_id FROM problems AS T1 JOIN staff AS T2 ON T1.closure_authorised_by_staff_id = T2.staff_id WHERE T2.staff_first_name = \"Ashley\" AND T2.staff_last_name = \"Medhurst\"", "question": "What are the product ids for the problems reported by Christop Berge with closure authorised by Ashley Medhurst?", "context": "CREATE TABLE problems (reported_by_staff_id VARCHAR, closure_authorised_by_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR)"}, {"answer": "SELECT T1.problem_id FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE date_problem_reported < (SELECT MIN(date_problem_reported) FROM problems AS T3 JOIN staff AS T4 ON T3.reported_by_staff_id = T4.staff_id WHERE T4.staff_first_name = \"Lysanne\" AND T4.staff_last_name = \"Turcotte\")", "question": "What are the ids of the problems reported before the date of any problem reported by Lysanne Turcotte?", "context": "CREATE TABLE problems (problem_id VARCHAR, reported_by_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR); CREATE TABLE problems (reported_by_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR)"}, {"answer": "SELECT T1.problem_id FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE date_problem_reported > (SELECT MAX(date_problem_reported) FROM problems AS T3 JOIN staff AS T4 ON T3.reported_by_staff_id = T4.staff_id WHERE T4.staff_first_name = \"Rylan\" AND T4.staff_last_name = \"Homenick\")", "question": "What are the ids of the problems reported after the date of any problems reported by Rylan Homenick?", "context": "CREATE TABLE problems (problem_id VARCHAR, reported_by_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR); CREATE TABLE problems (reported_by_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR)"}, {"answer": "SELECT T2.product_name FROM problems AS T1 JOIN product AS T2 ON T1.product_id = T2.product_id GROUP BY T2.product_name ORDER BY COUNT(*) DESC LIMIT 3", "question": "Find the top 3 products which have the largest number of problems?", "context": "CREATE TABLE problems (product_id VARCHAR); CREATE TABLE product (product_name VARCHAR, product_id VARCHAR)"}, {"answer": "SELECT T1.problem_id FROM problems AS T1 JOIN product AS T2 ON T1.product_id = T2.product_id WHERE T2.product_name = \"voluptatem\" AND T1.date_problem_reported > \"1995\"", "question": "List the ids of the problems from the product \"voluptatem\" that are reported after 1995?", "context": "CREATE TABLE problems (problem_id VARCHAR, product_id VARCHAR, date_problem_reported VARCHAR); CREATE TABLE product (product_id VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT T3.staff_first_name, T3.staff_last_name FROM problems AS T1 JOIN product AS T2 JOIN staff AS T3 ON T1.product_id = T2.product_id AND T1.reported_by_staff_id = T3.staff_id WHERE T2.product_name = \"rem\" EXCEPT SELECT T3.staff_first_name, T3.staff_last_name FROM problems AS T1 JOIN product AS T2 JOIN staff AS T3 ON T1.product_id = T2.product_id AND T1.reported_by_staff_id = T3.staff_id WHERE T2.product_name = \"aut\"", "question": "Find the first and last name of the staff members who reported problems from the product \"rem\" but not \"aut\"?", "context": "CREATE TABLE product (product_name VARCHAR, product_id VARCHAR); CREATE TABLE staff (staff_first_name VARCHAR, staff_last_name VARCHAR, staff_id VARCHAR); CREATE TABLE problems (product_id VARCHAR, reported_by_staff_id VARCHAR)"}, {"answer": "SELECT T2.product_name FROM problems AS T1 JOIN product AS T2 JOIN staff AS T3 ON T1.product_id = T2.product_id AND T1.reported_by_staff_id = T3.staff_id WHERE T3.staff_first_name = \"Lacey\" AND T3.staff_last_name = \"Bosco\" INTERSECT SELECT T2.product_name FROM problems AS T1 JOIN product AS T2 JOIN staff AS T3 ON T1.product_id = T2.product_id AND T1.reported_by_staff_id = T3.staff_id WHERE T3.staff_first_name = \"Kenton\" AND T3.staff_last_name = \"Champlin\"", "question": "Find the products which have problems reported by both Lacey Bosco and Kenton Champlin?", "context": "CREATE TABLE product (product_name VARCHAR, product_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR); CREATE TABLE problems (product_id VARCHAR, reported_by_staff_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM branch WHERE membership_amount > (SELECT AVG(membership_amount) FROM branch)", "question": "How many branches where have more than average number of memberships are there?", "context": "CREATE TABLE branch (membership_amount INTEGER)"}, {"answer": "SELECT name, address_road, city FROM branch ORDER BY open_year", "question": "Show name, address road, and city for all branches sorted by open year.", "context": "CREATE TABLE branch (name VARCHAR, address_road VARCHAR, city VARCHAR, open_year VARCHAR)"}, {"answer": "SELECT name FROM branch ORDER BY membership_amount DESC LIMIT 3", "question": "What are names for top three branches with most number of membership?", "context": "CREATE TABLE branch (name VARCHAR, membership_amount VARCHAR)"}, {"answer": "SELECT DISTINCT city FROM branch WHERE membership_amount >= 100", "question": "Show all distinct city where branches with at least 100 memberships are located.", "context": "CREATE TABLE branch (city VARCHAR, membership_amount VARCHAR)"}, {"answer": "SELECT open_year FROM branch GROUP BY open_year HAVING COUNT(*) >= 2", "question": "List all open years when at least two shops are opened.", "context": "CREATE TABLE branch (open_year VARCHAR)"}, {"answer": "SELECT MIN(membership_amount), MAX(membership_amount) FROM branch WHERE open_year = 2011 OR city = 'London'", "question": "Show minimum and maximum amount of memberships for all branches opened in 2011 or located at city London.", "context": "CREATE TABLE branch (membership_amount INTEGER, open_year VARCHAR, city VARCHAR)"}, {"answer": "SELECT city, COUNT(*) FROM branch WHERE open_year < 2010 GROUP BY city", "question": "Show the city and the number of branches opened before 2010 for each city.", "context": "CREATE TABLE branch (city VARCHAR, open_year INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT LEVEL) FROM member", "question": "How many different levels do members have?", "context": "CREATE TABLE member (LEVEL VARCHAR)"}, {"answer": "SELECT card_number, name, hometown FROM member ORDER BY LEVEL DESC", "question": "Show card number, name, and hometown for all members in a descending order of level.", "context": "CREATE TABLE member (card_number VARCHAR, name VARCHAR, hometown VARCHAR, LEVEL VARCHAR)"}, {"answer": "SELECT LEVEL FROM member GROUP BY LEVEL ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the membership level with most number of members.", "context": "CREATE TABLE member (LEVEL VARCHAR)"}, {"answer": "SELECT T3.name, T2.name FROM membership_register_branch AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id JOIN member AS T3 ON T1.member_id = T3.member_id ORDER BY T1.register_year", "question": "Show all member names and registered branch names sorted by register year.", "context": "CREATE TABLE member (name VARCHAR, member_id VARCHAR); CREATE TABLE membership_register_branch (branch_id VARCHAR, member_id VARCHAR, register_year VARCHAR); CREATE TABLE branch (name VARCHAR, branch_id VARCHAR)"}, {"answer": "SELECT T2.name, COUNT(*) FROM membership_register_branch AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id WHERE T1.register_year > 2015 GROUP BY T2.branch_id", "question": "Show all branch names with the number of members in each branch registered after 2015.", "context": "CREATE TABLE branch (name VARCHAR, branch_id VARCHAR); CREATE TABLE membership_register_branch (branch_id VARCHAR, register_year INTEGER)"}, {"answer": "SELECT name FROM member WHERE NOT member_id IN (SELECT member_id FROM membership_register_branch)", "question": "Show member names without any registered branch.", "context": "CREATE TABLE member (name VARCHAR, member_id VARCHAR); CREATE TABLE membership_register_branch (name VARCHAR, member_id VARCHAR)"}, {"answer": "SELECT name, city FROM branch WHERE NOT branch_id IN (SELECT branch_id FROM membership_register_branch)", "question": "List the branch name and city without any registered members.", "context": "CREATE TABLE membership_register_branch (name VARCHAR, city VARCHAR, branch_id VARCHAR); CREATE TABLE branch (name VARCHAR, city VARCHAR, branch_id VARCHAR)"}, {"answer": "SELECT T2.name, T2.open_year FROM membership_register_branch AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id WHERE T1.register_year = 2016 GROUP BY T2.branch_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name and open year for the branch with most number of memberships registered in 2016?", "context": "CREATE TABLE membership_register_branch (branch_id VARCHAR, register_year VARCHAR); CREATE TABLE branch (name VARCHAR, open_year VARCHAR, branch_id VARCHAR)"}, {"answer": "SELECT T2.name, T2.hometown FROM membership_register_branch AS T1 JOIN member AS T2 ON T1.member_id = T2.member_id WHERE T1.register_year = 2016", "question": "Show the member name and hometown who registered a branch in 2016.", "context": "CREATE TABLE member (name VARCHAR, hometown VARCHAR, member_id VARCHAR); CREATE TABLE membership_register_branch (member_id VARCHAR, register_year VARCHAR)"}, {"answer": "SELECT city FROM branch WHERE open_year = 2001 AND membership_amount > 100", "question": "Show all city with a branch opened in 2001 and a branch with more than 100 membership.", "context": "CREATE TABLE branch (city VARCHAR, open_year VARCHAR, membership_amount VARCHAR)"}, {"answer": "SELECT city FROM branch EXCEPT SELECT city FROM branch WHERE membership_amount > 100", "question": "Show all cities without a branch having more than 100 memberships.", "context": "CREATE TABLE branch (city VARCHAR, membership_amount INTEGER)"}, {"answer": "SELECT SUM(total_pounds) FROM purchase AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id WHERE T2.city = 'London' AND T1.year = 2018", "question": "What is the sum of total pounds of purchase in year 2018 for all branches in London?", "context": "CREATE TABLE purchase (branch_id VARCHAR, year VARCHAR); CREATE TABLE branch (branch_id VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM purchase AS T1 JOIN member AS T2 ON T1.member_id = T2.member_id WHERE T2.level = 6", "question": "What is the total number of purchases for members with level 6?", "context": "CREATE TABLE member (member_id VARCHAR, level VARCHAR); CREATE TABLE purchase (member_id VARCHAR)"}, {"answer": "SELECT T2.name FROM membership_register_branch AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id JOIN member AS T3 ON T1.member_id = T3.member_id WHERE T3.Hometown = 'Louisville ,  Kentucky' INTERSECT SELECT T2.name FROM membership_register_branch AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id JOIN member AS T3 ON T1.member_id = T3.member_id WHERE T3.Hometown = 'Hiram ,  Georgia'", "question": "Find the name of branches where have some members whose hometown is in Louisville, Kentucky and some in Hiram, Georgia.", "context": "CREATE TABLE member (member_id VARCHAR, Hometown VARCHAR); CREATE TABLE branch (name VARCHAR, branch_id VARCHAR); CREATE TABLE membership_register_branch (branch_id VARCHAR, member_id VARCHAR)"}, {"answer": "SELECT card_number FROM member WHERE Hometown LIKE \"%Kentucky%\"", "question": "list the card number of all members whose hometown address includes word \"Kentucky\".", "context": "CREATE TABLE member (card_number VARCHAR, Hometown VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM STUDENT", "question": "Find the number of students in total.", "context": "CREATE TABLE STUDENT (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM VOTING_RECORD", "question": "Find the number of voting records in total.", "context": "CREATE TABLE VOTING_RECORD (Id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT President_Vote) FROM VOTING_RECORD", "question": "Find the distinct number of president votes.", "context": "CREATE TABLE VOTING_RECORD (President_Vote VARCHAR)"}, {"answer": "SELECT MAX(Age) FROM STUDENT", "question": "Find the maximum age of all the students.", "context": "CREATE TABLE STUDENT (Age INTEGER)"}, {"answer": "SELECT LName FROM STUDENT WHERE Major = 50", "question": "Find the last names of students with major 50.", "context": "CREATE TABLE STUDENT (LName VARCHAR, Major VARCHAR)"}, {"answer": "SELECT Fname FROM STUDENT WHERE Age > 22", "question": "Find the first names of students with age above 22.", "context": "CREATE TABLE STUDENT (Fname VARCHAR, Age INTEGER)"}, {"answer": "SELECT Major FROM STUDENT WHERE Sex = \"M\"", "question": "What are the majors of male (sex is M) students?", "context": "CREATE TABLE STUDENT (Major VARCHAR, Sex VARCHAR)"}, {"answer": "SELECT AVG(Age) FROM STUDENT WHERE Sex = \"F\"", "question": "What is the average age of female (sex is F) students?", "context": "CREATE TABLE STUDENT (Age INTEGER, Sex VARCHAR)"}, {"answer": "SELECT MAX(Age), MIN(Age) FROM STUDENT WHERE Major = 600", "question": "What are the maximum and minimum age of students with major 600?", "context": "CREATE TABLE STUDENT (Age INTEGER, Major VARCHAR)"}, {"answer": "SELECT Advisor FROM STUDENT WHERE city_code = \"BAL\"", "question": "Who are the advisors for students that live in a city with city code \"BAL\"?", "context": "CREATE TABLE STUDENT (Advisor VARCHAR, city_code VARCHAR)"}, {"answer": "SELECT DISTINCT Secretary_Vote FROM VOTING_RECORD WHERE ELECTION_CYCLE = \"Fall\"", "question": "What are the distinct secretary votes in the fall election cycle?", "context": "CREATE TABLE VOTING_RECORD (Secretary_Vote VARCHAR, ELECTION_CYCLE VARCHAR)"}, {"answer": "SELECT DISTINCT PRESIDENT_Vote FROM VOTING_RECORD WHERE Registration_Date = \"08/30/2015\"", "question": "What are the distinct president votes on 08/30/2015?", "context": "CREATE TABLE VOTING_RECORD (PRESIDENT_Vote VARCHAR, Registration_Date VARCHAR)"}, {"answer": "SELECT DISTINCT Registration_Date, Election_Cycle FROM VOTING_RECORD", "question": "Report the distinct registration date and the election cycle.", "context": "CREATE TABLE VOTING_RECORD (Registration_Date VARCHAR, Election_Cycle VARCHAR)"}, {"answer": "SELECT DISTINCT President_Vote, VICE_President_Vote FROM VOTING_RECORD", "question": "Report the distinct president vote and the vice president vote.", "context": "CREATE TABLE VOTING_RECORD (President_Vote VARCHAR, VICE_President_Vote VARCHAR)"}, {"answer": "SELECT DISTINCT T1.LName FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.CLASS_President_VOTE", "question": "Find the distinct last names of the students who have class president votes.", "context": "CREATE TABLE STUDENT (LName VARCHAR, StuID VARCHAR); CREATE TABLE VOTING_RECORD (CLASS_President_VOTE VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Fname FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.CLASS_Senator_VOTE", "question": "Find the distinct first names of the students who have class senator votes.", "context": "CREATE TABLE STUDENT (Fname VARCHAR, StuID VARCHAR); CREATE TABLE VOTING_RECORD (CLASS_Senator_VOTE VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Age FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.Secretary_Vote WHERE T2.Election_Cycle = \"Fall\"", "question": "Find the distinct ages of students who have secretary votes in the fall election cycle.", "context": "CREATE TABLE VOTING_RECORD (Secretary_Vote VARCHAR, Election_Cycle VARCHAR); CREATE TABLE STUDENT (Age VARCHAR, StuID VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Advisor FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.Treasurer_Vote WHERE T2.Election_Cycle = \"Spring\"", "question": "Find the distinct Advisor of students who have treasurer votes in the spring election cycle.", "context": "CREATE TABLE STUDENT (Advisor VARCHAR, StuID VARCHAR); CREATE TABLE VOTING_RECORD (Treasurer_Vote VARCHAR, Election_Cycle VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Major FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.Treasurer_Vote", "question": "Find the distinct majors of students who have treasurer votes.", "context": "CREATE TABLE VOTING_RECORD (Treasurer_Vote VARCHAR); CREATE TABLE STUDENT (Major VARCHAR, StuID VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Fname, T1.LName FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.President_VOTE WHERE T1.sex = \"F\"", "question": "Find the first and last names of all the female (sex is F) students who have president votes.", "context": "CREATE TABLE STUDENT (Fname VARCHAR, LName VARCHAR, StuID VARCHAR, sex VARCHAR); CREATE TABLE VOTING_RECORD (President_VOTE VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Fname, T1.LName FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.VICE_President_VOTE WHERE T1.age = 18", "question": "Find the first and last name of all the students of age 18 who have vice president votes.", "context": "CREATE TABLE STUDENT (Fname VARCHAR, LName VARCHAR, StuID VARCHAR, age VARCHAR); CREATE TABLE VOTING_RECORD (VICE_President_VOTE VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = Class_Senator_Vote WHERE T1.Sex = \"M\" AND T2.Election_Cycle = \"Fall\"", "question": "How many male (sex is M) students have class senator votes in the fall election cycle?", "context": "CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR); CREATE TABLE STUDENT (StuID VARCHAR, Sex VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = Class_Senator_Vote WHERE T1.city_code = \"NYC\" AND T2.Election_Cycle = \"Spring\"", "question": "Find the number of students whose city code is NYC and who have class senator votes in the spring election cycle.", "context": "CREATE TABLE STUDENT (StuID VARCHAR, city_code VARCHAR); CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR)"}, {"answer": "SELECT AVG(T1.Age) FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = SECRETARY_Vote WHERE T1.city_code = \"NYC\" AND T2.Election_Cycle = \"Spring\"", "question": "Find the average age of students who live in the city with code \"NYC\" and have secretary votes in the spring election cycle.", "context": "CREATE TABLE STUDENT (Age INTEGER, StuID VARCHAR, city_code VARCHAR); CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR)"}, {"answer": "SELECT AVG(T1.Age) FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = SECRETARY_Vote WHERE T1.Sex = \"F\" AND T2.Election_Cycle = \"Spring\"", "question": "Find the average age of female (sex is F) students who have secretary votes in the spring election cycle.", "context": "CREATE TABLE STUDENT (Age INTEGER, StuID VARCHAR, Sex VARCHAR); CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Fname FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.VICE_PRESIDENT_Vote EXCEPT SELECT DISTINCT Fname FROM STUDENT WHERE city_code = \"PIT\"", "question": "Find the distinct first names of all the students who have vice president votes and whose city code is not PIT.", "context": "CREATE TABLE STUDENT (Fname VARCHAR, city_code VARCHAR); CREATE TABLE STUDENT (Fname VARCHAR, StuID VARCHAR); CREATE TABLE VOTING_RECORD (VICE_PRESIDENT_Vote VARCHAR)"}, {"answer": "SELECT DISTINCT T1.LName FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = PRESIDENT_Vote EXCEPT SELECT DISTINCT LName FROM STUDENT WHERE Advisor = \"2192\"", "question": "Find the distinct last names of all the students who have president votes and whose advisor is not 2192.", "context": "CREATE TABLE STUDENT (LName VARCHAR, PRESIDENT_Vote VARCHAR, Advisor VARCHAR); CREATE TABLE STUDENT (LName VARCHAR, StuID VARCHAR); CREATE TABLE VOTING_RECORD (Id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.LName FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = PRESIDENT_Vote INTERSECT SELECT DISTINCT LName FROM STUDENT WHERE Advisor = \"8741\"", "question": "Find the distinct last names of all the students who have president votes and whose advisor is 8741.", "context": "CREATE TABLE STUDENT (LName VARCHAR, PRESIDENT_Vote VARCHAR, Advisor VARCHAR); CREATE TABLE STUDENT (LName VARCHAR, StuID VARCHAR); CREATE TABLE VOTING_RECORD (Id VARCHAR)"}, {"answer": "SELECT Advisor, COUNT(*) FROM STUDENT GROUP BY Advisor", "question": "For each advisor, report the total number of students advised by him or her.", "context": "CREATE TABLE STUDENT (Advisor VARCHAR)"}, {"answer": "SELECT Advisor FROM STUDENT GROUP BY Advisor HAVING COUNT(*) > 2", "question": "Report all advisors that advise more than 2 students.", "context": "CREATE TABLE STUDENT (Advisor VARCHAR)"}, {"answer": "SELECT Major FROM STUDENT GROUP BY Major HAVING COUNT(*) < 3", "question": "Report all majors that have less than 3 students.", "context": "CREATE TABLE STUDENT (Major VARCHAR)"}, {"answer": "SELECT Election_Cycle, COUNT(*) FROM VOTING_RECORD GROUP BY Election_Cycle", "question": "For each election cycle, report the number of voting records.", "context": "CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR)"}, {"answer": "SELECT Major FROM STUDENT GROUP BY major ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which major has the most students?", "context": "CREATE TABLE STUDENT (Major VARCHAR, major VARCHAR)"}, {"answer": "SELECT Major FROM STUDENT WHERE Sex = \"F\" GROUP BY major ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most common major among female (sex is F) students?", "context": "CREATE TABLE STUDENT (Major VARCHAR, major VARCHAR, Sex VARCHAR)"}, {"answer": "SELECT city_code FROM STUDENT GROUP BY city_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the city_code of the city that the most students live in?", "context": "CREATE TABLE STUDENT (city_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM products", "question": "How many products are there?", "context": "CREATE TABLE products (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM ref_colors", "question": "How many colors are there?", "context": "CREATE TABLE ref_colors (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM CHARACTERISTICS", "question": "How many characteristics are there?", "context": "CREATE TABLE CHARACTERISTICS (Id VARCHAR)"}, {"answer": "SELECT product_name, typical_buying_price FROM products", "question": "What are the names and buying prices of all the products?", "context": "CREATE TABLE products (product_name VARCHAR, typical_buying_price VARCHAR)"}, {"answer": "SELECT color_description FROM ref_colors", "question": "List the description of all the colors.", "context": "CREATE TABLE ref_colors (color_description VARCHAR)"}, {"answer": "SELECT DISTINCT characteristic_name FROM CHARACTERISTICS", "question": "Find the names of all the product characteristics.", "context": "CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR)"}, {"answer": "SELECT product_name FROM products WHERE product_category_code = \"Spices\"", "question": "What are the names of products with category \"Spices\"?", "context": "CREATE TABLE products (product_name VARCHAR, product_category_code VARCHAR)"}, {"answer": "SELECT T1.product_name, T2.color_description, T1.product_description FROM products AS T1 JOIN Ref_colors AS T2 ON T1.color_code = T2.color_code WHERE product_category_code = \"Herbs\"", "question": "List the names, color descriptions and product descriptions of products with category \"Herbs\".", "context": "CREATE TABLE Ref_colors (color_description VARCHAR, color_code VARCHAR); CREATE TABLE products (product_name VARCHAR, product_description VARCHAR, color_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM products WHERE product_category_code = \"Seeds\"", "question": "How many products are there under the category \"Seeds\"?", "context": "CREATE TABLE products (product_category_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM products WHERE product_category_code = \"Spices\" AND typical_buying_price > 1000", "question": "Find the number of products with category \"Spices\" and typically sold above 1000.", "context": "CREATE TABLE products (product_category_code VARCHAR, typical_buying_price VARCHAR)"}, {"answer": "SELECT product_category_code, typical_buying_price FROM products WHERE product_name = \"cumin\"", "question": "What is the category and typical buying price  of the product with name \"cumin\"?", "context": "CREATE TABLE products (product_category_code VARCHAR, typical_buying_price VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT product_category_code FROM products WHERE product_name = \"flax\"", "question": "Which category does the product named \"flax\" belong to?", "context": "CREATE TABLE products (product_category_code VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT T1.product_name FROM products AS T1 JOIN ref_colors AS T2 ON T1.color_code = T2.color_code WHERE T2.color_description = 'yellow'", "question": "What is the name of the product with the color description 'yellow'?", "context": "CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE products (product_name VARCHAR, color_code VARCHAR)"}, {"answer": "SELECT T1.product_category_description FROM ref_product_categories AS T1 JOIN products AS T2 ON T1.product_category_code = T2.product_category_code WHERE T2.product_description LIKE '%t%'", "question": "Find the category descriptions of the products whose descriptions include letter 't'.", "context": "CREATE TABLE ref_product_categories (product_category_description VARCHAR, product_category_code VARCHAR); CREATE TABLE products (product_category_code VARCHAR, product_description VARCHAR)"}, {"answer": "SELECT t2.color_description FROM products AS t1 JOIN ref_colors AS t2 ON t1.color_code = t2.color_code WHERE t1.product_name = \"catnip\"", "question": "What is the color description of the product with name \"catnip\"?", "context": "CREATE TABLE products (color_code VARCHAR, product_name VARCHAR); CREATE TABLE ref_colors (color_description VARCHAR, color_code VARCHAR)"}, {"answer": "SELECT t1.color_code, t2.color_description FROM products AS t1 JOIN ref_colors AS t2 ON t1.color_code = t2.color_code WHERE t1.product_name = \"chervil\"", "question": "What is the color code and description of the product named \"chervil\"?", "context": "CREATE TABLE products (color_code VARCHAR, product_name VARCHAR); CREATE TABLE ref_colors (color_description VARCHAR, color_code VARCHAR)"}, {"answer": "SELECT t1.product_id, t2.color_description FROM products AS t1 JOIN ref_colors AS t2 ON t1.color_code = t2.color_code JOIN product_characteristics AS t3 ON t1.product_id = t3.product_id GROUP BY t1.product_id HAVING COUNT(*) >= 2", "question": "Find the id and color description of the products with at least 2 characteristics.", "context": "CREATE TABLE product_characteristics (product_id VARCHAR); CREATE TABLE ref_colors (color_description VARCHAR, color_code VARCHAR); CREATE TABLE products (product_id VARCHAR, color_code VARCHAR)"}, {"answer": "SELECT t1.product_name FROM products AS t1 JOIN ref_colors AS t2 ON t1.color_code = t2.color_code WHERE t2.color_description = \"white\"", "question": "List all the product names with the color description \"white\".", "context": "CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE products (product_name VARCHAR, color_code VARCHAR)"}, {"answer": "SELECT t1.product_name, t1.typical_buying_price, t1.typical_selling_price FROM products AS t1 JOIN ref_colors AS t2 ON t1.color_code = t2.color_code WHERE t2.color_description = \"yellow\"", "question": "What are the name and typical buying and selling prices of the products that have color described as \"yellow\"?", "context": "CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE products (product_name VARCHAR, typical_buying_price VARCHAR, typical_selling_price VARCHAR, color_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id WHERE t1.product_name = \"sesame\"", "question": "How many characteristics does the product named \"sesame\" have?", "context": "CREATE TABLE product_characteristics (product_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT t3.characteristic_name) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"sesame\"", "question": "How many distinct characteristic names does the product \"cumin\" have?", "context": "CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR, characteristic_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"sesame\"", "question": "What are all the characteristic names of product \"sesame\"?", "context": "CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR, characteristic_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT t3.characteristic_name, t3.characteristic_data_type FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"cumin\"", "question": "List all the characteristic names and data types of product \"cumin\".", "context": "CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR, characteristic_data_type VARCHAR, characteristic_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"sesame\" AND t3.characteristic_type_code = \"Grade\"", "question": "List all characteristics of product named \"sesame\" with type code \"Grade\".", "context": "CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR, characteristic_id VARCHAR, characteristic_type_code VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"laurel\"", "question": "How many characteristics does the product named \"laurel\" have?", "context": "CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"flax\"", "question": "Find the number of characteristics that the product \"flax\" has.", "context": "CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT product_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id JOIN ref_colors AS t4 ON t1.color_code = t4.color_code WHERE t4.color_description = \"red\" AND t3.characteristic_name = \"fast\"", "question": "Find the name of the products that have the color description \"red\" and have the characteristic name \"fast\".", "context": "CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR, characteristic_name VARCHAR); CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE products (product_id VARCHAR, color_code VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = \"hot\"", "question": "How many products have the characteristic named \"hot\"?", "context": "CREATE TABLE products (product_id VARCHAR); CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR, characteristic_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT DISTINCT t1.product_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = \"warm\"", "question": "List the all the distinct names of the products with the characteristic name 'warm'.", "context": "CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR, characteristic_name VARCHAR); CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id JOIN ref_colors AS t4 ON t1.color_code = t4.color_code WHERE t4.color_description = \"red\" AND t3.characteristic_name = \"slow\"", "question": "Find the number of the products that have their color described as \"red\" and have a characteristic named \"slow\".", "context": "CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR, characteristic_name VARCHAR); CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE products (product_id VARCHAR, color_code VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id JOIN ref_colors AS t4 ON t1.color_code = t4.color_code WHERE t4.color_description = \"white\" OR t3.characteristic_name = \"hot\"", "question": "Count the products that have the color description \"white\" or have the characteristic name \"hot\".", "context": "CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR, characteristic_name VARCHAR); CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE products (product_id VARCHAR, color_code VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT unit_of_measure FROM ref_product_categories WHERE product_category_code = \"Herbs\"", "question": "What is the unit of measuerment of the product category code \"Herbs\"?", "context": "CREATE TABLE ref_product_categories (unit_of_measure VARCHAR, product_category_code VARCHAR)"}, {"answer": "SELECT product_category_description FROM ref_product_categories WHERE product_category_code = \"Spices\"", "question": "Find the product category description of the product category with code \"Spices\".", "context": "CREATE TABLE ref_product_categories (product_category_description VARCHAR, product_category_code VARCHAR)"}, {"answer": "SELECT product_category_description, unit_of_measure FROM ref_product_categories WHERE product_category_code = \"Herbs\"", "question": "What is the product category description and unit of measurement of category \"Herbs\"?", "context": "CREATE TABLE ref_product_categories (product_category_description VARCHAR, unit_of_measure VARCHAR, product_category_code VARCHAR)"}, {"answer": "SELECT t2.unit_of_measure FROM products AS t1 JOIN ref_product_categories AS t2 ON t1.product_category_code = t2.product_category_code WHERE t1.product_name = \"cumin\"", "question": "What is the unit of measurement of product named \"cumin\"?", "context": "CREATE TABLE ref_product_categories (unit_of_measure VARCHAR, product_category_code VARCHAR); CREATE TABLE products (product_category_code VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT t2.unit_of_measure, t2.product_category_code FROM products AS t1 JOIN ref_product_categories AS t2 ON t1.product_category_code = t2.product_category_code WHERE t1.product_name = \"chervil\"", "question": "Find the unit of measurement and product category code of product named \"chervil\".", "context": "CREATE TABLE ref_product_categories (unit_of_measure VARCHAR, product_category_code VARCHAR); CREATE TABLE products (product_category_code VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT t1.product_name FROM products AS t1 JOIN ref_product_categories AS t2 ON t1.product_category_code = t2.product_category_code JOIN ref_colors AS t3 ON t1.color_code = t3.color_code WHERE t3.color_description = \"white\" AND t2.unit_of_measure <> \"Handful\"", "question": "Find the product names that are colored 'white' but do not have unit of measurement \"Handful\".", "context": "CREATE TABLE products (product_name VARCHAR, product_category_code VARCHAR, color_code VARCHAR); CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE ref_product_categories (product_category_code VARCHAR, unit_of_measure 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", "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(*) LIMIT 1", "question": "What is the description of the color used by least products?", "context": "CREATE TABLE ref_colors (color_description VARCHAR, color_code VARCHAR); CREATE TABLE products (color_code VARCHAR)"}, {"answer": "SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id GROUP BY t3.characteristic_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the characteristic name used by most number of the products?", "context": "CREATE TABLE products (product_id VARCHAR); CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR, characteristic_id VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT characteristic_name, other_characteristic_details, characteristic_data_type FROM CHARACTERISTICS EXCEPT SELECT t1.characteristic_name, t1.other_characteristic_details, t1.characteristic_data_type FROM CHARACTERISTICS AS t1 JOIN product_characteristics AS t2 ON t1.characteristic_id = t2.characteristic_id", "question": "What are the names, details and data types of the characteristics which are never used by any product?", "context": "CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR, other_characteristic_details VARCHAR, characteristic_data_type VARCHAR, characteristic_id VARCHAR); CREATE TABLE product_characteristics (characteristic_id VARCHAR); CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR, other_characteristic_details VARCHAR, characteristic_data_type VARCHAR)"}, {"answer": "SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id GROUP BY t3.characteristic_name HAVING COUNT(*) >= 2", "question": "What are characteristic names used at least twice across all products?", "context": "CREATE TABLE products (product_id VARCHAR); CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR, characteristic_id VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Ref_colors WHERE NOT color_code IN (SELECT color_code FROM products)", "question": "How many colors are never used by any product?", "context": "CREATE TABLE products (color_code VARCHAR); CREATE TABLE Ref_colors (color_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM event", "question": "How many events are there?", "context": "CREATE TABLE event (Id VARCHAR)"}, {"answer": "SELECT name FROM event ORDER BY YEAR DESC", "question": "List all the event names by year from the most recent to the oldest.", "context": "CREATE TABLE event (name VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT name FROM event ORDER BY YEAR DESC LIMIT 1", "question": "What is the name of the event that happened in the most recent year?", "context": "CREATE TABLE event (name VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM stadium", "question": "How many stadiums are there?", "context": "CREATE TABLE stadium (Id VARCHAR)"}, {"answer": "SELECT name FROM stadium ORDER BY capacity DESC LIMIT 1", "question": "Find the name of the stadium that has the maximum capacity.", "context": "CREATE TABLE stadium (name VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT name FROM stadium WHERE capacity < (SELECT AVG(capacity) FROM stadium)", "question": "Find the names of stadiums whose capacity is smaller than the average capacity.", "context": "CREATE TABLE stadium (name VARCHAR, capacity INTEGER)"}, {"answer": "SELECT country FROM stadium GROUP BY country ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the country that has the most stadiums.", "context": "CREATE TABLE stadium (country VARCHAR)"}, {"answer": "SELECT country FROM stadium GROUP BY country HAVING COUNT(*) <= 3", "question": "Which country has at most 3 stadiums listed?", "context": "CREATE TABLE stadium (country VARCHAR)"}, {"answer": "SELECT country FROM stadium WHERE capacity > 60000 INTERSECT SELECT country FROM stadium WHERE capacity < 50000", "question": "Which country has both stadiums with capacity greater than 60000 and stadiums with capacity less than 50000?", "context": "CREATE TABLE stadium (country VARCHAR, capacity INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT city) FROM stadium WHERE opening_year < 2006", "question": "How many cities have a stadium that was opened before the year of 2006?", "context": "CREATE TABLE stadium (city VARCHAR, opening_year INTEGER)"}, {"answer": "SELECT country, COUNT(*) FROM stadium GROUP BY country", "question": "How many stadiums does each country have?", "context": "CREATE TABLE stadium (country VARCHAR)"}, {"answer": "SELECT country FROM stadium EXCEPT SELECT country FROM stadium WHERE opening_year > 2006", "question": "Which countries do not have a stadium that was opened after 2006?", "context": "CREATE TABLE stadium (country VARCHAR, opening_year INTEGER)"}, {"answer": "SELECT COUNT(*) FROM stadium WHERE country <> 'Russia'", "question": "How many stadiums are not in country \"Russia\"?", "context": "CREATE TABLE stadium (country VARCHAR)"}, {"answer": "SELECT name FROM swimmer ORDER BY meter_100", "question": "Find the names of all swimmers, sorted by their 100 meter scores in ascending order.", "context": "CREATE TABLE swimmer (name VARCHAR, meter_100 VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT nationality) FROM swimmer", "question": "How many different countries are all the swimmers from?", "context": "CREATE TABLE swimmer (nationality VARCHAR)"}, {"answer": "SELECT nationality, COUNT(*) FROM swimmer GROUP BY nationality HAVING COUNT(*) > 1", "question": "List countries that have more than one swimmer.", "context": "CREATE TABLE swimmer (nationality VARCHAR)"}, {"answer": "SELECT meter_200, meter_300 FROM swimmer WHERE nationality = 'Australia'", "question": "Find all 200 meter and 300 meter results of swimmers with nationality \"Australia\".", "context": "CREATE TABLE swimmer (meter_200 VARCHAR, meter_300 VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT t1.name FROM swimmer AS t1 JOIN record AS t2 ON t1.id = t2.swimmer_id WHERE RESULT = 'Win'", "question": "Find the names of swimmers who has a result of \"win\".", "context": "CREATE TABLE record (swimmer_id VARCHAR); CREATE TABLE swimmer (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT t1.name FROM stadium AS t1 JOIN event AS t2 ON t1.id = t2.stadium_id GROUP BY t2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the stadium which held the most events?", "context": "CREATE TABLE stadium (name VARCHAR, id VARCHAR); CREATE TABLE event (stadium_id VARCHAR)"}, {"answer": "SELECT t1.name, t1.capacity FROM stadium AS t1 JOIN event AS t2 ON t1.id = t2.stadium_id WHERE t2.name = 'World Junior'", "question": "Find the name and capacity of the stadium where the event named \"World Junior\" happened.", "context": "CREATE TABLE event (stadium_id VARCHAR, name VARCHAR); CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, id VARCHAR)"}, {"answer": "SELECT name FROM stadium WHERE NOT id IN (SELECT stadium_id FROM event)", "question": "Find the names of stadiums which have never had any event.", "context": "CREATE TABLE stadium (name VARCHAR, id VARCHAR, stadium_id VARCHAR); CREATE TABLE event (name VARCHAR, id VARCHAR, stadium_id VARCHAR)"}, {"answer": "SELECT t1.name FROM swimmer AS t1 JOIN record AS t2 ON t1.id = t2.swimmer_id GROUP BY t2.swimmer_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of the swimmer who has the most records.", "context": "CREATE TABLE record (swimmer_id VARCHAR); CREATE TABLE swimmer (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT t1.name FROM swimmer AS t1 JOIN record AS t2 ON t1.id = t2.swimmer_id GROUP BY t2.swimmer_id HAVING COUNT(*) >= 2", "question": "Find the name of the swimmer who has at least 2 records.", "context": "CREATE TABLE record (swimmer_id VARCHAR); CREATE TABLE swimmer (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT t1.name, t1.nationality FROM swimmer AS t1 JOIN record AS t2 ON t1.id = t2.swimmer_id WHERE RESULT = 'Win' GROUP BY t2.swimmer_id HAVING COUNT(*) > 1", "question": "Find the name and nationality of the swimmer who has won (i.e., has a result of \"win\") more than 1 time.", "context": "CREATE TABLE record (swimmer_id VARCHAR); CREATE TABLE swimmer (name VARCHAR, nationality VARCHAR, id VARCHAR)"}, {"answer": "SELECT name FROM swimmer WHERE NOT id IN (SELECT swimmer_id FROM record)", "question": "Find the names of the swimmers who have no record.", "context": "CREATE TABLE swimmer (name VARCHAR, id VARCHAR, swimmer_id VARCHAR); CREATE TABLE record (name VARCHAR, id VARCHAR, swimmer_id VARCHAR)"}, {"answer": "SELECT t1.name FROM swimmer AS t1 JOIN record AS t2 ON t1.id = t2.swimmer_id WHERE RESULT = 'Win' INTERSECT SELECT t1.name FROM swimmer AS t1 JOIN record AS t2 ON t1.id = t2.swimmer_id WHERE RESULT = 'Loss'", "question": "Find the names of the swimmers who have both \"win\" and \"loss\" results in the record.", "context": "CREATE TABLE record (swimmer_id VARCHAR); CREATE TABLE swimmer (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT t4.name FROM swimmer AS t1 JOIN record AS t2 ON t1.id = t2.swimmer_id JOIN event AS t3 ON t2.event_id = t3.id JOIN stadium AS t4 ON t4.id = t3.stadium_id WHERE t1.nationality = 'Australia'", "question": "Find the names of stadiums that some Australian swimmers have been to.", "context": "CREATE TABLE swimmer (id VARCHAR, nationality VARCHAR); CREATE TABLE record (swimmer_id VARCHAR, event_id VARCHAR); CREATE TABLE stadium (name VARCHAR, id VARCHAR); CREATE TABLE event (id VARCHAR, stadium_id VARCHAR)"}, {"answer": "SELECT t3.name FROM record AS t1 JOIN event AS t2 ON t1.event_id = t2.id JOIN stadium AS t3 ON t3.id = t2.stadium_id GROUP BY t2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the names of stadiums that the most swimmers have been to.", "context": "CREATE TABLE record (event_id VARCHAR); CREATE TABLE stadium (name VARCHAR, id VARCHAR); CREATE TABLE event (stadium_id VARCHAR, id VARCHAR)"}, {"answer": "SELECT * FROM swimmer", "question": "Find all details for each swimmer.", "context": "CREATE TABLE swimmer (Id VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM stadium WHERE opening_year = 2005", "question": "What is the average capacity of the stadiums that were opened in year 2005?", "context": "CREATE TABLE stadium (capacity INTEGER, opening_year VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM railway", "question": "How many railways are there?", "context": "CREATE TABLE railway (Id VARCHAR)"}, {"answer": "SELECT Builder FROM railway ORDER BY Builder", "question": "List the builders of railways in ascending alphabetical order.", "context": "CREATE TABLE railway (Builder VARCHAR)"}, {"answer": "SELECT Wheels, LOCATION FROM railway", "question": "List the wheels and locations of the railways.", "context": "CREATE TABLE railway (Wheels VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT MAX(LEVEL) FROM manager WHERE Country <> \"Australia\t\"", "question": "What is the maximum level of managers in countries that are not \"Australia\"?", "context": "CREATE TABLE manager (LEVEL INTEGER, Country VARCHAR)"}, {"answer": "SELECT AVG(Age) FROM manager", "question": "What is the average age for all managers?", "context": "CREATE TABLE manager (Age INTEGER)"}, {"answer": "SELECT Name FROM manager ORDER BY LEVEL", "question": "What are the names of managers in ascending order of level?", "context": "CREATE TABLE manager (Name VARCHAR, LEVEL VARCHAR)"}, {"answer": "SELECT Name, Arrival FROM train", "question": "What are the names and arrival times of trains?", "context": "CREATE TABLE train (Name VARCHAR, Arrival VARCHAR)"}, {"answer": "SELECT Name FROM manager ORDER BY Age DESC LIMIT 1", "question": "What is the name of the oldest manager?", "context": "CREATE TABLE manager (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT T2.Name, T1.Location FROM railway AS T1 JOIN train AS T2 ON T1.Railway_ID = T2.Railway_ID", "question": "Show the names of trains and locations of railways they are in.", "context": "CREATE TABLE railway (Location VARCHAR, Railway_ID VARCHAR); CREATE TABLE train (Name VARCHAR, Railway_ID VARCHAR)"}, {"answer": "SELECT T1.Builder FROM railway AS T1 JOIN train AS T2 ON T1.Railway_ID = T2.Railway_ID WHERE T2.Name = \"Andaman Exp\"", "question": "Show the builder of railways associated with the trains named \"Andaman Exp\".", "context": "CREATE TABLE railway (Builder VARCHAR, Railway_ID VARCHAR); CREATE TABLE train (Railway_ID VARCHAR, Name VARCHAR)"}, {"answer": "SELECT T2.Railway_ID, T1.Location FROM railway AS T1 JOIN train AS T2 ON T1.Railway_ID = T2.Railway_ID GROUP BY T2.Railway_ID HAVING COUNT(*) > 1", "question": "Show id and location of railways that are associated with more than one train.", "context": "CREATE TABLE railway (Location VARCHAR, Railway_ID VARCHAR); CREATE TABLE train (Railway_ID VARCHAR)"}, {"answer": "SELECT T2.Railway_ID, T1.Builder FROM railway AS T1 JOIN train AS T2 ON T1.Railway_ID = T2.Railway_ID GROUP BY T2.Railway_ID ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the id and builder of the railway that are associated with the most trains.", "context": "CREATE TABLE train (Railway_ID VARCHAR); CREATE TABLE railway (Builder VARCHAR, Railway_ID VARCHAR)"}, {"answer": "SELECT Builder, COUNT(*) FROM railway GROUP BY Builder", "question": "Show different builders of railways, along with the corresponding number of railways using each builder.", "context": "CREATE TABLE railway (Builder VARCHAR)"}, {"answer": "SELECT Builder FROM railway GROUP BY Builder ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most common builder of railways.", "context": "CREATE TABLE railway (Builder VARCHAR)"}, {"answer": "SELECT LOCATION, COUNT(*) FROM railway GROUP BY LOCATION", "question": "Show different locations of railways along with the corresponding number of railways at each location.", "context": "CREATE TABLE railway (LOCATION VARCHAR)"}, {"answer": "SELECT LOCATION FROM railway GROUP BY LOCATION HAVING COUNT(*) > 1", "question": "Show the locations that have more than one railways.", "context": "CREATE TABLE railway (LOCATION VARCHAR)"}, {"answer": "SELECT ObjectNumber FROM railway WHERE NOT Railway_ID IN (SELECT Railway_ID FROM train)", "question": "List the object number of railways that do not have any trains.", "context": "CREATE TABLE train (ObjectNumber VARCHAR, Railway_ID VARCHAR); CREATE TABLE railway (ObjectNumber VARCHAR, Railway_ID VARCHAR)"}, {"answer": "SELECT Country FROM manager WHERE Age > 50 INTERSECT SELECT Country FROM manager WHERE Age < 46", "question": "Show the countries that have both managers of age above 50 and managers of age below 46.", "context": "CREATE TABLE manager (Country VARCHAR, Age INTEGER)"}, {"answer": "SELECT DISTINCT Country FROM manager", "question": "Show the distinct countries of managers.", "context": "CREATE TABLE manager (Country VARCHAR)"}, {"answer": "SELECT Working_year_starts FROM manager ORDER BY LEVEL DESC", "question": "Show the working years of managers in descending order of their level.", "context": "CREATE TABLE manager (Working_year_starts VARCHAR, LEVEL VARCHAR)"}, {"answer": "SELECT Country FROM manager WHERE Age > 50 OR Age < 46", "question": "Show the countries that have managers of age above 50 or below 46.", "context": "CREATE TABLE manager (Country VARCHAR, Age VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM addresses WHERE country = 'USA'", "question": "How many addresses are there in country USA?", "context": "CREATE TABLE addresses (country VARCHAR)"}, {"answer": "SELECT DISTINCT city FROM addresses", "question": "Show all distinct cities in the address record.", "context": "CREATE TABLE addresses (city VARCHAR)"}, {"answer": "SELECT state_province_county, COUNT(*) FROM addresses GROUP BY state_province_county", "question": "Show each state and the number of addresses in each state.", "context": "CREATE TABLE addresses (state_province_county VARCHAR)"}, {"answer": "SELECT customer_name, customer_phone FROM customers WHERE NOT customer_id IN (SELECT customer_id FROM customer_address_history)", "question": "Show names and phones of customers who do not have address information.", "context": "CREATE TABLE customer_address_history (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the name of the customer who has the most orders.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR)"}, {"answer": "SELECT product_type_code FROM products GROUP BY product_type_code HAVING COUNT(*) >= 2", "question": "Show the product type codes which have at least two products.", "context": "CREATE TABLE products (product_type_code VARCHAR)"}, {"answer": "SELECT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status_code = 'Completed' INTERSECT SELECT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status_code = 'Part'", "question": "Show the names of customers who have both an order in completed status and an order in part status.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_status_code VARCHAR)"}, {"answer": "SELECT customer_name, customer_phone, payment_method_code FROM customers ORDER BY customer_number DESC", "question": "Show the name, phone, and payment method code for all customers in descending order of customer number.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, payment_method_code VARCHAR, customer_number VARCHAR)"}, {"answer": "SELECT T1.product_name, SUM(T2.order_quantity) FROM products AS T1 JOIN order_items AS T2 ON T1.product_id = T2.product_id GROUP BY T1.product_id", "question": "Show the product name and total order quantity for each product.", "context": "CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE order_items (order_quantity INTEGER, product_id VARCHAR)"}, {"answer": "SELECT MIN(product_price), MAX(product_price), AVG(product_price) FROM products", "question": "Show the minimum, maximum, average price for all products.", "context": "CREATE TABLE products (product_price INTEGER)"}, {"answer": "SELECT COUNT(*) FROM products WHERE product_price > (SELECT AVG(product_price) FROM products)", "question": "How many products have a price higher than the average?", "context": "CREATE TABLE products (product_price INTEGER)"}, {"answer": "SELECT T2.customer_name, T3.city, T1.date_from, T1.date_to FROM customer_address_history AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id JOIN addresses AS T3 ON T1.address_id = T3.address_id", "question": "Show the customer name, customer address city, date from, and date to for each customer address history.", "context": "CREATE TABLE addresses (city VARCHAR, address_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_address_history (date_from VARCHAR, date_to VARCHAR, customer_id VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE T1.payment_method_code = 'Credit Card' GROUP BY T1.customer_id HAVING COUNT(*) > 2", "question": "Show the names of customers who use Credit Card payment method and have more than 2 orders.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR, payment_method_code VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR)"}, {"answer": "SELECT T1.customer_name, T1.customer_phone FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id JOIN order_items AS T3 ON T3.order_id = T2.order_id GROUP BY T1.customer_id ORDER BY SUM(T3.order_quantity) DESC LIMIT 1", "question": "What are the name and phone of the customer with the most ordered product quantity?", "context": "CREATE TABLE order_items (order_id VARCHAR, order_quantity INTEGER); CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT product_type_code, product_name FROM products WHERE product_price > 1000 OR product_price < 500", "question": "Show the product type and name for the products with price higher than 1000 or lower than 500.", "context": "CREATE TABLE products (product_type_code VARCHAR, product_name VARCHAR, product_price VARCHAR)"}, {"answer": "SELECT dorm_name FROM dorm WHERE gender = 'F'", "question": "Find the name of dorms only for female (F gender).", "context": "CREATE TABLE dorm (dorm_name VARCHAR, gender VARCHAR)"}, {"answer": "SELECT dorm_name FROM dorm WHERE student_capacity > 300", "question": "Find the name of dorms that can accommodate more than 300 students.", "context": "CREATE TABLE dorm (dorm_name VARCHAR, student_capacity INTEGER)"}, {"answer": "SELECT COUNT(*) FROM student WHERE sex = 'F' AND age < 25", "question": "How many female students (sex is F) whose age is below 25?", "context": "CREATE TABLE student (sex VARCHAR, age VARCHAR)"}, {"answer": "SELECT fname FROM student WHERE age > 20", "question": "Find the first name of students who is older than 20.", "context": "CREATE TABLE student (fname VARCHAR, age INTEGER)"}, {"answer": "SELECT fname FROM student WHERE city_code = 'PHL' AND age BETWEEN 20 AND 25", "question": "Find the first name of students living in city PHL whose age is between 20 and 25.", "context": "CREATE TABLE student (fname VARCHAR, city_code VARCHAR, age VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM dorm", "question": "How many dorms are there?", "context": "CREATE TABLE dorm (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM dorm_amenity", "question": "Find the number of distinct amenities.", "context": "CREATE TABLE dorm_amenity (Id VARCHAR)"}, {"answer": "SELECT SUM(student_capacity) FROM dorm", "question": "Find the total capacity of all dorms.", "context": "CREATE TABLE dorm (student_capacity INTEGER)"}, {"answer": "SELECT AVG(age), city_code FROM student GROUP BY city_code", "question": "Find the average age of all students living in the each city.", "context": "CREATE TABLE student (city_code VARCHAR, age INTEGER)"}, {"answer": "SELECT AVG(student_capacity), SUM(student_capacity) FROM dorm WHERE gender = 'X'", "question": "Find the average and total capacity of dorms for the students with gender X.", "context": "CREATE TABLE dorm (student_capacity INTEGER, gender VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT dormid) FROM has_amenity", "question": "Find the number of dorms that have some amenity.", "context": "CREATE TABLE has_amenity (dormid VARCHAR)"}, {"answer": "SELECT dorm_name FROM dorm WHERE NOT dormid IN (SELECT dormid FROM has_amenity)", "question": "Find the name of dorms that do not have any amenity", "context": "CREATE TABLE dorm (dorm_name VARCHAR, dormid VARCHAR); CREATE TABLE has_amenity (dorm_name VARCHAR, dormid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT gender) FROM dorm", "question": "Find the number of distinct gender for dorms.", "context": "CREATE TABLE dorm (gender VARCHAR)"}, {"answer": "SELECT student_capacity, gender FROM dorm WHERE dorm_name LIKE '%Donor%'", "question": "Find the capacity and gender type of the dorm whose name has substring \u2018Donor\u2019.", "context": "CREATE TABLE dorm (student_capacity VARCHAR, gender VARCHAR, dorm_name VARCHAR)"}, {"answer": "SELECT dorm_name, gender FROM dorm WHERE student_capacity > 300 OR student_capacity < 100", "question": "Find the name and gender type of the dorms whose capacity is greater than 300 or less than 100.", "context": "CREATE TABLE dorm (dorm_name VARCHAR, gender VARCHAR, student_capacity VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT major), COUNT(DISTINCT city_code) FROM student", "question": "Find the numbers of different majors and cities.", "context": "CREATE TABLE student (major VARCHAR, city_code VARCHAR)"}, {"answer": "SELECT T1.dorm_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T3.amenity_name = 'TV Lounge' INTERSECT SELECT T1.dorm_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T3.amenity_name = 'Study Room'", "question": "Find the name of dorms which have both TV Lounge and Study Room as amenities.", "context": "CREATE TABLE dorm (dorm_name VARCHAR, dormid VARCHAR); CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm_amenity (amenid VARCHAR, amenity_name VARCHAR)"}, {"answer": "SELECT T1.dorm_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T3.amenity_name = 'TV Lounge' EXCEPT SELECT T1.dorm_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T3.amenity_name = 'Study Room'", "question": "Find the name of dorms which have TV Lounge but no Study Room as amenity.", "context": "CREATE TABLE dorm (dorm_name VARCHAR, dormid VARCHAR); CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm_amenity (amenid VARCHAR, amenity_name VARCHAR)"}, {"answer": "SELECT lname FROM student WHERE sex = 'F' AND city_code = 'BAL' UNION SELECT lname FROM student WHERE sex = 'M' AND age < 20", "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 dorm_name FROM dorm ORDER BY student_capacity DESC LIMIT 1", "question": "Find the name of the dorm with the largest capacity.", "context": "CREATE TABLE dorm (dorm_name VARCHAR, student_capacity VARCHAR)"}, {"answer": "SELECT amenity_name FROM dorm_amenity ORDER BY amenity_name", "question": "List in alphabetic order all different amenities.", "context": "CREATE TABLE dorm_amenity (amenity_name VARCHAR)"}, {"answer": "SELECT city_code FROM student GROUP BY city_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the code of city where most of students are living in.", "context": "CREATE TABLE student (city_code VARCHAR)"}, {"answer": "SELECT fname, lname FROM student WHERE age < (SELECT AVG(age) FROM student)", "question": "Find the first and last name of students whose age is younger than the average age.", "context": "CREATE TABLE student (fname VARCHAR, lname VARCHAR, age INTEGER)"}, {"answer": "SELECT fname, lname FROM student WHERE city_code <> 'HKG' ORDER BY age", "question": "List the first and last name of students who are not living in the city with code HKG, and sorted the results by their ages.", "context": "CREATE TABLE student (fname VARCHAR, lname VARCHAR, city_code VARCHAR, age VARCHAR)"}, {"answer": "SELECT T1.amenity_name FROM dorm_amenity AS T1 JOIN has_amenity AS T2 ON T2.amenid = T1.amenid JOIN dorm AS T3 ON T2.dormid = T3.dormid WHERE T3.dorm_name = 'Anonymous Donor Hall' ORDER BY T1.amenity_name", "question": "List name of all amenities which Anonymous Donor Hall has, and sort the results in alphabetic order.", "context": "CREATE TABLE has_amenity (amenid VARCHAR, dormid VARCHAR); CREATE TABLE dorm_amenity (amenity_name VARCHAR, amenid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR)"}, {"answer": "SELECT COUNT(*), SUM(student_capacity), gender FROM dorm GROUP BY gender", "question": "Find the number of dorms and total capacity for each gender.", "context": "CREATE TABLE dorm (gender VARCHAR, student_capacity INTEGER)"}, {"answer": "SELECT AVG(age), MAX(age), sex FROM student GROUP BY sex", "question": "Find the average and oldest age for students with different sex.", "context": "CREATE TABLE student (sex VARCHAR, age INTEGER)"}, {"answer": "SELECT COUNT(*), major FROM student GROUP BY major", "question": "Find the number of students in each major.", "context": "CREATE TABLE student (major VARCHAR)"}, {"answer": "SELECT COUNT(*), AVG(age), city_code FROM student GROUP BY city_code", "question": "Find the number and average age of students living in each city.", "context": "CREATE TABLE student (city_code VARCHAR, age INTEGER)"}, {"answer": "SELECT COUNT(*), AVG(age), city_code FROM student WHERE sex = 'M' GROUP BY city_code", "question": "Find the average age and number of male students (with sex M) from each city.", "context": "CREATE TABLE student (city_code VARCHAR, age INTEGER, sex VARCHAR)"}, {"answer": "SELECT COUNT(*), city_code FROM student GROUP BY city_code HAVING COUNT(*) > 1", "question": "Find the number of students for the cities where have more than one student.", "context": "CREATE TABLE student (city_code VARCHAR)"}, {"answer": "SELECT fname, lname FROM student WHERE major <> (SELECT major FROM student GROUP BY major ORDER BY COUNT(*) DESC LIMIT 1)", "question": "Find the first and last name of students who are not in the largest major.", "context": "CREATE TABLE student (fname VARCHAR, lname VARCHAR, major VARCHAR)"}, {"answer": "SELECT COUNT(*), sex FROM student WHERE age > (SELECT AVG(age) FROM student) GROUP BY sex", "question": "Find the number of students whose age is older than the average age for each gender.", "context": "CREATE TABLE student (sex VARCHAR, age INTEGER)"}, {"answer": "SELECT AVG(T1.age), T3.dorm_name FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid GROUP BY T3.dorm_name", "question": "Find the average age of students living in each dorm and the name of dorm.", "context": "CREATE TABLE dorm (dorm_name VARCHAR, dormid VARCHAR); CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.dormid FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid WHERE T1.student_capacity > 100 GROUP BY T1.dormid", "question": "Find the number of amenities for each of the dorms that can accommodate more than 100 students.", "context": "CREATE TABLE dorm (dormid VARCHAR, student_capacity INTEGER); CREATE TABLE has_amenity (dormid VARCHAR)"}, {"answer": "SELECT COUNT(*), T3.dorm_name FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid WHERE T1.age > 20 GROUP BY T3.dorm_name", "question": "Find the number of students who is older than 20 in each dorm.", "context": "CREATE TABLE dorm (dorm_name VARCHAR, dormid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE student (stuid VARCHAR, age INTEGER)"}, {"answer": "SELECT T1.fname FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid WHERE T3.dorm_name = 'Smith Hall'", "question": "Find the first name of students who are living in the Smith Hall.", "context": "CREATE TABLE student (fname VARCHAR, stuid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR)"}, {"answer": "SELECT AVG(T1.age) FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid WHERE T3.student_capacity = (SELECT MAX(student_capacity) FROM dorm)", "question": "Find the average age of students who are living in the dorm with the largest capacity.", "context": "CREATE TABLE dorm (student_capacity INTEGER); CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, student_capacity INTEGER)"}, {"answer": "SELECT COUNT(*) FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid WHERE T3.gender = 'M'", "question": "Find the total number of students living in the male dorm (with gender M).", "context": "CREATE TABLE dorm (dormid VARCHAR, gender VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE student (stuid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid WHERE T3.dorm_name = 'Smith Hall' AND T1.sex = 'F'", "question": "Find the number of female students (with F sex) living in Smith Hall", "context": "CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE student (stuid VARCHAR, sex VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR)"}, {"answer": "SELECT T3.amenity_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T1.dorm_name = 'Smith Hall'", "question": "Find the name of amenities Smith Hall dorm have.", "context": "CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm_amenity (amenity_name VARCHAR, amenid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR)"}, {"answer": "SELECT T3.amenity_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T1.dorm_name = 'Smith Hall' ORDER BY T3.amenity_name", "question": "Find the name of amenities Smith Hall dorm have. ordered the results by amenity names.", "context": "CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm_amenity (amenity_name VARCHAR, amenid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR)"}, {"answer": "SELECT T1.amenity_name FROM dorm_amenity AS T1 JOIN has_amenity AS T2 ON T1.amenid = T2.amenid GROUP BY T2.amenid ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of amenity that is most common in all dorms.", "context": "CREATE TABLE dorm_amenity (amenity_name VARCHAR, amenid VARCHAR); CREATE TABLE has_amenity (amenid VARCHAR)"}, {"answer": "SELECT T1.fname FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid WHERE T2.dormid IN (SELECT T2.dormid FROM dorm AS T3 JOIN has_amenity AS T4 ON T3.dormid = T4.dormid JOIN dorm_amenity AS T5 ON T4.amenid = T5.amenid GROUP BY T3.dormid ORDER BY COUNT(*) DESC LIMIT 1)", "question": "Find the first name of students who are living in the dorm that has most number of amenities.", "context": "CREATE TABLE dorm_amenity (amenid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE dorm (dormid VARCHAR); CREATE TABLE student (fname VARCHAR, stuid VARCHAR); CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR)"}, {"answer": "SELECT T1.dorm_name, T1.student_capacity FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid GROUP BY T2.dormid ORDER BY COUNT(*) LIMIT 1", "question": "Find the name and capacity of the dorm with least number of amenities.", "context": "CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm_amenity (amenid VARCHAR); CREATE TABLE dorm (dorm_name VARCHAR, student_capacity VARCHAR, dormid VARCHAR)"}, {"answer": "SELECT dorm_name FROM dorm EXCEPT SELECT T1.dorm_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T3.amenity_name = 'TV Lounge'", "question": "Find the name of dorms that do not have amenity TV Lounge.", "context": "CREATE TABLE dorm (dorm_name VARCHAR, dormid VARCHAR); CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm (dorm_name VARCHAR); CREATE TABLE dorm_amenity (amenid VARCHAR, amenity_name VARCHAR)"}, {"answer": "SELECT T1.fname, T1.lname FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid WHERE T2.dormid IN (SELECT T3.dormid FROM has_amenity AS T3 JOIN dorm_amenity AS T4 ON T3.amenid = T4.amenid WHERE T4.amenity_name = 'TV Lounge')", "question": "Find the first and last name of students who are living in the dorms that have amenity TV Lounge.", "context": "CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR); CREATE TABLE dorm_amenity (amenid VARCHAR, amenity_name VARCHAR)"}, {"answer": "SELECT T1.fname, T1.age FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid WHERE NOT T2.dormid IN (SELECT T3.dormid FROM has_amenity AS T3 JOIN dorm_amenity AS T4 ON T3.amenid = T4.amenid WHERE T4.amenity_name = 'TV Lounge')", "question": "Find the first name and age of students who are living in the dorms that do not have amenity TV Lounge.", "context": "CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE student (fname VARCHAR, age VARCHAR, stuid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE dorm_amenity (amenid VARCHAR, amenity_name VARCHAR)"}, {"answer": "SELECT T3.amenity_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid JOIN lives_in AS T4 ON T4.dormid = T1.dormid JOIN student AS T5 ON T5.stuid = T4.stuid WHERE T5.lname = 'Smith'", "question": "Find the name of amenities of the dorm where the student with last name Smith is living in.", "context": "CREATE TABLE student (stuid VARCHAR, lname VARCHAR); CREATE TABLE dorm (dormid VARCHAR); CREATE TABLE lives_in (dormid VARCHAR, stuid VARCHAR); CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm_amenity (amenity_name VARCHAR, amenid VARCHAR)"}, {"answer": "SELECT email_address, phone_number FROM customers ORDER BY email_address, phone_number", "question": "Find the emails and phone numbers of all the customers, ordered by email address and phone number.", "context": "CREATE TABLE customers (email_address VARCHAR, phone_number VARCHAR)"}, {"answer": "SELECT town_city FROM customers WHERE customer_type_code = \"Good Credit Rating\" GROUP BY town_city ORDER BY COUNT(*) LIMIT 1", "question": "Which city has the least number of customers whose type code is \"Good Credit Rating\"?", "context": "CREATE TABLE customers (town_city VARCHAR, customer_type_code VARCHAR)"}, {"answer": "SELECT t1.product_name, COUNT(*) FROM products AS t1 JOIN complaints AS t2 ON t1.product_id = t2.product_id GROUP BY t1.product_name", "question": "List the name of all products along with the number of complaints that they have received.", "context": "CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE complaints (product_id VARCHAR)"}, {"answer": "SELECT t1.email_address FROM customers AS t1 JOIN complaints AS t2 ON t1.customer_id = t2.customer_id GROUP BY t1.customer_id ORDER BY COUNT(*) LIMIT 1", "question": "Find the emails of customers who has filed a complaints of the product with the most complaints.", "context": "CREATE TABLE customers (email_address VARCHAR, customer_id VARCHAR); CREATE TABLE complaints (customer_id VARCHAR)"}, {"answer": "SELECT DISTINCT t1.product_name FROM products AS t1 JOIN complaints AS t2 ON t1.product_id = t2.product_id JOIN customers AS t3 GROUP BY t3.customer_id ORDER BY COUNT(*) LIMIT 1", "question": "Which products has been complained by the customer who has filed least amount of complaints?", "context": "CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE complaints (product_id VARCHAR)"}, {"answer": "SELECT t1.phone_number FROM customers AS t1 JOIN complaints AS t2 ON t1.customer_id = t2.customer_id ORDER BY t2.date_complaint_raised DESC LIMIT 1", "question": "What is the phone number of the customer who has filed the most recent complaint?", "context": "CREATE TABLE customers (phone_number VARCHAR, customer_id VARCHAR); CREATE TABLE complaints (customer_id VARCHAR, date_complaint_raised VARCHAR)"}, {"answer": "SELECT email_address, phone_number FROM customers WHERE NOT customer_id IN (SELECT customer_id FROM complaints)", "question": "Find the email and phone number of the customers who have never filed a complaint before.", "context": "CREATE TABLE complaints (email_address VARCHAR, phone_number VARCHAR, customer_id VARCHAR); CREATE TABLE customers (email_address VARCHAR, phone_number VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT phone_number FROM customers UNION SELECT phone_number FROM staff", "question": "Find the phone number of all the customers and staff.", "context": "CREATE TABLE staff (phone_number VARCHAR); CREATE TABLE customers (phone_number VARCHAR)"}, {"answer": "SELECT product_description FROM products WHERE product_name = \"Chocolate\"", "question": "What is the description of the product named \"Chocolate\"?", "context": "CREATE TABLE products (product_description VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT product_name, product_category_code FROM products ORDER BY product_price DESC LIMIT 1", "question": "Find the name and category of the most expensive product.", "context": "CREATE TABLE products (product_name VARCHAR, product_category_code VARCHAR, product_price VARCHAR)"}, {"answer": "SELECT product_price FROM products WHERE NOT product_id IN (SELECT product_id FROM complaints)", "question": "Find the prices of products which has never received a single complaint.", "context": "CREATE TABLE products (product_price VARCHAR, product_id VARCHAR); CREATE TABLE complaints (product_price VARCHAR, product_id VARCHAR)"}, {"answer": "SELECT AVG(product_price), product_category_code FROM products GROUP BY product_category_code", "question": "What is the average price of the products for each category?", "context": "CREATE TABLE products (product_category_code VARCHAR, product_price INTEGER)"}, {"answer": "SELECT t1.last_name FROM staff AS t1 JOIN complaints AS t2 ON t1.staff_id = t2.staff_id JOIN products AS t3 ON t2.product_id = t3.product_id ORDER BY t3.product_price LIMIT 1", "question": "Find the last name of the staff member who processed the complaint of the cheapest product.", "context": "CREATE TABLE products (product_id VARCHAR, product_price VARCHAR); CREATE TABLE complaints (staff_id VARCHAR, product_id VARCHAR); CREATE TABLE staff (last_name VARCHAR, staff_id VARCHAR)"}, {"answer": "SELECT complaint_status_code FROM complaints GROUP BY complaint_status_code HAVING COUNT(*) > 3", "question": "Which complaint status has more than 3 records on file?", "context": "CREATE TABLE complaints (complaint_status_code VARCHAR)"}, {"answer": "SELECT last_name FROM staff WHERE email_address LIKE \"%wrau%\"", "question": "Find the last name of the staff whose email address contains \"wrau\".", "context": "CREATE TABLE staff (last_name VARCHAR, email_address VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM customers GROUP BY customer_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "How many customers are there in the customer type with the most customers?", "context": "CREATE TABLE customers (customer_type_code VARCHAR)"}, {"answer": "SELECT t1.last_name FROM staff AS t1 JOIN complaints AS t2 ON t1.staff_id = t2.staff_id ORDER BY t2.date_complaint_raised LIMIT 1", "question": "What is the last name of the staff who has handled the first ever complaint?", "context": "CREATE TABLE staff (last_name VARCHAR, staff_id VARCHAR); CREATE TABLE complaints (staff_id VARCHAR, date_complaint_raised VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT complaint_type_code) FROM complaints", "question": "How many distinct complaint type codes are there in the database?", "context": "CREATE TABLE complaints (complaint_type_code VARCHAR)"}, {"answer": "SELECT address_line_1, address_line_2 FROM customers WHERE email_address = \"vbogisich@example.org\"", "question": "Find the address line 1 and 2 of the customer with email \"vbogisich@example.org\".", "context": "CREATE TABLE customers (address_line_1 VARCHAR, address_line_2 VARCHAR, email_address VARCHAR)"}, {"answer": "SELECT complaint_status_code, COUNT(*) FROM complaints WHERE complaint_type_code = \"Product Failure\" GROUP BY complaint_status_code", "question": "Find the number of complaints with Product Failure type for each complaint status.", "context": "CREATE TABLE complaints (complaint_status_code VARCHAR, complaint_type_code VARCHAR)"}, {"answer": "SELECT t1.first_name FROM staff AS t1 JOIN complaints AS t2 ON t1.staff_id = t2.staff_id GROUP BY t2.staff_id ORDER BY COUNT(*) LIMIT 5", "question": "What is first names of the top 5 staff who have handled the greatest number of complaints?", "context": "CREATE TABLE complaints (staff_id VARCHAR); CREATE TABLE staff (first_name VARCHAR, staff_id VARCHAR)"}, {"answer": "SELECT state FROM customers GROUP BY state ORDER BY COUNT(*) LIMIT 1", "question": "Which state has the most customers?", "context": "CREATE TABLE customers (state VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM submission", "question": "How many submissions are there?", "context": "CREATE TABLE submission (Id VARCHAR)"}, {"answer": "SELECT Author FROM submission ORDER BY Scores", "question": "List the authors of submissions in ascending order of scores.", "context": "CREATE TABLE submission (Author VARCHAR, Scores VARCHAR)"}, {"answer": "SELECT Author, College FROM submission", "question": "What are the authors of submissions and their colleges?", "context": "CREATE TABLE submission (Author VARCHAR, College VARCHAR)"}, {"answer": "SELECT Author FROM submission WHERE College = \"Florida\" OR College = \"Temple\"", "question": "Show the names of authors from college \"Florida\" or \"Temple\"", "context": "CREATE TABLE submission (Author VARCHAR, College VARCHAR)"}, {"answer": "SELECT AVG(Scores) FROM submission", "question": "What is the average score of submissions?", "context": "CREATE TABLE submission (Scores INTEGER)"}, {"answer": "SELECT Author FROM submission ORDER BY Scores DESC LIMIT 1", "question": "What is the author of the submission with the highest score?", "context": "CREATE TABLE submission (Author VARCHAR, Scores VARCHAR)"}, {"answer": "SELECT College, COUNT(*) FROM submission GROUP BY College", "question": "Show different colleges along with the number of authors of submission from each college.", "context": "CREATE TABLE submission (College VARCHAR)"}, {"answer": "SELECT College FROM submission GROUP BY College ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the most common college of authors of submissions.", "context": "CREATE TABLE submission (College VARCHAR)"}, {"answer": "SELECT College FROM submission WHERE Scores > 90 INTERSECT SELECT College FROM submission WHERE Scores < 80", "question": "Show the colleges that have both authors with submission score larger than 90 and authors with submission score smaller than 80.", "context": "CREATE TABLE submission (College VARCHAR, Scores INTEGER)"}, {"answer": "SELECT T2.Author, T1.Result FROM acceptance AS T1 JOIN submission AS T2 ON T1.Submission_ID = T2.Submission_ID", "question": "Show the authors of submissions and the acceptance results of their submissions.", "context": "CREATE TABLE acceptance (Result VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR)"}, {"answer": "SELECT T1.Result FROM acceptance AS T1 JOIN submission AS T2 ON T1.Submission_ID = T2.Submission_ID ORDER BY T2.Scores DESC LIMIT 1", "question": "Show the result of the submission with the highest score.", "context": "CREATE TABLE acceptance (Result VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Submission_ID VARCHAR, Scores VARCHAR)"}, {"answer": "SELECT T2.Author, COUNT(DISTINCT T1.workshop_id) FROM acceptance AS T1 JOIN submission AS T2 ON T1.Submission_ID = T2.Submission_ID GROUP BY T2.Author", "question": "Show each author and the number of workshops they submitted to.", "context": "CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE acceptance (workshop_id VARCHAR, Submission_ID VARCHAR)"}, {"answer": "SELECT T2.Author FROM acceptance AS T1 JOIN submission AS T2 ON T1.Submission_ID = T2.Submission_ID GROUP BY T2.Author HAVING COUNT(DISTINCT T1.workshop_id) > 1", "question": "Show the authors who have submissions to more than one workshop.", "context": "CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE acceptance (Submission_ID VARCHAR, workshop_id VARCHAR)"}, {"answer": "SELECT Date, Venue FROM workshop ORDER BY Venue", "question": "Show the date and venue of each workshop in ascending alphabetical order of the venue.", "context": "CREATE TABLE workshop (Date VARCHAR, Venue VARCHAR)"}, {"answer": "SELECT Author FROM submission WHERE NOT Submission_ID IN (SELECT Submission_ID FROM acceptance)", "question": "List the authors who do not have submission to any workshop.", "context": "CREATE TABLE acceptance (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM INVESTORS", "question": "Find the number of investors in total.", "context": "CREATE TABLE INVESTORS (Id VARCHAR)"}, {"answer": "SELECT Investor_details FROM INVESTORS", "question": "Show all investor details.", "context": "CREATE TABLE INVESTORS (Investor_details VARCHAR)"}, {"answer": "SELECT DISTINCT lot_details FROM LOTS", "question": "Show all distinct lot details.", "context": "CREATE TABLE LOTS (lot_details VARCHAR)"}, {"answer": "SELECT MAX(amount_of_transaction) FROM TRANSACTIONS", "question": "Show the maximum amount of transaction.", "context": "CREATE TABLE TRANSACTIONS (amount_of_transaction INTEGER)"}, {"answer": "SELECT date_of_transaction, share_count FROM TRANSACTIONS", "question": "Show all date and share count of transactions.", "context": "CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, share_count VARCHAR)"}, {"answer": "SELECT SUM(share_count) FROM TRANSACTIONS", "question": "What is the total share of transactions?", "context": "CREATE TABLE TRANSACTIONS (share_count INTEGER)"}, {"answer": "SELECT transaction_id FROM TRANSACTIONS WHERE transaction_type_code = 'PUR'", "question": "Show all transaction ids with transaction code 'PUR'.", "context": "CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, transaction_type_code VARCHAR)"}, {"answer": "SELECT date_of_transaction FROM TRANSACTIONS WHERE transaction_type_code = \"SALE\"", "question": "Show all dates of transactions whose type code is \"SALE\".", "context": "CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, transaction_type_code VARCHAR)"}, {"answer": "SELECT AVG(amount_of_transaction) FROM TRANSACTIONS WHERE transaction_type_code = \"SALE\"", "question": "Show the average amount of transactions with type code \"SALE\".", "context": "CREATE TABLE TRANSACTIONS (amount_of_transaction INTEGER, transaction_type_code VARCHAR)"}, {"answer": "SELECT transaction_type_description FROM Ref_Transaction_Types WHERE transaction_type_code = \"PUR\"", "question": "Show the description of transaction type with code \"PUR\".", "context": "CREATE TABLE Ref_Transaction_Types (transaction_type_description VARCHAR, transaction_type_code VARCHAR)"}, {"answer": "SELECT MIN(amount_of_transaction) FROM TRANSACTIONS WHERE transaction_type_code = \"PUR\" AND share_count > 50", "question": "Show the minimum amount of transactions whose type code is \"PUR\" and whose share count is bigger than 50.", "context": "CREATE TABLE TRANSACTIONS (amount_of_transaction INTEGER, transaction_type_code VARCHAR, share_count VARCHAR)"}, {"answer": "SELECT MAX(share_count) FROM TRANSACTIONS WHERE amount_of_transaction < 10000", "question": "Show the maximum share count of transactions where the amount is smaller than 10000", "context": "CREATE TABLE TRANSACTIONS (share_count INTEGER, amount_of_transaction INTEGER)"}, {"answer": "SELECT date_of_transaction FROM TRANSACTIONS WHERE share_count > 100 OR amount_of_transaction > 1000", "question": "Show the dates of transactions if the share count is bigger than 100 or the amount is bigger than 1000.", "context": "CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, share_count VARCHAR, amount_of_transaction VARCHAR)"}, {"answer": "SELECT T1.transaction_type_description, T2.date_of_transaction FROM Ref_Transaction_Types AS T1 JOIN TRANSACTIONS AS T2 ON T1.transaction_type_code = T2.transaction_type_code WHERE T2.share_count < 10", "question": "Show the transaction type descriptions and dates if the share count is smaller than 10.", "context": "CREATE TABLE Ref_Transaction_Types (transaction_type_description VARCHAR, transaction_type_code VARCHAR); CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, transaction_type_code VARCHAR, share_count INTEGER)"}, {"answer": "SELECT T1.Investor_details FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id WHERE T2.share_count > 100", "question": "Show details of all investors if they make any transaction with share count greater than 100.", "context": "CREATE TABLE TRANSACTIONS (investor_id VARCHAR, share_count INTEGER); CREATE TABLE INVESTORS (Investor_details VARCHAR, investor_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT transaction_type_code) FROM TRANSACTIONS", "question": "How many distinct transaction types are used in the transactions?", "context": "CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR)"}, {"answer": "SELECT lot_details, investor_id FROM LOTS", "question": "Return the lot details and investor ids.", "context": "CREATE TABLE LOTS (lot_details VARCHAR, investor_id VARCHAR)"}, {"answer": "SELECT T2.lot_details FROM INVESTORS AS T1 JOIN LOTS AS T2 ON T1.investor_id = T2.investor_id WHERE T1.Investor_details = \"l\"", "question": "Return the lot details of lots that belong to investors with details \"l\"?", "context": "CREATE TABLE LOTS (lot_details VARCHAR, investor_id VARCHAR); CREATE TABLE INVESTORS (investor_id VARCHAR, Investor_details VARCHAR)"}, {"answer": "SELECT T1.purchase_details FROM PURCHASES AS T1 JOIN TRANSACTIONS AS T2 ON T1.purchase_transaction_id = T2.transaction_id WHERE T2.amount_of_transaction > 10000", "question": "What are the purchase details of transactions with amount bigger than 10000?", "context": "CREATE TABLE PURCHASES (purchase_details VARCHAR, purchase_transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, amount_of_transaction INTEGER)"}, {"answer": "SELECT T1.sales_details, T2.date_of_transaction FROM SALES AS T1 JOIN TRANSACTIONS AS T2 ON T1.sales_transaction_id = T2.transaction_id WHERE T2.amount_of_transaction < 3000", "question": "What are the sale details and dates of transactions with amount smaller than 3000?", "context": "CREATE TABLE SALES (sales_details VARCHAR, sales_transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, transaction_id VARCHAR, amount_of_transaction INTEGER)"}, {"answer": "SELECT T1.lot_details FROM LOTS AS T1 JOIN TRANSACTIONS_LOTS AS T2 ON T1.lot_id = T2.transaction_id JOIN TRANSACTIONS AS T3 ON T2.transaction_id = T3.transaction_id WHERE T3.share_count < 50", "question": "What are the lot details of lots associated with transactions with share count smaller than 50?", "context": "CREATE TABLE LOTS (lot_details VARCHAR, lot_id VARCHAR); CREATE TABLE TRANSACTIONS_LOTS (transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, share_count INTEGER)"}, {"answer": "SELECT T1.lot_details FROM LOTS AS T1 JOIN TRANSACTIONS_LOTS AS T2 ON T1.lot_id = T2.transaction_id JOIN TRANSACTIONS AS T3 ON T2.transaction_id = T3.transaction_id WHERE T3.share_count > 100 AND T3.transaction_type_code = \"PUR\"", "question": "What are the lot details of lots associated with transactions whose share count is bigger than 100 and whose type code is \"PUR\"?", "context": "CREATE TABLE LOTS (lot_details VARCHAR, lot_id VARCHAR); CREATE TABLE TRANSACTIONS_LOTS (transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, share_count VARCHAR, transaction_type_code VARCHAR)"}, {"answer": "SELECT transaction_type_code, AVG(amount_of_transaction) FROM TRANSACTIONS GROUP BY transaction_type_code", "question": "Show the average transaction amount for different transaction types.", "context": "CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR, amount_of_transaction INTEGER)"}, {"answer": "SELECT transaction_type_code, MAX(share_count), MIN(share_count) FROM TRANSACTIONS GROUP BY transaction_type_code", "question": "Show the maximum and minimum share count of different transaction types.", "context": "CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR, share_count INTEGER)"}, {"answer": "SELECT investor_id, AVG(share_count) FROM TRANSACTIONS GROUP BY investor_id", "question": "Show the average share count of transactions for different investors.", "context": "CREATE TABLE TRANSACTIONS (investor_id VARCHAR, share_count INTEGER)"}, {"answer": "SELECT investor_id, AVG(share_count) FROM TRANSACTIONS GROUP BY investor_id ORDER BY AVG(share_count)", "question": "Show the average share count of transactions each each investor, ordered by average share count.", "context": "CREATE TABLE TRANSACTIONS (investor_id VARCHAR, share_count INTEGER)"}, {"answer": "SELECT investor_id, AVG(amount_of_transaction) FROM TRANSACTIONS GROUP BY investor_id", "question": "Show the average amount of transactions for different investors.", "context": "CREATE TABLE TRANSACTIONS (investor_id VARCHAR, amount_of_transaction INTEGER)"}, {"answer": "SELECT T2.lot_id, AVG(amount_of_transaction) FROM TRANSACTIONS AS T1 JOIN Transactions_Lots AS T2 ON T1.transaction_id = T2.transaction_id GROUP BY T2.lot_id", "question": "Show the average amount of transactions for different lots.", "context": "CREATE TABLE TRANSACTIONS (transaction_id VARCHAR); CREATE TABLE Transactions_Lots (lot_id VARCHAR, transaction_id VARCHAR)"}, {"answer": "SELECT T2.lot_id, AVG(amount_of_transaction) FROM TRANSACTIONS AS T1 JOIN Transactions_Lots AS T2 ON T1.transaction_id = T2.transaction_id GROUP BY T2.lot_id ORDER BY AVG(amount_of_transaction)", "question": "Show the average amount of transactions for different lots, ordered by average amount of transactions.", "context": "CREATE TABLE TRANSACTIONS (transaction_id VARCHAR); CREATE TABLE Transactions_Lots (lot_id VARCHAR, transaction_id VARCHAR)"}, {"answer": "SELECT investor_id, COUNT(*) FROM TRANSACTIONS WHERE transaction_type_code = \"SALE\" GROUP BY investor_id", "question": "Show the number of transactions with transaction type code \"SALE\" for different investors if it is larger than 0.", "context": "CREATE TABLE TRANSACTIONS (investor_id VARCHAR, transaction_type_code VARCHAR)"}, {"answer": "SELECT investor_id, COUNT(*) FROM TRANSACTIONS GROUP BY investor_id", "question": "Show the number of transactions for different investors.", "context": "CREATE TABLE TRANSACTIONS (investor_id VARCHAR)"}, {"answer": "SELECT transaction_type_code FROM TRANSACTIONS GROUP BY transaction_type_code ORDER BY COUNT(*) LIMIT 1", "question": "Show the transaction type code that occurs the fewest times.", "context": "CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR)"}, {"answer": "SELECT transaction_type_code FROM TRANSACTIONS GROUP BY transaction_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the transaction type code that occurs the most frequently.", "context": "CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR)"}, {"answer": "SELECT T1.transaction_type_description FROM Ref_Transaction_Types AS T1 JOIN TRANSACTIONS AS T2 ON T1.transaction_type_code = T2.transaction_type_code GROUP BY T1.transaction_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the description of the transaction type that occurs most frequently.", "context": "CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR); CREATE TABLE Ref_Transaction_Types (transaction_type_description VARCHAR, transaction_type_code VARCHAR)"}, {"answer": "SELECT T2.investor_id, T1.Investor_details FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id GROUP BY T2.investor_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the id and details of the investor that has the largest number of transactions.", "context": "CREATE TABLE TRANSACTIONS (investor_id VARCHAR); CREATE TABLE INVESTORS (Investor_details VARCHAR, investor_id VARCHAR)"}, {"answer": "SELECT T2.investor_id, T1.Investor_details FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id GROUP BY T2.investor_id ORDER BY COUNT(*) DESC LIMIT 3", "question": "Show the id and details for the investors who have the top 3 number of transactions.", "context": "CREATE TABLE TRANSACTIONS (investor_id VARCHAR); CREATE TABLE INVESTORS (Investor_details VARCHAR, investor_id VARCHAR)"}, {"answer": "SELECT T2.investor_id FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id GROUP BY T2.investor_id HAVING COUNT(*) >= 2", "question": "Show the ids of the investors who have at least two transactions.", "context": "CREATE TABLE TRANSACTIONS (investor_id VARCHAR); CREATE TABLE INVESTORS (investor_id VARCHAR)"}, {"answer": "SELECT T2.investor_id, T1.Investor_details FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id WHERE T2.transaction_type_code = \"SALE\" GROUP BY T2.investor_id HAVING COUNT(*) >= 2", "question": "Show the ids and details of the investors who have at least two transactions with type code \"SALE\".", "context": "CREATE TABLE TRANSACTIONS (investor_id VARCHAR, transaction_type_code VARCHAR); CREATE TABLE INVESTORS (Investor_details VARCHAR, investor_id VARCHAR)"}, {"answer": "SELECT date_of_transaction FROM TRANSACTIONS WHERE share_count >= 100 OR amount_of_transaction >= 100", "question": "What are the dates of transactions with at least 100 share count or amount bigger than 100?", "context": "CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, share_count VARCHAR, amount_of_transaction VARCHAR)"}, {"answer": "SELECT sales_details FROM sales UNION SELECT purchase_details FROM purchases", "question": "What are the details of all sales and purchases?", "context": "CREATE TABLE purchases (sales_details VARCHAR, purchase_details VARCHAR); CREATE TABLE sales (sales_details VARCHAR, purchase_details VARCHAR)"}, {"answer": "SELECT lot_details FROM Lots EXCEPT SELECT T1.lot_details FROM Lots AS T1 JOIN transactions_lots AS T2 ON T1.lot_id = T2.lot_id", "question": "What are the details of the lots which are not used in any transactions?", "context": "CREATE TABLE Lots (lot_details VARCHAR, lot_id VARCHAR); CREATE TABLE Lots (lot_details VARCHAR); CREATE TABLE transactions_lots (lot_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM HOTELS", "question": "How many available hotels are there in total?", "context": "CREATE TABLE HOTELS (Id VARCHAR)"}, {"answer": "SELECT price_range FROM HOTELS", "question": "What are the price ranges of hotels?", "context": "CREATE TABLE HOTELS (price_range VARCHAR)"}, {"answer": "SELECT DISTINCT Location_Name FROM LOCATIONS", "question": "Show all distinct location names.", "context": "CREATE TABLE LOCATIONS (Location_Name VARCHAR)"}, {"answer": "SELECT Name, Other_Details FROM Staff", "question": "Show the names and details of all the staff members.", "context": "CREATE TABLE Staff (Name VARCHAR, Other_Details VARCHAR)"}, {"answer": "SELECT Tourist_Details FROM VISITORS", "question": "Show details of all visitors.", "context": "CREATE TABLE VISITORS (Tourist_Details VARCHAR)"}, {"answer": "SELECT price_range FROM HOTELS WHERE star_rating_code = \"5\"", "question": "Show the price ranges of hotels with 5 star ratings.", "context": "CREATE TABLE HOTELS (price_range VARCHAR, star_rating_code VARCHAR)"}, {"answer": "SELECT AVG(price_range) FROM HOTELS WHERE star_rating_code = \"5\" AND pets_allowed_yn = 1", "question": "Show the average price range of hotels that have 5 star ratings and allow pets.", "context": "CREATE TABLE HOTELS (price_range INTEGER, star_rating_code VARCHAR, pets_allowed_yn VARCHAR)"}, {"answer": "SELECT Address FROM LOCATIONS WHERE Location_Name = \"UK Gallery\"", "question": "What is the address of the location \"UK Gallery\"?", "context": "CREATE TABLE LOCATIONS (Address VARCHAR, Location_Name VARCHAR)"}, {"answer": "SELECT Other_Details FROM LOCATIONS WHERE Location_Name = \"UK Gallery\"", "question": "What is the detail of the location UK Gallery?", "context": "CREATE TABLE LOCATIONS (Other_Details VARCHAR, Location_Name VARCHAR)"}, {"answer": "SELECT Location_Name FROM LOCATIONS WHERE Location_Name LIKE \"%film%\"", "question": "Which location names contain the word \"film\"?", "context": "CREATE TABLE LOCATIONS (Location_Name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Name) FROM PHOTOS", "question": "How many distinct names are associated with all the photos?", "context": "CREATE TABLE PHOTOS (Name VARCHAR)"}, {"answer": "SELECT DISTINCT Visit_Date FROM VISITS", "question": "What are the distinct visit dates?", "context": "CREATE TABLE VISITS (Visit_Date VARCHAR)"}, {"answer": "SELECT Name FROM TOURIST_ATTRACTIONS WHERE How_to_Get_There = \"bus\"", "question": "What are the names of the tourist attractions that can be accessed by bus?", "context": "CREATE TABLE TOURIST_ATTRACTIONS (Name VARCHAR, How_to_Get_There VARCHAR)"}, {"answer": "SELECT Name, Opening_Hours FROM TOURIST_ATTRACTIONS WHERE How_to_Get_There = \"bus\" OR How_to_Get_There = \"walk\"", "question": "What are the names and opening hours of the tourist attractions that can be accessed by bus or walk?", "context": "CREATE TABLE TOURIST_ATTRACTIONS (Name VARCHAR, Opening_Hours VARCHAR, How_to_Get_There VARCHAR)"}, {"answer": "SELECT T2.star_rating_description FROM HOTELS AS T1 JOIN Ref_Hotel_Star_Ratings AS T2 ON T1.star_rating_code = T2.star_rating_code WHERE T1.price_range > 10000", "question": "What are the star rating descriptions of the hotels with price above 10000?", "context": "CREATE TABLE HOTELS (star_rating_code VARCHAR, price_range INTEGER); CREATE TABLE Ref_Hotel_Star_Ratings (star_rating_description VARCHAR, star_rating_code VARCHAR)"}, {"answer": "SELECT T1.Museum_Details, T2.Opening_Hours FROM MUSEUMS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Museum_ID = T2.Tourist_Attraction_ID", "question": "What are the details and opening hours of the museums?", "context": "CREATE TABLE TOURIST_ATTRACTIONS (Opening_Hours VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE MUSEUMS (Museum_Details VARCHAR, Museum_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM PHOTOS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T1.Name = \"game1\"", "question": "What is the name of the tourist attraction that is associated with the photo \"game1\"?", "context": "CREATE TABLE TOURIST_ATTRACTIONS (Name VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE PHOTOS (Tourist_Attraction_ID VARCHAR, Name VARCHAR)"}, {"answer": "SELECT T1.Name, T1.Description FROM PHOTOS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T2.Name = \"film festival\"", "question": "What are the names and descriptions of the photos taken at the tourist attraction \"film festival\"?", "context": "CREATE TABLE TOURIST_ATTRACTIONS (Tourist_Attraction_ID VARCHAR, Name VARCHAR); CREATE TABLE PHOTOS (Name VARCHAR, Description VARCHAR, Tourist_Attraction_ID VARCHAR)"}, {"answer": "SELECT T1.Royal_Family_Details, T2.How_to_Get_There FROM ROYAL_FAMILY AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Royal_Family_ID = T2.Tourist_Attraction_ID", "question": "What are the details and ways to get to tourist attractions related to royal family?", "context": "CREATE TABLE TOURIST_ATTRACTIONS (How_to_Get_There VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE ROYAL_FAMILY (Royal_Family_Details VARCHAR, Royal_Family_ID VARCHAR)"}, {"answer": "SELECT T1.Shop_Details FROM SHOPS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Shop_ID = T2.Tourist_Attraction_ID WHERE T2.How_to_Get_There = \"walk\"", "question": "What are the details of the shops that can be accessed by walk?", "context": "CREATE TABLE TOURIST_ATTRACTIONS (Tourist_Attraction_ID VARCHAR, How_to_Get_There VARCHAR); CREATE TABLE SHOPS (Shop_Details VARCHAR, Shop_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM STAFF AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T2.Name = \"US museum\"", "question": "What is the name of the staff that is in charge of the attraction named \"US museum\"?", "context": "CREATE TABLE TOURIST_ATTRACTIONS (Tourist_Attraction_ID VARCHAR, Name VARCHAR); CREATE TABLE STAFF (Name VARCHAR, Tourist_Attraction_ID VARCHAR)"}, {"answer": "SELECT T1.Market_Details FROM Street_Markets AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Market_ID = T2.Tourist_Attraction_ID WHERE T2.How_to_Get_There = \"walk\" OR T2.How_to_Get_There = \"bus\"", "question": "What are the details of the markets that can be accessed by walk or bus?", "context": "CREATE TABLE Street_Markets (Market_Details VARCHAR, Market_ID VARCHAR); CREATE TABLE TOURIST_ATTRACTIONS (Tourist_Attraction_ID VARCHAR, How_to_Get_There VARCHAR)"}, {"answer": "SELECT T2.Visit_Date, T2.Visit_Details FROM VISITORS AS T1 JOIN VISITS AS T2 ON T1.Tourist_ID = T2.Tourist_ID WHERE T1.Tourist_Details = \"Vincent\"", "question": "What are the visit date and details of the visitor whose detail is 'Vincent'?", "context": "CREATE TABLE VISITORS (Tourist_ID VARCHAR, Tourist_Details VARCHAR); CREATE TABLE VISITS (Visit_Date VARCHAR, Visit_Details VARCHAR, Tourist_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID JOIN VISITORS AS T3 ON T2.Tourist_ID = T3.Tourist_ID WHERE T3.Tourist_Details = \"Vincent\"", "question": "Which tourist attractions does the visitor with detail 'Vincent' visit?", "context": "CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE VISITORS (Tourist_ID VARCHAR, Tourist_Details VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)"}, {"answer": "SELECT T1.Name, T3.Visit_Date FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = \"Vincent\" OR T2.Tourist_Details = \"Vivian\"", "question": "What are the names of the tourist attractions and the dates when the tourists named Vincent or Vivian visited there?", "context": "CREATE TABLE VISITORS (Tourist_ID VARCHAR, Tourist_Details VARCHAR); CREATE TABLE VISITS (Visit_Date VARCHAR, Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)"}, {"answer": "SELECT star_rating_code, AVG(price_range) FROM HOTELS GROUP BY star_rating_code", "question": "Show the average price of hotels for each star rating code.", "context": "CREATE TABLE HOTELS (star_rating_code VARCHAR, price_range INTEGER)"}, {"answer": "SELECT pets_allowed_yn, AVG(price_range) FROM HOTELS GROUP BY pets_allowed_yn", "question": "Show the average price of hotels for different pet policy.", "context": "CREATE TABLE HOTELS (pets_allowed_yn VARCHAR, price_range INTEGER)"}, {"answer": "SELECT hotel_id, star_rating_code FROM HOTELS ORDER BY price_range", "question": "Show the id and star rating of each hotel, ordered by its price from low to high.", "context": "CREATE TABLE HOTELS (hotel_id VARCHAR, star_rating_code VARCHAR, price_range VARCHAR)"}, {"answer": "SELECT other_hotel_details FROM HOTELS ORDER BY price_range DESC LIMIT 3", "question": "Show the details of the top 3 most expensive hotels.", "context": "CREATE TABLE HOTELS (other_hotel_details VARCHAR, price_range VARCHAR)"}, {"answer": "SELECT other_hotel_details, star_rating_code FROM HOTELS ORDER BY price_range LIMIT 3", "question": "Show the details and star ratings of the 3 least expensive hotels.", "context": "CREATE TABLE HOTELS (other_hotel_details VARCHAR, star_rating_code VARCHAR, price_range VARCHAR)"}, {"answer": "SELECT How_to_Get_There FROM Tourist_Attractions GROUP BY How_to_Get_There ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the transportation method most people choose to get to tourist attractions.", "context": "CREATE TABLE Tourist_Attractions (How_to_Get_There VARCHAR)"}, {"answer": "SELECT T1.Attraction_Type_Description, T2.Attraction_Type_Code FROM Ref_Attraction_Types AS T1 JOIN Tourist_Attractions AS T2 ON T1.Attraction_Type_Code = T2.Attraction_Type_Code GROUP BY T2.Attraction_Type_Code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the description and code of the attraction type most tourist attractions belong to.", "context": "CREATE TABLE Ref_Attraction_Types (Attraction_Type_Description VARCHAR, Attraction_Type_Code VARCHAR); CREATE TABLE Tourist_Attractions (Attraction_Type_Code VARCHAR)"}, {"answer": "SELECT How_to_Get_There, COUNT(*) FROM Tourist_Attractions GROUP BY How_to_Get_There", "question": "Show different ways to get to attractions and the number of attractions that can be accessed in the corresponding way.", "context": "CREATE TABLE Tourist_Attractions (How_to_Get_There VARCHAR)"}, {"answer": "SELECT T1.Name, T2.Tourist_Attraction_ID, COUNT(*) FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID GROUP BY T2.Tourist_Attraction_ID", "question": "Show different tourist attractions' names, ids, and the corresponding number of visits.", "context": "CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)"}, {"answer": "SELECT T1.Name, T2.Tourist_Attraction_ID FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID GROUP BY T2.Tourist_Attraction_ID HAVING COUNT(*) >= 2", "question": "Show the names and ids of tourist attractions that are visited at least two times.", "context": "CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)"}, {"answer": "SELECT T1.Name, T1.Tourist_Attraction_ID FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID GROUP BY T2.Tourist_Attraction_ID HAVING COUNT(*) <= 1", "question": "Show the names and ids of tourist attractions that are visited at most once.", "context": "CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM Locations AS T1 JOIN Tourist_Attractions AS T2 ON T1.Location_ID = T2.Location_ID WHERE T1.Address = \"660 Shea Crescent\" OR T2.How_to_Get_There = \"walk\"", "question": "What are the names of tourist attractions that can be reached by walk or is at address 660 Shea Crescent?", "context": "CREATE TABLE Tourist_Attractions (Name VARCHAR, Location_ID VARCHAR, How_to_Get_There VARCHAR); CREATE TABLE Locations (Location_ID VARCHAR, Address VARCHAR)"}, {"answer": "SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN Tourist_Attraction_Features AS T2 ON T1.tourist_attraction_id = T2.tourist_attraction_id JOIN Features AS T3 ON T2.Feature_ID = T3.Feature_ID WHERE T3.feature_Details = 'park' UNION SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN Tourist_Attraction_Features AS T2 ON T1.tourist_attraction_id = T2.tourist_attraction_id JOIN Features AS T3 ON T2.Feature_ID = T3.Feature_ID WHERE T3.feature_Details = 'shopping'", "question": "What are the names of the tourist attractions that have parking or shopping as their feature details?", "context": "CREATE TABLE Tourist_Attraction_Features (tourist_attraction_id VARCHAR, Feature_ID VARCHAR); CREATE TABLE Features (Feature_ID VARCHAR, feature_Details VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, tourist_attraction_id VARCHAR)"}, {"answer": "SELECT T2.Name FROM Locations AS T1 JOIN Tourist_Attractions AS T2 ON T1.Location_ID = T2.Location_ID WHERE T1.Address = \"254 Ottilie Junction\" OR T2.How_to_Get_There = \"bus\"", "question": "What are the names of tourist attractions that can be reached by bus or is at address 254 Ottilie Junction?", "context": "CREATE TABLE Tourist_Attractions (Name VARCHAR, Location_ID VARCHAR, How_to_Get_There VARCHAR); CREATE TABLE Locations (Location_ID VARCHAR, Address VARCHAR)"}, {"answer": "SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = \"Vincent\" INTERSECT SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = \"Marcelle\"", "question": "What are the names of the tourist attractions Vincent and Marcelle visit?", "context": "CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE VISITORS (Tourist_Details VARCHAR, Tourist_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = \"Alison\" EXCEPT SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = \"Rosalind\"", "question": "What are the names of tourist attraction that Alison visited but Rosalind did not visit?", "context": "CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE VISITORS (Tourist_Details VARCHAR, Tourist_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Visitors WHERE NOT Tourist_ID IN (SELECT Tourist_ID FROM Visits)", "question": "How many tourists did not make any visit?", "context": "CREATE TABLE Visitors (Tourist_ID VARCHAR); CREATE TABLE Visits (Tourist_ID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Video_games", "question": "How many video games exist?", "context": "CREATE TABLE Video_games (Id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT gtype) FROM Video_games", "question": "How many video game types exist?", "context": "CREATE TABLE Video_games (gtype VARCHAR)"}, {"answer": "SELECT DISTINCT gtype FROM Video_games", "question": "Show all video game types.", "context": "CREATE TABLE Video_games (gtype VARCHAR)"}, {"answer": "SELECT gname, gtype FROM Video_games ORDER BY gname", "question": "Show all video games and their types in the order of their names.", "context": "CREATE TABLE Video_games (gname VARCHAR, gtype VARCHAR)"}, {"answer": "SELECT gname FROM Video_games WHERE gtype = \"Collectible card game\"", "question": "Show all video games with type Collectible card game.", "context": "CREATE TABLE Video_games (gname VARCHAR, gtype VARCHAR)"}, {"answer": "SELECT gtype FROM Video_games WHERE gname = \"Call of Destiny\"", "question": "What is the type of video game Call of Destiny.", "context": "CREATE TABLE Video_games (gtype VARCHAR, gname VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Video_games WHERE gtype = \"Massively multiplayer online game\"", "question": "How many video games have type Massively multiplayer online game?", "context": "CREATE TABLE Video_games (gtype VARCHAR)"}, {"answer": "SELECT gtype, COUNT(*) FROM Video_games GROUP BY gtype", "question": "Show all video game types and the number of video games in each type.", "context": "CREATE TABLE Video_games (gtype VARCHAR)"}, {"answer": "SELECT gtype FROM Video_games GROUP BY gtype ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which game type has most number of games?", "context": "CREATE TABLE Video_games (gtype VARCHAR)"}, {"answer": "SELECT gtype FROM Video_games GROUP BY gtype ORDER BY COUNT(*) LIMIT 1", "question": "Which game type has least number of games?", "context": "CREATE TABLE Video_games (gtype VARCHAR)"}, {"answer": "SELECT StuID FROM Student WHERE city_code = \"CHI\"", "question": "Show ids for all students who live in CHI.", "context": "CREATE TABLE Student (StuID VARCHAR, city_code VARCHAR)"}, {"answer": "SELECT StuID FROM Student WHERE Advisor = 1121", "question": "Show ids for all students who have advisor 1121.", "context": "CREATE TABLE Student (StuID VARCHAR, Advisor VARCHAR)"}, {"answer": "SELECT Fname FROM Student WHERE Major = 600", "question": "Show first name for all students with major 600.", "context": "CREATE TABLE Student (Fname VARCHAR, Major VARCHAR)"}, {"answer": "SELECT major, AVG(age), MIN(age), MAX(age) FROM Student GROUP BY major", "question": "Show the average, minimum, and maximum age for different majors.", "context": "CREATE TABLE Student (major VARCHAR, age INTEGER)"}, {"answer": "SELECT advisor FROM Student GROUP BY advisor HAVING COUNT(*) >= 2", "question": "Show all advisors who have at least two students.", "context": "CREATE TABLE Student (advisor VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT sportname) FROM Sportsinfo", "question": "How many sports do we have?", "context": "CREATE TABLE Sportsinfo (sportname VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT StuID) FROM Sportsinfo", "question": "How many students play sports?", "context": "CREATE TABLE Sportsinfo (StuID VARCHAR)"}, {"answer": "SELECT StuID FROM Sportsinfo WHERE onscholarship = 'Y'", "question": "List ids for all student who are on scholarship.", "context": "CREATE TABLE Sportsinfo (StuID VARCHAR, onscholarship VARCHAR)"}, {"answer": "SELECT T2.Lname FROM Sportsinfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T1.onscholarship = 'Y'", "question": "Show last names for all student who are on scholarship.", "context": "CREATE TABLE Student (Lname VARCHAR, StuID VARCHAR); CREATE TABLE Sportsinfo (StuID VARCHAR, onscholarship VARCHAR)"}, {"answer": "SELECT SUM(gamesplayed) FROM Sportsinfo", "question": "How many games are played for all students?", "context": "CREATE TABLE Sportsinfo (gamesplayed INTEGER)"}, {"answer": "SELECT SUM(gamesplayed) FROM Sportsinfo WHERE sportname = \"Football\" AND onscholarship = 'Y'", "question": "How many games are played for all football games by students on scholarship?", "context": "CREATE TABLE Sportsinfo (gamesplayed INTEGER, sportname VARCHAR, onscholarship VARCHAR)"}, {"answer": "SELECT sportname, COUNT(*) FROM Sportsinfo GROUP BY sportname", "question": "Show all sport name and the number of students.", "context": "CREATE TABLE Sportsinfo (sportname VARCHAR)"}, {"answer": "SELECT StuID, COUNT(*), SUM(gamesplayed) FROM Sportsinfo GROUP BY StuID", "question": "Show all student IDs with the number of sports and total number of games played", "context": "CREATE TABLE Sportsinfo (StuID VARCHAR, gamesplayed INTEGER)"}, {"answer": "SELECT StuID FROM Sportsinfo GROUP BY StuID HAVING SUM(hoursperweek) > 10", "question": "Show all student IDs with more than total 10 hours per week on all sports played.", "context": "CREATE TABLE Sportsinfo (StuID VARCHAR, hoursperweek INTEGER)"}, {"answer": "SELECT T2.Fname, T2.Lname FROM Sportsinfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID GROUP BY T1.StuID ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the first name and last name of the student who have most number of sports?", "context": "CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, StuID VARCHAR); CREATE TABLE Sportsinfo (StuID VARCHAR)"}, {"answer": "SELECT sportname FROM Sportsinfo WHERE onscholarship = 'Y' GROUP BY sportname ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which sport has most number of students on scholarship?", "context": "CREATE TABLE Sportsinfo (sportname VARCHAR, onscholarship VARCHAR)"}, {"answer": "SELECT StuID FROM Student EXCEPT SELECT StuID FROM Sportsinfo", "question": "Show student ids who don't have any sports.", "context": "CREATE TABLE Sportsinfo (StuID VARCHAR); CREATE TABLE Student (StuID VARCHAR)"}, {"answer": "SELECT StuID FROM Student WHERE major = 600 INTERSECT SELECT StuID FROM Sportsinfo WHERE onscholarship = 'Y'", "question": "Show student ids who are on scholarship and have major 600.", "context": "CREATE TABLE Sportsinfo (StuID VARCHAR, major VARCHAR, onscholarship VARCHAR); CREATE TABLE Student (StuID VARCHAR, major VARCHAR, onscholarship VARCHAR)"}, {"answer": "SELECT StuID FROM Student WHERE sex = 'F' INTERSECT SELECT StuID FROM Sportsinfo WHERE sportname = \"Football\"", "question": "Show student ids who are female and play football.", "context": "CREATE TABLE Sportsinfo (StuID VARCHAR, sex VARCHAR, sportname VARCHAR); CREATE TABLE Student (StuID VARCHAR, sex VARCHAR, sportname VARCHAR)"}, {"answer": "SELECT StuID FROM Student WHERE sex = 'M' EXCEPT SELECT StuID FROM Sportsinfo WHERE sportname = \"Football\"", "question": "Show all male student ids who don't play football.", "context": "CREATE TABLE Sportsinfo (StuID VARCHAR, sex VARCHAR, sportname VARCHAR); CREATE TABLE Student (StuID VARCHAR, sex VARCHAR, sportname VARCHAR)"}, {"answer": "SELECT SUM(hoursperweek), SUM(gamesplayed) FROM Sportsinfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T2.Fname = \"David\" AND T2.Lname = \"Shieber\"", "question": "Show total hours per week and number of games played for student David Shieber.", "context": "CREATE TABLE Student (StuID VARCHAR, Fname VARCHAR, Lname VARCHAR); CREATE TABLE Sportsinfo (StuID VARCHAR)"}, {"answer": "SELECT SUM(hoursperweek), SUM(gamesplayed) FROM Sportsinfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T2.age < 20", "question": "Show total hours per week and number of games played for students under 20.", "context": "CREATE TABLE Student (StuID VARCHAR, age INTEGER); CREATE TABLE Sportsinfo (StuID VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT StuID) FROM Plays_games", "question": "How many students play video games?", "context": "CREATE TABLE Plays_games (StuID VARCHAR)"}, {"answer": "SELECT StuID FROM Student EXCEPT SELECT StuID FROM Plays_games", "question": "Show ids of students who don't play video game.", "context": "CREATE TABLE Plays_games (StuID VARCHAR); CREATE TABLE Student (StuID VARCHAR)"}, {"answer": "SELECT StuID FROM Sportsinfo INTERSECT SELECT StuID FROM Plays_games", "question": "Show ids of students who play video game and play sports.", "context": "CREATE TABLE Plays_games (StuID VARCHAR); CREATE TABLE Sportsinfo (StuID VARCHAR)"}, {"answer": "SELECT gameid, SUM(hours_played) FROM Plays_games GROUP BY gameid", "question": "Show all game ids and the number of hours played.", "context": "CREATE TABLE Plays_games (gameid VARCHAR, hours_played INTEGER)"}, {"answer": "SELECT Stuid, SUM(hours_played) FROM Plays_games GROUP BY Stuid", "question": "Show all student ids and the number of hours played.", "context": "CREATE TABLE Plays_games (Stuid VARCHAR, hours_played INTEGER)"}, {"answer": "SELECT gname FROM Plays_games AS T1 JOIN Video_games AS T2 ON T1.gameid = T2.gameid GROUP BY T1.gameid ORDER BY SUM(hours_played) DESC LIMIT 1", "question": "Show the game name that has most number of hours played.", "context": "CREATE TABLE Plays_games (gameid VARCHAR); CREATE TABLE Video_games (gameid VARCHAR)"}, {"answer": "SELECT gname FROM Plays_games AS T1 JOIN Video_games AS T2 ON T1.gameid = T2.gameid GROUP BY T1.gameid HAVING SUM(hours_played) >= 1000", "question": "Show all game names played by at least 1000 hours.", "context": "CREATE TABLE Plays_games (gameid VARCHAR); CREATE TABLE Video_games (gameid VARCHAR)"}, {"answer": "SELECT Gname FROM Plays_games AS T1 JOIN Video_games AS T2 ON T1.gameid = T2.gameid JOIN Student AS T3 ON T3.Stuid = T1.Stuid WHERE T3.Lname = \"Smith\" AND T3.Fname = \"Linda\"", "question": "Show all game names played by Linda Smith", "context": "CREATE TABLE Student (Stuid VARCHAR, Lname VARCHAR, Fname VARCHAR); CREATE TABLE Plays_games (gameid VARCHAR, Stuid VARCHAR); CREATE TABLE Video_games (gameid VARCHAR)"}, {"answer": "SELECT T2.lname, T2.fname FROM SportsInfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T1.SportName = \"Football\" OR T1.SportName = \"Lacrosse\"", "question": "Find the last and first name of students who are playing Football or Lacrosse.", "context": "CREATE TABLE SportsInfo (StuID VARCHAR, SportName VARCHAR); CREATE TABLE Student (lname VARCHAR, fname VARCHAR, StuID VARCHAR)"}, {"answer": "SELECT fname, age FROM Student WHERE StuID IN (SELECT StuID FROM Sportsinfo WHERE SportName = \"Football\" INTERSECT SELECT StuID FROM Sportsinfo WHERE SportName = \"Lacrosse\")", "question": "Find the first name and age of the students who are playing both Football and Lacrosse.", "context": "CREATE TABLE Student (fname VARCHAR, age VARCHAR, StuID VARCHAR, SportName VARCHAR); CREATE TABLE Sportsinfo (fname VARCHAR, age VARCHAR, StuID VARCHAR, SportName VARCHAR)"}, {"answer": "SELECT lname, sex FROM Student WHERE StuID IN (SELECT T1.StuID FROM Plays_games AS T1 JOIN Video_games AS T2 ON T1.GameID = T2.GameID WHERE T2.Gname = \"Call of Destiny\" INTERSECT SELECT T1.StuID FROM Plays_games AS T1 JOIN Video_games AS T2 ON T1.GameID = T2.GameID WHERE T2.Gname = \"Works of Widenius\")", "question": "Find the last name and gender of the students who are playing both Call of Destiny and Works of Widenius games.", "context": "CREATE TABLE Plays_games (StuID VARCHAR, GameID VARCHAR); CREATE TABLE Student (lname VARCHAR, sex VARCHAR, StuID VARCHAR); CREATE TABLE Video_games (GameID VARCHAR, Gname VARCHAR)"}, {"answer": "SELECT customer_name FROM customers", "question": "Find the name of all customers.", "context": "CREATE TABLE customers (customer_name VARCHAR)"}, {"answer": "SELECT AVG(order_quantity) FROM order_items", "question": "What is the average amount of items ordered in each order?", "context": "CREATE TABLE order_items (order_quantity INTEGER)"}, {"answer": "SELECT customer_name FROM customers WHERE payment_method = \"Cash\"", "question": "What are the names of customers who use payment method \"Cash\"?", "context": "CREATE TABLE customers (customer_name VARCHAR, payment_method VARCHAR)"}, {"answer": "SELECT date_became_customer FROM customers WHERE customer_id BETWEEN 10 AND 20", "question": "Find the \"date became customers\" of the customers whose ID is between 10 and 20.", "context": "CREATE TABLE customers (date_became_customer VARCHAR, customer_id INTEGER)"}, {"answer": "SELECT payment_method FROM customers GROUP BY payment_method ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which payment method is used by most customers?", "context": "CREATE TABLE customers (payment_method VARCHAR)"}, {"answer": "SELECT customer_name FROM customers WHERE payment_method = (SELECT payment_method FROM customers GROUP BY payment_method ORDER BY COUNT(*) DESC LIMIT 1)", "question": "What are the names of customers using the most popular payment method?", "context": "CREATE TABLE customers (customer_name VARCHAR, payment_method VARCHAR)"}, {"answer": "SELECT DISTINCT payment_method FROM customers", "question": "What are all the payment methods?", "context": "CREATE TABLE customers (payment_method VARCHAR)"}, {"answer": "SELECT DISTINCT product_details FROM products", "question": "What are the details of all products?", "context": "CREATE TABLE products (product_details VARCHAR)"}, {"answer": "SELECT customer_name FROM customers WHERE customer_name LIKE \"%Alex%\"", "question": "Find the name of all customers whose name contains \"Alex\".", "context": "CREATE TABLE customers (customer_name VARCHAR)"}, {"answer": "SELECT product_details FROM products WHERE product_details LIKE \"%Latte%\" OR product_details LIKE \"%Americano%\"", "question": "Find the detail of products whose detail contains the word \"Latte\" or the word \"Americano\"", "context": "CREATE TABLE products (product_details VARCHAR)"}, {"answer": "SELECT t3.address_content FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t1.customer_name = \"Maudie Kertzmann\"", "question": "What is the address content of the customer named \"Maudie Kertzmann\"?", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE addresses (address_content VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.city = \"Lake Geovannyton\"", "question": "How many customers are living in city \"Lake Geovannyton\"?", "context": "CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE addresses (address_id VARCHAR, city VARCHAR); CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT t1.customer_name FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.state_province_county = \"Colorado\"", "question": "Find the name of customers who are living in Colorado?", "context": "CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE addresses (address_id VARCHAR, state_province_county VARCHAR)"}, {"answer": "SELECT city FROM addresses WHERE NOT city IN (SELECT DISTINCT t3.city FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id)", "question": "Find the list of cities that no customer is living in.", "context": "CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE addresses (city VARCHAR, address_id VARCHAR); CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE addresses (city VARCHAR)"}, {"answer": "SELECT t3.city FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id GROUP BY t3.city ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which city has the most customers living in?", "context": "CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE addresses (city VARCHAR, address_id VARCHAR); CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT city FROM addresses WHERE zip_postcode = 255", "question": "Find the city with post code 255.", "context": "CREATE TABLE addresses (city VARCHAR, zip_postcode VARCHAR)"}, {"answer": "SELECT state_province_county, country FROM addresses WHERE zip_postcode LIKE \"4%\"", "question": "Find the state and country of all cities with post code starting with 4.", "context": "CREATE TABLE addresses (state_province_county VARCHAR, country VARCHAR, zip_postcode VARCHAR)"}, {"answer": "SELECT country FROM addresses GROUP BY country HAVING COUNT(address_id) > 4", "question": "List the countries having more than 4 addresses listed.", "context": "CREATE TABLE addresses (country VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT channel_code FROM customer_contact_channels GROUP BY channel_code HAVING COUNT(customer_id) < 5", "question": "List all the contact channel codes that were used less than 5 times.", "context": "CREATE TABLE customer_contact_channels (channel_code VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT DISTINCT channel_code FROM customers AS t1 JOIN customer_contact_channels AS t2 ON t1.customer_id = t2.customer_id WHERE t1.customer_name = \"Tillman Ernser\"", "question": "Which contact channel has been used by the customer with name \"Tillman Ernser\"?", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customer_contact_channels (customer_id VARCHAR)"}, {"answer": "SELECT MAX(t2.active_to_date) FROM customers AS t1 JOIN customer_contact_channels AS t2 ON t1.customer_id = t2.customer_id WHERE t1.customer_name = \"Tillman Ernser\"", "question": "What is the \"active to date\" of the latest contact channel used by \"Tillman Ernser\"?", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customer_contact_channels (active_to_date INTEGER, customer_id VARCHAR)"}, {"answer": "SELECT AVG(active_to_date - active_from_date) FROM customer_contact_channels", "question": "What is the average time span of contact channels in the database?", "context": "CREATE TABLE customer_contact_channels (active_to_date VARCHAR, active_from_date VARCHAR)"}, {"answer": "SELECT channel_code, contact_number FROM customer_contact_channels WHERE active_to_date - active_from_date = (SELECT active_to_date - active_from_date FROM customer_contact_channels ORDER BY (active_to_date - active_from_date) DESC LIMIT 1)", "question": "What is the channel code and contact number of the customer contact channel that was active for the longest time?", "context": "CREATE TABLE customer_contact_channels (channel_code VARCHAR, contact_number VARCHAR, active_to_date VARCHAR, active_from_date VARCHAR)"}, {"answer": "SELECT t1.customer_name, t2.active_from_date FROM customers AS t1 JOIN customer_contact_channels AS t2 ON t1.customer_id = t2.customer_id WHERE t2.channel_code = 'Email'", "question": "Find the name and active date of the customer that use email as the contact channel.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_contact_channels (active_from_date VARCHAR, customer_id VARCHAR, channel_code VARCHAR)"}, {"answer": "SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id WHERE t3.order_quantity = (SELECT MAX(order_quantity) FROM order_items)", "question": "What is the name of the customer that made the order with the largest quantity?", "context": "CREATE TABLE order_items (order_id VARCHAR, order_quantity INTEGER); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE order_items (order_quantity INTEGER); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id GROUP BY t1.customer_name ORDER BY SUM(t3.order_quantity) DESC LIMIT 1", "question": "What is the name of the customer that has purchased the most items?", "context": "CREATE TABLE order_items (order_id VARCHAR, order_quantity INTEGER); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT t1.payment_method FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id GROUP BY t1.customer_name ORDER BY SUM(t3.order_quantity) LIMIT 1", "question": "What is the payment method of the customer that has purchased the least quantity of items?", "context": "CREATE TABLE order_items (order_id VARCHAR, order_quantity INTEGER); CREATE TABLE customers (payment_method VARCHAR, customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT t3.product_id) FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id WHERE t1.customer_name = \"Rodrick Heaney\"", "question": "How many types of products have Rodrick Heaney bought in total?", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE order_items (product_id VARCHAR, order_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT SUM(t3.order_quantity) FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id WHERE t1.customer_name = \"Rodrick Heaney\"", "question": "What is the total quantity of products purchased by \"Rodrick Heaney\"?", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE order_items (order_quantity INTEGER, order_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT customer_id) FROM customer_orders WHERE order_status = \"Cancelled\"", "question": "How many customers have at least one order with status \"Cancelled\"?", "context": "CREATE TABLE customer_orders (customer_id VARCHAR, order_status VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM customer_orders WHERE order_details = \"Second time\"", "question": "How many orders have detail \"Second time\"?", "context": "CREATE TABLE customer_orders (order_details VARCHAR)"}, {"answer": "SELECT t1.customer_name, t2.order_date FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id WHERE order_status = \"Delivered\"", "question": "Find the customer name and date of the orders that have the status \"Delivered\".", "context": "CREATE TABLE customer_orders (order_date VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT SUM(t2.order_quantity) FROM customer_orders AS t1 JOIN order_items AS t2 ON t1.order_id = t2.order_id WHERE t1.order_status = \"Cancelled\"", "question": "What is the total number of products that are in orders with status \"Cancelled\"?", "context": "CREATE TABLE customer_orders (order_id VARCHAR, order_status VARCHAR); CREATE TABLE order_items (order_quantity INTEGER, order_id VARCHAR)"}, {"answer": "SELECT SUM(t2.order_quantity) FROM customer_orders AS t1 JOIN order_items AS t2 ON t1.order_id = t2.order_id WHERE t1.order_date < \"2018-03-17 07:13:53\"", "question": "Find the total amount of products ordered before 2018-03-17 07:13:53.", "context": "CREATE TABLE customer_orders (order_id VARCHAR, order_date INTEGER); CREATE TABLE order_items (order_quantity INTEGER, order_id VARCHAR)"}, {"answer": "SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id ORDER BY t2.order_date DESC LIMIT 1", "question": "Who made the latest order?", "context": "CREATE TABLE customer_orders (customer_id VARCHAR, order_date VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT t2.product_details FROM order_items AS t1 JOIN products AS t2 ON t1.product_id = t2.product_id GROUP BY t1.product_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which product has been ordered most number of times?", "context": "CREATE TABLE products (product_details VARCHAR, product_id VARCHAR); CREATE TABLE order_items (product_id VARCHAR)"}, {"answer": "SELECT t2.product_details, t2.product_id FROM order_items AS t1 JOIN products AS t2 ON t1.product_id = t2.product_id GROUP BY t1.product_id ORDER BY SUM(t1.order_quantity) LIMIT 1", "question": "Find the name and ID of the product whose total order quantity is the largest.", "context": "CREATE TABLE order_items (product_id VARCHAR, order_quantity INTEGER); CREATE TABLE products (product_details VARCHAR, product_id VARCHAR)"}, {"answer": "SELECT address_content FROM addresses WHERE city = \"East Julianaside\" AND state_province_county = \"Texas\" UNION SELECT address_content FROM addresses WHERE city = \"Gleasonmouth\" AND state_province_county = \"Arizona\"", "question": "Find all the addresses in East Julianaside, Texas or in Gleasonmouth, Arizona.", "context": "CREATE TABLE addresses (address_content VARCHAR, city VARCHAR, state_province_county VARCHAR)"}, {"answer": "SELECT customer_name FROM customers WHERE payment_method <> 'Cash'", "question": "Find the name of customers who did not pay with Cash.", "context": "CREATE TABLE customers (customer_name VARCHAR, payment_method VARCHAR)"}, {"answer": "SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id JOIN products AS t4 ON t3.product_id = t4.product_id WHERE t4.product_details = 'Latte'", "question": "Find the names of customers who never ordered product Latte.", "context": "CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_details VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id", "question": "Find the names of customers who never placed an order.", "context": "CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR)"}, {"answer": "SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id JOIN products AS t4 ON t3.product_id = t4.product_id WHERE t4.product_details = 'Latte' INTERSECT SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id JOIN products AS t4 ON t3.product_id = t4.product_id WHERE t4.product_details = 'Americano'", "question": "Find the names of customers who ordered both products Latte and Americano.", "context": "CREATE TABLE products (product_id VARCHAR, product_details VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT Age FROM artist", "question": "List the age of all music artists.", "context": "CREATE TABLE artist (Age VARCHAR)"}, {"answer": "SELECT AVG(Age) FROM artist", "question": "What is the average age of all artists?", "context": "CREATE TABLE artist (Age INTEGER)"}, {"answer": "SELECT Famous_Title FROM artist WHERE Artist = \"Triumfall\"", "question": "What are the famous titles of the artist \"Triumfall\"?", "context": "CREATE TABLE artist (Famous_Title VARCHAR, Artist VARCHAR)"}, {"answer": "SELECT DISTINCT (Famous_Release_date) FROM artist", "question": "What are the distinct Famous release dates?", "context": "CREATE TABLE artist (Famous_Release_date VARCHAR)"}, {"answer": "SELECT Date_of_ceremony, RESULT FROM music_festival", "question": "Return the dates of ceremony and the results of all music festivals", "context": "CREATE TABLE music_festival (Date_of_ceremony VARCHAR, RESULT VARCHAR)"}, {"answer": "SELECT Category FROM music_festival WHERE RESULT = \"Awarded\"", "question": "What are the category of music festivals with result \"Awarded\"?", "context": "CREATE TABLE music_festival (Category VARCHAR, RESULT VARCHAR)"}, {"answer": "SELECT MAX(Weeks_on_Top), MIN(Weeks_on_Top) FROM volume", "question": "What are the maximum and minimum week on top of all volumes?", "context": "CREATE TABLE volume (Weeks_on_Top INTEGER)"}, {"answer": "SELECT Song FROM volume WHERE Weeks_on_Top > 1", "question": "What are the songs in volumes with more than 1 week on top?", "context": "CREATE TABLE volume (Song VARCHAR, Weeks_on_Top INTEGER)"}, {"answer": "SELECT Song FROM volume ORDER BY Song", "question": "Please list all songs in volumes in ascending alphabetical order.", "context": "CREATE TABLE volume (Song VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Artist_ID) FROM volume", "question": "How many distinct artists do the volumes associate to?", "context": "CREATE TABLE volume (Artist_ID VARCHAR)"}, {"answer": "SELECT T1.Date_of_ceremony FROM music_festival AS T1 JOIN volume AS T2 ON T1.Volume = T2.Volume_ID WHERE T2.Weeks_on_Top > 2", "question": "Please show the date of ceremony of the volumes that last more than 2 weeks on top.", "context": "CREATE TABLE music_festival (Date_of_ceremony VARCHAR, Volume VARCHAR); CREATE TABLE volume (Volume_ID VARCHAR, Weeks_on_Top INTEGER)"}, {"answer": "SELECT T2.Song FROM music_festival AS T1 JOIN volume AS T2 ON T1.Volume = T2.Volume_ID WHERE T1.Result = \"Nominated\"", "question": "Please show the songs that have result \"nominated\" at music festivals.", "context": "CREATE TABLE volume (Song VARCHAR, Volume_ID VARCHAR); CREATE TABLE music_festival (Volume VARCHAR, Result VARCHAR)"}, {"answer": "SELECT T2.Issue_Date FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T1.Artist = \"Gorgoroth\"", "question": "What are the issue dates of volumes associated with the artist \"Gorgoroth\"?", "context": "CREATE TABLE artist (Artist_ID VARCHAR, Artist VARCHAR); CREATE TABLE volume (Issue_Date VARCHAR, Artist_ID VARCHAR)"}, {"answer": "SELECT T2.Song FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T1.age >= 32", "question": "What are the songs in volumes associated with the artist aged 32 or older?", "context": "CREATE TABLE volume (Song VARCHAR, Artist_ID VARCHAR); CREATE TABLE artist (Artist_ID VARCHAR, age VARCHAR)"}, {"answer": "SELECT AVG(T2.Weeks_on_Top) FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T1.age <= 25", "question": "What is the average weeks on top of volumes associated with the artist aged 25 or younger?", "context": "CREATE TABLE volume (Weeks_on_Top INTEGER, Artist_ID VARCHAR); CREATE TABLE artist (Artist_ID VARCHAR, age VARCHAR)"}, {"answer": "SELECT T1.Famous_Title FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T2.Weeks_on_Top > 2", "question": "What are the famous title of the artists associated with volumes with more than 2 weeks on top?", "context": "CREATE TABLE artist (Famous_Title VARCHAR, Artist_ID VARCHAR); CREATE TABLE volume (Artist_ID VARCHAR, Weeks_on_Top INTEGER)"}, {"answer": "SELECT Famous_Title, Age FROM artist ORDER BY Age DESC", "question": "Please list the age and famous title of artists in descending order of age.", "context": "CREATE TABLE artist (Famous_Title VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Famous_Release_date FROM artist ORDER BY Age DESC LIMIT 1", "question": "What is the famous release date of the artist with the oldest age?", "context": "CREATE TABLE artist (Famous_Release_date VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Category, COUNT(*) FROM music_festival GROUP BY Category", "question": "Please show the categories of the music festivals and the count.", "context": "CREATE TABLE music_festival (Category VARCHAR)"}, {"answer": "SELECT RESULT FROM music_festival GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most common result of the music festival?", "context": "CREATE TABLE music_festival (RESULT VARCHAR)"}, {"answer": "SELECT Category FROM music_festival GROUP BY Category HAVING COUNT(*) > 1", "question": "Please show the categories of the music festivals with count more than 1.", "context": "CREATE TABLE music_festival (Category VARCHAR)"}, {"answer": "SELECT Song FROM volume ORDER BY Weeks_on_Top DESC LIMIT 1", "question": "What is the song in the volume with the maximum weeks on top?", "context": "CREATE TABLE volume (Song VARCHAR, Weeks_on_Top VARCHAR)"}, {"answer": "SELECT Famous_Title FROM artist WHERE NOT Artist_ID IN (SELECT Artist_ID FROM volume)", "question": "Find the famous titles of artists that do not have any volume.", "context": "CREATE TABLE volume (Famous_Title VARCHAR, Artist_ID VARCHAR); CREATE TABLE artist (Famous_Title VARCHAR, Artist_ID VARCHAR)"}, {"answer": "SELECT T1.Famous_Title FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T2.Weeks_on_Top > 2 INTERSECT SELECT T1.Famous_Title FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T2.Weeks_on_Top < 2", "question": "Show the famous titles of the artists with both volumes that lasted more than 2 weeks on top and volumes that lasted less than 2 weeks on top.", "context": "CREATE TABLE artist (Famous_Title VARCHAR, Artist_ID VARCHAR); CREATE TABLE volume (Artist_ID VARCHAR, Weeks_on_Top INTEGER)"}, {"answer": "SELECT Date_of_ceremony FROM music_festival WHERE Category = \"Best Song\" AND RESULT = \"Awarded\"", "question": "What are the date of ceremony of music festivals with category \"Best Song\" and result \"Awarded\"?", "context": "CREATE TABLE music_festival (Date_of_ceremony VARCHAR, Category VARCHAR, RESULT VARCHAR)"}, {"answer": "SELECT Issue_Date FROM volume ORDER BY Weeks_on_Top LIMIT 1", "question": "What is the issue date of the volume with the minimum weeks on top?", "context": "CREATE TABLE volume (Issue_Date VARCHAR, Weeks_on_Top VARCHAR)"}, {"answer": "SELECT RESULT, COUNT(*) FROM music_festival GROUP BY RESULT ORDER BY COUNT(*) DESC", "question": "Please show the results of music festivals and the number of music festivals that have had each, ordered by this count.", "context": "CREATE TABLE music_festival (RESULT VARCHAR)"}, {"answer": "SELECT Issue_Date FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T1.age <= 23", "question": "What are the issue dates of volumes associated with the artist aged 23 or younger?", "context": "CREATE TABLE volume (Artist_ID VARCHAR); CREATE TABLE artist (Artist_ID VARCHAR, age VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM roller_coaster", "question": "How many roller coasters are there?", "context": "CREATE TABLE roller_coaster (Id VARCHAR)"}, {"answer": "SELECT Name FROM roller_coaster ORDER BY LENGTH", "question": "List the names of roller coasters by ascending order of length.", "context": "CREATE TABLE roller_coaster (Name VARCHAR, LENGTH VARCHAR)"}, {"answer": "SELECT LENGTH, Height FROM roller_coaster", "question": "What are the lengths and heights of roller coasters?", "context": "CREATE TABLE roller_coaster (LENGTH VARCHAR, Height VARCHAR)"}, {"answer": "SELECT Name FROM country WHERE Languages <> \"German\"", "question": "List the names of countries whose language is not \"German\".", "context": "CREATE TABLE country (Name VARCHAR, Languages VARCHAR)"}, {"answer": "SELECT Status FROM roller_coaster WHERE LENGTH > 3300 OR Height > 100", "question": "Show the statuses of roller coasters longer than 3300 or higher than 100.", "context": "CREATE TABLE roller_coaster (Status VARCHAR, LENGTH VARCHAR, Height VARCHAR)"}, {"answer": "SELECT Speed FROM roller_coaster ORDER BY LENGTH DESC LIMIT 1", "question": "What are the speeds of the longest roller coaster?", "context": "CREATE TABLE roller_coaster (Speed VARCHAR, LENGTH VARCHAR)"}, {"answer": "SELECT AVG(Speed) FROM roller_coaster", "question": "What is the average speed of roller coasters?", "context": "CREATE TABLE roller_coaster (Speed INTEGER)"}, {"answer": "SELECT Status, COUNT(*) FROM roller_coaster GROUP BY Status", "question": "Show the different statuses and the numbers of roller coasters for each status.", "context": "CREATE TABLE roller_coaster (Status VARCHAR)"}, {"answer": "SELECT Status FROM roller_coaster GROUP BY Status ORDER BY COUNT(*) DESC LIMIT 1", "question": "Please show the most common status of roller coasters.", "context": "CREATE TABLE roller_coaster (Status VARCHAR)"}, {"answer": "SELECT Status FROM roller_coaster GROUP BY Status HAVING COUNT(*) > 2", "question": "List the status shared by more than two roller coaster.", "context": "CREATE TABLE roller_coaster (Status VARCHAR)"}, {"answer": "SELECT Park FROM roller_coaster ORDER BY Speed DESC LIMIT 1", "question": "Show the park of the roller coaster with the highest speed.", "context": "CREATE TABLE roller_coaster (Park VARCHAR, Speed VARCHAR)"}, {"answer": "SELECT T2.Name, T1.Name FROM country AS T1 JOIN roller_coaster AS T2 ON T1.Country_ID = T2.Country_ID", "question": "Show the names of roller coasters and names of country they are in.", "context": "CREATE TABLE country (Name VARCHAR, Country_ID VARCHAR); CREATE TABLE roller_coaster (Name VARCHAR, Country_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM country AS T1 JOIN roller_coaster AS T2 ON T1.Country_ID = T2.Country_ID GROUP BY T1.Name HAVING COUNT(*) > 1", "question": "Show the names of countries that have more than one roller coaster.", "context": "CREATE TABLE roller_coaster (Country_ID VARCHAR); CREATE TABLE country (Name VARCHAR, Country_ID VARCHAR)"}, {"answer": "SELECT T1.Name, T1.population FROM country AS T1 JOIN roller_coaster AS T2 ON T1.Country_ID = T2.Country_ID ORDER BY T2.Height DESC LIMIT 1", "question": "Show the name and population of the country that has the highest roller coaster.", "context": "CREATE TABLE roller_coaster (Country_ID VARCHAR, Height VARCHAR); CREATE TABLE country (Name VARCHAR, population VARCHAR, Country_ID VARCHAR)"}, {"answer": "SELECT T1.Name, AVG(T2.Speed) FROM country AS T1 JOIN roller_coaster AS T2 ON T1.Country_ID = T2.Country_ID GROUP BY T1.Name", "question": "Show the names of countries and the average speed of roller coasters from each country.", "context": "CREATE TABLE roller_coaster (Speed INTEGER, Country_ID VARCHAR); CREATE TABLE country (Name VARCHAR, Country_ID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM country WHERE NOT country_id IN (SELECT country_id FROM roller_coaster WHERE LENGTH > 3000)", "question": "How many countries do not have an roller coaster longer than 3000?", "context": "CREATE TABLE country (country_id VARCHAR, LENGTH INTEGER); CREATE TABLE roller_coaster (country_id VARCHAR, LENGTH INTEGER)"}, {"answer": "SELECT T1.name, T1.area, T1.population FROM country AS T1 JOIN roller_coaster AS T2 ON T1.Country_ID = T2.Country_ID WHERE T2.speed > 60 INTERSECT SELECT T1.name, T1.area, T1.population FROM country AS T1 JOIN roller_coaster AS T2 ON T1.Country_ID = T2.Country_ID WHERE T2.speed < 55", "question": "What are the country names, area and population which has both roller coasters with speed higher", "context": "CREATE TABLE country (name VARCHAR, area VARCHAR, population VARCHAR, Country_ID VARCHAR); CREATE TABLE roller_coaster (Country_ID VARCHAR, speed INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT rank) FROM captain", "question": "How many different captain ranks are there?", "context": "CREATE TABLE captain (rank VARCHAR)"}, {"answer": "SELECT COUNT(*), rank FROM captain GROUP BY rank", "question": "How many captains are in each rank?", "context": "CREATE TABLE captain (rank VARCHAR)"}, {"answer": "SELECT COUNT(*), rank FROM captain WHERE age < 50 GROUP BY rank", "question": "How many captains with younger than 50 are in each rank?", "context": "CREATE TABLE captain (rank VARCHAR, age INTEGER)"}, {"answer": "SELECT name FROM captain ORDER BY age DESC", "question": "Sort all captain names by their ages from old to young.", "context": "CREATE TABLE captain (name VARCHAR, age VARCHAR)"}, {"answer": "SELECT name, CLASS, rank FROM captain", "question": "Find the name, class and rank of all captains.", "context": "CREATE TABLE captain (name VARCHAR, CLASS VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM captain GROUP BY rank ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which rank is the most common among captains?", "context": "CREATE TABLE captain (rank VARCHAR)"}, {"answer": "SELECT CLASS FROM captain GROUP BY CLASS HAVING COUNT(*) > 2", "question": "Which classes have more than two captains?", "context": "CREATE TABLE captain (CLASS VARCHAR)"}, {"answer": "SELECT name FROM captain WHERE rank = 'Midshipman' OR rank = 'Lieutenant'", "question": "Find the name of captains whose rank are either Midshipman or Lieutenant.", "context": "CREATE TABLE captain (name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(age), MIN(age), CLASS FROM captain GROUP BY CLASS", "question": "What are the average and minimum age of captains in different class?", "context": "CREATE TABLE captain (CLASS VARCHAR, age INTEGER)"}, {"answer": "SELECT rank FROM captain WHERE CLASS = 'Cutter' INTERSECT SELECT rank FROM captain WHERE CLASS = 'Armed schooner'", "question": "Find the captain rank that has some captains in both Cutter and Armed schooner classes.", "context": "CREATE TABLE captain (rank VARCHAR, CLASS VARCHAR)"}, {"answer": "SELECT rank FROM captain EXCEPT SELECT rank FROM captain WHERE CLASS = 'Third-rate ship of the line'", "question": "Find the captain rank that has no captain in Third-rate ship of the line class.", "context": "CREATE TABLE captain (rank VARCHAR, CLASS VARCHAR)"}, {"answer": "SELECT name FROM captain ORDER BY age LIMIT 1", "question": "What is the name of the youngest captain?", "context": "CREATE TABLE captain (name VARCHAR, age VARCHAR)"}, {"answer": "SELECT name, TYPE, flag FROM ship ORDER BY built_year DESC LIMIT 1", "question": "Find the name, type, and flag of the ship that is built in the most recent year.", "context": "CREATE TABLE ship (name VARCHAR, TYPE VARCHAR, flag VARCHAR, built_year VARCHAR)"}, {"answer": "SELECT COUNT(*), flag FROM ship GROUP BY flag", "question": "Group by ships by flag, and return number of ships that have each flag.", "context": "CREATE TABLE ship (flag VARCHAR)"}, {"answer": "SELECT flag FROM ship GROUP BY flag ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which flag is most widely used among all ships?", "context": "CREATE TABLE ship (flag VARCHAR)"}, {"answer": "SELECT name FROM ship ORDER BY built_year, CLASS", "question": "List all ship names in the order of built year and class.", "context": "CREATE TABLE ship (name VARCHAR, built_year VARCHAR, CLASS VARCHAR)"}, {"answer": "SELECT TYPE FROM ship WHERE flag = 'Panama' INTERSECT SELECT TYPE FROM ship WHERE flag = 'Malta'", "question": "Find the ship type that are used by both ships with Panama and Malta flags.", "context": "CREATE TABLE ship (TYPE VARCHAR, flag VARCHAR)"}, {"answer": "SELECT built_year FROM ship GROUP BY built_year ORDER BY COUNT(*) DESC LIMIT 1", "question": "In which year were most of ships built?", "context": "CREATE TABLE ship (built_year VARCHAR)"}, {"answer": "SELECT t1.name FROM ship AS t1 JOIN captain AS t2 ON t1.ship_id = t2.ship_id GROUP BY t2.ship_id HAVING COUNT(*) > 1", "question": "Find the name of the ships that have more than one captain.", "context": "CREATE TABLE captain (ship_id VARCHAR); CREATE TABLE ship (name VARCHAR, ship_id VARCHAR)"}, {"answer": "SELECT name, CLASS FROM ship WHERE NOT ship_id IN (SELECT ship_id FROM captain)", "question": "what are the names and classes of the ships that do not have any captain yet?", "context": "CREATE TABLE ship (name VARCHAR, CLASS VARCHAR, ship_id VARCHAR); CREATE TABLE captain (name VARCHAR, CLASS VARCHAR, ship_id VARCHAR)"}, {"answer": "SELECT t1.name FROM ship AS t1 JOIN captain AS t2 ON t1.ship_id = t2.ship_id ORDER BY t2.age LIMIT 1", "question": "Find the name of the ship that is steered by the youngest captain.", "context": "CREATE TABLE ship (name VARCHAR, ship_id VARCHAR); CREATE TABLE captain (ship_id VARCHAR, age VARCHAR)"}, {"answer": "SELECT name, flag FROM ship WHERE NOT ship_id IN (SELECT ship_id FROM captain WHERE rank = 'Midshipman')", "question": "Find the name and flag of ships that are not steered by any captain with Midshipman rank.", "context": "CREATE TABLE captain (name VARCHAR, flag VARCHAR, ship_id VARCHAR, rank VARCHAR); CREATE TABLE ship (name VARCHAR, flag VARCHAR, ship_id VARCHAR, rank VARCHAR)"}, {"answer": "SELECT t1.name FROM ship AS t1 JOIN captain AS t2 ON t1.ship_id = t2.ship_id WHERE t2.rank = 'Midshipman' INTERSECT SELECT t1.name FROM ship AS t1 JOIN captain AS t2 ON t1.ship_id = t2.ship_id WHERE t2.rank = 'Lieutenant'", "question": "Find the name of the ships that are steered by both a captain with Midshipman rank and a captain with Lieutenant rank.", "context": "CREATE TABLE ship (name VARCHAR, ship_id VARCHAR); CREATE TABLE captain (ship_id VARCHAR, rank VARCHAR)"}, {"answer": "SELECT host_city FROM hosting_city ORDER BY YEAR DESC LIMIT 1", "question": "What is id of the city that hosted events in the most recent year?", "context": "CREATE TABLE hosting_city (host_city VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT match_id FROM MATCH WHERE competition = \"1994 FIFA World Cup qualification\"", "question": "Find the match ids of the cities that hosted competition \"1994 FIFA World Cup qualification\"?", "context": "CREATE TABLE MATCH (match_id VARCHAR, competition VARCHAR)"}, {"answer": "SELECT T1.city FROM city AS T1 JOIN hosting_city AS T2 ON T1.city_id = T2.host_city WHERE T2.year > 2010", "question": "Find the cities which were once a host city after 2010?", "context": "CREATE TABLE city (city VARCHAR, city_id VARCHAR); CREATE TABLE hosting_city (host_city VARCHAR, year INTEGER)"}, {"answer": "SELECT T1.city FROM city AS T1 JOIN hosting_city AS T2 ON T1.city_id = T2.host_city GROUP BY T2.host_city ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which city has hosted the most events?", "context": "CREATE TABLE city (city VARCHAR, city_id VARCHAR); CREATE TABLE hosting_city (host_city VARCHAR)"}, {"answer": "SELECT T3.venue FROM city AS T1 JOIN hosting_city AS T2 ON T1.city_id = T2.host_city JOIN MATCH AS T3 ON T2.match_id = T3.match_id WHERE T1.city = \"Nanjing ( Jiangsu )\" AND T3.competition = \"1994 FIFA World Cup qualification\"", "question": "What is the venue of the competition \"1994 FIFA World Cup qualification\" hosted by \"Nanjing ( Jiangsu )\"?", "context": "CREATE TABLE city (city_id VARCHAR, city VARCHAR); CREATE TABLE MATCH (venue VARCHAR, match_id VARCHAR, competition VARCHAR); CREATE TABLE hosting_city (host_city VARCHAR, match_id VARCHAR)"}, {"answer": "SELECT T2.Jan FROM city AS T1 JOIN temperature AS T2 ON T1.city_id = T2.city_id WHERE T1.city = \"Shanghai\"", "question": "Give me the temperature of Shanghai in January.", "context": "CREATE TABLE city (city_id VARCHAR, city VARCHAR); CREATE TABLE temperature (Jan VARCHAR, city_id VARCHAR)"}, {"answer": "SELECT T2.year FROM city AS T1 JOIN hosting_city AS T2 ON T1.city_id = T2.host_city WHERE T1.city = \"Taizhou ( Zhejiang )\"", "question": "What is the host year of city \"Taizhou ( Zhejiang )\"?", "context": "CREATE TABLE city (city_id VARCHAR, city VARCHAR); CREATE TABLE hosting_city (year VARCHAR, host_city VARCHAR)"}, {"answer": "SELECT city FROM city ORDER BY regional_population DESC LIMIT 3", "question": "Which three cities have the largest regional population?", "context": "CREATE TABLE city (city VARCHAR, regional_population VARCHAR)"}, {"answer": "SELECT city, GDP FROM city ORDER BY GDP LIMIT 1", "question": "Which city has the lowest GDP? Please list the city name and its GDP.", "context": "CREATE TABLE city (city VARCHAR, GDP VARCHAR)"}, {"answer": "SELECT T1.city FROM city AS T1 JOIN temperature AS T2 ON T1.city_id = T2.city_id ORDER BY T2.Feb DESC LIMIT 1", "question": "Which city has the highest temperature in February?", "context": "CREATE TABLE city (city VARCHAR, city_id VARCHAR); CREATE TABLE temperature (city_id VARCHAR, Feb VARCHAR)"}, {"answer": "SELECT T1.city FROM city AS T1 JOIN temperature AS T2 ON T1.city_id = T2.city_id WHERE T2.Mar < T2.Jul OR T2.Mar > T2.Oct", "question": "Give me a list of cities whose temperature in March is lower than that in July or higher than that in Oct?", "context": "CREATE TABLE city (city VARCHAR, city_id VARCHAR); CREATE TABLE temperature (city_id VARCHAR, Mar VARCHAR, Jul VARCHAR, Oct VARCHAR)"}, {"answer": "SELECT T1.city FROM city AS T1 JOIN temperature AS T2 ON T1.city_id = T2.city_id WHERE T2.Mar < T2.Jul INTERSECT SELECT T3.city FROM city AS T3 JOIN hosting_city AS T4 ON T3.city_id = T4.host_city", "question": "Give me a list of cities whose temperature in Mar is lower than that in July and which have also served as host cities?", "context": "CREATE TABLE city (city VARCHAR, city_id VARCHAR); CREATE TABLE hosting_city (host_city VARCHAR); CREATE TABLE temperature (city_id VARCHAR, Mar INTEGER, Jul VARCHAR)"}, {"answer": "SELECT T1.city FROM city AS T1 JOIN temperature AS T2 ON T1.city_id = T2.city_id WHERE T2.Mar < T2.Dec EXCEPT SELECT T3.city FROM city AS T3 JOIN hosting_city AS T4 ON T3.city_id = T4.host_city", "question": "Give me a list of cities whose temperature in Mar is lower than that in Dec and which have never been host cities.", "context": "CREATE TABLE city (city VARCHAR, city_id VARCHAR); CREATE TABLE hosting_city (host_city VARCHAR); CREATE TABLE temperature (city_id VARCHAR, Mar INTEGER, Dec VARCHAR)"}, {"answer": "SELECT T1.city FROM city AS T1 JOIN temperature AS T2 ON T1.city_id = T2.city_id WHERE T2.Feb > T2.Jun UNION SELECT T3.city FROM city AS T3 JOIN hosting_city AS T4 ON T3.city_id = T4.host_city", "question": "Give me a list of cities whose temperature in Feb is higher than that in Jun or cities that were once host cities?", "context": "CREATE TABLE city (city VARCHAR, city_id VARCHAR); CREATE TABLE hosting_city (host_city VARCHAR); CREATE TABLE temperature (city_id VARCHAR, Feb INTEGER, Jun VARCHAR)"}, {"answer": "SELECT city FROM city WHERE regional_population > 10000000", "question": "Please give me a list of cities whose regional population is over 10000000.", "context": "CREATE TABLE city (city VARCHAR, regional_population INTEGER)"}, {"answer": "SELECT city FROM city WHERE regional_population > 10000000 UNION SELECT city FROM city WHERE regional_population < 5000000", "question": "Please give me a list of cities whose regional population is over 8000000 or under 5000000.", "context": "CREATE TABLE city (city VARCHAR, regional_population INTEGER)"}, {"answer": "SELECT COUNT(*), Competition FROM MATCH GROUP BY Competition", "question": "Find the number of matches in different competitions.", "context": "CREATE TABLE MATCH (Competition VARCHAR)"}, {"answer": "SELECT venue FROM MATCH ORDER BY date DESC", "question": "List venues of all matches in the order of their dates starting from the most recent one.", "context": "CREATE TABLE MATCH (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT gdp FROM city ORDER BY Regional_Population DESC LIMIT 1", "question": "what is the GDP of the city with the largest population.", "context": "CREATE TABLE city (gdp VARCHAR, Regional_Population VARCHAR)"}, {"answer": "SELECT t1.gdp, t1.Regional_Population FROM city AS T1 JOIN hosting_city AS T2 ON T1.city_id = T2.host_city GROUP BY t2.Host_City HAVING COUNT(*) > 1", "question": "What are the GDP and population of the city that already served as a host more than once?", "context": "CREATE TABLE hosting_city (host_city VARCHAR); CREATE TABLE city (city_id VARCHAR)"}, {"answer": "SELECT individual_first_name, individual_middle_name, individual_last_name FROM individuals ORDER BY individual_last_name", "question": "List every individual's first name, middle name and last name in alphabetical order by last name.", "context": "CREATE TABLE individuals (individual_first_name VARCHAR, individual_middle_name VARCHAR, individual_last_name VARCHAR)"}, {"answer": "SELECT DISTINCT form_type_code FROM forms", "question": "List all the types of forms.", "context": "CREATE TABLE forms (form_type_code VARCHAR)"}, {"answer": "SELECT t1.form_name FROM forms AS t1 JOIN party_forms AS t2 ON t1.form_id = t2.form_id GROUP BY t2.form_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of the most popular party form.", "context": "CREATE TABLE party_forms (form_id VARCHAR); CREATE TABLE forms (form_name VARCHAR, form_id VARCHAR)"}, {"answer": "SELECT payment_method_code, party_phone FROM parties WHERE party_email = \"enrico09@example.com\"", "question": "Find the payment method and phone of the party with email \"enrico09@example.com\".", "context": "CREATE TABLE parties (payment_method_code VARCHAR, party_phone VARCHAR, party_email VARCHAR)"}, {"answer": "SELECT t1.party_email FROM parties AS t1 JOIN party_forms AS t2 ON t1.party_id = t2.party_id WHERE t2.form_id = (SELECT form_id FROM party_forms GROUP BY form_id ORDER BY COUNT(*) DESC LIMIT 1)", "question": "Find the emails of parties with the most popular party form.", "context": "CREATE TABLE party_forms (form_id VARCHAR); CREATE TABLE parties (party_email VARCHAR, party_id VARCHAR); CREATE TABLE party_forms (party_id VARCHAR, form_id VARCHAR)"}, {"answer": "SELECT organization_name FROM organizations ORDER BY date_formed", "question": "List all the name of organizations in order of the date formed.", "context": "CREATE TABLE organizations (organization_name VARCHAR, date_formed VARCHAR)"}, {"answer": "SELECT organization_name FROM organizations ORDER BY date_formed DESC LIMIT 1", "question": "Find the name of the youngest organization.", "context": "CREATE TABLE organizations (organization_name VARCHAR, date_formed VARCHAR)"}, {"answer": "SELECT t3.individual_last_name FROM organizations AS t1 JOIN organization_contact_individuals AS t2 ON t1.organization_id = t2.organization_id JOIN individuals AS t3 ON t2.individual_id = t3.individual_id WHERE t1.organization_name = \"Labour Party\" ORDER BY t2.date_contact_to DESC LIMIT 1", "question": "Find the last name of the latest contact individual of the organization \"Labour Party\".", "context": "CREATE TABLE organizations (organization_id VARCHAR, organization_name VARCHAR); CREATE TABLE individuals (individual_last_name VARCHAR, individual_id VARCHAR); CREATE TABLE organization_contact_individuals (organization_id VARCHAR, individual_id VARCHAR, date_contact_to VARCHAR)"}, {"answer": "SELECT t3.individual_last_name FROM organizations AS t1 JOIN organization_contact_individuals AS t2 ON t1.organization_id = t2.organization_id JOIN individuals AS t3 ON t2.individual_id = t3.individual_id WHERE t1.uk_vat_number = (SELECT MAX(uk_vat_number) FROM organizations) ORDER BY t2.date_contact_to LIMIT 1", "question": "Find the last name of the first ever contact person of the organization with the highest UK Vat number.", "context": "CREATE TABLE organizations (uk_vat_number INTEGER); CREATE TABLE individuals (individual_last_name VARCHAR, individual_id VARCHAR); CREATE TABLE organizations (organization_id VARCHAR, uk_vat_number INTEGER); CREATE TABLE organization_contact_individuals (organization_id VARCHAR, individual_id VARCHAR, date_contact_to VARCHAR)"}, {"answer": "SELECT service_name FROM services EXCEPT SELECT t1.service_name FROM services AS t1 JOIN party_services AS t2 ON t1.service_id = t2.service_id", "question": "Find name of the services that has never been used.", "context": "CREATE TABLE services (service_name VARCHAR); CREATE TABLE party_services (service_id VARCHAR); CREATE TABLE services (service_name VARCHAR, service_id VARCHAR)"}, {"answer": "SELECT town_city FROM addresses UNION SELECT state_province_county FROM addresses", "question": "Find the name of all the cities and states.", "context": "CREATE TABLE addresses (town_city VARCHAR, state_province_county VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM addresses WHERE state_province_county = \"Colorado\"", "question": "How many cities are there in state \"Colorado\"?", "context": "CREATE TABLE addresses (state_province_county VARCHAR)"}, {"answer": "SELECT payment_method_code FROM parties GROUP BY payment_method_code HAVING COUNT(*) > 3", "question": "Find the payment method code used by more than 3 parties.", "context": "CREATE TABLE parties (payment_method_code VARCHAR)"}, {"answer": "SELECT organization_name FROM organizations WHERE organization_name LIKE \"%Party%\"", "question": "Find the name of organizations whose names contain \"Party\".", "context": "CREATE TABLE organizations (organization_name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT payment_method_code) FROM parties", "question": "How many distinct payment methods are used by parties?", "context": "CREATE TABLE parties (payment_method_code VARCHAR)"}, {"answer": "SELECT t1.party_email FROM parties AS t1 JOIN party_services AS t2 ON t1.party_id = t2.customer_id GROUP BY t1.party_email ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which is the email of the party that has used the services the most number of times?", "context": "CREATE TABLE parties (party_email VARCHAR, party_id VARCHAR); CREATE TABLE party_services (customer_id VARCHAR)"}, {"answer": "SELECT state_province_county FROM addresses WHERE line_1_number_building LIKE \"%6862 Kaitlyn Knolls%\"", "question": "Which state can address \"6862 Kaitlyn Knolls\" possibly be in?", "context": "CREATE TABLE addresses (state_province_county VARCHAR, line_1_number_building VARCHAR)"}, {"answer": "SELECT t1.organization_name FROM organizations AS t1 JOIN organization_contact_individuals AS t2 ON t1.organization_id = t2.organization_id GROUP BY t1.organization_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of organization that has the greatest number of contact individuals?", "context": "CREATE TABLE organization_contact_individuals (organization_id VARCHAR); CREATE TABLE organizations (organization_name VARCHAR, organization_id VARCHAR)"}, {"answer": "SELECT DISTINCT t1.individual_last_name FROM individuals AS t1 JOIN organization_contact_individuals AS t2 ON t1.individual_id = t2.individual_id", "question": "Find the last name of the individuals that have been contact individuals of an organization.", "context": "CREATE TABLE individuals (individual_last_name VARCHAR, individual_id VARCHAR); CREATE TABLE organization_contact_individuals (individual_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM driver", "question": "How many drivers are there?", "context": "CREATE TABLE driver (Id VARCHAR)"}, {"answer": "SELECT name, home_city, age FROM driver", "question": "Show the name, home city, and age for all drivers.", "context": "CREATE TABLE driver (name VARCHAR, home_city VARCHAR, age VARCHAR)"}, {"answer": "SELECT party, COUNT(*) FROM driver GROUP BY party", "question": "Show the party and the number of drivers in each party.", "context": "CREATE TABLE driver (party VARCHAR)"}, {"answer": "SELECT name FROM driver ORDER BY age DESC", "question": "Show the name of drivers in descending order of age.", "context": "CREATE TABLE driver (name VARCHAR, age VARCHAR)"}, {"answer": "SELECT DISTINCT home_city FROM driver", "question": "Show all different home cities.", "context": "CREATE TABLE driver (home_city VARCHAR)"}, {"answer": "SELECT home_city FROM driver GROUP BY home_city ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the home city with the most number of drivers.", "context": "CREATE TABLE driver (home_city VARCHAR)"}, {"answer": "SELECT party FROM driver WHERE home_city = 'Hartford' AND age > 40", "question": "Show the party with drivers from Hartford and drivers older than 40.", "context": "CREATE TABLE driver (party VARCHAR, home_city VARCHAR, age VARCHAR)"}, {"answer": "SELECT home_city FROM driver WHERE age > 40 GROUP BY home_city HAVING COUNT(*) >= 2", "question": "Show home city where at least two drivers older than 40 are from.", "context": "CREATE TABLE driver (home_city VARCHAR, age INTEGER)"}, {"answer": "SELECT home_city FROM driver EXCEPT SELECT home_city FROM driver WHERE age > 40", "question": "Show all home cities except for those having a driver older than 40.", "context": "CREATE TABLE driver (home_city VARCHAR, age INTEGER)"}, {"answer": "SELECT name FROM driver WHERE NOT driver_id IN (SELECT driver_id FROM school_bus)", "question": "Show the names of the drivers without a school bus.", "context": "CREATE TABLE school_bus (name VARCHAR, driver_id VARCHAR); CREATE TABLE driver (name VARCHAR, driver_id VARCHAR)"}, {"answer": "SELECT TYPE FROM school GROUP BY TYPE HAVING COUNT(*) = 2", "question": "Show the types of schools that have two schools.", "context": "CREATE TABLE school (TYPE VARCHAR)"}, {"answer": "SELECT T2.school, T3.name FROM school_bus AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id JOIN driver AS T3 ON T1.driver_id = T3.driver_id", "question": "Show the school name and driver name for all school buses.", "context": "CREATE TABLE school (school VARCHAR, school_id VARCHAR); CREATE TABLE school_bus (school_id VARCHAR, driver_id VARCHAR); CREATE TABLE driver (name VARCHAR, driver_id VARCHAR)"}, {"answer": "SELECT MAX(years_working), MIN(years_working), AVG(years_working) FROM school_bus", "question": "What is the maximum, minimum and average years spent working on a school bus?", "context": "CREATE TABLE school_bus (years_working INTEGER)"}, {"answer": "SELECT school, TYPE FROM school WHERE NOT school_id IN (SELECT school_id FROM school_bus)", "question": "Show the school name and type for schools without a school bus.", "context": "CREATE TABLE school_bus (school VARCHAR, TYPE VARCHAR, school_id VARCHAR); CREATE TABLE school (school VARCHAR, TYPE VARCHAR, school_id VARCHAR)"}, {"answer": "SELECT T2.type, COUNT(*) FROM school_bus AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id GROUP BY T2.type", "question": "Show the type of school and the number of buses for each type.", "context": "CREATE TABLE school (type VARCHAR, school_id VARCHAR); CREATE TABLE school_bus (school_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM driver WHERE home_city = 'Hartford' OR age < 40", "question": "How many drivers are from Hartford city or younger than 40?", "context": "CREATE TABLE driver (home_city VARCHAR, age VARCHAR)"}, {"answer": "SELECT name FROM driver WHERE home_city = 'Hartford' AND age < 40", "question": "List names for drivers from Hartford city and younger than 40.", "context": "CREATE TABLE driver (name VARCHAR, home_city VARCHAR, age VARCHAR)"}, {"answer": "SELECT t1.name FROM driver AS t1 JOIN school_bus AS t2 ON t1.driver_id = t2.driver_id ORDER BY years_working DESC LIMIT 1", "question": "find the name of driver who is driving the school bus with the longest working history.", "context": "CREATE TABLE school_bus (driver_id VARCHAR); CREATE TABLE driver (name VARCHAR, driver_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM flight WHERE velocity > 200", "question": "How many flights have a velocity larger than 200?", "context": "CREATE TABLE flight (velocity INTEGER)"}, {"answer": "SELECT vehicle_flight_number, date, pilot FROM flight ORDER BY altitude", "question": "List the vehicle flight number, date and pilot of all the flights, ordered by altitude.", "context": "CREATE TABLE flight (vehicle_flight_number VARCHAR, date VARCHAR, pilot VARCHAR, altitude VARCHAR)"}, {"answer": "SELECT id, country, city, name FROM airport ORDER BY name", "question": "List the id, country, city and name of the airports ordered alphabetically by the name.", "context": "CREATE TABLE airport (id VARCHAR, country VARCHAR, city VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(group_equity_shareholding) FROM operate_company", "question": "What is maximum group equity shareholding of the companies?", "context": "CREATE TABLE operate_company (group_equity_shareholding INTEGER)"}, {"answer": "SELECT AVG(velocity) FROM flight WHERE pilot = 'Thompson'", "question": "What is the velocity of the pilot named 'Thompson'?", "context": "CREATE TABLE flight (velocity INTEGER, pilot VARCHAR)"}, {"answer": "SELECT T1.name, T1.type FROM operate_company AS T1 JOIN flight AS t2 ON T1.id = T2.company_id", "question": "What are the names and types of the companies that have ever operated a flight?", "context": "CREATE TABLE operate_company (name VARCHAR, type VARCHAR, id VARCHAR); CREATE TABLE flight (Id VARCHAR)"}, {"answer": "SELECT name FROM airport WHERE country <> 'Iceland'", "question": "What are the names of the airports which are not in the country 'Iceland'?", "context": "CREATE TABLE airport (name VARCHAR, country VARCHAR)"}, {"answer": "SELECT DISTINCT T1.type FROM operate_company AS T1 JOIN flight AS t2 ON T1.id = T2.company_id WHERE T2.velocity < 200", "question": "What are the distinct types of the companies that have operated any flights with velocity less than 200?", "context": "CREATE TABLE flight (Id VARCHAR); CREATE TABLE operate_company (type VARCHAR, id VARCHAR)"}, {"answer": "SELECT T1.id, T1.name FROM operate_company AS T1 JOIN flight AS t2 ON T1.id = T2.company_id GROUP BY T1.id HAVING COUNT(*) > 1", "question": "What are the ids and names of the companies that operated more than one flight?", "context": "CREATE TABLE flight (Id VARCHAR); CREATE TABLE operate_company (id VARCHAR, name VARCHAR)"}, {"answer": "SELECT T1.id, T1.name, T1.IATA FROM airport AS T1 JOIN flight AS T2 ON T1.id = T2.airport_id GROUP BY T2.id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the id, name and IATA code of the airport that had most number of flights?", "context": "CREATE TABLE airport (id VARCHAR, name VARCHAR, IATA VARCHAR); CREATE TABLE flight (id VARCHAR, airport_id VARCHAR)"}, {"answer": "SELECT DISTINCT T2.pilot FROM airport AS T1 JOIN flight AS T2 ON T1.id = T2.airport_id WHERE T1.country = 'United States' OR T1.name = 'Billund Airport'", "question": "What are the different pilot names who had piloted a flight in the country 'United States' or in the airport named 'Billund Airport'?", "context": "CREATE TABLE airport (id VARCHAR, country VARCHAR, name VARCHAR); CREATE TABLE flight (pilot VARCHAR, airport_id VARCHAR)"}, {"answer": "SELECT TYPE, COUNT(*) FROM operate_company GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most common company type, and how many are there?", "context": "CREATE TABLE operate_company (TYPE VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM airport WHERE NOT id IN (SELECT airport_id FROM flight WHERE pilot = 'Thompson')", "question": "How many airports haven't the pilot 'Thompson' driven an aircraft?", "context": "CREATE TABLE airport (id VARCHAR, airport_id VARCHAR, pilot VARCHAR); CREATE TABLE flight (id VARCHAR, airport_id VARCHAR, pilot VARCHAR)"}, {"answer": "SELECT T2.pilot FROM operate_company AS T1 JOIN flight AS t2 ON T1.id = T2.company_id WHERE T1.principal_activities = 'Cargo' INTERSECT SELECT T2.pilot FROM operate_company AS T1 JOIN flight AS t2 ON T1.id = T2.company_id WHERE T1.principal_activities = 'Catering services'", "question": "List the name of the pilots who have flied for both a company that mainly provide 'Cargo' services and a company that runs 'Catering services' activities.", "context": "CREATE TABLE operate_company (id VARCHAR, principal_activities VARCHAR); CREATE TABLE flight (Id VARCHAR)"}, {"answer": "SELECT name FROM airport WHERE name LIKE '%international%'", "question": "Which of the airport names contains the word 'international'?", "context": "CREATE TABLE airport (name VARCHAR)"}, {"answer": "SELECT T3.id, COUNT(*) FROM operate_company AS T1 JOIN flight AS t2 ON T1.id = T2.company_id JOIN airport AS T3 ON T2.airport_id = T3.id GROUP BY T3.id", "question": "How many companies operates airlines in each airport?", "context": "CREATE TABLE airport (id VARCHAR); CREATE TABLE flight (Id VARCHAR); CREATE TABLE operate_company (id VARCHAR)"}, {"answer": "SELECT COUNT(*), country FROM airport GROUP BY country", "question": "how many airports are there in each country?", "context": "CREATE TABLE airport (country VARCHAR)"}, {"answer": "SELECT country FROM airport GROUP BY country HAVING COUNT(*) > 2", "question": "which countries have more than 2 airports?", "context": "CREATE TABLE airport (country VARCHAR)"}, {"answer": "SELECT pilot FROM flight GROUP BY pilot ORDER BY COUNT(*) DESC LIMIT 1", "question": "which pilot is in charge of the most number of flights?", "context": "CREATE TABLE flight (pilot VARCHAR)"}, {"answer": "SELECT account_id, account_details FROM Accounts", "question": "Show all account ids and account details.", "context": "CREATE TABLE Accounts (account_id VARCHAR, account_details VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Statements", "question": "How many statements do we have?", "context": "CREATE TABLE Statements (Id VARCHAR)"}, {"answer": "SELECT STATEMENT_ID, statement_details FROM Statements", "question": "List all statement ids and statement details.", "context": "CREATE TABLE Statements (STATEMENT_ID VARCHAR, statement_details VARCHAR)"}, {"answer": "SELECT T1.statement_id, T2.statement_details, T1.account_details FROM Accounts AS T1 JOIN Statements AS T2 ON T1.statement_id = T2.statement_id", "question": "Show statement id, statement detail, account detail for accounts.", "context": "CREATE TABLE Accounts (statement_id VARCHAR, account_details VARCHAR); CREATE TABLE Statements (statement_details VARCHAR, statement_id VARCHAR)"}, {"answer": "SELECT STATEMENT_ID, COUNT(*) FROM Accounts GROUP BY STATEMENT_ID", "question": "Show all statement id and the number of accounts for each statement.", "context": "CREATE TABLE Accounts (STATEMENT_ID VARCHAR)"}, {"answer": "SELECT T1.statement_id, T2.statement_details FROM Accounts AS T1 JOIN Statements AS T2 ON T1.statement_id = T2.statement_id GROUP BY T1.statement_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the statement id and the statement detail for the statement with most number of accounts.", "context": "CREATE TABLE Accounts (statement_id VARCHAR); CREATE TABLE Statements (statement_details VARCHAR, statement_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Documents", "question": "Show the number of documents.", "context": "CREATE TABLE Documents (Id VARCHAR)"}, {"answer": "SELECT document_type_code, document_name, document_description FROM Documents WHERE document_name = 'Noel CV' OR document_name = 'King Book'", "question": "List the document type code, document name, and document description for the document with name 'Noel CV' or name 'King Book'.", "context": "CREATE TABLE Documents (document_type_code VARCHAR, document_name VARCHAR, document_description VARCHAR)"}, {"answer": "SELECT document_id, document_name FROM Documents", "question": "Show the ids and names of all documents.", "context": "CREATE TABLE Documents (document_id VARCHAR, document_name VARCHAR)"}, {"answer": "SELECT document_name, document_id FROM Documents WHERE document_type_code = \"BK\"", "question": "Find names and ids of all documents with document type code BK.", "context": "CREATE TABLE Documents (document_name VARCHAR, document_id VARCHAR, document_type_code VARCHAR)"}, {"answer": "SELECT COUNT(*), project_id FROM Documents WHERE document_type_code = \"BK\" GROUP BY project_id", "question": "How many documents are with document type code BK for each product id?", "context": "CREATE TABLE Documents (project_id VARCHAR, document_type_code VARCHAR)"}, {"answer": "SELECT document_name, document_date FROM Documents AS T1 JOIN projects AS T2 ON T1.project_id = T2.project_id WHERE T2.project_details = 'Graph Database project'", "question": "Show the document name and the document date for all documents on project with details 'Graph Database project'.", "context": "CREATE TABLE Documents (project_id VARCHAR); CREATE TABLE projects (project_id VARCHAR, project_details VARCHAR)"}, {"answer": "SELECT project_id, COUNT(*) FROM Documents GROUP BY project_id", "question": "Show project ids and the number of documents in each project.", "context": "CREATE TABLE Documents (project_id VARCHAR)"}, {"answer": "SELECT project_id FROM Documents GROUP BY project_id ORDER BY COUNT(*) LIMIT 1", "question": "What is the id of the project with least number of documents?", "context": "CREATE TABLE Documents (project_id VARCHAR)"}, {"answer": "SELECT project_id FROM Documents GROUP BY project_id HAVING COUNT(*) >= 2", "question": "Show the ids for projects with at least 2 documents.", "context": "CREATE TABLE Documents (project_id VARCHAR)"}, {"answer": "SELECT document_type_code, COUNT(*) FROM Documents GROUP BY document_type_code", "question": "List document type codes and the number of documents in each code.", "context": "CREATE TABLE Documents (document_type_code VARCHAR)"}, {"answer": "SELECT document_type_code FROM Documents GROUP BY document_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the document type code with most number of documents?", "context": "CREATE TABLE Documents (document_type_code VARCHAR)"}, {"answer": "SELECT document_type_code FROM Documents GROUP BY document_type_code HAVING COUNT(*) < 3", "question": "Show the document type code with fewer than 3 documents.", "context": "CREATE TABLE Documents (document_type_code VARCHAR)"}, {"answer": "SELECT T1.statement_details, T2.document_name FROM Statements AS T1 JOIN Documents AS T2 ON T1.statement_id = T2.document_id WHERE T1.statement_details = 'Private Project'", "question": "Show the statement detail and the corresponding document name for the statement with detail 'Private Project'.", "context": "CREATE TABLE Statements (statement_details VARCHAR, statement_id VARCHAR); CREATE TABLE Documents (document_name VARCHAR, document_id VARCHAR)"}, {"answer": "SELECT document_type_code, document_type_name, document_type_description FROM Ref_document_types", "question": "Show all document type codes, document type names, document type descriptions.", "context": "CREATE TABLE Ref_document_types (document_type_code VARCHAR, document_type_name VARCHAR, document_type_description VARCHAR)"}, {"answer": "SELECT document_type_description FROM Ref_document_types WHERE document_type_name = \"Film\"", "question": "What is the document type description for document type named Film?", "context": "CREATE TABLE Ref_document_types (document_type_description VARCHAR, document_type_name VARCHAR)"}, {"answer": "SELECT T1.document_type_name, T1.document_type_description, T2.Document_date FROM Ref_document_types AS T1 JOIN Documents AS T2 ON T1.document_type_code = T2.document_type_code", "question": "What is the document type name and the document type description and creation date for all the documents?", "context": "CREATE TABLE Ref_document_types (document_type_name VARCHAR, document_type_description VARCHAR, document_type_code VARCHAR); CREATE TABLE Documents (Document_date VARCHAR, document_type_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Projects", "question": "Show the number of projects.", "context": "CREATE TABLE Projects (Id VARCHAR)"}, {"answer": "SELECT project_id, project_details FROM Projects", "question": "List ids and details for all projects.", "context": "CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR)"}, {"answer": "SELECT T1.project_id, T1.project_details FROM Projects AS T1 JOIN Documents AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id HAVING COUNT(*) > 2", "question": "What is the project id and detail for the project with at least two documents?", "context": "CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR); CREATE TABLE Documents (project_id VARCHAR)"}, {"answer": "SELECT T1.project_details FROM Projects AS T1 JOIN Documents AS T2 ON T1.project_id = T2.project_id WHERE T2.document_name = \"King Book\"", "question": "What is the project detail for the project with document \"King Book\"?", "context": "CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR); CREATE TABLE Documents (project_id VARCHAR, document_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Ref_budget_codes", "question": "How many budget types do we have?", "context": "CREATE TABLE Ref_budget_codes (Id VARCHAR)"}, {"answer": "SELECT budget_type_code, budget_type_description FROM Ref_budget_codes", "question": "List all budget type codes and descriptions.", "context": "CREATE TABLE Ref_budget_codes (budget_type_code VARCHAR, budget_type_description VARCHAR)"}, {"answer": "SELECT budget_type_description FROM Ref_budget_codes WHERE budget_type_code = \"ORG\"", "question": "What is the description for the budget type with code ORG?", "context": "CREATE TABLE Ref_budget_codes (budget_type_description VARCHAR, budget_type_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Documents_with_expenses", "question": "How many documents have expenses?", "context": "CREATE TABLE Documents_with_expenses (Id VARCHAR)"}, {"answer": "SELECT document_id FROM Documents_with_expenses WHERE budget_type_code = 'SF'", "question": "What are the document ids for the budget type code 'SF'?", "context": "CREATE TABLE Documents_with_expenses (document_id VARCHAR, budget_type_code VARCHAR)"}, {"answer": "SELECT T2.budget_type_code, T2.budget_type_description, T1.document_id FROM Documents_with_expenses AS T1 JOIN Ref_budget_codes AS T2 ON T1.budget_type_code = T2.budget_type_code", "question": "Show the budget type code and description and the corresponding document id.", "context": "CREATE TABLE Ref_budget_codes (budget_type_code VARCHAR, budget_type_description VARCHAR); CREATE TABLE Documents_with_expenses (document_id VARCHAR, budget_type_code VARCHAR)"}, {"answer": "SELECT T1.document_id FROM Documents_with_expenses AS T1 JOIN Ref_Budget_Codes AS T2 ON T1.Budget_Type_code = T2.Budget_Type_code WHERE T2.budget_type_Description = \"Government\"", "question": "Show ids for all documents with budget types described as 'Government'.", "context": "CREATE TABLE Documents_with_expenses (document_id VARCHAR, Budget_Type_code VARCHAR); CREATE TABLE Ref_Budget_Codes (Budget_Type_code VARCHAR, budget_type_Description VARCHAR)"}, {"answer": "SELECT budget_type_code, COUNT(*) FROM Documents_with_expenses GROUP BY budget_type_code", "question": "Show budget type codes and the number of documents in each budget type.", "context": "CREATE TABLE Documents_with_expenses (budget_type_code VARCHAR)"}, {"answer": "SELECT budget_type_code FROM Documents_with_expenses GROUP BY budget_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the budget type code with most number of documents.", "context": "CREATE TABLE Documents_with_expenses (budget_type_code VARCHAR)"}, {"answer": "SELECT document_id FROM Documents EXCEPT SELECT document_id FROM Documents_with_expenses", "question": "What are the ids of documents which don't have expense budgets?", "context": "CREATE TABLE Documents (document_id VARCHAR); CREATE TABLE Documents_with_expenses (document_id VARCHAR)"}, {"answer": "SELECT document_id FROM Documents WHERE document_type_code = \"CV\" EXCEPT SELECT document_id FROM Documents_with_expenses", "question": "Show ids for all documents in type CV without expense budgets.", "context": "CREATE TABLE Documents_with_expenses (document_id VARCHAR, document_type_code VARCHAR); CREATE TABLE Documents (document_id VARCHAR, document_type_code VARCHAR)"}, {"answer": "SELECT T1.document_id FROM Documents AS T1 JOIN Documents_with_expenses AS T2 ON T1.document_id = T2.document_id WHERE T1.document_name LIKE '%s%'", "question": "What are the ids of documents with letter 's' in the name with any expense budgets.", "context": "CREATE TABLE Documents_with_expenses (document_id VARCHAR); CREATE TABLE Documents (document_id VARCHAR, document_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Documents WHERE NOT document_id IN (SELECT document_id FROM Documents_with_expenses)", "question": "How many documents do not have any expense?", "context": "CREATE TABLE Documents (document_id VARCHAR); CREATE TABLE Documents_with_expenses (document_id VARCHAR)"}, {"answer": "SELECT T1.document_date FROM Documents AS T1 JOIN Documents_with_Expenses AS T2 ON T1.document_id = T2.document_id WHERE T2.budget_type_code = 'GV' INTERSECT SELECT T1.document_date FROM Documents AS T1 JOIN Documents_with_Expenses AS T2 ON T1.document_id = T2.document_id WHERE T2.budget_type_code = 'SF'", "question": "What are the dates for the documents with both 'GV' type and 'SF' type expenses?", "context": "CREATE TABLE Documents_with_Expenses (document_id VARCHAR, budget_type_code VARCHAR); CREATE TABLE Documents (document_date VARCHAR, document_id VARCHAR)"}, {"answer": "SELECT MAX(Account_details) FROM Accounts UNION SELECT Account_details FROM Accounts WHERE Account_details LIKE \"%5%\"", "question": "What are the account details with the largest value or with value having char '5' in it?", "context": "CREATE TABLE Accounts (Account_details INTEGER)"}, {"answer": "SELECT COUNT(*) FROM scientists", "question": "Find the total number of scientists.", "context": "CREATE TABLE scientists (Id VARCHAR)"}, {"answer": "SELECT SUM(hours) FROM projects", "question": "Find the total hours of all projects.", "context": "CREATE TABLE projects (hours INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT scientist) FROM assignedto", "question": "How many different scientists are assigned to any project?", "context": "CREATE TABLE assignedto (scientist VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT name) FROM projects", "question": "Find the number of distinct projects.", "context": "CREATE TABLE projects (name VARCHAR)"}, {"answer": "SELECT AVG(hours) FROM projects", "question": "Find the average hours of all projects.", "context": "CREATE TABLE projects (hours INTEGER)"}, {"answer": "SELECT name FROM projects ORDER BY hours DESC LIMIT 1", "question": "Find the name of project that continues for the longest time.", "context": "CREATE TABLE projects (name VARCHAR, hours VARCHAR)"}, {"answer": "SELECT name FROM projects WHERE hours > (SELECT AVG(hours) FROM projects)", "question": "List the name of all projects that are operated longer than the average working hours of all projects.", "context": "CREATE TABLE projects (name VARCHAR, hours INTEGER)"}, {"answer": "SELECT T1.name, T1.hours FROM projects AS T1 JOIN assignedto AS T2 ON T1.code = T2.project GROUP BY T2.project ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name and hours of project that has the most number of scientists.", "context": "CREATE TABLE assignedto (project VARCHAR); CREATE TABLE projects (name VARCHAR, hours VARCHAR, code VARCHAR)"}, {"answer": "SELECT T2.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T3.name LIKE '%Smith%'", "question": "Find the name of the project for which a scientist whose name contains \u2018Smith\u2019 is assigned to.", "context": "CREATE TABLE scientists (SSN VARCHAR, name VARCHAR); CREATE TABLE assignedto (project VARCHAR, scientist VARCHAR); CREATE TABLE projects (name VARCHAR, code VARCHAR)"}, {"answer": "SELECT SUM(T2.hours) FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T3.name = 'Michael Rogers' OR T3.name = 'Carol Smith'", "question": "Find the total hours of the projects that scientists named Michael Rogers or Carol Smith are assigned to.", "context": "CREATE TABLE scientists (SSN VARCHAR, name VARCHAR); CREATE TABLE projects (hours INTEGER, code VARCHAR); CREATE TABLE assignedto (project VARCHAR, scientist VARCHAR)"}, {"answer": "SELECT name FROM projects WHERE hours BETWEEN 100 AND 300", "question": "Find the name of projects that require between 100 and 300 hours of work.", "context": "CREATE TABLE projects (name VARCHAR, hours INTEGER)"}, {"answer": "SELECT T3.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T2.name = 'Matter of Time' INTERSECT SELECT T3.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T2.name = 'A Puzzling Parallax'", "question": "Find the name of the scientist who worked on both a project named 'Matter of Time' and a project named 'A Puzzling Parallax'.", "context": "CREATE TABLE projects (code VARCHAR, name VARCHAR); CREATE TABLE scientists (name VARCHAR, SSN VARCHAR); CREATE TABLE assignedto (project VARCHAR, scientist VARCHAR)"}, {"answer": "SELECT name FROM scientists ORDER BY name", "question": "List the names of all scientists sorted in alphabetical order.", "context": "CREATE TABLE scientists (name VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.name FROM projects AS T1 JOIN assignedto AS T2 ON T1.code = T2.project GROUP BY T1.name", "question": "Find the number of scientists involved for each project name.", "context": "CREATE TABLE assignedto (project VARCHAR); CREATE TABLE projects (name VARCHAR, code VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.name FROM projects AS T1 JOIN assignedto AS T2 ON T1.code = T2.project WHERE T1.hours > 300 GROUP BY T1.name", "question": "Find the number of scientists involved for the projects that require more than 300 hours.", "context": "CREATE TABLE assignedto (project VARCHAR); CREATE TABLE projects (name VARCHAR, code VARCHAR, hours INTEGER)"}, {"answer": "SELECT COUNT(*), T1.name FROM scientists AS T1 JOIN assignedto AS T2 ON T1.ssn = T2.scientist GROUP BY T1.name", "question": "Find the number of projects which each scientist is working on and scientist's name.", "context": "CREATE TABLE scientists (name VARCHAR, ssn VARCHAR); CREATE TABLE assignedto (scientist VARCHAR)"}, {"answer": "SELECT T3.ssn, T3.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T2.hours = (SELECT MAX(hours) FROM projects)", "question": "Find the SSN and name of scientists who are assigned to the project with the longest hours.", "context": "CREATE TABLE scientists (ssn VARCHAR, name VARCHAR, SSN VARCHAR); CREATE TABLE projects (code VARCHAR, hours INTEGER); CREATE TABLE assignedto (project VARCHAR, scientist VARCHAR); CREATE TABLE projects (hours INTEGER)"}, {"answer": "SELECT T2.name FROM assignedto AS T1 JOIN scientists AS T2 ON T1.scientist = T2.ssn", "question": "Find the name of scientists who are assigned to some project.", "context": "CREATE TABLE assignedto (scientist VARCHAR); CREATE TABLE scientists (name VARCHAR, ssn VARCHAR)"}, {"answer": "SELECT Name FROM Projects WHERE NOT Code IN (SELECT Project FROM AssignedTo)", "question": "Select the project names which are not assigned yet.", "context": "CREATE TABLE Projects (Name VARCHAR, Code VARCHAR, Project VARCHAR); CREATE TABLE AssignedTo (Name VARCHAR, Code VARCHAR, Project VARCHAR)"}, {"answer": "SELECT Name FROM scientists WHERE NOT ssn IN (SELECT scientist FROM AssignedTo)", "question": "Find the name of scientists who are not assigned to any project.", "context": "CREATE TABLE scientists (Name VARCHAR, ssn VARCHAR, scientist VARCHAR); CREATE TABLE AssignedTo (Name VARCHAR, ssn VARCHAR, scientist VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM scientists WHERE NOT ssn IN (SELECT scientist FROM AssignedTo)", "question": "Find the number of scientists who are not assigned to any project.", "context": "CREATE TABLE AssignedTo (ssn VARCHAR, scientist VARCHAR); CREATE TABLE scientists (ssn VARCHAR, scientist VARCHAR)"}, {"answer": "SELECT name FROM scientists EXCEPT SELECT T3.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T2.hours = (SELECT MAX(hours) FROM projects)", "question": "Find the names of scientists who are not working on the project with the highest hours.", "context": "CREATE TABLE scientists (name VARCHAR, SSN VARCHAR); CREATE TABLE assignedto (project VARCHAR, scientist VARCHAR); CREATE TABLE projects (code VARCHAR, hours INTEGER); CREATE TABLE scientists (name VARCHAR, hours INTEGER); CREATE TABLE projects (name VARCHAR, hours INTEGER)"}, {"answer": "SELECT T1.Name, T3.Name, T3.Hours FROM Scientists AS T1 JOIN AssignedTo AS T2 ON T1.SSN = T2.Scientist JOIN Projects AS T3 ON T2.Project = T3.Code ORDER BY T3.Name, T1.Name", "question": "List all the scientists' names, their projects' names, and the hours worked by that scientist on each project, in alphabetical order of project name, and then scientist name.", "context": "CREATE TABLE AssignedTo (Scientist VARCHAR, Project VARCHAR); CREATE TABLE Projects (Name VARCHAR, Hours VARCHAR, Code VARCHAR); CREATE TABLE Scientists (Name VARCHAR, SSN VARCHAR)"}, {"answer": "SELECT T2.name, T3.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T2.hours = (SELECT MIN(hours) FROM projects)", "question": "Find name of the project that needs the least amount of time to finish and the name of scientists who worked on it.", "context": "CREATE TABLE scientists (name VARCHAR, SSN VARCHAR); CREATE TABLE assignedto (project VARCHAR, scientist VARCHAR); CREATE TABLE projects (name VARCHAR, code VARCHAR, hours INTEGER); CREATE TABLE projects (hours INTEGER)"}, {"answer": "SELECT Name FROM WINE ORDER BY Score LIMIT 1", "question": "What is the name of the highest rated wine?", "context": "CREATE TABLE WINE (Name VARCHAR, Score VARCHAR)"}, {"answer": "SELECT Winery FROM WINE ORDER BY SCORE LIMIT 1", "question": "Which winery is the wine that has the highest score from?", "context": "CREATE TABLE WINE (Winery VARCHAR, SCORE VARCHAR)"}, {"answer": "SELECT Name FROM WINE WHERE YEAR = \"2008\"", "question": "Find the names of all wines produced in 2008.", "context": "CREATE TABLE WINE (Name VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT Grape, Appelation FROM WINE", "question": "List the grapes and appelations of all wines.", "context": "CREATE TABLE WINE (Grape VARCHAR, Appelation VARCHAR)"}, {"answer": "SELECT Name, Score FROM WINE", "question": "List the names and scores of all wines.", "context": "CREATE TABLE WINE (Name VARCHAR, Score VARCHAR)"}, {"answer": "SELECT Area, County FROM APPELLATIONS", "question": "List the area and county of all appelations.", "context": "CREATE TABLE APPELLATIONS (Area VARCHAR, County VARCHAR)"}, {"answer": "SELECT Price FROM WINE WHERE YEAR < 2010", "question": "What are the prices of wines produced before the year of 2010?", "context": "CREATE TABLE WINE (Price VARCHAR, YEAR INTEGER)"}, {"answer": "SELECT Name FROM WINE WHERE score > 90", "question": "List the names of all distinct wines that have scores higher than 90.", "context": "CREATE TABLE WINE (Name VARCHAR, score INTEGER)"}, {"answer": "SELECT DISTINCT T2.Name FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = \"Red\"", "question": "List the names of all distinct wines that are made of red color grape.", "context": "CREATE TABLE GRAPES (Grape VARCHAR, Color VARCHAR); CREATE TABLE WINE (Name VARCHAR, Grape VARCHAR)"}, {"answer": "SELECT DISTINCT T2.Name FROM APPELLATIONs AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.Area = \"North Coast\"", "question": "Find the names of all distinct wines that have appellations in North Coast area.", "context": "CREATE TABLE APPELLATIONs (Appelation VARCHAR, Area VARCHAR); CREATE TABLE WINE (Name VARCHAR, Appelation VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM WINE WHERE Winery = \"Robert Biale\"", "question": "How many wines are produced at Robert Biale winery?", "context": "CREATE TABLE WINE (Winery VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM APPELLATIONS WHERE County = \"Napa\"", "question": "How many appelations are in Napa Country?", "context": "CREATE TABLE APPELLATIONS (County VARCHAR)"}, {"answer": "SELECT AVG(T2.Price) FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = \"Sonoma\"", "question": "Give me the average prices of wines that are produced by appelations in Sonoma County.", "context": "CREATE TABLE WINE (Price INTEGER, Appelation VARCHAR); CREATE TABLE APPELLATIONS (Appelation VARCHAR, County VARCHAR)"}, {"answer": "SELECT T2.Name, T2.Score FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = \"White\"", "question": "What are the names and scores of wines that are made of white color grapes?", "context": "CREATE TABLE GRAPES (Grape VARCHAR, Color VARCHAR); CREATE TABLE WINE (Name VARCHAR, Score VARCHAR, Grape VARCHAR)"}, {"answer": "SELECT MAX(T2.Price) FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.Area = \"Central Coast\" AND T2.year < 2005", "question": "Find the maximum price of wins from the appelations in Central Coast area and produced before the year of 2005.", "context": "CREATE TABLE APPELLATIONS (Appelation VARCHAR, Area VARCHAR); CREATE TABLE WINE (Price INTEGER, Appelation VARCHAR, year VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Grape FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = \"White\" AND T2.score > 90", "question": "Find the the grape whose white color grapes are used to produce wines with scores higher than 90.", "context": "CREATE TABLE GRAPES (Grape VARCHAR, Color VARCHAR); CREATE TABLE WINE (Grape VARCHAR, score VARCHAR)"}, {"answer": "SELECT T2.Name FROM Grapes AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = \"Red\" AND T2.price > 50", "question": "What are the wines that have prices higher than 50 and made of Red color grapes?", "context": "CREATE TABLE WINE (Name VARCHAR, Grape VARCHAR, price VARCHAR); CREATE TABLE Grapes (Grape VARCHAR, Color VARCHAR)"}, {"answer": "SELECT T2.Name FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = \"Monterey\" AND T2.price < 50", "question": "What are the wines that have prices lower than 50 and have appelations in Monterey county?", "context": "CREATE TABLE APPELLATIONS (Appelation VARCHAR, County VARCHAR); CREATE TABLE WINE (Name VARCHAR, Appelation VARCHAR, price VARCHAR)"}, {"answer": "SELECT COUNT(*), Grape FROM WINE GROUP BY Grape", "question": "What are the numbers of wines for different grapes?", "context": "CREATE TABLE WINE (Grape VARCHAR)"}, {"answer": "SELECT AVG(Price), YEAR FROM WINE GROUP BY YEAR", "question": "What are the average prices of wines for different years?", "context": "CREATE TABLE WINE (YEAR VARCHAR, Price INTEGER)"}, {"answer": "SELECT DISTINCT Name FROM WINE WHERE Price > (SELECT MIN(Price) FROM wine WHERE Winery = \"John Anthony\")", "question": "Find the distinct names of all wines that have prices higher than some wines from John Anthony winery.", "context": "CREATE TABLE wine (Name VARCHAR, Price INTEGER, Winery VARCHAR); CREATE TABLE WINE (Name VARCHAR, Price INTEGER, Winery VARCHAR)"}, {"answer": "SELECT DISTINCT Name FROM WINE ORDER BY Name", "question": "List the names of all distinct wines in alphabetical order.", "context": "CREATE TABLE WINE (Name VARCHAR)"}, {"answer": "SELECT DISTINCT Name FROM WINE ORDER BY price", "question": "List the names of all distinct wines ordered by price.", "context": "CREATE TABLE WINE (Name VARCHAR, price VARCHAR)"}, {"answer": "SELECT T1.Area FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation GROUP BY T2.Appelation HAVING T2.year < 2010 ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the area of the appelation that produces the highest number of wines before the year of 2010?", "context": "CREATE TABLE WINE (Appelation VARCHAR, year VARCHAR); CREATE TABLE APPELLATIONS (Area VARCHAR, Appelation VARCHAR)"}, {"answer": "SELECT T1.Color FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape GROUP BY T2.Grape ORDER BY AVG(Price) DESC LIMIT 1", "question": "What is the color of the grape whose wine products has the highest average price?", "context": "CREATE TABLE GRAPES (Color VARCHAR, Grape VARCHAR); CREATE TABLE WINE (Grape VARCHAR)"}, {"answer": "SELECT DISTINCT Name FROM WINE WHERE YEAR < 2000 OR YEAR > 2010", "question": "Find the distinct names of wines produced before the year of 2000 or after the year of 2010.", "context": "CREATE TABLE WINE (Name VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT DISTINCT Winery FROM WINE WHERE Price BETWEEN 50 AND 100", "question": "Find the distinct winery of wines having price between 50 and 100.", "context": "CREATE TABLE WINE (Winery VARCHAR, Price INTEGER)"}, {"answer": "SELECT AVG(Price), AVG(Cases) FROM WINE WHERE YEAR = 2009 AND Grape = \"Zinfandel\"", "question": "What are the average prices and cases of wines produced in the year of 2009 and made of Zinfandel grape?", "context": "CREATE TABLE WINE (Price INTEGER, Cases INTEGER, YEAR VARCHAR, Grape VARCHAR)"}, {"answer": "SELECT MAX(Price), MAX(Score) FROM WINE WHERE Appelation = \"St. Helena\"", "question": "What are the maximum price and score of wines produced by St. Helena appelation?", "context": "CREATE TABLE WINE (Price INTEGER, Score INTEGER, Appelation VARCHAR)"}, {"answer": "SELECT MAX(Price), MAX(Score), YEAR FROM WINE GROUP BY YEAR", "question": "What are the maximum price and score of wines in each year?", "context": "CREATE TABLE WINE (YEAR VARCHAR, Price INTEGER, Score INTEGER)"}, {"answer": "SELECT AVG(Price), AVG(Score), Appelation FROM WINE GROUP BY Appelation", "question": "What are the average price and score of wines grouped by appelation?", "context": "CREATE TABLE WINE (Appelation VARCHAR, Price INTEGER, Score INTEGER)"}, {"answer": "SELECT Winery FROM WINE GROUP BY Winery HAVING COUNT(*) >= 4", "question": "Find the wineries that have at least four wines.", "context": "CREATE TABLE WINE (Winery VARCHAR)"}, {"answer": "SELECT T1.County FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation GROUP BY T2.Appelation HAVING COUNT(*) <= 3", "question": "Find the country of all appelations who have at most three wines.", "context": "CREATE TABLE APPELLATIONS (County VARCHAR, Appelation VARCHAR); CREATE TABLE WINE (Appelation VARCHAR)"}, {"answer": "SELECT Name FROM WINE WHERE YEAR < (SELECT MIN(YEAR) FROM WINE WHERE Winery = \"Brander\")", "question": "What are the names of wines whose production year are before the year of all wines by Brander winery?", "context": "CREATE TABLE WINE (Name VARCHAR, YEAR INTEGER, Winery VARCHAR)"}, {"answer": "SELECT Name FROM WINE WHERE Price > (SELECT MAX(Price) FROM WINE WHERE YEAR = 2006)", "question": "What are the names of wines that are more expensive then all wines made in the year 2006?", "context": "CREATE TABLE WINE (Name VARCHAR, Price INTEGER, YEAR VARCHAR)"}, {"answer": "SELECT T2.Winery FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.GRAPE = T2.GRAPE WHERE T1.Color = \"White\" GROUP BY T2.Winery ORDER BY COUNT(*) DESC LIMIT 3", "question": "Find the top 3 wineries with the greatest number of wines made of white color grapes.", "context": "CREATE TABLE GRAPES (GRAPE VARCHAR, Color VARCHAR); CREATE TABLE WINE (Winery VARCHAR, GRAPE VARCHAR)"}, {"answer": "SELECT Grape, Winery, YEAR FROM WINE WHERE Price > 100 ORDER BY YEAR", "question": "List the grape, winery and year of the wines whose price is bigger than 100 ordered by year.", "context": "CREATE TABLE WINE (Grape VARCHAR, Winery VARCHAR, YEAR VARCHAR, Price INTEGER)"}, {"answer": "SELECT Grape, Appelation, Name FROM WINE WHERE Score > 93 ORDER BY Name", "question": "List the grape, appelation and name of wines whose score is higher than 93 ordered by Name.", "context": "CREATE TABLE WINE (Grape VARCHAR, Appelation VARCHAR, Name VARCHAR, Score INTEGER)"}, {"answer": "SELECT Appelation FROM WINE WHERE YEAR > 2008 EXCEPT SELECT Appelation FROM APPELLATIONS WHERE Area = \"Central Coast\"", "question": "Find the appelations that produce wines after the year of 2008 but not in Central Coast area.", "context": "CREATE TABLE WINE (Appelation VARCHAR, YEAR INTEGER, Area VARCHAR); CREATE TABLE APPELLATIONS (Appelation VARCHAR, YEAR INTEGER, Area VARCHAR)"}, {"answer": "SELECT AVG(price) FROM wine WHERE NOT Appelation IN (SELECT T1.Appelation FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = 'Sonoma')", "question": "Find the average price of wines that are not produced from Sonoma county.", "context": "CREATE TABLE wine (price INTEGER, Appelation VARCHAR); CREATE TABLE APPELLATIONS (Appelation VARCHAR, County VARCHAR); CREATE TABLE WINE (Appelation VARCHAR)"}, {"answer": "SELECT T1.County FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T2.Score > 90 GROUP BY T1.County ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the county where produces the most number of wines with score higher than 90.", "context": "CREATE TABLE WINE (Appelation VARCHAR, Score INTEGER); CREATE TABLE APPELLATIONS (County VARCHAR, Appelation VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM station", "question": "How many train stations are there?", "context": "CREATE TABLE station (Id VARCHAR)"}, {"answer": "SELECT name, LOCATION, number_of_platforms FROM station", "question": "Show the name, location, and number of platforms for all stations.", "context": "CREATE TABLE station (name VARCHAR, LOCATION VARCHAR, number_of_platforms VARCHAR)"}, {"answer": "SELECT DISTINCT LOCATION FROM station", "question": "What are all locations of train stations?", "context": "CREATE TABLE station (LOCATION VARCHAR)"}, {"answer": "SELECT name, total_passengers FROM station WHERE LOCATION <> 'London'", "question": "Show the names and total passengers for all train stations not in London.", "context": "CREATE TABLE station (name VARCHAR, total_passengers VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT name, main_services FROM station ORDER BY total_passengers DESC LIMIT 3", "question": "Show the names and main services for train stations that have the top three total number of passengers.", "context": "CREATE TABLE station (name VARCHAR, main_services VARCHAR, total_passengers VARCHAR)"}, {"answer": "SELECT AVG(total_passengers), MAX(total_passengers) FROM station WHERE LOCATION = 'London' OR LOCATION = 'Glasgow'", "question": "What is the average and maximum number of total passengers for train stations in London or Glasgow?", "context": "CREATE TABLE station (total_passengers INTEGER, LOCATION VARCHAR)"}, {"answer": "SELECT LOCATION, SUM(number_of_platforms), SUM(total_passengers) FROM station GROUP BY LOCATION", "question": "Show all locations and the total number of platforms and passengers for all train stations in each location.", "context": "CREATE TABLE station (LOCATION VARCHAR, number_of_platforms INTEGER, total_passengers INTEGER)"}, {"answer": "SELECT DISTINCT LOCATION FROM station WHERE number_of_platforms >= 15 AND total_passengers > 25", "question": "Show all locations that have train stations with at least 15 platforms and train stations with more than 25 total passengers.", "context": "CREATE TABLE station (LOCATION VARCHAR, number_of_platforms VARCHAR, total_passengers VARCHAR)"}, {"answer": "SELECT LOCATION FROM station EXCEPT SELECT LOCATION FROM station WHERE number_of_platforms >= 15", "question": "Show all locations which don't have a train station with at least 15 platforms.", "context": "CREATE TABLE station (LOCATION VARCHAR, number_of_platforms VARCHAR)"}, {"answer": "SELECT LOCATION FROM station GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the location with most number of train stations.", "context": "CREATE TABLE station (LOCATION VARCHAR)"}, {"answer": "SELECT name, TIME, service FROM train", "question": "Show the name, time, and service for all trains.", "context": "CREATE TABLE train (name VARCHAR, TIME VARCHAR, service VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM train", "question": "Show the number of trains", "context": "CREATE TABLE train (Id VARCHAR)"}, {"answer": "SELECT name, service FROM train ORDER BY TIME", "question": "Show the name and service for all trains in order by time.", "context": "CREATE TABLE train (name VARCHAR, service VARCHAR, TIME VARCHAR)"}, {"answer": "SELECT T2.name, COUNT(*) FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id GROUP BY T1.station_id", "question": "Show the station name and number of trains in each station.", "context": "CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR)"}, {"answer": "SELECT T2.name, T3.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id", "question": "show the train name and station name for each train.", "context": "CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train (name VARCHAR, train_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR, train_id VARCHAR)"}, {"answer": "SELECT T3.name, T3.time FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T2.location = 'London' ORDER BY T3.time DESC", "question": "Show all train names and times in stations in London in descending order by train time.", "context": "CREATE TABLE train_station (station_id VARCHAR, train_id VARCHAR); CREATE TABLE station (station_id VARCHAR, location VARCHAR); CREATE TABLE train (name VARCHAR, time VARCHAR, train_id VARCHAR)"}, {"answer": "SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id GROUP BY T1.station_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the station name with greatest number of trains.", "context": "CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR)"}, {"answer": "SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id GROUP BY T1.station_id HAVING COUNT(*) >= 2", "question": "Show the station name with at least two trains.", "context": "CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR)"}, {"answer": "SELECT LOCATION FROM station GROUP BY LOCATION HAVING COUNT(*) = 1", "question": "Show all locations with only 1 station.", "context": "CREATE TABLE station (LOCATION VARCHAR)"}, {"answer": "SELECT name FROM station WHERE NOT station_id IN (SELECT station_id FROM train_station)", "question": "Show station names without any trains.", "context": "CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (name VARCHAR, station_id VARCHAR)"}, {"answer": "SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T3.Name = \"Ananthapuri Express\" INTERSECT SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T3.Name = \"Guruvayur Express\"", "question": "What are the names of the stations which serve both \"Ananthapuri Express\" and \"Guruvayur Express\" trains?", "context": "CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train (train_id VARCHAR, Name VARCHAR); CREATE TABLE train_station (station_id VARCHAR, train_id VARCHAR)"}, {"answer": "SELECT T2.name FROM train_station AS T1 JOIN train AS T2 ON T1.train_id = T2.train_id WHERE NOT T1.station_id IN (SELECT T4.station_id FROM train_station AS T3 JOIN station AS T4 ON T3.station_id = T4.station_id WHERE t4.location = \"London\")", "question": "Find the names of the trains that do not pass any station located in London.", "context": "CREATE TABLE station (station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR); CREATE TABLE train_station (train_id VARCHAR, station_id VARCHAR); CREATE TABLE train (name VARCHAR, train_id VARCHAR)"}, {"answer": "SELECT name, LOCATION FROM station ORDER BY Annual_entry_exit, Annual_interchanges", "question": "List the names and locations of all stations ordered by their yearly entry exit and interchange amounts.", "context": "CREATE TABLE station (name VARCHAR, LOCATION VARCHAR, Annual_entry_exit VARCHAR, Annual_interchanges VARCHAR)"}, {"answer": "SELECT vehicle_id FROM Vehicles", "question": "List all vehicle id", "context": "CREATE TABLE Vehicles (vehicle_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Vehicles", "question": "How many vehicle in total?", "context": "CREATE TABLE Vehicles (Id VARCHAR)"}, {"answer": "SELECT vehicle_details FROM Vehicles WHERE vehicle_id = 1", "question": "Show the detail of vehicle with id 1.", "context": "CREATE TABLE Vehicles (vehicle_details VARCHAR, vehicle_id VARCHAR)"}, {"answer": "SELECT first_name, middle_name, last_name FROM Staff", "question": "List the first name middle name and last name of all staff.", "context": "CREATE TABLE Staff (first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT date_of_birth FROM Staff WHERE first_name = \"Janessa\" AND last_name = \"Sawayn\"", "question": "What is the birthday of the staff member with first name as Janessa and last name as Sawayn?", "context": "CREATE TABLE Staff (date_of_birth VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT date_joined_staff FROM Staff WHERE first_name = \"Janessa\" AND last_name = \"Sawayn\"", "question": "When did the staff member with first name as Janessa and last name as Sawayn join the company?", "context": "CREATE TABLE Staff (date_joined_staff VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT date_left_staff FROM Staff WHERE first_name = \"Janessa\" AND last_name = \"Sawayn\"", "question": "When did the staff member with first name as Janessa and last name as Sawayn leave the company?", "context": "CREATE TABLE Staff (date_left_staff VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Staff WHERE first_name = \"Ludie\"", "question": "How many staff have the first name Ludie?", "context": "CREATE TABLE Staff (first_name VARCHAR)"}, {"answer": "SELECT nickname FROM Staff WHERE first_name = \"Janessa\" AND last_name = \"Sawayn\"", "question": "What is the nickname of staff with first name as Janessa and last name as Sawayn?", "context": "CREATE TABLE Staff (nickname VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Staff", "question": "How many staff in total?", "context": "CREATE TABLE Staff (Id VARCHAR)"}, {"answer": "SELECT T1.city FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T2.first_name = \"Janessa\" AND T2.last_name = \"Sawayn\"", "question": "Which city does staff with first name as Janessa and last name as Sawayn live?", "context": "CREATE TABLE Staff (staff_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE Addresses (city VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT T1.country, T1.state_province_county FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T2.first_name = \"Janessa\" AND T2.last_name = \"Sawayn\"", "question": "Which country and state does staff with first name as Janessa and last name as Sawayn lived?", "context": "CREATE TABLE Addresses (country VARCHAR, state_province_county VARCHAR, address_id VARCHAR); CREATE TABLE Staff (staff_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT SUM(T1.lesson_time) FROM Lessons AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = \"Rylan\" AND T2.last_name = \"Goodwin\"", "question": "How long is the total lesson time took by customer with first name as Rylan and last name as Goodwin?", "context": "CREATE TABLE Lessons (lesson_time INTEGER, customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT T1.zip_postcode FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T2.first_name = \"Janessa\" AND T2.last_name = \"Sawayn\"", "question": "What is the zip code of staff with first name as Janessa and last name as Sawayn lived?", "context": "CREATE TABLE Addresses (zip_postcode VARCHAR, address_id VARCHAR); CREATE TABLE Staff (staff_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Addresses WHERE state_province_county = \"Georgia\"", "question": "How many staff live in state Georgia?", "context": "CREATE TABLE Addresses (state_province_county VARCHAR)"}, {"answer": "SELECT T2.first_name, T2.last_name FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T1.city = \"Damianfort\"", "question": "Find out the first name and last name of staff lived in city Damianfort.", "context": "CREATE TABLE Staff (first_name VARCHAR, last_name VARCHAR, staff_address_id VARCHAR); CREATE TABLE Addresses (address_id VARCHAR, city VARCHAR)"}, {"answer": "SELECT T1.city, COUNT(*) FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id GROUP BY T1.city ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which city lives most of staffs? List the city name and number of staffs.", "context": "CREATE TABLE Staff (staff_address_id VARCHAR); CREATE TABLE Addresses (city VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT T1.state_province_county FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id GROUP BY T1.state_province_county HAVING COUNT(*) BETWEEN 2 AND 4", "question": "List the states which have between 2 to 4 staffs living there.", "context": "CREATE TABLE Addresses (state_province_county VARCHAR, address_id VARCHAR); CREATE TABLE Staff (staff_address_id VARCHAR)"}, {"answer": "SELECT first_name, last_name FROM Customers", "question": "List the first name and last name of all customers.", "context": "CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT email_address, date_of_birth FROM Customers WHERE first_name = \"Carole\"", "question": "List email address and birthday of customer whose first name as Carole.", "context": "CREATE TABLE Customers (email_address VARCHAR, date_of_birth VARCHAR, first_name VARCHAR)"}, {"answer": "SELECT phone_number, email_address FROM Customers WHERE amount_outstanding > 2000", "question": "List phone number and email address of customer with more than 2000 outstanding balance.", "context": "CREATE TABLE Customers (phone_number VARCHAR, email_address VARCHAR, amount_outstanding INTEGER)"}, {"answer": "SELECT customer_status_code, cell_mobile_phone_number, email_address FROM Customers WHERE first_name = \"Marina\" OR last_name = \"Kohler\"", "question": "What is the status code, mobile phone number and email address of customer with last name as Kohler or first name as Marina?", "context": "CREATE TABLE Customers (customer_status_code VARCHAR, cell_mobile_phone_number VARCHAR, email_address VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT date_of_birth FROM Customers WHERE customer_status_code = 'Good Customer'", "question": "When are the birthdays of customer who are classified as 'Good Customer' status?", "context": "CREATE TABLE Customers (date_of_birth VARCHAR, customer_status_code VARCHAR)"}, {"answer": "SELECT date_became_customer FROM Customers WHERE first_name = \"Carole\" AND last_name = \"Bernhard\"", "question": "When did customer with first name as Carole and last name as Bernhard became a customer?", "context": "CREATE TABLE Customers (date_became_customer VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT customer_status_code, COUNT(*) FROM Customers GROUP BY customer_status_code", "question": "List all customer status codes and the number of customers having each status code.", "context": "CREATE TABLE Customers (customer_status_code VARCHAR)"}, {"answer": "SELECT customer_status_code FROM Customers GROUP BY customer_status_code ORDER BY COUNT(*) LIMIT 1", "question": "Which customer status code has least number of customers?", "context": "CREATE TABLE Customers (customer_status_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Lessons AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = \"Rylan\" AND T2.last_name = \"Goodwin\" AND T1.lesson_status_code = \"Completed\"", "question": "How many lessons taken by customer with first name as Rylan and last name as Goodwin were completed?", "context": "CREATE TABLE Lessons (customer_id VARCHAR, lesson_status_code VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT MAX(amount_outstanding), MIN(amount_outstanding), AVG(amount_outstanding) FROM Customers", "question": "What is maximum, minimum and average amount of outstanding of customer?", "context": "CREATE TABLE Customers (amount_outstanding INTEGER)"}, {"answer": "SELECT first_name, last_name FROM Customers WHERE amount_outstanding BETWEEN 1000 AND 3000", "question": "List the first name and last name of customers have the amount of outstanding between 1000 and 3000.", "context": "CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR, amount_outstanding INTEGER)"}, {"answer": "SELECT T1.first_name, T1.last_name FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id WHERE T2.city = \"Lockmanfurt\"", "question": "List first name and last name of customers lived in city Lockmanfurt.", "context": "CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR, customer_address_id VARCHAR); CREATE TABLE Addresses (address_id VARCHAR, city VARCHAR)"}, {"answer": "SELECT T2.country FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id WHERE T1.first_name = \"Carole\" AND T1.last_name = \"Bernhard\"", "question": "Which country does customer with first name as Carole and last name as Bernhard lived in?", "context": "CREATE TABLE Addresses (country VARCHAR, address_id VARCHAR); CREATE TABLE Customers (customer_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT T2.zip_postcode FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id WHERE T1.first_name = \"Carole\" AND T1.last_name = \"Bernhard\"", "question": "What is zip code of customer with first name as Carole and last name as Bernhard?", "context": "CREATE TABLE Addresses (zip_postcode VARCHAR, address_id VARCHAR); CREATE TABLE Customers (customer_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT T2.city FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id GROUP BY T2.city ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which city does has most number of customers?", "context": "CREATE TABLE Customers (customer_address_id VARCHAR); CREATE TABLE Addresses (city VARCHAR, address_id VARCHAR)"}, {"answer": "SELECT SUM(T1.amount_payment) FROM Customer_Payments AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = \"Carole\" AND T2.last_name = \"Bernhard\"", "question": "How much in total does customer with first name as Carole and last name as Bernhard paid?", "context": "CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE Customer_Payments (amount_payment INTEGER, customer_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Customers WHERE NOT customer_id IN (SELECT customer_id FROM Customer_Payments)", "question": "List the number of customers that did not have any payment history.", "context": "CREATE TABLE Customers (customer_id VARCHAR); CREATE TABLE Customer_Payments (customer_id VARCHAR)"}, {"answer": "SELECT T2.first_name, T2.last_name FROM Customer_Payments AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) > 2", "question": "List first name and last name of customers that have more than 2 payments.", "context": "CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR, customer_id VARCHAR); CREATE TABLE Customer_Payments (customer_id VARCHAR)"}, {"answer": "SELECT payment_method_code, COUNT(*) FROM Customer_Payments GROUP BY payment_method_code", "question": "List all payment methods and number of payments using each payment methods.", "context": "CREATE TABLE Customer_Payments (payment_method_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Lessons WHERE lesson_status_code = \"Cancelled\"", "question": "How many lessons were in cancelled state?", "context": "CREATE TABLE Lessons (lesson_status_code VARCHAR)"}, {"answer": "SELECT T1.lesson_id FROM Lessons AS T1 JOIN Staff AS T2 ON T1.staff_id = T2.staff_id WHERE T2.first_name = \"Janessa\" AND T2.last_name = \"Sawayn\" AND nickname LIKE \"%s%\"", "question": "List lesson id of all lessons taught by staff with first name as Janessa, last name as Sawayn and nickname containing letter 's'.", "context": "CREATE TABLE Lessons (lesson_id VARCHAR, staff_id VARCHAR); CREATE TABLE Staff (staff_id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Lessons AS T1 JOIN Staff AS T2 ON T1.staff_id = T2.staff_id WHERE T2.first_name LIKE \"%a%\"", "question": "How many lessons taught by staff whose first name has letter 'a' in it?", "context": "CREATE TABLE Lessons (staff_id VARCHAR); CREATE TABLE Staff (staff_id VARCHAR, first_name VARCHAR)"}, {"answer": "SELECT SUM(lesson_time) FROM Lessons AS T1 JOIN Staff AS T2 ON T1.staff_id = T2.staff_id WHERE T2.first_name = \"Janessa\" AND T2.last_name = \"Sawayn\"", "question": "How long is the total lesson time taught by staff with first name as Janessa and last name as Sawayn?", "context": "CREATE TABLE Lessons (staff_id VARCHAR); CREATE TABLE Staff (staff_id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT AVG(price) FROM Lessons AS T1 JOIN Staff AS T2 ON T1.staff_id = T2.staff_id WHERE T2.first_name = \"Janessa\" AND T2.last_name = \"Sawayn\"", "question": "What is average lesson price taught by staff with first name as Janessa and last name as Sawayn?", "context": "CREATE TABLE Lessons (staff_id VARCHAR); CREATE TABLE Staff (staff_id VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Lessons AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = \"Ray\"", "question": "How many lesson does customer with first name Ray took?", "context": "CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR); CREATE TABLE Lessons (customer_id VARCHAR)"}, {"answer": "SELECT last_name FROM Customers INTERSECT SELECT last_name FROM Staff", "question": "Which last names are both used by customers and by staff?", "context": "CREATE TABLE Customers (last_name VARCHAR); CREATE TABLE Staff (last_name VARCHAR)"}, {"answer": "SELECT first_name FROM Staff EXCEPT SELECT T2.first_name FROM Lessons AS T1 JOIN Staff AS T2 ON T1.staff_id = T2.staff_id", "question": "What is the first name of the staff who did not give any lesson?", "context": "CREATE TABLE Lessons (staff_id VARCHAR); CREATE TABLE Staff (first_name VARCHAR); CREATE TABLE Staff (first_name VARCHAR, staff_id VARCHAR)"}, {"answer": "SELECT T1.vehicle_id, T1.vehicle_details FROM Vehicles AS T1 JOIN Lessons AS T2 ON T1.vehicle_id = T2.vehicle_id GROUP BY T1.vehicle_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the id and detail of the vehicle used in lessons for most of the times?", "context": "CREATE TABLE Lessons (vehicle_id VARCHAR); CREATE TABLE Vehicles (vehicle_id VARCHAR, vehicle_details VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Faculty", "question": "How many faculty do we have?", "context": "CREATE TABLE Faculty (Id VARCHAR)"}, {"answer": "SELECT DISTINCT rank FROM Faculty", "question": "What ranks do we have for faculty?", "context": "CREATE TABLE Faculty (rank VARCHAR)"}, {"answer": "SELECT DISTINCT building FROM Faculty", "question": "Show all the distinct buildings that have faculty rooms.", "context": "CREATE TABLE Faculty (building VARCHAR)"}, {"answer": "SELECT rank, Fname, Lname FROM Faculty", "question": "Show the rank, first name, and last name for all the faculty.", "context": "CREATE TABLE Faculty (rank VARCHAR, Fname VARCHAR, Lname VARCHAR)"}, {"answer": "SELECT Fname, Lname, phone FROM Faculty WHERE Sex = 'F'", "question": "Show the first name, last name, and phone number for all female faculty members.", "context": "CREATE TABLE Faculty (Fname VARCHAR, Lname VARCHAR, phone VARCHAR, Sex VARCHAR)"}, {"answer": "SELECT FacID FROM Faculty WHERE Sex = 'M'", "question": "Show ids for all the male faculty.", "context": "CREATE TABLE Faculty (FacID VARCHAR, Sex VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Faculty WHERE Sex = 'F' AND Rank = \"Professor\"", "question": "How many female Professors do we have?", "context": "CREATE TABLE Faculty (Sex VARCHAR, Rank VARCHAR)"}, {"answer": "SELECT phone, room, building FROM Faculty WHERE Fname = \"Jerry\" AND Lname = \"Prince\"", "question": "Show the phone, room, and building for the faculty named Jerry Prince.", "context": "CREATE TABLE Faculty (phone VARCHAR, room VARCHAR, building VARCHAR, Fname VARCHAR, Lname VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Faculty WHERE Rank = \"Professor\" AND building = \"NEB\"", "question": "How many Professors are in building NEB?", "context": "CREATE TABLE Faculty (Rank VARCHAR, building VARCHAR)"}, {"answer": "SELECT fname, lname FROM Faculty WHERE Rank = \"Instructor\"", "question": "Show the first name and last name for all the instructors.", "context": "CREATE TABLE Faculty (fname VARCHAR, lname VARCHAR, Rank VARCHAR)"}, {"answer": "SELECT building, COUNT(*) FROM Faculty GROUP BY building", "question": "Show all the buildings along with the number of faculty members the buildings have.", "context": "CREATE TABLE Faculty (building VARCHAR)"}, {"answer": "SELECT building FROM Faculty GROUP BY building ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which building has most faculty members?", "context": "CREATE TABLE Faculty (building VARCHAR)"}, {"answer": "SELECT building FROM Faculty WHERE rank = \"Professor\" GROUP BY building HAVING COUNT(*) >= 10", "question": "Show all the buildings that have at least 10 professors.", "context": "CREATE TABLE Faculty (building VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank, COUNT(*) FROM Faculty GROUP BY rank", "question": "For each faculty rank, show the number of faculty members who have it.", "context": "CREATE TABLE Faculty (rank VARCHAR)"}, {"answer": "SELECT rank, sex, COUNT(*) FROM Faculty GROUP BY rank, sex", "question": "Show all the ranks and the number of male and female faculty for each rank.", "context": "CREATE TABLE Faculty (rank VARCHAR, sex VARCHAR)"}, {"answer": "SELECT rank FROM Faculty GROUP BY rank ORDER BY COUNT(*) LIMIT 1", "question": "Which rank has the smallest number of faculty members?", "context": "CREATE TABLE Faculty (rank VARCHAR)"}, {"answer": "SELECT sex, COUNT(*) FROM Faculty WHERE rank = \"AsstProf\" GROUP BY sex", "question": "Show the number of male and female assistant professors.", "context": "CREATE TABLE Faculty (sex VARCHAR, rank VARCHAR)"}, {"answer": "SELECT T1.fname, T1.lname FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.advisor WHERE T2.fname = \"Linda\" AND T2.lname = \"Smith\"", "question": "What are the first name and last name of Linda Smith's advisor?", "context": "CREATE TABLE Student (advisor VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE Faculty (fname VARCHAR, lname VARCHAR, FacID VARCHAR)"}, {"answer": "SELECT T2.StuID FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.advisor WHERE T1.rank = \"Professor\"", "question": "Show the ids of students whose advisors are professors.", "context": "CREATE TABLE Student (StuID VARCHAR, advisor VARCHAR); CREATE TABLE Faculty (FacID VARCHAR, rank VARCHAR)"}, {"answer": "SELECT T2.fname, T2.lname FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.advisor WHERE T1.fname = \"Michael\" AND T1.lname = \"Goodrich\"", "question": "Show first name and last name for all the students advised by Michael Goodrich.", "context": "CREATE TABLE Faculty (FacID VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE Student (fname VARCHAR, lname VARCHAR, advisor VARCHAR)"}, {"answer": "SELECT T1.FacID, COUNT(*) FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.advisor GROUP BY T1.FacID", "question": "Show the faculty id of each faculty member, along with the number of students he or she advises.", "context": "CREATE TABLE Faculty (FacID VARCHAR); CREATE TABLE Student (advisor VARCHAR)"}, {"answer": "SELECT T1.rank, COUNT(*) FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.advisor GROUP BY T1.rank", "question": "Show all the faculty ranks and the number of students advised by each rank.", "context": "CREATE TABLE Student (advisor VARCHAR); CREATE TABLE Faculty (rank VARCHAR, FacID VARCHAR)"}, {"answer": "SELECT T1.fname, T1.lname FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.advisor GROUP BY T1.FacID ORDER BY COUNT(*) DESC LIMIT 1", "question": "What are the first and last name of the faculty who has the most students?", "context": "CREATE TABLE Student (advisor VARCHAR); CREATE TABLE Faculty (fname VARCHAR, lname VARCHAR, FacID VARCHAR)"}, {"answer": "SELECT T1.FacID FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.advisor GROUP BY T1.FacID HAVING COUNT(*) >= 2", "question": "Show the ids for all the faculty members who have at least 2 students.", "context": "CREATE TABLE Faculty (FacID VARCHAR); CREATE TABLE Student (advisor VARCHAR)"}, {"answer": "SELECT FacID FROM Faculty EXCEPT SELECT advisor FROM Student", "question": "Show ids for the faculty members who don't advise any student.", "context": "CREATE TABLE Faculty (FacID VARCHAR, advisor VARCHAR); CREATE TABLE Student (FacID VARCHAR, advisor VARCHAR)"}, {"answer": "SELECT activity_name FROM Activity", "question": "What activities do we have?", "context": "CREATE TABLE Activity (activity_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Activity", "question": "How many activities do we have?", "context": "CREATE TABLE Activity (Id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT FacID) FROM Faculty_participates_in", "question": "How many faculty members participate in an activity?", "context": "CREATE TABLE Faculty_participates_in (FacID VARCHAR)"}, {"answer": "SELECT FacID FROM Faculty EXCEPT SELECT FacID FROM Faculty_participates_in", "question": "Show the ids of the faculty who don't participate in any activity.", "context": "CREATE TABLE Faculty (FacID VARCHAR); CREATE TABLE Faculty_participates_in (FacID VARCHAR)"}, {"answer": "SELECT FacID FROM Faculty_participates_in INTERSECT SELECT advisor FROM Student", "question": "Show the ids of all the faculty members who participate in an activity and advise a student.", "context": "CREATE TABLE Student (FacID VARCHAR, advisor VARCHAR); CREATE TABLE Faculty_participates_in (FacID VARCHAR, advisor VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Faculty AS T1 JOIN Faculty_participates_in AS T2 ON T1.facID = T2.facID WHERE T1.fname = \"Mark\" AND T1.lname = \"Giuliano\"", "question": "How many activities does Mark Giuliano participate in?", "context": "CREATE TABLE Faculty_participates_in (facID VARCHAR); CREATE TABLE Faculty (facID VARCHAR, fname VARCHAR, lname VARCHAR)"}, {"answer": "SELECT T3.activity_name FROM Faculty AS T1 JOIN Faculty_participates_in AS T2 ON T1.facID = T2.facID JOIN Activity AS T3 ON T3.actid = T2.actid WHERE T1.fname = \"Mark\" AND T1.lname = \"Giuliano\"", "question": "Show the names of all the activities Mark Giuliano participates in.", "context": "CREATE TABLE Activity (activity_name VARCHAR, actid VARCHAR); CREATE TABLE Faculty (facID VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE Faculty_participates_in (facID VARCHAR, actid VARCHAR)"}, {"answer": "SELECT T1.fname, T1.lname, COUNT(*), T1.FacID FROM Faculty AS T1 JOIN Faculty_participates_in AS T2 ON T1.facID = T2.facID GROUP BY T1.FacID", "question": "Show the first and last name of all the faculty members who participated in some activity, together with the number of activities they participated in.", "context": "CREATE TABLE Faculty_participates_in (facID VARCHAR); CREATE TABLE Faculty (fname VARCHAR, lname VARCHAR, FacID VARCHAR, facID VARCHAR)"}, {"answer": "SELECT T1.activity_name, COUNT(*) FROM Activity AS T1 JOIN Faculty_participates_in AS T2 ON T1.actID = T2.actID GROUP BY T1.actID", "question": "Show all the activity names and the number of faculty involved in each activity.", "context": "CREATE TABLE Faculty_participates_in (actID VARCHAR); CREATE TABLE Activity (activity_name VARCHAR, actID VARCHAR)"}, {"answer": "SELECT T1.fname, T1.lname FROM Faculty AS T1 JOIN Faculty_participates_in AS T2 ON T1.facID = T2.facID GROUP BY T1.FacID ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the first and last name of the faculty participating in the most activities?", "context": "CREATE TABLE Faculty_participates_in (facID VARCHAR); CREATE TABLE Faculty (fname VARCHAR, lname VARCHAR, FacID VARCHAR, facID VARCHAR)"}, {"answer": "SELECT T1.activity_name FROM Activity AS T1 JOIN Faculty_participates_in AS T2 ON T1.actID = T2.actID GROUP BY T1.actID ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the activity that has the most faculty members involved in?", "context": "CREATE TABLE Faculty_participates_in (actID VARCHAR); CREATE TABLE Activity (activity_name VARCHAR, actID VARCHAR)"}, {"answer": "SELECT StuID FROM Student EXCEPT SELECT StuID FROM Participates_in", "question": "Show the ids of the students who don't participate in any activity.", "context": "CREATE TABLE Participates_in (StuID VARCHAR); CREATE TABLE Student (StuID VARCHAR)"}, {"answer": "SELECT StuID FROM Participates_in INTERSECT SELECT StuID FROM Student WHERE age < 20", "question": "Show the ids for all the students who participate in an activity and are under 20.", "context": "CREATE TABLE Student (StuID VARCHAR, age INTEGER); CREATE TABLE Participates_in (StuID VARCHAR, age INTEGER)"}, {"answer": "SELECT T1.fname, T1.lname FROM Student AS T1 JOIN Participates_in AS T2 ON T1.StuID = T2.StuID GROUP BY T1.StuID ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the first and last name of the student participating in the most activities?", "context": "CREATE TABLE Student (fname VARCHAR, lname VARCHAR, StuID VARCHAR); CREATE TABLE Participates_in (StuID VARCHAR)"}, {"answer": "SELECT T1.activity_name FROM Activity AS T1 JOIN Participates_in AS T2 ON T1.actID = T2.actID GROUP BY T1.actID ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the activity with the most students?", "context": "CREATE TABLE Participates_in (actID VARCHAR); CREATE TABLE Activity (activity_name VARCHAR, actID VARCHAR)"}, {"answer": "SELECT DISTINCT T1.lname FROM Faculty AS T1 JOIN Faculty_participates_in AS T2 ON T1.facID = T2.facID JOIN activity AS T3 ON T2.actid = T2.actid WHERE T3.activity_name = 'Canoeing' OR T3.activity_name = 'Kayaking'", "question": "Find the first names of the faculty members who are playing Canoeing or Kayaking.", "context": "CREATE TABLE activity (activity_name VARCHAR); CREATE TABLE Faculty_participates_in (facID VARCHAR, actid VARCHAR); CREATE TABLE Faculty (lname VARCHAR, facID VARCHAR)"}, {"answer": "SELECT lname FROM faculty WHERE rank = 'Professor' EXCEPT SELECT DISTINCT T1.lname FROM Faculty AS T1 JOIN Faculty_participates_in AS T2 ON T1.facID = T2.facID JOIN activity AS T3 ON T2.actid = T2.actid WHERE T3.activity_name = 'Canoeing' OR T3.activity_name = 'Kayaking'", "question": "Find the first names of professors who are not playing Canoeing or Kayaking.", "context": "CREATE TABLE faculty (lname VARCHAR, rank VARCHAR); CREATE TABLE activity (activity_name VARCHAR); CREATE TABLE Faculty_participates_in (facID VARCHAR, actid VARCHAR); CREATE TABLE Faculty (lname VARCHAR, facID VARCHAR)"}, {"answer": "SELECT T1.lname FROM Faculty AS T1 JOIN Faculty_participates_in AS T2 ON T1.facID = T2.facID JOIN activity AS T3 ON T2.actid = T2.actid WHERE T3.activity_name = 'Canoeing' INTERSECT SELECT T1.lname FROM Faculty AS T1 JOIN Faculty_participates_in AS T2 ON T1.facID = T2.facID JOIN activity AS T3 ON T2.actid = T2.actid WHERE T3.activity_name = 'Kayaking'", "question": "Find the first names of the faculty members who participate in Canoeing and Kayaking.", "context": "CREATE TABLE activity (activity_name VARCHAR); CREATE TABLE Faculty_participates_in (facID VARCHAR, actid VARCHAR); CREATE TABLE Faculty (lname VARCHAR, facID VARCHAR)"}, {"answer": "SELECT T1.stuid FROM participates_in AS T1 JOIN activity AS T2 ON T2.actid = T2.actid WHERE T2.activity_name = 'Canoeing' INTERSECT SELECT T1.stuid FROM participates_in AS T1 JOIN activity AS T2 ON T2.actid = T2.actid WHERE T2.activity_name = 'Kayaking'", "question": "Find the ids of the students who participate in Canoeing and Kayaking.", "context": "CREATE TABLE activity (actid VARCHAR, activity_name VARCHAR); CREATE TABLE participates_in (stuid VARCHAR)"}, {"answer": "SELECT name FROM airports WHERE city = 'Goroka'", "question": "Find the name of the airport in the city of Goroka.", "context": "CREATE TABLE airports (name VARCHAR, city VARCHAR)"}, {"answer": "SELECT name, city, country, elevation FROM airports WHERE city = 'New York'", "question": "Find the name, city, country, and altitude (or elevation) of the airports in the city of New York.", "context": "CREATE TABLE airports (name VARCHAR, city VARCHAR, country VARCHAR, elevation VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM airlines", "question": "How many airlines are there?", "context": "CREATE TABLE airlines (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM airlines WHERE country = 'Russia'", "question": "How many airlines does Russia has?", "context": "CREATE TABLE airlines (country VARCHAR)"}, {"answer": "SELECT MAX(elevation) FROM airports WHERE country = 'Iceland'", "question": "What is the maximum elevation of all airports in the country of Iceland?", "context": "CREATE TABLE airports (elevation INTEGER, country VARCHAR)"}, {"answer": "SELECT name FROM airports WHERE country = 'Cuba' OR country = 'Argentina'", "question": "Find the name of the airports located in Cuba or Argentina.", "context": "CREATE TABLE airports (name VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM airlines WHERE name LIKE 'Orbit%'", "question": "Find the country of the airlines whose name starts with 'Orbit'.", "context": "CREATE TABLE airlines (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM airports WHERE elevation BETWEEN -50 AND 50", "question": "Find the name of airports whose altitude is between -50 and 50.", "context": "CREATE TABLE airports (name VARCHAR, elevation INTEGER)"}, {"answer": "SELECT country FROM airports ORDER BY elevation DESC LIMIT 1", "question": "Which country is the airport that has the highest altitude located in?", "context": "CREATE TABLE airports (country VARCHAR, elevation VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM airports WHERE name LIKE '%International%'", "question": "Find the number of airports whose name contain the word 'International'.", "context": "CREATE TABLE airports (name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT city) FROM airports WHERE country = 'Greenland'", "question": "How many different cities do have some airport in the country of Greenland?", "context": "CREATE TABLE airports (city VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM airlines AS T1 JOIN routes AS T2 ON T1.alid = T2.alid WHERE T1.name = 'American Airlines'", "question": "Find the number of routes operated by American Airlines.", "context": "CREATE TABLE routes (alid VARCHAR); CREATE TABLE airlines (alid VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.dst_apid WHERE country = 'Canada'", "question": "Find the number of routes whose destination airports are in Canada.", "context": "CREATE TABLE routes (dst_apid VARCHAR); CREATE TABLE airports (apid VARCHAR)"}, {"answer": "SELECT name, city, country FROM airports ORDER BY elevation LIMIT 1", "question": "Find the name, city, and country of the airport that has the lowest altitude.", "context": "CREATE TABLE airports (name VARCHAR, city VARCHAR, country VARCHAR, elevation VARCHAR)"}, {"answer": "SELECT name, city, country FROM airports ORDER BY elevation DESC LIMIT 1", "question": "Find the name, city, and country of the airport that has the highest latitude.", "context": "CREATE TABLE airports (name VARCHAR, city VARCHAR, country VARCHAR, elevation VARCHAR)"}, {"answer": "SELECT T1.name, T1.city, T2.dst_apid FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.dst_apid GROUP BY T2.dst_apid ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name and city of the airport which is the destination of the most number of routes.", "context": "CREATE TABLE airports (name VARCHAR, city VARCHAR, apid VARCHAR); CREATE TABLE routes (dst_apid VARCHAR)"}, {"answer": "SELECT T1.name, T2.alid FROM airlines AS T1 JOIN routes AS T2 ON T1.alid = T2.alid GROUP BY T2.alid ORDER BY COUNT(*) DESC LIMIT 10", "question": "Find the names of the top 10 airlines that operate the most number of routes.", "context": "CREATE TABLE airlines (name VARCHAR, alid VARCHAR); CREATE TABLE routes (alid VARCHAR)"}, {"answer": "SELECT T1.name, T1.city, T2.src_apid FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.src_apid GROUP BY T2.src_apid ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name and city of the airport which is the source for the most number of flight routes.", "context": "CREATE TABLE airports (name VARCHAR, city VARCHAR, apid VARCHAR); CREATE TABLE routes (src_apid VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT dst_apid) FROM airlines AS T1 JOIN routes AS T2 ON T1.alid = T2.alid WHERE T1.name = 'American Airlines'", "question": "Find the number of different airports which are the destinations of the American Airlines.", "context": "CREATE TABLE routes (alid VARCHAR); CREATE TABLE airlines (alid VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM airlines GROUP BY country ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which countries has the most number of airlines?", "context": "CREATE TABLE airlines (country VARCHAR)"}, {"answer": "SELECT country FROM airlines WHERE active = 'Y' GROUP BY country ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which countries has the most number of airlines whose active status is 'Y'?", "context": "CREATE TABLE airlines (country VARCHAR, active VARCHAR)"}, {"answer": "SELECT country, COUNT(*) FROM airlines GROUP BY country ORDER BY COUNT(*) DESC", "question": "List all countries and their number of airlines in the descending order of number of airlines.", "context": "CREATE TABLE airlines (country VARCHAR)"}, {"answer": "SELECT COUNT(*), country FROM airports GROUP BY country ORDER BY COUNT(*) DESC", "question": "How many airports are there per country? Order the countries by decreasing number of airports.", "context": "CREATE TABLE airports (country VARCHAR)"}, {"answer": "SELECT COUNT(*), city FROM airports WHERE country = 'United States' GROUP BY city ORDER BY COUNT(*) DESC", "question": "How many airports are there per city in the United States? Order the cities by decreasing number of airports.", "context": "CREATE TABLE airports (city VARCHAR, country VARCHAR)"}, {"answer": "SELECT city FROM airports WHERE country = 'United States' GROUP BY city HAVING COUNT(*) > 3", "question": "Return the cities with more than 3 airports in the United States.", "context": "CREATE TABLE airports (city VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM (SELECT city FROM airports GROUP BY city HAVING COUNT(*) > 3)", "question": "How many cities are there that have more than 3 airports?", "context": "CREATE TABLE airports (city VARCHAR)"}, {"answer": "SELECT city, COUNT(*) FROM airports GROUP BY city HAVING COUNT(*) > 1", "question": "List the cities which have more than one airport and number of airports.", "context": "CREATE TABLE airports (city VARCHAR)"}, {"answer": "SELECT city FROM airports GROUP BY city HAVING COUNT(*) > 2 ORDER BY COUNT(*)", "question": "List the cities which have more than 2 airports sorted by the number of airports.", "context": "CREATE TABLE airports (city VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.name FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.src_apid GROUP BY T1.name", "question": "Find the number of routes for each source airport and the airport name.", "context": "CREATE TABLE airports (name VARCHAR, apid VARCHAR); CREATE TABLE routes (src_apid VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.name FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.src_apid GROUP BY T1.name ORDER BY COUNT(*) DESC", "question": "Find the number of routes and airport name for each source airport, order the results by decreasing number of routes.", "context": "CREATE TABLE airports (name VARCHAR, apid VARCHAR); CREATE TABLE routes (src_apid VARCHAR)"}, {"answer": "SELECT AVG(elevation), country FROM airports GROUP BY country", "question": "Find the average elevation of all airports for each country.", "context": "CREATE TABLE airports (country VARCHAR, elevation INTEGER)"}, {"answer": "SELECT city FROM airports GROUP BY city HAVING COUNT(*) = 2", "question": "Find the cities which have exactly two airports.", "context": "CREATE TABLE airports (city VARCHAR)"}, {"answer": "SELECT T1.country, T1.name, COUNT(*) FROM airlines AS T1 JOIN routes AS T2 ON T1.alid = T2.alid GROUP BY T1.country, T1.name", "question": "For each country and airline name, how many routes are there?", "context": "CREATE TABLE airlines (country VARCHAR, name VARCHAR, alid VARCHAR); CREATE TABLE routes (alid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM routes AS T1 JOIN airports AS T2 ON T1.dst_apid = T2.apid WHERE T2.country = 'Italy'", "question": "Find the number of routes with destination airports in Italy.", "context": "CREATE TABLE routes (dst_apid VARCHAR); CREATE TABLE airports (apid VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM routes AS T1 JOIN airports AS T2 ON T1.dst_apid = T2.apid JOIN airlines AS T3 ON T1.alid = T3.alid WHERE T2.country = 'Italy' AND T3.name = 'American Airlines'", "question": "Return the number of routes with destination airport in Italy operated by the airline with name 'American Airlines'.", "context": "CREATE TABLE routes (dst_apid VARCHAR, alid VARCHAR); CREATE TABLE airports (apid VARCHAR, country VARCHAR); CREATE TABLE airlines (alid VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.dst_apid WHERE T1.name = 'John F Kennedy International Airport'", "question": "Find the number of routes that have destination John F Kennedy International Airport.", "context": "CREATE TABLE airports (apid VARCHAR, name VARCHAR); CREATE TABLE routes (dst_apid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM routes WHERE dst_apid IN (SELECT apid FROM airports WHERE country = 'Canada') AND src_apid IN (SELECT apid FROM airports WHERE country = 'United States')", "question": "Find the number of routes from the United States to Canada.", "context": "CREATE TABLE airports (dst_apid VARCHAR, src_apid VARCHAR, apid VARCHAR, country VARCHAR); CREATE TABLE routes (dst_apid VARCHAR, src_apid VARCHAR, apid VARCHAR, country VARCHAR)"}, {"answer": "SELECT rid FROM routes WHERE dst_apid IN (SELECT apid FROM airports WHERE country = 'United States') AND src_apid IN (SELECT apid FROM airports WHERE country = 'United States')", "question": "Find the id of routes whose source and destination airports are in the United States.", "context": "CREATE TABLE routes (rid VARCHAR, dst_apid VARCHAR, src_apid VARCHAR, apid VARCHAR, country VARCHAR); CREATE TABLE airports (rid VARCHAR, dst_apid VARCHAR, src_apid VARCHAR, apid VARCHAR, country VARCHAR)"}, {"answer": "SELECT T1.name FROM airlines AS T1 JOIN routes AS T2 ON T1.alid = T2.alid GROUP BY T1.name ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name of airline which runs the most number of routes.", "context": "CREATE TABLE airlines (name VARCHAR, alid VARCHAR); CREATE TABLE routes (alid VARCHAR)"}, {"answer": "SELECT T1.name FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.src_apid WHERE T1.country = 'China' GROUP BY T1.name ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the busiest source airport that runs most number of routes in China.", "context": "CREATE TABLE routes (src_apid VARCHAR); CREATE TABLE airports (name VARCHAR, apid VARCHAR, country VARCHAR)"}, {"answer": "SELECT T1.name FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.dst_apid WHERE T1.country = 'China' GROUP BY T1.name ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the busiest destination airport that runs most number of routes in China.", "context": "CREATE TABLE routes (dst_apid VARCHAR); CREATE TABLE airports (name VARCHAR, apid VARCHAR, country VARCHAR)"}, {"answer": "SELECT order_id FROM orders ORDER BY date_order_placed DESC LIMIT 1", "question": "What is the id of the most recent order?", "context": "CREATE TABLE orders (order_id VARCHAR, date_order_placed VARCHAR)"}, {"answer": "SELECT order_id, customer_id FROM orders ORDER BY date_order_placed LIMIT 1", "question": "what are the order id and customer id of the oldest order?", "context": "CREATE TABLE orders (order_id VARCHAR, customer_id VARCHAR, date_order_placed VARCHAR)"}, {"answer": "SELECT order_id FROM shipments WHERE shipment_tracking_number = \"3452\"", "question": "Find the id of the order whose shipment tracking number is \"3452\".", "context": "CREATE TABLE shipments (order_id VARCHAR, shipment_tracking_number VARCHAR)"}, {"answer": "SELECT order_item_id FROM order_items WHERE product_id = 11", "question": "Find the ids of all the order items whose product id is 11.", "context": "CREATE TABLE order_items (order_item_id VARCHAR, product_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = \"Packing\"", "question": "List the name of all the distinct customers who have orders with status \"Packing\".", "context": "CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.customer_details FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = \"On Road\"", "question": "Find the details of all the distinct customers who have orders with status \"On Road\".", "context": "CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the customer who has the most orders?", "context": "CREATE TABLE orders (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T1.customer_id FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the customer id of the customer who has the most orders?", "context": "CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR)"}, {"answer": "SELECT T2.order_id, T2.order_status FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T1.customer_name = \"Jeramie\"", "question": "Give me a list of id and status of orders which belong to the customer named \"Jeramie\".", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE orders (order_id VARCHAR, order_status VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T2.date_order_placed FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T1.customer_name = \"Jeramie\"", "question": "Find the dates of orders which belong to the customer named \"Jeramie\".", "context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE orders (date_order_placed VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.date_order_placed >= \"2009-01-01\" AND T2.date_order_placed <= \"2010-01-01\"", "question": "Give me the names of customers who have placed orders between 2009-01-01 and 2010-01-01.", "context": "CREATE TABLE orders (customer_id VARCHAR, date_order_placed VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT DISTINCT T2.product_id FROM orders AS T1 JOIN order_items AS T2 ON T1.order_id = T2.order_id WHERE T1.date_order_placed >= \"1975-01-01\" AND T1.date_order_placed <= \"1976-01-01\"", "question": "Give me a list of distinct product ids from orders placed between 1975-01-01 and 1976-01-01?", "context": "CREATE TABLE order_items (product_id VARCHAR, order_id VARCHAR); CREATE TABLE orders (order_id VARCHAR, date_order_placed VARCHAR)"}, {"answer": "SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = \"On Road\" INTERSECT SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = \"Shipped\"", "question": "Find the names of the customers who have order status both \"On Road\" and \"Shipped\".", "context": "CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T1.customer_id FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = \"On Road\" INTERSECT SELECT T1.customer_id FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = \"Shipped\"", "question": "Find the id of the customers who have order status both \"On Road\" and \"Shipped\".", "context": "CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR)"}, {"answer": "SELECT T1.date_order_placed FROM orders AS T1 JOIN shipments AS T2 ON T1.order_id = T2.order_id WHERE T2.shipment_tracking_number = 3452", "question": "When was the order placed whose shipment tracking number is 3452? Give me the date.", "context": "CREATE TABLE shipments (order_id VARCHAR, shipment_tracking_number VARCHAR); CREATE TABLE orders (date_order_placed VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT T1.date_order_placed FROM orders AS T1 JOIN shipments AS T2 ON T1.order_id = T2.order_id WHERE T2.invoice_number = 10", "question": "What is the placement date of the order whose invoice number is 10?", "context": "CREATE TABLE orders (date_order_placed VARCHAR, order_id VARCHAR); CREATE TABLE shipments (order_id VARCHAR, invoice_number VARCHAR)"}, {"answer": "SELECT COUNT(*), T3.product_id FROM orders AS T1 JOIN order_items AS T2 JOIN products AS T3 ON T1.order_id = T2.order_id AND T2.product_id = T3.product_id GROUP BY T3.product_id", "question": "List the count and id of each product in all the orders.", "context": "CREATE TABLE orders (order_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE products (product_id VARCHAR)"}, {"answer": "SELECT T3.product_name, COUNT(*) FROM orders AS T1 JOIN order_items AS T2 JOIN products AS T3 ON T1.order_id = T2.order_id AND T2.product_id = T3.product_id GROUP BY T3.product_id", "question": "List the name and count of each product in all orders.", "context": "CREATE TABLE orders (order_id VARCHAR); CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR)"}, {"answer": "SELECT order_id FROM shipments WHERE shipment_date > \"2000-01-01\"", "question": "Find the ids of orders which are shipped after 2000-01-01.", "context": "CREATE TABLE shipments (order_id VARCHAR, shipment_date INTEGER)"}, {"answer": "SELECT order_id FROM shipments WHERE shipment_date = (SELECT MAX(shipment_date) FROM shipments)", "question": "Find the id of the order which is shipped most recently.", "context": "CREATE TABLE shipments (order_id VARCHAR, shipment_date INTEGER)"}, {"answer": "SELECT DISTINCT product_name FROM products ORDER BY product_name", "question": "List the names of all distinct products in alphabetical order.", "context": "CREATE TABLE products (product_name VARCHAR)"}, {"answer": "SELECT DISTINCT order_id FROM orders ORDER BY date_order_placed", "question": "List the ids of all distinct orders ordered by placed date.", "context": "CREATE TABLE orders (order_id VARCHAR, date_order_placed VARCHAR)"}, {"answer": "SELECT T1.order_id FROM orders AS T1 JOIN order_items AS T2 ON T1.order_id = T2.order_id GROUP BY T1.order_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the id of the order which has the most items?", "context": "CREATE TABLE orders (order_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR)"}, {"answer": "SELECT invoice_number FROM invoices WHERE invoice_date < \"1989-09-03\" OR invoice_date > \"2007-12-25\"", "question": "Find the invoice numbers which are created before 1989-09-03 or after 2007-12-25.", "context": "CREATE TABLE invoices (invoice_number VARCHAR, invoice_date VARCHAR)"}, {"answer": "SELECT DISTINCT invoice_details FROM invoices WHERE invoice_date < \"1989-09-03\" OR invoice_date > \"2007-12-25\"", "question": "Find the distinct details of invoices which are created before 1989-09-03 or after 2007-12-25.", "context": "CREATE TABLE invoices (invoice_details VARCHAR, invoice_date VARCHAR)"}, {"answer": "SELECT T2.customer_name, COUNT(*) FROM orders AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T2.customer_id HAVING COUNT(*) >= 2", "question": "For each customer who has at least two orders, find the customer name and number of orders made.", "context": "CREATE TABLE orders (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T2.customer_name FROM orders AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T2.customer_id HAVING COUNT(*) <= 2", "question": "Find the name of the customers who have at most two orders.", "context": "CREATE TABLE orders (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)"}, {"answer": "SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 JOIN order_items AS T3 JOIN products AS T4 ON T1.customer_id = T2.customer_id AND T2.order_id = T3.order_id AND T3.product_id = T4.product_id WHERE T4.product_name = \"food\" GROUP BY T1.customer_id HAVING COUNT(*) >= 1", "question": "List the names of the customers who have once bought product \"food\".", "context": "CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR, order_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE order_items (product_id VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 JOIN order_items AS T3 JOIN products AS T4 ON T1.customer_id = T2.customer_id AND T2.order_id = T3.order_id AND T3.product_id = T4.product_id WHERE T3.order_item_status = \"Cancel\" AND T4.product_name = \"food\" GROUP BY T1.customer_id HAVING COUNT(*) >= 1", "question": "List the names of customers who have once canceled the purchase of the product \"food\" (the item status is \"Cancel\").", "context": "CREATE TABLE orders (customer_id VARCHAR, order_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE order_items (product_id VARCHAR, order_item_status VARCHAR, order_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM architect WHERE gender = 'female'", "question": "How many architects are female?", "context": "CREATE TABLE architect (gender VARCHAR)"}, {"answer": "SELECT name, nationality, id FROM architect WHERE gender = 'male' ORDER BY name", "question": "List the name, nationality and id of all male architects ordered by their names lexicographically.", "context": "CREATE TABLE architect (name VARCHAR, nationality VARCHAR, id VARCHAR, gender VARCHAR)"}, {"answer": "SELECT MAX(T1.length_meters), T2.name FROM bridge AS T1 JOIN architect AS T2 ON T1.architect_id = T2.id", "question": "What is the maximum length in meters for the bridges and what are the architects' names?", "context": "CREATE TABLE architect (name VARCHAR, id VARCHAR); CREATE TABLE bridge (length_meters INTEGER, architect_id VARCHAR)"}, {"answer": "SELECT AVG(length_feet) FROM bridge", "question": "What is the average length in feet of the bridges?", "context": "CREATE TABLE bridge (length_feet INTEGER)"}, {"answer": "SELECT name, built_year FROM mill WHERE TYPE = 'Grondzeiler'", "question": "What are the names and year of construction for the mills of 'Grondzeiler' type?", "context": "CREATE TABLE mill (name VARCHAR, built_year VARCHAR, TYPE VARCHAR)"}, {"answer": "SELECT DISTINCT T1.name, T1.nationality FROM architect AS T1 JOIN mill AS t2 ON T1.id = T2.architect_id", "question": "What are the distinct names and nationalities of the architects who have ever built a mill?", "context": "CREATE TABLE mill (Id VARCHAR); CREATE TABLE architect (name VARCHAR, nationality VARCHAR, id VARCHAR)"}, {"answer": "SELECT name FROM mill WHERE LOCATION <> 'Donceel'", "question": "What are the names of the mills which are not located in 'Donceel'?", "context": "CREATE TABLE mill (name VARCHAR, LOCATION VARCHAR)"}, {"answer": "SELECT DISTINCT T1.type FROM mill AS T1 JOIN architect AS t2 ON T1.architect_id = T2.id WHERE T2.nationality = 'American' OR T2.nationality = 'Canadian'", "question": "What are the distinct types of mills that are built by American or Canadian architects?", "context": "CREATE TABLE architect (Id VARCHAR); CREATE TABLE mill (type VARCHAR, architect_id VARCHAR)"}, {"answer": "SELECT T1.id, T1.name FROM architect AS T1 JOIN bridge AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) >= 3", "question": "What are the ids and names of the architects who built at least 3 bridges ?", "context": "CREATE TABLE architect (id VARCHAR, name VARCHAR); CREATE TABLE bridge (architect_id VARCHAR)"}, {"answer": "SELECT T1.id, T1.name, T1.nationality FROM architect AS T1 JOIN mill AS T2 ON T1.id = T2.architect_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the id, name and nationality of the architect who built most mills?", "context": "CREATE TABLE architect (id VARCHAR, name VARCHAR, nationality VARCHAR); CREATE TABLE mill (architect_id VARCHAR)"}, {"answer": "SELECT T1.id, T1.name, T1.gender FROM architect AS T1 JOIN bridge AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) = 2 UNION SELECT T1.id, T1.name, T1.gender FROM architect AS T1 JOIN mill AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) = 1", "question": "What are the ids, names and genders of the architects who built two bridges or one mill?", "context": "CREATE TABLE mill (architect_id VARCHAR); CREATE TABLE architect (id VARCHAR, name VARCHAR, gender VARCHAR); CREATE TABLE bridge (architect_id VARCHAR)"}, {"answer": "SELECT LOCATION FROM bridge WHERE name = 'Kolob Arch' OR name = 'Rainbow Bridge'", "question": "What is the location of the bridge named 'Kolob Arch' or 'Rainbow Bridge'?", "context": "CREATE TABLE bridge (LOCATION VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM mill WHERE name LIKE '%Moulin%'", "question": "Which of the mill names contains the french word 'Moulin'?", "context": "CREATE TABLE mill (name VARCHAR)"}, {"answer": "SELECT DISTINCT T1.name FROM mill AS T1 JOIN architect AS t2 ON T1.architect_id = T2.id JOIN bridge AS T3 ON T3.architect_id = T2.id WHERE T3.length_meters > 80", "question": "What are the distinct name of the mills built by the architects who have also built a bridge longer than 80 meters?", "context": "CREATE TABLE architect (Id VARCHAR); CREATE TABLE mill (name VARCHAR, architect_id VARCHAR); CREATE TABLE bridge (architect_id VARCHAR, length_meters INTEGER)"}, {"answer": "SELECT TYPE, COUNT(*) FROM mill GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most common mill type, and how many are there?", "context": "CREATE TABLE mill (TYPE VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM architect WHERE NOT id IN (SELECT architect_id FROM mill WHERE built_year < 1850)", "question": "How many architects haven't built a mill before year 1850?", "context": "CREATE TABLE mill (id VARCHAR, architect_id VARCHAR, built_year INTEGER); CREATE TABLE architect (id VARCHAR, architect_id VARCHAR, built_year INTEGER)"}, {"answer": "SELECT t1.name FROM bridge AS t1 JOIN architect AS t2 ON t1.architect_id = t2.id WHERE t2.nationality = 'American' ORDER BY t1.length_feet", "question": "show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length.", "context": "CREATE TABLE bridge (name VARCHAR, architect_id VARCHAR, length_feet VARCHAR); CREATE TABLE architect (id VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM book_club", "question": "How many book clubs are there?", "context": "CREATE TABLE book_club (Id VARCHAR)"}, {"answer": "SELECT book_title, author_or_editor FROM book_club WHERE YEAR > 1989", "question": "show the titles, and authors or editors for all books made after the year 1989.", "context": "CREATE TABLE book_club (book_title VARCHAR, author_or_editor VARCHAR, YEAR INTEGER)"}, {"answer": "SELECT DISTINCT publisher FROM book_club", "question": "Show all distinct publishers for books.", "context": "CREATE TABLE book_club (publisher VARCHAR)"}, {"answer": "SELECT YEAR, book_title, publisher FROM book_club ORDER BY YEAR DESC", "question": "Show the years, book titles, and publishers for all books, in descending order by year.", "context": "CREATE TABLE book_club (YEAR VARCHAR, book_title VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT publisher, COUNT(*) FROM book_club GROUP BY publisher", "question": "Show all publishers and the number of books for each publisher.", "context": "CREATE TABLE book_club (publisher VARCHAR)"}, {"answer": "SELECT publisher FROM book_club GROUP BY publisher ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the publisher with most number of books?", "context": "CREATE TABLE book_club (publisher VARCHAR)"}, {"answer": "SELECT category, COUNT(*) FROM book_club GROUP BY category", "question": "Show all book categories and the number of books in each category.", "context": "CREATE TABLE book_club (category VARCHAR)"}, {"answer": "SELECT category FROM book_club WHERE YEAR > 1989 GROUP BY category HAVING COUNT(*) >= 2", "question": "List categories that have at least two books after year 1989.", "context": "CREATE TABLE book_club (category VARCHAR, YEAR INTEGER)"}, {"answer": "SELECT publisher FROM book_club WHERE YEAR = 1989 INTERSECT SELECT publisher FROM book_club WHERE YEAR = 1990", "question": "Show publishers with a book published in 1989 and a book in 1990.", "context": "CREATE TABLE book_club (publisher VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT publisher FROM book_club EXCEPT SELECT publisher FROM book_club WHERE YEAR = 1989", "question": "Show all publishers which do not have a book in 1989.", "context": "CREATE TABLE book_club (publisher VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT title, YEAR, director FROM movie ORDER BY budget_million", "question": "Show all movie titles, years, and directors, ordered by budget.", "context": "CREATE TABLE movie (title VARCHAR, YEAR VARCHAR, director VARCHAR, budget_million VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT director) FROM movie", "question": "How many movie directors are there?", "context": "CREATE TABLE movie (director VARCHAR)"}, {"answer": "SELECT title, director FROM movie WHERE YEAR <= 2000 ORDER BY gross_worldwide DESC LIMIT 1", "question": "What is the title and director for the movie with highest worldwide gross in the year 2000 or before?", "context": "CREATE TABLE movie (title VARCHAR, director VARCHAR, YEAR VARCHAR, gross_worldwide VARCHAR)"}, {"answer": "SELECT director FROM movie WHERE YEAR = 2000 INTERSECT SELECT director FROM movie WHERE YEAR = 1999", "question": "Show all director names who have a movie in both year 1999 and 2000.", "context": "CREATE TABLE movie (director VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT director FROM movie WHERE YEAR = 1999 OR YEAR = 2000", "question": "Show all director names who have a movie in the year 1999 or 2000.", "context": "CREATE TABLE movie (director VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT AVG(budget_million), MAX(budget_million), MIN(budget_million) FROM movie WHERE YEAR < 2000", "question": "What is the average, maximum, and minimum budget for all movies before 2000.", "context": "CREATE TABLE movie (budget_million INTEGER, YEAR INTEGER)"}, {"answer": "SELECT T1.company_name FROM culture_company AS T1 JOIN book_club AS T2 ON T1.book_club_id = T2.book_club_id WHERE T2.publisher = 'Alyson'", "question": "List all company names with a book published by Alyson.", "context": "CREATE TABLE culture_company (company_name VARCHAR, book_club_id VARCHAR); CREATE TABLE book_club (book_club_id VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT T1.title, T3.book_title FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id JOIN book_club AS T3 ON T3.book_club_id = T2.book_club_id WHERE T2.incorporated_in = 'China'", "question": "Show the movie titles and book titles for all companies in China.", "context": "CREATE TABLE movie (title VARCHAR, movie_id VARCHAR); CREATE TABLE culture_company (movie_id VARCHAR, book_club_id VARCHAR, incorporated_in VARCHAR); CREATE TABLE book_club (book_title VARCHAR, book_club_id VARCHAR)"}, {"answer": "SELECT T2.company_name FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id WHERE T1.year = 1999", "question": "Show all company names with a movie directed in year 1999.", "context": "CREATE TABLE movie (movie_id VARCHAR, year VARCHAR); CREATE TABLE culture_company (company_name VARCHAR, movie_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM singer", "question": "How many singers do we have?", "context": "CREATE TABLE singer (Id VARCHAR)"}, {"answer": "SELECT name, country, age FROM singer ORDER BY age DESC", "question": "Show name, country, age for all singers ordered by age from the oldest to the youngest.", "context": "CREATE TABLE singer (name VARCHAR, country VARCHAR, age VARCHAR)"}, {"answer": "SELECT AVG(age), MIN(age), MAX(age) FROM singer WHERE country = 'France'", "question": "What is the average, minimum, and maximum age of all singers from France?", "context": "CREATE TABLE singer (age INTEGER, country VARCHAR)"}, {"answer": "SELECT song_name, song_release_year FROM singer ORDER BY age LIMIT 1", "question": "Show the name and the release year of the song by the youngest singer.", "context": "CREATE TABLE singer (song_name VARCHAR, song_release_year VARCHAR, age VARCHAR)"}, {"answer": "SELECT DISTINCT country FROM singer WHERE age > 20", "question": "What are all distinct countries where singers above age 20 are from?", "context": "CREATE TABLE singer (country VARCHAR, age INTEGER)"}, {"answer": "SELECT country, COUNT(*) FROM singer GROUP BY country", "question": "Show all countries and the number of singers in each country.", "context": "CREATE TABLE singer (country VARCHAR)"}, {"answer": "SELECT song_name FROM singer WHERE age > (SELECT AVG(age) FROM singer)", "question": "List all song names by singers above the average age.", "context": "CREATE TABLE singer (song_name VARCHAR, age INTEGER)"}, {"answer": "SELECT LOCATION, name FROM stadium WHERE capacity BETWEEN 5000 AND 10000", "question": "Show location and name for all stadiums with a capacity between 5000 and 10000.", "context": "CREATE TABLE stadium (LOCATION VARCHAR, name VARCHAR, capacity INTEGER)"}, {"answer": "SELECT MAX(capacity), average FROM stadium", "question": "What is the maximum capacity and the average of all stadiums ?", "context": "CREATE TABLE stadium (average VARCHAR, capacity INTEGER)"}, {"answer": "SELECT AVG(capacity), MAX(capacity) FROM stadium", "question": "What is the average and maximum capacities for all stadiums ?", "context": "CREATE TABLE stadium (capacity INTEGER)"}, {"answer": "SELECT name, capacity FROM stadium ORDER BY average DESC LIMIT 1", "question": "What is the name and capacity for the stadium with highest average attendance?", "context": "CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM concert WHERE YEAR = 2014 OR YEAR = 2015", "question": "How many concerts are there in year 2014 or 2015?", "context": "CREATE TABLE concert (YEAR VARCHAR)"}, {"answer": "SELECT T2.name, COUNT(*) FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id GROUP BY T1.stadium_id", "question": "Show the stadium name and the number of concerts in each stadium.", "context": "CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR)"}, {"answer": "SELECT T2.name, T2.capacity FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year >= 2014 GROUP BY T2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the stadium name and capacity with most number of concerts in year 2014 or after.", "context": "CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, year VARCHAR)"}, {"answer": "SELECT t2.name, t2.capacity FROM concert AS t1 JOIN stadium AS t2 ON t1.stadium_id = t2.stadium_id WHERE t1.year > 2013 GROUP BY t2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name and capacity of the stadium with the most concerts after 2013 ?", "context": "CREATE TABLE concert (stadium_id VARCHAR, year INTEGER); CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, stadium_id VARCHAR)"}, {"answer": "SELECT YEAR FROM concert GROUP BY YEAR ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which year has most number of concerts?", "context": "CREATE TABLE concert (YEAR VARCHAR)"}, {"answer": "SELECT name FROM stadium WHERE NOT stadium_id IN (SELECT stadium_id FROM concert)", "question": "Show the stadium names without any concert.", "context": "CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (name VARCHAR, stadium_id VARCHAR)"}, {"answer": "SELECT country FROM singer WHERE age > 40 INTERSECT SELECT country FROM singer WHERE age < 30", "question": "Show countries where a singer above age 40 and a singer below 30 are from.", "context": "CREATE TABLE singer (country VARCHAR, age INTEGER)"}, {"answer": "SELECT name FROM stadium EXCEPT SELECT T2.name FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year = 2014", "question": "Show names for all stadiums except for stadiums having a concert in year 2014.", "context": "CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, year VARCHAR); CREATE TABLE stadium (name VARCHAR)"}, {"answer": "SELECT T2.concert_name, T2.theme, COUNT(*) FROM singer_in_concert AS T1 JOIN concert AS T2 ON T1.concert_id = T2.concert_id GROUP BY T2.concert_id", "question": "Show the name and theme for all concerts and the number of singers in each concert.", "context": "CREATE TABLE singer_in_concert (concert_id VARCHAR); CREATE TABLE concert (concert_name VARCHAR, theme VARCHAR, concert_id VARCHAR)"}, {"answer": "SELECT t2.concert_name, t2.theme, COUNT(*) FROM singer_in_concert AS t1 JOIN concert AS t2 ON t1.concert_id = t2.concert_id GROUP BY t2.concert_id", "question": "What are the names , themes , and number of singers for every concert ?", "context": "CREATE TABLE singer_in_concert (concert_id VARCHAR); CREATE TABLE concert (concert_name VARCHAR, theme VARCHAR, concert_id VARCHAR)"}, {"answer": "SELECT T2.name, COUNT(*) FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id GROUP BY T2.singer_id", "question": "List singer names and number of concerts for each singer.", "context": "CREATE TABLE singer_in_concert (singer_id VARCHAR); CREATE TABLE singer (name VARCHAR, singer_id VARCHAR)"}, {"answer": "SELECT T2.name FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id JOIN concert AS T3 ON T1.concert_id = T3.concert_id WHERE T3.year = 2014", "question": "List all singer names in concerts in year 2014.", "context": "CREATE TABLE singer_in_concert (singer_id VARCHAR, concert_id VARCHAR); CREATE TABLE concert (concert_id VARCHAR, year VARCHAR); CREATE TABLE singer (name VARCHAR, singer_id VARCHAR)"}, {"answer": "SELECT name, country FROM singer WHERE song_name LIKE '%Hey%'", "question": "what is the name and nation of the singer who have a song having 'Hey' in its name?", "context": "CREATE TABLE singer (name VARCHAR, country VARCHAR, song_name VARCHAR)"}, {"answer": "SELECT T2.name, T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2014 INTERSECT SELECT T2.name, T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2015", "question": "Find the name and location of the stadiums which some concerts happened in the years of both 2014 and 2015.", "context": "CREATE TABLE stadium (name VARCHAR, location VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, Year VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM concert WHERE stadium_id = (SELECT stadium_id FROM stadium ORDER BY capacity DESC LIMIT 1)", "question": "Find the number of concerts happened in the stadium with the highest capacity .", "context": "CREATE TABLE concert (stadium_id VARCHAR, capacity VARCHAR); CREATE TABLE stadium (stadium_id VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM pets WHERE weight > 10", "question": "Find the number of pets whose weight is heavier than 10.", "context": "CREATE TABLE pets (weight INTEGER)"}, {"answer": "SELECT weight FROM pets ORDER BY pet_age LIMIT 1", "question": "Find the weight of the youngest dog.", "context": "CREATE TABLE pets (weight VARCHAR, pet_age VARCHAR)"}, {"answer": "SELECT MAX(weight), petType FROM pets GROUP BY petType", "question": "Find the maximum weight for each type of pet. List the maximum weight and pet type.", "context": "CREATE TABLE pets (petType VARCHAR, weight INTEGER)"}, {"answer": "SELECT COUNT(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.age > 20", "question": "Find number of pets owned by students who are older than 20.", "context": "CREATE TABLE student (stuid VARCHAR, age INTEGER); CREATE TABLE has_pet (stuid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T2.petid = T3.petid WHERE T1.sex = 'F' AND T3.pettype = 'dog'", "question": "Find the number of dog pets that are raised by female students (with sex F).", "context": "CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (stuid VARCHAR, sex VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT pettype) FROM pets", "question": "Find the number of distinct type of pets.", "context": "CREATE TABLE pets (pettype VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' OR T3.pettype = 'dog'", "question": "Find the first name of students who have cat or dog pet.", "context": "CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (Fname VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)"}, {"answer": "SELECT t1.fname FROM student AS t1 JOIN has_pet AS t2 ON t1.stuid = t2.stuid JOIN pets AS t3 ON t3.petid = t2.petid WHERE t3.pettype = 'cat' INTERSECT SELECT t1.fname FROM student AS t1 JOIN has_pet AS t2 ON t1.stuid = t2.stuid JOIN pets AS t3 ON t3.petid = t2.petid WHERE t3.pettype = 'dog'", "question": "Find the first name of students who have both cat and dog pets .", "context": "CREATE TABLE student (fname VARCHAR, stuid VARCHAR); CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)"}, {"answer": "SELECT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' INTERSECT SELECT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog'", "question": "What are the students' first names who have both cats and dogs as pets?", "context": "CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (Fname VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)"}, {"answer": "SELECT major, age FROM student WHERE NOT stuid IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat')", "question": "Find the major and age of students who do not have a cat pet.", "context": "CREATE TABLE student (stuid VARCHAR); CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (major VARCHAR, age VARCHAR, stuid VARCHAR)"}, {"answer": "SELECT stuid FROM student EXCEPT SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat'", "question": "Find the id of students who do not have a cat pet.", "context": "CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (stuid VARCHAR)"}, {"answer": "SELECT T1.fname, T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog' AND NOT T1.stuid IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat')", "question": "Find the first name and age of students who have a dog but do not have a cat as a pet.", "context": "CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (fname VARCHAR, age VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)"}, {"answer": "SELECT pettype, weight FROM pets ORDER BY pet_age LIMIT 1", "question": "Find the type and weight of the youngest pet.", "context": "CREATE TABLE pets (pettype VARCHAR, weight VARCHAR, pet_age VARCHAR)"}, {"answer": "SELECT petid, weight FROM pets WHERE pet_age > 1", "question": "Find the id and weight of all pets whose age is older than 1.", "context": "CREATE TABLE pets (petid VARCHAR, weight VARCHAR, pet_age INTEGER)"}, {"answer": "SELECT AVG(pet_age), MAX(pet_age), pettype FROM pets GROUP BY pettype", "question": "Find the average and maximum age for each type of pet.", "context": "CREATE TABLE pets (pettype VARCHAR, pet_age INTEGER)"}, {"answer": "SELECT AVG(weight), pettype FROM pets GROUP BY pettype", "question": "Find the average weight for each pet type.", "context": "CREATE TABLE pets (pettype VARCHAR, weight INTEGER)"}, {"answer": "SELECT DISTINCT T1.fname, T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid", "question": "Find the first name and age of students who have a pet.", "context": "CREATE TABLE student (fname VARCHAR, age VARCHAR, stuid VARCHAR); CREATE TABLE has_pet (stuid VARCHAR)"}, {"answer": "SELECT T2.petid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.Lname = 'Smith'", "question": "Find the id of the pet owned by student whose last name is \u2018Smith\u2019.", "context": "CREATE TABLE has_pet (petid VARCHAR, stuid VARCHAR); CREATE TABLE student (stuid VARCHAR, Lname VARCHAR)"}, {"answer": "SELECT COUNT(*), T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid GROUP BY T1.stuid", "question": "Find the number of pets for each student who has any pet and student id.", "context": "CREATE TABLE has_pet (stuid VARCHAR); CREATE TABLE student (stuid VARCHAR)"}, {"answer": "SELECT COUNT(*), t1.stuid FROM student AS t1 JOIN has_pet AS t2 ON t1.stuid = t2.stuid GROUP BY t1.stuid", "question": "For students who have pets , how many pets does each student have ? list their ids instead of names .", "context": "CREATE TABLE has_pet (stuid VARCHAR); CREATE TABLE student (stuid VARCHAR)"}, {"answer": "SELECT T1.fname, T1.sex FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid GROUP BY T1.stuid HAVING COUNT(*) > 1", "question": "Find the first name and gender of student who have more than one pet.", "context": "CREATE TABLE student (fname VARCHAR, sex VARCHAR, stuid VARCHAR); CREATE TABLE has_pet (stuid VARCHAR)"}, {"answer": "SELECT T1.lname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pet_age = 3 AND T3.pettype = 'cat'", "question": "Find the last name of the student who has a cat that is age 3.", "context": "CREATE TABLE student (lname VARCHAR, stuid VARCHAR); CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pet_age VARCHAR, pettype VARCHAR)"}, {"answer": "SELECT AVG(age) FROM student WHERE NOT stuid IN (SELECT stuid FROM has_pet)", "question": "Find the average age of students who do not have any pet .", "context": "CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE has_pet (age INTEGER, stuid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM CONTINENTS", "question": "How many continents are there?", "context": "CREATE TABLE CONTINENTS (Id VARCHAR)"}, {"answer": "SELECT T1.ContId, T1.Continent, COUNT(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.Continent GROUP BY T1.ContId", "question": "How many countries does each continent have? List the continent id, continent name and the number of countries.", "context": "CREATE TABLE COUNTRIES (Continent VARCHAR); CREATE TABLE CONTINENTS (ContId VARCHAR, Continent VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM COUNTRIES", "question": "How many countries are listed?", "context": "CREATE TABLE COUNTRIES (Id VARCHAR)"}, {"answer": "SELECT T1.FullName, T1.Id, COUNT(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id", "question": "How many models does each car maker produce? List maker full name, id and the number.", "context": "CREATE TABLE MODEL_LIST (Maker VARCHAR); CREATE TABLE CAR_MAKERS (FullName VARCHAR, Id VARCHAR)"}, {"answer": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id ORDER BY T2.horsepower LIMIT 1", "question": "Which model of the car has the minimum horsepower?", "context": "CREATE TABLE CARS_DATA (Id VARCHAR, horsepower VARCHAR); CREATE TABLE CAR_NAMES (Model VARCHAR, MakeId VARCHAR)"}, {"answer": "SELECT T1.model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Weight < (SELECT AVG(Weight) FROM CARS_DATA)", "question": "Find the model of the car whose weight is below the average weight.", "context": "CREATE TABLE CARS_DATA (Id VARCHAR, Weight INTEGER); CREATE TABLE CARS_DATA (Weight INTEGER); CREATE TABLE CAR_NAMES (model VARCHAR, MakeId VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker JOIN CAR_NAMES AS T3 ON T2.model = T3.model JOIN CARS_DATA AS T4 ON T3.MakeId = T4.id WHERE T4.year = '1970'", "question": "Find the name of the makers that produced some cars in the year of 1970?", "context": "CREATE TABLE MODEL_LIST (Maker VARCHAR, model VARCHAR); CREATE TABLE CAR_MAKERS (Maker VARCHAR, Id VARCHAR); CREATE TABLE CARS_DATA (id VARCHAR, year VARCHAR); CREATE TABLE CAR_NAMES (model VARCHAR, MakeId VARCHAR)"}, {"answer": "SELECT T2.Make, T1.Year FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T1.Year = (SELECT MIN(YEAR) FROM CARS_DATA)", "question": "Find the make and production time of the cars that were produced in the earliest year?", "context": "CREATE TABLE CARS_DATA (YEAR INTEGER); CREATE TABLE CAR_NAMES (Make VARCHAR, MakeId VARCHAR); CREATE TABLE CARS_DATA (Year VARCHAR, Id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.model = T2.model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.id WHERE T3.year > 1980", "question": "Which distinct car models are the produced after 1980?", "context": "CREATE TABLE CARS_DATA (id VARCHAR, year INTEGER); CREATE TABLE MODEL_LIST (model VARCHAR); CREATE TABLE CAR_NAMES (model VARCHAR, MakeId VARCHAR)"}, {"answer": "SELECT T1.Continent, COUNT(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.continent JOIN car_makers AS T3 ON T2.CountryId = T3.Country GROUP BY T1.Continent", "question": "How many car makers are there in each continents? List the continent name and the count.", "context": "CREATE TABLE COUNTRIES (continent VARCHAR, CountryId VARCHAR); CREATE TABLE CONTINENTS (Continent VARCHAR, ContId VARCHAR); CREATE TABLE car_makers (Country VARCHAR)"}, {"answer": "SELECT T2.CountryName FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId GROUP BY T1.Country ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which of the countries has the most car makers? List the country name.", "context": "CREATE TABLE CAR_MAKERS (Country VARCHAR); CREATE TABLE COUNTRIES (CountryName VARCHAR, CountryId VARCHAR)"}, {"answer": "SELECT COUNT(*), t2.fullname FROM model_list AS t1 JOIN car_makers AS t2 ON t1.maker = t2.id GROUP BY t2.id", "question": "How many car models are produced by each maker ? Only list the count and the maker full name .", "context": "CREATE TABLE model_list (maker VARCHAR); CREATE TABLE car_makers (fullname VARCHAR, id VARCHAR)"}, {"answer": "SELECT COUNT(*), T2.FullName, T2.id FROM MODEL_LIST AS T1 JOIN CAR_MAKERS AS T2 ON T1.Maker = T2.Id GROUP BY T2.id", "question": "What is the number of car models that are produced by each maker and what is the id and full name of each maker?", "context": "CREATE TABLE CAR_MAKERS (FullName VARCHAR, id VARCHAR, Id VARCHAR); CREATE TABLE MODEL_LIST (Maker VARCHAR)"}, {"answer": "SELECT T1.Accelerate FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Make = 'amc hornet sportabout (sw)'", "question": "What is the accelerate of the car make amc hornet sportabout (sw)?", "context": "CREATE TABLE CARS_DATA (Accelerate VARCHAR, Id VARCHAR); CREATE TABLE CAR_NAMES (MakeId VARCHAR, Make VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId WHERE T2.CountryName = 'france'", "question": "How many car makers are there in france?", "context": "CREATE TABLE COUNTRIES (CountryId VARCHAR, CountryName VARCHAR); CREATE TABLE CAR_MAKERS (Country VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM MODEL_LIST AS T1 JOIN CAR_MAKERS AS T2 ON T1.Maker = T2.Id JOIN COUNTRIES AS T3 ON T2.Country = T3.CountryId WHERE T3.CountryName = 'usa'", "question": "How many car models are produced in the usa?", "context": "CREATE TABLE CAR_MAKERS (Id VARCHAR, Country VARCHAR); CREATE TABLE COUNTRIES (CountryId VARCHAR, CountryName VARCHAR); CREATE TABLE MODEL_LIST (Maker VARCHAR)"}, {"answer": "SELECT AVG(mpg) FROM CARS_DATA WHERE Cylinders = 4", "question": "What is the average miles per gallon(mpg) of the cars with 4 cylinders?", "context": "CREATE TABLE CARS_DATA (mpg INTEGER, Cylinders VARCHAR)"}, {"answer": "SELECT MIN(weight) FROM cars_data WHERE cylinders = 8 AND year = 1974", "question": "What is the smallest weight of the car produced with 8 cylinders on 1974 ?", "context": "CREATE TABLE cars_data (weight INTEGER, cylinders VARCHAR, year VARCHAR)"}, {"answer": "SELECT Maker, Model FROM MODEL_LIST", "question": "What are all the makers and models?", "context": "CREATE TABLE MODEL_LIST (Maker VARCHAR, Model VARCHAR)"}, {"answer": "SELECT T1.CountryName, T1.CountryId FROM COUNTRIES AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.CountryId HAVING COUNT(*) >= 1", "question": "What are the countries having at least one car maker? List name and id.", "context": "CREATE TABLE CAR_MAKERS (Country VARCHAR); CREATE TABLE COUNTRIES (CountryName VARCHAR, CountryId VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM CARS_DATA WHERE horsepower > 150", "question": "What is the number of the cars with horsepower more than 150?", "context": "CREATE TABLE CARS_DATA (horsepower INTEGER)"}, {"answer": "SELECT AVG(Weight), YEAR FROM CARS_DATA GROUP BY YEAR", "question": "What is the average weight of cars each year?", "context": "CREATE TABLE CARS_DATA (YEAR VARCHAR, Weight INTEGER)"}, {"answer": "SELECT T1.CountryName FROM COUNTRIES AS T1 JOIN CONTINENTS AS T2 ON T1.Continent = T2.ContId JOIN CAR_MAKERS AS T3 ON T1.CountryId = T3.Country WHERE T2.Continent = 'europe' GROUP BY T1.CountryName HAVING COUNT(*) >= 3", "question": "Which countries in europe have at least 3 car manufacturers?", "context": "CREATE TABLE COUNTRIES (CountryName VARCHAR, Continent VARCHAR, CountryId VARCHAR); CREATE TABLE CONTINENTS (ContId VARCHAR, Continent VARCHAR); CREATE TABLE CAR_MAKERS (Country VARCHAR)"}, {"answer": "SELECT T2.horsepower, T1.Make FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.cylinders = 3 ORDER BY T2.horsepower DESC LIMIT 1", "question": "What is the maximum horsepower and the make of the car models with 3 cylinders?", "context": "CREATE TABLE CAR_NAMES (Make VARCHAR, MakeId VARCHAR); CREATE TABLE CARS_DATA (horsepower VARCHAR, Id VARCHAR, cylinders VARCHAR)"}, {"answer": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id ORDER BY T2.mpg DESC LIMIT 1", "question": "Which model saves the most gasoline? That is to say, have the maximum miles per gallon.", "context": "CREATE TABLE CAR_NAMES (Model VARCHAR, MakeId VARCHAR); CREATE TABLE CARS_DATA (Id VARCHAR, mpg VARCHAR)"}, {"answer": "SELECT t1.model FROM car_names AS t1 JOIN cars_data AS t2 ON t1.makeid = t2.id ORDER BY t2.mpg DESC LIMIT 1", "question": "What is the car model with the highest mpg ?", "context": "CREATE TABLE cars_data (id VARCHAR, mpg VARCHAR); CREATE TABLE car_names (model VARCHAR, makeid VARCHAR)"}, {"answer": "SELECT AVG(horsepower) FROM CARS_DATA WHERE YEAR < 1980", "question": "What is the average horsepower of the cars before 1980?", "context": "CREATE TABLE CARS_DATA (horsepower INTEGER, YEAR INTEGER)"}, {"answer": "SELECT AVG(horsepower) FROM cars_data WHERE year < 1980", "question": "What is the average horsepower for all cars produced before 1980 ?", "context": "CREATE TABLE cars_data (horsepower INTEGER, year INTEGER)"}, {"answer": "SELECT AVG(T2.edispl) FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T1.Model = 'volvo'", "question": "What is the average edispl of the cars of model volvo?", "context": "CREATE TABLE CARS_DATA (edispl INTEGER, Id VARCHAR); CREATE TABLE CAR_NAMES (MakeId VARCHAR, Model VARCHAR)"}, {"answer": "SELECT MAX(Accelerate), Cylinders FROM CARS_DATA GROUP BY Cylinders", "question": "What is the maximum accelerate for different number of cylinders?", "context": "CREATE TABLE CARS_DATA (Cylinders VARCHAR, Accelerate INTEGER)"}, {"answer": "SELECT Model FROM CAR_NAMES GROUP BY Model ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which model has the most version(make) of cars?", "context": "CREATE TABLE CAR_NAMES (Model VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM CARS_DATA WHERE Cylinders > 4", "question": "How many cars have more than 4 cylinders?", "context": "CREATE TABLE CARS_DATA (Cylinders INTEGER)"}, {"answer": "SELECT COUNT(*) FROM CARS_DATA WHERE YEAR = 1980", "question": "how many cars were produced in 1980?", "context": "CREATE TABLE CARS_DATA (YEAR VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker WHERE T1.FullName = 'American Motor Company'", "question": "How many car models were produced by the maker with full name American Motor Company?", "context": "CREATE TABLE CAR_MAKERS (Id VARCHAR, FullName VARCHAR); CREATE TABLE MODEL_LIST (Maker VARCHAR)"}, {"answer": "SELECT T1.FullName, T1.Id FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id HAVING COUNT(*) > 3", "question": "Which makers designed more than 3 car models? List full name and the id.", "context": "CREATE TABLE MODEL_LIST (Maker VARCHAR); CREATE TABLE CAR_MAKERS (FullName VARCHAR, Id VARCHAR)"}, {"answer": "SELECT DISTINCT T2.Model FROM CAR_NAMES AS T1 JOIN MODEL_LIST AS T2 ON T1.Model = T2.Model JOIN CAR_MAKERS AS T3 ON T2.Maker = T3.Id JOIN CARS_DATA AS T4 ON T1.MakeId = T4.Id WHERE T3.FullName = 'General Motors' OR T4.weight > 3500", "question": "Which distinctive models are produced by maker with the full name General Motors or weighing more than 3500?", "context": "CREATE TABLE MODEL_LIST (Model VARCHAR, Maker VARCHAR); CREATE TABLE CAR_MAKERS (Id VARCHAR, FullName VARCHAR); CREATE TABLE CAR_NAMES (Model VARCHAR, MakeId VARCHAR); CREATE TABLE CARS_DATA (Id VARCHAR, weight VARCHAR)"}, {"answer": "SELECT DISTINCT year FROM cars_data WHERE weight BETWEEN 3000 AND 4000", "question": "In which years cars were produced weighing no less than 3000 and no more than 4000 ?", "context": "CREATE TABLE cars_data (year VARCHAR, weight INTEGER)"}, {"answer": "SELECT T1.horsepower FROM CARS_DATA AS T1 ORDER BY T1.accelerate DESC LIMIT 1", "question": "What is the horsepower of the car with the largest accelerate?", "context": "CREATE TABLE CARS_DATA (horsepower VARCHAR, accelerate VARCHAR)"}, {"answer": "SELECT T1.cylinders FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Model = 'volvo' ORDER BY T1.accelerate LIMIT 1", "question": "For model volvo, how many cylinders does the car with the least accelerate have?", "context": "CREATE TABLE CARS_DATA (cylinders VARCHAR, Id VARCHAR, accelerate VARCHAR); CREATE TABLE CAR_NAMES (MakeId VARCHAR, Model VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM CARS_DATA WHERE Accelerate > (SELECT Accelerate FROM CARS_DATA ORDER BY Horsepower DESC LIMIT 1)", "question": "How many cars have a larger accelerate than the car with the largest horsepower?", "context": "CREATE TABLE CARS_DATA (Accelerate INTEGER, Horsepower VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM countries AS t1 JOIN car_makers AS t2 ON t1.countryid = t2.country GROUP BY t1.countryid HAVING COUNT(*) > 2", "question": "How many countries has more than 2 car makers ?", "context": "CREATE TABLE car_makers (country VARCHAR); CREATE TABLE countries (countryid VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM CARS_DATA WHERE Cylinders > 6", "question": "How many cars has over 6 cylinders?", "context": "CREATE TABLE CARS_DATA (Cylinders INTEGER)"}, {"answer": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Cylinders = 4 ORDER BY T2.horsepower DESC LIMIT 1", "question": "For the cars with 4 cylinders, which model has the largest horsepower?", "context": "CREATE TABLE CAR_NAMES (Model VARCHAR, MakeId VARCHAR); CREATE TABLE CARS_DATA (Id VARCHAR, Cylinders VARCHAR, horsepower VARCHAR)"}, {"answer": "SELECT T2.MakeId, T2.Make FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T1.Horsepower > (SELECT MIN(Horsepower) FROM CARS_DATA) AND T1.Cylinders <= 3", "question": "Among the cars with more than lowest horsepower, which ones do not have more than 3 cylinders? List the car makeid and make name.", "context": "CREATE TABLE CARS_DATA (Id VARCHAR, Horsepower INTEGER, Cylinders VARCHAR); CREATE TABLE CAR_NAMES (MakeId VARCHAR, Make VARCHAR); CREATE TABLE CARS_DATA (Horsepower INTEGER)"}, {"answer": "SELECT t2.makeid, t2.make FROM cars_data AS t1 JOIN car_names AS t2 ON t1.id = t2.makeid WHERE t1.horsepower > (SELECT MIN(horsepower) FROM cars_data) AND t1.cylinders < 4", "question": "Among the cars that do not have the minimum horsepower , what are the make ids and names of all those with less than 4 cylinders ?", "context": "CREATE TABLE cars_data (horsepower INTEGER); CREATE TABLE car_names (makeid VARCHAR, make VARCHAR); CREATE TABLE cars_data (id VARCHAR, horsepower INTEGER, cylinders VARCHAR)"}, {"answer": "SELECT MAX(mpg) FROM cars_data WHERE cylinders = 8 OR year < 1980", "question": "What is the maximum miles per gallon of the car with 8 cylinders or produced before 1980 ?", "context": "CREATE TABLE cars_data (mpg INTEGER, cylinders VARCHAR, year VARCHAR)"}, {"answer": "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.Model = T2.Model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.Id JOIN CAR_MAKERS AS T4 ON T1.Maker = T4.Id WHERE T3.weight < 3500 AND T4.FullName <> 'Ford Motor Company'", "question": "Which models are lighter than 3500 but not built by the 'Ford Motor Company'?", "context": "CREATE TABLE CAR_MAKERS (Id VARCHAR, FullName VARCHAR); CREATE TABLE MODEL_LIST (model VARCHAR, Model VARCHAR, Maker VARCHAR); CREATE TABLE CARS_DATA (Id VARCHAR, weight VARCHAR); CREATE TABLE CAR_NAMES (Model VARCHAR, MakeId VARCHAR)"}, {"answer": "SELECT CountryName FROM countries EXCEPT SELECT T1.CountryName FROM countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.countryId = T2.Country", "question": "What are the name of the countries where there is not a single car maker?", "context": "CREATE TABLE countries (CountryName VARCHAR, countryId VARCHAR); CREATE TABLE countries (CountryName VARCHAR); CREATE TABLE CAR_MAKERS (Country VARCHAR)"}, {"answer": "SELECT t1.id, t1.maker FROM car_makers AS t1 JOIN model_list AS t2 ON t1.id = t2.maker GROUP BY t1.id HAVING COUNT(*) >= 2 INTERSECT SELECT t1.id, t1.maker FROM car_makers AS t1 JOIN model_list AS t2 ON t1.id = t2.maker JOIN car_names AS t3 ON t2.model = t3.model GROUP BY t1.id HAVING COUNT(*) > 3", "question": "Which are the car makers which produce at least 2 models and more than 3 car makers ? List the id and the maker .", "context": "CREATE TABLE car_makers (id VARCHAR, maker VARCHAR); CREATE TABLE model_list (maker VARCHAR, model VARCHAR); CREATE TABLE car_names (model VARCHAR)"}, {"answer": "SELECT T1.Id, T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id HAVING COUNT(*) >= 2 INTERSECT SELECT T1.Id, T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker JOIN CAR_NAMES AS T3 ON T2.model = T3.model GROUP BY T1.Id HAVING COUNT(*) > 3", "question": "What are the ids and makers of all car makers that produce at least 2 models and make more than 3 cars?", "context": "CREATE TABLE CAR_NAMES (model VARCHAR); CREATE TABLE MODEL_LIST (Maker VARCHAR, model VARCHAR); CREATE TABLE CAR_MAKERS (Id VARCHAR, Maker VARCHAR)"}, {"answer": "SELECT T1.countryId, T1.CountryName FROM Countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.countryId HAVING COUNT(*) > 3 UNION SELECT T1.countryId, T1.CountryName FROM Countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country JOIN MODEL_LIST AS T3 ON T2.Id = T3.Maker WHERE T3.Model = 'fiat'", "question": "What are the id and names of the countries which have more than 3 car makers or produce the 'fiat' model?", "context": "CREATE TABLE Countries (countryId VARCHAR, CountryName VARCHAR, CountryId VARCHAR); CREATE TABLE CAR_MAKERS (Country VARCHAR, Id VARCHAR); CREATE TABLE MODEL_LIST (Maker VARCHAR, Model VARCHAR)"}, {"answer": "SELECT t1.countryid, t1.countryname FROM countries AS t1 JOIN car_makers AS t2 ON t1.countryid = t2.country GROUP BY t1.countryid HAVING COUNT(*) > 3 UNION SELECT t1.countryid, t1.countryname FROM countries AS t1 JOIN car_makers AS t2 ON t1.countryid = t2.country JOIN model_list AS t3 ON t2.id = t3.maker WHERE t3.model = 'fiat'", "question": "What are the ids and names of all countries that either have more than 3 car makers or produce fiat model ?", "context": "CREATE TABLE model_list (maker VARCHAR, model VARCHAR); CREATE TABLE countries (countryid VARCHAR, countryname VARCHAR); CREATE TABLE car_makers (country VARCHAR, id VARCHAR)"}, {"answer": "SELECT Country FROM AIRLINES WHERE Airline = \"JetBlue Airways\"", "question": "Which country does Airline \"JetBlue Airways\" belong to?", "context": "CREATE TABLE AIRLINES (Country VARCHAR, Airline VARCHAR)"}, {"answer": "SELECT Abbreviation FROM AIRLINES WHERE Airline = \"JetBlue Airways\"", "question": "What is the abbreviation of Airline \"JetBlue Airways\"?", "context": "CREATE TABLE AIRLINES (Abbreviation VARCHAR, Airline VARCHAR)"}, {"answer": "SELECT Airline, Abbreviation FROM AIRLINES WHERE Country = \"USA\"", "question": "List all airline names and their abbreviations in \"USA\".", "context": "CREATE TABLE AIRLINES (Airline VARCHAR, Abbreviation VARCHAR, Country VARCHAR)"}, {"answer": "SELECT AirportCode, AirportName FROM AIRPORTS WHERE city = \"Anthony\"", "question": "List the airport code and name in the city of Anthony.", "context": "CREATE TABLE AIRPORTS (AirportCode VARCHAR, AirportName VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM AIRLINES", "question": "How many airlines do we have?", "context": "CREATE TABLE AIRLINES (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM AIRPORTS", "question": "How many airports do we have?", "context": "CREATE TABLE AIRPORTS (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM FLIGHTS", "question": "How many flights do we have?", "context": "CREATE TABLE FLIGHTS (Id VARCHAR)"}, {"answer": "SELECT Airline FROM AIRLINES WHERE Abbreviation = \"UAL\"", "question": "Which airline has abbreviation 'UAL'?", "context": "CREATE TABLE AIRLINES (Airline VARCHAR, Abbreviation VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM AIRLINES WHERE Country = \"USA\"", "question": "How many airlines are from USA?", "context": "CREATE TABLE AIRLINES (Country VARCHAR)"}, {"answer": "SELECT City, Country FROM AIRPORTS WHERE AirportName = \"Alton\"", "question": "Which city and country is the Alton airport at?", "context": "CREATE TABLE AIRPORTS (City VARCHAR, Country VARCHAR, AirportName VARCHAR)"}, {"answer": "SELECT AirportName FROM AIRPORTS WHERE AirportCode = \"AKO\"", "question": "What is the airport name for airport 'AKO'?", "context": "CREATE TABLE AIRPORTS (AirportName VARCHAR, AirportCode VARCHAR)"}, {"answer": "SELECT AirportName FROM AIRPORTS WHERE City = \"Aberdeen\"", "question": "What are airport names at City 'Aberdeen'?", "context": "CREATE TABLE AIRPORTS (AirportName VARCHAR, City VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM FLIGHTS WHERE SourceAirport = \"APG\"", "question": "How many flights depart from 'APG'?", "context": "CREATE TABLE FLIGHTS (SourceAirport VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM FLIGHTS WHERE DestAirport = \"ATO\"", "question": "How many flights have destination ATO?", "context": "CREATE TABLE FLIGHTS (DestAirport VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.SourceAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", "question": "How many flights depart from City Aberdeen?", "context": "CREATE TABLE FLIGHTS (SourceAirport VARCHAR); CREATE TABLE AIRPORTS (AirportCode VARCHAR, City VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", "question": "How many flights arriving in Aberdeen city?", "context": "CREATE TABLE FLIGHTS (DestAirport VARCHAR); CREATE TABLE AIRPORTS (AirportCode VARCHAR, City VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode JOIN AIRPORTS AS T3 ON T1.SourceAirport = T3.AirportCode WHERE T2.City = \"Ashley\" AND T3.City = \"Aberdeen\"", "question": "How many flights depart from City 'Aberdeen' and have destination City 'Ashley'?", "context": "CREATE TABLE FLIGHTS (DestAirport VARCHAR, SourceAirport VARCHAR); CREATE TABLE AIRPORTS (AirportCode VARCHAR, City VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM FLIGHTS AS T1 JOIN AIRLINES AS T2 ON T1.Airline = T2.uid WHERE T2.Airline = \"JetBlue Airways\"", "question": "How many flights does airline 'JetBlue Airways' have?", "context": "CREATE TABLE FLIGHTS (Airline VARCHAR); CREATE TABLE AIRLINES (uid VARCHAR, Airline VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = \"United Airlines\" AND T2.DestAirport = \"ASY\"", "question": "How many 'United Airlines' flights go to Airport 'ASY'?", "context": "CREATE TABLE FLIGHTS (Airline VARCHAR, DestAirport VARCHAR); CREATE TABLE AIRLINES (uid VARCHAR, Airline VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = \"United Airlines\" AND T2.SourceAirport = \"AHD\"", "question": "How many 'United Airlines' flights depart from Airport 'AHD'?", "context": "CREATE TABLE FLIGHTS (Airline VARCHAR, SourceAirport VARCHAR); CREATE TABLE AIRLINES (uid VARCHAR, Airline VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode JOIN AIRLINES AS T3 ON T3.uid = T1.Airline WHERE T2.City = \"Aberdeen\" AND T3.Airline = \"United Airlines\"", "question": "How many United Airlines flights go to City 'Aberdeen'?", "context": "CREATE TABLE AIRPORTS (AirportCode VARCHAR, City VARCHAR); CREATE TABLE AIRLINES (uid VARCHAR, Airline VARCHAR); CREATE TABLE FLIGHTS (DestAirport VARCHAR, Airline VARCHAR)"}, {"answer": "SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport GROUP BY T1.City ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which city has most number of arriving flights?", "context": "CREATE TABLE FLIGHTS (DestAirport VARCHAR); CREATE TABLE AIRPORTS (City VARCHAR, AirportCode VARCHAR)"}, {"answer": "SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.SourceAirport GROUP BY T1.City ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which city has most number of departing flights?", "context": "CREATE TABLE AIRPORTS (City VARCHAR, AirportCode VARCHAR); CREATE TABLE FLIGHTS (SourceAirport VARCHAR)"}, {"answer": "SELECT T1.AirportCode FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport OR T1.AirportCode = T2.SourceAirport GROUP BY T1.AirportCode ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the code of airport that has the highest number of flights?", "context": "CREATE TABLE FLIGHTS (DestAirport VARCHAR, SourceAirport VARCHAR); CREATE TABLE AIRPORTS (AirportCode VARCHAR)"}, {"answer": "SELECT T1.AirportCode FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport OR T1.AirportCode = T2.SourceAirport GROUP BY T1.AirportCode ORDER BY COUNT(*) LIMIT 1", "question": "What is the code of airport that has fewest number of flights?", "context": "CREATE TABLE FLIGHTS (DestAirport VARCHAR, SourceAirport VARCHAR); CREATE TABLE AIRPORTS (AirportCode VARCHAR)"}, {"answer": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which airline has most number of flights?", "context": "CREATE TABLE FLIGHTS (Airline VARCHAR); CREATE TABLE AIRLINES (Airline VARCHAR, uid VARCHAR)"}, {"answer": "SELECT T1.Abbreviation, T1.Country FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline ORDER BY COUNT(*) LIMIT 1", "question": "Find the abbreviation and country of the airline that has fewest number of flights?", "context": "CREATE TABLE FLIGHTS (Airline VARCHAR); CREATE TABLE AIRLINES (Abbreviation VARCHAR, Country VARCHAR, Airline VARCHAR, uid VARCHAR)"}, {"answer": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"AHD\"", "question": "What are airlines that have some flight departing from airport 'AHD'?", "context": "CREATE TABLE AIRLINES (Airline VARCHAR, uid VARCHAR); CREATE TABLE FLIGHTS (Airline VARCHAR, SourceAirport VARCHAR)"}, {"answer": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.DestAirport = \"AHD\"", "question": "What are airlines that have flights arriving at airport 'AHD'?", "context": "CREATE TABLE AIRLINES (Airline VARCHAR, uid VARCHAR); CREATE TABLE FLIGHTS (Airline VARCHAR, DestAirport VARCHAR)"}, {"answer": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"APG\" INTERSECT SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"CVO\"", "question": "Find all airlines that have flights from both airports 'APG' and 'CVO'.", "context": "CREATE TABLE AIRLINES (Airline VARCHAR, uid VARCHAR); CREATE TABLE FLIGHTS (Airline VARCHAR, SourceAirport VARCHAR)"}, {"answer": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"CVO\" EXCEPT SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"APG\"", "question": "Find all airlines that have flights from airport 'CVO' but not from 'APG'.", "context": "CREATE TABLE AIRLINES (Airline VARCHAR, uid VARCHAR); CREATE TABLE FLIGHTS (Airline VARCHAR, SourceAirport VARCHAR)"}, {"answer": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline HAVING COUNT(*) > 10", "question": "Find all airlines that have at least 10 flights.", "context": "CREATE TABLE FLIGHTS (Airline VARCHAR); CREATE TABLE AIRLINES (Airline VARCHAR, uid VARCHAR)"}, {"answer": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline HAVING COUNT(*) < 200", "question": "Find all airlines that have fewer than 200 flights.", "context": "CREATE TABLE FLIGHTS (Airline VARCHAR); CREATE TABLE AIRLINES (Airline VARCHAR, uid VARCHAR)"}, {"answer": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRLINES AS T2 ON T2.uid = T1.Airline WHERE T2.Airline = \"United Airlines\"", "question": "What are flight numbers of Airline \"United Airlines\"?", "context": "CREATE TABLE AIRLINES (uid VARCHAR, Airline VARCHAR); CREATE TABLE FLIGHTS (FlightNo VARCHAR, Airline VARCHAR)"}, {"answer": "SELECT FlightNo FROM FLIGHTS WHERE SourceAirport = \"APG\"", "question": "What are flight numbers of flights departing from Airport \"APG\"?", "context": "CREATE TABLE FLIGHTS (FlightNo VARCHAR, SourceAirport VARCHAR)"}, {"answer": "SELECT FlightNo FROM FLIGHTS WHERE DestAirport = \"APG\"", "question": "What are flight numbers of flights arriving at Airport \"APG\"?", "context": "CREATE TABLE FLIGHTS (FlightNo VARCHAR, DestAirport VARCHAR)"}, {"answer": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.SourceAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", "question": "What are flight numbers of flights departing from City \"Aberdeen \"?", "context": "CREATE TABLE FLIGHTS (FlightNo VARCHAR, SourceAirport VARCHAR); CREATE TABLE AIRPORTS (AirportCode VARCHAR, City VARCHAR)"}, {"answer": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", "question": "What are flight numbers of flights arriving at City \"Aberdeen\"?", "context": "CREATE TABLE FLIGHTS (FlightNo VARCHAR, DestAirport VARCHAR); CREATE TABLE AIRPORTS (AirportCode VARCHAR, City VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Flights AS T1 JOIN Airports AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.city = \"Aberdeen\" OR T2.city = \"Abilene\"", "question": "Find the number of flights landing in the city of Aberdeen or Abilene.", "context": "CREATE TABLE Airports (AirportCode VARCHAR, city VARCHAR); CREATE TABLE Flights (DestAirport VARCHAR)"}, {"answer": "SELECT AirportName FROM Airports WHERE NOT AirportCode IN (SELECT SourceAirport FROM Flights UNION SELECT DestAirport FROM Flights)", "question": "Find the name of airports which do not have any flight in and out.", "context": "CREATE TABLE Flights (AirportName VARCHAR, AirportCode VARCHAR, SourceAirport VARCHAR, DestAirport VARCHAR); CREATE TABLE Airports (AirportName VARCHAR, AirportCode VARCHAR, SourceAirport VARCHAR, DestAirport VARCHAR)"}, {"answer": "SELECT name FROM employee ORDER BY age", "question": "Sort employee names by their age in ascending order.", "context": "CREATE TABLE employee (name VARCHAR, age VARCHAR)"}, {"answer": "SELECT COUNT(*), city FROM employee GROUP BY city", "question": "What is the number of employees from each city?", "context": "CREATE TABLE employee (city VARCHAR)"}, {"answer": "SELECT city FROM employee WHERE age < 30 GROUP BY city HAVING COUNT(*) > 1", "question": "Which cities do more than one employee under age 30 come from?", "context": "CREATE TABLE employee (city VARCHAR, age INTEGER)"}, {"answer": "SELECT COUNT(*), LOCATION FROM shop GROUP BY LOCATION", "question": "Find the number of shops in each location.", "context": "CREATE TABLE shop (LOCATION VARCHAR)"}, {"answer": "SELECT manager_name, district FROM shop ORDER BY number_products DESC LIMIT 1", "question": "Find the manager name and district of the shop whose number of products is the largest.", "context": "CREATE TABLE shop (manager_name VARCHAR, district VARCHAR, number_products VARCHAR)"}, {"answer": "SELECT MIN(Number_products), MAX(Number_products) FROM shop", "question": "find the minimum and maximum number of products of all stores.", "context": "CREATE TABLE shop (Number_products INTEGER)"}, {"answer": "SELECT name, LOCATION, district FROM shop ORDER BY number_products DESC", "question": "Return the name, location and district of all shops in descending order of number of products.", "context": "CREATE TABLE shop (name VARCHAR, LOCATION VARCHAR, district VARCHAR, number_products VARCHAR)"}, {"answer": "SELECT name FROM shop WHERE number_products > (SELECT AVG(number_products) FROM shop)", "question": "Find the names of stores whose number products is more than the average number of products.", "context": "CREATE TABLE shop (name VARCHAR, number_products INTEGER)"}, {"answer": "SELECT t1.name FROM employee AS t1 JOIN evaluation AS t2 ON t1.Employee_ID = t2.Employee_ID GROUP BY t2.Employee_ID ORDER BY COUNT(*) DESC LIMIT 1", "question": "find the name of employee who was awarded the most times in the evaluation.", "context": "CREATE TABLE evaluation (Employee_ID VARCHAR); CREATE TABLE employee (name VARCHAR, Employee_ID VARCHAR)"}, {"answer": "SELECT t1.name FROM employee AS t1 JOIN evaluation AS t2 ON t1.Employee_ID = t2.Employee_ID ORDER BY t2.bonus DESC LIMIT 1", "question": "Find the name of the employee who got the highest one time bonus.", "context": "CREATE TABLE evaluation (Employee_ID VARCHAR, bonus VARCHAR); CREATE TABLE employee (name VARCHAR, Employee_ID VARCHAR)"}, {"answer": "SELECT name FROM employee WHERE NOT Employee_ID IN (SELECT Employee_ID FROM evaluation)", "question": "Find the names of employees who never won any award in the evaluation.", "context": "CREATE TABLE evaluation (name VARCHAR, Employee_ID VARCHAR); CREATE TABLE employee (name VARCHAR, Employee_ID VARCHAR)"}, {"answer": "SELECT t2.name FROM hiring AS t1 JOIN shop AS t2 ON t1.shop_id = t2.shop_id GROUP BY t1.shop_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the shop that is hiring the largest number of employees?", "context": "CREATE TABLE shop (name VARCHAR, shop_id VARCHAR); CREATE TABLE hiring (shop_id VARCHAR)"}, {"answer": "SELECT name FROM shop WHERE NOT shop_id IN (SELECT shop_id FROM hiring)", "question": "Find the name of the shops that do not hire any employee.", "context": "CREATE TABLE shop (name VARCHAR, shop_id VARCHAR); CREATE TABLE hiring (name VARCHAR, shop_id VARCHAR)"}, {"answer": "SELECT COUNT(*), t2.name FROM hiring AS t1 JOIN shop AS t2 ON t1.shop_id = t2.shop_id GROUP BY t2.name", "question": "Find the number of employees hired in each shop; show the shop name as well.", "context": "CREATE TABLE shop (name VARCHAR, shop_id VARCHAR); CREATE TABLE hiring (shop_id VARCHAR)"}, {"answer": "SELECT SUM(bonus) FROM evaluation", "question": "What is total bonus given in all evaluations?", "context": "CREATE TABLE evaluation (bonus INTEGER)"}, {"answer": "SELECT * FROM hiring", "question": "Give me all the information about hiring.", "context": "CREATE TABLE hiring (Id VARCHAR)"}, {"answer": "SELECT district FROM shop WHERE Number_products < 3000 INTERSECT SELECT district FROM shop WHERE Number_products > 10000", "question": "Which district has both stores with less than 3000 products and stores with more than 10000 products?", "context": "CREATE TABLE shop (district VARCHAR, Number_products INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT LOCATION) FROM shop", "question": "How many different store locations are there?", "context": "CREATE TABLE shop (LOCATION VARCHAR)"}, {"answer": "SELECT document_id, document_name, document_description FROM Documents", "question": "List document IDs, document names, and document descriptions for all documents.", "context": "CREATE TABLE Documents (document_id VARCHAR, document_name VARCHAR, document_description VARCHAR)"}, {"answer": "SELECT document_name, template_id FROM Documents WHERE Document_Description LIKE \"%w%\"", "question": "What is the document name and template id for document with description with the letter 'w' in it?", "context": "CREATE TABLE Documents (document_name VARCHAR, template_id VARCHAR, Document_Description VARCHAR)"}, {"answer": "SELECT document_id, template_id, Document_Description FROM Documents WHERE document_name = \"Robbin CV\"", "question": "What is the document id, template id and description for document named \"Robbin CV\"?", "context": "CREATE TABLE Documents (document_id VARCHAR, template_id VARCHAR, Document_Description VARCHAR, document_name VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT template_id) FROM Documents", "question": "How many different templates do all document use?", "context": "CREATE TABLE Documents (template_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Documents AS T1 JOIN Templates AS T2 ON T1.Template_ID = T2.Template_ID WHERE T2.Template_Type_Code = 'PPT'", "question": "How many documents are using the template with type code 'PPT'?", "context": "CREATE TABLE Templates (Template_ID VARCHAR, Template_Type_Code VARCHAR); CREATE TABLE Documents (Template_ID VARCHAR)"}, {"answer": "SELECT template_id, COUNT(*) FROM Documents GROUP BY template_id", "question": "Show all template ids and number of documents using each template.", "context": "CREATE TABLE Documents (template_id VARCHAR)"}, {"answer": "SELECT T1.template_id, T2.Template_Type_Code FROM Documents AS T1 JOIN Templates AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the id and type code for the template used by the most documents?", "context": "CREATE TABLE Documents (template_id VARCHAR); CREATE TABLE Templates (Template_Type_Code VARCHAR, template_id VARCHAR)"}, {"answer": "SELECT template_id FROM Documents GROUP BY template_id HAVING COUNT(*) > 1", "question": "Show ids for all templates that are used by more than one document.", "context": "CREATE TABLE Documents (template_id VARCHAR)"}, {"answer": "SELECT template_id FROM Templates EXCEPT SELECT template_id FROM Documents", "question": "Show ids for all templates not used by any document.", "context": "CREATE TABLE Documents (template_id VARCHAR); CREATE TABLE Templates (template_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Templates", "question": "How many templates do we have?", "context": "CREATE TABLE Templates (Id VARCHAR)"}, {"answer": "SELECT template_id, version_number, template_type_code FROM Templates", "question": "Show template ids, version numbers, and template type codes for all templates.", "context": "CREATE TABLE Templates (template_id VARCHAR, version_number VARCHAR, template_type_code VARCHAR)"}, {"answer": "SELECT DISTINCT template_type_code FROM Templates", "question": "Show all distinct template type codes for all templates.", "context": "CREATE TABLE Templates (template_type_code VARCHAR)"}, {"answer": "SELECT template_id FROM Templates WHERE template_type_code = \"PP\" OR template_type_code = \"PPT\"", "question": "What are the ids of templates with template type code PP or PPT?", "context": "CREATE TABLE Templates (template_id VARCHAR, template_type_code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Templates WHERE template_type_code = \"CV\"", "question": "How many templates have template type code CV?", "context": "CREATE TABLE Templates (template_type_code VARCHAR)"}, {"answer": "SELECT version_number, template_type_code FROM Templates WHERE version_number > 5", "question": "What is the version number and template type code for the template with version number later than 5?", "context": "CREATE TABLE Templates (version_number INTEGER, template_type_code VARCHAR)"}, {"answer": "SELECT template_type_code, COUNT(*) FROM Templates GROUP BY template_type_code", "question": "Show all template type codes and number of templates for each.", "context": "CREATE TABLE Templates (template_type_code VARCHAR)"}, {"answer": "SELECT template_type_code FROM Templates GROUP BY template_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which template type code has most number of templates?", "context": "CREATE TABLE Templates (template_type_code VARCHAR)"}, {"answer": "SELECT template_type_code FROM Templates GROUP BY template_type_code HAVING COUNT(*) < 3", "question": "Show all template type codes with less than three templates.", "context": "CREATE TABLE Templates (template_type_code VARCHAR)"}, {"answer": "SELECT MIN(Version_Number), template_type_code FROM Templates", "question": "What the smallest version number and its template type code?", "context": "CREATE TABLE Templates (template_type_code VARCHAR, Version_Number INTEGER)"}, {"answer": "SELECT T1.template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id WHERE T2.document_name = \"Data base\"", "question": "What is the template type code of the template used by document with the name \"Data base\"?", "context": "CREATE TABLE Templates (template_type_code VARCHAR, template_id VARCHAR); CREATE TABLE Documents (template_id VARCHAR, document_name VARCHAR)"}, {"answer": "SELECT T2.document_name FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id WHERE T1.template_type_code = \"BK\"", "question": "Show all document names using templates with template type code BK.", "context": "CREATE TABLE Documents (document_name VARCHAR, template_id VARCHAR); CREATE TABLE Templates (template_id VARCHAR, template_type_code VARCHAR)"}, {"answer": "SELECT T1.template_type_code, COUNT(*) FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_type_code", "question": "Show all template type codes and the number of documents using each type.", "context": "CREATE TABLE Documents (template_id VARCHAR); CREATE TABLE Templates (template_type_code VARCHAR, template_id VARCHAR)"}, {"answer": "SELECT T1.template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_type_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which template type code is used by most number of documents?", "context": "CREATE TABLE Documents (template_id VARCHAR); CREATE TABLE Templates (template_type_code VARCHAR, template_id VARCHAR)"}, {"answer": "SELECT template_type_code FROM Templates EXCEPT SELECT template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id", "question": "Show all template type codes that are not used by any document.", "context": "CREATE TABLE Documents (template_id VARCHAR); CREATE TABLE Templates (template_id VARCHAR); CREATE TABLE Templates (template_type_code VARCHAR)"}, {"answer": "SELECT template_type_code, template_type_description FROM Ref_template_types", "question": "Show all template type codes and descriptions.", "context": "CREATE TABLE Ref_template_types (template_type_code VARCHAR, template_type_description VARCHAR)"}, {"answer": "SELECT template_type_description FROM Ref_template_types WHERE template_type_code = \"AD\"", "question": "What is the template type descriptions for template type code \"AD\".", "context": "CREATE TABLE Ref_template_types (template_type_description VARCHAR, template_type_code VARCHAR)"}, {"answer": "SELECT template_type_code FROM Ref_template_types WHERE template_type_description = \"Book\"", "question": "What is the template type code for template type description \"Book\".", "context": "CREATE TABLE Ref_template_types (template_type_code VARCHAR, template_type_description VARCHAR)"}, {"answer": "SELECT DISTINCT T1.template_type_description FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code JOIN Documents AS T3 ON T2.Template_ID = T3.template_ID", "question": "What are the distinct template type descriptions for the templates ever used by any document?", "context": "CREATE TABLE Templates (template_type_code VARCHAR, Template_ID VARCHAR); CREATE TABLE Documents (template_ID VARCHAR); CREATE TABLE Ref_template_types (template_type_description VARCHAR, template_type_code VARCHAR)"}, {"answer": "SELECT T2.template_id FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code WHERE T1.template_type_description = \"Presentation\"", "question": "What are the template ids with template type description \"Presentation\".", "context": "CREATE TABLE Templates (template_id VARCHAR, template_type_code VARCHAR); CREATE TABLE Ref_template_types (template_type_code VARCHAR, template_type_description VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Paragraphs", "question": "How many paragraphs in total?", "context": "CREATE TABLE Paragraphs (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_ID = T2.document_ID WHERE T2.document_name = 'Summer Show'", "question": "How many paragraphs for the document with name 'Summer Show'?", "context": "CREATE TABLE Documents (document_ID VARCHAR, document_name VARCHAR); CREATE TABLE Paragraphs (document_ID VARCHAR)"}, {"answer": "SELECT other_details FROM paragraphs WHERE paragraph_text LIKE 'korea'", "question": "Show paragraph details for paragraph with text 'Korea ' .", "context": "CREATE TABLE paragraphs (other_details VARCHAR, paragraph_text VARCHAR)"}, {"answer": "SELECT T1.paragraph_id, T1.paragraph_text FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id WHERE T2.Document_Name = 'Welcome to NY'", "question": "Show all paragraph ids and texts for the document with name 'Welcome to NY'.", "context": "CREATE TABLE Documents (document_id VARCHAR, Document_Name VARCHAR); CREATE TABLE Paragraphs (paragraph_id VARCHAR, paragraph_text VARCHAR, document_id VARCHAR)"}, {"answer": "SELECT T1.paragraph_text FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id WHERE T2.document_name = \"Customer reviews\"", "question": "Show all paragraph texts for the document \"Customer reviews\".", "context": "CREATE TABLE Paragraphs (paragraph_text VARCHAR, document_id VARCHAR); CREATE TABLE Documents (document_id VARCHAR, document_name VARCHAR)"}, {"answer": "SELECT document_id, COUNT(*) FROM Paragraphs GROUP BY document_id ORDER BY document_id", "question": "Show all document ids and the number of paragraphs in each document. Order by document id.", "context": "CREATE TABLE Paragraphs (document_id VARCHAR)"}, {"answer": "SELECT T1.document_id, T2.document_name, COUNT(*) FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id GROUP BY T1.document_id", "question": "Show all document ids, names and the number of paragraphs in each document.", "context": "CREATE TABLE Documents (document_name VARCHAR, document_id VARCHAR); CREATE TABLE Paragraphs (document_id VARCHAR)"}, {"answer": "SELECT document_id FROM Paragraphs GROUP BY document_id HAVING COUNT(*) >= 2", "question": "List all document ids with at least two paragraphs.", "context": "CREATE TABLE Paragraphs (document_id VARCHAR)"}, {"answer": "SELECT T1.document_id, T2.document_name FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id GROUP BY T1.document_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the document id and name with greatest number of paragraphs?", "context": "CREATE TABLE Documents (document_name VARCHAR, document_id VARCHAR); CREATE TABLE Paragraphs (document_id VARCHAR)"}, {"answer": "SELECT document_id FROM Paragraphs GROUP BY document_id ORDER BY COUNT(*) LIMIT 1", "question": "What is the document id with least number of paragraphs?", "context": "CREATE TABLE Paragraphs (document_id VARCHAR)"}, {"answer": "SELECT document_id FROM Paragraphs GROUP BY document_id HAVING COUNT(*) BETWEEN 1 AND 2", "question": "What is the document id with 1 to 2 paragraphs?", "context": "CREATE TABLE Paragraphs (document_id VARCHAR)"}, {"answer": "SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Brazil' INTERSECT SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Ireland'", "question": "Show the document id with paragraph text 'Brazil' and 'Ireland'.", "context": "CREATE TABLE Paragraphs (document_id VARCHAR, paragraph_text VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM teacher", "question": "How many teachers are there?", "context": "CREATE TABLE teacher (Id VARCHAR)"}, {"answer": "SELECT Name FROM teacher ORDER BY Age", "question": "List the names of teachers in ascending order of age.", "context": "CREATE TABLE teacher (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Age, Hometown FROM teacher", "question": "What are the age and hometown of teachers?", "context": "CREATE TABLE teacher (Age VARCHAR, Hometown VARCHAR)"}, {"answer": "SELECT name FROM teacher WHERE hometown <> \"little lever urban district\"", "question": "List the name of teachers whose hometown is not `` Little Lever Urban District '' .", "context": "CREATE TABLE teacher (name VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT Name FROM teacher WHERE Age = 32 OR Age = 33", "question": "Show the name of teachers aged either 32 or 33?", "context": "CREATE TABLE teacher (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Hometown FROM teacher ORDER BY Age LIMIT 1", "question": "What is the hometown of the youngest teacher?", "context": "CREATE TABLE teacher (Hometown VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Hometown, COUNT(*) FROM teacher GROUP BY Hometown", "question": "Show different hometown of teachers and the number of teachers from each hometown.", "context": "CREATE TABLE teacher (Hometown VARCHAR)"}, {"answer": "SELECT Hometown FROM teacher GROUP BY Hometown ORDER BY COUNT(*) DESC LIMIT 1", "question": "List the most common hometown of teachers.", "context": "CREATE TABLE teacher (Hometown VARCHAR)"}, {"answer": "SELECT Hometown FROM teacher GROUP BY Hometown HAVING COUNT(*) >= 2", "question": "Show the hometowns shared by at least two teachers.", "context": "CREATE TABLE teacher (Hometown VARCHAR)"}, {"answer": "SELECT T3.Name, T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID", "question": "Show names of teachers and the courses they are arranged to teach.", "context": "CREATE TABLE course_arrange (Course_ID VARCHAR, Teacher_ID VARCHAR); CREATE TABLE teacher (Name VARCHAR, Teacher_ID VARCHAR); CREATE TABLE course (Course VARCHAR, Course_ID VARCHAR)"}, {"answer": "SELECT T3.Name, T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID ORDER BY T3.Name", "question": "Show names of teachers and the courses they are arranged to teach in ascending alphabetical order of the teacher's name.", "context": "CREATE TABLE course_arrange (Course_ID VARCHAR, Teacher_ID VARCHAR); CREATE TABLE teacher (Name VARCHAR, Teacher_ID VARCHAR); CREATE TABLE course (Course VARCHAR, Course_ID VARCHAR)"}, {"answer": "SELECT T3.Name FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID WHERE T2.Course = \"Math\"", "question": "Show the name of the teacher for the math course.", "context": "CREATE TABLE course_arrange (Course_ID VARCHAR, Teacher_ID VARCHAR); CREATE TABLE course (Course_ID VARCHAR, Course VARCHAR); CREATE TABLE teacher (Name VARCHAR, Teacher_ID VARCHAR)"}, {"answer": "SELECT T2.Name, COUNT(*) FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name", "question": "Show names of teachers and the number of courses they teach.", "context": "CREATE TABLE teacher (Name VARCHAR, Teacher_ID VARCHAR); CREATE TABLE course_arrange (Teacher_ID VARCHAR)"}, {"answer": "SELECT T2.Name FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name HAVING COUNT(*) >= 2", "question": "Show names of teachers that teach at least two courses.", "context": "CREATE TABLE teacher (Name VARCHAR, Teacher_ID VARCHAR); CREATE TABLE course_arrange (Teacher_ID VARCHAR)"}, {"answer": "SELECT Name FROM teacher WHERE NOT Teacher_id IN (SELECT Teacher_id FROM course_arrange)", "question": "List the names of teachers who have not been arranged to teach courses.", "context": "CREATE TABLE course_arrange (Name VARCHAR, Teacher_id VARCHAR); CREATE TABLE teacher (Name VARCHAR, Teacher_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM visitor WHERE age < 30", "question": "How many visitors below age 30 are there?", "context": "CREATE TABLE visitor (age INTEGER)"}, {"answer": "SELECT name FROM visitor WHERE Level_of_membership > 4 ORDER BY Level_of_membership DESC", "question": "Find the names of the visitors whose membership level is higher than 4, and order the results by the level from high to low.", "context": "CREATE TABLE visitor (name VARCHAR, Level_of_membership INTEGER)"}, {"answer": "SELECT AVG(age) FROM visitor WHERE Level_of_membership <= 4", "question": "What is the average age of the visitors whose membership level is not higher than 4?", "context": "CREATE TABLE visitor (age INTEGER, Level_of_membership VARCHAR)"}, {"answer": "SELECT name, Level_of_membership FROM visitor WHERE Level_of_membership > 4 ORDER BY age DESC", "question": "Find the name and membership level of the visitors whose membership level is higher than 4, and sort by their age from old to young.", "context": "CREATE TABLE visitor (name VARCHAR, Level_of_membership INTEGER, age VARCHAR)"}, {"answer": "SELECT museum_id, name FROM museum ORDER BY num_of_staff DESC LIMIT 1", "question": "Find the id and name of the museum that has the most staff members?", "context": "CREATE TABLE museum (museum_id VARCHAR, name VARCHAR, num_of_staff VARCHAR)"}, {"answer": "SELECT AVG(num_of_staff) FROM museum WHERE open_year < 2009", "question": "Find the average number of staff working for the museums that were open before 2009.", "context": "CREATE TABLE museum (num_of_staff INTEGER, open_year INTEGER)"}, {"answer": "SELECT Num_of_Staff, Open_Year FROM museum WHERE name = 'Plaza Museum'", "question": "What are the opening year and staff number of the museum named Plaza Museum?", "context": "CREATE TABLE museum (Num_of_Staff VARCHAR, Open_Year VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM museum WHERE num_of_staff > (SELECT MIN(num_of_staff) FROM museum WHERE open_year > 2010)", "question": "find the names of museums which have more staff than the minimum staff number of all museums opened after 2010.", "context": "CREATE TABLE museum (name VARCHAR, num_of_staff INTEGER, open_year INTEGER)"}, {"answer": "SELECT t1.id, t1.name, t1.age FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id GROUP BY t1.id HAVING COUNT(*) > 1", "question": "find the id, name and age for visitors who visited some museums more than once.", "context": "CREATE TABLE visit (visitor_id VARCHAR); CREATE TABLE visitor (id VARCHAR, name VARCHAR, age VARCHAR)"}, {"answer": "SELECT t2.visitor_id, t1.name, t1.Level_of_membership FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id GROUP BY t2.visitor_id ORDER BY SUM(t2.Total_spent) DESC LIMIT 1", "question": "What are the id, name and membership level of visitors who have spent the largest amount of money in total in all museum tickets?", "context": "CREATE TABLE visit (visitor_id VARCHAR, Total_spent INTEGER); CREATE TABLE visitor (name VARCHAR, Level_of_membership VARCHAR, id VARCHAR)"}, {"answer": "SELECT t2.Museum_ID, t1.name FROM museum AS t1 JOIN visit AS t2 ON t1.Museum_ID = t2.Museum_ID GROUP BY t2.Museum_ID ORDER BY COUNT(*) DESC LIMIT 1", "question": "What are the id and name of the museum visited most times?", "context": "CREATE TABLE museum (name VARCHAR, Museum_ID VARCHAR); CREATE TABLE visit (Museum_ID VARCHAR)"}, {"answer": "SELECT name FROM museum WHERE NOT Museum_ID IN (SELECT museum_id FROM visit)", "question": "What is the name of the museum that had no visitor yet?", "context": "CREATE TABLE visit (name VARCHAR, Museum_ID VARCHAR, museum_id VARCHAR); CREATE TABLE museum (name VARCHAR, Museum_ID VARCHAR, museum_id VARCHAR)"}, {"answer": "SELECT t1.name, t1.age FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id ORDER BY t2.num_of_ticket DESC LIMIT 1", "question": "Find the name and age of the visitor who bought the most tickets at once.", "context": "CREATE TABLE visitor (name VARCHAR, age VARCHAR, id VARCHAR); CREATE TABLE visit (visitor_id VARCHAR, num_of_ticket VARCHAR)"}, {"answer": "SELECT AVG(num_of_ticket), MAX(num_of_ticket) FROM visit", "question": "What are the average and maximum number of tickets bought in all visits?", "context": "CREATE TABLE visit (num_of_ticket INTEGER)"}, {"answer": "SELECT SUM(t2.Total_spent) FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id WHERE t1.Level_of_membership = 1", "question": "What is the total ticket expense of the visitors whose membership level is 1?", "context": "CREATE TABLE visit (Total_spent INTEGER, visitor_id VARCHAR); CREATE TABLE visitor (id VARCHAR, Level_of_membership VARCHAR)"}, {"answer": "SELECT t1.name FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id JOIN museum AS t3 ON t3.Museum_ID = t2.Museum_ID WHERE t3.open_year < 2009 INTERSECT SELECT t1.name FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id JOIN museum AS t3 ON t3.Museum_ID = t2.Museum_ID WHERE t3.open_year > 2011", "question": "What is the name of the visitor who visited both a museum opened before 2009 and a museum opened after 2011?", "context": "CREATE TABLE visitor (name VARCHAR, id VARCHAR); CREATE TABLE museum (Museum_ID VARCHAR, open_year INTEGER); CREATE TABLE visit (visitor_id VARCHAR, Museum_ID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM visitor WHERE NOT id IN (SELECT t2.visitor_id FROM museum AS t1 JOIN visit AS t2 ON t1.Museum_ID = t2.Museum_ID WHERE t1.open_year > 2010)", "question": "Find the number of visitors who did not visit any museum opened after 2010.", "context": "CREATE TABLE museum (Museum_ID VARCHAR, open_year INTEGER); CREATE TABLE visitor (id VARCHAR); CREATE TABLE visit (visitor_id VARCHAR, Museum_ID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM museum WHERE open_year > 2013 OR open_year < 2008", "question": "How many museums were opened after 2013 or before 2008?", "context": "CREATE TABLE museum (open_year VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM players", "question": "Find the total number of players.", "context": "CREATE TABLE players (Id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM matches", "question": "Find the total number of matches.", "context": "CREATE TABLE matches (Id VARCHAR)"}, {"answer": "SELECT first_name, birth_date FROM players WHERE country_code = 'USA'", "question": "List the first name and birth date of all players from the country with code USA.", "context": "CREATE TABLE players (first_name VARCHAR, birth_date VARCHAR, country_code VARCHAR)"}, {"answer": "SELECT AVG(loser_age), AVG(winner_age) FROM matches", "question": "Find the average age of losers and winners of all matches.", "context": "CREATE TABLE matches (loser_age INTEGER, winner_age INTEGER)"}, {"answer": "SELECT AVG(winner_rank) FROM matches", "question": "Find the average rank of winners in all matches.", "context": "CREATE TABLE matches (winner_rank INTEGER)"}, {"answer": "SELECT MIN(loser_rank) FROM matches", "question": "Find the highest rank of losers in all matches.", "context": "CREATE TABLE matches (loser_rank INTEGER)"}, {"answer": "SELECT COUNT(DISTINCT country_code) FROM players", "question": "find the number of distinct country codes of all players.", "context": "CREATE TABLE players (country_code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT loser_name) FROM matches", "question": "Find the number of distinct name of losers.", "context": "CREATE TABLE matches (loser_name VARCHAR)"}, {"answer": "SELECT tourney_name FROM matches GROUP BY tourney_name HAVING COUNT(*) > 10", "question": "Find the name of tourney that has more than 10 matches.", "context": "CREATE TABLE matches (tourney_name VARCHAR)"}, {"answer": "SELECT winner_name FROM matches WHERE YEAR = 2013 INTERSECT SELECT winner_name FROM matches WHERE YEAR = 2016", "question": "List the names of all winners who played in both 2013 and 2016.", "context": "CREATE TABLE matches (winner_name VARCHAR, YEAR VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM matches WHERE YEAR = 2013 OR YEAR = 2016", "question": "List the number of all matches who played in years of 2013 or 2016.", "context": "CREATE TABLE matches (YEAR VARCHAR)"}, {"answer": "SELECT T1.country_code, T1.first_name FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id WHERE T2.tourney_name = 'WTA Championships' INTERSECT SELECT T1.country_code, T1.first_name FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id WHERE T2.tourney_name = 'Australian Open'", "question": "What are the country code and first name of the players who won in both tourney WTA Championships and Australian Open?", "context": "CREATE TABLE matches (winner_id VARCHAR, tourney_name VARCHAR); CREATE TABLE players (country_code VARCHAR, first_name VARCHAR, player_id VARCHAR)"}, {"answer": "SELECT first_name, country_code FROM players ORDER BY birth_date LIMIT 1", "question": "Find the first name and country code of the oldest player.", "context": "CREATE TABLE players (first_name VARCHAR, country_code VARCHAR, birth_date VARCHAR)"}, {"answer": "SELECT first_name, last_name FROM players ORDER BY birth_date", "question": "List the first and last name of all players in the order of birth date.", "context": "CREATE TABLE players (first_name VARCHAR, last_name VARCHAR, birth_date VARCHAR)"}, {"answer": "SELECT first_name, last_name FROM players WHERE hand = 'L' ORDER BY birth_date", "question": "List the first and last name of all players who are left / L hand in the order of birth date.", "context": "CREATE TABLE players (first_name VARCHAR, last_name VARCHAR, hand VARCHAR, birth_date VARCHAR)"}, {"answer": "SELECT T1.country_code, T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id ORDER BY T2.tours DESC LIMIT 1", "question": "Find the first name and country code of the player who did the most number of tours.", "context": "CREATE TABLE players (country_code VARCHAR, first_name VARCHAR, player_id VARCHAR); CREATE TABLE rankings (player_id VARCHAR, tours VARCHAR)"}, {"answer": "SELECT YEAR FROM matches GROUP BY YEAR ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the year that has the most number of matches.", "context": "CREATE TABLE matches (YEAR VARCHAR)"}, {"answer": "SELECT winner_name, winner_rank_points FROM matches GROUP BY winner_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the name and rank points of the winner who won the most times.", "context": "CREATE TABLE matches (winner_name VARCHAR, winner_rank_points VARCHAR)"}, {"answer": "SELECT winner_name FROM matches WHERE tourney_name = 'Australian Open' ORDER BY winner_rank_points DESC LIMIT 1", "question": "Find the name of the winner who has the highest rank points and participated in the Australian Open tourney.", "context": "CREATE TABLE matches (winner_name VARCHAR, tourney_name VARCHAR, winner_rank_points VARCHAR)"}, {"answer": "SELECT winner_name, loser_name FROM matches ORDER BY minutes DESC LIMIT 1", "question": "find the names of loser and winner who played in the match with greatest number of minutes.", "context": "CREATE TABLE matches (winner_name VARCHAR, loser_name VARCHAR, minutes VARCHAR)"}, {"answer": "SELECT AVG(ranking), T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id GROUP BY T1.first_name", "question": "Find the average ranking for each player and their first name.", "context": "CREATE TABLE players (first_name VARCHAR, player_id VARCHAR); CREATE TABLE rankings (player_id VARCHAR)"}, {"answer": "SELECT SUM(ranking_points), T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id GROUP BY T1.first_name", "question": "Find the total ranking points for each player and their first name.", "context": "CREATE TABLE players (first_name VARCHAR, player_id VARCHAR); CREATE TABLE rankings (player_id VARCHAR)"}, {"answer": "SELECT COUNT(*), country_code FROM players GROUP BY country_code", "question": "find the number of players for each country.", "context": "CREATE TABLE players (country_code VARCHAR)"}, {"answer": "SELECT country_code FROM players GROUP BY country_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "find the code of the country where has the greatest number of players.", "context": "CREATE TABLE players (country_code VARCHAR)"}, {"answer": "SELECT country_code FROM players GROUP BY country_code HAVING COUNT(*) > 50", "question": "Find the codes of countries that have more than 50 players.", "context": "CREATE TABLE players (country_code VARCHAR)"}, {"answer": "SELECT SUM(tours), ranking_date FROM rankings GROUP BY ranking_date", "question": "Find the total number of tours for each ranking date.", "context": "CREATE TABLE rankings (ranking_date VARCHAR, tours INTEGER)"}, {"answer": "SELECT COUNT(*), YEAR FROM matches GROUP BY YEAR", "question": "Find the number of matches happened in each year.", "context": "CREATE TABLE matches (YEAR VARCHAR)"}, {"answer": "SELECT DISTINCT winner_name, winner_rank FROM matches ORDER BY winner_age LIMIT 3", "question": "Find the name and rank of the 3 youngest winners across all matches.", "context": "CREATE TABLE matches (winner_name VARCHAR, winner_rank VARCHAR, winner_age VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT winner_name) FROM matches WHERE tourney_name = 'WTA Championships' AND winner_hand = 'L'", "question": "How many different winners both participated in the WTA Championships and were left handed?", "context": "CREATE TABLE matches (winner_name VARCHAR, tourney_name VARCHAR, winner_hand VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.country_code, T1.birth_date FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id ORDER BY T2.winner_rank_points DESC LIMIT 1", "question": "Find the first name, country code and birth date of the winner who has the highest rank points in all matches.", "context": "CREATE TABLE players (first_name VARCHAR, country_code VARCHAR, birth_date VARCHAR, player_id VARCHAR); CREATE TABLE matches (winner_id VARCHAR, winner_rank_points VARCHAR)"}, {"answer": "SELECT COUNT(*), hand FROM players GROUP BY hand", "question": "Find the number of players for each hand type.", "context": "CREATE TABLE players (hand VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM ship WHERE disposition_of_ship = 'Captured'", "question": "How many ships ended up being 'Captured'?", "context": "CREATE TABLE ship (disposition_of_ship VARCHAR)"}, {"answer": "SELECT name, tonnage FROM ship ORDER BY name DESC", "question": "List the name and tonnage ordered by in descending alphaetical order for the names.", "context": "CREATE TABLE ship (name VARCHAR, tonnage VARCHAR)"}, {"answer": "SELECT name, date FROM battle", "question": "List the name, date and result of each battle.", "context": "CREATE TABLE battle (name VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(killed), MIN(killed) FROM death", "question": "What is maximum and minimum death toll caused each time?", "context": "CREATE TABLE death (killed INTEGER)"}, {"answer": "SELECT AVG(injured) FROM death", "question": "What is the average number of injuries caused each time?", "context": "CREATE TABLE death (injured INTEGER)"}, {"answer": "SELECT T1.killed, T1.injured FROM death AS T1 JOIN ship AS t2 ON T1.caused_by_ship_id = T2.id WHERE T2.tonnage = 't'", "question": "What are the death and injury situations caused by the ship with tonnage 't'?", "context": "CREATE TABLE ship (Id VARCHAR); CREATE TABLE death (killed VARCHAR, injured VARCHAR, caused_by_ship_id VARCHAR)"}, {"answer": "SELECT name, RESULT FROM battle WHERE bulgarian_commander <> 'Boril'", "question": "What are the name and results of the battles when the bulgarian commander is not 'Boril'", "context": "CREATE TABLE battle (name VARCHAR, RESULT VARCHAR, bulgarian_commander VARCHAR)"}, {"answer": "SELECT DISTINCT T1.id, T1.name FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.ship_type = 'Brig'", "question": "What are the different ids and names of the battles that lost any 'Brig' type shipes?", "context": "CREATE TABLE ship (lost_in_battle VARCHAR, ship_type VARCHAR); CREATE TABLE battle (id VARCHAR, name VARCHAR)"}, {"answer": "SELECT T1.id, T1.name FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle JOIN death AS T3 ON T2.id = T3.caused_by_ship_id GROUP BY T1.id HAVING SUM(T3.killed) > 10", "question": "What are the ids and names of the battles that led to more than 10 people killed in total.", "context": "CREATE TABLE death (caused_by_ship_id VARCHAR, killed INTEGER); CREATE TABLE battle (id VARCHAR, name VARCHAR); CREATE TABLE ship (lost_in_battle VARCHAR, id VARCHAR)"}, {"answer": "SELECT T2.id, T2.name FROM death AS T1 JOIN ship AS t2 ON T1.caused_by_ship_id = T2.id GROUP BY T2.id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the ship id and name that caused most total injuries?", "context": "CREATE TABLE death (caused_by_ship_id VARCHAR); CREATE TABLE ship (Id VARCHAR)"}, {"answer": "SELECT name FROM battle WHERE bulgarian_commander = 'Kaloyan' AND latin_commander = 'Baldwin I'", "question": "What are the distinct battle names which are between bulgarian commander 'Kaloyan' and latin commander 'Baldwin I'?", "context": "CREATE TABLE battle (name VARCHAR, bulgarian_commander VARCHAR, latin_commander VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT RESULT) FROM battle", "question": "How many different results are there for the battles?", "context": "CREATE TABLE battle (RESULT VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM battle WHERE NOT id IN (SELECT lost_in_battle FROM ship WHERE tonnage = '225')", "question": "How many battles did not lose any ship with tonnage '225'?", "context": "CREATE TABLE ship (id VARCHAR, lost_in_battle VARCHAR, tonnage VARCHAR); CREATE TABLE battle (id VARCHAR, lost_in_battle VARCHAR, tonnage VARCHAR)"}, {"answer": "SELECT T1.name, T1.date FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.name = 'Lettice' INTERSECT SELECT T1.name, T1.date FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.name = 'HMS Atalanta'", "question": "List the name and date the battle that has lost the ship named 'Lettice' and the ship named 'HMS Atalanta'", "context": "CREATE TABLE ship (lost_in_battle VARCHAR, name VARCHAR); CREATE TABLE battle (name VARCHAR, date VARCHAR, id VARCHAR)"}, {"answer": "SELECT name, RESULT, bulgarian_commander FROM battle EXCEPT SELECT T1.name, T1.result, T1.bulgarian_commander FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.location = 'English Channel'", "question": "Show names, results and bulgarian commanders of the battles with no ships lost in the 'English Channel'.", "context": "CREATE TABLE ship (lost_in_battle VARCHAR, location VARCHAR); CREATE TABLE battle (name VARCHAR, RESULT VARCHAR, bulgarian_commander VARCHAR); CREATE TABLE battle (name VARCHAR, result VARCHAR, bulgarian_commander VARCHAR, id VARCHAR)"}, {"answer": "SELECT note FROM death WHERE note LIKE '%East%'", "question": "What are the notes of the death events which has substring 'East'?", "context": "CREATE TABLE death (note VARCHAR)"}, {"answer": "SELECT line_1, line_2 FROM addresses", "question": "what are all the addresses including line 1 and line 2?", "context": "CREATE TABLE addresses (line_1 VARCHAR, line_2 VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Courses", "question": "How many courses in total are listed?", "context": "CREATE TABLE Courses (Id VARCHAR)"}, {"answer": "SELECT course_description FROM Courses WHERE course_name = 'math'", "question": "How is the math course described?", "context": "CREATE TABLE Courses (course_description VARCHAR, course_name VARCHAR)"}, {"answer": "SELECT zip_postcode FROM Addresses WHERE city = 'Port Chelsea'", "question": "What is the zip code of the address in the city Port Chelsea?", "context": "CREATE TABLE Addresses (zip_postcode VARCHAR, city VARCHAR)"}, {"answer": "SELECT T2.department_name, T1.department_id FROM Degree_Programs AS T1 JOIN Departments AS T2 ON T1.department_id = T2.department_id GROUP BY T1.department_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which department offers the most number of degrees? List department name and id.", "context": "CREATE TABLE Degree_Programs (department_id VARCHAR); CREATE TABLE Departments (department_name VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT t2.department_name, t1.department_id FROM degree_programs AS t1 JOIN departments AS t2 ON t1.department_id = t2.department_id GROUP BY t1.department_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name and id of the department with the most number of degrees ?", "context": "CREATE TABLE degree_programs (department_id VARCHAR); CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT department_id) FROM Degree_Programs", "question": "How many departments offer any degree?", "context": "CREATE TABLE Degree_Programs (department_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT degree_summary_name) FROM Degree_Programs", "question": "How many different degree names are offered?", "context": "CREATE TABLE Degree_Programs (degree_summary_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Departments AS T1 JOIN Degree_Programs AS T2 ON T1.department_id = T2.department_id WHERE T1.department_name = 'engineer'", "question": "How many degrees does the engineering department offer?", "context": "CREATE TABLE Degree_Programs (department_id VARCHAR); CREATE TABLE Departments (department_id VARCHAR, department_name VARCHAR)"}, {"answer": "SELECT section_name, section_description FROM Sections", "question": "What are the names and descriptions of all the sections?", "context": "CREATE TABLE Sections (section_name VARCHAR, section_description VARCHAR)"}, {"answer": "SELECT T1.course_name, T1.course_id FROM Courses AS T1 JOIN Sections AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_id HAVING COUNT(*) <= 2", "question": "What are the names and id of courses having at most 2 sections?", "context": "CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Sections (course_id VARCHAR)"}, {"answer": "SELECT section_name FROM Sections ORDER BY section_name DESC", "question": "List the section_name in reversed lexicographical order.", "context": "CREATE TABLE Sections (section_name VARCHAR)"}, {"answer": "SELECT T1.semester_name, T1.semester_id FROM Semesters AS T1 JOIN Student_Enrolment AS T2 ON T1.semester_id = T2.semester_id GROUP BY T1.semester_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the semester which most student registered in? Show both the name and the id.", "context": "CREATE TABLE Student_Enrolment (semester_id VARCHAR); CREATE TABLE Semesters (semester_name VARCHAR, semester_id VARCHAR)"}, {"answer": "SELECT department_description FROM Departments WHERE department_name LIKE '%computer%'", "question": "What is the description of the department whose name has the substring the computer?", "context": "CREATE TABLE Departments (department_description VARCHAR, department_name VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.middle_name, T1.last_name, T1.student_id FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING COUNT(*) = 2", "question": "Who are enrolled in 2 degree programs in one semester? List the first name, middle name and last name and the id.", "context": "CREATE TABLE Students (first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, student_id VARCHAR); CREATE TABLE Student_Enrolment (student_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.first_name, T1.middle_name, T1.last_name FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id JOIN Degree_Programs AS T3 ON T2.degree_program_id = T3.degree_program_id WHERE T3.degree_summary_name = 'Bachelor'", "question": "Who is enrolled in a Bachelor degree program? List the first name, middle name, last name.", "context": "CREATE TABLE Degree_Programs (degree_program_id VARCHAR, degree_summary_name VARCHAR); CREATE TABLE Students (first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, student_id VARCHAR); CREATE TABLE Student_Enrolment (student_id VARCHAR, degree_program_id VARCHAR)"}, {"answer": "SELECT T1.degree_summary_name FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id GROUP BY T1.degree_summary_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the kind of program which most number of students are enrolled in?", "context": "CREATE TABLE Student_Enrolment (degree_program_id VARCHAR); CREATE TABLE Degree_Programs (degree_summary_name VARCHAR, degree_program_id VARCHAR)"}, {"answer": "SELECT T1.degree_program_id, T1.degree_summary_name FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id GROUP BY T1.degree_program_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Find the program which most number of students are enrolled in. List both the id and the summary.", "context": "CREATE TABLE Degree_Programs (degree_program_id VARCHAR, degree_summary_name VARCHAR); CREATE TABLE Student_Enrolment (degree_program_id VARCHAR)"}, {"answer": "SELECT T1.student_id, T1.first_name, T1.middle_name, T1.last_name, COUNT(*), T1.student_id FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which student has enrolled for the most times in any program? List the id, first name, middle name, last name, the number of enrollments and student id.", "context": "CREATE TABLE Students (student_id VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR); CREATE TABLE Student_Enrolment (student_id VARCHAR)"}, {"answer": "SELECT semester_name FROM Semesters WHERE NOT semester_id IN (SELECT semester_id FROM Student_Enrolment)", "question": "Which semesters do not have any student enrolled? List the semester name.", "context": "CREATE TABLE Student_Enrolment (semester_name VARCHAR, semester_id VARCHAR); CREATE TABLE Semesters (semester_name VARCHAR, semester_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.course_name FROM Courses AS T1 JOIN Student_Enrolment_Courses AS T2 ON T1.course_id = T2.course_id", "question": "What are all the course names of the courses which ever have students enrolled in?", "context": "CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Enrolment_Courses (course_id VARCHAR)"}, {"answer": "SELECT T1.course_name FROM Courses AS T1 JOIN Student_Enrolment_Courses AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "What's the name of the course with most number of enrollments?", "context": "CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Enrolment_Courses (course_id VARCHAR)"}, {"answer": "SELECT T1.last_name FROM Students AS T1 JOIN Addresses AS T2 ON T1.current_address_id = T2.address_id WHERE T2.state_province_county = 'NorthCarolina' EXCEPT SELECT DISTINCT T3.last_name FROM Students AS T3 JOIN Student_Enrolment AS T4 ON T3.student_id = T4.student_id", "question": "Find the last name of the students who currently live in the state of North Carolina but have not registered in any degree program.", "context": "CREATE TABLE Addresses (address_id VARCHAR, state_province_county VARCHAR); CREATE TABLE Students (last_name VARCHAR, current_address_id VARCHAR); CREATE TABLE Students (last_name VARCHAR, student_id VARCHAR); CREATE TABLE Student_Enrolment (student_id VARCHAR)"}, {"answer": "SELECT T2.transcript_date, T1.transcript_id FROM Transcript_Contents AS T1 JOIN Transcripts AS T2 ON T1.transcript_id = T2.transcript_id GROUP BY T1.transcript_id HAVING COUNT(*) >= 2", "question": "Show the date and id of the transcript with at least 2 course results.", "context": "CREATE TABLE Transcript_Contents (transcript_id VARCHAR); CREATE TABLE Transcripts (transcript_date VARCHAR, transcript_id VARCHAR)"}, {"answer": "SELECT cell_mobile_number FROM Students WHERE first_name = 'Timmothy' AND last_name = 'Ward'", "question": "What is the phone number of the man with the first name Timmothy and the last name Ward?", "context": "CREATE TABLE Students (cell_mobile_number VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT cell_mobile_number FROM students WHERE first_name = 'timmothy' AND last_name = 'ward'", "question": "What is the mobile phone number of the student named Timmothy Ward ?", "context": "CREATE TABLE students (cell_mobile_number VARCHAR, first_name VARCHAR, last_name VARCHAR)"}, {"answer": "SELECT first_name, middle_name, last_name FROM Students ORDER BY date_first_registered LIMIT 1", "question": "Who is the first student to register? List the first name, middle name and last name.", "context": "CREATE TABLE Students (first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, date_first_registered VARCHAR)"}, {"answer": "SELECT first_name, middle_name, last_name FROM Students ORDER BY date_left LIMIT 1", "question": "Who is the earliest graduate of the school? List the first name, middle name and last name.", "context": "CREATE TABLE Students (first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, date_left VARCHAR)"}, {"answer": "SELECT first_name FROM Students WHERE current_address_id <> permanent_address_id", "question": "Whose permanent address is different from his or her current address? List his or her first name.", "context": "CREATE TABLE Students (first_name VARCHAR, current_address_id VARCHAR, permanent_address_id VARCHAR)"}, {"answer": "SELECT T1.address_id, T1.line_1, T1.line_2 FROM Addresses AS T1 JOIN Students AS T2 ON T1.address_id = T2.current_address_id GROUP BY T1.address_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which address holds the most number of students currently? List the address id and all lines.", "context": "CREATE TABLE Addresses (address_id VARCHAR, line_1 VARCHAR, line_2 VARCHAR); CREATE TABLE Students (current_address_id VARCHAR)"}, {"answer": "SELECT AVG(transcript_date) FROM Transcripts", "question": "On average, when were the transcripts printed?", "context": "CREATE TABLE Transcripts (transcript_date INTEGER)"}, {"answer": "SELECT transcript_date, other_details FROM Transcripts ORDER BY transcript_date LIMIT 1", "question": "When is the first transcript released? List the date and details.", "context": "CREATE TABLE Transcripts (transcript_date VARCHAR, other_details VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Transcripts", "question": "How many transcripts are released?", "context": "CREATE TABLE Transcripts (Id VARCHAR)"}, {"answer": "SELECT transcript_date FROM Transcripts ORDER BY transcript_date DESC LIMIT 1", "question": "What is the last transcript release date?", "context": "CREATE TABLE Transcripts (transcript_date VARCHAR)"}, {"answer": "SELECT COUNT(*), student_course_id FROM Transcript_Contents GROUP BY student_course_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "How many times at most can a course enrollment result show in different transcripts? Also show the course enrollment id.", "context": "CREATE TABLE Transcript_Contents (student_course_id VARCHAR)"}, {"answer": "SELECT T2.transcript_date, T1.transcript_id FROM Transcript_Contents AS T1 JOIN Transcripts AS T2 ON T1.transcript_id = T2.transcript_id GROUP BY T1.transcript_id ORDER BY COUNT(*) LIMIT 1", "question": "Show the date of the transcript which shows the least number of results, also list the id.", "context": "CREATE TABLE Transcript_Contents (transcript_id VARCHAR); CREATE TABLE Transcripts (transcript_date VARCHAR, transcript_id VARCHAR)"}, {"answer": "SELECT DISTINCT T2.semester_id FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id WHERE degree_summary_name = 'Master' INTERSECT SELECT DISTINCT T2.semester_id FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id WHERE degree_summary_name = 'Bachelor'", "question": "Find the semester when both Master students and Bachelor students got enrolled in.", "context": "CREATE TABLE Degree_Programs (degree_program_id VARCHAR); CREATE TABLE Student_Enrolment (semester_id VARCHAR, degree_program_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT current_address_id) FROM Students", "question": "How many different addresses do the students currently live?", "context": "CREATE TABLE Students (current_address_id VARCHAR)"}, {"answer": "SELECT other_student_details FROM Students ORDER BY other_student_details DESC", "question": "List all the student details in reversed lexicographical order.", "context": "CREATE TABLE Students (other_student_details VARCHAR)"}, {"answer": "SELECT section_description FROM Sections WHERE section_name = 'h'", "question": "Describe the section h.", "context": "CREATE TABLE Sections (section_description VARCHAR, section_name VARCHAR)"}, {"answer": "SELECT t1.first_name FROM students AS t1 JOIN addresses AS t2 ON t1.permanent_address_id = t2.address_id WHERE t2.country = 'haiti' OR t1.cell_mobile_number = '09700166582'", "question": "Find the first name of the students who permanently live in the country Haiti or have the cell phone number 09700166582 .", "context": "CREATE TABLE students (first_name VARCHAR, permanent_address_id VARCHAR, cell_mobile_number VARCHAR); CREATE TABLE addresses (address_id VARCHAR, country VARCHAR)"}, {"answer": "SELECT Title FROM Cartoon ORDER BY title", "question": "List the title of all cartoons in alphabetical order.", "context": "CREATE TABLE Cartoon (Title VARCHAR, title VARCHAR)"}, {"answer": "SELECT Title FROM Cartoon WHERE Directed_by = \"Ben Jones\"", "question": "List all cartoon directed by \"Ben Jones\".", "context": "CREATE TABLE Cartoon (Title VARCHAR, Directed_by VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Cartoon WHERE Written_by = \"Joseph Kuhr\"", "question": "How many cartoons were written by \"Joseph Kuhr\"?", "context": "CREATE TABLE Cartoon (Written_by VARCHAR)"}, {"answer": "SELECT title, Directed_by FROM Cartoon ORDER BY Original_air_date", "question": "list all cartoon titles and their directors ordered by their air date", "context": "CREATE TABLE Cartoon (title VARCHAR, Directed_by VARCHAR, Original_air_date VARCHAR)"}, {"answer": "SELECT Title FROM Cartoon WHERE Directed_by = \"Ben Jones\" OR Directed_by = \"Brandon Vietti\"", "question": "List the title of all cartoon directed by \"Ben Jones\" or \"Brandon Vietti\".", "context": "CREATE TABLE Cartoon (Title VARCHAR, Directed_by VARCHAR)"}, {"answer": "SELECT Country, COUNT(*) FROM TV_Channel GROUP BY Country ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which country has the most of TV Channels? List the country and number of TV Channels it has.", "context": "CREATE TABLE TV_Channel (Country VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT series_name), COUNT(DISTINCT content) FROM TV_Channel", "question": "List the number of different series names and contents in the TV Channel table.", "context": "CREATE TABLE TV_Channel (series_name VARCHAR, content VARCHAR)"}, {"answer": "SELECT Content FROM TV_Channel WHERE series_name = \"Sky Radio\"", "question": "What is the content of TV Channel with serial name \"Sky Radio\"?", "context": "CREATE TABLE TV_Channel (Content VARCHAR, series_name VARCHAR)"}, {"answer": "SELECT Package_Option FROM TV_Channel WHERE series_name = \"Sky Radio\"", "question": "What is the Package Option of TV Channel with serial name \"Sky Radio\"?", "context": "CREATE TABLE TV_Channel (Package_Option VARCHAR, series_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM TV_Channel WHERE LANGUAGE = \"English\"", "question": "How many TV Channel using language English?", "context": "CREATE TABLE TV_Channel (LANGUAGE VARCHAR)"}, {"answer": "SELECT LANGUAGE, COUNT(*) FROM TV_Channel GROUP BY LANGUAGE ORDER BY COUNT(*) LIMIT 1", "question": "List the language used least number of TV Channel. List language and number of TV Channel.", "context": "CREATE TABLE TV_Channel (LANGUAGE VARCHAR)"}, {"answer": "SELECT LANGUAGE, COUNT(*) FROM TV_Channel GROUP BY LANGUAGE", "question": "List each language and the number of TV Channels using it.", "context": "CREATE TABLE TV_Channel (LANGUAGE VARCHAR)"}, {"answer": "SELECT T1.series_name FROM TV_Channel AS T1 JOIN Cartoon AS T2 ON T1.id = T2.Channel WHERE T2.Title = \"The Rise of the Blue Beetle!\"", "question": "What is the TV Channel that shows the cartoon \"The Rise of the Blue Beetle!\"? List the TV Channel's series name.", "context": "CREATE TABLE Cartoon (Channel VARCHAR, Title VARCHAR); CREATE TABLE TV_Channel (series_name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T2.Title FROM TV_Channel AS T1 JOIN Cartoon AS T2 ON T1.id = T2.Channel WHERE T1.series_name = \"Sky Radio\"", "question": "List the title of all  Cartoons showed on TV Channel with series name \"Sky Radio\".", "context": "CREATE TABLE Cartoon (Title VARCHAR, Channel VARCHAR); CREATE TABLE TV_Channel (id VARCHAR, series_name VARCHAR)"}, {"answer": "SELECT Episode FROM TV_series ORDER BY rating", "question": "List the Episode of all TV series sorted by rating.", "context": "CREATE TABLE TV_series (Episode VARCHAR, rating VARCHAR)"}, {"answer": "SELECT Episode, Rating FROM TV_series ORDER BY Rating DESC LIMIT 3", "question": "List top 3 highest Rating  TV series. List the TV series's Episode and Rating.", "context": "CREATE TABLE TV_series (Episode VARCHAR, Rating VARCHAR)"}, {"answer": "SELECT MAX(SHARE), MIN(SHARE) FROM TV_series", "question": "What is minimum and maximum share of TV series?", "context": "CREATE TABLE TV_series (SHARE INTEGER)"}, {"answer": "SELECT Air_Date FROM TV_series WHERE Episode = \"A Love of a Lifetime\"", "question": "What is the air date of TV series with Episode \"A Love of a Lifetime\"?", "context": "CREATE TABLE TV_series (Air_Date VARCHAR, Episode VARCHAR)"}, {"answer": "SELECT Weekly_Rank FROM TV_series WHERE Episode = \"A Love of a Lifetime\"", "question": "What is Weekly Rank of TV series with Episode \"A Love of a Lifetime\"?", "context": "CREATE TABLE TV_series (Weekly_Rank VARCHAR, Episode VARCHAR)"}, {"answer": "SELECT T1.series_name FROM TV_Channel AS T1 JOIN TV_series AS T2 ON T1.id = T2.Channel WHERE T2.Episode = \"A Love of a Lifetime\"", "question": "What is the TV Channel of TV series with Episode \"A Love of a Lifetime\"? List the TV Channel's series name.", "context": "CREATE TABLE TV_series (Channel VARCHAR, Episode VARCHAR); CREATE TABLE TV_Channel (series_name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T2.Episode FROM TV_Channel AS T1 JOIN TV_series AS T2 ON T1.id = T2.Channel WHERE T1.series_name = \"Sky Radio\"", "question": "List the Episode of all  TV series showed on TV Channel with series name \"Sky Radio\".", "context": "CREATE TABLE TV_Channel (id VARCHAR, series_name VARCHAR); CREATE TABLE TV_series (Episode VARCHAR, Channel VARCHAR)"}, {"answer": "SELECT COUNT(*), Directed_by FROM cartoon GROUP BY Directed_by", "question": "Find the number of cartoons directed by each of the listed directors.", "context": "CREATE TABLE cartoon (Directed_by VARCHAR)"}, {"answer": "SELECT production_code, channel FROM cartoon ORDER BY original_air_date DESC LIMIT 1", "question": "Find the production code and channel of the most recently aired cartoon .", "context": "CREATE TABLE cartoon (production_code VARCHAR, channel VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT package_option, series_name FROM TV_Channel WHERE hight_definition_TV = \"yes\"", "question": "Find the package choice and series name of the TV channel that has high definition TV.", "context": "CREATE TABLE TV_Channel (package_option VARCHAR, series_name VARCHAR, hight_definition_TV VARCHAR)"}, {"answer": "SELECT T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.written_by = 'Todd Casey'", "question": "which countries' tv channels are playing some cartoon written by Todd Casey?", "context": "CREATE TABLE TV_Channel (country VARCHAR, id VARCHAR); CREATE TABLE cartoon (Channel VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT country FROM TV_Channel EXCEPT SELECT T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.written_by = 'Todd Casey'", "question": "which countries' tv channels are not playing any cartoon written by Todd Casey?", "context": "CREATE TABLE TV_Channel (country VARCHAR, id VARCHAR); CREATE TABLE TV_Channel (country VARCHAR); CREATE TABLE cartoon (Channel VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT T1.series_name, T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.directed_by = 'Michael Chang' INTERSECT SELECT T1.series_name, T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.directed_by = 'Ben Jones'", "question": "Find the series name and country of the tv channel that is playing some cartoons directed by Ben Jones and Michael Chang?", "context": "CREATE TABLE TV_Channel (series_name VARCHAR, country VARCHAR, id VARCHAR); CREATE TABLE cartoon (Channel VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT Pixel_aspect_ratio_PAR, country FROM tv_channel WHERE LANGUAGE <> 'English'", "question": "find the pixel aspect ratio and nation of the tv channels that do not use English.", "context": "CREATE TABLE tv_channel (Pixel_aspect_ratio_PAR VARCHAR, country VARCHAR, LANGUAGE VARCHAR)"}, {"answer": "SELECT id FROM tv_channel GROUP BY country HAVING COUNT(*) > 2", "question": "find id of the tv channels that from the countries where have more than two tv channels.", "context": "CREATE TABLE tv_channel (id VARCHAR, country VARCHAR)"}, {"answer": "SELECT id FROM TV_Channel EXCEPT SELECT channel FROM cartoon WHERE directed_by = 'Ben Jones'", "question": "find the id of tv channels that do not play any cartoon directed by Ben Jones.", "context": "CREATE TABLE TV_Channel (id VARCHAR, channel VARCHAR, directed_by VARCHAR); CREATE TABLE cartoon (id VARCHAR, channel VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT package_option FROM TV_Channel WHERE NOT id IN (SELECT channel FROM cartoon WHERE directed_by = 'Ben Jones')", "question": "find the package option of the tv channel that do not have any cartoon directed by Ben Jones.", "context": "CREATE TABLE cartoon (package_option VARCHAR, id VARCHAR, channel VARCHAR, directed_by VARCHAR); CREATE TABLE TV_Channel (package_option VARCHAR, id VARCHAR, channel VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM poker_player", "question": "How many poker players are there?", "context": "CREATE TABLE poker_player (Id VARCHAR)"}, {"answer": "SELECT Earnings FROM poker_player ORDER BY Earnings DESC", "question": "List the earnings of poker players in descending order.", "context": "CREATE TABLE poker_player (Earnings VARCHAR)"}, {"answer": "SELECT Final_Table_Made, Best_Finish FROM poker_player", "question": "List the final tables made and the best finishes of poker players.", "context": "CREATE TABLE poker_player (Final_Table_Made VARCHAR, Best_Finish VARCHAR)"}, {"answer": "SELECT AVG(Earnings) FROM poker_player", "question": "What is the average earnings of poker players?", "context": "CREATE TABLE poker_player (Earnings INTEGER)"}, {"answer": "SELECT Money_Rank FROM poker_player ORDER BY Earnings DESC LIMIT 1", "question": "What is the money rank of the poker player with the highest earnings?", "context": "CREATE TABLE poker_player (Money_Rank VARCHAR, Earnings VARCHAR)"}, {"answer": "SELECT MAX(Final_Table_Made) FROM poker_player WHERE Earnings < 200000", "question": "What is the maximum number of final tables made among poker players with earnings less than 200000?", "context": "CREATE TABLE poker_player (Final_Table_Made INTEGER, Earnings INTEGER)"}, {"answer": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID", "question": "What are the names of poker players?", "context": "CREATE TABLE poker_player (People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Earnings > 300000", "question": "What are the names of poker players whose earnings is higher than 300000?", "context": "CREATE TABLE poker_player (People_ID VARCHAR, Earnings INTEGER); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Final_Table_Made", "question": "List the names of poker players ordered by the final tables made in ascending order.", "context": "CREATE TABLE poker_player (People_ID VARCHAR, Final_Table_Made VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T1.Birth_Date FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Earnings LIMIT 1", "question": "What is the birth date of the poker player with the lowest earnings?", "context": "CREATE TABLE poker_player (People_ID VARCHAR, Earnings VARCHAR); CREATE TABLE people (Birth_Date VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT T2.Money_Rank FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Height DESC LIMIT 1", "question": "What is the money rank of the tallest poker player?", "context": "CREATE TABLE people (People_ID VARCHAR, Height VARCHAR); CREATE TABLE poker_player (Money_Rank VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT AVG(T2.Earnings) FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Height > 200", "question": "What is the average earnings of poker players with height higher than 200?", "context": "CREATE TABLE people (People_ID VARCHAR, Height INTEGER); CREATE TABLE poker_player (Earnings INTEGER, People_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Earnings DESC", "question": "What are the names of poker players in descending order of earnings?", "context": "CREATE TABLE poker_player (People_ID VARCHAR, Earnings VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT Nationality, COUNT(*) FROM people GROUP BY Nationality", "question": "What are different nationalities of people and the corresponding number of people from each nation?", "context": "CREATE TABLE people (Nationality VARCHAR)"}, {"answer": "SELECT Nationality FROM people GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most common nationality of people?", "context": "CREATE TABLE people (Nationality VARCHAR)"}, {"answer": "SELECT Nationality FROM people GROUP BY Nationality HAVING COUNT(*) >= 2", "question": "What are the nationalities that are shared by at least two people?", "context": "CREATE TABLE people (Nationality VARCHAR)"}, {"answer": "SELECT Name, Birth_Date FROM people ORDER BY Name", "question": "List the names and birth dates of people in ascending alphabetical order of name.", "context": "CREATE TABLE people (Name VARCHAR, Birth_Date VARCHAR)"}, {"answer": "SELECT Name FROM people WHERE Nationality <> \"Russia\"", "question": "Show names of people whose nationality is not \"Russia\".", "context": "CREATE TABLE people (Name VARCHAR, Nationality VARCHAR)"}, {"answer": "SELECT Name FROM people WHERE NOT People_ID IN (SELECT People_ID FROM poker_player)", "question": "List the names of people that are not poker players.", "context": "CREATE TABLE poker_player (Name VARCHAR, People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Nationality) FROM people", "question": "How many distinct nationalities are there?", "context": "CREATE TABLE people (Nationality VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM area_code_state", "question": "How many states are there?", "context": "CREATE TABLE area_code_state (Id VARCHAR)"}, {"answer": "SELECT contestant_number, contestant_name FROM contestants ORDER BY contestant_name DESC", "question": "List the contestant numbers and names, ordered by contestant name descending.", "context": "CREATE TABLE contestants (contestant_number VARCHAR, contestant_name VARCHAR)"}, {"answer": "SELECT vote_id, phone_number, state FROM votes", "question": "List the vote ids, phone numbers and states of all votes.", "context": "CREATE TABLE votes (vote_id VARCHAR, phone_number VARCHAR, state VARCHAR)"}, {"answer": "SELECT MAX(area_code), MIN(area_code) FROM area_code_state", "question": "What are the maximum and minimum values of area codes?", "context": "CREATE TABLE area_code_state (area_code INTEGER)"}, {"answer": "SELECT MAX(created) FROM votes WHERE state = 'CA'", "question": "What is last date created of votes from the state 'CA'?", "context": "CREATE TABLE votes (created INTEGER, state VARCHAR)"}, {"answer": "SELECT contestant_name FROM contestants WHERE contestant_name <> 'Jessie Alloway'", "question": "What are the names of the contestants whose names are not 'Jessie Alloway'", "context": "CREATE TABLE contestants (contestant_name VARCHAR)"}, {"answer": "SELECT DISTINCT state, created FROM votes", "question": "What are the distinct states and create time of all votes?", "context": "CREATE TABLE votes (state VARCHAR, created VARCHAR)"}, {"answer": "SELECT T1.contestant_number, T1.contestant_name FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number GROUP BY T1.contestant_number HAVING COUNT(*) >= 2", "question": "What are the contestant numbers and names of the contestants who had at least two votes?", "context": "CREATE TABLE votes (contestant_number VARCHAR); CREATE TABLE contestants (contestant_number VARCHAR, contestant_name VARCHAR)"}, {"answer": "SELECT T1.contestant_number, T1.contestant_name FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number GROUP BY T1.contestant_number ORDER BY COUNT(*) LIMIT 1", "question": "Of all the contestants who got voted, what is the contestant number and name of the contestant who got least votes?", "context": "CREATE TABLE votes (contestant_number VARCHAR); CREATE TABLE contestants (contestant_number VARCHAR, contestant_name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM votes WHERE state = 'NY' OR state = 'CA'", "question": "What are the number of votes from state 'NY' or 'CA'?", "context": "CREATE TABLE votes (state VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM contestants WHERE NOT contestant_number IN (SELECT contestant_number FROM votes)", "question": "How many contestants did not get voted?", "context": "CREATE TABLE contestants (contestant_number VARCHAR); CREATE TABLE votes (contestant_number VARCHAR)"}, {"answer": "SELECT T1.area_code FROM area_code_state AS T1 JOIN votes AS T2 ON T1.state = T2.state GROUP BY T1.area_code ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the area code in which the most voters voted?", "context": "CREATE TABLE area_code_state (area_code VARCHAR, state VARCHAR); CREATE TABLE votes (state VARCHAR)"}, {"answer": "SELECT T2.created, T2.state, T2.phone_number FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number WHERE T1.contestant_name = 'Tabatha Gehling'", "question": "What are the create dates, states, and phone numbers of the votes that were for the contestant named 'Tabatha Gehling'?", "context": "CREATE TABLE contestants (contestant_number VARCHAR, contestant_name VARCHAR); CREATE TABLE votes (created VARCHAR, state VARCHAR, phone_number VARCHAR, contestant_number VARCHAR)"}, {"answer": "SELECT T3.area_code FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number JOIN area_code_state AS T3 ON T2.state = T3.state WHERE T1.contestant_name = 'Tabatha Gehling' INTERSECT SELECT T3.area_code FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number JOIN area_code_state AS T3 ON T2.state = T3.state WHERE T1.contestant_name = 'Kelly Clauss'", "question": "List the area codes in which voters voted both for the contestant 'Tabatha Gehling' and the contestant 'Kelly Clauss'.", "context": "CREATE TABLE votes (contestant_number VARCHAR, state VARCHAR); CREATE TABLE contestants (contestant_number VARCHAR, contestant_name VARCHAR); CREATE TABLE area_code_state (area_code VARCHAR, state VARCHAR)"}, {"answer": "SELECT contestant_name FROM contestants WHERE contestant_name LIKE \"%al%\"", "question": "Return the names of the contestants whose names contain the substring 'Al' .", "context": "CREATE TABLE contestants (contestant_name VARCHAR)"}, {"answer": "SELECT Name FROM country WHERE IndepYear > 1950", "question": "What are the names of all the countries that became independent after 1950?", "context": "CREATE TABLE country (Name VARCHAR, IndepYear INTEGER)"}, {"answer": "SELECT COUNT(*) FROM country WHERE GovernmentForm = \"Republic\"", "question": "How many countries have a republic as their form of government?", "context": "CREATE TABLE country (GovernmentForm VARCHAR)"}, {"answer": "SELECT SUM(SurfaceArea) FROM country WHERE Region = \"Caribbean\"", "question": "What is the total surface area of the countries in the Caribbean region?", "context": "CREATE TABLE country (SurfaceArea INTEGER, Region VARCHAR)"}, {"answer": "SELECT Continent FROM country WHERE Name = \"Anguilla\"", "question": "Which continent is Anguilla in?", "context": "CREATE TABLE country (Continent VARCHAR, Name VARCHAR)"}, {"answer": "SELECT Region FROM country AS T1 JOIN city AS T2 ON T1.Code = T2.CountryCode WHERE T2.Name = \"Kabul\"", "question": "Which region is the city Kabul located in?", "context": "CREATE TABLE country (Code VARCHAR); CREATE TABLE city (CountryCode VARCHAR, Name VARCHAR)"}, {"answer": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Aruba\" ORDER BY Percentage DESC LIMIT 1", "question": "Which language is the most popular in Aruba?", "context": "CREATE TABLE country (Code VARCHAR, Name VARCHAR); CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR)"}, {"answer": "SELECT Population, LifeExpectancy FROM country WHERE Name = \"Brazil\"", "question": "What are the population and life expectancies in Brazil?", "context": "CREATE TABLE country (Population VARCHAR, LifeExpectancy VARCHAR, Name VARCHAR)"}, {"answer": "SELECT Population, Region FROM country WHERE Name = \"Angola\"", "question": "What are the region and population of Angola?", "context": "CREATE TABLE country (Population VARCHAR, Region VARCHAR, Name VARCHAR)"}, {"answer": "SELECT AVG(LifeExpectancy) FROM country WHERE Region = \"Central Africa\"", "question": "What is the average expected life expectancy for countries in the region of Central Africa?", "context": "CREATE TABLE country (LifeExpectancy INTEGER, Region VARCHAR)"}, {"answer": "SELECT Name FROM country WHERE Continent = \"Asia\" ORDER BY LifeExpectancy LIMIT 1", "question": "What is the name of country that has the shortest life expectancy in Asia?", "context": "CREATE TABLE country (Name VARCHAR, Continent VARCHAR, LifeExpectancy VARCHAR)"}, {"answer": "SELECT SUM(Population), MAX(GNP) FROM country WHERE Continent = \"Asia\"", "question": "What is the total population and maximum GNP in Asia?", "context": "CREATE TABLE country (Population INTEGER, GNP INTEGER, Continent VARCHAR)"}, {"answer": "SELECT AVG(LifeExpectancy) FROM country WHERE Continent = \"Africa\" AND GovernmentForm = \"Republic\"", "question": "What is the average life expectancy in African countries that are republics?", "context": "CREATE TABLE country (LifeExpectancy INTEGER, Continent VARCHAR, GovernmentForm VARCHAR)"}, {"answer": "SELECT SUM(SurfaceArea) FROM country WHERE Continent = \"Asia\" OR Continent = \"Europe\"", "question": "What is the total surface area of the continents Asia and Europe?", "context": "CREATE TABLE country (SurfaceArea INTEGER, Continent VARCHAR)"}, {"answer": "SELECT SUM(Population) FROM city WHERE District = \"Gelderland\"", "question": "How many people live in Gelderland district?", "context": "CREATE TABLE city (Population INTEGER, District VARCHAR)"}, {"answer": "SELECT AVG(GNP), SUM(population) FROM country WHERE GovernmentForm = \"US Territory\"", "question": "What is the average GNP and total population in all nations whose government is US territory?", "context": "CREATE TABLE country (GNP INTEGER, population INTEGER, GovernmentForm VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT LANGUAGE) FROM countrylanguage", "question": "How many unique languages are spoken in the world?", "context": "CREATE TABLE countrylanguage (LANGUAGE VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT GovernmentForm) FROM country WHERE Continent = \"Africa\"", "question": "How many type of governments are in Africa?", "context": "CREATE TABLE country (GovernmentForm VARCHAR, Continent VARCHAR)"}, {"answer": "SELECT COUNT(T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Aruba\"", "question": "What is the total number of languages used in Aruba?", "context": "CREATE TABLE country (Code VARCHAR, Name VARCHAR); CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Afghanistan\" AND IsOfficial = \"T\"", "question": "How many official languages does Afghanistan have?", "context": "CREATE TABLE country (Code VARCHAR, Name VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR)"}, {"answer": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Name ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is name of the country that speaks the largest number of languages?", "context": "CREATE TABLE countrylanguage (CountryCode VARCHAR); CREATE TABLE country (Name VARCHAR, Code VARCHAR)"}, {"answer": "SELECT T1.Continent FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Continent ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which continent has the most diverse languages?", "context": "CREATE TABLE countrylanguage (CountryCode VARCHAR); CREATE TABLE country (Continent VARCHAR, Code VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Dutch\")", "question": "How many countries speak both English and Dutch?", "context": "CREATE TABLE country (Name VARCHAR, Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR)"}, {"answer": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"French\"", "question": "What are the names of nations speak both English and French?", "context": "CREATE TABLE country (Name VARCHAR, Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR)"}, {"answer": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND T2.IsOfficial = \"T\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"French\" AND T2.IsOfficial = \"T\"", "question": "What are the names of nations where both English and French are official languages?", "context": "CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR, IsOfficial VARCHAR); CREATE TABLE country (Name VARCHAR, Code VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Continent) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Chinese\"", "question": "What is the number of distinct continents where Chinese is spoken?", "context": "CREATE TABLE country (Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Region FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" OR T2.Language = \"Dutch\"", "question": "What are the regions that use English or Dutch?", "context": "CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR); CREATE TABLE country (Region VARCHAR, Code VARCHAR)"}, {"answer": "SELECT t1.name FROM country AS t1 JOIN countrylanguage AS t2 ON t1.code = t2.countrycode WHERE t2.language = \"english\" AND isofficial = \"t\" UNION SELECT t1.name FROM country AS t1 JOIN countrylanguage AS t2 ON t1.code = t2.countrycode WHERE t2.language = \"dutch\" AND isofficial = \"t\"", "question": "What are the countries where either English or Dutch is the official language ?", "context": "CREATE TABLE countrylanguage (countrycode VARCHAR, language VARCHAR); CREATE TABLE country (name VARCHAR, code VARCHAR)"}, {"answer": "SELECT * FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND IsOfficial = \"T\" UNION SELECT * FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Dutch\" AND IsOfficial = \"T\"", "question": "Which countries have either English or Dutch as an official language?", "context": "CREATE TABLE country (Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR)"}, {"answer": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Continent = \"Asia\" GROUP BY T2.Language ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which language is the most popular on the Asian continent?", "context": "CREATE TABLE country (Code VARCHAR, Continent VARCHAR); CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR)"}, {"answer": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.GovernmentForm = \"Republic\" GROUP BY T2.Language HAVING COUNT(*) = 1", "question": "Which languages are spoken by only one country in republic governments?", "context": "CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR); CREATE TABLE country (Code VARCHAR, GovernmentForm VARCHAR)"}, {"answer": "SELECT T1.Name, T1.Population FROM city AS T1 JOIN countrylanguage AS T2 ON T1.CountryCode = T2.CountryCode WHERE T2.Language = \"English\" ORDER BY T1.Population DESC LIMIT 1", "question": "Find the city with the largest population that uses English.", "context": "CREATE TABLE city (Name VARCHAR, Population VARCHAR, CountryCode VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR)"}, {"answer": "SELECT Name, Population, LifeExpectancy FROM country WHERE Continent = \"Asia\" ORDER BY SurfaceArea DESC LIMIT 1", "question": "Find the name, population and expected life length of asian country with the largest area?", "context": "CREATE TABLE country (Name VARCHAR, Population VARCHAR, LifeExpectancy VARCHAR, Continent VARCHAR, SurfaceArea VARCHAR)"}, {"answer": "SELECT AVG(LifeExpectancy) FROM country WHERE NOT Name IN (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND T2.IsOfficial = \"T\")", "question": "What is average life expectancy in the countries where English is not the official language?", "context": "CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR, IsOfficial VARCHAR); CREATE TABLE country (LifeExpectancy INTEGER, Name VARCHAR); CREATE TABLE country (Name VARCHAR, Code VARCHAR)"}, {"answer": "SELECT SUM(Population) FROM country WHERE NOT Name IN (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\")", "question": "What is the total number of people living in the nations that do not use English?", "context": "CREATE TABLE country (Name VARCHAR, Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR); CREATE TABLE country (Population INTEGER, Name VARCHAR)"}, {"answer": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.HeadOfState = \"Beatrix\" AND T2.IsOfficial = \"T\"", "question": "What is the official language spoken in the country whose head of state is Beatrix?", "context": "CREATE TABLE country (Code VARCHAR, HeadOfState VARCHAR); CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR, IsOfficial VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE IndepYear < 1930 AND T2.IsOfficial = \"T\"", "question": "What is the total number of unique official languages spoken in the countries that are founded before 1930?", "context": "CREATE TABLE country (Code VARCHAR); CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR, IsOfficial VARCHAR)"}, {"answer": "SELECT Name FROM country WHERE SurfaceArea > (SELECT MIN(SurfaceArea) FROM country WHERE Continent = \"Europe\")", "question": "What are the countries that have greater surface area than any country in Europe?", "context": "CREATE TABLE country (Name VARCHAR, SurfaceArea INTEGER, Continent VARCHAR)"}, {"answer": "SELECT Name FROM country WHERE Continent = \"Africa\" AND population < (SELECT MAX(population) FROM country WHERE Continent = \"Asia\")", "question": "What are the African countries that have a  population less than any country in Asia?", "context": "CREATE TABLE country (Name VARCHAR, Continent VARCHAR, population INTEGER)"}, {"answer": "SELECT Name FROM country WHERE Continent = \"Africa\" AND population < (SELECT MIN(population) FROM country WHERE Continent = \"Asia\")", "question": "Which African countries have a smaller population than that of any country in Asia?", "context": "CREATE TABLE country (Name VARCHAR, Continent VARCHAR, population INTEGER)"}, {"answer": "SELECT Name FROM country WHERE Continent = \"Asia\" AND population > (SELECT MAX(population) FROM country WHERE Continent = \"Africa\")", "question": "Which Asian countries have a population that is larger than any country in Africa?", "context": "CREATE TABLE country (Name VARCHAR, Continent VARCHAR, population INTEGER)"}, {"answer": "SELECT Name FROM country WHERE Continent = \"Asia\" AND population > (SELECT MIN(population) FROM country WHERE Continent = \"Africa\")", "question": "What are the Asian countries which have a population larger than that of any country in Africa?", "context": "CREATE TABLE country (Name VARCHAR, Continent VARCHAR, population INTEGER)"}, {"answer": "SELECT CountryCode FROM countrylanguage EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = \"English\"", "question": "What are the country codes for countries that do not speak English?", "context": "CREATE TABLE countrylanguage (CountryCode VARCHAR, LANGUAGE VARCHAR)"}, {"answer": "SELECT DISTINCT CountryCode FROM countrylanguage WHERE LANGUAGE <> \"English\"", "question": "What are the country codes of countries where people use languages other than English?", "context": "CREATE TABLE countrylanguage (CountryCode VARCHAR, LANGUAGE VARCHAR)"}, {"answer": "SELECT Code FROM country WHERE GovernmentForm <> \"Republic\" EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = \"English\"", "question": "What are the codes of the countries that do not speak English and whose government forms are not Republic?", "context": "CREATE TABLE countrylanguage (Code VARCHAR, CountryCode VARCHAR, GovernmentForm VARCHAR, LANGUAGE VARCHAR); CREATE TABLE country (Code VARCHAR, CountryCode VARCHAR, GovernmentForm VARCHAR, LANGUAGE VARCHAR)"}, {"answer": "SELECT DISTINCT T2.Name FROM country AS T1 JOIN city AS T2 ON T2.CountryCode = T1.Code WHERE T1.Continent = 'Europe' AND NOT T1.Name IN (SELECT T3.Name FROM country AS T3 JOIN countrylanguage AS T4 ON T3.Code = T4.CountryCode WHERE T4.IsOfficial = 'T' AND T4.Language = 'English')", "question": "Which cities are in European countries where English is not the official language?", "context": "CREATE TABLE city (Name VARCHAR, CountryCode VARCHAR); CREATE TABLE country (Name VARCHAR, Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, IsOfficial VARCHAR, Language VARCHAR); CREATE TABLE country (Code VARCHAR, Continent VARCHAR, Name VARCHAR)"}, {"answer": "SELECT DISTINCT t3.name FROM country AS t1 JOIN countrylanguage AS t2 ON t1.code = t2.countrycode JOIN city AS t3 ON t1.code = t3.countrycode WHERE t2.isofficial = 't' AND t2.language = 'chinese' AND t1.continent = \"asia\"", "question": "Which unique cities are in Asian countries where Chinese is the official language ?", "context": "CREATE TABLE city (name VARCHAR, countrycode VARCHAR); CREATE TABLE countrylanguage (countrycode VARCHAR, isofficial VARCHAR, language VARCHAR); CREATE TABLE country (code VARCHAR, continent VARCHAR)"}, {"answer": "SELECT DISTINCT T3.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode JOIN city AS T3 ON T1.Code = T3.CountryCode WHERE T2.IsOfficial = 'T' AND T2.Language = 'Chinese' AND T1.Continent = \"Asia\"", "question": "Return the different names of cities that are in Asia and for which Chinese is the official language.", "context": "CREATE TABLE country (Code VARCHAR, Continent VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, IsOfficial VARCHAR, Language VARCHAR); CREATE TABLE city (Name VARCHAR, CountryCode VARCHAR)"}, {"answer": "SELECT Name, SurfaceArea, IndepYear FROM country ORDER BY Population LIMIT 1", "question": "What are the name, independence year, and surface area of the country with the smallest population?", "context": "CREATE TABLE country (Name VARCHAR, SurfaceArea VARCHAR, IndepYear VARCHAR, Population VARCHAR)"}, {"answer": "SELECT Name, population, HeadOfState FROM country ORDER BY SurfaceArea DESC LIMIT 1", "question": "What are the population, name and leader of the country with the largest area?", "context": "CREATE TABLE country (Name VARCHAR, population VARCHAR, HeadOfState VARCHAR, SurfaceArea VARCHAR)"}, {"answer": "SELECT COUNT(T2.Language), T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Name HAVING COUNT(*) > 2", "question": "Return the country name and the numbers of languages spoken for each country that speaks at least 3 languages.", "context": "CREATE TABLE country (Name VARCHAR, Code VARCHAR); CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR)"}, {"answer": "SELECT COUNT(*), District FROM city WHERE Population > (SELECT AVG(Population) FROM city) GROUP BY District", "question": "Find the number of cities in each district whose population is greater than the average population of cities?", "context": "CREATE TABLE city (District VARCHAR, Population INTEGER)"}, {"answer": "SELECT SUM(Population), GovernmentForm FROM country GROUP BY GovernmentForm HAVING AVG(LifeExpectancy) > 72", "question": "Find the government form name and total population for each government form whose average life expectancy is longer than 72.", "context": "CREATE TABLE country (GovernmentForm VARCHAR, Population INTEGER, LifeExpectancy INTEGER)"}, {"answer": "SELECT SUM(Population), AVG(LifeExpectancy), Continent FROM country GROUP BY Continent HAVING AVG(LifeExpectancy) < 72", "question": "Find the average life expectancy and total population for each continent where the average life expectancy is shorter than 72?", "context": "CREATE TABLE country (Continent VARCHAR, Population INTEGER, LifeExpectancy INTEGER)"}, {"answer": "SELECT Name, SurfaceArea FROM country ORDER BY SurfaceArea DESC LIMIT 5", "question": "What are the names and areas of countries with the top 5 largest area?", "context": "CREATE TABLE country (Name VARCHAR, SurfaceArea VARCHAR)"}, {"answer": "SELECT Name FROM country ORDER BY Population DESC LIMIT 3", "question": "What are names of countries with the top 3 largest population?", "context": "CREATE TABLE country (Name VARCHAR, Population VARCHAR)"}, {"answer": "SELECT Name FROM country ORDER BY Population LIMIT 3", "question": "What are the names of the nations with the 3 lowest populations?", "context": "CREATE TABLE country (Name VARCHAR, Population VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM country WHERE continent = \"Asia\"", "question": "how many countries are in Asia?", "context": "CREATE TABLE country (continent VARCHAR)"}, {"answer": "SELECT Name FROM country WHERE continent = \"Europe\" AND Population = \"80000\"", "question": "What are the names of the countries that are in the continent of Europe and have a population of 80000?", "context": "CREATE TABLE country (Name VARCHAR, continent VARCHAR, Population VARCHAR)"}, {"answer": "SELECT SUM(population), AVG(surfacearea) FROM country WHERE continent = \"north america\" AND surfacearea > 3000", "question": "What is the total population and average area of countries in the continent of North America whose area is bigger than 3000 ?", "context": "CREATE TABLE country (population INTEGER, surfacearea INTEGER, continent VARCHAR)"}, {"answer": "SELECT name FROM city WHERE Population BETWEEN 160000 AND 900000", "question": "What are the cities whose population is between 160000 and 900000?", "context": "CREATE TABLE city (name VARCHAR, Population INTEGER)"}, {"answer": "SELECT name FROM city WHERE population BETWEEN 160000 AND 900000", "question": "Return the names of cities that have a population between 160000 and 900000 .", "context": "CREATE TABLE city (name VARCHAR, population INTEGER)"}, {"answer": "SELECT LANGUAGE FROM countrylanguage GROUP BY LANGUAGE ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which language is spoken by the largest number of countries?", "context": "CREATE TABLE countrylanguage (LANGUAGE VARCHAR)"}, {"answer": "SELECT LANGUAGE, CountryCode, MAX(Percentage) FROM countrylanguage GROUP BY CountryCode", "question": "What is the language spoken by the largest percentage of people in each country?", "context": "CREATE TABLE countrylanguage (LANGUAGE VARCHAR, CountryCode VARCHAR, Percentage INTEGER)"}, {"answer": "SELECT COUNT(*), MAX(Percentage) FROM countrylanguage WHERE LANGUAGE = \"Spanish\" GROUP BY CountryCode", "question": "What is the total number of countries where Spanish is spoken by the largest percentage of people?", "context": "CREATE TABLE countrylanguage (Percentage INTEGER, CountryCode VARCHAR, LANGUAGE VARCHAR)"}, {"answer": "SELECT CountryCode, MAX(Percentage) FROM countrylanguage WHERE LANGUAGE = \"Spanish\" GROUP BY CountryCode", "question": "What are the codes of countries where Spanish is spoken by the largest percentage of people?", "context": "CREATE TABLE countrylanguage (CountryCode VARCHAR, Percentage INTEGER, LANGUAGE VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM conductor", "question": "How many conductors are there?", "context": "CREATE TABLE conductor (Id VARCHAR)"}, {"answer": "SELECT Name FROM conductor ORDER BY Age", "question": "List the names of conductors in ascending order of age.", "context": "CREATE TABLE conductor (Name VARCHAR, Age VARCHAR)"}, {"answer": "SELECT Name FROM conductor WHERE Nationality <> 'USA'", "question": "What are the names of conductors whose nationalities are not \"USA\"?", "context": "CREATE TABLE conductor (Name VARCHAR, Nationality VARCHAR)"}, {"answer": "SELECT Record_Company FROM orchestra ORDER BY Year_of_Founded DESC", "question": "What are the record companies of orchestras in descending order of years in which they were founded?", "context": "CREATE TABLE orchestra (Record_Company VARCHAR, Year_of_Founded VARCHAR)"}, {"answer": "SELECT AVG(Attendance) FROM SHOW", "question": "What is the average attendance of shows?", "context": "CREATE TABLE SHOW (Attendance INTEGER)"}, {"answer": "SELECT MAX(SHARE), MIN(SHARE) FROM performance WHERE TYPE <> \"Live final\"", "question": "What are the maximum and minimum share of performances whose type is not \"Live final\".", "context": "CREATE TABLE performance (SHARE INTEGER, TYPE VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT Nationality) FROM conductor", "question": "How many different nationalities do conductors have?", "context": "CREATE TABLE conductor (Nationality VARCHAR)"}, {"answer": "SELECT Name FROM conductor ORDER BY Year_of_Work DESC", "question": "List names of conductors in descending order of years of work.", "context": "CREATE TABLE conductor (Name VARCHAR, Year_of_Work VARCHAR)"}, {"answer": "SELECT Name FROM conductor ORDER BY Year_of_Work DESC LIMIT 1", "question": "List the name of the conductor with the most years of work.", "context": "CREATE TABLE conductor (Name VARCHAR, Year_of_Work VARCHAR)"}, {"answer": "SELECT T1.Name, T2.Orchestra FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID", "question": "Show the names of conductors and the orchestras they have conducted.", "context": "CREATE TABLE conductor (Name VARCHAR, Conductor_ID VARCHAR); CREATE TABLE orchestra (Orchestra VARCHAR, Conductor_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID GROUP BY T2.Conductor_ID HAVING COUNT(*) > 1", "question": "Show the names of conductors that have conducted more than one orchestras.", "context": "CREATE TABLE orchestra (Conductor_ID VARCHAR); CREATE TABLE conductor (Name VARCHAR, Conductor_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID GROUP BY T2.Conductor_ID ORDER BY COUNT(*) DESC LIMIT 1", "question": "Show the name of the conductor that has conducted the most number of orchestras.", "context": "CREATE TABLE orchestra (Conductor_ID VARCHAR); CREATE TABLE conductor (Name VARCHAR, Conductor_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID WHERE Year_of_Founded > 2008", "question": "Please show the name of the conductor that has conducted orchestras founded after 2008.", "context": "CREATE TABLE orchestra (Conductor_ID VARCHAR); CREATE TABLE conductor (Name VARCHAR, Conductor_ID VARCHAR)"}, {"answer": "SELECT Record_Company, COUNT(*) FROM orchestra GROUP BY Record_Company", "question": "Please show the different record companies and the corresponding number of orchestras.", "context": "CREATE TABLE orchestra (Record_Company VARCHAR)"}, {"answer": "SELECT Major_Record_Format FROM orchestra GROUP BY Major_Record_Format ORDER BY COUNT(*)", "question": "Please show the record formats of orchestras in ascending order of count.", "context": "CREATE TABLE orchestra (Major_Record_Format VARCHAR)"}, {"answer": "SELECT Record_Company FROM orchestra GROUP BY Record_Company ORDER BY COUNT(*) DESC LIMIT 1", "question": "List the record company shared by the most number of orchestras.", "context": "CREATE TABLE orchestra (Record_Company VARCHAR)"}, {"answer": "SELECT Orchestra FROM orchestra WHERE NOT Orchestra_ID IN (SELECT Orchestra_ID FROM performance)", "question": "List the names of orchestras that have no performance.", "context": "CREATE TABLE orchestra (Orchestra VARCHAR, Orchestra_ID VARCHAR); CREATE TABLE performance (Orchestra VARCHAR, Orchestra_ID VARCHAR)"}, {"answer": "SELECT Record_Company FROM orchestra WHERE Year_of_Founded < 2003 INTERSECT SELECT Record_Company FROM orchestra WHERE Year_of_Founded > 2003", "question": "Show the record companies shared by orchestras founded before 2003 and after 2003.", "context": "CREATE TABLE orchestra (Record_Company VARCHAR, Year_of_Founded INTEGER)"}, {"answer": "SELECT COUNT(*) FROM orchestra WHERE Major_Record_Format = \"CD\" OR Major_Record_Format = \"DVD\"", "question": "Find the number of orchestras whose record format is \"CD\" or \"DVD\".", "context": "CREATE TABLE orchestra (Major_Record_Format VARCHAR)"}, {"answer": "SELECT Year_of_Founded FROM orchestra AS T1 JOIN performance AS T2 ON T1.Orchestra_ID = T2.Orchestra_ID GROUP BY T2.Orchestra_ID HAVING COUNT(*) > 1", "question": "Show the years in which orchestras that have given more than one performance are founded.", "context": "CREATE TABLE performance (Orchestra_ID VARCHAR); CREATE TABLE orchestra (Orchestra_ID VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Highschooler", "question": "How many high schoolers are there?", "context": "CREATE TABLE Highschooler (Id VARCHAR)"}, {"answer": "SELECT name, grade FROM Highschooler", "question": "Show the names and grades of each high schooler.", "context": "CREATE TABLE Highschooler (name VARCHAR, grade VARCHAR)"}, {"answer": "SELECT grade FROM Highschooler", "question": "Show all the grades of the high schoolers.", "context": "CREATE TABLE Highschooler (grade VARCHAR)"}, {"answer": "SELECT grade FROM Highschooler WHERE name = \"Kyle\"", "question": "What grade is Kyle in?", "context": "CREATE TABLE Highschooler (grade VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM Highschooler WHERE grade = 10", "question": "Show the names of all high schoolers in grade 10.", "context": "CREATE TABLE Highschooler (name VARCHAR, grade VARCHAR)"}, {"answer": "SELECT ID FROM Highschooler WHERE name = \"Kyle\"", "question": "Show the ID of the high schooler named Kyle.", "context": "CREATE TABLE Highschooler (ID VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Highschooler WHERE grade = 9 OR grade = 10", "question": "How many high schoolers are there in grade 9 or 10?", "context": "CREATE TABLE Highschooler (grade VARCHAR)"}, {"answer": "SELECT grade, COUNT(*) FROM Highschooler GROUP BY grade", "question": "Show the number of high schoolers for each grade.", "context": "CREATE TABLE Highschooler (grade VARCHAR)"}, {"answer": "SELECT grade FROM Highschooler GROUP BY grade ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which grade has the most high schoolers?", "context": "CREATE TABLE Highschooler (grade VARCHAR)"}, {"answer": "SELECT grade FROM Highschooler GROUP BY grade HAVING COUNT(*) >= 4", "question": "Show me all grades that have at least 4 students.", "context": "CREATE TABLE Highschooler (grade VARCHAR)"}, {"answer": "SELECT student_id, COUNT(*) FROM Friend GROUP BY student_id", "question": "Show the student IDs and numbers of friends corresponding to each.", "context": "CREATE TABLE Friend (student_id VARCHAR)"}, {"answer": "SELECT T2.name, COUNT(*) FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id", "question": "Show the names of high school students and their corresponding number of friends.", "context": "CREATE TABLE Highschooler (name VARCHAR, id VARCHAR); CREATE TABLE Friend (student_id VARCHAR)"}, {"answer": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the high schooler who has the greatest number of friends?", "context": "CREATE TABLE Highschooler (name VARCHAR, id VARCHAR); CREATE TABLE Friend (student_id VARCHAR)"}, {"answer": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id HAVING COUNT(*) >= 3", "question": "Show the names of high schoolers who have at least 3 friends.", "context": "CREATE TABLE Highschooler (name VARCHAR, id VARCHAR); CREATE TABLE Friend (student_id VARCHAR)"}, {"answer": "SELECT T3.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id JOIN Highschooler AS T3 ON T1.friend_id = T3.id WHERE T2.name = \"Kyle\"", "question": "Show the names of all of the high schooler Kyle's friends.", "context": "CREATE TABLE Highschooler (name VARCHAR, id VARCHAR); CREATE TABLE Friend (student_id VARCHAR, friend_id VARCHAR); CREATE TABLE Highschooler (id VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.name = \"Kyle\"", "question": "How many friends does the high school student Kyle have?", "context": "CREATE TABLE Friend (student_id VARCHAR); CREATE TABLE Highschooler (id VARCHAR, name VARCHAR)"}, {"answer": "SELECT id FROM Highschooler EXCEPT SELECT student_id FROM Friend", "question": "Show ids of all students who do not have any friends.", "context": "CREATE TABLE Highschooler (id VARCHAR, student_id VARCHAR); CREATE TABLE Friend (id VARCHAR, student_id VARCHAR)"}, {"answer": "SELECT name FROM Highschooler EXCEPT SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id", "question": "Show names of all high school students who do not have any friends.", "context": "CREATE TABLE Highschooler (name VARCHAR, id VARCHAR); CREATE TABLE Highschooler (name VARCHAR); CREATE TABLE Friend (student_id VARCHAR)"}, {"answer": "SELECT student_id FROM Friend INTERSECT SELECT liked_id FROM Likes", "question": "Show the ids of high schoolers who have friends and are also liked by someone else.", "context": "CREATE TABLE Likes (student_id VARCHAR, liked_id VARCHAR); CREATE TABLE Friend (student_id VARCHAR, liked_id VARCHAR)"}, {"answer": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id INTERSECT SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.liked_id = T2.id", "question": "Show name of all students who have some friends and also are liked by someone else.", "context": "CREATE TABLE Highschooler (name VARCHAR, id VARCHAR); CREATE TABLE Likes (student_id VARCHAR, liked_id VARCHAR); CREATE TABLE Friend (student_id VARCHAR, liked_id VARCHAR)"}, {"answer": "SELECT student_id, COUNT(*) FROM Likes GROUP BY student_id", "question": "Count the number of likes for each student id.", "context": "CREATE TABLE Likes (student_id VARCHAR)"}, {"answer": "SELECT T2.name, COUNT(*) FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id", "question": "Show the names of high schoolers who have likes, and numbers of likes for each.", "context": "CREATE TABLE Likes (student_id VARCHAR); CREATE TABLE Highschooler (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the high schooler who has the greatest number of likes?", "context": "CREATE TABLE Likes (student_id VARCHAR); CREATE TABLE Highschooler (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id HAVING COUNT(*) >= 2", "question": "Show the names of students who have at least 2 likes.", "context": "CREATE TABLE Likes (student_id VARCHAR); CREATE TABLE Highschooler (name VARCHAR, id VARCHAR)"}, {"answer": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.grade > 5 GROUP BY T1.student_id HAVING COUNT(*) >= 2", "question": "Show the names of students who have a grade higher than 5 and have at least 2 friends.", "context": "CREATE TABLE Friend (student_id VARCHAR); CREATE TABLE Highschooler (name VARCHAR, id VARCHAR, grade INTEGER)"}, {"answer": "SELECT COUNT(*) FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.name = \"Kyle\"", "question": "How many likes does Kyle have?", "context": "CREATE TABLE Likes (student_id VARCHAR); CREATE TABLE Highschooler (id VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(grade) FROM Highschooler WHERE id IN (SELECT T1.student_id FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id)", "question": "Find the average grade of all students who have some friends.", "context": "CREATE TABLE Highschooler (id VARCHAR); CREATE TABLE Friend (student_id VARCHAR); CREATE TABLE Highschooler (grade INTEGER, id VARCHAR)"}, {"answer": "SELECT MIN(grade) FROM Highschooler WHERE NOT id IN (SELECT T1.student_id FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id)", "question": "Find the minimum grade of students who have no friends.", "context": "CREATE TABLE Highschooler (id VARCHAR); CREATE TABLE Friend (student_id VARCHAR); CREATE TABLE Highschooler (grade INTEGER, id VARCHAR)"}, {"answer": "SELECT state FROM Owners INTERSECT SELECT state FROM Professionals", "question": "Which states have both owners and professionals living there?", "context": "CREATE TABLE Owners (state VARCHAR); CREATE TABLE Professionals (state VARCHAR)"}, {"answer": "SELECT AVG(age) FROM Dogs WHERE dog_id IN (SELECT dog_id FROM Treatments)", "question": "What is the average age of the dogs who have gone through any treatments?", "context": "CREATE TABLE Dogs (age INTEGER, dog_id VARCHAR); CREATE TABLE Treatments (age INTEGER, dog_id VARCHAR)"}, {"answer": "SELECT professional_id, last_name, cell_number FROM Professionals WHERE state = 'Indiana' UNION SELECT T1.professional_id, T1.last_name, T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING COUNT(*) > 2", "question": "Which professionals live in the state of Indiana or have done treatment on more than 2 treatments? List his or her id, last name and cell phone.", "context": "CREATE TABLE Treatments (professional_id VARCHAR); CREATE TABLE Professionals (professional_id VARCHAR, last_name VARCHAR, cell_number VARCHAR); CREATE TABLE Professionals (professional_id VARCHAR, last_name VARCHAR, cell_number VARCHAR, state VARCHAR)"}, {"answer": "SELECT name FROM dogs WHERE NOT dog_id IN (SELECT dog_id FROM treatments GROUP BY dog_id HAVING SUM(cost_of_treatment) > 1000)", "question": "Which dogs have not cost their owner more than 1000 for treatment ? List the dog names .", "context": "CREATE TABLE dogs (name VARCHAR, dog_id VARCHAR, cost_of_treatment INTEGER); CREATE TABLE treatments (name VARCHAR, dog_id VARCHAR, cost_of_treatment INTEGER)"}, {"answer": "SELECT first_name FROM Professionals UNION SELECT first_name FROM Owners EXCEPT SELECT name FROM Dogs", "question": "Which first names are used for professionals or owners but are not used as dog names?", "context": "CREATE TABLE Owners (first_name VARCHAR, name VARCHAR); CREATE TABLE Dogs (first_name VARCHAR, name VARCHAR); CREATE TABLE Professionals (first_name VARCHAR, name VARCHAR)"}, {"answer": "SELECT professional_id, role_code, email_address FROM Professionals EXCEPT SELECT T1.professional_id, T1.role_code, T1.email_address FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id", "question": "Which professional did not operate any treatment on dogs? List the professional's id, role and email.", "context": "CREATE TABLE Professionals (professional_id VARCHAR, role_code VARCHAR, email_address VARCHAR); CREATE TABLE Treatments (professional_id VARCHAR)"}, {"answer": "SELECT T1.owner_id, T2.first_name, T2.last_name FROM Dogs AS T1 JOIN Owners AS T2 ON T1.owner_id = T2.owner_id GROUP BY T1.owner_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which owner owns the most dogs? List the owner id, first name and last name.", "context": "CREATE TABLE Owners (first_name VARCHAR, last_name VARCHAR, owner_id VARCHAR); CREATE TABLE Dogs (owner_id VARCHAR)"}, {"answer": "SELECT T1.professional_id, T1.role_code, T1.first_name FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING COUNT(*) >= 2", "question": "Which professionals have done at least two treatments? List the professional's id, role, and first name.", "context": "CREATE TABLE Professionals (professional_id VARCHAR, role_code VARCHAR, first_name VARCHAR); CREATE TABLE Treatments (professional_id VARCHAR)"}, {"answer": "SELECT T1.breed_name FROM Breeds AS T1 JOIN Dogs AS T2 ON T1.breed_code = T2.breed_code GROUP BY T1.breed_name ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the name of the breed with the most dogs?", "context": "CREATE TABLE Dogs (breed_code VARCHAR); CREATE TABLE Breeds (breed_name VARCHAR, breed_code VARCHAR)"}, {"answer": "SELECT T1.owner_id, T1.last_name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY COUNT(*) DESC LIMIT 1", "question": "Which owner has paid for the most treatments on his or her dogs? List the owner id and last name.", "context": "CREATE TABLE Owners (owner_id VARCHAR, last_name VARCHAR); CREATE TABLE Dogs (owner_id VARCHAR, dog_id VARCHAR); CREATE TABLE Treatments (dog_id VARCHAR)"}, {"answer": "SELECT T1.treatment_type_description FROM Treatment_types AS T1 JOIN Treatments AS T2 ON T1.treatment_type_code = T2.treatment_type_code GROUP BY T1.treatment_type_code ORDER BY SUM(cost_of_treatment) LIMIT 1", "question": "What is the description of the treatment type that costs the least money in total?", "context": "CREATE TABLE Treatments (treatment_type_code VARCHAR); CREATE TABLE Treatment_types (treatment_type_description VARCHAR, treatment_type_code VARCHAR)"}, {"answer": "SELECT T1.owner_id, T1.zip_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY SUM(T3.cost_of_treatment) DESC LIMIT 1", "question": "Which owner has paid the largest amount of money in total for their dogs? Show the owner id and zip code.", "context": "CREATE TABLE Treatments (dog_id VARCHAR, cost_of_treatment INTEGER); CREATE TABLE Owners (owner_id VARCHAR, zip_code VARCHAR); CREATE TABLE Dogs (owner_id VARCHAR, dog_id VARCHAR)"}, {"answer": "SELECT T1.professional_id, T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING COUNT(*) >= 2", "question": "Which professionals have done at least two types of treatments? List the professional id and cell phone.", "context": "CREATE TABLE Professionals (professional_id VARCHAR, cell_number VARCHAR); CREATE TABLE Treatments (professional_id VARCHAR)"}, {"answer": "SELECT DISTINCT T1.first_name, T1.last_name FROM Professionals AS T1 JOIN Treatments AS T2 WHERE cost_of_treatment < (SELECT AVG(cost_of_treatment) FROM Treatments)", "question": "What are the first name and last name of the professionals who have done treatment with cost below average?", "context": "CREATE TABLE Treatments (cost_of_treatment INTEGER); CREATE TABLE Professionals (first_name VARCHAR, last_name VARCHAR); CREATE TABLE Treatments (Id VARCHAR)"}, {"answer": "SELECT T1.date_of_treatment, T2.first_name FROM Treatments AS T1 JOIN Professionals AS T2 ON T1.professional_id = T2.professional_id", "question": "List the date of each treatment, together with the first name of the professional who operated it.", "context": "CREATE TABLE Treatments (date_of_treatment VARCHAR, professional_id VARCHAR); CREATE TABLE Professionals (first_name VARCHAR, professional_id VARCHAR)"}, {"answer": "SELECT T1.cost_of_treatment, T2.treatment_type_description FROM Treatments AS T1 JOIN treatment_types AS T2 ON T1.treatment_type_code = T2.treatment_type_code", "question": "List the cost of each treatment and the corresponding treatment type description.", "context": "CREATE TABLE Treatments (cost_of_treatment VARCHAR, treatment_type_code VARCHAR); CREATE TABLE treatment_types (treatment_type_description VARCHAR, treatment_type_code VARCHAR)"}, {"answer": "SELECT T1.first_name, T1.last_name, T2.size_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id", "question": "List each owner's first name, last name, and the size of his for her dog.", "context": "CREATE TABLE Owners (first_name VARCHAR, last_name VARCHAR, owner_id VARCHAR); CREATE TABLE Dogs (size_code VARCHAR, owner_id VARCHAR)"}, {"answer": "SELECT T1.first_name, T2.name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id", "question": "List pairs of the owner's first name and the dogs's name.", "context": "CREATE TABLE Dogs (name VARCHAR, owner_id VARCHAR); CREATE TABLE Owners (first_name VARCHAR, owner_id VARCHAR)"}, {"answer": "SELECT T1.name, T2.date_of_treatment FROM Dogs AS T1 JOIN Treatments AS T2 ON T1.dog_id = T2.dog_id WHERE T1.breed_code = (SELECT breed_code FROM Dogs GROUP BY breed_code ORDER BY COUNT(*) LIMIT 1)", "question": "List the names of the dogs of the rarest breed and the treatment dates of them.", "context": "CREATE TABLE Dogs (name VARCHAR, dog_id VARCHAR, breed_code VARCHAR); CREATE TABLE Treatments (date_of_treatment VARCHAR, dog_id VARCHAR); CREATE TABLE Dogs (breed_code VARCHAR)"}, {"answer": "SELECT T1.first_name, T2.name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id WHERE T1.state = 'Virginia'", "question": "Which dogs are owned by someone who lives in Virginia? List the owner's first name and the dog's name.", "context": "CREATE TABLE Dogs (name VARCHAR, owner_id VARCHAR); CREATE TABLE Owners (first_name VARCHAR, owner_id VARCHAR, state VARCHAR)"}, {"answer": "SELECT DISTINCT T1.date_arrived, T1.date_departed FROM Dogs AS T1 JOIN Treatments AS T2 ON T1.dog_id = T2.dog_id", "question": "What are the arriving date and the departing date of the dogs who have gone through a treatment?", "context": "CREATE TABLE Dogs (date_arrived VARCHAR, date_departed VARCHAR, dog_id VARCHAR); CREATE TABLE Treatments (dog_id VARCHAR)"}, {"answer": "SELECT T1.last_name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id WHERE T2.age = (SELECT MAX(age) FROM Dogs)", "question": "List the last name of the owner owning the youngest dog.", "context": "CREATE TABLE Owners (last_name VARCHAR, owner_id VARCHAR); CREATE TABLE Dogs (owner_id VARCHAR, age INTEGER); CREATE TABLE Dogs (age INTEGER)"}, {"answer": "SELECT email_address FROM Professionals WHERE state = 'Hawaii' OR state = 'Wisconsin'", "question": "List the emails of the professionals who live in the state of Hawaii or the state of Wisconsin.", "context": "CREATE TABLE Professionals (email_address VARCHAR, state VARCHAR)"}, {"answer": "SELECT date_arrived, date_departed FROM Dogs", "question": "What are the arriving date and the departing date of all the dogs?", "context": "CREATE TABLE Dogs (date_arrived VARCHAR, date_departed VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT dog_id) FROM Treatments", "question": "How many dogs went through any treatments?", "context": "CREATE TABLE Treatments (dog_id VARCHAR)"}, {"answer": "SELECT COUNT(DISTINCT professional_id) FROM Treatments", "question": "How many professionals have performed any treatment to dogs?", "context": "CREATE TABLE Treatments (professional_id VARCHAR)"}, {"answer": "SELECT role_code, street, city, state FROM professionals WHERE city LIKE '%West%'", "question": "Which professionals live in a city containing the substring 'West'? List his or her role, street, city and state.", "context": "CREATE TABLE professionals (role_code VARCHAR, street VARCHAR, city VARCHAR, state VARCHAR)"}, {"answer": "SELECT first_name, last_name, email_address FROM Owners WHERE state LIKE '%North%'", "question": "Which owners live in the state whose name contains the substring 'North'? List his first name, last name and email.", "context": "CREATE TABLE Owners (first_name VARCHAR, last_name VARCHAR, email_address VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Dogs WHERE age < (SELECT AVG(age) FROM Dogs)", "question": "How many dogs have an age below the average?", "context": "CREATE TABLE Dogs (age INTEGER)"}, {"answer": "SELECT cost_of_treatment FROM Treatments ORDER BY date_of_treatment DESC LIMIT 1", "question": "How much does the most recent treatment cost?", "context": "CREATE TABLE Treatments (cost_of_treatment VARCHAR, date_of_treatment VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Dogs WHERE NOT dog_id IN (SELECT dog_id FROM Treatments)", "question": "How many dogs have not gone through any treatment?", "context": "CREATE TABLE Dogs (dog_id VARCHAR); CREATE TABLE Treatments (dog_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM dogs WHERE NOT dog_id IN (SELECT dog_id FROM treatments)", "question": "Tell me the number of dogs that have not received any treatment .", "context": "CREATE TABLE treatments (dog_id VARCHAR); CREATE TABLE dogs (dog_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Owners WHERE NOT owner_id IN (SELECT owner_id FROM Dogs)", "question": "How many owners temporarily do not have any dogs?", "context": "CREATE TABLE Dogs (owner_id VARCHAR); CREATE TABLE Owners (owner_id VARCHAR)"}, {"answer": "SELECT COUNT(*) FROM Professionals WHERE NOT professional_id IN (SELECT professional_id FROM Treatments)", "question": "How many professionals did not operate any treatment on dogs?", "context": "CREATE TABLE Professionals (professional_id VARCHAR); CREATE TABLE Treatments (professional_id VARCHAR)"}, {"answer": "SELECT name, age, weight FROM Dogs WHERE abandoned_yn = 1", "question": "List the dog name, age and weight of the dogs who have been abandoned? 1 stands for yes, and 0 stands for no.", "context": "CREATE TABLE Dogs (name VARCHAR, age VARCHAR, weight VARCHAR, abandoned_yn VARCHAR)"}, {"answer": "SELECT AVG(age) FROM Dogs", "question": "What is the average age of all the dogs?", "context": "CREATE TABLE Dogs (age INTEGER)"}, {"answer": "SELECT MAX(age) FROM Dogs", "question": "What is the age of the oldest dog?", "context": "CREATE TABLE Dogs (age INTEGER)"}, {"answer": "SELECT charge_type, charge_amount FROM Charges", "question": "How much does each charge type costs? List both charge type and amount.", "context": "CREATE TABLE Charges (charge_type VARCHAR, charge_amount VARCHAR)"}, {"answer": "SELECT MAX(charge_amount) FROM Charges", "question": "How much does the most expensive charge type costs?", "context": "CREATE TABLE Charges (charge_amount INTEGER)"}, {"answer": "SELECT email_address, cell_number, home_phone FROM professionals", "question": "List the email, cell phone and home phone of all the professionals.", "context": "CREATE TABLE professionals (email_address VARCHAR, cell_number VARCHAR, home_phone VARCHAR)"}, {"answer": "SELECT DISTINCT breed_code, size_code FROM dogs", "question": "What are all the possible breed type and size type combinations?", "context": "CREATE TABLE dogs (breed_code VARCHAR, size_code VARCHAR)"}, {"answer": "SELECT DISTINCT T1.first_name, T3.treatment_type_description FROM professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id JOIN Treatment_types AS T3 ON T2.treatment_type_code = T3.treatment_type_code", "question": "List the first name of all the professionals along with the description of the treatment they have done.", "context": "CREATE TABLE Treatments (professional_id VARCHAR, treatment_type_code VARCHAR); CREATE TABLE Treatment_types (treatment_type_description VARCHAR, treatment_type_code VARCHAR); CREATE TABLE professionals (first_name VARCHAR, professional_id VARCHAR)"}, {"answer": "SELECT Name FROM singer ORDER BY Net_Worth_Millions", "question": "List the name of singers in ascending order of net worth.", "context": "CREATE TABLE singer (Name VARCHAR, Net_Worth_Millions VARCHAR)"}, {"answer": "SELECT Birth_Year, Citizenship FROM singer", "question": "What are the birth year and citizenship of singers?", "context": "CREATE TABLE singer (Birth_Year VARCHAR, Citizenship VARCHAR)"}, {"answer": "SELECT Name FROM singer WHERE Citizenship <> \"France\"", "question": "List the name of singers whose citizenship is not \"France\".", "context": "CREATE TABLE singer (Name VARCHAR, Citizenship VARCHAR)"}, {"answer": "SELECT Name FROM singer WHERE Birth_Year = 1948 OR Birth_Year = 1949", "question": "Show the name of singers whose birth year is either 1948 or 1949?", "context": "CREATE TABLE singer (Name VARCHAR, Birth_Year VARCHAR)"}, {"answer": "SELECT Name FROM singer ORDER BY Net_Worth_Millions DESC LIMIT 1", "question": "What is the name of the singer with the largest net worth?", "context": "CREATE TABLE singer (Name VARCHAR, Net_Worth_Millions VARCHAR)"}, {"answer": "SELECT Citizenship, COUNT(*) FROM singer GROUP BY Citizenship", "question": "Show different citizenship of singers and the number of singers of each citizenship.", "context": "CREATE TABLE singer (Citizenship VARCHAR)"}, {"answer": "SELECT Citizenship FROM singer GROUP BY Citizenship ORDER BY COUNT(*) DESC LIMIT 1", "question": "Please show the most common citizenship of singers.", "context": "CREATE TABLE singer (Citizenship VARCHAR)"}, {"answer": "SELECT citizenship FROM singer GROUP BY citizenship ORDER BY COUNT(*) DESC LIMIT 1", "question": "What is the most common singer citizenship ?", "context": "CREATE TABLE singer (citizenship VARCHAR)"}, {"answer": "SELECT Citizenship, MAX(Net_Worth_Millions) FROM singer GROUP BY Citizenship", "question": "Show different citizenships and the maximum net worth of singers of each citizenship.", "context": "CREATE TABLE singer (Citizenship VARCHAR, Net_Worth_Millions INTEGER)"}, {"answer": "SELECT T2.Title, T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID", "question": "Show titles of songs and names of singers.", "context": "CREATE TABLE singer (Name VARCHAR, Singer_ID VARCHAR); CREATE TABLE song (Title VARCHAR, Singer_ID VARCHAR)"}, {"answer": "SELECT DISTINCT T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID WHERE T2.Sales > 300000", "question": "Show distinct names of singers that have songs with sales more than 300000.", "context": "CREATE TABLE song (Singer_ID VARCHAR, Sales INTEGER); CREATE TABLE singer (Name VARCHAR, Singer_ID VARCHAR)"}, {"answer": "SELECT T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID GROUP BY T1.Name HAVING COUNT(*) > 1", "question": "Show the names of singers that have more than one song.", "context": "CREATE TABLE song (Singer_ID VARCHAR); CREATE TABLE singer (Name VARCHAR, Singer_ID VARCHAR)"}, {"answer": "SELECT T1.Name, SUM(T2.Sales) FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID GROUP BY T1.Name", "question": "Show the names of singers and the total sales of their songs.", "context": "CREATE TABLE singer (Name VARCHAR, Singer_ID VARCHAR); CREATE TABLE song (Sales INTEGER, Singer_ID VARCHAR)"}, {"answer": "SELECT Name FROM singer WHERE NOT Singer_ID IN (SELECT Singer_ID FROM song)", "question": "List the name of singers that do not have any song.", "context": "CREATE TABLE song (Name VARCHAR, Singer_ID VARCHAR); CREATE TABLE singer (Name VARCHAR, Singer_ID VARCHAR)"}, {"answer": "SELECT Citizenship FROM singer WHERE Birth_Year < 1945 INTERSECT SELECT Citizenship FROM singer WHERE Birth_Year > 1955", "question": "Show the citizenship shared by singers with birth year before 1945 and after 1955.", "context": "CREATE TABLE singer (Citizenship VARCHAR, Birth_Year INTEGER)"}, {"answer": "SELECT COUNT(*) FROM Other_Available_Features", "question": "How many available features are there in total?", "context": "CREATE TABLE Other_Available_Features (Id VARCHAR)"}, {"answer": "SELECT T2.feature_type_name FROM Other_Available_Features AS T1 JOIN Ref_Feature_Types AS T2 ON T1.feature_type_code = T2.feature_type_code WHERE T1.feature_name = \"AirCon\"", "question": "What is the feature type name of feature AirCon?", "context": "CREATE TABLE Other_Available_Features (feature_type_code VARCHAR, feature_name VARCHAR); CREATE TABLE Ref_Feature_Types (feature_type_name VARCHAR, feature_type_code VARCHAR)"}, {"answer": "SELECT T2.property_type_description FROM Properties AS T1 JOIN Ref_Property_Types AS T2 ON T1.property_type_code = T2.property_type_code GROUP BY T1.property_type_code", "question": "Show the property type descriptions of properties belonging to that code.", "context": "CREATE TABLE Properties (property_type_code VARCHAR); CREATE TABLE Ref_Property_Types (property_type_description VARCHAR, property_type_code VARCHAR)"}, {"answer": "SELECT property_name FROM Properties WHERE property_type_code = \"House\" UNION SELECT property_name FROM Properties WHERE property_type_code = \"Apartment\" AND room_count > 1", "question": "What are the names of properties that are either houses or apartments with more than 1 room?", "context": "CREATE TABLE Properties (property_name VARCHAR, property_type_code VARCHAR, room_count VARCHAR)"}, {"answer": "SELECT nationality FROM table_10015132_16 WHERE player = \"Terrence Ross\"", "question": "What is terrence ross' nationality", "context": "CREATE TABLE table_10015132_16 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_16 WHERE years_in_toronto = \"1995-96\"", "question": "What clu was in toronto 1995-96", "context": "CREATE TABLE table_10015132_16 (school_club_team VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_16 WHERE years_in_toronto = \"2003-06\"", "question": "which club was in toronto 2003-06", "context": "CREATE TABLE table_10015132_16 (school_club_team VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT COUNT(school_club_team) FROM table_10015132_16 WHERE player = \"Jalen Rose\"", "question": "how many schools or teams had jalen rose", "context": "CREATE TABLE table_10015132_16 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT round FROM table_10083598_1 WHERE circuit = \"Assen\"", "question": "Where was Assen held?", "context": "CREATE TABLE table_10083598_1 (round VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_10083598_1 WHERE pole_position = \"Kevin Curtain\"", "question": "What was the number of race that Kevin Curtain won?", "context": "CREATE TABLE table_10083598_1 (no VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT date FROM table_10083598_1 WHERE circuit = \"Misano\"", "question": "What was the date of the race in Misano?", "context": "CREATE TABLE table_10083598_1 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_1013129_2 WHERE college_junior_club_team = \"Sherbrooke Faucons (QMJHL)\"", "question": "How many different positions did Sherbrooke Faucons (qmjhl) provide in the draft?", "context": "CREATE TABLE table_1013129_2 (position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_1013129_2 WHERE college_junior_club_team = \"Thunder Bay Flyers (USHL)\"", "question": "What are the nationalities of the player picked from Thunder Bay Flyers (ushl)", "context": "CREATE TABLE table_1013129_2 (nationality VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT COUNT(college_junior_club_team) FROM table_1013129_2 WHERE nhl_team = \"Washington Capitals\"", "question": "How many different college/junior/club teams provided a player to the Washington Capitals NHL Team?", "context": "CREATE TABLE table_1013129_2 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_1013129_3 WHERE nhl_team = \"New Jersey Devils\"", "question": "How many different nationalities do the players of New Jersey Devils come from?", "context": "CREATE TABLE table_1013129_3 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT pick FROM table_1013129_3 WHERE player = \"Dorain Anneck\"", "question": "What's Dorain Anneck's pick number?", "context": "CREATE TABLE table_1013129_3 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_1013129_3 WHERE nhl_team = \"Vancouver Canucks\"", "question": "What is the nationality of the player from Vancouver Canucks?", "context": "CREATE TABLE table_1013129_3 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT pick FROM table_1013129_3 WHERE college_junior_club_team = \"Springfield Olympics (NEJHL)\"", "question": "What's the pick number of the player from Springfield Olympics (Nejhl)?", "context": "CREATE TABLE table_1013129_3 (pick VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT launched FROM table_1014206_2 WHERE laid_down = \"September 1, 1964\"", "question": "When were the ships launched that were laid down on september 1, 1964?", "context": "CREATE TABLE table_1014206_2 (launched VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT _number FROM table_1014206_2 WHERE commissioned = \"December 18, 1965\"", "question": "List the # for ships commissioned on december 18, 1965.", "context": "CREATE TABLE table_1014206_2 (_number VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT _number FROM table_1014206_2 WHERE commissioned = \"September 30, 1967\"", "question": "List the # for ships commissioned on september 30, 1967.", "context": "CREATE TABLE table_1014206_2 (_number VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT laid_down FROM table_1014206_2 WHERE commissioned = \"October 29, 1965\"", "question": "When were ships laid down that were commissioned on october 29, 1965?", "context": "CREATE TABLE table_1014206_2 (laid_down VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT commonwealth_equivalent FROM table_1015521_2 WHERE rank_in_spanish = \"Coronel\"", "question": " What could a spanish coronel be addressed as in the commonwealth military?", "context": "CREATE TABLE table_1015521_2 (commonwealth_equivalent VARCHAR, rank_in_spanish VARCHAR)"}, {"answer": "SELECT rank_in_english FROM table_1015521_2 WHERE commonwealth_equivalent = \"Group Captain\"", "question": "Give me a list of all spanish officer titles that could receive recognition as group captain in english", "context": "CREATE TABLE table_1015521_2 (rank_in_english VARCHAR, commonwealth_equivalent VARCHAR)"}, {"answer": "SELECT us_air_force_equivalent FROM table_1015521_2 WHERE commonwealth_equivalent = \"Pilot Officer\"", "question": "If you are a pilot officer in the commonwealth then what will you called as in the US air force?", "context": "CREATE TABLE table_1015521_2 (us_air_force_equivalent VARCHAR, commonwealth_equivalent VARCHAR)"}, {"answer": "SELECT commonwealth_equivalent FROM table_1015521_2 WHERE us_air_force_equivalent = \"Major General\"", "question": "If you're a major general in the US air force then what ranking will you receive in the commonwealth's air force?", "context": "CREATE TABLE table_1015521_2 (commonwealth_equivalent VARCHAR, us_air_force_equivalent VARCHAR)"}, {"answer": "SELECT rank_in_spanish FROM table_1015521_2 WHERE rank_in_english = \"Major\"", "question": "If you get a ranking as major in the  english military then what would the spanish military address you as? ", "context": "CREATE TABLE table_1015521_2 (rank_in_spanish VARCHAR, rank_in_english VARCHAR)"}, {"answer": "SELECT province FROM table_1024710_2 WHERE electorate = \"Grey and Bell\"", "question": "Which province is grey and bell electorate in", "context": "CREATE TABLE table_1024710_2 (province VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT province FROM table_1024710_2 WHERE electorate = \"Bay of Islands\"", "question": "Which province is bay of islands in", "context": "CREATE TABLE table_1024710_2 (province VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT COUNT(total_w_l) FROM table_10294071_1 WHERE doubles_w_l = \"11\u201311\"", "question": "what is the total number of\u00a0total w\u2013l\u00a0where\u00a0doubles w\u2013l\u00a0is 11\u201311", "context": "CREATE TABLE table_10294071_1 (total_w_l VARCHAR, doubles_w_l VARCHAR)"}, {"answer": "SELECT COUNT(singles_w_l) FROM table_10294071_1 WHERE doubles_w_l = \"11\u201314\"", "question": "what is the total number of\u00a0singles w\u2013l\u00a0where\u00a0doubles w\u2013l\u00a0is 11\u201314", "context": "CREATE TABLE table_10294071_1 (singles_w_l VARCHAR, doubles_w_l VARCHAR)"}, {"answer": "SELECT total_w_l FROM table_10294071_1 WHERE player = \"Boro Jovanovi\u0107 Category:Articles with hCards\"", "question": " what's the\u00a0total w\u2013l\u00a0where\u00a0player\u00a0is boro jovanovi\u0107 category:articles with hcards", "context": "CREATE TABLE table_10294071_1 (total_w_l VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(ties_played) FROM table_10294071_1 WHERE player = \"Josip Palada Category:Articles with hCards\"", "question": "what is the maximum\u00a0ties played\u00a0where\u00a0player\u00a0is josip palada category:articles with hcards", "context": "CREATE TABLE table_10294071_1 (ties_played INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(ties_played) FROM table_10294071_1 WHERE total_w_l = \"38\u201324\"", "question": "what is the total number of\u00a0ties played\u00a0where\u00a0total w\u2013l\u00a0is 38\u201324", "context": "CREATE TABLE table_10294071_1 (ties_played VARCHAR, total_w_l VARCHAR)"}, {"answer": "SELECT COUNT(frequency) FROM table_10333757_1 WHERE market_rank = \"Burlington - Plattsburgh , Vermont - New York /143\"", "question": "What is the Frequency at the Market/Rank of Burlington - Plattsburgh , Vermont - New York /143?", "context": "CREATE TABLE table_10333757_1 (frequency VARCHAR, market_rank VARCHAR)"}, {"answer": "SELECT branding FROM table_10333757_1 WHERE group_owner = \"Qantam of Cape Cod, LLC\"", "question": "What is the Branding for Group Owner Qantam of Cape Cod, LLC?", "context": "CREATE TABLE table_10333757_1 (branding VARCHAR, group_owner VARCHAR)"}, {"answer": "SELECT branding FROM table_10333757_1 WHERE calls = \"WRKO\"", "question": "What Branding does WRKO calls use?", "context": "CREATE TABLE table_10333757_1 (branding VARCHAR, calls VARCHAR)"}, {"answer": "SELECT format FROM table_10333757_1 WHERE branding = \"1290 WKBK W281AU 104.1\"", "question": "What is the Format for Branding of 1290 wkbk w281au 104.1?", "context": "CREATE TABLE table_10333757_1 (format VARCHAR, branding VARCHAR)"}, {"answer": "SELECT market_rank FROM table_10333757_1 WHERE calls = \"WCRN\"", "question": "Which Market/Rank is associated with WCRN calls?", "context": "CREATE TABLE table_10333757_1 (market_rank VARCHAR, calls VARCHAR)"}, {"answer": "SELECT frequency FROM table_10333757_1 WHERE calls = \"WEGP\"", "question": "Which Frequency is used for WEGP calls?", "context": "CREATE TABLE table_10333757_1 (frequency VARCHAR, calls VARCHAR)"}, {"answer": "SELECT bts_retail_price__regulated_ FROM table_10408617_5 WHERE tariff_code = \"ff0 PRS\"", "question": "What is the regulated retail price for the tariff code ff0 prs?", "context": "CREATE TABLE table_10408617_5 (bts_retail_price__regulated_ VARCHAR, tariff_code VARCHAR)"}, {"answer": "SELECT approx_premium FROM table_10408617_5 WHERE tariff_code = \"g9\"", "question": "What is the premium associated with tariff code g9?", "context": "CREATE TABLE table_10408617_5 (approx_premium VARCHAR, tariff_code VARCHAR)"}, {"answer": "SELECT COUNT(tariff_code) FROM table_10408617_5 WHERE bts_retail_price__regulated_ = \"2p/min or inclusive\"", "question": "How many tariff codes have a bts retail price of 2p/min or inclusive?", "context": "CREATE TABLE table_10408617_5 (tariff_code VARCHAR, bts_retail_price__regulated_ VARCHAR)"}, {"answer": "SELECT COUNT(tariff_code) FROM table_10408617_5 WHERE bts_retail_price__regulated_ = \"2.553p/min\"", "question": "How many tariff codes have a bts retail price of 2.553p/min?", "context": "CREATE TABLE table_10408617_5 (tariff_code VARCHAR, bts_retail_price__regulated_ VARCHAR)"}, {"answer": "SELECT prefixes FROM table_10408617_5 WHERE scheme = \"Pence per minute, fixed at all times\" AND approx_premium = \"3p/min\"", "question": "What prefixes are priced at pence per minute, fixed at all times with a premium of 3p/min?", "context": "CREATE TABLE table_10408617_5 (prefixes VARCHAR, scheme VARCHAR, approx_premium VARCHAR)"}, {"answer": "SELECT bts_retail_price__regulated_ FROM table_10408617_5 WHERE tariff_code = \"g10\"", "question": "What is the bts retail price (regulated) for tariff code g10?", "context": "CREATE TABLE table_10408617_5 (bts_retail_price__regulated_ VARCHAR, tariff_code VARCHAR)"}, {"answer": "SELECT MIN(radius__r___) FROM table_10432351_1", "question": "What is the smallest possible radius?", "context": "CREATE TABLE table_10432351_1 (radius__r___ INTEGER)"}, {"answer": "SELECT spectral_type FROM table_10432351_1 WHERE star__pismis24__number_ = \"1SW\"", "question": "What are all the spectral types for star mismis24-# is 1sw?", "context": "CREATE TABLE table_10432351_1 (spectral_type VARCHAR, star__pismis24__number_ VARCHAR)"}, {"answer": "SELECT MIN(mass__m___) FROM table_10432351_1 WHERE radius__r___ = 10", "question": "If a radius is 10, what  is the lowest possible mass?", "context": "CREATE TABLE table_10432351_1 (mass__m___ INTEGER, radius__r___ VARCHAR)"}, {"answer": "SELECT seat_factor FROM table_105344_2 WHERE year = 2006", "question": "What percentage of seats were filled in 2006?", "context": "CREATE TABLE table_105344_2 (seat_factor VARCHAR, year VARCHAR)"}, {"answer": "SELECT flying_hours FROM table_105344_2 WHERE aircraft_kilometers > 64379058.0", "question": "How many hours were flown in each of the years where more than 64379058.0 kilometers were flown?", "context": "CREATE TABLE table_105344_2 (flying_hours VARCHAR, aircraft_kilometers INTEGER)"}, {"answer": "SELECT MAX(aircraft_kilometers) FROM table_105344_2 WHERE departures = 17096", "question": "Of the years that had exactly 17096 departures, what is the greatest number of aircraft kilometers flown?", "context": "CREATE TABLE table_105344_2 (aircraft_kilometers INTEGER, departures VARCHAR)"}, {"answer": "SELECT winning_team FROM table_10548224_1 WHERE losing_team = \"New York Yankees\"", "question": "Which winning team beat the New York Yankees?", "context": "CREATE TABLE table_10548224_1 (winning_team VARCHAR, losing_team VARCHAR)"}, {"answer": "SELECT final_score FROM table_10548224_1 WHERE date_contested = \"February 1, 2009\"", "question": "What was the final score for the game that was contested on February 1, 2009?", "context": "CREATE TABLE table_10548224_1 (final_score VARCHAR, date_contested VARCHAR)"}, {"answer": "SELECT sport FROM table_10548224_1 WHERE final_score = \"3-2\"", "question": "What sport had a final score of 3-2?", "context": "CREATE TABLE table_10548224_1 (sport VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT winning_team FROM table_10548224_1 WHERE date_contested = \"February 1, 2009\"", "question": "Who was the winning team of the game that was contested on February 1, 2009?", "context": "CREATE TABLE table_10548224_1 (winning_team VARCHAR, date_contested VARCHAR)"}, {"answer": "SELECT losing_team FROM table_10548224_1 WHERE date_contested = \"February 1, 2004\"", "question": "Who was the losing team of the game that was contested on February 1, 2004?", "context": "CREATE TABLE table_10548224_1 (losing_team VARCHAR, date_contested VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_1057262_2 WHERE crop__kilotonnes_ = \"s Lupin\"", "question": "what's the minimum\u00a0total\u00a0with\u00a0crop (kilotonnes)\u00a0being s lupin", "context": "CREATE TABLE table_1057262_2 (total INTEGER, crop__kilotonnes_ VARCHAR)"}, {"answer": "SELECT new_south_wales FROM table_1057262_2 WHERE crop__kilotonnes_ = \"Canola\"", "question": "what's the\u00a0new south wales\u00a0with\u00a0crop (kilotonnes)\u00a0being canola", "context": "CREATE TABLE table_1057262_2 (new_south_wales VARCHAR, crop__kilotonnes_ VARCHAR)"}, {"answer": "SELECT COUNT(south_australia) FROM table_1057262_2 WHERE victoria = 2173", "question": "what's the total number of\u00a0south australia\u00a0with\u00a0victoria\u00a0value of 2173", "context": "CREATE TABLE table_1057262_2 (south_australia VARCHAR, victoria VARCHAR)"}, {"answer": "SELECT MIN(tasmania) FROM table_1057262_2", "question": "what's the minimum\u00a0tasmania value", "context": "CREATE TABLE table_1057262_2 (tasmania INTEGER)"}, {"answer": "SELECT COUNT(tasmania) FROM table_1057262_2 WHERE new_south_wales = 190", "question": "what's the total number of\u00a0tasmania\u00a0with\u00a0new south wales\u00a0crop of 190 kilotonnes", "context": "CREATE TABLE table_1057262_2 (tasmania VARCHAR, new_south_wales VARCHAR)"}, {"answer": "SELECT COUNT(significant_relationship) FROM table_1058787_1 WHERE virtues = \"Will\"", "question": "How many significant relationships list Will as a virtue?", "context": "CREATE TABLE table_1058787_1 (significant_relationship VARCHAR, virtues VARCHAR)"}, {"answer": "SELECT examples FROM table_1058787_1 WHERE existential_question_[_not_in_citation_given_] = \"Can I Love?\"", "question": "Which examples ask the existential question \"Can I Love?\"", "context": "CREATE TABLE table_1058787_1 (examples VARCHAR, existential_question_ VARCHAR, _not_in_citation_given_ VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_1059743_2 WHERE points = \"796.7\"", "question": "How many countries got 796.7 points?", "context": "CREATE TABLE table_1059743_2 (rank VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(group_stage) FROM table_1059743_2 WHERE points = \"177.2\"", "question": "In what group stage were 177.2 points awarded?", "context": "CREATE TABLE table_1059743_2 (group_stage VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(group_stage) FROM table_1059743_2 WHERE points = \"886.6\"", "question": "What is the lowest group to earn 886.6 points?", "context": "CREATE TABLE table_1059743_2 (group_stage INTEGER, points VARCHAR)"}, {"answer": "SELECT COUNT(member_association) FROM table_1059743_2 WHERE points = \"177.2\"", "question": "How many countries earned 177.2 points?", "context": "CREATE TABLE table_1059743_2 (member_association VARCHAR, points VARCHAR)"}, {"answer": "SELECT county FROM table_10586064_2 WHERE total = \"18,900 (R)\"", "question": "What country had the total 18,900 (r)?", "context": "CREATE TABLE table_10586064_2 (county VARCHAR, total VARCHAR)"}, {"answer": "SELECT county FROM table_10586064_2 WHERE precincts = 515", "question": "What is the county of precints 515?", "context": "CREATE TABLE table_10586064_2 (county VARCHAR, precincts VARCHAR)"}, {"answer": "SELECT city FROM table_10601843_2 WHERE capacity = 41903", "question": "Which city has a capacity of 41903?", "context": "CREATE TABLE table_10601843_2 (city VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_10601843_2 WHERE stadium = \"Otkrytie Arena\"", "question": "What is the maximum capacity of the Otkrytie Arena stadium?", "context": "CREATE TABLE table_10601843_2 (capacity INTEGER, stadium VARCHAR)"}, {"answer": "SELECT MIN(opening) FROM table_10601843_2 WHERE tenant = \"Bursaspor\"", "question": "When did the stadium where Bursaspor is the tenant open?", "context": "CREATE TABLE table_10601843_2 (opening INTEGER, tenant VARCHAR)"}, {"answer": "SELECT COUNT(tenant) FROM table_10601843_2 WHERE city = \"Samsun\"", "question": "How many tenants are there in the city of Samsun?", "context": "CREATE TABLE table_10601843_2 (tenant VARCHAR, city VARCHAR)"}, {"answer": "SELECT shivalik_zone FROM table_10638523_1 WHERE mid_hill_zone = \"10%\"", "question": "What is the percentage of the Shivalik Zone where the percentage of the Mid-Hill Zone is 10%?", "context": "CREATE TABLE table_10638523_1 (shivalik_zone VARCHAR, mid_hill_zone VARCHAR)"}, {"answer": "SELECT mid_hill_zone FROM table_10638523_1 WHERE particulars_and_characteristics = \"Altitude\"", "question": "For mid-hill zone  what is the altitude?", "context": "CREATE TABLE table_10638523_1 (mid_hill_zone VARCHAR, particulars_and_characteristics VARCHAR)"}, {"answer": "SELECT trance__n_himalaya_zone FROM table_10638523_1 WHERE particulars_and_characteristics = \"Climatic conditions\"", "question": "What are the climatic conditions for the trance- n himalaya zone?", "context": "CREATE TABLE table_10638523_1 (trance__n_himalaya_zone VARCHAR, particulars_and_characteristics VARCHAR)"}, {"answer": "SELECT trance__n_himalaya_zone FROM table_10638523_1 WHERE high_hill_zone = \"25%\"", "question": "What is the percentage of the  trance- n himalaya zone that corresponds with the high hill zone is 25%?", "context": "CREATE TABLE table_10638523_1 (trance__n_himalaya_zone VARCHAR, high_hill_zone VARCHAR)"}, {"answer": "SELECT state_represented FROM table_10644188_3 WHERE name = \"Ted Stevens\"", "question": "What is the state of Ted Stevens?", "context": "CREATE TABLE table_10644188_3 (state_represented VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(standard) FROM table_10682862_68 WHERE first_title = 1992", "question": "What's the standard of the country who won its first title in 1992?", "context": "CREATE TABLE table_10682862_68 (standard INTEGER, first_title VARCHAR)"}, {"answer": "SELECT MIN(players) FROM table_10682862_68", "question": "What's the smallest number of players?", "context": "CREATE TABLE table_10682862_68 (players INTEGER)"}, {"answer": "SELECT MAX(last_title) FROM table_10682862_68", "question": "In what year was the last last title received, by any of the countries?", "context": "CREATE TABLE table_10682862_68 (last_title INTEGER)"}, {"answer": "SELECT religious_group FROM table_10710364_1 WHERE population__percentage_2001 = \"0.72%\"", "question": "What religious groups made up 0.72% of the Indian population in 2001?", "context": "CREATE TABLE table_10710364_1 (religious_group VARCHAR, population__percentage_2001 VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_10718868_2 WHERE no_in_season = 15", "question": "What is the original air date for episode 15 of season 6?", "context": "CREATE TABLE table_10718868_2 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT podiums FROM table_10753917_1 WHERE team = \"Williams\" AND margin_of_defeat = \"2\"", "question": "Which podiums did the Williams team have with a margin of defeat of 2?", "context": "CREATE TABLE table_10753917_1 (podiums VARCHAR, team VARCHAR, margin_of_defeat VARCHAR)"}, {"answer": "SELECT COUNT(driver) FROM table_10753917_1 WHERE team = \"Williams\" AND margin_of_defeat = \"2\"", "question": "How many drivers on the williams team had a margin of defeat of 2?", "context": "CREATE TABLE table_10753917_1 (driver VARCHAR, team VARCHAR, margin_of_defeat VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_10753917_1 WHERE driver = \"Clay Regazzoni\"", "question": "How many seasons was clay regazzoni the driver?", "context": "CREATE TABLE table_10753917_1 (season VARCHAR, driver VARCHAR)"}, {"answer": "SELECT margin_of_defeat FROM table_10753917_1 WHERE points = \"30\"", "question": "Which margin of defeats had points of 30?", "context": "CREATE TABLE table_10753917_1 (margin_of_defeat VARCHAR, points VARCHAR)"}, {"answer": "SELECT podiums FROM table_10753917_1 WHERE team = \"Alfa Romeo\"", "question": "Which podiums did the alfa romeo team have?", "context": "CREATE TABLE table_10753917_1 (podiums VARCHAR, team VARCHAR)"}, {"answer": "SELECT percent_of_slovenes_1951 FROM table_10797636_1 WHERE village__german_ = \"Bach\"", "question": "What was the percent of slovenes 1951 for bach?", "context": "CREATE TABLE table_10797636_1 (percent_of_slovenes_1951 VARCHAR, village__german_ VARCHAR)"}, {"answer": "SELECT college FROM table_10812403_4 WHERE cfl_team = \"Saskatchewan Roughriders\"", "question": "What college's team is the Saskatchewan Roughriders?", "context": "CREATE TABLE table_10812403_4 (college VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT position FROM table_10812403_4 WHERE player = \"Calvin McCarty\"", "question": "What position did Calvin Mccarty play?", "context": "CREATE TABLE table_10812403_4 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_10812403_4 WHERE pick__number = 30", "question": "How many people were pick #30?", "context": "CREATE TABLE table_10812403_4 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_10812403_4 WHERE player = \"Calvin McCarty\"", "question": "What college did Calvin McCarty play at?", "context": "CREATE TABLE table_10812403_4 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_10812403_4 WHERE position = \"LB\"", "question": "What college had a LB in the draft?", "context": "CREATE TABLE table_10812403_4 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT high_assists FROM table_10812293_6 WHERE date = \"February 9\"", "question": "Who got high assists for the game played on February 9?", "context": "CREATE TABLE table_10812293_6 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT name_of_lava_dome FROM table_1081235_1 WHERE last_eruption_or_growth_episode = \"Holocene\"", "question": "Which lava domes erupted or had a growth episode during the Holocene period?", "context": "CREATE TABLE table_1081235_1 (name_of_lava_dome VARCHAR, last_eruption_or_growth_episode VARCHAR)"}, {"answer": "SELECT composition FROM table_1081235_1 WHERE name_of_lava_dome = \"Valles lava dome\"", "question": "What is the composition at Valles lava dome?", "context": "CREATE TABLE table_1081235_1 (composition VARCHAR, name_of_lava_dome VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_1081235_1 WHERE name_of_lava_dome = \"Tata Sabaya lava domes\"", "question": "How many countries are the Tata Sabaya Lava domes located in?", "context": "CREATE TABLE table_1081235_1 (country VARCHAR, name_of_lava_dome VARCHAR)"}, {"answer": "SELECT country FROM table_1081235_1 WHERE last_eruption_or_growth_episode = \"1986\"", "question": "What countries have had eruptions of growth episodes in 1986?", "context": "CREATE TABLE table_1081235_1 (country VARCHAR, last_eruption_or_growth_episode VARCHAR)"}, {"answer": "SELECT lyricist FROM table_10848177_1 WHERE length = \"3:05\"", "question": "Who is the lyricist for the song with a length of 3:05?", "context": "CREATE TABLE table_10848177_1 (lyricist VARCHAR, length VARCHAR)"}, {"answer": "SELECT song FROM table_10848177_1 WHERE length = \"3:05\"", "question": "What song has a length of 3:05?", "context": "CREATE TABLE table_10848177_1 (song VARCHAR, length VARCHAR)"}, {"answer": "SELECT lyricist FROM table_10848177_1 WHERE length = \"6:14\"", "question": "Which lyricist has a song with a length of 6:14?", "context": "CREATE TABLE table_10848177_1 (lyricist VARCHAR, length VARCHAR)"}, {"answer": "SELECT MAX(track__number) FROM table_10848177_1", "question": "What is the highest track number?", "context": "CREATE TABLE table_10848177_1 (track__number INTEGER)"}, {"answer": "SELECT song FROM table_10848177_1 WHERE picturization = \"Vijay\"", "question": "Which song has picturization by only vijay?", "context": "CREATE TABLE table_10848177_1 (song VARCHAR, picturization VARCHAR)"}, {"answer": "SELECT singers FROM table_10848177_1 WHERE lyricist = \"Alangudi Somu\"", "question": "For which singers was Alangudi Somu the lyricist?", "context": "CREATE TABLE table_10848177_1 (singers VARCHAR, lyricist VARCHAR)"}, {"answer": "SELECT publisher FROM table_10875694_11 WHERE product_no = \"SCUS-97265\"", "question": "What publishers were involved with product number SCUS-97265?", "context": "CREATE TABLE table_10875694_11 (publisher VARCHAR, product_no VARCHAR)"}, {"answer": "SELECT COUNT(system) FROM table_10875694_11 WHERE title = \"James Bond 007: Everything or Nothing\"", "question": "What is the total number of James Bond 007: Everything or Nothing for each system?", "context": "CREATE TABLE table_10875694_11 (system VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(product_no) FROM table_10875694_11 WHERE title = \"Jak 3\"", "question": "How many products have the title \"Jak 3\"?", "context": "CREATE TABLE table_10875694_11 (product_no VARCHAR, title VARCHAR)"}, {"answer": "SELECT compatible_with_60gb_pal_80gb_ntsc_ps3__cechc_ceche_ FROM table_10875694_11 WHERE publisher = \"Electronic Arts\" AND title = \"James Bond 007: Agent Under Fire\"", "question": "Which James Bond 007: Agent Under Fire from Electronic Arts is compatible with 60 gb pal/80 gb NTSC PS3 (CECHC/CECHE)?", "context": "CREATE TABLE table_10875694_11 (compatible_with_60gb_pal_80gb_ntsc_ps3__cechc_ceche_ VARCHAR, publisher VARCHAR, title VARCHAR)"}, {"answer": "SELECT publisher FROM table_10875694_11 WHERE product_no = \"SLUS-20265\"", "question": "What publishers produce product number SLUS-20265?", "context": "CREATE TABLE table_10875694_11 (publisher VARCHAR, product_no VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_10875694_11 WHERE product_no = \"SCUS-97330\"", "question": "How many titles have the product number SCUS-97330?", "context": "CREATE TABLE table_10875694_11 (title VARCHAR, product_no VARCHAR)"}, {"answer": "SELECT status FROM table_1090916_2 WHERE livery = \"Blue\"", "question": "What is  the status when livery is blue?", "context": "CREATE TABLE table_1090916_2 (status VARCHAR, livery VARCHAR)"}, {"answer": "SELECT location FROM table_1090916_2 WHERE status = \"In service as coaching stock\"", "question": "What is the location when the status is in service as coaching stock?", "context": "CREATE TABLE table_1090916_2 (location VARCHAR, status VARCHAR)"}, {"answer": "SELECT first_season FROM table_1096793_1 WHERE last_title = \"2012\"", "question": "What was the first season of the club who last won a title in 2012?", "context": "CREATE TABLE table_1096793_1 (first_season VARCHAR, last_title VARCHAR)"}, {"answer": "SELECT first_season FROM table_1096793_1 WHERE position_in_2012 = \"2nd in Superettan\"", "question": "What was the first season of the club that in 2012 was 2nd in Superettan?", "context": "CREATE TABLE table_1096793_1 (first_season VARCHAR, position_in_2012 VARCHAR)"}, {"answer": "SELECT directed_by FROM table_11075747_3 WHERE written_by = \"Tommy Thompson\"", "question": "Who directed the second episode of \"The Homecoming\" which was written by Tommy Thompson?", "context": "CREATE TABLE table_11075747_3 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT the_bronx FROM table_1108394_34 WHERE manhattan = \"29.9_percentage\"", "question": "What percentage of The Bronx voters occured when Manhattan had 29.9% of voters?", "context": "CREATE TABLE table_1108394_34 (the_bronx VARCHAR, manhattan VARCHAR)"}, {"answer": "SELECT the_bronx FROM table_1108394_34 WHERE total = 2054", "question": "What number of voters did the Bronx have when the total number was 2054?", "context": "CREATE TABLE table_1108394_34 (the_bronx VARCHAR, total VARCHAR)"}, {"answer": "SELECT queens FROM table_1108394_34 WHERE richmond_[staten_is] = \"295\"", "question": "What number of voters did Queens have when Staten Island had 295 voters?", "context": "CREATE TABLE table_1108394_34 (queens VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)"}, {"answer": "SELECT staten_island FROM table_1108394_6 WHERE brooklyn = \"940\"", "question": "What was Staten Island when Brooklyn was 940?", "context": "CREATE TABLE table_1108394_6 (staten_island VARCHAR, brooklyn VARCHAR)"}, {"answer": "SELECT COUNT(manhattan) FROM table_1108394_6 WHERE staten_island = \"12,658\"", "question": "What was the total number in Manhattan when Staten Island was 12,658?", "context": "CREATE TABLE table_1108394_6 (manhattan VARCHAR, staten_island VARCHAR)"}, {"answer": "SELECT brooklyn FROM table_1108394_6 WHERE manhattan = \"3,139\"", "question": "What was the total in Brooklyn when Manhattan was 3,139?", "context": "CREATE TABLE table_1108394_6 (brooklyn VARCHAR, manhattan VARCHAR)"}, {"answer": "SELECT 2013 AS _republican_primary FROM table_1108394_6 WHERE staten_island = \"451\"", "question": "Who was the republican candidate in 2013 when Staten Island was 451?", "context": "CREATE TABLE table_1108394_6 (staten_island VARCHAR)"}, {"answer": "SELECT staten_island FROM table_1108394_6 WHERE the_bronx = \"1,281\"", "question": "What was the amount in Staten Island when The Bronx was 1,281?", "context": "CREATE TABLE table_1108394_6 (staten_island VARCHAR, the_bronx VARCHAR)"}, {"answer": "SELECT _percentage FROM table_1108394_47 WHERE the_bronx = \"133\"", "question": "The candidate who received 133 votes in the Bronx won what percentage overall?", "context": "CREATE TABLE table_1108394_47 (_percentage VARCHAR, the_bronx VARCHAR)"}, {"answer": "SELECT 1921 FROM table_1108394_47 WHERE queens = \"88\"", "question": "Which candidate won 88 votes in Queens in 1921?", "context": "CREATE TABLE table_1108394_47 (queens VARCHAR)"}, {"answer": "SELECT brooklyn FROM table_1108394_47 WHERE manhattan = \"321\"", "question": "How many votes in Brooklyn were won by the candidate who won 321 votes in Manhattan?", "context": "CREATE TABLE table_1108394_47 (brooklyn VARCHAR, manhattan VARCHAR)"}, {"answer": "SELECT _percentage FROM table_1108394_47 WHERE queens = \"87,676\"", "question": "The man who received 87,676 votes in Queens won what percentage of the total for the election?", "context": "CREATE TABLE table_1108394_47 (_percentage VARCHAR, queens VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1108394_47 WHERE manhattan = \"29.9_percentage\"", "question": "How many parties received 29.9% of the vote in Manhattan?", "context": "CREATE TABLE table_1108394_47 (party VARCHAR, manhattan VARCHAR)"}, {"answer": "SELECT MAX(late_1943) FROM table_1115992_1 WHERE NOT _late_1941 = \"Slovenia\"", "question": "Name the most late 1943 with late 194 in slovenia", "context": "CREATE TABLE table_1115992_1 (late_1943 INTEGER, _late_1941 VARCHAR)"}, {"answer": "SELECT MIN(sept_1943) FROM table_1115992_1 WHERE late_1943 = 78000", "question": "What is the least september 1943 when late 1943 is 78000", "context": "CREATE TABLE table_1115992_1 (sept_1943 INTEGER, late_1943 VARCHAR)"}, {"answer": "SELECT COUNT(longest_run) FROM table_11157122_5 WHERE player = \"Eric Dickerson\"", "question": "What was Eric Dickerson's longest run?", "context": "CREATE TABLE table_11157122_5 (longest_run VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(attempts) FROM table_11157122_5 WHERE player = \"Charles White\"", "question": "How many attempts did Charles White make?", "context": "CREATE TABLE table_11157122_5 (attempts INTEGER, player VARCHAR)"}, {"answer": "SELECT yards FROM table_11157122_5 WHERE attempts = 87", "question": "How many yards did the player with 87 attempts rush?", "context": "CREATE TABLE table_11157122_5 (yards VARCHAR, attempts VARCHAR)"}, {"answer": "SELECT COUNT(highest) FROM table_11206916_1 WHERE team = \"Elgin City\"", "question": "What was the highest amount of people that attended the elgin city team?", "context": "CREATE TABLE table_11206916_1 (highest VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_11206916_1 WHERE stadium = \"Firs Park\"", "question": "The firs park stadium had the lowest average attendence of what?", "context": "CREATE TABLE table_11206916_1 (average INTEGER, stadium VARCHAR)"}, {"answer": "SELECT MIN(highest) FROM table_11206916_1 WHERE team = \"Dumbarton\"", "question": "What was the lowest highest attendance for the dumbarton team?", "context": "CREATE TABLE table_11206916_1 (highest INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(highest) FROM table_11206916_1 WHERE stadium = \"Gayfield Park\"", "question": "The gayfield park stadium had a highest attendance of what?", "context": "CREATE TABLE table_11206916_1 (highest INTEGER, stadium VARCHAR)"}, {"answer": "SELECT COUNT(highest) FROM table_11206916_1 WHERE team = \"Stenhousemuir\"", "question": "The stenhousemuir team had how many highest attendances?", "context": "CREATE TABLE table_11206916_1 (highest VARCHAR, team VARCHAR)"}, {"answer": "SELECT premiere FROM table_11174272_1 WHERE hk_viewers = \"2.09 million\"", "question": "what's the\u00a0premiere\u00a0with\u00a0hk viewers\u00a0of 2.09 million", "context": "CREATE TABLE table_11174272_1 (premiere VARCHAR, hk_viewers VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_11174272_1", "question": "what is the minimum rank", "context": "CREATE TABLE table_11174272_1 (rank INTEGER)"}, {"answer": "SELECT MIN(capacity) FROM table_11208143_9 WHERE team = \"Dundee United\"", "question": "What is the minimum capacity of Dundee United's stadium?", "context": "CREATE TABLE table_11208143_9 (capacity INTEGER, team VARCHAR)"}, {"answer": "SELECT stadium FROM table_11208143_9 WHERE capacity = 51082", "question": "Which stadiums have a capacity of 51082?", "context": "CREATE TABLE table_11208143_9 (stadium VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT COUNT(stadium) FROM table_11208143_9 WHERE capacity = 7500", "question": "How many stadiums are there with a capacity of 7500?", "context": "CREATE TABLE table_11208143_9 (stadium VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_11208143_9 WHERE stadium = \"Pittodrie\"", "question": "What is Pittodrie Stadium's maximum capacity?", "context": "CREATE TABLE table_11208143_9 (capacity INTEGER, stadium VARCHAR)"}, {"answer": "SELECT stadium FROM table_11208143_9 WHERE average = 13840", "question": "Which stadiums have an average attendance of 13840?", "context": "CREATE TABLE table_11208143_9 (stadium VARCHAR, average VARCHAR)"}, {"answer": "SELECT highest FROM table_11208143_9 WHERE average = 4752", "question": "What are the highest recorded attendance rates of the stadiums with an average attendance of 4752?", "context": "CREATE TABLE table_11208143_9 (highest VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(ties) FROM table_11233358_2", "question": "What is the highest number of ties?", "context": "CREATE TABLE table_11233358_2 (ties INTEGER)"}, {"answer": "SELECT COUNT(w_l__total_) FROM table_11233358_2 WHERE debut = 2013", "question": "During the 2013 debut, what is the w-I(total) number?", "context": "CREATE TABLE table_11233358_2 (w_l__total_ VARCHAR, debut VARCHAR)"}, {"answer": "SELECT catalog_number FROM table_11222744_3 WHERE title = \"Callanetics: 10 years Younger In 10 Hours\"", "question": "What is the catalog number named callanetics: 10 years younger in 10 hours", "context": "CREATE TABLE table_11222744_3 (catalog_number VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(studio) FROM table_11222744_3 WHERE catalog_number = \"CAL03 / 0091037137333\"", "question": "how many studios have the catalog number \"cal03 / 0091037137333\"?", "context": "CREATE TABLE table_11222744_3 (studio VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT format FROM table_11222744_3 WHERE title = \"Callanetics: 10 years Younger In 10 Hours\"", "question": "what is the format of \"callanetics: 10 years younger in 10 hours\"?", "context": "CREATE TABLE table_11222744_3 (format VARCHAR, title VARCHAR)"}, {"answer": "SELECT catalog_number FROM table_11222744_3 WHERE title = \"Super Callanetics\"", "question": "What is the catalog number of the title called \"super callanetics\"?", "context": "CREATE TABLE table_11222744_3 (catalog_number VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(catalog_number) FROM table_11222744_3 WHERE title = \"Quick Callanetics\"", "question": "how many titles have the name \"quick callanetics\"?", "context": "CREATE TABLE table_11222744_3 (catalog_number VARCHAR, title VARCHAR)"}, {"answer": "SELECT studio FROM table_11222744_3 WHERE catalog_number = \"CAL03 / 0091037137333\"", "question": "Who creates the catalog with the number \"cal03 / 0091037137333\"?", "context": "CREATE TABLE table_11222744_3 (studio VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT rating FROM table_11238597_4 WHERE viewers__millions_ = \"1.83\"", "question": "What was the rating for the episode with 1.83 viewers (millions)?", "context": "CREATE TABLE table_11238597_4 (rating VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT share FROM table_11238597_4 WHERE air_date = \"December 10, 2008\"", "question": "What was the share for the episode with the air date december 10, 2008?", "context": "CREATE TABLE table_11238597_4 (share VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT premiere FROM table_11323532_2 WHERE languages = \"Danish\"", "question": "Which premiere had languages in danish?", "context": "CREATE TABLE table_11323532_2 (premiere VARCHAR, languages VARCHAR)"}, {"answer": "SELECT COUNT(channel) FROM table_11323532_2 WHERE country_region = \"New Zealand\"", "question": "What was the number of channels in New Zealand?", "context": "CREATE TABLE table_11323532_2 (channel VARCHAR, country_region VARCHAR)"}, {"answer": "SELECT premiere FROM table_11323532_2 WHERE host = \"Lieke van Lexmond Dennis Weening\"", "question": "What is the premiere where the host is lieke van lexmond dennis weening?", "context": "CREATE TABLE table_11323532_2 (premiere VARCHAR, host VARCHAR)"}, {"answer": "SELECT premiere FROM table_11323532_2 WHERE channel = \"Mega channel\"", "question": "What is the premiere on the mega channel?", "context": "CREATE TABLE table_11323532_2 (premiere VARCHAR, channel VARCHAR)"}, {"answer": "SELECT wind_power__wp_ FROM table_11347578_1 WHERE country = \"China\"", "question": "What is the symbol for Windpower in China?", "context": "CREATE TABLE table_11347578_1 (wind_power__wp_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT candidates_winning_candidate_in_bold FROM table_1133844_4 WHERE state__linked_to_summaries_below_ = \"West Virginia\"", "question": "who were the winners in west virginia", "context": "CREATE TABLE table_1133844_4 (candidates_winning_candidate_in_bold VARCHAR, state__linked_to_summaries_below_ VARCHAR)"}, {"answer": "SELECT result FROM table_1133844_4 WHERE senator = \"Lindsey Graham\"", "question": "tell the final for lindsey graham", "context": "CREATE TABLE table_1133844_4 (result VARCHAR, senator VARCHAR)"}, {"answer": "SELECT senator FROM table_1133844_4 WHERE state__linked_to_summaries_below_ = \"Arkansas\"", "question": "who won the senate seat in arkansas", "context": "CREATE TABLE table_1133844_4 (senator VARCHAR, state__linked_to_summaries_below_ VARCHAR)"}, {"answer": "SELECT dysart FROM table_11340432_1 WHERE information = \"Principal\"", "question": "What is the dysart of the principal?", "context": "CREATE TABLE table_11340432_1 (dysart VARCHAR, information VARCHAR)"}, {"answer": "SELECT willow_canyon FROM table_11340432_1 WHERE dysart = \"Roberta Lockhart\"", "question": "What is williow canyon of Roberta Lockhart?", "context": "CREATE TABLE table_11340432_1 (willow_canyon VARCHAR, dysart VARCHAR)"}, {"answer": "SELECT willow_canyon FROM table_11340432_1 WHERE shadow_ridge = \"Stallion\"", "question": "What is the willow canyon of Stallion?", "context": "CREATE TABLE table_11340432_1 (willow_canyon VARCHAR, shadow_ridge VARCHAR)"}, {"answer": "SELECT valley_vista FROM table_11340432_1 WHERE willow_canyon = \"Anthony Capuano\"", "question": "Name the Valley Vista of Anthony Capuano", "context": "CREATE TABLE table_11340432_1 (valley_vista VARCHAR, willow_canyon VARCHAR)"}, {"answer": "SELECT COUNT(information) FROM table_11340432_1 WHERE shadow_ridge = \"Michael Hawkins\"", "question": "How many informations does Michael Hawkins have?", "context": "CREATE TABLE table_11340432_1 (information VARCHAR, shadow_ridge VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_1137694_3 WHERE winning_driver = \"Damon Hill\"", "question": "How many total rounds did Damon Hill come in First Place?", "context": "CREATE TABLE table_1137694_3 (round VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1137694_3 WHERE winning_constructor = \"Jordan - Mugen-Honda\"", "question": "Who drove the winning car constructed by Jordan - Mugen-Honda?", "context": "CREATE TABLE table_1137694_3 (winning_driver VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_1137694_3 WHERE winning_constructor = \"Jordan - Mugen-Honda\"", "question": "Which Grand Prix was won by a car constructed by Jordan - Mugen-Honda?", "context": "CREATE TABLE table_1137694_3 (grand_prix VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT location FROM table_11365528_2 WHERE website = \"http://www.mudgeerabasoccer.com/\"", "question": "Which location belongs to the website, http://www.mudgeerabasoccer.com/?", "context": "CREATE TABLE table_11365528_2 (location VARCHAR, website VARCHAR)"}, {"answer": "SELECT COUNT(home_ground) FROM table_11365528_2 WHERE president = \"Peter Williamson\"", "question": "The president, peter williamson, had how many home grounds?", "context": "CREATE TABLE table_11365528_2 (home_ground VARCHAR, president VARCHAR)"}, {"answer": "SELECT COUNT(head_coach) FROM table_11365528_2 WHERE website = \"http://www.burleighbulldogs.org/\"", "question": "How many head coaches are there for the website, http://www.burleighbulldogs.org/?", "context": "CREATE TABLE table_11365528_2 (head_coach VARCHAR, website VARCHAR)"}, {"answer": "SELECT website FROM table_11365528_2 WHERE head_coach = \"Steve Radoslavic\"", "question": "The head coach, steve radoslavic, is related to which websites?", "context": "CREATE TABLE table_11365528_2 (website VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1137696_3 WHERE grand_prix = \"European grand_prix\"", "question": "Who is the driver of the european grand prix?", "context": "CREATE TABLE table_1137696_3 (winning_driver VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT report FROM table_1137696_3 WHERE round = 3", "question": "What is the report for round 3?", "context": "CREATE TABLE table_1137696_3 (report VARCHAR, round VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1137696_3 WHERE round = 7", "question": "What is the winning driver of round 7?", "context": "CREATE TABLE table_1137696_3 (winning_driver VARCHAR, round VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_1137696_3 WHERE winning_driver = \"Michael Schumacher\" AND fastest_lap = \"Michael Schumacher\" AND round = 7", "question": "Name the grand prix with a driver of Michael Schumacher and a round of 7?", "context": "CREATE TABLE table_1137696_3 (grand_prix VARCHAR, round VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT round FROM table_1137702_3 WHERE winning_constructor = \"Benetton - Ford\" AND pole_position = \"Damon Hill\"", "question": "Which round was the winning constructor was Benetton - Ford and in the Pole Position was Damon Hill?", "context": "CREATE TABLE table_1137702_3 (round VARCHAR, winning_constructor VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT COUNT(grand_prix) FROM table_1137702_3 WHERE winning_constructor = \"Benetton - Ford\" AND pole_position = \"Michael Schumacher\"", "question": "How many Grand Prix were the winning constructor Benetton - Ford and the pole position was Michael Schumacher?", "context": "CREATE TABLE table_1137702_3 (grand_prix VARCHAR, winning_constructor VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1137702_3 WHERE round = 6", "question": "Who was the winning driver in round 6?", "context": "CREATE TABLE table_1137702_3 (winning_driver VARCHAR, round VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1137702_3 WHERE grand_prix = \"Pacific grand_prix\"", "question": "Who was the winning driver in the grand prix at Pacific Grand Prix?", "context": "CREATE TABLE table_1137702_3 (winning_driver VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1137702_3 WHERE grand_prix = \"Belgian grand_prix\"", "question": "Who was the winning driver when the grand Prix was at Belgian Grand Prix?", "context": "CREATE TABLE table_1137702_3 (winning_driver VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1137702_3 WHERE pole_position = \"Ayrton Senna\" AND fastest_lap = \"Michael Schumacher\"", "question": "Who was the winning driver when the pole position was held by Ayrton Senna and the Fastest lap was Michael Schumacher?", "context": "CREATE TABLE table_1137702_3 (winning_driver VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT date FROM table_1137703_2 WHERE winning_driver = \"Alain Prost\" AND pole_position = \"Damon Hill\"", "question": "On which date was the winning driver Alain Prost and and had Damon Hill in the pole position?", "context": "CREATE TABLE table_1137703_2 (date VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT round FROM table_1137703_2 WHERE grand_prix = \"Spanish grand_prix\"", "question": "Which round was the Spanish Grand Prix?", "context": "CREATE TABLE table_1137703_2 (round VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT record FROM table_11391448_2 WHERE week = 7", "question": "What was the record at week 7", "context": "CREATE TABLE table_11391448_2 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_11391448_2 WHERE week = 6", "question": "How many teams did they play week 6", "context": "CREATE TABLE table_11391448_2 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(report) FROM table_1140078_2 WHERE race = \"Italian Grand Prix\"", "question": "What is the number of reports for the italian grand prix?", "context": "CREATE TABLE table_1140078_2 (report VARCHAR, race VARCHAR)"}, {"answer": "SELECT pole_position FROM table_1140078_2 WHERE race = \"Belgian Grand Prix\"", "question": "What is the pole position of the belgian grand prix?", "context": "CREATE TABLE table_1140078_2 (pole_position VARCHAR, race VARCHAR)"}, {"answer": "SELECT pole_position FROM table_1140078_2 WHERE location = \"Paul Ricard\"", "question": "What is the pole position of paul ricard?", "context": "CREATE TABLE table_1140078_2 (pole_position VARCHAR, location VARCHAR)"}, {"answer": "SELECT report FROM table_1140078_2 WHERE race = \"United States Grand Prix West\"", "question": "What is the report of the united states grand prix west?", "context": "CREATE TABLE table_1140078_2 (report VARCHAR, race VARCHAR)"}, {"answer": "SELECT location FROM table_1140082_2 WHERE race = \"German Grand Prix\"", "question": "Where is the German Grand Prix?", "context": "CREATE TABLE table_1140082_2 (location VARCHAR, race VARCHAR)"}, {"answer": "SELECT constructor FROM table_1140082_2 WHERE race = \"Swedish Grand Prix\"", "question": "What is the constructor of the Swedish Grand Prix?", "context": "CREATE TABLE table_1140082_2 (constructor VARCHAR, race VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_1140082_2 WHERE location = \"Watkins Glen\"", "question": "Who did the fastest lap at Watkins glen?", "context": "CREATE TABLE table_1140082_2 (fastest_lap VARCHAR, location VARCHAR)"}, {"answer": "SELECT circuit FROM table_1140099_6 WHERE race_name = \"II Cape South Easter Trophy\"", "question": "What circuit has a race called ii cape south easter trophy.", "context": "CREATE TABLE table_1140099_6 (circuit VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1140099_6 WHERE race_name = \"I Race of Champions\"", "question": "Which driver won the i race of champions?", "context": "CREATE TABLE table_1140099_6 (winning_driver VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT report FROM table_1140099_6 WHERE winning_driver = \"Mike Spence\"", "question": "What is the report for the race that Mike Spence won.", "context": "CREATE TABLE table_1140099_6 (report VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT report FROM table_1140099_6 WHERE race_name = \"I Sunday Mirror Trophy\"", "question": "What is the report for the race i sunday mirror trophy?", "context": "CREATE TABLE table_1140099_6 (report VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT COUNT(winning_driver) FROM table_1140116_6 WHERE race_name = \"I Dessau Autobahnspinne\"", "question": "How many winners did I Dessau Autobahnspinne have?", "context": "CREATE TABLE table_1140116_6 (winning_driver VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT date FROM table_1140116_6 WHERE circuit = \"Halle-Saale-Schleife\"", "question": "What is the date on which a race was run at Halle-Saale-Schleife circuit?", "context": "CREATE TABLE table_1140116_6 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(race_name) FROM table_1140116_6 WHERE circuit = \"Dessau\"", "question": "How many races take place in Dessau circuit?", "context": "CREATE TABLE table_1140116_6 (race_name VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT race_name FROM table_1140116_6 WHERE winning_driver = \"Paul Greifzu\"", "question": "Which races did Paul Greifzu win?", "context": "CREATE TABLE table_1140116_6 (race_name VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1140114_5 WHERE circuit = \"Sachsenring\"", "question": "Which driver won at the Sachsenring circuit?", "context": "CREATE TABLE table_1140114_5 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT constructor FROM table_1140114_5 WHERE race_name = \"RedeX Trophy\"", "question": "Which constructor was present at the Redex Trophy race?", "context": "CREATE TABLE table_1140114_5 (constructor VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT COUNT(constructor) FROM table_1140114_5 WHERE winning_driver = \"Paul Thiel\"", "question": "How many different constructors had Paul Thiel as a winning driver?", "context": "CREATE TABLE table_1140114_5 (constructor VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT opponent FROM table_11406866_2 WHERE tv = \"ABC\" AND game_site = \"Tampa Stadium\"", "question": " who is the\u00a0opponent\u00a0where\u00a0tv\u00a0is abc and\u00a0game site\u00a0is tampa stadium", "context": "CREATE TABLE table_11406866_2 (opponent VARCHAR, tv VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_11406866_2 WHERE date = \"November 23, 1980\"", "question": "what is the total number of\u00a0opponent\u00a0where\u00a0date\u00a0is november 23, 1980", "context": "CREATE TABLE table_11406866_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(kickoff_)[a_] FROM table_11406866_2 WHERE \"week\" = \"week\"", "question": "what is the total number of\u00a0kickoff [a ]\u00a0where\u00a0week\u00a0is week", "context": "CREATE TABLE table_11406866_2 (a_ VARCHAR, kickoff_ VARCHAR)"}, {"answer": "SELECT week FROM table_11406866_2 WHERE attendance = \"77,098\"", "question": " what's the\u00a0week\u00a0where\u00a0attendance\u00a0is 77,098", "context": "CREATE TABLE table_11406866_2 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_11406866_2 WHERE attendance = \"61,350\"", "question": " what's the\u00a0record\u00a0where\u00a0attendance\u00a0is 61,350", "context": "CREATE TABLE table_11406866_2 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_11406866_2 WHERE result = \"L 24-10\"", "question": " what's the\u00a0record\u00a0where\u00a0result\u00a0is l 24-10", "context": "CREATE TABLE table_11406866_2 (record VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_1140119_5 WHERE circuit = \"Silverstone\"", "question": "What date was the Silverstone circuit driven? ", "context": "CREATE TABLE table_1140119_5 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_1140119_5 WHERE circuit = \"Albi\"", "question": "When was the Albi circuit race driven? ", "context": "CREATE TABLE table_1140119_5 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT constructor FROM table_1140119_5 WHERE race_name = \"IV J.C.C. Jersey Road Race\"", "question": "Would built the winning car in the IV J.C.C. Jersey Road Race? ", "context": "CREATE TABLE table_1140119_5 (constructor VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1140119_5 WHERE circuit = \"Jersey\"", "question": "Who won the race at the Jersey circuit? ", "context": "CREATE TABLE table_1140119_5 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT season AS premiere FROM table_1145977_2 WHERE viewers__in_millions_ = \"14.71\"", "question": "When did the season air where the viewership was 14.71 million?", "context": "CREATE TABLE table_1145977_2 (season VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT power_capacity__gw_ FROM table_11456251_5 WHERE number_of_generators = 781", "question": "What is the power capacity when the generators were 781?", "context": "CREATE TABLE table_11456251_5 (power_capacity__gw_ VARCHAR, number_of_generators VARCHAR)"}, {"answer": "SELECT _percentage_of_total_capacity FROM table_11456251_5 WHERE annual_energy__billion_kwh_ = \"120.2\"", "question": "What is the percentage of total capacity when the energy is 120.2?", "context": "CREATE TABLE table_11456251_5 (_percentage_of_total_capacity VARCHAR, annual_energy__billion_kwh_ VARCHAR)"}, {"answer": "SELECT _percentage_of_annual_production FROM table_11456251_5 WHERE power_source = \"Solar\"", "question": "What is the % of annual production of solar?", "context": "CREATE TABLE table_11456251_5 (_percentage_of_annual_production VARCHAR, power_source VARCHAR)"}, {"answer": "SELECT COUNT(number_of_generators) FROM table_11456251_5 WHERE power_capacity__gw_ = \"78.7\"", "question": "What is the number of generators where the power capicity is 78.7?", "context": "CREATE TABLE table_11456251_5 (number_of_generators VARCHAR, power_capacity__gw_ VARCHAR)"}, {"answer": "SELECT _percentage_of_total_capacity FROM table_11456251_5 WHERE number_of_generators = 4048", "question": "What is the % of total capacity when the generators is 4048?", "context": "CREATE TABLE table_11456251_5 (_percentage_of_total_capacity VARCHAR, number_of_generators VARCHAR)"}, {"answer": "SELECT gvm__kg__technical_capacity FROM table_11497980_1 WHERE model = \"15.180E\"", "question": "If the model is  15.180e, what is the GVM (kg) Technical Capacity?", "context": "CREATE TABLE table_11497980_1 (gvm__kg__technical_capacity VARCHAR, model VARCHAR)"}, {"answer": "SELECT torque_nm AS @rpm FROM table_11497980_1 WHERE gcm__kg__technical_capacity = \"23000\" AND engine_make_capacity = \"MWM 6.10 TCA-EURO III (Turbo Intercooler)\"", "question": "If the engine make/capacity is MWM 6.10 TCA-EURO III (Turbo Intercooler) and  GVM (kg) Technical Capacity is 23000, what is the Torque Nm@rpm?", "context": "CREATE TABLE table_11497980_1 (torque_nm VARCHAR, gcm__kg__technical_capacity VARCHAR, engine_make_capacity VARCHAR)"}, {"answer": "SELECT COUNT(power_kw) AS @rpm FROM table_11497980_1 WHERE model = \"13.180\"", "question": "What is the power kw@RPM of the 13.180 model?", "context": "CREATE TABLE table_11497980_1 (power_kw VARCHAR, model VARCHAR)"}, {"answer": "SELECT gcm__kg__technical_capacity FROM table_11497980_1 WHERE transmission_make_type_speed = \"Eaton FS 5306-A Manual Synchromesh 6 Speed\"", "question": "When the transmission make/type/speed is eaton fs 5306-a manual synchromesh 6 speed, what is the value of the gcm (kg) technical capacity?", "context": "CREATE TABLE table_11497980_1 (gcm__kg__technical_capacity VARCHAR, transmission_make_type_speed VARCHAR)"}, {"answer": "SELECT model FROM table_11497980_1 WHERE transmission_make_type_speed = \"Eaton FS-6306 A Manual Synchromesh 6 Speed\"", "question": "Which model possesses a transmission make/type/speed of eaton fs-6306 a manual synchromesh 6 speed?", "context": "CREATE TABLE table_11497980_1 (model VARCHAR, transmission_make_type_speed VARCHAR)"}, {"answer": "SELECT semi_ddm_class FROM table_1153898_1 WHERE comparisons = \"Drawing Tablet Support\"", "question": "Is drawing tablet support part of the semi-DDM class?", "context": "CREATE TABLE table_1153898_1 (semi_ddm_class VARCHAR, comparisons VARCHAR)"}, {"answer": "SELECT emulated_class FROM table_1153898_1 WHERE comparisons = \"USB RE-Enumeration Required\"", "question": "Is  usb re-enumeration required part of the emulated class?", "context": "CREATE TABLE table_1153898_1 (emulated_class VARCHAR, comparisons VARCHAR)"}, {"answer": "SELECT hub_base_class FROM table_1153898_1 WHERE comparisons = \"Wireless Combo keyboard and mouse support\"", "question": "Is wireless combo keyboard and mouse support part of the hub base class?", "context": "CREATE TABLE table_1153898_1 (hub_base_class VARCHAR, comparisons VARCHAR)"}, {"answer": "SELECT ddm_class FROM table_1153898_1 WHERE comparisons = \"Drawing Tablet Support\"", "question": "Is the drawing tablet support part of the DDM class?", "context": "CREATE TABLE table_1153898_1 (ddm_class VARCHAR, comparisons VARCHAR)"}, {"answer": "SELECT ddm_class FROM table_1153898_1 WHERE comparisons = \"Wireless Combo keyboard and mouse support\"", "question": "Is  wireless combo keyboard and mouse support part of the DDM class?", "context": "CREATE TABLE table_1153898_1 (ddm_class VARCHAR, comparisons VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_11545282_10 WHERE player = \"Al Jefferson\"", "question": "What school or team does Al Jefferson play for?", "context": "CREATE TABLE table_11545282_10 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_11545282_10 WHERE no = \"22\" AND position = \"Forward\"", "question": "Which forward player has the number 22?", "context": "CREATE TABLE table_11545282_10 (player VARCHAR, no VARCHAR, position VARCHAR)"}, {"answer": "SELECT no FROM table_11545282_10 WHERE school_club_team = \"Ohio\"", "question": "What number does the player from Ohio play with?", "context": "CREATE TABLE table_11545282_10 (no VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_11545282_10 WHERE no = \"35\"", "question": "During which years did player number 35 play for Jazz?", "context": "CREATE TABLE table_11545282_10 (years_for_jazz VARCHAR, no VARCHAR)"}, {"answer": "SELECT race_1 FROM table_11581984_2 WHERE driver = \"Mark Skaife\"", "question": "For driver Mark Skaife what is the result for race 1?", "context": "CREATE TABLE table_11581984_2 (race_1 VARCHAR, driver VARCHAR)"}, {"answer": "SELECT date FROM table_11602885_1 WHERE location = \"Mexico\"", "question": "When was the game in Mexico played? ", "context": "CREATE TABLE table_11602885_1 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT university_name FROM table_1160660_1 WHERE acronym = \"USF\"", "question": "What University has the acrronym of USF", "context": "CREATE TABLE table_1160660_1 (university_name VARCHAR, acronym VARCHAR)"}, {"answer": "SELECT acronym FROM table_1160660_1 WHERE university_name = \"Beirut Arab University\"", "question": "What is the acronym used for Beirut Arab University?", "context": "CREATE TABLE table_1160660_1 (acronym VARCHAR, university_name VARCHAR)"}, {"answer": "SELECT acronym FROM table_1160660_1 WHERE website = \"ul.edu.lb\"", "question": "What is the acronym for the school whose website is ul.edu.lb", "context": "CREATE TABLE table_1160660_1 (acronym VARCHAR, website VARCHAR)"}, {"answer": "SELECT official_registration_notes FROM table_1160660_1 WHERE website = \"usek.edu.lb\"", "question": "Are there registration notes on usek.edu.lb?", "context": "CREATE TABLE table_1160660_1 (official_registration_notes VARCHAR, website VARCHAR)"}, {"answer": "SELECT date_founded FROM table_1160660_1 WHERE acronym = \"USF\"", "question": "What year was USF founded?", "context": "CREATE TABLE table_1160660_1 (date_founded VARCHAR, acronym VARCHAR)"}, {"answer": "SELECT tournament FROM table_11621747_1 WHERE date = \"Jul 11\"", "question": "What is the tournament on Jul 11?", "context": "CREATE TABLE table_11621747_1 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_11621747_1 WHERE date = \"Aug 29\"", "question": "What is the tournament of aug 29?", "context": "CREATE TABLE table_11621747_1 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_prize__) AS $__ FROM table_11621747_1 WHERE tournament = \"The Transamerica\"", "question": "How many prizes were there at the transamerica?", "context": "CREATE TABLE table_11621747_1 (tournament VARCHAR)"}, {"answer": "SELECT MAX(purse__) AS $__ FROM table_11622392_1", "question": "What is the sum of the largest purse?", "context": "CREATE TABLE table_11622392_1 (purse__ INTEGER)"}, {"answer": "SELECT date FROM table_11622392_1 WHERE location = \"Washington\"", "question": "When was the tournament in Washington held?", "context": "CREATE TABLE table_11622392_1 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_prize__) AS $__ FROM table_11622392_1 WHERE location = \"Texas\" AND purse__$__ > 330105.1624276874", "question": "How many tournaments in Texas had a purse higher than 330105.1624276874?", "context": "CREATE TABLE table_11622392_1 (location VARCHAR, purse__$__ VARCHAR)"}, {"answer": "SELECT MIN(season_no) FROM table_11630008_4 WHERE written_by = \"Joseph Hampton & Dani Renee\"", "question": "What is the first season written by joseph hampton & dani renee?", "context": "CREATE TABLE table_11630008_4 (season_no INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_11630008_4 WHERE production_code = 206", "question": "How many air dates are there for production code 206?", "context": "CREATE TABLE table_11630008_4 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_11630008_4 WHERE season_no = 2", "question": "What is the title for season 2?", "context": "CREATE TABLE table_11630008_4 (title VARCHAR, season_no VARCHAR)"}, {"answer": "SELECT COUNT(season_no) FROM table_11630008_4 WHERE series_no = 47", "question": "How many seasons was series number 47 shown?", "context": "CREATE TABLE table_11630008_4 (season_no VARCHAR, series_no VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11630008_6 WHERE production_code = 410", "question": "When did the episode with production code 410 air?", "context": "CREATE TABLE table_11630008_6 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_11630008_6 WHERE season__number = 3", "question": "What is the most series number with season 3?", "context": "CREATE TABLE table_11630008_6 (series__number INTEGER, season__number VARCHAR)"}, {"answer": "SELECT purse__$__ FROM table_11622896_1 WHERE location = \"New York\"", "question": "What is the purse value for the New York location?", "context": "CREATE TABLE table_11622896_1 (purse__$__ VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(1 AS st_prize__) AS $__ FROM table_11622896_1 WHERE location = \"South Carolina\"", "question": "What is the largest 1st prize( $ ) at the South Carolina location?", "context": "CREATE TABLE table_11622896_1 (location VARCHAR)"}, {"answer": "SELECT score FROM table_11622896_1 WHERE location = \"Oregon\"", "question": "What is the score for the Oregon location?", "context": "CREATE TABLE table_11622896_1 (score VARCHAR, location VARCHAR)"}, {"answer": "SELECT area_in_1000km\u00b2__1930_ FROM table_11654169_1 WHERE voivodeship_separate_city = \"lubelskie\"", "question": "List all areas within 1000 km in the city of Lubelskie?", "context": "CREATE TABLE table_11654169_1 (area_in_1000km\u00b2__1930_ VARCHAR, voivodeship_separate_city VARCHAR)"}, {"answer": "SELECT population_in_1000__1931_ FROM table_11654169_1 WHERE voivodeship_separate_city = \"pomorskie\"", "question": "What is the population in the city of Pomorskie?", "context": "CREATE TABLE table_11654169_1 (population_in_1000__1931_ VARCHAR, voivodeship_separate_city VARCHAR)"}, {"answer": "SELECT car_plates__since_1937_ FROM table_11654169_1 WHERE capital = \"Wilno\"", "question": "List all car plates in the capital of Wilno since the year of 1937.", "context": "CREATE TABLE table_11654169_1 (car_plates__since_1937_ VARCHAR, capital VARCHAR)"}, {"answer": "SELECT population_in_1000__1931_ FROM table_11654169_1 WHERE car_plates__since_1937_ = \"30-34\"", "question": "List population when their car plates are 30-34.", "context": "CREATE TABLE table_11654169_1 (population_in_1000__1931_ VARCHAR, car_plates__since_1937_ VARCHAR)"}, {"answer": "SELECT points FROM table_1166259_1 WHERE lost = 26", "question": "How many points are there when the lost is 26?", "context": "CREATE TABLE table_1166259_1 (points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT team_classification FROM table_11667521_17 WHERE points_classification = \"Bradley Wiggins\"", "question": "WHAT TEAM CLASSIFIED IN THE STAGE WHERE BRADLEY WIGGINS WON THE POINTS CLASSIFICATION ?", "context": "CREATE TABLE table_11667521_17 (team_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT stage__winner_ FROM table_11667521_17 WHERE general_classification = \"Alexander Vinokourov\"", "question": "IN WHAT STAGE DID ALEXANDER VINOKOUROV WON THE GENERAL CLASSIFICATION?", "context": "CREATE TABLE table_11667521_17 (stage__winner_ VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT average FROM table_11674683_2 WHERE delegate = \"Spain\"", "question": "Name the average for spain delegate", "context": "CREATE TABLE table_11674683_2 (average VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT interview FROM table_11674683_2 WHERE delegate = \"Peru\"", "question": "Name the interview for peru delegate", "context": "CREATE TABLE table_11674683_2 (interview VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT COUNT(swimsuit) FROM table_11674683_2 WHERE delegate = \"Israel\"", "question": "Name the number of swimsuit for israel", "context": "CREATE TABLE table_11674683_2 (swimsuit VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_11674683_2 WHERE delegate = \"South Africa\"", "question": "What are the swimsuits for south africa?", "context": "CREATE TABLE table_11674683_2 (swimsuit VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT mlb_draft FROM table_11677100_12 WHERE hometown = \"Opa-locka, FL\"", "question": "Who were the MLB draft with the hometown Opa-locka, Fl?", "context": "CREATE TABLE table_11677100_12 (mlb_draft VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_11677100_12 WHERE hometown = \"Pennsauken, NJ\"", "question": "How many players have the hometown Pennsauken, NJ?", "context": "CREATE TABLE table_11677100_12 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT position FROM table_11677100_12 WHERE hometown = \"Dallas, TX\"", "question": "Which position did the player from the hometown of Dallas, TX play?", "context": "CREATE TABLE table_11677100_12 (position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677100_12 WHERE player = \"Jason Place\"", "question": "What is the hometown of player Jason Place?", "context": "CREATE TABLE table_11677100_12 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_11677100_12 WHERE position = \"Catcher\"", "question": "What school did the catcher attend?", "context": "CREATE TABLE table_11677100_12 (school VARCHAR, position VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677100_11 WHERE player = \"Jay Bruce\"", "question": "What is Jay Bruce's hometown?", "context": "CREATE TABLE table_11677100_11 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_11677100_11 WHERE position = \"Catcher\"", "question": "What school is he the catcher for?", "context": "CREATE TABLE table_11677100_11 (school VARCHAR, position VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677100_11 WHERE position = \"Catcher\"", "question": "WHAT HOMETOWN DOES HE PLAY AS THE CATCHER FOR?", "context": "CREATE TABLE table_11677100_11 (hometown VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_11677100_11 WHERE school = \"West Brook Senior High school\"", "question": "WHAT POSITION DOES HE PLAY FOR AT WEST BROOK SENIOR HIGH SCHOOL?", "context": "CREATE TABLE table_11677100_11 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677100_11 WHERE school = \"West Brook Senior High school\"", "question": "WHAT TOWN IS WEST BROOK SENIOR HIGH SCHOOL FROM?", "context": "CREATE TABLE table_11677100_11 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_11677691_1 WHERE hometown = \"Jersey City, New Jersey\"", "question": "What position did the player from Jersey City, New Jersey play? ", "context": "CREATE TABLE table_11677691_1 (position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_1 WHERE position = \"Offensive line\" AND hometown = \"Baton Rouge, Louisiana\"", "question": "What offensive line player hailed from Baton Rouge, Louisiana?", "context": "CREATE TABLE table_11677691_1 (player VARCHAR, position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_1 WHERE player = \"Jeremy Hill\"", "question": "What is Jeremy Hill's hometown?", "context": "CREATE TABLE table_11677691_1 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(hometown) FROM table_11677691_1 WHERE college = \"Alabama\" AND position = \"Offensive line\"", "question": "How many offensive line players played for a college in Alabama?", "context": "CREATE TABLE table_11677691_1 (hometown VARCHAR, college VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(college) FROM table_11677691_1 WHERE school = \"Hillcrest High school\"", "question": "How many players attended Hillcrest High School?", "context": "CREATE TABLE table_11677691_1 (college VARCHAR, school VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_4 WHERE school = \"Shanley High school\"", "question": "Where was the hometown for the player that attended Shanley High School?", "context": "CREATE TABLE table_11677691_4 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_4 WHERE college = \"Southern California\"", "question": "Which player went to the college Southern California?", "context": "CREATE TABLE table_11677691_4 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_11677691_4 WHERE school = \"Mission Viejo High school\"", "question": "Which college did the player attend that went to Mission Viejo High School?", "context": "CREATE TABLE table_11677691_4 (college VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_11677691_4 WHERE hometown = \"Cincinnati, Ohio\"", "question": "How many players hometown was Cincinnati, Ohio?", "context": "CREATE TABLE table_11677691_4 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_4 WHERE hometown = \"Pewaukee, Wisconsin\"", "question": "Which player's hometown was Pewaukee, Wisconsin?", "context": "CREATE TABLE table_11677691_4 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(school) FROM table_11677691_4 WHERE hometown = \"Akron, Ohio\"", "question": "How many players' hometown was Akron, Ohio?", "context": "CREATE TABLE table_11677691_4 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_7 WHERE college = \"Utah\"", "question": "Which player is from Utah?", "context": "CREATE TABLE table_11677691_7 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_11677691_7 WHERE school = \"Saguaro High school\"", "question": "Which player is from Saguaro High School?", "context": "CREATE TABLE table_11677691_7 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_7 WHERE school = \"Joliet Catholic High school\"", "question": "Which player is from Joliet Catholic HIgh School?", "context": "CREATE TABLE table_11677691_7 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_11677691_7 WHERE college = \"Auburn\"", "question": "Which school did the player then go to Auburn?", "context": "CREATE TABLE table_11677691_7 (school VARCHAR, college VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_7 WHERE school = \"Trinity High school\"", "question": "What is the hometown of trinity high school?", "context": "CREATE TABLE table_11677691_7 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_11677691_8 WHERE hometown = \"Loganville, Georgia\"", "question": "What position did the kid from loganville, georgia play", "context": "CREATE TABLE table_11677691_8 (position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_8 WHERE school = \"Longview High school\"", "question": "Where is longview high school", "context": "CREATE TABLE table_11677691_8 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT college FROM table_11677691_8 WHERE player = \"Robert Nkemdiche \u2021\"", "question": "Where did robert nkemdiche \u2021 go to college", "context": "CREATE TABLE table_11677691_8 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_8 WHERE school = \"Friendship Collegiate Charter school\"", "question": "Where is friendship collegiate charter school located", "context": "CREATE TABLE table_11677691_8 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT interview FROM table_11690135_1 WHERE evening_gown = \"9.78\"", "question": "Who had an evening gown score of 9.78?", "context": "CREATE TABLE table_11690135_1 (interview VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT COUNT(interview) FROM table_11690135_1 WHERE country = \"Virginia\"", "question": "How many interviews were there for Miss Virginia?", "context": "CREATE TABLE table_11690135_1 (interview VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_11690135_1 WHERE swimsuit = \"9.87\"", "question": "Who had a swimsuit score of 9.87?", "context": "CREATE TABLE table_11690135_1 (country VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT country FROM table_11690135_1 WHERE evening_gown = \"9.82\"", "question": "Who had evening gown score of 9.82?", "context": "CREATE TABLE table_11690135_1 (country VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT COUNT(swimsuit) FROM table_11690135_1 WHERE evening_gown = \"9.89\"", "question": "How many ladies scored a 9.89 for the evening gown?", "context": "CREATE TABLE table_11690135_1 (swimsuit VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT interview FROM table_11690135_1 WHERE swimsuit = \"9.72\"", "question": "Who scored a 9.72 in the swimsuit?", "context": "CREATE TABLE table_11690135_1 (interview VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT title FROM table_11695215_1 WHERE written_by = \"John A. Norris\"", "question": "What episode was writted by John A. Norris?", "context": "CREATE TABLE table_11695215_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_11695215_1 WHERE directed_by = \"David Jackson\"", "question": "How many episodes did David Jackson write and direct?", "context": "CREATE TABLE table_11695215_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT player FROM table_11734041_1 WHERE school_club_team_country = \"Loyola Marymount\"", "question": "What player attended Loyola Marymount?", "context": "CREATE TABLE table_11734041_1 (player VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT COUNT(years_for_rockets) FROM table_11734041_1 WHERE school_club_team_country = \"Iowa State\"", "question": "How may times did a player that attended Iowa state appear on the all time roster?", "context": "CREATE TABLE table_11734041_1 (years_for_rockets VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_11734041_1 WHERE years_for_rockets = \"1992-93\"", "question": "What height was the player that played for the Rockets between 1992-93?", "context": "CREATE TABLE table_11734041_1 (height_in_ft VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT COUNT(years_for_rockets) FROM table_11734041_1 WHERE position = \"Center\" AND school_club_team_country = \"Oral Roberts\"", "question": "How many times did a center that attended Oral Roberts play for the Rockets?", "context": "CREATE TABLE table_11734041_1 (years_for_rockets VARCHAR, position VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT player FROM table_11734041_1 WHERE school_club_team_country = \"Australia\"", "question": "What was the player name who came from Australia?", "context": "CREATE TABLE table_11734041_1 (player VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_11734041_16 WHERE years_for_rockets = \"1973-78\"", "question": "What is the height in ft for the rockets from 1973-78?", "context": "CREATE TABLE table_11734041_16 (height_in_ft VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT player FROM table_11734041_16 WHERE no_s_ = \"3\"", "question": "Which players were number 3?", "context": "CREATE TABLE table_11734041_16 (player VARCHAR, no_s_ VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_11734041_16 WHERE no_s_ = \"42\" AND years_for_rockets = \"1993-94\"", "question": "What is the height in ft for number 42 for the rockets in 1993-94?", "context": "CREATE TABLE table_11734041_16 (height_in_ft VARCHAR, no_s_ VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT player FROM table_11734041_16 WHERE school_club_team_country = \"Long Beach State\"", "question": "What are the players that attented long beach state?", "context": "CREATE TABLE table_11734041_16 (player VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_11734041_16 WHERE years_for_rockets = \"1998\"", "question": "what is the total amount of players for the rockets in 1998 only?", "context": "CREATE TABLE table_11734041_16 (player VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT MIN(area__square_km_) FROM table_1175233_1 WHERE arrondissement = \"Millau\"", "question": "What is the area (square km) where the arrondissement is millau?", "context": "CREATE TABLE table_1175233_1 (area__square_km_ INTEGER, arrondissement VARCHAR)"}, {"answer": "SELECT COUNT(communes) FROM table_1175233_1 WHERE chief_town = \"Dijon\"", "question": "How many communes have the chief town as dijon?", "context": "CREATE TABLE table_1175233_1 (communes VARCHAR, chief_town VARCHAR)"}, {"answer": "SELECT MIN(communes) FROM table_1175233_1 WHERE arrondissement = \"Cosne-Cours-sur-Loire\"", "question": "How many communes when the arrondissement is cosne-cours-sur-loire?", "context": "CREATE TABLE table_1175233_1 (communes INTEGER, arrondissement VARCHAR)"}, {"answer": "SELECT engine FROM table_1181375_1 WHERE builder = \"Gloucester RCW\" AND withdrawn = \"1959\"", "question": " what's the\u00a0engine\u00a0where\u00a0builder\u00a0is gloucester rcw and\u00a0withdrawn\u00a0is 1959", "context": "CREATE TABLE table_1181375_1 (engine VARCHAR, builder VARCHAR, withdrawn VARCHAR)"}, {"answer": "SELECT engine FROM table_1181375_1 WHERE number_range = \"8\u20139, 13\u201316\"", "question": " what's the\u00a0engine\u00a0where\u00a0number range\u00a0is 8\u20139, 13\u201316", "context": "CREATE TABLE table_1181375_1 (engine VARCHAR, number_range VARCHAR)"}, {"answer": "SELECT introduced FROM table_1181375_1 WHERE notes = \"9 withdrawn in 1946 after fire\"", "question": " what's the\u00a0introduced\u00a0where\u00a0notes\u00a0is 9 withdrawn in 1946 after fire", "context": "CREATE TABLE table_1181375_1 (introduced VARCHAR, notes VARCHAR)"}, {"answer": "SELECT builder FROM table_1181375_1 WHERE withdrawn = \"1954\u20131958\"", "question": " what's the\u00a0builder\u00a0where\u00a0withdrawn\u00a0is 1954\u20131958", "context": "CREATE TABLE table_1181375_1 (builder VARCHAR, withdrawn VARCHAR)"}, {"answer": "SELECT notes FROM table_1181375_1 WHERE number_range = \"17\"", "question": " what's the\u00a0notes\u00a0where\u00a0number range\u00a0is 17", "context": "CREATE TABLE table_1181375_1 (notes VARCHAR, number_range VARCHAR)"}, {"answer": "SELECT notes FROM table_1181375_1 WHERE withdrawn = \"1956\u201357\"", "question": " what's the\u00a0notes\u00a0where\u00a0withdrawn\u00a0is 1956\u201357", "context": "CREATE TABLE table_1181375_1 (notes VARCHAR, withdrawn VARCHAR)"}, {"answer": "SELECT lyricist FROM table_11827596_4 WHERE film_name = \"Gopal Krishna\" AND co_singer = \"Solo\"", "question": "Who was the lyricist for gopal krishna and co singer of solo?", "context": "CREATE TABLE table_11827596_4 (lyricist VARCHAR, film_name VARCHAR, co_singer VARCHAR)"}, {"answer": "SELECT COUNT(music_director) FROM table_11827596_4 WHERE co_singer = \"Suresh Wadkar\" AND film_name = \"Bhayanak\"", "question": "What was the number of music directors where the suresh wadkar co singer of bhayanak?", "context": "CREATE TABLE table_11827596_4 (music_director VARCHAR, co_singer VARCHAR, film_name VARCHAR)"}, {"answer": "SELECT COUNT(lyricist) FROM table_11827596_2 WHERE co_singer = \"Suresh Wadkar\" AND film_name = \"Tera Dukh Mera Dukh\"", "question": "how many times is the co-singer suresh wadkar and the film name is tera dukh mera dukh?", "context": "CREATE TABLE table_11827596_2 (lyricist VARCHAR, co_singer VARCHAR, film_name VARCHAR)"}, {"answer": "SELECT film_name FROM table_11827596_2 WHERE co_singer = \"Vinod Rathod\"", "question": "what are the film names with the co-singer vinod rathod?", "context": "CREATE TABLE table_11827596_2 (film_name VARCHAR, co_singer VARCHAR)"}, {"answer": "SELECT song_name FROM table_11827596_2 WHERE film_name = \"Ganga Kare Insaaf\"", "question": "what is the song name for the film name ganga kare insaaf?", "context": "CREATE TABLE table_11827596_2 (song_name VARCHAR, film_name VARCHAR)"}, {"answer": "SELECT song_name FROM table_11827596_2 WHERE film_name = \"Kaal Bhairav\"", "question": "what are the song names for the film kaal bhairav?", "context": "CREATE TABLE table_11827596_2 (song_name VARCHAR, film_name VARCHAR)"}, {"answer": "SELECT 1845 AS _disposal FROM table_1184344_1 WHERE name = \"Sussex\"", "question": "What was the 1845 disposal for sussex?", "context": "CREATE TABLE table_1184344_1 (name VARCHAR)"}, {"answer": "SELECT MAX(l) & cr_no FROM table_1184344_1 WHERE name = \"Archimedes\"", "question": "What was the maximum l&cr number for archimedes?", "context": "CREATE TABLE table_1184344_1 (cr_no VARCHAR, l INTEGER, name VARCHAR)"}, {"answer": "SELECT type FROM table_1184344_1 WHERE name = \"Sussex\"", "question": "What was the type of sussex?", "context": "CREATE TABLE table_1184344_1 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT launch_site FROM table_11869952_3 WHERE mission = \"Test mission: war heads and Missile payload\" AND results = \"Partial Failure\"", "question": "Where did Test Mission: War Heads and Missile Payload launch when there was a partial failure?", "context": "CREATE TABLE table_11869952_3 (launch_site VARCHAR, mission VARCHAR, results VARCHAR)"}, {"answer": "SELECT mission FROM table_11869952_3 WHERE launch_date = \"November 16, 2006\"", "question": "Which missions were scheduled to launch on November 16, 2006?", "context": "CREATE TABLE table_11869952_3 (mission VARCHAR, launch_date VARCHAR)"}, {"answer": "SELECT institutional_authority FROM table_11869952_1 WHERE rocket_launch = \"Rehbar-II\"", "question": "Which authority has a rocket launch called rehbar-ii?", "context": "CREATE TABLE table_11869952_1 (institutional_authority VARCHAR, rocket_launch VARCHAR)"}, {"answer": "SELECT institutional_authority FROM table_11869952_1 WHERE rocket_launch = \"Rehnuma-8\"", "question": "Which authority has a rocket launch called rehnuma-8?", "context": "CREATE TABLE table_11869952_1 (institutional_authority VARCHAR, rocket_launch VARCHAR)"}, {"answer": "SELECT institutional_authority FROM table_11869952_1 WHERE rocket_launch = \"Shahpar-2\"", "question": "Which authority has a rocket launch called shahpar-2?", "context": "CREATE TABLE table_11869952_1 (institutional_authority VARCHAR, rocket_launch VARCHAR)"}, {"answer": "SELECT COUNT(derivatives) FROM table_11869952_1 WHERE rocket_launch = \"Rehbar-5\"", "question": "Which authority has a rocket launch called rehbar-5?", "context": "CREATE TABLE table_11869952_1 (derivatives VARCHAR, rocket_launch VARCHAR)"}, {"answer": "SELECT denomination FROM table_11900773_4 WHERE theme = \"Opera, L\u00e9opold Simoneau and Pierrette Alarie\"", "question": "What denominations are the stamps with themes opera, l\u00e9opold simoneau and pierrette alarie?", "context": "CREATE TABLE table_11900773_4 (denomination VARCHAR, theme VARCHAR)"}, {"answer": "SELECT paper_type FROM table_11900773_4 WHERE theme = \"Duck Decoys, Barrow's Golden Eye\"", "question": "What kind of paper were the stamps with the theme duck decoys, barrow's golden eye printed on?", "context": "CREATE TABLE table_11900773_4 (paper_type VARCHAR, theme VARCHAR)"}, {"answer": "SELECT theme FROM table_11900773_6 WHERE design = \"Isabelle Toussaint\"", "question": "List all the themes designed by Isabelle Toussaint.", "context": "CREATE TABLE table_11900773_6 (theme VARCHAR, design VARCHAR)"}, {"answer": "SELECT COUNT(paper_type) FROM table_11900773_6 WHERE design = \"Ian Drolet\"", "question": "How many paper types did Ian Drolet design stamps on?", "context": "CREATE TABLE table_11900773_6 (paper_type VARCHAR, design VARCHAR)"}, {"answer": "SELECT design FROM table_11900773_6 WHERE theme = \"Christmas: Winter Fun (USA)\"", "question": "Who is the designer of the Christmas: Winter Fun (USA) stamp?", "context": "CREATE TABLE table_11900773_6 (design VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(design) FROM table_11900773_6 WHERE theme = \"XII Summit de la Francophonie\"", "question": "How many stamps were designed for the theme of XII Summit de la Francophonie?", "context": "CREATE TABLE table_11900773_6 (design VARCHAR, theme VARCHAR)"}, {"answer": "SELECT first_day_cover_cancellation FROM table_11900773_6 WHERE date_of_issue = \"3 April 2008\" AND theme = \"IIHF World Championships, Quebec City\"", "question": "Where is the first day cover cancellation for the 3 April 2008 IIHF World Championships, Quebec City stamp?", "context": "CREATE TABLE table_11900773_6 (first_day_cover_cancellation VARCHAR, date_of_issue VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(premiere) FROM table_11926114_1 WHERE english_title = \"Survivor's Law II\"", "question": "How many premier episodes were there with the title survivor's law ii?", "context": "CREATE TABLE table_11926114_1 (premiere VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT chinese_title FROM table_11926114_1 WHERE average = 31", "question": "What is the Chinese name that has a 31 average?", "context": "CREATE TABLE table_11926114_1 (chinese_title VARCHAR, average VARCHAR)"}, {"answer": "SELECT rank FROM table_11926114_1 WHERE finale = 37", "question": "What is the rank of finale 37?", "context": "CREATE TABLE table_11926114_1 (rank VARCHAR, finale VARCHAR)"}, {"answer": "SELECT chinese_title FROM table_11926114_1 WHERE english_title = \"Forensic Heroes II\"", "question": "what is the Chinese name for Forensic heroes ii?", "context": "CREATE TABLE table_11926114_1 (chinese_title VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_11926114_1 WHERE peak = 42", "question": "What numbr on the list had a peak rating of 42?", "context": "CREATE TABLE table_11926114_1 (rank INTEGER, peak VARCHAR)"}, {"answer": "SELECT electorate FROM table_1193568_1 WHERE election_date = \"16 Cannot handle non-empty timestamp argument!\"", "question": " what's the\u00a0electorate\u00a0where\u00a0election date\u00a0is 16 cannot handle non-empty timestamp argument!", "context": "CREATE TABLE table_1193568_1 (electorate VARCHAR, election_date VARCHAR)"}, {"answer": "SELECT province FROM table_1193568_1 WHERE member = \"Frederick Merriman Category:Articles with hCards\"", "question": " what's the\u00a0province\u00a0where\u00a0member\u00a0is frederick merriman category:articles with hcards", "context": "CREATE TABLE table_1193568_1 (province VARCHAR, member VARCHAR)"}, {"answer": "SELECT election_date FROM table_1193568_1 WHERE electorate = \"Omata\"", "question": " what's the\u00a0election date\u00a0where\u00a0electorate\u00a0is omata", "context": "CREATE TABLE table_1193568_1 (election_date VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT election_date FROM table_1193568_1 WHERE member = \"William Richmond Category:Articles with hCards\"", "question": " what's the\u00a0election date\u00a0where\u00a0member\u00a0is william richmond category:articles with hcards", "context": "CREATE TABLE table_1193568_1 (election_date VARCHAR, member VARCHAR)"}, {"answer": "SELECT province FROM table_1193568_1 WHERE member = \"Dingley Brittin Category:Articles with hCards\"", "question": " what's the\u00a0province\u00a0where\u00a0member\u00a0is dingley brittin category:articles with hcards", "context": "CREATE TABLE table_1193568_1 (province VARCHAR, member VARCHAR)"}, {"answer": "SELECT election_date FROM table_1193568_1 WHERE electorate = \"Christchurch Country\"", "question": " what's the\u00a0election date\u00a0where\u00a0electorate\u00a0is christchurch country", "context": "CREATE TABLE table_1193568_1 (election_date VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT county_s__represented FROM table_11948857_1 WHERE member_senator = \"C. Anthony Muse\"", "question": "What is the county for senator C. Anthony Muse?", "context": "CREATE TABLE table_11948857_1 (county_s__represented VARCHAR, member_senator VARCHAR)"}, {"answer": "SELECT member_senator FROM table_11948857_1 WHERE district = 24", "question": "Who is the senator for district 24?", "context": "CREATE TABLE table_11948857_1 (member_senator VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_11948857_1 WHERE district = 41", "question": "How many entries are shown for first elected for district 41?", "context": "CREATE TABLE table_11948857_1 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(allied_unrelated) FROM table_11944282_1 WHERE component = \"Human Capital\"", "question": "What is the total amount of allied-unrelated where the component is human capital?", "context": "CREATE TABLE table_11944282_1 (allied_unrelated VARCHAR, component VARCHAR)"}, {"answer": "SELECT integrated FROM table_11944282_1 WHERE allied_related = \"Many\"", "question": "How many integrated allied-related are there?", "context": "CREATE TABLE table_11944282_1 (integrated VARCHAR, allied_related VARCHAR)"}, {"answer": "SELECT integrated FROM table_11944282_1 WHERE component = \"Customers\"", "question": "What is the name of the integrated where the component are customers?", "context": "CREATE TABLE table_11944282_1 (integrated VARCHAR, component VARCHAR)"}, {"answer": "SELECT holding FROM table_11944282_1 WHERE allied_unrelated = \"Many\"", "question": "what is the integrated in which the holding allied-unrelated is many?", "context": "CREATE TABLE table_11944282_1 (holding VARCHAR, allied_unrelated VARCHAR)"}, {"answer": "SELECT component FROM table_11944282_1 WHERE allied_related = \"Shared\"", "question": "What is the name of the integrated where allied-related is shared?", "context": "CREATE TABLE table_11944282_1 (component VARCHAR, allied_related VARCHAR)"}, {"answer": "SELECT written_by FROM table_11951237_1 WHERE series__number = 20", "question": "Who were the writers for series number 20?", "context": "CREATE TABLE table_11951237_1 (written_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_11951237_1 WHERE original_air_date = \"October 27, 1994\"", "question": "What is the production code for the show that aired on October 27, 1994?", "context": "CREATE TABLE table_11951237_1 (production_code INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT directed_by FROM table_11951237_1 WHERE series__number = 1", "question": "Who was the director of the Series 1 episode?", "context": "CREATE TABLE table_11951237_1 (directed_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT team FROM table_11959669_4 WHERE date = \"December 5\"", "question": "Which team played on December 5?", "context": "CREATE TABLE table_11959669_4 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_11959669_4 WHERE high_points = \"Pierce (22)\"", "question": "What was the location attendance when High points was by Pierce (22)?", "context": "CREATE TABLE table_11959669_4 (location_attendance VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT date FROM table_11960610_7 WHERE team = \"LA Lakers\"", "question": "What date did the Bulls play the LA Lakers?", "context": "CREATE TABLE table_11960610_7 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_11960610_7 WHERE date = \"December 7\"", "question": "What team were the Bulls hosted by on December 7?", "context": "CREATE TABLE table_11960610_7 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_11964154_2 WHERE game = 4", "question": "Who had the highest assists in game 4?", "context": "CREATE TABLE table_11964154_2 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_11964154_2 WHERE high_points = \"Damien Wilkins (27)\"", "question": "How many games was Damien Wilkins (27) the high scorer?", "context": "CREATE TABLE table_11964154_2 (game INTEGER, high_points VARCHAR)"}, {"answer": "SELECT name FROM table_1198175_1 WHERE born = \"December 30, 1957 Detroit, MI\"", "question": "What is the name when born is december 30, 1957 detroit, mi?", "context": "CREATE TABLE table_1198175_1 (name VARCHAR, born VARCHAR)"}, {"answer": "SELECT weight_lbs_ FROM table_1198175_1 WHERE born = \"April 6, 1954 Detroit, MI\"", "question": "What is the weight(lbs) when born is april 6, 1954 detroit, mi?", "context": "CREATE TABLE table_1198175_1 (weight_lbs_ VARCHAR, born VARCHAR)"}, {"answer": "SELECT name FROM table_1198175_1 WHERE position = \"DE\" AND college = \"Ohio State\"", "question": "What is the name when the position is de and college is ohio state?", "context": "CREATE TABLE table_1198175_1 (name VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT drafted FROM table_1198175_1 WHERE pro_team = \"Arizona Cardinals\"", "question": "What is under drafted when pro team is arizona cardinals?", "context": "CREATE TABLE table_1198175_1 (drafted VARCHAR, pro_team VARCHAR)"}, {"answer": "SELECT position FROM table_1198175_1 WHERE drafted = \"1974,R11,P11\"", "question": "What is the position when drafted is 1974,r11,p11?", "context": "CREATE TABLE table_1198175_1 (position VARCHAR, drafted VARCHAR)"}, {"answer": "SELECT year FROM table_12032893_1 WHERE weight = 170", "question": "In which year was the Weight 170?", "context": "CREATE TABLE table_12032893_1 (year VARCHAR, weight VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_12032893_1 WHERE name = \"Ron Baxter\"", "question": "What number (#) is associated with the Name Ron Baxter?", "context": "CREATE TABLE table_12032893_1 (_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT _number FROM table_12032893_1 WHERE high_school = \"Crockett\"", "question": "Crockett High School had which number(#)?", "context": "CREATE TABLE table_12032893_1 (_number VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT home_town FROM table_12032893_1 WHERE high_school = \"Catholic University\"", "question": "Which home town was the high school Catholic University located in?", "context": "CREATE TABLE table_12032893_1 (home_town VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_12032893_1 WHERE home_town = \"Baton Rouge, LA\"", "question": "How many years have the home town of Baton Rouge, LA?", "context": "CREATE TABLE table_12032893_1 (year VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT height FROM table_12032893_1 WHERE position = \"Forward\" AND high_school = \"Crockett\"", "question": "What height was the forward position at Crockett High School?", "context": "CREATE TABLE table_12032893_1 (height VARCHAR, position VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT commissioned FROM table_1206583_2 WHERE builder = \"Scotts, Greenock\" AND name = \"Chieftain\"", "question": "What are the commissioned for scotts, greenock and chieftain?", "context": "CREATE TABLE table_1206583_2 (commissioned VARCHAR, builder VARCHAR, name VARCHAR)"}, {"answer": "SELECT builder FROM table_1206583_2 WHERE launched = \"30 October 1944\"", "question": "What is the builder launched 30 october 1944?", "context": "CREATE TABLE table_1206583_2 (builder VARCHAR, launched VARCHAR)"}, {"answer": "SELECT MIN(voted_no) FROM table_120778_2 WHERE percent_no = \"56.6\"", "question": "what is the minimum\u00a0voted no\u00a0where\u00a0percent no\u00a0is 56.6", "context": "CREATE TABLE table_120778_2 (voted_no INTEGER, percent_no VARCHAR)"}, {"answer": "SELECT percent_yes FROM table_120778_2 WHERE voted_yes = 2410119", "question": " what's the\u00a0percent yes\u00a0where\u00a0voted yes\u00a0is 2410119", "context": "CREATE TABLE table_120778_2 (percent_yes VARCHAR, voted_yes VARCHAR)"}, {"answer": "SELECT jurisdiction FROM table_120778_2 WHERE percent_yes = \"43.4\"", "question": " what's the\u00a0jurisdiction\u00a0where\u00a0percent yes\u00a0is 43.4", "context": "CREATE TABLE table_120778_2 (jurisdiction VARCHAR, percent_yes VARCHAR)"}, {"answer": "SELECT MIN(voted_yes) FROM table_120778_2 WHERE percent_no = \"68.2\"", "question": "what is the minimum\u00a0voted yes\u00a0where\u00a0percent no\u00a0is 68.2", "context": "CREATE TABLE table_120778_2 (voted_yes INTEGER, percent_no VARCHAR)"}, {"answer": "SELECT jurisdiction FROM table_120778_2 WHERE voted_no = 322971", "question": " what's the\u00a0jurisdiction\u00a0where\u00a0voted no\u00a0is 322971", "context": "CREATE TABLE table_120778_2 (jurisdiction VARCHAR, voted_no VARCHAR)"}, {"answer": "SELECT date_of_completion FROM table_12078626_1 WHERE success = \"Yes\"", "question": " what's the\u00a0date of completion\u00a0where\u00a0success\u00a0is yes", "context": "CREATE TABLE table_12078626_1 (date_of_completion VARCHAR, success VARCHAR)"}, {"answer": "SELECT deadline_for_completion FROM table_12078626_1 WHERE description = \"iPhone recall within the first 3 months of release\"", "question": " what's the\u00a0deadline for completion\u00a0where\u00a0description\u00a0is iphone recall within the first 3 months of release", "context": "CREATE TABLE table_12078626_1 (deadline_for_completion VARCHAR, description VARCHAR)"}, {"answer": "SELECT success FROM table_12078626_1 WHERE date_of_completion = \"September 28, 2007\"", "question": " what's the\u00a0success\u00a0where\u00a0date of completion\u00a0is september 28, 2007", "context": "CREATE TABLE table_12078626_1 (success VARCHAR, date_of_completion VARCHAR)"}, {"answer": "SELECT date_of_completion FROM table_12078626_1 WHERE deadline_for_completion = \"September 30, 2007\"", "question": " what's the\u00a0date of completion\u00a0where\u00a0deadline for completion\u00a0is september 30, 2007", "context": "CREATE TABLE table_12078626_1 (date_of_completion VARCHAR, deadline_for_completion VARCHAR)"}, {"answer": "SELECT COUNT(deadline_for_completion) FROM table_12078626_1 WHERE description = \"Facebook becomes a publicly traded company\"", "question": "what is the total number of\u00a0deadline for completion\u00a0where\u00a0description\u00a0is facebook becomes a publicly traded company", "context": "CREATE TABLE table_12078626_1 (deadline_for_completion VARCHAR, description VARCHAR)"}, {"answer": "SELECT success FROM table_12078626_1 WHERE deadline_for_completion = \"October 7, 2007\"", "question": " what's the\u00a0success\u00a0where\u00a0deadline for completion\u00a0is october 7, 2007", "context": "CREATE TABLE table_12078626_1 (success VARCHAR, deadline_for_completion VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_12077540_1", "question": "The earliest year is 1996.", "context": "CREATE TABLE table_12077540_1 (year INTEGER)"}, {"answer": "SELECT import FROM table_12077540_1 WHERE product = \"Plywood\"", "question": "There are 5 imports of plywood.", "context": "CREATE TABLE table_12077540_1 (import VARCHAR, product VARCHAR)"}, {"answer": "SELECT interview FROM table_12094300_1 WHERE preliminaries = \"8.425\"", "question": "What is the score for interview when the preliminaries score is 8.425?", "context": "CREATE TABLE table_12094300_1 (interview VARCHAR, preliminaries VARCHAR)"}, {"answer": "SELECT interview FROM table_12094300_1 WHERE preliminaries = \"8.400\"", "question": "What is the interview score when the preliminaries score is 8.400?", "context": "CREATE TABLE table_12094300_1 (interview VARCHAR, preliminaries VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_12094300_1 WHERE average = \"8.791\"", "question": "What is the score for swimsuit when the average is 8.791?", "context": "CREATE TABLE table_12094300_1 (swimsuit VARCHAR, average VARCHAR)"}, {"answer": "SELECT interview FROM table_12094300_1 WHERE state = \"New York\"", "question": "What is the score for the interview for the state of New York?", "context": "CREATE TABLE table_12094300_1 (interview VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(evening_gown) FROM table_12094300_1 WHERE state = \"District of Columbia\"", "question": "How many times did district of Columbia receive a score for evening gown?", "context": "CREATE TABLE table_12094300_1 (evening_gown VARCHAR, state VARCHAR)"}, {"answer": "SELECT average FROM table_12094300_1 WHERE swimsuit = \"8.503\"", "question": "What is the average score when the swimsuit score is 8.503?", "context": "CREATE TABLE table_12094300_1 (average VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT COUNT(gt1_winning_team) FROM table_12146068_2 WHERE rnd = 5", "question": "What is the number of gt1 winning team for rnd 5?", "context": "CREATE TABLE table_12146068_2 (gt1_winning_team VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT rnd FROM table_12146068_2 WHERE gt1_winning_team = \"Doc Bundy Andy Wallace\"", "question": "What is the rnd for gt1 winning team for doc bundy andy wallace?", "context": "CREATE TABLE table_12146068_2 (rnd VARCHAR, gt1_winning_team VARCHAR)"}, {"answer": "SELECT gt1_winning_team FROM table_12146068_2 WHERE gt2_winning_team = \"#54 Bell Motorsports\"", "question": "Name the gt1 winning team for #54 bell motorsports", "context": "CREATE TABLE table_12146068_2 (gt1_winning_team VARCHAR, gt2_winning_team VARCHAR)"}, {"answer": "SELECT episode_title FROM table_12146637_1 WHERE us_viewers__millions_ = \"8.92\"", "question": "What is the title of the episode that was watched by 8.92 million viewers?", "context": "CREATE TABLE table_12146637_1 (episode_title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(episode_title) FROM table_12146637_1 WHERE us_viewers__millions_ = \"9.90\"", "question": "How many episodes had 9.90 million viewers?", "context": "CREATE TABLE table_12146637_1 (episode_title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_12146637_1 WHERE us_viewers__millions_ = \"10.89\"", "question": "What is the series number of the episode watched by 10.89 million viewers?", "context": "CREATE TABLE table_12146637_1 (series__number INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT episode_title FROM table_12146637_1 WHERE writer_s_ = \"Sheila Lawrence & Henry Alonso Myers\"", "question": "What is the name of the episode written by Sheila Lawrence & Henry Alonso Myers?", "context": "CREATE TABLE table_12146637_1 (episode_title VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT COUNT(overall_pick__number) FROM table_12165135_1 WHERE position = \"Defensive Back\"", "question": "What is the pick number of the defensive back?", "context": "CREATE TABLE table_12165135_1 (overall_pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_12165135_1 WHERE overall_pick__number = 17", "question": "What is the position for the pick number 17?", "context": "CREATE TABLE table_12165135_1 (position VARCHAR, overall_pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_12165135_1 WHERE afl_team = \"Buffalo Bills\"", "question": "What is the college of the afl team of buffalo bills?", "context": "CREATE TABLE table_12165135_1 (college VARCHAR, afl_team VARCHAR)"}, {"answer": "SELECT position FROM table_12165135_1 WHERE player = \"John Charles\"", "question": "What is the position of john charles?", "context": "CREATE TABLE table_12165135_1 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(overall_pick__number) FROM table_12165135_1 WHERE afl_team = \"New York Jets\"", "question": "What is the largest pick number of the new york jets?", "context": "CREATE TABLE table_12165135_1 (overall_pick__number INTEGER, afl_team VARCHAR)"}, {"answer": "SELECT afl_team FROM table_12165135_1 WHERE position = \"Offensive Guard\"", "question": "What is the afl team of the offensive guard?", "context": "CREATE TABLE table_12165135_1 (afl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_12186309_1 WHERE mens_doubles = \"Steen Fladberg Jens Peter Nierhoff\"", "question": "What was the women's singles were men's doubles were steen fladberg jens peter nierhoff?", "context": "CREATE TABLE table_12186309_1 (womens_singles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_12186309_1 WHERE mens_singles = \"Kim Brodersen\"", "question": "What are the mixed doubles where the mens singles is kim brodersen?", "context": "CREATE TABLE table_12186309_1 (mixed_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT first_appearance FROM table_1217448_1 WHERE character_s_ = \"Iron Man\"", "question": " what's the\u00a0first appearance\u00a0where\u00a0character(s)\u00a0is iron man", "context": "CREATE TABLE table_1217448_1 (first_appearance VARCHAR, character_s_ VARCHAR)"}, {"answer": "SELECT COUNT(publisher) FROM table_1217448_1 WHERE cover_date = \"May 1939\"", "question": "what is the total number of\u00a0publisher\u00a0where\u00a0cover date\u00a0is may 1939", "context": "CREATE TABLE table_1217448_1 (publisher VARCHAR, cover_date VARCHAR)"}, {"answer": "SELECT COUNT(publisher) FROM table_1217448_1 WHERE first_appearance = \"Daredevil #1\"", "question": "what is the total number of\u00a0publisher\u00a0where\u00a0first appearance\u00a0is daredevil #1", "context": "CREATE TABLE table_1217448_1 (publisher VARCHAR, first_appearance VARCHAR)"}, {"answer": "SELECT cover_date FROM table_1217448_1 WHERE character_s_ = \"Sandman (Wesley Dodds)\"", "question": " what's the\u00a0cover date\u00a0where\u00a0character(s)\u00a0is sandman (wesley dodds)", "context": "CREATE TABLE table_1217448_1 (cover_date VARCHAR, character_s_ VARCHAR)"}, {"answer": "SELECT cover_date FROM table_1217448_1 WHERE character_s_ = \"X-Men ; Magneto\"", "question": " what's the\u00a0cover date\u00a0where\u00a0character(s)\u00a0is x-men ; magneto", "context": "CREATE TABLE table_1217448_1 (cover_date VARCHAR, character_s_ VARCHAR)"}, {"answer": "SELECT estimated_value FROM table_1217448_1 WHERE cover_date = \"August 1962\"", "question": " what's the\u00a0estimated value\u00a0where\u00a0cover date\u00a0is august 1962", "context": "CREATE TABLE table_1217448_1 (estimated_value VARCHAR, cover_date VARCHAR)"}, {"answer": "SELECT result FROM table_12175755_1 WHERE theme = \"Finale\" AND order__number = \"3\"", "question": "What theme placed as #3 in the finale?", "context": "CREATE TABLE table_12175755_1 (result VARCHAR, theme VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT theme FROM table_12175755_1 WHERE episode = \"Selection Process\"", "question": "What is the theme for the episode selection process?", "context": "CREATE TABLE table_12175755_1 (theme VARCHAR, episode VARCHAR)"}, {"answer": "SELECT order__number FROM table_12175755_1 WHERE original_artist = \"Luis Fonsi\"", "question": "What is the order number for songs by the original artist Luis Fonsi?", "context": "CREATE TABLE table_12175755_1 (order__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT theme FROM table_12175755_1 WHERE song_choice = \"Not Aired\"", "question": "What is the song choice when the theme is not aired?", "context": "CREATE TABLE table_12175755_1 (theme VARCHAR, song_choice VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_12194021_1 WHERE mixed_doubles = \"Markose Bristow Madhumita Bisht\"", "question": "What years did Markose Bristow Madhumita Bisht win the mens singles and/or the mixed doubles?", "context": "CREATE TABLE table_12194021_1 (mens_singles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_12194021_1 WHERE season = 2002", "question": "Who won the womens doubles in 2002?", "context": "CREATE TABLE table_12194021_1 (womens_doubles VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(womens_singles) FROM table_12194021_1 WHERE mens_doubles = \"Rupesh Kumar Sanave Thomas\" AND womens_doubles = \"Jwala Gutta Ashwini Ponnappa\"", "question": "How many total titles did Rupesh Kumar Sanave Thomas and Jwala Gutta Ashwini Ponnappa win total?", "context": "CREATE TABLE table_12194021_1 (womens_singles VARCHAR, mens_doubles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_12194021_1 WHERE mens_singles = \"Arvind Bhat\" AND mixed_doubles = \"Valiyaveetil Diju Jwala Gutta\"", "question": "In womens doubles and mens singles, what years did Arvind Bhat or Valiyaveetil Diju Jwala Gutta win?", "context": "CREATE TABLE table_12194021_1 (womens_doubles VARCHAR, mens_singles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_12194021_1 WHERE womens_singles = \"Trupti Murgunde\"", "question": "How many titles did Trupti Murgunde claim?", "context": "CREATE TABLE table_12194021_1 (womens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT pennant FROM table_1220125_4 WHERE laid_down = \"4 May 1943\"", "question": "What is the pennant for 4 may 1943?", "context": "CREATE TABLE table_1220125_4 (pennant VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT COUNT(fate) FROM table_1220125_4 WHERE pennant = \"U33\"", "question": "What is the total number of fate for pennant of u33?", "context": "CREATE TABLE table_1220125_4 (fate VARCHAR, pennant VARCHAR)"}, {"answer": "SELECT fate FROM table_1220125_4 WHERE commissioned = \"11 April 1944\"", "question": "What is the fate for 11 april 1944?", "context": "CREATE TABLE table_1220125_4 (fate VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT name FROM table_1220125_4 WHERE launched = \"30 September 1943\"", "question": "What is the name for 30 september 1943?", "context": "CREATE TABLE table_1220125_4 (name VARCHAR, launched VARCHAR)"}, {"answer": "SELECT commissioned FROM table_1220125_4 WHERE laid_down = \"4 May 1943\"", "question": "What is the comissioned for 4 may 1943?", "context": "CREATE TABLE table_1220125_4 (commissioned VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT written_by FROM table_12226390_7 WHERE directed_by = \"Richard L. Bare\" AND no_in_season = 8", "question": "Who was the writters for the episode directed by Richard L. Bare, no. 8 in season?", "context": "CREATE TABLE table_12226390_7 (written_by VARCHAR, directed_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT tournament_location FROM table_12243817_1 WHERE winners_share__$_ = 7000", "question": "What is the location of the tournament that the share of winning is 7000?", "context": "CREATE TABLE table_12243817_1 (tournament_location VARCHAR, winners_share__$_ VARCHAR)"}, {"answer": "SELECT year FROM table_12243817_1 WHERE country = \"Japan\"", "question": "What year is Japan the country?", "context": "CREATE TABLE table_12243817_1 (year VARCHAR, country VARCHAR)"}, {"answer": "SELECT year FROM table_12243817_1 WHERE champion = \"Dewi Claire Schreefel\"", "question": "What is the year that Dewi Claire Schreefel is the champion?", "context": "CREATE TABLE table_12243817_1 (year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT MIN(winners_share__) AS $_ FROM table_12243817_1 WHERE year = \"2004\"", "question": "What is the winners Share ($) in the year 2004?", "context": "CREATE TABLE table_12243817_1 (winners_share__ INTEGER, year VARCHAR)"}, {"answer": "SELECT tournament_location FROM table_12243817_1 WHERE champion = \"Vicky Hurst\"", "question": "What is the tournament location when Vicky Hurst in the champion?", "context": "CREATE TABLE table_12243817_1 (tournament_location VARCHAR, champion VARCHAR)"}, {"answer": "SELECT intergiro_classification FROM table_12261926_2 WHERE stage = 21", "question": "What is the intergiro classification of stage 21?", "context": "CREATE TABLE table_12261926_2 (intergiro_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT trofeo_fast_team FROM table_12261926_2 WHERE stage = 8", "question": "What is the trofeo fast team on stage 8?", "context": "CREATE TABLE table_12261926_2 (trofeo_fast_team VARCHAR, stage VARCHAR)"}, {"answer": "SELECT COUNT(general_classification) FROM table_12261926_2 WHERE winner = \"Evgeni Berzin\"", "question": "What is the general classification with the winner being evgeni berzin?", "context": "CREATE TABLE table_12261926_2 (general_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT intergiro_classification FROM table_12261926_2 WHERE winner = \"Alexander Gontchenkov\"", "question": "What is the intergiro classification of alexander gontchenkov?", "context": "CREATE TABLE table_12261926_2 (intergiro_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(points_classification) FROM table_12262008_2 WHERE stage = 17", "question": "what is total number of points where the stage is 17?", "context": "CREATE TABLE table_12262008_2 (points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT status FROM table_12271718_1 WHERE channel = \"44.1\"", "question": "What is the status of channel 44.1?", "context": "CREATE TABLE table_12271718_1 (status VARCHAR, channel VARCHAR)"}, {"answer": "SELECT station FROM table_12271718_1 WHERE network_affiliation = \"Univision\"", "question": "What station has a univision network affiliation?", "context": "CREATE TABLE table_12271718_1 (station VARCHAR, network_affiliation VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_12272590_2 WHERE best_supported_club = \"Sportfreunde Siegen\"", "question": "How many season did sportfreunde siegen win best supported club?", "context": "CREATE TABLE table_12272590_2 (season VARCHAR, best_supported_club VARCHAR)"}, {"answer": "SELECT canadian_airdate FROM table_12294557_3 WHERE us_airdate = \"May 1, 2009\"", "question": "what are all the Canadian air dates where the u.s. air date is may 1, 2009", "context": "CREATE TABLE table_12294557_3 (canadian_airdate VARCHAR, us_airdate VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_12294557_3 WHERE us_airdate = \"May 1, 2009\"", "question": "What is the maximum season # with a u.s. air date is may 1, 2009", "context": "CREATE TABLE table_12294557_3 (season__number INTEGER, us_airdate VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_12294557_3 WHERE us_airdate = \"April 17, 2009\"", "question": "What is the total number of title with a u.s. air date of April 17, 2009", "context": "CREATE TABLE table_12294557_3 (title VARCHAR, us_airdate VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_12294557_3", "question": "what is the minimum production code", "context": "CREATE TABLE table_12294557_3 (production_code INTEGER)"}, {"answer": "SELECT us_airdate FROM table_12294557_3 WHERE canadian_airdate = \"May 4, 2009\"", "question": "what are the u.s. air dates with a Canadian air date of may 4, 2009", "context": "CREATE TABLE table_12294557_3 (us_airdate VARCHAR, canadian_airdate VARCHAR)"}, {"answer": "SELECT charity FROM table_12286195_1 WHERE background = \"Heavyweight Champion\"", "question": "Which is the charity that the background of the celebrity is heavyweight champion?", "context": "CREATE TABLE table_12286195_1 (charity VARCHAR, background VARCHAR)"}, {"answer": "SELECT original_team FROM table_12286195_1 WHERE result = \"08 Fired in week 10 (2008-03-06)\"", "question": "What is the original team of the celebrity who had the result 08 fired in week 10 (2008-03-06)", "context": "CREATE TABLE table_12286195_1 (original_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT celebrity FROM table_12286195_1 WHERE raised = \"03\"", "question": "Which celebrity was raised 03?", "context": "CREATE TABLE table_12286195_1 (celebrity VARCHAR, raised VARCHAR)"}, {"answer": "SELECT charity FROM table_12286195_1 WHERE background = \"Reality Star\"", "question": "What is the charity of the celebrity with the background reality star?", "context": "CREATE TABLE table_12286195_1 (charity VARCHAR, background VARCHAR)"}, {"answer": "SELECT background FROM table_12286195_1 WHERE result = \"13 The celebrity Apprentice (2008-03-27)\"", "question": "What is the background of the celebrity who had the result 13 the celebrity apprentice (2008-03-27)?", "context": "CREATE TABLE table_12286195_1 (background VARCHAR, result VARCHAR)"}, {"answer": "SELECT country FROM table_1231316_4 WHERE athlete = \"Tamunosiki Atorudibo\"", "question": "Where is Tamunosiki Atorudibo from", "context": "CREATE TABLE table_1231316_4 (country VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT location FROM table_1231316_4 WHERE athlete = \"Dwain Chambers\"", "question": "Where is Dwain Chambers from", "context": "CREATE TABLE table_1231316_4 (location VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT wind__m_s_ FROM table_1231316_4 WHERE country = \"Trinidad and Tobago\"", "question": "What was the stats of Trinidad and Tobago", "context": "CREATE TABLE table_1231316_4 (wind__m_s_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(wind__m_s_) FROM table_1231316_6 WHERE athlete = \"Sunday Emmanuel\"", "question": "Name the total number of wind m/s for sunday emmanuel", "context": "CREATE TABLE table_1231316_6 (wind__m_s_ VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT wind__m_s_ FROM table_1231316_6 WHERE fastest_time__s_ = \"10.25\" AND athlete = \"Jeff Demps\"", "question": "Name the wind m/s and fastest time of 10.25 and jeff demps", "context": "CREATE TABLE table_1231316_6 (wind__m_s_ VARCHAR, fastest_time__s_ VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT competition FROM table_1233026_4 WHERE aggregate = \"1\u20134\"", "question": "What is the competition when aggregate is 1\u20134?", "context": "CREATE TABLE table_1233026_4 (competition VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_1233026_4 WHERE club = \"A.C. Libertas\"", "question": "What is the 1st leg when club is a.c. libertas?", "context": "CREATE TABLE table_1233026_4 (club VARCHAR)"}, {"answer": "SELECT branding FROM table_12379297_4 WHERE location = \"Metro Manila\"", "question": "What is the branding of metro manila?", "context": "CREATE TABLE table_12379297_4 (branding VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_12434380_1 WHERE institution = \"Kansas City Kansas Community College\"", "question": "When was the institution of Kansas city Kansas community college founded?", "context": "CREATE TABLE table_12434380_1 (founded VARCHAR, institution VARCHAR)"}, {"answer": "SELECT mascot FROM table_12434380_1 WHERE institution = \"Kansas City Kansas Community College\"", "question": "What is the mascot for the instition of Kansas city Kansas community college?", "context": "CREATE TABLE table_12434380_1 (mascot VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(school_colors) FROM table_12434380_1 WHERE main_campus_location = \"Highland\"", "question": "How many school colors is there for the main campus location of highland?", "context": "CREATE TABLE table_12434380_1 (school_colors VARCHAR, main_campus_location VARCHAR)"}, {"answer": "SELECT mascot FROM table_12434380_1 WHERE founded = 1923 AND school_colors = \"Blue, Red & White\"", "question": "What is the mascot for the school founded in 1923 with the school colors of blue, red & white?", "context": "CREATE TABLE table_12434380_1 (mascot VARCHAR, founded VARCHAR, school_colors VARCHAR)"}, {"answer": "SELECT institution FROM table_12434380_1 WHERE main_campus_location = \"Overland Park\"", "question": "What is the instition where the main campus location is overland park?", "context": "CREATE TABLE table_12434380_1 (institution VARCHAR, main_campus_location VARCHAR)"}, {"answer": "SELECT institution FROM table_12434380_1 WHERE mascot = \"Blue Devils\"", "question": "What is the name of the institution with the mascot of blue devils?", "context": "CREATE TABLE table_12434380_1 (institution VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT written_by FROM table_12419515_5 WHERE series__number = 67", "question": "Name the people who wrote number 67", "context": "CREATE TABLE table_12419515_5 (written_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT MIN(season__number) FROM table_12419515_5 WHERE written_by = \"Adam Milch\"", "question": "Name the number of season that was written by adam milch", "context": "CREATE TABLE table_12419515_5 (season__number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT season__number FROM table_12419515_5 WHERE directed_by = \"Patrick Norris\"", "question": "Name the season number for the direction of patrick norris", "context": "CREATE TABLE table_12419515_5 (season__number VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_12451376_1 WHERE director = \"Dean White\"", "question": "Who wrote the episode when the director was dean white?", "context": "CREATE TABLE table_12451376_1 (writer_s_ VARCHAR, director VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_12451376_2 WHERE production_code = 211", "question": "Please list the total number of title with the production code 211.", "context": "CREATE TABLE table_12451376_2 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_12451376_2 WHERE season_2_ep__number = 1", "question": "Please give me the title of Season 2, episode 1. ", "context": "CREATE TABLE table_12451376_2 (title VARCHAR, season_2_ep__number VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_12451376_2 WHERE production_code = 210", "question": "Provide me with the name of the writer with the production code 210. ", "context": "CREATE TABLE table_12451376_2 (writer_s_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(original_airdate) FROM table_12451376_2 WHERE production_code = 208", "question": "What is the number of the original airdate with the production code 208.", "context": "CREATE TABLE table_12451376_2 (original_airdate VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT frame_size FROM table_1251878_3 WHERE maximum_fps = 30", "question": "What size is a 30 frames per minute", "context": "CREATE TABLE table_1251878_3 (frame_size VARCHAR, maximum_fps VARCHAR)"}, {"answer": "SELECT aspect_ratio FROM table_1251878_3 WHERE width > 4096.0", "question": "What is the size when the frame is bigger than for 4096.0", "context": "CREATE TABLE table_1251878_3 (aspect_ratio VARCHAR, width INTEGER)"}, {"answer": "SELECT least_compression_at_24_fps FROM table_1251878_3 WHERE mpix = \"5.0\"", "question": "What is the smallest frames per minute when the pixels are 5.0", "context": "CREATE TABLE table_1251878_3 (least_compression_at_24_fps VARCHAR, mpix VARCHAR)"}, {"answer": "SELECT width FROM table_1251878_1 WHERE frame_size = \"4.5K\"", "question": "what's the\u00a0width\u00a0with\u00a0frame size\u00a0being 4.5k", "context": "CREATE TABLE table_1251878_1 (width VARCHAR, frame_size VARCHAR)"}, {"answer": "SELECT callsign FROM table_12547903_2 WHERE location__transmitter_site_ = \"Tuguegarao\"", "question": "What is the callsign of tuguegarao", "context": "CREATE TABLE table_12547903_2 (callsign VARCHAR, location__transmitter_site_ VARCHAR)"}, {"answer": "SELECT station_type FROM table_12547903_2 WHERE location__transmitter_site_ = \"Calbayog\"", "question": "What is the station type of calbayog", "context": "CREATE TABLE table_12547903_2 (station_type VARCHAR, location__transmitter_site_ VARCHAR)"}, {"answer": "SELECT station_type FROM table_12547903_2 WHERE branding = \"SMNI TV-26 Naga\"", "question": "What is the station type of smni tv-26 naga", "context": "CREATE TABLE table_12547903_2 (station_type VARCHAR, branding VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_12547903_3 WHERE callsign = \"DXCL\"", "question": "How many places featured the DXCL Callsign?", "context": "CREATE TABLE table_12547903_3 (location VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT branding FROM table_12547903_3 WHERE location = \"Dagupan\"", "question": "What was the branding in Dagupan?", "context": "CREATE TABLE table_12547903_3 (branding VARCHAR, location VARCHAR)"}, {"answer": "SELECT callsign FROM table_12547903_3 WHERE location = \"Zamboanga\"", "question": "What was the callsign in Zamboanga?", "context": "CREATE TABLE table_12547903_3 (callsign VARCHAR, location VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_12547903_3 WHERE callsign = \"DZYT\"", "question": "How much power was used when the callsign was DZYT?", "context": "CREATE TABLE table_12547903_3 (power__kw_ VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT title FROM table_12564633_1 WHERE season__number = 15", "question": "What is the name of Season #15?", "context": "CREATE TABLE table_12564633_1 (title VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_12564633_1 WHERE season__number = 18", "question": "What is the series number for Season #18?", "context": "CREATE TABLE table_12564633_1 (series__number INTEGER, season__number VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_12564633_1 WHERE written_by = \"Jack Orman\"", "question": "What was the first series in this list that Jack Orman wrote?", "context": "CREATE TABLE table_12564633_1 (series__number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_12564633_1 WHERE directed_by = \"Richard Thorpe\"", "question": "What is the name of the episode that Richard Thorpe directed?", "context": "CREATE TABLE table_12564633_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT population__maryborough_ FROM table_12576536_1 WHERE population__woocoo_ = 2700", "question": "Name the population of maryborough when population of woocoo is 2700", "context": "CREATE TABLE table_12576536_1 (population__maryborough_ VARCHAR, population__woocoo_ VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_12576536_1 WHERE population__woocoo_ = 2700", "question": "Name the most year when population of woocoo is 2700", "context": "CREATE TABLE table_12576536_1 (year INTEGER, population__woocoo_ VARCHAR)"}, {"answer": "SELECT crew_chief FROM table_1266602_2 WHERE owner_s_ = \"Bob Leavine\"", "question": "Who was crew chief for the team owned by Bob Leavine?", "context": "CREATE TABLE table_1266602_2 (crew_chief VARCHAR, owner_s_ VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_1266602_2 WHERE team = \"Circle Sport\"", "question": "Who drove for team Circle Sport?", "context": "CREATE TABLE table_1266602_2 (driver_s_ VARCHAR, team VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_1266602_2 WHERE team = \"Phil Parsons Racing\"", "question": "Who drove for Phil Parsons Racing team?", "context": "CREATE TABLE table_1266602_2 (driver_s_ VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_1266602_2 WHERE crew_chief = \"Wally Rogers\"", "question": "Which teams used Wally Rogers as their crew chief?", "context": "CREATE TABLE table_1266602_2 (team VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT MAX(rounds) FROM table_1266602_2 WHERE crew_chief = \"Donnie Wingo\"", "question": "What is the largest number of rounds for the team that hired Donnie Wingo as crew chief?", "context": "CREATE TABLE table_1266602_2 (rounds INTEGER, crew_chief VARCHAR)"}, {"answer": "SELECT 2007 AS _estimate FROM table_12720275_1 WHERE rank__csa_ = \"4\"", "question": "What is the 2007 estimate when the rank (csa) is 4", "context": "CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR)"}, {"answer": "SELECT 2007 AS _estimate FROM table_12720275_1 WHERE combined_statistical_area__or_metropolitan_statistical_area_if_noted_ = \"Tulsa-Bartlesville, OK CSA\"", "question": "What is the 2007 estimate for tulsa-bartlesville, ok csa?", "context": "CREATE TABLE table_12720275_1 (combined_statistical_area__or_metropolitan_statistical_area_if_noted_ VARCHAR)"}, {"answer": "SELECT COUNT(2000 AS _population) FROM table_12720275_1 WHERE rank__csa_ = \"(MSA 348)\"", "question": "How many times was the rank (csa) was (msa 348)?", "context": "CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR)"}, {"answer": "SELECT rank__csa_ FROM table_12720275_1 WHERE percent_change__1990_2000_ = \"A034 +8.71%\"", "question": "What is the rank (csa) for the percentage change (1990-2000) was a034 +8.71%?", "context": "CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR, percent_change__1990_2000_ VARCHAR)"}, {"answer": "SELECT championship FROM table_1272033_1 WHERE previous_champion_s_ = \"Genesis\"", "question": "What tourmament has Genesis won previously?", "context": "CREATE TABLE table_1272033_1 (championship VARCHAR, previous_champion_s_ VARCHAR)"}, {"answer": "SELECT previous_champion_s_ FROM table_1272033_1 WHERE champion_s_ = \"Xix Xavant\"", "question": "Who was the champion prior to Xix Xavant?", "context": "CREATE TABLE table_1272033_1 (previous_champion_s_ VARCHAR, champion_s_ VARCHAR)"}, {"answer": "SELECT champion_s_ FROM table_1272033_1 WHERE location = \"Aguas Buenas, Puerto Rico\"", "question": "Who are the champions that have won at Aguas Buenas, Puerto Rico?", "context": "CREATE TABLE table_1272033_1 (champion_s_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT english_title_translation FROM table_12744399_1 WHERE japanese_title = \"Ranma \u00bd: Chougi Rambuhen\"", "question": "What's the English translation of the Japanese title of the game Ranma \u00bd: Chougi Rambuhen?", "context": "CREATE TABLE table_12744399_1 (english_title_translation VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT genre FROM table_12744399_1 WHERE english_title_translation = \"Fever Ranma \u00bd: Hot Springs Athletic Chapter\"", "question": "What's the genre of Fever Ranma \u00bd: Hot Springs Athletic Chapter?", "context": "CREATE TABLE table_12744399_1 (genre VARCHAR, english_title_translation VARCHAR)"}, {"answer": "SELECT initial_release_date FROM table_12744399_1 WHERE developer = \"Microvision\"", "question": "When was the game developed by Microvision released?", "context": "CREATE TABLE table_12744399_1 (initial_release_date VARCHAR, developer VARCHAR)"}, {"answer": "SELECT COUNT(verbal_noun) FROM table_12784134_1 WHERE basic_stem__root_ = \"-bil-\"", "question": "What's the number of verbal nouns with the basic stem (root) -bil-?", "context": "CREATE TABLE table_12784134_1 (verbal_noun VARCHAR, basic_stem__root_ VARCHAR)"}, {"answer": "SELECT meaning FROM table_12784134_1 WHERE non_present_stem = \"-erama-\"", "question": "What does the non-present stem -erama- mean?", "context": "CREATE TABLE table_12784134_1 (meaning VARCHAR, non_present_stem VARCHAR)"}, {"answer": "SELECT participle FROM table_12784134_1 WHERE verbal_noun = \"i-bil-tze\"", "question": "What's the participle when the verbal noun is i-bil-tze?", "context": "CREATE TABLE table_12784134_1 (participle VARCHAR, verbal_noun VARCHAR)"}, {"answer": "SELECT meaning FROM table_12784134_1 WHERE basic_stem__root_ = \"-rama-\"", "question": "What does the basic stem (root) -rama- mean?", "context": "CREATE TABLE table_12784134_1 (meaning VARCHAR, basic_stem__root_ VARCHAR)"}, {"answer": "SELECT verbal_noun FROM table_12784134_1 WHERE participle = \"e-duki\"", "question": "What is the verbal noun connected to the participle e-duki?", "context": "CREATE TABLE table_12784134_1 (verbal_noun VARCHAR, participle VARCHAR)"}, {"answer": "SELECT tries_against FROM table_12828723_4 WHERE points = \"60\"", "question": "what is the tries against where points is 60?", "context": "CREATE TABLE table_12828723_4 (tries_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(losing_bonus) FROM table_12828723_4 WHERE points_against = \"439\"", "question": "How many losing bonus where there when points against is 439?", "context": "CREATE TABLE table_12828723_4 (losing_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_12828723_4 WHERE won = \"12\"", "question": "what is the drawn when the won is 12?", "context": "CREATE TABLE table_12828723_4 (drawn VARCHAR, won VARCHAR)"}, {"answer": "SELECT tries_against FROM table_12828723_4 WHERE won = \"14\"", "question": "What is the tries against when the won is 14?", "context": "CREATE TABLE table_12828723_4 (tries_against VARCHAR, won VARCHAR)"}, {"answer": "SELECT COUNT(tries_for) FROM table_12828723_4 WHERE points_for = \"473\"", "question": "How many tries for are for 473 points for?", "context": "CREATE TABLE table_12828723_4 (tries_for VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT points_for FROM table_12828723_4 WHERE played = \"22\" AND tries_against = \"68\"", "question": "what is the points for when the played is 22 and tries against is 68?", "context": "CREATE TABLE table_12828723_4 (points_for VARCHAR, played VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT lost FROM table_12828723_3 WHERE try_bonus = \"5\" AND points_for = \"390\"", "question": "what's the\u00a0loss\u00a0with\u00a0try bonus\u00a0being 5 and\u00a0points for\u00a0being 390", "context": "CREATE TABLE table_12828723_3 (lost VARCHAR, try_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT won FROM table_12828723_3 WHERE points_for = \"376\"", "question": "what's the\u00a0win with\u00a0points for\u00a0being 376", "context": "CREATE TABLE table_12828723_3 (won VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT lost FROM table_12828723_3 WHERE points_for = \"594\"", "question": "what's the\u00a0loss\u00a0with\u00a0points for\u00a0being 594", "context": "CREATE TABLE table_12828723_3 (lost VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT tries_against FROM table_12828723_3 WHERE tries_for = \"47\"", "question": "what's the\u00a0tries against\u00a0with\u00a0tries for\u00a0being 47", "context": "CREATE TABLE table_12828723_3 (tries_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT won FROM table_12828723_3 WHERE club = \"Ammanford RFC\"", "question": "what's the\u00a0won\u00a0with\u00a0club\u00a0being ammanford rfc", "context": "CREATE TABLE table_12828723_3 (won VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_12828723_3 WHERE tries_against = \"24\"", "question": " how many\u00a0drawn\u00a0with\u00a0tries against\u00a0being 24", "context": "CREATE TABLE table_12828723_3 (drawn VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_12828723_5 WHERE points_against = \"416\"", "question": "What were the drawn with points against at 416?", "context": "CREATE TABLE table_12828723_5 (drawn VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT won FROM table_12828723_5 WHERE tries_against = \"54\"", "question": "What was the amount won with tries against at 54?", "context": "CREATE TABLE table_12828723_5 (won VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT lost FROM table_12828723_5 WHERE \"tries_for\" = \"tries_for\"", "question": "What was the lost with tries for?", "context": "CREATE TABLE table_12828723_5 (lost VARCHAR)"}, {"answer": "SELECT points_against FROM table_12828723_5 WHERE \"played\" = \"played\"", "question": "What was the points againt when played is played?", "context": "CREATE TABLE table_12828723_5 (points_against VARCHAR)"}, {"answer": "SELECT tries_for FROM table_12828723_5 WHERE tries_against = \"33\"", "question": "What was the tries for with tries against at 33?", "context": "CREATE TABLE table_12828723_5 (tries_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT played FROM table_12828723_5 WHERE club = \"Tumble RFC\"", "question": "What was the played with club tumble rfc?", "context": "CREATE TABLE table_12828723_5 (played VARCHAR, club VARCHAR)"}, {"answer": "SELECT console FROM table_12887260_1 WHERE franchise_or_game = \"Shenmue\"", "question": "What consoles was Shenmue released on?", "context": "CREATE TABLE table_12887260_1 (console VARCHAR, franchise_or_game VARCHAR)"}, {"answer": "SELECT main_developer FROM table_12887260_1 WHERE first_release = 1991 AND console = \"Mega Drive/Genesis\"", "question": "Which main developer made their first release in 1991 and created the Mega Drive/Genesis console?", "context": "CREATE TABLE table_12887260_1 (main_developer VARCHAR, first_release VARCHAR, console VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_12962773_10 WHERE current_club = \"Barons Riga\"", "question": "How many players currently play for Barons Riga?", "context": "CREATE TABLE table_12962773_10 (position VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT height FROM table_12962773_10 WHERE no = 10", "question": "How tall was Player #10?", "context": "CREATE TABLE table_12962773_10 (height VARCHAR, no VARCHAR)"}, {"answer": "SELECT MIN(year_born) FROM table_12962773_10", "question": "What is the earliest any of these players were born?", "context": "CREATE TABLE table_12962773_10 (year_born INTEGER)"}, {"answer": "SELECT no FROM table_12962773_10 WHERE height = \"2.10\"", "question": "Which player number is 2.10 meters tall?", "context": "CREATE TABLE table_12962773_10 (no VARCHAR, height VARCHAR)"}, {"answer": "SELECT position FROM table_12962773_10 WHERE height = \"2.12\"", "question": "What position was played by the player who was 2.12 meters tall?", "context": "CREATE TABLE table_12962773_10 (position VARCHAR, height VARCHAR)"}, {"answer": "SELECT current_conference FROM table_12936521_2 WHERE institution = \"Post University\"", "question": "What current conference is Post University a member of?", "context": "CREATE TABLE table_12936521_2 (current_conference VARCHAR, institution VARCHAR)"}, {"answer": "SELECT institution FROM table_12936521_2 WHERE nickname = \"Penmen\"", "question": "What institution has the nickname Penmen?", "context": "CREATE TABLE table_12936521_2 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT location FROM table_12936521_2 WHERE institution = \"University at Albany\"", "question": "Where is the University at Albany located?", "context": "CREATE TABLE table_12936521_2 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT classification FROM table_12936521_2 WHERE nickname = \"Dolphins\"", "question": "What's the classification of the institution nicknamed Dolphins?", "context": "CREATE TABLE table_12936521_2 (classification VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_12936521_2 WHERE institution = \"University of Massachusetts Lowell (UMass Lowell)\"", "question": "What's the nickname of the University of Massachusetts Lowell (UMass Lowell)?", "context": "CREATE TABLE table_12936521_2 (nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT position FROM table_12962773_2 WHERE player = \"Ido Kozikaro\"", "question": "What is Ido Kozikaro's position?", "context": "CREATE TABLE table_12962773_2 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_12962773_2 WHERE position = \"Center\"", "question": "What player plays center?", "context": "CREATE TABLE table_12962773_2 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT no FROM table_12962773_2 WHERE current_club = \"Ironi Nahariya\"", "question": "What are the numbers of the players currently playing for Ironi Nahariya?", "context": "CREATE TABLE table_12962773_2 (no VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT player FROM table_12962773_2 WHERE height = \"2.01\"", "question": "What player is 2.01 m tall?", "context": "CREATE TABLE table_12962773_2 (player VARCHAR, height VARCHAR)"}, {"answer": "SELECT position FROM table_12962773_2 WHERE player = \"Yotam Halperin\"", "question": "What's Yotam Halperin's position?", "context": "CREATE TABLE table_12962773_2 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT current_club FROM table_12962773_12 WHERE year_born = 1984", "question": "What current club does the player born in 1984 play for?", "context": "CREATE TABLE table_12962773_12 (current_club VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_12962773_12 WHERE no = 5", "question": "What is the height for player number 5?", "context": "CREATE TABLE table_12962773_12 (height VARCHAR, no VARCHAR)"}, {"answer": "SELECT height FROM table_12962773_12 WHERE no = 9", "question": "What height is player number 9?", "context": "CREATE TABLE table_12962773_12 (height VARCHAR, no VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_12962773_12 WHERE height = \"2.01\"", "question": "WHat is the number for the player whose height is 2.01?", "context": "CREATE TABLE table_12962773_12 (player VARCHAR, height VARCHAR)"}, {"answer": "SELECT MIN(year_born) FROM table_12962773_12 WHERE height = \"2.04\"", "question": "What year was the player with the height 2.04 born?", "context": "CREATE TABLE table_12962773_12 (year_born INTEGER, height VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_12962773_16 WHERE no = 8", "question": "How many players wore number 8?", "context": "CREATE TABLE table_12962773_16 (height VARCHAR, no VARCHAR)"}, {"answer": "SELECT player FROM table_12962773_16 WHERE year_born = 1983", "question": "What player was born in 1983?", "context": "CREATE TABLE table_12962773_16 (player VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT current_club FROM table_12962773_16 WHERE height = \"1.97\"", "question": "What club does the player who is 1.97 m tall play for?", "context": "CREATE TABLE table_12962773_16 (current_club VARCHAR, height VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_12962773_16 WHERE current_club = \"Energa Czarni\"", "question": "How many players are from energa czarni?", "context": "CREATE TABLE table_12962773_16 (position VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT year_born FROM table_12962773_16 WHERE player = \"Robert Skibniewski\"", "question": "What year was Robert Skibniewski born?", "context": "CREATE TABLE table_12962773_16 (year_born VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_12962773_4 WHERE player = \"Zoran Erceg\"", "question": "What No is the player Zoran Erceg", "context": "CREATE TABLE table_12962773_4 (no INTEGER, player VARCHAR)"}, {"answer": "SELECT the_icelandic_of_the_glossary FROM table_13003460_1 WHERE the_basque_of_the_glossary = \"presenta for mi locaria\"", "question": "What is the iclandic of the glossary for presenta for mi locaria", "context": "CREATE TABLE table_13003460_1 (the_icelandic_of_the_glossary VARCHAR, the_basque_of_the_glossary VARCHAR)"}, {"answer": "SELECT english_translation FROM table_13003460_1 WHERE the_icelandic_of_the_glossary = \"giefdu mier socka bond\"", "question": "Name the english translation of giefdu mier socka bond", "context": "CREATE TABLE table_13003460_1 (english_translation VARCHAR, the_icelandic_of_the_glossary VARCHAR)"}, {"answer": "SELECT english_translation FROM table_13003460_1 WHERE word_number = \"219\"", "question": "Name the english translation of 219", "context": "CREATE TABLE table_13003460_1 (english_translation VARCHAR, word_number VARCHAR)"}, {"answer": "SELECT the_icelandic_of_the_glossary FROM table_13003460_1 WHERE word_number = \"218\"", "question": "Name the incelandic of the glossary for 218", "context": "CREATE TABLE table_13003460_1 (the_icelandic_of_the_glossary VARCHAR, word_number VARCHAR)"}, {"answer": "SELECT printer_ports FROM table_1300080_1 WHERE model_number = \"EX Plus3\"", "question": "What's the type of printer ports in the model number EX Plus3?", "context": "CREATE TABLE table_1300080_1 (printer_ports VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT model_number FROM table_1300080_1 WHERE printer_ports = \"Three Parallel\"", "question": "What is the number of the model with three parallel printer ports?", "context": "CREATE TABLE table_1300080_1 (model_number VARCHAR, printer_ports VARCHAR)"}, {"answer": "SELECT network_protocols FROM table_1300080_1 WHERE notes = \"Discontinued in favor of the en1700\"", "question": "What are the network protocols for the model that has been discontinued in favor of the EN1700?", "context": "CREATE TABLE table_1300080_1 (network_protocols VARCHAR, notes VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_1300525_1 WHERE simplified = \"\u94c5\u5c71\u53bf\"", "question": "How many people live in  \u94c5\u5c71\u53bf?", "context": "CREATE TABLE table_1300525_1 (population INTEGER, simplified VARCHAR)"}, {"answer": "SELECT traditional FROM table_1300525_1 WHERE area = 2331", "question": "What is the traditional way to write the name of the district who's area is 2331?", "context": "CREATE TABLE table_1300525_1 (traditional VARCHAR, area VARCHAR)"}, {"answer": "SELECT COUNT(pinyin) FROM table_1300525_1 WHERE simplified = \"\u4fe1\u5dde\u533a\"", "question": "What is the capital of the district who's simplified name is  \u4fe1\u5dde\u533a?", "context": "CREATE TABLE table_1300525_1 (pinyin VARCHAR, simplified VARCHAR)"}, {"answer": "SELECT population FROM table_1300525_1 WHERE pinyin = \"H\u00e9ngf\u0113ng Xi\u00e0n\"", "question": "How many people live in the district who's capital is  h\u00e9ngf\u0113ng xi\u00e0n?", "context": "CREATE TABLE table_1300525_1 (population VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT COUNT(density) FROM table_1300525_1 WHERE english_name = \"Yushan County\"", "question": "What is the density of yushan county?", "context": "CREATE TABLE table_1300525_1 (density VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT MAX(gold_medals) FROM table_1305623_12 WHERE ensemble = \"Choctawhatchee High School\"", "question": "How many gold medals does the Choctawhatchee High School have?", "context": "CREATE TABLE table_1305623_12 (gold_medals INTEGER, ensemble VARCHAR)"}, {"answer": "SELECT gold_medals FROM table_1305623_12 WHERE total_medals = 1", "question": "How many gold medals does each school who has a total of 1 medal have?", "context": "CREATE TABLE table_1305623_12 (gold_medals VARCHAR, total_medals VARCHAR)"}, {"answer": "SELECT time FROM table_13050822_2 WHERE stage = \"SS18\"", "question": "What is the time for stage ss18?", "context": "CREATE TABLE table_13050822_2 (time VARCHAR, stage VARCHAR)"}, {"answer": "SELECT length FROM table_13050822_2 WHERE stage = \"SS22\"", "question": "Name the length for stage ss22", "context": "CREATE TABLE table_13050822_2 (length VARCHAR, stage VARCHAR)"}, {"answer": "SELECT COUNT(leg) FROM table_13050822_2 WHERE stage = \"SS17\"", "question": "What is the number of leg for ss17", "context": "CREATE TABLE table_13050822_2 (leg VARCHAR, stage VARCHAR)"}, {"answer": "SELECT leg FROM table_13050822_2 WHERE rally_leader = \"C. Atkinson\"", "question": "What is the leg for c. atkinson", "context": "CREATE TABLE table_13050822_2 (leg VARCHAR, rally_leader VARCHAR)"}, {"answer": "SELECT MIN(bronze_medals) FROM table_1305623_6", "question": "What's the smallest number of bronze medals that any one if the ensembles has? ", "context": "CREATE TABLE table_1305623_6 (bronze_medals INTEGER)"}, {"answer": "SELECT rev FROM table_1310499_1 WHERE application = \"2003-2004 Mustang Cobra\"", "question": "What is the rev of the 2003-2004 Mustang Cobra?", "context": "CREATE TABLE table_1310499_1 (rev VARCHAR, application VARCHAR)"}, {"answer": "SELECT rev FROM table_1310499_1 WHERE application = \"Aston Martin\"", "question": "What is the rev for all of the  Aston Martin applications?", "context": "CREATE TABLE table_1310499_1 (rev VARCHAR, application VARCHAR)"}, {"answer": "SELECT 3 AS rd FROM table_1310499_1 WHERE input_splines = 26 AND tag_id = \"1386-000-017\"", "question": "What is the 3rd ratio for tag number 1386-000-017 and input splines of 26?", "context": "CREATE TABLE table_1310499_1 (input_splines VARCHAR, tag_id VARCHAR)"}, {"answer": "SELECT 2 AS nd FROM table_1310499_1 WHERE application = \"1996-2002 Dodge Viper\"", "question": "What is the 2nd ratio of 1996-2002 Dodge Viper?", "context": "CREATE TABLE table_1310499_1 (application VARCHAR)"}, {"answer": "SELECT client FROM table_13150274_1 WHERE area_of_operation = \"EchiraX Concession\"", "question": "Whose address of operation was the Echirax Concession? ", "context": "CREATE TABLE table_13150274_1 (client VARCHAR, area_of_operation VARCHAR)"}, {"answer": "SELECT years_of_operation FROM table_13150274_1 WHERE area_of_operation = \"Field 103\"", "question": "When was the operation in Field 103 executed? ", "context": "CREATE TABLE table_13150274_1 (years_of_operation VARCHAR, area_of_operation VARCHAR)"}, {"answer": "SELECT country FROM table_13150274_1 WHERE area_of_operation = \"El Hamada\"", "question": "In what country is the El Hamada area of operation? ", "context": "CREATE TABLE table_13150274_1 (country VARCHAR, area_of_operation VARCHAR)"}, {"answer": "SELECT COUNT(3 AS rd_pl) FROM table_13196576_2 WHERE team = \"Ducati Xerox\"", "question": "What is the total number for 3rd place for ducati xerox?", "context": "CREATE TABLE table_13196576_2 (team VARCHAR)"}, {"answer": "SELECT je_armstrong FROM table_1320857_1 WHERE wh_archer = \"D.M. Lawson\"", "question": "Who is J.E. Armstrong when W.H. Archer is D.M. Lawson?", "context": "CREATE TABLE table_1320857_1 (je_armstrong VARCHAR, wh_archer VARCHAR)"}, {"answer": "SELECT fa_brill FROM table_1320857_1 WHERE wh_archer = \"R. Newman\"", "question": "What are the fa.brill when w.h. archer is known as r. newman?", "context": "CREATE TABLE table_1320857_1 (fa_brill VARCHAR, wh_archer VARCHAR)"}, {"answer": "SELECT hl_birkett FROM table_1320857_1 WHERE wh_archer = \"R. Cochrane\"", "question": "Who is h.l birkett if w.h. archer is r. cochrane?", "context": "CREATE TABLE table_1320857_1 (hl_birkett VARCHAR, wh_archer VARCHAR)"}, {"answer": "SELECT ht_brewer FROM table_1320857_1 WHERE je_armstrong = \"A.J. Wilson\"", "question": "Who is h.t. brewer when j.e. armstrong is a.j. wilson?", "context": "CREATE TABLE table_1320857_1 (ht_brewer VARCHAR, je_armstrong VARCHAR)"}, {"answer": "SELECT ht_brewer FROM table_1320857_1 WHERE je_armstrong = \"C.P. Greeks\"", "question": "Who is h.t. brewer when je armstrong is c.p. greeks?", "context": "CREATE TABLE table_1320857_1 (ht_brewer VARCHAR, je_armstrong VARCHAR)"}, {"answer": "SELECT part_2 FROM table_13241993_3 WHERE part_1 = \"January 31, 2008\"", "question": "What was the air date of part 2 of the episode whose part 1 was aired on January 31, 2008?", "context": "CREATE TABLE table_13241993_3 (part_2 VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT title FROM table_13241993_3 WHERE part_3 = \"February 7, 2008\"", "question": "What's the name of the episode whose part 3 aired on February 7, 2008?", "context": "CREATE TABLE table_13241993_3 (title VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT part_1 FROM table_13241993_3 WHERE part_2 = \"December 2, 2007\"", "question": "What's the air date of part 1 of the episode whose part 2 aired on December 2, 2007?", "context": "CREATE TABLE table_13241993_3 (part_1 VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT COUNT(part_6) FROM table_13241993_3 WHERE episode__number = 5", "question": "How many part 6 parts are there in the episode number 5?", "context": "CREATE TABLE table_13241993_3 (part_6 VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT record FROM table_13258823_2 WHERE opponent = \"Atlanta Falcons\"", "question": "Name the record with opponent atlanta falcons", "context": "CREATE TABLE table_13258823_2 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_13258823_2 WHERE game_site = \"Arrowhead Stadium\"", "question": "Name the number of opponent with arrowhead stadium", "context": "CREATE TABLE table_13258823_2 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_13258823_2 WHERE record = \"1-0\"", "question": "Name the date with the record of 1-0", "context": "CREATE TABLE table_13258823_2 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_13258823_2 WHERE date = \"September 15, 1985\"", "question": "Name the record for september 15, 1985", "context": "CREATE TABLE table_13258823_2 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_13273629_2 WHERE written_by = \"Elizabeth Devine\"", "question": "What's the series number of the episode that's written by Elizabeth Devine?", "context": "CREATE TABLE table_13273629_2 (no_in_series INTEGER, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_13273629_2 WHERE directed_by = \"Carey Meyer\"", "question": "When was the episode directed by Carey Meyer aired for the first time?", "context": "CREATE TABLE table_13273629_2 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT office FROM table_1331313_1 WHERE incumbent = \"Ramon R. Jimenez, Jr.\"", "question": "who is the the\u00a0office\u00a0with\u00a0incumbent\u00a0being ramon r. jimenez, jr.", "context": "CREATE TABLE table_1331313_1 (office VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(office) FROM table_1331313_1 WHERE department = \"department of Justice Kagawaran ng Katarungan\"", "question": " how many\u00a0office\u00a0with\u00a0department\u00a0being department of justice kagawaran ng katarungan", "context": "CREATE TABLE table_1331313_1 (office VARCHAR, department VARCHAR)"}, {"answer": "SELECT department FROM table_1331313_1 WHERE acronym = \"DepEd (KEd)\"", "question": "what's the\u00a0department\u00a0with\u00a0acronym\u00a0being deped (ked)", "context": "CREATE TABLE table_1331313_1 (department VARCHAR, acronym VARCHAR)"}, {"answer": "SELECT department FROM table_1331313_1 WHERE incumbent = \"Enrique Ona\"", "question": "what's the\u00a0department\u00a0with\u00a0incumbent\u00a0being enrique ona", "context": "CREATE TABLE table_1331313_1 (department VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT acronym FROM table_1331313_1 WHERE department = \"department of Finance Kagawaran ng Pananalapi\"", "question": "what's the\u00a0acronym\u00a0with\u00a0department\u00a0being department of finance kagawaran ng pananalapi", "context": "CREATE TABLE table_1331313_1 (acronym VARCHAR, department VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_13336122_7 WHERE us_viewers__million_ = \"0.57\"", "question": "What's the season number of the episode watched by 0.57 million US viewers?", "context": "CREATE TABLE table_13336122_7 (no_in_season INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_13336122_7 WHERE us_viewers__million_ = \"0.67\"", "question": "How many episodes were seen by 0.67 million US viewers on their original air dates?", "context": "CREATE TABLE table_13336122_7 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_13336122_7 WHERE directed_by = \"David Duchovny\"", "question": "What episode was directed by David Duchovny?", "context": "CREATE TABLE table_13336122_7 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT purse___$__ FROM table_13388681_1 WHERE margin_of_victory = \"1 stroke\"", "question": "How much is the purse ( $ ) when the margin of victory is 1 stroke?", "context": "CREATE TABLE table_13388681_1 (purse___$__ VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT to_par FROM table_13388681_1 WHERE country = \"Mexico\" AND winning_score = 67 - 67 - 69 - 70 = 273", "question": "What is the number of \"to par\" in Mexico with a winning score of 67-67-69-70=273?", "context": "CREATE TABLE table_13388681_1 (to_par VARCHAR, country VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT 3 AS rd_day FROM table_1340667_3 WHERE finish_position = \"16th\"", "question": "what's the\u00a03rd day\u00a0with\u00a0finbeingh position\u00a0being 16th", "context": "CREATE TABLE table_1340667_3 (finish_position VARCHAR)"}, {"answer": "SELECT result FROM table_1341395_33 WHERE district = \"New York 6\"", "question": "what are all the result for New York 6 district", "context": "CREATE TABLE table_1341395_33 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341395_33 WHERE incumbent = \"Gregory W. Meeks\"", "question": "Who were the candidates when gregory w. meeks was the incumbent", "context": "CREATE TABLE table_1341395_33 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341395_33 WHERE district = \"New York 16\"", "question": "what are all the result for New York 16 district", "context": "CREATE TABLE table_1341395_33 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1341395_33 WHERE district = \"New York 7\"", "question": "what are all the result for New York 7 district", "context": "CREATE TABLE table_1341395_33 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341395_44 WHERE incumbent = \"Kevin Brady\"", "question": "What party was Kevin Brady?", "context": "CREATE TABLE table_1341395_44 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341395_44 WHERE incumbent = \"Ron Paul\"", "question": "What district has Ron Paul?", "context": "CREATE TABLE table_1341395_44 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341423_23 WHERE incumbent = \"Jim Ramstad\"", "question": "What party does jim ramstad represent?", "context": "CREATE TABLE table_1341423_23 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341423_23 WHERE incumbent = \"Jim Ramstad\"", "question": "What year was incumbent jim ramstad first elected?", "context": "CREATE TABLE table_1341423_23 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1341423_23 WHERE incumbent = \"Gil Gutknecht\"", "question": "What was the result when incumbent gil gutknecht ran?", "context": "CREATE TABLE table_1341423_23 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341453_37 WHERE incumbent = \"Sherrod Brown\"", "question": "When was the incumbent Sherrod Brown first elected? ", "context": "CREATE TABLE table_1341453_37 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1341453_37 WHERE first_elected = 1984", "question": "What was the result of the election in which the incumbent was first elected in 1984?", "context": "CREATE TABLE table_1341453_37 (results VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341453_37 WHERE first_elected = 1972", "question": "Which incumbent was first elected in 1972? ", "context": "CREATE TABLE table_1341453_37 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341453_37 WHERE incumbent = \"Tony P. Hall\"", "question": "Tony P. Hall was the incumbent in the race between what two candidates? ", "context": "CREATE TABLE table_1341453_37 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341453_37 WHERE incumbent = \"Marcia C. Kaptur\"", "question": "In which district is the incumbent Marcia C. Kaptur? ", "context": "CREATE TABLE table_1341453_37 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341472_40 WHERE result = \"Retired Republican hold\"", "question": "What is the earliest year where the result of the election was a retired republican hold?", "context": "CREATE TABLE table_1341472_40 (first_elected INTEGER, result VARCHAR)"}, {"answer": "SELECT party FROM table_1341472_40 WHERE incumbent = \"Thomas Foglietta\"", "question": "What party is thomas foglietta from?", "context": "CREATE TABLE table_1341472_40 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT opponent FROM table_1341522_38 WHERE district = \"Ohio12\"", "question": "who is the the\u00a0opponent\u00a0with\u00a0district being ohio12", "context": "CREATE TABLE table_1341522_38 (opponent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341522_38 WHERE opponent = \"Mike Oxley (R) unopposed\"", "question": "what's the\u00a0party\u00a0with\u00a0opponent\u00a0being mike oxley (r) unopposed", "context": "CREATE TABLE table_1341522_38 (party VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT party FROM table_1341522_38 WHERE opponent = \"Marcy Kaptur (D) 75.3% Randy Whitman (R) 24.7%\"", "question": "what's the\u00a0party\u00a0with\u00a0opponent\u00a0being marcy kaptur (d) 75.3% randy whitman (r) 24.7%", "context": "CREATE TABLE table_1341522_38 (party VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT party FROM table_1341522_38 WHERE opponent = \"Deborah Pryce (R) 70.7% Bill Buckel (D) 29.1%\"", "question": "what's the\u00a0party\u00a0with\u00a0opponent\u00a0being deborah pryce (r) 70.7% bill buckel (d) 29.1%", "context": "CREATE TABLE table_1341522_38 (party VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(status) FROM table_1341522_38 WHERE first_elected = 1968", "question": " how many\u00a0status\u00a0with\u00a0first elected\u00a0being 1968", "context": "CREATE TABLE table_1341522_38 (status VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341522_38 WHERE opponent = \"Ralph Regula (R) 75.0% J. Michael Finn (D) 25.0%\"", "question": "what's the\u00a0first elected\u00a0with\u00a0opponent\u00a0being ralph regula (r) 75.0% j. michael finn (d) 25.0%", "context": "CREATE TABLE table_1341522_38 (first_elected VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT district FROM table_1341472_51 WHERE first_elected = 1978", "question": "What district first elected in 1978?", "context": "CREATE TABLE table_1341472_51 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_1341472_51 WHERE incumbent = \"Jerry Kleczka\"", "question": "What district was incumbent Jerry Kleczka in?", "context": "CREATE TABLE table_1341472_51 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1341472_51 WHERE incumbent = \"Toby Roth\"", "question": "How many districts had results related to incumbent Toby Roth?", "context": "CREATE TABLE table_1341472_51 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341472_51 WHERE district = \"Wisconsin 1\"", "question": "Who were the candidates in district Wisconsin 1?", "context": "CREATE TABLE table_1341472_51 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341549_10 WHERE incumbent = \"Lawrence J. Smith\"", "question": "Name the district of lawrence j. smith", "context": "CREATE TABLE table_1341549_10 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341549_10 WHERE first_elected = \"1954\"", "question": "Name the incumbent for 1954", "context": "CREATE TABLE table_1341549_10 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1341568_14 WHERE incumbent = \"Lane Evans\"", "question": "What party was Lane Evans?", "context": "CREATE TABLE table_1341568_14 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341568_14 WHERE elected = 1964", "question": "What district had elections in 1964?", "context": "CREATE TABLE table_1341568_14 (district VARCHAR, elected VARCHAR)"}, {"answer": "SELECT opponent FROM table_1341568_14 WHERE incumbent = \"Henry Hyde\"", "question": "Who was Henry Hyde's opponent in the race?", "context": "CREATE TABLE table_1341568_14 (opponent VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341568_14 WHERE elected = 1974 AND party = \"Republican\"", "question": "What Republican incumbent was elected in 1974?", "context": "CREATE TABLE table_1341568_14 (incumbent VARCHAR, elected VARCHAR, party VARCHAR)"}, {"answer": "SELECT party FROM table_1341577_10 WHERE result = \"Retired to run for U. S. Senate Republican hold\"", "question": "what's\u00a0party\u00a0with\u00a0result\u00a0being retired to run for u. s. senate republican hold", "context": "CREATE TABLE table_1341577_10 (party VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_1341577_10 WHERE incumbent = \"Connie Mack\"", "question": "what's\u00a0result\u00a0with\u00a0incumbent\u00a0being connie mack", "context": "CREATE TABLE table_1341577_10 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341577_10 WHERE candidates = \"Lawrence J. Smith (D) 69.4% Joseph Smith (R) 30.6%\"", "question": "what's\u00a0district with\u00a0candidates\u00a0being lawrence j. smith (d) 69.4% joseph smith (r) 30.6%", "context": "CREATE TABLE table_1341577_10 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341577_10 WHERE district = \"Florida 5\"", "question": "what's\u00a0incumbent\u00a0with\u00a0district being florida 5", "context": "CREATE TABLE table_1341577_10 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1341577_10 WHERE first_elected = 1980", "question": "what's\u00a0result\u00a0of first elected\u00a0being 1980", "context": "CREATE TABLE table_1341577_10 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341568_48 WHERE incumbent = \"Tom Foley\"", "question": "How many parties is Tom Foley a member of?", "context": "CREATE TABLE table_1341568_48 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT status FROM table_1341568_48 WHERE incumbent = \"Tom Foley\"", "question": "What was the result of the election in the district whose incumbent is Tom Foley?", "context": "CREATE TABLE table_1341568_48 (status VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1341586_26 WHERE candidates = \"Gene Taylor (R) 67.0% Ken Young (D) 33.0%\"", "question": "How many results have the two candidates Gene Taylor (r) 67.0% Ken Young (d) 33.0%?", "context": "CREATE TABLE table_1341586_26 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341586_26 WHERE district = \"Missouri 3\"", "question": "Which candidates are from the Missouri 3 district?", "context": "CREATE TABLE table_1341586_26 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1341598_22 WHERE incumbent = \"Barney Frank\"", "question": "What is the result for barney frank?", "context": "CREATE TABLE table_1341598_22 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1341598_22 WHERE incumbent = \"James Shannon\"", "question": "What is the number of results for james shannon?", "context": "CREATE TABLE table_1341598_22 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341598_22 WHERE incumbent = \"Ed Markey\"", "question": "What is the minimum first elected for ed markey?", "context": "CREATE TABLE table_1341598_22 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341604_26 WHERE incumbent = \"Ike Skelton\"", "question": "What was the result of the election featuring ike skelton?", "context": "CREATE TABLE table_1341604_26 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341604_26 WHERE incumbent = \"Ike Skelton\"", "question": "What district is incumbent ike skelton from?", "context": "CREATE TABLE table_1341604_26 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341604_26 WHERE incumbent = \"Ike Skelton\"", "question": "What year was ike skelton first elected?", "context": "CREATE TABLE table_1341604_26 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341663_10 WHERE result = \"Re-elected\" AND incumbent = \"Richard Kelly\"", "question": "what is the district where the result is re-elected and the incumbent is richard kelly?", "context": "CREATE TABLE table_1341663_10 (district VARCHAR, result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341663_10 WHERE candidates = \"Charles Edward Bennett (D) Unopposed\"", "question": "what is the district where the candidates are charles edward bennett (d) unopposed?", "context": "CREATE TABLE table_1341663_10 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341663_10 WHERE incumbent = \"Sam M. Gibbons\"", "question": "who are the candidates where the incumbent is sam m. gibbons?", "context": "CREATE TABLE table_1341663_10 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341663_10 WHERE candidates = \"Dan Mica (D) 55.3% Bill James (R) 44.7%\"", "question": "how many times was the candidates dan mica (d) 55.3% bill james (r) 44.7%?", "context": "CREATE TABLE table_1341663_10 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_1341663_10 WHERE candidates = \"Sam M. Gibbons (D) Unopposed\"", "question": "what was the result where the candidates are sam m. gibbons (d) unopposed?", "context": "CREATE TABLE table_1341663_10 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341663_10 WHERE district = \"Florida 9\"", "question": "who is the incumbent where the district is florida 9?", "context": "CREATE TABLE table_1341663_10 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341663_14 WHERE incumbent = \"Phil Crane\"", "question": "What is Phil Crane, democrat or republican ", "context": "CREATE TABLE table_1341663_14 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341663_14 WHERE incumbent = \"Frank Annunzio\"", "question": "What year was Frank Annunzio elected", "context": "CREATE TABLE table_1341663_14 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1341718_43 WHERE incumbent = \"Ed Jones\"", "question": "How many districts does Ed Jones represent?", "context": "CREATE TABLE table_1341718_43 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341843_19 WHERE incumbent = \"Edwin E. Willis\"", "question": "What's the year of the first election of the district whose incumbent is Edwin E. Willis?", "context": "CREATE TABLE table_1341843_19 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341843_19 WHERE incumbent = \"F. Edward Hebert\"", "question": "What district is F. Edward Hebert the incumbent in?", "context": "CREATE TABLE table_1341843_19 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341843_19 WHERE incumbent = \"Joe Waggonner\"", "question": "Who were the candidates in the district whose incumbent is Joe Waggonner?", "context": "CREATE TABLE table_1341843_19 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341843_19 WHERE incumbent = \"Otto Passman\"", "question": "What's the district that Otto Passman is the incumbent of?", "context": "CREATE TABLE table_1341843_19 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341930_21 WHERE party = \"Republican\"", "question": "What is the district that has a republican?", "context": "CREATE TABLE table_1341930_21 (district VARCHAR, party VARCHAR)"}, {"answer": "SELECT party FROM table_1341930_21 WHERE incumbent = \"Thomas J. Lane\"", "question": "What party is incumbent thomas j. lane from?", "context": "CREATE TABLE table_1341930_21 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341930_21", "question": "What is the last year that someone is first elected in this table?", "context": "CREATE TABLE table_1341930_21 (first_elected INTEGER)"}, {"answer": "SELECT COUNT(party) FROM table_1341930_33 WHERE candidates = \"Alton Lennon (D) 89.0% C. Dana Malpass (R) 11.0%\"", "question": " how many\u00a0party\u00a0with\u00a0candidates\u00a0being alton lennon (d) 89.0% c. dana malpass (r) 11.0%", "context": "CREATE TABLE table_1341930_33 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1341930_33 WHERE district = \"North Carolina 2\"", "question": " how many\u00a0first elected\u00a0with\u00a0district being north carolina 2", "context": "CREATE TABLE table_1341930_33 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341930_33 WHERE district = \"North Carolina 6\"", "question": "what's the\u00a0incumbent\u00a0with\u00a0district being north carolina 6", "context": "CREATE TABLE table_1341930_33 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341930_33 WHERE incumbent = \"Herbert Covington Bonner\"", "question": "what's the\u00a0party\u00a0with\u00a0incumbent\u00a0being herbert covington bonner", "context": "CREATE TABLE table_1341930_33 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341930_33 WHERE incumbent = \"Lawrence H. Fountain\"", "question": "what's the\u00a0district with\u00a0incumbent\u00a0being lawrence h. fountain", "context": "CREATE TABLE table_1341930_33 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341930_33 WHERE party = \"Democratic\" AND district = \"North Carolina 1\"", "question": "what's the\u00a0candidates\u00a0with\u00a0party\u00a0being democratic and\u00a0dbeingtrict\u00a0being north carolina 1", "context": "CREATE TABLE table_1341930_33 (candidates VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1341973_6 WHERE incumbent = \"John Shelley\"", "question": "What was the result of the election of incumbent john shelley?", "context": "CREATE TABLE table_1341973_6 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341973_6 WHERE incumbent = \"John Shelley\"", "question": "What candidates ran in the election that included john shelley?", "context": "CREATE TABLE table_1341973_6 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341973_6 WHERE incumbent = \"Clyde Doyle\"", "question": "What was the result of the election of the incumbent clyde doyle?", "context": "CREATE TABLE table_1341973_6 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341973_6 WHERE district = \"California 2\"", "question": "What was the result of the election in california 2?", "context": "CREATE TABLE table_1341973_6 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1341973_6 WHERE incumbent = \"Harry R. Sheppard\"", "question": "What was the result of the election of the incumbent harry r. sheppard?", "context": "CREATE TABLE table_1341973_6 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342013_31 WHERE incumbent = \"Frank J. Becker\"", "question": "What party did Frank J. Becker represent?", "context": "CREATE TABLE table_1342013_31 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342013_31 WHERE result = \"Resigned when appointed judge Democratic hold\"", "question": "What number of party had a candidate  resigned when appointed judge democratic hold?", "context": "CREATE TABLE table_1342013_31 (party VARCHAR, result VARCHAR)"}, {"answer": "SELECT district FROM table_1342013_31 WHERE incumbent = \"Ralph A. Gamble\"", "question": "What district did incumbent Ralph A. Gamble represent?", "context": "CREATE TABLE table_1342013_31 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342013_41 WHERE candidates = \"Percy Priest (D) 90.8% Robert M. Donihi (R) 9.2%\"", "question": "Who is the incumbent candidate in the election of percy priest (d) 90.8% robert m. donihi (r) 9.2%?", "context": "CREATE TABLE table_1342013_41 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_1342013_41 WHERE incumbent = \"Tom J. Murray\"", "question": "What district is tom j. murray from?", "context": "CREATE TABLE table_1342013_41 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342013_41 WHERE incumbent = \"James Patrick Sutton\"", "question": "What candidates were in the election when james patrick sutton was incumbent?", "context": "CREATE TABLE table_1342013_41 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342149_3 WHERE incumbent = \"Albert Rains\"", "question": "What district has Albert Rains as their representative?", "context": "CREATE TABLE table_1342149_3 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342149_3 WHERE incumbent = \"Carl Elliott\"", "question": "Carl Elliott is a member of which party?", "context": "CREATE TABLE table_1342149_3 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342198_25 WHERE incumbent = \"Morgan M. Moulder\"", "question": "How many were first elected when the incumbent was Morgan M. Moulder?", "context": "CREATE TABLE table_1342198_25 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342198_25 WHERE incumbent = \"Phil J. Welch\"", "question": "In what year was Phil J. Welch first elected?", "context": "CREATE TABLE table_1342198_25 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342198_25 WHERE incumbent = \"Dewey Short\"", "question": "What party was Dewey Short associated with?", "context": "CREATE TABLE table_1342198_25 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342198_25 WHERE party = \"Republican\"", "question": "What is the district with Republican party in place?", "context": "CREATE TABLE table_1342198_25 (district VARCHAR, party VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342198_3 WHERE district = \"Alabama 1\"", "question": "Who ran for office in the Alabama 1 district?", "context": "CREATE TABLE table_1342198_3 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342218_11 WHERE candidates = \"William M. Wheeler (D) Unopposed\"", "question": "What year was first elected william m. wheeler (d) unopposed?", "context": "CREATE TABLE table_1342218_11 (first_elected VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_1342218_11 WHERE incumbent = \"James C. Davis\"", "question": "What district does  incumbent  james c. davis represent?", "context": "CREATE TABLE table_1342218_11 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342233_13 WHERE incumbent = \"Melvin Price\"", "question": "What district is incumbent melvin price from?", "context": "CREATE TABLE table_1342233_13 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342233_13 WHERE incumbent = \"Sid Simpson\"", "question": "What district is incumbent sid simpson from?", "context": "CREATE TABLE table_1342233_13 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342233_42 WHERE district = \"Tennessee 9\"", "question": "Who was the candidate in the election in the Tennessee 9 district? ", "context": "CREATE TABLE table_1342233_42 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1342233_42 WHERE district = \"Tennessee 3\"", "question": "When was the Tennessee 3 district incumbent first elected? ", "context": "CREATE TABLE table_1342233_42 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT district FROM table_1342233_42 WHERE incumbent = \"Harold Earthman\"", "question": "What district was Harold Earthman the incumbent in? ", "context": "CREATE TABLE table_1342233_42 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342249_32 WHERE district = \"New York 1\"", "question": "Name the result for new york 1", "context": "CREATE TABLE table_1342249_32 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342249_32 WHERE result = \"Lost renomination Democratic loss\"", "question": "Name the first elected for lost renomination democratic loss", "context": "CREATE TABLE table_1342249_32 (first_elected VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_1342249_42 WHERE incumbent = \"Jere Cooper\"", "question": "How many results have Jere Cooper as incumbent?", "context": "CREATE TABLE table_1342249_42 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342256_13 WHERE district = \"Illinois 13\"", "question": "Who won the election of 1942 in the district Illinois 13?", "context": "CREATE TABLE table_1342256_13 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342256_11 WHERE first_elected = 1924", "question": "Who ran for the House in the 1924 election?", "context": "CREATE TABLE table_1342256_11 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1342256_11 WHERE incumbent = \"Stephen Pace\"", "question": "What year was Stephen Pace elected?", "context": "CREATE TABLE table_1342256_11 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1342256_11 WHERE first_elected = 1926", "question": "How many incumbents were elected in the 1926 election?", "context": "CREATE TABLE table_1342256_11 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342270_17 WHERE incumbent = \"Noble Jones Gregory\"", "question": "Who were the candidates when Noble Jones Gregory was incumbent?", "context": "CREATE TABLE table_1342270_17 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342338_6 WHERE incumbent = \"Harry Lane Englebright\"", "question": "What is the district for harry lane englebright?", "context": "CREATE TABLE table_1342338_6 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342338_6 WHERE district = \"California 2\"", "question": "What is the result for california 2?", "context": "CREATE TABLE table_1342338_6 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342338_6 WHERE incumbent = \"Richard J. Welch\"", "question": "What is the party for richard j. welch?", "context": "CREATE TABLE table_1342338_6 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1342359_23 WHERE first_elected = 1922", "question": "How many winners were there in the race of 1922", "context": "CREATE TABLE table_1342359_23 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342379_5 WHERE incumbent = \"Henry E. Barbour\"", "question": "Who was the incumbent when henry e. barbour ran?", "context": "CREATE TABLE table_1342379_5 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342393_17 WHERE incumbent = \"Whitmell P. Martin\"", "question": " how many\u00a0party\u00a0with\u00a0incumbent\u00a0being whitmell p. martin", "context": "CREATE TABLE table_1342393_17 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342393_17 WHERE incumbent = \"James O'Connor\"", "question": "who is the the\u00a0candidates\u00a0with\u00a0incumbent\u00a0being james o'connor", "context": "CREATE TABLE table_1342393_17 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1342393_17 WHERE first_elected = 1924", "question": " how many\u00a0incumbent\u00a0with\u00a0first elected\u00a0being 1924", "context": "CREATE TABLE table_1342393_17 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342393_16 WHERE district = \"Kentucky 9\"", "question": "Name the incumbent for kentucky 9", "context": "CREATE TABLE table_1342393_16 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342393_16 WHERE first_elected = 1920", "question": "Name the party or first elected is 1920", "context": "CREATE TABLE table_1342393_16 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342393_16 WHERE first_elected = 1914", "question": "What is the candidates for first elected 1914", "context": "CREATE TABLE table_1342393_16 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_1342393_41 WHERE incumbent = \"Cordell Hull\"", "question": "What was the result of the election for incumbent Cordell Hull?", "context": "CREATE TABLE table_1342393_41 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342393_41 WHERE incumbent = \"Cordell Hull\"", "question": "Cordell Hull is the incumbent in how many districts?", "context": "CREATE TABLE table_1342393_41 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1342393_42 WHERE incumbent = \"Tom Connally\"", "question": "What was the total number of votes for Tom Connally", "context": "CREATE TABLE table_1342393_42 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342451_38 WHERE incumbent = \"William F. Stevenson\"", "question": "What year was incumbent william f. stevenson first elected?", "context": "CREATE TABLE table_1342451_38 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1342451_38", "question": "What is the last year on this list someone was first elected?", "context": "CREATE TABLE table_1342451_38 (first_elected INTEGER)"}, {"answer": "SELECT candidates FROM table_1342451_38 WHERE incumbent = \"Samuel J. Nicholls\"", "question": "What candidate was featured in the election for incumbent samuel j. nicholls' seat?", "context": "CREATE TABLE table_1342451_38 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1342451_38 WHERE incumbent = \"Frederick H. Dominick\"", "question": "What is the last year incumbent frederick h. dominick was first elected?", "context": "CREATE TABLE table_1342451_38 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1346137_4 WHERE first_elected = \"1910\"", "question": "Who were the candidates when the winner was first elected in 1910?", "context": "CREATE TABLE table_1346137_4 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1346137_4 WHERE incumbent = \"Richard S. Whaley\"", "question": "What was the winning party when the incumbent was richard s. whaley?", "context": "CREATE TABLE table_1346137_4 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1346137_4 WHERE incumbent = \"David E. Finley\"", "question": "How many different set of candidates were there when the incumbent was david e. finley?", "context": "CREATE TABLE table_1346137_4 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1346137_4 WHERE district = \"South Carolina 3\"", "question": "What was the winning part in the district of South Carolina 3?", "context": "CREATE TABLE table_1346137_4 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1346137_4 WHERE district = \"South Carolina 5\"", "question": "Who were the candidates in the district of South Carolina 5?", "context": "CREATE TABLE table_1346137_4 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1346118_4 WHERE incumbent = \"John N. Tillman\"", "question": "When was incumbent John N. Tillman first elected?", "context": "CREATE TABLE table_1346118_4 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_13464416_8 WHERE record = \"16-44\"", "question": "What was the location and attendance when the team's record was 16-44?", "context": "CREATE TABLE table_13464416_8 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_13464416_8 WHERE team = \"Chicago\"", "question": "What day was the game at chicago?", "context": "CREATE TABLE table_13464416_8 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_13464416_4 WHERE game = 7", "question": "Who were the high point scorers in game 7?", "context": "CREATE TABLE table_13464416_4 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_13464416_4 WHERE team = \"Golden State\"", "question": "Who had the high rebound total against golden state?", "context": "CREATE TABLE table_13464416_4 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_13464416_6 WHERE high_assists = \"Damon Stoudamire (13)\"", "question": "how many times have there been helps by damon stoudamire (13)", "context": "CREATE TABLE table_13464416_6 (record VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_13464416_6 WHERE record = \"12-30\"", "question": "who made the recovers where the score is 12-30", "context": "CREATE TABLE table_13464416_6 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_13464416_6 WHERE team = \"New Jersey\"", "question": "tell who made the most scores on new jersey", "context": "CREATE TABLE table_13464416_6 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT game FROM table_13464416_6 WHERE location_attendance = \"Omni Coliseum 7,194\"", "question": "how many times was the participation at omni coliseum 7,194?", "context": "CREATE TABLE table_13464416_6 (game VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT MIN(number_of_dances) FROM table_1354805_3 WHERE average = \"34.1\"", "question": "The minimum average number of dancers is 34.1 how many times", "context": "CREATE TABLE table_1354805_3 (number_of_dances INTEGER, average VARCHAR)"}, {"answer": "SELECT total FROM table_1354805_3 WHERE number_of_dances = 11 AND competition_finish > 2.0", "question": "What is the Number of dances is 11 and competition finish is larger than 2.0 total", "context": "CREATE TABLE table_1354805_3 (total VARCHAR, number_of_dances VARCHAR, competition_finish VARCHAR)"}, {"answer": "SELECT club FROM table_13564637_5 WHERE points = \"30\"", "question": "Who is the club that has 30 points?", "context": "CREATE TABLE table_13564637_5 (club VARCHAR, points VARCHAR)"}, {"answer": "SELECT tries_for FROM table_13564637_5 WHERE try_bonus = \"8\"", "question": "What were all the tries for when the try bonus was 8?", "context": "CREATE TABLE table_13564637_5 (tries_for VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT points_for FROM table_13564637_5 WHERE tries_against = \"30\"", "question": "What were the points for when there were 30 tries against?", "context": "CREATE TABLE table_13564637_5 (points_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT COUNT(points_against) FROM table_13564637_5 WHERE tries_for = \"43\"", "question": "How many numbers were recorded points against  when the tries were for 43?", "context": "CREATE TABLE table_13564637_5 (points_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT tries_against FROM table_13564637_5 WHERE points_against = \"287\"", "question": "What are the tries against  when points against 287?", "context": "CREATE TABLE table_13564637_5 (tries_against VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_for FROM table_13564637_5 WHERE club = \"Tonyrefail RFC\"", "question": "What were all the points for Tonyrefail RFC?", "context": "CREATE TABLE table_13564637_5 (points_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT specifically_stains FROM table_13570_1 WHERE cytoplasm = \"Pink\"", "question": "Pink cytoplasm is seen in a test that specifically stains what?", "context": "CREATE TABLE table_13570_1 (specifically_stains VARCHAR, cytoplasm VARCHAR)"}, {"answer": "SELECT COUNT(cytoplasm) FROM table_13570_1 WHERE nucleus = \"Blue\"", "question": "How many cytoplasms result in a blue nucleus?", "context": "CREATE TABLE table_13570_1 (cytoplasm VARCHAR, nucleus VARCHAR)"}, {"answer": "SELECT specifically_stains FROM table_13570_1 WHERE nucleus = \"Blue/black\"", "question": "A nucleus that is blue/black will specifically stain what?", "context": "CREATE TABLE table_13570_1 (specifically_stains VARCHAR, nucleus VARCHAR)"}, {"answer": "SELECT nucleus FROM table_13570_1 WHERE cytoplasm = \"Pink\"", "question": "The pink cytoplasm will have a nucleus of what color?", "context": "CREATE TABLE table_13570_1 (nucleus VARCHAR, cytoplasm VARCHAR)"}, {"answer": "SELECT stain FROM table_13570_1 WHERE common_use = \"Elastic fibers\"", "question": "What stain is used commonly for elastic fibers?", "context": "CREATE TABLE table_13570_1 (stain VARCHAR, common_use VARCHAR)"}, {"answer": "SELECT winner FROM table_1359212_2 WHERE second_place = \"United Kingdom\"", "question": "where is hte second place winner from united kingdom?", "context": "CREATE TABLE table_1359212_2 (winner VARCHAR, second_place VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_1359212_2 WHERE winner = \"Spain\"", "question": "how many locations has spain as the winner?", "context": "CREATE TABLE table_1359212_2 (location VARCHAR, winner VARCHAR)"}, {"answer": "SELECT artist FROM table_1359212_2 WHERE venue = \"Heineken Music Hall\"", "question": "who is the artist performing at heineken music hall?", "context": "CREATE TABLE table_1359212_2 (artist VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(margin) FROM table_1359212_2 WHERE second_place = \"Spain\" AND language = \"Russian\"", "question": "what amount has spain as second place and the language is russian?", "context": "CREATE TABLE table_1359212_2 (margin VARCHAR, second_place VARCHAR, language VARCHAR)"}, {"answer": "SELECT COUNT(retired) FROM table_13605170_2 WHERE aircraft_type = \"Curtiss XBTC\"", "question": "how many Curtiss XBTC aircraft are retired?", "context": "CREATE TABLE table_13605170_2 (retired VARCHAR, aircraft_type VARCHAR)"}, {"answer": "SELECT retired FROM table_13605170_2 WHERE aircraft_type = \"Airspeed Fleet Shadower\"", "question": "How many Airspeed Fleet Shadower aircraft are retired?", "context": "CREATE TABLE table_13605170_2 (retired VARCHAR, aircraft_type VARCHAR)"}, {"answer": "SELECT national_origin FROM table_13605170_2 WHERE retired = \"1954\" AND in_service = \"1943\"", "question": "What is the origin of aircraft in service in 1943 and retired in 1954?", "context": "CREATE TABLE table_13605170_2 (national_origin VARCHAR, retired VARCHAR, in_service VARCHAR)"}, {"answer": "SELECT winner_2nd FROM table_1360997_2 WHERE time = \"1:24.00\"", "question": "Who was the winner when the time was 1:24.00?", "context": "CREATE TABLE table_1360997_2 (winner_2nd VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1360997_2 WHERE race = \"Stan Fox Stakes\"", "question": "How many results were there for the Stan Fox Stakes race?", "context": "CREATE TABLE table_1360997_2 (result VARCHAR, race VARCHAR)"}, {"answer": "SELECT result FROM table_1360997_2 WHERE venue = \"Rosehill\"", "question": "Was the rosehill venue a win or loss?", "context": "CREATE TABLE table_1360997_2 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_13606924_1 WHERE kerry__percentage = \"16.71%\"", "question": "what is the minimum\u00a0total\u00a0with\u00a0kerry %\u00a0being 16.71%", "context": "CREATE TABLE table_13606924_1 (total INTEGER, kerry__percentage VARCHAR)"}, {"answer": "SELECT MIN(kerry__number) FROM table_13606924_1 WHERE bush__percentage = \"78.40%\"", "question": "what is the minimum\u00a0kerry #\u00a0with\u00a0bush %\u00a0being 78.40%", "context": "CREATE TABLE table_13606924_1 (kerry__number INTEGER, bush__percentage VARCHAR)"}, {"answer": "SELECT kerry__number FROM table_13606924_1 WHERE county = \"Ness county, Kansas\"", "question": "what's the\u00a0kerry #\u00a0with\u00a0county\u00a0being ness county, kansas", "context": "CREATE TABLE table_13606924_1 (kerry__number VARCHAR, county VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_13606924_1 WHERE bush__number = 1552", "question": " how many\u00a0total\u00a0with\u00a0bush #\u00a0being 1552", "context": "CREATE TABLE table_13606924_1 (total VARCHAR, bush__number VARCHAR)"}, {"answer": "SELECT MIN(bush__number) FROM table_13606924_1 WHERE kerry__number = 3938", "question": "what is the minimum\u00a0bush #\u00a0with\u00a0kerry #\u00a0being 3938", "context": "CREATE TABLE table_13606924_1 (bush__number INTEGER, kerry__number VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_13606924_1 WHERE county = \"Rooks county, Kansas\"", "question": " how many\u00a0total\u00a0with\u00a0county\u00a0being rooks county, kansas", "context": "CREATE TABLE table_13606924_1 (total VARCHAR, county VARCHAR)"}, {"answer": "SELECT district FROM table_13618584_1 WHERE incumbent = \"Dick Saslaw\"", "question": "In which district was the incumbent Dick Saslaw? ", "context": "CREATE TABLE table_13618584_1 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT 2007 AS _result FROM table_13618584_1 WHERE elected = 1996", "question": "What was the 2007 result in the district where the incumbent was elected in 1996? ", "context": "CREATE TABLE table_13618584_1 (elected VARCHAR)"}, {"answer": "SELECT 2007 AS _result FROM table_13618584_1 WHERE district = \"28th\"", "question": "What was the 2007 result in the 28th district? ", "context": "CREATE TABLE table_13618584_1 (district VARCHAR)"}, {"answer": "SELECT district FROM table_13618584_1 WHERE incumbent = \"Charles Hawkins\"", "question": "In what district was the incumbent Charles Hawkins? ", "context": "CREATE TABLE table_13618584_1 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_13619027_9 WHERE date = \"March 26\"", "question": "What's the number of the game played on March 26?", "context": "CREATE TABLE table_13619027_9 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_13619027_9 WHERE date = \"March 13\"", "question": "How many different values if the number is high rebounds can be found for the game on March 13?", "context": "CREATE TABLE table_13619027_9 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_13619053_7 WHERE record = \"11-40\"", "question": "Who ihad the highest points and what was the number when the record was 11-40?", "context": "CREATE TABLE table_13619053_7 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT team FROM table_13619135_8 WHERE record = \"45-36\"", "question": "Who did the Raptors play when their record was 45-36? ", "context": "CREATE TABLE table_13619135_8 (team VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_13619135_8 WHERE date = \"April 12\"", "question": "What number game of the season was played on April 12? ", "context": "CREATE TABLE table_13619135_8 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT MAX(total__number) FROM table_13625792_1 WHERE county = \"Wayne\"", "question": "How many votes were cast in Wayne county?", "context": "CREATE TABLE table_13625792_1 (total__number INTEGER, county VARCHAR)"}, {"answer": "SELECT total__number FROM table_13625792_1 WHERE bush__percentage = \"77.76%\"", "question": "In the county where Bush won 77.76%, how many total votes were cast?", "context": "CREATE TABLE table_13625792_1 (total__number VARCHAR, bush__percentage VARCHAR)"}, {"answer": "SELECT other__percentage FROM table_13625792_1 WHERE bush__number = 4333", "question": "In the country where Bush won 4333 votes, what percentage did other receive?", "context": "CREATE TABLE table_13625792_1 (other__percentage VARCHAR, bush__number VARCHAR)"}, {"answer": "SELECT to_winning_team FROM table_13642023_2 WHERE tu_winning_team = \"Joe Richardson\"", "question": "Who was the TO winning team when the TU winning team was Joe Richardson? ", "context": "CREATE TABLE table_13642023_2 (to_winning_team VARCHAR, tu_winning_team VARCHAR)"}, {"answer": "SELECT circuit FROM table_13642023_2 WHERE rnd = 5 AND gtu_winning_team = \"#59 Brumos Porsche - Audi\"", "question": "On what circuit was the GTU winning team #59 Brumos Porsche - Audi in round 5? ", "context": "CREATE TABLE table_13642023_2 (circuit VARCHAR, rnd VARCHAR, gtu_winning_team VARCHAR)"}, {"answer": "SELECT gtu_winning_team FROM table_13642023_2 WHERE to_winning_team = \"#3 Camaro\"", "question": "Who was the GTU winning team when the TO winning team was #3 Camaro? ", "context": "CREATE TABLE table_13642023_2 (gtu_winning_team VARCHAR, to_winning_team VARCHAR)"}, {"answer": "SELECT gtu_winning_team FROM table_13642023_2 WHERE to_winning_team = \"Steve Ross\"", "question": "Who was the GTU winning team when the TO winning team was Steve Ross? ", "context": "CREATE TABLE table_13642023_2 (gtu_winning_team VARCHAR, to_winning_team VARCHAR)"}, {"answer": "SELECT gto_winning_team FROM table_13642023_2 WHERE rnd = 5 AND gtu_winning_team = \"#59 Brumos Porsche - Audi\"", "question": "Who was the GTO winning team in round 5 when the GTU winning team was #59 Brumos Porsche - Audi? ", "context": "CREATE TABLE table_13642023_2 (gto_winning_team VARCHAR, rnd VARCHAR, gtu_winning_team VARCHAR)"}, {"answer": "SELECT gto_winning_team FROM table_13642023_2 WHERE to_winning_team = \"#84 Camaro\"", "question": "Who was the GTO winning team when the TO winning team was #84 Camaro? ", "context": "CREATE TABLE table_13642023_2 (gto_winning_team VARCHAR, to_winning_team VARCHAR)"}, {"answer": "SELECT results FROM table_13643154_2 WHERE gto_winning_team = \"Steve Millen\"", "question": "Name the results for steve millen", "context": "CREATE TABLE table_13643154_2 (results VARCHAR, gto_winning_team VARCHAR)"}, {"answer": "SELECT MIN(rnd) FROM table_13643154_2 WHERE circuit = \"Watkins Glen\"", "question": "What is the most rnd for watkins glen?", "context": "CREATE TABLE table_13643154_2 (rnd INTEGER, circuit VARCHAR)"}, {"answer": "SELECT gtp_winning_team FROM table_13643320_2 WHERE circuit = \"Portland\" AND gtu_winning_team = \"Jack Baldwin\"", "question": "What was the GTP winning team in the round in Portland during which Jack Baldwin become part of the GTU winning team? ", "context": "CREATE TABLE table_13643320_2 (gtp_winning_team VARCHAR, circuit VARCHAR, gtu_winning_team VARCHAR)"}, {"answer": "SELECT rnd FROM table_13643320_2 WHERE gtp_winning_team = \"#56 Blue Thunder Racing\" AND gto_winning_team = \"#38 Mandeville Auto Tech\"", "question": "What us the number of the round during which #56 Blue Thunder Racing become the GTP winning team and #38 Mandeville Auto Tech became the GTO winning team? ", "context": "CREATE TABLE table_13643320_2 (rnd VARCHAR, gtp_winning_team VARCHAR, gto_winning_team VARCHAR)"}, {"answer": "SELECT COUNT(results) FROM table_13643320_2 WHERE gtu_winning_team = \"#98 All American Racers\"", "question": "How many different results came out of the round in which #98 All American Racers became the GTU winning team? ", "context": "CREATE TABLE table_13643320_2 (results VARCHAR, gtu_winning_team VARCHAR)"}, {"answer": "SELECT gto_winning_team FROM table_13643320_2 WHERE gtu_winning_team = \"Chris Cord\"", "question": "Who was the GTO winner of the round that ended with Chris Cord becoming the GTU winner? ", "context": "CREATE TABLE table_13643320_2 (gto_winning_team VARCHAR, gtu_winning_team VARCHAR)"}, {"answer": "SELECT uu_usu_score FROM table_13665809_2 WHERE winner = \"#5 Brigham Young (2\u20130)\"", "question": "what are all the\u00a0uu-usu score\u00a0with\u00a0winner\u00a0is #5 brigham young (2\u20130)", "context": "CREATE TABLE table_13665809_2 (uu_usu_score VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_13665809_2 WHERE byu_usu_score = \"29\u20137\"", "question": "what is the maximum\u00a0season\u00a0with\u00a0byu-usu score\u00a0being 29\u20137", "context": "CREATE TABLE table_13665809_2 (season INTEGER, byu_usu_score VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_13665809_2 WHERE byu_uu_score = \"20\u201317 BYU #19\"", "question": "what is the maximum\u00a0season\u00a0with\u00a0byu-uu score\u00a0being 20\u201317 byu #19", "context": "CREATE TABLE table_13665809_2 (season INTEGER, byu_uu_score VARCHAR)"}, {"answer": "SELECT COUNT(byu_uu_score) FROM table_13665809_2 WHERE winner = \"Utah State (2\u20131) Won over BYU by media vote\"", "question": " how many\u00a0byu-uu score\u00a0with\u00a0winner\u00a0being utah state (2\u20131) won over byu by media vote", "context": "CREATE TABLE table_13665809_2 (byu_uu_score VARCHAR, winner VARCHAR)"}, {"answer": "SELECT byu_uu_score FROM table_13665809_2 WHERE uu_usu_score = \"44\u201316\"", "question": "what's the\u00a0byu-uu score\u00a0with\u00a0uu-usu score\u00a0being 44\u201316", "context": "CREATE TABLE table_13665809_2 (byu_uu_score VARCHAR, uu_usu_score VARCHAR)"}, {"answer": "SELECT language_s_ FROM table_13700749_1 WHERE film_title = \"Tsotsi\"", "question": "What are all the languages for tsotsi?", "context": "CREATE TABLE table_13700749_1 (language_s_ VARCHAR, film_title VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_13700749_1 WHERE film_title = \"Tsotsi\"", "question": "What year featured the film tsotsi?", "context": "CREATE TABLE table_13700749_1 (year__ceremony_ VARCHAR, film_title VARCHAR)"}, {"answer": "SELECT result FROM table_13700749_1 WHERE film_title = \"Life, Above All\"", "question": "What was the result for the film life, above all?", "context": "CREATE TABLE table_13700749_1 (result VARCHAR, film_title VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_13758243_1 WHERE player = \"Jerry Hill\"", "question": "What numer pick in the draft for jerry hill?", "context": "CREATE TABLE table_13758243_1 (overall VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_13758243_1 WHERE position = \"Kicker\"", "question": "What kicker was drafted?", "context": "CREATE TABLE table_13758243_1 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_13758243_1 WHERE player = \"Steve Scifres\"", "question": "What team drafted steve scifres?", "context": "CREATE TABLE table_13758243_1 (nfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(draft_year) FROM table_13758243_1 WHERE player = \"Jerry Marion\"", "question": "What year was jerry marion drafted?", "context": "CREATE TABLE table_13758243_1 (draft_year INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_13758243_1 WHERE player = \"Jerry Marion\"", "question": "What numer pick in the draft for jerry marion", "context": "CREATE TABLE table_13758243_1 (overall INTEGER, player VARCHAR)"}, {"answer": "SELECT record FROM table_13762472_4 WHERE high_points = \"Dwyane Wade (27)\" AND location_attendance = \"ARCO Arena\"", "question": "what's the\u00a0record\u00a0with\u00a0high points\u00a0being dwyane wade (27) and\u00a0location attendance\u00a0being arco arena", "context": "CREATE TABLE table_13762472_4 (record VARCHAR, high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_13762472_4 WHERE record = \"15-11\"", "question": " how many\u00a0high assists with\u00a0record\u00a0being 15-11", "context": "CREATE TABLE table_13762472_4 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_13762472_4 WHERE date = \"December 3\"", "question": "who had high points on december 3", "context": "CREATE TABLE table_13762472_4 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_13762472_4 WHERE score = \"W 111\u201392 (OT)\"", "question": "who had high rebounds when score is w 111\u201392 (ot)", "context": "CREATE TABLE table_13762472_4 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_13762472_4 WHERE high_assists = \"Dwyane Wade (9)\"", "question": "who had all the high rebounds when high assists is by dwyane wade (9)", "context": "CREATE TABLE table_13762472_4 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT record FROM table_13762472_4 WHERE date = \"December 29\"", "question": "what's the\u00a0record\u00a0with\u00a0date\u00a0being december 29", "context": "CREATE TABLE table_13762472_4 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(2002 AS _population) FROM table_13764346_1", "question": "What is the smallest population recorded back in 2002?", "context": "CREATE TABLE table_13764346_1 (Id VARCHAR)"}, {"answer": "SELECT position FROM table_13805432_2 WHERE artist = \"Jim Reeves\"", "question": "what's the\u00a0position\u00a0with\u00a0artbeingt\u00a0being jim reeves", "context": "CREATE TABLE table_13805432_2 (position VARCHAR, artist VARCHAR)"}, {"answer": "SELECT highest_position FROM table_13805432_2 WHERE artist = \"Frankie Avalon\"", "question": "what's the\u00a0highest position\u00a0with\u00a0artbeingt\u00a0being frankie avalon", "context": "CREATE TABLE table_13805432_2 (highest_position VARCHAR, artist VARCHAR)"}, {"answer": "SELECT song_title FROM table_13805432_2 WHERE artist = \"Pat Boone\"", "question": "what's the\u00a0song title\u00a0with\u00a0artbeingt\u00a0being pat boone", "context": "CREATE TABLE table_13805432_2 (song_title VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MIN(highest_position) FROM table_13805432_2 WHERE artist = \"Paul Evans\"", "question": "what is the minimum\u00a0highest position\u00a0with\u00a0artbeingt\u00a0being paul evans", "context": "CREATE TABLE table_13805432_2 (highest_position INTEGER, artist VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_13812785_5 WHERE date = \"December 22\"", "question": "Who was responsible and what was the number for the high rebounds on December 22?", "context": "CREATE TABLE table_13812785_5 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_13812785_8 WHERE score = \"W 102\u201381 (OT)\"", "question": "What is the record where the score is w 102\u201381 (ot)?", "context": "CREATE TABLE table_13812785_8 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_points FROM table_13812785_8 WHERE date = \"March 13\"", "question": "Who had the high points dated march 13?", "context": "CREATE TABLE table_13812785_8 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_13812785_8 WHERE high_rebounds = \"Charles Oakley (9)\"", "question": "Who had the most high points and rebounds than charles oakley (9)?", "context": "CREATE TABLE table_13812785_8 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT incumbent FROM table_13833770_3 WHERE opponent = \"Anthony Weiner (D) unopposed\"", "question": "who is the the\u00a0incumbent\u00a0with\u00a0opponent\u00a0being anthony weiner (d) unopposed", "context": "CREATE TABLE table_13833770_3 (incumbent VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_13833770_3 WHERE opponent = \"Peter King (R) 56.0% David Mejias (D) 44.0%\"", "question": "who is the the\u00a0incumbent\u00a0with\u00a0opponent\u00a0being peter king (r) 56.0% david mejias (d) 44.0%", "context": "CREATE TABLE table_13833770_3 (incumbent VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT district FROM table_13833770_3 WHERE party = \"Republican\" AND elected = 1998", "question": "what's the\u00a0district with\u00a0party\u00a0being republican and\u00a0elected\u00a0being 1998", "context": "CREATE TABLE table_13833770_3 (district VARCHAR, party VARCHAR, elected VARCHAR)"}, {"answer": "SELECT MIN(district) FROM table_13833770_3 WHERE incumbent = \"Tom Reynolds\"", "question": "what is the minimum\u00a0district with\u00a0incumbent\u00a0being tom reynolds", "context": "CREATE TABLE table_13833770_3 (district INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT status FROM table_13833770_3 WHERE incumbent = \"Eliot Engel\"", "question": "what's the\u00a0status\u00a0with\u00a0incumbent\u00a0being eliot engel", "context": "CREATE TABLE table_13833770_3 (status VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(womens_doubles) FROM table_13845918_3 WHERE year = \"1986\"", "question": "Name the number of women's doubles for 1986", "context": "CREATE TABLE table_13845918_3 (womens_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(elected) FROM table_13870048_3 WHERE incumbent = \"Gregory W. Meeks\"", "question": "what was the lowest numbers for the winner gregory w. meeks", "context": "CREATE TABLE table_13870048_3 (elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT frequency FROM table_13869651_3 WHERE part_number_s_ = \"ADO520BIAA5DO\"", "question": "What is the frequency of the model whose part number is ado520biaa5do? ", "context": "CREATE TABLE table_13869651_3 (frequency VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT release_date FROM table_13869651_3 WHERE part_number_s_ = \"ADH485BIAA5DO\"", "question": "When's the release date of the model with part number adh485biaa5do? ", "context": "CREATE TABLE table_13869651_3 (release_date VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT ht FROM table_13869651_3 WHERE model_number = \"Athlon X2 5200B\"", "question": "What is the HT value of threw Athlon x2 5200b model? ", "context": "CREATE TABLE table_13869651_3 (ht VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT COUNT(frequency) FROM table_13869651_3 WHERE part_number_s_ = \"ADO540BIAA5DO\"", "question": "How many different frequencies does the model with part number ado540biaa5do? ", "context": "CREATE TABLE table_13869651_3 (frequency VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT MIN(total_population) FROM table_1389609_3 WHERE region = \"Southeast Asia\"", "question": "What is the entire inhabitants in Southeast Asia?", "context": "CREATE TABLE table_1389609_3 (total_population INTEGER, region VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_14003020_5 WHERE highest = 2363", "question": "what is the minimum\u00a0average\u00a0with\u00a0highest\u00a0being 2363", "context": "CREATE TABLE table_14003020_5 (average INTEGER, highest VARCHAR)"}, {"answer": "SELECT MIN(lowest) FROM table_14003020_5 WHERE highest = 2363", "question": "what is the minimum\u00a0lowest\u00a0with\u00a0highest\u00a0being 2363", "context": "CREATE TABLE table_14003020_5 (lowest INTEGER, highest VARCHAR)"}, {"answer": "SELECT team FROM table_14003020_5 WHERE stadium = \"Glebe Park\"", "question": "what's the\u00a0team\u00a0with\u00a0stadium\u00a0being glebe park", "context": "CREATE TABLE table_14003020_5 (team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT production_code FROM table_14035132_3 WHERE no_in_series = \"37b\"", "question": "What's the production code of the episode with a series number 37b? ", "context": "CREATE TABLE table_14035132_3 (production_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_14035132_3 WHERE storyboarded_by = \"William Reiss\" AND no_in_series = \"31\"", "question": "On what date did the episode with a series number 31, with a story written by William Reiss, air for the first time? ", "context": "CREATE TABLE table_14035132_3 (original_air_date VARCHAR, storyboarded_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_14035132_3 WHERE no_in_season = \"10b\"", "question": "When did the episode with season number 10b air for the first time? ", "context": "CREATE TABLE table_14035132_3 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_14035132_3 WHERE no_in_series = \"29a\"", "question": "When did the episode with series number 29a originally air? ", "context": "CREATE TABLE table_14035132_3 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_14035132_3 WHERE written_by = \"Darrick Bachman and Brett Varon\"", "question": "How many episodes have been directed and written by Darrick Bachman and Brett Varon? ", "context": "CREATE TABLE table_14035132_3 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT density FROM table_140297_1 WHERE principal_town = \"Brighton\"", "question": "What is the population density in the Brighton area?", "context": "CREATE TABLE table_140297_1 (density VARCHAR, principal_town VARCHAR)"}, {"answer": "SELECT population_2011_census FROM table_140297_1 WHERE local_government_area = \"Sorell\"", "question": "How many people live in the area of Sorell according to the Census of 2011?", "context": "CREATE TABLE table_140297_1 (population_2011_census VARCHAR, local_government_area VARCHAR)"}, {"answer": "SELECT COUNT(area__km_2__) FROM table_1404486_1 WHERE county = \"Marsabit\"", "question": "what is the number of area where the county is marsabit?", "context": "CREATE TABLE table_1404486_1 (area__km_2__ VARCHAR, county VARCHAR)"}, {"answer": "SELECT code FROM table_1404486_1 WHERE population_census_2009 = 1356301", "question": "what is the code of population census 2009 is 1356301?", "context": "CREATE TABLE table_1404486_1 (code VARCHAR, population_census_2009 VARCHAR)"}, {"answer": "SELECT COUNT(tries_against) FROM table_14070062_3 WHERE points_against = \"396\"", "question": "What's the tries against count of the team with 396 points against? ", "context": "CREATE TABLE table_14070062_3 (tries_against VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points FROM table_14070062_3 WHERE try_bonus = \"10\"", "question": "How many points does the club with a try bonus of 10 have? ", "context": "CREATE TABLE table_14070062_3 (points VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT tries_for FROM table_14070062_3 WHERE points = \"70\"", "question": "What's the tries for count for the team with 70 points? ", "context": "CREATE TABLE table_14070062_3 (tries_for VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(club) FROM table_14070062_3 WHERE try_bonus = \"5\"", "question": "How many clubs have a try bonus value of 5?", "context": "CREATE TABLE table_14070062_3 (club VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_14070062_3 WHERE won = \"9\"", "question": "What's the losing bonus count for the club with 9 won games? ", "context": "CREATE TABLE table_14070062_3 (losing_bonus VARCHAR, won VARCHAR)"}, {"answer": "SELECT tries_for FROM table_14070062_3 WHERE club = \"Pontardawe RFC\"", "question": "How many tries for does Pontardawe RFC have? ", "context": "CREATE TABLE table_14070062_3 (tries_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(home_losses) FROM table_1409106_2 WHERE pf = 13", "question": "How many home losses occured when PF 13?", "context": "CREATE TABLE table_1409106_2 (home_losses VARCHAR, pf VARCHAR)"}, {"answer": "SELECT copies_per_particle FROM table_140968_1 WHERE location = \"Forms inner shell of the core\"", "question": "How many copoes per particle are created in the segment that forms inner shell of the core?", "context": "CREATE TABLE table_140968_1 (copies_per_particle VARCHAR, location VARCHAR)"}, {"answer": "SELECT copies_per_particle FROM table_140968_1 WHERE function = \"Enterotoxin\"", "question": "How many copies per particle are created by the enterotoxin?", "context": "CREATE TABLE table_140968_1 (copies_per_particle VARCHAR, function VARCHAR)"}, {"answer": "SELECT COUNT(size___s_base_pair__) FROM table_140968_1 WHERE molecular_weight_kda = \"102\"", "question": "How many base pairs are there if the molecular weight is 102?", "context": "CREATE TABLE table_140968_1 (size___s_base_pair__ VARCHAR, molecular_weight_kda VARCHAR)"}, {"answer": "SELECT COUNT(copies_per_particle) FROM table_140968_1 WHERE size___s_base_pair__ = 1059", "question": "How many copies per particle are there for the base pair that is size 1059?", "context": "CREATE TABLE table_140968_1 (copies_per_particle VARCHAR, size___s_base_pair__ VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_14102379_4 WHERE stadium = \"Cotton Bowl\"", "question": "what is the minimum\u00a0attendance\u00a0with\u00a0stadium\u00a0being cotton bowl", "context": "CREATE TABLE table_14102379_4 (attendance INTEGER, stadium VARCHAR)"}, {"answer": "SELECT opponent FROM table_14102379_4 WHERE stadium = \"Jeppesen stadium\"", "question": "what's the\u00a0opponent\u00a0with\u00a0stadium\u00a0being jeppesen stadium", "context": "CREATE TABLE table_14102379_4 (opponent VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT stadium FROM table_14102379_4 WHERE record = \"1\u20131\"", "question": "what's the\u00a0stadium\u00a0with\u00a0record\u00a0being 1\u20131", "context": "CREATE TABLE table_14102379_4 (stadium VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_14102379_4 WHERE stadium = \"Cotton Bowl\"", "question": " how many\u00a0attendance\u00a0with\u00a0stadium\u00a0being cotton bowl", "context": "CREATE TABLE table_14102379_4 (attendance VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT result FROM table_14102379_4 WHERE opponent = \"at Oakland Raiders\"", "question": "what's the\u00a0result\u00a0with\u00a0opponent\u00a0being at oakland raiders", "context": "CREATE TABLE table_14102379_4 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_14102379_4 WHERE record = \"4\u20136\"", "question": "what is the minimum\u00a0attendance\u00a0with\u00a0record\u00a0being 4\u20136", "context": "CREATE TABLE table_14102379_4 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT number FROM table_14125006_1 WHERE astronaut = \"Yurchikhin Fyodor Yurchikhin\"", "question": "What's Yurchikhin Fyodor Yurchikhin's number? ", "context": "CREATE TABLE table_14125006_1 (number VARCHAR, astronaut VARCHAR)"}, {"answer": "SELECT total_time_hours AS :minutes FROM table_14125006_1 WHERE number = 17", "question": "How long was the walk numbered at 17?", "context": "CREATE TABLE table_14125006_1 (total_time_hours VARCHAR, number VARCHAR)"}, {"answer": "SELECT COUNT(agency) FROM table_14125006_1 WHERE astronaut = \"Budarin Nikolai Budarin\"", "question": "How many agencies did Budarin Nikolai Budarin working for? ", "context": "CREATE TABLE table_14125006_1 (agency VARCHAR, astronaut VARCHAR)"}, {"answer": "SELECT agency FROM table_14125006_1 WHERE astronaut = \"Anderson Clayton Anderson\"", "question": "What agency does Anderson Clayton Anderson work for? ", "context": "CREATE TABLE table_14125006_1 (agency VARCHAR, astronaut VARCHAR)"}, {"answer": "SELECT year FROM table_141541_5 WHERE change = \"+8.0%\"", "question": "what's the\u00a0year\u00a0with\u00a0change\u00a0being +8.0%", "context": "CREATE TABLE table_141541_5 (year VARCHAR, change VARCHAR)"}, {"answer": "SELECT domestic_freight FROM table_141541_5 WHERE change = \"+8.0%\"", "question": "what's the\u00a0domestic freight\u00a0with\u00a0change\u00a0being +8.0%", "context": "CREATE TABLE table_141541_5 (domestic_freight VARCHAR, change VARCHAR)"}, {"answer": "SELECT MAX(international_mail) FROM table_141541_5 WHERE total_freight_and_mail = 145044", "question": "what is the maximum\u00a0international mail\u00a0with\u00a0total freight and mail\u00a0being 145044", "context": "CREATE TABLE table_141541_5 (international_mail INTEGER, total_freight_and_mail VARCHAR)"}, {"answer": "SELECT results FROM table_14154271_2 WHERE gt2_winning_team = \"Lars-Erik Nielsen Allan Simonsen Richard Westbrook\"", "question": "The results for gt2 winning team is all lars-erik nielsen allan simonsen richard westbrook. ", "context": "CREATE TABLE table_14154271_2 (results VARCHAR, gt2_winning_team VARCHAR)"}, {"answer": "SELECT rnd FROM table_14154271_2 WHERE lmp2_winning_team = \"Jos Verstappen Jeroen Bleekemolen\"", "question": "Jos verstappen jeroen bleekemolen is on Imp2 winning team where all are rnd.", "context": "CREATE TABLE table_14154271_2 (rnd VARCHAR, lmp2_winning_team VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_1417184_1 WHERE canton = \"Redange\"", "question": "what is the minimum\u00a0population\u00a0with\u00a0canton\u00a0being redange", "context": "CREATE TABLE table_1417184_1 (population INTEGER, canton VARCHAR)"}, {"answer": "SELECT COUNT(canton) FROM table_1417184_1 WHERE commune = \"Waldbillig\"", "question": " how many\u00a0canton\u00a0with\u00a0commune\u00a0being waldbillig", "context": "CREATE TABLE table_1417184_1 (canton VARCHAR, commune VARCHAR)"}, {"answer": "SELECT MAX(arrival) FROM table_142159_1 WHERE name = \"Greenbat\"", "question": "What is the arrival time of greenbat", "context": "CREATE TABLE table_142159_1 (arrival INTEGER, name VARCHAR)"}, {"answer": "SELECT no FROM table_142159_1 WHERE location = \"Engine shed\"", "question": "Which number has Engine Shed as the location", "context": "CREATE TABLE table_142159_1 (no VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_142159_1 WHERE builder = \"Kerr Stuart\"", "question": "What is the name with the builder of Kerr Stuart", "context": "CREATE TABLE table_142159_1 (name VARCHAR, builder VARCHAR)"}, {"answer": "SELECT builder FROM table_142159_1 WHERE location = \"Irton Road shed\"", "question": "Who is the builder for the location Irton Road shed", "context": "CREATE TABLE table_142159_1 (builder VARCHAR, location VARCHAR)"}, {"answer": "SELECT status FROM table_142159_1 WHERE location = \"Museum\"", "question": "Whats the status of the trains at location Museum", "context": "CREATE TABLE table_142159_1 (status VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(built) FROM table_142159_1 WHERE name = \"River Esk\"", "question": "How many are named River Esk", "context": "CREATE TABLE table_142159_1 (built VARCHAR, name VARCHAR)"}, {"answer": "SELECT publication_dates FROM table_1420954_1 WHERE artist_s_ = \"Timothy Truman\"", "question": "timothy truman worked on what dates", "context": "CREATE TABLE table_1420954_1 (publication_dates VARCHAR, artist_s_ VARCHAR)"}, {"answer": "SELECT book_title FROM table_1420954_1 WHERE artist_s_ = \"Timothy Truman\"", "question": "timothy truman worked on what books", "context": "CREATE TABLE table_1420954_1 (book_title VARCHAR, artist_s_ VARCHAR)"}, {"answer": "SELECT COUNT(issues) FROM table_1420954_1 WHERE writer = \"Elaine Lee\"", "question": "elaine lee worked on how many issues", "context": "CREATE TABLE table_1420954_1 (issues VARCHAR, writer VARCHAR)"}, {"answer": "SELECT regionalliga_nord FROM table_14242137_11 WHERE regionalliga_s\u00fcd = \"1. FC Nuremberg SpVgg Greuther F\u00fcrth\"", "question": "what's the\u00a0regionalliga nord\u00a0with\u00a0regionalliga s\u00fcd\u00a0being 1. fc nuremberg spvgg greuther f\u00fcrth", "context": "CREATE TABLE table_14242137_11 (regionalliga_nord VARCHAR, regionalliga_s\u00fcd VARCHAR)"}, {"answer": "SELECT season FROM table_14242137_11 WHERE regionalliga_nord = \"VfB Oldenburg\"", "question": "what's the\u00a0season\u00a0with\u00a0regionalliga nord\u00a0being vfb oldenburg", "context": "CREATE TABLE table_14242137_11 (season VARCHAR, regionalliga_nord VARCHAR)"}, {"answer": "SELECT regionalliga_nord FROM table_14242137_11 WHERE regionalliga_west_s\u00fcdwest = \"FC G\u00fctersloh Rot-Wei\u00df Essen\"", "question": "what's the\u00a0regionalliga nord\u00a0with\u00a0regionalliga west/s\u00fcdwest\u00a0being fc g\u00fctersloh rot-wei\u00df essen", "context": "CREATE TABLE table_14242137_11 (regionalliga_nord VARCHAR, regionalliga_west_s\u00fcdwest VARCHAR)"}, {"answer": "SELECT season FROM table_14242137_11 WHERE regionalliga_west_s\u00fcdwest = \"Arminia Bielefeld\"", "question": "what's the\u00a0season\u00a0with\u00a0regionalliga west/s\u00fcdwest\u00a0being arminia bielefeld", "context": "CREATE TABLE table_14242137_11 (season VARCHAR, regionalliga_west_s\u00fcdwest VARCHAR)"}, {"answer": "SELECT regionalliga_west_s\u00fcdwest FROM table_14242137_11 WHERE regionalliga_s\u00fcd = \"Stuttgarter Kickers\"", "question": "what's the\u00a0regionalliga west/s\u00fcdwest\u00a0with\u00a0regionalliga s\u00fcd\u00a0being stuttgarter kickers", "context": "CREATE TABLE table_14242137_11 (regionalliga_west_s\u00fcdwest VARCHAR, regionalliga_s\u00fcd VARCHAR)"}, {"answer": "SELECT COUNT(population__2010___rank_) FROM table_14253123_1 WHERE county_name = \"Spencer\"", "question": "When Spencer is the county  what is total of the population (2010) (rank)? ", "context": "CREATE TABLE table_14253123_1 (population__2010___rank_ VARCHAR, county_name VARCHAR)"}, {"answer": "SELECT area_sq_mi__km_2____rank_ FROM table_14253123_1 WHERE county_seat = \"Vincennes\"", "question": "When Vincennes is the county seat what is the area sq mi (km 2 ) (rank) ?", "context": "CREATE TABLE table_14253123_1 (area_sq_mi__km_2____rank_ VARCHAR, county_seat VARCHAR)"}, {"answer": "SELECT population__2010___rank_ FROM table_14253123_1 WHERE area_sq_mi__km_2____rank_ = \"sqmi (km2) (5)\"", "question": "When the  area sq mi (km 2 ) (rank) is sqmi (km2) (5) what is the  population (2010) (rank)?", "context": "CREATE TABLE table_14253123_1 (population__2010___rank_ VARCHAR, area_sq_mi__km_2____rank_ VARCHAR)"}, {"answer": "SELECT COUNT(zip_code_prefix_es_) FROM table_14253123_1 WHERE _percentage_of_boundary_by_water = \"63%\"", "question": "When the % of boundary by water is 63% what is the overall number of zip code prefix(es)?", "context": "CREATE TABLE table_14253123_1 (zip_code_prefix_es_ VARCHAR, _percentage_of_boundary_by_water VARCHAR)"}, {"answer": "SELECT in_no FROM table_14253123_1 WHERE county_name = \"Spencer\"", "question": "When Spencer is the county what is the  in no.?", "context": "CREATE TABLE table_14253123_1 (in_no VARCHAR, county_name VARCHAR)"}, {"answer": "SELECT oberliga_hessen FROM table_14242137_4 WHERE oberliga_baden_w\u00fcrttemberg = \"SV Sandhausen\" AND oberliga_s\u00fcdwest = \"FSV Salmrohr\"", "question": "Name the oberliga hessen for sv sandhausen and fsv salmrohr", "context": "CREATE TABLE table_14242137_4 (oberliga_hessen VARCHAR, oberliga_baden_w\u00fcrttemberg VARCHAR, oberliga_s\u00fcdwest VARCHAR)"}, {"answer": "SELECT oberliga_baden_w\u00fcrttemberg FROM table_14242137_4 WHERE oberliga_bayern = \"TSV 1860 Munich\" AND oberliga_s\u00fcdwest = \"Borussia Neunkirchen\"", "question": "Name the oberliga for where tsv 1860 munich and borussia neunkirchen", "context": "CREATE TABLE table_14242137_4 (oberliga_baden_w\u00fcrttemberg VARCHAR, oberliga_bayern VARCHAR, oberliga_s\u00fcdwest VARCHAR)"}, {"answer": "SELECT oberliga_s\u00fcdwest FROM table_14242137_4 WHERE oberliga_bayern = \"SpVgg Unterhaching\" AND season = \"1988-89\"", "question": "Name the oberliga sudwest for spvgg unterhaching for 1988-89", "context": "CREATE TABLE table_14242137_4 (oberliga_s\u00fcdwest VARCHAR, oberliga_bayern VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_14242137_4 WHERE oberliga_bayern = \"SpVgg Bayreuth\" AND oberliga_s\u00fcdwest = \"FSV Salmrohr\"", "question": "Name the season for spvgg bayreuth and fsv salmrohr", "context": "CREATE TABLE table_14242137_4 (season VARCHAR, oberliga_bayern VARCHAR, oberliga_s\u00fcdwest VARCHAR)"}, {"answer": "SELECT oberliga_bayern FROM table_14242137_4 WHERE oberliga_baden_w\u00fcrttemberg = \"SV Sandhausen\" AND season = \"1986-87\"", "question": "Name the oberliga bayern for sv sandhausen for 1986-87", "context": "CREATE TABLE table_14242137_4 (oberliga_bayern VARCHAR, oberliga_baden_w\u00fcrttemberg VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(blackberry_os) FROM table_14260687_3 WHERE other = \"0.1\" AND quarter = \"2012 Q2\"", "question": "During the quarter of 2012 Q2, how many millions of Blackberry OS phones where shipped when 0.1 million others were shipped?", "context": "CREATE TABLE table_14260687_3 (blackberry_os VARCHAR, other VARCHAR, quarter VARCHAR)"}, {"answer": "SELECT COUNT(android) FROM table_14260687_3 WHERE quarter = \"2012 Q4\"", "question": "During the quarter 2012 Q4, how many millions of android phones were shipped?", "context": "CREATE TABLE table_14260687_3 (android VARCHAR, quarter VARCHAR)"}, {"answer": "SELECT windows_phone FROM table_14260687_3 WHERE total = \"216.2\"", "question": "How many million of windows phones were shipped during the quarter that shipped 216.2 million total?", "context": "CREATE TABLE table_14260687_3 (windows_phone VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_14260687_3 WHERE quarter = \"2012 Q1\"", "question": "How many total smartphones were shipped during the quarter 2012 Q1?", "context": "CREATE TABLE table_14260687_3 (total VARCHAR, quarter VARCHAR)"}, {"answer": "SELECT blackberry_os FROM table_14260687_3 WHERE symbian = \"10.4\"", "question": "How many millions of Blackberry OS smartphones were shipped when 10.4 million Symbian smartphones were shipped?", "context": "CREATE TABLE table_14260687_3 (blackberry_os VARCHAR, symbian VARCHAR)"}, {"answer": "SELECT COUNT(other) FROM table_14260687_3 WHERE total = \"181.1\"", "question": "How man \"other\" millions of smartphones were shipped when 181.1 million total were shipped?", "context": "CREATE TABLE table_14260687_3 (other VARCHAR, total VARCHAR)"}, {"answer": "SELECT load_bearing_capacity FROM table_1427868_1 WHERE scientific_name = \"Camelus dromedarius\"", "question": "What is the load bearing capacity when the name is Camelus Dromedarius", "context": "CREATE TABLE table_1427868_1 (load_bearing_capacity VARCHAR, scientific_name VARCHAR)"}, {"answer": "SELECT division FROM table_1427998_1 WHERE year = 2006", "question": "What is the division for the year 2006?", "context": "CREATE TABLE table_1427998_1 (division VARCHAR, year VARCHAR)"}, {"answer": "SELECT playoffs FROM table_1427998_1 WHERE team_name = \"Bay Area Seals\"", "question": "What was the playoff result for the team name of bay area seals", "context": "CREATE TABLE table_1427998_1 (playoffs VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT regular_season FROM table_1427998_1 WHERE playoffs = \"divisional Finals\"", "question": "Where did the team finish in the season when the playoff result was divisional finals.", "context": "CREATE TABLE table_1427998_1 (regular_season VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT playoffs FROM table_1427998_1 WHERE league = \"USISL\" AND regular_season = \"1st, Pacific\"", "question": "What is the playoff result when the league is USISL and the regular season record is 1st, pacific.", "context": "CREATE TABLE table_1427998_1 (playoffs VARCHAR, league VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_1427998_1 WHERE playoffs = \"Conference Quarterfinals\"", "question": "How many divisions have been won when the playoff result is conference quarterfinals.", "context": "CREATE TABLE table_1427998_1 (division VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT MIN(home_attendance) FROM table_14302582_1 WHERE competition = \"Southern Derby\"", "question": "What was the lowest home attendance for the southern derby?", "context": "CREATE TABLE table_14302582_1 (home_attendance INTEGER, competition VARCHAR)"}, {"answer": "SELECT result FROM table_14302582_1 WHERE home_matches = 14", "question": "What was the result when the team had contested 14 home games?", "context": "CREATE TABLE table_14302582_1 (result VARCHAR, home_matches VARCHAR)"}, {"answer": "SELECT result FROM table_14302582_1 WHERE record = \"4-1\"", "question": "What was the result when the team was 4-1?", "context": "CREATE TABLE table_14302582_1 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT height_from_sea_level_in_meters FROM table_1430913_1 WHERE category = \"Picturesque and trekking_route\"", "question": "picturesque and trekking route is the category what is the height from sea level in meters?", "context": "CREATE TABLE table_1430913_1 (height_from_sea_level_in_meters VARCHAR, category VARCHAR)"}, {"answer": "SELECT height_from_sea_level_in_meters FROM table_1430913_1 WHERE category = \"Extremely Adventures\"", "question": "If extremely adventures is the category what is the height from sea level in meters?", "context": "CREATE TABLE table_1430913_1 (height_from_sea_level_in_meters VARCHAR, category VARCHAR)"}, {"answer": "SELECT height_from_sea_level_in_meters FROM table_1430913_1 WHERE trekking_route = \"22km\"", "question": "if 22km is the trekking route what is  height from sea level in meters?", "context": "CREATE TABLE table_1430913_1 (height_from_sea_level_in_meters VARCHAR, trekking_route VARCHAR)"}, {"answer": "SELECT category FROM table_1430913_1 WHERE name_of_place = \"Hemkunt Sahib\"", "question": "If the place is hemkunt sahib what is the category?", "context": "CREATE TABLE table_1430913_1 (category VARCHAR, name_of_place VARCHAR)"}, {"answer": "SELECT density__pop_km\u00b2_ FROM table_14325808_1 WHERE population__2011_census_ = 5402", "question": "What is the density in places where the 2011 census gives a population of 5402?", "context": "CREATE TABLE table_14325808_1 (density__pop_km\u00b2_ VARCHAR, population__2011_census_ VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_14325808_1 WHERE density__pop_km\u00b2_ = \"137.61\"", "question": "What is the area in kilometers squared the population density is 137.61?", "context": "CREATE TABLE table_14325808_1 (area__km\u00b2_ VARCHAR, density__pop_km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_census_) FROM table_14325808_1 WHERE area__km\u00b2_ = \"132.79\"", "question": "How many places according to the 2011 census of whatever population have an area of 132.79 kilometers squared?", "context": "CREATE TABLE table_14325808_1 (population__2011_census_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(area__km\u00b2_) FROM table_14325808_1 WHERE population__2007_estimation_ = 7996", "question": "How many places of whatever size have a 2007 population estimation of 7996?", "context": "CREATE TABLE table_14325808_1 (area__km\u00b2_ VARCHAR, population__2007_estimation_ VARCHAR)"}, {"answer": "SELECT 3 AS \u2019utr_sequence FROM table_14332822_1 WHERE genbank_id = \"HQ021437\"", "question": "What is the 3utr sequence when the genbank id is hq021437? ", "context": "CREATE TABLE table_14332822_1 (genbank_id VARCHAR)"}, {"answer": "SELECT coding FROM table_14332822_1 WHERE genbank_id = \"HQ021442\"", "question": "What is the coding for hq021442 genbankid?", "context": "CREATE TABLE table_14332822_1 (coding VARCHAR, genbank_id VARCHAR)"}, {"answer": "SELECT 3 AS \u2019utr_sequence FROM table_14332822_1 WHERE variant_id = \"AD'6A 4\"", "question": "What is the 3'utr sequence with a variant id of ad'6a 4?", "context": "CREATE TABLE table_14332822_1 (variant_id VARCHAR)"}, {"answer": "SELECT 3 AS \u2019utr_sequence FROM table_14332822_1 WHERE variant_id = \"ACD'6A 3\"", "question": "What is the 3'utr sequence with a variant id of acd'6a 3?", "context": "CREATE TABLE table_14332822_1 (variant_id VARCHAR)"}, {"answer": "SELECT director FROM table_14330096_3 WHERE total_number = 14", "question": "Who is the director of the episode that corresponds to the total episodes number 14? ", "context": "CREATE TABLE table_14330096_3 (director VARCHAR, total_number VARCHAR)"}, {"answer": "SELECT title FROM table_14330096_3 WHERE writer = \"Rob Heyland\"", "question": "What's the title of the episode that Rob Heyland wrote? ", "context": "CREATE TABLE table_14330096_3 (title VARCHAR, writer VARCHAR)"}, {"answer": "SELECT series_number FROM table_14330096_3 WHERE writer = \"Julian Unthank\"", "question": "What number from the total number of episodes is the episode written by Julian Unthank?", "context": "CREATE TABLE table_14330096_3 (series_number VARCHAR, writer VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_14342210_12 WHERE player = \"Redden\"", "question": "How many touchdowns did Redden score?", "context": "CREATE TABLE table_14342210_12 (touchdowns INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(extra_points) FROM table_14342210_12", "question": "What was the most extra points?", "context": "CREATE TABLE table_14342210_12 (extra_points INTEGER)"}, {"answer": "SELECT position FROM table_14342210_12 WHERE extra_points = 4", "question": "What position did the player who scored 4 extra points play?", "context": "CREATE TABLE table_14342210_12 (position VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_14342210_12 WHERE position = \"Right end\"", "question": "How many points where scored by the right end?", "context": "CREATE TABLE table_14342210_12 (points VARCHAR, position VARCHAR)"}, {"answer": "SELECT games_started FROM table_14342210_13 WHERE player = \"Hugh White\"", "question": "How many Games Started are there for Hugh White ?", "context": "CREATE TABLE table_14342210_13 (games_started VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(class) FROM table_14342210_13 WHERE player = \"Everett Sweeley\"", "question": "How many entries are there for Class for the player Everett Sweeley?", "context": "CREATE TABLE table_14342210_13 (class VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(class) FROM table_14342210_13 WHERE prior_experience = \"Shasta H.S.\"", "question": "How many entries are there for class when the prior experience is shasta h.s.", "context": "CREATE TABLE table_14342210_13 (class VARCHAR, prior_experience VARCHAR)"}, {"answer": "SELECT MAX(weight) FROM table_14342210_13 WHERE player = \"Hugh White\"", "question": "What is hugh white's weight?", "context": "CREATE TABLE table_14342210_13 (weight INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(field_goals__5_points_) FROM table_14342210_14 WHERE player = \"Walter Shaw\"", "question": "How many field goals did Walter Shaw make?", "context": "CREATE TABLE table_14342210_14 (field_goals__5_points_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(field_goals__5_points_) FROM table_14342210_14 WHERE total_points = 100", "question": "How many field goals were made by the person with 100 points in total?", "context": "CREATE TABLE table_14342210_14 (field_goals__5_points_ INTEGER, total_points VARCHAR)"}, {"answer": "SELECT COUNT(touchdowns__5_points_) FROM table_14342210_14 WHERE extra_points_1_point = 7", "question": "How many touchdowns were made by the person with 7 extra points?", "context": "CREATE TABLE table_14342210_14 (touchdowns__5_points_ VARCHAR, extra_points_1_point VARCHAR)"}, {"answer": "SELECT touchdowns__5_points_ FROM table_14342210_14 WHERE player = \"Albert Herrnstein\"", "question": "How many touchdowns did Albert Herrnstein make?", "context": "CREATE TABLE table_14342210_14 (touchdowns__5_points_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(touchdowns__5_points_) FROM table_14342210_14 WHERE player = \"Bruce Shorts\"", "question": "How many touchdowns did Bruce Shorts make?", "context": "CREATE TABLE table_14342210_14 (touchdowns__5_points_ INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_14342210_14 WHERE touchdowns__5_points_ = 4", "question": "How many players made 4 touchdowns?", "context": "CREATE TABLE table_14342210_14 (player VARCHAR, touchdowns__5_points_ VARCHAR)"}, {"answer": "SELECT player FROM table_14342210_2 WHERE position = \"Fullback\"", "question": "Name all the players for fullback", "context": "CREATE TABLE table_14342210_2 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_14342210_2 WHERE player = \"Shorts\"", "question": "Name the position for shorts", "context": "CREATE TABLE table_14342210_2 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_14342210_6 WHERE touchdowns = 4 AND position = \"Left halfback\"", "question": "Which player made 4 touchdowns while playing left halfback?", "context": "CREATE TABLE table_14342210_6 (player VARCHAR, touchdowns VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_14342210_6 WHERE position = \"Left end\"", "question": "Which left end player made the most points?", "context": "CREATE TABLE table_14342210_6 (points INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_14342210_6 WHERE player = \"Herrnstein\"", "question": "What is the least amount of points made by Herrnstein?", "context": "CREATE TABLE table_14342210_6 (points INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(field_goals) FROM table_14342210_6", "question": "What is the least amount of field goals made by a player?", "context": "CREATE TABLE table_14342210_6 (field_goals INTEGER)"}, {"answer": "SELECT position FROM table_14342210_6 WHERE player = \"Redden\"", "question": "Which position did Redden play?", "context": "CREATE TABLE table_14342210_6 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(extra_points) FROM table_14342210_6", "question": "What is the least amount of extra points made in by a player?", "context": "CREATE TABLE table_14342210_6 (extra_points INTEGER)"}, {"answer": "SELECT previous_experience FROM table_14342367_13 WHERE hometown = \"East Jordan, Michigan\"", "question": "What is the previous experience of the player from East Jordan, Michigan?", "context": "CREATE TABLE table_14342367_13 (previous_experience VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT class FROM table_14342367_13 WHERE position = \"Right tackle\"", "question": "What was the class of the player who played right tackle?", "context": "CREATE TABLE table_14342367_13 (class VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_14342367_13 WHERE hometown = \"Sioux City, Iowa\"", "question": "How many players are from Sioux City, Iowa?", "context": "CREATE TABLE table_14342367_13 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_14342367_13 WHERE player = \"George W. Gregory\"", "question": "Where is George W. Gregory from?", "context": "CREATE TABLE table_14342367_13 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT class FROM table_14342367_13 WHERE player = \"George W. Gregory\"", "question": "What was George W. Gregory's class?", "context": "CREATE TABLE table_14342367_13 (class VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_14342367_5", "question": "what is the maximum number of points?", "context": "CREATE TABLE table_14342367_5 (points INTEGER)"}, {"answer": "SELECT starter FROM table_14342367_5 WHERE player = \"Herb Graver\"", "question": "was herb graver a starter?", "context": "CREATE TABLE table_14342367_5 (starter VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_14342480_15 WHERE touchdowns = 14", "question": "Which player scored 14 touchdowns?", "context": "CREATE TABLE table_14342480_15 (player VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_14342480_15 WHERE player = \"Duncan Thompson\"", "question": "How many points did Duncan Thompson score?", "context": "CREATE TABLE table_14342480_15 (points INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(extra_points) FROM table_14342480_15", "question": "What is the highest number of extra points?", "context": "CREATE TABLE table_14342480_15 (extra_points INTEGER)"}, {"answer": "SELECT player FROM table_14342592_5 WHERE position = \"Left tackle\"", "question": "What players played the position of left tackle?", "context": "CREATE TABLE table_14342592_5 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(field_goals) FROM table_14342592_5 WHERE position = \"Right end\"", "question": "How many field goals were made by someone playing position of right end?", "context": "CREATE TABLE table_14342592_5 (field_goals VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_14342592_5 WHERE extra_points = 12", "question": "Which players have made a total of 12 extra points?", "context": "CREATE TABLE table_14342592_5 (player VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT position FROM table_14342592_5 WHERE touchdowns = 4", "question": "Which positions have made 4 touchdowns?", "context": "CREATE TABLE table_14342592_5 (position VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT touchdowns FROM table_14342592_5 WHERE points = 22", "question": "When the total points are 22 how many total touchdowns have been made?", "context": "CREATE TABLE table_14342592_5 (touchdowns VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_14342480_7 WHERE position = \"Right tackle\"", "question": "How many points were scored by someone who's position was right tackle?", "context": "CREATE TABLE table_14342480_7 (points VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_14342480_7", "question": "What is the least amount of touchdowns scored on the chart?", "context": "CREATE TABLE table_14342480_7 (touchdowns INTEGER)"}, {"answer": "SELECT points FROM table_14342480_7 WHERE player = \"Rolla Bigelow\"", "question": "How many points were scored by Rolla Bigelow?", "context": "CREATE TABLE table_14342480_7 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(touchdowns) FROM table_14342480_7 WHERE extra_points > 5.0", "question": "How many touchdowns were scored by players who scored more than 5.0 extra points?", "context": "CREATE TABLE table_14342480_7 (touchdowns VARCHAR, extra_points INTEGER)"}, {"answer": "SELECT MIN(field_goals) FROM table_14342480_7", "question": "What is the lowest amount of field goals on the chart? ", "context": "CREATE TABLE table_14342480_7 (field_goals INTEGER)"}, {"answer": "SELECT MIN(points) FROM table_14342592_4 WHERE player = \"Patrick\"", "question": "Name the least points for patrick", "context": "CREATE TABLE table_14342592_4 (points INTEGER, player VARCHAR)"}, {"answer": "SELECT starter FROM table_14342592_4 WHERE player = \"Schulte\"", "question": "Name the starter for schulte", "context": "CREATE TABLE table_14342592_4 (starter VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_14342592_4 WHERE position = \"Right end\"", "question": "Name the total number of points for the right end", "context": "CREATE TABLE table_14342592_4 (points VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_14342592_4 WHERE starter = \"No\" AND touchdowns = 1 AND position = \"Right halfback\"", "question": "Name the number of players when starter is no and touchdowns is 1 for right halfback", "context": "CREATE TABLE table_14342592_4 (player VARCHAR, position VARCHAR, starter VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_14346689_1 WHERE directed_by = \"Rob Bailey\"", "question": "What was the series number of the episode directed by Rob Bailey?", "context": "CREATE TABLE table_14346689_1 (series__number INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT timeslot FROM table_143554_1 WHERE season = 5", "question": "Name the timeslot for season 5", "context": "CREATE TABLE table_143554_1 (timeslot VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(area___ha__) FROM table_143579_1 WHERE island = \"Colonsay\"", "question": "What is the area of Colonsay Island?", "context": "CREATE TABLE table_143579_1 (area___ha__ INTEGER, island VARCHAR)"}, {"answer": "SELECT COUNT(ties) FROM table_14389782_2 WHERE games_started = 36", "question": "How many ties were there for game 36 started?", "context": "CREATE TABLE table_14389782_2 (ties VARCHAR, games_started VARCHAR)"}, {"answer": "SELECT winning_pct FROM table_14389782_2 WHERE jersey_no = \"15\"", "question": "What is the winning pct for jersey 15?", "context": "CREATE TABLE table_14389782_2 (winning_pct VARCHAR, jersey_no VARCHAR)"}, {"answer": "SELECT quarterback FROM table_14389782_2 WHERE winning_pct = \".792\"", "question": "Who is the quarter back for a winning pct of .792", "context": "CREATE TABLE table_14389782_2 (quarterback VARCHAR, winning_pct VARCHAR)"}, {"answer": "SELECT losses FROM table_14389782_2 WHERE jersey_no = \"2\" AND games_started < 7.0", "question": "How many lost games for jersey number 2 and games started is less than 7.0?", "context": "CREATE TABLE table_14389782_2 (losses VARCHAR, jersey_no VARCHAR, games_started VARCHAR)"}, {"answer": "SELECT COUNT(date_of_vacancy) FROM table_14406743_5 WHERE manner_of_departure = \"Resigned\" AND outgoing_manager = \"Geninho\"", "question": "Name the total number of date of vacancy for manner of departure being resigned and outgoing manager is geninho", "context": "CREATE TABLE table_14406743_5 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT points_classification FROM table_14395920_2 WHERE young_rider_classification = \"Roman Kreuziger\"", "question": "Who led the points classification when Roman Kreuziger led the young rider classification?", "context": "CREATE TABLE table_14395920_2 (points_classification VARCHAR, young_rider_classification VARCHAR)"}, {"answer": "SELECT winner FROM table_14395920_2 WHERE combativity_award = \"Fumiyuki Beppu\"", "question": "Who won the stage when Fumiyuki Beppu won the combativity award?", "context": "CREATE TABLE table_14395920_2 (winner VARCHAR, combativity_award VARCHAR)"}, {"answer": "SELECT winner FROM table_14395920_2 WHERE stage = 18", "question": "Who won stage 18?", "context": "CREATE TABLE table_14395920_2 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_14395920_2 WHERE points_classification = \"Mark Cavendish\" AND general_classification = \"Rinaldo Nocentini\" AND stage < 11.0", "question": "Who won the stage when Mark Cavendish led the points classification, Rinaldo Nocentini led the general classification, and the stage was less than 11.0?", "context": "CREATE TABLE table_14395920_2 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT 1 AS st__m_ FROM table_14407512_24 WHERE nationality = \"NOR\"", "question": "Name the 1st m for nor", "context": "CREATE TABLE table_14407512_24 (nationality VARCHAR)"}, {"answer": "SELECT 2 AS nd__m_ FROM table_14407512_24 WHERE name = \"Gregor Schlierenzauer\"", "question": "Name the 2nd m for gregor schlierenzauer", "context": "CREATE TABLE table_14407512_24 (name VARCHAR)"}, {"answer": "SELECT COUNT(overall_nt_points) FROM table_14407512_24 WHERE points = \"248.9\"", "question": "Name the number of overall nt points for 248.9", "context": "CREATE TABLE table_14407512_24 (overall_nt_points VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(afc_cup) FROM table_14460937_1 WHERE play_off = 1", "question": "How many times has the playoff been 1 in the contest for the afc cup?", "context": "CREATE TABLE table_14460937_1 (afc_cup VARCHAR, play_off VARCHAR)"}, {"answer": "SELECT COUNT(afc_cup) FROM table_14460937_1 WHERE points__total_500_ = 289", "question": "How many times has the points total for the afc cup competion been 289?", "context": "CREATE TABLE table_14460937_1 (afc_cup VARCHAR, points__total_500_ VARCHAR)"}, {"answer": "SELECT MAX(play_off) FROM table_14460937_1 WHERE group_stage = 4", "question": "When the group stage has been 4 what is the largest playoff?", "context": "CREATE TABLE table_14460937_1 (play_off INTEGER, group_stage VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_1446600_4 WHERE district = \"Georgia 6th\"", "question": "What is the date the successor was seated for the georgia 6th district?", "context": "CREATE TABLE table_1446600_4 (date_successor_seated VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(successor) FROM table_1446600_4 WHERE district = \"Georgia 2nd\"", "question": "How many successors are from the georgia 2nd district?", "context": "CREATE TABLE table_1446600_4 (successor VARCHAR, district VARCHAR)"}, {"answer": "SELECT time___et__ FROM table_14477002_1 WHERE opponent = \"Cincinnati Bengals\"", "question": "Show all the time(et) where the opponent is the Cincinnati Bengals.", "context": "CREATE TABLE table_14477002_1 (time___et__ VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_14477002_1 WHERE location = \"Lambeau Field\"", "question": "List the total number of records from Lambeau Field.", "context": "CREATE TABLE table_14477002_1 (record VARCHAR, location VARCHAR)"}, {"answer": "SELECT opponent FROM table_14563349_11 WHERE location = \"Riverfront Stadium\"", "question": "Who was the opposing team played at Riverfront Stadium?", "context": "CREATE TABLE table_14563349_11 (opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_14563349_11 WHERE opponent = \"Kansas City Chiefs\"", "question": "How many days were the Kansas City Chiefs the opposing team?", "context": "CREATE TABLE table_14563349_11 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(fourth_place) FROM table_14573770_4 WHERE nation = \"Argentina\"", "question": "How many teams named argentina?", "context": "CREATE TABLE table_14573770_4 (fourth_place INTEGER, nation VARCHAR)"}, {"answer": "SELECT MAX(winners) FROM table_14573770_4 WHERE nation = \"Argentina\"", "question": "How many times did argentina win?", "context": "CREATE TABLE table_14573770_4 (winners INTEGER, nation VARCHAR)"}, {"answer": "SELECT s_sikh FROM table_14598_5 WHERE buddhist = \"955\"", "question": "What is the number of s sikh where 955 is the number of buddhists?", "context": "CREATE TABLE table_14598_5 (s_sikh VARCHAR, buddhist VARCHAR)"}, {"answer": "SELECT buddhist FROM table_14598_5 WHERE s_jain = \"941\"", "question": "How many buddhists are where s jain have 941?", "context": "CREATE TABLE table_14598_5 (buddhist VARCHAR, s_jain VARCHAR)"}, {"answer": "SELECT christians FROM table_14598_5 WHERE composition = \"Work Participation Rate\"", "question": "What is the christian amount where work participation rate is the composition?", "context": "CREATE TABLE table_14598_5 (christians VARCHAR, composition VARCHAR)"}, {"answer": "SELECT s_hindu FROM table_14598_5 WHERE buddhist = \"955\"", "question": "How many s hindu are where buddhists are 955?", "context": "CREATE TABLE table_14598_5 (s_hindu VARCHAR, buddhist VARCHAR)"}, {"answer": "SELECT COUNT(s_hindu) FROM table_14598_5 WHERE buddhist = \"73.0%\"", "question": "What is the data point for s hindu where the buddhist data point is 73.0%?", "context": "CREATE TABLE table_14598_5 (s_hindu VARCHAR, buddhist VARCHAR)"}, {"answer": "SELECT COUNT(composition) FROM table_14598_5 WHERE christians = \"39.7\"", "question": "How many data points for chrstians are 39.7?", "context": "CREATE TABLE table_14598_5 (composition VARCHAR, christians VARCHAR)"}, {"answer": "SELECT hometown FROM table_14624447_39 WHERE name = \"Ventrell Jenkins\"", "question": "Name the hometown for ventrell jenkins", "context": "CREATE TABLE table_14624447_39 (hometown VARCHAR, name VARCHAR)"}, {"answer": "SELECT class FROM table_14624447_39 WHERE position = \"RT\"", "question": "Name the class when position is rt", "context": "CREATE TABLE table_14624447_39 (class VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_14655757_1 WHERE college = \"Tennessee\"", "question": "Which players college is Tennessee?", "context": "CREATE TABLE table_14655757_1 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_14655757_1 WHERE player = \"Byron Williams\"", "question": "What college did Byron Williams attend?", "context": "CREATE TABLE table_14655757_1 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_14655757_1", "question": "What is the lowest pick number?", "context": "CREATE TABLE table_14655757_1 (pick__number INTEGER)"}, {"answer": "SELECT position FROM table_14655757_1 WHERE player = \"Jessie Clark\"", "question": "What position is Jessie Clark?", "context": "CREATE TABLE table_14655757_1 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT frequency FROM table_14670060_1 WHERE coverage = \"Chihuahua Sinaloa Durango\"", "question": "What frequency does Chihuahua Sinaloa Durango cover?", "context": "CREATE TABLE table_14670060_1 (frequency VARCHAR, coverage VARCHAR)"}, {"answer": "SELECT COUNT(transmitting_from) FROM table_14670060_1 WHERE call_sign = \"XEZV\"", "question": "How many times does the call sign XEZV appear?", "context": "CREATE TABLE table_14670060_1 (transmitting_from VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT languages FROM table_14670060_1 WHERE call_sign = \"XEJAM\"", "question": "What languages are spoken when call sign XEJAM is used?", "context": "CREATE TABLE table_14670060_1 (languages VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT shooter FROM table_14708760_3 WHERE round_3 = 80", "question": "Who shot an 80 in round 3", "context": "CREATE TABLE table_14708760_3 (shooter VARCHAR, round_3 VARCHAR)"}, {"answer": "SELECT MAX(round_1) FROM table_14708760_3 WHERE round_2 = 90", "question": "What is the highest score of round 1 where they also shot 90 in round 2", "context": "CREATE TABLE table_14708760_3 (round_1 INTEGER, round_2 VARCHAR)"}, {"answer": "SELECT position FROM table_1473672_5 WHERE player = \"Dave Johnson\"", "question": "What position did Dave Johnson play?", "context": "CREATE TABLE table_1473672_5 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_1473672_5 WHERE player = \"Bernie Germain\"", "question": "What is Bernie Germain's nationality?", "context": "CREATE TABLE table_1473672_5 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_1473672_5 WHERE nhl_team = \"Minnesota North Stars\"", "question": "What player was picked by the Minnesota North Stars?", "context": "CREATE TABLE table_1473672_5 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_1473672_5 WHERE player = \"Marty Gateman\"", "question": "What position did Marty Gateman play?", "context": "CREATE TABLE table_1473672_5 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_1473672_5 WHERE nhl_team = \"Montreal Canadiens\"", "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_7 WHERE nhl_team = \"California Golden Seals\"", "question": "the california golden seals that where drafted by nhl teams played what positions", "context": "CREATE TABLE table_1473672_7 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_1473672_7 WHERE nhl_team = \"Toronto Maple Leafs\"", "question": "what country was the player drafted by the toronto maple leafs", "context": "CREATE TABLE table_1473672_7 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_1473672_7 WHERE nhl_team = \"Los Angeles Kings\"", "question": "The los angeles kings drafted what player in the 7th round", "context": "CREATE TABLE table_1473672_7 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_1473672_7 WHERE player = \"Yves Archambault\"", "question": "How many players had been drafted in front of Yves archambault", "context": "CREATE TABLE table_1473672_7 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_1473672_7 WHERE player = \"Serge Beaudoin\"", "question": "Serge Beaudoin was drafted when in the 1972 NHL draft", "context": "CREATE TABLE table_1473672_7 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1473672_6 WHERE player = \"Rob Palmer\"", "question": "What NHL team drafted Rob Palmer?", "context": "CREATE TABLE table_1473672_6 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_1473672_6 WHERE nhl_team = \"Chicago Black Hawks\"", "question": "What player was drafted by the Chicago Black Hawks?", "context": "CREATE TABLE table_1473672_6 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_1473672_6 WHERE player = \"Derek Black\"", "question": "What country did Derek Black come from?", "context": "CREATE TABLE table_1473672_6 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1473672_6 WHERE player = \"Derek Black\"", "question": "What team did Derek Black Play for prior to being drafted?", "context": "CREATE TABLE table_1473672_6 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_1474099_6", "question": "At maximum, what are our goals?", "context": "CREATE TABLE table_1474099_6 (goals INTEGER)"}, {"answer": "SELECT season FROM table_1474099_6 WHERE goals = 17 AND runners_up = \"Slavija\"", "question": "When the team scored 17 and Slavija placed second, what year was it?", "context": "CREATE TABLE table_1474099_6 (season VARCHAR, goals VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT change__2009_to_2010_ FROM table_14752049_3 WHERE international_tourist_arrivals__2011_ = \"9.4 million\"", "question": "Name the change 2009 to 2010 where international tourist arrivals is 9.4 million", "context": "CREATE TABLE table_14752049_3 (change__2009_to_2010_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)"}, {"answer": "SELECT international_tourist_arrivals__2010_ FROM table_14752049_3 WHERE international_tourist_arrivals__2011_ = \"8.1 million\"", "question": "Name the international tourist arrivals for arrivals 2011 for 8.1 million", "context": "CREATE TABLE table_14752049_3 (international_tourist_arrivals__2010_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)"}, {"answer": "SELECT international_tourist_arrivals__2011_ FROM table_14752049_1 WHERE country = \"Italy\"", "question": "How many tourist arrivals occurred in 2011 in the country of Italy?", "context": "CREATE TABLE table_14752049_1 (international_tourist_arrivals__2011_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_14752049_1 WHERE rank = 5", "question": "Which country has a rank of 5?", "context": "CREATE TABLE table_14752049_1 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_14752049_1 WHERE country = \"Germany\"", "question": "What rank is associated with Germany?", "context": "CREATE TABLE table_14752049_1 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_14752049_5 WHERE international_tourist_arrivals__2011_ = \"6.2 million\"", "question": "Name the number of ranks for international tourist arrivals being 6.2 million", "context": "CREATE TABLE table_14752049_5 (rank VARCHAR, international_tourist_arrivals__2011_ VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_14752049_5 WHERE country = \"South Korea\"", "question": "Name the number of ranks for south korea", "context": "CREATE TABLE table_14752049_5 (rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(stolen_ends) FROM table_1475840_1 WHERE locale = Alberta", "question": "What is the minimum stolen ends for the locale Alberta?", "context": "CREATE TABLE table_1475840_1 (stolen_ends INTEGER, locale VARCHAR, Alberta VARCHAR)"}, {"answer": "SELECT introductory_phrase FROM table_14835674_1 WHERE production_code = 4005", "question": "What was the inroductory phase for the episode with production code 4005?", "context": "CREATE TABLE table_14835674_1 (introductory_phrase VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT introductory_phrase FROM table_14835674_1 WHERE guest = \"Neil Shubin\"", "question": "What was the inroductory phase for the episode with neil shubin as a guest?", "context": "CREATE TABLE table_14835674_1 (introductory_phrase VARCHAR, guest VARCHAR)"}, {"answer": "SELECT introductory_phrase FROM table_14835674_1 WHERE original_airdate = \"January 21\"", "question": "What was the inroductory phase for the episode that originally aired january 21?", "context": "CREATE TABLE table_14835674_1 (introductory_phrase VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_14835826_1 WHERE us_viewers__millions_ = \"18.77\"", "question": "How many series had 18.77 million viewers?", "context": "CREATE TABLE table_14835826_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT role FROM table_148386_2 WHERE casino_theatre_1888 = \"George Broderick\"", "question": "How many roles include George Broderick in the casino 1888 theater?", "context": "CREATE TABLE table_148386_2 (role VARCHAR, casino_theatre_1888 VARCHAR)"}, {"answer": "SELECT COUNT(savoy_theatre_1888) FROM table_148386_2 WHERE casino_theatre_1888 = \"George Olmi\"", "question": "What is the total of roles that George Olmi plays in Savoy & Casino Theatre 1888?", "context": "CREATE TABLE table_148386_2 (savoy_theatre_1888 VARCHAR, casino_theatre_1888 VARCHAR)"}, {"answer": "SELECT casino_theatre_1888 FROM table_148386_2 WHERE savoy_theatre_1906 = \"Overton Moyle\"", "question": "Who plays Overton Moyle in casino theatre 1888 & savoy theatre 1906?", "context": "CREATE TABLE table_148386_2 (casino_theatre_1888 VARCHAR, savoy_theatre_1906 VARCHAR)"}, {"answer": "SELECT losses FROM table_14876228_1 WHERE team = \"General Caballero ZC\"", "question": "Name the losses for general caballero zc", "context": "CREATE TABLE table_14876228_1 (losses VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_14876228_1 WHERE wins = 3", "question": "Name the most draws when wins is 3", "context": "CREATE TABLE table_14876228_1 (draws INTEGER, wins VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_14876228_1 WHERE scored = 16", "question": "Name the number of played for 16", "context": "CREATE TABLE table_14876228_1 (played VARCHAR, scored VARCHAR)"}, {"answer": "SELECT COUNT(population_1891) FROM table_14925084_1 WHERE area_1891__statute_acres_ = 175836", "question": "Name the population 1891 for area being 175836", "context": "CREATE TABLE table_14925084_1 (population_1891 VARCHAR, area_1891__statute_acres_ VARCHAR)"}, {"answer": "SELECT administrative_county FROM table_14925084_1 WHERE area_1961__statute_acres_ = 422372", "question": "Name the administrative county being area of 422372", "context": "CREATE TABLE table_14925084_1 (administrative_county VARCHAR, area_1961__statute_acres_ VARCHAR)"}, {"answer": "SELECT area_1891__statute_acres_ FROM table_14925084_1 WHERE administrative_county = \"Flintshire\"", "question": "Name the area for administrative county being flintshire", "context": "CREATE TABLE table_14925084_1 (area_1891__statute_acres_ VARCHAR, administrative_county VARCHAR)"}, {"answer": "SELECT COUNT(administrative_county) FROM table_14925084_1 WHERE area_1961__statute_acres_ = 176694", "question": "Name the number of administrative county for area 1961 and 176694", "context": "CREATE TABLE table_14925084_1 (administrative_county VARCHAR, area_1961__statute_acres_ VARCHAR)"}, {"answer": "SELECT COUNT(mixed_doubles) FROM table_14904046_1 WHERE year = 1997", "question": "How many couples won the Mixed Doubles in 1997?", "context": "CREATE TABLE table_14904046_1 (mixed_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_14940519_1 WHERE game_site = \"Memorial Stadium\" AND opponent = \"Buffalo Bills\"", "question": "Name the number of week for game site being memorial stadium for buffalo bills", "context": "CREATE TABLE table_14940519_1 (week VARCHAR, game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_14940519_1 WHERE date = \"October 2, 1983\"", "question": "Name the opponent for october 2, 1983", "context": "CREATE TABLE table_14940519_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_14940519_1 WHERE date = \"September 25, 1983\"", "question": "Name the least week for september 25, 1983", "context": "CREATE TABLE table_14940519_1 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_14940519_1 WHERE opponent = \"at Cleveland Browns\"", "question": "Name the total number of weeks for at cleveland browns", "context": "CREATE TABLE table_14940519_1 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_14940519_1 WHERE result = \"L 17\u201350\"", "question": "Name the record for result of  l 17\u201350", "context": "CREATE TABLE table_14940519_1 (record VARCHAR, result VARCHAR)"}, {"answer": "SELECT record FROM table_14951643_1 WHERE result = \"W 52\u201319\"", "question": "what's the\u00a0record\u00a0with\u00a0result\u00a0being w 52\u201319", "context": "CREATE TABLE table_14951643_1 (record VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_14951643_1 WHERE opponent = \"Cleveland Browns\"", "question": " how many\u00a0result\u00a0with\u00a0opponent\u00a0being cleveland browns", "context": "CREATE TABLE table_14951643_1 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_14951643_1 WHERE opponent = \"at New England Patriots\"", "question": "what's the\u00a0result\u00a0with\u00a0opponent\u00a0being at new england patriots", "context": "CREATE TABLE table_14951643_1 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_14951643_1 WHERE result = \"W 21\u20137\"", "question": "what's the\u00a0record\u00a0with\u00a0result\u00a0being w 21\u20137", "context": "CREATE TABLE table_14951643_1 (record VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_14951643_1 WHERE attendance = 40657", "question": "what's the\u00a0date\u00a0with\u00a0attendance\u00a0being 40657", "context": "CREATE TABLE table_14951643_1 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_14945881_1 WHERE date = \"September 19, 1976\"", "question": "Name the attendance for september 19, 1976", "context": "CREATE TABLE table_14945881_1 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_14945881_1 WHERE attendance = 44023", "question": "Name the number of record when attendance is 44023", "context": "CREATE TABLE table_14945881_1 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_14945881_1 WHERE date = \"September 19, 1976\"", "question": "Name the least week for september 19, 1976", "context": "CREATE TABLE table_14945881_1 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT record FROM table_14945881_1 WHERE attendance = 42827", "question": "Name the record when attendance 42827", "context": "CREATE TABLE table_14945881_1 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_14945881_1 WHERE week = 9", "question": "Name the date when week is 9", "context": "CREATE TABLE table_14945881_1 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_14975415_1 WHERE hungarian_title = \"Taxidermia\"", "question": "What year was taxidermia nominated? ", "context": "CREATE TABLE table_14975415_1 (year__ceremony_ VARCHAR, hungarian_title VARCHAR)"}, {"answer": "SELECT director FROM table_14975415_1 WHERE english_title = \"Diary for My Loves\"", "question": "Who is the director for diary for my loves?", "context": "CREATE TABLE table_14975415_1 (director VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT result FROM table_14975415_1 WHERE english_title = \"Diary for My Loves\"", "question": "Was diary for my loves nominated?", "context": "CREATE TABLE table_14975415_1 (result VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT director FROM table_14975415_1 WHERE english_title = \"The Witman Boys\"", "question": "Who is the director for the witman boys?", "context": "CREATE TABLE table_14975415_1 (director VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT game_site FROM table_14977592_1 WHERE date = \"December 12, 1965\"", "question": "Name the game site for december 12, 1965", "context": "CREATE TABLE table_14977592_1 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game_site) FROM table_14977592_1 WHERE opponent = \"Chicago Bears\"", "question": "Name the total number of game sites for chicago bears", "context": "CREATE TABLE table_14977592_1 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_14977592_1 WHERE date = \"November 14, 1965\"", "question": "Name the result for november 14, 1965", "context": "CREATE TABLE table_14977592_1 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_14971788_1 WHERE opponent = \"Atlanta Falcons\"", "question": "Where was the game against Atlanta Falcons held?", "context": "CREATE TABLE table_14971788_1 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_14971788_1 WHERE week = 2", "question": "What date was week 2?", "context": "CREATE TABLE table_14971788_1 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT place FROM table_14977252_2 WHERE professional_jury = 5", "question": "Name the place of the jury of 5", "context": "CREATE TABLE table_14977252_2 (place VARCHAR, professional_jury VARCHAR)"}, {"answer": "SELECT professional_jury FROM table_14977252_2 WHERE points = 10", "question": "Name the jury of 10 points", "context": "CREATE TABLE table_14977252_2 (professional_jury VARCHAR, points VARCHAR)"}, {"answer": "SELECT artist FROM table_14977252_2 WHERE draw = 2", "question": "Name the artist of 2 draw", "context": "CREATE TABLE table_14977252_2 (artist VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_14977252_2 WHERE artist = \"Elena Dermidjean\"", "question": "Name the least draw for elena dermidjean", "context": "CREATE TABLE table_14977252_2 (draw INTEGER, artist VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_15001572_1 WHERE mens_doubles = \"No competition\"", "question": "What was the competition when there was no competition for mens doubles?", "context": "CREATE TABLE table_15001572_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_15001572_1 WHERE year = 1998", "question": "Who won the mixed doubles in 1998?", "context": "CREATE TABLE table_15001572_1 (mixed_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(college) FROM table_15017024_2 WHERE pick = 57", "question": "How many colleges did the player picked 57 attend?", "context": "CREATE TABLE table_15017024_2 (college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_15017024_2 WHERE player_name = \"Chad Henne\"", "question": "How many heights does chad henne have?", "context": "CREATE TABLE table_15017024_2 (height VARCHAR, player_name VARCHAR)"}, {"answer": "SELECT recopa_sudamericana_1992 FROM table_15013825_8 WHERE copa_libertadores_1992 = \"Did not qualify\" AND copa_conmebol_1992 = \"Round of 16\" AND team = \"Bragantino\"", "question": "Name the recopa sudamericana 1992 for did not qualify for libertadores 1992 and round of 16 for bragantino", "context": "CREATE TABLE table_15013825_8 (recopa_sudamericana_1992 VARCHAR, team VARCHAR, copa_libertadores_1992 VARCHAR, copa_conmebol_1992 VARCHAR)"}, {"answer": "SELECT copa_libertadores_1992 FROM table_15013825_8 WHERE copa_conmebol_1992 = \"Round of 16\" AND team = \"Fluminense\"", "question": "Name the copa libertadores 1992 for round of 16 and team of fluminense", "context": "CREATE TABLE table_15013825_8 (copa_libertadores_1992 VARCHAR, copa_conmebol_1992 VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_15013825_8 WHERE copa_conmebol_1992 = \"Round of 16\"", "question": "Name the team for copa conmebol 1992 is round of 16", "context": "CREATE TABLE table_15013825_8 (team VARCHAR, copa_conmebol_1992 VARCHAR)"}, {"answer": "SELECT league FROM table_15056103_1 WHERE year = 2009", "question": "What league were they in in 2009?", "context": "CREATE TABLE table_15056103_1 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT playoffs FROM table_15056103_1 WHERE regular_season = \"5th, North\"", "question": "What was the playoff result when they finished 5th, north in the regular sesason?", "context": "CREATE TABLE table_15056103_1 (playoffs VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT player FROM table_1506950_9 WHERE pga_ch = \"T6\" AND masters = \"T4\" AND us_open = \"T8\"", "question": "Which player's results were T6 in the PGA Ch., T4 in the Masters and T8 at the U.S. Open?", "context": "CREATE TABLE table_1506950_9 (player VARCHAR, us_open VARCHAR, pga_ch VARCHAR, masters VARCHAR)"}, {"answer": "SELECT masters FROM table_1506950_9 WHERE pga_ch = \"R16\"", "question": "What is the result at the Masters for the player who finished R16 at the PGA Ch.?", "context": "CREATE TABLE table_1506950_9 (masters VARCHAR, pga_ch VARCHAR)"}, {"answer": "SELECT us_open FROM table_1506950_9 WHERE open_ch = \"6th\"", "question": "What was the player's result at the U.S. Open of the player who finished 6th at the Open Ch?", "context": "CREATE TABLE table_1506950_9 (us_open VARCHAR, open_ch VARCHAR)"}, {"answer": "SELECT type FROM table_1506619_1 WHERE school_board = \"Rainbow District school_board\"", "question": "The Rainbow District School Board is associated with what type?", "context": "CREATE TABLE table_1506619_1 (type VARCHAR, school_board VARCHAR)"}, {"answer": "SELECT school_board FROM table_1506619_1 WHERE number_of_elementary_schools = 96", "question": "Where are all school boards associated with a number of elementary schools of 96?", "context": "CREATE TABLE table_1506619_1 (school_board VARCHAR, number_of_elementary_schools VARCHAR)"}, {"answer": "SELECT headquarters FROM table_1506619_1 WHERE school_board = \"Renfrew County Catholic District school_board\"", "question": "Which headquarters are associated with the school board Renfrew County Catholic District School Board?", "context": "CREATE TABLE table_1506619_1 (headquarters VARCHAR, school_board VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_15081939_4 WHERE evening_gown = \"7.61\"", "question": "What is the swimsuit score for the item that has 7.61 as evening gown", "context": "CREATE TABLE table_15081939_4 (swimsuit VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT province FROM table_15081939_4 WHERE swimsuit = \"8.43\"", "question": "Which province got a swimsuit score of 8.43", "context": "CREATE TABLE table_15081939_4 (province VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT province FROM table_15081939_4 WHERE evening_gown = \"7.61\"", "question": "Which province has evening gown score of 7.61", "context": "CREATE TABLE table_15081939_4 (province VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_15081939_4 WHERE evening_gown = \"8.00\"", "question": "How many averages for the province with evening gown score of 8.00", "context": "CREATE TABLE table_15081939_4 (average VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT COUNT(province) FROM table_15081939_4 WHERE evening_gown = \"8.49\"", "question": "How many provinces have evening gown score of 8.49", "context": "CREATE TABLE table_15081939_4 (province VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT constituency FROM table_15082102_3 WHERE electorate = 54787", "question": "which electorate is 54787 of the constituency", "context": "CREATE TABLE table_15082102_3 (constituency VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT MIN(s_spoilt_vote) FROM table_15082102_3 WHERE electorate = 83850", "question": "in electorate of 83850 what is the minimum s split vote", "context": "CREATE TABLE table_15082102_3 (s_spoilt_vote INTEGER, electorate VARCHAR)"}, {"answer": "SELECT lead FROM table_15125201_1 WHERE socialist = \"35.5%\"", "question": "What is the lead percentage when the socialist is at 35.5%?", "context": "CREATE TABLE table_15125201_1 (lead VARCHAR, socialist VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_1514634_2 WHERE tournament = \"Hawaiian Open\"", "question": "What was the margin of victory at the Hawaiian Open tournament?", "context": "CREATE TABLE table_1514634_2 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_1514634_2 WHERE tournament = \"Mercedes Championships\"", "question": "What was the margin of victory at the Mercedes Championships?", "context": "CREATE TABLE table_1514634_2 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tfl_yds FROM table_15128839_22 WHERE no_yds = \"1-0\"", "question": "Name the tfl-yds for no-yds 1-0", "context": "CREATE TABLE table_15128839_22 (tfl_yds VARCHAR, no_yds VARCHAR)"}, {"answer": "SELECT solo FROM table_15128839_22 WHERE name = \"Briggs, Diyral\"", "question": "Name the solo when name is briggs, diyral", "context": "CREATE TABLE table_15128839_22 (solo VARCHAR, name VARCHAR)"}, {"answer": "SELECT gp FROM table_15128839_22 WHERE ff = 0 AND qbh = 1", "question": "Name the gp for ff being 0 and qbh being 1", "context": "CREATE TABLE table_15128839_22 (gp VARCHAR, ff VARCHAR, qbh VARCHAR)"}, {"answer": "SELECT champion_score FROM table_15161170_1 WHERE division = \"division 2 Men\"", "question": "When the division is Division 2 men what is the champion score?", "context": "CREATE TABLE table_15161170_1 (champion_score VARCHAR, division VARCHAR)"}, {"answer": "SELECT MIN(spirou) FROM table_15163938_1", "question": "Name the least spirou", "context": "CREATE TABLE table_15163938_1 (spirou INTEGER)"}, {"answer": "SELECT home_team FROM table_15173650_2 WHERE away_team = \"Kilmarnock\"", "question": "Name the home team when away team is kilmarnock", "context": "CREATE TABLE table_15173650_2 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_15173650_2", "question": "Name the least attendance", "context": "CREATE TABLE table_15173650_2 (attendance INTEGER)"}, {"answer": "SELECT episode FROM table_15187735_5 WHERE segment_a = \"Kitchen Knives\"", "question": "Kitchen knives is segment a of what episode? ", "context": "CREATE TABLE table_15187735_5 (episode VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT segment_d FROM table_15187735_5 WHERE segment_b = \"Dining Room Tables\"", "question": "When segment b is dining room tables what is segment d?", "context": "CREATE TABLE table_15187735_5 (segment_d VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT netflix FROM table_15187735_5 WHERE segment_b = \"Marshmallow Cookies\"", "question": "When marshmallow cookies is segment b what episode is it on netflix?", "context": "CREATE TABLE table_15187735_5 (netflix VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_5 WHERE segment_c = \"Cardboard Boxes\"", "question": "When cardboard boxes is segment c what is segment a?", "context": "CREATE TABLE table_15187735_5 (segment_a VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_15187735_8 WHERE segment_b = \"s Hacksaw\"", "question": "Name the number of episodes for s hacksaw", "context": "CREATE TABLE table_15187735_8 (episode VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT COUNT(series_ep) FROM table_15187735_8 WHERE segment_a = \"s Piston\"", "question": "Name the number of series episode for s piston", "context": "CREATE TABLE table_15187735_8 (series_ep VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT segment_c FROM table_15187735_8 WHERE segment_b = \"Paint Rollers\"", "question": "Name the segment c for paint rollers", "context": "CREATE TABLE table_15187735_8 (segment_c VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_8 WHERE series_ep = \"8-08\"", "question": "Name the segment a for 8-08", "context": "CREATE TABLE table_15187735_8 (segment_a VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_8 WHERE segment_c = \"Graphite s Fly Rod\"", "question": "Name the segment b for graphite s fly rod", "context": "CREATE TABLE table_15187735_8 (segment_b VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT race_winner FROM table_15187794_1 WHERE circuit = \"Magny-Cours\"", "question": "Who won the race at Magny-Cours", "context": "CREATE TABLE table_15187794_1 (race_winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT round FROM table_15187794_1 WHERE circuit = \"Assen\"", "question": "Which round was the circuit Assen", "context": "CREATE TABLE table_15187794_1 (round VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(race_winner) FROM table_15187794_1 WHERE no = 12", "question": "How many people won in No. 12", "context": "CREATE TABLE table_15187794_1 (race_winner VARCHAR, no VARCHAR)"}, {"answer": "SELECT country FROM table_1520559_1 WHERE margin_of_victory = \"9 strokes\"", "question": "Which countries won by 9 strokes?", "context": "CREATE TABLE table_1520559_1 (country VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT purse___$__ FROM table_1520559_1 WHERE winners_share__$_ = 428650", "question": "What purses had a winners share equal to $428650?", "context": "CREATE TABLE table_1520559_1 (purse___$__ VARCHAR, winners_share__$_ VARCHAR)"}, {"answer": "SELECT venue FROM table_1520559_1 WHERE champion = \"Lorena Ochoa\"", "question": "At what venues did Lorena Ochoa win the championship?", "context": "CREATE TABLE table_1520559_1 (venue VARCHAR, champion VARCHAR)"}, {"answer": "SELECT episode_no FROM table_15211468_3 WHERE presenter = \"Ben Okri\"", "question": "What episode number is presented by Ben Okri ?", "context": "CREATE TABLE table_15211468_3 (episode_no VARCHAR, presenter VARCHAR)"}, {"answer": "SELECT uk_broadcast_date FROM table_15211468_3 WHERE presenter = \"Buck Henry\"", "question": "What was the UK broadcast date for the episode presented by Buck Henry?", "context": "CREATE TABLE table_15211468_3 (uk_broadcast_date VARCHAR, presenter VARCHAR)"}, {"answer": "SELECT input_clock__mhz_ FROM table_15261_1 WHERE s_spec_number = \"SK096\"", "question": "What is the input clock (mhz) for s-spec number sk096?", "context": "CREATE TABLE table_15261_1 (input_clock__mhz_ VARCHAR, s_spec_number VARCHAR)"}, {"answer": "SELECT COUNT(voltage_range__v_) FROM table_15261_1 WHERE clock_multiplier = \"3X or 2X mode\" AND part_number = \"A80486DX4WB-100\"", "question": "What is the voltage range (v) if the clock multiplier is 3x or 2x mode and part number is a80486dx4wb-100?", "context": "CREATE TABLE table_15261_1 (voltage_range__v_ VARCHAR, clock_multiplier VARCHAR, part_number VARCHAR)"}, {"answer": "SELECT part_number FROM table_15261_1 WHERE s_spec_number = \"SK096\"", "question": "What is the part number for s-spec number sk096?", "context": "CREATE TABLE table_15261_1 (part_number VARCHAR, s_spec_number VARCHAR)"}, {"answer": "SELECT clock_multiplier FROM table_15261_1 WHERE voltage_range__v_ = \"3.3 - 3.6\" AND input_clock__mhz_ = \"33 X 3 / 50 X 2\" AND part_number = \"A80486DX4-100\"", "question": "What is the clock multiplier if the voltage range (v) is 3.3 - 3.6; input clock (mhz) is 33 x 3 / 50 x 2; and part number is a80486dx4-100?", "context": "CREATE TABLE table_15261_1 (clock_multiplier VARCHAR, part_number VARCHAR, voltage_range__v_ VARCHAR, input_clock__mhz_ VARCHAR)"}, {"answer": "SELECT COUNT(processor_speed__mhz_) FROM table_15261_1 WHERE part_number = \"A80486DX4-75\"", "question": "What is the processor speed (mhz) for part number a80486dx4-75?", "context": "CREATE TABLE table_15261_1 (processor_speed__mhz_ VARCHAR, part_number VARCHAR)"}, {"answer": "SELECT MIN(democratic_coalition) FROM table_15306124_1", "question": "Tell me the least amount of democratic colation", "context": "CREATE TABLE table_15306124_1 (democratic_coalition INTEGER)"}, {"answer": "SELECT MIN(league_of_communists) FROM table_15306124_1 WHERE municipality = \"Mojkovac\"", "question": "What is the least amount of league of communists where municipality is mojkovac", "context": "CREATE TABLE table_15306124_1 (league_of_communists INTEGER, municipality VARCHAR)"}, {"answer": "SELECT COUNT(league_of_communists) FROM table_15306124_1 WHERE municipality = \"Bar\"", "question": "How many league of communists have the municipality of bar?", "context": "CREATE TABLE table_15306124_1 (league_of_communists VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT COUNT(league_of_communists) FROM table_15306124_1 WHERE peoples_party = 7", "question": "How many league of communists have the people's party at 7?", "context": "CREATE TABLE table_15306124_1 (league_of_communists VARCHAR, peoples_party VARCHAR)"}, {"answer": "SELECT poles FROM table_15327489_1 WHERE year = 2011", "question": "Name the poles for 2011", "context": "CREATE TABLE table_15327489_1 (poles VARCHAR, year VARCHAR)"}, {"answer": "SELECT riders FROM table_15327489_1 WHERE team_name = \"JiR Team Scot MotoGP\"", "question": "Name the rdiers for jir team scot motogp", "context": "CREATE TABLE table_15327489_1 (riders VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT class FROM table_15327489_1 WHERE riders = \"Makoto Tamada\" AND races = \"17\"", "question": "Name the class for makoto tamada and races is 17", "context": "CREATE TABLE table_15327489_1 (class VARCHAR, riders VARCHAR, races VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_15327489_1", "question": "Name the most wins", "context": "CREATE TABLE table_15327489_1 (wins INTEGER)"}, {"answer": "SELECT college FROM table_15353123_1 WHERE player = \"Dean Kirkland\"", "question": "Which college did Dean Kirkland go to", "context": "CREATE TABLE table_15353123_1 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_15353123_1 WHERE college = \"Pittsburg State\"", "question": "Which player went to Pittsburg State", "context": "CREATE TABLE table_15353123_1 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_15353123_1", "question": "Who was the highest pick", "context": "CREATE TABLE table_15353123_1 (pick__number INTEGER)"}, {"answer": "SELECT MAX(pick__number) FROM table_15353123_1 WHERE position = \"Defensive end\"", "question": "Who was the highest picked defensive end", "context": "CREATE TABLE table_15353123_1 (pick__number INTEGER, position VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_15353123_1 WHERE player = \"Dean Kirkland\"", "question": "How many players named Dean Kirkland were picked", "context": "CREATE TABLE table_15353123_1 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(metropolitan_borough_)[c_] FROM table_15366849_1 WHERE station = \"Dorridge\"", "question": "How many metropolitan boroughs have dorridge as a station?", "context": "CREATE TABLE table_15366849_1 (c_ VARCHAR, metropolitan_borough_ VARCHAR, station VARCHAR)"}, {"answer": "SELECT MAX(zone) FROM table_15366849_1", "question": "What's the biggest zone?", "context": "CREATE TABLE table_15366849_1 (zone INTEGER)"}, {"answer": "SELECT isotopic_mass___u__ FROM table_15366768_1 WHERE nuclide = \"169 Tm\"", "question": "What is the mass of the element with a nuclide that is 169 tm?", "context": "CREATE TABLE table_15366768_1 (isotopic_mass___u__ VARCHAR, nuclide VARCHAR)"}, {"answer": "SELECT COUNT(n___n__) FROM table_15366768_1 WHERE nuclide = \"141 Pr\"", "question": "What is the total number of N for the element with nuclide of 141 pr?", "context": "CREATE TABLE table_15366768_1 (n___n__ VARCHAR, nuclide VARCHAR)"}, {"answer": "SELECT element FROM table_15366768_1 WHERE isotopic_mass___u__ = \"158.925 34(2)\"", "question": "What is the name of the element with isotopic mass of 158.925 34(2)?", "context": "CREATE TABLE table_15366768_1 (element VARCHAR, isotopic_mass___u__ VARCHAR)"}, {"answer": "SELECT original_artist FROM table_15383430_1 WHERE theme = \"Year They Were Born\"", "question": "The theme year they were born belongs to what artist?", "context": "CREATE TABLE table_15383430_1 (original_artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_15383430_1 WHERE original_artist = \"Queen\"", "question": "How many songs were sung by queen?", "context": "CREATE TABLE table_15383430_1 (result VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT glass_bulb_color FROM table_1538516_1 WHERE temperature_classification = \"Ordinary\"", "question": "Name the glass bulb color for ordinary", "context": "CREATE TABLE table_1538516_1 (glass_bulb_color VARCHAR, temperature_classification VARCHAR)"}, {"answer": "SELECT maximum_ceiling_temperature FROM table_1538516_1 WHERE temperature_classification = \"Intermediate\"", "question": "Name the most ceiling temperature for intermediate", "context": "CREATE TABLE table_1538516_1 (maximum_ceiling_temperature VARCHAR, temperature_classification VARCHAR)"}, {"answer": "SELECT maximum_ceiling_temperature FROM table_1538516_1 WHERE temperature_classification = \"Very Extra High\"", "question": "Name the most ceiling temperature for very extra high", "context": "CREATE TABLE table_1538516_1 (maximum_ceiling_temperature VARCHAR, temperature_classification VARCHAR)"}, {"answer": "SELECT year FROM table_15409403_1 WHERE playoffs = \"Conference Finals\"", "question": "When did the playoffs reached Conference Finals?", "context": "CREATE TABLE table_15409403_1 (year VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT regular_season FROM table_15409403_1 WHERE year = 2012", "question": "What was the regular season from year 2012?", "context": "CREATE TABLE table_15409403_1 (regular_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_15420044_1 WHERE difference = \"8\"", "question": "Which teams had a difference of 8 between goals scored and goals conceeded", "context": "CREATE TABLE table_15420044_1 (team VARCHAR, difference VARCHAR)"}, {"answer": "SELECT team FROM table_15420044_1 WHERE against = 10", "question": "Which teams had 10 goals scored against them", "context": "CREATE TABLE table_15420044_1 (team VARCHAR, against VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_15431251_1 WHERE no_in_season = 17", "question": "What is the original air date for episode 17 in the season?", "context": "CREATE TABLE table_15431251_1 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_15431251_1 WHERE directed_by = \"Peter Woeste\"", "question": "What is the original air date for the episode directed by Peter Woeste?", "context": "CREATE TABLE table_15431251_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_15431251_1 WHERE no_in_season = 7", "question": "What is the title for episode number 7 in the season?", "context": "CREATE TABLE table_15431251_1 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(no_disc) FROM table_15430606_1 WHERE directed_by = \"Jimmy Kaufman\"", "question": "Name the total number of number disc for jimmy kaufman", "context": "CREATE TABLE table_15430606_1 (no_disc VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(no_disc) FROM table_15430606_1 WHERE no_in_series = \"14\"", "question": "Name the minimum number disc for number in series for 14", "context": "CREATE TABLE table_15430606_1 (no_disc INTEGER, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(no_disc) FROM table_15430606_1 WHERE directed_by = \"Bill Gereghty\"", "question": "Name the maximum number of disc for bill gereghty", "context": "CREATE TABLE table_15430606_1 (no_disc INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(length__minutes_) FROM table_15430606_1 WHERE no_in_series = \"17\"", "question": "Name the total number of length minutes for number in series for 17", "context": "CREATE TABLE table_15430606_1 (length__minutes_ VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT best_finish FROM table_15431122_2 WHERE scoring_rank = \"97\"", "question": "What is the best finish where the scoring rank is 97?", "context": "CREATE TABLE table_15431122_2 (best_finish VARCHAR, scoring_rank VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_15431122_2", "question": "What is the minimum number of wins?", "context": "CREATE TABLE table_15431122_2 (wins INTEGER)"}, {"answer": "SELECT COUNT(second_member) FROM table_15451122_2 WHERE first_member = \"John Rudhale\"", "question": "How many different second members were there when John rudhale was first member?", "context": "CREATE TABLE table_15451122_2 (second_member VARCHAR, first_member VARCHAR)"}, {"answer": "SELECT assembled FROM table_15451122_2 WHERE first_member = \"John Rudhale\"", "question": "What date was parliament assembled when John rudhale was first member?", "context": "CREATE TABLE table_15451122_2 (assembled VARCHAR, first_member VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_15463188_7 WHERE season = \"2009-2011\"", "question": "Name the school/club team when season is 2009-2011", "context": "CREATE TABLE table_15463188_7 (school_club_team VARCHAR, season VARCHAR)"}, {"answer": "SELECT name FROM table_15463188_7 WHERE school_club_team = \"San Beda\"", "question": "Name the name for san beda", "context": "CREATE TABLE table_15463188_7 (name VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_15463188_7 WHERE school_club_team = \"San Beda\"", "question": "Name the position for san beda", "context": "CREATE TABLE table_15463188_7 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT name FROM table_15463188_7 WHERE school_club_team = \"State\"", "question": "Name the name of the state", "context": "CREATE TABLE table_15463188_7 (name VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_15463188_7 WHERE season = \"2008\"", "question": "Namethe school team for season 2008", "context": "CREATE TABLE table_15463188_7 (school_club_team VARCHAR, season VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_15463188_7 WHERE name = \"Norman Gonzales\"", "question": "Nametheh school team for norman gonzales", "context": "CREATE TABLE table_15463188_7 (school_club_team VARCHAR, name VARCHAR)"}, {"answer": "SELECT points FROM table_15467476_2 WHERE club = \"Pontrhydyfen RFC\"", "question": "Name the points for  pontrhydyfen rfc", "context": "CREATE TABLE table_15467476_2 (points VARCHAR, club VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_15467476_2 WHERE tries_for = \"30\"", "question": "Name the try bonus and tries for 30", "context": "CREATE TABLE table_15467476_2 (try_bonus VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT COUNT(points_for) FROM table_15467476_2 WHERE lost = \"4\"", "question": "Name the points for where lost is 4", "context": "CREATE TABLE table_15467476_2 (points_for VARCHAR, lost VARCHAR)"}, {"answer": "SELECT number FROM table_15463188_16 WHERE acquisition_via = \"Far Eastern\"", "question": "Name the number when acquisition via far eastern", "context": "CREATE TABLE table_15463188_16 (number VARCHAR, acquisition_via VARCHAR)"}, {"answer": "SELECT season FROM table_15463188_16 WHERE number = \"9\"", "question": "Name the season when the number is 9", "context": "CREATE TABLE table_15463188_16 (season VARCHAR, number VARCHAR)"}, {"answer": "SELECT name FROM table_15463188_16 WHERE school_club_team = \"Visayas\"", "question": "Name the name for visayas", "context": "CREATE TABLE table_15463188_16 (name VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_15463188_16 WHERE number = \"9\"", "question": "Name the school/club team for 9", "context": "CREATE TABLE table_15463188_16 (school_club_team VARCHAR, number VARCHAR)"}, {"answer": "SELECT school FROM table_15475116_1 WHERE colors = \"Maroon and White\"", "question": "What are all the schools that use the colors maroon and white", "context": "CREATE TABLE table_15475116_1 (school VARCHAR, colors VARCHAR)"}, {"answer": "SELECT colors FROM table_15475116_1 WHERE school = \"Middletown High school\"", "question": "Middletown High School uses which colors", "context": "CREATE TABLE table_15475116_1 (colors VARCHAR, school VARCHAR)"}, {"answer": "SELECT league FROM table_15475116_1 WHERE nickname = \"Cavaliers\"", "question": "What league does the team with the nickname Cavaliers belong to", "context": "CREATE TABLE table_15475116_1 (league VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT division FROM table_15475116_1 WHERE nickname = \"Silver Eagles\"", "question": "In what division will you find the team nicknamed the Silver Eagles", "context": "CREATE TABLE table_15475116_1 (division VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT league FROM table_15475116_1 WHERE school = \"Delaware Military Academy\"", "question": "What league does Delaware Military Academy belong to", "context": "CREATE TABLE table_15475116_1 (league VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_15572443_1 WHERE election_date = \"December 1799\"", "question": "Name the number of districts for december 1799", "context": "CREATE TABLE table_15572443_1 (district VARCHAR, election_date VARCHAR)"}, {"answer": "SELECT vacator FROM table_15572443_1 WHERE took_seat = \"January 29, 1813\"", "question": "Name the vacator for took seat being january 29, 1813", "context": "CREATE TABLE table_15572443_1 (vacator VARCHAR, took_seat VARCHAR)"}, {"answer": "SELECT MAX(number_of_s_eva) FROM table_1558077_8", "question": "Name the most number of s eva", "context": "CREATE TABLE table_1558077_8 (number_of_s_eva INTEGER)"}, {"answer": "SELECT COUNT(lunar_blastoff_date) FROM table_1558077_8 WHERE mission_name = \"Apollo 11\"", "question": "Name the total number of luna blastoff date for apollo 11", "context": "CREATE TABLE table_1558077_8 (lunar_blastoff_date VARCHAR, mission_name VARCHAR)"}, {"answer": "SELECT mission_name FROM table_1558077_8 WHERE lunar_blastoff_date = \"21 November 1969\"", "question": "Name the mission name for 21 november 1969", "context": "CREATE TABLE table_1558077_8 (mission_name VARCHAR, lunar_blastoff_date VARCHAR)"}, {"answer": "SELECT lunar_landing_site FROM table_1558077_8 WHERE lunar_landing_date = \"19 November 1969\"", "question": "Name the lunar landing site for 19 november 1969", "context": "CREATE TABLE table_1558077_8 (lunar_landing_site VARCHAR, lunar_landing_date VARCHAR)"}, {"answer": "SELECT mission_name FROM table_1558077_8 WHERE lunar_landing_site = \"Ocean of Storms\"", "question": "Name the mission name for ocean of storms", "context": "CREATE TABLE table_1558077_8 (mission_name VARCHAR, lunar_landing_site VARCHAR)"}, {"answer": "SELECT award_name FROM table_15584199_2 WHERE team_number = 679", "question": "What award did team 679 win?", "context": "CREATE TABLE table_15584199_2 (award_name VARCHAR, team_number VARCHAR)"}, {"answer": "SELECT no FROM table_15621965_17 WHERE school_club_team = \"Arizona\"", "question": "Which number belonged to the school team from Arizona?", "context": "CREATE TABLE table_15621965_17 (no VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_15621965_17 WHERE position = \"Guard\" AND school_club_team = \"Wake Forest\"", "question": "What is the latest number of the guard position from the Wake Forest school team?", "context": "CREATE TABLE table_15621965_17 (no INTEGER, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_15621965_17 WHERE player = \"Jeryl Sasser\"", "question": "List all years in Orlando where Jeryl Sasser was a player.", "context": "CREATE TABLE table_15621965_17 (years_in_orlando VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_15621965_18 WHERE position = \"Forward-Center\"", "question": "WHAT WAS THE NUMBER OF THE ONLY FORWARD-CENTER TO MAKE THE ROSTER?", "context": "CREATE TABLE table_15621965_18 (no INTEGER, position VARCHAR)"}, {"answer": "SELECT no FROM table_15621965_18 WHERE position = \"Guard\" AND school_club_team = \"Oklahoma State\"", "question": "WHAT WAS THE JERSEY NUMBER OF THE ROSTER PLAYER FROM OKLAHOMA STATE WHO PLAYED GUARD?", "context": "CREATE TABLE table_15621965_18 (no VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_15621965_18 WHERE school_club_team = \"Arizona\"", "question": "WHO IS THE PLAYER(S) ON THE ROSTER FROM SCHOOL/CLUB TEAM ARIZONA?", "context": "CREATE TABLE table_15621965_18 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MIN(fleet_size) FROM table_15637071_1 WHERE callsign = \"COOL RED\"", "question": "What is the fleet size of the airline which has a callsign of cool red?", "context": "CREATE TABLE table_15637071_1 (fleet_size INTEGER, callsign VARCHAR)"}, {"answer": "SELECT COUNT(fleet_size) FROM table_15637071_1 WHERE iata = \"5J\"", "question": "How large is the fleet size of the airline with the IATA code of 5j?", "context": "CREATE TABLE table_15637071_1 (fleet_size VARCHAR, iata VARCHAR)"}, {"answer": "SELECT commenced_operations FROM table_15637071_1 WHERE headquarters = \"Angeles City\"", "question": "Which year did the Angeles City based airline begin operations?", "context": "CREATE TABLE table_15637071_1 (commenced_operations VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT MIN(commenced_operations) FROM table_15637071_1", "question": "When did the oldest airline start operations?", "context": "CREATE TABLE table_15637071_1 (commenced_operations INTEGER)"}, {"answer": "SELECT headquarters FROM table_15637071_1 WHERE icao = \"AAU\"", "question": "Where is the headquarters of the airline which has the ICAO code of AAU?", "context": "CREATE TABLE table_15637071_1 (headquarters VARCHAR, icao VARCHAR)"}, {"answer": "SELECT uranium_required_2006_08 FROM table_15624586_2 WHERE country = \"Russia\"", "question": "How much uranium did Russia use in 2006 to 2008?", "context": "CREATE TABLE table_15624586_2 (uranium_required_2006_08 VARCHAR, country VARCHAR)"}, {"answer": "SELECT indigenous_mining_production_2006 FROM table_15624586_2 WHERE _percentage_of_world_demand = \"24.0%\"", "question": "Which country mines 24.0% of the world demand of uranium?", "context": "CREATE TABLE table_15624586_2 (indigenous_mining_production_2006 VARCHAR, _percentage_of_world_demand VARCHAR)"}, {"answer": "SELECT deficit___surplus_ FROM table_15624586_2 WHERE _percentage_of_world_demand = \"5.2%\"", "question": "What is the deficit (-surplus) of the country who use 5.2% of the world demand of uranium?", "context": "CREATE TABLE table_15624586_2 (deficit___surplus_ VARCHAR, _percentage_of_world_demand VARCHAR)"}, {"answer": "SELECT indigenous_mining_production_2006 FROM table_15624586_2 WHERE _percentage_of_world_demand = \"3.4%\"", "question": "What is the  indigenous mining production of the country that uses 3.4% of the world demand?", "context": "CREATE TABLE table_15624586_2 (indigenous_mining_production_2006 VARCHAR, _percentage_of_world_demand VARCHAR)"}, {"answer": "SELECT deficit___surplus_ FROM table_15624586_2 WHERE country = \"France\"", "question": "What is the deficit (-surplus) of France?", "context": "CREATE TABLE table_15624586_2 (deficit___surplus_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT pictorials FROM table_1566848_6 WHERE interview_subject = \"Steve Jobs\"", "question": "Name the pictorials when the interview subject is steve jobs", "context": "CREATE TABLE table_1566848_6 (pictorials VARCHAR, interview_subject VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_1566848_6 WHERE centerfold_model = \"Cherie Witter\"", "question": "Name the 20 questions when centerfold model is cherie witter", "context": "CREATE TABLE table_1566848_6 (centerfold_model VARCHAR)"}, {"answer": "SELECT COUNT(pictorials) FROM table_1566848_6 WHERE date = \"5-85\"", "question": "Name the number of pictorials for 5-85", "context": "CREATE TABLE table_1566848_6 (pictorials VARCHAR, date VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_1566848_6 WHERE interview_subject = \"Steve Jobs\"", "question": "Name the centerfold model when interview subject is steve jobs", "context": "CREATE TABLE table_1566848_6 (centerfold_model VARCHAR, interview_subject VARCHAR)"}, {"answer": "SELECT date FROM table_1566852_10 WHERE cover_model = \"Aubrey O'Day\"", "question": "Which date contained Aubrey O'Day as the cover model?", "context": "CREATE TABLE table_1566852_10 (date VARCHAR, cover_model VARCHAR)"}, {"answer": "SELECT cover_model FROM table_1566852_10 WHERE interview_subject = \"Benicio del Toro\"", "question": "Who were the cover models in the edition that included Benicio Del Toro as the interview subject?", "context": "CREATE TABLE table_1566852_10 (cover_model VARCHAR, interview_subject VARCHAR)"}, {"answer": "SELECT COUNT(cover_model) FROM table_1566852_10 WHERE centerfold_model = \"Jennifer Pershing\"", "question": "How many cover models were on the edition that featured Jennifer Pershing as the centerfold?", "context": "CREATE TABLE table_1566852_10 (cover_model VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_15717093_1 WHERE series__number = 102", "question": "What season number corresponds to series number 102?", "context": "CREATE TABLE table_15717093_1 (season__number INTEGER, series__number VARCHAR)"}, {"answer": "SELECT title FROM table_15717093_1 WHERE us_viewers__millions_ = \"14.39\"", "question": "What was the title when there were 14.39 million viewers?", "context": "CREATE TABLE table_15717093_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_15717093_1 WHERE us_viewers__millions_ = \"15.85\"", "question": "Who was the writer when there were 15.85 million US viewers?", "context": "CREATE TABLE table_15717093_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(years_participated) FROM table_1571238_2 WHERE team = \"Notre Dame\"", "question": "How many years did notre dame participate? ", "context": "CREATE TABLE table_1571238_2 (years_participated INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(fourth_place) FROM table_1571238_2 WHERE team = \"Colgate\"", "question": "When colgate is the team how many times did they place fourth?", "context": "CREATE TABLE table_1571238_2 (fourth_place VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(fourth_place) FROM table_1571238_2 WHERE team = \"Lake Superior State\"", "question": "When the team is lake superior state how many times did they place fourth?", "context": "CREATE TABLE table_1571238_2 (fourth_place INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(fourth_place) FROM table_1571238_2 WHERE team = \"Yale\"", "question": "When the team is yale what is max amount of times they placed fourth?", "context": "CREATE TABLE table_1571238_2 (fourth_place INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(third_place) FROM table_1571238_2 WHERE team = \"Toronto\"", "question": "When the team is Toronto how many times did they place third?", "context": "CREATE TABLE table_1571238_2 (third_place VARCHAR, team VARCHAR)"}, {"answer": "SELECT current_streak FROM table_15740666_4 WHERE kansas_state_vs = \"TCU\"", "question": "What is the current streak against TCU?", "context": "CREATE TABLE table_15740666_4 (current_streak VARCHAR, kansas_state_vs VARCHAR)"}, {"answer": "SELECT at_manhattan FROM table_15740666_4 WHERE kansas_state_vs = \"TCU\"", "question": "What is the at Manhattan record against TCU?", "context": "CREATE TABLE table_15740666_4 (at_manhattan VARCHAR, kansas_state_vs VARCHAR)"}, {"answer": "SELECT airdate FROM table_15739098_1 WHERE director = \"George Spenton-Foster\"", "question": "What is the airdate when the director is george spenton-foster", "context": "CREATE TABLE table_15739098_1 (airdate VARCHAR, director VARCHAR)"}, {"answer": "SELECT MAX(episode) FROM table_15739098_1 WHERE adapted_by = \"Leon Griffiths\"", "question": "Name the msot episode that was adapted by leon griffiths", "context": "CREATE TABLE table_15739098_1 (episode INTEGER, adapted_by VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_15739098_1 WHERE story = \"Alan Nourse\"", "question": "Name the number of episodes for alan nourse", "context": "CREATE TABLE table_15739098_1 (episode VARCHAR, story VARCHAR)"}, {"answer": "SELECT viewer FROM table_1574968_1 WHERE language = \"troff (typesetter runoff) , groff (GNU runoff)\"", "question": "Which viewers have the language of troff (typesetter runoff) , groff (gnu runoff)?", "context": "CREATE TABLE table_1574968_1 (viewer VARCHAR, language VARCHAR)"}, {"answer": "SELECT creator FROM table_1574968_1 WHERE viewer = \"GDDM, AFP viewer\"", "question": "Who is the creator when the view happens to gddm, afp viewer?", "context": "CREATE TABLE table_1574968_1 (creator VARCHAR, viewer VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_15778392_1 WHERE theme = \"Year They Were Born\"", "question": "WHERE THE THEME WAS \"YEAR THEY WERE BORN,\" WHAT THE TOTAL NUMBER OF RESULTS?", "context": "CREATE TABLE table_15778392_1 (result VARCHAR, theme VARCHAR)"}, {"answer": "SELECT result FROM table_15778392_1 WHERE original_artist = \"Betty Everett\"", "question": "WHAT IS THE RESULT FOR THE SONG WHERE THE ORIGINAL ARTIST IS BETTY EVERETT?", "context": "CREATE TABLE table_15778392_1 (result VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT song_choice FROM table_15778392_1 WHERE week__number = \"Top 10\"", "question": "WHAT WAS HER SONG CHOICE WHEN THE WEEK WAS TOP 10?", "context": "CREATE TABLE table_15778392_1 (song_choice VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT theme FROM table_15778392_1 WHERE week__number = \"Top 8\"", "question": "WHERE THE WEEK NUMBER WAS TOP 8, WHAT WAS THE THEME?", "context": "CREATE TABLE table_15778392_1 (theme VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_15780049_6 WHERE game = 38", "question": "What is the location and what is the attendance of game 38?", "context": "CREATE TABLE table_15780049_6 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_15780049_6 WHERE date = \"January 11\"", "question": "What was the games score on January 11?", "context": "CREATE TABLE table_15780049_6 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_15780049_6 WHERE game = 33", "question": "What is the score of game 33?", "context": "CREATE TABLE table_15780049_6 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_15780049_6 WHERE team = \"Cleveland\"", "question": "Who had the most assist when the opponent was Cleveland?", "context": "CREATE TABLE table_15780049_6 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_15780049_6 WHERE date = \"January 19\"", "question": "What was the score of the game played on January 19?", "context": "CREATE TABLE table_15780049_6 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_15780718_9 WHERE team = \"New Jersey\"", "question": "What is the Raptors' record against New Jersey?", "context": "CREATE TABLE table_15780718_9 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_15780718_6 WHERE score = \"W 105\u201391 (OT)\"", "question": "Name for the high rebounds when score is  w 105\u201391 (ot)", "context": "CREATE TABLE table_15780718_6 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT order__number FROM table_15796100_1 WHERE theme = \"Mariah Carey\"", "question": "What is the order number for the theme of Mariah Carey?", "context": "CREATE TABLE table_15796100_1 (order__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT original_artist FROM table_15796100_1 WHERE theme = \"Year They Were Born\"", "question": "Who is the original artist for the theme \"Year they were born?\"", "context": "CREATE TABLE table_15796100_1 (original_artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT theme FROM table_15796100_1 WHERE original_artist = \"Dolly Parton\"", "question": "What theme name has the original artist of Dolly Parton?", "context": "CREATE TABLE table_15796100_1 (theme VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT COUNT(theme) FROM table_15796100_1 WHERE original_artist = \"Judy Garland\"", "question": "How many themes have the original artist of Judy Garland?", "context": "CREATE TABLE table_15796100_1 (theme VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_15824796_5 WHERE season__number = 4", "question": "What is the original airdate when the season number is 4?", "context": "CREATE TABLE table_15824796_5 (original_air_date VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT MIN(european_parliament_seats) FROM table_158282_1 WHERE international_affiliation = \"Global Greens, EGP\"", "question": "What is the smallest number of European Parliament sets when the international affiliation is global greens, egp? ", "context": "CREATE TABLE table_158282_1 (european_parliament_seats INTEGER, international_affiliation VARCHAR)"}, {"answer": "SELECT COUNT(senate_seats) FROM table_158282_1 WHERE political_leader = \"Emile Roemer\"", "question": "How many categories of Senate Seats does Emile Roemer have? ", "context": "CREATE TABLE table_158282_1 (senate_seats VARCHAR, political_leader VARCHAR)"}, {"answer": "SELECT MIN(road_wins) FROM table_1585112_2", "question": "Name the least road wins", "context": "CREATE TABLE table_1585112_2 (road_wins INTEGER)"}, {"answer": "SELECT MAX(num) FROM table_1585112_2 WHERE l < 6.0", "question": "Name the maximum mum  l is less than 6.0", "context": "CREATE TABLE table_1585112_2 (num INTEGER, l INTEGER)"}, {"answer": "SELECT MAX(races) FROM table_15852257_1", "question": "What is the highest value for race?", "context": "CREATE TABLE table_15852257_1 (races INTEGER)"}, {"answer": "SELECT podiums FROM table_15852257_1 WHERE final_placing = \"10th\"", "question": "Which podiums have a final placing of 10th?", "context": "CREATE TABLE table_15852257_1 (podiums VARCHAR, final_placing VARCHAR)"}, {"answer": "SELECT COUNT(poles) FROM table_15852257_1 WHERE series = \"Formula Renault 2.0 Eurocup\" AND final_placing = \"10th\"", "question": "What is the total number of poles values in the Formula Renault 2.0 Eurocup with a 10th final placing?", "context": "CREATE TABLE table_15852257_1 (poles VARCHAR, series VARCHAR, final_placing VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_15869204_5 WHERE game = 27", "question": "Name the total number of record for 27", "context": "CREATE TABLE table_15869204_5 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_15869204_5 WHERE date = \"December 14\"", "question": "Name the high assists for december 14", "context": "CREATE TABLE table_15869204_5 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_15869204_5 WHERE location_attendance = \"Delta Center 19,639\"", "question": "Name the high assists for delta center 19,639", "context": "CREATE TABLE table_15869204_5 (high_assists VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT score FROM table_15872814_3 WHERE team = \"Washington\"", "question": "Name the score for washington", "context": "CREATE TABLE table_15872814_3 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_15872814_3 WHERE date = \"November 9\"", "question": "Name the team for november 9", "context": "CREATE TABLE table_15872814_3 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_15872814_4 WHERE date = \"December 22\"", "question": "Name the most game for december 22", "context": "CREATE TABLE table_15872814_4 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT score FROM table_15872814_4 WHERE date = \"December 28\"", "question": "Name the score for december 28", "context": "CREATE TABLE table_15872814_4 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_15887683_4 WHERE television_service = \"Sky Calcio 2\"", "question": "What country has the Sky Calcio 2 tv service?", "context": "CREATE TABLE table_15887683_4 (country VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT ppv FROM table_15887683_4 WHERE television_service = \"Sky Calcio 6 HD\"", "question": "Does the sky calcio 6 hd have PPV?", "context": "CREATE TABLE table_15887683_4 (ppv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT ppv FROM table_15887683_4 WHERE television_service = \"Sky Calcio 5\"", "question": "Do the Sky Calcio 5 channels have PPV?", "context": "CREATE TABLE table_15887683_4 (ppv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT country FROM table_15887683_6 WHERE television_service = \"Sky Primafila 7 HD\"", "question": "Name the country for sky primafila 7 hd", "context": "CREATE TABLE table_15887683_6 (country VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT COUNT(package_option) FROM table_15887683_6 WHERE television_service = \"Sky Primafila 24\"", "question": "Name the number of package/option for sky primafila 24", "context": "CREATE TABLE table_15887683_6 (package_option VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT hdtv FROM table_15887683_6 WHERE n\u00b0 = 378", "question": "Name the hdtv when number is 378", "context": "CREATE TABLE table_15887683_6 (hdtv VARCHAR, n\u00b0 VARCHAR)"}, {"answer": "SELECT hdtv FROM table_15887683_6 WHERE television_service = \"Sky Primafila 17\"", "question": "Name the hdtv for sky primafila 17", "context": "CREATE TABLE table_15887683_6 (hdtv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT television_service FROM table_15887683_6 WHERE content = \"Primafila Hot Club\"", "question": "Name the television service when primafila hot club", "context": "CREATE TABLE table_15887683_6 (television_service VARCHAR, content VARCHAR)"}, {"answer": "SELECT n\u00b0 FROM table_15887683_8 WHERE television_service = \"Fox News Channel\"", "question": "Name the number for fox news channel", "context": "CREATE TABLE table_15887683_8 (n\u00b0 VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT dar FROM table_15887683_8 WHERE language = \"cinese\"", "question": "Name the dar for cinese", "context": "CREATE TABLE table_15887683_8 (dar VARCHAR, language VARCHAR)"}, {"answer": "SELECT language FROM table_15887683_8 WHERE television_service = \"Fox Business Network\"", "question": "Name the language for fox business network", "context": "CREATE TABLE table_15887683_8 (language VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT package_option FROM table_15887683_8 WHERE country = \"Giappone\"", "question": "Name the package/option for giappone", "context": "CREATE TABLE table_15887683_8 (package_option VARCHAR, country VARCHAR)"}, {"answer": "SELECT package_option FROM table_15887683_8 WHERE n\u00b0 = 543", "question": "Name the package/option for number being 543", "context": "CREATE TABLE table_15887683_8 (package_option VARCHAR, n\u00b0 VARCHAR)"}, {"answer": "SELECT aspect_ratio FROM table_15928363_1 WHERE horizontal = 720", "question": "Name the aspect ratio for 720", "context": "CREATE TABLE table_15928363_1 (aspect_ratio VARCHAR, horizontal VARCHAR)"}, {"answer": "SELECT COUNT(horizontal) FROM table_15928363_1 WHERE framerate___hz__ = \"25\"", "question": "Name the number of horizontal when framerate hz is 25", "context": "CREATE TABLE table_15928363_1 (horizontal VARCHAR, framerate___hz__ VARCHAR)"}, {"answer": "SELECT mccain__percentage FROM table_15929156_3 WHERE county = \"Dukes\"", "question": "Name the mccain % for dukes", "context": "CREATE TABLE table_15929156_3 (mccain__percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT COUNT(county) FROM table_15929156_3 WHERE obama_votes = 49558", "question": "Name the number of counties for obama votes for 49558", "context": "CREATE TABLE table_15929156_3 (county VARCHAR, obama_votes VARCHAR)"}, {"answer": "SELECT COUNT(others_votes) FROM table_15929156_3 WHERE others__percentage = \"2.0%\"", "question": "Name the number of others votes for when others % is 2.0%", "context": "CREATE TABLE table_15929156_3 (others_votes VARCHAR, others__percentage VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_15938543_1 WHERE production_code = 116", "question": "Which series number had the production code of 116", "context": "CREATE TABLE table_15938543_1 (no_in_series VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_15938543_1 WHERE production_code = 109", "question": "Whats the title of the episode with production code 109", "context": "CREATE TABLE table_15938543_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_15938543_1 WHERE written_by = \"Jack Burditt & Robert Carlock\"", "question": "How many episodes were written by Jack Burditt & Robert Carlock", "context": "CREATE TABLE table_15938543_1 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_15938543_1 WHERE us_viewers__million_ = \"5.1\"", "question": "How many episodes had an original air date with 5.1 million viewers", "context": "CREATE TABLE table_15938543_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_15938543_1 WHERE directed_by = \"Dennie Gordon\"", "question": "Who wrote the episode that was directed by Dennie Gordon", "context": "CREATE TABLE table_15938543_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT december FROM table_15945862_1 WHERE september = \"17.1\"", "question": "What septembers are 17.1 in December? ", "context": "CREATE TABLE table_15945862_1 (december VARCHAR, september VARCHAR)"}, {"answer": "SELECT july FROM table_15945862_1 WHERE march = \"0.41\"", "question": "March 0.41 in July? ", "context": "CREATE TABLE table_15945862_1 (july VARCHAR, march VARCHAR)"}, {"answer": "SELECT september FROM table_15945862_1 WHERE november = \"10.35\"", "question": "What september has 10.35 in November? ", "context": "CREATE TABLE table_15945862_1 (september VARCHAR, november VARCHAR)"}, {"answer": "SELECT january FROM table_15945862_1 WHERE june = \"7.34\"", "question": "January 7.34 where is June ?", "context": "CREATE TABLE table_15945862_1 (january VARCHAR, june VARCHAR)"}, {"answer": "SELECT december FROM table_15945862_1 WHERE january = \"8.77\"", "question": "What December is 8.77 in January ", "context": "CREATE TABLE table_15945862_1 (december VARCHAR, january VARCHAR)"}, {"answer": "SELECT genre FROM table_1601792_3 WHERE station = \"Hot FM\"", "question": "What is the genre for the hot fm station?", "context": "CREATE TABLE table_1601792_3 (genre VARCHAR, station VARCHAR)"}, {"answer": "SELECT COUNT(frequency) FROM table_1601792_3 WHERE station = \"Hot FM\"", "question": "What is the frequency of hot fm?", "context": "CREATE TABLE table_1601792_3 (frequency VARCHAR, station VARCHAR)"}, {"answer": "SELECT station FROM table_1601792_3 WHERE language = \"Tamil Malay\"", "question": "What is the name of the station where the language is tamil malay?", "context": "CREATE TABLE table_1601792_3 (station VARCHAR, language VARCHAR)"}, {"answer": "SELECT operator FROM table_1601792_3 WHERE station = \"XFM\"", "question": "Who operates the xfm station?", "context": "CREATE TABLE table_1601792_3 (operator VARCHAR, station VARCHAR)"}, {"answer": "SELECT language FROM table_1601792_3 WHERE station = \"Malacca FM\"", "question": "What is the language of the malacca fm station?", "context": "CREATE TABLE table_1601792_3 (language VARCHAR, station VARCHAR)"}, {"answer": "SELECT television_station FROM table_1601792_4 WHERE transmitted = \"20 kW\" AND frequency = \"48 UHF\"", "question": "What is the station that is transmitted at 20 kw and has a frequency of 48 uhf?", "context": "CREATE TABLE table_1601792_4 (television_station VARCHAR, transmitted VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT COUNT(television_station) FROM table_1601792_4 WHERE frequency = \"35 UHF\"", "question": "How many stations have a 35 uhf frequency?", "context": "CREATE TABLE table_1601792_4 (television_station VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT site FROM table_1601792_4 WHERE television_station = \"8TV\"", "question": "What are the site(s) for tv station 8tv?", "context": "CREATE TABLE table_1601792_4 (site VARCHAR, television_station VARCHAR)"}, {"answer": "SELECT network FROM table_1601792_4 WHERE television_station = \"TV1\"", "question": "What are the network(s) for tv1?", "context": "CREATE TABLE table_1601792_4 (network VARCHAR, television_station VARCHAR)"}, {"answer": "SELECT COUNT(transmitted) FROM table_1601792_4 WHERE frequency = \"7 UHF\"", "question": "How many stations are transmitted on frequency 7 uhf?", "context": "CREATE TABLE table_1601792_4 (transmitted VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT site FROM table_1601792_4 WHERE television_station = \"TV3\"", "question": "What site(s) for tv station tv3?", "context": "CREATE TABLE table_1601792_4 (site VARCHAR, television_station VARCHAR)"}, {"answer": "SELECT COUNT(headphone_class) FROM table_1601027_2 WHERE headphone_model = \"SR100\"", "question": "Name the number of headphone class for sr100", "context": "CREATE TABLE table_1601027_2 (headphone_class VARCHAR, headphone_model VARCHAR)"}, {"answer": "SELECT succeeded_by FROM table_1601027_2 WHERE earpads = \"Foam\"", "question": "Name what succeeded by for foam", "context": "CREATE TABLE table_1601027_2 (succeeded_by VARCHAR, earpads VARCHAR)"}, {"answer": "SELECT headphone_model FROM table_1601027_2 WHERE succeeded_by = \"SR125\"", "question": "Name the headphone model for succeeded by sr125", "context": "CREATE TABLE table_1601027_2 (headphone_model VARCHAR, succeeded_by VARCHAR)"}, {"answer": "SELECT driver_matched_db FROM table_1601027_2 WHERE headphone_class = \"Joseph Grado Signature\"", "question": "Name the driver matched db for joseph grado signature", "context": "CREATE TABLE table_1601027_2 (driver_matched_db VARCHAR, headphone_class VARCHAR)"}, {"answer": "SELECT game_site FROM table_16028479_2 WHERE attendance = 79176", "question": "At which stadiums was attendance total 79176?", "context": "CREATE TABLE table_16028479_2 (game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_16034882_3 WHERE club = \"FK Prienai\"", "question": "how many times were points counted for fk prienai", "context": "CREATE TABLE table_16034882_3 (points VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_16034882_3 WHERE club = \"Sveikata Kybartai\"", "question": "what is the highest number of draws for sveikata kybartai", "context": "CREATE TABLE table_16034882_3 (draws INTEGER, club VARCHAR)"}, {"answer": "SELECT COUNT(loses) FROM table_16034882_4 WHERE goals_conceded = 22", "question": "What are the total number of losses for the team who has conceded 22?", "context": "CREATE TABLE table_16034882_4 (loses VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT points FROM table_16034882_4 WHERE wins = 13", "question": "What is the amount of points for the team with 13 wins?", "context": "CREATE TABLE table_16034882_4 (points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_16034882_4 WHERE club = \"\u0160vyturys Klaip\u0117da\"", "question": "How many draws did \u0161vyturys Klaip\u0117da have?", "context": "CREATE TABLE table_16034882_4 (draws INTEGER, club VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_16034882_4 WHERE loses = 3", "question": "What position did the team with 3 losses finish?", "context": "CREATE TABLE table_16034882_4 (position INTEGER, loses VARCHAR)"}, {"answer": "SELECT points FROM table_16034882_4 WHERE club = \"Piritas Klaip\u0117da\"", "question": "How many points did piritas klaip\u0117da get?", "context": "CREATE TABLE table_16034882_4 (points VARCHAR, club VARCHAR)"}, {"answer": "SELECT wins FROM table_16034882_4 WHERE points = 42", "question": "How many wins did the team with 42 points get?", "context": "CREATE TABLE table_16034882_4 (wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(goals_scored) FROM table_16034882_2 WHERE goals_conceded = 35", "question": "How many total goals were scored in games where goals conceded was 35?", "context": "CREATE TABLE table_16034882_2 (goals_scored VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT MIN(games_played) FROM table_16034882_2", "question": "What is the fewest number of games played?", "context": "CREATE TABLE table_16034882_2 (games_played INTEGER)"}, {"answer": "SELECT COUNT(loses) FROM table_16034882_2 WHERE goals_scored = 37", "question": "How many games were lost when the goals scored was 37?", "context": "CREATE TABLE table_16034882_2 (loses VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT 2012 AS _democracy_index FROM table_1604579_2 WHERE country = \"Kyrgyzstan\"", "question": "What type of government does Kyrgyzstan have?", "context": "CREATE TABLE table_1604579_2 (country VARCHAR)"}, {"answer": "SELECT 2013 AS _index_of_economic_freedom FROM table_1604579_2 WHERE country = \"Armenia\"", "question": "How economically free is the country of Armenia?", "context": "CREATE TABLE table_1604579_2 (country VARCHAR)"}, {"answer": "SELECT freedom_in_the_world_2013 FROM table_1604579_2 WHERE country = \"Guinea\"", "question": "How much freedom can did the people of Guinea experience in 2013?", "context": "CREATE TABLE table_1604579_2 (freedom_in_the_world_2013 VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(2013 AS _press_freedom_index) FROM table_1604579_2 WHERE country = \"Austria\"", "question": "How many freedom indices does the country of Austria have?", "context": "CREATE TABLE table_1604579_2 (country VARCHAR)"}, {"answer": "SELECT COUNT(elected) FROM table_16185956_1 WHERE district = \"Washington 4\"", "question": "How many times was the incumbent elected in Washington 4 district?", "context": "CREATE TABLE table_16185956_1 (elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT status FROM table_16185956_1 WHERE results = \"63% 37%\"", "question": "What is the status of the district where the result is 63% 37%?", "context": "CREATE TABLE table_16185956_1 (status VARCHAR, results VARCHAR)"}, {"answer": "SELECT 2008 AS _candidates FROM table_16185956_1 WHERE district = \"Washington 1\"", "question": "Who are the candidates in Washington 1 district?", "context": "CREATE TABLE table_16185956_1 (district VARCHAR)"}, {"answer": "SELECT COUNT(2008 AS _candidates) FROM table_16185956_1 WHERE incumbent = \"Doc Hastings\"", "question": "How many groups of candidates are there in there in the district where the incumbent is Doc Hastings?", "context": "CREATE TABLE table_16185956_1 (incumbent VARCHAR)"}, {"answer": "SELECT MAX(counties_carries) FROM table_16186152_1", "question": "What is the highest number of Counties carries?", "context": "CREATE TABLE table_16186152_1 (counties_carries INTEGER)"}, {"answer": "SELECT MAX(state_delegate) FROM table_16186152_1 WHERE candidate = \"Mitt Romney\"", "question": "How many state delegates did Candidate Mitt Romney have?", "context": "CREATE TABLE table_16186152_1 (state_delegate INTEGER, candidate VARCHAR)"}, {"answer": "SELECT delegates FROM table_16186152_1 WHERE candidate = \"John McCain\"", "question": "Candidate John Mccain had how many delegates?", "context": "CREATE TABLE table_16186152_1 (delegates VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT percentage FROM table_16186152_1 WHERE state_delegate = 1662", "question": "What's the percentage when the state delegate is 1662?", "context": "CREATE TABLE table_16186152_1 (percentage VARCHAR, state_delegate VARCHAR)"}, {"answer": "SELECT series_sorted FROM table_1620397_5 WHERE _number = 3", "question": "What series was sorted at number 3?", "context": "CREATE TABLE table_1620397_5 (series_sorted VARCHAR, _number VARCHAR)"}, {"answer": "SELECT doctor FROM table_1620397_5 WHERE series_sorted = \"6EB/B\"", "question": "What was the doctor for sorted series 6eb/b?", "context": "CREATE TABLE table_1620397_5 (doctor VARCHAR, series_sorted VARCHAR)"}, {"answer": "SELECT doctor FROM table_1620397_5 WHERE author = \"Gary Hopkins Category:Articles with hCards\"", "question": "What was the doctor when the author was Gary Hopkins category:articles with hcards?", "context": "CREATE TABLE table_1620397_5 (doctor VARCHAR, author VARCHAR)"}, {"answer": "SELECT municipality FROM table_16278673_1 WHERE population = \"57\"", "question": "Name the municpality for 57 populaton", "context": "CREATE TABLE table_16278673_1 (municipality VARCHAR, population VARCHAR)"}, {"answer": "SELECT population FROM table_16278673_1 WHERE municipality = \"S\u00f8rv\u00e1gur\"", "question": "Name the population for s\u00f8rv\u00e1gur", "context": "CREATE TABLE table_16278673_1 (population VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT MIN(inhabitants_per_km\u00b2) FROM table_16278673_1 WHERE markatal = 49", "question": "Name the minimum inhabitants for markatal 49", "context": "CREATE TABLE table_16278673_1 (inhabitants_per_km\u00b2 INTEGER, markatal VARCHAR)"}, {"answer": "SELECT event FROM table_16308030_1 WHERE time = \"1:48.322\"", "question": "How many events have a time of 1:48.322?", "context": "CREATE TABLE table_16308030_1 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_16308030_1 WHERE time = \"1:42.086\"", "question": "How many years have a time of 1:42.086?", "context": "CREATE TABLE table_16308030_1 (year VARCHAR, time VARCHAR)"}, {"answer": "SELECT college FROM table_16376436_1 WHERE player = \"Leon Perry\"", "question": "Which college did Leon Perry attend?", "context": "CREATE TABLE table_16376436_1 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_16376436_1 WHERE college = \"Norfolk State\"", "question": "What is the NFL team for the player who's college was Norfolk State?", "context": "CREATE TABLE table_16376436_1 (nfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_16376436_1 WHERE pick__number = 150", "question": "Which player was pick number 150?", "context": "CREATE TABLE table_16376436_1 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_16376436_1 WHERE position = \"Defensive Back\"", "question": "What college did the defensive back attend?", "context": "CREATE TABLE table_16376436_1 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_16376436_1 WHERE college = \"North Carolina\"", "question": "What is the NFL team for the player who's college was North Carolina?", "context": "CREATE TABLE table_16376436_1 (nfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_16376436_1 WHERE player = \"Garry Lewis\"", "question": "What is the pick number for the player Garry Lewis?", "context": "CREATE TABLE table_16376436_1 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT home_team FROM table_16388398_2 WHERE ground = \"M.C.G.\"", "question": "What is the home team that played on M.C.G. grounds?", "context": "CREATE TABLE table_16388398_2 (home_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_16388398_1 WHERE home_team = \"Brisbane Lions\"", "question": "What was the home team score when Brisbane lions was the home team?", "context": "CREATE TABLE table_16388398_1 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_16388398_1 WHERE ground = \"Manuka Oval\"", "question": "When was the game played on Manuka Oval?", "context": "CREATE TABLE table_16388398_1 (date VARCHAR, ground VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_16388398_1 WHERE away_team = \"Sydney\"", "question": "What was the score for the home team when the away team was Sydney?", "context": "CREATE TABLE table_16388398_1 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_16388478_2 WHERE ground = \"York Park\"", "question": "What were the home team scores at york park?", "context": "CREATE TABLE table_16388478_2 (home_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT COUNT(ground) FROM table_16388478_2 WHERE home_team = \"Sydney\"", "question": "How many locations were there when sydney was the home team?", "context": "CREATE TABLE table_16388478_2 (ground VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_16388478_2 WHERE home_team = \"Carlton\"", "question": "What were the home team scores when carlton was the home team?", "context": "CREATE TABLE table_16388478_2 (home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_16388478_2 WHERE crowd = 13304", "question": "What were all the away teams when the crowd was 13304?", "context": "CREATE TABLE table_16388478_2 (away_team VARCHAR, crowd VARCHAR)"}, {"answer": "SELECT MIN(established) FROM table_1641054_2", "question": "Name the least established", "context": "CREATE TABLE table_1641054_2 (established INTEGER)"}, {"answer": "SELECT MAX(official__number) FROM table_16425614_4 WHERE tf1__number = 42", "question": "Name the most official number for tf1 # being 42", "context": "CREATE TABLE table_16425614_4 (official__number INTEGER, tf1__number VARCHAR)"}, {"answer": "SELECT nickname FROM table_16432543_3 WHERE established = 2002", "question": "What was the nickname Established in 2002?", "context": "CREATE TABLE table_16432543_3 (nickname VARCHAR, established VARCHAR)"}, {"answer": "SELECT location FROM table_16432543_3 WHERE enrollment = 12400", "question": "What school location had an enrollment of 12400?", "context": "CREATE TABLE table_16432543_3 (location VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT COUNT(established) FROM table_16432543_3 WHERE institution = \"University of Maryland\"", "question": "How many teams were established at University of Maryland?", "context": "CREATE TABLE table_16432543_3 (established VARCHAR, institution VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_16432543_3 WHERE nickname = \"Cavaliers\"", "question": "what is the enrollment for the Cavaliers?", "context": "CREATE TABLE table_16432543_3 (enrollment INTEGER, nickname VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_16432543_3", "question": "What is the smallest number of enrolled students?", "context": "CREATE TABLE table_16432543_3 (enrollment INTEGER)"}, {"answer": "SELECT debut_album FROM table_1646960_3 WHERE winning_song = \"Kemenangan Hati\"", "question": "What is the debut album for the artist with the winning song kemenangan hati?", "context": "CREATE TABLE table_1646960_3 (debut_album VARCHAR, winning_song VARCHAR)"}, {"answer": "SELECT winner FROM table_1646960_3 WHERE debut_album = \"Mike\"", "question": "How many winners had a debut album titled \"mike\"?", "context": "CREATE TABLE table_1646960_3 (winner VARCHAR, debut_album VARCHAR)"}, {"answer": "SELECT winning_song FROM table_1646960_3 WHERE debut_album = \"The winner\"", "question": "What is the winning song for the artist with a debut album \"the winner\"?", "context": "CREATE TABLE table_1646960_3 (winning_song VARCHAR, debut_album VARCHAR)"}, {"answer": "SELECT winning_song FROM table_1646960_3 WHERE debut_album = \"Mike\"", "question": "What is the winning song for the artist with a debut album \"mike\"?", "context": "CREATE TABLE table_1646960_3 (winning_song VARCHAR, debut_album VARCHAR)"}, {"answer": "SELECT COUNT(debut_album) FROM table_1646960_3 WHERE winner = \"Mike Mohede\"", "question": "How many debut albums did mike mohede have?", "context": "CREATE TABLE table_1646960_3 (debut_album VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MIN(25 AS _to_29) FROM table_16457934_5", "question": "What is the minimum of 25 to 29?", "context": "CREATE TABLE table_16457934_5 (Id VARCHAR)"}, {"answer": "SELECT MIN(40 AS _to_44) FROM table_16457934_5", "question": "What is the minimum if 40 to 44?", "context": "CREATE TABLE table_16457934_5 (Id VARCHAR)"}, {"answer": "SELECT vfl_club_s_ FROM table_16527640_2 WHERE vfl_games = 23", "question": "What vfl club(s) did players who played 23 cfl games play for?", "context": "CREATE TABLE table_16527640_2 (vfl_club_s_ VARCHAR, vfl_games VARCHAR)"}, {"answer": "SELECT location FROM table_16527640_2 WHERE player = \"Sid O'Neill\"", "question": "What locations did sid o'neill play football?", "context": "CREATE TABLE table_16527640_2 (location VARCHAR, player VARCHAR)"}, {"answer": "SELECT vfl_club_s_ FROM table_16527640_2 WHERE rank_held_at_time_of_death = \"Sergeant, 8th Brigade Australian Field Artillery\"", "question": "What vfl club(s) for players ranked sergeant, 8th brigade australian field artillery at time of death?", "context": "CREATE TABLE table_16527640_2 (vfl_club_s_ VARCHAR, rank_held_at_time_of_death VARCHAR)"}, {"answer": "SELECT COUNT(rank_held_at_time_of_death) FROM table_16527640_2 WHERE player = \"Paddy Rowan\"", "question": "How many players named paddy rowan?", "context": "CREATE TABLE table_16527640_2 (rank_held_at_time_of_death VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(50 AS s) FROM table_16570286_2 WHERE matches = 2", "question": "How many numbers were recorde under 50s when there was 2 matches?", "context": "CREATE TABLE table_16570286_2 (matches VARCHAR)"}, {"answer": "SELECT highest_score FROM table_16570286_2 WHERE innings = 9 AND player = \"Donald Bradman\"", "question": "What was the score when Donald Bradman in 9 innings?", "context": "CREATE TABLE table_16570286_2 (highest_score VARCHAR, innings VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_16570286_2", "question": "What is the highest number of matches?", "context": "CREATE TABLE table_16570286_2 (matches INTEGER)"}, {"answer": "SELECT COUNT(matches) FROM table_16570286_2 WHERE player = \"Arthur Morris\"", "question": "How many numbers were recorded under matches with Arthur Morris?", "context": "CREATE TABLE table_16570286_2 (matches VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_16570286_2 WHERE highest_score = \"143\"", "question": "How many teams were there with a high score of 143?", "context": "CREATE TABLE table_16570286_2 (team VARCHAR, highest_score VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_165732_2 WHERE episode__number = 2", "question": "How many titles does Episode 2 have", "context": "CREATE TABLE table_165732_2 (title VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT title FROM table_165732_2 WHERE episode__number = 2", "question": "What is the title of Episode #2", "context": "CREATE TABLE table_165732_2 (title VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_165732_2 WHERE episode__number = 3", "question": "How many directors did Episode #3 have", "context": "CREATE TABLE table_165732_2 (directed_by VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT position FROM table_16575609_5 WHERE pick__number = 34", "question": "What position is the player drafted with pick 34?", "context": "CREATE TABLE table_16575609_5 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(college) FROM table_16575609_5 WHERE pick__number = 36", "question": "How many colleges did the player drafted at 36 attend?", "context": "CREATE TABLE table_16575609_5 (college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(college) FROM table_16575609_5 WHERE player = \"Jon Gott\"", "question": "How many colleges did Jon Gott attend?", "context": "CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_16575609_5 WHERE player = \"Dante Luciani\"", "question": "Where did Dante Luciani attend college?", "context": "CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_16575609_5 WHERE player = \"Brady Browne\"", "question": "What teak was Brady Browne drafted onto?", "context": "CREATE TABLE table_16575609_5 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT written_by FROM table_16581695_2 WHERE no_in_series = \"4\"", "question": "Who was the writer of the episode number in series 4?", "context": "CREATE TABLE table_16581695_2 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_16581695_2 WHERE written_by = \"Bob Goodman\"", "question": "What is the original air date for the episode written by Bob Goodman?", "context": "CREATE TABLE table_16581695_2 (original_airdate VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_16617011_1 WHERE us_viewers__millions_ = \"14.20\"", "question": "Name the number air date for 14.20 us viewers", "context": "CREATE TABLE table_16617011_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_16617011_1 WHERE us_viewers__millions_ = \"15.15\"", "question": "Name the directed by for 15.15 viewers", "context": "CREATE TABLE table_16617011_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(giants_points) FROM table_16661199_2 WHERE opponents = 31", "question": "Name the number of giants points for opponents being 31", "context": "CREATE TABLE table_16661199_2 (giants_points VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_16661199_2 WHERE giants_points = 10", "question": "Name the most attendance for giants points of 10", "context": "CREATE TABLE table_16661199_2 (attendance INTEGER, giants_points VARCHAR)"}, {"answer": "SELECT distance FROM table_16689920_1 WHERE jockey = \"Kent Desormeaux\" AND date = \"6/7/08\"", "question": "What is the distance for jockey Kent Desormeaux on 6/7/08?", "context": "CREATE TABLE table_16689920_1 (distance VARCHAR, jockey VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(track) FROM table_16689920_1 WHERE time = \"1:48.16\"", "question": "At 1:48.16 what was the number of track time?", "context": "CREATE TABLE table_16689920_1 (track VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(victory_margin__in_lengths_) FROM table_16689920_1 WHERE date = \"8/3/08\"", "question": "With a date of 8/3/08, what was the length of the victory margin?", "context": "CREATE TABLE table_16689920_1 (victory_margin__in_lengths_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_16678052_2 WHERE opponents = 17 AND result = \"Win\"", "question": "On what date did the opponents win with 17 points? ", "context": "CREATE TABLE table_16678052_2 (date VARCHAR, opponents VARCHAR, result VARCHAR)"}, {"answer": "SELECT record FROM table_16678052_2 WHERE opponent = \"Phoenix Cardinals\"", "question": "What record was reached when the Eagles played the Phoenix Cardinals? ", "context": "CREATE TABLE table_16678052_2 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_16710742_3 WHERE opponent = \"Los Angeles Rams\"", "question": "How many times in 1984 did the Falcons play the Los Angeles Rams?", "context": "CREATE TABLE table_16710742_3 (opponents VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_16710742_3 WHERE opponent = \"New Orleans Saints\"", "question": "In 1984, Did the Falcons have a win or loss against the New Orleans Saints?", "context": "CREATE TABLE table_16710742_3 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_16710742_3 WHERE record = \"3-7\"", "question": "Did the Falcons have a win or loss in the game when their record was 3-7?", "context": "CREATE TABLE table_16710742_3 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_16729076_1 WHERE game_site = \"Kingdome\"", "question": "what is the attendance where the game site is kingdome?", "context": "CREATE TABLE table_16729076_1 (attendance INTEGER, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_16729076_1 WHERE opponent = \"Chicago Bears\"", "question": "what date is the opponent is chicago bears?", "context": "CREATE TABLE table_16729076_1 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_16729063_1 WHERE college = \"Mississippi\"", "question": "What team has draft picks from Mississippi?", "context": "CREATE TABLE table_16729063_1 (nfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_16729063_1 WHERE college = \"Washington\"", "question": "How many positions drafted players from Washington?", "context": "CREATE TABLE table_16729063_1 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = \"Defensive End\"", "question": "How many draft picks are there at the Defensive End position?", "context": "CREATE TABLE table_16729063_1 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = \"Linebacker\"", "question": "How many draft picks are there at the linebacker position?", "context": "CREATE TABLE table_16729063_1 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_16729063_1 WHERE player = \"Chris Brewer\"", "question": "What draft pick was Chris Brewer?", "context": "CREATE TABLE table_16729063_1 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(loss) FROM table_1672976_2 WHERE institution = \"Michigan State Spartans\"", "question": "How many losses did the Michigan State Spartans have?", "context": "CREATE TABLE table_1672976_2 (loss INTEGER, institution VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_1672976_2 WHERE institution = \"Northwestern Wildcats\"", "question": "How many wins did the Northwestern Wildcats?", "context": "CREATE TABLE table_1672976_2 (wins INTEGER, institution VARCHAR)"}, {"answer": "SELECT institution FROM table_1672976_2 WHERE wins = 6 AND current_streak = \"Won 2\"", "question": "What institution had 6 wins and a current streak of won 2?", "context": "CREATE TABLE table_1672976_2 (institution VARCHAR, wins VARCHAR, current_streak VARCHAR)"}, {"answer": "SELECT opponents FROM table_16741821_9 WHERE against = \"Slovakia\"", "question": "Who are all the opponents of Slovakia?", "context": "CREATE TABLE table_16741821_9 (opponents VARCHAR, against VARCHAR)"}, {"answer": "SELECT round FROM table_16741821_9 WHERE opponents = \"Jesse Huta Galung Peter Wessels\"", "question": "What is the name of the round against the opponents jesse huta galung peter wessels?", "context": "CREATE TABLE table_16741821_9 (round VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT spi FROM table_16731248_1 WHERE number_on_cyl = \"7\"", "question": "Are there SPI on the number 7 cylinder?", "context": "CREATE TABLE table_16731248_1 (spi VARCHAR, number_on_cyl VARCHAR)"}, {"answer": "SELECT MIN(bypass_ports) FROM table_16731248_1", "question": "What is the minimum number of bypass ports listed?", "context": "CREATE TABLE table_16731248_1 (bypass_ports INTEGER)"}, {"answer": "SELECT tapered_grind FROM table_16731248_1 WHERE engine = \"SureStart\"", "question": "Is there a tapered grind on the Surestart engine?", "context": "CREATE TABLE table_16731248_1 (tapered_grind VARCHAR, engine VARCHAR)"}, {"answer": "SELECT bypass_boosters FROM table_16731248_1 WHERE spi = \"Yes\" AND exhaust_ports = \"Slit\"", "question": "How many bypass boosters are there on the engine with slit exhaust ports and SPI is yes?", "context": "CREATE TABLE table_16731248_1 (bypass_boosters VARCHAR, spi VARCHAR, exhaust_ports VARCHAR)"}, {"answer": "SELECT COUNT(republican) AS :_saxby_chambliss FROM table_16751596_16 WHERE lead_margin = 21", "question": "How many times did Saxby Chambliss have a lead margin of 21?", "context": "CREATE TABLE table_16751596_16 (republican VARCHAR, lead_margin VARCHAR)"}, {"answer": "SELECT MIN(tries_for) FROM table_16770037_4 WHERE w = 4", "question": "Name the least tries for when w is 4", "context": "CREATE TABLE table_16770037_4 (tries_for INTEGER, w VARCHAR)"}, {"answer": "SELECT points FROM table_1676073_13 WHERE points_difference = \"+119\"", "question": "What is the total points when the point difference is +119?", "context": "CREATE TABLE table_1676073_13 (points VARCHAR, points_difference VARCHAR)"}, {"answer": "SELECT points_for FROM table_1676073_13 WHERE points = \"6\"", "question": "What is the points for when the total points is 6?", "context": "CREATE TABLE table_1676073_13 (points_for VARCHAR, points VARCHAR)"}, {"answer": "SELECT club FROM table_1676073_13 WHERE points_for = \"693\"", "question": "What club has 693 points for?", "context": "CREATE TABLE table_1676073_13 (club VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT won FROM table_1676073_13 WHERE points_for = \"565\"", "question": "How many wins does the club with 565 points for have?", "context": "CREATE TABLE table_1676073_13 (won VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_1676073_13 WHERE club = \"Cross Keys RFC\"", "question": "How many losses does Cross Keys RFC have?", "context": "CREATE TABLE table_1676073_13 (lost VARCHAR, club VARCHAR)"}, {"answer": "SELECT lost FROM table_1676073_13 WHERE points_for = \"539\"", "question": "How many losses does the club with 539 points for have?", "context": "CREATE TABLE table_1676073_13 (lost VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT land_area__hectares_ FROM table_16796625_1 WHERE urban_area__locality_ = \"Kaxholmen\"", "question": "How many hectars of land is in Kaxholmen?", "context": "CREATE TABLE table_16796625_1 (land_area__hectares_ VARCHAR, urban_area__locality_ VARCHAR)"}, {"answer": "SELECT COUNT(code) FROM table_16796625_1 WHERE municipality = \"Vellinge municipality\" AND population = 598", "question": "How many codes have a population of 598 in Vellinge Municipality?", "context": "CREATE TABLE table_16796625_1 (code VARCHAR, municipality VARCHAR, population VARCHAR)"}, {"answer": "SELECT urban_area__locality_ FROM table_16796625_1 WHERE code = 4870", "question": "Which urban area has the code 4870?", "context": "CREATE TABLE table_16796625_1 (urban_area__locality_ VARCHAR, code VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_16796625_1 WHERE land_area__hectares_ = \"30.94\"", "question": "How many people live in an area of 30.94 hectares?", "context": "CREATE TABLE table_16796625_1 (population VARCHAR, land_area__hectares_ VARCHAR)"}, {"answer": "SELECT land_area__hectares_ FROM table_16796625_1 WHERE urban_area__locality_ = \"Landsbro\"", "question": "How many hectares of land area is Landsbro?", "context": "CREATE TABLE table_16796625_1 (land_area__hectares_ VARCHAR, urban_area__locality_ VARCHAR)"}, {"answer": "SELECT total FROM table_16779068_5 WHERE one_hand_clean_ & _jerk = \"87.5\" AND snatch = \"87.5\"", "question": "Name the total with one hand clean and jerk is 87.5 and snatch is 87.5", "context": "CREATE TABLE table_16779068_5 (total VARCHAR, snatch VARCHAR, one_hand_clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT snatch FROM table_16779068_5 WHERE body_weight = \"737\"", "question": "Name the snatch when body weight is 73.7", "context": "CREATE TABLE table_16779068_5 (snatch VARCHAR, body_weight VARCHAR)"}, {"answer": "SELECT 3 FROM table_16779068_5 WHERE weightlifter = \"M. Van der Goten ( BEL )\"", "question": "Name the 3 where weightlifter is m. van der goten ( bel )", "context": "CREATE TABLE table_16779068_5 (weightlifter VARCHAR)"}, {"answer": "SELECT assets__billion_$_ FROM table_1682026_2 WHERE company = \"Wells Fargo\"", "question": "What are Wells Fargo's assets?", "context": "CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, company VARCHAR)"}, {"answer": "SELECT company FROM table_1682026_2 WHERE profits__billion_$_ = \"26.9\"", "question": "Which company had profits of 26.9?", "context": "CREATE TABLE table_1682026_2 (company VARCHAR, profits__billion_$_ VARCHAR)"}, {"answer": "SELECT company FROM table_1682026_2 WHERE market_value__billion_$_ = \"147.4\"", "question": "Which company has a market value of 147.4?", "context": "CREATE TABLE table_1682026_2 (company VARCHAR, market_value__billion_$_ VARCHAR)"}, {"answer": "SELECT market_value__billion_$_ FROM table_1682026_2 WHERE assets__billion_$_ = \"2,550\"", "question": "When the assets are 2,550, what is the Market Value?", "context": "CREATE TABLE table_1682026_2 (market_value__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)"}, {"answer": "SELECT assets__billion_$_ FROM table_1682026_2 WHERE headquarters = \"Brazil\"", "question": "What are the assets for company who's headquarters are located in Brazil?", "context": "CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT pop_density__per_km\u00b2_ FROM table_1686313_1 WHERE barangay = \"Tiptip\"", "question": "Name the population density when barangay is tiptip", "context": "CREATE TABLE table_1686313_1 (pop_density__per_km\u00b2_ VARCHAR, barangay VARCHAR)"}, {"answer": "SELECT MIN(population__2007_) FROM table_1686313_1 WHERE barangay = \"Poblacion II\"", "question": "Name the least population 2007 for barangay is poblacion ii", "context": "CREATE TABLE table_1686313_1 (population__2007_ INTEGER, barangay VARCHAR)"}, {"answer": "SELECT score FROM table_16864968_9 WHERE opponent = \"Philadelphia Flyers\"", "question": "Name the score for philadelphia flyers ", "context": "CREATE TABLE table_16864968_9 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_16864968_9 WHERE location = \"Prudential Center\"", "question": "Nam the opponent for prudential center", "context": "CREATE TABLE table_16864968_9 (opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_16864968_9 WHERE attendance = 15046", "question": "Name the location for 15046 attendance", "context": "CREATE TABLE table_16864968_9 (location VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_16864968_8 WHERE opponent = \"Edmonton Oilers\"", "question": "How many people attended the Edmonton Oilers game?", "context": "CREATE TABLE table_16864968_8 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_16864968_8 WHERE game = 70", "question": "How many points were made in game 70?", "context": "CREATE TABLE table_16864968_8 (points VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_16864968_8 WHERE attendance = 19041", "question": "Who was the opponent in the game where 19041 people attended?", "context": "CREATE TABLE table_16864968_8 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_16864968_8 WHERE date = \"March 27, 2009\"", "question": "How many records were made on March 27, 2009?", "context": "CREATE TABLE table_16864968_8 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_16864968_8 WHERE date = \"March 21, 2009\"", "question": "What was the score on March 21, 2009?", "context": "CREATE TABLE table_16864968_8 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_16893837_4 WHERE opponents = \"Margalita Chakhnashvili Salome Devidze\"", "question": "Name the date for margalita chakhnashvili salome devidze", "context": "CREATE TABLE table_16893837_4 (date VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_16940409_1 WHERE team = \"Independiente\"", "question": "Name the most points for independiente", "context": "CREATE TABLE table_16940409_1 (points INTEGER, team VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_16951593_1 WHERE no_in_season = \"1/2\"", "question": "Name the original air date of 1/2 in season", "context": "CREATE TABLE table_16951593_1 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_16951593_1 WHERE no_in_season = \"13\"", "question": "Name the original air date for number in season being 13", "context": "CREATE TABLE table_16951593_1 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT title FROM table_16951593_1 WHERE production_code = \"4014\"", "question": "Namee the title for production code for 4014", "context": "CREATE TABLE table_16951593_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_16951593_1 WHERE no_in_season = \"9\"", "question": "Name the title for number in season 9", "context": "CREATE TABLE table_16951593_1 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT written_by FROM table_16951593_1 WHERE us_viewers__millions_ = \"7.56\"", "question": "Name who wrote the episode that had 7.56 million viewers", "context": "CREATE TABLE table_16951593_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT wins FROM table_1697190_1 WHERE best_finish = \"2nd\"", "question": "Name the wins for best finish being 2nd", "context": "CREATE TABLE table_1697190_1 (wins VARCHAR, best_finish VARCHAR)"}, {"answer": "SELECT MAX(earnings___) AS $__ FROM table_1697190_1 WHERE money_list_rank = 143", "question": "Name the most earnings for money list rank being 143", "context": "CREATE TABLE table_1697190_1 (earnings___ INTEGER, money_list_rank VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_1697190_1 WHERE wins = 0", "question": "Nme the most cuts made for wins being 0", "context": "CREATE TABLE table_1697190_1 (cuts_made INTEGER, wins VARCHAR)"}, {"answer": "SELECT wins FROM table_1697190_1 WHERE tournaments_played = 14", "question": "Name the wins for tournaments played being 14", "context": "CREATE TABLE table_1697190_1 (wins VARCHAR, tournaments_played VARCHAR)"}, {"answer": "SELECT team FROM table_17001658_6 WHERE game = 21", "question": "Against which team was game 21?", "context": "CREATE TABLE table_17001658_6 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_17039232_3 WHERE date_of_vacancy = \"31 December 2008\" AND position_in_table = \"1st\"", "question": "Name the replaced by where date of vacancy is 31 december 2008 where position in table is 1st", "context": "CREATE TABLE table_17039232_3 (replaced_by VARCHAR, date_of_vacancy VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_17039232_3 WHERE position_in_table = \"1st\"", "question": "Name the replaced by for position in table is 1st", "context": "CREATE TABLE table_17039232_3 (replaced_by VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_17039232_3 WHERE date_of_appointment = \"1 July 2008\" AND manner_of_departure = \"Resigned\"", "question": "Name the position in table for 1 july 2008 when manner of departure is resigned", "context": "CREATE TABLE table_17039232_3 (position_in_table VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_17039232_3 WHERE outgoing_manager = \"Kent Nielsen\"", "question": "Name the replaced by when outgoing manager is kent nielsen", "context": "CREATE TABLE table_17039232_3 (replaced_by VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_17039232_3 WHERE position_in_table = \"11th\"", "question": "Name the outgoing manager for position in table being 11th", "context": "CREATE TABLE table_17039232_3 (outgoing_manager VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_1705429_1 WHERE constituency = \"Leitrim\"", "question": "Name the most  number of leitrim", "context": "CREATE TABLE table_1705429_1 (no INTEGER, constituency VARCHAR)"}, {"answer": "SELECT MIN(yes) FROM table_1705429_1 WHERE constituency = \"Dublin South\"", "question": "Name the least yes for dublin south", "context": "CREATE TABLE table_1705429_1 (yes INTEGER, constituency VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_17058151_5 WHERE location_attendance = \"Staples Center 18,997\"", "question": "In how many game was the attendance at Staples Center 18,997? ", "context": "CREATE TABLE table_17058151_5 (game VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_17060277_6 WHERE high_rebounds = \"David Lee (13)\"", "question": "How many different games had David Lee (13) with High rebounds?", "context": "CREATE TABLE table_17060277_6 (score VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_17060277_6 WHERE high_assists = \"Chris Duhon (13)\"", "question": "Which date did Chris Duhon (13) receive high assists?", "context": "CREATE TABLE table_17060277_6 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17060277_7 WHERE team = \"Memphis\"", "question": "Name the high rebounds for memphis", "context": "CREATE TABLE table_17060277_7 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_17060277_7 WHERE high_assists = \"Chris Duhon , Nate Robinson , David Lee (3)\"", "question": "Name the team for chris duhon , nate robinson , david lee (3)", "context": "CREATE TABLE table_17060277_7 (team VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_1708050_3 WHERE position = \"16th\"", "question": "Name the most wins where position is 16th", "context": "CREATE TABLE table_1708050_3 (wins INTEGER, position VARCHAR)"}, {"answer": "SELECT COUNT(avg_start) FROM table_1708050_3 WHERE year = 2000", "question": "Name the total number when avg start is 2000", "context": "CREATE TABLE table_1708050_3 (avg_start VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(poles) FROM table_1708050_3", "question": "Name the most poles", "context": "CREATE TABLE table_1708050_3 (poles INTEGER)"}, {"answer": "SELECT indianapolis_concerts FROM table_17085724_1 WHERE character = \"Dr. Alexandre Manette\"", "question": "Name the indanapolis concerts for dr. alexandre manette", "context": "CREATE TABLE table_17085724_1 (indianapolis_concerts VARCHAR, character VARCHAR)"}, {"answer": "SELECT brighton_cast FROM table_17085724_1 WHERE character = \"Jerry Cruncher\"", "question": "Name the brighton cast for jerry cruncher", "context": "CREATE TABLE table_17085724_1 (brighton_cast VARCHAR, character VARCHAR)"}, {"answer": "SELECT sarasota FROM table_17085724_1 WHERE indianapolis_concerts = \"Samantha Sharpe\"", "question": "Name the sarasota samantha sharpe", "context": "CREATE TABLE table_17085724_1 (sarasota VARCHAR, indianapolis_concerts VARCHAR)"}, {"answer": "SELECT indianapolis_concerts FROM table_17085724_1 WHERE sarasota = \"Les Minski\"", "question": "Name the indianapolis concerts for les minski", "context": "CREATE TABLE table_17085724_1 (indianapolis_concerts VARCHAR, sarasota VARCHAR)"}, {"answer": "SELECT brighton_cast FROM table_17085724_1 WHERE indianapolis_concerts = \"Andrew Verala\"", "question": "Name the brighton cast for andrew verala", "context": "CREATE TABLE table_17085724_1 (brighton_cast VARCHAR, indianapolis_concerts VARCHAR)"}, {"answer": "SELECT indianapolis_concerts FROM table_17085724_1 WHERE brighton_cast = \"Paul Baker\"", "question": "Name the indianapolis concerts for paul baker", "context": "CREATE TABLE table_17085724_1 (indianapolis_concerts VARCHAR, brighton_cast VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_170961_2 WHERE population = 1599", "question": "when the population was 1599, what was the census ranking?", "context": "CREATE TABLE table_170961_2 (census_ranking VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(official_name) FROM table_170961_2 WHERE area_km_2 = \"508.30\"", "question": "What is the name of the parish where the area is 508.30?", "context": "CREATE TABLE table_170961_2 (official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT COUNT(census_ranking) FROM table_170961_2 WHERE area_km_2 = \"191.43\"", "question": "at area 191.43 what is the total number of census ranking?", "context": "CREATE TABLE table_170961_2 (census_ranking VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_170961_2 WHERE census_ranking = \"1,184 of 5,008\"", "question": "At census ranking 1,184 of 5,008, what was the minimum population?", "context": "CREATE TABLE table_170961_2 (population INTEGER, census_ranking VARCHAR)"}, {"answer": "SELECT population FROM table_170961_2 WHERE area_km_2 = \"113.12\"", "question": "at the area of 113.12, what was the population?", "context": "CREATE TABLE table_170961_2 (population VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT status FROM table_170969_2 WHERE official_name = \"Saint George\"", "question": "What is the status for Saint George? ", "context": "CREATE TABLE table_170969_2 (status VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT area_km_2 FROM table_170969_2 WHERE official_name = \"Dufferin\"", "question": "What is the area in km2 for Dufferin? ", "context": "CREATE TABLE table_170969_2 (area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT COUNT(area_km_2) FROM table_170969_2 WHERE official_name = \"West Isles\"", "question": "How many areas are named West Isles? ", "context": "CREATE TABLE table_170969_2 (area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT COUNT(census_ranking) FROM table_170969_2 WHERE area_km_2 = \"375.06\"", "question": "How many areas of 375.06 km 2 have a census ranking? ", "context": "CREATE TABLE table_170969_2 (census_ranking VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_170969_2 WHERE area_km_2 = \"78.67\"", "question": "What is the census ranking when the area is 78.67 ?", "context": "CREATE TABLE table_170969_2 (census_ranking VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17102076_9 WHERE date = \"March 15\"", "question": "Who had high assists on March 15? ", "context": "CREATE TABLE table_17102076_9 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_17102076_9 WHERE date = \"March 20\"", "question": "What team played on March 20? ", "context": "CREATE TABLE table_17102076_9 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(date_of_vacancy) FROM table_17115950_2 WHERE replaced_by = \"Viorel Moldovan\"", "question": "How many times did Viorel Moldovan replaced a manager?", "context": "CREATE TABLE table_17115950_2 (date_of_vacancy VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_17115950_2 WHERE replaced_by = \"Viorel Moldovan\"", "question": "What was the date of vacancy when Viorel Moldovan replaced a manager?", "context": "CREATE TABLE table_17115950_2 (date_of_vacancy VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_17115950_2 WHERE team = \"CFR Cluj\"", "question": "Who replaced the manager on Team Cfr Cluj?", "context": "CREATE TABLE table_17115950_2 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_17115950_2 WHERE replaced_by = \"Marian Bucurescu\"", "question": "Who was the outgoing manager replaced by Marian Bucurescu?", "context": "CREATE TABLE table_17115950_2 (outgoing_manager VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_17115950_2 WHERE outgoing_manager = \"Nicolae Manea\"", "question": "What was the manner of departure of Nicolae Manea?", "context": "CREATE TABLE table_17115950_2 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT score FROM table_17118657_7 WHERE game = 12", "question": "What was the score on game number 12?", "context": "CREATE TABLE table_17118657_7 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_17118657_7 WHERE high_assists = \"Canty (5)\"", "question": "What was the record when Canty (5) was the high assists?", "context": "CREATE TABLE table_17118657_7 (record VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_17118657_7 WHERE location_attendance = \"UIC Pavilion 6,304\"", "question": "How many players received high points where location/attendance was UIC Pavilion 6,304 respectively?", "context": "CREATE TABLE table_17118657_7 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_17118657_7 WHERE high_assists = \"Canty (6)\"", "question": "On what date did Canty (6) receive high assists?", "context": "CREATE TABLE table_17118657_7 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_17118657_7 WHERE location_attendance = \"US Airways Center 7,311\"", "question": "Which game number had a location/attendance of US Airways Center 7,311 respectively?", "context": "CREATE TABLE table_17118657_7 (game INTEGER, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_17118657_7 WHERE record = \"1-4\"", "question": "On which date was the record 1-4?", "context": "CREATE TABLE table_17118657_7 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_171236_2 WHERE official_name = \"Westfield\"", "question": "What is the population in Westfield?", "context": "CREATE TABLE table_171236_2 (population VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT area_km_2 FROM table_171236_2 WHERE census_ranking = \"1,016 of 5,008\"", "question": "What is the Area KM 2 of the place that has a Census ranking of 1,016 of 5,008?", "context": "CREATE TABLE table_171236_2 (area_km_2 VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT area_km_2 FROM table_171236_2 WHERE census_ranking = \"1,608 of 5,008\"", "question": "What is the Area KM 2 of the place that has a Census ranking of 1,608 of 5,008?", "context": "CREATE TABLE table_171236_2 (area_km_2 VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT COUNT(area_km_2) FROM table_171236_2 WHERE official_name = \"Rothesay\"", "question": "What is the Area KM 2 of Rothesay?", "context": "CREATE TABLE table_171236_2 (area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT official_name FROM table_171236_2 WHERE area_km_2 = \"295.07\"", "question": "What's the official name of the place with an Area KM 2 of 295.07", "context": "CREATE TABLE table_171236_2 (official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_171236_2 WHERE official_name = \"Cardwell\"", "question": "What is the population of Cardwell?", "context": "CREATE TABLE table_171236_2 (population INTEGER, official_name VARCHAR)"}, {"answer": "SELECT COUNT(status) FROM table_171361_2 WHERE official_name = \"Eldon\"", "question": "Name the total number of status for eldon", "context": "CREATE TABLE table_171361_2 (status VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT area_km_2 FROM table_171361_2 WHERE official_name = \"Balmoral\"", "question": "Name the area km 2 for balmoral", "context": "CREATE TABLE table_171361_2 (area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT team FROM table_17140608_11 WHERE date = \"April 23\"", "question": "What team(s) did they play on april 23?", "context": "CREATE TABLE table_17140608_11 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17140608_11 WHERE date = \"April 28\"", "question": "What score(s) were recorded on april 28?", "context": "CREATE TABLE table_17140608_11 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_1714685_1 WHERE title = \"Galaxy Angel AA\"", "question": "When galaxy angel aa is the title what was the series?", "context": "CREATE TABLE table_1714685_1 (series VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_1714685_1 WHERE aired_in_japan_3 = \"7 April 2001 to 29 September 2001\"", "question": "When  7 april 2001 to 29 september 2001 was aired in japan 2 how many titles were there?", "context": "CREATE TABLE table_1714685_1 (title VARCHAR, aired_in_japan_3 VARCHAR)"}, {"answer": "SELECT us_release_date FROM table_1714685_1 WHERE title = \"Galaxy Angel AA\"", "question": "When galaxy angel aa was the title was the us release date?", "context": "CREATE TABLE table_1714685_1 (us_release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT comparable_country FROM table_171666_1 WHERE national_share___percentage_ = \"1.08\"", "question": "What comparable country has a national share of 1.08?", "context": "CREATE TABLE table_171666_1 (comparable_country VARCHAR, national_share___percentage_ VARCHAR)"}, {"answer": "SELECT national_share___percentage_ FROM table_171666_1 WHERE area__km\u00b2_ = 148064", "question": "What is the national share of the country whose area is 148064 km^2?", "context": "CREATE TABLE table_171666_1 (national_share___percentage_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT administrative_division FROM table_171666_1 WHERE area__km\u00b2_ = 30", "question": "What is the administrative division that has an area of 30 km^2?", "context": "CREATE TABLE table_171666_1 (administrative_division VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT national_share___percentage_ FROM table_171666_1 WHERE administrative_division = \"Guizhou\"", "question": "What is the national share of Guizhou's administrative division?", "context": "CREATE TABLE table_171666_1 (national_share___percentage_ VARCHAR, administrative_division VARCHAR)"}, {"answer": "SELECT rank FROM table_171666_1 WHERE area__sq_mi_ = 456800", "question": "What is the rank of the division with an area of 456800 sq mi?", "context": "CREATE TABLE table_171666_1 (rank VARCHAR, area__sq_mi_ VARCHAR)"}, {"answer": "SELECT change_over_previous_year_as_a_whole FROM table_171748_3 WHERE change_over_same_quarter_the_previous_year = \"Up 2.8%\"", "question": "What's the change over previous year as a whole in the period in which the change over same quarter the previous year was up 2.8%?", "context": "CREATE TABLE table_171748_3 (change_over_previous_year_as_a_whole VARCHAR, change_over_same_quarter_the_previous_year VARCHAR)"}, {"answer": "SELECT period FROM table_171748_3 WHERE _percentage_trains_arriving_within_5_mins_of_scheduled_time_moving_annual_average__maa_ = \"89.6%\"", "question": "When was the percentage of trains arriving within 5 minutes of scheduled time 89.6%?", "context": "CREATE TABLE table_171748_3 (period VARCHAR, _percentage_trains_arriving_within_5_mins_of_scheduled_time_moving_annual_average__maa_ VARCHAR)"}, {"answer": "SELECT change_over_same_quarter_the_previous_year FROM table_171748_3 WHERE _percentage_trains_arriving_within_5_mins_of_scheduled_time__over_three_months_ = \"89.6%\"", "question": "What's the change over same quarter the previous year in the period when the 89.6% of the trains arrive within 5 minutes of scheduled time (over three months)?", "context": "CREATE TABLE table_171748_3 (change_over_same_quarter_the_previous_year VARCHAR, _percentage_trains_arriving_within_5_mins_of_scheduled_time__over_three_months_ VARCHAR)"}, {"answer": "SELECT COUNT(shire) FROM table_17251764_1 WHERE area_in_km_2 = \"27.17\"", "question": "how many shire in the land of area in km 2 is 27.17", "context": "CREATE TABLE table_17251764_1 (shire VARCHAR, area_in_km_2 VARCHAR)"}, {"answer": "SELECT open_era FROM table_1725413_5 WHERE first_title = 1925", "question": "How many open era titles does the team with their first title in 1925 have?", "context": "CREATE TABLE table_1725413_5 (open_era VARCHAR, first_title VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_17275810_7 WHERE team = \"Ascoli\"", "question": "Name the replacced by with ascoli", "context": "CREATE TABLE table_17275810_7 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_17275810_7 WHERE replaced_by = \"Mario Somma\"", "question": "Name the team for mario somma", "context": "CREATE TABLE table_17275810_7 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_17275810_7 WHERE team = \"Ascoli\"", "question": "Name the date of appointment for ascoli", "context": "CREATE TABLE table_17275810_7 (date_of_appointment VARCHAR, team VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_17275810_7 WHERE replaced_by = \"Elvio Selighini\"", "question": "Name the manner of departure for elvio selighini", "context": "CREATE TABLE table_17275810_7 (manner_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_17275810_7 WHERE replaced_by = \"Fabio Brini\"", "question": "Name the date of vacancy for fabio brini", "context": "CREATE TABLE table_17275810_7 (date_of_vacancy VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_17275810_7 WHERE team = \"Mantova\"", "question": "Name the outgoing manager for mantova", "context": "CREATE TABLE table_17275810_7 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_17288825_5 WHERE team = \"San Antonio\"", "question": "What is the San Antonio's team score?", "context": "CREATE TABLE table_17288825_5 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_17288845_9 WHERE game = 66", "question": "Name the score for game 66", "context": "CREATE TABLE table_17288845_9 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_17288845_9 WHERE score = \"L 77\u201380 (OT)\"", "question": "Name the record for score of l 77\u201380 (ot)", "context": "CREATE TABLE table_17288845_9 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17288845_9 WHERE team = \"Houston\"", "question": "Name the high assists for houston", "context": "CREATE TABLE table_17288845_9 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_17288845_9 WHERE game = 63", "question": "Name the score for game 63", "context": "CREATE TABLE table_17288845_9 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_17289224_1 WHERE team_name = \"David Price Racing\"", "question": "How many poles did David Price Racing win?", "context": "CREATE TABLE table_17289224_1 (poles INTEGER, team_name VARCHAR)"}, {"answer": "SELECT team_name FROM table_17289224_1 WHERE season = \"2008\" AND points = 0", "question": "Who started in 2008 with 0 points?", "context": "CREATE TABLE table_17289224_1 (team_name VARCHAR, season VARCHAR, points VARCHAR)"}, {"answer": "SELECT team_name FROM table_17289224_1 WHERE season = \"2010\"", "question": "Which team started 2010?", "context": "CREATE TABLE table_17289224_1 (team_name VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_17289224_1 WHERE final_placing = \"9th\"", "question": "What was the max points you when when you place 9th?", "context": "CREATE TABLE table_17289224_1 (points INTEGER, final_placing VARCHAR)"}, {"answer": "SELECT MAX(races) FROM table_17289224_1 WHERE wins = 3", "question": "When the wins is 3, what is the maximum races?", "context": "CREATE TABLE table_17289224_1 (races INTEGER, wins VARCHAR)"}, {"answer": "SELECT COUNT(former_wnba_team) FROM table_17308269_2 WHERE pick = 2", "question": "Name the number of former wnba team for 2", "context": "CREATE TABLE table_17308269_2 (former_wnba_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_17308269_2 WHERE college_country_team = \"Mercer\"", "question": "Name the player for mercer", "context": "CREATE TABLE table_17308269_2 (player VARCHAR, college_country_team VARCHAR)"}, {"answer": "SELECT record FROM table_17311759_5 WHERE team = \"Denver\"", "question": "What is the record of wins and losses for Denver's ball club?", "context": "CREATE TABLE table_17311759_5 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17311759_5 WHERE date = \"December 9\"", "question": "What was the location and the crowd attendance on December 9?", "context": "CREATE TABLE table_17311759_5 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17311759_8 WHERE game = 64", "question": "Who scored the most rebounds in game 64?", "context": "CREATE TABLE table_17311759_8 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_17311783_6 WHERE team = \"Oklahoma City\"", "question": "How many numbers were recorded for high points when the team played against Oklahoma City?", "context": "CREATE TABLE table_17311783_6 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17322817_6 WHERE high_rebounds = \"Yi Jianlian , Brook Lopez (7)\"", "question": "Name the high assists for  yi jianlian , brook lopez (7)", "context": "CREATE TABLE table_17322817_6 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17322817_6 WHERE game = 20", "question": "Name the location attendance for 20", "context": "CREATE TABLE table_17322817_6 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_17322817_6 WHERE score = \"L 92\u2013103 (OT)\"", "question": "Name the date for  l 92\u2013103 (ot)", "context": "CREATE TABLE table_17322817_6 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_17325580_10 WHERE team = \"Boston\"", "question": "What was the record when the team played Boston?", "context": "CREATE TABLE table_17325580_10 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_17325580_10 WHERE high_assists = \"LeBron James (7)\" AND high_points = \"LeBron James (21)\"", "question": "What number game had a high assist of lebron james (7) and high point of lebron james (21)?", "context": "CREATE TABLE table_17325580_10 (game INTEGER, high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_17326036_7 WHERE team = \"Houston\"", "question": "What is the lowest game number when the team is Houston? ", "context": "CREATE TABLE table_17326036_7 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT date FROM table_17326036_7 WHERE high_rebounds = \"Troy Murphy (15)\"", "question": "What was the date when Troy Murphy (15), got high rebounds? ", "context": "CREATE TABLE table_17326036_7 (date VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17355628_7 WHERE high_points = \"Kevin Durant (28)\"", "question": "Who did the High Assists when Kevin Durant (28) took the High Points?", "context": "CREATE TABLE table_17355628_7 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_17355628_7 WHERE date = \"January 18\"", "question": "What is the score when the game took place on January 18?", "context": "CREATE TABLE table_17355628_7 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_17355628_7 WHERE team = \"@ New Jersey\"", "question": "How many games were played by team @ New Jersey?", "context": "CREATE TABLE table_17355628_7 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_17355716_10 WHERE high_rebounds = \"Mehmet Okur , Paul Millsap (6)\"", "question": "how many times were high rebounds mehmet okur , paul millsap (6)", "context": "CREATE TABLE table_17355716_10 (score VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_17355716_10 WHERE high_points = \"Carlos Boozer (20)\"", "question": "what is the score of the match with high points carlos boozer (20)", "context": "CREATE TABLE table_17355716_10 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17355716_10 WHERE date = \"April 11\"", "question": "what is the high rebounds stat on april 11", "context": "CREATE TABLE table_17355716_10 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT written_by FROM table_17355743_1 WHERE season__number = 10", "question": "Who wrote season 10", "context": "CREATE TABLE table_17355743_1 (written_by VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT directed_by FROM table_17355743_1 WHERE written_by = \"Joe Sachs and David Zabel\"", "question": "Name who directed the episode by joe sachs and david zabel", "context": "CREATE TABLE table_17355743_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT points_2 FROM table_17359181_1 WHERE won = 30", "question": "What is every value for Points 2 when the value of won is 30?", "context": "CREATE TABLE table_17359181_1 (points_2 VARCHAR, won VARCHAR)"}, {"answer": "SELECT MIN(points_2) FROM table_17359181_1 WHERE goal_average_1 = \"1.50\"", "question": "What is the lowest value of Points 2 when the goal average is 1.50?", "context": "CREATE TABLE table_17359181_1 (points_2 INTEGER, goal_average_1 VARCHAR)"}, {"answer": "SELECT COUNT(goal_average_1) FROM table_17359181_1 WHERE goals_against = 92", "question": "How many values of goal average 1 occur when the value of goals against is 92?", "context": "CREATE TABLE table_17359181_1 (goal_average_1 VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MAX(points_2) FROM table_17359181_1 WHERE goal_average_1 = \"0.65\"", "question": "What is the highest value for Points 2 when the goal average 1 is 0.65?", "context": "CREATE TABLE table_17359181_1 (points_2 INTEGER, goal_average_1 VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_17382360_9 WHERE score = \"W 118-112\"", "question": "How many dates had a final score of w 118-112?", "context": "CREATE TABLE table_17382360_9 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17382360_9 WHERE score = \"W 118-112\"", "question": "What was the location and attendance at the game where the final score is w 118-112?", "context": "CREATE TABLE table_17382360_9 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17382360_9 WHERE score = \"W 140-108\"", "question": "Who had the high rebounds in the game with a final score of w 140-108?", "context": "CREATE TABLE table_17382360_9 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_17413485_1 WHERE episode = \"1x02\"", "question": "in what date was aired the first broacast of the episode 1x02", "context": "CREATE TABLE table_17413485_1 (first_broadcast VARCHAR, episode VARCHAR)"}, {"answer": "SELECT jeremys_guest FROM table_17413485_1 WHERE episode = \"1x01\"", "question": "what is the name of the jeremy guest for the episode 1x01", "context": "CREATE TABLE table_17413485_1 (jeremys_guest VARCHAR, episode VARCHAR)"}, {"answer": "SELECT episode FROM table_17413485_1 WHERE graemes_guest = \"Maria McErlane\"", "question": "what is the number of the episode where maria mcerlane where gramer guest", "context": "CREATE TABLE table_17413485_1 (episode VARCHAR, graemes_guest VARCHAR)"}, {"answer": "SELECT graemes_guest FROM table_17413485_1 WHERE episode = \"1x03\"", "question": "what is the name of the graemest guest of episode 1x03", "context": "CREATE TABLE table_17413485_1 (graemes_guest VARCHAR, episode VARCHAR)"}, {"answer": "SELECT largest_city FROM table_17416221_1 WHERE population__2013_ = 6620100", "question": "what is the largest city where the population is 6620100?", "context": "CREATE TABLE table_17416221_1 (largest_city VARCHAR, population__2013_ VARCHAR)"}, {"answer": "SELECT largest_city FROM table_17416221_1 WHERE province = \"Eastern Cape\"", "question": "what is the largest city where the province is eastern cape?", "context": "CREATE TABLE table_17416221_1 (largest_city VARCHAR, province VARCHAR)"}, {"answer": "SELECT MIN(area__km_2__) FROM table_17416221_1 WHERE largest_city = \"Bloemfontein\"", "question": "what is minimum area where the largest city is bloemfontein?", "context": "CREATE TABLE table_17416221_1 (area__km_2__ INTEGER, largest_city VARCHAR)"}, {"answer": "SELECT COUNT(provincial_capital) FROM table_17416221_1 WHERE population__2013_ = 1162900", "question": "what is the numbe of provincial captial where the population is 1162900?", "context": "CREATE TABLE table_17416221_1 (provincial_capital VARCHAR, population__2013_ VARCHAR)"}, {"answer": "SELECT COUNT(provincial_capital) FROM table_17416221_1 WHERE province = \"Northern Cape\"", "question": "what is the number of provincial captial where the province is northern cape?", "context": "CREATE TABLE table_17416221_1 (provincial_capital VARCHAR, province VARCHAR)"}, {"answer": "SELECT COUNT(airport) FROM table_17419587_1 WHERE iata = \"MEL\"", "question": "What is the airport with the IATA MEL?", "context": "CREATE TABLE table_17419587_1 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT MAX(two_years) FROM table_174266_6 WHERE unknown > 1.0", "question": "If unknown is larger than 1.0, what is the maximum two year amount?", "context": "CREATE TABLE table_174266_6 (two_years INTEGER, unknown INTEGER)"}, {"answer": "SELECT MIN(one_year) FROM table_174266_6 WHERE two_years = 159", "question": "If two years is 159, what is the amount for one year?", "context": "CREATE TABLE table_174266_6 (one_year INTEGER, two_years VARCHAR)"}, {"answer": "SELECT MIN(5 AS _9_years) FROM table_174266_6 WHERE year = 2010", "question": "If the year is 2010, what is the minimum amount of years 5-9?", "context": "CREATE TABLE table_174266_6 (year VARCHAR)"}, {"answer": "SELECT series__number FROM table_17467147_1 WHERE directed_by = \"Patrick Norris\" AND written_by = \"Debra J. Fisher & Erica Messer\"", "question": "When debra j. fisher & erica messer are the writers and the director is patrick norris what is the series number?", "context": "CREATE TABLE table_17467147_1 (series__number VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_17467147_1 WHERE us_viewers__million_ = \"12.70\"", "question": "When there are  12.70 million u.s. viewers who is the director?", "context": "CREATE TABLE table_17467147_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MIN(episode__number) FROM table_17481974_1 WHERE original_airdate = \"July 14, 2003\"", "question": "Which is the number of the episode \"rook gave\" \"r\u016bku d\u012bo\" (\u30c7 \u30c7 \u30a3 \u30aa \u30fc \u30eb) which aired on July 14, 2003", "context": "CREATE TABLE table_17481974_1 (episode__number INTEGER, original_airdate VARCHAR)"}, {"answer": "SELECT episode__number FROM table_17481974_1 WHERE original_airdate = \"September 1, 2003\"", "question": "What are the numbers of episodes that were broadcast on September 1, 2003", "context": "CREATE TABLE table_17481974_1 (episode__number VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT viewers__millions_ FROM table_17525955_2 WHERE episode__number = 5", "question": "How many viewers did Episode #5 have?", "context": "CREATE TABLE table_17525955_2 (viewers__millions_ VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT COUNT(share) FROM table_17525955_2 WHERE rating / SHARE(18 AS \u201349) = 2.6 / 8", "question": "How many share values are listed for the episode with a rating/share value of 2.6/8?", "context": "CREATE TABLE table_17525955_2 (share VARCHAR, rating VARCHAR)"}, {"answer": "SELECT COUNT(episode__number) FROM table_17525955_2 WHERE us_air_date = \"Saturday, May 30, 2009\"", "question": "How many episodes were originally aired Saturday, May 30, 2009?", "context": "CREATE TABLE table_17525955_2 (episode__number VARCHAR, us_air_date VARCHAR)"}, {"answer": "SELECT rating FROM table_17525955_2 WHERE rating / SHARE(18 AS \u201349) = 0.9 / 4", "question": "What is the rating of the episode with a rating/share of 0.9/4?", "context": "CREATE TABLE table_17525955_2 (rating VARCHAR)"}, {"answer": "SELECT COUNT(episode__number) FROM table_17525955_2 WHERE us_air_date = \"Saturday, July 11, 2009\"", "question": "How many episodes aired Saturday, July 11, 2009", "context": "CREATE TABLE table_17525955_2 (episode__number VARCHAR, us_air_date VARCHAR)"}, {"answer": "SELECT COUNT(rating) / SHARE(18 AS \u201349) FROM table_17525955_2 WHERE us_air_date = \"Saturday, May 9, 2009\"", "question": "How many rating/share values does the episode aired on Saturday, May 9, 2009?", "context": "CREATE TABLE table_17525955_2 (rating VARCHAR, us_air_date VARCHAR)"}, {"answer": "SELECT subsidiaries FROM table_1756264_2 WHERE company_name = \"POSTERMOBILE LIMITED\"", "question": "How many subsidiaries of Postermobile Limited?", "context": "CREATE TABLE table_1756264_2 (subsidiaries VARCHAR, company_name VARCHAR)"}, {"answer": "SELECT description_of_activities FROM table_1756264_2 WHERE company_name = \"CLEAR CHANNEL ENTERTAINMENT FACILITATION LIMITED\"", "question": "What activities does Clear Channel Entertainment Facilitation Limited engage in?", "context": "CREATE TABLE table_1756264_2 (description_of_activities VARCHAR, company_name VARCHAR)"}, {"answer": "SELECT subsidiaries FROM table_1756264_2 WHERE company_name = \"F M MEDIA LIMITED\"", "question": "How many subsidiaries of company F M Media Limited?", "context": "CREATE TABLE table_1756264_2 (subsidiaries VARCHAR, company_name VARCHAR)"}, {"answer": "SELECT MIN(subsidiaries) FROM table_1756264_2 WHERE company_name = \"POSTERMOBILE ADVERTISING LIMITED\"", "question": "How many subsidiaries are there of Postermobile Advertising Limited?", "context": "CREATE TABLE table_1756264_2 (subsidiaries INTEGER, company_name VARCHAR)"}, {"answer": "SELECT MAX(holding_companies) FROM table_1756264_2", "question": "What is the largest number of holding companies?", "context": "CREATE TABLE table_1756264_2 (holding_companies INTEGER)"}, {"answer": "SELECT COUNT(company_name) FROM table_1756264_2 WHERE parent__holding__company = \"POSTERMOBILE LIMITED\"", "question": "How many companies have Postermobile Limited as a parent company?", "context": "CREATE TABLE table_1756264_2 (company_name VARCHAR, parent__holding__company VARCHAR)"}, {"answer": "SELECT COUNT(league) AS Cup FROM table_17598822_11 WHERE player = \"Mark Roberts\"", "question": "Name the total number of league cup for mark roberts", "context": "CREATE TABLE table_17598822_11 (league VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(league) FROM table_17598822_11 WHERE total = 5", "question": "Name the total number of league for 5", "context": "CREATE TABLE table_17598822_11 (league VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(league) FROM table_17598822_11 WHERE scottish_cup = 0", "question": "Name the maximum leagure for 0 scottish cup", "context": "CREATE TABLE table_17598822_11 (league INTEGER, scottish_cup VARCHAR)"}, {"answer": "SELECT MAX(challenge_cup) FROM table_17598822_11 WHERE player = \"Damon Gray\"", "question": "Name the most challenge cup for damon gray", "context": "CREATE TABLE table_17598822_11 (challenge_cup INTEGER, player VARCHAR)"}, {"answer": "SELECT league FROM table_17598822_11 WHERE player = \"Paul Paton\"", "question": "Name the league for paul paton", "context": "CREATE TABLE table_17598822_11 (league VARCHAR, player VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_17623902_1 WHERE written_by = \"Debbie Sarjeant\"", "question": "What was the original air date of this episode that was written by Debbie Sarjeant?", "context": "CREATE TABLE table_17623902_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_17623902_1 WHERE written_by = \"Julie Martin\"", "question": "How many episodes did Julie Martin wrote for the show If every episode has its own production code?", "context": "CREATE TABLE table_17623902_1 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(series) FROM table_17621978_11 WHERE date = \"April 26\"", "question": "Name the total number of series for april 26", "context": "CREATE TABLE table_17621978_11 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_17621978_11 WHERE date = \"April 21\"", "question": "Name the number of high rebounds for april 21", "context": "CREATE TABLE table_17621978_11 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_17621978_11 WHERE date = \"April 24\"", "question": "Name the number of location attendance for april 24", "context": "CREATE TABLE table_17621978_11 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT p FROM table_17634290_7 WHERE type = \"Free agent 1\"", "question": "What is listed in p when the type is listed as free agent 1?", "context": "CREATE TABLE table_17634290_7 (p VARCHAR, type VARCHAR)"}, {"answer": "SELECT ends FROM table_17634290_7 WHERE moving_from = \"Cary Clarets\"", "question": "What is the end when moving from is listed as cary clarets?", "context": "CREATE TABLE table_17634290_7 (ends VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT country FROM table_17634290_7 WHERE moving_from = \"Bristol City\"", "question": "What is the name of the country where moving from is listed as bristol city?", "context": "CREATE TABLE table_17634290_7 (country VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT COUNT(duration) FROM table_17641206_6 WHERE viewership = \"5.46 million\"", "question": "Name the number of duration for viewership of 5.46 million", "context": "CREATE TABLE table_17641206_6 (duration VARCHAR, viewership VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_17641206_6 WHERE written_by = \"David Cantor\"", "question": "Name the total number of episodes written by david cantor", "context": "CREATE TABLE table_17641206_6 (episode VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(original_title) FROM table_17641206_6 WHERE written_by = \"John Sullivan and Keith Lindsay\"", "question": "Name the total number of original titles written by john sullivan and keith lindsay", "context": "CREATE TABLE table_17641206_6 (original_title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_title FROM table_17641206_6 WHERE viewership = \"6.05 million\"", "question": "Name the original title for 6.05 million viewership", "context": "CREATE TABLE table_17641206_6 (original_title VARCHAR, viewership VARCHAR)"}, {"answer": "SELECT third_place FROM table_17632217_2 WHERE total_wins = 4", "question": "Who took third-place when there were 4 total wins?", "context": "CREATE TABLE table_17632217_2 (third_place VARCHAR, total_wins VARCHAR)"}, {"answer": "SELECT COUNT(number_of_clubs) FROM table_17632217_2 WHERE runners_up = \"Liaoning Fushun\"", "question": "What is the total number of clubs when the runner-up was Liaoning Fushun?", "context": "CREATE TABLE table_17632217_2 (number_of_clubs VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT fourth_placed FROM table_17632217_2 WHERE third_place = \"Beijing Guoan\" AND winners = \"Dalian Wanda\" AND total_wins = 4", "question": "Who was placed fourth when third was Beijing Guoan and the winner was Dalian Wanda and wins total was 4?", "context": "CREATE TABLE table_17632217_2 (fourth_placed VARCHAR, total_wins VARCHAR, third_place VARCHAR, winners VARCHAR)"}, {"answer": "SELECT third_place FROM table_17632217_2 WHERE runners_up = \"Guangzhou Apollo\"", "question": "Who was placed third when the ruuner up was Guangzhou Apollo?", "context": "CREATE TABLE table_17632217_2 (third_place VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT third_place FROM table_17632217_2 WHERE season = 2001", "question": "Who was placed third in 2001?", "context": "CREATE TABLE table_17632217_2 (third_place VARCHAR, season VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_176524_2 WHERE official_name = \"Perth\"", "question": "What is the census ranking for the Perth parish?", "context": "CREATE TABLE table_176524_2 (census_ranking VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_176524_2 WHERE area_km_2 = \"750.51\"", "question": "What is the minimum population of the parish with a 750.51 km area?", "context": "CREATE TABLE table_176524_2 (population INTEGER, area_km_2 VARCHAR)"}, {"answer": "SELECT won FROM table_17675675_2 WHERE tries_against = \"89\"", "question": "with the amount of tries at 89, how many win's were there?", "context": "CREATE TABLE table_17675675_2 (won VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_17675675_2 WHERE club = \"Swansea Uplands RFC\"", "question": "For club Swansea Uplands RFC, what is the amount of tries against?", "context": "CREATE TABLE table_17675675_2 (tries_against VARCHAR, club VARCHAR)"}, {"answer": "SELECT points FROM table_17675675_2 WHERE won = \"9\"", "question": "What is the total amount of points when the given won is 9?", "context": "CREATE TABLE table_17675675_2 (points VARCHAR, won VARCHAR)"}, {"answer": "SELECT COUNT(try_bonus) FROM table_17675675_2 WHERE points = \"51\"", "question": "With the given points of 51, what was the total number of the try bonus?", "context": "CREATE TABLE table_17675675_2 (try_bonus VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(tries_for) FROM table_17675675_2 WHERE lost = \"4\"", "question": "With the given loss of 4, what was the number of tries?", "context": "CREATE TABLE table_17675675_2 (tries_for VARCHAR, lost VARCHAR)"}, {"answer": "SELECT tries_against FROM table_17675675_2 WHERE points_for = \"667\"", "question": "With the given points of 667, what was the number of tries against?", "context": "CREATE TABLE table_17675675_2 (tries_against VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT MAX(no_of_episodes) FROM table_17697980_1 WHERE year = \"1989\"", "question": "What is the largest number of episodes for a 1989 season dvd release? ", "context": "CREATE TABLE table_17697980_1 (no_of_episodes INTEGER, year VARCHAR)"}, {"answer": "SELECT COUNT(region_2) FROM table_17697980_1 WHERE dvd_title = \"Series 5\"", "question": "How many  dvd  titled \"series 5\" were released having a release date or a non available date in region 2?", "context": "CREATE TABLE table_17697980_1 (region_2 VARCHAR, dvd_title VARCHAR)"}, {"answer": "SELECT stage__winner_ FROM table_17672500_19 WHERE team_classification = \"Caisse d'Epargne\"", "question": "Who are all the stage winners where the team classification is Caisse D'epargne?", "context": "CREATE TABLE table_17672500_19 (stage__winner_ VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_17758010_2 WHERE us_viewers__millions_ = \"19.49\"", "question": "How many original air dates have U.S. Views (millions) of 19.49?", "context": "CREATE TABLE table_17758010_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_17758010_2", "question": "What is the lowest no. in series?", "context": "CREATE TABLE table_17758010_2 (no_in_series INTEGER)"}, {"answer": "SELECT week FROM table_17781886_1 WHERE opponent = \"New York Jets\"", "question": "The opponent was the New York Jets on what week? ", "context": "CREATE TABLE table_17781886_1 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game_site FROM table_17781886_1 WHERE date = \"December 12, 1965\"", "question": "Where was the December 12, 1965 game? ", "context": "CREATE TABLE table_17781886_1 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_17779448_1 WHERE opponent = \"Boston Patriots\"", "question": "How many attended game(s) against the boston patriots?", "context": "CREATE TABLE table_17779448_1 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT examples FROM table_17798093_20 WHERE american = \"\u026as\"", "question": "which examples are pronounced \u026as in american", "context": "CREATE TABLE table_17798093_20 (examples VARCHAR, american VARCHAR)"}, {"answer": "SELECT examples FROM table_17798093_20 WHERE australian = \"et\"", "question": "which examples are pronounced et in australian", "context": "CREATE TABLE table_17798093_20 (examples VARCHAR, australian VARCHAR)"}, {"answer": "SELECT COUNT(australian) FROM table_17798093_20 WHERE american = \"\u0259s\"", "question": "how many endings have american pronounciation \u0259s", "context": "CREATE TABLE table_17798093_20 (australian VARCHAR, american VARCHAR)"}, {"answer": "SELECT ending FROM table_17798093_20 WHERE examples = \"Achilles, appendices, f\u00e6ces\"", "question": "what are the endings of examples achilles, appendices, f\u00e6ces", "context": "CREATE TABLE table_17798093_20 (ending VARCHAR, examples VARCHAR)"}, {"answer": "SELECT callsign FROM table_17822401_1 WHERE location = \"Cebu\"", "question": "What is the callsign for the Cebu station?", "context": "CREATE TABLE table_17822401_1 (callsign VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(branding) FROM table_17822401_1 WHERE power__kw_ = \"5kW\"", "question": "What is the number of brand where the power is 5kw?", "context": "CREATE TABLE table_17822401_1 (branding VARCHAR, power__kw_ VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_17822401_1 WHERE location = \"Baguio\"", "question": "What is the power of the Baguio station?", "context": "CREATE TABLE table_17822401_1 (power__kw_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_17822401_1 WHERE branding = \"Radyo5 101.9 News FM\"", "question": "How many stations are called radyo5 101.9 news fm?", "context": "CREATE TABLE table_17822401_1 (location VARCHAR, branding VARCHAR)"}, {"answer": "SELECT church_name FROM table_178389_1 WHERE location_of_the_church = \"Kyrkjeb\u00f8\"", "question": "What is the church name for the church located in Kyrkjeb\u00f8?", "context": "CREATE TABLE table_178389_1 (church_name VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT sub_parish__sogn_ FROM table_178389_1 WHERE church_name = \"H\u00f8yanger kyrkje\"", "question": "What is the sub-parish for the church names H\u00f8yanger Kyrkje?", "context": "CREATE TABLE table_178389_1 (sub_parish__sogn_ VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT COUNT(location_of_the_church) FROM table_178389_1 WHERE year_built = 1916", "question": "What is the total number of churches built in 1916?", "context": "CREATE TABLE table_178389_1 (location_of_the_church VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT COUNT(sub_parish__sogn_) FROM table_178389_1 WHERE church_name = \"H\u00f8yanger kyrkje\"", "question": "What is the total number of churches named H\u00f8yanger Kyrkje?", "context": "CREATE TABLE table_178389_1 (sub_parish__sogn_ VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT church_name FROM table_178389_1 WHERE location_of_the_church = \"H\u00f8yanger\"", "question": "What is the church name located in H\u00f8yanger?", "context": "CREATE TABLE table_178389_1 (church_name VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT location_of_the_church FROM table_178389_1 WHERE church_name = \"Ortnevik kyrkje\"", "question": "What is the location of the church when the church name is Ortnevik Kyrkje?", "context": "CREATE TABLE table_178389_1 (location_of_the_church VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT COUNT(sub_parish__sokn_) FROM table_178408_1 WHERE year_built = 1865", "question": "Name the total number for sub parish sokn for 1865", "context": "CREATE TABLE table_178408_1 (sub_parish__sokn_ VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT location_of_the_church FROM table_178408_1 WHERE church_name = \"Berle kyrkje\"", "question": "Name the location of the church for berle kyrkje", "context": "CREATE TABLE table_178408_1 (location_of_the_church VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT location_of_the_church FROM table_178408_1 WHERE sub_parish__sokn_ = \"Bremanger\"", "question": "Name the location of the church for bremanger", "context": "CREATE TABLE table_178408_1 (location_of_the_church VARCHAR, sub_parish__sokn_ VARCHAR)"}, {"answer": "SELECT MAX(year_built) FROM table_178408_1 WHERE church_name = \"Davik Kyrkje\"", "question": "Name the most year built for davik kyrkje", "context": "CREATE TABLE table_178408_1 (year_built INTEGER, church_name VARCHAR)"}, {"answer": "SELECT written_by FROM table_17861265_1 WHERE us_viewers__million_ = \"3.03\"", "question": "Who was the episode writer when the viewers reached 3.03 million in the US?", "context": "CREATE TABLE table_17861265_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_17861265_1 WHERE no_in_season = 15", "question": "Who wrote the last episode (episode 15) of season 3?", "context": "CREATE TABLE table_17861265_1 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_17861265_1 WHERE directed_by = \"Cliff Bole\"", "question": "How many episodes did Cliff Bole directed in season 3?", "context": "CREATE TABLE table_17861265_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT record FROM table_17848578_1 WHERE game_site = \"San Diego Stadium\"", "question": "What is the record when the game was at the San Diego Stadium? ", "context": "CREATE TABLE table_17848578_1 (record VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_17848578_1 WHERE game_site = \"Atlanta-Fulton County Stadium\"", "question": "How many results are there when the game was at the Atlanta-Fulton county stadium? ", "context": "CREATE TABLE table_17848578_1 (result VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_17848578_1 WHERE game_site = \"Arrowhead Stadium\"", "question": "What is the date of the game at Arrowhead Stadium? ", "context": "CREATE TABLE table_17848578_1 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT game_site FROM table_17848578_1 WHERE attendance = 51478", "question": "Where was the game where attendance was 51478?", "context": "CREATE TABLE table_17848578_1 (game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT military_expenditures__2011, _us$_millions_ FROM table_17971449_2 WHERE country = \"Romania\"", "question": "Name the military expenditures for 2011 for romania", "context": "CREATE TABLE table_17971449_2 (military_expenditures__2011 VARCHAR, _us$_millions_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT population__2011_ FROM table_17971449_2 WHERE country = \"Luxembourg\"", "question": "Name the population 2011 for luxembourg", "context": "CREATE TABLE table_17971449_2 (population__2011_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT deployable_military__2011, _thousands_ FROM table_17971449_2 WHERE country = \"Denmark\"", "question": "Name the deployable military 2011 for denmark", "context": "CREATE TABLE table_17971449_2 (deployable_military__2011 VARCHAR, _thousands_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(loses) FROM table_18018214_2 WHERE club = \"Tauras Taurag\u0117\"", "question": "List total loses forh the tauras taurag\u0117 team.", "context": "CREATE TABLE table_18018214_2 (loses VARCHAR, club VARCHAR)"}, {"answer": "SELECT MIN(goals_conceded) FROM table_18018214_2 WHERE points = 58", "question": "List the number of goals scored to equal 58.", "context": "CREATE TABLE table_18018214_2 (goals_conceded INTEGER, points VARCHAR)"}, {"answer": "SELECT COUNT(reason_for_change) FROM table_1802522_3 WHERE successor = \"Leonard B. Jordan (R)\"", "question": "How many total reason for change are listed corresponding to the successor Leonard B. Jordan (r)?", "context": "CREATE TABLE table_1802522_3 (reason_for_change VARCHAR, successor VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_1802522_3 WHERE date_of_successors_formal_installation = \"November 30, 1962\"", "question": "What state had November 30, 1962 as the date of the successors formal installation?", "context": "CREATE TABLE table_1802522_3 (state__class_ VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT COUNT(vacator) FROM table_1802522_3 WHERE successor = \"Joseph H. Bottum (R)\"", "question": "How many vacant seats were filled by newcomer Joseph H. Bottum (r)?", "context": "CREATE TABLE table_1802522_3 (vacator VARCHAR, successor VARCHAR)"}, {"answer": "SELECT results FROM table_1805191_36 WHERE incumbent = \"Marcy Kaptur\"", "question": "What are the results of those elections for which Marcy Kaptur is the incumbent?", "context": "CREATE TABLE table_1805191_36 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1805191_36 WHERE incumbent = \"Ted Strickland\"", "question": "What are the results of the elections in which Ted Strickland is seeking re-election?", "context": "CREATE TABLE table_1805191_36 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1805191_36 WHERE incumbent = \"Dennis Kucinich\"", "question": "Who are all of the candidates in elections where Dennis Kucinich was a candidate?", "context": "CREATE TABLE table_1805191_36 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1805191_36 WHERE incumbent = \"Steve Chabot\"", "question": "Who were all the candidates in elections in which Steve Chabot was a candidate?", "context": "CREATE TABLE table_1805191_36 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT treasurer FROM table_18052353_4 WHERE year = \"2008\"", "question": "Who was treasurer in 2008?", "context": "CREATE TABLE table_18052353_4 (treasurer VARCHAR, year VARCHAR)"}, {"answer": "SELECT state_assembly FROM table_18052353_4 WHERE year = \"2008\"", "question": "What was the composition of the state assembly in 2008?", "context": "CREATE TABLE table_18052353_4 (state_assembly VARCHAR, year VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_18055005_1 WHERE prod_code = \"329\"", "question": "What's the series number of the episode with production code 329?", "context": "CREATE TABLE table_18055005_1 (no_in_series VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_18055005_1 WHERE viewers__millions_ = \"4.1\" AND written_by = \"Douglas Lieblein\"", "question": "What's the series number of the episode originally viewed by 4.1 million people and written by Douglas Lieblein?", "context": "CREATE TABLE table_18055005_1 (no_in_series VARCHAR, viewers__millions_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_18106841_1 WHERE winners__percentage_votes = \"55.99%\"", "question": "What year was the winners vote 55.99%?", "context": "CREATE TABLE table_18106841_1 (year INTEGER, winners__percentage_votes VARCHAR)"}, {"answer": "SELECT members_of_parliament FROM table_18106841_1 WHERE winners__percentage_votes = \"50.54%\"", "question": "When the winners votes were 50.54% who were the members of parliment?", "context": "CREATE TABLE table_18106841_1 (members_of_parliament VARCHAR, winners__percentage_votes VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_18102421_2 WHERE directed_by = \"Allison Liddi-Brown\"", "question": "How many millions of U.S. viewers watched the episode directed by Allison Liddi-Brown? ", "context": "CREATE TABLE table_18102421_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_18102421_2 WHERE us_viewers__millions_ = \"13.82\"", "question": "What was the title of the episode that had 13.82 million U.S. viewers? ", "context": "CREATE TABLE table_18102421_2 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT club FROM table_18143210_2 WHERE top_division_titles = 10", "question": "What was the club that won 10 top division titles?", "context": "CREATE TABLE table_18143210_2 (club VARCHAR, top_division_titles VARCHAR)"}, {"answer": "SELECT first_season_in_top_division FROM table_18143210_2 WHERE club = \"UNAM\"", "question": "When did the club UNAM played the first season in top division?", "context": "CREATE TABLE table_18143210_2 (first_season_in_top_division VARCHAR, club VARCHAR)"}, {"answer": "SELECT first_season_of_current_spell_in_top_division FROM table_18143210_2 WHERE first_season_in_top_division = \"1964-65\"", "question": "When was the 'first season of current spell in top division' if the first season in top division is in 1964-65?", "context": "CREATE TABLE table_18143210_2 (first_season_of_current_spell_in_top_division VARCHAR, first_season_in_top_division VARCHAR)"}, {"answer": "SELECT top_division_titles FROM table_18143210_2 WHERE first_season_of_current_spell_in_top_division = \"1979-80\"", "question": "How many top division titles were won during the 'first season of current spell in top division' in 1979-80?", "context": "CREATE TABLE table_18143210_2 (top_division_titles VARCHAR, first_season_of_current_spell_in_top_division VARCHAR)"}, {"answer": "SELECT MAX(number_of_seasons_in_top_division) FROM table_18143210_2 WHERE first_season_in_top_division = \"1990-91\"", "question": "How many 'number of seasons in top division' were played if the 'first season in top division' games is in 1990-91?", "context": "CREATE TABLE table_18143210_2 (number_of_seasons_in_top_division INTEGER, first_season_in_top_division VARCHAR)"}, {"answer": "SELECT number_of_seasons_in_liga_mx FROM table_18143210_2 WHERE first_season_of_current_spell_in_top_division = \"1962-63\"", "question": "How many 'number of season in Liga MX' were played if the 'first season of current spell in top division' is in 1962-63?", "context": "CREATE TABLE table_18143210_2 (number_of_seasons_in_liga_mx VARCHAR, first_season_of_current_spell_in_top_division VARCHAR)"}, {"answer": "SELECT wednesday FROM table_18173916_8 WHERE monday = \"363 The Hangover Part II\"", "question": "which chapter was Transmitted on wednesday if the episode of \"363 the hangover part ii\" was transmitted on monday? ", "context": "CREATE TABLE table_18173916_8 (wednesday VARCHAR, monday VARCHAR)"}, {"answer": "SELECT wednesday FROM table_18173916_8 WHERE thursday = \"438 Magic: The Gathering Mini Masters Tournament\"", "question": "which episode was Transmitted on wednesday if the episode of \"438 magic: the gathering mini masters tournament\" was transmitted on thursday? ", "context": "CREATE TABLE table_18173916_8 (wednesday VARCHAR, thursday VARCHAR)"}, {"answer": "SELECT friday FROM table_18173916_8 WHERE tuesday = \"414 Insanely Twisted Shadow Planet\"", "question": "which episode was Transmitted on friday if the episode of \"414 insanely twisted shadow planet\" was transmitted on tuesday? ", "context": "CREATE TABLE table_18173916_8 (friday VARCHAR, tuesday VARCHAR)"}, {"answer": "SELECT friday FROM table_18173916_8 WHERE monday = \"515 The Adventures of Tintin\"", "question": "which episode was Transmitted on friday if the episode of \"515 the adventures of tintin\" was transmitted on monday? ", "context": "CREATE TABLE table_18173916_8 (friday VARCHAR, monday VARCHAR)"}, {"answer": "SELECT COUNT(wednesday) FROM table_18173916_8 WHERE tuesday = \"319 Sucker Punch\"", "question": "which episode was Transmitted on wednesday if the episode of \"319 sucker punch\" was transmitted on tuesday? ", "context": "CREATE TABLE table_18173916_8 (wednesday VARCHAR, tuesday VARCHAR)"}, {"answer": "SELECT wednesday FROM table_18173916_8 WHERE friday = \"307 VS.\"", "question": "which episode was Transmitted on wednesday if the episode of \"307 vs.\" was transmitted on friday?  ", "context": "CREATE TABLE table_18173916_8 (wednesday VARCHAR, friday VARCHAR)"}, {"answer": "SELECT scoring_average FROM table_18198579_6 WHERE best_finish = \"T35\"", "question": "Name the scoring average for best finsih being t35", "context": "CREATE TABLE table_18198579_6 (scoring_average VARCHAR, best_finish VARCHAR)"}, {"answer": "SELECT COUNT(top_10s) FROM table_18198579_6 WHERE scoring_rank = \"9\"", "question": "Name the number of top 10s for scoring rank of 9", "context": "CREATE TABLE table_18198579_6 (top_10s VARCHAR, scoring_rank VARCHAR)"}, {"answer": "SELECT total FROM table_182298_5 WHERE mens_open = 7", "question": "How many are the total winners if 7 won the Men's Open?", "context": "CREATE TABLE table_182298_5 (total VARCHAR, mens_open VARCHAR)"}, {"answer": "SELECT COUNT(mens_open) FROM table_182298_5 WHERE country = \"Sweden\"", "question": "How many won the Men's Open if the players are from Sweden?", "context": "CREATE TABLE table_182298_5 (mens_open VARCHAR, country VARCHAR)"}, {"answer": "SELECT total FROM table_182298_5 WHERE country = \"South Korea\"", "question": "How many are the total winners from South Korea?", "context": "CREATE TABLE table_182298_5 (total VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(p) FROM table_18254488_2 WHERE player = \"Shaun Maloney\"", "question": "When shaun maloney is the player what is the lowest p?", "context": "CREATE TABLE table_18254488_2 (p INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(uefa_champions_league) FROM table_18254488_2", "question": "What is the highest amount of uefa champion leagues?", "context": "CREATE TABLE table_18254488_2 (uefa_champions_league INTEGER)"}, {"answer": "SELECT MIN(league_cup) FROM table_18254488_2 WHERE player = \"Koki Mizuno\"", "question": "When koki mizuno is the player what is the lowest league cup?", "context": "CREATE TABLE table_18254488_2 (league_cup INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_18254488_2 WHERE player = \"Koki Mizuno\"", "question": "When koki mizuno is the player how man positions are there?", "context": "CREATE TABLE table_18254488_2 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_18268826_1 WHERE us_viewers__million_ = \"3.24\"", "question": "How many episodes by different writers were seen by 3.24 million people in the US?", "context": "CREATE TABLE table_18268826_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_18268826_1 WHERE us_viewers__million_ = \"3.19\"", "question": "What's the season number of the episode viewed by 3.19 million people in the US?", "context": "CREATE TABLE table_18268826_1 (no_in_season INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_18268826_1 WHERE us_viewers__million_ = \"3.25\"", "question": "Who's the writer of the episode seen by 3.25 million people in the US?", "context": "CREATE TABLE table_18268826_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_18268826_1 WHERE us_viewers__million_ = \"3.93\"", "question": "Who directed the episode seen by 3.93 million people in the US?", "context": "CREATE TABLE table_18268826_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT ticket_price_s_ FROM table_18277458_2 WHERE date_s_ = \"August 7, 1987\"", "question": "How much do the tickets cost for August 7, 1987?", "context": "CREATE TABLE table_18277458_2 (ticket_price_s_ VARCHAR, date_s_ VARCHAR)"}, {"answer": "SELECT ticket_sold___available FROM table_18277458_2 WHERE venue = \"Carver-Hawkeye Arena\"", "question": "How many tickets are sold for the Carver-Hawkeye Arena? ", "context": "CREATE TABLE table_18277458_2 (ticket_sold___available VARCHAR, venue VARCHAR)"}, {"answer": "SELECT no FROM table_1827690_4 WHERE elected = \"1462/63\"", "question": "When 1462/63 was the elected what was the no.?", "context": "CREATE TABLE table_1827690_4 (no VARCHAR, elected VARCHAR)"}, {"answer": "SELECT assembled FROM table_1827690_4 WHERE elected = \"1472\"", "question": "When 1472 was the elected when was the assembled?", "context": "CREATE TABLE table_1827690_4 (assembled VARCHAR, elected VARCHAR)"}, {"answer": "SELECT COUNT(scores_by_each_individual_judge) FROM table_18278508_6 WHERE co_contestant__yaar_vs_pyaar_ = \"Mukul Dev\"", "question": "How many different combinations of scores by individual judges were given to the contestant competing against Mukul Dev?", "context": "CREATE TABLE table_18278508_6 (scores_by_each_individual_judge VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT position FROM table_18278508_6 WHERE main_contestant = \"Kashmira Shah\" AND date_performed = \"August 14\"", "question": "What was Kashmira Shah's position on August 14?", "context": "CREATE TABLE table_18278508_6 (position VARCHAR, main_contestant VARCHAR, date_performed VARCHAR)"}, {"answer": "SELECT total_score_week FROM table_18278508_6 WHERE date_performed = \"August 14\" AND position = \"Bottom 2\"", "question": "What was the total score / week of the contestant who placed in the bottom 2 on august 14?", "context": "CREATE TABLE table_18278508_6 (total_score_week VARCHAR, date_performed VARCHAR, position VARCHAR)"}, {"answer": "SELECT scores_by_each_individual_judge FROM table_18278508_6 WHERE main_contestant = \"Karanvir Bohra\" AND date_performed = \"August 13\"", "question": "What were the scores by the individual judges for Karanvir Bohra on August 13?", "context": "CREATE TABLE table_18278508_6 (scores_by_each_individual_judge VARCHAR, main_contestant VARCHAR, date_performed VARCHAR)"}, {"answer": "SELECT COUNT(main_contestant) FROM table_18278508_4 WHERE position = \"Safe\" AND co_contestant__yaar_vs_pyaar_ = \"Tina Parekh\"", "question": "Name the total number of main contestants for safe position for tina parekh", "context": "CREATE TABLE table_18278508_4 (main_contestant VARCHAR, position VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT status FROM table_18278508_4 WHERE main_contestant = \"Karanvir Bohra\" AND date_performed = \"July 30\"", "question": "Name the status for karanvir bohra and date performed being july 30", "context": "CREATE TABLE table_18278508_4 (status VARCHAR, main_contestant VARCHAR, date_performed VARCHAR)"}, {"answer": "SELECT province, _community FROM table_18349697_1 WHERE age = 27", "question": "What is the province where the age of the contestant is 27?", "context": "CREATE TABLE table_18349697_1 (province VARCHAR, _community VARCHAR, age VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_18367694_3 WHERE directed_by = \"Joan Tewkesbury\"", "question": "When joan tewkesbury is the director what is the number in seasons?", "context": "CREATE TABLE table_18367694_3 (no_in_season VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_18428024_3 WHERE directed_by = \"John Banas\"", "question": "How many series did John Banas direct?", "context": "CREATE TABLE table_18428024_3 (no_in_series VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_18428024_3 WHERE no_in_series = 360", "question": "What is the original air date in series 360?", "context": "CREATE TABLE table_18428024_3 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT coach FROM table_18461635_1 WHERE location = \"Leicester\"", "question": "Who is the coach of the team in Leicester? ", "context": "CREATE TABLE table_18461635_1 (coach VARCHAR, location VARCHAR)"}, {"answer": "SELECT team FROM table_18461635_1 WHERE county = \"Derbyshire\"", "question": "What is the name of the team from Derbyshire county? ", "context": "CREATE TABLE table_18461635_1 (team VARCHAR, county VARCHAR)"}, {"answer": "SELECT captain FROM table_18461635_1 WHERE team = \"Gloucestershire Gladiators\"", "question": "Who is the captain of the Gloucestershire Gladiators? ", "context": "CREATE TABLE table_18461635_1 (captain VARCHAR, team VARCHAR)"}, {"answer": "SELECT captain FROM table_18461635_1 WHERE location = \"Southampton\"", "question": "Who is the captain of the team in Southampton? ", "context": "CREATE TABLE table_18461635_1 (captain VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_18461635_1 WHERE county = \"Sussex\"", "question": "Where is the team in Sussex county located? ", "context": "CREATE TABLE table_18461635_1 (location VARCHAR, county VARCHAR)"}, {"answer": "SELECT captain FROM table_18461635_1 WHERE county = \"Essex\"", "question": "Who is the captain of the team in Essex county? ", "context": "CREATE TABLE table_18461635_1 (captain VARCHAR, county VARCHAR)"}, {"answer": "SELECT tobago FROM table_1850282_5 WHERE species = \"Helicops angulatus\"", "question": "there are in tobago species name helicops angulatus", "context": "CREATE TABLE table_1850282_5 (tobago VARCHAR, species VARCHAR)"}, {"answer": "SELECT tobago FROM table_1850282_5 WHERE species = \"Liophis cobellus cobellus\"", "question": "are in tobago species liophis cobellus cobellus?", "context": "CREATE TABLE table_1850282_5 (tobago VARCHAR, species VARCHAR)"}, {"answer": "SELECT MAX(ending_with) FROM table_1852650_1", "question": "Name the most ending with", "context": "CREATE TABLE table_1852650_1 (ending_with INTEGER)"}, {"answer": "SELECT MAX(ending_with) FROM table_1852650_1 WHERE sung_by = \"Peyalvar\"", "question": "Name the most ending with for peyalvar", "context": "CREATE TABLE table_1852650_1 (ending_with INTEGER, sung_by VARCHAR)"}, {"answer": "SELECT MIN(starting_from) FROM table_1852650_1 WHERE name_of_the_prabandham = \"Thiruvezhukkurrirukkai\"", "question": "Name the starting from  thiruvezhukkurrirukkai", "context": "CREATE TABLE table_1852650_1 (starting_from INTEGER, name_of_the_prabandham VARCHAR)"}, {"answer": "SELECT starting_from FROM table_1852650_1 WHERE name_of_the_prabandham = \"Amalanadhi piran\"", "question": "Name the starting from amalanadhi piran", "context": "CREATE TABLE table_1852650_1 (starting_from VARCHAR, name_of_the_prabandham VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_18563954_3 WHERE state__class_ = \"Massachusetts (2)\"", "question": "Why did the change happened in Massachusetts (2)?", "context": "CREATE TABLE table_18563954_3 (reason_for_change VARCHAR, state__class_ VARCHAR)"}, {"answer": "SELECT COUNT(reason_for_change) FROM table_18563954_3 WHERE state__class_ = \"Connecticut (3)\"", "question": "How many different reasons are there for the change in Connecticut (3)?", "context": "CREATE TABLE table_18563954_3 (reason_for_change VARCHAR, state__class_ VARCHAR)"}, {"answer": "SELECT MAX(background) FROM table_1855342_5 WHERE ability_to_compromise = 13", "question": "When the ability to compromise is 13, what is background?", "context": "CREATE TABLE table_1855342_5 (background INTEGER, ability_to_compromise VARCHAR)"}, {"answer": "SELECT MAX(ability_to_compromise) FROM table_1855342_5 WHERE seq = \"41\"", "question": "When the seq is 41, what is the ability to compromise?", "context": "CREATE TABLE table_1855342_5 (ability_to_compromise INTEGER, seq VARCHAR)"}, {"answer": "SELECT MAX(leadership_ability) FROM table_1855342_5 WHERE overall_ability = 32", "question": "When the ability is 32, what is the leadership ability?", "context": "CREATE TABLE table_1855342_5 (leadership_ability INTEGER, overall_ability VARCHAR)"}, {"answer": "SELECT MIN(experts_view) FROM table_1855342_5 WHERE willing_to_take_risks = 25", "question": "When 25 are willing to take risks, what is the experts view?", "context": "CREATE TABLE table_1855342_5 (experts_view INTEGER, willing_to_take_risks VARCHAR)"}, {"answer": "SELECT directed_by FROM table_18569389_1 WHERE us_viewers__million_ = \"4.22\"", "question": "Name who directed the episode that was viewed by 4.22 million", "context": "CREATE TABLE table_18569389_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_18569389_1 WHERE production_code = \"2T6908\"", "question": "Name the title for production code 2t6908", "context": "CREATE TABLE table_18569389_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_18569389_1 WHERE us_viewers__million_ = \"3.62\"", "question": "Name the total number for number in series that got 3.62 viewers", "context": "CREATE TABLE table_18569389_1 (no_in_series VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_18569389_1 WHERE directed_by = \"Chris Long\"", "question": "Name the air date that chris long directed", "context": "CREATE TABLE table_18569389_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_18569389_1 WHERE us_viewers__million_ = \"5.08\"", "question": "Name the number of production code for 5.08", "context": "CREATE TABLE table_18569389_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT yacht AS Type FROM table_1858574_2 WHERE loa__metres_ = \"17.07\"", "question": "When 17.07 is the loa (metres) what is the type of yacht?", "context": "CREATE TABLE table_1858574_2 (yacht VARCHAR, loa__metres_ VARCHAR)"}, {"answer": "SELECT sail_number FROM table_1858574_2 WHERE position = 3", "question": "When 3 is the position what is the sail number?", "context": "CREATE TABLE table_1858574_2 (sail_number VARCHAR, position VARCHAR)"}, {"answer": "SELECT sail_number FROM table_1858574_2 WHERE yacht = \"Aspect Computing\"", "question": "When aspect computing is the yacht what is the sail number?", "context": "CREATE TABLE table_1858574_2 (sail_number VARCHAR, yacht VARCHAR)"}, {"answer": "SELECT yacht AS Type FROM table_1858574_2 WHERE sail_number = \"6606\"", "question": "When 6606 is the sail number what is the type of yacht?", "context": "CREATE TABLE table_1858574_2 (yacht VARCHAR, sail_number VARCHAR)"}, {"answer": "SELECT state_country FROM table_1858574_2 WHERE position = 5", "question": "When 5 is the position what is the state or country?", "context": "CREATE TABLE table_1858574_2 (state_country VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(ansi_code) FROM table_18600760_1 WHERE pop__2010_ = 609", "question": "Name the least ansi code for 609 population 2010", "context": "CREATE TABLE table_18600760_1 (ansi_code INTEGER, pop__2010_ VARCHAR)"}, {"answer": "SELECT MIN(ansi_code) FROM table_18600760_1 WHERE township = \"Ashtabula\"", "question": "Name the ansi code fore ashtabula", "context": "CREATE TABLE table_18600760_1 (ansi_code INTEGER, township VARCHAR)"}, {"answer": "SELECT COUNT(land___sqmi__) FROM table_18600760_1 WHERE township = \"Ada\"", "question": "Name the land for ada", "context": "CREATE TABLE table_18600760_1 (land___sqmi__ VARCHAR, township VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_18597302_1 WHERE team = \"Atl. Colegiales\"", "question": "What was the position of the Atl. Colegiales team?", "context": "CREATE TABLE table_18597302_1 (position INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_18597302_1 WHERE points = 9", "question": "What was the position where the team scored 9 points?", "context": "CREATE TABLE table_18597302_1 (position VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(eliminated_by) FROM table_18598175_2 WHERE time = \"32:32\"", "question": "How many player eliminated an opponent within the time frame of 32:32?", "context": "CREATE TABLE table_18598175_2 (eliminated_by VARCHAR, time VARCHAR)"}, {"answer": "SELECT method_of_elimination FROM table_18598175_2 WHERE time = \"32:32\"", "question": "What was the styled used to defeat the opponent within the time frame of 32:32?", "context": "CREATE TABLE table_18598175_2 (method_of_elimination VARCHAR, time VARCHAR)"}, {"answer": "SELECT eliminated_by FROM table_18598175_2 WHERE method_of_elimination = \"Pedigree\"", "question": "Who won the match when the winner used the Pedigree attack?", "context": "CREATE TABLE table_18598175_2 (eliminated_by VARCHAR, method_of_elimination VARCHAR)"}, {"answer": "SELECT MIN(elimination_number) FROM table_18598175_2 WHERE time = \"27:27\"", "question": "What was the elimination number of the fighter who fought within 27:27?", "context": "CREATE TABLE table_18598175_2 (elimination_number INTEGER, time VARCHAR)"}, {"answer": "SELECT MAX(elimination_number) FROM table_18598175_2 WHERE time = \"26:15\"", "question": "What was the elimination number of the fighter who fought within 26:15?", "context": "CREATE TABLE table_18598175_2 (elimination_number INTEGER, time VARCHAR)"}, {"answer": "SELECT longitude FROM table_18600760_2 WHERE land___sqmi__ = \"35.992\"", "question": "what is the longitude in 35.992 sqmi", "context": "CREATE TABLE table_18600760_2 (longitude VARCHAR, land___sqmi__ VARCHAR)"}, {"answer": "SELECT COUNT(pop__2010_) FROM table_18600760_2 WHERE water__sqmi_ = \"0.818\"", "question": "how many townships where pop (2010) and ater is 0.818", "context": "CREATE TABLE table_18600760_2 (pop__2010_ VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT township FROM table_18600760_19 WHERE land___sqmi__ = \"32.222\"", "question": "what is the name of the townships with 32.222 land", "context": "CREATE TABLE table_18600760_19 (township VARCHAR, land___sqmi__ VARCHAR)"}, {"answer": "SELECT COUNT(land___sqmi__) FROM table_18600760_19 WHERE longitude = \"-100.895783\"", "question": "how many lands with longitude of -100.895783 are?", "context": "CREATE TABLE table_18600760_19 (land___sqmi__ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT COUNT(geo_id) FROM table_18600760_19 WHERE latitude = \"48.578664\"", "question": "how many geo id with 48.578664 are", "context": "CREATE TABLE table_18600760_19 (geo_id VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT latitude FROM table_18600760_19 WHERE water__sqmi_ = \"0.288\"", "question": "what is the latitude in the township where wate is 0.288", "context": "CREATE TABLE table_18600760_19 (latitude VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT township FROM table_18600760_19 WHERE latitude = \"47.377790\"", "question": "how is called the township where the latitude is 47.377790", "context": "CREATE TABLE table_18600760_19 (township VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT geo_id FROM table_18600760_19 WHERE land___sqmi__ = \"35.990\"", "question": "where the land is 35.990 what is the number of the geo id", "context": "CREATE TABLE table_18600760_19 (geo_id VARCHAR, land___sqmi__ VARCHAR)"}, {"answer": "SELECT land___sqmi__ FROM table_18600760_4 WHERE geo_id = 3807717980", "question": "Name the land where geo id is 3807717980", "context": "CREATE TABLE table_18600760_4 (land___sqmi__ VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT latitude FROM table_18600760_4 WHERE township = \"Deer Lake\"", "question": "Name the latitude for deer lake", "context": "CREATE TABLE table_18600760_4 (latitude VARCHAR, township VARCHAR)"}, {"answer": "SELECT land___sqmi__ FROM table_18600760_7 WHERE water__sqmi_ = \"1.701\"", "question": "If the water square milage is 1.701, what is the land square milage?", "context": "CREATE TABLE table_18600760_7 (land___sqmi__ VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT pop__2010_ FROM table_18600760_7 WHERE county = \"Cavalier\" AND geo_id > 3801931620.0", "question": "In Cavalier County and the geo id is larger than 3801931620.0, what is the population?", "context": "CREATE TABLE table_18600760_7 (pop__2010_ VARCHAR, county VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT MAX(ansi_code) FROM table_18600760_7 WHERE pop__2010_ = 1858", "question": "If the population is 1858, what is the maximum ansi code?", "context": "CREATE TABLE table_18600760_7 (ansi_code INTEGER, pop__2010_ VARCHAR)"}, {"answer": "SELECT MIN(geo_id) FROM table_18600760_7 WHERE longitude = \"-97.473110\"", "question": "If the longitude is -97.473110, what is the minimum geo id?", "context": "CREATE TABLE table_18600760_7 (geo_id INTEGER, longitude VARCHAR)"}, {"answer": "SELECT township FROM table_18600760_7 WHERE ansi_code = 1036632", "question": "If the ansi code is 1036632, what is the name of the township?", "context": "CREATE TABLE table_18600760_7 (township VARCHAR, ansi_code VARCHAR)"}, {"answer": "SELECT longitude FROM table_18600760_7 WHERE land___sqmi__ = \"10.950\"", "question": "If the land square milage is 10.950, what is the longitude?", "context": "CREATE TABLE table_18600760_7 (longitude VARCHAR, land___sqmi__ VARCHAR)"}, {"answer": "SELECT township FROM table_18600760_9 WHERE longitude = \"-99.287270\"", "question": "What township is located at longitude -99.287270?", "context": "CREATE TABLE table_18600760_9 (township VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT longitude FROM table_18600760_9 WHERE ansi_code = 1759682", "question": "What is the longitude of the township at ANSI code 1759682?", "context": "CREATE TABLE table_18600760_9 (longitude VARCHAR, ansi_code VARCHAR)"}, {"answer": "SELECT water__sqmi_ FROM table_18600760_9 WHERE latitude = \"48.064751\"", "question": "How many square miles of water does the township at  latitude 48.064751 have?", "context": "CREATE TABLE table_18600760_9 (water__sqmi_ VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT geo_id FROM table_18600760_9 WHERE ansi_code = 1759243", "question": "What is the geo code of the township with ANSI code 1759243?", "context": "CREATE TABLE table_18600760_9 (geo_id VARCHAR, ansi_code VARCHAR)"}, {"answer": "SELECT contestant FROM table_18626383_2 WHERE hometown = \"Santiago del Estero\"", "question": "When santiago del estero is the hometown who is the contestant?", "context": "CREATE TABLE table_18626383_2 (contestant VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_18626383_2 WHERE country = \"Belarus\"", "question": "When belarus is the country what is the hometown?", "context": "CREATE TABLE table_18626383_2 (hometown VARCHAR, country VARCHAR)"}, {"answer": "SELECT height__cm_ FROM table_18626383_2 WHERE country = \"Bahamas\"", "question": "When bahamas is the country what is the height in centimeters?", "context": "CREATE TABLE table_18626383_2 (height__cm_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(hometown) FROM table_18626383_2 WHERE country = \"Finland\"", "question": "When finland is the country how many hometowns are there?", "context": "CREATE TABLE table_18626383_2 (hometown VARCHAR, country VARCHAR)"}, {"answer": "SELECT contestant FROM table_18626383_2 WHERE hometown = \"Johannesburg\"", "question": "When johannesburg is the hometown who is the contestant?", "context": "CREATE TABLE table_18626383_2 (contestant VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(height__cm_) FROM table_18626383_2 WHERE contestant = \"Valora Roucek\"", "question": "When valora roucek is the contestant how many heights in centimeters are there?", "context": "CREATE TABLE table_18626383_2 (height__cm_ VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT round_1 FROM table_18646111_13 WHERE event = \"Team\"", "question": "Name the round 1 for team event", "context": "CREATE TABLE table_18646111_13 (round_1 VARCHAR, event VARCHAR)"}, {"answer": "SELECT COUNT(semifinals) FROM table_18646111_13 WHERE class = \"TT2\"", "question": "Name the number of semifinals for tt2", "context": "CREATE TABLE table_18646111_13 (semifinals VARCHAR, class VARCHAR)"}, {"answer": "SELECT 1 AS _8_finals FROM table_18646111_13 WHERE round_1 = \"N/A\"", "question": "Name the 1/8 finals for round 1 n/a", "context": "CREATE TABLE table_18646111_13 (round_1 VARCHAR)"}, {"answer": "SELECT COUNT(round_3) FROM table_18646111_13 WHERE class = \"TT1\"", "question": "Name the total number of round 3 for class tt1", "context": "CREATE TABLE table_18646111_13 (round_3 VARCHAR, class VARCHAR)"}, {"answer": "SELECT event FROM table_18646111_13 WHERE athlete = \"Hans Ruep\"", "question": "Name the event for hans ruep", "context": "CREATE TABLE table_18646111_13 (event VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(ka_band) FROM table_186468_1 WHERE v_band = \"4\"", "question": "When 4 is the v-band what is the overall amount of ka-bands?", "context": "CREATE TABLE table_186468_1 (ka_band VARCHAR, v_band VARCHAR)"}, {"answer": "SELECT property FROM table_186468_1 WHERE q_band = \"8.3\"", "question": "When 8.3 is the q-band what is the property?", "context": "CREATE TABLE table_186468_1 (property VARCHAR, q_band VARCHAR)"}, {"answer": "SELECT v_band FROM table_186468_1 WHERE k_band = \"5.5\"", "question": "When 5.5 is the l-band what is the v-band?", "context": "CREATE TABLE table_186468_1 (v_band VARCHAR, k_band VARCHAR)"}, {"answer": "SELECT v_band FROM table_186468_1 WHERE k_band = \"2\"", "question": "When 2 is the k-band what is the v-band?", "context": "CREATE TABLE table_186468_1 (v_band VARCHAR, k_band VARCHAR)"}, {"answer": "SELECT COUNT(property) FROM table_186468_1 WHERE ka_band = \"2\"", "question": "When 2 is the ka-band how many properties are there?", "context": "CREATE TABLE table_186468_1 (property VARCHAR, ka_band VARCHAR)"}, {"answer": "SELECT secondary_sponsor FROM table_187239_1 WHERE main_sponsor = \"Olympikus\"", "question": "When olympikus is the main sponsor who is the secondary sponsor?", "context": "CREATE TABLE table_187239_1 (secondary_sponsor VARCHAR, main_sponsor VARCHAR)"}, {"answer": "SELECT secondary_sponsor FROM table_187239_1 WHERE main_sponsor = \"Ale\"", "question": "When ale is the main sponsor who is the secondary sponsor?", "context": "CREATE TABLE table_187239_1 (secondary_sponsor VARCHAR, main_sponsor VARCHAR)"}, {"answer": "SELECT kit_manufacturer FROM table_187239_1 WHERE minor_sponsors = \"Tim Brasil Brokers\"", "question": "When tim brasil brokers are the minor sponsors who is the kit manufacturer?", "context": "CREATE TABLE table_187239_1 (kit_manufacturer VARCHAR, minor_sponsors VARCHAR)"}, {"answer": "SELECT minor_sponsors FROM table_187239_1 WHERE kit_manufacturer = \"Olympikus\" AND main_sponsor = \"Batavo\"", "question": "When batavo is the main sponsor and olympikus is the kit manufacturer who are the minor sponsors?", "context": "CREATE TABLE table_187239_1 (minor_sponsors VARCHAR, kit_manufacturer VARCHAR, main_sponsor VARCHAR)"}, {"answer": "SELECT COUNT(minor_sponsors) FROM table_187239_1 WHERE kit_manufacturer = \"Olympikus\" AND period = \"2011\"", "question": "When 2011 is the period and olympikus is the kit manufacturer how many minor sponsors are there?", "context": "CREATE TABLE table_187239_1 (minor_sponsors VARCHAR, kit_manufacturer VARCHAR, period VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_1876825_6 WHERE written_by = \"Neil Thompson\"", "question": "What season episode is written by neil thompson?", "context": "CREATE TABLE table_1876825_6 (no_in_season INTEGER, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_1876825_6 WHERE production_code = \"06-03-521\"", "question": "What was the original air for the 06-03-521 production code?", "context": "CREATE TABLE table_1876825_6 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_1876825_6 WHERE original_air_date = \"February 8, 2004\"", "question": "What episode number in the series aired on February 8, 2004?", "context": "CREATE TABLE table_1876825_6 (no_in_series INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_1876825_6 WHERE production_code = \"06-03-519\"", "question": "In season 5 what episode number was production 06-03-519?", "context": "CREATE TABLE table_1876825_6 (no_in_season VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(r2) FROM table_18812411_3", "question": "What was the minimum score for r2?", "context": "CREATE TABLE table_18812411_3 (r2 INTEGER)"}, {"answer": "SELECT country FROM table_18812411_3 WHERE r3 = 72 AND player = \"Larry Mize\"", "question": "What country had a r3 at 72, by Larry Mize?", "context": "CREATE TABLE table_18812411_3 (country VARCHAR, r3 VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(r1) FROM table_18812411_3 WHERE country = \"Fiji\"", "question": "How many times did Fiji win r1?", "context": "CREATE TABLE table_18812411_3 (r1 VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(socialist) FROM table_1881642_1 WHERE social_democratic = \"42.2%\"", "question": "How many figures are given for the Socialists in the case where the Social Democrats received 42.2%?", "context": "CREATE TABLE table_1881642_1 (socialist VARCHAR, social_democratic VARCHAR)"}, {"answer": "SELECT date_released FROM table_1881642_1 WHERE green_communist = \"5.7%\"", "question": "What date did the Green-Communists receive 5.7%?", "context": "CREATE TABLE table_1881642_1 (date_released VARCHAR, green_communist VARCHAR)"}, {"answer": "SELECT MIN(Otl) FROM table_1888165_1 WHERE PCt = 0.514", "question": "If the PCT is 0.514, what was the minimum OTL?", "context": "CREATE TABLE table_1888165_1 (Otl INTEGER, PCt VARCHAR)"}, {"answer": "SELECT MIN(Otl) FROM table_1888165_1", "question": "What was the minimum OTL amount?", "context": "CREATE TABLE table_1888165_1 (Otl INTEGER)"}, {"answer": "SELECT MIN(events) FROM table_18888159_1 WHERE country = \"Japan\"", "question": "Name the least events for japan", "context": "CREATE TABLE table_18888159_1 (events INTEGER, country VARCHAR)"}, {"answer": "SELECT country FROM table_18888159_1 WHERE events = 22", "question": "Name the country for 22 events", "context": "CREATE TABLE table_18888159_1 (country VARCHAR, events VARCHAR)"}, {"answer": "SELECT _number FROM table_18888159_1 WHERE country = \"Fiji\"", "question": "Name the number for fiji", "context": "CREATE TABLE table_18888159_1 (_number VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_18888159_1 WHERE _number = 6", "question": "Name the total number of points for number 6", "context": "CREATE TABLE table_18888159_1 (points VARCHAR, _number VARCHAR)"}, {"answer": "SELECT location FROM table_18893428_1 WHERE driver = \"Pierre de Caters\"", "question": "What is the location that had a driver named Pierre de Caters?", "context": "CREATE TABLE table_18893428_1 (location VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_18893428_1 WHERE driver = \"George Heath\"", "question": "Who is the constructor for the car driven by George Heath?", "context": "CREATE TABLE table_18893428_1 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(driver) FROM table_18893428_1 WHERE constructor = \"Mercedes-Benz\"", "question": "What is the total number of drivers who have cars constructed by Mercedes-Benz?", "context": "CREATE TABLE table_18893428_1 (driver VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT location FROM table_18893428_1 WHERE constructor = \"Lorraine-Dietrich\"", "question": "What is the location of the car that has a constructor of Lorraine-Dietrich?", "context": "CREATE TABLE table_18893428_1 (location VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT COUNT(report) FROM table_18893428_1 WHERE driver = \"Charles Jarrott\"", "question": "How many times did Charles Jarrott report?", "context": "CREATE TABLE table_18893428_1 (report VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_18893428_1 WHERE constructor = \"Mercedes-Benz\"", "question": "Who is the driver of the entry constructed by Mercedes-Benz?", "context": "CREATE TABLE table_18893428_1 (driver VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT MIN(used__kb_) FROM table_18950885_3 WHERE graphics_mode = 4", "question": "What is the used (kb) when the graphics mode is 4?", "context": "CREATE TABLE table_18950885_3 (used__kb_ INTEGER, graphics_mode VARCHAR)"}, {"answer": "SELECT char_cells FROM table_18950885_3 WHERE graphics_mode < 1.0", "question": "If graphics mode is less than 1.0, what are the char cells?", "context": "CREATE TABLE table_18950885_3 (char_cells VARCHAR, graphics_mode INTEGER)"}, {"answer": "SELECT MIN(converted) FROM table_1895522_2 WHERE number = \"19\"", "question": "What is the smallest converted value at number 19?", "context": "CREATE TABLE table_1895522_2 (converted INTEGER, number VARCHAR)"}, {"answer": "SELECT original_title FROM table_18987377_1 WHERE film_title_used_in_nomination = \"The Last Metro\"", "question": "Name the original title for the last metro", "context": "CREATE TABLE table_18987377_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_18987377_1 WHERE director = \"Andr\u00e9 T\u00e9chin\u00e9 Category:Articles with hCards\"", "question": "Name the film title for andr\u00e9 t\u00e9chin\u00e9 category:articles with hcards", "context": "CREATE TABLE table_18987377_1 (film_title_used_in_nomination VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_18987377_1 WHERE film_title_used_in_nomination = \"Coup de Torchon\"", "question": "Name the director for coup de torchon", "context": "CREATE TABLE table_18987377_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_18987377_1 WHERE director = \"Marcel Camus Category:Articles with hCards\"", "question": "Name the film titled for marcel camus category:articles with hcards", "context": "CREATE TABLE table_18987377_1 (film_title_used_in_nomination VARCHAR, director VARCHAR)"}, {"answer": "SELECT home_or_representative_town_or_province FROM table_19061741_1 WHERE name = \"Cindy Miranda\"", "question": "When cindy miranda is the name what is the home or representative town or province?", "context": "CREATE TABLE table_19061741_1 (home_or_representative_town_or_province VARCHAR, name VARCHAR)"}, {"answer": "SELECT status FROM table_19061741_1 WHERE name = \"Nel Rapiz\"", "question": "When nel rapiz is the name what is the status?", "context": "CREATE TABLE table_19061741_1 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT season FROM table_19061741_1 WHERE duration = \"Day 8-36\"", "question": "When day 8-36 is the duration what is the season?", "context": "CREATE TABLE table_19061741_1 (season VARCHAR, duration VARCHAR)"}, {"answer": "SELECT season FROM table_19061741_1 WHERE name = \"Luz McClinton\"", "question": "When luz mcclinton is the name what is the season?", "context": "CREATE TABLE table_19061741_1 (season VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(total_days_in_pbb_house) FROM table_19061741_1 WHERE name = \"Yen Galagnara\"", "question": "When yen galagnara is the name what is the highest total days in the pbb house?", "context": "CREATE TABLE table_19061741_1 (total_days_in_pbb_house INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(match_no) FROM table_19072602_2 WHERE team_europe = \"Osku Palermaa\"", "question": "How many match numbers have team europe listed as osku palermaa?", "context": "CREATE TABLE table_19072602_2 (match_no VARCHAR, team_europe VARCHAR)"}, {"answer": "SELECT COUNT(match_no) FROM table_19072602_5 WHERE team_europe = \"Osku Palermaa\"", "question": "When osku palermaa is on the europe team how many match numbers are there?", "context": "CREATE TABLE table_19072602_5 (match_no VARCHAR, team_europe VARCHAR)"}, {"answer": "SELECT team_usa FROM table_19072602_5 WHERE team_europe = \"Paul Moor\"", "question": "When paul moor is on the europe team who is on the usa team?", "context": "CREATE TABLE table_19072602_5 (team_usa VARCHAR, team_europe VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_19115414_4 WHERE team_classification = \"Team Columbia\"", "question": "Name the mountains classification for team columbia", "context": "CREATE TABLE table_19115414_4 (mountains_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT COUNT(stage__winner_) FROM table_19115414_4 WHERE team_classification = \"Team Columbia\"", "question": "Name the number of stage winners for team columbia", "context": "CREATE TABLE table_19115414_4 (stage__winner_ VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_19115414_4 WHERE points_classification = \"Alexander Kristoff\"", "question": "Name the mountains classification for alexander kristoff", "context": "CREATE TABLE table_19115414_4 (mountains_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT MIN(other_black_population) FROM table_19149550_7 WHERE black_african_population = 37811", "question": "How much is the other black population when the black African population is 37811?", "context": "CREATE TABLE table_19149550_7 (other_black_population INTEGER, black_african_population VARCHAR)"}, {"answer": "SELECT london_borough FROM table_19149550_7 WHERE black_caribbean_population = 17974", "question": "Where are the london borough with the black caribbean population of 17974?", "context": "CREATE TABLE table_19149550_7 (london_borough VARCHAR, black_caribbean_population VARCHAR)"}, {"answer": "SELECT rank FROM table_19149550_7 WHERE london_borough = \"Southwark\"", "question": "What is the rank of london borough in southwark?", "context": "CREATE TABLE table_19149550_7 (rank VARCHAR, london_borough VARCHAR)"}, {"answer": "SELECT MAX(black_caribbean_population) FROM table_19149550_7 WHERE other_black_population = 2243", "question": "What is the black caribbean population when the other black population is 2243?", "context": "CREATE TABLE table_19149550_7 (black_caribbean_population INTEGER, other_black_population VARCHAR)"}, {"answer": "SELECT MIN(black_caribbean_population) FROM table_19149550_7 WHERE black_african_population < 10552.0", "question": "What is the black caribbean population when the black African population is less than 10552.0?", "context": "CREATE TABLE table_19149550_7 (black_caribbean_population INTEGER, black_african_population INTEGER)"}, {"answer": "SELECT timeslot FROM table_19188562_2 WHERE rating__adults_18_49_ = \"0.6\"", "question": "What time slot had an adult rating of 0.6?", "context": "CREATE TABLE table_19188562_2 (timeslot VARCHAR, rating__adults_18_49_ VARCHAR)"}, {"answer": "SELECT season AS finale FROM table_19188562_2 WHERE us_viewers__in_millions_ = \"2.02\"", "question": "What season finale date has 2.02 million u.s. Viewers?", "context": "CREATE TABLE table_19188562_2 (season VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT us_viewers__in_millions_ FROM table_19188562_2 WHERE season = 1", "question": "How many million u.s. Viewers watched season 1?", "context": "CREATE TABLE table_19188562_2 (us_viewers__in_millions_ VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(tv_season) FROM table_19188562_2 WHERE rating__adults_18_49_ = \"1.2\"", "question": "How many tv series had an adult rating of 1.2?", "context": "CREATE TABLE table_19188562_2 (tv_season VARCHAR, rating__adults_18_49_ VARCHAR)"}, {"answer": "SELECT location FROM table_19210115_1 WHERE nickname = \"Hawks\"", "question": "Where is the University that is also called Hawks?", "context": "CREATE TABLE table_19210115_1 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT location FROM table_19210115_1 WHERE nickname = \"Owls\"", "question": "Where is the University that is also called Owls?", "context": "CREATE TABLE table_19210115_1 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_19210115_1 WHERE founded = 1863", "question": "How many University founded in 1863?", "context": "CREATE TABLE table_19210115_1 (enrollment VARCHAR, founded VARCHAR)"}, {"answer": "SELECT location FROM table_19210115_1 WHERE conference = \"American Athletic conference\"", "question": "Where is the University that plays in the American Athletic Conference?", "context": "CREATE TABLE table_19210115_1 (location VARCHAR, conference VARCHAR)"}, {"answer": "SELECT affiliation FROM table_19210115_1 WHERE nickname = \"Explorers\"", "question": "What is the affiliation of the University called Explorers?", "context": "CREATE TABLE table_19210115_1 (affiliation VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_19210115_1 WHERE institution = \"Drexel University\"", "question": "What is the nickname of Drexel University?", "context": "CREATE TABLE table_19210115_1 (nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT branding FROM table_19215259_1 WHERE location = \"Metro Manila\"", "question": "What is the brand in Metro Manila?", "context": "CREATE TABLE table_19215259_1 (branding VARCHAR, location VARCHAR)"}, {"answer": "SELECT branding FROM table_19215259_1 WHERE location = \"Cabanatuan\"", "question": "What is the brand in Cabanatuan?", "context": "CREATE TABLE table_19215259_1 (branding VARCHAR, location VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_19215259_1 WHERE location = \"Cebu\"", "question": "What is the power at the cebu station?", "context": "CREATE TABLE table_19215259_1 (power__kw_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT frequency FROM table_19215259_1 WHERE branding = \"101.5 News FM\"", "question": "What is the frequency of 101.5 News FM?", "context": "CREATE TABLE table_19215259_1 (frequency VARCHAR, branding VARCHAR)"}, {"answer": "SELECT location FROM table_19215259_1 WHERE power__kw_ = \"5kW\" AND frequency = \"102.3MHz\"", "question": "Where is the frequency 102.3mhz and 5kw power?", "context": "CREATE TABLE table_19215259_1 (location VARCHAR, power__kw_ VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT location FROM table_19215259_1 WHERE frequency = \"92.3MHz\"", "question": "Where is the frequency 92.3mhz?", "context": "CREATE TABLE table_19215259_1 (location VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_1924975_1", "question": "What is the highest no.?", "context": "CREATE TABLE table_1924975_1 (no INTEGER)"}, {"answer": "SELECT q1 + q2_time FROM table_1924975_1 WHERE q1_time = \"1:18.574\"", "question": "What is the q1+q2 time in which q1 is 1:18.574?", "context": "CREATE TABLE table_1924975_1 (q1 VARCHAR, q2_time VARCHAR, q1_time VARCHAR)"}, {"answer": "SELECT q1 + q2_time FROM table_1924975_1 WHERE q1_pos = 8", "question": "when q1 pos is 8 what is the q1+q2 time?", "context": "CREATE TABLE table_1924975_1 (q1 VARCHAR, q2_time VARCHAR, q1_pos VARCHAR)"}, {"answer": "SELECT COUNT(pos) FROM table_1924975_1 WHERE q1 + q2_time = \"2.34.736\"", "question": "when the q1+q2 time was 2.34.736, what was the total pos number?", "context": "CREATE TABLE table_1924975_1 (pos VARCHAR, q1 VARCHAR, q2_time VARCHAR)"}, {"answer": "SELECT MAX(q1_pos) FROM table_1924975_1 WHERE q1_time = \"1:16.218\"", "question": "When the q1 time is 1:16.218 what is the highest q1 pos? ", "context": "CREATE TABLE table_1924975_1 (q1_pos INTEGER, q1_time VARCHAR)"}, {"answer": "SELECT MAX(6 AS _car_sets) FROM table_19255192_1 WHERE fiscal_year = 1968", "question": "What is the largest 6-car-sets for fiscal year 1968?", "context": "CREATE TABLE table_19255192_1 (fiscal_year VARCHAR)"}, {"answer": "SELECT MIN(fiscal_year) FROM table_19255192_1 WHERE total_vehicles = 490", "question": "What is the lowest fiscal year if total vehicles is 490?", "context": "CREATE TABLE table_19255192_1 (fiscal_year INTEGER, total_vehicles VARCHAR)"}, {"answer": "SELECT degree_diploma FROM table_19304764_2 WHERE discipline = \"Otorhinolaryngology\"", "question": "Name the degree for otorhinolaryngology", "context": "CREATE TABLE table_19304764_2 (degree_diploma VARCHAR, discipline VARCHAR)"}, {"answer": "SELECT total_seats FROM table_19304764_2 WHERE discipline = \"Otorhinolaryngology\"", "question": "Name the total seats for otorhinolaryngology", "context": "CREATE TABLE table_19304764_2 (total_seats VARCHAR, discipline VARCHAR)"}, {"answer": "SELECT recognised_seats FROM table_19304764_2 WHERE discipline = \"Pharmacology\"", "question": "Name the recognised seats for pharmacology", "context": "CREATE TABLE table_19304764_2 (recognised_seats VARCHAR, discipline VARCHAR)"}, {"answer": "SELECT COUNT(permitted_seats) FROM table_19304764_2 WHERE discipline = \"General Surgery\"", "question": "Name the total number of seats for general surgery", "context": "CREATE TABLE table_19304764_2 (permitted_seats VARCHAR, discipline VARCHAR)"}, {"answer": "SELECT MIN(recognised_seats) FROM table_19304764_2", "question": "Name the least recognised seats", "context": "CREATE TABLE table_19304764_2 (recognised_seats INTEGER)"}, {"answer": "SELECT COUNT(nation) FROM table_19312274_3 WHERE name = \"FMS International\"", "question": "How many nations do the FMS international team represent?", "context": "CREATE TABLE table_19312274_3 (nation VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(fastest_laps) FROM table_19312274_3", "question": "What is the smallest number of fastest laps listed?", "context": "CREATE TABLE table_19312274_3 (fastest_laps INTEGER)"}, {"answer": "SELECT championship_titles FROM table_19312274_3 WHERE name = \"LRS Formula / Laurent R\u00e9don Motorsport\"", "question": "How many championship titles for LRS Formula / Laurent R\u00e9don Motorsport?", "context": "CREATE TABLE table_19312274_3 (championship_titles VARCHAR, name VARCHAR)"}, {"answer": "SELECT version FROM table_19329117_1 WHERE official_name = \"AutoCAD Architectural Desktop 3\"", "question": "What's the version of AutoCAD Architectural Desktop 3?", "context": "CREATE TABLE table_19329117_1 (version VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT regular_season FROM table_1939214_1 WHERE playoffs = \"Conference Finals\"", "question": "In what season did the team get in the conference finals of the playoffs?", "context": "CREATE TABLE table_1939214_1 (regular_season VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT playoffs FROM table_1939214_1 WHERE league = \"USISL Pro league\"", "question": "What was the team's status in the USISL Pro League playoffs?", "context": "CREATE TABLE table_1939214_1 (playoffs VARCHAR, league VARCHAR)"}, {"answer": "SELECT year FROM table_1939214_1 WHERE league = \"USL PDL\" AND regular_season = \"2nd, Northeast\"", "question": "In what year did the team compete in the 2nd, Northeast season of the USL PDL League?", "context": "CREATE TABLE table_1939214_1 (year VARCHAR, league VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT open_cup FROM table_1939214_1 WHERE league = \"USISL D-3 Pro league\" AND regular_season = \"2nd, Northeast\"", "question": "What did the team do in the Open Cup in the 2nd, Northeast season of the USISL D-3 Pro League?", "context": "CREATE TABLE table_1939214_1 (open_cup VARCHAR, league VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT year FROM table_1939214_1 WHERE league = \"USISL Pro league\"", "question": "In what year did the team compete in the USISL Pro League?", "context": "CREATE TABLE table_1939214_1 (year VARCHAR, league VARCHAR)"}, {"answer": "SELECT MIN(arabs_2001) FROM table_1939367_1 WHERE _percentage_2001 = \"0.1%\"", "question": "If %2001 is 0.1%, what is the minimum Arabs 2001 number?", "context": "CREATE TABLE table_1939367_1 (arabs_2001 INTEGER, _percentage_2001 VARCHAR)"}, {"answer": "SELECT MAX(arabs_2001) FROM table_1939367_1 WHERE province = \"Manitoba\"", "question": "If the province is Manitoba, what is the Arabs 2001 number?", "context": "CREATE TABLE table_1939367_1 (arabs_2001 INTEGER, province VARCHAR)"}, {"answer": "SELECT COUNT(province) FROM table_1939367_1 WHERE _percentage_2011 = \"0.0%\"", "question": "What is the province amount if the % 2011 is 0.0%", "context": "CREATE TABLE table_1939367_1 (province VARCHAR, _percentage_2011 VARCHAR)"}, {"answer": "SELECT COUNT(arabs_2001) FROM table_1939367_1 WHERE province = \"British Columbia\"", "question": "If the province is British Columbia, what is the Arabs 2001 total number?", "context": "CREATE TABLE table_1939367_1 (arabs_2001 VARCHAR, province VARCHAR)"}, {"answer": "SELECT arabs_2011 FROM table_1939367_1 WHERE province = \"Nunavut\"", "question": "If the province is Nunavut, what is the Arabs 2011 amount?", "context": "CREATE TABLE table_1939367_1 (arabs_2011 VARCHAR, province VARCHAR)"}, {"answer": "SELECT date FROM table_1940012_2 WHERE runner_s__up = \"Song-Hee Kim\"", "question": "When did the tournament, in which the runner-up was Song-Hee Kim, happen", "context": "CREATE TABLE table_1940012_2 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winners_share___$__ FROM table_1940012_2 WHERE margin_of_victory = \"2 strokes\"", "question": "What was the amount of winners share (in $) in the game with a margin victory of 2 strokes?", "context": "CREATE TABLE table_1940012_2 (winners_share___$__ VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT winning_score FROM table_1940012_2 WHERE tournament = \"Sybase Classic\"", "question": "What was the winning score in the Sybase Classic tournament?", "context": "CREATE TABLE table_1940012_2 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_1940012_2 WHERE runner_s__up = \"Birdie Kim\"", "question": "What was the winning score in the tournament, ending with Birdie Kim as a runner-up?", "context": "CREATE TABLE table_1940012_2 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT MIN(latin_americans_2011) FROM table_1939405_2 WHERE province = \"Northwest Territories\"", "question": "How many Latin Americans were there in the Northwest Territories in 2011?", "context": "CREATE TABLE table_1939405_2 (latin_americans_2011 INTEGER, province VARCHAR)"}, {"answer": "SELECT COUNT(latin_americans_2001) FROM table_1939405_2 WHERE province = \"Yukon\"", "question": "How many results of the count of Latin Americans in Yukon in 2001 are there?", "context": "CREATE TABLE table_1939405_2 (latin_americans_2001 VARCHAR, province VARCHAR)"}, {"answer": "SELECT _percentage_2001 FROM table_1939405_2 WHERE _percentage_2011 = \"0.8%\" AND province = \"Manitoba\"", "question": "What's the percentage in 2001 in Manitoba where the percentage in 2011 is 0.8%?", "context": "CREATE TABLE table_1939405_2 (_percentage_2001 VARCHAR, _percentage_2011 VARCHAR, province VARCHAR)"}, {"answer": "SELECT _percentage_2001 FROM table_1939405_2 WHERE _percentage_2011 = \"0.2%\"", "question": "What are the percentages in 2001 in all the provinces where the percentage in 2011 is 0.2%?", "context": "CREATE TABLE table_1939405_2 (_percentage_2001 VARCHAR, _percentage_2011 VARCHAR)"}, {"answer": "SELECT MAX(latin_americans_2001) FROM table_1939405_2 WHERE _percentage_2001 = \"0.0%\" AND _percentage_2011 = \"0.2%\"", "question": "How many Latin Americans were there in 2001 in the province with 0.0% 2001 and 0.2% 2011?", "context": "CREATE TABLE table_1939405_2 (latin_americans_2001 INTEGER, _percentage_2001 VARCHAR, _percentage_2011 VARCHAR)"}, {"answer": "SELECT MIN(latin_americans_2011) FROM table_1939405_2 WHERE province = \"Saskatchewan\"", "question": "How many Latin Americans lived in 2011 in Saskatchewan?", "context": "CREATE TABLE table_1939405_2 (latin_americans_2011 INTEGER, province VARCHAR)"}, {"answer": "SELECT MIN(champ_car_world_series__2004_2007_) FROM table_19524523_1", "question": "What is the minimum number of wins possible for the Champ Car World Series among all the drivers?", "context": "CREATE TABLE table_19524523_1 (champ_car_world_series__2004_2007_ INTEGER)"}, {"answer": "SELECT MAX(champ_car_world_series__2004_2007_) FROM table_19524523_1 WHERE usac__1956_1995_ = 2", "question": "What is the most Champ Car wins for any driver with a USAC record of 2?", "context": "CREATE TABLE table_19524523_1 (champ_car_world_series__2004_2007_ INTEGER, usac__1956_1995_ VARCHAR)"}, {"answer": "SELECT MAX(afc_titles) FROM table_1952065_4 WHERE teams_with_division_titles = \"Cleveland Browns\"", "question": "How many afc titles did the Cleveland Browns have?", "context": "CREATE TABLE table_1952065_4 (afc_titles INTEGER, teams_with_division_titles VARCHAR)"}, {"answer": "SELECT division_championships FROM table_1952065_4 WHERE teams_with_division_titles = \"Pittsburgh Steelers\"", "question": "How many division championships did the Pittsburgh Steelers have?", "context": "CREATE TABLE table_1952065_4 (division_championships VARCHAR, teams_with_division_titles VARCHAR)"}, {"answer": "SELECT MAX(afc_titles) FROM table_1952065_4 WHERE super_bowl_wins = 2", "question": "How many afc titles were there when there were 2 super bowl wins?", "context": "CREATE TABLE table_1952065_4 (afc_titles INTEGER, super_bowl_wins VARCHAR)"}, {"answer": "SELECT COUNT(teams_with_division_titles) FROM table_1952065_4 WHERE division_championships = 9", "question": "How many division title teams were in the division championships 9 times?", "context": "CREATE TABLE table_1952065_4 (teams_with_division_titles VARCHAR, division_championships VARCHAR)"}, {"answer": "SELECT MAX(division_championships) FROM table_1952065_4 WHERE playoff_berths = 11", "question": "What is the highest number of division championships where playoff berths were 11?", "context": "CREATE TABLE table_1952065_4 (division_championships INTEGER, playoff_berths VARCHAR)"}, {"answer": "SELECT original_toronto_cast FROM table_19529639_3 WHERE current_broadway_cast = \"Kate Rockwell\"", "question": "Who in the original Toronto cast played the character played by Kate Rockwell in the current Broadway cast?", "context": "CREATE TABLE table_19529639_3 (original_toronto_cast VARCHAR, current_broadway_cast VARCHAR)"}, {"answer": "SELECT current_west_end_cast FROM table_19529639_3 WHERE original_west_end_cast = \"Jodie Jacobs\"", "question": "What member of the current West End cast plays the character played by Jodie Jacobs in the original West End cast?", "context": "CREATE TABLE table_19529639_3 (current_west_end_cast VARCHAR, original_west_end_cast VARCHAR)"}, {"answer": "SELECT current_broadway_cast FROM table_19529639_3 WHERE original_broadway_cast = \"Constantine Maroulis\"", "question": "What member of the current Broadway cast plays the character played by Constantine Maroulis from the original Broadway cast?", "context": "CREATE TABLE table_19529639_3 (current_broadway_cast VARCHAR, original_broadway_cast VARCHAR)"}, {"answer": "SELECT COUNT(second_national_tour_year_2) FROM table_19529639_3 WHERE original_west_end_cast = \"Oliver Tompsett\"", "question": "How many different actors from the Second national tour year 2 played the character played by Oliver Tompsett from the original West End cast?", "context": "CREATE TABLE table_19529639_3 (second_national_tour_year_2 VARCHAR, original_west_end_cast VARCHAR)"}, {"answer": "SELECT original_toronto_cast FROM table_19529639_3 WHERE first_national_tour_cast = \"Constantine Maroulis\"", "question": "What member of the original Toronto cast played the character played by Constantine Maroulis in the first national tour cast?", "context": "CREATE TABLE table_19529639_3 (original_toronto_cast VARCHAR, first_national_tour_cast VARCHAR)"}, {"answer": "SELECT _number FROM table_19534677_1 WHERE creators = \"Bill Finger Edmond Hamilton Dick Sprang , et al.\"", "question": "Name the # for bill finger edmond hamilton dick sprang , et al.", "context": "CREATE TABLE table_19534677_1 (_number VARCHAR, creators VARCHAR)"}, {"answer": "SELECT volume_line FROM table_19534677_1 WHERE _number = 8", "question": "Name the volume line for number 8", "context": "CREATE TABLE table_19534677_1 (volume_line VARCHAR, _number VARCHAR)"}, {"answer": "SELECT COUNT(material_collected) FROM table_19534677_1 WHERE isbn = \"978-1401221935\"", "question": "Name the total number for material collected for 978-1401221935", "context": "CREATE TABLE table_19534677_1 (material_collected VARCHAR, isbn VARCHAR)"}, {"answer": "SELECT COUNT(creators) FROM table_19534677_1 WHERE volume_title = \"Flash of Two Worlds\"", "question": "Name the umbr of creators for flash of two worlds", "context": "CREATE TABLE table_19534677_1 (creators VARCHAR, volume_title VARCHAR)"}, {"answer": "SELECT COUNT(material_collected) FROM table_19534677_1 WHERE volume_title = \"Justice League of America by George P\u00e9rez, Vol. 2\"", "question": "Name the total number of material collected for  justice league of america by george p\u00e9rez, vol. 2", "context": "CREATE TABLE table_19534677_1 (material_collected VARCHAR, volume_title VARCHAR)"}, {"answer": "SELECT MAX(number_one_s_) FROM table_19542477_8", "question": "What is the highest overall number one(s)?", "context": "CREATE TABLE table_19542477_8 (number_one_s_ INTEGER)"}, {"answer": "SELECT \"player\" FROM table_19611329_1 WHERE year_inducted = 1945 AND inducted_as = \"player\"", "question": "Name the player for 1945 for player", "context": "CREATE TABLE table_19611329_1 (year_inducted VARCHAR, inducted_as VARCHAR)"}, {"answer": "SELECT inducted_as FROM table_19611329_1 WHERE player = \"Joe Medwick Category:Articles with hCards\"", "question": "Name the inducted as for  joe medwick category:articles with hcards", "context": "CREATE TABLE table_19611329_1 (inducted_as VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_1963459_2 WHERE manufacturer = \"Toyota\"", "question": "What teams drive cars manufactured by Toyota?", "context": "CREATE TABLE table_1963459_2 (team VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT average_speed__mph_ FROM table_1963459_2 WHERE team = \"Jon Thorne\"", "question": "What is Jon Thorne's average speed?", "context": "CREATE TABLE table_1963459_2 (average_speed__mph_ VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_1963459_2 WHERE year = 1974", "question": "What day did the race in 1974 take place on?", "context": "CREATE TABLE table_1963459_2 (date VARCHAR, year VARCHAR)"}, {"answer": "SELECT average_speed__mph_ FROM table_1963459_2 WHERE driver = \"Tony Stewart\"", "question": "What is Tony Stewart's average speed?", "context": "CREATE TABLE table_1963459_2 (average_speed__mph_ VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_1963459_2 WHERE average_speed__mph_ = \"145.24\"", "question": "What year was the average speed 145.24", "context": "CREATE TABLE table_1963459_2 (year INTEGER, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT COUNT(surface) FROM table_1964010_2 WHERE year = 2005 AND score = \"6\u20137 (4\u20137) , 3\u20136, 7\u20136 (7\u20132) , 3\u20136\"", "question": "How many surfaces were played on in 2005 where the score was 6\u20137 (4\u20137) , 3\u20136, 7\u20136 (7\u20132) , 3\u20136?", "context": "CREATE TABLE table_1964010_2 (surface VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_1964010_2 WHERE score = \"6\u20134, 4\u20136, 7\u20136 (7\u20134)\"", "question": "Who are the opponents of Mike Byron and partner in matches where the score was  6\u20134, 4\u20136, 7\u20136 (7\u20134)?", "context": "CREATE TABLE table_1964010_2 (opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_1965650_10 WHERE nhl_team = \"California Golden Seals\"", "question": "What player is from the California Golden Seals?", "context": "CREATE TABLE table_1965650_10 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1965650_10 WHERE player = \"Lee Palmer\"", "question": "What team does Lee Palmer play for?", "context": "CREATE TABLE table_1965650_10 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_1965650_10 WHERE player = \"Alain Labrecque\"", "question": "What country is Alain Labrecque from?", "context": "CREATE TABLE table_1965650_10 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_1965650_10 WHERE nhl_team = \"Boston Bruins\"", "question": "What is Boston Bruins minimum pick?", "context": "CREATE TABLE table_1965650_10 (pick__number INTEGER, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_1965650_2 WHERE player = \"Glenn Goldup\"", "question": "Name the position of glenn goldup", "context": "CREATE TABLE table_1965650_2 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_1965650_2 WHERE player = \"Colin Campbell\"", "question": "Name the least pick number for colin campbell", "context": "CREATE TABLE table_1965650_2 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_1965650_2 WHERE pick__number = 30", "question": "Name the player for pick number for 30", "context": "CREATE TABLE table_1965650_2 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1965650_2 WHERE player = \"Jimmy Jones\"", "question": "Name the college/junior club team for jimmy jones", "context": "CREATE TABLE table_1965650_2 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT mvp FROM table_19651669_1 WHERE champion = \"Scaligera Verona\"", "question": "Who was the MVP the season Scaligera Verona were Champions?", "context": "CREATE TABLE table_19651669_1 (mvp VARCHAR, champion VARCHAR)"}, {"answer": "SELECT finalist FROM table_19651669_1 WHERE season = \"2007-08\"", "question": "Who was the finalist in the season 2007-08?", "context": "CREATE TABLE table_19651669_1 (finalist VARCHAR, season VARCHAR)"}, {"answer": "SELECT finalist FROM table_19651669_1 WHERE final_venue = \"Varese\"", "question": "Who was the finalist when the final venue was Varese?", "context": "CREATE TABLE table_19651669_1 (finalist VARCHAR, final_venue VARCHAR)"}, {"answer": "SELECT finalist FROM table_19651669_1 WHERE mvp = \"Romain Sato\"", "question": "Who was the finalist when the MVP was Romain Sato?", "context": "CREATE TABLE table_19651669_1 (finalist VARCHAR, mvp VARCHAR)"}, {"answer": "SELECT champion FROM table_19651669_1 WHERE season = \"1998-99\"", "question": "Who was the champion for the 1998-99 season?", "context": "CREATE TABLE table_19651669_1 (champion VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(final_venue) FROM table_19651669_1 WHERE season = \"1997-98\"", "question": "How many final venues were there in the 1997-98 season?", "context": "CREATE TABLE table_19651669_1 (final_venue VARCHAR, season VARCHAR)"}, {"answer": "SELECT player FROM table_1965650_7 WHERE nhl_team = \"Detroit Red Wings\"", "question": "What player was drafted to the Detroit Red Wings?", "context": "CREATE TABLE table_1965650_7 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1965650_7 WHERE player = \"Dan Follet\"", "question": "Who did Dan Follet play for before the draft?", "context": "CREATE TABLE table_1965650_7 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(nhl_team) FROM table_1965650_7 WHERE player = \"Denis Andersen\"", "question": "How many teams have a player named Denis Andersen?", "context": "CREATE TABLE table_1965650_7 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1965650_7 WHERE nhl_team = \"Buffalo Sabres\"", "question": "Which College did the Buffalo Sabres' pick play for?", "context": "CREATE TABLE table_1965650_7 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1965650_8 WHERE player = \"Denis Desgagnes\"", "question": "What NHL team does Denis Desgagnes play for?", "context": "CREATE TABLE table_1965650_8 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1965650_8 WHERE player = \"Bob Law\"", "question": "What cub team or college did Bob Law come from?", "context": "CREATE TABLE table_1965650_8 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1965650_8 WHERE player = \"Jim Koleff\"", "question": "What NHL team did jim koleff play on?", "context": "CREATE TABLE table_1965650_8 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_1969634_1 WHERE nickname = \"Skyhawks\"", "question": "How many teams have skyhawks as a nickname?", "context": "CREATE TABLE table_1969634_1 (division VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT enrollment FROM table_1969634_1 WHERE location = \"Garden City, New York\"", "question": "What is the total enrollment for the school in garden city, new york?", "context": "CREATE TABLE table_1969634_1 (enrollment VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(institution) FROM table_1969634_1 WHERE nickname = \"Greyhounds\"", "question": "How many schools with greyhounds as their nickname?", "context": "CREATE TABLE table_1969634_1 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_1969634_1 WHERE institution = \"Southern New Hampshire University\"", "question": "How many schools named southern new hampshire university?", "context": "CREATE TABLE table_1969634_1 (enrollment VARCHAR, institution VARCHAR)"}, {"answer": "SELECT results FROM table_19722436_2 WHERE gt1_winning_team = \"No.55 IPB Spartak Racing\"", "question": "When no.55 ipb spartak racing is the g1 winning team what are the results?", "context": "CREATE TABLE table_19722436_2 (results VARCHAR, gt1_winning_team VARCHAR)"}, {"answer": "SELECT COUNT(lmp1_winning_team) FROM table_19722436_2 WHERE gt1_winning_team = \"Peter Kox Roman Rusinov\"", "question": "When peter kox roman rusinov is the gt1 of the winning team how many lmp1 winning teams are there?", "context": "CREATE TABLE table_19722436_2 (lmp1_winning_team VARCHAR, gt1_winning_team VARCHAR)"}, {"answer": "SELECT COUNT(rnd) FROM table_19722436_2 WHERE gt1_winning_team = \"Julien Jousse Patrice Goueslard Yann Clairay\"", "question": "When  julien jousse patrice goueslard yann clairay is teh gt1 of the winning team how many measurements of rnd. are there?", "context": "CREATE TABLE table_19722436_2 (rnd VARCHAR, gt1_winning_team VARCHAR)"}, {"answer": "SELECT COUNT(nickname) FROM table_1973729_1 WHERE location = \"Milton, Massachusetts\"", "question": "How many nicknames were associated with Milton, Massachusetts?", "context": "CREATE TABLE table_1973729_1 (nickname VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_1973729_1 WHERE institution = \"Eastern Nazarene College\"", "question": "Where is the Eastern Nazarene College located?", "context": "CREATE TABLE table_1973729_1 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(joined) FROM table_1973729_1 WHERE nickname = \"Nor'easters\"", "question": "How many years are listed under joined for the Nor'easters?", "context": "CREATE TABLE table_1973729_1 (joined VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT location FROM table_1973729_1 WHERE enrollment = 2686", "question": "What location contains a school that has an enrollment of 2686?", "context": "CREATE TABLE table_1973729_1 (location VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT MIN(joined) FROM table_1973729_1 WHERE nickname = \"Lions\"", "question": "In what year did the Lions join?", "context": "CREATE TABLE table_1973729_1 (joined INTEGER, nickname VARCHAR)"}, {"answer": "SELECT current_conference FROM table_1973729_2 WHERE nickname = \"Chargers\"", "question": "Which conference has the nickname Chargers?", "context": "CREATE TABLE table_1973729_2 (current_conference VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT current_conference FROM table_1973729_2 WHERE nickname = \"Lions\"", "question": "Which conference has the nickname Lions?", "context": "CREATE TABLE table_1973729_2 (current_conference VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT MAX(joined) FROM table_1973729_2 WHERE current_conference = \"Dropped athletics\"", "question": "What joined year does Dropped Athletics have?", "context": "CREATE TABLE table_1973729_2 (joined INTEGER, current_conference VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_1973729_2", "question": "What is the latest founded year?", "context": "CREATE TABLE table_1973729_2 (founded INTEGER)"}, {"answer": "SELECT institution FROM table_1974443_1 WHERE location = \"Watertown, Wisconsin\"", "question": "What institution is located in Watertown, Wisconsin?", "context": "CREATE TABLE table_1974443_1 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_1974443_1 WHERE founded = 1880", "question": "What is the smallest enrollment for institutions founded in exactly 1880?", "context": "CREATE TABLE table_1974443_1 (enrollment INTEGER, founded VARCHAR)"}, {"answer": "SELECT enrollment FROM table_1974443_1 WHERE institution = \"Lakeland College\"", "question": "What is the enrollment for Lakeland College?", "context": "CREATE TABLE table_1974443_1 (enrollment VARCHAR, institution VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_1974443_1 WHERE institution = \"Concordia University\"", "question": "What is the maximum enrollment for Concordia University?", "context": "CREATE TABLE table_1974443_1 (enrollment INTEGER, institution VARCHAR)"}, {"answer": "SELECT couple FROM table_19744915_15 WHERE total = 6", "question": "What couple had a total score of 6?", "context": "CREATE TABLE table_19744915_15 (couple VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_19744915_15", "question": "What is the lowest rank?", "context": "CREATE TABLE table_19744915_15 (rank INTEGER)"}, {"answer": "SELECT couple FROM table_19744915_15 WHERE vote_percentage = \"7.691%\"", "question": "What couple had a vote percentage of 7.691%", "context": "CREATE TABLE table_19744915_15 (couple VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_19744915_15 WHERE couple = \"Ellery and Frankie\"", "question": "How many results do Ellery and Frankie have?", "context": "CREATE TABLE table_19744915_15 (result VARCHAR, couple VARCHAR)"}, {"answer": "SELECT rank FROM table_19744915_15 WHERE couple = \"Michael and Melanie\"", "question": "What is Michael and Melanie's rank?", "context": "CREATE TABLE table_19744915_15 (rank VARCHAR, couple VARCHAR)"}, {"answer": "SELECT rank FROM table_19744915_16 WHERE couple = \"Zoe and Matt\"", "question": "What is Zoe and Matt's rank?", "context": "CREATE TABLE table_19744915_16 (rank VARCHAR, couple VARCHAR)"}, {"answer": "SELECT judges FROM table_19744915_16 WHERE couple = \"Roxanne and Daniel\"", "question": "What is the judge's total for Roxanne and Daniel?", "context": "CREATE TABLE table_19744915_16 (judges VARCHAR, couple VARCHAR)"}, {"answer": "SELECT result FROM table_19744915_16 WHERE couple = \"Zoe and Matt\"", "question": "What is Zoe and Matt's result?", "context": "CREATE TABLE table_19744915_16 (result VARCHAR, couple VARCHAR)"}, {"answer": "SELECT result FROM table_19744915_16 WHERE judges = 6", "question": "What is the result of judge 6?", "context": "CREATE TABLE table_19744915_16 (result VARCHAR, judges VARCHAR)"}, {"answer": "SELECT order FROM table_19744915_3 WHERE public_vote = \"18.155%\"", "question": "what is the order when public vote was 18.155%", "context": "CREATE TABLE table_19744915_3 (order VARCHAR, public_vote VARCHAR)"}, {"answer": "SELECT public_vote FROM table_19744915_3 WHERE couple = \"Graeme & Kristina\"", "question": "what is the public vote on graeme & kristina", "context": "CREATE TABLE table_19744915_3 (public_vote VARCHAR, couple VARCHAR)"}, {"answer": "SELECT robin FROM table_19744915_3 WHERE jason = \"2.5\"", "question": "what is robin's stat when jason was 2.5", "context": "CREATE TABLE table_19744915_3 (robin VARCHAR, jason VARCHAR)"}, {"answer": "SELECT skating_song FROM table_19744915_3 WHERE couple = \"Graeme & Kristina\"", "question": "state the skating song of graeme & kristina", "context": "CREATE TABLE table_19744915_3 (skating_song VARCHAR, couple VARCHAR)"}, {"answer": "SELECT scoreboard FROM table_19744915_3 WHERE karen = \"4.5\"", "question": "what is the scoreboard when karen was 4.5", "context": "CREATE TABLE table_19744915_3 (scoreboard VARCHAR, karen VARCHAR)"}, {"answer": "SELECT COUNT(couple) FROM table_19744915_3 WHERE total = \"14.5\"", "question": "how many coupless totalled 14.5", "context": "CREATE TABLE table_19744915_3 (couple VARCHAR, total VARCHAR)"}, {"answer": "SELECT nickname FROM table_1974545_1 WHERE enrollment = 9000", "question": "Name the nickname for enrollment being 9000", "context": "CREATE TABLE table_1974545_1 (nickname VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT type FROM table_1974632_1 WHERE enrollment = 2102", "question": "what type is the institute that enrolled 2102", "context": "CREATE TABLE table_1974632_1 (type VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT location FROM table_1974632_1 WHERE type = \"Private/Presbyterian\"", "question": "where is the private/presbyterian institute", "context": "CREATE TABLE table_1974632_1 (location VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_1974632_1 WHERE institution = \"Alvernia University\"", "question": "what type of institution is alvernia university", "context": "CREATE TABLE table_1974632_1 (type VARCHAR, institution VARCHAR)"}, {"answer": "SELECT institution FROM table_1974632_1 WHERE location = \"Glenside, Pennsylvania\"", "question": "state the institution in glenside, pennsylvania", "context": "CREATE TABLE table_1974632_1 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT result FROM table_19753079_13 WHERE first_elected = 2004 AND incumbent = \"John Barrow\"", "question": "What was the result when John Barrow was the incumbent first elected in 2004?", "context": "CREATE TABLE table_19753079_13 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_19753079_13 WHERE party = \"Democratic\" AND district = \"Georgia 8\"", "question": "How many incumbents are there in the georgia 8 district when the party is democratic?", "context": "CREATE TABLE table_19753079_13 (incumbent VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_19753079_13 WHERE incumbent = \"John Linder\"", "question": "In what district is the incumbent John Linder?", "context": "CREATE TABLE table_19753079_13 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_19753079_13 WHERE district = \"Georgia 8\"", "question": "What was the result of the Georgia 8 district?", "context": "CREATE TABLE table_19753079_13 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT mind FROM table_19760_1 WHERE reason = \"qut\"", "question": "What is the mind of the one that has qut reason?", "context": "CREATE TABLE table_19760_1 (mind VARCHAR, reason VARCHAR)"}, {"answer": "SELECT understanding FROM table_19760_1 WHERE reason = \"\u03bd\u03bf\u1fe6\u03c2 Nous\"", "question": "What is the understanding of the one that has \u03bd\u03bf\u1fe6\u03c2 nous reasoning?", "context": "CREATE TABLE table_19760_1 (understanding VARCHAR, reason VARCHAR)"}, {"answer": "SELECT MIN(1949 AS _50__) AS $_millions_ FROM table_19766_1 WHERE cumulative__$_millions_ = 376", "question": "How much was spent in 1949/50 (in $ millions) in the country where the cumulative expenditure is $376 millions?", "context": "CREATE TABLE table_19766_1 (cumulative__$_millions_ VARCHAR)"}, {"answer": "SELECT MAX(1948 AS _49__) AS $_millions_ FROM table_19766_1 WHERE country = \"Iceland\"", "question": "How many millions of $ were spent in Iceland in 1948/49?", "context": "CREATE TABLE table_19766_1 (country VARCHAR)"}, {"answer": "SELECT COUNT(_percentage_of_popular_vote) FROM table_19769687_3 WHERE _number_of_seats_won = 83", "question": "Name the total number for % popular vote for # of seats won for 83", "context": "CREATE TABLE table_19769687_3 (_percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR)"}, {"answer": "SELECT _percentage_of_popular_vote FROM table_19769687_3 WHERE election = \"1926\"", "question": "Name the % of popular vote for election for 1926", "context": "CREATE TABLE table_19769687_3 (_percentage_of_popular_vote VARCHAR, election VARCHAR)"}, {"answer": "SELECT MAX(_number_of_seats_won) FROM table_19769687_3", "question": "Name the most # of seats won", "context": "CREATE TABLE table_19769687_3 (_number_of_seats_won INTEGER)"}, {"answer": "SELECT MAX(_number_of_total_votes) FROM table_19769687_3 WHERE election = \"1878\"", "question": "Name the most number of total votes for election for 1878", "context": "CREATE TABLE table_19769687_3 (_number_of_total_votes INTEGER, election VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_197638_7 WHERE french_open = 1974", "question": "What is the number for the french open 1974?", "context": "CREATE TABLE table_197638_7 (_number INTEGER, french_open VARCHAR)"}, {"answer": "SELECT MAX(australian_open) FROM table_197638_7", "question": "When was the Australian open?", "context": "CREATE TABLE table_197638_7 (australian_open INTEGER)"}, {"answer": "SELECT COUNT(age) FROM table_197638_7 WHERE player = \"Maureen Connolly Brinker\"", "question": "How many ages have Maureen Connolly Brinker as the player?", "context": "CREATE TABLE table_197638_7 (age VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(french_open) FROM table_197638_7 WHERE player = \"Serena Williams\"", "question": "When is the French Open when serena williams is the player?", "context": "CREATE TABLE table_197638_7 (french_open INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(dismissals) FROM table_19769948_26 WHERE innings = 191", "question": "how many dismissals in a game with 191 innings", "context": "CREATE TABLE table_19769948_26 (dismissals VARCHAR, innings VARCHAR)"}, {"answer": "SELECT COUNT(residence_city) FROM table_198175_2 WHERE english_name = \"Province of Viborg and Nyslott\"", "question": "How many residence cities have an English name of Province of Viborg and Nyslott?", "context": "CREATE TABLE table_198175_2 (residence_city VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT MAX(map_number) FROM table_198175_2", "question": "What is the highest value for map number?", "context": "CREATE TABLE table_198175_2 (map_number INTEGER)"}, {"answer": "SELECT swedish_name FROM table_198175_2 WHERE residence_city = \"Loviisa\"", "question": "What is every Swedish name for residence city is Loviisa?", "context": "CREATE TABLE table_198175_2 (swedish_name VARCHAR, residence_city VARCHAR)"}, {"answer": "SELECT finnish_name FROM table_198175_2 WHERE english_name = \"Province of Viborg and Nyslott\"", "question": "What is every Finnish name for the English name of Province of Viborg and Nyslott?", "context": "CREATE TABLE table_198175_2 (finnish_name VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT traditional_chinese FROM table_1982739_2 WHERE area = 181", "question": "What is the traditional Chinese character set for the location that has an area of 181?", "context": "CREATE TABLE table_1982739_2 (traditional_chinese VARCHAR, area VARCHAR)"}, {"answer": "SELECT COUNT(area) FROM table_1982739_2 WHERE english_name = \"Nanqiao District\"", "question": "What is the total number of areas that are called Nanqiao District?", "context": "CREATE TABLE table_1982739_2 (area VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT COUNT(english_name) FROM table_1982739_2 WHERE traditional_chinese = \"\u5168\u6912\u7e23\"", "question": "What is the number of English names that have a Traditional Chinese name of \u5168\u6912\u7e23?", "context": "CREATE TABLE table_1982739_2 (english_name VARCHAR, traditional_chinese VARCHAR)"}, {"answer": "SELECT pinyin FROM table_1982739_2 WHERE english_name = \"Dingyuan County\"", "question": "What is the Pinyin name for Dingyuan County?", "context": "CREATE TABLE table_1982739_2 (pinyin VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT MAX(stats) FROM table_19839391_3 WHERE pitcher = \"Doug Davis\"", "question": "What are Doug Davis' maximum pitching stats?", "context": "CREATE TABLE table_19839391_3 (stats INTEGER, pitcher VARCHAR)"}, {"answer": "SELECT pitcher FROM table_19839391_3 WHERE seasons = \"1970\"", "question": "List the pitchers for the 1970 season", "context": "CREATE TABLE table_19839391_3 (pitcher VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT wins FROM table_19839391_3 WHERE winning__percentage = \"0.667\"", "question": "How many wins had a win percentage of 0.667", "context": "CREATE TABLE table_19839391_3 (wins VARCHAR, winning__percentage VARCHAR)"}, {"answer": "SELECT MIN(no_decisions) FROM table_19839391_3 WHERE winning__percentage = \"1.000\" AND wins = 3", "question": "how many \"no decisions\" are there with 3 wins and a win percentage of 1.000?", "context": "CREATE TABLE table_19839391_3 (no_decisions INTEGER, winning__percentage VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_19864214_3 WHERE seasons = \"1986\"", "question": "stae the least number of wins in 1986", "context": "CREATE TABLE table_19864214_3 (wins INTEGER, seasons VARCHAR)"}, {"answer": "SELECT MIN(no_decisions) FROM table_19864214_3 WHERE pitcher = \"Scott Feldman Category:Articles with hCards\"", "question": "what is the least number of no decisions for scott feldman category:articles with hcards", "context": "CREATE TABLE table_19864214_3 (no_decisions INTEGER, pitcher VARCHAR)"}, {"answer": "SELECT starts FROM table_19864214_3 WHERE seasons = \"1977\"", "question": "what is the number of starts in 1977", "context": "CREATE TABLE table_19864214_3 (starts VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT pitcher FROM table_19864214_3 WHERE seasons = \"1982, 1984, 1985, 1987, 1988, 1989\"", "question": "who was the pitcher in seasons 1982, 1984, 1985, 1987, 1988, 1989", "context": "CREATE TABLE table_19864214_3 (pitcher VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_19864214_3 WHERE pitcher = \"Jon Matlack Category:Articles with hCards\"", "question": "how many wins did pitcher jon matlack category:articles with hcards achieve", "context": "CREATE TABLE table_19864214_3 (wins VARCHAR, pitcher VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_19897294_4", "question": "How many series are there total?", "context": "CREATE TABLE table_19897294_4 (no_in_series INTEGER)"}, {"answer": "SELECT family_families FROM table_19897294_4 WHERE no_overall = \"UK10\"", "question": "What family had a no.overall of UK10?", "context": "CREATE TABLE table_19897294_4 (family_families VARCHAR, no_overall VARCHAR)"}, {"answer": "SELECT MAX(division) FROM table_1990460_1", "question": "What's the highest division number through the years?", "context": "CREATE TABLE table_1990460_1 (division INTEGER)"}, {"answer": "SELECT MIN(division) FROM table_1990460_1 WHERE regular_season = \"6th, Great Lakes\"", "question": "What's the lowest division number of the 6th, Great Lakes season?", "context": "CREATE TABLE table_1990460_1 (division INTEGER, regular_season VARCHAR)"}, {"answer": "SELECT open_cup FROM table_1990460_1 WHERE year = 2006", "question": "What's the team's status in the Open Cup in 2006?", "context": "CREATE TABLE table_1990460_1 (open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_1990460_1 WHERE regular_season = \"4th, Midwest\"", "question": "When did the 4th, Midwest season happen?", "context": "CREATE TABLE table_1990460_1 (year VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT COUNT(spokesperson) FROM table_1992924_3 WHERE year_s_ = 2004", "question": "how many spokesperson where in 2004", "context": "CREATE TABLE table_1992924_3 (spokesperson VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT Dual AS commentator FROM table_1992924_3 WHERE spokesperson = \"Larisa Verbickaya\"", "question": "who is the dual commentator at the channel with spokesperson larisa verbickaya", "context": "CREATE TABLE table_1992924_3 (Dual VARCHAR, spokesperson VARCHAR)"}, {"answer": "SELECT spokesperson FROM table_1992924_3 WHERE commentator = \"Dmitriy Guberniyev\"", "question": "state all the spokesperson for the channel where commentator is dmitriy guberniyev", "context": "CREATE TABLE table_1992924_3 (spokesperson VARCHAR, commentator VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_19930660_3 WHERE rufus_guest = \"Jack Whitehall\"", "question": "When is the first broadcast for episodes where Rufus's guest is Jack Whitehall?", "context": "CREATE TABLE table_19930660_3 (first_broadcast VARCHAR, rufus_guest VARCHAR)"}, {"answer": "SELECT episode FROM table_19930660_3 WHERE rufus_guest = \"Chris Addison\"", "question": "Which episodes have Chris Addison as Rufus's guest?", "context": "CREATE TABLE table_19930660_3 (episode VARCHAR, rufus_guest VARCHAR)"}, {"answer": "SELECT winner FROM table_19930660_3 WHERE rufus_guest = \"Sean Lock\"", "question": "What is the resulting score for the episodes where Rufus's guest is Sean Lock?", "context": "CREATE TABLE table_19930660_3 (winner VARCHAR, rufus_guest VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_19930660_3 WHERE episode = \"3x10\"", "question": "What is the first broadcast date for episode 3x10?", "context": "CREATE TABLE table_19930660_3 (first_broadcast VARCHAR, episode VARCHAR)"}, {"answer": "SELECT index__year_ FROM table_19948664_1 WHERE author___editor___source = \"United Nations (UNDP)\" AND ranking_la__2_ = \"2nd\"", "question": "What index was created by the United Nations (UNDP) and reached 2nd place in the LA Ranking?", "context": "CREATE TABLE table_19948664_1 (index__year_ VARCHAR, author___editor___source VARCHAR, ranking_la__2_ VARCHAR)"}, {"answer": "SELECT MAX(countries_sampled) FROM table_19948664_1 WHERE author___editor___source = \"The Economist\" AND year_of_publication = \"2007\" AND ranking_la__2_ = \"2nd\"", "question": "How many countries were sampled in the index created by The Economist, published in 2007 and ranked 2nd in the LA Ranking?", "context": "CREATE TABLE table_19948664_1 (countries_sampled INTEGER, ranking_la__2_ VARCHAR, author___editor___source VARCHAR, year_of_publication VARCHAR)"}, {"answer": "SELECT world_ranking__1_ FROM table_19948664_1 WHERE author___editor___source = \"Transparency International\"", "question": "What's the wold ranking of the index by Transparency International?", "context": "CREATE TABLE table_19948664_1 (world_ranking__1_ VARCHAR, author___editor___source VARCHAR)"}, {"answer": "SELECT countries_sampled FROM table_19948664_1 WHERE ranking_la__2_ = \"2nd\" AND world_ranking__1_ = \"23rd\"", "question": "How many countries were sampled for the index in 2nd place in the LA ranking and 23rd in the world ranking?", "context": "CREATE TABLE table_19948664_1 (countries_sampled VARCHAR, ranking_la__2_ VARCHAR, world_ranking__1_ VARCHAR)"}, {"answer": "SELECT MAX(countries_sampled) FROM table_19948664_1 WHERE index__year_ = \"Prosperity Index (2008)\"", "question": "How many countries were sampled for the Prosperity Index (2008)?", "context": "CREATE TABLE table_19948664_1 (countries_sampled INTEGER, index__year_ VARCHAR)"}, {"answer": "SELECT playoffs FROM table_1999350_1 WHERE open_canada_cup = \"N/A\" AND regular_season = \"2nd, New England\"", "question": "What is the playoffs result in years where Open Canada Cup was \"N/A\" and regular season result was \"2nd, New England\"?", "context": "CREATE TABLE table_1999350_1 (playoffs VARCHAR, open_canada_cup VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_1999350_1 WHERE playoffs = \"Did not qualify\" AND regular_season = \"2nd, New England\" AND open_canada_cup = \"N/A\"", "question": "What is the earliest year where playoffs was \"did not qualify,\" regular season was \"2nd, New England,\" and Open Canada Cup is \"N/A\"?", "context": "CREATE TABLE table_1999350_1 (year INTEGER, open_canada_cup VARCHAR, playoffs VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT COUNT(playoffs) FROM table_1999350_1 WHERE year = 2006", "question": "What is the total number of playoffs held in exactly 2006?", "context": "CREATE TABLE table_1999350_1 (playoffs VARCHAR, year VARCHAR)"}, {"answer": "SELECT revising_convention_s_ FROM table_2001348_1 WHERE denunciations__september_2011_ = 21", "question": "What were the revising conventions commentary with a denunciation of 21?", "context": "CREATE TABLE table_2001348_1 (revising_convention_s_ VARCHAR, denunciations__september_2011_ VARCHAR)"}, {"answer": "SELECT COUNT(closure_for_signature) FROM table_2001348_1 WHERE field = \"Sea (revised)\"", "question": "How many inputs are there in the 'closure for signature' tab under the field 'sea (revised)'?", "context": "CREATE TABLE table_2001348_1 (closure_for_signature VARCHAR, field VARCHAR)"}, {"answer": "SELECT COUNT(ilo_code) FROM table_2001348_1 WHERE revising_convention_s_ = \"this convention, Work in Fishing Convention\"", "question": "How many ILO codes are there with revising conventions of 'this convention, work in fishing convention'?", "context": "CREATE TABLE table_2001348_1 (ilo_code VARCHAR, revising_convention_s_ VARCHAR)"}, {"answer": "SELECT revising_convention_s_ FROM table_2001348_1 WHERE field = \"trimmers and stokers\"", "question": "What  was the revising convention of the field 'trimmers and stokers'?", "context": "CREATE TABLE table_2001348_1 (revising_convention_s_ VARCHAR, field VARCHAR)"}, {"answer": "SELECT juntas_de_regantes__wub_ FROM table_20018310_1 WHERE irrigation_district = \"Azua Valley\"", "question": "What are the Juntas de Regantes (WUB) within the Azua Valley?", "context": "CREATE TABLE table_20018310_1 (juntas_de_regantes__wub_ VARCHAR, irrigation_district VARCHAR)"}, {"answer": "SELECT irrigation_district FROM table_20018310_1 WHERE users___number_ = 4733", "question": "Which irrigation district has 4733 users?", "context": "CREATE TABLE table_20018310_1 (irrigation_district VARCHAR, users___number_ VARCHAR)"}, {"answer": "SELECT users___number_ FROM table_20018310_1 WHERE irrigation_district = \"Del Este\" AND juntas_de_regantes__wub_ = \"Nisibon-Yuma\"", "question": "What's the number of users in the Nisibon-Yuma within the Del Este district?", "context": "CREATE TABLE table_20018310_1 (users___number_ VARCHAR, irrigation_district VARCHAR, juntas_de_regantes__wub_ VARCHAR)"}, {"answer": "SELECT tom_horner__i_ FROM table_20032301_3 WHERE sampling_error = \"2.5%\"", "question": "What percentage voted for Tom Horner according to the poll source with sampling error of 2.5%?", "context": "CREATE TABLE table_20032301_3 (tom_horner__i_ VARCHAR, sampling_error VARCHAR)"}, {"answer": "SELECT undecided FROM table_20032301_3 WHERE sampling_error = \"2.7%\"", "question": "What's the percentage of undecided according to the poll source with sampling error of 2.7%?", "context": "CREATE TABLE table_20032301_3 (undecided VARCHAR, sampling_error VARCHAR)"}, {"answer": "SELECT dates_administered FROM table_20032301_3 WHERE poll_source = \"Minnesota Poll\"", "question": "When did Minnesota Poll administer their poll?", "context": "CREATE TABLE table_20032301_3 (dates_administered VARCHAR, poll_source VARCHAR)"}, {"answer": "SELECT COUNT(tom_emmer__r_) FROM table_20032301_3 WHERE matt_entenza__dfl_ = \"38%\"", "question": "How many polls show different percentages for Tom Emmer and 38% for Matt Entenza?", "context": "CREATE TABLE table_20032301_3 (tom_emmer__r_ VARCHAR, matt_entenza__dfl_ VARCHAR)"}, {"answer": "SELECT poll_source FROM table_20032301_3 WHERE dates_administered = \"June 14-16, 2010\"", "question": "What poll source administered their poll on June 14-16, 2010?", "context": "CREATE TABLE table_20032301_3 (poll_source VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT tom_horner__i_ FROM table_20032301_3 WHERE matt_entenza__dfl_ = \"31%\"", "question": "What's the percentage of votes for Tom Horner according to the poll source that claimed 31% for Matt Entenza?", "context": "CREATE TABLE table_20032301_3 (tom_horner__i_ VARCHAR, matt_entenza__dfl_ VARCHAR)"}, {"answer": "SELECT redskins__score_ FROM table_20074209_1 WHERE opponent__score_ = \"Tennessee Titans 27\"", "question": "what is redskins (score) against tennessee titans 27", "context": "CREATE TABLE table_20074209_1 (redskins__score_ VARCHAR, opponent__score_ VARCHAR)"}, {"answer": "SELECT head_coach FROM table_20140132_1 WHERE venue = \"Lokomotiv\"", "question": "Who is the head coach of the team who's venue is Lokomotiv?", "context": "CREATE TABLE table_20140132_1 (head_coach VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_20140132_1 WHERE team = \"Terek\"", "question": "What is the venue for the team Terek?", "context": "CREATE TABLE table_20140132_1 (venue VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_20140132_1 WHERE position_in_2008 = \"8th\"", "question": "How many teams finished in 8th in 2008?", "context": "CREATE TABLE table_20140132_1 (team VARCHAR, position_in_2008 VARCHAR)"}, {"answer": "SELECT location FROM table_20140132_1 WHERE team = \"Saturn\"", "question": "What is the location of the team Saturn?", "context": "CREATE TABLE table_20140132_1 (location VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_20142629_2 WHERE fairburn > 54.0", "question": "when fairburn is bigger than 54.0, how many years?", "context": "CREATE TABLE table_20142629_2 (year VARCHAR, fairburn INTEGER)"}, {"answer": "SELECT COUNT(stanier), _3_cylinder FROM table_20142629_2 WHERE fowler = 16", "question": "When the Fowler is 16, what is the number of cylinders?", "context": "CREATE TABLE table_20142629_2 (_3_cylinder VARCHAR, stanier VARCHAR, fowler VARCHAR)"}, {"answer": "SELECT MAX(fowler) FROM table_20142629_2", "question": "What is tops for Folwer?", "context": "CREATE TABLE table_20142629_2 (fowler INTEGER)"}, {"answer": "SELECT grid FROM table_20159025_1 WHERE part_1 = \"1:31.063\"", "question": "On what grid was the time for part 1 1:31.063?", "context": "CREATE TABLE table_20159025_1 (grid VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT driver FROM table_20159025_1 WHERE no = \"2\u2021\"", "question": "Which driver was number 2\u2021?", "context": "CREATE TABLE table_20159025_1 (driver VARCHAR, no VARCHAR)"}, {"answer": "SELECT driver FROM table_20159025_1 WHERE grid = \"01 1\"", "question": "Who was the driver in grid 01 1?", "context": "CREATE TABLE table_20159025_1 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT part_3 FROM table_20159025_1 WHERE driver = \"Heikki Kovalainen\"", "question": "What was the time in part 3 when Heikki Kovalainen was the driver? ", "context": "CREATE TABLE table_20159025_1 (part_3 VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_20159025_1 WHERE part_1 = \"1:31.386\"", "question": "Who was the driver when the time in part 3 was 1:31.386?", "context": "CREATE TABLE table_20159025_1 (driver VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT part_3 FROM table_20159025_1 WHERE driver = \"Nick Heidfeld\"", "question": "What was the time in part 3 when Nick Heidfeld was the driver?", "context": "CREATE TABLE table_20159025_1 (part_3 VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_20345624_2 WHERE original_airdate = \"5 August 1967\"", "question": "Name the title that aired on 5 august 1967", "context": "CREATE TABLE table_20345624_2 (title VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_20345624_2 WHERE no = 6", "question": "Name the total number of directors for number 6", "context": "CREATE TABLE table_20345624_2 (director VARCHAR, no VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_20345624_2 WHERE director = \"Guy Verney\"", "question": "Name the original airdate for guy verney", "context": "CREATE TABLE table_20345624_2 (original_airdate VARCHAR, director VARCHAR)"}, {"answer": "SELECT COUNT(writer) FROM table_20345624_2 WHERE original_airdate = \"15 July 1967\"", "question": "Name the number of writers for airdate of 15 july 1967", "context": "CREATE TABLE table_20345624_2 (writer VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT abbr FROM table_20354_5 WHERE transcription = \"kumphaphan\"", "question": "What's the abbreviation for the month whose transcription is Kumphaphan?", "context": "CREATE TABLE table_20354_5 (abbr VARCHAR, transcription VARCHAR)"}, {"answer": "SELECT zodiac_sign FROM table_20354_5 WHERE thai_name = \"\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21\"", "question": "What's the zodiac sign for the month with Thai name \u0e21\u0e01\u0e23\u0e32\u0e04\u0e21?", "context": "CREATE TABLE table_20354_5 (zodiac_sign VARCHAR, thai_name VARCHAR)"}, {"answer": "SELECT zodiac_sign FROM table_20354_5 WHERE transcription = \"karakadakhom\"", "question": "What's the zodiac sing for the month whose transcription is Karakadakhom?", "context": "CREATE TABLE table_20354_5 (zodiac_sign VARCHAR, transcription VARCHAR)"}, {"answer": "SELECT transcription FROM table_20354_5 WHERE thai_name = \"\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21\"", "question": "What's the transcription for the Thai name \u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21?", "context": "CREATE TABLE table_20354_5 (transcription VARCHAR, thai_name VARCHAR)"}, {"answer": "SELECT sanskrit_word FROM table_20354_5 WHERE thai_name = \"\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21\"", "question": "What's the Sanskrit word for month with Thai name \u0e21\u0e01\u0e23\u0e32\u0e04\u0e21?", "context": "CREATE TABLE table_20354_5 (sanskrit_word VARCHAR, thai_name VARCHAR)"}, {"answer": "SELECT COUNT(transcription) FROM table_20354_5 WHERE thai_name = \"\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21\"", "question": "How many different transcriptions are there for the Thai name \u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21?", "context": "CREATE TABLE table_20354_5 (transcription VARCHAR, thai_name VARCHAR)"}, {"answer": "SELECT MAX(innings) FROM table_20367820_16 WHERE average = \"36.48\"", "question": "What is the innings when the average is 36.48?", "context": "CREATE TABLE table_20367820_16 (innings INTEGER, average VARCHAR)"}, {"answer": "SELECT not_out FROM table_20367820_16 WHERE average = \"43.70\"", "question": "How many no outs are there for an average of 43.70?", "context": "CREATE TABLE table_20367820_16 (not_out VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(not_out) FROM table_20367820_16 WHERE average = \"56.38\"", "question": "How many no outs for an average of 56.38?", "context": "CREATE TABLE table_20367820_16 (not_out VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(poles) FROM table_20396_1 WHERE points = \"78\"", "question": "How many poles had 78 points?", "context": "CREATE TABLE table_20396_1 (poles VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(poles) FROM table_20396_1 WHERE points = \"72\"", "question": "How many poles had 72 points?", "context": "CREATE TABLE table_20396_1 (poles VARCHAR, points VARCHAR)"}, {"answer": "SELECT poles FROM table_20396_1 WHERE season = 2000", "question": "How many poles were there in season 2000?", "context": "CREATE TABLE table_20396_1 (poles VARCHAR, season VARCHAR)"}, {"answer": "SELECT team FROM table_20396_1 WHERE points = \"4\"", "question": "What team scored 4 points?", "context": "CREATE TABLE table_20396_1 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT winner FROM table_20462111_1 WHERE date = \"30.11.2008\"", "question": "Who won the cup on 30.11.2008?", "context": "CREATE TABLE table_20462111_1 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_20462111_1 WHERE date = \"01.02.2009\"", "question": "Who got the 3rd place in the cup on 01.02.2009?", "context": "CREATE TABLE table_20462111_1 (date VARCHAR)"}, {"answer": "SELECT location FROM table_20462111_1 WHERE date = \"07.02.2009\"", "question": "Where was the cup on 07.02.2009 held?", "context": "CREATE TABLE table_20462111_1 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(population__may), _2000_ FROM table_2051288_1 WHERE location = \"coastal\" AND barangay = \"Isio\"", "question": "What was the population of the coastal location Isio in May of 2000?", "context": "CREATE TABLE table_2051288_1 (_2000_ VARCHAR, population__may INTEGER, location VARCHAR, barangay VARCHAR)"}, {"answer": "SELECT MAX(share) FROM table_20522228_2 WHERE rank__overall_ = \"54\"", "question": "What was the share for rank 54?", "context": "CREATE TABLE table_20522228_2 (share INTEGER, rank__overall_ VARCHAR)"}, {"answer": "SELECT rating / SHARE(18 - 49) FROM table_20522228_2 WHERE viewers__millions_ = \"5.50\"", "question": "What are the ratings/share ratio when viewers are 5.50 Million?", "context": "CREATE TABLE table_20522228_2 (rating VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT rank__timeslot_ FROM table_20522228_2 WHERE rating = \"4.1\"", "question": "What are the  rank timeslots where ratings are 4.1?", "context": "CREATE TABLE table_20522228_2 (rank__timeslot_ VARCHAR, rating VARCHAR)"}, {"answer": "SELECT rank__overall_ FROM table_20522228_2 WHERE viewers__millions_ = \"6.59\"", "question": "What is overall rank when viewers are at 6.59 million?", "context": "CREATE TABLE table_20522228_2 (rank__overall_ VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT episode FROM table_20522228_2 WHERE share = 8", "question": "What was the episode name when share was 8?", "context": "CREATE TABLE table_20522228_2 (episode VARCHAR, share VARCHAR)"}, {"answer": "SELECT written_by FROM table_20538157_2 WHERE no_in_season = 20", "question": "Who were the writers of episode 20?", "context": "CREATE TABLE table_20538157_2 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT county FROM table_20573232_1 WHERE others_number = 5", "question": "What county has others at 5?", "context": "CREATE TABLE table_20573232_1 (county VARCHAR, others_number VARCHAR)"}, {"answer": "SELECT others_percentage FROM table_20573232_1 WHERE mccain_percentage = \"57.7%\"", "question": "What is the percentage of others when McCain is at 57.7%", "context": "CREATE TABLE table_20573232_1 (others_percentage VARCHAR, mccain_percentage VARCHAR)"}, {"answer": "SELECT nader_percentage FROM table_20573232_1 WHERE obama_percentage = \"44.6%\"", "question": "What is Nader's percentage when Obama is 44.6%?", "context": "CREATE TABLE table_20573232_1 (nader_percentage VARCHAR, obama_percentage VARCHAR)"}, {"answer": "SELECT location_s_ FROM table_2064747_1 WHERE accreditation = \"COE\"", "question": "What schools are accredited by COE?", "context": "CREATE TABLE table_2064747_1 (location_s_ VARCHAR, accreditation VARCHAR)"}, {"answer": "SELECT location_s_ FROM table_2064747_1 WHERE founded = 1927", "question": "Where was there a school founded in 1927?", "context": "CREATE TABLE table_2064747_1 (location_s_ VARCHAR, founded VARCHAR)"}, {"answer": "SELECT MIN(length__in_m_) FROM table_206361_2 WHERE average_climb___percentage_ = 59", "question": "What is the minimum length of the locations where the average climb percentage is exactly 59%?", "context": "CREATE TABLE table_206361_2 (length__in_m_ INTEGER, average_climb___percentage_ VARCHAR)"}, {"answer": "SELECT MAX(kilometer) FROM table_206361_2", "question": "What is the maximum number of km listed?", "context": "CREATE TABLE table_206361_2 (kilometer INTEGER)"}, {"answer": "SELECT COUNT(\u03b4s_) AS \u2021__cal_mol_\u22121_k_\u22121 FROM table_2068719_1 WHERE _butadiene = \"1,2-dimethylene-cyclohexane\"", "question": "Name the number of \u03b4s \u2021 /cal mol \u22121 k \u22121 for butadiene being 1,2-dimethylene-cyclohexane", "context": "CREATE TABLE table_2068719_1 (\u03b4s_ VARCHAR, _butadiene VARCHAR)"}, {"answer": "SELECT for___percentage_ FROM table_20683381_3 WHERE against___percentage_ = \"17,874 (33.2)\"", "question": "When 17,874 (33.2) is the percentage against what is the percentage for?", "context": "CREATE TABLE table_20683381_3 (for___percentage_ VARCHAR, against___percentage_ VARCHAR)"}, {"answer": "SELECT COUNT(electorate) FROM table_20683381_3 WHERE for___percentage_ = \"27,822 (72.3)\"", "question": "When 27,822 (72.3) is the percentage for how many electorate measurements are there?", "context": "CREATE TABLE table_20683381_3 (electorate VARCHAR, for___percentage_ VARCHAR)"}, {"answer": "SELECT total_poll___percentage_ FROM table_20683381_3 WHERE against___percentage_ = \"13,895 (27.3)\"", "question": "When 13,895 (27.3) is the percentage against what is the toll poll percentage?", "context": "CREATE TABLE table_20683381_3 (total_poll___percentage_ VARCHAR, against___percentage_ VARCHAR)"}, {"answer": "SELECT against___percentage_ FROM table_20683381_3 WHERE \u00b1_yes_side_2008___percentage_ = \"+18.1\"", "question": "When +18.1 is the \u00b1 yes side 2008 percentage what is the percentage of against?", "context": "CREATE TABLE table_20683381_3 (against___percentage_ VARCHAR, \u00b1_yes_side_2008___percentage_ VARCHAR)"}, {"answer": "SELECT for___percentage_ FROM table_20683381_3 WHERE total_poll___percentage_ = \"60,254 (58.0)\"", "question": "When  60,254 (58.0) is the toll poll percentage what is the for percentage?", "context": "CREATE TABLE table_20683381_3 (for___percentage_ VARCHAR, total_poll___percentage_ VARCHAR)"}, {"answer": "SELECT for___percentage_ FROM table_20683381_3 WHERE \u00b1_yes_side_2008___percentage_ = \"+20.3\"", "question": "When +20.3 is the \u00b1 yes side 2008 (%) what is the for percentage?", "context": "CREATE TABLE table_20683381_3 (for___percentage_ VARCHAR, \u00b1_yes_side_2008___percentage_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_20704243_6 WHERE season__number = 11", "question": "What was the original air date for season 11?", "context": "CREATE TABLE table_20704243_6 (original_air_date VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT title FROM table_20704243_6 WHERE directed_by = \"John Rogers\"", "question": "What episode did John Rogers direct?", "context": "CREATE TABLE table_20704243_6 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_20704243_6 WHERE original_air_date = \"July15,2012\"", "question": "Who directed the episode that aired on july15,2012?", "context": "CREATE TABLE table_20704243_6 (directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_20704243_6 WHERE original_air_date = \"August19,2012\"", "question": "Which episode aired on august19,2012?", "context": "CREATE TABLE table_20704243_6 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT weight__kg_m_ FROM table_2071644_2 WHERE cross_section_area__cm_2__ = \"25.3\"", "question": "What is the weight with a cross section area of 25.3?", "context": "CREATE TABLE table_2071644_2 (weight__kg_m_ VARCHAR, cross_section_area__cm_2__ VARCHAR)"}, {"answer": "SELECT COUNT(weight__kg_m_) FROM table_2071644_2 WHERE flange_width__mm_ = 304", "question": "How many weights are there when the flange with is 304?", "context": "CREATE TABLE table_2071644_2 (weight__kg_m_ VARCHAR, flange_width__mm_ VARCHAR)"}, {"answer": "SELECT web_thickness__mm_ FROM table_2071644_2 WHERE flange_width__mm_ = 100", "question": "What is the web thickness if the flange width is 100?", "context": "CREATE TABLE table_2071644_2 (web_thickness__mm_ VARCHAR, flange_width__mm_ VARCHAR)"}, {"answer": "SELECT weight__kg_m_ FROM table_2071644_2 WHERE cross_section_area__cm_2__ = \"21.2\"", "question": "If the cross-section area is 21.2, what is the weight?", "context": "CREATE TABLE table_2071644_2 (weight__kg_m_ VARCHAR, cross_section_area__cm_2__ VARCHAR)"}, {"answer": "SELECT flange_thickness__mm_ FROM table_2071644_2 WHERE weight__kg_m_ = \"19.9\"", "question": "What is the flange thickness when the weight is 19.9?", "context": "CREATE TABLE table_2071644_2 (flange_thickness__mm_ VARCHAR, weight__kg_m_ VARCHAR)"}, {"answer": "SELECT directedby FROM table_20726262_5 WHERE production_code = \"4WAB05\"", "question": "Who directed the episode with a production code of 4WAB05?", "context": "CREATE TABLE table_20726262_5 (directedby VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directedby FROM table_20726262_5 WHERE production_code = \"4WAB04\"", "question": "Who directed the episode with a production code of 4WAB04?", "context": "CREATE TABLE table_20726262_5 (directedby VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_20726262_6 WHERE directedby = \"Karen Gaviola\"", "question": "What episode was directed by Karen Gaviola?", "context": "CREATE TABLE table_20726262_6 (no_in_season INTEGER, directedby VARCHAR)"}, {"answer": "SELECT score FROM table_20745706_1 WHERE date = \"February 8, 1992\"", "question": "What was the score on February 8, 1992?", "context": "CREATE TABLE table_20745706_1 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_20745706_1 WHERE _number = \"5\"", "question": "Who is the opponent in game 5?", "context": "CREATE TABLE table_20745706_1 (opponent VARCHAR, _number VARCHAR)"}, {"answer": "SELECT date FROM table_20745706_1 WHERE _number = \"5\"", "question": "What is the date of game 5?", "context": "CREATE TABLE table_20745706_1 (date VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_20745746_1 WHERE date = \"March 11, 1995\"", "question": "What was attendance on March 11, 1995?", "context": "CREATE TABLE table_20745746_1 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT score FROM table_20745746_1 WHERE attendance = 7260", "question": "What was the score when 7260 people attended the game?", "context": "CREATE TABLE table_20745746_1 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT _number FROM table_20745746_1 WHERE record = \"Loss\"", "question": "How many games resulted in a loss?", "context": "CREATE TABLE table_20745746_1 (_number VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_20745746_1 WHERE _number = \"7\"", "question": "What is the date of game 7?", "context": "CREATE TABLE table_20745746_1 (date VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MAX(obama_number) FROM table_20750731_1 WHERE mccain_percentage = \"64.4%\"", "question": "What is the Obama# when McCain% is 64.4%?", "context": "CREATE TABLE table_20750731_1 (obama_number INTEGER, mccain_percentage VARCHAR)"}, {"answer": "SELECT others_number FROM table_20750731_1 WHERE mccain_number = 4730", "question": "Name the Others# when McCain# is 4730.", "context": "CREATE TABLE table_20750731_1 (others_number VARCHAR, mccain_number VARCHAR)"}, {"answer": "SELECT county FROM table_20750731_1 WHERE obama_percentage = \"41.7%\"", "question": "What County was the Obama% at 41.7%?", "context": "CREATE TABLE table_20750731_1 (county VARCHAR, obama_percentage VARCHAR)"}, {"answer": "SELECT others_number FROM table_20750731_1 WHERE mccain_percentage = \"64.8%\"", "question": "When McCain% was 64.8%, what is the Others#?", "context": "CREATE TABLE table_20750731_1 (others_number VARCHAR, mccain_percentage VARCHAR)"}, {"answer": "SELECT obama_percentage FROM table_20750731_1 WHERE mccain_percentage = \"61.2%\"", "question": "What was the Obama% when McCain% was 61.2%?", "context": "CREATE TABLE table_20750731_1 (obama_percentage VARCHAR, mccain_percentage VARCHAR)"}, {"answer": "SELECT date FROM table_20745759_1 WHERE attendance = 9372", "question": "Name the date for attendance 9372", "context": "CREATE TABLE table_20745759_1 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_20745759_1 WHERE date = \"January 18, 1997\"", "question": "Name the record for january 18, 1997", "context": "CREATE TABLE table_20745759_1 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_20745759_1 WHERE date = \"March 29, 1997\"", "question": "Name the score for march 29, 1997", "context": "CREATE TABLE table_20745759_1 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT height__ft_ FROM table_20754016_2 WHERE country = \"Honduras\"", "question": "How tall is the contestant from Honduras?", "context": "CREATE TABLE table_20754016_2 (height__ft_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_20754016_2 WHERE hometown = \"Chihuahua\"", "question": "What country is the contestant from Chihuahua from?", "context": "CREATE TABLE table_20754016_2 (country VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT contestant FROM table_20754016_2 WHERE height__cm_ = 173", "question": "What contestant is 173 cm tall?", "context": "CREATE TABLE table_20754016_2 (contestant VARCHAR, height__cm_ VARCHAR)"}, {"answer": "SELECT country FROM table_20754016_2 WHERE hometown = \"Salto\"", "question": "What country is the contestant from Salto from?", "context": "CREATE TABLE table_20754016_2 (country VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT height__cm_ FROM table_20754016_2 WHERE country = \"Guatemala\"", "question": "How tall is the contestant from Guatemala?", "context": "CREATE TABLE table_20754016_2 (height__cm_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_2076463_2 WHERE location_s_ = \"Springfield\"", "question": "How much would you expect the enrollment to be in Springfield?", "context": "CREATE TABLE table_2076463_2 (enrollment INTEGER, location_s_ VARCHAR)"}, {"answer": "SELECT location_s_ FROM table_2076463_2 WHERE control = \"Public university\" AND founded = 1915", "question": "where would you find a public university which was founded in 1915?", "context": "CREATE TABLE table_2076463_2 (location_s_ VARCHAR, control VARCHAR, founded VARCHAR)"}, {"answer": "SELECT control FROM table_2076463_2 WHERE founded = 1873", "question": "What is the only type of university that was founded in 1873?", "context": "CREATE TABLE table_2076463_2 (control VARCHAR, founded VARCHAR)"}, {"answer": "SELECT enrollment FROM table_2076463_2 WHERE location_s_ = \"St. Louis\"", "question": "What enrollement would you expect if you were attending the university in St. Louis?", "context": "CREATE TABLE table_2076463_2 (enrollment VARCHAR, location_s_ VARCHAR)"}, {"answer": "SELECT school FROM table_2076463_2 WHERE location_s_ = \"Kirksville\"", "question": "Which school would you come across if you were in Kirksville?", "context": "CREATE TABLE table_2076463_2 (school VARCHAR, location_s_ VARCHAR)"}, {"answer": "SELECT control FROM table_2076463_2 WHERE school = \"Missouri Western State University\"", "question": "What type of school would you see when visiting Missouri Western State University?", "context": "CREATE TABLE table_2076463_2 (control VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_2076516_1 WHERE school = \"East Carolina University\"", "question": "When east carolina university is the school what is the highest year founded?", "context": "CREATE TABLE table_2076516_1 (founded INTEGER, school VARCHAR)"}, {"answer": "SELECT COUNT(enrollment__2012_) FROM table_2076516_1 WHERE founded = 1927", "question": "When 1927 is the founded year how many measurements of enrollment in 2012 are there?", "context": "CREATE TABLE table_2076516_1 (enrollment__2012_ VARCHAR, founded VARCHAR)"}, {"answer": "SELECT control FROM table_2076516_1 WHERE school = \"Western Carolina University\"", "question": "When western carolina university is the school what is the control?", "context": "CREATE TABLE table_2076516_1 (control VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(enrollment__2012_) FROM table_2076516_1 WHERE school = \"University of North Carolina at Charlotte\"", "question": "When university of north carolina at charlotte is the school what is the lowest enrollment in 2012?", "context": "CREATE TABLE table_2076516_1 (enrollment__2012_ INTEGER, school VARCHAR)"}, {"answer": "SELECT enrollment__fall_2010_ FROM table_2076522_2 WHERE location_s_ = \"Bottineau\"", "question": "What is the enrollment for the school in bottineau?", "context": "CREATE TABLE table_2076522_2 (enrollment__fall_2010_ VARCHAR, location_s_ VARCHAR)"}, {"answer": "SELECT control FROM table_2076522_2 WHERE accreditation = \"The Higher Learning Commission ( NCA ), CCNE\"", "question": "What is the control for the school accredited by the higher learning commission ( nca ), ccne?", "context": "CREATE TABLE table_2076522_2 (control VARCHAR, accreditation VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_2076522_2 WHERE enrollment__fall_2010_ = 898", "question": "What year was the school founded with an 898 enrollment?", "context": "CREATE TABLE table_2076522_2 (founded INTEGER, enrollment__fall_2010_ VARCHAR)"}, {"answer": "SELECT COUNT(accreditation) FROM table_2076522_2 WHERE founded = 2006", "question": "How many schools founded in 2006?", "context": "CREATE TABLE table_2076522_2 (accreditation VARCHAR, founded VARCHAR)"}, {"answer": "SELECT accreditation FROM table_2076522_2 WHERE school = \"United Tribes Technical College\"", "question": "What is the accrediation for united tribes technical college?", "context": "CREATE TABLE table_2076522_2 (accreditation VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_2076490_1", "question": "What is the latest founding date? ", "context": "CREATE TABLE table_2076490_1 (founded INTEGER)"}, {"answer": "SELECT enrollment__2005_ FROM table_2076490_1 WHERE type = \"Baccalaureate college\" AND school = \"Granite State College\"", "question": "What was the enrollment (2005) for baccalaureate colleges , for Granite State College?", "context": "CREATE TABLE table_2076490_1 (enrollment__2005_ VARCHAR, type VARCHAR, school VARCHAR)"}, {"answer": "SELECT founded FROM table_2076490_1 WHERE enrollment__2005_ = \"963\"", "question": "What year is the founding year, for the school that had an enrollment in 2005 of 963?", "context": "CREATE TABLE table_2076490_1 (founded VARCHAR, enrollment__2005_ VARCHAR)"}, {"answer": "SELECT school FROM table_2076490_1 WHERE enrollment__2005_ = \"69\"", "question": "What school had an enrollment in 2005 of 69?", "context": "CREATE TABLE table_2076490_1 (school VARCHAR, enrollment__2005_ VARCHAR)"}, {"answer": "SELECT enrollment__2005_ FROM table_2076490_1 WHERE school = \"New Hampshire Institute of Art\"", "question": "How many students enrolled in 2005 at New Hampshire Institute of Art?", "context": "CREATE TABLE table_2076490_1 (enrollment__2005_ VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_2076533_1 WHERE enrollment__2005_ = 1285", "question": "Name the most founded for enrollment 2005 being 1285", "context": "CREATE TABLE table_2076533_1 (founded INTEGER, enrollment__2005_ VARCHAR)"}, {"answer": "SELECT main_location FROM table_2076533_1 WHERE control = \"Public\" AND type = \"Masters university\"", "question": "Name the main location for public and masters university", "context": "CREATE TABLE table_2076533_1 (main_location VARCHAR, control VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_2076533_1 WHERE main_location = \"McMinnville\"", "question": "Name the type for mcminnville", "context": "CREATE TABLE table_2076533_1 (type VARCHAR, main_location VARCHAR)"}, {"answer": "SELECT control FROM table_2076533_1 WHERE main_location = \"Albany\"", "question": "Name the control for albany", "context": "CREATE TABLE table_2076533_1 (control VARCHAR, main_location VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_2076533_1 WHERE school = \"Gutenberg College\"", "question": "Name the least founded for gutenberg college", "context": "CREATE TABLE table_2076533_1 (founded INTEGER, school VARCHAR)"}, {"answer": "SELECT type FROM table_2076533_1 WHERE enrollment__2005_ = 1245", "question": "Name the type for 1245 enrollment", "context": "CREATE TABLE table_2076533_1 (type VARCHAR, enrollment__2005_ VARCHAR)"}, {"answer": "SELECT published_in_russian FROM table_207795_1 WHERE type_of_work = \"novel\" AND published_in_english = \"1977\"", "question": "when type of work is novel and published in english is 1977, what was published in russian?", "context": "CREATE TABLE table_207795_1 (published_in_russian VARCHAR, type_of_work VARCHAR, published_in_english VARCHAR)"}, {"answer": "SELECT COUNT(type_of_work) FROM table_207795_1 WHERE russian_title = \"\u0425\u0440\u043e\u043c\u0430\u044f \u0441\u0443\u0434\u044c\u0431\u0430\"", "question": "How many types of work is \u0445\u0440\u043e\u043c\u0430\u044f \u0441\u0443\u0434\u044c\u0431\u0430?", "context": "CREATE TABLE table_207795_1 (type_of_work VARCHAR, russian_title VARCHAR)"}, {"answer": "SELECT russian_title FROM table_207795_1 WHERE english_title = \"The Ugly Swans\"", "question": "What is the russian title of the ugly swans?", "context": "CREATE TABLE table_207795_1 (russian_title VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT type_of_work FROM table_207795_1 WHERE published_in_english = \"N/A\" AND published_in_russian = \"1986\"", "question": "when it published in english is n/a and published in russian is 1986, what is the type of work?", "context": "CREATE TABLE table_207795_1 (type_of_work VARCHAR, published_in_english VARCHAR, published_in_russian VARCHAR)"}, {"answer": "SELECT senator FROM table_20803065_1 WHERE religion = \"Presbyterian\"", "question": "List the presbyterian members of the senate.", "context": "CREATE TABLE table_20803065_1 (senator VARCHAR, religion VARCHAR)"}, {"answer": "SELECT state FROM table_20803065_1 WHERE senator = \"Jim DeMint\"", "question": "Which state does congressman jim demint represent?", "context": "CREATE TABLE table_20803065_1 (state VARCHAR, senator VARCHAR)"}, {"answer": "SELECT COUNT(tie_no) FROM table_20819379_2 WHERE team_2 = \"Osijek\"", "question": "Name the total number of tie number for team 2 osijek", "context": "CREATE TABLE table_20819379_2 (tie_no VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT MIN(total_placings_s_) FROM table_20823568_3", "question": "What is the minimum number of total placings?", "context": "CREATE TABLE table_20823568_3 (total_placings_s_ INTEGER)"}, {"answer": "SELECT result FROM table_20849830_1 WHERE record = \"3-1\"", "question": "What was the result of the game with the record of 3-1?", "context": "CREATE TABLE table_20849830_1 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_20849830_1 WHERE record = \"2-1\"", "question": "What was the date of the game with the record of 2-1?", "context": "CREATE TABLE table_20849830_1 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_20849830_1", "question": "How many games were there in the 1966 season?", "context": "CREATE TABLE table_20849830_1 (game INTEGER)"}, {"answer": "SELECT game FROM table_20849830_1 WHERE record = \"3-1\"", "question": "What game number had a record of 3-1?", "context": "CREATE TABLE table_20849830_1 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT status FROM table_20855452_4 WHERE new_points = 1705", "question": "What happened when the new points was 1705?", "context": "CREATE TABLE table_20855452_4 (status VARCHAR, new_points VARCHAR)"}, {"answer": "SELECT MAX(new_points) FROM table_20855452_4 WHERE points = 2200", "question": "What was the max when they score 2200?", "context": "CREATE TABLE table_20855452_4 (new_points INTEGER, points VARCHAR)"}, {"answer": "SELECT points FROM table_20855452_4 WHERE player = \"Agnieszka Radwa\u0144ska\"", "question": "How many points did agnieszka radwa\u0144ska score?", "context": "CREATE TABLE table_20855452_4 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT points AS won FROM table_20855452_4 WHERE player = \"Shahar Pe'er\"", "question": "How many points did shahar pe'er score?", "context": "CREATE TABLE table_20855452_4 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT weight FROM table_20872722_1 WHERE college = \"Western Ontario\"", "question": "What is the weight for western ontario college?", "context": "CREATE TABLE table_20872722_1 (weight VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_20872722_1 WHERE round = 3", "question": "How many positions have round 3?", "context": "CREATE TABLE table_20872722_1 (position VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_20872722_1 WHERE weight = \"225lb\"", "question": "Which position has 225lb as weight?", "context": "CREATE TABLE table_20872722_1 (position VARCHAR, weight VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_20872722_1", "question": "What is the round?", "context": "CREATE TABLE table_20872722_1 (round INTEGER)"}, {"answer": "SELECT COUNT(height) FROM table_20872722_1 WHERE position = \"Cornerback\"", "question": "What is the height of the cornerback position?", "context": "CREATE TABLE table_20872722_1 (height VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(year_joined) FROM table_20887670_1", "question": "What is the most recent year joined?", "context": "CREATE TABLE table_20887670_1 (year_joined INTEGER)"}, {"answer": "SELECT affiliation FROM table_20887670_1 WHERE mascot = \"Hilltoppers\"", "question": "what is the affiliation of the hilltoppers mascot?", "context": "CREATE TABLE table_20887670_1 (affiliation VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT affiliation FROM table_20887670_1 WHERE colors = \"Maroon and White\"", "question": "what is the affiliation of the colors maroon and white? ", "context": "CREATE TABLE table_20887670_1 (affiliation VARCHAR, colors VARCHAR)"}, {"answer": "SELECT enrollment FROM table_20887670_1 WHERE institution = \"Central\"", "question": "what is the number of enrollment of the central institution?", "context": "CREATE TABLE table_20887670_1 (enrollment VARCHAR, institution VARCHAR)"}, {"answer": "SELECT institution FROM table_20887670_1 WHERE location = \"Sparta, WI\"", "question": "what is the name of the institution of the sparta, wi location?", "context": "CREATE TABLE table_20887670_1 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(year_joined) FROM table_20887670_1 WHERE colors = \"Red and Gold\"", "question": "in what year did the colors red and gold join?", "context": "CREATE TABLE table_20887670_1 (year_joined VARCHAR, colors VARCHAR)"}, {"answer": "SELECT circuit FROM table_20884163_2 WHERE winner = \"Rick Kelly\"", "question": "What circuit did rick kelly win on?", "context": "CREATE TABLE table_20884163_2 (circuit VARCHAR, winner VARCHAR)"}, {"answer": "SELECT circuit FROM table_20884163_2 WHERE race_title = \"PlaceMakers V8 Supercars\"", "question": "What circuit features the placemakers v8 supercars race?", "context": "CREATE TABLE table_20884163_2 (circuit VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT date FROM table_20884163_2 WHERE team = \"Triple Eight Race Engineering\" AND race_title = \"Falken Tasmania Challenge\"", "question": "What dates was the falken tasmania challenge race that had triple eight race engineering as the team?", "context": "CREATE TABLE table_20884163_2 (date VARCHAR, team VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT report FROM table_20884163_2 WHERE race_title = \"Winton\"", "question": "What was the report for the winton race?", "context": "CREATE TABLE table_20884163_2 (report VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT medium FROM table_20903658_1 WHERE title_subject = \"George Harold Baker\"", "question": "What medium was used for the sculpture of George Harold Baker? ", "context": "CREATE TABLE table_20903658_1 (medium VARCHAR, title_subject VARCHAR)"}, {"answer": "SELECT title_subject FROM table_20903658_1 WHERE date_painted_created = \"1982\"", "question": "Who was the subject of the sculpture created in 1982? ", "context": "CREATE TABLE table_20903658_1 (title_subject VARCHAR, date_painted_created VARCHAR)"}, {"answer": "SELECT title_subject FROM table_20903658_1 WHERE medium = \"Bronze\" AND public_office = \"colonist and soldier in Ville Marie, New France\"", "question": "Who was the subject of the bronze sculpture who was a colonist and soldier in Ville Marie, New France? ", "context": "CREATE TABLE table_20903658_1 (title_subject VARCHAR, medium VARCHAR, public_office VARCHAR)"}, {"answer": "SELECT public_office FROM table_20903658_1 WHERE date_painted_created = \"1954\"", "question": "What was the public office of the subject whose sculpture was created in 1954? ", "context": "CREATE TABLE table_20903658_1 (public_office VARCHAR, date_painted_created VARCHAR)"}, {"answer": "SELECT medium FROM table_20903658_1 WHERE artist = \"Ernest Richard Gause\"", "question": "What medium was used for the sculpture by Ernest Richard Gause? ", "context": "CREATE TABLE table_20903658_1 (medium VARCHAR, artist VARCHAR)"}, {"answer": "SELECT original_title FROM table_20963074_1 WHERE film_title_used_in_nomination = \"No Stars in the Jungle\"", "question": "Name the originl title for no stars in the jungle", "context": "CREATE TABLE table_20963074_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT original_title FROM table_20963074_1 WHERE result = \"Not Nominated\" AND film_title_used_in_nomination = \"Report on Death\"", "question": "Name the original title for not nominated result with report on death", "context": "CREATE TABLE table_20963074_1 (original_title VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_20963074_1 WHERE original_title = \"Octubre\"", "question": "Name the total number of results for octubre", "context": "CREATE TABLE table_20963074_1 (result VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_20963074_1 WHERE original_title = \"La boca del lobo\"", "question": "Name the film title for la boca del lobo", "context": "CREATE TABLE table_20963074_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_20963074_1 WHERE original_title = \"Reportaje a la muerte\"", "question": "Name the year for reportaje a la muerte", "context": "CREATE TABLE table_20963074_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_20942925_1 WHERE _number = 15", "question": "How many directors for #15?", "context": "CREATE TABLE table_20942925_1 (directed_by VARCHAR, _number VARCHAR)"}, {"answer": "SELECT directed_by FROM table_20942925_1 WHERE production_code = \"NABF13\"", "question": "What is every director with production code of NABF13?", "context": "CREATE TABLE table_20942925_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_20942925_1 WHERE written_by = \"Kevin Curran\"", "question": "What are all values for U.S. viewers(millions) with Kevin Curran as a writer?", "context": "CREATE TABLE table_20942925_1 (us_viewers__millions_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_20942925_1 WHERE production_code = \"NABF07\"", "question": "How many titles for the production code of NABF07?", "context": "CREATE TABLE table_20942925_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_20971444_3 WHERE rating__18_49_ = \"3.6\"", "question": "Name the episode for 18-49 rating being 3.6", "context": "CREATE TABLE table_20971444_3 (episode VARCHAR, rating__18_49_ VARCHAR)"}, {"answer": "SELECT rank__timeslot_ FROM table_20971444_3 WHERE viewers__millions_ = \"11.59\"", "question": "Name the rank timeslot for 11.59 viewers", "context": "CREATE TABLE table_20971444_3 (rank__timeslot_ VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT first_air_date FROM table_20971444_3 WHERE episode = 9", "question": "Name the first air date for 9 episode", "context": "CREATE TABLE table_20971444_3 (first_air_date VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(rank__timeslot_) FROM table_20971444_3 WHERE share__18_49_ = 13", "question": "Name the rank timeslot for 18-49 share being 13", "context": "CREATE TABLE table_20971444_3 (rank__timeslot_ VARCHAR, share__18_49_ VARCHAR)"}, {"answer": "SELECT COUNT(rank__timeslot_) FROM table_20971444_3 WHERE rating__18_49_ = \"3.1\"", "question": "Name the total number of rank timeslot for 18-49 being 3.1", "context": "CREATE TABLE table_20971444_3 (rank__timeslot_ VARCHAR, rating__18_49_ VARCHAR)"}, {"answer": "SELECT COUNT(share__18_49_) FROM table_20971444_3 WHERE rating__18_49_ = \"3.1\"", "question": "Name the total number for 18-49 share being 18-49 being 3.1", "context": "CREATE TABLE table_20971444_3 (share__18_49_ VARCHAR, rating__18_49_ VARCHAR)"}, {"answer": "SELECT date FROM table_20996923_20 WHERE bowl_game = \"Champs Sports Bowl\"", "question": "What was the date for the Champs Sports Bowl?", "context": "CREATE TABLE table_20996923_20 (date VARCHAR, bowl_game VARCHAR)"}, {"answer": "SELECT date FROM table_20996923_20 WHERE city = \"San Antonio, Texas\"", "question": "What is the date when the city is San Antonio, Texas?", "context": "CREATE TABLE table_20996923_20 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_20996923_20 WHERE television = \"NFL Network\"", "question": "What is the city when the Television network was the NFL Network?", "context": "CREATE TABLE table_20996923_20 (city VARCHAR, television VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_21007615_1 WHERE sun_devils_points = 41", "question": "How many opponents did the Sun Devils play when they scored 41 points?", "context": "CREATE TABLE table_21007615_1 (opponent VARCHAR, sun_devils_points VARCHAR)"}, {"answer": "SELECT record FROM table_21007615_1 WHERE sun_devils_points = 44", "question": "What was the record for the Sun Devils when they scored 44 points?", "context": "CREATE TABLE table_21007615_1 (record VARCHAR, sun_devils_points VARCHAR)"}, {"answer": "SELECT length_weight_of_missile FROM table_21012786_2 WHERE diameter_of_torsion_spring = \"38.4cm\"", "question": "When the torsion spring diameter is 38.4cm what would be the length or weight of the missile", "context": "CREATE TABLE table_21012786_2 (length_weight_of_missile VARCHAR, diameter_of_torsion_spring VARCHAR)"}, {"answer": "SELECT written_by FROM table_21025437_5 WHERE viewers__millions_ = \"8.84\"", "question": "Who wrote the episode that had 8.84 million viewers?", "context": "CREATE TABLE table_21025437_5 (written_by VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT viewers__millions_ FROM table_21025437_5 WHERE episode_no = 20", "question": "How many million viewers watched episode number 20?", "context": "CREATE TABLE table_21025437_5 (viewers__millions_ VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT title FROM table_21025437_5 WHERE written_by = \"Keith Temple\"", "question": "What was the title of the episode written by Keith Temple?", "context": "CREATE TABLE table_21025437_5 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MIN(series_no) FROM table_21025437_3", "question": "what is the lowest value under the column series no.?", "context": "CREATE TABLE table_21025437_3 (series_no INTEGER)"}, {"answer": "SELECT COUNT(episode) FROM table_2102945_1 WHERE viewers__in_millions_ = \"7.4\"", "question": "When there are  7.4 million viewers how many episodes are there?", "context": "CREATE TABLE table_2102945_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT COUNT(viewers__in_millions_) FROM table_2102945_1 WHERE run_time = \"24:31\"", "question": "When 24:31 is the run time how many measurements of viewers (in millions) are there?", "context": "CREATE TABLE table_2102945_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_2102945_1 WHERE run_time = \"24:31\"", "question": "When 24:31 is the run time how many millions of viewers are there?", "context": "CREATE TABLE table_2102945_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT archive FROM table_2102945_1 WHERE viewers__in_millions_ = \"7.5\"", "question": "When there are 7.5 million viewers what is the archive?", "context": "CREATE TABLE table_2102945_1 (archive VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT broadcast_network FROM table_21076286_2 WHERE broadcast_scope = \"Saitama Prefecture\"", "question": "Name the broadcast network for saitama prefecture", "context": "CREATE TABLE table_21076286_2 (broadcast_network VARCHAR, broadcast_scope VARCHAR)"}, {"answer": "SELECT broadcast_network FROM table_21076286_2 WHERE broadcast_scope = \"Chiba Prefecture\"", "question": "Name the broadcast network for chiba prefecture", "context": "CREATE TABLE table_21076286_2 (broadcast_network VARCHAR, broadcast_scope VARCHAR)"}, {"answer": "SELECT broadcast_day_and_timings__in_jst__ FROM table_21076286_2 WHERE broadcast_network = \"TV Saitama\"", "question": "Name the broadcast day and timings for tv saitama", "context": "CREATE TABLE table_21076286_2 (broadcast_day_and_timings__in_jst__ VARCHAR, broadcast_network VARCHAR)"}, {"answer": "SELECT opponent FROM table_21092427_1 WHERE opponents = 12", "question": "Name the opponent for opponents being 12", "context": "CREATE TABLE table_21092427_1 (opponent VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT result FROM table_21092427_1 WHERE record = \"9-1\"", "question": "Name the result for 9-1 record", "context": "CREATE TABLE table_21092427_1 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(opponents) FROM table_21092427_1 WHERE record = \"8-1\"", "question": "Name the most opponents for 8-1 record", "context": "CREATE TABLE table_21092427_1 (opponents INTEGER, record VARCHAR)"}, {"answer": "SELECT COUNT(seats_2006) FROM table_21132404_1 WHERE _percentage_1997 = \"38.9\"", "question": "How many seats in 2006 has a % 1997 rating of 38.9?", "context": "CREATE TABLE table_21132404_1 (seats_2006 VARCHAR, _percentage_1997 VARCHAR)"}, {"answer": "SELECT _percentage_2006 FROM table_21132404_1 WHERE seats_2006 = 5", "question": "What was the % 2006 rating in 2006 where there were 5 seats?", "context": "CREATE TABLE table_21132404_1 (_percentage_2006 VARCHAR, seats_2006 VARCHAR)"}, {"answer": "SELECT COUNT(_percentage_2006) FROM table_21132404_1 WHERE political_parties = \"Social Democratic Party of Germany\"", "question": "How many time was the political party the social democratic party of germany?", "context": "CREATE TABLE table_21132404_1 (_percentage_2006 VARCHAR, political_parties VARCHAR)"}, {"answer": "SELECT COUNT(political_parties) FROM table_21132404_1 WHERE _percentage_2006 = \"43.5\"", "question": "How many political parties had a %2006 rating of 43.5?", "context": "CREATE TABLE table_21132404_1 (political_parties VARCHAR, _percentage_2006 VARCHAR)"}, {"answer": "SELECT MIN(seats_2001) FROM table_21132404_1 WHERE seats_2006 = 11", "question": "How many seats were there in 2001 when there were 11 seats in 2006?", "context": "CREATE TABLE table_21132404_1 (seats_2001 INTEGER, seats_2006 VARCHAR)"}, {"answer": "SELECT won_promotion FROM table_2119448_3 WHERE season = 1987", "question": "Name the won promotion for 1987", "context": "CREATE TABLE table_2119448_3 (won_promotion VARCHAR, season VARCHAR)"}, {"answer": "SELECT won_promotion FROM table_2119448_3 WHERE lost_promotion_playoffs = \"Kalmar FF\"", "question": "Name the won promotion for kalmar ff", "context": "CREATE TABLE table_2119448_3 (won_promotion VARCHAR, lost_promotion_playoffs VARCHAR)"}, {"answer": "SELECT position FROM table_21223773_2 WHERE matches_for_nqf = \"2009\"", "question": "If the matches for NQF is 2009, what is the position?", "context": "CREATE TABLE table_21223773_2 (position VARCHAR, matches_for_nqf VARCHAR)"}, {"answer": "SELECT robin FROM table_21234111_10 WHERE result = \"Eliminated\"", "question": "What was Robin's score when she was eliminated?", "context": "CREATE TABLE table_21234111_10 (robin VARCHAR, result VARCHAR)"}, {"answer": "SELECT song FROM table_21234111_10 WHERE robin = \"4.0\"", "question": "What song did Robin perform with a result of 4.0?", "context": "CREATE TABLE table_21234111_10 (song VARCHAR, robin VARCHAR)"}, {"answer": "SELECT crude_death_rate FROM table_21258_1 WHERE deaths = \"106 000\"", "question": "Among  deaths  106 000  how many is crude rate.", "context": "CREATE TABLE table_21258_1 (crude_death_rate VARCHAR, deaths VARCHAR)"}, {"answer": "SELECT COUNT(natural_increase) FROM table_21258_1 WHERE births = \"388 000\"", "question": "where births is 388 000 how many number is natural increase", "context": "CREATE TABLE table_21258_1 (natural_increase VARCHAR, births VARCHAR)"}, {"answer": "SELECT MIN(infant_mortality_rate) FROM table_21258_1 WHERE period = \"1985 - 1990\"", "question": "period between 1985 - 1990 have minimum infant mortality rate of what.", "context": "CREATE TABLE table_21258_1 (infant_mortality_rate INTEGER, period VARCHAR)"}, {"answer": "SELECT COUNT(winner) FROM table_21260421_1 WHERE score = \"202 (-11)\"", "question": "How many winners scored exactly 202 (-11)?", "context": "CREATE TABLE table_21260421_1 (winner VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_21260421_1 WHERE location = \"Alabama\"", "question": "How many tournaments were held at Alabama?", "context": "CREATE TABLE table_21260421_1 (score VARCHAR, location VARCHAR)"}, {"answer": "SELECT tournament_venue__city_ FROM table_21269441_4 WHERE regular_season_winner = \"Louisville\"", "question": "Where was the tourney when Louisville won the regular season?", "context": "CREATE TABLE table_21269441_4 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR)"}, {"answer": "SELECT tournament_venue__city_ FROM table_21269441_4 WHERE regular_season_winner = \"UCLA\"", "question": "Where was the tourney when  UCLA won the regular season?", "context": "CREATE TABLE table_21269441_4 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR)"}, {"answer": "SELECT tournament_venue__city_ FROM table_21269441_4 WHERE regular_season_winner = \"Weber State\"", "question": "Where was the tourney when  Weber State won the regular season?", "context": "CREATE TABLE table_21269441_4 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR)"}, {"answer": "SELECT driver FROM table_21297652_1 WHERE series = \"NASCAR Winston Cup\" AND winnings = \"$40,000\"", "question": "Which drivers won $40,000 in the NASCAR Winston Cup?", "context": "CREATE TABLE table_21297652_1 (driver VARCHAR, series VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT series FROM table_21297652_1 WHERE position = 7", "question": "What series is at the position 7?", "context": "CREATE TABLE table_21297652_1 (series VARCHAR, position VARCHAR)"}, {"answer": "SELECT series FROM table_21297652_1 WHERE points = 30", "question": "In what series did the driver get 30 points?", "context": "CREATE TABLE table_21297652_1 (series VARCHAR, points VARCHAR)"}, {"answer": "SELECT winnings FROM table_21297652_1 WHERE driver = \"Dale Jarrett\"", "question": "How much did Dale Jarrett win?", "context": "CREATE TABLE table_21297652_1 (winnings VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(households) FROM table_21310575_2", "question": "Name the most households", "context": "CREATE TABLE table_21310575_2 (households INTEGER)"}, {"answer": "SELECT COUNT(attendance) FROM table_21377473_7 WHERE score = \"0 - 1 Barbiero 78'\"", "question": "When 0 - 1 barbiero 78' is the score how many measurements of attendance are there?", "context": "CREATE TABLE table_21377473_7 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT stadium FROM table_21377473_7 WHERE score = \"3 - 1 Hughes 64'\"", "question": "When 3 - 1 hughes 64' is the score what is the stadium?", "context": "CREATE TABLE table_21377473_7 (stadium VARCHAR, score VARCHAR)"}, {"answer": "SELECT stadium FROM table_21377473_7 WHERE score = \"1 - 1 Leckie 90+3'\"", "question": "When 1 - 1 leckie 90+3' is the score what is the stadium?", "context": "CREATE TABLE table_21377473_7 (stadium VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_21373283_3 WHERE pole_position = \"Adriano Buzaid\"", "question": "What date did Adriano Buzaid have the pole position?", "context": "CREATE TABLE table_21373283_3 (date VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT winning_team FROM table_21373283_3 WHERE pole_position = \"Max Chilton\" AND circuit = \"Oulton Park\"", "question": "What is the winning team at Oulton Park when Max Chilton held the pole position?", "context": "CREATE TABLE table_21373283_3 (winning_team VARCHAR, pole_position VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_21373283_3 WHERE pole_position = \"Renger van der Zande\" AND circuit = \"Donington Park\"", "question": "What date did Renger Van Der Zande have the pole position at Donington Park?", "context": "CREATE TABLE table_21373283_3 (date VARCHAR, pole_position VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT regular_season FROM table_2139111_1 WHERE year = 2005", "question": "Name the regular season for 2005", "context": "CREATE TABLE table_2139111_1 (regular_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(ministries) FROM table_21422977_1 WHERE n\u00ba = 3", "question": "When n\u00ba is 3, what are all the ministires?", "context": "CREATE TABLE table_21422977_1 (ministries VARCHAR, n\u00ba VARCHAR)"}, {"answer": "SELECT coalition_parties FROM table_21422977_1 WHERE n\u00ba = 3", "question": "When n\u00ba is 3, what are all the coaliton parties?", "context": "CREATE TABLE table_21422977_1 (coalition_parties VARCHAR, n\u00ba VARCHAR)"}, {"answer": "SELECT MAX(ministries) FROM table_21422977_1", "question": "What is the most amount of ministries?", "context": "CREATE TABLE table_21422977_1 (ministries INTEGER)"}, {"answer": "SELECT ministries FROM table_21422977_2 WHERE duration = \"4 years, 4 days (1,465 days)\"", "question": "What is the ministries number when duration is 4 years, 4 days (1,465 days)?", "context": "CREATE TABLE table_21422977_2 (ministries VARCHAR, duration VARCHAR)"}, {"answer": "SELECT ministers FROM table_21422977_2 WHERE cabinet__nickname_ = \"Steingr\u00edmur Hermannsson III\"", "question": "How many ministers are there when the cabinet (nickname) is \tSteingr\u00edmur Hermannsson III?", "context": "CREATE TABLE table_21422977_2 (ministers VARCHAR, cabinet__nickname_ VARCHAR)"}, {"answer": "SELECT duration FROM table_21422977_2 WHERE n\u00ba = 33", "question": "What is the duration for no 33?", "context": "CREATE TABLE table_21422977_2 (duration VARCHAR, n\u00ba VARCHAR)"}, {"answer": "SELECT episodes_used FROM table_2144389_9 WHERE _number = 1", "question": "When 1 is the number what episodes were used?", "context": "CREATE TABLE table_2144389_9 (episodes_used VARCHAR, _number VARCHAR)"}, {"answer": "SELECT japanese_translation FROM table_2144389_9 WHERE japanese_title = \"\u4e03\u8272\u30a2\u30fc\u30c1\"", "question": "When \u4e03\u8272\u30a2\u30fc\u30c1 is the japanese title what is the japanese translation?", "context": "CREATE TABLE table_2144389_9 (japanese_translation VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_2144389_9 WHERE _number = 5", "question": "When 5 is the number what is the japanese title?", "context": "CREATE TABLE table_2144389_9 (japanese_title VARCHAR, _number VARCHAR)"}, {"answer": "SELECT COUNT(japanese_title) FROM table_2144389_9 WHERE vocalist = \"Momoiro Clover Z\"", "question": "When momoiro clover z is the vocalist how many japanese titles are there?", "context": "CREATE TABLE table_2144389_9 (japanese_title VARCHAR, vocalist VARCHAR)"}, {"answer": "SELECT japanese_translation FROM table_2144389_9 WHERE vocalist = \"Momoiro Clover Z\"", "question": "When momoiro clover z is the vocalist what is the japanese translation?", "context": "CREATE TABLE table_2144389_9 (japanese_translation VARCHAR, vocalist VARCHAR)"}, {"answer": "SELECT vocalist FROM table_2144389_9 WHERE r\u014dmaji = \"Pok\u00e9mon ieru kana? BW\"", "question": "When  pok\u00e9mon ieru kana? bw is the romaji who is the vocalist?", "context": "CREATE TABLE table_2144389_9 (vocalist VARCHAR, r\u014dmaji VARCHAR)"}, {"answer": "SELECT miles__km_ FROM table_2144863_1 WHERE driver = \"Jeff Gordon\"", "question": "Name the miles for jeff gordon", "context": "CREATE TABLE table_2144863_1 (miles__km_ VARCHAR, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_2144863_1 WHERE driver = \"Ryan Newman\"", "question": "Name the laps for ryan newman", "context": "CREATE TABLE table_2144863_1 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT theme FROM table_21501518_1 WHERE original_artist = \"Soul Brothers Six\"", "question": "What is the theme of the song by Soul Brothers Six", "context": "CREATE TABLE table_21501518_1 (theme VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT week__number FROM table_21501518_1 WHERE theme = \"First Solo\"", "question": "Which week is the theme First Solo", "context": "CREATE TABLE table_21501518_1 (week__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT week__number FROM table_21501518_1 WHERE theme = \"N/A\"", "question": "Which week is the theme n/a", "context": "CREATE TABLE table_21501518_1 (week__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(song_choice) FROM table_21501518_1 WHERE order__number = \"1\"", "question": "How many total songs has the order #1", "context": "CREATE TABLE table_21501518_1 (song_choice VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT order__number FROM table_21501518_1 WHERE result = \"Bottom 2\"", "question": "Which order #1 has a result of bottom 2", "context": "CREATE TABLE table_21501518_1 (order__number VARCHAR, result VARCHAR)"}, {"answer": "SELECT song_choice FROM table_21501518_1 WHERE original_artist = \"Garth Brooks\"", "question": "Whats the song of name with an original artist Garth Brooks", "context": "CREATE TABLE table_21501518_1 (song_choice VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT dates_administered FROM table_21535453_1 WHERE terry_mcauliffe = \"19%\"", "question": "What was the date when Terry McAuliffe won 19%?", "context": "CREATE TABLE table_21535453_1 (dates_administered VARCHAR, terry_mcauliffe VARCHAR)"}, {"answer": "SELECT source FROM table_21535453_1 WHERE terry_mcauliffe = \"30%\" AND dates_administered = \"June 8\"", "question": "What was the source of the poll that gave McAuliffe 30% on June 8?", "context": "CREATE TABLE table_21535453_1 (source VARCHAR, terry_mcauliffe VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT brian_moran FROM table_21535453_1 WHERE source = \"Survey USA\" AND creigh_deeds = \"26%\"", "question": "What was Brian Moran's tally in the Survey USA poll where Creigh Deeds had 26%?", "context": "CREATE TABLE table_21535453_1 (brian_moran VARCHAR, source VARCHAR, creigh_deeds VARCHAR)"}, {"answer": "SELECT source FROM table_21535453_1 WHERE brian_moran = \"19%\"", "question": "What source showed Brian Moran at 19%?", "context": "CREATE TABLE table_21535453_1 (source VARCHAR, brian_moran VARCHAR)"}, {"answer": "SELECT brian_moran FROM table_21535453_1 WHERE creigh_deeds = \"30%\"", "question": "What was Brian Moran's share of the votes when Creigh Deeds had 30%?", "context": "CREATE TABLE table_21535453_1 (brian_moran VARCHAR, creigh_deeds VARCHAR)"}, {"answer": "SELECT source FROM table_21535453_1 WHERE brian_moran = \"26%\"", "question": "What source gave 26% of the votes to Brian Moran?", "context": "CREATE TABLE table_21535453_1 (source VARCHAR, brian_moran VARCHAR)"}, {"answer": "SELECT MAX(insurgents) FROM table_21636599_1 WHERE total_per_period = 602", "question": "How many insurgents have 602 as the total per period?", "context": "CREATE TABLE table_21636599_1 (insurgents INTEGER, total_per_period VARCHAR)"}, {"answer": "SELECT MAX(security_forces) FROM table_21636599_1", "question": "How many security forces?", "context": "CREATE TABLE table_21636599_1 (security_forces INTEGER)"}, {"answer": "SELECT COUNT(insurgents) FROM table_21636599_1 WHERE period = \"2003\"", "question": "How many insurgents have 2003 as a period?", "context": "CREATE TABLE table_21636599_1 (insurgents VARCHAR, period VARCHAR)"}, {"answer": "SELECT position FROM table_2169966_2 WHERE avg_start = \"16.8\"", "question": "What position did he finish in the year his average start was 16.8?", "context": "CREATE TABLE table_2169966_2 (position VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT winnings FROM table_2169966_2 WHERE top_10 = 14", "question": "What were his winnings when he had 14 top 10s?", "context": "CREATE TABLE table_2169966_2 (winnings VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT COUNT(avg_finish) FROM table_2169966_2 WHERE avg_start = \"20.7\"", "question": "How many years did he have an average start of 20.7?", "context": "CREATE TABLE table_2169966_2 (avg_finish VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT avg_finish FROM table_2169966_2 WHERE avg_start = \"27.7\"", "question": "What was his average finish when his average start was 27.7?", "context": "CREATE TABLE table_2169966_2 (avg_finish VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT isin FROM table_21692771_1 WHERE coupon = \"1.02\" AND amount_issued_[\u20ac] = \"447,000,000\"", "question": "What is the ISIN that has a coupon of 1.02 and a value issued of 447,000,000?", "context": "CREATE TABLE table_21692771_1 (isin VARCHAR, coupon VARCHAR, amount_issued_ VARCHAR, \u20ac VARCHAR)"}, {"answer": "SELECT isin FROM table_21692771_1 WHERE amount_issued_[\u20ac] = \"223,000,000\"", "question": "What is the ISIN that has an amount issued of 223,000,000?", "context": "CREATE TABLE table_21692771_1 (isin VARCHAR, amount_issued_ VARCHAR, \u20ac VARCHAR)"}, {"answer": "SELECT maturity FROM table_21692771_1 WHERE coupon = \"0.726\"", "question": "What is the maturity that has a coupon of exactly 0.726?", "context": "CREATE TABLE table_21692771_1 (maturity VARCHAR, coupon VARCHAR)"}, {"answer": "SELECT coupon FROM table_21692771_1 WHERE issuer = \"COMMERZBANK AG\"", "question": "What is the coupon that has an issuer of Commerzbank AG?", "context": "CREATE TABLE table_21692771_1 (coupon VARCHAR, issuer VARCHAR)"}, {"answer": "SELECT maturity FROM table_21692771_1 WHERE isin = \"DE000A0BVBN3\"", "question": "What is the maturity date of the ISIN labeled DE000A0BVBN3?", "context": "CREATE TABLE table_21692771_1 (maturity VARCHAR, isin VARCHAR)"}, {"answer": "SELECT isin FROM table_21692771_1 WHERE maturity = \"3/11/2011\"", "question": "What is the ISIN associated with the maturity date of 3/11/2011?", "context": "CREATE TABLE table_21692771_1 (isin VARCHAR, maturity VARCHAR)"}, {"answer": "SELECT report FROM table_2175685_1 WHERE average_speed__mph_ = \"87.599\"", "question": "What was the report when the average speed (mph) was 87.599?", "context": "CREATE TABLE table_2175685_1 (report VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT team FROM table_2175685_1 WHERE race_time = \"3:12:30\"", "question": "What team won when the race time was 3:12:30?", "context": "CREATE TABLE table_2175685_1 (team VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT miles__km_ FROM table_2175685_1 WHERE average_speed__mph_ = \"103.145\"", "question": "How many miles (km) were driven when the average speed (mph) was 103.145?", "context": "CREATE TABLE table_2175685_1 (miles__km_ VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT series FROM table_21795846_1 WHERE position = \"12th\"", "question": "If the position is 12th, what was the series?", "context": "CREATE TABLE table_21795846_1 (series VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(podiums) FROM table_21795846_1 WHERE position = \"9th\"", "question": "If the position is 9th, what is the total podiums number?", "context": "CREATE TABLE table_21795846_1 (podiums VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_21795846_1 WHERE points = 16", "question": "If there is 16 points, what was the position? ", "context": "CREATE TABLE table_21795846_1 (position VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_21795650_1 WHERE series = \"Formula Renault 2.0 Italy\"", "question": "What is the point total for the Formula Renault 2.0 Italy series?", "context": "CREATE TABLE table_21795650_1 (points VARCHAR, series VARCHAR)"}, {"answer": "SELECT MIN(f_laps) FROM table_21795650_1 WHERE series = \"Italian Formula Renault 2.0 Winter series\"", "question": "What is the minimum number of f/laps in the Italian Formula Renault 2.0 Winter Series?", "context": "CREATE TABLE table_21795650_1 (f_laps INTEGER, series VARCHAR)"}, {"answer": "SELECT poles FROM table_21795650_1 WHERE series = \"Italian Formula Renault 2.0 Winter series\"", "question": "How many poles were there in the Italian Formula Renault 2.0 Winter Series?", "context": "CREATE TABLE table_21795650_1 (poles VARCHAR, series VARCHAR)"}, {"answer": "SELECT podiums FROM table_21795650_1 WHERE series = \"Italian Formula Renault 2.0 Winter series\"", "question": "How many podiums were there in the Italian Formula Renault 2.0 Winter Series?", "context": "CREATE TABLE table_21795650_1 (podiums VARCHAR, series VARCHAR)"}, {"answer": "SELECT position FROM table_21795650_1 WHERE races = 16", "question": "What was the highest position for the person who performed in 16 races?", "context": "CREATE TABLE table_21795650_1 (position VARCHAR, races VARCHAR)"}, {"answer": "SELECT team FROM table_21795650_1 WHERE podiums = 4", "question": "What team had 4 podiums?", "context": "CREATE TABLE table_21795650_1 (team VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_21790203_1 WHERE film_title_used_in_nomination = \"My Magic\"", "question": "Name the year for is my magic", "context": "CREATE TABLE table_21790203_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_21790203_1 WHERE language_s_ = \"Japanese\"", "question": "Name the year for japanese", "context": "CREATE TABLE table_21790203_1 (year__ceremony_ VARCHAR, language_s_ VARCHAR)"}, {"answer": "SELECT result FROM table_21790203_1 WHERE film_title_used_in_nomination = \"Already Famous\"", "question": "Name the result for already famous", "context": "CREATE TABLE table_21790203_1 (result VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT result FROM table_21790203_1 WHERE language_s_ = \"Japanese\"", "question": "Name the result for japanese", "context": "CREATE TABLE table_21790203_1 (result VARCHAR, language_s_ VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_2182573_2 WHERE avg_start = \"28.5\"", "question": "What was the best top five result when the average start is 28.5? ", "context": "CREATE TABLE table_2182573_2 (top_5 INTEGER, avg_start VARCHAR)"}, {"answer": "SELECT avg_finish FROM table_2182573_2 WHERE year = 2007", "question": "What was the average finish in 2007?", "context": "CREATE TABLE table_2182573_2 (avg_finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(poles) FROM table_2182573_2 WHERE year = 1996", "question": "How many poles were there in 1996?", "context": "CREATE TABLE table_2182573_2 (poles INTEGER, year VARCHAR)"}, {"answer": "SELECT avg_finish FROM table_2190919_3 WHERE team_s_ = \"#21/#07 SS-Green Light Racing\"", "question": "With team #21/#07 ss-green light racing, what was the average finish number?", "context": "CREATE TABLE table_2190919_3 (avg_finish VARCHAR, team_s_ VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_2190919_3", "question": "What was the maximum amount of the poles?", "context": "CREATE TABLE table_2190919_3 (poles INTEGER)"}, {"answer": "SELECT team_s_ FROM table_2190919_3 WHERE avg_start = \"11.8\"", "question": "If the average start is 11.8, what was the team name?", "context": "CREATE TABLE table_2190919_3 (team_s_ VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT COUNT(top_5) FROM table_2190919_3 WHERE winnings = \"$250,667\"", "question": "If the winnings was $250,667, what is the top 5 total number?", "context": "CREATE TABLE table_2190919_3 (top_5 VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT avg_start FROM table_2190919_3 WHERE avg_finish = \"29.0\"", "question": "With an average finish of 29.0, what was the average start?", "context": "CREATE TABLE table_2190919_3 (avg_start VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT COUNT(reason_for_change) FROM table_2192067_4 WHERE date_successor_seated = \"June 8, 1876\"", "question": "what is the total number of reasons for change where the date the successor was seated is june 8, 1876?", "context": "CREATE TABLE table_2192067_4 (reason_for_change VARCHAR, date_successor_seated VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_2192067_4 WHERE date_successor_seated = \"July 28, 1876\"", "question": "what is the reason for change where the date the successor was seated was july 28, 1876?", "context": "CREATE TABLE table_2192067_4 (reason_for_change VARCHAR, date_successor_seated VARCHAR)"}, {"answer": "SELECT district FROM table_2192067_4 WHERE vacator = \"Vacant\"", "question": "what is the district where the vacator is vacant?", "context": "CREATE TABLE table_2192067_4 (district VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_2196127_1 WHERE driver = \"Matt Kenseth\" AND date = \"March 7\"", "question": "Who was the manufacturer for Matt Kenseth on March 7?", "context": "CREATE TABLE table_2196127_1 (manufacturer VARCHAR, driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT average_speed__mph_ FROM table_2196127_1 WHERE race_time = \"3:08:08\"", "question": "What was the average speed for a racetime of 3:08:08?", "context": "CREATE TABLE table_2196127_1 (average_speed__mph_ VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT laps FROM table_2196127_1 WHERE year = \"2002\"", "question": "How many laps were there in 2002?", "context": "CREATE TABLE table_2196127_1 (laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(miles__km_) FROM table_2196127_1 WHERE race_time = \"3:00:46\"", "question": "How many numbers were recorded under miles for the 3:00:46 race time?", "context": "CREATE TABLE table_2196127_1 (miles__km_ VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT race_time FROM table_2196127_1 WHERE driver = \"Jeff Gordon\"", "question": "What was the race time for Jeff Gordon?", "context": "CREATE TABLE table_2196127_1 (race_time VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_2199290_1", "question": "What is the latest year?", "context": "CREATE TABLE table_2199290_1 (year INTEGER)"}, {"answer": "SELECT total FROM table_21995420_6 WHERE school = \"University of the Cordilleras UC Dance Squad\"", "question": "What is every total for the University of the Cordilleras UC Dance Squad?", "context": "CREATE TABLE table_21995420_6 (total VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_21995420_6 WHERE basic_elements = 52", "question": "What is every school with basic elements of 52?", "context": "CREATE TABLE table_21995420_6 (school VARCHAR, basic_elements VARCHAR)"}, {"answer": "SELECT COUNT(stunts) FROM table_21995420_6 WHERE total = \"201.5\"", "question": "How many stunts have a total of 201.5?", "context": "CREATE TABLE table_21995420_6 (stunts VARCHAR, total VARCHAR)"}, {"answer": "SELECT school FROM table_21995420_6 WHERE stunts = \"48\"", "question": "What is every school with stunts of 48?", "context": "CREATE TABLE table_21995420_6 (school VARCHAR, stunts VARCHAR)"}, {"answer": "SELECT deductions FROM table_21995420_6 WHERE pyramids = \"49\"", "question": "What is every deduction for pyramids of 49?", "context": "CREATE TABLE table_21995420_6 (deductions VARCHAR, pyramids VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_2199290_2 WHERE partner = \"Wesley Moodie\"", "question": "In what year was the partner Wesley Moodie?", "context": "CREATE TABLE table_2199290_2 (year INTEGER, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_2199290_2 WHERE score_in_the_final = \"7\u20136(9), 7\u20136(1)\"", "question": "What was the outcome when the final score was 7\u20136(9), 7\u20136(1)?", "context": "CREATE TABLE table_2199290_2 (outcome VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_2201724_1 WHERE opponent_in_the_final = \"Tony Roche\"", "question": "What are the scores in matches against Tony Roche?", "context": "CREATE TABLE table_2201724_1 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT championship FROM table_2201724_1 WHERE score_in_the_final = \"3\u20136, 4\u20136, 2\u20136\"", "question": "Which championship has a final score of 3\u20136, 4\u20136, 2\u20136?", "context": "CREATE TABLE table_2201724_1 (championship VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_2201724_1", "question": "What is Fred Stolle's final year of competing in a championship? ", "context": "CREATE TABLE table_2201724_1 (year INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_2201724_1 WHERE score_in_the_final = \"3\u20136, 4\u20136, 2\u20136\"", "question": "List the total number of years that have a score of 3\u20136, 4\u20136, 2\u20136.", "context": "CREATE TABLE table_2201724_1 (year VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_2201724_1 WHERE championship = \"Wimbledon (2/2)\"", "question": "List the final score of Wimbledon (2/2).", "context": "CREATE TABLE table_2201724_1 (score_in_the_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT winner FROM table_22050544_1 WHERE event__number = \"15H\"", "question": "What is the winner in event number 15h?", "context": "CREATE TABLE table_22050544_1 (winner VARCHAR, event__number VARCHAR)"}, {"answer": "SELECT winner FROM table_22050544_1 WHERE elapsed_time = \"12 h 42 min\"", "question": "Who is the winner with an elapsed time of 12 h 42 min?", "context": "CREATE TABLE table_22050544_1 (winner VARCHAR, elapsed_time VARCHAR)"}, {"answer": "SELECT prize FROM table_22050544_1 WHERE elapsed_time = \"10 h 10 min\"", "question": "What is the prize for the elapsed time of 10 h 10 min?", "context": "CREATE TABLE table_22050544_1 (prize VARCHAR, elapsed_time VARCHAR)"}, {"answer": "SELECT winner FROM table_22050544_1 WHERE dateca = \"Apr 2\" AND event__number = \"1H\"", "question": "Who is the winner of event # 1h and dateca is Apr 2?", "context": "CREATE TABLE table_22050544_1 (winner VARCHAR, dateca VARCHAR, event__number VARCHAR)"}, {"answer": "SELECT event__number FROM table_22050544_1 WHERE winner = \"what is 7x6\"", "question": "What is the event # when the winner is what is 7x6?", "context": "CREATE TABLE table_22050544_1 (event__number VARCHAR, winner VARCHAR)"}, {"answer": "SELECT position FROM table_22056184_1 WHERE poles = 2", "question": "Which positions are the poles 2?", "context": "CREATE TABLE table_22056184_1 (position VARCHAR, poles VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_22056184_1 WHERE f_laps = 1 AND series = \"British Formula Three\"", "question": "How many positions have f/laps of 1 and british formula three series?", "context": "CREATE TABLE table_22056184_1 (position VARCHAR, f_laps VARCHAR, series VARCHAR)"}, {"answer": "SELECT position FROM table_22056184_1 WHERE podiums = 9", "question": "Which position has 9 podiums?", "context": "CREATE TABLE table_22056184_1 (position VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_22056184_1 WHERE position = \"7th\"", "question": "How many teams have 7th position?", "context": "CREATE TABLE table_22056184_1 (team VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(poles) FROM table_22056184_1 WHERE series = \"British Formula Renault 2.0\" AND f_laps = 1", "question": "How many poles when British formula renault 2.0 series and f/laps 1?", "context": "CREATE TABLE table_22056184_1 (poles INTEGER, series VARCHAR, f_laps VARCHAR)"}, {"answer": "SELECT points FROM table_22056184_1 WHERE poles = 1", "question": "How many points when pole are 1?", "context": "CREATE TABLE table_22056184_1 (points VARCHAR, poles VARCHAR)"}, {"answer": "SELECT COUNT(wiaa_classification) FROM table_22058547_1 WHERE high_school = \"Fort Vancouver\"", "question": "how many wiaa classifications does fort vancouver high school have?", "context": "CREATE TABLE table_22058547_1 (wiaa_classification VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT high_school FROM table_22058547_1 WHERE mascot = \"Storm\"", "question": "How many high schools have storm mascots?", "context": "CREATE TABLE table_22058547_1 (high_school VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT wiaa_classification FROM table_22058547_1 WHERE high_school = \"Vancouver iTech Prepratory\"", "question": "What wiaa classifications does vancouver itech prepratory have?", "context": "CREATE TABLE table_22058547_1 (wiaa_classification VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT type FROM table_22058547_1 WHERE mascot = \"Trappers\"", "question": "What school classifications have trappers as mascot?", "context": "CREATE TABLE table_22058547_1 (type VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT played FROM table_2208838_4 WHERE season = \"1989\"", "question": "How many games were played in the 1989 season?", "context": "CREATE TABLE table_2208838_4 (played VARCHAR, season VARCHAR)"}, {"answer": "SELECT played FROM table_2208838_4 WHERE points = 927", "question": "How many games were played by the player with 927 points?", "context": "CREATE TABLE table_2208838_4 (played VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_2208838_4 WHERE average = \"20.4\"", "question": "Which team had an average of 20.4?", "context": "CREATE TABLE table_2208838_4 (team VARCHAR, average VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_22133191_3 WHERE position_in_table = \"10th\"", "question": "What was the date of appointment for the 10th person in position?", "context": "CREATE TABLE table_22133191_3 (date_of_appointment VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_22133191_3 WHERE manner_of_departure = \"End of caretaker contract\"", "question": "What is the date of vacancy for the person that left because of end of caretaker contract?", "context": "CREATE TABLE table_22133191_3 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR)"}, {"answer": "SELECT COUNT(prefecture) FROM table_221398_1 WHERE area__km\u00b2_ = \"361.719\"", "question": "How many prefectures have an area of 361.719 kilometers squared?", "context": "CREATE TABLE table_221398_1 (prefecture VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT prefecture FROM table_221398_1 WHERE number_in_map = \"39\"", "question": "What prefecture is listed in the map as number 39?", "context": "CREATE TABLE table_221398_1 (prefecture VARCHAR, number_in_map VARCHAR)"}, {"answer": "SELECT COUNT(pop_density___km\u00b2_) FROM table_221398_1 WHERE number_in_map = \"16\"", "question": "How many prefectures have a population density of 16 people/kilometers squared?", "context": "CREATE TABLE table_221398_1 (pop_density___km\u00b2_ VARCHAR, number_in_map VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_2216245_2 WHERE winnings = \"$95,180\"", "question": "How many wins did he have when he had $95,180 in winnings?", "context": "CREATE TABLE table_2216245_2 (wins VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT COUNT(top_10) FROM table_2216245_2 WHERE winnings = \"$80,490\"", "question": "How many top 10s did he have the year he won $80,490?", "context": "CREATE TABLE table_2216245_2 (top_10 VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_2216245_2", "question": "What is his lowest number of wins?", "context": "CREATE TABLE table_2216245_2 (wins INTEGER)"}, {"answer": "SELECT MAX(top_5) FROM table_2216245_2 WHERE team_s_ = \"#28/#49 Jay Robinson Racing\"", "question": "How many top 5s when he was on team #28/#49 jay robinson racing?", "context": "CREATE TABLE table_2216245_2 (top_5 INTEGER, team_s_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2221484_2 WHERE series__number = 258", "question": "What date did episode 258 in the series originally air?", "context": "CREATE TABLE table_2221484_2 (original_air_date VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2221484_2 WHERE series__number = 266", "question": "Who directed episode 266 in the series?", "context": "CREATE TABLE table_2221484_2 (directed_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_2223177_3", "question": "Name the least season", "context": "CREATE TABLE table_2223177_3 (season INTEGER)"}, {"answer": "SELECT btu_gal FROM table_2224692_1 WHERE kwh_gal = \"24.04\"", "question": "What's the BTU/Gal of the fuel whose kWh/Gal is 24.04?", "context": "CREATE TABLE table_2224692_1 (btu_gal VARCHAR, kwh_gal VARCHAR)"}, {"answer": "SELECT hp__hr_gal FROM table_2224692_1 WHERE gge = \"0.9000\"", "question": "What's the HP -hr/gal of the fuel whose GGE is 0.9000?", "context": "CREATE TABLE table_2224692_1 (hp__hr_gal VARCHAR, gge VARCHAR)"}, {"answer": "SELECT percentage_yield FROM table_222448_1 WHERE dpmo = \"3.4\"", "question": "What is the percentage yield for a DPMO of 3.4?", "context": "CREATE TABLE table_222448_1 (percentage_yield VARCHAR, dpmo VARCHAR)"}, {"answer": "SELECT COUNT(percentage_yield) FROM table_222448_1 WHERE percent_defective = \"6.7%\"", "question": "How many percentage yield figures are there when 6.7% are defective?", "context": "CREATE TABLE table_222448_1 (percentage_yield VARCHAR, percent_defective VARCHAR)"}, {"answer": "SELECT long_term_c_pk FROM table_222448_1 WHERE short_term_c_pk = \"2.00\"", "question": "What is long-term C PK when the short-term C PK is 2.00?", "context": "CREATE TABLE table_222448_1 (long_term_c_pk VARCHAR, short_term_c_pk VARCHAR)"}, {"answer": "SELECT sigma__with_15\u03c3_shift_ FROM table_222448_1 WHERE percent_defective = \"69%\"", "question": "What is the sigma (with 1.5\u03c3 shift) when there are 69% defective?", "context": "CREATE TABLE table_222448_1 (sigma__with_15\u03c3_shift_ VARCHAR, percent_defective VARCHAR)"}, {"answer": "SELECT percent_defective FROM table_222448_1 WHERE sigma__with_15\u03c3_shift_ = \"2.5\"", "question": "When sigma (with 1.5\u03c3 shift) is 2.5, what percent is defective?", "context": "CREATE TABLE table_222448_1 (percent_defective VARCHAR, sigma__with_15\u03c3_shift_ VARCHAR)"}, {"answer": "SELECT COUNT(us_viewers__millions_) FROM table_22265225_1 WHERE no_in_series = \"36\"", "question": "How many times was u.s. Viewers listed for episode 36 in the series?", "context": "CREATE TABLE table_22265225_1 (us_viewers__millions_ VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_22265225_1 WHERE no_in_season = \"12\"", "question": "How many million U.s. Viewers watched episode 12 in the season?", "context": "CREATE TABLE table_22265225_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_22265225_1 WHERE production_code = \"218\"", "question": "What day did the episode with a production code of 218 originally air?", "context": "CREATE TABLE table_22265225_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_22265225_1 WHERE no_in_series = \"29\"", "question": "How many episodes were listed as number 29 in the series?", "context": "CREATE TABLE table_22265225_1 (no_in_season VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(sp) FROM table_22265261_1 WHERE position = \"2nd\"", "question": "What was the Sp of the 2nd Position?", "context": "CREATE TABLE table_22265261_1 (sp VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(age) FROM table_22265261_1 WHERE sp = \"200/1\"", "question": "How old was the horse when the SP was 200/1?", "context": "CREATE TABLE table_22265261_1 (age VARCHAR, sp VARCHAR)"}, {"answer": "SELECT distance FROM table_22265261_1 WHERE position = \"11th\"", "question": "What was the distance for the 11th position?", "context": "CREATE TABLE table_22265261_1 (distance VARCHAR, position VARCHAR)"}, {"answer": "SELECT jockey FROM table_22265261_1 WHERE position = \"7th\"", "question": "Who was the jockey in 7th position?", "context": "CREATE TABLE table_22265261_1 (jockey VARCHAR, position VARCHAR)"}, {"answer": "SELECT distance FROM table_22265261_1 WHERE handicap__st_lb_ = \"11-2\"", "question": "What was the distance when the handicap was 11-2?", "context": "CREATE TABLE table_22265261_1 (distance VARCHAR, handicap__st_lb_ VARCHAR)"}, {"answer": "SELECT title FROM table_2226817_7 WHERE production_code = \"6.18\"", "question": "If the production code is 6.18, what was the episode title?", "context": "CREATE TABLE table_2226817_7 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2226817_7 WHERE original_air_date = \"January 19, 1992\"", "question": "If the original air date January 19, 1992, who was the episode directed by?", "context": "CREATE TABLE table_2226817_7 (directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_2226817_6 WHERE no_in_series = 84", "question": "What's the season number of the episode with series number 84?", "context": "CREATE TABLE table_2226817_6 (no_in_season INTEGER, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_2226817_6 WHERE written_by = \"Art Everett\"", "question": "How many season numbers are there for the episodes written by Art Everett?", "context": "CREATE TABLE table_2226817_6 (no_in_season VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_2226817_6 WHERE original_air_date = \"October 28, 1990\"", "question": "How many series numbers do the episodes originally aired on October 28, 1990?", "context": "CREATE TABLE table_2226817_6 (no_in_series VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_2226817_6 WHERE no_in_season = 13", "question": "What' the series number of the episode with season number 13?", "context": "CREATE TABLE table_2226817_6 (no_in_series INTEGER, no_in_season VARCHAR)"}, {"answer": "SELECT report FROM table_22298383_1 WHERE day = \"Sunday\" AND average_speed__mph_ = \"128.27\"", "question": "What was the report for the Sunday race where the winner had an average speed of 128.27 mph?", "context": "CREATE TABLE table_22298383_1 (report VARCHAR, day VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT day FROM table_22298383_1 WHERE laps = \"364\" AND driver = \"Cale Yarborough\"", "question": "On what day was the race that Cale Yarborough won in 364 laps?", "context": "CREATE TABLE table_22298383_1 (day VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_22298383_1 WHERE average_speed__mph_ = \"126.259\"", "question": "Who manufactured the car that won with an average speed of 126.259 mph?", "context": "CREATE TABLE table_22298383_1 (manufacturer VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT year FROM table_22298383_1 WHERE team = \"Leo Jackson Racing\"", "question": "What year did the Leo Jackson Racing team win?", "context": "CREATE TABLE table_22298383_1 (year VARCHAR, team VARCHAR)"}, {"answer": "SELECT owned_since FROM table_22329326_1 WHERE station = \"WLS-TV\"", "question": "When was the station WLS-TV owned since?", "context": "CREATE TABLE table_22329326_1 (owned_since VARCHAR, station VARCHAR)"}, {"answer": "SELECT market_rank_ & _city_of_license__market FROM table_22329326_1 WHERE station = \"KABC-TV\"", "question": "What market rank and city had the station KABC-TV?", "context": "CREATE TABLE table_22329326_1 (market_rank_ VARCHAR, _city_of_license__market VARCHAR, station VARCHAR)"}, {"answer": "SELECT MIN(owned_since) FROM table_22329326_1", "question": "What was the earliest year a station was owned since?", "context": "CREATE TABLE table_22329326_1 (owned_since INTEGER)"}, {"answer": "SELECT COUNT(share) FROM table_22353769_3 WHERE viewers__millions_ = \"3.62\"", "question": "How many episodes had 3.62 million viewers?", "context": "CREATE TABLE table_22353769_3 (share VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(us_air_date) FROM table_22353769_3 WHERE episode__number = 11", "question": "How many episodes have episode #11?", "context": "CREATE TABLE table_22353769_3 (us_air_date VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT COUNT(episode__number) FROM table_22353769_3 WHERE viewers__millions_ = \"3.63\"", "question": "How many epsidode(s) had 3.63 million viewers?", "context": "CREATE TABLE table_22353769_3 (episode__number VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT nation FROM table_22355_11 WHERE athlete = \"Sebastian Coe Category:Articles with hCards\"", "question": "What nation had the athlete sebastian coe category:articles with hcards?", "context": "CREATE TABLE table_22355_11 (nation VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_22355_11 WHERE athlete = \"Peter Snell Category:Articles with hCards\"", "question": "What rank did the nation with athlete peter snell category:articles with hcards have?", "context": "CREATE TABLE table_22355_11 (rank VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(nation) FROM table_22355_50 WHERE athlete = \"Shuhei Nishida Category:Articles with hCards\"", "question": "how many times was nation counted where athlete is shuhei nishida category:articles with hcards", "context": "CREATE TABLE table_22355_50 (nation VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_22355_50", "question": "What is the least number of silver medals won", "context": "CREATE TABLE table_22355_50 (silver INTEGER)"}, {"answer": "SELECT MAX(silver) FROM table_22355_71", "question": "How many silver medalist was won?", "context": "CREATE TABLE table_22355_71 (silver INTEGER)"}, {"answer": "SELECT league AS Cup FROM table_22357065_1 WHERE nation = \"Northern Ireland\"", "question": "Name the league cup for northern ireland", "context": "CREATE TABLE table_22357065_1 (league VARCHAR, nation VARCHAR)"}, {"answer": "SELECT start___utc__ FROM table_22385461_9 WHERE spacecraft = \"Shenzhou 7 EVA 1\"", "question": "If the spacecraft is the Shenzhou 7 Eva 1, what is the start (utc) date and time?", "context": "CREATE TABLE table_22385461_9 (start___utc__ VARCHAR, spacecraft VARCHAR)"}, {"answer": "SELECT spacecraft FROM table_22385461_9 WHERE start___utc__ = \"November 18, 2008 18:09\"", "question": "If the start (utc) is November 18, 2008 18:09, what is the name of the spacecraft?", "context": "CREATE TABLE table_22385461_9 (spacecraft VARCHAR, start___utc__ VARCHAR)"}, {"answer": "SELECT end__utc_ FROM table_22385461_6 WHERE spacecraft = \"STS-114 EVA 3\"", "question": "What is the end (UTC) for spacecraft STS-114 Eva 3?", "context": "CREATE TABLE table_22385461_6 (end__utc_ VARCHAR, spacecraft VARCHAR)"}, {"answer": "SELECT start___utc__ FROM table_22385461_6 WHERE end__utc_ = \"March 28, 2005, 11:31\"", "question": "What is the start date and time of the walk that ends March 28, 2005, 11:31?", "context": "CREATE TABLE table_22385461_6 (start___utc__ VARCHAR, end__utc_ VARCHAR)"}, {"answer": "SELECT points_classification FROM table_22464308_2 WHERE stage = 4", "question": "Which points classification has 4 as the stage?", "context": "CREATE TABLE table_22464308_2 (points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT malaysian_team_classification FROM table_22464308_2 WHERE points_classification = \"Mohd Nur Rizuan Zainal\"", "question": "Which malaysian team classification had mohd nur rizuan zainal as points classification?", "context": "CREATE TABLE table_22464308_2 (malaysian_team_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT team_classification FROM table_22464308_2 WHERE malaysian_team_classification = \"MNCF Continental Team\"", "question": "Which team classification has malaysian team classification of mncf continental team?", "context": "CREATE TABLE table_22464308_2 (team_classification VARCHAR, malaysian_team_classification VARCHAR)"}, {"answer": "SELECT term_ended FROM table_224672_2 WHERE term_began = \"January 3, 2007\"", "question": "When did the term end that began January 3, 2007?", "context": "CREATE TABLE table_224672_2 (term_ended VARCHAR, term_began VARCHAR)"}, {"answer": "SELECT term_began FROM table_224672_2 WHERE elected = \"N/A\"", "question": "When did the term began when the date of election is N/A?", "context": "CREATE TABLE table_224672_2 (term_began VARCHAR, elected VARCHAR)"}, {"answer": "SELECT term_ended FROM table_224672_2 WHERE term_began = \"December 4, 1978\"", "question": "When did the term end that began December 4, 1978?", "context": "CREATE TABLE table_224672_2 (term_ended VARCHAR, term_began VARCHAR)"}, {"answer": "SELECT term_began FROM table_224672_2 WHERE term_ended = \"January 3, 1995\"", "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 type FROM table_224672_2 WHERE term_ended = \"January 3, 2001\"", "question": "What branch of government was the term that ended on January 3, 2001?", "context": "CREATE TABLE table_224672_2 (type VARCHAR, term_ended VARCHAR)"}, {"answer": "SELECT position FROM table_22496344_1 WHERE home_town = \"Houston, TX\" AND high_school = \"Worthing\"", "question": "Where is the position when houston, tx is the hometown and worthing is the high school?", "context": "CREATE TABLE table_22496344_1 (position VARCHAR, home_town VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT high_school FROM table_22496344_1 WHERE year = \"Senior (RS)\"", "question": "Which highschool has senior (rs) for the year?", "context": "CREATE TABLE table_22496344_1 (high_school VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_22496344_1 WHERE home_town = \"Conroe, TX\"", "question": "What is the # when conroe, tx is the hometown?", "context": "CREATE TABLE table_22496344_1 (_number INTEGER, home_town VARCHAR)"}, {"answer": "SELECT MAX(weight) FROM table_22496344_1 WHERE _number = 20", "question": "What is the weight when 20 is the number?", "context": "CREATE TABLE table_22496344_1 (weight INTEGER, _number VARCHAR)"}, {"answer": "SELECT name FROM table_22496344_1 WHERE year = \"Senior\" AND _number < 10.0", "question": "What is the name when senior is the year with the # less than 10.0?", "context": "CREATE TABLE table_22496344_1 (name VARCHAR, year VARCHAR, _number VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_22496344_1 WHERE high_school = \"Worthing\"", "question": "What is the # for worthing high school?", "context": "CREATE TABLE table_22496344_1 (_number VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT COUNT(reason_for_change) FROM table_225094_4 WHERE successor = \"Jonathan Jennings\"", "question": "Name the reason for change for jonathan jennings", "context": "CREATE TABLE table_225094_4 (reason_for_change VARCHAR, successor VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_225094_4 WHERE reason_for_change = \"failure to elect\"", "question": "Name the date successor seated for failure to elect", "context": "CREATE TABLE table_225094_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT successor FROM table_225198_3 WHERE reason_for_change = \"James Noble died in previous Congress\"", "question": "Name the successor for james noble died in previous congress", "context": "CREATE TABLE table_225198_3 (successor VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_225198_3 WHERE vacator = \"Isaac D. Barnard (J)\"", "question": "Name the state class for isaac d. barnard (j)", "context": "CREATE TABLE table_225198_3 (state__class_ VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT successor FROM table_225205_4 WHERE reason_for_change = \"Died November 11, 1845\"", "question": "Who is the successor when the reason for change is died November 11, 1845?", "context": "CREATE TABLE table_225205_4 (successor VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT COUNT(date_successor_seated) FROM table_225205_4 WHERE district = \"New Jersey 2nd\"", "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 best_male_artist FROM table_22546460_4 WHERE best_male_mc = \"Bankie Travolta\"", "question": "Who was the Best Male Artist where Bankie Travolta won the Best Male MC?", "context": "CREATE TABLE table_22546460_4 (best_male_artist VARCHAR, best_male_mc VARCHAR)"}, {"answer": "SELECT best_male_mc FROM table_22546460_4 WHERE best_male_lyricist = \"Best Album\"", "question": "Who was the Best Male MC if Best Album won the Best Male Lyricist?", "context": "CREATE TABLE table_22546460_4 (best_male_mc VARCHAR, best_male_lyricist VARCHAR)"}, {"answer": "SELECT best_male_lyricist FROM table_22546460_4 WHERE best_male_record = \"Neshia Nee\"", "question": "Who was the Best Male Lyricist if Neshia Nee won the Best Male Record?", "context": "CREATE TABLE table_22546460_4 (best_male_lyricist VARCHAR, best_male_record VARCHAR)"}, {"answer": "SELECT best_female_artist FROM table_22546460_4 WHERE best_male_lyricist = \"Best R&B Contributor\"", "question": "Who won the Best Female Artist where Best R&B Contributor won the Best Male Lyricist?", "context": "CREATE TABLE table_22546460_4 (best_female_artist VARCHAR, best_male_lyricist VARCHAR)"}, {"answer": "SELECT best_female_artist FROM table_22546460_4 WHERE best_male_artist = \"Best Lyrical Record\"", "question": "What won the Best Female Artist if Best Lyrical Record won the Best Male Artist?", "context": "CREATE TABLE table_22546460_4 (best_female_artist VARCHAR, best_male_artist VARCHAR)"}, {"answer": "SELECT best_female_artist FROM table_22546460_4 WHERE best_female_lyricist = \"People's Male MC\"", "question": "What won the Best Female Artist if People's Male MC won the Best Female Lyricist?", "context": "CREATE TABLE table_22546460_4 (best_female_artist VARCHAR, best_female_lyricist VARCHAR)"}, {"answer": "SELECT MIN(states_contested) FROM table_22582663_1 WHERE party_name = \"Apna Dal\"", "question": "What is the lowest number of states contested under apna dal?", "context": "CREATE TABLE table_22582663_1 (states_contested INTEGER, party_name VARCHAR)"}, {"answer": "SELECT MIN(forfeited_in_seats) FROM table_22582663_1 WHERE seats_won = 19", "question": "Where 19 seats were won, what was the minimum number of forfeited seats?", "context": "CREATE TABLE table_22582663_1 (forfeited_in_seats INTEGER, seats_won VARCHAR)"}, {"answer": "SELECT seats_contested FROM table_22582663_1 WHERE party_name = \"Akhil Bharatiya Rashtriya Azad Hind Party\"", "question": "How many akhil bharatiya rashtriya azad hind party seats were contested?", "context": "CREATE TABLE table_22582663_1 (seats_contested VARCHAR, party_name VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_22597626_1", "question": "When was John McEnroe's minimum year?", "context": "CREATE TABLE table_22597626_1 (year INTEGER)"}, {"answer": "SELECT score_in_the_final FROM table_22597626_1 WHERE championship = \"US Open\"", "question": "What were the US Open's final scores?", "context": "CREATE TABLE table_22597626_1 (score_in_the_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT partner FROM table_2259502_2 WHERE score = \"7-5, 2-6, [6-10]\"", "question": "Who were the partners in games where the score was 7-5, 2-6, [6-10]?", "context": "CREATE TABLE table_2259502_2 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_2259502_2 WHERE championship = \"Tokyo\"", "question": "Who were the opponents in the Tokyo championships?", "context": "CREATE TABLE table_2259502_2 (opponents VARCHAR, championship VARCHAR)"}, {"answer": "SELECT partner FROM table_2259502_2 WHERE score = \"1-6, 2-6\"", "question": "Who were the partners in games where the score was 1-6, 2-6?", "context": "CREATE TABLE table_2259502_2 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT partner FROM table_2259502_2 WHERE year = 2012", "question": "Who were the partners in 2012?", "context": "CREATE TABLE table_2259502_2 (partner VARCHAR, year VARCHAR)"}, {"answer": "SELECT outcome FROM table_2259502_2 WHERE score = \"7-5, 2-6, [6-10]\"", "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 surface FROM table_22597626_2 WHERE partner = \"Fleming\" AND opponents_in_the_final = \"Hewitt McMillan\"", "question": "If the opponents in the final is Hewitt McMillan and the partner is Fleming, what is the surface?", "context": "CREATE TABLE table_22597626_2 (surface VARCHAR, partner VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_22597626_2 WHERE partner = \"Woodforde\"", "question": "What is the final score if the partner is Woodforde?", "context": "CREATE TABLE table_22597626_2 (score_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_22597626_2 WHERE outcome = \"Runner-up\" AND championship = \"US Open\"", "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 surface FROM table_22597626_2 WHERE opponents_in_the_final = \"Hewitt McMillan\"", "question": "What is the surface made of if the opponent in the final is Hewitt McMillan?", "context": "CREATE TABLE table_22597626_2 (surface VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_22597626_2 WHERE championship = \"US Open\" AND year = 1979", "question": "What is the surface made of if the year is 1979 and the championship is US Open?", "context": "CREATE TABLE table_22597626_2 (surface VARCHAR, championship VARCHAR, year VARCHAR)"}, {"answer": "SELECT ticket___office FROM table_22607062_1 WHERE secretary_of_state = \"Orville Preston\"", "question": "Name the ticket/office for orville preston", "context": "CREATE TABLE table_22607062_1 (ticket___office VARCHAR, secretary_of_state VARCHAR)"}, {"answer": "SELECT comptroller FROM table_22607062_1 WHERE ticket___office = \"Republican\"", "question": "Name the comptroller for republican", "context": "CREATE TABLE table_22607062_1 (comptroller VARCHAR, ticket___office VARCHAR)"}, {"answer": "SELECT comptroller FROM table_22607062_1 WHERE ticket___office = \"Prohibition\"", "question": "Name the comptroller for office of prohibition", "context": "CREATE TABLE table_22607062_1 (comptroller VARCHAR, ticket___office VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_22640051_3 WHERE date_of_appointment = \"8 July 2009\"", "question": "Name the replaced by for 8 july 2009", "context": "CREATE TABLE table_22640051_3 (replaced_by VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT COUNT(replaced_by) FROM table_22640051_3 WHERE date_of_appointment = \"13 June 2009\"", "question": "Name the total number of replaced by for 13 june 2009", "context": "CREATE TABLE table_22640051_3 (replaced_by VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_22640051_3 WHERE outgoing_manager = \"Manuel Pellegrini\"", "question": "Name the date of vacancy for manuel pellegrini", "context": "CREATE TABLE table_22640051_3 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT free_dance__fd_ FROM table_22644589_4 WHERE compulsory_dance__cd_ = \"15.99\"", "question": "What was the free dance score in the event where compulsory dance score was 15.99? ", "context": "CREATE TABLE table_22644589_4 (free_dance__fd_ VARCHAR, compulsory_dance__cd_ VARCHAR)"}, {"answer": "SELECT COUNT(original_dance__od_) FROM table_22644589_4 WHERE compulsory_dance__cd_ = \"20.03\"", "question": "How many original dance scores are listed in the event where the compulsory dance was 20.03? ", "context": "CREATE TABLE table_22644589_4 (original_dance__od_ VARCHAR, compulsory_dance__cd_ VARCHAR)"}, {"answer": "SELECT event FROM table_22644589_4 WHERE compulsory_dance__cd_ = \"23.75\"", "question": "In what even was the compulsory dance scored 23.75? ", "context": "CREATE TABLE table_22644589_4 (event VARCHAR, compulsory_dance__cd_ VARCHAR)"}, {"answer": "SELECT event FROM table_22644589_4 WHERE compulsory_dance__cd_ = \"28.12\"", "question": "In what event was the compulsory dance score 28.12? ", "context": "CREATE TABLE table_22644589_4 (event VARCHAR, compulsory_dance__cd_ VARCHAR)"}, {"answer": "SELECT year FROM table_22654139_3 WHERE reporters = \"Lesley Visser and Robin Roberts\"", "question": "What is every year when the reporters were Lesley Visser and Robin Roberts?", "context": "CREATE TABLE table_22654139_3 (year VARCHAR, reporters VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_22654139_3 WHERE reporters = \"Lesley Visser and Robin Roberts\"", "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 driver FROM table_2266762_1 WHERE team = \"Richard Childress Racing\" AND race_time = \"2:58:22\"", "question": "Who was the driver for the Richard Childress Racing team in the race with a time of 2:58:22?", "context": "CREATE TABLE table_2266762_1 (driver VARCHAR, team VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_2266762_1 WHERE average_speed__mph_ = \"91.033\"", "question": "On how many dates was the average speed of the race 91.033 MPH?", "context": "CREATE TABLE table_2266762_1 (date VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT driver FROM table_2266762_1 WHERE race_time = \"3:04:09\"", "question": "Who was the winning driver in the race that was 3:04:09 long? ", "context": "CREATE TABLE table_2266762_1 (driver VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT team FROM table_22669044_10 WHERE high_points = \"Hakim Warrick (14)\"", "question": "Who was the opponent in the game in which Hakim Warrick (14) did the most high points?", "context": "CREATE TABLE table_22669044_10 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_22669044_10 WHERE high_rebounds = \"Brad Miller (7)\"", "question": "What's the record in the game in which Brad Miller (7) did the high rebounds?", "context": "CREATE TABLE table_22669044_10 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_22669044_10 WHERE record = \"31-29\"", "question": "What's the score of the game with 31-29 record?", "context": "CREATE TABLE table_22669044_10 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT country FROM table_22667773_8 WHERE name = \"Gerrard\"", "question": "Name the country for gerrard", "context": "CREATE TABLE table_22667773_8 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUnT AS eu FROM table_22667773_8 WHERE name = \"Quinn\"", "question": "Name the total number of eu for quinn", "context": "CREATE TABLE table_22667773_8 (COUnT VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_22669044_8 WHERE score = \"W 115\u2013104 (OT)\"", "question": "Name the team for  w 115\u2013104 (ot)", "context": "CREATE TABLE table_22669044_8 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_22669044_8 WHERE location_attendance = \"United Center 18,838\"", "question": "Name the number of record for united center 18,838", "context": "CREATE TABLE table_22669044_8 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_22669044_9 WHERE location_attendance = \"United Center 22,147\"", "question": "Name the team for united center 22,147", "context": "CREATE TABLE table_22669044_9 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_22669044_9 WHERE team = \"New York\"", "question": "Name the high rebounds for new york", "context": "CREATE TABLE table_22669044_9 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_22669044_9 WHERE location_attendance = \"United Center 19,335\"", "question": "Name the number of high rebounds for united center 19,335", "context": "CREATE TABLE table_22669044_9 (high_rebounds VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_22669044_9 WHERE high_assists = \"Kirk Hinrich , Derrick Rose , John Salmons (6)\"", "question": "Name the team for kirk hinrich , derrick rose , john salmons (6)", "context": "CREATE TABLE table_22669044_9 (team VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_points FROM table_22669044_9 WHERE record = \"31-27\"", "question": "Name the high points 31-27", "context": "CREATE TABLE table_22669044_9 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_22670216_1 WHERE winning_driver = \"Bill Vukovich II\"", "question": "What is the location is the winning driver is Bill Vukovich II?", "context": "CREATE TABLE table_22670216_1 (location VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT location FROM table_22670216_1 WHERE winning_driver = \"Wally Dallenbach\" AND track = \"Wisconsin State Fair Park Speedway\"", "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 COUNT(rnd) FROM table_22670216_1 WHERE location = \"Brooklyn, Michigan\" AND pole_position = \"Bobby Unser\"", "question": "If the location is Brooklyn, Michigan and the pole position is Bobby Unser, what is the RND total number?", "context": "CREATE TABLE table_22670216_1 (rnd VARCHAR, location VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT COUNT(rnd) FROM table_22670216_1 WHERE track = \"Ontario Motor Speedway\" AND pole_position = \"Johnny Rutherford\"", "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 laps FROM table_2267857_1 WHERE date = \"October 26\"", "question": "Name the laps of october 26", "context": "CREATE TABLE table_2267857_1 (laps VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_2267857_1 WHERE year = 2006", "question": "Name the date for 2006", "context": "CREATE TABLE table_2267857_1 (date VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_2267857_1 WHERE driver = \"Dick Hutcherson\"", "question": "Name the number of year for dick hutcherson", "context": "CREATE TABLE table_2267857_1 (year VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(report) FROM table_2267857_1 WHERE date = \"July 23\"", "question": "Name the total number for report july 23", "context": "CREATE TABLE table_2267857_1 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT party FROM table_22756549_1 WHERE margin = 105731", "question": "What party won with a margin of 105731?", "context": "CREATE TABLE table_22756549_1 (party VARCHAR, margin VARCHAR)"}, {"answer": "SELECT party AS a FROM table_22756549_1 WHERE winner = \"K. Anbazhagan\"", "question": "What party is the winner K. Anbazhagan from?", "context": "CREATE TABLE table_22756549_1 (party VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(party) AS a FROM table_22756549_1 WHERE winner = \"M. Gounder\"", "question": "How many times did M. Gounder win for Party A?", "context": "CREATE TABLE table_22756549_1 (party VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_22756549_1 WHERE runner_up_a = \"V. A. Muthiah\"", "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 party FROM table_22756549_1 WHERE runner_up_a = \"A. Krishnaswamy\"", "question": "What party was the winner when A. Krishnaswamy was the runner-up?", "context": "CREATE TABLE table_22756549_1 (party VARCHAR, runner_up_a VARCHAR)"}, {"answer": "SELECT runner_up_a FROM table_22756549_1 WHERE constituency = \"Nagapattinam\"", "question": "Who was the runner up for the Nagapattinam constituency?", "context": "CREATE TABLE table_22756549_1 (runner_up_a VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT runner_up_a FROM table_22757733_4 WHERE winner = \"Sankar Adhi\"", "question": "who ended runner-up to sankar adhi?", "context": "CREATE TABLE table_22757733_4 (runner_up_a VARCHAR, winner VARCHAR)"}, {"answer": "SELECT party AS a FROM table_22757733_4 WHERE runner_up_a = \"K. Annamalai\"", "question": "which was k. annamalai\u00b4s party a?", "context": "CREATE TABLE table_22757733_4 (party VARCHAR, runner_up_a VARCHAR)"}, {"answer": "SELECT population FROM table_22815568_7 WHERE market_income_per_capita = \"$17,362\"", "question": "What is the population in those place where the market income per capita is $17,362?", "context": "CREATE TABLE table_22815568_7 (population VARCHAR, market_income_per_capita VARCHAR)"}, {"answer": "SELECT COUNT(unemployment_rate) FROM table_22815568_7 WHERE market_income_per_capita = \"$16,981\"", "question": "What is the unemployment rate in those places where the market income per capita is $16,981?", "context": "CREATE TABLE table_22815568_7 (unemployment_rate VARCHAR, market_income_per_capita VARCHAR)"}, {"answer": "SELECT status FROM table_22815568_7 WHERE poverty_rate = \"8.6%\"", "question": "What is the status in those places where the poverty rate is 8.6%?", "context": "CREATE TABLE table_22815568_7 (status VARCHAR, poverty_rate VARCHAR)"}, {"answer": "SELECT unemployment_rate FROM table_22815568_7 WHERE status = \"Transitional\" AND county = \"Alexander\"", "question": "What is the unemployment rate in those places in Alexander county whose status is transitional?", "context": "CREATE TABLE table_22815568_7 (unemployment_rate VARCHAR, status VARCHAR, county VARCHAR)"}, {"answer": "SELECT population FROM table_22815568_7 WHERE county = \"McDowell\"", "question": "What is the population of the country of McDowell?", "context": "CREATE TABLE table_22815568_7 (population VARCHAR, county VARCHAR)"}, {"answer": "SELECT county FROM table_22815568_7 WHERE unemployment_rate = \"5.8%\" AND market_income_per_capita = \"$22,866\"", "question": "In what counties is the unemployment rate 5.8% and the market income per capita is $22,866?", "context": "CREATE TABLE table_22815568_7 (county VARCHAR, unemployment_rate VARCHAR, market_income_per_capita VARCHAR)"}, {"answer": "SELECT partnering FROM table_22825058_23 WHERE round = \"SF\"", "question": "Name the partnering for round sf", "context": "CREATE TABLE table_22825058_23 (partnering VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_22825058_23 WHERE against = \"The Netherlands\"", "question": "Name the total number of round for against the netherlands", "context": "CREATE TABLE table_22825058_23 (round VARCHAR, against VARCHAR)"}, {"answer": "SELECT round FROM table_22825058_23 WHERE opponents = \"John Van Lottum Martin Verkerk\"", "question": "Name the round for john van lottum martin verkerk", "context": "CREATE TABLE table_22825058_23 (round VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT w_l FROM table_22825058_23 WHERE against = \"Czech Republic\"", "question": "Name the w/l for czech republic", "context": "CREATE TABLE table_22825058_23 (w_l VARCHAR, against VARCHAR)"}, {"answer": "SELECT result FROM table_22825058_23 WHERE opponents = \"Ji\u0159\u00ed Nov\u00e1k Radek \u0160t\u011bp\u00e1nek\"", "question": "Name the result for ji\u0159\u00ed nov\u00e1k radek \u0161t\u011bp\u00e1nek", "context": "CREATE TABLE table_22825058_23 (result VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT tournament_venue__city_ FROM table_22849575_6 WHERE conference = \"Big Sky conference\"", "question": "Name the tournament venue for big sky conference", "context": "CREATE TABLE table_22849575_6 (tournament_venue__city_ VARCHAR, conference VARCHAR)"}, {"answer": "SELECT COUNT(conference) AS Tournament FROM table_22849575_6 WHERE tournament_winner = \"James Madison\"", "question": "Name the number of conference tournament for james madison", "context": "CREATE TABLE table_22849575_6 (conference VARCHAR, tournament_winner VARCHAR)"}, {"answer": "SELECT team FROM table_22848931_3 WHERE replaced_by = \"Arif Asadov\"", "question": "Name the team for arif asadov", "context": "CREATE TABLE table_22848931_3 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_22848931_3 WHERE date_of_vacancy = \"1 December 2009\"", "question": "Name the manner of departure for 1 december 2009", "context": "CREATE TABLE table_22848931_3 (manner_of_departure VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT COUNT(outgoing_manager) FROM table_22848931_3 WHERE date_of_vacancy = \"10 June 2009\"", "question": "Name the outgoing manager for 10 june 2009", "context": "CREATE TABLE table_22848931_3 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT atlantic_europe FROM table_22860_1 WHERE central_europe = \"Wisconsin Stage\"", "question": "What is every entry for Atlantic Europe when Central Europe is Wisconsin stage?", "context": "CREATE TABLE table_22860_1 (atlantic_europe VARCHAR, central_europe VARCHAR)"}, {"answer": "SELECT COUNT(maghreb) FROM table_22860_1 WHERE mediterranean_europe = \"Siciliense\"", "question": "How many values for Maghreb with Mediterranean Europe is Siciliense?", "context": "CREATE TABLE table_22860_1 (maghreb VARCHAR, mediterranean_europe VARCHAR)"}, {"answer": "SELECT atlantic_europe FROM table_22860_1 WHERE age__before_ = \"10,000 years\"", "question": "What is the Atlantic Europe when age is 10,000 years?", "context": "CREATE TABLE table_22860_1 (atlantic_europe VARCHAR, age__before_ VARCHAR)"}, {"answer": "SELECT america FROM table_22860_1 WHERE atlantic_europe = \"Hoxniense\"", "question": "What is every entry for America when Atlantic Europe is Hoxniense?", "context": "CREATE TABLE table_22860_1 (america VARCHAR, atlantic_europe VARCHAR)"}, {"answer": "SELECT age__before_ FROM table_22860_1 WHERE maghreb = \"Maarifiense\"", "question": "What are all ages for Maghreb is Maarifiense?", "context": "CREATE TABLE table_22860_1 (age__before_ VARCHAR, maghreb VARCHAR)"}, {"answer": "SELECT MIN(opp_points) FROM table_22860990_3 WHERE record = \"6-2\"", "question": "How many points did the opponents with a 6-2 record against the Spartans score?", "context": "CREATE TABLE table_22860990_3 (opp_points INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_22860990_3 WHERE spartans_points = 73", "question": "Against whom did the Spartans score 73 points?", "context": "CREATE TABLE table_22860990_3 (opponent VARCHAR, spartans_points VARCHAR)"}, {"answer": "SELECT high_points FROM table_22883210_5 WHERE game = 5", "question": "Who had highest points in game 5?", "context": "CREATE TABLE table_22883210_5 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_22883210_8 WHERE date = \"February 24\"", "question": "What was the final score of the game held on February 24?", "context": "CREATE TABLE table_22883210_8 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_22883210_8 WHERE date = \"February 4\"", "question": "Who was the opponent in the game held on February 4?", "context": "CREATE TABLE table_22883210_8 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT citation FROM table_22901612_2 WHERE region = \"Southern District of Texas\"", "question": "If the region is the Southern district of Texas, what is the citation?", "context": "CREATE TABLE table_22901612_2 (citation VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_22901612_2 WHERE chief_judge = \"Jeffrey L. Viken\"", "question": "If the chief judge is Jeffrey L. Viken, 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\"", "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 title FROM table_22904707_1 WHERE us_viewers__million_ = \"14.52\"", "question": "What was the name of the episode that had 14.52 viewers?", "context": "CREATE TABLE table_22904707_1 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_22904707_1 WHERE no = 63", "question": "How many million viewers did episode number 63 have?", "context": "CREATE TABLE table_22904707_1 (us_viewers__million_ VARCHAR, no VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_22904707_1 WHERE no = 52", "question": "What number in the season was episode 52 in the series?", "context": "CREATE TABLE table_22904707_1 (_number INTEGER, no VARCHAR)"}, {"answer": "SELECT metropolitan_area FROM table_22916979_2 WHERE rank = 60", "question": "which area has a rank of 60?", "context": "CREATE TABLE table_22916979_2 (metropolitan_area VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(population__2000_census_) FROM table_22916979_2 WHERE census_designated_place = \"Westmont\"", "question": "what is the total number of population where census designated place is westmont?", "context": "CREATE TABLE table_22916979_2 (population__2000_census_ VARCHAR, census_designated_place VARCHAR)"}, {"answer": "SELECT COUNT(census_designated_place) FROM table_22916979_2 WHERE population__2000_census_ = 10581", "question": "what is the total number of census designated places with a population of 10581?", "context": "CREATE TABLE table_22916979_2 (census_designated_place VARCHAR, population__2000_census_ VARCHAR)"}, {"answer": "SELECT MAX(number_of_contestants) FROM table_22951646_1", "question": "Name the most number of contestants", "context": "CREATE TABLE table_22951646_1 (number_of_contestants INTEGER)"}, {"answer": "SELECT premiere FROM table_22951646_1 WHERE number_of_episodes = 8", "question": "Name the premiere for 8 episodes", "context": "CREATE TABLE table_22951646_1 (premiere VARCHAR, number_of_episodes VARCHAR)"}, {"answer": "SELECT league_finish FROM table_22962745_12 WHERE w = 11", "question": "Name the league finish for w being 11", "context": "CREATE TABLE table_22962745_12 (league_finish VARCHAR, w VARCHAR)"}, {"answer": "SELECT overall_record FROM table_22993636_2 WHERE team = \"LSU\"", "question": "What's LSU's overall record/", "context": "CREATE TABLE table_22993636_2 (overall_record VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(sec_wins) FROM table_22993636_2 WHERE overall_record = \"30-4\"", "question": "How many different SEC Win counts does the team with an overall record of 30-4 have?", "context": "CREATE TABLE table_22993636_2 (sec_wins VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT percentage FROM table_22993636_2 WHERE team = \"Auburn\"", "question": "What's Auburn's percentage?", "context": "CREATE TABLE table_22993636_2 (percentage VARCHAR, team VARCHAR)"}, {"answer": "SELECT overall_record FROM table_22993636_2 WHERE road_record = \"4-3\"", "question": "What's the overall record of the team with 4-3 road record?", "context": "CREATE TABLE table_22993636_2 (overall_record VARCHAR, road_record VARCHAR)"}, {"answer": "SELECT home_record FROM table_22993636_2 WHERE percentage = \".168\"", "question": "What's the home record of the team with percentage of .168?", "context": "CREATE TABLE table_22993636_2 (home_record VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT avg_speed FROM table_23018775_3 WHERE lap_four = \"22.9049\"", "question": "What was the average speed where lap four's time was 22.9049?", "context": "CREATE TABLE table_23018775_3 (avg_speed VARCHAR, lap_four VARCHAR)"}, {"answer": "SELECT COUNT(lap_two) FROM table_23018775_3 WHERE name = \"Marco Andretti\"", "question": "How many lap two's did marco andretti do?", "context": "CREATE TABLE table_23018775_3 (lap_two VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(_number_number) FROM table_23018775_3 WHERE team = \"team 3G\"", "question": "What is tthe lowest number on team 3g?", "context": "CREATE TABLE table_23018775_3 (_number_number INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(pos) FROM table_23018775_3 WHERE total_time = \"1:30.4135\"", "question": "How many positions have a total time of 1:30.4135?", "context": "CREATE TABLE table_23018775_3 (pos VARCHAR, total_time VARCHAR)"}, {"answer": "SELECT pos FROM table_23018775_3 WHERE lap_two = \"22.7290\"", "question": "Which positions have a lap two time of 22.7290?", "context": "CREATE TABLE table_23018775_3 (pos VARCHAR, lap_two VARCHAR)"}, {"answer": "SELECT avg_speed FROM table_23018775_3 WHERE total_time = \"1:30.4842\"", "question": "What was the average speed where the total time was 1:30.4842?", "context": "CREATE TABLE table_23018775_3 (avg_speed VARCHAR, total_time VARCHAR)"}, {"answer": "SELECT poles FROM table_2308381_2 WHERE avg_start = \"4.7\"", "question": "Name the poles for avg start being 4.7", "context": "CREATE TABLE table_2308381_2 (poles VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT avg_finish FROM table_2308381_2 WHERE position = \"70th\"", "question": "Name the avg finish for position of 70th", "context": "CREATE TABLE table_2308381_2 (avg_finish VARCHAR, position VARCHAR)"}, {"answer": "SELECT year FROM table_2308381_2 WHERE starts = 15", "question": "Name the year for 15 starts", "context": "CREATE TABLE table_2308381_2 (year VARCHAR, starts VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_23097214_1 WHERE season__number = 3", "question": "How many directors directed episode 3 of the season?", "context": "CREATE TABLE table_23097214_1 (directed_by VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT written_by FROM table_23097214_1 WHERE directed_by = \"Ken Whittingham\"", "question": "Who wrote the episode directed by Ken Whittingham?", "context": "CREATE TABLE table_23097214_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_23097214_1 WHERE series__number = 153", "question": "What is the production code for Episode 153 in the series?", "context": "CREATE TABLE table_23097214_1 (production_code INTEGER, series__number VARCHAR)"}, {"answer": "SELECT title FROM table_23114705_3 WHERE no_in_season = 13", "question": "What is the name of the episode where the season number is 13?", "context": "CREATE TABLE table_23114705_3 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23114705_3 WHERE written_by = \"Tim Balme\"", "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 airdate FROM table_23122988_1 WHERE headliner = \"Rhod Gilbert\"", "question": "What date did the show air when Rhod Gilbert was the headliner?", "context": "CREATE TABLE table_23122988_1 (airdate VARCHAR, headliner VARCHAR)"}, {"answer": "SELECT airdate FROM table_23122988_1 WHERE headliner = \"Sean Lock\"", "question": "What date did the show air when Sean Lock was the headliner?", "context": "CREATE TABLE table_23122988_1 (airdate VARCHAR, headliner VARCHAR)"}, {"answer": "SELECT comedians FROM table_23122988_1 WHERE episode = \"1x03\"", "question": "Who were the comedians on episode 1x03?", "context": "CREATE TABLE table_23122988_1 (comedians VARCHAR, episode VARCHAR)"}, {"answer": "SELECT episode FROM table_23122988_1 WHERE location = \"Belfast Waterfront Hall\"", "question": "What episode took place in Belfast Waterfront Hall?", "context": "CREATE TABLE table_23122988_1 (episode VARCHAR, location VARCHAR)"}, {"answer": "SELECT comedians FROM table_23122988_1 WHERE location = \"Birmingham Hippodrome\"", "question": "Who were the comedians during the episode located in Birmingham Hippodrome?", "context": "CREATE TABLE table_23122988_1 (comedians VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_23141790_1 WHERE original_title = \"Vesni\u010dko m\u00e1 st\u0159ediskov\u00e1\"", "question": "Name the total number of director for vesni\u010dko m\u00e1 st\u0159ediskov\u00e1", "context": "CREATE TABLE table_23141790_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT COUNT(growth_rate) FROM table_231623_3 WHERE density_per_kilometer = 1087", "question": "Name the growth rate for density of 1087", "context": "CREATE TABLE table_231623_3 (growth_rate VARCHAR, density_per_kilometer VARCHAR)"}, {"answer": "SELECT MAX(sex_ratio) FROM table_231623_3 WHERE population = 4773138", "question": "Name the sex ratio lowest for population 4773138", "context": "CREATE TABLE table_231623_3 (sex_ratio INTEGER, population VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23177573_1 WHERE rank__week_ = 21", "question": "What is the original air date of the episode that had a week ranking of 21?", "context": "CREATE TABLE table_23177573_1 (original_air_date VARCHAR, rank__week_ VARCHAR)"}, {"answer": "SELECT rank__week_ FROM table_23177573_1 WHERE written_by = \"Russel Friend & Garrett Lerner\"", "question": "What was the week ranking of the episode written by Russel Friend & Garrett Lerner? ", "context": "CREATE TABLE table_23177573_1 (rank__week_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT rank__week_ FROM table_23177573_1 WHERE written_by = \"Thomas L. Moran\" AND directed_by = \"Andrew Bernstein\"", "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 position FROM table WHERE player = Chivu", "question": "Name the position for chivu", "context": "CREATE TABLE table (position VARCHAR, player VARCHAR, Chivu VARCHAR)"}, {"answer": "SELECT COUNT(r) FROM table WHERE coppa_italia > 1.0", "question": "Name the total number of r for coppa italia larger than 1.0", "context": "CREATE TABLE table (r VARCHAR, coppa_italia INTEGER)"}, {"answer": "SELECT oricon_albums_chart FROM table_23180638_1 WHERE debut_sales__copies_ > 339333.011497678", "question": "Which charts had debut sales of of more than 339333.011497678?", "context": "CREATE TABLE table_23180638_1 (oricon_albums_chart VARCHAR, debut_sales__copies_ INTEGER)"}, {"answer": "SELECT COUNT(peak_position) FROM table_23180638_1 WHERE oricon_albums_chart = \"Weekly Charts\"", "question": "How many peak positions were there on the weekly charts?", "context": "CREATE TABLE table_23180638_1 (peak_position VARCHAR, oricon_albums_chart VARCHAR)"}, {"answer": "SELECT peak_position FROM table_23180638_1 WHERE oricon_albums_chart = \"Daily Charts\"", "question": "How many peak positions were there on the daily charts?", "context": "CREATE TABLE table_23180638_1 (peak_position VARCHAR, oricon_albums_chart VARCHAR)"}, {"answer": "SELECT oricon_albums_chart FROM table_23180638_1 WHERE debut_sales__copies_ = 101976", "question": "Which charts had debut sales of 101976?", "context": "CREATE TABLE table_23180638_1 (oricon_albums_chart VARCHAR, debut_sales__copies_ VARCHAR)"}, {"answer": "SELECT score FROM table_23186738_10 WHERE team = \"Milwaukee\"", "question": "What was the score when playing Milwaukee?", "context": "CREATE TABLE table_23186738_10 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23186738_10 WHERE record = \"27-54\"", "question": "Who had the highest rebounds in the game where the record was 27-54?", "context": "CREATE TABLE table_23186738_10 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_23184448_3 WHERE opponent = \"Niagara\"", "question": "When did the team play against Niagara?", "context": "CREATE TABLE table_23184448_3 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(opp_points) FROM table_23184448_3 WHERE record = \"6-2\"", "question": "How many points did the opposing team get in the game with 6-2 record?", "context": "CREATE TABLE table_23184448_3 (opp_points INTEGER, record VARCHAR)"}, {"answer": "SELECT date FROM table_23184448_3 WHERE cyclones_points = 46", "question": "When did the Cyclones get 46 points?", "context": "CREATE TABLE table_23184448_3 (date VARCHAR, cyclones_points VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_23184448_3 WHERE location = \"Cedar Falls, Iowa\"", "question": "On how many different dates did the team play a game in Cedar Falls, Iowa?", "context": "CREATE TABLE table_23184448_3 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_23186738_9 WHERE location_attendance = \"Air Canada Centre 18,736\"", "question": "Name the date for air canada centre 18,736", "context": "CREATE TABLE table_23186738_9 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT score FROM table_23186738_9 WHERE team = \"Chicago\"", "question": "Name the score for chicago", "context": "CREATE TABLE table_23186738_9 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_23186738_9 WHERE date = \"March 20\"", "question": "Name the least game for march 20", "context": "CREATE TABLE table_23186738_9 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_23186738_9 WHERE score = \"L 93\u2013109 (OT)\"", "question": "Name the least game for score of l 93\u2013109 (ot)", "context": "CREATE TABLE table_23186738_9 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT date FROM table_23211041_7 WHERE location_attendance = \"Verizon Center 20,173\"", "question": "If the location attendance is the Verizon Center 20,173, what is the date?", "context": "CREATE TABLE table_23211041_7 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team_captain FROM table_23214833_1 WHERE capacity = 17800", "question": "Who's captain of the team whose stadium has a capacity of 17800 people?", "context": "CREATE TABLE table_23214833_1 (team_captain VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT COUNT(team_captain) FROM table_23214833_1 WHERE club = \"Sliven 2000\"", "question": "How many different team captains does the club Sliven 2000 have?", "context": "CREATE TABLE table_23214833_1 (team_captain VARCHAR, club VARCHAR)"}, {"answer": "SELECT team_captain FROM table_23214833_1 WHERE stadium = \"Gradski Stadion\"", "question": "Who's the captain of the team whose stadium is Gradski Stadion?", "context": "CREATE TABLE table_23214833_1 (team_captain VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT stadium FROM table_23214833_1 WHERE capacity = 13800", "question": "What stadium has capacity for 13800?", "context": "CREATE TABLE table_23214833_1 (stadium VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT capacity FROM table_23214833_1 WHERE team_captain = \"Vasil Vasilev\"", "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 season FROM table_23224961_2 WHERE mittelfranken_s\u00fcd = \"ASV N\u00fcrnberg-S\u00fcd\"", "question": "When  asv n\u00fcrnberg-s\u00fcd is the  mittelfranken s\u00fcd what is the season?", "context": "CREATE TABLE table_23224961_2 (season VARCHAR, mittelfranken_s\u00fcd VARCHAR)"}, {"answer": "SELECT season FROM table_23224961_2 WHERE oberfranken_west = \"SV Neuses\"", "question": "When sv neuses is the oberfranken west what is the season?", "context": "CREATE TABLE table_23224961_2 (season VARCHAR, oberfranken_west VARCHAR)"}, {"answer": "SELECT COUNT(unterfranken_west) FROM table_23224961_2 WHERE oberfranken_ost = \"Wacker Marktredwitz\"", "question": "When wacker marktredwitz is the oberfranken ost how many unterfranken wests are there?", "context": "CREATE TABLE table_23224961_2 (unterfranken_west VARCHAR, oberfranken_ost VARCHAR)"}, {"answer": "SELECT mittelfranken_s\u00fcd FROM table_23224961_2 WHERE unterfranken_west = \"Alemannia Haibach\" AND mittelfranken_nord = \"ATSV Erlangen\"", "question": "When atsv erlangen is the mittelfranken nord and alemannia haibach is the unterfranken west what is the mittelfranken s\u00fcd?", "context": "CREATE TABLE table_23224961_2 (mittelfranken_s\u00fcd VARCHAR, unterfranken_west VARCHAR, mittelfranken_nord VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23248940_8 WHERE team = \"Orlando\"", "question": "Who tied for the highest rebounds during the game against Orlando?", "context": "CREATE TABLE table_23248940_8 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_23248940_6 WHERE game = 14", "question": "Who are all high points in game 14?", "context": "CREATE TABLE table_23248940_6 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23248940_6 WHERE date = \"November 18\"", "question": "What is every value for location attendance on date of November 18?", "context": "CREATE TABLE table_23248940_6 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_23248940_6 WHERE date = \"November 10\"", "question": "What is every score when date is November 10?", "context": "CREATE TABLE table_23248940_6 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_23248940_6 WHERE game = 11", "question": "What is every record for game 11?", "context": "CREATE TABLE table_23248940_6 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_23248967_5 WHERE game = 3", "question": "How many locations was game 3 played at?", "context": "CREATE TABLE table_23248967_5 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_23248967_5 WHERE team = \"New Orleans\"", "question": "What was the score against New Orleans?", "context": "CREATE TABLE table_23248967_5 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_23248967_9 WHERE date = \"March 6\"", "question": "How many game locations occurred on March 6?", "context": "CREATE TABLE table_23248967_9 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_23258574_2 WHERE championship = \"Wimbledon\" AND year = 1974", "question": "What was the surface during wimbledon in 1974?", "context": "CREATE TABLE table_23258574_2 (surface VARCHAR, championship VARCHAR, year VARCHAR)"}, {"answer": "SELECT overall FROM table_23265433_2 WHERE offensive = \"Mark Steenhuis\"", "question": "Name the overall for mark steenhuis", "context": "CREATE TABLE table_23265433_2 (overall VARCHAR, offensive VARCHAR)"}, {"answer": "SELECT COUNT(offensive) FROM table_23265433_2 WHERE overall = \"Colin Doyle\"", "question": "Name the total number of offensive for colin doyle", "context": "CREATE TABLE table_23265433_2 (offensive VARCHAR, overall VARCHAR)"}, {"answer": "SELECT week FROM table_23265433_2 WHERE transition = \"Steve Toll\"", "question": "Name the week for steve toll", "context": "CREATE TABLE table_23265433_2 (week VARCHAR, transition VARCHAR)"}, {"answer": "SELECT rookie FROM table_23265433_2 WHERE offensive = \"Ryan Powell\"", "question": "Name the rookie for ryan powell", "context": "CREATE TABLE table_23265433_2 (rookie VARCHAR, offensive VARCHAR)"}, {"answer": "SELECT defensive FROM table_23265433_2 WHERE week = 9", "question": "Name the defensive for week 9", "context": "CREATE TABLE table_23265433_2 (defensive VARCHAR, week VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23274514_5 WHERE record = \"10-19\"", "question": "Name the high rebounds for record 10-19", "context": "CREATE TABLE table_23274514_5 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_23274514_5 WHERE score = \"L 109\u2013112 (OT)\"", "question": "Name the high points for  l 109\u2013112 (ot)", "context": "CREATE TABLE table_23274514_5 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_23281862_5 WHERE record = \"4-3\"", "question": "Name the high assists for 4-3", "context": "CREATE TABLE table_23281862_5 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23281862_5 WHERE team = \"Memphis\"", "question": "Name the location attendance for memphis", "context": "CREATE TABLE table_23281862_5 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_23281862_5 WHERE team = \"Sacramento\"", "question": "Name the number of score for sacramento", "context": "CREATE TABLE table_23281862_5 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_23284271_10 WHERE record = \"53-27\"", "question": "Who has the high points when 53-27 is the record?", "context": "CREATE TABLE table_23284271_10 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT team FROM table_23284271_10 WHERE high_rebounds = \"Dirk Nowitski (13)\"", "question": "Which team has dirk nowitski (13) as high rebounds?", "context": "CREATE TABLE table_23284271_10 (team VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_23284271_10 WHERE game = 78", "question": "What is the score for game 78?", "context": "CREATE TABLE table_23284271_10 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_23284271_10 WHERE record = \"50-26\"", "question": "Who has the high assists when 50-26 is the record?", "context": "CREATE TABLE table_23284271_10 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_23284271_10 WHERE record = \"50-26\"", "question": "Who has high points when 50-26 is the record?", "context": "CREATE TABLE table_23284271_10 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_23284271_10 WHERE team = \"@ LA Clippers\"", "question": "Which date is the team @ la clippers?", "context": "CREATE TABLE table_23284271_10 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23281862_9 WHERE game = 64", "question": "Who is the high rebounds for game 64?", "context": "CREATE TABLE table_23281862_9 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_23281862_9 WHERE high_assists = \"Aaron Brooks (6)\"", "question": "What is the record where aaron brooks (6) is high assists?", "context": "CREATE TABLE table_23281862_9 (record VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT score FROM table_23281862_9 WHERE record = \"36-33\"", "question": "What is the score when 36-33 is the record?", "context": "CREATE TABLE table_23281862_9 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_23284271_7 WHERE score = \"W 99\u201391 (OT)\"", "question": "How many teams played against the Mavericks in a game where the score was w 99\u201391 (ot)?", "context": "CREATE TABLE table_23284271_7 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_23285761_11 WHERE high_rebounds = \"Channing Frye, Jason Richardson (8)\"", "question": "How many teams have channing frye, jason richardson (8) as high rebounds?", "context": "CREATE TABLE table_23285761_11 (team VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_assists FROM table_23285761_11 WHERE date = \"April 26\"", "question": "Who has the high assists when April 26 is the date?", "context": "CREATE TABLE table_23285761_11 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_23285761_11 WHERE game = 5", "question": "Which team has 5 as a game?", "context": "CREATE TABLE table_23285761_11 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_23285761_7 WHERE high_rebounds = \"Amar'e Stoudemire (10)\"", "question": "Who did the high assists in the game where Amar'e Stoudemire (10) did the high rebounds?", "context": "CREATE TABLE table_23285761_7 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT team FROM table_23285761_7 WHERE date = \"January 26\"", "question": "Who was the game on January 26 played against?", "context": "CREATE TABLE table_23285761_7 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_23285761_7 WHERE date = \"January 5\"", "question": "What was the record of the game played on January 5?", "context": "CREATE TABLE table_23285761_7 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_23285761_7 WHERE game = 40", "question": "What's the record of the game with number 40?", "context": "CREATE TABLE table_23285761_7 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_23285805_6 WHERE record = \"15-25\"", "question": "What was the score with the team record was 15-25?", "context": "CREATE TABLE table_23285805_6 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23285805_6 WHERE game = 42", "question": "Who has the most rebounds for game 42?", "context": "CREATE TABLE table_23285805_6 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23285805_6 WHERE record = \"15-27\"", "question": "Who had the most rebounds when the team record was 15-27?", "context": "CREATE TABLE table_23285805_6 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_assists FROM table_23285805_8 WHERE team = \"Oklahoma City\"", "question": "Who has the high assists when the team is Oklahoma City?", "context": "CREATE TABLE table_23285805_8 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_23285805_8 WHERE location_attendance = \"Arco Arena 17361\"", "question": "On which datebis arco arena 17361 the location attendance?", "context": "CREATE TABLE table_23285805_8 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_23285805_8 WHERE location_attendance = \"American Airlines Center 19954\"", "question": "Which team has the location attendance of American Airlines Center 19954?", "context": "CREATE TABLE table_23285805_8 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT record FROM table_23285805_8 WHERE location_attendance = \"Arco Arena 17361\"", "question": "What is the record where arco arena 17361 is location attendance?", "context": "CREATE TABLE table_23285805_8 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_points FROM table_23285805_8 WHERE game = 69", "question": "Who has the high points for the 69 game?", "context": "CREATE TABLE table_23285805_8 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_23286158_8 WHERE location_attendance = \"Rose Garden 20,565\"", "question": "Name the record for rose garden 20,565 attendance", "context": "CREATE TABLE table_23286158_8 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT game FROM table_23286158_8 WHERE high_rebounds = \"Andre Miller , Rudy Fernandez (7)\"", "question": "Name the game for  andre miller , rudy fernandez (7)", "context": "CREATE TABLE table_23286158_8 (game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_points FROM table_23286158_8 WHERE record = \"30-23\"", "question": "Name the high points for 30-23", "context": "CREATE TABLE table_23286158_8 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT team FROM table_23286158_8 WHERE location_attendance = \"Rose Garden 20,565\"", "question": "Name the team at the rose garden 20,565", "context": "CREATE TABLE table_23286158_8 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT score FROM table_23286158_9 WHERE record = \"37-27\"", "question": "What was the score for the game when the record was 37-27?", "context": "CREATE TABLE table_23286158_9 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_23286158_9 WHERE team = \"Indiana\"", "question": "Who led with the highest points during the game against Indiana?", "context": "CREATE TABLE table_23286158_9 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_23289934_1 WHERE production_code = \"3ABC11\"", "question": "Name the most number in series for production code of 3abc11", "context": "CREATE TABLE table_23289934_1 (no_in_series INTEGER, production_code VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_23289934_1 WHERE production_code = \"3ABC12\"", "question": "Name the most number in season for production code 3abc12", "context": "CREATE TABLE table_23289934_1 (no_in_season INTEGER, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_23289934_1 WHERE no_in_season = 16", "question": "Name the title for number 16", "context": "CREATE TABLE table_23289934_1 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_23289934_1 WHERE production_code = \"3ABC21\"", "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 original_airdate FROM table_23294081_10 WHERE performer_2 = \"Jeff Davis\"", "question": "What was the date that the episode with Jeff Davis as the second performer originally aired?", "context": "CREATE TABLE table_23294081_10 (original_airdate VARCHAR, performer_2 VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_23294081_10 WHERE no = 214", "question": "How many episodes were series episode 214?", "context": "CREATE TABLE table_23294081_10 (_number VARCHAR, no VARCHAR)"}, {"answer": "SELECT date FROM table_23308178_6 WHERE opponent = \"Toronto Maple Leafs\"", "question": "What date did the capitols play the toronto maple leafs?", "context": "CREATE TABLE table_23308178_6 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_23308178_6 WHERE record = \"20-6-6\"", "question": "Where was the game played when the record was 20-6-6?", "context": "CREATE TABLE table_23308178_6 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_23308178_6 WHERE date = \"December 23\"", "question": "What was the lowest attendance for games played on december 23?", "context": "CREATE TABLE table_23308178_6 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_23308178_6 WHERE location = \"Wachovia Center\"", "question": "How many dates were played at the wachovia center?", "context": "CREATE TABLE table_23308178_6 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_23308178_8 WHERE record = \"39-12-6\"", "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 MAX(points) FROM table_23308178_8", "question": "What is the largest number of points they had?", "context": "CREATE TABLE table_23308178_8 (points INTEGER)"}, {"answer": "SELECT COUNT(record) FROM table_23308178_8 WHERE points = 88", "question": "How many games did they play with 88 points?", "context": "CREATE TABLE table_23308178_8 (record VARCHAR, points VARCHAR)"}, {"answer": "SELECT opponent FROM table_23308178_8 WHERE date = \"February 5\"", "question": "How many games did they play on february 5?", "context": "CREATE TABLE table_23308178_8 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT co_artists FROM table_23379776_5 WHERE name_of_role = \"Ah-Zhong \u963f\u5fe0\"", "question": "Who is every co-artist with name of role as Ah-Zhong \u963f\u5fe0?", "context": "CREATE TABLE table_23379776_5 (co_artists VARCHAR, name_of_role VARCHAR)"}, {"answer": "SELECT nature_of_role FROM table_23379776_5 WHERE year = 2009", "question": "What is every nature of role with year as 2009?", "context": "CREATE TABLE table_23379776_5 (nature_of_role VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_23379776_5 WHERE name_of_role = \"Xiao Gui \u5c0f\u9b3c\"", "question": "How many locations for name of role as Xiao Gui \u5c0f\u9b3c?", "context": "CREATE TABLE table_23379776_5 (location VARCHAR, name_of_role VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2343740_1 WHERE episode_number = 2", "question": "On what date did episode 2 air?", "context": "CREATE TABLE table_2343740_1 (original_air_date VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT title FROM table_2343740_1 WHERE original_air_date = \"February 9, 1979\"", "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 MAX(_number) FROM table_2345558_1 WHERE us_viewers__millions_ = \"1.370\"", "question": "What is the number of the episode seen by 1.370 million people in the US?", "context": "CREATE TABLE table_2345558_1 (_number INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT _number FROM table_2345558_1 WHERE director = \"Whitney Ransick\"", "question": "What's the number of the episode directed by Whitney Ransick?", "context": "CREATE TABLE table_2345558_1 (_number VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_2345558_1 WHERE writer_s_ = \"Jason Yoshimura\"", "question": "Who directed the episode written by Jason Yoshimura?", "context": "CREATE TABLE table_2345558_1 (director VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT sat_29_aug FROM table_23465864_3 WHERE rider = \"Roy Richardson 476cc Aermacchi\"", "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 tues_25_aug FROM table_23465864_3 WHERE rank = 6", "question": "When 6 is the rank what is the time for Tuesday August 25th?", "context": "CREATE TABLE table_23465864_3 (tues_25_aug VARCHAR, rank VARCHAR)"}, {"answer": "SELECT sat_29_aug FROM table_23465864_3 WHERE rank = 3", "question": "When 3 is the rank what is the time for Saturday August 29th?", "context": "CREATE TABLE table_23465864_3 (sat_29_aug VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(fri_28_aug) FROM table_23465864_3 WHERE mon_24_aug = \"22' 37.06 100.090mph\"", "question": "When 22' 37.06 100.090mph is the time for Monday August 24th how many times are there for Friday August 28th?", "context": "CREATE TABLE table_23465864_3 (fri_28_aug VARCHAR, mon_24_aug VARCHAR)"}, {"answer": "SELECT rider FROM table_23465864_5 WHERE mon_24_aug = \"21' 12.02 106.781mph\"", "question": "What is every rider on Monday August 24 at 21' 12.02 106.781mph?", "context": "CREATE TABLE table_23465864_5 (rider VARCHAR, mon_24_aug VARCHAR)"}, {"answer": "SELECT tues_25_aug FROM table_23465864_5 WHERE fri_28_aug = \"23' 54.54 94.684mph\"", "question": "What is every value on Tuesday August 25 if August Friday 28 is 23' 54.54 94.684mph?", "context": "CREATE TABLE table_23465864_5 (tues_25_aug VARCHAR, fri_28_aug VARCHAR)"}, {"answer": "SELECT rider FROM table_23465864_5 WHERE tues_25_aug = \"20' 32.11 110.241mph\"", "question": "What is every rider on Tuesday August 25 at 20' 32.11 110.241mph?", "context": "CREATE TABLE table_23465864_5 (rider VARCHAR, tues_25_aug VARCHAR)"}, {"answer": "SELECT mon_24_aug FROM table_23465864_5 WHERE fri_28_aug = \"23' 22.25 96.864mph\"", "question": "What is every value for Monday August 24 if Friday August 28 is 23' 22.25 96.864mph?", "context": "CREATE TABLE table_23465864_5 (mon_24_aug VARCHAR, fri_28_aug VARCHAR)"}, {"answer": "SELECT mon_24_aug FROM table_23465864_5 WHERE rider = \"Benny Smith 600cc Yamaha\"", "question": "What is the value of Monday August 24 if the rider is Benny Smith 600cc Yamaha?", "context": "CREATE TABLE table_23465864_5 (mon_24_aug VARCHAR, rider VARCHAR)"}, {"answer": "SELECT mon_24_aug FROM table_23465864_5 WHERE fri_28_aug = \"26' 04.60 86.814mph\"", "question": "What is the value for Monday August 24 if Friday August 28 is 26' 04.60 86.814mph?", "context": "CREATE TABLE table_23465864_5 (mon_24_aug VARCHAR, fri_28_aug VARCHAR)"}, {"answer": "SELECT directed_by FROM table_23483182_1 WHERE production_code = 414", "question": "Who directed 414?", "context": "CREATE TABLE table_23483182_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_23483182_1 WHERE original_air_date = \"March 25, 2010\"", "question": "What is the series number of the episode that aired March 25, 2010?", "context": "CREATE TABLE table_23483182_1 (no_in_series INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT written_by FROM table_23483182_1 WHERE original_air_date = \"February 4, 2010\"", "question": "Who wrote the episode that aired February 4, 2010?", "context": "CREATE TABLE table_23483182_1 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23483182_1 WHERE us_viewers__million_ = \"5.72\"", "question": "What was the air date where there were 5.72 million viewers?", "context": "CREATE TABLE table_23483182_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_23483182_1 WHERE us_viewers__million_ = \"6.01\"", "question": "What number was there 6.01 million u.s. drivers?", "context": "CREATE TABLE table_23483182_1 (no_in_season VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT date FROM table_23486853_3 WHERE opponent = \"Florida Panthers\"", "question": "What date did they play the Florida Panthers?", "context": "CREATE TABLE table_23486853_3 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_23486853_3 WHERE opponent = \"Atlanta Thrashers\"", "question": "What was the score for the Atlanta Thrashers?", "context": "CREATE TABLE table_23486853_3 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_23486853_3 WHERE game = 4", "question": "What was the score for game 4?", "context": "CREATE TABLE table_23486853_3 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_234886_2 WHERE original_air_date = \"November 17, 1998\"", "question": "How many titles have an original air date of November 17, 1998?", "context": "CREATE TABLE table_234886_2 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_23528223_2 WHERE us_viewers__millions_ = \"13.54\"", "question": "How many season numbers are there for the episode seen by 13.54 million people in the US?", "context": "CREATE TABLE table_23528223_2 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_23528223_2 WHERE directed_by = \"Skipp Sudduth\"", "question": "What's the series number of the episode directed by Skipp Sudduth?", "context": "CREATE TABLE table_23528223_2 (no_in_series VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_23528223_2 WHERE us_viewers__millions_ = \"10.64\"", "question": "Who wrote the episode seen by 10.64 million people in the US?", "context": "CREATE TABLE table_23528223_2 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(scores) FROM table_23575917_2 WHERE davids_team = \"David Baddiel and Maureen Lipman\"", "question": "Name the scores for  david baddiel and maureen lipman", "context": "CREATE TABLE table_23575917_2 (scores VARCHAR, davids_team VARCHAR)"}, {"answer": "SELECT scores FROM table_23575917_2 WHERE lees_team = \"Michael Buerk and Russell Howard\"", "question": "Name the scores for michael buerk and russell howard", "context": "CREATE TABLE table_23575917_2 (scores VARCHAR, lees_team VARCHAR)"}, {"answer": "SELECT davids_team FROM table_23575917_2 WHERE first_broadcast = \"8 August 2008\"", "question": "Name the davids team for 8 august 2008", "context": "CREATE TABLE table_23575917_2 (davids_team VARCHAR, first_broadcast VARCHAR)"}, {"answer": "SELECT episode FROM table_23575917_4 WHERE first_broadcast = \"3 September 2010\"", "question": "What is the episode number that was first broadcast on 3 September 2010?", "context": "CREATE TABLE table_23575917_4 (episode VARCHAR, first_broadcast VARCHAR)"}, {"answer": "SELECT lees_team FROM table_23575917_4 WHERE episode = \"4x04\"", "question": "Who is the Lees Team for episode 4x04?", "context": "CREATE TABLE table_23575917_4 (lees_team VARCHAR, episode VARCHAR)"}, {"answer": "SELECT davids_team FROM table_23575917_4 WHERE lees_team = \"Jack Dee and Peter Serafinowicz\"", "question": "Who is on the David's Team for the episode with the Lees Team of Jack Dee and Peter Serafinowicz", "context": "CREATE TABLE table_23575917_4 (davids_team VARCHAR, lees_team VARCHAR)"}, {"answer": "SELECT COUNT(davids_team) FROM table_23575917_4 WHERE lees_team = \"Deborah Meaden and Mark Watson\"", "question": "How many David's team for the Lees Team of Deborah Meaden and Mark Watson?", "context": "CREATE TABLE table_23575917_4 (davids_team VARCHAR, lees_team VARCHAR)"}, {"answer": "SELECT COUNT(first_broadcast) FROM table_23575917_7 WHERE episode = \"6x03\"", "question": "If the episode is 6x03, what is the first broadcast total number?", "context": "CREATE TABLE table_23575917_7 (first_broadcast VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(first_broadcast) FROM table_23575917_7 WHERE lees_team = \"Clare Balding and Miranda Hart\"", "question": "If the lees team is Clare Balding and Miranda Hart, what is the first broadcast total number?", "context": "CREATE TABLE table_23575917_7 (first_broadcast VARCHAR, lees_team VARCHAR)"}, {"answer": "SELECT scores FROM table_23575917_7 WHERE lees_team = \"Clare Balding and Miranda Hart\"", "question": "If the lees team is Clare Balding and Miranda Hart, what was the score?", "context": "CREATE TABLE table_23575917_7 (scores VARCHAR, lees_team VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_23585197_3 WHERE date_eliminated = \"11 November\"", "question": "What is the position of the song that was eliminated on 11 november?", "context": "CREATE TABLE table_23585197_3 (position INTEGER, date_eliminated VARCHAR)"}, {"answer": "SELECT artist FROM table_23585197_3 WHERE songwriter_s_ = \"Ingela Hemming\"", "question": "Which artist sang the song that ingela hemming wrote?", "context": "CREATE TABLE table_23585197_3 (artist VARCHAR, songwriter_s_ VARCHAR)"}, {"answer": "SELECT position FROM table_23585197_3 WHERE songwriter_s_ = \"Adam Sandahl\"", "question": "What is the position of the song that adam sandahl wrote?", "context": "CREATE TABLE table_23585197_3 (position VARCHAR, songwriter_s_ VARCHAR)"}, {"answer": "SELECT position FROM table_23585197_3 WHERE artist = \"Genjor McNell\"", "question": "What is the position of the song thar genjor mcnell performed?", "context": "CREATE TABLE table_23585197_3 (position VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_23624542_4 WHERE attendance = 10402", "question": "What week has an attendance of 10402", "context": "CREATE TABLE table_23624542_4 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_23624542_4 WHERE date = \"Sept 22\"", "question": "What is the record on Sept 22?", "context": "CREATE TABLE table_23624542_4 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT release_date FROM table_23649244_2 WHERE artist_1 = \"Wolfgang Gartner\"", "question": "If artist 1 is Wolfgang Gartner, what is the release date?", "context": "CREATE TABLE table_23649244_2 (release_date VARCHAR, artist_1 VARCHAR)"}, {"answer": "SELECT song_1_title FROM table_23649244_2 WHERE artist_1 = \"Danny Byrd\"", "question": "What is song 1 title is the artist is Danny Byrd?", "context": "CREATE TABLE table_23649244_2 (song_1_title VARCHAR, artist_1 VARCHAR)"}, {"answer": "SELECT mix_pack FROM table_23649244_2 WHERE artist_2 = \"Eminem\"", "question": "What is the mix pack when the artist 2 is Eminem?", "context": "CREATE TABLE table_23649244_2 (mix_pack VARCHAR, artist_2 VARCHAR)"}, {"answer": "SELECT serbs FROM table_2374338_2 WHERE hungarians = \"9.26%\"", "question": "What is every value for Serbs if value for Hungarians is 9.26%?", "context": "CREATE TABLE table_2374338_2 (serbs VARCHAR, hungarians VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_2374338_2", "question": "What is the largest value of population?", "context": "CREATE TABLE table_2374338_2 (population INTEGER)"}, {"answer": "SELECT COUNT(germans) FROM table_2374338_2 WHERE slovaks = \"0.11%\"", "question": "How many values for Germans occurs when value for Slovaks is 0.11%?", "context": "CREATE TABLE table_2374338_2 (germans VARCHAR, slovaks VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_2374338_2 WHERE serbs = \"73.53%\"", "question": "What is the smallest value of population if the value for Serbs is 73.53%?", "context": "CREATE TABLE table_2374338_2 (population INTEGER, serbs VARCHAR)"}, {"answer": "SELECT croats FROM table_2374338_2 WHERE roma = \"3.1%\"", "question": "What is every value for Croats if the value of Roma is 3.1%?", "context": "CREATE TABLE table_2374338_2 (croats VARCHAR, roma VARCHAR)"}, {"answer": "SELECT croats FROM table_2374338_2 WHERE romanians = \"16.65%\"", "question": "What is every value for Croats when value for Romanians is 16.65%?", "context": "CREATE TABLE table_2374338_2 (croats VARCHAR, romanians VARCHAR)"}, {"answer": "SELECT COUNT(nasl_years) FROM table_237757_9 WHERE accolades__pre_nasl_ = \"Captained England to victory at the 1966 World Cup\"", "question": "How many years of nasl years did the accolades read \"captained england to victory at the 1966 world cup\"?", "context": "CREATE TABLE table_237757_9 (nasl_years VARCHAR, accolades__pre_nasl_ VARCHAR)"}, {"answer": "SELECT nasl_club_s_ FROM table_237757_9 WHERE accolades__pre_nasl_ = \"Won several titles with Leeds United\"", "question": "What nasl club won several titles with leeds united?", "context": "CREATE TABLE table_237757_9 (nasl_club_s_ VARCHAR, accolades__pre_nasl_ VARCHAR)"}, {"answer": "SELECT nasl_years FROM table_237757_9 WHERE player = \"Bobby Moore\"", "question": "What years did Bobby Moore play?", "context": "CREATE TABLE table_237757_9 (nasl_years VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_237757_9 WHERE nasl_club_s_ = \"Philadelphia Fury\"", "question": "What position is Philadelphia Fury?", "context": "CREATE TABLE table_237757_9 (position VARCHAR, nasl_club_s_ VARCHAR)"}, {"answer": "SELECT COUNT(nasl_years) FROM table_237757_9 WHERE player = \"Peter Lorimer\"", "question": "How many years did Peter Lorimer play?", "context": "CREATE TABLE table_237757_9 (nasl_years VARCHAR, player VARCHAR)"}, {"answer": "SELECT highest FROM table_237757_10 WHERE average = 10295", "question": "What was the entry for highest when average is 10295?", "context": "CREATE TABLE table_237757_10 (highest VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(highest) FROM table_237757_10 WHERE low_team = \"Baltimore Rays\"", "question": "How many entries for highest when the low team was baltimore rays?", "context": "CREATE TABLE table_237757_10 (highest VARCHAR, low_team VARCHAR)"}, {"answer": "SELECT season FROM table_237757_10 WHERE low_team = \"Chicago Sting\"", "question": "What was the season when the low team is chicago sting?", "context": "CREATE TABLE table_237757_10 (season VARCHAR, low_team VARCHAR)"}, {"answer": "SELECT rank FROM table_23759976_1 WHERE building_[a_] = \"Stock Exchange Plaza\"", "question": "What's the Stock Exchange Plaza's rank?", "context": "CREATE TABLE table_23759976_1 (rank VARCHAR, building_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT height__m_ FROM table_23759976_1 WHERE floors = 36", "question": "How tall is the building with 36 floors?", "context": "CREATE TABLE table_23759976_1 (height__m_ VARCHAR, floors VARCHAR)"}, {"answer": "SELECT COUNT(floors) FROM table_23759976_1 WHERE building_[a_] = \"Chongqing Poly Tower\"", "question": "How many different numbers of floors are there for the Chongqing Poly Tower?", "context": "CREATE TABLE table_23759976_1 (floors VARCHAR, building_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_23759976_1 WHERE building_[a_] = \"Cathay Pacific Plaza 2\"", "question": "How many different ranks does the Cathay Pacific Plaza 2 have?", "context": "CREATE TABLE table_23759976_1 (rank VARCHAR, building_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_23799417_1 WHERE directed_by = \"Matt Shakman\"", "question": "What is the production code directed by Matt Shakman?", "context": "CREATE TABLE table_23799417_1 (production_code VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_23799417_1 WHERE production_code = 202", "question": "How many series had a production code of 202?", "context": "CREATE TABLE table_23799417_1 (no_in_series VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_238124_1 WHERE partial_thromboplastin_time = \"Prolonged\" AND prothrombin_time = \"Unaffected\"", "question": "What was the bleeding time during the prolonged partial thromboplastin time in which the prothrombin time is unaffected?", "context": "CREATE TABLE table_238124_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_238124_1 WHERE condition = \"Glanzmann's thrombasthenia\"", "question": "What is the bleeding time for glanzmann's thrombasthenia?", "context": "CREATE TABLE table_238124_1 (bleeding_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT platelet_count FROM table_238124_1 WHERE condition = \"Congenital afibrinogenemia\"", "question": "What is the platelet count for congenital afibrinogenemia?", "context": "CREATE TABLE table_238124_1 (platelet_count VARCHAR, condition VARCHAR)"}, {"answer": "SELECT COUNT(prothrombin_time) FROM table_238124_1 WHERE condition = \"Von Willebrand disease\"", "question": "What is the prothrombin time of von willebrand disease? ", "context": "CREATE TABLE table_238124_1 (prothrombin_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT platelet_count FROM table_238124_1 WHERE bleeding_time = \"Unaffected\" AND prothrombin_time = \"Prolonged\"", "question": "When the bleeding time is unaffected and prothrombin time is prolonged, what are the platelet counts?", "context": "CREATE TABLE table_238124_1 (platelet_count VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)"}, {"answer": "SELECT last_match FROM table_23819979_3 WHERE final_place = \"Argentina - Estadio Jos\u00e9 Mar\u00eda Minella\"", "question": "Name the last match for  argentina - estadio jos\u00e9 mar\u00eda minella", "context": "CREATE TABLE table_23819979_3 (last_match VARCHAR, final_place VARCHAR)"}, {"answer": "SELECT final_position FROM table_23819979_3 WHERE competition = \"Copa Libertadores\"", "question": "Name the final position for copa libertadores", "context": "CREATE TABLE table_23819979_3 (final_position VARCHAR, competition VARCHAR)"}, {"answer": "SELECT final_place FROM table_23819979_3 WHERE last_match = \"July 25, 2009\"", "question": "Name the final place for july 25, 2009", "context": "CREATE TABLE table_23819979_3 (final_place VARCHAR, last_match VARCHAR)"}, {"answer": "SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE vehicle = \"Nissan Leaf\"", "question": "What is the epa rated combined fuel economy for the Nissan Leaf?", "context": "CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT operating_mode FROM table_23840623_4 WHERE vehicle = \"Coda\"", "question": "What is the operating mode of the Coda?", "context": "CREATE TABLE table_23840623_4 (operating_mode VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT dirty_electric_grid_rocky_mountains__denver_ FROM table_23840623_4 WHERE clean_electric_grid_california__san_francisco_ = \"160 g/mi (99 g/km)\"", "question": "What is the dirty electric grid rocky mountains (denver) for the vehicle with the clean electric grid california (san francisco) of 160 g/mi (99 g/km)?", "context": "CREATE TABLE table_23840623_4 (dirty_electric_grid_rocky_mountains__denver_ VARCHAR, clean_electric_grid_california__san_francisco_ VARCHAR)"}, {"answer": "SELECT COUNT(dirty_electric_grid_rocky_mountains__denver_) FROM table_23840623_4 WHERE epa_rated_combined_fuel_economy = \"102 mpg-e (33kW-hrs/100mi)\"", "question": "How many dirty electric grid rocky mountains (denver) vehicles have an  epa rated combined fuel economy of 102 mpg-e (33kw-hrs/100mi)?", "context": "CREATE TABLE table_23840623_4 (dirty_electric_grid_rocky_mountains__denver_ VARCHAR, epa_rated_combined_fuel_economy VARCHAR)"}, {"answer": "SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE operating_mode = \"All-electric\" AND dirty_electric_grid_rocky_mountains__denver_ = \"330 g/mi (205 g/km)\"", "question": "What is the epa rated combined fuel economy for the all-electric vehicle with dirty electric grid rocky mountains (denver) of 330 g/mi (205 g/km)?", "context": "CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, operating_mode VARCHAR, dirty_electric_grid_rocky_mountains__denver_ VARCHAR)"}, {"answer": "SELECT COUNT(clean_electric_grid_california__san_francisco_) FROM table_23840623_4 WHERE vehicle = \"Nissan Leaf\"", "question": "How many clean electric grid california (san francisco) figures are given for the Nissan Leaf?", "context": "CREATE TABLE table_23840623_4 (clean_electric_grid_california__san_francisco_ VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT aper_in FROM table_23851574_2 WHERE built_used = \"1987-2001\"", "question": "Which aperture were built or used between 1987-2001?", "context": "CREATE TABLE table_23851574_2 (aper_in VARCHAR, built_used VARCHAR)"}, {"answer": "SELECT COUNT(nationality_sponsors) FROM table_23851574_2 WHERE mirror_type = \"Schmidt UV\"", "question": "How many nationalities/sponsors for mirror/type schmidt uv?", "context": "CREATE TABLE table_23851574_2 (nationality_sponsors VARCHAR, mirror_type VARCHAR)"}, {"answer": "SELECT name FROM table_23851574_2 WHERE nationality_sponsors = \"Belgium\"", "question": "Which telescopes were sponsored by or originated in Belgium?", "context": "CREATE TABLE table_23851574_2 (name VARCHAR, nationality_sponsors VARCHAR)"}, {"answer": "SELECT 4 AS th_place FROM table_2388763_1 WHERE year = 2007", "question": "What team finished in 4th place in 2007? ", "context": "CREATE TABLE table_2388763_1 (year VARCHAR)"}, {"answer": "SELECT record FROM table_23916539_3 WHERE opponent = \"Stampeders\"", "question": "If the opponent is the Stampeders, what is the record?", "context": "CREATE TABLE table_23916539_3 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_23916539_3 WHERE location = \"Clarke Stadium\"", "question": "What is the record if the location is Clarke Stadium?", "context": "CREATE TABLE table_23916539_3 (record VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(market_cap_march_15__mil_usd__) FROM table_23950611_2 WHERE april_2013_cum_rank = 3", "question": "How many companies had an april 2013 cumulative ranking of 3?", "context": "CREATE TABLE table_23950611_2 (market_cap_march_15__mil_usd__ VARCHAR, april_2013_cum_rank VARCHAR)"}, {"answer": "SELECT rank__all__2012 FROM table_23950611_2 WHERE name = \"Cenovus Energy\"", "question": "What was the Forbers rank (all companies) in 2012 for cenovus energy?", "context": "CREATE TABLE table_23950611_2 (rank__all__2012 VARCHAR, name VARCHAR)"}, {"answer": "SELECT assets__bil_usd__ FROM table_23950611_2 WHERE rank__all__2013 = 1532", "question": "How many assets in billions US$, for the company that ranked 1532 overall in 2013?", "context": "CREATE TABLE table_23950611_2 (assets__bil_usd__ VARCHAR, rank__all__2013 VARCHAR)"}, {"answer": "SELECT COUNT(rank__all__2013) FROM table_23950611_2 WHERE name = \"Cenovus Energy\"", "question": "How many companies named cenovus energy?", "context": "CREATE TABLE table_23950611_2 (rank__all__2013 VARCHAR, name VARCHAR)"}, {"answer": "SELECT french_title FROM table_23963073_1 WHERE date_of_publication = 1968", "question": "What was the French title of the story published in 1968?", "context": "CREATE TABLE table_23963073_1 (french_title VARCHAR, date_of_publication VARCHAR)"}, {"answer": "SELECT artist FROM table_23963073_1 WHERE date_of_publication = 1966", "question": "Who was the artist who worked on the stories published in 1966?", "context": "CREATE TABLE table_23963073_1 (artist VARCHAR, date_of_publication VARCHAR)"}, {"answer": "SELECT start_date FROM table_24057191_2 WHERE series = 6", "question": "When did series 6 start?", "context": "CREATE TABLE table_24057191_2 (start_date VARCHAR, series VARCHAR)"}, {"answer": "SELECT MAX(series) FROM table_24057191_2 WHERE average_viewers__millions_ = \"3.72\"", "question": "What series had an average of 3.72 million people watching it?", "context": "CREATE TABLE table_24057191_2 (series INTEGER, average_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(end_date) FROM table_24057191_2 WHERE average_viewers__millions_ = \"4.2\"", "question": "How many different end dates are there for the series seen by 4.2 million people?", "context": "CREATE TABLE table_24057191_2 (end_date VARCHAR, average_viewers__millions_ VARCHAR)"}, {"answer": "SELECT population__percentage_of_eu FROM table_24066938_1 WHERE pop_density_people_km_2 = \"110.8\"", "question": "What percentage of the EU's population lives in the country with a population density of 110.8 people per square kilometer?", "context": "CREATE TABLE table_24066938_1 (population__percentage_of_eu VARCHAR, pop_density_people_km_2 VARCHAR)"}, {"answer": "SELECT area_km_2 FROM table_24066938_1 WHERE member_state = \"Austria\"", "question": "What is the area of Austria's territory in square kilometers?", "context": "CREATE TABLE table_24066938_1 (area_km_2 VARCHAR, member_state VARCHAR)"}, {"answer": "SELECT pop_density_people_km_2 FROM table_24066938_1 WHERE member_state = \"Sweden\"", "question": "How many inhabitants does Sweden have per square kilometer?", "context": "CREATE TABLE table_24066938_1 (pop_density_people_km_2 VARCHAR, member_state VARCHAR)"}, {"answer": "SELECT COUNT(pop_density_people_km_2) FROM table_24066938_1 WHERE member_state = \"Czech Republic\"", "question": "How many measurements of the Czech Republic's population density are recorded in this table?", "context": "CREATE TABLE table_24066938_1 (pop_density_people_km_2 VARCHAR, member_state VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_2409041_4 WHERE no_in_season = 11", "question": "Name the number of number in the season for 11", "context": "CREATE TABLE table_2409041_4 (no_in_series VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_2409041_4 WHERE no_in_season = 14", "question": "Name the number of airdates for 14", "context": "CREATE TABLE table_2409041_4 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT title FROM table_2409041_4 WHERE production_code = 446913", "question": "Name the title for 446913", "context": "CREATE TABLE table_2409041_4 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT kentucky_oaks FROM table_24089503_1 WHERE belmont_stakes = \"64,949\"", "question": "What was the Kentucky Oaks attendance the year the Belmont Stakes had 64,949 attendance?", "context": "CREATE TABLE table_24089503_1 (kentucky_oaks VARCHAR, belmont_stakes VARCHAR)"}, {"answer": "SELECT travers_stakes FROM table_24089503_1 WHERE year = 1977", "question": "What was the attendance at the Travers Stakes in 1977?", "context": "CREATE TABLE table_24089503_1 (travers_stakes VARCHAR, year VARCHAR)"}, {"answer": "SELECT breeders_cup_friday FROM table_24089503_1 WHERE breeders_cup_saturday = \"52,987\"", "question": "What was the Breeder's Cup Friday attendance for the year the Breeder's Cup Saturday had 52,987?", "context": "CREATE TABLE table_24089503_1 (breeders_cup_friday VARCHAR, breeders_cup_saturday VARCHAR)"}, {"answer": "SELECT edition FROM table_24099476_8 WHERE opponent = \"David Nalbandian\"", "question": "In what edition is Ungur's opponent David Nalbandian?", "context": "CREATE TABLE table_24099476_8 (edition VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_24099476_8 WHERE win_lose = \"Lose\" AND round = \"Play-off\"", "question": "When was the win/lose lose and the round a play-off?", "context": "CREATE TABLE table_24099476_8 (date VARCHAR, win_lose VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_24099476_8 WHERE opponent = \"Sergiy Stakhovsky\"", "question": "In what round did he play against Sergiy Stakhovsky?", "context": "CREATE TABLE table_24099476_8 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT municipality FROM table_24115349_6 WHERE coakley_votes = 754", "question": "What municipality had 754 votes for coakley?", "context": "CREATE TABLE table_24115349_6 (municipality VARCHAR, coakley_votes VARCHAR)"}, {"answer": "SELECT MAX(brown_votes) FROM table_24115349_6 WHERE coakley__percentage = \"84.1%\"", "question": "How many votes for brown in the place that had 84.1% for coakley?", "context": "CREATE TABLE table_24115349_6 (brown_votes INTEGER, coakley__percentage VARCHAR)"}, {"answer": "SELECT turnout__percentage FROM table_24115349_6 WHERE brown__percentage = \"44.6%\"", "question": "What was the turnout percentage in the place that had 44.6% vote for brown?", "context": "CREATE TABLE table_24115349_6 (turnout__percentage VARCHAR, brown__percentage VARCHAR)"}, {"answer": "SELECT MAX(finish) FROM table_24119784_1 WHERE top_10 = 8", "question": "Name the finish top 10 being 8 ", "context": "CREATE TABLE table_24119784_1 (finish INTEGER, top_10 VARCHAR)"}, {"answer": "SELECT finish FROM table_24122653_2 WHERE vote = \"3-2\"", "question": "What is the finish associated with a 3-2 vote?", "context": "CREATE TABLE table_24122653_2 (finish VARCHAR, vote VARCHAR)"}, {"answer": "SELECT reward FROM table_24122653_2 WHERE eliminated = \"Peterson\"", "question": "What is the reward for the elimination of Peterson?", "context": "CREATE TABLE table_24122653_2 (reward VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT COUNT(finish) FROM table_24122653_2 WHERE eliminated = \"Adriana\"", "question": "What is the number of finishes associated with an elimination of Adriana?", "context": "CREATE TABLE table_24122653_2 (finish VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_24122653_2 WHERE vote = \"3-1\"", "question": "What was the total number of episodes that had a 3-1 vote?", "context": "CREATE TABLE table_24122653_2 (episode VARCHAR, vote VARCHAR)"}, {"answer": "SELECT conference AS Tournament FROM table_24160890_3 WHERE regular_season_winner = \"Troy\"", "question": "When troy is the regular season winner what is the conference tournament?", "context": "CREATE TABLE table_24160890_3 (conference VARCHAR, regular_season_winner VARCHAR)"}, {"answer": "SELECT conference AS Tournament FROM table_24160890_3 WHERE tournament_venue__city_ = \"Madison Square Garden ( New York City, New York )\"", "question": "When madison square garden ( new york city, new york ) is the tournament venue (city) what is the conference tournament?", "context": "CREATE TABLE table_24160890_3 (conference VARCHAR, tournament_venue__city_ VARCHAR)"}, {"answer": "SELECT COUNT(regular_season_winner) FROM table_24160890_3 WHERE tournament_winner = \"Cincinnati\"", "question": "When Cincinnati is the tournament winner how many regular season winners are there?", "context": "CREATE TABLE table_24160890_3 (regular_season_winner VARCHAR, tournament_winner VARCHAR)"}, {"answer": "SELECT COUNT(conference) FROM table_24160890_3 WHERE tournament_winner = \"Western Michigan\"", "question": "When western michigan is the tournament winner how many conferences are there?", "context": "CREATE TABLE table_24160890_3 (conference VARCHAR, tournament_winner VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_2417345_4 WHERE successor = \"George E. Harris (R)\"", "question": "When was successor George E. Harris (R) seated?", "context": "CREATE TABLE table_2417345_4 (date_successor_seated VARCHAR, successor VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_2417345_4 WHERE successor = \"William Milnes, Jr. (C)\"", "question": "What was the reason for change when the successor was William Milnes, Jr. (C)?", "context": "CREATE TABLE table_2417345_4 (reason_for_change VARCHAR, successor VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_2417345_4 WHERE district = \"Ohio 10th\"", "question": "When were the successor/s seated for Ohio 10th?", "context": "CREATE TABLE table_2417345_4 (date_successor_seated VARCHAR, district VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_2417345_4 WHERE vacator = \"George W. Greene (D)\"", "question": "Name the reason for change when George W. Greene (D) was the vacator.", "context": "CREATE TABLE table_2417345_4 (reason_for_change VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_2417345_4 WHERE successor = \"David Atwood (R)\"", "question": "When was successor David Atwood (R) seated?", "context": "CREATE TABLE table_2417345_4 (date_successor_seated VARCHAR, successor VARCHAR)"}, {"answer": "SELECT district FROM table_2417390_4 WHERE date_successor_seated = \"March 28, 1878\"", "question": "What district was the successor seated in March 28, 1878?", "context": "CREATE TABLE table_2417390_4 (district VARCHAR, date_successor_seated VARCHAR)"}, {"answer": "SELECT vacator FROM table_2417390_4 WHERE district = \"Nebraska At-large\"", "question": "Who was the vacator for the district of Nebraska at-large?", "context": "CREATE TABLE table_2417390_4 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT enrollment FROM table_24216139_2 WHERE nickname = \"Cougars\"", "question": "Name the enrollment with cougars", "context": "CREATE TABLE table_24216139_2 (enrollment VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_24216139_2 WHERE sport = \"Field hockey, men's swimming\"", "question": "Name the least enrollment for field hockey, men's swimming", "context": "CREATE TABLE table_24216139_2 (enrollment INTEGER, sport VARCHAR)"}, {"answer": "SELECT institution FROM table_24216139_2 WHERE nickname = \"Cougars\"", "question": "Name the school that is cougars", "context": "CREATE TABLE table_24216139_2 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT institution FROM table_24216139_2 WHERE nickname = \"Purple Aces\"", "question": "Name the institution for purple aces", "context": "CREATE TABLE table_24216139_2 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT title FROM table_24222929_2 WHERE directed_by = \"John Terlesky\"", "question": "Name the title that was directed  by john terlesky", "context": "CREATE TABLE table_24222929_2 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_24222929_2 WHERE production_code = \"3X5655\"", "question": "Name the total number of titles for 3x5655", "context": "CREATE TABLE table_24222929_2 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_24223834_3 WHERE us_viewers__in_millions_ = \"1.023\"", "question": "What date did the episode that had 1.023 million u.s. viewers originally air?", "context": "CREATE TABLE table_24223834_3 (original_air_date VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_24223834_3 WHERE us_viewers__in_millions_ = \"2.528\"", "question": "What episode number in the series had 2.528 million u.s. viewers?", "context": "CREATE TABLE table_24223834_3 (no_in_series VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT us_viewers__in_millions_ FROM table_24223834_3 WHERE directed_by = \"Daniel H. Forer\"", "question": "How many million U.S. viewers watched the episode that Daniel H. Forer directed?", "context": "CREATE TABLE table_24223834_3 (us_viewers__in_millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_24223834_3 WHERE title = \"This is What They Want\"", "question": "How may overall episodes had the title \"this is what they want\"?", "context": "CREATE TABLE table_24223834_3 (overall VARCHAR, title VARCHAR)"}, {"answer": "SELECT tournament_winner FROM table_24248450_3 WHERE regular_season_winner = \"UNC Wilmington\"", "question": "Who was the Tournament Winner when UNC Wilmington won the regular season?", "context": "CREATE TABLE table_24248450_3 (tournament_winner VARCHAR, regular_season_winner VARCHAR)"}, {"answer": "SELECT tournament_winner FROM table_24248450_3 WHERE conference = \"Atlantic Sun conference\"", "question": "Who won the tournament for the Atlantic Sun Conference?", "context": "CREATE TABLE table_24248450_3 (tournament_winner VARCHAR, conference VARCHAR)"}, {"answer": "SELECT conference AS Tournament FROM table_24248450_3 WHERE conference = \"Big Sky conference\"", "question": "What is the tournament called for the Big Sky Conference?", "context": "CREATE TABLE table_24248450_3 (conference VARCHAR)"}, {"answer": "SELECT COUNT(event_2_truck_pull) FROM table_24302700_2 WHERE event_1_medley = \"6 (16.6m)\"", "question": "How many men had an event 1 medley score of 6 (16.6m)?", "context": "CREATE TABLE table_24302700_2 (event_2_truck_pull VARCHAR, event_1_medley VARCHAR)"}, {"answer": "SELECT COUNT(event_4_carwalk) FROM table_24302700_2 WHERE nationality = \"Ukraine\"", "question": "How many men from the Ukraine?", "context": "CREATE TABLE table_24302700_2 (event_4_carwalk VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT event_3_squat_lift FROM table_24302700_2 WHERE nationality = \"United States\" AND event_2_truck_pull = \"1 (42.66s)\"", "question": "What was the result(s) in the event 3 squatlift for the man from the United states with a result of 1 (42.66s) in the event 2 truck pull?", "context": "CREATE TABLE table_24302700_2 (event_3_squat_lift VARCHAR, nationality VARCHAR, event_2_truck_pull VARCHAR)"}, {"answer": "SELECT event_1_medley FROM table_24302700_2 WHERE event_3_squat_lift = \"4 (6 in 31.85s)\"", "question": "What was the result in the event 1 medley for the man with a 4 (6 in 31.85s) in the event 3 squat lift?", "context": "CREATE TABLE table_24302700_2 (event_1_medley VARCHAR, event_3_squat_lift VARCHAR)"}, {"answer": "SELECT MIN(series_no) FROM table_2430014_9", "question": "Name the least series number", "context": "CREATE TABLE table_2430014_9 (series_no INTEGER)"}, {"answer": "SELECT county FROM table_24329520_8 WHERE members = 1 AND franchise_type = \"Corporation\" AND borough = \"Ennis\"", "question": "Which county has a membership of 1, a franchise type of corporation and a borough of Ennis?", "context": "CREATE TABLE table_24329520_8 (county VARCHAR, borough VARCHAR, members VARCHAR, franchise_type VARCHAR)"}, {"answer": "SELECT COUNT(members) FROM table_24329520_8 WHERE borough = \"Bandon Bridge\"", "question": "What is the number of members that have boroughs of Bandon Bridge?", "context": "CREATE TABLE table_24329520_8 (members VARCHAR, borough VARCHAR)"}, {"answer": "SELECT COUNT(voters_in_1800) FROM table_24329520_8 WHERE borough = \"Drogheda\"", "question": "What is the number of voters in 1800 that have boroughs named Drogheda?", "context": "CREATE TABLE table_24329520_8 (voters_in_1800 VARCHAR, borough VARCHAR)"}, {"answer": "SELECT original_1st_us_tour_cast FROM table_24353141_1 WHERE original_tokyo___seoul_tour_cast = \"Thomas Hettrick\"", "question": "While the original toyko/seoul tour cast included thomas hettrick, who was in the original 1st us tour cast? ", "context": "CREATE TABLE table_24353141_1 (original_1st_us_tour_cast VARCHAR, original_tokyo___seoul_tour_cast VARCHAR)"}, {"answer": "SELECT COUNT(original_3rd_us_tour_cast) FROM table_24353141_1 WHERE original_uk_cast = \"Alyssa DiPalma\"", "question": "How many original 3rd us tour cast were there while the original uk cast was alyssa dipalma?", "context": "CREATE TABLE table_24353141_1 (original_3rd_us_tour_cast VARCHAR, original_uk_cast VARCHAR)"}, {"answer": "SELECT original_tokyo___seoul_tour_cast FROM table_24353141_1 WHERE original_1st_us_tour_cast = \"Nicci Claspell\"", "question": "While the original 1st us tour cast included nicci claspell, who was in the original tokyo/seoul tour cast?", "context": "CREATE TABLE table_24353141_1 (original_tokyo___seoul_tour_cast VARCHAR, original_1st_us_tour_cast VARCHAR)"}, {"answer": "SELECT original_berkeley_cast FROM table_24353141_1 WHERE original_broadway_cast = \"Stark Sands\"", "question": "Who was in the original berkley cast while stark sands was in the original broadway cast? ", "context": "CREATE TABLE table_24353141_1 (original_berkeley_cast VARCHAR, original_broadway_cast VARCHAR)"}, {"answer": "SELECT original_broadway_cast FROM table_24353141_1 WHERE original_1st_us_tour_cast = \"Jake Epstein\"", "question": "Who was in the original broadway cast while jake epstein was in the original 1st us tour cast? ", "context": "CREATE TABLE table_24353141_1 (original_broadway_cast VARCHAR, original_1st_us_tour_cast VARCHAR)"}, {"answer": "SELECT original_3rd_us_tour_cast FROM table_24353141_1 WHERE original_1st_us_tour_cast = \"Scott J. Campbell\"", "question": "Who was in the original 3rd us tour cast while scott j. campbell was in the original 1st us tour cast? ", "context": "CREATE TABLE table_24353141_1 (original_3rd_us_tour_cast VARCHAR, original_1st_us_tour_cast VARCHAR)"}, {"answer": "SELECT MAX(cable_rank) FROM table_24399615_6", "question": "What is the highest cable ranking?", "context": "CREATE TABLE table_24399615_6 (cable_rank INTEGER)"}, {"answer": "SELECT status FROM table_24431348_18 WHERE player = \"Philipp Kohlschreiber\"", "question": "What is the status of player Philipp Kohlschreiber?", "context": "CREATE TABLE table_24431348_18 (status VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(points) AS won FROM table_24431348_18 WHERE seed = 25", "question": "What the total amount of points won during seed 25?", "context": "CREATE TABLE table_24431348_18 (points VARCHAR, seed VARCHAR)"}, {"answer": "SELECT status FROM table_24431348_18 WHERE rank = 20", "question": "What was the status of rank 20?", "context": "CREATE TABLE table_24431348_18 (status VARCHAR, rank VARCHAR)"}, {"answer": "SELECT points AS defending FROM table_24431264_17 WHERE player = \"Caroline Wozniacki\"", "question": "List the total number of defense points for caroline wozniacki.", "context": "CREATE TABLE table_24431264_17 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT points AS defending FROM table_24431264_17 WHERE player = \"Marion Bartoli\"", "question": "List the total defensive points for marion bartoli.", "context": "CREATE TABLE table_24431264_17 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(points) AS won FROM table_24431348_20 WHERE player = \"Aravane Reza\u00ef\"", "question": "What is the highest points won when the player is aravane reza\u00ef?", "context": "CREATE TABLE table_24431348_20 (points INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(status) FROM table_24431348_20 WHERE new_points = 2690", "question": "How many times is the new points 2690?", "context": "CREATE TABLE table_24431348_20 (status VARCHAR, new_points VARCHAR)"}, {"answer": "SELECT player FROM table_24431264_18 WHERE new_points = 1285", "question": "List the players with 1285 new points?", "context": "CREATE TABLE table_24431264_18 (player VARCHAR, new_points VARCHAR)"}, {"answer": "SELECT MAX(points) AS defending FROM table_24431264_18 WHERE player = \"Radek \u0160t\u011bp\u00e1nek\"", "question": "How many defending points did  radek \u0161t\u011bp\u00e1nek have?", "context": "CREATE TABLE table_24431264_18 (points INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_24431264_18 WHERE withdrew_due_to = \"right foot injury\"", "question": "List the rank of the player that left the tournament due to right foot injury", "context": "CREATE TABLE table_24431264_18 (rank VARCHAR, withdrew_due_to VARCHAR)"}, {"answer": "SELECT MIN(points) AS defending FROM table_24431264_18 WHERE player = \"Radek \u0160t\u011bp\u00e1nek\"", "question": "List the total number of defensive points for radek \u0161t\u011bp\u00e1nek?", "context": "CREATE TABLE table_24431264_18 (points INTEGER, player VARCHAR)"}, {"answer": "SELECT rank FROM table_24431264_18 WHERE withdrew_due_to = \"right wrist surgery\"", "question": "List the rank of the player that left due to right wrist surgery?", "context": "CREATE TABLE table_24431264_18 (rank VARCHAR, withdrew_due_to VARCHAR)"}, {"answer": "SELECT awardee_s_ FROM table_24446718_3 WHERE name_of_award = \"Best Special Effects\"", "question": "Name the awardees for best special effects", "context": "CREATE TABLE table_24446718_3 (awardee_s_ VARCHAR, name_of_award VARCHAR)"}, {"answer": "SELECT COUNT(awardee_s_) FROM table_24446718_3 WHERE name_of_award = \"Best Screenplay\"", "question": "Name the total number of awardees for best screenplay", "context": "CREATE TABLE table_24446718_3 (awardee_s_ VARCHAR, name_of_award VARCHAR)"}, {"answer": "SELECT name_of_award FROM table_24446718_3 WHERE language = \"Marathi\"", "question": "Name the name of award for marathi", "context": "CREATE TABLE table_24446718_3 (name_of_award VARCHAR, language VARCHAR)"}, {"answer": "SELECT awardee_s_ FROM table_24446718_3 WHERE name_of_film = \"Tingya\"", "question": "Name the awardee for tingya", "context": "CREATE TABLE table_24446718_3 (awardee_s_ VARCHAR, name_of_film VARCHAR)"}, {"answer": "SELECT language FROM table_24446718_3 WHERE awardee_s_ = \"B. Ajith Kumar\"", "question": "Name the language for b. ajith kumar", "context": "CREATE TABLE table_24446718_3 (language VARCHAR, awardee_s_ VARCHAR)"}, {"answer": "SELECT date FROM table_24453847_2 WHERE game_site = \"AOL Arena\"", "question": "What game date was the game at AOL Arena?", "context": "CREATE TABLE table_24453847_2 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT team_record FROM table_24453847_2 WHERE week = 8", "question": "What was the Rhein Fire team record on week 8?", "context": "CREATE TABLE table_24453847_2 (team_record VARCHAR, week VARCHAR)"}, {"answer": "SELECT circuit FROM table_2446333_2 WHERE main_winner = \"France\" AND country = \"Portugal\"", "question": "Name the circuit for france and portugal", "context": "CREATE TABLE table_2446333_2 (circuit VARCHAR, main_winner VARCHAR, country VARCHAR)"}, {"answer": "SELECT date FROM table_2446333_2 WHERE sprint_winner = \"Mexico\"", "question": "Name the date for sprint winner mexico", "context": "CREATE TABLE table_2446333_2 (date VARCHAR, sprint_winner VARCHAR)"}, {"answer": "SELECT date FROM table_2446333_2 WHERE circuit = \"Eastern Creek Raceway\"", "question": "Name the date for eastern creek raceway", "context": "CREATE TABLE table_2446333_2 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_2446333_2 WHERE country = \"United Arab Emirates\"", "question": "Name the circuit for  united arab emirates", "context": "CREATE TABLE table_2446333_2 (circuit VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_2446333_2 WHERE round = 10", "question": "Name the total number of date for 10", "context": "CREATE TABLE table_2446333_2 (date VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_24464253_1", "question": "What is the number of the first game?", "context": "CREATE TABLE table_24464253_1 (game INTEGER)"}, {"answer": "SELECT opponent FROM table_24464253_1 WHERE record = \"5-4\"", "question": "Against what opponent did the Wildcats have a record of 5-4?", "context": "CREATE TABLE table_24464253_1 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(pa) FROM table_24475186_2 WHERE blank_ends = 7 AND l = 5", "question": "How many pa were blank ends 7 and 5?", "context": "CREATE TABLE table_24475186_2 (pa VARCHAR, blank_ends VARCHAR, l VARCHAR)"}, {"answer": "SELECT conductor FROM table_24521345_1 WHERE record_label = \"Multisonic\"", "question": "Who is the conductor on the Multisonic label? ", "context": "CREATE TABLE table_24521345_1 (conductor VARCHAR, record_label VARCHAR)"}, {"answer": "SELECT conductor FROM table_24521345_1 WHERE work_title = \"Rusalka\"", "question": "Who is the conductor for Rusalka? ", "context": "CREATE TABLE table_24521345_1 (conductor VARCHAR, work_title VARCHAR)"}, {"answer": "SELECT composer FROM table_24521345_1 WHERE conductor = \"Jaroslav Vogel\"", "question": "Who composed the work conducted by jaroslav Vogel? ", "context": "CREATE TABLE table_24521345_1 (composer VARCHAR, conductor VARCHAR)"}, {"answer": "SELECT title FROM table_2453243_5 WHERE production_code = \"406\"", "question": "What is the title of the episode with production code 406?", "context": "CREATE TABLE table_2453243_5 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_2453243_5 WHERE no_in_series = \"48\"", "question": "Who write episode number 48 in the series?", "context": "CREATE TABLE table_2453243_5 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(goals\u00b9) FROM table_24565004_19 WHERE period = \"1972 \u2013 1975, 1976 \u2013 1982\"", "question": "Name the most goals for  1972 \u2013 1975, 1976 \u2013 1982", "context": "CREATE TABLE table_24565004_19 (goals\u00b9 INTEGER, period VARCHAR)"}, {"answer": "SELECT period FROM table_24565004_19 WHERE nationality\u00b2 = \"Uruguay\"", "question": "Name the period for uruguay", "context": "CREATE TABLE table_24565004_19 (period VARCHAR, nationality\u00b2 VARCHAR)"}, {"answer": "SELECT position FROM table_24565004_19 WHERE period = \"1980 \u2013 1987\"", "question": "Name the position for  1980 \u2013 1987", "context": "CREATE TABLE table_24565004_19 (position VARCHAR, period VARCHAR)"}, {"answer": "SELECT position FROM table_24565004_3 WHERE name = \"Pierre Bajoc\"", "question": "which position did pierre bajoc play?", "context": "CREATE TABLE table_24565004_3 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT period FROM table_24565004_3 WHERE name = \"Albert Baning\"", "question": "during which period did albert baning play?", "context": "CREATE TABLE table_24565004_3 (period VARCHAR, name VARCHAR)"}, {"answer": "SELECT goals\u00b9 FROM table_24565004_8 WHERE name = \"Xavier Gravelaine\"", "question": "What is the number of goals if the name is Xavier Gravelaine?", "context": "CREATE TABLE table_24565004_8 (goals\u00b9 VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality\u00b2 FROM table_24565004_8 WHERE name = \"Patrick Grappin\"", "question": "If the name is Patrick Grappin, what is the nationality?", "context": "CREATE TABLE table_24565004_8 (nationality\u00b2 VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(period) FROM table_24565004_8 WHERE name = \"Gerald\u00e3o\"", "question": "What is the period total number if the name is Gerald\u00e3o?", "context": "CREATE TABLE table_24565004_8 (period VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality\u00b2 FROM table_24565004_8 WHERE appearances\u00b9 = 29", "question": "What is the nationality if the appearance is 29?", "context": "CREATE TABLE table_24565004_8 (nationality\u00b2 VARCHAR, appearances\u00b9 VARCHAR)"}, {"answer": "SELECT concacaf FROM table_245694_4 WHERE season = 2010", "question": "Name the concacaf for 2010 season", "context": "CREATE TABLE table_245694_4 (concacaf VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_245694_4 WHERE us_open_cup = \"Round of 32\"", "question": "Name the least season for round of 32", "context": "CREATE TABLE table_245694_4 (season INTEGER, us_open_cup VARCHAR)"}, {"answer": "SELECT COUNT(playoffs) FROM table_245694_4 WHERE concacaf = \"Semifinals\"", "question": "Name the number of playoffs for semifinals", "context": "CREATE TABLE table_245694_4 (playoffs VARCHAR, concacaf VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_24596664_1 WHERE position = \"18th\"", "question": "Name the number of season for 18th position", "context": "CREATE TABLE table_24596664_1 (season VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_24596664_1", "question": "Name the least wins", "context": "CREATE TABLE table_24596664_1 (wins INTEGER)"}, {"answer": "SELECT COUNT(language_of_films) FROM table_2461720_1 WHERE theatre_name = \"M\u00e9ga-Plex Taschereau IMAX\"", "question": "Name the total number of language of films for m\u00e9ga-plex taschereau imax", "context": "CREATE TABLE table_2461720_1 (language_of_films VARCHAR, theatre_name VARCHAR)"}, {"answer": "SELECT theatre_name FROM table_2461720_1 WHERE language_of_films = \"French\"", "question": "Name the theatre name for french", "context": "CREATE TABLE table_2461720_1 (theatre_name VARCHAR, language_of_films VARCHAR)"}, {"answer": "SELECT location FROM table_2461720_1 WHERE theatre_name = \"M\u00e9ga-Plex Taschereau IMAX\"", "question": "Name the location for democratic m\u00e9ga-plex taschereau imax", "context": "CREATE TABLE table_2461720_1 (location VARCHAR, theatre_name VARCHAR)"}, {"answer": "SELECT no FROM table_24625467_1 WHERE production_code = \"2J5352\"", "question": "What episode number has 2j5352 as a production code?", "context": "CREATE TABLE table_24625467_1 (no VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_24625467_1 WHERE production_code = \"2J5356\"", "question": "What date did the episode with a production code of 2j5356 originally air?", "context": "CREATE TABLE table_24625467_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT winning_boat FROM table_24673710_1 WHERE year = 2012", "question": "When 2012 is the year what is the winning boat?", "context": "CREATE TABLE table_24673710_1 (winning_boat VARCHAR, year VARCHAR)"}, {"answer": "SELECT winning_boat FROM table_24673710_1 WHERE entries = 64", "question": "When 64 is the entries what is the winning boat?", "context": "CREATE TABLE table_24673710_1 (winning_boat VARCHAR, entries VARCHAR)"}, {"answer": "SELECT winning_boat FROM table_24673710_1 WHERE entries = 61", "question": "When 61 is the entries what is the winning boat?", "context": "CREATE TABLE table_24673710_1 (winning_boat VARCHAR, entries VARCHAR)"}, {"answer": "SELECT title FROM table_2468961_2 WHERE original_air_date = \"October 18, 1991\"", "question": "What is the name of the episode that aired originally on October 18, 1991?", "context": "CREATE TABLE table_2468961_2 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_2468961_2 WHERE written_by = \"Ross Brown\"", "question": "What is the name of the episode written by Ross Brown?", "context": "CREATE TABLE table_2468961_2 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_2468961_2 WHERE original_air_date = \"February 28, 1992\"", "question": "What episode number in the series originally aired on February 28, 1992?", "context": "CREATE TABLE table_2468961_2 (no_in_series INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2468961_2 WHERE production_code = 447004", "question": "What date did the episode with a production code of 447004 originally air?", "context": "CREATE TABLE table_2468961_2 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_2468961_2 WHERE written_by = \"Ross Brown\"", "question": "How many episodes were written by Ross brown?", "context": "CREATE TABLE table_2468961_2 (no_in_series VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_2468961_3 WHERE no_in_season = 2", "question": "What number in the series was episode 2 in the season?", "context": "CREATE TABLE table_2468961_3 (no_in_series INTEGER, no_in_season VARCHAR)"}, {"answer": "SELECT title FROM table_2468961_3 WHERE written_by = \"Bob Rosenfarb\" AND directed_by = \"Richard Correll\"", "question": "What was the title of the episode written by Bob Rosenfarb and directed by Richard Correll?", "context": "CREATE TABLE table_2468961_3 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT university FROM table_24697604_1 WHERE year_founded = 1898", "question": "What university was founded in 1898?", "context": "CREATE TABLE table_24697604_1 (university VARCHAR, year_founded VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_2472711_32 WHERE total = 221902", "question": "What is the maximum average associated with a total of 221902?", "context": "CREATE TABLE table_2472711_32 (average INTEGER, total VARCHAR)"}, {"answer": "SELECT COUNT(hosted) FROM table_2472711_32 WHERE highest = 42659", "question": "How many values of hosted have a highest value of 42659?", "context": "CREATE TABLE table_2472711_32 (hosted VARCHAR, highest VARCHAR)"}, {"answer": "SELECT COUNT(up_down) FROM table_2472711_32 WHERE total = 301470", "question": "How many values of up/down have a total value of exactly 301470?", "context": "CREATE TABLE table_2472711_32 (up_down VARCHAR, total VARCHAR)"}, {"answer": "SELECT up_down FROM table_2472711_32 WHERE venue = \"Subiaco Oval\"", "question": "What is the up/down associated with the Subiaco Oval?", "context": "CREATE TABLE table_2472711_32 (up_down VARCHAR, venue VARCHAR)"}, {"answer": "SELECT team FROM table_24765815_1 WHERE rank = \"7th\"", "question": "What team was ranked in 7th?", "context": "CREATE TABLE table_24765815_1 (team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT player FROM table_24765815_1 WHERE opponent = \"Blackburn Rovers\"", "question": "Which player had an opponent of Blackburn Rovers?", "context": "CREATE TABLE table_24765815_1 (player VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_24765815_1 WHERE rank = \"1st\"", "question": "What was the score for the 1st ranked team?", "context": "CREATE TABLE table_24765815_1 (score VARCHAR, rank VARCHAR)"}, {"answer": "SELECT player FROM table_24765815_1 WHERE vote_percentage = \"7.85%\"", "question": "What was the name of the player that had a vote percentage of 7.85%?", "context": "CREATE TABLE table_24765815_1 (player VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_24798489_1 WHERE challenge = \"Three overstuffed sandwiches\"", "question": "What is the original airdate of the episode where the challenge was three overstuffed sandwiches? ", "context": "CREATE TABLE table_24798489_1 (original_airdate VARCHAR, challenge VARCHAR)"}, {"answer": "SELECT challenge_winner FROM table_24798489_1 WHERE original_airdate = \"January 28, 2009\"", "question": "Who was the challenge winner in the episode that originally aired on January 28, 2009?", "context": "CREATE TABLE table_24798489_1 (challenge_winner VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT COUNT(episode_number) FROM table_24798489_1 WHERE location = \"New York, New York\"", "question": "How many episodes had New York, New York as the location?", "context": "CREATE TABLE table_24798489_1 (episode_number VARCHAR, location VARCHAR)"}, {"answer": "SELECT to_par FROM table_247955_2 WHERE winning_score = 67 - 64 - 63 - 71 - 66 = 331", "question": "What were the shots below par when the winning score was 67-64-63-71-66=331?", "context": "CREATE TABLE table_247955_2 (to_par VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT to_par FROM table_247955_2 WHERE winning_score = 69 - 66 - 69 - 64 = 268", "question": "What were the shots below par when the winning score was 69-66-69-64=268?", "context": "CREATE TABLE table_247955_2 (to_par VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_247955_2 WHERE runner_s__up = \"Jonathan Kaye\"", "question": "What is the total number of to par when runner-up was Jonathan Kaye?", "context": "CREATE TABLE table_247955_2 (to_par VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_247955_2 WHERE runner_s__up = \"K. J. Choi\"", "question": "What was the margin of victory when runner-up was K. J. Choi?", "context": "CREATE TABLE table_247955_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_247955_2 WHERE no = 7", "question": "What was the date for no. 7?", "context": "CREATE TABLE table_247955_2 (date VARCHAR, no VARCHAR)"}, {"answer": "SELECT team FROM table_24784769_1 WHERE total_points = 342", "question": "Which team had 342 total points? ", "context": "CREATE TABLE table_24784769_1 (team VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT round3 FROM table_24784769_1 WHERE total_points = 325", "question": "How many points did the team who had 325 total points have in round 3? ", "context": "CREATE TABLE table_24784769_1 (round3 VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT MAX(round4) FROM table_24784769_1", "question": "What is the most amount of points any team had in round 4? ", "context": "CREATE TABLE table_24784769_1 (round4 INTEGER)"}, {"answer": "SELECT MAX(round1) FROM table_24784769_1 WHERE total_points = 132", "question": "How many points did the team who had 132 total points have in round 1? ", "context": "CREATE TABLE table_24784769_1 (round1 INTEGER, total_points VARCHAR)"}, {"answer": "SELECT opponent FROM table_24786958_2 WHERE attendance = 30701", "question": "Who did Rhein Fire play Against where 30701 people attended?", "context": "CREATE TABLE table_24786958_2 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_24786958_2 WHERE kickoff = \"6:00 p.m.\"", "question": "What week had kickoff time at 6:00 p.m.?", "context": "CREATE TABLE table_24786958_2 (week INTEGER, kickoff VARCHAR)"}, {"answer": "SELECT game_site FROM table_24786958_2 WHERE date = \"Sunday, May 27\"", "question": "Where was the game played that was on Sunday, May 27?", "context": "CREATE TABLE table_24786958_2 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_24786958_2 WHERE game_site = \"Jahn-Sportpark\"", "question": "How many people attended the game at Jahn-sportpark?", "context": "CREATE TABLE table_24786958_2 (attendance INTEGER, game_site VARCHAR)"}, {"answer": "SELECT COUNT(final_score) FROM table_24786958_2 WHERE game_site = \"Amsterdam ArenA\"", "question": "How many final scores were there on the game at Amsterdam arena?", "context": "CREATE TABLE table_24786958_2 (final_score VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT group FROM table_24850630_4 WHERE race = \"British Champion Stakes\"", "question": "What was the group in the British Champion Stakes? ", "context": "CREATE TABLE table_24850630_4 (group VARCHAR, race VARCHAR)"}, {"answer": "SELECT weight FROM table_24850630_4 WHERE venue = \"Sandown Park\"", "question": "What was the weight of the jockey at Sandown Park? ", "context": "CREATE TABLE table_24850630_4 (weight VARCHAR, venue VARCHAR)"}, {"answer": "SELECT distance FROM table_24850630_4 WHERE race = \"Mooresbridge Stakes\"", "question": "What is the distance of the Mooresbridge Stakes race? ", "context": "CREATE TABLE table_24850630_4 (distance VARCHAR, race VARCHAR)"}, {"answer": "SELECT winner_2nd FROM table_24850630_4 WHERE race = \"British Champion Stakes\"", "question": "who was the winner /2nd for the British Champion Stakes race? ", "context": "CREATE TABLE table_24850630_4 (winner_2nd VARCHAR, race VARCHAR)"}, {"answer": "SELECT COUNT(venue) FROM table_24850630_3 WHERE race = \"Mackinnon Stakes\"", "question": "The MacKinnon Stakes races took place on how many venues?", "context": "CREATE TABLE table_24850630_3 (venue VARCHAR, race VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_24856090_1 WHERE hk_viewers = \"1.97 million\"", "question": "What is the largest average for the episode with 1.97 million Hong Kong viewers?", "context": "CREATE TABLE table_24856090_1 (average INTEGER, hk_viewers VARCHAR)"}, {"answer": "SELECT english_title FROM table_24856090_1 WHERE hk_viewers = \"1.92 million\"", "question": "What is the English title of the episode with 1.92 million Hong Kong viewers?", "context": "CREATE TABLE table_24856090_1 (english_title VARCHAR, hk_viewers VARCHAR)"}, {"answer": "SELECT MAX(premiere) FROM table_24856090_1 WHERE english_title = \"The Mysteries of Love\"", "question": "What is the premiere number for the episode titled \"The Mysteries of Love\" in English?", "context": "CREATE TABLE table_24856090_1 (premiere INTEGER, english_title VARCHAR)"}, {"answer": "SELECT chinese_title FROM table_24856090_1 WHERE hk_viewers = \"1.97 million\"", "question": "What is the Chinese name of the episode with 1.97 million Hong Kong viewers?", "context": "CREATE TABLE table_24856090_1 (chinese_title VARCHAR, hk_viewers VARCHAR)"}, {"answer": "SELECT home_team FROM table_24887326_7 WHERE away_team = \"Fulham\"", "question": "Who was the home team when the away team was fulham?", "context": "CREATE TABLE table_24887326_7 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_24887326_7 WHERE away_team = \"Stoke City\"", "question": "What was the attendance of the game where Stoke city was the away team?", "context": "CREATE TABLE table_24887326_7 (attendance INTEGER, away_team VARCHAR)"}, {"answer": "SELECT COUNT(tie_no) FROM table_24887326_7 WHERE away_team = \"Millwall\"", "question": "When the away team is Millwall, what is the total possible amount of tie numbers?", "context": "CREATE TABLE table_24887326_7 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_24887326_7 WHERE away_team = \"Birmingham City\"", "question": "What is the date of the game played with Birmingham City as the away team?", "context": "CREATE TABLE table_24887326_7 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_24910742_1 WHERE no_in_season = 18", "question": "What was the airdate of episode number 18?", "context": "CREATE TABLE table_24910742_1 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT title FROM table_24910742_1 WHERE us_viewers__millions_ = \"9.64\"", "question": "What was the title of the episode having exactly 9.64 million US viewers?", "context": "CREATE TABLE table_24910742_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT jockey FROM table_24915874_1 WHERE weight__kg_ = \"53.5\"", "question": "For which jockey was the weight in kg 53.5? ", "context": "CREATE TABLE table_24915874_1 (jockey VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT trainer FROM table_24915874_1 WHERE jockey = \"Luke Nolen\"", "question": "Who was the trainer when the jockey was Luke Nolen?", "context": "CREATE TABLE table_24915874_1 (trainer VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT placing FROM table_24915874_1 WHERE jockey = \"Damien Oliver\"", "question": "What was the placing when the jockey was Damien Oliver?", "context": "CREATE TABLE table_24915874_1 (placing VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT placing FROM table_24915874_1 WHERE weight__kg_ = \"58.0\"", "question": "What was the placing when the weight in kg was 58.0?", "context": "CREATE TABLE table_24915874_1 (placing VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT horse FROM table_24915874_1 WHERE jockey = \"Peter Wells\"", "question": "Who was the horse when the jockey was Peter Wells? ", "context": "CREATE TABLE table_24915874_1 (horse VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT weight__kg_ FROM table_24915874_1 WHERE horse = \"Alcopop\"", "question": "What was the weight in kg when the horse was Alcopop? ", "context": "CREATE TABLE table_24915874_1 (weight__kg_ VARCHAR, horse VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_24918268_2 WHERE opponent = \"Barcelona Dragons\"", "question": "How many weeks are teams playing agains the Barcelona dragons?", "context": "CREATE TABLE table_24918268_2 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT final_score FROM table_24918268_2 WHERE kickoff = \"6:00 p.m.\"", "question": "What was the score for the game that kicked off at 6:00 p.m.?", "context": "CREATE TABLE table_24918268_2 (final_score VARCHAR, kickoff VARCHAR)"}, {"answer": "SELECT opponent FROM table_24918268_2 WHERE date = \"Sunday, June 9\"", "question": "Who are the opponents for games on Sunday, June 9?", "context": "CREATE TABLE table_24918268_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT fat__g_ FROM table_2493389_1 WHERE protein__g_ = \"4\" AND calories__1_tbsp__ = 80", "question": "Name the fat for protein being 4 and calories 80", "context": "CREATE TABLE table_2493389_1 (fat__g_ VARCHAR, protein__g_ VARCHAR, calories__1_tbsp__ VARCHAR)"}, {"answer": "SELECT COUNT(butter) FROM table_2493389_1 WHERE protein__g_ = \"3\"", "question": "Name the number of butters for 3 protein", "context": "CREATE TABLE table_2493389_1 (butter VARCHAR, protein__g_ VARCHAR)"}, {"answer": "SELECT calcium__mg_ FROM table_2493389_1 WHERE fat__g_ = \"6.5\"", "question": "Name the calcium for fat being 6.5", "context": "CREATE TABLE table_2493389_1 (calcium__mg_ VARCHAR, fat__g_ VARCHAR)"}, {"answer": "SELECT COUNT(county_ies__)[a_] FROM table_249512_2 WHERE place_name = \"Macedonia\"", "question": "How many counties have a place name of Macedonia?", "context": "CREATE TABLE table_249512_2 (a_ VARCHAR, county_ies__ VARCHAR, place_name VARCHAR)"}, {"answer": "SELECT COUNT(land_area__2010_) FROM table_249512_2 WHERE place_name = \"Ballplay\"", "question": "What is the number of land areas that have a place name of Ballplay?", "context": "CREATE TABLE table_249512_2 (land_area__2010_ VARCHAR, place_name VARCHAR)"}, {"answer": "SELECT MIN(population__2010_) FROM table_249512_2 WHERE place_name = \"Edgewater\"", "question": "What is the minimum 2010 population of Edgewater?", "context": "CREATE TABLE table_249512_2 (population__2010_ INTEGER, place_name VARCHAR)"}, {"answer": "SELECT MIN(09 AS _10_i_o_best) FROM table_24990183_5", "question": "What is the lowest 09-10 i/o best?", "context": "CREATE TABLE table_24990183_5 (Id VARCHAR)"}, {"answer": "SELECT country FROM table_24990183_5 WHERE name = \"Akiko Suzuki\"", "question": "Which country is akiko suzuki from?", "context": "CREATE TABLE table_24990183_5 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT 08 AS _09_i_o_best FROM table_24990183_5 WHERE ws_points = 1386", "question": "What was the 08-09 i/o best of the player with 1386 points?", "context": "CREATE TABLE table_24990183_5 (ws_points VARCHAR)"}, {"answer": "SELECT COUNT(09 AS _10_oi_best) FROM table_24990183_5 WHERE ws_points = 949", "question": "What was the 09-10 oi best of the player with 949 points?", "context": "CREATE TABLE table_24990183_5 (ws_points VARCHAR)"}, {"answer": "SELECT name FROM table_24990183_5 WHERE country = \"Georgia\"", "question": "Who was the player from georgia?", "context": "CREATE TABLE table_24990183_5 (name VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(minutes) FROM table_25016555_5 WHERE player = \"Tracy Reid\"", "question": "When tracy reid is the player what is the highest amount of minutes?", "context": "CREATE TABLE table_25016555_5 (minutes INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(assists) FROM table_25016555_5", "question": "What is the lowest overall amount of assists?", "context": "CREATE TABLE table_25016555_5 (assists INTEGER)"}, {"answer": "SELECT MIN(minutes) FROM table_25016555_5 WHERE player = \"Sandy Brondello\"", "question": "When sandy brondello is the player what is the lowest amount of minutes?", "context": "CREATE TABLE table_25016555_5 (minutes INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(blocks) FROM table_25016555_5 WHERE assists = 21", "question": "When 21 is the number of assists how many sets of blocks are there?", "context": "CREATE TABLE table_25016555_5 (blocks VARCHAR, assists VARCHAR)"}, {"answer": "SELECT candidates FROM table_25030512_12 WHERE district = \"Florida 7\" AND first_elected = \"2010\"", "question": "When 2010 is the first elected and Florida 7 is the district who are the candidates?", "context": "CREATE TABLE table_25030512_12 (candidates VARCHAR, district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_25030512_12 WHERE incumbent = \"Bill Young Redistricted from the 10th district\"", "question": "When bill young redistricted from the 10th district is the incumbent what is the party?", "context": "CREATE TABLE table_25030512_12 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_25030512_12 WHERE candidates = \"Dennis Ross (R) unopposed\"", "question": "When dennis ross (r) unopposed is the candidate what is the party?", "context": "CREATE TABLE table_25030512_12 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_25030512_12 WHERE first_elected = \"None (New seat)\"", "question": "When none (new seat) is the first elected who are the candidates?", "context": "CREATE TABLE table_25030512_12 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT viewing_figures_millions FROM table_2501754_4 WHERE prod_code = \"ICEC483X\"", "question": "How many millions of people watched the episode with a production code of icec483x?", "context": "CREATE TABLE table_2501754_4 (viewing_figures_millions VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT MIN(episode__number) FROM table_2501754_4", "question": "What is the lowest episode number?", "context": "CREATE TABLE table_2501754_4 (episode__number INTEGER)"}, {"answer": "SELECT MIN(episode__number) FROM table_2501754_4 WHERE viewing_figures_millions = \"6.19\" AND prod_code = \"ICEC487Y\"", "question": "What is the lowest episode number with 6.19 million viewers and a production code of icec487y?", "context": "CREATE TABLE table_2501754_4 (episode__number INTEGER, viewing_figures_millions VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT prod_code FROM table_2501754_3 WHERE viewing_figures_millions = \"5.55\"", "question": "List the production code for the episode had 5.55 million viewers?", "context": "CREATE TABLE table_2501754_3 (prod_code VARCHAR, viewing_figures_millions VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_2501754_3 WHERE prod_code = \"ICEB786E\"", "question": "List the 1st air date for the episode with a iceb786e production code.", "context": "CREATE TABLE table_2501754_3 (original_airdate VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT party FROM table_25030512_24 WHERE first_elected = \"1998\"", "question": "Name the party for 1998 first elected", "context": "CREATE TABLE table_25030512_24 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_25030512_24 WHERE incumbent = \"Barney Frank\"", "question": "Name the result for barney frank", "context": "CREATE TABLE table_25030512_24 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_25030512_24 WHERE first_elected = \"1976\"", "question": "Name the candidates for first elected being 1976", "context": "CREATE TABLE table_25030512_24 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_25030512_24 WHERE first_elected = \"1998\"", "question": "Name the total number of districts for first elected being 1998", "context": "CREATE TABLE table_25030512_24 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_25030512_24 WHERE first_elected = \"1998\"", "question": "Name the result for 1998", "context": "CREATE TABLE table_25030512_24 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_25030512_24 WHERE first_elected = \"1998\"", "question": "Name the candidates for 1998", "context": "CREATE TABLE table_25030512_24 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_2503102_1 WHERE engine = \"Chevrolet\" AND car_sponsor_s_ = \"GoDaddy.com\"", "question": "Who is the driver of the Chevrolet engine that is sponsored by godaddy.com?", "context": "CREATE TABLE table_2503102_1 (driver_s_ VARCHAR, engine VARCHAR, car_sponsor_s_ VARCHAR)"}, {"answer": "SELECT engine FROM table_2503102_1 WHERE car_sponsor_s_ = \"Fuzzy's Ultra Premium Vodka\"", "question": "What engine does the Fuzzy's Ultra Premium Vodka sponsored car use?", "context": "CREATE TABLE table_2503102_1 (engine VARCHAR, car_sponsor_s_ VARCHAR)"}, {"answer": "SELECT engine FROM table_2503102_1 WHERE team = \"Ed Carpenter Racing\"", "question": "What engine doe the Ed Carpenter Racing team use?", "context": "CREATE TABLE table_2503102_1 (engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_2503102_1 WHERE car_sponsor_s_ = \"HydroxyCut\"", "question": "What team is sponsored by hydroxycut?", "context": "CREATE TABLE table_2503102_1 (team VARCHAR, car_sponsor_s_ VARCHAR)"}, {"answer": "SELECT COUNT(below_50_percentage_of_median_income) FROM table_25042332_16 WHERE below_40_percentage_of_median_income = \"10.4%\"", "question": "What percentage of the population is below 50% of the median income in the region where 10.4% of the population earns below 40% of the median income?", "context": "CREATE TABLE table_25042332_16 (below_50_percentage_of_median_income VARCHAR, below_40_percentage_of_median_income VARCHAR)"}, {"answer": "SELECT MIN(median_income___intl) AS $__ FROM table_25042332_16 WHERE below_60_percentage_of_median_income = \"24.4%\"", "question": "What is the median income for the region where 24.4% pf people make below 60% of the median income?", "context": "CREATE TABLE table_25042332_16 (median_income___intl INTEGER, below_60_percentage_of_median_income VARCHAR)"}, {"answer": "SELECT MIN(median_income___intl) AS $__ FROM table_25042332_16 WHERE region = \"Maule\"", "question": "What is the median income of Maule?", "context": "CREATE TABLE table_25042332_16 (median_income___intl INTEGER, region VARCHAR)"}, {"answer": "SELECT region FROM table_25042332_16 WHERE below_50_percentage_of_median_income = \"17.4%\"", "question": "In what region does 17.4% of the population make below 50% of the median income?", "context": "CREATE TABLE table_25042332_16 (region VARCHAR, below_50_percentage_of_median_income VARCHAR)"}, {"answer": "SELECT region FROM table_25042332_16 WHERE below_50_percentage_of_median_income = \"18.6%\"", "question": "In what region do 18.6% of the people make less than 50% of the median income?", "context": "CREATE TABLE table_25042332_16 (region VARCHAR, below_50_percentage_of_median_income VARCHAR)"}, {"answer": "SELECT MIN(gdp__ppp__per_capita__2008_) FROM table_25042332_33 WHERE combined_gross_enrollment_ratio__2009_ = \"89.0\"", "question": "What is the gdp per capita in 2008 for the region that had a combined gross enrollment ration of 89.0?", "context": "CREATE TABLE table_25042332_33 (gdp__ppp__per_capita__2008_ INTEGER, combined_gross_enrollment_ratio__2009_ VARCHAR)"}, {"answer": "SELECT region FROM table_25042332_33 WHERE life_expectancy_at_birth__2001_2002_ = \"77.9\"", "question": "Which region had a life expectancy at birth of 77.9 from 2001-2002?", "context": "CREATE TABLE table_25042332_33 (region VARCHAR, life_expectancy_at_birth__2001_2002_ VARCHAR)"}, {"answer": "SELECT MAX(gdp__ppp__per_capita__2008_) FROM table_25042332_33 WHERE combined_gross_enrollment_ratio__2009_ = \"86.6\"", "question": "What is the gdp per capita in 2008 for the region with a combined gross enrollment ratio of 86.6 in 2009?", "context": "CREATE TABLE table_25042332_33 (gdp__ppp__per_capita__2008_ INTEGER, combined_gross_enrollment_ratio__2009_ VARCHAR)"}, {"answer": "SELECT COUNT(combined_gross_enrollment_ratio__2009_) FROM table_25042332_33 WHERE hdi = \"0.896\"", "question": "How many regions had an hdi of 0.896?", "context": "CREATE TABLE table_25042332_33 (combined_gross_enrollment_ratio__2009_ VARCHAR, hdi VARCHAR)"}, {"answer": "SELECT COUNT(hdi) FROM table_25042332_33 WHERE life_expectancy_at_birth__2001_2002_ = \"75.9\"", "question": "How many regions had a life expectancy at birth in 2001-2002 of 75.9?", "context": "CREATE TABLE table_25042332_33 (hdi VARCHAR, life_expectancy_at_birth__2001_2002_ VARCHAR)"}, {"answer": "SELECT season FROM table_25058269_1 WHERE runner_up = \"Lase-R/Riga\"", "question": "In which season is the runner-up Lase-R/Riga?", "context": "CREATE TABLE table_25058269_1 (season VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT runner_up FROM table_25058269_1 WHERE season = \"2007\u201308\"", "question": "In season 2007\u201308 who is the runner-up?", "context": "CREATE TABLE table_25058269_1 (runner_up VARCHAR, season VARCHAR)"}, {"answer": "SELECT runner_up FROM table_25058269_1 WHERE season = \"2011\u201312\"", "question": "Who is the runner-up for season 2011\u201312?", "context": "CREATE TABLE table_25058269_1 (runner_up VARCHAR, season VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_25058269_1 WHERE season = \"2005\u201306\"", "question": "In season 2005\u201306, who is 3rd place?", "context": "CREATE TABLE table_25058269_1 (season VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_25085059_1 WHERE college = \"Kentucky\"", "question": "What draft pick number did Kentucky get?", "context": "CREATE TABLE table_25085059_1 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT position FROM table_25085059_1 WHERE pick__number = 6", "question": "What position was the number 6 draft pick?", "context": "CREATE TABLE table_25085059_1 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_25085059_1 WHERE position = \"OL\" AND college = \"North Dakota\"", "question": "What CFL team obtained a draft pick from North Dakota who plays OL position?", "context": "CREATE TABLE table_25085059_1 (cfl_team VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_25085059_1 WHERE cfl_team = \"Toronto Argonauts\"", "question": "What college did the Toronto Argonauts draft pick come from?", "context": "CREATE TABLE table_25085059_1 (college VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT player FROM table_25085059_1 WHERE pick__number = 1", "question": "What player was the number 1 draft pick?", "context": "CREATE TABLE table_25085059_1 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_25085059_1 WHERE college = \"North Dakota\"", "question": "What CFL team got their draft pick from North Dakota?", "context": "CREATE TABLE table_25085059_1 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_2508633_3 WHERE college = \"Tennessee\"", "question": "Which player went to college at Tennessee?", "context": "CREATE TABLE table_2508633_3 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_2508633_3 WHERE nfl_team = \"Kansas City Chiefs\"", "question": "Who was drafted by the Kansas City Chiefs? ", "context": "CREATE TABLE table_2508633_3 (player VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT player FROM table_2508633_3 WHERE nfl_team = \"Baltimore Colts\"", "question": "Who was drafted by the Baltimore Colts? ", "context": "CREATE TABLE table_2508633_3 (player VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT position FROM table_2508633_8 WHERE nfl_team = \"Minnesota Vikings\"", "question": "If the NFL team is the Minnesota Vikings, what is the position?", "context": "CREATE TABLE table_2508633_8 (position VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2508633_8 WHERE player = \"Gary Kubiak\"", "question": "What is the pick number if the player is Gary Kubiak?", "context": "CREATE TABLE table_2508633_8 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_2508633_8 WHERE player = \"Mark Bortz\"", "question": "What is the pick number minimum if the player is Mark Bortz?", "context": "CREATE TABLE table_2508633_8 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_2508633_8 WHERE nfl_team = \"San Diego Chargers\"", "question": "what is the pick number minimum if the NFL team is the San Diego Chargers?", "context": "CREATE TABLE table_2508633_8 (pick__number INTEGER, nfl_team VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_25131572_3 WHERE written_by = \"Daegan Fryklind\"", "question": "What is the highest season# for the writer Daegan Fryklind?", "context": "CREATE TABLE table_25131572_3 (season__number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT english_version FROM table_25173505_15 WHERE character = \"Drizella\"", "question": "Who voiced Drizella in the English version?", "context": "CREATE TABLE table_25173505_15 (english_version VARCHAR, character VARCHAR)"}, {"answer": "SELECT COUNT(name_of_bowl) FROM table_2517159_1 WHERE last_appearance = \"2006 Season\"", "question": "Name the name of bowl for 2006 season", "context": "CREATE TABLE table_2517159_1 (name_of_bowl VARCHAR, last_appearance VARCHAR)"}, {"answer": "SELECT last_appearance FROM table_2517159_1 WHERE name_of_bowl = \"Music City Bowl\"", "question": "Name the last appearance for music city bowl", "context": "CREATE TABLE table_2517159_1 (last_appearance VARCHAR, name_of_bowl VARCHAR)"}, {"answer": "SELECT record FROM table_2517159_1 WHERE name_of_bowl = \"Cotton Bowl Classic\"", "question": "Name the record for cotton bowl classic", "context": "CREATE TABLE table_2517159_1 (record VARCHAR, name_of_bowl VARCHAR)"}, {"answer": "SELECT COUNT(appearances) FROM table_2517159_1 WHERE name_of_bowl = \"Independence Bowl\"", "question": "Name the appearance for independence bowl", "context": "CREATE TABLE table_2517159_1 (appearances VARCHAR, name_of_bowl VARCHAR)"}, {"answer": "SELECT winning_team FROM table_25213146_2 WHERE circuit = \"circuit Zolder\"", "question": "On the Circuit Zolder who was the winning team?", "context": "CREATE TABLE table_25213146_2 (winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_25213146_2 WHERE winning_driver = \"Bruno Spengler\"", "question": "In what circuit was Bruno Spengler the winning driver?", "context": "CREATE TABLE table_25213146_2 (circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT COUNT(pole_position) FROM table_25213146_2 WHERE date = \"30 March\"", "question": "How many Pole Positions were there on 30 March?", "context": "CREATE TABLE table_25213146_2 (pole_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_25213146_2 WHERE round = 4", "question": "Where was the circuit for round 4?", "context": "CREATE TABLE table_25213146_2 (circuit VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_25213146_2 WHERE winning_team = \"Prema Powerteam\"", "question": "On what date(s) was the winning team Prema Powerteam?", "context": "CREATE TABLE table_25213146_2 (date VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT february_2010 FROM table_25256368_1 WHERE june_2010 = \"6.5%\"", "question": "Name the bed 2010 for 6.5%", "context": "CREATE TABLE table_25256368_1 (february_2010 VARCHAR, june_2010 VARCHAR)"}, {"answer": "SELECT february_2010 FROM table_25256368_1 WHERE january_2010 = \"6.2%\"", "question": "Name the feb 2010 for january 2010 for 6.2%", "context": "CREATE TABLE table_25256368_1 (february_2010 VARCHAR, january_2010 VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_25277262_2 WHERE no_in_season = 3", "question": "How many people directed episode 3 in the season?", "context": "CREATE TABLE table_25277262_2 (directed_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25277262_2 WHERE written_by = \"Mark Fink\"", "question": "If the writer is Mark Fink, who is the director?", "context": "CREATE TABLE table_25277262_2 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_25277262_2 WHERE no_in_season = 11", "question": "What is the name of the episode # 11 in the season?", "context": "CREATE TABLE table_25277262_2 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25277296_2 WHERE no_in_season = 11", "question": "Who was the director of episode 11 based on season?", "context": "CREATE TABLE table_25277296_2 (directed_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT reidsville FROM table_25330991_3 WHERE information = \"Enrollment\"", "question": "Name the reidsville for enrollment", "context": "CREATE TABLE table_25330991_3 (reidsville VARCHAR, information VARCHAR)"}, {"answer": "SELECT james_e_holmes FROM table_25330991_3 WHERE reidsville = \"Erselle Young\"", "question": "Name the james e. holmes for erselle young", "context": "CREATE TABLE table_25330991_3 (james_e_holmes VARCHAR, reidsville VARCHAR)"}, {"answer": "SELECT james_e_holmes FROM table_25330991_3 WHERE western_rockingham_middle_school = \"Duane Hensley\"", "question": "Name the james e. holmes for duane hensley", "context": "CREATE TABLE table_25330991_3 (james_e_holmes VARCHAR, western_rockingham_middle_school VARCHAR)"}, {"answer": "SELECT james_e_holmes FROM table_25330991_3 WHERE rockingham_county = \"Joe Baez\"", "question": "Name the james e. holmes for joe baez", "context": "CREATE TABLE table_25330991_3 (james_e_holmes VARCHAR, rockingham_county VARCHAR)"}, {"answer": "SELECT time__et_ FROM table_2534387_10 WHERE entries = \"907\"", "question": "Name the time for entries being 907", "context": "CREATE TABLE table_2534387_10 (time__et_ VARCHAR, entries VARCHAR)"}, {"answer": "SELECT entries FROM table_2534387_10 WHERE elapsed_time = \"6 h 23 min\"", "question": "Name the entries for 6 h 23 min elapsed time", "context": "CREATE TABLE table_2534387_10 (entries VARCHAR, elapsed_time VARCHAR)"}, {"answer": "SELECT prize AS Pool FROM table_2534387_10 WHERE entries = \"706 (481 R, 346 A)\"", "question": "Name the prize pool for 706 (481 r, 346 a)", "context": "CREATE TABLE table_2534387_10 (prize VARCHAR, entries VARCHAR)"}, {"answer": "SELECT COUNT(date_of_death) FROM table_25345002_1 WHERE date_of_birth = \"1938-08-30 30 August 1938\"", "question": "What are the dates of death of those politicians whose date of birth 1938-08-30 30 august 1938?", "context": "CREATE TABLE table_25345002_1 (date_of_death VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT COUNT(winner) FROM table_2534387_11 WHERE event__number = 5", "question": "If the event number is 5, what is the winner total number?", "context": "CREATE TABLE table_2534387_11 (winner VARCHAR, event__number VARCHAR)"}, {"answer": "SELECT prize AS Pool FROM table_2534387_11 WHERE entries = \"1,132\"", "question": "What is the prize pool if the entries is 1,132?", "context": "CREATE TABLE table_2534387_11 (prize VARCHAR, entries VARCHAR)"}, {"answer": "SELECT MIN(season__number) FROM table_25363904_2 WHERE title_english = \"The first time\"", "question": "Name the least season # for the first time", "context": "CREATE TABLE table_25363904_2 (season__number INTEGER, title_english VARCHAR)"}, {"answer": "SELECT MIN(season__number) FROM table_25363904_2 WHERE title_english = \"Two marriage proposals\"", "question": "Name the least season number for two marriage proposals", "context": "CREATE TABLE table_25363904_2 (season__number INTEGER, title_english VARCHAR)"}, {"answer": "SELECT episode_number FROM table_25391981_20 WHERE episode = \"Week 4, Part 1\"", "question": "What number episode was Week 4, Part 1? ", "context": "CREATE TABLE table_25391981_20 (episode_number VARCHAR, episode VARCHAR)"}, {"answer": "SELECT episode FROM table_25391981_20 WHERE rating / SHARE(18 AS \u201349) = 2.8 / 8", "question": "For what episode was the rating/share for 18-49 at 2.8/8", "context": "CREATE TABLE table_25391981_20 (episode VARCHAR, rating VARCHAR)"}, {"answer": "SELECT episode_number FROM table_25391981_20 WHERE episode = \"Week 4, Part 2\"", "question": "What number episode was Week 4, Part 2?", "context": "CREATE TABLE table_25391981_20 (episode_number VARCHAR, episode VARCHAR)"}, {"answer": "SELECT viewers__millions_ FROM table_25391981_20 WHERE episode_number = \"10.18\"", "question": "How many viewers in millions watched the episode with the number 10.18?", "context": "CREATE TABLE table_25391981_20 (viewers__millions_ VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT rating / SHARE(18 AS \u201349) FROM table_25391981_20 WHERE episode = \"Week 6, Part 1\"", "question": "What is the rating/share for 18-49 for Week 6, Part 1?", "context": "CREATE TABLE table_25391981_20 (rating VARCHAR, episode VARCHAR)"}, {"answer": "SELECT weekly_rank FROM table_25391981_20 WHERE share = \"14\" AND original_airdate = \"April 20, 2010\"", "question": "What is the weekly rank of the episode with a 14 share whose original airdate was April 20, 2010? ", "context": "CREATE TABLE table_25391981_20 (weekly_rank VARCHAR, share VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT form__to_sing_ FROM table_25401_2 WHERE brazilian_portuguese = \"[k\u0250\u0303\u02c8t\u1ebdmus]\"", "question": "What is the form (\"to sing\") when brazilian portuguese is [k\u0250\u0303\u02c8t\u1ebdmus]?", "context": "CREATE TABLE table_25401_2 (form__to_sing_ VARCHAR, brazilian_portuguese VARCHAR)"}, {"answer": "SELECT romanian FROM table_25401_2 WHERE nuorese_sardinian = \"[\u02c8kantata]\"", "question": "what is romanian when nuorese sardinian is [\u02c8kantata]?", "context": "CREATE TABLE table_25401_2 (romanian VARCHAR, nuorese_sardinian VARCHAR)"}, {"answer": "SELECT romanian FROM table_25401_2 WHERE nuorese_sardinian = \"[\u02c8kantaza]\"", "question": "what is romanian when nuorese sardinian is [\u02c8kantaza]?", "context": "CREATE TABLE table_25401_2 (romanian VARCHAR, nuorese_sardinian VARCHAR)"}, {"answer": "SELECT result FROM table_25505246_7 WHERE opponent = \"Andreja Klepa\u010d\"", "question": "What were the results when Hanne Skak Jensen faced Andreja Klepa\u010d as opponent?", "context": "CREATE TABLE table_25505246_7 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_25505246_7 WHERE against = \"Belarus\"", "question": "Who was Hanne Skak Jensen's opponent when facing Belarus?", "context": "CREATE TABLE table_25505246_7 (opponent VARCHAR, against VARCHAR)"}, {"answer": "SELECT round FROM table_25505246_7 WHERE against = \"Austria\"", "question": "What kind of round was played when Hanne Skak Jensen faced Austria?", "context": "CREATE TABLE table_25505246_7 (round VARCHAR, against VARCHAR)"}, {"answer": "SELECT result FROM table_25505246_7 WHERE against = \"Austria\"", "question": "What were the round results when Hanne Skak Jensen faced Austria?", "context": "CREATE TABLE table_25505246_7 (result VARCHAR, against VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_25517718_3 WHERE player = \"Boggs\"", "question": "How many touchdowns does Boggs have?", "context": "CREATE TABLE table_25517718_3 (touchdowns INTEGER, player VARCHAR)"}, {"answer": "SELECT starter FROM table_25517718_3 WHERE position = \"Right halfback\"", "question": "Is the right halfback player a starter?", "context": "CREATE TABLE table_25517718_3 (starter VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_25517718_3 WHERE player = \"Boggs\"", "question": "What position does Boggs play?", "context": "CREATE TABLE table_25517718_3 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(extra_points) FROM table_25517718_3 WHERE position = \"Left halfback\"", "question": "What is the smallest number of extra points for a left halfback?", "context": "CREATE TABLE table_25517718_3 (extra_points INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(extra_points) FROM table_25517718_3", "question": "What is the smallest number of extra points?", "context": "CREATE TABLE table_25517718_3 (extra_points INTEGER)"}, {"answer": "SELECT COUNT(starter) FROM table_25517718_3 WHERE position = \"Right tackle\"", "question": "How many starters are there at right tackle?", "context": "CREATE TABLE table_25517718_3 (starter VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(mls_team) FROM table_25518547_4 WHERE player = \"Jamel Wallace\"", "question": "How many mls teams had player jamel wallace?", "context": "CREATE TABLE table_25518547_4 (mls_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT affiliation FROM table_25518547_4 WHERE player = \"Kwaku Nyamekye\"", "question": "What university is kwaku nyamekye affiliated with?", "context": "CREATE TABLE table_25518547_4 (affiliation VARCHAR, player VARCHAR)"}, {"answer": "SELECT affiliation FROM table_25518547_4 WHERE mls_team = \"Houston Dynamo\"", "question": "What university is houston dynamo affiliated with?", "context": "CREATE TABLE table_25518547_4 (affiliation VARCHAR, mls_team VARCHAR)"}, {"answer": "SELECT position FROM table_25518547_4 WHERE pick__number = 63", "question": "What is the position of pick # 63?", "context": "CREATE TABLE table_25518547_4 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_25518547_4 WHERE affiliation = \"Indiana University\"", "question": "How many players are affiliated with indiana university?", "context": "CREATE TABLE table_25518547_4 (player VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_25538763_1", "question": "When was the earliest season of Juncadella's career?", "context": "CREATE TABLE table_25538763_1 (season INTEGER)"}, {"answer": "SELECT COUNT(poles) FROM table_25538763_1 WHERE season = 2012 AND points = \"252\"", "question": "How many pole data were given on season 2012 with 252 points?", "context": "CREATE TABLE table_25538763_1 (poles VARCHAR, season VARCHAR, points VARCHAR)"}, {"answer": "SELECT wins FROM table_25538763_1 WHERE team = \"Prema Powerteam\" AND points = \"240\"", "question": "How many wins did Prema Powerteam won with 240 points?", "context": "CREATE TABLE table_25538763_1 (wins VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_25539502_1 WHERE podiums = 1", "question": "What is the latest season where he had 1 podium? ", "context": "CREATE TABLE table_25539502_1 (season INTEGER, podiums VARCHAR)"}, {"answer": "SELECT position FROM table_25539502_1 WHERE team = \"FMS International\"", "question": "What was his position when the team was FMS International? ", "context": "CREATE TABLE table_25539502_1 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(races) FROM table_25539502_1 WHERE podiums = 11", "question": "What is the smallest number of races competed in with 11 podiums? ", "context": "CREATE TABLE table_25539502_1 (races INTEGER, podiums VARCHAR)"}, {"answer": "SELECT points FROM table_25561038_1 WHERE position = \"1st\"", "question": "List the total points for the 1st place team.", "context": "CREATE TABLE table_25561038_1 (points VARCHAR, position VARCHAR)"}, {"answer": "SELECT season FROM table_25561038_1 WHERE position = \"1st\"", "question": "List the year in which the driver was in 1st place.", "context": "CREATE TABLE table_25561038_1 (season VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(races) FROM table_25561038_1 WHERE points = \"15\"", "question": "How many series awarded 15 points?", "context": "CREATE TABLE table_25561038_1 (races VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(f_laps) FROM table_25561038_1", "question": "List the highest number of laps.", "context": "CREATE TABLE table_25561038_1 (f_laps INTEGER)"}, {"answer": "SELECT team FROM table_25561038_1 WHERE points = \"12\"", "question": "List the team with 12 points.", "context": "CREATE TABLE table_25561038_1 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT third FROM table_25563779_4 WHERE second = \"Sergey Sirotkin\"", "question": "If second is Sergey Sirotkin, what is the third name?", "context": "CREATE TABLE table_25563779_4 (third VARCHAR, second VARCHAR)"}, {"answer": "SELECT champion FROM table_25563779_4 WHERE third = \"Bruno Bonifacio\"", "question": "If the third name is Bruno Bonifacio, what is the champion?", "context": "CREATE TABLE table_25563779_4 (champion VARCHAR, third VARCHAR)"}, {"answer": "SELECT champion FROM table_25563779_4 WHERE national_trophy_rookie = \"not held\"", "question": "Who is the champion if the national trophy/rookie is not held?", "context": "CREATE TABLE table_25563779_4 (champion VARCHAR, national_trophy_rookie VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_25563779_4 WHERE national_trophy_rookie = \"Simone Iaquinta\"", "question": "If the national trophy/rookie is Simone Iaquinta, what is the season total number?", "context": "CREATE TABLE table_25563779_4 (season VARCHAR, national_trophy_rookie VARCHAR)"}, {"answer": "SELECT second FROM table_25563779_4 WHERE national_trophy_rookie = \"Gerrard Barrabeig\"", "question": "If the national trophy/rookie is Gerrard Barrabeig, what is the name of the second?", "context": "CREATE TABLE table_25563779_4 (second VARCHAR, national_trophy_rookie VARCHAR)"}, {"answer": "SELECT location FROM table_25572068_1 WHERE winning_driver = \"Nathana\u00ebl Berthon\"", "question": "What was the location when the winning driver was Nathana\u00ebl Berthon?", "context": "CREATE TABLE table_25572068_1 (location VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_25572068_1 WHERE series = \"FR2.0 11\"", "question": "Who was the winning driver in the FR2.0 11 series? ", "context": "CREATE TABLE table_25572068_1 (winning_driver VARCHAR, series VARCHAR)"}, {"answer": "SELECT circuit FROM table_25572068_1 WHERE series = \"FR3.5 11\"", "question": "What circuit was the FR3.5 11 series on? ", "context": "CREATE TABLE table_25572068_1 (circuit VARCHAR, series VARCHAR)"}, {"answer": "SELECT date FROM table_25572068_1 WHERE series = \"F4 7\"", "question": "When was the F4 7 series?", "context": "CREATE TABLE table_25572068_1 (date VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_25572068_1 WHERE winning_team = \"TDS Racing\" AND date = \"9 October\"", "question": "In what series was TDS Racing the winning team on 9 October? ", "context": "CREATE TABLE table_25572068_1 (series VARCHAR, winning_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT loa__metres_ FROM table_25594271_2 WHERE yacht = \"Ichi Ban\"", "question": "What were the LOA metres for the yacht ichi ban?", "context": "CREATE TABLE table_25594271_2 (loa__metres_ VARCHAR, yacht VARCHAR)"}, {"answer": "SELECT loa__metres_ FROM table_25594271_2 WHERE skipper = \"Lou Abrahams\"", "question": "How many LOA metres were there when the skipper is lou abrahams?", "context": "CREATE TABLE table_25594271_2 (loa__metres_ VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_25594271_2 WHERE sail_number = \"AUS 03\"", "question": "What is the position for sail number aus 03?", "context": "CREATE TABLE table_25594271_2 (position INTEGER, sail_number VARCHAR)"}, {"answer": "SELECT yacht FROM table_25594271_2 WHERE loa__metres_ = \"13.34\"", "question": "What yacht had LOA Metres of 13.34?", "context": "CREATE TABLE table_25594271_2 (yacht VARCHAR, loa__metres_ VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_25604014_8 WHERE no_in_series = 142", "question": "How many episodes in the season are episode 142 in the series?", "context": "CREATE TABLE table_25604014_8 (no_in_season VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT title FROM table_25604014_8 WHERE written_by = \"William M. Finkelstein\"", "question": "What is the name of the episode that William M. Finkelstein wrote?", "context": "CREATE TABLE table_25604014_8 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT artist_s_ FROM table_2560677_1 WHERE start_date = \"1966-10-23\"", "question": "Who was the artist with a start date of 1966-10-23?", "context": "CREATE TABLE table_2560677_1 (artist_s_ VARCHAR, start_date VARCHAR)"}, {"answer": "SELECT end_date FROM table_2560677_1 WHERE artist_s_ = \"S. Moldoff/J. Giella/C. Infantino\"", "question": "What is the end date for the artist s. moldoff/j. giella/c. infantino?", "context": "CREATE TABLE table_2560677_1 (end_date VARCHAR, artist_s_ VARCHAR)"}, {"answer": "SELECT COUNT(artist_s_) FROM table_2560677_1 WHERE start_date = \"1966-12-12\"", "question": "How many artist(s) have a start date is 1966-12-12?", "context": "CREATE TABLE table_2560677_1 (artist_s_ VARCHAR, start_date VARCHAR)"}, {"answer": "SELECT fan_title FROM table_2560677_1 WHERE end_date = \"1967-11-12\"", "question": "What is the fan title with an end date of 1967-11-12?", "context": "CREATE TABLE table_2560677_1 (fan_title VARCHAR, end_date VARCHAR)"}, {"answer": "SELECT COUNT(writer) FROM table_2560677_1 WHERE episode__number = \"06\"", "question": "How many writers where there for episode # 06?", "context": "CREATE TABLE table_2560677_1 (writer VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_22 WHERE cyrillic_name_other_names = \"\u0421\u0442\u0430\u043d\u0438\u0448\u0438\u045b\"", "question": "Name the dominant religion for \u0441\u0442\u0430\u043d\u0438\u0448\u0438\u045b", "context": "CREATE TABLE table_2562572_22 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_2562572_22 WHERE settlement = \"Kolut\"", "question": "Name the population for kolut", "context": "CREATE TABLE table_2562572_22 (population__2011_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT COUNT(cyrillic_name_other_names) FROM table_2562572_22 WHERE settlement = \"Stani\u0161i\u0107\"", "question": "Name the number of cyrillic name for stani\u0161i\u0107", "context": "CREATE TABLE table_2562572_22 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT population__2011_ FROM table_2562572_22 WHERE cyrillic_name_other_names = \"\u0411\u0430\u0447\u043a\u0438 \u041c\u043e\u043d\u043e\u0448\u0442\u043e\u0440 (Croatian: Mono\u0161tor)\"", "question": "Name the population for \u0431\u0430\u0447\u043a\u0438 \u043c\u043e\u043d\u043e\u0448\u0442\u043e\u0440 (croatian: mono\u0161tor)", "context": "CREATE TABLE table_2562572_22 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_2562572_20 WHERE cyrillic_name_other_names = \"\u0412\u0440\u0431\u0430\u0441\"", "question": "Name the number of population for  \u0432\u0440\u0431\u0430\u0441", "context": "CREATE TABLE table_2562572_20 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_20 WHERE population__2011_ = 24112", "question": "Name the largest ethnic group for 24112", "context": "CREATE TABLE table_2562572_20 (largest_ethnic_group__2002_ VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_20 WHERE type = \"village\" AND cyrillic_name_other_names = \"\u0411\u0430\u0447\u043a\u043e \u0414\u043e\u0431\u0440\u043e \u041f\u043e\u0459\u0435\"", "question": "Name the dominant religion for village for \u0431\u0430\u0447\u043a\u043e \u0434\u043e\u0431\u0440\u043e \u043f\u043e\u0459\u0435", "context": "CREATE TABLE table_2562572_20 (dominant_religion__2002_ VARCHAR, type VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_20 WHERE dominant_religion__2002_ = \"Orthodox Christianity\" AND type = \"village\" AND settlement = \"Ba\u010dko Dobro Polje\"", "question": "Name the cyrillic name for orthodox christianity village and  ba\u010dko dobro polje", "context": "CREATE TABLE table_2562572_20 (cyrillic_name_other_names VARCHAR, settlement VARCHAR, dominant_religion__2002_ VARCHAR, type VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_20 WHERE settlement = \"Kosan\u010di\u0107\"", "question": "Name the largest ethnic group for kosan\u010di\u0107", "context": "CREATE TABLE table_2562572_20 (largest_ethnic_group__2002_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_35 WHERE settlement = \"Melenci\"", "question": "Name the cyrillic name for melenci", "context": "CREATE TABLE table_2562572_35 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_35 WHERE type = \"village\" AND settlement = \"Banatski Despotovac\"", "question": "Name the dominant religion 2002 for village  banatski despotovac", "context": "CREATE TABLE table_2562572_35 (dominant_religion__2002_ VARCHAR, type VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_35 WHERE settlement = \"Lazarevo\"", "question": "Name the cyrillic name for lazarevo", "context": "CREATE TABLE table_2562572_35 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_2562572_35 WHERE settlement = \"Mihajlovo\"", "question": "Name the population 2011 for mihajlovo", "context": "CREATE TABLE table_2562572_35 (population__2011_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_35 WHERE cyrillic_name_other_names = \"\u041c\u0435\u043b\u0435\u043d\u0446\u0438\"", "question": "Name the dominant religion 2002 for  \u043c\u0435\u043b\u0435\u043d\u0446\u0438", "context": "CREATE TABLE table_2562572_35 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_2562572_35 WHERE settlement = \"Perlez\"", "question": "Name the total number of population 2011 for perlez", "context": "CREATE TABLE table_2562572_35 (population__2011_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT type FROM table_2562572_52 WHERE settlement = \"Suboti\u0161te\"", "question": "What is the type when the settlement is suboti\u0161te?", "context": "CREATE TABLE table_2562572_52 (type VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT COUNT(dominant_religion__2002_) FROM table_2562572_52 WHERE cyrillic_name = \"\u0421\u0438\u0431\u0430\u0447\"", "question": "how many times is the cyrillic name \u0441\u0438\u0431\u0430\u0447?", "context": "CREATE TABLE table_2562572_52 (dominant_religion__2002_ VARCHAR, cyrillic_name VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_52 WHERE cyrillic_name = \"\u0411\u0440\u0435\u0441\u0442\u0430\u0447\"", "question": "What is the largest ethnic group (2002) when cyrillic name is \u0431\u0440\u0435\u0441\u0442\u0430\u0447?", "context": "CREATE TABLE table_2562572_52 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name VARCHAR)"}, {"answer": "SELECT COUNT(dominant_religion__2002_) FROM table_2562572_52 WHERE settlement = \"Karlov\u010di\u0107\"", "question": "How many times is the settlement karlov\u010di\u0107?", "context": "CREATE TABLE table_2562572_52 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT cyrillic_name FROM table_2562572_52 WHERE settlement = \"A\u0161anja\"", "question": "What is the cyrillic name when the settlement is a\u0161anja?", "context": "CREATE TABLE table_2562572_52 (cyrillic_name VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT MIN(population__2002_) FROM table_2562572_5 WHERE population__2011_ = 9564", "question": "Name the least population for 2002 for 2011 being 9564", "context": "CREATE TABLE table_2562572_5 (population__2002_ INTEGER, population__2011_ VARCHAR)"}, {"answer": "SELECT COUNT(population__1991_) FROM table_2562572_5 WHERE population__2011_ = 9564", "question": "Name the total number of population for 1991 for 9564 for 2011", "context": "CREATE TABLE table_2562572_5 (population__1991_ VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT city___municipality FROM table_2562572_5 WHERE urban_settlement = \"Kanji\u017ea\"", "question": "Name the city for kanji\u017ea", "context": "CREATE TABLE table_2562572_5 (city___municipality VARCHAR, urban_settlement VARCHAR)"}, {"answer": "SELECT city___municipality FROM table_2562572_5 WHERE cyrillic_name = \"\u0410\u0434\u0430\"", "question": "Name the city for \u0430\u0434\u0430", "context": "CREATE TABLE table_2562572_5 (city___municipality VARCHAR, cyrillic_name VARCHAR)"}, {"answer": "SELECT MIN(population__2002_) FROM table_2562572_5 WHERE urban_settlement = \"Ada\"", "question": "Name the population for 2002 being ada", "context": "CREATE TABLE table_2562572_5 (population__2002_ INTEGER, urban_settlement VARCHAR)"}, {"answer": "SELECT MAX(no_votes) FROM table_256286_14", "question": "Name the most no votes", "context": "CREATE TABLE table_256286_14 (no_votes INTEGER)"}, {"answer": "SELECT MIN(yes_votes) FROM table_256286_14 WHERE passed = \"YES\"", "question": "Name the least yes votes for yes passed", "context": "CREATE TABLE table_256286_14 (yes_votes INTEGER, passed VARCHAR)"}, {"answer": "SELECT _percentage_yes FROM table_256286_14 WHERE yes_votes = 78961", "question": "Name the % yes for yes votes for 78961", "context": "CREATE TABLE table_256286_14 (_percentage_yes VARCHAR, yes_votes VARCHAR)"}, {"answer": "SELECT description FROM table_256286_43 WHERE no_votes = 233759", "question": "What is every description if NO votes is 233759?", "context": "CREATE TABLE table_256286_43 (description VARCHAR, no_votes VARCHAR)"}, {"answer": "SELECT passed FROM table_256286_43 WHERE no_votes = 312187", "question": "What is every entry for passed when NO votes is 312187?", "context": "CREATE TABLE table_256286_43 (passed VARCHAR, no_votes VARCHAR)"}, {"answer": "SELECT _percentage_yes FROM table_256286_43 WHERE type = \"Ref\"", "question": "What is every value for %yes when type is ref?", "context": "CREATE TABLE table_256286_43 (_percentage_yes VARCHAR, type VARCHAR)"}, {"answer": "SELECT description FROM table_256286_43 WHERE _percentage_yes = \"51.82%\"", "question": "What is every entry for description when the value of %yes is 51.82%?", "context": "CREATE TABLE table_256286_43 (description VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT title FROM table_25640730_7 WHERE _number = 12", "question": "What is the episode title for episode number 12?", "context": "CREATE TABLE table_25640730_7 (title VARCHAR, _number VARCHAR)"}, {"answer": "SELECT written_by FROM table_25640730_7 WHERE uk_air_date = \"February 18, 2013\"", "question": "If the UK air date is February 18, 2013, who was the episode written by?", "context": "CREATE TABLE table_25640730_7 (written_by VARCHAR, uk_air_date VARCHAR)"}, {"answer": "SELECT COUNT(canadian_viewers__millions_) FROM table_25640730_7 WHERE directed_by = \"Yannick Bisson\"", "question": "If the director is Yannick Bisson, what was the Canadian amount of viewers?", "context": "CREATE TABLE table_25640730_7 (canadian_viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT passed FROM table_256286_63 WHERE _percentage_yes = \"42.87%\"", "question": "Did the legislation pass that had 42.87% yes votes?", "context": "CREATE TABLE table_256286_63 (passed VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT no_votes FROM table_256286_63 WHERE description = \"Partial public funding of election campaigns\"", "question": "How many no votes were there in the partial public funding of election campaigns legislation?", "context": "CREATE TABLE table_256286_63 (no_votes VARCHAR, description VARCHAR)"}, {"answer": "SELECT MAX(touchdowns) FROM table_25642873_2 WHERE player = \"Sam Babcock\"", "question": "How many touchdowns did Sam Babcock get? ", "context": "CREATE TABLE table_25642873_2 (touchdowns INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(extra_points) FROM table_25642873_2 WHERE player = \"na\"", "question": "How many extra points catagories are there for the na player? ", "context": "CREATE TABLE table_25642873_2 (extra_points VARCHAR, player VARCHAR)"}, {"answer": "SELECT extra_points FROM table_25642873_2 WHERE touchdowns = 5", "question": "The player who had 5 touchdowns had how many extra points? ", "context": "CREATE TABLE table_25642873_2 (extra_points VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT MIN(safeties) FROM table_25642873_2", "question": "What is the smallest number of safeties? ", "context": "CREATE TABLE table_25642873_2 (safeties INTEGER)"}, {"answer": "SELECT latitude FROM table_25675509_1 WHERE longitude = \"157.941\u00b0 E\"", "question": "If the longitude is 157.941\u00b0 e, what is the latitude?", "context": "CREATE TABLE table_25675509_1 (latitude VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT depth FROM table_25675509_1 WHERE latitude = \"08.979\u00b0 S\"", "question": "If the latitude is 08.979\u00b0 s, what is the depth?", "context": "CREATE TABLE table_25675509_1 (depth VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT latitude FROM table_25675509_1 WHERE time__utc_ = \"13:10:02\"", "question": "At what latitude did the shock at time 13:10:02 occur?", "context": "CREATE TABLE table_25675509_1 (latitude VARCHAR, time__utc_ VARCHAR)"}, {"answer": "SELECT date__yyyy_mm_dd_ FROM table_25675509_1 WHERE latitude = \"08.909\u00b0 S\"", "question": "On which date did the shock at latitude 08.909\u00b0 s occur?", "context": "CREATE TABLE table_25675509_1 (date__yyyy_mm_dd_ VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT longitude FROM table_25675509_1 WHERE date__yyyy_mm_dd_ = \"2010-01-09\"", "question": "What was the longitude for the shock that occured on 2010-01-09?", "context": "CREATE TABLE table_25675509_1 (longitude VARCHAR, date__yyyy_mm_dd_ VARCHAR)"}, {"answer": "SELECT depth FROM table_25675509_1 WHERE longitude = \"158.091\u00b0 E\"", "question": "If the longitude is 158.091\u00b0 e, what is the depth?", "context": "CREATE TABLE table_25675509_1 (depth VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT MAX(w) FROM table_25689740_2", "question": "What is the highest number for W?", "context": "CREATE TABLE table_25689740_2 (w INTEGER)"}, {"answer": "SELECT Ends AS lost FROM table_25689740_2 WHERE pa = 44", "question": "What is shown for ends lost when pa is 44?", "context": "CREATE TABLE table_25689740_2 (Ends VARCHAR, pa VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_25691838_6 WHERE episode__number = 733", "question": "What was the original airdate of episode #733?", "context": "CREATE TABLE table_25691838_6 (original_airdate VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT the_w\u00f8rd FROM table_25691838_6 WHERE production_code = 6084", "question": "What was The Word for production code 6084?", "context": "CREATE TABLE table_25691838_6 (the_w\u00f8rd VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(the_w\u00f8rd) FROM table_25691838_6 WHERE episode__number = 727", "question": "What was the number of \"The Word\" segments for episode number 727?", "context": "CREATE TABLE table_25691838_6 (the_w\u00f8rd VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT COUNT(rebounding_high) FROM table_25696729_8 WHERE season = \"Regular season\"", "question": "Compute the number of times Dennis Rodman recordedhigh rebounds given a regular season", "context": "CREATE TABLE table_25696729_8 (rebounding_high VARCHAR, season VARCHAR)"}, {"answer": "SELECT 10 AS _rebounds FROM table_25696729_8 WHERE season = \"1991\u201392\"", "question": "List all rebounds equal to 10 for  Dennis Rodman 's 1991\u201392 season", "context": "CREATE TABLE table_25696729_8 (season VARCHAR)"}, {"answer": "SELECT MAX(20 AS _rebounds) FROM table_25696729_8 WHERE double_double = 5", "question": "What is the highest rebound  Dennis Rodman obtained within the 20 rebounds category given two of the following:points, rebounds, assists, steals, and blocked shots (points) greater equal to 5", "context": "CREATE TABLE table_25696729_8 (double_double VARCHAR)"}, {"answer": "SELECT original_air_date__uk_ FROM table_2570269_2 WHERE episode__number = \"2-01\"", "question": "If the episode number is 2-01 what is the original UK air date?", "context": "CREATE TABLE table_2570269_2 (original_air_date__uk_ VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT cast FROM table_2570269_2 WHERE episode_title = \"Pressures\"", "question": "If the episode title is Pressures, what are the names of the cast?", "context": "CREATE TABLE table_2570269_2 (cast VARCHAR, episode_title VARCHAR)"}, {"answer": "SELECT episode__number FROM table_2570269_2 WHERE episode_title = \"Leave Takers\"", "question": "What is the episode number for episode title Leave Takers?", "context": "CREATE TABLE table_2570269_2 (episode__number VARCHAR, episode_title VARCHAR)"}, {"answer": "SELECT cast FROM table_2570269_2 WHERE episode__number = \"2-03\"", "question": "For episode number 2-03, what are the names of the cast?", "context": "CREATE TABLE table_2570269_2 (cast VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT COUNT(birth_2012) FROM table_25703_2 WHERE january_december_2012 = \"Kurgan Oblast\"", "question": "What is the total number of birth/2012 for January\u2013December 2012 in Kurgan Oblast?", "context": "CREATE TABLE table_25703_2 (birth_2012 VARCHAR, january_december_2012 VARCHAR)"}, {"answer": "SELECT death_2012 FROM table_25703_2 WHERE birth_2012 = 127", "question": "What were the total number of 2012 deaths when 2012 births were 127?", "context": "CREATE TABLE table_25703_2 (death_2012 VARCHAR, birth_2012 VARCHAR)"}, {"answer": "SELECT MIN(birth_2012) FROM table_25703_2 WHERE january_december_2012 = \"Tver Oblast\"", "question": "What were the total number of 2012 births for the January\u2013December 2012 Tver Oblast region?", "context": "CREATE TABLE table_25703_2 (birth_2012 INTEGER, january_december_2012 VARCHAR)"}, {"answer": "SELECT MIN(birth_2012) FROM table_25703_2 WHERE death_2012 = 163", "question": "What were the total 2012 births when the 2012 deaths were 163?", "context": "CREATE TABLE table_25703_2 (birth_2012 INTEGER, death_2012 VARCHAR)"}, {"answer": "SELECT COUNT(pf) FROM table_25714995_2 WHERE l = 3", "question": "How many pf catagories are listed for the skip that had 3 for l", "context": "CREATE TABLE table_25714995_2 (pf VARCHAR, l VARCHAR)"}, {"answer": "SELECT MAX(l) FROM table_25714995_2 WHERE w = 3", "question": "How many l's are there for the skip with 3 for w? ", "context": "CREATE TABLE table_25714995_2 (l INTEGER, w VARCHAR)"}, {"answer": "SELECT COUNT(Ends) AS won FROM table_25714995_2 WHERE stolen_ends = 8", "question": "How many ends won catagories are listed when there are 8 stolen ends? ", "context": "CREATE TABLE table_25714995_2 (Ends VARCHAR, stolen_ends VARCHAR)"}, {"answer": "SELECT extra_points_1_point FROM table_25711913_14 WHERE player = \"Germany Schultz\"", "question": "How many extra points did Germany Schultz score? ", "context": "CREATE TABLE table_25711913_14 (extra_points_1_point VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(field_goals__4_points_) FROM table_25711913_14", "question": "What is the least number of field goals scored by a player? ", "context": "CREATE TABLE table_25711913_14 (field_goals__4_points_ INTEGER)"}, {"answer": "SELECT field_goals__4_points_ FROM table_25711913_14 WHERE touchdowns__5_points_ = 7", "question": "How many field goals were scored by the player that got 7 touchdowns? ", "context": "CREATE TABLE table_25711913_14 (field_goals__4_points_ VARCHAR, touchdowns__5_points_ VARCHAR)"}, {"answer": "SELECT Ends AS won FROM table_25718552_2 WHERE blank_ends < 3.0", "question": "How many ends were won where the blank ends are smaller than 3.0?", "context": "CREATE TABLE table_25718552_2 (Ends VARCHAR, blank_ends INTEGER)"}, {"answer": "SELECT MAX(Ends) AS won FROM table_25718552_2 WHERE stolen_ends = 3", "question": "What is the largest amount of ends won when stolen ends were 3?", "context": "CREATE TABLE table_25718552_2 (Ends INTEGER, stolen_ends VARCHAR)"}, {"answer": "SELECT COUNT(county) FROM table_2572788_1 WHERE milepost = \"69.5\"", "question": "How many counties are at milepost 69.5? ", "context": "CREATE TABLE table_2572788_1 (county VARCHAR, milepost VARCHAR)"}, {"answer": "SELECT town_city FROM table_2572788_1 WHERE station = \"Stratford (Limited service)\"", "question": "In what city or town is Stratford (limited service)? ", "context": "CREATE TABLE table_2572788_1 (town_city VARCHAR, station VARCHAR)"}, {"answer": "SELECT town_city FROM table_2572788_1 WHERE milepost = \"71.1\"", "question": "At what city or town is milepost 71.1? ", "context": "CREATE TABLE table_2572788_1 (town_city VARCHAR, milepost VARCHAR)"}, {"answer": "SELECT COUNT(town_city) FROM table_2572788_1 WHERE milepost = \"71.1\"", "question": "How many towns or cities are at milepost 71.1? ", "context": "CREATE TABLE table_2572788_1 (town_city VARCHAR, milepost VARCHAR)"}, {"answer": "SELECT milepost FROM table_2572788_1 WHERE town_city = \"Beacon Falls\"", "question": "At what milepost is Beacon Falls? ", "context": "CREATE TABLE table_2572788_1 (milepost VARCHAR, town_city VARCHAR)"}, {"answer": "SELECT COUNT(writer) FROM table_25737761_4 WHERE _number = 2", "question": "How many people wrote episode number 2 of the season?", "context": "CREATE TABLE table_25737761_4 (writer VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_25737761_4 WHERE writer = \"Tony Basgallop\"", "question": "What episode number of the season did Tony Basgallop write?", "context": "CREATE TABLE table_25737761_4 (_number INTEGER, writer VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_25737761_4 WHERE no = 11", "question": "What episode number of the season is episode number 11 in the series?", "context": "CREATE TABLE table_25737761_4 (_number INTEGER, no VARCHAR)"}, {"answer": "SELECT competition FROM table_25735_1 WHERE winner = \"Toronto City Saints\"", "question": "Which competition did the toronto city saints win?", "context": "CREATE TABLE table_25735_1 (competition VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MIN(teams) FROM table_25735_1 WHERE winner = \"Wynnum Manly Seagulls\"", "question": "What was the number of teams in the competition that wynnum manly seagulls won?", "context": "CREATE TABLE table_25735_1 (teams INTEGER, winner VARCHAR)"}, {"answer": "SELECT COUNT(latest_year) FROM table_25735_1 WHERE competition = \"Cook Island League\"", "question": "How many cook island league competitions were there?", "context": "CREATE TABLE table_25735_1 (latest_year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_25740774_1 WHERE season = 2010", "question": "How many positions are shown for the 2010 season?", "context": "CREATE TABLE table_25740774_1 (position VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_25740774_1 WHERE podiums > 2.0", "question": "What is the season with podiums more  than 2.0?", "context": "CREATE TABLE table_25740774_1 (season INTEGER, podiums INTEGER)"}, {"answer": "SELECT series FROM table_25740774_1 WHERE position = \"NC\"", "question": "Which series is in position nc?", "context": "CREATE TABLE table_25740774_1 (series VARCHAR, position VARCHAR)"}, {"answer": "SELECT f_laps FROM table_25740774_1 WHERE races = 14", "question": "What are the  f/laps for race 14?", "context": "CREATE TABLE table_25740774_1 (f_laps VARCHAR, races VARCHAR)"}, {"answer": "SELECT COUNT(f_laps) FROM table_25740774_1 WHERE team = \"March 3 Racing (1-4) Top Speed Racing team (5-12)\"", "question": "How many flaps are there for the team march 3 racing (1-4) top speed racing team (5-12)?", "context": "CREATE TABLE table_25740774_1 (f_laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(int) FROM table_25773915_11 WHERE player = \"Maake Kemoeatu\"", "question": "If the player is Maake Kemoeatu, what is the int maximum?", "context": "CREATE TABLE table_25773915_11 (int INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(ydl) FROM table_25773915_11", "question": "What is the ydi minimum?", "context": "CREATE TABLE table_25773915_11 (ydl INTEGER)"}, {"answer": "SELECT MIN(fumrec) FROM table_25773915_11", "question": "What is the fumrec minimum?", "context": "CREATE TABLE table_25773915_11 (fumrec INTEGER)"}, {"answer": "SELECT fumrec FROM table_25773915_11 WHERE player = \"Reed Doughty\"", "question": "If the player is Reed Doughty, what isthe fumrec?", "context": "CREATE TABLE table_25773915_11 (fumrec VARCHAR, player VARCHAR)"}, {"answer": "SELECT stadium FROM table_25794138_1 WHERE team = \"San Juan Jabloteh\"", "question": "What stadium(sO does san juan jabloteh play in?", "context": "CREATE TABLE table_25794138_1 (stadium VARCHAR, team VARCHAR)"}, {"answer": "SELECT captain FROM table_25794138_1 WHERE team = \"North East Stars\"", "question": "Wh owas the captian of the north east stars?", "context": "CREATE TABLE table_25794138_1 (captain VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_25794138_1 WHERE stadium = \"Larry Gomes stadium\"", "question": "What was the maximum capacity of larry gomes stadium?", "context": "CREATE TABLE table_25794138_1 (capacity INTEGER, stadium VARCHAR)"}, {"answer": "SELECT MIN(season__number) FROM table_25800134_11", "question": "What is the lowest season #?", "context": "CREATE TABLE table_25800134_11 (season__number INTEGER)"}, {"answer": "SELECT director FROM table_25800134_11 WHERE series__number = 422", "question": "Who directed  series # 422?", "context": "CREATE TABLE table_25800134_11 (director VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_25800134_11 WHERE series__number = 431", "question": "How many directors were there for series # 431?", "context": "CREATE TABLE table_25800134_11 (director VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT series__number FROM table_25800134_12 WHERE airdate = \"February 26, 1968\"", "question": "What episode  number of the series aired on February 26, 1968?", "context": "CREATE TABLE table_25800134_12 (series__number VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_25800134_12 WHERE airdate = \"February 5, 1968\"", "question": "How many people directed the episode that aired on February 5, 1968?", "context": "CREATE TABLE table_25800134_12 (director VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT director FROM table_25800134_12 WHERE airdate = \"September 25, 1967\"", "question": "Who directed the episode that aired on September 25, 1967?", "context": "CREATE TABLE table_25800134_12 (director VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT director FROM table_25800134_12 WHERE airdate = \"February 19, 1968\"", "question": "Who directed the episode that aired on February 19, 1968?", "context": "CREATE TABLE table_25800134_12 (director VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_25800134_12 WHERE airdate = \"September 25, 1967\"", "question": "How many episode titles aired on September 25, 1967?", "context": "CREATE TABLE table_25800134_12 (title VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_25800134_18 WHERE season__number = 22", "question": "name the most series number for season 22", "context": "CREATE TABLE table_25800134_18 (series__number INTEGER, season__number VARCHAR)"}, {"answer": "SELECT MIN(stage) FROM table_25802689_14 WHERE mountains_classification = \"Peter Stetina\"", "question": "What is the earliest stage where mountains classifications was awarded to Peter Stetina? ", "context": "CREATE TABLE table_25802689_14 (stage INTEGER, mountains_classification VARCHAR)"}, {"answer": "SELECT title FROM table_25800134_9 WHERE airdate = \"December 5, 1964\"", "question": "what is the title where the airdate is december 5, 1964?", "context": "CREATE TABLE table_25800134_9 (title VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_25800134_9 WHERE airdate = \"December 26, 1964\"", "question": "what is the number of series where the airdate is december 26, 1964?", "context": "CREATE TABLE table_25800134_9 (series__number VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT actor_actress FROM table_25831483_1 WHERE first_appearance = \"3 June 2007\"", "question": "Who was the actor/actress with a first appearance is 3 june 2007?", "context": "CREATE TABLE table_25831483_1 (actor_actress VARCHAR, first_appearance VARCHAR)"}, {"answer": "SELECT actor_actress FROM table_25831483_1 WHERE last_appearance = \"1 January 2010\" AND total = 20 AND character = \"Vanessa 'Nessa' Jenkins\"", "question": "Who was the actor/actress with a last appearance of 1 january 2010 and total is 20 and character is vanessa 'nessa' jenkins?", "context": "CREATE TABLE table_25831483_1 (actor_actress VARCHAR, character VARCHAR, last_appearance VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_25831483_1", "question": "What is the highest total number?", "context": "CREATE TABLE table_25831483_1 (total INTEGER)"}, {"answer": "SELECT COUNT(character) FROM table_25831483_1 WHERE actor_actress = \"Larry Lamb\"", "question": "How many  characters where actor/actress is larry lamb?", "context": "CREATE TABLE table_25831483_1 (character VARCHAR, actor_actress VARCHAR)"}, {"answer": "SELECT last_appearance FROM table_25831483_1 WHERE actor_actress = \"Pam Ferris\"", "question": "What was the last appearance of actor/actress is pam ferris?", "context": "CREATE TABLE table_25831483_1 (last_appearance VARCHAR, actor_actress VARCHAR)"}, {"answer": "SELECT total FROM table_25831483_1 WHERE actor_actress = \"Pam Ferris\"", "question": "How many total are there when actor/actress is pam ferris?", "context": "CREATE TABLE table_25831483_1 (total VARCHAR, actor_actress VARCHAR)"}, {"answer": "SELECT MIN(gdp__ppp__per_capita) FROM table_25869317_1", "question": "What is the lowest GDP (ppp) per capita?", "context": "CREATE TABLE table_25869317_1 (gdp__ppp__per_capita INTEGER)"}, {"answer": "SELECT directed_by FROM table_25923164_1 WHERE us_viewers__million_ = \"12.88\"", "question": "Who directed the episode that had 12.88 million viewers?", "context": "CREATE TABLE table_25923164_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_25923164_1 WHERE written_by = \"Amanda Segel\"", "question": "What was the original air date of the episode written by amanda segel?", "context": "CREATE TABLE table_25923164_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_25923164_1 WHERE directed_by = \"Gloria Muzio\"", "question": "What was the original air date of the episode directed by gloria muzio?", "context": "CREATE TABLE table_25923164_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_25923164_1 WHERE directed_by = \"Frederick E. O. Toye\"", "question": "What was the original air date of the episode directed by frederick e. o. toye?", "context": "CREATE TABLE table_25923164_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT top_10 FROM table_2597876_2 WHERE team_s_ = \"#10 Phil Parsons Racing\" AND avg_finish = \"22.9\"", "question": "What is every value of Top 10 when team is #10 Phil Parsons Racing and average finish is 22.9?", "context": "CREATE TABLE table_2597876_2 (top_10 VARCHAR, team_s_ VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT year FROM table_2597876_2 WHERE avg_start = \"27.2\"", "question": "What is every year with average start of 27.2?", "context": "CREATE TABLE table_2597876_2 (year VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT COUNT(top_10) FROM table_2597876_2 WHERE position = \"5th\"", "question": "How many values of top 10 for 5th position?", "context": "CREATE TABLE table_2597876_2 (top_10 VARCHAR, position VARCHAR)"}, {"answer": "SELECT top_5 FROM table_2597876_2 WHERE avg_start = \"21.9\"", "question": "What is every value for top 5 if average start is 21.9?", "context": "CREATE TABLE table_2597876_2 (top_5 VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT COUNT(winnings) FROM table_2597876_2 WHERE avg_start = \"19.0\"", "question": "How many values for winnings correspond to average start of 19.0?", "context": "CREATE TABLE table_2597876_2 (winnings VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT location FROM table_25987797_1 WHERE school = \"Lucas\"", "question": "What is the name of the school in Lucas ? ", "context": "CREATE TABLE table_25987797_1 (location VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_26077092_7 WHERE player = \"Andrew Quarless\"", "question": "What was the pick number for Andrew Quarless? ", "context": "CREATE TABLE table_26077092_7 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_26077092_7 WHERE college = \"Purdue\"", "question": "How many players are from Purdue? ", "context": "CREATE TABLE table_26077092_7 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_26130295_3 WHERE season_mvp < 1.0 AND second_team < 1.0", "question": "who are all the players when season mvp is less than 1.0 and second team is less than 1.0", "context": "CREATE TABLE table_26130295_3 (player VARCHAR, season_mvp VARCHAR, second_team VARCHAR)"}, {"answer": "SELECT player FROM table_26130295_3 WHERE first_team = 1 AND number_of_selections = 2", "question": "when number of selection is 2 and first team is 1 who are all the player", "context": "CREATE TABLE table_26130295_3 (player VARCHAR, first_team VARCHAR, number_of_selections VARCHAR)"}, {"answer": "SELECT MAX(final_four_mvp) FROM table_26130295_3 WHERE first_team = 1", "question": "what would be final four mvp maximum when first team is 1", "context": "CREATE TABLE table_26130295_3 (final_four_mvp INTEGER, first_team VARCHAR)"}, {"answer": "SELECT MAX(number_of_selections) FROM table_26130295_3 WHERE season_mvp > 1.0", "question": "when season mvp is larger than 1.0 what is the maximum number of selection", "context": "CREATE TABLE table_26130295_3 (number_of_selections INTEGER, season_mvp INTEGER)"}, {"answer": "SELECT COUNT(first_team) FROM table_26130295_3 WHERE player = \"Dimitris Diamantidis\"", "question": "who is first team when dimitris diamantidis play.", "context": "CREATE TABLE table_26130295_3 (first_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(term_limited) FROM table_26129220_2 WHERE residence = \"Coshocton\"", "question": "What is the earliest term limit for the senator who resides in Coshocton? ", "context": "CREATE TABLE table_26129220_2 (term_limited INTEGER, residence VARCHAR)"}, {"answer": "SELECT party FROM table_26129220_2 WHERE district = 27", "question": "What is the party for district 27? ", "context": "CREATE TABLE table_26129220_2 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_26129220_2 WHERE residence = \"Canton\"", "question": "How many party classifications are there for the senator from Canton? ", "context": "CREATE TABLE table_26129220_2 (party VARCHAR, residence VARCHAR)"}, {"answer": "SELECT party FROM table_26129220_2 WHERE senator = \"David Goodman\"", "question": "What is the party affiliation for Senator David Goodman? ", "context": "CREATE TABLE table_26129220_2 (party VARCHAR, senator VARCHAR)"}, {"answer": "SELECT MIN(term_limited) FROM table_26129220_2 WHERE senator = \"Tom Niehaus\"", "question": "What is the term limit for Senator Tom Niehaus? ", "context": "CREATE TABLE table_26129220_2 (term_limited INTEGER, senator VARCHAR)"}, {"answer": "SELECT party FROM table_26129220_2 WHERE senator = \"Mark Wagoner\"", "question": "What is the party affiliation for senator mark Wagoner? ", "context": "CREATE TABLE table_26129220_2 (party VARCHAR, senator VARCHAR)"}, {"answer": "SELECT representative FROM table_26131768_4 WHERE residence = \"Chagrin Falls\"", "question": "If the residence is Chagrin falls, who is the representative?", "context": "CREATE TABLE table_26131768_4 (representative VARCHAR, residence VARCHAR)"}, {"answer": "SELECT MIN(term_limited) FROM table_26131768_4 WHERE first_elected = \"2003 (Appt.)\"", "question": "If first elected on 2003 (appt.), when was the term limited?", "context": "CREATE TABLE table_26131768_4 (term_limited INTEGER, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(residence) FROM table_26131768_4 WHERE representative = \"Scott Oelslager\"", "question": "How many times was Scott Oelslager a representative?", "context": "CREATE TABLE table_26131768_4 (residence VARCHAR, representative VARCHAR)"}, {"answer": "SELECT district FROM table_26131768_4 WHERE residence = \"Dublin\"", "question": "In which district is the residence Dublin?", "context": "CREATE TABLE table_26131768_4 (district VARCHAR, residence VARCHAR)"}, {"answer": "SELECT term_limited FROM table_26131768_4 WHERE representative = \"Dave Hall\"", "question": "If the representative is Dave Hall, when was the term limited?", "context": "CREATE TABLE table_26131768_4 (term_limited VARCHAR, representative VARCHAR)"}, {"answer": "SELECT MAX(district) FROM table_26131768_4 WHERE representative = \"Barbara Sears\"", "question": "If the Representative is Barbara sears, what is the district number?", "context": "CREATE TABLE table_26131768_4 (district INTEGER, representative VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_26139378_1 WHERE viewers__in_millions_ = \"8.23\"", "question": "What is the original airdate of the episode that had 8.23 million viewers?", "context": "CREATE TABLE table_26139378_1 (original_airdate VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_26139378_1 WHERE episode__number = 16", "question": "How many millions of viewers did Episode number 16 have?", "context": "CREATE TABLE table_26139378_1 (viewers__in_millions_ VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT vessel_type FROM table_26168687_5 WHERE vessel_operator = \"Beluga Shipping\"", "question": "Name the vessel type for beluga shipping", "context": "CREATE TABLE table_26168687_5 (vessel_type VARCHAR, vessel_operator VARCHAR)"}, {"answer": "SELECT vessel_type FROM table_26168687_5 WHERE vessel_operator = \"DOF Subsea\"", "question": "Name the vessel type for dof subsea", "context": "CREATE TABLE table_26168687_5 (vessel_type VARCHAR, vessel_operator VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_26168687_5", "question": "Name the most number in season ", "context": "CREATE TABLE table_26168687_5 (no_in_season INTEGER)"}, {"answer": "SELECT narrated_by FROM table_26168687_5 WHERE vessel_operator = \"Beluga Shipping\"", "question": "Name  the narraed by for beluga shipping", "context": "CREATE TABLE table_26168687_5 (narrated_by VARCHAR, vessel_operator VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_26168687_5 WHERE vessel_operator = \"Beluga Shipping\"", "question": "Name the number of season for beluga shipping", "context": "CREATE TABLE table_26168687_5 (no_in_season VARCHAR, vessel_operator VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_2618102_1 WHERE directed_by = \"James Quinn\"", "question": "Name the least number in series for james quinn", "context": "CREATE TABLE table_2618102_1 (no_in_series INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_2618102_1 WHERE written_by = \"Brad Markowitz, William N. Fordes & Ren\u00e9 Balcer\"", "question": "Name the least number in season for brad markowitz, william n. fordes & ren\u00e9 balcer", "context": "CREATE TABLE table_2618102_1 (no_in_season INTEGER, written_by VARCHAR)"}, {"answer": "SELECT institution FROM table_261913_1 WHERE location__all_in_minnesota_ = \"St. Peter\"", "question": "What institution is located in St. Peter? ", "context": "CREATE TABLE table_261913_1 (institution VARCHAR, location__all_in_minnesota_ VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_261913_1 WHERE institution = \"Augsburg College\"", "question": "What is the enrollment for Augsburg college? ", "context": "CREATE TABLE table_261913_1 (enrollment INTEGER, institution VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_261913_1 WHERE joined = \"1977\"", "question": "What was the earliest date an institution was founded that joined in 1977? ", "context": "CREATE TABLE table_261913_1 (founded INTEGER, joined VARCHAR)"}, {"answer": "SELECT COUNT(type) FROM table_261927_2 WHERE location = \"Bridgewater, Massachusetts\"", "question": "How many different types are allocated to the institution in Bridgewater, Massachusetts? ", "context": "CREATE TABLE table_261927_2 (type VARCHAR, location VARCHAR)"}, {"answer": "SELECT enrollment FROM table_261927_2 WHERE location = \"Westfield, Massachusetts\"", "question": "What is the enrollment for the institution in Westfield, Massachusetts? ", "context": "CREATE TABLE table_261927_2 (enrollment VARCHAR, location VARCHAR)"}, {"answer": "SELECT institution FROM table_261927_2 WHERE primary_conference = \"Merged into the University of Massachusetts Boston\"", "question": "Which institutions primary conference is merged into the university of Massachusetts boston? ", "context": "CREATE TABLE table_261927_2 (institution VARCHAR, primary_conference VARCHAR)"}, {"answer": "SELECT football_conference FROM table_261927_2 WHERE location = \"Henniker, New Hampshire\"", "question": "What is the football conference for Henniker, New Hampshire>?", "context": "CREATE TABLE table_261927_2 (football_conference VARCHAR, location VARCHAR)"}, {"answer": "SELECT joined FROM table_261927_2 WHERE left = \"2013\" AND nickname = \"Corsairs\"", "question": "What date did the institution that left in 2013 and that is nicknamed Corsairs, join? ", "context": "CREATE TABLE table_261927_2 (joined VARCHAR, left VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT written_by FROM table_26199484_1 WHERE no = 38", "question": "Who wrote title number 38?", "context": "CREATE TABLE table_26199484_1 (written_by VARCHAR, no VARCHAR)"}, {"answer": "SELECT no FROM table_26202812_7 WHERE score_in_the_final = \"7\u20136 (7\u20130) , 6\u20137 (5\u20137) , 4\u20136, 6\u20132, 6\u20137 (5\u20137)\"", "question": "Which match was the final score 7\u20136 (7\u20130) , 6\u20137 (5\u20137) , 4\u20136, 6\u20132, 6\u20137 (5\u20137)?", "context": "CREATE TABLE table_26202812_7 (no VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT MIN(Ends) AS won FROM table_26209210_2 WHERE w = 8", "question": "What is the lowest ends won when w is 8?", "context": "CREATE TABLE table_26209210_2 (Ends INTEGER, w VARCHAR)"}, {"answer": "SELECT MAX(grand_total) FROM table_26214389_3 WHERE qatari_male = 1104", "question": "If the qatari male is 1104, what is the grand total?", "context": "CREATE TABLE table_26214389_3 (grand_total INTEGER, qatari_male VARCHAR)"}, {"answer": "SELECT total_non_qatar FROM table_26214389_3 WHERE grand_total = 5814", "question": "If the grand total is 5814, what is the total non qatar?", "context": "CREATE TABLE table_26214389_3 (total_non_qatar VARCHAR, grand_total VARCHAR)"}, {"answer": "SELECT Non AS qatari_female FROM table_26214389_3 WHERE year = 2001", "question": "If the year is 2001, what are the non qatari female?", "context": "CREATE TABLE table_26214389_3 (Non VARCHAR, year VARCHAR)"}, {"answer": "SELECT total_female FROM table_26214389_3 WHERE qatari_female = 918", "question": "If the qatari female is 918, what is the total number of females?", "context": "CREATE TABLE table_26214389_3 (total_female VARCHAR, qatari_female VARCHAR)"}, {"answer": "SELECT COUNT(outcome) FROM table_26202940_6 WHERE score_in_the_final = \"6\u20133, 6\u20134, 7\u20136 (13\u201311)\"", "question": "How many outcomes occur for score in the final of 6\u20133, 6\u20134, 7\u20136 (13\u201311)?", "context": "CREATE TABLE table_26202940_6 (outcome VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(outcome) FROM table_26202940_6 WHERE date = \"January 31, 2010\"", "question": "How many outcomes occur on the date of January 31, 2010?", "context": "CREATE TABLE table_26202940_6 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_26202940_6 WHERE score_in_the_final = \"6\u20133, 6\u20134, 7\u20136 (13\u201311)\"", "question": "How many numbers correspond to the score in the final of  6\u20133, 6\u20134, 7\u20136 (13\u201311)?", "context": "CREATE TABLE table_26202940_6 (no VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT series FROM table_26223231_1 WHERE points = \"6\"", "question": "How many championships are there when there are 6 points", "context": "CREATE TABLE table_26223231_1 (series VARCHAR, points VARCHAR)"}, {"answer": "SELECT poles FROM table_26223231_1 WHERE wins = 2", "question": "When there are 2 wins, how many poles are?", "context": "CREATE TABLE table_26223231_1 (poles VARCHAR, wins VARCHAR)"}, {"answer": "SELECT prod_code FROM table_2623498_5 WHERE episode__number = \"78\"", "question": "What is the production code for episode #78?", "context": "CREATE TABLE table_2623498_5 (prod_code VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_2623498_5 WHERE written_by = \"Charleen Easton\"", "question": "What is the number of titles written by Charleen Easton?", "context": "CREATE TABLE table_2623498_5 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(prod_code) FROM table_2623498_5 WHERE episode__number = \"73\"", "question": "What is the number of production codes for episode #73?", "context": "CREATE TABLE table_2623498_5 (prod_code VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT location FROM table_262481_2 WHERE institution = \"Fisk University\"", "question": "where is Fisk University located? ", "context": "CREATE TABLE table_262481_2 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT nickname FROM table_262481_2 WHERE founded = 1857", "question": "What is the nickname of the institution that was founded in 1857? ", "context": "CREATE TABLE table_262481_2 (nickname VARCHAR, founded VARCHAR)"}, {"answer": "SELECT enrollment FROM table_262481_2 WHERE left = \"2012\" AND nickname = \"Panthers\"", "question": "What is the enrollment for the institution nicknamed the panthers that left in 2012? ", "context": "CREATE TABLE table_262481_2 (enrollment VARCHAR, left VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT institution FROM table_262481_2 WHERE current_conference = \"GCAC (NAIA)\"", "question": "What is the institution whose current conference is gcac (naia)? ", "context": "CREATE TABLE table_262481_2 (institution VARCHAR, current_conference VARCHAR)"}, {"answer": "SELECT COUNT(original_artist) FROM table_26250176_1 WHERE theme = \"Group Performance\"", "question": "How many original artists were there for the Group Performance?", "context": "CREATE TABLE table_26250176_1 (original_artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT song_choice FROM table_26250176_1 WHERE result = \"Bottom 3\"", "question": "What song was used resulting in the bottom 3?", "context": "CREATE TABLE table_26250176_1 (song_choice VARCHAR, result VARCHAR)"}, {"answer": "SELECT theme FROM table_26250176_1 WHERE week__number = \"Audition\"", "question": "What is the theme for Audition week?", "context": "CREATE TABLE table_26250176_1 (theme VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT result FROM table_26250176_1 WHERE week__number = \"Top 12\"", "question": "What was the results for top 12?", "context": "CREATE TABLE table_26250176_1 (result VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT original_artist FROM table_26250176_1 WHERE theme = \"First Solo\"", "question": "Who was the original artist for First Solo?", "context": "CREATE TABLE table_26250176_1 (original_artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT episode FROM table_26250218_1 WHERE order__number = \"4\"", "question": "Which episode is #4?", "context": "CREATE TABLE table_26250218_1 (episode VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT joined FROM table_262514_1 WHERE nickname = \"Ravens\"", "question": "What is every year for joined with the Ravens nickname?", "context": "CREATE TABLE table_262514_1 (joined VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT institution FROM table_262514_1 WHERE nickname = \"Ravens\"", "question": "What is every institution with a nickname of Ravens?", "context": "CREATE TABLE table_262514_1 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT revised_hepburn FROM table_26263954_1 WHERE english = \"Roman characters\"", "question": "how many revised hepburn when english is roman characters", "context": "CREATE TABLE table_26263954_1 (revised_hepburn VARCHAR, english VARCHAR)"}, {"answer": "SELECT english FROM table_26263954_1 WHERE revised_hepburn = \"chiji\"", "question": "when chiji is revised hepburn what are all the english", "context": "CREATE TABLE table_26263954_1 (english VARCHAR, revised_hepburn VARCHAR)"}, {"answer": "SELECT COUNT(english) FROM table_26263954_1 WHERE kunrei_shiki = \"otya\"", "question": "how many number of english when kunrei-shiki is otya", "context": "CREATE TABLE table_26263954_1 (english VARCHAR, kunrei_shiki VARCHAR)"}, {"answer": "SELECT kana_spelling FROM table_26263954_1 WHERE english = \"Mount Fuji\"", "question": "how many kana spelling when english is mount fuji ", "context": "CREATE TABLE table_26263954_1 (kana_spelling VARCHAR, english VARCHAR)"}, {"answer": "SELECT nihon_shiki FROM table_26263954_1 WHERE english = \"tea\"", "question": "when english is tea how many nihon-shiki", "context": "CREATE TABLE table_26263954_1 (nihon_shiki VARCHAR, english VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_26293875_3 WHERE prod_no = \"2x03\"", "question": "What was the original airdate of the episode with production number 2x03?", "context": "CREATE TABLE table_26293875_3 (original_airdate VARCHAR, prod_no VARCHAR)"}, {"answer": "SELECT COUNT(season__number) FROM table_26293875_3 WHERE prod_no = \"2x13\"", "question": "How many episodes had production number 2x13?", "context": "CREATE TABLE table_26293875_3 (season__number VARCHAR, prod_no VARCHAR)"}, {"answer": "SELECT COUNT(kickoff) FROM table_26275503_2 WHERE opponent = \"at Rhein Fire\"", "question": "How many different kickoffs happened when the oppenent was at Rhein Fire?", "context": "CREATE TABLE table_26275503_2 (kickoff VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(kickoff) FROM table_26275503_2 WHERE opponent = \"Scottish Claymores\"", "question": "How many different kickoffs happened when the opponent was the Scottish Claymores", "context": "CREATE TABLE table_26275503_2 (kickoff VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_26351260_1 WHERE institution = \"Eastern Michigan University\"", "question": "What is the lowest enrollment for Eastern Michigan University?", "context": "CREATE TABLE table_26351260_1 (enrollment INTEGER, institution VARCHAR)"}, {"answer": "SELECT team_nickname FROM table_26351260_1 WHERE institution = \"Kent State University\"", "question": "What is Kent State University's team nickname?", "context": "CREATE TABLE table_26351260_1 (team_nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_26351260_1 WHERE institution = \"Kent State University\"", "question": "How many Kent State University's are there?", "context": "CREATE TABLE table_26351260_1 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT location FROM table_26351260_1 WHERE team_nickname = \"Bulldogs\"", "question": "How many school teams are nicknamed \"Bulldogs\".", "context": "CREATE TABLE table_26351260_1 (location VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT total FROM table_26375386_17 WHERE public = 4", "question": "If the public is 4, what is the total?", "context": "CREATE TABLE table_26375386_17 (total VARCHAR, public VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_26375386_17 WHERE vote_percentage = \"3.1%\"", "question": "How many results where given for the vote percentage 3.1%?", "context": "CREATE TABLE table_26375386_17 (result VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT couple FROM table_26375386_17 WHERE vote_percentage = \"5.2%\"", "question": "What couple had a vote percentage of 5.2%?", "context": "CREATE TABLE table_26375386_17 (couple VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT vote_percentage FROM table_26375386_18 WHERE couple = \"Heather and Matt\"", "question": "What was the vote % of Heather and Matt?", "context": "CREATE TABLE table_26375386_18 (vote_percentage VARCHAR, couple VARCHAR)"}, {"answer": "SELECT couple FROM table_26375386_18 WHERE result = \"Bottom two\"", "question": "Who was the couple on the bottom two?", "context": "CREATE TABLE table_26375386_18 (couple VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(public) FROM table_26375386_18 WHERE couple = \"Danniella and Matthew\"", "question": "WHat was the max public with danniella and matthew?", "context": "CREATE TABLE table_26375386_18 (public INTEGER, couple VARCHAR)"}, {"answer": "SELECT market_share__overall_ FROM table_2639433_4 WHERE viewers__in_millions_overall_ = \"1.83\"", "question": "If the overall viewers were 1.83 millions, what was the overall market share?", "context": "CREATE TABLE table_2639433_4 (market_share__overall_ VARCHAR, viewers__in_millions_overall_ VARCHAR)"}, {"answer": "SELECT timeslot FROM table_2639433_4 WHERE episodes = 234", "question": "If the episode was number 234, what was it's timeslot?", "context": "CREATE TABLE table_2639433_4 (timeslot VARCHAR, episodes VARCHAR)"}, {"answer": "SELECT episodes FROM table_2639433_4 WHERE year = 2007", "question": "What episode came out in the year 2007?", "context": "CREATE TABLE table_2639433_4 (episodes VARCHAR, year VARCHAR)"}, {"answer": "SELECT timeslot FROM table_2639433_4 WHERE year = 2008", "question": "What was the timeslot for the episode in the year 2008?", "context": "CREATE TABLE table_2639433_4 (timeslot VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(market_share__target_group_14_49_) FROM table_2639433_4 WHERE viewers__in_millions_target_group_14_49_ = \"0.63\"", "question": "How many times was the viewer target group 0.63?", "context": "CREATE TABLE table_2639433_4 (market_share__target_group_14_49_ VARCHAR, viewers__in_millions_target_group_14_49_ VARCHAR)"}, {"answer": "SELECT role_s_ FROM table_26397277_3 WHERE pick__number = 17", "question": "Name the role for pick number 17", "context": "CREATE TABLE table_26397277_3 (role_s_ VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT brand__to_ FROM table_26397277_3 WHERE pick__number = 15", "question": "Name the brand for pick number 15", "context": "CREATE TABLE table_26397277_3 (brand__to_ VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT employee__real_name_ FROM table_26397277_3 WHERE brand__from_ = \"Raw\" AND role_s_ = \"Superstar\"", "question": "Name the employee real name for raw and superstar", "context": "CREATE TABLE table_26397277_3 (employee__real_name_ VARCHAR, brand__from_ VARCHAR, role_s_ VARCHAR)"}, {"answer": "SELECT MIN(weeks_at_peak) FROM table_26399982_2", "question": "What smallest amount in the weeks at peak column?", "context": "CREATE TABLE table_26399982_2 (weeks_at_peak INTEGER)"}, {"answer": "SELECT series FROM table_26400438_1 WHERE team = \"Lecor Sports\"", "question": "In which series did Lecor Sports participate?", "context": "CREATE TABLE table_26400438_1 (series VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(f_laps) FROM table_26400438_1 WHERE poles = 12", "question": "How many times did he hold 12 poles?", "context": "CREATE TABLE table_26400438_1 (f_laps VARCHAR, poles VARCHAR)"}, {"answer": "SELECT COUNT(races) FROM table_26400438_1 WHERE podiums = 8", "question": "In how many races did he have 8 podium finishes?", "context": "CREATE TABLE table_26400438_1 (races VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT COUNT(podiums) FROM table_26400438_1 WHERE team = \"Carlin\"", "question": "how many seasons  did he race in team Carlin?", "context": "CREATE TABLE table_26400438_1 (podiums VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_26427332_17 WHERE contestant = \"Jacqueline Kohl\"", "question": "How many entries are in the ranking for jacqueline kohl?", "context": "CREATE TABLE table_26427332_17 (place VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT measurements__in_cm_ FROM table_26427332_17 WHERE city = \"Sindelfingen\"", "question": "what measurement does the contestant from sindelfingen have?", "context": "CREATE TABLE table_26427332_17 (measurements__in_cm_ VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(federal_state) FROM table_26427332_17 WHERE city = \"Lahnstein\"", "question": "for how many federal states is the city of lahnstein listed in the ranking?", "context": "CREATE TABLE table_26427332_17 (federal_state VARCHAR, city VARCHAR)"}, {"answer": "SELECT contestant FROM table_26427332_17 WHERE city = \"Hanover\"", "question": "who are the participants from hanover?", "context": "CREATE TABLE table_26427332_17 (contestant VARCHAR, city VARCHAR)"}, {"answer": "SELECT MAX(district) FROM table_26416704_2 WHERE incumbent = \"Brian W. Thomas\"", "question": "What is the highest numbred district that has brian w. thomas as an incumbent?", "context": "CREATE TABLE table_26416704_2 (district INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT status FROM table_26416704_2 WHERE incumbent = \"Margaret Kaiser\"", "question": "What was the status of the election featuring incumbent margaret kaiser?", "context": "CREATE TABLE table_26416704_2 (status VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_26429658_1 WHERE directed_by = \"Arlene Sanford\"", "question": "How many episodes were directed by Arlene Sanford?", "context": "CREATE TABLE table_26429658_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_26429658_1 WHERE production_code = 2010", "question": "What was the title of the episode with a production code of 2010?", "context": "CREATE TABLE table_26429658_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_26429658_1 WHERE us_viewers__millions_ = \"4.43\"", "question": "How many production codes had a US viewership of 4.43 million?", "context": "CREATE TABLE table_26429658_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_26458137_2 WHERE opponents_in_the_final = \"Beti Sekulovski Cindy Watson\"", "question": "How many times is the opponents in the final is beti sekulovski cindy watson?", "context": "CREATE TABLE table_26458137_2 (score VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT partner FROM table_26458137_2 WHERE opponents_in_the_final = \"Stephanie Dubois Olga Savchuk\"", "question": "Who is the partner when the opponents in the final is stephanie dubois olga savchuk?", "context": "CREATE TABLE table_26458137_2 (partner VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT artist FROM table_26485957_1 WHERE result = \"4\"", "question": "Which artist had a result of 4?", "context": "CREATE TABLE table_26485957_1 (artist VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(judging_panel_points) FROM table_26485957_1", "question": "What is the minimum score given in judging panel points?", "context": "CREATE TABLE table_26485957_1 (judging_panel_points INTEGER)"}, {"answer": "SELECT move_only FROM table_26538035_1 WHERE developer = \"AiLive\"", "question": "For the game whose developer was Ailive, is it a Move-only release?", "context": "CREATE TABLE table_26538035_1 (move_only VARCHAR, developer VARCHAR)"}, {"answer": "SELECT COUNT(title_and_source) FROM table_26538035_1 WHERE developer = \"Clover Studio\"", "question": "How many titles/sources have a developer of Clover Studio?", "context": "CREATE TABLE table_26538035_1 (title_and_source VARCHAR, developer VARCHAR)"}, {"answer": "SELECT title_and_source FROM table_26538035_1 WHERE developer = \"Hydravision Entertainment\"", "question": "What is the title and source for the game developed by Hydravision Entertainment?", "context": "CREATE TABLE table_26538035_1 (title_and_source VARCHAR, developer VARCHAR)"}, {"answer": "SELECT series__number FROM table_2655016_9 WHERE original_air_date = \"September 21, 2002\"", "question": "What is the series # on airdate September 21, 2002?", "context": "CREATE TABLE table_2655016_9 (series__number VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_26565917_2 WHERE no_in_season = 5", "question": "what was the name of episode 5?", "context": "CREATE TABLE table_26565917_2 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_26565917_2 WHERE us_viewers__millions_ = \"14.55\"", "question": "when did 14.55 people watch?", "context": "CREATE TABLE table_26565917_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN(top_10) FROM table_26609690_1", "question": "What is the smallest top 10 figure?", "context": "CREATE TABLE table_26609690_1 (top_10 INTEGER)"}, {"answer": "SELECT MIN(year) FROM table_26609690_1", "question": "What is the earliest year on the chart?", "context": "CREATE TABLE table_26609690_1 (year INTEGER)"}, {"answer": "SELECT team_s_ FROM table_26609690_1 WHERE winnings = \"$15,785\"", "question": "Which team had $15,785 in winnings?", "context": "CREATE TABLE table_26609690_1 (team_s_ VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_26609690_1 WHERE team_s_ = \"RB1 Motorsports\"", "question": "How many positions are there for RB1 Motorsports?", "context": "CREATE TABLE table_26609690_1 (position VARCHAR, team_s_ VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_26609690_1", "question": "What is the highest number of wins?", "context": "CREATE TABLE table_26609690_1 (wins INTEGER)"}, {"answer": "SELECT team AS captain FROM table_26593762_2 WHERE team = \"Cardiff City\"", "question": "Who is the captain of Cardiff City?", "context": "CREATE TABLE table_26593762_2 (team VARCHAR)"}, {"answer": "SELECT team AS captain FROM table_26593762_2 WHERE manager = \"Neil Warnock\"", "question": "Who is the captain of Neil Warnock's team?", "context": "CREATE TABLE table_26593762_2 (team VARCHAR, manager VARCHAR)"}, {"answer": "SELECT team AS captain FROM table_26593762_2 WHERE manager = \"Dave Jones\"", "question": "Who is the captain of Dave Jones' team?", "context": "CREATE TABLE table_26593762_2 (team VARCHAR, manager VARCHAR)"}, {"answer": "SELECT chairman FROM table_26593762_2 WHERE manager = \"Mark Robins\"", "question": "Who is the chairman of Mark Robins team?", "context": "CREATE TABLE table_26593762_2 (chairman VARCHAR, manager VARCHAR)"}, {"answer": "SELECT release_date___xbox360__ FROM table_26631526_1 WHERE artist = \"Sea Wolf\"", "question": "Name the release date xbox 360 for sea wolf", "context": "CREATE TABLE table_26631526_1 (release_date___xbox360__ VARCHAR, artist VARCHAR)"}, {"answer": "SELECT party FROM table_2668243_20 WHERE incumbent = \"Richard Coulter\"", "question": " What party was represented by incumbent Richard Coulter ? ", "context": "CREATE TABLE table_2668243_20 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_2668243_8 WHERE incumbent = \"Henry Daniel\"", "question": "What was the result for Henry Daniel's race?", "context": "CREATE TABLE table_2668243_8 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_2668243_8 WHERE incumbent = \"Henry Daniel\"", "question": "When was Henry Daniel first elected?", "context": "CREATE TABLE table_2668243_8 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_2668243_8 WHERE incumbent = \"Thomas P. Moore\"", "question": "How many first elected years are provided for Thomas P. Moore?", "context": "CREATE TABLE table_2668243_8 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_2668243_8 WHERE incumbent = \"Joseph Lecompte\"", "question": "What district is Joseph Lecompte in office in?", "context": "CREATE TABLE table_2668243_8 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_2668264_22 WHERE incumbent = \"Joel R. Poinsett\"", "question": "What party does joel r. poinsett represent?", "context": "CREATE TABLE table_2668264_22 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_2668264_22 WHERE incumbent = \"Andrew R. Govan\"", "question": "What was the first elected year that featured incumbent andrew r. govan?", "context": "CREATE TABLE table_2668264_22 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_2668336_17 WHERE incumbent = \"Charles Fisher\"", "question": "In what district is the incumbent Charles Fisher?", "context": "CREATE TABLE table_2668336_17 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_2668336_17 WHERE first_elected = \"1807 1817\"", "question": "First elected in 1807 1817 in what district?", "context": "CREATE TABLE table_2668336_17 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668336_17 WHERE candidates = \"Charles Fisher (DR) 65.1% W. Jones (F) 34.9%\"", "question": "The candidates Charles Fisher (DR) 65.1% W. Jones (F) 34.9% is for what incumbent?", "context": "CREATE TABLE table_2668336_17 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668336_17 WHERE district = \"North Carolina 10\"", "question": "In district North Carolina 10, what are the candidates?", "context": "CREATE TABLE table_2668336_17 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_2668336_17 WHERE candidates = \"Charles Fisher (DR) 65.1% W. Jones (F) 34.9%\"", "question": "Candiates Charles Fisher (DR) 65.1% W. Jones (F) 34.9% had what result?", "context": "CREATE TABLE table_2668336_17 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668336_19 WHERE candidates = \"John Murray (DR) 50.4% George Denison (DR) 49.6%\" AND result = \"Retired Democratic-Republican hold\"", "question": "Who were the incumbent(s) in the election featuring  john murray (dr) 50.4% george denison (dr) 49.6% with a result of a retired democratic-republican hold?", "context": "CREATE TABLE table_2668336_19 (incumbent VARCHAR, candidates VARCHAR, result VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668336_19 WHERE result = \"Retired Democratic-Republican hold\" AND first_elected = \"1816\"", "question": "Who were the incumbent(s) when the result was a retired democratic-republican hold and the first elected representative was in 1816>", "context": "CREATE TABLE table_2668336_19 (incumbent VARCHAR, result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668336_19 WHERE incumbent = \"William Wilson\"", "question": "Who were the candidates in the election where william wilson was the incumbent?", "context": "CREATE TABLE table_2668336_19 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_2668352_14 WHERE district = \"Pennsylvania 8\"", "question": "Name the result for pennsylvania 8", "context": "CREATE TABLE table_2668352_14 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_2668352_14 WHERE first_elected = \"1810\"", "question": "Name the result for 1810", "context": "CREATE TABLE table_2668352_14 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_2668352_14 WHERE incumbent = \"Hugh Glasgow\"", "question": "Name the district for hugh glasgow", "context": "CREATE TABLE table_2668352_14 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668352_14 WHERE result = \"Lost re-election Democratic-Republican hold\"", "question": "Name the incumbent for lost re-election democratic-republican hold", "context": "CREATE TABLE table_2668352_14 (incumbent VARCHAR, result VARCHAR)"}, {"answer": "SELECT district FROM table_2668352_14 WHERE first_elected = \"1810\"", "question": "Name the district for first elected 1810", "context": "CREATE TABLE table_2668352_14 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_2668352_19 WHERE incumbent = \"James Pleasants\"", "question": "What party does James Pleasants belong to?", "context": "CREATE TABLE table_2668352_19 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_2668374_11 WHERE incumbent = \"William Kennedy\"", "question": "When was William Kennedy first elected?", "context": "CREATE TABLE table_2668374_11 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_2668378_13 WHERE incumbent = \"William Hoge\"", "question": "what was the section where the winner is william hoge", "context": "CREATE TABLE table_2668378_13 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668378_13 WHERE incumbent = \"Daniel Montgomery\"", "question": "who was running where the winner is daniel montgomery", "context": "CREATE TABLE table_2668378_13 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668378_13 WHERE district = \"Pennsylvania 5\"", "question": "who was running in the section pennsylvania 5", "context": "CREATE TABLE table_2668378_13 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668378_18 WHERE first_elected = \"1807\"", "question": "Who was the incumbent in the district that first elected someone in 1807?", "context": "CREATE TABLE table_2668378_18 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_2668378_18 WHERE incumbent = \"John Smith\"", "question": "When was someone first elected in the district with incumbent john smith?", "context": "CREATE TABLE table_2668378_18 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_2668378_18 WHERE incumbent = \"Matthew Clay\"", "question": "What party represents the district with incumbent matthew clay?", "context": "CREATE TABLE table_2668378_18 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_2668378_18 WHERE incumbent = \"John G. Jackson\"", "question": "What party represents the district with john g. jackson?", "context": "CREATE TABLE table_2668378_18 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_2668393_18 WHERE incumbent = \"John Dawson Redistricted from the 15th district\"", "question": "How many times was the incumbent john dawson redistricted from the 15th district?", "context": "CREATE TABLE table_2668393_18 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_2668393_18 WHERE candidates = \"Edwin Gray (DR)\"", "question": "What is the party for the candidates edwin gray (dr)?", "context": "CREATE TABLE table_2668393_18 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_2668393_18 WHERE district = \"Virginia 11\"", "question": "What is the result in the virginia 11 district?", "context": "CREATE TABLE table_2668393_18 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_2668393_18 WHERE candidates = \"Edwin Gray (DR)\"", "question": "What is the district with the candidates edwin gray (dr)?", "context": "CREATE TABLE table_2668393_18 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_2668393_18 WHERE first_elected = \"1797\" AND candidates = \"Abram Trigg (DR)\"", "question": "How many incumbents were first elected in 1797 with the candidates abram trigg (dr)?", "context": "CREATE TABLE table_2668393_18 (incumbent VARCHAR, first_elected VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT production_code FROM table_26702204_1 WHERE us_viewers__million_ = \"11.76\"", "question": "What is the production code when the u.s. viewers (million) is 11.76?", "context": "CREATE TABLE table_26702204_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_26702204_1 WHERE production_code = \"4ALH19\"", "question": "What was the u.s. viewers (millions) when the production code was 4alh19?", "context": "CREATE TABLE table_26702204_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT operator_name FROM table_26745820_1 WHERE distance = \"3105km\"", "question": "What is the operator name when the distance is 3105km?", "context": "CREATE TABLE table_26745820_1 (operator_name VARCHAR, distance VARCHAR)"}, {"answer": "SELECT no FROM table_26745820_1 WHERE distance = \"4168km\"", "question": "what is the no when the distance is 4168km?", "context": "CREATE TABLE table_26745820_1 (no VARCHAR, distance VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_26748252_1 WHERE us_viewers__in_millions_ = \"3.40\"", "question": "How many people wrote the episode with 3.40 million U.S viewers?", "context": "CREATE TABLE table_26748252_1 (written_by VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT COUNT(motogp_winner) FROM table_26781017_1 WHERE circuit = \"Catalunya\"", "question": "How many MotoGP winners were there when the circuit was Catalunya?", "context": "CREATE TABLE table_26781017_1 (motogp_winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT moto2_winner FROM table_26781017_1 WHERE grand_prix = \"Shell Advance Malaysian grand_prix\"", "question": "Who are all the Moto2 winners when the grand prix was Shell Advance Malaysian Grand Prix?", "context": "CREATE TABLE table_26781017_1 (moto2_winner VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT motogp_winner FROM table_26781017_1 WHERE circuit = \"Catalunya\"", "question": "Who are all the motogp winners when the circuit was Catalunya?", "context": "CREATE TABLE table_26781017_1 (motogp_winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT area__km\u00b2___per_sqmi_ FROM table_26769_1 WHERE country_or_territory_with_flag = \"Colombia\"", "question": "What was the area (km\u00b2) (per sqmi) of the country Colombia?", "context": "CREATE TABLE table_26769_1 (area__km\u00b2___per_sqmi_ VARCHAR, country_or_territory_with_flag VARCHAR)"}, {"answer": "SELECT MAX(population__july_2009_est_) FROM table_26769_1 WHERE capital = \"Quito\"", "question": "What was the maximum population of the country with Quito as capital?", "context": "CREATE TABLE table_26769_1 (population__july_2009_est_ INTEGER, capital VARCHAR)"}, {"answer": "SELECT population__july_2009_est_ FROM table_26769_1 WHERE population_density_per_km\u00b2 = \"14.3/km\u00b2 (/sqmi)\"", "question": "What was the population of a country with a population density of 14.3/km\u00b2 (/sqmi)?", "context": "CREATE TABLE table_26769_1 (population__july_2009_est_ VARCHAR, population_density_per_km\u00b2 VARCHAR)"}, {"answer": "SELECT area__km\u00b2___per_sqmi_ FROM table_26769_1 WHERE population_density_per_km\u00b2 = \"8.4/km\u00b2 (/sqmi)\"", "question": "What was the area (km\u00b2) (per sqmi) of a country with a population density per km\u00b2 of 8.4/km\u00b2 (/sqmi)?", "context": "CREATE TABLE table_26769_1 (area__km\u00b2___per_sqmi_ VARCHAR, population_density_per_km\u00b2 VARCHAR)"}, {"answer": "SELECT country_or_territory_with_flag FROM table_26769_1 WHERE population_density_per_km\u00b2 = \"3.5/km\u00b2 (/sqmi)\"", "question": "What was the country with a population density per km\u00b2 of 3.5/km\u00b2 (/sqmi)?", "context": "CREATE TABLE table_26769_1 (country_or_territory_with_flag VARCHAR, population_density_per_km\u00b2 VARCHAR)"}, {"answer": "SELECT capital FROM table_26769_1 WHERE population_density_per_km\u00b2 = \"15.6/km\u00b2 (/sqmi)\"", "question": "What is the capital of the country with a population density per km\u00b2 of 15.6/km\u00b2 (/sqmi)?", "context": "CREATE TABLE table_26769_1 (capital VARCHAR, population_density_per_km\u00b2 VARCHAR)"}, {"answer": "SELECT position FROM table_2679061_6 WHERE pick__number = 103", "question": "what is the position for pick # 103?", "context": "CREATE TABLE table_2679061_6 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_2679061_6 WHERE nhl_team = \"Vancouver Canucks\"", "question": "What is the pick # for nhl team vancouver canucks?", "context": "CREATE TABLE table_2679061_6 (pick__number INTEGER, nhl_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_2679061_6 WHERE player = \"Kevin Stevens\"", "question": "What is the nationality of the player kevin stevens?", "context": "CREATE TABLE table_2679061_6 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_2679061_6 WHERE player = \"Don Barber\"", "question": "What is the highest pick number for player don barber?", "context": "CREATE TABLE table_2679061_6 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2679061_6 WHERE player = \"Don Barber\"", "question": "What is the college/junior/club team for player don barber?", "context": "CREATE TABLE table_2679061_6 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2679061_6 WHERE position = \"Centre\" AND nationality = \"United States\"", "question": "What is the nhl team for the position centre and nationality united states?", "context": "CREATE TABLE table_2679061_6 (nhl_team VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT nationality FROM table_2679061_7 WHERE nhl_team = \"Winnipeg Jets\"", "question": "What country do the Winnipeg Jets come from?", "context": "CREATE TABLE table_2679061_7 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(college_junior_club_team) FROM table_2679061_7 WHERE pick__number = 130", "question": "How many teams got pick number 130?", "context": "CREATE TABLE table_2679061_7 (college_junior_club_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2679061_7 WHERE nhl_team = \"Buffalo Sabres\"", "question": "Where are the Buffalo Sabres from?", "context": "CREATE TABLE table_2679061_7 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT season__number FROM table_26804862_1 WHERE directed_by = \"Harvey Laidman\"", "question": "When harvey laidman is the director what is the season number?", "context": "CREATE TABLE table_26804862_1 (season__number VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(season__number) FROM table_26804862_1 WHERE production_code = \"3.89\"", "question": "When 3.89 is the production code how many season numbers are there?", "context": "CREATE TABLE table_26804862_1 (season__number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_26808178_1 WHERE series__number = 4", "question": "How many episodes is episode number 4 in the series?", "context": "CREATE TABLE table_26808178_1 (title VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_26808178_1 WHERE series__number = 3", "question": "How many million viewers watched episode 3 in the series?", "context": "CREATE TABLE table_26808178_1 (us_viewers__millions_ VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT MAX(home_att) FROM table_26816495_26 WHERE avg = \"11,322\"", "question": "What is the maximum home attendance if the average is 11,322?", "context": "CREATE TABLE table_26816495_26 (home_att INTEGER, avg VARCHAR)"}, {"answer": "SELECT weekly_rank_sky1 FROM table_26826304_2 WHERE _number = 103", "question": "What is title numer 103's rank for weekly rank sky1?", "context": "CREATE TABLE table_26826304_2 (weekly_rank_sky1 VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MIN(weekly_rank_sky1) FROM table_26826304_2 WHERE _number = 97", "question": "What was the rank by Weekly Rank Sky1 for title number 97?", "context": "CREATE TABLE table_26826304_2 (weekly_rank_sky1 INTEGER, _number VARCHAR)"}, {"answer": "SELECT MIN(weekly_rank_virgin_media) FROM table_26826304_2 WHERE air_date = \"May 20, 2010\"", "question": "What was the weekly rank by Virgin media for the title aired on May 20, 2010?", "context": "CREATE TABLE table_26826304_2 (weekly_rank_virgin_media INTEGER, air_date VARCHAR)"}, {"answer": "SELECT timeslot FROM table_26826304_2 WHERE air_date = \"October 22, 2009\"", "question": "A what time was the title aired in October 22, 2009", "context": "CREATE TABLE table_26826304_2 (timeslot VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT COUNT(hand_number) FROM table_26853172_1 WHERE player_1 = \"South\" AND prevailing_wind = \"East\"", "question": "What is the hand number of the hand where player 1 is south and the east wind is prevailing?", "context": "CREATE TABLE table_26853172_1 (hand_number VARCHAR, player_1 VARCHAR, prevailing_wind VARCHAR)"}, {"answer": "SELECT player_1 FROM table_26853172_1 WHERE player_3 = \"South\" AND prevailing_wind = \"South\"", "question": "What is player 1 when player 3 is South and the prevailing wind is South?", "context": "CREATE TABLE table_26853172_1 (player_1 VARCHAR, player_3 VARCHAR, prevailing_wind VARCHAR)"}, {"answer": "SELECT directed_by FROM table_26914076_4 WHERE us_viewers__millions_ = \"0.54\"", "question": "Who directed the episode that had 0.54 million U.S. viewers? ", "context": "CREATE TABLE table_26914076_4 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT teleplay_by FROM table_26914076_4 WHERE directed_by = \"Tim Robbins\"", "question": "Who wrote the teleplay for the episode directed by Tim Robbins? ", "context": "CREATE TABLE table_26914076_4 (teleplay_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_26914076_4 WHERE us_viewers__millions_ = \"0.57\"", "question": "Who directed the episode that had 0.57 million U.S. viewers? ", "context": "CREATE TABLE table_26914076_4 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_26914076_4 WHERE us_viewers__millions_ = \"0.49\"", "question": "What number episode in the season was watched by 0.49 million U.S. viewers? ", "context": "CREATE TABLE table_26914076_4 (_number INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_26920192_5 WHERE series = \"Italian\" AND circuit = \"Valencia\"", "question": "How many times is the series italian and the circuit is valencia?", "context": "CREATE TABLE table_26920192_5 (round VARCHAR, series VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_26920192_5 WHERE circuit = \"Magione\"", "question": "Who had the fastest lap for the circuit magione?", "context": "CREATE TABLE table_26920192_5 (fastest_lap VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_26920192_5 WHERE winning_driver = \"Giorgio Sanna\"", "question": "Who had the fastest lap when the winning driver is giorgio sanna?", "context": "CREATE TABLE table_26920192_5 (fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_26920192_5 WHERE winning_driver = \"Kristian Ghedina\"", "question": "Who had the fastest lap when the winning driver was kristian ghedina?", "context": "CREATE TABLE table_26920192_5 (fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT title FROM table_26961951_6 WHERE directed_by = \"Romeo Tirone\"", "question": "What is the title of the episode directed by Romeo Tirone?", "context": "CREATE TABLE table_26961951_6 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_26961951_6 WHERE written_by = \"Abe Sylvia\"", "question": "When did the episode written by Abe Sylvia originally air?", "context": "CREATE TABLE table_26961951_6 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_26961951_6 WHERE us_viewers__million_ = \"0.56\"", "question": "Which episode number had a viewership of 0.56 million?", "context": "CREATE TABLE table_26961951_6 (no_in_series INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_26961951_6 WHERE directed_by = \"Jesse Peretz\"", "question": "Who was the writer in the episode directed by Jesse Peretz?", "context": "CREATE TABLE table_26961951_6 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT result FROM table_26977890_1 WHERE combatants_b = \"Royal Navy\"", "question": "With the Royal Navy as Combatants B, what was the result?", "context": "CREATE TABLE table_26977890_1 (result VARCHAR, combatants_b VARCHAR)"}, {"answer": "SELECT conflict FROM table_26977890_1 WHERE combatants_b = \"Italian Navy\"", "question": "In what conflicts was the Italian Navy Combatants B?", "context": "CREATE TABLE table_26977890_1 (conflict VARCHAR, combatants_b VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_26977890_1 WHERE battles = \"Battle of the Yellow Sea\"", "question": "How many battles resulted in Battle of the Yellow Sea?", "context": "CREATE TABLE table_26977890_1 (result VARCHAR, battles VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_26986076_3 WHERE rider = \"Paul Coward 492cc Nourish Weslake\"", "question": "What is Paul Coward 492cc nourish Weslake's lowest rank?", "context": "CREATE TABLE table_26986076_3 (rank INTEGER, rider VARCHAR)"}, {"answer": "SELECT mon_23_aug FROM table_26986076_3 WHERE rider = \"Steve Linsdell 499cc Royal Enfield Seeley\"", "question": "What was the time on Monday August 23rd for Steve Linsdell 499cc royal enfield seeley?", "context": "CREATE TABLE table_26986076_3 (mon_23_aug VARCHAR, rider VARCHAR)"}, {"answer": "SELECT turbo_boost FROM table_269920_17 WHERE model = \"E5504\"", "question": "Does the model e5504 have a turbo boost?", "context": "CREATE TABLE table_269920_17 (turbo_boost VARCHAR, model VARCHAR)"}, {"answer": "SELECT speed__ghz_ FROM table_269920_17 WHERE model = \"X5560\"", "question": "What is the speed of model x5560?", "context": "CREATE TABLE table_269920_17 (speed__ghz_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT MAX(l3_cache__mb_) FROM table_269920_17 WHERE qpi_speed__gt_s_ = \"4.8\" AND speed__ghz_ = \"2.00\" AND model = \"E5504\"", "question": "What is the maximum L3 cache of the processor whose speed is 2.00 GHZ, has a QPI speed of 4.8 gt/s, and is model e5504?", "context": "CREATE TABLE table_269920_17 (l3_cache__mb_ INTEGER, model VARCHAR, qpi_speed__gt_s_ VARCHAR, speed__ghz_ VARCHAR)"}, {"answer": "SELECT COUNT(qpi_speed__gt_s_) FROM table_269920_17 WHERE model = \"L5506\"", "question": "How many models numbered L5506 have a QPI speed?", "context": "CREATE TABLE table_269920_17 (qpi_speed__gt_s_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT game_3 FROM table_27039190_3 WHERE viewers = \"Under 2.61m\"", "question": "What was game 3 when there were under 2.61m viewers?", "context": "CREATE TABLE table_27039190_3 (game_3 VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_27039190_3 WHERE viewers = \"4.44m\"", "question": "How many episodes had 4.44m viewers?", "context": "CREATE TABLE table_27039190_3 (episode VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT committee FROM table_27050981_7 WHERE district = \"46\"", "question": "What committees do the district 46 members serve on?", "context": "CREATE TABLE table_27050981_7 (committee VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(league_apps) FROM table_27086613_5 WHERE total_apps = 5", "question": "Name the least league apps for total apps of 5 ", "context": "CREATE TABLE table_27086613_5 (league_apps INTEGER, total_apps VARCHAR)"}, {"answer": "SELECT MIN(fa_cup_goals) FROM table_27086613_5 WHERE fa_cup_apps = 2 AND position = \"FW\"", "question": "Name the least fa cup goals with fa cup apps being 2 and fw ", "context": "CREATE TABLE table_27086613_5 (fa_cup_goals INTEGER, fa_cup_apps VARCHAR, position VARCHAR)"}, {"answer": "SELECT total_apps FROM table_27086613_5 WHERE league_apps = 4", "question": "Name the total apps for league apps being 4", "context": "CREATE TABLE table_27086613_5 (total_apps VARCHAR, league_apps VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_27114708_2 WHERE replaced_by = \"Alfredo Aglietti\"", "question": "Please mention those appointment dates those are replaced by alfredo aglietti", "context": "CREATE TABLE table_27114708_2 (date_of_appointment VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT team FROM table_27114708_2 WHERE replaced_by = \"Gianluca Atzori\"", "question": "Mention all the applicable team who are replaced by gianluca atzori", "context": "CREATE TABLE table_27114708_2 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_27114708_2 WHERE team = \"Reggina\"", "question": "For team reggina please mention all the outgoing manager ", "context": "CREATE TABLE table_27114708_2 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_27114708_2 WHERE team = \"Ascoli\"", "question": "For team ascoli please mention all the appointment date.", "context": "CREATE TABLE table_27114708_2 (date_of_appointment VARCHAR, team VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_27114708_2 WHERE outgoing_manager = \"Alberto Malesani\"", "question": "For outgoing manager is alberto malesani mention all the applicable replaced by person", "context": "CREATE TABLE table_27114708_2 (replaced_by VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_27114708_2 WHERE team = \"Livorno\"", "question": "For livorno team mention all the manner of departure", "context": "CREATE TABLE table_27114708_2 (manner_of_departure VARCHAR, team VARCHAR)"}, {"answer": "SELECT title FROM table_27115960_1 WHERE written_by = \"Phil Klemmer\" AND production_code = \"3T6455\"", "question": "Phil Klemmer wrote all titles and production code is 3t6455. ", "context": "CREATE TABLE table_27115960_1 (title VARCHAR, written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_27115960_1 WHERE no_in_series = 9", "question": "Season 9 all the titles were no. in series.", "context": "CREATE TABLE table_27115960_1 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_27115960_1 WHERE us_viewers__million_ = \"7.56\"", "question": "Title is the total number where u.s. viewers (million) is 7.56.", "context": "CREATE TABLE table_27115960_1 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_27155243_4 WHERE episode__number = 3", "question": "How many items appear in the written by column in episode 3?", "context": "CREATE TABLE table_27155243_4 (written_by VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT MAX(episode__number) FROM table_27155243_4 WHERE written_by = \"Matt MacLennan\"", "question": "What episode was written by Matt Maclennan?", "context": "CREATE TABLE table_27155243_4 (episode__number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT MAX(total__number) FROM table_27155243_4 WHERE written_by = \"Sheri Elwood\"", "question": "What is largest total number that was written by Sheri Elwood?", "context": "CREATE TABLE table_27155243_4 (total__number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT originalairdate FROM table_27218002_1 WHERE ratings = \"2.19 Million\"", "question": "Name the air date for ratings of 2.19 million", "context": "CREATE TABLE table_27218002_1 (originalairdate VARCHAR, ratings VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27218002_1 WHERE originalairdate = \"12 July 2010\"", "question": "Name who directed the air date of 12 july 2010", "context": "CREATE TABLE table_27218002_1 (directed_by VARCHAR, originalairdate VARCHAR)"}, {"answer": "SELECT MIN(episode__number) FROM table_27218002_1 WHERE written_by = \"Jonathan Harvey\"", "question": "Name the least episode number for jonathan harvey", "context": "CREATE TABLE table_27218002_1 (episode__number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_27218002_1 WHERE originalairdate = \"26 July 2010\"", "question": "Name the total number of written by for 26 july 2010", "context": "CREATE TABLE table_27218002_1 (written_by VARCHAR, originalairdate VARCHAR)"}, {"answer": "SELECT season FROM table_27274566_2 WHERE result = \"1\u20130 (aet)\"", "question": "Which season had a result of 1\u20130 (aet)?", "context": "CREATE TABLE table_27274566_2 (season VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_27274566_2 WHERE season = \"2007-08\" AND away_team = \"Kaizer Chiefs\"", "question": "What is the date in the 2007-08 season where the away team was the kaizer chiefs?", "context": "CREATE TABLE table_27274566_2 (date VARCHAR, season VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_27274566_2 WHERE home_team = \"Orlando Pirates\" AND result = \"1\u20133\"", "question": "How many dates are shown for the home team of orlando pirates and result of 1\u20133?", "context": "CREATE TABLE table_27274566_2 (date VARCHAR, home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT division FROM table_27274566_2 WHERE result = \"0\u20132\"", "question": "What is the division where the result was 0\u20132?", "context": "CREATE TABLE table_27274566_2 (division VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_27274566_2 WHERE home_team = \"Kaizer Chiefs\" AND division = \"MTN 8 Semi-final\"", "question": "What is the date where the home team was kaizer chiefs and the division was mtn 8 semi-final?", "context": "CREATE TABLE table_27274566_2 (date VARCHAR, home_team VARCHAR, division VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_27277284_27 WHERE order_part_number = \"AMQL64DAM22GG\"", "question": "What are the L2 cache specifications of part number amql64dam22gg?", "context": "CREATE TABLE table_27277284_27 (l2_cache VARCHAR, order_part_number VARCHAR)"}, {"answer": "SELECT voltage FROM table_27277284_27 WHERE order_part_number = \"AMQL64DAM22GG\"", "question": "What is the operating voltage of part number amql64dam22gg?", "context": "CREATE TABLE table_27277284_27 (voltage VARCHAR, order_part_number VARCHAR)"}, {"answer": "SELECT mult_1 FROM table_27277284_27 WHERE frequency = \"1900MHz\"", "question": "What are the possible multipliers for 1900MHz processors?", "context": "CREATE TABLE table_27277284_27 (mult_1 VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT COUNT(tdp) FROM table_27277284_27 WHERE order_part_number = \"AMQL65DAM22GG\"", "question": "How many thermal design power levels does part number amql65dam22gg have?", "context": "CREATE TABLE table_27277284_27 (tdp VARCHAR, order_part_number VARCHAR)"}, {"answer": "SELECT socket FROM table_27277284_27 WHERE frequency = \"2100MHz\" AND model_number = \"Athlon X2 QL-64\"", "question": "What kind of sockets does a 2100MHz Athlon X2 QL-64 use?", "context": "CREATE TABLE table_27277284_27 (socket VARCHAR, frequency VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT COUNT(years_active) FROM table_272865_20 WHERE asian_cup_played_as_a_captain = \"Japan 1992\"", "question": "What is the total number of years active listings where Asian Cup played as a captain is Japan 1992?", "context": "CREATE TABLE table_272865_20 (years_active VARCHAR, asian_cup_played_as_a_captain VARCHAR)"}, {"answer": "SELECT matches_as_captain FROM table_272865_20 WHERE asian_cup_played_as_a_captain = \"Qatar 1988\"", "question": "How many matches as captain were played where Asian Cup played as a captain is Qatar 1988", "context": "CREATE TABLE table_272865_20 (matches_as_captain VARCHAR, asian_cup_played_as_a_captain VARCHAR)"}, {"answer": "SELECT years_active FROM table_272865_20 WHERE asian_cup_played_as_a_captain = \"Iran 1976\"", "question": "What were the years active where Asian Cup played as a captain is Iran 1976?", "context": "CREATE TABLE table_272865_20 (years_active VARCHAR, asian_cup_played_as_a_captain VARCHAR)"}, {"answer": "SELECT years_active FROM table_272865_20 WHERE asian_cup_played_as_a_captain = \"Qatar 1988\"", "question": "What were the years active where Asian Cup played as a captain is Qatar 1988?", "context": "CREATE TABLE table_272865_20 (years_active VARCHAR, asian_cup_played_as_a_captain VARCHAR)"}, {"answer": "SELECT first_driver_s_ FROM table_27279050_3 WHERE country = \"Romania\"", "question": "Who is the first driver(s) when the country is romania?", "context": "CREATE TABLE table_27279050_3 (first_driver_s_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_27279050_3 WHERE last_current_driver_s__3_november_2013 = \"Adderly Fong ( 2013 )\"", "question": "How many times is last/current driver(s) 3 november 2013 is adderly fong ( 2013 )?", "context": "CREATE TABLE table_27279050_3 (country VARCHAR, last_current_driver_s__3_november_2013 VARCHAR)"}, {"answer": "SELECT last_current_driver_s__3_november_2013 FROM table_27279050_3 WHERE first_driver_s_ = \"Marlon St\u00f6ckinger , Kotaro Sakurai ( 2011 )\"", "question": "Who is the last/current driver(s) 3 november 2013 when first driver(s) is marlon st\u00f6ckinger , kotaro sakurai ( 2011 )?", "context": "CREATE TABLE table_27279050_3 (last_current_driver_s__3_november_2013 VARCHAR, first_driver_s_ VARCHAR)"}, {"answer": "SELECT country FROM table_27279050_3 WHERE last_current_driver_s__3_november_2013 = \"Daniel Abt ( 2012 )\"", "question": "What is the country when last/current driver(s) 3 november 2013 is daniel abt ( 2012 )?", "context": "CREATE TABLE table_27279050_3 (country VARCHAR, last_current_driver_s__3_november_2013 VARCHAR)"}, {"answer": "SELECT lost FROM table_27293285_2 WHERE bonus_points = \"9\" AND won = \"11\"", "question": " How many losses did the club who had 9 bonus points and 11 wins have?", "context": "CREATE TABLE table_27293285_2 (lost VARCHAR, bonus_points VARCHAR, won VARCHAR)"}, {"answer": "SELECT bonus_points FROM table_27293285_2 WHERE points_for = \"379\"", "question": "How many bonus points did the club who had 379 points for have?", "context": "CREATE TABLE table_27293285_2 (bonus_points VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT club FROM table_27293285_2 WHERE bonus_points = \"5\"", "question": "Which club had 5 bonus points?", "context": "CREATE TABLE table_27293285_2 (club VARCHAR, bonus_points VARCHAR)"}, {"answer": "SELECT bonus_points FROM table_27293285_2 WHERE lost = \"18\"", "question": "How many bonus points did the club who had 18 losses have?", "context": "CREATE TABLE table_27293285_2 (bonus_points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points_for FROM table_27293285_2 WHERE club = \"Munster\"", "question": "How many points for did Munster have?", "context": "CREATE TABLE table_27293285_2 (points_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_against FROM table_27293285_2 WHERE points_for = \"353\"", "question": "How many points against did the club who had 353 points for have? ", "context": "CREATE TABLE table_27293285_2 (points_against VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT team FROM table_27312918_5 WHERE game = 4", "question": "What was the team the Suns played against in game number 4?", "context": "CREATE TABLE table_27312918_5 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_27312918_5 WHERE game = 5", "question": "Who got the most points in game number 5?", "context": "CREATE TABLE table_27312918_5 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT default_desktop_environment FROM table_27329061_2 WHERE code_base = \"Ubuntu 8.04\" AND edition = \"Fluxbox CE\"", "question": "What is the default desktop environment when the code base is ubuntu 8.04 and edition is fluxbox ce?", "context": "CREATE TABLE table_27329061_2 (default_desktop_environment VARCHAR, code_base VARCHAR, edition VARCHAR)"}, {"answer": "SELECT compatible_repository FROM table_27329061_2 WHERE version = \"Old version, no longer supported: 9\" AND default_desktop_environment = \"LXDE\"", "question": "What is the compatible repository when the version is old version, no longer supported: 9 and default desktop environment is lxde?", "context": "CREATE TABLE table_27329061_2 (compatible_repository VARCHAR, version VARCHAR, default_desktop_environment VARCHAR)"}, {"answer": "SELECT codename FROM table_27329061_2 WHERE code_base = \"Ubuntu 8.04\" AND edition = \"Fluxbox CE\"", "question": "What is the the codename when the code base is ubuntu 8.04 and the edition is fluxbox ce?", "context": "CREATE TABLE table_27329061_2 (codename VARCHAR, code_base VARCHAR, edition VARCHAR)"}, {"answer": "SELECT default_desktop_environment FROM table_27329061_2 WHERE edition = \"KDE\" AND compatible_repository = \"Ubuntu 13.04\"", "question": "What is the default desktop environment when the edition is kde and the compatible repository is ubuntu 13.04?", "context": "CREATE TABLE table_27329061_2 (default_desktop_environment VARCHAR, edition VARCHAR, compatible_repository VARCHAR)"}, {"answer": "SELECT version FROM table_27329061_2 WHERE codename = \"Ada\"", "question": "What is the version when the codename is ada?", "context": "CREATE TABLE table_27329061_2 (version VARCHAR, codename VARCHAR)"}, {"answer": "SELECT version FROM table_27329061_2 WHERE compatible_repository = \"Xubuntu 10.04\"", "question": "What is the version when the compatible reposityory is xubuntu 10.04", "context": "CREATE TABLE table_27329061_2 (version VARCHAR, compatible_repository VARCHAR)"}, {"answer": "SELECT MAX(population__2001_) FROM table_27366772_3", "question": "What is the highest population in 2001?", "context": "CREATE TABLE table_27366772_3 (population__2001_ INTEGER)"}, {"answer": "SELECT district FROM table_27366772_3 WHERE armenian = \"\u0554\u0561\u0576\u0561\u0584\u0565\u0580-\u0536\u0565\u0575\u0569\u0578\u0582\u0576\"", "question": "What district is known in Armenian as \u0584\u0561\u0576\u0561\u0584\u0565\u0580-\u0566\u0565\u0575\u0569\u0578\u0582\u0576?", "context": "CREATE TABLE table_27366772_3 (district VARCHAR, armenian VARCHAR)"}, {"answer": "SELECT armenian FROM table_27366772_3 WHERE area__km\u00b2_ = \"8.37\"", "question": "What is the Armenian name of the district that is 8.37 km\u00b2 large?", "context": "CREATE TABLE table_27366772_3 (armenian VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT soccer_stadium FROM table_27369069_1 WHERE province = \"NL\"", "question": "What is the name of the soccer stadium in NL providence?", "context": "CREATE TABLE table_27369069_1 (soccer_stadium VARCHAR, province VARCHAR)"}, {"answer": "SELECT province FROM table_27369069_1 WHERE founded = 2005", "question": "which providence's soccer stadium was founded in 2005?", "context": "CREATE TABLE table_27369069_1 (province VARCHAR, founded VARCHAR)"}, {"answer": "SELECT varsity_name FROM table_27369069_1 WHERE city = \"Charlottetown\"", "question": "What is the team mascot for the soccer team in Charlottetown?", "context": "CREATE TABLE table_27369069_1 (varsity_name VARCHAR, city VARCHAR)"}, {"answer": "SELECT province FROM table_27369069_1 WHERE stadium_capacity = \"4,000\"", "question": "Which province has the soccer stadium that holds 4,000 people?", "context": "CREATE TABLE table_27369069_1 (province VARCHAR, stadium_capacity VARCHAR)"}, {"answer": "SELECT university FROM table_27369069_1 WHERE soccer_stadium = \"Moncton Stadium\"", "question": "Which University's soccer stadium in named Moncton Stadium?", "context": "CREATE TABLE table_27369069_1 (university VARCHAR, soccer_stadium VARCHAR)"}, {"answer": "SELECT current_womens_lacrosse_conference FROM table_27378582_1 WHERE enrollment = 6000", "question": "Name the current womens lacrosse conference for 6000 enrollment", "context": "CREATE TABLE table_27378582_1 (current_womens_lacrosse_conference VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT city FROM table_27378582_1 WHERE enrollment = 19900", "question": "Name the city for enrollment being 19900", "context": "CREATE TABLE table_27378582_1 (city VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT current_womens_lacrosse_conference FROM table_27378582_1 WHERE nickname = \"Bison\"", "question": "Name the current womens lacrosse conference for bison", "context": "CREATE TABLE table_27378582_1 (current_womens_lacrosse_conference VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_27378582_1 WHERE nickname = \"Bison\"", "question": "Name the most founded for bison", "context": "CREATE TABLE table_27378582_1 (founded INTEGER, nickname VARCHAR)"}, {"answer": "SELECT MAX(weeks_at__number1) FROM table_27441210_12 WHERE artist = \"K.Maro\"", "question": "How many weeks was K.Maro at #1?", "context": "CREATE TABLE table_27441210_12 (weeks_at__number1 INTEGER, artist VARCHAR)"}, {"answer": "SELECT MAX(weeks_at__number1) FROM table_27441210_12 WHERE country = \"France\"", "question": "How many weeks was France at #1?", "context": "CREATE TABLE table_27441210_12 (weeks_at__number1 INTEGER, country VARCHAR)"}, {"answer": "SELECT number_one_single_s_ FROM table_27441210_20 WHERE weeks_at__number1 = 5", "question": "Name the number one singles for week 1 being 5", "context": "CREATE TABLE table_27441210_20 (number_one_single_s_ VARCHAR, weeks_at__number1 VARCHAR)"}, {"answer": "SELECT number_one_single_s_ FROM table_27441210_5 WHERE artist = \"Desvarieux, Jacob\"", "question": "Name the number one singles for  desvarieux, jacob", "context": "CREATE TABLE table_27441210_5 (number_one_single_s_ VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MIN(weeks_at__number1) FROM table_27441210_5 WHERE year = 1988", "question": "Name the least weeks at number 1 for 1988", "context": "CREATE TABLE table_27441210_5 (weeks_at__number1 INTEGER, year VARCHAR)"}, {"answer": "SELECT title FROM table_27450976_1 WHERE written_by = \"Scott M. Gimple\"", "question": "What is the name of the episode that was written by Scott M. Gimple?", "context": "CREATE TABLE table_27450976_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_27450976_1 WHERE production_code = \"2J5504\"", "question": "What is the title of the episode with a production code of 2j5504?", "context": "CREATE TABLE table_27450976_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_27450976_1 WHERE production_code = \"2J5507\"", "question": "How many people wrote the episode with a production code of 2j5507?", "context": "CREATE TABLE table_27450976_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_27491610_2 WHERE directed_by = \"Skip Sudduth\"", "question": "What was the latest number in series that was directed by Skip Sudduth?", "context": "CREATE TABLE table_27491610_2 (no_in_series INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_27491610_2 WHERE us_viewers__millions_ = \"10.18\"", "question": "What number in season had 10.18 million US viewers?", "context": "CREATE TABLE table_27491610_2 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27491610_2 WHERE directed_by = \"Alex Zakrzewski\"", "question": "What was the original air date of the episode that was directed by Alex Zakrzewski?", "context": "CREATE TABLE table_27491610_2 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_27491610_2 WHERE no_in_series = 141", "question": "What number in season is number 141 in series?", "context": "CREATE TABLE table_27491610_2 (no_in_season INTEGER, no_in_series VARCHAR)"}, {"answer": "SELECT formed_from FROM table_275023_1 WHERE province = \"New Plymouth\"", "question": "What province was New Plymouth formed from?", "context": "CREATE TABLE table_275023_1 (formed_from VARCHAR, province VARCHAR)"}, {"answer": "SELECT reason FROM table_275023_1 WHERE province = \"Otago\"", "question": "Why was Otago formed?", "context": "CREATE TABLE table_275023_1 (reason VARCHAR, province VARCHAR)"}, {"answer": "SELECT province FROM table_275023_1 WHERE formed_from = \"New Munster\"", "question": "What provinces were formed from New Munster?", "context": "CREATE TABLE table_275023_1 (province VARCHAR, formed_from VARCHAR)"}, {"answer": "SELECT COUNT(formed_date) FROM table_275023_1 WHERE province = \"Wellington\"", "question": "How many provinces are named Wellington?", "context": "CREATE TABLE table_275023_1 (formed_date VARCHAR, province VARCHAR)"}, {"answer": "SELECT january FROM table_27537870_6 WHERE decision = \"Lalime\"", "question": "If the decision was by Lalime, when in January was it made?", "context": "CREATE TABLE table_27537870_6 (january VARCHAR, decision VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_27537870_6 WHERE january = 21", "question": "If the game was on January 21, which game was it?", "context": "CREATE TABLE table_27537870_6 (game INTEGER, january VARCHAR)"}, {"answer": "SELECT decision FROM table_27537870_6 WHERE score = \"5-3\"", "question": "If the score is 5-3, who made the decision?", "context": "CREATE TABLE table_27537870_6 (decision VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_27537870_6 WHERE opponent = \"Philadelphia Flyers\"", "question": "If the opponent was the Philadelphia flyers, what was the record?", "context": "CREATE TABLE table_27537870_6 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_27537870_6 WHERE record = \"22-21-5\"", "question": "If the record was 22-21-5, who was the opponent?", "context": "CREATE TABLE table_27537870_6 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27537870_6 WHERE opponent = \"@ Boston Bruins\"", "question": "If the opponent was @ Boston Bruins, what was the Location/Attendance?", "context": "CREATE TABLE table_27537870_6 (location_attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(february) FROM table_27539535_7 WHERE record = \"17-29-7\"", "question": "What day in February was the team 17-29-7?", "context": "CREATE TABLE table_27539535_7 (february INTEGER, record VARCHAR)"}, {"answer": "SELECT record FROM table_27539535_7 WHERE opponent = \"Ottawa Senators\"", "question": "What was the teams record when they played the ottawa senators?", "context": "CREATE TABLE table_27539535_7 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_27539535_7 WHERE february = 1", "question": "What was the team's rcord on february 1?", "context": "CREATE TABLE table_27539535_7 (record VARCHAR, february VARCHAR)"}, {"answer": "SELECT february FROM table_27539535_7 WHERE opponent = \"Boston Bruins\"", "question": "What day in February did the team play the boston bruins?", "context": "CREATE TABLE table_27539535_7 (february VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT season FROM table_27571406_1 WHERE team_name = \"Pons Racing\"", "question": "In what season did Pons Racing compete?", "context": "CREATE TABLE table_27571406_1 (season VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT f_laps FROM table_27571406_1 WHERE podiums = 8", "question": "What's the f/laps count for the team with 8 podiums?", "context": "CREATE TABLE table_27571406_1 (f_laps VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT MIN(stage) FROM table_275506_1 WHERE yellow_jersey = \"Ronan Pensec\"", "question": "What is the lowest stage when the yellow jersey is Ronan Pensec?", "context": "CREATE TABLE table_275506_1 (stage INTEGER, yellow_jersey VARCHAR)"}, {"answer": "SELECT yellow_jersey FROM table_275506_1 WHERE distance__km_ = \"125\"", "question": "What is every yellow jersey entry for the distance 125?", "context": "CREATE TABLE table_275506_1 (yellow_jersey VARCHAR, distance__km_ VARCHAR)"}, {"answer": "SELECT stage AS winner FROM table_275506_1 WHERE distance__km_ = \"162.5\"", "question": "Who is every stage winner at the distance of 162.5?", "context": "CREATE TABLE table_275506_1 (stage VARCHAR, distance__km_ VARCHAR)"}, {"answer": "SELECT COUNT(start_of_stage) FROM table_275506_1 WHERE year = \"2006\"", "question": "How many entries for start of stage occur in the year 2006?", "context": "CREATE TABLE table_275506_1 (start_of_stage VARCHAR, year VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_27588823_2 WHERE callsign = \"DWZF\"", "question": "How much power does dwzf have?", "context": "CREATE TABLE table_27588823_2 (power__kw_ VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT branding FROM table_27588823_2 WHERE callsign = \"DYPV\"", "question": "What is the branding for callsign dypv?", "context": "CREATE TABLE table_27588823_2 (branding VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT branding FROM table_27588823_2 WHERE location = \"San Jose Del Monte\"", "question": "What is the branding for the station located in san jose del monte?", "context": "CREATE TABLE table_27588823_2 (branding VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(callsign) FROM table_27588823_2 WHERE location = \"Masinloc, Zambales\"", "question": "How many call signs does the location masinloc, zambales have?", "context": "CREATE TABLE table_27588823_2 (callsign VARCHAR, location VARCHAR)"}, {"answer": "SELECT frequency FROM table_27588823_2 WHERE location = \"Polangui, Albay\"", "question": "What is the frequency of the station located in polangui, albay?", "context": "CREATE TABLE table_27588823_2 (frequency VARCHAR, location VARCHAR)"}, {"answer": "SELECT points_classification FROM table_27573848_18 WHERE general_classification = \"Fabian Cancellara\" AND mountains_classification = \"Mathias Frank\"", "question": "If the mountains classification is Mathias Frank, and the General Classification is Fabian Cancellara, what is the Points classification?", "context": "CREATE TABLE table_27573848_18 (points_classification VARCHAR, general_classification VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT general_classification FROM table_27573848_18 WHERE points_classification = \"Marco Marcato\" AND stage < 5.0", "question": "If the stage is smaller than 5.0, and the points classification is by Marco Marcato, who is the General classification by?", "context": "CREATE TABLE table_27573848_18 (general_classification VARCHAR, points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT COUNT(general_classification) FROM table_27573848_18 WHERE stage = 5", "question": "How many different people had a General Classification on Stage 5?", "context": "CREATE TABLE table_27573848_18 (general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT COUNT(mountains_classification) FROM table_27573848_18 WHERE winner = \"Robert Gesink\"", "question": "How many times was Robert Gesink a winner?", "context": "CREATE TABLE table_27573848_18 (mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_27573848_18 WHERE winner = \"Rui Costa\"", "question": "If the winner is Rui Costa, who made the mountains classification?", "context": "CREATE TABLE table_27573848_18 (mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT points FROM table_27603010_14 WHERE team__number1 = \"Junior\"", "question": "What was Team 1 Junior's points?", "context": "CREATE TABLE table_27603010_14 (points VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_27603010_14 WHERE team__number1 = \"Deportivo Pasto\"", "question": "What was the 2nd leg score  if the team 1 is Deportivo Pasto?", "context": "CREATE TABLE table_27603010_14 (team__number1 VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_27603010_14 WHERE team__number1 = \"Atl\u00e9tico La Sabana\"", "question": "Who was the team 2 that played against team 1 Atl\u00e9tico la Sabana?", "context": "CREATE TABLE table_27603010_14 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT new_points FROM table_27615896_18 WHERE rk = 26", "question": "How many new points were earned by rk 26?", "context": "CREATE TABLE table_27615896_18 (new_points VARCHAR, rk VARCHAR)"}, {"answer": "SELECT MIN(points) AS won FROM table_27615896_18 WHERE new_points = 1680", "question": "How many points were won where new points was 1680?", "context": "CREATE TABLE table_27615896_18 (points INTEGER, new_points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_27615896_18 WHERE sd = 15", "question": "What are the total points for sd 15?", "context": "CREATE TABLE table_27615896_18 (points INTEGER, sd VARCHAR)"}, {"answer": "SELECT COUNT(sd) FROM table_27615896_18 WHERE status = \"Quarterfinals lost to Novak Djokovic [1]\"", "question": "What is the total number of sd listings where the status is quarterfinals lost to Novak Djokovic [1]?", "context": "CREATE TABLE table_27615896_18 (sd VARCHAR, status VARCHAR)"}, {"answer": "SELECT COUNT(points) AS won FROM table_27615896_20 WHERE player = \"Flavia Pennetta\"", "question": "How many different counts for won points does Flavia Pennetta have?", "context": "CREATE TABLE table_27615896_20 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(sd) FROM table_27615896_20 WHERE player = \"Kaia Kanepi\"", "question": "What's Kaia Kanepi's Sd?", "context": "CREATE TABLE table_27615896_20 (sd INTEGER, player VARCHAR)"}, {"answer": "SELECT status FROM table_27615896_20 WHERE points = 3041", "question": "What's the status of the player with 3041 points?", "context": "CREATE TABLE table_27615896_20 (status VARCHAR, points VARCHAR)"}, {"answer": "SELECT written_by FROM table_27657925_1 WHERE no_in_series = \"62\"", "question": "When 62 is the number in series who is the writer?", "context": "CREATE TABLE table_27657925_1 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27657925_1 WHERE written_by = \"Steve Holland\"", "question": "When steve holland is the writer what is the air date?", "context": "CREATE TABLE table_27657925_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_27657925_1 WHERE production_code = \"231\"", "question": "When 231 is the production code what is the title?", "context": "CREATE TABLE table_27657925_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_27657925_1 WHERE us_viewers__millions_ = \"5.2\"", "question": "When there are 5.2 million u.s. viewers how many numbers in series are there?", "context": "CREATE TABLE table_27657925_1 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(outgoing_manager) FROM table_27666856_3 WHERE team = \"Villarreal B\"", "question": "Name the total number of outgoing manager for villarreal b", "context": "CREATE TABLE table_27666856_3 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(date_of_appointment) FROM table_27666856_3 WHERE date_of_vacancy = \"26 May 2011\"", "question": "Name the date of appointment for 26 may 2011", "context": "CREATE TABLE table_27666856_3 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT COUNT(outgoing_manager) FROM table_27666856_3 WHERE replaced_by = \"Esteban Vigo\"", "question": "Name the outgoing manager for esteban vigo", "context": "CREATE TABLE table_27666856_3 (outgoing_manager VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_27666856_3 WHERE position_in_table = \"19th\"", "question": "Name the number of team for 19th position", "context": "CREATE TABLE table_27666856_3 (team VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_27666856_3 WHERE outgoing_manager = \"Luis Enrique\"", "question": "Name the manner of departure for luis enrique", "context": "CREATE TABLE table_27666856_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT opponent FROM table_27654988_1 WHERE competition = \"Women's Cup 0 0\" AND scorers = \"Branc\u00e3o Couto 0\"", "question": "Who was the opponent in the Women's Cup 0 0 where Branc\u00e3o Couto 0 is the scorer?", "context": "CREATE TABLE table_27654988_1 (opponent VARCHAR, competition VARCHAR, scorers VARCHAR)"}, {"answer": "SELECT result FROM table_27654988_1 WHERE opponent = \"Innsbrucker Kilmarnock CSK VVS Samara\"", "question": "What is the result of the game where the opponent is Innsbrucker Kilmarnock CSK VVS Samara?", "context": "CREATE TABLE table_27654988_1 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_27654988_1 WHERE opponent = \"Vamos Idaliou Krka Novo Mesto SV Neulengbach\"", "question": "How many seasons was the opponent Vamos Idaliou Krka Novo Mesto SV Neulengbach?", "context": "CREATE TABLE table_27654988_1 (season VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT scorers FROM table_27654988_1 WHERE result = \"0\u20134 7\u20131 0\u20133\"", "question": "Who were the scorers in the game with final score 0\u20134 7\u20131 0\u20133?", "context": "CREATE TABLE table_27654988_1 (scorers VARCHAR, result VARCHAR)"}, {"answer": "SELECT kickoff FROM table_27690037_2 WHERE game_site = \"Rheinstadion\"", "question": "Name the kickoff for rheinstadion", "context": "CREATE TABLE table_27690037_2 (kickoff VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT high_points FROM table_27700530_5 WHERE date = \"October 20\"", "question": "Who had the high point total on october 20?", "context": "CREATE TABLE table_27700530_5 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_27700530_15 WHERE game = 3", "question": "What was the series record at after game 3?", "context": "CREATE TABLE table_27700530_15 (series VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27700530_15 WHERE game = 2", "question": "What was the location and attendance for game 2?", "context": "CREATE TABLE table_27700530_15 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_27700530_15 WHERE date = \"April 22\"", "question": "Who had the most points and how many did they have on April 22? ", "context": "CREATE TABLE table_27700530_15 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27704187_2 WHERE date = \"October 5\"", "question": "Who had the most assists and how many did they have on October 5? ", "context": "CREATE TABLE table_27704187_2 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT artist FROM table_27711947_1 WHERE choreographer = \"Marcos Aguirre\" AND rating = \"Simple\"", "question": "List all artists with choreographer Marcos Aguirre and a simple rating.", "context": "CREATE TABLE table_27711947_1 (artist VARCHAR, choreographer VARCHAR, rating VARCHAR)"}, {"answer": "SELECT COUNT(overall_attendance) FROM table_2771237_1 WHERE average_attendance = 17807", "question": "How many times was the overall attendance 17807?", "context": "CREATE TABLE table_2771237_1 (overall_attendance VARCHAR, average_attendance VARCHAR)"}, {"answer": "SELECT overall_attendance FROM table_2771237_1 WHERE average_attendance = 17148", "question": "What is the overall attendance in the places where the average attendance was 17148?", "context": "CREATE TABLE table_2771237_1 (overall_attendance VARCHAR, average_attendance VARCHAR)"}, {"answer": "SELECT season FROM table_2771237_1 WHERE average_attendance = 16043", "question": "What season was the average attendance is 16043?", "context": "CREATE TABLE table_2771237_1 (season VARCHAR, average_attendance VARCHAR)"}, {"answer": "SELECT overall_record FROM table_2771237_1 WHERE average_attendance = 16720", "question": "What was the overall record in the season where average attendance was 16720?", "context": "CREATE TABLE table_2771237_1 (overall_record VARCHAR, average_attendance VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27712451_9 WHERE date = \"March 14\"", "question": "Name the high assists for march 14", "context": "CREATE TABLE table_27712451_9 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27712702_7 WHERE game = 9", "question": "Who had high assists in game number 9?", "context": "CREATE TABLE table_27712702_7 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27712702_7 WHERE location_attendance = \"Oklahoma City Arena 17,509\"", "question": "Who had high assists in the game played at Oklahoma city arena 17,509?", "context": "CREATE TABLE table_27712702_7 (high_assists VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_27712702_7 WHERE date = \"November 15\"", "question": "Which team played on November 15?", "context": "CREATE TABLE table_27712702_7 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_27713030_16 WHERE score = \"L 103\u2013112 (OT)\"", "question": "Which series had a score of  l 103\u2013112 (ot)?", "context": "CREATE TABLE table_27713030_16 (series VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27713030_16 WHERE high_assists = \"LeBron James (10)\"", "question": "What was the location and attendance when lebron james (10) had the high assists?", "context": "CREATE TABLE table_27713030_16 (location_attendance VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_27713030_16 WHERE high_rebounds = \"Chris Bosh , LeBron James (8)\"", "question": "How many teams were there when  chris bosh , lebron james (8) had the  high rebounds?", "context": "CREATE TABLE table_27713030_16 (team VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27712702_9 WHERE date = \"January 17\"", "question": "Who led in assists on January 17, and with how many?", "context": "CREATE TABLE table_27712702_9 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_27712702_9 WHERE date = \"January 8\"", "question": "What was the score of the January 8 game?", "context": "CREATE TABLE table_27712702_9 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_27713583_8 WHERE date = \"January 14\"", "question": "What game number was on January 14?", "context": "CREATE TABLE table_27713583_8 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_27713583_2 WHERE high_assists = \"Raymond Felton (4)\"", "question": "what is the date of the game that the high assists is raymond felton (4)?", "context": "CREATE TABLE table_27713583_2 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_27713583_2 WHERE date = \"October 17\"", "question": "How many games were on october 17?", "context": "CREATE TABLE table_27713583_2 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_27713583_2 WHERE team = \"@ Minnesota\"", "question": "What is the record for the game against team @ Minnesota?", "context": "CREATE TABLE table_27713583_2 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_27713583_2 WHERE high_points = \"Toney Douglas (23)\"", "question": "What is the date the high points was by toney douglas (23)?", "context": "CREATE TABLE table_27713583_2 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_27713721_1 WHERE us_viewers__millions_ = \"25.3\"", "question": "How many episodes had an audience of exactly 25.3 million viewers in the U.S.A.?", "context": "CREATE TABLE table_27713721_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT high_points FROM table_27715173_8 WHERE high_assists = \"Tim Duncan (5)\"", "question": "Who had the high points when high assists is tim duncan (5)?", "context": "CREATE TABLE table_27715173_8 (high_points VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT date FROM table_27715173_8 WHERE location_attendance = \"EnergySolutions Arena 19,911\"", "question": "what is the date when the location attendance is energysolutions arena 19,911?", "context": "CREATE TABLE table_27715173_8 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_27715173_8 WHERE team = \"Oklahoma City\"", "question": "how many times is the team oklahoma city?", "context": "CREATE TABLE table_27715173_8 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT game FROM table_27715173_8 WHERE high_points = \"Manu Gin\u00f3bili (26)\"", "question": "what is the game where the high points is by manu gin\u00f3bili (26)?", "context": "CREATE TABLE table_27715173_8 (game VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27715173_8 WHERE record = \"39\u20137\"", "question": "what is the location attendance when the record is 39\u20137?", "context": "CREATE TABLE table_27715173_8 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_27715173_2", "question": "What is the maximum basketball game?", "context": "CREATE TABLE table_27715173_2 (game INTEGER)"}, {"answer": "SELECT COUNT(high_points) FROM table_27722408_6 WHERE score = \"L 87\u201389 (OT)\"", "question": "How many entries are shown for  high points when the score was  l 87\u201389 (ot)?", "context": "CREATE TABLE table_27722408_6 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_27722408_6 WHERE game = 11", "question": "What was the other team in game 11?", "context": "CREATE TABLE table_27722408_6 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_27722408_6 WHERE record = \"9\u20133\"", "question": "Who scored the high points for the game with record 9\u20133?", "context": "CREATE TABLE table_27722408_6 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_27722734_7 WHERE team = \"Washington\"", "question": "Name the date for washington", "context": "CREATE TABLE table_27722734_7 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_27722734_7 WHERE game = 23", "question": "Name the record for 23 game", "context": "CREATE TABLE table_27722734_7 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_27722734_7 WHERE date = \"December 1\"", "question": "Name the most game for december 1", "context": "CREATE TABLE table_27722734_7 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT score FROM table_27723526_10 WHERE team = \"Portland\"", "question": "What was the score of the game against portland?", "context": "CREATE TABLE table_27723526_10 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27723526_10 WHERE date = \"January 27\"", "question": "Who had the high assist total on january 27?", "context": "CREATE TABLE table_27723526_10 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27733909_9 WHERE game = 70", "question": "What is the location and attendance of game 70?", "context": "CREATE TABLE table_27733909_9 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_27734577_13 WHERE high_assists = \"Josh Smith (8)\"", "question": "What team was the opponent when josh smith (8) had the high assists?", "context": "CREATE TABLE table_27734577_13 (team VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_27734577_13 WHERE high_assists = \"Josh Smith (4)\"", "question": "What is the game number where josh smith (4) had the high assists?", "context": "CREATE TABLE table_27734577_13 (game INTEGER, high_assists VARCHAR)"}, {"answer": "SELECT series FROM table_27734577_13 WHERE high_rebounds = \"Al Horford (10)\"", "question": "What is the series number when al horford (10) had the high rebounds?", "context": "CREATE TABLE table_27734577_13 (series VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT team FROM table_27734577_7 WHERE location_attendance = \"Philips Arena 12,140\"", "question": "What is every team with location attendance of Philips Arena 12,140?", "context": "CREATE TABLE table_27734577_7 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_27756014_1 WHERE date = \"October 16\"", "question": "How many games were played on october 16?", "context": "CREATE TABLE table_27756014_1 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_27756014_1 WHERE game = 4", "question": "What is the score of game 4?", "context": "CREATE TABLE table_27756014_1 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_27756014_1 WHERE date = \"October 16\"", "question": "What is the score of the game played on october 16?", "context": "CREATE TABLE table_27756014_1 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_27756014_1 WHERE date = \"October 5\"", "question": "What is the team played on october 5?", "context": "CREATE TABLE table_27756014_1 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27756314_6 WHERE date = \"November 12\"", "question": "who had high assists on november 12?", "context": "CREATE TABLE table_27756314_6 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_27756314_10 WHERE high_points = \"Michael Beasley , Martell Webster (16)\"", "question": "What is the date when the high points is michael beasley , martell webster (16)?", "context": "CREATE TABLE table_27756314_10 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT game FROM table_27756314_10 WHERE team = \"Indiana\"", "question": "What is the game with the team indiana?", "context": "CREATE TABLE table_27756314_10 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27756314_10 WHERE date = \"March 25\"", "question": "Who had high rebounds when the date was march 25?", "context": "CREATE TABLE table_27756314_10 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_27756314_10 WHERE score = \"L 96\u2013103 (OT)\"", "question": "What is the highest game with the score l 96\u2013103 (ot)?", "context": "CREATE TABLE table_27756314_10 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT team FROM table_27756314_10 WHERE high_points = \"Wesley Johnson (20)\"", "question": "What is the team when the high points were by wesley johnson (20)?", "context": "CREATE TABLE table_27756314_10 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_27756314_7 WHERE date = \"December 11\"", "question": "what is the record for date december 11?", "context": "CREATE TABLE table_27756314_7 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27756314_7 WHERE date = \"December 3\"", "question": "who had high assists on december 3?", "context": "CREATE TABLE table_27756314_7 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27756314_7 WHERE game = 19", "question": "where was the location that had game 19?", "context": "CREATE TABLE table_27756314_7 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27756474_13 WHERE date = \"May 13\"", "question": "Where was the game played and what was the attendance on May 13?", "context": "CREATE TABLE table_27756474_13 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27756572_2 WHERE date = \"October 12\"", "question": "What was the location and the attendance for the game on October 12?", "context": "CREATE TABLE table_27756572_2 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT no_of_processors FROM table_27765443_2 WHERE cpu_type = \"NEC SX-4 vector processor\"", "question": "Name the number of processors for nec sx-4 vector processor", "context": "CREATE TABLE table_27765443_2 (no_of_processors VARCHAR, cpu_type VARCHAR)"}, {"answer": "SELECT maximum_peak_performance___teraflops__ FROM table_27765443_2 WHERE period_of_operation = \"October 2006 - January 2010\"", "question": "Name the most peak performance for october 2006 - january 2010", "context": "CREATE TABLE table_27765443_2 (maximum_peak_performance___teraflops__ VARCHAR, period_of_operation VARCHAR)"}, {"answer": "SELECT cpu_type FROM table_27765443_2 WHERE period_of_operation = \"June 2005 - April 2009\"", "question": "Name the cpu type for  june 2005 - april 2009", "context": "CREATE TABLE table_27765443_2 (cpu_type VARCHAR, period_of_operation VARCHAR)"}, {"answer": "SELECT COUNT(model___computer_name) FROM table_27765443_2 WHERE cpu_type = \"AMD Opteron dual-core 2.6GHz\"", "question": "Name the total number of model for amd opteron dual-core 2.6ghz", "context": "CREATE TABLE table_27765443_2 (model___computer_name VARCHAR, cpu_type VARCHAR)"}, {"answer": "SELECT no_of_processors FROM table_27765443_2 WHERE period_of_operation = \"October 2006 - January 2010\"", "question": "Name the number of processors for october 2006 - january 2010", "context": "CREATE TABLE table_27765443_2 (no_of_processors VARCHAR, period_of_operation VARCHAR)"}, {"answer": "SELECT results FROM table_27758427_2 WHERE lmpc_winning_team = \"#89 Intersport Racing\"", "question": "What was the result for the cirtcuit where the LMPC winning team was #89 Intersport Racing?", "context": "CREATE TABLE table_27758427_2 (results VARCHAR, lmpc_winning_team VARCHAR)"}, {"answer": "SELECT winnings FROM table_27781212_1 WHERE driver = \"Jeff Gordon\"", "question": "how many winnings does jeff gordon have?", "context": "CREATE TABLE table_27781212_1 (winnings VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_27781212_1 WHERE driver = \"Tommy Kendall\"", "question": "what are the minimum points for tommy kendall?", "context": "CREATE TABLE table_27781212_1 (points INTEGER, driver VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_27781212_1 WHERE points = 31", "question": "what is the minimum position with 31 points?", "context": "CREATE TABLE table_27781212_1 (position INTEGER, points VARCHAR)"}, {"answer": "SELECT driver FROM table_27781212_1 WHERE winnings = \"$225,000\"", "question": "who is the driver that had winnings of $225,000?", "context": "CREATE TABLE table_27781212_1 (driver VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT COUNT(standard) FROM table_2780146_6 WHERE pm__g_kwh_ = \"0.02\"", "question": "How many different standards have a PM of 0.02 g/kWh?", "context": "CREATE TABLE table_2780146_6 (standard VARCHAR, pm__g_kwh_ VARCHAR)"}, {"answer": "SELECT hc__g_kwh_ FROM table_2780146_6 WHERE standard = \"Euro I\"", "question": "What's the HC for the Euro I standard?", "context": "CREATE TABLE table_2780146_6 (hc__g_kwh_ VARCHAR, standard VARCHAR)"}, {"answer": "SELECT hc__g_kwh_ FROM table_2780146_6 WHERE no_x__g_kwh_ = \"7.0\"", "question": "What's the HC for the standard with NO x of 7.0 g/kWh?", "context": "CREATE TABLE table_2780146_6 (hc__g_kwh_ VARCHAR, no_x__g_kwh_ VARCHAR)"}, {"answer": "SELECT pm__g_kwh_ FROM table_2780146_6 WHERE co__g_kwh_ = \"12.3\"", "question": "What's the PM for the standard with 12.3 g/kWh CO?", "context": "CREATE TABLE table_2780146_6 (pm__g_kwh_ VARCHAR, co__g_kwh_ VARCHAR)"}, {"answer": "SELECT no_x__g_kwh_ FROM table_2780146_6 WHERE hc__g_kwh_ = \"1.23\"", "question": "What's the NO of the standard with HC of 1.23 g/kWh?", "context": "CREATE TABLE table_2780146_6 (no_x__g_kwh_ VARCHAR, hc__g_kwh_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27790959_1 WHERE us_viewers__million_ = \"5.42\"", "question": "What was the original air date of the episode that had 5.42 million viewers?", "context": "CREATE TABLE table_27790959_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_27862483_3 WHERE win = \"G. Claypool (4-1)\"", "question": "How many people saw the game won by G. Claypool (4-1)?", "context": "CREATE TABLE table_27862483_3 (attendance INTEGER, win VARCHAR)"}, {"answer": "SELECT overall_record FROM table_27862483_3 WHERE win = \"D. Klein (2-0)\"", "question": "What was the overall record in the game won by D. Klein (2-0)?", "context": "CREATE TABLE table_27862483_3 (overall_record VARCHAR, win VARCHAR)"}, {"answer": "SELECT overall_record FROM table_27862483_3 WHERE loss = \"A. Pracher (4-1)\"", "question": "What was the overall record of the game lost by A. Pracher (4-1)?", "context": "CREATE TABLE table_27862483_3 (overall_record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT pac_10_record FROM table_27862483_3 WHERE date = \"April 20\"", "question": "What was the PAC-10 record of the game played on April 20?", "context": "CREATE TABLE table_27862483_3 (pac_10_record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_27862483_3 WHERE date = \"April 23\"", "question": "How many different numbers are there for the game played on April 23?", "context": "CREATE TABLE table_27862483_3 (_number VARCHAR, date VARCHAR)"}, {"answer": "SELECT episode__number FROM table_27846651_1 WHERE viewers__millions_ = \"5.46\"", "question": "Wat episode number had 5.46 million viewers?", "context": "CREATE TABLE table_27846651_1 (episode__number VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT series__number FROM table_27846651_1 WHERE viewers__millions_ = \"5.24\"", "question": "What episode in the series had 5.24 million viewers?", "context": "CREATE TABLE table_27846651_1 (series__number VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT writer FROM table_27846651_1 WHERE viewers__millions_ = \"5.93\"", "question": "Who wrote the episode that had 5.93 million viewers?", "context": "CREATE TABLE table_27846651_1 (writer VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT edition FROM table_27877656_8 WHERE opponent_team = \"Zimbabwe\"", "question": "In what edition was the opponent team Zimbabwe? ", "context": "CREATE TABLE table_27877656_8 (edition VARCHAR, opponent_team VARCHAR)"}, {"answer": "SELECT outcome FROM table_27877656_8 WHERE edition = \"2010 Europe/Africa Group IIB\"", "question": "What was the outcome in the 2010 Europe/Africa Group IIB edition? ", "context": "CREATE TABLE table_27877656_8 (outcome VARCHAR, edition VARCHAR)"}, {"answer": "SELECT record FROM table_27882867_8 WHERE team = \"Philadelphia\"", "question": "What was the team's record against philadelphia?", "context": "CREATE TABLE table_27882867_8 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_27902171_4 WHERE team = \"Phoenix Suns\"", "question": "What day did they play the phoenix suns?", "context": "CREATE TABLE table_27902171_4 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_27902171_4 WHERE record = \"8-5\"", "question": "Who had the high point total when they were 8-5?", "context": "CREATE TABLE table_27902171_4 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27902171_4 WHERE record = \"0-1\"", "question": "Who had the high assist total when the team was 0-1?", "context": "CREATE TABLE table_27902171_4 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_27902171_6 WHERE team = \"Utah Jazz\"", "question": "Who had highest points during game against the Utah Jazz?", "context": "CREATE TABLE table_27902171_6 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27902171_6 WHERE team = \"Utah Jazz\"", "question": "What location with it's corresponding attendance was the game against Utah Jazz?", "context": "CREATE TABLE table_27902171_6 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_27902171_9 WHERE record = \"47-34\"", "question": "What were the scores of the games with a record of 47-34?", "context": "CREATE TABLE table_27902171_9 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27902171_9 WHERE team = \"Minnesota Timberwolves\"", "question": "Who performed the most rebounds on games against the Minnesota Timberwolves?", "context": "CREATE TABLE table_27902171_9 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_27913160_3 WHERE driver = \"Will Power\" AND most_laps_led = \"Scott Dixon\"", "question": "Who manufactured the car driven by Will Power and Scott Dixon had the most laps?", "context": "CREATE TABLE table_27913160_3 (manufacturer VARCHAR, driver VARCHAR, most_laps_led VARCHAR)"}, {"answer": "SELECT pole_position FROM table_27913160_3 WHERE race = \"Detroit\"", "question": "Who had the pole position in Detroit?", "context": "CREATE TABLE table_27913160_3 (pole_position VARCHAR, race VARCHAR)"}, {"answer": "SELECT driver FROM table_27913160_3 WHERE round = 4", "question": "Who was the driver in round 4?", "context": "CREATE TABLE table_27913160_3 (driver VARCHAR, round VARCHAR)"}, {"answer": "SELECT pole_position FROM table_27913160_3 WHERE race = \"Milwaukee\"", "question": "Who had the pole position in Milwaukee?", "context": "CREATE TABLE table_27913160_3 (pole_position VARCHAR, race VARCHAR)"}, {"answer": "SELECT driver FROM table_27913160_3 WHERE round = 8", "question": "Who was the driver in round 8?", "context": "CREATE TABLE table_27913160_3 (driver VARCHAR, round VARCHAR)"}, {"answer": "SELECT race FROM table_27913160_3 WHERE most_laps_led = \"Simon Pagenaud\"", "question": "What race did Simon Pagenaud have the most laps in?", "context": "CREATE TABLE table_27913160_3 (race VARCHAR, most_laps_led VARCHAR)"}, {"answer": "SELECT title FROM table_2791668_1 WHERE directed_by = \"Michael Pressman\" AND no_in_season < 10.0", "question": "what is the name of the episode whose director is Michael Pressman and the number of that episode in that season is less than 10.0? ", "context": "CREATE TABLE table_2791668_1 (title VARCHAR, directed_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_2791668_1 WHERE directed_by = \"Ed Sherin\"", "question": "how many millions of North American people saw the episode whose director was Ed Sherin? ", "context": "CREATE TABLE table_2791668_1 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_2791668_1 WHERE written_by = \"Philippe Browning\"", "question": "what is the name of the episode whose writer is philippe browning?", "context": "CREATE TABLE table_2791668_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_2791668_1 WHERE us_viewers__millions_ = \"12.68\"", "question": "how many premieres had the episode that had 12.68 millions of north american viewers? ", "context": "CREATE TABLE table_2791668_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_2791668_1 WHERE production_code = 16016", "question": "how many episodes in the series had as a production code 16016? ", "context": "CREATE TABLE table_2791668_1 (no_in_series VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT make FROM table_27940569_1 WHERE sponsor = \"Aflac\"", "question": "What car make was sponsored by Aflac?", "context": "CREATE TABLE table_27940569_1 (make VARCHAR, sponsor VARCHAR)"}, {"answer": "SELECT pts_bns FROM table_27940569_1 WHERE driver = \"Kurt Busch\"", "question": "How many points and bonuses did Kurt Busch get?", "context": "CREATE TABLE table_27940569_1 (pts_bns VARCHAR, driver VARCHAR)"}, {"answer": "SELECT make FROM table_27940569_1 WHERE driver = \"Jeff Gordon\"", "question": "What make was the car driven by Jeff Gordon?", "context": "CREATE TABLE table_27940569_1 (make VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_27940569_1", "question": "What was the greatest number of laps run?", "context": "CREATE TABLE table_27940569_1 (laps INTEGER)"}, {"answer": "SELECT represent_province FROM table_27946889_2 WHERE hometown = \"Woerden\"", "question": "What is the represent province for the contestant whose hometown is Woerden? ", "context": "CREATE TABLE table_27946889_2 (represent_province VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(contestant) FROM table_27946889_2 WHERE height__mtr_ = \"1.80\"", "question": "How many contestants are 1.80 mtr. in height? ", "context": "CREATE TABLE table_27946889_2 (contestant VARCHAR, height__mtr_ VARCHAR)"}, {"answer": "SELECT episode FROM table_27987623_3 WHERE viewers__millions_ = \"0.296\"", "question": "Which episode had viewership of 0.296 million?", "context": "CREATE TABLE table_27987623_3 (episode VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(timeslot) FROM table_27987623_3 WHERE viewers__millions_ = \"0.238\"", "question": "How many timeslots had viewers of 0.238 million?", "context": "CREATE TABLE table_27987623_3 (timeslot VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT episode FROM table_27987623_3 WHERE order = 1", "question": "Which episode was #1 in the order?", "context": "CREATE TABLE table_27987623_3 (episode VARCHAR, order VARCHAR)"}, {"answer": "SELECT density_in_2011___km\u00b2_ FROM table_2801442_1 WHERE population__2011_census_ = 2320529", "question": "What's the density in the district with 2320529 citizens in 2011?", "context": "CREATE TABLE table_2801442_1 (density_in_2011___km\u00b2_ VARCHAR, population__2011_census_ VARCHAR)"}, {"answer": "SELECT code FROM table_2801442_1 WHERE population__2011_census_ = 312520", "question": "What's the code of the district in which 312520 people lived in 2011?", "context": "CREATE TABLE table_2801442_1 (code VARCHAR, population__2011_census_ VARCHAR)"}, {"answer": "SELECT code FROM table_2801442_1 WHERE density_in_2011___km\u00b2_ = \"800.5\"", "question": "What's the code of the district with 800.5 people per km2?", "context": "CREATE TABLE table_2801442_1 (code VARCHAR, density_in_2011___km\u00b2_ VARCHAR)"}, {"answer": "SELECT MIN(population__2011_census_) FROM table_2801442_1 WHERE code = \"GP\"", "question": "How many people lived in the district with a code GP in 2011?", "context": "CREATE TABLE table_2801442_1 (population__2011_census_ INTEGER, code VARCHAR)"}, {"answer": "SELECT population__2001_census_ FROM table_2801442_1 WHERE headquarters = \"Bhubaneswar\"", "question": "How many people lived in the district whose headquarters is in Bhubaneswar in 2001?", "context": "CREATE TABLE table_2801442_1 (population__2001_census_ VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT MIN(area__km\u00b2_) FROM table_2801442_1 WHERE code = \"BW\"", "question": "How big (in km2) is the district with a code BW?", "context": "CREATE TABLE table_2801442_1 (area__km\u00b2_ INTEGER, code VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_28014096_1 WHERE production_code = \"2T6206\"", "question": "What is the number of this season's episode that had the production code 2t6206?", "context": "CREATE TABLE table_28014096_1 (no_in_season INTEGER, production_code VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_28019988_5 WHERE production_code = \"BDF409\"", "question": "What episode number of the series had a production code of bdf409?", "context": "CREATE TABLE table_28019988_5 (series__number INTEGER, production_code VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_28019988_5 WHERE us_viewers__million_ = \"2.31\" AND written_by = \"Tom Garrigus\"", "question": "What episode number of the season was written by Tom Garrigus and had 2.31 million u.s. viewers?", "context": "CREATE TABLE table_28019988_5 (season__number INTEGER, us_viewers__million_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_28019988_5", "question": "What is the highest numbered episode in the series?", "context": "CREATE TABLE table_28019988_5 (series__number INTEGER)"}, {"answer": "SELECT MIN(series__number) FROM table_28019988_5 WHERE production_code = \"BDF405\"", "question": "What episode number in the series had a production code of bdf405?", "context": "CREATE TABLE table_28019988_5 (series__number INTEGER, production_code VARCHAR)"}, {"answer": "SELECT operator FROM table_28035004_1 WHERE bodybuilder = \"Roe\"", "question": "Who is the operator when Roe was the bodybuilder?", "context": "CREATE TABLE table_28035004_1 (operator VARCHAR, bodybuilder VARCHAR)"}, {"answer": "SELECT variant FROM table_28035004_1 WHERE bodybuilder = \"Alexander\"", "question": "What is the variant when Alexander was the bodybuilder?", "context": "CREATE TABLE table_28035004_1 (variant VARCHAR, bodybuilder VARCHAR)"}, {"answer": "SELECT bodybuilder FROM table_28035004_1 WHERE operator = \"Coventry\"", "question": "Who was the bodybuilder when Coventry was operating?", "context": "CREATE TABLE table_28035004_1 (bodybuilder VARCHAR, operator VARCHAR)"}, {"answer": "SELECT COUNT(variant) FROM table_28035004_1 WHERE bodybuilder = \"Northern Counties\"", "question": "How many different variants are there for Northern Counties bodybuilder?", "context": "CREATE TABLE table_28035004_1 (variant VARCHAR, bodybuilder VARCHAR)"}, {"answer": "SELECT operator FROM table_28035004_1 WHERE bodybuilder = \"Willowbrook\"", "question": "Who is the operator when willowbrook was the bodybuilder?", "context": "CREATE TABLE table_28035004_1 (operator VARCHAR, bodybuilder VARCHAR)"}, {"answer": "SELECT COUNT(eliminated_from_competition) FROM table_28068063_3 WHERE points_margin = 48", "question": "How many teams had a point margin of 48?", "context": "CREATE TABLE table_28068063_3 (eliminated_from_competition VARCHAR, points_margin VARCHAR)"}, {"answer": "SELECT COUNT(match_points) FROM table_28068063_3 WHERE eliminated_from_competition = \"B\u00e9ziers\"", "question": "How many teams eliminated b\u00e9ziers from competition?", "context": "CREATE TABLE table_28068063_3 (match_points VARCHAR, eliminated_from_competition VARCHAR)"}, {"answer": "SELECT eliminated_from_competition FROM table_28068063_3 WHERE proceed_to_quarter_final = \"Pau\"", "question": "Who was eliminated from the competition when pau proceed to the quarter final?", "context": "CREATE TABLE table_28068063_3 (eliminated_from_competition VARCHAR, proceed_to_quarter_final VARCHAR)"}, {"answer": "SELECT eliminated_from_competition FROM table_28068063_3 WHERE proceed_to_quarter_final = \"Connacht\"", "question": "Who was eliminated from the competition when connacht to the quarter final?", "context": "CREATE TABLE table_28068063_3 (eliminated_from_competition VARCHAR, proceed_to_quarter_final VARCHAR)"}, {"answer": "SELECT proceed_to_quarter_final FROM table_28068063_3 WHERE eliminated_from_competition = \"London Irish\"", "question": "Who proceeded to the quarter final when the london irish were eliminated from competition?", "context": "CREATE TABLE table_28068063_3 (proceed_to_quarter_final VARCHAR, eliminated_from_competition VARCHAR)"}, {"answer": "SELECT aggregate_score FROM table_28068063_2 WHERE winners = \"Brive\"", "question": "What was the aggregate score for the match won by Brive?", "context": "CREATE TABLE table_28068063_2 (aggregate_score VARCHAR, winners VARCHAR)"}, {"answer": "SELECT match_points FROM table_28068063_2 WHERE winners = \"Connacht\"", "question": "What was the match points score for the match won by Connacht?", "context": "CREATE TABLE table_28068063_2 (match_points VARCHAR, winners VARCHAR)"}, {"answer": "SELECT aggregate_score FROM table_28068063_2 WHERE winners = \"Viadana\"", "question": "What was the aggregate score for the match won by Viadana?", "context": "CREATE TABLE table_28068063_2 (aggregate_score VARCHAR, winners VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_28059992_2 WHERE player = \"Patrice Denis\"", "question": "Name the cfl team for patrice denis", "context": "CREATE TABLE table_28059992_2 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_28059992_2 WHERE player = \"Robert Beveridge\"", "question": "Name the cfl team for robert beveridge", "context": "CREATE TABLE table_28059992_2 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_28059992_2 WHERE position = \"DL\"", "question": "Name the college for dl", "context": "CREATE TABLE table_28059992_2 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(college) FROM table_28059992_2 WHERE player = \"Jerome Pathon\"", "question": "Name the number of colleges for jerome pathon", "context": "CREATE TABLE table_28059992_2 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(cfl_team) FROM table_28059992_2 WHERE player = \"Jeff Traversy\"", "question": "Name the number of cfl teams for jeff traversy", "context": "CREATE TABLE table_28059992_2 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_28059992_2 WHERE college = \"British Columbia\"", "question": "Name the position for british columbia", "context": "CREATE TABLE table_28059992_2 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28089666_1 WHERE production_code = \"5.05\"", "question": "What original air date was the episode with production code of 5.05?", "context": "CREATE TABLE table_28089666_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_28089666_1 WHERE production_code = \"1.01\"", "question": "Who wrote episode with production code 1.01?", "context": "CREATE TABLE table_28089666_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_28140588_1 WHERE directed_by = \"Maynard C. Virgil I\"", "question": "What is the title when the director is Maynard C. Virgil i ?", "context": "CREATE TABLE table_28140588_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_28140588_1 WHERE production_code = 60034", "question": "Who is the director when the production code is 60034?", "context": "CREATE TABLE table_28140588_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_2818164_5 WHERE production_code = 418", "question": "What is the name of the episode with 418 as the production code?", "context": "CREATE TABLE table_2818164_5 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_2818164_5 WHERE original_air_date = \"February 11, 1988\"", "question": "What episoe number in the season originally aired on February 11, 1988?", "context": "CREATE TABLE table_2818164_5 (no_in_season VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_2818164_5 WHERE no_in_season = \"17\"", "question": "What episode number in the series is also number 17 in the season?", "context": "CREATE TABLE table_2818164_5 (no_in_series VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_2818164_5 WHERE no_in_series = \"96\"", "question": "What is the production code for episode 96 in the series?", "context": "CREATE TABLE table_2818164_5 (production_code INTEGER, no_in_series VARCHAR)"}, {"answer": "SELECT production_code FROM table_2818164_7 WHERE written_by = \"Matt Robinson\"", "question": "What is the production code that was written by matt robinson?", "context": "CREATE TABLE table_2818164_7 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_2818164_7 WHERE no_in_series = 147", "question": "Which title has 147 as no. in series?", "context": "CREATE TABLE table_2818164_7 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2818164_7 WHERE written_by = \"Mark St. Germain\" AND directed_by = \"Jay Sandrich\"", "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 network FROM table_28190363_1 WHERE judges = \"Batuhan Zeynio\u011flu Piatti Murat Bozok Erol Kaynar\"", "question": "What are the networks whose version of the show includes the judges batuhan zeynio\u011flu piatti murat bozok erol kaynar?", "context": "CREATE TABLE table_28190363_1 (network VARCHAR, judges VARCHAR)"}, {"answer": "SELECT COUNT(network) FROM table_28190363_1 WHERE judges = \"Pete Goffe-Wood Andrew Atkinson Benny Masekwameng\"", "question": "How many networks are there that include the judges pete goffe-wood andrew atkinson benny masekwameng?", "context": "CREATE TABLE table_28190363_1 (network VARCHAR, judges VARCHAR)"}, {"answer": "SELECT COUNT(network) FROM table_28190363_1 WHERE judges = \"TBA\" AND presenter_s_ = \"Arbana Osmani\"", "question": "How many networks are there whose version of the shows includes judges tba and the presenter is Arbana Osmani?", "context": "CREATE TABLE table_28190363_1 (network VARCHAR, judges VARCHAR, presenter_s_ VARCHAR)"}, {"answer": "SELECT COUNT(presenter_s_) FROM table_28190363_1 WHERE name = \"Celebrity MasterChef\"", "question": "How many sets of presenters are there for the version of the show named Celebrity Masterchef?", "context": "CREATE TABLE table_28190363_1 (presenter_s_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT incumbent FROM table_28188239_1 WHERE district = \"PA-8\"", "question": "Who is the incumbent of district pa-8?", "context": "CREATE TABLE table_28188239_1 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_28188239_1 WHERE district = \"LA-1\"", "question": "How many incumbents are in district la-1?", "context": "CREATE TABLE table_28188239_1 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT directed_by FROM table_28194879_1 WHERE production_code = \"PABF05\"", "question": "Who directed the episode whose production code is pabf05?", "context": "CREATE TABLE table_28194879_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_28194879_1 WHERE written_by = \"Dan Vebber\"", "question": "What is the last number in season of the episodes written by Dan Vebber?", "context": "CREATE TABLE table_28194879_1 (_number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT _number FROM table_28194879_1 WHERE production_code = \"PABF05\"", "question": "What is the number in season of the episode whose production code is pabf05?", "context": "CREATE TABLE table_28194879_1 (_number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_28211213_1 WHERE team_nickname = \"Spartans\"", "question": "When were the Spartans founded?", "context": "CREATE TABLE table_28211213_1 (founded INTEGER, team_nickname VARCHAR)"}, {"answer": "SELECT COUNT(affiliation) FROM table_28211213_1 WHERE institution = \"University of Toledo\"", "question": "How many affiliations does the University of Toledo have?", "context": "CREATE TABLE table_28211213_1 (affiliation VARCHAR, institution VARCHAR)"}, {"answer": "SELECT affiliation FROM table_28211213_1 WHERE institution = \"Davenport University\"", "question": "What is the affiliation of Davenport University?", "context": "CREATE TABLE table_28211213_1 (affiliation VARCHAR, institution VARCHAR)"}, {"answer": "SELECT MAX(2001 AS _population) FROM table_282413_3 WHERE ethnic_group = \"White: British\"", "question": "What is the highest 2001 population when the ethnic group is white: british?", "context": "CREATE TABLE table_282413_3 (ethnic_group VARCHAR)"}, {"answer": "SELECT COUNT(2001 AS __percentage) FROM table_282413_3 WHERE ethnic_group = \"Other: Total\"", "question": "How many times is the ethnic group other: total?", "context": "CREATE TABLE table_282413_3 (ethnic_group VARCHAR)"}, {"answer": "SELECT MAX(2011 AS _population) FROM table_282413_3 WHERE ethnic_group = \"Asian or Asian British: Asian Other\"", "question": "What is the highest 2011 population when the ethnic group is asian or asian british: asian other?", "context": "CREATE TABLE table_282413_3 (ethnic_group VARCHAR)"}, {"answer": "SELECT affiliation FROM table_28253870_1 WHERE enrollment = 27209", "question": "Name the affiliation for 27209 enrollment", "context": "CREATE TABLE table_28253870_1 (affiliation VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_28253870_1", "question": "Name the least founded", "context": "CREATE TABLE table_28253870_1 (founded INTEGER)"}, {"answer": "SELECT founded FROM table_28253870_1 WHERE institution = \"Florida State University\"", "question": "Name the founded for florida state university", "context": "CREATE TABLE table_28253870_1 (founded VARCHAR, institution VARCHAR)"}, {"answer": "SELECT location FROM table_28253870_1 WHERE team_nickname = \"Yellow Jackets\"", "question": "Name the location for yellow jackets", "context": "CREATE TABLE table_28253870_1 (location VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT COUNT(college_junior_club_team) FROM table_2840500_6 WHERE nationality = \"Russia\"", "question": "How many college teams have a player with a nationality of Russia?", "context": "CREATE TABLE table_2840500_6 (college_junior_club_team VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT pick FROM table_2840500_6 WHERE player = \"Michel Larocque\"", "question": "Which pick did Michel Larocque receive?", "context": "CREATE TABLE table_2840500_6 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2840500_6 WHERE player = \"Blaine Russell\"", "question": "Which team picked Blaine Russell?", "context": "CREATE TABLE table_2840500_6 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(district_home) FROM table_2841865_2 WHERE congress = \"87th\"", "question": "How many entries for district home are listed for the 87th congress?", "context": "CREATE TABLE table_2841865_2 (district_home VARCHAR, congress VARCHAR)"}, {"answer": "SELECT years FROM table_2841865_2 WHERE congress = \"96th\"", "question": "What time span is listed under years for the 96th congres?", "context": "CREATE TABLE table_2841865_2 (years VARCHAR, congress VARCHAR)"}, {"answer": "SELECT party FROM table_2841865_2 WHERE congress = \"85th\"", "question": "What party is listed for the Representative under the 85th congress?", "context": "CREATE TABLE table_2841865_2 (party VARCHAR, congress VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_2841865_2 WHERE congress = \"69th\"", "question": "How many entries are listed for party during the 69th congress?", "context": "CREATE TABLE table_2841865_2 (party VARCHAR, congress VARCHAR)"}, {"answer": "SELECT years FROM table_2841865_2 WHERE congress = \"72nd\"", "question": "What frame of time is listed under years during the 72nd congress?", "context": "CREATE TABLE table_2841865_2 (years VARCHAR, congress VARCHAR)"}, {"answer": "SELECT representative FROM table_2841865_2 WHERE congress = \"112th\"", "question": "What name is listed under representative for the 112th congress?", "context": "CREATE TABLE table_2841865_2 (representative VARCHAR, congress VARCHAR)"}, {"answer": "SELECT MAX(runner_up) FROM table_28457809_3 WHERE province = \"Alberta\"", "question": "What is the value of the runner up column for the Alberta province?", "context": "CREATE TABLE table_28457809_3 (runner_up INTEGER, province VARCHAR)"}, {"answer": "SELECT first_llcr FROM table_28457809_3 WHERE province = \"Ontario\"", "question": "What year was Ontario's first LLCR?", "context": "CREATE TABLE table_28457809_3 (first_llcr VARCHAR, province VARCHAR)"}, {"answer": "SELECT pinyin FROM table_2847477_2 WHERE english_name = \"Xin County\"", "question": "What is the pinyin name for the english name xin county?", "context": "CREATE TABLE table_2847477_2 (pinyin VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT area FROM table_2847477_2 WHERE simplified = \"\u7f57\u5c71\u53bf\"", "question": "What is the area of \u7f57\u5c71\u53bf?", "context": "CREATE TABLE table_2847477_2 (area VARCHAR, simplified VARCHAR)"}, {"answer": "SELECT english_name FROM table_2847477_2 WHERE pinyin = \"G\u00f9sh\u01d0 Xi\u00e0n\"", "question": "What is the English name of g\u00f9sh\u01d0 xi\u00e0n?", "context": "CREATE TABLE table_2847477_2 (english_name VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT COUNT(simplified) FROM table_2847477_2 WHERE english_name = \"Xin County\"", "question": "How many simplified names are there for xin county?", "context": "CREATE TABLE table_2847477_2 (simplified VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT MAX(density) FROM table_2847477_2 WHERE area = 1512", "question": "What is the density of the place with an area of 1512?", "context": "CREATE TABLE table_2847477_2 (density INTEGER, area VARCHAR)"}, {"answer": "SELECT area FROM table_2847477_2 WHERE english_name = \"Xin County\"", "question": "What is the area of xin county?", "context": "CREATE TABLE table_2847477_2 (area VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_2850912_4 WHERE nhl_team = \"St. Louis Blues\"", "question": "How many positions are associated with the St. Louis Blues?", "context": "CREATE TABLE table_2850912_4 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2850912_4 WHERE nhl_team = \"Buffalo Sabres\"", "question": "Which junior team is associated with an NHL pick by the Buffalo Sabres?", "context": "CREATE TABLE table_2850912_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_2850912_4 WHERE nhl_team = \"Toronto Maple Leafs\"", "question": "Which position was selected for by the Toronto Maple Leafs?", "context": "CREATE TABLE table_2850912_4 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(college_junior_club_team) FROM table_2850912_6 WHERE player = \"John Dzikowski\"", "question": "How many different college/junior/club teams had player John Dzikowski?", "context": "CREATE TABLE table_2850912_6 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_2850912_6 WHERE player = \"Greg Strome\"", "question": "What pick was Greg Strome?", "context": "CREATE TABLE table_2850912_6 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT gender FROM table_28523_2 WHERE school = \"Cunningham Hill Infant school\"", "question": "What is the gender of the  cunningham hill infant school?", "context": "CREATE TABLE table_28523_2 (gender VARCHAR, school VARCHAR)"}, {"answer": "SELECT gender FROM table_28523_2 WHERE age_range = \"3-11\" AND school = \"St Adrian Roman Catholic Primary school\"", "question": "What is the gender with a age range of 3-11 at the st adrian roman catholic primary school?", "context": "CREATE TABLE table_28523_2 (gender VARCHAR, age_range VARCHAR, school VARCHAR)"}, {"answer": "SELECT school AS website FROM table_28523_2 WHERE school = \"Cunningham Hill Infant school\"", "question": "What is the website of the cunningham hill infant school?", "context": "CREATE TABLE table_28523_2 (school VARCHAR)"}, {"answer": "SELECT location FROM table_28523_2 WHERE school = \"Cunningham Hill Infant school\"", "question": "Where is the cunningham hill infant school located?", "context": "CREATE TABLE table_28523_2 (location VARCHAR, school VARCHAR)"}, {"answer": "SELECT event_3_deadlift FROM table_28540428_3 WHERE name = \"Hennie Jordan\"", "question": "Name the event 3 deadlift for hennie jordan", "context": "CREATE TABLE table_28540428_3 (event_3_deadlift VARCHAR, name VARCHAR)"}, {"answer": "SELECT rebounds_per_game FROM table_28547289_1 WHERE minutes_per_game = \"35\"", "question": "How many rebounds per game did Andrej D\u017eakovi\u0107 average when playing 35  minutes per game?", "context": "CREATE TABLE table_28547289_1 (rebounds_per_game VARCHAR, minutes_per_game VARCHAR)"}, {"answer": "SELECT winner FROM table_28601467_1 WHERE result = \"Scotland won on points table\" AND runner_up = \"[[|]] 4 points\"", "question": "What are all the winning records when the result is Scotland won on points table and the Runner-Up result is [[|]] 4 points?", "context": "CREATE TABLE table_28601467_1 (winner VARCHAR, result VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT runner_up FROM table_28601467_1 WHERE winner = \"Ireland 59 points\"", "question": "What is the runner-up record where winner record is Ireland 59 points?", "context": "CREATE TABLE table_28601467_1 (runner_up VARCHAR, winner VARCHAR)"}, {"answer": "SELECT host_nation_s_ FROM table_28601467_1 WHERE year = 2004", "question": "Which nation hosted the competition in 2004?", "context": "CREATE TABLE table_28601467_1 (host_nation_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT final_venue FROM table_28601467_1 WHERE host_nation_s_ = \"England\" AND runner_up = \"[[|]] 4 points\" AND winner = \"[[|]] 6 points\"", "question": "What was the final venue whene England hasted the competition and the runner-up record is [[|]] 4 points and the winner record is [[|]] 6 points?", "context": "CREATE TABLE table_28601467_1 (final_venue VARCHAR, winner VARCHAR, host_nation_s_ VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_28601467_1 WHERE winner = \"Ireland 4 points\"", "question": "What is the most recent year in which the winner record is Ireland 4 points?", "context": "CREATE TABLE table_28601467_1 (year INTEGER, winner VARCHAR)"}, {"answer": "SELECT under_president FROM table_2861364_1 WHERE executed_person = \"Gunther Volz\"", "question": "under which president was gunther volz executed?", "context": "CREATE TABLE table_2861364_1 (under_president VARCHAR, executed_person VARCHAR)"}, {"answer": "SELECT executed_person FROM table_2861364_1 WHERE under_president = \"Charles de Gaulle\" AND crime = \"Child murder after rape\"", "question": "who was executed during president charles de gaulle's reign for thr crime of child murder after rape?", "context": "CREATE TABLE table_2861364_1 (executed_person VARCHAR, under_president VARCHAR, crime VARCHAR)"}, {"answer": "SELECT place_of_execution FROM table_2861364_1 WHERE executed_person = \"Mazouz Ghaouti\"", "question": "where was mazouz ghaouti executed?", "context": "CREATE TABLE table_2861364_1 (place_of_execution VARCHAR, executed_person VARCHAR)"}, {"answer": "SELECT crime FROM table_2861364_1 WHERE place_of_execution = \"Metz\" AND executed_person = \"Gunther Volz\"", "question": "for what crime was gunther volz executed at metz?", "context": "CREATE TABLE table_2861364_1 (crime VARCHAR, place_of_execution VARCHAR, executed_person VARCHAR)"}, {"answer": "SELECT COUNT(asia) FROM table_28621502_1 WHERE title = \"UNO HD\"", "question": "How many of Asian release statuses does Uno HD have?", "context": "CREATE TABLE table_28621502_1 (asia VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_28621502_1 WHERE publisher = \"GameHouse Live\"", "question": "Which titles have been published by Gamehouse Live?", "context": "CREATE TABLE table_28621502_1 (title VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT reunion_bmi FROM table_28654454_5 WHERE contestant = \"Pinky\"", "question": "What was pinky's bmi at the reunion?", "context": "CREATE TABLE table_28654454_5 (reunion_bmi VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT COUNT(reunion_bmi) FROM table_28654454_5 WHERE contestant = \"Miles\"", "question": "What was miles's bmi att the reunion?", "context": "CREATE TABLE table_28654454_5 (reunion_bmi VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT lbs_lost_reunion FROM table_28654454_5 WHERE finale_weight = \"151.4\"", "question": "How many lbs were lost at the reunion by the contestant whose finale weight was 151.4?", "context": "CREATE TABLE table_28654454_5 (lbs_lost_reunion VARCHAR, finale_weight VARCHAR)"}, {"answer": "SELECT COUNT(finale_weight) FROM table_28654454_5 WHERE starting_bmi = \"33.1\"", "question": "How many contestants had a starting bmi of 33.1?", "context": "CREATE TABLE table_28654454_5 (finale_weight VARCHAR, starting_bmi VARCHAR)"}, {"answer": "SELECT reunion_weight FROM table_28654454_5 WHERE lbs_lost_reunion = 52", "question": "What is the reunion weight of the contestant that lost 52 lbs at the reunion?", "context": "CREATE TABLE table_28654454_5 (reunion_weight VARCHAR, lbs_lost_reunion VARCHAR)"}, {"answer": "SELECT reunion_weight FROM table_28654454_5 WHERE lbs_lost_finale = \"74.4\"", "question": "What is the reunion weight of the contestant who lost 74.4 lbs at the finale?", "context": "CREATE TABLE table_28654454_5 (reunion_weight VARCHAR, lbs_lost_finale VARCHAR)"}, {"answer": "SELECT team FROM table_28628309_8 WHERE category = \"Blocks per game\"", "question": "Who is the team when the category is blocks per game?", "context": "CREATE TABLE table_28628309_8 (team VARCHAR, category VARCHAR)"}, {"answer": "SELECT games_played FROM table_28628309_8 WHERE player = \"Jimmy Alapag\"", "question": "What is the listed in games played when the player is jimmy alapag?", "context": "CREATE TABLE table_28628309_8 (games_played VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_28628309_8 WHERE player = \"Ronjay Buenafe\"", "question": "What is the team when player is listed as Ronjay Buenafe?", "context": "CREATE TABLE table_28628309_8 (team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_28628309_8 WHERE category = \"Field goal percentage\"", "question": "What is the name of the player when the category is listed as field goal percentage?", "context": "CREATE TABLE table_28628309_8 (player VARCHAR, category VARCHAR)"}, {"answer": "SELECT MIN(games_played) FROM table_28628309_8 WHERE category = \"Points per game\"", "question": "What is the games played when the category is points per game?", "context": "CREATE TABLE table_28628309_8 (games_played INTEGER, category VARCHAR)"}, {"answer": "SELECT player FROM table_28628309_9 WHERE category = \"Steals per game\"", "question": "Who is the player when the category is steals per game?", "context": "CREATE TABLE table_28628309_9 (player VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_28628309_9 WHERE player = \"Olsen Racela\"", "question": "What are the names of the categories when the player is olsen racela?", "context": "CREATE TABLE table_28628309_9 (category VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(totals) FROM table_28628309_9 WHERE player = \"Jay Washington\"", "question": "How many times is a total listed when the player is Jay Washington?", "context": "CREATE TABLE table_28628309_9 (totals VARCHAR, player VARCHAR)"}, {"answer": "SELECT totals FROM table_28628309_9 WHERE average = \"0.667\" AND category = \"3-pt field goal percentage\"", "question": "What is the total listed when the average is 0.667 and the category is 3-pt field goal percentage?", "context": "CREATE TABLE table_28628309_9 (totals VARCHAR, average VARCHAR, category VARCHAR)"}, {"answer": "SELECT player FROM table_28628309_9 WHERE category = \"3-pt field goal percentage\"", "question": "What is the name of the player when the category is 3-pt field goal percentage?", "context": "CREATE TABLE table_28628309_9 (player VARCHAR, category VARCHAR)"}, {"answer": "SELECT title FROM table_2866514_1 WHERE us_viewers__million_ = \"5.66\"", "question": "What are the titles of episodes with 5.66 million US viewers?", "context": "CREATE TABLE table_2866514_1 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_2866514_1 WHERE directed_by = \"Whitney Ransick\"", "question": "What are the titles of episodes directed by whitney ransick?", "context": "CREATE TABLE table_2866514_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_2866514_1 WHERE us_viewers__million_ = \"3.96\"", "question": "Who wrote the episode with 3.96 million US viewers?", "context": "CREATE TABLE table_2866514_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MAX(christer_tornell) FROM table_28677723_8 WHERE trine_dehli_cleve = 9", "question": "What was the maximum value that Christer Tornell gave when Trine Dehli Cleve gave a 9?", "context": "CREATE TABLE table_28677723_8 (christer_tornell INTEGER, trine_dehli_cleve VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_28693349_2 WHERE player = \"Robert Peare\"", "question": "How many games did Robert Peare play?", "context": "CREATE TABLE table_28693349_2 (games INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(free_throws) FROM table_28693349_2 WHERE player = \"Charles Pearman\"", "question": "How many free throws did Charles Pearman score?", "context": "CREATE TABLE table_28693349_2 (free_throws INTEGER, player VARCHAR)"}, {"answer": "SELECT Shared AS titles FROM table_2869837_1 WHERE last_final = 2012", "question": "How many shared titles does the club whose last final was 2012 have?", "context": "CREATE TABLE table_2869837_1 (Shared VARCHAR, last_final VARCHAR)"}, {"answer": "SELECT last_final FROM table_2869837_1 WHERE last_title = \"1990\"", "question": "What was the year of the last final for the club whose last title was 1990?", "context": "CREATE TABLE table_2869837_1 (last_final VARCHAR, last_title VARCHAR)"}, {"answer": "SELECT MIN(Shared) AS titles FROM table_2869837_1 WHERE last_final = 2006", "question": "What is the minimum number of shared titles for the club whose last final was in 2006?", "context": "CREATE TABLE table_2869837_1 (Shared INTEGER, last_final VARCHAR)"}, {"answer": "SELECT MAX(last_final) FROM table_2869837_1 WHERE last_title = \"1994\"", "question": "What is the latest year of last final for the club whose last title was in 1994?", "context": "CREATE TABLE table_2869837_1 (last_final INTEGER, last_title VARCHAR)"}, {"answer": "SELECT runners_up FROM table_2869837_1 WHERE school = \"Royal school Dungannon\"", "question": "What are the number of runners up for Royal School Dungannon?", "context": "CREATE TABLE table_2869837_1 (runners_up VARCHAR, school VARCHAR)"}, {"answer": "SELECT track FROM table_28715942_5 WHERE vocal_percussionist = \"unknown\"", "question": "What is the track whent the vocal percussionist is unknown?", "context": "CREATE TABLE table_28715942_5 (track VARCHAR, vocal_percussionist VARCHAR)"}, {"answer": "SELECT arranger_s_ FROM table_28715942_5 WHERE vocal_percussionist = \"Alexei Kalveks and Dave Brennan\"", "question": "Who is the arranger when the vocal percussionist is Alexei Kalveks and Dave Brennan?", "context": "CREATE TABLE table_28715942_5 (arranger_s_ VARCHAR, vocal_percussionist VARCHAR)"}, {"answer": "SELECT original_artist FROM table_28715942_5 WHERE vocal_percussionist = \"Alexei Kalveks\"", "question": "What is the original artist when the vocal percussionist is Alexei Kalveks?", "context": "CREATE TABLE table_28715942_5 (original_artist VARCHAR, vocal_percussionist VARCHAR)"}, {"answer": "SELECT MIN(area__km_2__) FROM table_28741_1 WHERE capital = \"Nay Pyi Taw\"", "question": "How few km 2 does the  area with Nay Pyi Taw as capital cover?", "context": "CREATE TABLE table_28741_1 (area__km_2__ INTEGER, capital VARCHAR)"}, {"answer": "SELECT population_2012_ FROM table_28741_1 WHERE country = \"Indonesia\"", "question": "What is the 2012 population of Indonesia?", "context": "CREATE TABLE table_28741_1 (population_2012_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(gdp__nominal__per_capita), _usd__2012_ FROM table_28741_1 WHERE capital = \"Phnom Penh\"", "question": "What are the numbers for GDP (nominal) per capita and USD (2012) of the area with Phnom Penh as capital?", "context": "CREATE TABLE table_28741_1 (_usd__2012_ VARCHAR, gdp__nominal__per_capita VARCHAR, capital VARCHAR)"}, {"answer": "SELECT distance FROM table_28750142_1 WHERE jockey = \"Jason Titley\"", "question": "What is the distance of jockey Jason Titley?", "context": "CREATE TABLE table_28750142_1 (distance VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT jockey FROM table_28750142_1 WHERE name = \"Pink Gin\"", "question": "What is the name of the jockey for Pink Gin?", "context": "CREATE TABLE table_28750142_1 (jockey VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_28768469_10 WHERE location_attendance = \"Ford Center 17,021\"", "question": "The location attendance is ford center 17,021 on what dates?", "context": "CREATE TABLE table_28768469_10 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_28768469_10 WHERE game = 73", "question": "In game 73, what were the total number of high assists?", "context": "CREATE TABLE table_28768469_10 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_28768469_2 WHERE date = \"October 20\"", "question": "What is the location for the game on October 20 with it's corresponding attendance?", "context": "CREATE TABLE table_28768469_2 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT director FROM table_28785738_1 WHERE no_in_season = 11", "question": "Who directed episode 11 of the season?", "context": "CREATE TABLE table_28785738_1 (director VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_28802668_3 WHERE no_in_season = 19", "question": "How many episode titles does episode 19 in the season have?", "context": "CREATE TABLE table_28802668_3 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT average FROM table_28798161_3 WHERE bbi = \"4/39\"", "question": "if the bbi is 4/39 what is the average", "context": "CREATE TABLE table_28798161_3 (average VARCHAR, bbi VARCHAR)"}, {"answer": "SELECT bbi FROM table_28798161_3 WHERE economy = \"3.63\"", "question": "if the economy is 3.63 what is the bbi", "context": "CREATE TABLE table_28798161_3 (bbi VARCHAR, economy VARCHAR)"}, {"answer": "SELECT MIN(4 AS wi) FROM table_28798161_3", "question": "in the leage what was the minimum 4wi", "context": "CREATE TABLE table_28798161_3 (Id VARCHAR)"}, {"answer": "SELECT poor_law_union FROM table_28802165_1 WHERE townland = \"Marshalstown\"", "question": "What is the poor law union on Marshalstown?", "context": "CREATE TABLE table_28802165_1 (poor_law_union VARCHAR, townland VARCHAR)"}, {"answer": "SELECT MAX(s_acre) FROM table_28802165_1 WHERE civil_parish = \"Castledermot\"", "question": "What is the maximum acres in Castledermot?", "context": "CREATE TABLE table_28802165_1 (s_acre INTEGER, civil_parish VARCHAR)"}, {"answer": "SELECT civil_parish FROM table_28802165_1 WHERE townland = \"Aghafullim\"", "question": "What is the civil parish of Aghafullim?", "context": "CREATE TABLE table_28802165_1 (civil_parish VARCHAR, townland VARCHAR)"}, {"answer": "SELECT s_acre FROM table_28802165_1 WHERE townland = \"Maddenstown Middle\"", "question": "How many acres is the townland of Maddenstown Middle?", "context": "CREATE TABLE table_28802165_1 (s_acre VARCHAR, townland VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_28859177_3 WHERE directed_by = \"Bethany Rooney\"", "question": "How many original air dates did the episode directed by Bethany rooney have?", "context": "CREATE TABLE table_28859177_3 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT production_code FROM table_28859177_3 WHERE original_air_date = \"October 15, 2004\"", "question": "What is the production code for the episode that aired on October 15, 2004?", "context": "CREATE TABLE table_28859177_3 (production_code VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28859177_3 WHERE directed_by = \"Graeme Clifford\" AND written_by = \"Lindsay Sturman\"", "question": "What is the original air date for episode graeme clifford directed and lindsay sturman wrote?", "context": "CREATE TABLE table_28859177_3 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT player FROM table_2886617_6 WHERE nhl_team = \"Los Angeles Kings\"", "question": "Who was the player that was picked by Los Angeles Kings?", "context": "CREATE TABLE table_2886617_6 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_2886617_6 WHERE player = \"Peter Slamiar\"", "question": "What nationality was peter slamiar?", "context": "CREATE TABLE table_2886617_6 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2886617_4 WHERE nhl_team = \"New York Rangers\"", "question": "What team did the New York Rangers recruit a player from?", "context": "CREATE TABLE table_2886617_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_2886617_4 WHERE player = \"Marc Savard\"", "question": "How many countries had players named Marc Savard get picked?", "context": "CREATE TABLE table_2886617_4 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_2886617_4 WHERE nhl_team = \"Vancouver Canucks\"", "question": "What country does the player who joined the Vancouver Canucks originally hail from?", "context": "CREATE TABLE table_2886617_4 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_2886617_4 WHERE player = \"Alyn McCauley\"", "question": "How many times did Alyn McCauley get picked?", "context": "CREATE TABLE table_2886617_4 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_2886617_3 WHERE position = \"Left Wing\" AND college_junior_club_team = \"Portland Winterhawks (WHL)\"", "question": "Which nationality has left wing as the position and college/junior/team is portland winterhawks (whl)?", "context": "CREATE TABLE table_2886617_3 (nationality VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2886617_3 WHERE player = \"Kevin McKay\"", "question": "Which nhl team has the player kevin mckay?", "context": "CREATE TABLE table_2886617_3 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_2886617_3 WHERE nationality = \"Canada\" AND player = \"Larry Courville\"", "question": "How many picks have canada as the nationality and larry courville is the player?", "context": "CREATE TABLE table_2886617_3 (pick VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick FROM table_2886617_3 WHERE player = \"Marko Makinen\"", "question": "Which pick has marko makinen as the player?", "context": "CREATE TABLE table_2886617_3 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2886617_9 WHERE nhl_team = \"Dallas Stars\"", "question": "What college club team did the Dallas Stars choose their draft pick from?", "context": "CREATE TABLE table_2886617_9 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_2886617_9 WHERE nhl_team = \"St. Louis Blues\"", "question": "Who was picked for the draft by St. Louis Blues?", "context": "CREATE TABLE table_2886617_9 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT stadium FROM table_28885977_1 WHERE location = \"Adelaide, South Australia\"", "question": "Which stadium is located in Adelaide, South Australia? ", "context": "CREATE TABLE table_28885977_1 (stadium VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_28885977_1 WHERE built_for = \"St Kilda Football Club\"", "question": "In what location was a stadium built for the St Kilda Football Club?", "context": "CREATE TABLE table_28885977_1 (location VARCHAR, built_for VARCHAR)"}, {"answer": "SELECT location FROM table_28885977_1 WHERE stadium = \"Moorabbin Oval\"", "question": "What is the location of the Moorabbin Oval stadium?", "context": "CREATE TABLE table_28885977_1 (location VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT built_for FROM table_28885977_1 WHERE location = \"Adelaide, South Australia\"", "question": "What was the stadium in Adelaide, South Australia built for? ", "context": "CREATE TABLE table_28885977_1 (built_for VARCHAR, location VARCHAR)"}, {"answer": "SELECT built_for FROM table_28885977_1 WHERE location = \"Moorabbin, Victoria\"", "question": "What was the stadium in Moorabbin, Victoria built for?", "context": "CREATE TABLE table_28885977_1 (built_for VARCHAR, location VARCHAR)"}, {"answer": "SELECT capacity_at_construction FROM table_28885977_1 WHERE location = \"Gold Coast, Queensland\"", "question": "What was the capacity at construction of the stadium in Gold Coast, Queensland? ", "context": "CREATE TABLE table_28885977_1 (capacity_at_construction VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(moto2_250cc) FROM table_2889810_2 WHERE country = \"United States\"", "question": "how many total number of moto2/250cc when country is united states", "context": "CREATE TABLE table_2889810_2 (moto2_250cc VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(350 AS cc) FROM table_2889810_2", "question": "how many minimum 350cc has", "context": "CREATE TABLE table_2889810_2 (Id VARCHAR)"}, {"answer": "SELECT country FROM table_2889810_2 WHERE moto3_125cc = 15", "question": "how many country has moto3/125cc with 15", "context": "CREATE TABLE table_2889810_2 (country VARCHAR, moto3_125cc VARCHAR)"}, {"answer": "SELECT reason FROM table_28898948_3 WHERE winner = \"Arthur Collins\"", "question": "When arthur collins is the winner what is the reason?", "context": "CREATE TABLE table_28898948_3 (reason VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_28898948_3 WHERE incumbent = \"Ihaia Tainui\"", "question": "When ihaia tainui is the incumbent what is the date?", "context": "CREATE TABLE table_28898948_3 (date VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT winner FROM table_28898948_3 WHERE electorate = \"Rangitikei\"", "question": "When rangitikei is the electorate who is the winner?", "context": "CREATE TABLE table_28898948_3 (winner VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT MAX(by_election) FROM table_28898948_3 WHERE electorate = \"Waikaia\"", "question": "When waikaia is the electorate what is the highest by-election?", "context": "CREATE TABLE table_28898948_3 (by_election INTEGER, electorate VARCHAR)"}, {"answer": "SELECT incumbent FROM table_28898948_3 WHERE reason = \"Death\" AND by_election = 1881", "question": "When 1881 is the by-election and death is the reason who is the incumbent?", "context": "CREATE TABLE table_28898948_3 (incumbent VARCHAR, reason VARCHAR, by_election VARCHAR)"}, {"answer": "SELECT partner FROM table_28948937_3 WHERE outcome = \"Winner\" AND surface = \"Hard\"", "question": "What is the name of the partner that has a winner outcome and a hard surface?", "context": "CREATE TABLE table_28948937_3 (partner VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT COUNT(week_2) FROM table_28946565_2 WHERE week_7 = 40 + 40 = 80", "question": "How many week 2 scores have a week 7 score of 40 + 40 = 80?", "context": "CREATE TABLE table_28946565_2 (week_2 VARCHAR, week_7 VARCHAR)"}, {"answer": "SELECT MIN(week_3) FROM table_28946565_2", "question": "What is the smallest week 3 score?", "context": "CREATE TABLE table_28946565_2 (week_3 INTEGER)"}, {"answer": "SELECT couple FROM table_28946565_2 WHERE week_2 = 23", "question": "Which couple had a week 2 score of exactly 23?", "context": "CREATE TABLE table_28946565_2 (couple VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT series__number FROM table_28967275_3 WHERE episode__number = 68", "question": "when 68 is the episode number what is the series number?", "context": "CREATE TABLE table_28967275_3 (series__number VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28967275_3 WHERE episode__number = 69", "question": "when 69 is the episode number what is the air date?", "context": "CREATE TABLE table_28967275_3 (original_air_date VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2897457_1 WHERE position = \"Goaltender\"", "question": "What draft pick is a goaltender?", "context": "CREATE TABLE table_2897457_1 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_2897457_1 WHERE player = \"Olaf Kolzig\"", "question": "What position does Olaf Kolzig play?", "context": "CREATE TABLE table_2897457_1 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2897457_1 WHERE nationality = \"Sweden\"", "question": "What team drafted a player from Sweden?", "context": "CREATE TABLE table_2897457_1 (nhl_team VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(company) AS Commander FROM table_29023680_2 WHERE date_of_election_commission = \"November 12, 1861\"", "question": "How many company commanders were commissioned or elected on November 12, 1861?", "context": "CREATE TABLE table_29023680_2 (company VARCHAR, date_of_election_commission VARCHAR)"}, {"answer": "SELECT score FROM table_29026564_10 WHERE surface = \"Clay\" AND category = \"250 series\"", "question": "In the 250 series on clay what were the scores?", "context": "CREATE TABLE table_29026564_10 (score VARCHAR, surface VARCHAR, category VARCHAR)"}, {"answer": "SELECT MAX(number_of_dairy_cows) FROM table_29012710_1 WHERE province = \"British Columbia\"", "question": "what is the most amount of cattle where they live in british columbia", "context": "CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER, province VARCHAR)"}, {"answer": "SELECT COUNT(province) FROM table_29012710_1 WHERE number_of_dairy_cows = 13000", "question": "what is the most number where cattle is 13000", "context": "CREATE TABLE table_29012710_1 (province VARCHAR, number_of_dairy_cows VARCHAR)"}, {"answer": "SELECT production__hectolitres_ FROM table_29012710_1 WHERE province = \"New Brunswick\"", "question": "what is the amount where the area is new brunswick", "context": "CREATE TABLE table_29012710_1 (production__hectolitres_ VARCHAR, province VARCHAR)"}, {"answer": "SELECT province FROM table_29012710_1 WHERE number_of_dairy_farms = 200", "question": "what is the location where there are over 200 cattle businesses", "context": "CREATE TABLE table_29012710_1 (province VARCHAR, number_of_dairy_farms VARCHAR)"}, {"answer": "SELECT MIN(number_of_dairy_cows) FROM table_29012710_1", "question": "what is the least amount of cattle head", "context": "CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER)"}, {"answer": "SELECT MIN(number_of_dairy_cows) FROM table_29012710_1 WHERE province = \"Ontario\"", "question": "what is the least amount of milk cattle in ontario", "context": "CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER, province VARCHAR)"}, {"answer": "SELECT production_code FROM table_29054902_1 WHERE us_viewers__million_ = \"3.81\"", "question": "What is the production code of the episode that was watched by 3.81 million U.S. viewers? ", "context": "CREATE TABLE table_29054902_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_29087004_2 WHERE production_code = 116", "question": "Who wrote the episode with a production code of 116?", "context": "CREATE TABLE table_29087004_2 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_29087004_2 WHERE united_states_original_airdate = \"December 24, 2010\"", "question": "What number episode in the series had and original United States air date of December 24, 2010?", "context": "CREATE TABLE table_29087004_2 (series__number INTEGER, united_states_original_airdate VARCHAR)"}, {"answer": "SELECT written_by FROM table_29087004_2 WHERE directed_by = \"Jos Humphrey\" AND canada_original_airdate = \"Unknown\" AND united_states_original_airdate = \"August 27, 2011\"", "question": "Who wrote the episode directed by Jos Humphrey that had an original Canadian air date that was unknown and a United States original air date of August 27, 2011?", "context": "CREATE TABLE table_29087004_2 (written_by VARCHAR, united_states_original_airdate VARCHAR, directed_by VARCHAR, canada_original_airdate VARCHAR)"}, {"answer": "SELECT united_states_original_airdate FROM table_29087004_2 WHERE written_by = \"Mike Ferris\"", "question": "What is the original United States air date of the episode written by Mike Ferris? ", "context": "CREATE TABLE table_29087004_2 (united_states_original_airdate VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT andrew_and_georgies_guest FROM table_29141354_2 WHERE jamie_and_johns_guest = \"Joe Calzaghe\"", "question": "Who was Andrew and Georgies guest when Jamie and Johns guest was Joe Calzaghe?", "context": "CREATE TABLE table_29141354_2 (andrew_and_georgies_guest VARCHAR, jamie_and_johns_guest VARCHAR)"}, {"answer": "SELECT scores FROM table_29141354_2 WHERE jamie_and_johns_guest = \"Phillips Idowu\"", "question": "What were the scores when Jamie and Johns guest was Phillips Idowu?", "context": "CREATE TABLE table_29141354_2 (scores VARCHAR, jamie_and_johns_guest VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_29141354_2 WHERE episode = \"02x02\"", "question": "When was episode 02x02 first broadcast?", "context": "CREATE TABLE table_29141354_2 (first_broadcast VARCHAR, episode VARCHAR)"}, {"answer": "SELECT andrew_and_georgies_guest FROM table_29141354_2 WHERE jamie_and_johns_guest = \"Jessica Ennis\"", "question": "Who was Andrew and Georgies guest when Jamie and Johns guest was Jessica Ennis?", "context": "CREATE TABLE table_29141354_2 (andrew_and_georgies_guest VARCHAR, jamie_and_johns_guest VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_29141354_2 WHERE episode = \"02x07\"", "question": "When was episode 02x07 first broadcast?", "context": "CREATE TABLE table_29141354_2 (first_broadcast VARCHAR, episode VARCHAR)"}, {"answer": "SELECT top_mc FROM table_29160596_1 WHERE year_inducted = 2007 AND peak_ranking = 6", "question": "List all the MCs with peak ranking of 6 who were inducted in 2007.", "context": "CREATE TABLE table_29160596_1 (top_mc VARCHAR, year_inducted VARCHAR, peak_ranking VARCHAR)"}, {"answer": "SELECT top_mc FROM table_29160596_1 WHERE appearances = 5 AND year_inducted = 2007", "question": "List all the MCs with 5 appearances who were inducted in 2007?", "context": "CREATE TABLE table_29160596_1 (top_mc VARCHAR, appearances VARCHAR, year_inducted VARCHAR)"}, {"answer": "SELECT MAX(appearances) FROM table_29160596_1 WHERE top_mc = \"Meek Mill\"", "question": "How many appearances by Meek Mill?", "context": "CREATE TABLE table_29160596_1 (appearances INTEGER, top_mc VARCHAR)"}, {"answer": "SELECT championship FROM table_29163303_1 WHERE score = \"6\u20137 (4\u20137) , 3\u20136\"", "question": "What are the championship venues where the score was 6\u20137 (4\u20137) , 3\u20136?", "context": "CREATE TABLE table_29163303_1 (championship VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_29163303_1 WHERE championship = \"Australian Open (6)\"", "question": "On what surface was the Australian Open (6) played on?", "context": "CREATE TABLE table_29163303_1 (surface VARCHAR, championship VARCHAR)"}, {"answer": "SELECT partner FROM table_29163303_1 WHERE year = 2003 AND surface = \"Hard\"", "question": "Who was Bob Bryan's partner/s on a hard surface in 2003?", "context": "CREATE TABLE table_29163303_1 (partner VARCHAR, year VARCHAR, surface VARCHAR)"}, {"answer": "SELECT shipyard FROM table_291768_1 WHERE commissioned = \"November 30, 1970\"", "question": "which vessel area was called for on november 30, 1970", "context": "CREATE TABLE table_291768_1 (shipyard VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT commissioned FROM table_291768_1 WHERE launched = \"September 20, 1968\"", "question": "what project was initially started before september 20, 1968", "context": "CREATE TABLE table_291768_1 (commissioned VARCHAR, launched VARCHAR)"}, {"answer": "SELECT launched FROM table_291768_1 WHERE commissioned = \"August 6, 1969\"", "question": "when was the first start date that actually began on august 6, 1969", "context": "CREATE TABLE table_291768_1 (launched VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT directed_by FROM table_29273057_1 WHERE production_code = \"IP01003\"", "question": "Who directed the episode with production code ip01003? ", "context": "CREATE TABLE table_29273057_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT poles FROM table_29434211_1 WHERE series = \"European F3 Open\"", "question": "How many poles does the European F3 Open series have?", "context": "CREATE TABLE table_29434211_1 (poles VARCHAR, series VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_29434211_1 WHERE podiums = 2", "question": "What is the maximum season that has exactly 2 podiums?", "context": "CREATE TABLE table_29434211_1 (season INTEGER, podiums VARCHAR)"}, {"answer": "SELECT written_by FROM table_29436007_1 WHERE no_in_season = 23", "question": "Who wrote episode 23 of the season?", "context": "CREATE TABLE table_29436007_1 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_29471472_1 WHERE position = \"3rd\"", "question": "How many seasons are there for the 3rd position?", "context": "CREATE TABLE table_29471472_1 (season VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_29471472_1 WHERE team = \"Autosport Academy\"", "question": "What season was the team autosport academy?", "context": "CREATE TABLE table_29471472_1 (season INTEGER, team VARCHAR)"}, {"answer": "SELECT series FROM table_29471472_1 WHERE races = 7", "question": "What is the series for race 7", "context": "CREATE TABLE table_29471472_1 (series VARCHAR, races VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_29471472_1 WHERE podiums = 7", "question": "What season shows podium 7?", "context": "CREATE TABLE table_29471472_1 (season INTEGER, podiums VARCHAR)"}, {"answer": "SELECT COUNT(french_head_of_state) FROM table_29474481_4 WHERE head_of_mission = \"Xavier Daufresne de la Chevalerie\"", "question": "How many French heads of state have a head of mission of Xavier Daufresne de la Chevalerie?", "context": "CREATE TABLE table_29474481_4 (french_head_of_state VARCHAR, head_of_mission VARCHAR)"}, {"answer": "SELECT location___city FROM table_29483673_1 WHERE institution = \"Tiffin University\"", "question": "What city is Tiffin University located in?", "context": "CREATE TABLE table_29483673_1 (location___city VARCHAR, institution VARCHAR)"}, {"answer": "SELECT enrollment FROM table_29483673_1 WHERE affiliation = \"Private\"", "question": "What is the enrollment at the private university?", "context": "CREATE TABLE table_29483673_1 (enrollment VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT originalair_date FROM table_29494395_3 WHERE director = \"Rowan Woods\" AND writer = \"Peter Duncan\"", "question": "What is the original air date when the director is Rowan Woods and the writer is Peter Duncan?", "context": "CREATE TABLE table_29494395_3 (originalair_date VARCHAR, director VARCHAR, writer VARCHAR)"}, {"answer": "SELECT COUNT(source_s_) FROM table_29487895_2 WHERE country___region = \"South Africa\"", "question": "How many sources are there for south africa?", "context": "CREATE TABLE table_29487895_2 (source_s_ VARCHAR, country___region VARCHAR)"}, {"answer": "SELECT series_premiere FROM table_29487895_2 WHERE source_s_ = \"American Disney XD Tron Uprising Site\"", "question": "What is the premiere date of the american disney xd tron uprising site?", "context": "CREATE TABLE table_29487895_2 (series_premiere VARCHAR, source_s_ VARCHAR)"}, {"answer": "SELECT title_in_country FROM table_29487895_2 WHERE country___region = \"France\"", "question": "What country is in the region of France?", "context": "CREATE TABLE table_29487895_2 (title_in_country VARCHAR, country___region VARCHAR)"}, {"answer": "SELECT title_in_country FROM table_29487895_2 WHERE country___region = \"Canada\"", "question": "What is the title in Canada?", "context": "CREATE TABLE table_29487895_2 (title_in_country VARCHAR, country___region VARCHAR)"}, {"answer": "SELECT best_finish FROM table_29499399_2 WHERE money_list_rank = \"206\"", "question": "What was the best finish for 206 on the money list?", "context": "CREATE TABLE table_29499399_2 (best_finish VARCHAR, money_list_rank VARCHAR)"}, {"answer": "SELECT COUNT(money_list_rank) FROM table_29499399_2 WHERE best_finish = \"T10\"", "question": "How many ranks on the money list had a best finish of t10?", "context": "CREATE TABLE table_29499399_2 (money_list_rank VARCHAR, best_finish VARCHAR)"}, {"answer": "SELECT COUNT(money_list_rank) FROM table_29499399_2 WHERE best_finish = \"2\"", "question": "Which money list ranks had a best finish of 2?", "context": "CREATE TABLE table_29499399_2 (money_list_rank VARCHAR, best_finish VARCHAR)"}, {"answer": "SELECT COUNT(money_list_rank) FROM table_29499399_2 WHERE player = \"Jonathan Kaye\"", "question": "What is Jonathan Kaye's money list ranking?", "context": "CREATE TABLE table_29499399_2 (money_list_rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT money_list_rank FROM table_29499399_2 WHERE player = \"Cameron Beckman\"", "question": "Where is Cameron Beckman's rank on the money list?", "context": "CREATE TABLE table_29499399_2 (money_list_rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT pa FROM table_29565541_2 WHERE w = 6", "question": "When 6 is the w what is the pa?", "context": "CREATE TABLE table_29565541_2 (pa VARCHAR, w VARCHAR)"}, {"answer": "SELECT MIN(stolen_ends) FROM table_29565541_2 WHERE l = 5", "question": "When 5 is the l what is the lowest amount of stolen ends?", "context": "CREATE TABLE table_29565541_2 (stolen_ends INTEGER, l VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_29569969_2 WHERE production_code = 105", "question": "How many million people in the US saw the episode with production code 105?", "context": "CREATE TABLE table_29569969_2 (us_viewers__millions_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_29569969_2 WHERE us_viewers__millions_ = \"1.48\"", "question": "Who directed the episode that had 1.48 million viewers in the U.S.?", "context": "CREATE TABLE table_29569969_2 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT status FROM table_29572583_20 WHERE seed = 14", "question": "what is the status for seed 14", "context": "CREATE TABLE table_29572583_20 (status VARCHAR, seed VARCHAR)"}, {"answer": "SELECT player FROM table_29572583_20 WHERE status = \"Fourth round lost to Tsvetana Pironkova [32]\"", "question": "which player had the status to the fourth round lost to tsvetana pironkova [32] Answers:", "context": "CREATE TABLE table_29572583_20 (player VARCHAR, status VARCHAR)"}, {"answer": "SELECT MAX(new_points) FROM table_29572583_20 WHERE player = \"Roberta Vinci\"", "question": "how many new points does the player roberta vinci have?", "context": "CREATE TABLE table_29572583_20 (new_points INTEGER, player VARCHAR)"}, {"answer": "SELECT _percentage_0_19_years FROM table_29615165_5 WHERE quartier = \"Saint-Loup\"", "question": "How many o-19% are where the quartier is in saint-loup?", "context": "CREATE TABLE table_29615165_5 (_percentage_0_19_years VARCHAR, quartier VARCHAR)"}, {"answer": "SELECT COUNT(_percentage_20_39_years) FROM table_29615165_5 WHERE quartier = \"Pont-de-Vivaux\"", "question": "how many 20-39% are in pont-de-vivaux?", "context": "CREATE TABLE table_29615165_5 (_percentage_20_39_years VARCHAR, quartier VARCHAR)"}, {"answer": "SELECT _percentage_40_59_years FROM table_29615165_5 WHERE quartier = \"Menpenti\"", "question": "the quartier menpenti has how many 40-59 year olds?", "context": "CREATE TABLE table_29615165_5 (_percentage_40_59_years VARCHAR, quartier VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_29585196_1 WHERE directed_by = \"Winrich Kolbe\"", "question": "What episode number in the series was directed by Winrich Kolbe?", "context": "CREATE TABLE table_29585196_1 (no_in_series INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT position FROM table_29626583_1 WHERE affiliation = \"University of Akron Michigan Bucks\"", "question": "What is the position for the university of akron michigan bucks affiliation ", "context": "CREATE TABLE table_29626583_1 (position VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT position FROM table_29626583_1 WHERE affiliation = \"University of North Carolina Carolina Dynamo\"", "question": "What is the position for the university of north carolina carolina dynamo affiliation ", "context": "CREATE TABLE table_29626583_1 (position VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_29626583_1 WHERE mls_team = \"Chivas USA\"", "question": "how many pick# does the chivas usa  mls team have", "context": "CREATE TABLE table_29626583_1 (pick__number INTEGER, mls_team VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_29626583_1 WHERE affiliation = \"University of Akron Reading United Michigan Bucks\"", "question": "how many pick# does the university of akron reading united michigan bucks affiliation have", "context": "CREATE TABLE table_29626583_1 (pick__number VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT position FROM table_29626583_1 WHERE affiliation = \"United States U-20\"", "question": "what is the position for the united states u-20 affiliation ", "context": "CREATE TABLE table_29626583_1 (position VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT title FROM table_29747178_3 WHERE production_code = \"FL209\"", "question": "What is the title of the episode with a production code of FL209?", "context": "CREATE TABLE table_29747178_3 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_29747178_3 WHERE us_viewers__million_ = \"2.67\"", "question": "Who directed the episode that was watched by 2.67 million U.S. viewers?", "context": "CREATE TABLE table_29747178_3 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MIN(int_caps) FROM table_29743928_5", "question": "What is the lowest value for int. caps?", "context": "CREATE TABLE table_29743928_5 (int_caps INTEGER)"}, {"answer": "SELECT COUNT(train_number) FROM table_29770377_1 WHERE route_via = \"Trivandrum, Ernakulam, NewDelhi\"", "question": "How many trains are there for the route via trivandrum, ernakulam, newdelhi?", "context": "CREATE TABLE table_29770377_1 (train_number VARCHAR, route_via VARCHAR)"}, {"answer": "SELECT route_via FROM table_29770377_1 WHERE destination = \"Guruvayur\"", "question": "What is the route for the destination of  guruvayur?", "context": "CREATE TABLE table_29770377_1 (route_via VARCHAR, destination VARCHAR)"}, {"answer": "SELECT COUNT(route_via) FROM table_29770377_1 WHERE train_name = \"Ernad Express\"", "question": "How many route/via's are there for the ernad express?", "context": "CREATE TABLE table_29770377_1 (route_via VARCHAR, train_name VARCHAR)"}, {"answer": "SELECT destination FROM table_29770377_1 WHERE route_via = \"Kulitthurai,Neyyattinkara\"", "question": "What is the destination of the route kulitthurai,neyyattinkara?", "context": "CREATE TABLE table_29770377_1 (destination VARCHAR, route_via VARCHAR)"}, {"answer": "SELECT train_number FROM table_29770377_1 WHERE train_name = \"Island Express\" AND destination = \"Kanniyakumari\"", "question": "What is the train number for the train name island express with a destination of kanniyakumari?", "context": "CREATE TABLE table_29770377_1 (train_number VARCHAR, train_name VARCHAR, destination VARCHAR)"}, {"answer": "SELECT COUNT(reservation_for_sc_st) FROM table_29785324_4 WHERE constituency_no = 191", "question": "How many reservations for sc/st are there in constituency 191?", "context": "CREATE TABLE table_29785324_4 (reservation_for_sc_st VARCHAR, constituency_no VARCHAR)"}, {"answer": "SELECT location FROM table_29788320_2 WHERE first_year = 2001", "question": "Which locations had their first year in 2001? ", "context": "CREATE TABLE table_29788320_2 (location VARCHAR, first_year VARCHAR)"}, {"answer": "SELECT COUNT(number_of_editions) FROM table_29788320_2 WHERE concept = \"Club Q-BASE\"", "question": "How many editions did Club Q-base concept have ? ", "context": "CREATE TABLE table_29788320_2 (number_of_editions VARCHAR, concept VARCHAR)"}, {"answer": "SELECT MIN(runs) FROM table_2985664_8 WHERE average = \"42.36\"", "question": "What is the lowest value for runs when the average is 42.36?", "context": "CREATE TABLE table_2985664_8 (runs INTEGER, average VARCHAR)"}, {"answer": "SELECT COUNT(50) FROM table_2985664_8 WHERE strike_rate = \"92.81\"", "question": "How many entries for 50 occur when strike rate is 92.81?", "context": "CREATE TABLE table_2985664_8 (strike_rate VARCHAR)"}, {"answer": "SELECT MIN(innings) FROM table_2985664_8", "question": "What is the lowest value for innings?", "context": "CREATE TABLE table_2985664_8 (innings INTEGER)"}, {"answer": "SELECT strike_rate FROM table_2985664_8 WHERE catches_stumpings = \"13/1\"", "question": "What is every strike rate when cathces/stumpings is 13/1?", "context": "CREATE TABLE table_2985664_8 (strike_rate VARCHAR, catches_stumpings VARCHAR)"}, {"answer": "SELECT high_score FROM table_2985664_8 WHERE strike_rate = \"84.88\"", "question": "What is every high score for a strike rate of 84.88?", "context": "CREATE TABLE table_2985664_8 (high_score VARCHAR, strike_rate VARCHAR)"}, {"answer": "SELECT COUNT(100) FROM table_2985664_8 WHERE average = \"15.78\"", "question": "How many entries for 100 occur when the average is 15.78?", "context": "CREATE TABLE table_2985664_8 (average VARCHAR)"}, {"answer": "SELECT chromosomal_location FROM table_29871617_1 WHERE name = \"IL-1\u03b2\"", "question": "What is the chromosomal location of il-1\u03b2?", "context": "CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR)"}, {"answer": "SELECT coreceptor FROM table_29871617_1 WHERE chromosomal_location = \"11q22.2-q22.3\"", "question": "What are the coreceptors of the chromosomes in that location 11q22.2-q22.3?", "context": "CREATE TABLE table_29871617_1 (coreceptor VARCHAR, chromosomal_location VARCHAR)"}, {"answer": "SELECT COUNT(chromosomal_location) FROM table_29871617_1 WHERE family_name = \"IL-1F8\"", "question": "How many different chromosomal locations are there in the family il-1f8?", "context": "CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, family_name VARCHAR)"}, {"answer": "SELECT chromosomal_location FROM table_29871617_1 WHERE name = \"IL-36\u03b2\"", "question": "Where is il-36\u03b2 located?", "context": "CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_29871617_1 WHERE family_name = \"IL-1F2\"", "question": "What are the names listed in the family  il-1f2?", "context": "CREATE TABLE table_29871617_1 (name VARCHAR, family_name VARCHAR)"}, {"answer": "SELECT name FROM table_29871617_1 WHERE property = \"Unknown\"", "question": "Which chromosomes have an unknown property?", "context": "CREATE TABLE table_29871617_1 (name VARCHAR, property VARCHAR)"}, {"answer": "SELECT MIN(mister_international) FROM table_30007505_1", "question": "Name the least mister international", "context": "CREATE TABLE table_30007505_1 (mister_international INTEGER)"}, {"answer": "SELECT MAX(total) FROM table_30007505_1 WHERE country_territory = \"South Korea\"", "question": "Name the most total for south korea", "context": "CREATE TABLE table_30007505_1 (total INTEGER, country_territory VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_30007505_1 WHERE country_territory = \"Singapore\"", "question": "Name the semifinalists for singapore", "context": "CREATE TABLE table_30007505_1 (semifinalists VARCHAR, country_territory VARCHAR)"}, {"answer": "SELECT COUNT(semifinalists) FROM table_30007505_1 WHERE rank = 19", "question": "Name the number of semifinalists for 19 rank", "context": "CREATE TABLE table_30007505_1 (semifinalists VARCHAR, rank VARCHAR)"}, {"answer": "SELECT researched_at FROM table_30057479_1 WHERE geometry = \"D: ~50nm, L: ~600nm\"", "question": "Where was d: ~50nm, l: ~600nm geometry researched?", "context": "CREATE TABLE table_30057479_1 (researched_at VARCHAR, geometry VARCHAR)"}, {"answer": "SELECT COUNT(material) FROM table_30057479_1 WHERE output_power = \"~0.1 pW per cycle (calculated)\"", "question": "How many materials are there for output power of ~0.1 pw per cycle (calculated)?", "context": "CREATE TABLE table_30057479_1 (material VARCHAR, output_power VARCHAR)"}, {"answer": "SELECT COUNT(synthesis) FROM table_30057479_1 WHERE output_power = \"5~16.2 pW per cycle (calculated)\"", "question": "How many synthesis are there for 5~16.2 pw per cycle (calculated) output power?", "context": "CREATE TABLE table_30057479_1 (synthesis VARCHAR, output_power VARCHAR)"}, {"answer": "SELECT researched_at FROM table_30057479_1 WHERE geometry = \"D: ~100nm, L: 1 \u03bcm\"", "question": "Where was d: ~100nm, l: 1 \u03bcm geometry researched?", "context": "CREATE TABLE table_30057479_1 (researched_at VARCHAR, geometry VARCHAR)"}, {"answer": "SELECT researched_at FROM table_30057479_1 WHERE geometry = \"D: 25~70nm, L: 10~20 \u03bcm\"", "question": "Where was d: 25~70nm, l: 10~20 \u03bcm geometry researched?", "context": "CREATE TABLE table_30057479_1 (researched_at VARCHAR, geometry VARCHAR)"}, {"answer": "SELECT provider FROM table_3005999_1 WHERE destination = \"Liverpool\"", "question": "Who are all providers with destination of Liverpool?", "context": "CREATE TABLE table_3005999_1 (provider VARCHAR, destination VARCHAR)"}, {"answer": "SELECT intermediate_stops FROM table_3005999_1 WHERE destination = \"Manchester\"", "question": "What is every entry for intermediate stops for the destination of Manchester?", "context": "CREATE TABLE table_3005999_1 (intermediate_stops VARCHAR, destination VARCHAR)"}, {"answer": "SELECT COUNT(route_number) FROM table_3005999_1 WHERE origin = \"Birmingham\" AND destination = \"Bristol\"", "question": "How many route numbers occur for the origin of Birmingham and destination of Bristol?", "context": "CREATE TABLE table_3005999_1 (route_number VARCHAR, origin VARCHAR, destination VARCHAR)"}, {"answer": "SELECT origin FROM table_3005999_1 WHERE destination = \"Manchester\"", "question": "What is every origin for the destination of Manchester?", "context": "CREATE TABLE table_3005999_1 (origin VARCHAR, destination VARCHAR)"}, {"answer": "SELECT COUNT(provider) FROM table_3005999_1 WHERE destination = \"Blackpool\"", "question": "How many providers have a destination of Blackpool?", "context": "CREATE TABLE table_3005999_1 (provider VARCHAR, destination VARCHAR)"}, {"answer": "SELECT MAX(starts) FROM table_3005915_3", "question": "What is the maximum number of starts?", "context": "CREATE TABLE table_3005915_3 (starts INTEGER)"}, {"answer": "SELECT MAX(poles) FROM table_3005915_3", "question": "What is the maximum number of poles?", "context": "CREATE TABLE table_3005915_3 (poles INTEGER)"}, {"answer": "SELECT MIN(poles) FROM table_3005915_3", "question": "What is the minimum number of poles?", "context": "CREATE TABLE table_3005915_3 (poles INTEGER)"}, {"answer": "SELECT date FROM table_30073089_2 WHERE location = \"S. Valentino Alla Muta , Italia\"", "question": "Name the date for  s. valentino alla muta , italia", "context": "CREATE TABLE table_30073089_2 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_30073089_2 WHERE season = 2011 AND position > 2.0", "question": "Name the date for 2011 and position larger than 2.0", "context": "CREATE TABLE table_30073089_2 (date VARCHAR, season VARCHAR, position VARCHAR)"}, {"answer": "SELECT discipline FROM table_30073089_2 WHERE fis_points = 1561", "question": "Name the discipline for 1561 fis points", "context": "CREATE TABLE table_30073089_2 (discipline VARCHAR, fis_points VARCHAR)"}, {"answer": "SELECT position FROM table_30073089_2 WHERE fis_points = 3495", "question": "Name the position for fis points being 3495", "context": "CREATE TABLE table_30073089_2 (position VARCHAR, fis_points VARCHAR)"}, {"answer": "SELECT MAX(WC) AS matches FROM table_30085411_1 WHERE matches = 79", "question": "what is the number of the wc matches if the matches were 79", "context": "CREATE TABLE table_30085411_1 (WC INTEGER, matches VARCHAR)"}, {"answer": "SELECT MIN(matches) FROM table_30085411_1", "question": "what is the number of the least matches", "context": "CREATE TABLE table_30085411_1 (matches INTEGER)"}, {"answer": "SELECT MAX(WC) AS matches FROM table_30085411_1 WHERE matches = 16", "question": "if the matches are 16 what is the wc matches", "context": "CREATE TABLE table_30085411_1 (WC INTEGER, matches VARCHAR)"}, {"answer": "SELECT barony FROM table_30120555_1 WHERE area__acres__ = 24", "question": "Which barony contains a townland with an area 24 acres?", "context": "CREATE TABLE table_30120555_1 (barony VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT COUNT(civil_parish) FROM table_30120555_1 WHERE townland = \"Canrooska\"", "question": "How many different civil parishes is Canrooska a part of?", "context": "CREATE TABLE table_30120555_1 (civil_parish VARCHAR, townland VARCHAR)"}, {"answer": "SELECT poor_law_union FROM table_30120555_1 WHERE townland = \"Curradonohoe\"", "question": "What poor law union is Curradonohoe a part of?", "context": "CREATE TABLE table_30120555_1 (poor_law_union VARCHAR, townland VARCHAR)"}, {"answer": "SELECT barony FROM table_30120619_1 WHERE townland = \"Ballintaggart\"", "question": "What is the barony for the Ballintaggart townland?", "context": "CREATE TABLE table_30120619_1 (barony VARCHAR, townland VARCHAR)"}, {"answer": "SELECT poor_law_union FROM table_30120619_1 WHERE townland = \"Barnahely\"", "question": "What is the poor law union for the Barnahely towland?", "context": "CREATE TABLE table_30120619_1 (poor_law_union VARCHAR, townland VARCHAR)"}, {"answer": "SELECT barony FROM table_30120619_1 WHERE area__acres__ = 150", "question": "What is the barony of the townland whose area is 150 acres? ", "context": "CREATE TABLE table_30120619_1 (barony VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT townland FROM table_30120619_1 WHERE civil_parish = \"Monkstown\"", "question": "In which townlands is the civil parish Monkstown? ", "context": "CREATE TABLE table_30120619_1 (townland VARCHAR, civil_parish VARCHAR)"}, {"answer": "SELECT townland FROM table_30120619_1 WHERE area__acres__ = 165", "question": "Which townland has an area of 165 acres?", "context": "CREATE TABLE table_30120619_1 (townland VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT COUNT(barony) FROM table_30120559_1 WHERE townland = \"Kilmore\"", "question": "Name the total number of barony for kilmore", "context": "CREATE TABLE table_30120559_1 (barony VARCHAR, townland VARCHAR)"}, {"answer": "SELECT COUNT(poor_law_union) FROM table_30120559_1 WHERE area__acres__ = 332", "question": "Name the poor law union for area being 332", "context": "CREATE TABLE table_30120559_1 (poor_law_union VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT COUNT(townland) FROM table_30121096_1 WHERE civil_parish = \"Caheragh\" AND area__acres__ = 270", "question": "How many townlands are there for caheragh and is larger than 270 acres?", "context": "CREATE TABLE table_30121096_1 (townland VARCHAR, civil_parish VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT civil_parish FROM table_30121096_1 WHERE townland = \"Clooncugger\"", "question": "Which civil parish is for the townland clooncugger?", "context": "CREATE TABLE table_30121096_1 (civil_parish VARCHAR, townland VARCHAR)"}, {"answer": "SELECT COUNT(poor_law_union) FROM table_30121096_1 WHERE area__acres__ = 262 AND civil_parish = \"Drinagh\"", "question": "How many poor law unions have an area of 262 acres and is in drinagh civil parish?", "context": "CREATE TABLE table_30121096_1 (poor_law_union VARCHAR, area__acres__ VARCHAR, civil_parish VARCHAR)"}, {"answer": "SELECT COUNT(current_account_balance__percent_of_gdp_) FROM table_30133_1 WHERE gdp_at_constant_prices_growth_rate__percent_change_ = \"4.6\"", "question": "How many current account balances are associated with GDP at constant prices growth rates of 4.6?", "context": "CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, gdp_at_constant_prices_growth_rate__percent_change_ VARCHAR)"}, {"answer": "SELECT COUNT(export_volume_of_goods_and_services__percent_change_) FROM table_30133_1 WHERE gdp_at_constant_prices__thb_trillions_ = \"3.072\"", "question": "How many export volume of goods/services values are associated with GDP at constant prices values of 3.072?", "context": "CREATE TABLE table_30133_1 (export_volume_of_goods_and_services__percent_change_ VARCHAR, gdp_at_constant_prices__thb_trillions_ VARCHAR)"}, {"answer": "SELECT COUNT(export_volume_of_goods_and_services__percent_change_) FROM table_30133_1 WHERE gdp_at_current_prices__usd_billions_ = \"161.340\"", "question": "How many export volume of goods and services values are associated with GDP at current prices of 161.340?", "context": "CREATE TABLE table_30133_1 (export_volume_of_goods_and_services__percent_change_ VARCHAR, gdp_at_current_prices__usd_billions_ VARCHAR)"}, {"answer": "SELECT current_account_balance__percent_of_gdp_ FROM table_30133_1 WHERE export_volume_of_goods_and_services__percent_change_ = \"-4.2\"", "question": "What is the current account balance for an export volume of goods and service value of -4.2?", "context": "CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, export_volume_of_goods_and_services__percent_change_ VARCHAR)"}, {"answer": "SELECT current_account_balance__percent_of_gdp_ FROM table_30133_1 WHERE gdp_at_current_prices__usd_billions_ = \"142.640\"", "question": "What is the current account balance for a GDP at current prices of 142.640?", "context": "CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, gdp_at_current_prices__usd_billions_ VARCHAR)"}, {"answer": "SELECT gdp_at_constant_prices__thb_trillions_ FROM table_30133_1 WHERE current_account_balance__percent_of_gdp_ = \"12.8\"", "question": "What is the GDP at constant prices for a current account balance of 12.8?", "context": "CREATE TABLE table_30133_1 (gdp_at_constant_prices__thb_trillions_ VARCHAR, current_account_balance__percent_of_gdp_ VARCHAR)"}, {"answer": "SELECT games FROM table_name_87 WHERE total < 4 AND sport = \"swimming\" AND years = \"1968\"", "question": "Tell me the games for total less than 4 for swimming 1968", "context": "CREATE TABLE table_name_87 (games VARCHAR, years VARCHAR, total VARCHAR, sport VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_16 WHERE silver = 0 AND sport = \"wrestling\" AND total > 3", "question": "Tell me the total number of bronze for silver being 0 and sport of wrestling and total more than 3", "context": "CREATE TABLE table_name_16 (bronze VARCHAR, total VARCHAR, silver VARCHAR, sport VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_56 WHERE gold = 3 AND games = \"winter\" AND sport = \"cross-country skiing\" AND silver < 0", "question": "Tell me the lowest Bronze for gold of 3 in the winter for cross-country skiing and silver less than 0", "context": "CREATE TABLE table_name_56 (bronze INTEGER, silver VARCHAR, sport VARCHAR, gold VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_59 WHERE overall < 150 AND position = \"offensive guard\"", "question": "What is the lowest round for an offensive guard when the overall is smaller than 150?", "context": "CREATE TABLE table_name_59 (round INTEGER, overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_name_43 WHERE round = 1", "question": "Which college was the player selected from in round 1?", "context": "CREATE TABLE table_name_43 (college VARCHAR, round VARCHAR)"}, {"answer": "SELECT district_attorney FROM table_name_22 WHERE position = \"bureau chief ada\"", "question": "Tell me the DA for bureau chief ada", "context": "CREATE TABLE table_name_22 (district_attorney VARCHAR, position VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_83 WHERE minister = \"enrico la loggia\"", "question": "Tell me the left office for enrico la loggia", "context": "CREATE TABLE table_name_83 (left_office VARCHAR, minister VARCHAR)"}, {"answer": "SELECT portfolio FROM table_name_77 WHERE minister = \"carlo giovanardi\"", "question": "Tell me the portfolio of minister of carlo giovanardi", "context": "CREATE TABLE table_name_77 (portfolio VARCHAR, minister VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_20 WHERE minister = \"mirko tremaglia\"", "question": "Tell me the left office for mirko tremaglia", "context": "CREATE TABLE table_name_20 (left_office VARCHAR, minister VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_58 WHERE position = \"guard\" AND player = \"juan dixon\"", "question": "What School/Club Team has a Player named Juan Dixon and a Position of guard?", "context": "CREATE TABLE table_name_58 (school_club_team VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_16 WHERE position = \"guard\" AND years_in_toronto = \"2007-08\"", "question": "Which Player's Position is guard and played in Toronto during the Years 2007-08?", "context": "CREATE TABLE table_name_16 (player VARCHAR, position VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT player FROM table_name_9 WHERE position = \"guard-forward\" AND nationality = \"argentina\"", "question": "What Player is from Argentina and whose position is a guard-forward?", "context": "CREATE TABLE table_name_9 (player VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_43 WHERE years_in_toronto = \"2012\"", "question": "What School/Club Team played in Toronto during 2012?", "context": "CREATE TABLE table_name_43 (school_club_team VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT result FROM table_name_80 WHERE event = \"syracuse grand prix\"", "question": "What was the result of the syracuse grand prix?", "context": "CREATE TABLE table_name_80 (result VARCHAR, event VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_25 WHERE result = \"3\" AND venue = \"jarama\"", "question": "What year has a result of 3 in the venue of Jarama.", "context": "CREATE TABLE table_name_25 (year INTEGER, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(opponents) FROM table_name_97 WHERE record = \"7-3\" AND vikings_points > 7", "question": "Tell me the highest opponents for record of 7-3 and vikings points more than 7", "context": "CREATE TABLE table_name_97 (opponents INTEGER, record VARCHAR, vikings_points VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_15 WHERE game < 1", "question": "Tell me the most attendance for game less than 1", "context": "CREATE TABLE table_name_15 (attendance INTEGER, game INTEGER)"}, {"answer": "SELECT surface FROM table_name_58 WHERE date = \"2 december 1974\"", "question": "Tell me the surface of 2 december 1974", "context": "CREATE TABLE table_name_58 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_57 WHERE location = \"moscow, ussr\" AND date = \"15 february 1971\"", "question": "Name the score for moscow, ussr 15 february 1971", "context": "CREATE TABLE table_name_57 (score_in_the_final VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_4 WHERE position = \"12th\"", "question": "Name the lowest year for 12th position", "context": "CREATE TABLE table_name_4 (year INTEGER, position VARCHAR)"}, {"answer": "SELECT competition FROM table_name_70 WHERE notes = \"half marathon\"", "question": "Tell me the competition for half marathon", "context": "CREATE TABLE table_name_70 (competition VARCHAR, notes VARCHAR)"}, {"answer": "SELECT category FROM table_name_75 WHERE director = \"na\"", "question": "Tell me the category of na director", "context": "CREATE TABLE table_name_75 (category VARCHAR, director VARCHAR)"}, {"answer": "SELECT MAX(heat_rank) FROM table_name_88 WHERE overall_rank = \"t63\" AND time < 25.47", "question": "I want to know the highest heat rank for overall rank of t63 and time less than 25.47", "context": "CREATE TABLE table_name_88 (heat_rank INTEGER, overall_rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT country FROM table_name_66 WHERE lane = 6", "question": "Tell me the country for lane of 6", "context": "CREATE TABLE table_name_66 (country VARCHAR, lane VARCHAR)"}, {"answer": "SELECT overall_rank FROM table_name_60 WHERE heat_rank = 8", "question": "Tell me the overall rank for heat rank of 8", "context": "CREATE TABLE table_name_60 (overall_rank VARCHAR, heat_rank VARCHAR)"}, {"answer": "SELECT position FROM table_name_8 WHERE player = \"chris clark\"", "question": "Tell me the position of chris clark", "context": "CREATE TABLE table_name_8 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_75 WHERE pick = \"74\"", "question": "Tell me the nhl team for 74", "context": "CREATE TABLE table_name_75 (nhl_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_74 WHERE position = \"centre\" AND nationality = \"canada\"", "question": "Tell me the pick for canada centre", "context": "CREATE TABLE table_name_74 (pick VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT format FROM table_name_3 WHERE label = \"geffen\" AND region = \"united states\"", "question": "Tell me the format for geffen of the united states", "context": "CREATE TABLE table_name_3 (format VARCHAR, label VARCHAR, region VARCHAR)"}, {"answer": "SELECT format FROM table_name_67 WHERE region = \"worldwide\" AND date = \"july 22, 2008\"", "question": "Tell me the format for worldwide region july 22, 2008", "context": "CREATE TABLE table_name_67 (format VARCHAR, region VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_39 WHERE format = \"digital download\" AND edition_s_ = \"bonus tracks version\"", "question": "Tell me the label for digital download for bonus tracks version", "context": "CREATE TABLE table_name_39 (label VARCHAR, format VARCHAR, edition_s_ VARCHAR)"}, {"answer": "SELECT team FROM table_name_43 WHERE rank = 6", "question": "Which team has a rank of 6?", "context": "CREATE TABLE table_name_43 (team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT horsepower FROM table_name_94 WHERE vin_code = \"h\" AND engine = \"351-2v cleveland v8\"", "question": "Name the horsepower for VIN code of h and engine for 351-2v cleveland v8", "context": "CREATE TABLE table_name_94 (horsepower VARCHAR, vin_code VARCHAR, engine VARCHAR)"}, {"answer": "SELECT horsepower FROM table_name_19 WHERE compression_ratio = \"9.00:1\" AND carburetor = \"2-barrel\" AND engine = \"302-2v windsor v8\"", "question": "Name the horsepwer for compression ratio of 9.00:1 and carburetor of 2-barrel and engine 302-2v windsor v8", "context": "CREATE TABLE table_name_19 (horsepower VARCHAR, engine VARCHAR, compression_ratio VARCHAR, carburetor VARCHAR)"}, {"answer": "SELECT vin_code FROM table_name_7 WHERE compression_ratio = \"10.50:1\"", "question": "Tell me the VIN code for compression ratio of 10.50:1", "context": "CREATE TABLE table_name_7 (vin_code VARCHAR, compression_ratio VARCHAR)"}, {"answer": "SELECT network FROM table_name_80 WHERE premiere = \"13 january 2009\"", "question": "Tell me the network for 13 january 2009", "context": "CREATE TABLE table_name_80 (network VARCHAR, premiere VARCHAR)"}, {"answer": "SELECT prize FROM table_name_53 WHERE country_region = \"belgium\"", "question": "Tell me the prize for belgium", "context": "CREATE TABLE table_name_53 (prize VARCHAR, country_region VARCHAR)"}, {"answer": "SELECT host FROM table_name_19 WHERE premiere = \"13 january 2009\"", "question": "Tell me the 13 january 2009 host", "context": "CREATE TABLE table_name_19 (host VARCHAR, premiere VARCHAR)"}, {"answer": "SELECT host FROM table_name_6 WHERE network = \"rtl-tvi\"", "question": "Tell me the host for rtl-tvi", "context": "CREATE TABLE table_name_6 (host VARCHAR, network VARCHAR)"}, {"answer": "SELECT meet FROM table_name_92 WHERE time = \"2:15.93\"", "question": "I want to meet that has a time 2:15.93", "context": "CREATE TABLE table_name_92 (meet VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_86 WHERE nationality = \"lithuania\" AND date = \"12 october 2013\"", "question": "Tell me the location of lithuania 12 october 2013", "context": "CREATE TABLE table_name_86 (location VARCHAR, nationality VARCHAR, date VARCHAR)"}, {"answer": "SELECT title_of_work FROM table_name_17 WHERE year > 2009", "question": "Tell me the title of work for year more than 2009", "context": "CREATE TABLE table_name_17 (title_of_work VARCHAR, year INTEGER)"}, {"answer": "SELECT date FROM table_name_48 WHERE result = \"8\u20130\" AND score = \"1\u20130\"", "question": "When was there a Result of 8\u20130 and a Score of 1\u20130?", "context": "CREATE TABLE table_name_48 (date VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE venue = \"bridgeview, illinois\"", "question": "What was the result of Bridgeview, Illinois?", "context": "CREATE TABLE table_name_33 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE competition = \"friendly\" AND score = \"2\u20131\" AND venue = \"philadelphia , pennsylvania\"", "question": "When did a Competition of friendly, and a Score of 2\u20131, and a Venue of philadelphia , pennsylvania occur?", "context": "CREATE TABLE table_name_4 (date VARCHAR, venue VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE date = \"june 28, 2009\"", "question": "What was the score on June 28, 2009?", "context": "CREATE TABLE table_name_56 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_67 WHERE pick = \"140\"", "question": "Tell me the nationality of pick 140", "context": "CREATE TABLE table_name_67 (nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_7 WHERE pick = \"146\"", "question": "Tell me the position for pick of 146", "context": "CREATE TABLE table_name_7 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_53 WHERE player = \"mike gaffney\"", "question": "Tell me the NHL team for mike gaffney", "context": "CREATE TABLE table_name_53 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_85 WHERE pick = \"153\"", "question": "Tell me the nationality of pick of 153", "context": "CREATE TABLE table_name_85 (nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_9 WHERE pick = \"145\"", "question": "Tell me the player for pick of 145", "context": "CREATE TABLE table_name_9 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_23 WHERE date = \"october 11, 2013\"", "question": "What tournament took place on October 11, 2013?", "context": "CREATE TABLE table_name_23 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_94 WHERE date = \"june 18, 2013\"", "question": "Which tournament took place on June 18, 2013?", "context": "CREATE TABLE table_name_94 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_94 WHERE date = \"november 7, 1976\" AND attendance < 46 OFFSET 735", "question": "What is the average week on November 7, 1976 with an attendance less than 46,735?", "context": "CREATE TABLE table_name_94 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_96 WHERE week = 5", "question": "Who is the opponent for week 5?", "context": "CREATE TABLE table_name_96 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(overall_rank) FROM table_name_68 WHERE heat_rank > 4 AND lane < 2", "question": "Tell me the highest overall rank for heat rank more than 4 and lane less than 2", "context": "CREATE TABLE table_name_68 (overall_rank INTEGER, heat_rank VARCHAR, lane VARCHAR)"}, {"answer": "SELECT partner FROM table_name_26 WHERE outcome = \"runner-up\" AND date = \"april 6, 1992\"", "question": "Who is the partner with a runner-up outcome on April 6, 1992?", "context": "CREATE TABLE table_name_26 (partner VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_3 WHERE surface = \"hard\" AND score = \"4\u20136, 6\u20137(3)\"", "question": "What outcome occurs on a hard surface with a score of 4\u20136, 6\u20137(3)?", "context": "CREATE TABLE table_name_3 (outcome VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE partner = \"lori mcneil\" AND score = \"6\u20137(6), 5\u20137\"", "question": "On what date did Lori McNeil play as a partner with a score of 6\u20137(6), 5\u20137?", "context": "CREATE TABLE table_name_84 (date VARCHAR, partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_62 WHERE percentage > 0.461 AND wins > 86 AND finish = \"2nd\" AND year = 1953", "question": "What is the most losses that the Royals had when they had a percentage over 0.461, won over 86 games, and finished 2nd in 1953?", "context": "CREATE TABLE table_name_62 (losses INTEGER, year VARCHAR, finish VARCHAR, percentage VARCHAR, wins VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_59 WHERE tournament = \"eastbourne\" AND score = \"6\u20130, 5\u20137, 3\u20136\"", "question": "Tell the opponent of eastbourne with score of 6\u20130, 5\u20137, 3\u20136", "context": "CREATE TABLE table_name_59 (opponent VARCHAR, tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_40 WHERE score = \"2\u20136, 1\u20136\"", "question": "Tell me the outcome of 2\u20136, 1\u20136", "context": "CREATE TABLE table_name_40 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_6 WHERE tournament = \"eastbourne\" AND date = \"14 june 1999\"", "question": "Tell me the surface for eastbourne 14 june 1999", "context": "CREATE TABLE table_name_6 (surface VARCHAR, tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT category FROM table_name_77 WHERE result = \"won\" AND year > 2009", "question": "Tell me the category for result of won and year more than 2009", "context": "CREATE TABLE table_name_77 (category VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT nominated_work FROM table_name_54 WHERE year > 2011", "question": "Tell me the nominated work larger than 2011", "context": "CREATE TABLE table_name_54 (nominated_work VARCHAR, year INTEGER)"}, {"answer": "SELECT result FROM table_name_94 WHERE association = \"primetime emmy awards\"", "question": "Tell me the result for primetime emmy awards", "context": "CREATE TABLE table_name_94 (result VARCHAR, association VARCHAR)"}, {"answer": "SELECT competition FROM table_name_31 WHERE date = \"1 march 1909\"", "question": "What competition was held 1 March 1909?", "context": "CREATE TABLE table_name_31 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_62 WHERE total < 1", "question": "Tell me the total number of gold for total less than 1", "context": "CREATE TABLE table_name_62 (gold VARCHAR, total INTEGER)"}, {"answer": "SELECT model FROM table_name_30 WHERE total_production = 1347", "question": "Tell me the model for total production of 1347", "context": "CREATE TABLE table_name_30 (model VARCHAR, total_production VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_88 WHERE nation = \"guatemala\" AND silver < 0", "question": "What is the total amount of Gold from guatemala and silver smaller than 0?", "context": "CREATE TABLE table_name_88 (gold INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT event FROM table_name_70 WHERE games = \"2012 london\"", "question": "Tell me the event for 2012 london games", "context": "CREATE TABLE table_name_70 (event VARCHAR, games VARCHAR)"}, {"answer": "SELECT games FROM table_name_18 WHERE event = \"men's 5000 metres\"", "question": "Tell me the games for men's 5000 metres", "context": "CREATE TABLE table_name_18 (games VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE result = \"w 20-19\"", "question": "When did the w 20-19 happen?", "context": "CREATE TABLE table_name_72 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_61 WHERE result = \"w 28-13\"", "question": "What was the attendance of the w 28-13 game?", "context": "CREATE TABLE table_name_61 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT voting_turnout FROM table_name_91 WHERE general_elections = 1985", "question": "Tell me the voting turnout for 1985 general elections", "context": "CREATE TABLE table_name_91 (voting_turnout VARCHAR, general_elections VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_59 WHERE nation = \"england\"", "question": "What is total number of wins for England?", "context": "CREATE TABLE table_name_59 (total INTEGER, nation VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_44 WHERE nation = \"soviet union\" AND silver > 2", "question": "The Soviet Union has won more than 2 Silver, but how many Bronzes?", "context": "CREATE TABLE table_name_44 (bronze VARCHAR, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT constituency FROM table_name_41 WHERE party = \"alliance\" AND election < 1997 AND position = 2 AND candidate = \"seamus close\"", "question": "Which Alliance Constituency has Seamus Close, position 2 and an election smaller than 1997?", "context": "CREATE TABLE table_name_41 (constituency VARCHAR, candidate VARCHAR, position VARCHAR, party VARCHAR, election VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_54 WHERE evening_gown = 7.52 AND swimsuit > 7.78", "question": "I want the average for evening gown of 7.52 and swimsuit larger than 7.78", "context": "CREATE TABLE table_name_54 (average INTEGER, evening_gown VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT MIN(interview) FROM table_name_46 WHERE state = \"oklahoma\" AND swimsuit < 8.8", "question": "Tell me the lowest interview for oklahoma and swimsuit less than 8.8", "context": "CREATE TABLE table_name_46 (interview INTEGER, state VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT SUM(evening_gown) FROM table_name_53 WHERE average = 9.06 AND swimsuit < 8.76", "question": "Tell me the sum of evening gown for average of 9.06 and swimsuit less than 8.76", "context": "CREATE TABLE table_name_53 (evening_gown INTEGER, average VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT MAX(interview) FROM table_name_19 WHERE state = \"north carolina\" AND evening_gown > 7.68", "question": "Tell me the highest interview for north carolina and evening gown more than 7.68", "context": "CREATE TABLE table_name_19 (interview INTEGER, state VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT ncaa_tourn_appearances FROM table_name_3 WHERE conference_titles > \"0\" AND ncaa_titles = \"0\" AND coach = \"lou watson\"", "question": "Which NCAA Tournament Appearances have Conference Titles that are larger than 0, NCAA Titles of 0, and were coached by Lou Watson?", "context": "CREATE TABLE table_name_3 (ncaa_tourn_appearances VARCHAR, coach VARCHAR, conference_titles VARCHAR, ncaa_titles VARCHAR)"}, {"answer": "SELECT category FROM table_name_92 WHERE year = 2012 AND award = \"drama league award\"", "question": "Tell me the category for 2012 and drama league award", "context": "CREATE TABLE table_name_92 (category VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT MAX(time) FROM table_name_35 WHERE country = \"spain\" AND lane > 8", "question": "Tell me the highest time for spain and lane larger than 8", "context": "CREATE TABLE table_name_35 (time INTEGER, country VARCHAR, lane VARCHAR)"}, {"answer": "SELECT AVG(heat_rank) FROM table_name_15 WHERE time < 24.02 AND lane = 1", "question": "Tell me the average heat rank for time less than 24.02 and lane of 1", "context": "CREATE TABLE table_name_15 (heat_rank INTEGER, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_90 WHERE heat_rank = 1", "question": "Tell me the total number of time for heat rank of 1", "context": "CREATE TABLE table_name_90 (time VARCHAR, heat_rank VARCHAR)"}, {"answer": "SELECT lcd_screen_size, _pixels FROM table_name_93 WHERE model = \"coolpix 5700\"", "question": "What would the LCD screen size and pixels be for the coolpix 5700?", "context": "CREATE TABLE table_name_93 (lcd_screen_size VARCHAR, _pixels VARCHAR, model VARCHAR)"}, {"answer": "SELECT lens__35mm_equiv__zoom, _aperture FROM table_name_79 WHERE model = \"coolpix 5400\"", "question": "What is the lens zoom and aperture for the coolpix 5400?", "context": "CREATE TABLE table_name_79 (lens__35mm_equiv__zoom VARCHAR, _aperture VARCHAR, model VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_54 WHERE opponent = \"clay guida\"", "question": "What is the average number of rounds when fighting against Clay Guida?", "context": "CREATE TABLE table_name_54 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_63 WHERE opponent = \"gray maynard\"", "question": "Where was the fight against Gray Maynard?", "context": "CREATE TABLE table_name_63 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT res FROM table_name_51 WHERE time = \"4:27\"", "question": "What was the result of the 4:27 fight?", "context": "CREATE TABLE table_name_51 (res VARCHAR, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_43 WHERE event = \"wec 24\"", "question": "What was the record at WEC 24?", "context": "CREATE TABLE table_name_43 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT res FROM table_name_16 WHERE round < 3 AND opponent = \"gil rael\"", "question": "What was the result when there were less than 3 rounds against Gil Rael?", "context": "CREATE TABLE table_name_16 (res VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(assists) FROM table_name_32 WHERE club = \"richmond kickers\" AND points > 24", "question": "What is the amount of assists for richmond kickers and points larger than 24", "context": "CREATE TABLE table_name_32 (assists INTEGER, club VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(assists) FROM table_name_10 WHERE rank > 6 AND goals = 10 AND scorer = \"robert ukrop\"", "question": "What is the average amount of assists with a rank higher than 6 and goals 10 and the scorer is Robert Ukrop", "context": "CREATE TABLE table_name_10 (assists INTEGER, scorer VARCHAR, rank VARCHAR, goals VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_85 WHERE outcome = \"winner\" AND score = \"6\u20133, 7\u20135\" AND partner = \"kimberly po-messerli\"", "question": "Which Tournament has a winner Outcome with a Score of 6\u20133, 7\u20135 with Kimberly Po-Messerli as a Partner?", "context": "CREATE TABLE table_name_85 (tournament VARCHAR, partner VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_8 WHERE tournament = \"los angeles\" AND partner = \"julie halard\"", "question": "What is the Outcome of the Los Angeles Tournament when the Partner is Julie Halard?", "context": "CREATE TABLE table_name_8 (outcome VARCHAR, tournament VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE partner = \"alexandra fusai\" AND score = \"4\u20136, 6\u20133, 6\u20131\"", "question": "On what Date is Alexandra Fusai a Partner with a Score of 4\u20136, 6\u20133, 6\u20131?", "context": "CREATE TABLE table_name_46 (date VARCHAR, partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_5 WHERE aggregate = \"2-3\"", "question": "Tell me the home of 2-3", "context": "CREATE TABLE table_name_5 (home VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT sales__x1000_ FROM table_name_49 WHERE no_of_stores = 282", "question": "How much money did the country with 282 stores make in sales?", "context": "CREATE TABLE table_name_49 (sales__x1000_ VARCHAR, no_of_stores VARCHAR)"}, {"answer": "SELECT MIN(sales_area__m\u00b2_) FROM table_name_20 WHERE sales_per_area = \"\u20ac4,094/m\u00b2\" AND no_of_stores > 2", "question": "What is the smallest sales area (m\u00b2) that has \u20ac4,094/m\u00b2 and more than 2 stores?", "context": "CREATE TABLE table_name_20 (sales_area__m\u00b2_ INTEGER, sales_per_area VARCHAR, no_of_stores VARCHAR)"}, {"answer": "SELECT AVG(spectators) FROM table_name_56 WHERE date = \"2006-06-21\" AND time_cet_ > 21", "question": "Tell me the average spectators for 2006-06-21 and time more than 21", "context": "CREATE TABLE table_name_56 (spectators INTEGER, date VARCHAR, time_cet_ VARCHAR)"}, {"answer": "SELECT SUM(closed) FROM table_name_73 WHERE city = \"pittsburgh\" AND capacity > 59 OFFSET 000", "question": "Tell me the sum of closed for city of pittsburgh and capacity larger than 59,000", "context": "CREATE TABLE table_name_73 (closed INTEGER, city VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT MIN(closed) FROM table_name_34 WHERE capacity = 62 OFFSET 439", "question": "Tell me the lowest closed for capacity of 62,439", "context": "CREATE TABLE table_name_34 (closed INTEGER, capacity VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_5 WHERE pick = \"16\"", "question": "Tell me the college/junior club team for pick of 16", "context": "CREATE TABLE table_name_5 (college_junior_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_24 WHERE pick = \"18\"", "question": "Tell me the nationality for pick of 18", "context": "CREATE TABLE table_name_24 (nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE nhl_team = \"mighty ducks of anaheim\"", "question": "I want the player for NHL team for mighty ducks of anaheim", "context": "CREATE TABLE table_name_89 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_87 WHERE player = \"wade belak\"", "question": "I want the NHL team for wade belak", "context": "CREATE TABLE table_name_87 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_90 WHERE outcome = \"winner\" AND score = \"4-6 6-3 10-5\"", "question": "Tell me the tournament for outcome of winner and score of 4-6 6-3 10-5", "context": "CREATE TABLE table_name_90 (tournament VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT partner FROM table_name_15 WHERE opponents_in_the_final = \"anamika bhargava sylvia krywacz\"", "question": "Tell me the partner for opponents of anamika bhargava sylvia krywacz", "context": "CREATE TABLE table_name_15 (partner VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT partner FROM table_name_10 WHERE outcome = \"winner\" AND score = \"7-6 (7) 5-7 10-7\"", "question": "Tell me the partner for outcome of winner and score of 7-6 (7) 5-7 10-7", "context": "CREATE TABLE table_name_10 (partner VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_90 WHERE score = \"6-1 2-6 7-10\"", "question": "Tell me the opponents for score of 6-1 2-6 7-10", "context": "CREATE TABLE table_name_90 (opponents_in_the_final VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE opponents = \"misa eguchi eri hozumi\"", "question": "Tell me the score of misa eguchi eri hozumi", "context": "CREATE TABLE table_name_62 (score VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE outcome = \"winner\" AND opponents = \"dinah pfizenmaier anna zaja\"", "question": "Tell me the date for dinah pfizenmaier anna zaja and winner", "context": "CREATE TABLE table_name_46 (date VARCHAR, outcome VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_43 WHERE partner = \"mashona washington\" AND date = \"november 21, 2009\"", "question": "Tell me the opponents for mashona washington november 21, 2009", "context": "CREATE TABLE table_name_43 (opponents VARCHAR, partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_85 WHERE rank < 4 AND silver > 0 AND gold < 2", "question": "What is the smallest total for a rank below 4, 0 silver medals, and 2 gold medals?", "context": "CREATE TABLE table_name_85 (total INTEGER, gold VARCHAR, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_5 WHERE nation = \"italy\" AND rank > 4", "question": "How many gold medals on average were earned by Italy when they held the rank of 4?", "context": "CREATE TABLE table_name_5 (gold INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT player FROM table_name_75 WHERE nationality = \"canada\" AND pick = \"199\"", "question": "Who is the player from Canada with a 199 pick?", "context": "CREATE TABLE table_name_75 (player VARCHAR, nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_59 WHERE pick = \"196\"", "question": "Which college or team has a pick of 196?", "context": "CREATE TABLE table_name_59 (college_junior_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_52 WHERE player = \"ray giroux\"", "question": "What is the pick number for Ray Giroux?", "context": "CREATE TABLE table_name_52 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_15 WHERE mls_team = \"columbus crew\"", "question": "Tell me the lowest pick number for columbus crew", "context": "CREATE TABLE table_name_15 (pick__number INTEGER, mls_team VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_5 WHERE affiliation = \"university of portland\"", "question": "Tell me the total number of pick for university of portland", "context": "CREATE TABLE table_name_5 (pick__number VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_84 WHERE mls_team = \"new england revolution\"", "question": "Tell me the lowest pick number for new england revolution", "context": "CREATE TABLE table_name_84 (pick__number INTEGER, mls_team VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_87 WHERE player = \"diego walsh\"", "question": "Tell me the affiliation for diego walsh", "context": "CREATE TABLE table_name_87 (affiliation VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_78 WHERE affiliation = \"university of virginia\"", "question": "Tell me the total number of pick for university of virginia", "context": "CREATE TABLE table_name_78 (pick__number VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT d3_compatible FROM table_name_76 WHERE availability = \"yes\" AND name = \"wode jukebox\"", "question": "Tell me the D3 compatible for availability of yes for wode jukebox", "context": "CREATE TABLE table_name_76 (d3_compatible VARCHAR, availability VARCHAR, name VARCHAR)"}, {"answer": "SELECT pts FROM table_name_96 WHERE div = \"glasgow rocks\"", "question": "Tell me the pts for glasgow rocks", "context": "CREATE TABLE table_name_96 (pts VARCHAR, div VARCHAR)"}, {"answer": "SELECT season FROM table_name_97 WHERE play_offs = \"quarter-final\" AND pos = \"4th\"", "question": "Tell me the season for quarter-final position of 4th", "context": "CREATE TABLE table_name_97 (season VARCHAR, play_offs VARCHAR, pos VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_51 WHERE grid = 6", "question": "Tell me the average Laps for grid of 6", "context": "CREATE TABLE table_name_51 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT carburetor FROM table_name_69 WHERE engine = \"250-1v i-6\"", "question": "Tell me the carburetor for engine of 250-1v i-6", "context": "CREATE TABLE table_name_69 (carburetor VARCHAR, engine VARCHAR)"}, {"answer": "SELECT bore_ & _stroke FROM table_name_9 WHERE engine = \"351-2v cleveland v8\"", "question": "Tell me the bore and stroke for Engine of 351-2v cleveland v8", "context": "CREATE TABLE table_name_9 (bore_ VARCHAR, _stroke VARCHAR, engine VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_61 WHERE rank = 2 AND total < 5", "question": "Which country is ranked number 2 and has less than 5 total medals?", "context": "CREATE TABLE table_name_61 (silver VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT time___mt__ FROM table_name_13 WHERE opponent = \"kansas city chiefs\" AND date = \"nov 11\"", "question": "What is the (MT) time which has kansas city chiefs as an opponent on nov 11?", "context": "CREATE TABLE table_name_13 (time___mt__ VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_27 WHERE outcome = \"runner-up\" AND surface = \"grass\"", "question": "Tell me the opponents for runner-up and surface of grass", "context": "CREATE TABLE table_name_27 (opponents_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT venue FROM table_name_88 WHERE opponent = \"netherlands\"", "question": "Name the venue for netherlands opponent", "context": "CREATE TABLE table_name_88 (venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE date = \"10-04-2007\"", "question": "Name the opponent for 10-04-2007", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT runs__balls_ FROM table_name_9 WHERE wicket = \"3rd\" AND opponent = \"australia\"", "question": "Name the runs balls for wicket of 3rd for australia opponent", "context": "CREATE TABLE table_name_9 (runs__balls_ VARCHAR, wicket VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT wicket FROM table_name_59 WHERE date = \"19-03-2007\"", "question": "Name the wicket for 19-03-2007", "context": "CREATE TABLE table_name_59 (wicket VARCHAR, date VARCHAR)"}, {"answer": "SELECT fleet FROM table_name_63 WHERE launched = \"july 30, 1961\"", "question": "Which fleet launched on July 30, 1961?", "context": "CREATE TABLE table_name_63 (fleet VARCHAR, launched VARCHAR)"}, {"answer": "SELECT shipyard FROM table_name_72 WHERE laid_down = \"april 21, 1962\"", "question": "Which shipyard has a fleet that was laid down on April 21, 1962?", "context": "CREATE TABLE table_name_72 (shipyard VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT status FROM table_name_9 WHERE commissioned = \"july 28, 1963\"", "question": "What is the status of the fleet that was commissioned on July 28, 1963?", "context": "CREATE TABLE table_name_9 (status VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT launched FROM table_name_23 WHERE commissioned = \"august 31, 1964\"", "question": "Tell me the launched for august 31, 1964", "context": "CREATE TABLE table_name_23 (launched VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT commissioned FROM table_name_12 WHERE launched = \"december 30, 1965\"", "question": "Tell me what was commissioned december 30, 1965", "context": "CREATE TABLE table_name_12 (commissioned VARCHAR, launched VARCHAR)"}, {"answer": "SELECT MIN(episode__number) FROM table_name_29 WHERE demo = \"0.7/3\"", "question": "Which episode with a demo of 0.7/3 was the lowest?", "context": "CREATE TABLE table_name_29 (episode__number INTEGER, demo VARCHAR)"}, {"answer": "SELECT air_date FROM table_name_48 WHERE demo = \"1.6/5\"", "question": "When is the air date that demo-ed at 1.6/5?", "context": "CREATE TABLE table_name_48 (air_date VARCHAR, demo VARCHAR)"}, {"answer": "SELECT title FROM table_name_37 WHERE demo = \"1.6/5\"", "question": "For demo 1.6/5, what is the title?", "context": "CREATE TABLE table_name_37 (title VARCHAR, demo VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE opponent = \"gabriela paz-franco\"", "question": "What date was gabriela paz-franco the opponent?", "context": "CREATE TABLE table_name_2 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_43 WHERE date = \"september 13, 2009\"", "question": "What surface was the game played on for the September 13, 2009 match?", "context": "CREATE TABLE table_name_43 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT track FROM table_name_86 WHERE pole_position = \"takashi kogure\"", "question": "On which track did Takashi Kogure hold pole position?", "context": "CREATE TABLE table_name_86 (track VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_33 WHERE team = \"arting team impul\" AND round = 3", "question": "On round 3 for Arting Team Impul, who held pole position?", "context": "CREATE TABLE table_name_33 (pole_position VARCHAR, team VARCHAR, round VARCHAR)"}, {"answer": "SELECT winner FROM table_name_89 WHERE fastest_lap = \"katsuyuki hiranaka\"", "question": "Who was the winner when Katsuyuki Hiranaka had the fastest lap?", "context": "CREATE TABLE table_name_89 (winner VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT team FROM table_name_85 WHERE round < 9 AND pole_position = \"takashi kogure\"", "question": "Before round 9, when Takashi Kogure held pole position, who was the team?", "context": "CREATE TABLE table_name_85 (team VARCHAR, round VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT realvideo FROM table_name_86 WHERE mpeg_2 = \"yes\" AND mpeg_1 = \"yes\"", "question": "Tell me the MPEG-2 of yes and MPEG-1 of yes", "context": "CREATE TABLE table_name_86 (realvideo VARCHAR, mpeg_2 VARCHAR, mpeg_1 VARCHAR)"}, {"answer": "SELECT mpeg_1 FROM table_name_77 WHERE realvideo = \"no\"", "question": "Tell me the MPEG-1 for real video of no", "context": "CREATE TABLE table_name_77 (mpeg_1 VARCHAR, realvideo VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_28 WHERE mls_team = \"metrostars\" AND pick__number = 26", "question": "Tell me the affiliation for mls team of metrostars and pick number of 26", "context": "CREATE TABLE table_name_28 (affiliation VARCHAR, mls_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_9 WHERE position = \"m\" AND affiliation = \"williams college\"", "question": "Tell me the total number of picks for position of m of williams college", "context": "CREATE TABLE table_name_9 (pick__number VARCHAR, position VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_25 WHERE year = 1915", "question": "who was the runner-up in the 1915 competition for 'Articles with HCards'?", "context": "CREATE TABLE table_name_25 (runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_39 WHERE year = 1887", "question": "Who was the runner-up in 1887 competition for 'Articles with HCards'?", "context": "CREATE TABLE table_name_39 (runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_36 WHERE away_team = \"collingwood\"", "question": "What is the home team score when the away team is Collingwood?", "context": "CREATE TABLE table_name_36 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT fleet FROM table_name_61 WHERE number = \"l4\"", "question": "what fleet is associated with the number L4?", "context": "CREATE TABLE table_name_61 (fleet VARCHAR, number VARCHAR)"}, {"answer": "SELECT number FROM table_name_49 WHERE fleet = \"baltic\" AND name = \"leninets (\u043b\u0435\u043d\u0438\u043d\u0435\u0446)\"", "question": "what number is associated with the baltic fleet and leninets (\u043b\u0435\u043d\u0438\u043d\u0435\u0446)?", "context": "CREATE TABLE table_name_49 (number VARCHAR, fleet VARCHAR, name VARCHAR)"}, {"answer": "SELECT launched FROM table_name_94 WHERE name = \"garibaldets (\u0433\u0430\u0440\u0438\u0431\u0430\u043b\u044c\u0434\u0438\u0435\u0446)\"", "question": "when was garibaldets (\u0433\u0430\u0440\u0438\u0431\u0430\u043b\u044c\u0434\u0438\u0435\u0446) launched?", "context": "CREATE TABLE table_name_94 (launched VARCHAR, name VARCHAR)"}, {"answer": "SELECT launched FROM table_name_86 WHERE fleet = \"black sea\" AND number = \"l6\"", "question": "when was the number l6, with a fleet of black sea, launched?", "context": "CREATE TABLE table_name_86 (launched VARCHAR, fleet VARCHAR, number VARCHAR)"}, {"answer": "SELECT number FROM table_name_85 WHERE name = \"chartist (\u0447\u0430\u0440\u0442\u0438\u0441\u0442)\"", "question": "what number is associated with the name chartist (\u0447\u0430\u0440\u0442\u0438\u0441\u0442)?", "context": "CREATE TABLE table_name_85 (number VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE venue = \"punt road oval\"", "question": "What date did the VFL play Punt Road Oval?", "context": "CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_99 WHERE venue = \"arden street oval\"", "question": "Who played home team at the Arden Street Oval game?", "context": "CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_84 WHERE venue = \"victoria park\"", "question": "How much did the away team score at Victoria park?", "context": "CREATE TABLE table_name_84 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT closure_date FROM table_name_70 WHERE region = \"north east england\"", "question": "What date was the ensemble in North East England closed?", "context": "CREATE TABLE table_name_70 (closure_date VARCHAR, region VARCHAR)"}, {"answer": "SELECT operator FROM table_name_89 WHERE region = \"yorkshire\"", "question": "What was the operator of the ensemble from Yorkshire?", "context": "CREATE TABLE table_name_89 (operator VARCHAR, region VARCHAR)"}, {"answer": "SELECT closure_date FROM table_name_96 WHERE on_air_date = \"june 2003\"", "question": "When was the ensemble closed that went on air in June 2003?", "context": "CREATE TABLE table_name_96 (closure_date VARCHAR, on_air_date VARCHAR)"}, {"answer": "SELECT licence_award_date FROM table_name_67 WHERE on_air_date = \"july 2001\" AND region = \"south wales and the severn estuary\"", "question": "What was the license award date for the ensemble from South Wales and the Severn Estuary that was on air in July 2001?", "context": "CREATE TABLE table_name_67 (licence_award_date VARCHAR, on_air_date VARCHAR, region VARCHAR)"}, {"answer": "SELECT operator FROM table_name_99 WHERE region = \"yorkshire\"", "question": "What is the operator of the ensemble from Yorkshire?", "context": "CREATE TABLE table_name_99 (operator VARCHAR, region VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_16 WHERE crowd > 41 OFFSET 846", "question": "Who was the home team when attendance was over 41,846?", "context": "CREATE TABLE table_name_16 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT venue FROM table_name_28 WHERE home_team = \"collingwood\"", "question": "Where did Collingwood play as the home team?", "context": "CREATE TABLE table_name_28 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_9 WHERE home_team = \"south melbourne\"", "question": "What was South Melbourne's score when they played as the home team?", "context": "CREATE TABLE table_name_9 (home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_44 WHERE venue = \"lake oval\"", "question": "What was the attendance when the VFL played Lake Oval?", "context": "CREATE TABLE table_name_44 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_80 WHERE winning_driver = \"rick mears\" AND name = \"kraco twin 125 (r1)\"", "question": "What is the Winning Team with Rick Mears' and Kraco Twin 125 (R1)?", "context": "CREATE TABLE table_name_80 (winning_team VARCHAR, winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_52 WHERE winning_team = \"penske racing\"", "question": "What is Penske Racing's name?", "context": "CREATE TABLE table_name_52 (name VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_30 WHERE winning_team = \"penske racing\" AND pole_position = \"rick mears\"", "question": "Who is the winning driver of Penske Racing, and what was Rick Mears' pole position?", "context": "CREATE TABLE table_name_30 (winning_driver VARCHAR, winning_team VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_6 WHERE name = \"kraco twin 125 (r2)\"", "question": "Who was Kraco Twin 125 (R2)'s Winning Driver?", "context": "CREATE TABLE table_name_6 (winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT report FROM table_name_68 WHERE winning_team = \"penske racing\" AND pole_position = \"rick mears\"", "question": "What is the Report of Winning Team Penske Racing, and what was Rick Mears' Pole position?", "context": "CREATE TABLE table_name_68 (report VARCHAR, winning_team VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_41 WHERE winning_team = \"penske racing\" AND name = \"ii copa mexico 150\"", "question": "What is the Pole Position for Winning Team Penske Racing, and the Name of II Copa Mexico 150?", "context": "CREATE TABLE table_name_41 (pole_position VARCHAR, winning_team VARCHAR, name VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_45 WHERE venue = \"brunswick street oval\"", "question": "Who was the away team at the game held at Brunswick Street Oval?", "context": "CREATE TABLE table_name_45 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_13 WHERE away_team = \"collingwood\"", "question": "What was the largest crowd at a game where Collingwood was the away team?", "context": "CREATE TABLE table_name_13 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT population__percentage_1971 FROM table_name_62 WHERE population__percentage_1981 = \"1.92%\"", "question": "For the group with 1.92% population in 1981, what was their percentage of the population in 1971?", "context": "CREATE TABLE table_name_62 (population__percentage_1971 VARCHAR, population__percentage_1981 VARCHAR)"}, {"answer": "SELECT population__percentage_1971 FROM table_name_14 WHERE population__percentage_1961 = \"1.79%\"", "question": "For the group with 1.79% population in 1961, what was their percentage of the population in 1971?", "context": "CREATE TABLE table_name_14 (population__percentage_1971 VARCHAR, population__percentage_1961 VARCHAR)"}, {"answer": "SELECT rice_[b_] FROM table_name_7 WHERE potato_[d_] = \"79\"", "question": "What is the rice amount when the potato amount is 79?", "context": "CREATE TABLE table_name_7 (rice_ VARCHAR, b_ VARCHAR, potato_ VARCHAR, d_ VARCHAR)"}, {"answer": "SELECT yam_[y_] FROM table_name_48 WHERE soybean__green__[f_] = \"0\" AND potato_[d_] = \"0.01\"", "question": "What is the yam amount with amount of soybean 0 and potato of 0.01?", "context": "CREATE TABLE table_name_48 (yam_ VARCHAR, y_ VARCHAR, soybean__green__ VARCHAR, f_ VARCHAR, potato_ VARCHAR, d_ VARCHAR)"}, {"answer": "SELECT yam_[y_] FROM table_name_34 WHERE cassava_[e_] = \"0.11\"", "question": "What is the yam amount when the Cassava amount is 0.11?", "context": "CREATE TABLE table_name_34 (yam_ VARCHAR, y_ VARCHAR, cassava_ VARCHAR, e_ VARCHAR)"}, {"answer": "SELECT wheat_[c_] FROM table_name_20 WHERE potato_[d_] = \"1.9\"", "question": "What is the wheat amount when the potato amount of 1.9?", "context": "CREATE TABLE table_name_20 (wheat_ VARCHAR, c_ VARCHAR, potato_ VARCHAR, d_ VARCHAR)"}, {"answer": "SELECT sweet_potato_[g_] FROM table_name_92 WHERE soybean__green__[f_] = \"1.65\"", "question": "What is the Sweet Potato amount when the soybean amount is 1.65?", "context": "CREATE TABLE table_name_92 (sweet_potato_ VARCHAR, g_ VARCHAR, soybean__green__ VARCHAR, f_ VARCHAR)"}, {"answer": "SELECT yam_[y_] FROM table_name_80 WHERE maize___corn_[a_] = \"1355\"", "question": "What is the Yam amount when the Maze/Corn amount is 1355?", "context": "CREATE TABLE table_name_80 (yam_ VARCHAR, y_ VARCHAR, maize___corn_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT name_and_flag FROM table_name_40 WHERE water_area__km_2__ = 0", "question": "Which province and flag has a water area (km 2) of 0?", "context": "CREATE TABLE table_name_40 (name_and_flag VARCHAR, water_area__km_2__ VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE opponent = \"pittsburgh steelers\"", "question": "When did the Browns play the Pittsburgh Steelers?", "context": "CREATE TABLE table_name_80 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_51 WHERE away_team = \"north melbourne\"", "question": "Who is the home side when north melbourne is the away side?", "context": "CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_99 WHERE away_team = \"collingwood\"", "question": "Where was the game played where Collingwood was the away team?", "context": "CREATE TABLE table_name_99 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT total_tenure_time FROM table_name_3 WHERE total_tenure_rank = 49", "question": "What was the total tenure time with a rank of 49?", "context": "CREATE TABLE table_name_3 (total_tenure_time VARCHAR, total_tenure_rank VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_74 WHERE winning_driver = \"teo fabi\" AND pole_position = \"teo fabi\"", "question": "Who did Teo Fabi drive for when he won and had pole position?", "context": "CREATE TABLE table_name_74 (winning_team VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT name FROM table_name_49 WHERE winning_team = \"forsythe racing\" AND pole_position = \"bobby rahal\"", "question": "Who won for Forsythe Racing when Bobby Rahal had pole position?", "context": "CREATE TABLE table_name_49 (name VARCHAR, winning_team VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_47 WHERE fastest_lap = \"1:13.516\"", "question": "Which team had the fastest lap of 1:13.516?", "context": "CREATE TABLE table_name_47 (winning_team VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_40 WHERE winning_driver = \"al unser\"", "question": "Who had the fastest lap when Al Unser won?", "context": "CREATE TABLE table_name_40 (fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT COUNT(max__number_of_players) FROM table_name_24 WHERE developer = \"sega\" AND main_title___alternate_title_s_ = \"hang-on (cartridge version)\"", "question": "What is the maximum number of players for the sega game, hang-on (cartridge version)?", "context": "CREATE TABLE table_name_24 (max__number_of_players VARCHAR, developer VARCHAR, main_title___alternate_title_s_ VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_33 WHERE score = \"4\u20132\"", "question": "Which Away team has a Score of 4\u20132?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_60 WHERE away_team = \"al-ain fc\" AND year = \"2002/03\"", "question": "Which Home team has an Away team of al-ain fc, and a Year of 2002/03?", "context": "CREATE TABLE table_name_60 (home_team VARCHAR, away_team VARCHAR, year VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_35 WHERE year = \"2002/03\" AND venue = \"tahnoun bin mohamed stadium\"", "question": "Which Home team has a Year of 2002/03, and a Venue of tahnoun bin mohamed stadium?", "context": "CREATE TABLE table_name_35 (home_team VARCHAR, year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_58 WHERE home_team = \"al-ain fc\" AND score = \"1\u20131\"", "question": "Which Away team has a Home team of al-ain fc, and a Score of 1\u20131?", "context": "CREATE TABLE table_name_58 (away_team VARCHAR, home_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_85 WHERE date = \"september 27, 1964\"", "question": "What is the attendance of the game that was played on September 27, 1964?", "context": "CREATE TABLE table_name_85 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_77 WHERE away_team = \"geelong\"", "question": "What is the home side's score when geelong is the away team?", "context": "CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_92 WHERE date = 1974", "question": "What was the score of the tournament that was held in 1974?", "context": "CREATE TABLE table_name_92 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE home_team = \"south melbourne\"", "question": "What was the date when South Melbourne was the home team?", "context": "CREATE TABLE table_name_14 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE home_team = \"hawthorn\"", "question": "Where did Hawthorn play as home team?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_20 WHERE venue = \"brunswick street oval\"", "question": "When the VFL played Brunswick Street Oval what was the home team score?", "context": "CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_9 WHERE away_team = \"geelong\"", "question": "Where did Geelong play as the away team?", "context": "CREATE TABLE table_name_9 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_2 WHERE home_team = \"fitzroy\"", "question": "What was the attendance when Fitzroy played as home team?", "context": "CREATE TABLE table_name_2 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_25 WHERE home_team = \"hawthorn\"", "question": "What was the attendance when Hawthorn played as home team?", "context": "CREATE TABLE table_name_25 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT engine FROM table_name_24 WHERE chassis = \"reynard 01i\" AND drivers = \"casey mears\"", "question": "What engine did Casey Mears use on the Reynard 01i Chassis?", "context": "CREATE TABLE table_name_24 (engine VARCHAR, chassis VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_37 WHERE drivers = \"memo gidley\"", "question": "What Chassis did Memo Gidley use?", "context": "CREATE TABLE table_name_37 (chassis VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT team FROM table_name_34 WHERE engine = \"honda\" AND races = \"all\"", "question": "Who used the Honda Engine for all the races?", "context": "CREATE TABLE table_name_34 (team VARCHAR, engine VARCHAR, races VARCHAR)"}, {"answer": "SELECT location FROM table_name_75 WHERE event = \"200m backstroke\"", "question": "What is the location of the 200m backstroke?", "context": "CREATE TABLE table_name_75 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_11 WHERE winning_driver = \"guy edwards\"", "question": "Which circuit did Guy Edwards win?", "context": "CREATE TABLE table_name_11 (circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_21 WHERE winning_driver = \"rupert keegan\" AND round = 8", "question": "What circuit did Rupert Keegan win in round 8?", "context": "CREATE TABLE table_name_21 (circuit VARCHAR, winning_driver VARCHAR, round VARCHAR)"}, {"answer": "SELECT name FROM table_name_90 WHERE round > 10 AND circuit = \"silverstone\"", "question": "Who won Silverstone in a round after 10?", "context": "CREATE TABLE table_name_90 (name VARCHAR, round VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT rank FROM table_name_44 WHERE actor_actress = \"aaron pedersen\"", "question": "What rank did actor Aaron Pedersen's character have?", "context": "CREATE TABLE table_name_44 (rank VARCHAR, actor_actress VARCHAR)"}, {"answer": "SELECT tenure FROM table_name_75 WHERE actor_actress = \"nadine garner\"", "question": "What years were actress Nadine Garner on the show?", "context": "CREATE TABLE table_name_75 (tenure VARCHAR, actor_actress VARCHAR)"}, {"answer": "SELECT character FROM table_name_50 WHERE actor_actress = \"damien richardson\"", "question": "What character did actor Damien Richardson play?", "context": "CREATE TABLE table_name_50 (character VARCHAR, actor_actress VARCHAR)"}, {"answer": "SELECT episodes FROM table_name_46 WHERE rank = \"detective senior constable\" AND actor_actress = \"daniel macpherson\"", "question": "What episode did actor Daniel Macpherson's character have the rank of Detective Senior Constable", "context": "CREATE TABLE table_name_46 (episodes VARCHAR, rank VARCHAR, actor_actress VARCHAR)"}, {"answer": "SELECT sideline_reporter_s_ FROM table_name_22 WHERE network = \"nbc\" AND play_by_play = \"al michaels\" AND year > 2013", "question": "Who are the sideline reporter(s) on NBC with al michaels on the play-by-play after 2013?", "context": "CREATE TABLE table_name_22 (sideline_reporter_s_ VARCHAR, year VARCHAR, network VARCHAR, play_by_play VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_64 WHERE sideline_reporter_s_ = \"michelle tafoya and suzy kolber\"", "question": "What was the earliest year featuring Sideline reporter(s) of michelle tafoya and suzy kolber?", "context": "CREATE TABLE table_name_64 (year INTEGER, sideline_reporter_s_ VARCHAR)"}, {"answer": "SELECT network FROM table_name_19 WHERE year = 2014", "question": "What network is working in 2014?", "context": "CREATE TABLE table_name_19 (network VARCHAR, year VARCHAR)"}, {"answer": "SELECT sideline_reporter_s_ FROM table_name_72 WHERE year = 2011", "question": "Who were the sideline reporter(s) in 2011?", "context": "CREATE TABLE table_name_72 (sideline_reporter_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT color_commentator_s_ FROM table_name_53 WHERE year < 2012 AND network = \"espn\"", "question": "Who were the collor commentator(s) for ESPN before 2012?", "context": "CREATE TABLE table_name_53 (color_commentator_s_ VARCHAR, year VARCHAR, network VARCHAR)"}, {"answer": "SELECT higher_harmonics FROM table_name_19 WHERE noaa = \"8\"", "question": "What higher harmonics have an NOAA of 8?", "context": "CREATE TABLE table_name_19 (higher_harmonics VARCHAR, noaa VARCHAR)"}, {"answer": "SELECT speed FROM table_name_95 WHERE noaa = \"37\"", "question": "What is the speed of the higher harmonics that have an NOAA of 37?", "context": "CREATE TABLE table_name_95 (speed VARCHAR, noaa VARCHAR)"}, {"answer": "SELECT noaa FROM table_name_49 WHERE darwin = \"mn 4\"", "question": "What is the NOAA of the higher harmonics that have a Darwin of mn 4?", "context": "CREATE TABLE table_name_49 (noaa VARCHAR, darwin VARCHAR)"}, {"answer": "SELECT noaa FROM table_name_27 WHERE darwin = \"m sf\"", "question": "What is the NOAA of the higher harmonics that have a Darwin of m sf?", "context": "CREATE TABLE table_name_27 (noaa VARCHAR, darwin VARCHAR)"}, {"answer": "SELECT higher_harmonics FROM table_name_36 WHERE speed = \"0.0821373\"", "question": "Which higher harmonics have a speed of 0.0821373?", "context": "CREATE TABLE table_name_36 (higher_harmonics VARCHAR, speed VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_7 WHERE venue = \"lake oval\"", "question": "What is the Home team score for the Lake Oval Venue?", "context": "CREATE TABLE table_name_7 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT 2004 AS _05 FROM table_name_83 WHERE commodity = \"milk\"", "question": "What is the 2005-05 production for milk?", "context": "CREATE TABLE table_name_83 (commodity VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_42 WHERE venue = \"victoria park\"", "question": "Which home team score occurred at Victoria Park?", "context": "CREATE TABLE table_name_42 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_67 WHERE venue = \"glenferrie oval\"", "question": "Which home team played at Glenferrie Oval?", "context": "CREATE TABLE table_name_67 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE venue = \"windy hill\"", "question": "On which date was the venue at Windy Hill?", "context": "CREATE TABLE table_name_61 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_68 WHERE round = \"3\" AND method = \"decision\"", "question": "Who has a round of 3 with a method of decision?", "context": "CREATE TABLE table_name_68 (opponent VARCHAR, round VARCHAR, method VARCHAR)"}, {"answer": "SELECT time FROM table_name_63 WHERE stage = \"ss6\"", "question": "What was the finishing time of Stage SS6?", "context": "CREATE TABLE table_name_63 (time VARCHAR, stage VARCHAR)"}, {"answer": "SELECT time FROM table_name_16 WHERE distance = \"18.25km\" AND start_time = \"11:31\"", "question": "What was the finishing time of the stage that featured a distance of 18.25km and a start time of 11:31?", "context": "CREATE TABLE table_name_16 (time VARCHAR, distance VARCHAR, start_time VARCHAR)"}, {"answer": "SELECT avg_speed FROM table_name_23 WHERE distance = \"18.00km\" AND winning_driver = \"jean-claude andruet\"", "question": "What was the average speed over 18.00km for winning driver Jean-Claude Andruet?", "context": "CREATE TABLE table_name_23 (avg_speed VARCHAR, distance VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT time FROM table_name_78 WHERE distance = \"24.00km\" AND start_time = \"21:27\"", "question": "What was the finishing time of the Stage that featured a distance of 24.00km and a start time of 21:27?", "context": "CREATE TABLE table_name_78 (time VARCHAR, distance VARCHAR, start_time VARCHAR)"}, {"answer": "SELECT name FROM table_name_57 WHERE length = \"51.89 (2.043)\"", "question": "Which name is 51.89 (2.043) long?", "context": "CREATE TABLE table_name_57 (name VARCHAR, length VARCHAR)"}, {"answer": "SELECT bullet FROM table_name_25 WHERE shoulder = \"10.92 (.430)\"", "question": "Which bullet has a Shoulder of 10.92 (.430)?", "context": "CREATE TABLE table_name_25 (bullet VARCHAR, shoulder VARCHAR)"}, {"answer": "SELECT shoulder FROM table_name_41 WHERE neck = \"7.3 (.288)\"", "question": "Which shoulder has a Neck of 7.3 (.288)?", "context": "CREATE TABLE table_name_41 (shoulder VARCHAR, neck VARCHAR)"}, {"answer": "SELECT bullet FROM table_name_28 WHERE length = \"33.78 (1.33)\"", "question": "Which bullet has a Length of 33.78 (1.33)?", "context": "CREATE TABLE table_name_28 (bullet VARCHAR, length VARCHAR)"}, {"answer": "SELECT length FROM table_name_26 WHERE bullet = \"6.5 (.257)\"", "question": "Which length has a Bullet of 6.5 (.257)?", "context": "CREATE TABLE table_name_26 (length VARCHAR, bullet VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_11 WHERE college = \"washington\"", "question": "What is the lowest overall pick for a player from Washington?", "context": "CREATE TABLE table_name_11 (overall INTEGER, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_95 WHERE round = 7 AND college = \"oklahoma\"", "question": "What position does the player from Oklahoma who was drafted in round 7 play?", "context": "CREATE TABLE table_name_95 (position VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_36 WHERE college = \"kentucky state\"", "question": "What is the highest overall number for a player from Kentucky State?", "context": "CREATE TABLE table_name_36 (overall INTEGER, college VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_25 WHERE position = \"defensive tackle\" AND overall < 149", "question": "In what round was a defensive tackle drafted with an overall pick smaller than 149?", "context": "CREATE TABLE table_name_25 (round VARCHAR, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_99 WHERE away_team = \"north melbourne\"", "question": "How many attended the game with north melbourne as the away side?", "context": "CREATE TABLE table_name_99 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_27 WHERE away_team = \"north melbourne\"", "question": "What venue featured north melbourne as the away side?", "context": "CREATE TABLE table_name_27 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_58 WHERE away_team = \"melbourne\"", "question": "How many attended the game with north melbourne as the away side?", "context": "CREATE TABLE table_name_58 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT elite_eight FROM table_name_47 WHERE conference = \"atlantic 10\"", "question": "How many teams from the Atlantic 10 conference made it to the Elite Eight?", "context": "CREATE TABLE table_name_47 (elite_eight VARCHAR, conference VARCHAR)"}, {"answer": "SELECT final_four FROM table_name_1 WHERE conference = \"big 12\"", "question": "How many Big 12 teams made it to the Final Four?", "context": "CREATE TABLE table_name_1 (final_four VARCHAR, conference VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_73 WHERE engine = \"cosworth\" AND drivers = \"gordon johncock\"", "question": "What chassis did Gordon Johncock use with his cosworth engine?", "context": "CREATE TABLE table_name_73 (chassis VARCHAR, engine VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT drivers FROM table_name_21 WHERE engine = \"chevrolet\" AND chassis = \"eagle\"", "question": "Who drove the Chevrolet with the Eagle chassis?", "context": "CREATE TABLE table_name_21 (drivers VARCHAR, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT tires FROM table_name_15 WHERE engine = \"offy\" AND chassis = \"manta\" AND team = \"bfm enterprises\"", "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 chassis FROM table_name_13 WHERE drivers = \"gary bettenhausen\"", "question": "What chassis does Gary Bettenhausen use?", "context": "CREATE TABLE table_name_13 (chassis VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_51 WHERE drivers = \"ross davis\"", "question": "What chassis doe Ross Davis use?", "context": "CREATE TABLE table_name_51 (chassis VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT engine FROM table_name_36 WHERE team = \"parts washer service\" AND drivers = \"chip mead\"", "question": "What engine does Chip Mead of Parts Washer Service use?", "context": "CREATE TABLE table_name_36 (engine VARCHAR, team VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT heat__lane_ FROM table_name_75 WHERE rank = 22", "question": "Which heat and lane was in rank of 22?", "context": "CREATE TABLE table_name_75 (heat__lane_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT name FROM table_name_32 WHERE rank < 125 AND time = \"00: 56.30\"", "question": "Who has a rank below 125 and time of 00: 56.30?", "context": "CREATE TABLE table_name_32 (name VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT terminus FROM table_name_1 WHERE line = \"line 10\"", "question": "Which Terminus is on line 10?", "context": "CREATE TABLE table_name_1 (terminus VARCHAR, line VARCHAR)"}, {"answer": "SELECT terminus FROM table_name_46 WHERE color = \"diamond\"", "question": "The color diamond is assigned to which Terminus?", "context": "CREATE TABLE table_name_46 (terminus VARCHAR, color VARCHAR)"}, {"answer": "SELECT length FROM table_name_89 WHERE stations = \"16\"", "question": "Stations of 16 is assigned what length?", "context": "CREATE TABLE table_name_89 (length VARCHAR, stations VARCHAR)"}, {"answer": "SELECT terminus FROM table_name_4 WHERE color = \"sapphire\"", "question": "The color sapphire is assigned to which Terminus?", "context": "CREATE TABLE table_name_4 (terminus VARCHAR, color VARCHAR)"}, {"answer": "SELECT length FROM table_name_60 WHERE daily_ridership > 414", "question": "Daily ridership greater that 414 is associated with which length?", "context": "CREATE TABLE table_name_60 (length VARCHAR, daily_ridership INTEGER)"}, {"answer": "SELECT competition FROM table_name_55 WHERE position = \"4th\" AND year > 2003 AND venue = \"budapest, hungary\"", "question": "Which competition did T\u00e2rlea come in 4th place, in 2003 at Budapest, Hungary?", "context": "CREATE TABLE table_name_55 (competition VARCHAR, venue VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT competition FROM table_name_75 WHERE notes = \"400 m hurdles\" AND year < 2004 AND venue = \"johannesburg, south africa\"", "question": "Prior to 2004, what was the name of the competition that took place in Johannesburg, South Africa and had the 400 m hurdles event?", "context": "CREATE TABLE table_name_75 (competition VARCHAR, venue VARCHAR, notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT notes FROM table_name_96 WHERE year = 1997", "question": "What events did the competition that took place in 1997 have?", "context": "CREATE TABLE table_name_96 (notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_6 WHERE position = \"7th\"", "question": "What was the earliest year that T\u00e2rlea took 7th place?", "context": "CREATE TABLE table_name_6 (year INTEGER, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_56 WHERE competition = \"european indoor championships\"", "question": "What place did T\u00e2rlea come in at the European Indoor Championships?", "context": "CREATE TABLE table_name_56 (position VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_7 WHERE notes = \"400 m hurdles\" AND competition = \"european championships\"", "question": "What venue did the European Championships' 400 m Hurdles take place?", "context": "CREATE TABLE table_name_7 (venue VARCHAR, notes VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_34 WHERE champion = \"marcel granollers\"", "question": "what year has the highest marcel granollers champions?", "context": "CREATE TABLE table_name_34 (year INTEGER, champion VARCHAR)"}, {"answer": "SELECT MAX(sex_ratio__child_) FROM table_name_24 WHERE work_participation___percentage_ = \"37.7%\"", "question": "What is the child sex ration for the population with 37.7% work participation?", "context": "CREATE TABLE table_name_24 (sex_ratio__child_ INTEGER, work_participation___percentage_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE venue = \"punt road oval\"", "question": "What day does the team play at punt road oval?", "context": "CREATE TABLE table_name_26 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_64 WHERE away_team = \"geelong\"", "question": "What venue features geelong as the away side?", "context": "CREATE TABLE table_name_64 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT pages FROM table_name_69 WHERE date = \"1987-08\"", "question": "How many pages does the story from 1987-08 have?", "context": "CREATE TABLE table_name_69 (pages VARCHAR, date VARCHAR)"}, {"answer": "SELECT story AS code FROM table_name_38 WHERE date = \"2002-12\"", "question": "What is the story code of the story published on 2002-12?", "context": "CREATE TABLE table_name_38 (story VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_12 WHERE winning_car = \"wolf wr3\"", "question": "Which driver drove car Wolf WR3?", "context": "CREATE TABLE table_name_12 (winning_driver VARCHAR, winning_car VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_66 WHERE winning_car = \"mclaren m23\" AND circuit = \"snetterton\"", "question": "Which driver drove car McLaren M23 at the Snetterton Circuit?", "context": "CREATE TABLE table_name_66 (winning_driver VARCHAR, winning_car VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_car FROM table_name_35 WHERE circuit = \"oulton park\" AND winning_driver = \"tony trimmer\"", "question": "What car did Tony Trimmer drive at the Oulton Park Circuit?", "context": "CREATE TABLE table_name_35 (winning_car VARCHAR, circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE name = \"international gold cup\"", "question": "What date did the International Gold Cup take place?", "context": "CREATE TABLE table_name_69 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT theme FROM table_name_6 WHERE days < 148 AND series = \"season 3\"", "question": "What's the theme for a series of season 3 with smaller than 148 days?", "context": "CREATE TABLE table_name_6 (theme VARCHAR, days VARCHAR, series VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_96 WHERE away_team = \"collingwood\"", "question": "What is the home team score when the away team is Collingwood?", "context": "CREATE TABLE table_name_96 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_57 WHERE away_team = \"geelong\"", "question": "What is the crowd size when Geelong is the away team?", "context": "CREATE TABLE table_name_57 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_33 WHERE away_team = \"geelong\"", "question": "What is the highest crowd population when the away team is Geelong?", "context": "CREATE TABLE table_name_33 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_82 WHERE venue = \"arden street oval\"", "question": "What away team plays at Arden Street Oval?", "context": "CREATE TABLE table_name_82 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT name FROM table_name_56 WHERE pressure = \"985hpa (29.09inhg)\"", "question": "Which name has a pressure of 985hpa (29.09inhg)?", "context": "CREATE TABLE table_name_56 (name VARCHAR, pressure VARCHAR)"}, {"answer": "SELECT dates_active FROM table_name_75 WHERE name = \"07\"", "question": "What dates was the storm called 07 active?", "context": "CREATE TABLE table_name_75 (dates_active VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(metres) FROM table_name_33 WHERE finalized = \"2015\" AND floors < 40 AND feet > 509", "question": "Which building was built in 2015, has less than 40 floors and is larger than 509 feet?", "context": "CREATE TABLE table_name_33 (metres INTEGER, feet VARCHAR, finalized VARCHAR, floors VARCHAR)"}, {"answer": "SELECT MAX(floors) FROM table_name_97 WHERE metres > 220", "question": "What is the highest floor for the building measuring 220 meters?", "context": "CREATE TABLE table_name_97 (floors INTEGER, metres INTEGER)"}, {"answer": "SELECT COUNT(total) FROM table_name_24 WHERE year_built = 2010", "question": "How many entries feature a year built of 2010?", "context": "CREATE TABLE table_name_24 (total VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT numbers FROM table_name_34 WHERE model = \"lc\" AND year_built = 2009", "question": "What are the numbers for lc models built in 2009?", "context": "CREATE TABLE table_name_34 (numbers VARCHAR, model VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_2 WHERE record = \"5-2\"", "question": "Who has a Record of 5-2?", "context": "CREATE TABLE table_name_2 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT report FROM table_name_78 WHERE race_name = \"champion spark plug 300\"", "question": "For the race Champion Spark Plug 300, what is the report?", "context": "CREATE TABLE table_name_78 (report VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_15 WHERE winning_driver = \"emerson fittipaldi\" AND pole_position = \"michael andretti\" AND circuit = \"cleveland burke lakefront airport\"", "question": "For the race held at the Cleveland Burke Lakefront Airport circuit, with winning driver Emerson Fittipaldi and pole position Michael Andretti, what was the winning team?", "context": "CREATE TABLE table_name_15 (winning_team VARCHAR, circuit VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT AVG(fatalities) FROM table_name_84 WHERE epicenter = \"damghan\"", "question": "What is the average number of deaths for earthquakes centered in Damghan?", "context": "CREATE TABLE table_name_84 (fatalities INTEGER, epicenter VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_42 WHERE away_team = \"richmond\"", "question": "What was the score of the home team when Richmond was the away team?", "context": "CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE score = \"48-12\" AND city = \"perth\"", "question": "What was the result of the match that took place in Perth, featuring a score of 48-12?", "context": "CREATE TABLE table_name_33 (result VARCHAR, score VARCHAR, city VARCHAR)"}, {"answer": "SELECT result FROM table_name_81 WHERE score = \"48-12\" AND city = \"penrith\"", "question": "What was the result of the match in Penrith that featured a score of 48-12?", "context": "CREATE TABLE table_name_81 (result VARCHAR, score VARCHAR, city VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_51 WHERE away_team = \"st kilda\"", "question": "What is the home team score when st kilda is the away team?", "context": "CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_64 WHERE away_team = \"st kilda\"", "question": "What is the home team score when st kilda is the away team?", "context": "CREATE TABLE table_name_64 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_62 WHERE home_team = \"fitzroy\"", "question": "What venue featured fitzroy as the home squad?", "context": "CREATE TABLE table_name_62 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_26 WHERE venue = \"brunswick street oval\"", "question": "What is the home team score at brunswick street oval?", "context": "CREATE TABLE table_name_26 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_85 WHERE position = \"guard\" AND school_country = \"ucla\"", "question": "What nationality is the guard from ucla?", "context": "CREATE TABLE table_name_85 (nationality VARCHAR, position VARCHAR, school_country VARCHAR)"}, {"answer": "SELECT position FROM table_name_29 WHERE player = \"farmar, jordan jordan farmar\"", "question": "What position is played by farmar, jordan jordan farmar?", "context": "CREATE TABLE table_name_29 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT region FROM table_name_30 WHERE venue = \"william r. johnson coliseum\"", "question": "What region is William R. Johnson Coliseum in?", "context": "CREATE TABLE table_name_30 (region VARCHAR, venue VARCHAR)"}, {"answer": "SELECT host FROM table_name_78 WHERE city = \"nashville\"", "question": "What was the host for the round in Nashville?", "context": "CREATE TABLE table_name_78 (host VARCHAR, city VARCHAR)"}, {"answer": "SELECT host FROM table_name_12 WHERE venue = \"hammons student center\"", "question": "What was the host of the round at Hammons Student Center?", "context": "CREATE TABLE table_name_12 (host VARCHAR, venue VARCHAR)"}, {"answer": "SELECT city FROM table_name_76 WHERE venue = \"university gym (gold mine)\"", "question": "What city is University Gym (Gold Mine) in?", "context": "CREATE TABLE table_name_76 (city VARCHAR, venue VARCHAR)"}, {"answer": "SELECT city FROM table_name_20 WHERE region = \"east\" AND state = \"north carolina\" AND host = \"university of richmond\"", "question": "What city in the east region in North Carolina was the round where the University of Richmond was the host?", "context": "CREATE TABLE table_name_20 (city VARCHAR, host VARCHAR, region VARCHAR, state VARCHAR)"}, {"answer": "SELECT host FROM table_name_62 WHERE state = \"texas\" AND venue = \"montagne center\"", "question": "What was the host of the round in the Montagne Center in Texas?", "context": "CREATE TABLE table_name_62 (host VARCHAR, state VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_90 WHERE date = \"august 16, 2006\"", "question": "Which venue had a match played on August 16, 2006?", "context": "CREATE TABLE table_name_90 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_78 WHERE date = \"april 2, 2006\"", "question": "Which match was played on April 2, 2006?", "context": "CREATE TABLE table_name_78 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_58 WHERE rounds = \"5\"", "question": "Who is the Constructor for round 5?", "context": "CREATE TABLE table_name_58 (constructor VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_75 WHERE motorcycle = \"mv agusta f4 1000 mt\"", "question": "Which round has the mv agusta f4 1000 mt?", "context": "CREATE TABLE table_name_75 (rounds VARCHAR, motorcycle VARCHAR)"}, {"answer": "SELECT team FROM table_name_46 WHERE constructor = \"yamaha\"", "question": "Who does Yamaha Construct for?", "context": "CREATE TABLE table_name_46 (team VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT rider FROM table_name_31 WHERE rounds = \"7\" AND motorcycle = \"ducati 999 rs\"", "question": "Who is riding the Ducati 999 RS in Round 7?", "context": "CREATE TABLE table_name_31 (rider VARCHAR, rounds VARCHAR, motorcycle VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_56 WHERE team = \"trac racing team\"", "question": "Who is the Constructor for the Trac Racing Team?", "context": "CREATE TABLE table_name_56 (constructor VARCHAR, team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_80 WHERE home_team = \"richmond\"", "question": "What was the away team score when Richmond was the home team?", "context": "CREATE TABLE table_name_80 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_15 WHERE venue = \"brunswick street oval\"", "question": "What was the away team score for the game played at the Brunswick Street Oval?", "context": "CREATE TABLE table_name_15 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE away_team = \"hawthorn\"", "question": "Where did Hawthorn play as the away team?", "context": "CREATE TABLE table_name_89 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT rank FROM table_name_43 WHERE nationality = \"poland\" AND time = \"1:50.12\"", "question": "What rank did Poland receive with a time of 1:50.12?", "context": "CREATE TABLE table_name_43 (rank VARCHAR, nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_58 WHERE school_club_team = \"arizona state\"", "question": "What is arizona state overall lowest?", "context": "CREATE TABLE table_name_58 (overall INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_76 WHERE played > 3 AND _percentage_won < 75 AND drawn = 0 AND points = 56", "question": "What are the fewest losses for a player lower than 3, with wins fewer than 75%, 0 draws and 56 points?", "context": "CREATE TABLE table_name_76 (lost INTEGER, points VARCHAR, drawn VARCHAR, played VARCHAR, _percentage_won VARCHAR)"}, {"answer": "SELECT COUNT(tries) FROM table_name_73 WHERE played > 2 AND lost < 0", "question": "How many tries for the player whose number is greater than 2 and losses are smaller than 0?", "context": "CREATE TABLE table_name_73 (tries VARCHAR, played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(tries) FROM table_name_81 WHERE played > 16", "question": "What is the number of tries for the player who is larger than 16?", "context": "CREATE TABLE table_name_81 (tries INTEGER, played INTEGER)"}, {"answer": "SELECT MIN(drawn) FROM table_name_83 WHERE played > 2 AND _percentage_won > 100", "question": "What is the smallest draws for a player larger than 2 with a 100% wins?", "context": "CREATE TABLE table_name_83 (drawn INTEGER, played VARCHAR, _percentage_won VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_86 WHERE tries > 1 AND _percentage_won < 56.15 AND played > 16", "question": "What is the average draws for a player larger than 16 with more than 1 tries and a win percentage smaller than 56.15%?", "context": "CREATE TABLE table_name_86 (drawn INTEGER, played VARCHAR, tries VARCHAR, _percentage_won VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_22 WHERE tournament = \"wimbledon\"", "question": "What was the 2011 Wimbledon result?", "context": "CREATE TABLE table_name_22 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_59 WHERE 2007 = \"f\" AND tournament = \"us open\"", "question": "What was the result of the 2011 US Open when the 2007 was F?", "context": "CREATE TABLE table_name_59 (tournament VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_16 WHERE 2011 = \"f\" AND 2009 = \"w\"", "question": "What was the result in 2007 when the 2011 was F and 2009 was W?", "context": "CREATE TABLE table_name_16 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_67 WHERE 2009 = \"w\"", "question": "Which tournament had the result of a W in 2009?", "context": "CREATE TABLE table_name_67 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_58 WHERE 2009 = \"grand slams\"", "question": "Which 2009 tournament had Grand Slams?", "context": "CREATE TABLE table_name_58 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_61 WHERE 2009 = \"f\" AND 2010 = \"f\"", "question": "Which tournament had the result with 2009 was F and 2010 was F?", "context": "CREATE TABLE table_name_61 (tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE home_team = \"hawthorn\"", "question": "What was the date of the game when Hawthorn was the home team?", "context": "CREATE TABLE table_name_54 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT season FROM table_name_48 WHERE margin = 10", "question": "Which season had a margin of 10?", "context": "CREATE TABLE table_name_48 (season VARCHAR, margin VARCHAR)"}, {"answer": "SELECT 1954 FROM table_name_28 WHERE 1969 = \"a\" AND tournament = \"australian championships\"", "question": "What did the Tournament of Australian Championships, with an A in 1969, get in 1954?", "context": "CREATE TABLE table_name_28 (tournament VARCHAR)"}, {"answer": "SELECT 1951 FROM table_name_25 WHERE tournament = \"sr\"", "question": "What did the Tournament of SR get in 1951?", "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"}, {"answer": "SELECT 1956 AS _1968 FROM table_name_31 WHERE 1969 = \"qf\"", "question": "What did the tournament with a QF in 1969 get in 1956-1968?", "context": "CREATE TABLE table_name_31 (Id VARCHAR)"}, {"answer": "SELECT 1949 FROM table_name_22 WHERE 1945 = \"a\"", "question": "What did the tournament that got an A in 1945 get in 1949?", "context": "CREATE TABLE table_name_22 (Id VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE home_team = \"geelong\"", "question": "When did Geelong play as the home team?", "context": "CREATE TABLE table_name_65 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_56 WHERE away_team = \"north melbourne\"", "question": "When North Melbourne played as the away team, what was the crowd numbers?", "context": "CREATE TABLE table_name_56 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_95 WHERE player = \"honester davidson\"", "question": "How many rounds did Honester Davidson play?", "context": "CREATE TABLE table_name_95 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_15 WHERE overall = 21", "question": "What School or Club team has an overall score of 21?", "context": "CREATE TABLE table_name_15 (school_club_team VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_86 WHERE round < 1", "question": "What total number of Overalls has a round that was smaller than 1?", "context": "CREATE TABLE table_name_86 (overall VARCHAR, round INTEGER)"}, {"answer": "SELECT player FROM table_name_33 WHERE position = \"kicker\"", "question": "What player is a kicker?", "context": "CREATE TABLE table_name_33 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_17 WHERE overall < 410 AND round < 5 AND school_club_team = \"oklahoma state\"", "question": "What position and school/club team of Oklahoma state has an overall less than 410 and a round smaller than 5?", "context": "CREATE TABLE table_name_17 (position VARCHAR, school_club_team VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE position = \"forward\" AND school_country = \"kentucky\"", "question": "Which player plays forward and is from Kentucky?", "context": "CREATE TABLE table_name_43 (player VARCHAR, position VARCHAR, school_country VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_4 WHERE venue = \"punt road oval\"", "question": "What team was the away team for the venue punt road oval?", "context": "CREATE TABLE table_name_4 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_3 WHERE opposition = \"westmeath\"", "question": "What is the highest ranked player who opposed Westmeath?", "context": "CREATE TABLE table_name_3 (rank INTEGER, opposition VARCHAR)"}, {"answer": "SELECT county FROM table_name_67 WHERE player = \"tony o'sullivan\"", "question": "What is Tony O'Sullivan's county?", "context": "CREATE TABLE table_name_67 (county VARCHAR, player VARCHAR)"}, {"answer": "SELECT network FROM table_name_71 WHERE language = \"punjabi\"", "question": "What Network has Punjabi as the Language?", "context": "CREATE TABLE table_name_71 (network VARCHAR, language VARCHAR)"}, {"answer": "SELECT genre FROM table_name_16 WHERE language = \"hindi\" AND network = \"star gold\"", "question": "What Genre has Hindi as the Language and Star Gold as the Network?", "context": "CREATE TABLE table_name_16 (genre VARCHAR, language VARCHAR, network VARCHAR)"}, {"answer": "SELECT origin_of_programming FROM table_name_98 WHERE network = \"ndtv india\"", "question": "What is the Origin of Programming for the Network NDTV India?", "context": "CREATE TABLE table_name_98 (origin_of_programming VARCHAR, network VARCHAR)"}, {"answer": "SELECT origin_of_programming FROM table_name_43 WHERE network = \"mtv india\"", "question": "What is the Origin of Programming for the Network MTV India?", "context": "CREATE TABLE table_name_43 (origin_of_programming VARCHAR, network VARCHAR)"}, {"answer": "SELECT language FROM table_name_28 WHERE network = \"ptc punjabi\"", "question": "What is the Language for Network PTC Punjabi?", "context": "CREATE TABLE table_name_28 (language VARCHAR, network VARCHAR)"}, {"answer": "SELECT genre FROM table_name_93 WHERE network = \"zee tv\"", "question": "What Genre has the Network Zee TV?", "context": "CREATE TABLE table_name_93 (genre VARCHAR, network VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_74 WHERE venue = \"junction oval\"", "question": "What team was the home team at the venue junction oval?", "context": "CREATE TABLE table_name_74 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_33 WHERE home_team = \"south melbourne\"", "question": "What away team played when the home team was south melbourne?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_36 WHERE away_team = \"richmond\"", "question": "What team was the home team when Richmond was the away team?", "context": "CREATE TABLE table_name_36 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_45 WHERE home_team = \"geelong\"", "question": "What was the score when geelong was the away team?", "context": "CREATE TABLE table_name_45 (home_team VARCHAR)"}, {"answer": "SELECT cb_cw FROM table_name_89 WHERE year = 1982", "question": "What was the CB CW for the year of 1982?", "context": "CREATE TABLE table_name_89 (cb_cw VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_8 WHERE bb_cw = \"78\"", "question": "What is the most current year that had a BB CW of 78?", "context": "CREATE TABLE table_name_8 (year INTEGER, bb_cw VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_52 WHERE home_team = \"north melbourne\"", "question": "What was the North Melbourne's score when they played as the home team?", "context": "CREATE TABLE table_name_52 (home_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_54 WHERE home_team = \"st kilda\"", "question": "What was the attendance at the St Kilda home game?", "context": "CREATE TABLE table_name_54 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_58 WHERE venue = \"junction oval\"", "question": "What was the attendance when the VFL played Junction Oval?", "context": "CREATE TABLE table_name_58 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_95 WHERE away_team = \"melbourne\"", "question": "Where did Melbourne play as the away team?", "context": "CREATE TABLE table_name_95 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_82 WHERE home_team = \"fitzroy\"", "question": "What is Fitzroy's home field?", "context": "CREATE TABLE table_name_82 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_5 WHERE venue = \"punt road oval\"", "question": "Who was the away team at punt road oval?", "context": "CREATE TABLE table_name_5 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_62 WHERE venue = \"victoria park\"", "question": "What was the away team score at victoria park?", "context": "CREATE TABLE table_name_62 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_42 WHERE venue = \"arden street oval\"", "question": "Who was the home team in the game played at arden street oval?", "context": "CREATE TABLE table_name_42 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_21 WHERE away_team = \"st kilda\"", "question": "What was St Kilda's away team score?", "context": "CREATE TABLE table_name_21 (away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_13 WHERE home_team = \"south melbourne\"", "question": "Who was home team South Melbourne's opponent?", "context": "CREATE TABLE table_name_13 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT music FROM table_name_99 WHERE score = \"13 (5, 4, 4)\"", "question": "What was the music for the team who earned a score of 13 (5, 4, 4)?", "context": "CREATE TABLE table_name_99 (music VARCHAR, score VARCHAR)"}, {"answer": "SELECT music FROM table_name_7 WHERE result = \"eliminated\"", "question": "What was the music of the team that was eliminated?", "context": "CREATE TABLE table_name_7 (music VARCHAR, result VARCHAR)"}, {"answer": "SELECT couple FROM table_name_98 WHERE dance = \"jive\" AND score = \"21 (6, 7, 8)\"", "question": "Which couple danced a jive and received a score of 21 (6, 7, 8)?", "context": "CREATE TABLE table_name_98 (couple VARCHAR, dance VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE dance = \"jive\" AND result = \"safe\"", "question": "What was the score of the team that danced a jive and was safe?", "context": "CREATE TABLE table_name_65 (score VARCHAR, dance VARCHAR, result VARCHAR)"}, {"answer": "SELECT engine FROM table_name_21 WHERE team = \"dick simon racing\"", "question": "What engine did Dick Simon Racing use?", "context": "CREATE TABLE table_name_21 (engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT drivers FROM table_name_31 WHERE team = \"arciero racing\"", "question": "Who drove for Arciero Racing?", "context": "CREATE TABLE table_name_31 (drivers VARCHAR, team VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_94 WHERE drivers = \"rich vogler\"", "question": "What Chassis did Rich Vogler use?", "context": "CREATE TABLE table_name_94 (chassis VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT tires FROM table_name_46 WHERE drivers = \"johnny parsons\"", "question": "What tires did Johnny Parsons use?", "context": "CREATE TABLE table_name_46 (tires VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT name FROM table_name_72 WHERE winning_driver = \"bobby unser\"", "question": "What race did Bobby Unser win?", "context": "CREATE TABLE table_name_72 (name VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_67 WHERE winning_team = \"chaparral\" AND name = \"indianapolis 500\"", "question": "Which driver won the Indianapolis 500 the year the Chaparral team also won it?", "context": "CREATE TABLE table_name_67 (winning_driver VARCHAR, winning_team VARCHAR, name VARCHAR)"}, {"answer": "SELECT report FROM table_name_33 WHERE pole_position = \"bobby unser\" AND winning_driver = \"rick mears\"", "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 name FROM table_name_62 WHERE winning_team = \"penske racing\" AND winning_driver = \"bobby unser\"", "question": "Which race has a winning team of Penske Racing, and a winning driver of Bobby Unser?", "context": "CREATE TABLE table_name_62 (name VARCHAR, winning_team VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE home_team = \"geelong\"", "question": "On what day is geelong the home team?", "context": "CREATE TABLE table_name_37 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_11 WHERE away_team = \"collingwood\"", "question": "What venue featured collingwood as the away side?", "context": "CREATE TABLE table_name_11 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_16 WHERE venue = \"windy hill\"", "question": "What is the home team score at windy hill?", "context": "CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT season FROM table_name_35 WHERE races > 18 AND points = 36", "question": "What season has races larger than 18 and 36 points?", "context": "CREATE TABLE table_name_35 (season VARCHAR, races VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE venue = \"brunswick street oval\"", "question": "The venue of Brunswick Street Oval was used on what date?", "context": "CREATE TABLE table_name_53 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_61 WHERE away_team = \"north melbourne\"", "question": "What is the smallest crowd with the away team of North Melbourne?", "context": "CREATE TABLE table_name_61 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE home_team = \"essendon\"", "question": "On which date was Essendon the home team?", "context": "CREATE TABLE table_name_91 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT airport FROM table_name_10 WHERE iata = \"dac\"", "question": "What is the name of the airport with IATA code DAC?", "context": "CREATE TABLE table_name_10 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_56 WHERE city = \"delhi\"", "question": "What is the IATA code for Delhi?", "context": "CREATE TABLE table_name_56 (iata VARCHAR, city VARCHAR)"}, {"answer": "SELECT iata FROM table_name_98 WHERE icao = \"rcmq\"", "question": "What is the IATA code for the city with ICAO code of RCMQ?", "context": "CREATE TABLE table_name_98 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_39 WHERE icao = \"wmkp\"", "question": "What is the airport with ICAO code of WMKP?", "context": "CREATE TABLE table_name_39 (airport VARCHAR, icao VARCHAR)"}, {"answer": "SELECT iata FROM table_name_7 WHERE airport = \"shahjalal international airport\"", "question": "What is the IATA code for SHahjalal International Airport?", "context": "CREATE TABLE table_name_7 (iata VARCHAR, airport VARCHAR)"}, {"answer": "SELECT icao FROM table_name_54 WHERE city = \"ningbo\"", "question": "What is the ICAO for the airport in Ningbo?", "context": "CREATE TABLE table_name_54 (icao VARCHAR, city VARCHAR)"}, {"answer": "SELECT bb_pop FROM table_name_93 WHERE cb_cw = \"1\" AND year > 1976 AND riaa = \"p\"", "question": "What is the BB pop of the song with a CB CW of 1, RIAA of P and was released more recently than 1976?", "context": "CREATE TABLE table_name_93 (bb_pop VARCHAR, riaa VARCHAR, cb_cw VARCHAR, year VARCHAR)"}, {"answer": "SELECT cb_cw FROM table_name_73 WHERE bb_pop = \"11\"", "question": "What is the CB CW of the song which has a BB Pop of 11?", "context": "CREATE TABLE table_name_73 (cb_cw VARCHAR, bb_pop VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_50 WHERE venue = \"victoria park\"", "question": "What was the crowd numbers when the VFL played Victoria Park?", "context": "CREATE TABLE table_name_50 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_15 WHERE venue = \"junction oval\"", "question": "When the VFL played at Junction Oval what was the away score?", "context": "CREATE TABLE table_name_15 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_46 WHERE crowd > 41 OFFSET 402", "question": "Who was the away team for the game played in front of more than 41,402 fans?", "context": "CREATE TABLE table_name_46 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT home_team FROM table_name_22 WHERE away_team = \"richmond\"", "question": "What Home team played Richmond?", "context": "CREATE TABLE table_name_22 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_32 WHERE home_team = \"melbourne\"", "question": "What is Melbourne's home venue?", "context": "CREATE TABLE table_name_32 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home___away FROM table_name_23 WHERE record = \"6-12\"", "question": "Was the game home or away when the record is 6-12?", "context": "CREATE TABLE table_name_23 (home___away VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE home___away = \"away\" AND location_attendance = \"blue cross arena\"", "question": "What is the date of the away game at the Blue Cross Arena?", "context": "CREATE TABLE table_name_78 (date VARCHAR, home___away VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_26 WHERE attendance = \"22,286\"", "question": "What is the week for the stadium that had an attendance of 22,286?", "context": "CREATE TABLE table_name_26 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT COUNT(total_assists) FROM table_name_20 WHERE games > 107 AND rank < 2", "question": "How many assists for player(s) with over 107 games and ranked less than 2?", "context": "CREATE TABLE table_name_20 (total_assists VARCHAR, games VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(total_assists) FROM table_name_11 WHERE ast_avg > 6 AND games < 55", "question": "What is the total number of assists for players with under 55 games and over 6 assists per game average?", "context": "CREATE TABLE table_name_11 (total_assists INTEGER, ast_avg VARCHAR, games VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_35 WHERE ast_avg < 2.9", "question": "What is the average rank for players with less than 2.9 Assists per game?", "context": "CREATE TABLE table_name_35 (rank INTEGER, ast_avg INTEGER)"}, {"answer": "SELECT circuit FROM table_name_79 WHERE winning_car = \"ensign n180\" AND round = 5", "question": "What circuit had an ensign n180 as the winning car in round 5?", "context": "CREATE TABLE table_name_79 (circuit VARCHAR, winning_car VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_79 WHERE date = \"may 31\"", "question": "How many rounds total were there on may 31?", "context": "CREATE TABLE table_name_79 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_56 WHERE circuit = \"oulton park\"", "question": "What was the average round for the oulton park circuit?", "context": "CREATE TABLE table_name_56 (round INTEGER, circuit VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_64 WHERE venue = \"arden street oval\"", "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 AS score FROM table_name_31 WHERE venue = \"victoria park\"", "question": "What was the opposing team's score at the match that was played at Victoria Park?", "context": "CREATE TABLE table_name_31 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_32 WHERE home_team = \"collingwood\"", "question": "Which venue did the match where Collingwood was the home team take place?", "context": "CREATE TABLE table_name_32 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_79 WHERE home_team = \"north melbourne\"", "question": "Who is the away side when north melbourne is the home side?", "context": "CREATE TABLE table_name_79 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_8 WHERE away_team = \"hawthorn\"", "question": "How many games feature hawthorn as the away squad?", "context": "CREATE TABLE table_name_8 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_58 WHERE time = \"9:01.70\"", "question": "What Nationality has a Time of 9:01.70?", "context": "CREATE TABLE table_name_58 (nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_20 WHERE name = \"sun yang\"", "question": "What is sun yang's lowest rank?", "context": "CREATE TABLE table_name_20 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_12 WHERE nationality = \"canada\" AND time = \"dns\"", "question": "How many ranks have a ationality of canada, and a Time of dns?", "context": "CREATE TABLE table_name_12 (rank VARCHAR, nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_42 WHERE away_team = \"fitzroy\"", "question": "Who played Fitzroy at their own home?", "context": "CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_2 WHERE venue = \"lake oval\"", "question": "What team plays at home at Lake Oval?", "context": "CREATE TABLE table_name_2 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_17 WHERE away_team = \"melbourne\"", "question": "What was Melbourne's score as the away team?", "context": "CREATE TABLE table_name_17 (away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE venue = \"victoria park\"", "question": "On what date was the match played in Victoria Park?", "context": "CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_73 WHERE away_team = \"geelong\"", "question": "What is the away team's score when geelong is the away team?", "context": "CREATE TABLE table_name_73 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_36 WHERE away_team = \"south melbourne\"", "question": "What is the away team's score when south melbourne is the away team?", "context": "CREATE TABLE table_name_36 (away_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_89 WHERE category = \"best actress\" AND year < 2005 AND award = \"robert award\"", "question": "What was the result of the film made before 2005, winner of the robert award, in the category of best actress?", "context": "CREATE TABLE table_name_89 (result VARCHAR, award VARCHAR, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_37 WHERE award = \"bodil award\" AND category = \"best actress\" AND year = 2005", "question": "What was the result of the bodil award winning film from before 2005 in the best actress category?", "context": "CREATE TABLE table_name_37 (result VARCHAR, year VARCHAR, award VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_name_43 WHERE nominated_work = \"cecilie\" AND award = \"robert award\"", "question": "What category is the nominated work of cecilie, winner of the robert award?", "context": "CREATE TABLE table_name_43 (category VARCHAR, nominated_work VARCHAR, award VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_1 WHERE venue = \"victoria park\"", "question": "Who was the away team at Victoria Park?", "context": "CREATE TABLE table_name_1 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE away_team = \"footscray\"", "question": "What is the date of the game where Footscray was the away team?", "context": "CREATE TABLE table_name_2 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT week FROM table_name_66 WHERE opponent = \"bye\"", "question": "What week did they have a bye?", "context": "CREATE TABLE table_name_66 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_4 WHERE venue = \"western oval\"", "question": "How many people watch at Western Oval venue?", "context": "CREATE TABLE table_name_4 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_66 WHERE home_team = \"south melbourne\"", "question": "How many people are in the crowd in south melbourne?", "context": "CREATE TABLE table_name_66 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_56 WHERE venue = \"windy hill\"", "question": "What was the highest crowd at Windy Hill?", "context": "CREATE TABLE table_name_56 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_21 WHERE venue = \"arden street oval\"", "question": "How many people at Arden Street Oval?", "context": "CREATE TABLE table_name_21 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT neck FROM table_name_48 WHERE bullet = \"10.566 (.416)\" AND base = \"14.78 (.582)\"", "question": "Which Neck has a Bullet of 10.566 (.416), and a Base of 14.78 (.582)?", "context": "CREATE TABLE table_name_48 (neck VARCHAR, bullet VARCHAR, base VARCHAR)"}, {"answer": "SELECT case_length FROM table_name_57 WHERE base = \"14.96 (.589)\"", "question": "Which Case Length has a Base of 14.96 (.589)?", "context": "CREATE TABLE table_name_57 (case_length VARCHAR, base VARCHAR)"}, {"answer": "SELECT case_length FROM table_name_9 WHERE name = \".416 barrett\"", "question": "A .416 barrett has which Case Length?", "context": "CREATE TABLE table_name_9 (case_length VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_16 WHERE case_length = \"73.99 (2.913)\"", "question": "Which Name has a Case Length of 73.99 (2.913)?", "context": "CREATE TABLE table_name_16 (name VARCHAR, case_length VARCHAR)"}, {"answer": "SELECT base FROM table_name_2 WHERE name = \".44 wcf\"", "question": "Which Base has a Name of .44 wcf?", "context": "CREATE TABLE table_name_2 (base VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_86 WHERE bullet = \"10.57 (.416)\" AND base = \"14.96 (.589)\"", "question": "Which Name has a Bullett of 10.57 (.416) and a Base of 14.96 (.589)?", "context": "CREATE TABLE table_name_86 (name VARCHAR, bullet VARCHAR, base VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_24 WHERE home_team = \"richmond\"", "question": "When Richmond was the home team, what was the home team score?", "context": "CREATE TABLE table_name_24 (home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_50 WHERE venue = \"windy hill\"", "question": "What was the highest crowd size at Windy Hill?", "context": "CREATE TABLE table_name_50 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_97 WHERE away_team = \"geelong\"", "question": "When the away team was Geelong, what was the home team score?", "context": "CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE home_team = \"richmond\"", "question": "When did the home team of Richmond play?", "context": "CREATE TABLE table_name_89 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT gold FROM table_name_7 WHERE total > 12 AND nation = \"canada\"", "question": "How many golds for Canada (12 total)?", "context": "CREATE TABLE table_name_7 (gold VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE week > 7 AND attenmdance = \"28,161\"", "question": "What was the team's record after week 7 with 28,161 attending?", "context": "CREATE TABLE table_name_58 (record VARCHAR, week VARCHAR, attenmdance VARCHAR)"}, {"answer": "SELECT attenmdance FROM table_name_8 WHERE stadium = \"war memorial stadium\"", "question": "What was the attendance at war memorial stadium?", "context": "CREATE TABLE table_name_8 (attenmdance VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_62 WHERE gold = 20", "question": "How many silver medals did the country that won 20 gold medals win in the 1955 Pan American Games?", "context": "CREATE TABLE table_name_62 (silver INTEGER, gold VARCHAR)"}, {"answer": "SELECT team FROM table_name_75 WHERE laps = 159 AND time_retired = \"6:30:02.3733\"", "question": "What team had 159 laps and a Time/Retired of 6:30:02.3733?", "context": "CREATE TABLE table_name_75 (team VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT name FROM table_name_14 WHERE laps < 159 AND time_retired = \"4:00:30.7537 (retired - fire)\"", "question": "What team had less than 159 laps and a time or retired time of 4:00:30.7537 (retired - fire)?", "context": "CREATE TABLE table_name_14 (name VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT result FROM table_name_7 WHERE opponent = \"san francisco 49ers\"", "question": "What was the score of the Browns game against the San Francisco 49ers?", "context": "CREATE TABLE table_name_7 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE surface = \"clay\" AND opponent = \"hans podlipnik\" AND outcome = \"runner-up\"", "question": "What was the final score for Aguilar when he played Hans Podlipnik on clay and was runner-up?", "context": "CREATE TABLE table_name_47 (score VARCHAR, outcome VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_12 WHERE position = \"defensive tackle\" AND overall < 282", "question": "What round is highest and has a defensive tackle position and overall lower than 282?", "context": "CREATE TABLE table_name_12 (round INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT position FROM table_name_82 WHERE round > 15 AND overall = 411", "question": "What position is the round higher than 15 and has an overall of 411.", "context": "CREATE TABLE table_name_82 (position VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_72 WHERE venue = \"glenferrie oval\"", "question": "What is the name of the away team with glenferrie oval venue?", "context": "CREATE TABLE table_name_72 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_11 WHERE city = \"penrith\"", "question": "What stadium is in penrith?", "context": "CREATE TABLE table_name_11 (stadium VARCHAR, city VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE stadium = \"central park\"", "question": "What day did they play in central park stadium?", "context": "CREATE TABLE table_name_50 (date VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_61 WHERE away_team = \"footscray\"", "question": "What is the lowest attendance when footscray is the away team?", "context": "CREATE TABLE table_name_61 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_25 WHERE home_team = \"essendon\"", "question": "What venue featured essendon as home team?", "context": "CREATE TABLE table_name_25 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_45 WHERE venue = \"princes park\"", "question": "What is the sum of crowd(s) at princes park?", "context": "CREATE TABLE table_name_45 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_53 WHERE home_team = \"south melbourne\"", "question": "What is the away team that features a home team of south melbourne?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_91 WHERE home_team = \"collingwood\"", "question": "What is the smallest crowd when collingwood is home team?", "context": "CREATE TABLE table_name_91 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_65 WHERE overall > 186 AND position = \"defensive end\"", "question": "During which round was the first defensive end with an overall rank larger than 186 drafted?", "context": "CREATE TABLE table_name_65 (round INTEGER, overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_58 WHERE points = 23 AND played > 22", "question": "What is the highest number of losses with 23 points and 22 plays?", "context": "CREATE TABLE table_name_58 (lost INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(goals_for) FROM table_name_6 WHERE drawn < 4 AND team = \"al wahda\" AND played > 22", "question": "What is the sum of goals scored for the Al Wahda team with less than 4 drawn and more than 22 plays?", "context": "CREATE TABLE table_name_6 (goals_for INTEGER, played VARCHAR, drawn VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(goals_against) FROM table_name_85 WHERE lost > 7 AND goals_for < 27 AND drawn > 1", "question": "How many goals scored against the opposing team occurred with more than 7 losses, less than 27 goals scored for the team and drawn more than 1?", "context": "CREATE TABLE table_name_85 (goals_against VARCHAR, drawn VARCHAR, lost VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_91 WHERE drawn > 4 AND goals_for = 37 AND points > 30", "question": "What is the highest number of plays when drawn is more than 4, more than 30 points were earned, and 37 goals scored for the team?", "context": "CREATE TABLE table_name_91 (played INTEGER, points VARCHAR, drawn VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_62 WHERE away_team = \"geelong\"", "question": "What was Geelong's score when they were the away team?", "context": "CREATE TABLE table_name_62 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_62 WHERE away_team = \"richmond\"", "question": "What was the score of Richmond when they were the away team?", "context": "CREATE TABLE table_name_62 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_80 WHERE venue = \"brunswick street oval\"", "question": "What is the away team's score at brunswick street oval?", "context": "CREATE TABLE table_name_80 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_10 WHERE venue = \"punt road oval\"", "question": "What is the smallest crowd at punt road oval?", "context": "CREATE TABLE table_name_10 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_41 WHERE seat_factor = \"68%\" AND flying_hours > 105 OFFSET 579", "question": "What was the earliest year that had more than 105,579 flying hours and a seat factor of 68%?", "context": "CREATE TABLE table_name_41 (year INTEGER, seat_factor VARCHAR, flying_hours VARCHAR)"}, {"answer": "SELECT player FROM table_name_98 WHERE club = \"balmain tigers\"", "question": "What player played for the Balmain Tigers?", "context": "CREATE TABLE table_name_98 (player VARCHAR, club VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_96 WHERE player = \"darren lockyer\" AND position = \"five-eighth\"", "question": "What was the nationality of five-eighth player Darren Lockyer?", "context": "CREATE TABLE table_name_96 (nationality VARCHAR, player VARCHAR, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_21 WHERE player = \"greg inglis\"", "question": "What nationality did Greg Inglis hold?", "context": "CREATE TABLE table_name_21 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT location FROM table_name_40 WHERE year = 1998", "question": "Where was the match played in 1998?", "context": "CREATE TABLE table_name_40 (location VARCHAR, year VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_62 WHERE home_team = \"footscray\"", "question": "What was Footscray's Home team score?", "context": "CREATE TABLE table_name_62 (home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_54 WHERE home_team = \"collingwood\"", "question": "Who faced Collingwood as an away team?", "context": "CREATE TABLE table_name_54 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_94 WHERE goal_difference = 8", "question": "How many total points belong to the team with a goal difference of 8?", "context": "CREATE TABLE table_name_94 (points INTEGER, goal_difference VARCHAR)"}, {"answer": "SELECT k_league_classic FROM table_name_3 WHERE teams < 10", "question": "What K League classic had less than 10 teams?", "context": "CREATE TABLE table_name_3 (k_league_classic VARCHAR, teams INTEGER)"}, {"answer": "SELECT SUM(teams) FROM table_name_48 WHERE season < 2008 AND k_league_classic = \"runners-up\" AND manager = \"kim ho\"", "question": "How many teams played before 2008, had a K League Classic of runners-up, and a Manager of kim ho?", "context": "CREATE TABLE table_name_48 (teams INTEGER, manager VARCHAR, season VARCHAR, k_league_classic VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_8 WHERE venue = \"junction oval\"", "question": "What was the score of the away team at Junction Oval venue?", "context": "CREATE TABLE table_name_8 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_52 WHERE home_team = \"collingwood\"", "question": "When Collingwood was the home team who was the opposing away team?", "context": "CREATE TABLE table_name_52 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_35 WHERE venue = \"junction oval\"", "question": "What is the team score of the away team at Junction Oval?", "context": "CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_93 WHERE venue = \"lake oval\"", "question": "What team is from Lake Oval?", "context": "CREATE TABLE table_name_93 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_81 WHERE winner = \"ilhwa chunma\"", "question": "Who is the runner-up for Ilhwa Chunma?", "context": "CREATE TABLE table_name_81 (runner_up VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_45 WHERE away_team = \"collingwood\"", "question": "What was the attendance when Collingwood was the away team?", "context": "CREATE TABLE table_name_45 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_92 WHERE away_team = \"hawthorn\"", "question": "What was the attendance of the Hawthorn as the away team?", "context": "CREATE TABLE table_name_92 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_43 WHERE home_team = \"richmond\"", "question": "Where did Richmond play as the home team?", "context": "CREATE TABLE table_name_43 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_25 WHERE away_team = \"carlton\"", "question": "What is the home team score for the game with the away team Carlton?", "context": "CREATE TABLE table_name_25 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_72 WHERE venue = \"windy hill\"", "question": "What is the away team for the game at Windy Hill?", "context": "CREATE TABLE table_name_72 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_11 WHERE date = \"10/08/86\"", "question": "For the race held on 10/08/86, what was the circuit?", "context": "CREATE TABLE table_name_11 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_41 WHERE winning_team = \"cabin racing\"", "question": "What circuit saw Cabin Racing as the winning team?", "context": "CREATE TABLE table_name_41 (circuit VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_84 WHERE winning_car = \"march - honda 86j\" AND winning_team = \"team nova\"", "question": "Who was the winning driver driving the winning car March - Honda 86j, with the winning team Team Nova?", "context": "CREATE TABLE table_name_84 (winning_driver VARCHAR, winning_car VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT name FROM table_name_84 WHERE lane = 5", "question": "Who was in Lane 5?", "context": "CREATE TABLE table_name_84 (name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT time FROM table_name_86 WHERE name = \"arkady vyatchanin\"", "question": "What was Arkady Vyatchanin's time?", "context": "CREATE TABLE table_name_86 (time VARCHAR, name VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_28 WHERE home_team = \"north melbourne\"", "question": "What is the away team's score when north melbourne is the home team?", "context": "CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_8 WHERE away_team = \"fitzroy\"", "question": "What is the smallest crowd with fitzroy as the home team?", "context": "CREATE TABLE table_name_8 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_36 WHERE round > 8 AND position = \"linebacker\"", "question": "What school did the linebacker who was drafted after round 8 come from?", "context": "CREATE TABLE table_name_36 (school_club_team VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT pens FROM table_name_80 WHERE player = \"siaosi atiola\"", "question": "How many pens does Siaosi Atiola have?", "context": "CREATE TABLE table_name_80 (pens VARCHAR, player VARCHAR)"}, {"answer": "SELECT pens FROM table_name_17 WHERE draw = \"0\" AND player = \"sione mafi pahulu\"", "question": "What pens have a draw of 0 when the player is sione mafi pahulu?", "context": "CREATE TABLE table_name_17 (pens VARCHAR, draw VARCHAR, player VARCHAR)"}, {"answer": "SELECT lost FROM table_name_63 WHERE conv = \"0\" AND span = \"2006-\"", "question": "What is the lost for span 2006- when conv is 0?", "context": "CREATE TABLE table_name_63 (lost VARCHAR, conv VARCHAR, span VARCHAR)"}, {"answer": "SELECT tries FROM table_name_83 WHERE player = \"fakahau valu\"", "question": "How many tries does Fakahau Valu have?", "context": "CREATE TABLE table_name_83 (tries VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_62 WHERE pick > 101 AND position = \"punter\"", "question": "What school did the punter picked after 101 attend?", "context": "CREATE TABLE table_name_62 (college VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_51 WHERE pick = 176", "question": "What player was picked 176?", "context": "CREATE TABLE table_name_51 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_52 WHERE pick = 252", "question": "What player was drafted 252?", "context": "CREATE TABLE table_name_52 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT venue FROM table_name_26 WHERE away_team = \"collingwood\"", "question": "What is the venue where Collingwood played as the away team?", "context": "CREATE TABLE table_name_26 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE away_team = \"south melbourne\"", "question": "What is the date of the game where South Melbourne was the away team?", "context": "CREATE TABLE table_name_58 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_96 WHERE race_number < 8 AND country = \"nl\"", "question": "What is the average number of laps when the country was NL and the race number was smaller than 8?", "context": "CREATE TABLE table_name_96 (laps INTEGER, race_number VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(edges_e) FROM table_name_32 WHERE vertices_v > 20", "question": "What is the total number of E edges of the polyhedra with vertices V greater than 20?", "context": "CREATE TABLE table_name_32 (edges_e VARCHAR, vertices_v INTEGER)"}, {"answer": "SELECT points FROM table_name_71 WHERE club = \"seven sisters rfc\"", "question": "What are the points for the Seven Sisters RFC club?", "context": "CREATE TABLE table_name_71 (points VARCHAR, club VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_87 WHERE lost = \"7\"", "question": "How many tries were for the 7 lost?", "context": "CREATE TABLE table_name_87 (tries_for VARCHAR, lost VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_73 WHERE losing_bonus = \"5\" AND club = \"maesteg celtic rfc\"", "question": "How many tries had a losing bonus of 5, and were part of the Maesteg Celtic RFC club?", "context": "CREATE TABLE table_name_73 (tries_for VARCHAR, losing_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT lost FROM table_name_59 WHERE points_against = \"383\"", "question": "What was lost against 383 points?", "context": "CREATE TABLE table_name_59 (lost VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT rank FROM table_name_39 WHERE notes = \"cancelled\" AND name = \"daewoo business center\"", "question": "What's the rank for Daewoo Business Center when the notes are cancelled?", "context": "CREATE TABLE table_name_39 (rank VARCHAR, notes VARCHAR, name VARCHAR)"}, {"answer": "SELECT floors FROM table_name_58 WHERE height_m___feet = \"900 / 2,952\"", "question": "How many floors have a Height m / feet of 900 / 2,952?", "context": "CREATE TABLE table_name_58 (floors VARCHAR, height_m___feet VARCHAR)"}, {"answer": "SELECT height_m___feet FROM table_name_97 WHERE name = \"shanghai x-1 financial building\"", "question": "What is the height for shanghai x-1 financial building?", "context": "CREATE TABLE table_name_97 (height_m___feet VARCHAR, name VARCHAR)"}, {"answer": "SELECT rank FROM table_name_75 WHERE floors = \"96\"", "question": "What is the rank for the 96 floors?", "context": "CREATE TABLE table_name_75 (rank VARCHAR, floors VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE circuit = \"sandown raceway\"", "question": "On what Date is the Circuit at Sandown Raceway?", "context": "CREATE TABLE table_name_37 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_85 WHERE race_title = \"oran park\"", "question": "What is the City/State of the Oran Park race?", "context": "CREATE TABLE table_name_85 (city___state VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_12 WHERE winner = \"john bowe\" AND circuit = \"phillip island grand prix circuit\"", "question": "In what City/State did John Bowe win at Phillip Island Grand Prix Circuit?", "context": "CREATE TABLE table_name_12 (city___state VARCHAR, winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT seasons FROM table_name_45 WHERE percentage = \"13.56%\"", "question": "Which season has a percentage of 13.56%?", "context": "CREATE TABLE table_name_45 (seasons VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT SUM(poles) FROM table_name_57 WHERE percentage = \"22.08%\"", "question": "How many poles has a percentage of 22.08%?", "context": "CREATE TABLE table_name_57 (poles INTEGER, percentage VARCHAR)"}, {"answer": "SELECT SUM(poles) FROM table_name_83 WHERE driver = \"nelson piquet\"", "question": "How many poles does driver Nelson Piquet have?", "context": "CREATE TABLE table_name_83 (poles INTEGER, driver VARCHAR)"}, {"answer": "SELECT COUNT(loss) FROM table_name_87 WHERE avg_g > 129.2", "question": "How much Loss has an Avg/G larger than 129.2?", "context": "CREATE TABLE table_name_87 (loss VARCHAR, avg_g INTEGER)"}, {"answer": "SELECT MIN(loss) FROM table_name_83 WHERE avg_g = 3.5 AND gain < 42", "question": "Which Loss is the lowest one that has an Avg/G of 3.5, and a Gain smaller than 42?", "context": "CREATE TABLE table_name_83 (loss INTEGER, avg_g VARCHAR, gain VARCHAR)"}, {"answer": "SELECT COUNT(avg_g) FROM table_name_41 WHERE loss > 117 AND name = \"opponents\" AND gain < 2444", "question": "How much Avg/G has a Loss larger than 117, and a Name of opponents, and a Gain smaller than 2444?", "context": "CREATE TABLE table_name_41 (avg_g VARCHAR, gain VARCHAR, loss VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(avg_g) FROM table_name_51 WHERE long = 51 AND loss = 333 AND gain > 2013", "question": "How much Avg/G has a Long of 51, and a Loss of 333, and a Gain larger than 2013?", "context": "CREATE TABLE table_name_51 (avg_g VARCHAR, gain VARCHAR, long VARCHAR, loss VARCHAR)"}, {"answer": "SELECT SUM(avg_g) FROM table_name_32 WHERE name = \"robert marve\" AND gain < 236", "question": "How much Avg/G has a Name of robert marve, and a Gain smaller than 236?", "context": "CREATE TABLE table_name_32 (avg_g INTEGER, name VARCHAR, gain VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE opponent = \"saint-amant\" AND result = \"lost\"", "question": "What is the score where Saint-Amant lost the match?", "context": "CREATE TABLE table_name_42 (score VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT location FROM table_name_98 WHERE odds = \"p + 1\" AND score = \"1/3\"", "question": "Where was the match located when the odds were p + 1 and the score was 1/3?", "context": "CREATE TABLE table_name_98 (location VARCHAR, odds VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_61 WHERE location = \"n/a\" AND odds = \"p + 1\"", "question": "What was the score for an n/a location with the odds of p + 1?", "context": "CREATE TABLE table_name_61 (result VARCHAR, location VARCHAR, odds VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE odds = \"p + 2\" AND date > 1847", "question": "What was the score for a game with the odds of p + 2 after 1847?", "context": "CREATE TABLE table_name_36 (score VARCHAR, odds VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(date) FROM table_name_33 WHERE odds = \"q rook\"", "question": "What was the date of a game that had the odds of q rook?", "context": "CREATE TABLE table_name_33 (date INTEGER, odds VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_33 WHERE round = \"7\"", "question": "What is the nationality of the player in round 7?", "context": "CREATE TABLE table_name_33 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_38 WHERE nationality = \"united states\" AND college_junior_club_team__league_ = \"bowling green falcons (ccha)\"", "question": "Which player is from the United States, and played for the Bowling Green Falcons (CCHA) as their College/Junior/Club Team (League)?", "context": "CREATE TABLE table_name_38 (player VARCHAR, nationality VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_98 WHERE round = \"6\"", "question": "Which College/Junior/Club Team (League) did the player in round 6 play for?", "context": "CREATE TABLE table_name_98 (college_junior_club_team__league_ VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_34 WHERE player = \"jamie cooke\"", "question": "What round did Jamie Cooke play in?", "context": "CREATE TABLE table_name_34 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_14 WHERE extra_points = 0 AND player = \"white\"", "question": "What are the average points White made with 0 extra points?", "context": "CREATE TABLE table_name_14 (points INTEGER, extra_points VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_45 WHERE player = \"sweeley\" AND field_goals < 0", "question": "How many points does Sweeley have, with less than 0 Field goals?", "context": "CREATE TABLE table_name_45 (points INTEGER, player VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT MAX(touchdowns) FROM table_name_71 WHERE field_goals > 0", "question": "Who had the most touchdowns with more than 0 Field goals?", "context": "CREATE TABLE table_name_71 (touchdowns INTEGER, field_goals INTEGER)"}, {"answer": "SELECT date FROM table_name_72 WHERE home = \"los angeles kings\"", "question": "When was the game at the home of the Los Angeles Kings?", "context": "CREATE TABLE table_name_72 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE visitor = \"los angeles kings\" AND date = \"april 22\"", "question": "On April 22 when the Los Angeles Kings where visitors what was the record?", "context": "CREATE TABLE table_name_59 (record VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_33 WHERE round = 1", "question": "Tell me the name for round of 1", "context": "CREATE TABLE table_name_33 (name VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_92 WHERE round < 1", "question": "Name the sum of pick # for round less than 1", "context": "CREATE TABLE table_name_92 (pick__number INTEGER, round INTEGER)"}, {"answer": "SELECT COUNT(overall) FROM table_name_5 WHERE name = \"brent hawkins\" AND pick__number > 28", "question": "Name the total number of overall for brent hawkins and pick # more than 28", "context": "CREATE TABLE table_name_5 (overall VARCHAR, name VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_84 WHERE 2013 = \"2r\" AND 2005 = \"1r\" AND 2008 = \"1r\"", "question": "What is the value in 2012 if it is 2R in 2013, 1R in 2005, and 1R in 2008?", "context": "CREATE TABLE table_name_84 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_37 WHERE 2012 = \"grand slam tournaments\"", "question": "What is the value in 2006 when it is Grand Slam Tournaments in 2012?", "context": "CREATE TABLE table_name_37 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_54 WHERE 2008 = \"2r\"", "question": "Which tournament has a value of 2R in 2008?", "context": "CREATE TABLE table_name_54 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_77 WHERE 2009 = \"1r\" AND 2006 = \"3r\"", "question": "What is the value in 2008 when 1R is 2009 and 3R?", "context": "CREATE TABLE table_name_77 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_91 WHERE 2007 = \"1r\" AND 2009 = \"1r\"", "question": "Which tournament has a 1R value in 2007 and 2009?", "context": "CREATE TABLE table_name_91 (tournament VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_38 WHERE 2007 = \"1r\" AND 2009 = \"1r\"", "question": "What is the value in 2013 when it is 1R in 2007 and 2009?", "context": "CREATE TABLE table_name_38 (Id VARCHAR)"}, {"answer": "SELECT AVG(michelle) FROM table_name_39 WHERE discipline = \"archery\"", "question": "How did michelle do in archery?", "context": "CREATE TABLE table_name_39 (michelle INTEGER, discipline VARCHAR)"}, {"answer": "SELECT city FROM table_name_77 WHERE name = \"jal hotel\"", "question": "What City is the Jal hotel in?", "context": "CREATE TABLE table_name_77 (city VARCHAR, name VARCHAR)"}, {"answer": "SELECT method FROM table_name_41 WHERE time = \"0:38\"", "question": "How did he win with a time of 0:38?", "context": "CREATE TABLE table_name_41 (method VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_87 WHERE event = \"rumble of the kings 6\"", "question": "Who did he fight in Rumble of the Kings 6?", "context": "CREATE TABLE table_name_87 (opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT time FROM table_name_83 WHERE opponent = \"jaime fletcher\"", "question": "How long was the match with Jaime Fletcher?", "context": "CREATE TABLE table_name_83 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location___state FROM table_name_84 WHERE team = \"glenn seton racing\" AND circuit = \"lakeside international raceway\"", "question": "The team Glenn Seton Racing has a circuit at the lakeside international raceway, what is the location and state?", "context": "CREATE TABLE table_name_84 (location___state VARCHAR, team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT location___state FROM table_name_59 WHERE circuit = \"phillip island grand prix circuit\"", "question": "What location and state has a circuit of Phillip Island Grand Prix Circuit?", "context": "CREATE TABLE table_name_59 (location___state VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT group FROM table_name_12 WHERE race = \"ranvet stakes\"", "question": "with race of ranvet stakes what is the group?", "context": "CREATE TABLE table_name_12 (group VARCHAR, race VARCHAR)"}, {"answer": "SELECT slalom FROM table_name_36 WHERE downhill = \"4\"", "question": "Which Slalom has a Downhill of 4?", "context": "CREATE TABLE table_name_36 (slalom VARCHAR, downhill VARCHAR)"}, {"answer": "SELECT version FROM table_name_29 WHERE remixed_by = \"perky park\" AND length = \"6:38\"", "question": "What Version has a Remixed by Perky Park with a Length of 6:38?", "context": "CREATE TABLE table_name_29 (version VARCHAR, remixed_by VARCHAR, length VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_52 WHERE album = \"remixes\"", "question": "What is the total number of Year that has an Album of Remixes?", "context": "CREATE TABLE table_name_52 (year INTEGER, album VARCHAR)"}, {"answer": "SELECT length FROM table_name_32 WHERE version = \"single version\"", "question": "What is listed for the Lengtht that has a Version of Single Version?", "context": "CREATE TABLE table_name_32 (length VARCHAR, version VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_62 WHERE week = 11", "question": "what is the sum of attendance of week 11", "context": "CREATE TABLE table_name_62 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_27 WHERE results\u00b9 = \"0:1\"", "question": "Which opponent had a result of 0:1?", "context": "CREATE TABLE table_name_27 (opponent VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE city = \"zagreb\"", "question": "When was the game played in Zagreb?", "context": "CREATE TABLE table_name_79 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_99 WHERE type_of_game = \"1990 wcq\" AND results\u00b9 = \"0:0\"", "question": "Which opponent played a 1990 wcq type of game, where the results were 0:0?", "context": "CREATE TABLE table_name_99 (opponent VARCHAR, type_of_game VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE opponent = \"norway\" AND results\u00b9 = \"1:0\"", "question": "When was the game played against Norway with a result of 1:0?", "context": "CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT SUM(events) FROM table_name_97 WHERE rank > 5", "question": "the sum of Events that has a Rank larger than 5 is 3", "context": "CREATE TABLE table_name_97 (events INTEGER, rank INTEGER)"}, {"answer": "SELECT partnered_with FROM table_name_97 WHERE score_in_final = \"4\u20136, 3\u20136\"", "question": "Who was Alicja Rosolska Partnered with when the Score in Final was 4\u20136, 3\u20136?", "context": "CREATE TABLE table_name_97 (partnered_with VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE score_in_final = \"6\u20133, 6\u20133\"", "question": "On what Date was the Score in Final 6\u20133, 6\u20133?", "context": "CREATE TABLE table_name_70 (date VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT opponents_in_final FROM table_name_5 WHERE score_in_final = \"6\u20134, 3\u20136, 5\u20137\"", "question": "What was the Opponents in Final during the match with a Score in Final of 6\u20134, 3\u20136, 5\u20137?", "context": "CREATE TABLE table_name_5 (opponents_in_final VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_34 WHERE location = \"aspen, usa\"", "question": "How many seasons took place in aspen, usa?", "context": "CREATE TABLE table_name_34 (season VARCHAR, location VARCHAR)"}, {"answer": "SELECT place FROM table_name_93 WHERE date = \"12 feb 2012\"", "question": "Which place was earned on 12 feb 2012?", "context": "CREATE TABLE table_name_93 (place VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_69 WHERE date = \"28 dec 2010\"", "question": "Where was the race on 28 dec 2010 held?", "context": "CREATE TABLE table_name_69 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT length_overall FROM table_name_38 WHERE designation = \"s-8ko\"", "question": "What is the overall length with a designation of s-8ko?", "context": "CREATE TABLE table_name_38 (length_overall VARCHAR, designation VARCHAR)"}, {"answer": "SELECT designation FROM table_name_37 WHERE launch_weight = \"11.3kg\"", "question": "What designation has a launch weight of 11.3kg?", "context": "CREATE TABLE table_name_37 (designation VARCHAR, launch_weight VARCHAR)"}, {"answer": "SELECT type FROM table_name_92 WHERE length_overall = \"1.605 m\"", "question": "What type has an overall length of 1.605 m?", "context": "CREATE TABLE table_name_92 (type VARCHAR, length_overall VARCHAR)"}, {"answer": "SELECT SUM(touchdowns) FROM table_name_81 WHERE field_goals < 0", "question": "How many touchdowns were made where field goals were less than 0?", "context": "CREATE TABLE table_name_81 (touchdowns INTEGER, field_goals INTEGER)"}, {"answer": "SELECT AVG(points) FROM table_name_86 WHERE field_goals = 0 AND touchdowns > 9 AND extra_points = 0 AND player = \"duncan thompson\"", "question": "While Duncan Thompson played, how many points did he have where there were 0 field goals, 0 extra points, and more than 9 touchdowns?", "context": "CREATE TABLE table_name_86 (points INTEGER, player VARCHAR, extra_points VARCHAR, field_goals VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT AVG(field_goals) FROM table_name_87 WHERE points > 50 AND extra_points > 0 AND player = \"herb graver\" AND touchdowns < 15", "question": "When Herb Graver played, how many field goals were made when there were more than 50 points, less than 15 touchdowns, and more than 0 extra points?", "context": "CREATE TABLE table_name_87 (field_goals INTEGER, touchdowns VARCHAR, player VARCHAR, points VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT AVG(field_goals) FROM table_name_79 WHERE touchdowns < 15 AND points < 45", "question": "How many field goals were there, where the points where less than 45 and there were less than 15 touchdowns?", "context": "CREATE TABLE table_name_79 (field_goals INTEGER, touchdowns VARCHAR, points VARCHAR)"}, {"answer": "SELECT position FROM table_name_70 WHERE points = \"test driver\"", "question": "What is the position of the race with a point of test driver?", "context": "CREATE TABLE table_name_70 (position VARCHAR, points VARCHAR)"}, {"answer": "SELECT wins FROM table_name_16 WHERE f_laps = \"0\" AND series = \"formula three euroseries\" AND team = \"kolles & heinz union\"", "question": "How many wins did team Kolles & Heinz union, with f/laps of 0, have in the Formula Three Euroseries?", "context": "CREATE TABLE table_name_16 (wins VARCHAR, team VARCHAR, f_laps VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_name_58 WHERE f_laps = \"4\"", "question": "Which series has 4 f/laps?", "context": "CREATE TABLE table_name_58 (series VARCHAR, f_laps VARCHAR)"}, {"answer": "SELECT wins FROM table_name_82 WHERE podiums = \"0\" AND team = \"team autotecnica\"", "question": "How many wins did Team Autotecnica, with 0 podiums, have?", "context": "CREATE TABLE table_name_82 (wins VARCHAR, podiums VARCHAR, team VARCHAR)"}, {"answer": "SELECT races FROM table_name_99 WHERE points = \"10.5\"", "question": "How many races had 10.5 points?", "context": "CREATE TABLE table_name_99 (races VARCHAR, points VARCHAR)"}, {"answer": "SELECT wins FROM table_name_15 WHERE podiums = \"5\"", "question": "How many wins did the team with 5 podiums have?", "context": "CREATE TABLE table_name_15 (wins VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_26 WHERE player = \"jim thompson\"", "question": "What is recorded as the lowest Round for the Player Jim Thompson?", "context": "CREATE TABLE table_name_26 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_91 WHERE position = \"tackle\" AND player = \"fred neilsen\"", "question": "What is the highest Round that has a Position of Tackle and the Player Fred Neilsen?", "context": "CREATE TABLE table_name_91 (round INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_95 WHERE round = 27", "question": "What Position has a Round of 27?", "context": "CREATE TABLE table_name_95 (position VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_85 WHERE points < 6 AND games > 8", "question": "Name the sum of drawn for points less than 6 and games more than 8", "context": "CREATE TABLE table_name_85 (drawn INTEGER, points VARCHAR, games VARCHAR)"}, {"answer": "SELECT COUNT(displacement__tons_) FROM table_name_52 WHERE armament = \"2 x -inch (mm), 16 x -inch (mm)\"", "question": "How much Displacement (tons) has an Armament of 2 x -inch (mm), 16 x -inch (mm)?", "context": "CREATE TABLE table_name_52 (displacement__tons_ VARCHAR, armament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_3 WHERE round > 1 AND event = \"king of the cage 31\"", "question": "Which Opponent has a Round larger than 1, and an Event of king of the cage 31?", "context": "CREATE TABLE table_name_3 (opponent VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT time FROM table_name_21 WHERE round > 1 AND event = \"total fighting alliance 2\"", "question": "Which Time has a Round larger than 1, and an Event of total fighting alliance 2?", "context": "CREATE TABLE table_name_21 (time VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT res FROM table_name_35 WHERE record = \"3-0\"", "question": "Which res has a Record of 3-0?", "context": "CREATE TABLE table_name_35 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_16 WHERE event = \"king of the cage: flash point\"", "question": "Which Location has an Event of king of the cage: flash point?", "context": "CREATE TABLE table_name_16 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_63 WHERE loss = \"lowe (1-4)\"", "question": "Who were the opposing team when a Loss was listed with Lowe (1-4)?", "context": "CREATE TABLE table_name_63 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT body_styles FROM table_name_4 WHERE model = \"6/75\"", "question": "What body styles have 6/75 as the model?", "context": "CREATE TABLE table_name_4 (body_styles VARCHAR, model VARCHAR)"}, {"answer": "SELECT body_styles FROM table_name_9 WHERE engine = \"devaux-hall inline 6\"", "question": "What body styles have devaux-hall inline 6 as the engine?", "context": "CREATE TABLE table_name_9 (body_styles VARCHAR, engine VARCHAR)"}, {"answer": "SELECT model FROM table_name_50 WHERE make = \"de vaux continental\"", "question": "What model has de vaux continental as the make?", "context": "CREATE TABLE table_name_50 (model VARCHAR, make VARCHAR)"}, {"answer": "SELECT wheelbase FROM table_name_20 WHERE body_styles = \"sport coupe (4p.)\"", "question": "What wheelbase has sport coupe (4p.) as the body style?", "context": "CREATE TABLE table_name_20 (wheelbase VARCHAR, body_styles VARCHAR)"}, {"answer": "SELECT score FROM table_name_89 WHERE home = \"toronto\"", "question": "What was the score when the home team was Toronto?", "context": "CREATE TABLE table_name_89 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_64 WHERE home = \"minnesota\"", "question": "What was the record when Minnesota was the home team?", "context": "CREATE TABLE table_name_64 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT city FROM table_name_49 WHERE year < 1907 AND venue = \"old trafford\" AND opposition = \"sussex\"", "question": "Which city held the game in Old Trafford before 1907 when the Opposition was sussex?", "context": "CREATE TABLE table_name_49 (city VARCHAR, opposition VARCHAR, year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE opposition = \"sussex\" AND year > 1890", "question": "What was the score when the opposition was sussex after 1890?", "context": "CREATE TABLE table_name_49 (score VARCHAR, opposition VARCHAR, year VARCHAR)"}, {"answer": "SELECT city FROM table_name_76 WHERE year > 1907 AND score > 20 AND venue = \"aigburth\"", "question": "What city had a score of 20 in aigburth after 1907?", "context": "CREATE TABLE table_name_76 (city VARCHAR, venue VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(score) FROM table_name_96 WHERE opposition = \"sussex\" AND city = \"liverpool\"", "question": "What was the score when the opposition was sussex in liverpool?", "context": "CREATE TABLE table_name_96 (score INTEGER, opposition VARCHAR, city VARCHAR)"}, {"answer": "SELECT producer FROM table_name_57 WHERE director = \"erik matti\"", "question": "What is Director Erik Matti's Producer?", "context": "CREATE TABLE table_name_57 (producer VARCHAR, director VARCHAR)"}, {"answer": "SELECT producer FROM table_name_32 WHERE director = \"bona fajardo\"", "question": "What is Director Bona Fajardo's Producer?", "context": "CREATE TABLE table_name_32 (producer VARCHAR, director VARCHAR)"}, {"answer": "SELECT producer FROM table_name_77 WHERE year = \"december 25, 2006\"", "question": "What is the Producer on December 25, 2006?", "context": "CREATE TABLE table_name_77 (producer VARCHAR, year VARCHAR)"}, {"answer": "SELECT title FROM table_name_79 WHERE role = \"mylene\"", "question": "What Title has a Role of Mylene?", "context": "CREATE TABLE table_name_79 (title VARCHAR, role VARCHAR)"}, {"answer": "SELECT year FROM table_name_55 WHERE role = \"(cameo)\"", "question": "In what Year is there a Role of (cameo)?", "context": "CREATE TABLE table_name_55 (year VARCHAR, role VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE result = \"106-105\"", "question": "On what date was the result 106-105?", "context": "CREATE TABLE table_name_57 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE home_team = \"portland\" AND date = \"june 12\"", "question": "What was the result for Portland at home on June 12?", "context": "CREATE TABLE table_name_26 (result VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_32 WHERE result = \"105-99\"", "question": "Who was the home team with a result of 105-99?", "context": "CREATE TABLE table_name_32 (home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE game = \"game 1\"", "question": "On what date was Game 1?", "context": "CREATE TABLE table_name_54 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE game = \"game 3\"", "question": "On what date was Game 3?", "context": "CREATE TABLE table_name_2 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE road_team = \"portland\" AND game = \"game 2\"", "question": "On what date was Portland on the road for Game 2?", "context": "CREATE TABLE table_name_95 (date VARCHAR, road_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_27 WHERE against > 14 AND lost = 3", "question": "What was the highest number of games played when they had over 14 against and 3 losses?", "context": "CREATE TABLE table_name_27 (played INTEGER, against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_90 WHERE team = \"corinthians\" AND against > 14", "question": "What was the position for team corinthians with over 14 against?", "context": "CREATE TABLE table_name_90 (position INTEGER, team VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_19 WHERE against < 15 AND team = \"bangu\" AND points > 9", "question": "How many games played for team bangu with under 15 against, and over 9 points?", "context": "CREATE TABLE table_name_19 (played INTEGER, points VARCHAR, against VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE opponent = \"northern ireland\"", "question": "When is Northern Ireland the opponent?", "context": "CREATE TABLE table_name_55 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT length FROM table_name_27 WHERE class = \"gts-2\" AND date = \"october 8\"", "question": "Name the length for class of gts-2 and date of october 8", "context": "CREATE TABLE table_name_27 (length VARCHAR, class VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_78 WHERE class = \"gts\"", "question": "Name the circuit with class of gts", "context": "CREATE TABLE table_name_78 (circuit VARCHAR, class VARCHAR)"}, {"answer": "SELECT length FROM table_name_63 WHERE class = \"all\" AND date = \"march 18\"", "question": "Name the length for all class and date of march 18", "context": "CREATE TABLE table_name_63 (length VARCHAR, class VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_55 WHERE team = \"chicago\"", "question": "How many Games has a Team of chicago?", "context": "CREATE TABLE table_name_55 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_55 WHERE high_rebounds = \"charles oakley , kevin willis (11)\"", "question": "What is the High points of charles oakley , kevin willis (11)?", "context": "CREATE TABLE table_name_55 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT game FROM table_name_40 WHERE score = \"w 90\u201382 (ot)\"", "question": "Which Game has a Score of w 90\u201382 (ot)?", "context": "CREATE TABLE table_name_40 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_43 WHERE team = \"washington\"", "question": "What is the High rebounds of washington Team?", "context": "CREATE TABLE table_name_43 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_52 WHERE date = \"february 28\"", "question": "What is the sum of Game on february 28?", "context": "CREATE TABLE table_name_52 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_71 WHERE wins > 2", "question": "Which Country has a number of Wins larger than 2?", "context": "CREATE TABLE table_name_71 (country VARCHAR, wins INTEGER)"}, {"answer": "SELECT ranking FROM table_name_95 WHERE nationality = \"spain\" AND goals = 26", "question": "What ranking has the nationality of spain and the goals of 26?", "context": "CREATE TABLE table_name_95 (ranking VARCHAR, nationality VARCHAR, goals VARCHAR)"}, {"answer": "SELECT name FROM table_name_18 WHERE goals = 25", "question": "What name is the goals of 25?", "context": "CREATE TABLE table_name_18 (name VARCHAR, goals VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_59 WHERE time = \"+37.949\"", "question": "what's the grid with time +37.949?", "context": "CREATE TABLE table_name_59 (grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT driver FROM table_name_80 WHERE grid = 12", "question": "what driver has 12 in grid?", "context": "CREATE TABLE table_name_80 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_59 WHERE team = \"new zealand\"", "question": "what is the highest grid for new zealand?", "context": "CREATE TABLE table_name_59 (grid INTEGER, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_92 WHERE time = \"+1'25.337\"", "question": "what team has +1'25.337 for the time?", "context": "CREATE TABLE table_name_92 (team VARCHAR, time VARCHAR)"}, {"answer": "SELECT result FROM table_name_15 WHERE arena = \"a\" AND league = \"sl\" AND match > 16", "question": "What was the result at A Arena, the SL league, and a match number over 16?", "context": "CREATE TABLE table_name_15 (result VARCHAR, match VARCHAR, arena VARCHAR, league VARCHAR)"}, {"answer": "SELECT game FROM table_name_44 WHERE opponent = \"@ atlanta flames\"", "question": "Opponent of @ atlanta flames had what game?", "context": "CREATE TABLE table_name_44 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_81 WHERE record = \"3-3-1\"", "question": "Record of 3-3-1 had what lowest game?", "context": "CREATE TABLE table_name_81 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE save = \"aguilera (5)\"", "question": "What was the date when the game had a save by Aguilera (5)?", "context": "CREATE TABLE table_name_65 (date VARCHAR, save VARCHAR)"}, {"answer": "SELECT save FROM table_name_96 WHERE loss = \"sanderson (6-5)\"", "question": "What was the Save in the game that has a Loss of sanderson (6-5)?", "context": "CREATE TABLE table_name_96 (save VARCHAR, loss VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_77 WHERE rank = 3", "question": "Which Wins have a Rank of 3?", "context": "CREATE TABLE table_name_77 (wins INTEGER, rank VARCHAR)"}, {"answer": "SELECT AVG(events) FROM table_name_60 WHERE player = \"tom kite\" AND earnings___$__ < 760 OFFSET 405", "question": "Which Events have a Player of tom kite, and Earnings ($) smaller than 760,405?", "context": "CREATE TABLE table_name_60 (events INTEGER, player VARCHAR, earnings___$__ VARCHAR)"}, {"answer": "SELECT events FROM table_name_7 WHERE rank = 1", "question": "Which events have a Rank of 1?", "context": "CREATE TABLE table_name_7 (events VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_12 WHERE player = \"willie heston\" AND touchdowns < 3", "question": "What is the fewest Points that has Willie Heston as Player and less than 3 as Touchdowns?", "context": "CREATE TABLE table_name_12 (points INTEGER, player VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT departure FROM table_name_66 WHERE station_name = \"rajendranagar terminal\"", "question": "What is the Departure time at Rajendranagar Terminal?", "context": "CREATE TABLE table_name_66 (departure VARCHAR, station_name VARCHAR)"}, {"answer": "SELECT station_code FROM table_name_37 WHERE departure = \"destination station\"", "question": "What is the Station Code of the Destination Station Departure?", "context": "CREATE TABLE table_name_37 (station_code VARCHAR, departure VARCHAR)"}, {"answer": "SELECT platform FROM table_name_26 WHERE departure = \"18:00\"", "question": "At what Platform is the Departure 18:00?", "context": "CREATE TABLE table_name_26 (platform VARCHAR, departure VARCHAR)"}, {"answer": "SELECT station_name FROM table_name_63 WHERE arrival = \"starting station\"", "question": "What is the Station Name of the Arrival Starting Station?", "context": "CREATE TABLE table_name_63 (station_name VARCHAR, arrival VARCHAR)"}, {"answer": "SELECT arrival FROM table_name_62 WHERE station_name = \"patna junction\"", "question": "What is the Arrival time of the Patna Junction Station?", "context": "CREATE TABLE table_name_62 (arrival VARCHAR, station_name VARCHAR)"}, {"answer": "SELECT station_name FROM table_name_97 WHERE arrival = \"01:10\"", "question": "What Station Name has an Arrival time of 01:10?", "context": "CREATE TABLE table_name_97 (station_name VARCHAR, arrival VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE opponent = \"new jersey nets\"", "question": "What was the score for the game against the New Jersey Nets?", "context": "CREATE TABLE table_name_14 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE opponent = \"milwaukee bucks\"", "question": "On which date was the game played against the Milwaukee Bucks?", "context": "CREATE TABLE table_name_36 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_13 WHERE opponent = \"luxembourg\"", "question": "What was the result of the game against Luxembourg?", "context": "CREATE TABLE table_name_13 (results\u00b9 VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE city = \"novi sad\"", "question": "When did the city of Novi Sad participate?", "context": "CREATE TABLE table_name_14 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_97 WHERE opponent = \"luxembourg\"", "question": "What was the result of the game against Luxembourg?", "context": "CREATE TABLE table_name_97 (results\u00b9 VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_24 WHERE game_site = \"memorial stadium\" AND week = 15", "question": "What was the result for the game at Memorial Stadium in week 15?", "context": "CREATE TABLE table_name_24 (result VARCHAR, game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT series FROM table_name_99 WHERE score = \"0\u20136\"", "question": "Which Series has a Score of 0\u20136?", "context": "CREATE TABLE table_name_99 (series VARCHAR, score VARCHAR)"}, {"answer": "SELECT series FROM table_name_39 WHERE game > 1 AND date = \"april 18\"", "question": "Which Series has a Game larger than 1, and a Date of april 18?", "context": "CREATE TABLE table_name_39 (series VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_name_59 WHERE opponent = \"new york rangers\" AND score = \"3\u20132 ot\"", "question": "Which Series has an Opponent of new york rangers, and a Score of 3\u20132 ot?", "context": "CREATE TABLE table_name_59 (series VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT series FROM table_name_70 WHERE opponent = \"@ new york rangers\" AND date = \"april 22\"", "question": "Which Series has an Opponent of @ new york rangers, and a Date of april 22?", "context": "CREATE TABLE table_name_70 (series VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_99 WHERE lost < 3 AND difference = \"6\" AND points > 6", "question": "How many Played have a Lost smaller than 3, and a Difference of 6, and Points larger than 6?", "context": "CREATE TABLE table_name_99 (played VARCHAR, points VARCHAR, lost VARCHAR, difference VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_36 WHERE drawn < 0", "question": "How many Points have a Drawn smaller than 0?", "context": "CREATE TABLE table_name_36 (points VARCHAR, drawn INTEGER)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_38 WHERE against < 5 AND played < 3", "question": "How many Drawn have an Against smaller than 5, and a Played smaller than 3?", "context": "CREATE TABLE table_name_38 (drawn VARCHAR, against VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_35 WHERE against = 5 AND drawn > 0", "question": "Which Position has an Against of 5, and a Drawn larger than 0?", "context": "CREATE TABLE table_name_35 (position INTEGER, against VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_66 WHERE lost < 1 AND difference = \"6\" AND against > 2", "question": "Which Played is the highest one that has a Lost smaller than 1, and a Difference of 6, and an Against larger than 2?", "context": "CREATE TABLE table_name_66 (played INTEGER, against VARCHAR, lost VARCHAR, difference VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_36 WHERE position > 5", "question": "Which Points is the lowest one that has a Position larger than 5?", "context": "CREATE TABLE table_name_36 (points INTEGER, position INTEGER)"}, {"answer": "SELECT lost FROM table_name_56 WHERE \"points\" = \"points\"", "question": "what team lost the most points", "context": "CREATE TABLE table_name_56 (lost VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_6 WHERE score = \"3-2\" AND loss = \"anderson (2-6)\"", "question": "What opponent has 3-2 as the score, and anderson (2-6) as a loss?", "context": "CREATE TABLE table_name_6 (opponent VARCHAR, score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE attendance < 10 OFFSET 553", "question": "What score has an attendance less than 10,553?", "context": "CREATE TABLE table_name_62 (score VARCHAR, attendance INTEGER)"}, {"answer": "SELECT MAX(episode) FROM table_name_65 WHERE segment_c = \"wood flutes\"", "question": "What is the highest episode of Wood Flutes segment c?", "context": "CREATE TABLE table_name_65 (episode INTEGER, segment_c VARCHAR)"}, {"answer": "SELECT segment_d FROM table_name_89 WHERE series_ep = \"20-08\"", "question": "What is Segment D of 20-08 series Ep.?", "context": "CREATE TABLE table_name_89 (segment_d VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_97 WHERE team = \"suzuki\" AND points = 4", "question": "What year did they get 4 points with Suzuki?", "context": "CREATE TABLE table_name_97 (year INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_11 WHERE points < 16 AND class = \"500cc\"", "question": "What was the last year that they had less than 16 points in class 500cc?", "context": "CREATE TABLE table_name_11 (year INTEGER, points VARCHAR, class VARCHAR)"}, {"answer": "SELECT party FROM table_name_70 WHERE incumbent = \"w. jasper talbert\"", "question": "Which party had an incumbent of W. Jasper Talbert?", "context": "CREATE TABLE table_name_70 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_42 WHERE record = \"13-18\"", "question": "which team has a record of 13-18?", "context": "CREATE TABLE table_name_42 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_64 WHERE date = \"may 26\"", "question": "What was the record for May 26?", "context": "CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_65 WHERE attendance = \"15,298\"", "question": "What was the loss details for the team with an attendance of 15,298?", "context": "CREATE TABLE table_name_65 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT city FROM table_name_82 WHERE date = \"march 30\"", "question": "What city has march 30 as the date?", "context": "CREATE TABLE table_name_82 (city VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_81 WHERE date = \"april 23\"", "question": "What opponent has april 23 as the date?", "context": "CREATE TABLE table_name_81 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_54 WHERE type_of_game = \"euro '84 qualifying\" AND city = \"split\"", "question": "What opponent has euro '84 qualifying as the type and split as the city?", "context": "CREATE TABLE table_name_54 (opponent VARCHAR, type_of_game VARCHAR, city VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_90 WHERE type_of_game = \"euro '84 qualifying\" AND opponent = \"norway\"", "question": "What results has euro '84 qualifying as the type of game and norway as the opponent?", "context": "CREATE TABLE table_name_90 (results\u00b9 VARCHAR, type_of_game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT type_of_game FROM table_name_91 WHERE results\u00b9 = \"2:1\"", "question": "What game type has 2:1 as the results?", "context": "CREATE TABLE table_name_91 (type_of_game VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE type_of_game = \"friendly\" AND opponent = \"france\" AND city = \"paris, france\"", "question": "What date has friendly as the type of game, france as an opponent, and paris, france as the city?", "context": "CREATE TABLE table_name_92 (date VARCHAR, city VARCHAR, type_of_game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE circuit = \"mosport park\"", "question": "What is the date of the Mosport Park circuit?", "context": "CREATE TABLE table_name_34 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT length FROM table_name_94 WHERE circuit = \"laguna seca raceway\" AND class = \"gtu\"", "question": "What is the length of the Laguna Seca Raceway circuit with a class of gtu?", "context": "CREATE TABLE table_name_94 (length VARCHAR, circuit VARCHAR, class VARCHAR)"}, {"answer": "SELECT class FROM table_name_64 WHERE race = \"charlotte camel gt 500\"", "question": "What is the class of the Charlotte Camel gt 500 race?", "context": "CREATE TABLE table_name_64 (class VARCHAR, race VARCHAR)"}, {"answer": "SELECT length FROM table_name_23 WHERE date = \"august 15\"", "question": "What is the length of the race on August 15?", "context": "CREATE TABLE table_name_23 (length VARCHAR, date VARCHAR)"}, {"answer": "SELECT headquarters FROM table_name_49 WHERE primary_industry = \"oil and gas\" AND name = \"exxon mobil\"", "question": "Where is Exxon Mobil, an oil and gas corporation, headquartered?", "context": "CREATE TABLE table_name_49 (headquarters VARCHAR, primary_industry VARCHAR, name VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_50 WHERE opponent = \"laura gildemeister\"", "question": "In what Tournament was laura Gildemeister the Opponent?", "context": "CREATE TABLE table_name_50 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_55 WHERE date = \"january 11, 1998\"", "question": "Date of january 11, 1998 has what surface?", "context": "CREATE TABLE table_name_55 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_57 WHERE score = \"4\u20136, 6\u20134, 6\u20134\"", "question": "Score of 4\u20136, 6\u20134, 6\u20134 included which tournament?", "context": "CREATE TABLE table_name_57 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_23 WHERE date = \"january 10, 2004\"", "question": "Final that has a Date of january 10, 2004 had what opponent?", "context": "CREATE TABLE table_name_23 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE tournament = \"tokyo, japan\" AND score = \"4\u20136, 6\u20134, 6\u20134\"", "question": "Tournament of tokyo, japan, and a Score of 4\u20136, 6\u20134, 6\u20134 had which date attached?", "context": "CREATE TABLE table_name_91 (date VARCHAR, tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE score = \"3\u20136, 7\u20135, 6\u20134\"", "question": "Score of 3\u20136, 7\u20135, 6\u20134 included what date?", "context": "CREATE TABLE table_name_63 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(podiums) FROM table_name_23 WHERE series = \"formula renault 2000 brazil\" AND poles < 1", "question": "What are the fewest number of podiums associated with a Series of formula renault 2000 brazil, and under 1 pole?", "context": "CREATE TABLE table_name_23 (podiums INTEGER, series VARCHAR, poles VARCHAR)"}, {"answer": "SELECT position FROM table_name_16 WHERE wins > 0 AND podiums < 3", "question": "What position has over 0 wins and under 3 podiums?", "context": "CREATE TABLE table_name_16 (position VARCHAR, wins VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_12 WHERE points = 20 AND podiums > 1", "question": "How many wins are associated with 20 points and over 1 podium?", "context": "CREATE TABLE table_name_12 (wins INTEGER, points VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT MAX(number_of_households) FROM table_name_88 WHERE median_family_income = \"$52,106\" AND population < 21 OFFSET 403", "question": "What is the largest number of households with median family income of $52,106 with less than 21,403 in population?", "context": "CREATE TABLE table_name_88 (number_of_households INTEGER, median_family_income VARCHAR, population VARCHAR)"}, {"answer": "SELECT MAX(number_of_households) FROM table_name_2 WHERE median_household_income = \"$54,086\" AND population < 231 OFFSET 236", "question": "What is the most households with a median household income of $54,086 with less than 231,236 in population?", "context": "CREATE TABLE table_name_2 (number_of_households INTEGER, median_household_income VARCHAR, population VARCHAR)"}, {"answer": "SELECT county FROM table_name_34 WHERE median_family_income = \"$46,426\"", "question": "Which country has a $46,426 median family income?", "context": "CREATE TABLE table_name_34 (county VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_27 WHERE laps < 8", "question": "What is the average grid with a number of laps smaller than 8?", "context": "CREATE TABLE table_name_27 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT MIN(grid) FROM table_name_96 WHERE rider = \"casey stoner\" AND laps < 27", "question": "What is the lowest grid with rider casey stoner and laps that are smaller than 27?", "context": "CREATE TABLE table_name_96 (grid INTEGER, rider VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_17 WHERE laps > 27", "question": "What is the total grid number with laps that are larger than 27?", "context": "CREATE TABLE table_name_17 (grid VARCHAR, laps INTEGER)"}, {"answer": "SELECT MIN(laps) FROM table_name_62 WHERE time_retired = \"+38.426\"", "question": "What is the lowest number of laps with a time/retired of +38.426?", "context": "CREATE TABLE table_name_62 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_6 WHERE time_retired = \"+19.475\"", "question": "What is the sum of laps that has a time/retired that is +19.475?", "context": "CREATE TABLE table_name_6 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE college_junior_club_team = \"canterbury (ushs)\"", "question": "What player is from canterbury (ushs)?", "context": "CREATE TABLE table_name_67 (player VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_10 WHERE game = 33", "question": "Which Opponent has a Game of 33?", "context": "CREATE TABLE table_name_10 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE december > 8 AND record = \"25-8-3\"", "question": "What's the Score that's got a listing of December that larger than 8 and Record of 25-8-3?", "context": "CREATE TABLE table_name_14 (score VARCHAR, december VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(earnings___) AS $__ FROM table_name_94 WHERE events = 28 AND wins > 2", "question": "What is the total number of earnings for golfers who have 28 events and more than 2 wins?", "context": "CREATE TABLE table_name_94 (earnings___ VARCHAR, events VARCHAR, wins VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE major = \"the open championship\" AND country = \"japan\"", "question": "On what Date was The Open Championship in Japan?", "context": "CREATE TABLE table_name_99 (date VARCHAR, major VARCHAR, country VARCHAR)"}, {"answer": "SELECT finish FROM table_name_54 WHERE player = \"tom weiskopf\"", "question": "What was Tom Weiskopf's Finish?", "context": "CREATE TABLE table_name_54 (finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT laps FROM table_name_23 WHERE points = 29", "question": "Which Laps have Points of 29?", "context": "CREATE TABLE table_name_23 (laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_98 WHERE driver = \"cristiano da matta\" AND points < 33", "question": "Which Grid has a Driver of cristiano da matta, and Points smaller than 33?", "context": "CREATE TABLE table_name_98 (grid INTEGER, driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_name_16 WHERE laps < 105 AND grid < 18 AND points = 11", "question": "Which Team has Laps smaller than 105, and a Grid smaller than 18, and Points of 11?", "context": "CREATE TABLE table_name_16 (team VARCHAR, points VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_7 WHERE team = \"rusport\" AND laps = 45", "question": "How many Points have a Team of rusport, and Laps of 45?", "context": "CREATE TABLE table_name_7 (points VARCHAR, team VARCHAR, laps VARCHAR)"}, {"answer": "SELECT name FROM table_name_95 WHERE position = \"guard\"", "question": "What is the players name in the guard position?", "context": "CREATE TABLE table_name_95 (name VARCHAR, position VARCHAR)"}, {"answer": "SELECT overall FROM table_name_5 WHERE pick = 17", "question": "What is the Overall number for pick 17?", "context": "CREATE TABLE table_name_5 (overall VARCHAR, pick VARCHAR)"}, {"answer": "SELECT round FROM table_name_48 WHERE overall = 123", "question": "What number round has an overall of 123?", "context": "CREATE TABLE table_name_48 (round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT name FROM table_name_3 WHERE overall < 123 AND team = \"detroit lions\"", "question": "What is the Name with an overall of less than 123 for the Detroit Lions?", "context": "CREATE TABLE table_name_3 (name VARCHAR, overall VARCHAR, team VARCHAR)"}, {"answer": "SELECT name FROM table_name_27 WHERE overall < 49", "question": "Who is drafted overall less than 49?", "context": "CREATE TABLE table_name_27 (name VARCHAR, overall INTEGER)"}, {"answer": "SELECT position FROM table_name_47 WHERE college = \"grambling\"", "question": "What position is drafted from Grambling?", "context": "CREATE TABLE table_name_47 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_2 WHERE event = \"sb 24 - return of the heavyweights 2\" AND method = \"tko (knee and punches)\"", "question": "Which opponent's event was sb 24 - return of the heavyweights 2, and had a method of TKO (knee and punches)?", "context": "CREATE TABLE table_name_2 (opponent VARCHAR, event VARCHAR, method VARCHAR)"}, {"answer": "SELECT method FROM table_name_68 WHERE opponent = \"travis fulton\"", "question": "Which method had Travis Fulton as an opponent?", "context": "CREATE TABLE table_name_68 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE round > 1 AND event = \"pfp: ring of fire\"", "question": "Which opponent had a round of more than 1 and an even of PFP: ring of fire?", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_87 WHERE episode = 42", "question": "What's the segment A in episode 42?", "context": "CREATE TABLE table_name_87 (segment_a VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(ordered) FROM table_name_54 WHERE name = \"sfax\"", "question": "Sfax has a total ordered number of?", "context": "CREATE TABLE table_name_54 (ordered VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE date = \"march 5\"", "question": "What was the score on March 5 at Vancouver?", "context": "CREATE TABLE table_name_42 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_45 WHERE rank = \"nominated\" AND film = \"blood on his hands\"", "question": "Who directed the nominated film 'blood on his hands'?", "context": "CREATE TABLE table_name_45 (director_s_ VARCHAR, rank VARCHAR, film VARCHAR)"}, {"answer": "SELECT rank FROM table_name_30 WHERE film = \"amelia and michael\"", "question": "What is the rank of the film, Amelia and Michael?", "context": "CREATE TABLE table_name_30 (rank VARCHAR, film VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_53 WHERE rank = \"nominated\" AND film = \"badmouth\"", "question": "Who directed the nominated film, Badmouth?", "context": "CREATE TABLE table_name_53 (director_s_ VARCHAR, rank VARCHAR, film VARCHAR)"}, {"answer": "SELECT production_company FROM table_name_54 WHERE director_s_ = \"daniel cormack\"", "question": "What was the production company for the film directed by Daniel Cormack?", "context": "CREATE TABLE table_name_54 (production_company VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT production_company FROM table_name_33 WHERE rank = \"nominated\" AND film = \"badmouth\"", "question": "What was the production company for the nominated film, Badmouth?", "context": "CREATE TABLE table_name_33 (production_company VARCHAR, rank VARCHAR, film VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_23 WHERE opponent = \"cleveland barons\" AND january > 3", "question": "What is the average number of points of the game after January 3 against the Cleveland Barons?", "context": "CREATE TABLE table_name_23 (points INTEGER, opponent VARCHAR, january VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_69 WHERE opponent = \"los angeles kings\" AND january > 5", "question": "What is the total number of games of the team against the Los Angeles Kings after January 5?", "context": "CREATE TABLE table_name_69 (game VARCHAR, opponent VARCHAR, january VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_90 WHERE player = \"tiger woods\" AND events < 21", "question": "Tiger Woods has played less than 21 events and is what rank?", "context": "CREATE TABLE table_name_90 (rank VARCHAR, player VARCHAR, events VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_77 WHERE score = \"108-85\"", "question": "Score of 108-85 is what lowest game?", "context": "CREATE TABLE table_name_77 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE location = \"brendan byrne arena\"", "question": "Location of brendan byrne arena had what score?", "context": "CREATE TABLE table_name_5 (score VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_83 WHERE opponent = \"chicago bulls\"", "question": "Opponent of chicago bulls had what location?", "context": "CREATE TABLE table_name_83 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_34 WHERE location = \"boston garden\" AND record = \"58-23\"", "question": "Location of boston garden, and a Record of 58-23 involved what opponent?", "context": "CREATE TABLE table_name_34 (opponent VARCHAR, location VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_16 WHERE score = \"119-115 (ot)\"", "question": "Score of 119-115 (ot) involved what location?", "context": "CREATE TABLE table_name_16 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(fall_07) FROM table_name_83 WHERE fall_05 = 271 AND fall_09 < 347", "question": "What is the average value for Fall 07 when Fall 05 is 271 and Fall 09 is less than 347?", "context": "CREATE TABLE table_name_83 (fall_07 INTEGER, fall_05 VARCHAR, fall_09 VARCHAR)"}, {"answer": "SELECT AVG(fall_07) FROM table_name_99 WHERE fall_09 < 296", "question": "What was the average value for Fall 07 when Fall 09 is less than 296?", "context": "CREATE TABLE table_name_99 (fall_07 INTEGER, fall_09 INTEGER)"}, {"answer": "SELECT SUM(fall_09) FROM table_name_56 WHERE maryland_counties = \"allegany\" AND fall_07 < 751", "question": "What is the sum of all values in Fall 09 in Allegany county with Fall 07 less than 751?", "context": "CREATE TABLE table_name_56 (fall_09 INTEGER, maryland_counties VARCHAR, fall_07 VARCHAR)"}, {"answer": "SELECT MAX(fall_08) FROM table_name_95 WHERE fall_09 = 792 AND fall_05 < 791", "question": "What is the largest value for Fall 08 when Fall 09 is 792 and Fall 05 is less than 791?", "context": "CREATE TABLE table_name_95 (fall_08 INTEGER, fall_09 VARCHAR, fall_05 VARCHAR)"}, {"answer": "SELECT MAX(fall_08) FROM table_name_28 WHERE fall_07 < 242", "question": "What is the largest value for Fall 08 when Fall 07 is less than 242?", "context": "CREATE TABLE table_name_28 (fall_08 INTEGER, fall_07 INTEGER)"}, {"answer": "SELECT nationality FROM table_name_11 WHERE round = 4", "question": "What is the nationality of the player in round 4?", "context": "CREATE TABLE table_name_11 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_70 WHERE nationality = \"canada\" AND player = \"jimmy drolet\"", "question": "What is the round of Jimmy Drolet from Canada?", "context": "CREATE TABLE table_name_70 (round VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_43 WHERE position = \"right wing\" AND player = \"jessie rezansoff\"", "question": "What is the round number of Jessie Rezansoff, who plays right wing?", "context": "CREATE TABLE table_name_43 (round INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_11 WHERE qual_2 = \"1:01.093\"", "question": "Which team had a qualifying 2 time of 1:01.093?", "context": "CREATE TABLE table_name_11 (team VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_55 WHERE qual_1 = \"1:01.630\"", "question": "What was the qualifying 2 time for the team with a qualifying 1 time of 1:01.630?", "context": "CREATE TABLE table_name_55 (qual_2 VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_27 WHERE team = \"rusport\" AND name = \"justin wilson\"", "question": "What was the qualifying 1 time for Rusport and Justin Wilson?", "context": "CREATE TABLE table_name_27 (qual_1 VARCHAR, team VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_40 WHERE qual_1 = \"1:01.342\"", "question": "Which team had a qualifying 1 time of 1:01.342?", "context": "CREATE TABLE table_name_40 (team VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT best FROM table_name_54 WHERE qual_1 = \"1:01.043\"", "question": "What is the best time of the team that had a qualifying 1 time of 1:01.043?", "context": "CREATE TABLE table_name_54 (best VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_17 WHERE player = \"mike zaher\"", "question": "How many picks did Mike Zaher have?", "context": "CREATE TABLE table_name_17 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_57 WHERE player = \"matt marquess\"", "question": "How many pick numbers did Matt Marquess have?", "context": "CREATE TABLE table_name_57 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT mls_team FROM table_name_69 WHERE pick__number = 31", "question": "Which MLS Team's pick number was 31?", "context": "CREATE TABLE table_name_69 (mls_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE visitor = \"toronto\"", "question": "what day did the team go to toronto", "context": "CREATE TABLE table_name_97 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE visitor = \"chicago\"", "question": "what team visited chicago", "context": "CREATE TABLE table_name_14 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT home FROM table_name_32 WHERE date = \"october 8\"", "question": "what team played on october 8", "context": "CREATE TABLE table_name_32 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT position FROM table_name_69 WHERE game_1 = \"noel cleal\"", "question": "Which Position has a Game 1 of noel cleal?", "context": "CREATE TABLE table_name_69 (position VARCHAR, game_1 VARCHAR)"}, {"answer": "SELECT game_3 FROM table_name_75 WHERE game_1 = \"brett kenny\"", "question": "Which Game 3 has a Game 1 of brett kenny?", "context": "CREATE TABLE table_name_75 (game_3 VARCHAR, game_1 VARCHAR)"}, {"answer": "SELECT venue FROM table_name_36 WHERE opponent = \"at new york giants\"", "question": "Opponent of at new york giants had what venue?", "context": "CREATE TABLE table_name_36 (venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT week FROM table_name_43 WHERE result = \"l 10-23\"", "question": "Result of l 10-23 occurred in what week?", "context": "CREATE TABLE table_name_43 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT record FROM table_name_69 WHERE week > 5 AND opponent = \"at new york giants\"", "question": "Week larger than 5, and an opponent of at new york giants had what record?", "context": "CREATE TABLE table_name_69 (record VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE attendance = \"35,842\"", "question": "Attendance of 35,842 had what date?", "context": "CREATE TABLE table_name_77 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_27 WHERE result = \"w 16-10* o.t.\"", "question": "Result of w 16-10* o.t. had what attendance?", "context": "CREATE TABLE table_name_27 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT report FROM table_name_6 WHERE date = \"june 5, 2005\"", "question": "What Report has the Date of June 5, 2005?", "context": "CREATE TABLE table_name_6 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_name_8 WHERE date = \"september 3, 2005\"", "question": "What Report has the Date September 3, 2005?", "context": "CREATE TABLE table_name_8 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT 3 AS \u2019utr_sequence FROM table_name_64 WHERE coding = \"6a 3\" AND genbank_id = \"nm_001093770.2\"", "question": "What was the 3\u2019UTR sequence when Coding was 6a 3 and the GenBank id is nm_001093770.2?", "context": "CREATE TABLE table_name_64 (coding VARCHAR, genbank_id VARCHAR)"}, {"answer": "SELECT variant_id FROM table_name_40 WHERE genbank_id = \"nm_005411.4\"", "question": "Which Variant id has the GenBank id of nm_005411.4?", "context": "CREATE TABLE table_name_40 (variant_id VARCHAR, genbank_id VARCHAR)"}, {"answer": "SELECT 5 AS \u2019utr_splice FROM table_name_46 WHERE variant_id = \"sftpa1 variant 2\"", "question": "Which 5\u2019UTR splice has a Variant ID at sftpa1 variant 2?", "context": "CREATE TABLE table_name_46 (variant_id VARCHAR)"}, {"answer": "SELECT 3 AS \u2019utr_sequence FROM table_name_87 WHERE genbank_id = \"hq021440\"", "question": "Which 3\u2019UTR sequence has the GenBank ID at hq021440?", "context": "CREATE TABLE table_name_87 (genbank_id VARCHAR)"}, {"answer": "SELECT copa_libertadores_1992 FROM table_name_59 WHERE supercopa_sudamericana_1992 = \"round of 16\" AND team = \"gr\u00eamio\"", "question": "Which Copa Libertadores 1992 has a Supercopa Sudamericana 1992 of round of 16, and a Team of gr\u00eamio?", "context": "CREATE TABLE table_name_59 (copa_libertadores_1992 VARCHAR, supercopa_sudamericana_1992 VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_28 WHERE recopa_sudamericana_1992 = \"runner-up\"", "question": "Which Team has a Recopa Sudamericana 1992 of runner-up?", "context": "CREATE TABLE table_name_28 (team VARCHAR, recopa_sudamericana_1992 VARCHAR)"}, {"answer": "SELECT supercopa_sudamericana_1992 FROM table_name_83 WHERE team = \"santos\"", "question": "Which Supercopa Sudamericana 1992 has a Team of santos?", "context": "CREATE TABLE table_name_83 (supercopa_sudamericana_1992 VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE record = \"54-69\"", "question": "When was the game with a record of 54-69?", "context": "CREATE TABLE table_name_28 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(tier) FROM table_name_45 WHERE postseason = \"semifinalist\"", "question": "What is the total number of tiers for the postseason of semifinalist?", "context": "CREATE TABLE table_name_45 (tier INTEGER, postseason VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_7 WHERE chassis = \"reynard 91d\" AND year < 1991", "question": "For a year earlier than 1991 and a reynard 91d chassis, what's the highest points?", "context": "CREATE TABLE table_name_7 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_7 WHERE entrant = \"bs automotive\"", "question": "Total points for a bs automotive entrant?", "context": "CREATE TABLE table_name_7 (points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT engine FROM table_name_17 WHERE entrant = \"colt racing\"", "question": "What is a colt racing entrant engine?", "context": "CREATE TABLE table_name_17 (engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT AVG(passengers) FROM table_name_31 WHERE airport = \"indonesia, denpasar\"", "question": "How many Passengers that have an Airport in indonesia, denpasar?", "context": "CREATE TABLE table_name_31 (passengers INTEGER, airport VARCHAR)"}, {"answer": "SELECT airport FROM table_name_52 WHERE carriers = \"malaysia airlines\"", "question": "Which Airport has a Carrier of malaysia airlines?", "context": "CREATE TABLE table_name_52 (airport VARCHAR, carriers VARCHAR)"}, {"answer": "SELECT tier FROM table_name_91 WHERE division = \"leb 2\" AND cup_competitions = \"copa leb plata runner-up\"", "question": "Which tier has a division of LEB 2 and Cup Competitions of Copa LEB Plata runner-up?", "context": "CREATE TABLE table_name_91 (tier VARCHAR, division VARCHAR, cup_competitions VARCHAR)"}, {"answer": "SELECT COUNT(pos) FROM table_name_11 WHERE postseason = \"relegation playoffs\" AND tier = 3", "question": "How many positions have a Postseason of relegation playoffs and a tier of 3?", "context": "CREATE TABLE table_name_11 (pos VARCHAR, postseason VARCHAR, tier VARCHAR)"}, {"answer": "SELECT MIN(tier) FROM table_name_68 WHERE postseason = \"quarterfinalist\"", "question": "What is the lowest tier for a postseason result of quarterfinalist?", "context": "CREATE TABLE table_name_68 (tier INTEGER, postseason VARCHAR)"}, {"answer": "SELECT format FROM table_name_84 WHERE catalog = \"080 360-2\"", "question": "What format has 080 360-2 as the catalog?", "context": "CREATE TABLE table_name_84 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_4 WHERE catalog = \"887 448-2\"", "question": "What label has 887 448-2 as the catalog?", "context": "CREATE TABLE table_name_4 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_20 WHERE format = \"cd single\"", "question": "What label has cd single as the format?", "context": "CREATE TABLE table_name_20 (label VARCHAR, format VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_73 WHERE date = \"june 1990\"", "question": "What catalog has june 1990 as the date?", "context": "CREATE TABLE table_name_73 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT building FROM table_name_42 WHERE storeys = 26", "question": "Which building has 26 storeys?", "context": "CREATE TABLE table_name_42 (building VARCHAR, storeys VARCHAR)"}, {"answer": "SELECT height FROM table_name_34 WHERE storeys < 45 AND building = \"scotia centre\"", "question": "What is the height for less than 45 storeys in Scotia Centre?", "context": "CREATE TABLE table_name_34 (height VARCHAR, storeys VARCHAR, building VARCHAR)"}, {"answer": "SELECT storeys FROM table_name_46 WHERE city = \"calgary\" AND years = \"1975-1976\"", "question": "How many storeys in Calgary during 1975-1976?", "context": "CREATE TABLE table_name_46 (storeys VARCHAR, city VARCHAR, years VARCHAR)"}, {"answer": "SELECT city FROM table_name_97 WHERE years = \"1971-1974\"", "question": "Which city had years 1971-1974?", "context": "CREATE TABLE table_name_97 (city VARCHAR, years VARCHAR)"}, {"answer": "SELECT city FROM table_name_66 WHERE building = \"telus plaza south\"", "question": "Which city contains Telus Plaza South?", "context": "CREATE TABLE table_name_66 (city VARCHAR, building VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_30 WHERE lost = 2 AND points > 13", "question": "What is the lowest number played with 2 losses and more than 13 points?", "context": "CREATE TABLE table_name_30 (played INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_4 WHERE played > 9", "question": "What is the smallest positioned with more than 9 played?", "context": "CREATE TABLE table_name_4 (position INTEGER, played INTEGER)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_81 WHERE team = \"corinthians\" AND lost > 5", "question": "How many draws took place for team Corinthians with more than 5 losses?", "context": "CREATE TABLE table_name_81 (drawn VARCHAR, team VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(2007) FROM table_name_91 WHERE 2004 = 78 AND 2006 < 80", "question": "Which 2007 is the lowest one that has a 2004 of 78, and a 2006 smaller than 80?", "context": "CREATE TABLE table_name_91 (Id VARCHAR)"}, {"answer": "SELECT MIN(2005) FROM table_name_32 WHERE grade < 6 AND 2008 < 80 AND 2006 > 72", "question": "Which 2005 is the lowest one that has a Grade smaller than 6, and a 2008 smaller than 80, and a 2006 larger than 72?", "context": "CREATE TABLE table_name_32 (grade VARCHAR)"}, {"answer": "SELECT SUM(term_ending) FROM table_name_67 WHERE position = \"member\" AND nationality = \"india\"", "question": "Position of member, and a Nationality of india is what sum of term ending?", "context": "CREATE TABLE table_name_67 (term_ending INTEGER, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MAX(term_ending) FROM table_name_89 WHERE name = \"xue hanqin\"", "question": "Name of xue hanqin has what highest term ending?", "context": "CREATE TABLE table_name_89 (term_ending INTEGER, name VARCHAR)"}, {"answer": "SELECT MIN(term_ending) FROM table_name_54 WHERE position = \"member\" AND tenure_began = 2010 AND name = \"xue hanqin\"", "question": "Position of member, and a Tenure Began of 2010, and a Name of xue hanqin has what lowest term ending?", "context": "CREATE TABLE table_name_54 (term_ending INTEGER, name VARCHAR, position VARCHAR, tenure_began VARCHAR)"}, {"answer": "SELECT name FROM table_name_85 WHERE term_ending < 2018 AND nationality = \"new zealand\"", "question": "Term Ending smaller than 2018, and a Nationality of new zealand what is the name?", "context": "CREATE TABLE table_name_85 (name VARCHAR, term_ending VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT episode FROM table_name_75 WHERE airdate__usa_ = \"20 may 2005\"", "question": "Which episode aired in the USA on 20 May 2005?", "context": "CREATE TABLE table_name_75 (episode VARCHAR, airdate__usa_ VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_name_18 WHERE airdate__canada_ = \"22 october 2004\"", "question": "What is the total number of episodes aired in Canada on 22 October 2004?", "context": "CREATE TABLE table_name_18 (episode VARCHAR, airdate__canada_ VARCHAR)"}, {"answer": "SELECT cbs_airdate FROM table_name_26 WHERE episode < 70 AND airdate__usa_ = \"1 april 2005\"", "question": "What is the CBS airdate of the episode with a number under 70 with a USA airdate of 1 April 2005?", "context": "CREATE TABLE table_name_26 (cbs_airdate VARCHAR, episode VARCHAR, airdate__usa_ VARCHAR)"}, {"answer": "SELECT song_title FROM table_name_26 WHERE genre = \"glam\"", "question": "what song is a genre of glam", "context": "CREATE TABLE table_name_26 (song_title VARCHAR, genre VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE team = \"seattle\"", "question": "Which score is the Seattle team?", "context": "CREATE TABLE table_name_38 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_name_57 WHERE position = \"f\" AND hometown = \"dallas, texas\"", "question": "What is the number with the f position in Dallas, Texas?", "context": "CREATE TABLE table_name_57 (number VARCHAR, position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT competition FROM table_name_94 WHERE venue = \"bangkok\"", "question": "Which competition took place in Bangkok?", "context": "CREATE TABLE table_name_94 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE venue = \"kathmandu\"", "question": "What was the score in Kathmandu?", "context": "CREATE TABLE table_name_96 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_68 WHERE date = \"august 29, 1980\"", "question": "Where was the location for the August 29, 1980 game?", "context": "CREATE TABLE table_name_68 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT notes FROM table_name_31 WHERE position = \"2nd\" AND year < 1986", "question": "What is the notes distance for 2nd position earlier than 1986?", "context": "CREATE TABLE table_name_31 (notes VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_24 WHERE competition = \"olympic games\" AND position = \"dnq\"", "question": "Which venue hosts the Olympic Games for DNQ position?", "context": "CREATE TABLE table_name_24 (venue VARCHAR, competition VARCHAR, position VARCHAR)"}, {"answer": "SELECT year FROM table_name_82 WHERE notes = \"1.83m\"", "question": "In what year is the notes distance 1.83m?", "context": "CREATE TABLE table_name_82 (year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT race_number FROM table_name_95 WHERE driver = \"bob wollek\"", "question": "what is the race number of bob wollek", "context": "CREATE TABLE table_name_95 (race_number VARCHAR, driver VARCHAR)"}, {"answer": "SELECT country FROM table_name_10 WHERE driver = \"john nielsen\"", "question": "what country is john nielsen from", "context": "CREATE TABLE table_name_10 (country VARCHAR, driver VARCHAR)"}, {"answer": "SELECT model FROM table_name_59 WHERE propulsion = \"hybrid\"", "question": "Which Model has hybrid propulsion?", "context": "CREATE TABLE table_name_59 (model VARCHAR, propulsion VARCHAR)"}, {"answer": "SELECT propulsion FROM table_name_68 WHERE order_year = \"2003-2004\" AND manufacturer = \"neoplan usa\"", "question": "What is the Propulsion for the model offered in 2003-2004 by neoplan usa?", "context": "CREATE TABLE table_name_68 (propulsion VARCHAR, order_year VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT length__ft_ FROM table_name_67 WHERE manufacturer = \"nfi\" AND model = \"d40lf\" AND order_year = \"2008\"", "question": "What is the Length (ft.) for a 2008 nfi d40lf?", "context": "CREATE TABLE table_name_67 (length__ft_ VARCHAR, order_year VARCHAR, manufacturer VARCHAR, model VARCHAR)"}, {"answer": "SELECT SUM(founded) FROM table_name_68 WHERE club = \"tri-city storm\" AND titles > 1", "question": "Which Founded has a Club of tri-city storm and a Titles larger than 1?", "context": "CREATE TABLE table_name_68 (founded INTEGER, club VARCHAR, titles VARCHAR)"}, {"answer": "SELECT founded FROM table_name_97 WHERE club = \"no coast derby girls\"", "question": "Which Founded that has a Club of no coast derby girls?", "context": "CREATE TABLE table_name_97 (founded VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(founded) FROM table_name_14 WHERE league = \"women's flat track derby association\" AND club = \"omaha rollergirls\"", "question": "Which Founded  has a League of women's flat track derby association, and a Club of omaha rollergirls?", "context": "CREATE TABLE table_name_14 (founded INTEGER, league VARCHAR, club VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE competition = \"international friendly\"", "question": "On what date was there an International Friendly competition?", "context": "CREATE TABLE table_name_2 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE competition = \"bernardo o'higgins cup\" AND date = \"may 7, 1961\"", "question": "What was the score at Bernardo O'Higgins Cup on May 7, 1961?", "context": "CREATE TABLE table_name_94 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_7 WHERE time = \"+22.505\" AND laps > 23", "question": "What grid has an average time of +22.505 and laps larger than 23?", "context": "CREATE TABLE table_name_7 (grid INTEGER, time VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_8 WHERE time = \"retirement\" AND bike = \"suzuki gsx-r1000 k7\"", "question": "Which suzuki gsx-r1000 k7 has the highest time of retirement?", "context": "CREATE TABLE table_name_8 (grid INTEGER, time VARCHAR, bike VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_39 WHERE bike = \"suzuki gsx-r1000 k7\" AND grid = 6", "question": "What is the average lap for suzuki gsx-r1000 k7 and at grid 6?", "context": "CREATE TABLE table_name_39 (laps INTEGER, bike VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_29 WHERE laps = 23 AND grid < 18 AND time = \"+44.333\"", "question": "Which rider has a lap of 23, grid smaller than 18, and time +44.333?", "context": "CREATE TABLE table_name_29 (rider VARCHAR, time VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_85 WHERE laps > 23", "question": "what is the lowest grid with laps larger than 23?", "context": "CREATE TABLE table_name_85 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT location FROM table_name_58 WHERE opponent = \"iowa state\"", "question": "Where did the Bruins play Iowa State?", "context": "CREATE TABLE table_name_58 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT conf FROM table_name_24 WHERE date = \"ncaa tournament\"", "question": "What Conference was during the NCAA Tournament?", "context": "CREATE TABLE table_name_24 (conf VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(avg) FROM table_name_34 WHERE yards > 265 AND car > 105", "question": "What is the amount of Avg that has Yards more 265 and a Car more 105?", "context": "CREATE TABLE table_name_34 (avg VARCHAR, yards VARCHAR, car VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE rank = 3", "question": "Which player is ranked number 3?", "context": "CREATE TABLE table_name_83 (player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT season FROM table_name_84 WHERE champion = \"nicolas kiesa\"", "question": "What season has the champion of Nicolas Kiesa?", "context": "CREATE TABLE table_name_84 (season VARCHAR, champion VARCHAR)"}, {"answer": "SELECT gold FROM table_name_15 WHERE year = 1998", "question": "Who won the gold medal in 1998?", "context": "CREATE TABLE table_name_15 (gold VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_11 WHERE silver = \"mika miyazato\"", "question": "What is the total number of years when Mika Miyazato won the silver?", "context": "CREATE TABLE table_name_11 (year VARCHAR, silver VARCHAR)"}, {"answer": "SELECT location FROM table_name_57 WHERE year > 2002 AND gold = \"kim hyun-soo\"", "question": "What is the location of the Asian Games after 2002 when Kim Hyun-soo won the gold?", "context": "CREATE TABLE table_name_57 (location VARCHAR, year VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_51 WHERE gold = \"kim hyun-soo\"", "question": "What is the earliest year that kim hyun-soo won the gold?", "context": "CREATE TABLE table_name_51 (year INTEGER, gold VARCHAR)"}, {"answer": "SELECT uk_broadcast_date FROM table_name_68 WHERE countries_visited = \"south africa\"", "question": "What was the broadcast date of the episode that visited South Africa?", "context": "CREATE TABLE table_name_68 (uk_broadcast_date VARCHAR, countries_visited VARCHAR)"}, {"answer": "SELECT countries_visited FROM table_name_96 WHERE presenter = \"natalia makarova\"", "question": "Which country did Natalia Makarova visit?", "context": "CREATE TABLE table_name_96 (countries_visited VARCHAR, presenter VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_25 WHERE date = \"may 31\"", "question": "How many people attended the game on May 31?", "context": "CREATE TABLE table_name_25 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_44 WHERE date = \"may 10\"", "question": "How many people attended the game on May 10?", "context": "CREATE TABLE table_name_44 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_87 WHERE round = 3", "question": "Which Overall is the lowest one that has a Round of 3?", "context": "CREATE TABLE table_name_87 (overall INTEGER, round VARCHAR)"}, {"answer": "SELECT college FROM table_name_10 WHERE name = \"kevin landolt\"", "question": "Which college did kevin landolt attend?", "context": "CREATE TABLE table_name_10 (college VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_52 WHERE pick__number > 26 AND position = \"defensive back\"", "question": "Which Round is the average one that has a Pick # larger than 26, and a Position of defensive back?", "context": "CREATE TABLE table_name_52 (round INTEGER, pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_name_13 WHERE pick__number > 25 AND round = 7 AND name = \"chris white\"", "question": "Which College has a Pick # larger than 25, and a Round of 7, and a Name of chris white?", "context": "CREATE TABLE table_name_13 (college VARCHAR, name VARCHAR, pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_30 WHERE record = \"16-63\"", "question": "what was the average game when record was 16-63?", "context": "CREATE TABLE table_name_30 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT AVG(population) FROM table_name_54 WHERE median_household_income = \"$40,340\" AND number_of_households < 64 OFFSET 767", "question": "Median household income of $40,340, and a Number of households smaller than 64,767 is what average population?", "context": "CREATE TABLE table_name_54 (population INTEGER, median_household_income VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT party FROM table_name_69 WHERE result = \"re-elected\" AND incumbent = \"robert p. kennedy\"", "question": "What party was re-elected as an incumbent of robert p. Kennedy?", "context": "CREATE TABLE table_name_69 (party VARCHAR, result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_93 WHERE party = \"democratic\" AND district = \"ohio 7\"", "question": "Which democratic incumbent is from the district of ohio 7?", "context": "CREATE TABLE table_name_93 (incumbent VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_name_16 WHERE party = \"republican\" AND first_elected = \"1886\" AND district = \"ohio 17\"", "question": "Which republican was first elected in 1886 in the district of ohio 17?", "context": "CREATE TABLE table_name_16 (result VARCHAR, district VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_name_15 WHERE district = \"ohio 6\"", "question": "Which result was in the district of ohio 6?", "context": "CREATE TABLE table_name_15 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_45 WHERE result = \"retired republican gain\" AND district = \"ohio 21\"", "question": "Who was first elected as the result of a retired republican gain in the district of ohio 21?", "context": "CREATE TABLE table_name_45 (first_elected VARCHAR, result VARCHAR, district VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_66 WHERE game > 3 AND date = \"may 9\"", "question": "On May 9 after Game 3, what was the Opponent?", "context": "CREATE TABLE table_name_66 (opponent VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_92 WHERE position = \"number 8\" AND club_province = \"scarlets\"", "question": "Which Player has a Position of number 8, and a Club/province of scarlets?", "context": "CREATE TABLE table_name_92 (player VARCHAR, position VARCHAR, club_province VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_75 WHERE position = \"centre\" AND caps = 27", "question": "Which Club/province has a Position of centre, and Caps of 27?", "context": "CREATE TABLE table_name_75 (club_province VARCHAR, position VARCHAR, caps VARCHAR)"}, {"answer": "SELECT position FROM table_name_59 WHERE player = \"alun wyn jones\"", "question": "What position does alun wyn jones play?", "context": "CREATE TABLE table_name_59 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_47 WHERE club_province = \"blues\" AND caps > 0 AND player = \"tom james\"", "question": "Which Date of Birth (Age) has a Club/province of blues, and Caps larger than 0, and a Player of tom james?", "context": "CREATE TABLE table_name_47 (date_of_birth__age_ VARCHAR, player VARCHAR, club_province VARCHAR, caps VARCHAR)"}, {"answer": "SELECT MIN(caps) FROM table_name_70 WHERE club_province = \"ospreys\" AND date_of_birth__age_ = \"19 september 1985\"", "question": "Which Caps is the lowest one that has a Club/province of ospreys, and a Date of Birth (Age) of 19 september 1985?", "context": "CREATE TABLE table_name_70 (caps INTEGER, club_province VARCHAR, date_of_birth__age_ VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_40 WHERE home = \"blues\"", "question": "What is the average attendance of the game where the home team was the Blues?", "context": "CREATE TABLE table_name_40 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT MAX(823 AS _g__127_gr_) FROM table_name_80 WHERE bullet_weight_gram__grain_ = \"8x64mm s\" AND case_capacity___percentage_ < 110.3", "question": "Which 8.23 g (127 gr) is the highest one that has a Bullet weight gram (grain) of 8x64mm s, and a Case capacity (%) smaller than 110.3?", "context": "CREATE TABLE table_name_80 (bullet_weight_gram__grain_ VARCHAR, case_capacity___percentage_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_51 WHERE level = 3 AND nationality = \"saint kitts and nevis\"", "question": "What is the Position of the Level 3 winner from Saint Kitts and Nevis?", "context": "CREATE TABLE table_name_51 (position VARCHAR, level VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_95 WHERE level > 5", "question": "What Goals with a Level of 5 or greater is the lowest?", "context": "CREATE TABLE table_name_95 (goals INTEGER, level INTEGER)"}, {"answer": "SELECT position FROM table_name_23 WHERE goals = 18 AND level = 5", "question": "What is the Position of the winner with 18 Goals and Level of 5?", "context": "CREATE TABLE table_name_23 (position VARCHAR, goals VARCHAR, level VARCHAR)"}, {"answer": "SELECT university_students_and_adults__18yrs + _ FROM table_name_86 WHERE specification = \"minimum diameter of sakigawa\" AND gender = \"female\"", "question": "Which University students and adults have minimum diameter of Sakigawa for female gender?", "context": "CREATE TABLE table_name_86 (university_students_and_adults__18yrs VARCHAR, _ VARCHAR, specification VARCHAR, gender VARCHAR)"}, {"answer": "SELECT junior_high_school__12_15_yrs_ FROM table_name_97 WHERE gender = \"male and female\"", "question": "Which junior high school has male and female genders?", "context": "CREATE TABLE table_name_97 (junior_high_school__12_15_yrs_ VARCHAR, gender VARCHAR)"}, {"answer": "SELECT gender FROM table_name_19 WHERE university_students_and_adults__18yrs + _ = \"25mm\"", "question": "Which gender is associated with University students and adults of 25mm?", "context": "CREATE TABLE table_name_19 (gender VARCHAR, university_students_and_adults__18yrs VARCHAR, _ VARCHAR)"}, {"answer": "SELECT junior_high_school__12_15_yrs_ FROM table_name_15 WHERE university_students_and_adults__18yrs + _ = \"26mm\"", "question": "Which junior high school has university students and adults of 26mm?", "context": "CREATE TABLE table_name_15 (junior_high_school__12_15_yrs_ VARCHAR, university_students_and_adults__18yrs VARCHAR, _ VARCHAR)"}, {"answer": "SELECT university_students_and_adults__18yrs + _ FROM table_name_57 WHERE gender = \"male\" AND specification = \"minimum weight\"", "question": "What value for university students and adult goes with male gender for minimum weight?", "context": "CREATE TABLE table_name_57 (university_students_and_adults__18yrs VARCHAR, _ VARCHAR, gender VARCHAR, specification VARCHAR)"}, {"answer": "SELECT metro_vincity FROM table_name_84 WHERE opened = \"1999\"", "question": "What metro vincity has the venue that opened in 1999?", "context": "CREATE TABLE table_name_84 (metro_vincity VARCHAR, opened VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_name_15 WHERE opened = \"1999\"", "question": "What is the total capacity of venues that opened in 1999?", "context": "CREATE TABLE table_name_15 (capacity VARCHAR, opened VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE result = \"aus by 382 runs\"", "question": "What date has aus by 382 runs as the result?", "context": "CREATE TABLE table_name_25 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_2 WHERE result = \"eng by 10 runs\"", "question": "What venue has eng by 10 runs as the result?", "context": "CREATE TABLE table_name_2 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE home_captain = \"george giffen\" AND venue = \"sydney cricket ground\"", "question": "What date has george giffen as the home captain, and sydney cricket ground as the venue?", "context": "CREATE TABLE table_name_87 (date VARCHAR, home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_69 WHERE gold = 0 AND bronze < 0", "question": "Gold of 0, and a Bronze smaller than 0 and what is the sum of the silver?", "context": "CREATE TABLE table_name_69 (silver INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_70 WHERE gold = 0 AND total > 0 AND silver > 1", "question": "Gold of 0, and a Total larger than 0, and a Silver larger than 1 and what is the highest bronze?", "context": "CREATE TABLE table_name_70 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_31 WHERE gold > 0 AND bronze > 1", "question": "Gold larger than 0, and a Bronze larger than 1 includes what total number of silver?", "context": "CREATE TABLE table_name_31 (silver VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_35 WHERE bronze = 0 AND total = 1 AND silver < 1", "question": "Bronze of 0, and a Total of 1, and a Silver smaller than 1 what is the lowest gold?", "context": "CREATE TABLE table_name_35 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT third FROM table_name_78 WHERE lead = \"zanda bik\u0161e\"", "question": "Which Third has a Lead of zanda bik\u0161e?", "context": "CREATE TABLE table_name_78 (third VARCHAR, lead VARCHAR)"}, {"answer": "SELECT third FROM table_name_6 WHERE nation = \"hungary\"", "question": "Which Third has a Nation of hungary?", "context": "CREATE TABLE table_name_6 (third VARCHAR, nation VARCHAR)"}, {"answer": "SELECT second FROM table_name_16 WHERE nation = \"latvia\"", "question": "Which Second has a Nation of latvia?", "context": "CREATE TABLE table_name_16 (second VARCHAR, nation VARCHAR)"}, {"answer": "SELECT lead FROM table_name_99 WHERE nation = \"croatia\"", "question": "Which Lead has a Nation of croatia?", "context": "CREATE TABLE table_name_99 (lead VARCHAR, nation VARCHAR)"}, {"answer": "SELECT nation FROM table_name_73 WHERE lead = \"alexandra bruckmiller\"", "question": "Which Nation has a Lead of alexandra bruckmiller?", "context": "CREATE TABLE table_name_73 (nation VARCHAR, lead VARCHAR)"}, {"answer": "SELECT skip FROM table_name_37 WHERE third = \"constanze hummelt\"", "question": "Which Skip has a Third of constanze hummelt?", "context": "CREATE TABLE table_name_37 (skip VARCHAR, third VARCHAR)"}, {"answer": "SELECT spanish FROM table_name_83 WHERE english = \"garden\"", "question": "what is the spanish word for garden", "context": "CREATE TABLE table_name_83 (spanish VARCHAR, english VARCHAR)"}, {"answer": "SELECT italian FROM table_name_37 WHERE french = \"mer\"", "question": "what is the italian word for the french word 'mer'", "context": "CREATE TABLE table_name_37 (italian VARCHAR, french VARCHAR)"}, {"answer": "SELECT english FROM table_name_61 WHERE italian = \"cavallo\"", "question": "what is the english word for cavallo", "context": "CREATE TABLE table_name_61 (english VARCHAR, italian VARCHAR)"}, {"answer": "SELECT player FROM table_name_61 WHERE touchdowns > 1 AND extra_points = 0 AND points < 50", "question": "What Player has more than 1 Touchdowns with 0 Extra Points and less than 50 Points?", "context": "CREATE TABLE table_name_61 (player VARCHAR, points VARCHAR, touchdowns VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT player FROM table_name_77 WHERE touchdowns < 10 AND extra_points = 0 AND points > 5", "question": "What Player has less than 10 Touchdowns and 0 Extra points and more than 5 Points?", "context": "CREATE TABLE table_name_77 (player VARCHAR, points VARCHAR, touchdowns VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT MIN(extra_points) FROM table_name_6 WHERE points = 5 AND touchdowns < 1", "question": "How many Extra Points were scored by the Player who had 5 Points and less than 1 Touchdowns?", "context": "CREATE TABLE table_name_6 (extra_points INTEGER, points VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_86 WHERE tournament = \"european indoor championships\" AND result = \"3rd\"", "question": "Name the least year for european indoor championships result of 3rd", "context": "CREATE TABLE table_name_86 (year INTEGER, tournament VARCHAR, result VARCHAR)"}, {"answer": "SELECT played FROM table_name_8 WHERE points = \"51\"", "question": "What is the played value with 51 points?", "context": "CREATE TABLE table_name_8 (played VARCHAR, points VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_99 WHERE club = \"nelson rfc\"", "question": "How many tries for Nelson RFC?", "context": "CREATE TABLE table_name_99 (tries_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_22 WHERE drawn = \"1\" AND lost = \"13\"", "question": "What is the losing bonus with 1 draw and 13 losses?", "context": "CREATE TABLE table_name_22 (losing_bonus VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_22 WHERE played = \"22\" AND drawn = \"1\" AND try_bonus = \"13\"", "question": "How many tries when 22 are played with 1 draw and a try bonus of 13?", "context": "CREATE TABLE table_name_22 (tries_against VARCHAR, try_bonus VARCHAR, played VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_67 WHERE losing_bonus = \"1\" AND club = \"blaenavon rfc\"", "question": "How many points were scored against with a losing bonus of 1 for Blaenavon RFC?", "context": "CREATE TABLE table_name_67 (points_against VARCHAR, losing_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_41 WHERE method = \"submission (triangle choke)\"", "question": "Who is the opponent of the submission (triangle choke) method of submission?", "context": "CREATE TABLE table_name_41 (opponent VARCHAR, method VARCHAR)"}, {"answer": "SELECT competition FROM table_name_53 WHERE date = \"october 31, 1979\"", "question": "What Competition had a game on October 31, 1979?", "context": "CREATE TABLE table_name_53 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE brazil_scorers = \"palhinha\"", "question": "On what Date was Palhinha Brazil Scorers?", "context": "CREATE TABLE table_name_97 (date VARCHAR, brazil_scorers VARCHAR)"}, {"answer": "SELECT brazil_scorers FROM table_name_93 WHERE score = \"1-1\"", "question": "What Brazil scorers have a 1-1 Score?", "context": "CREATE TABLE table_name_93 (brazil_scorers VARCHAR, score VARCHAR)"}, {"answer": "SELECT brazil_scorers FROM table_name_35 WHERE score = \"2-1\"", "question": "What Brazil scorers have a 2-1 Score?", "context": "CREATE TABLE table_name_35 (brazil_scorers VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_76 WHERE score = \"1-2\"", "question": "What Competition's Score was 1-2?", "context": "CREATE TABLE table_name_76 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_90 WHERE opponent = \"calgary flames\" AND january > 22", "question": "Which Points have an Opponent of calgary flames, and a January larger than 22?", "context": "CREATE TABLE table_name_90 (points INTEGER, opponent VARCHAR, january VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_36 WHERE record = \"21\u201320\u20136\"", "question": "Which Points have a Record of 21\u201320\u20136?", "context": "CREATE TABLE table_name_36 (points INTEGER, record VARCHAR)"}, {"answer": "SELECT AVG(january) FROM table_name_2 WHERE game = 50", "question": "Which January has a Game of 50?", "context": "CREATE TABLE table_name_2 (january INTEGER, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_79 WHERE opponent = \"pittsburgh pirates\" AND date = \"may 5\"", "question": "Which Record has an Opponent of pittsburgh pirates, and a Date of may 5?", "context": "CREATE TABLE table_name_79 (record VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_32 WHERE opponent = \"pittsburgh pirates\" AND date = \"may 5\"", "question": "Which Attendance has an Opponent of pittsburgh pirates, and a Date of may 5?", "context": "CREATE TABLE table_name_32 (attendance INTEGER, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_24 WHERE record = \"15-28\"", "question": "Which Attendance is the highest one that has a Record of 15-28?", "context": "CREATE TABLE table_name_24 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE loss = \"jeriome robertson\"", "question": "What is the date of the match where Jeriome Robertson lost?", "context": "CREATE TABLE table_name_86 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE save = \"postponed rescheduled for june 24\"", "question": "What is the score of the match with a save postponed rescheduled for June 24?", "context": "CREATE TABLE table_name_97 (score VARCHAR, save VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE opponent = \"brother elephants\" AND save = \"||4,117\"", "question": "What is the date of the match with Brother Elephants as the opponent and a save of ||4,117?", "context": "CREATE TABLE table_name_49 (date VARCHAR, opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_3 WHERE name = \"jon olinger\" AND pick__number < 24", "question": "What is the least round number for Jon Olinger, who was picked before pick # 24?", "context": "CREATE TABLE table_name_3 (round INTEGER, name VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_5 WHERE position = \"defensive tackle\" AND round < 7", "question": "Before round 7, what is the greatest Pick # for a player that plays defensive tackle?", "context": "CREATE TABLE table_name_5 (pick__number INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT record FROM table_name_49 WHERE visitor = \"boston bruins\" AND date = \"december 8\"", "question": "What was the record on december 8 when the boston bruins visited?", "context": "CREATE TABLE table_name_49 (record VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE date = \"november 3\"", "question": "what was the score on november 3?", "context": "CREATE TABLE table_name_39 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_29 WHERE date = \"november 17\"", "question": "who visited on november 17?", "context": "CREATE TABLE table_name_29 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_96 WHERE years = \"1974\"", "question": "What is the name of the head coach of 1974?", "context": "CREATE TABLE table_name_96 (name VARCHAR, years VARCHAR)"}, {"answer": "SELECT AVG(seasons) FROM table_name_65 WHERE name = \"terri drake\" AND lost < 9", "question": "What is the average number of seasons for Terri Drake who lost less than 9?", "context": "CREATE TABLE table_name_65 (seasons INTEGER, name VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(seasons) FROM table_name_36 WHERE years = \"1982\" AND lost > 9", "question": "What is the lowest number of seasons that the head coach of 1982 had with larger than 9 losses?", "context": "CREATE TABLE table_name_36 (seasons INTEGER, years VARCHAR, lost VARCHAR)"}, {"answer": "SELECT webcast FROM table_name_86 WHERE format = \"spanish contemporary\" AND website = \"xhnoe.com\"", "question": "Which webcast was in Spanish contemporary on xhnoe.com?", "context": "CREATE TABLE table_name_86 (webcast VARCHAR, format VARCHAR, website VARCHAR)"}, {"answer": "SELECT MAX(frequency) FROM table_name_79 WHERE website = \"uncionfeypoder.com\"", "question": "What is the highest frequency from uncionfeypoder.com?", "context": "CREATE TABLE table_name_79 (frequency INTEGER, website VARCHAR)"}, {"answer": "SELECT format FROM table_name_73 WHERE brand = \"digital 94.9\"", "question": "What is the format for Digital 94.9?", "context": "CREATE TABLE table_name_73 (format VARCHAR, brand VARCHAR)"}, {"answer": "SELECT population FROM table_name_51 WHERE deed_number = \"21352021\"", "question": "What is the population for Deed number of 21352021?", "context": "CREATE TABLE table_name_51 (population VARCHAR, deed_number VARCHAR)"}, {"answer": "SELECT AVG(area__km\u00b2_) FROM table_name_30 WHERE excised_from = \"shire of cook\" AND population < 463 AND name_of_community = \"wujal wujal (bloomfield river)\"", "question": "What is the average Area (km\u00b2) that shows Excised from shire of cook and a Population smaller than 463 for the community of wujal wujal (bloomfield river)?", "context": "CREATE TABLE table_name_30 (area__km\u00b2_ INTEGER, name_of_community VARCHAR, excised_from VARCHAR, population VARCHAR)"}, {"answer": "SELECT deed_number FROM table_name_24 WHERE population > 869 AND name_of_community = \"woorabinda\"", "question": "What was the deed number with a population of more than 869 in the woorabinda community?", "context": "CREATE TABLE table_name_24 (deed_number VARCHAR, population VARCHAR, name_of_community VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_72 WHERE area__km\u00b2_ = 1115.4", "question": "What is the smallest population with an Area (km\u00b2) of 1115.4?", "context": "CREATE TABLE table_name_72 (population INTEGER, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT MAX(area__km\u00b2_) FROM table_name_29 WHERE deed_number = \"21352022\" AND population > 184", "question": "What is the largest Area (km\u00b2) for Deed number of 21352022 with a Population of more than 184?", "context": "CREATE TABLE table_name_29 (area__km\u00b2_ INTEGER, deed_number VARCHAR, population VARCHAR)"}, {"answer": "SELECT result FROM table_name_84 WHERE goal < 4 AND date = \"16 october 2012\"", "question": "What is the result of the match on 16 October 2012 with less than 4 goals?", "context": "CREATE TABLE table_name_84 (result VARCHAR, goal VARCHAR, date VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_53 WHERE year < 1977 AND city = \"manchester\"", "question": "Which Opposition has a Year smaller than 1977, and a City of manchester?", "context": "CREATE TABLE table_name_53 (opposition VARCHAR, year VARCHAR, city VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_75 WHERE year = 1868", "question": "Which Score is the lowest one that has a Year of 1868?", "context": "CREATE TABLE table_name_75 (score INTEGER, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_97 WHERE year > 1868 AND opposition = \"derbyshire\"", "question": "Which Venue has a Year larger than 1868, and an Opposition of derbyshire?", "context": "CREATE TABLE table_name_97 (venue VARCHAR, year VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT city FROM table_name_85 WHERE score < 30 AND venue = \"aigburth\"", "question": "Which City has a Score smaller than 30, and a Venue of aigburth?", "context": "CREATE TABLE table_name_85 (city VARCHAR, score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_7 WHERE height = \"188cm\"", "question": "What is the Position of the player with a Height off 188cm?", "context": "CREATE TABLE table_name_7 (position VARCHAR, height VARCHAR)"}, {"answer": "SELECT position FROM table_name_31 WHERE name = \"alexander wronski\"", "question": "What is Alexander Wronski's Position?", "context": "CREATE TABLE table_name_31 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_35 WHERE name = \"senyi n'diaye\"", "question": "What is Senyi N'Diaye's Position?", "context": "CREATE TABLE table_name_35 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE competition = \"friendly\" AND score = \"4-0\"", "question": "What was the date of the friendly competition with a score of 4-0?", "context": "CREATE TABLE table_name_31 (date VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_21 WHERE score = \"5-0\" AND date = \"august 3, 2005\"", "question": "Where did the competition take place at on August 3, 2005 with a score of 5-0?", "context": "CREATE TABLE table_name_21 (venue VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_39 WHERE competition = \"2007 gulf cup of nations\"", "question": "What was the result of the 2007 gulf cup of nations?", "context": "CREATE TABLE table_name_39 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_95 WHERE score = \"4-0\"", "question": "What was the result of the competition that had a score of 4-0?", "context": "CREATE TABLE table_name_95 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT title__english_ FROM table_name_91 WHERE number_of_season = 6", "question": "What is the English title for season 6?", "context": "CREATE TABLE table_name_91 (title__english_ VARCHAR, number_of_season VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_3 WHERE wins = 1 AND position = \"8th\"", "question": "What is the highest season wth a Win of 1 and a Position that is 8th?", "context": "CREATE TABLE table_name_3 (season INTEGER, wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(races) FROM table_name_70 WHERE poles > 0", "question": "What is the total number of Races with a Pole that is larger than 0?", "context": "CREATE TABLE table_name_70 (races VARCHAR, poles INTEGER)"}, {"answer": "SELECT MIN(poles) FROM table_name_60 WHERE season > 2009", "question": "What is the lowest Poles with a Season that is larger than 2009?", "context": "CREATE TABLE table_name_60 (poles INTEGER, season INTEGER)"}, {"answer": "SELECT team FROM table_name_53 WHERE location_attendance = \"air canada centre 19,800\" AND record = \"41\u201333\"", "question": "Which team has a location attendance of Air Canada Centre 19,800 with a record of 41\u201333?", "context": "CREATE TABLE table_name_53 (team VARCHAR, location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(december) FROM table_name_38 WHERE record = \"21\u20138\u20134\" AND game > 33", "question": "Which December has a Record of 21\u20138\u20134, and a Game larger than 33?", "context": "CREATE TABLE table_name_38 (december INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_96 WHERE score = \"4\u20135 ot\"", "question": "Which Opponent has a Score of 4\u20135 ot?", "context": "CREATE TABLE table_name_96 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_35 WHERE opponent = \"new york islanders\" AND december > 10", "question": "Which Game is the highest one that has an Opponent of new york islanders, and a December larger than 10?", "context": "CREATE TABLE table_name_35 (game INTEGER, opponent VARCHAR, december VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_5 WHERE location = \"colorado\"", "question": "What tournament was located in Colorado?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE week = 9", "question": "On what date was the game in Week 9 played?", "context": "CREATE TABLE table_name_70 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT record FROM table_name_21 WHERE week > 6 AND attendance > 52 OFFSET 560", "question": "What was the record of the game after Week 6 with an attendance larger than 52,560?", "context": "CREATE TABLE table_name_21 (record VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_61 WHERE game_site = \"milwaukee county stadium\"", "question": "What is the highest attendance rate at Milwaukee County Stadium?", "context": "CREATE TABLE table_name_61 (attendance INTEGER, game_site VARCHAR)"}, {"answer": "SELECT MAX(ends_lost) FROM table_name_11 WHERE locale = \"ontario\"", "question": "What's Ontario's highest Ends Lost?", "context": "CREATE TABLE table_name_11 (ends_lost INTEGER, locale VARCHAR)"}, {"answer": "SELECT MAX(shot_pct) FROM table_name_36 WHERE ends_lost > 44 AND skip = \"cathy king\" AND blank_ends < 13", "question": "What is the shot % with a 44+ Ends Lost, skip Cathy King, and smaller than 13 Black Ends?", "context": "CREATE TABLE table_name_36 (shot_pct INTEGER, blank_ends VARCHAR, ends_lost VARCHAR, skip VARCHAR)"}, {"answer": "SELECT MAX(ends_lost) FROM table_name_2 WHERE shot_pct > 77 AND blank_ends = 11 AND stolen_ends = 7 AND ends_won > 44", "question": "What's the highest Ends Lost with a shot % greater than 77, 11 blank ends, 7 stolen ends, and more than 44 ends one?", "context": "CREATE TABLE table_name_2 (ends_lost INTEGER, ends_won VARCHAR, stolen_ends VARCHAR, shot_pct VARCHAR, blank_ends VARCHAR)"}, {"answer": "SELECT segment_c FROM table_name_79 WHERE episode < 230 AND segment_a = \"wax figures\"", "question": "Which Segment C that has an Episode lower than 230, and a Segment A consisting of wax figures?", "context": "CREATE TABLE table_name_79 (segment_c VARCHAR, episode VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_61 WHERE segment_b = \"s awning\"", "question": "Which Segment A has a Segment B of s awning?", "context": "CREATE TABLE table_name_61 (segment_a VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT split_off___continuation_of FROM table_name_40 WHERE date = \"1836\"", "question": "Which church had a Split off/Continuation in 1836?", "context": "CREATE TABLE table_name_40 (split_off___continuation_of VARCHAR, date VARCHAR)"}, {"answer": "SELECT church_name FROM table_name_50 WHERE organized_by = \"george m. hinkle\"", "question": "Which church was organized by George M. Hinkle?", "context": "CREATE TABLE table_name_50 (church_name VARCHAR, organized_by VARCHAR)"}, {"answer": "SELECT split_off___continuation_of FROM table_name_40 WHERE church_name = \"pure church of christ\"", "question": "What was the Pure Church of Christ's Split off/ Continuation?", "context": "CREATE TABLE table_name_40 (split_off___continuation_of VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT split_off___continuation_of FROM table_name_44 WHERE church_name = \"independent church\"", "question": "What was the Independent Church's Split off/ Continuation?", "context": "CREATE TABLE table_name_44 (split_off___continuation_of VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT organized_by FROM table_name_68 WHERE church_name = \"alston church\"", "question": "Who organized Alston Church?", "context": "CREATE TABLE table_name_68 (organized_by VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT name FROM table_name_68 WHERE headquarters = \"the netherlands\"", "question": "what is the name of the netherlands head quarters", "context": "CREATE TABLE table_name_68 (name VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT rider FROM table_name_10 WHERE rank = 10", "question": "what person was in rank 10", "context": "CREATE TABLE table_name_10 (rider VARCHAR, rank VARCHAR)"}, {"answer": "SELECT driver FROM table_name_40 WHERE entries = 210", "question": "Which driver has 210 as entries?", "context": "CREATE TABLE table_name_40 (driver VARCHAR, entries VARCHAR)"}, {"answer": "SELECT seasons FROM table_name_24 WHERE driver = \"fernando alonso\"", "question": "Which seasons have fernando alonso as the driver?", "context": "CREATE TABLE table_name_24 (seasons VARCHAR, driver VARCHAR)"}, {"answer": "SELECT club FROM table_name_4 WHERE goals = 0", "question": "What club had 0 goals?", "context": "CREATE TABLE table_name_4 (club VARCHAR, goals VARCHAR)"}, {"answer": "SELECT club FROM table_name_40 WHERE goals > 0 AND season = \"2011\"", "question": "What club had over 0 goals in 2011?", "context": "CREATE TABLE table_name_40 (club VARCHAR, goals VARCHAR, season VARCHAR)"}, {"answer": "SELECT team FROM table_name_27 WHERE make = \"dodge\"", "question": "What team drove a Dodge vehicle?", "context": "CREATE TABLE table_name_27 (team VARCHAR, make VARCHAR)"}, {"answer": "SELECT pos FROM table_name_31 WHERE driver = \"stacy compton\"", "question": "What was Stacy Compton's position?", "context": "CREATE TABLE table_name_31 (pos VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(pos) FROM table_name_82 WHERE car__number = 59", "question": "What was the average position of car number 59?", "context": "CREATE TABLE table_name_82 (pos INTEGER, car__number VARCHAR)"}, {"answer": "SELECT loss FROM table_name_51 WHERE date = \"april 25\"", "question": "How much was the loss of April 25?", "context": "CREATE TABLE table_name_51 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_76 WHERE bronze < 8 AND silver = 3 AND rank < 2", "question": "What is the average total with less than 8 bronze, 3 silver, and a Rank smaller than 2?", "context": "CREATE TABLE table_name_76 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_3 WHERE rank > 1 AND bronze > 8", "question": "What is the average Total with a Rank greater than 1, and a Bronze larger than 8?", "context": "CREATE TABLE table_name_3 (total INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_7 WHERE nation = \"vietnam\"", "question": "What is the smallest silver from Vietnam?", "context": "CREATE TABLE table_name_7 (silver INTEGER, nation VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_34 WHERE nation = \"malaysia\" AND total < 23", "question": "What is the largest silver from Malaysia with a Total smaller than 23?", "context": "CREATE TABLE table_name_34 (silver INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_86 WHERE rank = 2 AND gold < 8", "question": "What is the largest bronze with a Rank of 2, and a Gold smaller than 8?", "context": "CREATE TABLE table_name_86 (bronze INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_1 WHERE bronze < 8 AND total < 7 AND gold < 1", "question": "How many ranks have a Bronze smaller than 8, and a Total smaller than 7, and a Gold smaller than 1?", "context": "CREATE TABLE table_name_1 (rank VARCHAR, gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT capital FROM table_name_75 WHERE voivodeship_or_city = \"nowogr\u00f3dzkie\"", "question": "Voivodeship or city of nowogr\u00f3dzkie has what capital?", "context": "CREATE TABLE table_name_75 (capital VARCHAR, voivodeship_or_city VARCHAR)"}, {"answer": "SELECT area__1930__in_1, 000 AS skm_2 FROM table_name_72 WHERE capital = \"brze\u015b\u0107 nad bugiem\"", "question": "Capital of brze\u015b\u0107 nad bugiem has what area (1930) in 1000skm?", "context": "CREATE TABLE table_name_72 (area__1930__in_1 VARCHAR, capital VARCHAR)"}, {"answer": "SELECT population__1931__in_1, 000 AS s FROM table_name_88 WHERE capital = \"brze\u015b\u0107 nad bugiem\"", "question": "Capital of brze\u015b\u0107 nad bugiem has what population (1931) in 1,000s?", "context": "CREATE TABLE table_name_88 (population__1931__in_1 VARCHAR, capital VARCHAR)"}, {"answer": "SELECT poles FROM table_name_94 WHERE wins > 0 AND podiums < 17 AND fastest_laps = 0", "question": "Which Poles has a Wins larger than 0, and a Podiums smaller than 17?", "context": "CREATE TABLE table_name_94 (poles VARCHAR, fastest_laps VARCHAR, wins VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_name_74 WHERE fastest_laps = 0 AND races = 17 AND wins > 0 AND podiums < 2", "question": "which Poles has a Fastest Laps of 0, and a Races of 17, and a Wins larger than 0, and a Podiums smaller than 2?", "context": "CREATE TABLE table_name_74 (poles INTEGER, podiums VARCHAR, wins VARCHAR, fastest_laps VARCHAR, races VARCHAR)"}, {"answer": "SELECT SUM(fastest_laps) FROM table_name_81 WHERE poles = 4 AND races > 178", "question": "How many Fastest Laps have  Poles of 4, and Races larger than 178?", "context": "CREATE TABLE table_name_81 (fastest_laps INTEGER, poles VARCHAR, races VARCHAR)"}, {"answer": "SELECT MAX(fastest_laps) FROM table_name_65 WHERE season = \"2009\" AND poles < 0", "question": "Which the Fastest Lap has a Season of 2009 and Poles smaller than 0?", "context": "CREATE TABLE table_name_65 (fastest_laps INTEGER, season VARCHAR, poles VARCHAR)"}, {"answer": "SELECT AVG(fastest_laps) FROM table_name_8 WHERE poles = 0 AND season = \"2002\" AND podiums < 0", "question": "Which the Fastest Laps that have  Poles of 0, and a Season of 2002, and a Podiums smaller than 0?", "context": "CREATE TABLE table_name_8 (fastest_laps INTEGER, podiums VARCHAR, poles VARCHAR, season VARCHAR)"}, {"answer": "SELECT variant FROM table_name_68 WHERE launch_site = \"white sands\"", "question": "What Variant has a Launch site that is white sands?", "context": "CREATE TABLE table_name_68 (variant VARCHAR, launch_site VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE year = 1990", "question": "what was the score in 1990", "context": "CREATE TABLE table_name_85 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_40 WHERE year = 1950", "question": "In 1950 what is the average rank?", "context": "CREATE TABLE table_name_40 (rank INTEGER, year VARCHAR)"}, {"answer": "SELECT name FROM table_name_47 WHERE rank < 6 AND height_feet___m = \"617 / 188\"", "question": "What is the building's name that is 617 / 188 in height and ranked less than 6?", "context": "CREATE TABLE table_name_47 (name VARCHAR, rank VARCHAR, height_feet___m VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_1 WHERE time = \"6:21\"", "question": "What is the number of rounds that took place for the fight that lasted 6:21?", "context": "CREATE TABLE table_name_1 (round VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(year_of_most_recent_appearance) FROM table_name_27 WHERE year_of_first_appearance > 1976 AND corps_name = \"boston crusaders\"", "question": "What is the average year of the most recent appearance of the Boston Crusaders, who had their first appearance after 1976?", "context": "CREATE TABLE table_name_27 (year_of_most_recent_appearance INTEGER, year_of_first_appearance VARCHAR, corps_name VARCHAR)"}, {"answer": "SELECT COUNT(year_of_most_recent_appearance) FROM table_name_95 WHERE corps_name = \"suncoast sound\" AND number_of_finals_appearances > 7", "question": "What is the year of most recent appearance of the Suncoast sound, who had more than 7 finals appearances?", "context": "CREATE TABLE table_name_95 (year_of_most_recent_appearance VARCHAR, corps_name VARCHAR, number_of_finals_appearances VARCHAR)"}, {"answer": "SELECT COUNT(year_of_first_appearance) FROM table_name_38 WHERE corps_name = \"black knights\" AND number_of_finals_appearances < 1", "question": "What is the year of the first appearance of the Black Knights, who had less than 1 finals appearances?", "context": "CREATE TABLE table_name_38 (year_of_first_appearance VARCHAR, corps_name VARCHAR, number_of_finals_appearances VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_37 WHERE college = \"west virginia\" AND overall < 203", "question": "What is the Pick # of the player with an Overall less than 203 from West Virginia?", "context": "CREATE TABLE table_name_37 (pick__number VARCHAR, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_93 WHERE college = \"florida\" AND overall < 166", "question": "In what Round was the draft pick from Florida with an Overall less than 166?", "context": "CREATE TABLE table_name_93 (round INTEGER, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_38 WHERE bronze = 1 AND gold < 4", "question": "What is the highest number of silver when there is 1 bronze and less than 4 golds?", "context": "CREATE TABLE table_name_38 (silver INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_69 WHERE silver < 3 AND total = 7", "question": "How many bronze medals are there when there are fewer than 3 silver medals and 7 medals total?", "context": "CREATE TABLE table_name_69 (bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT team FROM table_name_73 WHERE rank = 3", "question": "What team has rank 3?", "context": "CREATE TABLE table_name_73 (team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT playing_for FROM table_name_27 WHERE _number_100 > 36 AND score = \"122\"", "question": "Which Playing For has a # 100 larger than 36, and a Score of 122?", "context": "CREATE TABLE table_name_27 (playing_for VARCHAR, _number_100 VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(_number_100) FROM table_name_87 WHERE season = \"1991\" AND against = \"surrey\"", "question": "Which # 100 has a Season of 1991, and an Against of surrey?", "context": "CREATE TABLE table_name_87 (_number_100 INTEGER, season VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(_number_100) FROM table_name_33 WHERE season = \"1990\" AND against = \"warwickshire\"", "question": "Which sum of # 100 has a Season of 1990, and an Against of warwickshire?", "context": "CREATE TABLE table_name_33 (_number_100 INTEGER, season VARCHAR, against VARCHAR)"}, {"answer": "SELECT against FROM table_name_98 WHERE season = \"1987/88\" AND _number_100 > 13 AND score = \"139\"", "question": "Which Against has a Season of 1987/88, and a # 100 larger than 13, and a Score of 139?", "context": "CREATE TABLE table_name_98 (against VARCHAR, score VARCHAR, season VARCHAR, _number_100 VARCHAR)"}, {"answer": "SELECT MAX(earnings___) AS $__ FROM table_name_90 WHERE wins > 37", "question": "What is the highest earnings for the golfer who has more than 37 wins?", "context": "CREATE TABLE table_name_90 (earnings___ INTEGER, wins INTEGER)"}, {"answer": "SELECT webcast FROM table_name_2 WHERE format = \"tejano\" AND callsign = \"kbdr\"", "question": "What Tejano webcast has a callsign of KBDR?", "context": "CREATE TABLE table_name_2 (webcast VARCHAR, format VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT MAX(frequency) FROM table_name_4 WHERE callsign = \"kbdr\"", "question": "What's the highest frequency of the KBDR callsign?", "context": "CREATE TABLE table_name_4 (frequency INTEGER, callsign VARCHAR)"}, {"answer": "SELECT website FROM table_name_81 WHERE webcast = \"listen live\" AND frequency = 99.3", "question": "What's the website for the Listen Live webcast on the 99.3 frequency?", "context": "CREATE TABLE table_name_81 (website VARCHAR, webcast VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT webcast FROM table_name_46 WHERE website = \"digital1073.com\"", "question": "Which Webcast has the digital1073.com website?", "context": "CREATE TABLE table_name_46 (webcast VARCHAR, website VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE tournament = \"at&t pebble beach national pro-am\" AND margin_of_victory = \"1 stroke\" AND to_par = \"\u201311\"", "question": "Which Date has a Tournament of at&t pebble beach national pro-am, and a Margin of victory of 1 stroke, and a To par of \u201311?", "context": "CREATE TABLE table_name_14 (date VARCHAR, to_par VARCHAR, tournament VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_39 WHERE margin_of_victory = \"1 stroke\" AND date = \"oct 7, 1990\"", "question": "Which Tournament has a Margin of victory of 1 stroke, and a Date of oct 7, 1990?", "context": "CREATE TABLE table_name_39 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE winning_score = 69 - 68 - 68 - 70 = 275", "question": "Which Date has a Winning score of 69-68-68-70=275?", "context": "CREATE TABLE table_name_31 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_22 WHERE winning_score = 64 - 68 - 66 - 63 = 261", "question": "Which To par has a Winning score of 64-68-66-63=261?", "context": "CREATE TABLE table_name_22 (to_par VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_67 WHERE tournament = \"walt disney world/oldsmobile classic\"", "question": "Which Winning score has a Tournament of walt disney world/oldsmobile classic?", "context": "CREATE TABLE table_name_67 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_91 WHERE gold < 0", "question": "What is the number in total of silver with a gold smaller than 0?", "context": "CREATE TABLE table_name_91 (silver VARCHAR, gold INTEGER)"}, {"answer": "SELECT SUM(gold) FROM table_name_98 WHERE rank = \"3\" AND silver > 7", "question": "What is the sum of gold with a rank that is 3 and a silver larger than 7?", "context": "CREATE TABLE table_name_98 (gold INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_54 WHERE nation = \"thailand\" AND gold < 17", "question": "What is the average total with a nation of thailand with a gold smaller than 17?", "context": "CREATE TABLE table_name_54 (total INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_17 WHERE bronze < 5 AND rank = \"8\"", "question": "What is the average gold with a bronze smaller than 5 with a rank of 8?", "context": "CREATE TABLE table_name_17 (gold INTEGER, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(launch) FROM table_name_58 WHERE origin = \"beijing\"", "question": "What is the earliest launch that was from Beijing?", "context": "CREATE TABLE table_name_58 (launch INTEGER, origin VARCHAR)"}, {"answer": "SELECT name FROM table_name_19 WHERE hanzi = \"\u6df1\u5733\u536b\u89c6\"", "question": "With a Hanzi of \u6df1\u5733\u536b\u89c6, what is the name?", "context": "CREATE TABLE table_name_19 (name VARCHAR, hanzi VARCHAR)"}, {"answer": "SELECT owner FROM table_name_30 WHERE launch > 1997 AND hanzi = \"\u53a6\u95e8\u536b\u89c6\"", "question": "Who is the owner of  the object launched after 1997 and a Hanzi of \u53a6\u95e8\u536b\u89c6?", "context": "CREATE TABLE table_name_30 (owner VARCHAR, launch VARCHAR, hanzi VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_91 WHERE date = \"november 18, 1951\"", "question": "What was the latest week that had a game on November 18, 1951?", "context": "CREATE TABLE table_name_91 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_18 WHERE date = \"november 11, 1951\"", "question": "Who was the opponent on November 11, 1951?", "context": "CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_13 WHERE result = \"w 31-21\" AND week < 9", "question": "What was the total attendance with a result of W 31-21 before week 9?", "context": "CREATE TABLE table_name_13 (attendance VARCHAR, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT lifespan FROM table_name_37 WHERE majors > 1 AND name = \"fuzzy zoeller\"", "question": "What lifespan has a majors greater than 1, and fuzzy zoeller as the name?", "context": "CREATE TABLE table_name_37 (lifespan VARCHAR, majors VARCHAR, name VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_15 WHERE date = \"november 27\"", "question": "what visitor came on november 27", "context": "CREATE TABLE table_name_15 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_33 WHERE home = \"chicago\"", "question": "what team was the visitor in the chicago game", "context": "CREATE TABLE table_name_33 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_40 WHERE home = \"chicago\"", "question": "what game was in chicago", "context": "CREATE TABLE table_name_40 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT player FROM table_name_24 WHERE date = \"may 10, 1999\"", "question": "Which player is associated with the date May 10, 1999?", "context": "CREATE TABLE table_name_24 (player VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_93 WHERE date = \"july 6, 1949\"", "question": "Which player is associated with the date July 6, 1949?", "context": "CREATE TABLE table_name_93 (player VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE player = \"wilbert robinson\"", "question": "Which date is associated with the player Wilbert Robinson?", "context": "CREATE TABLE table_name_40 (date VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_63 WHERE date = \"june 14, 1969\"", "question": "Which player is associated with the date June 14, 1969?", "context": "CREATE TABLE table_name_63 (player VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(rbis) FROM table_name_79 WHERE team = \"boston red sox\" AND date = \"july 27, 1946\"", "question": "When the team is the Boston Red Sox and the is date July 27, 1946, what are the average RBIs?", "context": "CREATE TABLE table_name_79 (rbis INTEGER, team VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_77 WHERE record = \"33-13-3\"", "question": "What is the sum of games for a record of 33-13-3?", "context": "CREATE TABLE table_name_77 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT SUM(january) FROM table_name_36 WHERE record = \"27-12-3\" AND game < 42", "question": "What was the sum of January values with a record of 27-12-3 for a game less than 42?", "context": "CREATE TABLE table_name_36 (january INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(january) FROM table_name_30 WHERE opponent = \"philadelphia flyers\"", "question": "What is the number in January for Philadelphia Flyers as opponents?", "context": "CREATE TABLE table_name_30 (january VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_48 WHERE record = \"32-12-3\"", "question": "What is the lowest game for a record of 32-12-3?", "context": "CREATE TABLE table_name_48 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_95 WHERE record = \"50-36\"", "question": "What was the lowest attendance at the game with a record of 50-36?", "context": "CREATE TABLE table_name_95 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_74 WHERE loss = \"westbrook (2-2)\"", "question": "Who was the opponent at the game that had a loss of Westbrook (2-2)?", "context": "CREATE TABLE table_name_74 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT COUNT(sales) FROM table_name_31 WHERE album_title = \"scouting for girls\"", "question": "How many copies of scouting for girls were sold?", "context": "CREATE TABLE table_name_31 (sales VARCHAR, album_title VARCHAR)"}, {"answer": "SELECT agg FROM table_name_2 WHERE team_2 = \"dynamo moscow\"", "question": "What is the agg of team 2 Dynamo Moscow?", "context": "CREATE TABLE table_name_2 (agg VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_27 WHERE team_2 = \"portol drac palma mallorca\"", "question": "What is the 1st leg for team 2 Portol Drac Palma Mallorca?", "context": "CREATE TABLE table_name_27 (team_2 VARCHAR)"}, {"answer": "SELECT guest FROM table_name_16 WHERE venue = \"stadion prljanije\"", "question": "Who was the guest at Stadion Prljanije?", "context": "CREATE TABLE table_name_16 (guest VARCHAR, venue VARCHAR)"}, {"answer": "SELECT guest FROM table_name_98 WHERE attendance = 3", "question": "Who was the guest when attendance was 3?", "context": "CREATE TABLE table_name_98 (guest VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT venue FROM table_name_24 WHERE home = \"fk crvena stijena\"", "question": "In what venue did FK Crvena Stijena play at home?", "context": "CREATE TABLE table_name_24 (venue VARCHAR, home VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_80 WHERE score = \"2:0\"", "question": "What is the sum of attendance when the score was 2:0?", "context": "CREATE TABLE table_name_80 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_82 WHERE score = \"0:1\"", "question": "How many were in attendance with a score of 0:1?", "context": "CREATE TABLE table_name_82 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_88 WHERE score = \"2:2\"", "question": "Who was at home when the score was 2:2?", "context": "CREATE TABLE table_name_88 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_16 WHERE opponent = \"@ blue jays\" AND date = \"june 7\"", "question": "What Score has an Opponent of @ Blue Jays with a Date of June 7?", "context": "CREATE TABLE table_name_16 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT time FROM table_name_72 WHERE loss = \"okajima (1-2)\"", "question": "What Time is listed for the Loss of Okajima (1-2)?", "context": "CREATE TABLE table_name_72 (time VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_56 WHERE date = \"june 2\"", "question": "What Loss is recorded for the Date June 2?", "context": "CREATE TABLE table_name_56 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(win__percentage) FROM table_name_78 WHERE appearances = 4 AND losses > 3", "question": "What's the total number of Win % with an Appearances of 4, and Losses that's larger than 3?", "context": "CREATE TABLE table_name_78 (win__percentage VARCHAR, appearances VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(appearances) FROM table_name_30 WHERE win__percentage = 0.706", "question": "What's listed as the lowest Appearances with a Win % of 0.706?", "context": "CREATE TABLE table_name_30 (appearances INTEGER, win__percentage VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_60 WHERE wins = 1 AND team = \"dallas stars\" AND win__percentage < 0.25", "question": "What's the lowest Losses recorded wiht a Wins of 1, Team of Dallas Stars, and a Win % that's smaller than 0.25?", "context": "CREATE TABLE table_name_60 (losses INTEGER, win__percentage VARCHAR, wins VARCHAR, team VARCHAR)"}, {"answer": "SELECT district FROM table_name_52 WHERE incumbent = \"benjamin eggleston\"", "question": "What district has benjamin eggleston for incumbent?", "context": "CREATE TABLE table_name_52 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_name_11 WHERE incumbent = \"tobias a. plants\"", "question": "Which party is tobias a. plants the incumbent?", "context": "CREATE TABLE table_name_11 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_name_89 WHERE result = \"retired republican hold\" AND incumbent = \"rufus p. spalding\"", "question": "wWhich district has a retired republican hold with an incumbent of rufus p. spalding?", "context": "CREATE TABLE table_name_89 (district VARCHAR, result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_name_67 WHERE result = \"retired republican hold\" AND incumbent = \"rufus p. spalding\"", "question": "Which district has a retired republican hold and an incumbent of rufus p. spalding?", "context": "CREATE TABLE table_name_67 (district VARCHAR, result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_25 WHERE 2012 = \"a\" AND 2011 = \"2r\"", "question": "Which tournament had a 2012 of a and a 2011 of 2r?", "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_72 WHERE 2010 = \"wta premier 5 tournaments\"", "question": "Which 2009's 2010 featured the wta premier 5 tournaments?", "context": "CREATE TABLE table_name_72 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_24 WHERE tournament = \"indian wells\"", "question": "Which 2011's tournament was Indian Wells?", "context": "CREATE TABLE table_name_24 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_2 WHERE tournament = \"olympic games\"", "question": "Which 2010 stat featured the tournament of the Olympic Games?", "context": "CREATE TABLE table_name_2 (tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE attendance = \"15,105\"", "question": "When did the Indians play a game with 15,105 people in attendance?", "context": "CREATE TABLE table_name_5 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE date = \"april 23\"", "question": "Who did the Indians play on April 23?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_86 WHERE rider = \"marco simoncelli\" AND grid > 11", "question": "What is the lowest number of laps for Marco Simoncelli on a grid higher than 11?", "context": "CREATE TABLE table_name_86 (laps INTEGER, rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_67 WHERE laps < 20 AND grid > 23", "question": "Who is the rider who did less than 20 laps on a grid number greater than 23?", "context": "CREATE TABLE table_name_67 (rider VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_74 WHERE manufacturer = \"ktm\" AND laps > 20", "question": "What is the lowest grid number that had a rider with KTM as the manufacturer who did more than 20 laps?", "context": "CREATE TABLE table_name_74 (grid INTEGER, manufacturer VARCHAR, laps VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_46 WHERE date = \"22 october 2012\"", "question": "What is the tournament on 22 October 2012?", "context": "CREATE TABLE table_name_46 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE opponent = \"alena tarasova\"", "question": "What is the date of the tournament with Alena Tarasova as the opponent?", "context": "CREATE TABLE table_name_56 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT hereditary_peers FROM table_name_15 WHERE total = 1", "question": "Which Hereditary peers have a Total of 1?", "context": "CREATE TABLE table_name_15 (hereditary_peers VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_17 WHERE hereditary_peers = \"\u2013\" AND lords_spiritual = \"\u2013\" AND life_peers = \"2\" AND affiliation = \"plaid cymru\"", "question": "Which Total has a Hereditary peer of \u2013, and a Lords spiritual of \u2013, and a Life peers of 2, and an Affiliation of plaid cymru?", "context": "CREATE TABLE table_name_17 (total VARCHAR, affiliation VARCHAR, life_peers VARCHAR, hereditary_peers VARCHAR, lords_spiritual VARCHAR)"}, {"answer": "SELECT elector FROM table_name_68 WHERE nationality = \"hungarian\"", "question": "Which Elector is hungarian?", "context": "CREATE TABLE table_name_68 (elector VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT cardinalatial_title FROM table_name_77 WHERE elevator = \"pope eugenius iv\"", "question": "Which Cardinalatial Title has an Elevator of pope eugenius iv?", "context": "CREATE TABLE table_name_77 (cardinalatial_title VARCHAR, elevator VARCHAR)"}, {"answer": "SELECT AVG(works_number) FROM table_name_1 WHERE number > 807 AND type = \"0-6-0\" AND date = 1920", "question": "Which Works number has a Number larger than 807, and a Type of 0-6-0, and a Date of 1920?", "context": "CREATE TABLE table_name_1 (works_number INTEGER, date VARCHAR, number VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_46 WHERE date < 1943 AND builder = \"alco schenectady\" AND number > 822 AND works_number = 59867", "question": "Which Type has a Date smaller than 1943, and a Builder of alco schenectady, and a Number larger than 822, and Works number of 59867?", "context": "CREATE TABLE table_name_46 (type VARCHAR, works_number VARCHAR, number VARCHAR, date VARCHAR, builder VARCHAR)"}, {"answer": "SELECT AVG(date) FROM table_name_19 WHERE builder = \"alco schenectady\" AND number > 835 AND works_number = 56566", "question": "Which Date has a Builder of alco schenectady, and a Number larger than 835, and Works number of 56566?", "context": "CREATE TABLE table_name_19 (date INTEGER, works_number VARCHAR, builder VARCHAR, number VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE election = \"1953\"", "question": "When was the Election of 1953?", "context": "CREATE TABLE table_name_46 (date VARCHAR, election VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE votes = \"50,324\"", "question": "On what date were there 50,324 votes?", "context": "CREATE TABLE table_name_78 (date VARCHAR, votes VARCHAR)"}, {"answer": "SELECT votes FROM table_name_32 WHERE date = \"november 10\"", "question": "How many votes were there on November 10?", "context": "CREATE TABLE table_name_32 (votes VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE record = \"79-48\"", "question": "What date has 79-48 as the record?", "context": "CREATE TABLE table_name_47 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_86 WHERE record = \"83-52\"", "question": "What is the average attendance that has 83-52 as the record?", "context": "CREATE TABLE table_name_86 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT segment_d FROM table_name_60 WHERE segment_a = \"umbrellas\"", "question": "Name the segment D for umbrellas", "context": "CREATE TABLE table_name_60 (segment_d VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_89 WHERE netflix = \"s05e01\"", "question": "Name the segment A for netflix of s05e01", "context": "CREATE TABLE table_name_89 (segment_a VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT series_ep FROM table_name_27 WHERE segment_d = \"darts\"", "question": "Name the series ep for darts", "context": "CREATE TABLE table_name_27 (series_ep VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT series_ep FROM table_name_63 WHERE segment_c = \"luxury cars (part 1)\"", "question": "Name the series ep for segment c of luxury cars (part 1)", "context": "CREATE TABLE table_name_63 (series_ep VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT school FROM table_name_79 WHERE location = \"rossville\"", "question": "What school is located in rossville?", "context": "CREATE TABLE table_name_79 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_name_73 WHERE ihsaa_class = \"a\" AND mascot = \"trojans\"", "question": "How many people enrolled a the school with an IHSAA Class of a, and the trojans as their mascot?", "context": "CREATE TABLE table_name_73 (enrollment INTEGER, ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_80 WHERE _number___county = \"12 clinton\" AND mascot = \"hornets\"", "question": "What IHSAA clas is the school with a county number of 12 clinton and the hornets as their mascot?", "context": "CREATE TABLE table_name_80 (ihsaa_class VARCHAR, _number___county VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE loss = \"lannan (4-8)\"", "question": "What is the score when a loss was listed with Lannan (4-8)?", "context": "CREATE TABLE table_name_48 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE record = \"44-37\"", "question": "What was the date when the Twins had a record of 44-37?", "context": "CREATE TABLE table_name_93 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponents_in_final FROM table_name_25 WHERE date = \"september 16, 1990\"", "question": "Which Opponents in Final has a Date of september 16, 1990?", "context": "CREATE TABLE table_name_25 (opponents_in_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT partner FROM table_name_87 WHERE date = \"june 18, 1989\"", "question": "Which Partner has a Date of june 18, 1989?", "context": "CREATE TABLE table_name_87 (partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents_in_final FROM table_name_15 WHERE outcome = \"winner\" AND surface = \"hard\" AND date = \"april 17, 1994\"", "question": "Which Opponents in Final has an Outcome of winner, and a Surface of hard, and a Date of april 17, 1994?", "context": "CREATE TABLE table_name_15 (opponents_in_final VARCHAR, date VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT opponents_in_final FROM table_name_19 WHERE score_in_final = \"7\u20135, 1\u20136 4\u20136\"", "question": "Which Opponents in Final has a Score in Final of 7\u20135, 1\u20136 4\u20136?", "context": "CREATE TABLE table_name_19 (opponents_in_final VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT partner FROM table_name_94 WHERE score_in_final = \"6\u20131, 6\u20132\"", "question": "Which Partner has a Score in Final of 6\u20131, 6\u20132?", "context": "CREATE TABLE table_name_94 (partner VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_29 WHERE opponent = \"@ new jersey devils\" AND game > 7", "question": "What is the total Points for the Opponent of @ New Jersey Devils and a Game bigger than 7?", "context": "CREATE TABLE table_name_29 (points INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT time FROM table_name_83 WHERE event = \"njkf titans neo x\"", "question": "What was the time of the NJKF Titans Neo X event?", "context": "CREATE TABLE table_name_83 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_72 WHERE time = \"2:06\" AND event = \"njkf magnam 16\"", "question": "What was the record after the NJKF Magnam 16 event that lasted 2:06?", "context": "CREATE TABLE table_name_72 (record VARCHAR, time VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_14 WHERE record = \"6-3\"", "question": "Which opponent led to a 6-3 record?", "context": "CREATE TABLE table_name_14 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_69 WHERE round > 2 AND name = \"lawrence sidbury\" AND overall < 125", "question": "How many Picks have a Round larger than 2, and a Name of lawrence sidbury, and an Overall smaller than 125?", "context": "CREATE TABLE table_name_69 (pick__number VARCHAR, overall VARCHAR, round VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_32 WHERE name = \"william middleton\" AND round > 5", "question": "Which Pick # is the highest one that has a Name of william middleton, and a Round larger than 5?", "context": "CREATE TABLE table_name_32 (pick__number INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_33 WHERE position = \"offensive tackle\"", "question": "Which Overall is the lowest one that has a Position of offensive tackle?", "context": "CREATE TABLE table_name_33 (overall INTEGER, position VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_95 WHERE name = \"vance walker\"", "question": "Which Overall is the average one that has a Name of vance walker?", "context": "CREATE TABLE table_name_95 (overall INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_86 WHERE name = \"lawrence sidbury\" AND round < 4", "question": "Which Pick # is the highest one that has a Name of lawrence sidbury, and a Round smaller than 4?", "context": "CREATE TABLE table_name_86 (pick__number INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(february) FROM table_name_35 WHERE opponent = \"st. louis blues\" AND game < 58", "question": "What is the February number of the game played against the St. Louis Blues with a game number less than 58?", "context": "CREATE TABLE table_name_35 (february INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_50 WHERE record = \"24-26-4\"", "question": "Who is the opponent of the game that had a record of 24-26-4?", "context": "CREATE TABLE table_name_50 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(february) FROM table_name_48 WHERE opponent = \"vancouver canucks\" AND game > 55", "question": "What is the February number of the game with the Vancouver Canucks as the opponent and a game number greater than 55?", "context": "CREATE TABLE table_name_48 (february VARCHAR, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_59 WHERE player = \"larry mcmorran\"", "question": "What nationality is Larry McMorran?", "context": "CREATE TABLE table_name_59 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE game = 17", "question": "what team scored 17", "context": "CREATE TABLE table_name_71 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE date = \"july 22\"", "question": "What was their record on July 22?", "context": "CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE record = \"46-39\"", "question": "On what date was their record 46-39?", "context": "CREATE TABLE table_name_17 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_1 WHERE date = \"october 20\"", "question": "What was the oilers record on October 20?", "context": "CREATE TABLE table_name_1 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_85 WHERE home = \"edmonton oilers\" AND visitor = \"chicago blackhawks\" AND date = \"november 27\"", "question": "What was the oilers record for the game on November 27 when the Edmonton oilers were playing at home and the Chicago Blackhawks were the visiting team?", "context": "CREATE TABLE table_name_85 (record VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT lead FROM table_name_25 WHERE left_bloc = \"8.4%\"", "question": "Name the lead with left bloc of 8.4%", "context": "CREATE TABLE table_name_25 (lead VARCHAR, left_bloc VARCHAR)"}, {"answer": "SELECT lead FROM table_name_95 WHERE institute = \"election results\" AND social_democratic = \"31.7% 8 seats\"", "question": "Name the lead for institute of election results and social democratic of 31.7% 8 seats", "context": "CREATE TABLE table_name_95 (lead VARCHAR, institute VARCHAR, social_democratic VARCHAR)"}, {"answer": "SELECT regionalliga_s\u00fcd FROM table_name_13 WHERE season = \"1995-96\"", "question": "What is the Regionalliga Sud for 1995-96?", "context": "CREATE TABLE table_name_13 (regionalliga_s\u00fcd VARCHAR, season VARCHAR)"}, {"answer": "SELECT regionalliga_nord - Ost FROM table_name_61 WHERE regionalliga_s\u00fcd = \"spvgg unterhaching\"", "question": "What was the Regionalliga Nord-Ost for the team that had a Regionalliga Sud of SpVgg Unterhaching?", "context": "CREATE TABLE table_name_61 (regionalliga_nord VARCHAR, Ost VARCHAR, regionalliga_s\u00fcd VARCHAR)"}, {"answer": "SELECT season FROM table_name_68 WHERE regionalliga_s\u00fcd = \"stuttgarter kickers\"", "question": "Which season had a Regionalliga Sud of Stuttgarter Kickers?", "context": "CREATE TABLE table_name_68 (season VARCHAR, regionalliga_s\u00fcd VARCHAR)"}, {"answer": "SELECT party FROM table_name_4 WHERE incumbent = \"charles van wyck\"", "question": "What party is Charles Van Wyck part of?", "context": "CREATE TABLE table_name_4 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_name_3 WHERE first_elected = 1858 AND result = \"defeated democratic gain\" AND incumbent = \"james humphrey\"", "question": "What district is James Humphrey from who was first elected in 1858 and was eventually defeated democratic gain?", "context": "CREATE TABLE table_name_3 (district VARCHAR, incumbent VARCHAR, first_elected VARCHAR, result VARCHAR)"}, {"answer": "SELECT surface FROM table_name_33 WHERE date = \"november 5, 1995\"", "question": "What surface was the November 5, 1995 match played on?", "context": "CREATE TABLE table_name_33 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE opponent_in_the_final = \"amy frazier\"", "question": "What date was the match played where Amy Frazier was the opponent?", "context": "CREATE TABLE table_name_80 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE date = \"august 17, 2005\"", "question": "What score was given at the August 17, 2005 match?", "context": "CREATE TABLE table_name_47 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_7 WHERE date = \"october 1, 2006\"", "question": "Which tournament was played on October 1, 2006?", "context": "CREATE TABLE table_name_7 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE surface = \"hard\" AND opponent_in_the_final = \"elena likhovtseva\"", "question": "What is the score of the match played on a hard surface with an opponent in the final of Elena Likhovtseva?", "context": "CREATE TABLE table_name_2 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT record FROM table_name_71 WHERE date = \"july 18\"", "question": "What was the team's record on july 18?", "context": "CREATE TABLE table_name_71 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT conference_joined FROM table_name_95 WHERE previous_conference = \"northwestern\" AND mascot = \"oilers\"", "question": "Which Conference Joined has a Previous Conference of northwestern, and a Mascot of oilers?", "context": "CREATE TABLE table_name_95 (conference_joined VARCHAR, previous_conference VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT MIN(year_left) FROM table_name_13 WHERE school = \"calumet\" AND year_joined > 1993", "question": "Which Year Left is the lowest one that has a School of calumet, and a Year Joined larger than 1993?", "context": "CREATE TABLE table_name_13 (year_left INTEGER, school VARCHAR, year_joined VARCHAR)"}, {"answer": "SELECT AVG(2012) FROM table_name_22 WHERE 2009 > 104.5 AND 2010 < 162.6 AND 2011 < 141.8", "question": "avg passengers in 2012 for 2009 more than 104.5 and 2010 less than 162.6 and 2011 less than 141.8 is what?", "context": "CREATE TABLE table_name_22 (Id VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_82 WHERE 2011 < 80.7 AND 2012 < 73.1", "question": "The lowest rank with 2011 less than 80.7 and 2012 less than 73.1 is what?", "context": "CREATE TABLE table_name_82 (rank INTEGER)"}, {"answer": "SELECT SUM(2009) FROM table_name_70 WHERE rank = 5 AND 2010 < 76.5", "question": "the sum of 2009 with rank of 5 and 2010 less than 76.5 is what?", "context": "CREATE TABLE table_name_70 (rank VARCHAR)"}, {"answer": "SELECT entered_office FROM table_name_45 WHERE throne_name = \"mohammad ali shah qajar\"", "question": "What was the Entered Office of the man with the throne name Mohammad Ali Shah Qajar?", "context": "CREATE TABLE table_name_45 (entered_office VARCHAR, throne_name VARCHAR)"}, {"answer": "SELECT main_location_s_ FROM table_name_77 WHERE _percentage_of_national = \"2.05%\"", "question": "What is listed for the Main Location(s) that has a % of National of 2.05%?", "context": "CREATE TABLE table_name_77 (main_location_s_ VARCHAR, _percentage_of_national VARCHAR)"}, {"answer": "SELECT area FROM table_name_17 WHERE output__2007_ = \"12,332 t\"", "question": "What's the Area with an Output (2007) of 12,332 T?", "context": "CREATE TABLE table_name_17 (area VARCHAR, output__2007_ VARCHAR)"}, {"answer": "SELECT main_location_s_ FROM table_name_16 WHERE area = \"19,800 ha\"", "question": "What Main Location(s) has an Area of 19,800 HA?", "context": "CREATE TABLE table_name_16 (main_location_s_ VARCHAR, area VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE record = \"4\u20130\u20130\"", "question": "On what date was the record 4\u20130\u20130?", "context": "CREATE TABLE table_name_81 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE home = \"toronto\"", "question": "what was the score in toronto", "context": "CREATE TABLE table_name_2 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_21 WHERE event = \"tpf 5: stars and strikes\"", "question": "Which Record has an Event of tpf 5: stars and strikes?", "context": "CREATE TABLE table_name_21 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_8 WHERE event = \"king of the cage: shock and awe\"", "question": "Which Opponent has an Event of king of the cage: shock and awe?", "context": "CREATE TABLE table_name_8 (opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT method FROM table_name_99 WHERE record = \"16\u20137\"", "question": "Which Method has a Record of 16\u20137?", "context": "CREATE TABLE table_name_99 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT round FROM table_name_32 WHERE method = \"decision (unanimous)\" AND event = \"ufc 145\"", "question": "Which Round has a Method of decision (unanimous), and an Event of ufc 145?", "context": "CREATE TABLE table_name_32 (round VARCHAR, method VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_70 WHERE round = \"1\" AND record = \"2\u20130\"", "question": "Which Event has a Round of 1, and a Record of 2\u20130?", "context": "CREATE TABLE table_name_70 (event VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_25 WHERE team_classification = \"mapei-clas\" AND stage = \"12\"", "question": "What is the general classification of Mapei-clas in stage 12?", "context": "CREATE TABLE table_name_25 (general_classification VARCHAR, team_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_name_48 WHERE stage = \"p\"", "question": "Which winner has a P stage?", "context": "CREATE TABLE table_name_48 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_7 WHERE team_classification = \"banesto\" AND points_classification = \"tony rominger\"", "question": "Which stage corresponds to Banesto and Tony Rominger?", "context": "CREATE TABLE table_name_7 (stage VARCHAR, team_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT format FROM table_name_74 WHERE type = \"primary\" AND call_letters = \"kbjs\"", "question": "Type of primary, and a Call letters of kbjs has what format?", "context": "CREATE TABLE table_name_74 (format VARCHAR, type VARCHAR, call_letters VARCHAR)"}, {"answer": "SELECT COUNT(frequency__mhz_) FROM table_name_52 WHERE type = \"primary\" AND call_letters = \"ktbb-fm\"", "question": "Frequency (MHz) that has a Type of primary, and a Call letters of ktbb-fm has what total number?", "context": "CREATE TABLE table_name_52 (frequency__mhz_ VARCHAR, type VARCHAR, call_letters VARCHAR)"}, {"answer": "SELECT AVG(frequency__mhz_) FROM table_name_40 WHERE type = \"primary\" AND call_letters = \"kktx-fm\"", "question": "Type of primary, and a Call letters of kktx-fm has what average Frequency (MHz)?", "context": "CREATE TABLE table_name_40 (frequency__mhz_ INTEGER, type VARCHAR, call_letters VARCHAR)"}, {"answer": "SELECT SUM(frequency__mhz_) FROM table_name_99 WHERE call_letters = \"krmd-fm\"", "question": "Frequency (MHz) that has a Call letters of krmd-fm has what sum?", "context": "CREATE TABLE table_name_99 (frequency__mhz_ INTEGER, call_letters VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE game = 1", "question": "What date has 1 for the game?", "context": "CREATE TABLE table_name_84 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_14 WHERE date = \"april 10\"", "question": "What opponent has april 10 as the date?", "context": "CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_82 WHERE round > 6 AND position = \"d\"", "question": "What player has a round larger than 6 with a D position.", "context": "CREATE TABLE table_name_82 (player VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_44 WHERE nationality = \"united states\" AND round < 12", "question": "What league is from the United States and a round smaller than 12.", "context": "CREATE TABLE table_name_44 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_51 WHERE round = 10 AND player = \"paul cain\"", "question": "What league has a 10 for round with Paul Cain?", "context": "CREATE TABLE table_name_51 (college_junior_club_team__league_ VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_84 WHERE position = \"d\" AND round < 11 AND player = \"dennis vial\"", "question": "What league has a D position, a round smaller than 11 and is with Dennis Vial?", "context": "CREATE TABLE table_name_84 (college_junior_club_team__league_ VARCHAR, player VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT rank FROM table_name_76 WHERE gatchaman = \"jinpei\"", "question": "What is the rank of the gatchaman of Jinpei?", "context": "CREATE TABLE table_name_76 (rank VARCHAR, gatchaman VARCHAR)"}, {"answer": "SELECT japanese_voice_actor FROM table_name_87 WHERE battle_of_the_planets = \"keyop\"", "question": "Who is the Japanese voice actor of the Battle of the Planets of Keyop?", "context": "CREATE TABLE table_name_87 (japanese_voice_actor VARCHAR, battle_of_the_planets VARCHAR)"}, {"answer": "SELECT rank FROM table_name_38 WHERE gatchaman = \"jinpei\"", "question": "What is the rank of the gatchaman Jinpei?", "context": "CREATE TABLE table_name_38 (rank VARCHAR, gatchaman VARCHAR)"}, {"answer": "SELECT voice_actor__harmony_gold_ova_dub_ FROM table_name_48 WHERE japanese_voice_actor = \"yoku shioya\"", "question": "Who is the voice actor of the character with the Japanese voice actor Yoku Shioya?", "context": "CREATE TABLE table_name_48 (voice_actor__harmony_gold_ova_dub_ VARCHAR, japanese_voice_actor VARCHAR)"}, {"answer": "SELECT mecha FROM table_name_33 WHERE bird_uniform = \"condor\"", "question": "What is the mecha with a condor bird uniform?", "context": "CREATE TABLE table_name_33 (mecha VARCHAR, bird_uniform VARCHAR)"}, {"answer": "SELECT voice_actor__harmony_gold_ova_dub_ FROM table_name_10 WHERE voice_actor__adv_tv_sentai_ova_dub_ = \"kim prause\"", "question": "Who is the voice actor (harmony gold ova dub) of the character with a voice actor (adv TV/sentai ova dub) Kim Prause?", "context": "CREATE TABLE table_name_10 (voice_actor__harmony_gold_ova_dub_ VARCHAR, voice_actor__adv_tv_sentai_ova_dub_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE surface = \"clay\" AND partner = \"patricia tarabini\" AND date = \"25 july 1994\"", "question": "What is the score of the tournament on 25 July 1994 with a clay surface and Patricia Tarabini as the partner?", "context": "CREATE TABLE table_name_83 (score VARCHAR, date VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_12 WHERE date = \"6 july 1987\"", "question": "Who is the partner of the tournament on 6 July 1987?", "context": "CREATE TABLE table_name_12 (partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT partner FROM table_name_93 WHERE tournament = \"tampa\"", "question": "Who is the partner at the Tampa tournament?", "context": "CREATE TABLE table_name_93 (partner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tenure FROM table_name_90 WHERE revenues = \"60,000-->58,000 koku\"", "question": "What is the tenure of the person with revenues of 60,000-->58,000 koku?", "context": "CREATE TABLE table_name_90 (tenure VARCHAR, revenues VARCHAR)"}, {"answer": "SELECT court_rank FROM table_name_70 WHERE courtesy_title = \"nagato-no-kami\"", "question": "What is the court rank of the person with a courtesy title of nagato-no-kami?", "context": "CREATE TABLE table_name_70 (court_rank VARCHAR, courtesy_title VARCHAR)"}, {"answer": "SELECT name FROM table_name_32 WHERE courtesy_title = \"sanuki-no-kami/jiju\"", "question": "What is the name of the person with a courtesy title of sanuki-no-kami/jiju?", "context": "CREATE TABLE table_name_32 (name VARCHAR, courtesy_title VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE record = \"39-14\"", "question": "what day was the score 39-14", "context": "CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT position FROM table_name_85 WHERE affiliation = \"ucla\"", "question": "Which position did the drafted player affiliated with UCLA play?", "context": "CREATE TABLE table_name_85 (position VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT mls_team FROM table_name_29 WHERE affiliation = \"university of california\"", "question": "Which MLS tea, drafted a player affilaited with the university of california?", "context": "CREATE TABLE table_name_29 (mls_team VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT rank FROM table_name_65 WHERE active_service = \"american civil war and indian wars\"", "question": "What rank does the person participating in American Civil war and indian wars?", "context": "CREATE TABLE table_name_65 (rank VARCHAR, active_service VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE tournament = \"the tour championship\"", "question": "When did the Tournament of the Tour Championship take place?", "context": "CREATE TABLE table_name_10 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT AVG(number_of_seasons_in_top_division) FROM table_name_65 WHERE number_of_seasons_in_prva_hnl = 17", "question": "Name the average number of seasons for Prva HNL of 17", "context": "CREATE TABLE table_name_65 (number_of_seasons_in_top_division INTEGER, number_of_seasons_in_prva_hnl VARCHAR)"}, {"answer": "SELECT MIN(number_of_seasons_in_top_division) FROM table_name_46 WHERE position_in_2012_13 = \"001 1st\"", "question": "Name the least number of seasons in top division with position in 2012-13 of 001 1st", "context": "CREATE TABLE table_name_46 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR)"}, {"answer": "SELECT first FROM table_name_30 WHERE dob = \"5 february 1979\"", "question": "Which first was born on 5 february 1979?", "context": "CREATE TABLE table_name_30 (first VARCHAR, dob VARCHAR)"}, {"answer": "SELECT first FROM table_name_62 WHERE position = \"c\" AND bats = \"l\"", "question": "Which First has a Position of c, and Bats of l?", "context": "CREATE TABLE table_name_62 (first VARCHAR, position VARCHAR, bats VARCHAR)"}, {"answer": "SELECT first FROM table_name_42 WHERE surname = \"searle\"", "question": "Which First has a Surname of searle?", "context": "CREATE TABLE table_name_42 (first VARCHAR, surname VARCHAR)"}, {"answer": "SELECT surname FROM table_name_64 WHERE throws = \"r\" AND position = \"p\" AND dob = \"26 april 1989\"", "question": "Which Surname has Throws of r, and a Position of p, and a DOB of 26 april 1989?", "context": "CREATE TABLE table_name_64 (surname VARCHAR, dob VARCHAR, throws VARCHAR, position VARCHAR)"}, {"answer": "SELECT dob FROM table_name_56 WHERE first = \"david\" AND throws = \"l\" AND position = \"if\"", "question": "Which DOB has a First of david, and Throws of l, and a Position of if?", "context": "CREATE TABLE table_name_56 (dob VARCHAR, position VARCHAR, first VARCHAR, throws VARCHAR)"}, {"answer": "SELECT throws FROM table_name_39 WHERE first = \"pj\"", "question": "How many throws does PJ have?", "context": "CREATE TABLE table_name_39 (throws VARCHAR, first VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_24 WHERE televoting = 9 AND jury < 10", "question": "Televoting of 9, and a Jury smaller than 10 had what sum of draw?", "context": "CREATE TABLE table_name_24 (draw INTEGER, televoting VARCHAR, jury VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_17 WHERE jury > 6 AND artist = \"zhenya rasskazova\" AND draw > 9", "question": "Jury larger than 6, and a Artist of zhenya rasskazova, and a Draw larger than 9 had what sum of points?", "context": "CREATE TABLE table_name_17 (points INTEGER, draw VARCHAR, jury VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_25 WHERE televoting < 2", "question": "Televoting smaller than 2 had what highest draw?", "context": "CREATE TABLE table_name_25 (draw INTEGER, televoting INTEGER)"}, {"answer": "SELECT opponent FROM table_name_1 WHERE loss = \"hoeft (19-14)\"", "question": "Who was the opponent when Hoeft (19-14) took the loss?", "context": "CREATE TABLE table_name_1 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE record = \"80-63\"", "question": "What was the score of the game that led to an 80-63 record?", "context": "CREATE TABLE table_name_82 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_62 WHERE loss = \"brown (9-5)\"", "question": "Who was the opponent when Brown (9-5) took the loss?", "context": "CREATE TABLE table_name_62 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT performer_1 FROM table_name_13 WHERE performer_3 = \"sandi toksvig\" AND performer_4 = \"mike mcshane\"", "question": "What was Performer 1's name who performed with Sandi Toksvig as Performer 3 and Mike McShane as Performer 4?", "context": "CREATE TABLE table_name_13 (performer_1 VARCHAR, performer_3 VARCHAR, performer_4 VARCHAR)"}, {"answer": "SELECT performer_4 FROM table_name_14 WHERE performer_3 = \"ryan stiles\" AND episode = 14", "question": "What was Performer 4's name when Performer 3 was Ryan Stiles on episode 14?", "context": "CREATE TABLE table_name_14 (performer_4 VARCHAR, performer_3 VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_64 WHERE opponent = \"@ new york islanders\" AND game > 35", "question": "How many points have @ new york islanders as the opponent, with a game greater than 35?", "context": "CREATE TABLE table_name_64 (points VARCHAR, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_40 WHERE december < 6 AND points < 38 AND opponent = \"pittsburgh penguins\"", "question": "What record has a december less than 6, points less than 38, and pittsburgh penguins as the opponent?", "context": "CREATE TABLE table_name_40 (record VARCHAR, opponent VARCHAR, december VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_50 WHERE county = \"carroll\"", "question": "When the county is Carroll what is the lowest population?", "context": "CREATE TABLE table_name_50 (population INTEGER, county VARCHAR)"}, {"answer": "SELECT AVG(population) FROM table_name_70 WHERE per_capita_income = \"$29,194\"", "question": "When the Per capita income is $29,194, what is the average population?", "context": "CREATE TABLE table_name_70 (population INTEGER, per_capita_income VARCHAR)"}, {"answer": "SELECT year FROM table_name_19 WHERE class = \"250\"", "question": "Which year has a railway class of 250?", "context": "CREATE TABLE table_name_19 (year VARCHAR, class VARCHAR)"}, {"answer": "SELECT works_no FROM table_name_69 WHERE class = \"15th\" AND year = \"1940\"", "question": "Which works number has a class of 15th and year of 1940?", "context": "CREATE TABLE table_name_69 (works_no VARCHAR, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT builder FROM table_name_18 WHERE railway = \"rhodesia railways\"", "question": "Which builder has a railway of Rhodesia Railways?", "context": "CREATE TABLE table_name_18 (builder VARCHAR, railway VARCHAR)"}, {"answer": "SELECT railway FROM table_name_76 WHERE class = \"250\" AND year = \"1936\"", "question": "Which railway has a class of 250 and year 1936?", "context": "CREATE TABLE table_name_76 (railway VARCHAR, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_43 WHERE attendance = \"53,677\"", "question": "which week had an attendance of 53,677?", "context": "CREATE TABLE table_name_43 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_21 WHERE attendance = \"bye\"", "question": "which team had a bye week?", "context": "CREATE TABLE table_name_21 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE points < 85 AND game__number = 74", "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 visitor FROM table_name_20 WHERE game__number < 67 AND home = \"buffalo\"", "question": "What is listed for Vistor that has a Game # that is smaller than 67 and has a Home listed as Buffalo?", "context": "CREATE TABLE table_name_20 (visitor VARCHAR, game__number VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE home = \"calgary\"", "question": "What Date has a Home listed as Calgary?", "context": "CREATE TABLE table_name_48 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE record = \"35-28-6\"", "question": "What Score has a Record of 35-28-6?", "context": "CREATE TABLE table_name_65 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE points < 80 AND home = \"los angeles\" AND visitor = \"pittsburgh\"", "question": "What Date has Points smaller than 80, Home of Los Angeles, and a Visitor of Pittsburgh?", "context": "CREATE TABLE table_name_76 (date VARCHAR, visitor VARCHAR, points VARCHAR, home VARCHAR)"}, {"answer": "SELECT week_10_nov_2 FROM table_name_4 WHERE week_14_nov_30 = \"penn state (11-1)\"", "question": "Which Week 10 Nov 2 has a Week 14 Nov 30 of penn state (11-1)?", "context": "CREATE TABLE table_name_4 (week_10_nov_2 VARCHAR, week_14_nov_30 VARCHAR)"}, {"answer": "SELECT week_7_oct_12 FROM table_name_15 WHERE week_11_nov_9 = \"week 11 nov 9\"", "question": "Which Week 7 Oct 12 has a Week 11 Nov 9 of week 11 nov 9?", "context": "CREATE TABLE table_name_15 (week_7_oct_12 VARCHAR, week_11_nov_9 VARCHAR)"}, {"answer": "SELECT week_7_oct_12 FROM table_name_79 WHERE week_9_oct_26 = \"tulsa (7-0)\"", "question": "Which Week 7 Oct 12 has a Week 9 Oct 26 of tulsa (7-0)?", "context": "CREATE TABLE table_name_79 (week_7_oct_12 VARCHAR, week_9_oct_26 VARCHAR)"}, {"answer": "SELECT week_10_nov_2 FROM table_name_86 WHERE week_9_oct_26 = \"lsu (5-2)\"", "question": "Which Week 10 Nov 2 has a Week 9 Oct 26 of lsu (5-2)?", "context": "CREATE TABLE table_name_86 (week_10_nov_2 VARCHAR, week_9_oct_26 VARCHAR)"}, {"answer": "SELECT week_14_nov_30 FROM table_name_1 WHERE week_6_oct_5 = \"michigan state (5-1)\"", "question": "Which Week 14 Nov 30 has a Week 6 Oct 5 of michigan state (5-1)?", "context": "CREATE TABLE table_name_1 (week_14_nov_30 VARCHAR, week_6_oct_5 VARCHAR)"}, {"answer": "SELECT week_13_nov_23 FROM table_name_73 WHERE week_6_oct_5 = \"oklahoma state (5-0)\"", "question": "Which Week 13 Nov 23 has a Week 6 Oct 5 of oklahoma state (5-0)?", "context": "CREATE TABLE table_name_73 (week_13_nov_23 VARCHAR, week_6_oct_5 VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_16 WHERE torque = \"n\u00b7m (lb\u00b7ft) @ 3000 rpm\"", "question": "What was the displacement having a torque of n\u00b7m (lb\u00b7ft) @ 3000 rpm?", "context": "CREATE TABLE table_name_16 (displacement VARCHAR, torque VARCHAR)"}, {"answer": "SELECT engine FROM table_name_61 WHERE power = \"48kw (65 ps) @ 5600 rpm\"", "question": "Which engine had a 48kw (65 ps) @ 5600 rpm power?", "context": "CREATE TABLE table_name_61 (engine VARCHAR, power VARCHAR)"}, {"answer": "SELECT model FROM table_name_94 WHERE power = \"66kw (90 ps) @ 6250 rpm\"", "question": "Which model had a power of 66kw (90 ps) @ 6250 rpm?", "context": "CREATE TABLE table_name_94 (model VARCHAR, power VARCHAR)"}, {"answer": "SELECT engine FROM table_name_78 WHERE displacement = \"1,585 cc\" AND model = \"90i\"", "question": "Which of the engines has a displacement of 1,585 cc, with a model number of 90i?", "context": "CREATE TABLE table_name_78 (engine VARCHAR, displacement VARCHAR, model VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE venue = \"memorial stadium\"", "question": "Who was the opponent at memorial stadium?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT height FROM table_name_43 WHERE player = \"mike bibby\"", "question": "Which Height has a Player of mike bibby?", "context": "CREATE TABLE table_name_43 (height VARCHAR, player VARCHAR)"}, {"answer": "SELECT pos FROM table_name_11 WHERE first_round < 10", "question": "Which Pos has a First round smaller than 10?", "context": "CREATE TABLE table_name_11 (pos VARCHAR, first_round INTEGER)"}, {"answer": "SELECT COUNT(points) FROM table_name_96 WHERE losses < 5 AND draws = 0", "question": "How many points have a loss less than 5, and 0 for draws?", "context": "CREATE TABLE table_name_96 (points VARCHAR, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_23 WHERE league = \"w-2 (w-league)\" AND draws > 2", "question": "What is the lowest points that has w-2 (w-league) as the league, and draws greater than 2?", "context": "CREATE TABLE table_name_23 (points INTEGER, league VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_11 WHERE year < 1999 AND draws > 1 AND points > 17", "question": "What is the lowest wins that has a year prior to 1999, with draws greater than 1, and points greater than 17?", "context": "CREATE TABLE table_name_11 (wins INTEGER, points VARCHAR, year VARCHAR, draws VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_52 WHERE year > 2001", "question": "How many losses have a year later than 2001?", "context": "CREATE TABLE table_name_52 (losses INTEGER, year INTEGER)"}, {"answer": "SELECT county FROM table_name_80 WHERE name = \"himco dump\"", "question": "Which county includes Himco Dump?", "context": "CREATE TABLE table_name_80 (county VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_62 WHERE drawn = 0 AND games > 5", "question": "Drawn of 0, and a Games larger than 5 has what amount of highest points?", "context": "CREATE TABLE table_name_62 (points INTEGER, drawn VARCHAR, games VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_75 WHERE lost > 4", "question": "Lost larger than 4 is what highest drawn?", "context": "CREATE TABLE table_name_75 (drawn INTEGER, lost INTEGER)"}, {"answer": "SELECT SUM(games) FROM table_name_10 WHERE points_difference = \"18 - 33\" AND points < 4", "question": "Points difference of 18 - 33, and a Points smaller than 4 is the total of what sum of games?", "context": "CREATE TABLE table_name_10 (games INTEGER, points_difference VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_name_73 WHERE party = \"dem\" AND district > 24 AND home_city_town = \"berlin\"", "question": "Which First elected is the highest one that has a Party of dem, and a District larger than 24, and a Home city/town of berlin?", "context": "CREATE TABLE table_name_73 (first_elected INTEGER, home_city_town VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT record FROM table_name_45 WHERE visitor = \"pittsburgh\" AND date = \"november 23\"", "question": "What record has pittsburgh as the visitor, and November 23 as the date?", "context": "CREATE TABLE table_name_45 (record VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_13 WHERE points < 16 AND home = \"detroit\"", "question": "What record has points less than 16, and detroit as the home?", "context": "CREATE TABLE table_name_13 (record VARCHAR, points VARCHAR, home VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_38 WHERE visitor = \"pittsburgh\" AND home = \"philadelphia\"", "question": "How many points have pittsburgh as the visitor, and philadelphia as the home?", "context": "CREATE TABLE table_name_38 (points VARCHAR, visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT points FROM table_name_30 WHERE home = \"pittsburgh\" AND date = \"november 29\"", "question": "What points have pittsburgh as the home, and November 29 as the date?", "context": "CREATE TABLE table_name_30 (points VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_66 WHERE date = \"december 11, 1966\"", "question": "What was the attendance at the game on December 11, 1966?", "context": "CREATE TABLE table_name_66 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_83 WHERE result = \"l 14-3\"", "question": "What was the latest week with a result of l 14-3?", "context": "CREATE TABLE table_name_83 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_14 WHERE date = \"bye\"", "question": "What was the total number of weeks with a date of bye?", "context": "CREATE TABLE table_name_14 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_20 WHERE result = \"w 26-20\"", "question": "Who was the opponent at the game with a result of W 26-20?", "context": "CREATE TABLE table_name_20 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_89 WHERE week = 2", "question": "What was the attendance at the week 2 game?", "context": "CREATE TABLE table_name_89 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_96 WHERE team = \"suzuki\" AND year < 1981 AND wins < 0", "question": "Before 1981, how many Points did Team Suzuki have with less than 0 Wins?", "context": "CREATE TABLE table_name_96 (points INTEGER, wins VARCHAR, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_51 WHERE year > 1986 AND team = \"lucky strike yamaha\" AND points < 6", "question": "After 1986, how many Wins did Lucky Strike Yamaha Team with less than 6 Points have?", "context": "CREATE TABLE table_name_51 (wins INTEGER, points VARCHAR, year VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_84 WHERE machine = \"rg500\" AND points > 17", "question": "In what Year did the RG500 Machine have more than 17 Points?", "context": "CREATE TABLE table_name_84 (year VARCHAR, machine VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_19 WHERE year = 1988", "question": "What were the least Wins in 1988?", "context": "CREATE TABLE table_name_19 (wins INTEGER, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_79 WHERE february > 12 AND game < 60 AND opponent = \"new york islanders\"", "question": "How many points did the Flyers have against the New York Islanders with a February bigger than 12, and a game smaller than 60?", "context": "CREATE TABLE table_name_79 (points VARCHAR, opponent VARCHAR, february VARCHAR, game VARCHAR)"}, {"answer": "SELECT location FROM table_name_68 WHERE date = \"feb 10\"", "question": "What is the location of the tournament on Feb 10?", "context": "CREATE TABLE table_name_68 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE location = \"north carolina\" AND tournament = \"kmart greater greensboro open\"", "question": "What is the date of the Kmart greater greensboro open in North Carolina?", "context": "CREATE TABLE table_name_65 (date VARCHAR, location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winner FROM table_name_76 WHERE tournament = \"h.e.b. texas open\"", "question": "Who is the winner of the H.E.B. Texas open?", "context": "CREATE TABLE table_name_76 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT AVG(weight) FROM table_name_63 WHERE position = \"guard\" AND name = \"jeremy case\"", "question": "What is the average weight of Jeremy Case, who plays guard?", "context": "CREATE TABLE table_name_63 (weight INTEGER, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_56 WHERE home_town = \"new york city, ny\"", "question": "What is the position of the player from New York City, NY?", "context": "CREATE TABLE table_name_56 (position VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT year FROM table_name_53 WHERE position = \"guard\" AND name = \"mario chalmers\"", "question": "What year is guard Mario Chalmers?", "context": "CREATE TABLE table_name_53 (year VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_51 WHERE country = \"japan\"", "question": "What was japan's score?", "context": "CREATE TABLE table_name_51 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT venue FROM table_name_66 WHERE country = \"england\" AND champion = \"alison nicholas\"", "question": "Which Venue has a Country of england, and a Champion of alison nicholas?", "context": "CREATE TABLE table_name_66 (venue VARCHAR, country VARCHAR, champion VARCHAR)"}, {"answer": "SELECT country FROM table_name_16 WHERE year > 1978 AND score = \"295\" AND venue = \"lindrick golf club\"", "question": "Which Country has a Year larger than 1978, and a Score of 295, and a Venue of lindrick golf club?", "context": "CREATE TABLE table_name_16 (country VARCHAR, venue VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_35 WHERE odds = \"9/1\"", "question": "what player scored 9/1", "context": "CREATE TABLE table_name_35 (jockey VARCHAR, odds VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE score = \"6\u20134, 7\u20135\"", "question": "On what date was the score 6\u20134, 7\u20135?", "context": "CREATE TABLE table_name_69 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_79 WHERE outcome = \"runner-up\" AND date = \"november 15, 2010\"", "question": "Who was the opponent with an outcome runner-up on November 15, 2010?", "context": "CREATE TABLE table_name_79 (opponent VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_98 WHERE opponent = \"rik de voest\"", "question": "What was the outcome for Rik de Voest as opponent?", "context": "CREATE TABLE table_name_98 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE date = \"october 24, 2005\"", "question": "What was the score on October 24, 2005?", "context": "CREATE TABLE table_name_55 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(state_champions) FROM table_name_72 WHERE mrc_championships > 9 AND records = \"192-189-3\" AND co_champions > 4", "question": "What is the sum of state champions with more tan 9 MRC Championships, more than 4 co-champions, and a record of 192-189-3?", "context": "CREATE TABLE table_name_72 (state_champions INTEGER, co_champions VARCHAR, mrc_championships VARCHAR, records VARCHAR)"}, {"answer": "SELECT co_champions FROM table_name_49 WHERE solo = 3 AND mrc_championships > 3", "question": "What was the co-champions value when solo was 3 and MRC Championships is greater than 3?", "context": "CREATE TABLE table_name_49 (co_champions VARCHAR, solo VARCHAR, mrc_championships VARCHAR)"}, {"answer": "SELECT MAX(co_champions) FROM table_name_51 WHERE pct < 0.786 AND mrc_championships = 6 AND records = \"88-45-6\"", "question": "What is the highest value for co-champions when the PCT is less than 0.786 and MRC championships is 6 with records of 88-45-6?", "context": "CREATE TABLE table_name_51 (co_champions INTEGER, records VARCHAR, pct VARCHAR, mrc_championships VARCHAR)"}, {"answer": "SELECT AVG(mrc_championships) FROM table_name_31 WHERE pct > 0.685 AND co_champions > 1 AND solo < 5", "question": "What is the average value of MRC Championships with more than 0.685 PCT., more than 1 for co-champions, and less than 5 solo?", "context": "CREATE TABLE table_name_31 (mrc_championships INTEGER, solo VARCHAR, pct VARCHAR, co_champions VARCHAR)"}, {"answer": "SELECT AVG(pct) FROM table_name_51 WHERE state_champions < 1 AND mrc_championships = 10 AND co_champions > 4", "question": "What is the average Pct value when state champions is less than 1, MRC Championships  is 10, and co-champions are greater than 4?", "context": "CREATE TABLE table_name_51 (pct INTEGER, co_champions VARCHAR, state_champions VARCHAR, mrc_championships VARCHAR)"}, {"answer": "SELECT name FROM table_name_46 WHERE street_address = \"980 n. michigan avenue\"", "question": "Street Address of 980 n. michigan avenue is what name?", "context": "CREATE TABLE table_name_46 (name VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT MIN(floors) FROM table_name_39 WHERE name = \"900 north michigan\" AND year < 1989", "question": "Name of 900 north michigan, and a Year smaller than 1989 involves what lowest floors?", "context": "CREATE TABLE table_name_39 (floors INTEGER, name VARCHAR, year VARCHAR)"}, {"answer": "SELECT name FROM table_name_32 WHERE street_address = \"401 n. wabash avenue\"", "question": "Street Address of 401 n. wabash avenue involves what name?", "context": "CREATE TABLE table_name_32 (name VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_66 WHERE pick > 229 AND round < 12 AND position = \"defensive back\"", "question": "Pick larger than 229, and a Round smaller than 12, and a Position of defensive back is what school/club team?", "context": "CREATE TABLE table_name_66 (school_club_team VARCHAR, position VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_30 WHERE player = \"mike o'quinn\" AND round < 15", "question": "Player of mike o'quinn, and a Round smaller than 15 had what lowest pick?", "context": "CREATE TABLE table_name_30 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_24 WHERE round = 11", "question": "Round of 11 had waht sum of pick?", "context": "CREATE TABLE table_name_24 (pick INTEGER, round VARCHAR)"}, {"answer": "SELECT division FROM table_name_26 WHERE position = \"6th\"", "question": "Which Division has a Position of 6th?", "context": "CREATE TABLE table_name_26 (division VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(season) FROM table_name_18 WHERE level = \"tier 4\" AND position = \"11th\"", "question": "Which Season has a Level of tier 4, and a Position of 11th?", "context": "CREATE TABLE table_name_18 (season INTEGER, level VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_82 WHERE level = \"tier 2\" AND position = \"1st\"", "question": "Which Season has a Level of tier 2 and a Position of 1st?", "context": "CREATE TABLE table_name_82 (season VARCHAR, level VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_38 WHERE level = \"tier 3\" AND season < 1999", "question": "Which Position  has a Level of tier 3 and a Season smaller than 1999?", "context": "CREATE TABLE table_name_38 (position VARCHAR, level VARCHAR, season VARCHAR)"}, {"answer": "SELECT median_family_income FROM table_name_12 WHERE median_household_income = \"$43,125\"", "question": "Which Median family income has a Median household income of $43,125?", "context": "CREATE TABLE table_name_12 (median_family_income VARCHAR, median_household_income VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_66 WHERE median_household_income = \"$37,759\"", "question": "How many people have a Median household income of $37,759?", "context": "CREATE TABLE table_name_66 (population INTEGER, median_household_income VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_46 WHERE attendance < 21 OFFSET 097", "question": "What week had an Attendance smaller than 21,097?", "context": "CREATE TABLE table_name_46 (week VARCHAR, attendance INTEGER)"}, {"answer": "SELECT COUNT(week) FROM table_name_12 WHERE attendance < 22 OFFSET 333", "question": "What Week had an Attendance smaller than 22,333?", "context": "CREATE TABLE table_name_12 (week VARCHAR, attendance INTEGER)"}, {"answer": "SELECT party FROM table_name_1 WHERE municipality = \"tampere\"", "question": "Municipality of tampere involves which party?", "context": "CREATE TABLE table_name_1 (party VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT votes FROM table_name_45 WHERE quotient = \"97 350,333\"", "question": "Quotient of 97 350,333 has how many votes?", "context": "CREATE TABLE table_name_45 (votes VARCHAR, quotient VARCHAR)"}, {"answer": "SELECT municipality FROM table_name_88 WHERE candidate = \"kimmo kiljunen\"", "question": "Candidate of kimmo kiljunen belongs to which municipality?", "context": "CREATE TABLE table_name_88 (municipality VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT quotient FROM table_name_10 WHERE votes = \"27,391\"", "question": "Votes of 27,391 has which quotient?", "context": "CREATE TABLE table_name_10 (quotient VARCHAR, votes VARCHAR)"}, {"answer": "SELECT votes FROM table_name_41 WHERE candidate = \"riikka manner\"", "question": "Candidate of riikka manner has how many votes?", "context": "CREATE TABLE table_name_41 (votes VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_51 WHERE year < 1911 AND venue = \"old trafford\"", "question": "Which Opposition has a Year smaller than 1911, and a Venue of old trafford?", "context": "CREATE TABLE table_name_51 (opposition VARCHAR, year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE year = 1911", "question": "Which Venue has a Year of 1911?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_17 WHERE city = \"taunton\"", "question": "Which Opposition has a City of taunton?", "context": "CREATE TABLE table_name_17 (opposition VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_30 WHERE venue = \"old trafford\" AND opposition = \"yorkshire\"", "question": "Which number of Years has a Venue of old trafford, and an Opposition of yorkshire?", "context": "CREATE TABLE table_name_30 (year VARCHAR, venue VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT result FROM table_name_69 WHERE time = \"6:00 pm\" AND attendance = \"79,419\"", "question": "What was the score of the match that took place at 6:00 PM with 79,419 in attendance?", "context": "CREATE TABLE table_name_69 (result VARCHAR, time VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT time FROM table_name_99 WHERE attendance = \"22,329\"", "question": "What time was the match that had an attendance of 22,329?", "context": "CREATE TABLE table_name_99 (time VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_50 WHERE attendance = \"103,158\"", "question": "What two teams were competing in the match with 103,158 in attendance?", "context": "CREATE TABLE table_name_50 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(january) FROM table_name_92 WHERE opponent = \"chicago black hawks\"", "question": "What is the average date in January that the Rangers played against Chicago Black Hawks?", "context": "CREATE TABLE table_name_92 (january INTEGER, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE record = \"16-8-4\"", "question": "What is the score of the game where the Rangers record was 16-8-4?", "context": "CREATE TABLE table_name_81 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT oxford_united_career_[b_] FROM table_name_40 WHERE position_[a_] = \"forward\" AND appearances = 56", "question": "Which OU career [b] had Position [A] as a forward when there were 56 appearances?", "context": "CREATE TABLE table_name_40 (oxford_united_career_ VARCHAR, b_ VARCHAR, appearances VARCHAR, position_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_31 WHERE outcome = \"winner\" AND date = \"3 august 2013\"", "question": "Which Score in the final has an Outcome of winner, and a Date of 3 august 2013?", "context": "CREATE TABLE table_name_31 (score_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT partner FROM table_name_57 WHERE date = \"8 february 2009\"", "question": "Which Partner has a Date of 8 february 2009?", "context": "CREATE TABLE table_name_57 (partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_38 WHERE partner = \"dustin brown\"", "question": "Which Opponent in the final has a Partner of dustin brown?", "context": "CREATE TABLE table_name_38 (opponent_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_62 WHERE surface = \"clay\" AND partner = \"martin emmrich\"", "question": "Which Score in the final has a Surface of clay, and a Partner of martin emmrich?", "context": "CREATE TABLE table_name_62 (score_in_the_final VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT surface FROM table_name_82 WHERE partner = \"oliver marach\"", "question": "Which Surface has a Partner of oliver marach?", "context": "CREATE TABLE table_name_82 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_67 WHERE frequency = \"0 105.7 fm\"", "question": "What is the call sign for the frequency of 0 105.7 fm?", "context": "CREATE TABLE table_name_67 (call_sign VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT owner FROM table_name_58 WHERE frequency = \"0 101.1 fm\"", "question": "Who is the owner with a frequency of 0 101.1 fm?", "context": "CREATE TABLE table_name_58 (owner VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_98 WHERE call_sign = \"kyli\"", "question": "Which city of license has the Kyli call sign?", "context": "CREATE TABLE table_name_98 (city_of_license VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT format FROM table_name_11 WHERE owner = \"cherry creek radio\" AND frequency = \"0 92.1 fm\"", "question": "What is the format for Cherry Creek Radio with frequency of 0 92.1 fm?", "context": "CREATE TABLE table_name_11 (format VARCHAR, owner VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT format FROM table_name_31 WHERE city_of_license = \"st. george\" AND frequency = \"0 107.3 fm\"", "question": "Which format is in St. George with a frequency of 0 107.3 fm?", "context": "CREATE TABLE table_name_31 (format VARCHAR, city_of_license VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_20 WHERE call_sign = \"kyli\"", "question": "Which city of license has the Kyli call sign?", "context": "CREATE TABLE table_name_20 (city_of_license VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT elected FROM table_name_81 WHERE party = \"republican\" AND district = \"7th\"", "question": "Party of republican, and a District of 7th is what elected?", "context": "CREATE TABLE table_name_81 (elected VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(elected) FROM table_name_39 WHERE party = \"republican\" AND district = \"5th\"", "question": "Party of republican, and a District of 5th is what highest elected?", "context": "CREATE TABLE table_name_39 (elected INTEGER, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT status FROM table_name_77 WHERE elected < 2001 AND district = \"83rd\"", "question": "Elected smaller than 2001, and a District of 83rd has what status?", "context": "CREATE TABLE table_name_77 (status VARCHAR, elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(elected) FROM table_name_75 WHERE status = \"reelected\" AND incumbent = \"danny marshall iii\"", "question": "Status of reelected, and a Incumbent of danny marshall iii is what highest elected?", "context": "CREATE TABLE table_name_75 (elected INTEGER, status VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE score = \"6\u20133, 6\u20134\"", "question": "When has a Score of 6\u20133, 6\u20134?", "context": "CREATE TABLE table_name_39 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE opponents_in_the_final = \"marcelo filippini mark koevermans\"", "question": "WHich Score has marcelo filippini mark koevermans?", "context": "CREATE TABLE table_name_18 (score VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_39 WHERE partnering = \"diego p\u00e9rez\" AND opponents_in_the_final = \"christer allgardh carl limberger\"", "question": "WHich Tournament  has a Partnering of diego p\u00e9rez and a Opponents in the final of christer allgardh carl limberger?", "context": "CREATE TABLE table_name_39 (tournament VARCHAR, partnering VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_18 WHERE partnering = \"tom\u00e1s carbonell\" AND date = \"march 28, 1995\"", "question": "Which Opponents in the final has a Partnering of tom\u00e1s carbonell on march 28, 1995?", "context": "CREATE TABLE table_name_18 (opponents_in_the_final VARCHAR, partnering VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE opponents_in_the_final = \"jordi arrese \u00e0lex corretja\"", "question": "What is the Score of an Opponent\\ in the final of jordi arrese \u00e0lex corretja?", "context": "CREATE TABLE table_name_25 (score VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_55 WHERE place = \"t9\" AND country = \"spain\"", "question": "Which To par has a Place in t9 and a Country of Spain?", "context": "CREATE TABLE table_name_55 (to_par VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_68 WHERE place = \"8\"", "question": "Which To par has a Place in 8?", "context": "CREATE TABLE table_name_68 (to_par VARCHAR, place VARCHAR)"}, {"answer": "SELECT player FROM table_name_74 WHERE place = \"t9\" AND country = \"united states\"", "question": "WHo is Player that has a Place of t9 in united states?", "context": "CREATE TABLE table_name_74 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_62 WHERE frequency_mhz = 95.1", "question": "What ERP W has a 95.1 MHZ frequency?", "context": "CREATE TABLE table_name_62 (erp_w VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_65 WHERE city_of_license = \"soledad, california\"", "question": "What call sign is licensed in soledad, california?", "context": "CREATE TABLE table_name_65 (call_sign VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT AVG(frequency_mhz) FROM table_name_53 WHERE city_of_license = \"carmel, california\" AND erp_w > 10", "question": "What is the MHZ frequency in carmel, california with an ERP W over 10?", "context": "CREATE TABLE table_name_53 (frequency_mhz INTEGER, city_of_license VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT class FROM table_name_4 WHERE frequency_mhz < 103.1 AND city_of_license = \"morro bay, california\"", "question": "What class has a MHZ frequency under 103.1 licensed in morro bay, california?", "context": "CREATE TABLE table_name_4 (class VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT COUNT(avg) FROM table_name_45 WHERE rec < 26 AND player = \"reggie brown\" AND long < 40", "question": "How many averages have recs smaller than 26, and a Player of reggie brown, and a Long smaller than 40?", "context": "CREATE TABLE table_name_45 (avg VARCHAR, long VARCHAR, rec VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(yards) FROM table_name_90 WHERE avg > 7 AND long < 60 AND rec > 19 AND player = \"correll buckhalter\"", "question": "Which Yards has an Avg larger than 7, and a Long smaller than 60, and a Rec larger than 19, and a Player of correll buckhalter?", "context": "CREATE TABLE table_name_90 (yards INTEGER, player VARCHAR, rec VARCHAR, avg VARCHAR, long VARCHAR)"}, {"answer": "SELECT AVG(yards) FROM table_name_2 WHERE avg = 11.8 AND player = \"brent celek\" AND long > 44", "question": "Which Yards have an avg of 11.8, and a Player of brent celek, and a Long larger than 44?", "context": "CREATE TABLE table_name_2 (yards INTEGER, long VARCHAR, avg VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(yards) FROM table_name_51 WHERE rec < 54 AND long < 5 AND player = \"todd herremans\" AND avg > 1", "question": "Which Yards is the highest one that has a Rec smaller than 54, and a Long smaller than 5, and a Player of todd herremans, and an Avg larger than 1?", "context": "CREATE TABLE table_name_51 (yards INTEGER, avg VARCHAR, player VARCHAR, rec VARCHAR, long VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_44 WHERE record = \"18-14\"", "question": "What is the high rebounds with a record that is 18-14?", "context": "CREATE TABLE table_name_44 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_59 WHERE game = 30", "question": "What are the high points from a game of 30?", "context": "CREATE TABLE table_name_59 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE opponent = \"malacca\" AND venue = \"klfa stadium, cheras\"", "question": "What is the score for the game against Malacca at the Klfa Stadium, Cheras?", "context": "CREATE TABLE table_name_96 (score VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE venue = \"city stadium, georgetown\"", "question": "Which date held the match at the City Stadium, Georgetown?", "context": "CREATE TABLE table_name_7 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_31 WHERE opponent = \"police\" AND venue = \"selayang stadium\"", "question": "Which competition had an opponent of Police at the Selayang Stadium?", "context": "CREATE TABLE table_name_31 (competition VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(field_goals) FROM table_name_25 WHERE touchdowns < 3 AND player = \"clark\" AND points < 5", "question": "What the average amount of field goals Clark has if he has less than 3 touch downs and less than 5 points?", "context": "CREATE TABLE table_name_25 (field_goals INTEGER, points VARCHAR, touchdowns VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_12 WHERE player = \"tom hammond\" AND extra_points > 12", "question": "How many points does Tom Hammond have if he has more than 12 points?", "context": "CREATE TABLE table_name_12 (points INTEGER, player VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT MIN(field_goals) FROM table_name_40 WHERE touchdowns = 12 AND points > 72", "question": "Who had the lowest field goals if they had 12 touchdowns and more than 72 points?", "context": "CREATE TABLE table_name_40 (field_goals INTEGER, touchdowns VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(earnings___) AS $__ FROM table_name_49 WHERE wins = 28 AND player = \"lee trevino\"", "question": "What is the lowest earnings of Lee Trevino who has 28 wins?", "context": "CREATE TABLE table_name_49 (earnings___ INTEGER, wins VARCHAR, player VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_1 WHERE date = \"december 14\"", "question": "Where is the location of attendance for the Date of december 14?", "context": "CREATE TABLE table_name_1 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_70 WHERE high_points = \"tracy mcgrady (24)\"", "question": "What team has a high score with tracy mcgrady (24)?", "context": "CREATE TABLE table_name_70 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_28 WHERE score = \"l 90\u201391 (ot)\"", "question": "What location has an attendance and a score of l 90\u201391 (ot)?", "context": "CREATE TABLE table_name_28 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_98 WHERE score = \"l 88\u201394 (ot)\"", "question": "What team has a Score of l 88\u201394 (ot)?", "context": "CREATE TABLE table_name_98 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_26 WHERE surface = \"hard (i)\" AND tournament = \"columbus, ohio\"", "question": "What score has hard (i) as the surface, and Columbus, Ohio as the tournament?", "context": "CREATE TABLE table_name_26 (score VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_12 WHERE tournament = \"rockford, illinois\"", "question": "What opponent in the final has rockford, Illinois as the tournament?", "context": "CREATE TABLE table_name_12 (opponent_in_the_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE tournament = \"zadar\"", "question": "What score has zadar as the tournament?", "context": "CREATE TABLE table_name_27 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT team FROM table_name_19 WHERE players = \"amanda coetzer and marcos ondruska\"", "question": "Players of amanda coetzer and marcos ondruska is what team?", "context": "CREATE TABLE table_name_19 (team VARCHAR, players VARCHAR)"}, {"answer": "SELECT matches_w_l FROM table_name_64 WHERE players = \"judith wiesner and alex antonitsch\"", "question": "Players of judith wiesner and alex antonitsch had what match w-l?", "context": "CREATE TABLE table_name_64 (matches_w_l VARCHAR, players VARCHAR)"}, {"answer": "SELECT matches_w_l FROM table_name_20 WHERE placing = 3", "question": "Placing of 3 had what match w-l?", "context": "CREATE TABLE table_name_20 (matches_w_l VARCHAR, placing VARCHAR)"}, {"answer": "SELECT seeding FROM table_name_41 WHERE matches_w_l = \"1-2\" AND team = \"spain\"", "question": "Matches W-L of 1-2, and a Team of spain had what seeding?", "context": "CREATE TABLE table_name_41 (seeding VARCHAR, matches_w_l VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_67 WHERE notes = \"bbc radio 4\" AND director = \"peter kavanagh\"", "question": "Notes of bbc radio 4, and a Director of peter kavanagh includes which average year?", "context": "CREATE TABLE table_name_67 (year INTEGER, notes VARCHAR, director VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_49 WHERE title = \"the angry brigade\"", "question": "Title of the angry brigade involves which lowest year?", "context": "CREATE TABLE table_name_49 (year INTEGER, title VARCHAR)"}, {"answer": "SELECT notes FROM table_name_35 WHERE year > 2008", "question": "Year larger than 2008 includes which notes?", "context": "CREATE TABLE table_name_35 (notes VARCHAR, year INTEGER)"}, {"answer": "SELECT director FROM table_name_74 WHERE notes = \"bbc radio 3\" AND title = \"carnival\"", "question": "Notes of bbc radio 3, and a Title of carnival involves which director?", "context": "CREATE TABLE table_name_74 (director VARCHAR, notes VARCHAR, title VARCHAR)"}, {"answer": "SELECT song_choice FROM table_name_26 WHERE theme = \"free choice\" AND result = \"through to bootcamp\"", "question": "What was the song choice when the theme was free choice and Adeleye made it through to bootcamp?", "context": "CREATE TABLE table_name_26 (song_choice VARCHAR, theme VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_93 WHERE week = \"week 2\"", "question": "What was the result of week 2?", "context": "CREATE TABLE table_name_93 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT theme FROM table_name_38 WHERE week = \"week 3\"", "question": "What was the theme for week 3?", "context": "CREATE TABLE table_name_38 (theme VARCHAR, week VARCHAR)"}, {"answer": "SELECT theme FROM table_name_93 WHERE week = \"final showdown (week 3)\"", "question": "What was the theme for the final showdown (week 3)?", "context": "CREATE TABLE table_name_93 (theme VARCHAR, week VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE opponent = \"florida panthers\" AND game = 2", "question": "What was the score of Game 2 in the series against the Florida Panthers?", "context": "CREATE TABLE table_name_17 (score VARCHAR, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE record = \"7-5\"", "question": "What was the score of the game that led to a 7-5 record?", "context": "CREATE TABLE table_name_91 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT name FROM table_name_4 WHERE position = \"tight end\" AND round > 3", "question": "Which player is a tight end with a round higher than 3?", "context": "CREATE TABLE table_name_4 (name VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_89 WHERE college = \"louisiana state\"", "question": "What position does the College of Louisiana State have?", "context": "CREATE TABLE table_name_89 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_13 WHERE name = \"jamaal charles\"", "question": "How many rounds does Jamaal Charles have?", "context": "CREATE TABLE table_name_13 (round VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE save = \"smith (26)\"", "question": "Who was the opponent that also has a save of Smith (26)?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE save = \"smith (25)\"", "question": "Which score has a save of Smith (25)?", "context": "CREATE TABLE table_name_47 (score VARCHAR, save VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_77 WHERE date = \"july 24\"", "question": "Which circuit is on July 24?", "context": "CREATE TABLE table_name_77 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE class = \"gt\" AND race = \"monterey sports car grand prix\"", "question": "On which date was the GT class at Monterey Sports Car Grand Prix?", "context": "CREATE TABLE table_name_8 (date VARCHAR, class VARCHAR, race VARCHAR)"}, {"answer": "SELECT length FROM table_name_22 WHERE class = \"gt\" AND circuit = \"portland international raceway\"", "question": "What was the length for GT class at Portland International Raceway?", "context": "CREATE TABLE table_name_22 (length VARCHAR, class VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE race = \"contac 12 hours of sebring\"", "question": "On what date did Contac 12 Hours of Sebring take place?", "context": "CREATE TABLE table_name_21 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE attendance = \"24,791\"", "question": "Which Opponent has an Attendance of 24,791?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE opponent = \"mariners\" AND record = \"24\u201325\"", "question": "Which Score has Opponent of mariners and a Record of 24\u201325?", "context": "CREATE TABLE table_name_91 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE record = \"16\u201316\"", "question": "When is Record of 16\u201316 taken?", "context": "CREATE TABLE table_name_6 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE record = \"7\u201310\u20133\u20131\"", "question": "What was the score of the game with a record of 7\u201310\u20133\u20131?", "context": "CREATE TABLE table_name_2 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT year_ended FROM table_name_80 WHERE passenger_load_factor___percentage_ > 72.8 AND revenue__\u20acm_ < 906.8", "question": "Which Year Ended has a Passenger Load Factor (%) larger than 72.8, and a Revenue (\u20acm) smaller than 906.8?", "context": "CREATE TABLE table_name_80 (year_ended VARCHAR, passenger_load_factor___percentage_ VARCHAR, revenue__\u20acm_ VARCHAR)"}, {"answer": "SELECT passenger_load_factor___percentage_ FROM table_name_86 WHERE revenue__\u20acm_ < 958.6 AND profit____loss__before_tax__\u20acm_ = \"1.1\"", "question": "What Passenger Load Factor (%) that has a Revenue (\u20acm) less than 958.6 and a Profit / (Loss) Before Tax (\u20acm) of 1.1?", "context": "CREATE TABLE table_name_86 (passenger_load_factor___percentage_ VARCHAR, revenue__\u20acm_ VARCHAR, profit____loss__before_tax__\u20acm_ VARCHAR)"}, {"answer": "SELECT first_used FROM table_name_84 WHERE quantity = 26", "question": "Which First used has a Quantity of 26?", "context": "CREATE TABLE table_name_84 (first_used VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT designation FROM table_name_56 WHERE manufacturer = \"siemens\" AND quantity = 52", "question": "Which Designation has a Manufacturer of siemens, and a Quantity of 52?", "context": "CREATE TABLE table_name_56 (designation VARCHAR, manufacturer VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT designation FROM table_name_84 WHERE quantity = 52", "question": "Which Designation has a Quantity of 52?", "context": "CREATE TABLE table_name_84 (designation VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT AVG(quantity) FROM table_name_82 WHERE designation = \"type 4\"", "question": "Which Quantity has a Designation of type 4?", "context": "CREATE TABLE table_name_82 (quantity INTEGER, designation VARCHAR)"}, {"answer": "SELECT model_no FROM table_name_28 WHERE manufacturer = \"bombardier\"", "question": "Which model number does bombardier manufacture?", "context": "CREATE TABLE table_name_28 (model_no VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT car_numbers FROM table_name_37 WHERE first_used = \"currently on order\"", "question": "Which Car numbers have a First used of currently on order?", "context": "CREATE TABLE table_name_37 (car_numbers VARCHAR, first_used VARCHAR)"}, {"answer": "SELECT MIN(elected) FROM table_name_87 WHERE district = 17", "question": "What was the year elected in District 17?", "context": "CREATE TABLE table_name_87 (elected INTEGER, district VARCHAR)"}, {"answer": "SELECT elected FROM table_name_56 WHERE district = 15", "question": "What was the year elected in District 15?", "context": "CREATE TABLE table_name_56 (elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT AVG(elected) FROM table_name_19 WHERE incumbent = \"ed towns\" AND district < 10", "question": "What year was Incumbent Ed Towns elected with a district smaller than 10?", "context": "CREATE TABLE table_name_19 (elected INTEGER, incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_name_98 WHERE elected > 1983 AND district = 28", "question": "What party has a district of 28 and was elected after 1983?", "context": "CREATE TABLE table_name_98 (party VARCHAR, elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT AVG(elected) FROM table_name_69 WHERE party = \"democrat\" AND district > 2 AND incumbent = \"nydia velazquez\"", "question": "What's the elected year of Nydia Velazquez in a district bigger than 2 and a democrat?", "context": "CREATE TABLE table_name_69 (elected INTEGER, incumbent VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_81 WHERE top_goalscorer = \"ortiz\" AND goals > 25", "question": "Name the least year for goalscore of ortiz and goals more than 25", "context": "CREATE TABLE table_name_81 (year INTEGER, top_goalscorer VARCHAR, goals VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE visitor = \"st. louis\"", "question": "What was the date of the game when St. Louis was the visiting team?", "context": "CREATE TABLE table_name_17 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_42 WHERE score = \"7\u20135\"", "question": "What was the record at the game with a score of 7\u20135?", "context": "CREATE TABLE table_name_42 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT position FROM table_name_29 WHERE nationality = \"canada\" AND nhl_team = \"new york islanders\" AND pick__number = \"113\"", "question": "What position shows for canada, and an NHL team of new york islanders, and a Pick # of 113?", "context": "CREATE TABLE table_name_29 (position VARCHAR, pick__number VARCHAR, nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_92 WHERE college_junior_club_team = \"brandon wheat kings (wchl)\"", "question": "What is the Position for the brandon wheat kings (wchl)?", "context": "CREATE TABLE table_name_92 (position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_30 WHERE college_junior_club_team = \"university of wisconsin (wcha)\" AND player = \"bob lundeen\"", "question": "What is the Nationality for the university of wisconsin (wcha), and a Player of bob lundeen?", "context": "CREATE TABLE table_name_30 (nationality VARCHAR, college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_45 WHERE player = \"brent meeke\"", "question": "What is the Pick # for brent meeke?", "context": "CREATE TABLE table_name_45 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_29 WHERE player = \"dave murphy\"", "question": "What is the NHL team of dave murphy?", "context": "CREATE TABLE table_name_29 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_91 WHERE pick__number = \"117\"", "question": "What Nationality had a Pick # of 117?", "context": "CREATE TABLE table_name_91 (nationality VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE athlete = \"nesta carter\"", "question": "On what Date of the race was Nesta Carter the Athlete?", "context": "CREATE TABLE table_name_46 (date VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_14 WHERE time = 9.78", "question": "What is the Athlete of the race with a Time of 9.78?", "context": "CREATE TABLE table_name_14 (athlete VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(area_2006_km\u00b2) FROM table_name_38 WHERE area_1996_km\u00b2 < 17.31", "question": "Which area 2006 km\u00b2 has an area 1996 km\u00b2 smaller than 17.31?", "context": "CREATE TABLE table_name_38 (area_2006_km\u00b2 INTEGER, area_1996_km\u00b2 INTEGER)"}, {"answer": "SELECT MIN(area_2006_km\u00b2) FROM table_name_94 WHERE area_1996_km\u00b2 = 26.39 AND pop_2006 < 18 OFFSET 610", "question": "Which area 2006 km\u00b2 has an area 1996 km\u00b2 of 26.39, and a pop 2006 smaller than 18,610?", "context": "CREATE TABLE table_name_94 (area_2006_km\u00b2 INTEGER, area_1996_km\u00b2 VARCHAR, pop_2006 VARCHAR)"}, {"answer": "SELECT MAX(area_2006_km\u00b2) FROM table_name_22 WHERE city = \"sopot\" AND area_1996_km\u00b2 < 17.31", "question": "Which area 2006 km\u00b2 has a city of sopot, and an area 1996 km\u00b2 smaller than 17.31?", "context": "CREATE TABLE table_name_22 (area_2006_km\u00b2 INTEGER, city VARCHAR, area_1996_km\u00b2 VARCHAR)"}, {"answer": "SELECT MAX(area_1996_km\u00b2) FROM table_name_91 WHERE pop_1999 = \"17,510\" AND area_2006_km\u00b2 > 30", "question": "Which area 1996 km\u00b2 has a pop 1999 of 17,510, and an area 2006 km\u00b2 larger than 30?", "context": "CREATE TABLE table_name_91 (area_1996_km\u00b2 INTEGER, pop_1999 VARCHAR, area_2006_km\u00b2 VARCHAR)"}, {"answer": "SELECT MAX(playoffs) FROM table_name_79 WHERE teams = \"tampa bay\"", "question": "What is the highest playoffs that has tampa bay as the team?", "context": "CREATE TABLE table_name_79 (playoffs INTEGER, teams VARCHAR)"}, {"answer": "SELECT rank FROM table_name_96 WHERE total = 123", "question": "What rank has 123 as the total?", "context": "CREATE TABLE table_name_96 (rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT teams FROM table_name_35 WHERE streak_end = \"1/2/2011\"", "question": "What teams have 1/2/2011 as the streak end?", "context": "CREATE TABLE table_name_35 (teams VARCHAR, streak_end VARCHAR)"}, {"answer": "SELECT streak_start FROM table_name_28 WHERE total < 79 AND rank = \"22t\" AND teams = \"tampa bay\"", "question": "What streak start has a total less than 79, 22t as the rank, and tampa bay as the teams?", "context": "CREATE TABLE table_name_28 (streak_start VARCHAR, teams VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT method FROM table_name_11 WHERE event = \"ufc fight night 10\"", "question": "What was the method for the UFC Fight Night 10 event?", "context": "CREATE TABLE table_name_11 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT res FROM table_name_60 WHERE event = \"m-1 selection europe\"", "question": "What was the result for the M-1 Selection Europe event?", "context": "CREATE TABLE table_name_60 (res VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_55 WHERE record = \"23-5\"", "question": "Who was the opponent that led to a record of 23-5?", "context": "CREATE TABLE table_name_55 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_78 WHERE bronze = 2 AND gold < 0", "question": "What is the number of Silver medals with 2 Bronze and 0 Gold?", "context": "CREATE TABLE table_name_78 (silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_98 WHERE champion = \"sakalai\"", "question": "what team was the 1st leg champion of sakalai", "context": "CREATE TABLE table_name_98 (champion VARCHAR)"}, {"answer": "SELECT season FROM table_name_54 WHERE champion = \"juventus\"", "question": "what season did the juventus win", "context": "CREATE TABLE table_name_54 (season VARCHAR, champion VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_71 WHERE points < 9 AND rank = \"24th\"", "question": "What's the average Year that has Points that's smaller than 9 with a Rank of 24th?", "context": "CREATE TABLE table_name_71 (year INTEGER, points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rider FROM table_name_12 WHERE rank > 3 AND speed = \"119.838mph\"", "question": "Who has a Rank larger than 3 with a speed of 119.838mph?", "context": "CREATE TABLE table_name_12 (rider VARCHAR, rank VARCHAR, speed VARCHAR)"}, {"answer": "SELECT team FROM table_name_31 WHERE time = \"1:14.51.73\"", "question": "Which Team has a Time of 1:14.51.73?", "context": "CREATE TABLE table_name_31 (team VARCHAR, time VARCHAR)"}, {"answer": "SELECT speed FROM table_name_6 WHERE rank < 9 AND team = \"kawasaki zx6 600cc\"", "question": "Which Speed has a Rank smaller than 9 in kawasaki zx6 600cc Team?", "context": "CREATE TABLE table_name_6 (speed VARCHAR, rank VARCHAR, team VARCHAR)"}, {"answer": "SELECT speed FROM table_name_59 WHERE rank = 2", "question": "WHich Speed has a Rank of 2?", "context": "CREATE TABLE table_name_59 (speed VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_49 WHERE opponent = \"@ hartford whalers\" AND february > 19", "question": "What is the total of Game with an Opponent of @ Hartford Whalers and February that's larger than 19?", "context": "CREATE TABLE table_name_49 (game INTEGER, opponent VARCHAR, february VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_3 WHERE february > 7 AND record = \"37-16-4\"", "question": "Which Opponent has a February larger than 7 and Record of 37-16-4?", "context": "CREATE TABLE table_name_3 (opponent VARCHAR, february VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(february) FROM table_name_51 WHERE record = \"34-14-4\" AND game > 52", "question": "What is listed as the highest February with a Record of 34-14-4 and Game that's larger than 52?", "context": "CREATE TABLE table_name_51 (february INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE game > 56 AND february = 24", "question": "Which Opponent has a Game larger than 56 and February of 24?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, game VARCHAR, february VARCHAR)"}, {"answer": "SELECT MIN(extra_points) FROM table_name_26 WHERE player = \"rheinschild\" AND touchdowns > 1", "question": "Which Extra points is the lowest one that has a Player of rheinschild, and Touchdowns larger than 1?", "context": "CREATE TABLE table_name_26 (extra_points INTEGER, player VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT result FROM table_name_76 WHERE couple = \"mario & karina\"", "question": "What result has mario & karina as the couple?", "context": "CREATE TABLE table_name_76 (result VARCHAR, couple VARCHAR)"}, {"answer": "SELECT time FROM table_name_15 WHERE set_2 = \"20\u201325\" AND date = \"05 jun\"", "question": "Which Time has a Set 2 of 20\u201325, and a Date of 05 jun?", "context": "CREATE TABLE table_name_15 (time VARCHAR, set_2 VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE score = \"0\u20133\" AND set_2 = \"16\u201325\"", "question": "Which Date has a Score of 0\u20133, and a Set 2 of 16\u201325?", "context": "CREATE TABLE table_name_49 (date VARCHAR, score VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT total FROM table_name_60 WHERE set_2 = \"19\u201325\"", "question": "Which Total has a Set 2 of 19\u201325?", "context": "CREATE TABLE table_name_60 (total VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE set_2 = \"25\u201317\" AND time = \"16:00\"", "question": "Which Score has a Set 2 of 25\u201317, and a Time of 16:00?", "context": "CREATE TABLE table_name_9 (score VARCHAR, set_2 VARCHAR, time VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_22 WHERE time = \"14:00\" AND set_3 = \"19\u201325\"", "question": "Which Set 1 has a Time of 14:00, and a Set 3 of 19\u201325?", "context": "CREATE TABLE table_name_22 (set_1 VARCHAR, time VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT time FROM table_name_68 WHERE set_3 = \"24\u201326\" AND score = \"0\u20133\"", "question": "Which Time has a Set 3 of 24\u201326, and a Score of 0\u20133?", "context": "CREATE TABLE table_name_68 (time VARCHAR, set_3 VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_44 WHERE home_team = \"nuneaton borough\"", "question": "What was the attendance when Nuneaton Borough was the home team?", "context": "CREATE TABLE table_name_44 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT nflcom_recap FROM table_name_81 WHERE game_site = \"qualcomm stadium\"", "question": "What's the site of the recap at qualcomm stadium?", "context": "CREATE TABLE table_name_81 (nflcom_recap VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_65 WHERE city_location = \"cleveland, ohio\"", "question": "What is the name of the race in Cleveland, Ohio?", "context": "CREATE TABLE table_name_65 (race_name VARCHAR, city_location VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_66 WHERE winning_driver = \"michael andretti\"", "question": "Which circuit did Michael Andretti win?", "context": "CREATE TABLE table_name_66 (circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_74 WHERE circuit = \"homestead-miami speedway\"", "question": "Who was the winning team at the Homestead-Miami Speedway?", "context": "CREATE TABLE table_name_74 (winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_32 WHERE winning_driver = \"jimmy vasser\"", "question": "What was Jimmy Vasser's fastest lap?", "context": "CREATE TABLE table_name_32 (fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT spanish_voice_actor FROM table_name_4 WHERE french_voice_actor = \"v\u00e9ronique desmadryl\"", "question": "Which Spanish voice actor does the same character as French voice actor V\u00e9ronique Desmadryl?", "context": "CREATE TABLE table_name_4 (spanish_voice_actor VARCHAR, french_voice_actor VARCHAR)"}, {"answer": "SELECT spanish_voice_actor FROM table_name_61 WHERE french_voice_actor = \"dennis boileau\"", "question": "Which Spanish voice actor does the same character as French voice actor Dennis Boileau?", "context": "CREATE TABLE table_name_61 (spanish_voice_actor VARCHAR, french_voice_actor VARCHAR)"}, {"answer": "SELECT spanish_voice_actor FROM table_name_36 WHERE french_voice_actor = \"v\u00e9ronique desmadryl\"", "question": "Which Spanish voice actor does the same character as French voice actor V\u00e9ronique Desmadryl?", "context": "CREATE TABLE table_name_36 (spanish_voice_actor VARCHAR, french_voice_actor VARCHAR)"}, {"answer": "SELECT character FROM table_name_63 WHERE german_voice_actor = \"dirk fenselau\"", "question": "What character does German voice actor Dirk Fenselau play?", "context": "CREATE TABLE table_name_63 (character VARCHAR, german_voice_actor VARCHAR)"}, {"answer": "SELECT character FROM table_name_48 WHERE italian_voice_actor = \"emanuela damasio\"", "question": "What character does Italian voice actor Emanuela Damasio play?", "context": "CREATE TABLE table_name_48 (character VARCHAR, italian_voice_actor VARCHAR)"}, {"answer": "SELECT character FROM table_name_70 WHERE french_voice_actor = \"marc saez\" AND german_voice_actor = \"dirk fenselau\"", "question": "Which character has a French voice actor of Marc Saez and a German voice actor of Dirk Fenselau?", "context": "CREATE TABLE table_name_70 (character VARCHAR, french_voice_actor VARCHAR, german_voice_actor VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_28 WHERE player = \"jeff staples\"", "question": "Jeff Staples player for which College, Junior or Club league?", "context": "CREATE TABLE table_name_28 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_23 WHERE player = \"ken hemenway\"", "question": "Ken Hemenway is in which Round?", "context": "CREATE TABLE table_name_23 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_99 WHERE player = \"e.j. bradley\"", "question": "Which Nation does e.j. bradley play for?", "context": "CREATE TABLE table_name_99 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_86 WHERE position = \"defense\" AND player = \"mike crowley\"", "question": "Mike Crowley plays defense for league?", "context": "CREATE TABLE table_name_86 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_69 WHERE drawn > 1", "question": "Name the most games with drawn more than 1", "context": "CREATE TABLE table_name_69 (games INTEGER, drawn INTEGER)"}, {"answer": "SELECT MAX(points) FROM table_name_74 WHERE lost = 2 AND games > 7", "question": "Name the most points with lost of 2 and games more than 7", "context": "CREATE TABLE table_name_74 (points INTEGER, lost VARCHAR, games VARCHAR)"}, {"answer": "SELECT MAX(peak) FROM table_name_81 WHERE track = \"mo\u00f1o negro\" AND year < 1996", "question": "What number did Mo\u00f1o Negro peak at before 1996?", "context": "CREATE TABLE table_name_81 (peak INTEGER, track VARCHAR, year VARCHAR)"}, {"answer": "SELECT year_startup FROM table_name_41 WHERE operator = \"apache energy/inpex\"", "question": "What was the startup year for the project with apache energy/inpex as the operator?", "context": "CREATE TABLE table_name_41 (year_startup VARCHAR, operator VARCHAR)"}, {"answer": "SELECT year_startup FROM table_name_18 WHERE operator = \"albian sands\" AND project_name = \"jackpine mine (ph 2)\"", "question": "What was the startup year for the Jackpine Mine (ph 2) project with an albian sands operator?", "context": "CREATE TABLE table_name_18 (year_startup VARCHAR, operator VARCHAR, project_name VARCHAR)"}, {"answer": "SELECT year_startup FROM table_name_89 WHERE operator = \"nioc\"", "question": "What was the startup year for the project with a nioc operator?", "context": "CREATE TABLE table_name_89 (year_startup VARCHAR, operator VARCHAR)"}, {"answer": "SELECT project_name FROM table_name_38 WHERE peak = \"40\" AND country = \"usa\"", "question": "What was the name of the project that peaked at 40 and was in the USA?", "context": "CREATE TABLE table_name_38 (project_name VARCHAR, peak VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_53 WHERE operator = \"shell\" AND project_name = \"bonga sw; aparo\"", "question": "What country did the project, Bonga SW; Aparo with a shell operator take place?", "context": "CREATE TABLE table_name_53 (country VARCHAR, operator VARCHAR, project_name VARCHAR)"}, {"answer": "SELECT 1 AS st_prize___$__ FROM table_name_56 WHERE winner = \"ken green (4)\"", "question": "What is the amount of the 1st prize when the Winner was ken green (4)?", "context": "CREATE TABLE table_name_56 (winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE tournament = \"los angeles open\"", "question": "What is the date of the Los Angeles open?", "context": "CREATE TABLE table_name_27 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_36 WHERE date = \"oct 23\"", "question": "What is the name of the Tournament on oct 23?", "context": "CREATE TABLE table_name_36 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT theatre, _studio, _or_network FROM table_name_78 WHERE date = \"1941\" AND title = \"one night in lisbon\"", "question": "Who created One Night in Lisbon in 1941?", "context": "CREATE TABLE table_name_78 (theatre VARCHAR, _studio VARCHAR, _or_network VARCHAR, date VARCHAR, title VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE loss = \"reuschel (12-3)\"", "question": "what date did reuschel (12-3) lose?", "context": "CREATE TABLE table_name_36 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_44 WHERE televote > 18 AND artist = \"elizabeth anastasiou\" AND jury > 4", "question": "How much Draw has a Televote larger than 18, and an Artist of elizabeth anastasiou, and a Jury larger than 4?", "context": "CREATE TABLE table_name_44 (draw VARCHAR, jury VARCHAR, televote VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_65 WHERE artist = \"nikolas metaxas\" AND televote > 60", "question": "Which Place is the highest one that has an Artist of nikolas metaxas, and a Televote larger than 60?", "context": "CREATE TABLE table_name_65 (place INTEGER, artist VARCHAR, televote VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_99 WHERE place < 2 AND draw < 5", "question": "Which average Total has a Place smaller than 2, and a Draw smaller than 5?", "context": "CREATE TABLE table_name_99 (total INTEGER, place VARCHAR, draw VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE record = \"0-2\"", "question": "Which Date has a Record of 0-2?", "context": "CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_92 WHERE match_report = \"recap\" AND result = \"l 30\u201320\"", "question": "Which Record has a Match Report of recap, and a Result of l 30\u201320?", "context": "CREATE TABLE table_name_92 (record VARCHAR, match_report VARCHAR, result VARCHAR)"}, {"answer": "SELECT match_report FROM table_name_83 WHERE date = \"october 26, 2008\"", "question": "Which Match Report has a Date of october 26, 2008?", "context": "CREATE TABLE table_name_83 (match_report VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_83 WHERE record = \"0-3\"", "question": "Which Opponent has a Record of 0-3?", "context": "CREATE TABLE table_name_83 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_41 WHERE kickoff = \"12:00pm cst\" AND game_site = \"arrowhead stadium\" AND week = \"15\"", "question": "Which Record has a Kickoff of 12:00pm cst, and a Game site of arrowhead stadium, and a Week of 15?", "context": "CREATE TABLE table_name_41 (record VARCHAR, week VARCHAR, kickoff VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE opponent = \"new england patriots\"", "question": "What was the result when the new england patriots played?", "context": "CREATE TABLE table_name_33 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_42 WHERE budget = \"$39 million\"", "question": "How many years had budgets of $39 million?", "context": "CREATE TABLE table_name_42 (year INTEGER, budget VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_89 WHERE director = \"christopher kulikowski\"", "question": "What is the most recent year featuring the director Christopher Kulikowski?", "context": "CREATE TABLE table_name_89 (year INTEGER, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_97 WHERE gross__worldwide_ = \"$30,471\"", "question": "Which director had a worldwide gross of $30,471?", "context": "CREATE TABLE table_name_97 (director VARCHAR, gross__worldwide_ VARCHAR)"}, {"answer": "SELECT budget FROM table_name_4 WHERE year = 2005", "question": "What is 2005's budget figure?", "context": "CREATE TABLE table_name_4 (budget VARCHAR, year VARCHAR)"}, {"answer": "SELECT airport FROM table_name_59 WHERE iata = \"bkk\"", "question": "Which airport has IATA of BKK?", "context": "CREATE TABLE table_name_59 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_14 WHERE airport = \"beijing capital international airport\"", "question": "What is the IATA for Beijing Capital International Airport?", "context": "CREATE TABLE table_name_14 (iata VARCHAR, airport VARCHAR)"}, {"answer": "SELECT airport FROM table_name_33 WHERE country = \"singapore\"", "question": "Which airport is located in Singapore?", "context": "CREATE TABLE table_name_33 (airport VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_88 WHERE icao = \"wadd\"", "question": "What is the country of the airport with ICAO of WADD?", "context": "CREATE TABLE table_name_88 (country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT city FROM table_name_98 WHERE airport = \"newcastle airport\"", "question": "Which city holds Newcastle Airport?", "context": "CREATE TABLE table_name_98 (city VARCHAR, airport VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_14 WHERE stadium = \"kadrioru stadium\" AND current_manager = \"sergei ratnikov\"", "question": "What is the capacity for the stadium of kadrioru stadium and a current manager of sergei ratnikov?", "context": "CREATE TABLE table_name_14 (capacity INTEGER, stadium VARCHAR, current_manager VARCHAR)"}, {"answer": "SELECT others__number FROM table_name_59 WHERE bush__percentage = \"63.98%\"", "question": "What was the other number with 63.98% bush?", "context": "CREATE TABLE table_name_59 (others__number VARCHAR, bush__percentage VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_18 WHERE band = \"am\" AND frequency = \"0 846\"", "question": "Band of am, and a Frequency of 0 846 has what purpose?", "context": "CREATE TABLE table_name_18 (purpose VARCHAR, band VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT on_air_id FROM table_name_87 WHERE frequency = \"100.1\"", "question": "Frequency of 100.1 has what on-air id?", "context": "CREATE TABLE table_name_87 (on_air_id VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_34 WHERE callsign = \"6nan\"", "question": "Callsign of 6nan has what purpose?", "context": "CREATE TABLE table_name_34 (purpose VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_71 WHERE band = \"am\" AND callsign = \"6wh\"", "question": "Band of am, and a Callsign of 6wh has what purpose?", "context": "CREATE TABLE table_name_71 (purpose VARCHAR, band VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_99 WHERE frequency = \"0 864\"", "question": "Frequency of 0 864 has what callsign?", "context": "CREATE TABLE table_name_99 (callsign VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT club FROM table_name_53 WHERE round = 1 AND home = \"0-2\"", "question": "What club has a home score of 0-2 in Round 1?", "context": "CREATE TABLE table_name_53 (club VARCHAR, round VARCHAR, home VARCHAR)"}, {"answer": "SELECT away FROM table_name_97 WHERE round < 2 AND club = \"nk rijeka\"", "question": "What is NK Rijeka's away score in Round 2?", "context": "CREATE TABLE table_name_97 (away VARCHAR, round VARCHAR, club VARCHAR)"}, {"answer": "SELECT away FROM table_name_75 WHERE club = \"nk rijeka\"", "question": "What is NK Rijeka's away score?", "context": "CREATE TABLE table_name_75 (away VARCHAR, club VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE record = \"28-41\"", "question": "When did the Indians play a game with a record of 28-41?", "context": "CREATE TABLE table_name_66 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT rider FROM table_name_8 WHERE rank < 5 AND time = \"31\u2019 03.093\"", "question": "Rank smaller than 5, and a Time of 31\u2019 03.093 is what rider?", "context": "CREATE TABLE table_name_8 (rider VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_3 WHERE team = \"honda 250cc\" AND rank > 2 AND rider = \"chris palmer\"", "question": "Team of honda 250cc, and a Rank larger than 2, and a Rider of chris palmer is what time?", "context": "CREATE TABLE table_name_3 (time VARCHAR, rider VARCHAR, team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT team FROM table_name_87 WHERE rank > 8 AND rider = \"chris barrett\"", "question": "Rank larger than 8, and a Rider of chris barrett is what team?", "context": "CREATE TABLE table_name_87 (team VARCHAR, rank VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_74 WHERE team = \"honda 250cc\" AND time = \"31\u2019 03.093\"", "question": "Team of honda 250cc, and a Time of 31\u2019 03.093 has what lowest rank?", "context": "CREATE TABLE table_name_74 (rank INTEGER, team VARCHAR, time VARCHAR)"}, {"answer": "SELECT team FROM table_name_53 WHERE rank > 5 AND rider = \"paul shoesmith\"", "question": "Rank larger than 5, and a Rider of paul shoesmith belongs to what team?", "context": "CREATE TABLE table_name_53 (team VARCHAR, rank VARCHAR, rider VARCHAR)"}, {"answer": "SELECT SUM(total_matches) FROM table_name_61 WHERE year = \"career\" AND points_won > 25", "question": "How many Total matches have a Year of career, and a Points won larger than 25?", "context": "CREATE TABLE table_name_61 (total_matches INTEGER, year VARCHAR, points_won VARCHAR)"}, {"answer": "SELECT total_matches FROM table_name_20 WHERE year = \"2003\"", "question": "How many Total matches happened in 2003?", "context": "CREATE TABLE table_name_20 (total_matches VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(points_won) FROM table_name_14 WHERE year = \"1996\"", "question": "How many points were won in 1996?", "context": "CREATE TABLE table_name_14 (points_won INTEGER, year VARCHAR)"}, {"answer": "SELECT MAX(total_matches) FROM table_name_74 WHERE points__percentage = \"70%\"", "question": "Which Total matches is the highest one that has Points % of 70%?", "context": "CREATE TABLE table_name_74 (total_matches INTEGER, points__percentage VARCHAR)"}, {"answer": "SELECT MIN(total_matches) FROM table_name_33 WHERE total_w_l_h = \"1-2-0\"", "question": "Which Total matches is the lowest one that has a Total W-L-H of 1-2-0?", "context": "CREATE TABLE table_name_33 (total_matches INTEGER, total_w_l_h VARCHAR)"}, {"answer": "SELECT winner FROM table_name_75 WHERE stage = 3", "question": "what is the winner of stage 3", "context": "CREATE TABLE table_name_75 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT total FROM table_name_5 WHERE silver = \"0\" AND competitors = \"31\"", "question": "What was the Total the Year Yugoslavia had 0 Silver medals and 31 Competitors?", "context": "CREATE TABLE table_name_5 (total VARCHAR, silver VARCHAR, competitors VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_74 WHERE total = \"0\" AND competitors = \"6\"", "question": "What is the Bronze in the year there was a Total of 0 medals and 6 Competitors?", "context": "CREATE TABLE table_name_74 (bronze VARCHAR, total VARCHAR, competitors VARCHAR)"}, {"answer": "SELECT year FROM table_name_78 WHERE total = \"0\" AND competitors = \"4\"", "question": "In what Year did Yugoslavia have 4 Competitors with 0 medals Total?", "context": "CREATE TABLE table_name_78 (year VARCHAR, total VARCHAR, competitors VARCHAR)"}, {"answer": "SELECT gold FROM table_name_14 WHERE silver = \"1\"", "question": "In the Year Yugoslavia won 1 Silver, how many Gold medals did they win?", "context": "CREATE TABLE table_name_14 (gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT total FROM table_name_94 WHERE gold = \"0\" AND bronze = \"0\" AND silver = \"0\" AND sports = \"1\"", "question": "What is the Total medals the Year Yugoslavia had 1 Sport and won 0 Gold, Bronze or Silver?", "context": "CREATE TABLE table_name_94 (total VARCHAR, sports VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_8 WHERE rank = \"5\" AND silver > 0", "question": "Rank of 5, and a Silver larger than 0 had what sum of total?", "context": "CREATE TABLE table_name_8 (total INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_48 WHERE gold < 2 AND rank = \"4\" AND nation = \"hungary (hun)\" AND bronze < 1", "question": "Gold smaller than 2, and a Rank of 4, and a Nation of hungary (hun), and a Bronze smaller than 1 had what total number of silver?", "context": "CREATE TABLE table_name_48 (silver VARCHAR, bronze VARCHAR, nation VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_35 WHERE total < 7 AND bronze > 1", "question": "Total smaller than 7, and a Bronze larger than 1 is what amount of average silver?", "context": "CREATE TABLE table_name_35 (silver INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT nation FROM table_name_66 WHERE bronze < 5 AND silver > 0", "question": "Bronze smaller than 5, and a Silver larger than 0 is which nation?", "context": "CREATE TABLE table_name_66 (nation VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT player FROM table_name_70 WHERE team = \"los angeles dodgers\"", "question": "What player was on the Los Angeles Dodgers?", "context": "CREATE TABLE table_name_70 (player VARCHAR, team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_36 WHERE venue = \"south end grounds\"", "question": "Which team did the Boston Beaneaters host at the South End Grounds?", "context": "CREATE TABLE table_name_36 (opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_92 WHERE team = \"milwaukee braves\"", "question": "Which team opposed the Milwaukee Braves?", "context": "CREATE TABLE table_name_92 (opponent VARCHAR, team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_85 WHERE player = \"chuck klein\"", "question": "What was the venue where Chuck Klein played?", "context": "CREATE TABLE table_name_85 (venue VARCHAR, player VARCHAR)"}, {"answer": "SELECT venue FROM table_name_42 WHERE player = \"josh hamilton\"", "question": "What was the venue where Josh Hamilton played?", "context": "CREATE TABLE table_name_42 (venue VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(cuts_made) FROM table_name_76 WHERE wins = 0 AND top_25 = 1 AND events > 4", "question": "How man cuts were there of players who had 0 wins but had 1 player in the top 25 with more than 4 events?", "context": "CREATE TABLE table_name_76 (cuts_made INTEGER, events VARCHAR, wins VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MAX(top_25) FROM table_name_16 WHERE events > 4 AND wins = 2 AND top_10 < 6", "question": "What was the larger number of players that played in 4 events that 2 wins but were less than 6 in the top 10?", "context": "CREATE TABLE table_name_16 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR, wins VARCHAR)"}, {"answer": "SELECT combination_classification FROM table_name_34 WHERE points_classification = \"daniele bennati\" AND team_classification = \"quick step\"", "question": "Which Combination classification has Points classification of daniele bennati, and a Team classification of quick step?", "context": "CREATE TABLE table_name_34 (combination_classification VARCHAR, points_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_81 WHERE team_classification = \"quick step\"", "question": "Which Mountains classification has a Team classification of quick step?", "context": "CREATE TABLE table_name_81 (mountains_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT team_classification FROM table_name_28 WHERE combination_classification = \"egoi mart\u00ednez\" AND winner = \"tom boonen\"", "question": "Which Team classification has a Combination classification of egoi mart\u00ednez, and a Winner of tom boonen?", "context": "CREATE TABLE table_name_28 (team_classification VARCHAR, combination_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT combination_classification FROM table_name_17 WHERE stage = \"14\"", "question": "Which Combination classification has a Stage of 14?", "context": "CREATE TABLE table_name_17 (combination_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_42 WHERE general_classification = \"egoi mart\u00ednez\" AND stage = \"9\"", "question": "Which Mountains classification has a General classification of egoi mart\u00ednez, and a Stage of 9?", "context": "CREATE TABLE table_name_42 (mountains_classification VARCHAR, general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_48 WHERE points_classification = \"not awarded\"", "question": "Which Mountains classification has Points classification of not awarded?", "context": "CREATE TABLE table_name_48 (mountains_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT subtitles FROM table_name_85 WHERE classifaction = \"15\"", "question": "What subtitles have 15 as the classification?", "context": "CREATE TABLE table_name_85 (subtitles VARCHAR, classifaction VARCHAR)"}, {"answer": "SELECT country FROM table_name_34 WHERE publisher = \"deltamac (hk)\"", "question": "What country has deltamac (hk) as the publisher?", "context": "CREATE TABLE table_name_34 (country VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_61 WHERE subtitles = \"english\" AND publisher = \"magna pacific\"", "question": "What is the release date that has english as the subtitles, and magna pacific as the publisher?", "context": "CREATE TABLE table_name_61 (release_date VARCHAR, subtitles VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT classifaction FROM table_name_55 WHERE language = \"cantonese\" AND publisher = \"universal pictures japan\"", "question": "What classification has cantonese as the language, and universal pictures japan as the publisher?", "context": "CREATE TABLE table_name_55 (classifaction VARCHAR, language VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT sound FROM table_name_77 WHERE language = \"cantonese\" AND classifaction = \"n/a\" AND publisher = \"spectrum dvd\"", "question": "What sound has cantonese as the language, N/A as the classification, and spectrum dvd as the publisher?", "context": "CREATE TABLE table_name_77 (sound VARCHAR, publisher VARCHAR, language VARCHAR, classifaction VARCHAR)"}, {"answer": "SELECT language FROM table_name_52 WHERE publisher = \"20th century fox\"", "question": "What language has 20th century fox as the publisher?", "context": "CREATE TABLE table_name_52 (language VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT m939_series FROM table_name_54 WHERE m809_series = \"m817\" AND m39_series = \"m51\"", "question": "Name the M939 series with M809 series of m817 and M39 series of m51", "context": "CREATE TABLE table_name_54 (m939_series VARCHAR, m809_series VARCHAR, m39_series VARCHAR)"}, {"answer": "SELECT m809_series FROM table_name_88 WHERE m939_series = \"m931/932\"", "question": "Name the M809 seris with M939 series of M931/932", "context": "CREATE TABLE table_name_88 (m809_series VARCHAR, m939_series VARCHAR)"}, {"answer": "SELECT m809_series FROM table_name_76 WHERE wheelbase = \"short\" AND m939_series = \"m931/932\"", "question": "Name the M809 series for short wheelbase and M939 series of M931/932", "context": "CREATE TABLE table_name_76 (m809_series VARCHAR, wheelbase VARCHAR, m939_series VARCHAR)"}, {"answer": "SELECT type FROM table_name_16 WHERE m809_series = \"m814\"", "question": "Name the type with M809 series of m814", "context": "CREATE TABLE table_name_16 (type VARCHAR, m809_series VARCHAR)"}, {"answer": "SELECT m939_series FROM table_name_95 WHERE wheelbase = \"short\" AND m809_series = \"m817\"", "question": "Name the M939 series for short wheelbase and M809 series of m817", "context": "CREATE TABLE table_name_95 (m939_series VARCHAR, wheelbase VARCHAR, m809_series VARCHAR)"}, {"answer": "SELECT m939_series FROM table_name_84 WHERE m809_series = \"m817\" AND wheelbase = \"short\"", "question": "Name the M939 series for short wheelbase and M809 series of m817", "context": "CREATE TABLE table_name_84 (m939_series VARCHAR, m809_series VARCHAR, wheelbase VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_92 WHERE result = \"w 38-14\"", "question": "Who was the opponent at the game with a result of W 38-14?", "context": "CREATE TABLE table_name_92 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT time FROM table_name_2 WHERE nfl_recap = \"recap\" AND result = \"w 22\u201316\"", "question": "What was the time of the game that had an NFL recap and a result of W 22\u201316?", "context": "CREATE TABLE table_name_2 (time VARCHAR, nfl_recap VARCHAR, result VARCHAR)"}, {"answer": "SELECT year FROM table_name_11 WHERE label = \"cryptogramophon\"", "question": "what year was cryptogramophon released", "context": "CREATE TABLE table_name_11 (year VARCHAR, label VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_71 WHERE manufacturer = \"honda\" AND rank = 8", "question": "Manufacturer of honda, and a Rank of 8 had what highest wins?", "context": "CREATE TABLE table_name_71 (wins INTEGER, manufacturer VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rider FROM table_name_64 WHERE points > 108 AND wins = 0 AND rank < 8 AND manufacturer = \"honda\"", "question": "Points larger than 108, and a Wins of 0, and a Rank smaller than 8, and a Manufacturer of honda is what rider?", "context": "CREATE TABLE table_name_64 (rider VARCHAR, manufacturer VARCHAR, rank VARCHAR, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_84 WHERE rider = \"st\u00e9phane mertens\"", "question": "Rider of st\u00e9phane mertens had what lowest points?", "context": "CREATE TABLE table_name_84 (points INTEGER, rider VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_18 WHERE wins = 0 AND rank > 6 AND manufacturer = \"kawasaki\" AND rider = \"massimo broccoli\"", "question": "Wins of 0, and a Rank larger than 6, and a Manufacturer of kawasaki, and a Rider of massimo broccoli involved what highest points?", "context": "CREATE TABLE table_name_18 (points INTEGER, rider VARCHAR, manufacturer VARCHAR, wins VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_82 WHERE points = 26 AND rank < 27", "question": "Points of 26, and a Rank smaller than 27 had what sum of wins?", "context": "CREATE TABLE table_name_82 (wins INTEGER, points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT ret_number FROM table_name_63 WHERE records = \"4\"", "question": "what pitcher scored 4", "context": "CREATE TABLE table_name_63 (ret_number VARCHAR, records VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_81 WHERE name = \"karen frohner\" AND points < 1266", "question": "What was the rank for karen frohner with under 1266 points?", "context": "CREATE TABLE table_name_81 (rank INTEGER, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT games_covered FROM table_name_41 WHERE round = \"divisional finals\"", "question": "What Games covered had a round of divisional finals?", "context": "CREATE TABLE table_name_41 (games_covered VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(apps) FROM table_name_69 WHERE national_team = \"brazil\" AND club = \"internazionale\"", "question": "What is the number of Apps for Internazionale Club of Brazil?", "context": "CREATE TABLE table_name_69 (apps VARCHAR, national_team VARCHAR, club VARCHAR)"}, {"answer": "SELECT season FROM table_name_90 WHERE apps > 2 AND club = \"internazionale\"", "question": "In what Season does the Internazionale Club have more than 2 Apps?", "context": "CREATE TABLE table_name_90 (season VARCHAR, apps VARCHAR, club VARCHAR)"}, {"answer": "SELECT group FROM table_name_61 WHERE year = 2010 AND award = \"best international actress\"", "question": "For which group was Kim nominated in 2010 for Best International Actress?", "context": "CREATE TABLE table_name_61 (group VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT result FROM table_name_91 WHERE film_series = \"thirst\" AND year = 2010 AND group = \"green globe film awards\"", "question": "What was the result for Thirst in 2010 at the Green Globe Film Awards?", "context": "CREATE TABLE table_name_91 (result VARCHAR, group VARCHAR, film_series VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_78 WHERE group = \"sitges film festival\"", "question": "What is the number of years that Kim was nominated at the Sitges Film Festival?", "context": "CREATE TABLE table_name_78 (year VARCHAR, group VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_92 WHERE result = \"nominated\" AND film_series = \"thirst\" AND award = \"best actress\" AND group = \"baeksang arts awards\"", "question": "What is the average year in which Kim was nominated for Thirst as Best Actress at the Baeksang Arts Awards?", "context": "CREATE TABLE table_name_92 (year INTEGER, group VARCHAR, award VARCHAR, result VARCHAR, film_series VARCHAR)"}, {"answer": "SELECT group FROM table_name_66 WHERE year < 2010 AND film_series = \"thirst\"", "question": "Which group nominated Kim in years before 2010 for Thirst?", "context": "CREATE TABLE table_name_66 (group VARCHAR, year VARCHAR, film_series VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_92 WHERE film_series = \"over the rainbow\"", "question": "What is the highest year that Kim was nominated for Over the Rainbow?", "context": "CREATE TABLE table_name_92 (year INTEGER, film_series VARCHAR)"}, {"answer": "SELECT city FROM table_name_59 WHERE state = \"massachusetts\" AND school = \"northeastern university\"", "question": "Which City has a State of massachusetts, and a School of northeastern university?", "context": "CREATE TABLE table_name_59 (city VARCHAR, state VARCHAR, school VARCHAR)"}, {"answer": "SELECT city FROM table_name_52 WHERE colony_name = \"northeastern crescent colony\"", "question": "Which City has a Colony Name of northeastern crescent colony?", "context": "CREATE TABLE table_name_52 (city VARCHAR, colony_name VARCHAR)"}, {"answer": "SELECT colony_name FROM table_name_82 WHERE state = \"west virginia\"", "question": "Which Colony Name is in west virginia?", "context": "CREATE TABLE table_name_82 (colony_name VARCHAR, state VARCHAR)"}, {"answer": "SELECT colony_name FROM table_name_1 WHERE date_founded = \"january 19, 2012\"", "question": "Which Colony Name was Founded on january 19, 2012?", "context": "CREATE TABLE table_name_1 (colony_name VARCHAR, date_founded VARCHAR)"}, {"answer": "SELECT position FROM table_name_35 WHERE mls_team = \"new england revolution\"", "question": "What position does the player from the MLS New England Revolution team hold?", "context": "CREATE TABLE table_name_35 (position VARCHAR, mls_team VARCHAR)"}, {"answer": "SELECT mls_team FROM table_name_3 WHERE pick__number = 32", "question": "Which MLS team had a pick number of 32?", "context": "CREATE TABLE table_name_3 (mls_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_75 WHERE player = \"chris gomez\"", "question": "What is the pick number for the player Chris Gomez?", "context": "CREATE TABLE table_name_75 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_90 WHERE mls_team = \"los angeles galaxy\"", "question": "Which position is the MLS team, Los Angeles Galaxy in?", "context": "CREATE TABLE table_name_90 (position VARCHAR, mls_team VARCHAR)"}, {"answer": "SELECT rookie FROM table_name_5 WHERE goalkeeper = \"rob scherr\" AND week < 6", "question": "Who is the rookie goalkeeper Rob Scherr who played before week 6?", "context": "CREATE TABLE table_name_5 (rookie VARCHAR, goalkeeper VARCHAR, week VARCHAR)"}, {"answer": "SELECT rookie FROM table_name_70 WHERE goalkeeper = \"mike gabel\"", "question": "Who is the rookie goalkeeper Mike Gabel?", "context": "CREATE TABLE table_name_70 (rookie VARCHAR, goalkeeper VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_60 WHERE month = \"august\" AND offensive = \"andrew combs\"", "question": "What was the lowest week in the month of August against Andrew Combs?", "context": "CREATE TABLE table_name_60 (week INTEGER, month VARCHAR, offensive VARCHAR)"}, {"answer": "SELECT rookie FROM table_name_59 WHERE week = 6", "question": "Who was the rookie that played week 6?", "context": "CREATE TABLE table_name_59 (rookie VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_6 WHERE date = \"april 13\"", "question": "What were the opponents from the April 13?", "context": "CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_35 WHERE date = \"april 19\"", "question": "What is the opponent from April 19?", "context": "CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_name_5 WHERE game = 1", "question": "What was the series standing after game 1?", "context": "CREATE TABLE table_name_5 (series VARCHAR, game VARCHAR)"}, {"answer": "SELECT example_meaning_in_english FROM table_name_1 WHERE tone = \"mid rising-falling\"", "question": "What is the example in English for a tone of mid rising-falling?", "context": "CREATE TABLE table_name_1 (example_meaning_in_english VARCHAR, tone VARCHAR)"}, {"answer": "SELECT example_meaning_in_english FROM table_name_49 WHERE standard_thai = \"\u0e1c\u0e48\u0e32\"", "question": "What example in English has a Standard Thai of \u0e1c\u0e48\u0e32?", "context": "CREATE TABLE table_name_49 (example_meaning_in_english VARCHAR, standard_thai VARCHAR)"}, {"answer": "SELECT tone FROM table_name_65 WHERE standard_thai = \"\u0e1b\u0e25\u0e32\"", "question": "Which tone has a Standard Thai at \u0e1b\u0e25\u0e32?", "context": "CREATE TABLE table_name_65 (tone VARCHAR, standard_thai VARCHAR)"}, {"answer": "SELECT tone FROM table_name_32 WHERE phonetic = \"[p\u02b0a\u02d0\u02e5\u02e5]\"", "question": "Which tone goes with Phonetic of [p\u02b0a\u02d0\u02e5\u02e5]?", "context": "CREATE TABLE table_name_32 (tone VARCHAR, phonetic VARCHAR)"}, {"answer": "SELECT phonetic FROM table_name_88 WHERE standard_thai = \"\u0e1c\u0e48\u0e32\"", "question": "What is the phonetic when the standard thai is \u0e1c\u0e48\u0e32?", "context": "CREATE TABLE table_name_88 (phonetic VARCHAR, standard_thai VARCHAR)"}, {"answer": "SELECT phonemic FROM table_name_42 WHERE phonetic = \"[p\u02b0a\u02d0\u02e5\u02e5]\"", "question": "What is the phonemic when the phonetic is [p\u02b0a\u02d0\u02e5\u02e5]?", "context": "CREATE TABLE table_name_42 (phonemic VARCHAR, phonetic VARCHAR)"}, {"answer": "SELECT s_default_argument FROM table_name_37 WHERE pseudorandom_number_generation = \"no\" AND eval_function = \"no\"", "question": "What is the s default argument without a pseudorandom number generation and no eval function?", "context": "CREATE TABLE table_name_37 (s_default_argument VARCHAR, pseudorandom_number_generation VARCHAR, eval_function VARCHAR)"}, {"answer": "SELECT lambda_functions FROM table_name_10 WHERE pseudorandom_number_generation = \"no\" AND s_default_argument = \"no\" AND functions = \"no\" AND eval_function = \"no\"", "question": "What is the lambda function without a pseudorandom number generation, no s default argument, no functions, and no eval function?", "context": "CREATE TABLE table_name_10 (lambda_functions VARCHAR, eval_function VARCHAR, functions VARCHAR, pseudorandom_number_generation VARCHAR, s_default_argument VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE opposition = \"surrey\" AND wicket = \"2nd\"", "question": "In what Venue was Surrey the Opposition in the 2nd Wicket?", "context": "CREATE TABLE table_name_45 (venue VARCHAR, opposition VARCHAR, wicket VARCHAR)"}, {"answer": "SELECT wicket FROM table_name_60 WHERE score < 368 AND city = \"eastbourne\"", "question": "In what Wicket in the City of Eastbourne with a Score of less than 368?", "context": "CREATE TABLE table_name_60 (wicket VARCHAR, score VARCHAR, city VARCHAR)"}, {"answer": "SELECT game FROM table_name_87 WHERE april = 6", "question": "Which game took place April 6?", "context": "CREATE TABLE table_name_87 (game VARCHAR, april VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_98 WHERE score = \"0:0 - 4:1 (pen)\"", "question": "How many Attendance in a match which scores  0:0 - 4:1 (pen)", "context": "CREATE TABLE table_name_98 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT league FROM table_name_17 WHERE play_off = \"\u2013\" AND year = \"2008\u201309\"", "question": "Which League that has no playoffs in the Year of 2008\u201309?", "context": "CREATE TABLE table_name_17 (league VARCHAR, play_off VARCHAR, year VARCHAR)"}, {"answer": "SELECT play_off FROM table_name_84 WHERE events = \"\u2013\" AND season = \"a-6\"", "question": "Which Play-Off has Events of \u2013, and a Season of a-6?", "context": "CREATE TABLE table_name_84 (play_off VARCHAR, events VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_63 WHERE year = \"2005\u201306\"", "question": "Which Season has a Year of 2005\u201306?", "context": "CREATE TABLE table_name_63 (season VARCHAR, year VARCHAR)"}, {"answer": "SELECT european FROM table_name_59 WHERE play_off = \"relegated\"", "question": "Which European has a Play-Off of relegated?", "context": "CREATE TABLE table_name_59 (european VARCHAR, play_off VARCHAR)"}, {"answer": "SELECT MIN(caps) FROM table_name_56 WHERE position = \"fullback\" AND date_of_birth__age_ = \"13 april 1983\"", "question": "What is the lowest number of caps of the fullback player born on 13 April 1983?", "context": "CREATE TABLE table_name_56 (caps INTEGER, position VARCHAR, date_of_birth__age_ VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_77 WHERE date_of_birth__age_ = \"12 may 1984\"", "question": "What is the club/province of the player born on 12 May 1984?", "context": "CREATE TABLE table_name_77 (club_province VARCHAR, date_of_birth__age_ VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_18 WHERE caps < 2 AND position = \"wing\" AND player = \"alberto sgarbi\"", "question": "What is the club/province of player Alberto Sgarbi, who played wing, with less than 2 caps?", "context": "CREATE TABLE table_name_18 (club_province VARCHAR, player VARCHAR, caps VARCHAR, position VARCHAR)"}, {"answer": "SELECT games FROM table_name_91 WHERE event = \"men's slalom\"", "question": "What games have the event of Men's Slalom?", "context": "CREATE TABLE table_name_91 (games VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_60 WHERE games = \"1976 innsbruck\"", "question": "What were the events in the 1976 Innsbruck Games?", "context": "CREATE TABLE table_name_60 (event VARCHAR, games VARCHAR)"}, {"answer": "SELECT medal FROM table_name_1 WHERE event = \"men's giant slalom\"", "question": "What is the medal for the Men's Giant Slalom event?", "context": "CREATE TABLE table_name_1 (medal VARCHAR, event VARCHAR)"}, {"answer": "SELECT SUM(top_5) FROM table_name_76 WHERE events = 15 AND top_25 < 6", "question": "In the tournament that has 15 events, and less than 6 top-25's, how many top-5's did he have?", "context": "CREATE TABLE table_name_76 (top_5 INTEGER, events VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT SUM(top_5) FROM table_name_59 WHERE top_10 = 3 AND events < 15", "question": "In the tournament that had 3 Top-10's, and less than 15 events, how many Top-5's did the player have?", "context": "CREATE TABLE table_name_59 (top_5 INTEGER, top_10 VARCHAR, events VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_20 WHERE tournament = \"masters tournament\" AND events < 15", "question": "How many wins were in the Masters Tournament with less than 15 events?", "context": "CREATE TABLE table_name_20 (wins INTEGER, tournament VARCHAR, events VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_28 WHERE top_25 > 6 AND cuts_made < 13", "question": "In the tournament with more than 6 top-25's and less than 13 cuts made, how many wins were there?", "context": "CREATE TABLE table_name_28 (wins VARCHAR, top_25 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT father FROM table_name_98 WHERE husband = \"william iv\"", "question": "Which father had william iv as a husband?", "context": "CREATE TABLE table_name_98 (father VARCHAR, husband VARCHAR)"}, {"answer": "SELECT death FROM table_name_82 WHERE image = \"elisabeth of lorraine\"", "question": "What is the death date of elisabeth of lorraine?", "context": "CREATE TABLE table_name_82 (death VARCHAR, image VARCHAR)"}, {"answer": "SELECT ceased_to_be_duchess FROM table_name_34 WHERE birth = \"9 october 1574\"", "question": "Which duchess was born on 9 october 1574?", "context": "CREATE TABLE table_name_34 (ceased_to_be_duchess VARCHAR, birth VARCHAR)"}, {"answer": "SELECT image FROM table_name_86 WHERE husband = \"william iv\"", "question": "Which image is of the woman married to william iv?", "context": "CREATE TABLE table_name_86 (image VARCHAR, husband VARCHAR)"}, {"answer": "SELECT husband FROM table_name_87 WHERE image = \"renata of lorraine\"", "question": "Who is the husband of the image of renata of lorraine?", "context": "CREATE TABLE table_name_87 (husband VARCHAR, image VARCHAR)"}, {"answer": "SELECT husband FROM table_name_74 WHERE image = \"marie of baden-sponheim\"", "question": "Who was the husband of marie of baden-sponheim?", "context": "CREATE TABLE table_name_74 (husband VARCHAR, image VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_30 WHERE home = \"chicago\"", "question": "Who was the visiting team at the Chicago home game?", "context": "CREATE TABLE table_name_30 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE home = \"colorado\"", "question": "What was the date of the home game for Colorado?", "context": "CREATE TABLE table_name_67 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE home = \"st. louis\"", "question": "What was the date of the game when St. Louis was the home team?", "context": "CREATE TABLE table_name_55 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_26 WHERE record = \"51\u201312\u20134\"", "question": "Who was the visiting team when the record was 51\u201312\u20134?", "context": "CREATE TABLE table_name_26 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE home = \"hartford\"", "question": "What was the date of the home game for Hartford?", "context": "CREATE TABLE table_name_87 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT AVG(attendance_g) FROM table_name_93 WHERE pos = 8 AND season < 1999", "question": "What is the average attendance for seasons before 1999 with pos of 8?", "context": "CREATE TABLE table_name_93 (attendance_g INTEGER, pos VARCHAR, season VARCHAR)"}, {"answer": "SELECT socket FROM table_name_27 WHERE part_number_s_ = \"adh2350iaa5do\"", "question": "What is the socket for the processor with part number ADH2350IAA5DO?", "context": "CREATE TABLE table_name_27 (socket VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT multi_1 FROM table_name_46 WHERE model_number = \"athlon x2 be-2400\"", "question": "What is the multi 1 for the Athlon x2 BE-2400?", "context": "CREATE TABLE table_name_46 (multi_1 VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT stepping FROM table_name_25 WHERE release_date = \"june 5, 2007\"", "question": "What is the stepping for the processor released June 5, 2007?", "context": "CREATE TABLE table_name_25 (stepping VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT v_core FROM table_name_29 WHERE stepping = \"g1\" AND frequency = \"1900mhz\"", "question": "What is the v-core for a stepping of G1 and frequency of 1900MHz?", "context": "CREATE TABLE table_name_29 (v_core VARCHAR, stepping VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT english_name FROM table_name_43 WHERE stat = \"7th cut\"", "question": "What was the name in English that had a Stat of 7th cut?", "context": "CREATE TABLE table_name_43 (english_name VARCHAR, stat VARCHAR)"}, {"answer": "SELECT winner FROM table_name_1 WHERE runner_up = \"alberto mancini\"", "question": "Who was the winner in the event with a runner-up of Alberto Mancini?", "context": "CREATE TABLE table_name_1 (winner VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT series FROM table_name_96 WHERE visitor = \"st. louis\" AND date = \"april 18\"", "question": "What was the series score when st. louis was away on april 18?", "context": "CREATE TABLE table_name_96 (series VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_41 WHERE visitor = \"philadelphia\"", "question": "Who recorded the decision when philadelphia was away?", "context": "CREATE TABLE table_name_41 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_44 WHERE date = \"september 30\"", "question": "What was the home team's record on September 30?", "context": "CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE opponent = \"twins\" AND date = \"september 25\"", "question": "What was the home team's record when they played the Twins on September 25?", "context": "CREATE TABLE table_name_57 (record VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_50 WHERE opponent = \"devil rays\" AND date = \"september 6\"", "question": "What was the home team's record when they played the Devil Rays on September 6?", "context": "CREATE TABLE table_name_50 (record VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_2 WHERE date = \"september 4\"", "question": "What team did the home team play on September 4?", "context": "CREATE TABLE table_name_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT known_for FROM table_name_34 WHERE entered = \"day 1\" AND celebrity = \"freddie starr\"", "question": "What was Freddie Starr, who entered on Day 1, known for?", "context": "CREATE TABLE table_name_34 (known_for VARCHAR, entered VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT celebrity FROM table_name_64 WHERE exited = \"day 12\"", "question": "Who exited on Day 12?", "context": "CREATE TABLE table_name_64 (celebrity VARCHAR, exited VARCHAR)"}, {"answer": "SELECT exited FROM table_name_53 WHERE finished = \"12th\"", "question": "What day did the person who finished in 12th place leave on?", "context": "CREATE TABLE table_name_53 (exited VARCHAR, finished VARCHAR)"}, {"answer": "SELECT finished FROM table_name_54 WHERE exited = \"day 3\"", "question": "What place did the person who left on day 3 finish in?", "context": "CREATE TABLE table_name_54 (finished VARCHAR, exited VARCHAR)"}, {"answer": "SELECT entered FROM table_name_42 WHERE known_for = \"the only way is essex star\"", "question": "On which day did the person who is known for the only way is essex star enter?", "context": "CREATE TABLE table_name_42 (entered VARCHAR, known_for VARCHAR)"}, {"answer": "SELECT known_for FROM table_name_67 WHERE entered = \"day 1\" AND celebrity = \"freddie starr\"", "question": "What was Freddie Starr, who entered on Day 1, known for?", "context": "CREATE TABLE table_name_67 (known_for VARCHAR, entered VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE game_site = \"bye\" AND week > 1", "question": "Name the date for week more than 1 and game site of bye", "context": "CREATE TABLE table_name_99 (date VARCHAR, game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_39 WHERE date = \"bye\" AND week = 1", "question": "Name the opponent for date of bye and week of 1", "context": "CREATE TABLE table_name_39 (opponent VARCHAR, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_6 WHERE week = 2", "question": "Name the opponent for week of 2", "context": "CREATE TABLE table_name_6 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT team_classification FROM table_name_13 WHERE points_classification = \"jos\u00e9 mar\u00eda jim\u00e9nez\" AND winner = \"beat zberg\"", "question": "What is the team classification with a winner of Beat Zberg, and a points classification of Jos\u00e9 Mar\u00eda Jim\u00e9nez.", "context": "CREATE TABLE table_name_13 (team_classification VARCHAR, points_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT birth FROM table_name_3 WHERE death = \"16 july 1946\"", "question": "When was the person who died on 16 July 1946 born?", "context": "CREATE TABLE table_name_3 (birth VARCHAR, death VARCHAR)"}, {"answer": "SELECT spouse FROM table_name_82 WHERE birth = \"29 september 1766\"", "question": "Who is the spouse of the person born on 29 September 1766?", "context": "CREATE TABLE table_name_82 (spouse VARCHAR, birth VARCHAR)"}, {"answer": "SELECT name FROM table_name_20 WHERE birth = \"29 september 1766\"", "question": "Who is born on 29 September 1766?", "context": "CREATE TABLE table_name_20 (name VARCHAR, birth VARCHAR)"}, {"answer": "SELECT ceased_to_be_queen FROM table_name_3 WHERE birth = \"10 may 1788\"", "question": "Who was born on 10 May 1788 that ceased to be queen?", "context": "CREATE TABLE table_name_3 (ceased_to_be_queen VARCHAR, birth VARCHAR)"}, {"answer": "SELECT marriage FROM table_name_84 WHERE became_queen = \"30 october 1816 husband's accession\"", "question": "How is the marriage of who became queen on 30 October 1816 husband's accession?", "context": "CREATE TABLE table_name_84 (marriage VARCHAR, became_queen VARCHAR)"}, {"answer": "SELECT birth FROM table_name_79 WHERE became_queen = \"15 april 1820\"", "question": "When was the person who became queen on 15 April 1820 born?", "context": "CREATE TABLE table_name_79 (birth VARCHAR, became_queen VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE date = \"april 2\"", "question": "What is their record on April 2?", "context": "CREATE TABLE table_name_59 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_8 WHERE record = \"11-6\"", "question": "Which team has the record of 11-6?", "context": "CREATE TABLE table_name_8 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_81 WHERE round > 1", "question": "What was his record when he went over 1 round?", "context": "CREATE TABLE table_name_81 (record VARCHAR, round INTEGER)"}, {"answer": "SELECT event FROM table_name_51 WHERE record = \"2-0\"", "question": "What event did he have a 2-0 record?", "context": "CREATE TABLE table_name_51 (event VARCHAR, record VARCHAR)"}, {"answer": "SELECT res FROM table_name_80 WHERE opponent = \"dan bobish\"", "question": "What was his result against dan bobish?", "context": "CREATE TABLE table_name_80 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT voltage_center__v_ FROM table_name_76 WHERE s_spec_number = \"sk096\"", "question": "Which Voltage Center (V) has an S-Spec Number of sk096?", "context": "CREATE TABLE table_name_76 (voltage_center__v_ VARCHAR, s_spec_number VARCHAR)"}, {"answer": "SELECT voltage_center__v_ FROM table_name_71 WHERE input_clock__mhz_ = \"25 x 3\" AND part_number = \"a80486dx4-75\"", "question": "Which Voltage Center (V) has an Input Clock (MHz) of 25 x 3, and a Part Number of a80486dx4-75?", "context": "CREATE TABLE table_name_71 (voltage_center__v_ VARCHAR, input_clock__mhz_ VARCHAR, part_number VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_57 WHERE total < 2 AND silver > 0", "question": "What is the low gold total for under 2 total and over 0 silvers?", "context": "CREATE TABLE table_name_57 (gold INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_62 WHERE total < 6 AND bronze < 0", "question": "How many silvers for the nation with under 6 total and under 0 bronze?", "context": "CREATE TABLE table_name_62 (silver VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT born___died FROM table_name_1 WHERE notable_for = \"professional wrestling\"", "question": "The person that was notable for professional wrestling had a Born-Died of what year?", "context": "CREATE TABLE table_name_1 (born___died VARCHAR, notable_for VARCHAR)"}, {"answer": "SELECT born___died FROM table_name_47 WHERE connection_with_australia = \"born in sydney\"", "question": "The person that was born in Sydney died in what year?", "context": "CREATE TABLE table_name_47 (born___died VARCHAR, connection_with_australia VARCHAR)"}, {"answer": "SELECT born___died FROM table_name_1 WHERE notable_for = \"tennis\"", "question": "The person notable for tennis died in what year?", "context": "CREATE TABLE table_name_1 (born___died VARCHAR, notable_for VARCHAR)"}, {"answer": "SELECT record FROM table_name_36 WHERE home = \"oakland seals\"", "question": "What was the record when the team played at Oakland Seals?", "context": "CREATE TABLE table_name_36 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT purse FROM table_name_21 WHERE trainer = \"aidan o'brien\"", "question": "What was the purse when the trainer was Aidan O'Brien?", "context": "CREATE TABLE table_name_21 (purse VARCHAR, trainer VARCHAR)"}, {"answer": "SELECT time FROM table_name_12 WHERE jockey = \"cornelio velasquez\"", "question": "What is the time for when cornelio velasquez was the jockey?", "context": "CREATE TABLE table_name_12 (time VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_75 WHERE owner = \"richard pegum\"", "question": "Who was the jockey when the owner was Richard Pegum?", "context": "CREATE TABLE table_name_75 (jockey VARCHAR, owner VARCHAR)"}, {"answer": "SELECT purse FROM table_name_95 WHERE trainer = \"aidan o'brien\"", "question": "What is the purse when Aidan O'brien was the trainer?", "context": "CREATE TABLE table_name_95 (purse VARCHAR, trainer VARCHAR)"}, {"answer": "SELECT purse FROM table_name_82 WHERE year < 2013 AND winner = \"muhannak\"", "question": "What is the purse for the year earlier than 2013 and muhannak was the winner?", "context": "CREATE TABLE table_name_82 (purse VARCHAR, year VARCHAR, winner VARCHAR)"}, {"answer": "SELECT trainer FROM table_name_71 WHERE year = 2013", "question": "Who was the trainer in 2013?", "context": "CREATE TABLE table_name_71 (trainer VARCHAR, year VARCHAR)"}, {"answer": "SELECT throws FROM table_name_2 WHERE dob = \"19/10/81\"", "question": "Which throw number had a DOB of 19/10/81?", "context": "CREATE TABLE table_name_2 (throws VARCHAR, dob VARCHAR)"}, {"answer": "SELECT first FROM table_name_76 WHERE surname = \"cook\"", "question": "Which first's surname is Cook?", "context": "CREATE TABLE table_name_76 (first VARCHAR, surname VARCHAR)"}, {"answer": "SELECT position FROM table_name_14 WHERE bats = \"l\" AND surname = \"anderson\"", "question": "Which position has L bats and Anderson as a surname?", "context": "CREATE TABLE table_name_14 (position VARCHAR, bats VARCHAR, surname VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_88 WHERE team_1 = \"us gor\u00e9e\"", "question": "What is the team 2 with a team 1 us gor\u00e9e?", "context": "CREATE TABLE table_name_88 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_31 WHERE team_1 = \"zamalek sc\"", "question": "What is the 2nd leg of team 1 Zamalek SC?", "context": "CREATE TABLE table_name_31 (team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_13 WHERE agg = \"2-1\"", "question": "What is the 1st leg of the team with a 2-1 agg.?", "context": "CREATE TABLE table_name_13 (agg VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_92 WHERE team_2 = \"far rabat\"", "question": "What is the 2nd leg of team 2 Far rabat?", "context": "CREATE TABLE table_name_92 (team_2 VARCHAR)"}, {"answer": "SELECT MIN(watts) FROM table_name_37 WHERE class = \"a\" AND frequency = \"91.5 fm\" AND city_of_license = \"elkhart, kansas\"", "question": "How many Watts has a Class of a, and a Frequency of 91.5 fm, and a City of license of elkhart, kansas?", "context": "CREATE TABLE table_name_37 (watts INTEGER, city_of_license VARCHAR, class VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT class FROM table_name_50 WHERE city_of_license = \"garden city, kansas\"", "question": "Which Class has a City of license of garden city, kansas?", "context": "CREATE TABLE table_name_50 (class VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_93 WHERE call_sign = \"kcse\"", "question": "Which Frequency has a Call sign of kcse?", "context": "CREATE TABLE table_name_93 (frequency VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT year FROM table_name_58 WHERE finish_position = \"59th\"", "question": "What year has 59th as a finish position?", "context": "CREATE TABLE table_name_58 (year VARCHAR, finish_position VARCHAR)"}, {"answer": "SELECT 2 AS nd_day FROM table_name_4 WHERE year < 2009", "question": "Which 2nd day has a year prior to 2009?", "context": "CREATE TABLE table_name_4 (year INTEGER)"}, {"answer": "SELECT event FROM table_name_82 WHERE medal = \"bronze\" AND games = \"1988 seoul\"", "question": "What event did Pakistan get the bronze medal at the 1988 Seoul Games?", "context": "CREATE TABLE table_name_82 (event VARCHAR, medal VARCHAR, games VARCHAR)"}, {"answer": "SELECT sport FROM table_name_56 WHERE games = \"1960 rome\" AND event = \"men's freestyle welterweight\"", "question": "What sport in the 1960 Rome Games did Pakistan play in the Men's Freestyle Welterweight?", "context": "CREATE TABLE table_name_56 (sport VARCHAR, games VARCHAR, event VARCHAR)"}, {"answer": "SELECT games FROM table_name_56 WHERE event = \"men's competition\" AND medal = \"silver\"", "question": "When did Pakistan win a Silver Medal in a Men's Competition?", "context": "CREATE TABLE table_name_56 (games VARCHAR, event VARCHAR, medal VARCHAR)"}, {"answer": "SELECT games FROM table_name_19 WHERE sport = \"field hockey\" AND medal = \"gold\"", "question": "When did Pakistan win a Gold Medal in Field Hockey?", "context": "CREATE TABLE table_name_19 (games VARCHAR, sport VARCHAR, medal VARCHAR)"}, {"answer": "SELECT name FROM table_name_56 WHERE games = \"1964 tokyo\"", "question": "What team played in the 1964 Tokyo Games?", "context": "CREATE TABLE table_name_56 (name VARCHAR, games VARCHAR)"}, {"answer": "SELECT sport FROM table_name_58 WHERE name = \"national team\" AND games = \"1968 mexico city\"", "question": "What sport did the National Team play in the 1968 mexico City Games?", "context": "CREATE TABLE table_name_58 (sport VARCHAR, name VARCHAR, games VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_33 WHERE position = \"center\" AND player = \"denis arkhipov\"", "question": "What is the total number of rounds that Center position Denis Arkhipov have?", "context": "CREATE TABLE table_name_33 (round VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_17 WHERE round = 3 AND nationality = \"russia\"", "question": "Who is the player from Round 3 from Russia?", "context": "CREATE TABLE table_name_17 (player VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_41 WHERE position = \"defenceman\"", "question": "What is the sum of the round with the defenceman?", "context": "CREATE TABLE table_name_41 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_85 WHERE round < 3", "question": "What is the college club that plays before round 3?", "context": "CREATE TABLE table_name_85 (college_junior_club_team VARCHAR, round INTEGER)"}, {"answer": "SELECT population FROM table_name_65 WHERE former_local_authority = \"audenshaw urban district\"", "question": "What was the population of the area that was formerly under the authority of the Audenshaw Urban District?", "context": "CREATE TABLE table_name_65 (population VARCHAR, former_local_authority VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_26 WHERE name = \"derrick harvey\" AND round > 1", "question": "What is the overall pick number that Derrick Harvey was when he was picked in a round after round 1?", "context": "CREATE TABLE table_name_26 (overall INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT college FROM table_name_72 WHERE position = \"defensive end\" AND round = 2", "question": "What college was the defensive end pick that was picked in round 2?", "context": "CREATE TABLE table_name_72 (college VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_48 WHERE college = \"usf\" AND pick__number < 24", "question": "What is the average round that the player from USF was picked in when his draft pick number was less than 24?", "context": "CREATE TABLE table_name_48 (round INTEGER, college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_77 WHERE round = 5 AND overall > 159", "question": "What is the sum of the pick numbers where the player was picked in round 5 and overall pick number was greater than 159?", "context": "CREATE TABLE table_name_77 (pick__number INTEGER, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_23 WHERE college = \"usf\" AND round > 5", "question": "What is the average overall pick number for the USF player who was picked after round 5?", "context": "CREATE TABLE table_name_23 (overall INTEGER, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_37 WHERE median_family_income = \"$74,905\" AND number_of_households < 145 OFFSET 790", "question": "Which Population is the lowest one that has a Median family income of $74,905, and a Number of households smaller than 145,790?", "context": "CREATE TABLE table_name_37 (population INTEGER, median_family_income VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT COUNT(rape__art_190_stgb_) FROM table_name_27 WHERE embezzlement__art_138_stgb_ = 820 AND total_convictions < 94 OFFSET 574", "question": "What is the total number of Rapes that have Embezzlements a figure of 820 and total number of convictions less than 94,574?", "context": "CREATE TABLE table_name_27 (rape__art_190_stgb_ VARCHAR, embezzlement__art_138_stgb_ VARCHAR, total_convictions VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_89 WHERE tie_no = 1", "question": "How many were in Attendance during a Tie no of 1?", "context": "CREATE TABLE table_name_89 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_9 WHERE away_team = \"tamworth\"", "question": "What was the Attendance during the Tamworth Away game?", "context": "CREATE TABLE table_name_9 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(1 AS st_prize___) AS $__ FROM table_name_21 WHERE winner = \"scott simpson (7)\"", "question": "Which 1st prize ($) has a Winner of scott simpson (7)?", "context": "CREATE TABLE table_name_21 (winner VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_prize___) AS $__ FROM table_name_69 WHERE date = \"aug 17\"", "question": "How many 1st prizes have a Date of aug 17?", "context": "CREATE TABLE table_name_69 (date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_15 WHERE location = \"texas\" AND winner = \"tom watson (39)\"", "question": "Which Tournament has a Location of texas, and a Winner of tom watson (39)?", "context": "CREATE TABLE table_name_15 (tournament VARCHAR, location VARCHAR, winner VARCHAR)"}, {"answer": "SELECT res FROM table_name_81 WHERE type = \"ko\" AND opponent = \"cliff beckett\"", "question": "What was the resolution for KO opposing Cliff Beckett?", "context": "CREATE TABLE table_name_81 (res VARCHAR, type VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT type FROM table_name_34 WHERE opponent = \"robert villemain\" AND record = \"109\u20131\u20132\"", "question": "What is the type when Robert Villemain had a record at 109\u20131\u20132?", "context": "CREATE TABLE table_name_34 (type VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT platform_ & _frequency_[mhz] FROM table_name_46 WHERE model = \"whr-g54s\"", "question": "What is the platform & frequency [MHz] of the whr-g54s model?", "context": "CREATE TABLE table_name_46 (platform_ VARCHAR, _frequency_ VARCHAR, mhz VARCHAR, model VARCHAR)"}, {"answer": "SELECT voltage_input_[v_a] FROM table_name_89 WHERE model = \"whr-g54s\"", "question": "What is the voltage iinput [V/A] of the whr-g54s model?", "context": "CREATE TABLE table_name_89 (voltage_input_ VARCHAR, v_a VARCHAR, model VARCHAR)"}, {"answer": "SELECT ethernet_port_count FROM table_name_72 WHERE model = \"whr-hp-g300n\"", "question": "What is the Ethernet port count of the whr-hp-g300n model?", "context": "CREATE TABLE table_name_72 (ethernet_port_count VARCHAR, model VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_64 WHERE album = \"airwaves\" AND us_hot_100 = \"\u2013\"", "question": "Which Year has an Album of airwaves, and a US Hot 100 of \u2013?", "context": "CREATE TABLE table_name_64 (year INTEGER, album VARCHAR, us_hot_100 VARCHAR)"}, {"answer": "SELECT song FROM table_name_1 WHERE year < 1979 AND us_hot_100 = \"8\"", "question": "Which Song has a Year smaller than 1979, and a US Hot 100 of 8?", "context": "CREATE TABLE table_name_1 (song VARCHAR, year VARCHAR, us_hot_100 VARCHAR)"}, {"answer": "SELECT series FROM table_name_41 WHERE date = \"april 24\"", "question": "What is the series record for the game on April 24?", "context": "CREATE TABLE table_name_41 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_50 WHERE date = \"april 27\"", "question": "What was the game number that took place on April 27?", "context": "CREATE TABLE table_name_50 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_82 WHERE attendance = \"6,275\"", "question": "Which Opponent has a Attendance of 6,275?", "context": "CREATE TABLE table_name_82 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_29 WHERE attendance = \"7,034\"", "question": "Which Opponent has a Attendance of 7,034?", "context": "CREATE TABLE table_name_29 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE result = \"0\u20132\" AND opponent = \"aberdeen\"", "question": "When has a Result of 0\u20132 and a Opponent of aberdeen?", "context": "CREATE TABLE table_name_13 (date VARCHAR, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_58 WHERE result = \"2\u20132\" AND attendance = \"5,760\"", "question": "Which Venue has a Result of 2\u20132 and Attendances of 5,760?", "context": "CREATE TABLE table_name_58 (venue VARCHAR, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT venue FROM table_name_97 WHERE attendance = \"11,045\"", "question": "Which Venue has Attendances of 11,045?", "context": "CREATE TABLE table_name_97 (venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE venue = \"a\" AND attendance = \"4,365\"", "question": "When Venue of A has Attendance of 4,365?", "context": "CREATE TABLE table_name_53 (date VARCHAR, venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_48 WHERE team_2 = \"cs sfaxien\"", "question": "What is the 1st leg of cs sfaxien?", "context": "CREATE TABLE table_name_48 (team_2 VARCHAR)"}, {"answer": "SELECT finish FROM table_name_94 WHERE player = \"lee janzen\"", "question": "Name the finish for lee janzen", "context": "CREATE TABLE table_name_94 (finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_14 WHERE to_par > 16", "question": "Name the most total with to par more than 16", "context": "CREATE TABLE table_name_14 (total INTEGER, to_par INTEGER)"}, {"answer": "SELECT record FROM table_name_95 WHERE opponent = \"new york jets\"", "question": "What was the Steeler's record when they played against the new york Jets?", "context": "CREATE TABLE table_name_95 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_24 WHERE date = \"december 8, 1963\"", "question": "What is the Result from the Date that is December 8, 1963?", "context": "CREATE TABLE table_name_24 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE attendance = 960", "question": "What is the date when the attendance is 960?", "context": "CREATE TABLE table_name_28 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(date) FROM table_name_8 WHERE venue = \"away\" AND opponent = \"wightlink raiders\" AND attendance > 375", "question": "What is the date of the away venue with an opponent of wightlink raiders with an attendance larger than 375?", "context": "CREATE TABLE table_name_8 (date INTEGER, attendance VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_75 WHERE opponent = \"telford tigers\"", "question": "What is the average attendance when the opponent is telford tigers?", "context": "CREATE TABLE table_name_75 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_44 WHERE attendance = 960", "question": "What is the result when the attendance is 960?", "context": "CREATE TABLE table_name_44 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_68 WHERE 2006 = \"a\" AND 1996 = \"1r\" AND 2004 = \"1r\"", "question": "Name the tournament for 2006 of a, 1996 of 1r and 2004 of 1r", "context": "CREATE TABLE table_name_68 (tournament VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_83 WHERE 1998 = \"atp masters series\"", "question": "Name the 2003 for atp masters series 1998", "context": "CREATE TABLE table_name_83 (Id VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_65 WHERE 1992 = \"atp masters series\"", "question": "Name the 1997 for atp masters series 1992", "context": "CREATE TABLE table_name_65 (Id VARCHAR)"}, {"answer": "SELECT city FROM table_name_84 WHERE county = \"brule\"", "question": "what city is brule in", "context": "CREATE TABLE table_name_84 (city VARCHAR, county VARCHAR)"}, {"answer": "SELECT performer_3 FROM table_name_67 WHERE performer_2 = \"karen maruyama\"", "question": "Who was performer 3 with karen maruyama as performer 2?", "context": "CREATE TABLE table_name_67 (performer_3 VARCHAR, performer_2 VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE performer_4 = \"ryan stiles\" AND episode > 5 AND performer_2 = \"wayne brady\"", "question": "What day was wayne brady performer 2, ryan stiles performer 4, and an episode number greater than 5?", "context": "CREATE TABLE table_name_78 (date VARCHAR, performer_2 VARCHAR, performer_4 VARCHAR, episode VARCHAR)"}, {"answer": "SELECT course FROM table_name_21 WHERE type = \"flat stage\" AND date = \"4 september\"", "question": "Which course has a flat stage on 4 September?", "context": "CREATE TABLE table_name_21 (course VARCHAR, type VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE course = \"la granja de san ildefonso to alto de navacerrada\"", "question": "What is the date for the La Granja de San Ildefonso to Alto de Navacerrada course?", "context": "CREATE TABLE table_name_67 (date VARCHAR, course VARCHAR)"}, {"answer": "SELECT winner FROM table_name_33 WHERE course = \"granada\"", "question": "Who won the Granada course?", "context": "CREATE TABLE table_name_33 (winner VARCHAR, course VARCHAR)"}, {"answer": "SELECT distance FROM table_name_69 WHERE date = \"5 september\"", "question": "What is the distance for the 5 September race?", "context": "CREATE TABLE table_name_69 (distance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE course = \"ja\u00e9n to c\u00f3rdoba\"", "question": "What is the race date for the course Ja\u00e9n to C\u00f3rdoba?", "context": "CREATE TABLE table_name_64 (date VARCHAR, course VARCHAR)"}, {"answer": "SELECT AVG(election_date) FROM table_name_86 WHERE number_of_deputies < 136 AND number_of_votes_received = \"1,560,753\"", "question": "What was the average election year that has less than 136 deputies, and 1,560,753 votes received?", "context": "CREATE TABLE table_name_86 (election_date INTEGER, number_of_deputies VARCHAR, number_of_votes_received VARCHAR)"}, {"answer": "SELECT percentage_of_votes FROM table_name_62 WHERE number_of_votes_received = \"1,255,153\"", "question": "What percentage of the vote was 1,255,153 of received votes?", "context": "CREATE TABLE table_name_62 (percentage_of_votes VARCHAR, number_of_votes_received VARCHAR)"}, {"answer": "SELECT number_of_deputies FROM table_name_44 WHERE election_date = 1964", "question": "What were the number of deputies for the 1964 election year?", "context": "CREATE TABLE table_name_44 (number_of_deputies VARCHAR, election_date VARCHAR)"}, {"answer": "SELECT SUM(number_of_deputies) FROM table_name_74 WHERE percentage_of_votes = \"94.2%\"", "question": "What is the number of deputies with 94.2% of the votes?", "context": "CREATE TABLE table_name_74 (number_of_deputies INTEGER, percentage_of_votes VARCHAR)"}, {"answer": "SELECT MIN(number_of_deputies) FROM table_name_17 WHERE number_of_votes_received = \"unknown\" AND election_date > 1986", "question": "What was deputies with the lowest number of unknown received votes, in an election year after 1986?", "context": "CREATE TABLE table_name_17 (number_of_deputies INTEGER, number_of_votes_received VARCHAR, election_date VARCHAR)"}, {"answer": "SELECT result FROM table_name_36 WHERE date = \"7 june 2000\"", "question": "Which Result has a Date of 7 june 2000?", "context": "CREATE TABLE table_name_36 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_46 WHERE date = \"21 june 2000\"", "question": "Which Venue has a Date of 21 june 2000?", "context": "CREATE TABLE table_name_46 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_37 WHERE venue = \"jan breydel, bruges, belgium\"", "question": "Which Competition has a Venue of jan breydel, bruges, belgium?", "context": "CREATE TABLE table_name_37 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE result = \"3\u20134\"", "question": "Which Date has a Result of 3\u20134?", "context": "CREATE TABLE table_name_11 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE game_site = \"shea stadium\" AND week < 10 AND opponent = \"baltimore colts\"", "question": "Game site of shea stadium, and a Week smaller than 10, and a Opponent of baltimore colts happened on what date?", "context": "CREATE TABLE table_name_13 (date VARCHAR, opponent VARCHAR, game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_57 WHERE game_site = \"candlestick park\"", "question": "Game site of candlestick park had what opponent?", "context": "CREATE TABLE table_name_57 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_60 WHERE game_site = \"miami orange bowl\" AND attendance > 49 OFFSET 754", "question": "Game site of miami orange bowl, and a Attendance larger than 49,754 happened on what highest week?", "context": "CREATE TABLE table_name_60 (week INTEGER, game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE opponent = \"denver broncos\"", "question": "Opponent of denver broncos happened on what date?", "context": "CREATE TABLE table_name_88 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE february > 24 AND record = \"9-8-2\"", "question": "Name the score when february is more than 24 and has a record of 9-8-2", "context": "CREATE TABLE table_name_60 (score VARCHAR, february VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_75 WHERE opponent = \"hartford whalers\"", "question": "Name the most game with opponent of hartford whalers", "context": "CREATE TABLE table_name_75 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT distance FROM table_name_72 WHERE course = \"civitavecchia to san vincenzo\"", "question": "What is the distance for the course Civitavecchia to San Vincenzo?", "context": "CREATE TABLE table_name_72 (distance VARCHAR, course VARCHAR)"}, {"answer": "SELECT winner FROM table_name_47 WHERE course = \"forl\u00ec to carpi\"", "question": "Who won at course Forl\u00ec to Carpi?", "context": "CREATE TABLE table_name_47 (winner VARCHAR, course VARCHAR)"}, {"answer": "SELECT distance FROM table_name_83 WHERE date = \"24 may\"", "question": "What was the distance on 24 May?", "context": "CREATE TABLE table_name_83 (distance VARCHAR, date VARCHAR)"}, {"answer": "SELECT intercontinental_cup_1998 FROM table_name_67 WHERE copa_mercosur_1998 = \"runner-up\"", "question": "what is the runner-up for the intercontinental cup", "context": "CREATE TABLE table_name_67 (intercontinental_cup_1998 VARCHAR, copa_mercosur_1998 VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_18 WHERE loss = \"stoneman (0-2)\"", "question": "Which average attendance has stoneman (0-2) as the loss?", "context": "CREATE TABLE table_name_18 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_14 WHERE date = \"april 12\"", "question": "What is the average attendance that has april 12 as the date?", "context": "CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT channels FROM table_name_93 WHERE clock_rate__mhz_ < 400 AND bandwidth__mb_s_ = 1420", "question": "Clock rate (MHz) smaller than 400, and a Bandwidth (MB/s) of 1420 has what channels?", "context": "CREATE TABLE table_name_93 (channels VARCHAR, clock_rate__mhz_ VARCHAR, bandwidth__mb_s_ VARCHAR)"}, {"answer": "SELECT MAX(clock_rate__mhz_) FROM table_name_75 WHERE bandwidth__mb_s_ < 4800 AND bus_width__bits_ < 16", "question": "Bandwidth (MB/s) smaller than 4800, and a Bus width (bits) smaller than 16 has what highest Clock rate (MHz)?", "context": "CREATE TABLE table_name_75 (clock_rate__mhz_ INTEGER, bandwidth__mb_s_ VARCHAR, bus_width__bits_ VARCHAR)"}, {"answer": "SELECT MAX(bus_width__bits_) FROM table_name_51 WHERE designation = \"pc800\"", "question": "Designation of pc800 has which highest Bus width (bits)?", "context": "CREATE TABLE table_name_51 (bus_width__bits_ INTEGER, designation VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_66 WHERE start = \"14\"", "question": "Which Year has a Start of 14?", "context": "CREATE TABLE table_name_66 (year INTEGER, start VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_37 WHERE finish = \"22\" AND team = \"swan\"", "question": "Which Year has a Finish of 22, and a Team of swan?", "context": "CREATE TABLE table_name_37 (year INTEGER, finish VARCHAR, team VARCHAR)"}, {"answer": "SELECT finish FROM table_name_49 WHERE start = \"15\" AND team = \"bahari\"", "question": "Which Finish has a Start of 15, and a Team of bahari?", "context": "CREATE TABLE table_name_49 (finish VARCHAR, start VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_45 WHERE year = 2000", "question": "Which Team has a Year of 2000?", "context": "CREATE TABLE table_name_45 (team VARCHAR, year VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_33 WHERE tournament = \"australian open\"", "question": "What is the info for the year 2010, for the Australian Open tournament?", "context": "CREATE TABLE table_name_33 (tournament VARCHAR)"}, {"answer": "SELECT android FROM table_name_42 WHERE other_unix = \"unknown\"", "question": "Which Android has anOther Unix of unknown?", "context": "CREATE TABLE table_name_42 (android VARCHAR, other_unix VARCHAR)"}, {"answer": "SELECT mac_os_x FROM table_name_66 WHERE amigaos = \"partial\"", "question": "Which Mac OS X has an AmigaOS of partial?", "context": "CREATE TABLE table_name_66 (mac_os_x VARCHAR, amigaos VARCHAR)"}, {"answer": "SELECT mac_os_x FROM table_name_88 WHERE linux = \"no\" AND amigaos = \"no\" AND android = \"unknown\"", "question": "Which Mac OS X has a Linux of no, and an AmigaOS of no, and an Android of unknown?", "context": "CREATE TABLE table_name_88 (mac_os_x VARCHAR, android VARCHAR, linux VARCHAR, amigaos VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE opponent = \"golden state warriors\"", "question": "What was the score for the game against the Golden State Warriors?", "context": "CREATE TABLE table_name_54 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE game = 43", "question": "What was the score of game 43?", "context": "CREATE TABLE table_name_57 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_name_70 WHERE date = \"february 1\"", "question": "Who was the opposing team for the February 1 game?", "context": "CREATE TABLE table_name_70 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_37 WHERE team = \"porsche kremer racing\"", "question": "What's the total of Year that's got a Team of Porsche Kremer Racing?", "context": "CREATE TABLE table_name_37 (year INTEGER, team VARCHAR)"}, {"answer": "SELECT class FROM table_name_16 WHERE chassis = \"mazda 787b\"", "question": "Which Class has a Chassis of Mazda 787B?", "context": "CREATE TABLE table_name_16 (class VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT year FROM table_name_55 WHERE tyre = \"d\" AND chassis = \"mazda 787\"", "question": "What Year has a Tyre of D, and Chassis of Mazda 787?", "context": "CREATE TABLE table_name_55 (year VARCHAR, tyre VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_16 WHERE year < 1987", "question": "What is the total number of Laps that's got a Year less than 1987?", "context": "CREATE TABLE table_name_16 (laps INTEGER, year INTEGER)"}, {"answer": "SELECT MIN(week) FROM table_name_76 WHERE result = \"l 35-10\"", "question": "In what week was the Result L 35-10?", "context": "CREATE TABLE table_name_76 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT played FROM table_name_33 WHERE points_against = \"263\"", "question": "What is listed for Played that has Points against of 263?", "context": "CREATE TABLE table_name_33 (played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT played FROM table_name_35 WHERE club = \"morriston rfc\"", "question": "What is listed under Played that has a Club of Morriston RFC?", "context": "CREATE TABLE table_name_35 (played VARCHAR, club VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_95 WHERE played = \"22\" AND club = \"ystalyfera rfc\"", "question": "What is listed for the Tries against that has a Played of 22, along with a Club of Ystalyfera RFC?", "context": "CREATE TABLE table_name_95 (tries_against VARCHAR, played VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_14 WHERE \"club\" = \"club\"", "question": "What is listed for Points for that has a Club of Club?", "context": "CREATE TABLE table_name_14 (points_for VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_29 WHERE try_bonus = \"8\"", "question": "Which Losing Bonus has a Try Bonus of 8?", "context": "CREATE TABLE table_name_29 (losing_bonus VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_23 WHERE try_bonus = \"5\" AND points_for = \"517\"", "question": "What is listed for the Drawn that has a Tray bonus of 5 wiht Points for of 517?", "context": "CREATE TABLE table_name_23 (drawn VARCHAR, try_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT AVG(top_10) FROM table_name_57 WHERE cuts_made = 10 AND top_25 > 6", "question": "Name the average top-10 for cuts made of 10 and top-25 more than 6", "context": "CREATE TABLE table_name_57 (top_10 INTEGER, cuts_made VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_name_88 WHERE events < 16 AND wins < 0", "question": "Name the most top-5 for wins less than 0 and events less than 16", "context": "CREATE TABLE table_name_88 (top_5 INTEGER, events VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(top_10) FROM table_name_10 WHERE cuts_made < 11 AND wins > 0", "question": "Name the least top-10 for cuts made less than 11 and wins more than 0", "context": "CREATE TABLE table_name_10 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(cuts_made) FROM table_name_90 WHERE top_10 < 11 AND top_5 > 2 AND top_25 < 6", "question": "Name the least cuts for top-5 more than 2 with top 25 less than 6 and top 10 less than 11", "context": "CREATE TABLE table_name_90 (cuts_made INTEGER, top_25 VARCHAR, top_10 VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT preservation FROM table_name_16 WHERE episode = \"1b-16 (42)\"", "question": "Has Episode 1b-16 (42) been preserved?", "context": "CREATE TABLE table_name_16 (preservation VARCHAR, episode VARCHAR)"}, {"answer": "SELECT SUM(domestic_passengers) FROM table_name_38 WHERE _percentage_change_2005_2006 = \"10.9%\" AND freight__metric_tonnes_ < 4 OFFSET 022", "question": "What is the sum of all domestic passengers with 10.9% change and less than 4,022 tonnes in freight?", "context": "CREATE TABLE table_name_38 (domestic_passengers INTEGER, _percentage_change_2005_2006 VARCHAR, freight__metric_tonnes_ VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_34 WHERE 2003 = \"1r\" AND tournament = \"wimbledon\"", "question": "Which in 2004 has a 2003 of 1r and Wimbledon Tournament", "context": "CREATE TABLE table_name_34 (tournament VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_16 WHERE 2004 = \"olympic games\"", "question": "What is in 2007 has 2004 olympic games?", "context": "CREATE TABLE table_name_16 (Id VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_85 WHERE 2001 = \"1\u20130\" AND 2000 = \"3\u20130\"", "question": "What is in 2002 has a 2001 score 1\u20130, and a 2000 of 3\u20130?", "context": "CREATE TABLE table_name_85 (Id VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_84 WHERE career_win_loss = \"6\u20137\"", "question": "What is in 2003 that has a Career Win-Loss of 6\u20137", "context": "CREATE TABLE table_name_84 (career_win_loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE decision = \"parent\" AND home = \"philadelphia\" AND visitor = \"pittsburgh\"", "question": "What is the score of the game that had a decision of Parent, home team of Philadelphia, and visitor of Pittsburgh?", "context": "CREATE TABLE table_name_11 (score VARCHAR, visitor VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT MIN(top_5) FROM table_name_27 WHERE wins < 0", "question": "Which Top-5 is the lowest one that has Wins smaller than 0?", "context": "CREATE TABLE table_name_27 (top_5 INTEGER, wins INTEGER)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_89 WHERE top_5 = 1 AND top_25 > 16", "question": "Which Cuts made is the highest one that has a Top-5 of 1, and a Top-25 larger than 16?", "context": "CREATE TABLE table_name_89 (cuts_made INTEGER, top_5 VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MAX(events) FROM table_name_93 WHERE top_5 > 5 AND top_10 > 28", "question": "Which Events is the highest one that has a Top-5 larger than 5, and a Top-10 larger than 28?", "context": "CREATE TABLE table_name_93 (events INTEGER, top_5 VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_80 WHERE opponent = \"new england patriots\"", "question": "When was the earliest that New England Patriots played?", "context": "CREATE TABLE table_name_80 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_99 WHERE opponent = \"st. louis cardinals\" AND attendance < 80 OFFSET 010", "question": "What is the average week with St. Louis Cardinals with less than 80,010 attendance?", "context": "CREATE TABLE table_name_99 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(runs) FROM table_name_75 WHERE match > 63 AND venue = \"national stadium, karachi\" AND year < 1996", "question": "Which Runs is the highest one that has a Match larger than 63, and a Venue of national stadium, karachi, and a Year smaller than 1996?", "context": "CREATE TABLE table_name_75 (runs INTEGER, year VARCHAR, match VARCHAR, venue VARCHAR)"}, {"answer": "SELECT year FROM table_name_82 WHERE match = 63", "question": "Which Year has a Match of 63?", "context": "CREATE TABLE table_name_82 (year VARCHAR, match VARCHAR)"}, {"answer": "SELECT SUM(match) FROM table_name_14 WHERE runs = 100 AND year > 1994", "question": "Which Match has Runs of 100, and a Year larger than 1994?", "context": "CREATE TABLE table_name_14 (match INTEGER, runs VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(match) FROM table_name_63 WHERE city_country = \"karachi, pakistan\" AND year > 1996", "question": "How many matches have a City/Country of karachi, pakistan, and a Year larger than 1996?", "context": "CREATE TABLE table_name_63 (match VARCHAR, city_country VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_37 WHERE bronze < 1 AND gold = 1 AND rank = \"7\"", "question": "What is the highest number of Silvers for rank 7 teams with 1 gold and under 1 bronze?", "context": "CREATE TABLE table_name_37 (silver INTEGER, rank VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_56 WHERE bronze > 4 AND gold > 21", "question": "What is the fewest number of silvers for teams with more than 21 gold and more than 4 bronze?", "context": "CREATE TABLE table_name_56 (silver INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_31 WHERE rank = \"5\" AND bronze < 0", "question": "What is the average number of silvers for teams ranked 5 with 0 bronze?", "context": "CREATE TABLE table_name_31 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT venue FROM table_name_6 WHERE result = \"won 5-0\"", "question": "Where was the game with a result of won 5-0?", "context": "CREATE TABLE table_name_6 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE result = \"won 4-2\"", "question": "What was the date of the game with a result of won 4-2?", "context": "CREATE TABLE table_name_15 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE opponent = \"hayes & yeading united\"", "question": "What was the date of the game against Hayes & Yeading United?", "context": "CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_25 WHERE result = \"won 5-0\"", "question": "Where was the game with a result of won 5-0?", "context": "CREATE TABLE table_name_25 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(appeared) FROM table_name_56 WHERE rr_w_rate < 0.75 AND result = \"rr:08,09\"", "question": "If the RR Rate is less than 0.75 with a result of RR:08,09, what is the average appeared?", "context": "CREATE TABLE table_name_56 (appeared INTEGER, rr_w_rate VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(appeared) FROM table_name_95 WHERE rr_w_rate < 0.17", "question": "What's the total appeared that has an RR Rate less than 0.17?", "context": "CREATE TABLE table_name_95 (appeared INTEGER, rr_w_rate INTEGER)"}, {"answer": "SELECT SUM(appeared) FROM table_name_87 WHERE rr_w_rate < 0.33 AND player = \"angelique kerber\"", "question": "For Angelique Kerber who had an RR Rate of less than 0.33, what's the appeared?", "context": "CREATE TABLE table_name_87 (appeared INTEGER, rr_w_rate VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(area__km\u00b2_) FROM table_name_34 WHERE county = \"nairnshire\" AND population < 11 OFFSET 050", "question": "What is the area (km\u00b2) of Nairnshire county, which has a population less than 11,050?", "context": "CREATE TABLE table_name_34 (area__km\u00b2_ INTEGER, county VARCHAR, population VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_14 WHERE date = \"august 26\"", "question": "What was the Attendance of August 26?", "context": "CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(Severe) AS tropical_cyclones FROM table_name_78 WHERE tropical_cyclones = 10 AND tropical_lows = 14", "question": "What is the highest number of severe tropical cyclones when there are 10 tropical cyclones and 14 tropical lows?", "context": "CREATE TABLE table_name_78 (Severe INTEGER, tropical_cyclones VARCHAR, tropical_lows VARCHAR)"}, {"answer": "SELECT track FROM table_name_82 WHERE bobsleigh_skeleton_curves = \"14\" AND country = \"austria\"", "question": "Which track in Austria has Bobsleigh-skeleton curves with a grade of 14%?", "context": "CREATE TABLE table_name_82 (track VARCHAR, bobsleigh_skeleton_curves VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(length__m_) FROM table_name_72 WHERE maximum_grade___percentage_ = \"15\" AND vertical_drop__m_ < 122.22 AND country = \"norway\"", "question": "What is the shortest length of a track in Norway that has a maximum grade of 15% and a vertical drop less than 122.22 m?", "context": "CREATE TABLE table_name_72 (length__m_ INTEGER, country VARCHAR, maximum_grade___percentage_ VARCHAR, vertical_drop__m_ VARCHAR)"}, {"answer": "SELECT MAX(vertical_drop__m_) FROM table_name_9 WHERE length__m_ = 1 OFFSET 200", "question": "What is the highest vertical drop among the 1,200 meter long tracks?", "context": "CREATE TABLE table_name_9 (vertical_drop__m_ INTEGER, length__m_ VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_79 WHERE opponent = \"west bromwich albion\" AND result = \"3 \u2013 3\" AND match > 20", "question": "How many Attendance has a Opponent of west bromwich albion, and a Result of 3 \u2013 3, and a Match larger than 20?", "context": "CREATE TABLE table_name_79 (attendance INTEGER, match VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(match) FROM table_name_99 WHERE venue = \"h\" AND date = \"22 september 1888\" AND attendance < 4 OFFSET 000", "question": "WHich Match has a Venue of h on 22 september 1888 with Attendances smaller than 4,000?", "context": "CREATE TABLE table_name_99 (match INTEGER, attendance VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE date = \"5 april 2000\"", "question": "What is the venue of the match on 5 April 2000?", "context": "CREATE TABLE table_name_45 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_name_66 WHERE opponent = \"michael buell\"", "question": "What is the round number of the match with Michael Buell as the opponent?", "context": "CREATE TABLE table_name_66 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_74 WHERE res = \"win\" AND round > 2 AND opponent = \"makoto ishikawa\"", "question": "What is the time of the match with a win result, more than 2 rounds, and Makoto Ishikawa as the opponent?", "context": "CREATE TABLE table_name_74 (time VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE record = \"65-87\"", "question": "what team scored 65-87", "context": "CREATE TABLE table_name_83 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE date = \"september 14\"", "question": "what was the score on september 14", "context": "CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT form_factor FROM table_name_65 WHERE capacities__gb_ = \"60/120/180/240\"", "question": "What form factor has capacities at 60/120/180/240?", "context": "CREATE TABLE table_name_65 (form_factor VARCHAR, capacities__gb_ VARCHAR)"}, {"answer": "SELECT form_factor FROM table_name_84 WHERE controller = \"sandforce\" AND capacities__gb_ = \"80/120/180/240/360/480\" AND introduced = \"july 2013\"", "question": "Which value for Form factor has Sandforce with Capacity 80/120/180/240/360/480 introduced in July 2013?", "context": "CREATE TABLE table_name_84 (form_factor VARCHAR, introduced VARCHAR, controller VARCHAR, capacities__gb_ VARCHAR)"}, {"answer": "SELECT controller FROM table_name_37 WHERE interface = \"pcie 2.0 \u00d7 8\"", "question": "Which controller has an interface of pcie 2.0 \u00d7 8?", "context": "CREATE TABLE table_name_37 (controller VARCHAR, interface VARCHAR)"}, {"answer": "SELECT controller FROM table_name_67 WHERE nand_type = \"25nm mlc-het\" AND seq_read_write_mb_s = \"270/210\"", "question": "Which controller is NAND type 25nm mlc-het with sequential read/write MB/s of 270/210?", "context": "CREATE TABLE table_name_67 (controller VARCHAR, nand_type VARCHAR, seq_read_write_mb_s VARCHAR)"}, {"answer": "SELECT interface FROM table_name_27 WHERE controller = \"sandforce\" AND codename = \"sierra star\"", "question": "Which interface uses Sandforce with a code name of Sierra Star?", "context": "CREATE TABLE table_name_27 (interface VARCHAR, controller VARCHAR, codename VARCHAR)"}, {"answer": "SELECT highest_finish FROM table_name_48 WHERE most_recent_finish = \"2nd\"", "question": "What is the Highest finish with a Most recent finish that was 2nd?", "context": "CREATE TABLE table_name_48 (highest_finish VARCHAR, most_recent_finish VARCHAR)"}, {"answer": "SELECT result FROM table_name_94 WHERE time___et__ = \"12:30pm\" AND location = \"shea stadium\"", "question": "What is the result of the game at the Shea Stadium at 12:30pm (ET)?", "context": "CREATE TABLE table_name_94 (result VARCHAR, time___et__ VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_57 WHERE blackpool < 0", "question": "Which Played is the lowest one that has a Blackpool smaller than 0?", "context": "CREATE TABLE table_name_57 (played INTEGER, blackpool INTEGER)"}, {"answer": "SELECT MAX(blackpool) FROM table_name_82 WHERE draw > 18", "question": "Which Blackpool is the highest one that has a Draw larger than 18?", "context": "CREATE TABLE table_name_82 (blackpool INTEGER, draw INTEGER)"}, {"answer": "SELECT COUNT(preston_north_end) FROM table_name_90 WHERE blackpool < 0", "question": "How much Preston North End has a Blackpool smaller than 0?", "context": "CREATE TABLE table_name_90 (preston_north_end VARCHAR, blackpool INTEGER)"}, {"answer": "SELECT SUM(blackpool) FROM table_name_94 WHERE preston_north_end < 46 AND competition = \"other\" AND draw > 1", "question": "Which Blackpool has a Preston North End smaller than 46, and a Competition of other, and a Draw larger than 1?", "context": "CREATE TABLE table_name_94 (blackpool INTEGER, draw VARCHAR, preston_north_end VARCHAR, competition VARCHAR)"}, {"answer": "SELECT finish FROM table_name_82 WHERE team = \"chip ganassi racing\" AND year > 2010 AND start = \"17\"", "question": "What is the finish for the chip ganassi racing team that was later than 2010 and a Start of 17?", "context": "CREATE TABLE table_name_82 (finish VARCHAR, start VARCHAR, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_70 WHERE year = 2007", "question": "What is shown for Chassis for the year of 2007?", "context": "CREATE TABLE table_name_70 (chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_name_48 WHERE finish = \"19\"", "question": "What is the name of the team with a finish of 19?", "context": "CREATE TABLE table_name_48 (team VARCHAR, finish VARCHAR)"}, {"answer": "SELECT finish FROM table_name_74 WHERE start = \"3\" AND year = 2010", "question": "What is the Finish when the start shows 3 in the year of 2010?", "context": "CREATE TABLE table_name_74 (finish VARCHAR, start VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_8 WHERE start = \"3\" AND year = 2007", "question": "What is the Engine with 3 as the start in the year of 2007?", "context": "CREATE TABLE table_name_8 (engine VARCHAR, start VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE tournament = \"tokyo, japan\" AND date = \"october 24, 1982\"", "question": "What was the Score on October 24, 1982 in Tokyo, Japan?", "context": "CREATE TABLE table_name_60 (score VARCHAR, tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_23 WHERE date = \"october 24, 1982\" AND partner = \"alycia moulton\"", "question": "What Tournament on October 24, 1982 had Alycia Moulton as the Partner?", "context": "CREATE TABLE table_name_23 (tournament VARCHAR, date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_10 WHERE partner = \"pam shriver\" AND score = \"6-3, 6-3\"", "question": "Who were the Opponents when Laura DuPont had Pam Shriver as Partner with a Score of 6-3, 6-3?", "context": "CREATE TABLE table_name_10 (opponents VARCHAR, partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_99 WHERE score = \"3-6, 1-6\"", "question": "On what Surface was the match with a Score of 3-6, 1-6 played?", "context": "CREATE TABLE table_name_99 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_85 WHERE partner = \"barbara jordan\" AND score = \"6-2, 3-6, 3-6\"", "question": "In what Tournament was Barbara Jordan a Partner with a Score of 6-2, 3-6, 3-6?", "context": "CREATE TABLE table_name_85 (tournament VARCHAR, partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_62 WHERE tries_for = \"40\"", "question": "Name the points with tries for of 40", "context": "CREATE TABLE table_name_62 (points_for VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT played FROM table_name_37 WHERE losing_bonus = \"3\" AND points_against = \"426\"", "question": "Name the played with losing bonus of 3 and points against of 426", "context": "CREATE TABLE table_name_37 (played VARCHAR, losing_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT club FROM table_name_9 WHERE points = \"56\"", "question": "Name the club with points of 56", "context": "CREATE TABLE table_name_9 (club VARCHAR, points VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_87 WHERE club = \"porthcawl rfc\"", "question": "Name the points against for porthcawl rfc", "context": "CREATE TABLE table_name_87 (points_against VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_92 WHERE drawn = \"0\" AND lost = \"0\"", "question": "Name the club for drawn of 0 and lost of 0", "context": "CREATE TABLE table_name_92 (club VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points FROM table_name_96 WHERE lost = \"19\"", "question": "Name the points with lost of 19", "context": "CREATE TABLE table_name_96 (points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT district FROM table_name_48 WHERE result = \"lost re-election republican gain\"", "question": "result is lost re-election republican gain, what is the district?", "context": "CREATE TABLE table_name_48 (district VARCHAR, result VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_52 WHERE winning_driver = \"felice nazzaro\"", "question": "Which Winning constructor has a Winning driver of felice nazzaro?", "context": "CREATE TABLE table_name_52 (winning_constructor VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_30 WHERE date = \"18 may\"", "question": "Who is Winning driver on 18 may?", "context": "CREATE TABLE table_name_30 (winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_73 WHERE name = \"st. petersburg - moscow\"", "question": "WHo is Winning driver that is in st. petersburg - moscow?", "context": "CREATE TABLE table_name_73 (winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE winning_constructor = \"fiat\" AND winning_driver = \"louis wagner\"", "question": "Which Date has a Winning constructor of fiat and a Winning driver of louis wagner?", "context": "CREATE TABLE table_name_34 (date VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT report FROM table_name_13 WHERE date = \"1 june\"", "question": "Which Report is on 1 june?", "context": "CREATE TABLE table_name_13 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE name = \"vanderbilt cup\"", "question": "When is vanderbilt cup in?", "context": "CREATE TABLE table_name_55 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT event FROM table_name_28 WHERE round = 1 AND record = \"5-1\"", "question": "Which event is in round 1 with a record at 5-1?", "context": "CREATE TABLE table_name_28 (event VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_42 WHERE country = \"cambodia\" AND total < 1", "question": "When the country is Cambodia and the total is smaller than 1 what's the lowest silver?", "context": "CREATE TABLE table_name_42 (silver INTEGER, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_94 WHERE country = \"cambodia\" AND total < 1", "question": "What is the highest gold for Cambodia when the total is less than 1?", "context": "CREATE TABLE table_name_94 (gold INTEGER, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_92 WHERE bronze < 0", "question": "What is the total silver when bronze is smaller than 0?", "context": "CREATE TABLE table_name_92 (silver VARCHAR, bronze INTEGER)"}, {"answer": "SELECT MAX(total) FROM table_name_25 WHERE gold = 0 AND bronze > 1", "question": "What is the total when the gold of 0, and a bronze larger than 1?", "context": "CREATE TABLE table_name_25 (total INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_12 WHERE silver > 2", "question": "What is the total when bronze has a silver larger than 2?", "context": "CREATE TABLE table_name_12 (bronze VARCHAR, silver INTEGER)"}, {"answer": "SELECT SUM(silver) FROM table_name_14 WHERE total > 14 AND gold > 16", "question": "What is the sum of silver medals for teams with more than 14 total medals and more than 16 golds?", "context": "CREATE TABLE table_name_14 (silver INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT rank FROM table_name_79 WHERE bronze = 3 AND silver = 0", "question": "What is the rank of the team having 3 bronzes and 0 silver?", "context": "CREATE TABLE table_name_79 (rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_39 WHERE points_against = \"383\"", "question": "How many tries against did the club with 383 points against have?", "context": "CREATE TABLE table_name_39 (tries_against VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_90 WHERE tries_for = \"48\"", "question": "How many tries against did the club with 48 tries for have?", "context": "CREATE TABLE table_name_90 (tries_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT points FROM table_name_59 WHERE lost = \"13\" AND points_against = \"461\"", "question": "How many points did the club with 13 losses and 461 points against have?", "context": "CREATE TABLE table_name_59 (points VARCHAR, lost VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_92 WHERE club = \"pentyrch rfc\"", "question": "How many tries against did Pentyrch RFC have?", "context": "CREATE TABLE table_name_92 (tries_against VARCHAR, club VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_83 WHERE games < 7", "question": "What is the lowest drawn that has games less than 7?", "context": "CREATE TABLE table_name_83 (drawn INTEGER, games INTEGER)"}, {"answer": "SELECT COUNT(lost) FROM table_name_50 WHERE points > 14", "question": "Hoe many of lost have points greater than 14?", "context": "CREATE TABLE table_name_50 (lost VARCHAR, points INTEGER)"}, {"answer": "SELECT COUNT(lost) FROM table_name_81 WHERE points = 11 AND drawn > 1", "question": "How many of lost have 11 as the points, and a drawn greater than 1?", "context": "CREATE TABLE table_name_81 (lost VARCHAR, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_26 WHERE drawn < 0", "question": "What is the lowest game that has a drawn less than 0?", "context": "CREATE TABLE table_name_26 (games INTEGER, drawn INTEGER)"}, {"answer": "SELECT MIN(total) FROM table_name_51 WHERE bronze = 0 AND silver > 0 AND rank = 5", "question": "Which Total is the lowest one that has a Bronze of 0, and a Silver larger than 0, and a Rank of 5?", "context": "CREATE TABLE table_name_51 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_69 WHERE total < 2 AND silver > 0 AND gold < 0", "question": "Which Bronze has a Total smaller than 2, and a Silver larger than 0, and a Gold smaller than 0?", "context": "CREATE TABLE table_name_69 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_38 WHERE nation = \"switzerland\" AND bronze < 0", "question": "Which Rank is the lowest one that has a Nation of switzerland, and a Bronze smaller than 0?", "context": "CREATE TABLE table_name_38 (rank INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_87 WHERE bronze = 0 AND nation = \"poland\" AND gold < 0", "question": "Which Total is the highest one that has a Bronze of 0, and a Nation of poland, and a Gold smaller than 0?", "context": "CREATE TABLE table_name_87 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT save FROM table_name_49 WHERE attendance = \"23,394\"", "question": "What is the save of the game that 23,394 people attended?", "context": "CREATE TABLE table_name_49 (save VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_51 WHERE competition = \"league\" AND venue = \"away\" AND opponent = \"swindon wildcats\" AND attendance > 1 OFFSET 201", "question": "Whihc Date is the lowest one that has a Competition of league, and a Venue of away, and an Opponent of swindon wildcats, and an Attendance larger than 1,201?", "context": "CREATE TABLE table_name_51 (date INTEGER, attendance VARCHAR, opponent VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_name_24 WHERE opponent = \"romford raiders\" AND result = \"won 7-3\" AND attendance > 1 OFFSET 769", "question": "How many Dates have an Opponent of romford raiders, and a Result of won 7-3, and an Attendance larger than 1,769?", "context": "CREATE TABLE table_name_24 (date VARCHAR, attendance VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(date) FROM table_name_96 WHERE opponent = \"milton keynes lightning\" AND attendance < 1 OFFSET 771", "question": "Which Date has an Opponent of milton keynes lightning, and an Attendance smaller than 1,771?", "context": "CREATE TABLE table_name_96 (date INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_43 WHERE date = \"october 25\"", "question": "Which Attendance has a Date of october 25?", "context": "CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE visitor = \"atlanta\"", "question": "Which Score has a Visitor of atlanta?", "context": "CREATE TABLE table_name_72 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT yards FROM table_name_74 WHERE attempts = \"247\"", "question": "Which Yards has a Attempts of 247", "context": "CREATE TABLE table_name_74 (yards VARCHAR, attempts VARCHAR)"}, {"answer": "SELECT yards FROM table_name_26 WHERE completion__percentage = \"64.9%\"", "question": "Which yard has a Completion of 64.9%?", "context": "CREATE TABLE table_name_26 (yards VARCHAR, completion__percentage VARCHAR)"}, {"answer": "SELECT completions FROM table_name_36 WHERE yards = \"10,098\"", "question": "Which Completions has Yards of 10,098?", "context": "CREATE TABLE table_name_36 (completions VARCHAR, yards VARCHAR)"}, {"answer": "SELECT year FROM table_name_3 WHERE attempts = \"282\"", "question": "When has Attempts of 282 ?", "context": "CREATE TABLE table_name_3 (year VARCHAR, attempts VARCHAR)"}, {"answer": "SELECT completions FROM table_name_89 WHERE attempts = \"1,271\"", "question": "Which Completions has Attempts of 1,271?", "context": "CREATE TABLE table_name_89 (completions VARCHAR, attempts VARCHAR)"}, {"answer": "SELECT completion__percentage FROM table_name_57 WHERE yards = \"2,175\"", "question": "which Completion % has a Yards of 2,175?", "context": "CREATE TABLE table_name_57 (completion__percentage VARCHAR, yards VARCHAR)"}, {"answer": "SELECT surface FROM table_name_86 WHERE opponent = \"adrian ungur\"", "question": "What was the surface for Adrian Ungur as an opponent?", "context": "CREATE TABLE table_name_86 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE surface = \"clay\" AND date = \"may 29, 2006\"", "question": "What was the score on a clay surface on May 29, 2006?", "context": "CREATE TABLE table_name_5 (score VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_75 WHERE score = \"6\u20133, 7\u20136\"", "question": "Which tournament had a score of 6\u20133, 7\u20136?", "context": "CREATE TABLE table_name_75 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_15 WHERE opponent = \"michael berrer\"", "question": "On what surface was the opponent Michael Berrer?", "context": "CREATE TABLE table_name_15 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_58 WHERE points = 2", "question": "What game has 2 points?", "context": "CREATE TABLE table_name_58 (games INTEGER, points VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_59 WHERE lost < 4 AND points = 8", "question": "How many total drawn has less than 4 lost and 8 points?", "context": "CREATE TABLE table_name_59 (drawn INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_5 WHERE games < 7", "question": "How many lost are there before game 7?", "context": "CREATE TABLE table_name_5 (lost INTEGER, games INTEGER)"}, {"answer": "SELECT COUNT(touchdowns) FROM table_name_65 WHERE net_yds < 4495 AND long < 80 AND yds_att < 5.5", "question": "How many touchdowns did the player with less than 4495 yards, long of less than 80, and yds/att less than 5.5 have?", "context": "CREATE TABLE table_name_65 (touchdowns VARCHAR, yds_att VARCHAR, net_yds VARCHAR, long VARCHAR)"}, {"answer": "SELECT SUM(attempts) FROM table_name_66 WHERE start > 1997 AND yds_att = 5 AND rank > 1", "question": "How many attempts did the player ranking with a number higher than 1, who started after 1997 and had yds/att of 5 have?", "context": "CREATE TABLE table_name_66 (attempts INTEGER, rank VARCHAR, start VARCHAR, yds_att VARCHAR)"}, {"answer": "SELECT AVG(net_yds) FROM table_name_59 WHERE long = 68 AND start > 1984", "question": "What is the average net yds for the player who had a long of 68 and started after 1984?", "context": "CREATE TABLE table_name_59 (net_yds INTEGER, long VARCHAR, start VARCHAR)"}, {"answer": "SELECT MIN(attempts) FROM table_name_57 WHERE rank > 3 AND start > 1984 AND yds_att < 6.1", "question": "What is the lowest number of attempts for the player with a rank number larger than 3, who started after 1984 and had less than 6.1 yds/att?", "context": "CREATE TABLE table_name_57 (attempts INTEGER, yds_att VARCHAR, rank VARCHAR, start VARCHAR)"}, {"answer": "SELECT film FROM table_name_1 WHERE year < 2002", "question": "Which film was made before 2002?", "context": "CREATE TABLE table_name_1 (film VARCHAR, year INTEGER)"}, {"answer": "SELECT film FROM table_name_68 WHERE role = \"taylor\"", "question": "Which film has a role named Taylor?", "context": "CREATE TABLE table_name_68 (film VARCHAR, role VARCHAR)"}, {"answer": "SELECT notes FROM table_name_3 WHERE film = \"touch & go\"", "question": "What notes does the film Touch & go have?", "context": "CREATE TABLE table_name_3 (notes VARCHAR, film VARCHAR)"}, {"answer": "SELECT language FROM table_name_46 WHERE film = \"marion bridge\"", "question": "What language is the film Marion Bridge?", "context": "CREATE TABLE table_name_46 (language VARCHAR, film VARCHAR)"}, {"answer": "SELECT language FROM table_name_90 WHERE role = \"annabelle\"", "question": "What language is the film with a character named Annabelle?", "context": "CREATE TABLE table_name_90 (language VARCHAR, role VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_83 WHERE school = \"furman\" AND round < 8", "question": "What is the lowest pick from the Furman School that is a round smaller than 8?", "context": "CREATE TABLE table_name_83 (pick INTEGER, school VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_59 WHERE school = \"morris brown\"", "question": "What is the total number of round picks from the Morris Brown School?", "context": "CREATE TABLE table_name_59 (round VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_58 WHERE player = \"rell tipton\"", "question": "What is the total number of rounds for the player of Rell Tipton?", "context": "CREATE TABLE table_name_58 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE game = 3", "question": "On what date was game 3 played?", "context": "CREATE TABLE table_name_44 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_8 WHERE date = \"april 22\"", "question": "Which game took place on April 22?", "context": "CREATE TABLE table_name_8 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_name_1 WHERE game = 1", "question": "What was the standing in the series after game 1?", "context": "CREATE TABLE table_name_1 (series VARCHAR, game VARCHAR)"}, {"answer": "SELECT race FROM table_name_90 WHERE time = \"1:24.35\"", "question": "Which race had a time of 1:24.35?", "context": "CREATE TABLE table_name_90 (race VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE group = \"g1\" AND venue = \"flemington\"", "question": "What was the date for the G1 group race at Flemington?", "context": "CREATE TABLE table_name_98 (date VARCHAR, group VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(weight__kg_) FROM table_name_42 WHERE race = \"chelmsford stakes\"", "question": "What was the combined weight in kilograms of the horses in the race at Chelmsford stakes?", "context": "CREATE TABLE table_name_42 (weight__kg_ VARCHAR, race VARCHAR)"}, {"answer": "SELECT year FROM table_name_54 WHERE artist = \"afro-dite\"", "question": "In what year was the artist Afro-dite?", "context": "CREATE TABLE table_name_54 (year VARCHAR, artist VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_2 WHERE date = \"december 23, 2001\"", "question": "What stadium was the game held at on December 23, 2001?", "context": "CREATE TABLE table_name_2 (stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_52 WHERE date = \"december 2, 2001\"", "question": "What is the Record for the game held on December 2, 2001?", "context": "CREATE TABLE table_name_52 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_24 WHERE attendance = \"65,666\"", "question": "What is the average Game where there were 65,666 in attendance?", "context": "CREATE TABLE table_name_24 (game INTEGER, attendance VARCHAR)"}, {"answer": "SELECT feature FROM table_name_46 WHERE driving_force_ex = \"25cm (10-inch)\"", "question": "Driving Force EX of 25cm (10-inch) involves what feature?", "context": "CREATE TABLE table_name_46 (feature VARCHAR, driving_force_ex VARCHAR)"}, {"answer": "SELECT driving_force_gt FROM table_name_2 WHERE gt_force = \"no\" AND driving_force_pro = \"no\" AND g27_racing_wheel = \"no\"", "question": "GT Force of no, and a Driving Force Pro of no, and a G27 Racing Wheel of no has what driving force gt?", "context": "CREATE TABLE table_name_2 (driving_force_gt VARCHAR, g27_racing_wheel VARCHAR, gt_force VARCHAR, driving_force_pro VARCHAR)"}, {"answer": "SELECT driving_force_gt FROM table_name_34 WHERE feature = \"gear stick\"", "question": "Feature of gear stick involves which driving force gt?", "context": "CREATE TABLE table_name_34 (driving_force_gt VARCHAR, feature VARCHAR)"}, {"answer": "SELECT feature FROM table_name_64 WHERE driving_force_ex = \"no\" AND driving_force_gt = \"yes\" AND driving_force_pro = \"yes\"", "question": "Driving Force EX of no, and a Driving Force GT of yes, and a Driving Force Pro of yes has what feature?", "context": "CREATE TABLE table_name_64 (feature VARCHAR, driving_force_pro VARCHAR, driving_force_ex VARCHAR, driving_force_gt VARCHAR)"}, {"answer": "SELECT g27_racing_wheel FROM table_name_45 WHERE driving_force_ex = \"no\" AND driving_force_pro = \"no\" AND g25_racing_wheel = \"no\"", "question": "Driving Force EX of no, and a Driving Force Pro of no, and a G25 Racing Wheel of no involves which g27 racing wheel?", "context": "CREATE TABLE table_name_45 (g27_racing_wheel VARCHAR, g25_racing_wheel VARCHAR, driving_force_ex VARCHAR, driving_force_pro VARCHAR)"}, {"answer": "SELECT driving_force_ex FROM table_name_87 WHERE gt_force = \"yes\" AND g27_racing_wheel = \"16\"", "question": "GT Force of yes, and a G27 Racing Wheel of 16 involves which driving force ex?", "context": "CREATE TABLE table_name_87 (driving_force_ex VARCHAR, gt_force VARCHAR, g27_racing_wheel VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE date = \"october 7\"", "question": "What is the score on october 7?", "context": "CREATE TABLE table_name_95 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_39 WHERE score = \"17-13\"", "question": "How many people went to the game that had 17-13?", "context": "CREATE TABLE table_name_39 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_56 WHERE code__iata_icao_ = \"hkg/vhhh\"", "question": "What is the highest rank for the airport with a code of HKG/VHHH?", "context": "CREATE TABLE table_name_56 (rank INTEGER, code__iata_icao_ VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_72 WHERE drawn = 7 AND team = \"corinthians\" AND played > 18", "question": "How many Points have Drawn of 7, and a Team of corinthians, and a Played larger than 18?", "context": "CREATE TABLE table_name_72 (points VARCHAR, played VARCHAR, drawn VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_80 WHERE position = 5 AND played < 18", "question": "Which Points is the highest one that has a Position of 5, and a Played smaller than 18?", "context": "CREATE TABLE table_name_80 (points INTEGER, position VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_76 WHERE position < 9 AND points < 22 AND lost < 9 AND against > 29", "question": "Which Drawn is the average one that has a Position smaller than 9, and Points smaller than 22, and a Lost smaller than 9, and an Against larger than 29?", "context": "CREATE TABLE table_name_76 (drawn INTEGER, against VARCHAR, lost VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_54 WHERE played < 18", "question": "How many Against have Played smaller than 18?", "context": "CREATE TABLE table_name_54 (against VARCHAR, played INTEGER)"}, {"answer": "SELECT points_difference FROM table_name_66 WHERE points > 3 AND lost > 0", "question": "What is the points difference associated with more than 3 points and more than 0 losses?", "context": "CREATE TABLE table_name_66 (points_difference VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points_difference FROM table_name_45 WHERE lost > 2 AND points > 1", "question": "What is the difference associated with more than 2 losses and more than 1 point?", "context": "CREATE TABLE table_name_45 (points_difference VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT location FROM table_name_34 WHERE game = 64", "question": "What location did game 64 take place", "context": "CREATE TABLE table_name_34 (location VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_27 WHERE game_site = \"tiger stadium\" AND week > 7", "question": "What was the Attendance after Week 7 at Tiger Stadium?", "context": "CREATE TABLE table_name_27 (attendance VARCHAR, game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_71 WHERE result = \"w 21\u20137\"", "question": "What was the Attendance at the Game with a Result of w 21\u20137?", "context": "CREATE TABLE table_name_71 (attendance INTEGER, result VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_4 WHERE make__model = \"new flyer c40lfr\"", "question": "How many years have a Make/ Model of new flyer c40lfr?", "context": "CREATE TABLE table_name_4 (year VARCHAR, make__model VARCHAR)"}, {"answer": "SELECT make__model FROM table_name_36 WHERE numbers__quantity_ordered_ = \"1461\u20131500 (40 buses)\"", "question": "Which Make/ Model that Numbers (Quantity Ordered) of 1461\u20131500 (40 buses)?", "context": "CREATE TABLE table_name_36 (make__model VARCHAR, numbers__quantity_ordered_ VARCHAR)"}, {"answer": "SELECT fuel_propulsion FROM table_name_34 WHERE numbers__quantity_ordered_ = \"7124-7156 (33 buses)\"", "question": "Which Fuel Propulsion has Numbers (Quantity Ordered) of 7124-7156 (33 buses)?", "context": "CREATE TABLE table_name_34 (fuel_propulsion VARCHAR, numbers__quantity_ordered_ VARCHAR)"}, {"answer": "SELECT numbers__quantity_ordered_ FROM table_name_96 WHERE fuel_propulsion = \"cng\" AND year < 2008 AND make__model = \"nabi 40-lfw\"", "question": "Which Numbers (Quantity Ordered) have a Fuel Propulsion of cng, and a Year smaller than 2008, and a Make/ Model of nabi 40-lfw?", "context": "CREATE TABLE table_name_96 (numbers__quantity_ordered_ VARCHAR, make__model VARCHAR, fuel_propulsion VARCHAR, year VARCHAR)"}, {"answer": "SELECT numbers__quantity_ordered_ FROM table_name_88 WHERE make__model = \"eldorado national passport\"", "question": "Which Numbers (Quantity Ordered) have a Make/ Model of eldorado national passport?", "context": "CREATE TABLE table_name_88 (numbers__quantity_ordered_ VARCHAR, make__model VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_78 WHERE college = \"alabama\" AND pick < 26", "question": "What is the earliest year for Alabama with a pick under 26?", "context": "CREATE TABLE table_name_78 (year INTEGER, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_23 WHERE year > 2010 AND pick = 2", "question": "Which player was pick 2 later than 2010?", "context": "CREATE TABLE table_name_23 (player VARCHAR, year VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_31 WHERE pick > 28", "question": "Which position has a pick greater than 28?", "context": "CREATE TABLE table_name_31 (position VARCHAR, pick INTEGER)"}, {"answer": "SELECT opponent FROM table_name_14 WHERE date = \"august 25\"", "question": "what team played on august 25", "context": "CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT class FROM table_name_83 WHERE stages_won = \"0\" AND vehicle = \"hummer\" AND year < 2009", "question": "What class is associated with 0 stages won, a hummer, and before 2009?", "context": "CREATE TABLE table_name_83 (class VARCHAR, year VARCHAR, stages_won VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT position FROM table_name_59 WHERE year = 2012", "question": "What position did he finish in 2012?", "context": "CREATE TABLE table_name_59 (position VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_59 WHERE class = \"car\" AND stages_won = \"0\"", "question": "What year did he compete in the car class and win 0 stages?", "context": "CREATE TABLE table_name_59 (year VARCHAR, class VARCHAR, stages_won VARCHAR)"}, {"answer": "SELECT position FROM table_name_16 WHERE division = \"west\" AND week = \"february 12\"", "question": "on week of february 12, in the west division, what is the position?", "context": "CREATE TABLE table_name_16 (position VARCHAR, division VARCHAR, week VARCHAR)"}, {"answer": "SELECT location FROM table_name_47 WHERE _number_found = \"4\"", "question": "What is the listed Location with a # found of 4?", "context": "CREATE TABLE table_name_47 (location VARCHAR, _number_found VARCHAR)"}, {"answer": "SELECT ball_diameter FROM table_name_87 WHERE location = \"el manati\" AND period = \"1200 bce\"", "question": "What's the Ball Diameter with the Location oof El Manati, and the Period of 1200 BCE?", "context": "CREATE TABLE table_name_87 (ball_diameter VARCHAR, location VARCHAR, period VARCHAR)"}, {"answer": "SELECT ball_diameter FROM table_name_54 WHERE culture = \"olmec\"", "question": "What's the Ball Diameter with the Culture of Olmec?", "context": "CREATE TABLE table_name_54 (ball_diameter VARCHAR, culture VARCHAR)"}, {"answer": "SELECT period FROM table_name_81 WHERE _number_found = \"5\"", "question": "What's the Period with # found of 5?", "context": "CREATE TABLE table_name_81 (period VARCHAR, _number_found VARCHAR)"}, {"answer": "SELECT country FROM table_name_61 WHERE name = \"azeri tv tower\"", "question": "Which Country has azeri tv tower?", "context": "CREATE TABLE table_name_61 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT pinnacle_height FROM table_name_31 WHERE name = \"chimney of orot rabin\"", "question": "What is Pinnacle height of chimney of orot rabin?", "context": "CREATE TABLE table_name_31 (pinnacle_height VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_37 WHERE pinnacle_height = \"metres (ft)\" AND name = \"azeri tv tower\"", "question": "Which Country has a Pinnacle height of metres (ft) and a Name of azeri tv tower?", "context": "CREATE TABLE table_name_37 (country VARCHAR, pinnacle_height VARCHAR, name VARCHAR)"}, {"answer": "SELECT town FROM table_name_29 WHERE structural_type = \"guyed mast\" AND country = \"belgium\"", "question": "Which Town has a Structural type of guyed mast and a Country of belgium?", "context": "CREATE TABLE table_name_29 (town VARCHAR, structural_type VARCHAR, country VARCHAR)"}, {"answer": "SELECT main_use FROM table_name_54 WHERE name = \"emley moor tower (mk.3)\"", "question": "What is the Main use of emley moor tower (mk.3)?", "context": "CREATE TABLE table_name_54 (main_use VARCHAR, name VARCHAR)"}, {"answer": "SELECT main_use FROM table_name_75 WHERE country = \"hungary\" AND name = \"transmitter solt\"", "question": "What is the Main use of transmitter solt in Hungary?", "context": "CREATE TABLE table_name_75 (main_use VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE race_title = \"sandown\"", "question": "what day was the sandown", "context": "CREATE TABLE table_name_56 (date VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT birth FROM table_name_52 WHERE became_duchess = \"18 august 1593 husband's accession\"", "question": "What is the Birth of the lady that has a Became Duchess on 18 august 1593 husband's accession?", "context": "CREATE TABLE table_name_52 (birth VARCHAR, became_duchess VARCHAR)"}, {"answer": "SELECT spouse FROM table_name_47 WHERE birth = \"29 october 1451\"", "question": "Who is the Spouse of the Duchess that has a Birth on 29 october 1451?", "context": "CREATE TABLE table_name_47 (spouse VARCHAR, birth VARCHAR)"}, {"answer": "SELECT spouse FROM table_name_31 WHERE became_duchess = \"31 october 1733 husband's accession\"", "question": "Who is The Spouse of the Duchess that has a Became Duchess  on 31 october 1733 husband's accession?", "context": "CREATE TABLE table_name_31 (spouse VARCHAR, became_duchess VARCHAR)"}, {"answer": "SELECT became_duchess FROM table_name_84 WHERE death = \"26 october 1614\"", "question": "WHo Became Duchess that has a Death of 26 october 1614?", "context": "CREATE TABLE table_name_84 (became_duchess VARCHAR, death VARCHAR)"}, {"answer": "SELECT spouse FROM table_name_61 WHERE death = \"6 april 1780\"", "question": "What is the Spouse of the Duchess that has a Death on 6 april 1780?", "context": "CREATE TABLE table_name_61 (spouse VARCHAR, death VARCHAR)"}, {"answer": "SELECT season FROM table_name_17 WHERE points < 321 AND percentage_of_possible_points > 65.78 AND races = 16", "question": "Which season with 16 races had less than 321 points and a larger percent than 65.78 possible?", "context": "CREATE TABLE table_name_17 (season VARCHAR, races VARCHAR, points VARCHAR, percentage_of_possible_points VARCHAR)"}, {"answer": "SELECT season FROM table_name_28 WHERE points < 301 AND races = 17", "question": "What season had less than 301 points and 17 races?", "context": "CREATE TABLE table_name_28 (season VARCHAR, points VARCHAR, races VARCHAR)"}, {"answer": "SELECT time FROM table_name_88 WHERE machine = \"honda 1000cc\" AND rider_s_ = \"bruce anstey\"", "question": "What time did bruce anstey complete in a honda 1000cc?", "context": "CREATE TABLE table_name_88 (time VARCHAR, machine VARCHAR, rider_s_ VARCHAR)"}, {"answer": "SELECT race FROM table_name_88 WHERE time = \"17:11.572\"", "question": "Who holds the time of 17:11.572?", "context": "CREATE TABLE table_name_88 (race VARCHAR, time VARCHAR)"}, {"answer": "SELECT race FROM table_name_83 WHERE time = \"17:11.572\"", "question": "Who holds the time of 17:11.572?", "context": "CREATE TABLE table_name_83 (race VARCHAR, time VARCHAR)"}, {"answer": "SELECT machine FROM table_name_75 WHERE trophy = \"susan jenness trophy\"", "question": "What machine did susan jenness trophy earn the trophy?", "context": "CREATE TABLE table_name_75 (machine VARCHAR, trophy VARCHAR)"}, {"answer": "SELECT MIN(vehicles__per_1000__d) FROM table_name_14 WHERE agri_culture_b > 12.6", "question": "Agri culture b larger than 12.6, what is the lowest vehicles per 1000?", "context": "CREATE TABLE table_name_14 (vehicles__per_1000__d INTEGER, agri_culture_b INTEGER)"}, {"answer": "SELECT COUNT(agri_culture_b) FROM table_name_10 WHERE income_poverty_f < 13.6 AND mining_b = 1 AND structural_poverty_g < 7.8", "question": "Income poverty f smaller than 13.6, and a Mining b of 1, and a Structural poverty g smaller than 7.8, so what is the total number of agriculture?", "context": "CREATE TABLE table_name_10 (agri_culture_b VARCHAR, structural_poverty_g VARCHAR, income_poverty_f VARCHAR, mining_b VARCHAR)"}, {"answer": "SELECT bulgarian_name FROM table_name_95 WHERE english_name = \"january\"", "question": "What's the bulgarian word for January?", "context": "CREATE TABLE table_name_95 (bulgarian_name VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT bulgarian_name FROM table_name_56 WHERE english_name = \"september\"", "question": "What's the Bulgarian word for september?", "context": "CREATE TABLE table_name_56 (bulgarian_name VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_26 WHERE save = \"|| 36,388 ||15-7||\"", "question": "Who was the Opponent when the Save was || 36,388 ||15-7||?", "context": "CREATE TABLE table_name_26 (opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_55 WHERE date = \"may 21\"", "question": "What Opponent played on the Date May 21?", "context": "CREATE TABLE table_name_55 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE loss = \"ruthven (1-4)\"", "question": "What was the Score when the Loss was ruthven (1-4)?", "context": "CREATE TABLE table_name_68 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_57 WHERE college = \"penn state\"", "question": "What was the highest pick for Penn State?", "context": "CREATE TABLE table_name_57 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_87 WHERE pick__number = 12", "question": "What position does pick number 12 play?", "context": "CREATE TABLE table_name_87 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_45 WHERE college = \"central missouri state\"", "question": "What is the pick number for the College of Central Missouri State?", "context": "CREATE TABLE table_name_45 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_79 WHERE player = \"rich voltzke\"", "question": "What was Rich Voltzke's highest pick number?", "context": "CREATE TABLE table_name_79 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_44 WHERE points > 0 AND lost < 4 AND drawn < 0", "question": "How many Games has Points larger than 0 and a Lost smaller than 4?", "context": "CREATE TABLE table_name_44 (games VARCHAR, drawn VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_32 WHERE games < 7", "question": "which Points has Games smaller than 7?", "context": "CREATE TABLE table_name_32 (points INTEGER, games INTEGER)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_87 WHERE points < 5 AND lost > 7", "question": "How many Drawns have Points smaller than 5 and a Lost larger than 7?", "context": "CREATE TABLE table_name_87 (drawn VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT record FROM table_name_35 WHERE date = \"january 29\"", "question": "Which record has a date of January 29?", "context": "CREATE TABLE table_name_35 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE visitor = \"new york\"", "question": "Which score has a visitor of New York?", "context": "CREATE TABLE table_name_62 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_40 WHERE date = \"january 24\"", "question": "What is the name of the visitor on January 24?", "context": "CREATE TABLE table_name_40 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_3 WHERE date = \"january 7\"", "question": "Which home game has a date of January 7?", "context": "CREATE TABLE table_name_3 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(doctorate) FROM table_name_10 WHERE specialist = 0 AND college = \"informatics and systems\" AND masters < 2", "question": "What is the highest number of doctorates the college of informatics and systems, which has 0 specialists and less than 2 master's degrees, have?", "context": "CREATE TABLE table_name_10 (doctorate INTEGER, masters VARCHAR, specialist VARCHAR, college VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE blue_coalition = \"8,80%\"", "question": "On what Date is the Blue Coalition 8,80%?", "context": "CREATE TABLE table_name_62 (date VARCHAR, blue_coalition VARCHAR)"}, {"answer": "SELECT source FROM table_name_8 WHERE attack = \"9,77%\"", "question": "What Source has an Attack of 9,77%?", "context": "CREATE TABLE table_name_8 (source VARCHAR, attack VARCHAR)"}, {"answer": "SELECT attack FROM table_name_71 WHERE source = \"nciom\"", "question": "What Attack has a Source of NCIOM?", "context": "CREATE TABLE table_name_71 (attack VARCHAR, source VARCHAR)"}, {"answer": "SELECT attack FROM table_name_74 WHERE gerb = \"30,00%\"", "question": "What Attack has a 30,00% GERB?", "context": "CREATE TABLE table_name_74 (attack VARCHAR, gerb VARCHAR)"}, {"answer": "SELECT gerb FROM table_name_16 WHERE attack = \"11%\"", "question": "What GERB has an 11% Attack?", "context": "CREATE TABLE table_name_16 (gerb VARCHAR, attack VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_39 WHERE score = \"3\u20130\" AND home_team = \"bristol rovers\"", "question": "Which Tie # has a Score of 3\u20130, and a Home team of bristol rovers?", "context": "CREATE TABLE table_name_39 (tie_no VARCHAR, score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE home_team = \"yeovil town won 5\u20133 on penalties\"", "question": "Which Score has a Home team of yeovil town won 5\u20133 on penalties?", "context": "CREATE TABLE table_name_82 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_66 WHERE away_team = \"slough town\"", "question": "Which Tie # has an Away team of slough town?", "context": "CREATE TABLE table_name_66 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_13 WHERE tie_no = \"32\"", "question": "Which Attendance has a Tie # of 32?", "context": "CREATE TABLE table_name_13 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_51 WHERE tie_no = \"replay\" AND attendance = \"24 november 1998\" AND home_team = \"rotherham united\"", "question": "Which Away team has a Tie # of replay, and an Attendance of 24 november 1998, and a Home team of rotherham united?", "context": "CREATE TABLE table_name_51 (away_team VARCHAR, home_team VARCHAR, tie_no VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_62 WHERE attendance = \"14 november 1998\" AND away_team = \"hayes\"", "question": "Which Tie # that has an Attendance of 14 november 1998, and an Away team of hayes?", "context": "CREATE TABLE table_name_62 (tie_no VARCHAR, attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE outcome = \"winner\" AND opponent = \"noppawan lertcheewakarn jessica moore\"", "question": "Name the date with winner outcome and opponent of noppawan lertcheewakarn jessica moore", "context": "CREATE TABLE table_name_82 (date VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE date = \"21 may 2011\"", "question": "Name the score for 21 may 2011", "context": "CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT partner FROM table_name_20 WHERE opponent = \"micha\u00eblla krajicek eleni daniilidou\"", "question": "Name the partner with opponent of micha\u00eblla krajicek eleni daniilidou", "context": "CREATE TABLE table_name_20 (partner VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_98 WHERE opponent = \"micha\u00eblla krajicek eleni daniilidou\"", "question": "Name the outcome for opponent of micha\u00eblla krajicek eleni daniilidou", "context": "CREATE TABLE table_name_98 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_82 WHERE matches > 5", "question": "How many wins had Matches greater than 5?", "context": "CREATE TABLE table_name_82 (wins INTEGER, matches INTEGER)"}, {"answer": "SELECT round FROM table_name_27 WHERE player = \"michael hjalm\"", "question": "What was the round number when Michael Hjalm played?", "context": "CREATE TABLE table_name_27 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_22 WHERE round < 6 AND player = \"bill campbell\"", "question": "What is the position Bill Campbell played before round 6?", "context": "CREATE TABLE table_name_22 (position VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE catalogue_number = \"warpcdd333\"", "question": "What is the date for the release with a catalogue number of WARPCDD333?", "context": "CREATE TABLE table_name_73 (date VARCHAR, catalogue_number VARCHAR)"}, {"answer": "SELECT country_region FROM table_name_9 WHERE label = \"beat records\"", "question": "What is the country/region for the releases from Beat Records?", "context": "CREATE TABLE table_name_9 (country_region VARCHAR, label VARCHAR)"}, {"answer": "SELECT total FROM table_name_95 WHERE player = \"robbie winters\"", "question": "What is the Total with a Player named robbie winters?", "context": "CREATE TABLE table_name_95 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_47 WHERE player = \"kenneth udjus\"", "question": "What Position has a Player named kenneth udjus?", "context": "CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(november) FROM table_name_60 WHERE record = \"15-5-2\"", "question": "What is the latest day in November of the game with a 15-5-2 record?", "context": "CREATE TABLE table_name_60 (november INTEGER, record VARCHAR)"}, {"answer": "SELECT MAX(november) FROM table_name_31 WHERE game = 15", "question": "What is the latest day in November with a game 15?", "context": "CREATE TABLE table_name_31 (november INTEGER, game VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_55 WHERE points > 46 AND rank = \"10th\"", "question": "What is the lowest wins with points larger than 46, and a rank of 10th?", "context": "CREATE TABLE table_name_55 (wins INTEGER, points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_60 WHERE year > 1989 AND rank = \"7th\"", "question": "What is the average points with a year higher than 1989, and a rank of 7th?", "context": "CREATE TABLE table_name_60 (points INTEGER, year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_84 WHERE points > 20", "question": "What is the year that has points larger than 20?", "context": "CREATE TABLE table_name_84 (year VARCHAR, points INTEGER)"}, {"answer": "SELECT SUM(year) FROM table_name_45 WHERE points > 46 AND rank = \"6th\"", "question": "What is year that has points larger than 46, and a rank of 6th?", "context": "CREATE TABLE table_name_45 (year INTEGER, points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_71 WHERE points > 68 AND rank = \"7th\"", "question": "What earliest year with points larger than 68 and a rank of 7th?", "context": "CREATE TABLE table_name_71 (year INTEGER, points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT player FROM table_name_7 WHERE school = \"ul-monroe\"", "question": "what player went to ul-monroe", "context": "CREATE TABLE table_name_7 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_86 WHERE points > 9", "question": "How many drawn having more than 9 points?", "context": "CREATE TABLE table_name_86 (drawn INTEGER, points INTEGER)"}, {"answer": "SELECT number_stayed_in_southeast FROM table_name_26 WHERE total_number_emigrated_or_forcibly_removed = \"over 4,000\"", "question": "Which Number stayed in Southeast has over 4,000 emigrated or forcibly removed?", "context": "CREATE TABLE table_name_26 (number_stayed_in_southeast VARCHAR, total_number_emigrated_or_forcibly_removed VARCHAR)"}, {"answer": "SELECT deaths_from_warfare FROM table_name_33 WHERE nation = \"choctaw\"", "question": "How many warfare deaths befell the choctaw nation?", "context": "CREATE TABLE table_name_33 (deaths_from_warfare VARCHAR, nation VARCHAR)"}, {"answer": "SELECT number_stayed_in_southeast FROM table_name_58 WHERE total_number_emigrated_or_forcibly_removed = \"19,600\"", "question": "How many of those who stayed in the southeast had 19,600 emigrated or forcibly removed?", "context": "CREATE TABLE table_name_58 (number_stayed_in_southeast VARCHAR, total_number_emigrated_or_forcibly_removed VARCHAR)"}, {"answer": "SELECT removal_treaty__year_signed_ FROM table_name_32 WHERE nation = \"chickasaw\"", "question": "Which removal treaty covered the chickasaw nation?", "context": "CREATE TABLE table_name_32 (removal_treaty__year_signed_ VARCHAR, nation VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE stage = 5", "question": "When did stage 5 occur?", "context": "CREATE TABLE table_name_53 (date VARCHAR, stage VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE week = 14", "question": "Who were the opponents during week 14?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_45 WHERE date = \"december 9, 1973\" AND week < 13", "question": "What is the highest attendance for the game before week 13 on December 9, 1973?", "context": "CREATE TABLE table_name_45 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_31 WHERE date = \"september 23, 1973\" AND week > 2", "question": "What is the average attendance for the games after week 2 on September 23, 1973?", "context": "CREATE TABLE table_name_31 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_81 WHERE date = \"november 5, 1973\" AND attendance > 49 OFFSET 220", "question": "What is the total number of weeks where games were on November 5, 1973 and the attendance was larger than 49,220?", "context": "CREATE TABLE table_name_81 (week VARCHAR, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_70 WHERE record = \"9\u20131\"", "question": "Record of 9\u20131 had what game site?", "context": "CREATE TABLE table_name_70 (game_site VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_18 WHERE record = \"8\u20131\" AND week > 9", "question": "Record of 8\u20131, and a Week larger than 9 had what highest attendance?", "context": "CREATE TABLE table_name_18 (attendance INTEGER, record VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_9 WHERE result = \"w 24\u201321\" AND week < 6", "question": "Result of w 24\u201321, and a Week smaller than 6 had what sum of attendance?", "context": "CREATE TABLE table_name_9 (attendance INTEGER, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT record FROM table_name_1 WHERE date = \"october 25, 1964\"", "question": "Date of October 25, 1964 involves what record?", "context": "CREATE TABLE table_name_1 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_82 WHERE nation = \"algeria\" AND bronze > 2", "question": "What is the high total for algeria with over 2 bronzes?", "context": "CREATE TABLE table_name_82 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_9 WHERE total < 8 AND gold = 0 AND nation = \"qatar\" AND bronze > 2", "question": "What is the highest number of silvers for qatar with under 8 total, 0 golds, and over 2 bronzes?", "context": "CREATE TABLE table_name_9 (silver INTEGER, bronze VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_81 WHERE silver > 0 AND total > 20 AND gold < 26", "question": "How many bronzes for the nation with over 20 total, under 26 golds, and over 0 silvers?", "context": "CREATE TABLE table_name_81 (bronze VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_27 WHERE gold = \"choi jun-sang\" AND silver = \"suh jung-kyun\"", "question": "Who one bronze in the event where Choi Jun-Sang won gold, and Suh Jung-Kyun won silver?", "context": "CREATE TABLE table_name_27 (bronze VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_20 WHERE location = \"seoul\"", "question": "Who won bronze in Seoul?", "context": "CREATE TABLE table_name_20 (bronze VARCHAR, location VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_7 WHERE year = 2006", "question": "Who won bronze is 2006?", "context": "CREATE TABLE table_name_7 (bronze VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_70 WHERE location = \"hiroshima\"", "question": "What year did the event in Hiroshima take place?", "context": "CREATE TABLE table_name_70 (year VARCHAR, location VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_35 WHERE year = 2002", "question": "Who won bronze in 2002?", "context": "CREATE TABLE table_name_35 (bronze VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_74 WHERE opponent = \"edmonton oilers\" AND february > 12", "question": "What is the game number of the game with the Edmonton Oilers as the opponent after February 12?", "context": "CREATE TABLE table_name_74 (game VARCHAR, opponent VARCHAR, february VARCHAR)"}, {"answer": "SELECT COUNT(seasons) FROM table_name_1 WHERE years = \"1976\u20131977\"", "question": "How many Seasons that has Years of 1976\u20131977?", "context": "CREATE TABLE table_name_1 (seasons VARCHAR, years VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_24 WHERE date = \"october 5, 1975\"", "question": "What week of the season had a date of october 5, 1975?", "context": "CREATE TABLE table_name_24 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(events) FROM table_name_80 WHERE top_10 > 6 AND top_5 < 8", "question": "How many Events have a Top-10 larger than 6, and a Top-5 smaller than 8?", "context": "CREATE TABLE table_name_80 (events VARCHAR, top_10 VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_57 WHERE top_10 < 6 AND cuts_made > 7 AND top_5 = 0", "question": "How many Wins have a Top-10 smaller than 6, and Cuts made larger than 7, and a Top-5 of 0?", "context": "CREATE TABLE table_name_57 (wins VARCHAR, top_5 VARCHAR, top_10 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE date = \"may 14\"", "question": "What is the result of the game on May 14?", "context": "CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_48 WHERE road_team = \"philadelphia\" AND date = \"may 14\"", "question": "What is the result of the game on May 14 with Philadelphia as the road team?", "context": "CREATE TABLE table_name_48 (result VARCHAR, road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_48 WHERE road_team = \"philadelphia\" AND date = \"may 4\"", "question": "What is the result of the game on May 4 with Philadelphia as the road team?", "context": "CREATE TABLE table_name_48 (result VARCHAR, road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_56 WHERE home_team = \"philadelphia\" AND game = \"game 6\"", "question": "What is the road team of game 6 with Philadelphia as the home team?", "context": "CREATE TABLE table_name_56 (road_team VARCHAR, home_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE home_team = \"los angeles\" AND game = \"game 5\"", "question": "What is the result of game 5 with Los Angeles as the home team?", "context": "CREATE TABLE table_name_26 (result VARCHAR, home_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_53 WHERE home_team = \"philadelphia\" AND result = \"105-102\"", "question": "What is the road team of the game with Philadelphia as the home team with a result of 105-102?", "context": "CREATE TABLE table_name_53 (road_team VARCHAR, home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE party = \"republican\" AND first_elected < 1856", "question": "Which Result has a Party of republican, and a First elected smaller than 1856?", "context": "CREATE TABLE table_name_26 (result VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_name_20 WHERE first_elected = 1856 AND incumbent = \"william kellogg\"", "question": "Which District has a First elected of 1856, and an Incumbent of william kellogg?", "context": "CREATE TABLE table_name_20 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_name_52 WHERE district = \"illinois 3\"", "question": "Which First elected has a District of illinois 3?", "context": "CREATE TABLE table_name_52 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_name_76 WHERE result = \"re-elected\" AND party = \"republican\" AND district = \"illinois 4\"", "question": "How much First elected has a Result of re-elected, and a Party of republican, and a District of illinois 4?", "context": "CREATE TABLE table_name_76 (first_elected VARCHAR, district VARCHAR, result VARCHAR, party VARCHAR)"}, {"answer": "SELECT home FROM table_name_33 WHERE date = \"january 7\"", "question": "on january 7 what is home?", "context": "CREATE TABLE table_name_33 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_16 WHERE date = \"january 12\"", "question": "on january 12 who was the visitor?", "context": "CREATE TABLE table_name_16 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_63 WHERE date = \"january 7\"", "question": "on january 7 what is the record?", "context": "CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_13 WHERE gold < 2 AND bronze = 1 AND total > 2", "question": "What is the total number of silver medals of the team with less than 2 gold, 1 bronze, and more than 2 total medals?", "context": "CREATE TABLE table_name_13 (silver VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_85 WHERE bronze < 0", "question": "What is the highest number of silver medals of the team with less than 0 bronzes?", "context": "CREATE TABLE table_name_85 (silver INTEGER, bronze INTEGER)"}, {"answer": "SELECT COUNT(silver) FROM table_name_59 WHERE rank = \"7\" AND total > 1", "question": "What is the total number of silver medals of the team ranked 7 with more than 1 total medal?", "context": "CREATE TABLE table_name_59 (silver VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_52 WHERE silver = 0 AND rank = \"3\" AND total < 1", "question": "What is the average number of bronze medals of the team with 0 silvers, ranked 3, and less than 1 total medal?", "context": "CREATE TABLE table_name_52 (bronze INTEGER, total VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_84 WHERE gold = 0 AND rank = \"5\" AND bronze > 0", "question": "What is the number of silver medals of the team with 0 gold, ranked 5, and more than 0 bronze medals?", "context": "CREATE TABLE table_name_84 (silver INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(top_10) FROM table_name_83 WHERE tournament = \"u.s. open\" AND top_25 > 0", "question": "What was the sum for a top-10 U.S. open that had a top-25 bigger than 0?", "context": "CREATE TABLE table_name_83 (top_10 INTEGER, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT COUNT(cuts_made) FROM table_name_17 WHERE events > 4 AND top_10 < 4", "question": "What were the total number of cuts made in an event larger than 4 and a top-10 smaller than 4?", "context": "CREATE TABLE table_name_17 (cuts_made VARCHAR, events VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT COUNT(top_25) FROM table_name_95 WHERE top_10 < 4 AND cuts_made > 0", "question": "What is the total number of top-25 that has a top-10 smaller than 4 with 0 cuts?", "context": "CREATE TABLE table_name_95 (top_25 VARCHAR, top_10 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_62 WHERE tournament = \"totals\" AND events > 24", "question": "What was the cuts average in tournament totals in an event larger than 24?", "context": "CREATE TABLE table_name_62 (cuts_made INTEGER, tournament VARCHAR, events VARCHAR)"}, {"answer": "SELECT COUNT(top_10) FROM table_name_52 WHERE tournament = \"masters tournament\" AND events < 4", "question": "What is the total for a top-10 in a masters tournament in an event smaller than 4?", "context": "CREATE TABLE table_name_52 (top_10 VARCHAR, tournament VARCHAR, events VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_95 WHERE team = \"flamengo\" AND lost < 1", "question": "Which Against is the highest one that has a Team of flamengo, and a Lost smaller than 1?", "context": "CREATE TABLE table_name_95 (against INTEGER, team VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_92 WHERE team = \"flamengo\" AND against < 5", "question": "How many Lost have a Team of flamengo, and an Against smaller than 5?", "context": "CREATE TABLE table_name_92 (lost VARCHAR, team VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_94 WHERE points = 5 AND drawn < 1", "question": "Which Played is the highest one that has Points of 5, and a Drawn smaller than 1?", "context": "CREATE TABLE table_name_94 (played INTEGER, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_11 WHERE round = 1", "question": "What was the nationality for the player in Round 1?", "context": "CREATE TABLE table_name_11 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_66 WHERE position = \"right wing\"", "question": "Who plays the right wing position?", "context": "CREATE TABLE table_name_66 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT celebrity FROM table_name_79 WHERE finished = \"6th\"", "question": "What celebrity finished 6th?", "context": "CREATE TABLE table_name_79 (celebrity VARCHAR, finished VARCHAR)"}, {"answer": "SELECT entered FROM table_name_96 WHERE finished = \"4th\"", "question": "What day did the celebrity who finished 4th enter?", "context": "CREATE TABLE table_name_96 (entered VARCHAR, finished VARCHAR)"}, {"answer": "SELECT celebrity FROM table_name_53 WHERE exited = \"day 19\" AND famous_for = \"ex busted member and tv presenter\"", "question": "Which celebrity who was famous for being the ex busted member and TV presenter exited on day 19?", "context": "CREATE TABLE table_name_53 (celebrity VARCHAR, exited VARCHAR, famous_for VARCHAR)"}, {"answer": "SELECT famous_for FROM table_name_52 WHERE finished = \"9th\"", "question": "Which celebrity was famous for finishing 9th?", "context": "CREATE TABLE table_name_52 (famous_for VARCHAR, finished VARCHAR)"}, {"answer": "SELECT finished FROM table_name_77 WHERE celebrity = \"myleene klass\"", "question": "What rank did Myleene Klass finish?", "context": "CREATE TABLE table_name_77 (finished VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT venue FROM table_name_24 WHERE opponent = \"kilmarnock\" AND result = \"1\u20131\"", "question": "Opponent of kilmarnock, and a Result of 1\u20131 happened in what venue?", "context": "CREATE TABLE table_name_24 (venue VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT weight_of_shot FROM table_name_51 WHERE designation__bore_ = \"xx-inch\"", "question": "what is the weight of a shot that is xx-inch?", "context": "CREATE TABLE table_name_51 (weight_of_shot VARCHAR, designation__bore_ VARCHAR)"}, {"answer": "SELECT length FROM table_name_30 WHERE character_name = \"burleigh sullivan\"", "question": "What is the length of the film with Burleigh Sullivan as the character?", "context": "CREATE TABLE table_name_30 (length VARCHAR, character_name VARCHAR)"}, {"answer": "SELECT length FROM table_name_31 WHERE character_type = \"milkman turned prizefighter\"", "question": "What is the length of the film with the character type being a milkman turned prizefighter?", "context": "CREATE TABLE table_name_31 (length VARCHAR, character_type VARCHAR)"}, {"answer": "SELECT character_name FROM table_name_97 WHERE leading_lady = \"phyllis welch\"", "question": "What is the character name that has phyllis welch as the leading lady?", "context": "CREATE TABLE table_name_97 (character_name VARCHAR, leading_lady VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_74 WHERE leading_lady = \"phyllis welch\"", "question": "Who directed the film that had phyllis welch as the leading lady?", "context": "CREATE TABLE table_name_74 (director_s_ VARCHAR, leading_lady VARCHAR)"}, {"answer": "SELECT character_name FROM table_name_72 WHERE release_date = \"july 29, 1938\"", "question": "What was the character name for the film with a release date of July 29, 1938?", "context": "CREATE TABLE table_name_72 (character_name VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT locomotive FROM table_name_2 WHERE delivered_as = \"t414\"", "question": "What Locomotive was Delivered as T414?", "context": "CREATE TABLE table_name_2 (locomotive VARCHAR, delivered_as VARCHAR)"}, {"answer": "SELECT owner FROM table_name_70 WHERE delivered_as = \"t415\"", "question": "What Owner Delivered the T415?", "context": "CREATE TABLE table_name_70 (owner VARCHAR, delivered_as VARCHAR)"}, {"answer": "SELECT entered_service FROM table_name_32 WHERE delivered_as = \"t413\"", "question": "What is the Entered service date of the T413?", "context": "CREATE TABLE table_name_32 (entered_service VARCHAR, delivered_as VARCHAR)"}, {"answer": "SELECT delivered_as FROM table_name_64 WHERE locomotive = \"h3\"", "question": "What is the Delivered as name of the H3 Locomotive?", "context": "CREATE TABLE table_name_64 (delivered_as VARCHAR, locomotive VARCHAR)"}, {"answer": "SELECT entered_service FROM table_name_54 WHERE locomotive = \"h1\"", "question": "What is the Entered service date of the H1 Locomotive?", "context": "CREATE TABLE table_name_54 (entered_service VARCHAR, locomotive VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_53 WHERE result = \"l 16\u201312\"", "question": "What was the highest week with a result of l 16\u201312?", "context": "CREATE TABLE table_name_53 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE result = \"l 27\u20133\"", "question": "Who was the opponent at the game with a result of l 27\u20133?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE week < 12 AND result = \"bye\"", "question": "What was the date of the game with a result of bye before week 12?", "context": "CREATE TABLE table_name_3 (date VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT record FROM table_name_25 WHERE opponent = \"los angeles rams\"", "question": "What was the record at the game against the Los Angeles Rams?", "context": "CREATE TABLE table_name_25 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_13 WHERE date = \"september 28\"", "question": "Who is the opponent from September 28?", "context": "CREATE TABLE table_name_13 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_56 WHERE game > 22 AND record = \"17-10-4\"", "question": "Who was the opponent at the game later than game 22 when the record was 17-10-4?", "context": "CREATE TABLE table_name_56 (opponent VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_95 WHERE year < 2008 AND progress = \"third round\"", "question": "What were the Opponents of the team, that made it to the third round, before 2008?", "context": "CREATE TABLE table_name_95 (opponents VARCHAR, year VARCHAR, progress VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE progress = \"no entrants\" AND year = 1997", "question": "What was the score in 1997 for the team that has a Progress of no entrants?", "context": "CREATE TABLE table_name_83 (score VARCHAR, progress VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(att) FROM table_name_65 WHERE yards = 43 AND long > 43", "question": "How many Atts that have Yards of 43 and a Long larger than 43?", "context": "CREATE TABLE table_name_65 (att INTEGER, yards VARCHAR, long VARCHAR)"}, {"answer": "SELECT AVG(int) FROM table_name_19 WHERE rating < 87 AND yards > 4", "question": "How many Ints have a Rating smaller than 87, and Yards larger than 4?", "context": "CREATE TABLE table_name_19 (int INTEGER, rating VARCHAR, yards VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_76 WHERE home = \"detroit\" AND date = \"february 24\"", "question": "Which visitor has detroit as the home, and february 24 as the date?", "context": "CREATE TABLE table_name_76 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE home = \"detroit\" AND date = \"february 17\"", "question": "What score has detroit as the home and february 17 as the date?", "context": "CREATE TABLE table_name_6 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT scorers FROM table_name_31 WHERE opponent = \"west germany\" AND date = \"october 7\"", "question": "What shows for Scorers when the Opponent was west germany on October 7?", "context": "CREATE TABLE table_name_31 (scorers VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT director FROM table_name_72 WHERE platform_s_ = \"gcn\" AND year > 2004 AND title = \"battalion wars 2\"", "question": "Who was the director of Battalion Wars 2 which was released on GCN after 2004?", "context": "CREATE TABLE table_name_72 (director VARCHAR, title VARCHAR, platform_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_7 WHERE title = \"metroid prime hunters 5\"", "question": "What year was Metroid Prime Hunters 5 released?", "context": "CREATE TABLE table_name_7 (year INTEGER, title VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_45 WHERE year > 2006 AND director = \"bryan walker\"", "question": "What platform was used for the game directed by Bryan Walker after 2006?", "context": "CREATE TABLE table_name_45 (platform_s_ VARCHAR, year VARCHAR, director VARCHAR)"}, {"answer": "SELECT title FROM table_name_72 WHERE platform_s_ = \"3ds\" AND director = \"naohiko aoyama\"", "question": "What 3ds game did Naohiko Aoyama direct?", "context": "CREATE TABLE table_name_72 (title VARCHAR, platform_s_ VARCHAR, director VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE loss = \"hideo nomo (3\u20135)\"", "question": "What was the score when the loss was hideo nomo (3\u20135)?", "context": "CREATE TABLE table_name_57 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE date = \"may 19\"", "question": "What was the score on may 19?", "context": "CREATE TABLE table_name_77 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_9 WHERE round > 5 AND player = \"tom ivey\"", "question": "Name of the highest Pick is also a Round greater than 5 and Player as Tom Ivey?", "context": "CREATE TABLE table_name_9 (pick INTEGER, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_92 WHERE pick = 116", "question": "What Nationality is the Pick that is 116?", "context": "CREATE TABLE table_name_92 (nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_61 WHERE position = \"n/a\" AND player = \"greg wendt\" AND round < 6", "question": "What is the total of Pick with a Position of n/a and Greg Wendt as Player with a Round less than 6?", "context": "CREATE TABLE table_name_61 (pick INTEGER, round VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE time = \"3:27\"", "question": "What was the score at 3:27?", "context": "CREATE TABLE table_name_8 (score VARCHAR, time VARCHAR)"}, {"answer": "SELECT cardinal_direction FROM table_name_84 WHERE english = \"monday\"", "question": "What is the cardinal direction of Monday in English?", "context": "CREATE TABLE table_name_84 (cardinal_direction VARCHAR, english VARCHAR)"}, {"answer": "SELECT english FROM table_name_31 WHERE cardinal_direction = \"northwest\"", "question": "What is the cardinal direction northwest in English?", "context": "CREATE TABLE table_name_31 (english VARCHAR, cardinal_direction VARCHAR)"}, {"answer": "SELECT sign FROM table_name_87 WHERE burmese = \"taninganwe \u1010\u1014\u1004\u103a\u1039\u1002\u1014\u103d\u1031\"", "question": "What is the sign of Burmese taninganwe \u1010\u1014\u1004\u103a\u1039\u1002\u1014\u103d\u1031?", "context": "CREATE TABLE table_name_87 (sign VARCHAR, burmese VARCHAR)"}, {"answer": "SELECT cardinal_direction FROM table_name_90 WHERE english = \"wednesday p.m.\"", "question": "What is the cardinal direction of Wednesday p.m. in English?", "context": "CREATE TABLE table_name_90 (cardinal_direction VARCHAR, english VARCHAR)"}, {"answer": "SELECT sign FROM table_name_94 WHERE burmese = \"taninganwe \u1010\u1014\u1004\u103a\u1039\u1002\u1014\u103d\u1031\"", "question": "What is the sign of the Burmese taninganwe \u1010\u1014\u1004\u103a\u1039\u1002\u1014\u103d\u1031?", "context": "CREATE TABLE table_name_94 (sign VARCHAR, burmese VARCHAR)"}, {"answer": "SELECT home FROM table_name_68 WHERE date = \"january 5\"", "question": "On January 5 who was the home team?", "context": "CREATE TABLE table_name_68 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_54 WHERE position = \"wide receiver\" AND college = \"southern miss\" AND overall < 186", "question": "What was the Pick Number when the position was wide receiver, the college was Southern Miss with an overall less than 186?", "context": "CREATE TABLE table_name_54 (pick__number INTEGER, overall VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_61 WHERE position = \"linebacker\" AND pick__number > 5", "question": "Let's say position was linebacker with a pick number less than 5, what was the highest round?", "context": "CREATE TABLE table_name_61 (round INTEGER, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_44 WHERE name = \"baptista\"", "question": "What transfer window has baptista as the name?", "context": "CREATE TABLE table_name_44 (transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_6 WHERE type = \"loan\"", "question": "What country has a loan as the type?", "context": "CREATE TABLE table_name_6 (country VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_7 WHERE name = \"song\"", "question": "What type has song as the name?", "context": "CREATE TABLE table_name_7 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT ends FROM table_name_92 WHERE type = \"transferred\"", "question": "What ends has transferred as the type?", "context": "CREATE TABLE table_name_92 (ends VARCHAR, type VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_63 WHERE country = \"fra\"", "question": "What moving has fra as the country?", "context": "CREATE TABLE table_name_63 (moving_from VARCHAR, country VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_79 WHERE country = \"bra\" AND transfer_fee = \"\u00a33.4m\"", "question": "What transfer window has bra as the country, with \u00a33.4m as the transfer fee?", "context": "CREATE TABLE table_name_79 (transfer_window VARCHAR, country VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_62 WHERE district = \"massachusetts 2\"", "question": "Which Incumbent has a District of massachusetts 2?", "context": "CREATE TABLE table_name_62 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_47 WHERE district = \"massachusetts 8\"", "question": "Which Incumbent has a District of massachusetts 8?", "context": "CREATE TABLE table_name_47 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_name_21 WHERE first_elected > 1858", "question": "Which District has a First elected larger than 1858?", "context": "CREATE TABLE table_name_21 (district VARCHAR, first_elected INTEGER)"}, {"answer": "SELECT SUM(episode) FROM table_name_20 WHERE segment_d = \"manual motorcycle transmissions\"", "question": "What episode has  a manual motorcycle transmissions section D?", "context": "CREATE TABLE table_name_20 (episode INTEGER, segment_d VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_31 WHERE segment_c = \"paint chip cards\"", "question": "What segment A is associated with a Segment C of paint chip cards?", "context": "CREATE TABLE table_name_31 (segment_a VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_76 WHERE segment_d = \"manual motorcycle transmissions\"", "question": "What segment A is associated with a Segment D of manual motorcycle transmissions?", "context": "CREATE TABLE table_name_76 (segment_a VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT austria FROM table_name_13 WHERE croatia = \"ireland\"", "question": "What is shown for Austria when Croatia shows Ireland?", "context": "CREATE TABLE table_name_13 (austria VARCHAR, croatia VARCHAR)"}, {"answer": "SELECT MIN(102) FROM table_name_78 WHERE \"friendly\" = \"friendly\" AND austria = \"greece\"", "question": "What is the smallest number for 102 when Friendly of friendly, and an Austria of greece?", "context": "CREATE TABLE table_name_78 (austria VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_89 WHERE try_bonus = \"try bonus\"", "question": "What is the Losing bonus with an extra try bonus?", "context": "CREATE TABLE table_name_89 (losing_bonus VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT lost FROM table_name_92 WHERE club = \"mumbles rfc\"", "question": "What did the loss come from a Club of mumbles rfc?", "context": "CREATE TABLE table_name_92 (lost VARCHAR, club VARCHAR)"}, {"answer": "SELECT method FROM table_name_88 WHERE round = \"1\" AND record = \"10\u20132\"", "question": "Round of 1, and a Record of 10\u20132 had what method?", "context": "CREATE TABLE table_name_88 (method VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT res FROM table_name_7 WHERE record = \"3\u20131\"", "question": "Record of 3\u20131 had what Res?", "context": "CREATE TABLE table_name_7 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT res FROM table_name_49 WHERE record = \"47\u20135 (1)\"", "question": "Record of 47\u20135 (1) involved what res?", "context": "CREATE TABLE table_name_49 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_72 WHERE opponent = \"sergei bondarovich\" AND record = \"2\u20130\"", "question": "Opponent of sergei bondarovich, and a Record of 2\u20130 had what method?", "context": "CREATE TABLE table_name_72 (method VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_93 WHERE method = \"submission (chin in the eye)\"", "question": "Method of submission (chin in the eye) had what opponent?", "context": "CREATE TABLE table_name_93 (opponent VARCHAR, method VARCHAR)"}, {"answer": "SELECT record FROM table_name_66 WHERE opponent = \"leonardo castello branco\"", "question": "Opponent of leonardo castello branco had what record?", "context": "CREATE TABLE table_name_66 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_name_53 WHERE year = \"2008\"", "question": "Who won in mixed doubles in 2008?", "context": "CREATE TABLE table_name_53 (mixed_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_8 WHERE city = \"belgrade\" AND results\u00b9 = \"5:2\"", "question": "Who was the opponent in Belgrade and had a result of 5:2?", "context": "CREATE TABLE table_name_8 (opponent VARCHAR, city VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE type_of_game = \"friendly\" AND opponent = \"wales\"", "question": "On what date was there a friendly game against Wales?", "context": "CREATE TABLE table_name_61 (date VARCHAR, type_of_game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_84 WHERE opponent = \"egypt\"", "question": "What were the results against the game against Egypt?", "context": "CREATE TABLE table_name_84 (results\u00b9 VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_61 WHERE city = \"skoplje\"", "question": "What were the results against the game against Skoplje?", "context": "CREATE TABLE table_name_61 (results\u00b9 VARCHAR, city VARCHAR)"}, {"answer": "SELECT type_of_game FROM table_name_20 WHERE results\u00b9 = \"3:1\" AND opponent = \"france\"", "question": "What type of game was held against France with the results of 3:1?", "context": "CREATE TABLE table_name_20 (type_of_game VARCHAR, results\u00b9 VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_55 WHERE tournament = \"us open\"", "question": "Name the 2012 for us open", "context": "CREATE TABLE table_name_55 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_89 WHERE 2009 = \"a\" AND 2010 = \"a\" AND 2011 = \"a\"", "question": "Name the 2012 for 2009 of a and 2010 of a and 2011 of a", "context": "CREATE TABLE table_name_89 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_36 WHERE tournament = \"us open\"", "question": "Name the 2012 for us open", "context": "CREATE TABLE table_name_36 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_93 WHERE 2010 = \"grand slam tournaments\"", "question": "Name the tournament for 2010 of grand slam tournaments", "context": "CREATE TABLE table_name_93 (tournament VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_52 WHERE record = \"17-22\"", "question": "What is the attendance number for the record of 17-22?", "context": "CREATE TABLE table_name_52 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_76 WHERE loss = \"westbrook (1-6)\"", "question": "What is the record when the loss is westbrook (1-6)?", "context": "CREATE TABLE table_name_76 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE round = \"1st round\" AND club = \"union luxembourg\"", "question": "What is the final score of the 1st round game of club Union Luxembourg?", "context": "CREATE TABLE table_name_17 (score VARCHAR, round VARCHAR, club VARCHAR)"}, {"answer": "SELECT competition FROM table_name_58 WHERE round = \"1st round\" AND club = \"union luxembourg\"", "question": "Which competition features the 1st round of Club Union Luxembourg?", "context": "CREATE TABLE table_name_58 (competition VARCHAR, round VARCHAR, club VARCHAR)"}, {"answer": "SELECT competition FROM table_name_71 WHERE round = \"2nd round\" AND score = \"1:0, 0:1 (4:3 a.p.)\"", "question": "Which Competition has a 2nd round score of 1:0, 0:1 (4:3 a.p.)?", "context": "CREATE TABLE table_name_71 (competition VARCHAR, round VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE club = \"fk austria wien\"", "question": "What's the final score of the competition that features the club of fk Austria wien?", "context": "CREATE TABLE table_name_58 (score VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_39 WHERE round = \"2nd round\" AND score = \"1:0, 3:0\"", "question": "Which club has a 2nd round score of 1:0, 3:0?", "context": "CREATE TABLE table_name_39 (club VARCHAR, round VARCHAR, score VARCHAR)"}, {"answer": "SELECT mission FROM table_name_16 WHERE resident_country = \"switzerland\"", "question": "What is the mission for switzerland as a resident County?", "context": "CREATE TABLE table_name_16 (mission VARCHAR, resident_country VARCHAR)"}, {"answer": "SELECT Local AS mission FROM table_name_18 WHERE local_location = \"kingstown\"", "question": "What is the local mission that has kingstown as a local location?", "context": "CREATE TABLE table_name_18 (Local VARCHAR, local_location VARCHAR)"}, {"answer": "SELECT Local AS mission FROM table_name_13 WHERE local_position = \"ambassador\" AND mission = \"suriname\"", "question": "What is the local mission that has ambassador as the local position, and a mission of suriname?", "context": "CREATE TABLE table_name_13 (Local VARCHAR, local_position VARCHAR, mission VARCHAR)"}, {"answer": "SELECT local_location FROM table_name_47 WHERE resident_country = \"senegal\" AND mission = \"mali\"", "question": "What is the local location that has senegal as the resident county, and a mission of mali?", "context": "CREATE TABLE table_name_47 (local_location VARCHAR, resident_country VARCHAR, mission VARCHAR)"}, {"answer": "SELECT Local AS mission FROM table_name_41 WHERE local_location = \"none\" AND local_position = \"high commissioner\" AND resident_country = \"fiji\" AND mission = \"tonga\"", "question": "What is the local mission that has none as a local location, high commissioner as a local position, fiji as a resident county, and a mission of tonga?", "context": "CREATE TABLE table_name_41 (Local VARCHAR, mission VARCHAR, resident_country VARCHAR, local_location VARCHAR, local_position VARCHAR)"}, {"answer": "SELECT mission FROM table_name_35 WHERE local_position = \"ambassador\" AND resident_country = \"democratic republic of congo\"", "question": "What is the mission that has ambassador of local position, and a resident country of democratic republic of congo?", "context": "CREATE TABLE table_name_35 (mission VARCHAR, local_position VARCHAR, resident_country VARCHAR)"}, {"answer": "SELECT position FROM table_name_90 WHERE competition = \"european cross country championships\" AND year = 2008", "question": "What position did the player play in the european cross country championships in 2008?", "context": "CREATE TABLE table_name_90 (position VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_20 WHERE competition = \"european cross country championships\" AND notes = \"junior men individual 6.595km\"", "question": "What venue hsoted the european cross country championships with a notes of junior men individual 6.595km?", "context": "CREATE TABLE table_name_20 (venue VARCHAR, competition VARCHAR, notes VARCHAR)"}, {"answer": "SELECT position FROM table_name_95 WHERE notes = \"junior men individual 5.64km\"", "question": "What position did the person finish in with a notes of junior men individual 5.64km?", "context": "CREATE TABLE table_name_95 (position VARCHAR, notes VARCHAR)"}, {"answer": "SELECT venue FROM table_name_83 WHERE year = 2005 AND notes = \"men individual 9.84km\"", "question": "What venue hosted in 2005 and had a Notes of men individual 9.84km?", "context": "CREATE TABLE table_name_83 (venue VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_69 WHERE result = \"w 20-17\"", "question": "Who was the opponent at the game with a result of w 20-17?", "context": "CREATE TABLE table_name_69 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_79 WHERE venue = \"milwaukee county stadium\" AND attendance = 47 OFFSET 897", "question": "What is the total number of weeks with a game at the Milwaukee County Stadium attended by 47,897?", "context": "CREATE TABLE table_name_79 (week VARCHAR, venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_58 WHERE pick__number < 8", "question": "What is the highest round that had a pick lower than 8?", "context": "CREATE TABLE table_name_58 (round INTEGER, pick__number INTEGER)"}, {"answer": "SELECT title FROM table_name_65 WHERE artist = \"overkill\" AND year < 1984", "question": "What title does Overkill have before 1984?", "context": "CREATE TABLE table_name_65 (title VARCHAR, artist VARCHAR, year VARCHAR)"}, {"answer": "SELECT departure FROM table_name_67 WHERE station_name = \"kanpur central\"", "question": "What is the Departure time at Kanpur Central Station?", "context": "CREATE TABLE table_name_67 (departure VARCHAR, station_name VARCHAR)"}, {"answer": "SELECT station_name FROM table_name_32 WHERE platform = \"5\"", "question": "What is the Station Name of Platform 5?", "context": "CREATE TABLE table_name_32 (station_name VARCHAR, platform VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_21 WHERE round = 11", "question": "What is the average pick # of the player from round 11?", "context": "CREATE TABLE table_name_21 (pick__number INTEGER, round VARCHAR)"}, {"answer": "SELECT overall FROM table_name_47 WHERE pick__number < 13", "question": "What is the overall of the player with a pick # higher than 13?", "context": "CREATE TABLE table_name_47 (overall VARCHAR, pick__number INTEGER)"}, {"answer": "SELECT year__ceremony_ FROM table_name_82 WHERE original_title = \"naga bonar\"", "question": "what year did naga bonar take place", "context": "CREATE TABLE table_name_82 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT MIN(crude_birth_rate__per_1000_) FROM table_name_49 WHERE natural_change = \"42 689\"", "question": "Natural change of 42 689 has which lowest Crude birth rate (per 1000)?", "context": "CREATE TABLE table_name_49 (crude_birth_rate__per_1000_ INTEGER, natural_change VARCHAR)"}, {"answer": "SELECT SUM(votes__gib_) FROM table_name_38 WHERE party = \"green\"", "question": "What is the sum of votes for the green party?", "context": "CREATE TABLE table_name_38 (votes__gib_ INTEGER, party VARCHAR)"}, {"answer": "SELECT SUM(votes__gib_) FROM table_name_99 WHERE _percentage__gib_ = 0.53 AND seats > 0", "question": "What is the sum of votes of the party with a % of 0.53 and more than 0 seats?", "context": "CREATE TABLE table_name_99 (votes__gib_ INTEGER, _percentage__gib_ VARCHAR, seats VARCHAR)"}, {"answer": "SELECT time FROM table_name_87 WHERE date = \"april 5\"", "question": "What was the time of the game on April 5?", "context": "CREATE TABLE table_name_87 (time VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_99 WHERE 2010 = \"1r\" AND 2009 = \"1r\"", "question": "Which 2011 has a 2010 of 1r, and a 2009 of 1r?", "context": "CREATE TABLE table_name_99 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_28 WHERE 2009 = \"q1\" AND 2008 = \"1r\"", "question": "Which Tournament has a 2009 of q1, and a 2008 of 1r?", "context": "CREATE TABLE table_name_28 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_2 WHERE 2009 = \"a\" AND 2010 = \"a\" AND 2012 = \"1r\" AND tournament = \"cincinnati masters\"", "question": "Which 2008 has a 2009 of A, and a 2010 of A, and a 2012 of 1r, and a Tournament of cincinnati masters?", "context": "CREATE TABLE table_name_2 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_65 WHERE 2008 = \"a\" AND tournament = \"canada masters\"", "question": "Which 2009 has a 2008 of A, and a Tournament of canada masters?", "context": "CREATE TABLE table_name_65 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_39 WHERE 2009 = \"a\" AND tournament = \"cincinnati masters\"", "question": "Which 2008 has a 2009 of A, and a Tournament of cincinnati masters?", "context": "CREATE TABLE table_name_39 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_46 WHERE 2010 = \"0\u20130\"", "question": "Which 2012 has a 2010 of 0\u20130?", "context": "CREATE TABLE table_name_46 (Id VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE partner = \"urszula radwa\u0144ska\"", "question": "What Date had a Partner of urszula radwa\u0144ska?", "context": "CREATE TABLE table_name_87 (date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_26 WHERE surface = \"hard\" AND partner = \"maria elena camerin\"", "question": "Which Opponent had a Surface of hard, and a Partner of maria elena camerin?", "context": "CREATE TABLE table_name_26 (opponent VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_74 WHERE opponent = \"darija jurak carmen klaschka\"", "question": "Which Partner had an Opponent of darija jurak carmen klaschka?", "context": "CREATE TABLE table_name_74 (partner VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE outcome = \"runner-up\" AND surface = \"carpet\"", "question": "Which Date had an Outcome of runner-up, and a Surface of carpet?", "context": "CREATE TABLE table_name_85 (date VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_57 WHERE opponent = \"fernanda hermenegildo monika kochanova\"", "question": "Which Surface had an Opponent of fernanda hermenegildo monika kochanova?", "context": "CREATE TABLE table_name_57 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent_number FROM table_name_19 WHERE attendance = \"42,000\"", "question": "Who was the opponent in the game that was attended by 42,000 people?", "context": "CREATE TABLE table_name_19 (opponent_number VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent_number FROM table_name_93 WHERE attendance = \"48,000\"", "question": "Who was the opponent in the game that was attended by 48,000 people?", "context": "CREATE TABLE table_name_93 (opponent_number VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE opponent_number = \"michigan\"", "question": "On what day(s) did the Gophers play against Michigan?", "context": "CREATE TABLE table_name_88 (date VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT result FROM table_name_47 WHERE attendance = \"16,000\"", "question": "What was the result of the game that was attended by 16,000 people?", "context": "CREATE TABLE table_name_47 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT season FROM table_name_18 WHERE agg = \"4\u20131\" AND opponent = \"rapid wien\"", "question": "Which Season has an Agg of 4\u20131, and an Opponent of rapid wien?", "context": "CREATE TABLE table_name_18 (season VARCHAR, agg VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home FROM table_name_15 WHERE opponent = \"br\u00f8ndby\"", "question": "Which Home has an Opponent of br\u00f8ndby?", "context": "CREATE TABLE table_name_15 (home VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT away FROM table_name_7 WHERE opponent = \"slavia prague\"", "question": "Which Away has an Opponent of slavia prague?", "context": "CREATE TABLE table_name_7 (away VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT away FROM table_name_93 WHERE competition = \"uefa cup\" AND opponent = \"anderlecht\"", "question": "Which Away has a Competition of uefa cup, and an Opponent of anderlecht?", "context": "CREATE TABLE table_name_93 (away VARCHAR, competition VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT away FROM table_name_84 WHERE home = \"2\u20132\"", "question": "Which Away has a Home of 2\u20132?", "context": "CREATE TABLE table_name_84 (away VARCHAR, home VARCHAR)"}, {"answer": "SELECT away FROM table_name_69 WHERE season = \"2001\u201302\" AND opponent = \"dinaburg\"", "question": "Which Away has a Season of 2001\u201302, and an Opponent of dinaburg?", "context": "CREATE TABLE table_name_69 (away VARCHAR, season VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_35 WHERE bike = \"suzuki gsx-r1000 k7\" AND time = \"+13.283\"", "question": "What is the total number for grid with a Suzuki GSX-R1000 K7 for +13.283?", "context": "CREATE TABLE table_name_35 (grid VARCHAR, bike VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_55 WHERE grid < 6 AND rider = \"noriyuki haga\"", "question": "What was the time for a grid less than 6 for Noriyuki Haga?", "context": "CREATE TABLE table_name_55 (time VARCHAR, grid VARCHAR, rider VARCHAR)"}, {"answer": "SELECT time FROM table_name_31 WHERE grid > 6 AND bike = \"honda cbr1000rr\" AND laps < 23", "question": "What was the time for a grid more than 6 in less than 23 laps with a Honda CBR1000RR?", "context": "CREATE TABLE table_name_31 (time VARCHAR, laps VARCHAR, grid VARCHAR, bike VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_74 WHERE rider = \"karl muggeridge\" AND grid < 16", "question": "What is the sum of laps for Karl Muggeridge on a grid less than 16?", "context": "CREATE TABLE table_name_74 (laps INTEGER, rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT album FROM table_name_20 WHERE lifetime_achievement_award = \"paul mcguinness\"", "question": "Which album awarded Paul McGuinness a Lifetime Achievement Award?", "context": "CREATE TABLE table_name_20 (album VARCHAR, lifetime_achievement_award VARCHAR)"}, {"answer": "SELECT pop_act FROM table_name_58 WHERE album = \"all that you can't leave behind\"", "question": "Which act's album has a name of All That You Can't Leave Behind?", "context": "CREATE TABLE table_name_58 (pop_act VARCHAR, album VARCHAR)"}, {"answer": "SELECT year FROM table_name_56 WHERE band = \"snow patrol\" AND lifetime_achievement_award = \"aslan\"", "question": "In what year did Aslan receive a Lifetime Achievement Award and Snow Patrol perform?", "context": "CREATE TABLE table_name_56 (year VARCHAR, band VARCHAR, lifetime_achievement_award VARCHAR)"}, {"answer": "SELECT lifetime_achievement_award FROM table_name_38 WHERE band = \"snow patrol\" AND female = \"juliet turner\"", "question": "Who won the Lifetime Achievement Award when Snow Patrol performed and Juliet Turner presented?", "context": "CREATE TABLE table_name_38 (lifetime_achievement_award VARCHAR, band VARCHAR, female VARCHAR)"}, {"answer": "SELECT band FROM table_name_80 WHERE female = \"samantha mumba\"", "question": "What band performed when Samantha Mumba presented?", "context": "CREATE TABLE table_name_80 (band VARCHAR, female VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_86 WHERE season > 1919 AND wins > 0", "question": "What is the lowest Draws for a season later than 1919 with more than 0 wins?", "context": "CREATE TABLE table_name_86 (draws INTEGER, season VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_67 WHERE season > 1964", "question": "What is the sum of Draws for a season later than 1964?", "context": "CREATE TABLE table_name_67 (draws INTEGER, season INTEGER)"}, {"answer": "SELECT SUM(wins) FROM table_name_46 WHERE draws = 0 AND season = 1964", "question": "What is the sum of Wins when draws shows 0 in 1964?", "context": "CREATE TABLE table_name_46 (wins INTEGER, draws VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_63 WHERE season > 1926 AND wins < 0", "question": "What is the highest Draws for a season later than 1926 with less than 0 wins?", "context": "CREATE TABLE table_name_63 (draws INTEGER, season VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_45 WHERE losses < 18 AND team = \"north melbourne\" AND season > 1926", "question": "What is the highest Draws with less than 18 losses for north melbourne later than 1926?", "context": "CREATE TABLE table_name_45 (draws INTEGER, season VARCHAR, losses VARCHAR, team VARCHAR)"}, {"answer": "SELECT weeks_3_4 FROM table_name_11 WHERE name = \"zach\"", "question": "what week had a player named zach", "context": "CREATE TABLE table_name_11 (weeks_3_4 VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(shts) FROM table_name_23 WHERE club = \"san jose earthquakes\" AND mins > 2700", "question": "What is the largest number for SHTS for the San Jose earthquakes with MINS larger than 2700?", "context": "CREATE TABLE table_name_23 (shts INTEGER, club VARCHAR, mins VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_30 WHERE goalkeeper = \"pat onstad\"", "question": "What is the sum of Rank when Pat Onstad was the goalkeeper?", "context": "CREATE TABLE table_name_30 (rank INTEGER, goalkeeper VARCHAR)"}, {"answer": "SELECT club FROM table_name_98 WHERE shts = 132", "question": "What is the club for the 132 SHTS?", "context": "CREATE TABLE table_name_98 (club VARCHAR, shts VARCHAR)"}, {"answer": "SELECT MAX(mins) FROM table_name_87 WHERE club = \"san jose earthquakes\" AND shts < 166", "question": "What is the largest MINS for the San Jose Earthquakes with a SHTS less than 166?", "context": "CREATE TABLE table_name_87 (mins INTEGER, club VARCHAR, shts VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE surface = \"clay\" AND opponent_in_the_final = \"andr\u00e9s g\u00f3mez javier s\u00e1nchez\"", "question": "When has a Surface of clay, and an Opponent in the final of andr\u00e9s g\u00f3mez javier s\u00e1nchez?", "context": "CREATE TABLE table_name_98 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_19 WHERE partner = \"karel nov\u00e1\u010dek\"", "question": "Which Tournament has a Partner of karel nov\u00e1\u010dek?", "context": "CREATE TABLE table_name_19 (tournament VARCHAR, partner VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_13 WHERE date = 1993 AND score_in_the_final = \"6\u20132, 2\u20136, 7\u20135\"", "question": "Which Tournament is in 1993 with a Score in the final of 6\u20132, 2\u20136, 7\u20135?", "context": "CREATE TABLE table_name_13 (tournament VARCHAR, date VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT ullrich FROM table_name_92 WHERE riggs = \"e\" AND buechel_ & _manhart_spelling__pronunciation_ = \"e\"", "question": "Riggs of e, and a Buechel & Manhart spelling (pronunciation) of e had what ullrich?", "context": "CREATE TABLE table_name_92 (ullrich VARCHAR, riggs VARCHAR, buechel_ VARCHAR, _manhart_spelling__pronunciation_ VARCHAR)"}, {"answer": "SELECT university_of_minnesota FROM table_name_63 WHERE rood_ & _taylor = \"o\" AND buechel_ & _manhart_spelling__pronunciation_ = \"o\"", "question": "Rood & Taylor of o, and a Buechel & Manhart spelling (pronunciation) of o had what university of Minnesota?", "context": "CREATE TABLE table_name_63 (university_of_minnesota VARCHAR, rood_ VARCHAR, _taylor VARCHAR, buechel_ VARCHAR, _manhart_spelling__pronunciation_ VARCHAR)"}, {"answer": "SELECT white_hat FROM table_name_98 WHERE dakota_mission = \"t\" AND deloria_ & _boas = \"t\u02bd\" AND ullrich = \"t\u021f\"", "question": "Dakota Mission of t, and a Deloria & Boas of t\u02bd, and a Ullrich of t\u021f had what white hat?", "context": "CREATE TABLE table_name_98 (white_hat VARCHAR, ullrich VARCHAR, dakota_mission VARCHAR, deloria_ VARCHAR, _boas VARCHAR)"}, {"answer": "SELECT university_of_minnesota FROM table_name_89 WHERE deloria_ & _boas = \"n\"", "question": "Deloria & Boas of n included what university of Minnesota?", "context": "CREATE TABLE table_name_89 (university_of_minnesota VARCHAR, deloria_ VARCHAR, _boas VARCHAR)"}, {"answer": "SELECT buechel_ & _manhart_spelling__pronunciation_ FROM table_name_27 WHERE deloria_ & _boas = \"\u0173\" AND dakota_mission = \"un\"", "question": "Deloria & Boas of \u0173, and a Dakota Mission of un had what Buechel & Manhart spelling (pronunciation)?", "context": "CREATE TABLE table_name_27 (buechel_ VARCHAR, _manhart_spelling__pronunciation_ VARCHAR, dakota_mission VARCHAR, deloria_ VARCHAR, _boas VARCHAR)"}, {"answer": "SELECT deloria_ & _boas FROM table_name_66 WHERE university_of_minnesota = \"\u1e6d\"", "question": "University of Minnesota of \u1e6d had what Deloria & Boas?", "context": "CREATE TABLE table_name_66 (deloria_ VARCHAR, _boas VARCHAR, university_of_minnesota VARCHAR)"}, {"answer": "SELECT SUM(november) FROM table_name_89 WHERE game < 16 AND points > 22", "question": "Which November has a Game smaller than 16, and Points larger than 22?", "context": "CREATE TABLE table_name_89 (november INTEGER, game VARCHAR, points VARCHAR)"}, {"answer": "SELECT record FROM table_name_36 WHERE game > 15 AND points < 31 AND november = 7", "question": "Which Record has a Game larger than 15, and Points smaller than 31, and a November of 7?", "context": "CREATE TABLE table_name_36 (record VARCHAR, november VARCHAR, game VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_13 WHERE nation = \"united states\" AND silver > 1", "question": "What is the highest number of bronze for the United States with more than 1 silver?", "context": "CREATE TABLE table_name_13 (bronze INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_82 WHERE bronze > 2", "question": "What is the sum of all silver medals with more than 2 bronze?", "context": "CREATE TABLE table_name_82 (silver INTEGER, bronze INTEGER)"}, {"answer": "SELECT MIN(silver) FROM table_name_68 WHERE rank = 4 AND total > 1", "question": "What is the lowest number of silver medals with a rank of 4 and total medals greater than 1?", "context": "CREATE TABLE table_name_68 (silver INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_85 WHERE silver = 1 AND gold = 5 AND total < 6", "question": "What is the average number of bronze medals with 1 silver, 5 gold, and over 6 total medals?", "context": "CREATE TABLE table_name_85 (bronze INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_35 WHERE bronze < 2 AND gold > 1 AND silver < 1", "question": "What is the highest rank with less than 2 bronze, more than 1 gold, and less than 1 silver?", "context": "CREATE TABLE table_name_35 (rank INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT remixed_by FROM table_name_50 WHERE album = \"dance remixes\"", "question": "Who remixed an album of dance remixes?", "context": "CREATE TABLE table_name_50 (remixed_by VARCHAR, album VARCHAR)"}, {"answer": "SELECT remixed_by FROM table_name_22 WHERE year = 1985 AND version = \"music video\"", "question": "Who remixed a music video in 1985?", "context": "CREATE TABLE table_name_22 (remixed_by VARCHAR, year VARCHAR, version VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_46 WHERE version = \"mother's live remix\"", "question": "What year was Mother's Live remix created?", "context": "CREATE TABLE table_name_46 (year INTEGER, version VARCHAR)"}, {"answer": "SELECT position FROM table_name_7 WHERE pick = \"10th overall\"", "question": "Which position ranked 10th overall?", "context": "CREATE TABLE table_name_7 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_17 WHERE year > 2008 AND position = \"wide receiver\"", "question": "Which player played wide receiver after 2008?", "context": "CREATE TABLE table_name_17 (player VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE date = \"13 july 2007\"", "question": "Which Player has a Date of 13 july 2007?", "context": "CREATE TABLE table_name_41 (player VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_44 WHERE date = \"31 jan. 2008\" AND transfer_fee = \"\u00a33.87m\"", "question": "Which Player had a Date of 31 jan. 2008, and a Transfer fee of \u00a33.87m?", "context": "CREATE TABLE table_name_44 (player VARCHAR, date VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE transfer_fee = \"\u00a38.8m\"", "question": "Which Date had a Transfer fee of \u00a38.8m?", "context": "CREATE TABLE table_name_45 (date VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT from_club FROM table_name_40 WHERE transfer_fee = \"\u00a33.87m\"", "question": "Which From club had a Transfer fee of \u00a33.87m?", "context": "CREATE TABLE table_name_40 (from_club VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT player FROM table_name_36 WHERE from_club = \"atl\u00e9tico madrid\"", "question": "Which Player had a From club of atl\u00e9tico madrid?", "context": "CREATE TABLE table_name_36 (player VARCHAR, from_club VARCHAR)"}, {"answer": "SELECT decision FROM table_name_82 WHERE game > 6", "question": "What is the decision of the game larger than 6.", "context": "CREATE TABLE table_name_82 (decision VARCHAR, game INTEGER)"}, {"answer": "SELECT series FROM table_name_41 WHERE date = \"may 8\"", "question": "On May 8 what series is it?", "context": "CREATE TABLE table_name_41 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT korean FROM table_name_51 WHERE chinese = \"\u5e2b\u5b50\u83e9\u63d0 / sh\u012bz\u01d0p\u00fat\u00ed\"", "question": "Which KOREAN has a CHINESE of \u5e2b\u5b50\u83e9\u63d0 / sh\u012bz\u01d0p\u00fat\u00ed?", "context": "CREATE TABLE table_name_51 (korean VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT japanese FROM table_name_92 WHERE korean = \"\uc0c1\ub098\ud654\uc218 / sanahwasa\"", "question": "Which JAPANESE has a KOREAN of \uc0c1\ub098\ud654\uc218 / sanahwasa?", "context": "CREATE TABLE table_name_92 (japanese VARCHAR, korean VARCHAR)"}, {"answer": "SELECT sanskrt FROM table_name_76 WHERE chinese = \"\u6469\u62cf\u7f85 / m\u00f3n\u00e1lu\u00f3\"", "question": "Which SANSKRT has a CHINESE of \u6469\u62cf\u7f85 / m\u00f3n\u00e1lu\u00f3?", "context": "CREATE TABLE table_name_76 (sanskrt VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT sanskrt FROM table_name_38 WHERE japanese = \"jayana\"", "question": "Which SANSKRT has a JAPANESE of jayana?", "context": "CREATE TABLE table_name_38 (sanskrt VARCHAR, japanese VARCHAR)"}, {"answer": "SELECT vietnamese FROM table_name_35 WHERE chinese = \"\u5a46\u9808\u5bc6 / p\u00f3x\u016bm\u00ec\"", "question": "Which VIETNAMESE has a CHINESE of \u5a46\u9808\u5bc6 / p\u00f3x\u016bm\u00ec?", "context": "CREATE TABLE table_name_35 (vietnamese VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT vietnamese FROM table_name_25 WHERE chinese = \"\u4e0d\u5982\u5bc6\u591a / b\u00f9r\u00fam\u00ecdu\u014d\"", "question": "Which VIETNAMESE has a CHINESE of \u4e0d\u5982\u5bc6\u591a / b\u00f9r\u00fam\u00ecdu\u014d?", "context": "CREATE TABLE table_name_25 (vietnamese VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_77 WHERE college = \"iowa\" AND overall < 200", "question": "What is the mean pick number for Iowa College when the overall is less than 200?", "context": "CREATE TABLE table_name_77 (pick__number INTEGER, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT result FROM table_name_36 WHERE date = \"26 october 1993\"", "question": "What was the result on 26 October 1993?", "context": "CREATE TABLE table_name_36 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT away FROM table_name_61 WHERE result = \"1-5 aet\"", "question": "Who was the Away team on the result of 1-5 aet?", "context": "CREATE TABLE table_name_61 (away VARCHAR, result VARCHAR)"}, {"answer": "SELECT season FROM table_name_54 WHERE date = \"30 august 1980\"", "question": "What season had a date of 30 august 1980", "context": "CREATE TABLE table_name_54 (season VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_name_9 WHERE home = \"fc augsburg\" AND result = \"3-0\"", "question": "What round had a home of FC augsburg with the result of 3-0?", "context": "CREATE TABLE table_name_9 (round VARCHAR, home VARCHAR, result VARCHAR)"}, {"answer": "SELECT in_office FROM table_name_58 WHERE member = \"mark coulton\"", "question": "What is the office held by member Mark Coulton?", "context": "CREATE TABLE table_name_58 (in_office VARCHAR, member VARCHAR)"}, {"answer": "SELECT in_office FROM table_name_71 WHERE electorate = \"hume\"", "question": "What office is held by Electorate Hume?", "context": "CREATE TABLE table_name_71 (in_office VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT member FROM table_name_7 WHERE state = \"nt\"", "question": "Which memeber has nt as the state?", "context": "CREATE TABLE table_name_7 (member VARCHAR, state VARCHAR)"}, {"answer": "SELECT member FROM table_name_64 WHERE state = \"nsw\" AND first_elected = \"1952\" AND party = \"alp\"", "question": "Which memeber has nsw as the state, a first elected of 1952, and alp as the party?", "context": "CREATE TABLE table_name_64 (member VARCHAR, party VARCHAR, state VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_name_14 WHERE state = \"wa\" AND member = \"hon victor garland\"", "question": "Which party has wa as the state, and hon victor garland as the memeber?", "context": "CREATE TABLE table_name_14 (party VARCHAR, state VARCHAR, member VARCHAR)"}, {"answer": "SELECT party FROM table_name_25 WHERE first_elected = \"1966\" AND state = \"qld\" AND member = \"donald milner cameron\"", "question": "Which party has a first elected of 1966, qld as the state, and donald milner cameron as the member?", "context": "CREATE TABLE table_name_25 (party VARCHAR, member VARCHAR, first_elected VARCHAR, state VARCHAR)"}, {"answer": "SELECT member FROM table_name_70 WHERE first_elected = \"1972\" AND party = \"alp\" AND state = \"vic\" AND electorate = \"gellibrand\"", "question": "Which memeber has a first elected of 1972, alp as the party, vic as the state, and an electorate of gellibrand?", "context": "CREATE TABLE table_name_70 (member VARCHAR, electorate VARCHAR, state VARCHAR, first_elected VARCHAR, party VARCHAR)"}, {"answer": "SELECT location FROM table_name_13 WHERE left = \"2013\" AND nickname = \"royals\"", "question": "Where was the game played with a 2013 left and Royals nickname?", "context": "CREATE TABLE table_name_13 (location VARCHAR, left VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT joined FROM table_name_2 WHERE founded < 1856 AND current_conference = \"big south (ncaa division i)\"", "question": "What joined that was founded prior to year 1856 and whose current conference is the Big South (NCAA Division I)?", "context": "CREATE TABLE table_name_2 (joined VARCHAR, founded VARCHAR, current_conference VARCHAR)"}, {"answer": "SELECT SUM(founded) FROM table_name_47 WHERE left = \"1976\"", "question": "What is the total number of teams founded that were left in 1976?", "context": "CREATE TABLE table_name_47 (founded INTEGER, left VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_33 WHERE date = \"08 jul\" AND set_2 = \"25\u201321\"", "question": "What is the Set 1 when the date is 08 jul, and a Set 2 of 25\u201321?", "context": "CREATE TABLE table_name_33 (set_1 VARCHAR, date VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE set_2 = \"24\u201326\"", "question": "What is the Score for Set 2 of 24\u201326?", "context": "CREATE TABLE table_name_71 (score VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT report FROM table_name_15 WHERE set_1 = \"19\u201325\"", "question": "What shows for Report hen there is a set 1 of 19\u201325?", "context": "CREATE TABLE table_name_15 (report VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE time = \"17:37\" AND set_4 = \"25\u201315\"", "question": "What is the Date with a Time of 17:37, and the Set 4 is 25\u201315?", "context": "CREATE TABLE table_name_38 (date VARCHAR, time VARCHAR, set_4 VARCHAR)"}, {"answer": "SELECT report FROM table_name_12 WHERE score = \"3\u20131\" AND set_1 = \"19\u201325\"", "question": "What is the Report with a Score of 3\u20131, and Set 1 is 19\u201325?", "context": "CREATE TABLE table_name_12 (report VARCHAR, score VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT report FROM table_name_79 WHERE date = \"08 jul\" AND score = \"3\u20131\"", "question": "What is the Report for 08 jul, and a Score of 3\u20131?", "context": "CREATE TABLE table_name_79 (report VARCHAR, date VARCHAR, score VARCHAR)"}, {"answer": "SELECT nation FROM table_name_37 WHERE record = \"7.39\"", "question": "What is the Nation with a Record that is 7.39?", "context": "CREATE TABLE table_name_37 (nation VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE record = \"7.39\"", "question": "What is the Date with a Record that is 7.39?", "context": "CREATE TABLE table_name_87 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT episode FROM table_name_23 WHERE xii_season = \"4 118 160 (26 september 2010)\"", "question": "What is Episode, when XII Season is 4 118 160 (26 september 2010)?", "context": "CREATE TABLE table_name_23 (episode VARCHAR, xii_season VARCHAR)"}, {"answer": "SELECT vii_season FROM table_name_29 WHERE episode = \"11\"", "question": "What is VII Season, when Episode is 11?", "context": "CREATE TABLE table_name_29 (vii_season VARCHAR, episode VARCHAR)"}, {"answer": "SELECT xii_season FROM table_name_57 WHERE episode = \"6\"", "question": "What is XII Season, when Episode is 6?", "context": "CREATE TABLE table_name_57 (xii_season VARCHAR, episode VARCHAR)"}, {"answer": "SELECT episode FROM table_name_83 WHERE viii_season = \"5 082 535 (19 october 2008)\"", "question": "What is Episode, when VIII Season is 5 082 535 (19 October 2008)?", "context": "CREATE TABLE table_name_83 (episode VARCHAR, viii_season VARCHAR)"}, {"answer": "SELECT xiii_season FROM table_name_82 WHERE viii_season = \"4 780 743 (2 november 2008)\"", "question": "What is XIII Season, when VIII Season is 4 780 743 (2 november 2008)?", "context": "CREATE TABLE table_name_82 (xiii_season VARCHAR, viii_season VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_47 WHERE points = 28 AND drawn < 8", "question": "Which Lost has Points of 28 and a Drawn smaller than 8?", "context": "CREATE TABLE table_name_47 (lost INTEGER, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_96 WHERE points > 31 AND drawn > 6", "question": "How many Againsts have Points larger than 31 and a Drawn larger than 6?", "context": "CREATE TABLE table_name_96 (against VARCHAR, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(mccain_number) FROM table_name_47 WHERE others_percentage = \"1.6%\" AND mccain_percentage = \"40.5%\" AND obama_number < 256 OFFSET 299", "question": "What is the highest number of votes for McCain in a county that voted 1.6% for other, 40.5% for McCain, and fewer than 256,299 votes for Obama?", "context": "CREATE TABLE table_name_47 (mccain_number INTEGER, obama_number VARCHAR, others_percentage VARCHAR, mccain_percentage VARCHAR)"}, {"answer": "SELECT round FROM table_name_50 WHERE behinds = 1", "question": "What is the Round with 1 Behinds?", "context": "CREATE TABLE table_name_50 (round VARCHAR, behinds VARCHAR)"}, {"answer": "SELECT goals FROM table_name_29 WHERE round = \"round 15\"", "question": "What is the goals for Round 15?", "context": "CREATE TABLE table_name_29 (goals VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_44 WHERE date = \"31 january 1987\"", "question": "What was the Attendance on 31 January 1987?", "context": "CREATE TABLE table_name_44 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_62 WHERE score = \"w 89\u201386 (ot)\"", "question": "What was the location and attendance with a score of w 89\u201386 (ot)?", "context": "CREATE TABLE table_name_62 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_24 WHERE score = \"l 91\u201395 (ot)\"", "question": "How many games had a score of l 91\u201395 (ot)?", "context": "CREATE TABLE table_name_24 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT name FROM table_name_13 WHERE season = \"2010-2011\" AND acquisition_via = \"free agency\" AND number = \"14\"", "question": "What is the name of the player for the 2010-2011 season, from a Free Agency and is Number 14?", "context": "CREATE TABLE table_name_13 (name VARCHAR, number VARCHAR, season VARCHAR, acquisition_via VARCHAR)"}, {"answer": "SELECT season FROM table_name_5 WHERE acquisition_via = \"trade\" AND school_club_team = \"la salle\"", "question": "Which season had a trade with the school/club team La Salle?", "context": "CREATE TABLE table_name_5 (season VARCHAR, acquisition_via VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_26 WHERE season = \"2009-2010\" AND number = \"1\"", "question": "Who is the position for the 2009-2010 season, number 1?", "context": "CREATE TABLE table_name_26 (position VARCHAR, season VARCHAR, number VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE position = \"forward\" AND season = \"2009-2010\"", "question": "What is the name for the forward in the 2009-2010 season?", "context": "CREATE TABLE table_name_63 (name VARCHAR, position VARCHAR, season VARCHAR)"}, {"answer": "SELECT number FROM table_name_90 WHERE position = \"forward\" AND school_club_team = \"la salle\"", "question": "What is the number for the forward position from the school/club team La Salle?", "context": "CREATE TABLE table_name_90 (number VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_73 WHERE school_club_team = \"far eastern\"", "question": "Who is the position from the school/club Far Eastern?", "context": "CREATE TABLE table_name_73 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(games_played) FROM table_name_64 WHERE draws = 3 AND loses = 5 AND points < 39", "question": "What is the highest number of games played for teams with 3 draws, 5 losses, and under 39 points?", "context": "CREATE TABLE table_name_64 (games_played INTEGER, points VARCHAR, draws VARCHAR, loses VARCHAR)"}, {"answer": "SELECT MAX(loses) FROM table_name_49 WHERE draws < 3 AND points = 51", "question": "What is the highest number of losses for teams with under 3 draws and 51 points?", "context": "CREATE TABLE table_name_49 (loses INTEGER, draws VARCHAR, points VARCHAR)"}, {"answer": "SELECT record FROM table_name_45 WHERE time__seconds_ < 5.22", "question": "Tell me the record for a time in seconds smaller than 5.22.", "context": "CREATE TABLE table_name_45 (record VARCHAR, time__seconds_ INTEGER)"}, {"answer": "SELECT sport FROM table_name_27 WHERE date = \"november 14, 2009\"", "question": "What sport was played on November 14, 2009?", "context": "CREATE TABLE table_name_27 (sport VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_20 WHERE record = \"3\u201318\"", "question": "Whose Visitor has a Record of 3\u201318?", "context": "CREATE TABLE table_name_20 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE leading_scorer = \"ricky davis (20)\"", "question": "When has a Leading scorer of ricky davis (20)?", "context": "CREATE TABLE table_name_48 (date VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT home FROM table_name_79 WHERE leading_scorer = \"dajuan wagner (25)\" AND score = \"89\u201382\"", "question": "Which  Home has a Leading scorer of dajuan wagner (25) and a Score of 89\u201382? Question 3", "context": "CREATE TABLE table_name_79 (home VARCHAR, leading_scorer VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_1 WHERE visitor = \"bulls\"", "question": "When has a Visitor of bulls?", "context": "CREATE TABLE table_name_1 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_64 WHERE home = \"bulls\"", "question": "Which Visitor has a Home of bulls?", "context": "CREATE TABLE table_name_64 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_18 WHERE date = \"14 december 2002\"", "question": "WHich Home is on 14 december 2002?", "context": "CREATE TABLE table_name_18 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT profession FROM table_name_1 WHERE entered_the_house = \"day 1\" AND evicted = \"day 29\" AND name = \"skaj vikler\"", "question": "What is the profession of Skaj Vikler, who entered the house on day 1 and was evicted on day 29?", "context": "CREATE TABLE table_name_1 (profession VARCHAR, name VARCHAR, entered_the_house VARCHAR, evicted VARCHAR)"}, {"answer": "SELECT profession FROM table_name_90 WHERE city = \"leskovac\"", "question": "What is the profession of the housemate from Leskovac city?", "context": "CREATE TABLE table_name_90 (profession VARCHAR, city VARCHAR)"}, {"answer": "SELECT entered_the_house FROM table_name_82 WHERE evicted = \"day 29\" AND name = \"sla\u0111ana peji\u0107\"", "question": "When did sla\u0111ana peji\u0107, who was evicted on day 29, enter the house?", "context": "CREATE TABLE table_name_82 (entered_the_house VARCHAR, evicted VARCHAR, name VARCHAR)"}, {"answer": "SELECT profession FROM table_name_4 WHERE name = \"sla\u0111ana peji\u0107\"", "question": "What is sla\u0111ana peji\u0107's profession?", "context": "CREATE TABLE table_name_4 (profession VARCHAR, name VARCHAR)"}, {"answer": "SELECT city FROM table_name_84 WHERE entered_the_house = \"day 1\" AND profession = \"tv presenter\"", "question": "What city is the housemate who entered the house on day 1 and whose profession was a tv presenter from?", "context": "CREATE TABLE table_name_84 (city VARCHAR, entered_the_house VARCHAR, profession VARCHAR)"}, {"answer": "SELECT profession FROM table_name_87 WHERE city = \"leskovac\"", "question": "What is the profession of the housemate from Leskovac city?", "context": "CREATE TABLE table_name_87 (profession VARCHAR, city VARCHAR)"}, {"answer": "SELECT home FROM table_name_93 WHERE competition = \"uefa cup\" AND season = \"2000-2001\" AND round = \"second round\"", "question": "What is the home team of the UEFA cup in the 2000-2001 season with a second round?", "context": "CREATE TABLE table_name_93 (home VARCHAR, round VARCHAR, competition VARCHAR, season VARCHAR)"}, {"answer": "SELECT away FROM table_name_67 WHERE competition = \"uefa champions league\"", "question": "What is the away team of the UEFA champions league?", "context": "CREATE TABLE table_name_67 (away VARCHAR, competition VARCHAR)"}, {"answer": "SELECT position FROM table_name_90 WHERE league = \"southern league premier division\" AND season = \"2004\u201305\"", "question": "Which Position has a League of southern league premier division, and a Season of 2004\u201305?", "context": "CREATE TABLE table_name_90 (position VARCHAR, league VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_45 WHERE season = \"2001\u201302\" AND points > 47", "question": "Which Draw has a Season of 2001\u201302, and Points larger than 47?", "context": "CREATE TABLE table_name_45 (draw INTEGER, season VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_58 WHERE season = \"2001\u201302\" AND points > 47", "question": "Which Lost is the highest one that has a Season of 2001\u201302, and Points larger than 47?", "context": "CREATE TABLE table_name_58 (lost INTEGER, season VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_67 WHERE total > 4 AND rank < 4 AND nation = \"germany\" AND silver < 5", "question": "How many bronze numbers had a total of more than 4 when the rank is less than four, germany is involved, and there's less than 5 silver?", "context": "CREATE TABLE table_name_67 (bronze VARCHAR, silver VARCHAR, nation VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT place FROM table_name_67 WHERE player = \"phil mickelson\"", "question": "Which Place has Phil Mickelson as the Player?", "context": "CREATE TABLE table_name_67 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_62 WHERE player = \"chris riley\"", "question": "What is the To Par for Player Chris Riley?", "context": "CREATE TABLE table_name_62 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_33 WHERE place = \"t2\" AND country = \"fiji\"", "question": "Which Player has a Place of T2 and a Country listed as Fiji?", "context": "CREATE TABLE table_name_33 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(height__cm_) FROM table_name_66 WHERE weight__kg_ < 91 AND position = \"d\" AND birthdate = \"july 4, 1975\"", "question": "What is the average Height when the weight is less than 91 and the position is d, and a Birthdate of july 4, 1975?", "context": "CREATE TABLE table_name_66 (height__cm_ INTEGER, birthdate VARCHAR, weight__kg_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(weight__kg_) FROM table_name_39 WHERE birthplace = \"virginia, minnesota\"", "question": "What is the sum of Weight for the person born in virginia, minnesota?", "context": "CREATE TABLE table_name_39 (weight__kg_ INTEGER, birthplace VARCHAR)"}, {"answer": "SELECT birthdate FROM table_name_23 WHERE height__cm_ < 191 AND weight__kg_ = 84", "question": "What is the Birthdate for the person with a height less than 191, and weight of 84 kg?", "context": "CREATE TABLE table_name_23 (birthdate VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_73 WHERE height__cm_ < 183 AND weight__kg_ < 91 AND birthplace = \"bloomington, minnesota\"", "question": "What is the Position with a height of less than 183, and a weight of less than 91 kg and born in bloomington, minnesota?", "context": "CREATE TABLE table_name_73 (position VARCHAR, birthplace VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT claimant FROM table_name_7 WHERE rank = 200", "question": "Which claimant's rank is 200?", "context": "CREATE TABLE table_name_7 (claimant VARCHAR, rank VARCHAR)"}, {"answer": "SELECT highest_point FROM table_name_46 WHERE country = \"south ossetia\"", "question": "What is the most points for South Ossetia?", "context": "CREATE TABLE table_name_46 (highest_point VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_85 WHERE country = \"palestinian territories\"", "question": "Which highest rank belongs to the palestinian territories?", "context": "CREATE TABLE table_name_85 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT highest_point FROM table_name_49 WHERE rank = 95", "question": "What is the highest amount of points for rank 95?", "context": "CREATE TABLE table_name_49 (highest_point VARCHAR, rank VARCHAR)"}, {"answer": "SELECT season FROM table_name_39 WHERE win_percentage = \".439\" AND team = \"1996-97\"", "question": "What season had a .439 Win% in the 1996-97 Team?", "context": "CREATE TABLE table_name_39 (season VARCHAR, win_percentage VARCHAR, team VARCHAR)"}, {"answer": "SELECT conference__conf_ FROM table_name_95 WHERE division__div_ = \"atlantic\" AND team = \"1973-74\"", "question": "What conference is the 1973-74 team in the Atlantic Division (Div.)?", "context": "CREATE TABLE table_name_95 (conference__conf_ VARCHAR, division__div_ VARCHAR, team VARCHAR)"}, {"answer": "SELECT season FROM table_name_6 WHERE win_percentage = \".354\"", "question": "Which season has a .354 Win%?", "context": "CREATE TABLE table_name_6 (season VARCHAR, win_percentage VARCHAR)"}, {"answer": "SELECT win_percentage FROM table_name_44 WHERE team = \"1989-90\"", "question": "What is the Win% of the 1989-90 Team?", "context": "CREATE TABLE table_name_44 (win_percentage VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_68 WHERE team = \"charlotte\"", "question": "What is the High rebounds with a Team that is charlotte?", "context": "CREATE TABLE table_name_68 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE rocket = \"tbd\" AND satellite = \"gps iiia-1\"", "question": "On what date was the rocket a TBD with a satellite of GPS IIIA-1?", "context": "CREATE TABLE table_name_16 (date VARCHAR, rocket VARCHAR, satellite VARCHAR)"}, {"answer": "SELECT type FROM table_name_54 WHERE satellite = \"gps iiia-2\"", "question": "Which type is a satellite of GPS IIIA-2?", "context": "CREATE TABLE table_name_54 (type VARCHAR, satellite VARCHAR)"}, {"answer": "SELECT launch_site FROM table_name_74 WHERE satellite = \"gps iiia-2\"", "question": "What was the launch site for a satellite of GPS IIIA-2?", "context": "CREATE TABLE table_name_74 (launch_site VARCHAR, satellite VARCHAR)"}, {"answer": "SELECT choreographer_s_ FROM table_name_36 WHERE chosen_by = \"mary murphy\" AND style = \"contemporary\"", "question": "What is Choreographer(s), when Chosen is Mary Murphy, and when Style is Contemporary?", "context": "CREATE TABLE table_name_36 (choreographer_s_ VARCHAR, chosen_by VARCHAR, style VARCHAR)"}, {"answer": "SELECT chosen_by FROM table_name_10 WHERE couple = \"katee shean joshua allen\" AND choreographer_s_ = \"nakul dev mahajan\"", "question": "What is Chosen By, when Couple is Katee Shean Joshua Allen, and when Choreographer(s) is Nakul Dev Mahajan?", "context": "CREATE TABLE table_name_10 (chosen_by VARCHAR, couple VARCHAR, choreographer_s_ VARCHAR)"}, {"answer": "SELECT style FROM table_name_17 WHERE choreographer_s_ = \"dave scott\"", "question": "What is Style, when Choreographer(s) is Dave Scott?", "context": "CREATE TABLE table_name_17 (style VARCHAR, choreographer_s_ VARCHAR)"}, {"answer": "SELECT couple FROM table_name_13 WHERE choreographer_s_ = \"nakul dev mahajan\"", "question": "What is Couple, when Choreographer(s) is Nakul Dev Mahajan?", "context": "CREATE TABLE table_name_13 (couple VARCHAR, choreographer_s_ VARCHAR)"}, {"answer": "SELECT AVG(number_on_map) FROM table_name_42 WHERE name = \"northgate\" AND construction_commenced < 1951", "question": "What is the average number for Northgate which commenced its construction before 1951?", "context": "CREATE TABLE table_name_42 (number_on_map INTEGER, name VARCHAR, construction_commenced VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_20 WHERE colour = \"blue\" AND construction_commenced < 1987", "question": "What is the lowest population for the neighborhood with the color blue that commenced its construction before 1987?", "context": "CREATE TABLE table_name_20 (population INTEGER, colour VARCHAR, construction_commenced VARCHAR)"}, {"answer": "SELECT SUM(top_25) FROM table_name_46 WHERE wins > 0", "question": "What is the sum of Top-25 when there are more than 0 wins?", "context": "CREATE TABLE table_name_46 (top_25 INTEGER, wins INTEGER)"}, {"answer": "SELECT MIN(top_10) FROM table_name_44 WHERE top_25 = 6 AND tournament = \"u.s. open\" AND cuts_made > 9", "question": "What is the lowest Top-10 when the Top-25 is 6, and a Tournament of u.s. open, and a Cut made larger than 9?", "context": "CREATE TABLE table_name_44 (top_10 INTEGER, cuts_made VARCHAR, top_25 VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MIN(top_25) FROM table_name_63 WHERE events = 12 AND top_5 = 1 AND cuts_made < 11", "question": "What is the lowest Top-25 when events shows 12, the top-5 is 1, and less than 11 cuts?", "context": "CREATE TABLE table_name_63 (top_25 INTEGER, cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_name_93 WHERE location = \"onalaska\"", "question": "What is the Enrollment at Onalaska?", "context": "CREATE TABLE table_name_93 (enrollment INTEGER, location VARCHAR)"}, {"answer": "SELECT institution FROM table_name_80 WHERE affiliation = \"public\" AND location = \"black river falls\"", "question": "What Public Institution is in Black River Falls?", "context": "CREATE TABLE table_name_80 (institution VARCHAR, affiliation VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(block) FROM table_name_73 WHERE weight < 85 AND height > 187", "question": "What is the total number of Block for the Player with less than 85 Weight and more than 187 Height?", "context": "CREATE TABLE table_name_73 (block VARCHAR, weight VARCHAR, height VARCHAR)"}, {"answer": "SELECT name FROM table_name_50 WHERE block < 342 AND weight < 87 AND height > 187", "question": "What is the Name of the player with less than 342 Block, less than 87 Weight and Height more than 187?", "context": "CREATE TABLE table_name_50 (name VARCHAR, height VARCHAR, block VARCHAR, weight VARCHAR)"}, {"answer": "SELECT COUNT(weight) FROM table_name_28 WHERE block > 328 AND height > 207 AND spike > 375", "question": "What is the Weight of the player with a Block larger than 328, Spike greater than 375 and Height larger than 207?", "context": "CREATE TABLE table_name_28 (weight VARCHAR, spike VARCHAR, block VARCHAR, height VARCHAR)"}, {"answer": "SELECT result FROM table_name_47 WHERE category = \"album of the year\" AND year = 2011", "question": "What is the Result with a Category of album of the year in a Year that is 2011?", "context": "CREATE TABLE table_name_47 (result VARCHAR, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT season FROM table_name_57 WHERE name = \"tony boy espinosa\"", "question": "What is Season, when Name is Tony Boy Espinosa?", "context": "CREATE TABLE table_name_57 (season VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(number) FROM table_name_13 WHERE position = \"forward\"", "question": "What is the average Number, when Position is Forward?", "context": "CREATE TABLE table_name_13 (number INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(number) FROM table_name_30 WHERE school_club_team = \"misamis institute\"", "question": "What is the lowest Number, when School/Club Team is Misamis Institute?", "context": "CREATE TABLE table_name_30 (number INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_79 WHERE season = \"2006-2012\"", "question": "What is School/Club Team, when Season is 2006-2012?", "context": "CREATE TABLE table_name_79 (school_club_team VARCHAR, season VARCHAR)"}, {"answer": "SELECT acquisition_via FROM table_name_50 WHERE season = \"2006-2012\"", "question": "What is Acquisition via, when Season is 2006-2012?", "context": "CREATE TABLE table_name_50 (acquisition_via VARCHAR, season VARCHAR)"}, {"answer": "SELECT set_4 FROM table_name_33 WHERE set_1 = \"19-25\" AND set_2 = \"23-25\"", "question": "What is Set 4, when Set 1 is 19-25, and when Set 2 is 23-25?", "context": "CREATE TABLE table_name_33 (set_4 VARCHAR, set_1 VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_30 WHERE set_4 = \"na\" AND score = \"3-0\" AND set_2 = \"29-27\"", "question": "What is Set 1, when Set 4 is NA, when Score is 3-0, and when Set 2 is 29-27?", "context": "CREATE TABLE table_name_30 (set_1 VARCHAR, set_2 VARCHAR, set_4 VARCHAR, score VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_67 WHERE date = \"may 31\"", "question": "What is Set 2, when Date is May 31?", "context": "CREATE TABLE table_name_67 (set_2 VARCHAR, date VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_22 WHERE set_2 = \"17-25\"", "question": "What is Set 1, when Set 2 is 17-25?", "context": "CREATE TABLE table_name_22 (set_1 VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_79 WHERE set_4 = \"25-21\" AND date = \"jun 14\"", "question": "What is Set 3, when Set 4 is 25-21, and when Date is Jun 14?", "context": "CREATE TABLE table_name_79 (set_3 VARCHAR, set_4 VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(events) FROM table_name_23 WHERE top_5 < 2 AND top_25 < 3", "question": "What were the total number of Events, when the Top-5 was less than 2, and when the Top-25 was less than 3?", "context": "CREATE TABLE table_name_23 (events VARCHAR, top_5 VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT COUNT(top_25) FROM table_name_37 WHERE cuts_made = 62 AND wins < 1", "question": "What was the total number of Top-25 values, for which Cuts made was 62, and for which Wins were less than 1?", "context": "CREATE TABLE table_name_37 (top_25 VARCHAR, cuts_made VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(cuts_made) FROM table_name_79 WHERE top_5 > 3 AND events = 85", "question": "What was the total number of Cuts made, when Top-5 was greater than 3, and when Events were 85?", "context": "CREATE TABLE table_name_79 (cuts_made VARCHAR, top_5 VARCHAR, events VARCHAR)"}, {"answer": "SELECT SUM(events) FROM table_name_57 WHERE wins < 1 AND top_25 = 3 AND top_5 < 1", "question": "What was the sum of Events, when Wins were less than 1, when Top-25 was 3, and when Top-5 was less than 1?", "context": "CREATE TABLE table_name_57 (events INTEGER, top_5 VARCHAR, wins VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MAX(top_10) FROM table_name_77 WHERE top_5 > 3 AND cuts_made = 20 AND top_25 > 10", "question": "What was the highest Top-10, when the Top-5 was greater than 3, when the Cuts made were 20, and when the Top-25 was more than 10?", "context": "CREATE TABLE table_name_77 (top_10 INTEGER, top_25 VARCHAR, top_5 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(top_10) FROM table_name_4 WHERE wins = 0 AND top_25 = 12 AND events < 23", "question": "What was the lowest Top-10, when the Wins were 0, when the Top-25 was 12, and when the Events were less than 23?", "context": "CREATE TABLE table_name_4 (top_10 INTEGER, events VARCHAR, wins VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_88 WHERE drawn > 2 AND difference = \"- 17\" AND played < 20", "question": "What is the average Against when the drawn is more than 2 and the Difference of- 17, and a Played smaller than 20?", "context": "CREATE TABLE table_name_88 (against INTEGER, played VARCHAR, drawn VARCHAR, difference VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_28 WHERE team = \"s\u00e3o paulo railway\" AND against < 46", "question": "What is the number of Position when the team was s\u00e3o paulo railway and the against is less than 46?", "context": "CREATE TABLE table_name_28 (position VARCHAR, team VARCHAR, against VARCHAR)"}, {"answer": "SELECT team FROM table_name_58 WHERE lost < 13 AND position < 4 AND difference = \"42\"", "question": "What is the Team when the lost is less than 13, and the position is less than 4, with a Difference of 42?", "context": "CREATE TABLE table_name_58 (team VARCHAR, difference VARCHAR, lost VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_35 WHERE drawn < 2 AND against > 29", "question": "What is the sum of Played when the drawn is less than 2 and against is more than 29?", "context": "CREATE TABLE table_name_35 (played INTEGER, drawn VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_65 WHERE byes > 0", "question": "Which Wins has a Byes larger than 0?", "context": "CREATE TABLE table_name_65 (wins INTEGER, byes INTEGER)"}, {"answer": "SELECT MAX(against) FROM table_name_55 WHERE peel = \"waroona\" AND byes > 0", "question": "Which Against has a Peel of waroona, and a Byes larger than 0?", "context": "CREATE TABLE table_name_55 (against INTEGER, peel VARCHAR, byes VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_64 WHERE wins < 17 AND against < 1158", "question": "Which Draws has a Wins smaller than 17, and an Against smaller than 1158?", "context": "CREATE TABLE table_name_64 (draws VARCHAR, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_74 WHERE against > 1158 AND wins = 9 AND losses < 9", "question": "Which Draws has an Against larger than 1158, and a Wins of 9, and a Losses smaller than 9?", "context": "CREATE TABLE table_name_74 (draws INTEGER, losses VARCHAR, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_56 WHERE wins = 6 AND against < 1741", "question": "Which Losses has a Wins of 6, and an Against smaller than 1741?", "context": "CREATE TABLE table_name_56 (losses INTEGER, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT venue FROM table_name_81 WHERE winner = \"atlanta hawks (11)\"", "question": "What venue was the game played in when the winner was the atlanta hawks (11)?", "context": "CREATE TABLE table_name_81 (venue VARCHAR, winner VARCHAR)"}, {"answer": "SELECT loser FROM table_name_83 WHERE result = \"119\u2013113\"", "question": "What team was the loser when the result was 119\u2013113?", "context": "CREATE TABLE table_name_83 (loser VARCHAR, result VARCHAR)"}, {"answer": "SELECT loser FROM table_name_18 WHERE winner = \"los angeles lakers (10)\"", "question": "What is the Loser when the winner was los angeles lakers (10)?", "context": "CREATE TABLE table_name_18 (loser VARCHAR, winner VARCHAR)"}, {"answer": "SELECT venue FROM table_name_78 WHERE result = \"88\u201387\"", "question": "What is the Venue when the result was 88\u201387?", "context": "CREATE TABLE table_name_78 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT winner FROM table_name_35 WHERE result = \"90\u201386\"", "question": "What team was the winner when the result was 90\u201386?", "context": "CREATE TABLE table_name_35 (winner VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_10 WHERE loser = \"memphis grizzlies ( 2)\"", "question": "What is the Result when the memphis grizzlies ( 2) were the loser?", "context": "CREATE TABLE table_name_10 (result VARCHAR, loser VARCHAR)"}, {"answer": "SELECT years FROM table_name_77 WHERE win_percentage = \"60%\"", "question": "What year was the Win percentage 60%?", "context": "CREATE TABLE table_name_77 (years VARCHAR, win_percentage VARCHAR)"}, {"answer": "SELECT COUNT(tests) FROM table_name_43 WHERE lost < 9 AND name = \"sir fred allen\"", "question": "What is the total number of Tests when the lost is less than 9 for sir fred allen?", "context": "CREATE TABLE table_name_43 (tests VARCHAR, lost VARCHAR, name VARCHAR)"}, {"answer": "SELECT win_percentage FROM table_name_62 WHERE lost = 5 AND drew = 0", "question": "What is the Win percentage where there were 5 lost and 0 is drew?", "context": "CREATE TABLE table_name_62 (win_percentage VARCHAR, lost VARCHAR, drew VARCHAR)"}, {"answer": "SELECT COUNT(campeonato_paulista) FROM table_name_72 WHERE campeonato_brasileiro > 2 AND others > 0 AND copa_sudamericana > 5", "question": "How many Campeonato Paulistas had a campeonato brasileiro of more than 2, an others number of more than 0, and a copa sudamericana of more than 5?", "context": "CREATE TABLE table_name_72 (campeonato_paulista VARCHAR, copa_sudamericana VARCHAR, campeonato_brasileiro VARCHAR, others VARCHAR)"}, {"answer": "SELECT MAX(copa_sudamericana) FROM table_name_80 WHERE others < 0", "question": "What is the largest copa sudamericana number when the others number is less than 0?", "context": "CREATE TABLE table_name_80 (copa_sudamericana INTEGER, others INTEGER)"}, {"answer": "SELECT unit FROM table_name_65 WHERE authors = \"dalla vecchia, wild, & reitner\"", "question": "Which Unit has Authors of dalla vecchia, wild, & reitner?", "context": "CREATE TABLE table_name_65 (unit VARCHAR, authors VARCHAR)"}, {"answer": "SELECT location FROM table_name_46 WHERE unit = \"two medicine formation\"", "question": "Where is two medicine formation?", "context": "CREATE TABLE table_name_46 (location VARCHAR, unit VARCHAR)"}, {"answer": "SELECT unit FROM table_name_75 WHERE authors = \"varricchio\"", "question": "What is varricchio's unit?", "context": "CREATE TABLE table_name_75 (unit VARCHAR, authors VARCHAR)"}, {"answer": "SELECT authors FROM table_name_42 WHERE unit = \"densu\u0219-ciula formation\"", "question": "Which authors have a Unit of densu\u0219-ciula formation?", "context": "CREATE TABLE table_name_42 (authors VARCHAR, unit VARCHAR)"}, {"answer": "SELECT status FROM table_name_55 WHERE unit = \"daohugou beds\"", "question": "Which Status has a Unit of daohugou beds?", "context": "CREATE TABLE table_name_55 (status VARCHAR, unit VARCHAR)"}, {"answer": "SELECT status FROM table_name_75 WHERE authors = \"varricchio\"", "question": "What is varricchio's status?", "context": "CREATE TABLE table_name_75 (status VARCHAR, authors VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_13 WHERE tied > 8 AND games < 82 AND coach = \"bryan mclay \u2020 morris lallo \u2021 gerry moore \u2021\" AND goals_against > 322", "question": "What is the points average when the tied is greater than 8, less than 82 games and the coach of Bryan Mclay \u2020 Morris Lallo \u2021 Gerry Moore \u2021, and greater than 322 goals?", "context": "CREATE TABLE table_name_13 (points INTEGER, goals_against VARCHAR, coach VARCHAR, tied VARCHAR, games VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_23 WHERE points = 100 AND goals_for < 356", "question": "What are the most games when the points are 100 and goals for less than 356?", "context": "CREATE TABLE table_name_23 (games INTEGER, points VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_49 WHERE goals_against = 354 AND games < 82", "question": "What is the most points when the goals against are 354 and games less than 82?", "context": "CREATE TABLE table_name_49 (points INTEGER, goals_against VARCHAR, games VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_85 WHERE goals_for > 335 AND games < 70", "question": "For games less than 70 and goals for greater than 335 what is the most points?", "context": "CREATE TABLE table_name_85 (points INTEGER, goals_for VARCHAR, games VARCHAR)"}, {"answer": "SELECT gold FROM table_name_71 WHERE total < 4 AND silver = \"1\" AND bronze = \"1\"", "question": "What is Gold, when Total is less than 4, when Silver is 1, and when Bronze is 1?", "context": "CREATE TABLE table_name_71 (gold VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT silver FROM table_name_51 WHERE total > 4 AND bronze = \"2\" AND rank > 1", "question": "What is Silver, when Total is greater than 4, when Bronze is 2, and when Rank is greater than 1?", "context": "CREATE TABLE table_name_51 (silver VARCHAR, rank VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT socialist_labor_ticket FROM table_name_60 WHERE liberal_ticket = \"arthur levitt\"", "question": "Who was on the Socialist Labor ticket that had Arthur Levitt as the Liberal Ticket?", "context": "CREATE TABLE table_name_60 (socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR)"}, {"answer": "SELECT liberal_ticket FROM table_name_51 WHERE free_libertarian_ticket = \"robert s. flanzer\"", "question": "Robert S. Flanzer was the Free Libertarian ticket with who listed as the Liberal Ticket?", "context": "CREATE TABLE table_name_51 (liberal_ticket VARCHAR, free_libertarian_ticket VARCHAR)"}, {"answer": "SELECT liberal_ticket FROM table_name_21 WHERE free_libertarian_ticket = \"jack a. martin\"", "question": "The Liberal Ticket listed which candidate when Jack A. Martin was listed on the Free Libertarian Ticket?", "context": "CREATE TABLE table_name_21 (liberal_ticket VARCHAR, free_libertarian_ticket VARCHAR)"}, {"answer": "SELECT democratic_ticket FROM table_name_68 WHERE office = \"u.s. senator\"", "question": "The person who is on the Democratic ticket for the position of Office of U.S. Senator was who?", "context": "CREATE TABLE table_name_68 (democratic_ticket VARCHAR, office VARCHAR)"}, {"answer": "SELECT democratic_ticket FROM table_name_56 WHERE free_libertarian_ticket = \"leland w. schubert\"", "question": "Leland W. Schubert, Free Libertarian ticket, had who listed on the Democratic ticket?", "context": "CREATE TABLE table_name_56 (democratic_ticket VARCHAR, free_libertarian_ticket VARCHAR)"}, {"answer": "SELECT MIN(extras) FROM table_name_50 WHERE name = \"chamara kapugedera\" AND er < 4.59", "question": "What is the lowest Extras for Chamara Kapugedera, with an E.R. less than 4.59?", "context": "CREATE TABLE table_name_50 (extras INTEGER, name VARCHAR, er VARCHAR)"}, {"answer": "SELECT MAX(extras) FROM table_name_9 WHERE er = 4.59 AND runs_conceded > 101", "question": "What is the highest Extras with an E.R. of 4.59, and more than 101 Runs Conceded?", "context": "CREATE TABLE table_name_9 (extras INTEGER, er VARCHAR, runs_conceded VARCHAR)"}, {"answer": "SELECT AVG(extras) FROM table_name_38 WHERE name = \"muttiah muralitharan\" AND runs_conceded < 353", "question": "What is the average Extras for Muttiah Muralitharan, with less than 353 Runs Conceded?", "context": "CREATE TABLE table_name_38 (extras INTEGER, name VARCHAR, runs_conceded VARCHAR)"}, {"answer": "SELECT MAX(extras) FROM table_name_79 WHERE name = \"farveez maharoof\" AND wickets > 4", "question": "What is the highest Extras for Farveez Maharoof, with more than 4 wickets?", "context": "CREATE TABLE table_name_79 (extras INTEGER, name VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT COUNT(maidens) FROM table_name_95 WHERE er < 9.5 AND overs_bowled > 57 AND wickets = 9", "question": "What is the total number of Maidens when E.R. is less than 9.5, and a Overs Bowled larger than 57, and a Wickets of 9?", "context": "CREATE TABLE table_name_95 (maidens VARCHAR, wickets VARCHAR, er VARCHAR, overs_bowled VARCHAR)"}, {"answer": "SELECT AVG(fa_cup) FROM table_name_15 WHERE total > 32 AND league > 24", "question": "How many FA Cups on average have a larger total than 32 and a larger league than 24?", "context": "CREATE TABLE table_name_15 (fa_cup INTEGER, total VARCHAR, league VARCHAR)"}, {"answer": "SELECT SUM(fa_trophy) FROM table_name_82 WHERE total = 27 AND fa_cup = 2 AND league > 24", "question": "How many FA Trophies had a total of 27, 2 FA cups, and a league larger than 24?", "context": "CREATE TABLE table_name_82 (fa_trophy INTEGER, league VARCHAR, total VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT \"built\" FROM table_name_41 WHERE status = \"built\" AND height = \"42 m.\"", "question": "What is the year built of the home with a built status and a 42 m. height?", "context": "CREATE TABLE table_name_41 (status VARCHAR, height VARCHAR)"}, {"answer": "SELECT height FROM table_name_34 WHERE stories > 22 AND built = \"2009\"", "question": "What is the height of the home with stories greater than 22 and built in 2009?", "context": "CREATE TABLE table_name_34 (height VARCHAR, stories VARCHAR, built VARCHAR)"}, {"answer": "SELECT MAX(stories) FROM table_name_7 WHERE height = \"42 m.\"", "question": "What is the highest number of stories in homes with a height of 42 m.?", "context": "CREATE TABLE table_name_7 (stories INTEGER, height VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE game = 2", "question": "When the game is listed as 2, what is the score?", "context": "CREATE TABLE table_name_81 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(november) FROM table_name_55 WHERE opponent = \"@ pittsburgh pirates\" AND game > 3", "question": "What is the latest November date with an Opponent of @ Pittsburgh Pirates and the game is more than 3?", "context": "CREATE TABLE table_name_55 (november INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_71 WHERE november < 27 AND record = \"2-0-0\"", "question": "When the record is listed as 2-0-0, and the November date is less than 27, what is the sum of the game?", "context": "CREATE TABLE table_name_71 (game INTEGER, november VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(total_foreign_born__millions_) FROM table_name_38 WHERE born_in_a_non_eu_state__millions_ = 6.415", "question": "What was the lowest number of Total Foreign-born (millions) people, when the number of people Born in a non EU state (millions) was 6.415?", "context": "CREATE TABLE table_name_38 (total_foreign_born__millions_ INTEGER, born_in_a_non_eu_state__millions_ VARCHAR)"}, {"answer": "SELECT AVG(born_in_other_eu_state__millions_) FROM table_name_57 WHERE total_foreign_born__millions_ = 0.5 AND total_population__millions_ < 5.534", "question": "What was the average number of people born in other EU states in millions, when the total number of foreign-born people in millions was 0.5, and when the total population in millions was less than 5.534?", "context": "CREATE TABLE table_name_57 (born_in_other_eu_state__millions_ INTEGER, total_foreign_born__millions_ VARCHAR, total_population__millions_ VARCHAR)"}, {"answer": "SELECT AVG(born_in_other_eu_state__millions_) FROM table_name_88 WHERE born_in_a_non_eu_state__millions_ = 31.368 AND total_population__millions_ > 501.098", "question": "What was the average number of people born in other EU states in millions, when the number of people born in a non EU state in millions was 31.368, and when the total population in millions was higher than 501.098?", "context": "CREATE TABLE table_name_88 (born_in_other_eu_state__millions_ INTEGER, born_in_a_non_eu_state__millions_ VARCHAR, total_population__millions_ VARCHAR)"}, {"answer": "SELECT born_in_a_non_eu_state__millions_ FROM table_name_32 WHERE total_population__millions_ = 62.008", "question": "How many people were born in a non EU state (in millions), when the Total population (in millions) was 62.008?", "context": "CREATE TABLE table_name_32 (born_in_a_non_eu_state__millions_ VARCHAR, total_population__millions_ VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_67 WHERE home_team = \"tottenham hotspur\"", "question": "What away team has tottenham hotspur as the home team?", "context": "CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tamil_name FROM table_name_96 WHERE english_name = \"thaipusam\"", "question": "What is the Tamil Name of the Thaipusam holiday?", "context": "CREATE TABLE table_name_96 (tamil_name VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT type FROM table_name_80 WHERE tamil_name = \"\u0b9a\u0ba8\u0bcd\u0ba4\u0bbf\u0bb0 \u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1 (\u0ba4\u0bbf\u0ba9\u0bae\u0bcd 2)\"", "question": "What is the Tamil Name of \u0b9a\u0ba8\u0bcd\u0ba4\u0bbf\u0bb0 \u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1 (\u0ba4\u0bbf\u0ba9\u0bae\u0bcd 2)?", "context": "CREATE TABLE table_name_80 (type VARCHAR, tamil_name VARCHAR)"}, {"answer": "SELECT chinese_name FROM table_name_25 WHERE type = \"chinese\" AND tamil_name = \"\u0b9a\u0ba8\u0bcd\u0ba4\u0bbf\u0bb0 \u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1 (\u0ba4\u0bbf\u0ba9\u0bae\u0bcd 3)\"", "question": "What is the Chinese Type Chinese Name of the holiday with a Tamil Name of \u0b9a\u0ba8\u0bcd\u0ba4\u0bbf\u0bb0 \u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1 (\u0ba4\u0bbf\u0ba9\u0bae\u0bcd 3)?", "context": "CREATE TABLE table_name_25 (chinese_name VARCHAR, type VARCHAR, tamil_name VARCHAR)"}, {"answer": "SELECT second FROM table_name_35 WHERE nation = \"united states\"", "question": "Who was second for the United States team?", "context": "CREATE TABLE table_name_35 (second VARCHAR, nation VARCHAR)"}, {"answer": "SELECT club FROM table_name_23 WHERE third = \"yumie hayashi\"", "question": "Yumie Hayashi was third for which club?", "context": "CREATE TABLE table_name_23 (club VARCHAR, third VARCHAR)"}, {"answer": "SELECT alternate FROM table_name_86 WHERE nation = \"switzerland\"", "question": "Who was Switzerland's alternate?", "context": "CREATE TABLE table_name_86 (alternate VARCHAR, nation VARCHAR)"}, {"answer": "SELECT club FROM table_name_27 WHERE nation = \"great britain\"", "question": "Which club was from Great Britain?", "context": "CREATE TABLE table_name_27 (club VARCHAR, nation VARCHAR)"}, {"answer": "SELECT nation FROM table_name_74 WHERE second = \"glenys bakker\"", "question": "Glenys Bakker was second for which nation?", "context": "CREATE TABLE table_name_74 (nation VARCHAR, second VARCHAR)"}, {"answer": "SELECT club FROM table_name_64 WHERE second = \"rosa pompanin\"", "question": "Rosa Pompanin was second for which club?", "context": "CREATE TABLE table_name_64 (club VARCHAR, second VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE singapore_gross = \"1999\"", "question": "What date was the Singapore Gross 1999?", "context": "CREATE TABLE table_name_18 (date VARCHAR, singapore_gross VARCHAR)"}, {"answer": "SELECT producer FROM table_name_71 WHERE production_cost = \"$1,000,000\"", "question": "What is the name of the producer that produced a film with a production cost of $1,000,000?", "context": "CREATE TABLE table_name_71 (producer VARCHAR, production_cost VARCHAR)"}, {"answer": "SELECT director FROM table_name_13 WHERE producer = \"raintree pictures\"", "question": "What is the name of the director who directed the movie that Raintree Pictures produced?", "context": "CREATE TABLE table_name_13 (director VARCHAR, producer VARCHAR)"}, {"answer": "SELECT title FROM table_name_93 WHERE production_cost = \"$850,000\"", "question": "What is the title of the film that had a production cost of $850,000?", "context": "CREATE TABLE table_name_93 (title VARCHAR, production_cost VARCHAR)"}, {"answer": "SELECT singapore_gross FROM table_name_93 WHERE director = \"siu wing\"", "question": "How much is the Singapore Gross for the film that Siu Wing directed?", "context": "CREATE TABLE table_name_93 (singapore_gross VARCHAR, director VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE away = \"broadview hawks\"", "question": "What is the Date with an Away that is broadview hawks?", "context": "CREATE TABLE table_name_5 (date VARCHAR, away VARCHAR)"}, {"answer": "SELECT home FROM table_name_94 WHERE away = \"toronto rebels\"", "question": "What is the Home with an Away that is toronto rebels?", "context": "CREATE TABLE table_name_94 (home VARCHAR, away VARCHAR)"}, {"answer": "SELECT time FROM table_name_17 WHERE score = \"46-82\"", "question": "What is the Time with a Score that is 46-82?", "context": "CREATE TABLE table_name_17 (time VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE away = \"central blues\"", "question": "What is the Date with an Away that is central blues?", "context": "CREATE TABLE table_name_15 (date VARCHAR, away VARCHAR)"}, {"answer": "SELECT time FROM table_name_31 WHERE home = \"high park demons\"", "question": "What is the Time with a Home that is high park demons?", "context": "CREATE TABLE table_name_31 (time VARCHAR, home VARCHAR)"}, {"answer": "SELECT away FROM table_name_70 WHERE score = \"46-82\"", "question": "What is the Away with a Score that is 46-82?", "context": "CREATE TABLE table_name_70 (away VARCHAR, score VARCHAR)"}, {"answer": "SELECT partner FROM table_name_35 WHERE date = \"22 april 2002\"", "question": "Which Partner is on 22 april 2002?", "context": "CREATE TABLE table_name_35 (partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT partner FROM table_name_24 WHERE opponents = \"wayne arthurs sandon stolle\"", "question": "Which Partner has an Opponents of wayne arthurs sandon stolle?", "context": "CREATE TABLE table_name_24 (partner VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE tournament = \"san jose, us (2)\"", "question": "Which Score has a Tournament of san jose, us (2)?", "context": "CREATE TABLE table_name_56 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_60 WHERE score = \"6\u20133, 6\u20134, 6\u20131\"", "question": "Which Opponents has a Score of 6\u20133, 6\u20134, 6\u20131?", "context": "CREATE TABLE table_name_60 (opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_19 WHERE score = \"6\u20134, 6\u20134, 6\u20132\"", "question": "Which Outcome has a Score of 6\u20134, 6\u20134, 6\u20132?", "context": "CREATE TABLE table_name_19 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_89 WHERE score = \"1\u20136, 0\u20136\"", "question": "Which Tournament has a Score of 1\u20136, 0\u20136?", "context": "CREATE TABLE table_name_89 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_73 WHERE time = \"3:00\"", "question": "Who is the opponent of the 3:00 time?", "context": "CREATE TABLE table_name_73 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE partnering = \"nathalie tauziat\"", "question": "What was the score of the game with Nathalie Tauziat as a partner?", "context": "CREATE TABLE table_name_7 (score VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT surface FROM table_name_93 WHERE date = \"september 20, 1993\"", "question": "What type of surface was used for the game played on September 20, 1993?", "context": "CREATE TABLE table_name_93 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE surface = \"grass\"", "question": "What was the score of the game that was played on a grass surface?", "context": "CREATE TABLE table_name_24 (score VARCHAR, surface VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE partnering = \"laura golarsa\"", "question": "What was the date of the game that was played against Laura Golarsa?", "context": "CREATE TABLE table_name_85 (date VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_39 WHERE average = 34.66 AND season > 1", "question": "What is the total rank of the celebrity with a 34.66 average and a season greater than 1?", "context": "CREATE TABLE table_name_39 (rank VARCHAR, average VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_19 WHERE rank > 4 AND celebrity = \"natalia lesz\"", "question": "What is the highest average of celebrity Natalia Lesz, who is ranked greater than 4?", "context": "CREATE TABLE table_name_19 (average INTEGER, rank VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT professional_partner FROM table_name_52 WHERE season < 7 AND average > 34.66 AND rank < 10 AND celebrity = \"ma\u0142gorzata foremniak\"", "question": "Who is the professional partner of celebrity ma\u0142gorzata foremniak with a season less than 7, an average greater than 34.66, and a rank less than 10?", "context": "CREATE TABLE table_name_52 (professional_partner VARCHAR, celebrity VARCHAR, rank VARCHAR, season VARCHAR, average VARCHAR)"}, {"answer": "SELECT main_language_s_ FROM table_name_86 WHERE original_title = \"nynke\"", "question": "What is the primary language used in the film title Nynke?", "context": "CREATE TABLE table_name_86 (main_language_s_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT result FROM table_name_11 WHERE year = \"1964: (37th)\"", "question": "For the film made in 1964: (37th), what was the result?", "context": "CREATE TABLE table_name_11 (result VARCHAR, year VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_18 WHERE original_title = \"monsieur hawarden\"", "question": "What is the nomination title used for the original film, Monsieur Hawarden?", "context": "CREATE TABLE table_name_18 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_98 WHERE original_title = \"zwartboek\"", "question": "What is the nomination title used for the original film, Zwartboek?", "context": "CREATE TABLE table_name_98 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT main_language_s_ FROM table_name_53 WHERE film_title_used_in_nomination = \"black book\"", "question": "What is the primary language used in the film, Black Book?", "context": "CREATE TABLE table_name_53 (main_language_s_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT AVG(agricultural_panel) FROM table_name_53 WHERE labour_panel < 1 AND total < 21 AND national_university_of_ireland > 0", "question": "What is the average agricultural panel value with a Labour panel less than 1, a total value less than 21, and a National University of Ireland value greater than 0?", "context": "CREATE TABLE table_name_53 (agricultural_panel INTEGER, national_university_of_ireland VARCHAR, labour_panel VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(administrative_panel) FROM table_name_56 WHERE agricultural_panel < 1 AND labour_panel < 5", "question": "What is the highest administrative panel value with an agricultural panel less than 1 and a labour panel value less than 5?", "context": "CREATE TABLE table_name_56 (administrative_panel INTEGER, agricultural_panel VARCHAR, labour_panel VARCHAR)"}, {"answer": "SELECT MAX(labour_panel) FROM table_name_43 WHERE cultural_and_educational_panel > 1 AND university_of_dublin > 0 AND total < 60", "question": "What is the highest labour panel value with a cultural and educational panel greater than 1, a University of Dublin value greater than 0, and a total value less than 60?", "context": "CREATE TABLE table_name_43 (labour_panel INTEGER, total VARCHAR, cultural_and_educational_panel VARCHAR, university_of_dublin VARCHAR)"}, {"answer": "SELECT COUNT(university_of_dublin) FROM table_name_45 WHERE labour_panel > 11", "question": "What is the total University of Dublin value with a labour panel greater than 11?", "context": "CREATE TABLE table_name_45 (university_of_dublin VARCHAR, labour_panel INTEGER)"}, {"answer": "SELECT SUM(cultural_and_educational_panel) FROM table_name_87 WHERE administrative_panel = 0 AND agricultural_panel < 0", "question": "What is the sum of the cultural and educational panel value with an administrative panel of 0 and an agricultural panel value less than 0?", "context": "CREATE TABLE table_name_87 (cultural_and_educational_panel INTEGER, administrative_panel VARCHAR, agricultural_panel VARCHAR)"}, {"answer": "SELECT MAX(2012) FROM table_name_69 WHERE 2011 = 81 OFFSET 094", "question": "What is the highest 2012 immigration for a country with an immigration of 81,094 in 2011?", "context": "CREATE TABLE table_name_69 (Id VARCHAR)"}, {"answer": "SELECT gauge FROM table_name_39 WHERE status = \"operational\" AND owner = \"aurizon\" AND locomotive = \"g534\"", "question": "What is the Gauge of Locomotive G534 Owned by Aurizon which has a Status of Operational?", "context": "CREATE TABLE table_name_39 (gauge VARCHAR, locomotive VARCHAR, status VARCHAR, owner VARCHAR)"}, {"answer": "SELECT locomotive FROM table_name_59 WHERE operator = \"southern shorthaul railroad\" AND entered_service = \"november 1984\"", "question": "Which Locomotive Entered Service in November 1984 and has an Operator of Southern Shorthaul Railroad?", "context": "CREATE TABLE table_name_59 (locomotive VARCHAR, operator VARCHAR, entered_service VARCHAR)"}, {"answer": "SELECT serial_no FROM table_name_90 WHERE entered_service = \"november 1984\" AND owner = \"chicago freight car leasing australia\"", "question": "What is the Serial number of the Locomotive that Entered Service in November 1984 and has an Owner of Chicago Freight Car Leasing Australia?", "context": "CREATE TABLE table_name_90 (serial_no VARCHAR, entered_service VARCHAR, owner VARCHAR)"}, {"answer": "SELECT serial_no FROM table_name_26 WHERE entered_service = \"october 1989\"", "question": "What is the Serial Number of the Locomotive that Entered Service October 1989?", "context": "CREATE TABLE table_name_26 (serial_no VARCHAR, entered_service VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_64 WHERE 2008 = \"0.3\" AND member_state = \"european union\"", "question": "What is the 2011 value with a 2008 value of 0.3 and is a member state of the European Union?", "context": "CREATE TABLE table_name_64 (member_state VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_67 WHERE 2010 = \"1.3\" AND 2008 = \"3.6\"", "question": "What is the 2012 value with a 1.3 in 2010 and a 3.6 in 2008?", "context": "CREATE TABLE table_name_67 (Id VARCHAR)"}, {"answer": "SELECT SUM(yellow) FROM table_name_76 WHERE category = \"bugre (indian)\" AND amerindian < 50 OFFSET 00", "question": "What is the sum of Yellow, when Category is Bugre (Indian), and when Amerindian is less than 50,00?", "context": "CREATE TABLE table_name_76 (yellow INTEGER, category VARCHAR, amerindian VARCHAR)"}, {"answer": "SELECT iata FROM table_name_5 WHERE airport = \"hamburg airport\"", "question": "What kind of  IATA has an Airport of hamburg airport?", "context": "CREATE TABLE table_name_5 (iata VARCHAR, airport VARCHAR)"}, {"answer": "SELECT country FROM table_name_83 WHERE iata = \"bal\"", "question": "Which Country that has a IATA of bal?", "context": "CREATE TABLE table_name_83 (country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT country FROM table_name_32 WHERE iata = \"vie\"", "question": "Which Country has a IATA of vie?", "context": "CREATE TABLE table_name_32 (country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE icao = \"ltcd\"", "question": "WHich Country has a ICAO of ltcd?", "context": "CREATE TABLE table_name_46 (country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_63 WHERE iata = \"erz\"", "question": "Which Airport has a IATA of erz?", "context": "CREATE TABLE table_name_63 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_83 WHERE airport = \"berlin sch\u00f6nefeld airport\"", "question": "What kind of IATA that has a Airport of berlin sch\u00f6nefeld airport?", "context": "CREATE TABLE table_name_83 (iata VARCHAR, airport VARCHAR)"}, {"answer": "SELECT lyrics__l____music__m_ FROM table_name_46 WHERE artist = \"cube\"", "question": "Who provided lyrics or music to the artist Cube?", "context": "CREATE TABLE table_name_46 (lyrics__l____music__m_ VARCHAR, artist VARCHAR)"}, {"answer": "SELECT aircraft AS damage FROM table_name_51 WHERE aircraft = \"boeing 707-320b\"", "question": "What was the aircraft damage for the Boeing 707-320B?", "context": "CREATE TABLE table_name_51 (aircraft VARCHAR)"}, {"answer": "SELECT fatalities FROM table_name_71 WHERE aircraft = \"viscount 700\"", "question": "What was the number of fatalities for the Viscount 700?", "context": "CREATE TABLE table_name_71 (fatalities VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT aircraft AS damage FROM table_name_35 WHERE fatalities = \"30/30\"", "question": "What was the aircraft damage for the accident that had fatalities of 30/30?", "context": "CREATE TABLE table_name_35 (aircraft VARCHAR, fatalities VARCHAR)"}, {"answer": "SELECT location FROM table_name_42 WHERE aircraft = \"f-27-600rf\" AND tail_number = \"6o-saz\"", "question": "What was the location that had an accident by the F-27-600RF aircraft with tail number 6O-SAZ?", "context": "CREATE TABLE table_name_42 (location VARCHAR, aircraft VARCHAR, tail_number VARCHAR)"}, {"answer": "SELECT tail_number FROM table_name_86 WHERE fatalities = \"5/30\"", "question": "What was the tail number of the aircraft that had 5/30 fatalities?", "context": "CREATE TABLE table_name_86 (tail_number VARCHAR, fatalities VARCHAR)"}, {"answer": "SELECT location FROM table_name_84 WHERE fatalities = \"50/50\"", "question": "What was the location of the accident that led to 50/50 fatalities?", "context": "CREATE TABLE table_name_84 (location VARCHAR, fatalities VARCHAR)"}, {"answer": "SELECT int_percentage FROM table_name_80 WHERE rlng = \"4\"", "question": "What % has 4 RLng?", "context": "CREATE TABLE table_name_80 (int_percentage VARCHAR, rlng VARCHAR)"}, {"answer": "SELECT team FROM table_name_72 WHERE ravg = \"3.4\"", "question": "What team had a Ravg of 3.4?", "context": "CREATE TABLE table_name_72 (team VARCHAR, ravg VARCHAR)"}, {"answer": "SELECT int_percentage FROM table_name_29 WHERE ravg = \"2.8\"", "question": "What is the int percentage that has Ravg of 2.8?", "context": "CREATE TABLE table_name_29 (int_percentage VARCHAR, ravg VARCHAR)"}, {"answer": "SELECT r1st FROM table_name_49 WHERE ryds = \"36\"", "question": "Who is the R1st that has 36 RYds?", "context": "CREATE TABLE table_name_49 (r1st VARCHAR, ryds VARCHAR)"}, {"answer": "SELECT ravg FROM table_name_87 WHERE year = \"2003\"", "question": "What was the Ravg for 2003?", "context": "CREATE TABLE table_name_87 (ravg VARCHAR, year VARCHAR)"}, {"answer": "SELECT rate FROM table_name_22 WHERE ryds = \"73\"", "question": "What was the rate for 73 RYds?", "context": "CREATE TABLE table_name_22 (rate VARCHAR, ryds VARCHAR)"}, {"answer": "SELECT name FROM table_name_19 WHERE location = \"brazil\" AND unit = \"caturrita formation\"", "question": "What is the name of the non-mammal from brazil of the unit of caturrita formation?", "context": "CREATE TABLE table_name_19 (name VARCHAR, location VARCHAR, unit VARCHAR)"}, {"answer": "SELECT name FROM table_name_4 WHERE authors = \"tatarinov\"", "question": "What is the name of the non-mammal who has tatarinov as the author?", "context": "CREATE TABLE table_name_4 (name VARCHAR, authors VARCHAR)"}, {"answer": "SELECT unit FROM table_name_95 WHERE location = \"greenland\"", "question": "What is the unit of the non-mammal from greenland?", "context": "CREATE TABLE table_name_95 (unit VARCHAR, location VARCHAR)"}, {"answer": "SELECT authors FROM table_name_65 WHERE name = \"malasaurus\"", "question": "Who is the author for the malasaurus?", "context": "CREATE TABLE table_name_65 (authors VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_3 WHERE unit = \"vyazniki assemblage\"", "question": "What is the name of the non mammal of the unit vyazniki assemblage?", "context": "CREATE TABLE table_name_3 (name VARCHAR, unit VARCHAR)"}, {"answer": "SELECT authors FROM table_name_16 WHERE unit = \"vyazniki assemblage\" AND name = \"malasaurus\"", "question": "Who are the authors for the malasaurus of the vyazniki assemblage?", "context": "CREATE TABLE table_name_16 (authors VARCHAR, unit VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_23 WHERE bronze > 0 AND silver = 8 AND total = 19 AND gold < 9", "question": "What is the lowest Rank with more than 0 bronze, 8 silver, and a total of 19, with less than 9 gold?", "context": "CREATE TABLE table_name_23 (rank INTEGER, gold VARCHAR, total VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_28 WHERE silver > 17 AND bronze > 24", "question": "What is the sum for gold when there is more than 17 silver and more than 24 bronze?", "context": "CREATE TABLE table_name_28 (gold INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_19 WHERE rank = 7 AND total > 22", "question": "What is the sum of Bronze when the rank is 7, and the total is more than 22?", "context": "CREATE TABLE table_name_19 (bronze INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_28 WHERE silver = 1 AND gold < 7 AND bronze = 2", "question": "What is the sum of rank when silver is 1, and gold is less than 7, and bronze is 2?", "context": "CREATE TABLE table_name_28 (rank INTEGER, bronze VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT conductor FROM table_name_34 WHERE production = \"the three pintos (die drei pintos)\"", "question": "Who was the Conductor of the Three Pintos (Die Drei Pintos) Production?", "context": "CREATE TABLE table_name_34 (conductor VARCHAR, production VARCHAR)"}, {"answer": "SELECT conductor FROM table_name_22 WHERE director = \"stephen barlow\"", "question": "Who is the Conductor who had Stephen Barlow as Director?", "context": "CREATE TABLE table_name_22 (conductor VARCHAR, director VARCHAR)"}, {"answer": "SELECT composer FROM table_name_3 WHERE director = \"john ramster\"", "question": "Who was Director John Ramster's Composer?", "context": "CREATE TABLE table_name_3 (composer VARCHAR, director VARCHAR)"}, {"answer": "SELECT Giant AS slalom FROM table_name_26 WHERE slalom = \"45\"", "question": "Which Giant Slalom has a Slalom of 45?", "context": "CREATE TABLE table_name_26 (Giant VARCHAR, slalom VARCHAR)"}, {"answer": "SELECT slalom FROM table_name_98 WHERE super_g = \"4\"", "question": "Which Slalom has a Super G of 4?", "context": "CREATE TABLE table_name_98 (slalom VARCHAR, super_g VARCHAR)"}, {"answer": "SELECT champion FROM table_name_55 WHERE tournament_location = \"sentosa golf club\"", "question": "Which champion has sentosa golf club as the tournament location?", "context": "CREATE TABLE table_name_55 (champion VARCHAR, tournament_location VARCHAR)"}, {"answer": "SELECT country FROM table_name_17 WHERE year = 2011", "question": "Which county has 2011 as the year?", "context": "CREATE TABLE table_name_17 (country VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_39 WHERE silver > 0 AND nation = \"soviet union\" AND total > 3", "question": "What is the total sum of bronze medals for the Soviet Union when there are more than 0 silver medals and more than 3 total medals?", "context": "CREATE TABLE table_name_39 (bronze INTEGER, total VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_95 WHERE gold < 3 AND silver = 0 AND bronze > 2", "question": "What is the lowest rank of a nation with fewer than 3 gold medals, more than 2 bronze medals, and 0 silver medals?", "context": "CREATE TABLE table_name_95 (rank INTEGER, bronze VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT contribution FROM table_name_49 WHERE album = \"board up the house\"", "question": "For the album Board Up the House, what is the contribution?", "context": "CREATE TABLE table_name_49 (contribution VARCHAR, album VARCHAR)"}, {"answer": "SELECT band FROM table_name_75 WHERE year > 2011", "question": "What band has a year above 2011?", "context": "CREATE TABLE table_name_75 (band VARCHAR, year INTEGER)"}, {"answer": "SELECT time___et__ FROM table_name_56 WHERE record = \"0\u20132\u20130\"", "question": "What time was the game played that had a record of 0\u20132\u20130?", "context": "CREATE TABLE table_name_56 (time___et__ VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(weight__kg_) FROM table_name_83 WHERE height__cm_ < 175", "question": "What is the average weight of a player who is less than 175 centimeters tall?", "context": "CREATE TABLE table_name_83 (weight__kg_ INTEGER, height__cm_ INTEGER)"}, {"answer": "SELECT english_country_name FROM table_name_59 WHERE english_capital_name = \"ramallah\"", "question": "What is the English name of the country that has Ramallah as its capital?", "context": "CREATE TABLE table_name_59 (english_country_name VARCHAR, english_capital_name VARCHAR)"}, {"answer": "SELECT english_country_name FROM table_name_5 WHERE english_capital_name = \"doha\"", "question": "What is the English name of the country that has Doha as its capital?", "context": "CREATE TABLE table_name_5 (english_country_name VARCHAR, english_capital_name VARCHAR)"}, {"answer": "SELECT arabic_capital_name FROM table_name_7 WHERE english_capital_name = \"n'djamena\"", "question": "What is the name of the capital, in Arabic, that is called n'djamena in English?", "context": "CREATE TABLE table_name_7 (arabic_capital_name VARCHAR, english_capital_name VARCHAR)"}, {"answer": "SELECT arabic_country_name FROM table_name_68 WHERE english_capital_name = \"moroni\"", "question": "What is the name of the country in Arabic that has Moroni as the name of its capital in English?", "context": "CREATE TABLE table_name_68 (arabic_country_name VARCHAR, english_capital_name VARCHAR)"}, {"answer": "SELECT premiere FROM table_name_86 WHERE channel = \"tvb jade\"", "question": "When was the premiere on the TVB Jade Channel?", "context": "CREATE TABLE table_name_86 (premiere VARCHAR, channel VARCHAR)"}, {"answer": "SELECT host FROM table_name_18 WHERE premiere = \"november 10, 2007\"", "question": "Who was the host of the premiere on November 10, 2007?", "context": "CREATE TABLE table_name_18 (host VARCHAR, premiere VARCHAR)"}, {"answer": "SELECT country FROM table_name_65 WHERE premiere = \"july 24, 2010\"", "question": "Which country had a premiere on July 24, 2010?", "context": "CREATE TABLE table_name_65 (country VARCHAR, premiere VARCHAR)"}, {"answer": "SELECT channel FROM table_name_83 WHERE country = \"israel\"", "question": "Which channel comes out of Israel?", "context": "CREATE TABLE table_name_83 (channel VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_31 WHERE rank = \"6\" AND gold < 1", "question": "What is the largest total when the rank is 6 and there's less than 1 gold?", "context": "CREATE TABLE table_name_31 (total INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_16 WHERE total < 3 AND rank = \"5\" AND silver > 1", "question": "What is the largest gold number when the total is less than 3, the rank is 5, and the silver is more than 1?", "context": "CREATE TABLE table_name_16 (gold INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_30 WHERE gold < 0", "question": "What is the total of silver when gold is less than 0?", "context": "CREATE TABLE table_name_30 (silver INTEGER, gold INTEGER)"}, {"answer": "SELECT visitor FROM table_name_82 WHERE leading_scorer = \"milt palacio (15)\"", "question": "Which team was the visitor when Milt Palacio (15) was the leading scorer?", "context": "CREATE TABLE table_name_82 (visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT home FROM table_name_1 WHERE leading_scorer = \"carlos boozer (27)\"", "question": "What is the home of the team with Carlos Boozer (27) as the leading scorer?", "context": "CREATE TABLE table_name_1 (home VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE home = \"cavaliers\" AND visitor = \"warriors\"", "question": "What date was the game played with the Cavaliers at home and the Warriors visiting?", "context": "CREATE TABLE table_name_39 (date VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_40 WHERE weight__kg_ = \"857\"", "question": "What is the sum total of all the years with a bell that weighed 857 kilograms?", "context": "CREATE TABLE table_name_40 (year INTEGER, weight__kg_ VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_name_3 WHERE team_nickname = \"pilots\"", "question": "What is the Enrollment for the Pilots?", "context": "CREATE TABLE table_name_3 (enrollment INTEGER, team_nickname VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_34 WHERE founded = 1891 AND team_nickname = \"coyotes\"", "question": "What is the Enrollment for the Coyotes Founded in 1891?", "context": "CREATE TABLE table_name_34 (enrollment VARCHAR, founded VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT location FROM table_name_13 WHERE team_nickname = \"fighting missionaries\"", "question": "What Location has a Team Nickname called the Fighting Missionaries?", "context": "CREATE TABLE table_name_13 (location VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT primary_conference FROM table_name_60 WHERE team_nickname = \"loggers\"", "question": "The Loggers are part of what Primary Conference?", "context": "CREATE TABLE table_name_60 (primary_conference VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM table_name_6 WHERE institution = \"whitman college\" AND founded > 1859", "question": "What is the Enrollment at Whitman College Founded after 1859?", "context": "CREATE TABLE table_name_6 (enrollment INTEGER, institution VARCHAR, founded VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_96 WHERE opponent = \"virginia\"", "question": "What was the attendance when the opponent was virginia?", "context": "CREATE TABLE table_name_96 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE opponent = \"at south carolina\"", "question": "What was the date when the opponent was at South carolina?", "context": "CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_40 WHERE result = \"l 6-28\"", "question": "What was the highest attendance when the result was L 6-28?", "context": "CREATE TABLE table_name_40 (attendance INTEGER, result VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_62 WHERE game_site = \"ford field\"", "question": "What was the earliest week the Titans played at Ford Field?", "context": "CREATE TABLE table_name_62 (week INTEGER, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE week < 13 AND game_site = \"lp field\" AND opponent = \"houston texans\"", "question": "When did the Titans play the Houston Texans at LP Field before Week 13?", "context": "CREATE TABLE table_name_68 (date VARCHAR, opponent VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MAX(avg_g) FROM table_name_93 WHERE long < 24 AND gp_gs = \"2-0\" AND yards < 7", "question": "What is the highest average for a long less than 24, a GP-GS of 2-0, and less than 7 yards?", "context": "CREATE TABLE table_name_93 (avg_g INTEGER, yards VARCHAR, long VARCHAR, gp_gs VARCHAR)"}, {"answer": "SELECT SUM(long) FROM table_name_47 WHERE yards = 926 AND avg_g < 84.2", "question": "What is the sum for the long that has 926 yards and an avg/g less than 84.2?", "context": "CREATE TABLE table_name_47 (long INTEGER, yards VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT COUNT(avg_g) FROM table_name_72 WHERE long = 50 AND gp_gs = \"3-0\" AND yards > 926", "question": "What is the total number of avg/g with a long of 50, a gp-gs of 3-0, and 926 yards?", "context": "CREATE TABLE table_name_72 (avg_g VARCHAR, yards VARCHAR, long VARCHAR, gp_gs VARCHAR)"}, {"answer": "SELECT motorway FROM table_name_68 WHERE scheduled_completion = \"2013\" AND county = \"brod-posavina\"", "question": "Which motorway is in brod-posavina county and has a scheduled completion in 2013?", "context": "CREATE TABLE table_name_68 (motorway VARCHAR, scheduled_completion VARCHAR, county VARCHAR)"}, {"answer": "SELECT built_by_hm_dockyard FROM table_name_43 WHERE laid_down = \"september 1830\"", "question": "Which built by HM Dockyard has September 1830 as the laid down?", "context": "CREATE TABLE table_name_43 (built_by_hm_dockyard VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT name FROM table_name_96 WHERE laid_down = \"july 1823\" AND built_by_hm_dockyard = \"portsmouth\"", "question": "What is the name that has July 1823 as the Laid down, and portsmouth as the built by hm dockyard?", "context": "CREATE TABLE table_name_96 (name VARCHAR, laid_down VARCHAR, built_by_hm_dockyard VARCHAR)"}, {"answer": "SELECT ordered FROM table_name_87 WHERE name = \"helena\"", "question": "What ordered has helena as the name?", "context": "CREATE TABLE table_name_87 (ordered VARCHAR, name VARCHAR)"}, {"answer": "SELECT ordered FROM table_name_73 WHERE name = \"algerine (2nd of name)\"", "question": "What ordered has algerine (2nd of name) as the name?", "context": "CREATE TABLE table_name_73 (ordered VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_79 WHERE built_by_hm_dockyard = \"pembroke\" AND laid_down = \"may 1825\"", "question": "What name has pembroke as the built by hm dockyard, and may 1825 as the laid down?", "context": "CREATE TABLE table_name_79 (name VARCHAR, built_by_hm_dockyard VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT COUNT(match) FROM table_name_23 WHERE points < 14 AND draw < 0", "question": "How many match values have points under 14 and 0 draws?", "context": "CREATE TABLE table_name_23 (match VARCHAR, points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_5 WHERE match < 10", "question": "What is the sum of losses for teams with under 10 matches?", "context": "CREATE TABLE table_name_5 (lost INTEGER, match INTEGER)"}, {"answer": "SELECT AVG(draw) FROM table_name_47 WHERE match > 10", "question": "What is the average number of draws for teams with more than 10 matches?", "context": "CREATE TABLE table_name_47 (draw INTEGER, match INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_86 WHERE draw > 0 AND lost = 7 AND match > 10", "question": "What is the sum of points for teams with more than 10 matches, more than 0 draws, and 7 losses?", "context": "CREATE TABLE table_name_86 (points INTEGER, match VARCHAR, draw VARCHAR, lost VARCHAR)"}, {"answer": "SELECT season FROM table_name_31 WHERE average = 37.5", "question": "Which season's average was 37.5?", "context": "CREATE TABLE table_name_31 (season VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_13 WHERE celebrity = \"marcin mroczek\" AND season > 4", "question": "How many ranks had marcin mroczek as the celebrity in a season more recent than 4?", "context": "CREATE TABLE table_name_13 (rank VARCHAR, celebrity VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(population_1991) FROM table_name_13 WHERE name = \"baden bei wien\" AND population_2007 > 25 OFFSET 284", "question": "What is the highest population in 1991 in Baden Bei Wien, and a 2007 population larger than 25,284?", "context": "CREATE TABLE table_name_13 (population_1991 INTEGER, name VARCHAR, population_2007 VARCHAR)"}, {"answer": "SELECT director FROM table_name_85 WHERE title = \"\u201csome lapse of time\u201d\"", "question": "What is the Director for the episode titled \u201csome lapse of time\u201d?", "context": "CREATE TABLE table_name_85 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT airdate FROM table_name_30 WHERE adapted_by = \"stanley miller\" AND title = \"\u201cthirteen to centaurus\u201d\"", "question": "What is the Airdate for the episode titled \u201cthirteen to centaurus\u201d Adapted by stanley miller?", "context": "CREATE TABLE table_name_30 (airdate VARCHAR, adapted_by VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(2007) FROM table_name_47 WHERE million_czk = \"operating revenues\"", "question": "What 2007 number when the million CZK shows operating revenues?", "context": "CREATE TABLE table_name_47 (million_czk VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_34 WHERE album = \"live love in london\"", "question": "What is the lowest Year with an Album that is live love in London?", "context": "CREATE TABLE table_name_34 (year INTEGER, album VARCHAR)"}, {"answer": "SELECT us AS Christian FROM table_name_92 WHERE year = 1989", "question": "What is the U.S. Christian with a Year that is 1989?", "context": "CREATE TABLE table_name_92 (us VARCHAR, year VARCHAR)"}, {"answer": "SELECT theme FROM table_name_73 WHERE original_artist = \"fontella bass\"", "question": "What is the Theme when Fontella Bass was the original artist?", "context": "CREATE TABLE table_name_73 (theme VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT week__number FROM table_name_18 WHERE original_artist = \"the beatles\" AND theme = \"the beatles\"", "question": "What is the Week # when the Beatles were the original artist and the theme was The Beatles?", "context": "CREATE TABLE table_name_18 (week__number VARCHAR, original_artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(top_25) FROM table_name_16 WHERE top_10 = 0 AND tournament = \"masters tournament\" AND top_5 > 0", "question": "What is the total number of top-25 in the Masters Tournament, which has 0 top-10 and more than 0 top-5?", "context": "CREATE TABLE table_name_16 (top_25 VARCHAR, top_5 VARCHAR, top_10 VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT SUM(top_25) FROM table_name_84 WHERE tournament = \"u.s. open\" AND cuts_made < 7", "question": "What is the total top-25 of the U.S. Open, which has less than 7 cuts?", "context": "CREATE TABLE table_name_84 (top_25 INTEGER, tournament VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(top_5) FROM table_name_74 WHERE top_10 < 1 AND top_25 < 1", "question": "What is the lowest top-5 of the tournament with less than 1 top-10 and less than 1 top-25?", "context": "CREATE TABLE table_name_74 (top_5 INTEGER, top_10 VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MAX(top_25) FROM table_name_11 WHERE events < 22 AND top_10 > 1", "question": "What is the highest top-25 of the tournament with less than 22 events and more than 1 top-10?", "context": "CREATE TABLE table_name_11 (top_25 INTEGER, events VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT AVG(appearances) FROM table_name_58 WHERE bronze_medals < 0", "question": "What is the average amount of appearances for the Bronze Meals less than 0?", "context": "CREATE TABLE table_name_58 (appearances INTEGER, bronze_medals INTEGER)"}, {"answer": "SELECT COUNT(4 AS th_place) FROM table_name_27 WHERE appearances = 3 AND silver_medals > 0 AND gold_medals < 0", "question": "What is the total number of 4th place that has 3 appearances for 3, and a more than 0 silver medals, and no gold medals?", "context": "CREATE TABLE table_name_27 (gold_medals VARCHAR, appearances VARCHAR, silver_medals VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_54 WHERE hmos = \"27%\" AND pos_plans = \"18%\"", "question": "How many years have HMOs been 27% and POS plans 18%?", "context": "CREATE TABLE table_name_54 (year VARCHAR, hmos VARCHAR, pos_plans VARCHAR)"}, {"answer": "SELECT conventional_plans FROM table_name_55 WHERE pos_plans = \"13%\"", "question": "Which conventional plan has a POS of 13%?", "context": "CREATE TABLE table_name_55 (conventional_plans VARCHAR, pos_plans VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_24 WHERE conventional_plans = \"7%\"", "question": "How many years have a conventional plan of 7%?", "context": "CREATE TABLE table_name_24 (year INTEGER, conventional_plans VARCHAR)"}, {"answer": "SELECT conventional_plans FROM table_name_14 WHERE pos_plans = \"21%\"", "question": "Which conventional plan has a POS plan of 21%?", "context": "CREATE TABLE table_name_14 (conventional_plans VARCHAR, pos_plans VARCHAR)"}, {"answer": "SELECT hmos FROM table_name_96 WHERE conventional_plans = \"3%\" AND year = 2005", "question": "Which HMO has a conventional plan of 3% in 2005?", "context": "CREATE TABLE table_name_96 (hmos VARCHAR, conventional_plans VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(administrative_panel) FROM table_name_7 WHERE agricultural_panel < 11 AND industrial_and_commercial_panel = 3 AND labour_panel < 4", "question": "How many are on the administrative panel with an agricultural panel of fewer than 11 and an industrial and commercial panel of 3, with fewer than 4 on the labor panel?", "context": "CREATE TABLE table_name_7 (administrative_panel INTEGER, labour_panel VARCHAR, agricultural_panel VARCHAR, industrial_and_commercial_panel VARCHAR)"}, {"answer": "SELECT read_by FROM table_name_9 WHERE un__abridged = \"unabridged\" AND author = \"gary paulsen\"", "question": "Who read the unabridged book written by Gary Paulsen?", "context": "CREATE TABLE table_name_9 (read_by VARCHAR, un__abridged VARCHAR, author VARCHAR)"}, {"answer": "SELECT read_by FROM table_name_55 WHERE un__abridged = \"unabridged\" AND author = \"john d. fitzgerald\"", "question": "Who read the unabridged novel written by John D. Fitzgerald?", "context": "CREATE TABLE table_name_55 (read_by VARCHAR, un__abridged VARCHAR, author VARCHAR)"}, {"answer": "SELECT week__number FROM table_name_44 WHERE theme = \"1960s\"", "question": "In which week was the Theme 1960s?", "context": "CREATE TABLE table_name_44 (week__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT song_choice FROM table_name_82 WHERE theme = \"n/a\" AND week__number = \"hollywood\"", "question": "When the week # is listed as Hollywood, and the Theme is N/A, what song is listed?", "context": "CREATE TABLE table_name_82 (song_choice VARCHAR, theme VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT theme FROM table_name_95 WHERE result = \"eliminated\"", "question": "Which Theme has a Result of eliminated?", "context": "CREATE TABLE table_name_95 (theme VARCHAR, result VARCHAR)"}, {"answer": "SELECT song_choice FROM table_name_23 WHERE original_artist = \"bonnie tyler\"", "question": "Which song choice was originally performed by Bonnie Tyler?", "context": "CREATE TABLE table_name_23 (song_choice VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_43 WHERE erp_w = 50 AND frequency_mhz < 103.5", "question": "Which call sign, broadcast at less than 103.5MHz, has an ERP W of 50?", "context": "CREATE TABLE table_name_43 (call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_name_7 WHERE city_of_license = \"albany, new york\"", "question": "What is the frequency of the call sign licensed in Albany, New York?", "context": "CREATE TABLE table_name_7 (frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT chart_peak FROM table_name_64 WHERE recorded = \"2/19/69\"", "question": "Which Chart peak was Recorded on 2/19/69?", "context": "CREATE TABLE table_name_64 (chart_peak VARCHAR, recorded VARCHAR)"}, {"answer": "SELECT chart_peak FROM table_name_30 WHERE time = \"3:11\"", "question": "Which Chart peak has a Time of 3:11?", "context": "CREATE TABLE table_name_30 (chart_peak VARCHAR, time VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_60 WHERE writer_s_ = \"mark james\"", "question": "Which Catalogue has a Writer(s) of mark james?", "context": "CREATE TABLE table_name_60 (catalogue VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT AVG(track) FROM table_name_48 WHERE writer_s_ = \"mac davis\"", "question": "Which Track has a Writer(s) of mac davis?", "context": "CREATE TABLE table_name_48 (track INTEGER, writer_s_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_95 WHERE television_service = \"italia 1\"", "question": "What is the name of the country when the television service is italia 1?", "context": "CREATE TABLE table_name_95 (country VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT hdtv FROM table_name_50 WHERE content = \"general television\"", "question": "What is the HDTV when the content is general television?", "context": "CREATE TABLE table_name_50 (hdtv VARCHAR, content VARCHAR)"}, {"answer": "SELECT country FROM table_name_87 WHERE content = \"general television\" AND television_service = \"rai 1\"", "question": "What is the Country when the Content was general television, and a Television service of rai 1?", "context": "CREATE TABLE table_name_87 (country VARCHAR, content VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT language FROM table_name_83 WHERE television_service = \"sky tg 24 active\"", "question": "What is the Language that has sky tg 24 active as the Television service?", "context": "CREATE TABLE table_name_83 (language VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT location FROM table_name_42 WHERE record = \"1-0\"", "question": "What was the location of the fight when Sara McMann's record was 1-0?", "context": "CREATE TABLE table_name_42 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_96 WHERE time = \"5:00\"", "question": "What was the record when there was a fight that lasted 5:00?", "context": "CREATE TABLE table_name_96 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT method FROM table_name_57 WHERE time = \"5:00\" AND record = \"5-0\"", "question": "What is the method of resolution for the fight that had a time of 5:00 and a record of 5-0?", "context": "CREATE TABLE table_name_57 (method VARCHAR, time VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_49 WHERE result = \"l 23\u20133\"", "question": "What's the average Week with the Result l 23\u20133?", "context": "CREATE TABLE table_name_49 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_12 WHERE week > 4 AND date = \"october 28, 1962\"", "question": "With the date of October 28, 1962, and the week greater than 4, what was the lowest attendance?", "context": "CREATE TABLE table_name_12 (attendance INTEGER, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT belarusian__bgn_pcgn_ FROM table_name_73 WHERE status = \"raion\" AND foundation = \"1514\" AND population__2010_ = \"8100\"", "question": "What Belarusian has a status of Raion a foundation of 1514 and a 2010 population of 8100?", "context": "CREATE TABLE table_name_73 (belarusian__bgn_pcgn_ VARCHAR, population__2010_ VARCHAR, status VARCHAR, foundation VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_57 WHERE order_part_number = \"tmsmt37bqx5ld\"", "question": "Which model number has an order part number of TMSMT37BQX5LD?", "context": "CREATE TABLE table_name_57 (model_number VARCHAR, order_part_number VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_32 WHERE order_part_number = \"tmdml44bkx5ld\"", "question": "Which model number has an order part number of TMDML44BKX5LD?", "context": "CREATE TABLE table_name_32 (model_number VARCHAR, order_part_number VARCHAR)"}, {"answer": "SELECT socket FROM table_name_7 WHERE frequency = \"1600mhz\" AND release_date = \"june 22, 2005\" AND voltage < 1.35", "question": "What is the socket related to the processor released on June 22, 2005, having a frequency of 1600MHz and voltage under 1.35V?", "context": "CREATE TABLE table_name_7 (socket VARCHAR, voltage VARCHAR, frequency VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_64 WHERE team = \"psv - fc barcelona\"", "question": "What is the highest rank for PSV - FC Barcelona?", "context": "CREATE TABLE table_name_64 (rank INTEGER, team VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_89 WHERE name = \"peter schmeichel\"", "question": "What rank was Peter Schmeichel?", "context": "CREATE TABLE table_name_89 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(super_g) FROM table_name_6 WHERE downhill = \"11\" AND overall < 16", "question": "What is the highest Super G that had an 11 Downhill and an overall less than 16?", "context": "CREATE TABLE table_name_6 (super_g INTEGER, downhill VARCHAR, overall VARCHAR)"}, {"answer": "SELECT combined FROM table_name_82 WHERE overall < 34", "question": "What is the combined of the overalls less than 34?", "context": "CREATE TABLE table_name_82 (combined VARCHAR, overall INTEGER)"}, {"answer": "SELECT combined FROM table_name_60 WHERE super_g = 14", "question": "What is the combined of the 14 Super G?", "context": "CREATE TABLE table_name_60 (combined VARCHAR, super_g VARCHAR)"}, {"answer": "SELECT album FROM table_name_21 WHERE label = \"reunion\" AND year = 2006", "question": "What album had the reunion label in 2006?", "context": "CREATE TABLE table_name_21 (album VARCHAR, label VARCHAR, year VARCHAR)"}, {"answer": "SELECT artist FROM table_name_67 WHERE label = \"reunion\" AND credit = \"guitar\" AND album = \"christmas\"", "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 MAX(year) FROM table_name_4 WHERE credit = \"piano\"", "question": "What is the most recent year for an album listed with a piano credited?", "context": "CREATE TABLE table_name_4 (year INTEGER, credit VARCHAR)"}, {"answer": "SELECT volume AS :issue FROM table_name_86 WHERE artist = \"elton john\" AND weeks_on_top = 4", "question": "What is Volume:Issue, when Artist is Elton John, and when Weeks on Top is 4?", "context": "CREATE TABLE table_name_86 (volume VARCHAR, artist VARCHAR, weeks_on_top VARCHAR)"}, {"answer": "SELECT 2008 AS _09 FROM table_name_9 WHERE event = \"autumn gold\"", "question": "What is the value in 2008-09 for the Autumn Gold event?", "context": "CREATE TABLE table_name_9 (event VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_89 WHERE total = 4 AND silver = 1", "question": "What is the total number of bronze medals of the nation with 4 total medals and 1 silver?", "context": "CREATE TABLE table_name_89 (bronze VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_7 WHERE nation = \"cuba\" AND gold < 0", "question": "What is the sum of silver medals of the nation Cuba, which has less than 0 gold?", "context": "CREATE TABLE table_name_7 (silver INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(weight) FROM table_name_80 WHERE pos = \"g\" AND team = \"los angeles d-fenders\"", "question": "What is the total weight of players who play the G position for the Los Angeles D-Fenders?", "context": "CREATE TABLE table_name_80 (weight VARCHAR, pos VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_1 WHERE player = \"bill walker\"", "question": "What team does Bill Walker play for?", "context": "CREATE TABLE table_name_1 (team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(heat) FROM table_name_51 WHERE nationality = \"germany\" AND rank < 9 AND name = \"mike fenner\" AND time < 13.52", "question": "What was the lowest heat for Germany with a rank smaller than 9 for Mike Fenner and a time smaller than 13.52?", "context": "CREATE TABLE table_name_51 (heat INTEGER, time VARCHAR, name VARCHAR, nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(fa_cup) FROM table_name_22 WHERE player = \"mohd faizal desa\" AND total > 0", "question": "What is the lowest FA cup that has mohd faizal desa as the player, with a total greater than 0?", "context": "CREATE TABLE table_name_22 (fa_cup INTEGER, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(fa_cup) FROM table_name_9 WHERE league > 0 AND malaysia_cup > 5", "question": "What is the lowest FA cup that has a league greater than 0, with a Malaysia cup greater than 5?", "context": "CREATE TABLE table_name_9 (fa_cup INTEGER, league VARCHAR, malaysia_cup VARCHAR)"}, {"answer": "SELECT COUNT(malaysia_cup) FROM table_name_5 WHERE total < 0", "question": "How many Malaysia Cups have a total less than 0?", "context": "CREATE TABLE table_name_5 (malaysia_cup VARCHAR, total INTEGER)"}, {"answer": "SELECT AVG(fa_cup) FROM table_name_56 WHERE league = 0 AND player = \"fahmi hatta\" AND malaysia_cup < 0", "question": "What is the average FA cup that has a league of 0, fahmi hatta as the player, with a Malaysia cup less than 0?", "context": "CREATE TABLE table_name_56 (fa_cup INTEGER, malaysia_cup VARCHAR, league VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(malaysia_cup) FROM table_name_2 WHERE total = 0 AND league > 0", "question": "How many Malaysia Cups have 0 for the total with a league greater than 0?", "context": "CREATE TABLE table_name_2 (malaysia_cup VARCHAR, total VARCHAR, league VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_57 WHERE high_points = \"keon clark (19)\"", "question": "What is High Assists, when High Points is Keon Clark (19)?", "context": "CREATE TABLE table_name_57 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_29 WHERE high_assists = \"alvin williams (9)\"", "question": "What is Location Attendance, when High Assists is Alvin Williams (9)?", "context": "CREATE TABLE table_name_29 (location_attendance VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_56 WHERE location_attendance = \"staples center 18,964\"", "question": "What is High Points, when Location Attendance is Staples Center 18,964?", "context": "CREATE TABLE table_name_56 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_73 WHERE team = \"@ phoenix\"", "question": "What is High Points, when Team is @ Phoenix?", "context": "CREATE TABLE table_name_73 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT name FROM table_name_6 WHERE street_address = \"100 w. pender st.\"", "question": "What name has 100 w. pender st. as the address?", "context": "CREATE TABLE table_name_6 (name VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT COUNT(floors) FROM table_name_1 WHERE street_address = \"207 w. hastings st.\"", "question": "How many floors have 207 w. hastings st. as the address?", "context": "CREATE TABLE table_name_1 (floors VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT height_m___ft FROM table_name_64 WHERE street_address = \"207 w. hastings st.\"", "question": "What is the height m/ft where 207 w. hastings st. is the address?", "context": "CREATE TABLE table_name_64 (height_m___ft VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT completed FROM table_name_58 WHERE list_entry_number > 1356460", "question": "What is the completed list entry number more than 1356460?", "context": "CREATE TABLE table_name_58 (completed VARCHAR, list_entry_number INTEGER)"}, {"answer": "SELECT type FROM table_name_64 WHERE list_entry_number > 1356436 AND name = \"albion congregational church\"", "question": "Which type has a list entry number more than 1356436, named Albion Congregational Church?", "context": "CREATE TABLE table_name_64 (type VARCHAR, list_entry_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT list_entry_number FROM table_name_13 WHERE name = \"fairfield moravian church\"", "question": "What is the entry number on the list for Fairfield Moravian Church?", "context": "CREATE TABLE table_name_13 (list_entry_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(average_attendance) FROM table_name_12 WHERE _number_of_home_games = 9", "question": "What was the Average Attendance during the Year in which there were 9 Home Games?", "context": "CREATE TABLE table_name_12 (average_attendance INTEGER, _number_of_home_games VARCHAR)"}, {"answer": "SELECT MAX(_number_of_home_games) FROM table_name_41 WHERE year < 2012 AND canada___usa_rank = \"52nd\" AND average_attendance < 992", "question": "Before 2012, what was the greatest # of Home Games with a Canada - USA Rank of 52nd, and an Average Attendance less than 992?", "context": "CREATE TABLE table_name_41 (_number_of_home_games INTEGER, average_attendance VARCHAR, year VARCHAR, canada___usa_rank VARCHAR)"}, {"answer": "SELECT league AS Rank FROM table_name_54 WHERE year > 2011 AND canada___usa_rank = \"46th\"", "question": "After the year 2011, when the Canada - USA Rank was 46th, what was the League Rank?", "context": "CREATE TABLE table_name_54 (league VARCHAR, year VARCHAR, canada___usa_rank VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_43 WHERE hdtv = \"no\" AND language = \"italian\" AND television_service = \"cartello promozionale sky hd\"", "question": "What is Package/Option, when HDTV is no, when Language is Italian, and when Television service is cartello promozionale sky hd?", "context": "CREATE TABLE table_name_43 (package_option VARCHAR, television_service VARCHAR, hdtv VARCHAR, language VARCHAR)"}, {"answer": "SELECT country FROM table_name_29 WHERE hdtv = \"yes\" AND content = \"cinema\"", "question": "What is Country, when HDTV is yes, and when Content is cinema?", "context": "CREATE TABLE table_name_29 (country VARCHAR, hdtv VARCHAR, content VARCHAR)"}, {"answer": "SELECT hdtv FROM table_name_95 WHERE television_service = \"cartello promozionale sky hd\"", "question": "What is HDTV, when Television service is cartello promozionale sky hd?", "context": "CREATE TABLE table_name_95 (hdtv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT content FROM table_name_6 WHERE package_option = \"sky cinema\" AND language = \"italian originale\"", "question": "What is Content, when Package/Option is sky cinema, and when Language is italian originale?", "context": "CREATE TABLE table_name_6 (content VARCHAR, package_option VARCHAR, language VARCHAR)"}, {"answer": "SELECT venue FROM table_name_55 WHERE attendance > 6 OFFSET 938", "question": "What is the Venue with an Attendance that is larger than 6,938?", "context": "CREATE TABLE table_name_55 (venue VARCHAR, attendance INTEGER)"}, {"answer": "SELECT date FROM table_name_51 WHERE opponent = \"hearts\"", "question": "What is the Date with an Opponent that is hearts?", "context": "CREATE TABLE table_name_51 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_45 WHERE venue = \"n\"", "question": "What is the Result with a Venue that is n?", "context": "CREATE TABLE table_name_45 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT coat_of_cash_wearing_celebrity FROM table_name_81 WHERE episode_number = 6", "question": "Who was the Coat of Cash Wearing Celebrity in Episode 6?", "context": "CREATE TABLE table_name_81 (coat_of_cash_wearing_celebrity VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT air_date FROM table_name_33 WHERE episode_number = 5", "question": "What was the air date of episode 5?", "context": "CREATE TABLE table_name_33 (air_date VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT MAX(races) FROM table_name_5 WHERE podiums < 6 AND series = \"formula renault 2.0 eurocup\" AND wins > 0", "question": "What is the largest number of races when there are less than 6 podiums, the series is the formula renault 2.0 eurocup, and there are more than 0 wins?", "context": "CREATE TABLE table_name_5 (races INTEGER, wins VARCHAR, podiums VARCHAR, series VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_22 WHERE score_in_the_final = \"1\u20136, 6\u20133, 2\u20136\"", "question": "Who were the Opponents in the final in the match with a Score in the final of 1\u20136, 6\u20133, 2\u20136?", "context": "CREATE TABLE table_name_22 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_77 WHERE date = 1984 AND score_in_the_final = \"7\u20136, 6\u20131\"", "question": "What Opponents in the final had a match in 1984 with a Score in the final of 7\u20136, 6\u20131?", "context": "CREATE TABLE table_name_77 (opponents_in_the_final VARCHAR, date VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_93 WHERE nominee = \"outstanding musical\"", "question": "How many years were they nominated for outstanding musical?", "context": "CREATE TABLE table_name_93 (year VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT location FROM table_name_24 WHERE opponent = \"arras paul arras\"", "question": "Where was the location for Arras Paul Arras?", "context": "CREATE TABLE table_name_24 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT royal_house FROM table_name_88 WHERE name = \"huai\"", "question": "Which royal house has the name huai?", "context": "CREATE TABLE table_name_88 (royal_house VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_52 WHERE title = \"marquis\"", "question": "Who has the title of marquis?", "context": "CREATE TABLE table_name_52 (name VARCHAR, title VARCHAR)"}, {"answer": "SELECT royal_house FROM table_name_98 WHERE state = \"chu\"", "question": "Which royal house is in the state of chu?", "context": "CREATE TABLE table_name_98 (royal_house VARCHAR, state VARCHAR)"}, {"answer": "SELECT state FROM table_name_10 WHERE title = \"king\" AND name = \"xiang\"", "question": "Which state has a king named xiang?", "context": "CREATE TABLE table_name_10 (state VARCHAR, title VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_99 WHERE date = \"november 5, 1978\"", "question": "What's the most recent week for the day of November 5, 1978?", "context": "CREATE TABLE table_name_99 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_9 WHERE date = \"november 12, 1978\"", "question": "What's the mean week number for November 12, 1978?", "context": "CREATE TABLE table_name_9 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_88 WHERE attendance = 63 OFFSET 263", "question": "What's the mean week number when attendance was 63,263?", "context": "CREATE TABLE table_name_88 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT COUNT(floors) FROM table_name_58 WHERE year < 2008 AND name = \"guinness tower\"", "question": "What is the number of floors that have years under 2008 and were named Guinness Tower?", "context": "CREATE TABLE table_name_58 (floors VARCHAR, year VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(year_opened) FROM table_name_75 WHERE material = \"steel\" AND span_feet = 1476", "question": "What is the sum of Year opened when steel was the material with a Span feet of 1476?", "context": "CREATE TABLE table_name_75 (year_opened INTEGER, material VARCHAR, span_feet VARCHAR)"}, {"answer": "SELECT SUM(year_opened) FROM table_name_13 WHERE span_feet > 1247 AND span_metres = 384", "question": "What is the sum of Year opened when the span feet is more than 1247, and the spam metres is 384?", "context": "CREATE TABLE table_name_13 (year_opened INTEGER, span_feet VARCHAR, span_metres VARCHAR)"}, {"answer": "SELECT AVG(sio_2) FROM table_name_42 WHERE na_2_o = 7.53 AND al_2_o_3 < 2.13", "question": "What is average SiO 2, when Na 2 O is 7.53, and when Al 2 O 3 is less than 2.13?", "context": "CREATE TABLE table_name_42 (sio_2 INTEGER, na_2_o VARCHAR, al_2_o_3 VARCHAR)"}, {"answer": "SELECT MAX(k_2_o) FROM table_name_40 WHERE na_2_o > 1.87 AND fe_2_o_3 > 0.07 AND objects = \"ritual disk\" AND al_2_o_3 < 0.62", "question": "What is the highest K 2 O, when Na 2 O is greater than 1.87, when Fe 2 O 3 is greater than 0.07, when Objects is Ritual Disk, and when Al 2 O 3 is less than 0.62?", "context": "CREATE TABLE table_name_40 (k_2_o INTEGER, al_2_o_3 VARCHAR, objects VARCHAR, na_2_o VARCHAR, fe_2_o_3 VARCHAR)"}, {"answer": "SELECT MAX(sio_2) FROM table_name_50 WHERE k_2_o > 0.16 AND fe_2_o_3 > 0.16 AND na_2_o < 7.53", "question": "What is the highest SiO 2, when K 2 O is greater than 0.16, when Fe 2 O 3 is greater than 0.16, and when Na 2 O is less than 7.53?", "context": "CREATE TABLE table_name_50 (sio_2 INTEGER, na_2_o VARCHAR, k_2_o VARCHAR, fe_2_o_3 VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_37 WHERE team = \"aberdeen\"", "question": "What is Aberdeen team's date of vacancy?", "context": "CREATE TABLE table_name_37 (date_of_vacancy VARCHAR, team VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_57 WHERE team = \"motherwell\"", "question": "What is Motherwell Team's manner of departure?", "context": "CREATE TABLE table_name_57 (manner_of_departure VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_2 WHERE manner_of_departure = \"resigned\" AND replaced_by = \"sandy clark\"", "question": "What is the date of appointment for the team with a resigned manner of departure and replaced by Sandy Clark?", "context": "CREATE TABLE table_name_2 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_47 WHERE replaced_by = \"dick advocaat\"", "question": "What manner of departure was Dick Advocaat replaced by?", "context": "CREATE TABLE table_name_47 (manner_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT lost FROM table_name_30 WHERE against > 22 AND points = 9", "question": "Which amount of lost had an against of more than 22 and 9 points?", "context": "CREATE TABLE table_name_30 (lost VARCHAR, against VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_93 WHERE played < 12", "question": "What is the total amount of points when the played number was less than 12?", "context": "CREATE TABLE table_name_93 (points INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(points) FROM table_name_69 WHERE difference = \"12\"", "question": "What is the largest points number where the difference is 12?", "context": "CREATE TABLE table_name_69 (points INTEGER, difference VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_40 WHERE lost = 3 AND played > 12", "question": "What is the total number of points where there were 3 losses and a played number bigger than 12?", "context": "CREATE TABLE table_name_40 (points INTEGER, lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_94 WHERE runner_s__up = \"garth mulroy\"", "question": "What was the winning score for the tournament where Garth Mulroy was the runner-up?", "context": "CREATE TABLE table_name_94 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_34 WHERE margin_of_victory = \"6 strokes\"", "question": "Which tournament had a margin of victory of 6 strokes?", "context": "CREATE TABLE table_name_34 (tournament VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_21 WHERE date = \"16 jan 2011\"", "question": "For the tournament played on 16 Jan 2011, what was the winning score?", "context": "CREATE TABLE table_name_21 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_58 WHERE margin_of_victory = \"2 strokes\"", "question": "For the tournament ending with a margin of victory of 2 strokes, who was the runner(s)-up?", "context": "CREATE TABLE table_name_58 (runner_s__up VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_98 WHERE margin_of_victory = \"1 stroke\" AND runner_s__up = \"garth mulroy\"", "question": "What was the winning score for the tournament where Garth Mulroy was the runner-up, and the margin of victory was 1 stroke?", "context": "CREATE TABLE table_name_98 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_90 WHERE margin_of_victory = \"6 strokes\"", "question": "For the tournament ending with a margin of victory of 6 strokes, what was the winning score?", "context": "CREATE TABLE table_name_90 (winning_score VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_54 WHERE team = \"aa s\u00e3o bento\" AND points > 1", "question": "How many Drawns have a Team of aa s\u00e3o bento and Points larger than 1?", "context": "CREATE TABLE table_name_54 (drawn INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_46 WHERE against < 20 AND points = 15", "question": "What is the Drawn has an Against smaller than 20 and Points of 15?", "context": "CREATE TABLE table_name_46 (drawn VARCHAR, against VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_86 WHERE drawn < 1 AND lost < 5", "question": "How many Against has a Drawn smaller than 1, and a Lost smaller than 5?", "context": "CREATE TABLE table_name_86 (against INTEGER, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_37 WHERE drawn = 2 AND played > 10", "question": "what is the average Against has Drawn of 2, and a Played larger than 10?", "context": "CREATE TABLE table_name_37 (against INTEGER, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_36 WHERE name = \"johan cruyff\" AND rank < 3", "question": "How many goals were there for Johan Cruyff when the rank's less than 3?", "context": "CREATE TABLE table_name_36 (goals INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_73 WHERE lost = 3 AND points < 30", "question": "What is the highest against when the lost is 3 with less than 30 points?", "context": "CREATE TABLE table_name_73 (against INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_9 WHERE against = 51 AND drawn > 1", "question": "What is the average Played when the against is 51, and the drawn is more than 1?", "context": "CREATE TABLE table_name_9 (played INTEGER, against VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT result FROM table_name_86 WHERE opponent = \"clemson\"", "question": "What is the result against Clemson?", "context": "CREATE TABLE table_name_86 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_21 WHERE rank = 3", "question": "What is the number of Games for the player in Rank 3?", "context": "CREATE TABLE table_name_21 (games INTEGER, rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_59 WHERE name = \"dejuan collins\" AND assists > 69", "question": "With more than 69 Assists, what is Dejuan Collins' Rank?", "context": "CREATE TABLE table_name_59 (rank VARCHAR, name VARCHAR, assists VARCHAR)"}, {"answer": "SELECT SUM(assists) FROM table_name_29 WHERE games = 13 AND rank < 3", "question": "How many Assists for the Player with 13 Games and a Rank less than 3?", "context": "CREATE TABLE table_name_29 (assists INTEGER, games VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(uncommitted) FROM table_name_16 WHERE total > 16 AND hillary_clinton = 2", "question": "What is the lowest number of uncommitted superdelegates for a state with more than 16 total and 2 for Hillary Clinton?", "context": "CREATE TABLE table_name_16 (uncommitted INTEGER, total VARCHAR, hillary_clinton VARCHAR)"}, {"answer": "SELECT japanese FROM table_name_15 WHERE prefecture = \"ibaraki\" AND name = \"tsukuba\"", "question": "What Japanese prefecture has Ibaraki, Tsukuba?", "context": "CREATE TABLE table_name_15 (japanese VARCHAR, prefecture VARCHAR, name VARCHAR)"}, {"answer": "SELECT region FROM table_name_71 WHERE japanese = \"\u516b\u5c3e\"", "question": "What region has the symbol \u516b\u5c3e?", "context": "CREATE TABLE table_name_71 (region VARCHAR, japanese VARCHAR)"}, {"answer": "SELECT venue FROM table_name_80 WHERE competition = \"euro 2012 qualifier\"", "question": "Which venue held the Euro 2012 Qualifier?", "context": "CREATE TABLE table_name_80 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT year FROM table_name_96 WHERE number > 34", "question": "What is the Year with a Number that is larger than 34?", "context": "CREATE TABLE table_name_96 (year VARCHAR, number INTEGER)"}, {"answer": "SELECT date FROM table_name_49 WHERE margin_of_victory = \"4 strokes\"", "question": "What is the date of the 4 strokes margin of victory?", "context": "CREATE TABLE table_name_49 (date VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE margin_of_victory = \"4 strokes\"", "question": "What is the date of the 4 strokes margin of victory?", "context": "CREATE TABLE table_name_6 (date VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT elite_eight FROM table_name_89 WHERE sweet_sixteen = \"1\" AND win__percentage = \".875\"", "question": "What Elite Eight had a Sweet Sixteen of 1 and a win % of .875?", "context": "CREATE TABLE table_name_89 (elite_eight VARCHAR, sweet_sixteen VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT round_of_32 FROM table_name_31 WHERE _number_of_bids < 2", "question": "What Round 32 had a # of bids smaller than 2?", "context": "CREATE TABLE table_name_31 (round_of_32 VARCHAR, _number_of_bids INTEGER)"}, {"answer": "SELECT AVG(year) FROM table_name_19 WHERE actor = \"idris elba\"", "question": "What is the average year that Idris Elba was nominated for or won an award?", "context": "CREATE TABLE table_name_19 (year INTEGER, actor VARCHAR)"}, {"answer": "SELECT actor FROM table_name_94 WHERE year < 1971", "question": "What actor was nominated for or won an award before 1971?", "context": "CREATE TABLE table_name_94 (actor VARCHAR, year INTEGER)"}, {"answer": "SELECT AVG(vertical_relief__ft_) FROM table_name_94 WHERE rank > 40 AND location = \"va0573\"", "question": "What is the mean vertical relief in feet when the rank is more than 40 and the location is va0573?", "context": "CREATE TABLE table_name_94 (vertical_relief__ft_ INTEGER, rank VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(vertical_relief__ft_) FROM table_name_87 WHERE peak_name = \"tower near mead wood road entrance\" AND elevation__ft_ > 1 OFFSET 410", "question": "What is the mean vertical relief in feet when the Peak Name is Tower near mead wood road entrance and the elevation in feet is more than 1,410?", "context": "CREATE TABLE table_name_87 (vertical_relief__ft_ INTEGER, peak_name VARCHAR, elevation__ft_ VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_51 WHERE peak_name = \"red shirt table\"", "question": "What is the total number of ranks when the Peak Name is Red Shirt Table?", "context": "CREATE TABLE table_name_51 (rank INTEGER, peak_name VARCHAR)"}, {"answer": "SELECT original_artist FROM table_name_39 WHERE week__number = \"top 9\"", "question": "What is the Original artist when the week number is top 9?", "context": "CREATE TABLE table_name_39 (original_artist VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT song_choice FROM table_name_63 WHERE original_artist = \"the beatles\" AND order__number = \"4\"", "question": "What is the Song choice when The Beatles were the original artist, with an order # of 4?", "context": "CREATE TABLE table_name_63 (song_choice VARCHAR, original_artist VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT song_choice FROM table_name_99 WHERE original_artist = \"elaine paige\"", "question": "What is the Song choice when Elaine Paige was the Original artist?", "context": "CREATE TABLE table_name_99 (song_choice VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT original_artist FROM table_name_15 WHERE week__number = \"top 16 (8 men)\"", "question": "What is the name of the Original artist when the week # is top 16 (8 men)?", "context": "CREATE TABLE table_name_15 (original_artist VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT result FROM table_name_58 WHERE order__number = \"4\" AND week__number = \"top 12\"", "question": "What is the Result when the order is # 4, and the week # is top 12?", "context": "CREATE TABLE table_name_58 (result VARCHAR, order__number VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE home_team = \"notts county\"", "question": "What score has notts county as the home team?", "context": "CREATE TABLE table_name_23 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_66 WHERE name = \"rodney harrison p\" AND pick < 145", "question": "Average round for rodney harrison p before 145?", "context": "CREATE TABLE table_name_66 (round INTEGER, name VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_51 WHERE round = 5 AND school_college = \"western illinois\"", "question": "Highest round 5 pick from western illinois?", "context": "CREATE TABLE table_name_51 (pick INTEGER, round VARCHAR, school_college VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_36 WHERE 2010 = \"grand slam tournaments\"", "question": "What is the 2011 when the 2010 shows grand slam tournaments?", "context": "CREATE TABLE table_name_36 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_58 WHERE 2007 = \"a\" AND 2012 = \"sf\"", "question": "What is the 2011 when the 2007 is a, and the 2012 is sf?", "context": "CREATE TABLE table_name_58 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_56 WHERE 2010 = \"8\u20134\"", "question": "What is the 2011 when the 2010 is 8\u20134?", "context": "CREATE TABLE table_name_56 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_70 WHERE 2010 = \"3r\"", "question": "What is the 2007 when the 2010 is 3r?", "context": "CREATE TABLE table_name_70 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_87 WHERE 2009 = \"1r\" AND 2008 = \"1r\"", "question": "What is the 2010 when the 2009 is 1r, and a 2008 is 1r?", "context": "CREATE TABLE table_name_87 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_63 WHERE tournament = \"grand slam tournaments\"", "question": "What is the 2011 when the Tournament was the grand slam tournaments?", "context": "CREATE TABLE table_name_63 (tournament VARCHAR)"}, {"answer": "SELECT MIN(height__cm_) FROM table_name_12 WHERE position = \"d\" AND name = \"jeff hymanson\"", "question": "Which Height (cm) has a Position of d, and a Name of jeff hymanson?", "context": "CREATE TABLE table_name_12 (height__cm_ INTEGER, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_42 WHERE height__cm_ = 175 AND birthplace = \"detroit, michigan\"", "question": "Which Name has a Height (cm) of 175 and a Birthplace of detroit, michigan", "context": "CREATE TABLE table_name_42 (name VARCHAR, height__cm_ VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT position FROM table_name_17 WHERE name = \"john taft\"", "question": "Which Position has a Name of john taft?", "context": "CREATE TABLE table_name_17 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_68 WHERE score = 67 - 68 = 135", "question": "What was the To par when the Score was 67-68=135?", "context": "CREATE TABLE table_name_68 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_89 WHERE score = 68 - 71 = 139 AND player = \"k. j. choi\"", "question": "From what Country is player K. J. Choi with a Score of 68-71=139?", "context": "CREATE TABLE table_name_89 (country VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_72 WHERE score = 66 - 69 = 135", "question": "What Country Scored 66-69=135?", "context": "CREATE TABLE table_name_72 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(cargo_traffic) FROM table_name_82 WHERE airport = \"barcelona airport\" AND aircraft_movements < 290 OFFSET 004", "question": "Can you tell me the highest Cargo traffic that has the Airport of barcelona airport, and the Aircraft movements smaller than 290,004?", "context": "CREATE TABLE table_name_82 (cargo_traffic INTEGER, airport VARCHAR, aircraft_movements VARCHAR)"}, {"answer": "SELECT place FROM table_name_22 WHERE hole > 9 AND country = \"australia\"", "question": "What place is in Australia with 9 or more holes?", "context": "CREATE TABLE table_name_22 (place VARCHAR, hole VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(hole) FROM table_name_79 WHERE player = \"vijay singh\"", "question": "How many holes does Player Vijay Singh have?", "context": "CREATE TABLE table_name_79 (hole VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(hole) FROM table_name_61 WHERE player = \"vijay singh\"", "question": "How many holes does Player Vijay Singh have?", "context": "CREATE TABLE table_name_61 (hole VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(frequency_mhz) FROM table_name_95 WHERE call_sign = \"w233ag\"", "question": "On what frequency does W233AG broadcast?", "context": "CREATE TABLE table_name_95 (frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT position FROM table_name_23 WHERE 2012 = \"garion weller\"", "question": "What position did Garion Weller hold in 2012?", "context": "CREATE TABLE table_name_23 (position VARCHAR)"}, {"answer": "SELECT 2014 FROM table_name_23 WHERE 2013 = \"jarrah rubinstein\"", "question": "Who held the same position in 2014 that Jarrah Rubinstein held in 2013?", "context": "CREATE TABLE table_name_23 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_73 WHERE position = \"male sports rep\"", "question": "Who held the Male Sports Rep position in 2011?", "context": "CREATE TABLE table_name_73 (position VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_65 WHERE position = \"communications rep\"", "question": "Who held the Communications Rep position in 2011?", "context": "CREATE TABLE table_name_65 (position VARCHAR)"}, {"answer": "SELECT 2014 FROM table_name_82 WHERE 2012 = \"garion weller\"", "question": "Who held the same position in 2014 that Garion Weller held in 2014?", "context": "CREATE TABLE table_name_82 (Id VARCHAR)"}, {"answer": "SELECT 2014 FROM table_name_49 WHERE 2013 = \"danielle button\"", "question": "Who held the same position in 2014 that Danielle Button held in 2013?", "context": "CREATE TABLE table_name_49 (Id VARCHAR)"}, {"answer": "SELECT location FROM table_name_31 WHERE round < 2 AND opponent = \"mostapha al-turk\"", "question": "At what Location was the match against Opponent of Mostapha Al-Turk lasting less than 2 Rounds?", "context": "CREATE TABLE table_name_31 (location VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_23 WHERE method = \"tko (punches)\"", "question": "At what Location was the match Method TKO (punches)?", "context": "CREATE TABLE table_name_23 (location VARCHAR, method VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_67 WHERE result = \"bye\"", "question": "Who was the opponent of the Bye result?", "context": "CREATE TABLE table_name_67 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_5 WHERE week = 10", "question": "Who is the opponent in week 10?", "context": "CREATE TABLE table_name_5 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_53 WHERE opponent = \"new england patriots\"", "question": "How many people attended the game played with the New England Patriots as opponents?", "context": "CREATE TABLE table_name_53 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(place__posici\u00f3n_) FROM table_name_41 WHERE points__pts_ > 24 AND played__pj_ > 14", "question": "What was the top place with over 24 points and more than 14 played?", "context": "CREATE TABLE table_name_41 (place__posici\u00f3n_ INTEGER, points__pts_ VARCHAR, played__pj_ VARCHAR)"}, {"answer": "SELECT SUM(points__pts_) FROM table_name_37 WHERE place__posici\u00f3n_ > 8", "question": "What is the sum of all points for places above 8?", "context": "CREATE TABLE table_name_37 (points__pts_ INTEGER, place__posici\u00f3n_ INTEGER)"}, {"answer": "SELECT AVG(played__pj_) FROM table_name_18 WHERE place__posici\u00f3n_ = 2 AND lost__pp_ > 4", "question": "What is the average number played for place 2 and more than 4 lost?", "context": "CREATE TABLE table_name_18 (played__pj_ INTEGER, place__posici\u00f3n_ VARCHAR, lost__pp_ VARCHAR)"}, {"answer": "SELECT MAX(points__pts_) FROM table_name_53 WHERE team__equipo_ = \"orion\" AND lost__pp_ > 4", "question": "What is the largest number of points for Orion with more than 4 losses?", "context": "CREATE TABLE table_name_53 (points__pts_ INTEGER, team__equipo_ VARCHAR, lost__pp_ VARCHAR)"}, {"answer": "SELECT time FROM table_name_91 WHERE set_2 = \"25\u201321\" AND date = \"29 may\"", "question": "What is the Time when the Set 2 is 25\u201321, on 29 may?", "context": "CREATE TABLE table_name_91 (time VARCHAR, set_2 VARCHAR, date VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_70 WHERE set_2 = \"21\u201325\" AND set_1 = \"25\u201321\"", "question": "What is the Set 3 when the Set 2 is 21\u201325, and a Set 1 is 25\u201321?", "context": "CREATE TABLE table_name_70 (set_3 VARCHAR, set_2 VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT total FROM table_name_58 WHERE set_3 = \"22\u201325\" AND set_2 = \"25\u201320\"", "question": "What is the Total when the Set 3 is 22\u201325, and a Set 2 is 25\u201320?", "context": "CREATE TABLE table_name_58 (total VARCHAR, set_3 VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_79 WHERE date = \"30 may\" AND set_1 = \"20\u201325\"", "question": "What is the Set 3 on 30 may, and a Set 1 is 20\u201325?", "context": "CREATE TABLE table_name_79 (set_3 VARCHAR, date VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE set_1 = \"25\u201321\" AND score = \"3\u20130\" AND time = \"11:00\"", "question": "What is the Date when the Set 1 is 25\u201321, and the Score is 3\u20130, and the Time is 11:00?", "context": "CREATE TABLE table_name_51 (date VARCHAR, time VARCHAR, set_1 VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE set_2 = \"13\u201325\"", "question": "What is the Date when the Set 2 is 13\u201325?", "context": "CREATE TABLE table_name_32 (date VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_36 WHERE venue = \"old trafford\"", "question": "What is the Away captain with a Venue that is old trafford?", "context": "CREATE TABLE table_name_36 (away_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE venue = \"oval\"", "question": "What is the Date with a Venue that is oval?", "context": "CREATE TABLE table_name_36 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_85 WHERE team = \"adet\" AND draw < 6", "question": "What is the Highest Points for Team Adet where the Draw is less than 6?", "context": "CREATE TABLE table_name_85 (points INTEGER, team VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_56 WHERE place = 10 AND points < 17", "question": "What is the highest games Played where the Place is 10 and Points are less than 17?", "context": "CREATE TABLE table_name_56 (played INTEGER, place VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_28 WHERE points = 25 AND played > 18", "question": "What is the average for games Lost where the Points are 25 and games Played are more than 18?", "context": "CREATE TABLE table_name_28 (lost INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_61 WHERE played > 18", "question": "What is the average for Draw games where Played games is more than 18?", "context": "CREATE TABLE table_name_61 (draw INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(byes) FROM table_name_3 WHERE losses = 4 AND ballarat_fl = \"melton\" AND against < 1819", "question": "What is the largest byes with lost games of 4 and Ballarat FL of Melton and the against less than 1819?", "context": "CREATE TABLE table_name_3 (byes INTEGER, against VARCHAR, losses VARCHAR, ballarat_fl VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_61 WHERE ballarat_fl = \"east point\" AND against > 1000", "question": "How many total wins does Ballarat FL of East point have when the against is greater than 1000?", "context": "CREATE TABLE table_name_61 (wins VARCHAR, ballarat_fl VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_77 WHERE against = 2195 AND draws > 0", "question": "How many total losses does the team have with an against of 2195 and the draws were greater than 0?", "context": "CREATE TABLE table_name_77 (losses VARCHAR, against VARCHAR, draws VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_96 WHERE 2003 = \"career statistics\"", "question": "What is the value in 2009 corresponding to Career Statistics in 2003?", "context": "CREATE TABLE table_name_96 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_70 WHERE career_w_l = \"career statistics\"", "question": "What is the value in 2006 when Career Statistics is in Career W-L?", "context": "CREATE TABLE table_name_70 (career_w_l VARCHAR)"}, {"answer": "SELECT career_w_l FROM table_name_83 WHERE tournament = \"grand slam tournaments\"", "question": "What is the value for Career W-L for the Grand Slam Tournaments?", "context": "CREATE TABLE table_name_83 (career_w_l VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_77 WHERE tournament = \"year\"", "question": "What is the value in 2008 when the value for Tournament is year?", "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_72 WHERE 2009 = \"0\" AND tournament = \"runner-ups\"", "question": "What is the value in 2006 when the value for 2009 is 0 with runner-ups for tournament?", "context": "CREATE TABLE table_name_72 (tournament VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_98 WHERE 2009 = \"a\" AND 2000 = \"a\"", "question": "What is the value for 2005 when A is 2009 and 2000?", "context": "CREATE TABLE table_name_98 (Id VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_76 WHERE partner = \"gast\u00f3n etlis\"", "question": "What Opponent in the final had a Partner of Gast\u00f3n Etlis?", "context": "CREATE TABLE table_name_76 (opponent_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_46 WHERE surface = \"clay\" AND partner = \"brett steven\"", "question": "What is the earliest Date David Adams played on a Clay Surface with Brett Steven as Partner?", "context": "CREATE TABLE table_name_46 (date INTEGER, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_53 WHERE surface = \"clay\" AND score_in_the_final = \"6\u20133, 6\u20137 (5\u20137) , 7\u20136 (7\u20135)\"", "question": "Who was David Adams partner on the match played on Clay Surface with a Score in the final of 6\u20133, 6\u20137 (5\u20137) , 7\u20136 (7\u20135)?", "context": "CREATE TABLE table_name_53 (partner VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_59 WHERE partner = \"alicja rosolska\"", "question": "Who were the Opponents when Liga Dekmeijere had Alicja Rosolska as a Partner?", "context": "CREATE TABLE table_name_59 (opponents VARCHAR, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_16 WHERE surface = \"hard (i)\"", "question": "What was the Outcome of the match played on Hard (i) Surface?", "context": "CREATE TABLE table_name_16 (outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_84 WHERE partner = \"kateryna bondarenko\"", "question": "What was the Outcome of the match with Partner Kateryna Bondarenko?", "context": "CREATE TABLE table_name_84 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT song_choice FROM table_name_1 WHERE theme = \"1960s\"", "question": "What is the Song choice with a Theme that is 1960s?", "context": "CREATE TABLE table_name_1 (song_choice VARCHAR, theme VARCHAR)"}, {"answer": "SELECT co_driver FROM table_name_1 WHERE year < 2012 AND laps < 161 AND position = \"dnf\" AND number = 33", "question": "Can you tell me the Co-driver that has the Year smaller than 2012, and the Laps smaller than 161, and the Position of dnf, and the Number 33?", "context": "CREATE TABLE table_name_1 (co_driver VARCHAR, number VARCHAR, position VARCHAR, year VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_94 WHERE team = \"wps racing\"", "question": "Can you tell me the total number of Laps that has the Team of wps racing?", "context": "CREATE TABLE table_name_94 (laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT population FROM table_name_88 WHERE _number_of_phones_as__percentage_of_population = 118", "question": "How many people live where there are 118% of people have phones?", "context": "CREATE TABLE table_name_88 (population VARCHAR, _number_of_phones_as__percentage_of_population VARCHAR)"}, {"answer": "SELECT AVG(_number_of_phones_as__percentage_of_population) FROM table_name_15 WHERE country_or_region = \"russia\"", "question": "What percent of the population has phone in Russia?", "context": "CREATE TABLE table_name_15 (_number_of_phones_as__percentage_of_population INTEGER, country_or_region VARCHAR)"}, {"answer": "SELECT MAX(_number_of_phones_as__percentage_of_population) FROM table_name_90 WHERE last_updated_date = \"june 2013\" AND number_of_mobile_phones = \"327,577,529\"", "question": "What percent is 327,577,529 people with phones in June 2013?", "context": "CREATE TABLE table_name_90 (_number_of_phones_as__percentage_of_population INTEGER, last_updated_date VARCHAR, number_of_mobile_phones VARCHAR)"}, {"answer": "SELECT number_of_mobile_phones FROM table_name_11 WHERE last_updated_date = \"april 2013\"", "question": "How many mobile phones were there as of April 2013?", "context": "CREATE TABLE table_name_11 (number_of_mobile_phones VARCHAR, last_updated_date VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_33 WHERE rank > 5 AND bronze > 6 AND gold < 2", "question": "How many silver medals were awarded to the Nation with less than 2 gold, more than 6 bronze and a rank higher than 5?", "context": "CREATE TABLE table_name_33 (silver INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_8 WHERE rank > 19", "question": "How many gold medals were awarded to teams ranked higher than 19?", "context": "CREATE TABLE table_name_8 (gold VARCHAR, rank INTEGER)"}, {"answer": "SELECT MAX(gold) FROM table_name_72 WHERE total > 13 AND silver > 9 AND bronze = 7", "question": "What is the highest amount of gold medals awarded to a team with more than 9 silver, 7 bronze and more than 13 medals total?", "context": "CREATE TABLE table_name_72 (gold INTEGER, bronze VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(muslim___percentage_of_total_population_) FROM table_name_37 WHERE census_year > 2011", "question": "What is the lowest Muslim (% of Total population) of a year after 2011?", "context": "CREATE TABLE table_name_37 (muslim___percentage_of_total_population_ INTEGER, census_year INTEGER)"}, {"answer": "SELECT 1997 FROM table_name_46 WHERE 1987 = \"2r\"", "question": "What shows for 1997 when 1987 is 2r?", "context": "CREATE TABLE table_name_46 (Id VARCHAR)"}, {"answer": "SELECT 1993 FROM table_name_6 WHERE 1991 = \"grand slams\"", "question": "What shows for 1993 when 1991 is grand slams?", "context": "CREATE TABLE table_name_6 (Id VARCHAR)"}, {"answer": "SELECT 1987 FROM table_name_47 WHERE 1995 = \"1r\" AND 1986 = \"a\" AND 1988 = \"sf\"", "question": "What shows for 1987 when 1995 shows 1r, 1986 is a, and 1998 is sf?", "context": "CREATE TABLE table_name_47 (Id VARCHAR)"}, {"answer": "SELECT away FROM table_name_5 WHERE date = \"2008-07-18\"", "question": "Which away game was played on 2008-07-18?", "context": "CREATE TABLE table_name_5 (away VARCHAR, date VARCHAR)"}, {"answer": "SELECT away FROM table_name_98 WHERE time = \"10:00\"", "question": "What away game had a time of 10:00?", "context": "CREATE TABLE table_name_98 (away VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_35 WHERE away = \"high park demons\"", "question": "What time was the away game played against the High Park Demons?", "context": "CREATE TABLE table_name_35 (time VARCHAR, away VARCHAR)"}, {"answer": "SELECT ground FROM table_name_22 WHERE score = \"62-69\"", "question": "Where was the game played the ended with a score of 62-69?", "context": "CREATE TABLE table_name_22 (ground VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE away = \"toronto eagles\"", "question": "When did the team play an away game against the Toronto Eagles?", "context": "CREATE TABLE table_name_39 (date VARCHAR, away VARCHAR)"}, {"answer": "SELECT league_a FROM table_name_30 WHERE years = \"1908\u20131928\"", "question": "What is the League a for 1908\u20131928?", "context": "CREATE TABLE table_name_30 (league_a VARCHAR, years VARCHAR)"}, {"answer": "SELECT years FROM table_name_64 WHERE total = \"395 (0)\"", "question": "What years have a total of 395 (0)?", "context": "CREATE TABLE table_name_64 (years VARCHAR, total VARCHAR)"}, {"answer": "SELECT league_cup FROM table_name_40 WHERE years = \"1947\u20131958\"", "question": "What is the League Cup for 1947\u20131958?", "context": "CREATE TABLE table_name_40 (league_cup VARCHAR, years VARCHAR)"}, {"answer": "SELECT total FROM table_name_89 WHERE years = \"1926\u20131938\"", "question": "What is the Total for 1926\u20131938?", "context": "CREATE TABLE table_name_89 (total VARCHAR, years VARCHAR)"}, {"answer": "SELECT total FROM table_name_26 WHERE years = \"1953\u20131964\"", "question": "What is the Total for 1953\u20131964?", "context": "CREATE TABLE table_name_26 (total VARCHAR, years VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_47 WHERE surface = \"hard (i)\" AND date = \"october 22, 2000\"", "question": "Which final score had a surface of hard (i) on October 22, 2000?", "context": "CREATE TABLE table_name_47 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_76 WHERE outcome = \"winner\" AND surface = \"hard\" AND date = \"august 26, 2006\"", "question": "Which tournament had an outcome of winner, a hard surface, and happened on August 26, 2006?", "context": "CREATE TABLE table_name_76 (tournament VARCHAR, date VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE opponent_in_the_final = \"iva majoli\"", "question": "Which date had the final opponent of Iva Majoli?", "context": "CREATE TABLE table_name_39 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT result FROM table_name_71 WHERE week < 8 AND date = \"september 30, 1979\"", "question": "On September 30, 1979, in a week before week 8, what was the result?", "context": "CREATE TABLE table_name_71 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_61 WHERE week = 2", "question": "What was the average attendance in week 2?", "context": "CREATE TABLE table_name_61 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT SUM(tonnage__grt_) FROM table_name_30 WHERE time = \"00:10\" AND casualties < 42", "question": "What is the sum of tonnage with a time at 00:10 and less than 42 casualties?", "context": "CREATE TABLE table_name_30 (tonnage__grt_ INTEGER, time VARCHAR, casualties VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_44 WHERE res = \"win\" AND time = \"1:10\"", "question": "Which Opponent had a Win as Res and a Time of 1:10?", "context": "CREATE TABLE table_name_44 (opponent VARCHAR, res VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_78 WHERE played > 15", "question": "How many games that ended in a draw were played by a team with more than 15 total games?", "context": "CREATE TABLE table_name_78 (drawn VARCHAR, played INTEGER)"}, {"answer": "SELECT SUM(pages) FROM table_name_30 WHERE vol__number < 8 AND isbn = \"1-40122-892-5\"", "question": "How many pages does the edition with a volume # smaller than 8 and an ISBM of 1-40122-892-5 have?", "context": "CREATE TABLE table_name_30 (pages INTEGER, vol__number VARCHAR, isbn VARCHAR)"}, {"answer": "SELECT title FROM table_name_5 WHERE pages > 128 AND vol__number = 5", "question": "What is the title of the edition with more than 128 pages and a volume # of 5?", "context": "CREATE TABLE table_name_5 (title VARCHAR, pages VARCHAR, vol__number VARCHAR)"}, {"answer": "SELECT SUM(pages) FROM table_name_47 WHERE isbn = \"1-40122-328-1\"", "question": "How many pages does the ISBN 1-40122-328-1 have?", "context": "CREATE TABLE table_name_47 (pages INTEGER, isbn VARCHAR)"}, {"answer": "SELECT position FROM table_name_68 WHERE height__cm_ > 180 AND name = \"brian lawton\"", "question": "What position has a height (cm) greater than 180, and brian lawton as the name?", "context": "CREATE TABLE table_name_68 (position VARCHAR, height__cm_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(jersey__number) FROM table_name_62 WHERE birthplace = \"evergreen park, illinois\" AND weight__kg_ > 86", "question": "What is the lowest jersey # that has evergreen park, illinois as the birthplace, with a weight (km) greater than 86?", "context": "CREATE TABLE table_name_62 (jersey__number INTEGER, birthplace VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_1 WHERE played < 8", "question": "How many lost stats have a played number of less than 8?", "context": "CREATE TABLE table_name_1 (lost VARCHAR, played INTEGER)"}, {"answer": "SELECT MAX(lost) FROM table_name_36 WHERE difference = \"- 19\"", "question": "What is the largest lost stat when the difference is - 19?", "context": "CREATE TABLE table_name_36 (lost INTEGER, difference VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_59 WHERE against < 27 AND played < 8", "question": "How many positions have an against of less than 27, and a played number of less than 8?", "context": "CREATE TABLE table_name_59 (position VARCHAR, against VARCHAR, played VARCHAR)"}, {"answer": "SELECT muzzle_energy FROM table_name_24 WHERE cartridge = \".375 remington ultra magnum\"", "question": "What is Muzzle energy, when Cartridge is .375 remington ultra magnum?", "context": "CREATE TABLE table_name_24 (muzzle_energy VARCHAR, cartridge VARCHAR)"}, {"answer": "SELECT source FROM table_name_62 WHERE cartridge = \".375 remington ultra magnum\"", "question": "What is Source, when Cartridge is .375 remington ultra magnum?", "context": "CREATE TABLE table_name_62 (source VARCHAR, cartridge VARCHAR)"}, {"answer": "SELECT source FROM table_name_67 WHERE cartridge = \".375 remington ultra magnum\"", "question": "What is Source, when Cartridge is .375 remington ultra magnum?", "context": "CREATE TABLE table_name_67 (source VARCHAR, cartridge VARCHAR)"}, {"answer": "SELECT muzzle_energy FROM table_name_16 WHERE source = \"hornady\"", "question": "What is Muzzle energy, when Source is hornady?", "context": "CREATE TABLE table_name_16 (muzzle_energy VARCHAR, source VARCHAR)"}, {"answer": "SELECT bullet_weight FROM table_name_99 WHERE source = \"hornady\"", "question": "What is Bullet weight, when Source is hornady?", "context": "CREATE TABLE table_name_99 (bullet_weight VARCHAR, source VARCHAR)"}, {"answer": "SELECT format FROM table_name_72 WHERE catalog = \"vcrdx 106\"", "question": "Which Format has a Catalog of vcrdx 106?", "context": "CREATE TABLE table_name_72 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_19 WHERE catalog = \"magik muzik 806-5\"", "question": "Which Region has a Catalog of magik muzik 806-5?", "context": "CREATE TABLE table_name_19 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE catalog = \"vcrt 106\"", "question": "Which Date has a Catalog of vcrt 106?", "context": "CREATE TABLE table_name_6 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_31 WHERE player = \"jason webb\"", "question": "What pick was play Jason Webb?", "context": "CREATE TABLE table_name_31 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_27 WHERE pick > 7", "question": "Which colleges have a pick above 7?", "context": "CREATE TABLE table_name_27 (college VARCHAR, pick INTEGER)"}, {"answer": "SELECT COUNT(pick) FROM table_name_62 WHERE player = \"jason webb\"", "question": "How many teams picked Jason Webb?", "context": "CREATE TABLE table_name_62 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT over_total_tax_revenue__in__percentage_ FROM table_name_75 WHERE stamp_duty_reserve_tax = \"n.a.\" AND year = \"1995-96\"", "question": "What is the Total Tax Revenue that has an n.a. Stamp Duty Reserve Tax in the years 1995-96?", "context": "CREATE TABLE table_name_75 (over_total_tax_revenue__in__percentage_ VARCHAR, stamp_duty_reserve_tax VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_1 WHERE date = \"8 october 1986\"", "question": "What was the lowest Attendance on 8 October 1986?", "context": "CREATE TABLE table_name_1 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_9 WHERE opponent = \"dundee\" AND venue = \"a\" AND date = \"6 september 1986\"", "question": "What was the result when Dundee were the Opponent at Venue A on 6 September 1986?", "context": "CREATE TABLE table_name_9 (result VARCHAR, date VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_6 WHERE weight__kg_ < 91 AND birthdate = \"march 5, 1977\"", "question": "What position did the player play who weighed less thna 91 kg and was born on March 5, 1977?", "context": "CREATE TABLE table_name_6 (position VARCHAR, weight__kg_ VARCHAR, birthdate VARCHAR)"}, {"answer": "SELECT COUNT(fa_trophy) FROM table_name_17 WHERE fa_cup > 2 AND player = \"neil grayson\" AND league > 17", "question": "What is the total number of FA trophies of player Neil Grayson, who has more than 2 FA cups and a league greater than 17?", "context": "CREATE TABLE table_name_17 (fa_trophy VARCHAR, league VARCHAR, fa_cup VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(fa_cup) FROM table_name_50 WHERE fa_trophy > 0 AND club = \"stalybridge celtic\" AND total < 20", "question": "What is the sum of FA cups of club Stalybridge Celtic, which has more than 0 FA trophies and a total less than 20?", "context": "CREATE TABLE table_name_50 (fa_cup INTEGER, total VARCHAR, fa_trophy VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_18 WHERE club = \"halifax town\" AND league < 30 AND fa_cup > 3", "question": "What is the average total of halifax town club, which has a league less than 30 and more than 3 FA cups?", "context": "CREATE TABLE table_name_18 (total INTEGER, fa_cup VARCHAR, club VARCHAR, league VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE opponent = \"roger federer\" AND date = \"april 3, 2006\"", "question": "What was the score of the match against roger federer on April 3, 2006?", "context": "CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_78 WHERE opponent = \"andy roddick\"", "question": "What was the outcome of the match against andy roddick?", "context": "CREATE TABLE table_name_78 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_8 WHERE date = \"october 8, 1950\"", "question": "What average week has october 8, 1950 as the date?", "context": "CREATE TABLE table_name_8 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_89 WHERE opponent = \"pittsburgh steelers\"", "question": "How many weeks have pittsburgh steelers as the opponent?", "context": "CREATE TABLE table_name_89 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_9 WHERE result = \"l 3-17\"", "question": "How many weeks have l 3-17 as the result?", "context": "CREATE TABLE table_name_9 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_89 WHERE opponent = \"washington redskins\"", "question": "What attendance has Washington redskins as the opponent?", "context": "CREATE TABLE table_name_89 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_57 WHERE frequency = \"2000mhz\" AND voltage = \"0.75-1.2\"", "question": "Which Model number has a Frequency of 2000mhz and a Voltage of 0.75-1.2?", "context": "CREATE TABLE table_name_57 (model_number VARCHAR, frequency VARCHAR, voltage VARCHAR)"}, {"answer": "SELECT multi_1 FROM table_name_7 WHERE frequency = \"2300mhz\" AND release_date = \"q3 2008\" AND model_number = \"turion x2 ultra zm-84\"", "question": "Which Multi 1 has a Frequency of 2300mhz, and a Release date of q3 2008 and a Model number of turion x2 ultra zm-84?", "context": "CREATE TABLE table_name_7 (multi_1 VARCHAR, model_number VARCHAR, frequency VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT voltage FROM table_name_64 WHERE frequency = \"2000mhz\" AND release_date = \"q3 2008\"", "question": "What kind of Voltage has a Frequency of 2000mhz, and a Release date in q3 2008?", "context": "CREATE TABLE table_name_64 (voltage VARCHAR, frequency VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_31 WHERE model_number = \"turion x2 ultra zm-85\"", "question": "WHat kind of L2 cache has a Model number of turion x2 ultra zm-85?", "context": "CREATE TABLE table_name_31 (l2_cache VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT socket FROM table_name_30 WHERE frequency = \"2200mhz\" AND release_date = \"june 4, 2008\"", "question": "Which Socket has a Frequency of 2200mhz, and a Release date on june 4, 2008?", "context": "CREATE TABLE table_name_30 (socket VARCHAR, frequency VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT socket FROM table_name_44 WHERE order_part_number = \"tmrm72dam22gg\"", "question": "What kind of Socket has a Order part number of tmrm72dam22gg?", "context": "CREATE TABLE table_name_44 (socket VARCHAR, order_part_number VARCHAR)"}, {"answer": "SELECT birthdate FROM table_name_20 WHERE name = \"raymond bonney\"", "question": "What is the Birthdate of raymond bonney?", "context": "CREATE TABLE table_name_20 (birthdate VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_30 WHERE birthplace = \"northfield, minnesota\"", "question": "What is the Team for the player born in northfield, minnesota?", "context": "CREATE TABLE table_name_30 (team VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT position FROM table_name_81 WHERE birthplace = \"phoenix, new york\"", "question": "What is the Position of the person with a birthplace of phoenix, new york?", "context": "CREATE TABLE table_name_81 (position VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT name FROM table_name_45 WHERE team = \"st. paul a.c.\" AND birthdate = \"3 august 1890\"", "question": "What is the Name when the team is the st. paul a.c., with a Birthdate of 3 august 1890?", "context": "CREATE TABLE table_name_45 (name VARCHAR, team VARCHAR, birthdate VARCHAR)"}, {"answer": "SELECT position FROM table_name_61 WHERE name = \"moose goheen\"", "question": "What is the Position of moose goheen?", "context": "CREATE TABLE table_name_61 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT birthdate FROM table_name_29 WHERE name = \"leon tuck\"", "question": "What is the Birthdate of leon tuck?", "context": "CREATE TABLE table_name_29 (birthdate VARCHAR, name VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_31 WHERE 1995 = \"a\" AND 1997 = \"a\" AND 2003 = \"3r\"", "question": "During the Tournament in which Ji\u0159\u00ed Nov\u00e1k was absent(A) in 1995, absent(A) in 1997, and made it to the 3rd round (3R) in 2003, how did he do in 2006?", "context": "CREATE TABLE table_name_31 (Id VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_75 WHERE tournament = \"tennis masters cup\"", "question": "In the Tennis Masters Cup, how did Ji\u0159\u00ed Nov\u00e1k do in 1997?", "context": "CREATE TABLE table_name_75 (tournament VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_71 WHERE 1996 = \"a\" AND tournament = \"hamburg masters\"", "question": "In the Hamburg Masters Tournament, during which Ji\u0159\u00ed Nov\u00e1k was absent(A) in 1996, how did he do in 2003?", "context": "CREATE TABLE table_name_71 (tournament VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_49 WHERE 2004 = \"a\"", "question": "In the Tournament during which Ji\u0159\u00ed Nov\u00e1k was absent(A) in 2004, how did he do in 2003?", "context": "CREATE TABLE table_name_49 (Id VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_32 WHERE 1995 = \"1r\"", "question": "In the Tournament during which Ji\u0159\u00ed Nov\u00e1k made it to the 1st round(1R) in 1995, how did he do in 2001?", "context": "CREATE TABLE table_name_32 (Id VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_93 WHERE 1998 = \"a\" AND tournament = \"hamburg masters\"", "question": "During the Hamburg Masters Tournament, during which Ji\u0159\u00ed Nov\u00e1k was absent(A) in 1998, how did he do in 1997?", "context": "CREATE TABLE table_name_93 (tournament VARCHAR)"}, {"answer": "SELECT SUM(cultural_and_educational_panel) FROM table_name_23 WHERE labour_panel < 7 AND agricultural_panel < 1", "question": "What is the sum of all from the Cultural and Educational Panel with less than 7 from the Labour Panel and less than 1 from the Agricultural Panel?", "context": "CREATE TABLE table_name_23 (cultural_and_educational_panel INTEGER, labour_panel VARCHAR, agricultural_panel VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_13 WHERE footytab_winner = \"st. george\"", "question": "What is the Away team when the FootyTAB winner was st. george?", "context": "CREATE TABLE table_name_13 (away_team VARCHAR, footytab_winner VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_71 WHERE away_team = \"manly\"", "question": "What is the Home team when the away team was Manly?", "context": "CREATE TABLE table_name_71 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT match_score FROM table_name_81 WHERE footytab_winner = \"norths\"", "question": "What is the Match score when the FootyTAB winner was norths?", "context": "CREATE TABLE table_name_81 (match_score VARCHAR, footytab_winner VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_54 WHERE match_score = \"norths 19 manly 4\"", "question": "What is the Away team when the match score was norths 19 manly 4?", "context": "CREATE TABLE table_name_54 (away_team VARCHAR, match_score VARCHAR)"}, {"answer": "SELECT \"pick_the_winners\" AS _score FROM table_name_70 WHERE match_score = \"illawarra 19 souths 0\"", "question": "What is the \"Pick The Winners\" score when the Match score was illawarra 19 souths 0?", "context": "CREATE TABLE table_name_70 (match_score VARCHAR)"}, {"answer": "SELECT player FROM table_name_21 WHERE fg_pct < 45.9 AND def_reb < 43 AND total_reb = 9", "question": "Which player has a FG Pct less than 45.9, a def reb less than 43, and a total reb of 9?", "context": "CREATE TABLE table_name_21 (player VARCHAR, total_reb VARCHAR, fg_pct VARCHAR, def_reb VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_3 WHERE name = \"st\u00e9phane dumas\" AND rank > 5", "question": "How many Games has a Name of st\u00e9phane dumas and a Rank larger than 5?", "context": "CREATE TABLE table_name_3 (games INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_24 WHERE team = \"cai zaragoza\" AND rank < 1", "question": "How many Games has a Team of cai zaragoza and a Rank smaller than 1?", "context": "CREATE TABLE table_name_24 (games INTEGER, team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_37 WHERE nation = \"poland\"", "question": "What was the most total medals awarded to Poland?", "context": "CREATE TABLE table_name_37 (total INTEGER, nation VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_64 WHERE date = \"december 20, 1964\"", "question": "How many people attended the game on December 20, 1964?", "context": "CREATE TABLE table_name_64 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE opponent = \"tampa bay buccaneers\"", "question": "On what date did the Lions play against the Tampa Bay Buccaneers?", "context": "CREATE TABLE table_name_66 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE opponent = \"new york jets\"", "question": "What was the date of the game against the New York Jets?", "context": "CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_15 WHERE date = \"october 31, 1965\"", "question": "What is the Attendance with a Date that is october 31, 1965?", "context": "CREATE TABLE table_name_15 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_96 WHERE date = \"november 25, 1965\"", "question": "What is the Attendance with a Date that is november 25, 1965?", "context": "CREATE TABLE table_name_96 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(geohash_length) FROM table_name_94 WHERE lat_bits < 7 AND km_error = \"\u00b12500\"", "question": "What is the lowest geohash length when the lat bits are less than 7, and the km error of \u00b12500?", "context": "CREATE TABLE table_name_94 (geohash_length INTEGER, lat_bits VARCHAR, km_error VARCHAR)"}, {"answer": "SELECT MAX(geohash_length) FROM table_name_99 WHERE lat_error = \"\u00b10.00068\" AND lat_bits > 17", "question": "What is the highest geohash length when the lat error is \u00b10.00068, and the lat bits larger than 17?", "context": "CREATE TABLE table_name_99 (geohash_length INTEGER, lat_error VARCHAR, lat_bits VARCHAR)"}, {"answer": "SELECT MAX(geohash_length) FROM table_name_31 WHERE lng_error = \"\u00b10.00017\" AND lng_bits < 20", "question": "What is the highest geohash length when there is a ng error of \u00b10.00017, and a lng bits smaller than 20?", "context": "CREATE TABLE table_name_31 (geohash_length INTEGER, lng_error VARCHAR, lng_bits VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_93 WHERE drawn < 5 AND lost = 3 AND position = 3", "question": "Which Against has a Drawn smaller than 5, a Lost of 3, and a Position of 3?", "context": "CREATE TABLE table_name_93 (against INTEGER, position VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT against FROM table_name_67 WHERE position > 8 AND points > 9", "question": "Which Against has a Position larger than 8, and Points larger than 9?", "context": "CREATE TABLE table_name_67 (against VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_39 WHERE points < 12 AND drawn > 1", "question": "Which Lost has Points smaller than 12, and a Drawn larger than 1?", "context": "CREATE TABLE table_name_39 (lost VARCHAR, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_84 WHERE difference = \"5\" AND drawn < 3", "question": "Which Position has a Difference of 5, and a Drawn smaller than 3?", "context": "CREATE TABLE table_name_84 (position INTEGER, difference VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_32 WHERE position > 11", "question": "Which Against has a Position larger than 11?", "context": "CREATE TABLE table_name_32 (against VARCHAR, position INTEGER)"}, {"answer": "SELECT player FROM table_name_1 WHERE nationality = \"united states\" AND position = \"forward\" AND school_club_team = \"notre dame\"", "question": "Which Player has a Nationality of united states, a Position of forward, and a School/Club Team of notre dame?", "context": "CREATE TABLE table_name_1 (player VARCHAR, school_club_team VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_63 WHERE school_club_team = \"louisiana state\"", "question": "Which Nationality has a School/Club Team of louisiana state?", "context": "CREATE TABLE table_name_63 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_41 WHERE position = \"center\" AND school_club_team = \"louisiana state\"", "question": "Which Years in Orlando has a Position of center, and a School/Club Team of louisiana state?", "context": "CREATE TABLE table_name_41 (years_in_orlando VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_89 WHERE school_club_team = \"illinois\"", "question": "Which Position has a School/Club Team of illinois?", "context": "CREATE TABLE table_name_89 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_23 WHERE nationality = \"united states\" AND school_club_team = \"illinois\"", "question": "Which Years in Orlando has a Nationality of united states, and a School/Club Team of illinois?", "context": "CREATE TABLE table_name_23 (years_in_orlando VARCHAR, nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE position = \"forward\" AND school_club_team = \"georgia tech\"", "question": "Which Player has a Position of forward, and a School/Club Team of georgia tech?", "context": "CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_6 WHERE rank = 6", "question": "What is the total number of silver with rank number 6?", "context": "CREATE TABLE table_name_6 (silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_95 WHERE nation = \"japan\" AND rank > 3", "question": "What is the smallest total from Japan with a rank larger than 3?", "context": "CREATE TABLE table_name_95 (total INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_67 WHERE bronze = 0 AND total < 1", "question": "What is the largest number of silver that had 0 bronzes and total less than 1?", "context": "CREATE TABLE table_name_67 (silver INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_6 WHERE match < 12", "question": "What is the smallest number of points for a match less than 12?", "context": "CREATE TABLE table_name_6 (points INTEGER, match INTEGER)"}, {"answer": "SELECT AVG(number_of_languages) FROM table_name_23 WHERE frequency = \"monthly\" AND publisher = \"hearst corporation\"", "question": "What is the mean number of languages for the monthly frequency when the publisher is the hearst corporation?", "context": "CREATE TABLE table_name_23 (number_of_languages INTEGER, frequency VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT political_group FROM table_name_58 WHERE name = \"p. maelius capitolinus\"", "question": "What is the Political group for p. maelius capitolinus?", "context": "CREATE TABLE table_name_58 (political_group VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_46 WHERE name = \"l. publilius philo vulscus\"", "question": "What is the Type for l. publilius philo vulscus?", "context": "CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_31 WHERE name = \"l. publilius philo vulscus\"", "question": "What is the Type for l. publilius philo vulscus?", "context": "CREATE TABLE table_name_31 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT episode_title FROM table_name_3 WHERE prod_code = \"1gowo04\"", "question": "What was the title of the episode with a production code of 1gowo04?", "context": "CREATE TABLE table_name_3 (episode_title VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT prod_code FROM table_name_16 WHERE episode_title = \"life's no fun anymore\"", "question": "What is the production code fore the episode titled, life's no fun anymore?", "context": "CREATE TABLE table_name_16 (prod_code VARCHAR, episode_title VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_19 WHERE position = \"forward\" AND school_club_team = \"depaul\"", "question": "What is the nationality of the player that plays forward and is from depaul?", "context": "CREATE TABLE table_name_19 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_75 WHERE player = \"stanley roberts\"", "question": "What years did Orlando have stanley roberts on the team?", "context": "CREATE TABLE table_name_75 (years_in_orlando VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_99 WHERE year > 2003", "question": "How many points total are there later than 2003?", "context": "CREATE TABLE table_name_99 (points INTEGER, year INTEGER)"}, {"answer": "SELECT entrant FROM table_name_13 WHERE chassis = \"dallara f398\"", "question": "Which entrant has a Dallara F398 chassis?", "context": "CREATE TABLE table_name_13 (entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_93 WHERE chassis = \"dallara f303\"", "question": "What are the lowest points for an engine with a Dallara F303 chassis?", "context": "CREATE TABLE table_name_93 (points INTEGER, chassis VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_96 WHERE year = 2004", "question": "What are the lowest points in 2004?", "context": "CREATE TABLE table_name_96 (points INTEGER, year VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_95 WHERE week = 5", "question": "What is Attendance, when Week is 5?", "context": "CREATE TABLE table_name_95 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT label FROM table_name_12 WHERE catalog = \"none\" AND region = \"united kingdom\"", "question": "What is the label for the catalog of none, and is in the United Kingdom?", "context": "CREATE TABLE table_name_12 (label VARCHAR, catalog VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_name_76 WHERE date = \"november 18, 2002\"", "question": "What is the region for the date November 18, 2002?", "context": "CREATE TABLE table_name_76 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE label = \"nebula\" AND catalog = \"nebdjx029\"", "question": "What is the date for the Nebula Label, and a nebdjx029 catalog?", "context": "CREATE TABLE table_name_93 (date VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_54 WHERE region = \"netherlands\"", "question": "What is the label from the Netherlands?", "context": "CREATE TABLE table_name_54 (label VARCHAR, region VARCHAR)"}, {"answer": "SELECT christ_madeking FROM table_name_16 WHERE great_tribulation = \"1925\"", "question": "What was the Christ made king date with a great tribulation in 1925?", "context": "CREATE TABLE table_name_16 (christ_madeking VARCHAR, great_tribulation VARCHAR)"}, {"answer": "SELECT resurrection_of144, 000 FROM table_name_63 WHERE christ_madeking = \"1914\" AND separating_sheep_ & goats = \"during christ's presence\" AND judgmentof_religion = \"1878\"", "question": "What is the resurrection of 144,000 date with a Christ made king date in 1914, a separting sheep & goats date during Christ's presence, and a judgment of religion date in 1878?", "context": "CREATE TABLE table_name_63 (resurrection_of144 VARCHAR, judgmentof_religion VARCHAR, christ_madeking VARCHAR, separating_sheep_ VARCHAR, goats VARCHAR)"}, {"answer": "SELECT MIN(cuts_made) FROM table_name_63 WHERE scoring_average < 72.48", "question": "What is the lowest Cuts made with less than 72.48 scoring average?", "context": "CREATE TABLE table_name_63 (cuts_made INTEGER, scoring_average INTEGER)"}, {"answer": "SELECT SUM(events_played) FROM table_name_82 WHERE cuts_made < 0", "question": "What is the sum of Events played when the cuts made is less than 0?", "context": "CREATE TABLE table_name_82 (events_played INTEGER, cuts_made INTEGER)"}, {"answer": "SELECT scoring_rank FROM table_name_19 WHERE events_played < 21 AND rank = \"n/a\" AND year < 2011", "question": "What is the Scoring rank when there are less than 21 events played with a rank of n/a in years less than 2011?", "context": "CREATE TABLE table_name_19 (scoring_rank VARCHAR, year VARCHAR, events_played VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_54 WHERE rank = \"98\" AND scoring_average > 73.52", "question": "What is the total number of Wins when 98 is the rank and the scoring average is more than 73.52?", "context": "CREATE TABLE table_name_54 (wins VARCHAR, rank VARCHAR, scoring_average VARCHAR)"}, {"answer": "SELECT title FROM table_name_69 WHERE start_of_reign = 1993", "question": "What Title's Start of Reign is 1993?", "context": "CREATE TABLE table_name_69 (title VARCHAR, start_of_reign VARCHAR)"}, {"answer": "SELECT Birth AS name FROM table_name_34 WHERE end_of_reign = \"current\"", "question": "What is the Birth Name of the Archbishop with a Current End of Reign?", "context": "CREATE TABLE table_name_34 (Birth VARCHAR, end_of_reign VARCHAR)"}, {"answer": "SELECT Birth AS name FROM table_name_45 WHERE start_of_reign < 1986 AND name = \"angelarios angelarij\"", "question": "What is Angelarios Angelarij with a Start of Reign date before 1986 Birth Name?", "context": "CREATE TABLE table_name_45 (Birth VARCHAR, start_of_reign VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(goals_scored) FROM table_name_7 WHERE place > 5 AND lost = 11 AND goals_conceded < 45", "question": "How many goals that were scored had a place of more than 5, a lost of 11, and goals conceded of less than 45?", "context": "CREATE TABLE table_name_7 (goals_scored VARCHAR, goals_conceded VARCHAR, place VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_81 WHERE goals_conceded < 16", "question": "What is the mean played number where the goals conceded is less than 16?", "context": "CREATE TABLE table_name_81 (played INTEGER, goals_conceded INTEGER)"}, {"answer": "SELECT 1913 AS _class FROM table_name_68 WHERE lner_class = \"d32\"", "question": "What is the 1913 Class of the d32 LNER Class?", "context": "CREATE TABLE table_name_68 (lner_class VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_59 WHERE team = \"denver\"", "question": "What was the attendance at the Denver game?", "context": "CREATE TABLE table_name_59 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_score FROM table_name_64 WHERE strike_rate = \"n/a\" AND player = \"matthew hoggard\"", "question": "What was Matthew Hoggard's high score when he had a strike rate of n/a?", "context": "CREATE TABLE table_name_64 (high_score VARCHAR, strike_rate VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(weight) FROM table_name_28 WHERE height = 196 AND date_of_birth = \"24.07.1977\"", "question": "What is the lowest Weight when the height is 196, and the date of birth is 24.07.1977?", "context": "CREATE TABLE table_name_28 (weight INTEGER, height VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT SUM(spike) FROM table_name_72 WHERE weight > 84 AND block < 315", "question": "What is the sum of Spike when the Weight was more than 84, and Block was less than 315?", "context": "CREATE TABLE table_name_72 (spike INTEGER, weight VARCHAR, block VARCHAR)"}, {"answer": "SELECT result FROM table_name_96 WHERE tournament = \"2012 waff women's futsal championship\" AND opponent = \"iraq\"", "question": "What was the result of the 2012 Waff Women's Futsal Championship game the team played against Iraq?", "context": "CREATE TABLE table_name_96 (result VARCHAR, tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_35 WHERE date = \"may 9, 2012\"", "question": "What was the result of the game played on May 9, 2012?", "context": "CREATE TABLE table_name_35 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_1 WHERE venue = \"russia\" AND date = \"may 9, 2012\"", "question": "What is the result of the game played in Russia on May 9, 2012?", "context": "CREATE TABLE table_name_1 (result VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_70 WHERE date = \"october 8, 2000\"", "question": "What is the final result of the game that was played on October 8, 2000?", "context": "CREATE TABLE table_name_70 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_37 WHERE week > 4 AND date = \"october 15, 2000\"", "question": "Who was the opponent in the game played after Week 4 on October 15, 2000?", "context": "CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_80 WHERE record = \"8-8\"", "question": "Where was the game played when the Buffalo Bills had a record of 8-8?", "context": "CREATE TABLE table_name_80 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_34 WHERE record = \"4-4\"", "question": "Who was the opponent the Buffalo Bills played when their record was 4-4?", "context": "CREATE TABLE table_name_34 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_47 WHERE opponent = \"cleveland browns\" AND attendance > 54 OFFSET 205", "question": "What is the highest week for Cleveland Browns with 54,205 in attendance?", "context": "CREATE TABLE table_name_47 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE opponent = \"oakland raiders\"", "question": "What date was the opponents the Oakland Raiders?", "context": "CREATE TABLE table_name_88 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_18 WHERE date = \"october 22, 1972\"", "question": "What was the total attendance October 22, 1972?", "context": "CREATE TABLE table_name_18 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT MAX(heat) FROM table_name_8 WHERE mark = \"6.76\" AND name = \"ihor bodrov\" AND lane < 1", "question": "What is the highest heat for Ihor Bodrov when the mark is 6.76 and the lane is less than 1?", "context": "CREATE TABLE table_name_8 (heat INTEGER, lane VARCHAR, mark VARCHAR, name VARCHAR)"}, {"answer": "SELECT mark FROM table_name_44 WHERE lane > 2 AND heat > 4 AND name = \"rabangaki nawai\"", "question": "What is the mark number when the lane for Rabangaki Nawai when it is greater than 2 and the heat is larger than 4?", "context": "CREATE TABLE table_name_44 (mark VARCHAR, name VARCHAR, lane VARCHAR, heat VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_16 WHERE country = \"united states\" AND mark = \"6.62\" AND heat > 8", "question": "What is the total lane number for the United States when the mark is 6.62 and the heat is greater than 8?", "context": "CREATE TABLE table_name_16 (lane VARCHAR, heat VARCHAR, country VARCHAR, mark VARCHAR)"}, {"answer": "SELECT 2010 AS _11 FROM table_name_99 WHERE event = \"autumn gold\"", "question": "WHich in 2010\u201311 has an Event of autumn gold?", "context": "CREATE TABLE table_name_99 (event VARCHAR)"}, {"answer": "SELECT nation FROM table_name_88 WHERE bronze > 0 AND gold > 0 AND silver > 0 AND rank = \"5\"", "question": "Which nation has a bronze greater than 0, a gold greater than 0, a silver greater than 0, and 5 as the rank?", "context": "CREATE TABLE table_name_88 (nation VARCHAR, rank VARCHAR, silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT nation FROM table_name_6 WHERE gold = 1 AND total = 2", "question": "What nation has 1 as the gold and 2 as the total?", "context": "CREATE TABLE table_name_6 (nation VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT rank FROM table_name_56 WHERE bronze = 0 AND total < 3 AND nation = \"north korea\"", "question": "What rank has 0 as the bronze, and a total less than 3, with north korea as the nation?", "context": "CREATE TABLE table_name_56 (rank VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_82 WHERE bronze < 1 AND silver < 1", "question": "How many golds have a bronze less than 1, and a silver less than 1?", "context": "CREATE TABLE table_name_82 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_8 WHERE nation = \"cuba\" AND bronze > 1", "question": "What average total has cuba as the nation, and a bronze greater than 1?", "context": "CREATE TABLE table_name_8 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_34 WHERE bronze > 1 AND gold > 1 AND silver < 4", "question": "What is the highest total that has a bronze greater than 1, a gold greater than 1, with a silver less than 4?", "context": "CREATE TABLE table_name_34 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT birthplace FROM table_name_92 WHERE birthdate = \"march 21, 1979\"", "question": "Where was the birthplace of the person born on March 21, 1979?", "context": "CREATE TABLE table_name_92 (birthplace VARCHAR, birthdate VARCHAR)"}, {"answer": "SELECT MAX(weight__kg_) FROM table_name_57 WHERE name = \"scott gomez\"", "question": "What is Scott Gomez's biggest weight?", "context": "CREATE TABLE table_name_57 (weight__kg_ INTEGER, name VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_31 WHERE round = 1 AND player = \"paul seymour\"", "question": "What number pick was Paul Seymour in round 1?", "context": "CREATE TABLE table_name_31 (pick INTEGER, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_72 WHERE college = \"usc\"", "question": "In how many rounds did USC participate in?", "context": "CREATE TABLE table_name_72 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_14 WHERE time = \"15:33\"", "question": "What set 2 has 15:33 as the time?", "context": "CREATE TABLE table_name_14 (set_2 VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_8 WHERE opponent = \"clemson\"", "question": "Where did they play against Clemson?", "context": "CREATE TABLE table_name_8 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_10 WHERE date = \"10/05/1974\"", "question": "What was the total attendance on 10/05/1974?", "context": "CREATE TABLE table_name_10 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_name_21 WHERE spike < 352 AND block > 300 AND name = \"pablo meana\"", "question": "What is the total number of Height(s), when Spike is less than 352, when Block is greater than 300, and when Name is Pablo Meana?", "context": "CREATE TABLE table_name_21 (height VARCHAR, name VARCHAR, spike VARCHAR, block VARCHAR)"}, {"answer": "SELECT COUNT(weight) FROM table_name_26 WHERE block = 300", "question": "What is the total number of Weight(s), when Block is 300?", "context": "CREATE TABLE table_name_26 (weight VARCHAR, block VARCHAR)"}, {"answer": "SELECT MIN(weight) FROM table_name_78 WHERE spike < 330 AND block = 315 AND height > 187", "question": "What is the smallest Weight, when Spike is less than 330, when Block is 315, and when Height is greater than 187?", "context": "CREATE TABLE table_name_78 (weight INTEGER, height VARCHAR, spike VARCHAR, block VARCHAR)"}, {"answer": "SELECT AVG(spike) FROM table_name_67 WHERE name = \"gustavo porporatto\" AND block > 323", "question": "What is the average Spike, when Name is Gustavo Porporatto, and when Block is greater than 323?", "context": "CREATE TABLE table_name_67 (spike INTEGER, name VARCHAR, block VARCHAR)"}, {"answer": "SELECT match FROM table_name_11 WHERE points = 24", "question": "What is the Match with Points that are 24?", "context": "CREATE TABLE table_name_11 (match VARCHAR, points VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_34 WHERE team_1 = \"milli piyango sk\"", "question": "What is the Team 2 with a Team 1 that is milli piyango sk?", "context": "CREATE TABLE table_name_34 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_69 WHERE team_2 = \"brest hc meshkov\"", "question": "What is the Team 1 with a Team 2 with brest hc meshkov?", "context": "CREATE TABLE table_name_69 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_86 WHERE points = 29 AND lost < 2", "question": "What is the position number when there were 29 points, and less than 2 is lost?", "context": "CREATE TABLE table_name_86 (position VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_92 WHERE against = 20 AND lost < 1", "question": "What is the lowest Points with an against of 20 and less than 1 lost?", "context": "CREATE TABLE table_name_92 (points INTEGER, against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_66 WHERE against < 24 AND played < 20", "question": "What is the sum of Points when the against is less than 24 and played is less than 20?", "context": "CREATE TABLE table_name_66 (points INTEGER, against VARCHAR, played VARCHAR)"}, {"answer": "SELECT region FROM table_name_37 WHERE date = \"april 30, 2004\" AND catalog = \"nebdj058\"", "question": "What region is dated April 30, 2004, and cataloged Nebdj058?", "context": "CREATE TABLE table_name_37 (region VARCHAR, date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_3 WHERE catalog = \"nebcd058\"", "question": "What s the format for the catalog nebcd058?", "context": "CREATE TABLE table_name_3 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_93 WHERE catalog = \"sir021-6\"", "question": "What region has the catalog sir021-6?", "context": "CREATE TABLE table_name_93 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_10 WHERE catalog = \"nebt058\"", "question": "What label has the catalog nebt058?", "context": "CREATE TABLE table_name_10 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_59 WHERE score = \"l 90\u2013104 (ot)\"", "question": "What is the game number when the score was l 90\u2013104 (ot)?", "context": "CREATE TABLE table_name_59 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE record = \"12\u201312\"", "question": "What is the Score of the game with a Record of 12\u201312?", "context": "CREATE TABLE table_name_93 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_87 WHERE game < 21 AND high_rebounds = \"antonio davis (12)\"", "question": "What is the Score for the Game less than 21, and of antonio davis (12)had the High rebounds?", "context": "CREATE TABLE table_name_87 (score VARCHAR, game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT record FROM table_name_37 WHERE high_rebounds = \"antonio davis (14)\"", "question": "What is the Record when antonio davis (14) had the high rebounds?", "context": "CREATE TABLE table_name_37 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT team FROM table_name_52 WHERE high_points = \"vince carter (19)\"", "question": "What was the team when vince carter (19) had the high points?", "context": "CREATE TABLE table_name_52 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_86 WHERE total = 1 AND bronze = 1", "question": "What is the number for gold where there were total 1, and bronze 1?", "context": "CREATE TABLE table_name_86 (gold VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT player FROM table_name_60 WHERE total = \"152\"", "question": "Which player had a total of 152?", "context": "CREATE TABLE table_name_60 (player VARCHAR, total VARCHAR)"}, {"answer": "SELECT player FROM table_name_66 WHERE year_s__won = \"1976\"", "question": "Which player won the Masters in 1976?", "context": "CREATE TABLE table_name_66 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT total FROM table_name_24 WHERE country = \"spain\"", "question": "What was the total of the player from Spain?", "context": "CREATE TABLE table_name_24 (total VARCHAR, country VARCHAR)"}, {"answer": "SELECT total FROM table_name_75 WHERE to_par = \"+9\" AND year_s__won = \"1987\"", "question": "Which player won in 1987 and ended with a score of +9?", "context": "CREATE TABLE table_name_75 (total VARCHAR, to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT award_name FROM table_name_77 WHERE team_number = 23", "question": "What's the name of the award given to Team number 23?", "context": "CREATE TABLE table_name_77 (award_name VARCHAR, team_number VARCHAR)"}, {"answer": "SELECT volume AS :issue FROM table_name_75 WHERE weeks_on_top < 5 AND issue_date_s_ = \"10 july - 24 july\"", "question": "What is Volume:Issue, when Weeks on Top is less than 5, and when Issue Date(s) are 10 July - 24 July?", "context": "CREATE TABLE table_name_75 (volume VARCHAR, weeks_on_top VARCHAR, issue_date_s_ VARCHAR)"}, {"answer": "SELECT text FROM table_name_47 WHERE traditional_characters = \"\u5fc3\u5982\u7328\u7334\"", "question": "Which text has traditional characters of \u5fc3\u5982\u7328\u7334?", "context": "CREATE TABLE table_name_47 (text VARCHAR, traditional_characters VARCHAR)"}, {"answer": "SELECT text FROM table_name_42 WHERE simplified_characters = \"\u5fc3\u733f \u2026 \u610f\u9a6c\"", "question": "Which text has simplified characters of \u5fc3\u733f \u2026 \u610f\u9a6c?", "context": "CREATE TABLE table_name_42 (text VARCHAR, simplified_characters VARCHAR)"}, {"answer": "SELECT text FROM table_name_85 WHERE wade_giles = \"ai-ma \u2026 hsin-y\u00fcan\"", "question": "Which text has Wade-Giles translation of ai-ma \u2026 hsin-y\u00fcan?", "context": "CREATE TABLE table_name_85 (text VARCHAR, wade_giles VARCHAR)"}, {"answer": "SELECT pinyin FROM table_name_4 WHERE wade_giles = \"hsin-y\u00fcan-i-ma\"", "question": "What is the Pinyin translation of the Wade-Giles of hsin-y\u00fcan-i-ma?", "context": "CREATE TABLE table_name_4 (pinyin VARCHAR, wade_giles VARCHAR)"}, {"answer": "SELECT wade_giles FROM table_name_44 WHERE pinyin = \"x\u012bn r\u00fa yu\u00e1nh\u00f3u\"", "question": "What is the Wade-Giles translation of the Pinyin x\u012bn r\u00fa yu\u00e1nh\u00f3u?", "context": "CREATE TABLE table_name_44 (wade_giles VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT text FROM table_name_13 WHERE date__ce_ = \"c. 1180\"", "question": "Which text has a date of c. 1180?", "context": "CREATE TABLE table_name_13 (text VARCHAR, date__ce_ VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_42 WHERE gold < 0", "question": "What is the fewest number of silvers have 0 golds?", "context": "CREATE TABLE table_name_42 (silver INTEGER, gold INTEGER)"}, {"answer": "SELECT MIN(total) FROM table_name_42 WHERE gold = 11 AND bronze > 2", "question": "What is the smallest total that has 11 golds and bronzes over 2?", "context": "CREATE TABLE table_name_42 (total INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT total FROM table_name_55 WHERE bronze > 1 AND silver < 5 AND rank = \"9\"", "question": "What is the total having a bronze value over 1, silver under 5, and ranked 9?", "context": "CREATE TABLE table_name_55 (total VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE week < 10 AND opponent = \"denver broncos\"", "question": "When did the Chargers play the Denver Broncos before Week 10?", "context": "CREATE TABLE table_name_87 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_47 WHERE rank > 11 AND gold < 0", "question": "What is the sum of Bronze when the rank is more than 11 and gold is less than 0?", "context": "CREATE TABLE table_name_47 (bronze INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_35 WHERE nation = \"germany\" AND silver < 1", "question": "What is the total number of Total when Germany is the nation with less than 1 silver?", "context": "CREATE TABLE table_name_35 (total VARCHAR, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_70 WHERE gold = 0 AND rank < 16 AND nation = \"georgia\" AND bronze > 2", "question": "What is the average Total that has a Gold of 0, when the rank is less than 16, the nation is Georgia and there is more than 2 for Bronze?", "context": "CREATE TABLE table_name_70 (total INTEGER, bronze VARCHAR, nation VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_46 WHERE nation = \"georgia\" AND rank < 11", "question": "What is the highest Total when Georgia is the nation with less than 11 rank?", "context": "CREATE TABLE table_name_46 (total INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_36 WHERE rank > 16 AND nation = \"romania\" AND silver > 0", "question": "What is the total number of Total with more than 16 rank for the nation of Romania with more than 0 for silver?", "context": "CREATE TABLE table_name_36 (total VARCHAR, silver VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT video_coding FROM table_name_69 WHERE format_name = \"dvcam\"", "question": "What type of video coding has a format name of dvcam?", "context": "CREATE TABLE table_name_69 (video_coding VARCHAR, format_name VARCHAR)"}, {"answer": "SELECT format_name FROM table_name_44 WHERE video_coding = \"dv\" AND color_sampling = \"4:1:1\"", "question": "What format name has dv as video coding and 4:1:1 as the color sampling?", "context": "CREATE TABLE table_name_44 (format_name VARCHAR, video_coding VARCHAR, color_sampling VARCHAR)"}, {"answer": "SELECT SUM(bit_depth) FROM table_name_38 WHERE color_sampling = \"4:1:1\"", "question": "What bit depth has 4:1:1 as the color sampling?", "context": "CREATE TABLE table_name_38 (bit_depth INTEGER, color_sampling VARCHAR)"}, {"answer": "SELECT frame_size FROM table_name_44 WHERE audio_coding = \"pcm 4 ch/16 bit/48khz\" AND format_name = \"dvcam\" AND color_sampling = \"4:1:1\"", "question": "What frame size has pcm 4 ch/16 bit/48khz as audio coding and dvcam as the format name and 4:1:1 as the color sampling?", "context": "CREATE TABLE table_name_44 (frame_size VARCHAR, color_sampling VARCHAR, audio_coding VARCHAR, format_name VARCHAR)"}, {"answer": "SELECT lunar_landing_site FROM table_name_52 WHERE duration_on_lunar_surface = \"21:31\"", "question": "Where was the landing site when the duration on the lunar surface was 21:31?", "context": "CREATE TABLE table_name_52 (lunar_landing_site VARCHAR, duration_on_lunar_surface VARCHAR)"}, {"answer": "SELECT crew FROM table_name_87 WHERE lunar_lander = \"falcon\"", "question": "Who were the crew for the Falcon?", "context": "CREATE TABLE table_name_87 (crew VARCHAR, lunar_lander VARCHAR)"}, {"answer": "SELECT AVG(number_of_s_eva) FROM table_name_50 WHERE lunar_lander = \"orion\"", "question": "What is the average number of EVA for the Orion?", "context": "CREATE TABLE table_name_50 (number_of_s_eva INTEGER, lunar_lander VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_59 WHERE rank < 28 AND accolade = \"the 100 greatest metal albums of the decade\"", "question": "What is the highest Year, when Rank is less than 28, and when Accolade is \"The 100 greatest metal albums of the decade\"?", "context": "CREATE TABLE table_name_59 (year INTEGER, rank VARCHAR, accolade VARCHAR)"}, {"answer": "SELECT accolade FROM table_name_3 WHERE year < 2009 AND country = \"germany\"", "question": "What is Accolade, when Year is less than 2009, and when Country is Germany?", "context": "CREATE TABLE table_name_3 (accolade VARCHAR, year VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_81 WHERE publication = \"dagsavisen\" AND year < 2005", "question": "What is the highest Rank, when Publication is Dagsavisen, and when Year is less than 2005?", "context": "CREATE TABLE table_name_81 (rank INTEGER, publication VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE score = \"0\u20130\" AND away_team = \"scunthorpe united\"", "question": "When has a Score of 0\u20130, and a Away team of scunthorpe united?", "context": "CREATE TABLE table_name_65 (date VARCHAR, score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_98 WHERE score = \"5\u20131\"", "question": "Which Tie has a Score of 5\u20131?", "context": "CREATE TABLE table_name_98 (tie_no VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_74 WHERE tie_no = \"20\"", "question": "Which Home team that has a Tie no of 20?", "context": "CREATE TABLE table_name_74 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_26 WHERE tie_no = \"6\"", "question": "Which Home has a Tie no of 6?", "context": "CREATE TABLE table_name_26 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_93 WHERE tie_no = \"replay\" AND score = \"1\u20132\"", "question": "Which Away team that has a Tie no of replay, and a Score of 1\u20132?", "context": "CREATE TABLE table_name_93 (away_team VARCHAR, tie_no VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE away_team = \"walthamstow avenue\"", "question": "Which Score has a Away team of walthamstow avenue?", "context": "CREATE TABLE table_name_44 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(gp_gs) FROM table_name_41 WHERE effic = \"121.70\" AND avg_g < 218.7", "question": "How many gp-gs have 121.70 as an effic and an avg/g less than 218.7?", "context": "CREATE TABLE table_name_41 (gp_gs VARCHAR, effic VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT MIN(gp_gs) FROM table_name_42 WHERE avg_g < 234.3 AND effic = \"410.80\"", "question": "What is the lowest gp-gs that has an avg/g less than 234.3, with 410.80 as the effic?", "context": "CREATE TABLE table_name_42 (gp_gs INTEGER, avg_g VARCHAR, effic VARCHAR)"}, {"answer": "SELECT last_10_meetings FROM table_name_52 WHERE overall_record = \"slu, 9-8\"", "question": "What is the last 10 meetings that have slu, 9-8 as the overall record?", "context": "CREATE TABLE table_name_52 (last_10_meetings VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT last_5_meetings FROM table_name_69 WHERE current_streak = \"w 5\" AND last_meeting = \"3/18/2010\"", "question": "What is the last 5 meetings that has w 5 as the current streak, and 3/18/2010 as the last meeting?", "context": "CREATE TABLE table_name_69 (last_5_meetings VARCHAR, current_streak VARCHAR, last_meeting VARCHAR)"}, {"answer": "SELECT last_10_meetings FROM table_name_43 WHERE games_played = \"12\"", "question": "What is the last 10 meetings that have 12 as the games played?", "context": "CREATE TABLE table_name_43 (last_10_meetings VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT last_10_meetings FROM table_name_32 WHERE last_meeting = \"11/26/1988\"", "question": "What is the last 10 meetings that have 11/26/1988 as the lasr meeting?", "context": "CREATE TABLE table_name_32 (last_10_meetings VARCHAR, last_meeting VARCHAR)"}, {"answer": "SELECT kansas_state_vs FROM table_name_85 WHERE current_streak = \"w 2\" AND games_played = \"31\"", "question": "What kansas vs. that has w 2 as the current streak, and 31 as games played?", "context": "CREATE TABLE table_name_85 (kansas_state_vs VARCHAR, current_streak VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_58 WHERE opponent = \"philadelphia eagles\" AND week > 9", "question": "What is the sum of the attendance during the game against the philadelphia eagles after week 9?", "context": "CREATE TABLE table_name_58 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_4 WHERE date = \"october 8, 1989\" AND week < 5", "question": "What is the total number of fans attending the game on October 8, 1989 before week 5?", "context": "CREATE TABLE table_name_4 (attendance VARCHAR, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT qualities FROM table_name_59 WHERE sign = \"cancer\"", "question": "What is the qualities of the sign cancer?", "context": "CREATE TABLE table_name_59 (qualities VARCHAR, sign VARCHAR)"}, {"answer": "SELECT season AS :_south FROM table_name_88 WHERE qualities = \"cold & wet\" AND sign = \"scorpio\"", "question": "What is the south season of the scorpio sign, which has cold & wet qualities?", "context": "CREATE TABLE table_name_88 (season VARCHAR, qualities VARCHAR, sign VARCHAR)"}, {"answer": "SELECT AVG(prize_fund___us) AS $__ FROM table_name_56 WHERE owgr_pts > 20 AND dates = \"nov 6-9\"", "question": "What is the average Prize fund ( US$ ), when OWGR pts is greater than 20, and when Dates is Nov 6-9?", "context": "CREATE TABLE table_name_56 (prize_fund___us INTEGER, owgr_pts VARCHAR, dates VARCHAR)"}, {"answer": "SELECT winner FROM table_name_18 WHERE dates = \"dec 11-14\"", "question": "What is Winner, when Dates is Dec 11-14?", "context": "CREATE TABLE table_name_18 (winner VARCHAR, dates VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_48 WHERE rank < 1", "question": "What is the lowest number of games with a rank less than 1?", "context": "CREATE TABLE table_name_48 (games INTEGER, rank INTEGER)"}, {"answer": "SELECT name FROM table_name_46 WHERE points = 305", "question": "What is the name of the player with 305 points?", "context": "CREATE TABLE table_name_46 (name VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_58 WHERE team = \"roanne\" AND games < 14", "question": "What is the total rank of team roanne, which has less than 14 games?", "context": "CREATE TABLE table_name_58 (rank VARCHAR, team VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(episode_number) FROM table_name_79 WHERE air_date = \"20 july 2007\"", "question": "What is the lowest of  Episode Number that has a Air Date on 20 july 2007?", "context": "CREATE TABLE table_name_79 (episode_number INTEGER, air_date VARCHAR)"}, {"answer": "SELECT guest_host FROM table_name_19 WHERE episode_number = 7", "question": "What kind of Guest Host has a Episode Number of 7?", "context": "CREATE TABLE table_name_19 (guest_host VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT AVG(episode_number) FROM table_name_41 WHERE air_date = \"29 june 2007\"", "question": "What kind of Episode Number has a Air Date on 29 june 2007?", "context": "CREATE TABLE table_name_41 (episode_number INTEGER, air_date VARCHAR)"}, {"answer": "SELECT guest_host FROM table_name_10 WHERE episode_number = 7", "question": "What kind of Guest Host has a Episode Number of 7?", "context": "CREATE TABLE table_name_10 (guest_host VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT \"coat_of_cash\" AS _wearing_celebrity FROM table_name_92 WHERE episode_number > 1 AND musical_guest__song_performed_ = \"amy macdonald ( mr rock & roll )\"", "question": "WHich Coat of Cash\" Wearing Celebrity has a Episode Number larger than 1 and with amy macdonald ( mr rock & roll )?", "context": "CREATE TABLE table_name_92 (episode_number VARCHAR, musical_guest__song_performed_ VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_20 WHERE silver = 3 AND total > 5", "question": "What is the highest bronze when the silver was 3 and the total was larger than 5?", "context": "CREATE TABLE table_name_20 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_67 WHERE silver = 0 AND gold > 0 AND total > 2", "question": "What is the highest bronze when the silver was 0, the gold was larger than 0, and the total was larger than 2?", "context": "CREATE TABLE table_name_67 (bronze INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_43 WHERE rank < 5 AND nation = \"france\" AND total > 19", "question": "What is the lowest silver for France with a rank less than 5 and a total larger than 19?", "context": "CREATE TABLE table_name_43 (silver INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_43 WHERE rank < 6 AND total < 5", "question": "How many bronze had a rank of less than 6 and a total less than 5?", "context": "CREATE TABLE table_name_43 (bronze VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE winning_score = 72 - 66 - 67 - 71 = 276", "question": "Which date was the Winning Score 72-66-67-71=276?", "context": "CREATE TABLE table_name_87 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_54 WHERE tournament = \"bob hope desert classic\"", "question": "What is the Margin of victory at the Bob Hope Desert Classic Tournament?", "context": "CREATE TABLE table_name_54 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE winning_score = 71 - 69 - 68 - 70 = 278", "question": "On what Date is the Winning Score 71-69-68-70=278?", "context": "CREATE TABLE table_name_60 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT draw FROM table_name_95 WHERE performer = \"nigel connell\"", "question": "What draw did Nigel Connell?", "context": "CREATE TABLE table_name_95 (draw VARCHAR, performer VARCHAR)"}, {"answer": "SELECT performer FROM table_name_22 WHERE points = 57", "question": "Who scored 57 points?", "context": "CREATE TABLE table_name_22 (performer VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_44 WHERE performer = \"nigel connell\"", "question": "How many points did Nigel Connell have?", "context": "CREATE TABLE table_name_44 (points VARCHAR, performer VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_91 WHERE performer = \"gary o'shaughnessy\"", "question": "How many draws did gary o'shaughnessy have?", "context": "CREATE TABLE table_name_91 (draw INTEGER, performer VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_19 WHERE week = 18", "question": "What is the Attendance with a Week that is 18?", "context": "CREATE TABLE table_name_19 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_69 WHERE date = \"november 1, 1993\"", "question": "What Attendance has a Date that is november 1, 1993?", "context": "CREATE TABLE table_name_69 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_3 WHERE game_site = \"joe robbie stadium\"", "question": "What is the Record with a Game Site that is joe robbie stadium?", "context": "CREATE TABLE table_name_3 (record VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_26 WHERE bronze > 0 AND gold < 0", "question": "What is the sum of Silver with a Bronze that is larger than 0 with a Gold smaller than 0?", "context": "CREATE TABLE table_name_26 (silver INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_97 WHERE total < 1", "question": "What is the average Silver with a Total that is smaller than 1?", "context": "CREATE TABLE table_name_97 (silver INTEGER, total INTEGER)"}, {"answer": "SELECT MIN(rank) FROM table_name_43 WHERE nation = \"east germany\"", "question": "What is the lowest Rank with a Nation that is east germany?", "context": "CREATE TABLE table_name_43 (rank INTEGER, nation VARCHAR)"}, {"answer": "SELECT COUNT(established) FROM table_name_65 WHERE sport = \"soccer\" AND venue = \"kuntz stadium\"", "question": "What is the total number of Established for soccer plated in kuntz stadium?", "context": "CREATE TABLE table_name_65 (established VARCHAR, sport VARCHAR, venue VARCHAR)"}, {"answer": "SELECT club FROM table_name_90 WHERE established > 2000 AND sport = \"soccer\" AND venue = \"kuntz stadium\"", "question": "What is the Club that has an Established more than 2000 for soccer plated in kuntz stadium?", "context": "CREATE TABLE table_name_90 (club VARCHAR, venue VARCHAR, established VARCHAR, sport VARCHAR)"}, {"answer": "SELECT MAX(established) FROM table_name_79 WHERE venue = \"kuntz stadium\"", "question": "What is the highest Established for the kuntz stadium?", "context": "CREATE TABLE table_name_79 (established INTEGER, venue VARCHAR)"}, {"answer": "SELECT MAX(titles) FROM table_name_9 WHERE current_run_since < 2013 AND club = \"j\u00e4rve\"", "question": "What is the highest number of titles won by the J\u00e4rve club before 2013?", "context": "CREATE TABLE table_name_9 (titles INTEGER, current_run_since VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_57 WHERE opposition = \"rajasthan royals\" AND tied > 0", "question": "What is the total number of losses against the Rajasthan Royals with more than 0 ties?", "context": "CREATE TABLE table_name_57 (lost VARCHAR, opposition VARCHAR, tied VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_49 WHERE tied > 0", "question": "What is the average number of losses when there are more than 0 ties?", "context": "CREATE TABLE table_name_49 (lost INTEGER, tied INTEGER)"}, {"answer": "SELECT location FROM table_name_67 WHERE result = \"l 31-52\"", "question": "Which Location has a result of L 31-52?", "context": "CREATE TABLE table_name_67 (location VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_88 WHERE rank < 8 AND matches = 261", "question": "What is the mean number of goals when the rank's less than 8 and there are 261 matches?", "context": "CREATE TABLE table_name_88 (goals INTEGER, rank VARCHAR, matches VARCHAR)"}, {"answer": "SELECT years FROM table_name_7 WHERE rank > 6 AND name = \"oleksandr kosyrin\"", "question": "Which years had a rank of more than 6 and involved Oleksandr Kosyrin?", "context": "CREATE TABLE table_name_7 (years VARCHAR, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE label = \"alfa records\" AND catalog = \"alca-487\"", "question": "What is the Date when the label was alfa records, and a Catalog of alca-487?", "context": "CREATE TABLE table_name_61 (date VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_3 WHERE label = \"alfa records\" AND catalog = \"alca-9016\"", "question": "What is the Format when Alfa records is the label, and there is a Catalog of alca-9016?", "context": "CREATE TABLE table_name_3 (format VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_89 WHERE catalog = \"alca-487\"", "question": "What is the Region with a Catalog of alca-487?", "context": "CREATE TABLE table_name_89 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_1 WHERE format = \"ed remaster cd\" AND label = \"village records\" AND date = \"march 13, 2002\"", "question": "What is the Catalog when the format is ed remaster cd, and a Label of village records, and a Date of march 13, 2002?", "context": "CREATE TABLE table_name_1 (catalog VARCHAR, date VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT format FROM table_name_12 WHERE catalog = \"alca-487\"", "question": "What is the Format for the alca-487 catalog?", "context": "CREATE TABLE table_name_12 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_81 WHERE label = \"alfa records\" AND catalog = \"alca-9016\"", "question": "What is the Format for the alfa records Label, and a Catalog of alca-9016?", "context": "CREATE TABLE table_name_81 (format VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_33 WHERE total = 1 AND bronze > 0", "question": "Which Rank has a Total of 1 and a Bronze larger than 0?", "context": "CREATE TABLE table_name_33 (rank INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_27 WHERE nation = \"norway\" AND gold < 3", "question": "What kind of Silver has a Nation of norway and a Gold smaller than 3?", "context": "CREATE TABLE table_name_27 (silver INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_58 WHERE total < 2 AND rank > 8", "question": "Which Silver has a Total smaller than 2 and a Rank larger than 8", "context": "CREATE TABLE table_name_58 (silver INTEGER, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_6 WHERE bronze = 0 AND total < 3 AND nation = \"austria\"", "question": "What kind of Rank has a Bronze of 0 and a Total smaller than 3 and a Nation of austria?", "context": "CREATE TABLE table_name_6 (rank INTEGER, nation VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_96 WHERE date = \"october 8, 2006\"", "question": "What final score was there on October 8, 2006?", "context": "CREATE TABLE table_name_96 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_26 WHERE surface = \"hard (i)\" AND date = \"october 9, 2005\"", "question": "Which final opponent's surface was hard (i) and participated on October 9, 2005?", "context": "CREATE TABLE table_name_26 (opponent_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_83 WHERE result = \"w 13\u201312\"", "question": "Who was the opponent at the game with a result of W 13\u201312?", "context": "CREATE TABLE table_name_83 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE opponent = \"chicago bears\"", "question": "What was the date of the game against the Chicago Bears?", "context": "CREATE TABLE table_name_90 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_66 WHERE chassis = \"bugatti t35b\" AND driver = \"heinrich-joachim von morgen\"", "question": "Which Entrant had the Bugatti T35B Chassis and the Driver, Heinrich-Joachim Von Morgen?", "context": "CREATE TABLE table_name_66 (entrant VARCHAR, chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine FROM table_name_1 WHERE chassis = \"bugatti t51\" AND entrant = \"private entry\"", "question": "What was the Engine, when the Chassis was Bugatti T51, and when the Entrant was a Private Entry?", "context": "CREATE TABLE table_name_1 (engine VARCHAR, chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT driver FROM table_name_87 WHERE chassis = \"bugatti t51\" AND entrant = \"automobiles ettore bugatti\"", "question": "Who was the Driver, when the Chassis was Bugatti T51, and when the Entrant was Automobiles Ettore Bugatti?", "context": "CREATE TABLE table_name_87 (driver VARCHAR, chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT driver FROM table_name_3 WHERE engine = \"7.1 l6\" AND chassis = \"mercedes-benz ssk l\"", "question": "Who was the Driver, when the Engine was 7.1 l6, and when the Chassis was Mercedes-Benz SSK l?", "context": "CREATE TABLE table_name_3 (driver VARCHAR, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_44 WHERE against > 1106 AND wins > 13", "question": "Can you tell me the sum of Draws that has the Against larger than 1106, and the Wins larger than 13?", "context": "CREATE TABLE table_name_44 (draws INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_71 WHERE ballarat_fl = \"daylesford\" AND byes < 1", "question": "Can you tell me the lowest Wins that has the Ballarat FL of daylesford, and the Byes smaller than 1?", "context": "CREATE TABLE table_name_71 (wins INTEGER, ballarat_fl VARCHAR, byes VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_56 WHERE losses > 9 AND byes = 2 AND draws > 0", "question": "Can you tell me the highest Against that has the Losses larger than 9, and the Byes of 2, and the Draws larger than 0?", "context": "CREATE TABLE table_name_56 (against INTEGER, draws VARCHAR, losses VARCHAR, byes VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_15 WHERE wins < 3 AND byes > 2", "question": "Can you tell me the sum of Draws that had the Wins smaller than 3, and the Byes larger than 2?", "context": "CREATE TABLE table_name_15 (draws INTEGER, wins VARCHAR, byes VARCHAR)"}, {"answer": "SELECT AVG(yards) FROM table_name_2 WHERE long < 3", "question": "Which Yards has a Long smaller than 3?", "context": "CREATE TABLE table_name_2 (yards INTEGER, long INTEGER)"}, {"answer": "SELECT regulator FROM table_name_13 WHERE conduct_of_litigation = \"yes\" AND probate_activities = \"yes\"", "question": "What is Regulator, when Conduct of Litigation is Yes, and when Probate Activities is Yes?", "context": "CREATE TABLE table_name_13 (regulator VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR)"}, {"answer": "SELECT reserved_instruments FROM table_name_95 WHERE conduct_of_litigation = \"yes\" AND probate_activities = \"no\"", "question": "What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is No?", "context": "CREATE TABLE table_name_95 (reserved_instruments VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR)"}, {"answer": "SELECT administration_of_oaths FROM table_name_43 WHERE rights_of_audience = \"yes\" AND reserved_instruments = \"yes\"", "question": "What is Administration of Oaths, when Rights of Audience is Yes, and when Reserved Instruments is Yes?", "context": "CREATE TABLE table_name_43 (administration_of_oaths VARCHAR, rights_of_audience VARCHAR, reserved_instruments VARCHAR)"}, {"answer": "SELECT reserved_instruments FROM table_name_19 WHERE conduct_of_litigation = \"yes\" AND probate_activities = \"yes\"", "question": "What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is Yes?", "context": "CREATE TABLE table_name_19 (reserved_instruments VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR)"}, {"answer": "SELECT probate_activities FROM table_name_6 WHERE reserved_instruments = \"no\" AND regulator = \"chartered institute of legal executives\"", "question": "What is Probate Activities, when Reserved Instruments is No, and when Regulator is Chartered Institute of Legal Executives?", "context": "CREATE TABLE table_name_6 (probate_activities VARCHAR, reserved_instruments VARCHAR, regulator VARCHAR)"}, {"answer": "SELECT probate_activities FROM table_name_16 WHERE notarial_activities = \"no\" AND conduct_of_litigation = \"yes\" AND regulator = \"association of law costs draftsmen\"", "question": "What is Probate Activities, when Notarial Activities is No, when Conduct of Litigation is Yes, and when Regulator is Association of Law Costs Draftsmen?", "context": "CREATE TABLE table_name_16 (probate_activities VARCHAR, regulator VARCHAR, notarial_activities VARCHAR, conduct_of_litigation VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_87 WHERE week > 1 AND opponent = \"new york jets\"", "question": "What is the highest attendance for the game after week 1 against the New York Jets?", "context": "CREATE TABLE table_name_87 (attendance INTEGER, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT average FROM table_name_63 WHERE player = \"matthew elliott (vic)\"", "question": "What is the average of player Matthew Elliott (vic)?", "context": "CREATE TABLE table_name_63 (average VARCHAR, player VARCHAR)"}, {"answer": "SELECT runs FROM table_name_84 WHERE rank = \"4\"", "question": "How many runs were ranked 4?", "context": "CREATE TABLE table_name_84 (runs VARCHAR, rank VARCHAR)"}, {"answer": "SELECT formula FROM table_name_63 WHERE refractive_index_es__5893nm = \"1.97\"", "question": "Which formula has a refractive index 589.3 at 1.97?", "context": "CREATE TABLE table_name_63 (formula VARCHAR, refractive_index_es__5893nm VARCHAR)"}, {"answer": "SELECT country_of_origin FROM table_name_74 WHERE type = \"disposable\" AND primary_cartridge = \"105mm\" AND year_of_intro < 2008", "question": "What is Country of Origin, when Type is Disposable, when Primary Cartridge is 105mm, and when Year of Intro is less than 2008?", "context": "CREATE TABLE table_name_74 (country_of_origin VARCHAR, year_of_intro VARCHAR, type VARCHAR, primary_cartridge VARCHAR)"}, {"answer": "SELECT country_of_origin FROM table_name_10 WHERE year_of_intro = 1977", "question": "What is Country of Origin, when Year of Intro is 1977?", "context": "CREATE TABLE table_name_10 (country_of_origin VARCHAR, year_of_intro VARCHAR)"}, {"answer": "SELECT country_of_origin FROM table_name_27 WHERE year_of_intro > 1985 AND primary_cartridge = \"125mm\"", "question": "What is Country of Origin, when Year of Intro is greater than 1985, and when Primary Cartridge is 125mm?", "context": "CREATE TABLE table_name_27 (country_of_origin VARCHAR, year_of_intro VARCHAR, primary_cartridge VARCHAR)"}, {"answer": "SELECT COUNT(year_of_intro) FROM table_name_87 WHERE country_of_origin = \"soviet union\" AND type = \"reusable\" AND primary_cartridge = \"40mm\" AND name__designation = \"rpg-29\"", "question": "What is the total number of Year of Intro(s), when Country of Origin is Soviet Union, when Type is Reusable, when Primary Cartridge is 40mm, and when Name/ Designation is RPG-29?", "context": "CREATE TABLE table_name_87 (year_of_intro VARCHAR, name__designation VARCHAR, primary_cartridge VARCHAR, country_of_origin VARCHAR, type VARCHAR)"}, {"answer": "SELECT home FROM table_name_20 WHERE venue = \"bucharest\" AND score = \"9-9\"", "question": "Who was at Home at the Bucharest Venue with a Score of 9-9?", "context": "CREATE TABLE table_name_20 (home VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE home = \"romania\" AND venue = \"bucharest\" AND score = \"13-19\"", "question": "What date were Romania at Home at the Bucharest Venue with a Score of 13-19?", "context": "CREATE TABLE table_name_80 (date VARCHAR, score VARCHAR, home VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home FROM table_name_83 WHERE score = \"13-19\"", "question": "Who was at Home when the Score was 13-19?", "context": "CREATE TABLE table_name_83 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_68 WHERE televote < 633 AND artist = \"vilma voroblevait\u0117\" AND place > 14", "question": "What draw average has a televote less than 633 and Vilma Voroblevait\u0117 as artist and the place is greater than 14?", "context": "CREATE TABLE table_name_68 (draw INTEGER, place VARCHAR, televote VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MAX(televote) FROM table_name_64 WHERE artist = \"justinas lapatinskas\" AND draw > 9", "question": "Artist Justinas Lapatinskas with a draw of greater than 9 got what as the highest televote?", "context": "CREATE TABLE table_name_64 (televote INTEGER, artist VARCHAR, draw VARCHAR)"}, {"answer": "SELECT SUM(televote) FROM table_name_44 WHERE artist = \"pokeris\" AND place < 10", "question": "What is the total of televote for the artist Pokeris when the place was less than 10?", "context": "CREATE TABLE table_name_44 (televote INTEGER, artist VARCHAR, place VARCHAR)"}, {"answer": "SELECT televote FROM table_name_96 WHERE draw > 11 AND place < 4", "question": "With a draw greater than 11 and the place smaller than 4 what was the televote?", "context": "CREATE TABLE table_name_96 (televote VARCHAR, draw VARCHAR, place VARCHAR)"}, {"answer": "SELECT agg FROM table_name_49 WHERE opponent = \"koper\"", "question": "What was the aggregate total for the match against Koper?", "context": "CREATE TABLE table_name_49 (agg VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT canadian_championship FROM table_name_6 WHERE concacaf_champions_league = \"semifinals\"", "question": "What Canadian Championship had CONCACAF Champions League of semifinals?", "context": "CREATE TABLE table_name_6 (canadian_championship VARCHAR, concacaf_champions_league VARCHAR)"}, {"answer": "SELECT regular_season FROM table_name_87 WHERE playoffs = \"0 mls cups\"", "question": "Which regular season had the playoffs of 0 mls cups?", "context": "CREATE TABLE table_name_87 (regular_season VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE goal = 16", "question": "What was the score with a goal of 16?", "context": "CREATE TABLE table_name_93 (score VARCHAR, goal VARCHAR)"}, {"answer": "SELECT MAX(super_g) FROM table_name_46 WHERE season > 1996", "question": "What is the highest Super G, when Season is later than 1996?", "context": "CREATE TABLE table_name_46 (super_g INTEGER, season INTEGER)"}, {"answer": "SELECT combined FROM table_name_46 WHERE super_g < 10 AND overall < 4", "question": "What is Combined, when Super G is less than 10, and when Overall is less than 4?", "context": "CREATE TABLE table_name_46 (combined VARCHAR, super_g VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_63 WHERE super_g = 19", "question": "What is the highest Season, when Super G is 19?", "context": "CREATE TABLE table_name_63 (season INTEGER, super_g VARCHAR)"}, {"answer": "SELECT outlet FROM table_name_68 WHERE in_state_area = \"055 1,497km 2 578mi 2\"", "question": "What outlet has and in-state area of 055 1,497km 2 578mi 2?", "context": "CREATE TABLE table_name_68 (outlet VARCHAR, in_state_area VARCHAR)"}, {"answer": "SELECT total_area FROM table_name_61 WHERE outlet = \"arkansas river\" AND _percentage_in_state = \"a021 100%\"", "question": "What is the total area of the Arkansas River outlet with a % in-state of a021 100%?", "context": "CREATE TABLE table_name_61 (total_area VARCHAR, outlet VARCHAR, _percentage_in_state VARCHAR)"}, {"answer": "SELECT in_state_area FROM table_name_30 WHERE outlet = \"colorado river\" AND _percentage_in_state = \"a038 84.8%\"", "question": "With an outlet of Colorado River and a % instate of a038 84.8% what is in-state area?", "context": "CREATE TABLE table_name_30 (in_state_area VARCHAR, outlet VARCHAR, _percentage_in_state VARCHAR)"}, {"answer": "SELECT in_state_area FROM table_name_81 WHERE outlet = \"south platte river\" AND basin = \"big thompson river\"", "question": "What is the in-state area with an outlet of South Platte River and Big Thompson river as the basin?", "context": "CREATE TABLE table_name_81 (in_state_area VARCHAR, outlet VARCHAR, basin VARCHAR)"}, {"answer": "SELECT total_area FROM table_name_7 WHERE in_state_area = \"053 1,654km 2 639mi 2\"", "question": "With an in-state area of 053 1,654km 2 639mi 2, what is the total area?", "context": "CREATE TABLE table_name_7 (total_area VARCHAR, in_state_area VARCHAR)"}, {"answer": "SELECT basin FROM table_name_66 WHERE in_state_area = \"071 238km 2 92mi 2\"", "question": "What is the name of the basin with an in-state area of 071 238km 2 92mi 2?", "context": "CREATE TABLE table_name_66 (basin VARCHAR, in_state_area VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_97 WHERE ends = 2011 AND moving_from = \"thrasyvoulos\"", "question": "What was the transfer fee for the player ending in 2011 and moving from Thrasyvoulos?", "context": "CREATE TABLE table_name_97 (transfer_fee VARCHAR, ends VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_33 WHERE ends > 2010 AND transfer_window = \"winter\"", "question": "What was the transfer fee for the player moving in the winter window and ending in a year after 2010?", "context": "CREATE TABLE table_name_33 (transfer_fee VARCHAR, ends VARCHAR, transfer_window VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_60 WHERE attendance < 34 OFFSET 336", "question": "Can you tell me the lowest Week that has the Attendance smaller than 34,336?", "context": "CREATE TABLE table_name_60 (week INTEGER, attendance INTEGER)"}, {"answer": "SELECT opponents_in_final FROM table_name_9 WHERE outcome = \"runner-up\" AND date = \"april 16, 2006\"", "question": "Who was the opponents in the final that was played on April 16, 2006 and the outcome was runner-up?", "context": "CREATE TABLE table_name_9 (opponents_in_final VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents_in_final FROM table_name_22 WHERE surface = \"hard\" AND score_in_final = \"6\u20131, 1\u20136, 7\u20136(4)\"", "question": "Who were the opponents in the final when the game was played on hard surface and the score of the final was 6\u20131, 1\u20136, 7\u20136(4)?", "context": "CREATE TABLE table_name_22 (opponents_in_final VARCHAR, surface VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE margin_of_victory = \"3 and 2\"", "question": "Which date's margin of victory was 3 and 2?", "context": "CREATE TABLE table_name_45 (date VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_76 WHERE winning_score = 67 - 68 - 70 - 66 = 271", "question": "What is the to par when the winning score was 67-68-70-66=271?", "context": "CREATE TABLE table_name_76 (to_par VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_45 WHERE tournament = \"transitions championship\"", "question": "What is the to par when the tournament involved was the Transitions Championship?", "context": "CREATE TABLE table_name_45 (to_par VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE tournament = \"transitions championship\"", "question": "On what date was the Transitions Championship?", "context": "CREATE TABLE table_name_46 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_64 WHERE date = \"jul 14, 1968\"", "question": "Who was the runner-up on Jul 14, 1968?", "context": "CREATE TABLE table_name_64 (runner_s__up VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_91 WHERE runner_s__up = \"charles coody\"", "question": "What is the winning score of the tournament with Charles Coody as the runner-up?", "context": "CREATE TABLE table_name_91 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_2 WHERE 2006 = \"a\" AND tournament = \"french open\"", "question": "What is the 2011 value of the French Open, which has a 2006 value of A?", "context": "CREATE TABLE table_name_2 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_13 WHERE 2006 = \"a\" AND 2011 = \"1r\"", "question": "What is the tournament with a 2006 value of A and a 2011 value of 1r?", "context": "CREATE TABLE table_name_13 (tournament VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_16 WHERE tournament = \"us open\"", "question": "What is the 2007 value of the US Open?", "context": "CREATE TABLE table_name_16 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_59 WHERE 2006 = \"a\" AND 2011 = \"3r\"", "question": "What is the tournament with a 2006 value of A and a 2011 value of 3r?", "context": "CREATE TABLE table_name_59 (tournament VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_47 WHERE region = \"germany\"", "question": "What Catalog was released in Germany?", "context": "CREATE TABLE table_name_47 (catalog VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_name_5 WHERE catalog = \"magik muzik 805-5\"", "question": "What Region was the Catalog magik muzik 805-5 released in?", "context": "CREATE TABLE table_name_5 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT SUM(date) FROM table_name_71 WHERE catalog = \"nebbc003\"", "question": "What is the total number of Dates during which the Catalog nebbc003 was given?", "context": "CREATE TABLE table_name_71 (date INTEGER, catalog VARCHAR)"}, {"answer": "SELECT MAX(population_per_km\u00b2__2009_) FROM table_name_33 WHERE province = \"western province\" AND area__km\u00b2_ > 5 OFFSET 475", "question": "What is the highest Population per km\u00b2 (2009) that is in western province, with an Area (km\u00b2) larger than 5,475?", "context": "CREATE TABLE table_name_33 (population_per_km\u00b2__2009_ INTEGER, province VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT MIN(population_per_km\u00b2__2009_) FROM table_name_21 WHERE province = \"solomon islands\" AND area__km\u00b2_ < 28 OFFSET 400", "question": "What is the lowest Population per km\u00b2 (2009) that has a Solomon Islands province, with an Area (km\u00b2) smaller than 28,400?", "context": "CREATE TABLE table_name_21 (population_per_km\u00b2__2009_ INTEGER, province VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT team FROM table_name_92 WHERE year = 2005", "question": "What Team was in 2005?", "context": "CREATE TABLE table_name_92 (team VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(finish) FROM table_name_17 WHERE manufacturer = \"dodge\" AND start < 9 AND year < 2008", "question": "Before 2008, if the Manufacturer is dodge and the start is under 9, what's the highest finish time?", "context": "CREATE TABLE table_name_17 (finish INTEGER, year VARCHAR, manufacturer VARCHAR, start VARCHAR)"}, {"answer": "SELECT AVG(finish) FROM table_name_80 WHERE team = \"penske\" AND start < 9", "question": "When the team is penske and they start under 9, what's the average finish time?", "context": "CREATE TABLE table_name_80 (finish INTEGER, team VARCHAR, start VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_70 WHERE total > 2 AND bronze > 1 AND silver < 1", "question": "What is the sum of Gold, when Total is greater than 2, when Bronze is greater than 1, and when Silver is less than 1?", "context": "CREATE TABLE table_name_70 (gold INTEGER, silver VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_14 WHERE total < 1", "question": "What is the sum of Gold, when Total is less than 1?", "context": "CREATE TABLE table_name_14 (gold INTEGER, total INTEGER)"}, {"answer": "SELECT AVG(total) FROM table_name_71 WHERE gold = 0 AND nation = \"iran\"", "question": "What is the average Total, when Gold is 0, and when Nation is Iran?", "context": "CREATE TABLE table_name_71 (total INTEGER, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_45 WHERE nation = \"west germany\" AND gold > 2", "question": "What is the sum of Total, when Nation is West Germany, and when Gold is greater than 2?", "context": "CREATE TABLE table_name_45 (total INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_12 WHERE gold < 0", "question": "What is the average Total, when Gold is less than 0?", "context": "CREATE TABLE table_name_12 (total INTEGER, gold INTEGER)"}, {"answer": "SELECT content FROM table_name_58 WHERE television_service = \"vesti\"", "question": "What is the content of the Television service of Vesti?", "context": "CREATE TABLE table_name_58 (content VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT television_service FROM table_name_49 WHERE content = \"general television\"", "question": "Which Television service has a Content of general television?", "context": "CREATE TABLE table_name_49 (television_service VARCHAR, content VARCHAR)"}, {"answer": "SELECT administrative_district FROM table_name_76 WHERE pre_1009_province = \"gwannae -do\" AND post_1009_province = \"seohae -do\"", "question": "Which Administrative district has a Pre-1009 province of gwannae -do and a Post-1009 province of seohae -do?", "context": "CREATE TABLE table_name_76 (administrative_district VARCHAR, pre_1009_province VARCHAR, post_1009_province VARCHAR)"}, {"answer": "SELECT modern_equivalent FROM table_name_15 WHERE pre_1009_province = \"sakbang -do\" AND province_of_silla = \"sakju\"", "question": "What kind of Modern equivalent that has a Pre-1009 province of sakbang -do, and a Province of Silla of sakju?", "context": "CREATE TABLE table_name_15 (modern_equivalent VARCHAR, pre_1009_province VARCHAR, province_of_silla VARCHAR)"}, {"answer": "SELECT modern_equivalent FROM table_name_88 WHERE post_1009_province = \"gyeongsang -do\" AND administrative_district = \"jinju -mok\" AND province_of_silla = \"gangju\"", "question": "What kind of Modern equivalent has a Post-1009 province of gyeongsang -do, and a Administrative district of jinju -mok, and a Province of Silla of gangju?", "context": "CREATE TABLE table_name_88 (modern_equivalent VARCHAR, province_of_silla VARCHAR, post_1009_province VARCHAR, administrative_district VARCHAR)"}, {"answer": "SELECT province_of_silla FROM table_name_25 WHERE modern_equivalent = \"pyeongan\"", "question": "WHat kind of Province of Silla has a Modern equivalent of pyeongan?", "context": "CREATE TABLE table_name_25 (province_of_silla VARCHAR, modern_equivalent VARCHAR)"}, {"answer": "SELECT pre_1009_province FROM table_name_36 WHERE post_1009_province = \"donggye\"", "question": "Which Pre-1009 province has a Post-1009 province of donggye?", "context": "CREATE TABLE table_name_36 (pre_1009_province VARCHAR, post_1009_province VARCHAR)"}, {"answer": "SELECT province_of_silla FROM table_name_33 WHERE modern_equivalent = \"south jeolla\" AND administrative_district = \"seungju\"", "question": "WHich Province of Silla has a Modern equivalent of south jeolla, and a Administrative district of seungju?", "context": "CREATE TABLE table_name_33 (province_of_silla VARCHAR, modern_equivalent VARCHAR, administrative_district VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_12 WHERE team = \"first team\" AND position = \"midfield\"", "question": "What was the lowest year that a player from midfield won first team honors?", "context": "CREATE TABLE table_name_12 (year INTEGER, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE tournament = \"munich, germany\"", "question": "What is the date of the munich, germany tournament?", "context": "CREATE TABLE table_name_52 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_84 WHERE date = \"october 27, 2003\"", "question": "What tournament is on October 27, 2003?", "context": "CREATE TABLE table_name_84 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_final FROM table_name_88 WHERE date = \"may 22, 2006\"", "question": "Who is the opponent in the final of the tournament on May 22, 2006?", "context": "CREATE TABLE table_name_88 (opponent_in_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_53 WHERE opponent_in_final = \"david nalbandian\"", "question": "What is the surface of the tournament with david nalbandian as the opponent in the final?", "context": "CREATE TABLE table_name_53 (surface VARCHAR, opponent_in_final VARCHAR)"}, {"answer": "SELECT player FROM table_name_66 WHERE country = \"united states\" AND score = 70 - 70 - 71 = 211", "question": "Who was the player from the United States with a score of 70-70-71=211?", "context": "CREATE TABLE table_name_66 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_10 WHERE to_par = \"+1\" AND player = \"dave stockton\"", "question": "What place was Dave Stockton when he had a to par of +1?", "context": "CREATE TABLE table_name_10 (place VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE to_par = \"+2\" AND score = 78 - 69 - 68 = 215", "question": "Who had a to par of +2 and a score of 78-69-68=215?", "context": "CREATE TABLE table_name_22 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_63 WHERE player = \"tom kite\"", "question": "What was Tom Kite's to par?", "context": "CREATE TABLE table_name_63 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE place = \"t3\"", "question": "What was the score of T3 place?", "context": "CREATE TABLE table_name_67 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT Leading AS scorer FROM table_name_45 WHERE score = \"68-79\"", "question": "Leading scorer during the game of 68-79?", "context": "CREATE TABLE table_name_45 (Leading VARCHAR, score VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_27 WHERE city = \"milwaukee\"", "question": "Who is the runner-up from Milwaukee?", "context": "CREATE TABLE table_name_27 (runner_up VARCHAR, city VARCHAR)"}, {"answer": "SELECT oil_pattern FROM table_name_26 WHERE runner_up = \"pete weber\"", "question": "What was the oil pattern for runner-up Pete Weber?", "context": "CREATE TABLE table_name_26 (oil_pattern VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT city FROM table_name_22 WHERE event = \"dick weber open\"", "question": "What city was the Dick Weber Open in?", "context": "CREATE TABLE table_name_22 (city VARCHAR, event VARCHAR)"}, {"answer": "SELECT city FROM table_name_21 WHERE oil_pattern = \"chameleon\" AND event = \"go rv'ing classic\"", "question": "What city had the chameleon oil pattern at the Go RV'ing Classic?", "context": "CREATE TABLE table_name_21 (city VARCHAR, oil_pattern VARCHAR, event VARCHAR)"}, {"answer": "SELECT notes FROM table_name_50 WHERE year < 2010", "question": "What notes are for years earlier than 2010?", "context": "CREATE TABLE table_name_50 (notes VARCHAR, year INTEGER)"}, {"answer": "SELECT competition FROM table_name_8 WHERE year > 2009 AND notes = \"team\"", "question": "What competition took place in a year later than 2009 with team notes?", "context": "CREATE TABLE table_name_8 (competition VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT position FROM table_name_90 WHERE year = 2010 AND notes = \"team\"", "question": "What was the position in 2010 with team notes?", "context": "CREATE TABLE table_name_90 (position VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_51 WHERE tournament = \"beijing\"", "question": "What is the lowest Year, when Tournament is \"Beijing\"?", "context": "CREATE TABLE table_name_51 (year INTEGER, tournament VARCHAR)"}, {"answer": "SELECT winner FROM table_name_11 WHERE year = 2013", "question": "What is Winner, when Year is 2013?", "context": "CREATE TABLE table_name_11 (winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT round FROM table_name_61 WHERE tournament = \"paris\"", "question": "What is Round, when Tournament is \"Paris\"?", "context": "CREATE TABLE table_name_61 (round VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT round FROM table_name_60 WHERE winner = \"ivanovic\" AND year < 2008 AND tournament = \"paris\"", "question": "What is Round, when Winner is \"Ivanovic\", when Year is less than 2008, and when Tournament is \"Paris\"?", "context": "CREATE TABLE table_name_60 (round VARCHAR, tournament VARCHAR, winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE year < 2007 AND tournament = \"sydney\"", "question": "What is Score, when Year is before 2007, and when Tournament is \"Sydney\"?", "context": "CREATE TABLE table_name_88 (score VARCHAR, year VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_86 WHERE home_team = \"west coast\"", "question": "What is the lowest crowd of the west coast home team?", "context": "CREATE TABLE table_name_86 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT ground FROM table_name_74 WHERE away_team = \"geelong\"", "question": "What is the ground of the Geelong Away team?", "context": "CREATE TABLE table_name_74 (ground VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT team FROM table_name_63 WHERE laps > 49 AND grid = 8", "question": "What team has more than 49 laps and a grid of 8?", "context": "CREATE TABLE table_name_63 (team VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_16 WHERE laps > 50", "question": "What is the grid sum with more than 50 laps?", "context": "CREATE TABLE table_name_16 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT track FROM table_name_47 WHERE year = 1978", "question": "What's the track for 1978?", "context": "CREATE TABLE table_name_47 (track VARCHAR, year VARCHAR)"}, {"answer": "SELECT track FROM table_name_18 WHERE year = 1982", "question": "What's the track for 1982?", "context": "CREATE TABLE table_name_18 (track VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(long) FROM table_name_3 WHERE loss < 7 AND avg_g < 25.1", "question": "What was the highest long with less than 7 losses and an Avg/G smaller than 25.1?", "context": "CREATE TABLE table_name_3 (long INTEGER, loss VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT AVG(long) FROM table_name_44 WHERE name = \"rock cartwright\" AND loss > 11", "question": "What was Rock Cartwright's highest long with more than 11 losses?", "context": "CREATE TABLE table_name_44 (long INTEGER, name VARCHAR, loss VARCHAR)"}, {"answer": "SELECT company_name FROM table_name_13 WHERE accreditation_level = \"joyn hot fixes\" AND accreditation_status = \"approved (awarded 17.05.13)\"", "question": "What is the Company Name, when the Accreditation Level is Joyn Hot Fixes, and when the Accreditation Status is Approved (Awarded 17.05.13)?", "context": "CREATE TABLE table_name_13 (company_name VARCHAR, accreditation_level VARCHAR, accreditation_status VARCHAR)"}, {"answer": "SELECT accreditation_type FROM table_name_72 WHERE accreditation_level = \"joyn\" AND hardware_model = \"nokia 700\"", "question": "What is the Accreditation Type, when the Accreditation Level is Joyn, and when the Hardware Model is Nokia 700?", "context": "CREATE TABLE table_name_72 (accreditation_type VARCHAR, accreditation_level VARCHAR, hardware_model VARCHAR)"}, {"answer": "SELECT accreditation_status FROM table_name_83 WHERE product_name = \"lg rcs-e client\"", "question": "What is the Accreditation Status, when the Product Name is LG RCS-e Client?", "context": "CREATE TABLE table_name_83 (accreditation_status VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT company_name FROM table_name_76 WHERE accreditation_status = \"approved (valid until 03.07.13)\"", "question": "What is the Company Name, when the Accreditation Status is Approved (Valid Until 03.07.13)?", "context": "CREATE TABLE table_name_76 (company_name VARCHAR, accreditation_status VARCHAR)"}, {"answer": "SELECT accreditation_level FROM table_name_7 WHERE hardware_model = \"gt-i9100\"", "question": "What is the Accreditation Level, when the Hardware Model is GT-I9100?", "context": "CREATE TABLE table_name_7 (accreditation_level VARCHAR, hardware_model VARCHAR)"}, {"answer": "SELECT product_name FROM table_name_63 WHERE company_name = \"htc corporation\"", "question": "What is the Product Name, when the Company Name is HTC Corporation?", "context": "CREATE TABLE table_name_63 (product_name VARCHAR, company_name VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_37 WHERE venue = \"barcelona, spain\"", "question": "What was the most recent year the venue was Barcelona, Spain?", "context": "CREATE TABLE table_name_37 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_13 WHERE year > 2008 AND event = \"20 km\" AND venue = \"metz, france\"", "question": "Wat was the result for the 20 km after 2008 when the venue was Metz, France?", "context": "CREATE TABLE table_name_13 (result VARCHAR, venue VARCHAR, year VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE away_team = \"sheffield wednesday\"", "question": "What is the date of the match with sheffield wednesday as the away team?", "context": "CREATE TABLE table_name_62 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_name_19 WHERE interview = \"8.626 (5)\"", "question": "what is the swimsuit score when the interview score is 8.626 (5)?", "context": "CREATE TABLE table_name_19 (swimsuit VARCHAR, interview VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_name_86 WHERE semifinal_average = \"8.367 (10)\"", "question": "what is the swimsuit score when the semifinal average score is 8.367 (10)?", "context": "CREATE TABLE table_name_86 (swimsuit VARCHAR, semifinal_average VARCHAR)"}, {"answer": "SELECT preliminary_average FROM table_name_58 WHERE evening_gown = \"8.774 (6)\"", "question": "what is the preliminary average score when the evening gown score is 8.774 (6)?", "context": "CREATE TABLE table_name_58 (preliminary_average VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT preliminary_average FROM table_name_78 WHERE interview = \"8.600 (6)\"", "question": "what is the preliminary average score when the interview score is 8.600 (6)?", "context": "CREATE TABLE table_name_78 (preliminary_average VARCHAR, interview VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_name_13 WHERE evening_gown = \"9.165 (3)\"", "question": "what is the swimsuit score when evening gown score is 9.165 (3)?", "context": "CREATE TABLE table_name_13 (swimsuit VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT interview FROM table_name_53 WHERE preliminary_average = \"8.529 (6)\"", "question": "what is the interview score when the preliminary average is 8.529 (6)?", "context": "CREATE TABLE table_name_53 (interview VARCHAR, preliminary_average VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_91 WHERE cuts_made = 5 AND top_10 = 1", "question": "What is the average wins with 5 cuts and 1 in the top-10?", "context": "CREATE TABLE table_name_91 (wins INTEGER, cuts_made VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT SUM(top_10) FROM table_name_61 WHERE tournament = \"the open championship\" AND top_25 < 3", "question": "What is the sum of top-10 values for the Open Championship and less than 3 in the top-25?", "context": "CREATE TABLE table_name_61 (top_10 INTEGER, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MIN(events) FROM table_name_34 WHERE cuts_made = 24 AND top_25 < 11", "question": "What is the smallest number of events with 24 cuts and less than 11 in the top-25?", "context": "CREATE TABLE table_name_34 (events INTEGER, cuts_made VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MAX(events) FROM table_name_77 WHERE tournament = \"masters tournament\" AND top_25 < 4", "question": "What is the largest number of events with the Masters Tournament and less than 4 in the top-25?", "context": "CREATE TABLE table_name_77 (events INTEGER, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT record FROM table_name_45 WHERE game < 7 AND date = \"november 7\"", "question": "What was the record of the game played on November 7?", "context": "CREATE TABLE table_name_45 (record VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_67 WHERE team = \"charlotte\"", "question": "What was the game number of the game played against Charlotte?", "context": "CREATE TABLE table_name_67 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_95 WHERE competition = \"1966 fifa world cup qualification\" AND date = \"may 7, 1965\"", "question": "What venue held the 1966 fifa world cup qualification on may 7, 1965?", "context": "CREATE TABLE table_name_95 (venue VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_41 WHERE venue = \"mexico city, mexico\" AND competition = \"1966 fifa world cup qualification\" AND goal > 8", "question": "What was the result for the 1966 fifa world cup qualification in mexico city, mexico and a goal over 8?", "context": "CREATE TABLE table_name_41 (result VARCHAR, goal VARCHAR, venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE venue = \"mexico city, mexico\" AND goal = 8", "question": "When was the venue mexico city, mexico with a goal of 8?", "context": "CREATE TABLE table_name_9 (date VARCHAR, venue VARCHAR, goal VARCHAR)"}, {"answer": "SELECT place FROM table_name_62 WHERE score = 69", "question": "In what place was the golfer that had a score of 69?", "context": "CREATE TABLE table_name_62 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_1 WHERE place = \"t3\" AND player = \"lee janzen\"", "question": "What was T3 player Lee Janzen's score?", "context": "CREATE TABLE table_name_1 (score INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(2013) FROM table_name_34 WHERE 2010 > 5 AND country = \"germany\" AND 2012 < 4", "question": "What is the lowest number of participants in 2013 when there were more than 5 participants in 2010, less than 4 participants in 2012 and country was germany?", "context": "CREATE TABLE table_name_34 (country VARCHAR)"}, {"answer": "SELECT AVG(2012) FROM table_name_19 WHERE 2013 < 8 AND 2011 = 7", "question": "What is the average number of participants in 2012 when there were less than 8 in 2013 and 7 in 2011?", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT MIN(2012) FROM table_name_17 WHERE 2010 = 72 AND 2013 < 56", "question": "What is the lowest number of participants in 2012 when there were 72 in 2010 and less than 56 in 2013?", "context": "CREATE TABLE table_name_17 (Id VARCHAR)"}, {"answer": "SELECT SUM(2013) FROM table_name_99 WHERE 2010 = 5 AND country = \"russia\" AND 2012 < 4", "question": "What is the sum of participants in 2013 for Russia when there were 5 in 2010 and less than 4 in 2012?", "context": "CREATE TABLE table_name_99 (country VARCHAR)"}, {"answer": "SELECT MIN(2010) FROM table_name_76 WHERE 2012 < 0", "question": "What is the lowest number of participants in 2010 when there were 0 participants in 2012?", "context": "CREATE TABLE table_name_76 (Id VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE date = \"november 29, 1959\"", "question": "What was the game result on November 29, 1959?", "context": "CREATE TABLE table_name_14 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_85 WHERE opponent = \"pittsburgh steelers\"", "question": "What was the result for the game against the Pittsburgh Steelers?", "context": "CREATE TABLE table_name_85 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_91 WHERE team = \"vfb stuttgart ii\"", "question": "What is VFB Stuttgart II Team's Stadiuim?", "context": "CREATE TABLE table_name_91 (stadium VARCHAR, team VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_25 WHERE stadium = \"ernst-abbe-sportfeld\"", "question": "What is the Capacity of Ernst-Abbe-Sportfeld?", "context": "CREATE TABLE table_name_25 (capacity VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_69 WHERE head_coach = \"rainer kraft\"", "question": "What is the Capacity of the Rainer Kraft's Stadium?", "context": "CREATE TABLE table_name_69 (capacity INTEGER, head_coach VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE visitor = \"san antonio spurs\" AND score = \"97-113\"", "question": "When did the Visiting San Antonio Spurs score 97-113?", "context": "CREATE TABLE table_name_22 (date VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE home = \"houston rockets\"", "question": "When did the Houston Rockets play Home?", "context": "CREATE TABLE table_name_48 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_16 WHERE director = \"leonard nimoy\"", "question": "WHAT RANK DOES LEONARD NIMOY HAVE?", "context": "CREATE TABLE table_name_16 (rank INTEGER, director VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_93 WHERE director = \"martin brest\"", "question": "WHAT IS THE RANK OF MARTIN BREST?", "context": "CREATE TABLE table_name_93 (rank INTEGER, director VARCHAR)"}, {"answer": "SELECT studio FROM table_name_49 WHERE gross = \"$81,198,894\"", "question": "WHAT IS THE STUDIO WITH A GROSS $81,198,894?", "context": "CREATE TABLE table_name_49 (studio VARCHAR, gross VARCHAR)"}, {"answer": "SELECT gross FROM table_name_71 WHERE rank > 7 AND director = \"barry levinson\"", "question": "WHAT IS THE GROSS DOLLARS WITH A RANK OF 7 OR MORE, AND DIRECTOR BARRY LEVINSON?", "context": "CREATE TABLE table_name_71 (gross VARCHAR, rank VARCHAR, director VARCHAR)"}, {"answer": "SELECT gross FROM table_name_73 WHERE director = \"richard tuggle\"", "question": "WHAT IS THE GROSS WITH A DIRECTOR OF RICHARD TUGGLE?", "context": "CREATE TABLE table_name_73 (gross VARCHAR, director VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE country = \"united states\" AND place = \"t2\" AND player = \"tom watson\"", "question": "Can you tell me the Score that has the Country of united states, and the Place of t2, and the Player of tom watson?", "context": "CREATE TABLE table_name_48 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT species FROM table_name_78 WHERE length__bp_aa_ = \"1154bp/358aa\"", "question": "Which Species has a Length (bp/aa) of 1154bp/358aa?", "context": "CREATE TABLE table_name_78 (species VARCHAR, length__bp_aa_ VARCHAR)"}, {"answer": "SELECT ncbi_accession_number__mrna_protein_ FROM table_name_99 WHERE protein_identity = \"69%\"", "question": "What NCBI Accession Number (mRNA/Protein) has a Protein Identity of 69%?", "context": "CREATE TABLE table_name_99 (ncbi_accession_number__mrna_protein_ VARCHAR, protein_identity VARCHAR)"}, {"answer": "SELECT ncbi_accession_number__mrna_protein_ FROM table_name_63 WHERE species = \"homo sapiens\"", "question": "What is the NCBI Accession Number (mRNA/Protein) for the homo sapiens Species?", "context": "CREATE TABLE table_name_63 (ncbi_accession_number__mrna_protein_ VARCHAR, species VARCHAR)"}, {"answer": "SELECT ncbi_accession_number__mrna_protein_ FROM table_name_36 WHERE species = \"mus musculus\"", "question": "What is the NCBI Accession Number (mRNA/Protein) for the mus musculus Species?", "context": "CREATE TABLE table_name_36 (ncbi_accession_number__mrna_protein_ VARCHAR, species VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_9 WHERE runner_s__up = \"neal briggs\"", "question": "What was the winning score when the runner-up was Neal Briggs?", "context": "CREATE TABLE table_name_9 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE winning_score = \u201316(67 - 70 - 69 - 66 = 272)", "question": "What day was the winning score \u201316 (67-70-69-66=272)?", "context": "CREATE TABLE table_name_16 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_6 WHERE margin_of_victory = \"8 strokes\"", "question": "Who was the runner-up with the margin of victory of 8 strokes?", "context": "CREATE TABLE table_name_6 (runner_s__up VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_11 WHERE runner_s__up = \"anthony wall\"", "question": "For which tournament was Anthony Wall the runner-up?", "context": "CREATE TABLE table_name_11 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_50 WHERE margin_of_victory = \"7 strokes\"", "question": "For which tournament was the margin of victory 7 strokes?", "context": "CREATE TABLE table_name_50 (tournament VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT place FROM table_name_30 WHERE score > 65 AND player = \"rocco mediate\"", "question": "WHAT IS THE PLACE THAT HAS SCORE OF 65 OR BETTER, FOR ROCCO MEDIATE?", "context": "CREATE TABLE table_name_30 (place VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_76 WHERE score = 66", "question": "WHAT IS THE PLAYER WITH A SCORE OF 66?", "context": "CREATE TABLE table_name_76 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_92 WHERE place = \"t7\" AND country = \"england\"", "question": "WHAT IS THE PLAYER WITH T7 PLACE, FOR ENGLAND?", "context": "CREATE TABLE table_name_92 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(cups) FROM table_name_9 WHERE other > 3 AND league > 3 AND player = \"lauri dalla valle\" AND total > 21", "question": "What is the number of cups when the other was more than 3, the league more than 3, for Lauri Dalla Valle, and a Total more than 21?", "context": "CREATE TABLE table_name_9 (cups INTEGER, total VARCHAR, player VARCHAR, other VARCHAR, league VARCHAR)"}, {"answer": "SELECT COUNT(other) FROM table_name_60 WHERE player = \"adam pepper\" AND total > 7", "question": "What is the number for other when Adam Pepper is the player with a total more than 7?", "context": "CREATE TABLE table_name_60 (other VARCHAR, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_33 WHERE wins > 11 AND goal_difference > 5 AND position = 3 AND draws > 3", "question": "What is the highest losses for more than 11 wins, a goal difference greater than 5, a 3 position, and more than 3 draws?", "context": "CREATE TABLE table_name_33 (losses INTEGER, draws VARCHAR, position VARCHAR, wins VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_77 WHERE played < 30", "question": "What is the average points with less than 30 played?", "context": "CREATE TABLE table_name_77 (points INTEGER, played INTEGER)"}, {"answer": "SELECT MIN(draws) FROM table_name_86 WHERE club = \"ud l\u00e9rida\" AND goals_for < 41", "question": "What is the lowest amount of draws club ud l\u00e9rida, which has less than 41 goals, has?", "context": "CREATE TABLE table_name_86 (draws INTEGER, club VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_59 WHERE position < 7 AND goals_for = 68 AND played < 30", "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 AVG(goals_for) FROM table_name_53 WHERE goals_against > 59 AND club = \"real avil\u00e9s cf\" AND goal_difference > -10", "question": "What is teh average amount of goals for club real avil\u00e9s cf, which has more than 59 goals against and a -10 goal difference?", "context": "CREATE TABLE table_name_53 (goals_for INTEGER, goal_difference VARCHAR, goals_against VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(goal_difference) FROM table_name_63 WHERE points > 27 AND losses < 9 AND club = \"cultural leonesa\"", "question": "What is the average goal difference of club cultural leonesa, which has more than 27 points and less than 9 losses?", "context": "CREATE TABLE table_name_63 (goal_difference INTEGER, club VARCHAR, points VARCHAR, losses VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_73 WHERE date = \"november 29\"", "question": "For the game played on November 29, who had the highest rebounds?", "context": "CREATE TABLE table_name_73 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_76 WHERE notes = \"ncaa champion\"", "question": "WHAT TEAM WAS AN NCAA CHAMPION?", "context": "CREATE TABLE table_name_76 (team VARCHAR, notes VARCHAR)"}, {"answer": "SELECT total_score FROM table_name_90 WHERE champion = \"gay brewer category:articles with hcards\"", "question": "When the champion was Gay Brewer Category:Articles with hCards what was the total score?", "context": "CREATE TABLE table_name_90 (total_score VARCHAR, champion VARCHAR)"}, {"answer": "SELECT to_par_[a_] FROM table_name_6 WHERE year < 1973 AND champion = \"charles coody category:articles with hcards\"", "question": "What was the To Par [a] when Charles Coody Category:Articles with hCards was champion and the year was earlier than 1973?", "context": "CREATE TABLE table_name_6 (to_par_ VARCHAR, a_ VARCHAR, year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_67 WHERE total_score = \"274\" AND country = \"united states\"", "question": "When the United States had a total score of 274 what was the average year?", "context": "CREATE TABLE table_name_67 (year INTEGER, total_score VARCHAR, country VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_52 WHERE team_1 = \"makedonija\"", "question": "What is 1st Leg, when Team 1 is \"Makedonija\"?", "context": "CREATE TABLE table_name_52 (team_1 VARCHAR)"}, {"answer": "SELECT record FROM table_name_45 WHERE home = \"ottawa senators\" AND date = \"march 6\"", "question": "What's the record for home team ottawa senators on march 6?", "context": "CREATE TABLE table_name_45 (record VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE visitor = \"montreal canadiens\" AND date = \"february 18\"", "question": "What's the score on february 18 when the visitors are the montreal canadiens?", "context": "CREATE TABLE table_name_46 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT fleet FROM table_name_87 WHERE name = \"orenburg\"", "question": "Which fleet was named Orenburg?", "context": "CREATE TABLE table_name_87 (fleet VARCHAR, name VARCHAR)"}, {"answer": "SELECT player FROM table_name_4 WHERE rank = \"t12\" AND country = \"taiwan\" AND lifespan = \"1963\u2013\"", "question": "Which Player has a Rank of t12, and a Country of taiwan, and a Lifespan of 1963\u2013?", "context": "CREATE TABLE table_name_4 (player VARCHAR, lifespan VARCHAR, rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_19 WHERE player = \"arjun atwal\"", "question": "Which Country has a Player of arjun atwal?", "context": "CREATE TABLE table_name_19 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_46 WHERE winning_span = \"2000\u20132010\"", "question": "Which Wins have a Winning span of 2000\u20132010?", "context": "CREATE TABLE table_name_46 (wins INTEGER, winning_span VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_82 WHERE player = \"brandon rush\"", "question": "WHAT WAS THE PICK NUMBER FOR BRANDON RUSH?", "context": "CREATE TABLE table_name_82 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_86 WHERE player = \"mike taylor\" AND pick > 55", "question": "WHAT IS THE HIGHEST ROUND FOR MIKE TAYLOR, WITH PICK HIGHER THAN 55?", "context": "CREATE TABLE table_name_86 (round INTEGER, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_67 WHERE pick < 33 AND player = \"darrell arthur\"", "question": "WHAT POSITION HAS A PICK SMALLER THAN 33, AND PLAYER BEING DARRELL ARTHUR?", "context": "CREATE TABLE table_name_67 (position VARCHAR, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT finish FROM table_name_80 WHERE total = 282", "question": "What was the finish of the player who had a total of 282?", "context": "CREATE TABLE table_name_80 (finish VARCHAR, total VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_41 WHERE player = \"lou graham\"", "question": "What years did Lou Graham win in?", "context": "CREATE TABLE table_name_41 (year_s__won VARCHAR, player VARCHAR)"}, {"answer": "SELECT floors FROM table_name_43 WHERE location = \"aston\"", "question": "How many floors did the tallest building in Aston have?", "context": "CREATE TABLE table_name_43 (floors VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE location = \"jewellery quarter\"", "question": "What is the name of the building at the Jewellery quarter?", "context": "CREATE TABLE table_name_61 (name VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_name_59 WHERE location = \"aston\"", "question": "What is the name of the building at Aston?", "context": "CREATE TABLE table_name_59 (name VARCHAR, location VARCHAR)"}, {"answer": "SELECT floors FROM table_name_66 WHERE location = \"jewellery quarter\"", "question": "How many floors did the building at the Jewellery quarter have?", "context": "CREATE TABLE table_name_66 (floors VARCHAR, location VARCHAR)"}, {"answer": "SELECT season FROM table_name_12 WHERE lead = \"michael goodfellow\"", "question": "What is Season, when Lead is \"Michael Goodfellow\"?", "context": "CREATE TABLE table_name_12 (season VARCHAR, lead VARCHAR)"}, {"answer": "SELECT season FROM table_name_62 WHERE third = \"glen muirhead\"", "question": "What is Season, when Third is \"Glen Muirhead\"?", "context": "CREATE TABLE table_name_62 (season VARCHAR, third VARCHAR)"}, {"answer": "SELECT home FROM table_name_38 WHERE attendance = \"n/a\"", "question": "What home team has an n/a attendance?", "context": "CREATE TABLE table_name_38 (home VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_41 WHERE attendance = \"8,000\" AND date = \"february 22\"", "question": "What's the sum of the points when attendance is 8,000 on february 22?", "context": "CREATE TABLE table_name_41 (points INTEGER, attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(100 AS s) FROM table_name_44 WHERE balls > 325 AND runs < 572", "question": "Can you tell me the total number of 100s that has the Balls larger than 325, and the Runs smaller than 572?", "context": "CREATE TABLE table_name_44 (balls VARCHAR, runs VARCHAR)"}, {"answer": "SELECT SUM(100 AS s) FROM table_name_92 WHERE matches = 12 AND strike_rate < 144.81", "question": "Can you tell me the sum of 100s that has the Matches of 12, and the Strike Rate smaller than 144.81?", "context": "CREATE TABLE table_name_92 (matches VARCHAR, strike_rate VARCHAR)"}, {"answer": "SELECT SUM(100 AS s) FROM table_name_41 WHERE team = \"deccan chargers\" AND matches = 8 AND average > 35.57", "question": "Can you tell me the sum of 100s that has the Team of deccan chargers, and the Match of 8, and the Average larger than 35.57?", "context": "CREATE TABLE table_name_41 (average VARCHAR, team VARCHAR, matches VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_88 WHERE strike_rate < 152.3 AND balls = 395", "question": "Can you tell me the total number of Matched that has the Strike Rate smallet than 152.3, and the Balls of 395?", "context": "CREATE TABLE table_name_88 (matches VARCHAR, strike_rate VARCHAR, balls VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE surface = \"hard\" AND opponent = \"jesse levine\"", "question": "On what date did Jesse Levine play on a hard surface?", "context": "CREATE TABLE table_name_78 (date VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_7 WHERE losing_team = \"newcastle knights\"", "question": "Name the Venue which has a Losing Team of newcastle knights?", "context": "CREATE TABLE table_name_7 (venue VARCHAR, losing_team VARCHAR)"}, {"answer": "SELECT losing_team FROM table_name_87 WHERE venue = \"sydney football stadium\" AND total > 80 AND winning_team = \"tigers\"", "question": "WHich Losing Team has a Venue of sydney football stadium, and a Total larger than 80, and a Winning Team of tigers?", "context": "CREATE TABLE table_name_87 (losing_team VARCHAR, winning_team VARCHAR, venue VARCHAR, total VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE losing_team = \"sydney roosters\" AND total = 88", "question": "Which Score has a Losing Team of sydney roosters, and a Total of 88?", "context": "CREATE TABLE table_name_77 (score VARCHAR, losing_team VARCHAR, total VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_51 WHERE opponent = \"jacksonville jaguars\"", "question": "What was the TV Time for opponent jacksonville jaguars?", "context": "CREATE TABLE table_name_51 (tv_time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_24 WHERE date = \"december 6, 1998\"", "question": "What was the tv time on december 6, 1998?", "context": "CREATE TABLE table_name_24 (tv_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_65 WHERE opponent = \"san francisco 49ers\"", "question": "How many weeks has the opponent been san francisco 49ers?", "context": "CREATE TABLE table_name_65 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT college FROM table_name_50 WHERE pick < 160 AND round > 2", "question": "What college did the player drafted after round 2 before pick 160 attend?", "context": "CREATE TABLE table_name_50 (college VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_63 WHERE pick > 114 AND player = \"jerry corcoran\"", "question": "What round was jerry corcoran drafted in as pick number 114?", "context": "CREATE TABLE table_name_63 (round INTEGER, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_33 WHERE round = 4 AND college = \"oklahoma\"", "question": "What is the nationality of the round 4 draft selection who played college ball at oklahoma?", "context": "CREATE TABLE table_name_33 (nationality VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_44 WHERE college = \"virginia\"", "question": "Who was the highest drafted player that attended college at Virginia?", "context": "CREATE TABLE table_name_44 (pick INTEGER, college VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_26 WHERE college = \"northeastern\" AND player = \"reggie lewis\"", "question": "What round was northeastern college player Reggie Lewis drafted in?", "context": "CREATE TABLE table_name_26 (round INTEGER, college VARCHAR, player VARCHAR)"}, {"answer": "SELECT competition FROM table_name_41 WHERE venue = \"away\" AND result = \"lost 2-4\"", "question": "What Away Competition had a Result of lost 2-4?", "context": "CREATE TABLE table_name_41 (competition VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_9 WHERE opponent = \"bracknell bees\"", "question": "What is the Venue against the Bracknell Bees?", "context": "CREATE TABLE table_name_9 (venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT competition FROM table_name_81 WHERE venue = \"away\" AND date = \"6th\"", "question": "What is the Away Competition on the 6th?", "context": "CREATE TABLE table_name_81 (competition VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_34 WHERE result = \"lost 1-2\"", "question": "What Competition had a Result of lost 1-2?", "context": "CREATE TABLE table_name_34 (competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT man_of_the_match FROM table_name_73 WHERE result = \"lost 2-5\"", "question": "What is the Man of the Match of the Competition with a Result of lost 2-5?", "context": "CREATE TABLE table_name_73 (man_of_the_match VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE man_of_the_match = \"ollie bronnimann\"", "question": "What is the Date of the Competition with Man of the Match Ollie Bronnimann?", "context": "CREATE TABLE table_name_41 (date VARCHAR, man_of_the_match VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_85 WHERE team_1 = \"fc rouen (d1)\"", "question": "what is team 2 when team 1 is fc rouen (d1)?", "context": "CREATE TABLE table_name_85 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_6 WHERE team_2 = \"gaz\u00e9lec ajaccio (d3)\"", "question": "what is team 1 when team 2 is gaz\u00e9lec ajaccio (d3)?", "context": "CREATE TABLE table_name_6 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_round FROM table_name_67 WHERE team_2 = \"olympique lyonnais (d2)\"", "question": "what is the 1st round when team 2 is olympique lyonnais (d2)?", "context": "CREATE TABLE table_name_67 (team_2 VARCHAR)"}, {"answer": "SELECT total FROM table_name_89 WHERE league < 1", "question": "what is the total when the league is less than 1?", "context": "CREATE TABLE table_name_89 (total VARCHAR, league INTEGER)"}, {"answer": "SELECT MIN(profits__billion_) AS $_ FROM table_name_25 WHERE rank = 6", "question": "What is the lowest profits (billion $) for the rank 6?", "context": "CREATE TABLE table_name_25 (profits__billion_ INTEGER, rank VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_36 WHERE industry = \"banking\" AND company = \"bank of america\" AND profits__billion_$_ > 16.47", "question": "What is the smallest rank for an industry of banking, a company of bank of america, and profits (billion $) larger than 16.47?", "context": "CREATE TABLE table_name_36 (rank INTEGER, profits__billion_$_ VARCHAR, industry VARCHAR, company VARCHAR)"}, {"answer": "SELECT MIN(market_value__billion_) AS $_ FROM table_name_2 WHERE headquarters = \"usa\" AND rank > 3 AND assets__billion_$_ > 208.34 AND company = \"jpmorgan chase\"", "question": "What is the lowest market value (billion $) with a headquarter of usa , and the rank larger than 3, assets (billion$) larger than 208.34, and the company jpmorgan chase?", "context": "CREATE TABLE table_name_2 (market_value__billion_ INTEGER, company VARCHAR, assets__billion_$_ VARCHAR, headquarters VARCHAR, rank VARCHAR)"}, {"answer": "SELECT season_in_sanskrit FROM table_name_34 WHERE season_in_english = \"summer\"", "question": "What season in sanskrit means summer in English?", "context": "CREATE TABLE table_name_34 (season_in_sanskrit VARCHAR, season_in_english VARCHAR)"}, {"answer": "SELECT english_translation FROM table_name_81 WHERE season_in_sanskrit = \"varsha\"", "question": "What is the english translation of the sanskrit word varsha?", "context": "CREATE TABLE table_name_81 (english_translation VARCHAR, season_in_sanskrit VARCHAR)"}, {"answer": "SELECT gregorian_months FROM table_name_96 WHERE season_in_tamil = \"\u0b95\u0bc1\u0bb3\u0bbf\u0bb0\u0bcd\"", "question": "What are the gregorian months for the season \u0b95\u0bc1\u0bb3\u0bbf\u0bb0\u0bcd in Tamil?", "context": "CREATE TABLE table_name_96 (gregorian_months VARCHAR, season_in_tamil VARCHAR)"}, {"answer": "SELECT tamil_months FROM table_name_89 WHERE english_transliteration = \"mun-pani\"", "question": "What are the months in Tamil that has an english transliteration of Mun-pani?", "context": "CREATE TABLE table_name_89 (tamil_months VARCHAR, english_transliteration VARCHAR)"}, {"answer": "SELECT english_transliteration FROM table_name_60 WHERE english_translation = \"late dew\"", "question": "What is the english transliteration of late dew?", "context": "CREATE TABLE table_name_60 (english_transliteration VARCHAR, english_translation VARCHAR)"}, {"answer": "SELECT season_in_tamil FROM table_name_23 WHERE season_in_english = \"monsoon\"", "question": "What is the english word Monsoon in Tamil?", "context": "CREATE TABLE table_name_23 (season_in_tamil VARCHAR, season_in_english VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_84 WHERE 2011 = \"1r\" AND 2007 = \"a\"", "question": "What is the 2009 result when 2011 is 1R and 2007 is A?", "context": "CREATE TABLE table_name_84 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_89 WHERE 2006 = \"year-end championship\"", "question": "What is the 2008 result when 2006 is Year-End Championship?", "context": "CREATE TABLE table_name_89 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_38 WHERE 2012 = \"year-end championship\"", "question": "What is the 2009 when 2012 is Year-End Championship?", "context": "CREATE TABLE table_name_38 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_67 WHERE 2012 = \"qf\" AND 2005 = \"qf\"", "question": "What is the 2008 result when 2012 and 2005 are both QF?", "context": "CREATE TABLE table_name_67 (Id VARCHAR)"}, {"answer": "SELECT 1999 FROM table_name_80 WHERE 1998 = \"grand slam tournaments\"", "question": "What is the 1999 answer when 1998 is Grand Slam Tournaments?", "context": "CREATE TABLE table_name_80 (Id VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE high_points = \"raymond felton (32)\"", "question": "Which Score has High points of raymond felton (32)?", "context": "CREATE TABLE table_name_56 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_name_66 WHERE team = \"philadelphia\"", "question": "Which Record has a Team of philadelphia?", "context": "CREATE TABLE table_name_66 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_97 WHERE game = 76", "question": "Which High rebounds has a Game of 76?", "context": "CREATE TABLE table_name_97 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_17 WHERE high_assists = \"raymond felton (5)\" AND record = \"35\u201344\"", "question": "Which Location Attendance has a High assists of raymond felton (5), and a Record of 35\u201344?", "context": "CREATE TABLE table_name_17 (location_attendance VARCHAR, high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_52 WHERE date = \"april 15\"", "question": "Which Location Attendance has a Date of april 15?", "context": "CREATE TABLE table_name_52 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE game > 17", "question": "What date was there a game larger than 17?", "context": "CREATE TABLE table_name_20 (date VARCHAR, game INTEGER)"}, {"answer": "SELECT result FROM table_name_27 WHERE opponent = \"clyde\" AND venue = \"h\"", "question": "What is the result of the match with clyde as the opponent in the h venue?", "context": "CREATE TABLE table_name_27 (result VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_23 WHERE date = \"24 december 1898\"", "question": "What is the attendance on 24 December 1898?", "context": "CREATE TABLE table_name_23 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE venue = \"a\" AND opponent = \"celtic\"", "question": "What was the date of the match at venue A with the celtic as the opponent?", "context": "CREATE TABLE table_name_41 (date VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_36 WHERE venue = \"h\" AND date = \"3 december 1898\"", "question": "Who is the opponent of the match on 3 December 1898 in venue h?", "context": "CREATE TABLE table_name_36 (opponent VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_15 WHERE name = \"glory alozie\"", "question": "What country does Glory Alozie play for?", "context": "CREATE TABLE table_name_15 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_48 WHERE react > 0.257 AND name = \"fadwa al bouza\"", "question": "In what country did fadwa al bouza have larger than 0.257 react score?", "context": "CREATE TABLE table_name_48 (country VARCHAR, react VARCHAR, name VARCHAR)"}, {"answer": "SELECT place FROM table_name_33 WHERE score = 75 - 71 - 72 - 70 = 288", "question": "What is Place, when Score is \"75-71-72-70=288\"?", "context": "CREATE TABLE table_name_33 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_35 WHERE score = 75 - 71 - 72 - 70 = 288", "question": "What is Money ( $ ), when Score is \"75-71-72-70=288\"?", "context": "CREATE TABLE table_name_35 (money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_10 WHERE player = \"jimmy demaret\"", "question": "What is Country, when Player is \"Jimmy Demaret\"?", "context": "CREATE TABLE table_name_10 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_42 WHERE score = 71 - 69 - 72 - 72 = 284", "question": "What is Player, when Score is \"71-69-72-72=284\"?", "context": "CREATE TABLE table_name_42 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_8 WHERE player = \"dutch harrison\"", "question": "What is Country, when Player is \"Dutch Harrison\"?", "context": "CREATE TABLE table_name_8 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE date = \"may 7, 2006\"", "question": "What is Score, when Date is May 7, 2006?", "context": "CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_66 WHERE opponents_in_the_final = \"christophe rochus olivier rochus\"", "question": "What is Surface, when Opponents In The Final is \"Christophe Rochus Olivier Rochus\"?", "context": "CREATE TABLE table_name_66 (surface VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_92 WHERE surface = \"hard\"", "question": "What is Tournament, when Surface is \"Hard\"?", "context": "CREATE TABLE table_name_92 (tournament VARCHAR, surface VARCHAR)"}, {"answer": "SELECT score FROM table_name_26 WHERE partnering = \"alexander waske\" AND opponents_in_the_final = \"rafael nadal bartolom\u00e9 salv\u00e1-vidal\"", "question": "What is Score, when Partnering is \"Alexander Waske\", and when Opponents In The Final is \"Rafael Nadal Bartolom\u00e9 Salv\u00e1-Vidal\"?", "context": "CREATE TABLE table_name_26 (score VARCHAR, partnering VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT royal_house FROM table_name_34 WHERE name = \"elah\"", "question": "Which Royal house is named Elah?", "context": "CREATE TABLE table_name_34 (royal_house VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_96 WHERE royal_house = \"baasha\" AND name = \"elah\"", "question": "What is the type of Leader for the Royal House of Baasha, who is named Elah.", "context": "CREATE TABLE table_name_96 (type VARCHAR, royal_house VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_42 WHERE rank = \"30\" AND bronze > 0", "question": "What is the average Silver with rank 30 and a Bronze greater than 0", "context": "CREATE TABLE table_name_42 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_17 WHERE silver < 7 AND bronze < 0", "question": "What is the highest Gold that has a Silver less than 7 and Bronze less than 0", "context": "CREATE TABLE table_name_17 (gold INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_39 WHERE silver > 0 AND gold = 7 AND total < 29", "question": "What is the highest Bronze with a Silver greater than 0 and a Gold of 7 and a total less than 29", "context": "CREATE TABLE table_name_39 (bronze INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_74 WHERE rank = \"9\" AND gold > 6", "question": "What is the sum of Total ranking 9 and a Gold more than 6", "context": "CREATE TABLE table_name_74 (total INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_30 WHERE rank = \"17\" AND total < 5", "question": "What is the lowest Bronze with a 17 Rank and a Total less than 5", "context": "CREATE TABLE table_name_30 (bronze INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT venue FROM table_name_84 WHERE location = \"zhodino\"", "question": "What is the venue that is located in zhodino?", "context": "CREATE TABLE table_name_84 (venue VARCHAR, location VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_61 WHERE tie_no = \"13\"", "question": "Which Home Team has a Tie no of 13?", "context": "CREATE TABLE table_name_61 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_26 WHERE home_team = \"fulham\"", "question": "What is the Away Team when the Home Team is Fulham?", "context": "CREATE TABLE table_name_26 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE tie_no = \"11\"", "question": "Which Date has a Tie no of 11?", "context": "CREATE TABLE table_name_86 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_32 WHERE date = \"27 january 1968\" AND away_team = \"carlisle united\"", "question": "On 27 January 1968 who was the Home Team when the Away team was Carlisle United?", "context": "CREATE TABLE table_name_32 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE home_team = \"newport county\"", "question": "If the Home Team is Newport County what is the Score?", "context": "CREATE TABLE table_name_60 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(scottish_cup) FROM table_name_74 WHERE player = \"damon gray\" AND league > 1", "question": "What is the sum for the Scottish cup that has player Damon Gray, and more than 1 league?", "context": "CREATE TABLE table_name_74 (scottish_cup INTEGER, player VARCHAR, league VARCHAR)"}, {"answer": "SELECT AVG(league) FROM table_name_22 WHERE player = \"kris doolan\" AND total < 5", "question": "What was the average league with Kris Doolan and a total less than 5?", "context": "CREATE TABLE table_name_22 (league INTEGER, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT aircraft FROM table_name_40 WHERE quantity = \"129\"", "question": "What aircraft has 129 made?", "context": "CREATE TABLE table_name_40 (aircraft VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT type FROM table_name_79 WHERE quantity = \"140\"", "question": "Which type has 140 made?", "context": "CREATE TABLE table_name_79 (type VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT aircraft FROM table_name_39 WHERE type = \"heavy transport\"", "question": "Which aircraft has heavy transport?", "context": "CREATE TABLE table_name_39 (aircraft VARCHAR, type VARCHAR)"}, {"answer": "SELECT produced FROM table_name_28 WHERE aircraft = \"kai kuh-1 surion\"", "question": "Where was the Kai Kuh-1 Surion Produced?", "context": "CREATE TABLE table_name_28 (produced VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT first_pref_votes FROM table_name_49 WHERE _percentage_of_seats = \"0.8\"", "question": "Which First Pref votes have a % of seats of 0.8?", "context": "CREATE TABLE table_name_49 (first_pref_votes VARCHAR, _percentage_of_seats VARCHAR)"}, {"answer": "SELECT COUNT(first_pref_votes) FROM table_name_45 WHERE seats = \"1\"", "question": "How many First Pref votes have Seats of 1?", "context": "CREATE TABLE table_name_45 (first_pref_votes VARCHAR, seats VARCHAR)"}, {"answer": "SELECT game FROM table_name_62 WHERE team = \"kansas city kings\"", "question": "What game number is the Kansas City Kings team?", "context": "CREATE TABLE table_name_62 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE round > 1 AND record = \"12-7\"", "question": "Who was the opponent when he went more than 1 round with a record of 12-7?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT event FROM table_name_25 WHERE res = \"win\" AND time = \"n/a\" AND method = \"submission (triangle choke)\"", "question": "Which event did he win with a method of submission (triangle choke) and a time of n/a?", "context": "CREATE TABLE table_name_25 (event VARCHAR, method VARCHAR, res VARCHAR, time VARCHAR)"}, {"answer": "SELECT res FROM table_name_72 WHERE method = \"submission (kimura)\"", "question": "What was the result when the method was submission (kimura)?", "context": "CREATE TABLE table_name_72 (res VARCHAR, method VARCHAR)"}, {"answer": "SELECT location FROM table_name_26 WHERE method = \"decision (split)\"", "question": "In which location was the method decision (split)?", "context": "CREATE TABLE table_name_26 (location VARCHAR, method VARCHAR)"}, {"answer": "SELECT location FROM table_name_96 WHERE time = \"0:31\"", "question": "In which location did the fight last just 0:31?", "context": "CREATE TABLE table_name_96 (location VARCHAR, time VARCHAR)"}, {"answer": "SELECT owner FROM table_name_4 WHERE branding = \"kool-fm\"", "question": "Who owns the kool-fm branding?", "context": "CREATE TABLE table_name_4 (owner VARCHAR, branding VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_58 WHERE branding = \"the beat\"", "question": "Which frequency belongs to the beat branding?", "context": "CREATE TABLE table_name_58 (frequency VARCHAR, branding VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_72 WHERE call_sign = \"cihr-fm\"", "question": "Which frequency belongs to the cihr-fm call sign?", "context": "CREATE TABLE table_name_72 (frequency VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT owner FROM table_name_96 WHERE frequency = \"fm 101.3\"", "question": "Who owns the fm 101.3 frequency?", "context": "CREATE TABLE table_name_96 (owner VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_81 WHERE frequency = \"fm 105.3\"", "question": "Which call sign has a frequency of FM 105.3?", "context": "CREATE TABLE table_name_81 (call_sign VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT owner FROM table_name_31 WHERE format = \"adult hits\" AND branding = \"kool-fm\"", "question": "Who owns the kool-fm branding in the adult hits format?", "context": "CREATE TABLE table_name_31 (owner VARCHAR, format VARCHAR, branding VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE game < 20 AND team = \"portland\"", "question": "What was the score against Portland in game numbers under 20?", "context": "CREATE TABLE table_name_74 (score VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT champion FROM table_name_39 WHERE course = \"richmond river\" AND date = \"june 13\"", "question": "WHAT CHAMPION HAD RICHMOND RIVER COURSE ON JUNE 13?", "context": "CREATE TABLE table_name_39 (champion VARCHAR, course VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_97 WHERE champion = \"robert coombes\" AND date = \"may 7\"", "question": "WHAT YEAR WAS ROBERT COOMBES CHAMPION ON MAY 7?", "context": "CREATE TABLE table_name_97 (year VARCHAR, champion VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_80 WHERE date = \"nov 13\"", "question": "What's the record of the game on Nov 13?", "context": "CREATE TABLE table_name_80 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE game = \"5\"", "question": "What's the score of Game 5?", "context": "CREATE TABLE table_name_79 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE game = \"13\"", "question": "What was the score of Game 13?", "context": "CREATE TABLE table_name_32 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_52 WHERE opponent = \"real espa\u00f1a\" AND season = \"2008\u201309\"", "question": "What is the final score when the opponent was Real Espa\u00f1a, in the 2008\u201309 season?", "context": "CREATE TABLE table_name_52 (final_score VARCHAR, opponent VARCHAR, season VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_40 WHERE opponent = \"atl\u00e9tico choloma\"", "question": "What was the final score when the opponent was Atl\u00e9tico Choloma?", "context": "CREATE TABLE table_name_40 (final_score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_43 WHERE season = \"2008\u201309\" AND final_score = \"2\u20133 l\"", "question": "What team was the opponent in the 2008\u201309 season, with a final score of 2\u20133 l?", "context": "CREATE TABLE table_name_43 (opponent VARCHAR, season VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_58 WHERE season = \"2008\u201309\" AND final_score = \"2\u20133 l\"", "question": "What was the opponent in the 2008\u201309 season, with a final score of 2\u20133 l?", "context": "CREATE TABLE table_name_58 (opponent VARCHAR, season VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT playing_for FROM table_name_76 WHERE opponent = \"real espa\u00f1a\" AND season = \"2012\u201313\"", "question": "What shows for playing when the opponent was Real Espa\u00f1a, in the 2012\u201313 season?", "context": "CREATE TABLE table_name_76 (playing_for VARCHAR, opponent VARCHAR, season VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_47 WHERE player = \"steve elkington\"", "question": "What did Steve Elkington par?", "context": "CREATE TABLE table_name_47 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_15 WHERE player = \"ernie els\"", "question": "What did Ernie Els par?", "context": "CREATE TABLE table_name_15 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_73 WHERE country = \"spain\"", "question": "What place is Spain in?", "context": "CREATE TABLE table_name_73 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_13 WHERE game > 4 AND date = \"may 27\"", "question": "Which High rebounds have a Game larger than 4, and a Date of may 27?", "context": "CREATE TABLE table_name_13 (high_rebounds VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE date = \"may 21\"", "question": "What was the score on may 21?", "context": "CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_12 WHERE high_rebounds = \"pau gasol (11)\"", "question": "Which Game is the highest one that has High rebounds of pau gasol (11)?", "context": "CREATE TABLE table_name_12 (game INTEGER, high_rebounds VARCHAR)"}, {"answer": "SELECT series FROM table_name_16 WHERE date = \"may 27\"", "question": "What was the series on may 27?", "context": "CREATE TABLE table_name_16 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_27 WHERE game > 2 AND team = \"@ denver\" AND high_assists = \"kobe bryant (5)\"", "question": "Which High rebounds have a Game larger than 2, and a Team of @ denver, and High assists of kobe bryant (5)?", "context": "CREATE TABLE table_name_27 (high_rebounds VARCHAR, high_assists VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_1 WHERE game > 36 AND team = \"atlanta\"", "question": "What was the location and attendance for the game after game 36 against Atlanta?", "context": "CREATE TABLE table_name_1 (location_attendance VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_78 WHERE game = 31", "question": "What was the record of the game for game 31?", "context": "CREATE TABLE table_name_78 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_83 WHERE team = \"phoenix\"", "question": "What is the game number when the game was against phoenix?", "context": "CREATE TABLE table_name_83 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_21 WHERE home_team = \"wigan athletic\"", "question": "What is the tie number when Wigan Athletic is the home team?", "context": "CREATE TABLE table_name_21 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE home_team = \"grimsby town\"", "question": "What is the date when Grimsby Town is the home team?", "context": "CREATE TABLE table_name_67 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE tie_no = \"10\"", "question": "What is the date of game with tie number of 10?", "context": "CREATE TABLE table_name_35 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE away_team = \"crystal palace\"", "question": "What is the score when away team is Crystal Palace?", "context": "CREATE TABLE table_name_8 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_38 WHERE language_s_ = \"dari\" AND original_title = \"osama (\u0623\u0633\u0627\u0645\u0629)\"", "question": "WHAT IS THE YEAR WITH DARI, AND TITLE osama (\u0623\u0633\u0627\u0645\u0629)?", "context": "CREATE TABLE table_name_38 (year__ceremony_ VARCHAR, language_s_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT result FROM table_name_3 WHERE film_title_used_in_nomination = \"firedancer\"", "question": "WHAT IS THE RESULT WITH A FILM TITLE FIREDANCER?", "context": "CREATE TABLE table_name_3 (result VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_22 WHERE series = \"4-2\"", "question": "Who had the highest points when the series was 4-2?", "context": "CREATE TABLE table_name_22 (high_points VARCHAR, series VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE series = \"3-2\"", "question": "What was the score when the series was 3-2?", "context": "CREATE TABLE table_name_7 (score VARCHAR, series VARCHAR)"}, {"answer": "SELECT AVG(sales__billion_) AS $_ FROM table_name_18 WHERE market_value__billion_$_ = 204.9 AND profits__billion_$_ < 20.6", "question": "What is the average sales for the company with market value of 204.9bil and profits under 20.6bil?", "context": "CREATE TABLE table_name_18 (sales__billion_ INTEGER, market_value__billion_$_ VARCHAR, profits__billion_$_ VARCHAR)"}, {"answer": "SELECT doctor FROM table_name_69 WHERE title = \"city of death\"", "question": "Which Doctor is featured in City of Death?", "context": "CREATE TABLE table_name_69 (doctor VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_83 WHERE format = \"2-cd\" AND story__number = \"026\"", "question": "Available in 2-CD format, what is the title of story number 026?", "context": "CREATE TABLE table_name_83 (title VARCHAR, format VARCHAR, story__number VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_31 WHERE home_team = \"bournemouth\"", "question": "Who was the away team when bournemouth was the home team?", "context": "CREATE TABLE table_name_31 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_6 WHERE away_team = \"scunthorpe united\"", "question": "What is the tie no when scunthorpe united was the away team?", "context": "CREATE TABLE table_name_6 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_47 WHERE away_team = \"swansea city\"", "question": "Who was the home team when swansea city was the away team?", "context": "CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT 925 FROM table_name_26 WHERE press = \"282.5\"", "question": "Who is the 92.5 with the press of 282.5?", "context": "CREATE TABLE table_name_26 (press VARCHAR)"}, {"answer": "SELECT 925 FROM table_name_44 WHERE press = \"282.5\"", "question": "Who is the 92.5 with the press 282.5?", "context": "CREATE TABLE table_name_44 (press VARCHAR)"}, {"answer": "SELECT world_record FROM table_name_40 WHERE press = \"925\"", "question": "Which 92.5 holds the world record?", "context": "CREATE TABLE table_name_40 (world_record VARCHAR, press VARCHAR)"}, {"answer": "SELECT season FROM table_name_54 WHERE lead = \"john shuster\" AND third = \"shawn rojeski\"", "question": "what is the season when the lead is john shuster and third is shawn rojeski?", "context": "CREATE TABLE table_name_54 (season VARCHAR, lead VARCHAR, third VARCHAR)"}, {"answer": "SELECT season FROM table_name_96 WHERE third = \"shawn rojeski\"", "question": "what is the season when the third is shawn rojeski?", "context": "CREATE TABLE table_name_96 (season VARCHAR, third VARCHAR)"}, {"answer": "SELECT religion FROM table_name_43 WHERE scheduled_tribe = \"0.90%\"", "question": "WHAT IS THE RELIGION WITH A SCHEDULED TRIBE OF 0.90%?", "context": "CREATE TABLE table_name_43 (religion VARCHAR, scheduled_tribe VARCHAR)"}, {"answer": "SELECT forward_caste FROM table_name_87 WHERE scheduled_tribe = \"0.90%\"", "question": "WHAT IS THE FORWARD CASTE WITH A SCHEDULED TRIBE OF 0.90%?", "context": "CREATE TABLE table_name_87 (forward_caste VARCHAR, scheduled_tribe VARCHAR)"}, {"answer": "SELECT forward_caste FROM table_name_80 WHERE scheduled_caste = \"89.50%\"", "question": "WHAT IS THE FORWARD CASTE WITH A SCHEDULED CASTE OF 89.50%?", "context": "CREATE TABLE table_name_80 (forward_caste VARCHAR, scheduled_caste VARCHAR)"}, {"answer": "SELECT forward_caste FROM table_name_49 WHERE scheduled_caste = \"0.80%\"", "question": "WHAT IS THE FORWARD CASTE WITH A SCHEDULED CASTE OF 0.80%?", "context": "CREATE TABLE table_name_49 (forward_caste VARCHAR, scheduled_caste VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE h_a_n = \"a\" AND record = \"11-22\"", "question": "What was the score for the game with a record of 11-22 and a H/A/N of A?", "context": "CREATE TABLE table_name_60 (score VARCHAR, h_a_n VARCHAR, record VARCHAR)"}, {"answer": "SELECT h_a_n FROM table_name_12 WHERE score = \"108-102\"", "question": "What was the H/A/N for the game that ended in a score of 108-102?", "context": "CREATE TABLE table_name_12 (h_a_n VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE h_a_n = \"h\" AND record = \"12-24\"", "question": "What was the score of the game with a H/A/N of H and a record of 12-24?", "context": "CREATE TABLE table_name_12 (score VARCHAR, h_a_n VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE h_a_n = \"h\" AND date = \"december 17\"", "question": "What was the score of the game played on December 17, with a H/A/N of H?", "context": "CREATE TABLE table_name_19 (score VARCHAR, h_a_n VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE record = \"9-14\"", "question": "On what date did the Cavaliers have a record of 9-14?", "context": "CREATE TABLE table_name_44 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_64 WHERE score = \"116-106\"", "question": "Who were the opponents in the game that ended in a score of 116-106?", "context": "CREATE TABLE table_name_64 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT number_of_cars FROM table_name_38 WHERE car__number < 7 AND year_started = 2010", "question": "HOW MANY CARS HAD A CAR # SMALLER THAN 7 AND STARTED ON 2010?", "context": "CREATE TABLE table_name_38 (number_of_cars VARCHAR, car__number VARCHAR, year_started VARCHAR)"}, {"answer": "SELECT MIN(car__number) FROM table_name_11 WHERE current_car = \"son-e-wa\" AND year_started < 2012", "question": "WHAT WAS THE LOWEST CAR # WITH SON-E-WA, AND 2012 START YEAR?", "context": "CREATE TABLE table_name_11 (car__number INTEGER, current_car VARCHAR, year_started VARCHAR)"}, {"answer": "SELECT MAX(number_of_cars) FROM table_name_95 WHERE year_started < 2012 AND current_car = \"tba\" AND car__number > 1", "question": "WHAT IS THE HIGHEST # OF CARS WITH A START YEAR LESS THAN 2012, TBA CURRENT CAR, AND MORE THAN 1 CAR?", "context": "CREATE TABLE table_name_95 (number_of_cars INTEGER, car__number VARCHAR, year_started VARCHAR, current_car VARCHAR)"}, {"answer": "SELECT monarch FROM table_name_6 WHERE assumed_office = \"december 15, 1876\"", "question": "Which monarch assumed office on December 15, 1876?", "context": "CREATE TABLE table_name_6 (monarch VARCHAR, assumed_office VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_25 WHERE name = \"ke \u02bb eaumoku p\u0101pa \u02bb iahiahi\"", "question": "On what date did ke \u02bb eaumoku p\u0101pa \u02bb iahiahi leave office?", "context": "CREATE TABLE table_name_25 (left_office VARCHAR, name VARCHAR)"}, {"answer": "SELECT years_in_office FROM table_name_23 WHERE assumed_office = \"october 4, 1886\"", "question": "How many years in office were served by the person who assumed the office on October 4, 1886?", "context": "CREATE TABLE table_name_23 (years_in_office VARCHAR, assumed_office VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_15 WHERE death = \"march 23, 1824\"", "question": "On what date did the person who died on March 23, 1824 leave office?", "context": "CREATE TABLE table_name_15 (left_office VARCHAR, death VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_58 WHERE years_in_office = \"2\" AND death = \"october 23, 1887\"", "question": "On what date did the person leave office who died on October 23, 1887 and who served 2 years?", "context": "CREATE TABLE table_name_58 (left_office VARCHAR, years_in_office VARCHAR, death VARCHAR)"}, {"answer": "SELECT monarch FROM table_name_7 WHERE left_office = \"circa 1886\"", "question": "Who is the monarch that left office circa 1886?", "context": "CREATE TABLE table_name_7 (monarch VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT report FROM table_name_29 WHERE venue = \"challenge stadium\"", "question": "What is the report for Challenge Stadium?", "context": "CREATE TABLE table_name_29 (report VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE away_team = \"melbourne tigers\"", "question": "What did the Melbourne Tigers score when they were the away team?", "context": "CREATE TABLE table_name_73 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_48 WHERE score = \"97-80\"", "question": "How many were in the crowd when the score was 97-80?", "context": "CREATE TABLE table_name_48 (crowd VARCHAR, score VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_94 WHERE away_team = \"south dragons\" AND venue = \"gold coast convention centre\"", "question": "How big was the crowd when the South Dragons were the away team at the Gold Coast Convention Centre?", "context": "CREATE TABLE table_name_94 (crowd VARCHAR, away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_81 WHERE pick = 32", "question": "What is the position of pick 32?", "context": "CREATE TABLE table_name_81 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_55 WHERE round = 1", "question": "Who was the player in round 1?", "context": "CREATE TABLE table_name_55 (player VARCHAR, round VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_73 WHERE record = \"3-0\"", "question": "Who are the opponents with a record of 3-0?", "context": "CREATE TABLE table_name_73 (opponents VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_5 WHERE opponents = 16", "question": "Who is the opponent with 16 points?", "context": "CREATE TABLE table_name_5 (opponent VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_62 WHERE score = \"l 86\u201394 (ot)\"", "question": "What were the high assists when the score was l 86\u201394 (ot)?", "context": "CREATE TABLE table_name_62 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_19 WHERE score = \"l 101\u2013109 (ot)\"", "question": "What were the high rebounds when the score was l 101\u2013109 (ot)?", "context": "CREATE TABLE table_name_19 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_66 WHERE rank = \"2\"", "question": "What is the Venue that has a Rank of 2?", "context": "CREATE TABLE table_name_66 (venue VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_77 WHERE season = \"1995/96\"", "question": "What is the Rank that has a Season of 1995/96?", "context": "CREATE TABLE table_name_77 (rank VARCHAR, season VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE rank = \"4\"", "question": "What is the Opponent that has a Rank of 4?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_31 WHERE venue = \"bellerive oval , hobart\" AND margin = \"115 runs\"", "question": "What is the Rank that has a Venue of bellerive oval , hobart, and a Margin of 115 runs?", "context": "CREATE TABLE table_name_31 (rank VARCHAR, venue VARCHAR, margin VARCHAR)"}, {"answer": "SELECT season FROM table_name_97 WHERE venue = \"bellerive oval , hobart\" AND rank = \"4\"", "question": "What is the Season that has a Venue of bellerive oval , hobart, and a Rank of 4?", "context": "CREATE TABLE table_name_97 (season VARCHAR, venue VARCHAR, rank VARCHAR)"}, {"answer": "SELECT margin FROM table_name_4 WHERE venue = \"bellerive oval , hobart\" AND season = \"2002/03\"", "question": "What is the Margin that has a Venue of bellerive oval , hobart, and a Season of 2002/03?", "context": "CREATE TABLE table_name_4 (margin VARCHAR, venue VARCHAR, season VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_51 WHERE score = 75 - 70 = 145 AND country = \"new zealand\"", "question": "What is the To par of the Player from New Zealand who had a Score of 75-70=145?", "context": "CREATE TABLE table_name_51 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_63 WHERE place = \"t3\"", "question": "What is the To par of the T3 Player?", "context": "CREATE TABLE table_name_63 (to_par VARCHAR, place VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_21 WHERE assists = 82", "question": "What is the sum of Rank, when Assists is \"82\"?", "context": "CREATE TABLE table_name_21 (rank INTEGER, assists VARCHAR)"}, {"answer": "SELECT COUNT(assists) FROM table_name_94 WHERE name = \"pablo prigioni\" AND games > 21", "question": "What is the total number of Assists, when Name is \"Pablo Prigioni\", and when Games is greater than 21?", "context": "CREATE TABLE table_name_94 (assists VARCHAR, name VARCHAR, games VARCHAR)"}, {"answer": "SELECT AVG(assists) FROM table_name_64 WHERE games > 19 AND name = \"pablo prigioni\"", "question": "What is the average Assists, when Games is greater than 19, and when Name is \"Pablo Prigioni\"?", "context": "CREATE TABLE table_name_64 (assists INTEGER, games VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_56 WHERE player = \"tom kite\"", "question": "What country is Tom Kite from?", "context": "CREATE TABLE table_name_56 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_93 WHERE country = \"united states\" AND player = \"bob gilder\"", "question": "What is the most money United States player Bob Gilder won?", "context": "CREATE TABLE table_name_93 (money___ INTEGER, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT material FROM table_name_36 WHERE completed < 1966 AND location = \"st. paul, minnesota\"", "question": "What was the statue in st. paul, minnesota constructed before 1966 made out of?", "context": "CREATE TABLE table_name_36 (material VARCHAR, completed VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(completed) FROM table_name_89 WHERE material = \"solid granite\"", "question": "When was the most recent statue that was made out of solid granite completed?", "context": "CREATE TABLE table_name_89 (completed INTEGER, material VARCHAR)"}, {"answer": "SELECT game FROM table_name_86 WHERE result = \"105-95\"", "question": "What Game had a Result of 105-95?", "context": "CREATE TABLE table_name_86 (game VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_7 WHERE road_team = \"seattle\" AND date = \"june 1\"", "question": "What is the Home Team of the game against Seattle on June 1?", "context": "CREATE TABLE table_name_7 (home_team VARCHAR, road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_80 WHERE game = \"game 2\"", "question": "What is the Home Team in Game 2?", "context": "CREATE TABLE table_name_80 (home_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_39 WHERE result = \"105-95\"", "question": "What is the Road Team in the game with a Result of 105-95?", "context": "CREATE TABLE table_name_39 (road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT game FROM table_name_76 WHERE road_team = \"seattle\" AND date = \"may 24\"", "question": "What is the Game on May 24 with Road Team Seattle?", "context": "CREATE TABLE table_name_76 (game VARCHAR, road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE result = \"82-92\"", "question": "On what Date was the Result 82-92?", "context": "CREATE TABLE table_name_52 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT population__2006_ FROM table_name_7 WHERE vehicle_registration_code = \"g\" AND population_density = \"1,432.0\"", "question": "What is the 2006 population of the area with vehicle registration code of G and population density of 1,432.0?", "context": "CREATE TABLE table_name_7 (population__2006_ VARCHAR, vehicle_registration_code VARCHAR, population_density VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_name_25 WHERE principal_town_city = \"waterford\"", "question": "What is the area of Waterford?", "context": "CREATE TABLE table_name_25 (area__km\u00b2_ VARCHAR, principal_town_city VARCHAR)"}, {"answer": "SELECT nuts_3_region FROM table_name_38 WHERE area__km\u00b2_ = \"41.58\"", "question": "What is the NUT 3 region with area of 41.58?", "context": "CREATE TABLE table_name_38 (nuts_3_region VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_17 WHERE event = \"ritc 22 - rage in the cage 22\"", "question": "What is Opponent, when Event is RITC 22 - Rage In The Cage 22?", "context": "CREATE TABLE table_name_17 (opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_99 WHERE method = \"ko\" AND opponent = \"rich guerin\"", "question": "What is Record, when Method is KO, and when Opponent is Rich Guerin?", "context": "CREATE TABLE table_name_99 (record VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_59 WHERE event = \"ritc 89 - triple main event 89\"", "question": "What is Round, when Event is RITC 89 - Triple Main Event 89?", "context": "CREATE TABLE table_name_59 (round VARCHAR, event VARCHAR)"}, {"answer": "SELECT social_sec_leeds FROM table_name_62 WHERE media_officer = \"jason james\" AND treasurer = \"james davidson\"", "question": "What kind of Social Sec Leeds has a Media Officer of jason james and a Treasurer of james davidson?", "context": "CREATE TABLE table_name_62 (social_sec_leeds VARCHAR, media_officer VARCHAR, treasurer VARCHAR)"}, {"answer": "SELECT social_sec_leeds FROM table_name_13 WHERE president = \"tom dawson\"", "question": "Name the Social Sec Leeds has a President of tom dawson?", "context": "CREATE TABLE table_name_13 (social_sec_leeds VARCHAR, president VARCHAR)"}, {"answer": "SELECT president FROM table_name_25 WHERE media_officer = \"pete marshall/ nazar striletski\"", "question": "Name the President has a Media Officer of pete marshall/ nazar striletski?", "context": "CREATE TABLE table_name_25 (president VARCHAR, media_officer VARCHAR)"}, {"answer": "SELECT social_sec_leeds FROM table_name_23 WHERE fixtures_sec = \"n/a\" AND general_sec = \"n/a\" AND season = \"2005\u20132006\"", "question": "Name the Social Sec Leeds has Fixtures Sec of n/a, and a General Sec of n/a, and the Season of 2005\u20132006?", "context": "CREATE TABLE table_name_23 (social_sec_leeds VARCHAR, season VARCHAR, fixtures_sec VARCHAR, general_sec VARCHAR)"}, {"answer": "SELECT president FROM table_name_26 WHERE treasurer = \"james davidson\" AND season = \"2006\u20132007\"", "question": "Name the  President who has a Treasurer of james davidson, and a Season of 2006\u20132007?", "context": "CREATE TABLE table_name_26 (president VARCHAR, treasurer VARCHAR, season VARCHAR)"}, {"answer": "SELECT fixtures_sec FROM table_name_12 WHERE season = \"2009\u20132010\"", "question": "Name the Fixtures Sec which has a Season of 2009\u20132010", "context": "CREATE TABLE table_name_12 (fixtures_sec VARCHAR, season VARCHAR)"}, {"answer": "SELECT format FROM table_name_33 WHERE label = \"epic/sony\" AND date > 1980", "question": "What is the Format of the Epic/Sony Label after 1980?", "context": "CREATE TABLE table_name_33 (format VARCHAR, label VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_23 WHERE catalog = \"sbp 234999\"", "question": "What is the Format of the Label with Catalog SBP 234999?", "context": "CREATE TABLE table_name_23 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT poll_source FROM table_name_87 WHERE lead_margin = 17", "question": "Which poll source has a lead of 17?", "context": "CREATE TABLE table_name_87 (poll_source VARCHAR, lead_margin VARCHAR)"}, {"answer": "SELECT years FROM table_name_31 WHERE jersey_number_s_ = 41 AND player = \"elden campbell category:articles with hcards\"", "question": "What years did Elden Campbell category:articles with hcards and jersesy number of 41 play?", "context": "CREATE TABLE table_name_31 (years VARCHAR, jersey_number_s_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT listed FROM table_name_1 WHERE built = \"1925\" AND type = \"warren pony truss\"", "question": "What is the listed date of the Warren pony truss bridge that was built in 1925?", "context": "CREATE TABLE table_name_1 (listed VARCHAR, built VARCHAR, type VARCHAR)"}, {"answer": "SELECT built FROM table_name_20 WHERE name = \"moores creek bridge\"", "question": "When was Moores Creek Bridge built?", "context": "CREATE TABLE table_name_20 (built VARCHAR, name VARCHAR)"}, {"answer": "SELECT built FROM table_name_55 WHERE name = \"blackburn point bridge\"", "question": "When was Blackburn Point Bridge built?", "context": "CREATE TABLE table_name_55 (built VARCHAR, name VARCHAR)"}, {"answer": "SELECT county FROM table_name_98 WHERE location = \"st. augustine\"", "question": "What county is the St. Augustine bridge in?", "context": "CREATE TABLE table_name_98 (county VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE \"notes\" = \"notes\"", "question": "Which Date has Notes of notes?", "context": "CREATE TABLE table_name_21 (date VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE location = \"davos\" AND time = \"45.7\"", "question": "Which Date has a Location of davos, and a Time of 45.7?", "context": "CREATE TABLE table_name_86 (date VARCHAR, location VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_44 WHERE date = \"1931-02-02\"", "question": "Which Location has a Date of 1931-02-02?", "context": "CREATE TABLE table_name_44 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT time FROM table_name_93 WHERE notes = \"men's speed skating\"", "question": "Which Time has Notes of men's speed skating?", "context": "CREATE TABLE table_name_93 (time VARCHAR, notes VARCHAR)"}, {"answer": "SELECT location FROM table_name_5 WHERE notes = \"eisstadion\" AND date = \"1930-01-11\"", "question": "Which Location has Notes of eisstadion, and a Date of 1930-01-11?", "context": "CREATE TABLE table_name_5 (location VARCHAR, notes VARCHAR, date VARCHAR)"}, {"answer": "SELECT distance FROM table_name_69 WHERE date = \"1930-01-11\"", "question": "Which Distance has a Date of 1930-01-11?", "context": "CREATE TABLE table_name_69 (distance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(weight) FROM table_name_76 WHERE race = \"vrc melbourne cup\"", "question": "What is the weight when the race was the VRC Melbourne Cup?", "context": "CREATE TABLE table_name_76 (weight VARCHAR, race VARCHAR)"}, {"answer": "SELECT weight FROM table_name_7 WHERE distance = \"8f\" AND race = \"rrc hill stakes (wfa)\"", "question": "What weight has a distance of 8F, and RRC Hill Stakes (wfa) as the race?", "context": "CREATE TABLE table_name_7 (weight VARCHAR, distance VARCHAR, race VARCHAR)"}, {"answer": "SELECT distance FROM table_name_16 WHERE weight = 9.2", "question": "What is the distance when the weight is 9.2?", "context": "CREATE TABLE table_name_16 (distance VARCHAR, weight VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_12 WHERE name = \"adam gettis\"", "question": "what is the pick for adam gettis?", "context": "CREATE TABLE table_name_12 (pick INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_49 WHERE overall < 217 AND name = \"alfred morris\" AND round < 6", "question": "what is the pick for alfred morris when the overall is less than 217, and the round is smaller than 6?", "context": "CREATE TABLE table_name_49 (pick INTEGER, round VARCHAR, overall VARCHAR, name VARCHAR)"}, {"answer": "SELECT college FROM table_name_55 WHERE overall > 102 AND name = \"keenan robinson\"", "question": "what is the college for keenan robinson when overall is more than 102?", "context": "CREATE TABLE table_name_55 (college VARCHAR, overall VARCHAR, name VARCHAR)"}, {"answer": "SELECT pick FROM table_name_97 WHERE name = \"robert griffin iii\"", "question": "what is the pick for robert griffin iii?", "context": "CREATE TABLE table_name_97 (pick VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(appearances) FROM table_name_21 WHERE flamengo_career = \"1989\u20131993 1996\u20131998 2004\u20132005\"", "question": "How many appearances did the flamengo player who was with flamengo during the years 1989\u20131993 1996\u20131998 2004\u20132005 have?", "context": "CREATE TABLE table_name_21 (appearances INTEGER, flamengo_career VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_96 WHERE week = 1", "question": "What was the attendance on week 1?", "context": "CREATE TABLE table_name_96 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_57 WHERE week < 3 AND result = \"w 28-6\"", "question": "Who was the opponent before week 3 and a result of w 28-6?", "context": "CREATE TABLE table_name_57 (opponent VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(core__number) FROM table_name_80 WHERE part_number_opn_ = \"osa242cep5au\" AND tdp__w_ > 82.1", "question": "What is the sum of core# with a part number of osa242cep5au and TDP greater than 82.1?", "context": "CREATE TABLE table_name_80 (core__number INTEGER, part_number_opn_ VARCHAR, tdp__w_ VARCHAR)"}, {"answer": "SELECT SUM(core__number) FROM table_name_62 WHERE tdp__w_ < 85.3", "question": "What is the sum of core# with a TDP less than 85.3?", "context": "CREATE TABLE table_name_62 (core__number INTEGER, tdp__w_ INTEGER)"}, {"answer": "SELECT winning_score FROM table_name_42 WHERE date = \"aug 26, 1973\"", "question": "Which Winning score has a Date of aug 26, 1973?", "context": "CREATE TABLE table_name_42 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_21 WHERE date = \"may 19, 1973\"", "question": "Which Runner(s)-up has a Date of may 19, 1973?", "context": "CREATE TABLE table_name_21 (runner_s__up VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_4 WHERE runner_s__up = \"betty burfeindt\" AND tournament = \"pompano beach classic\"", "question": "Which Margin of victory has a Runner(s)-up of betty burfeindt, and a Tournament of pompano beach classic?", "context": "CREATE TABLE table_name_4 (margin_of_victory VARCHAR, runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_62 WHERE tournament = \"cameron park open\"", "question": "Which Runner(s)-up has a Tournament of cameron park open?", "context": "CREATE TABLE table_name_62 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_26 WHERE winning_score = \u20138(68 - 68 - 72 - 72 = 280)", "question": "Which Runner(s)-up has a Winning score of \u20138 (68-68-72-72=280)?", "context": "CREATE TABLE table_name_26 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE tournament = \"national jewish hospital open\" AND runner_s__up = \"pat bradley\"", "question": "Which Date has a Tournament of national jewish hospital open, and a Runner(s)-up of pat bradley?", "context": "CREATE TABLE table_name_95 (date VARCHAR, tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE winner = \"universitario\" AND season > 1943", "question": "What is the date for the winner Universitario after the 1943 season?", "context": "CREATE TABLE table_name_99 (date VARCHAR, winner VARCHAR, season VARCHAR)"}, {"answer": "SELECT competition_round_[d_] FROM table_name_75 WHERE season < 1930 AND winner = \"draw\"", "question": "What is the competition before the 1930 season, and a winning draw?", "context": "CREATE TABLE table_name_75 (competition_round_ VARCHAR, d_ VARCHAR, season VARCHAR, winner VARCHAR)"}, {"answer": "SELECT co_driver FROM table_name_36 WHERE position = \"6th\" AND laps > 159", "question": "Who is the co-driver for the 6th position and more than 159 laps?", "context": "CREATE TABLE table_name_36 (co_driver VARCHAR, position VARCHAR, laps VARCHAR)"}, {"answer": "SELECT location FROM table_name_83 WHERE rank > 12 AND floors = 13", "question": "Which location has 13 floors and a rank greater than 12?", "context": "CREATE TABLE table_name_83 (location VARCHAR, rank VARCHAR, floors VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_58 WHERE date = \"january 1\"", "question": "What is the Visitor on January 1?", "context": "CREATE TABLE table_name_58 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_63 WHERE score = \"3\u20131\" AND visitor = \"toronto maple leafs\" AND date = \"january 20\"", "question": "What is the Record of the Game on January 20 with Visitor Toronto Maple Leafs with a Score of 3\u20131?", "context": "CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR, score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_75 WHERE score = \"6\u20132\" AND date = \"november 24\"", "question": "What is the Record of the game on November 24 with a Score of 6\u20132?", "context": "CREATE TABLE table_name_75 (record VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_32 WHERE score = \"1\u20133\" AND visitor = \"chicago black hawks\" AND date = \"november 15\"", "question": "What is the Record of the game on November 15 against Visitor Chicago Black Hawks with a Score of 1\u20133?", "context": "CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR, score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE score = \"3\u20131\" AND record = \"1\u20131\u20130\"", "question": "What is the Date of the game with a Score of 3\u20131 and Record of 1\u20131\u20130?", "context": "CREATE TABLE table_name_70 (date VARCHAR, score VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_33 WHERE date = \"january 24\"", "question": "What is the Visitor of the game on January 24?", "context": "CREATE TABLE table_name_33 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_54 WHERE game = 27", "question": "What is Record, when Game is 27?", "context": "CREATE TABLE table_name_54 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_name_61 WHERE high_rebounds = \"david lee (15)\"", "question": "What is Team, when High Rebounds is David Lee (15)?", "context": "CREATE TABLE table_name_61 (team VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT record FROM table_name_32 WHERE location_attendance = \"madison square garden 19,009\"", "question": "What is Record, when Location Attendance, is Madison Square Garden 19,009?", "context": "CREATE TABLE table_name_32 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT weeks_on_top FROM table_name_48 WHERE artist = \"omc\"", "question": "How many weeks on top was OMC?", "context": "CREATE TABLE table_name_48 (weeks_on_top VARCHAR, artist VARCHAR)"}, {"answer": "SELECT volume AS :issue FROM table_name_7 WHERE weeks_on_top = \"3\" AND artist = \"sheryl crow\"", "question": "What's the volume:issue of Sheryl Crow with 3 weeks on top?", "context": "CREATE TABLE table_name_7 (volume VARCHAR, weeks_on_top VARCHAR, artist VARCHAR)"}, {"answer": "SELECT coverage__transmitter_site_ FROM table_name_14 WHERE power__kw_ = \"10kw\" AND callsign = \"dyfx-tv\"", "question": "What is Coverage (Transmitter Site), when Power (kW) is \"10kW\", and when Callsign is \"DYFX-TV\"?", "context": "CREATE TABLE table_name_14 (coverage__transmitter_site_ VARCHAR, power__kw_ VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT coverage__transmitter_site_ FROM table_name_69 WHERE power__kw_ = \"10kw\" AND callsign = \"dyfx-tv\"", "question": "What is Coverage (Transmitter Site), when Power (kW) is \"10kW\", and when Callsign is \"DYFX-TV\"?", "context": "CREATE TABLE table_name_69 (coverage__transmitter_site_ VARCHAR, power__kw_ VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT branding FROM table_name_73 WHERE callsign = \"dxed-tv\"", "question": "What is Branding, when Callsign is \"DXED-TV\"?", "context": "CREATE TABLE table_name_73 (branding VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_name_12 WHERE coverage__transmitter_site_ = \"lucena\"", "question": "What is Power (kW), when Coverage (Transmitter Site) is \"Lucena\"?", "context": "CREATE TABLE table_name_12 (power__kw_ VARCHAR, coverage__transmitter_site_ VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_95 WHERE winner = \"ivanovic\" AND \"ivanovic\" > 4 AND round = \"r16\"", "question": "What year did Ivanovic win with Ivanovic greater than 4 and round of R16?", "context": "CREATE TABLE table_name_95 (year INTEGER, round VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MAX(jankovic) FROM table_name_68 WHERE round = \"sf\" AND tournament = \"indian wells\"", "question": "What is the highest result for Jankovic at Indian Wells and round of SF?", "context": "CREATE TABLE table_name_68 (jankovic INTEGER, round VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_55 WHERE high_assists = \"ben gordon (8)\"", "question": "Where did Ben Gordon (8) have the high assists?", "context": "CREATE TABLE table_name_55 (location_attendance VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_42 WHERE location_attendance = \"united center 20,389\"", "question": "Who had the high points at the United Center 20,389?", "context": "CREATE TABLE table_name_42 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_1 WHERE team = \"minnesota\"", "question": "Where was the location attendance when Minnesota played?", "context": "CREATE TABLE table_name_1 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE high_assists = \"ben gordon (8)\"", "question": "What date did Ben Gordon (8) have high assists?", "context": "CREATE TABLE table_name_20 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT team FROM table_name_82 WHERE start < 28 AND finish = 25", "question": "What team had a finish of 25 in a smaller than 28?", "context": "CREATE TABLE table_name_82 (team VARCHAR, start VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MIN(finish) FROM table_name_61 WHERE start = 14", "question": "For any races with a start of 14 what was the lowest finish?", "context": "CREATE TABLE table_name_61 (finish INTEGER, start VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_22 WHERE name = \"jimmy gibson\"", "question": "What is the transfer fee for Jimmy Gibson?", "context": "CREATE TABLE table_name_22 (transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_30 WHERE rank = \"7\"", "question": "What is the sum of silver medals won for rank 7?", "context": "CREATE TABLE table_name_30 (silver INTEGER, rank VARCHAR)"}, {"answer": "SELECT agg FROM table_name_95 WHERE team_1 = \"goldfields obuasi\"", "question": "Goldfields Obuasi Team 1 has what Agg. totals ?", "context": "CREATE TABLE table_name_95 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT AVG(inhabitants) FROM table_name_36 WHERE party = \"south tyrolean people's party\" AND municipality = \"bruneck\" AND election > 2010", "question": "Which Inhabitants has a Party of south tyrolean people's party, a Municipality of bruneck, and an Election larger than 2010?", "context": "CREATE TABLE table_name_36 (inhabitants INTEGER, election VARCHAR, party VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT AVG(election) FROM table_name_35 WHERE municipality = \"laives\" AND inhabitants < 17 OFFSET 197", "question": "Which Election has a Municipality of laives, and Inhabitants smaller than 17,197?", "context": "CREATE TABLE table_name_35 (election INTEGER, municipality VARCHAR, inhabitants VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_35 WHERE result = \"w 40\u201362\"", "question": "What is the number week with a result of w 40\u201362?", "context": "CREATE TABLE table_name_35 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_79 WHERE week = 15", "question": "What was the game site week 15?", "context": "CREATE TABLE table_name_79 (game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT record FROM table_name_5 WHERE result = \"w 52\u201343\"", "question": "What is the record when the result was w 52\u201343?", "context": "CREATE TABLE table_name_5 (record VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_69 WHERE game_site = \"verizon wireless arena\" AND result = \"w 59\u201342\"", "question": "What is the highest week when the game site was Verizon Wireless Arena, and the result was w 59\u201342?", "context": "CREATE TABLE table_name_69 (week INTEGER, game_site VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_98 WHERE date = \"may 25, 2007\"", "question": "What is the opponent on May 25, 2007?", "context": "CREATE TABLE table_name_98 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE record = \"5\u20130\"", "question": "What team was the opponent with a record of 5\u20130?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE away_team = \"adelaide\"", "question": "What date was the away team from Adelaide?", "context": "CREATE TABLE table_name_37 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE ground = \"colonial stadium\"", "question": "What date was the Colonial Stadium?", "context": "CREATE TABLE table_name_62 (date VARCHAR, ground VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_98 WHERE ground = \"westpac stadium\"", "question": "What was the total crowd attendance at Westpac Stadium?", "context": "CREATE TABLE table_name_98 (crowd INTEGER, ground VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_13 WHERE away_team = \"maidsone united\"", "question": "What is the attendance of the match with maidsone united as the away team?", "context": "CREATE TABLE table_name_13 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_73 WHERE tie_no = \"45\"", "question": "What is the attendance with a 45 tie no.?", "context": "CREATE TABLE table_name_73 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT february FROM table_name_74 WHERE opponent = \"montreal canadiens\"", "question": "What is February, when Opponent is \"Montreal Canadiens\"?", "context": "CREATE TABLE table_name_74 (february VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT february FROM table_name_46 WHERE record = \"21-29-11\"", "question": "What is February, when Record is \"21-29-11\"?", "context": "CREATE TABLE table_name_46 (february VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(february) FROM table_name_54 WHERE record = \"21-30-11\" AND game > 62", "question": "What is the lowest February, when Record is \"21-30-11\", and when Game is greater than 62?", "context": "CREATE TABLE table_name_54 (february INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE game < 61 AND february < 11 AND opponent = \"@ buffalo sabres\"", "question": "What is Score, when Game is less than 61, when February is less than 11, and when Opponent is \"@ Buffalo Sabres\"?", "context": "CREATE TABLE table_name_25 (score VARCHAR, opponent VARCHAR, game VARCHAR, february VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_92 WHERE record = \"21-30-11\"", "question": "What is the highest Game, when Record is \"21-30-11\"?", "context": "CREATE TABLE table_name_92 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_16 WHERE game > 76 AND team = \"phoenix\"", "question": "Who had the most rebounds in the game against Phoenix with a number over 76?", "context": "CREATE TABLE table_name_16 (high_rebounds VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT years FROM table_name_43 WHERE jersey_number_s_ = \"5\"", "question": "What is Years, when Jersey Number(s) is 5?", "context": "CREATE TABLE table_name_43 (years VARCHAR, jersey_number_s_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_54 WHERE player = \"drew barry category:articles with hcards\"", "question": "What is Position when Player is Drew Barry Category:Articles With hCards?", "context": "CREATE TABLE table_name_54 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT years FROM table_name_97 WHERE jersey_number_s_ = \"21\" AND position = \"sg\"", "question": "What is Years, when Jersey Number(s) is 21, and when Position is SG?", "context": "CREATE TABLE table_name_97 (years VARCHAR, jersey_number_s_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_50 WHERE nationality = \"united states\" AND jersey_number_s_ = \"12\" AND player = \"tom black category:articles with hcards\"", "question": "What is Postition, when Nationality is United States, when Jersey Number(s) is 12, and when Player is Tom Black Category:Articles With hCards?", "context": "CREATE TABLE table_name_50 (position VARCHAR, player VARCHAR, nationality VARCHAR, jersey_number_s_ VARCHAR)"}, {"answer": "SELECT club FROM table_name_76 WHERE founded < 1882 AND league = \"fa premier league\"", "question": "Which Club has a Founded smaller than 1882, and a League of fa premier league?", "context": "CREATE TABLE table_name_76 (club VARCHAR, founded VARCHAR, league VARCHAR)"}, {"answer": "SELECT venue FROM table_name_99 WHERE club = \"west bromwich albion\"", "question": "Which Venue has a Club of west bromwich albion?", "context": "CREATE TABLE table_name_99 (venue VARCHAR, club VARCHAR)"}, {"answer": "SELECT sport FROM table_name_71 WHERE founded > 1874 AND club = \"birmingham city\"", "question": "Which Sport has a Founded larger than 1874 and a Club of birmingham city?", "context": "CREATE TABLE table_name_71 (sport VARCHAR, founded VARCHAR, club VARCHAR)"}, {"answer": "SELECT league FROM table_name_48 WHERE venue = \"billesley common\"", "question": "What kind of League has a Venue of billesley common?", "context": "CREATE TABLE table_name_48 (league VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(founded) FROM table_name_5 WHERE venue = \"villa park\"", "question": "COunt the Founded which has a Venue of villa park?", "context": "CREATE TABLE table_name_5 (founded INTEGER, venue VARCHAR)"}, {"answer": "SELECT club FROM table_name_73 WHERE founded > 1875 AND sport = \"football\"", "question": "Name the Club which has a Founded larger than 1875, and a Sport of football?", "context": "CREATE TABLE table_name_73 (club VARCHAR, founded VARCHAR, sport VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE place = \"t3\" AND player = \"seve ballesteros\"", "question": "What score did Seve Ballesteros have when he was in T3 place?", "context": "CREATE TABLE table_name_54 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_43 WHERE player = \"jerry pate\"", "question": "What was the money value for Jerry Pate?", "context": "CREATE TABLE table_name_43 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_54 WHERE player = \"curtis strange\"", "question": "What country is Curtis Strange from?", "context": "CREATE TABLE table_name_54 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_91 WHERE score = 77 - 69 - 70 - 71 = 287", "question": "Who had a score of 77-69-70-71=287?", "context": "CREATE TABLE table_name_91 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_71 WHERE player = \"tom kite\"", "question": "What was Tom Kite's to par?", "context": "CREATE TABLE table_name_71 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE home = \"platense\"", "question": "What is the date for the game where Platense was the home side?", "context": "CREATE TABLE table_name_99 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE attendance < 6650 AND score = \"0:1\"", "question": "On what date was the game with fewer than 6650 in attendance, that finished 0:1?", "context": "CREATE TABLE table_name_30 (date VARCHAR, attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_28 WHERE attendance > 1675 AND away = \"olimpia\"", "question": "Who was the home team in the game with more than 1675, and Olimpia was the away side?", "context": "CREATE TABLE table_name_28 (home VARCHAR, attendance VARCHAR, away VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_47 WHERE week < 5 AND opponent = \"seattle seahawks\"", "question": "What was the total Attendance in weeks previous of 5, playing the Seattle Seahawks?", "context": "CREATE TABLE table_name_47 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT head_coach FROM table_name_75 WHERE shirt_sponsor = \"finke\"", "question": "Who is the head coach for the team that has finke as the shirt sponsor?", "context": "CREATE TABLE table_name_75 (head_coach VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT team AS captain FROM table_name_11 WHERE team = \"tus koblenz\"", "question": "Who was the team captain of tus koblenz?", "context": "CREATE TABLE table_name_11 (team VARCHAR)"}, {"answer": "SELECT shirt_sponsor FROM table_name_48 WHERE kitmaker = \"puma\" AND head_coach = \"andre schubert\"", "question": "Who is the shirt sponsor for the team with a head coach of andre schubert and a kitmaker of puma?", "context": "CREATE TABLE table_name_48 (shirt_sponsor VARCHAR, kitmaker VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT team AS captain FROM table_name_41 WHERE shirt_sponsor = \"sparkasse (d\u00fcsseldorf)\"", "question": "Who is the team captain for the team with sparkasse (d\u00fcsseldorf) as the shirt sponsor?", "context": "CREATE TABLE table_name_41 (team VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT head_coach FROM table_name_94 WHERE team = \"arminia bielefeld\"", "question": "Who is the head coach for the team, arminia bielefeld?", "context": "CREATE TABLE table_name_94 (head_coach VARCHAR, team VARCHAR)"}, {"answer": "SELECT result FROM table_name_61 WHERE attendance = \"77,698\"", "question": "What is the result of the game with 77,698 in attendance?", "context": "CREATE TABLE table_name_61 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE result = \"2-1\"", "question": "What is the Venue when the result was 2-1?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_64 WHERE round = \"after extra time, chelsea won on 4-1 on penalties\"", "question": "What is the venue when the Round shows after extra time, chelsea won on 4-1 on penalties?", "context": "CREATE TABLE table_name_64 (venue VARCHAR, round VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_12 WHERE result = \"1-1\"", "question": "What was the attendance when the result was 1-1?", "context": "CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT version FROM table_name_99 WHERE format = \"cd\"", "question": "What is the Version of the CD release?", "context": "CREATE TABLE table_name_99 (version VARCHAR, format VARCHAR)"}, {"answer": "SELECT label FROM table_name_40 WHERE format = \"cd\" AND version = \"original\"", "question": "What is the Label of the Original CD release?", "context": "CREATE TABLE table_name_40 (label VARCHAR, format VARCHAR, version VARCHAR)"}, {"answer": "SELECT version FROM table_name_82 WHERE format = \"cd\" AND date = \"june 12, 2008\" AND region = \"cyprus\"", "question": "What is the Version of the CD release on June 12, 2008 in Cyprus?", "context": "CREATE TABLE table_name_82 (version VARCHAR, region VARCHAR, format VARCHAR, date VARCHAR)"}, {"answer": "SELECT region FROM table_name_2 WHERE date = \"december 22, 2008\"", "question": "What is the Region of the release on December 22, 2008?", "context": "CREATE TABLE table_name_2 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_62 WHERE date = \"june 12, 2008\" AND region = \"cyprus\"", "question": "What is the Label of the release on June 12, 2008 in Cyprus?", "context": "CREATE TABLE table_name_62 (label VARCHAR, date VARCHAR, region VARCHAR)"}, {"answer": "SELECT format FROM table_name_16 WHERE region = \"greece\"", "question": "What is the Format of the release in Greece?", "context": "CREATE TABLE table_name_16 (format VARCHAR, region VARCHAR)"}, {"answer": "SELECT COUNT(tonnage) FROM table_name_4 WHERE date = \"25 june 1943\"", "question": "What is the total number of Tonnage, when Date is \"25 June 1943\"?", "context": "CREATE TABLE table_name_4 (tonnage VARCHAR, date VARCHAR)"}, {"answer": "SELECT ship FROM table_name_39 WHERE nationality = \"syria\" AND date = \"26 june 1943\" AND tonnage = 80", "question": "What is Ship, when Nationality is \"Syria\", and when Date is \"26 June 1943\", and when Tonnage is \"80\"?", "context": "CREATE TABLE table_name_39 (ship VARCHAR, tonnage VARCHAR, nationality VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_99 WHERE result = \"loss\" AND attendance > 56 OFFSET 648", "question": "What is the record of the game that resulted in a loss with more than 56,648 people in attendance?", "context": "CREATE TABLE table_name_99 (record VARCHAR, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT enrollment FROM table_name_35 WHERE university = \"university of akron\"", "question": "What was the university of akron's enrollment?", "context": "CREATE TABLE table_name_35 (enrollment VARCHAR, university VARCHAR)"}, {"answer": "SELECT athletics_nickname FROM table_name_86 WHERE founded = \"1872\"", "question": "Which athletics nickname was founded in 1872?", "context": "CREATE TABLE table_name_86 (athletics_nickname VARCHAR, founded VARCHAR)"}, {"answer": "SELECT Took AS office FROM table_name_76 WHERE location = \"dover\" AND type = \"executive\"", "question": "What date did the executive office in Dover take office?", "context": "CREATE TABLE table_name_76 (Took VARCHAR, location VARCHAR, type VARCHAR)"}, {"answer": "SELECT Left AS office FROM table_name_94 WHERE location = \"washington\"", "question": "What left office date happened in Washington?", "context": "CREATE TABLE table_name_94 (Left VARCHAR, location VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_65 WHERE team_2 = \"marbella\"", "question": "What is the 2nd Leg, when Team 2 is Marbella?", "context": "CREATE TABLE table_name_65 (team_2 VARCHAR)"}, {"answer": "SELECT result_f___a FROM table_name_22 WHERE round = \"round 5\"", "question": "What was the result F-A for round 5?", "context": "CREATE TABLE table_name_22 (result_f___a VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_59 WHERE lost < 12 AND name = \"ec amberg (n)\" AND position < 4", "question": "What is the most elevated Played that has a Lost smaller than 12, and a Name of ec amberg (n), and a Position smaller than 4?", "context": "CREATE TABLE table_name_59 (played INTEGER, position VARCHAR, lost VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_63 WHERE name = \"ec amberg (n)\" AND position < 4", "question": "What is the average Lost that has a Name of ec amberg (n), and a Position smaller than 4?", "context": "CREATE TABLE table_name_63 (lost INTEGER, name VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_14 WHERE drawn < 1", "question": "What is the whole of Points that has a Drawn smaller than 1?", "context": "CREATE TABLE table_name_14 (points INTEGER, drawn INTEGER)"}, {"answer": "SELECT SUM(drawn) FROM table_name_33 WHERE lost = 4", "question": "What is the whole of Drawn that has a Lost of 4?", "context": "CREATE TABLE table_name_33 (drawn INTEGER, lost VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_42 WHERE played > 14", "question": "What is the whole of Drawn that has a Played larger than 14?", "context": "CREATE TABLE table_name_42 (drawn INTEGER, played INTEGER)"}, {"answer": "SELECT result FROM table_name_75 WHERE date = \"april 28\"", "question": "What was the result of the game on April 28?", "context": "CREATE TABLE table_name_75 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_36 WHERE road_team = \"boston\" AND date = \"april 20\"", "question": "Who was the home team on April 20 against Boston?", "context": "CREATE TABLE table_name_36 (home_team VARCHAR, road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_42 WHERE game = \"game 3\"", "question": "What was the result of game 3?", "context": "CREATE TABLE table_name_42 (result VARCHAR, game VARCHAR)"}, {"answer": "SELECT result FROM table_name_42 WHERE road_team = \"los angeles\" AND date = \"april 17\"", "question": "What is the result of the game on April 17 against Los Angeles?", "context": "CREATE TABLE table_name_42 (result VARCHAR, road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE road_team = \"boston\" AND game = \"game 3\"", "question": "What is the date of game 3 with Boston as the road team?", "context": "CREATE TABLE table_name_56 (date VARCHAR, road_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT iata FROM table_name_3 WHERE airportname = \"esperadinha airport\"", "question": "What is the IATA for Esperadinha Airport?", "context": "CREATE TABLE table_name_3 (iata VARCHAR, airportname VARCHAR)"}, {"answer": "SELECT airportname FROM table_name_3 WHERE city___town = \"s\u00e3o filipe\" AND iata = \"sfl\"", "question": "What is the name of the airport in S\u00e3o Filipe that has an IATA of sfl?", "context": "CREATE TABLE table_name_3 (airportname VARCHAR, city___town VARCHAR, iata VARCHAR)"}, {"answer": "SELECT city___town FROM table_name_36 WHERE icao = \"gvma\"", "question": "In which city is the ICAO gvma?", "context": "CREATE TABLE table_name_36 (city___town VARCHAR, icao VARCHAR)"}, {"answer": "SELECT icao FROM table_name_88 WHERE iata = \"bvc\"", "question": "What is the ICAO for the IATA bvc?", "context": "CREATE TABLE table_name_88 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT island FROM table_name_53 WHERE airportname = \"esperadinha airport\"", "question": "On which island is Esperadinha airport located?", "context": "CREATE TABLE table_name_53 (island VARCHAR, airportname VARCHAR)"}, {"answer": "SELECT city___town FROM table_name_53 WHERE icao = \"gvsf\"", "question": "Which city has an ICAO of gvsf?", "context": "CREATE TABLE table_name_53 (city___town VARCHAR, icao VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_17 WHERE silver < 32 AND bronze = 25 AND overall < 67", "question": "How many gold when silver is less than 32, bronze is 25, and overall is less than 67?", "context": "CREATE TABLE table_name_17 (gold INTEGER, overall VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_97 WHERE bronze = 25 AND overall < 67", "question": "How many silver when bronze is 25 and overall is less than 67?", "context": "CREATE TABLE table_name_97 (silver INTEGER, bronze VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_2 WHERE overall < 67 AND team = \"saami\" AND gold < 5", "question": "what is the least silver when overall is less than 67, team is saami and gold is less than 5?", "context": "CREATE TABLE table_name_2 (silver INTEGER, gold VARCHAR, overall VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_23 WHERE team = \"northwest territories\" AND gold > 34", "question": "what is the average bronze when the team is northwest territories and gold is more than 34?", "context": "CREATE TABLE table_name_23 (bronze INTEGER, team VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_14 WHERE team = \"northwest territories\" AND gold < 34", "question": "How many silver when the team is northwest territories and gold is less than 34?", "context": "CREATE TABLE table_name_14 (silver VARCHAR, team VARCHAR, gold VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_73 WHERE home_team = \"west ham united\"", "question": "What is the away team with West Ham United as the home team?", "context": "CREATE TABLE table_name_73 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_34 WHERE tie_no = \"23\"", "question": "What is the attendance of tie no. 23?", "context": "CREATE TABLE table_name_34 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_64 WHERE home_team = \"carlisle united\"", "question": "What is the attendance of the match with Carlisle united as the home team?", "context": "CREATE TABLE table_name_64 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_55 WHERE year_s__won = \"1985\"", "question": "what is the sum of total when year(s) won is 1985?", "context": "CREATE TABLE table_name_55 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT finish FROM table_name_51 WHERE country = \"united states\" AND player = \"tiger woods\"", "question": "what is the finish when the country is united states and the player is tiger woods?", "context": "CREATE TABLE table_name_51 (finish VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_92 WHERE finish = \"t32\"", "question": "How many times was the finish t32?", "context": "CREATE TABLE table_name_92 (total VARCHAR, finish VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_71 WHERE date = \"8 january 1946\" AND tie_no = \"4\"", "question": "Who was the home team on 8 January 1946 with a tie no of 4?", "context": "CREATE TABLE table_name_71 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE home_team = \"wrexham\" AND date = \"blackpool\"", "question": "What is the score of the game where Wrexham is the home team and the date is Blackpool?", "context": "CREATE TABLE table_name_1 (score VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT programming FROM table_name_18 WHERE aspect = \"4:3\" AND psip_short_name = \"ibc-tv\"", "question": "Name the Programming which has an Aspect of 4:3, and a PSIP Short Name of ibc-tv?", "context": "CREATE TABLE table_name_18 (programming VARCHAR, aspect VARCHAR, psip_short_name VARCHAR)"}, {"answer": "SELECT MAX(channel) FROM table_name_12 WHERE aspect = \"4:3\" AND psip_short_name = \"ibc-tv\"", "question": "Name the highest Channel with an Aspect of 4:3, and a PSIP Short Name of ibc-tv?", "context": "CREATE TABLE table_name_12 (channel INTEGER, aspect VARCHAR, psip_short_name VARCHAR)"}, {"answer": "SELECT video FROM table_name_17 WHERE channel > 56.4", "question": "WHich Video has a Channel larger than 56.4?", "context": "CREATE TABLE table_name_17 (video VARCHAR, channel INTEGER)"}, {"answer": "SELECT programming FROM table_name_98 WHERE aspect = \"4:3\" AND psip_short_name = \"metvla\"", "question": "Which Programming has an Aspect of 4:3 and a PSIP Short Name of metvla?", "context": "CREATE TABLE table_name_98 (programming VARCHAR, aspect VARCHAR, psip_short_name VARCHAR)"}, {"answer": "SELECT channel FROM table_name_10 WHERE aspect = \"4:3\" AND programming = \"me-tv\"", "question": "Which Channel has an Aspect of 4:3 and a Programming of me-tv?", "context": "CREATE TABLE table_name_10 (channel VARCHAR, aspect VARCHAR, programming VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE game > 76 AND april = 6", "question": "Who is the opponent in a game higher than 76 on April 6?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, game VARCHAR, april VARCHAR)"}, {"answer": "SELECT MIN(april) FROM table_name_10 WHERE game < 76", "question": "What is the earliest April date with a game less than 76?", "context": "CREATE TABLE table_name_10 (april INTEGER, game INTEGER)"}, {"answer": "SELECT tracking_method FROM table_name_25 WHERE latest_stable_release = \"n/a\" AND price_in_usd = \"from $202/month\"", "question": "Which Tracking Method has a Latest stable release of n/a, and a Price in USD of from $202/month?", "context": "CREATE TABLE table_name_25 (tracking_method VARCHAR, latest_stable_release VARCHAR, price_in_usd VARCHAR)"}, {"answer": "SELECT name FROM table_name_77 WHERE company = \"quantcast corporation\"", "question": "Which Name has a Company of quantcast corporation?", "context": "CREATE TABLE table_name_77 (name VARCHAR, company VARCHAR)"}, {"answer": "SELECT latest_stable_release FROM table_name_36 WHERE price_in_usd = \"free / negotiable\"", "question": "Name the Latest stable release that has a Price in USD of free / negotiable?", "context": "CREATE TABLE table_name_36 (latest_stable_release VARCHAR, price_in_usd VARCHAR)"}, {"answer": "SELECT company FROM table_name_69 WHERE price_in_usd = \"free / negotiable\"", "question": "Name the Company which has a Price in USD of free / negotiable?", "context": "CREATE TABLE table_name_69 (company VARCHAR, price_in_usd VARCHAR)"}, {"answer": "SELECT company FROM table_name_61 WHERE tracking_method = \"cookies via javascript\" AND latest_stable_release = \"n/a\" AND name = \"clicktale\"", "question": "Name the Company which has a Tracking Method of cookies via javascript, and a Latest stable release of n/a, and a Name of clicktale?", "context": "CREATE TABLE table_name_61 (company VARCHAR, name VARCHAR, tracking_method VARCHAR, latest_stable_release VARCHAR)"}, {"answer": "SELECT tracking_method FROM table_name_24 WHERE company = \"mapmyuser, llc\"", "question": "Name the Tracking Method which has a Company of mapmyuser, llc?", "context": "CREATE TABLE table_name_24 (tracking_method VARCHAR, company VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_7 WHERE home_team = \"queens park rangers\"", "question": "What was the tie number of the game when the queens park rangers were the home team?", "context": "CREATE TABLE table_name_7 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_91 WHERE away_team = \"wrexham\"", "question": "What was the tie number when the away team was Wrexham?", "context": "CREATE TABLE table_name_91 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT brigade FROM table_name_44 WHERE population = \"190\"", "question": "Which brigade has a population of 190?", "context": "CREATE TABLE table_name_44 (brigade VARCHAR, population VARCHAR)"}, {"answer": "SELECT defending_forces FROM table_name_22 WHERE population = \"650\"", "question": "What defending forces have a population of 650?", "context": "CREATE TABLE table_name_22 (defending_forces VARCHAR, population VARCHAR)"}, {"answer": "SELECT defending_forces FROM table_name_77 WHERE name = \"danna\"", "question": "Which defending forces have the name Danna?", "context": "CREATE TABLE table_name_77 (defending_forces VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_13 WHERE population = \"810\"", "question": "What name has a population of 810?", "context": "CREATE TABLE table_name_13 (name VARCHAR, population VARCHAR)"}, {"answer": "SELECT defending_forces FROM table_name_62 WHERE population = \"230\"", "question": "Which defending forces has a population of 230?", "context": "CREATE TABLE table_name_62 (defending_forces VARCHAR, population VARCHAR)"}, {"answer": "SELECT region FROM table_name_41 WHERE format = \"digital\" AND date = \"19 july 2008\"", "question": "In what region was Degeneration released in digital format on 19 July 2008?", "context": "CREATE TABLE table_name_41 (region VARCHAR, format VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_55 WHERE date = \"19 july 2008\"", "question": "What was the name of the catalog released on 19 July 2008?", "context": "CREATE TABLE table_name_55 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_11 WHERE home_team = \"luton town\"", "question": "who is the away team when the home team is luton town?", "context": "CREATE TABLE table_name_11 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_51 WHERE home_team = \"chester city\"", "question": "what is the attendance when the home team is chester city?", "context": "CREATE TABLE table_name_51 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_82 WHERE attendance = \"25 november 1997\" AND away_team = \"exeter city\"", "question": "who is the home team when attendance is 25 november 1997 and the away team is exeter city?", "context": "CREATE TABLE table_name_82 (home_team VARCHAR, attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_90 WHERE finalist = \"magnus gustafsson\"", "question": "Who are the semifinalists of the tournament with magnus gustafsson as the finalist?", "context": "CREATE TABLE table_name_90 (semifinalists VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT winner_and_score FROM table_name_43 WHERE semifinalists = \"goran prpi\u0107 sergi bruguera\"", "question": "Who is the winner and score of the tournament with semifinalists goran prpi\u0107 sergi bruguera?", "context": "CREATE TABLE table_name_43 (winner_and_score VARCHAR, semifinalists VARCHAR)"}, {"answer": "SELECT winner_and_score FROM table_name_54 WHERE week = \"april 22\"", "question": "Who is the winner and score during the week of April 22?", "context": "CREATE TABLE table_name_54 (winner_and_score VARCHAR, week VARCHAR)"}, {"answer": "SELECT week FROM table_name_76 WHERE tournament = \"paris\"", "question": "What week was the tournament of paris?", "context": "CREATE TABLE table_name_76 (week VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT AVG(Champions) AS league FROM table_name_38 WHERE league < 4", "question": "What is the average Champions League assists for the players with League assists under 4?", "context": "CREATE TABLE table_name_38 (Champions INTEGER, league INTEGER)"}, {"answer": "SELECT MAX(Champions) AS league FROM table_name_48 WHERE total = 6 AND position = \"midfielder\"", "question": "What is the most Champions League assists for those with a total of 6 and position of Midfielder?", "context": "CREATE TABLE table_name_48 (Champions INTEGER, total VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(fac___lc_g) FROM table_name_30 WHERE cl_g < 2 AND total_apps < 5 AND UEfa_yc > 0", "question": "What is the sum of the FAC/LC G with a CL G less than 2, less than 5 total apps, and a UEFA YC greater than 0?", "context": "CREATE TABLE table_name_30 (fac___lc_g INTEGER, UEfa_yc VARCHAR, cl_g VARCHAR, total_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", "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 SUM(fac___lc_apps) FROM table_name_11 WHERE pl_apps < 25 AND UEfa_yc < 0", "question": "What is the sum of the FAC/LC apps with less than 25 PC apps and a UEFA YC less than 0?", "context": "CREATE TABLE table_name_11 (fac___lc_apps INTEGER, pl_apps VARCHAR, UEfa_yc VARCHAR)"}, {"answer": "SELECT SUM(total_apps) FROM table_name_28 WHERE pl_g > 0 AND player = \"benayoun\" AND cl_apps > 9", "question": "What is the sum of the total apps of player benayoun, who has a PL G greater than 0 and more than 9 CL apps?", "context": "CREATE TABLE table_name_28 (total_apps INTEGER, cl_apps VARCHAR, pl_g VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pl_g) FROM table_name_74 WHERE cl_g < 7 AND cl_apps < 7 AND fa_yc = 0 AND player = \"pennant\"", "question": "What is the total PL G of player pennant, who has less than 7 CL G, less than 7 CL apps, and a FA YC of 0?", "context": "CREATE TABLE table_name_74 (pl_g VARCHAR, player VARCHAR, fa_yc VARCHAR, cl_g VARCHAR, cl_apps VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_59 WHERE opponents = \"petra krejsov\u00e1 tereza smitkov\u00e1\"", "question": "Which tournament had an opponent of petra krejsov\u00e1 tereza smitkov\u00e1?", "context": "CREATE TABLE table_name_59 (tournament VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_34 WHERE opponents = \"darija jurak ana\u00efs laurendon\"", "question": "What was the outcome when darija jurak ana\u00efs laurendon was the opponent?", "context": "CREATE TABLE table_name_34 (outcome VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE outcome = \"runner-up\" AND score = \"4\u20136, 3\u20136\"", "question": "When was the outcome runner-up with a score of 4\u20136, 3\u20136?", "context": "CREATE TABLE table_name_49 (date VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_77 WHERE record = \"47-21-3\"", "question": "What is the highest game with a 47-21-3 record?", "context": "CREATE TABLE table_name_77 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT sr_number FROM table_name_91 WHERE lb & sc_number = 34", "question": "what is the s.r. number when lb&sc number is 34?", "context": "CREATE TABLE table_name_91 (sr_number VARCHAR, lb VARCHAR, sc_number VARCHAR)"}, {"answer": "SELECT withdrawal FROM table_name_95 WHERE lb & sc_number < 16 AND sr_number = 2011", "question": "what is the withdrawal when the lb&sc number is less than 16 and the s.r. number is 2011?", "context": "CREATE TABLE table_name_95 (withdrawal VARCHAR, sr_number VARCHAR, lb VARCHAR, sc_number VARCHAR)"}, {"answer": "SELECT built FROM table_name_48 WHERE sr_number < 2033 AND lb & sc_number < 18 AND notes = \"i2\" AND withdrawal = \"cannot handle non-empty timestamp argument! 1935\"", "question": "what is the built when s.r. number is less than 2033, lb&sc number is less than 18, notes is i2 and withdrawal is cannot handle non-empty timestamp argument! 1935?", "context": "CREATE TABLE table_name_48 (built VARCHAR, withdrawal VARCHAR, notes VARCHAR, sr_number VARCHAR, lb VARCHAR, sc_number VARCHAR)"}, {"answer": "SELECT AVG(wkts) FROM table_name_61 WHERE player = \"beau casson\" AND ovrs > 32", "question": "What is the average Wkts, when Player is Beau Casson, and when Ovrs is greater than 32?", "context": "CREATE TABLE table_name_61 (wkts INTEGER, player VARCHAR, ovrs VARCHAR)"}, {"answer": "SELECT MAX(ovrs) FROM table_name_20 WHERE econ = 2.02", "question": "What is the highest Ovrs, when Econ is 2.02?", "context": "CREATE TABLE table_name_20 (ovrs INTEGER, econ VARCHAR)"}, {"answer": "SELECT MIN(ovrs) FROM table_name_68 WHERE wkts > 13 AND econ < 3.21", "question": "What is the lowest Ovrs, when Wkts is greater than 13, and when Econ is less than 3.21?", "context": "CREATE TABLE table_name_68 (ovrs INTEGER, wkts VARCHAR, econ VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE record = \"4-0-0\"", "question": "Who was the opponent with the record of 4-0-0?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE decision = \"lundqvist\" AND october = \"20\"", "question": "What was the score of the game on October 20 with a decision of Lundqvist?", "context": "CREATE TABLE table_name_42 (score VARCHAR, decision VARCHAR, october VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_49 WHERE opponent = \"pittsburgh penguins\"", "question": "What game is the first with the Pittsburgh Penguins the opponent?", "context": "CREATE TABLE table_name_49 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_14 WHERE total = 2 AND bronze > 1 AND silver < 0", "question": "What is the average gold medals of the nation with 2 total medals, more than 1 bronze, and less than 0 silvers?", "context": "CREATE TABLE table_name_14 (gold INTEGER, silver VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_83 WHERE silver > 1 AND nation = \"russia\" AND bronze > 6", "question": "What is the highest total medals of russia, which has more than 1 silver and more than 6 bronze medals?", "context": "CREATE TABLE table_name_83 (total INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_49 WHERE bronze = 1 AND total < 1", "question": "What is the total number of gold medals of the nation with 1 bronze and less than 1 total medal?", "context": "CREATE TABLE table_name_49 (gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_40 WHERE total > 16", "question": "What is the total number of silver medals of the nation with more than 16 total medals?", "context": "CREATE TABLE table_name_40 (silver VARCHAR, total INTEGER)"}, {"answer": "SELECT AVG(total) FROM table_name_94 WHERE bronze = 4 AND silver > 1", "question": "What is the average total medals of the nation with 4 bronze and more than 1 silver medals?", "context": "CREATE TABLE table_name_94 (total INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_61 WHERE silver < 1 AND nation = \"slovakia\"", "question": "What is the total number of gold medals of slovakia, which has less than 1 silver medal?", "context": "CREATE TABLE table_name_61 (gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE country = \"scotland\"", "question": "What was the score when the match was in the country of Scotland?", "context": "CREATE TABLE table_name_58 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_27 WHERE to_par = \"\u20131\"", "question": "What is the name of the player that has a To par of \u20131?", "context": "CREATE TABLE table_name_27 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_20 WHERE player = \"craig stadler\"", "question": "What country was the game in when the player was Craig Stadler?", "context": "CREATE TABLE table_name_20 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_10 WHERE score = 72 - 73 - 67 - 72 = 284", "question": "What is the name of the player when the Score was 72-73-67-72=284?", "context": "CREATE TABLE table_name_10 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(height__m_) FROM table_name_22 WHERE height__ft_ < 380.6", "question": "What is the total height in meters for the building that has a less than 380.6 feet height?", "context": "CREATE TABLE table_name_22 (height__m_ INTEGER, height__ft_ INTEGER)"}, {"answer": "SELECT MIN(floors) FROM table_name_42 WHERE height__m_ = 116", "question": "What are the fewest floors for the building that has a height of 116 meters?", "context": "CREATE TABLE table_name_42 (floors INTEGER, height__m_ VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_25 WHERE week = 2", "question": "What was the Attendance in Week 2?", "context": "CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_65 WHERE date = \"november 6, 1960\"", "question": "What was the Attendance on November 6, 1960?", "context": "CREATE TABLE table_name_65 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_33 WHERE result = \"l 31\u201323\"", "question": "What was the Attendance when the Result was L 31\u201323?", "context": "CREATE TABLE table_name_33 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_15 WHERE week = 9", "question": "What was the Opponent in Week 9?", "context": "CREATE TABLE table_name_15 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE week < 11 AND attendance = \"63,571\"", "question": "What was the Opponent before Week 11 with an Attendance of 63,571?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT position FROM table_name_59 WHERE school_club_team = \"michigan state\"", "question": "What is Michigan State's position?", "context": "CREATE TABLE table_name_59 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_62 WHERE years_in_new_jersey = \"2007-2009\"", "question": "What is the nationality of the play for New Jersey from 2007-2009?", "context": "CREATE TABLE table_name_62 (nationality VARCHAR, years_in_new_jersey VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_93 WHERE opponent = \"new orleans saints\"", "question": "What was the attendance when they played the New Orleans Saints?", "context": "CREATE TABLE table_name_93 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_55 WHERE team = \"heart of midlothian\"", "question": "Who was the outgoing manager of the Heart of Midlothian?", "context": "CREATE TABLE table_name_55 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_75 WHERE team = \"dundee\"", "question": "What is the vacancy date of Dundee?", "context": "CREATE TABLE table_name_75 (date_of_vacancy VARCHAR, team VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_92 WHERE replaced_by = \"tony mowbray\"", "question": "Who was the outgoing manager that was replaced by Tony Mowbray?", "context": "CREATE TABLE table_name_92 (outgoing_manager VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_96 WHERE team = \"dundee\"", "question": "What date was Dundee appointed?", "context": "CREATE TABLE table_name_96 (date_of_appointment VARCHAR, team VARCHAR)"}, {"answer": "SELECT race_1 FROM table_name_71 WHERE team = \"dick johnson racing\" AND race_3 = \"dnf\"", "question": "What is Race 1, when Team is \"Dick Johnson Racing\", and when Race 3 is \"DNF\"?", "context": "CREATE TABLE table_name_71 (race_1 VARCHAR, team VARCHAR, race_3 VARCHAR)"}, {"answer": "SELECT race_2 FROM table_name_42 WHERE race_1 = \"18\"", "question": "What is Race 2, when Race 1 is \"18\"?", "context": "CREATE TABLE table_name_42 (race_2 VARCHAR, race_1 VARCHAR)"}, {"answer": "SELECT team FROM table_name_41 WHERE race_2 = \"5\"", "question": "What is Team, when Race 2 is \"5\"?", "context": "CREATE TABLE table_name_41 (team VARCHAR, race_2 VARCHAR)"}, {"answer": "SELECT driver FROM table_name_12 WHERE race_3 = \"10\"", "question": "What is Driver, when Race 2 is \"10\"?", "context": "CREATE TABLE table_name_12 (driver VARCHAR, race_3 VARCHAR)"}, {"answer": "SELECT race_2 FROM table_name_5 WHERE driver = \"paul radisich\"", "question": "What is Race 2, when Driver is \"Paul Radisich\"?", "context": "CREATE TABLE table_name_5 (race_2 VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_88 WHERE team = \"romano racing\"", "question": "What is Driver, when Team is \"Romano Racing\"?", "context": "CREATE TABLE table_name_88 (driver VARCHAR, team VARCHAR)"}, {"answer": "SELECT gross FROM table_name_74 WHERE studio = \"20th century fox\" AND director_s_ = \"joel schumacher\"", "question": "The 20th Century Fox film directed by Joel Schumacher grossed how much?", "context": "CREATE TABLE table_name_74 (gross VARCHAR, studio VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT studio FROM table_name_34 WHERE rank > 13 AND gross = \"$83,531,958\"", "question": "Which studio grossed $83,531,958 and ranked lower than 13?", "context": "CREATE TABLE table_name_34 (studio VARCHAR, rank VARCHAR, gross VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_54 WHERE location = \"giants stadium\" AND winner = \"new york giants\"", "question": "WHAT YEAR WAS AT GIANTS STADIUM, WITH WINNER OF NEW YORK GIANTS?", "context": "CREATE TABLE table_name_54 (year INTEGER, location VARCHAR, winner VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_27 WHERE best = \"1:27.642\"", "question": "What is Qual 2, when Best is 1:27.642?", "context": "CREATE TABLE table_name_27 (qual_2 VARCHAR, best VARCHAR)"}, {"answer": "SELECT name FROM table_name_88 WHERE team = \"herdez competition\" AND best = \"1:27.432\"", "question": "What is Name, when Team is \"Herdez Competition\", and when Best is 1:27.432?", "context": "CREATE TABLE table_name_88 (name VARCHAR, team VARCHAR, best VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_80 WHERE qual_2 = \"1:27.537\"", "question": "What is Qual 1, when Qual 2 is 1:27.537?", "context": "CREATE TABLE table_name_80 (qual_1 VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT best FROM table_name_99 WHERE team = \"rocketsports racing\" AND name = \"alex tagliani\"", "question": "What is Best, when Team is \"Rocketsports Racing\", and when Name is \"Alex Tagliani\"?", "context": "CREATE TABLE table_name_99 (best VARCHAR, team VARCHAR, name VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_10 WHERE best = \"1:27.976\"", "question": "What is Qual 2, when Best is 1:27.976?", "context": "CREATE TABLE table_name_10 (qual_2 VARCHAR, best VARCHAR)"}, {"answer": "SELECT best FROM table_name_17 WHERE name = \"jimmy vasser\"", "question": "What is Best, when Name is Jimmy Vasser?", "context": "CREATE TABLE table_name_17 (best VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_62 WHERE score = \"94-116\"", "question": "What is the highest game whose score was 94-116", "context": "CREATE TABLE table_name_62 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT location FROM table_name_94 WHERE game > 30 AND score = \"106-111\"", "question": "Where was the game that was larger than 30 and scored 106-111", "context": "CREATE TABLE table_name_94 (location VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_2 WHERE round = \"gs\" AND result = \"0\u20133\"", "question": "Which Venue has a Round of gs, and a Result of 0\u20133?", "context": "CREATE TABLE table_name_2 (venue VARCHAR, round VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_81 WHERE date = \"27 august 2003\"", "question": "What was the result on 27 august 2003?", "context": "CREATE TABLE table_name_81 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_96 WHERE venue = \"a\" AND opponent = \"manchester united\"", "question": "Which Result has a Venue of A, and an Opponent of manchester united?", "context": "CREATE TABLE table_name_96 (result VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE opponent_in_the_final = \"jim courier\"", "question": "What score has jim courier as the opponent in the final?", "context": "CREATE TABLE table_name_86 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT label FROM table_name_91 WHERE format = \"cd\" AND region = \"north america\"", "question": "What is the label for the CD format in North America?", "context": "CREATE TABLE table_name_91 (label VARCHAR, format VARCHAR, region VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE catalogue = \"bron 535\"", "question": "What is the date for Bron 535 Catalog?", "context": "CREATE TABLE table_name_89 (date VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT region FROM table_name_30 WHERE format = \"gold vinyl\"", "question": "What region is the Gold Vinyl format from?", "context": "CREATE TABLE table_name_30 (region VARCHAR, format VARCHAR)"}, {"answer": "SELECT label FROM table_name_34 WHERE region = \"uk\" AND date = \"1996\"", "question": "What is the label for the UK in 1996?", "context": "CREATE TABLE table_name_34 (label VARCHAR, region VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_7 WHERE label = \"bronze\" AND format = \"vinyl\"", "question": "What is the catalog with a bronze label and in Vinyl format?", "context": "CREATE TABLE table_name_7 (catalogue VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE label = \"bronze\" AND format = \"vinyl\"", "question": "What date was the bronze label in vinyl format?", "context": "CREATE TABLE table_name_52 (date VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT record FROM table_name_14 WHERE location = \"montreal, qc\" AND visitor = \"boston bruins\"", "question": "What record has montreal, qc as the location, with boston bruins as the visitor?", "context": "CREATE TABLE table_name_14 (record VARCHAR, location VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_30 WHERE player = \"lonnie brockman\" AND round < 9", "question": "What was the highest Pick for Lonnie Brockman before round 9?", "context": "CREATE TABLE table_name_30 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_29 WHERE school = \"central state\" AND round < 2", "question": "How many picks did Central State have before round 2?", "context": "CREATE TABLE table_name_29 (pick VARCHAR, school VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_69 WHERE school = \"bowling green\" AND pick < 210", "question": "What was the highest round for Bowling Green with a pick smaller than 210?", "context": "CREATE TABLE table_name_69 (round INTEGER, school VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(tonnage) FROM table_name_97 WHERE nationality = \"sweden\" AND name_of_ship = \"siljan\"", "question": "What was the average tonnage for the Siljan ship from Sweden?", "context": "CREATE TABLE table_name_97 (tonnage INTEGER, nationality VARCHAR, name_of_ship VARCHAR)"}, {"answer": "SELECT AVG(tonnage) FROM table_name_87 WHERE date = \"18 october 1940\" AND name_of_ship = \"beatus\"", "question": "What was the average tonnage for Beatus, raided on 18 October 1940?", "context": "CREATE TABLE table_name_87 (tonnage INTEGER, date VARCHAR, name_of_ship VARCHAR)"}, {"answer": "SELECT name_of_ship FROM table_name_8 WHERE tonnage > 8 OFFSET 782", "question": "Which ship had a tonnage over 8,782?", "context": "CREATE TABLE table_name_8 (name_of_ship VARCHAR, tonnage INTEGER)"}, {"answer": "SELECT name_of_ship FROM table_name_52 WHERE date = \"26 september 1940\"", "question": "Which ship was raided on 26 September 1940?", "context": "CREATE TABLE table_name_52 (name_of_ship VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE game > 49 AND opponent = \"pittsburgh ironmen\"", "question": "What is Score, when Game is greater than 49, and when Opponent is \"Pittsburgh Ironmen\"?", "context": "CREATE TABLE table_name_10 (score VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE opponent = \"chicago stags\"", "question": "What is Date, when Opponent is \"Chicago Stags\"?", "context": "CREATE TABLE table_name_39 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_89 WHERE date = \"march 1\"", "question": "What is Record, when Date is \"March 1\"?", "context": "CREATE TABLE table_name_89 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_80 WHERE game > 55 AND date = \"march 25\"", "question": "What is Record, when Game is greater than 55, and when Date is \"March 25\"?", "context": "CREATE TABLE table_name_80 (record VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_20 WHERE attendance = 1920", "question": "What is the Home team when the Attendance was 1920?", "context": "CREATE TABLE table_name_20 (home VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT home FROM table_name_68 WHERE away = \"motagua\"", "question": "What is the Home team when Motagua is the Away team?", "context": "CREATE TABLE table_name_68 (home VARCHAR, away VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE home = \"deportes savio\"", "question": "What is the Score when Deportes Savio is the Home team?", "context": "CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE home = \"olimpia\"", "question": "On what Date is Olimpia the Home team?", "context": "CREATE TABLE table_name_49 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_25 WHERE away = \"vida\"", "question": "What is the Attendance when Vida is the Away team?", "context": "CREATE TABLE table_name_25 (attendance INTEGER, away VARCHAR)"}, {"answer": "SELECT MIN(fa_cup_goals) FROM table_name_46 WHERE league_goals = \"12\" AND total = 14", "question": "What is the lowest number of FA Cup goals for players with 12 League goals and 14 total goals?", "context": "CREATE TABLE table_name_46 (fa_cup_goals INTEGER, league_goals VARCHAR, total VARCHAR)"}, {"answer": "SELECT fa_cup_goals FROM table_name_59 WHERE scorer = \"george yardley\"", "question": "How many FA Cup goals does George Yardley have?", "context": "CREATE TABLE table_name_59 (fa_cup_goals VARCHAR, scorer VARCHAR)"}, {"answer": "SELECT home FROM table_name_82 WHERE date = \"january 11\"", "question": "Which Home is on january 11?", "context": "CREATE TABLE table_name_82 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_82 WHERE home = \"ottawa senators\" AND date = \"december 21\"", "question": "which Record has a Home of ottawa senators on Date of december 21?", "context": "CREATE TABLE table_name_82 (record VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE visitor = \"toronto st. pats\" AND home = \"montreal canadiens\" AND record = \"3\u20132\u20130\"", "question": "Which Score has a Visitor of toronto st. pats, and a Home of montreal canadiens, and a Record of 3\u20132\u20130?", "context": "CREATE TABLE table_name_83 (score VARCHAR, record VARCHAR, visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_61 WHERE visitor = \"ottawa senators\" AND score = \"2\u20133\"", "question": "which Home has a Visitor of ottawa senators and a Score of 2\u20133?", "context": "CREATE TABLE table_name_61 (home VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_48 WHERE visitor = \"toronto st. pats\" AND score = \"5\u20134\" AND home = \"ottawa senators\"", "question": "Name the Record of Visitor of toronto st. pats with a Score of 5\u20134 and a Home of ottawa senators? Question 5", "context": "CREATE TABLE table_name_48 (record VARCHAR, home VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_40 WHERE score = \"2\u20137\"", "question": "Name the Home with has a Score of 2\u20137?", "context": "CREATE TABLE table_name_40 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT career_with_the_franchise_[b_] FROM table_name_59 WHERE player = \"willie anderson category:articles with hcards\"", "question": "What is Career with the franchise [b ], when Player is \"Willie Anderson Category:Articles with hCards\"?", "context": "CREATE TABLE table_name_59 (career_with_the_franchise_ VARCHAR, b_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_79 WHERE nba_years_[a_] = \"1\" AND previous_team = \"seattle supersonics\"", "question": "What is Nationality, when NBA years [a ] is \"1\", and when Previous Team is \"Seattle Supersonics\"?", "context": "CREATE TABLE table_name_79 (nationality VARCHAR, previous_team VARCHAR, nba_years_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT player FROM table_name_2 WHERE pick > 24 AND nba_years_[a_] = \"9\"", "question": "What is Player, when Pick is greater than 24, and when NBA years [a ] is \"9\"?", "context": "CREATE TABLE table_name_2 (player VARCHAR, pick VARCHAR, nba_years_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT career_with_the_franchise_[b_] FROM table_name_68 WHERE previous_team = \"new jersey nets\"", "question": "What is Career with the franchise [b ], when Previous Team is \"New Jersey Nets\"?", "context": "CREATE TABLE table_name_68 (career_with_the_franchise_ VARCHAR, b_ VARCHAR, previous_team VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_9 WHERE open_cup = \"1st round\"", "question": "How many years did Real Colorado Foxes make it to the Open Cup 1st Round?", "context": "CREATE TABLE table_name_9 (year VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_95 WHERE playoffs = \"did not qualify\" AND open_cup = \"2nd round\"", "question": "When is the latest year that Real Colorado Foxes did not qualify for the playoffs but make it to Open Cup 2nd Round?", "context": "CREATE TABLE table_name_95 (year INTEGER, playoffs VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT open_cup FROM table_name_61 WHERE playoffs = \"conference semifinal\" AND year = 2012", "question": "In 2012, which round in the Open Cup did Real Colorado Foxes make it to the conference semifinal?", "context": "CREATE TABLE table_name_61 (open_cup VARCHAR, playoffs VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_60 WHERE publication = \"rolling stone\" AND year = 2008", "question": "Where did Day & Age rank in the Rolling Stone in 2008?", "context": "CREATE TABLE table_name_60 (rank INTEGER, publication VARCHAR, year VARCHAR)"}, {"answer": "SELECT country FROM table_name_52 WHERE year < 2011 AND rank > 1 AND publication = \"q\"", "question": "What country did Day & Age rank number 1 in Q prior to 2011?", "context": "CREATE TABLE table_name_52 (country VARCHAR, publication VARCHAR, year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT title FROM table_name_6 WHERE year = 1952", "question": "Which Title is from 1952?", "context": "CREATE TABLE table_name_6 (title VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_43 WHERE pool_round = \"pool 2\" AND played < 6", "question": "Can you tell me the highest Lost that has the Pool/Round of pool 2, and the Played smaller than 6?", "context": "CREATE TABLE table_name_43 (lost INTEGER, pool_round VARCHAR, played VARCHAR)"}, {"answer": "SELECT network FROM table_name_4 WHERE games = \"unknown\" AND title = \"hvem kan sl\u00e5 ylvis hvem kan sl\u00e5 aamodt & kjus\"", "question": "Which network had unknown games and a title of hvem kan sl\u00e5 ylvis hvem kan sl\u00e5 aamodt & kjus?", "context": "CREATE TABLE table_name_4 (network VARCHAR, games VARCHAR, title VARCHAR)"}, {"answer": "SELECT date_aired FROM table_name_54 WHERE title = \"beat the star\"", "question": "What was the date of the show titled Beat the Star?", "context": "CREATE TABLE table_name_54 (date_aired VARCHAR, title VARCHAR)"}, {"answer": "SELECT date_aired FROM table_name_90 WHERE network = \"rtl televizija\"", "question": "Which date was the show aired on the RTL Televizija network?", "context": "CREATE TABLE table_name_90 (date_aired VARCHAR, network VARCHAR)"}, {"answer": "SELECT date_aired FROM table_name_35 WHERE network = \"rtl televizija\"", "question": "Which date was the show aired on the RTL Televizija network?", "context": "CREATE TABLE table_name_35 (date_aired VARCHAR, network VARCHAR)"}, {"answer": "SELECT network FROM table_name_70 WHERE title = \"schlag den raab\"", "question": "Which network aired the program Schlag den Raab?", "context": "CREATE TABLE table_name_70 (network VARCHAR, title VARCHAR)"}, {"answer": "SELECT MIN(diameter__km_) FROM table_name_78 WHERE latitude = \"52.0s\"", "question": "WHAT IS THE LOWEST DIAMETER FOR A LATITIDE OF 52.0S?", "context": "CREATE TABLE table_name_78 (diameter__km_ INTEGER, latitude VARCHAR)"}, {"answer": "SELECT position FROM table_name_78 WHERE elected = 2011 AND country_of_origin = \"algeria\"", "question": "What is the position elected in 2011 from the Country of Algeria?", "context": "CREATE TABLE table_name_78 (position VARCHAR, elected VARCHAR, country_of_origin VARCHAR)"}, {"answer": "SELECT MIN(term) FROM table_name_94 WHERE elected = 2007 AND position = \"chairperson\"", "question": "What is the lowest term from the 2007 election with the position of chairperson?", "context": "CREATE TABLE table_name_94 (term INTEGER, elected VARCHAR, position VARCHAR)"}, {"answer": "SELECT telebooms FROM table_name_78 WHERE brigade = \"total\"", "question": "Which Telebooms have a Brigade of total?", "context": "CREATE TABLE table_name_78 (telebooms VARCHAR, brigade VARCHAR)"}, {"answer": "SELECT platforms FROM table_name_38 WHERE hazmat = \"\u2013\" AND type = \"urban & rural\" AND brigade = \"lara\"", "question": "Which Platforms have a Hazmat of \u2013, and a Type of urban & rural, and a Brigade of lara?", "context": "CREATE TABLE table_name_38 (platforms VARCHAR, brigade VARCHAR, hazmat VARCHAR, type VARCHAR)"}, {"answer": "SELECT tankers FROM table_name_9 WHERE hazmat = \"\u2013\" AND platforms = \"\u2013\" AND staffing = \"volunteer\"", "question": "Which Tankers have a Hazmat of \u2013, and Platforms of \u2013, and a Staffing of volunteer?", "context": "CREATE TABLE table_name_9 (tankers VARCHAR, staffing VARCHAR, hazmat VARCHAR, platforms VARCHAR)"}, {"answer": "SELECT COUNT(pumpers) FROM table_name_32 WHERE cars = \"1\" AND staffing = \"volunteer\" AND brigade = \"grovedale\" AND tankers < 1", "question": "How many Pumpers have Cars of 1, and a Staffing of volunteer, and a Brigade of grovedale, and Tankers smaller than 1?", "context": "CREATE TABLE table_name_32 (pumpers VARCHAR, tankers VARCHAR, brigade VARCHAR, cars VARCHAR, staffing VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_49 WHERE quantity = 10 AND gwr_numbers = \"409, 290, 315, 317\u2013321, 324, 333\"", "question": "What is the average Year that has a Quantity of 10, and a GWR Numbers of 409, 290, 315, 317\u2013321, 324, 333?", "context": "CREATE TABLE table_name_49 (year INTEGER, quantity VARCHAR, gwr_numbers VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE money__$_ = \"5,000\"", "question": "What was the score of the player who earned $5,000?", "context": "CREATE TABLE table_name_9 (score VARCHAR, money__$_ VARCHAR)"}, {"answer": "SELECT place FROM table_name_61 WHERE player = \"phil rodgers\"", "question": "What place did Phil Rodgers finish?", "context": "CREATE TABLE table_name_61 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_62 WHERE money__$_ = \"9,000\"", "question": "What country is the player who earned $9,000 from?", "context": "CREATE TABLE table_name_62 (country VARCHAR, money__$_ VARCHAR)"}, {"answer": "SELECT round FROM table_name_9 WHERE mwehl_team = \"detroit honeybaked\" AND nhl_team = \"columbus blue jackets\"", "question": "What round did the MWEHL team, Detroit Honeybaked, and the NHL Team Columbus Blue Jackets play?", "context": "CREATE TABLE table_name_9 (round VARCHAR, mwehl_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_32 WHERE round = \"7\" AND mwehl_team = \"detroit honeybaked\" AND nhl_team = \"philadelphia flyers\"", "question": "Who was the player in Round 7, on the MWEHL Team Detroit Honeybaked, and the NHL Team, Philadelphia Flyers teams?", "context": "CREATE TABLE table_name_32 (player VARCHAR, nhl_team VARCHAR, round VARCHAR, mwehl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_7 WHERE round = \"5\" AND overall = \"#154\"", "question": "What is the NHL team for Round 5 and an overall ranking of #154?", "context": "CREATE TABLE table_name_7 (nhl_team VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT mwehl_team FROM table_name_49 WHERE round = \"2\" AND player = \"nicolas kerdiles\"", "question": "What is the MWEHL Team on Round 2, with player Nicolas Kerdiles?", "context": "CREATE TABLE table_name_49 (mwehl_team VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_86 WHERE round = \"7\" AND overall = \"#195\"", "question": "Who is the player on round 7 with an overall ranking of #195?", "context": "CREATE TABLE table_name_86 (player VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT mwehl_team FROM table_name_29 WHERE player = \"ben johnson\"", "question": "Which MWEHL team has player Ben Johnson?", "context": "CREATE TABLE table_name_29 (mwehl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_26 WHERE week = 3", "question": "How many people attended the game on week 3?", "context": "CREATE TABLE table_name_26 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT report FROM table_name_10 WHERE ages = \"2-17\"", "question": "What is the Report for the School for Ages of 2-17?", "context": "CREATE TABLE table_name_10 (report VARCHAR, ages VARCHAR)"}, {"answer": "SELECT ages FROM table_name_50 WHERE report = \"ofsted\" AND school = \"seashell trust\"", "question": "What are the Ages of the Seashell Trust School with Ofsted Report?", "context": "CREATE TABLE table_name_50 (ages VARCHAR, report VARCHAR, school VARCHAR)"}, {"answer": "SELECT website FROM table_name_53 WHERE ages = \"8-16\" AND locality = \"cheadle\"", "question": "What is the Website of the Cheadle School for Ages 8-16?", "context": "CREATE TABLE table_name_53 (website VARCHAR, ages VARCHAR, locality VARCHAR)"}, {"answer": "SELECT website FROM table_name_69 WHERE report = \"ofsted\" AND ages = \"4-19\" AND locality = \"cheadle hulme\"", "question": "What is the Website of the Cheadle Hulme School with a Report of Ofsted for Ages 4-19?", "context": "CREATE TABLE table_name_69 (website VARCHAR, locality VARCHAR, report VARCHAR, ages VARCHAR)"}, {"answer": "SELECT locality FROM table_name_90 WHERE ages = \"8-16\" AND school = \"penarth group school\"", "question": "What is the Locality of the Penarth Group School for Ages 8-16?", "context": "CREATE TABLE table_name_90 (locality VARCHAR, ages VARCHAR, school VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE date = \"march 28\"", "question": "WHAT IS THE SCORE OF MARCH 28?", "context": "CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE visitor = \"chicago black hawks\" AND date = \"march 24\"", "question": "WHAT IS THE SCORE WITH VISITORS CHICAGO BLACK HAWKS ON MARCH 24?", "context": "CREATE TABLE table_name_20 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE home_team = \"west ham united\"", "question": "What is the Date for the Home team West Ham United", "context": "CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE tie_no = \"27\"", "question": "what is the score that has tie number 27", "context": "CREATE TABLE table_name_60 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_52 WHERE home_team = \"portsmouth\"", "question": "what is the tie number that has Portsmouth Home team", "context": "CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE country = \"united states\" AND to_par = \"+5\"", "question": "What is the score of the United States, which has a to par of +5?", "context": "CREATE TABLE table_name_84 (score VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT home FROM table_name_31 WHERE record = \"3-2\"", "question": "For a record of 3-2, what team was home?", "context": "CREATE TABLE table_name_31 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_94 WHERE visitor = \"chicago black hawks\" AND record = \"0-2\"", "question": "What was the home team when the visiting team was Chicago Black Hawks, a game with a record of 0-2?", "context": "CREATE TABLE table_name_94 (home VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_12 WHERE republic = \"latvian ssr\" AND total > 6", "question": "Can you tell me total number of Silver that has the Republic of latvian ssr, and the Total larger than 6?", "context": "CREATE TABLE table_name_12 (silver VARCHAR, republic VARCHAR, total VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_55 WHERE status = \"loan ended\"", "question": "What is the transfer window for the player whose status was loan ended?", "context": "CREATE TABLE table_name_55 (transfer_window VARCHAR, status VARCHAR)"}, {"answer": "SELECT name FROM table_name_36 WHERE transfer_window = \"summer\" AND moving_to = \"kortrijk\"", "question": "Who was the player with a transfer window of summer and was moving to Kortrijk?", "context": "CREATE TABLE table_name_36 (name VARCHAR, transfer_window VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT status FROM table_name_72 WHERE moving_to = \"nantes\"", "question": "What is the status of the player who is moving to Nantes?", "context": "CREATE TABLE table_name_72 (status VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT type FROM table_name_67 WHERE capacity = \"28 passengers\" AND number = \"16\"", "question": "Which Type has a Capacity of 28 passengers, and a Number of 16?", "context": "CREATE TABLE table_name_67 (type VARCHAR, capacity VARCHAR, number VARCHAR)"}, {"answer": "SELECT builder FROM table_name_15 WHERE date < 1913 AND length = \"feet (m)\" AND number = \"15\"", "question": "Which Builder has a Date smaller than 1913, and a Length of feet (m), and a Number of 15?", "context": "CREATE TABLE table_name_15 (builder VARCHAR, number VARCHAR, date VARCHAR, length VARCHAR)"}, {"answer": "SELECT AVG(date) FROM table_name_3 WHERE length = \"feet 9inches (m)\" AND builder = \"portland terminal company\"", "question": "Which Date has a Length of feet 9inches (m), and a Builder of portland terminal company?", "context": "CREATE TABLE table_name_3 (date INTEGER, length VARCHAR, builder VARCHAR)"}, {"answer": "SELECT type FROM table_name_22 WHERE capacity = \"10 tons\" AND number = \"24-27\"", "question": "Which Type has a Capacity of 10 tons, and a Number of 24-27?", "context": "CREATE TABLE table_name_22 (type VARCHAR, capacity VARCHAR, number VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_name_8 WHERE builder = \"laconia car company\" AND number = \"63-68\"", "question": "How many Dates have a Builder of laconia car company, and a Number of 63-68?", "context": "CREATE TABLE table_name_8 (date VARCHAR, builder VARCHAR, number VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE player = \"billy andrade\"", "question": "What is the score for Billy Andrade?", "context": "CREATE TABLE table_name_73 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_35 WHERE player = \"nick price\"", "question": "What country is Nick Price from?", "context": "CREATE TABLE table_name_35 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_53 WHERE score = 67 - 67 = 134", "question": "What is the to par for the player with score of 67-67=134?", "context": "CREATE TABLE table_name_53 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_6 WHERE team_1 = \"everton\"", "question": "Team 1, Everton, has what as a 1st leg?", "context": "CREATE TABLE table_name_6 (team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_68 WHERE team_1 = \"atl\u00e9tico madrid\"", "question": "The 2nd leg is what for the Atl\u00e9tico Madrid as Team 1?", "context": "CREATE TABLE table_name_68 (team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_44 WHERE team_1 = \"fulham\"", "question": "Fulham as Team 1 has the 2nd leg score of what?", "context": "CREATE TABLE table_name_44 (team_1 VARCHAR)"}, {"answer": "SELECT name FROM table_name_69 WHERE period = \"1945-1949 & 1953-1954 1949-1952\"", "question": "What name is for the period 1945-1949 & 1953-1954 1949-1952?", "context": "CREATE TABLE table_name_69 (name VARCHAR, period VARCHAR)"}, {"answer": "SELECT name FROM table_name_39 WHERE teams = \"fc s\u00e8te olympique de marseille\"", "question": "Which name is on the of fc s\u00e8te olympique de marseille?", "context": "CREATE TABLE table_name_39 (name VARCHAR, teams VARCHAR)"}, {"answer": "SELECT role FROM table_name_89 WHERE teams = \"troyes ac grenoble foot\"", "question": "What role has the team of Troyes AC Grenoble Foot?", "context": "CREATE TABLE table_name_89 (role VARCHAR, teams VARCHAR)"}, {"answer": "SELECT name FROM table_name_76 WHERE role = \"midfielder\" AND period = \"1999-2003\"", "question": "What name has the role of midfielder for 1999-2003?", "context": "CREATE TABLE table_name_76 (name VARCHAR, role VARCHAR, period VARCHAR)"}, {"answer": "SELECT period FROM table_name_99 WHERE teams = \"cs sedan\"", "question": "Which period has the team CS Sedan?", "context": "CREATE TABLE table_name_99 (period VARCHAR, teams VARCHAR)"}, {"answer": "SELECT teams FROM table_name_48 WHERE name = \"boumediene abderahmane\"", "question": "What is the team with the name Boumediene Abderahmane?", "context": "CREATE TABLE table_name_48 (teams VARCHAR, name VARCHAR)"}, {"answer": "SELECT fin_pos FROM table_name_93 WHERE points = \"13\"", "question": "What was the finishing position with 13 points?", "context": "CREATE TABLE table_name_93 (fin_pos VARCHAR, points VARCHAR)"}, {"answer": "SELECT driver FROM table_name_99 WHERE points = \"50+3\"", "question": "What Driver had 50+3 Points?", "context": "CREATE TABLE table_name_99 (driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(date) FROM table_name_19 WHERE partner = \"nicklas kulti\" AND score = \"3\u20136, 7\u20136, 6\u20134\"", "question": "When was the most recent game that he partnered with nicklas kulti and they scored 3\u20136, 7\u20136, 6\u20134?", "context": "CREATE TABLE table_name_19 (date INTEGER, partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_99 WHERE surface = \"hard\"", "question": "Who did he play on a hard surface?", "context": "CREATE TABLE table_name_99 (opponents VARCHAR, surface VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_24 WHERE surface = \"clay\" AND score = \"0\u20136, 3\u20136\"", "question": "When was his first game on a clay surface where he scored 0\u20136, 3\u20136?", "context": "CREATE TABLE table_name_24 (date INTEGER, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(wickets) FROM table_name_89 WHERE matches < 5 AND player = \"jim laker\" AND average > 52.44", "question": "what is the highest wickets when the matches is less than 5, player is jim laker and average is more than 52.44?", "context": "CREATE TABLE table_name_89 (wickets INTEGER, average VARCHAR, matches VARCHAR, player VARCHAR)"}, {"answer": "SELECT average FROM table_name_26 WHERE matches < 5 AND wickets > 9", "question": "what is the average when matches is less than 5 and wickets is more than 9?", "context": "CREATE TABLE table_name_26 (average VARCHAR, matches VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_25 WHERE player = \"jim laker\" AND wickets < 9", "question": "what is the sum of matches when the player is jim laker and wikets is less than 9?", "context": "CREATE TABLE table_name_25 (matches INTEGER, player VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT MAX(wickets) FROM table_name_33 WHERE best_bowling = \"2/32\" AND matches < 5", "question": "what is the highest wickets when the best bowling is 2/32 and matches is less than 5?", "context": "CREATE TABLE table_name_33 (wickets INTEGER, best_bowling VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MAX(wickets) FROM table_name_14 WHERE best_bowling = \"5/40\" AND average < 33.09", "question": "what is the highest wickets when best bowling is 5/40 and average is less than 33.09?", "context": "CREATE TABLE table_name_14 (wickets INTEGER, best_bowling VARCHAR, average VARCHAR)"}, {"answer": "SELECT player FROM table_name_87 WHERE pick__number > 47", "question": "Which player has a pick# over 47?", "context": "CREATE TABLE table_name_87 (player VARCHAR, pick__number INTEGER)"}, {"answer": "SELECT player FROM table_name_2 WHERE position = \"fb\"", "question": "Who is the player with a FB position?", "context": "CREATE TABLE table_name_2 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE to_par = \"\u20133\" AND player = \"jim furyk\"", "question": "What is the Score that has a To standard of \u20133, and a Player of Jim Furyk?", "context": "CREATE TABLE table_name_15 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_31 WHERE player = \"scott hoch\"", "question": "What is the Country that has a Player of Scott Hoch?", "context": "CREATE TABLE table_name_31 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_45 WHERE to_par = \"\u20134\" AND score = 74 - 70 - 68 = 212", "question": "What is the Player that has a To standard of \u20134, and a Score of 74-70-68=212?", "context": "CREATE TABLE table_name_45 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE to_par = \"\u20132\" AND country = \"spain\"", "question": "What is the Score that has a To standard of \u20132, and a Country of Spain?", "context": "CREATE TABLE table_name_63 (score VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE player = \"ernie els\"", "question": "What is the Score that has a Player of Ernie Els?", "context": "CREATE TABLE table_name_28 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_64 WHERE place = \"t2\" AND score = 74 - 70 - 68 = 212", "question": "What is the Player that has a Place of t2, and a Score of 74-70-68=212?", "context": "CREATE TABLE table_name_64 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE nationality = \"united kingdom\" AND type = \"freighter\" AND displacement = \"5,145 t\"", "question": "what is the date when the nationality is united kingdom, the type is freighter and the displacement is 5,145 t?", "context": "CREATE TABLE table_name_14 (date VARCHAR, displacement VARCHAR, nationality VARCHAR, type VARCHAR)"}, {"answer": "SELECT name FROM table_name_12 WHERE displacement = \"8,305 t\"", "question": "what is the name when the displacement is 8,305 t?", "context": "CREATE TABLE table_name_12 (name VARCHAR, displacement VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE type = \"freighter\" AND nationality = \"united kingdom\" AND date = \"3 may 1940\"", "question": "what is the name when the type is freighter, nationality is united kingdom on 3 may 1940?", "context": "CREATE TABLE table_name_61 (name VARCHAR, date VARCHAR, type VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE name = \"tirrana\"", "question": "what is the date for tirrana?", "context": "CREATE TABLE table_name_18 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_1 WHERE nationality = \"total:\"", "question": "what is the name for the nationality total:?", "context": "CREATE TABLE table_name_1 (name VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT republican AS :_jon_huntsman FROM table_name_76 WHERE dates_administered = \"june 19, 2008\"", "question": "Who is the republican Jon Huntsman that was administered June 19, 2008?", "context": "CREATE TABLE table_name_76 (republican VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT MIN(final_year) FROM table_name_69 WHERE north_or_east_terminus = \"covington\"", "question": "What is the most minimal Final year that has a North or east end of covington?", "context": "CREATE TABLE table_name_69 (final_year INTEGER, north_or_east_terminus VARCHAR)"}, {"answer": "SELECT SUM(final_year) FROM table_name_15 WHERE notes = \"replaced by i-96\"", "question": "What is the total of Final year that has a Notes of replaced by i-96?", "context": "CREATE TABLE table_name_15 (final_year INTEGER, notes VARCHAR)"}, {"answer": "SELECT MIN(final_year) FROM table_name_45 WHERE notes = \"replaced by i-75 and m-25\" AND first_year > 1926", "question": "What is the most minimal Final year that has a Notes of replaced by i-75 and m-25, and a First year larger than 1926?", "context": "CREATE TABLE table_name_45 (final_year INTEGER, notes VARCHAR, first_year VARCHAR)"}, {"answer": "SELECT AVG(first_year) FROM table_name_31 WHERE notes = \"replaced by us 12 when i-94 replaced us 12\" AND final_year > 1961", "question": "What is the average First year that has a Notes of replaced by us 12 when i-94 replaced us 12, and a Final year larger than 1961?", "context": "CREATE TABLE table_name_31 (first_year INTEGER, notes VARCHAR, final_year VARCHAR)"}, {"answer": "SELECT number_of_votes FROM table_name_74 WHERE candidate = \"edward mahama\" AND election < 2004 AND share_of_votes = \"3.0%\"", "question": "What is the number of the votes of the election before 2004 with edward mahama as the candidate with 3.0% share of votes?", "context": "CREATE TABLE table_name_74 (number_of_votes VARCHAR, share_of_votes VARCHAR, candidate VARCHAR, election VARCHAR)"}, {"answer": "SELECT outcome_of_election FROM table_name_31 WHERE candidate = \"edward mahama\" AND number_of_votes = \"73,494\"", "question": "What is the outcome of the election with edward mahama as a candidate and 73,494 votes?", "context": "CREATE TABLE table_name_31 (outcome_of_election VARCHAR, candidate VARCHAR, number_of_votes VARCHAR)"}, {"answer": "SELECT MIN(election) FROM table_name_13 WHERE share_of_votes = \"0.9%\"", "question": "What is the earlest election with a 0.9% share of votes?", "context": "CREATE TABLE table_name_13 (election INTEGER, share_of_votes VARCHAR)"}, {"answer": "SELECT candidate FROM table_name_41 WHERE number_of_votes = \"73,494\"", "question": "Who is the candidate with 73,494 votes?", "context": "CREATE TABLE table_name_41 (candidate VARCHAR, number_of_votes VARCHAR)"}, {"answer": "SELECT share_of_votes FROM table_name_44 WHERE election = 2008", "question": "What is the share of votes in the 2008 election?", "context": "CREATE TABLE table_name_44 (share_of_votes VARCHAR, election VARCHAR)"}, {"answer": "SELECT number_of_votes FROM table_name_82 WHERE candidate = \"edward mahama\" AND share_of_votes = \"0.9%\"", "question": "What is the number of votes of candidate edward mahama, who had 0.9% share of votes?", "context": "CREATE TABLE table_name_82 (number_of_votes VARCHAR, candidate VARCHAR, share_of_votes VARCHAR)"}, {"answer": "SELECT ages FROM table_name_90 WHERE capacity > 21 AND ofsted = 106168", "question": "Which Ages have a Capacity larger than 21, and an Ofsted of 106168?", "context": "CREATE TABLE table_name_90 (ages VARCHAR, capacity VARCHAR, ofsted VARCHAR)"}, {"answer": "SELECT ages FROM table_name_45 WHERE ofsted > 106172 AND school = \"oakgrove school\"", "question": "Which Ages have an Ofsted larger than 106172, and a School of oakgrove school?", "context": "CREATE TABLE table_name_45 (ages VARCHAR, ofsted VARCHAR, school VARCHAR)"}, {"answer": "SELECT SUM(ofsted) FROM table_name_46 WHERE capacity < 56 AND ages = \"11-16\"", "question": "Which Ofsted has a Capacity smaller than 56, and Ages of 11-16?", "context": "CREATE TABLE table_name_46 (ofsted INTEGER, capacity VARCHAR, ages VARCHAR)"}, {"answer": "SELECT SUM(capacity) FROM table_name_63 WHERE school = \"windlehurst school\" AND ofsted < 131889", "question": "Which Capacity has a School of windlehurst school, and an Ofsted smaller than 131889?", "context": "CREATE TABLE table_name_63 (capacity INTEGER, school VARCHAR, ofsted VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_58 WHERE home_team = \"sydney spirit\"", "question": "How many people attended the game when sydney spirit was at home?", "context": "CREATE TABLE table_name_58 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_5 WHERE crowd > 19 OFFSET 498", "question": "When the crowd was greater than 19,498 who was the away team?", "context": "CREATE TABLE table_name_5 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT result FROM table_name_55 WHERE opponent = \"hamilton academical\" AND attendance > 33 OFFSET 684", "question": "An attendance larger than 33,684 and an opponent of Hamilton Academical had this listed as a result?", "context": "CREATE TABLE table_name_55 (result VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_66 WHERE grid = 8", "question": "When did grid 8 finish?", "context": "CREATE TABLE table_name_66 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT location FROM table_name_79 WHERE game > 20 AND date = \"wed. dec. 26\"", "question": "Which Location has a Game greater than 20 and a Date of Wed. Dec. 26?", "context": "CREATE TABLE table_name_79 (location VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE score = \"94-109\"", "question": "On what date is the Score 94-109?", "context": "CREATE TABLE table_name_54 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_name_58 WHERE game > 27 AND record = \"18-10\"", "question": "Which Location has a Game greater than 27 and a Record of 18-10?", "context": "CREATE TABLE table_name_58 (location VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT lost FROM table_name_24 WHERE points_difference = \"-25\"", "question": "What is the number of losses for the team with a points difference of -25?", "context": "CREATE TABLE table_name_24 (lost VARCHAR, points_difference VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_12 WHERE points_difference = \"-210\"", "question": "What is the number of draws for the team with a points difference of -210?", "context": "CREATE TABLE table_name_12 (drawn VARCHAR, points_difference VARCHAR)"}, {"answer": "SELECT points_difference FROM table_name_39 WHERE points_against = \"615\"", "question": "What is the points difference for the team that has allowed 615 points against?", "context": "CREATE TABLE table_name_39 (points_difference VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT played FROM table_name_49 WHERE drawn = \"0\" AND points = \"33\"", "question": "What is the number of matches played for the team with 0 draws and 33 points?", "context": "CREATE TABLE table_name_49 (played VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_88 WHERE drawn = \"2\" AND points_for = \"577\"", "question": "What is the number of points for the team with 2 matches drawn and 577 points for?", "context": "CREATE TABLE table_name_88 (points VARCHAR, drawn VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT result FROM table_name_22 WHERE home = \"fc luzern (asl)\"", "question": "What was the result when home was fc luzern (asl)?", "context": "CREATE TABLE table_name_22 (result VARCHAR, home VARCHAR)"}, {"answer": "SELECT guest FROM table_name_25 WHERE date = \"24.11.07\" AND result = \"0:1\" AND time = \"16:00\"", "question": "Who was the guest on 24.11.07 when the result was 0:1 at 16:00?", "context": "CREATE TABLE table_name_25 (guest VARCHAR, time VARCHAR, date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE time = \"14:30\" AND result = \"0:1\" AND home = \"fc chiasso (chl)\"", "question": "What day was the time 14:30, the result 0:1, and the home team fc chiasso (chl)?", "context": "CREATE TABLE table_name_44 (date VARCHAR, home VARCHAR, time VARCHAR, result VARCHAR)"}, {"answer": "SELECT guest FROM table_name_67 WHERE date = \"25.11.07\" AND home = \"stade nyonnais (1.l)\"", "question": "Who was the gues on 25.11.07 when home was stade nyonnais (1.l)?", "context": "CREATE TABLE table_name_67 (guest VARCHAR, date VARCHAR, home VARCHAR)"}, {"answer": "SELECT guest FROM table_name_56 WHERE result = \"0:3\"", "question": "Who was the guest when the result was 0:3?", "context": "CREATE TABLE table_name_56 (guest VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_93 WHERE guest = \"fc z\u00fcrich (asl)\"", "question": "What was the result when the guest was fc z\u00fcrich (asl)?", "context": "CREATE TABLE table_name_93 (result VARCHAR, guest VARCHAR)"}, {"answer": "SELECT white FROM table_name_80 WHERE moves > 19 AND black = \"kasparov\" AND year < 2000 AND opening = \"e93 king's indian defence\"", "question": "What's the white of E93 King's Indian Defence when Kasparov was black, moves were greater than 19, and happened before 2000?", "context": "CREATE TABLE table_name_80 (white VARCHAR, opening VARCHAR, year VARCHAR, moves VARCHAR, black VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_28 WHERE black = \"kramnik\" AND opening = \"b66 sicilian defence\"", "question": "What tournament had a black of Kramnik and an opening of B66 Sicilian Defence?", "context": "CREATE TABLE table_name_28 (tournament VARCHAR, black VARCHAR, opening VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_19 WHERE result = \"\u00bd\u2013\u00bd\" AND black = \"kramnik\" AND opening = \"e05 catalan opening\" AND moves > 38", "question": "What year had a black of Kramnik, opening of E05 Catalan Opening, moves greater than 38, and a result of \u00bd\u2013\u00bd?", "context": "CREATE TABLE table_name_19 (year INTEGER, moves VARCHAR, opening VARCHAR, result VARCHAR, black VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_23 WHERE moves = 32", "question": "What year had 32 moves?", "context": "CREATE TABLE table_name_23 (year INTEGER, moves VARCHAR)"}, {"answer": "SELECT year FROM table_name_66 WHERE moves = 14 AND opening = \"c54 italian game\"", "question": "What year has 14 moves and an opening of C54 Italian Game?", "context": "CREATE TABLE table_name_66 (year VARCHAR, moves VARCHAR, opening VARCHAR)"}, {"answer": "SELECT MIN(round2) FROM table_name_88 WHERE round5 = 71 AND round4 > 64", "question": "what is the lowest round2 when round5 is 71 and round4 is more than 64?", "context": "CREATE TABLE table_name_88 (round2 INTEGER, round5 VARCHAR, round4 VARCHAR)"}, {"answer": "SELECT AVG(round1) FROM table_name_62 WHERE round3 < 51 AND total_points < 273 AND round2 < 98 AND round5 < 24", "question": "what is round1 when round3 is less than 51, total points is less than 273, round2 is less than 98 and round5 is less than 24?", "context": "CREATE TABLE table_name_62 (round1 INTEGER, round5 VARCHAR, round2 VARCHAR, round3 VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_72 WHERE total_points > 194 AND round4 < 64 AND round3 > 51 AND round2 < 66", "question": "what is the rank when the total points is more than 194, round4 is less than 64, round3 is more than 51 and round 2 is less than 66?", "context": "CREATE TABLE table_name_72 (rank VARCHAR, round2 VARCHAR, round3 VARCHAR, total_points VARCHAR, round4 VARCHAR)"}, {"answer": "SELECT COUNT(round2) FROM table_name_54 WHERE round5 > 35 AND round3 < 51 AND team = \"netherlands\" AND rank < 2", "question": "what is round2 when round5 is more than 35, round3 is less than 51, the rank is smaller than 2 and the team is netherlands?", "context": "CREATE TABLE table_name_54 (round2 VARCHAR, rank VARCHAR, team VARCHAR, round5 VARCHAR, round3 VARCHAR)"}, {"answer": "SELECT MIN(round3) FROM table_name_73 WHERE round4 = 37", "question": "what is the lowest round3 when round4 is 37?", "context": "CREATE TABLE table_name_73 (round3 INTEGER, round4 VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_98 WHERE position = \"shooting guard\" AND years_for_grizzlies = \"2000-2001\"", "question": "What is the team that has a shooting guard that played for the Grizzlies in 2000-2001?", "context": "CREATE TABLE table_name_98 (school_club_team VARCHAR, position VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_51 WHERE nationality = \"united states\" AND years_for_grizzlies = \"1995-1996\"", "question": "What's the United States team that played for the Grizzlies in 1995-1996?", "context": "CREATE TABLE table_name_51 (school_club_team VARCHAR, nationality VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_name_94 WHERE player = \"obinna ekezie\"", "question": "What are years that Obinna Ekezie played for the Grizzlies?", "context": "CREATE TABLE table_name_94 (years_for_grizzlies VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_10 WHERE years_for_grizzlies = \"1995-1998\"", "question": "What's the school that played for the Grizzlie from 1995-1998?", "context": "CREATE TABLE table_name_10 (school_club_team VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT position FROM table_name_24 WHERE player = \"wayne ellington\"", "question": "What position does Wayne Ellington play?", "context": "CREATE TABLE table_name_24 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(premier_league) FROM table_name_16 WHERE position = \"forward\" AND total > 22", "question": "What is the premier league number when the position is forward, and the total is more than 22?", "context": "CREATE TABLE table_name_16 (premier_league VARCHAR, position VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_45 WHERE league_cup < 1 AND fa_cup < 1", "question": "What is the total when the league cup is less than 1, and the fa cup is less than 1?", "context": "CREATE TABLE table_name_45 (total INTEGER, league_cup VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT MIN(league_cup) FROM table_name_71 WHERE premier_league = 1 AND total < 5", "question": "What is the lowest league cup with a premier League of 1, and the total is less than 5?", "context": "CREATE TABLE table_name_71 (league_cup INTEGER, premier_league VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(fa_cup) FROM table_name_16 WHERE league_cup = 1 AND total > 23", "question": "What is the lowest FA Cup when the league cup is 1, and the total is more than 23?", "context": "CREATE TABLE table_name_16 (fa_cup INTEGER, league_cup VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_87 WHERE rider = \"roberto rolfo\" AND laps > 26", "question": "What is the lowest grid for Roberto Rolfo with more than 26 laps?", "context": "CREATE TABLE table_name_87 (grid INTEGER, rider VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_35 WHERE manufacturer = \"aprilia\" AND grid < 9 AND laps < 26 AND rider = \"casey stoner\"", "question": "What was the time for Aprilia and their driver Casey Stoner, before gird 9, and less than 26 laps?", "context": "CREATE TABLE table_name_35 (time_retired VARCHAR, rider VARCHAR, laps VARCHAR, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_67 WHERE rider = \"marco melandri\"", "question": "What are the highest laps for Marco Melandri?", "context": "CREATE TABLE table_name_67 (laps INTEGER, rider VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_54 WHERE played > 12", "question": "Which player lost more than 12?", "context": "CREATE TABLE table_name_54 (lost VARCHAR, played INTEGER)"}, {"answer": "SELECT name FROM table_name_69 WHERE lost > 4", "question": "What is the name of the player that lost more than 4?", "context": "CREATE TABLE table_name_69 (name VARCHAR, lost INTEGER)"}, {"answer": "SELECT name FROM table_name_88 WHERE lane < 8 AND country = \"russia\" AND mark = \"8.07\"", "question": "Which name has a lane less than 8, russia as the country, with a mark of 8.07?", "context": "CREATE TABLE table_name_88 (name VARCHAR, mark VARCHAR, lane VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_77 WHERE heat = 2 AND name = \"susanna kallur\"", "question": "How many lanes have 2 as the heat, and susanna kallur as the name?", "context": "CREATE TABLE table_name_77 (lane INTEGER, heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_32 WHERE mark = \"8.19\" AND lane = 3", "question": "What name has 8.19 as the mark, with 3 as the lane?", "context": "CREATE TABLE table_name_32 (name VARCHAR, mark VARCHAR, lane VARCHAR)"}, {"answer": "SELECT discipline FROM table_name_45 WHERE championship = \"non-championship\"", "question": "In which discipline was non-championship under Championship?", "context": "CREATE TABLE table_name_45 (discipline VARCHAR, championship VARCHAR)"}, {"answer": "SELECT discipline FROM table_name_93 WHERE session = \"pre-race test\"", "question": "What type of motorsport has a session of pre-race test?", "context": "CREATE TABLE table_name_93 (discipline VARCHAR, session VARCHAR)"}, {"answer": "SELECT event FROM table_name_32 WHERE championship = \"1959 usac championship car season\"", "question": "With a Championship of 1959 USAC Championship Car Season what is the event?", "context": "CREATE TABLE table_name_32 (event VARCHAR, championship VARCHAR)"}, {"answer": "SELECT event FROM table_name_26 WHERE championship = \"nascar featherlite modified series\"", "question": "What race even has NASCAR Featherlite Modified Series as the championship?", "context": "CREATE TABLE table_name_26 (event VARCHAR, championship VARCHAR)"}, {"answer": "SELECT session FROM table_name_41 WHERE circuit = \"milwaukee mile\"", "question": "The Milwaukee Mile circuit has what type of session?", "context": "CREATE TABLE table_name_41 (session VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_16 WHERE championship = \"2001 nascar winston cup series\"", "question": "The 2001 NASCAR Winston Cup Series championship has what has a circuit?", "context": "CREATE TABLE table_name_16 (circuit VARCHAR, championship VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_23 WHERE tournament = \"stockholm\"", "question": "Which Semifinalist has a Tournament of stockholm?", "context": "CREATE TABLE table_name_23 (semifinalists VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_33 WHERE winner_and_score = \"goran ivani\u0161evi\u0107 6\u20134, 6\u20132, 7\u20136(2)\"", "question": "Which Tournament has a Winner and score of goran ivani\u0161evi\u0107 6\u20134, 6\u20132, 7\u20136(2)?", "context": "CREATE TABLE table_name_33 (tournament VARCHAR, winner_and_score VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_17 WHERE week = \"may 3\"", "question": "Which Finalist has a Week of may 3?", "context": "CREATE TABLE table_name_17 (finalist VARCHAR, week VARCHAR)"}, {"answer": "SELECT surface FROM table_name_95 WHERE week = \"march 1\"", "question": "Which Surface has a Week of march 1?", "context": "CREATE TABLE table_name_95 (surface VARCHAR, week VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_28 WHERE tournament = \"rome\"", "question": "Which Semifinalists have a Tournament of rome?", "context": "CREATE TABLE table_name_28 (semifinalists VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_98 WHERE semifinalists = \"stefan edberg thomas muster\"", "question": "Which Surface has a Semifinalist of stefan edberg thomas muster?", "context": "CREATE TABLE table_name_98 (surface VARCHAR, semifinalists VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_78 WHERE played = \"20\" AND club = \"rhigos rfc\"", "question": "Which Drawn has a Played of 20, and a Club of rhigos rfc?", "context": "CREATE TABLE table_name_78 (drawn VARCHAR, played VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_33 WHERE losing_bonus = \"2\" AND club = \"bridgend sports rfc\"", "question": "Which Points for has a Losing bonus of 2, and a Club of bridgend sports rfc?", "context": "CREATE TABLE table_name_33 (points_for VARCHAR, losing_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_97 WHERE \"lost\" = \"lost\"", "question": "Which Points against has a Lost of lost?", "context": "CREATE TABLE table_name_97 (points_against VARCHAR)"}, {"answer": "SELECT points FROM table_name_34 WHERE points_for = \"381\"", "question": "Which Points has a Points for of 381?", "context": "CREATE TABLE table_name_34 (points VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_7 WHERE points_for = \"564\"", "question": "Which Tries against has Points for of 564?", "context": "CREATE TABLE table_name_7 (tries_against VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT club FROM table_name_11 WHERE drawn = \"0\" AND points = \"26\"", "question": "Which Club has a Drawn of 0, and Points of 26?", "context": "CREATE TABLE table_name_11 (club VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT country FROM table_name_74 WHERE year_s__won = \"2004\"", "question": "What country won in 2004?", "context": "CREATE TABLE table_name_74 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_51 WHERE name = \"tour quartier des spectacles\" AND floors < 31", "question": "How many years have a Name of tour quartier des spectacles, and Floors smaller than 31?", "context": "CREATE TABLE table_name_51 (year VARCHAR, name VARCHAR, floors VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE away_team = \"aldershot\"", "question": "what is the date that the away team is aldershot?", "context": "CREATE TABLE table_name_16 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_12 WHERE away_team = \"bolton wanderers\"", "question": "who is the home team when the away team is bolton wanderers?", "context": "CREATE TABLE table_name_12 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(assists) FROM table_name_30 WHERE name = \"juan ignacio s\u00e1nchez\"", "question": "What's the largest amount of assists juan ignacio s\u00e1nchez ever had?", "context": "CREATE TABLE table_name_30 (assists INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_20 WHERE games > 37 AND assists = 202", "question": "Who played over 37 games and had 202 assists?", "context": "CREATE TABLE table_name_20 (name VARCHAR, games VARCHAR, assists VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_37 WHERE bask = \"3\" AND base = \"3\"", "question": "What is the highest total value when bask and base are each 3?", "context": "CREATE TABLE table_name_37 (total INTEGER, bask VARCHAR, base VARCHAR)"}, {"answer": "SELECT event_2 FROM table_name_32 WHERE air_date = \"8 june 2008\"", "question": "What was the 2nd event aired on 8 June 2008?", "context": "CREATE TABLE table_name_32 (event_2 VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT AVG(episode_number) FROM table_name_45 WHERE event_4 = \"the wall\" AND event_3 = \"sumo ball\"", "question": "What episode had sumo ball for event 3 and the wall for event 4?", "context": "CREATE TABLE table_name_45 (episode_number INTEGER, event_4 VARCHAR, event_3 VARCHAR)"}, {"answer": "SELECT MIN(episode_number) FROM table_name_97 WHERE air_date = \"8 june 2008\"", "question": "What is the earliest episode aired on 8 June 2008?", "context": "CREATE TABLE table_name_97 (episode_number INTEGER, air_date VARCHAR)"}, {"answer": "SELECT event_4 FROM table_name_10 WHERE event_1 = \"gauntlet\" AND event_2 = \"duel\" AND event_3 = \"pendulum\"", "question": "What is event 4 when event one was gauntlet, event 2 was duel, and event 3 was pendulum?", "context": "CREATE TABLE table_name_10 (event_4 VARCHAR, event_3 VARCHAR, event_1 VARCHAR, event_2 VARCHAR)"}, {"answer": "SELECT air_date FROM table_name_89 WHERE episode_number < 11 AND event_1 = \"atlasphere\"", "question": "What is the air date  the had atlasphere for event 1 before episode 11?", "context": "CREATE TABLE table_name_89 (air_date VARCHAR, episode_number VARCHAR, event_1 VARCHAR)"}, {"answer": "SELECT MIN(placement) FROM table_name_38 WHERE final = \"23.92\"", "question": "What was the lowest placement with a final of 23.92?", "context": "CREATE TABLE table_name_38 (placement INTEGER, final VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_47 WHERE surname = \"lindberg\"", "question": "What did the Surname Lindberg rank?", "context": "CREATE TABLE table_name_47 (rank VARCHAR, surname VARCHAR)"}, {"answer": "SELECT MIN(number_of_bearers_2008) FROM table_name_13 WHERE surname = \"jansson\" AND rank < 13", "question": "What was the lowest number of 2008 total bearers with a rank less than 13 and the Surname Jansson?", "context": "CREATE TABLE table_name_13 (number_of_bearers_2008 INTEGER, surname VARCHAR, rank VARCHAR)"}, {"answer": "SELECT etymology FROM table_name_58 WHERE rank = 12", "question": "What Etymology ranked 12?", "context": "CREATE TABLE table_name_58 (etymology VARCHAR, rank VARCHAR)"}, {"answer": "SELECT team FROM table_name_27 WHERE games > 32 AND rebounds = 311", "question": "What team has more than 32 games and 311 rebounds?", "context": "CREATE TABLE table_name_27 (team VARCHAR, games VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_52 WHERE team = \"akasvayu girona\" AND rebounds < 311", "question": "What is the highest rank team akasvayu girona had with less than 311 rebounds?", "context": "CREATE TABLE table_name_52 (rank INTEGER, team VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_27 WHERE team = \"iurbentia bilbao\" AND rebounds > 212", "question": "How many games did team iurbentia bilbao have with rebounds higher than 212?", "context": "CREATE TABLE table_name_27 (games INTEGER, team VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_4 WHERE rank > 1 AND rebounds > 212", "question": "How few games are there for a rank more than 1 and more than 212 rebounds?", "context": "CREATE TABLE table_name_4 (games INTEGER, rank VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE label = \"chrysalis records\"", "question": "On what date is the Chrysalis Records label.?", "context": "CREATE TABLE table_name_21 (date VARCHAR, label VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE label = \"chrysalis, island records\"", "question": "What is the date of the Chrysalis, Island Records label?", "context": "CREATE TABLE table_name_81 (date VARCHAR, label VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE format = \"ed remaster cd\"", "question": "On what date was the format of ed remaster cd?", "context": "CREATE TABLE table_name_97 (date VARCHAR, format VARCHAR)"}, {"answer": "SELECT region FROM table_name_85 WHERE catalog = \"ilps 9153\"", "question": "The Catalog of ilps 9153 is from what region?", "context": "CREATE TABLE table_name_85 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_93 WHERE region = \"spain\"", "question": "What label is from the Region of Spain?", "context": "CREATE TABLE table_name_93 (label VARCHAR, region VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_35 WHERE venue = \"berlin, germany\"", "question": "what is the latest year when the venue is berlin, germany?", "context": "CREATE TABLE table_name_35 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_36 WHERE notes = \"5000 m\" AND competition = \"world junior championships in athletics\"", "question": "what is the year when the notes is 5000 m and the competition is world junior championships in athletics?", "context": "CREATE TABLE table_name_36 (year VARCHAR, notes VARCHAR, competition VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_53 WHERE game = 72", "question": "Who has the highest assists in game 72?", "context": "CREATE TABLE table_name_53 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_38 WHERE date = \"march 21\"", "question": "What is the record of the game on March 21?", "context": "CREATE TABLE table_name_38 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT season FROM table_name_12 WHERE episode_count > 5 AND time_length = \"159 minutes\"", "question": "Which season has more than 5 episodes each 159 minutes in length?", "context": "CREATE TABLE table_name_12 (season VARCHAR, episode_count VARCHAR, time_length VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_22 WHERE dvd_title = \"ben 10: alien force volume 9\"", "question": "What is the release date for Ben 10: Alien Force Volume 9 on DVD?", "context": "CREATE TABLE table_name_22 (release_date VARCHAR, dvd_title VARCHAR)"}, {"answer": "SELECT episode_count FROM table_name_90 WHERE dvd_title = \"ben 10: alien force volume 8\"", "question": "What the episode count for Ben 10: Alien Force Volume 8 on DVD?", "context": "CREATE TABLE table_name_90 (episode_count VARCHAR, dvd_title VARCHAR)"}, {"answer": "SELECT dvd_title FROM table_name_5 WHERE aspect_ratio = \"16:9\" AND release_date = \"november 17, 2009\"", "question": "What title was release November 17, 2009 in a 16:9 aspect ratio?", "context": "CREATE TABLE table_name_5 (dvd_title VARCHAR, aspect_ratio VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT aspect_ratio FROM table_name_56 WHERE release_date = \"september 1, 2009\"", "question": "What is the aspect ratio for the September 1, 2009 release?", "context": "CREATE TABLE table_name_56 (aspect_ratio VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT network FROM table_name_12 WHERE year > 2011", "question": "Which network broadcasted the cup after 2011?", "context": "CREATE TABLE table_name_12 (network VARCHAR, year INTEGER)"}, {"answer": "SELECT sideline_reporters FROM table_name_84 WHERE color_commentator = \"john harkes\" AND pregame_analysts = \"alexi lalas and steve mcmanaman\"", "question": "When John Harkes was the color commentator, and Alexi Lalas and Steve McManaman were the pregame analysts, who were the sideline reporters?", "context": "CREATE TABLE table_name_84 (sideline_reporters VARCHAR, color_commentator VARCHAR, pregame_analysts VARCHAR)"}, {"answer": "SELECT pregame_analysts FROM table_name_74 WHERE color_commentator = \"taylor twellman\" AND network = \"tsn2\"", "question": "Who does pregame analysts for TSN2 network when Taylor Twellman is the color commentator?", "context": "CREATE TABLE table_name_74 (pregame_analysts VARCHAR, color_commentator VARCHAR, network VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_60 WHERE game < 16", "question": "With the game that was less than 16 what was the high assists?", "context": "CREATE TABLE table_name_60 (high_assists VARCHAR, game INTEGER)"}, {"answer": "SELECT record FROM table_name_82 WHERE date = \"december 25\"", "question": "On December 25, what was the record?", "context": "CREATE TABLE table_name_82 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT length FROM table_name_33 WHERE location = \"taylorville, illinois\"", "question": "What is the length of the track located in Taylorville, Illinois?", "context": "CREATE TABLE table_name_33 (length VARCHAR, location VARCHAR)"}, {"answer": "SELECT sanction FROM table_name_5 WHERE location = \"nashville, illinois\"", "question": "What was the sanction of the event at Nashville, Illinois?", "context": "CREATE TABLE table_name_5 (sanction VARCHAR, location VARCHAR)"}, {"answer": "SELECT program FROM table_name_44 WHERE track_name = \"south fork dirt riders\"", "question": "What programs are there for the South Fork Dirt Riders track?", "context": "CREATE TABLE table_name_44 (program VARCHAR, track_name VARCHAR)"}, {"answer": "SELECT points FROM table_name_58 WHERE club = \"newport rfc\"", "question": "How many points did Newport RFC get?", "context": "CREATE TABLE table_name_58 (points VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_90 WHERE lost = \"15\"", "question": "What club had a loss of 15?", "context": "CREATE TABLE table_name_90 (club VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points_difference FROM table_name_37 WHERE points_for = \"554\"", "question": "When there were 554 points, what was the point difference?", "context": "CREATE TABLE table_name_37 (points_difference VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT points_difference FROM table_name_34 WHERE points_against = \"767\"", "question": "When there were 767 points, what was the point difference?", "context": "CREATE TABLE table_name_34 (points_difference VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT club FROM table_name_87 WHERE points_difference = \"-24\"", "question": "What club had a points difference of -24?", "context": "CREATE TABLE table_name_87 (club VARCHAR, points_difference VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_55 WHERE opponent = \"jade curtis\"", "question": "What is the outcome of the match with opponent Jade Curtis?", "context": "CREATE TABLE table_name_55 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_27 WHERE surface = \"carpet\"", "question": "What is the outcome of the match played on carpet surface?", "context": "CREATE TABLE table_name_27 (outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_59 WHERE opponent = \"jade curtis\"", "question": "What is the name of the Tournament with Jade Curtis as the opponent?", "context": "CREATE TABLE table_name_59 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE runs = \"124\"", "question": "Who has Runs of 124?", "context": "CREATE TABLE table_name_79 (player VARCHAR, runs VARCHAR)"}, {"answer": "SELECT runs FROM table_name_47 WHERE venue = \"adelaide oval , adelaide\"", "question": "Name the Runs which has Venue of adelaide oval , adelaide?", "context": "CREATE TABLE table_name_47 (runs VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_61 WHERE player = \"michael di venuto\" AND season = \"2000/01\"", "question": "Which Venue has michael di venuto on Season of 2000/01?", "context": "CREATE TABLE table_name_61 (venue VARCHAR, player VARCHAR, season VARCHAR)"}, {"answer": "SELECT runs FROM table_name_26 WHERE venue = \"bellerive oval , hobart\" AND season = \"2004/05\" AND rank = \"5\"", "question": "Name the Runs has a Venue of bellerive oval , hobart, and a Season of 2004/05, and a Rank of 5?", "context": "CREATE TABLE table_name_26 (runs VARCHAR, rank VARCHAR, venue VARCHAR, season VARCHAR)"}, {"answer": "SELECT runs FROM table_name_2 WHERE venue = \"bellerive oval , hobart\" AND player = \"travis birt\"", "question": "Name the Runs that has a Venue of bellerive oval , hobart, and a Player of travis birt?", "context": "CREATE TABLE table_name_2 (runs VARCHAR, venue VARCHAR, player VARCHAR)"}, {"answer": "SELECT front_side_bus FROM table_name_95 WHERE frequency = \"733mhz\"", "question": "What is the front-side bus for the processor whose frequency is 733MHz?", "context": "CREATE TABLE table_name_95 (front_side_bus VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_93 WHERE frequency = \"750mhz\"", "question": "What is the L2 cache for the processor with a 750MHz frequency?", "context": "CREATE TABLE table_name_93 (l2_cache VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT multiplier FROM table_name_20 WHERE frequency = \"733mhz\"", "question": "What is the multiplier for the processor with a frequency of 733MHz?", "context": "CREATE TABLE table_name_20 (multiplier VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT MIN(height__m_) FROM table_name_26 WHERE prominence__m_ = 2 OFFSET 349", "question": "What is the smallest height with a prominence of 2,349?", "context": "CREATE TABLE table_name_26 (height__m_ INTEGER, prominence__m_ VARCHAR)"}, {"answer": "SELECT result FROM table_name_41 WHERE week < 6 AND opponent = \"cleveland browns\"", "question": "What was the result of the game after week 6 against the cleveland browns?", "context": "CREATE TABLE table_name_41 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_33 WHERE date = \"december 5, 1999\"", "question": "What was the Ravens' record on December 5, 1999?", "context": "CREATE TABLE table_name_33 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE opponent = \"buffalo bills\"", "question": "What date did the Ravens play the buffalo bills?", "context": "CREATE TABLE table_name_97 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE week = 10", "question": "What date was the week 10 game?", "context": "CREATE TABLE table_name_89 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT type FROM table_name_51 WHERE location = \"los angeles, california\"", "question": "What was the school type for Los Angeles, California?", "context": "CREATE TABLE table_name_51 (type VARCHAR, location VARCHAR)"}, {"answer": "SELECT dates FROM table_name_89 WHERE location = \"honolulu, hawaii\" AND grade = \"kindergarten\"", "question": "What were the dates for Honolulu, Hawaii in Kindergarten?", "context": "CREATE TABLE table_name_89 (dates VARCHAR, location VARCHAR, grade VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_46 WHERE round > 6 AND overall > 216", "question": "What is the highest Pick that has a round greater than 6 and an overall greater than 216?", "context": "CREATE TABLE table_name_46 (pick INTEGER, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_36 WHERE overall = 143 AND pick > 6", "question": "What is the highest round that has an overall of 143 and a pick greater than 6?", "context": "CREATE TABLE table_name_36 (round INTEGER, overall VARCHAR, pick VARCHAR)"}, {"answer": "SELECT session FROM table_name_70 WHERE circuit = \"lowes motor speedway\"", "question": "What was the session at the circuit of lowes motor speedway?", "context": "CREATE TABLE table_name_70 (session VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT session FROM table_name_96 WHERE discipline = \"open wheel\"", "question": "Which session had a discipline of open wheel?", "context": "CREATE TABLE table_name_96 (session VARCHAR, discipline VARCHAR)"}, {"answer": "SELECT championship FROM table_name_39 WHERE circuit = \"le mans\"", "question": "Which championship had a Circuit of le mans?", "context": "CREATE TABLE table_name_39 (championship VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT discipline FROM table_name_17 WHERE championship = \"international championship for makes\"", "question": "What was the discipline for the Championship of international championship for makes?", "context": "CREATE TABLE table_name_17 (discipline VARCHAR, championship VARCHAR)"}, {"answer": "SELECT session FROM table_name_95 WHERE circuit = \"autodrom most\"", "question": "What was the session at the circuit of autodrom most?", "context": "CREATE TABLE table_name_95 (session VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT discipline FROM table_name_59 WHERE championship = \"euroboss\"", "question": "What was the discipline for the euroboss championship?", "context": "CREATE TABLE table_name_59 (discipline VARCHAR, championship VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_76 WHERE position > 9", "question": "what is the lowest played when the position is more than 9?", "context": "CREATE TABLE table_name_76 (played INTEGER, position INTEGER)"}, {"answer": "SELECT AVG(points) FROM table_name_55 WHERE played < 16", "question": "what is the average points when played is less than 16?", "context": "CREATE TABLE table_name_55 (points INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(points) FROM table_name_39 WHERE position > 6 AND lost < 12 AND drawn < 1", "question": "what is the highest points when position is higher than 6, lost is less than 12 and drawn is less than 1?", "context": "CREATE TABLE table_name_39 (points INTEGER, drawn VARCHAR, position VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_18 WHERE lost < 10 AND name = \"vfl denklingen\" AND position > 2", "question": "what is the sum of points when lost is less than 10, name is vfl denklingen and position is higher than 2?", "context": "CREATE TABLE table_name_18 (points INTEGER, position VARCHAR, lost VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(worst_score) FROM table_name_72 WHERE best_score = 8.8 AND average > 6.2", "question": "WHAT IS THE WORST SCORE WHEN THE BEST SCORE WAS 8.8 AND AVERAGE WAS LARGER THAN 6.2?", "context": "CREATE TABLE table_name_72 (worst_score VARCHAR, best_score VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_53 WHERE place < 1", "question": "WHAT IS THE TOTAL AVERAGE WITH A PLACE SMALLER THAN 1?", "context": "CREATE TABLE table_name_53 (average VARCHAR, place INTEGER)"}, {"answer": "SELECT MAX(place) FROM table_name_3 WHERE best_score > 10", "question": "WHAT IS THE HIGHEST PLACE AND BEST SCORE BIGGER THAN 10?", "context": "CREATE TABLE table_name_3 (place INTEGER, best_score INTEGER)"}, {"answer": "SELECT high_points FROM table_name_32 WHERE date = \"january 31\"", "question": "Can you tell me the High points that has the Date of january 31?", "context": "CREATE TABLE table_name_32 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE game = 40", "question": "Can you tell me the Score that has the Game of 40?", "context": "CREATE TABLE table_name_33 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE player = \"lee trevino\"", "question": "What was Lee Trevino's score?", "context": "CREATE TABLE table_name_42 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_77 WHERE driver = \"patrick carpentier\"", "question": "What was the highest grid for Patrick Carpentier?", "context": "CREATE TABLE table_name_77 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_16 WHERE points = 29 AND grid < 1", "question": "Who has the lowest laps with 29 points on 1 grid?", "context": "CREATE TABLE table_name_16 (laps INTEGER, points VARCHAR, grid VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_90 WHERE game > 7 AND record = \"5-2-1\"", "question": "What is the location and attendance of the game with a game number greater than 7 and a record of 5-2-1?", "context": "CREATE TABLE table_name_90 (location_attendance VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_6 WHERE record = \"3-1-0\"", "question": "What is the location and attendance of the game with a 3-1-0 record?", "context": "CREATE TABLE table_name_6 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_51 WHERE game < 5 AND record = \"2-0-0\"", "question": "Who is the opponent of the game with a game number less than 5 with a 2-0-0 record?", "context": "CREATE TABLE table_name_51 (opponent VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_23 WHERE branding = \"your cure for corporate radio\"", "question": "What Frequency's Branding is Your Cure for Corporate Radio?", "context": "CREATE TABLE table_name_23 (frequency VARCHAR, branding VARCHAR)"}, {"answer": "SELECT format FROM table_name_96 WHERE frequency = \"am 980\"", "question": "What is the Format of AM 980?", "context": "CREATE TABLE table_name_96 (format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT branding FROM table_name_23 WHERE owner = \"sound of faith broadcasting group\"", "question": "What is the Branding of the Frequency owned by Sound of Faith Broadcasting Group?", "context": "CREATE TABLE table_name_23 (branding VARCHAR, owner VARCHAR)"}, {"answer": "SELECT format FROM table_name_78 WHERE frequency = \"fm 99.9\"", "question": "What is FM 99.9's Format?", "context": "CREATE TABLE table_name_78 (format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT format FROM table_name_59 WHERE call_sign = \"cjbx-fm\"", "question": "What is the Format of the Frequency CJBX-FM?", "context": "CREATE TABLE table_name_59 (format VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_19 WHERE branding = \"106.9 the x\"", "question": "What is the Call sign of the Frequency 106.9 the X?", "context": "CREATE TABLE table_name_19 (call_sign VARCHAR, branding VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE opponent = \"@ buffalo sabres\"", "question": "Which Score has an Opponent of @ buffalo sabres?", "context": "CREATE TABLE table_name_13 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_7 WHERE date = \"march 19, 2009\"", "question": "How many Points have a Date of march 19, 2009?", "context": "CREATE TABLE table_name_7 (points VARCHAR, date VARCHAR)"}, {"answer": "SELECT cdt___5_utc_ FROM table_name_71 WHERE edt___4_utc_ = \"4:55 a.m.\"", "question": "What time is CDT when EDT is 4:55 a.m.?", "context": "CREATE TABLE table_name_71 (cdt___5_utc_ VARCHAR, edt___4_utc_ VARCHAR)"}, {"answer": "SELECT pdt___7_utc_ FROM table_name_69 WHERE cdt___5_utc_ = \"6:38 a.m.\"", "question": "What is the time for PDT when CDT is 6:38 a.m.?", "context": "CREATE TABLE table_name_69 (pdt___7_utc_ VARCHAR, cdt___5_utc_ VARCHAR)"}, {"answer": "SELECT cdt___5_utc_ FROM table_name_13 WHERE pdt___7_utc_ = \"3:17 a.m.\"", "question": "What time is CDT when PDT is 3:17 a.m.?", "context": "CREATE TABLE table_name_13 (cdt___5_utc_ VARCHAR, pdt___7_utc_ VARCHAR)"}, {"answer": "SELECT mdt___6_utc_ FROM table_name_58 WHERE edt___4_utc_ = \"set\" AND pdt___7_utc_ = \"6:00 a.m.\"", "question": "What time is MDT when EDT is set and PDT is 6:00 a.m.?", "context": "CREATE TABLE table_name_58 (mdt___6_utc_ VARCHAR, edt___4_utc_ VARCHAR, pdt___7_utc_ VARCHAR)"}, {"answer": "SELECT AVG(finals) FROM table_name_12 WHERE a_league = \"0 6\" AND pre_season > 0", "question": "Which Finals has a A-League of 0 6, and a Pre-Season larger than 0?", "context": "CREATE TABLE table_name_12 (finals INTEGER, a_league VARCHAR, pre_season VARCHAR)"}, {"answer": "SELECT MIN(pre_season) FROM table_name_4 WHERE a_league = \"0 1\" AND finals > 0", "question": "Which Pre-Season has a A-League of 0 1, and a Finals larger than 0?", "context": "CREATE TABLE table_name_4 (pre_season INTEGER, a_league VARCHAR, finals VARCHAR)"}, {"answer": "SELECT MAX(taper__in_ft_) FROM table_name_20 WHERE size = 8", "question": "What is the highest Taper (in/ft), when Size is 8?", "context": "CREATE TABLE table_name_20 (taper__in_ft_ INTEGER, size VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE week = 15", "question": "What is the date for week 15?", "context": "CREATE TABLE table_name_28 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_74 WHERE game_site = \"candlestick park\"", "question": "What is the total attendance for Candlestick Park?", "context": "CREATE TABLE table_name_74 (attendance VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE date = \"april 26, 2003\"", "question": "Who was the opponent on april 26, 2003?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_27 WHERE week = 1", "question": "What was the result on week 1?", "context": "CREATE TABLE table_name_27 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_83 WHERE date = \"april 26, 2003\"", "question": "What was the result of the game that took place on april 26, 2003?", "context": "CREATE TABLE table_name_83 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_47 WHERE week < 6 AND game_site = \"bye\"", "question": "What was the result of the week that was a bye before week 6?", "context": "CREATE TABLE table_name_47 (result VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MIN(number_of_districts__kecamatan_) FROM table_name_97 WHERE province = \"north sulawesi\" AND villages > 1 OFFSET 510", "question": "What is the lowest number of districts (kecamatan) in the north sulawesi province with more than 1,510 villages?", "context": "CREATE TABLE table_name_97 (number_of_districts__kecamatan_ INTEGER, province VARCHAR, villages VARCHAR)"}, {"answer": "SELECT SUM(number_of_districts__kecamatan_) FROM table_name_4 WHERE geographical_unit = \"java\" AND number_of_regencies__kabupaten_ > 4 AND villages < 8 OFFSET 577", "question": "What is the sum of the number of districts (kecamatan) in the geographical unit of java with more than 4 recencies (kabupaten) and less than 8,577 villages?", "context": "CREATE TABLE table_name_4 (number_of_districts__kecamatan_ INTEGER, villages VARCHAR, geographical_unit VARCHAR, number_of_regencies__kabupaten_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE attendance = 275", "question": "Which score was associated with an attendance of 275?", "context": "CREATE TABLE table_name_66 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_47 WHERE away = \"vida\"", "question": "What was the lowest attendance by the game that had an away team of Vida?", "context": "CREATE TABLE table_name_47 (attendance INTEGER, away VARCHAR)"}, {"answer": "SELECT away FROM table_name_69 WHERE attendance < 2614 AND home = \"victoria\"", "question": "Who was the away team that had attendance under 2614 and a home team of Victoria?", "context": "CREATE TABLE table_name_69 (away VARCHAR, attendance VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_67 WHERE attendance < 529 AND away = \"platense\"", "question": "Who was the home team for the game with Platense as the away team and attendance under 529?", "context": "CREATE TABLE table_name_67 (home VARCHAR, attendance VARCHAR, away VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_99 WHERE away = \"hispano\"", "question": "What was the attendance for the game with an away team of Hispano?", "context": "CREATE TABLE table_name_99 (attendance VARCHAR, away VARCHAR)"}, {"answer": "SELECT home FROM table_name_99 WHERE attendance = 507", "question": "Which home has an attendance of 507?", "context": "CREATE TABLE table_name_99 (home VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_79 WHERE score = \"3:1\"", "question": "What was the total attendance for the 3:1 game?", "context": "CREATE TABLE table_name_79 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT SUM(goals_against) FROM table_name_73 WHERE points < 13 AND wins < 3 AND goals_for < 15", "question": "How many goals against were scored when the points were smaller than 13, the wins were smaller than 3, and the goals for were smaller than 15?", "context": "CREATE TABLE table_name_73 (goals_against INTEGER, goals_for VARCHAR, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_28 WHERE wins = 4 AND points < 11", "question": "What was the highest position when the wins were higher than 4 and the points were lower than 11?", "context": "CREATE TABLE table_name_28 (position INTEGER, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_23 WHERE goals_against > 30", "question": "When the goals against were higher than 30, what was the average number of draws?", "context": "CREATE TABLE table_name_23 (draws INTEGER, goals_against INTEGER)"}, {"answer": "SELECT SUM(wins) FROM table_name_19 WHERE draws < 2", "question": "How many wins happened when there were fewer than 2 draws?", "context": "CREATE TABLE table_name_19 (wins INTEGER, draws INTEGER)"}, {"answer": "SELECT COUNT(goals_against) FROM table_name_17 WHERE position > 1 AND played > 10", "question": "How many goals against were scored when the position was higher than 1 and the played was higher than 10?", "context": "CREATE TABLE table_name_17 (goals_against VARCHAR, position VARCHAR, played VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_name_19 WHERE school_club_team = \"providence\"", "question": "What year were the Grizzlies in Providence?", "context": "CREATE TABLE table_name_19 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE nationality = \"united states\" AND years_for_grizzlies = \"1997-1998\"", "question": "What player from the United States played for the Grizzlies from 1997-1998?", "context": "CREATE TABLE table_name_83 (player VARCHAR, nationality VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT player FROM table_name_13 WHERE years_for_grizzlies = \"1997-1998\"", "question": "Which player played for the Grizzlies from 1997-1998?", "context": "CREATE TABLE table_name_13 (player VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT winner FROM table_name_34 WHERE fis_nordic_world_ski_championships = \"1980\"", "question": "Who won the men's ski jump when the FIS Nordic World Ski Championships was 1980?", "context": "CREATE TABLE table_name_34 (winner VARCHAR, fis_nordic_world_ski_championships VARCHAR)"}, {"answer": "SELECT country FROM table_name_53 WHERE winter_olympics = \"1960\"", "question": "With the Winter Olympics was 1960, what was the country?", "context": "CREATE TABLE table_name_53 (country VARCHAR, winter_olympics VARCHAR)"}, {"answer": "SELECT winter_olympics FROM table_name_38 WHERE country = \"japan\"", "question": "What was the Winter Olympics was Japan as the country?", "context": "CREATE TABLE table_name_38 (winter_olympics VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_45 WHERE winner = \"arnfinn bergmann\"", "question": "The winner Arnfinn Bergmann has what under country?", "context": "CREATE TABLE table_name_45 (country VARCHAR, winner VARCHAR)"}, {"answer": "SELECT holmenkollen FROM table_name_58 WHERE fis_nordic_world_ski_championships = \"1962, 1964\"", "question": "When the FIS Nordic World Ski Championships was 1962, 1964 what was the Holmenkollen?", "context": "CREATE TABLE table_name_58 (holmenkollen VARCHAR, fis_nordic_world_ski_championships VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS $__ FROM table_name_2 WHERE to_par = 13 AND player = \"julius boros\"", "question": "What is the total number of Money ( $ ), when To Par is \"13\", and when Player is \"Julius Boros\"?", "context": "CREATE TABLE table_name_2 (money___ VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_40 WHERE money___$__ < 387 AND score = 73 - 76 - 74 - 72 = 295", "question": "What is Player, when Money ( $ ) is less than 387, and when Score is \"73-76-74-72=295\"?", "context": "CREATE TABLE table_name_40 (player VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_33 WHERE money___$__ < 387 AND player = \"al brosch\"", "question": "What is the total number of To Par, when Money ( $ ) is less than 387, and when Player is \"Al Brosch\"?", "context": "CREATE TABLE table_name_33 (to_par VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_59 WHERE to_par < 15 AND score = 76 - 72 - 75 - 71 = 294", "question": "What is Place, when To Par is less than 15, and when Score is 76-72-75-71=294?", "context": "CREATE TABLE table_name_59 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_56 WHERE country = \"united states\" AND money___$__ > 387 AND score = 75 - 74 - 74 - 70 = 293", "question": "What is Player, when Country is \"United States\", when Money ( $ ) is greater than 387, and when Score is \"75-74-74-70=293\"?", "context": "CREATE TABLE table_name_56 (player VARCHAR, country VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_36 WHERE game < 31", "question": "WHAT IS THE RECORD FOR THE GAME SMALLER THAN 31?", "context": "CREATE TABLE table_name_36 (record VARCHAR, game INTEGER)"}, {"answer": "SELECT AVG(game) FROM table_name_23 WHERE date = \"september 13\"", "question": "WHAT IS THE GAME ON SEPTEMBER 13?", "context": "CREATE TABLE table_name_23 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_88 WHERE wins > 10 AND champion = \"mat mladin\"", "question": "Which team had more than 10 wins with a champion of Mat Mladin?", "context": "CREATE TABLE table_name_88 (team VARCHAR, wins VARCHAR, champion VARCHAR)"}, {"answer": "SELECT team FROM table_name_55 WHERE wins = 2 AND season > 1986", "question": "Which team had 2 wins and a season later than 1986?", "context": "CREATE TABLE table_name_55 (team VARCHAR, wins VARCHAR, season VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE team_1 = \"stade lavallois (d1)\"", "question": "What was the score for Team 1 of Stade Lavallois (d1)?", "context": "CREATE TABLE table_name_7 (score VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_34 WHERE team_2 = \"toulouse fc (d1)\"", "question": "What was team one name for the Team 2 of Toulouse Fc (d1)>?", "context": "CREATE TABLE table_name_34 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_93 WHERE team_2 = \"stade de reims (d2)\"", "question": "What was the name of the Team 1, where the Team 2 was Stade De Reims (d2)?", "context": "CREATE TABLE table_name_93 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE home = \"toronto\" AND date = \"january 28\"", "question": "What was teh score of the game where Toronto was the home team on January 28?", "context": "CREATE TABLE table_name_43 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_34 WHERE date = \"march 31\"", "question": "What is listed for the High rebounds on the Date of March 31?", "context": "CREATE TABLE table_name_34 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_4 WHERE team = \"indiana\"", "question": "What is the Record for the Team of Indiana?", "context": "CREATE TABLE table_name_4 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE game = 75", "question": "What's the Score for the Game of 75?", "context": "CREATE TABLE table_name_74 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_59 WHERE required_os = \"windows\" AND type = \"2d\" AND developer_s_ = \"zeonix\"", "question": "Which Release date has a Required OS of windows, a Type of 2d, and a Developer(s) of zeonix?", "context": "CREATE TABLE table_name_59 (release_date VARCHAR, developer_s_ VARCHAR, required_os VARCHAR, type VARCHAR)"}, {"answer": "SELECT payment FROM table_name_31 WHERE type = \"2d\" AND release_date = \"january 2003\"", "question": "Which Payment has a Type of 2d, and a Release date of january 2003?", "context": "CREATE TABLE table_name_31 (payment VARCHAR, type VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT payment FROM table_name_12 WHERE type = \"text\" AND release_date = \"26 september, 2003\"", "question": "Which Payment has a Type of text, and a Release date of 26 september, 2003?", "context": "CREATE TABLE table_name_12 (payment VARCHAR, type VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT type FROM table_name_88 WHERE release_date = \"november 30, 1997\"", "question": "Which Type has a Release date of november 30, 1997?", "context": "CREATE TABLE table_name_88 (type VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_34 WHERE type = \"2d\"", "question": "Which Release date has a Type of 2d?", "context": "CREATE TABLE table_name_34 (release_date VARCHAR, type VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_84 WHERE developer_s_ = \"microsoft research\"", "question": "Which Release date has a Developer(s) of microsoft research?", "context": "CREATE TABLE table_name_84 (release_date VARCHAR, developer_s_ VARCHAR)"}, {"answer": "SELECT meet FROM table_name_99 WHERE event = \"flying 200 m time trial\"", "question": "what is the meet when the event is flying 200 m time trial?", "context": "CREATE TABLE table_name_99 (meet VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_53 WHERE event = \"1 km time trial\"", "question": "what is the record when the event is 1 km time trial?", "context": "CREATE TABLE table_name_53 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT place FROM table_name_94 WHERE event = \"4000 m individual pursuit\"", "question": "what is the place when the event is 4000 m individual pursuit?", "context": "CREATE TABLE table_name_94 (place VARCHAR, event VARCHAR)"}, {"answer": "SELECT place FROM table_name_2 WHERE event = \"4000 m individual pursuit\"", "question": "what is the place when the event is 4000 m individual pursuit?", "context": "CREATE TABLE table_name_2 (place VARCHAR, event VARCHAR)"}, {"answer": "SELECT meet FROM table_name_67 WHERE date = \"3 august 2012\"", "question": "what is the meet when the date is 3 august 2012?", "context": "CREATE TABLE table_name_67 (meet VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_6 WHERE position = \"4th\"", "question": "Which Year has a Position of 4th?", "context": "CREATE TABLE table_name_6 (year INTEGER, position VARCHAR)"}, {"answer": "SELECT event FROM table_name_79 WHERE competition = \"chicago marathon\" AND year > 2004", "question": "Which Event has a Competition of chicago marathon, and a Year larger than 2004?", "context": "CREATE TABLE table_name_79 (event VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_11 WHERE year > 2003 AND position = \"10th\"", "question": "WHich Venue has a Year larger than 2003, and a Position of 10th?", "context": "CREATE TABLE table_name_11 (venue VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_39 WHERE position = \"5th\"", "question": "Name the Venue which has a Position of 5th?", "context": "CREATE TABLE table_name_39 (venue VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_1 WHERE place = \"2\"", "question": "What is the Place 2 Player?", "context": "CREATE TABLE table_name_1 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT player FROM table_name_11 WHERE to_par = \"+3\"", "question": "What Player has a +3 To par?", "context": "CREATE TABLE table_name_11 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT place FROM table_name_79 WHERE to_par = \"+6\" AND score = 78 - 70 - 74 = 222", "question": "What is the Place of Player with To par of +6 and Score of 78-70-74=222?", "context": "CREATE TABLE table_name_79 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_13 WHERE score = 75 - 70 - 74 = 219", "question": "What is the Country of the Player with a Score of 75-70-74=219?", "context": "CREATE TABLE table_name_13 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_99 WHERE place = \"t3\" AND score = 71 - 76 - 71 = 218", "question": "What is the Country with the T3 Place Player with a Score of 71-76-71=218?", "context": "CREATE TABLE table_name_99 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT event FROM table_name_25 WHERE opponent = \"joe nameth\"", "question": "In what event is the opponent Joe Nameth?", "context": "CREATE TABLE table_name_25 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_75 WHERE round = \"1\" AND res = \"loss\" AND opponent = \"alex hunter\"", "question": "What is the record when the loss was to Alex Hunter in round 1?", "context": "CREATE TABLE table_name_75 (record VARCHAR, opponent VARCHAR, round VARCHAR, res VARCHAR)"}, {"answer": "SELECT method FROM table_name_34 WHERE opponent = \"andre roberts\"", "question": "What is the method when the opponent is Andre Roberts?", "context": "CREATE TABLE table_name_34 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_42 WHERE opponent = \"andre roberts\"", "question": "What is the round when the opponent is Andre Roberts?", "context": "CREATE TABLE table_name_42 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_78 WHERE res = \"loss\" AND record = \"2-4\"", "question": "What is the round when the loss came with a record of 2-4?", "context": "CREATE TABLE table_name_78 (round VARCHAR, res VARCHAR, record VARCHAR)"}, {"answer": "SELECT round FROM table_name_3 WHERE method = \"submission (punches)\"", "question": "How many rounds was the fight with a decision by submission (punches)?", "context": "CREATE TABLE table_name_3 (round VARCHAR, method VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_99 WHERE date = \"sat. feb. 23\"", "question": "Who played against the Celtics on Sat. Feb. 23?", "context": "CREATE TABLE table_name_99 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_18 WHERE score = \"85-102\"", "question": "Who played against the Celtics when the final game score was 85-102?", "context": "CREATE TABLE table_name_18 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT game FROM table_name_60 WHERE score = \"82-79\"", "question": "What game was the final score 82-79?", "context": "CREATE TABLE table_name_60 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_24 WHERE points = 16 AND date = \"november 11, 2008\" AND attendance > 19 OFFSET 289", "question": "What is the highest value for Game, when Points is 16, when Date is November 11, 2008, and when Attendance is greater than 19,289?", "context": "CREATE TABLE table_name_24 (game INTEGER, attendance VARCHAR, points VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE points = 13 AND location = \"rbc center\"", "question": "What is Date, when Points is 13, and when Location is RBC Center?", "context": "CREATE TABLE table_name_58 (date VARCHAR, points VARCHAR, location VARCHAR)"}, {"answer": "SELECT surface FROM table_name_23 WHERE score_in_final = \"3-6, 6-3, 6-2\"", "question": "What is Surface, when Score in Final is 3-6, 6-3, 6-2?", "context": "CREATE TABLE table_name_23 (surface VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT championship FROM table_name_55 WHERE outcome = \"runner-up\" AND opponents_in_final = \"gigi fern\u00e1ndez natalia zvereva\"", "question": "What is Championship, when Outcome is \"runner-up\", and when Opponents In Final is \"Gigi Fern\u00e1ndez Natalia Zvereva\"?", "context": "CREATE TABLE table_name_55 (championship VARCHAR, outcome VARCHAR, opponents_in_final VARCHAR)"}, {"answer": "SELECT opponents_in_final FROM table_name_96 WHERE partner = \"jill hetherington\" AND year > 1988", "question": "What is Opponents in Final, when Partner is \"Jill Hetherington\", and when Year is after 1988?", "context": "CREATE TABLE table_name_96 (opponents_in_final VARCHAR, partner VARCHAR, year VARCHAR)"}, {"answer": "SELECT surface FROM table_name_81 WHERE opponents_in_final = \"gigi fern\u00e1ndez robin white\"", "question": "What is Surface, when Opponents, when Final is \"Gigi Fern\u00e1ndez Robin White\"?", "context": "CREATE TABLE table_name_81 (surface VARCHAR, opponents_in_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_78 WHERE championship = \"australian open\" AND year < 1994", "question": "What is Outcome, when Championship is Australian Open, and when Year is before 1994?", "context": "CREATE TABLE table_name_78 (outcome VARCHAR, championship VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_36 WHERE championship = \"australian open\" AND outcome = \"runner-up\" AND score_in_final = \"3-6, 6-3, 6-2\"", "question": "What is the sum of Year(s), when Championship is \"Australian Open\", when Outcome is \"Runner-Up\", and when Score in Final is 3-6, 6-3, 6-2?", "context": "CREATE TABLE table_name_36 (year INTEGER, score_in_final VARCHAR, championship VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_41 WHERE date = \"december 6, 1998\"", "question": "What iwas the attendance of the game that took place on december 6, 1998?", "context": "CREATE TABLE table_name_41 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE week = 3", "question": "What was the date of week 3?", "context": "CREATE TABLE table_name_25 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE opponent = \"miami dolphins\"", "question": "On what date was the opponent the Miami Dolphins?", "context": "CREATE TABLE table_name_30 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_78 WHERE attendance = \"bye\"", "question": "Which week was the team's bye week?", "context": "CREATE TABLE table_name_78 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_66 WHERE week = 13", "question": "What was the result of the week 13 game?", "context": "CREATE TABLE table_name_66 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT range__varies_with_payload_weight_ FROM table_name_71 WHERE name_designation = \"shahab-4\"", "question": "What is the range (varies by payload weight) for Shahab-4?", "context": "CREATE TABLE table_name_71 (range__varies_with_payload_weight_ VARCHAR, name_designation VARCHAR)"}, {"answer": "SELECT range__varies_with_payload_weight_ FROM table_name_34 WHERE payload = \"unknown\"", "question": "What is the range (varies by payload weight) for the unknown player?", "context": "CREATE TABLE table_name_34 (range__varies_with_payload_weight_ VARCHAR, payload VARCHAR)"}, {"answer": "SELECT payload FROM table_name_12 WHERE class = \"mrbm\" AND range__varies_with_payload_weight_ = \"1,930km\"", "question": "What is the payload for Class MRBM, and a range of 1,930km?", "context": "CREATE TABLE table_name_12 (payload VARCHAR, class VARCHAR, range__varies_with_payload_weight_ VARCHAR)"}, {"answer": "SELECT name_designation FROM table_name_85 WHERE status = \"operational\" AND range__varies_with_payload_weight_ = \"1,930km\"", "question": "What is the name/designation for Operational Status and a range of 1,930km?", "context": "CREATE TABLE table_name_85 (name_designation VARCHAR, status VARCHAR, range__varies_with_payload_weight_ VARCHAR)"}, {"answer": "SELECT name_designation FROM table_name_79 WHERE status = \"under development\"", "question": "What is the name/designation for the under development status?", "context": "CREATE TABLE table_name_79 (name_designation VARCHAR, status VARCHAR)"}, {"answer": "SELECT name_designation FROM table_name_81 WHERE payload = \"1200kg\"", "question": "What is the name/designation for the 1200kg payload?", "context": "CREATE TABLE table_name_81 (name_designation VARCHAR, payload VARCHAR)"}, {"answer": "SELECT venue FROM table_name_94 WHERE event = \"marathon\" AND year > 1995 AND position = \"4th\"", "question": "Which Venue has an Event of marathon, and a Year larger than 1995, and a Position of 4th?", "context": "CREATE TABLE table_name_94 (venue VARCHAR, position VARCHAR, event VARCHAR, year VARCHAR)"}, {"answer": "SELECT position FROM table_name_8 WHERE event = \"10,000 m\" AND competition = \"world championships\" AND year > 1993", "question": "Which Position has an Event of 10,000 m, and a Competition of world championships, and a Year larger than 1993?", "context": "CREATE TABLE table_name_8 (position VARCHAR, year VARCHAR, event VARCHAR, competition VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_23 WHERE pick = \"28\"", "question": "WHAT TEAM HAD A 28 PICK?", "context": "CREATE TABLE table_name_23 (school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_11 WHERE pick = \"7\"", "question": "HOW MANY ROUNDS HAD A PICK OF 7?", "context": "CREATE TABLE table_name_11 (round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_88 WHERE laps < 22 AND bike = \"honda cbr1000rr\" AND rider = \"luca morelli\"", "question": "Which Grid has Laps smaller than 22, and a Bike of honda cbr1000rr, and a Rider of luca morelli?", "context": "CREATE TABLE table_name_88 (grid INTEGER, rider VARCHAR, laps VARCHAR, bike VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_65 WHERE time = \"+13.999\"", "question": "Which Grid has a Time of +13.999?", "context": "CREATE TABLE table_name_65 (grid INTEGER, time VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_14 WHERE rider = \"loic napoleone\"", "question": "Which Grid has a Rider of loic napoleone?", "context": "CREATE TABLE table_name_14 (grid INTEGER, rider VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_67 WHERE on_air_id = \"4zr\"", "question": "What is 4zr's callsign?", "context": "CREATE TABLE table_name_67 (callsign VARCHAR, on_air_id VARCHAR)"}, {"answer": "SELECT on_air_id FROM table_name_13 WHERE frequency = \"0 801\"", "question": "What is the On-air ID of the broadcaster at frequency 0 801?", "context": "CREATE TABLE table_name_13 (on_air_id VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_75 WHERE purpose = \"commercial\" AND on_air_id = \"radio tab\" AND callsign = \"4tab\"", "question": "4tab of commercial broadcaster Radio Tab broadcasts at what frequency?", "context": "CREATE TABLE table_name_75 (frequency VARCHAR, callsign VARCHAR, purpose VARCHAR, on_air_id VARCHAR)"}, {"answer": "SELECT band FROM table_name_52 WHERE callsign = \"4cca\"", "question": "What band does 4cca use?", "context": "CREATE TABLE table_name_52 (band VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT on_air_id FROM table_name_54 WHERE band = \"fm\" AND callsign = \"4nsa\"", "question": "What is the On-air ID of FM broadcaster 4nsa?", "context": "CREATE TABLE table_name_54 (on_air_id VARCHAR, band VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT band FROM table_name_87 WHERE purpose = \"community\" AND frequency = \"0 96.9\"", "question": "The community station broadcasting at frequency 0 96.9 is in what band?", "context": "CREATE TABLE table_name_87 (band VARCHAR, purpose VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_42 WHERE singer_s_ = \"brad kavanagh\"", "question": "What was the original name for the song performed by Brad Kavanagh?", "context": "CREATE TABLE table_name_42 (original_name VARCHAR, singer_s_ VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_70 WHERE language = \"swedish\"", "question": "What is the original name of the song performed in Swedish?", "context": "CREATE TABLE table_name_70 (original_name VARCHAR, language VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_71 WHERE language = \"spanish\" AND country = \"spain\"", "question": "What was the original name of the Spanish song in Spain?", "context": "CREATE TABLE table_name_71 (original_name VARCHAR, language VARCHAR, country VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_35 WHERE 1992 = \"0 / 1\"", "question": "What is the result for 1989 that has a 1992 result of 0 / 1?", "context": "CREATE TABLE table_name_35 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_83 WHERE 1990 = \"0 / 4\"", "question": "For what tournament is the 1990 0 / 4?", "context": "CREATE TABLE table_name_83 (tournament VARCHAR)"}, {"answer": "SELECT 1988 FROM table_name_19 WHERE 1994 = \"a\" AND 1987 = \"3r\"", "question": "What is the 1988 result that has a 1994 result of A, and 3r as the 1987 result?", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_88 WHERE 1992 = \"a\" AND tournament = \"u.s. open\"", "question": "With a 1992 result of A, and at the U.S. Open Tournament, what is the 1989 result?", "context": "CREATE TABLE table_name_88 (tournament VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_98 WHERE career_sr = \"0 / 3\"", "question": "What are the 1994 results with a career SR of 0 / 3?", "context": "CREATE TABLE table_name_98 (career_sr VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_45 WHERE tournament = \"sr\"", "question": "What result in 1994 has a SR as the tournament?", "context": "CREATE TABLE table_name_45 (tournament VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_68 WHERE position = \"3rd\"", "question": "What is the most recent year with a position of 3rd?", "context": "CREATE TABLE table_name_68 (year INTEGER, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_27 WHERE position = \"17th\"", "question": "What is the venue when the result was position of 17th?", "context": "CREATE TABLE table_name_27 (venue VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_32 WHERE year_s__won = \"1977\"", "question": "What is the lowest total that has 1977 as the year (s) won?", "context": "CREATE TABLE table_name_32 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_96 WHERE player = \"andy north\"", "question": "How many totals have andy north as the player?", "context": "CREATE TABLE table_name_96 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_29 WHERE total = 302", "question": "What country has 302 as the total?", "context": "CREATE TABLE table_name_29 (country VARCHAR, total VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_36 WHERE place = \"t4\" AND player = \"ben crenshaw\"", "question": "How much money does player ben crenshaw, who has a t4 place, have?", "context": "CREATE TABLE table_name_36 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_33 WHERE player = \"curtis strange\"", "question": "What is the country of player curtis strange?", "context": "CREATE TABLE table_name_33 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE country = \"united states\" AND money___$__ > 24 OFFSET 542", "question": "What is the score of the United States, which has more than $24,542?", "context": "CREATE TABLE table_name_21 (score VARCHAR, country VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT margin FROM table_name_27 WHERE date = \"19 july 2008 (round 19)\"", "question": "What is the Margin, when Date is 19 July 2008 (Round 19)?", "context": "CREATE TABLE table_name_27 (margin VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_50 WHERE losing_team = \"south sydney rabbitohs\"", "question": "What is the Winning Team, when Losing Team is South Sydney Rabbitohs?", "context": "CREATE TABLE table_name_50 (winning_team VARCHAR, losing_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_68 WHERE score = \"56-4\"", "question": "What is the Venue, when the Score is 56-4?", "context": "CREATE TABLE table_name_68 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_15 WHERE city = \"busan\"", "question": "What is Busan's rank?", "context": "CREATE TABLE table_name_15 (rank INTEGER, city VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_name_45 WHERE area__km\u00b2_ = 3 OFFSET 616", "question": "What is the total population for the 3,616km area?", "context": "CREATE TABLE table_name_45 (population VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT order_of_succession FROM table_name_87 WHERE department = \"education\"", "question": "What was the order of succession for the department of education?", "context": "CREATE TABLE table_name_87 (order_of_succession VARCHAR, department VARCHAR)"}, {"answer": "SELECT MAX(2007 AS _budget_in_billions_of_dollars) FROM table_name_35 WHERE order_of_succession = \"3\"", "question": "What was the highest 2007 budget when the order of succession was 3?", "context": "CREATE TABLE table_name_35 (order_of_succession VARCHAR)"}, {"answer": "SELECT wicket FROM table_name_56 WHERE batting_partners = \"mahela jayawardene and thilan samaraweera\"", "question": "During what wicket were Mahela Jayawardene and Thilan Samaraweera batting partners?", "context": "CREATE TABLE table_name_56 (wicket VARCHAR, batting_partners VARCHAR)"}, {"answer": "SELECT batting_team FROM table_name_55 WHERE venue = \"karachi\"", "question": "What batting team played in Karachi?", "context": "CREATE TABLE table_name_55 (batting_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT batting_team FROM table_name_84 WHERE runs = \"624\"", "question": "Which batting team had 624 runs?", "context": "CREATE TABLE table_name_84 (batting_team VARCHAR, runs VARCHAR)"}, {"answer": "SELECT batting_team FROM table_name_63 WHERE venue = \"chittagong\" AND season = \"2003\"", "question": "What batting team played in Chittagong in 2003?", "context": "CREATE TABLE table_name_63 (batting_team VARCHAR, venue VARCHAR, season VARCHAR)"}, {"answer": "SELECT fielding_team FROM table_name_61 WHERE wicket = \"1st\"", "question": "Which fielding team had 1st wicket?", "context": "CREATE TABLE table_name_61 (fielding_team VARCHAR, wicket VARCHAR)"}, {"answer": "SELECT venue FROM table_name_23 WHERE batting_team = \"west indies\"", "question": "Where did the west indies batting team play at?", "context": "CREATE TABLE table_name_23 (venue VARCHAR, batting_team VARCHAR)"}, {"answer": "SELECT MAX(november) FROM table_name_11 WHERE game < 19 AND opponent = \"minnesota north stars\"", "question": "What is the highest November date that has a game under 19 and opponents of the Minnesota North Stars?", "context": "CREATE TABLE table_name_11 (november INTEGER, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_48 WHERE record = \"12-4-2\" AND november > 22", "question": "What is the total number of games that led to a record of 12-4-2 after November 22?", "context": "CREATE TABLE table_name_48 (game VARCHAR, record VARCHAR, november VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_82 WHERE quantity_made = \"6\" AND quantity_preserved = \"1\"", "question": "What manufacturer made 6 and preserved 1?", "context": "CREATE TABLE table_name_82 (manufacturer VARCHAR, quantity_made VARCHAR, quantity_preserved VARCHAR)"}, {"answer": "SELECT quantity_preserved FROM table_name_68 WHERE manufacturer = \"alco -schenectady\" AND class = \"b-3\"", "question": "How many did alco -schenectady preserve of class b-3?", "context": "CREATE TABLE table_name_68 (quantity_preserved VARCHAR, manufacturer VARCHAR, class VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_47 WHERE class = \"b-2\"", "question": "What manufacturer made class b-2?", "context": "CREATE TABLE table_name_47 (manufacturer VARCHAR, class VARCHAR)"}, {"answer": "SELECT time___gmt__ FROM table_name_66 WHERE serial = \"4a\"", "question": "What is the time (GMT) for the 4A Serial?", "context": "CREATE TABLE table_name_66 (time___gmt__ VARCHAR, serial VARCHAR)"}, {"answer": "SELECT time___gmt__ FROM table_name_9 WHERE serial = \"12a\"", "question": "What is the time (GMT) for the 12A Serial?", "context": "CREATE TABLE table_name_9 (time___gmt__ VARCHAR, serial VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_39 WHERE name = \"fred smoot\" AND pick > 14", "question": "What is the sum of the round of Fred Smoot, who has a pick number greater than 14?", "context": "CREATE TABLE table_name_39 (round INTEGER, name VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_82 WHERE college = \"mississippi state\"", "question": "What position does the player from Mississippi state play?", "context": "CREATE TABLE table_name_82 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_62 WHERE position = \"wr\" AND overall < 15", "question": "What is the highest pick of the wr player with an overall less than 15?", "context": "CREATE TABLE table_name_62 (pick INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT country FROM table_name_2 WHERE score = 72 - 65 - 73 = 210", "question": "What Country scored 72-65-73=210?", "context": "CREATE TABLE table_name_2 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_45 WHERE player = \"dave barr\"", "question": "What country has Dave Barr as a player?", "context": "CREATE TABLE table_name_45 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_7 WHERE player = \"dave barr\"", "question": "In what place did Dave Barr score?", "context": "CREATE TABLE table_name_7 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE player = \"raymond floyd\"", "question": "What was Raymond Floyd's score?", "context": "CREATE TABLE table_name_58 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_67 WHERE score = 70 - 68 - 70 = 208", "question": "What Country scored 70-68-70=208?", "context": "CREATE TABLE table_name_67 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_12 WHERE method = \"tko (elbows)\"", "question": "What was the record when the TKO (elbows) method was used?", "context": "CREATE TABLE table_name_12 (record VARCHAR, method VARCHAR)"}, {"answer": "SELECT iata FROM table_name_62 WHERE city = \"alexandria\"", "question": "What is IATA, when City is \"Alexandria\"?", "context": "CREATE TABLE table_name_62 (iata VARCHAR, city VARCHAR)"}, {"answer": "SELECT airport FROM table_name_35 WHERE country = \"egypt\" AND icao = \"heba\"", "question": "What is Airport, when Country is \"Egypt\", and when ICAO is \"Heba\"?", "context": "CREATE TABLE table_name_35 (airport VARCHAR, country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT city FROM table_name_58 WHERE country = \"kuwait\"", "question": "What is City, when Country is \"Kuwait\"?", "context": "CREATE TABLE table_name_58 (city VARCHAR, country VARCHAR)"}, {"answer": "SELECT iata FROM table_name_35 WHERE icao = \"hesh\"", "question": "What is IATA, when ICAO is \"Hesh\"?", "context": "CREATE TABLE table_name_35 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT country FROM table_name_89 WHERE icao = \"hesh\"", "question": "What is Country, when ICAO is \"Hesh\"?", "context": "CREATE TABLE table_name_89 (country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT city FROM table_name_67 WHERE iata = \"amm\"", "question": "What is City, when IATA is \"amm\"?", "context": "CREATE TABLE table_name_67 (city VARCHAR, iata VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_26 WHERE college = \"notre dame\" AND pick > 5", "question": "If Notre Dame had a pick larger than 5, what's the overall pick?", "context": "CREATE TABLE table_name_26 (overall INTEGER, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT college FROM table_name_92 WHERE pick < 5", "question": "Which college had a pick of under 5?", "context": "CREATE TABLE table_name_92 (college VARCHAR, pick INTEGER)"}, {"answer": "SELECT pick FROM table_name_39 WHERE name = \"ralph shoaf\"", "question": "What was Ralph Shoaf's pick number?", "context": "CREATE TABLE table_name_39 (pick VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE place = \"t9\" AND player = \"jeff sluman\"", "question": "What is Score, when Place is \"T9\", and when Player is \"Jeff Sluman\"?", "context": "CREATE TABLE table_name_39 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_70 WHERE player = \"scott dunlap\"", "question": "What is Country, when Player is \"Scott Dunlap\"?", "context": "CREATE TABLE table_name_70 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_75 WHERE country = \"united states\" AND place = \"t4\" AND score = 71 - 68 = 139", "question": "What is To Par, when Country is \"United States\", when Place is \"T4\", and when Score is \"71-68=139\"?", "context": "CREATE TABLE table_name_75 (to_par VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE player = \"jeff maggert\"", "question": "What is Score, when Player is \"Jeff Maggert\"?", "context": "CREATE TABLE table_name_76 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_46 WHERE player = \"justin leonard\"", "question": "What is Place, when Player is \"Justin Leonard\"?", "context": "CREATE TABLE table_name_46 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE place = \"t4\" AND player = \"scott hoch\"", "question": "What is Score, when Place is \"T4\", and when Player is \"Scott Hoch\"?", "context": "CREATE TABLE table_name_1 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT multiplier FROM table_name_98 WHERE front_side_bus = \"200 mhz\" AND frequency = \"1200 mhz\"", "question": "Which Multiplier has a Front Side Bus of 200\u2009mhz, and a Frequency of 1200\u2009mhz?", "context": "CREATE TABLE table_name_98 (multiplier VARCHAR, front_side_bus VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_15 WHERE socket = \"socket 370\" AND model_number = \"c3 1.4a\"", "question": "Which Frequency has a Socket of socket 370, and a Model Number of c3 1.4a?", "context": "CREATE TABLE table_name_15 (frequency VARCHAR, socket VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_5 WHERE model_number = \"c3 1.4a\"", "question": "Which Frequency has a Model Number of c3 1.4a?", "context": "CREATE TABLE table_name_5 (frequency VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_42 WHERE frequency = \"1333 mhz\" AND model_number = \"c3 1.3a\"", "question": "Which L2-Cache has a Frequency of 1333\u2009mhz, and a Model Number of c3 1.3a?", "context": "CREATE TABLE table_name_42 (l2_cache VARCHAR, frequency VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT front_side_bus FROM table_name_58 WHERE voltage = \"1.4 v\" AND frequency = \"1333 mhz\"", "question": "Which Front Side Bus has a Voltage of 1.4\u2009v, and a Frequency of 1333\u2009mhz?", "context": "CREATE TABLE table_name_58 (front_side_bus VARCHAR, voltage VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_7 WHERE multiplier = \"6\u00d7\"", "question": "Which Frequency has a Multiplier of 6\u00d7?", "context": "CREATE TABLE table_name_7 (frequency VARCHAR, multiplier VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_92 WHERE returned_on = \"march 10, 2013\"", "question": "Which Year has a Returned On of march 10, 2013?", "context": "CREATE TABLE table_name_92 (year INTEGER, returned_on VARCHAR)"}, {"answer": "SELECT ship FROM table_name_54 WHERE year > 2013", "question": "Which Ship has a Year larger than 2013?", "context": "CREATE TABLE table_name_54 (ship VARCHAR, year INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_name_16 WHERE departed_from = \"tdb\"", "question": "When did TDB depart?", "context": "CREATE TABLE table_name_16 (year INTEGER, departed_from VARCHAR)"}, {"answer": "SELECT returned_on FROM table_name_87 WHERE year = 2011", "question": "Which Returned On has a Year of 2011?", "context": "CREATE TABLE table_name_87 (returned_on VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_76 WHERE departed_from = \"tampa, fl\"", "question": "From how many years did tampa, FL depart?", "context": "CREATE TABLE table_name_76 (year INTEGER, departed_from VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_88 WHERE manufacturer = \"kawasaki\" AND grid < 7", "question": "Can you tell me the sum of Laps that has the Manufacturer of kawasaki, and the Grid smaller than 7?", "context": "CREATE TABLE table_name_88 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_54 WHERE laps = 30 AND rider = \"toni elias\"", "question": "Can you tell me the sum of Grid that has the Laps of 30, and the Rider of toni elias?", "context": "CREATE TABLE table_name_54 (grid INTEGER, laps VARCHAR, rider VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE opponent = \"bye\"", "question": "When was the opponent Bye?", "context": "CREATE TABLE table_name_52 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_55 WHERE week < 2", "question": "Which opponent was on week 2?", "context": "CREATE TABLE table_name_55 (opponent VARCHAR, week INTEGER)"}, {"answer": "SELECT former_team FROM table_name_72 WHERE pick > 20", "question": "Which Former Team has a Pick larger than 20?", "context": "CREATE TABLE table_name_72 (former_team VARCHAR, pick INTEGER)"}, {"answer": "SELECT player FROM table_name_79 WHERE pick > 20", "question": "Which Player has a Pick larger than 20?", "context": "CREATE TABLE table_name_79 (player VARCHAR, pick INTEGER)"}, {"answer": "SELECT position FROM table_name_1 WHERE pick < 14 AND player = \"tyrone bogues\"", "question": "Which Position has a Pick smaller than 14, and a Player of tyrone bogues?", "context": "CREATE TABLE table_name_1 (position VARCHAR, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_64 WHERE player = \"bernard thompson\"", "question": "Which Position has a Player of bernard thompson?", "context": "CREATE TABLE table_name_64 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_54 WHERE former_team = \"denver nuggets\"", "question": "Which Nationality has a Former Team of denver nuggets?", "context": "CREATE TABLE table_name_54 (nationality VARCHAR, former_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_37 WHERE pick > 2 AND position = \"forward\"", "question": "Which Player has a Pick larger than 2, and a Position of forward?", "context": "CREATE TABLE table_name_37 (player VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT team FROM table_name_7 WHERE date = \"march 11\"", "question": "Which team did they play on March 11?", "context": "CREATE TABLE table_name_7 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_62 WHERE team = \"denver\"", "question": "Who had the high rebounds, and how many, when they played Denver?", "context": "CREATE TABLE table_name_62 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_30 WHERE name = \"steve hamilton\" AND round > 2", "question": "WHAT PICK HAD STEVE HAMILTON IN ROUND LARGER THAN 2?", "context": "CREATE TABLE table_name_30 (pick VARCHAR, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_27 WHERE position = \"db\" AND round > 8", "question": "WHAT WAS THE OVERALL NUMBER WITH A POSITON OF DB, AND ROUND GREATER THAN 8?", "context": "CREATE TABLE table_name_27 (overall VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT location FROM table_name_77 WHERE wrestler = \"chris jones\"", "question": "What is chris jones' location?", "context": "CREATE TABLE table_name_77 (location VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT wrestler FROM table_name_41 WHERE date = \"october 11, 2008\"", "question": "Who has a date of october 11, 2008?", "context": "CREATE TABLE table_name_41 (wrestler VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(reign) FROM table_name_66 WHERE date = \"march 10, 2007\"", "question": "What's the highest reign on march 10, 2007?", "context": "CREATE TABLE table_name_66 (reign INTEGER, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_73 WHERE goal = 8", "question": "What was the competition for goal 8?", "context": "CREATE TABLE table_name_73 (competition VARCHAR, goal VARCHAR)"}, {"answer": "SELECT venue FROM table_name_82 WHERE goal > 9 AND result = \"4-1\"", "question": "Which venue had more than 9 goals and a final result of 4-1?", "context": "CREATE TABLE table_name_82 (venue VARCHAR, goal VARCHAR, result VARCHAR)"}, {"answer": "SELECT record FROM table_name_61 WHERE game = 59", "question": "What was the record for game 59?", "context": "CREATE TABLE table_name_61 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_94 WHERE place = \"t10\" AND player = \"andy north\"", "question": "How much was paid to Andy North when he placed t10?", "context": "CREATE TABLE table_name_94 (money___ INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_82 WHERE country = \"united states\" AND player = \"calvin peete\"", "question": "Where did Calvin Peete of the United States place?", "context": "CREATE TABLE table_name_82 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_76 WHERE position = \"df\" AND nationality = \"england\" AND crewe_alexandra_career = \"1948\u20131951\"", "question": "What is the number of goals when the position is DF, the nationality is England, and the Crewe Alexandra career is 1948\u20131951?", "context": "CREATE TABLE table_name_76 (goals VARCHAR, crewe_alexandra_career VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT position FROM table_name_25 WHERE crewe_alexandra_career = \"1988\u20131990\" AND goals = 31", "question": "What is the position when the Crewe Alexandra career is 1988\u20131990, with 31 goals?", "context": "CREATE TABLE table_name_25 (position VARCHAR, crewe_alexandra_career VARCHAR, goals VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_98 WHERE nationality = \"england\" AND position = \"df\" AND crewe_alexandra_career = \"1958\u20131962\" AND appearances < 170", "question": "What is the total number of Goals with a nationality of England, and position of DF, and a Crewe Alexandra career is 1958\u20131962, and less than 170 appearances?", "context": "CREATE TABLE table_name_98 (goals VARCHAR, appearances VARCHAR, crewe_alexandra_career VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE date = \"february 3\"", "question": "what is the score when the date is february 3?", "context": "CREATE TABLE table_name_92 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_96 WHERE opponent = \"new york knickerbockers\"", "question": "what is the game when the opponent is new york knickerbockers?", "context": "CREATE TABLE table_name_96 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE date = \"february 18\"", "question": "what is the score on february 18?", "context": "CREATE TABLE table_name_84 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_87 WHERE opponent = \"@ chicago stags\"", "question": "what is the game when the opponent is @ chicago stags?", "context": "CREATE TABLE table_name_87 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE date = \"february 16\"", "question": "what is the score on february 16?", "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_31 WHERE time = \"+56.977\"", "question": "Total number of laps at a time of +56.977?", "context": "CREATE TABLE table_name_31 (laps VARCHAR, time VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_84 WHERE format = \"cd\" AND title = \"tsar wars\"", "question": "What is Release Date, when Format is CD, and when Title is Tsar Wars?", "context": "CREATE TABLE table_name_84 (release_date VARCHAR, format VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_87 WHERE doctor = \"06 sixth doctor\" AND company = \"big finish\"", "question": "What is Title, when Doctor is 06 Sixth Doctor, and when Company is Big Finish?", "context": "CREATE TABLE table_name_87 (title VARCHAR, doctor VARCHAR, company VARCHAR)"}, {"answer": "SELECT doctor FROM table_name_98 WHERE format = \"cd\" AND title = \"the relics of time\"", "question": "What is Doctor, when Format is CD, and when Title is The Relics Of Time?", "context": "CREATE TABLE table_name_98 (doctor VARCHAR, format VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_31 WHERE title = \"aladdin time\"", "question": "What is Release Date, when Title is Aladdin Time?", "context": "CREATE TABLE table_name_31 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_65 WHERE release_date = \"2011-12-01 december 2011\"", "question": "What is Title, when Release Date is 2011-12-01 December 2011?", "context": "CREATE TABLE table_name_65 (title VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT MIN(share) FROM table_name_63 WHERE rating > 1.3 AND air_date = \"may 28, 2008\"", "question": "What is the lowest Share, when Rating is greater than 1.3, and when Air Date is May 28, 2008?", "context": "CREATE TABLE table_name_63 (share INTEGER, rating VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT COUNT(rating) FROM table_name_22 WHERE air_date = \"june 25, 2008\" AND share > 3", "question": "What is the total number of Rating(s), when Air Date is June 25, 2008, and when Share is greater than 3?", "context": "CREATE TABLE table_name_22 (rating VARCHAR, air_date VARCHAR, share VARCHAR)"}, {"answer": "SELECT COUNT(rating) FROM table_name_7 WHERE weekly_rank = \"76/88\"", "question": "What is the total number of Rating(s), when Weekly Rank is 76/88?", "context": "CREATE TABLE table_name_7 (rating VARCHAR, weekly_rank VARCHAR)"}, {"answer": "SELECT SUM(top_10) FROM table_name_82 WHERE avg_start = 18.9", "question": "How many times did the team with an average start of 18.9 make the top 10?", "context": "CREATE TABLE table_name_82 (top_10 INTEGER, avg_start VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_11 WHERE week = 13", "question": "What was the attendance of the game in week 13?", "context": "CREATE TABLE table_name_11 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT debut FROM table_name_35 WHERE country = \"england\" AND name = \"sydney barnes\"", "question": "When did Sydney Barnes debut in England?", "context": "CREATE TABLE table_name_35 (debut VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_67 WHERE lost > 5 AND played > 14", "question": "What is the sum of points with more than 5 losses and more than 14 played?", "context": "CREATE TABLE table_name_67 (points INTEGER, lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT name FROM table_name_78 WHERE position < 4 AND lost = 2", "question": "Which name was in a position less than 4 with 2 losses?", "context": "CREATE TABLE table_name_78 (name VARCHAR, position VARCHAR, lost VARCHAR)"}, {"answer": "SELECT name FROM table_name_99 WHERE points > 14 AND drawn < 1", "question": "Which name has more than 14 points with less than 1 draw?", "context": "CREATE TABLE table_name_99 (name VARCHAR, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_40 WHERE points = 16 AND position > 4", "question": "What is the largest number played with 16 points in a position over 4?", "context": "CREATE TABLE table_name_40 (played INTEGER, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(heat) FROM table_name_43 WHERE country = \"united states\" AND mark = \"51.85 pb\" AND lane > 6", "question": "What is the lowest heat for the United states with a mark of 51.85 pb and lane higher than 6?", "context": "CREATE TABLE table_name_43 (heat INTEGER, lane VARCHAR, country VARCHAR, mark VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_80 WHERE heat < 2 AND name = \"racheal nachula\"", "question": "What is the average lane racheal nachula has when the heat is less than 2?", "context": "CREATE TABLE table_name_80 (lane INTEGER, heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(heat) FROM table_name_28 WHERE mark = \"52.83 sb\" AND lane < 4", "question": "What is the average heat that has 52.83 sb mark and lane less than 4?", "context": "CREATE TABLE table_name_28 (heat INTEGER, mark VARCHAR, lane VARCHAR)"}, {"answer": "SELECT record FROM table_name_19 WHERE november < 10 AND game < 13", "question": "What is Record, when November is less than 10, and when Game is less than 13?", "context": "CREATE TABLE table_name_19 (record VARCHAR, november VARCHAR, game VARCHAR)"}, {"answer": "SELECT example AS :_did_ FROM table_name_84 WHERE consonant_final_stem = \"-\u00f8\"", "question": "What example for did- is shown for a Consonant final stem of -\u00f8?", "context": "CREATE TABLE table_name_84 (example VARCHAR, consonant_final_stem VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_41 WHERE opponent = \"bye\"", "question": "What was the Stadium against Bye?", "context": "CREATE TABLE table_name_41 (stadium VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_98 WHERE date = \"november 26\"", "question": "What was the Attendance on November 26?", "context": "CREATE TABLE table_name_98 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_12 WHERE date = \"december 17\"", "question": "What was the Week on December 17?", "context": "CREATE TABLE table_name_12 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_21 WHERE date = \"september 24\"", "question": "What was the Result on September 24?", "context": "CREATE TABLE table_name_21 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_25 WHERE result = \"w 20\u201316\"", "question": "What Stadium had a Result of w 20\u201316?", "context": "CREATE TABLE table_name_25 (stadium VARCHAR, result VARCHAR)"}, {"answer": "SELECT college FROM table_name_53 WHERE round = 11 AND pick = 14", "question": "Which College has a Round of 11, and a Pick of 14?", "context": "CREATE TABLE table_name_53 (college VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT name FROM table_name_15 WHERE round < 11 AND pick = 13", "question": "Which Name has a Round smaller than 11, and a Pick of 13?", "context": "CREATE TABLE table_name_15 (name VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_88 WHERE round > 7 AND pick > 13 AND name = \"tony hall\"", "question": "Which Overall has a Round larger than 7, a Pick larger than 13, and a Name of tony hall?", "context": "CREATE TABLE table_name_88 (overall INTEGER, name VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT college FROM table_name_42 WHERE round = 11 AND position = \"wr\"", "question": "Which College has a Round of 11, and a Position of wr?", "context": "CREATE TABLE table_name_42 (college VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT music FROM table_name_6 WHERE style = \"samba\"", "question": "WHAT IS THE MUSIC WITH SAMBA?", "context": "CREATE TABLE table_name_6 (music VARCHAR, style VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_62 WHERE height = \"6-3\" AND name = \"devon bookert\"", "question": "What is the hometown of Devon Bookert who is 6-3 tall?", "context": "CREATE TABLE table_name_62 (hometown VARCHAR, height VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(money___) AS $__ FROM table_name_77 WHERE player = \"raymond floyd\"", "question": "What is raymond floyd's lowest $?", "context": "CREATE TABLE table_name_77 (money___ INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE score = 67 - 72 - 71 - 75 = 285", "question": "Which Player has a Score of 67-72-71-75=285?", "context": "CREATE TABLE table_name_22 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_56 WHERE to_par = \"\u20131\" AND score = 73 - 70 - 73 - 71 = 287", "question": "Which money is the highest one that has a To par of \u20131, and a Score of 73-70-73-71=287?", "context": "CREATE TABLE table_name_56 (money___ INTEGER, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_40 WHERE score = 67 - 72 - 71 - 75 = 285", "question": "Which To par has a Score of 67-72-71-75=285?", "context": "CREATE TABLE table_name_40 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE country = \"spain\"", "question": "What was Spain's score?", "context": "CREATE TABLE table_name_24 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_92 WHERE to_par = \"e\" AND player = \"jay haas\"", "question": "Which country is Jay Haas from when he had a to par of E?", "context": "CREATE TABLE table_name_92 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_32 WHERE score = 72 - 67 = 139", "question": "Which country had a score of 72-67=139?", "context": "CREATE TABLE table_name_32 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_32 WHERE to_par = \"+1\" AND country = \"england\"", "question": "Which player was from England with a to par of +1?", "context": "CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_35 WHERE score = 69 - 69 = 138", "question": "What was the to par when the score was 69-69=138?", "context": "CREATE TABLE table_name_35 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_16 WHERE place = \"t4\" AND country = \"south africa\"", "question": "What was the to par when South Africa was in T4 place?", "context": "CREATE TABLE table_name_16 (to_par VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT location FROM table_name_93 WHERE result = \"28-21\"", "question": "What is Location, when Result is 28-21?", "context": "CREATE TABLE table_name_93 (location VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE location = \"polo grounds\" AND winner = \"philadelphia eagles\" AND year = 1948", "question": "What is Date, when Location is Polo Grounds, when Winner is Philadelphia Eagles, and when Year is 1948?", "context": "CREATE TABLE table_name_70 (date VARCHAR, year VARCHAR, location VARCHAR, winner VARCHAR)"}, {"answer": "SELECT year FROM table_name_89 WHERE location = \"philadelphia municipal stadium\"", "question": "What is Year, when Location is Philadelphia Municipal Stadium?", "context": "CREATE TABLE table_name_89 (year VARCHAR, location VARCHAR)"}, {"answer": "SELECT winner FROM table_name_98 WHERE location = \"connie mack stadium\" AND year = 1946", "question": "What is Winner, when Location is Connie Mack Stadium, and when Year is 1946?", "context": "CREATE TABLE table_name_98 (winner VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE result = \"16-0\"", "question": "What is Date, when Result is 16-0?", "context": "CREATE TABLE table_name_8 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_31 WHERE year = 1948 AND date = \"november 7\"", "question": "What is Result, when Year is 1948, and when Date is November 7?", "context": "CREATE TABLE table_name_31 (result VARCHAR, year VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_93 WHERE game > 72 AND record = \"39-27-9\"", "question": "Who did the Rangers play in a game that was later than 72 when the team record was 39-27-9?", "context": "CREATE TABLE table_name_93 (opponent VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE game < 66", "question": "What was the score at the game earlier than 66?", "context": "CREATE TABLE table_name_56 (score VARCHAR, game INTEGER)"}, {"answer": "SELECT MAX(gold) FROM table_name_13 WHERE bronze = 2 AND nation = \"hungary\" AND total > 7", "question": "What's the largest number of Gold medals won when bronze won are 2 and total won are over 7 by Hungary?", "context": "CREATE TABLE table_name_13 (gold INTEGER, total VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_53 WHERE silver > 1 AND bronze < 2", "question": "What's the average amount of Gold medals won when there were more than 1 silver medal won and less than 2 bronze medals won.", "context": "CREATE TABLE table_name_53 (gold INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(avg_g) FROM table_name_35 WHERE gain = 1 OFFSET 380", "question": "With a gain of 1,380, what is the highest Avg/G?", "context": "CREATE TABLE table_name_35 (avg_g INTEGER, gain VARCHAR)"}, {"answer": "SELECT MAX(long) FROM table_name_40 WHERE name = \"thomas clayton\" AND gain < 71", "question": "When Thomas Clayton had a gain less than 71, what was the highest long value?", "context": "CREATE TABLE table_name_40 (long INTEGER, name VARCHAR, gain VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE opponent = \"inter milan\"", "question": "What is the date of the game where Inter Milan was the opponent.", "context": "CREATE TABLE table_name_90 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_83 WHERE country = \"ireland\"", "question": "What is the most lanes used that had a winner from Ireland?", "context": "CREATE TABLE table_name_83 (lane INTEGER, country VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_75 WHERE country = \"austria\"", "question": "What is the total number of lanes used for races with winners from Austria?", "context": "CREATE TABLE table_name_75 (lane VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_60 WHERE heat > 1 AND mark = \"7.25\"", "question": "What is the most lanes used in races with more than 1 heat and a winning mark of 7.25?", "context": "CREATE TABLE table_name_60 (lane INTEGER, heat VARCHAR, mark VARCHAR)"}, {"answer": "SELECT mark FROM table_name_65 WHERE name = \"laura turner\"", "question": "What is the mark set by Laura Turner?", "context": "CREATE TABLE table_name_65 (mark VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE player = \"john mahaffey\"", "question": "What score did John Mahaffey have?", "context": "CREATE TABLE table_name_52 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_38 WHERE score = 72 - 72 - 67 = 211", "question": "What was the nationality of the player with a score of 72-72-67=211?", "context": "CREATE TABLE table_name_38 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_99 WHERE player = \"keith clearwater\"", "question": "What place did Keith Clearwater get?", "context": "CREATE TABLE table_name_99 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_18 WHERE ground = \"football park\"", "question": "Who was the away team at the Football Park match?", "context": "CREATE TABLE table_name_18 (away_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT round FROM table_name_58 WHERE player = \"jerry butler\"", "question": "In which round was Jerry Butler chosen?", "context": "CREATE TABLE table_name_58 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT results FROM table_name_1 WHERE style = \"contemporary jazz\"", "question": "What was the result of the dance which had a style of contemporary jazz?", "context": "CREATE TABLE table_name_1 (results VARCHAR, style VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_69 WHERE cfl_team = \"edmonton\"", "question": "Can you tell me the sum of the Pick # that has the CFL Team of edmonton?", "context": "CREATE TABLE table_name_69 (pick__number INTEGER, cfl_team VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_20 WHERE position = \"sb\" AND college = \"minnesota\"", "question": "Can you tell me the sum of Pick # that has the Position of sb, and the College of minnesota?", "context": "CREATE TABLE table_name_20 (pick__number INTEGER, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_31 WHERE cfl_team = \"toronto\"", "question": "Can you tell me the Position that has the CFL Team of toronto?", "context": "CREATE TABLE table_name_31 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_62 WHERE democratic = \"glenn nye\"", "question": "What is the name of the incumbent for Glenn Nye?", "context": "CREATE TABLE table_name_62 (incumbent VARCHAR, democratic VARCHAR)"}, {"answer": "SELECT other_party FROM table_name_98 WHERE democratic = \"rick boucher\"", "question": "Who was the other party nominee that ran against Democratic Rick Boucher?", "context": "CREATE TABLE table_name_98 (other_party VARCHAR, democratic VARCHAR)"}, {"answer": "SELECT other_party FROM table_name_35 WHERE district = 3", "question": "Who is the other party nominee for district 3?", "context": "CREATE TABLE table_name_35 (other_party VARCHAR, district VARCHAR)"}, {"answer": "SELECT ground FROM table_name_1 WHERE home_team = \"sydney\"", "question": "The Home team of Sydney had which ground?", "context": "CREATE TABLE table_name_1 (ground VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_56 WHERE away_team = \"kangaroos\"", "question": "What were the Away team Kangaroos Crowd totals?", "context": "CREATE TABLE table_name_56 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_28 WHERE ground = \"optus oval\"", "question": "When the Ground was Optus Oval, what is the Home team score?", "context": "CREATE TABLE table_name_28 (home_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_46 WHERE court_surface = \"clay\" AND began = 1892", "question": "what is the tournament when the court surface is clay and began in 1892?", "context": "CREATE TABLE table_name_46 (tournament VARCHAR, court_surface VARCHAR, began VARCHAR)"}, {"answer": "SELECT location FROM table_name_87 WHERE began < 1990 AND country = \"france\"", "question": "what is the location when began is before 1990 and the country is france?", "context": "CREATE TABLE table_name_87 (location VARCHAR, began VARCHAR, country VARCHAR)"}, {"answer": "SELECT court_surface FROM table_name_47 WHERE tournament = \"paris masters\"", "question": "what is the court surface when the tournament is paris masters?", "context": "CREATE TABLE table_name_47 (court_surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_38 WHERE country = \"united states\"", "question": "what is the tournament when the country is united states?", "context": "CREATE TABLE table_name_38 (tournament VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(began) FROM table_name_21 WHERE court_surface = \"clay\" AND location = \"hamburg\"", "question": "what is the earliest began when the court surface is clay in hamburg?", "context": "CREATE TABLE table_name_21 (began INTEGER, court_surface VARCHAR, location VARCHAR)"}, {"answer": "SELECT country FROM table_name_6 WHERE place = \"t5\"", "question": "Which country placed t5?", "context": "CREATE TABLE table_name_6 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_83 WHERE player = \"tim herron\"", "question": "How did Tim Herron place?", "context": "CREATE TABLE table_name_83 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_72 WHERE place = \"t10\"", "question": "Which player placed t10?", "context": "CREATE TABLE table_name_72 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT event FROM table_name_5 WHERE opponent = \"takaharu murahama\"", "question": "At what event did he fight takaharu murahama?", "context": "CREATE TABLE table_name_5 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_12 WHERE time = \"2:16\"", "question": "When the match lasted 2:16 how was it decided?", "context": "CREATE TABLE table_name_12 (method VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(urban_population__2010_) FROM table_name_83 WHERE province = \"guangxi\"", "question": "What is the highest urban population for Guangxi province?", "context": "CREATE TABLE table_name_83 (urban_population__2010_ INTEGER, province VARCHAR)"}, {"answer": "SELECT AVG(urban_population__2010_) FROM table_name_7 WHERE city = \"fuzhou\"", "question": "What is the urban population for the city of Fuzhou?", "context": "CREATE TABLE table_name_7 (urban_population__2010_ INTEGER, city VARCHAR)"}, {"answer": "SELECT SUM(area__km_2__) FROM table_name_67 WHERE name = \"theewaterskloof\" AND population__2011_ < 108 OFFSET 790", "question": "What is the area (in km2) for theewaterskloof, whose population in 2011 was less than 108,790?", "context": "CREATE TABLE table_name_67 (area__km_2__ INTEGER, name VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT MAX(area__km_2__) FROM table_name_28 WHERE density__inhabitants_km_2__ > 9.4 AND name = \"cape agulhas\" AND population__2011_ < 33 OFFSET 038", "question": "What is the area in km2 for Cape Agulhas, whose density is larger than 9.4 inhabitants/km2 and whose population in 2011 was less than 33,038?", "context": "CREATE TABLE table_name_28 (area__km_2__ INTEGER, population__2011_ VARCHAR, density__inhabitants_km_2__ VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE opponent = \"montreal canadiens\"", "question": "What was the score when the opponent was Montreal Canadiens?", "context": "CREATE TABLE table_name_8 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_40 WHERE december = 3", "question": "What was the record on December 3?", "context": "CREATE TABLE table_name_40 (record VARCHAR, december VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE game = 27", "question": "Who was the opponent in Game 27?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_2 WHERE game < 28 AND december = 1", "question": "Who was the opponent on December 1, before Game 28?", "context": "CREATE TABLE table_name_2 (opponent VARCHAR, game VARCHAR, december VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_name_73 WHERE official_name = \"durham\"", "question": "What's the population of durham parish?", "context": "CREATE TABLE table_name_73 (population VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT COUNT(area_km_2) FROM table_name_52 WHERE official_name = \"addington\"", "question": "What's the total area in kilometers of the parish addington?", "context": "CREATE TABLE table_name_52 (area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT studio FROM table_name_97 WHERE director = \"oliver stone\"", "question": "Which Studio has a Director of oliver stone?", "context": "CREATE TABLE table_name_97 (studio VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_22 WHERE rank = 12", "question": "Which Director has a Rank of 12?", "context": "CREATE TABLE table_name_22 (director VARCHAR, rank VARCHAR)"}, {"answer": "SELECT gross FROM table_name_25 WHERE studio = \"mgm\"", "question": "Which Gross has a Studio of mgm?", "context": "CREATE TABLE table_name_25 (gross VARCHAR, studio VARCHAR)"}, {"answer": "SELECT builder FROM table_name_92 WHERE works_number = \"323\"", "question": "Who was the Builder for the locomotive that has a works number of 323?", "context": "CREATE TABLE table_name_92 (builder VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT side FROM table_name_25 WHERE inscription = \"vischer\"", "question": "Which side has Vischer as the inscription?", "context": "CREATE TABLE table_name_25 (side VARCHAR, inscription VARCHAR)"}, {"answer": "SELECT inscription FROM table_name_26 WHERE identification = \"john vanbrugh\"", "question": "What is the inscription with John Vanbrugh listed as the identification?", "context": "CREATE TABLE table_name_26 (inscription VARCHAR, identification VARCHAR)"}, {"answer": "SELECT side FROM table_name_89 WHERE inscription = \"orcagna\"", "question": "Which side has Orcagna as the inscription?", "context": "CREATE TABLE table_name_89 (side VARCHAR, inscription VARCHAR)"}, {"answer": "SELECT group FROM table_name_91 WHERE official_history = \"david d'angers\"", "question": "Which group has David D'Angers as the official history?", "context": "CREATE TABLE table_name_91 (group VARCHAR, official_history VARCHAR)"}, {"answer": "SELECT inscription FROM table_name_57 WHERE identification = \"virgil\"", "question": "What is the name of the inscription where Virgil is listed as the identification?", "context": "CREATE TABLE table_name_57 (inscription VARCHAR, identification VARCHAR)"}, {"answer": "SELECT side FROM table_name_74 WHERE identification = \"ludovico carracci\"", "question": "Which side has Ludovico Carracci listed as the identification?", "context": "CREATE TABLE table_name_74 (side VARCHAR, identification VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_14 WHERE college = \"nebraska\" AND overall > 40", "question": "What is the sum number of round with Nebraska as the college and the overall greater than 40?", "context": "CREATE TABLE table_name_14 (round VARCHAR, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_87 WHERE overall > 328 AND name = \"pat shires\" AND round > 29", "question": "What is the minimum pick that drafted Pat Shires, with a round greater than 29 and an overall greater than 328?", "context": "CREATE TABLE table_name_87 (pick INTEGER, round VARCHAR, overall VARCHAR, name VARCHAR)"}, {"answer": "SELECT place FROM table_name_43 WHERE player = \"celestino tugot\"", "question": "Where did Celestino Tugot place?", "context": "CREATE TABLE table_name_43 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_1 WHERE player = \"doug ford\"", "question": "What is Doug Ford's country?", "context": "CREATE TABLE table_name_1 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_45 WHERE player = \"ben hogan\"", "question": "What was Ben Hogan's par?", "context": "CREATE TABLE table_name_45 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_10 WHERE player = \"tommy bolt\"", "question": "What is Tommy Bolt's place?", "context": "CREATE TABLE table_name_10 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_43 WHERE score < 74 AND to_par = \"e\"", "question": "What place had a score smaller than 74 and a par of e?", "context": "CREATE TABLE table_name_43 (place VARCHAR, score VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_94 WHERE rider = \"simone grotzkyj\"", "question": "What was the time/retired for the car raced by Simone Grotzkyj?", "context": "CREATE TABLE table_name_94 (time_retired VARCHAR, rider VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_79 WHERE time_retired = \"+0.122\"", "question": "Who was the manufacter of the car with a time/retired of +0.122?", "context": "CREATE TABLE table_name_79 (manufacturer VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_91 WHERE rider = \"bradley smith\"", "question": "Who is the manufacturer of the car driven by Bradley Smith?", "context": "CREATE TABLE table_name_91 (manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT rider FROM table_name_18 WHERE grid = \"14\"", "question": "Who is the driver of the car that started in grid 14?", "context": "CREATE TABLE table_name_18 (rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_5 WHERE manufacturer = \"ktm\" AND grid = \"1\"", "question": "Who is the driver of the car manufactured by ktm, who started in grid 1.", "context": "CREATE TABLE table_name_5 (rider VARCHAR, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_41 WHERE grid = \"4\"", "question": "What was the time/retired of the car that started in grid 4?", "context": "CREATE TABLE table_name_41 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_81 WHERE country = \"spain\"", "question": "What is the To par of the Player from Spain?", "context": "CREATE TABLE table_name_81 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_64 WHERE place = \"t4\" AND score = 71 - 66 - 74 - 67 = 278", "question": "What is the Money of the T4 Place Player with a Score of 71-66-74-67=278?", "context": "CREATE TABLE table_name_64 (money___ INTEGER, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_46 WHERE score = 71 - 66 - 74 - 67 = 278", "question": "What is the Money of the Player with a Score of 71-66-74-67=278?", "context": "CREATE TABLE table_name_46 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT iucn FROM table_name_96 WHERE est = 1998 AND reserve = \"gales point\"", "question": "What is the IUCN for the gales point reserve when the Est. is 1998?", "context": "CREATE TABLE table_name_96 (iucn VARCHAR, est VARCHAR, reserve VARCHAR)"}, {"answer": "SELECT iucn FROM table_name_98 WHERE est < 1998 AND reserve = \"cockscomb basin\"", "question": "What is the IUCN for the Cockscomb Basin reserve when the Est. is less than 1998?", "context": "CREATE TABLE table_name_98 (iucn VARCHAR, est VARCHAR, reserve VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_83 WHERE high_assists = \"rajon rondo (6)\"", "question": "What is the total number of Game, when High Assists is \"Rajon Rondo (6)\"?", "context": "CREATE TABLE table_name_83 (game VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT record FROM table_name_98 WHERE high_points = \"ray allen (20)\"", "question": "What is Record, when High Points is \"Ray Allen (20)\"?", "context": "CREATE TABLE table_name_98 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_name_90 WHERE high_points = \"ray allen (27)\"", "question": "What is Record, when High Points is \"Ray Allen (27)\"?", "context": "CREATE TABLE table_name_90 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT team FROM table_name_75 WHERE date = \"march 27\"", "question": "What is Team, when Date is \"March 27\"?", "context": "CREATE TABLE table_name_75 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_38 WHERE team = \"oklahoma city\"", "question": "What is High Assists, when Team is \"Oklahoma City\"?", "context": "CREATE TABLE table_name_38 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE high_assists = \"rajon rondo (12)\" AND high_points = \"paul pierce (27)\"", "question": "What is Score, when High Assists is \"Rajon Rondo (12)\", and when High Points is \"Paul Pierce (27)\"?", "context": "CREATE TABLE table_name_64 (score VARCHAR, high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT 2 AS _3__p_ FROM table_name_76 WHERE verb = \"kh\u00eala\"", "question": "WHICH 2/3 (P) has a Verb of kh\u00eala?", "context": "CREATE TABLE table_name_76 (verb VARCHAR)"}, {"answer": "SELECT cumulative_time__min_and_seconds_ FROM table_name_93 WHERE shuttle_time__seconds_ > 6 AND total_level_time__s_ = 64.8", "question": "What is the cumulative time (min and seconds) that has more than 6 seconds in shuttle time and a total level time of 64.8 seconds?", "context": "CREATE TABLE table_name_93 (cumulative_time__min_and_seconds_ VARCHAR, shuttle_time__seconds_ VARCHAR, total_level_time__s_ VARCHAR)"}, {"answer": "SELECT AVG(december) FROM table_name_79 WHERE game = 30", "question": "What is average December when game is 30?", "context": "CREATE TABLE table_name_79 (december INTEGER, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_55 WHERE game > 23 AND december > 8 AND record = \"8-10-7\"", "question": "Which opponent has a game larger than 23, December larger than 8, and record of 8-10-7?", "context": "CREATE TABLE table_name_55 (opponent VARCHAR, record VARCHAR, game VARCHAR, december VARCHAR)"}, {"answer": "SELECT COUNT(avg_g) FROM table_name_47 WHERE att_cmp_int = \"117\u2013215\u20136\"", "question": "What was the aveg/g for the qb with the Att-Cmp-Int of 117\u2013215\u20136?", "context": "CREATE TABLE table_name_47 (avg_g VARCHAR, att_cmp_int VARCHAR)"}, {"answer": "SELECT MIN(effic) FROM table_name_20 WHERE name = \"total\"", "question": "What was the total effic for the quarterbacks?", "context": "CREATE TABLE table_name_20 (effic INTEGER, name VARCHAR)"}, {"answer": "SELECT att_cmp_int FROM table_name_85 WHERE effic = 127.89", "question": "what was the att-cmp-int for the qb with an effic of 127.89?", "context": "CREATE TABLE table_name_85 (att_cmp_int VARCHAR, effic VARCHAR)"}, {"answer": "SELECT challenge_leader FROM table_name_42 WHERE time = \"9:30 pm\" AND date = \"wed., nov. 28\"", "question": "Who is the challenge leader that played on 9:30 pm on Wed., Nov. 28?", "context": "CREATE TABLE table_name_42 (challenge_leader VARCHAR, time VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_89 WHERE television = \"espnu\" AND time = \"7:15 pm\" AND date = \"tue., nov. 27\"", "question": "What is the location of the game that was televised on ESPNU at 7:15 pm on Tue., Nov. 27?", "context": "CREATE TABLE table_name_89 (location VARCHAR, date VARCHAR, television VARCHAR, time VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_83 WHERE opponent = \"lauren embree\"", "question": "In which tournament was the opponent Lauren Embree?", "context": "CREATE TABLE table_name_83 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE date = \"19/08/2012\"", "question": "What was the score on 19/08/2012?", "context": "CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_39 WHERE date = \"01/07/2007\"", "question": "What was the outcome of the match on 01/07/2007?", "context": "CREATE TABLE table_name_39 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT status FROM table_name_10 WHERE population = 10", "question": "What status has 10 as the population?", "context": "CREATE TABLE table_name_10 (status VARCHAR, population VARCHAR)"}, {"answer": "SELECT status FROM table_name_90 WHERE area_km_2 < 27.82 AND population = 352", "question": "What status has an area km 2 less than 27.82, with 352 as the population?", "context": "CREATE TABLE table_name_90 (status VARCHAR, area_km_2 VARCHAR, population VARCHAR)"}, {"answer": "SELECT status FROM table_name_22 WHERE area_km_2 > 10.9 AND census_ranking = \"4,674 of 5,008\"", "question": "What status has an area km 2 greater than 10.9, with 4,674 of 5,008 as the census ranking", "context": "CREATE TABLE table_name_22 (status VARCHAR, area_km_2 VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_50 WHERE official_name = \"big hole tract 8 (south)\" AND area_km_2 > 27.82", "question": "What is the lowest population that has Big Hole Tract 8 (south) as the official name, with an area km 2 greater than 27.82?", "context": "CREATE TABLE table_name_50 (population INTEGER, official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT MAX(up) AS :down_ratio FROM table_name_72 WHERE upstream = \"4 mbit/s\"", "question": "What is the highest up:down ratio with 4 mbit/s upstream?", "context": "CREATE TABLE table_name_72 (up INTEGER, upstream VARCHAR)"}, {"answer": "SELECT upstream FROM table_name_68 WHERE monthly_cap = \"150 gb\"", "question": "What is the upstream with a 150 gb monthly cap?", "context": "CREATE TABLE table_name_68 (upstream VARCHAR, monthly_cap VARCHAR)"}, {"answer": "SELECT location FROM table_name_31 WHERE score = \"3\u20132\" AND record = \"3\u20132\u20133\"", "question": "Which location has a Score of 3\u20132, and a Record of 3\u20132\u20133?", "context": "CREATE TABLE table_name_31 (location VARCHAR, score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE date = \"october 29, 2008\"", "question": "Which score has a Date of october 29, 2008?", "context": "CREATE TABLE table_name_70 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_43 WHERE course = \"sunset ridge cc\"", "question": "What is the year when the course is sunset ridge cc?", "context": "CREATE TABLE table_name_43 (year INTEGER, course VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE location = \"olympia fields, illinois\"", "question": "what is the score at Olympia fields, illinois?", "context": "CREATE TABLE table_name_80 (score VARCHAR, location VARCHAR)"}, {"answer": "SELECT course FROM table_name_98 WHERE year < 1934 AND location = \"midlothian, illinois\"", "question": "what is the course at midlothian, illinois for a year before 1934?", "context": "CREATE TABLE table_name_98 (course VARCHAR, year VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_76 WHERE runner_s__up = \"betsy rawls\"", "question": "Where is runner-up Betsy Rawls from?", "context": "CREATE TABLE table_name_76 (location VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT venue FROM table_name_17 WHERE date = \"november 14, 2007\"", "question": "What was the Venue on November 14, 2007?", "context": "CREATE TABLE table_name_17 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE date = \"november 10, 2007\"", "question": "What was the Score on November 10, 2007?", "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_64 WHERE date = \"november 16, 2007\"", "question": "What was the Competition on November 16, 2007?", "context": "CREATE TABLE table_name_64 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_3 WHERE opponent = \"richard fromberg\"", "question": "What was the surface tye during the match with the opponent of richard fromberg?", "context": "CREATE TABLE table_name_3 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT championship FROM table_name_8 WHERE opponent = \"richard fromberg\"", "question": "What was the championship during the match with the opponent of richard fromberg?", "context": "CREATE TABLE table_name_8 (championship VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_54 WHERE score = \"6\u20134, 7\u20136 (7-5)\"", "question": "What was the surface type during the match with the score of 6\u20134, 7\u20136 (7-5)??", "context": "CREATE TABLE table_name_54 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE round < 3 AND time = \"1:02\"", "question": "Who did wilson reis fight against that lasted less than 3 rounds with a time of 1:02?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT meet FROM table_name_95 WHERE time = \"3:50.65\"", "question": "Which Meet has a Time of 3:50.65?", "context": "CREATE TABLE table_name_95 (meet VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_7 WHERE event = \"200 m butterfly\"", "question": "Which Time has an Event of 200 m butterfly?", "context": "CREATE TABLE table_name_7 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT meet FROM table_name_67 WHERE club = \"centro de natacon carabobo\"", "question": "Which Meet has a Club of centro de natacon carabobo?", "context": "CREATE TABLE table_name_67 (meet VARCHAR, club VARCHAR)"}, {"answer": "SELECT location FROM table_name_83 WHERE time = \"4:13.48\"", "question": "Which Location has a Time of 4:13.48?", "context": "CREATE TABLE table_name_83 (location VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE time = \"1:00.59\"", "question": "Which Date has a Time of 1:00.59?", "context": "CREATE TABLE table_name_90 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_96 WHERE club = \"delfines ucv\"", "question": "Which Location has a Club of delfines ucv?", "context": "CREATE TABLE table_name_96 (location VARCHAR, club VARCHAR)"}, {"answer": "SELECT name FROM table_name_13 WHERE sport = \"tennis\" AND notes = \"b\"", "question": "Which name has notes b and the game of tennis?", "context": "CREATE TABLE table_name_13 (name VARCHAR, sport VARCHAR, notes VARCHAR)"}, {"answer": "SELECT lifetime FROM table_name_3 WHERE name = \"alan gendreau\"", "question": "Which lifetime has alan gendreau?", "context": "CREATE TABLE table_name_3 (lifetime VARCHAR, name VARCHAR)"}, {"answer": "SELECT hometown_highschool FROM table_name_81 WHERE weight = 170 AND name = \"tyler wilson\"", "question": "What was the hometown/high school of 170 pound player tyler wilson?", "context": "CREATE TABLE table_name_81 (hometown_highschool VARCHAR, weight VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_41 WHERE name = \"kyle mckenzie\"", "question": "What position did kyle mckenzie play?", "context": "CREATE TABLE table_name_41 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE week > 5 AND attendance = \"54,803\"", "question": "Which date has a Week larger than 5, and an Attendance of 54,803?", "context": "CREATE TABLE table_name_6 (date VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE week < 14 AND opponent = \"san francisco 49ers\"", "question": "Which date  has a Week smaller than 14, and an Opponent of san francisco 49ers?", "context": "CREATE TABLE table_name_92 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_48 WHERE week < 15 AND result = \"l 23-17\"", "question": "Which opponent has a week smaller than 15, and a Result of l 23-17?", "context": "CREATE TABLE table_name_48 (opponent VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE opponent = \"bye\"", "question": "Which date has an Opponent of bye?", "context": "CREATE TABLE table_name_78 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE result = \"l 25-13\"", "question": "Which date has a Result of l 25-13?", "context": "CREATE TABLE table_name_18 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT capital FROM table_name_53 WHERE area__km\u00b2_ = 2166086", "question": "What capital has an area of 2166086?", "context": "CREATE TABLE table_name_53 (capital VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT pinyin FROM table_name_44 WHERE county = \"changhua\"", "question": "Which Pinyin has a County of changhua?", "context": "CREATE TABLE table_name_44 (pinyin VARCHAR, county VARCHAR)"}, {"answer": "SELECT county FROM table_name_2 WHERE chinese = \"\u65b0\u7af9\"", "question": "Which County has a Chinese of \u65b0\u7af9?", "context": "CREATE TABLE table_name_2 (county VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT pinyin FROM table_name_89 WHERE chinese = \"\u81fa\u5357\"", "question": "Which Pinyin has a Chinese of \u81fa\u5357?", "context": "CREATE TABLE table_name_89 (pinyin VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT county FROM table_name_61 WHERE city = \"changhua\"", "question": "Which County has a City of changhua?", "context": "CREATE TABLE table_name_61 (county VARCHAR, city VARCHAR)"}, {"answer": "SELECT MIN(population__2010_) FROM table_name_99 WHERE city = \"taipei\"", "question": "What is taipei's lowest 2010 population?", "context": "CREATE TABLE table_name_99 (population__2010_ INTEGER, city VARCHAR)"}, {"answer": "SELECT record FROM table_name_75 WHERE round = \"3\" AND opponent = \"danny suarez\"", "question": "What was Diego Saraiva's record when he fought for 3 rounds against danny suarez?", "context": "CREATE TABLE table_name_75 (record VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_98 WHERE opponent = \"jorge gurgel\"", "question": "What event did Diego Saraiva fight jorge gurgel?", "context": "CREATE TABLE table_name_98 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_24 WHERE opponent = \"montreal canadiens\"", "question": "How many games had Montreal Canadiens as an opponent?", "context": "CREATE TABLE table_name_24 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_61 WHERE method = \"tko\"", "question": "What was the time when the method was TKO?", "context": "CREATE TABLE table_name_61 (time VARCHAR, method VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_74 WHERE record = \"4-0\"", "question": "How many rounds was the fight when the record was 4-0?", "context": "CREATE TABLE table_name_74 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_30 WHERE round > 2", "question": "Who was the opponent when the round was more than 2?", "context": "CREATE TABLE table_name_30 (opponent VARCHAR, round INTEGER)"}, {"answer": "SELECT AVG(game) FROM table_name_30 WHERE team = \"@ boston\"", "question": "Can you tell me the average Game that has the Team of @ boston?", "context": "CREATE TABLE table_name_30 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_77 WHERE date = \"march 17\"", "question": "Can you tell me the Team that has the Date of march 17?", "context": "CREATE TABLE table_name_77 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_85 WHERE opponent = \"carlton jones\"", "question": "What is the record with the opponent as Carlton Jones?", "context": "CREATE TABLE table_name_85 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT _percentage_of_votes FROM table_name_88 WHERE party = \"family rights\"", "question": "What is the percentage of votes received by the party of family rights?", "context": "CREATE TABLE table_name_88 (_percentage_of_votes VARCHAR, party VARCHAR)"}, {"answer": "SELECT _percentage_of_seats FROM table_name_86 WHERE difference = \"0.25\"", "question": "What is the % of seats where the difference is 0.25?", "context": "CREATE TABLE table_name_86 (_percentage_of_seats VARCHAR, difference VARCHAR)"}, {"answer": "SELECT _percentage_of_seats FROM table_name_92 WHERE difference = \"0.19\"", "question": "What is the % of seats where the difference is 0.19?", "context": "CREATE TABLE table_name_92 (_percentage_of_seats VARCHAR, difference VARCHAR)"}, {"answer": "SELECT no_8 FROM table_name_51 WHERE no_10 = \"jackson\" AND no_5 = \"mason\"", "question": "Who was No. 8 when No. 10 Jackson and No. 5 Mason?", "context": "CREATE TABLE table_name_51 (no_8 VARCHAR, no_10 VARCHAR, no_5 VARCHAR)"}, {"answer": "SELECT no_5 FROM table_name_17 WHERE no_6 = \"mason\" AND no_10 = \"jackson\"", "question": "Who was No. 5 when No. 6 Mason and No. 10 Jackson?", "context": "CREATE TABLE table_name_17 (no_5 VARCHAR, no_6 VARCHAR, no_10 VARCHAR)"}, {"answer": "SELECT no_8 FROM table_name_48 WHERE no_1 = \"michael\" AND no_4 = \"logan\"", "question": "Who was No. 8 when No. 1 Michael and No. 4 Logan?", "context": "CREATE TABLE table_name_48 (no_8 VARCHAR, no_1 VARCHAR, no_4 VARCHAR)"}, {"answer": "SELECT no_9 FROM table_name_65 WHERE no_5 = \"mason\" AND no_3 = \"aiden\"", "question": "Who was No. 9 when No. 5 Mason and No. 3 Aiden?", "context": "CREATE TABLE table_name_65 (no_9 VARCHAR, no_5 VARCHAR, no_3 VARCHAR)"}, {"answer": "SELECT no_3 FROM table_name_35 WHERE no_5 = \"james\" AND no_6 = \"mason\"", "question": "Who was No. 3 when No. 5 James and No. 6 Mason?", "context": "CREATE TABLE table_name_35 (no_3 VARCHAR, no_5 VARCHAR, no_6 VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_18 WHERE manufacturer = \"ford\" AND finish < 37", "question": "Smaller than 37, the highest year for Ford?", "context": "CREATE TABLE table_name_18 (year INTEGER, manufacturer VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MIN(finish) FROM table_name_13 WHERE team = \"ganassi\" AND start < 19 AND year < 2004", "question": "Lowest finish for ganassi at smaller than 19 start for smaller than 2004 year?", "context": "CREATE TABLE table_name_13 (finish INTEGER, year VARCHAR, team VARCHAR, start VARCHAR)"}, {"answer": "SELECT method FROM table_name_49 WHERE event = \"reality submission fighting 2\"", "question": "What is Method, when Event is \"Reality Submission Fighting 2\"?", "context": "CREATE TABLE table_name_49 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT AVG(votes) FROM table_name_15 WHERE governorate = \"hewler\"", "question": "Which Votes has a Governorate of hewler?", "context": "CREATE TABLE table_name_15 (votes INTEGER, governorate VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_69 WHERE wins < 3 AND points > 5", "question": "What is the average draws with less than 3 wins and more than 5 points?", "context": "CREATE TABLE table_name_69 (draws INTEGER, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_81 WHERE points > 9 AND goals_against < 14 AND goal_difference < 17", "question": "What is the average number of goals with more than 9 points, less than 14 goals against, and a goal difference less than 17?", "context": "CREATE TABLE table_name_81 (goals_for INTEGER, goal_difference VARCHAR, points VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_76 WHERE goals_against < 10", "question": "What is the average number of wins with less than 10 goals?", "context": "CREATE TABLE table_name_76 (wins INTEGER, goals_against INTEGER)"}, {"answer": "SELECT MIN(position) FROM table_name_51 WHERE goal_difference = -22 AND points > 5", "question": "What is the lowest position with a -22 goal difference and more than 5 points?", "context": "CREATE TABLE table_name_51 (position INTEGER, goal_difference VARCHAR, points VARCHAR)"}, {"answer": "SELECT title FROM table_name_79 WHERE composer_s_ = \"sakdatorn\" AND arranger_s_ = \"jitrakorn mongkoltham\"", "question": "What is the Title, when the Composer(s) is Sakdatorn, and when the Arranger(s) is Jitrakorn Mongkoltham?", "context": "CREATE TABLE table_name_79 (title VARCHAR, composer_s_ VARCHAR, arranger_s_ VARCHAR)"}, {"answer": "SELECT title FROM table_name_69 WHERE lyricist_s_ = \"yarosake\" AND composer_s_ = \"yarosake\"", "question": "What is the Title, when the Lyricist(s) is Yarosake, and when the Composer(s) is Yarosake?", "context": "CREATE TABLE table_name_69 (title VARCHAR, lyricist_s_ VARCHAR, composer_s_ VARCHAR)"}, {"answer": "SELECT length FROM table_name_4 WHERE composer_s_ = \"sakdatorn\" AND arranger_s_ = \"jitrakorn mongkoltham\"", "question": "What is the Length, when the Composer(s) is Sakdatorn, and when the Arranger(s) is Jitrakorn Mongkoltham?", "context": "CREATE TABLE table_name_4 (length VARCHAR, composer_s_ VARCHAR, arranger_s_ VARCHAR)"}, {"answer": "SELECT composer_s_ FROM table_name_44 WHERE arranger_s_ = \"banana boat\" AND length = \"4:25\"", "question": "Who is/are the Composer(s), when the Arranger(s) is Banana Boat, and when the Length is 4:25?", "context": "CREATE TABLE table_name_44 (composer_s_ VARCHAR, arranger_s_ VARCHAR, length VARCHAR)"}, {"answer": "SELECT composer_s_ FROM table_name_96 WHERE arranger_s_ = \"banana boat\" AND length = \"4:25\"", "question": "Who is/are the Composer(s), when the Arranger(s) is Banana Boat, and when the Length is 4:25?", "context": "CREATE TABLE table_name_96 (composer_s_ VARCHAR, arranger_s_ VARCHAR, length VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_78 WHERE lost = \"12\"", "question": "What i the try bonus with 12 losses?", "context": "CREATE TABLE table_name_78 (try_bonus VARCHAR, lost VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_89 WHERE played = \"20\" AND points_for = \"353\"", "question": "What was the losing bonus for the 20 played, and 353 points?", "context": "CREATE TABLE table_name_89 (losing_bonus VARCHAR, played VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT played FROM table_name_55 WHERE tries_for = \"38\"", "question": "What was the played with 38 tries?", "context": "CREATE TABLE table_name_55 (played VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_58 WHERE \"club\" = \"club\"", "question": "What are the tries for a club of a club?", "context": "CREATE TABLE table_name_58 (tries_for VARCHAR)"}, {"answer": "SELECT lost FROM table_name_66 WHERE points_for = \"319\"", "question": "What is the loss with 319 points?", "context": "CREATE TABLE table_name_66 (lost VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_23 WHERE winner = \"sarah brice\"", "question": "Who was the runner(s)-Up to winner Sarah Brice?", "context": "CREATE TABLE table_name_23 (runner_s__up VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_19 WHERE bachelor = \"byron velvick\"", "question": "What season had bachelor Byron Velvick?", "context": "CREATE TABLE table_name_19 (season INTEGER, bachelor VARCHAR)"}, {"answer": "SELECT SUM(season) FROM table_name_34 WHERE runner_s__up = \"tenley molzahn\"", "question": "What was the season that the runner -up was Tenley Molzahn?", "context": "CREATE TABLE table_name_34 (season INTEGER, runner_s__up VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_50 WHERE premiered = \"march 25, 2002\"", "question": "Who was the runner-up for the show that premiered on March 25, 2002?", "context": "CREATE TABLE table_name_50 (runner_s__up VARCHAR, premiered VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_28 WHERE date = \"february 25\"", "question": "Who was the leading scorer on the game played on February 25?", "context": "CREATE TABLE table_name_28 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_82 WHERE record = \"26-18\"", "question": "What was the visiting team that had a record of 26-18?", "context": "CREATE TABLE table_name_82 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_26 WHERE home = \"cleveland\" AND visitor = \"orlando\"", "question": "What was the score for the game played between Cleveland and Orlando at Cleveland?", "context": "CREATE TABLE table_name_26 (score VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_51 WHERE score = \"82-75\"", "question": "What was the visiting team for the game that ended 82-75?", "context": "CREATE TABLE table_name_51 (visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_95 WHERE tournament = \"montreal\"", "question": "who were the semifinalists for the tournament in montreal?", "context": "CREATE TABLE table_name_95 (semifinalists VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_14 WHERE tournament = \"berlin\"", "question": "Who was the finalist for the tournament in berlin?", "context": "CREATE TABLE table_name_14 (finalist VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_16 WHERE tournament = \"berlin\"", "question": "What type of surface was played at the tournament in berlin?", "context": "CREATE TABLE table_name_16 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_60 WHERE surface = \"hard\" AND finalist = \"monica seles\"", "question": "Where was the tournament where monica seles was the finalist who played on a hard surface?", "context": "CREATE TABLE table_name_60 (tournament VARCHAR, surface VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_61 WHERE home_team = \"hartlepools united\"", "question": "Who is the away team against the home team Hartlepools United?", "context": "CREATE TABLE table_name_61 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_76 WHERE home_team = \"ashington\"", "question": "Who is the away team against the home team Ashington?", "context": "CREATE TABLE table_name_76 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE away_team = \"ipswich town\"", "question": "What is the score for the away team, Ipswich Town?", "context": "CREATE TABLE table_name_6 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE away_team = \"mansfield town\"", "question": "What date did the away team Mansfield Town play?", "context": "CREATE TABLE table_name_56 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE away_team = \"dartford\"", "question": "What was the score fore the away team Dartford?", "context": "CREATE TABLE table_name_88 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE away_team = \"bristol rovers\"", "question": "What date did the away team Bristol Rovers play?", "context": "CREATE TABLE table_name_63 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT brigade FROM table_name_10 WHERE type = \"rural\" AND tankers = 1", "question": "What is the Brigade, when the Type is Rural, and when the value for Tankers is 1?", "context": "CREATE TABLE table_name_10 (brigade VARCHAR, type VARCHAR, tankers VARCHAR)"}, {"answer": "SELECT hazmat FROM table_name_98 WHERE type = \"rural\" AND tankers = 1", "question": "What is the Hazmat, when the Type is Rural, and when the number of Tankers is 1?", "context": "CREATE TABLE table_name_98 (hazmat VARCHAR, type VARCHAR, tankers VARCHAR)"}, {"answer": "SELECT country FROM table_name_15 WHERE first_store = \"2007\"", "question": "Which country had the first store in the year 2007?", "context": "CREATE TABLE table_name_15 (country VARCHAR, first_store VARCHAR)"}, {"answer": "SELECT first_store FROM table_name_2 WHERE hypermarkets = 3", "question": "What year was the first store that had a hypermarket of 3?", "context": "CREATE TABLE table_name_2 (first_store VARCHAR, hypermarkets VARCHAR)"}, {"answer": "SELECT first_store FROM table_name_20 WHERE country = \"india\"", "question": "What year was the first store in India?", "context": "CREATE TABLE table_name_20 (first_store VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_85 WHERE opponent = \"dunfermline athletic\"", "question": "Can you tell me the average Attendance rhat has the Opponent of dunfermline athletic?", "context": "CREATE TABLE table_name_85 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_10 WHERE scorers = \"steven, johnston, walters, mccoist, i.ferguson\"", "question": "Can you tell me the average Attendance that has the Scorers of steven, johnston, walters, mccoist, i.ferguson?", "context": "CREATE TABLE table_name_10 (attendance INTEGER, scorers VARCHAR)"}, {"answer": "SELECT number FROM table_name_46 WHERE points < 32 AND steals = 0", "question": "What number has 0 steals and less than 32 points?", "context": "CREATE TABLE table_name_46 (number VARCHAR, points VARCHAR, steals VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE set_3 = \"21\u201325\"", "question": "What was the overall score when the score for set 3 is 21\u201325?", "context": "CREATE TABLE table_name_55 (score VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_92 WHERE total = \"85\u2013101\"", "question": "What is the set 1 score when the total is 85\u2013101?", "context": "CREATE TABLE table_name_92 (set_1 VARCHAR, total VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE set_3 = \"22\u201325\"", "question": "On what date was the score for set 3 22\u201325?", "context": "CREATE TABLE table_name_32 (date VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE set_2 = \"25\u201318\"", "question": "What is the overall score when the set 2 score is 25\u201318?", "context": "CREATE TABLE table_name_57 (score VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_10 WHERE set_3 = \"22\u201325\"", "question": "What is the score for set 1 when the score for set 3 is 22\u201325?", "context": "CREATE TABLE table_name_10 (set_1 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT player FROM table_name_11 WHERE score = 70 - 69 - 75 = 214", "question": "What Player had a Score of 70-69-75=214?", "context": "CREATE TABLE table_name_11 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE to_par = \"+4\" AND player = \"andy bean\"", "question": "With a To par of +4, what is Andy Bean's Score?", "context": "CREATE TABLE table_name_21 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_33 WHERE place = \"t5\" AND score = 71 - 68 - 76 = 215", "question": "What is the To par of the T5 Place Player with a Score of 71-68-76=215?", "context": "CREATE TABLE table_name_33 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_67 WHERE to_par = \"+4\" AND score = 70 - 76 - 71 = 217", "question": "What is the Place of the Player with a To par of +4 and Score of 70-76-71=217?", "context": "CREATE TABLE table_name_67 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE place = \"t3\"", "question": "What is the Score of the T3 Place Player?", "context": "CREATE TABLE table_name_33 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_35 WHERE to_par = \"\u20131\"", "question": "What is the Country of the Player with a To par of \u20131?", "context": "CREATE TABLE table_name_35 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_77 WHERE host = \"luxembourg\"", "question": "In what year was Luxembourg Host?", "context": "CREATE TABLE table_name_77 (year INTEGER, host VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_67 WHERE silver = \"iceland\"", "question": "When Iceland gets the Silver, who gets the Bronze?", "context": "CREATE TABLE table_name_67 (bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_76 WHERE gold = 0 AND bronze < 4 AND total = 2 AND silver > 1", "question": "What is the maximum rank when there is 0 gold, and the bronze is less than 4, and the silver is greater than 1, and 2 as the total?", "context": "CREATE TABLE table_name_76 (rank INTEGER, silver VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_41 WHERE rank = 14 AND total > 1", "question": "Rank 14 with a total greater than 1 has what as the average bronze?", "context": "CREATE TABLE table_name_41 (bronze INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_53 WHERE silver < 2 AND gold = 3 AND bronze < 0", "question": "How many medals under total when silver is less than 2, gold is 3, and bronze is less than 0?", "context": "CREATE TABLE table_name_53 (total INTEGER, bronze VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_16 WHERE silver = 0 AND gold < 1 AND rank < 13", "question": "What is the fewest total when silver is 0, and gold is less than 1, and rank is less than 13?", "context": "CREATE TABLE table_name_16 (total INTEGER, rank VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_18 WHERE total < 5 AND bronze < 0", "question": "What is the total rank where the total is less than 5, and bronze is less than 0?", "context": "CREATE TABLE table_name_18 (rank VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT place FROM table_name_86 WHERE country = \"zimbabwe\"", "question": "What place was the player hailing from Zimbabwe in?", "context": "CREATE TABLE table_name_86 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE player = \"bernhard langer\"", "question": "What was the score of Bernhard Langer after 3 rounds?", "context": "CREATE TABLE table_name_88 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_62 WHERE pct__percentage < 0.519 AND points > 65", "question": "How many Goals for were recorded when there was a percentage smaller than 0.519 and points greater than 65?", "context": "CREATE TABLE table_name_62 (goals_for VARCHAR, pct__percentage VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_34 WHERE goals_for = 215", "question": "How many games were recorded with Goals for number of 215?", "context": "CREATE TABLE table_name_34 (games VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_29 WHERE player = \"jack nicklaus\"", "question": "what is the to par when the player is jack nicklaus?", "context": "CREATE TABLE table_name_29 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(money___) AS $__ FROM table_name_81 WHERE place = \"t2\" AND player = \"johnny miller\"", "question": "what is the lowest money ($) when the place is t2 for player johnny miller?", "context": "CREATE TABLE table_name_81 (money___ INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_56 WHERE score = 69 - 70 - 72 - 72 = 283", "question": "what is the to par when the score is 69-70-72-72=283?", "context": "CREATE TABLE table_name_56 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_50 WHERE result = \"3-2\"", "question": "What was the venue when the result was 3-2?", "context": "CREATE TABLE table_name_50 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_8 WHERE score = \"3-0\" AND result = \"4-1\"", "question": "What competition had a score of 3-0, and a result of 4-1?", "context": "CREATE TABLE table_name_8 (competition VARCHAR, score VARCHAR, result VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_28 WHERE away_team = \"altrincham\"", "question": "Which Tie no that has an Away team of altrincham?", "context": "CREATE TABLE table_name_28 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE score = \"0\u20131\" AND tie_no = \"3\"", "question": "When has a Score of 0\u20131, and a Tie no of 3?", "context": "CREATE TABLE table_name_12 (date VARCHAR, score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE tie_no = \"15\"", "question": "When has a Tie no of 15?", "context": "CREATE TABLE table_name_17 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_93 WHERE tie_no = \"replay\" AND score = \"2\u20130\"", "question": "Which Away has a Tie no of replay, and a Score of 2\u20130?", "context": "CREATE TABLE table_name_93 (away_team VARCHAR, tie_no VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE date = \"17 december 1979\"", "question": "Name the Score on 17 december 1979?", "context": "CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE home_team = \"tranmere rovers\"", "question": "Name the Home team of tranmere rovers?", "context": "CREATE TABLE table_name_14 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT area_km_2 FROM table_name_49 WHERE census_ranking = \"2,290 of 5,008\"", "question": "what is the area when the census ranking is 2,290 of 5,008?", "context": "CREATE TABLE table_name_49 (area_km_2 VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT population FROM table_name_93 WHERE area_km_2 = 173.4", "question": "What is the population when the area km2 is 173.4?", "context": "CREATE TABLE table_name_93 (population VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_name_32 WHERE area_km_2 = 173.4", "question": "what is the census ranking when the area km 2 is 173.4?", "context": "CREATE TABLE table_name_32 (census_ranking VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT france FROM table_name_37 WHERE _percentage_people_under_18__2005_ = \"sub-saharan africa\"", "question": "WHAT IS THE FRANCE WITH PEOPLE UNDER 18 OF SUB-SAHARAN AFRICA?", "context": "CREATE TABLE table_name_37 (france VARCHAR, _percentage_people_under_18__2005_ VARCHAR)"}, {"answer": "SELECT paris FROM table_name_71 WHERE france = \"1.4%\"", "question": "WHAT IS THE PARIS WITH A FRANCE OF 1.4%?", "context": "CREATE TABLE table_name_71 (paris VARCHAR, france VARCHAR)"}, {"answer": "SELECT val_de_marne FROM table_name_18 WHERE seine_saint_denis = \"2.7%\"", "question": "WHAT IS THE VAL-DE-MARNE WITH A Seine-Saint-Denis of 2.7%?", "context": "CREATE TABLE table_name_18 (val_de_marne VARCHAR, seine_saint_denis VARCHAR)"}, {"answer": "SELECT seine_saint_denis FROM table_name_90 WHERE paris = \"12.1%\"", "question": "WHAT IS A Seine-Saint-Denis WITH A PARIS OF 12.1%?", "context": "CREATE TABLE table_name_90 (seine_saint_denis VARCHAR, paris VARCHAR)"}, {"answer": "SELECT val_de_marne FROM table_name_52 WHERE seine_saint_denis = \"4.0%\"", "question": "WHAT IS Val-de-Marne WITH Seine-Saint-Denis of 4.0%?", "context": "CREATE TABLE table_name_52 (val_de_marne VARCHAR, seine_saint_denis VARCHAR)"}, {"answer": "SELECT score FROM table_name_87 WHERE tournament = \"canada f7, toronto\"", "question": "What was the score for the match at the tournament in canada f7, toronto?", "context": "CREATE TABLE table_name_87 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_85 WHERE surface = \"hard\" AND date = \"july 13, 2008\"", "question": "Who were the opponents that played on a hard surface on July 13, 2008?", "context": "CREATE TABLE table_name_85 (opponents VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_7 WHERE score = \"2\u20136, 6\u20131, [10\u20135]\"", "question": "What type of surface was played on when the score was 2\u20136, 6\u20131, [10\u20135]?", "context": "CREATE TABLE table_name_7 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_31 WHERE date = \"july 27, 2013\"", "question": "What type of surface was played on July 27, 2013?", "context": "CREATE TABLE table_name_31 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT party FROM table_name_85 WHERE member = \"peter howson\"", "question": "What party was the member peter howson part of?", "context": "CREATE TABLE table_name_85 (party VARCHAR, member VARCHAR)"}, {"answer": "SELECT electorate FROM table_name_61 WHERE member = \"rex connor\"", "question": "Who was the electorate when the member was rex connor?", "context": "CREATE TABLE table_name_61 (electorate VARCHAR, member VARCHAR)"}, {"answer": "SELECT term_of_office FROM table_name_1 WHERE member = \"noel beaton\"", "question": "What was the term of office for noel beaton?", "context": "CREATE TABLE table_name_1 (term_of_office VARCHAR, member VARCHAR)"}, {"answer": "SELECT term_of_office FROM table_name_1 WHERE electorate = \"warringah\"", "question": "What was the term of office for the electorate warringah?", "context": "CREATE TABLE table_name_1 (term_of_office VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_20 WHERE location = \"td banknorth garden\" AND game > 31", "question": "What is the total number of people in attendance when the game was at TD Banknorth Garden, in a game higher than 31?", "context": "CREATE TABLE table_name_20 (attendance VARCHAR, location VARCHAR, game VARCHAR)"}, {"answer": "SELECT state FROM table_name_13 WHERE owner = \"wesson\"", "question": "What state is Wesson in?", "context": "CREATE TABLE table_name_13 (state VARCHAR, owner VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_31 WHERE position = \"rw\" AND player = \"don murdoch\"", "question": "What is the College/Junior/Club Team (League) when the position is rw, and the player is Don Murdoch?", "context": "CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_68 WHERE round < 2", "question": "What is the position when the round is less than 2?", "context": "CREATE TABLE table_name_68 (position VARCHAR, round INTEGER)"}, {"answer": "SELECT nationality FROM table_name_33 WHERE player = \"claude periard\"", "question": "What is the nationality when Claude Periard is the player?", "context": "CREATE TABLE table_name_33 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_68 WHERE player = \"claude periard\"", "question": "What is the lowest round for the player Claude Periard?", "context": "CREATE TABLE table_name_68 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT died FROM table_name_98 WHERE spouse_to = \"talal i\"", "question": "When did the consort who had talal i as a spouse die?", "context": "CREATE TABLE table_name_98 (died VARCHAR, spouse_to VARCHAR)"}, {"answer": "SELECT spouse_to FROM table_name_27 WHERE born_as = \"rania al yassin\"", "question": "Who was the spouse of the consort who was born as rania al yassin?", "context": "CREATE TABLE table_name_27 (spouse_to VARCHAR, born_as VARCHAR)"}, {"answer": "SELECT round FROM table_name_74 WHERE overall < 102", "question": "When the Overall is under 102, what's the round played?", "context": "CREATE TABLE table_name_74 (round VARCHAR, overall INTEGER)"}, {"answer": "SELECT MAX(week) FROM table_name_66 WHERE date = \"november 8, 1970\"", "question": "What is the highest Week, when Date is \"November 8, 1970\"?", "context": "CREATE TABLE table_name_66 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_69 WHERE date = \"december 20, 1970\" AND week < 14", "question": "What is the lowest Attendance, when Date is \"December 20, 1970\", and when Week is less than 14?", "context": "CREATE TABLE table_name_69 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_70 WHERE week = 5", "question": "What is Opponent, when Week is \"5\"?", "context": "CREATE TABLE table_name_70 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT place FROM table_name_30 WHERE score = 68", "question": "What is the place with the 68 score?", "context": "CREATE TABLE table_name_30 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT voltage FROM table_name_92 WHERE release_date = \"june 2001\" AND frequency = \"1.13ghz\"", "question": "what is the voltage when release date is june 2001 and frequency is 1.13ghz?", "context": "CREATE TABLE table_name_92 (voltage VARCHAR, release_date VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_name_71 WHERE l2_cache = \"512 kb\" AND release_date = \"june 2001\" AND sspec_number = \"sl5lv, sl5pu, sl6bw, sl6jm\"", "question": "what is the part number(s) when l2 cache is 512 kb, release date is june 2001 and sSpec number is sl5lv, sl5pu, sl6bw, sl6jm?", "context": "CREATE TABLE table_name_71 (part_number_s_ VARCHAR, sspec_number VARCHAR, l2_cache VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_94 WHERE part_number_s_ = \"rk80530pz014256\"", "question": "What is the L2 Cache when the Part Number(s) is rk80530pz014256?", "context": "CREATE TABLE table_name_94 (l2_cache VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_96 WHERE sspec_number = \"sl5xl, sl657, sl6by, sl6jp\"", "question": "What is the Release Date when sSpec Number is sl5xl, sl657, sl6by, sl6jp?", "context": "CREATE TABLE table_name_96 (release_date VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT socket FROM table_name_5 WHERE part_number_s_ = \"rk80530pz001256\"", "question": "What is the Socket when the Part Number(s) is rk80530pz001256?", "context": "CREATE TABLE table_name_5 (socket VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_9 WHERE surface = \"hard (i)\"", "question": "what is the semifinalists when the surface is hard (i)?", "context": "CREATE TABLE table_name_9 (semifinalists VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_76 WHERE winner_and_score = \"gustavo kuerten 6-4, 7-5, 7-6(6)\"", "question": "what is the surface when the winner and score is gustavo kuerten 6-4, 7-5, 7-6(6)?", "context": "CREATE TABLE table_name_76 (surface VARCHAR, winner_and_score VARCHAR)"}, {"answer": "SELECT winner_and_score FROM table_name_6 WHERE week = \"august 9\"", "question": "who is the winner and score for the week of august 9?", "context": "CREATE TABLE table_name_6 (winner_and_score VARCHAR, week VARCHAR)"}, {"answer": "SELECT surface FROM table_name_51 WHERE week = \"october 25\"", "question": "what is the surface for the week of october 25?", "context": "CREATE TABLE table_name_51 (surface VARCHAR, week VARCHAR)"}, {"answer": "SELECT winner_and_score FROM table_name_28 WHERE finalist = \"s\u00e9bastien grosjean\"", "question": "who is the winner and score for finalist s\u00e9bastien grosjean?", "context": "CREATE TABLE table_name_28 (winner_and_score VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT week FROM table_name_16 WHERE finalist = \"marcelo r\u00edos\"", "question": "what is the week when the finalist is marcelo r\u00edos?", "context": "CREATE TABLE table_name_16 (week VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT nation FROM table_name_50 WHERE name = \"chris witty\"", "question": "What country did Chris Witty represent?", "context": "CREATE TABLE table_name_50 (nation VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE games = \"2002 salt lake city\" AND time = \"3:57.70\"", "question": "On what day was the record set at the 2002 Salt Lake City games with a time of 3:57.70?", "context": "CREATE TABLE table_name_49 (date VARCHAR, games VARCHAR, time VARCHAR)"}, {"answer": "SELECT name FROM table_name_14 WHERE event = \"500 metres\"", "question": "Who set the record in the 500 metres event?", "context": "CREATE TABLE table_name_14 (name VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE attendance = 3686", "question": "When was the attendance 3686?", "context": "CREATE TABLE table_name_23 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT away FROM table_name_42 WHERE home = \"victoria\"", "question": "What is the away team whose home is Victoria?", "context": "CREATE TABLE table_name_42 (away VARCHAR, home VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_67 WHERE away = \"real espana\"", "question": "What was the attendance when the away team was Real Espana?", "context": "CREATE TABLE table_name_67 (attendance INTEGER, away VARCHAR)"}, {"answer": "SELECT location FROM table_name_76 WHERE club = \"nac breda\"", "question": "Where is nac breda club located?", "context": "CREATE TABLE table_name_76 (location VARCHAR, club VARCHAR)"}, {"answer": "SELECT kit_maker FROM table_name_68 WHERE manager = \"ron jans\"", "question": "Ron Jans is a manager of which kit maker?", "context": "CREATE TABLE table_name_68 (kit_maker VARCHAR, manager VARCHAR)"}, {"answer": "SELECT manager FROM table_name_90 WHERE shirt_sponsor = \"arke\"", "question": "Which manager sponsor arke shirt?", "context": "CREATE TABLE table_name_90 (manager VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT kit_maker FROM table_name_44 WHERE manager = \"trond sollied\"", "question": "Which kit maker have Trond Sollied as a manager?", "context": "CREATE TABLE table_name_44 (kit_maker VARCHAR, manager VARCHAR)"}, {"answer": "SELECT manager FROM table_name_48 WHERE club = \"fc twente\"", "question": "Who is the manager of club fc twente?", "context": "CREATE TABLE table_name_48 (manager VARCHAR, club VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE points = 62", "question": "What is the date of the game with 62 points?", "context": "CREATE TABLE table_name_51 (date VARCHAR, points VARCHAR)"}, {"answer": "SELECT home FROM table_name_85 WHERE date = \"january 4\"", "question": "Who was the home team on January 4?", "context": "CREATE TABLE table_name_85 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_7 WHERE years_with_spurs = \"1988-95\"", "question": "What is Player, when Years With Spurs is 1988-95?", "context": "CREATE TABLE table_name_7 (player VARCHAR, years_with_spurs VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_87 WHERE years_with_spurs = \"1973-74\"", "question": "What is Height in Ft., when Years With Spurs is 1973-74?", "context": "CREATE TABLE table_name_87 (height_in_ft VARCHAR, years_with_spurs VARCHAR)"}, {"answer": "SELECT position FROM table_name_67 WHERE school_previous_club_team_country = \"kentucky\"", "question": "What is Position, when School/Previous Club Team/Country is Kentucky?", "context": "CREATE TABLE table_name_67 (position VARCHAR, school_previous_club_team_country VARCHAR)"}, {"answer": "SELECT position FROM table_name_21 WHERE height_in_ft = \"6-10\"", "question": "What is Position, when Height in Ft. is 6-10?", "context": "CREATE TABLE table_name_21 (position VARCHAR, height_in_ft VARCHAR)"}, {"answer": "SELECT MIN(fumbles) FROM table_name_35 WHERE avg < 5.7 AND yards = 236", "question": "What was the lowest fumble with an average of less than 5.7 and 236 yards?", "context": "CREATE TABLE table_name_35 (fumbles INTEGER, avg VARCHAR, yards VARCHAR)"}, {"answer": "SELECT MAX(avg) FROM table_name_41 WHERE player = \"buck pierce\" AND fumbles < 2", "question": "What was Buck Pierce's highest average when there were less than 2 fumbles?", "context": "CREATE TABLE table_name_41 (avg INTEGER, player VARCHAR, fumbles VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_name_93 WHERE area_km_2 < 9.94 AND population < 817", "question": "What is the census ranking for the community with an area smaller than 9.94 km2 and a population smaller than 817?", "context": "CREATE TABLE table_name_93 (census_ranking VARCHAR, area_km_2 VARCHAR, population VARCHAR)"}, {"answer": "SELECT SUM(area_km_2) FROM table_name_10 WHERE status = \"village\" AND census_ranking = \"2,471 of 5,008\" AND population < 748", "question": "What is the area (in km2) for the community that has a status of village, a census ranking of 2,471 of 5,008, and a population of less than 748?", "context": "CREATE TABLE table_name_10 (area_km_2 INTEGER, population VARCHAR, status VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT AVG(area_km_2) FROM table_name_89 WHERE status = \"village\" AND official_name = \"paquetville\" AND population > 706", "question": "What is the area (in km2) for the village of Paquetville, with a population over 706?", "context": "CREATE TABLE table_name_89 (area_km_2 INTEGER, population VARCHAR, status VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_85 WHERE game = 22", "question": "Who had the high assists in Game 22?", "context": "CREATE TABLE table_name_85 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_56 WHERE date = \"december 3\"", "question": "On December 3, where was the game held and how many were in attendance?", "context": "CREATE TABLE table_name_56 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_38 WHERE rank = \"3\"", "question": "Which venue is rank 3?", "context": "CREATE TABLE table_name_38 (venue VARCHAR, rank VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_65 WHERE season = \"2001/02\"", "question": "Which opponent played in 2001/02?", "context": "CREATE TABLE table_name_65 (opponent VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_31 WHERE rank = \"4\"", "question": "Which season is rank 4?", "context": "CREATE TABLE table_name_31 (season VARCHAR, rank VARCHAR)"}, {"answer": "SELECT season FROM table_name_35 WHERE rank = \"2\"", "question": "Which season has rank 2?", "context": "CREATE TABLE table_name_35 (season VARCHAR, rank VARCHAR)"}, {"answer": "SELECT venue FROM table_name_4 WHERE rank = \"3\"", "question": "Which venue is rank 3?", "context": "CREATE TABLE table_name_4 (venue VARCHAR, rank VARCHAR)"}, {"answer": "SELECT conference FROM table_name_8 WHERE season = 2009 AND format = \"super leg final\"", "question": "What conference has 2009 as the season, with super leg final as the format?", "context": "CREATE TABLE table_name_8 (conference VARCHAR, season VARCHAR, format VARCHAR)"}, {"answer": "SELECT series FROM table_name_39 WHERE season > 2008 AND format = \"super leg final\" AND conference = \"conference v\"", "question": "What series has a season after 2008, super leg final as the format, and conference v as the conference?", "context": "CREATE TABLE table_name_39 (series VARCHAR, conference VARCHAR, season VARCHAR, format VARCHAR)"}, {"answer": "SELECT series FROM table_name_46 WHERE season < 2009", "question": "Which series has a season prior to 2009?", "context": "CREATE TABLE table_name_46 (series VARCHAR, season INTEGER)"}, {"answer": "SELECT format FROM table_name_42 WHERE conference = \"conference iii\"", "question": "What format has conference iii as the conference?", "context": "CREATE TABLE table_name_42 (format VARCHAR, conference VARCHAR)"}, {"answer": "SELECT round_3 FROM table_name_69 WHERE round_4 = \"54\"", "question": "Round 3 with less than 54 for Round 4?", "context": "CREATE TABLE table_name_69 (round_3 VARCHAR, round_4 VARCHAR)"}, {"answer": "SELECT round_4 FROM table_name_45 WHERE round_1 > 19 AND round_2 = \"27\"", "question": "Round 4 for larger than 19 Round 1 and a 27 Round 2?", "context": "CREATE TABLE table_name_45 (round_4 VARCHAR, round_1 VARCHAR, round_2 VARCHAR)"}, {"answer": "SELECT round_3 FROM table_name_39 WHERE round_4 = \"50\"", "question": "Round 3 with a round 4 of 50?", "context": "CREATE TABLE table_name_39 (round_3 VARCHAR, round_4 VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE away_team = \"b3\" AND date = \"august 12, 2014\"", "question": "How much did the away team b3 score on August 12, 2014?", "context": "CREATE TABLE table_name_17 (score VARCHAR, away_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_34 WHERE date = \"june 9, 2015\" AND home_team = \"f1\"", "question": "Which away team played on June 9, 2015 with a home team of f1?", "context": "CREATE TABLE table_name_34 (away_team VARCHAR, date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT margin FROM table_name_26 WHERE winning_score = \u20137(71 - 72 - 67 - 71 = 281)", "question": "Which Margin has a Winning score of \u20137 (71-72-67-71=281)?", "context": "CREATE TABLE table_name_26 (margin VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_71 WHERE runner_s__up = \"tammie green\"", "question": "Which Year has a Runner(s)-up of tammie green?", "context": "CREATE TABLE table_name_71 (year INTEGER, runner_s__up VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_42 WHERE winning_score = \u20134(69 - 72 - 70 - 69 = 280)", "question": "Which Year has a Winning score of \u20134 (69-72-70-69=280)?", "context": "CREATE TABLE table_name_42 (year INTEGER, winning_score VARCHAR)"}, {"answer": "SELECT nominated_work FROM table_name_55 WHERE type = \"rockferendum 2007\" AND position = \"1st place\" AND award = \"best album\"", "question": "What work was nominated at Rockferendum 2007 and got 1st place and got the award for best album?", "context": "CREATE TABLE table_name_55 (nominated_work VARCHAR, award VARCHAR, type VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_18 WHERE nominated_work = \"la quinta esencia\" AND award = \"best cd coverbox\"", "question": "What was the position that the nominated work La Quinta Esencia, which also won an award for best CD coverbox, won?", "context": "CREATE TABLE table_name_18 (position VARCHAR, nominated_work VARCHAR, award VARCHAR)"}, {"answer": "SELECT type FROM table_name_1 WHERE award = \"song of the year\" AND position = \"3rd place\"", "question": "What was the type that had an award for song of the year and the position of 3rd place?", "context": "CREATE TABLE table_name_1 (type VARCHAR, award VARCHAR, position VARCHAR)"}, {"answer": "SELECT place FROM table_name_65 WHERE player = \"phil mickelson\"", "question": "In what place is Phil Mickelson?", "context": "CREATE TABLE table_name_65 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_77 WHERE score = 73 - 71 - 70 = 214", "question": "The score of 73-71-70=214 belongs to what country?", "context": "CREATE TABLE table_name_77 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_95 WHERE score = 73 - 74 - 69 = 216", "question": "Which country has a score of 73-74-69=216?", "context": "CREATE TABLE table_name_95 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_45 WHERE outgoing_manager = \"christoph john\"", "question": "Which team had Christoph John as an outgoing manager?", "context": "CREATE TABLE table_name_45 (team VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT venue FROM table_name_15 WHERE batting_team = \"india\" AND batting_partners = \"sachin tendulkar and rahul dravid\"", "question": "In what venue was the Batting team India who featured partners Sachin Tendulkar and Rahul Dravid?", "context": "CREATE TABLE table_name_15 (venue VARCHAR, batting_team VARCHAR, batting_partners VARCHAR)"}, {"answer": "SELECT venue FROM table_name_86 WHERE fielding_team = \"sri lanka\"", "question": "In what venue did the fielding team Sri Lanka play?", "context": "CREATE TABLE table_name_86 (venue VARCHAR, fielding_team VARCHAR)"}, {"answer": "SELECT wicket FROM table_name_93 WHERE batting_partners = \"mohammad azharuddin and ajay jadeja\" AND fielding_team = \"sri lanka\"", "question": "What was the wicket ranking for the match featuring partners Mohammad Azharuddin and Ajay Jadeja and also a fielding team of Sri Lanka?", "context": "CREATE TABLE table_name_93 (wicket VARCHAR, batting_partners VARCHAR, fielding_team VARCHAR)"}, {"answer": "SELECT wicket FROM table_name_73 WHERE fielding_team = \"sri lanka\"", "question": "What was the wicket ranking for the match that had a fielding team of Sri Lanka?", "context": "CREATE TABLE table_name_73 (wicket VARCHAR, fielding_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE attendance > 342 AND opponent = \"inverurie loco works\"", "question": "What date was the game against inverurie loco works when more than 342 attend?", "context": "CREATE TABLE table_name_3 (date VARCHAR, attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE date = \"july 20\"", "question": "Which Score has a Date of july 20?", "context": "CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE date = \"may 20\"", "question": "Which Score has a Date of may 20?", "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_25 WHERE score = \"69-81\"", "question": "Which Result has a Score of 69-81?", "context": "CREATE TABLE table_name_25 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_81 WHERE date = \"june 26\"", "question": "Which Record has a Date of june 26?", "context": "CREATE TABLE table_name_81 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE record = \"6-6\"", "question": "Which Date has a Record of 6-6?", "context": "CREATE TABLE table_name_82 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE record = \"5-4\"", "question": "Which Score has a Record of 5-4?", "context": "CREATE TABLE table_name_36 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_4 WHERE date = \"december 30\"", "question": "Who had the highest rebounds on December 30?", "context": "CREATE TABLE table_name_4 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_21 WHERE team = \"l.a. lakers\"", "question": "Who had the highest assists on the l.a. lakers?", "context": "CREATE TABLE table_name_21 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_56 WHERE october > 28", "question": "What is the Opponent of the game after October 28?", "context": "CREATE TABLE table_name_56 (opponent VARCHAR, october INTEGER)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE october < 31 AND game > 5 AND record = \"2-3-1\"", "question": "What is the Opponent before October 31 with a Record of 2-3-1 after Game 5?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, record VARCHAR, october VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_19 WHERE record = \"37-27\"", "question": "What opponent had a record of 37-27?", "context": "CREATE TABLE table_name_19 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE location = \"delta center\"", "question": "What date was the game played at the Delta Center?", "context": "CREATE TABLE table_name_9 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_56 WHERE location = \"staples center\"", "question": "What was the total games played at the Staples Center?", "context": "CREATE TABLE table_name_56 (game INTEGER, location VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE record = \"38-30\"", "question": "What's the score if the record was 38-30?", "context": "CREATE TABLE table_name_52 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(long) FROM table_name_56 WHERE yards = 293 AND returns < 16", "question": "Can you tell me the lowest Long that has the Yards 293, and the Returns smaller than 16?", "context": "CREATE TABLE table_name_56 (long INTEGER, yards VARCHAR, returns VARCHAR)"}, {"answer": "SELECT player FROM table_name_92 WHERE long > 28 AND yards = 222", "question": "Can you tell me the Player that has the Long larger than 28, and the Yards of 222?", "context": "CREATE TABLE table_name_92 (player VARCHAR, long VARCHAR, yards VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE opposing_team = \"western province\"", "question": "What was the date of the match against western province?", "context": "CREATE TABLE table_name_52 (date VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_61 WHERE total > 30 AND bronze = 14", "question": "Which Rank has a Total larger than 30, and a Bronze of 14?", "context": "CREATE TABLE table_name_61 (rank INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_26 WHERE silver < 3 AND total = 9 AND bronze < 1", "question": "How much Gold has a Silver smaller than 3, and a Total of 9, and a Bronze smaller than 1?", "context": "CREATE TABLE table_name_26 (gold VARCHAR, bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_80 WHERE silver < 14 AND rank > 8 AND bronze = 3", "question": "How much Gold has a Silver smaller than 14, and a Rank larger than 8, and a Bronze of 3?", "context": "CREATE TABLE table_name_80 (gold VARCHAR, bronze VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_70 WHERE silver > 2 AND nation = \"mixed team\" AND rank > 4", "question": "How much Bronze has a Silver larger than 2, and a Nation of mixed team, and a Rank larger than 4?", "context": "CREATE TABLE table_name_70 (bronze VARCHAR, rank VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_56 WHERE date = \"26 december 2004\"", "question": "What is Attendance, when Date is \"26 December 2004\"?", "context": "CREATE TABLE table_name_56 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_65 WHERE venue = \"a\" AND date = \"5 january 2005\"", "question": "What is the average Attendance, when Venue is \"A\", and when Date is \"5 January 2005\"?", "context": "CREATE TABLE table_name_65 (attendance INTEGER, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_65 WHERE result = \"0-0\"", "question": "What is Venue, when Result is \"0-0\"?", "context": "CREATE TABLE table_name_65 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_62 WHERE result = \"2-4\"", "question": "What is Attendance, when Result is \"2-4\"?", "context": "CREATE TABLE table_name_62 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_51 WHERE week > 13 AND opponent = \"new york giants\"", "question": "What's the total attendance of games against the New York Giants after week 13?", "context": "CREATE TABLE table_name_51 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(innings) FROM table_name_86 WHERE runs < 342 AND matches > 4", "question": "What is the largest number of innings with less than 342 runs and more than 4 matches?", "context": "CREATE TABLE table_name_86 (innings INTEGER, runs VARCHAR, matches VARCHAR)"}, {"answer": "SELECT AVG(100 AS s) FROM table_name_86 WHERE highest_score = \"196\"", "question": "What is the average value in the 100s category when the high score is 196?", "context": "CREATE TABLE table_name_86 (highest_score VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_44 WHERE position = \"tight end\" AND college = \"oklahoma state\" AND round > 1", "question": "A Round larger than 1, a College of Oklahoma state, and a average Pick # that has a Position of tight end is what?", "context": "CREATE TABLE table_name_44 (pick__number INTEGER, round VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_52 WHERE round = 14 AND pick__number > 339", "question": "A Pick # larger than 339 and the College that has a Round of 14 is what?", "context": "CREATE TABLE table_name_52 (college VARCHAR, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_name_36 WHERE pick__number = 331", "question": "Pick # of 331 went to which college?", "context": "CREATE TABLE table_name_36 (college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_name_16 WHERE pick__number = 203", "question": "Pick # of 203 went to which college?", "context": "CREATE TABLE table_name_16 (college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT width_feet__m_ FROM table_name_63 WHERE source__year_ = \"nbi (2009)\"", "question": "What is the width feet in meeters for the truss with a source of nbi (2009)?", "context": "CREATE TABLE table_name_63 (width_feet__m_ VARCHAR, source__year_ VARCHAR)"}, {"answer": "SELECT width_feet__m_ FROM table_name_8 WHERE source__year_ = \"zacher (1994)\"", "question": "What is the width for hte truss with a source of zacher (1994)?", "context": "CREATE TABLE table_name_8 (width_feet__m_ VARCHAR, source__year_ VARCHAR)"}, {"answer": "SELECT articulatory_class FROM table_name_34 WHERE aspirated_stop = \"\u314d\"", "question": "Which Articulatory class has and Aspirated stop of \u314d?", "context": "CREATE TABLE table_name_34 (articulatory_class VARCHAR, aspirated_stop VARCHAR)"}, {"answer": "SELECT non__stop FROM table_name_60 WHERE aspirated_stop = \"\u314e\"", "question": "Which Non- stop has an Aspirated stop of \u314e?", "context": "CREATE TABLE table_name_60 (non__stop VARCHAR, aspirated_stop VARCHAR)"}, {"answer": "SELECT articulatory_class FROM table_name_27 WHERE non__stop = \"(\u3181)\"", "question": "If the Non- stop is (\u3181), what is the Articulatory Class?", "context": "CREATE TABLE table_name_27 (articulatory_class VARCHAR, non__stop VARCHAR)"}, {"answer": "SELECT non__stop FROM table_name_92 WHERE plain_stop = \"\u3137\"", "question": "If the Plain stop is \u3137, what is the Non- stop?", "context": "CREATE TABLE table_name_92 (non__stop VARCHAR, plain_stop VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_24 WHERE player = \"joe sims\"", "question": "What round was Joe Sims picked?", "context": "CREATE TABLE table_name_24 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT pick FROM table_name_36 WHERE player = \"moe gardner\"", "question": "What was Moe Gardner's pick?", "context": "CREATE TABLE table_name_36 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_18 WHERE school = \"northwestern\"", "question": "What was the highest round that had northwestern?", "context": "CREATE TABLE table_name_18 (round INTEGER, school VARCHAR)"}, {"answer": "SELECT MAX(total_population__2010_census_) FROM table_name_11 WHERE area__km_2__ < 147 OFFSET 307.00", "question": "Which Total population (2010 census) has an Area (km 2) smaller than 147,307.00?", "context": "CREATE TABLE table_name_11 (total_population__2010_census_ INTEGER, area__km_2__ INTEGER)"}, {"answer": "SELECT AVG(total_population__2005_estimate_) FROM table_name_78 WHERE province = \"west kalimantan (kalimantan barat)\" AND area__km_2__ < 147 OFFSET 307.00", "question": "Which Total population (2005 estimate) has a Province of west kalimantan (kalimantan barat), and an Area (km 2) smaller than 147,307.00?", "context": "CREATE TABLE table_name_78 (total_population__2005_estimate_ INTEGER, province VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_93 WHERE march > 21 AND game = 75", "question": "who is the opponent after march 21 and the game is 75?", "context": "CREATE TABLE table_name_93 (opponent VARCHAR, march VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_12 WHERE march = 15", "question": "what is the game when march is 15?", "context": "CREATE TABLE table_name_12 (game INTEGER, march VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE game > 66 AND march = 28", "question": "what is the score when the game is higher than 66 on march 28?", "context": "CREATE TABLE table_name_82 (score VARCHAR, game VARCHAR, march VARCHAR)"}, {"answer": "SELECT report FROM table_name_16 WHERE away_team = \"sydney spirit\" AND score = \"96-87\"", "question": "What was the report for an away team of Sydney Spirit and score of 96-87?", "context": "CREATE TABLE table_name_16 (report VARCHAR, away_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_92 WHERE score = \"101-93\"", "question": "Who was the home team with a score of 101-93?", "context": "CREATE TABLE table_name_92 (home_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE away_team = \"perth wildcats\"", "question": "What was the score for the Perth Wildcats as away team?", "context": "CREATE TABLE table_name_38 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE home_team = \"melbourne tigers\"", "question": "On what date were the Melbourne Tigers the home team?", "context": "CREATE TABLE table_name_83 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT challenge_loser FROM table_name_81 WHERE challenge_winner = \"roseny\"", "question": "Which challenge loser has a Challenge Winner of roseny?", "context": "CREATE TABLE table_name_81 (challenge_loser VARCHAR, challenge_winner VARCHAR)"}, {"answer": "SELECT episode FROM table_name_50 WHERE challenge_winner = \"berto\"", "question": "Which episode has a Challenge Winner of berto?", "context": "CREATE TABLE table_name_50 (episode VARCHAR, challenge_winner VARCHAR)"}, {"answer": "SELECT challenge_winner FROM table_name_44 WHERE challenge_loser = \"alexcy\"", "question": "Which winner has a Challenge Loser of alexcy?", "context": "CREATE TABLE table_name_44 (challenge_winner VARCHAR, challenge_loser VARCHAR)"}, {"answer": "SELECT challenge_winner FROM table_name_19 WHERE challenge_loser = \"gisel\"", "question": "Which winner has a Challenge Loser of gisel?", "context": "CREATE TABLE table_name_19 (challenge_winner VARCHAR, challenge_loser VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE alternate = \"sun yue\" AND event = \"2007 wcc\"", "question": "What was the result for the 2007 WCC when Sun Yue was the alternate?", "context": "CREATE TABLE table_name_33 (result VARCHAR, alternate VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_82 WHERE result = \"7th (5-6)\"", "question": "What event has the result of 7th (5-6)?", "context": "CREATE TABLE table_name_82 (event VARCHAR, result VARCHAR)"}, {"answer": "SELECT lead FROM table_name_5 WHERE event = \"2008 wcc\"", "question": "Who was the lead for the 2008 WCC?", "context": "CREATE TABLE table_name_5 (lead VARCHAR, event VARCHAR)"}, {"answer": "SELECT lead FROM table_name_39 WHERE skip = \"wang bingyu\" AND event = \"2009 wcc\"", "question": "What was the Lead for the 2009 WCC when Wang Bingyu news was the skip?", "context": "CREATE TABLE table_name_39 (lead VARCHAR, skip VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_14 WHERE skip = \"wang bingyu\"", "question": "What event had Wang Bingyu for the skip?", "context": "CREATE TABLE table_name_14 (event VARCHAR, skip VARCHAR)"}, {"answer": "SELECT event FROM table_name_75 WHERE alternate = \"sun yue\" AND skip = \"wang bingyu(3rd)\"", "question": "What event was Sun Yue the alternate and wang bingyu(3rd) the skip?", "context": "CREATE TABLE table_name_75 (event VARCHAR, alternate VARCHAR, skip VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_27 WHERE team_2 = \"haro\"", "question": "WHAT IS THE SECOND LEG WITH HARO AS TEAM TWO?", "context": "CREATE TABLE table_name_27 (team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_79 WHERE team_1 = \"tuilla\"", "question": "WHAT IS THE FIRST LEG OF TUILLA?", "context": "CREATE TABLE table_name_79 (team_1 VARCHAR)"}, {"answer": "SELECT team FROM table_name_18 WHERE game = 49", "question": "Which team has a Game of 49?", "context": "CREATE TABLE table_name_18 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_75 WHERE team = \"@ portland\"", "question": "What are the High points for Team @ portland?", "context": "CREATE TABLE table_name_75 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_40 WHERE team = \"houston\"", "question": "What are the High assists for Team houston?", "context": "CREATE TABLE table_name_40 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_12 WHERE date = \"february 2\"", "question": "What are the High assists for February 2?", "context": "CREATE TABLE table_name_12 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_59 WHERE opponents > 28", "question": "What game did the Buffalo Bills' opponents earn more than 28 points?", "context": "CREATE TABLE table_name_59 (game VARCHAR, opponents INTEGER)"}, {"answer": "SELECT year_completion_expected FROM table_name_79 WHERE country = \"china\"", "question": "What was the year that China will have a building completed?", "context": "CREATE TABLE table_name_79 (year_completion_expected VARCHAR, country VARCHAR)"}, {"answer": "SELECT name FROM table_name_15 WHERE country = \"china\"", "question": "What is the name of the buildings for China?", "context": "CREATE TABLE table_name_15 (name VARCHAR, country VARCHAR)"}, {"answer": "SELECT name FROM table_name_65 WHERE year_completion_expected > 2016", "question": "What are the names for projects that will be completed after 2016?", "context": "CREATE TABLE table_name_65 (name VARCHAR, year_completion_expected INTEGER)"}, {"answer": "SELECT pinnacle_height_planned FROM table_name_4 WHERE country = \"china\" AND name = \"goldin finance 117\"", "question": "How high is the Goldin Finance 117 building currently being build in China?", "context": "CREATE TABLE table_name_4 (pinnacle_height_planned VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_56 WHERE series = \"atcc round 3\"", "question": "What is the City / State, when Series is ATCC Round 3?", "context": "CREATE TABLE table_name_56 (city___state VARCHAR, series VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE series = \"amscar round 3\"", "question": "What is Date, when Series is Amscar Round 3?", "context": "CREATE TABLE table_name_36 (date VARCHAR, series VARCHAR)"}, {"answer": "SELECT winner FROM table_name_95 WHERE circuit = \"mallala motor sport park\" AND series = \"astc round 6\"", "question": "What is Winner, when Circuit is Mallala Motor Sport Park, and when Series is ASTC Round 6?", "context": "CREATE TABLE table_name_95 (winner VARCHAR, circuit VARCHAR, series VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_93 WHERE winner = \"mal rose\" AND date = \"20 jul\"", "question": "What is City / State, when Winner is Mal Rose, and when Date is 20 Jul?", "context": "CREATE TABLE table_name_93 (city___state VARCHAR, winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_83 WHERE circuit = \"eastern creek raceway\" AND winner = \"michael donaher\"", "question": "What is City / State, when Circuit is Eastern Creek Raceway, and when Winner is Michael Donaher?", "context": "CREATE TABLE table_name_83 (city___state VARCHAR, circuit VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_1 WHERE series = \"atcc round 5\"", "question": "What is Date, when Series is ATCC Round 5?", "context": "CREATE TABLE table_name_1 (date VARCHAR, series VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_35 WHERE rank = \"22nd\" AND top_fives = 3", "question": "What is the sum of wins for casey mears when the player ranked 22nd and was in teh top fives 3 times?", "context": "CREATE TABLE table_name_35 (wins INTEGER, rank VARCHAR, top_fives VARCHAR)"}, {"answer": "SELECT COUNT(top_fives) FROM table_name_29 WHERE year = \"2010\" AND wins > 0", "question": "What is the total number of top fives in 2010 when casey mears had more than 0 wins?", "context": "CREATE TABLE table_name_29 (top_fives VARCHAR, year VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_62 WHERE rank = \"36th\" AND top_fives > 0", "question": "What is the total number of wins when casey mears ranked 36th and had more than 0 top fives?", "context": "CREATE TABLE table_name_62 (wins VARCHAR, rank VARCHAR, top_fives VARCHAR)"}, {"answer": "SELECT SUM(top_fives) FROM table_name_54 WHERE poles > 1 AND top_tens < 9", "question": "What is the total number of top fives when casey mears had more than 1 poles and top tens less than 9?", "context": "CREATE TABLE table_name_54 (top_fives INTEGER, poles VARCHAR, top_tens VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_2 WHERE player = \"k. j. choi\"", "question": "What's k. j. choi's to par?", "context": "CREATE TABLE table_name_2 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_33 WHERE score < 69 AND place = \"t1\"", "question": "Which Player has a Score smaller than 69, and a Place of t1?", "context": "CREATE TABLE table_name_33 (player VARCHAR, score VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_22 WHERE player = \"emlyn aubrey\"", "question": "Which To par has a Player of emlyn aubrey?", "context": "CREATE TABLE table_name_22 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_name_30 WHERE place = \"t1\" AND player = \"scott simpson\"", "question": "Which Score has a Place of t1, and a Player of scott simpson?", "context": "CREATE TABLE table_name_30 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_42 WHERE score > 68", "question": "Which To par has a Score larger than 68?", "context": "CREATE TABLE table_name_42 (to_par VARCHAR, score INTEGER)"}, {"answer": "SELECT SUM(game) FROM table_name_80 WHERE date = \"december 5\"", "question": "How many games were on December 5?", "context": "CREATE TABLE table_name_80 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE team = \"phoenix\"", "question": "What day did Phoenix play?", "context": "CREATE TABLE table_name_32 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT site FROM table_name_15 WHERE date = \"november 13\"", "question": "What is Site, when Date is \"November 13\"?", "context": "CREATE TABLE table_name_15 (site VARCHAR, date VARCHAR)"}, {"answer": "SELECT site FROM table_name_67 WHERE date = \"september 13\"", "question": "What is SIte, when Date is \"September 13\"?", "context": "CREATE TABLE table_name_67 (site VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_79 WHERE opponent = \"at syracuse\"", "question": "What is Attendance, when Opponent is \"At Syracuse\"?", "context": "CREATE TABLE table_name_79 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT site FROM table_name_13 WHERE opponent = \"all times are in eastern.\"", "question": "What is Site, when Opponent is \"All times are in eastern.\"?", "context": "CREATE TABLE table_name_13 (site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE site = \"louisiana superdome \u2022 new orleans, la\"", "question": "What is Date, when Site is \"Louisiana Superdome \u2022 New Orleans, LA\"?", "context": "CREATE TABLE table_name_65 (date VARCHAR, site VARCHAR)"}, {"answer": "SELECT MIN(january) FROM table_name_94 WHERE game < 46 AND score = \"5 - 3\" AND record = \"15-22-8\"", "question": "What is the lowest January, when Game is less than 46, when Score is \"5 - 3\", and when Record is \"15-22-8\"?", "context": "CREATE TABLE table_name_94 (january INTEGER, record VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_34 WHERE record = \"11-17-7\"", "question": "What is the total number of Game, when Record is \"11-17-7\"?", "context": "CREATE TABLE table_name_34 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE january > 19 AND score = \"7 - 2\"", "question": "What is Opponent, when January is greater than 19, and when Score is \"7 - 2\"?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, january VARCHAR, score VARCHAR)"}, {"answer": "SELECT notes FROM table_name_9 WHERE rank < 3 AND stadium = \"yuvileiny stadium (sumy)\"", "question": "What are the notes with a less than 3 rank at Yuvileiny Stadium (sumy)?", "context": "CREATE TABLE table_name_9 (notes VARCHAR, rank VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT player FROM table_name_19 WHERE total = 160", "question": "Which player has a total of 160?", "context": "CREATE TABLE table_name_19 (player VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_21 WHERE player = \"charles coody\"", "question": "What country does charles coody play for?", "context": "CREATE TABLE table_name_21 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(division_titles) FROM table_name_87 WHERE playoff_appearances = 23 AND conference_titles > 1", "question": "How many division titles does the team with 23 playoff appearances and more than 1 conference titles have?", "context": "CREATE TABLE table_name_87 (division_titles INTEGER, playoff_appearances VARCHAR, conference_titles VARCHAR)"}, {"answer": "SELECT AVG(seasons_completed) FROM table_name_97 WHERE division_titles < 1 AND playoff_appearances = 0 AND finals_appearances > 0", "question": "What is the average number of seasons completed of the team with less than 1 division titles, 0 playoff appearances, and more than 0 finals appearances?", "context": "CREATE TABLE table_name_97 (seasons_completed INTEGER, finals_appearances VARCHAR, division_titles VARCHAR, playoff_appearances VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_44 WHERE points > 81", "question": "What hame has points larger than 81?", "context": "CREATE TABLE table_name_44 (game INTEGER, points INTEGER)"}, {"answer": "SELECT COUNT(round) FROM table_name_91 WHERE player = \"cleveland mccrae\"", "question": "How many round values are associated with Cleveland McCrae?", "context": "CREATE TABLE table_name_91 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_87 WHERE year > 1998 AND start = \"dnq\"", "question": "What team is after 1998 with a start of dnq?", "context": "CREATE TABLE table_name_87 (team VARCHAR, year VARCHAR, start VARCHAR)"}, {"answer": "SELECT start FROM table_name_63 WHERE finish = \"1\"", "question": "What's the start when the finish is 1?", "context": "CREATE TABLE table_name_63 (start VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_1 WHERE start = \"3\" AND team = \"morgan-mcclure\" AND finish = \"40\"", "question": "What's the latest year with a start of 3 and a finish of 40 for the morgan-mcclure team?", "context": "CREATE TABLE table_name_1 (year INTEGER, finish VARCHAR, start VARCHAR, team VARCHAR)"}, {"answer": "SELECT goals FROM table_name_24 WHERE matches < 37 AND average = 1.5", "question": "How many goals were scored on the goalkeeper with fewer than 37 matches and an average of 1.5?", "context": "CREATE TABLE table_name_24 (goals VARCHAR, matches VARCHAR, average VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_58 WHERE goalkeeper = \"carlos kameni\" AND average > 1.27", "question": "How many matches did Carlos Kameni play in, who had an average larger than 1.27?", "context": "CREATE TABLE table_name_58 (matches INTEGER, goalkeeper VARCHAR, average VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_57 WHERE tie_no = \"15\"", "question": "Who is the away team when there are 15 ties?", "context": "CREATE TABLE table_name_57 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE home_team = \"darlington\"", "question": "What is the score when Darlington is the home team?", "context": "CREATE TABLE table_name_9 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_88 WHERE home_team = \"altrincham\"", "question": "What is the number of ties when Altrincham is the home team?", "context": "CREATE TABLE table_name_88 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_27 WHERE nfl_club = \"baltimore colts\" AND round > 10", "question": "What is the largest pick by the Baltimore Colts in a round later than 10?", "context": "CREATE TABLE table_name_27 (pick INTEGER, nfl_club VARCHAR, round VARCHAR)"}, {"answer": "SELECT country FROM table_name_95 WHERE label = \"toshiba-emi\" AND catalog = \"vjcp-68403\"", "question": "Which Country has a Label of Toshiba-emi and a Catalog of vjcp-68403?", "context": "CREATE TABLE table_name_95 (country VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_98 WHERE catalog = \"7243 8 49494 2 6\"", "question": "Which Label has a Catalog of 7243 8 49494 2 6?", "context": "CREATE TABLE table_name_98 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_71 WHERE country = \"japan\"", "question": "Which Catalog has a Country of Japan?", "context": "CREATE TABLE table_name_71 (catalog VARCHAR, country VARCHAR)"}, {"answer": "SELECT label FROM table_name_89 WHERE format = \"cd\" AND country = \"japan\" AND catalog = \"vjcp-68403\"", "question": "Which Label has a Format of cd, a Country of Japan and a Catalog of vjcp-68403?", "context": "CREATE TABLE table_name_89 (label VARCHAR, catalog VARCHAR, format VARCHAR, country VARCHAR)"}, {"answer": "SELECT played FROM table_name_38 WHERE points_for = \"343\"", "question": "How many rounds were played in the matching resulting in a Points For score of 343?", "context": "CREATE TABLE table_name_38 (played VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT height_metres___ft FROM table_name_23 WHERE town = \"rouen\"", "question": "What is the height in Rouen?", "context": "CREATE TABLE table_name_23 (height_metres___ft VARCHAR, town VARCHAR)"}, {"answer": "SELECT held_record FROM table_name_88 WHERE structural_type = \"church\" AND town = \"hamburg\"", "question": "What is the church made from in Hamburg?", "context": "CREATE TABLE table_name_88 (held_record VARCHAR, structural_type VARCHAR, town VARCHAR)"}, {"answer": "SELECT player FROM table_name_86 WHERE score = 72 - 70 - 66 = 208", "question": "What Player's Score is 72-70-66=208?", "context": "CREATE TABLE table_name_86 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_79 WHERE place = \"t8\" AND score = 72 - 70 - 66 = 208", "question": "What is the To par of the T8 Place Player with a Score of 72-70-66=208?", "context": "CREATE TABLE table_name_79 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_66 WHERE player = \"kirk triplett\"", "question": "What is Kirk Triplett's Place?", "context": "CREATE TABLE table_name_66 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_70 WHERE school_club_team = \"maryland-eastern shore\" AND round < 2", "question": "What is the pick for the Maryland-Eastern Shore team with a round lower than 2?", "context": "CREATE TABLE table_name_70 (pick INTEGER, school_club_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_27 WHERE pick < 92 AND school_club_team = \"ucla\"", "question": "Which position at UCLA has a lower than 92 pick number?", "context": "CREATE TABLE table_name_27 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_95 WHERE position = \"c\"", "question": "How many rounds have a position of C?", "context": "CREATE TABLE table_name_95 (round VARCHAR, position VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_47 WHERE round < 4 AND player = \"jan van breda kolff\"", "question": "Which team has fewer than 4 rounds for Jan Van Breda Kolff?", "context": "CREATE TABLE table_name_47 (school_club_team VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_54 WHERE round < 2", "question": "Which player has fewer than 2 rounds?", "context": "CREATE TABLE table_name_54 (player VARCHAR, round INTEGER)"}, {"answer": "SELECT SUM(pick) FROM table_name_19 WHERE player = \"mickey johnson\" AND round < 4", "question": "What is the pick for Mickey Johnson with fewer than 4 rounds?", "context": "CREATE TABLE table_name_19 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT all_games FROM table_name_93 WHERE nonconference_games = \"1\u201310\"", "question": "Which All Games have a Nonconference Games of 1\u201310?", "context": "CREATE TABLE table_name_93 (all_games VARCHAR, nonconference_games VARCHAR)"}, {"answer": "SELECT player FROM table_name_98 WHERE score = 68 - 67 = 135", "question": "Who had a score of 68-67=135?", "context": "CREATE TABLE table_name_98 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_91 WHERE score = 73 - 68 = 141", "question": "What is the to par for the player who scored 73-68=141?", "context": "CREATE TABLE table_name_91 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_75 WHERE score = 69 - 71 = 140", "question": "Who scored 69-71=140?", "context": "CREATE TABLE table_name_75 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_21 WHERE score = 70 - 70 = 140", "question": "What was the to par of the player of who scored 70-70=140?", "context": "CREATE TABLE table_name_21 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT name FROM table_name_87 WHERE proposed = \"12/30/1982\" AND county = \"rockingham\" AND cerclis_id = \"nhd062004569\"", "question": "What name was proposed on 12/30/1982 in rockingham county with a CERCLIS ID of nhd062004569?", "context": "CREATE TABLE table_name_87 (name VARCHAR, cerclis_id VARCHAR, proposed VARCHAR, county VARCHAR)"}, {"answer": "SELECT name FROM table_name_71 WHERE construction_completed = \"09/19/2008\"", "question": "What name completed construction on 09/19/2008?", "context": "CREATE TABLE table_name_71 (name VARCHAR, construction_completed VARCHAR)"}, {"answer": "SELECT proposed FROM table_name_6 WHERE listed = \"03/31/1989\" AND county = \"rockingham\"", "question": "When was the site listed 03/31/1989 in rockingham county proposed?", "context": "CREATE TABLE table_name_6 (proposed VARCHAR, listed VARCHAR, county VARCHAR)"}, {"answer": "SELECT cerclis_id FROM table_name_49 WHERE listed = \"10/14/1992\"", "question": "What CERCLIS ID was listed 10/14/1992?", "context": "CREATE TABLE table_name_49 (cerclis_id VARCHAR, listed VARCHAR)"}, {"answer": "SELECT name FROM table_name_73 WHERE county = \"hillsborough\" AND proposed = \"09/08/1983\"", "question": "What name was proposed on 09/08/1983 in hillsborough county?", "context": "CREATE TABLE table_name_73 (name VARCHAR, county VARCHAR, proposed VARCHAR)"}, {"answer": "SELECT county FROM table_name_61 WHERE cerclis_id = \"nhd062004569\"", "question": "What county is CERCLIS ID nhd062004569 in?", "context": "CREATE TABLE table_name_61 (county VARCHAR, cerclis_id VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_87 WHERE record = \"0-11\"", "question": "What is the total number for the week with a record of 0-11?", "context": "CREATE TABLE table_name_87 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_19 WHERE date = \"11/11/01\"", "question": "What is the attendance for the date of 11/11/01?", "context": "CREATE TABLE table_name_19 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM table_name_55 WHERE team_nickname = \"wolverines\" AND founded > 1817", "question": "what is the average enrollment when the team nickname is wolverines and founded is after 1817?", "context": "CREATE TABLE table_name_55 (enrollment INTEGER, team_nickname VARCHAR, founded VARCHAR)"}, {"answer": "SELECT institution FROM table_name_48 WHERE location = \"big rapids, michigan\"", "question": "what is the institution when the location is big rapids, michigan?", "context": "CREATE TABLE table_name_48 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_name_60 WHERE founded > 1809 AND institution = \"university of michigan\"", "question": "what is the least enrollment when founded after 1809 and the institution is university of michigan?", "context": "CREATE TABLE table_name_60 (enrollment INTEGER, founded VARCHAR, institution VARCHAR)"}, {"answer": "SELECT institution FROM table_name_22 WHERE team_nickname = \"lakers\"", "question": "what is the institution when the team nickname is lakers?", "context": "CREATE TABLE table_name_22 (institution VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT political_party FROM table_name_72 WHERE name = \"mehdi bej frash\u00ebri (2nd time)\"", "question": "Which Political Party has a Name of mehdi bej frash\u00ebri (2nd time)?", "context": "CREATE TABLE table_name_72 (political_party VARCHAR, name VARCHAR)"}, {"answer": "SELECT political_party FROM table_name_72 WHERE name = \"ibrahim bej bi\u00e7ak\u00e7iu\"", "question": "Which Political Party has a Name of ibrahim bej bi\u00e7ak\u00e7iu?", "context": "CREATE TABLE table_name_72 (political_party VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_88 WHERE term_end = \"18 july 1944\"", "question": "Which Name has a Term end of 18 july 1944?", "context": "CREATE TABLE table_name_88 (name VARCHAR, term_end VARCHAR)"}, {"answer": "SELECT born_died FROM table_name_52 WHERE term_start = \"4 november 1943\"", "question": "Which Born-Died has a Term start of 4 november 1943?", "context": "CREATE TABLE table_name_52 (born_died VARCHAR, term_start VARCHAR)"}, {"answer": "SELECT political_party FROM table_name_22 WHERE name = \"rexhep bej mitrovica\"", "question": "Which Political Party has a Name of rexhep bej mitrovica?", "context": "CREATE TABLE table_name_22 (political_party VARCHAR, name VARCHAR)"}, {"answer": "SELECT term_end FROM table_name_23 WHERE political_party = \"balli komb\u00ebtar\" AND born_died = \"1905\u20131972\"", "question": "Which Term end has a Political Party of balli komb\u00ebtar, and a Born-Died of 1905\u20131972?", "context": "CREATE TABLE table_name_23 (term_end VARCHAR, political_party VARCHAR, born_died VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_44 WHERE date = \"18 february 1956\" AND away_team = \"tottenham hotspur\"", "question": "/What is Tie No, when Date is 18 February 1956, and when Away Team is Tottenham Hotspur?", "context": "CREATE TABLE table_name_44 (tie_no VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_10 WHERE date = \"18 february 1956\" AND home_team = \"charlton athletic\"", "question": "What is Tie No, when Date is 18 February 1956, and when Home Team is Charlton Athletic?", "context": "CREATE TABLE table_name_10 (tie_no VARCHAR, date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE tie_no = \"replay\" AND home_team = \"sunderland\"", "question": "What is Score, when Tie No is Replay, and when Home Team is Sunderland?", "context": "CREATE TABLE table_name_75 (score VARCHAR, tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_59 WHERE date = \"18 february 1956\" AND away_team = \"blackburn rovers\"", "question": "What is Home Team, when Date is 18 February 1956, and when Away Team is Blackburn Rovers?", "context": "CREATE TABLE table_name_59 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_69 WHERE date = \"18 february 1956\" AND tie_no = \"3\"", "question": "What is Home Team, when Date is 18 February 1956, and when Tie No is 3?", "context": "CREATE TABLE table_name_69 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_49 WHERE tie_no = \"4\"", "question": "What is Home Team, when Tie No is 4?", "context": "CREATE TABLE table_name_49 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT method FROM table_name_35 WHERE opponent = \"joe kielur\"", "question": "What ws the method of resolution for the fight against joe kielur?", "context": "CREATE TABLE table_name_35 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_31 WHERE opponent = \"son hai suk\"", "question": "What event did Soa Palelei fight against son hai suk?", "context": "CREATE TABLE table_name_31 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE year = 1994", "question": "WHich Venue is in 1994?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_93 WHERE year > 1992 AND score = \"1 \u2013 0\" AND winners = \"us chaouia\"", "question": "WHICH Venue IS after  1992 with a Score of 1 \u2013 0 and a Winners of us chaouia?", "context": "CREATE TABLE table_name_93 (venue VARCHAR, winners VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_29 WHERE surface = \"clay\" AND partner = \"henri leconte\" AND date = 1983", "question": "Which tournament has a clay surface and partner henri leconte in 1983?", "context": "CREATE TABLE table_name_29 (tournament VARCHAR, date VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_65 WHERE partner = \"ilie n\u0103stase\"", "question": "What is the outcome of the tournament with partner ilie n\u0103stase?", "context": "CREATE TABLE table_name_65 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT MIN(goals_against) FROM table_name_97 WHERE lost > 27", "question": "What is the fewest goals against for teams with more than 27 losses?", "context": "CREATE TABLE table_name_97 (goals_against INTEGER, lost INTEGER)"}, {"answer": "SELECT COUNT(position) FROM table_name_66 WHERE drawn > 7 AND played < 40", "question": "What is the total number of positions for teams with more than 7 draws and under 40 played?", "context": "CREATE TABLE table_name_66 (position VARCHAR, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_23 WHERE points_1 = \"53\" AND goals_for > 73", "question": "What is the fewest losses for teams with points of 53 and more than 73 goals for?", "context": "CREATE TABLE table_name_23 (lost INTEGER, points_1 VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_45 WHERE goal_difference = \"0\" AND goals_against < 55", "question": "What is the fewest draws for teams with a 0 goal difference and under 55 goals against?", "context": "CREATE TABLE table_name_45 (drawn INTEGER, goal_difference VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT COUNT(2010 AS _11) FROM table_name_97 WHERE rank > 11", "question": "What is the sum of 2010-11 when the rank is greater than 11?", "context": "CREATE TABLE table_name_97 (rank INTEGER)"}, {"answer": "SELECT away FROM table_name_89 WHERE date = \"14 september 2008\" AND attendance > 1881", "question": "Which Away has a Date of 14 september 2008, and an Attendance larger than 1881?", "context": "CREATE TABLE table_name_89 (away VARCHAR, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE away = \"victoria\"", "question": "What was victoria's away date?", "context": "CREATE TABLE table_name_18 (date VARCHAR, away VARCHAR)"}, {"answer": "SELECT away FROM table_name_31 WHERE score = \"1:2\" AND home = \"vida\"", "question": "Which Away has a Score of 1:2, and a Home of vida?", "context": "CREATE TABLE table_name_31 (away VARCHAR, score VARCHAR, home VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_50 WHERE away = \"real juventud\"", "question": "Which Attendance has an Away of real juventud?", "context": "CREATE TABLE table_name_50 (attendance INTEGER, away VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_13 WHERE round = \"r1\" AND venue = \"h\"", "question": "What was the lowest attendance in round r1 at H venue?", "context": "CREATE TABLE table_name_13 (attendance INTEGER, round VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(pumpers) FROM table_name_78 WHERE cars = 5", "question": "what is the highest pumpers when cars is 5?", "context": "CREATE TABLE table_name_78 (pumpers INTEGER, cars VARCHAR)"}, {"answer": "SELECT MAX(tankers) FROM table_name_84 WHERE pumpers > 2", "question": "what is the highest tankers when pumpers is more than 2?", "context": "CREATE TABLE table_name_84 (tankers INTEGER, pumpers INTEGER)"}, {"answer": "SELECT skip FROM table_name_30 WHERE second = \"philippe caux\"", "question": "What is the skip with a second of Philippe Caux?", "context": "CREATE TABLE table_name_30 (skip VARCHAR, second VARCHAR)"}, {"answer": "SELECT lead FROM table_name_19 WHERE season = \"2004-05\"", "question": "What is the Lead in the 2004-05 Season?", "context": "CREATE TABLE table_name_19 (lead VARCHAR, season VARCHAR)"}, {"answer": "SELECT third FROM table_name_39 WHERE lead = \"philippe caux\" AND season = \"1993-94\"", "question": "What is the Third in the 1993-94 season where Philippe Caux was a lead?", "context": "CREATE TABLE table_name_39 (third VARCHAR, lead VARCHAR, season VARCHAR)"}, {"answer": "SELECT skip FROM table_name_40 WHERE lead = \"tony angiboust\"", "question": "What is the skip when Tony Angiboust was a lead?", "context": "CREATE TABLE table_name_40 (skip VARCHAR, lead VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_1 WHERE lost = 3 AND played < 6", "question": "What is the sum of against scores when there are 3 losses and less than 6 games played?", "context": "CREATE TABLE table_name_1 (against VARCHAR, lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_25 WHERE season = \"2003-04\"", "question": "What is the highest amount of games played in the 2003-04 season?", "context": "CREATE TABLE table_name_25 (played INTEGER, season VARCHAR)"}, {"answer": "SELECT MAX(sample_size) FROM table_name_72 WHERE date = \"nov 9-11, 2007\" AND margin_of_error < 4.3", "question": "What was the sample size for the poll from Nov 9-11, 2007 with a margin of error less than 4.3?", "context": "CREATE TABLE table_name_72 (sample_size INTEGER, date VARCHAR, margin_of_error VARCHAR)"}, {"answer": "SELECT sample_size FROM table_name_80 WHERE republican = \"ron paul\"", "question": "What was the sample size for the poll featuring Republican Ron Paul?", "context": "CREATE TABLE table_name_80 (sample_size VARCHAR, republican VARCHAR)"}, {"answer": "SELECT MAX(score) FROM table_name_94 WHERE country = \"united states\" AND player = \"tom purtzer\"", "question": "When Tom Purtzer of the United States played what is the maximum score?", "context": "CREATE TABLE table_name_94 (score INTEGER, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_18 WHERE player = \"ben crenshaw\"", "question": "Ben Crenshaw has what To par?", "context": "CREATE TABLE table_name_18 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_54 WHERE player = \"nick price\"", "question": "What was the score to par after two rounds for Nick Price?", "context": "CREATE TABLE table_name_54 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_32 WHERE country = \"italy\"", "question": "What place was the player from Italy in ?", "context": "CREATE TABLE table_name_32 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT common_name FROM table_name_18 WHERE color = \"darker colors\"", "question": "What is the common name for the creature with darker colors?", "context": "CREATE TABLE table_name_18 (common_name VARCHAR, color VARCHAR)"}, {"answer": "SELECT length__female_ FROM table_name_15 WHERE common_name = \"panther chameleon\"", "question": "What is the length of the Panther Chameleon?", "context": "CREATE TABLE table_name_15 (length__female_ VARCHAR, common_name VARCHAR)"}, {"answer": "SELECT color FROM table_name_54 WHERE scientific_name = \"chamaeleo calyptratus\"", "question": "What is the color of the Chamaeleo Calyptratus?", "context": "CREATE TABLE table_name_54 (color VARCHAR, scientific_name VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_26 WHERE score = 70 - 68 - 74 - 70 = 282", "question": "What was the TO par for the player who scored 70-68-74-70=282?", "context": "CREATE TABLE table_name_26 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_67 WHERE partner = \"ji\u0159\u00ed nov\u00e1k\"", "question": "What is Opponents In The Final, when Partner is \"Ji\u0159\u00ed Nov\u00e1k\"?", "context": "CREATE TABLE table_name_67 (opponents_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_3 WHERE tournament = \"milan , italy\"", "question": "What is Outcome, when Tournament is \"Milan , Italy\"?", "context": "CREATE TABLE table_name_3 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_61 WHERE surface = \"carpet\" AND tournament = \"milan , italy\"", "question": "What is Opponents In The Final, when Surface is \"Carpet\", and when Tournament is \"Milan , Italy\"?", "context": "CREATE TABLE table_name_61 (opponents_in_the_final VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_name_67 WHERE partner = \"carl-uwe steeb\"", "question": "What is the total number of Date, when Partner is \"Carl-Uwe Steeb\"?", "context": "CREATE TABLE table_name_67 (date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_73 WHERE college = \"south carolina\"", "question": "Which team picked a player(s) from South Carolina?", "context": "CREATE TABLE table_name_73 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_40 WHERE player = \"keith shologan\"", "question": "What college did Keith Shologan play for?", "context": "CREATE TABLE table_name_40 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_91 WHERE pick__number < 6 AND player = \"keith shologan\"", "question": "What position does a Keith Shologan, who was picked higher than 6, play?", "context": "CREATE TABLE table_name_91 (position VARCHAR, pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(inflation_index__2000) = 100 AS _ FROM table_name_34 WHERE year < 1980", "question": "What year before 1980 has is the highest Inflation Index (2000=100)?", "context": "CREATE TABLE table_name_34 (year INTEGER, inflation_index__2000 INTEGER)"}, {"answer": "SELECT frequency FROM table_name_64 WHERE voltage = \"1.6v\" AND part_number_s_ = \"kp80524kx300256kc80524kx300256pmg30002002aa\"", "question": "Which frequency has voltage of 1.6v and part number kp80524kx300256kc80524kx300256pmg30002002aa?", "context": "CREATE TABLE table_name_64 (frequency VARCHAR, voltage VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_46 WHERE socket = \"\u03bcpga2 bga2 mmc-2\"", "question": "Which model number has socket \u03bcpga2 bga2 mmc-2?", "context": "CREATE TABLE table_name_46 (model_number VARCHAR, socket VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_48 WHERE model_number = \"mobile pentium 333\"", "question": "What is the L2 cache for the Mobile Pentium 333?", "context": "CREATE TABLE table_name_48 (l2_cache VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_37 WHERE gold = \"3\" AND bronze < \"3\" AND silver = \"3\"", "question": "How many totals have golds of 3, silvers of 3, and bronzes under 3?", "context": "CREATE TABLE table_name_37 (total INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT nation FROM table_name_52 WHERE rank = \"7\"", "question": "Which nation has a rank of 7?", "context": "CREATE TABLE table_name_52 (nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_76 WHERE silver = \"1\" AND total > 2", "question": "What is the average bronze with silvers of 1 and totals over 2?", "context": "CREATE TABLE table_name_76 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT gold FROM table_name_45 WHERE nation = \"germany\"", "question": "How many golds does Germany have?", "context": "CREATE TABLE table_name_45 (gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_43 WHERE total < 4 AND rank = \"10\"", "question": "What is the total number of bronzes with totals under 4 and ranks of 10?", "context": "CREATE TABLE table_name_43 (bronze VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_2 WHERE class = \"50cc\" AND year = 1965 AND wins < 0", "question": "What is the lowest Points, when Class is 50cc, when Year is 1965, and when Wins is less than 0?", "context": "CREATE TABLE table_name_2 (points INTEGER, wins VARCHAR, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_70 WHERE wins < 0", "question": "What is the total number of Year, when Wins is less than 0?", "context": "CREATE TABLE table_name_70 (year VARCHAR, wins INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_42 WHERE year > 1959 AND class = \"250cc\"", "question": "What is the sum of Points, when Year is after 1959, and when Class is 250cc?", "context": "CREATE TABLE table_name_42 (points INTEGER, year VARCHAR, class VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_17 WHERE points < 1", "question": "What is the total number of Wins, when Points is less than 1?", "context": "CREATE TABLE table_name_17 (wins VARCHAR, points INTEGER)"}, {"answer": "SELECT SUM(wins) FROM table_name_2 WHERE year = 1959", "question": "What is the sum of Wins, when Year is 1959?", "context": "CREATE TABLE table_name_2 (wins INTEGER, year VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_17 WHERE goals_for = 73 AND goals_against > 69", "question": "What is the fewest games played for teams with 73 goals for and more than 69 goals against?", "context": "CREATE TABLE table_name_17 (played INTEGER, goals_for VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_26 WHERE lost = 25", "question": "What is the highest number of goals for for teams with 25 losses?", "context": "CREATE TABLE table_name_26 (goals_for INTEGER, lost VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_50 WHERE goals_against = 66 AND position < 15", "question": "What is the most losses for positions under 15 and 66 goals against?", "context": "CREATE TABLE table_name_50 (lost INTEGER, goals_against VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(goals_against) FROM table_name_20 WHERE points_1 = \"50\" AND goals_for > 56", "question": "What is the average goals against for teams with more than 56 goals for and exactly 50 points?", "context": "CREATE TABLE table_name_20 (goals_against INTEGER, points_1 VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT leader FROM table_name_26 WHERE _percentage_of_seats = \"spoilt votes\"", "question": "Which Leader has Spoilt Votes as % of Seats?", "context": "CREATE TABLE table_name_26 (leader VARCHAR, _percentage_of_seats VARCHAR)"}, {"answer": "SELECT _percentage_fpv FROM table_name_3 WHERE party = \"workers' party\"", "question": "What is the %FPv for the Workers' Party?", "context": "CREATE TABLE table_name_3 (_percentage_fpv VARCHAR, party VARCHAR)"}, {"answer": "SELECT first_pref_votes FROM table_name_23 WHERE _percentage_fpv = \"0.06\"", "question": "What is the First Pref Votes for the % FPv of 0.06?", "context": "CREATE TABLE table_name_23 (first_pref_votes VARCHAR, _percentage_fpv VARCHAR)"}, {"answer": "SELECT first_pref_votes FROM table_name_91 WHERE leader = \"n/a\" AND party = \"independent\"", "question": "What is the First Pref Votes where the Leader is n/a and the Party is Independent?", "context": "CREATE TABLE table_name_91 (first_pref_votes VARCHAR, leader VARCHAR, party VARCHAR)"}, {"answer": "SELECT seats FROM table_name_49 WHERE leader = \"enda kenny\"", "question": "What is the number of Seats for Leader Enda kenny?", "context": "CREATE TABLE table_name_49 (seats VARCHAR, leader VARCHAR)"}, {"answer": "SELECT date_to_[h_] FROM table_name_38 WHERE position_[f_] = \"defender\" AND goals < 3 AND appearances > 113 AND date_from_[g_] = \"1997\"", "question": "What is Date to [H], when Position [F] is \"Defender\", when Goals is less than 3, when Appearances is greater than 113, and when Date From [G] is \"1997\"?", "context": "CREATE TABLE table_name_38 (date_to_ VARCHAR, h_ VARCHAR, appearances VARCHAR, date_from_ VARCHAR, g_ VARCHAR, goals VARCHAR, position_ VARCHAR, f_ VARCHAR)"}, {"answer": "SELECT club_source_[i_] FROM table_name_14 WHERE name = \"andrew mccombie category:articles with hcards\"", "question": "What is Club Source [I ], when Name is \"Andrew McCombie Category:Articles With hCards\"?", "context": "CREATE TABLE table_name_14 (club_source_ VARCHAR, i_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_60 WHERE goals = 80 AND club_source_[i_] = \"71 [ dead link ]\"", "question": "What is Name, when Goals is \"80\", and when Club Source [I ] is \"71 [ dead link ]\"?", "context": "CREATE TABLE table_name_60 (name VARCHAR, goals VARCHAR, club_source_ VARCHAR, i_ VARCHAR)"}, {"answer": "SELECT appearances FROM table_name_18 WHERE position_[f_] = \"defender\" AND date_to_[h_] = \"1938\"", "question": "What is Appearances, when Postion [F ] is \"Defender\", and when Date to [H ] is \"1938\"?", "context": "CREATE TABLE table_name_18 (appearances VARCHAR, position_ VARCHAR, f_ VARCHAR, date_to_ VARCHAR, h_ VARCHAR)"}, {"answer": "SELECT AVG(score) FROM table_name_75 WHERE place = \"t3\" AND player = \"doug sanders\"", "question": "WHAT IS AVERAGE SCORE WITH T3 PLACE, FOR DOUG SANDERS?", "context": "CREATE TABLE table_name_75 (score INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_59 WHERE country = \"united states\" AND to_par = \"e\" AND score = 72 - 75 - 70 - 71 = 288", "question": "How much is the money ($) when the country is united states, to par is e and the score is 72-75-70-71=288?", "context": "CREATE TABLE table_name_59 (money___ INTEGER, country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_75 WHERE player = \"roger maltbie\"", "question": "what is the to par when the player is roger maltbie?", "context": "CREATE TABLE table_name_75 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS $__ FROM table_name_97 WHERE score = 67 - 71 - 72 - 72 = 282", "question": "How much is the money ($) when the score is 67-71-72-72=282?", "context": "CREATE TABLE table_name_97 (money___ VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_82 WHERE place = \"8\"", "question": "what is the to par when the place is 8?", "context": "CREATE TABLE table_name_82 (to_par VARCHAR, place VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE game > 47 AND location_attendance = \"rose garden 20,250\"", "question": "WHAT IS THE SCORE OF THE GAME LARGER THAN 47, AT THE ROSE GARDEN 20,250 IN ATTENDANCE?", "context": "CREATE TABLE table_name_17 (score VARCHAR, game VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_7 WHERE date = \"may 31, 1987\"", "question": "What tournament was on May 31, 1987?", "context": "CREATE TABLE table_name_7 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_93 WHERE date = \"may 31, 1987\"", "question": "What tournament was on May 31, 1987?", "context": "CREATE TABLE table_name_93 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_72 WHERE winning_score = \u20139(69 - 71 - 67 = 207)", "question": "What tournament had a winning score of \u20139 (69-71-67=207)?", "context": "CREATE TABLE table_name_72 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_77 WHERE winning_score = \u201313(75 - 68 - 68 = 211)", "question": "Who was the runner(s)-up when the winning score was \u201313 (75-68-68=211)?", "context": "CREATE TABLE table_name_77 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_12 WHERE margin_of_victory = \"1 point\"", "question": "What tournament had a 1 point margin of victory?", "context": "CREATE TABLE table_name_12 (tournament VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_50 WHERE runner_s__up = \"laura davies\"", "question": "What tournament was Laura Davies the runner-up?", "context": "CREATE TABLE table_name_50 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT location FROM table_name_36 WHERE opponent = \"bob stines\"", "question": "What is the Location of the match against Bob Stines?", "context": "CREATE TABLE table_name_36 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_41 WHERE date = \"23 october 1966\"", "question": "What is the venue of the game that was played on 23 October 1966?", "context": "CREATE TABLE table_name_41 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_72 WHERE competition = \"friendly\" AND date = \"17 december 1967\"", "question": "Where was the friendly competition on 17 December 1967 played at?", "context": "CREATE TABLE table_name_72 (venue VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_66 WHERE 2012 = \"statistics by surface\"", "question": "What 2009 has statistics by surface in 2012?", "context": "CREATE TABLE table_name_66 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_12 WHERE 2007 = \"atp world tour masters 1000\"", "question": "What 2001 has a ATP World Tour Masters 1000 2007?", "context": "CREATE TABLE table_name_12 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_30 WHERE 2006 = \"a\" AND 2011 = \"a\"", "question": "What 2010 has an A 2006 & 2011?", "context": "CREATE TABLE table_name_30 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_3 WHERE 2010 = \"0\" AND 2008 = \"0\"", "question": "What 2009 has a 0 in 2008 & 2010?", "context": "CREATE TABLE table_name_3 (Id VARCHAR)"}, {"answer": "SELECT finish FROM table_name_96 WHERE country = \"united states\" AND player = \"hale irwin\"", "question": "What was the finishing position of Hale Irwin, of the United states?", "context": "CREATE TABLE table_name_96 (finish VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT finish FROM table_name_92 WHERE year_s__won = \"1965\"", "question": "Where did the player who won in 1965 finish?", "context": "CREATE TABLE table_name_92 (finish VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT finish FROM table_name_29 WHERE player = \"jerry pate\"", "question": "Where did Jerry Pate finish?", "context": "CREATE TABLE table_name_29 (finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_73 WHERE country = \"united states\" AND year_s__won = \"1978\"", "question": "What was the average total for the player from the United States, who won in 1978?", "context": "CREATE TABLE table_name_73 (total INTEGER, country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_92 WHERE date = \"september 19, 1999\"", "question": "What team was the opponent for the game played on September 19, 1999?", "context": "CREATE TABLE table_name_92 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_46 WHERE opponent = \"bye\"", "question": "What week was the bye week?", "context": "CREATE TABLE table_name_46 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_87 WHERE date = \"december 19, 1999\"", "question": "What team was the opponent for the game played on December 19, 1999?", "context": "CREATE TABLE table_name_87 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_45 WHERE week = 7", "question": "What is the result from the game played on week 7?", "context": "CREATE TABLE table_name_45 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(seats) FROM table_name_86 WHERE election = 1992", "question": "What is the lowest number of seats of the 1992 election?", "context": "CREATE TABLE table_name_86 (seats INTEGER, election VARCHAR)"}, {"answer": "SELECT seats FROM table_name_96 WHERE share_of_votes = \"41.2%\"", "question": "How many seats had a 41.2% share of votes?", "context": "CREATE TABLE table_name_96 (seats VARCHAR, share_of_votes VARCHAR)"}, {"answer": "SELECT share_of_votes FROM table_name_40 WHERE number_of_ndc_votes = \"3,567,021\"", "question": "What is the share of votes with 3,567,021 NDC votes?", "context": "CREATE TABLE table_name_40 (share_of_votes VARCHAR, number_of_ndc_votes VARCHAR)"}, {"answer": "SELECT total FROM table_name_12 WHERE set_3 = \"25\u201327\"", "question": "What was the total when the set 3 score was 25\u201327?", "context": "CREATE TABLE table_name_12 (total VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE total = \"60\u201377\"", "question": "On what date was the total 60\u201377?", "context": "CREATE TABLE table_name_88 (date VARCHAR, total VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_58 WHERE total = \"117\u2013109\"", "question": "What is the score for set 1 with a total of 117\u2013109?", "context": "CREATE TABLE table_name_58 (set_1 VARCHAR, total VARCHAR)"}, {"answer": "SELECT team FROM table_name_28 WHERE car_no = \"11\"", "question": "What team operates car 11?", "context": "CREATE TABLE table_name_28 (team VARCHAR, car_no VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_7 WHERE driver = \"darren manning\"", "question": "What was the time/retired of Darren Manning?", "context": "CREATE TABLE table_name_7 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT points FROM table_name_65 WHERE car_no = \"20\"", "question": "How many points did car 20 score?", "context": "CREATE TABLE table_name_65 (points VARCHAR, car_no VARCHAR)"}, {"answer": "SELECT car_no FROM table_name_46 WHERE team = \"rahal letterman\" AND driver = \"jeff simmons\"", "question": "What is the car number for Jeff Simmons on the Rahal Letterman team?", "context": "CREATE TABLE table_name_46 (car_no VARCHAR, team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT name FROM table_name_54 WHERE length_meters > 66.4 AND km_from_kingston = 138.8", "question": "What is Name, when Length Meters is greater than 66.4, and when Km From Kingston is 138.8?", "context": "CREATE TABLE table_name_54 (name VARCHAR, length_meters VARCHAR, km_from_kingston VARCHAR)"}, {"answer": "SELECT COUNT(length_feet) FROM table_name_97 WHERE parish = \"clarendon\" AND km_from_kingston = 71.2 AND length_meters < 21.3", "question": "What is the total number of Length Feet, when Parish is Clarendon, when Km From Kingston is 71.2, and when Length Meters is less than 21.3?", "context": "CREATE TABLE table_name_97 (length_feet VARCHAR, length_meters VARCHAR, parish VARCHAR, km_from_kingston VARCHAR)"}, {"answer": "SELECT MAX(km_from_kingston) FROM table_name_61 WHERE mi_from_kingston < 108 AND length_meters = 260.6", "question": "What is the highest Km From Kingston, when Mi From Kingston is less than 108, and when Length Meters is 260.6?", "context": "CREATE TABLE table_name_61 (km_from_kingston INTEGER, mi_from_kingston VARCHAR, length_meters VARCHAR)"}, {"answer": "SELECT length_feet FROM table_name_28 WHERE mi_from_kingston > 84.5 AND length_meters > 55.5 AND name = \"unnamed\"", "question": "What is Lenth Feet, when Mi From Kingston is greater than 84.5, when Length Meters is greater than 55.5, and when Name is Unnamed?", "context": "CREATE TABLE table_name_28 (length_feet VARCHAR, name VARCHAR, mi_from_kingston VARCHAR, length_meters VARCHAR)"}, {"answer": "SELECT place FROM table_name_95 WHERE player = \"lee trevino\"", "question": "Which Place has a Player of lee trevino?", "context": "CREATE TABLE table_name_95 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_5 WHERE place = \"t7\" AND score = 73 - 69 - 73 = 215", "question": "Name Country which has a Place of t7, and a Score of 73-69-73=215?", "context": "CREATE TABLE table_name_5 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT week FROM table_name_49 WHERE tournament = \"rome\"", "question": "Which week held a tournament in Rome?", "context": "CREATE TABLE table_name_49 (week VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT res FROM table_name_79 WHERE record = \"12-2\"", "question": "What is the result of the fight when record is 12-2?", "context": "CREATE TABLE table_name_79 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_7 WHERE event = \"ufc 34\"", "question": "How many rounds was the fight at UFC 34?", "context": "CREATE TABLE table_name_7 (round INTEGER, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_26 WHERE opponent = \"zaza tkeshelashvili\"", "question": "What is the location of the fight against Zaza Tkeshelashvili?", "context": "CREATE TABLE table_name_26 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_89 WHERE title = \"baka to test to sh\u014dkanj\u016b\"", "question": "what is the average year when the title is baka to test to sh\u014dkanj\u016b?", "context": "CREATE TABLE table_name_89 (year INTEGER, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_96 WHERE imprint = \"dengeki bunko\" AND artist = \"kiyotaka haimura\"", "question": "what is the title when the imprint is dengeki bunko and the artist is kiyotaka haimura?", "context": "CREATE TABLE table_name_96 (title VARCHAR, imprint VARCHAR, artist VARCHAR)"}, {"answer": "SELECT imprint FROM table_name_22 WHERE title = \"owari no chronicle (ahead series)\"", "question": "what is the imprint when the title is owari no chronicle (ahead series)?", "context": "CREATE TABLE table_name_22 (imprint VARCHAR, title VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_42 WHERE author = \"reki kawahara\"", "question": "what is the earliest year when the author is reki kawahara?", "context": "CREATE TABLE table_name_42 (year INTEGER, author VARCHAR)"}, {"answer": "SELECT character FROM table_name_75 WHERE artist = \"take\" AND year < 2006", "question": "who is the character when the artist is take and the year is before 2006?", "context": "CREATE TABLE table_name_75 (character VARCHAR, artist VARCHAR, year VARCHAR)"}, {"answer": "SELECT language FROM table_name_15 WHERE draw = 3", "question": "Which language has 3 draws?", "context": "CREATE TABLE table_name_15 (language VARCHAR, draw VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_56 WHERE time = \"6:00 pm\" AND away_team = \"hawthorn\"", "question": "What is the away team score for the match at 6:00 PM and an away team of Hawthorn?", "context": "CREATE TABLE table_name_56 (away_team VARCHAR, time VARCHAR)"}, {"answer": "SELECT tenure FROM table_name_16 WHERE date_of_death = \"2001-08-31\"", "question": "What is the Tenure of the Officer with a Date of death of 2001-08-31?", "context": "CREATE TABLE table_name_16 (tenure VARCHAR, date_of_death VARCHAR)"}, {"answer": "SELECT cause_of_death FROM table_name_37 WHERE rank = \"detective\" AND name = \"donald william schneider\"", "question": "What is Detective Donald William Schneider's Cause of death?", "context": "CREATE TABLE table_name_37 (cause_of_death VARCHAR, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT tenure FROM table_name_23 WHERE name = \"gary david saunders\"", "question": "What is Gary David Saunders' Tenure?", "context": "CREATE TABLE table_name_23 (tenure VARCHAR, name VARCHAR)"}, {"answer": "SELECT date_of_death FROM table_name_47 WHERE cause_of_death = \"gunfire\" AND tenure = \"6 years\" AND name = \"maria cecilia rosa\"", "question": "What is gunfire victim Maria Cecilia Rosa with 6 years of Tenure Date of Death?", "context": "CREATE TABLE table_name_47 (date_of_death VARCHAR, name VARCHAR, cause_of_death VARCHAR, tenure VARCHAR)"}, {"answer": "SELECT lijsttrekker FROM table_name_51 WHERE year > 1990 AND chair = \"ingrid van engelshoven\"", "question": "What is Lijsttrekker, when Year is after 1990, and when Chair is \"Ingrid Van Engelshoven\"?", "context": "CREATE TABLE table_name_51 (lijsttrekker VARCHAR, year VARCHAR, chair VARCHAR)"}, {"answer": "SELECT fractievoorzitter FROM table_name_80 WHERE lijsttrekker = \"no elections\" AND year > 2005", "question": "What is Fractievoorzitter, when Lijsttrekker is \"No Elections\", and when Year is after 2005?", "context": "CREATE TABLE table_name_80 (fractievoorzitter VARCHAR, lijsttrekker VARCHAR, year VARCHAR)"}, {"answer": "SELECT cabinet FROM table_name_42 WHERE year > 1981 AND fractievoorzitter = \"hans van mierlo\" AND chair = \"w.i.j.m. vrijhoef\"", "question": "What is Cabinet, when Year is after 1981, when Fractievoorzitter is \"Hans Van Mierlo\", and when Chair is \"W.I.J.M. Vrijhoef\"?", "context": "CREATE TABLE table_name_42 (cabinet VARCHAR, chair VARCHAR, year VARCHAR, fractievoorzitter VARCHAR)"}, {"answer": "SELECT lijsttrekker FROM table_name_81 WHERE cabinet = \"hans van mierlo\" AND fractievoorzitter = \"thom de graaf\"", "question": "What is Lijsttrekker, when Cabinet is \"Hans Van Mierlo\", and when Fractievoorzitter is \"Thom De Graaf\"?", "context": "CREATE TABLE table_name_81 (lijsttrekker VARCHAR, cabinet VARCHAR, fractievoorzitter VARCHAR)"}, {"answer": "SELECT cabinet FROM table_name_79 WHERE year < 2001 AND lijsttrekker = \"no elections\" AND fractievoorzitter = \"hans van mierlo\" AND chair = \"s. van der loo\"", "question": "What is Cabinet, when Year is before 2001, when Lijsttrekker is \"No Elections\", when Fractievoorzitter is \"Hans Van Mierlo\", and when Chair is \"S. Van Der Loo\"?", "context": "CREATE TABLE table_name_79 (cabinet VARCHAR, chair VARCHAR, fractievoorzitter VARCHAR, year VARCHAR, lijsttrekker VARCHAR)"}, {"answer": "SELECT territory FROM table_name_23 WHERE channel = 144 AND broadcaster = \"astro\"", "question": "Which territory has a channel of 144 and a broadcaster of Astro?", "context": "CREATE TABLE table_name_23 (territory VARCHAR, channel VARCHAR, broadcaster VARCHAR)"}, {"answer": "SELECT tennis FROM table_name_52 WHERE school = \"youngstown state\"", "question": "What is the tennis status for youngstown state?", "context": "CREATE TABLE table_name_52 (tennis VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_73 WHERE soccer = \"yes\" AND tennis = \"yes\" AND indoor_track = \"yes\"", "question": "Which school has yes for soccer, tennis and indoor track.", "context": "CREATE TABLE table_name_73 (school VARCHAR, indoor_track VARCHAR, soccer VARCHAR, tennis VARCHAR)"}, {"answer": "SELECT bask FROM table_name_69 WHERE indoor_track = \"yes\" AND school = \"valparaiso\"", "question": "What is the basketball status for Valparaiso who has an indoor track status of yes?", "context": "CREATE TABLE table_name_69 (bask VARCHAR, indoor_track VARCHAR, school VARCHAR)"}, {"answer": "SELECT indoor_track FROM table_name_91 WHERE tennis = \"yes\" AND golf = \"no\"", "question": "What is the indoor track status for the school that has yes for tennis and no for golf?", "context": "CREATE TABLE table_name_91 (indoor_track VARCHAR, tennis VARCHAR, golf VARCHAR)"}, {"answer": "SELECT swimming FROM table_name_80 WHERE indoor_track = \"yes\" AND soccer = \"yes\" AND tennis = \"yes\"", "question": "What is th eswimming status for the school that has yes on indoor track, soccer and tennis?", "context": "CREATE TABLE table_name_80 (swimming VARCHAR, tennis VARCHAR, indoor_track VARCHAR, soccer VARCHAR)"}, {"answer": "SELECT tennis FROM table_name_78 WHERE golf = \"yes\" AND soccer = \"yes\" AND swimming = \"yes\" AND school = \"cleveland state\"", "question": "What is the status for tennis at cleveland state who has yes for swimming, golf and soccer?", "context": "CREATE TABLE table_name_78 (tennis VARCHAR, school VARCHAR, swimming VARCHAR, golf VARCHAR, soccer VARCHAR)"}, {"answer": "SELECT event FROM table_name_69 WHERE opponent = \"josh spearman\"", "question": "What event did Soares fight against josh spearman?", "context": "CREATE TABLE table_name_69 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_4 WHERE method = \"decision\"", "question": "What round was the fight won or loss by a decision?", "context": "CREATE TABLE table_name_4 (round INTEGER, method VARCHAR)"}, {"answer": "SELECT location FROM table_name_65 WHERE round = 3 AND method = \"decision\"", "question": "Where was the fight that lasted 3 rounds and was won or loss by a decision?", "context": "CREATE TABLE table_name_65 (location VARCHAR, round VARCHAR, method VARCHAR)"}, {"answer": "SELECT MIN(top_5) FROM table_name_45 WHERE year > 1995 AND team_s_ = \"#15 billy ballew motorsports\" AND starts > 4", "question": "what is the lowest top 5 when the year is after 1995, team(s) is #15 billy ballew motorsports, and starts is more than 4?", "context": "CREATE TABLE table_name_45 (top_5 INTEGER, starts VARCHAR, year VARCHAR, team_s_ VARCHAR)"}, {"answer": "SELECT method FROM table_name_15 WHERE opponent = \"chris myers\"", "question": "What was the method in the fight against Chris Myers?", "context": "CREATE TABLE table_name_15 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_27 WHERE event = \"tko 20: champion vs champion\"", "question": "What is the record in TKO 20: Champion Vs Champion?", "context": "CREATE TABLE table_name_27 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_2 WHERE location = \"quebec, canada\" AND opponent = \"david loiseau\"", "question": "How many rounds in the fight in Quebec, Canada against David Loiseau?", "context": "CREATE TABLE table_name_2 (round VARCHAR, location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_52 WHERE method = \"tko (punches)\"", "question": "Which event has a method of TKO (punches)?", "context": "CREATE TABLE table_name_52 (event VARCHAR, method VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_22 WHERE method = \"technical submission (guillotine choke)\"", "question": "Who is the opponent when the method is technical submission (guillotine choke)?", "context": "CREATE TABLE table_name_22 (opponent VARCHAR, method VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_95 WHERE round > 12 AND pick < 342", "question": "What was the school/club after round 12, and picked smaller than 342?", "context": "CREATE TABLE table_name_95 (school_club_team VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_70 WHERE school_club_team = \"florida state\"", "question": "What is the average pick for Florida State?", "context": "CREATE TABLE table_name_70 (pick INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_91 WHERE player = \"wayne fowler\" AND round > 7", "question": "What is the total number for the pick of the player Wayne Fowler and a round after 7?", "context": "CREATE TABLE table_name_91 (pick VARCHAR, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT college FROM table_name_41 WHERE overall < 315 AND round = 17", "question": "Which college had an overall smaller than 315 in round 17?", "context": "CREATE TABLE table_name_41 (college VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT college FROM table_name_19 WHERE pick > 6 AND position = \"rb\" AND round = 28", "question": "Which college with a position of rb had a pick larger than 6 in round 28?", "context": "CREATE TABLE table_name_19 (college VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT at_neutral_site FROM table_name_87 WHERE overall_record = \"mu, 15-8\"", "question": "With an overall record of MU, 15-8 what is the at neutral site?", "context": "CREATE TABLE table_name_87 (at_neutral_site VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT current_streak FROM table_name_28 WHERE last_10_meetings = \"ku, 8-2\"", "question": "For what current streak is KU, 8-2 under last 10 meetings?", "context": "CREATE TABLE table_name_28 (current_streak VARCHAR, last_10_meetings VARCHAR)"}, {"answer": "SELECT last_10_meetings FROM table_name_53 WHERE overall_record = \"*as of march 14, 2013\"", "question": "What is the record for the last 10 meetings when the overall record is *as of March 14, 2013?", "context": "CREATE TABLE table_name_53 (last_10_meetings VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT last_5_meetings FROM table_name_38 WHERE overall_record = \"ksu, 118-117\"", "question": "With an overall record of KSU, 118-117 what is the last 5 meetings?", "context": "CREATE TABLE table_name_38 (last_5_meetings VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT at_columbia FROM table_name_2 WHERE last_5_meetings = \"ku, 4-1\"", "question": "What is the record at Columbia when KU, 4-1 is the record for the last 5 minutes?", "context": "CREATE TABLE table_name_2 (at_columbia VARCHAR, last_5_meetings VARCHAR)"}, {"answer": "SELECT streak FROM table_name_99 WHERE stadium = \"miami orange bowl\"", "question": "What was the streak at the game at the Miami Orange Bowl?", "context": "CREATE TABLE table_name_99 (streak VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_59 WHERE week > 7 AND stadium = \"schaefer stadium\"", "question": "Who was the opposing team at Schaefer Stadium later in the season than week 7?", "context": "CREATE TABLE table_name_59 (opponent VARCHAR, week VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT result FROM table_name_77 WHERE week = 14", "question": "What was the result in week 14?", "context": "CREATE TABLE table_name_77 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_84 WHERE round = \"sf\"", "question": "What team was the opponent when the round was sf?", "context": "CREATE TABLE table_name_84 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_99 WHERE venue = \"a\" AND scorers = \"di matteo, m. hughes\"", "question": "What is the number of people in attendance when venue shows A, and Di Matteo, M. Hughes were the scorers?", "context": "CREATE TABLE table_name_99 (attendance INTEGER, venue VARCHAR, scorers VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_83 WHERE silver = 5 AND gold < 5 AND total < 7", "question": "What is the highest rank that has 5 silvers, less than 5 golds, and less than 7 total medals?", "context": "CREATE TABLE table_name_83 (rank INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_17 WHERE total < 5 AND gold < 4", "question": "What is the least amount of silvers for a team with less than 4 golds and less than 5 total medals?", "context": "CREATE TABLE table_name_17 (silver INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_23 WHERE edition = \"2003 davis cup europe/africa group ii\"", "question": "Who was the opponent for the 2003 davis cup europe/africa group ii?", "context": "CREATE TABLE table_name_23 (opponent VARCHAR, edition VARCHAR)"}, {"answer": "SELECT round FROM table_name_21 WHERE opponent = \"sergis kyratzis\"", "question": "What is the round when the match was against sergis kyratzis?", "context": "CREATE TABLE table_name_21 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(2012 AS _enrolment) FROM table_name_5 WHERE school_name = \"\u00e9cole mathieu-martin\" AND year_open > 1972", "question": "WHAT IS THE HIGHEST 2012 ENROLLMENT FOR \u00e9cole mathieu-martin, AFTER 1972?", "context": "CREATE TABLE table_name_5 (school_name VARCHAR, year_open VARCHAR)"}, {"answer": "SELECT MIN(2012 AS _enrolment) FROM table_name_5 WHERE school_name = \"\u00e9cole saint-ther\u00e8se\" AND year_open > 1954", "question": "WHAT IS THE ENROLLMENT FOR \u00e9cole saint-ther\u00e8se AFTER 1954?", "context": "CREATE TABLE table_name_5 (school_name VARCHAR, year_open VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE country = \"united states\" AND player = \"fuzzy zoeller\"", "question": "What was Fuzzy Zoeller's score in the United States?", "context": "CREATE TABLE table_name_82 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_52 WHERE player = \"miller barber\"", "question": "Where is Miller Barber from?", "context": "CREATE TABLE table_name_52 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE player = \"craig stadler\"", "question": "What was Craig Stadler's score?", "context": "CREATE TABLE table_name_80 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_3 WHERE place = \"t6\" AND country = \"united states\" AND player = \"leonard thompson\"", "question": "What is the to par for Leonard Thompson from the United States with a place of T6?", "context": "CREATE TABLE table_name_3 (to_par VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT position FROM table_name_88 WHERE jersey_number_s_ = \"15\" AND years = \"1987\"", "question": "what position did the player play who had a number of 15 who played in 1987?", "context": "CREATE TABLE table_name_88 (position VARCHAR, jersey_number_s_ VARCHAR, years VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_9 WHERE week = 1", "question": "What was the attendance for the week 1 game?", "context": "CREATE TABLE table_name_9 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_4 WHERE round = \"1\" AND event = \"the ultimate fighter 2 finale\"", "question": "Who was the opponent in the 1 round fight in the Ultimate Fighter 2 Finale?", "context": "CREATE TABLE table_name_4 (opponent VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_81 WHERE round = \"1\" AND record = \"18-7\"", "question": "Who is the opponent in the fight of 1 round when the record is 18-7?", "context": "CREATE TABLE table_name_81 (opponent VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_48 WHERE event = \"uw: ultimate fight minnesota\"", "question": "What is the record at the UW: Ultimate Fight Minnesota?", "context": "CREATE TABLE table_name_48 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_70 WHERE round = \"2\" AND method = \"submission (injury)\"", "question": "What is the record in the 2 round fight that ended by submission (injury)?", "context": "CREATE TABLE table_name_70 (record VARCHAR, round VARCHAR, method VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_71 WHERE event = \"ifa: clash of the champions\"", "question": "Who is the opponent at the IFA: Clash of the Champions?", "context": "CREATE TABLE table_name_71 (opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_80 WHERE res = \"loss\" AND event = \"rsf: shooto challenge 2\"", "question": "What is the record that resulted in a loss at the RSF: Shooto Challenge 2?", "context": "CREATE TABLE table_name_80 (record VARCHAR, res VARCHAR, event VARCHAR)"}, {"answer": "SELECT AVG(b__max_) FROM table_name_22 WHERE c__max_ > 156 AND taper = \"1:19.231\" AND d__max_ < 34.9", "question": "What is the B (max) average when the C (max) is greater than 156, the taper is 1:19.231, and the D (max) is less than 34.9?", "context": "CREATE TABLE table_name_22 (b__max_ INTEGER, d__max_ VARCHAR, c__max_ VARCHAR, taper VARCHAR)"}, {"answer": "SELECT COUNT(d__max_) FROM table_name_59 WHERE morse_taper_number < 3 AND c__max_ = 59.5", "question": "With a Morse Taper number less than 3 and a C (max) of 59.5 what is the total of D (max)?", "context": "CREATE TABLE table_name_59 (d__max_ VARCHAR, morse_taper_number VARCHAR, c__max_ VARCHAR)"}, {"answer": "SELECT SUM(morse_taper_number) FROM table_name_1 WHERE d__max_ = 20 AND b__max_ > 94", "question": "What's the total of the Morse Taper number when the D (max) is 20 and the B (max) greater than 94?", "context": "CREATE TABLE table_name_1 (morse_taper_number INTEGER, d__max_ VARCHAR, b__max_ VARCHAR)"}, {"answer": "SELECT SUM(d__max_) FROM table_name_17 WHERE taper = \"1:20.047\" AND c__max_ > 65.5", "question": "What total D (max) has a taper of 1:20.047, and a C (max) bigger than 65.5?", "context": "CREATE TABLE table_name_17 (d__max_ INTEGER, taper VARCHAR, c__max_ VARCHAR)"}, {"answer": "SELECT MIN(d__max_) FROM table_name_47 WHERE morse_taper_number < 0", "question": "What is the minimum D (max) when the Morse Taper number is less than 0?", "context": "CREATE TABLE table_name_47 (d__max_ INTEGER, morse_taper_number INTEGER)"}, {"answer": "SELECT AVG(react) FROM table_name_53 WHERE mark < 7.93", "question": "What is the average React, when Mark is less than 7.93?", "context": "CREATE TABLE table_name_53 (react INTEGER, mark INTEGER)"}, {"answer": "SELECT MIN(react) FROM table_name_79 WHERE name = \"candice davis\" AND lane < 3", "question": "What is the lowest React, when Name is \"Candice Davis\", and when Lane is less than 3?", "context": "CREATE TABLE table_name_79 (react INTEGER, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_8 WHERE mark = 7.93 AND react < 0.145", "question": "What is the total number of Lane, when Mark is \"7.93\", and when React is less than 0.145?", "context": "CREATE TABLE table_name_8 (lane VARCHAR, mark VARCHAR, react VARCHAR)"}, {"answer": "SELECT AVG(react) FROM table_name_91 WHERE name = \"candice davis\" AND lane < 3", "question": "What is the average React, when Name is \"Candice Davis\", and when Lane is less than 3?", "context": "CREATE TABLE table_name_91 (react INTEGER, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT COUNT(mark) FROM table_name_65 WHERE country = \"russia\" AND react < 0.165", "question": "What is the total number of Mark, when Country is \"Russia\", and when React is less than 0.165?", "context": "CREATE TABLE table_name_65 (mark VARCHAR, country VARCHAR, react VARCHAR)"}, {"answer": "SELECT round FROM table_name_40 WHERE method = \"submission (reverse armbar)\"", "question": "What is Round, when Method is \"submission (reverse armbar)\"?", "context": "CREATE TABLE table_name_40 (round VARCHAR, method VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_75 WHERE time = \"n/a\" AND location = \"canton, ohio, usa\"", "question": "What is the total number of Round(s), when Time is \"n/a\", and when Location is \"Canton, Ohio, USA\"?", "context": "CREATE TABLE table_name_75 (round VARCHAR, time VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_12 WHERE opponent = \"jonathan goulet\"", "question": "What is Location, when Opponent is \"Jonathan Goulet\"?", "context": "CREATE TABLE table_name_12 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_96 WHERE method = \"submission (triangle choke)\" AND time = \"0:48\"", "question": "What is Record, when Method is \"submission (triangle choke)\", and when Time is 0:48?", "context": "CREATE TABLE table_name_96 (record VARCHAR, method VARCHAR, time VARCHAR)"}, {"answer": "SELECT premiere FROM table_name_30 WHERE rank = \"#7\"", "question": "When was the premiere of the show that had a rank of #7?", "context": "CREATE TABLE table_name_30 (premiere VARCHAR, rank VARCHAR)"}, {"answer": "SELECT finale FROM table_name_62 WHERE premiere = \"september 24, 2002\"", "question": "When was the finale played when the show premiered on September 24, 2002?", "context": "CREATE TABLE table_name_62 (finale VARCHAR, premiere VARCHAR)"}, {"answer": "SELECT MIN(viewers__in_households_) FROM table_name_54 WHERE finale = \"may 23, 1995\" AND episodes > 22", "question": "What is the minimum number of views that watched the show when there was more than 22 episodes and the finale was on May 23, 1995?", "context": "CREATE TABLE table_name_54 (viewers__in_households_ INTEGER, finale VARCHAR, episodes VARCHAR)"}, {"answer": "SELECT title FROM table_name_73 WHERE date = 2001 AND artist = \"mellow\"", "question": "Which title was created in 2001 by Mellow?", "context": "CREATE TABLE table_name_73 (title VARCHAR, date VARCHAR, artist VARCHAR)"}, {"answer": "SELECT artist FROM table_name_41 WHERE number = \"atm24016\"", "question": "Which artist has a serial number of ATM24016?", "context": "CREATE TABLE table_name_41 (artist VARCHAR, number VARCHAR)"}, {"answer": "SELECT MAX(date) FROM table_name_56 WHERE number = \"infec 107cdsx\"", "question": "What is the latest date that has a serial number of Infec 107CDSX?", "context": "CREATE TABLE table_name_56 (date INTEGER, number VARCHAR)"}, {"answer": "SELECT artist FROM table_name_68 WHERE number = \"booncd1\"", "question": "Which artist has a serial number of BOONCD1?", "context": "CREATE TABLE table_name_68 (artist VARCHAR, number VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_11 WHERE streak = \"win 1\" AND date = \"february 18\"", "question": "What is the highest Game, when Streak is \"Win 1\", and when Date is \"February 18\"?", "context": "CREATE TABLE table_name_11 (game INTEGER, streak VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_3 WHERE home_team = \"walsall\"", "question": "Which Away team has a Home team of walsall?", "context": "CREATE TABLE table_name_3 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE score = \"2\u20132\" AND away_team = \"aylesbury united\"", "question": "Which Date has a Score of 2\u20132, and an Away team of aylesbury united?", "context": "CREATE TABLE table_name_48 (date VARCHAR, score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE tie_no = \"33\"", "question": "Which Score has a Tie no of 33?", "context": "CREATE TABLE table_name_56 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_25 WHERE tie_no = \"replay\" AND date = \"19 november 1985\" AND away_team = \"tranmere rovers\"", "question": "Which Home team has a Tie no of replay, a Date of 19 november 1985, and an Away team of tranmere rovers?", "context": "CREATE TABLE table_name_25 (home_team VARCHAR, away_team VARCHAR, tie_no VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE home_team = \"windsor & eton\"", "question": "Which Score has a Home team of windsor & eton?", "context": "CREATE TABLE table_name_30 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE home_team = \"rochdale\"", "question": "Which Date has a Home team of rochdale?", "context": "CREATE TABLE table_name_60 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_79 WHERE score = 71 - 71 - 70 - 73 = 285", "question": "In the game that has a score of 71-71-70-73=285 what is the to par?", "context": "CREATE TABLE table_name_79 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE place = \"t4\" AND player = \"butch baird\"", "question": "What is score of the game that was at a paace of t4, and had the player Butch Baird?", "context": "CREATE TABLE table_name_36 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_58 WHERE player = \"johnny miller\"", "question": "Which country has the player Johnny Miller?", "context": "CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_28 WHERE place = \"t4\" AND score = 70 - 68 - 69 - 73 = 280", "question": "Which player has a score of 70-68-69-73=280 and a place of t4?", "context": "CREATE TABLE table_name_28 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(1994 AS _1995) FROM table_name_2 WHERE points = 145 AND played < 114", "question": "What is the lowest 1994-1995, when Points is 145, and when Played is less than 114?", "context": "CREATE TABLE table_name_2 (points VARCHAR, played VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE league_position = \"1st\" AND result_f___a = \"5 \u2013 0\"", "question": "What date that was the league position was 1st, and the result F\u2013 A was 5 \u2013 0?", "context": "CREATE TABLE table_name_29 (date VARCHAR, league_position VARCHAR, result_f___a VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE opponents = \"nottingham forest\" AND h___a = \"a\"", "question": "What date was the opponent Nottingham Forest, and the H/A was A?", "context": "CREATE TABLE table_name_7 (date VARCHAR, opponents VARCHAR, h___a VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE opponents = \"notts county\" AND league_position = \"1st\"", "question": "What date was Notts County the opponent and the league position was 1st?", "context": "CREATE TABLE table_name_96 (date VARCHAR, opponents VARCHAR, league_position VARCHAR)"}, {"answer": "SELECT mark FROM table_name_83 WHERE lane < 2 AND heat < 5", "question": "What is the mark for the runner in lanes under 2 and heats under 5?", "context": "CREATE TABLE table_name_83 (mark VARCHAR, lane VARCHAR, heat VARCHAR)"}, {"answer": "SELECT name FROM table_name_64 WHERE heat = 5 AND country = \"guyana\"", "question": "Who is in heat 5 from Guyana?", "context": "CREATE TABLE table_name_64 (name VARCHAR, heat VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_21 WHERE heat > 2 AND name = \"khadevis robinson\"", "question": "How many lanes was Khadevis Robinson in for heats over 2?", "context": "CREATE TABLE table_name_21 (lane VARCHAR, heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT icb_sector FROM table_name_47 WHERE ticker_symbol = \"pp\"", "question": "Which ICB Sector had a ticker symbol of pp?", "context": "CREATE TABLE table_name_47 (icb_sector VARCHAR, ticker_symbol VARCHAR)"}, {"answer": "SELECT icb_sector FROM table_name_81 WHERE company = \"vallourec\"", "question": "Which ICB Sector belongs to vallourec?", "context": "CREATE TABLE table_name_81 (icb_sector VARCHAR, company VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_92 WHERE result = \"w 23-20\" AND attendance < 34 OFFSET 127", "question": "Which Week is the highest one that has a Result of w 23-20, and an Attendance smaller than 34,127?", "context": "CREATE TABLE table_name_92 (week INTEGER, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_68 WHERE date = \"october 3, 1976\"", "question": "What was the average attendance on october 3, 1976?", "context": "CREATE TABLE table_name_68 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_30 WHERE date = \"december 4, 1976\" AND attendance > 57 OFFSET 366", "question": "How many weeks have a Date of december 4, 1976, and an Attendance larger than 57,366?", "context": "CREATE TABLE table_name_30 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(2011) FROM table_name_48 WHERE airport = \"sydney airport\" AND rank < 1", "question": "What was the total number of aircrafts in 2011 for sydney airport that was ranked number 1?", "context": "CREATE TABLE table_name_48 (airport VARCHAR, rank VARCHAR)"}, {"answer": "SELECT result FROM table_name_45 WHERE date = \"november 25, 2001\"", "question": "What is the result for November 25, 2001?", "context": "CREATE TABLE table_name_45 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_94 WHERE week > 12 AND opponent = \"green bay packers\"", "question": "What is the result for week 12 against the Green Bay Packers?", "context": "CREATE TABLE table_name_94 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_45 WHERE week = 8", "question": "What was the attendance like for week 8?", "context": "CREATE TABLE table_name_45 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT lansing__lan_ FROM table_name_60 WHERE kalamazoo__azo_ = \"$599.39\"", "question": "What was the passenger fare for Lansing, when the passenger fare for Kalamazoo was $599.39?", "context": "CREATE TABLE table_name_60 (lansing__lan_ VARCHAR, kalamazoo__azo_ VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_99 WHERE detroit__dtw_ = \"$307.29\"", "question": "For how many years did Detroit have a passenger fare of $307.29?", "context": "CREATE TABLE table_name_99 (year INTEGER, detroit__dtw_ VARCHAR)"}, {"answer": "SELECT grand_rapids__grr_ FROM table_name_89 WHERE detroit__dtw_ = \"$378.55\"", "question": "What was the passenger fare for Grand Rapids, when the passenger fare for Detroit was $378.55?", "context": "CREATE TABLE table_name_89 (grand_rapids__grr_ VARCHAR, detroit__dtw_ VARCHAR)"}, {"answer": "SELECT detroit__dtw_ FROM table_name_36 WHERE year < 2010 AND kalamazoo__azo_ = \"$517.32\"", "question": "Before the year 2010, and when Kalamazoo had a passenger fare of $517.32, what was the passenger fare for Detroit?", "context": "CREATE TABLE table_name_36 (detroit__dtw_ VARCHAR, year VARCHAR, kalamazoo__azo_ VARCHAR)"}, {"answer": "SELECT club FROM table_name_66 WHERE league_goals = \"21\"", "question": "Which Club has a League goals of 21?", "context": "CREATE TABLE table_name_66 (club VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT club FROM table_name_74 WHERE league_cup_goals = 0 AND league_goals = \"11\" AND scorer = \"joe laidlaw\"", "question": "Which Club has a League Cup goals of 0, and a League goals of 11, and a Scorer of joe laidlaw?", "context": "CREATE TABLE table_name_74 (club VARCHAR, scorer VARCHAR, league_cup_goals VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT MAX(fa_cup_goals) FROM table_name_20 WHERE league_goals = \"18\" AND club = \"sheffield united\"", "question": "Which FA Cup goals have a League goals of 18, and a Club of sheffield united?", "context": "CREATE TABLE table_name_20 (fa_cup_goals INTEGER, league_goals VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(league_cup_goals) FROM table_name_93 WHERE scorer = \"ken houghton\" AND fa_cup_goals < 0", "question": "Which League Cup goals have a Scorer of ken houghton, and an FA Cup goals smaller than 0?", "context": "CREATE TABLE table_name_93 (league_cup_goals INTEGER, scorer VARCHAR, fa_cup_goals VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_1 WHERE away_team = \"bristol rovers\"", "question": "Who was the home team when the away team was Bristol Rovers?", "context": "CREATE TABLE table_name_1 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_3 WHERE away_team = \"frickley athletic\"", "question": "What was the home team when the away team was Frickley Athletic?", "context": "CREATE TABLE table_name_3 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE home_team = \"reading\"", "question": "When did Reading play at home?", "context": "CREATE TABLE table_name_2 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT association FROM table_name_39 WHERE nominee = \"indonesian idol\" AND year > 2005 AND result = \"nominated\"", "question": "What was the association for Indonesian Idol after 2005 with a Nominated Result?", "context": "CREATE TABLE table_name_39 (association VARCHAR, result VARCHAR, nominee VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_74 WHERE nominee = \"indonesian idol\" AND result = \"won\"", "question": "What was the earliest year that Indonesian Idol won?", "context": "CREATE TABLE table_name_74 (year INTEGER, nominee VARCHAR, result VARCHAR)"}, {"answer": "SELECT association FROM table_name_54 WHERE nominee = \"daniel mananta\" AND year > 2011", "question": "Who was the association that Daniel Mananta belonged to after 2011?", "context": "CREATE TABLE table_name_54 (association VARCHAR, nominee VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_52 WHERE year < 2013 AND category = \"presenter talent show\"", "question": "What was the result in a year before 2013 that the nomination category was Presenter Talent Show?", "context": "CREATE TABLE table_name_52 (result VARCHAR, year VARCHAR, category VARCHAR)"}, {"answer": "SELECT competition FROM table_name_78 WHERE score = \"8-1\"", "question": "What competition had a score of 8-1?", "context": "CREATE TABLE table_name_78 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_75 WHERE score = \"139-119\"", "question": "Who was the away team for the game with a score of 139-119?", "context": "CREATE TABLE table_name_75 (away_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE venue = \"gold coast convention centre\"", "question": "Which date had a venue of the Gold Coast Convention Centre?", "context": "CREATE TABLE table_name_36 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE venue = \"state sports centre\"", "question": "Which date had a venue of the State Sports Centre?", "context": "CREATE TABLE table_name_88 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(shot_pct) FROM table_name_1 WHERE ends_won > 29 AND ends_lost < 26", "question": "What is the smallest shot % with ends won larger than 29 and ends lost smaller than 26?", "context": "CREATE TABLE table_name_1 (shot_pct INTEGER, ends_won VARCHAR, ends_lost VARCHAR)"}, {"answer": "SELECT COUNT(ends_lost) FROM table_name_62 WHERE skip = \"kevin koe\" AND stolen_ends > 6", "question": "How many ends lost when skip is Kevin Koe and stolen ends are more than 6?", "context": "CREATE TABLE table_name_62 (ends_lost VARCHAR, skip VARCHAR, stolen_ends VARCHAR)"}, {"answer": "SELECT COUNT(ends_lost) FROM table_name_72 WHERE shot_pct = 88 AND ends_won = 31", "question": "How many ends lost when shot % is 88 and ends won are 31?", "context": "CREATE TABLE table_name_72 (ends_lost VARCHAR, shot_pct VARCHAR, ends_won VARCHAR)"}, {"answer": "SELECT SUM(ends_lost) FROM table_name_62 WHERE province = \"alberta\" AND stolen_ends > 7", "question": "How many ends lost for Alberta when stolen ends are greater than 7?", "context": "CREATE TABLE table_name_62 (ends_lost INTEGER, province VARCHAR, stolen_ends VARCHAR)"}, {"answer": "SELECT winner FROM table_name_67 WHERE city = \"punta del este\"", "question": "What is the Winner of the Event in Punta del Este?", "context": "CREATE TABLE table_name_67 (winner VARCHAR, city VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE city = \"panama city\"", "question": "What is the Date of the Event in Panama City?", "context": "CREATE TABLE table_name_37 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT winner FROM table_name_5 WHERE city = \"panama city\"", "question": "What is the Winner of the Event in Panama City?", "context": "CREATE TABLE table_name_5 (winner VARCHAR, city VARCHAR)"}, {"answer": "SELECT winner FROM table_name_82 WHERE date = \"september 26-30, 2012\"", "question": "What is the Winner of the Event on September 26-30, 2012?", "context": "CREATE TABLE table_name_82 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_68 WHERE rider = \"sylvain guintoli\" AND grid < 16", "question": "What is the lowest Laps, when Rider is Sylvain Guintoli, and when Grid is less than 16?", "context": "CREATE TABLE table_name_68 (laps INTEGER, rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_10 WHERE laps = 21 AND manufacturer = \"yamaha\" AND time = \"+18.802\"", "question": "What is the lowest Grid, when Laps is 21, when Manufacturer is Yamaha, and when Time is +18.802?", "context": "CREATE TABLE table_name_10 (grid INTEGER, time VARCHAR, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT rider FROM table_name_67 WHERE grid < 16 AND laps = 21 AND manufacturer = \"honda\" AND time = \"+10.583\"", "question": "What is Rider, when Grid is less than 16, when Laps is 21, when Manufacturer is Honda, and when Time is +10.583?", "context": "CREATE TABLE table_name_67 (rider VARCHAR, time VARCHAR, manufacturer VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_27 WHERE rider = \"shinya nakano\" AND laps < 21", "question": "What is the average Grid, when Rider is Shinya Nakano, and when Laps is less than 21?", "context": "CREATE TABLE table_name_27 (grid INTEGER, rider VARCHAR, laps VARCHAR)"}, {"answer": "SELECT 1 AS st_runner_up FROM table_name_90 WHERE miss_earth_venezuela = \"mar\u00eda daniela torrealba\"", "question": "who is the 1st runner-up when the miss earth Venezuela is mar\u00eda daniela torrealba?", "context": "CREATE TABLE table_name_90 (miss_earth_venezuela VARCHAR)"}, {"answer": "SELECT semi_finalists FROM table_name_30 WHERE week = \"may 15\"", "question": "Which Semi finalists had a Week of may 15?", "context": "CREATE TABLE table_name_30 (semi_finalists VARCHAR, week VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_69 WHERE semi_finalists = \"monica seles conchita mart\u00ednez\"", "question": "Which Finalist has a Semi finalists of monica seles conchita mart\u00ednez?", "context": "CREATE TABLE table_name_69 (finalist VARCHAR, semi_finalists VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_76 WHERE semi_finalists = \"monica seles sandrine testud\"", "question": "Which Tournament has a Semi finalists of monica seles sandrine testud?", "context": "CREATE TABLE table_name_76 (tournament VARCHAR, semi_finalists VARCHAR)"}, {"answer": "SELECT surface FROM table_name_9 WHERE semi_finalists = \"conchita mart\u00ednez arantxa s\u00e1nchez\"", "question": "Which Surface has a Semi finalists of conchita mart\u00ednez arantxa s\u00e1nchez?", "context": "CREATE TABLE table_name_9 (surface VARCHAR, semi_finalists VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_15 WHERE semi_finalists = \"mary pierce elena dementieva\"", "question": "Which Tournament has a Semi finalists of mary pierce elena dementieva?", "context": "CREATE TABLE table_name_15 (tournament VARCHAR, semi_finalists VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_62 WHERE semi_finalists = \"martina hingis joannette kruger\"", "question": "Which Tournament has a Semi finalists of martina hingis joannette kruger?", "context": "CREATE TABLE table_name_62 (tournament VARCHAR, semi_finalists VARCHAR)"}, {"answer": "SELECT winner FROM table_name_82 WHERE prize = \"\u00a350,000\" AND runner_up = \"korosh nejad\"", "question": "What is Winner, when Prize is \"\u00a350,000\", and when Runner-Up is \"Korosh Nejad\"?", "context": "CREATE TABLE table_name_82 (winner VARCHAR, prize VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT season FROM table_name_37 WHERE prize = \"$100,000\"", "question": "What is Season, when Prize is \"$100,000\"?", "context": "CREATE TABLE table_name_37 (season VARCHAR, prize VARCHAR)"}, {"answer": "SELECT prize FROM table_name_21 WHERE winner = \"john shaw\"", "question": "What is Prize, when Winner is \"John Shaw\"?", "context": "CREATE TABLE table_name_21 (prize VARCHAR, winner VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_name_70 WHERE runner_up = \"simon ehne\" AND prize = \"$100,000\"", "question": "What is 3rd Place, when Runner-Up is \"Simon Ehne\", and when Prize is $100,000?", "context": "CREATE TABLE table_name_70 (runner_up VARCHAR, prize VARCHAR)"}, {"answer": "SELECT prize FROM table_name_37 WHERE runner_up = \"simon ehne\" AND winner = \"david tighe\"", "question": "What is Prize, when Runner-Up is \"Simon Ehne\", and when Winner is \"David Tighe\"?", "context": "CREATE TABLE table_name_37 (prize VARCHAR, runner_up VARCHAR, winner VARCHAR)"}, {"answer": "SELECT prize FROM table_name_56 WHERE season = \"2\"", "question": "What is Prize, when Season is \"2\"?", "context": "CREATE TABLE table_name_56 (prize VARCHAR, season VARCHAR)"}, {"answer": "SELECT name__birth_death_ FROM table_name_79 WHERE left_office = \"7 october 1958\"", "question": "What is Name (Birth-Death), when Left Office is 7 October 1958?", "context": "CREATE TABLE table_name_79 (name__birth_death_ VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_63 WHERE political_party = \"ba'ath party ( syria region )\" AND took_office = \"7 march 1958\"", "question": "What is Left Office, when Political Party is Ba'ath Party ( Syria Region ), and when Took Office is 7 March 1958?", "context": "CREATE TABLE table_name_63 (left_office VARCHAR, political_party VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE game = \"game 4\"", "question": "What is the date for game 4?", "context": "CREATE TABLE table_name_97 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_94 WHERE game = \"game 2\"", "question": "Who is the home team in game 2?", "context": "CREATE TABLE table_name_94 (home_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT result FROM table_name_65 WHERE game = \"game 5\"", "question": "What is the result for game 5?", "context": "CREATE TABLE table_name_65 (result VARCHAR, game VARCHAR)"}, {"answer": "SELECT 1990 FROM table_name_45 WHERE 1989 = \"a\" AND 1985 = \"a\" AND 1993 = \"a\"", "question": "What is the value in 1990 when it is A in 1989, 1985, and 1993?", "context": "CREATE TABLE table_name_45 (Id VARCHAR)"}, {"answer": "SELECT 1988 FROM table_name_41 WHERE 1997 = \"2r\" AND 1993 = \"sf\"", "question": "What is the value in 1988 when it is 2R in 1997 and SF in 1993?", "context": "CREATE TABLE table_name_41 (Id VARCHAR)"}, {"answer": "SELECT 1987 FROM table_name_47 WHERE 1999 = \"a\" AND 1989 = \"a\" AND 1997 = \"a\"", "question": "What is the value in 1987 when it is A in 1999, 1989, and 1997?", "context": "CREATE TABLE table_name_47 (Id VARCHAR)"}, {"answer": "SELECT result FROM table_name_91 WHERE opponent = \"los angeles rams\"", "question": "What was the result of the los angeles rams game?", "context": "CREATE TABLE table_name_91 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_51 WHERE week = 10", "question": "what was the result in week 10?", "context": "CREATE TABLE table_name_51 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT location FROM table_name_79 WHERE opponent = \"siarhei navarka\"", "question": "What is the location of the opponent Siarhei Navarka?", "context": "CREATE TABLE table_name_79 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_21 WHERE promotor = \"frank moloney\" AND opponent = \"gennadiy rasalev\"", "question": "Which location has the promotor Frank Moloney, and the opponent Gennadiy Rasalev?", "context": "CREATE TABLE table_name_21 (location VARCHAR, promotor VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE promotor = \"frank moloney\" AND opponent = \"georgi iliev\"", "question": "Which date has the promoter Frank Moloney and the opponent Georgi Iliev?", "context": "CREATE TABLE table_name_82 (date VARCHAR, promotor VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_31 WHERE wheel_arrangement = \"2-6-0\" AND class = \"d-3\"", "question": "What is Quantity made, when Wheel Arrangement is \"2-6-0\", and when Class is \"D-3\"?", "context": "CREATE TABLE table_name_31 (quantity_made VARCHAR, wheel_arrangement VARCHAR, class VARCHAR)"}, {"answer": "SELECT fleet_number_s_ FROM table_name_98 WHERE wheel_arrangement = \"2-6-0\" AND class = \"z\"", "question": "What is Fleet Number(s), when Wheel Arrangement is \"2-6-0\", and when Class is \"Z\"?", "context": "CREATE TABLE table_name_98 (fleet_number_s_ VARCHAR, wheel_arrangement VARCHAR, class VARCHAR)"}, {"answer": "SELECT fleet_number_s_ FROM table_name_95 WHERE quantity_preserved = \"0\" AND quantity_made = \"1\" AND class = \"z\"", "question": "What is Fleet Number(s), when Quantity Preserved is \"0\", when Quantity Made is 1, and when Class is \"Z\"?", "context": "CREATE TABLE table_name_95 (fleet_number_s_ VARCHAR, class VARCHAR, quantity_preserved VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_65 WHERE to_par = \"+8\"", "question": "Which Year(s) won has a To par of +8?", "context": "CREATE TABLE table_name_65 (year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_41 WHERE player = \"gene littler\"", "question": "How many totals does gene littler have?", "context": "CREATE TABLE table_name_41 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_99 WHERE country = \"united states\" AND to_par = \"+12\"", "question": "Which Total is the lowest one that has a Country of united states, and a To par of +12?", "context": "CREATE TABLE table_name_99 (total INTEGER, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_50 WHERE player = \"arnold palmer\"", "question": "What year or years did arnold palmer win?", "context": "CREATE TABLE table_name_50 (year_s__won VARCHAR, player VARCHAR)"}, {"answer": "SELECT winning__percentage FROM table_name_98 WHERE years = \"2006-11\"", "question": "what is the winning % for the years 2006-11?", "context": "CREATE TABLE table_name_98 (winning__percentage VARCHAR, years VARCHAR)"}, {"answer": "SELECT COUNT(winning__percentage) FROM table_name_92 WHERE seasons = 2 AND coach = \"guy lowman\"", "question": "how many times is the seasons 2 and the coach guy lowman?", "context": "CREATE TABLE table_name_92 (winning__percentage VARCHAR, seasons VARCHAR, coach VARCHAR)"}, {"answer": "SELECT record FROM table_name_92 WHERE years = \"2006-11\"", "question": "what is the record for years 2006-11?", "context": "CREATE TABLE table_name_92 (record VARCHAR, years VARCHAR)"}, {"answer": "SELECT result FROM table_name_92 WHERE venue = \"afg arena, st. gallen\" AND score = \"1\u20130\"", "question": "What is the Result of the AFG Arena, St. Gallen Competition with a Score of 1\u20130?", "context": "CREATE TABLE table_name_92 (result VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT metas_volantes_classification FROM table_name_16 WHERE points_classification = \"damiano cunego\"", "question": "Who won the Metas Volantes Classification in the stage in which Damiano Cunego won the points classification?", "context": "CREATE TABLE table_name_16 (metas_volantes_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT metas_volantes_classification FROM table_name_36 WHERE stage = 4", "question": "Who led the metas volantes classification for stage 4?", "context": "CREATE TABLE table_name_36 (metas_volantes_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_name_48 WHERE points_classification = \"damiano cunego\"", "question": "Who was the winner in the stage that Damiano Cunego led the points classification?", "context": "CREATE TABLE table_name_48 (winner VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_69 WHERE opponent = \"at dallas cowboys\"", "question": "What was the attendance when they played at Dallas Cowboys?", "context": "CREATE TABLE table_name_69 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_62 WHERE date = \"october 25, 1981\" AND week < 8", "question": "What was the attendance at the game before week 8, held on October 25, 1981?", "context": "CREATE TABLE table_name_62 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE week > 15", "question": "What was the date of the game played after week 15?", "context": "CREATE TABLE table_name_86 (date VARCHAR, week INTEGER)"}, {"answer": "SELECT name FROM table_name_43 WHERE position = \"ot\" AND round = 27", "question": "Which player had a position of OT during round 27?", "context": "CREATE TABLE table_name_43 (name VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT doctor_who_episode FROM table_name_78 WHERE episode__number = \"11\"", "question": "Which Doctor Who episode has a Episode # of 11?", "context": "CREATE TABLE table_name_78 (doctor_who_episode VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT doctor_who_episode FROM table_name_51 WHERE original_airdate__uk_ = \"dvd only\"", "question": "Which Doctor Who episode has a Original airdate (UK) of dvd only?", "context": "CREATE TABLE table_name_51 (doctor_who_episode VARCHAR, original_airdate__uk_ VARCHAR)"}, {"answer": "SELECT episode_title FROM table_name_83 WHERE doctor_who_episode = \"episodes 1\u201312\"", "question": "Which Episode title has a Doctor Who episode of episodes 1\u201312?", "context": "CREATE TABLE table_name_83 (episode_title VARCHAR, doctor_who_episode VARCHAR)"}, {"answer": "SELECT episode_title FROM table_name_65 WHERE episode__number = \"s2\"", "question": "Which Episode title has a Episode # of s2?", "context": "CREATE TABLE table_name_65 (episode_title VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT doctor_who_episode FROM table_name_91 WHERE original_airdate__uk_ = \"14 may 2005\"", "question": "Which Doctor Who episode has an Original airdate (UK) of 14 may 2005?", "context": "CREATE TABLE table_name_91 (doctor_who_episode VARCHAR, original_airdate__uk_ VARCHAR)"}, {"answer": "SELECT res FROM table_name_77 WHERE location = \"canada\" AND record = \"3-3\"", "question": "Which result has a Location of canada, and a Record of 3-3?", "context": "CREATE TABLE table_name_77 (res VARCHAR, location VARCHAR, record VARCHAR)"}, {"answer": "SELECT event FROM table_name_88 WHERE round > 2", "question": "Which event has a Round larger than 2?", "context": "CREATE TABLE table_name_88 (event VARCHAR, round INTEGER)"}, {"answer": "SELECT AVG(elevation__ft_) FROM table_name_77 WHERE range = \"unaka mountains\" AND peak_name = \"roan high bluff\" AND isolation > 1.54", "question": "WHAT IS THE ELEVATION OF THE UNAKA MOUNTAINS, IN ROAN HIGH BLUFF PEAK, AND ISOLATION LARGER THAN 1.54?", "context": "CREATE TABLE table_name_77 (elevation__ft_ INTEGER, isolation VARCHAR, range VARCHAR, peak_name VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_75 WHERE silver > 0 AND gold = 9 AND bronze < 9", "question": "With a silver greater than 0, gold of 9 and a bronze less than 9, what is the lowest total listed?", "context": "CREATE TABLE table_name_75 (total INTEGER, bronze VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_95 WHERE week = 8", "question": "What was the Attendance on Week 8?", "context": "CREATE TABLE table_name_95 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_98 WHERE week > 8 AND result = \"w 42\u20130\"", "question": "What is the Attendance after Week 8 with a Result of W 42\u20130?", "context": "CREATE TABLE table_name_98 (attendance INTEGER, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_75 WHERE gold > 0 AND nation = \"greece\" AND silver < 0", "question": "what is the average bronze when gold is more than 0, the nation is greece and silver is less than 0?", "context": "CREATE TABLE table_name_75 (bronze INTEGER, silver VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT rank FROM table_name_52 WHERE bronze < 1 AND silver < 1", "question": "what is the rank when bronze is less than 1 and silver is less than 1?", "context": "CREATE TABLE table_name_52 (rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT country FROM table_name_58 WHERE round = \"q3\"", "question": "Which country had a round of Q3?", "context": "CREATE TABLE table_name_58 (country VARCHAR, round VARCHAR)"}, {"answer": "SELECT country FROM table_name_96 WHERE to_par = \"e\"", "question": "Which Country has a To par of e?", "context": "CREATE TABLE table_name_96 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT finish FROM table_name_61 WHERE to_par = \"\u20131\" AND year_s__won = \"1955\"", "question": "Which Finish has a To par of \u20131, and a Year(s) won of 1955?", "context": "CREATE TABLE table_name_61 (finish VARCHAR, to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_75 WHERE finish = \"t3\" AND player = \"julius boros\"", "question": "Which To par has a Finish of t3, and a Player of julius boros?", "context": "CREATE TABLE table_name_75 (to_par VARCHAR, finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_29 WHERE to_par = \"\u20131\" AND year_s__won = \"1952\"", "question": "Which Player has a To par of \u20131, and a Year(s) won of 1952?", "context": "CREATE TABLE table_name_29 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_28 WHERE total > 283 AND finish = \"t12\"", "question": "Which To par has a Total larger than 283, and a Finish of t12?", "context": "CREATE TABLE table_name_28 (to_par VARCHAR, total VARCHAR, finish VARCHAR)"}, {"answer": "SELECT role FROM table_name_38 WHERE status = \"2001 - 2003, 2005 - 2009\"", "question": "What is Role, when Status is \"2001 - 2003, 2005 - 2009\"?", "context": "CREATE TABLE table_name_38 (role VARCHAR, status VARCHAR)"}, {"answer": "SELECT actor FROM table_name_28 WHERE role = \"kate manfredi\"", "question": "What is Actor, when Role is \"Kate Manfredi\"?", "context": "CREATE TABLE table_name_28 (actor VARCHAR, role VARCHAR)"}, {"answer": "SELECT number_of_episodes FROM table_name_90 WHERE actor = \"jessica napier\"", "question": "What is Number Of Episodes, when Actor is \"Jessica Napier\"", "context": "CREATE TABLE table_name_90 (number_of_episodes VARCHAR, actor VARCHAR)"}, {"answer": "SELECT actor FROM table_name_88 WHERE number_of_episodes = \"117 episodes\"", "question": "What is Actor, when Number Of Episodes is \"117 Episodes\"?", "context": "CREATE TABLE table_name_88 (actor VARCHAR, number_of_episodes VARCHAR)"}, {"answer": "SELECT number_of_episodes FROM table_name_86 WHERE status = \"2001 - 2003, 2005 - 2009\"", "question": "What is Number Of Episodes, when Status is \"2001 - 2003, 2005 - 2009\"?", "context": "CREATE TABLE table_name_86 (number_of_episodes VARCHAR, status VARCHAR)"}, {"answer": "SELECT number_of_episodes FROM table_name_74 WHERE notes = \"moved to run a farm with boyfriend jake.\"", "question": "What is Number Of Episodes, when Notes is \"Moved to run a farm with boyfriend Jake.\"?", "context": "CREATE TABLE table_name_74 (number_of_episodes VARCHAR, notes VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_55 WHERE result = \"aus by 32 runs\"", "question": "What is the name of the home captain when the result was Aus by 32 runs?", "context": "CREATE TABLE table_name_55 (home_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_65 WHERE home_captain = \"hugh trumble\" AND result = \"aus by 32 runs\"", "question": "What is the name of the away captain when Hugh Trumble was the home captain and the result was Aus by 32 runs?", "context": "CREATE TABLE table_name_65 (away_captain VARCHAR, home_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_83 WHERE result = \"aus by 229 runs\"", "question": "What is the name of the home captain when the result was Aus by 229 runs?", "context": "CREATE TABLE table_name_83 (home_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_5 WHERE venue = \"adelaide oval\"", "question": "What is the name of the away captain when the game was at Adelaide Oval?", "context": "CREATE TABLE table_name_5 (away_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_42 WHERE runner_s__up = \"beth daniel\" AND margin_of_victory = \"7 strokes\"", "question": "What was the winning score when the runner-up was Beth Daniel and the margin of victory was 7 strokes?", "context": "CREATE TABLE table_name_42 (winning_score VARCHAR, runner_s__up VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_64 WHERE tournament = \"oldsmobile lpga classic\"", "question": "What was the winning score for oldsmobile lpga classic?", "context": "CREATE TABLE table_name_64 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_32 WHERE margin_of_victory = \"1 stroke\" AND date = \"jan 22, 1995\"", "question": "What was the winning score on Jan 22, 1995 when the margin of victory was 1 stroke?", "context": "CREATE TABLE table_name_32 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_4 WHERE margin_of_victory = \"playoff\" AND tournament = \"safeco classic\"", "question": "What was the winning score when the margin of victory was a playoff for the Tournament of safeco classic?", "context": "CREATE TABLE table_name_4 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_89 WHERE date = \"aug 28, 1983\"", "question": "What was the winning score on Aug 28, 1983?", "context": "CREATE TABLE table_name_89 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_48 WHERE runner_s__up = \"janet coles\"", "question": "What was the margin of victory when the runner-up was Janet Coles?", "context": "CREATE TABLE table_name_48 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT studio FROM table_name_95 WHERE director = \"david fincher\"", "question": "What studio is director David Fincher from?", "context": "CREATE TABLE table_name_95 (studio VARCHAR, director VARCHAR)"}, {"answer": "SELECT studio FROM table_name_85 WHERE director = \"reginald hudlin\"", "question": "What studio is director Reginald Hudlin from?", "context": "CREATE TABLE table_name_85 (studio VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_39 WHERE rank > 7 AND worldwide_gross = \"$149,022,650\"", "question": "What director has a worldwide gross of $149,022,650 and is ranked greater than 7?", "context": "CREATE TABLE table_name_39 (director VARCHAR, rank VARCHAR, worldwide_gross VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_76 WHERE year = 2008", "question": "What were the co-drivers in 2008?", "context": "CREATE TABLE table_name_76 (co_drivers VARCHAR, year VARCHAR)"}, {"answer": "SELECT class FROM table_name_26 WHERE year = 2009", "question": "What is the class of 2009?", "context": "CREATE TABLE table_name_26 (class VARCHAR, year VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_42 WHERE laps > 310 AND team = \"aston martin racing bms\"", "question": "Who were the co-drivers with more than 310 laps and team aston martin racing bms?", "context": "CREATE TABLE table_name_42 (co_drivers VARCHAR, laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT place FROM table_name_23 WHERE player = \"arnold palmer\"", "question": "What is Place, when Player is \"Arnold Palmer\"?", "context": "CREATE TABLE table_name_23 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_88 WHERE place = \"t5\" AND score = 69 - 72 = 141", "question": "What is Player, when Place is \"T5\", and when Score is \"69-72=141\"?", "context": "CREATE TABLE table_name_88 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE place = \"t5\" AND player = \"george archer\"", "question": "What is Score, when Place is \"T5\", and when Player is \"George Archer\"?", "context": "CREATE TABLE table_name_7 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_60 WHERE score = 73 - 68 = 141", "question": "What is Country, when Score is \"73-68=141\"?", "context": "CREATE TABLE table_name_60 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_56 WHERE time = \"accident\" AND bike = \"suzuki gsx-r1000\"", "question": "What is the highest number of laps with an accident time and a suzuki gsx-r1000 bike?", "context": "CREATE TABLE table_name_56 (laps INTEGER, time VARCHAR, bike VARCHAR)"}, {"answer": "SELECT laps FROM table_name_44 WHERE grid > 22 AND time = \"+1:29.001\"", "question": "What is the number of laps of the grid larger than 22 with a +1:29.001 time?", "context": "CREATE TABLE table_name_44 (laps VARCHAR, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT bike FROM table_name_36 WHERE time = \"accident\" AND laps < 9 AND grid = 5", "question": "What bike has an accident time, less than 9 laps, and a 5 grid?", "context": "CREATE TABLE table_name_36 (bike VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_5 WHERE grid < 28 AND time = \"retirement\" AND bike = \"ducati 1098 f08\"", "question": "What is the sum of the laps with a grid less than 28, retirement time, and a ducati 1098 f08 bikes?", "context": "CREATE TABLE table_name_5 (laps INTEGER, bike VARCHAR, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(2002) FROM table_name_38 WHERE 2008 > 19.5 AND 2006 < 24.5 AND 1999 = 18.3", "question": "What is the maximum 2002 figure when 2008 is 19.5, 2006 is less than 24.5 and 1999 is 18.3?", "context": "CREATE TABLE table_name_38 (Id VARCHAR)"}, {"answer": "SELECT AVG(2002) FROM table_name_64 WHERE 2003 < 13.2 AND 2006 > 12.1 AND 2011 > 13.5 AND 2001 = 11.5", "question": "What is the 2002 average when 2003 is less than 13.2, 2006 is more than 12.1, 2011 is more than 13.5 and 2001 is 11.5?", "context": "CREATE TABLE table_name_64 (Id VARCHAR)"}, {"answer": "SELECT MAX(2004) FROM table_name_86 WHERE 2009 > 26.1", "question": "What is the maximum in 2004 when 2009 is higher than 26.1?", "context": "CREATE TABLE table_name_86 (Id VARCHAR)"}, {"answer": "SELECT SUM(2010) FROM table_name_1 WHERE division = \"district of columbia\" AND 2004 > 12.3", "question": "What is the 2010 figure for the district of Columbia where the 2004 figure is more than 12.3?", "context": "CREATE TABLE table_name_1 (division VARCHAR)"}, {"answer": "SELECT gpu_frequency FROM table_name_71 WHERE frequency = \"1.67 ghz\" AND sspec_number = \"slbx9(a0)\"", "question": "What is GPU Frequency, when Frequency is 1.67 GHz, and when sSpec Number is SLBX9(A0)?", "context": "CREATE TABLE table_name_71 (gpu_frequency VARCHAR, frequency VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT i_o_bus FROM table_name_14 WHERE frequency = \"1.67 ghz\" AND sspec_number = \"slbmg(a0)\"", "question": "What is I/O Bus, when Frequency is 1.67 GHz, and when sSpec Number is SLBMG(A0)?", "context": "CREATE TABLE table_name_14 (i_o_bus VARCHAR, frequency VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT gpu_frequency FROM table_name_18 WHERE model_number = \"atom n435\"", "question": "What is GPU Frequency, when Model Number is Atom N435?", "context": "CREATE TABLE table_name_18 (gpu_frequency VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_11 WHERE part_number_s_ = \"au80610006240aa\"", "question": "What is Frequency, when Part Number(s) is au80610006240aa?", "context": "CREATE TABLE table_name_11 (frequency VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT socket FROM table_name_69 WHERE part_number_s_ = \"au80610003495aa\"", "question": "What is Socket, when Part Number(s) is au80610003495aa?", "context": "CREATE TABLE table_name_69 (socket VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT sspec_number FROM table_name_68 WHERE model_number = \"atom n475\"", "question": "What is sSpec Number, when Model Number is Atom N475?", "context": "CREATE TABLE table_name_68 (sspec_number VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT worldwide_gross FROM table_name_43 WHERE rank > 8 AND studio = \"columbia pictures\" AND director_s_ = \"martin campbell\"", "question": "For the movie directed by Martin Campbell at Columbia pictures with a ranking larger than 8, what is its worldwide gross?", "context": "CREATE TABLE table_name_43 (worldwide_gross VARCHAR, director_s_ VARCHAR, rank VARCHAR, studio VARCHAR)"}, {"answer": "SELECT studio FROM table_name_7 WHERE worldwide_gross = \"$457,640,427\"", "question": "In what studio was the film grossing $457,640,427 made?", "context": "CREATE TABLE table_name_7 (studio VARCHAR, worldwide_gross VARCHAR)"}, {"answer": "SELECT rank FROM table_name_50 WHERE studio = \"walt disney pictures\"", "question": "What is the ranking of the movie made at Walt Disney Pictures?", "context": "CREATE TABLE table_name_50 (rank VARCHAR, studio VARCHAR)"}, {"answer": "SELECT event FROM table_name_20 WHERE method = \"submission (brabo choke)\"", "question": "What is the event name when the method is submission (brabo choke)?", "context": "CREATE TABLE table_name_20 (event VARCHAR, method VARCHAR)"}, {"answer": "SELECT res FROM table_name_95 WHERE event = \"ufc 87\"", "question": "What is the result of the UFC 87?", "context": "CREATE TABLE table_name_95 (res VARCHAR, event VARCHAR)"}, {"answer": "SELECT res FROM table_name_43 WHERE method = \"decision (unanimous)\" AND opponent = \"chris wilson\"", "question": "What is the result when the method was decision (unanimous), and Chris Wilson was the opponent?", "context": "CREATE TABLE table_name_43 (res VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_67 WHERE method = \"submission (armbar)\" AND opponent = \"jeff gibson\"", "question": "What is the event when the method was submission (armbar), and Jeff Gibson was the opponent?", "context": "CREATE TABLE table_name_67 (event VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_93 WHERE opponent = \"clayton mckinney\"", "question": "What is the record when Clayton Mckinney was the opponent?", "context": "CREATE TABLE table_name_93 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_60 WHERE method = \"tko (punches)\" AND record = \"7-1\"", "question": "What is the event when the method was tko (punches), and the record was 7-1?", "context": "CREATE TABLE table_name_60 (event VARCHAR, method VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE tournament = \"the jamaica classic\"", "question": "When was the Jamaica Classic Tournament?", "context": "CREATE TABLE table_name_10 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_7 WHERE date = \"april 2\"", "question": "Who was the visitor on April 2?", "context": "CREATE TABLE table_name_7 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_91 WHERE visitor = \"chicago\"", "question": "What was the maximum attendance when Chicago is the visiting team?", "context": "CREATE TABLE table_name_91 (attendance INTEGER, visitor VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_49 WHERE score = \"w 110-81\"", "question": "Which High points have a Score of w 110-81?", "context": "CREATE TABLE table_name_49 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE high_assists = \"rodriguez (8)\"", "question": "Which Score has High assists of rodriguez (8)?", "context": "CREATE TABLE table_name_6 (score VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE date = \"october 23\"", "question": "What was the score on october 23?", "context": "CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_96 WHERE record = \"4-2\"", "question": "Which High assists have a Record of 4-2?", "context": "CREATE TABLE table_name_96 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT weeks_on_top FROM table_name_16 WHERE artist = \"savage garden\"", "question": "How many weeks on top was the single from Savage Garden?", "context": "CREATE TABLE table_name_16 (weeks_on_top VARCHAR, artist VARCHAR)"}, {"answer": "SELECT artist FROM table_name_67 WHERE issue_date_s_ = \"19 january\"", "question": "Who was the artist that issued the single on 19 January?", "context": "CREATE TABLE table_name_67 (artist VARCHAR, issue_date_s_ VARCHAR)"}, {"answer": "SELECT artist FROM table_name_28 WHERE weeks_on_top = \"9 \u00b6\"", "question": "Who was the artist of the single that spent 9 \u00b6 weeks on top?", "context": "CREATE TABLE table_name_28 (artist VARCHAR, weeks_on_top VARCHAR)"}, {"answer": "SELECT artist FROM table_name_43 WHERE issue_date_s_ = \"23 february\"", "question": "What is the name of the artist that issued the single on 23 February?", "context": "CREATE TABLE table_name_43 (artist VARCHAR, issue_date_s_ VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_16 WHERE opponent_in_the_final = \"bla\u017e kav\u010di\u010d\"", "question": "For what tournament was Bla\u017e Kav\u010di\u010d the opponent in the final?", "context": "CREATE TABLE table_name_16 (tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE tournament = \"belgrade\"", "question": "The tournament in Belgrade had what as a score?", "context": "CREATE TABLE table_name_7 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_79 WHERE date = \"june 26, 2006\"", "question": "On June 26, 2006 the game was played on what surface?", "context": "CREATE TABLE table_name_79 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE tournament = \"prijedor\"", "question": "When was the Prijedor tournament?", "context": "CREATE TABLE table_name_68 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_42 WHERE location = \"rio de janeiro, brazil\" AND current_seating_capacity < 78 OFFSET 838", "question": "What is Lowest Rank, when Location is Rio De Janeiro, Brazil, and when Current Seating Capacity is less than 78,838?", "context": "CREATE TABLE table_name_42 (rank INTEGER, location VARCHAR, current_seating_capacity VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_90 WHERE location = \"kinshasa, dr congo\" AND current_seating_capacity < 80 OFFSET 000", "question": "What is the highest Rank, when Location is Kinshasa, DR Congo, and when Current Seating Capacity is less than 80,000?", "context": "CREATE TABLE table_name_90 (rank INTEGER, location VARCHAR, current_seating_capacity VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_55 WHERE current_seating_capacity = 137 OFFSET 000", "question": "What is the lowest Rank, when the Current Seating Capacity is 137,000?", "context": "CREATE TABLE table_name_55 (rank INTEGER, current_seating_capacity VARCHAR)"}, {"answer": "SELECT highest_attendance FROM table_name_69 WHERE rank = 90 AND venue_name = \"infineon raceway\"", "question": "What is Highest Attendance, when Rank is 90, and when Venue Name is Infineon Raceway?", "context": "CREATE TABLE table_name_69 (highest_attendance VARCHAR, rank VARCHAR, venue_name VARCHAR)"}, {"answer": "SELECT SUM(tonnage__grt_) FROM table_name_35 WHERE fate = \"damaged\"", "question": "How much tonnage was damaged?", "context": "CREATE TABLE table_name_35 (tonnage__grt_ INTEGER, fate VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_67 WHERE fate = \"sunk\" AND name = \"alderamin\"", "question": "Which Nationality has a Fate of sunk, and a Name of alderamin?", "context": "CREATE TABLE table_name_67 (nationality VARCHAR, fate VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(tonnage__grt_) FROM table_name_44 WHERE nationality = \"united kingdom\" AND name = \"king gruffydd\"", "question": "Which Tonnage (GRT) has a Nationality of united kingdom, and a Name of king gruffydd?", "context": "CREATE TABLE table_name_44 (tonnage__grt_ INTEGER, nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT height FROM table_name_56 WHERE weight = 240", "question": "What is the height of the player that weighs 240?", "context": "CREATE TABLE table_name_56 (height VARCHAR, weight VARCHAR)"}, {"answer": "SELECT SUM(weight) FROM table_name_22 WHERE home_town = \"minnetonka, mn\"", "question": "What is the total combined weight of players from minnetonka, mn?", "context": "CREATE TABLE table_name_22 (weight INTEGER, home_town VARCHAR)"}, {"answer": "SELECT round FROM table_name_84 WHERE time = \"2:32\"", "question": "Which round lasted 2:32?", "context": "CREATE TABLE table_name_84 (round VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_39 WHERE time = \"5:00\" AND record = \"8-4\"", "question": "Where was the fight that lasted 5:00 when Yundt's record was 8-4?", "context": "CREATE TABLE table_name_39 (location VARCHAR, time VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_9 WHERE visitor = \"vancouver\"", "question": "What was the record when Vancouver was the visitor?", "context": "CREATE TABLE table_name_9 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE record = \"17\u201318\u20136\"", "question": "What score had a record of 17\u201318\u20136?", "context": "CREATE TABLE table_name_31 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT place FROM table_name_97 WHERE to_par = \"+1\" AND score = 74 - 70 - 69 - 72 = 285", "question": "What is the Place of the Player with a To par of +1 and Score of 74-70-69-72=285?", "context": "CREATE TABLE table_name_97 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_60 WHERE player = \"gene littler\"", "question": "What Country is Gene Littler from?", "context": "CREATE TABLE table_name_60 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_59 WHERE to_par = \"+1\"", "question": "What is the Country of the Player with a To par of +1?", "context": "CREATE TABLE table_name_59 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_10 WHERE money___$__ = \"5,500\" AND score = 70 - 72 - 70 - 73 = 285", "question": "What is the Country of the Player with a Score of 70-72-70-73=285 and Money ( $ ) of 5,500?", "context": "CREATE TABLE table_name_10 (country VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_57 WHERE rider = \"andrew neill\"", "question": "What was Andrew Neill's rank?", "context": "CREATE TABLE table_name_57 (rank INTEGER, rider VARCHAR)"}, {"answer": "SELECT place FROM table_name_89 WHERE score = 71 AND country = \"united states\"", "question": "When the score is 71 and the player is from United States what is the place?", "context": "CREATE TABLE table_name_89 (place VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_2 WHERE score = 71 AND country = \"united states\" AND player = \"jim thorpe\"", "question": "When Jim Thorpe of United States has a score of 71, what is the place?", "context": "CREATE TABLE table_name_2 (place VARCHAR, player VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE opponent = \"chicago bears\"", "question": "On what date was the Opponent Chicago Bears?", "context": "CREATE TABLE table_name_84 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_1 WHERE result = \"w 27-24\"", "question": "In what Week was the Result W 27-24?", "context": "CREATE TABLE table_name_1 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE week < 14 AND record = \"7-1\"", "question": "On what Date prior to Week 14 was the Record 7-1?", "context": "CREATE TABLE table_name_31 (date VARCHAR, week VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_85 WHERE opponent = \"los angeles raiders\"", "question": "What was the Attendance of the game against the Los Angeles Raiders?", "context": "CREATE TABLE table_name_85 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_30 WHERE result = \"w 23-7\"", "question": "What was the Opponent in the game with a Result of W 23-7?", "context": "CREATE TABLE table_name_30 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_86 WHERE score_in_the_final = \"2\u20136, 3\u20136\"", "question": "Who were the opponents when the score was 2\u20136, 3\u20136?", "context": "CREATE TABLE table_name_86 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT partner FROM table_name_7 WHERE surface = \"clay\" AND opponents_in_the_final = \"alicia molik mara santangelo\"", "question": "Who's the partner that played against Alicia Molik Mara Santangelo on clay?", "context": "CREATE TABLE table_name_7 (partner VARCHAR, surface VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_7 WHERE championship = \"french open\"", "question": "What was the score of the French Open?", "context": "CREATE TABLE table_name_7 (score_in_the_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT partner FROM table_name_86 WHERE year > 2007 AND score_in_the_final = \"2\u20136, 3\u20136\"", "question": "Who was the partner where the score was 2\u20136, 3\u20136 and happened after 2007?", "context": "CREATE TABLE table_name_86 (partner VARCHAR, year VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT partner FROM table_name_94 WHERE opponents_in_the_final = \"serena williams venus williams\"", "question": "Who was the partner that played against Serena Williams Venus Williams?", "context": "CREATE TABLE table_name_94 (partner VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_80 WHERE replaced_by = \"thomas von heesen\"", "question": "Who was the outgoing manager that was replaced by Thomas Von Heesen?", "context": "CREATE TABLE table_name_80 (outgoing_manager VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_40 WHERE manner_of_departure = \"mutual consent\" AND outgoing_manager = \"svetozar \u0161apuri\u0107\"", "question": "What was the date of vacancy of svetozar \u0161apuri\u0107 who departed with mutual consent?", "context": "CREATE TABLE table_name_40 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_38 WHERE team = \"aek\" AND replaced_by = \"christos kassianos\"", "question": "What was the date of appointment for Christos Kassianos who belonged to AEK?", "context": "CREATE TABLE table_name_38 (date_of_appointment VARCHAR, team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT type FROM table_name_6 WHERE source = \"realmadrid\" AND name = \"soldado\"", "question": "What is the type when the source is Realmadrid, and the name is Soldado?", "context": "CREATE TABLE table_name_6 (type VARCHAR, source VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE record = \"20-12\"", "question": "Who was the opponent with the 20-12 record?", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE game = 37", "question": "What date was game 37?", "context": "CREATE TABLE table_name_71 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_5 WHERE record = \"20-12\"", "question": "What is the average number of games with a record of 20-12?", "context": "CREATE TABLE table_name_5 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE game = 38", "question": "What is the score for game 38?", "context": "CREATE TABLE table_name_1 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(complement) FROM table_name_28 WHERE commander = \"valkenburg\"", "question": "What is the sum of complement commander Valkenburg received?", "context": "CREATE TABLE table_name_28 (complement VARCHAR, commander VARCHAR)"}, {"answer": "SELECT commander FROM table_name_62 WHERE complement > 240 AND guns = \"66\" AND ship = \"revolutie\"", "question": "Which commander received complement larger than 240 , guns of 66 and ship of revolutie?", "context": "CREATE TABLE table_name_62 (commander VARCHAR, ship VARCHAR, complement VARCHAR, guns VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_4 WHERE title = \"american pie 2\"", "question": "What is the rank of American Pie 2?", "context": "CREATE TABLE table_name_4 (rank INTEGER, title VARCHAR)"}, {"answer": "SELECT location FROM table_name_70 WHERE game = 42", "question": "What is Location, when Game is 42?", "context": "CREATE TABLE table_name_70 (location VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE opponent = \"@ carolina hurricanes\"", "question": "What is Date, when Opponent is @ Carolina Hurricanes?", "context": "CREATE TABLE table_name_84 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_46 WHERE opponent = \"@ philadelphia flyers\" AND game < 42", "question": "What is the average Attendance, when Opponent is @ Philadelphia Flyers, and when Game is less than 42?", "context": "CREATE TABLE table_name_46 (attendance INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_68 WHERE location = \"philips arena\" AND attendance < 15 OFFSET 619", "question": "What is the lowest Game, when Location is Philips Arena, and when Attendance is less than 15,619?", "context": "CREATE TABLE table_name_68 (game INTEGER, location VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(matrix) FROM table_name_33 WHERE recording_date = \"1926/03\"", "question": "what is the highest matrix when the recording date is 1926/03?", "context": "CREATE TABLE table_name_33 (matrix INTEGER, recording_date VARCHAR)"}, {"answer": "SELECT accompaniment FROM table_name_26 WHERE title = \"stormy seas blues\"", "question": "what is the accompaniment when the title is stormy seas blues?", "context": "CREATE TABLE table_name_26 (accompaniment VARCHAR, title VARCHAR)"}, {"answer": "SELECT recording_date FROM table_name_79 WHERE title = \"screech owl blues\"", "question": "what is the recording date when the title is screech owl blues?", "context": "CREATE TABLE table_name_79 (recording_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT blood_type FROM table_name_52 WHERE agency = \"vision factory\"", "question": "What's the blood type of the member from the vision factory agency?", "context": "CREATE TABLE table_name_52 (blood_type VARCHAR, agency VARCHAR)"}, {"answer": "SELECT generation FROM table_name_33 WHERE birthday = \"1996.04.17\"", "question": "What generation is the member born on 1996.04.17 in?", "context": "CREATE TABLE table_name_33 (generation VARCHAR, birthday VARCHAR)"}, {"answer": "SELECT generation FROM table_name_4 WHERE birthday = \"1992.12.23\"", "question": "What generation is the member born on 1992.12.23 in?", "context": "CREATE TABLE table_name_4 (generation VARCHAR, birthday VARCHAR)"}, {"answer": "SELECT birthplace FROM table_name_81 WHERE agency = \"lespros entertainment\" AND generation = \"third (2009)\"", "question": "What's the birthplace of the third (2009) generation member from the lespros entertainment agency?", "context": "CREATE TABLE table_name_81 (birthplace VARCHAR, agency VARCHAR, generation VARCHAR)"}, {"answer": "SELECT agency FROM table_name_32 WHERE birthday = \"1998.11.09\"", "question": "What's the agency of the member born on 1998.11.09?", "context": "CREATE TABLE table_name_32 (agency VARCHAR, birthday VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_10 WHERE high_assists = \"luke ridnour (10)\" AND date = \"december 3\"", "question": "Can you tell me the Location Attendance that has the High assists of luke ridnour (10), and the Date of december 3?", "context": "CREATE TABLE table_name_10 (location_attendance VARCHAR, high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_98 WHERE high_points = \"andrew bogut (17)\"", "question": "Can you tell me Location Attendance that has the High points of andrew bogut (17)?", "context": "CREATE TABLE table_name_98 (location_attendance VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT sprint_points FROM table_name_13 WHERE extra_laps = \"0\" AND rank = \"19\"", "question": "How many sprint points have 0 extra laps for rank 19?", "context": "CREATE TABLE table_name_13 (sprint_points VARCHAR, extra_laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT sprint_points FROM table_name_27 WHERE total_points = \"2\"", "question": "How many sprint points contribute to 2 total points?", "context": "CREATE TABLE table_name_27 (sprint_points VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT name FROM table_name_35 WHERE total_points = \"23\" AND rank = \"13\"", "question": "Who is at rank 13 with 23 total points?", "context": "CREATE TABLE table_name_35 (name VARCHAR, total_points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT extra_laps FROM table_name_71 WHERE total_points = \"9\"", "question": "What is the number of extra laps for 9 total points?", "context": "CREATE TABLE table_name_71 (extra_laps VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT player FROM table_name_61 WHERE place = \"t10\" AND country = \"united states\" AND score = 69 - 70 - 76 = 215", "question": "Who is the player with a t10 place, from the United States, and has a score of 69-70-76=215?", "context": "CREATE TABLE table_name_61 (player VARCHAR, place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_1 WHERE country = \"united states\" AND to_par = \"e\"", "question": "What place is the player from the United States with a to par of e?", "context": "CREATE TABLE table_name_1 (place VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_16 WHERE score = 69 - 70 - 76 = 215", "question": "Who is the player with a score of 69-70-76=215?", "context": "CREATE TABLE table_name_16 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_15 WHERE country = \"united states\" AND to_par = \"+1\" AND player = \"tim herron\"", "question": "What is the place of plyaer Tim Herron from the United States with a to par of +1?", "context": "CREATE TABLE table_name_15 (place VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_47 WHERE country = \"united states\" AND place = \"t3\" AND player = \"tim herron\"", "question": "What is the to par of player Tim Herron from the United States with a t3 place?", "context": "CREATE TABLE table_name_47 (to_par VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT MIN(favorable) FROM table_name_72 WHERE date = \"1954 june\" AND unfavorable > 45", "question": "which is the lowest favorable on 1954 June and more unfavorable than 45?", "context": "CREATE TABLE table_name_72 (favorable INTEGER, date VARCHAR, unfavorable VARCHAR)"}, {"answer": "SELECT MAX(unfavorable) FROM table_name_34 WHERE favorable = 34 AND date = \"1953 august\" AND no_opinion > 24", "question": "What is the most unfavorable that is favorable of 34 during 1953 August and has a no opinion score larger than 24?", "context": "CREATE TABLE table_name_34 (unfavorable INTEGER, no_opinion VARCHAR, favorable VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(no_opinion) FROM table_name_94 WHERE date = \"1954 november\" AND favorable > 35", "question": "What is the average no opinion score during 1954 November that is more favorable than 35?", "context": "CREATE TABLE table_name_94 (no_opinion INTEGER, date VARCHAR, favorable VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE date = \"december 20\"", "question": "What was the score for the game on December 20?", "context": "CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_47 WHERE date = \"november 22\"", "question": "Who was the home team on November 22?", "context": "CREATE TABLE table_name_47 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT title FROM table_name_4 WHERE studio = \"buena vista pictures\"", "question": "What is the title of Buena Vista Pictures?", "context": "CREATE TABLE table_name_4 (title VARCHAR, studio VARCHAR)"}, {"answer": "SELECT studio FROM table_name_95 WHERE director_s_ = \"john lasseter and andrew stanton\"", "question": "What studio has directors John Lasseter and Andrew Stanton?", "context": "CREATE TABLE table_name_95 (studio VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT title FROM table_name_83 WHERE rank > 14 AND worldwide_gross = \"$202,292,902\"", "question": "Who has the title and rank 14, and a worldwide gross of $202,292,902?", "context": "CREATE TABLE table_name_83 (title VARCHAR, rank VARCHAR, worldwide_gross VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE away_team = \"burton albion\"", "question": "WHAT IS THE DATE WITH AN AWAY TEAM OF BURTON ALBION?", "context": "CREATE TABLE table_name_15 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE away_team = \"workington\"", "question": "WHAT IS THE DATE WITH AN AWAY TEAM OF WORKINGTON?", "context": "CREATE TABLE table_name_16 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_21 WHERE tie_no = \"14\"", "question": "WHAT IS THE HOME TEAM WITH A TIE OF 14?", "context": "CREATE TABLE table_name_21 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_41 WHERE position = \"ot\" AND college = \"tulane\" AND overall > 38", "question": "What's the average round for the OT position from tulane college with an overall over 38?", "context": "CREATE TABLE table_name_41 (round INTEGER, overall VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_55 WHERE crowd > 6 OFFSET 872", "question": "What did the away team score when the crowd was larger than 6,872?", "context": "CREATE TABLE table_name_55 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT semifinalists FROM table_name_52 WHERE week = \"may 12\"", "question": "Who are the Semifinalists, when the Week is May 12?", "context": "CREATE TABLE table_name_52 (semifinalists VARCHAR, week VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_20 WHERE surface = \"clay\" AND semifinalists = \"yevgeny kafelnikov juan carlos ferrero (2)\"", "question": "Who is the Finalist, when the Surface is Clay, and when the Semifinalist is Yevgeny Kafelnikov Juan Carlos Ferrero (2)?", "context": "CREATE TABLE table_name_20 (finalist VARCHAR, surface VARCHAR, semifinalists VARCHAR)"}, {"answer": "SELECT surface FROM table_name_90 WHERE finalist = \"andrei pavel\"", "question": "What is the Surface, when the Finalist is Andrei Pavel?", "context": "CREATE TABLE table_name_90 (surface VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT winner FROM table_name_80 WHERE surface = \"carpet (i)\"", "question": "Who is the Winner, when the Surface is Carpet (i)?", "context": "CREATE TABLE table_name_80 (winner VARCHAR, surface VARCHAR)"}, {"answer": "SELECT week FROM table_name_66 WHERE finalist = \"carlos moy\u00e1 (5)\"", "question": "What is the Week, when the Finalist is Carlos Moy\u00e1 (5)?", "context": "CREATE TABLE table_name_66 (week VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_4 WHERE week = \"may 5\"", "question": "What is the Tournament, on the Week of May 5?", "context": "CREATE TABLE table_name_4 (tournament VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_8 WHERE nation = \"japan\" AND total < 1", "question": "what is the silver when the nation is japan and the total is less than 1?", "context": "CREATE TABLE table_name_8 (silver INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_74 WHERE silver = 1 AND gold = 0 AND rank = \"11\" AND total > 1", "question": "what is the bronze when silver is 1, gold is 0 the rank is 11 and the total is more than 1?", "context": "CREATE TABLE table_name_74 (bronze INTEGER, total VARCHAR, rank VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT rank FROM table_name_32 WHERE silver = 0 AND bronze > 1 AND total > 3", "question": "what is the rank when silver is 0, bronze is more than 1 and the total is more than 3?", "context": "CREATE TABLE table_name_32 (rank VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT silver FROM table_name_9 WHERE nation = \"mexico\"", "question": "what is the silver for mexico?", "context": "CREATE TABLE table_name_9 (silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE date = \"february 8\"", "question": "What was the score of the game on February 8?", "context": "CREATE TABLE table_name_69 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_55 WHERE score = \"236.023\"", "question": "Which athlete had a score of 236.023?", "context": "CREATE TABLE table_name_55 (athlete VARCHAR, score VARCHAR)"}, {"answer": "SELECT texas FROM table_name_92 WHERE north_dakota = \"johnson\"", "question": "What Texas has Johnson from Nort Dakota?", "context": "CREATE TABLE table_name_92 (texas VARCHAR, north_dakota VARCHAR)"}, {"answer": "SELECT oklahoma FROM table_name_41 WHERE nebraska = \"bush\" AND year = \"2004\"", "question": "What is the oklahoma has Bush from Nebraska in year 2004?", "context": "CREATE TABLE table_name_41 (oklahoma VARCHAR, nebraska VARCHAR, year VARCHAR)"}, {"answer": "SELECT nebraska FROM table_name_25 WHERE year = \"2004\"", "question": "Which Nebraska has 2004 year?", "context": "CREATE TABLE table_name_25 (nebraska VARCHAR, year VARCHAR)"}, {"answer": "SELECT south_dakota FROM table_name_17 WHERE oklahoma = \"bush\"", "question": "What  South Dakota has Bush of Oklahoma?", "context": "CREATE TABLE table_name_17 (south_dakota VARCHAR, oklahoma VARCHAR)"}, {"answer": "SELECT place FROM table_name_60 WHERE score = 70 - 75 - 70 - 74 = 289", "question": "What is the Place of the Player with a Score of 70-75-70-74=289?", "context": "CREATE TABLE table_name_60 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_25 WHERE score = 71 - 74 - 72 - 72 = 289", "question": "What is the To par of the Player with a Score of 71-74-72-72=289?", "context": "CREATE TABLE table_name_25 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_89 WHERE money__$_ = \"400\" AND player = \"leland gibson\"", "question": "What Country is Player Leland Gibson with Money of 400 from?", "context": "CREATE TABLE table_name_89 (country VARCHAR, money__$_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_19 WHERE score = 73 - 70 - 71 - 71 = 285", "question": "What is the Country of the Player with a Score of 73-70-71-71=285?", "context": "CREATE TABLE table_name_19 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_40 WHERE place = \"t3\" AND player = \"bobby locke\"", "question": "What is T3 Place Player Bobby Locke's Score?", "context": "CREATE TABLE table_name_40 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT points FROM table_name_21 WHERE home = \"detroit\"", "question": "How many points were scored in the Detroit Home?", "context": "CREATE TABLE table_name_21 (points VARCHAR, home VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_77 WHERE attendance = \"7,000\" AND date = \"january 1\"", "question": "Who is the visitor from the game with 7,000 in attendance on January 1?", "context": "CREATE TABLE table_name_77 (visitor VARCHAR, attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_12 WHERE attendance = \"2,500\"", "question": "What is the record from the 2,500 in attendance?", "context": "CREATE TABLE table_name_12 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_9 WHERE nation = \"turkey\" AND total < 2", "question": "How many Silver medals for the Nation of Turkey with a Total of less than 2?", "context": "CREATE TABLE table_name_9 (silver INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_34 WHERE rank = \"15\" AND silver > 0", "question": "How many Gold for the Nation in Rank 15 with 0 Silver?", "context": "CREATE TABLE table_name_34 (gold INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_80 WHERE ward < 0", "question": "WHAT IS THE TOTAL NUMBER WITH A WARD SMALLER THAN 0?", "context": "CREATE TABLE table_name_80 (total VARCHAR, ward INTEGER)"}, {"answer": "SELECT COUNT(pr_top_up) FROM table_name_92 WHERE percentage = \"0.8%\" AND total > 1", "question": "WHAT IS TOTAL NUMBER OF PR TOP-UPS THAT HAVE A PERCENTAGE OF 0.8%, TOTAL LARGER THAN 1?", "context": "CREATE TABLE table_name_92 (pr_top_up VARCHAR, percentage VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_96 WHERE ward > 60", "question": "WHAT IS THE TOTAL WITH WARD LARGER THAN 60?", "context": "CREATE TABLE table_name_96 (total INTEGER, ward INTEGER)"}, {"answer": "SELECT COUNT(poles) FROM table_name_66 WHERE points = \"63\"", "question": "What is the total number of poles and 63 points?", "context": "CREATE TABLE table_name_66 (poles VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_62 WHERE type = \"mk.v\"", "question": "What is the most recent year with a mk.v type?", "context": "CREATE TABLE table_name_62 (year INTEGER, type VARCHAR)"}, {"answer": "SELECT mainly_for FROM table_name_61 WHERE year < 1962 AND displacement = \"997 cc\"", "question": "What is the Mainly For with a displacement of 997 cc in a year before 1962?", "context": "CREATE TABLE table_name_61 (mainly_for VARCHAR, year VARCHAR, displacement VARCHAR)"}, {"answer": "SELECT type FROM table_name_50 WHERE block = \"105/107e\" AND year < 1960", "question": "What type is the 105/107e Block from a year prior to 1960?", "context": "CREATE TABLE table_name_50 (type VARCHAR, block VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(march) FROM table_name_56 WHERE score = \"2 - 2\" AND game > 67", "question": "What is the sum of March, when Score is \"2 - 2\", and when Game is greater than 67?", "context": "CREATE TABLE table_name_56 (march INTEGER, score VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_58 WHERE opponent = \"cleveland barons\" AND march < 8", "question": "What is the sum of Game, when Opponent is \"Cleveland Barons\", and when March is less than 8?", "context": "CREATE TABLE table_name_58 (game INTEGER, opponent VARCHAR, march VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_35 WHERE opponent = \"boston bruins\"", "question": "What is the lowest Game, when Opponent is \"Boston Bruins\"?", "context": "CREATE TABLE table_name_35 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_68 WHERE result = \"99-90\"", "question": "For the game ending in a final result of 99-90, who was the Road Team?", "context": "CREATE TABLE table_name_68 (road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_5 WHERE date = \"may 5\"", "question": "What was the result of the game played on May 5?", "context": "CREATE TABLE table_name_5 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE game = \"game 7\"", "question": "On what day was Game 7 of this season played?", "context": "CREATE TABLE table_name_78 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_73 WHERE road_team = \"boston\" AND date = \"april 23\"", "question": "What game number was played on April 23, with Boston as the road team?", "context": "CREATE TABLE table_name_73 (game VARCHAR, road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_95 WHERE game = \"game 3\"", "question": "What was the result of Game 3 of this searson?", "context": "CREATE TABLE table_name_95 (result VARCHAR, game VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_89 WHERE result = \"118-112\"", "question": "Who was the Road Team for the game ending with a score of 118-112?", "context": "CREATE TABLE table_name_89 (road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_5 WHERE 2007 = \"a\" AND 2011 = \"a\" AND tournament = \"san jose\"", "question": "what is the 2008 when 2007 is A, 2011 is A and tournament is san jose?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_46 WHERE 2011 = \"2r\" AND 2008 = \"2r\"", "question": "what is 2010 when 2011 is 2r and 2008 is 2r?", "context": "CREATE TABLE table_name_46 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_71 WHERE 2011 = \"not held\" AND 2012 = \"not held\"", "question": "what is 2007 when 2011 is not held and 2012 is not held?", "context": "CREATE TABLE table_name_71 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_65 WHERE 2011 = \"a\" AND 2009 = \"lq\" AND 2012 = \"1r\"", "question": "what is the tournament when 2011 is a, 2009 is lq and 2012 is 1r?", "context": "CREATE TABLE table_name_65 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_53 WHERE 2007 = \"a\" AND 2011 = \"a\" AND 2010 = \"a\" AND tournament = \"china\"", "question": "what is 2008 when 2007 is a, 2011 is a, 2010 is a and tournament is china?", "context": "CREATE TABLE table_name_53 (tournament VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_12 WHERE result = \"bye\"", "question": "What is the number of weeks where the result was listed at bye?", "context": "CREATE TABLE table_name_12 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(capacity) FROM table_name_64 WHERE coach = \"trevor gleeson\"", "question": "What is the total capacity for coach Trevor Gleeson?", "context": "CREATE TABLE table_name_64 (capacity INTEGER, coach VARCHAR)"}, {"answer": "SELECT home_ground FROM table_name_68 WHERE coach = \"andrej lemanis\"", "question": "What is home ground for coach Andrej Lemanis?", "context": "CREATE TABLE table_name_68 (home_ground VARCHAR, coach VARCHAR)"}, {"answer": "SELECT region FROM table_name_5 WHERE coach = \"trevor gleeson\"", "question": "Which region is Coach Trevor Gleeson in?", "context": "CREATE TABLE table_name_5 (region VARCHAR, coach VARCHAR)"}, {"answer": "SELECT home_ground FROM table_name_40 WHERE region = \"nzl\"", "question": "What is the home ground in region NZL?", "context": "CREATE TABLE table_name_40 (home_ground VARCHAR, region VARCHAR)"}, {"answer": "SELECT song FROM table_name_58 WHERE composer = \"v. selvaganesh\" AND year > 2010", "question": "What song was composed by V. Selvaganesh later than 2010?", "context": "CREATE TABLE table_name_58 (song VARCHAR, composer VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_7 WHERE composer = \"mejo joseph\"", "question": "What year was the composition by Mejo Joseph?", "context": "CREATE TABLE table_name_7 (year VARCHAR, composer VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_35 WHERE nationality = \"united states\" AND college = \"new mexico state\" AND round > 6", "question": "What is the highest Pick, when Nationality is \"United States\", when College is \"New Mexico State\", and when Round is greater than 6?", "context": "CREATE TABLE table_name_35 (pick INTEGER, round VARCHAR, nationality VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_58 WHERE pick < 161 AND college = \"auburn university\"", "question": "What is Player, when Pick is less than 161, and when College is \"Auburn University\"?", "context": "CREATE TABLE table_name_58 (player VARCHAR, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_78 WHERE round < 6 AND pick = 69", "question": "What is Player, when Round is less than 6, and when Pick is \"69\"?", "context": "CREATE TABLE table_name_78 (player VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_32 WHERE college = \"norfolk state\"", "question": "What is the sum of Round, when College is \"Norfolk State\"?", "context": "CREATE TABLE table_name_32 (round INTEGER, college VARCHAR)"}, {"answer": "SELECT country FROM table_name_90 WHERE player = \"david gilford\"", "question": "What country does david gilford play for?", "context": "CREATE TABLE table_name_90 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_2 WHERE country = \"australia\"", "question": "Which player plays for australia?", "context": "CREATE TABLE table_name_2 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(score) FROM table_name_36 WHERE player = \"phil mickelson\"", "question": "What's the sum of all phil mickelson's game scores?", "context": "CREATE TABLE table_name_36 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_28 WHERE opponent = \"clyde\"", "question": "In what round was Clyde the opponent?", "context": "CREATE TABLE table_name_28 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_95 WHERE round = \"r2\"", "question": "Who was the opponent in the round of R2?", "context": "CREATE TABLE table_name_95 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_49 WHERE winning_score = \u20136(73 - 68 - 72 - 69 = 282)", "question": "What Tournament had a Winning score of \u20136 (73-68-72-69=282)?", "context": "CREATE TABLE table_name_49 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_71 WHERE margin_of_victory = \"1 stroke\" AND winning_score = \u201316(67 - 66 - 70 - 69 = 272)", "question": "What Tournament had a Victory of 1 Stroke with a Winning score of \u201316 (67-66-70-69=272)?", "context": "CREATE TABLE table_name_71 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT AVG(opened) FROM table_name_40 WHERE line_name = \"line e\" AND last_extension < 2003", "question": "What is the average opened year of line e, which had their last extension before 2003?", "context": "CREATE TABLE table_name_40 (opened INTEGER, line_name VARCHAR, last_extension VARCHAR)"}, {"answer": "SELECT round FROM table_name_90 WHERE rank < 117", "question": "What is Round, when Rank is less than 117?", "context": "CREATE TABLE table_name_90 (round VARCHAR, rank INTEGER)"}, {"answer": "SELECT AVG(year) FROM table_name_46 WHERE round = \"r128 (first round)\"", "question": "What is Average Year, when Round is R128 (First Round)?", "context": "CREATE TABLE table_name_46 (year INTEGER, round VARCHAR)"}, {"answer": "SELECT championship FROM table_name_50 WHERE year > 2002 AND surface = \"hard\"", "question": "What is Championship, when Year is greater than 2002, and when Surface is Hard?", "context": "CREATE TABLE table_name_50 (championship VARCHAR, year VARCHAR, surface VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_69 WHERE points < 54 AND equipment = \"husaberg-bsu\"", "question": "What is the average position for a driver with less than 54 points and husaberg-bsu as equipment?", "context": "CREATE TABLE table_name_69 (position INTEGER, points VARCHAR, equipment VARCHAR)"}, {"answer": "SELECT wins FROM table_name_44 WHERE points = 217", "question": "How many wins does the driver with 217 points have?", "context": "CREATE TABLE table_name_44 (wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_name_64 WHERE driver = \"viktor jensen\"", "question": "what is the team when the driver is viktor jensen?", "context": "CREATE TABLE table_name_64 (team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT team FROM table_name_54 WHERE rounds = \"all\" AND engine = \"mercedes hwa\" AND driver = \"sam abay\"", "question": "what is the team when the rounds is all engine is mercedes hwa and driver is sam abay?", "context": "CREATE TABLE table_name_54 (team VARCHAR, driver VARCHAR, rounds VARCHAR, engine VARCHAR)"}, {"answer": "SELECT class FROM table_name_6 WHERE chassis = \"dallara f308\" AND rounds = \"all\" AND driver = \"sam abay\"", "question": "what is the class when the chassis is dallara f308, rounds is all and the driver is sam abay?", "context": "CREATE TABLE table_name_6 (class VARCHAR, driver VARCHAR, chassis VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT run_4 FROM table_name_12 WHERE run_2 = \"1:29.00\"", "question": "What is Run 4, when Run 2 is 1:29.00?", "context": "CREATE TABLE table_name_12 (run_4 VARCHAR, run_2 VARCHAR)"}, {"answer": "SELECT team FROM table_name_70 WHERE run_3 = \"1:24.00\"", "question": "What is Team, when Run 3 is 1:24.00?", "context": "CREATE TABLE table_name_70 (team VARCHAR, run_3 VARCHAR)"}, {"answer": "SELECT run_1 FROM table_name_15 WHERE team = \"italy (ita) italy i\"", "question": "What is Run 1, when Team is \"Italy (ITA) Italy I\"?", "context": "CREATE TABLE table_name_15 (run_1 VARCHAR, team VARCHAR)"}, {"answer": "SELECT athletes FROM table_name_86 WHERE run_2 = \"1:24.77\"", "question": "What is Athletes, when Run 2 is 1:24.77?", "context": "CREATE TABLE table_name_86 (athletes VARCHAR, run_2 VARCHAR)"}, {"answer": "SELECT run_4 FROM table_name_21 WHERE run_2 = \"1:25.84\"", "question": "What is Run 4, when Run 2 is 1:25.84?", "context": "CREATE TABLE table_name_21 (run_4 VARCHAR, run_2 VARCHAR)"}, {"answer": "SELECT run_1 FROM table_name_89 WHERE athletes = \"theo kitt & friedrich kuhn\"", "question": "What is Run 1, when Athletes is \"Theo Kitt & Friedrich Kuhn\"?", "context": "CREATE TABLE table_name_89 (run_1 VARCHAR, athletes VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE attendance < 521", "question": "What is Date, when Attendance is less than 521?", "context": "CREATE TABLE table_name_43 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT away FROM table_name_14 WHERE home = \"marathon\"", "question": "What is Away, when Home is \"marathon\"?", "context": "CREATE TABLE table_name_14 (away VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE home = \"marathon\"", "question": "What is Score, when Home is \"marathon\"?", "context": "CREATE TABLE table_name_31 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_8 WHERE away = \"real juventud\"", "question": "What is the total number of Attendance(s), when Away is Real Juventud?", "context": "CREATE TABLE table_name_8 (attendance VARCHAR, away VARCHAR)"}, {"answer": "SELECT record FROM table_name_2 WHERE h_a_n = \"a\" AND date = \"february 1\"", "question": "What is Record, when H/A/N is \"A\", and when Date is \"February 1\"?", "context": "CREATE TABLE table_name_2 (record VARCHAR, h_a_n VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE opponent = \"philadelphia 76ers\"", "question": "What is Date, when Opponent is \"Philadelphia 76ers\"?", "context": "CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_98 WHERE record = \"17-44\"", "question": "What is Opponent, when Record is 17-44?", "context": "CREATE TABLE table_name_98 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE h_a_n = \"h\" AND score = \"112-118\"", "question": "What is Date, when H/A/N is \"H\", and when Score is 112-118?", "context": "CREATE TABLE table_name_77 (date VARCHAR, h_a_n VARCHAR, score VARCHAR)"}, {"answer": "SELECT h_a_n FROM table_name_64 WHERE record = \"20-48\"", "question": "What is H/A/N, when Record is 20-48?", "context": "CREATE TABLE table_name_64 (h_a_n VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_55 WHERE score = \"104-99\"", "question": "What is Record, when Score is 104-99?", "context": "CREATE TABLE table_name_55 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE home_team = \"stockport county\"", "question": "What is the date with home team of Stockport County?", "context": "CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE date = \"17 november 1956\" AND home_team = \"derby county\"", "question": "What is the score on 17 November 1956 when home team is Derby County?", "context": "CREATE TABLE table_name_36 (score VARCHAR, date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE tie_no = \"4\"", "question": "What is the score when the tie number is 4?", "context": "CREATE TABLE table_name_47 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_57 WHERE draw > 1", "question": "What is the number of points when the draws are more than 1?", "context": "CREATE TABLE table_name_57 (points VARCHAR, draw INTEGER)"}, {"answer": "SELECT SUM(match) FROM table_name_19 WHERE draw > 0 AND team = \"polonia bydgoszcz\" AND points < 17", "question": "What is the number for match when the draws in more than 0, the team is Polonia Bydgoszcz, and there are less than 17 points?", "context": "CREATE TABLE table_name_19 (match INTEGER, points VARCHAR, draw VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_name_4 WHERE points < 17 AND lost = 13", "question": "What is the lowest number for draw when the points are less than 17, and the lost is 13?", "context": "CREATE TABLE table_name_4 (draw INTEGER, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_50 WHERE match < 14", "question": "What is the number of points when the match is smaller than 14?", "context": "CREATE TABLE table_name_50 (points VARCHAR, match INTEGER)"}, {"answer": "SELECT MIN(apps) FROM table_name_24 WHERE name = \"smith\"", "question": "what is the apps when the name is smith?", "context": "CREATE TABLE table_name_24 (apps INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_62 WHERE transfer_fee = \"\u00a32,500,000\"", "question": "how many times is the transfer fee \u00a32,500,000?", "context": "CREATE TABLE table_name_62 (goals VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT COUNT(apps) FROM table_name_83 WHERE transfer_window = \"summer\" AND name = \"sinclair\"", "question": "how many times is the transfer window, summer and the name sinclair?", "context": "CREATE TABLE table_name_83 (apps VARCHAR, transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_83 WHERE country = \"wal\" AND name = \"smith\" AND apps > 0", "question": "what is the goals when the country is wal, the name is smith and apps is more than 0?", "context": "CREATE TABLE table_name_83 (goals INTEGER, apps VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT studio FROM table_name_33 WHERE gross_rental = \"$7,500,000\"", "question": "What is the Studio of the Film with a Gross rental of $7,500,000?", "context": "CREATE TABLE table_name_33 (studio VARCHAR, gross_rental VARCHAR)"}, {"answer": "SELECT result FROM table_name_74 WHERE score = \"2 \u2013 0\" AND competition = \"2006 fifa world cup qualification\"", "question": "Which Result has a Score of 2 \u2013 0, and a Competition of 2006 fifa world cup qualification?", "context": "CREATE TABLE table_name_74 (result VARCHAR, score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE result = \"0 \u2013 2\"", "question": "Which Score has a Result of 0 \u2013 2?", "context": "CREATE TABLE table_name_81 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE competition = \"uefa euro 2012 qualifying\"", "question": "Which Score has a Competition of uefa euro 2012 qualifying?", "context": "CREATE TABLE table_name_70 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE score = \"0 \u2013 2\"", "question": "Which Date has a Score of 0 \u2013 2?", "context": "CREATE TABLE table_name_55 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_72 WHERE competition = \"2014 fifa world cup qualification\" AND score = \"2 \u2013 0\"", "question": "Which Result has a Competition of 2014 fifa world cup qualification, and a Score of 2 \u2013 0?", "context": "CREATE TABLE table_name_72 (result VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_41 WHERE date = \"1 march 2006\"", "question": "Which Venue has a Date of 1 march 2006?", "context": "CREATE TABLE table_name_41 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_49 WHERE to_par = \"e\" AND score = 68 - 73 - 69 = 210", "question": "Who is the player with an E to par and a 68-73-69=210?", "context": "CREATE TABLE table_name_49 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_21 WHERE score = 66 - 70 - 69 = 205", "question": "What is the country with a 66-70-69=205 score?", "context": "CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_9 WHERE country = \"japan\"", "question": "Who is the player from Japan?", "context": "CREATE TABLE table_name_9 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_61 WHERE place = \"t10\" AND player = \"jay haas\"", "question": "What country is player jay haas, who is in t10 place, from?", "context": "CREATE TABLE table_name_61 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_91 WHERE score = 68 - 73 - 69 = 210", "question": "What is the country with a 68-73-69=210 score?", "context": "CREATE TABLE table_name_91 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE player = \"mark hayes\"", "question": "What is the score of player mark hayes?", "context": "CREATE TABLE table_name_14 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_52 WHERE tie_no = \"7\"", "question": "WHAT IS THE HOME TEAM WITH A TIE NUMBER OF 7?", "context": "CREATE TABLE table_name_52 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_68 WHERE home_team = \"chelsea\"", "question": "WHAT IS THE AWAY TEAM WITH A HOME TEAM OF CHELSEA?", "context": "CREATE TABLE table_name_68 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE tie_no = \"13\"", "question": "WHAT IS THE SCORE WITH A TIE NUMBER OF 13?", "context": "CREATE TABLE table_name_86 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_24 WHERE away_team = \"reading\"", "question": "WHAT IS THE ATTENDANCE WITH A READING AWAY TEAM?", "context": "CREATE TABLE table_name_24 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_40 WHERE away_team = \"reading\"", "question": "WHAT IS THE ATTENDANCE  WITH A READING AWAY TEAM?", "context": "CREATE TABLE table_name_40 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT builder FROM table_name_67 WHERE wheels = \"4-4-0\" AND railway = \"gcr\"", "question": "Who was the Builder when the wheels were 4-4-0 and the railway was GCR?", "context": "CREATE TABLE table_name_67 (builder VARCHAR, wheels VARCHAR, railway VARCHAR)"}, {"answer": "SELECT railway FROM table_name_69 WHERE built = \"1920\"", "question": "Which railway was built in 1920?", "context": "CREATE TABLE table_name_69 (railway VARCHAR, built VARCHAR)"}, {"answer": "SELECT railway FROM table_name_63 WHERE built = \"1909\"", "question": "Which railway was built in 1909?", "context": "CREATE TABLE table_name_63 (railway VARCHAR, built VARCHAR)"}, {"answer": "SELECT built FROM table_name_93 WHERE builder = \"stephenson\"", "question": "What year was Stephenson the builder?", "context": "CREATE TABLE table_name_93 (built VARCHAR, builder VARCHAR)"}, {"answer": "SELECT objectnumber FROM table_name_95 WHERE location = \"barrow hill\" AND wheels = \"4-4-0\"", "question": "What is the Object Number for the item with wheels 4-4-0 and a location of Barrow Hill?", "context": "CREATE TABLE table_name_95 (objectnumber VARCHAR, location VARCHAR, wheels VARCHAR)"}, {"answer": "SELECT builder FROM table_name_84 WHERE built = \"1920\"", "question": "Who was the builder in 1920?", "context": "CREATE TABLE table_name_84 (builder VARCHAR, built VARCHAR)"}, {"answer": "SELECT venue FROM table_name_26 WHERE team = \"darida\"", "question": "Which team played in the Darida venue?", "context": "CREATE TABLE table_name_26 (venue VARCHAR, team VARCHAR)"}, {"answer": "SELECT position_in_2006 FROM table_name_77 WHERE team = \"dnepr\"", "question": "What was Team Dnepr's position in 2006?", "context": "CREATE TABLE table_name_77 (position_in_2006 VARCHAR, team VARCHAR)"}, {"answer": "SELECT icao FROM table_name_34 WHERE province = \"heilongjiang\" AND iata = \"jmu\"", "question": "Which  ICAO has a Province of heilongjiang, and a IATA of jmu?", "context": "CREATE TABLE table_name_34 (icao VARCHAR, province VARCHAR, iata VARCHAR)"}, {"answer": "SELECT province FROM table_name_56 WHERE icao = \"vmmc\"", "question": "which Province has a ICAO of vmmc?", "context": "CREATE TABLE table_name_56 (province VARCHAR, icao VARCHAR)"}, {"answer": "SELECT province FROM table_name_61 WHERE city = \"hiroshima\"", "question": "Which Province has a City of hiroshima?", "context": "CREATE TABLE table_name_61 (province VARCHAR, city VARCHAR)"}, {"answer": "SELECT province FROM table_name_62 WHERE iata = \"aku\"", "question": "Which Province has a IATA of aku?", "context": "CREATE TABLE table_name_62 (province VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_3 WHERE city = \"budapest\"", "question": "Name the IATA with a City of budapest?", "context": "CREATE TABLE table_name_3 (iata VARCHAR, city VARCHAR)"}, {"answer": "SELECT province FROM table_name_60 WHERE icao = \"zbcf\"", "question": "Name the Province with ICAO of zbcf?", "context": "CREATE TABLE table_name_60 (province VARCHAR, icao VARCHAR)"}, {"answer": "SELECT country FROM table_name_65 WHERE score = 70 - 74 - 69 = 213", "question": "What is the country with a 70-74-69=213 score?", "context": "CREATE TABLE table_name_65 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_19 WHERE place = \"t2\" AND player = \"mark brooks\"", "question": "What is the highest to par of player mark brooks, who has a t2 place?", "context": "CREATE TABLE table_name_19 (to_par INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE place = \"t8\" AND country = \"united states\" AND player = \"craig stadler\"", "question": "What is the score of player craig stadler from the United States with a t8 place?", "context": "CREATE TABLE table_name_84 (score VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_93 WHERE player = \"ian woosnam\"", "question": "What is the country of player ian woosnam?", "context": "CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_93 WHERE bronze > 5 AND gold < 16", "question": "How many silver medals did the team that had 5 bronze and less than 16 gold have?", "context": "CREATE TABLE table_name_93 (silver INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT team_website FROM table_name_93 WHERE institution = \"indiana university of pennsylvania\"", "question": "what is the team website when the institution is indiana university of pennsylvania?", "context": "CREATE TABLE table_name_93 (team_website VARCHAR, institution VARCHAR)"}, {"answer": "SELECT team_nickname FROM table_name_68 WHERE joined_tschl = 2010 AND home_arena = \"kettering rec center\" AND team_website = \"dayton hockey\"", "question": "what is the team nickname when joined tschl is 2010 and home arena is kettering rec center and the team website is dayton hockey?", "context": "CREATE TABLE table_name_68 (team_nickname VARCHAR, team_website VARCHAR, joined_tschl VARCHAR, home_arena VARCHAR)"}, {"answer": "SELECT team_nickname FROM table_name_78 WHERE joined_tschl > 2010", "question": "what is the team nickname that joined tschl after 2010?", "context": "CREATE TABLE table_name_78 (team_nickname VARCHAR, joined_tschl INTEGER)"}, {"answer": "SELECT institution FROM table_name_78 WHERE location = \"akron, oh\"", "question": "what is the institution at akron, oh?", "context": "CREATE TABLE table_name_78 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT home_arena FROM table_name_59 WHERE joined_tschl = 2010 AND team_nickname = \"bearcats\"", "question": "what is the home arena that joined tschl in 2010 and the team nickname is bearcats?", "context": "CREATE TABLE table_name_59 (home_arena VARCHAR, joined_tschl VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT round FROM table_name_99 WHERE pick__number > 114 AND player = \"richard crump\"", "question": "Richard Crump picked after the 114 pick was drafted in what round?", "context": "CREATE TABLE table_name_99 (round VARCHAR, pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT driver FROM table_name_74 WHERE grid < 24 AND laps < 61 AND constructor = \"ferrari\"", "question": "Who has a grid smaller than 24, less than 61 laps, and a ferrari constructor?", "context": "CREATE TABLE table_name_74 (driver VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_44 WHERE laps = 58 AND grid < 21", "question": "Who is the driver with 58 laps and a grid smaller than 21?", "context": "CREATE TABLE table_name_44 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT year_built FROM table_name_54 WHERE current_status = \"tbsc\" AND boat_builder = \"j. jones, trearddur bay\"", "question": "What year did J. Jones, trearddur bay build a boat with a current status of tbsc?", "context": "CREATE TABLE table_name_54 (year_built VARCHAR, current_status VARCHAR, boat_builder VARCHAR)"}, {"answer": "SELECT boat_builder FROM table_name_42 WHERE year_built = \"1910/11\" AND number = 39", "question": "What is the boat builder for a boat built in 1910/11 and a number of 39?", "context": "CREATE TABLE table_name_42 (boat_builder VARCHAR, year_built VARCHAR, number VARCHAR)"}, {"answer": "SELECT boat_builder FROM table_name_76 WHERE number > 93 AND year_built = \"1994\"", "question": "What is the boat builder for a boat built in 1994 and a number greater than 93?", "context": "CREATE TABLE table_name_76 (boat_builder VARCHAR, number VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT year_built FROM table_name_46 WHERE name = \"cormorant\"", "question": "What year was the cormorant built in?", "context": "CREATE TABLE table_name_46 (year_built VARCHAR, name VARCHAR)"}, {"answer": "SELECT boat_builder FROM table_name_28 WHERE number < 65 AND name = \"valmai\"", "question": "What boat builder built the valmai with a number less than 65?", "context": "CREATE TABLE table_name_28 (boat_builder VARCHAR, number VARCHAR, name VARCHAR)"}, {"answer": "SELECT venue FROM table_name_69 WHERE home_team = \"richmond\"", "question": "Which sporting location is where Richmond plays?", "context": "CREATE TABLE table_name_69 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_14 WHERE away_team = \"essendon\"", "question": "When the Away team was essendon, what was the Venue they played at?", "context": "CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_48 WHERE player = \"dale mitchell\"", "question": "What college or club team did Dale Mitchell play for?", "context": "CREATE TABLE table_name_48 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_40 WHERE visitor = \"magic\" AND date = \"march 22, 2008\"", "question": "Who is the leading scorer for the game on March 22, 2008 with a visitor of Magic?", "context": "CREATE TABLE table_name_40 (leading_scorer VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_40 WHERE date = \"march 5, 2008\"", "question": "Who was the home team on March 5, 2008?", "context": "CREATE TABLE table_name_40 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_19 WHERE away_team = \"essendon\"", "question": "What is the score for the away team at Essendon?", "context": "CREATE TABLE table_name_19 (away_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_80 WHERE home_team = \"st kilda\"", "question": "What was the smallest crowd size for the home team at St Kilda?", "context": "CREATE TABLE table_name_80 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT tatsuhito_takaiwa FROM table_name_50 WHERE ryusuke_taguchi = \"taguchi (14:31)\"", "question": "Name for me the tatsuhito takaiwa for Ryusuke Taguchi of taguchi (14:31)", "context": "CREATE TABLE table_name_50 (tatsuhito_takaiwa VARCHAR, ryusuke_taguchi VARCHAR)"}, {"answer": "SELECT ryusuke_taguchi FROM table_name_53 WHERE jushin_liger = \"liger (9:57)\"", "question": "Name the ryusuke taguchi for Jushin Liger of liger (9:57)", "context": "CREATE TABLE table_name_53 (ryusuke_taguchi VARCHAR, jushin_liger VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_61 WHERE away_team = \"richmond\"", "question": "What were the most in attendance in Richmond?", "context": "CREATE TABLE table_name_61 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_90 WHERE away_team = \"essendon\"", "question": "What team played Essendon?", "context": "CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_75 WHERE opponent = \"buffalo bills\"", "question": "Which game site has an Opponent of buffalo bills?", "context": "CREATE TABLE table_name_75 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_70 WHERE result = \"l 6\u20133\"", "question": "Which opponent has a Result of l 6\u20133?", "context": "CREATE TABLE table_name_70 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_76 WHERE week > 13 AND result = \"l 20\u20130\"", "question": "Which game site has a Week bigger than 13, and a Result of l 20\u20130?", "context": "CREATE TABLE table_name_76 (game_site VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE week = 6", "question": "Which date has a Week of 6?", "context": "CREATE TABLE table_name_44 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_43 WHERE decision = \"biron\" AND date = \"october 4\"", "question": "Who was the visiting team where the decision was Biron on October 4?", "context": "CREATE TABLE table_name_43 (visitor VARCHAR, decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_23 WHERE goals_against = 32 AND goals_for > 45", "question": "What is the highest number of losses where a team scored more than 45 goals and had 32 against?", "context": "CREATE TABLE table_name_23 (losses INTEGER, goals_against VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_83 WHERE high_points = \"kobe bryant (18)\" AND date = \"november 18\"", "question": "What is the location attendance of the game with Kobe Bryant (18) with the highest points on November 18?", "context": "CREATE TABLE table_name_83 (location_attendance VARCHAR, high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_73 WHERE game = 3", "question": "Which team had game 3?", "context": "CREATE TABLE table_name_73 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT authority FROM table_name_50 WHERE scientic_name = \"o. tricuspis\"", "question": "What is the authority of the scientific name of O. Tricuspis?", "context": "CREATE TABLE table_name_50 (authority VARCHAR, scientic_name VARCHAR)"}, {"answer": "SELECT COUNT(decile) FROM table_name_33 WHERE area = \"mount roskill\" AND name = \"monte cecilia school\" AND roll > 170", "question": "How many values for decile occur in Mount Roskill with Monte Cecilia school with a roll greater than 170?", "context": "CREATE TABLE table_name_33 (decile VARCHAR, roll VARCHAR, area VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_4 WHERE gold > 6 AND rank > 2 AND silver > 5", "question": "For ranks over 2 with Golds over 6 and Silvers over 5 what would be the lowest qualifying Total?", "context": "CREATE TABLE table_name_4 (total INTEGER, silver VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_82 WHERE year = \"2004-05\"", "question": "What is the Playoffs during 2004-05?", "context": "CREATE TABLE table_name_82 (playoffs VARCHAR, year VARCHAR)"}, {"answer": "SELECT record FROM table_name_44 WHERE date = \"july 3\"", "question": "What was the record of the game on July 3?", "context": "CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_20 WHERE record = \"35-46\"", "question": "What was the attendance at the game when the record was 35-46?", "context": "CREATE TABLE table_name_20 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE record = \"35-47\"", "question": "What was the score of the game when the record was 35-47?", "context": "CREATE TABLE table_name_76 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_90 WHERE opponent = \"california angels\" AND attendance = \"10,886\"", "question": "Who took the loss against the California Angels when the attendance was 10,886?", "context": "CREATE TABLE table_name_90 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_31 WHERE away_team = \"carlton\"", "question": "How many people were in the crowd for a game than had carlton as the visiting team?", "context": "CREATE TABLE table_name_31 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_93 WHERE home_team = \"north melbourne\"", "question": "What was total size of the crowd at a home game for north melbourne?", "context": "CREATE TABLE table_name_93 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE venue = \"glenferrie oval\"", "question": "When was the game played at glenferrie oval?", "context": "CREATE TABLE table_name_70 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_74 WHERE crowd > 26 OFFSET 063", "question": "When the crowd was bigger than 26,063, who was the Away team?", "context": "CREATE TABLE table_name_74 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT away_team AS score FROM table_name_21 WHERE away_team = \"south melbourne\"", "question": "What did South Melbourne score when they were the Away team?", "context": "CREATE TABLE table_name_21 (away_team VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_45 WHERE airline = \"gol\"", "question": "What is the average rank of gol on airlines?", "context": "CREATE TABLE table_name_45 (rank INTEGER, airline VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_6 WHERE home_team = \"fitzroy\"", "question": "What is the away team score when Home team is fitzroy?", "context": "CREATE TABLE table_name_6 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE venue = \"corio oval\"", "question": "Which date was corio oval the venue?", "context": "CREATE TABLE table_name_12 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_8 WHERE away_team = \"st kilda\"", "question": "Which venue has St Kilda as the away team?", "context": "CREATE TABLE table_name_8 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_65 WHERE date = \"17 august 1935\"", "question": "What was the away team score at the game held on 17 August 1935?", "context": "CREATE TABLE table_name_65 (away_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT league FROM table_name_66 WHERE goals = 12", "question": "Which league has 12 goals?", "context": "CREATE TABLE table_name_66 (league VARCHAR, goals VARCHAR)"}, {"answer": "SELECT league FROM table_name_41 WHERE apps < 15 AND goals = 0 AND club = \"sparta prague\"", "question": "Which league has less than 15 apps and 0 goals with sparta prague?", "context": "CREATE TABLE table_name_41 (league VARCHAR, club VARCHAR, apps VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MIN(runners_up) FROM table_name_66 WHERE years_won = \"1993\"", "question": "How many runners up for the team that won in 1993?", "context": "CREATE TABLE table_name_66 (runners_up INTEGER, years_won VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_9 WHERE winners < 1 AND years_runner_up = \"1985 , 1996\"", "question": "How many runners up for the team with under 1 win and a Years runner-up of 1985 , 1996?", "context": "CREATE TABLE table_name_9 (runners_up VARCHAR, winners VARCHAR, years_runner_up VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_43 WHERE race_name = \"iii reims grand prix\"", "question": "On what circuit was the iii Reims Grand Prix held?", "context": "CREATE TABLE table_name_43 (circuit VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_5 WHERE race_name = \"i mexican grand prix\"", "question": "On what circuit was the i mexican grand prix held?", "context": "CREATE TABLE table_name_5 (circuit VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT MAX(start) FROM table_name_29 WHERE conv = 14 AND tries = 10 AND pens > 22", "question": "What is the largest start for a player with 14 conv, 10 tries and more than 22 pens?", "context": "CREATE TABLE table_name_29 (start INTEGER, pens VARCHAR, conv VARCHAR, tries VARCHAR)"}, {"answer": "SELECT COUNT(tries) FROM table_name_83 WHERE conv < 45 AND start = 19 AND pens < 22", "question": "What is the total of tries for a player with conv smaller than 45, 19 starts and pens fewer than 22?", "context": "CREATE TABLE table_name_83 (tries VARCHAR, pens VARCHAR, conv VARCHAR, start VARCHAR)"}, {"answer": "SELECT SUM(earnings__) AS $__ FROM table_name_82 WHERE country = \"united states\" AND wins = 22 AND rank > 2", "question": "When the united states has 22 wins and a rank greater than 2, what is the total earnings?", "context": "CREATE TABLE table_name_82 (earnings__ INTEGER, rank VARCHAR, country VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_23 WHERE country = \"new zealand\"", "question": "What is the smallest rank for new zealand?", "context": "CREATE TABLE table_name_23 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_96 WHERE away_team = \"richmond\"", "question": "What is Richmond's away team score versus Geelong?", "context": "CREATE TABLE table_name_96 (away_team VARCHAR)"}, {"answer": "SELECT SUM(total_seats) FROM table_name_61 WHERE share_of_votes = \"21.8%\"", "question": "When the share of votes equals 21.8%, what's the sum of the total amount of seats?", "context": "CREATE TABLE table_name_61 (total_seats INTEGER, share_of_votes VARCHAR)"}, {"answer": "SELECT election FROM table_name_37 WHERE total_seats < 144 AND seats = 32", "question": "If the total number of seats is under 144, and the seats won is 32, which election is this?", "context": "CREATE TABLE table_name_37 (election VARCHAR, total_seats VARCHAR, seats VARCHAR)"}, {"answer": "SELECT MAX(total_seats) FROM table_name_4 WHERE share_of_votes = \"33.9%\"", "question": "When the share of votes is 33.9%, what's the highest total amount of seats?", "context": "CREATE TABLE table_name_4 (total_seats INTEGER, share_of_votes VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_39 WHERE away_team = \"north melbourne\"", "question": "What was the home team's score when North Melbourne was the away team?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_41 WHERE home_team = \"geelong\"", "question": "Who was the away team when Geelong was the home team?", "context": "CREATE TABLE table_name_41 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_37 WHERE away_team = \"north melbourne\"", "question": "What is the score of away team, North Melbourne?", "context": "CREATE TABLE table_name_37 (away_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_36 WHERE venue = \"kardinia park\"", "question": "What is the fewest number of attendees at Kardinia Park?", "context": "CREATE TABLE table_name_36 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_93 WHERE away_team = \"fitzroy\"", "question": "What is the home team score when the away team was fitzroy?", "context": "CREATE TABLE table_name_93 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home FROM table_name_96 WHERE decision = \"mason\" AND visitor = \"dallas\"", "question": "Who was the home team at the game with a decision of Mason and a visiting team of Dallas?", "context": "CREATE TABLE table_name_96 (home VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_37 WHERE time_retired = \"engine\" AND grid = 5", "question": "Name the highest laps for time/retired of engine and grid of 5", "context": "CREATE TABLE table_name_37 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_33 WHERE constructor = \"maserati\" AND time_retired = \"+6 laps\" AND grid > 11", "question": "Name the highest laps for maserati and +6 laps for grid more than 11", "context": "CREATE TABLE table_name_33 (laps INTEGER, grid VARCHAR, constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_41 WHERE grid = 4", "question": "Tell me the time/retired for grid 4", "context": "CREATE TABLE table_name_41 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_18 WHERE laps = 58", "question": "Tell me the driver for 58 laps", "context": "CREATE TABLE table_name_18 (driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_89 WHERE away_team = \"essendon\"", "question": "What is the score of the home team aginst Essendon?", "context": "CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE home_team = \"geelong\"", "question": "When is the Geelong game?", "context": "CREATE TABLE table_name_26 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT original_broadway_production FROM table_name_52 WHERE first_us_national_tour = \"roger bart\"", "question": "Which Original Broadway production has a First US National Tour of roger bart?", "context": "CREATE TABLE table_name_52 (original_broadway_production VARCHAR, first_us_national_tour VARCHAR)"}, {"answer": "SELECT original_broadway_production FROM table_name_1 WHERE role = \"dr. victor von frankenstein\"", "question": "Which Original Broadway production has a Role of dr. victor von frankenstein?", "context": "CREATE TABLE table_name_1 (original_broadway_production VARCHAR, role VARCHAR)"}, {"answer": "SELECT role FROM table_name_19 WHERE first_us_national_tour = \"roger bart\"", "question": "Which Role has a First US National Tour of roger bart?", "context": "CREATE TABLE table_name_19 (role VARCHAR, first_us_national_tour VARCHAR)"}, {"answer": "SELECT original_italian_production FROM table_name_4 WHERE first_us_national_tour = \"joanna glushak\"", "question": "Which Original Italian production has a First US National Tour of joanna glushak?", "context": "CREATE TABLE table_name_4 (original_italian_production VARCHAR, first_us_national_tour VARCHAR)"}, {"answer": "SELECT venue FROM table_name_49 WHERE away_team = \"south melbourne\"", "question": "At what venue was the game played where the away team was South Melbourne", "context": "CREATE TABLE table_name_49 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT director FROM table_name_97 WHERE year > 1949 AND role = \"eula goodnight\"", "question": "Who directed the eula goodnight movie after 1949?", "context": "CREATE TABLE table_name_97 (director VARCHAR, year VARCHAR, role VARCHAR)"}, {"answer": "SELECT role FROM table_name_97 WHERE year < 1942 AND director = \"dorothy arzner\"", "question": "What role does she play before 1942 with dorothy arzner directing?", "context": "CREATE TABLE table_name_97 (role VARCHAR, year VARCHAR, director VARCHAR)"}, {"answer": "SELECT role FROM table_name_57 WHERE genre = \"drama\" AND year = 1973", "question": "What drama role does she play in 1973?", "context": "CREATE TABLE table_name_57 (role VARCHAR, genre VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_19 WHERE competition = \"1986 fifa world cup\"", "question": "What is the date of the 1986 FIFA World Cup?", "context": "CREATE TABLE table_name_19 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MIN(floor_exercise) FROM table_name_58 WHERE pommel_horse < 8.45 AND parallel_bars > 9.687", "question": "Name the least floor exercise for parallel bars more than 9.687 and pommel horse less than 8.45", "context": "CREATE TABLE table_name_58 (floor_exercise INTEGER, pommel_horse VARCHAR, parallel_bars VARCHAR)"}, {"answer": "SELECT COUNT(pommel_horse) FROM table_name_65 WHERE rank > 16 AND vault = 9.475", "question": "Name the total number of pommel horses for vault of 9.475 and rank more than 16", "context": "CREATE TABLE table_name_65 (pommel_horse VARCHAR, rank VARCHAR, vault VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_4 WHERE venue = \"lake oval\"", "question": "When lake oval is the venue, what's the score of the home team?", "context": "CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_60 WHERE date = \"june 3\"", "question": "Who did the cubs play on june 3?", "context": "CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT place_of_action FROM table_name_80 WHERE rank = \"sergeant\" AND unit = \"5th company, 2nd marines\"", "question": "Tell me the place of action for sergeant rank and 5th company, 2nd marines unit", "context": "CREATE TABLE table_name_80 (place_of_action VARCHAR, rank VARCHAR, unit VARCHAR)"}, {"answer": "SELECT service FROM table_name_20 WHERE unit = \"7th marines\" AND rank = \"sergeant\"", "question": "Name the service for 7th marines rank of sergeant", "context": "CREATE TABLE table_name_20 (service VARCHAR, unit VARCHAR, rank VARCHAR)"}, {"answer": "SELECT distance FROM table_name_99 WHERE course = \"olbia to sassari\"", "question": "How far is the olbia to sassari route?", "context": "CREATE TABLE table_name_99 (distance VARCHAR, course VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE venue = \"miami\" AND goal = 38", "question": "What day is miami the venue with 38 goals?", "context": "CREATE TABLE table_name_67 (date VARCHAR, venue VARCHAR, goal VARCHAR)"}, {"answer": "SELECT competition FROM table_name_63 WHERE goal = 41", "question": "What competition has 41 goals?", "context": "CREATE TABLE table_name_63 (competition VARCHAR, goal VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE goal = 34", "question": "What day has 34 goals?", "context": "CREATE TABLE table_name_76 (date VARCHAR, goal VARCHAR)"}, {"answer": "SELECT driver FROM table_name_93 WHERE laps < 22 AND time_retired = \"ignition\"", "question": "What driver had under 22 laps and a Time/Retired of ignition?", "context": "CREATE TABLE table_name_93 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_51 WHERE driver = \"chris amon\"", "question": "What is the highest number of laps for chris amon?", "context": "CREATE TABLE table_name_51 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_94 WHERE away_team = \"hawthorn\"", "question": "What is the crowd with Away team of hawthorn?", "context": "CREATE TABLE table_name_94 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_85 WHERE home_team = \"carlton\"", "question": "What away team score has carlton home team?", "context": "CREATE TABLE table_name_85 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_19 WHERE venue = \"vfl park\"", "question": "What is the away team score at vfl park?", "context": "CREATE TABLE table_name_19 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE home_team = \"st kilda\"", "question": "When did St Kilda play a home game?", "context": "CREATE TABLE table_name_91 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE venue = \"moorabbin oval\"", "question": "When was the game played at Moorabbin Oval?", "context": "CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT name FROM table_name_27 WHERE area = \"kelston\" AND roll < 322", "question": "Tell me the name for kelston with roll less than 322", "context": "CREATE TABLE table_name_27 (name VARCHAR, area VARCHAR, roll VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_24 WHERE date = \"september 8\"", "question": "Who was the opponent on September 8?", "context": "CREATE TABLE table_name_24 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT grand_finaldate FROM table_name_40 WHERE season = 1988", "question": "I want the Grand Final Date for season 1988", "context": "CREATE TABLE table_name_40 (grand_finaldate VARCHAR, season VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_72 WHERE location = \"carrick-on-shannon\"", "question": "What Gaelic Athletic Association stadium is located in Carrick-on-Shannon?", "context": "CREATE TABLE table_name_72 (stadium VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_30 WHERE stadium = \"mchale park\"", "question": "What is the Gaelic Football Stadium at McHale Park's ranking in total capacity?", "context": "CREATE TABLE table_name_30 (rank VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_21 WHERE crowd > 6 OFFSET 000", "question": "Which Away team score has a Crowd larger than 6,000?", "context": "CREATE TABLE table_name_21 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT AVG(crowd) FROM table_name_72 WHERE home_team = \"south melbourne\"", "question": "Which average Crowd has a Home team of south melbourne?", "context": "CREATE TABLE table_name_72 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE record = \"43\u201335\"", "question": "On what date was the Record of 43\u201335?", "context": "CREATE TABLE table_name_25 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_17 WHERE date = \"april 3\"", "question": "What record occurred on April 3?", "context": "CREATE TABLE table_name_17 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_54 WHERE date = \"april 9\"", "question": "Who led the score on April 9?", "context": "CREATE TABLE table_name_54 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_96 WHERE attendance = \"rose garden 20,126\"", "question": "What is the record for the game that shows the Rose Garden 20,126 as attendance?", "context": "CREATE TABLE table_name_96 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_24 WHERE home = \"dallas mavericks\"", "question": "What is the record for the game when the Dallas Mavericks was the home team?", "context": "CREATE TABLE table_name_24 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_44 WHERE attendance = \"rose garden 20,126\"", "question": "What is the record that has the Rose Garden 20,126 as the attendance?", "context": "CREATE TABLE table_name_44 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE attendance = \"43,746\"", "question": "What was the score when 43,746 attended?", "context": "CREATE TABLE table_name_50 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE record = \"56-46\"", "question": "What was the score when the record 56-46 was met?", "context": "CREATE TABLE table_name_7 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_43 WHERE home_team = \"richmond\"", "question": "What did Richmond score as the home team?", "context": "CREATE TABLE table_name_43 (home_team VARCHAR)"}, {"answer": "SELECT model_name FROM table_name_45 WHERE displacement__cm\u00b3_ = 2521 AND engine_code = \"b5254 t2\"", "question": "Which model has a 2521 cm displacement and b5254 t2 engine?", "context": "CREATE TABLE table_name_45 (model_name VARCHAR, displacement__cm\u00b3_ VARCHAR, engine_code VARCHAR)"}, {"answer": "SELECT engine_code FROM table_name_84 WHERE displacement__cm\u00b3_ = 2435 AND model_name = \"2.4 (2001-2007)\"", "question": "Which engine has a 2435 cm displacement and is named 2.4 (2001-2007)?", "context": "CREATE TABLE table_name_84 (engine_code VARCHAR, displacement__cm\u00b3_ VARCHAR, model_name VARCHAR)"}, {"answer": "SELECT venue FROM table_name_71 WHERE date = \"10-09-2012\"", "question": "What was the venue for the game on 10-09-2012?", "context": "CREATE TABLE table_name_71 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_22 WHERE date = \"13-11-2012\"", "question": "Which competition was played on 13-11-2012?", "context": "CREATE TABLE table_name_22 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_38 WHERE competition = \"friendly\" AND date = \"15-08-2012\"", "question": "Which opponent is friendly and played on 15-08-2012?", "context": "CREATE TABLE table_name_38 (opponent VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_23 WHERE date = \"10-05-2012\"", "question": "What is the result of game played on 10-05-2012?", "context": "CREATE TABLE table_name_23 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_26 WHERE date = \"07-09-2012\"", "question": "What opponent played on 07-09-2012?", "context": "CREATE TABLE table_name_26 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_6 WHERE competition = \"friendly\" AND result = \"2-3\"", "question": "What is the location of the game that was friendly and resulted in 2-3?", "context": "CREATE TABLE table_name_6 (venue VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_75 WHERE venue = \"western oval\"", "question": "What was the home team score for the game played at Western Oval?", "context": "CREATE TABLE table_name_75 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_23 WHERE home_team = \"carlton\"", "question": "What was the crowd number when the home team was Carlton?", "context": "CREATE TABLE table_name_23 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_44 WHERE club = \"treviso\"", "question": "What is the largest capacity for the stadium for Treviso club?", "context": "CREATE TABLE table_name_44 (capacity INTEGER, club VARCHAR)"}, {"answer": "SELECT loci FROM table_name_77 WHERE software = \"cinderella\"", "question": "Is there Loci in the Cinderella software?", "context": "CREATE TABLE table_name_77 (loci VARCHAR, software VARCHAR)"}, {"answer": "SELECT macros FROM table_name_65 WHERE software = \"tabula\"", "question": "Are the there macros in the Tabula software?", "context": "CREATE TABLE table_name_65 (macros VARCHAR, software VARCHAR)"}, {"answer": "SELECT proofs FROM table_name_88 WHERE software = \"tabulae\"", "question": "Are there proofs in the Tabulae software?", "context": "CREATE TABLE table_name_88 (proofs VARCHAR, software VARCHAR)"}, {"answer": "SELECT SUM(years) FROM table_name_7 WHERE tied < 37 AND total_games > 33 AND lost = 15", "question": "What is the year total for teams with under 37 games tied, over 33 games, and 15 losses?", "context": "CREATE TABLE table_name_7 (years INTEGER, lost VARCHAR, tied VARCHAR, total_games VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_44 WHERE pct < 0.625 AND years < 3", "question": "What is the low loss total for teams with under 3 years and a less than 0.625% winning percentage?", "context": "CREATE TABLE table_name_44 (lost INTEGER, pct VARCHAR, years VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_2 WHERE class = \"p14\"", "question": "How many CLASS P14 trains were made?", "context": "CREATE TABLE table_name_2 (quantity_made VARCHAR, class VARCHAR)"}, {"answer": "SELECT year_s__withdrawn FROM table_name_86 WHERE class = \"t14\"", "question": "In what year(s) were the CLASS T14 trains withdrawn from service?", "context": "CREATE TABLE table_name_86 (year_s__withdrawn VARCHAR, class VARCHAR)"}, {"answer": "SELECT year_s__withdrawn FROM table_name_61 WHERE wheel_arrangement = \"4-6-0\" AND year_made = \"1908\"", "question": "What year was the 4-6-0 Wheel model train from 1908 withdrawn?", "context": "CREATE TABLE table_name_61 (year_s__withdrawn VARCHAR, wheel_arrangement VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_95 WHERE home_team = \"collingwood\"", "question": "What was the away team at collingwood?", "context": "CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_39 WHERE venue = \"windy hill\"", "question": "What is the home team at windy hill?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_91 WHERE highest > 6 OFFSET 192", "question": "What is the greatest capacity when the largest number in attendance is 6,192?", "context": "CREATE TABLE table_name_91 (capacity INTEGER, highest INTEGER)"}, {"answer": "SELECT MAX(average) FROM table_name_87 WHERE highest = 5 OFFSET 078", "question": "What is the highest average number in attendance when the most in attendance is 5,078?", "context": "CREATE TABLE table_name_87 (average INTEGER, highest VARCHAR)"}, {"answer": "SELECT SUM(route) FROM table_name_33 WHERE rank > 63 AND mountain_pass = \"separation summit\"", "question": "What is the route that has a rank higher than 63, and Separation Summit as its mountain pass?", "context": "CREATE TABLE table_name_33 (route INTEGER, rank VARCHAR, mountain_pass VARCHAR)"}, {"answer": "SELECT player FROM table_name_1 WHERE school_club_team_country = \"illinois\"", "question": "Which player plays for Illinois?", "context": "CREATE TABLE table_name_1 (player VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE years_for_rockets = \"2002-03\"", "question": "Which player played for the Rockets in 2002-03?", "context": "CREATE TABLE table_name_41 (player VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_77 WHERE no_s_ = \"10\"", "question": "What is the height in feet of number 10?", "context": "CREATE TABLE table_name_77 (height_in_ft VARCHAR, no_s_ VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_11 WHERE school_club_team_country = \"illinois\"", "question": "What is the height in feet of the Illinois player?", "context": "CREATE TABLE table_name_11 (height_in_ft VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_97 WHERE laps > 63 AND grid = 20", "question": "Tell me the time/retired for Laps larger than 63 and has a grid of 20", "context": "CREATE TABLE table_name_97 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_5 WHERE driver = \"wolfgang von trips\" AND grid > 5", "question": "I want the sum of Laps for wolfgang von trips, and a grid larger than 5", "context": "CREATE TABLE table_name_5 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_85 WHERE home_team = \"fitzroy\"", "question": "When fitzroy what was the home team score?", "context": "CREATE TABLE table_name_85 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE away_team = \"st kilda\"", "question": "When st kilda played as the Away team which date was that?", "context": "CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_62 WHERE date = \"november 1, 1942\"", "question": "What was the attendance on November 1, 1942?", "context": "CREATE TABLE table_name_62 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_49 WHERE venue = \"victoria park\"", "question": "What is the away team score at victoria park?", "context": "CREATE TABLE table_name_49 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_89 WHERE home_team = \"st kilda\"", "question": "What is the away team from st kilda?", "context": "CREATE TABLE table_name_89 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT country_territory FROM table_name_89 WHERE mr_gay_international = \"jason keatly\"", "question": "In what Country/Territory did Jason Keatly win Mr. Gay Internatnional?", "context": "CREATE TABLE table_name_89 (country_territory VARCHAR, mr_gay_international VARCHAR)"}, {"answer": "SELECT score_1 FROM table_name_23 WHERE away_team = \"portsmouth\"", "question": "What was the score of the match in which Portsmouth was the Away team?", "context": "CREATE TABLE table_name_23 (score_1 VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_95 WHERE home_team = \"west ham united\"", "question": "Which Away team did West Ham United play against?", "context": "CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score_1 FROM table_name_99 WHERE attendance = \"9,205\"", "question": "What was the final score of the match that had an attendance of 9,205?", "context": "CREATE TABLE table_name_99 (score_1 VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_65 WHERE venue = \"glenferrie oval\"", "question": "What is the home team score at glenferrie oval?", "context": "CREATE TABLE table_name_65 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT laps FROM table_name_35 WHERE time_retired = \"+8 laps\"", "question": "Tell me the Laps for time/retired of +8 laps", "context": "CREATE TABLE table_name_35 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_21 WHERE time_retired = \"+13 laps\" AND grid > 18", "question": "Tell me the sum of laps with a time/retired of +13 laps with grid more than 18", "context": "CREATE TABLE table_name_21 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_22 WHERE grid = 12", "question": "I want the lowest laps that have a grid of 12", "context": "CREATE TABLE table_name_22 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_86 WHERE constructor = \"alfa romeo\" AND driver = \"toulo de graffenried\"", "question": "Tell me the sum of the grid with alfa romeo and toulo de graffenried", "context": "CREATE TABLE table_name_86 (grid INTEGER, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_4 WHERE venue = \"western oval\"", "question": "Which away team's Venue is western oval?", "context": "CREATE TABLE table_name_4 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT decision FROM table_name_2 WHERE home = \"vancouver\" AND date = \"april 21\"", "question": "What was the decision from the Vancouver home game on April 21?", "context": "CREATE TABLE table_name_2 (decision VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_62 WHERE visitor = \"vancouver\" AND date = \"april 29\"", "question": "What was the home team that played Vancouver on April 29?", "context": "CREATE TABLE table_name_62 (home VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_71 WHERE 2011 = \"sf\"", "question": "Which 2009 had a 2011 of SF?", "context": "CREATE TABLE table_name_71 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_56 WHERE tournament = \"us open\"", "question": "Which 2010 featured the US Open?", "context": "CREATE TABLE table_name_56 (tournament VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_70 WHERE time_retired = \"gearbox\" AND laps > 67", "question": "What is the highest grid when the race was retired due to the gearbox after 67 laps?", "context": "CREATE TABLE table_name_70 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_59 WHERE grid < 13 AND driver = \"jarno trulli\"", "question": "What was the time of the race for Driver Jarno Trulli on a grid smaller than 13?", "context": "CREATE TABLE table_name_59 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_77 WHERE grid > 4 AND driver = \"nick heidfeld\"", "question": "How many laps did Nick Heidfeld drive on grids larger than 4?", "context": "CREATE TABLE table_name_77 (laps INTEGER, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(new_council) FROM table_name_82 WHERE previous_council = 54 AND staying_councillors > 36", "question": "What is the full number of New Council when the previous council was 54 and the staying councilor number is bigger than 36?", "context": "CREATE TABLE table_name_82 (new_council VARCHAR, previous_council VARCHAR, staying_councillors VARCHAR)"}, {"answer": "SELECT COUNT(new_council) FROM table_name_14 WHERE previous_council = 19 AND seats_up_for_election < 6", "question": "Which number of New Councils had a previous council number of 19 and the seats up for election were bigger than 6?", "context": "CREATE TABLE table_name_14 (new_council VARCHAR, previous_council VARCHAR, seats_up_for_election VARCHAR)"}, {"answer": "SELECT AVG(staying_councillors) FROM table_name_76 WHERE election_result < 10 AND party = \"green\" AND new_council > 0", "question": "What is the mean amount of staying councilors with an election result amounting to less than 10 with the Green party, and a new council bigger than 0?", "context": "CREATE TABLE table_name_76 (staying_councillors INTEGER, new_council VARCHAR, election_result VARCHAR, party VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_83 WHERE chassis = \"mp4-17d\" AND year < 2003", "question": "What is the number of points for the vehicle with a mp4-17d chassis earlier than 2003?", "context": "CREATE TABLE table_name_83 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_60 WHERE chassis = \"mp4-17d\" AND points < 142", "question": "What is the earliest year with a mp4-17d chassis and less than 142 points.", "context": "CREATE TABLE table_name_60 (year INTEGER, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(decile) FROM table_name_88 WHERE suburb = \"clendon\"", "question": "What is the sum for every value of Decile in Clendon?", "context": "CREATE TABLE table_name_88 (decile INTEGER, suburb VARCHAR)"}, {"answer": "SELECT local_board FROM table_name_98 WHERE name = \"clendon teen parent unit\"", "question": "Which local board does the Clendon Teen Parent Unit belong to?", "context": "CREATE TABLE table_name_98 (local_board VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_17 WHERE type = \"learning/social difficulties\"", "question": "Which name is the learning/social difficulties type?", "context": "CREATE TABLE table_name_17 (name VARCHAR, type VARCHAR)"}, {"answer": "SELECT result FROM table_name_15 WHERE extra = \"4 x 100 m relay\" AND year > 1971", "question": "what is the result when extra is 4 x 100 m relay and the year is later than 1971?", "context": "CREATE TABLE table_name_15 (result VARCHAR, extra VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_30 WHERE result = \"2nd\" AND extra = \"4 x 100 m relay\"", "question": "what is the venue when the result is 2nd and extra is 4 x 100 m relay?", "context": "CREATE TABLE table_name_30 (venue VARCHAR, result VARCHAR, extra VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE visitor = \"anaheim\"", "question": "What was the date of the Red Wings home game against Anaheim?", "context": "CREATE TABLE table_name_30 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE home = \"vancouver\"", "question": "What was the score of the Red Wings game when Vancouver was the home team?", "context": "CREATE TABLE table_name_71 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_23 WHERE home_team = \"footscray\"", "question": "What is the name of the away team who played Footscray?", "context": "CREATE TABLE table_name_23 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE venue = \"princes park\"", "question": "What date was the game played at Princes Park?", "context": "CREATE TABLE table_name_62 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT report FROM table_name_65 WHERE fastest_lap = \"jacques villeneuve\" AND grand_prix = \"australian grand prix\"", "question": "During the Australian Grand Prix and the fastest lap was driven by Jacques Villeneuve, what's the report recorded?", "context": "CREATE TABLE table_name_65 (report VARCHAR, fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_16 WHERE fastest_lap = \"damon hill\"", "question": "When the fastest lap was driven by damon hill who was the winning constructor?", "context": "CREATE TABLE table_name_16 (winning_constructor VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_17 WHERE fastest_lap = \"damon hill\" AND pole_position = \"michael schumacher\" AND grand_prix = \"hungarian grand prix\"", "question": "During the hungarian grand prix where the pole position was michael schumacher and the fastest lap was driven by damon hill, what's the total number of rounds of races matching these standards?", "context": "CREATE TABLE table_name_17 (round VARCHAR, grand_prix VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_31 WHERE winning_driver = \"jacques villeneuve\"", "question": "When the winning driver was jacques villeneuve what was the fastest lap driven?", "context": "CREATE TABLE table_name_31 (fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_2 WHERE total < 12 AND bronze < 1 AND sport = \"wushu\" AND silver > 3", "question": "I want to know the average Gold for total smaller 12 and bronze less than 1 and wushu with silver more than 3", "context": "CREATE TABLE table_name_2 (gold INTEGER, silver VARCHAR, sport VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_98 WHERE silver = 2 AND sport = \"electronic sports\"", "question": "I want the lowest Gold for silver being 2 and electronic sports", "context": "CREATE TABLE table_name_98 (gold INTEGER, silver VARCHAR, sport VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_67 WHERE sport = \"futsal\"", "question": "Tell me the total number of Bronze for futsal", "context": "CREATE TABLE table_name_67 (bronze VARCHAR, sport VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_16 WHERE sport = \"vovinam\" AND bronze < 3", "question": "Tell me the total number of total for vovinam and bronze less than 3", "context": "CREATE TABLE table_name_16 (total VARCHAR, sport VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_35 WHERE gold = 27 AND silver > 30", "question": "Tell me the sum of bronze for gold being 27 and silver more than 30", "context": "CREATE TABLE table_name_35 (bronze INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT winner_season FROM table_name_52 WHERE year = 1998", "question": "Who won the season of 1998?", "context": "CREATE TABLE table_name_52 (winner_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT year_s__withdrawn FROM table_name_90 WHERE year_made = \"1876\"", "question": "What year was the locomotive withdrawn that was made in 1876?", "context": "CREATE TABLE table_name_90 (year_s__withdrawn VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_44 WHERE home_team = \"fitzroy\"", "question": "What was the lowest attendance when Fitzroy was the home team?", "context": "CREATE TABLE table_name_44 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_93 WHERE record = \"25\u201317\u20135\"", "question": "Which attendance has the 25\u201317\u20135 record?", "context": "CREATE TABLE table_name_93 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE visitor = \"minnesota\"", "question": "What was the score when Minnesota visited?", "context": "CREATE TABLE table_name_86 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_55 WHERE visitor = \"trail blazers\"", "question": "Who was the leading scorer when the visiting team was the Trail Blazers?", "context": "CREATE TABLE table_name_55 (leading_scorer VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_65 WHERE date = \"november 26, 2007\"", "question": "Who was the visiting team on November 26, 2007?", "context": "CREATE TABLE table_name_65 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_52 WHERE grid < 14 AND driver = \"stefan johansson\"", "question": "Who constructed stefan johansson's car with a grid under 14?", "context": "CREATE TABLE table_name_52 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_59 WHERE laps < 44 AND driver = \"piercarlo ghinzani\"", "question": "Who constructed piercarlo ghinzani's car with under 44 laps?", "context": "CREATE TABLE table_name_59 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(width__inches_) FROM table_name_36 WHERE length__feet_ > 25 AND numbers = \"401-484\"", "question": "On buses ranging in numbr 401-484, what is the lowest width that one longer thna 25 feet can have?", "context": "CREATE TABLE table_name_36 (width__inches_ INTEGER, length__feet_ VARCHAR, numbers VARCHAR)"}, {"answer": "SELECT COUNT(width__inches_) FROM table_name_11 WHERE engine = \"navistar t444e\" AND retired = \"2005\" AND length__feet_ < 25", "question": "For a vehicle below 25 feet, that was retired in 2005 and had a navistar t444e engine, what was the total width?", "context": "CREATE TABLE table_name_11 (width__inches_ VARCHAR, length__feet_ VARCHAR, engine VARCHAR, retired VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE home = \"atlanta\"", "question": "What was the score of the game when the home was Atlanta?", "context": "CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_60 WHERE decision = \"brodeur\" AND home = \"ottawa\"", "question": "What is the number of people in attendance when the decision was brodeur and the home was ottawa?", "context": "CREATE TABLE table_name_60 (attendance VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT partner FROM table_name_45 WHERE surface = \"clay\" AND outcome = \"runner-up\" AND score = \"1\u20136, 6\u20134, [10\u201312]\"", "question": "Which Partner with the surface of Clay ended up as a runner-up with a score of 1\u20136, 6\u20134, [10\u201312]?", "context": "CREATE TABLE table_name_45 (partner VARCHAR, score VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_89 WHERE home_team = \"geelong\"", "question": "What was the score of the other team that played Geelong?", "context": "CREATE TABLE table_name_89 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(mintage) FROM table_name_49 WHERE year < 2005", "question": "What is the lowest mintage in a year earlier than 2005?", "context": "CREATE TABLE table_name_49 (mintage INTEGER, year INTEGER)"}, {"answer": "SELECT SUM(mintage) FROM table_name_61 WHERE artist = \"pierre leduc\"", "question": "What is the sum of all mintage created by Pierre Leduc?", "context": "CREATE TABLE table_name_61 (mintage INTEGER, artist VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_71 WHERE date = \"1995-10-01\"", "question": "Which week was the 1995-10-01 game on?", "context": "CREATE TABLE table_name_71 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_23 WHERE week < 9 AND attendance = \"49,970\"", "question": "What was the result of the game prior to week 9 with an attendance of 49,970?", "context": "CREATE TABLE table_name_23 (result VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE game_site = \"joe robbie stadium\"", "question": "What was the date of the game at Joe Robbie Stadium?", "context": "CREATE TABLE table_name_14 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_99 WHERE attendance = \"54,436\"", "question": "Where was the game with the attendance of 54,436?", "context": "CREATE TABLE table_name_99 (game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_47 WHERE total = 3 AND bronze > 2", "question": "What is the highest silver total for nations with 3 total and over 2 bronze?", "context": "CREATE TABLE table_name_47 (silver INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_5 WHERE nation = \"east germany\" AND total < 3", "question": "What is the highest bronze total for east germany with under 3 total medals?", "context": "CREATE TABLE table_name_5 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT production_code FROM table_name_92 WHERE no_in_series = 174", "question": "What production code does episode 174 of Melrose place have?", "context": "CREATE TABLE table_name_92 (production_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT title FROM table_name_90 WHERE no_in_series = 168", "question": "What is the title of Melsrose Place episode number 168?", "context": "CREATE TABLE table_name_90 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_name_60 WHERE no_in_season = 11", "question": "What episode number is the first episode of season 11 in Melrose Place?", "context": "CREATE TABLE table_name_60 (no_in_series INTEGER, no_in_season VARCHAR)"}, {"answer": "SELECT d_46_\u221a FROM table_name_14 WHERE d_50_\u221a = \"d 50 \u221a\"", "question": "What is the D 46 \u221a when the D 50 \u221a is d 50 \u221a?", "context": "CREATE TABLE table_name_14 (d_46_\u221a VARCHAR, d_50_\u221a VARCHAR)"}, {"answer": "SELECT d_46_\u221a FROM table_name_3 WHERE d_44_\u221a = \"\u2190 majority\"", "question": "What is the D 46 \u221a when the D 44 \u221a is \u2190 majority?", "context": "CREATE TABLE table_name_3 (d_46_\u221a VARCHAR, d_44_\u221a VARCHAR)"}, {"answer": "SELECT d_44_\u221a FROM table_name_32 WHERE d_46_\u221a = \"r 26\"", "question": "What is the D 44 \u221a when the D 46 \u221a is r 26?", "context": "CREATE TABLE table_name_32 (d_44_\u221a VARCHAR, d_46_\u221a VARCHAR)"}, {"answer": "SELECT d_41_\u221a FROM table_name_83 WHERE d_47_\u221a = \"d 34\"", "question": "What is the D 41 \u221a when the D 47 \u221a is d 34?", "context": "CREATE TABLE table_name_83 (d_41_\u221a VARCHAR, d_47_\u221a VARCHAR)"}, {"answer": "SELECT d_41_\u221a FROM table_name_24 WHERE d_47_\u221a = \"r 34 o\"", "question": "What is the D 41 \u221a when the D 47 \u221a is r 34 o?", "context": "CREATE TABLE table_name_24 (d_41_\u221a VARCHAR, d_47_\u221a VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_51 WHERE venue = \"windy hill\"", "question": "What is the highest crowd at windy hill?", "context": "CREATE TABLE table_name_51 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE away_team = \"st kilda\"", "question": "What date is st kilda the Away team?", "context": "CREATE TABLE table_name_90 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT ties FROM table_name_74 WHERE drawn = \"20\"", "question": "How many ties drawed at 20?", "context": "CREATE TABLE table_name_74 (ties VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_21 WHERE qual_1 = \"1:21.523\"", "question": "What is the time for the second qualification where the first qualification time was 1:21.523?", "context": "CREATE TABLE table_name_21 (qual_2 VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_38 WHERE best = \"1:20.772\"", "question": "What is the time for the second qualification where the best time was 1:20.772?", "context": "CREATE TABLE table_name_38 (qual_2 VARCHAR, best VARCHAR)"}, {"answer": "SELECT team FROM table_name_17 WHERE qual_1 = \"1:22.655\"", "question": "What is the team name for the racer who had a first qualification time of 1:22.655?", "context": "CREATE TABLE table_name_17 (team VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT name FROM table_name_5 WHERE qual_1 = \"1:22.085\"", "question": "What is the name of the racer that had a first qualification time of 1:22.085?", "context": "CREATE TABLE table_name_5 (name VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT best FROM table_name_62 WHERE team = \"forsythe racing\" AND name = \"paul tracy\"", "question": "What is Paul Tracy's best time racing on the Forsythe Racing team?", "context": "CREATE TABLE table_name_62 (best VARCHAR, team VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_95 WHERE year > 2004 AND artist = \"logistics\"", "question": "What is the type of disc by Logistics after 2004?", "context": "CREATE TABLE table_name_95 (type VARCHAR, year VARCHAR, artist VARCHAR)"}, {"answer": "SELECT year FROM table_name_22 WHERE catalogue_number = \"mash02\"", "question": "What is the year of the disc with a catalogue number mash02?", "context": "CREATE TABLE table_name_22 (year VARCHAR, catalogue_number VARCHAR)"}, {"answer": "SELECT MIN(swimsuit) FROM table_name_66 WHERE state = \"rhode island\" AND average > 9.235", "question": "What is the lowest swimsuit score a contestant from Rhode Island with an average larger than 9.235 has?", "context": "CREATE TABLE table_name_66 (swimsuit INTEGER, state VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_14 WHERE state = \"iowa\" AND swimsuit < 9.267", "question": "What is the highest average a contestant from Iowa with a swimsuit smaller than 9.267 has?", "context": "CREATE TABLE table_name_14 (average INTEGER, state VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_56 WHERE evening_gown > 9.449 AND state = \"kansas\"", "question": "What is the highest average for a contestant with an evening gown larger than 9.449 from Kansas?", "context": "CREATE TABLE table_name_56 (average INTEGER, evening_gown VARCHAR, state VARCHAR)"}, {"answer": "SELECT MIN(swimsuit) FROM table_name_38 WHERE average = 9.125", "question": "What is the lowest swimsuit for a contestant with an average of 9.125?", "context": "CREATE TABLE table_name_38 (swimsuit INTEGER, average VARCHAR)"}, {"answer": "SELECT MIN(interview) FROM table_name_60 WHERE swimsuit > 9.021 AND average < 9.513 AND state = \"north carolina\" AND evening_gown > 9.5", "question": "What is the lowest interview for a contestant from North Carolina with a swimsuit larger than 9.021, an average smaller than 9.513, and an evening gown larger than 9.5?", "context": "CREATE TABLE table_name_60 (interview INTEGER, evening_gown VARCHAR, state VARCHAR, swimsuit VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(earnings__) AS $__ FROM table_name_23 WHERE player = \"jim colbert\"", "question": "What's the most jim colbert got paid?", "context": "CREATE TABLE table_name_23 (earnings__ INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_40 WHERE player = \"bruce fleisher\"", "question": "How many average wins does bruce fleisher have?", "context": "CREATE TABLE table_name_40 (wins INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_88 WHERE wins < 22", "question": "What rank has less than 22 wins", "context": "CREATE TABLE table_name_88 (rank VARCHAR, wins INTEGER)"}, {"answer": "SELECT winner FROM table_name_29 WHERE year = 1999 AND loser = \"kansas city chiefs\"", "question": "Who was the winner of the game in 1999 with Kansas City Chiefs as the loser?", "context": "CREATE TABLE table_name_29 (winner VARCHAR, year VARCHAR, loser VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_84 WHERE date = \"december 26\"", "question": "What is the average year of the games with the date December 26?", "context": "CREATE TABLE table_name_84 (year INTEGER, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_40 WHERE away_team = \"hull city\"", "question": "What is the home team that played Hull City?", "context": "CREATE TABLE table_name_40 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT height_ft___m FROM table_name_24 WHERE floors > 30 AND name = \"bny mellon center\"", "question": "Name the height when the floors are bigger than 30 at the bny mellon center", "context": "CREATE TABLE table_name_24 (height_ft___m VARCHAR, floors VARCHAR, name VARCHAR)"}, {"answer": "SELECT year FROM table_name_41 WHERE rank = \"8\"", "question": "Name the year for 8 rank", "context": "CREATE TABLE table_name_41 (year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_93 WHERE away_team = \"collingwood\"", "question": "What was the lowest amount of people to turn out at a game with the away team as collingwood?", "context": "CREATE TABLE table_name_93 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_97 WHERE home_team = \"st kilda\"", "question": "When the home team of st kilda was playing, what was the away team score?", "context": "CREATE TABLE table_name_97 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_39 WHERE venue = \"glenferrie oval\"", "question": "What is the total number of people that attended the glenferrie oval venue?", "context": "CREATE TABLE table_name_39 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_59 WHERE visitor = \"grizzlies\"", "question": "Tell me the leading scorer for grizzlies", "context": "CREATE TABLE table_name_59 (leading_scorer VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_76 WHERE home = \"bucks\" AND date = \"24 november 2007\"", "question": "Name the record with home of bucks on 24 november 2007", "context": "CREATE TABLE table_name_76 (record VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_65 WHERE home = \"bobcats\"", "question": "Name the record for bobcats", "context": "CREATE TABLE table_name_65 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_38 WHERE venue = \"glenferrie oval\"", "question": "In the venue of Glenferrie Oval, what is the home team score?", "context": "CREATE TABLE table_name_38 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE week < 10 AND game_site = \"texas stadium\" AND opponent = \"atlanta falcons\"", "question": "What is the date of the game in a week earlier than 10 played in Texas stadium agains the Atlanta Falcons?", "context": "CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_42 WHERE round = \"2\" AND college = \"kansas state\" AND pick = \"19\"", "question": "What is the nationality of the player from Round 2, Pick 19 from College of Kansas State?", "context": "CREATE TABLE table_name_42 (nationality VARCHAR, pick VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_17 WHERE round = \"1\" AND position = \"c\"", "question": "What is the nationality of the player in Position C from Round 1?", "context": "CREATE TABLE table_name_17 (nationality VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT team FROM table_name_88 WHERE round = \"2\" AND pick = \"13\"", "question": "Which team has Pick 13 in Round 2?", "context": "CREATE TABLE table_name_88 (team VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_59 WHERE pick = \"7\"", "question": "Who is the Pick 7 player?", "context": "CREATE TABLE table_name_59 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_54 WHERE score_in_the_final = \"6\u20131, 1\u20136, 4\u20136\"", "question": "Who were the opponents in the final in which the score was 6\u20131, 1\u20136, 4\u20136?", "context": "CREATE TABLE table_name_54 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT launch_date FROM table_name_58 WHERE institutional_authority = \"ndc\" AND launch_vehicle = \"hatf-xi\"", "question": "Tell me the launch date with Institutional authority of ndc and launch vehicle of hatf-xi", "context": "CREATE TABLE table_name_58 (launch_date VARCHAR, institutional_authority VARCHAR, launch_vehicle VARCHAR)"}, {"answer": "SELECT launch_vehicle FROM table_name_59 WHERE institutional_authority = \"ndc\"", "question": "Name the launch vehicle with Institutional authority of ndc", "context": "CREATE TABLE table_name_59 (launch_vehicle VARCHAR, institutional_authority VARCHAR)"}, {"answer": "SELECT institutional_authority FROM table_name_47 WHERE launch_date = \"october 12, 2004\"", "question": "Name the institutional authority for launch date of october 12, 2004", "context": "CREATE TABLE table_name_47 (institutional_authority VARCHAR, launch_date VARCHAR)"}, {"answer": "SELECT results FROM table_name_73 WHERE institutional_authority = \"paf\"", "question": "Name the results for institutional authority of paf", "context": "CREATE TABLE table_name_73 (results VARCHAR, institutional_authority VARCHAR)"}, {"answer": "SELECT laps FROM table_name_59 WHERE driver = \"yannick dalmas\"", "question": "How many laps did Yannick Dalmas do?", "context": "CREATE TABLE table_name_59 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_name_39 WHERE driver = \"eddie cheever\"", "question": "How many Laps does Eddie Cheever have?", "context": "CREATE TABLE table_name_39 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_98 WHERE grid = 19", "question": "What is the name of the Constructor with a 19 Grid?", "context": "CREATE TABLE table_name_98 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(ngc_number) FROM table_name_86 WHERE constellation = \"sagittarius\" AND object_type = \"diffuse nebula\" AND declination___j2000__ = \"\u00b002\u2032\"", "question": "Name the total number of NGC number for sagittarius and diffuse nebula with declination of \u00b002\u2032", "context": "CREATE TABLE table_name_86 (ngc_number VARCHAR, declination___j2000__ VARCHAR, constellation VARCHAR, object_type VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_72 WHERE ngc_number < 6575 AND declination___j2000__ = \"\u00b038\u203200\u2033\"", "question": "I want to know the right ascension which has an NGC less than 6575 and declination of \u00b038\u203200\u2033", "context": "CREATE TABLE table_name_72 (right_ascension___j2000__ VARCHAR, ngc_number VARCHAR, declination___j2000__ VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_78 WHERE constellation = \"sagittarius\" AND ngc_number > 6522 AND object_type = \"open cluster\" AND declination___j2000__ = \"\u00b022\u2032\"", "question": "Name the right ascension for sagittarius and NGC number larger than 6522 for open cluster and declination of \u00b022\u2032", "context": "CREATE TABLE table_name_78 (right_ascension___j2000__ VARCHAR, declination___j2000__ VARCHAR, object_type VARCHAR, constellation VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_15 WHERE loss = \"rekar (4\u20135)\"", "question": "How many were in attendance for the loss of rekar (4\u20135)?", "context": "CREATE TABLE table_name_15 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT year FROM table_name_72 WHERE status = \"won\"", "question": "In what year is the status of won?", "context": "CREATE TABLE table_name_72 (year VARCHAR, status VARCHAR)"}, {"answer": "SELECT role FROM table_name_70 WHERE film = \"the last samurai\"", "question": "What was the Last Samurai role?", "context": "CREATE TABLE table_name_70 (role VARCHAR, film VARCHAR)"}, {"answer": "SELECT status FROM table_name_14 WHERE \"role\" = \"role\"", "question": "When the role is role what was the status?", "context": "CREATE TABLE table_name_14 (status VARCHAR)"}, {"answer": "SELECT film FROM table_name_96 WHERE status = \"nominated\" AND name = \"ken watanabe\"", "question": "What Ken Watanabe film as nominated?", "context": "CREATE TABLE table_name_96 (film VARCHAR, status VARCHAR, name VARCHAR)"}, {"answer": "SELECT year FROM table_name_42 WHERE status = \"nominated\" AND film = \"the last samurai\"", "question": "What year was The Last Samurai nominated?", "context": "CREATE TABLE table_name_42 (year VARCHAR, status VARCHAR, film VARCHAR)"}, {"answer": "SELECT film FROM table_name_31 WHERE \"year\" = \"year\"", "question": "When the year is year what was the film?", "context": "CREATE TABLE table_name_31 (film VARCHAR)"}, {"answer": "SELECT class FROM table_name_43 WHERE quantity < 174 AND date = \"1921\u201323\"", "question": "Which class has less in quantity than 174 between the years 1921\u201323?", "context": "CREATE TABLE table_name_43 (class VARCHAR, quantity VARCHAR, date VARCHAR)"}, {"answer": "SELECT type FROM table_name_29 WHERE quantity = 11", "question": "Which type has a quantity of 11?", "context": "CREATE TABLE table_name_29 (type VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT class FROM table_name_70 WHERE type = \"4-6-0\" AND quantity < 3", "question": "Which class has less than 3 in quantity with  a type of 4-6-0?", "context": "CREATE TABLE table_name_70 (class VARCHAR, type VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE time = \"2:44\"", "question": "What was the score for the team with a time of 2:44?", "context": "CREATE TABLE table_name_8 (score VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(opened) FROM table_name_20 WHERE venue = \"huff hall\" AND established > 1974", "question": "When is the earliest year opened for huff hall that was established after 1974?", "context": "CREATE TABLE table_name_20 (opened INTEGER, venue VARCHAR, established VARCHAR)"}, {"answer": "SELECT SUM(earnings__) AS $__ FROM table_name_63 WHERE rank < 1", "question": "Tell me the sum of earnings for rank less than 1", "context": "CREATE TABLE table_name_63 (earnings__ INTEGER, rank INTEGER)"}, {"answer": "SELECT SUM(rank) FROM table_name_6 WHERE wins = 17", "question": "Tell me the sum of rank with wins of 17", "context": "CREATE TABLE table_name_6 (rank INTEGER, wins VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_5 WHERE time_retired = \"+2 laps\" AND grid > 18", "question": "What is the total number of laps where time/retired is +2 laps and the grid number is bigger than 18?", "context": "CREATE TABLE table_name_5 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_67 WHERE time_retired = \"+1:05.564\"", "question": "What is the mean number of laps where time/retired was +1:05.564?", "context": "CREATE TABLE table_name_67 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT laps FROM table_name_77 WHERE grid > 9 AND driver = \"mark webber\"", "question": "Which lap number had a grid number bigger than 9 and where the driver was Mark Webber?", "context": "CREATE TABLE table_name_77 (laps VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE home_team = \"richmond\"", "question": "What is the date when Richmond was the home team?", "context": "CREATE TABLE table_name_66 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(tie_no) FROM table_name_66 WHERE attendance = 126", "question": "what is the tie no when the attendance is 126?", "context": "CREATE TABLE table_name_66 (tie_no INTEGER, attendance VARCHAR)"}, {"answer": "SELECT AVG(tie_no) FROM table_name_11 WHERE home_team = \"stamford a.f.c.\"", "question": "what is the average tie no when the home team is stamford a.f.c.?", "context": "CREATE TABLE table_name_11 (tie_no INTEGER, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE tie_no = 28", "question": "what is the score when the tie no is 28?", "context": "CREATE TABLE table_name_97 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT driver FROM table_name_21 WHERE tyre = \"p\" AND entrant = \"officine alfieri maserati\"", "question": "Who was the driver of the Officine Alfieri Maserati with a Tyre of P?", "context": "CREATE TABLE table_name_21 (driver VARCHAR, tyre VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_87 WHERE tyre = \"e\" AND chassis = \"625 555 d50\" AND driver = \"giuseppe farina\"", "question": "Who was the entrant for driver Giuseppe Farina when he had a Chassis of 625 555 D50 and a tyre of E?", "context": "CREATE TABLE table_name_87 (entrant VARCHAR, driver VARCHAR, tyre VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_79 WHERE tyre = \"e\" AND driver = \"mike sparken\"", "question": "Who constructed Mike Sparken's car with a tyre of E?", "context": "CREATE TABLE table_name_79 (constructor VARCHAR, tyre VARCHAR, driver VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_74 WHERE constructor = \"gordini\"", "question": "What rounds did Gordini participate in?", "context": "CREATE TABLE table_name_74 (rounds VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_86 WHERE chassis = \"250f\" AND rounds = \"1\"", "question": "Who constructed the car in round 1 with a Chassis of 250F?", "context": "CREATE TABLE table_name_86 (constructor VARCHAR, chassis VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_83 WHERE venue = \"glenferrie oval\"", "question": "What was the lowest attendance at Glenferrie Oval?", "context": "CREATE TABLE table_name_83 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_56 WHERE away_team = \"north melbourne\"", "question": "Where did North Melbourne play as the away team?", "context": "CREATE TABLE table_name_56 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_94 WHERE away_team = \"footscray\"", "question": "What was Footscray's score as the away team?", "context": "CREATE TABLE table_name_94 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_92 WHERE venue = \"glenferrie oval\"", "question": "What was the away teams score at Glenferrie Oval?", "context": "CREATE TABLE table_name_92 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT head_coach FROM table_name_53 WHERE location = \"mudgeeraba\"", "question": "Who is the head coach of the team located in Mudgeeraba?", "context": "CREATE TABLE table_name_53 (head_coach VARCHAR, location VARCHAR)"}, {"answer": "SELECT president FROM table_name_37 WHERE head_coach = \"mark wakeling\"", "question": "Who is the President of the team that has the Head Coach Mark Wakeling?", "context": "CREATE TABLE table_name_37 (president VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT head_coach FROM table_name_86 WHERE president = \"mario volarevic\"", "question": "Who is the Head Coach of the team whose President is Mario Volarevic?", "context": "CREATE TABLE table_name_86 (head_coach VARCHAR, president VARCHAR)"}, {"answer": "SELECT team FROM table_name_68 WHERE head_coach = \"steve beever\"", "question": "Which team's Head Coach is Steve Beever?", "context": "CREATE TABLE table_name_68 (team VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_45 WHERE date = \"1/11\"", "question": "How many people attended the match on 1/11?", "context": "CREATE TABLE table_name_45 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_43 WHERE visitor = \"golden state warriors\" AND home = \"dallas mavericks\"", "question": "Who was the leading scorer in the match when the Golden State Warriors were visiting the Dallas Mavericks?", "context": "CREATE TABLE table_name_43 (leading_scorer VARCHAR, visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_54 WHERE position = \"dl\"", "question": "Which CFL Team has a Position of dl?", "context": "CREATE TABLE table_name_54 (cfl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_12 WHERE college = \"montreal\" AND player = \"marc trepanier\"", "question": "Which CFL Team has a College of montreal, and a Player of marc trepanier?", "context": "CREATE TABLE table_name_12 (cfl_team VARCHAR, college VARCHAR, player VARCHAR)"}, {"answer": "SELECT translated_title FROM table_name_31 WHERE norwegian_title = \"steinulven\"", "question": "What is the Translated Title of Steinulven?", "context": "CREATE TABLE table_name_31 (translated_title VARCHAR, norwegian_title VARCHAR)"}, {"answer": "SELECT norwegian_title FROM table_name_37 WHERE pages = 218 AND translated_title = \"breaking dawn\"", "question": "What Norwegian title has 218 pages and Translated Title of Breaking Dawn?", "context": "CREATE TABLE table_name_37 (norwegian_title VARCHAR, pages VARCHAR, translated_title VARCHAR)"}, {"answer": "SELECT constituency FROM table_name_4 WHERE swing_to_gain < 6.05 AND rank = 2", "question": "I want the constituency which has a swing to gain less than 6.05 and a rank of 2", "context": "CREATE TABLE table_name_4 (constituency VARCHAR, swing_to_gain VARCHAR, rank VARCHAR)"}, {"answer": "SELECT winning_party_2007 FROM table_name_60 WHERE result = \"labour hold\" AND swing_to_gain < 7.11 AND constituency = \"wrexham\"", "question": "Name the winning party 2007 for result of labour hold and swing to gain less than 7.11 for wrexham", "context": "CREATE TABLE table_name_60 (winning_party_2007 VARCHAR, constituency VARCHAR, result VARCHAR, swing_to_gain VARCHAR)"}, {"answer": "SELECT boxscore FROM table_name_82 WHERE loss = \"capuano (5\u20135)\"", "question": "Which box score has a Loss of capuano (5\u20135)?", "context": "CREATE TABLE table_name_82 (boxscore VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_23 WHERE score = \"2\u20135\"", "question": "Which opponent has a Score of 2\u20135?", "context": "CREATE TABLE table_name_23 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_28 WHERE date = \"june 10\"", "question": "What is the record for june 10?", "context": "CREATE TABLE table_name_28 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT boxscore FROM table_name_32 WHERE attendance = \"54,773\"", "question": "Which box score has an Attendance of 54,773?", "context": "CREATE TABLE table_name_32 (boxscore VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT loss FROM table_name_43 WHERE date = \"june 8\"", "question": "What loss happened june 8?", "context": "CREATE TABLE table_name_43 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_89 WHERE boxscore = \"w2\" AND loss = \"kline (2\u20133)\"", "question": "Which record has a Boxscore of w2, and a Loss of kline (2\u20133)?", "context": "CREATE TABLE table_name_89 (record VARCHAR, boxscore VARCHAR, loss VARCHAR)"}, {"answer": "SELECT pct FROM table_name_84 WHERE total_games < 944", "question": "What is the PCT when the total number of games is less than 944?", "context": "CREATE TABLE table_name_84 (pct VARCHAR, total_games INTEGER)"}, {"answer": "SELECT MAX(lost) FROM table_name_57 WHERE tied > 42 AND years < 132 AND pct < 0.5729000000000001", "question": "What is the highest number lost when the number tied is more than 42, the years are less than 132, and the PCT is less than 0.5729000000000001?", "context": "CREATE TABLE table_name_57 (lost INTEGER, pct VARCHAR, tied VARCHAR, years VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_22 WHERE pct > 0.7334 AND total_games > 48", "question": "What is the average number lost when the PCT is more than 0.7334 and the total number of games is larger than 48?", "context": "CREATE TABLE table_name_22 (lost INTEGER, pct VARCHAR, total_games VARCHAR)"}, {"answer": "SELECT SUM(tied) FROM table_name_41 WHERE independent = \"old dominion\" AND years > 4", "question": "What is the total number of tied games when Old Dominion is the independent and the years is more than 4?", "context": "CREATE TABLE table_name_41 (tied INTEGER, independent VARCHAR, years VARCHAR)"}, {"answer": "SELECT MIN(pct) FROM table_name_54 WHERE independent = \"old dominion\" AND years > 4", "question": "What is the lowest PCT when Old Dominion is the independent and the years is more than 4?", "context": "CREATE TABLE table_name_54 (pct INTEGER, independent VARCHAR, years VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_55 WHERE driver = \"jacques villeneuve\" AND grid > 7", "question": "how many laps was the driver jacques villeneuve and the grid more than 7?", "context": "CREATE TABLE table_name_55 (laps VARCHAR, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_85 WHERE high_rebounds = \"nick collison (11)\"", "question": "What is the high assists score of Nick Collison (11)?", "context": "CREATE TABLE table_name_85 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_23 WHERE grid = 12", "question": "What is Time/Retired with a Grid of 12?", "context": "CREATE TABLE table_name_23 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_8 WHERE manufacturer = \"honda\" AND rider = \"yuki takahashi\" AND laps > 22", "question": "How many grids have a Manufacturer of honda, a Rider of yuki takahashi, and more than 22 laps?", "context": "CREATE TABLE table_name_8 (grid VARCHAR, laps VARCHAR, manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_84 WHERE time_retired = \"+1:35.553\"", "question": "How many laps have a Time/Retired of +1:35.553?", "context": "CREATE TABLE table_name_84 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE home_team = \"fitzroy\"", "question": "If fitzroy was the home team what date did they play?", "context": "CREATE TABLE table_name_48 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE goal = 4", "question": "What is the score of the game with 4 goals?", "context": "CREATE TABLE table_name_46 (score VARCHAR, goal VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE competition = \"friendly\" AND goal = 1", "question": "What is the score of the friendly competition with 1 goal?", "context": "CREATE TABLE table_name_25 (score VARCHAR, competition VARCHAR, goal VARCHAR)"}, {"answer": "SELECT purse___us$__ FROM table_name_32 WHERE race = \"illinois derby\"", "question": "What was the Illinois Derby purse?", "context": "CREATE TABLE table_name_32 (purse___us$__ VARCHAR, race VARCHAR)"}, {"answer": "SELECT purse___us$__ FROM table_name_30 WHERE dist = \"1 mile\" AND winning_horse = \"crafty bear\"", "question": "How much money did Crafty Bear wins with a dist of 1 mile?", "context": "CREATE TABLE table_name_30 (purse___us$__ VARCHAR, dist VARCHAR, winning_horse VARCHAR)"}, {"answer": "SELECT track FROM table_name_69 WHERE race = \"fountain of youth stakes\"", "question": "What track did they race on at the Fountain of Youth Stakes?", "context": "CREATE TABLE table_name_69 (track VARCHAR, race VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_91 WHERE laps > 14 AND driver = \"alain prost\"", "question": "What is the grid total for alain prost with over 14 laps?", "context": "CREATE TABLE table_name_91 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT digital_analog_signal FROM table_name_50 WHERE chipset_based_on = \"radeon 8500\"", "question": "What is the Digital/analog signal with a Chipset based on with radeon 8500?", "context": "CREATE TABLE table_name_50 (digital_analog_signal VARCHAR, chipset_based_on VARCHAR)"}, {"answer": "SELECT retail_name FROM table_name_1 WHERE chipset_based_on = \"radeon 9200\"", "question": "What is the Retail name with a Chipset based on with radeon 9200?", "context": "CREATE TABLE table_name_1 (retail_name VARCHAR, chipset_based_on VARCHAR)"}, {"answer": "SELECT chipset_based_on FROM table_name_18 WHERE digital_analog_signal = \"analog\" AND available_interface = \"agp\" AND retail_name = \"all-in-wonder 9800\"", "question": "What is the Chipset based on with a Digital/analog signal of analog, with an Available interface of agp, with Retail name with all-in-wonder 9800?", "context": "CREATE TABLE table_name_18 (chipset_based_on VARCHAR, retail_name VARCHAR, digital_analog_signal VARCHAR, available_interface VARCHAR)"}, {"answer": "SELECT retail_name FROM table_name_24 WHERE available_interface = \"pci express 2.0\"", "question": "What is the Retail name with an Available interface with pci express 2.0?", "context": "CREATE TABLE table_name_24 (retail_name VARCHAR, available_interface VARCHAR)"}, {"answer": "SELECT digital_analog_signal FROM table_name_71 WHERE available_interface = \"pci express\" AND retail_name = \"all-in-wonder x600 pro\"", "question": "What is the Digital/analog signal with an Available interface with pci express, with Retail name with all-in-wonder x600 pro?", "context": "CREATE TABLE table_name_71 (digital_analog_signal VARCHAR, available_interface VARCHAR, retail_name VARCHAR)"}, {"answer": "SELECT retail_name FROM table_name_15 WHERE digital_analog_signal = \"analog\" AND chipset_based_on = \"radeon 9600\"", "question": "What is the Retail name with a Digital/analog signal with analog, and a Chipset based on with radeon 9600?", "context": "CREATE TABLE table_name_15 (retail_name VARCHAR, digital_analog_signal VARCHAR, chipset_based_on VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE date = \"11/2/01\"", "question": "What was the score of the match on 11/2/01?", "context": "CREATE TABLE table_name_94 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_84 WHERE venue = \"valley parade\"", "question": "Did the Bulls win or lose at Valley Parade?", "context": "CREATE TABLE table_name_84 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE champion = \"vikings\" AND stadium = \"namyangju stadium\"", "question": "What was the score when the Vikings won the championship at Namyangju Stadium?", "context": "CREATE TABLE table_name_86 (score VARCHAR, champion VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT label FROM table_name_48 WHERE formats = \"cd\" AND format = \"album\" AND year = 2008", "question": "Tell me the label for formats of cd and album and year of 2008", "context": "CREATE TABLE table_name_48 (label VARCHAR, year VARCHAR, formats VARCHAR, format VARCHAR)"}, {"answer": "SELECT label FROM table_name_9 WHERE formats = \"digital\" AND title = \"nebula remixes\"", "question": "Tell me the label for digital format with nebula remixes", "context": "CREATE TABLE table_name_9 (label VARCHAR, formats VARCHAR, title VARCHAR)"}, {"answer": "SELECT catalog_number FROM table_name_66 WHERE format = \"album\" AND label = \"seed records\" AND formats = \"cd\" AND title = \"grey\"", "question": "I want to know the catalog number for album and seed records label for cd and title of grey", "context": "CREATE TABLE table_name_66 (catalog_number VARCHAR, title VARCHAR, formats VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT format FROM table_name_48 WHERE year > 2000 AND label = \"myuzyk\" AND catalog_number = \"mzykn08\"", "question": "Tell me the format with year more than 2000 and label of myuzyk with catalog number of mzykn08", "context": "CREATE TABLE table_name_48 (format VARCHAR, catalog_number VARCHAR, year VARCHAR, label VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_12 WHERE venue = \"kardinia park\"", "question": "If the Venue was kardinia park what was the highest Crowd attended?", "context": "CREATE TABLE table_name_12 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_45 WHERE home_team = \"collingwood\"", "question": "If the Home team of collingwood was playing, what was the Away team?", "context": "CREATE TABLE table_name_45 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE venue = \"princes park\"", "question": "If the Venue was princes park, which Date did the game take place on?", "context": "CREATE TABLE table_name_58 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_98 WHERE laps = 76", "question": "What is the average rank of one who is at 76 laps?", "context": "CREATE TABLE table_name_98 (rank INTEGER, laps VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_69 WHERE time_retired = \"engine\" AND laps < 18", "question": "What is the average grid number for cars that retired due to engine failure before 18 laps?", "context": "CREATE TABLE table_name_69 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_45 WHERE grid < 11 AND driver = \"jo siffert\"", "question": "What is the time/retired for jo siffert with a grid under 11?", "context": "CREATE TABLE table_name_45 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_89 WHERE laps < 19 AND grid < 10", "question": "What driver has under 19 laps and a grid under 10?", "context": "CREATE TABLE table_name_89 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_99 WHERE attendance = 24 OFFSET 694", "question": "Where was the game that the attendance was 24,694?", "context": "CREATE TABLE table_name_99 (game INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_10 WHERE date = \"september 11\"", "question": "What was the attendance on September 11?", "context": "CREATE TABLE table_name_10 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_47 WHERE win__number > 3", "question": "Who had more than 3 wins?", "context": "CREATE TABLE table_name_47 (winner VARCHAR, win__number INTEGER)"}, {"answer": "SELECT MIN(league_cup_goals) FROM table_name_46 WHERE name = \"tyrone thompson\" AND flt_goals > 0", "question": "How many league cup goals for tyrone thompson with 0 FLT goals?", "context": "CREATE TABLE table_name_46 (league_cup_goals INTEGER, name VARCHAR, flt_goals VARCHAR)"}, {"answer": "SELECT MIN(league_goals) FROM table_name_14 WHERE position = \"fw\" AND fa_cup_apps = \"0\" AND playoff_goals > 0", "question": "How many goals for the FW with 0 FA cup appearances and over 0 playoff goals?", "context": "CREATE TABLE table_name_14 (league_goals INTEGER, playoff_goals VARCHAR, position VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT third FROM table_name_40 WHERE runner_up = \"paris saint-germain\" AND edition < 5", "question": "I want to know the third with runner of paris saint-germain and edition less than 5", "context": "CREATE TABLE table_name_40 (third VARCHAR, runner_up VARCHAR, edition VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_93 WHERE edition > 4 AND winner = \"new york red bulls\"", "question": "I want the sum of year for edition more than 4 and winners of new york red bulls", "context": "CREATE TABLE table_name_93 (year INTEGER, edition VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MIN(edition) FROM table_name_13 WHERE winner = \"arsenal\" AND third = \"celtic\"", "question": "Tell me the lowest edition for winner of arsenal and third of celtic", "context": "CREATE TABLE table_name_13 (edition INTEGER, winner VARCHAR, third VARCHAR)"}, {"answer": "SELECT COUNT(order) FROM table_name_77 WHERE goals = 239", "question": "What is total orders for goals of 239?", "context": "CREATE TABLE table_name_77 (order VARCHAR, goals VARCHAR)"}, {"answer": "SELECT name FROM table_name_67 WHERE games > 1 AND order = 907", "question": "Who had an order of 907 and more than 1 game?", "context": "CREATE TABLE table_name_67 (name VARCHAR, games VARCHAR, order VARCHAR)"}, {"answer": "SELECT seasons FROM table_name_88 WHERE goals > 100 AND games = 288", "question": "What seasons had 288 games and more than 100 goals?", "context": "CREATE TABLE table_name_88 (seasons VARCHAR, goals VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_17 WHERE seasons = \"1996 \u2013 2001\" AND order > 939", "question": "What is the low goal for orders more than 939 during Seasons of 1996 \u2013 2001?", "context": "CREATE TABLE table_name_17 (goals INTEGER, seasons VARCHAR, order VARCHAR)"}, {"answer": "SELECT record FROM table_name_8 WHERE date = \"october 30\"", "question": "What was the Record for the game on October 30?", "context": "CREATE TABLE table_name_8 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE visitor = \"philadelphia\"", "question": "When was the game played against a visiting team from Philadelphia?", "context": "CREATE TABLE table_name_65 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE visitor = \"new jersey\" AND home = \"toronto\"", "question": "What was the score when the home team, Toronto, played against New Jersey?", "context": "CREATE TABLE table_name_62 (score VARCHAR, visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE home = \"ny islanders\"", "question": "When was the home game for the NY Islanders?", "context": "CREATE TABLE table_name_20 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_69 WHERE date = \"november 2, 2007\"", "question": "Who was the home team for the game played on November 2, 2007?", "context": "CREATE TABLE table_name_69 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT silver FROM table_name_77 WHERE gold = 1 AND rank < 3 AND nation = \"japan\"", "question": "What is silver when gold is 1 and the rank is less than 3 for japan?", "context": "CREATE TABLE table_name_77 (silver VARCHAR, nation VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_34 WHERE total < 1", "question": "What is the rank for the total less than 1?", "context": "CREATE TABLE table_name_34 (rank INTEGER, total INTEGER)"}, {"answer": "SELECT gold FROM table_name_29 WHERE total < 2 AND rank = 3 AND nation = \"canada\"", "question": "What is the gold when the total is less than 2, and rank is 3 and Canada is the nation?", "context": "CREATE TABLE table_name_29 (gold VARCHAR, nation VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(floors) FROM table_name_6 WHERE rank > 30 AND year < 1977 AND name = \"100 van ness avenue\"", "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 name FROM table_name_91 WHERE floors > 31 AND year < 1964", "question": "What is the name of the building that has more than 31 floors and built prior to 1964?", "context": "CREATE TABLE table_name_91 (name VARCHAR, floors VARCHAR, year VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_67 WHERE venue = \"lake oval\"", "question": "Who was the away team at the game played at Lake Oval?", "context": "CREATE TABLE table_name_67 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_24 WHERE away_team = \"collingwood\"", "question": "What was the home team score for the game played against Collingwood?", "context": "CREATE TABLE table_name_24 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_73 WHERE venue = \"princes park\"", "question": "Who was the team with the smallest crowd at the Princes Park venue?", "context": "CREATE TABLE table_name_73 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT SUM(size_km\u00b2) FROM table_name_52 WHERE density_hab_km = 8 OFFSET 321", "question": "what is the size km\u00b2 when the density hab/km is 8,321?", "context": "CREATE TABLE table_name_52 (size_km\u00b2 INTEGER, density_hab_km VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_24 WHERE venue = \"victoria park\"", "question": "What is the score for the away team at Victoria Park?", "context": "CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE home_team = \"carlton\"", "question": "When did Carlton play as the home team?", "context": "CREATE TABLE table_name_60 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_name_89 WHERE written_by = \"ed horowitz\"", "question": "What was the original air date when ed horowitz wrote it?", "context": "CREATE TABLE table_name_89 (original_airdate VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT episode__number FROM table_name_34 WHERE original_airdate = \"july 23, 2000\"", "question": "Name the episode number that aired on july 23, 2000", "context": "CREATE TABLE table_name_34 (episode__number VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_87 WHERE points > 22 AND artist = \"avia band\"", "question": "How many draws for avia band with over 22 points?", "context": "CREATE TABLE table_name_87 (draw VARCHAR, points VARCHAR, artist VARCHAR)"}, {"answer": "SELECT COUNT(earnings___) AS $__ FROM table_name_1 WHERE wins > 2 AND rank < 2", "question": "What's the total earnings ($) with more than two wins and a rank less than 2?", "context": "CREATE TABLE table_name_1 (earnings___ VARCHAR, wins VARCHAR, rank VARCHAR)"}, {"answer": "SELECT player FROM table_name_32 WHERE rank < 2", "question": "Who's ranked less than 2?", "context": "CREATE TABLE table_name_32 (player VARCHAR, rank INTEGER)"}, {"answer": "SELECT away_team AS score FROM table_name_38 WHERE venue = \"moorabbin oval\"", "question": "What did the away team score at Moorabbin oval?", "context": "CREATE TABLE table_name_38 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_78 WHERE venue = \"moorabbin oval\"", "question": "What was the attendance at the game played at Moorabbin Oval?", "context": "CREATE TABLE table_name_78 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT wheel_arrangement FROM table_name_95 WHERE number = \"6 or 4\"", "question": "What is the wheel arrangement of the locomotive with number 6 or 4?", "context": "CREATE TABLE table_name_95 (wheel_arrangement VARCHAR, number VARCHAR)"}, {"answer": "SELECT boiler_pressure FROM table_name_58 WHERE name = \"hesperus\"", "question": "What is the boiler pressure for the Hesperus model?", "context": "CREATE TABLE table_name_58 (boiler_pressure VARCHAR, name VARCHAR)"}, {"answer": "SELECT driving_wheels FROM table_name_51 WHERE date_built = \"1883\"", "question": "What are the driving wheels of the model built in 1883?", "context": "CREATE TABLE table_name_51 (driving_wheels VARCHAR, date_built VARCHAR)"}, {"answer": "SELECT year_made FROM table_name_76 WHERE wheel_arrangement = \"0-6-0\" AND class = \"302\"", "question": "What year was the wheel arrangement 0-6-0 and a class 302?", "context": "CREATE TABLE table_name_76 (year_made VARCHAR, wheel_arrangement VARCHAR, class VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_97 WHERE class = \"330\"", "question": "How many have a class of 330?", "context": "CREATE TABLE table_name_97 (quantity_made VARCHAR, class VARCHAR)"}, {"answer": "SELECT comments FROM table_name_64 WHERE year_made = \"1875\"", "question": "What comments are made in 1875?", "context": "CREATE TABLE table_name_64 (comments VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT artist FROM table_name_16 WHERE butterfly = \"tiger swallowtail\"", "question": "Which artist's work is the butterfly Tiger Swallowtail?", "context": "CREATE TABLE table_name_16 (artist VARCHAR, butterfly VARCHAR)"}, {"answer": "SELECT artist FROM table_name_29 WHERE finish = \"selective gold plating\"", "question": "Which artist uses a finish of selective gold plating?", "context": "CREATE TABLE table_name_29 (artist VARCHAR, finish VARCHAR)"}, {"answer": "SELECT mintage FROM table_name_15 WHERE year < 2006 AND butterfly = \"great spangled fritillary\"", "question": "What mintage earlier than the year 2006 has the butterfly great spangled fritillary.", "context": "CREATE TABLE table_name_15 (mintage VARCHAR, year VARCHAR, butterfly VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE region = \"europe\"", "question": "What is the date for Europe?", "context": "CREATE TABLE table_name_32 (date VARCHAR, region VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_78 WHERE venue = \"victoria park\"", "question": "Which team played away at Victoria park?", "context": "CREATE TABLE table_name_78 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_64 WHERE record = \"4-4\"", "question": "When the record was 4-4, how many people attended?", "context": "CREATE TABLE table_name_64 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE game_site = \"tampa stadium\" AND opponent = \"detroit lions\"", "question": "When they were playing the detroit lions at tampa stadium, what was the score?", "context": "CREATE TABLE table_name_49 (result VARCHAR, game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE attendance = \"64,443\"", "question": "Which date did 64,443 people attend a game?", "context": "CREATE TABLE table_name_47 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_68 WHERE total < 1", "question": "what is the highest rank with a total less than 1?", "context": "CREATE TABLE table_name_68 (rank INTEGER, total INTEGER)"}, {"answer": "SELECT AVG(bronze) FROM table_name_96 WHERE gold = 1 AND nation = \"hungary\" AND rank < 3", "question": "what is the average bronze when gold is 1, the nation is hungary and the rank is less than 3?", "context": "CREATE TABLE table_name_96 (bronze INTEGER, rank VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_25 WHERE total > 1 AND nation = \"east germany\" AND silver > 1", "question": "How many times was the total more than 1, the nation was east germany and silver was more than 1?", "context": "CREATE TABLE table_name_25 (bronze VARCHAR, silver VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_27 WHERE nation = \"east germany\" AND silver > 1", "question": "what is the average rank when the nation is east germany and silver is more than 1?", "context": "CREATE TABLE table_name_27 (rank INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT venue FROM table_name_98 WHERE away_team = \"carlton\"", "question": "Where did carlton play while away?", "context": "CREATE TABLE table_name_98 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_75 WHERE away_team = \"essendon\"", "question": "What was the top crowd when essendon played away?", "context": "CREATE TABLE table_name_75 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_91 WHERE manner_of_departure = \"sacked\"", "question": "I want the date of appointment for manner of departure being sacked", "context": "CREATE TABLE table_name_91 (date_of_appointment VARCHAR, manner_of_departure VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_2 WHERE date_of_appointment = \"1 june 2007\"", "question": "I want the manner of departure for 1 june 2007", "context": "CREATE TABLE table_name_2 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_40 WHERE replaced_by = \"craig brewster\"", "question": "I want the outgoing manager for craig brewster", "context": "CREATE TABLE table_name_40 (outgoing_manager VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT team FROM table_name_95 WHERE replaced_by = \"mark mcghee\"", "question": "I want the team for replaced by mark mcghee", "context": "CREATE TABLE table_name_95 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_57 WHERE date_of_appointment = \"19 february\"", "question": "I want the outgoing manager for 19 february", "context": "CREATE TABLE table_name_57 (outgoing_manager VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT team FROM table_name_24 WHERE replaced_by = \"csaba l\u00e1szl\u00f3\"", "question": "I want the team with replaced by being csaba l\u00e1szl\u00f3", "context": "CREATE TABLE table_name_24 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT association FROM table_name_30 WHERE horse_1 = \"estribillo ii\"", "question": "With which association did estribillo ii run as Horse 1?", "context": "CREATE TABLE table_name_30 (association VARCHAR, horse_1 VARCHAR)"}, {"answer": "SELECT horse_1 FROM table_name_32 WHERE rider_1 = \"ren\u00e9 guzm\u00e1n\" AND association = \"mulch\u00e9n\"", "question": "Which horse was Horse 1 when ren\u00e9 guzm\u00e1n raced with the mulch\u00e9n association?", "context": "CREATE TABLE table_name_32 (horse_1 VARCHAR, rider_1 VARCHAR, association VARCHAR)"}, {"answer": "SELECT rider_2 FROM table_name_2 WHERE city = \"rancagua\" AND horse_1 = \"papayero\"", "question": "Who was the second rider when papayero raced as Horse 1 in the city of rancagua?", "context": "CREATE TABLE table_name_2 (rider_2 VARCHAR, city VARCHAR, horse_1 VARCHAR)"}, {"answer": "SELECT period FROM table_name_67 WHERE year = 1896", "question": "What was the period for 1896?", "context": "CREATE TABLE table_name_67 (period VARCHAR, year VARCHAR)"}, {"answer": "SELECT height_feet_m FROM table_name_2 WHERE surpassed_by = \"book tower\"", "question": "Tell me the height which has a surpassed by of book tower", "context": "CREATE TABLE table_name_2 (height_feet_m VARCHAR, surpassed_by VARCHAR)"}, {"answer": "SELECT surpassed_by FROM table_name_57 WHERE year < 1925 AND period = \"6 years\"", "question": "I need the surpassed for years before 1925 and period of 6 years", "context": "CREATE TABLE table_name_57 (surpassed_by VARCHAR, year VARCHAR, period VARCHAR)"}, {"answer": "SELECT venue FROM table_name_56 WHERE away_team = \"hawthorn\"", "question": "Hawthorn played as an Away team in which venue?", "context": "CREATE TABLE table_name_56 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_16 WHERE award = \"tony award\"", "question": "Who was the nominee having a Tony award?", "context": "CREATE TABLE table_name_16 (nominee VARCHAR, award VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_67 WHERE award = \"tony award\" AND nominee = \"bernadette peters\"", "question": "What was the year Bernadette Peters was a nominee for the Tony award?", "context": "CREATE TABLE table_name_67 (year INTEGER, award VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT category FROM table_name_4 WHERE nominee = \"michael stewart\"", "question": "Which category was Michael Stewart a nominee in?", "context": "CREATE TABLE table_name_4 (category VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT rank FROM table_name_75 WHERE games = \"2009 hanoi\"", "question": "What was the rank in the 2009 Hanoi Games?", "context": "CREATE TABLE table_name_75 (rank VARCHAR, games VARCHAR)"}, {"answer": "SELECT label_s_ FROM table_name_63 WHERE year_of_release = 1994 AND title = \"\u8207\u4f60\u76f8\u9022\"", "question": "What is the label of the album titled \u8207\u4f60\u76f8\u9022 and released in 1994?", "context": "CREATE TABLE table_name_63 (label_s_ VARCHAR, year_of_release VARCHAR, title VARCHAR)"}, {"answer": "SELECT MIN(year_of_release) FROM table_name_93 WHERE label_s_ = \"\u827a\u80fd\u52a8\u97f3\"", "question": "What is the earliest year of release for the album labelled \u827a\u80fd\u52a8\u97f3?", "context": "CREATE TABLE table_name_93 (year_of_release INTEGER, label_s_ VARCHAR)"}, {"answer": "SELECT name_in_polish FROM table_name_36 WHERE seat = \"radom\"", "question": "Tell me the name in polish for radom seat", "context": "CREATE TABLE table_name_36 (name_in_polish VARCHAR, seat VARCHAR)"}, {"answer": "SELECT population, _in_thousands, __1905__ FROM table_name_79 WHERE name_in_polish = \"gubernia \u0142om\u017cy\u0144ska\"", "question": "Tell me the population for gubernia \u0142om\u017cy\u0144ska", "context": "CREATE TABLE table_name_79 (population VARCHAR, _in_thousands VARCHAR, __1905__ VARCHAR, name_in_polish VARCHAR)"}, {"answer": "SELECT promotion FROM table_name_4 WHERE venue = \"the arena\" AND event = \"legends of the arena\"", "question": "What is the promotion when the arena was the venue and the event of legends of the arena?", "context": "CREATE TABLE table_name_4 (promotion VARCHAR, venue VARCHAR, event VARCHAR)"}, {"answer": "SELECT inductee_s_ FROM table_name_56 WHERE venue = \"ecw arena\"", "question": "What is the name of the inductee for the ecw arena?", "context": "CREATE TABLE table_name_56 (inductee_s_ VARCHAR, venue VARCHAR)"}, {"answer": "SELECT promotion FROM table_name_7 WHERE event = \"acid-fest\"", "question": "What is the promotion when the event was Acid-fest?", "context": "CREATE TABLE table_name_7 (promotion VARCHAR, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_84 WHERE event = \"november reign\"", "question": "What is the location when the event was November reign?", "context": "CREATE TABLE table_name_84 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_16 WHERE inductee_s_ = \"jerry lynn\"", "question": "What even was Jerry Lynn the inductee?", "context": "CREATE TABLE table_name_16 (event VARCHAR, inductee_s_ VARCHAR)"}, {"answer": "SELECT named AS after FROM table_name_87 WHERE longitude < 270.7 AND latitude > -47.1 AND diameter__km_ < 7.2 AND name = \"ayashe\"", "question": "What is the namesake of Ayashe at a longitude less than 270.7, latitude more than -47.1, and a diameter less than 7.2?", "context": "CREATE TABLE table_name_87 (named VARCHAR, name VARCHAR, diameter__km_ VARCHAR, longitude VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_84 WHERE result = \"l 27-20\"", "question": "Tell me the opponent that had a result of l 27-20", "context": "CREATE TABLE table_name_84 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_87 WHERE week = \"14\"", "question": "What was the game site for week 14?", "context": "CREATE TABLE table_name_87 (game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT week FROM table_name_61 WHERE result = \"l 38-17\"", "question": "Name the week when the result was l 38-17", "context": "CREATE TABLE table_name_61 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE attendance = \"33,307\"", "question": "Name the date when 33,307 attended", "context": "CREATE TABLE table_name_20 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT driver FROM table_name_22 WHERE engine = \"ford cosworth dfv 3.0 v8\" AND rounds = \"3-12\" AND tyre = \"g\"", "question": "Who used the Ford Cosworth DFV 3.0 v8 engine in rounds 3-12, with a G tire?", "context": "CREATE TABLE table_name_22 (driver VARCHAR, tyre VARCHAR, engine VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT driver FROM table_name_6 WHERE rounds = \"all\" AND entrant = \"motor racing developments\"", "question": "Which driver was in all rounds as an entrant of Motor Racing Developments?", "context": "CREATE TABLE table_name_6 (driver VARCHAR, rounds VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_58 WHERE entrant = \"motor racing developments\" AND rounds = \"3-12\"", "question": "Motor Racing Developments used which tire in rounds 3-12?", "context": "CREATE TABLE table_name_58 (tyre VARCHAR, entrant VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT engine FROM table_name_98 WHERE tyre = \"g\" AND chassis = \"003 002 004 005 006\" AND driver = \"jackie stewart\"", "question": "Which engine was on a car with G tires, a chassis model of 003 002 004 005 006, driven by Jackie Stewart?", "context": "CREATE TABLE table_name_98 (engine VARCHAR, driver VARCHAR, tyre VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT result FROM table_name_74 WHERE week = \"wild card\"", "question": "What was the result on the wild card?", "context": "CREATE TABLE table_name_74 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE week = \"17\"", "question": "What date was the week 17 game played on?", "context": "CREATE TABLE table_name_62 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_8 WHERE week = \"12\"", "question": "What was the attendance on week 12?", "context": "CREATE TABLE table_name_8 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_68 WHERE date = \"december 31, 2005\"", "question": "What was the result on December 31, 2005?", "context": "CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE venue = \"lake oval\"", "question": "What was the date of the game at Lake Oval?", "context": "CREATE TABLE table_name_17 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE venue = \"princes park\"", "question": "What was the date of the game at Princes Park?", "context": "CREATE TABLE table_name_83 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_20 WHERE crowd > 32 OFFSET 576", "question": "Who was the home team at the game with a crowd larger than 32,576?", "context": "CREATE TABLE table_name_20 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT venue FROM table_name_38 WHERE home_team = \"melbourne\"", "question": "Where did Melbourne play as the home team?", "context": "CREATE TABLE table_name_38 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_48 WHERE entrant = \"scuderia milano\"", "question": "In what rounds did Scuderia Milano participate?", "context": "CREATE TABLE table_name_48 (rounds VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_95 WHERE driver = \"louis chiron\" AND chassis = \"t26c\"", "question": "Who was the entrant for Louis Chiron with a Chassis of T26C?", "context": "CREATE TABLE table_name_95 (entrant VARCHAR, driver VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_69 WHERE entrant = \"alfa romeo spa\" AND driver = \"luigi fagioli\"", "question": "In what rounds did Luigi Fagioli drive for Alfa Romeo SPA?", "context": "CREATE TABLE table_name_69 (rounds VARCHAR, entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_10 WHERE tyre = \"d\" AND chassis = \"p15\"", "question": "In what rounds did the P15 Chassis and tyre D participate?", "context": "CREATE TABLE table_name_10 (rounds VARCHAR, tyre VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT venue FROM table_name_6 WHERE away_team = \"hawthorn\"", "question": "Where did Hawthorn play an away game?", "context": "CREATE TABLE table_name_6 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_13 WHERE home_team = \"melbourne\"", "question": "Where does Melbourne play home games?", "context": "CREATE TABLE table_name_13 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_48 WHERE home_team = \"richmond\"", "question": "What was the score for the opponent against Richmond?", "context": "CREATE TABLE table_name_48 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(national_university_of_ireland) FROM table_name_34 WHERE agricultural_panel = 0 AND labour_panel > 0", "question": "I want to know the total number of national university of ireland with agricultural panel of 0 and labour panel more than 0", "context": "CREATE TABLE table_name_34 (national_university_of_ireland VARCHAR, agricultural_panel VARCHAR, labour_panel VARCHAR)"}, {"answer": "SELECT COUNT(administrative_panel) FROM table_name_59 WHERE labour_panel > 2 AND total = 28 AND nominated_by_the_taoiseach > 6", "question": "Tell me the total number of administrative panel with labour panel more than 2, nominated by taoiseach more than 6 and total of 28", "context": "CREATE TABLE table_name_59 (administrative_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, labour_panel VARCHAR, total VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_64 WHERE venue = \"western oval\"", "question": "What was the away team score at Western Oval?", "context": "CREATE TABLE table_name_64 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE home_team = \"richmond\"", "question": "What is the name of Richmond's home venue?", "context": "CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_28 WHERE home_team = \"hawthorn\"", "question": "What was the away team score at Hawthorn's home game?", "context": "CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE date = \"february 6\"", "question": "What score occurred on February 6?", "context": "CREATE TABLE table_name_31 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_69 WHERE date = \"february 20\"", "question": "What is the lowest game number on February 20?", "context": "CREATE TABLE table_name_69 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_7 WHERE score = \"l 122\u201393\"", "question": "Who had the high rebounds when the score was l 122\u201393?", "context": "CREATE TABLE table_name_7 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_67 WHERE venue = \"princes park\"", "question": "Which home team played at Princes Park?", "context": "CREATE TABLE table_name_67 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE home_team = \"richmond\"", "question": "What date was Richmond the home team?", "context": "CREATE TABLE table_name_17 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_37 WHERE away_team = \"melbourne\"", "question": "What was the largest crowd when Melbourne was the away team?", "context": "CREATE TABLE table_name_37 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT gymnast FROM table_name_91 WHERE balance_beam > 8.687 AND total < 38.049 AND floor_exercise < 9.462 AND vault < 9.275", "question": "Which gymnast had a balance beam larger than 8.687, had a total less than 38.049, had a floor exercise less than 9.462, and a vault less than 9.275?", "context": "CREATE TABLE table_name_91 (gymnast VARCHAR, vault VARCHAR, floor_exercise VARCHAR, balance_beam VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_57 WHERE rank = \"24\"", "question": "Which country is ranked 24?", "context": "CREATE TABLE table_name_57 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_89 WHERE accolade = \"singles of 1999\" AND rank = \"22\"", "question": "Name the highest year with rank of 22 and accolade of singles of 1999", "context": "CREATE TABLE table_name_89 (year INTEGER, accolade VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_31 WHERE driver = \"piers courage\"", "question": "What is the largest Grid with a Driver of piers courage?", "context": "CREATE TABLE table_name_31 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT winner FROM table_name_50 WHERE tournament = \"majorca\"", "question": "Name the winner for majorca", "context": "CREATE TABLE table_name_50 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_75 WHERE runner_up = \"anders j\u00e4rryd\"", "question": "Name the third place for anders j\u00e4rryd", "context": "CREATE TABLE table_name_75 (third_place VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE third_place = \"henri leconte\" AND runner_up = \"michael stich\"", "question": "Name the score for henri leconte and runner-up of michael stich", "context": "CREATE TABLE table_name_85 (score VARCHAR, third_place VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT winner FROM table_name_93 WHERE tournament = \"london\"", "question": "Name the winner for london tournament", "context": "CREATE TABLE table_name_93 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_30 WHERE tournament = \"majorca\"", "question": "Tell me the runner-up for majorca", "context": "CREATE TABLE table_name_30 (runner_up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_33 WHERE constructor = \"brm\" AND grid = 11", "question": "How many laps did BRM have with a grid of 11?", "context": "CREATE TABLE table_name_33 (laps VARCHAR, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_79 WHERE driver = \"bruce mclaren\"", "question": "What's the total grid of Bruce Mclaren?", "context": "CREATE TABLE table_name_79 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_20 WHERE time_retired = \"engine\" AND grid > 8 AND driver = \"george eaton\"", "question": "What's the least amount of laps that George Eaton completed that has a time/retired engine and a grid larger than 8?", "context": "CREATE TABLE table_name_20 (laps INTEGER, driver VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT home FROM table_name_52 WHERE date = \"1 april 2008\"", "question": "Who was the home team on 1 April 2008?", "context": "CREATE TABLE table_name_52 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_20 WHERE date = \"6 april 2008\"", "question": "What was the record on 6 April 2008?", "context": "CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT grantee FROM table_name_34 WHERE concession = \"san ysidro\"", "question": "Tell me the Grantee for san ysidro", "context": "CREATE TABLE table_name_34 (grantee VARCHAR, concession VARCHAR)"}, {"answer": "SELECT county FROM table_name_48 WHERE grantee = \"mariano castro\"", "question": "Tell me the county for mariano castro", "context": "CREATE TABLE table_name_48 (county VARCHAR, grantee VARCHAR)"}, {"answer": "SELECT grantee FROM table_name_6 WHERE date = 1795 AND concession = \"las pulgas\"", "question": "Tell me the grantee for las pulgas in 1795", "context": "CREATE TABLE table_name_6 (grantee VARCHAR, date VARCHAR, concession VARCHAR)"}, {"answer": "SELECT position FROM table_name_38 WHERE round = 4", "question": "A round of 4 is in what position?", "context": "CREATE TABLE table_name_38 (position VARCHAR, round VARCHAR)"}, {"answer": "SELECT club_team FROM table_name_9 WHERE round > 5 AND position = \"defense\"", "question": "What Club team with a Round larger than 5 have a defense position?", "context": "CREATE TABLE table_name_9 (club_team VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_10 WHERE club_team = \"indiana ice (ushl)\"", "question": "What Player Club Team is Indiana Ice (ushl)?", "context": "CREATE TABLE table_name_10 (player VARCHAR, club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_53 WHERE club_team = \"quebec remparts (qmjhl)\"", "question": "What is the Nationality Club Team of Quebec remparts (qmjhl)?", "context": "CREATE TABLE table_name_53 (nationality VARCHAR, club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_4 WHERE position = \"centre\"", "question": "The Position of Centre is what Player?", "context": "CREATE TABLE table_name_4 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT club_team FROM table_name_37 WHERE nationality = \"canada\" AND overall = \"15\"", "question": "What is the Overall of 15 Club team with a Nationality of Canada?", "context": "CREATE TABLE table_name_37 (club_team VARCHAR, nationality VARCHAR, overall VARCHAR)"}, {"answer": "SELECT additional_major_sponsor_s_ FROM table_name_58 WHERE additional_colour_s_ = \"black\" AND year = 1984", "question": "What are the additional major sponsors which correspond to the additional color black and a year 1984?", "context": "CREATE TABLE table_name_58 (additional_major_sponsor_s_ VARCHAR, additional_colour_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_9 WHERE additional_colour_s_ = \"black\"", "question": "What is the average year of entries with additional color black?", "context": "CREATE TABLE table_name_9 (year INTEGER, additional_colour_s_ VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_4 WHERE grid = 6", "question": "What is the Time/Retired for Grid 6?", "context": "CREATE TABLE table_name_4 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_36 WHERE driver = \"mike spence\" AND grid < 8", "question": "What is the lowest Laps for mike spence, with a Grid smaller than 8?", "context": "CREATE TABLE table_name_36 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_85 WHERE time_retired = \"+1 lap\" AND driver = \"mark blundell\"", "question": "how many laps have a time/retired of +1 lap and mark blundell is the driver?", "context": "CREATE TABLE table_name_85 (laps INTEGER, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_95 WHERE time_retired = \"fuel pump\" AND laps > 26", "question": "what is the highest grid when the time/retired is fuel pump and the laps is more than 26?", "context": "CREATE TABLE table_name_95 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_35 WHERE driver = \"gerhard berger\" AND grid > 6", "question": "what is the least laps for driver gerhard berger with a grid more than 6?", "context": "CREATE TABLE table_name_35 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT kapampangan FROM table_name_8 WHERE malay = \"aku\"", "question": "What is the Kapampangan word for the Malay word aku?", "context": "CREATE TABLE table_name_8 (kapampangan VARCHAR, malay VARCHAR)"}, {"answer": "SELECT lundu__salako_ FROM table_name_36 WHERE siburan_padawan = \"\u011bku\"", "question": "What is the Lundu (Salako) word for the Siburan-Pandawan word \u011bku?", "context": "CREATE TABLE table_name_36 (lundu__salako_ VARCHAR, siburan_padawan VARCHAR)"}, {"answer": "SELECT lundu__salako_ FROM table_name_65 WHERE tagalog = \"pagkain\"", "question": "What is the Lundu (Salako) word for the Tagalog word pagkain?", "context": "CREATE TABLE table_name_65 (lundu__salako_ VARCHAR, tagalog VARCHAR)"}, {"answer": "SELECT siburan_padawan FROM table_name_98 WHERE tagalog = \"kanin\"", "question": "What is the Siburan-Padawan word for the Tagalog word kanin?", "context": "CREATE TABLE table_name_98 (siburan_padawan VARCHAR, tagalog VARCHAR)"}, {"answer": "SELECT SUM(total_games) FROM table_name_68 WHERE conference = \"big ten\" AND lost < 488 AND team = \"nebraska\" AND pct < 0.7014", "question": "What were the total games in the Big Ten conference when Nebraska lost fewer than 488 games and had a Pct less than 0.7014?", "context": "CREATE TABLE table_name_68 (total_games INTEGER, pct VARCHAR, team VARCHAR, conference VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(pct) FROM table_name_5 WHERE years > 100 AND team = \"akron\"", "question": "What is Akron's highest Pct in 100 years?", "context": "CREATE TABLE table_name_5 (pct VARCHAR, years VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_42 WHERE venue = \"lake oval\"", "question": "How many people attended the game at Lake Oval?", "context": "CREATE TABLE table_name_42 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_28 WHERE venue = \"princes park\"", "question": "What was the away score at the Princes Park game?", "context": "CREATE TABLE table_name_28 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_95 WHERE venue = \"princes park\"", "question": "What was the home score at the Princes Park game?", "context": "CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(stations) FROM table_name_86 WHERE line = \"u 6\"", "question": "What is the total number of stations with a line that is u 6?", "context": "CREATE TABLE table_name_86 (stations INTEGER, line VARCHAR)"}, {"answer": "SELECT route FROM table_name_31 WHERE stations = 21", "question": "Which route has 21 stations?", "context": "CREATE TABLE table_name_31 (route VARCHAR, stations VARCHAR)"}, {"answer": "SELECT line FROM table_name_95 WHERE colour = \"green\"", "question": "Which line was green?", "context": "CREATE TABLE table_name_95 (line VARCHAR, colour VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_96 WHERE home_team = \"melbourne\"", "question": "What was the away team that played against Melbourne?", "context": "CREATE TABLE table_name_96 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE score = \"6\u20134, 6\u20137 (2\u20137) , 7\u20135\"", "question": "Who was the opponent when the score was 6\u20134, 6\u20137 (2\u20137) , 7\u20135?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_94 WHERE opponent = \"andreas haider-maurer\"", "question": "Which tournament was andreas haider-maurer the opponent in?", "context": "CREATE TABLE table_name_94 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_49 WHERE type = \"vl\" AND region > 3", "question": "How many people have a vl type in a region greater than 3?", "context": "CREATE TABLE table_name_49 (population INTEGER, type VARCHAR, region VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_18 WHERE region > 3", "question": "How many people are in regions greater than 3?", "context": "CREATE TABLE table_name_18 (population INTEGER, region INTEGER)"}, {"answer": "SELECT AVG(region) FROM table_name_43 WHERE area__km_2__ = 451.79 AND population < 496 OFFSET 257", "question": "What is the average region that has an Area (km 2 ) of 451.79, and a Population under 496,257?", "context": "CREATE TABLE table_name_43 (region INTEGER, area__km_2__ VARCHAR, population VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_67 WHERE record = \"40\u201340\"", "question": "What is the attendance on location for a record of 40\u201340?", "context": "CREATE TABLE table_name_67 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_24 WHERE game > 77 AND team = \"milwaukee\"", "question": "Who had the high assist in a game number above 77 for Milwaukee?", "context": "CREATE TABLE table_name_24 (high_assists VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_3 WHERE game = 77", "question": "Who had the high assists in game 77?", "context": "CREATE TABLE table_name_3 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_59 WHERE grid = 13", "question": "I want the time/retired for Grid of 13", "context": "CREATE TABLE table_name_59 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_14 WHERE driver = \"maurice trintignant\" AND laps < 87", "question": "Tell me the highest Grid for Maurice Trintignant and laps less than 87", "context": "CREATE TABLE table_name_14 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_22 WHERE time_retired = \"engine\" AND driver = \"charles de tornaco\"", "question": "I want the lowest Laps for time/retired of engine and driver of charles de tornaco", "context": "CREATE TABLE table_name_22 (laps INTEGER, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(may_2012) FROM table_name_26 WHERE may_2010 < 3", "question": "In May 2010, which party had a turnout of less than 3, but also the hightest turnout in May 2012?", "context": "CREATE TABLE table_name_26 (may_2012 INTEGER, may_2010 INTEGER)"}, {"answer": "SELECT location FROM table_name_4 WHERE round = 3 AND time = \"4:40\"", "question": "I want the location for round of 3 and time of 4:40", "context": "CREATE TABLE table_name_4 (location VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_12 WHERE score = \"98\u2013111\"", "question": "How many people were in attendance for the game with a score of 98\u2013111?", "context": "CREATE TABLE table_name_12 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_29 WHERE score = \"101\u201392\"", "question": "What is the record of the game with a score of 101\u201392?", "context": "CREATE TABLE table_name_29 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_1 WHERE home = \"lakers\"", "question": "What is the date when the Lakers were the home team?", "context": "CREATE TABLE table_name_1 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_89 WHERE home = \"bulls\"", "question": "How many people were in attendance when the home shows as Bulls?", "context": "CREATE TABLE table_name_89 (attendance VARCHAR, home VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_7 WHERE record = \"9\u201326\"", "question": "What is the lowest number of people in attendance when the record was 9\u201326?", "context": "CREATE TABLE table_name_7 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT first_class_team FROM table_name_15 WHERE bowling_style = \"left arm orthodox spin\"", "question": "What is the name of the First Class Team in which the player has a bowling style of left arm orthodox spin?", "context": "CREATE TABLE table_name_15 (first_class_team VARCHAR, bowling_style VARCHAR)"}, {"answer": "SELECT bowling_style FROM table_name_72 WHERE first_class_team = \"islamabad\" AND date_of_birth = \"28 february 1975\"", "question": "What is the bowling style of the player whose first class team is Islamabad and has a date of birth of 28 February 1975?", "context": "CREATE TABLE table_name_72 (bowling_style VARCHAR, first_class_team VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT batting_style FROM table_name_88 WHERE player = \"shahid afridi\"", "question": "What batting style does player Shahid Afridi have?", "context": "CREATE TABLE table_name_88 (batting_style VARCHAR, player VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_85 WHERE venue = \"victoria park\"", "question": "Who was the away team at Victoria Park?", "context": "CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_58 WHERE home_team = \"geelong\"", "question": "What was the crowd size when Geelong played at home?", "context": "CREATE TABLE table_name_58 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_63 WHERE home_team = \"melbourne\"", "question": "What was the home score for the Home team Melbourne?", "context": "CREATE TABLE table_name_63 (home_team VARCHAR)"}, {"answer": "SELECT studio_analysts FROM table_name_52 WHERE ice_level_reporters = \"scott oake\"", "question": "Which studio analyst has Scott Oake for the ice level reporter?", "context": "CREATE TABLE table_name_52 (studio_analysts VARCHAR, ice_level_reporters VARCHAR)"}, {"answer": "SELECT ice_level_reporters FROM table_name_92 WHERE colour_commentator_s_ = \"harry neale\" AND year > 2004", "question": "Which ice level reporter has Harry Neale for the colour commentator after the year 2004?", "context": "CREATE TABLE table_name_92 (ice_level_reporters VARCHAR, colour_commentator_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT time FROM table_name_27 WHERE opponent = \"kim kyoung-suk\"", "question": "How long was his fight against kim kyoung-suk?", "context": "CREATE TABLE table_name_27 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_75 WHERE away_team = \"collingwood\"", "question": "What was the score for the away team at Collingwood?", "context": "CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_12 WHERE home_team = \"south melbourne\"", "question": "Who is the home team of South Melbourne?", "context": "CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_24 WHERE laps < 31 AND driver = \"michael schumacher\"", "question": "Who built michael schumacher's car that went under 31 laps?", "context": "CREATE TABLE table_name_24 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_12 WHERE laps = 61 AND driver = \"heinz-harald frentzen\"", "question": "How many grids for heinz-harald frentzen with 61 laps?", "context": "CREATE TABLE table_name_12 (grid VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_2 WHERE venue = \"lake oval\"", "question": "What did the home team score at Lake Oval?", "context": "CREATE TABLE table_name_2 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_23 WHERE home_team = \"footscray\"", "question": "What did Footscray score at the home game?", "context": "CREATE TABLE table_name_23 (home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_7 WHERE away_team = \"essendon\"", "question": "What did Essendon score as the Away team?", "context": "CREATE TABLE table_name_7 (away_team VARCHAR)"}, {"answer": "SELECT trofeo_fast_team FROM table_name_58 WHERE winner = \"roberto visentini\"", "question": "Name the Trofeo Fast team for roberto visentini", "context": "CREATE TABLE table_name_58 (trofeo_fast_team VARCHAR, winner VARCHAR)"}, {"answer": "SELECT young_rider_classification FROM table_name_16 WHERE general_classification = \"giuseppe saronni\" AND stage = \"6\"", "question": "Name the young rider classification for giuseppe saronni at stage 6", "context": "CREATE TABLE table_name_16 (young_rider_classification VARCHAR, general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT young_rider_classification FROM table_name_66 WHERE mountains_classification = \"jesper worre\" AND stage = \"3\"", "question": "What is the young rider classification for jesper worre and stage 3", "context": "CREATE TABLE table_name_66 (young_rider_classification VARCHAR, mountains_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT college FROM table_name_83 WHERE school = \"crete-monee high school\"", "question": "What college did the player with a school of crete-monee high school go to?", "context": "CREATE TABLE table_name_83 (college VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_94 WHERE hometown = \"little rock, arkansas\"", "question": "What's the school of the player with a hometown of little rock, arkansas?", "context": "CREATE TABLE table_name_94 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_80 WHERE player = \"thomas tyner\"", "question": "What's the hometown of thomas tyner?", "context": "CREATE TABLE table_name_80 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_30 WHERE player = \"hunter henry\"", "question": "What college did hunter henry go to?", "context": "CREATE TABLE table_name_30 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_42 WHERE school = \"huntsville high school\"", "question": "What college did the player with a school of huntsville high school go to?", "context": "CREATE TABLE table_name_42 (college VARCHAR, school VARCHAR)"}, {"answer": "SELECT player FROM table_name_53 WHERE college = \"ohio state\"", "question": "Who went to ohio state?", "context": "CREATE TABLE table_name_53 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT introduced FROM table_name_31 WHERE withdrawn = \"1955\"", "question": "What date was introduced where it was withdrawn 1955?", "context": "CREATE TABLE table_name_31 (introduced VARCHAR, withdrawn VARCHAR)"}, {"answer": "SELECT engine FROM table_name_66 WHERE introduced = \"1935\"", "question": "What engine was introduced in 1935?", "context": "CREATE TABLE table_name_66 (engine VARCHAR, introduced VARCHAR)"}, {"answer": "SELECT number_range FROM table_name_84 WHERE builder = \"gloucester rcw\" AND introduced = \"1937\"", "question": "What is the number range for the Gloucester RCW builder introduced in 1937?", "context": "CREATE TABLE table_name_84 (number_range VARCHAR, builder VARCHAR, introduced VARCHAR)"}, {"answer": "SELECT round FROM table_name_58 WHERE player = \"craig erickson\"", "question": "What round was Craig Erickson drafted?", "context": "CREATE TABLE table_name_58 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE score = \"86\u2013108\"", "question": "What is the Date with a Score with 86\u2013108?", "context": "CREATE TABLE table_name_7 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_47 WHERE date = \"24 march 2008\"", "question": "What is the Record with a Date with 24 march 2008?", "context": "CREATE TABLE table_name_47 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_27 WHERE date = \"29 march 2008\"", "question": "What is the Record with a Date with 29 march 2008?", "context": "CREATE TABLE table_name_27 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_28 WHERE leading_scorer = \"rudy gay (24)\"", "question": "What is the Visitor with a Leading scorer with rudy gay (24)?", "context": "CREATE TABLE table_name_28 (visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_65 WHERE visitor = \"grizzlies\" AND score = \"114\u2013111\"", "question": "What is the Leading scorer with a Visitor of grizzlies, and with a Score with 114\u2013111?", "context": "CREATE TABLE table_name_65 (leading_scorer VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_20 WHERE player = \"joe deane\"", "question": "What team does Joe Deane play for?", "context": "CREATE TABLE table_name_20 (team VARCHAR, player VARCHAR)"}, {"answer": "SELECT game FROM table_name_60 WHERE team = \"waterford\" AND d\u00e9but > 1995", "question": "What is the name of the game whose team is Waterford and debuted later than 1995?", "context": "CREATE TABLE table_name_60 (game VARCHAR, team VARCHAR, d\u00e9but VARCHAR)"}, {"answer": "SELECT d\u00e9but FROM table_name_9 WHERE team = \"waterford\" AND player = \"tom feeney\"", "question": "What is the year of debut when Tom Feeney plays for the Waterford team?", "context": "CREATE TABLE table_name_9 (d\u00e9but VARCHAR, team VARCHAR, player VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_32 WHERE team = \"cork\"", "question": "Who is the opponent when the team is Cork?", "context": "CREATE TABLE table_name_32 (opposition VARCHAR, team VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_59 WHERE grid > 10 AND time_retired = \"+1 lap\"", "question": "who is the constructor when the grid is more than 10 and the time/retired is +1 lap?", "context": "CREATE TABLE table_name_59 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_10 WHERE laps < 44 AND constructor = \"renault\"", "question": "what is the highest grid when the laps is less than 44 and the constructor is renault?", "context": "CREATE TABLE table_name_10 (grid INTEGER, laps VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_95 WHERE opponent = \"arsenal\"", "question": "Whose attendance was the highest when the team played Arsenal?", "context": "CREATE TABLE table_name_95 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT flag FROM table_name_52 WHERE name = \"terkoeli\"", "question": "What is the flag for Terkoeli?", "context": "CREATE TABLE table_name_52 (flag VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE flag = \"norway\"", "question": "What is the date for the flag of Norway?", "context": "CREATE TABLE table_name_73 (date VARCHAR, flag VARCHAR)"}, {"answer": "SELECT sunk_by FROM table_name_67 WHERE flag = \"norway\"", "question": "Who sunk the ship with the flag of Norway?", "context": "CREATE TABLE table_name_67 (sunk_by VARCHAR, flag VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_65 WHERE chassis = \"m185b m186\"", "question": "What is the name of the entrant with a chassis of m185b m186?", "context": "CREATE TABLE table_name_65 (entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_87 WHERE chassis = \"thl2\"", "question": "How many rounds have a chassis of thl2?", "context": "CREATE TABLE table_name_87 (rounds VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT 1958 FROM table_name_24 WHERE 1957 = \"dnf-9\"", "question": "Tell me the 1958 when 1957 is dnf-9", "context": "CREATE TABLE table_name_24 (Id VARCHAR)"}, {"answer": "SELECT reference FROM table_name_38 WHERE strain = \"msb8\"", "question": "what is the reference when the strain is msb8?", "context": "CREATE TABLE table_name_38 (reference VARCHAR, strain VARCHAR)"}, {"answer": "SELECT AVG(genes) FROM table_name_84 WHERE reference = \"2009\" AND strain = \"rku-1\"", "question": "what is the average genes when the reference is 2009 and the strain is rku-1?", "context": "CREATE TABLE table_name_84 (genes INTEGER, reference VARCHAR, strain VARCHAR)"}, {"answer": "SELECT year FROM table_name_24 WHERE third = \"kati klinzing\"", "question": "In which year did Kati Klinzing finish 3rd?", "context": "CREATE TABLE table_name_24 (year VARCHAR, third VARCHAR)"}, {"answer": "SELECT champion FROM table_name_74 WHERE second = \"ramona rahnis\" AND third = \"diana sartor\"", "question": "Who was the winner the year Ramona Rahnis finished 2nd and Diana Sartor 3rd?", "context": "CREATE TABLE table_name_74 (champion VARCHAR, second VARCHAR, third VARCHAR)"}, {"answer": "SELECT third FROM table_name_83 WHERE location = \"winterberg\" AND second = \"monique riekewald\"", "question": "In Winterberg, who was 3rd the year that Monique Riekewald was 2nd?", "context": "CREATE TABLE table_name_83 (third VARCHAR, location VARCHAR, second VARCHAR)"}, {"answer": "SELECT location FROM table_name_14 WHERE year > 1999 AND second = \"anja huber\"", "question": "In years after 1999, what was the location where Anja Huber finished 2nd?", "context": "CREATE TABLE table_name_14 (location VARCHAR, year VARCHAR, second VARCHAR)"}, {"answer": "SELECT goals_scored FROM table_name_50 WHERE pos > 4 AND years_active = \"2001-\"", "question": "How many goals were scored with a pos larger than 4 and active in 2001-?", "context": "CREATE TABLE table_name_50 (goals_scored VARCHAR, pos VARCHAR, years_active VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE result_f_a = \"1\u20132\" AND opponent = \"bolton wanderers\"", "question": "What day did they play the bolton wanderers with a result F\u2013A of 1\u20132?", "context": "CREATE TABLE table_name_78 (date VARCHAR, result_f_a VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_37 WHERE venue = \"princes park\"", "question": "What was the away teams score at Princes Park?", "context": "CREATE TABLE table_name_37 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_44 WHERE away_team = \"hawthorn\"", "question": "Which home team played Hawthorn as the away team?", "context": "CREATE TABLE table_name_44 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE home_team = \"geelong\"", "question": "When did Geelong play as the home team?", "context": "CREATE TABLE table_name_89 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_85 WHERE home_team = \"essendon\"", "question": "Who played as the away team when Essendon was the home team?", "context": "CREATE TABLE table_name_85 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_37 WHERE away_team = \"oadby town\"", "question": "What is the attendance when oadby town is away?", "context": "CREATE TABLE table_name_37 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE home_team = \"parkgate\"", "question": "What is the score when parkgate is at home?", "context": "CREATE TABLE table_name_38 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_89 WHERE opponent = \"devil rays\" AND date = \"september 14\"", "question": "What was the score against the devil rays on september 14?", "context": "CREATE TABLE table_name_89 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE date = \"september 20\"", "question": "What is the score on september 20?", "context": "CREATE TABLE table_name_6 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_42 WHERE date = \"february 14\"", "question": "Who had the highest number of rebounds on February 14?", "context": "CREATE TABLE table_name_42 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_40 WHERE away_team = \"north melbourne\"", "question": "Where was the game played where North Melbourne was the away team?", "context": "CREATE TABLE table_name_40 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_17 WHERE week = 12", "question": "What is the week 12 result?", "context": "CREATE TABLE table_name_17 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT college FROM table_name_79 WHERE hometown = \"fort lauderdale, fl\"", "question": "What college did the player from Fort Lauderdale, FL attend?", "context": "CREATE TABLE table_name_79 (college VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_35 WHERE college = \"ohio state\"", "question": "What is the hometown of the player who attended Ohio State?", "context": "CREATE TABLE table_name_35 (hometown VARCHAR, college VARCHAR)"}, {"answer": "SELECT height FROM table_name_36 WHERE hometown = \"elizabeth, nj\"", "question": "What is the height of the player from Elizabeth, NJ?", "context": "CREATE TABLE table_name_36 (height VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT college FROM table_name_56 WHERE school = \"ames high school\"", "question": "What college did the player from Ames High School attend?", "context": "CREATE TABLE table_name_56 (college VARCHAR, school VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_name_7 WHERE fcc_info = \"fcc\" AND erp_w = \"9 watts\"", "question": "Name the frequency mhz for fcc and ERP W of 9 watts", "context": "CREATE TABLE table_name_7 (frequency_mhz VARCHAR, fcc_info VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_name_44 WHERE erp_w = \"850 watts\"", "question": "Name the frequency mhz for ERP W of 850 watts", "context": "CREATE TABLE table_name_44 (frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_67 WHERE call_sign = \"kpcc\"", "question": "Name the FCC info for call sign of kpcc", "context": "CREATE TABLE table_name_67 (fcc_info VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_34 WHERE frequency_mhz = \"95.3 fm\"", "question": "Name the FCC info for frequency Mhz of 95.3 fm", "context": "CREATE TABLE table_name_34 (fcc_info VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_95 WHERE call_sign = \"kcmp\"", "question": "Name the city of license for call sign of kcmp", "context": "CREATE TABLE table_name_95 (city_of_license VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT MAX(att) FROM table_name_24 WHERE long = 27 AND yards > 27", "question": "Tell me the most Att with a long of 27 with yards longer than 27", "context": "CREATE TABLE table_name_24 (att INTEGER, long VARCHAR, yards VARCHAR)"}, {"answer": "SELECT AVG(fuml) FROM table_name_13 WHERE att = 5 AND long > 7", "question": "I want to know the average Fuml for Att of 5 and long more than 7", "context": "CREATE TABLE table_name_13 (fuml INTEGER, att VARCHAR, long VARCHAR)"}, {"answer": "SELECT MIN(long) FROM table_name_5 WHERE player = \"santana moss\" AND att > 1", "question": "I want to know the longest Long for santana moss and Att more than 1", "context": "CREATE TABLE table_name_5 (long INTEGER, player VARCHAR, att VARCHAR)"}, {"answer": "SELECT MAX(att) FROM table_name_91 WHERE avg = 4.3", "question": "Tell me the greatest att with an avg of 4.3", "context": "CREATE TABLE table_name_91 (att INTEGER, avg VARCHAR)"}, {"answer": "SELECT SUM(yards) FROM table_name_29 WHERE player = \"jason campbell\" AND long < 23", "question": "Tell me the sum of yards for jason campbell and long less than 23", "context": "CREATE TABLE table_name_29 (yards INTEGER, player VARCHAR, long VARCHAR)"}, {"answer": "SELECT driver FROM table_name_58 WHERE points = \"9\"", "question": "Which driver scored 9 points?", "context": "CREATE TABLE table_name_58 (driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_64 WHERE time_retired = \"1:44:59.557\"", "question": "How many points were scored in 1:44:59.557 of time?", "context": "CREATE TABLE table_name_64 (points VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT loss FROM table_name_79 WHERE date = \"june 2\"", "question": "What was the loss for June 2?", "context": "CREATE TABLE table_name_79 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_73 WHERE loss = \"johnson (5-6)\"", "question": "What is the record for the game that has a loss of Johnson (5-6)?", "context": "CREATE TABLE table_name_73 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_8 WHERE score = \"0-6\"", "question": "What was the attendance for the game where the score was 0-6?", "context": "CREATE TABLE table_name_8 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_15 WHERE score = \"4-6\"", "question": "How many people attended the game that ended 4-6?", "context": "CREATE TABLE table_name_15 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT sample_size FROM table_name_4 WHERE date_s__administered = \"march 24, 2010\"", "question": "what is the sample size when the date(s) administered is march 24, 2010?", "context": "CREATE TABLE table_name_4 (sample_size VARCHAR, date_s__administered VARCHAR)"}, {"answer": "SELECT margin_of_error FROM table_name_77 WHERE undecided = \"8%\" AND other = \"4%\"", "question": "what is the margin of error when the undicided is 8% and other is 4%?", "context": "CREATE TABLE table_name_77 (margin_of_error VARCHAR, undecided VARCHAR, other VARCHAR)"}, {"answer": "SELECT other FROM table_name_35 WHERE margin_of_error = \"\u00b1 3%\"", "question": "what is the percent for other when the margin of error is \u00b1 3%?", "context": "CREATE TABLE table_name_35 (other VARCHAR, margin_of_error VARCHAR)"}, {"answer": "SELECT SUM(viewers) FROM table_name_91 WHERE rating > 7.8 AND airdate = \"october 26, 2006\" AND share > 14", "question": "Of all shows who have a rating larger than 7.8, aired on October 26, 2006, and has a share of over 14, what is the sum of the viewers?", "context": "CREATE TABLE table_name_91 (viewers INTEGER, share VARCHAR, rating VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_39 WHERE mintage = \"n/a\" AND issue_price = \"$89.95\"", "question": "What is the latest year that has an n/a mintage and an Issue Price of $89.95?", "context": "CREATE TABLE table_name_39 (year INTEGER, mintage VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT mintage FROM table_name_98 WHERE artist = \"royal canadian mint engravers\" AND year < 2008 AND issue_price = \"$102.95\"", "question": "What mintage for the royal canadian mint engravers before 2008 that has an issue price of $102.95?", "context": "CREATE TABLE table_name_98 (mintage VARCHAR, issue_price VARCHAR, artist VARCHAR, year VARCHAR)"}, {"answer": "SELECT theme FROM table_name_14 WHERE year < 2006 AND issue_price = \"$25.22\"", "question": "What theme is associated with a year before 2006 and Issue Price of $25.22?", "context": "CREATE TABLE table_name_14 (theme VARCHAR, year VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_36 WHERE date = \"14 august 1994\"", "question": "What was the score in the final on 14 august 1994?", "context": "CREATE TABLE table_name_36 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_7 WHERE score_in_the_final = \"6\u20137, 2\u20136\" AND partner = \"wayne arthurs\"", "question": "Which tournament had a final score of 6\u20137, 2\u20136, and a Partner of wayne arthurs?", "context": "CREATE TABLE table_name_7 (tournament VARCHAR, score_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_64 WHERE round = \"17\"", "question": "who was the opponent with round 17?", "context": "CREATE TABLE table_name_64 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_19 WHERE opponent = \"wakefield trinity wildcats u21\" AND venue = \"belle vue\"", "question": "what round saw wakefield trinity wildcats u21 as the opponenet at belle vue?", "context": "CREATE TABLE table_name_19 (round VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT round FROM table_name_16 WHERE venue = \"galpharm stadium\"", "question": "what round happened at galpharm stadium?", "context": "CREATE TABLE table_name_16 (round VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_67 WHERE away_team = \"melbourne\"", "question": "In the game where Melbourne was the away team, what did they score?", "context": "CREATE TABLE table_name_67 (away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_97 WHERE venue = \"corio oval\"", "question": "In the venue Corio Oval, who was the away team?", "context": "CREATE TABLE table_name_97 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_55 WHERE new_team = \"texas rangers\" AND round = \"compensation-a\"", "question": "What was the biggest pick number for the new team of Texas Rangers, in the compensation-a round?", "context": "CREATE TABLE table_name_55 (pick INTEGER, new_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT pick FROM table_name_93 WHERE round = \"compensation-a\" AND player = \"frank catalanotto\"", "question": "What was the pick number for the compensation-a round, for player Frank Catalanotto?", "context": "CREATE TABLE table_name_93 (pick VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT new_team FROM table_name_27 WHERE round = \"compensation-a\" AND player = \"frank catalanotto\"", "question": "Which new team has a compensation-a round, and Frank Catalanotto as a player?", "context": "CREATE TABLE table_name_27 (new_team VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT free_agent_class FROM table_name_22 WHERE pick < 38", "question": "What was the free agent class, with a pick less than 38?", "context": "CREATE TABLE table_name_22 (free_agent_class VARCHAR, pick INTEGER)"}, {"answer": "SELECT away_team AS score FROM table_name_95 WHERE home_team = \"footscray\"", "question": "What is the score of the away team when the home team is Footscray?", "context": "CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT issue_price__bu_[_clarification_needed_] FROM table_name_57 WHERE mintage__proof_ = \"29,586\"", "question": "What's listed as the Issue Price (BU) [Clarification Needed] with a Mintage (Proof) of 29,586?", "context": "CREATE TABLE table_name_57 (issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR, mintage__proof_ VARCHAR)"}, {"answer": "SELECT artist FROM table_name_53 WHERE issue_price__bu_[_clarification_needed_] = \"n/a\" AND year > 2004 AND mintage__proof_ = \"25,000\"", "question": "Who is the Artist with an Issue Price (BU) [Clarification Needed] of n/a along with  a Year larger than 2004, and Mintage (Proof) of 25,000?", "context": "CREATE TABLE table_name_53 (artist VARCHAR, mintage__proof_ VARCHAR, year VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_19 WHERE issue_price__proof_ = \"$49.95\" AND artist = \"w.h.j. blakemore\"", "question": "What's the average Year with an Issue Price (Proof) of $49.95, and Artist of W.H.J. Blakemore?", "context": "CREATE TABLE table_name_19 (year INTEGER, issue_price__proof_ VARCHAR, artist VARCHAR)"}, {"answer": "SELECT issue_price__bu_[_clarification_needed_] FROM table_name_35 WHERE year > 2002 AND mintage__proof_ = \"50,000\"", "question": "What's the Issue Price (BU) [Clarification Needed] with a Year larger than 2002 and Mintage (Proof) of 50,000?", "context": "CREATE TABLE table_name_35 (issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR, year VARCHAR, mintage__proof_ VARCHAR)"}, {"answer": "SELECT winners FROM table_name_86 WHERE runners_up = \"chemnitzer fc ii\"", "question": "Who was the winner when the runner-up was Chemnitzer FC II?", "context": "CREATE TABLE table_name_86 (winners VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT preliminary_average FROM table_name_34 WHERE state = \"utah\"", "question": "Name the preliminary average for utah", "context": "CREATE TABLE table_name_34 (preliminary_average VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(tournament) FROM table_name_89 WHERE total > 0 AND team = \"texas\"", "question": "How many tournament titles for texas with over 0 total?", "context": "CREATE TABLE table_name_89 (tournament VARCHAR, total VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(tournament) FROM table_name_90 WHERE total = 3 AND team = \"iowa state\"", "question": "How many tournament titles for iowa state with 3 total titles?", "context": "CREATE TABLE table_name_90 (tournament INTEGER, total VARCHAR, team VARCHAR)"}, {"answer": "SELECT country FROM table_name_83 WHERE bie_recognised = \"no\" AND year_s_ = \"2014\"", "question": "what is the country when the bie recognised is no and years(s) is 2014?", "context": "CREATE TABLE table_name_83 (country VARCHAR, bie_recognised VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT type FROM table_name_62 WHERE bie_recognised = \"yes\" AND year_s_ = \"1960\"", "question": "what is the type when the bie recognised is yes and year(s) is 1960?", "context": "CREATE TABLE table_name_62 (type VARCHAR, bie_recognised VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT type FROM table_name_45 WHERE bie_recognised = \"yes\" AND festival_name = \"floriade\" AND year_s_ = \"2002\"", "question": "what is the type when the bie recognised is yes, festival name is floriade and the year(s) is 2002?", "context": "CREATE TABLE table_name_45 (type VARCHAR, year_s_ VARCHAR, bie_recognised VARCHAR, festival_name VARCHAR)"}, {"answer": "SELECT year_s_ FROM table_name_59 WHERE city = \"kunming\"", "question": "what is the year(s) when the city is kunming?", "context": "CREATE TABLE table_name_59 (year_s_ VARCHAR, city VARCHAR)"}, {"answer": "SELECT type FROM table_name_23 WHERE year_s_ = \"1982\"", "question": "what is the type when the year(s) is 1982?", "context": "CREATE TABLE table_name_23 (type VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_25 WHERE swing_to_gain < 6.92 AND constituency = \"caerphilly\"", "question": "What rank was caerphilly with a Swing smaller than 6.92?", "context": "CREATE TABLE table_name_25 (rank VARCHAR, swing_to_gain VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT SUM(swing_to_gain) FROM table_name_70 WHERE winning_party_2007 = \"conservative\" AND rank < 5", "question": "What's the sum of swing to gain with a winning party 2007 of Conservative with a rank smaller than 5?", "context": "CREATE TABLE table_name_70 (swing_to_gain INTEGER, winning_party_2007 VARCHAR, rank VARCHAR)"}, {"answer": "SELECT director FROM table_name_60 WHERE year < 1949 AND leading_lady = \"linda darnell\" AND role = \"jonathan kent\"", "question": "Who directs before 1949 with linda darnell leading and jonathan kent?", "context": "CREATE TABLE table_name_60 (director VARCHAR, role VARCHAR, year VARCHAR, leading_lady VARCHAR)"}, {"answer": "SELECT leading_lady FROM table_name_10 WHERE title = \"a yank in the r.a.f.\"", "question": "Who is the leading lady in a yank in the r.a.f.?", "context": "CREATE TABLE table_name_10 (leading_lady VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_16 WHERE director = \"rouben mamoulian\" AND year > 1940 AND leading_lady = \"linda darnell\"", "question": "What title has rouben mamoulian directing after 1940 with linda darnell as the leading lady?", "context": "CREATE TABLE table_name_16 (title VARCHAR, leading_lady VARCHAR, director VARCHAR, year VARCHAR)"}, {"answer": "SELECT director FROM table_name_55 WHERE year < 1948 AND leading_lady = \"linda darnell\" AND title = \"blood and sand\"", "question": "Who directs before 1948 with linda darnell, titled blood and sand?", "context": "CREATE TABLE table_name_55 (director VARCHAR, title VARCHAR, year VARCHAR, leading_lady VARCHAR)"}, {"answer": "SELECT driver FROM table_name_83 WHERE laps = 3 AND grid < 15", "question": "Which driver had 3 Laps and grids less than 15?", "context": "CREATE TABLE table_name_83 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_96 WHERE grid < 22 AND laps < 33 AND driver = \"john surtees\"", "question": "I want the time/retired with grid less than 22 and Laps less than 33 for john surtees", "context": "CREATE TABLE table_name_96 (time_retired VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_44 WHERE 2007 = \"grand slam tournaments\"", "question": "What is the 2010 for the grand slam tournaments of 2007?", "context": "CREATE TABLE table_name_44 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_52 WHERE 2007 = \"3r\" AND 2010 = \"q2\"", "question": "Name the 2009 for when 2007 is 3r and 2010 is q2", "context": "CREATE TABLE table_name_52 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_94 WHERE 2010 = \"q3\"", "question": "Name the 2012 for when 2010 is q3", "context": "CREATE TABLE table_name_94 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_38 WHERE 2012 = \"grand slam tournaments\"", "question": "Name the 2010 for 2012 grand slam tournaments", "context": "CREATE TABLE table_name_38 (Id VARCHAR)"}, {"answer": "SELECT Giant AS slalom FROM table_name_34 WHERE overall = 25", "question": "Which giant slalom had an Overall number of 25?", "context": "CREATE TABLE table_name_34 (Giant VARCHAR, overall VARCHAR)"}, {"answer": "SELECT Giant AS slalom FROM table_name_29 WHERE season = 1997", "question": "Which Giant Slalom was obtained in the 1997 season?", "context": "CREATE TABLE table_name_29 (Giant VARCHAR, season VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE fastest_lap = \"mike hawthorn\" AND tyre = \"e\" AND circuit = \"silverstone\"", "question": "On what date did Mike Hawthorn have the fastest lap for the E Tyre of the Silverstone Circuit?", "context": "CREATE TABLE table_name_36 (date VARCHAR, circuit VARCHAR, fastest_lap VARCHAR, tyre VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_95 WHERE date = \"19 january\"", "question": "What was the Tyre for 19 January?", "context": "CREATE TABLE table_name_95 (tyre VARCHAR, date VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_67 WHERE tyre = \"f\"", "question": "What individual(s) had Pole Position for Tyre F?", "context": "CREATE TABLE table_name_67 (pole_position VARCHAR, tyre VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_99 WHERE date = \"24 august\"", "question": "Who won the race on 24 August?", "context": "CREATE TABLE table_name_99 (winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT race FROM table_name_51 WHERE fastest_lap = \"mike hawthorn\" AND winning_driver = \"peter collins\"", "question": "During what race did Mike Hawthorn have the Fastest Lap and Peter Collins win?", "context": "CREATE TABLE table_name_51 (race VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT race FROM table_name_74 WHERE date = \"15 june\"", "question": "What race occurred on the date of 15 June?", "context": "CREATE TABLE table_name_74 (race VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_19 WHERE date = \"october 13, 1968\" AND week > 5", "question": "What's the lowest attendance for October 13, 1968, and is larger than week 5?", "context": "CREATE TABLE table_name_19 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_9 WHERE date = \"october 27, 1968\"", "question": "What was the attendance on October 27, 1968?", "context": "CREATE TABLE table_name_9 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_81 WHERE date = \"november 3, 1968\" AND week < 8", "question": "What was the attendance on November 3, 1968, that was a week smaller than 8?", "context": "CREATE TABLE table_name_81 (attendance VARCHAR, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_57 WHERE country = \"australia\"", "question": "What is the lowest ranking team in Australia?", "context": "CREATE TABLE table_name_57 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE date = \"11 february 1996\"", "question": "Which score happened on 11 february 1996?", "context": "CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_78 WHERE competition = \"euro 2000 qualifier\"", "question": "What was the result of the Competition of euro 2000 qualifier?", "context": "CREATE TABLE table_name_78 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE date = \"11 february 1996\"", "question": "Which venue was used 11 february 1996?", "context": "CREATE TABLE table_name_45 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_91 WHERE score = \"1\u20130\" AND competition = \"2002 world cup qualifier\"", "question": "Which venue has a Score of 1\u20130, and a Competition of 2002 world cup qualifier?", "context": "CREATE TABLE table_name_91 (venue VARCHAR, score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_68 WHERE date = \"march 11\"", "question": "Where did the game on March 11 take place and how many people attended?", "context": "CREATE TABLE table_name_68 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_68 WHERE points = 5", "question": "What chassis recorded 5 points?", "context": "CREATE TABLE table_name_68 (chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_3 WHERE chassis = \"arrows a22\"", "question": "What is the low point total for arrows a22 chassis?", "context": "CREATE TABLE table_name_3 (points INTEGER, chassis VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_92 WHERE chassis = \"simtek s951\"", "question": "How many points for the simtek s951 chassis?", "context": "CREATE TABLE table_name_92 (points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_31 WHERE year > 1989", "question": "What Chassis has a year later than 1989?", "context": "CREATE TABLE table_name_31 (chassis VARCHAR, year INTEGER)"}, {"answer": "SELECT tyres FROM table_name_27 WHERE engine_s_ = \"ford dfz v8\" AND chassis = \"coloni fc187\"", "question": "What is the Tyres with a ford dfz v8 engine(s) with a chassis of coloni fc187?", "context": "CREATE TABLE table_name_27 (tyres VARCHAR, engine_s_ VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT round FROM table_name_17 WHERE venue = \"a\" AND result = \"1-2\" AND date = \"7 december 2004\"", "question": "What is the round of the match at venue A with a result of 1-2 on 7 December 2004?", "context": "CREATE TABLE table_name_17 (round VARCHAR, date VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE round = \"sf\" AND result = \"0-0\"", "question": "Who was the opponent of the match in round sf with a result of 0-0?", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, round VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE attendance > 59 OFFSET 000", "question": "Who is the opponent of the match with an attendance larger than 59,000?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, attendance INTEGER)"}, {"answer": "SELECT COUNT(appearances) FROM table_name_84 WHERE team = \"shakhtar donetsk\"", "question": "How many apperances for shakhtar donetsk?", "context": "CREATE TABLE table_name_84 (appearances VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(appearances) FROM table_name_16 WHERE team = \"psv eindhoven\" AND rank < 11", "question": "How many appearances for psv eindhoven ranked above 11?", "context": "CREATE TABLE table_name_16 (appearances INTEGER, team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(caps) FROM table_name_67 WHERE club_province = \"brumbies\" AND player = \"alister campbell\"", "question": "How many caps for alister campbell from brumbies?", "context": "CREATE TABLE table_name_67 (caps INTEGER, club_province VARCHAR, player VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_53 WHERE caps = 1", "question": "When was the player born who has 1 caps?", "context": "CREATE TABLE table_name_53 (date_of_birth__age_ VARCHAR, caps VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_7 WHERE position = \"lock\" AND club_province = \"queensland reds\"", "question": "When was the queensland reds lock player born?", "context": "CREATE TABLE table_name_7 (date_of_birth__age_ VARCHAR, position VARCHAR, club_province VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_78 WHERE round > 4 AND event = \"draka v\"", "question": "Which Opponent has a Round larger than 4 and the Event, Draka V?", "context": "CREATE TABLE table_name_78 (opponent VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_3 WHERE opponent = \"jason yee\"", "question": "Which Event has the Opponent, Jason Yee?", "context": "CREATE TABLE table_name_3 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_15 WHERE event = \"strikeforce\" AND method = \"ko (spinning back fist)\"", "question": "Which Result has the Event Strikeforce and the Method, Ko (spinning back fist)?", "context": "CREATE TABLE table_name_15 (result VARCHAR, event VARCHAR, method VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_87 WHERE location = \"las vegas, nevada\" AND method = \"decision (unanimous)\" AND event = \"k-1 world grand prix 2003 in las vegas ii\"", "question": "What is the lowest Round with the Location, Las Vegas, Nevada, the Method, Decision (unanimous), and the Event, K-1 World Grand Prix 2003 in Las Vegas II?", "context": "CREATE TABLE table_name_87 (round INTEGER, event VARCHAR, location VARCHAR, method VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE event = \"strikeforce\" AND method = \"ko (double roundhouse kick)\"", "question": "Which Result has the Event, Strikeforce, and Method, Ko (double roundhouse kick)?", "context": "CREATE TABLE table_name_14 (result VARCHAR, event VARCHAR, method VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_4 WHERE order_part_number = \"tmn550dcr23gm\"", "question": "what is the frequency of part number tmn550dcr23gm?", "context": "CREATE TABLE table_name_4 (frequency VARCHAR, order_part_number VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_61 WHERE lost > 27 AND points < 78 AND goals_against < 300", "question": "How many games were lost by more than 27 but not more 78 with goals less than 300?", "context": "CREATE TABLE table_name_61 (games INTEGER, goals_against VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_41 WHERE tied < 15 AND goals_against < 186", "question": "How many games had a tied less 15 with goals against being fewer than 186?", "context": "CREATE TABLE table_name_41 (games VARCHAR, tied VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_73 WHERE tied > 15", "question": "What's the least amount of goals for a game that had a tied bigger than 15?", "context": "CREATE TABLE table_name_73 (goals_for INTEGER, tied INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_name_79 WHERE competition = \"europe/africa zone group i group b\" AND result = \"lost\"", "question": "What was the highest year that Europe/Africa Zone Group I Group B lost?", "context": "CREATE TABLE table_name_79 (year INTEGER, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_31 WHERE rank < 5 AND silver = 1 AND nation = \"poland\" AND total > 1", "question": "What is the least number of Gold for a Rank smaller than 5, and 1 silver medal for Poland with more than 1 medal in total?", "context": "CREATE TABLE table_name_31 (gold INTEGER, total VARCHAR, nation VARCHAR, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_40 WHERE gold = 3 AND rank > 1", "question": "How many silver medals are there with 3 gold medals at a rank above 1?", "context": "CREATE TABLE table_name_40 (silver VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_6 WHERE bronze > 1", "question": "What is the average number of gold medals with more than 1 bronze medal?", "context": "CREATE TABLE table_name_6 (gold INTEGER, bronze INTEGER)"}, {"answer": "SELECT AVG(silver) FROM table_name_15 WHERE rank = 2 AND bronze > 1", "question": "What is the average number of silver medals for rank 2 and more than 1 bronze medal?", "context": "CREATE TABLE table_name_15 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_85 WHERE quantity = 1 AND lmmr_name = \"great mountain\"", "question": "Which Manufacturer has a Quantity of 1, and has the LMMR name Great Mountain?", "context": "CREATE TABLE table_name_85 (manufacturer VARCHAR, quantity VARCHAR, lmmr_name VARCHAR)"}, {"answer": "SELECT COUNT(majority) FROM table_name_9 WHERE winner = \"dan sullivan\"", "question": "How many in the majority when Dan Sullivan won?", "context": "CREATE TABLE table_name_9 (majority VARCHAR, winner VARCHAR)"}, {"answer": "SELECT AVG(decile) FROM table_name_62 WHERE authority = \"state\" AND roll = 888", "question": "What is the average decile of the school with a state authority and a roll number of 888?", "context": "CREATE TABLE table_name_62 (decile INTEGER, authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT area FROM table_name_85 WHERE name = \"mount albert school\"", "question": "What is the area of Mount Albert School?", "context": "CREATE TABLE table_name_85 (area VARCHAR, name VARCHAR)"}, {"answer": "SELECT years FROM table_name_47 WHERE authority = \"state integrated\" AND name = \"our lady sacred heart school\"", "question": "What years does Our Lady Sacred Heart School, which is state integrated, have?", "context": "CREATE TABLE table_name_47 (years VARCHAR, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT asts FROM table_name_76 WHERE rebs > 1 OFFSET 189", "question": "What is the number of asts when rebs are larger than 1,189?", "context": "CREATE TABLE table_name_76 (asts VARCHAR, rebs INTEGER)"}, {"answer": "SELECT away_team AS score FROM table_name_67 WHERE venue = \"brunswick street oval\"", "question": "What did the visiting team score at brunswick street oval?", "context": "CREATE TABLE table_name_67 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE home_team = \"fitzroy\"", "question": "When did fitzroy play at home?", "context": "CREATE TABLE table_name_38 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT rank FROM table_name_71 WHERE year < 2000 AND bike = \"bsl\"", "question": "Which rank took place prior to 2000 when the bike was bsl?", "context": "CREATE TABLE table_name_71 (rank VARCHAR, year VARCHAR, bike VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_40 WHERE rounds = \"10-12\" AND chassis = \"m7a\"", "question": "Which constructor has 10-12 rounds and a M7A chassis?", "context": "CREATE TABLE table_name_40 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_96 WHERE rounds = \"1-2, 4-10, 12\"", "question": "The rounds of 1-2, 4-10, 12 belong to which entrant?", "context": "CREATE TABLE table_name_96 (entrant VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_91 WHERE rounds = \"1\" AND driver = \"dave charlton\"", "question": "What tyre has 1 round with Dave Charlton driving?", "context": "CREATE TABLE table_name_91 (tyre VARCHAR, rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_18 WHERE tyre = \"g\" AND rounds = \"2-12\" AND chassis = \"m7a\"", "question": "Which driver has a G tyre, rounds of 2-12 and a M7A chassis?", "context": "CREATE TABLE table_name_18 (driver VARCHAR, chassis VARCHAR, tyre VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_53 WHERE home = \"knicks\" AND visitor = \"warriors\"", "question": "Who was the leading scorer of the game where the Knicks were the home team and the Warriors were the visiting team?", "context": "CREATE TABLE table_name_53 (leading_scorer VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT MIN(not_outs) FROM table_name_8 WHERE average < 31.25 AND matches < 13 AND runs < 327", "question": "What is the lowest Not Outs with an average lower than 31.25, fewer than 13 matches, and fewer than 327 runs?", "context": "CREATE TABLE table_name_8 (not_outs INTEGER, runs VARCHAR, average VARCHAR, matches VARCHAR)"}, {"answer": "SELECT COUNT(runs) FROM table_name_51 WHERE average > 31.25 AND innings < 24", "question": "What is the total number of runs when the average was less than 31.25 and there were fewer than 24 innings?", "context": "CREATE TABLE table_name_51 (runs VARCHAR, average VARCHAR, innings VARCHAR)"}, {"answer": "SELECT MIN(not_outs) FROM table_name_76 WHERE innings > 25", "question": "What is the lowest number of Not Outs when there were more than 25 innings?", "context": "CREATE TABLE table_name_76 (not_outs INTEGER, innings INTEGER)"}, {"answer": "SELECT not_outs FROM table_name_41 WHERE runs > 327 AND innings > 24 AND average = 29.54", "question": "What is the number of Not Outs when there were more than 327 runs and 24 innings, and an average of 29.54", "context": "CREATE TABLE table_name_41 (not_outs VARCHAR, average VARCHAR, runs VARCHAR, innings VARCHAR)"}, {"answer": "SELECT COUNT(runs) FROM table_name_87 WHERE average < 27.22", "question": "What is the total number of runs where the average is less than 27.22?", "context": "CREATE TABLE table_name_87 (runs VARCHAR, average INTEGER)"}, {"answer": "SELECT hometown FROM table_name_32 WHERE college = \"lsu\"", "question": "What's the hometown of the player who went to lsu?", "context": "CREATE TABLE table_name_32 (hometown VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_23 WHERE player = \"delray brooks\"", "question": "What college did delray brooks go to?", "context": "CREATE TABLE table_name_23 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_name_72 WHERE player = \"delray brooks\"", "question": "What school did delray brooks go to?", "context": "CREATE TABLE table_name_72 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_52 WHERE hometown = \"los angeles, ca\"", "question": "Who has a hometown of los angeles, ca?", "context": "CREATE TABLE table_name_52 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_45 WHERE height = \"6-4\"", "question": "What's the hometown of the player who is 6-4?", "context": "CREATE TABLE table_name_45 (hometown VARCHAR, height VARCHAR)"}, {"answer": "SELECT college FROM table_name_95 WHERE player = \"danny manning\"", "question": "What college did danny manning go to?", "context": "CREATE TABLE table_name_95 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT model FROM table_name_44 WHERE graphics = \"agp\" AND fsb__mhz_ = \"400\"", "question": "Which model(s) has AGP graphics and 400 FSB (MHz)?", "context": "CREATE TABLE table_name_44 (model VARCHAR, graphics VARCHAR, fsb__mhz_ VARCHAR)"}, {"answer": "SELECT memory FROM table_name_63 WHERE chipset = \"intel 955\"", "question": "Which model's chipset is intel 955?", "context": "CREATE TABLE table_name_63 (memory VARCHAR, chipset VARCHAR)"}, {"answer": "SELECT chipset FROM table_name_17 WHERE memory = \"rambus\" AND fsb__mhz_ = \"400 or 533\" AND model = \"precision 340\"", "question": "What is the chipset in the Precision 340 model that has the rambus memory and 400 or 533 FSB (MHz)?", "context": "CREATE TABLE table_name_17 (chipset VARCHAR, model VARCHAR, memory VARCHAR, fsb__mhz_ VARCHAR)"}, {"answer": "SELECT graphics FROM table_name_99 WHERE chipset = \"intel 850e\" AND model = \"precision 340\"", "question": "What type of graphics are present in the Precision 340 model with the intel 850e chipset?", "context": "CREATE TABLE table_name_99 (graphics VARCHAR, chipset VARCHAR, model VARCHAR)"}, {"answer": "SELECT chipset FROM table_name_97 WHERE graphics = \"pci express\" AND model = \"precision t3400\"", "question": "What type of chipset is in the Precision t3400 model with the PCI Express graphics?", "context": "CREATE TABLE table_name_97 (chipset VARCHAR, graphics VARCHAR, model VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_89 WHERE constructor = \"brabham - climax\" AND grid = 10", "question": "What is the Time/Retired for brabham - climax, on Grid of 10?", "context": "CREATE TABLE table_name_89 (time_retired VARCHAR, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_87 WHERE time_retired = \"+12.5 secs\"", "question": "How many laps have a Time/Retired of +12.5 secs?", "context": "CREATE TABLE table_name_87 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT competition FROM table_name_77 WHERE venue = \"stavanger\"", "question": "What competition was contested at stavanger?", "context": "CREATE TABLE table_name_77 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_30 WHERE scored > 1", "question": "What is the result of the contest with over 1 scored?", "context": "CREATE TABLE table_name_30 (result VARCHAR, scored INTEGER)"}, {"answer": "SELECT score FROM table_name_68 WHERE high_points = \"wallace (17)\"", "question": "What was the score of the game where Wallace (17) had the highest points?", "context": "CREATE TABLE table_name_68 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_39 WHERE date = \"march 24\"", "question": "Who had the highest points of the game on March 24?", "context": "CREATE TABLE table_name_39 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT pick FROM table_name_15 WHERE school = \"lamar high school\"", "question": "Which pick was from Lamar High School?", "context": "CREATE TABLE table_name_15 (pick VARCHAR, school VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_1 WHERE school = \"florida tech\"", "question": "Which nationality does Florida Tech have?", "context": "CREATE TABLE table_name_1 (nationality VARCHAR, school VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_21 WHERE pick = \"415\"", "question": "Which nationality's pick was 415?", "context": "CREATE TABLE table_name_21 (nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT school FROM table_name_65 WHERE nationality = \"united states\" AND pick = \"595\"", "question": "Which school's nationality was United States when its pick was 595?", "context": "CREATE TABLE table_name_65 (school VARCHAR, nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT school FROM table_name_41 WHERE round = \"24\"", "question": "Which school's round was 24?", "context": "CREATE TABLE table_name_41 (school VARCHAR, round VARCHAR)"}, {"answer": "SELECT winning_jockey FROM table_name_86 WHERE track = \"tampa bay downs\" AND winning_horse = \"barkley sound\"", "question": "What Winning Jockey ran in the Tampa Bay Downs Track on Winning Horse Barkley Sound?", "context": "CREATE TABLE table_name_86 (winning_jockey VARCHAR, track VARCHAR, winning_horse VARCHAR)"}, {"answer": "SELECT purse___us$__ FROM table_name_37 WHERE track = \"sunland park\"", "question": "What is the Purse in Sunland Park Track?", "context": "CREATE TABLE table_name_37 (purse___us$__ VARCHAR, track VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE race = \"northern spur breeders' cup stakes\"", "question": "What Date is Northern Spur Breeders' Cup Stakes Race?", "context": "CREATE TABLE table_name_31 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_33 WHERE venue = \"glenferrie oval\"", "question": "What is the away team at glenferrie oval?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_77 WHERE venue = \"glenferrie oval\"", "question": "What is the crowd total for glenferrie oval?", "context": "CREATE TABLE table_name_77 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_4 WHERE driver = \"rubens barrichello\"", "question": "Tell me the total number of Grid for Rubens Barrichello", "context": "CREATE TABLE table_name_4 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_85 WHERE driver = \"david coulthard\"", "question": "I want the lowest Grid for David Coulthard", "context": "CREATE TABLE table_name_85 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_72 WHERE home_team = \"carlton\"", "question": "When carlton was the home team what was the lowest crowd turnout?", "context": "CREATE TABLE table_name_72 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_74 WHERE venue = \"punt road oval\"", "question": "When the venue was punt road oval, what was the Home teams score?", "context": "CREATE TABLE table_name_74 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_7 WHERE away_team = \"geelong\"", "question": "When the away team was geelong, what was the away team score?", "context": "CREATE TABLE table_name_7 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_63 WHERE away_team = \"north melbourne\"", "question": "When the away team was north melbourne, what was the away team score?", "context": "CREATE TABLE table_name_63 (away_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE year < 2010 AND tournament = \"hypo-meeting\"", "question": "What is the result of the hypo-meeting before 2010?", "context": "CREATE TABLE table_name_49 (result VARCHAR, year VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT venue FROM table_name_18 WHERE result = \"12th\" AND year < 2012", "question": "What venue is used before 2012 with a result of 12th?", "context": "CREATE TABLE table_name_18 (venue VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT notes FROM table_name_95 WHERE tournament = \"hypo-meeting\" AND year = 2012", "question": "What is the notes for the hypo-meeting tournament in 2012?", "context": "CREATE TABLE table_name_95 (notes VARCHAR, tournament VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_95 WHERE location = \"athens\"", "question": "What was the earliest year a game was played in Athens?", "context": "CREATE TABLE table_name_95 (year INTEGER, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE result = \"win\"", "question": "On which date was there a win?", "context": "CREATE TABLE table_name_56 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT film_or_series FROM table_name_39 WHERE award = \"inside soap awards\" AND category = \"best actress\" AND year = 2007", "question": "What film won best actress at the 2007 Inside Soap Awards?", "context": "CREATE TABLE table_name_39 (film_or_series VARCHAR, year VARCHAR, award VARCHAR, category VARCHAR)"}, {"answer": "SELECT character FROM table_name_26 WHERE category = \"best dramatic performance\"", "question": "What character won the best dramatic performance award?", "context": "CREATE TABLE table_name_26 (character VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_name_67 WHERE character = \"jacqui mcqueen\" AND year < 2011", "question": "In what category was character Jacqui Mcqueen nominated before 2011?", "context": "CREATE TABLE table_name_67 (category VARCHAR, character VARCHAR, year VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_41 WHERE away_team = \"fitzroy\"", "question": "I want the away team score for away team of fitzroy", "context": "CREATE TABLE table_name_41 (away_team VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_93 WHERE position = \"center\" AND school_club_team_country = \"kansas\"", "question": "Name the height for the center position from kansas", "context": "CREATE TABLE table_name_93 (height_in_ft VARCHAR, position VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT position FROM table_name_89 WHERE no_s_ = \"11\" AND years_for_rockets = \"1989-95\"", "question": "Name the position for number 11 and years on the rockets for 1989-95", "context": "CREATE TABLE table_name_89 (position VARCHAR, no_s_ VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT position FROM table_name_37 WHERE no_s_ = \"41\"", "question": "Name the position for numbers of 41", "context": "CREATE TABLE table_name_37 (position VARCHAR, no_s_ VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_96 WHERE venue = \"vfl park\"", "question": "Which team calls VFL Park their home?", "context": "CREATE TABLE table_name_96 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_43 WHERE fastest_lap = \"graham hill\" AND winning_driver = \"graham hill\" AND date = \"30 may\"", "question": "Tell me the pole position for graham hill the fastest lap and winning driver of him on 30 may", "context": "CREATE TABLE table_name_43 (pole_position VARCHAR, date VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_35 WHERE winning_driver = \"jim clark\" AND circuit = \"prince george\"", "question": "Tell me the fastest lapf or jim clark being the winning driver for prince george", "context": "CREATE TABLE table_name_35 (fastest_lap VARCHAR, winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_25 WHERE fastest_lap = \"jim clark\"", "question": "I want the circuit for jim clark", "context": "CREATE TABLE table_name_25 (circuit VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_34 WHERE winning_driver = \"jim clark\" AND pole_position = \"graham hill\" AND race = \"dutch grand prix\"", "question": "I want the constructor for winning driver of jim clark, pole position of graham hill and dutch grand prix", "context": "CREATE TABLE table_name_34 (constructor VARCHAR, race VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_1 WHERE pole_position = \"jim clark\" AND fastest_lap = \"jim clark\"", "question": "Tell me the winning driver for jim clark as pole position and fastest lap", "context": "CREATE TABLE table_name_1 (winning_driver VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_33 WHERE venue = \"windy hill\"", "question": "At the match in windy hill, how much did the home team score?", "context": "CREATE TABLE table_name_33 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_74 WHERE home_team = \"footscray\"", "question": "During footscray's home game, how much did the away team score?", "context": "CREATE TABLE table_name_74 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE venue = \"mcg\"", "question": "What date was the match at mcg played?", "context": "CREATE TABLE table_name_98 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_79 WHERE venue = \"arden street oval\"", "question": "At the match which took place in arden street oval, how much did the away team score?", "context": "CREATE TABLE table_name_79 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(floors) FROM table_name_70 WHERE name = \"detroit marriott at the renaissance center\"", "question": "How many floors does detroit marriott at the renaissance center have?", "context": "CREATE TABLE table_name_70 (floors INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_17 WHERE floors = 23 AND street_address_in_detroit = \"144 west congress street\"", "question": "Which place has 23 floors and a street address in Detroit of 144 west congress street?", "context": "CREATE TABLE table_name_17 (name VARCHAR, floors VARCHAR, street_address_in_detroit VARCHAR)"}, {"answer": "SELECT floors FROM table_name_44 WHERE street_address_in_detroit = \"1828 jay street\"", "question": "How many floors does the address 1828 jay street have?", "context": "CREATE TABLE table_name_44 (floors VARCHAR, street_address_in_detroit VARCHAR)"}, {"answer": "SELECT SUM(floors) FROM table_name_52 WHERE name = \"st. joseph church\"", "question": "What is the sum of Floors at st. joseph church?", "context": "CREATE TABLE table_name_52 (floors INTEGER, name VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_38 WHERE crowd > 22 OFFSET 449", "question": "Which home team has a crowd that is bigger than 22,449?", "context": "CREATE TABLE table_name_38 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT AVG(laps) FROM table_name_80 WHERE rider = \"max biaggi\"", "question": "What is the average number of laps for max biaggi", "context": "CREATE TABLE table_name_80 (laps INTEGER, rider VARCHAR)"}, {"answer": "SELECT bike FROM table_name_48 WHERE rider = \"dean ellison\"", "question": "What bike does dean ellison ride?", "context": "CREATE TABLE table_name_48 (bike VARCHAR, rider VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_48 WHERE grand_prix = \"brazilian grand prix\"", "question": "What is the constructor for Brazilian Grand Prix?", "context": "CREATE TABLE table_name_48 (constructor VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_16 WHERE grand_prix = \"belgian grand prix\"", "question": "What is the fastest lap for Belgian Grand Prix?", "context": "CREATE TABLE table_name_16 (fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT MIN(utility_pv) FROM table_name_87 WHERE hydro > 289.25 AND renewable_total > 520.07", "question": "What is the lowest utility PV with hydro great than 289.25 and renweable total larger than 520.07?", "context": "CREATE TABLE table_name_87 (utility_pv INTEGER, hydro VARCHAR, renewable_total VARCHAR)"}, {"answer": "SELECT dates_of_captaincy FROM table_name_14 WHERE _percentage_win_[a_] = 35.71", "question": "What dates of captaincy for a win % of 35.71?", "context": "CREATE TABLE table_name_14 (dates_of_captaincy VARCHAR, _percentage_win_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT locomotive_superintendent FROM table_name_45 WHERE lner_class = \"d45\"", "question": "Who was the Locomotive superintendent has a NER class of d45?", "context": "CREATE TABLE table_name_45 (locomotive_superintendent VARCHAR, lner_class VARCHAR)"}, {"answer": "SELECT lner_class FROM table_name_37 WHERE passed_to_lner > 3 AND date_introduced = \"1895\u201398\"", "question": "Which LNER class has been Passed to LNER larger than 3 and a introduced in 1895\u201398?", "context": "CREATE TABLE table_name_37 (lner_class VARCHAR, passed_to_lner VARCHAR, date_introduced VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_98 WHERE date = \"29 march\"", "question": "Name the winner for 29 march", "context": "CREATE TABLE table_name_98 (winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_name_8 WHERE circuit = \"kyalami\" AND race_name = \"south african republic trophy\"", "question": "Name the report for circuit of kyalami for south african republic trophy", "context": "CREATE TABLE table_name_8 (report VARCHAR, circuit VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT expected_completion FROM table_name_15 WHERE capacity = \"22,500\"", "question": "What is the year of expected completion when the capacity is 22,500?", "context": "CREATE TABLE table_name_15 (expected_completion VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT city FROM table_name_70 WHERE province = \"saskatchewan\"", "question": "What city is in Saskatchewan?", "context": "CREATE TABLE table_name_70 (city VARCHAR, province VARCHAR)"}, {"answer": "SELECT province FROM table_name_66 WHERE city = \"hamilton\"", "question": "What province is Hamilton part of?", "context": "CREATE TABLE table_name_66 (province VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_93 WHERE expected_completion = \"2017\"", "question": "Which city expects their project completion in 2017?", "context": "CREATE TABLE table_name_93 (city VARCHAR, expected_completion VARCHAR)"}, {"answer": "SELECT AVG(fumbles) FROM table_name_27 WHERE avg > 5.4 AND yards < 164", "question": "What is the number of fumbles for the avg larger than 5.4, with yards smaller than 164?", "context": "CREATE TABLE table_name_27 (fumbles INTEGER, avg VARCHAR, yards VARCHAR)"}, {"answer": "SELECT MAX(fumbles) FROM table_name_56 WHERE yards > 44 AND att = 32", "question": "What is the most fumbles for more than 44 yards and att of 32?", "context": "CREATE TABLE table_name_56 (fumbles INTEGER, yards VARCHAR, att VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_60 WHERE year > 1981 AND chassis = \"osella fa1c\"", "question": "What entrant has osella fa1c chassis after 1981?", "context": "CREATE TABLE table_name_60 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT AVG(appearances) FROM table_name_50 WHERE club = \"fc igea virtus\" AND goals = 1", "question": "How many appearances with fc igea virtus and 1 goal?", "context": "CREATE TABLE table_name_50 (appearances INTEGER, club VARCHAR, goals VARCHAR)"}, {"answer": "SELECT title FROM table_name_8 WHERE original_airdate = \"june 13, 1999\"", "question": "What is the title of the program that was originally aired on June 13, 1999?", "context": "CREATE TABLE table_name_8 (title VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_90 WHERE original_airdate = \"june 6, 1999\"", "question": "Who wrote the program that originally aired on June 6, 1999?", "context": "CREATE TABLE table_name_90 (written_by VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT title FROM table_name_6 WHERE written_by = \"david j. burke\"", "question": "What is the title of the episode written by David J. Burke?", "context": "CREATE TABLE table_name_6 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT driver FROM table_name_95 WHERE grid = 18", "question": "What driver shows grid as 18?", "context": "CREATE TABLE table_name_95 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_52 WHERE laps < 52 AND grid = 19", "question": "What is the Time/Retired for less than 52 laps in grid 19?", "context": "CREATE TABLE table_name_52 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_67 WHERE laps > 39 AND grid = 15", "question": "What driver has more than 39 laps on gird 15?", "context": "CREATE TABLE table_name_67 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_28 WHERE driver = \"johnny herbert\" AND laps > 52", "question": "What is the number of the grid for Johnny Herbert with more than 52 laps?", "context": "CREATE TABLE table_name_28 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_54 WHERE driver = \"luca badoer\"", "question": "What is the least amount of laps for Luca Badoer?", "context": "CREATE TABLE table_name_54 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT category FROM table_name_91 WHERE award = \"drama league award\"", "question": "Which category does drama league award belong to?", "context": "CREATE TABLE table_name_91 (category VARCHAR, award VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_70 WHERE category = \"distinguished performance\"", "question": "What is the latest year for the distinguished performance?", "context": "CREATE TABLE table_name_70 (year INTEGER, category VARCHAR)"}, {"answer": "SELECT award FROM table_name_34 WHERE category = \"theatre world award\"", "question": "What type of award is the theatre world award?", "context": "CREATE TABLE table_name_34 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT country FROM table_name_53 WHERE tv_network_s_ = \"nova tv\"", "question": "Which country is the Nova TV network from?", "context": "CREATE TABLE table_name_53 (country VARCHAR, tv_network_s_ VARCHAR)"}, {"answer": "SELECT series_premiere FROM table_name_25 WHERE tv_network_s_ = \"acasa tv\"", "question": "Which series premiered on Acasa TV?", "context": "CREATE TABLE table_name_25 (series_premiere VARCHAR, tv_network_s_ VARCHAR)"}, {"answer": "SELECT alternate_title_translation FROM table_name_40 WHERE series_premiere = \"december 12, 2006\"", "question": "What is the alternate title/translation of the series that premiered on December 12, 2006?", "context": "CREATE TABLE table_name_40 (alternate_title_translation VARCHAR, series_premiere VARCHAR)"}, {"answer": "SELECT tv_network_s_ FROM table_name_92 WHERE country = \"bulgaria\"", "question": "What is the name of Bulgaria's TV network?", "context": "CREATE TABLE table_name_92 (tv_network_s_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_77 WHERE series_premiere = \"september 4, 2006\"", "question": "Which country had a series that premiered on September 4, 2006?", "context": "CREATE TABLE table_name_77 (country VARCHAR, series_premiere VARCHAR)"}, {"answer": "SELECT tv_network_s_ FROM table_name_21 WHERE alternate_title_translation = \"aistr\u0173 \u017eem\u0117\"", "question": "What TV network is the series aistr\u0173 \u017eem\u0117 aired on?", "context": "CREATE TABLE table_name_21 (tv_network_s_ VARCHAR, alternate_title_translation VARCHAR)"}, {"answer": "SELECT venue FROM table_name_59 WHERE competition = \"2013 concacaf gold cup\"", "question": "What venue will hold the 2013 Concacaf Gold Cup competition?", "context": "CREATE TABLE table_name_59 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE competition = \"2011 concacaf gold cup\"", "question": "What is the result of the 2011 Concacaf Gold Cup competition?", "context": "CREATE TABLE table_name_49 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE date = \"july 23, 2009\"", "question": "What is the score of the event held on July 23, 2009?", "context": "CREATE TABLE table_name_78 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(class) AS position FROM table_name_59 WHERE drivers = \"les palmer, terry morris\" AND position > 23", "question": "What is the smallest Class Position that has drivers Les Palmer, Terry Morris, and a Position larger than 23?", "context": "CREATE TABLE table_name_59 (class INTEGER, drivers VARCHAR, position VARCHAR)"}, {"answer": "SELECT drivers FROM table_name_33 WHERE position = 27", "question": "Which drivers have the position of 27?", "context": "CREATE TABLE table_name_33 (drivers VARCHAR, position VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_57 WHERE home_team = \"fitzroy\"", "question": "In the game against home team Fitzroy, what did the away team score?", "context": "CREATE TABLE table_name_57 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_65 WHERE venue = \"junction oval\"", "question": "At Junction Oval, what is the sum of the crowd?", "context": "CREATE TABLE table_name_65 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT MAX(region) FROM table_name_9 WHERE name = \"saint-simon-les-mines\" AND population < 458", "question": "Which region in Saint-Simon-Les-Mines has a population smaller than 458?", "context": "CREATE TABLE table_name_9 (region INTEGER, name VARCHAR, population VARCHAR)"}, {"answer": "SELECT SUM(region) FROM table_name_99 WHERE name = \"saint-agapit\" AND code < 33045", "question": "What is total population of Saint-Agapit (code 33045)?", "context": "CREATE TABLE table_name_99 (region INTEGER, name VARCHAR, code VARCHAR)"}, {"answer": "SELECT AVG(area__km_2__) FROM table_name_91 WHERE code > 19025 AND region < 12", "question": "What is the average area larger than Code 19025 but a smaller region than 12?", "context": "CREATE TABLE table_name_91 (area__km_2__ INTEGER, code VARCHAR, region VARCHAR)"}, {"answer": "SELECT MAX(region) FROM table_name_43 WHERE name = \"saint-flavien\" AND area__km_2__ > 67.56", "question": "What is the highest region of Saint-Flavien with an area larger than 67.56?", "context": "CREATE TABLE table_name_43 (region INTEGER, name VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT drobo__2nd_ FROM table_name_40 WHERE drobo_fs = \"up to 32\"", "question": "Which Drobo (2nd) has a Drobo FS of up to 32?", "context": "CREATE TABLE table_name_40 (drobo__2nd_ VARCHAR, drobo_fs VARCHAR)"}, {"answer": "SELECT drobo__2nd_ FROM table_name_1 WHERE DROBO_S(2 AS nd) = 5", "question": "Which Drobo (2nd) has a Drobo S (2nd) of 5?", "context": "CREATE TABLE table_name_1 (drobo__2nd_ VARCHAR)"}, {"answer": "SELECT drobo__2nd_ FROM table_name_17 WHERE drobo_5d = \"2012-11-02\"", "question": "Which Drobo (2nd) has a Drobo 5d of 2012-11-02?", "context": "CREATE TABLE table_name_17 (drobo__2nd_ VARCHAR, drobo_5d VARCHAR)"}, {"answer": "SELECT surface FROM table_name_84 WHERE partner = \"marty riessen\"", "question": "Marty Riessen played as a partner during a match with what kind of surface?", "context": "CREATE TABLE table_name_84 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE surface = \"carpet\" AND partner = \"marty riessen\"", "question": "When did Marty Riessen team up with a partner during a match on a carpet surface?", "context": "CREATE TABLE table_name_69 (date VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT AVG(population) FROM table_name_19 WHERE regional_county_municipality = \"le domaine-du-roy\" AND type = \"m\" AND region < 2", "question": "what is the average population when the regional county municipality is le domaine-du-roy, the type is m and the region is less than 2?", "context": "CREATE TABLE table_name_19 (population INTEGER, region VARCHAR, regional_county_municipality VARCHAR, type VARCHAR)"}, {"answer": "SELECT regional_county_municipality FROM table_name_90 WHERE type = \"m\" AND code < 91015", "question": "what is the regional county municipality when the type is m and the code is less than 91015?", "context": "CREATE TABLE table_name_90 (regional_county_municipality VARCHAR, type VARCHAR, code VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_12 WHERE pole_position = \"jackie stewart\" AND fastest_lap = \"carlos pace\"", "question": "When the fastest lap was carlos pace and jackie stewart was the pole position, who was the winning driver?", "context": "CREATE TABLE table_name_12 (winning_driver VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_64 WHERE home_team = \"north melbourne\"", "question": "What is north melbourne's home team score?", "context": "CREATE TABLE table_name_64 (home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_14 WHERE away_team = \"south melbourne\"", "question": "Which venue has an Away team of south melbourne?", "context": "CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_67 WHERE away_team = \"geelong\"", "question": "How many people in the crowd with Away team of geelong?", "context": "CREATE TABLE table_name_67 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_76 WHERE away_team = \"hawthorn\"", "question": "Which venue has a Away team of hawthorn?", "context": "CREATE TABLE table_name_76 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_93 WHERE tournament = \"michelob light open at kingsmill\"", "question": "Who was the runner-up in the Michelob Light Open at Kingsmill?", "context": "CREATE TABLE table_name_93 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_85 WHERE winning_score = 66 - 68 - 70 - 70 = 274", "question": "Which tournament won with a score of 66-68-70-70=274?", "context": "CREATE TABLE table_name_85 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_83 WHERE crowd > 25 OFFSET 000", "question": "Which Venue has a crowd larger than 25,000?", "context": "CREATE TABLE table_name_83 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT competition FROM table_name_65 WHERE year = 2008 AND surface = \"carpet\" AND date = \"31 jan\"", "question": "Which competition has a Year of 2008, a Surface of carpet, and a Date of 31 jan?", "context": "CREATE TABLE table_name_65 (competition VARCHAR, date VARCHAR, year VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_58 WHERE date = \"24\u201325 apr\"", "question": "Which surface has a Date of 24\u201325 apr?", "context": "CREATE TABLE table_name_58 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_45 WHERE surface = \"clay\" AND score = \"4 : 0\"", "question": "How many years have a Surface of clay, and a Score of 4 : 0?", "context": "CREATE TABLE table_name_45 (year VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_6 WHERE location = \"zagreb, croatia\"", "question": "What is the largest year located in zagreb, croatia?", "context": "CREATE TABLE table_name_6 (year INTEGER, location VARCHAR)"}, {"answer": "SELECT MAX(clean_) & _jerk FROM table_name_91 WHERE snatch < 150 AND bodyweight > 93.13", "question": "What is the biggest clean and jerk number when snatch was less than 150 and the bodyweight was bigger than 93.13?", "context": "CREATE TABLE table_name_91 (_jerk VARCHAR, clean_ INTEGER, snatch VARCHAR, bodyweight VARCHAR)"}, {"answer": "SELECT name FROM table_name_89 WHERE bodyweight > 89.64 AND total__kg_ > 310 AND clean_ & _jerk < 207.5 AND snatch > 165", "question": "Which name had a bodyweight bigger than 89.64, a total (kg) bigger than 310, a clean and jerk less than 207.5, and a snatch that is bigger than 165?", "context": "CREATE TABLE table_name_89 (name VARCHAR, snatch VARCHAR, bodyweight VARCHAR, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_42 WHERE venue = \"junction oval\"", "question": "What is the home team's score for the game at Junction Oval?", "context": "CREATE TABLE table_name_42 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT club FROM table_name_8 WHERE replacement = \"alberto malesani\"", "question": "Tell me the club with a replacement of alberto malesani", "context": "CREATE TABLE table_name_8 (club VARCHAR, replacement VARCHAR)"}, {"answer": "SELECT club FROM table_name_67 WHERE date_of_appointment = \"1 november 2007\"", "question": "Name the club with date of appointment of 1 november 2007", "context": "CREATE TABLE table_name_67 (club VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_28 WHERE player = \"june longalong\"", "question": "What's the total number of picks of a team that had june longalong?", "context": "CREATE TABLE table_name_28 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_7 WHERE school = \"lsu\"", "question": "What is the pick number for School of lsu?", "context": "CREATE TABLE table_name_7 (pick INTEGER, school VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_2 WHERE school = \"east carolina\"", "question": "What's the average round number for East Carolina?", "context": "CREATE TABLE table_name_2 (round INTEGER, school VARCHAR)"}, {"answer": "SELECT round FROM table_name_7 WHERE position = \"offensive tackle\"", "question": "Which round has an offensive tackle position?", "context": "CREATE TABLE table_name_7 (round VARCHAR, position VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_54 WHERE venue = \"princes park\"", "question": "What is the home team at princes park?", "context": "CREATE TABLE table_name_54 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_87 WHERE venue = \"windy hill\"", "question": "What is the home team for Windy Hill?", "context": "CREATE TABLE table_name_87 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_21 WHERE venue = \"lake oval\"", "question": "What is the home team of Lake Oval?", "context": "CREATE TABLE table_name_21 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE golden_tickets = 26", "question": "What was the date when there were 26 golden tickets?", "context": "CREATE TABLE table_name_57 (date VARCHAR, golden_tickets VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE first_audition_venue = \"kemper arena\"", "question": "What was the date when the first audition venue was Kemper Arena?", "context": "CREATE TABLE table_name_40 (date VARCHAR, first_audition_venue VARCHAR)"}, {"answer": "SELECT audition_city FROM table_name_81 WHERE callback_venue = \"amelia island plantation\"", "question": "Which audition city held callbacks at Amelia Island Plantation?", "context": "CREATE TABLE table_name_81 (audition_city VARCHAR, callback_venue VARCHAR)"}, {"answer": "SELECT COUNT(golden_tickets) FROM table_name_51 WHERE audition_city = \"san francisco, california\"", "question": "How many golden tickets were given out when the auditions were held in San Francisco, California?", "context": "CREATE TABLE table_name_51 (golden_tickets VARCHAR, audition_city VARCHAR)"}, {"answer": "SELECT callback_venue FROM table_name_15 WHERE audition_city = \"phoenix, arizona\"", "question": "What was the callback venue for the Phoenix, Arizona auditions?", "context": "CREATE TABLE table_name_15 (callback_venue VARCHAR, audition_city VARCHAR)"}, {"answer": "SELECT Callback AS date FROM table_name_28 WHERE date = \"july 29, 2008\"", "question": "What was the callback date for the auditions held on July 29, 2008?", "context": "CREATE TABLE table_name_28 (Callback VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE high_assists = \"delonte west earl watson (6)\"", "question": "On which date was the high assists Delonte West Earl Watson (6)?", "context": "CREATE TABLE table_name_78 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_69 WHERE driver = \"ukyo katayama\" AND grid < 16", "question": "How many laps for ukyo katayama with a grid under 16?", "context": "CREATE TABLE table_name_69 (laps VARCHAR, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT grid FROM table_name_34 WHERE time_retired = \"+5 laps\"", "question": "What grid has a Time/Retired of +5 laps?", "context": "CREATE TABLE table_name_34 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_46 WHERE tie_no = \"48\"", "question": "Which away team that had 48 as a Tie no?", "context": "CREATE TABLE table_name_46 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE tie_no = \"19\"", "question": "What's the score during a game than had a tie no of 19?", "context": "CREATE TABLE table_name_47 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_47 WHERE home_team = \"a.f.c. totton\"", "question": "How many people attended the game of a.f.c. totton?", "context": "CREATE TABLE table_name_47 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_88 WHERE tie_no = \"30\"", "question": "How many people attended the game with a Tie no of 30?", "context": "CREATE TABLE table_name_88 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_19 WHERE venue = \"junction oval\"", "question": "What was the score of the home team at junction oval?", "context": "CREATE TABLE table_name_19 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_54 WHERE venue = \"glenferrie oval\"", "question": "Which away team is based at glenferrie oval?", "context": "CREATE TABLE table_name_54 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE visiting_team = \"new york giants\" AND final_score = \"37-34\"", "question": "What is the date the new york giants were the visiting team and the Final Score was 37-34?", "context": "CREATE TABLE table_name_70 (date VARCHAR, visiting_team VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_10 WHERE date = \"october 23\"", "question": "What was the visiting team on october 23?", "context": "CREATE TABLE table_name_10 (visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_37 WHERE date = \"september 11\"", "question": "What team was the host on september 11?", "context": "CREATE TABLE table_name_37 (host_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_65 WHERE date = \"november 20\"", "question": "What stadium was the game played in on november 20?", "context": "CREATE TABLE table_name_65 (stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE final_score = \"17-34\"", "question": "What date was the final Score of 17-34?", "context": "CREATE TABLE table_name_35 (date VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_88 WHERE final_score = \"17-31\"", "question": "What stadium was the game held in when the final score was 17-31?", "context": "CREATE TABLE table_name_88 (stadium VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_6 WHERE home_team = \"geelong\"", "question": "When the home team was geelong, what did the away team score?", "context": "CREATE TABLE table_name_6 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT suburb FROM table_name_54 WHERE date_first_settled_as_a_suburb = 1962", "question": "Which Suburb was First Settled as a Suburb in 1962?", "context": "CREATE TABLE table_name_54 (suburb VARCHAR, date_first_settled_as_a_suburb VARCHAR)"}, {"answer": "SELECT AVG(area__km\u00b2_) FROM table_name_10 WHERE density___km\u00b2_ = 263", "question": "What's the Area with a Density of 263?", "context": "CREATE TABLE table_name_10 (area__km\u00b2_ INTEGER, density___km\u00b2_ VARCHAR)"}, {"answer": "SELECT MAX(area__km\u00b2_) FROM table_name_17 WHERE mean_household_size__in_2006_ = \"3.1 persons\"", "question": "What is the highest Area that has a Mean Household Size of 3.1 persons?", "context": "CREATE TABLE table_name_17 (area__km\u00b2_ INTEGER, mean_household_size__in_2006_ VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_53 WHERE kickoff_[a_] = \"1:00\" AND attendance = \"63,251\"", "question": "Which game site Kickoff [a] of 1:00, and an Attendance of 63,251?", "context": "CREATE TABLE table_name_53 (game_site VARCHAR, attendance VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE kickoff_[a_] = \"4:00\" AND opponent = \"detroit lions\"", "question": "Which date has a Kickoff [a] of 4:00, and an Opponent of detroit lions?", "context": "CREATE TABLE table_name_34 (date VARCHAR, opponent VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_25 WHERE week = \"15\"", "question": "What is the attendance in week 15?", "context": "CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_32 WHERE driver = \"nick heidfeld\"", "question": "What is the lowest number of laps obtained by driver Nick Heidfeld?", "context": "CREATE TABLE table_name_32 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT COUNT(percent_yes) FROM table_name_68 WHERE jurisdiction = \"alberta\" AND percent_no > 60.2", "question": "What is the percent yes of Alberta, which had a percent no larger than 60.2?", "context": "CREATE TABLE table_name_68 (percent_yes VARCHAR, jurisdiction VARCHAR, percent_no VARCHAR)"}, {"answer": "SELECT COUNT(voted_yes) FROM table_name_49 WHERE jurisdiction = \"newfoundland\" AND voted_no < 77 OFFSET 881", "question": "What is the total number of yes votes in Newfoundland, which had less than 77,881 vote no?", "context": "CREATE TABLE table_name_49 (voted_yes VARCHAR, jurisdiction VARCHAR, voted_no VARCHAR)"}, {"answer": "SELECT MAX(percent_yes) FROM table_name_29 WHERE jurisdiction = \"alberta\" AND percent_no < 60.2", "question": "What is the highest percent of yes Alberta, which had less than 60.2 vote no, has?", "context": "CREATE TABLE table_name_29 (percent_yes INTEGER, jurisdiction VARCHAR, percent_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_19 WHERE home_team = \"footscray\"", "question": "What team was the away team when Footscray was the home team?", "context": "CREATE TABLE table_name_19 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_64 WHERE home_team = \"north melbourne\"", "question": "What was the size of the crowd when North Melbourne was the home team?", "context": "CREATE TABLE table_name_64 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_67 WHERE away_team = \"collingwood\"", "question": "What was the largest crowd when Collingwood was the away team?", "context": "CREATE TABLE table_name_67 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_25 WHERE result = \"6th\" AND venue = \"munich, west germany\"", "question": "What year is the result 6th in munich, west germany?", "context": "CREATE TABLE table_name_25 (year INTEGER, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_19 WHERE venue = \"athens, greece\"", "question": "What year is the event in athens, greece?", "context": "CREATE TABLE table_name_19 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_17 WHERE venue = \"budapest, hungary\"", "question": "What year is the venue in budapest, hungary?", "context": "CREATE TABLE table_name_17 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_61 WHERE year = 1971", "question": "What tournament is in 1971?", "context": "CREATE TABLE table_name_61 (tournament VARCHAR, year VARCHAR)"}, {"answer": "SELECT extra FROM table_name_22 WHERE result = \"6th\" AND year = 1972", "question": "What is the extra result associated with 6th place in 1972?", "context": "CREATE TABLE table_name_22 (extra VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE home_team = \"collingwood\"", "question": "When did Collingwood play?", "context": "CREATE TABLE table_name_36 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_88 WHERE venue = \"junction oval\"", "question": "How many were in the crowd when there was a game at Junction Oval?", "context": "CREATE TABLE table_name_88 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_17 WHERE score = \"1\u20130\" AND result = \"3\u20130\"", "question": "What is the Competition with a Score of 1\u20130, and a Result with 3\u20130?", "context": "CREATE TABLE table_name_17 (competition VARCHAR, score VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_43 WHERE date = \"22 january 2008\"", "question": "What is the Result with a Date with 22 january 2008?", "context": "CREATE TABLE table_name_43 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_56 WHERE visitor = \"canadiens\"", "question": "What was the decision of the Lightning game when the Canadiens were the away team?", "context": "CREATE TABLE table_name_56 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE home = \"tampa bay\" AND decision = \"ramo\" AND record = \"24\u201327\u20136\"", "question": "What was the date of the 24\u201327\u20136 Lightning home game against Tampa Bay that had a decision of Ramo?", "context": "CREATE TABLE table_name_93 (date VARCHAR, record VARCHAR, home VARCHAR, decision VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_2 WHERE date = \"october 29, 2000\"", "question": "What week was October 29, 2000?", "context": "CREATE TABLE table_name_2 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_36 WHERE date = \"december 10, 2000\"", "question": "Who was the opponent on December 10, 2000?", "context": "CREATE TABLE table_name_36 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_62 WHERE week < 12 AND attendance = \"65,569\"", "question": "Who was the opponent on the game with a 65,569 attendance before week 12?", "context": "CREATE TABLE table_name_62 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_55 WHERE date = \"september 24, 2000\"", "question": "What week was September 24, 2000 on?", "context": "CREATE TABLE table_name_55 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT engine_configuration_ & _notes_0_100km_h FROM table_name_65 WHERE model = \"2.3 t5\"", "question": "What is the engine configuration & notes 0-100km/h with a model with 2.3 t5?", "context": "CREATE TABLE table_name_65 (engine_configuration_ VARCHAR, _notes_0_100km_h VARCHAR, model VARCHAR)"}, {"answer": "SELECT engine_configuration_ & _notes_0_100km_h FROM table_name_49 WHERE engine_type = \"b5252 fs\"", "question": "What is the engine configuration & notes 0-100km/h with an engine type with b5252 fs?", "context": "CREATE TABLE table_name_49 (engine_configuration_ VARCHAR, _notes_0_100km_h VARCHAR, engine_type VARCHAR)"}, {"answer": "SELECT model FROM table_name_97 WHERE engine_type = \"b5244 s2\"", "question": "What is the model with a engine type with b5244 s2?", "context": "CREATE TABLE table_name_97 (model VARCHAR, engine_type VARCHAR)"}, {"answer": "SELECT engine_type FROM table_name_90 WHERE model = \"base 2.4\"", "question": "What is the engine type with a model with base 2.4?", "context": "CREATE TABLE table_name_90 (engine_type VARCHAR, model VARCHAR)"}, {"answer": "SELECT composition FROM table_name_76 WHERE mintage > 999 AND artist = \"jody broomfield\" AND year > 2008", "question": "What is the composition of the coin that was issued after 2008, had a mintage larger than 999, and was designed by Jody Broomfield?", "context": "CREATE TABLE table_name_76 (composition VARCHAR, year VARCHAR, mintage VARCHAR, artist VARCHAR)"}, {"answer": "SELECT theme FROM table_name_91 WHERE year < 2006", "question": "What is the theme of the coin from before 2006?", "context": "CREATE TABLE table_name_91 (theme VARCHAR, year INTEGER)"}, {"answer": "SELECT tyre FROM table_name_27 WHERE race = \"german grand prix\"", "question": "What was the Tyre for the German Grand Prix?", "context": "CREATE TABLE table_name_27 (tyre VARCHAR, race VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_69 WHERE race = \"french grand prix\"", "question": "Who had Pole position for the French Grand Prix?", "context": "CREATE TABLE table_name_69 (pole_position VARCHAR, race VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_36 WHERE pole_position = \"phil hill\" AND winning_driver = \"wolfgang von trips\"", "question": "What was the fastest lap in a race where Phil Hill had the Pole position and was won by Wolfgang von Trips?", "context": "CREATE TABLE table_name_36 (fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_31 WHERE against = \"total\"", "question": "What is the lowest nuber of games drawn in the total column?", "context": "CREATE TABLE table_name_31 (drawn INTEGER, against VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_96 WHERE drawn < 1 AND _percentage_won = \"50%\" AND against = \"netherlands\" AND played > 2", "question": "What is the lowest number of games lost that has less than 1 game drawn, a 50% winning percentage, against the netherlands, and over 2 played games?", "context": "CREATE TABLE table_name_96 (lost INTEGER, played VARCHAR, against VARCHAR, drawn VARCHAR, _percentage_won VARCHAR)"}, {"answer": "SELECT venue FROM table_name_53 WHERE home_team = \"essendon\"", "question": "What was the venue when the home team was Essendon?", "context": "CREATE TABLE table_name_53 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(interview) FROM table_name_56 WHERE evening_gown = 9.286", "question": "Which biggest interview score had an evening gown stat of 9.286?", "context": "CREATE TABLE table_name_56 (interview INTEGER, evening_gown VARCHAR)"}, {"answer": "SELECT AVG(interview) FROM table_name_79 WHERE average > 9.233 AND swimsuit = 9.473 AND evening_gown > 9.671", "question": "Which mean interview number had an average of more than 9.233, a swimsuit stat of more than 9.473, and an evening gown score of more than 9.671?", "context": "CREATE TABLE table_name_79 (interview INTEGER, evening_gown VARCHAR, average VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT MIN(evening_gown) FROM table_name_63 WHERE interview > 9.164 AND swimsuit < 9.35 AND average < 9.233", "question": "Which is the smallest evening gown score when the interview score was more than 9.164, the swimsuit stat was less than 9.35, and the average is less than 9.233?", "context": "CREATE TABLE table_name_63 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_75 WHERE swimsuit = 9.4 AND evening_gown < 9.486", "question": "Which is the largest average number when the swimsuit is 9.4 and the evening gown stat is less than 9.486?", "context": "CREATE TABLE table_name_75 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT SUM(interview) FROM table_name_59 WHERE evening_gown = 9.543 AND average > 9.521", "question": "What is the total number of interview scores that have an evening gown score of 9.543 and an average that is bigger than 9.521?", "context": "CREATE TABLE table_name_59 (interview INTEGER, evening_gown VARCHAR, average VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_52 WHERE evening_gown > 9.35 AND state = \"south carolina\" AND swimsuit > 9.4", "question": "What is the mean average score when the evening gown score is more than 9.35, the state is South Carolina, and the swimsuit score is more than 9.4?", "context": "CREATE TABLE table_name_52 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR, state VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_38 WHERE goals_against = 52 AND losses < 15", "question": "What is the total draw count with 52 goals and less than 15 losses?", "context": "CREATE TABLE table_name_38 (draws INTEGER, goals_against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_23 WHERE club = \"cd toledo\" AND points > 56", "question": "What is the top losses that with Club of cd toledo and Points more than 56?", "context": "CREATE TABLE table_name_23 (losses INTEGER, club VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_1 WHERE goals_for > 72", "question": "What is the low win count with more than 72 goals?", "context": "CREATE TABLE table_name_1 (wins INTEGER, goals_for INTEGER)"}, {"answer": "SELECT total__kg_ FROM table_name_86 WHERE snatch = 132.5", "question": "What's the Total (kg) of a Snatch of 132.5?", "context": "CREATE TABLE table_name_86 (total__kg_ VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT name FROM table_name_62 WHERE snatch > 140 AND bodyweight < 84.55 AND clean_ & _jerk = \"192.5\"", "question": "What's the name of the athlete with a Snatch larger than 140, Bodyweight smaller than 84.55, and Clean and Jerk of 192.5?", "context": "CREATE TABLE table_name_62 (name VARCHAR, snatch VARCHAR, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE result = \"3-1\"", "question": "When was the result 3-1?", "context": "CREATE TABLE table_name_22 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_44 WHERE result = \"1-0\"", "question": "Which competition had a result of 1-0?", "context": "CREATE TABLE table_name_44 (competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_62 WHERE away_team = \"richmond\"", "question": "At what venue was richmond the away team?", "context": "CREATE TABLE table_name_62 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_32 WHERE away_team = \"south melbourne\"", "question": "What venue had an away team of south melbourne?", "context": "CREATE TABLE table_name_32 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_27 WHERE home_team = \"fitzroy\"", "question": "What was fitzroy's score at home?", "context": "CREATE TABLE table_name_27 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE away_team = \"south melbourne\"", "question": "What day did South Melbourne play as the away team?", "context": "CREATE TABLE table_name_82 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_54 WHERE away_team = \"hawthorn\"", "question": "What was the attendance when Hawthorn played as the away team?", "context": "CREATE TABLE table_name_54 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_79 WHERE home_team = \"carlton\"", "question": "Who was Carlton's away team opponent?", "context": "CREATE TABLE table_name_79 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT third FROM table_name_52 WHERE skip = \"sandra peterson\" AND second = \"joan mccusker\" AND events = \"1995 stoh\"", "question": "IN EVENTS 1995 STOH, WHO WAS THE THIRD WITH SKIP SANDRA PETERSON AND SECOND JOAN MCCUSKER?", "context": "CREATE TABLE table_name_52 (third VARCHAR, events VARCHAR, skip VARCHAR, second VARCHAR)"}, {"answer": "SELECT club_team FROM table_name_96 WHERE overall < 283 AND player = \"derrick byfuglien\"", "question": "What club was derrick byfuglien drafted by before 283?", "context": "CREATE TABLE table_name_96 (club_team VARCHAR, overall VARCHAR, player VARCHAR)"}, {"answer": "SELECT venue FROM table_name_22 WHERE result = \"3\u20130\" AND competition = \"2006 fifa world cup qualifier\" AND score = \"3\u20130\"", "question": "What is the Venue with a Result of 3\u20130, and a Competition with 2006 fifa world cup qualifier, and with a Score of 3\u20130?", "context": "CREATE TABLE table_name_22 (venue VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE result = \"8\u20132\" AND score = \"6\u20132\"", "question": "What is the Date with a Result of 8\u20132, and a Score with 6\u20132?", "context": "CREATE TABLE table_name_99 (date VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_35 WHERE score = \"1\u20130\" AND date = \"18 april 2009\"", "question": "What is the Result with a Score of 1\u20130, and a Date with 18 april 2009?", "context": "CREATE TABLE table_name_35 (result VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_64 WHERE result = \"10\u20130\" AND score = \"3\u20130\"", "question": "What is the Venue with a Result of 10\u20130, and a Score with 3\u20130?", "context": "CREATE TABLE table_name_64 (venue VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_72 WHERE date = \"6 december 2011\"", "question": "What is the Competition with a Date with 6 december 2011?", "context": "CREATE TABLE table_name_72 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_4 WHERE date = \"4 september 2013\"", "question": "What is the Result with a Date with 4 september 2013?", "context": "CREATE TABLE table_name_4 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE crowd > 23 OFFSET 000", "question": "When was there a crowd larger than 23,000?", "context": "CREATE TABLE table_name_63 (date VARCHAR, crowd INTEGER)"}, {"answer": "SELECT home_team AS score FROM table_name_34 WHERE venue = \"windy hill\"", "question": "How much was the score of the home team at windy hill?", "context": "CREATE TABLE table_name_34 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_17 WHERE away_team = \"fitzroy\"", "question": "What was the score of the team that played against Fitzroy in their home game?", "context": "CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT stories FROM table_name_43 WHERE rank = \"14\"", "question": "Which stories have a rank of 14?", "context": "CREATE TABLE table_name_43 (stories VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(stories) FROM table_name_85 WHERE completed = 2008 AND rank = \"16\"", "question": "How many stories were done in 2008 with a 16 rank?", "context": "CREATE TABLE table_name_85 (stories VARCHAR, completed VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(stories) FROM table_name_30 WHERE completed > 2003 AND rank = \"16\"", "question": "Name the average stories done after 2003 with a 16 rank", "context": "CREATE TABLE table_name_30 (stories INTEGER, completed VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(stories) FROM table_name_29 WHERE rank = \"16\"", "question": "Name the total number of stories that had a 16 rank", "context": "CREATE TABLE table_name_29 (stories VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(stories) FROM table_name_87 WHERE city = \"guadalajara\" AND completed > 2007", "question": "I want the sum of stories for guadalajara done after 2007", "context": "CREATE TABLE table_name_87 (stories INTEGER, city VARCHAR, completed VARCHAR)"}, {"answer": "SELECT state FROM table_name_99 WHERE council_votes < 4", "question": "Which country has less than 4 votes?", "context": "CREATE TABLE table_name_99 (state VARCHAR, council_votes INTEGER)"}, {"answer": "SELECT time_retired FROM table_name_74 WHERE grid = \"22\"", "question": "What was the time of the driver who had a grid of 22?", "context": "CREATE TABLE table_name_74 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_23 WHERE time_retired = \"collision\" AND driver = \"olivier panis\"", "question": "What is the construction of Olivier Panis' car that retired due to a collision?", "context": "CREATE TABLE table_name_23 (constructor VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_54 WHERE time_retired = \"collision\" AND laps = \"41\"", "question": "Which driver retired from a collision after 41 laps?", "context": "CREATE TABLE table_name_54 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_22 WHERE laps = \"77\" AND grid = \"11\"", "question": "Who retired at lap 77 and was grid 11?", "context": "CREATE TABLE table_name_22 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_89 WHERE laps > 54", "question": "How many grid numbers had a lap number bigger than 54?", "context": "CREATE TABLE table_name_89 (grid VARCHAR, laps INTEGER)"}, {"answer": "SELECT outgoing_manager FROM table_name_19 WHERE date_of_vacancy = \"13 october 2008\"", "question": "Who is the outgoing manager when the date of vacancy is 13 october 2008?", "context": "CREATE TABLE table_name_19 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_46 WHERE grid > 8 AND time_retired = \"+1:17.124\"", "question": "Which Constructor has a Grid larger than 8, and a Time/Retired of +1:17.124?", "context": "CREATE TABLE table_name_46 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_1 WHERE chassis = \"toyota tf102\"", "question": "which year has the toyota tf102 chassis?", "context": "CREATE TABLE table_name_1 (year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_68 WHERE year < 1996 AND points = 5", "question": "what was the engine used before 1996 with 5 points?", "context": "CREATE TABLE table_name_68 (engine VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_90 WHERE entrant = \"red bull sauber petronas\" AND points > 6", "question": "What number of years did the red bull sauber petronas have greater than 6 points?", "context": "CREATE TABLE table_name_90 (year VARCHAR, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT notes FROM table_name_37 WHERE type = \"0-6-0t\"", "question": "What are the notes for a Type of 0-6-0t?", "context": "CREATE TABLE table_name_37 (notes VARCHAR, type VARCHAR)"}, {"answer": "SELECT notes FROM table_name_98 WHERE built = \"1917\"", "question": "What is the notes for the vehicle built in 1917?", "context": "CREATE TABLE table_name_98 (notes VARCHAR, built VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_24 WHERE away_team = \"hawthorn\"", "question": "Who was the Away team at Hawthorn?", "context": "CREATE TABLE table_name_24 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT region FROM table_name_65 WHERE format = \"vinyl record\"", "question": "What region has vinyl record listed as its format?", "context": "CREATE TABLE table_name_65 (region VARCHAR, format VARCHAR)"}, {"answer": "SELECT label FROM table_name_94 WHERE format = \"compact disc\" AND region = \"united kingdom\"", "question": "What label is formatted as compact disc and has United Kingdom as its region?", "context": "CREATE TABLE table_name_94 (label VARCHAR, format VARCHAR, region VARCHAR)"}, {"answer": "SELECT format FROM table_name_65 WHERE region = \"united kingdom\" AND catalogue = \"201457 9\"", "question": "What format has United Kingdom as its region and is catalogued as 201457 9?", "context": "CREATE TABLE table_name_65 (format VARCHAR, region VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT school_country FROM table_name_48 WHERE asts = 337", "question": "What is the school/country of the player with 337 assists?", "context": "CREATE TABLE table_name_48 (school_country VARCHAR, asts VARCHAR)"}, {"answer": "SELECT pos FROM table_name_85 WHERE asts > 11 AND rebs = 219", "question": "What is the position of the player with more than 11 assists and 219 rebounds?", "context": "CREATE TABLE table_name_85 (pos VARCHAR, asts VARCHAR, rebs VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE away_team = \"geelong\"", "question": "What day did Geelong play as the away team?", "context": "CREATE TABLE table_name_73 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT kickoff_[a_] FROM table_name_66 WHERE record = \"1-7\"", "question": "When was the kickoff during a game with a record of 1-7?", "context": "CREATE TABLE table_name_66 (kickoff_ VARCHAR, a_ VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE week = \"9\"", "question": "When was the date that week 9 started?", "context": "CREATE TABLE table_name_65 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_50 WHERE date = \"september 1, 1996\"", "question": "What was the score on September 1, 1996?", "context": "CREATE TABLE table_name_50 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT school FROM table_name_75 WHERE player = \"dave lewis\"", "question": "Which school drafted dave lewis?", "context": "CREATE TABLE table_name_75 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_21 WHERE school = \"alabama\"", "question": "What position did the school of alabama draft?", "context": "CREATE TABLE table_name_21 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT stage FROM table_name_49 WHERE trofeo_fast_team = \"once\"", "question": "What was the stage of team Once?", "context": "CREATE TABLE table_name_49 (stage VARCHAR, trofeo_fast_team VARCHAR)"}, {"answer": "SELECT trofeo_fast_team FROM table_name_23 WHERE points_classification = \"claudio chiappucci\" AND stage = \"final\"", "question": "Which team had a final stage when Claudio Chiappucci had the points?", "context": "CREATE TABLE table_name_23 (trofeo_fast_team VARCHAR, points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_78 WHERE trofeo_fast_team = \"carrera jeans-tassoni\" AND winner = \"mario cipollini\" AND points_classification = \"claudio chiappucci\"", "question": "What stage did team Carrera Jeans-Tassoni have when Mario Cipollini won and Claudio Chiappucci had the points?", "context": "CREATE TABLE table_name_78 (stage VARCHAR, points_classification VARCHAR, trofeo_fast_team VARCHAR, winner VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_46 WHERE home_team = \"carlton\"", "question": "I want to know the crowd with a home team of carlton", "context": "CREATE TABLE table_name_46 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT COUNT(population_estimate_2005) FROM table_name_86 WHERE capital = \"majene\"", "question": "how many population estimate 2005 are for majene?", "context": "CREATE TABLE table_name_86 (population_estimate_2005 VARCHAR, capital VARCHAR)"}, {"answer": "SELECT AVG(population_estimate_2005) FROM table_name_89 WHERE area__km_2__ = 3 OFFSET 034.08", "question": "what is the population estimate 2005 for the with the area (km2) 3,034.08?", "context": "CREATE TABLE table_name_89 (population_estimate_2005 INTEGER, area__km_2__ VARCHAR)"}, {"answer": "SELECT COUNT(population_estimate_2005) FROM table_name_26 WHERE area__km_2__ > 8 OFFSET 023.74", "question": "how many times was the population estimate 2005 have an area (km2) more than 8,023.74?", "context": "CREATE TABLE table_name_26 (population_estimate_2005 VARCHAR, area__km_2__ INTEGER)"}, {"answer": "SELECT score FROM table_name_16 WHERE visitor = \"pacers\" AND date = \"14 april 2008\"", "question": "Name the score for pacers visitor on 14 april 2008", "context": "CREATE TABLE table_name_16 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_74 WHERE away_team = \"geelong\"", "question": "What was the home team when geelong was the away team?", "context": "CREATE TABLE table_name_74 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_75 WHERE final_score = \"9-14\"", "question": "What stadium hosted the game that had a final score of 9-14?", "context": "CREATE TABLE table_name_75 (stadium VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_34 WHERE stadium = \"lincoln financial field\" AND final_score = \"24-14\"", "question": "Who was the visiting team at Lincoln Financial Field when the final score was 24-14?", "context": "CREATE TABLE table_name_34 (visiting_team VARCHAR, stadium VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_3 WHERE final_score = \"7-13\"", "question": "Who was the vistiting team in the game with the final score of 7-13?", "context": "CREATE TABLE table_name_3 (visiting_team VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_4 WHERE date = \"december 19\"", "question": "Who was the host team on December 19?", "context": "CREATE TABLE table_name_4 (host_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_26 WHERE visiting_team = \"dallas cowboys\" AND date = \"september 12\"", "question": "Where was the game on September 12 played when the Dallas Cowboys was the visiting team?", "context": "CREATE TABLE table_name_26 (stadium VARCHAR, visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_21 WHERE stadium = \"louisiana superdome\" AND final_score = \"10-20\"", "question": "Who was the host team at Louisiana Superdome when the final score was 10-20?", "context": "CREATE TABLE table_name_21 (host_team VARCHAR, stadium VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT result FROM table_name_98 WHERE category = \"best orchestrations\"", "question": "What is the result for the best orchestrations category?", "context": "CREATE TABLE table_name_98 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT genre FROM table_name_95 WHERE number_of_episodes > 20 AND english_title__chinese_title_ = \"wong fei hung - master of kung fu \u6211\u5e2b\u5085\u4fc2\u9ec3\u98db\u9d3b\"", "question": "What genre has over 20 episodes, with an English title (Chinese title) of wong fei hung - master of kung fu \u6211\u5e2b\u5085\u4fc2\u9ec3\u98db\u9d3b?", "context": "CREATE TABLE table_name_95 (genre VARCHAR, number_of_episodes VARCHAR, english_title__chinese_title_ VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_23 WHERE player = \"peter hogarth\"", "question": "which CFL team has a player called Peter Hogarth?", "context": "CREATE TABLE table_name_23 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_88 WHERE player = \"riley clayton\"", "question": "which college has a player called Riley Clayton?", "context": "CREATE TABLE table_name_88 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT album FROM table_name_27 WHERE year = \"june 1998\"", "question": "Which album was on June 1998?", "context": "CREATE TABLE table_name_27 (album VARCHAR, year VARCHAR)"}, {"answer": "SELECT album FROM table_name_68 WHERE label_and_cat_number = \"full moon/warner 28628\"", "question": "Which album has a label and cat# full moon/warner 28628?", "context": "CREATE TABLE table_name_68 (album VARCHAR, label_and_cat_number VARCHAR)"}, {"answer": "SELECT us_ac FROM table_name_1 WHERE label_and_cat_number = \"reprise 19466\"", "question": "What is the US AC of the label and cat# reprise 19466?", "context": "CREATE TABLE table_name_1 (us_ac VARCHAR, label_and_cat_number VARCHAR)"}, {"answer": "SELECT rec FROM table_name_25 WHERE player = \"jerel myers\"", "question": "Which Rec has Jerel Myers as the Player?", "context": "CREATE TABLE table_name_25 (rec VARCHAR, player VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_59 WHERE away_team = \"carlton\"", "question": "What is Away team Carlton's score?", "context": "CREATE TABLE table_name_59 (away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_52 WHERE home_team = \"footscray\"", "question": "What was Home team Footscray's score?", "context": "CREATE TABLE table_name_52 (home_team VARCHAR)"}, {"answer": "SELECT mahu FROM table_name_80 WHERE pergi = \"pi\"", "question": "What is Mahu when pergi is pi?", "context": "CREATE TABLE table_name_80 (mahu VARCHAR, pergi VARCHAR)"}, {"answer": "SELECT _kah__atau_tidak_ FROM table_name_98 WHERE \"basikal\" = \"basikal\" AND language_dialect = \"malay language (informal)\"", "question": "what is -kah (atau tidak when basikal is basikal and language dialect is malay language (informal)?", "context": "CREATE TABLE table_name_98 (_kah__atau_tidak_ VARCHAR, language_dialect VARCHAR)"}, {"answer": "SELECT language_dialect FROM table_name_63 WHERE basikal = \"sepeda\" AND boleh = \"bulih\"", "question": "what is the language/dialect when basikal is sepeda and boleh is bulih?", "context": "CREATE TABLE table_name_63 (language_dialect VARCHAR, basikal VARCHAR, boleh VARCHAR)"}, {"answer": "SELECT basikal FROM table_name_53 WHERE mana = \"mano\" AND pergi = \"gi\" AND ikut = \"turuk\"", "question": "what is basikal when mana is mano, pergi is gi and Ikut  is turuk?", "context": "CREATE TABLE table_name_53 (basikal VARCHAR, ikut VARCHAR, mana VARCHAR, pergi VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE opponent = \"st. george illawarra dragons\"", "question": "On what date was the match against the St. George Illawarra Dragons?", "context": "CREATE TABLE table_name_37 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(margin) FROM table_name_14 WHERE score = \"52-12\"", "question": "What was the margin of the score 52-12?", "context": "CREATE TABLE table_name_14 (margin INTEGER, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_50 WHERE venue = \"western oval\"", "question": "Which home team plays at the Western Oval?", "context": "CREATE TABLE table_name_50 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_91 WHERE home_team = \"north melbourne\"", "question": "What was the away score when North Melbourne was played?", "context": "CREATE TABLE table_name_91 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE record = \"73-82\"", "question": "with a record of 73-82 what was the date?", "context": "CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_73 WHERE score = \"7-6\"", "question": "in game that had a score of 7-6 what was the attendance?", "context": "CREATE TABLE table_name_73 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_44 WHERE record = \"63-76\"", "question": "with a record of 63-76 what was the attendance?", "context": "CREATE TABLE table_name_44 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_67 WHERE record = \"68-80\"", "question": "with a record of 68-80 what was the loss?", "context": "CREATE TABLE table_name_67 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_3 WHERE record = \"66-78\"", "question": "with a record of 66-78 what was the loss?", "context": "CREATE TABLE table_name_3 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_96 WHERE points = 33", "question": "How many places have more than 33 points?", "context": "CREATE TABLE table_name_96 (place VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_27 WHERE artist = \"hari mata hari\" AND points < 70", "question": "What's the sum of draw for artist hari mata hari with less than 70 points?", "context": "CREATE TABLE table_name_27 (draw INTEGER, artist VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_18 WHERE artist = \"hari mata hari\"", "question": "What's the sum of points for artist hari mata hari?", "context": "CREATE TABLE table_name_18 (points INTEGER, artist VARCHAR)"}, {"answer": "SELECT loser FROM table_name_72 WHERE sport = \"hockey\"", "question": "What losing team plays hockey?", "context": "CREATE TABLE table_name_72 (loser VARCHAR, sport VARCHAR)"}, {"answer": "SELECT date_s_ FROM table_name_14 WHERE winner = \"virginia commonwealth rams\"", "question": "What date did Virginia Commonwealth Rams win?", "context": "CREATE TABLE table_name_14 (date_s_ VARCHAR, winner VARCHAR)"}, {"answer": "SELECT SUM(year_of_award) FROM table_name_35 WHERE date_s_ = \"june 6, 2004\u2013june 15, 2004\"", "question": "What year were the awards given june 6, 2004\u2013june 15, 2004?", "context": "CREATE TABLE table_name_35 (year_of_award INTEGER, date_s_ VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_4 WHERE driver = \"jack fairman\" AND chassis = \"t45\"", "question": "What company was the entrant for the race with Jack Fairman as the driver with a chassis of t45?", "context": "CREATE TABLE table_name_4 (entrant VARCHAR, driver VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_96 WHERE driver = \"roy salvadori\"", "question": "What chassis was used by roy salvadori?", "context": "CREATE TABLE table_name_96 (chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT 2 AS nd_runner_up FROM table_name_91 WHERE premiere_date = \"july 20, 2007\"", "question": "Name the 2nd runner-up for july 20, 2007", "context": "CREATE TABLE table_name_91 (premiere_date VARCHAR)"}, {"answer": "SELECT 2 AS nd_runner_up FROM table_name_89 WHERE winner = \"yuming lai (\u8cf4\u9298\u5049)\"", "question": "Name the 2nd runner-up for yuming lai (\u8cf4\u9298\u5049)", "context": "CREATE TABLE table_name_89 (winner VARCHAR)"}, {"answer": "SELECT 2 AS nd_runner_up FROM table_name_59 WHERE season_number = \"season 7\"", "question": "Name the 2nd runner-up for season 7", "context": "CREATE TABLE table_name_59 (season_number VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_35 WHERE winner = \"janice yan (\u95bb\u5955\u683c)\"", "question": "Name the runner-up for janice yan (\u95bb\u5955\u683c)", "context": "CREATE TABLE table_name_35 (runner_up VARCHAR, winner VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_14 WHERE grid < 18 AND driver = \"mika h\u00e4kkinen\"", "question": "Which constructor has a Grid smaller than 18, and a Driver of mika h\u00e4kkinen?", "context": "CREATE TABLE table_name_14 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_66 WHERE driver = \"damon hill\" AND grid < 1", "question": "What is the average Lap of damon hill, with a Grid smaller than 1?", "context": "CREATE TABLE table_name_66 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_93 WHERE driver = \"eddie irvine\"", "question": "What is the total number of laps with a Driver of eddie irvine?", "context": "CREATE TABLE table_name_93 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT AVG(games_played) FROM table_name_57 WHERE team = \"ottawa hockey club\" AND wins > 5", "question": "Which average games played number has the Ottawa Hockey Club as a team and a number of wins bigger than 5?", "context": "CREATE TABLE table_name_57 (games_played INTEGER, team VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(goals_against) FROM table_name_39 WHERE games_played < 8", "question": "What is the mean number of goals against when there were fewer than 8 games played?", "context": "CREATE TABLE table_name_39 (goals_against INTEGER, games_played INTEGER)"}, {"answer": "SELECT COUNT(wins) FROM table_name_4 WHERE goals_for > 35 AND team = \"montreal hockey club\" AND losses < 2", "question": "What is the sum of wins when the goals for number was bigger than 35, the team was the Montreal Hockey Club, and the number of losses was less than 2?", "context": "CREATE TABLE table_name_4 (wins VARCHAR, losses VARCHAR, goals_for VARCHAR, team VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_94 WHERE partner = \"nicole arendt\"", "question": "What is the outcome of the match when the partner is Nicole Arendt?", "context": "CREATE TABLE table_name_94 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_64 WHERE date = \"december 9, 1961\" AND attendance > 41 OFFSET 268", "question": "What was the week of the December 9, 1961 game with an attendance larger than 41,268?", "context": "CREATE TABLE table_name_64 (week VARCHAR, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(seats_2001) FROM table_name_23 WHERE _percentage_2006 < 8.6", "question": "None of the communities listed has a percentage smaller than 8.6 in 2006.", "context": "CREATE TABLE table_name_23 (seats_2001 VARCHAR, _percentage_2006 INTEGER)"}, {"answer": "SELECT SUM(seats_2001) FROM table_name_7 WHERE seats_2006 = 2 AND _percentage_2001 > 7.6", "question": "There are communities listed that a percentage larger than 7.6 in 2001, but none of them has 2 seats listed in 2006.", "context": "CREATE TABLE table_name_7 (seats_2001 INTEGER, seats_2006 VARCHAR, _percentage_2001 VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_96 WHERE format = \"vhs\" AND title = \"super callanetics\"", "question": "What is the release date of vhs super callanetics?", "context": "CREATE TABLE table_name_96 (release_date VARCHAR, format VARCHAR, title VARCHAR)"}, {"answer": "SELECT format FROM table_name_64 WHERE year > 1991 AND catalog_number = \"81868\"", "question": "What format is after 1991 and has a Catalog Number of 81868?", "context": "CREATE TABLE table_name_64 (format VARCHAR, year VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_69 WHERE catalog_number = \"80429 / bta80429\"", "question": "How many years have a Catalog Number of 80429 / bta80429?", "context": "CREATE TABLE table_name_69 (year VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE score = \"2-0\"", "question": "When did the score of 2-0 take place?", "context": "CREATE TABLE table_name_29 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_15 WHERE time_retired = \"received outside assistance\" AND grid < 19", "question": "Where the grid is under 19, the time finished was logged as received outside assistance, what's the total number of laps?", "context": "CREATE TABLE table_name_15 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT player FROM table_name_19 WHERE goals = 0 AND tries = 1 AND points = 4 AND position = \"prop\"", "question": "Which player has 0 goals, 1 tries, 4 points, and plays in the Prop position?", "context": "CREATE TABLE table_name_19 (player VARCHAR, position VARCHAR, points VARCHAR, goals VARCHAR, tries VARCHAR)"}, {"answer": "SELECT AVG(tries) FROM table_name_60 WHERE player = \"nathan mcavoy\"", "question": "What is the average number of Tries for Nathan McAvoy?", "context": "CREATE TABLE table_name_60 (tries INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(tries) FROM table_name_79 WHERE player = \"mike forshaw\" AND points < 28", "question": "What is the average number of Tries with less than 28 Points for Mike Forshaw?", "context": "CREATE TABLE table_name_79 (tries INTEGER, player VARCHAR, points VARCHAR)"}, {"answer": "SELECT position FROM table_name_31 WHERE cfl_team = \"saskatchewan roughriders (via toronto)\"", "question": "What position did the player from the saskatchewan roughriders (via toronto) play?", "context": "CREATE TABLE table_name_31 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_8 WHERE position = \"ol\" AND player = \"dominic picard\"", "question": "What numbered pick was dominic picard, ol, selected?", "context": "CREATE TABLE table_name_8 (pick__number VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE home_team = \"north melbourne\"", "question": "Name the date which has a home team of north melbourne", "context": "CREATE TABLE table_name_3 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_17 WHERE home_team = \"fitzroy\"", "question": "Name the away team for home team of fitzroy", "context": "CREATE TABLE table_name_17 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_27 WHERE venue = \"glenferrie oval\"", "question": "What was the score for the away team that played at Glenferrie Oval?", "context": "CREATE TABLE table_name_27 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE crowd > 35 OFFSET 151", "question": "When was the attendance at a venue bigger than 35,151?", "context": "CREATE TABLE table_name_36 (date VARCHAR, crowd INTEGER)"}, {"answer": "SELECT COUNT(laps) FROM table_name_68 WHERE qual > 142.81 AND grid = 12", "question": "Tell me the total number of Laps for Qual being larger than 142.81 with Grid of 12", "context": "CREATE TABLE table_name_68 (laps VARCHAR, qual VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(qual) FROM table_name_16 WHERE laps > 93 AND rank = 32 AND grid < 32", "question": "Tell me the total number of Qual Laps higher than 93 with a Rank of 32 with Grid less than 32", "context": "CREATE TABLE table_name_16 (qual VARCHAR, grid VARCHAR, laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT payload__kg_ FROM table_name_99 WHERE in_service = \"2011\"", "question": "Tell me the payload that has an In service for 2011", "context": "CREATE TABLE table_name_99 (payload__kg_ VARCHAR, in_service VARCHAR)"}, {"answer": "SELECT dimension__m_ FROM table_name_57 WHERE range__km_ = \"8,000 \u2013 10,000\"", "question": "Tell me the dimension that has a range of 8,000 \u2013 10,000", "context": "CREATE TABLE table_name_57 (dimension__m_ VARCHAR, range__km_ VARCHAR)"}, {"answer": "SELECT project FROM table_name_92 WHERE missile = \"agni-iii\"", "question": "Name the project which has a missle of agni-iii", "context": "CREATE TABLE table_name_92 (project VARCHAR, missile VARCHAR)"}, {"answer": "SELECT payload__kg_ FROM table_name_35 WHERE weight__kg_ = \"12,000\"", "question": "Name the payload that has a weight of 12,000", "context": "CREATE TABLE table_name_35 (payload__kg_ VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT type FROM table_name_65 WHERE project = \"igmdp\" AND weight__kg_ = \"16,000\"", "question": "Name the typ for project of igmdp and weight of 16,000", "context": "CREATE TABLE table_name_65 (type VARCHAR, project VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT record FROM table_name_43 WHERE leading_scorer = \"andrew bogut (21)\"", "question": "What is the record of the game with Andrew Bogut (21) as the leading scorer?", "context": "CREATE TABLE table_name_43 (record VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT home FROM table_name_5 WHERE date = \"26 february 2008\"", "question": "Who was the home team of the game on 26 February 2008?", "context": "CREATE TABLE table_name_5 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_31 WHERE date = \"9 february 2008\"", "question": "Who is the leading scorer of the game on 9 February 2008?", "context": "CREATE TABLE table_name_31 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_52 WHERE date = \"13 february 2008\"", "question": "Who is the leading scorer of the game on 13 February 2008?", "context": "CREATE TABLE table_name_52 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_97 WHERE leading_scorer = \"andrew bogut (21)\"", "question": "Who is the visitor team of the game with Andrew Bogut (21) as the leading scorer?", "context": "CREATE TABLE table_name_97 (visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT MIN(events) FROM table_name_75 WHERE cuts_made > 5 AND top_25 < 13", "question": "What is the lowest number of events a tournament with more tha 5 cuts and less than 13 top-25 has?", "context": "CREATE TABLE table_name_75 (events INTEGER, cuts_made VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MAX(top_10) FROM table_name_81 WHERE cuts_made = 16 AND top_25 < 13", "question": "What is the highest top-10 a tournament with 16 cuts and less than 13 top-25 has?", "context": "CREATE TABLE table_name_81 (top_10 INTEGER, cuts_made VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT SUM(top_25) FROM table_name_93 WHERE tournament = \"u.s. open\" AND events < 7", "question": "What is the top-25 of the U.S. open, which has less than 7 events?", "context": "CREATE TABLE table_name_93 (top_25 INTEGER, tournament VARCHAR, events VARCHAR)"}, {"answer": "SELECT SUM(events) FROM table_name_77 WHERE top_10 = 2 AND cuts_made > 5", "question": "How many events does the tournament with a top-10 of 2 and more than 5 cuts have?", "context": "CREATE TABLE table_name_77 (events INTEGER, top_10 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_26 WHERE name = \"rich burtness\"", "question": "What Pick number is Rich Burtness?", "context": "CREATE TABLE table_name_26 (pick INTEGER, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_77 WHERE school = \"kentucky state\"", "question": "What position is Kentucky State sitting in?", "context": "CREATE TABLE table_name_77 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT density__hab__km\u00b2__ FROM table_name_61 WHERE altitude_m = \"1300\"", "question": "What is the density (hab/ km\u00b2) when the altitude m is 1300?", "context": "CREATE TABLE table_name_61 (density__hab__km\u00b2__ VARCHAR, altitude_m VARCHAR)"}, {"answer": "SELECT distance_medell\u00edn_downtown___km__ FROM table_name_86 WHERE municipalities = \"envigado\"", "question": "What is the Distance Medell\u00edn Downtown (km) when the municipalities Envigado?", "context": "CREATE TABLE table_name_86 (distance_medell\u00edn_downtown___km__ VARCHAR, municipalities VARCHAR)"}, {"answer": "SELECT density__hab__km\u00b2__ FROM table_name_22 WHERE extension_km\u00b2 = \"380,64\"", "question": "What is the density (hab/ km\u00b2) when the extension km\u00b2 is 380,64?", "context": "CREATE TABLE table_name_22 (density__hab__km\u00b2__ VARCHAR, extension_km\u00b2 VARCHAR)"}, {"answer": "SELECT population__hab_ FROM table_name_10 WHERE distance_medell\u00edn_downtown___km__ = \"* dane\"", "question": "What is the population (hab) when the distance medellin downtown (km) is * dane?", "context": "CREATE TABLE table_name_10 (population__hab_ VARCHAR, distance_medell\u00edn_downtown___km__ VARCHAR)"}, {"answer": "SELECT density__hab__km\u00b2__ FROM table_name_53 WHERE population__hab_ = \"58 414*\"", "question": "What is the Density (hab/ km\u00b2) when the population (hab) is 58 414*?", "context": "CREATE TABLE table_name_53 (density__hab__km\u00b2__ VARCHAR, population__hab_ VARCHAR)"}, {"answer": "SELECT altitude_m FROM table_name_10 WHERE distance_medell\u00edn_downtown___km__ = \"42\"", "question": "What is the altitude for the distance medellin downtown (km) is 42?", "context": "CREATE TABLE table_name_10 (altitude_m VARCHAR, distance_medell\u00edn_downtown___km__ VARCHAR)"}, {"answer": "SELECT MAX(quantity) FROM table_name_49 WHERE sht_nos = \"5\"", "question": "How many have SHT number 5?", "context": "CREATE TABLE table_name_49 (quantity INTEGER, sht_nos VARCHAR)"}, {"answer": "SELECT gwr_nos FROM table_name_56 WHERE quantity = 4", "question": "What GWR is associated with 4?", "context": "CREATE TABLE table_name_56 (gwr_nos VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE date = \"march 11\"", "question": "What was the score on march 11?", "context": "CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_79 WHERE position = \"c\"", "question": "What is the nationality of the C?", "context": "CREATE TABLE table_name_79 (nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT team FROM table_name_82 WHERE college = \"santa clara\"", "question": "What team has a player from Santa Clara?", "context": "CREATE TABLE table_name_82 (team VARCHAR, college VARCHAR)"}, {"answer": "SELECT round FROM table_name_27 WHERE college = \"minnesota\"", "question": "What round did the College of Minnesota pick?", "context": "CREATE TABLE table_name_27 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT team FROM table_name_27 WHERE pick = \"2\"", "question": "What team had Pick 2?", "context": "CREATE TABLE table_name_27 (team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_6 WHERE college = \"cincinnati\"", "question": "What nationality is the player from the College of Cincinnati?", "context": "CREATE TABLE table_name_6 (nationality VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_84 WHERE college = \"western washington\"", "question": "Which player went to the college of Western Washington?", "context": "CREATE TABLE table_name_84 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(earnings___) AS $__ FROM table_name_43 WHERE events < 28 AND rank < 3", "question": "How much money did the player ranked above 3 with under 28 events earn?", "context": "CREATE TABLE table_name_43 (earnings___ VARCHAR, events VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_17 WHERE rank > 4", "question": "What is the low win total for players ranked below 4?", "context": "CREATE TABLE table_name_17 (wins INTEGER, rank INTEGER)"}, {"answer": "SELECT name FROM table_name_28 WHERE percentage = \"0.59%\"", "question": "Which name has a percentage of 0.59%?", "context": "CREATE TABLE table_name_28 (name VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_24 WHERE percentage = \"12.03%\"", "question": "What is the exact number of Total that has a percentage of precisely 12.03%?", "context": "CREATE TABLE table_name_24 (total VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT result FROM table_name_55 WHERE date = \"1990-11-04\"", "question": "What was the result on 1990-11-04?", "context": "CREATE TABLE table_name_55 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_34 WHERE week = 3", "question": "Who was the opponent in week 3?", "context": "CREATE TABLE table_name_34 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_26 WHERE date = \"1990-11-18\"", "question": "Where was the game on 1990-11-18?", "context": "CREATE TABLE table_name_26 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_69 WHERE grid = 8", "question": "What is the average number of laps for grid 8?", "context": "CREATE TABLE table_name_69 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_88 WHERE time_retired = \"1:34:12.912\"", "question": "Who built the car that has a Time/Retired of 1:34:12.912?", "context": "CREATE TABLE table_name_88 (constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(rd__number) FROM table_name_24 WHERE reg_gp = 0 AND pick__number = 150", "question": "What is the rd number where the reg GP is 0 and the pick is 150?", "context": "CREATE TABLE table_name_24 (rd__number VARCHAR, reg_gp VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT award FROM table_name_80 WHERE result = \"nominated\" AND organization = \"54th the television academy drama awards\"", "question": "Where Result is nominated and Organization is 54th the television academy drama awards, what is the award?", "context": "CREATE TABLE table_name_80 (award VARCHAR, result VARCHAR, organization VARCHAR)"}, {"answer": "SELECT organization FROM table_name_82 WHERE work = \"veterinarian dolittle\"", "question": "Where Work is veterinarian dolittle, what is the Organization?", "context": "CREATE TABLE table_name_82 (organization VARCHAR, work VARCHAR)"}, {"answer": "SELECT work FROM table_name_19 WHERE award = \"newcomer actress\"", "question": "Where Award is newcomer actress, what is the work?", "context": "CREATE TABLE table_name_19 (work VARCHAR, award VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_58 WHERE award = \"best actress\" AND work = \"first kiss\"", "question": "Where Award is best actress and Work is first kiss, what is the average Year?", "context": "CREATE TABLE table_name_58 (year INTEGER, award VARCHAR, work VARCHAR)"}, {"answer": "SELECT round FROM table_name_58 WHERE club = \"maccabi haifa fc\"", "question": "What round did the maccabi haifa fc club have?", "context": "CREATE TABLE table_name_58 (round VARCHAR, club VARCHAR)"}, {"answer": "SELECT competition FROM table_name_87 WHERE club = \"maccabi haifa fc\"", "question": "What competition did the maccabi haifa fc club play?", "context": "CREATE TABLE table_name_87 (competition VARCHAR, club VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE date = \"march 5\"", "question": "What is the record of the game on March 5?", "context": "CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_66 WHERE visitor = \"raptors\"", "question": "What is the home team of the game with the Raptors as the visitor team?", "context": "CREATE TABLE table_name_66 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT competition FROM table_name_91 WHERE venue = \"pusk\u00e1s ferenc stadium , budapest , hungary\" AND score = \"1\u20130\"", "question": "What competition was at pusk\u00e1s ferenc stadium , budapest , hungary, and a Score of 1\u20130?", "context": "CREATE TABLE table_name_91 (competition VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_72 WHERE ngc_number > 6638 AND right_ascension___j2000__ = \"18h25m37.8s\"", "question": "Name the object type with an NGC number more than 6638 and right ascensions being 18h25m37.8s", "context": "CREATE TABLE table_name_72 (object_type VARCHAR, ngc_number VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_54 WHERE right_ascension___j2000__ = \"18h17m41.1s\"", "question": "Tell me the constellation which has a right ascension of 18h17m41.1s", "context": "CREATE TABLE table_name_54 (constellation VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT COUNT(since) FROM table_name_57 WHERE goals > 6 AND name = \"deco\"", "question": "What is the total number of Since with a Goals larger than 6, and a Name with deco?", "context": "CREATE TABLE table_name_57 (since VARCHAR, goals VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(ends) FROM table_name_93 WHERE since = 2003 AND name = \"m\u00e1rquez\"", "question": "What is the average Ends with a Since of 2003, and a Name with m\u00e1rquez?", "context": "CREATE TABLE table_name_93 (ends INTEGER, since VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(ends) FROM table_name_58 WHERE name = \"abidal\" AND since > 2007", "question": "What is the sum of Ends with a Name of abidal, and has a Since larger than 2007?", "context": "CREATE TABLE table_name_58 (ends INTEGER, name VARCHAR, since VARCHAR)"}, {"answer": "SELECT finish FROM table_name_35 WHERE record = \"74-68\"", "question": "Which finish has a Record of 74-68?", "context": "CREATE TABLE table_name_35 (finish VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_33 WHERE team = \"johnson city yankees\" AND finish = \"6th\"", "question": "What is the total of the year with a Team of johnson city yankees, and a Finish of 6th?", "context": "CREATE TABLE table_name_33 (year INTEGER, team VARCHAR, finish VARCHAR)"}, {"answer": "SELECT record FROM table_name_43 WHERE team = \"manchester yankees\"", "question": "Which record has a Team of manchester yankees?", "context": "CREATE TABLE table_name_43 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT organization FROM table_name_93 WHERE finish = \"4th\"", "question": "Which organization has a Finish of 4th?", "context": "CREATE TABLE table_name_93 (organization VARCHAR, finish VARCHAR)"}, {"answer": "SELECT year FROM table_name_61 WHERE organization = \"new york yankees\" AND team = \"johnson city yankees\"", "question": "Which year has an Organization of new york yankees, and a Team of johnson city yankees?", "context": "CREATE TABLE table_name_61 (year VARCHAR, organization VARCHAR, team VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_2 WHERE grid > 14 AND laps > 93 AND rank > 25", "question": "Which constructor had a grid number bigger than 14, laps of more than 93, and rank higher than 25?", "context": "CREATE TABLE table_name_2 (constructor VARCHAR, rank VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT qual FROM table_name_43 WHERE rank > 28 AND grid > 23", "question": "Which qual has rank of more than 28 and a grid number that is bigger than 23?", "context": "CREATE TABLE table_name_43 (qual VARCHAR, rank VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(qual) FROM table_name_57 WHERE grid = 24", "question": "What is the total qual where the grid number is 24?", "context": "CREATE TABLE table_name_57 (qual INTEGER, grid VARCHAR)"}, {"answer": "SELECT suffix FROM table_name_73 WHERE group = \"benzyl\"", "question": "What is the Suffix for the Group of Benzyl?", "context": "CREATE TABLE table_name_73 (suffix VARCHAR, group VARCHAR)"}, {"answer": "SELECT formula FROM table_name_72 WHERE prefix = \"alkyl-\"", "question": "Which Formula has a Prefix of alkyl-?", "context": "CREATE TABLE table_name_72 (formula VARCHAR, prefix VARCHAR)"}, {"answer": "SELECT home FROM table_name_28 WHERE decision = \"ramo\" AND visitor = \"florida\"", "question": "Who was the Home team when the Visitor was Florida, with a Decision of Ramo?", "context": "CREATE TABLE table_name_28 (home VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT decision FROM table_name_53 WHERE visitor = \"carolina\"", "question": "What was the Decision when the Visitor was Carolina?", "context": "CREATE TABLE table_name_53 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_30 WHERE venue = \"windy hill\"", "question": "Which away team was at windy hill?", "context": "CREATE TABLE table_name_30 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT award FROM table_name_27 WHERE result = \"won\" AND category = \"most popular star\" AND year = 2007", "question": "For the category of most popular star with a result of won for 2007, what was the award?", "context": "CREATE TABLE table_name_27 (award VARCHAR, year VARCHAR, result VARCHAR, category VARCHAR)"}, {"answer": "SELECT result FROM table_name_58 WHERE year > 2006 AND nominated_work = \"the king and i\"", "question": "What is the result for the king and I after 2006?", "context": "CREATE TABLE table_name_58 (result VARCHAR, year VARCHAR, nominated_work VARCHAR)"}, {"answer": "SELECT main_colour_s_ FROM table_name_36 WHERE main_sponsor_s_ = \"marlboro\"", "question": "What is the main color(s) for marlboro?", "context": "CREATE TABLE table_name_36 (main_colour_s_ VARCHAR, main_sponsor_s_ VARCHAR)"}, {"answer": "SELECT additional_major_sponsor_s_ FROM table_name_91 WHERE main_colour_s_ = \"red\" AND year > 1991", "question": "What is the additional major sponsor(s) that has red as its main color after 1991?", "context": "CREATE TABLE table_name_91 (additional_major_sponsor_s_ VARCHAR, main_colour_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT name FROM table_name_41 WHERE relationship_with_predecessor_s_ = \"brother of edward viii\"", "question": "Who was the brother of Edward VIII?", "context": "CREATE TABLE table_name_41 (name VARCHAR, relationship_with_predecessor_s_ VARCHAR)"}, {"answer": "SELECT laps FROM table_name_37 WHERE time_retired = \"+ 1:39.591\"", "question": "How many laps are associated with a time of + 1:39.591?", "context": "CREATE TABLE table_name_37 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_31 WHERE grid = 6", "question": "What is the average number of laps for a grid of 6?", "context": "CREATE TABLE table_name_31 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT data FROM table_name_41 WHERE percent_gain = \"28.4%\"", "question": "Name the data with a percent gain of 28.4%", "context": "CREATE TABLE table_name_41 (data VARCHAR, percent_gain VARCHAR)"}, {"answer": "SELECT MIN(swimsuit) FROM table_name_87 WHERE interview < 8.574 AND average > 8.532", "question": "Which smallest swimsuit number's interview was less than 8.574 when the average number was bigger than 8.532?", "context": "CREATE TABLE table_name_87 (swimsuit INTEGER, interview VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(interview) FROM table_name_71 WHERE swimsuit < 9.322 AND evening_gown > 9.259 AND average = 9.321", "question": "Which smallest interview number had a swimsuit stat of less than 9.322, an evening gown score of more than 9.259, and an average number of 9.321?", "context": "CREATE TABLE table_name_71 (interview INTEGER, average VARCHAR, swimsuit VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_45 WHERE state = \"texas\" AND swimsuit > 8.839", "question": "What is the highest mean number for Texas when the swimsuit stat was more than 8.839?", "context": "CREATE TABLE table_name_45 (average INTEGER, state VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT AVG(evening_gown) FROM table_name_32 WHERE average = 8.686", "question": "What is the mean evening gown number when the average is 8.686?", "context": "CREATE TABLE table_name_32 (evening_gown INTEGER, average VARCHAR)"}, {"answer": "SELECT COUNT(evening_gown) FROM table_name_80 WHERE state = \"new jersey\" AND interview < 9.344", "question": "What is the sum number of evening gown stats for New Jersey when the interview was less than 9.344?", "context": "CREATE TABLE table_name_80 (evening_gown VARCHAR, state VARCHAR, interview VARCHAR)"}, {"answer": "SELECT engine_s_ FROM table_name_41 WHERE year = 1991", "question": "What engine was made in 1991?", "context": "CREATE TABLE table_name_41 (engine_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine_s_ FROM table_name_7 WHERE year = 1992", "question": "What engines have the year 1992?", "context": "CREATE TABLE table_name_7 (engine_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_87 WHERE year = 1987", "question": "What chassis has the year 1987?", "context": "CREATE TABLE table_name_87 (chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_2 WHERE chassis = \"lola lc88\"", "question": "What is the average points for the chassis LOLA LC88?", "context": "CREATE TABLE table_name_2 (points INTEGER, chassis VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_39 WHERE location = \"veterans stadium\" AND game > 3 AND time = \"2:21\"", "question": "what is the attendance when the location is veterans stadium, the game is more than 3 and the time is 2:21?", "context": "CREATE TABLE table_name_39 (attendance INTEGER, time VARCHAR, location VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE time = \"2:22\"", "question": "what is the score when the time is 2:22?", "context": "CREATE TABLE table_name_47 (score VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_95 WHERE location = \"memorial stadium\" AND time = \"2:27\"", "question": "how many games have a location of memorial stadium and a time of 2:27?", "context": "CREATE TABLE table_name_95 (game VARCHAR, location VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_59 WHERE date = \"october 16\" AND game > 5", "question": "what is the attendance on the date of october 16 and the game is more than 5?", "context": "CREATE TABLE table_name_59 (attendance INTEGER, date VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_40 WHERE score = \"5 - 0\"", "question": "What was the lowest attendance for a score of  5 - 0?", "context": "CREATE TABLE table_name_40 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE record = \"21-25\"", "question": "On what date was the record 21-25?", "context": "CREATE TABLE table_name_79 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_32 WHERE time_retired = \"+ 4 laps\" AND grid > 20", "question": "I want the total number of Laps for time/retired for + 4 Laps and grid more than 20", "context": "CREATE TABLE table_name_32 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_74 WHERE grid = 9", "question": "I want the average Laps for grid of 9", "context": "CREATE TABLE table_name_74 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT SUM(works_number) FROM table_name_78 WHERE type = \"0-6-4t\" AND date > 1875", "question": "What is the total works number of the locomotive with 0-6-4t type after 1875?", "context": "CREATE TABLE table_name_78 (works_number INTEGER, type VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(works_number) FROM table_name_45 WHERE date > 1875 AND name = \"gowrie\"", "question": "What is the total work number of Gowrie after 1875?", "context": "CREATE TABLE table_name_45 (works_number INTEGER, date VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(works_number) FROM table_name_57 WHERE builder = \"vulcan foundry\" AND name = \"snowdon ranger\"", "question": "What is the average work number of Snowdon Ranger with the builder Vulcan Foundry?", "context": "CREATE TABLE table_name_57 (works_number INTEGER, builder VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(works_number) FROM table_name_51 WHERE type = \"0-6-4t\" AND name = \"gowrie\" AND date > 1908", "question": "What is the total work number of Gowrie with a 0-6-4t type after 1908?", "context": "CREATE TABLE table_name_51 (works_number VARCHAR, date VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE tournament = \"bell atlantic classic\"", "question": "What day was the bell atlantic classic?", "context": "CREATE TABLE table_name_53 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_75 WHERE set_3 = \"15\u20134\" AND set_2 = \"15\u20137\"", "question": "What was the Set 1 game score when Set 3 game score was 15\u20134, and a Set 2 game score was 15\u20137?", "context": "CREATE TABLE table_name_75 (set_1 VARCHAR, set_3 VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT MIN(bodyweight) FROM table_name_84 WHERE snatch < 55", "question": "What lowest Bodyweight has a Snatch smaller than 55?", "context": "CREATE TABLE table_name_84 (bodyweight INTEGER, snatch INTEGER)"}, {"answer": "SELECT bodyweight FROM table_name_18 WHERE total__kg_ = \"145.0\"", "question": "Which bodyweight has a Total (kg) of 145.0?", "context": "CREATE TABLE table_name_18 (bodyweight VARCHAR, total__kg_ VARCHAR)"}, {"answer": "SELECT current_status FROM table_name_66 WHERE livery = \"network south-east\"", "question": "What's the Current Status of Livery of the Network South-East?", "context": "CREATE TABLE table_name_66 (current_status VARCHAR, livery VARCHAR)"}, {"answer": "SELECT number_ & _name FROM table_name_61 WHERE date = 1967", "question": "What's Number & Name listed for the Date 1967?", "context": "CREATE TABLE table_name_61 (number_ VARCHAR, _name VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE away_team = \"collingwood\"", "question": "When was the game at Collingwood?", "context": "CREATE TABLE table_name_59 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_7 WHERE home_team = \"geelong\"", "question": "Where does Geelong play their home game?", "context": "CREATE TABLE table_name_7 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_14 WHERE away_team = \"north melbourne\"", "question": "In which venue was North Melbourne the Away team?", "context": "CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_20 WHERE venue = \"corio oval\"", "question": "What was the home team's score at Corio Oval?", "context": "CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT casualties FROM table_name_33 WHERE sunk_by\u2026 = \"u-125\"", "question": "What were the casualties of the ship sunk by u-125?", "context": "CREATE TABLE table_name_33 (casualties VARCHAR, sunk_by\u2026 VARCHAR)"}, {"answer": "SELECT name FROM table_name_23 WHERE date = \"5 may 1943\" AND nationality = \"united kingdom\" AND sunk_by\u2026 = \"u-266\" AND casualties = \"0\"", "question": "What is the name of the ship sunk on 5 May 1943 from the United Kingdom sunk by an u-266 with 0 casualties?", "context": "CREATE TABLE table_name_23 (name VARCHAR, casualties VARCHAR, sunk_by\u2026 VARCHAR, date VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT loss FROM table_name_59 WHERE record = \"3-10\"", "question": "Who loss the game when the record was 3-10?", "context": "CREATE TABLE table_name_59 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_63 WHERE date = \"april 7\"", "question": "What was the record on April 7?", "context": "CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_58 WHERE declination___j2000__ = \"\u00b003\u203232\u2033\"", "question": "What Object Type has a \u00b003\u203232\u2033 Declination (J2000)?", "context": "CREATE TABLE table_name_58 (object_type VARCHAR, declination___j2000__ VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_27 WHERE right_ascension___j2000__ = \"20h56m40s\"", "question": "What Constellation has a 20h56m40s Right Ascension (J2000)?", "context": "CREATE TABLE table_name_27 (constellation VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_14 WHERE ngc_number < 6995 AND object_type = \"diffuse nebula\" AND declination___j2000__ = \"\u00b042\u203230\u2033\"", "question": "What is the Right Ascension with a Diffuse Nebula Object Type has a \u00b042\u203230\u2033 Declination and a NGC less than 6995?", "context": "CREATE TABLE table_name_14 (right_ascension___j2000__ VARCHAR, declination___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_81 WHERE ngc_number > 6995 AND right_ascension___j2000__ = \"21h01m37.7s\"", "question": "What Object Type has a 21h01m37.7s Right Ascension (J2000) and 6995 or greater NGC?", "context": "CREATE TABLE table_name_81 (object_type VARCHAR, ngc_number VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT AVG(size__steps_) FROM table_name_62 WHERE interval_name = \"minor third\"", "question": "Tell me the average size for minor third", "context": "CREATE TABLE table_name_62 (size__steps_ INTEGER, interval_name VARCHAR)"}, {"answer": "SELECT losing_team FROM table_name_25 WHERE date = \"june 16\"", "question": "Who was the losing team on June 16?", "context": "CREATE TABLE table_name_25 (losing_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE date = \"june 28\"", "question": "What was the score of the game on June 28?", "context": "CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_68 WHERE losing_team = \"marlins\" AND score = \"4-0\"", "question": "Who beat the Marlins with a score of 4-0?", "context": "CREATE TABLE table_name_68 (winning_team VARCHAR, losing_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE venue = \"pro player stadium\" AND score = \"4-1\"", "question": "What is the date of the game at the Pro Player Stadium that had a score of 4-1?", "context": "CREATE TABLE table_name_43 (date VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(peak) FROM table_name_16 WHERE hk_viewers = \"1.97 million\" AND finale > 33", "question": "With 1.97 million HK viewers and a finale more than 33, what was the total number of peaks?", "context": "CREATE TABLE table_name_16 (peak VARCHAR, hk_viewers VARCHAR, finale VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE opponents = \"scottish football league xi\" AND score = \"1-5\"", "question": "When were scottish football league xi the opponents with a score of 1-5?", "context": "CREATE TABLE table_name_11 (date VARCHAR, opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE date = \"17/03/1956\"", "question": "What's the score on 17/03/1956?", "context": "CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_19 WHERE result = \"d\"", "question": "When the result is d, who are the opponents?", "context": "CREATE TABLE table_name_19 (opponents VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_10 WHERE score = \"2-2\"", "question": "What's the result when the score is 2-2?", "context": "CREATE TABLE table_name_10 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_name_39 WHERE score = \"1-0\"", "question": "What's in third place that's going 1-0?", "context": "CREATE TABLE table_name_39 (score VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_name_9 WHERE winners = \"kaizer chiefs\" AND score = \"1-0\"", "question": "Who is in third place when the kaizer chiefs won 1-0?", "context": "CREATE TABLE table_name_9 (winners VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_40 WHERE mixed_doubles = \"wang wei lu ying\"", "question": "Which is the earliest year that had mixed doubles for wang wei lu ying?", "context": "CREATE TABLE table_name_40 (year INTEGER, mixed_doubles VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_34 WHERE 2007 = \"atp masters series\"", "question": "What is the 2011 value that has ATP Masters Series in 2007?", "context": "CREATE TABLE table_name_34 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_62 WHERE 2008 = \"2r\" AND 2012 = \"4r\"", "question": "What is the 2011 value that has a 2r in 2008 and a 4r in 2012?", "context": "CREATE TABLE table_name_62 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_60 WHERE 2007 = \"a\" AND 2010 = \"a\" AND tournament = \"canada masters\"", "question": "What is the 2012 value with an A value in 2007 and A value in 2010 in the Canada Masters?", "context": "CREATE TABLE table_name_60 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_16 WHERE 2011 = \"1r\" AND 2007 = \"a\" AND 2010 = \"1r\" AND 2009 = \"a\"", "question": "What is the 2012 value with 1r in 2011, 2007 of A, 2010 of 1r, and 2009 of A?", "context": "CREATE TABLE table_name_16 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_87 WHERE 2011 = \"nms\"", "question": "What is the 2007 value with NMS in 2011?", "context": "CREATE TABLE table_name_87 (Id VARCHAR)"}, {"answer": "SELECT team FROM table_name_74 WHERE drivers = \"christian fittipaldi\"", "question": "Christian Fittipaldi drove in what team?", "context": "CREATE TABLE table_name_74 (team VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT drivers FROM table_name_34 WHERE races = \"15-20\"", "question": "What driver had a 15-20 record?", "context": "CREATE TABLE table_name_34 (drivers VARCHAR, races VARCHAR)"}, {"answer": "SELECT drivers FROM table_name_28 WHERE engine = \"mercedes ic 108e\" AND races = \"8-10\"", "question": "Who drove a race car with a Mercedes IC 108e engine and has an 8-10 record?", "context": "CREATE TABLE table_name_28 (drivers VARCHAR, engine VARCHAR, races VARCHAR)"}, {"answer": "SELECT races FROM table_name_95 WHERE chassis = \"reynard 2ki\" AND engine = \"honda hrk\"", "question": "Which person drove a Reynard 2ki with a Honda Hrk engine?", "context": "CREATE TABLE table_name_95 (races VARCHAR, chassis VARCHAR, engine VARCHAR)"}, {"answer": "SELECT artist FROM table_name_82 WHERE format = \"12 inch vinyl\" AND single = \"alien rock b/w combat, the remix\"", "question": "What artist had a single called Alien Rock b/w Combat, The Remix on 12 inch Vinyl format?", "context": "CREATE TABLE table_name_82 (artist VARCHAR, format VARCHAR, single VARCHAR)"}, {"answer": "SELECT single FROM table_name_17 WHERE artist = \"cap d\"", "question": "What single was written by the artist cap D?", "context": "CREATE TABLE table_name_17 (single VARCHAR, artist VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE opponent_in_final = \"virginie pichet\"", "question": "What date was the opponent in the final Virginie Pichet?", "context": "CREATE TABLE table_name_46 (date VARCHAR, opponent_in_final VARCHAR)"}, {"answer": "SELECT time FROM table_name_25 WHERE game = 7", "question": "What time was game 7?", "context": "CREATE TABLE table_name_25 (time VARCHAR, game VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_58 WHERE venue = \"lake oval\"", "question": "When the game was played at the Venue of Lake Oval, what was the home team score?", "context": "CREATE TABLE table_name_58 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_3 WHERE venue = \"glenferrie oval\"", "question": "When the Venue was Glenferrie Oval, who is the Away team?", "context": "CREATE TABLE table_name_3 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_46 WHERE away_team = \"north melbourne\"", "question": "When North Melbourne is the Away team, what is the total number of the Crowd?", "context": "CREATE TABLE table_name_46 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_2 WHERE away_team = \"richmond\"", "question": "When Richmond is the Away team, what did they score?", "context": "CREATE TABLE table_name_2 (away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_2 WHERE away_team = \"geelong\"", "question": "When Geelong is the Away team, what did the Home team score?", "context": "CREATE TABLE table_name_2 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT races FROM table_name_36 WHERE poles = \"test driver\" AND team_name = \"lucky strike honda racing f1 team\"", "question": "Which race has a pole of test driver and a team name of Lucky Strike Honda Racing f1 team?", "context": "CREATE TABLE table_name_36 (races VARCHAR, poles VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT poles FROM table_name_90 WHERE season = 2009 AND points = \"test driver\"", "question": "Which pole has a Season of 2009 and points of test driver?", "context": "CREATE TABLE table_name_90 (poles VARCHAR, season VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE margin_of_victory = \"5 strokes\"", "question": "What is the date of the tournament with 5 strokes as the margin of victory?", "context": "CREATE TABLE table_name_62 (date VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_34 WHERE date = \"15 jul 2007\"", "question": "What is the margin of victory of the tournament on 15 Jul 2007?", "context": "CREATE TABLE table_name_34 (margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_82 WHERE winning_score = 70 - 67 - 64 - 71 = 272", "question": "What is the margin of victory of the tournament with a winning score of 70-67-64-71=272?", "context": "CREATE TABLE table_name_82 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_23 WHERE tyres = \"b\" AND chassis = \"tf109\"", "question": "Tell me the average points with tyres of b and chassis of tf109", "context": "CREATE TABLE table_name_23 (points INTEGER, tyres VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_2 WHERE chassis = \"tf103\"", "question": "Tell me the total number of points with chassis of tf103", "context": "CREATE TABLE table_name_2 (points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT partner FROM table_name_61 WHERE outcome = \"runner-up\" AND tournament = \"mons, belgium\"", "question": "Which partners were runner-up in the tournament in Mons, Belgium?", "context": "CREATE TABLE table_name_61 (partner VARCHAR, outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT COUNT(track) FROM table_name_25 WHERE translation = \"brussels\"", "question": "What is the total track that is translated in brussels?", "context": "CREATE TABLE table_name_25 (track VARCHAR, translation VARCHAR)"}, {"answer": "SELECT title FROM table_name_67 WHERE track < 7 AND translation = \"an island\"", "question": "Which title has tracks smaller than 7 with translation of an island?", "context": "CREATE TABLE table_name_67 (title VARCHAR, track VARCHAR, translation VARCHAR)"}, {"answer": "SELECT recorded FROM table_name_84 WHERE translation = \"brussels\"", "question": "What is the record for Brussels translations?", "context": "CREATE TABLE table_name_84 (recorded VARCHAR, translation VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_36 WHERE venue = \"junction oval\"", "question": "What's the largest crowd that attended a game at junction oval?", "context": "CREATE TABLE table_name_36 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_3 WHERE player = \"mark eaton\"", "question": "Who did mark eaton play for?", "context": "CREATE TABLE table_name_3 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_78 WHERE years_for_jazz = \"1982-84\"", "question": "What position did someone play from 1982-84?", "context": "CREATE TABLE table_name_78 (position VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_15 WHERE player = \"jeremy evans\"", "question": "Who does jeremy evans play for?", "context": "CREATE TABLE table_name_15 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_51 WHERE position = \"center\" AND player = \"mark eaton\"", "question": "What nationality is mark eaton, center position?", "context": "CREATE TABLE table_name_51 (nationality VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_81 WHERE school_club_team = \"east carolina\"", "question": "What's the position listed for the east carolina team?", "context": "CREATE TABLE table_name_81 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT home_away FROM table_name_68 WHERE field = \"nickerson field\" AND date = \"july 10\"", "question": "What is the home/away of the game at Nickerson Field at July 10?", "context": "CREATE TABLE table_name_68 (home_away VARCHAR, field VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE opponent = \"pride\" AND home_away = \"away\"", "question": "What is the date of the game away against Pride?", "context": "CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR, home_away VARCHAR)"}, {"answer": "SELECT result FROM table_name_25 WHERE home_away = \"home\" AND date = \"august 14\"", "question": "What is the result of the home game on August 14?", "context": "CREATE TABLE table_name_25 (result VARCHAR, home_away VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE opponent = \"lizards\" AND result = \"w 18-17\"", "question": "What is the date of the game against the Lizards with a result of w 18-17?", "context": "CREATE TABLE table_name_18 (date VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT field FROM table_name_7 WHERE date = \"july 22\"", "question": "What is the field of the game on July 22?", "context": "CREATE TABLE table_name_7 (field VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_57 WHERE marriage = \"disputed\"", "question": "Who had a disputed marriage?", "context": "CREATE TABLE table_name_57 (name VARCHAR, marriage VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE visitor = \"colorado\" AND date = \"october 25\"", "question": "On October 25, when the visitor was Colorado, what is the score?", "context": "CREATE TABLE table_name_64 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT richmond_[staten_is] FROM table_name_90 WHERE the_bronx = \"181,639\"", "question": "How many voters were in Manhattan when 181,639 people voted in the Bronx?", "context": "CREATE TABLE table_name_90 (richmond_ VARCHAR, staten_is VARCHAR, the_bronx VARCHAR)"}, {"answer": "SELECT brooklyn FROM table_name_53 WHERE richmond_[staten_is] = \"2,293\"", "question": "When Richmond had a total count of 2,293, what was the total count of Brooklyn?", "context": "CREATE TABLE table_name_53 (brooklyn VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)"}, {"answer": "SELECT AVG(earnings___) AS $__ FROM table_name_96 WHERE country = \"united states\" AND wins < 2 AND rank > 3", "question": "What is the average earnings of the player from the United States with a win smaller than 2 and a rank larger than 3?", "context": "CREATE TABLE table_name_96 (earnings___ INTEGER, rank VARCHAR, country VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(events) FROM table_name_55 WHERE player = \"al geiberger\" AND wins < 1", "question": "What is the average events that Al Geiberger played with wins smaller than 1?", "context": "CREATE TABLE table_name_55 (events INTEGER, player VARCHAR, wins VARCHAR)"}, {"answer": "SELECT rank FROM table_name_65 WHERE events = 31", "question": "What is the rank where the events is 31?", "context": "CREATE TABLE table_name_65 (rank VARCHAR, events VARCHAR)"}, {"answer": "SELECT COUNT(events) FROM table_name_42 WHERE player = \"al geiberger\" AND earnings___$__ > 527 OFFSET 033", "question": "What is the total number of events that Al Geiberger has played with earnings larger than 527,033?", "context": "CREATE TABLE table_name_42 (events VARCHAR, player VARCHAR, earnings___$__ VARCHAR)"}, {"answer": "SELECT AVG(events) FROM table_name_11 WHERE rank < 2 AND wins < 5", "question": "What is the average events where the rank is smaller than 2 and wins are smaller than 5?", "context": "CREATE TABLE table_name_11 (events INTEGER, rank VARCHAR, wins VARCHAR)"}, {"answer": "SELECT home FROM table_name_32 WHERE visitor = \"phoenix\"", "question": "Who did team phoenix visit in their home?", "context": "CREATE TABLE table_name_32 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_80 WHERE location = \"las vegas, nevada, united states\" AND event = \"wec 25\"", "question": "What is the highest round in the Wec 25 match in Las Vegas, Nevada, United States?", "context": "CREATE TABLE table_name_80 (round INTEGER, location VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_9 WHERE round = 1 AND record = \"6-2\"", "question": "What event had 1 round and a record of 6-2?", "context": "CREATE TABLE table_name_9 (event VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT school FROM table_name_71 WHERE round > 3 AND player = \"jason odom\"", "question": "Which school has more than 3 rounds with jason odom?", "context": "CREATE TABLE table_name_71 (school VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(evening_gown) FROM table_name_25 WHERE swimsuit = 7.24 AND interview > 7.97", "question": "Name the least evening gown for interview more than 7.97 and swimsui of 7.24", "context": "CREATE TABLE table_name_25 (evening_gown INTEGER, swimsuit VARCHAR, interview VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_86 WHERE player = \"mattias modig\"", "question": "What is the nationality of Mattias Modig?", "context": "CREATE TABLE table_name_86 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_52 WHERE home_team = \"st kilda\"", "question": "In the game where the home team was St Kilda, what was the attendance?", "context": "CREATE TABLE table_name_52 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_22 WHERE venue = \"mcg\"", "question": "In the game with the venue of mcg, what was the attendance?", "context": "CREATE TABLE table_name_22 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_24 WHERE venue = \"junction oval\"", "question": "In the game that took place at junction oval, how much did the home team score?", "context": "CREATE TABLE table_name_24 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_22 WHERE home = \"seattle\"", "question": "Who was the visiting team when the home team was Seattle?", "context": "CREATE TABLE table_name_22 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_63 WHERE date = \"12 march 2008\"", "question": "What was the record on 12 march 2008?", "context": "CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_83 WHERE date = \"27 march 2008\"", "question": "Who was the home team on 27 march 2008?", "context": "CREATE TABLE table_name_83 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE visitor = \"mavericks\"", "question": "What was the score when the mavericks were visitors?", "context": "CREATE TABLE table_name_23 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_name_97 WHERE stadium = \"alberto picco\"", "question": "How many people attended games at alberto picco stadium?", "context": "CREATE TABLE table_name_97 (capacity VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT team FROM table_name_59 WHERE home_city = \"terni\"", "question": "What team is from terni?", "context": "CREATE TABLE table_name_59 (team VARCHAR, home_city VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_82 WHERE visitor = \"toronto\"", "question": "What is the total attendance of the game with Toronto as the visitor team?", "context": "CREATE TABLE table_name_82 (attendance VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT position FROM table_name_26 WHERE player = \"tim barnett\"", "question": "What position does tim barnett play?", "context": "CREATE TABLE table_name_26 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(number_of_seasons_in_top_division) FROM table_name_48 WHERE position_in_2012_13 = \"009 9th\" AND number_of_seasons_in_the_premier_league < 3", "question": "I want the sum of number of seasons in top division for position in 2012-13 of 009 9th and number of seasons in premier league less than 3", "context": "CREATE TABLE table_name_48 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR, number_of_seasons_in_the_premier_league VARCHAR)"}, {"answer": "SELECT COUNT(tons) FROM table_name_14 WHERE nationality = \"norway\"", "question": "How many tons was the ship from norway?", "context": "CREATE TABLE table_name_14 (tons VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_43 WHERE venue = \"glenferrie oval\"", "question": "How many people were in attendance at Glenferrie Oval?", "context": "CREATE TABLE table_name_43 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_82 WHERE venue = \"brunswick street oval\"", "question": "What was the away team score at Brunswick Street Oval?", "context": "CREATE TABLE table_name_82 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_20 WHERE away_team = \"melbourne\"", "question": "What was Melbourne's away team score?", "context": "CREATE TABLE table_name_20 (away_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_42 WHERE player = \"adam keefe\"", "question": "What is Adam Keefe's nationality?", "context": "CREATE TABLE table_name_42 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_8 WHERE school_club_team = \"stanford\"", "question": "Who is the player who went to Stanford?", "context": "CREATE TABLE table_name_8 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_name_12 WHERE position = \"combo forward\"", "question": "What are the years on the Jazz for the player who is a combo forward?", "context": "CREATE TABLE table_name_12 (years_for_jazz VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(interview) FROM table_name_97 WHERE state = \"new york\" AND swimsuit < 9.394", "question": "What is the total for the state of new york and a swimsuit less than 9.394?", "context": "CREATE TABLE table_name_97 (interview INTEGER, state VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT MAX(interview) FROM table_name_98 WHERE swimsuit < 8.838", "question": "What is the greatest interview that has a swimsuit less than 8.838?", "context": "CREATE TABLE table_name_98 (interview INTEGER, swimsuit INTEGER)"}, {"answer": "SELECT MIN(average) FROM table_name_15 WHERE swimsuit < 8.966 AND state = \"west virginia\" AND evening_gown < 8.711", "question": "What is the lowest average that has a swimsuit less than 8.966, for west virginia and an evening gown less than 8.711?", "context": "CREATE TABLE table_name_15 (average INTEGER, evening_gown VARCHAR, swimsuit VARCHAR, state VARCHAR)"}, {"answer": "SELECT MIN(swimsuit) FROM table_name_47 WHERE evening_gown > 8.794 AND state = \"illinois\"", "question": "What is the lowest swimsuit that has an evening gown bigger than 8.794 for illinois?", "context": "CREATE TABLE table_name_47 (swimsuit INTEGER, evening_gown VARCHAR, state VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE score = \"3-0\" AND year = 2011", "question": "What day was the score 3-0 after 2011?", "context": "CREATE TABLE table_name_88 (date VARCHAR, score VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE result = \"win\" AND score = \"2-1\" AND year < 2012", "question": "What day was the result a win, the score 2-1, and the year before 2012?", "context": "CREATE TABLE table_name_7 (date VARCHAR, year VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(floors) FROM table_name_96 WHERE location = \"stockholm\" AND rank = \"15\"", "question": "What is the highest amount of floors in Stockholm with a rank of 15?", "context": "CREATE TABLE table_name_96 (floors INTEGER, location VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_3 WHERE name = \"skanskaskrapan\"", "question": "What is the rank of Skanskaskrapan?", "context": "CREATE TABLE table_name_3 (rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT rank FROM table_name_52 WHERE name = \"point hyllie\"", "question": "What is the rank of Point Hyllie?", "context": "CREATE TABLE table_name_52 (rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_9 WHERE gold = 2 AND rank > 2", "question": "How many bronzes for the nation with 2 golds and ranked below 2?", "context": "CREATE TABLE table_name_9 (bronze INTEGER, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT decision FROM table_name_12 WHERE home = \"montreal\"", "question": "What was the decision when montreal was at home?", "context": "CREATE TABLE table_name_12 (decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE record = \"17\u201324\u20135\"", "question": "What day is the team 17\u201324\u20135?", "context": "CREATE TABLE table_name_59 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_43 WHERE decision = \"leclaire\" AND date = \"november 14\"", "question": "Who was the visitor on november 14 with leclaire recording the decision?", "context": "CREATE TABLE table_name_43 (visitor VARCHAR, decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE visitor = \"st. louis\"", "question": "What day was St. Louis the visitor?", "context": "CREATE TABLE table_name_85 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT club_team FROM table_name_98 WHERE nationality = \"united states\" AND overall < 142", "question": "What club team is the United States player with an overall pick smaller than 142 from?", "context": "CREATE TABLE table_name_98 (club_team VARCHAR, nationality VARCHAR, overall VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_53 WHERE ngc_number > 6357 AND declination___j2000__ = \"\u00b045\u203234\u2033\"", "question": "Which object type had an NGC number greater than 6357 and a declination (J2000) of \u00b045\u203234\u2033?", "context": "CREATE TABLE table_name_53 (object_type VARCHAR, ngc_number VARCHAR, declination___j2000__ VARCHAR)"}, {"answer": "SELECT declination___j2000__ FROM table_name_53 WHERE constellation = \"scorpius\" AND object_type = \"planetary nebula\"", "question": "For the constellation scorpius and object of planetary nebula, what was the declination (J2000)?", "context": "CREATE TABLE table_name_53 (declination___j2000__ VARCHAR, constellation VARCHAR, object_type VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_48 WHERE theme = \"red maple\" AND mintage > 15 OFFSET 000", "question": "What is the earliest year a red maple had a mintage over 15,000?", "context": "CREATE TABLE table_name_48 (year INTEGER, theme VARCHAR, mintage VARCHAR)"}, {"answer": "SELECT issue_price FROM table_name_89 WHERE year < 2006 AND theme = \"voyageur\"", "question": "What is the issue price of a voyageur before 2006?", "context": "CREATE TABLE table_name_89 (issue_price VARCHAR, year VARCHAR, theme VARCHAR)"}, {"answer": "SELECT mintage FROM table_name_1 WHERE theme = \"cowboy\"", "question": "How many cowboy coins were minted?", "context": "CREATE TABLE table_name_1 (mintage VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_5 WHERE away_team = \"south melbourne\"", "question": "What was the attendance of the South Melbourne away game?", "context": "CREATE TABLE table_name_5 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_55 WHERE home_team = \"carlton\"", "question": "What was the opponents score when Carlton played at home?", "context": "CREATE TABLE table_name_55 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_39 WHERE venue = \"mcg\"", "question": "Who was the home team at MCG?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT hdd_capacity FROM table_name_7 WHERE _number_fdd > 0 AND fdd_capacity__each_ = \"710kb\"", "question": "Tell me the HDD capacity for # FDD larger than 0 when FDD capacity is 710kb", "context": "CREATE TABLE table_name_7 (hdd_capacity VARCHAR, _number_fdd VARCHAR, fdd_capacity__each_ VARCHAR)"}, {"answer": "SELECT hp_model FROM table_name_68 WHERE _number_hdd = 1 AND sides = \"ds\"", "question": "I want to know the HP model with a #HDD of 1 of sides of ds", "context": "CREATE TABLE table_name_68 (hp_model VARCHAR, _number_hdd VARCHAR, sides VARCHAR)"}, {"answer": "SELECT command_set FROM table_name_35 WHERE fdd_capacity__each_ = \"270kb\" AND sides = \"ds\" AND _number_fdd > 1", "question": "Tell me the command set with FDD capacity of 270kb and sides of ds with #FDD more than 1", "context": "CREATE TABLE table_name_35 (command_set VARCHAR, _number_fdd VARCHAR, fdd_capacity__each_ VARCHAR, sides VARCHAR)"}, {"answer": "SELECT AVG(foundation) FROM table_name_73 WHERE official_name_in_malay = \"politeknik pagoh\"", "question": "what was the foundation of Politeknik Pagoh?", "context": "CREATE TABLE table_name_73 (foundation INTEGER, official_name_in_malay VARCHAR)"}, {"answer": "SELECT total_viewers FROM table_name_12 WHERE share < 8", "question": "When the shares were less than 8, how many total viewers were there?", "context": "CREATE TABLE table_name_12 (total_viewers VARCHAR, share INTEGER)"}, {"answer": "SELECT MIN(crowd) FROM table_name_92 WHERE home_team = \"north melbourne\"", "question": "What is the lowest crowd when North Melbourne played at home?", "context": "CREATE TABLE table_name_92 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_42 WHERE crowd > 25 OFFSET 000", "question": "Which home team has a crowd larger than 25,000?", "context": "CREATE TABLE table_name_42 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT driver FROM table_name_84 WHERE grid < 10 AND laps < 70", "question": "What driver has a grid of under 10, and under 70 laps?", "context": "CREATE TABLE table_name_84 (driver VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_42 WHERE grid = 3", "question": "How many total laps for a grid of 3?", "context": "CREATE TABLE table_name_42 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_70 WHERE driver = \"giorgio pantano\"", "question": "What is the average grid for giorgio pantano?", "context": "CREATE TABLE table_name_70 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT year_10_6th_quad FROM table_name_7 WHERE open_2nd_viii = \"acgs\" AND year_11_2nd_viii = \"nc\"", "question": "What is the Year 10 6th Quads for the Open 2nd VIII of ACGS and a Year 11 2nd VIII NC?", "context": "CREATE TABLE table_name_7 (year_10_6th_quad VARCHAR, open_2nd_viii VARCHAR, year_11_2nd_viii VARCHAR)"}, {"answer": "SELECT year_10_5th_quad FROM table_name_16 WHERE open_1st_viii = \"nc\" AND year_10_3rd_quad = \"nc\"", "question": "What is the Year 10 5th Quads with NC as Open 1st VIII and NC as a Year 10 3rd Quads?", "context": "CREATE TABLE table_name_16 (year_10_5th_quad VARCHAR, open_1st_viii VARCHAR, year_10_3rd_quad VARCHAR)"}, {"answer": "SELECT open_1st_viii FROM table_name_76 WHERE crew = 2012", "question": "What is the Open 1st VIII for the 2012 crew?", "context": "CREATE TABLE table_name_76 (open_1st_viii VARCHAR, crew VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_26 WHERE opponent = \"brewers\" AND date = \"july 25\"", "question": "On July 25 what is the lowest attendance with the Brewers as the opponent?", "context": "CREATE TABLE table_name_26 (attendance INTEGER, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_46 WHERE team = \"orlando\"", "question": "Tell me the high assists for orlando", "context": "CREATE TABLE table_name_46 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT friday FROM table_name_34 WHERE sunday = \"alice levine jamie east\"", "question": "Who was the presenter on Friday of the series in which Alice Levine Jamie East presented on Sunday?", "context": "CREATE TABLE table_name_34 (friday VARCHAR, sunday VARCHAR)"}, {"answer": "SELECT series FROM table_name_60 WHERE saturday = \"alice levine jamie east\"", "question": "In what series did Alice Levine Jamie East give a presentation on Saturday?", "context": "CREATE TABLE table_name_60 (series VARCHAR, saturday VARCHAR)"}, {"answer": "SELECT thursday FROM table_name_15 WHERE wednesday = \"emma willis\" AND sunday = \"alice levine jamie east\"", "question": "Who was the presenter on Thursday of the series in which Emma Willis was the presenter on Wednesday, and Alice Levine Jamie East was the presenter on Sunday?", "context": "CREATE TABLE table_name_15 (thursday VARCHAR, wednesday VARCHAR, sunday VARCHAR)"}, {"answer": "SELECT sunday FROM table_name_79 WHERE friday = \"emma willis jamie east\"", "question": "On the series in which Emma Willis Jamie East presented on Friday, who was the presenter on Sunday?", "context": "CREATE TABLE table_name_79 (sunday VARCHAR, friday VARCHAR)"}, {"answer": "SELECT monday FROM table_name_45 WHERE sunday = \"alice levine jamie east\" AND series = \"big brother 13\"", "question": "Who was the presenter on Monday of \"Big Brother 13\" in which Alice Levine Jamie East presented on Sunday?", "context": "CREATE TABLE table_name_45 (monday VARCHAR, sunday VARCHAR, series VARCHAR)"}, {"answer": "SELECT birth_state FROM table_name_43 WHERE election_year < 1848", "question": "What state was the president who was elected earlier than 1848 born in?", "context": "CREATE TABLE table_name_43 (birth_state VARCHAR, election_year INTEGER)"}, {"answer": "SELECT resident_state FROM table_name_83 WHERE election_year = 1864", "question": "What is the resident state for the president elected in 1864?", "context": "CREATE TABLE table_name_83 (resident_state VARCHAR, election_year VARCHAR)"}, {"answer": "SELECT AVG(election_year) FROM table_name_61 WHERE birth_state = \"lost connecticut\"", "question": "What is the election year of the president with a Birth State of lost connecticut?", "context": "CREATE TABLE table_name_61 (election_year INTEGER, birth_state VARCHAR)"}, {"answer": "SELECT icao FROM table_name_63 WHERE iata = \"ath\"", "question": "Which ICAO's IATA is ath?", "context": "CREATE TABLE table_name_63 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT country FROM table_name_5 WHERE city = \"sendai\"", "question": "Which country's city is Sendai?", "context": "CREATE TABLE table_name_5 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT icao FROM table_name_96 WHERE city = \"manchester\"", "question": "Which ICAO's city is Manchester?", "context": "CREATE TABLE table_name_96 (icao VARCHAR, city VARCHAR)"}, {"answer": "SELECT airport FROM table_name_20 WHERE country = \"saudi arabia\" AND icao = \"oejn\"", "question": "Which airport is in Saudi Arabia when the ICAO is oejn?", "context": "CREATE TABLE table_name_20 (airport VARCHAR, country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT iata FROM table_name_17 WHERE icao = \"rjss\"", "question": "Which IATA's ICAO is rjss?", "context": "CREATE TABLE table_name_17 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT country FROM table_name_21 WHERE airport = \"adelaide airport\"", "question": "Which country features Adelaide Airport?", "context": "CREATE TABLE table_name_21 (country VARCHAR, airport VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_8 WHERE grid = 8", "question": "What is the mean number of laps when the grid was 8?", "context": "CREATE TABLE table_name_8 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_5 WHERE time = \"+31.982\"", "question": "What is the largest lap number when the time was +31.982?", "context": "CREATE TABLE table_name_5 (laps INTEGER, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_93 WHERE bike = \"ducati 999 f06\" AND grid = 15", "question": "What time was there when the bike was Ducati 999 F06 and the grid number was 15?", "context": "CREATE TABLE table_name_93 (time VARCHAR, bike VARCHAR, grid VARCHAR)"}, {"answer": "SELECT network FROM table_name_30 WHERE korean_title = \"mbc \ubca0\uc2a4\ud2b8\uadf9\uc7a5 - \uc791\uc740 \ub3c4\ub451\"", "question": "What network is the Korean title of mbc \ubca0\uc2a4\ud2b8\uadf9\uc7a5 - \uc791\uc740 \ub3c4\ub451 on?", "context": "CREATE TABLE table_name_30 (network VARCHAR, korean_title VARCHAR)"}, {"answer": "SELECT surface FROM table_name_1 WHERE opponents_in_the_final = \"kathleen horvath marcella mesker\"", "question": "On what surface was the tournament with opponents kathleen horvath marcella mesker in the finals?", "context": "CREATE TABLE table_name_1 (surface VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE score_in_the_final = \"3\u20136, 6\u20133, 6\u20134\" AND opponents_in_the_final = \"penny barg paula smith\"", "question": "What is the date of the final that has a score of 3\u20136, 6\u20133, 6\u20134 and penny barg paula smith was the opponent?", "context": "CREATE TABLE table_name_98 (date VARCHAR, score_in_the_final VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_12 WHERE venue = \"vfl park\"", "question": "How many people attended games at vfl park?", "context": "CREATE TABLE table_name_12 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_80 WHERE away_team = \"geelong\"", "question": "Who is the home side when geelong is the away side?", "context": "CREATE TABLE table_name_80 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT pick FROM table_name_68 WHERE college = \"far eastern / psba\"", "question": "Which Pick has the College named Far Eastern / PSBA?", "context": "CREATE TABLE table_name_68 (pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE away_team = \"hawthorn\"", "question": "When did Hawthorn play as the away team?", "context": "CREATE TABLE table_name_95 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_41 WHERE home_team = \"footscray\"", "question": "Which team played Footscray?", "context": "CREATE TABLE table_name_41 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_24 WHERE home_team = \"north melbourne\"", "question": "How many were in the crowd when North Melbourne was the home team?", "context": "CREATE TABLE table_name_24 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_54 WHERE home_team = \"essendon\"", "question": "Tell me the home team score for essendon", "context": "CREATE TABLE table_name_54 (home_team VARCHAR)"}, {"answer": "SELECT host_interface FROM table_name_34 WHERE digital = \"dvb-t (cx22702)\" AND model = \"nova-t pci (90002)\"", "question": "Tell me the Host interface for digital of dvb-t (cx22702) and model of nova-t pci (90002)", "context": "CREATE TABLE table_name_34 (host_interface VARCHAR, digital VARCHAR, model VARCHAR)"}, {"answer": "SELECT model FROM table_name_7 WHERE digital = \"dvb-t (cx22702)\" AND tuner = \"thomson dtt75105\"", "question": "I want the model for digital of dvb-t (cx22702) and tuner of thomson dtt75105", "context": "CREATE TABLE table_name_7 (model VARCHAR, digital VARCHAR, tuner VARCHAR)"}, {"answer": "SELECT type FROM table_name_89 WHERE host_interface = \"pci saa7146 tmx320av7111\"", "question": "I want the type for host interface of pci saa7146 tmx320av7111", "context": "CREATE TABLE table_name_89 (type VARCHAR, host_interface VARCHAR)"}, {"answer": "SELECT tuner FROM table_name_32 WHERE type = \"hybrid video recorder\" AND digital = \"dvb-t (zl10353)\" AND model = \"hvr-900\"", "question": "I want the tuner for hybrid video recorder and Digital of dvb-t (zl10353), and a Model of hvr-900", "context": "CREATE TABLE table_name_32 (tuner VARCHAR, model VARCHAR, type VARCHAR, digital VARCHAR)"}, {"answer": "SELECT digital FROM table_name_91 WHERE tuner = \"thomson dtt75105\"", "question": "Tell me the digital for tuner of thomson dtt75105", "context": "CREATE TABLE table_name_91 (digital VARCHAR, tuner VARCHAR)"}, {"answer": "SELECT COUNT(opening_weekend_net_gross) FROM table_name_82 WHERE year > 2012 AND rank = 1", "question": "What's the Total number of Opening Weekend Net Gross that occured after the year 2012 with a Rank of 1?", "context": "CREATE TABLE table_name_82 (opening_weekend_net_gross VARCHAR, year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT studio_s_ FROM table_name_22 WHERE year = 2012 AND movie = \"dabangg\"", "question": "Which Studio has the Year of 2012 listed and the Movie, Dabangg?", "context": "CREATE TABLE table_name_22 (studio_s_ VARCHAR, year VARCHAR, movie VARCHAR)"}, {"answer": "SELECT SUM(opening_weekend_net_gross) FROM table_name_8 WHERE studio_s_ = \"utv motion pictures\"", "question": "What's the sum of Opening Weekend Net Gross at the Studio of UTV Motion Pictures?", "context": "CREATE TABLE table_name_8 (opening_weekend_net_gross INTEGER, studio_s_ VARCHAR)"}, {"answer": "SELECT SUM(evening_gown) FROM table_name_96 WHERE state = \"kansas\" AND interview < 9.357", "question": "What is the number for evening gown in kansas with less than 9.357 interviews?", "context": "CREATE TABLE table_name_96 (evening_gown INTEGER, state VARCHAR, interview VARCHAR)"}, {"answer": "SELECT state FROM table_name_26 WHERE swimsuit < 8.874 AND evening_gown < 9.257 AND interview < 9.121", "question": "What state had less than 8.874 for swimsuit, less than 9.257 for evening gown, and less than 9.121 for interview?", "context": "CREATE TABLE table_name_26 (state VARCHAR, interview VARCHAR, swimsuit VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_name_93 WHERE interview < 8.808", "question": "What is the number for swimsuit when the interview number is less than 8.808?", "context": "CREATE TABLE table_name_93 (swimsuit VARCHAR, interview INTEGER)"}, {"answer": "SELECT SUM(swimsuit) FROM table_name_25 WHERE evening_gown > 9.257 AND interview = 9.357", "question": "What is the number for swimsuit when the evening gown number is larger than 9.257 and the interview number is 9.357?", "context": "CREATE TABLE table_name_25 (swimsuit INTEGER, evening_gown VARCHAR, interview VARCHAR)"}, {"answer": "SELECT MAX(evening_gown) FROM table_name_94 WHERE state = \"north carolina\" AND interview < 9.214", "question": "What is the highest evening gown number in North Carolina with less than 9.214 interviews?", "context": "CREATE TABLE table_name_94 (evening_gown INTEGER, state VARCHAR, interview VARCHAR)"}, {"answer": "SELECT location FROM table_name_90 WHERE time = \"1:54:21\"", "question": "At what location was the time 1:54:21?", "context": "CREATE TABLE table_name_90 (location VARCHAR, time VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_14 WHERE country_state = \"united kingdom\"", "question": "Which Athlete is from the United Kingdom?", "context": "CREATE TABLE table_name_14 (athlete VARCHAR, country_state VARCHAR)"}, {"answer": "SELECT country_state FROM table_name_68 WHERE location = \"des moines\" AND year = 2011", "question": "Which country had des moines as the location in 2011?", "context": "CREATE TABLE table_name_68 (country_state VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT time FROM table_name_14 WHERE year = 2009", "question": "What was the time for 2009?", "context": "CREATE TABLE table_name_14 (time VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE date = \"june 29\"", "question": "Who was the opponent on June 29?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_30 WHERE 2008 = \"lq\" AND 2011 = \"2r\"", "question": "What was the 2010 result for a 2008 result of LQ and 2011 result of 2R?", "context": "CREATE TABLE table_name_30 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_47 WHERE 2009 = \"2r\" AND 2008 = \"1r\"", "question": "What was the 2007 result for a 2008 result of 1R and 2009 result of 2R?", "context": "CREATE TABLE table_name_47 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_87 WHERE 2010 = \"a\"", "question": "Which tournament had a 2010 result of A?", "context": "CREATE TABLE table_name_87 (tournament VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_66 WHERE player = \"bill bray\"", "question": "Which pick was Bill Bray?", "context": "CREATE TABLE table_name_66 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT school FROM table_name_50 WHERE team = \"minnesota twins\" AND position = \"ss\"", "question": "From which school did the Minnesota Twins SS come from?", "context": "CREATE TABLE table_name_50 (school VARCHAR, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_39 WHERE venue = \"kardinia park\"", "question": "When playing at the Kardinia Park; what was the home teams score?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_50 WHERE away_team = \"essendon\"", "question": "When Essendon played away; where did they play?", "context": "CREATE TABLE table_name_50 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT termini FROM table_name_19 WHERE direction = \"east west\" AND remarks = \"replaced by us 59\"", "question": "What is the terminini of the highway with an east west direction and remarks that it was replaced by us 59?", "context": "CREATE TABLE table_name_19 (termini VARCHAR, direction VARCHAR, remarks VARCHAR)"}, {"answer": "SELECT length FROM table_name_57 WHERE route_name = \"sh 2\"", "question": "What is the length of the highway with the route name sh 2?", "context": "CREATE TABLE table_name_57 (length VARCHAR, route_name VARCHAR)"}, {"answer": "SELECT length FROM table_name_28 WHERE remarks = \"replaced by lp 20\"", "question": "What is the length of the highway with remarks that it was replaced by lp 20?", "context": "CREATE TABLE table_name_28 (length VARCHAR, remarks VARCHAR)"}, {"answer": "SELECT length FROM table_name_77 WHERE remarks = \"replaced by bsi-35\"", "question": "What is the length of the highway with remarks that it was replaced by bsi-35?", "context": "CREATE TABLE table_name_77 (length VARCHAR, remarks VARCHAR)"}, {"answer": "SELECT length FROM table_name_25 WHERE junctions = \"i-35 us 83\" AND route_name = \"us 83 bus.\"", "question": "What is the length of the highway with junctions i-35 us 83 and named us 83 bus.?", "context": "CREATE TABLE table_name_25 (length VARCHAR, junctions VARCHAR, route_name VARCHAR)"}, {"answer": "SELECT college FROM table_name_60 WHERE team = \"chicago stags\"", "question": "What college has the Chicago Stags?", "context": "CREATE TABLE table_name_60 (college VARCHAR, team VARCHAR)"}, {"answer": "SELECT college FROM table_name_78 WHERE team = \"chicago stags\" AND position = \"g\"", "question": "What college has the Chicago stags and position is G?", "context": "CREATE TABLE table_name_78 (college VARCHAR, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_58 WHERE position = \"g\" AND team = \"washington capitols\"", "question": "What is the name of the player with position of G and the team was the Washington Capitols?", "context": "CREATE TABLE table_name_58 (player VARCHAR, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_inauguration FROM table_name_78 WHERE length_of_retirement = \"00,624 days\"", "question": "What is the date of the inauguration with a Length of retirement of 00,624 days?", "context": "CREATE TABLE table_name_78 (date_of_inauguration VARCHAR, length_of_retirement VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_66 WHERE gold > 1", "question": "What largest bronze number has a gold number that is bigger than 1?", "context": "CREATE TABLE table_name_66 (bronze INTEGER, gold INTEGER)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_86 WHERE rank < 2 AND gold < 1", "question": "What is the sum number of bronzes when the rank is less than 2 and the gold is less than 1?", "context": "CREATE TABLE table_name_86 (bronze VARCHAR, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_37 WHERE bronze < 1 AND silver = 1 AND total > 1", "question": "Which of the largest ranks has a bronze number less than 1, a silver of 1, and a total that is more than 1?", "context": "CREATE TABLE table_name_37 (rank INTEGER, total VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(average) FROM table_name_21 WHERE state = \"south carolina\" AND interview < 9.626", "question": "What is the Average for South Carolina with an Interview less than 9.626?", "context": "CREATE TABLE table_name_21 (average INTEGER, state VARCHAR, interview VARCHAR)"}, {"answer": "SELECT MAX(interview) FROM table_name_77 WHERE average > 9.324 AND state = \"louisiana\"", "question": "What is the highest interview for Louisiana with an average above 9.324?", "context": "CREATE TABLE table_name_77 (interview INTEGER, average VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_43 WHERE away_team = \"carlton\"", "question": "How many people were in the crowd when Carlton was the away team?", "context": "CREATE TABLE table_name_43 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE home_team = \"essendon\"", "question": "What was the date when the home team was Essendon?", "context": "CREATE TABLE table_name_9 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_63 WHERE venue = \"mcg\"", "question": "What was the away score at the game at MCG?", "context": "CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_68 WHERE series__number = 99", "question": "Who wrote series number 99?", "context": "CREATE TABLE table_name_68 (written_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_name_85 WHERE series__number > 78 AND written_by = \"jenee v. giles\"", "question": "What was the original air date of a series number after 78, written by Jenee V. Giles?", "context": "CREATE TABLE table_name_85 (original_air_date VARCHAR, series__number VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_53 WHERE sport = \"tennis\" AND bronze < 2", "question": "When tennis has less than 2 bronze, what is the total number of Gold?", "context": "CREATE TABLE table_name_53 (gold VARCHAR, sport VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_28 WHERE bronze = 2 AND sport = \"volleyball\"", "question": "When volleyball has 2 bronze, what is the total number of silver?", "context": "CREATE TABLE table_name_28 (silver VARCHAR, bronze VARCHAR, sport VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_2 WHERE total > 2 AND gold = 0 AND sport = \"athletics\"", "question": "When athletics has a total more than 2 and 0 gold, what is the total number of bronze?", "context": "CREATE TABLE table_name_2 (bronze VARCHAR, sport VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_44 WHERE attendance > 65 OFFSET 042", "question": "Which is the most recent game with an attendance larger than 65,042?", "context": "CREATE TABLE table_name_44 (game INTEGER, attendance INTEGER)"}, {"answer": "SELECT name FROM table_name_43 WHERE order < 997 AND goals > 5 AND games = 215", "question": "Which name has an Order smaller than 997,more than 5 goals, and 215 games?", "context": "CREATE TABLE table_name_43 (name VARCHAR, games VARCHAR, order VARCHAR, goals VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_94 WHERE order = 1006 AND goals > 192", "question": "How many games have an Order of 1006, and Goals larger than 192?", "context": "CREATE TABLE table_name_94 (games INTEGER, order VARCHAR, goals VARCHAR)"}, {"answer": "SELECT games FROM table_name_5 WHERE order > 975 AND seasons = \"2005 \u2013 2007\" AND goals = 46", "question": "Which game has an order larger than 975, Seasons of 2005 \u2013 2007, and 46 goals?", "context": "CREATE TABLE table_name_5 (games VARCHAR, goals VARCHAR, order VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_66 WHERE venue = \"annecy, france\"", "question": "What is the latest year in Annecy, France?", "context": "CREATE TABLE table_name_66 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_61 WHERE driver = \"ivan capelli\"", "question": "What's the Time/Retired of Ivan Capelli?", "context": "CREATE TABLE table_name_61 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_96 WHERE score = \"3 \u2013 2\" AND date = \"january 10\"", "question": "How many people attended the game on january 10 with a Score of 3 \u2013 2?", "context": "CREATE TABLE table_name_96 (attendance VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_23 WHERE record = \"21\u201322\u20132\"", "question": "How many attended the game with a Record of 21\u201322\u20132?", "context": "CREATE TABLE table_name_23 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_25 WHERE decision = \"lehtonen\" AND visitor = \"atlanta\" AND home = \"ny rangers\"", "question": "What is the team's record when the NY rangers are at home with atlanta visting and lehtonen getting the decision?", "context": "CREATE TABLE table_name_25 (record VARCHAR, home VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_75 WHERE laps < 23 AND grid > 23", "question": "What was the time/retired for the driver with fewer than 23 laps and grid larger than 23?", "context": "CREATE TABLE table_name_75 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_34 WHERE manufacturer = \"aprilia\" AND rider = \"jorge lorenzo\" AND grid > 1", "question": "How many laps by Jorge Lorenzo on the Aprilia with a grid bigger than 1?", "context": "CREATE TABLE table_name_34 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT venue FROM table_name_30 WHERE date = \"march 11, 1999\"", "question": "Where was the game on March 11, 1999 played?", "context": "CREATE TABLE table_name_30 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE race = \"british grand prix\"", "question": "When were the British Grand Prix races?", "context": "CREATE TABLE table_name_95 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT race AS Winner FROM table_name_11 WHERE pole_position = \"didier pironi\" AND race = \"canadian grand prix\"", "question": "What Canadian Grand Prix race winner had Didier Pironi in Pole Position?", "context": "CREATE TABLE table_name_11 (race VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT AVG(top_10) FROM table_name_42 WHERE wins < 1 AND top_25 = 5 AND cuts_made < 10", "question": "Tell me the average top 10 for cuts made less than 10, wins less than 1 and top 25 of 5", "context": "CREATE TABLE table_name_42 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT prom__m_ FROM table_name_20 WHERE class = \"hewitt\" AND height__m_ = 715", "question": "What is the prom with Hewitt class and a Height (m) of 715?", "context": "CREATE TABLE table_name_20 (prom__m_ VARCHAR, class VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT laps FROM table_name_3 WHERE time_retired = \"+ 4 laps\" AND driver = \"graham hill\"", "question": "How many laps have a Time/Retired of + 4 laps, and a Driver of graham hill?", "context": "CREATE TABLE table_name_3 (laps VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_68 WHERE laps < 77 AND grid = 16", "question": "Which Time/Retired has less than 77 laps, and a Grid of 16?", "context": "CREATE TABLE table_name_68 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_53 WHERE grid < 24 AND laps > 77 AND driver = \"jean-pierre beltoise\"", "question": "Which Constructor has a Grid smaller than 24, more than 77 laps, and a Driver of jean-pierre beltoise?", "context": "CREATE TABLE table_name_53 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT team FROM table_name_56 WHERE college = \"lawrence tech\"", "question": "What's the team of the player who went to lawrence tech?", "context": "CREATE TABLE table_name_56 (team VARCHAR, college VARCHAR)"}, {"answer": "SELECT driver FROM table_name_34 WHERE constructor = \"maserati\" AND laps < 18 AND grid < 14 AND time_retired = \"oil leak\"", "question": "Who drove the maserati under 18 laps with an oil leak that had a grid of under 14?", "context": "CREATE TABLE table_name_34 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_57 WHERE driver = \"jo siffert\"", "question": "What is the average grid for jo siffert?", "context": "CREATE TABLE table_name_57 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT nation FROM table_name_9 WHERE bronze = \"1\" AND silver = \"3\"", "question": "What nation has 1 bronze and 3 silvers?", "context": "CREATE TABLE table_name_9 (nation VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_9 WHERE nation = \"netherlands\"", "question": "How many total medals for the netherlands?", "context": "CREATE TABLE table_name_9 (total INTEGER, nation VARCHAR)"}, {"answer": "SELECT venue FROM table_name_22 WHERE away_team = \"footscray\"", "question": "Which venue hosted an away team of Footscray?", "context": "CREATE TABLE table_name_22 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_9 WHERE college = \"murray state\"", "question": "Which player is from Murray State college?", "context": "CREATE TABLE table_name_9 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_36 WHERE year = 1888", "question": "Name the opponent in the final for year of 1888", "context": "CREATE TABLE table_name_36 (opponent_in_the_final VARCHAR, year VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_76 WHERE year = 1889", "question": "I want the tournament for 1889", "context": "CREATE TABLE table_name_76 (tournament VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE opponent_in_the_final = \"isabel cueto\"", "question": "On what date is Isabel cueto the opponent in the final?", "context": "CREATE TABLE table_name_78 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_55 WHERE opponent_in_the_final = \"raffaella reggi\"", "question": "Which tournament has raffaella reggi listed as the opponent in the final?", "context": "CREATE TABLE table_name_55 (tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_41 WHERE score_in_the_final = \"6\u20132, 6\u20133\"", "question": "What type of surface was used where the final score was 6\u20132, 6\u20133?", "context": "CREATE TABLE table_name_41 (surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT record FROM table_name_1 WHERE date = \"april 22\"", "question": "What was the record on April 22?", "context": "CREATE TABLE table_name_1 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE opponent = \"southampton\"", "question": "When was the game played against Southampton?", "context": "CREATE TABLE table_name_29 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_57 WHERE attendance = \"13,634\"", "question": "Which venue has 13,634 people in attendance?", "context": "CREATE TABLE table_name_57 (venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE opponent = \"leyton orient\" AND venue = \"away\"", "question": "When was Leyton Orient an away team?", "context": "CREATE TABLE table_name_68 (date VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE date = \"may 16\"", "question": "What is the score on may 16?", "context": "CREATE TABLE table_name_60 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_69 WHERE entrant = \"jo bonnier\" AND rounds = \"6\"", "question": "What was the constructor for jo bonnier of 6 rounds?", "context": "CREATE TABLE table_name_69 (constructor VARCHAR, entrant VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT driver FROM table_name_27 WHERE chassis = \"t45 t44\" AND rounds = \"7\"", "question": "What was the driver with chassis of t45 t44 and rounds of 7?", "context": "CREATE TABLE table_name_27 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_40 WHERE away_team = \"south melbourne\"", "question": "What was the biggest crowd when the away team of south melbourne played there?", "context": "CREATE TABLE table_name_40 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_30 WHERE venue = \"princes park\"", "question": "What was the score of the away team at princes park?", "context": "CREATE TABLE table_name_30 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT winner FROM table_name_81 WHERE type = \"mountain stage\" AND date = \"22 may\"", "question": "Who was the winner with a mountain stage type on 22 May?", "context": "CREATE TABLE table_name_81 (winner VARCHAR, type VARCHAR, date VARCHAR)"}, {"answer": "SELECT course FROM table_name_76 WHERE type = \"mountain stage\" AND date = \"3 june\"", "question": "Which course had a mountain stage type on 3 June?", "context": "CREATE TABLE table_name_76 (course VARCHAR, type VARCHAR, date VARCHAR)"}, {"answer": "SELECT type FROM table_name_13 WHERE date = \"22 may\"", "question": "What was the course type on 22 May?", "context": "CREATE TABLE table_name_13 (type VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_39 WHERE player = \"jesse alexander\"", "question": "What is the pick number of Jesse Alexander?", "context": "CREATE TABLE table_name_39 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_37 WHERE result = \"bye\"", "question": "How many weeks do they have a bye?", "context": "CREATE TABLE table_name_37 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT english_title__chinese_title_ FROM table_name_67 WHERE airing_date = \"18 dec 2006- 10 feb 2007\"", "question": "Which title aired on 18 dec 2006- 10 feb 2007?", "context": "CREATE TABLE table_name_67 (english_title__chinese_title_ VARCHAR, airing_date VARCHAR)"}, {"answer": "SELECT genre FROM table_name_27 WHERE airing_date = \"12 feb- 9 mar\"", "question": "Which genre aired on 12 feb- 9 mar?", "context": "CREATE TABLE table_name_27 (genre VARCHAR, airing_date VARCHAR)"}, {"answer": "SELECT english_title__chinese_title_ FROM table_name_20 WHERE number_of_episodes = 20 AND airing_date = \"11 jun- 6 jul\"", "question": "Which title had 20 episodes and aired on 11 jun- 6 jul?", "context": "CREATE TABLE table_name_20 (english_title__chinese_title_ VARCHAR, number_of_episodes VARCHAR, airing_date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_41 WHERE date = \"september 17\"", "question": "Who was the opponent on September 17?", "context": "CREATE TABLE table_name_41 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE date = \"september 28, 1951\"", "question": "Which Opponent has a Date of september 28, 1951?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_22 WHERE date = \"november 18, 1951\"", "question": "Which Attendance has a Date of november 18, 1951?", "context": "CREATE TABLE table_name_22 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT bore_x_stroke FROM table_name_83 WHERE year = \"1929-32\"", "question": "Name the Bore x stroke of 1929-32", "context": "CREATE TABLE table_name_83 (bore_x_stroke VARCHAR, year VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_63 WHERE year = \"1935-45\"", "question": "Tell me the displacement for 1935-45", "context": "CREATE TABLE table_name_63 (displacement VARCHAR, year VARCHAR)"}, {"answer": "SELECT power FROM table_name_91 WHERE year = \"1935-45\"", "question": "Tell me the power for 1935-45", "context": "CREATE TABLE table_name_91 (power VARCHAR, year VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_28 WHERE version = \"db\"", "question": "I want the displacement for version of db", "context": "CREATE TABLE table_name_28 (displacement VARCHAR, version VARCHAR)"}, {"answer": "SELECT version FROM table_name_71 WHERE year = \"1940-45\"", "question": "Tell me the version for 1940-45", "context": "CREATE TABLE table_name_71 (version VARCHAR, year VARCHAR)"}, {"answer": "SELECT competition FROM table_name_98 WHERE position = \"8th\"", "question": "What's the name of the competition in 8th position?", "context": "CREATE TABLE table_name_98 (competition VARCHAR, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_27 WHERE competition = \"european indoor championships\" AND year > 1979", "question": "After 1979, where was the European Indoor Championships held?", "context": "CREATE TABLE table_name_27 (venue VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT position FROM table_name_78 WHERE competition = \"european indoor championships\" AND year < 1979", "question": "Before 1979, what position was the European Indoor Championships?", "context": "CREATE TABLE table_name_78 (position VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT player FROM table_name_94 WHERE pick__number < 2", "question": "What player is picked before 2?", "context": "CREATE TABLE table_name_94 (player VARCHAR, pick__number INTEGER)"}, {"answer": "SELECT position FROM table_name_22 WHERE cfl_team = \"bc lions\"", "question": "What position do the bc lions pick?", "context": "CREATE TABLE table_name_22 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT city FROM table_name_43 WHERE icao = \"epwa\"", "question": "Where has an ICAO of EPWA?", "context": "CREATE TABLE table_name_43 (city VARCHAR, icao VARCHAR)"}, {"answer": "SELECT city FROM table_name_69 WHERE iata = \"bva\"", "question": "Where has an IATA of BVA?", "context": "CREATE TABLE table_name_69 (city VARCHAR, iata VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE record = \"3-14-6\"", "question": "When was the record 3-14-6?", "context": "CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_34 WHERE record = \"4-16-7\"", "question": "What home team had a record of 4-16-7?", "context": "CREATE TABLE table_name_34 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_63 WHERE film_name = \"rang barse\"", "question": "Which year was the film Rang Barse introduced?", "context": "CREATE TABLE table_name_63 (year VARCHAR, film_name VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_95 WHERE film_name = \"gaon ki ganga\"", "question": "What was the latest year for the film Gaon Ki Ganga?", "context": "CREATE TABLE table_name_95 (year INTEGER, film_name VARCHAR)"}, {"answer": "SELECT film_name FROM table_name_63 WHERE year = 2002", "question": "Which film was released in the year 2002?", "context": "CREATE TABLE table_name_63 (film_name VARCHAR, year VARCHAR)"}, {"answer": "SELECT music_director FROM table_name_86 WHERE year > 2003", "question": "Name a music director, belonging to a year after 2003?", "context": "CREATE TABLE table_name_86 (music_director VARCHAR, year INTEGER)"}, {"answer": "SELECT AVG(crowd) FROM table_name_38 WHERE away_team = \"collingwood\"", "question": "What is the average crowd when the team Collingwood was away?", "context": "CREATE TABLE table_name_38 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT first_criticality FROM table_name_3 WHERE electric_power = \"1,380 mw\"", "question": "Name the first citicality for electric power of 1,380 mw", "context": "CREATE TABLE table_name_3 (first_criticality VARCHAR, electric_power VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_52 WHERE engine_\u2020 = \"cosworth cr-2\" AND driver = \"luciano burti\"", "question": "What constructor has an engine of cosworth cr-2 and a driver of luciano burti?", "context": "CREATE TABLE table_name_52 (constructor VARCHAR, engine_\u2020 VARCHAR, driver VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_40 WHERE engine_\u2020 = \"peugeot a20\"", "question": "What is the tyre for the peugeot a20 engine?", "context": "CREATE TABLE table_name_40 (tyre VARCHAR, engine_\u2020 VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_62 WHERE constructor = \"benetton - playlife\"", "question": "Which entrant had a constructor of benetton - playlife?", "context": "CREATE TABLE table_name_62 (entrant VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_68 WHERE engine_\u2020 = \"mugen-honda mf-301 he\"", "question": "Which entrant had a mugen-honda mf-301 he engine?", "context": "CREATE TABLE table_name_68 (entrant VARCHAR, engine_\u2020 VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_7 WHERE engine_\u2020 = \"playlife fb02\" AND driver = \"alexander wurz\"", "question": "What's the chassis for alexander wurz's playlife fb02 engine?", "context": "CREATE TABLE table_name_7 (chassis VARCHAR, engine_\u2020 VARCHAR, driver VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_2 WHERE engine_\u2020 = \"bmw e41\" AND driver = \"jenson button\"", "question": "What's the rounds for jenson button with a bmw e41 engine?", "context": "CREATE TABLE table_name_2 (rounds VARCHAR, engine_\u2020 VARCHAR, driver VARCHAR)"}, {"answer": "SELECT res FROM table_name_97 WHERE event = \"pfc: put up or shut up\"", "question": "What is the result for pfc: put up or shut up?", "context": "CREATE TABLE table_name_97 (res VARCHAR, event VARCHAR)"}, {"answer": "SELECT production_code FROM table_name_75 WHERE season__number > 23 AND series__number < 126 AND written_by = \"gary sturgis\"", "question": "What is the production code of the episode written by Gary Sturgis that is bigger than season number 23 and smaller than series number 126?", "context": "CREATE TABLE table_name_75 (production_code VARCHAR, written_by VARCHAR, season__number VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_89 WHERE chassis = \"b195\"", "question": "Which rounds had the B195 chassis?", "context": "CREATE TABLE table_name_89 (rounds VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT driver FROM table_name_82 WHERE engine = \"ford edb 3.0 v8\"", "question": "Who was the driver of the Ford EDB 3.0 v8 engine?", "context": "CREATE TABLE table_name_82 (driver VARCHAR, engine VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_94 WHERE laps = 38", "question": "I want the highest grid for Laps of 38", "context": "CREATE TABLE table_name_94 (grid INTEGER, laps VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_57 WHERE grid > 4 AND driver = \"heinz-harald frentzen\"", "question": "Tell me the constructor for Grid more than 4 and drivers being heinz-harald frentzen", "context": "CREATE TABLE table_name_57 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_13 WHERE town_city = \"ivaipor\u00e3, pr\"", "question": "What is Ivaipor\u00e3, pr's biggest population?", "context": "CREATE TABLE table_name_13 (population INTEGER, town_city VARCHAR)"}, {"answer": "SELECT MIN(first_year) FROM table_name_33 WHERE population = 32 OFFSET 645", "question": "Which is the smallest First year when the population is 32,645?", "context": "CREATE TABLE table_name_33 (first_year INTEGER, population VARCHAR)"}, {"answer": "SELECT jushin_liger FROM table_name_44 WHERE super_shocker = \"liger (13:59)\"", "question": "Which Jushin Liger has a Super Shocker of liger (13:59)?", "context": "CREATE TABLE table_name_44 (jushin_liger VARCHAR, super_shocker VARCHAR)"}, {"answer": "SELECT masaaki_mochizuki FROM table_name_56 WHERE gran_hamada = \"hamada (10:47)\"", "question": "Which Masaaki Mochizuki has a Gran Hamada of hamada (10:47)?", "context": "CREATE TABLE table_name_56 (masaaki_mochizuki VARCHAR, gran_hamada VARCHAR)"}, {"answer": "SELECT tatsuhito_takaiwa FROM table_name_38 WHERE koji_kanemoto = \"liger (20:29)\"", "question": "Which Tatsuhito Takaiwa has a Koji Kanemoto of liger (20:29)?", "context": "CREATE TABLE table_name_38 (tatsuhito_takaiwa VARCHAR, koji_kanemoto VARCHAR)"}, {"answer": "SELECT gran_hamada FROM table_name_67 WHERE block_a = \"tatsuhito takaiwa\"", "question": "Which Gran Hamada has a Block A of tatsuhito takaiwa?", "context": "CREATE TABLE table_name_67 (gran_hamada VARCHAR, block_a VARCHAR)"}, {"answer": "SELECT jushin_liger FROM table_name_60 WHERE gran_hamada = \"kendo kashin\"", "question": "Which Jushin Liger has a Gran Hamada of kendo kashin?", "context": "CREATE TABLE table_name_60 (jushin_liger VARCHAR, gran_hamada VARCHAR)"}, {"answer": "SELECT jushin_liger FROM table_name_20 WHERE masaaki_mochizuki = \"kashin (10:00)\"", "question": "Which Jushin Liger has a Masaaki Mochizuki of kashin (10:00)?", "context": "CREATE TABLE table_name_20 (jushin_liger VARCHAR, masaaki_mochizuki VARCHAR)"}, {"answer": "SELECT AVG(code) FROM table_name_35 WHERE regional_county_municipality = \"matawinie\" AND type = \"p\" AND name = \"saint-damien\"", "question": "What is the code for Saint-Damien in Matawinie with a type p?", "context": "CREATE TABLE table_name_35 (code INTEGER, name VARCHAR, regional_county_municipality VARCHAR, type VARCHAR)"}, {"answer": "SELECT name FROM table_name_9 WHERE regional_county_municipality = \"d'autray\" AND code < 52017", "question": "What is the name for the regional county municipality of d'autray and a code less than 52017?", "context": "CREATE TABLE table_name_9 (name VARCHAR, regional_county_municipality VARCHAR, code VARCHAR)"}, {"answer": "SELECT delivery FROM table_name_80 WHERE name = \"quince\"", "question": "Which Delivery has a Name of quince?", "context": "CREATE TABLE table_name_80 (delivery VARCHAR, name VARCHAR)"}, {"answer": "SELECT elevation_ + _height FROM table_name_96 WHERE delivery = \"barge\" AND location = \"bikini, yurochi aka irioj (dog)\"", "question": "Which Elevation + Height has a Delivery of barge and a Location of bikini, yurochi aka irioj (dog)?", "context": "CREATE TABLE table_name_96 (elevation_ VARCHAR, _height VARCHAR, delivery VARCHAR, location VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_96 WHERE location = \"enewetak, runit (yvonne)\" AND name = \"cactus\"", "question": "Which Purpose has a Location of enewetak, runit (yvonne) and the Name of cactus?", "context": "CREATE TABLE table_name_96 (purpose VARCHAR, location VARCHAR, name VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_49 WHERE name = \"oak\"", "question": "Which Purpose has a Name of oak?", "context": "CREATE TABLE table_name_49 (purpose VARCHAR, name VARCHAR)"}, {"answer": "SELECT location FROM table_name_77 WHERE delivery = \"barge\" AND name = \"scaevola\"", "question": "What Location has a Delivery of barge and the Name of scaevola?", "context": "CREATE TABLE table_name_77 (location VARCHAR, delivery VARCHAR, name VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_37 WHERE elevation_ + _height = \"0 + metres (ft)\" AND location = \"bikini, namu (charlie)\" AND yield = \"220 kt\"", "question": "Which Purpose has an Elevation + Height of 0 + metres (ft), a Location of bikini, namu (charlie), and a Yield of 220 kt?", "context": "CREATE TABLE table_name_37 (purpose VARCHAR, yield VARCHAR, location VARCHAR, elevation_ VARCHAR, _height VARCHAR)"}, {"answer": "SELECT colour_commentator_s_ FROM table_name_1 WHERE play_by_play = \"bob cole\"", "question": "Who was the colour commmentator that broadcasted along with the Play-by-play of bob cole?", "context": "CREATE TABLE table_name_1 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR)"}, {"answer": "SELECT network FROM table_name_57 WHERE studio_host = \"john wells\"", "question": "Which network had the host of john wells?", "context": "CREATE TABLE table_name_57 (network VARCHAR, studio_host VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_24 WHERE year_withdrawn > 1932", "question": "Who manufactured the vehicle withdrawn after 1932?", "context": "CREATE TABLE table_name_24 (manufacturer VARCHAR, year_withdrawn INTEGER)"}, {"answer": "SELECT manufacturer FROM table_name_52 WHERE year_withdrawn = 1927", "question": "Who manufactured the vehicle that was withdrawn in 1927?", "context": "CREATE TABLE table_name_52 (manufacturer VARCHAR, year_withdrawn VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_50 WHERE goals_for > 29 AND team = \"montreal\"", "question": "What is the total number of losses for the Team of Montreal with Goals For larger than 29?", "context": "CREATE TABLE table_name_50 (losses VARCHAR, goals_for VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_94 WHERE wins > 8", "question": "What is the average Goals For for a team that has more Wins than 8?", "context": "CREATE TABLE table_name_94 (goals_for INTEGER, wins INTEGER)"}, {"answer": "SELECT MAX(games_played) FROM table_name_40 WHERE losses = 3 AND wins > 5", "question": "What is the largest number of Games Played with Losses of 3, and more Wins than 5?", "context": "CREATE TABLE table_name_40 (games_played INTEGER, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT ties FROM table_name_23 WHERE goals_against < 33", "question": "What are the number of Ties for games with Goals Against smaller than 33?", "context": "CREATE TABLE table_name_23 (ties VARCHAR, goals_against INTEGER)"}, {"answer": "SELECT SUM(goals_for) FROM table_name_44 WHERE games_played > 8", "question": "What is the number of Goals For for Games Played more than 8?", "context": "CREATE TABLE table_name_44 (goals_for INTEGER, games_played INTEGER)"}, {"answer": "SELECT party FROM table_name_99 WHERE class = 1 AND state = \"wisconsin\"", "question": "What party is class 1 in wisconsin?", "context": "CREATE TABLE table_name_99 (party VARCHAR, class VARCHAR, state VARCHAR)"}, {"answer": "SELECT state FROM table_name_50 WHERE born > 1955 AND name = \"maria cantwell\"", "question": "What state was maria cantwell born in after 1955?", "context": "CREATE TABLE table_name_50 (state VARCHAR, born VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_56 WHERE driver = \"lance reventlow\" AND grid > 16", "question": "Name the sum of Laps for lance reventlow with grid more than 16", "context": "CREATE TABLE table_name_56 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_61 WHERE laps = 35 AND grid > 5", "question": "Tell me the constructor that has 35 Laps with a grid more than 5", "context": "CREATE TABLE table_name_61 (constructor VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_29 WHERE driver = \"chuck daigh\"", "question": "What is the total number of Grids for Chuck Daigh?", "context": "CREATE TABLE table_name_29 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT party FROM table_name_97 WHERE name = \"marie-dominique simonet\"", "question": "What party is Marie-Dominique Simonet part of?", "context": "CREATE TABLE table_name_97 (party VARCHAR, name VARCHAR)"}, {"answer": "SELECT seating FROM table_name_53 WHERE diagram_no > 516 AND type = \"driving motor brake second (dmbs)\"", "question": "Which vehicle has a Diagram of 516 or smaller, and a driving motor brake second (dmbs) type.", "context": "CREATE TABLE table_name_53 (seating VARCHAR, diagram_no VARCHAR, type VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_13 WHERE floor_exercise < 36.724 AND rank < 8", "question": "What's the lowest total when the floor exercise is less than 36.724 and the rank is lower than 8?", "context": "CREATE TABLE table_name_13 (total INTEGER, floor_exercise VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(scored) FROM table_name_24 WHERE competition = \"friendly\" AND venue = \"kryoia soveto, moscow\"", "question": "What is the average number scored in a friendly at kryoia soveto, moscow?", "context": "CREATE TABLE table_name_24 (scored INTEGER, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_87 WHERE away_team = \"north melbourne\"", "question": "What is the home teams score when north melbourne is the away team?", "context": "CREATE TABLE table_name_87 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_24 WHERE home_team = \"fitzroy\"", "question": "What is the highest crowd when fitzroy is the home team?", "context": "CREATE TABLE table_name_24 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_78 WHERE away_team = \"essendon\"", "question": "What is the lowest crowd when essendon is the away team?", "context": "CREATE TABLE table_name_78 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE away_team = \"essendon\"", "question": "On what date was essendon the away team?", "context": "CREATE TABLE table_name_57 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT appointed_elected FROM table_name_91 WHERE name = \"chief justice mark cady\"", "question": "What is the year when chief justice Mark Cady was appointed/elected?", "context": "CREATE TABLE table_name_91 (appointed_elected VARCHAR, name VARCHAR)"}, {"answer": "SELECT term_expires FROM table_name_27 WHERE appointing_governor = \"tom vilsack\" AND name = \"daryl hecht\"", "question": "What is the expiring term for Daryl Hecht when the appointing governor is Tom Vilsack?", "context": "CREATE TABLE table_name_27 (term_expires VARCHAR, appointing_governor VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_8 WHERE term_expires = \"december 31, 2020\" AND appointing_governor = \"terry branstad\"", "question": "Which person has an expiring term of December 31, 2020, and has Terry Branstad as the appointing governor?", "context": "CREATE TABLE table_name_8 (name VARCHAR, term_expires VARCHAR, appointing_governor VARCHAR)"}, {"answer": "SELECT name FROM table_name_33 WHERE term_expires = \"december 31, 2020\" AND appointing_governor = \"terry branstad\"", "question": "Who has a term that expires on December 31, 2020 and Terry Branstad for an appointing governor?", "context": "CREATE TABLE table_name_33 (name VARCHAR, term_expires VARCHAR, appointing_governor VARCHAR)"}, {"answer": "SELECT team FROM table_name_94 WHERE pick = 80", "question": "What team picked 80?", "context": "CREATE TABLE table_name_94 (team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_43 WHERE venue = \"punt road oval\"", "question": "What is the away team that plays at Punt Road Oval?", "context": "CREATE TABLE table_name_43 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE away_team = \"footscray\"", "question": "What date did Footscray play and Away game?", "context": "CREATE TABLE table_name_24 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_82 WHERE tournament < 0", "question": "Name the average total for tournament less than 0", "context": "CREATE TABLE table_name_82 (total INTEGER, tournament INTEGER)"}, {"answer": "SELECT MAX(total) FROM table_name_15 WHERE tournament > 0 AND regular_season > 8", "question": "Name the highest total for the tournament more than 0 and regular season after 8", "context": "CREATE TABLE table_name_15 (total INTEGER, tournament VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_21 WHERE opponent = \"detroit lions\"", "question": "What was the number in attendance for the Detroit Lions game?", "context": "CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE attendance = \"67,472\"", "question": "Which date had 67,472 in attendance?", "context": "CREATE TABLE table_name_73 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_23 WHERE date = \"september 30, 1990\"", "question": "Who was the opponent team on September 30, 1990?", "context": "CREATE TABLE table_name_23 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_60 WHERE week = \"8\"", "question": "What was the team record by Week 8?", "context": "CREATE TABLE table_name_60 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT week FROM table_name_32 WHERE game_site = \"candlestick park\"", "question": "Which week has Game site of Candlestick Park?", "context": "CREATE TABLE table_name_32 (week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_23 WHERE date = \"october 7, 1990\"", "question": "What is the attandance figure on October 7, 1990?", "context": "CREATE TABLE table_name_23 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_36 WHERE constructor = \"maserati\" AND race = \"monaco grand prix\"", "question": "What driver was the winner when constructor was Maserati at the Monaco grand prix?", "context": "CREATE TABLE table_name_36 (winning_driver VARCHAR, constructor VARCHAR, race VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_16 WHERE fastest_lap = \"juan manuel fangio\" AND race = \"german grand prix\"", "question": "What circuit did Juan Manuel Fangio have the fastest lap at the german grand prix?", "context": "CREATE TABLE table_name_16 (circuit VARCHAR, fastest_lap VARCHAR, race VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_5 WHERE race = \"german grand prix\"", "question": "What circuit was for the german grand prix?", "context": "CREATE TABLE table_name_5 (circuit VARCHAR, race VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_50 WHERE home = \"detroit\" AND decision = \"hasek\"", "question": "What is the total attendance for Detroit on hasek?", "context": "CREATE TABLE table_name_50 (attendance VARCHAR, home VARCHAR, decision VARCHAR)"}, {"answer": "SELECT method FROM table_name_75 WHERE opponent = \"tyson griffin\"", "question": "What was the method used when the opponent was Tyson Griffin?", "context": "CREATE TABLE table_name_75 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT clive_churchill_medal FROM table_name_27 WHERE losingteam = \"sydney roosters\" AND season = 2010", "question": "Who wins the clive churchill medal when the losing team is the sydney roosters in 2010?", "context": "CREATE TABLE table_name_27 (clive_churchill_medal VARCHAR, losingteam VARCHAR, season VARCHAR)"}, {"answer": "SELECT grand_finaldate FROM table_name_44 WHERE score = \"30-24\"", "question": "What is the grand final date for the game with a score or 30-24?", "context": "CREATE TABLE table_name_44 (grand_finaldate VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_81 WHERE year = 2003 AND score = \"2\u20131\"", "question": "What competition in 2003 has a score of 2\u20131?", "context": "CREATE TABLE table_name_81 (competition VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE year < 2008 AND result = \"loss\" AND location = \"antalya\" AND competition = \"europe/africa zone, group i, round robin\"", "question": "What is the score of a year less than 2008 with loss as the result, in Antalya and a Competition of europe/africa zone, group i, round robin?", "context": "CREATE TABLE table_name_49 (score VARCHAR, competition VARCHAR, location VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_19 WHERE competition = \"europe/africa zone, group i, round robin\" AND result = \"loss\" AND location = \"antalya\" AND score = \"1\u20132\"", "question": "What date was the Competition of europe/africa zone, group i, round robin, with a result of loss, in Antalya, and a Score of 1\u20132?", "context": "CREATE TABLE table_name_19 (date VARCHAR, score VARCHAR, location VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_69 WHERE away_team = \"essendon\"", "question": "Where did Essendon play as the away team?", "context": "CREATE TABLE table_name_69 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(goal_diff) FROM table_name_94 WHERE losses > 1 AND wins < 0", "question": "Which team has a Losses value larger than 1 and a Wins value smaller than 0?", "context": "CREATE TABLE table_name_94 (goal_diff INTEGER, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT result FROM table_name_23 WHERE location = \"guangzhou\" AND score = \"1-0\"", "question": "In guangzhou, who won the game with a score of 1-0?", "context": "CREATE TABLE table_name_23 (result VARCHAR, location VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_60 WHERE competition = \"algarve cup\" AND date = \"2006-03-13\"", "question": "On 2006-03-13 in the algarve cup, who won?", "context": "CREATE TABLE table_name_60 (result VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_66 WHERE date = \"2007-04-14\"", "question": "Who won on 2007-04-14", "context": "CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_96 WHERE visitor = \"mavericks\"", "question": "Name the record when the visitor is mavericks", "context": "CREATE TABLE table_name_96 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE visitor = \"nets\"", "question": "Name the date when the visitor is nets", "context": "CREATE TABLE table_name_29 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT college FROM table_name_28 WHERE player = \"john sullivan\"", "question": "What college did john sullivan attend?", "context": "CREATE TABLE table_name_28 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(avg) FROM table_name_7 WHERE long = 8", "question": "What is the average for the RB with an 8 yard long?", "context": "CREATE TABLE table_name_7 (avg VARCHAR, long VARCHAR)"}, {"answer": "SELECT AVG(evening_gown) FROM table_name_47 WHERE swimsuit < 8.703 AND state = \"new york\" AND preliminaries > 8.292", "question": "What is the average evening gown score of the contestant from New York with a swimsuit score less than 8.703 and preliminaries larger than 8.292?", "context": "CREATE TABLE table_name_47 (evening_gown INTEGER, preliminaries VARCHAR, swimsuit VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(preliminaries) FROM table_name_97 WHERE evening_gown > 8.631 AND average < 8.791 AND state = \"massachusetts\" AND interview > 8.608", "question": "What is the preliminaries of the contestant from Massachusetts with an evening gown higher than 8.631, an average less than 8.791, and an interview higher than 8.608?", "context": "CREATE TABLE table_name_97 (preliminaries VARCHAR, interview VARCHAR, state VARCHAR, evening_gown VARCHAR, average VARCHAR)"}, {"answer": "SELECT preliminaries FROM table_name_99 WHERE swimsuit < 8.948 AND interview = 8.997", "question": "What is the preliminaries of the contestant with a swimsuit less than 8.948 and an interview of 8.997?", "context": "CREATE TABLE table_name_99 (preliminaries VARCHAR, swimsuit VARCHAR, interview VARCHAR)"}, {"answer": "SELECT MIN(interview) FROM table_name_4 WHERE evening_gown > 9.343", "question": "What is the lowest interview of the contestant with an evening gown bigger than 9.343?", "context": "CREATE TABLE table_name_4 (interview INTEGER, evening_gown INTEGER)"}, {"answer": "SELECT COUNT(evening_gown) FROM table_name_79 WHERE preliminaries < 8.647 AND state = \"district of columbia\"", "question": "What is the evening gown score of the contestant from the District of Columbia with preliminaries smaller than 8.647?", "context": "CREATE TABLE table_name_79 (evening_gown VARCHAR, preliminaries VARCHAR, state VARCHAR)"}, {"answer": "SELECT driver FROM table_name_51 WHERE laps > 35 AND constructor = \"ferrari\"", "question": "who is the driver that has laps more than 35 and the constructor is ferrari?", "context": "CREATE TABLE table_name_51 (driver VARCHAR, laps VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT team FROM table_name_69 WHERE date = \"december 11\"", "question": "What is the Team with a Date with december 11?", "context": "CREATE TABLE table_name_69 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE team = \"@ houston\"", "question": "What is the Score with a Team with @ houston?", "context": "CREATE TABLE table_name_35 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_95 WHERE team = \"boston\"", "question": "What is the High points with a Team with boston?", "context": "CREATE TABLE table_name_95 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_97 WHERE date = \"december 9\"", "question": "What is the Record with a Date with december 9?", "context": "CREATE TABLE table_name_97 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT reign_ended FROM table_name_72 WHERE country = \"egypt\"", "question": "Whose reign ended in Egypt?", "context": "CREATE TABLE table_name_72 (reign_ended VARCHAR, country VARCHAR)"}, {"answer": "SELECT reign_ended FROM table_name_2 WHERE length = \"3 days\" AND country = \"afghanistan\"", "question": "Whose reign ended in Afghanistan after 3 days?", "context": "CREATE TABLE table_name_2 (reign_ended VARCHAR, length VARCHAR, country VARCHAR)"}, {"answer": "SELECT reign_began FROM table_name_79 WHERE country = \"vietnam\" AND reign_ended = \"october 1005\"", "question": "Whose reign began in Vietnam and ended in October 1005?", "context": "CREATE TABLE table_name_79 (reign_began VARCHAR, country VARCHAR, reign_ended VARCHAR)"}, {"answer": "SELECT reign_ended FROM table_name_17 WHERE name = \"pharaoh seth\"", "question": "When did Pharaoh Seth's reign end?", "context": "CREATE TABLE table_name_17 (reign_ended VARCHAR, name VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_39 WHERE venue = \"mcg\"", "question": "What did the home team score at MCG?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_1 WHERE crowd > 22 OFFSET 000", "question": "What did the away team score in the game with a crowd size larger than 22,000?", "context": "CREATE TABLE table_name_1 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT MAX(crowd) FROM table_name_5 WHERE home_team = \"south melbourne\"", "question": "What was the largest crowd size at a South Melbourne home game?", "context": "CREATE TABLE table_name_5 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_23 WHERE date = \"august 18\"", "question": "What is the record on august 18?", "context": "CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_26 WHERE date = \"august 1\"", "question": "Name the score on august 1", "context": "CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_69 WHERE points = 18", "question": "how many times was the points 18?", "context": "CREATE TABLE table_name_69 (place VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_76 WHERE place < 7 AND draw > 2 AND artist = \"piece of cake\"", "question": "what is the number of points when the place is less than 7, the draw is more than 2 and the artist is piece of cake?", "context": "CREATE TABLE table_name_76 (points VARCHAR, artist VARCHAR, place VARCHAR, draw VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_63 WHERE grid = 2", "question": "Who was the Constructor when the Grid was 2?", "context": "CREATE TABLE table_name_63 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_30 WHERE grid > 10 AND laps > 2 AND constructor = \"maserati\" AND driver = \"masten gregory carroll shelby\"", "question": "What is the time/retired of Driver Masten Gregory Carroll Shelby when the constructor was Maserati, the Grid was larger than 10 and there were more than 2 laps?", "context": "CREATE TABLE table_name_30 (time_retired VARCHAR, driver VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_3 WHERE constructor = \"vanwall\" AND laps = 17", "question": "What was the average grid at the time Vanwall was constructor and there were 17 laps?", "context": "CREATE TABLE table_name_3 (grid INTEGER, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT winner FROM table_name_1 WHERE score = \"7\u20136(4), 6\u20134\"", "question": "Who wins with a score 7\u20136(4), 6\u20134", "context": "CREATE TABLE table_name_1 (winner VARCHAR, score VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_95 WHERE tournament = \"seiersberg\"", "question": "Who is the Runner-up in Tournament of seiersberg", "context": "CREATE TABLE table_name_95 (runner_up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_58 WHERE grid > 17 AND time_retired = \"brakes\"", "question": "Who constructed the car that retired due to brakes with a grid larger than 17?", "context": "CREATE TABLE table_name_58 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_91 WHERE grid = 25", "question": "How many laps for grid 25?", "context": "CREATE TABLE table_name_91 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_42 WHERE laps > 9 AND grid = 6", "question": "What is the time/retired for the car with over 9 laps and a grid of 6?", "context": "CREATE TABLE table_name_42 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT mac_os_x FROM table_name_44 WHERE gnu_linux = \"yes\" AND windows = \"no\"", "question": "Which Mac OSX's GNU/Linux was yes when Windows was no?", "context": "CREATE TABLE table_name_44 (mac_os_x VARCHAR, gnu_linux VARCHAR, windows VARCHAR)"}, {"answer": "SELECT mac_os_x FROM table_name_98 WHERE haiku = \"no\" AND client = \"dc++\"", "question": "Which Mac OSX had no haiku and a client that was dc++?", "context": "CREATE TABLE table_name_98 (mac_os_x VARCHAR, haiku VARCHAR, client VARCHAR)"}, {"answer": "SELECT gnu_linux FROM table_name_60 WHERE haiku = \"no\" AND client = \"airdc++\"", "question": "Which GNU/Linux had no haiku and a client of airdc++?", "context": "CREATE TABLE table_name_60 (gnu_linux VARCHAR, haiku VARCHAR, client VARCHAR)"}, {"answer": "SELECT client FROM table_name_36 WHERE gnu_linux = \"no\"", "question": "Which client had no GNU/Linux?", "context": "CREATE TABLE table_name_36 (client VARCHAR, gnu_linux VARCHAR)"}, {"answer": "SELECT laps FROM table_name_50 WHERE grid = 12", "question": "How many laps for grid 12?", "context": "CREATE TABLE table_name_50 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_80 WHERE grid > 21 AND time_retired = \"suspension\"", "question": "Who built the 21 grid car that retired due to suspension?", "context": "CREATE TABLE table_name_80 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_37 WHERE player = \"hale irwin\" AND wins < 32", "question": "What is the low rank for hale irwin with under 32 wins?", "context": "CREATE TABLE table_name_37 (rank INTEGER, player VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(earnings__) AS $__ FROM table_name_41 WHERE player = \"dave stockton\"", "question": "How much has dave stockton earned?", "context": "CREATE TABLE table_name_41 (earnings__ INTEGER, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE venue = \"princes park\"", "question": "When was the game at Princes Park?", "context": "CREATE TABLE table_name_65 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_32 WHERE home_team = \"collingwood\"", "question": "What was Collingwood's away team score?", "context": "CREATE TABLE table_name_32 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_8 WHERE premiership = \"pre-season cup\" AND runner_up = \"north melbourne\" AND season < 2000", "question": "If the season is before 2000, the runner up was north melbourne, and it's the pre-season cup, what's the sum of attendees?", "context": "CREATE TABLE table_name_8 (attendance INTEGER, season VARCHAR, premiership VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT original_teams FROM table_name_29 WHERE the_biggest_loser = \"danni allen\"", "question": "What were the original teams for the season that was won by Danni Allen?", "context": "CREATE TABLE table_name_29 (original_teams VARCHAR, the_biggest_loser VARCHAR)"}, {"answer": "SELECT original_teams FROM table_name_15 WHERE at_home_winner = \"mark pinkhasovich\"", "question": "What were the original teams for the season that was won at-home by Mark Pinkhasovich?", "context": "CREATE TABLE table_name_15 (original_teams VARCHAR, at_home_winner VARCHAR)"}, {"answer": "SELECT the_biggest_loser FROM table_name_21 WHERE at_home_winner = \"pete thomas\"", "question": "Who won the season when Pete Thomas was the At-Home winner?", "context": "CREATE TABLE table_name_21 (the_biggest_loser VARCHAR, at_home_winner VARCHAR)"}, {"answer": "SELECT premiere FROM table_name_32 WHERE the_biggest_loser = \"matt hoover\"", "question": "What was the premiere date of the season won by Matt Hoover?", "context": "CREATE TABLE table_name_32 (premiere VARCHAR, the_biggest_loser VARCHAR)"}, {"answer": "SELECT name FROM table_name_75 WHERE the_biggest_loser = \"john rhode\"", "question": "What is the name of the season won by John Rhode?", "context": "CREATE TABLE table_name_75 (name VARCHAR, the_biggest_loser VARCHAR)"}, {"answer": "SELECT original_teams FROM table_name_77 WHERE name = \"the biggest loser (season 1)\"", "question": "What were the original teams for The Biggest Loser (Season 1)?", "context": "CREATE TABLE table_name_77 (original_teams VARCHAR, name VARCHAR)"}, {"answer": "SELECT venue FROM table_name_91 WHERE competition = \"1982 fifa world cup qualification\"", "question": "In what venue did the 1982 FIFA World Cup Qualification take place?", "context": "CREATE TABLE table_name_91 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_48 WHERE competition = \"1978 fifa world cup qualification\"", "question": "In what venue was the 1978 FIFA world cup qualification played in?", "context": "CREATE TABLE table_name_48 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_22 WHERE date = \"july 8\"", "question": "Who did the Red Sox play against on July 8?", "context": "CREATE TABLE table_name_22 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_63 WHERE position = \"second row\" AND points > 12", "question": "Tell me the lowest goals for second row and points more than 12", "context": "CREATE TABLE table_name_63 (goals INTEGER, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_1 WHERE tries = 39 AND goals > 0", "question": "I want the lowest points for tries of 39 and goals more than 0", "context": "CREATE TABLE table_name_1 (points INTEGER, tries VARCHAR, goals VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_90 WHERE site_stadium = \"baum stadium\" AND date = \"april 6\"", "question": "Who was the opponent at Baum Stadium on April 6?", "context": "CREATE TABLE table_name_90 (opponent VARCHAR, site_stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_31 WHERE date = \"march 4\"", "question": "How many people were in attendance on March 4?", "context": "CREATE TABLE table_name_31 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT site_stadium FROM table_name_21 WHERE date = \"march 23\"", "question": "On March 23, what is the site/stadium?", "context": "CREATE TABLE table_name_21 (site_stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE opponent = \"kentucky\" AND loss = \"ragle\"", "question": "On what date was Kentucky the opponent, and Ragle lost?", "context": "CREATE TABLE table_name_9 (date VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT site_stadium FROM table_name_78 WHERE score = \"1-2\"", "question": "Which site/stadium was the score 1-2?", "context": "CREATE TABLE table_name_78 (site_stadium VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_73 WHERE site_stadium = \"lindsey nelson stadium\"", "question": "Who was the opponent at Lindsey Nelson Stadium?", "context": "CREATE TABLE table_name_73 (opponent VARCHAR, site_stadium VARCHAR)"}, {"answer": "SELECT pick FROM table_name_34 WHERE position = \"defensive end\"", "question": "Which pick number resulted in a defensive end?", "context": "CREATE TABLE table_name_34 (pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_70 WHERE home_team = \"collingwood\"", "question": "In the game where the home team is collingwood, what is the score of the away team?", "context": "CREATE TABLE table_name_70 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_29 WHERE away_team = \"fitzroy\"", "question": "What is the size of the biggest crowd for a game where Fitzroy was the away team?", "context": "CREATE TABLE table_name_29 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE away_team = \"footscray\"", "question": "On which date did Footscray play an away game?", "context": "CREATE TABLE table_name_48 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_16 WHERE home_team = \"st kilda\"", "question": "If the Home team was st kilda, what was the score of the Away team they played?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_23 WHERE home_team = \"geelong\"", "question": "When the Home team of geelong played, what was their lowest Crowd number?", "context": "CREATE TABLE table_name_23 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_14 WHERE crowd > 29 OFFSET 000", "question": "Which Away team played when they had a Crowd of over 29,000 people?", "context": "CREATE TABLE table_name_14 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT AVG(avg) FROM table_name_16 WHERE yards = 124 AND rec < 13", "question": "What is the average of the player with 124 yards and less than 13 rec.?", "context": "CREATE TABLE table_name_16 (avg INTEGER, yards VARCHAR, rec VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_33 WHERE date = \"september 25, 1994\"", "question": "On September 25, 1994 what was the final score?", "context": "CREATE TABLE table_name_33 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_96 WHERE date = \"april 5, 1995\"", "question": "On the final date of April 5, 1995, what was the score?", "context": "CREATE TABLE table_name_96 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_13 WHERE away_team = \"geelong\"", "question": "Who was Geelong's home opponent?", "context": "CREATE TABLE table_name_13 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE opponent = \"tampa bay storm\"", "question": "What is the date against the Tampa bay Storm?", "context": "CREATE TABLE table_name_63 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_78 WHERE kickoff_[a_] = \"4:00\" AND record = \"4-8\"", "question": "What's the result when the kickoff was 4:00 and the record was 4-8?", "context": "CREATE TABLE table_name_78 (result VARCHAR, record VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_83 WHERE game_site = \"giants stadium\"", "question": "Who was the opponent for the giants stadium game?", "context": "CREATE TABLE table_name_83 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE kickoff_[a_] = \"1:00\" AND result = \"l 27-14\"", "question": "What date had a kickoff of 1:00 and a result of l 27-14?", "context": "CREATE TABLE table_name_81 (date VARCHAR, result VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE record = \"3-3\"", "question": "When was the record 3-3?", "context": "CREATE TABLE table_name_99 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_27 WHERE result = \"l 13-7 ot\"", "question": "When the result was l 13-7 ot, who was the opponent?", "context": "CREATE TABLE table_name_27 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT model FROM table_name_51 WHERE chipset = \"intel q43\"", "question": "What model number had a chipset of intel q43?", "context": "CREATE TABLE table_name_51 (model VARCHAR, chipset VARCHAR)"}, {"answer": "SELECT form_factor FROM table_name_99 WHERE model = \"precision m50\"", "question": "What is the form factor with a model name of precision m50?", "context": "CREATE TABLE table_name_99 (form_factor VARCHAR, model VARCHAR)"}, {"answer": "SELECT released FROM table_name_42 WHERE memory_type = \"ddr2-667\"", "question": "Whas is the released date of the memory type ddr2-667?", "context": "CREATE TABLE table_name_42 (released VARCHAR, memory_type VARCHAR)"}, {"answer": "SELECT released FROM table_name_75 WHERE model = \"precision m60\"", "question": "what is the release date of the model precision m60?", "context": "CREATE TABLE table_name_75 (released VARCHAR, model VARCHAR)"}, {"answer": "SELECT record FROM table_name_14 WHERE leading_scorer = \"rudy gay (20)\"", "question": "What is the record of the game with Rudy Gay (20) as the leading scorer?", "context": "CREATE TABLE table_name_14 (record VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_96 WHERE leading_scorer = \"rudy gay (18)\"", "question": "What is the visitor team of the game with Rudy Gay (18) as the leading scorer?", "context": "CREATE TABLE table_name_96 (visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE date = \"1 december 2007\"", "question": "What is the score on the 1 December 2007 game?", "context": "CREATE TABLE table_name_78 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE visitor = \"grizzlies\" AND date = \"30 december 2007\"", "question": "What is the score of the game with Grizzlies as the visitor team on 30 December 2007?", "context": "CREATE TABLE table_name_21 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_62 WHERE losses = 5 AND byes > 0", "question": "What is the lowest draw that has 5 losses and byes greater than 0?", "context": "CREATE TABLE table_name_62 (draws INTEGER, losses VARCHAR, byes VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_8 WHERE draws > 0 AND byes > 0", "question": "What is the lowest draw that is greater than 0 and byes greater than 0?", "context": "CREATE TABLE table_name_8 (losses INTEGER, draws VARCHAR, byes VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_41 WHERE losses = 13 AND wins < 5", "question": "What is the total number of byes that has 13 losses and wins less than 5?", "context": "CREATE TABLE table_name_41 (byes VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_1 WHERE draws = 1 AND against = 1374", "question": "What is the total number of byes that has 1 draw and an against of 1374?", "context": "CREATE TABLE table_name_1 (byes VARCHAR, draws VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_3 WHERE wins = 11 AND tallangatta_dfl = \"barnawartha\"", "question": "What is the total number of byes that has 11 wins and a Tallangatta DFL of Barnawartha?", "context": "CREATE TABLE table_name_3 (byes VARCHAR, wins VARCHAR, tallangatta_dfl VARCHAR)"}, {"answer": "SELECT summer_olympics FROM table_name_3 WHERE city = \"tokyo\"", "question": "When did the Summer Olympics occur in Tokyo?", "context": "CREATE TABLE table_name_3 (summer_olympics VARCHAR, city VARCHAR)"}, {"answer": "SELECT current_status FROM table_name_70 WHERE livery = \"callander coal company grey\"", "question": "What is the Current status of Callander Coal company grey?", "context": "CREATE TABLE table_name_70 (current_status VARCHAR, livery VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE livery = \"kinneil sandy red\"", "question": "When was the livery of Kinneil Sandy Red?", "context": "CREATE TABLE table_name_32 (date VARCHAR, livery VARCHAR)"}, {"answer": "SELECT number_ & _name FROM table_name_18 WHERE date = \"1962\" AND livery = \"br bauxite\"", "question": "What is the name and number in 1962 when livery was Br Bauxite?", "context": "CREATE TABLE table_name_18 (number_ VARCHAR, _name VARCHAR, date VARCHAR, livery VARCHAR)"}, {"answer": "SELECT number_ & _name FROM table_name_1 WHERE date = \"1964\"", "question": "What is the name and number in 1964?", "context": "CREATE TABLE table_name_1 (number_ VARCHAR, _name VARCHAR, date VARCHAR)"}, {"answer": "SELECT description FROM table_name_81 WHERE livery = \"br grey\"", "question": "What is the description for the livery Br Grey?", "context": "CREATE TABLE table_name_81 (description VARCHAR, livery VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_64 WHERE driver = \"mika salo\"", "question": "Which is least lap is mika salo in?", "context": "CREATE TABLE table_name_64 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_61 WHERE grid = 7", "question": "What time is grid 7 in?", "context": "CREATE TABLE table_name_61 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT result FROM table_name_40 WHERE goals = \"cook 3/6\"", "question": "What was the score of cook 3/6?", "context": "CREATE TABLE table_name_40 (result VARCHAR, goals VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_41 WHERE year > 1990 AND entrant = \"minardi scuderia italia\" AND points = 4", "question": "What is the Chassis having a year later than 1990, and Minardi Scuderia Italia as an entrant, and 4 points?", "context": "CREATE TABLE table_name_41 (chassis VARCHAR, points VARCHAR, year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT gender FROM table_name_16 WHERE decile > 1 AND name = \"south auckland seventh-day adventist school\"", "question": "Which gender had a decile of more than 1 and featured the South Auckland Seventh-Day Adventist School?", "context": "CREATE TABLE table_name_16 (gender VARCHAR, decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_13 WHERE authority = \"state\"", "question": "Which name has an authority of state?", "context": "CREATE TABLE table_name_13 (name VARCHAR, authority VARCHAR)"}, {"answer": "SELECT decile FROM table_name_90 WHERE name = \"mayfield school\"", "question": "Which decile features Mayfield School?", "context": "CREATE TABLE table_name_90 (decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT record FROM table_name_87 WHERE date = \"july 28\"", "question": "What was the record on July 28?", "context": "CREATE TABLE table_name_87 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_10 WHERE date = \"july 5\"", "question": "How many people attended on July 5?", "context": "CREATE TABLE table_name_10 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_88 WHERE award = \"drama desk award\" AND category = \"outstanding sound design\"", "question": "Which production won the drama desk award as well as the category of outstanding sound design?", "context": "CREATE TABLE table_name_88 (result VARCHAR, award VARCHAR, category VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_30 WHERE category = \"outstanding director of a musical\"", "question": "Who was nominated for outstanding director of a musical?", "context": "CREATE TABLE table_name_30 (nominee VARCHAR, category VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_63 WHERE award = \"tony award\" AND nominee = \"terry johnson\"", "question": "In what year was Terry Johnson nominated for a Tony award?", "context": "CREATE TABLE table_name_63 (year VARCHAR, award VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT year FROM table_name_72 WHERE award = \"tony award\" AND category = \"best revival of a musical\"", "question": "What year was there a Tony award category of Best Revival of a Musical?", "context": "CREATE TABLE table_name_72 (year VARCHAR, award VARCHAR, category VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_95 WHERE away_team = \"fitzroy\"", "question": "What is the crowd size of the Away team, Fitzroy?", "context": "CREATE TABLE table_name_95 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_77 WHERE venue = \"princes park\"", "question": "Which Away team uses Princes Park as it's venue?", "context": "CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_32 WHERE home_team = \"north melbourne\"", "question": "What was the lowest Crowd Size for the Home Team of North Melbourne?", "context": "CREATE TABLE table_name_32 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_79 WHERE away_team = \"st kilda\"", "question": "What was the attendance when St Kilda played as the away team?", "context": "CREATE TABLE table_name_79 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_67 WHERE winner = \"bc 2\"", "question": "Tell me the opponent for winner of bc 2", "context": "CREATE TABLE table_name_67 (opponent VARCHAR, winner VARCHAR)"}, {"answer": "SELECT score FROM table_name_3 WHERE opponent = \"holy cross\" AND result = \"push\"", "question": "Tell me the score for opponent of holy cross and result of push", "context": "CREATE TABLE table_name_3 (score VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE date = \"1978-12-16\"", "question": "Tell me the score on 1978-12-16", "context": "CREATE TABLE table_name_91 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_5 WHERE date = \"1979-01-17\"", "question": "Tell me the result for 1979-01-17", "context": "CREATE TABLE table_name_5 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_83 WHERE winner = \"bc 3\"", "question": "I want the result for winner of bc 3", "context": "CREATE TABLE table_name_83 (result VARCHAR, winner VARCHAR)"}, {"answer": "SELECT save FROM table_name_82 WHERE opponent = \"yankees\" AND date = \"july 25\"", "question": "What is the save when Yankees are the opponents on July 25?", "context": "CREATE TABLE table_name_82 (save VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE save = \"||27,108||63\u201344\"", "question": "What score occurred when the save was ||27,108||63\u201344?", "context": "CREATE TABLE table_name_93 (score VARCHAR, save VARCHAR)"}, {"answer": "SELECT loss FROM table_name_50 WHERE save = \"||12,838||48\u201335\"", "question": "What is the resulting loss when a save is ||12,838||48\u201335?", "context": "CREATE TABLE table_name_50 (loss VARCHAR, save VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE save = \"||54,918||50\u201336\"", "question": "On what date did a save of ||54,918||50\u201336 occur?", "context": "CREATE TABLE table_name_73 (date VARCHAR, save VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE save = \"||25,354||63\u201343\"", "question": "What was the score when a save of ||25,354||63\u201343 occurred?", "context": "CREATE TABLE table_name_49 (score VARCHAR, save VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_16 WHERE apps < 3", "question": "Tell me the average goals with apps less than 3", "context": "CREATE TABLE table_name_16 (goals INTEGER, apps INTEGER)"}, {"answer": "SELECT time_retired FROM table_name_89 WHERE grid < 10 AND laps > 20 AND constructor = \"talbot-lago - talbot\"", "question": "What is the Time/Retired for a Grid smaller than 10, a Laps larger than 20, and a Constructor of talbot-lago - talbot?", "context": "CREATE TABLE table_name_89 (time_retired VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_68 WHERE constructor = \"maserati\"", "question": "What is the high grid total for maserati?", "context": "CREATE TABLE table_name_68 (grid INTEGER, constructor VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_64 WHERE laps < 35 AND constructor = \"maserati\"", "question": "What is the high grid total for maserati with under 35 laps?", "context": "CREATE TABLE table_name_64 (grid INTEGER, laps VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_28 WHERE race = \"brazilian grand prix\"", "question": "What is the Pole Position of the Brazilian Grand Prix race?", "context": "CREATE TABLE table_name_28 (pole_position VARCHAR, race VARCHAR)"}, {"answer": "SELECT race AS Winner FROM table_name_89 WHERE location = \"monza\"", "question": "Who was the winner of the race in monza?", "context": "CREATE TABLE table_name_89 (race VARCHAR, location VARCHAR)"}, {"answer": "SELECT position FROM table_name_18 WHERE player = \"chris moreno\"", "question": "What position for chris moreno?", "context": "CREATE TABLE table_name_18 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_1 WHERE player = \"brian lemay\"", "question": "When was brian lemay born?", "context": "CREATE TABLE table_name_1 (date_of_birth__age_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_74 WHERE round = 7", "question": "Tell me the player for 7 round", "context": "CREATE TABLE table_name_74 (player VARCHAR, round VARCHAR)"}, {"answer": "SELECT partially_deleted FROM table_name_78 WHERE cerclis_id = \"fld980494959\"", "question": "Which Superfund site has the CERCLIS ID fld980494959?", "context": "CREATE TABLE table_name_78 (partially_deleted VARCHAR, cerclis_id VARCHAR)"}, {"answer": "SELECT name FROM table_name_88 WHERE cerclis_id = \"fld004092532\"", "question": "Which site has the CERCLIS ID fld004092532?", "context": "CREATE TABLE table_name_88 (name VARCHAR, cerclis_id VARCHAR)"}, {"answer": "SELECT cerclis_id FROM table_name_96 WHERE county = \"polk\" AND deleted = \"08/04/2009\"", "question": "What is the CERCLIS ID of the site in Polk County, with the date 08/04/2009?", "context": "CREATE TABLE table_name_96 (cerclis_id VARCHAR, county VARCHAR, deleted VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE tournament = \"konica san jose classic\"", "question": "When is the tournament of konica san jose classic?", "context": "CREATE TABLE table_name_41 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_49 WHERE margin_of_victory = \"playoff\"", "question": "Which tournament had a playoff with a margin of victory?", "context": "CREATE TABLE table_name_49 (tournament VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_60 WHERE tournament = \"konica san jose classic\"", "question": "Who was the runner up in the konica san jose classic Tournament?", "context": "CREATE TABLE table_name_60 (runner_up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_48 WHERE venue = \"western oval\"", "question": "What was the highest crowd size at the Western Oval?", "context": "CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT name FROM table_name_4 WHERE order = 1", "question": "Which name had an order number of 1?", "context": "CREATE TABLE table_name_4 (name VARCHAR, order VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_65 WHERE rounds = \"all\" AND chassis = \"jh24 jh25\" AND driver = \"gabriele tarquini\"", "question": "Who was the entrant for Gabriele Tarquini with all rounds and a JH24 JH25 Chassis?", "context": "CREATE TABLE table_name_65 (entrant VARCHAR, driver VARCHAR, rounds VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_5 WHERE driver = \"gary brabham\"", "question": "Who was the entrant for Gary Brabham?", "context": "CREATE TABLE table_name_5 (entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_4 WHERE driver = \"aguri suzuki\"", "question": "Who constructed Aguri Suzuki's car?", "context": "CREATE TABLE table_name_4 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(highest_average_point_ratings) FROM table_name_29 WHERE genre = \"modern suspense\" AND number_of_episodes = 21", "question": "What was the highest average point rating for a modern suspense show with 21 episodes?", "context": "CREATE TABLE table_name_29 (highest_average_point_ratings INTEGER, genre VARCHAR, number_of_episodes VARCHAR)"}, {"answer": "SELECT venue FROM table_name_81 WHERE result = \"22-20\"", "question": "Where was the game with the result of 22-20 played?", "context": "CREATE TABLE table_name_81 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_85 WHERE scored > 1", "question": "Where was the game with a higher score than 1 played?", "context": "CREATE TABLE table_name_85 (venue VARCHAR, scored INTEGER)"}, {"answer": "SELECT tournament FROM table_name_98 WHERE opponent = \"crusaders\"", "question": "What tournament did the Crusaders play in?", "context": "CREATE TABLE table_name_98 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_78 WHERE venue = \"lake oval\"", "question": "What was the home score at Lake Oval?", "context": "CREATE TABLE table_name_78 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_24 WHERE gold = 2 AND bronze = 0 AND rank < 2", "question": "What is the highest metal total when there are 2 Gold medals, 0 Bronze metals, and the rank is smaller than 2?", "context": "CREATE TABLE table_name_24 (total INTEGER, rank VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_71 WHERE bronze = 0 AND nation = \"united kingdom\"", "question": "What is the total number of silver medals when there are 0 Bronze medals, and the nation is the United Kingdom?", "context": "CREATE TABLE table_name_71 (silver VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_99 WHERE total = 1 AND nation = \"united kingdom\"", "question": "What is the highest rank when the metal total is 1 and the nation is the United Kingdom?", "context": "CREATE TABLE table_name_99 (rank INTEGER, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_18 WHERE bronze > 0 AND nation = \"switzerland\" AND gold < 1", "question": "What is the lowest metal total when the Bronze metals are larger than 0, the Gold medals are smaller than 1, and the nation is Switzerland?", "context": "CREATE TABLE table_name_18 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_71 WHERE gold > 1 AND silver < 0", "question": "What is the highest Bronze medal count when the Gold medals are larger than 1 and the silver are smaller than 0?", "context": "CREATE TABLE table_name_71 (bronze INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE race = \"swiss grand prix\"", "question": "When was the swiss grand prix?", "context": "CREATE TABLE table_name_91 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_83 WHERE fastest_lap = \"alberto ascari jos\u00e9 froil\u00e1n gonz\u00e1lez\"", "question": "What was the circuit for alberto ascari jos\u00e9 froil\u00e1n gonz\u00e1lez?", "context": "CREATE TABLE table_name_83 (circuit VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE race = \"italian grand prix\"", "question": "Name the date of the italian grand prix", "context": "CREATE TABLE table_name_34 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_69 WHERE race = \"belgian grand prix\"", "question": "Name the constructor for the belgian grand prix", "context": "CREATE TABLE table_name_69 (constructor VARCHAR, race VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE race = \"italian grand prix\"", "question": "Name the date for the italian grand prix", "context": "CREATE TABLE table_name_67 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_56 WHERE stadium = \"westpac stadium\" AND attendance = \"31,853\"", "question": "Who's the opposition at westpac stadium when the attendance is 31,853?", "context": "CREATE TABLE table_name_56 (opposition VARCHAR, stadium VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE opposition = \"sydney fc\" AND round = \"round 19\"", "question": "When was the opposition sydney fc on round 19?", "context": "CREATE TABLE table_name_33 (date VARCHAR, opposition VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_32 WHERE opposition = \"adelaide united\" AND attendance = \"18,345\"", "question": "What round was adelaide united the opposition with an attendance of 18,345?", "context": "CREATE TABLE table_name_32 (round VARCHAR, opposition VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_39 WHERE stadium = \"11,682 excl. exhibition match\"", "question": "Who was the opposition at 11,682 excl. exhibition match?", "context": "CREATE TABLE table_name_39 (opposition VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT round FROM table_name_55 WHERE attendance = \"12,127\"", "question": "What round has an attendance of 12,127?", "context": "CREATE TABLE table_name_55 (round VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_73 WHERE opponent = \"everton\"", "question": "What is the result against everton?", "context": "CREATE TABLE table_name_73 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT party FROM table_name_3 WHERE name = \"fran\u00e7ois gendron\"", "question": "Fran\u00e7ois Gendron was in which party?", "context": "CREATE TABLE table_name_3 (party VARCHAR, name VARCHAR)"}, {"answer": "SELECT took_office FROM table_name_90 WHERE left_office = \"2003\"", "question": "The deputy that left office in 2003 took office in which year?", "context": "CREATE TABLE table_name_90 (took_office VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT name FROM table_name_97 WHERE took_office = \"1976\"", "question": "Which deputy took office in 1976?", "context": "CREATE TABLE table_name_97 (name VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT film FROM table_name_64 WHERE year = \"2000\"", "question": "Which film took place in 2000?", "context": "CREATE TABLE table_name_64 (film VARCHAR, year VARCHAR)"}, {"answer": "SELECT song FROM table_name_76 WHERE status = \"nominated\" AND name = \"tan dun\"", "question": "Which song named Tan Dun was nominated?", "context": "CREATE TABLE table_name_76 (song VARCHAR, status VARCHAR, name VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_74 WHERE grid = 11", "question": "Who was the constructor when the grid was 11?", "context": "CREATE TABLE table_name_74 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_25 WHERE constructor = \"brm\" AND driver = \"piers courage\" AND grid > 8", "question": "How many laps were completed by Piers Courage when BRM was the constructor and the grid is larger than 8?", "context": "CREATE TABLE table_name_25 (laps VARCHAR, grid VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT psip_short_name FROM table_name_55 WHERE channel > 63.4", "question": "What is the short name for a channelgreater than 63.4?", "context": "CREATE TABLE table_name_55 (psip_short_name VARCHAR, channel INTEGER)"}, {"answer": "SELECT programming FROM table_name_16 WHERE channel < 63.2", "question": "For the channel smaller than 63.2, what was the programming?", "context": "CREATE TABLE table_name_16 (programming VARCHAR, channel INTEGER)"}, {"answer": "SELECT horse FROM table_name_15 WHERE faults = \"0\" AND total = 4.1", "question": "Tell me the horse with faults of 0 when the total is 4.1", "context": "CREATE TABLE table_name_15 (horse VARCHAR, faults VARCHAR, total VARCHAR)"}, {"answer": "SELECT horse FROM table_name_11 WHERE faults = \"9\" AND total = 46.36", "question": "Tell me the horse when the faults are 9 and the total is 46.36", "context": "CREATE TABLE table_name_11 (horse VARCHAR, faults VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_99 WHERE horse = \"spender s\"", "question": "Tell me the highest total when the horse is spender s", "context": "CREATE TABLE table_name_99 (total INTEGER, horse VARCHAR)"}, {"answer": "SELECT round_1_ + _2a_points FROM table_name_61 WHERE horse = \"poncorde\"", "question": "Name the round 1 +2A points for horse of poncorde", "context": "CREATE TABLE table_name_61 (round_1_ VARCHAR, _2a_points VARCHAR, horse VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_48 WHERE round_1_ + _2a_points = \"19.620\"", "question": "Name the total number of total when round 1 +2A points of 19.620", "context": "CREATE TABLE table_name_48 (total VARCHAR, round_1_ VARCHAR, _2a_points VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_54 WHERE away_team = \"melbourne\"", "question": "Which Home team has an Away team of melbourne?", "context": "CREATE TABLE table_name_54 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_26 WHERE venue = \"corio oval\"", "question": "What is the away team at corio oval?", "context": "CREATE TABLE table_name_26 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_28 WHERE venue = \"lake oval\"", "question": "What is the away team at lake oval?", "context": "CREATE TABLE table_name_28 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_68 WHERE home_team = \"geelong\"", "question": "What is the away team score with geelong home team?", "context": "CREATE TABLE table_name_68 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_79 WHERE home_team = \"collingwood\"", "question": "What is the home team score when the home team is Collingwood?", "context": "CREATE TABLE table_name_79 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE venue = \"princes park\"", "question": "What is the date of the game when the venue is Princes Park?", "context": "CREATE TABLE table_name_40 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_32 WHERE school = \"texas a&m\"", "question": "What position does the player from texas a&m play?", "context": "CREATE TABLE table_name_32 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT time FROM table_name_52 WHERE laps = 18 AND grid = 5", "question": "What is the time for 18 laps and 5 grids?", "context": "CREATE TABLE table_name_52 (time VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE race = \"dodge dealers grand prix\" AND class = \"gts\"", "question": "On which date was the Dodge Dealers Grand Prix GTS class race?", "context": "CREATE TABLE table_name_46 (date VARCHAR, race VARCHAR, class VARCHAR)"}, {"answer": "SELECT race FROM table_name_36 WHERE circuit = \"las vegas motor speedway\" AND length = \"2 hours\"", "question": "Which race was on the Las Vegas Motor Speedway for 2 hours?", "context": "CREATE TABLE table_name_36 (race VARCHAR, circuit VARCHAR, length VARCHAR)"}, {"answer": "SELECT class FROM table_name_3 WHERE length = \"2 hours\" AND circuit = \"las vegas motor speedway\"", "question": "Which class was on the Las Vegas Motor Speedway for 2 hours?", "context": "CREATE TABLE table_name_3 (class VARCHAR, length VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_16 WHERE class = \"both\" AND date = \"june 1\"", "question": "What circuit was on June 1 with a class of both?", "context": "CREATE TABLE table_name_16 (circuit VARCHAR, class VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE class = \"gts\" AND circuit = \"mosport international raceway\"", "question": "Which date was a GTS class on the Mosport International Raceway?", "context": "CREATE TABLE table_name_98 (date VARCHAR, class VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT AVG(prom__m_) FROM table_name_75 WHERE height__m_ > 733 AND class = \"hewitt\" AND peak = \"kirk fell east top\"", "question": "What is the average prom (m) when the height (m) is more than 733, the class is Hewitt, and the peak is Kirk Fell East Top?", "context": "CREATE TABLE table_name_75 (prom__m_ INTEGER, peak VARCHAR, height__m_ VARCHAR, class VARCHAR)"}, {"answer": "SELECT college FROM table_name_47 WHERE school = \"episcopal academy\"", "question": "What college picked someone from The Episcopal Academy?", "context": "CREATE TABLE table_name_47 (college VARCHAR, school VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE venue = \"moorabbin oval\"", "question": "When was the game at Moorabbin Oval?", "context": "CREATE TABLE table_name_98 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_8 WHERE home_team = \"hawthorn\"", "question": "Who did Hawthorn play against at their home match?", "context": "CREATE TABLE table_name_8 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT season FROM table_name_18 WHERE points > 21 AND finish = \"6th north\"", "question": "What season has a 6th north finish and more than 21 points?", "context": "CREATE TABLE table_name_18 (season VARCHAR, points VARCHAR, finish VARCHAR)"}, {"answer": "SELECT language FROM table_name_62 WHERE music_director = \"raj kamal\"", "question": "What language does Raj Kamal speak?", "context": "CREATE TABLE table_name_62 (language VARCHAR, music_director VARCHAR)"}, {"answer": "SELECT film_name FROM table_name_50 WHERE year > 1972 AND language = \"hindi\" AND lyricist = \"ravindra jain\" AND music_director = \"ravindra jain\"", "question": "What 1972 Hindi film had Ravindra Jain directing the music?", "context": "CREATE TABLE table_name_50 (film_name VARCHAR, music_director VARCHAR, lyricist VARCHAR, year VARCHAR, language VARCHAR)"}, {"answer": "SELECT film_name FROM table_name_60 WHERE language = \"hindi\" AND lyricist = \"ravindra jain\" AND music_director = \"ravindra jain\" AND year = 1979", "question": "What 1979 Hindi film had Ravindra Jain directing music?", "context": "CREATE TABLE table_name_60 (film_name VARCHAR, year VARCHAR, music_director VARCHAR, language VARCHAR, lyricist VARCHAR)"}, {"answer": "SELECT make FROM table_name_17 WHERE car__number < 40 AND points < 151 AND winnings = \"$84,400\"", "question": "Which driver has a # smaller than 40, less than 151 points, and Winnings of $84,400?", "context": "CREATE TABLE table_name_17 (make VARCHAR, winnings VARCHAR, car__number VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_33 WHERE winnings = \"$67,675\" AND points < 61", "question": "Which driver has less than 61 points, but winnings of $67,675?", "context": "CREATE TABLE table_name_33 (laps INTEGER, winnings VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_28 WHERE winnings = \"$133,386\"", "question": "Which driver has the highest point total after winning $133,386?", "context": "CREATE TABLE table_name_28 (points INTEGER, winnings VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_38 WHERE player = \"martin havlat\"", "question": "What is the average round for martin havlat?", "context": "CREATE TABLE table_name_38 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT name FROM table_name_38 WHERE tries = 1 AND club = \"munster\"", "question": "Who was part of Club Munster with 1 try?", "context": "CREATE TABLE table_name_38 (name VARCHAR, tries VARCHAR, club VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_49 WHERE home = \"anaheim\" AND date = \"april 12\"", "question": "Who was the Visitor when the Home team was Anaheim on the Date of April 12?", "context": "CREATE TABLE table_name_49 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_89 WHERE date = \"april 18\"", "question": "What was the Decision on April 18?", "context": "CREATE TABLE table_name_89 (decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_38 WHERE away_team = \"south melbourne\"", "question": "What did the team score when playing south melbourne at home?", "context": "CREATE TABLE table_name_38 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_26 WHERE venue = \"mcg\"", "question": "Which team lives in mcg?", "context": "CREATE TABLE table_name_26 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_54 WHERE home_team = \"st kilda\"", "question": "What was the crowd size when st kilda played home?", "context": "CREATE TABLE table_name_54 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_19 WHERE home_team = \"south melbourne\"", "question": "What is the home field of the South Melbourne team?", "context": "CREATE TABLE table_name_19 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_64 WHERE nationality = \"finland\"", "question": "For the player from Finland, what is the highest overall pick rank?", "context": "CREATE TABLE table_name_64 (overall INTEGER, nationality VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_99 WHERE driver = \"rolf stommelen\" AND grid > 18", "question": "what is the least laps when the driver is rolf stommelen and the grid is more than 18?", "context": "CREATE TABLE table_name_99 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_71 WHERE grid = 20", "question": "what is the most laps with a grid of 20?", "context": "CREATE TABLE table_name_71 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_35 WHERE away_team = \"north melbourne\"", "question": "With a North Melbourne away team, what is the average crowd?", "context": "CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_57 WHERE away_team = \"fitzroy\"", "question": "Which venue does Fitzroy play as an away team?", "context": "CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_81 WHERE venue = \"glenferrie oval\"", "question": "In the game at Glenferrie Oval, what is the home team score?", "context": "CREATE TABLE table_name_81 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_95 WHERE home_team = \"essendon\"", "question": "In the game against Essendon at home, what did the away team score?", "context": "CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(lowest) FROM table_name_67 WHERE stadium = \"ibrox stadium\" AND average > 49 OFFSET 143", "question": "What's the highest lowest number of capacity that ibrox stadium has when the average is larger than 49,143?", "context": "CREATE TABLE table_name_67 (lowest INTEGER, stadium VARCHAR, average VARCHAR)"}, {"answer": "SELECT role FROM table_name_55 WHERE direction = \"thulasidas\"", "question": "Which role had thulasidas direction?", "context": "CREATE TABLE table_name_55 (role VARCHAR, direction VARCHAR)"}, {"answer": "SELECT role FROM table_name_34 WHERE year < 1991 AND direction = \"joemon\"", "question": "Which role did joemon play before 1991?", "context": "CREATE TABLE table_name_34 (role VARCHAR, year VARCHAR, direction VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_52 WHERE top_10 = 2 AND events > 8 AND cuts_made > 6", "question": "What is the number of wins that has a top-10 of 2, and more events than 8, more cuts than 6?", "context": "CREATE TABLE table_name_52 (wins VARCHAR, cuts_made VARCHAR, top_10 VARCHAR, events VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_76 WHERE top_25 = 13 AND events < 32", "question": "What is the highest number of wins that has a top-25 of 13 and events less than 32?", "context": "CREATE TABLE table_name_76 (wins INTEGER, top_25 VARCHAR, events VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_79 WHERE tournament = \"u.s. open\" AND top_25 < 4", "question": "What is the number of Tournament of U.S. Open wins with a Top-25 smaller than 4?", "context": "CREATE TABLE table_name_79 (wins VARCHAR, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT theme FROM table_name_59 WHERE show = \"week 1\" AND order = \"2\"", "question": "For the week 1 show and order 2, what was the theme?", "context": "CREATE TABLE table_name_59 (theme VARCHAR, show VARCHAR, order VARCHAR)"}, {"answer": "SELECT player FROM table_name_68 WHERE overall = \"126\"", "question": "Which Player has an Overall of 126?", "context": "CREATE TABLE table_name_68 (player VARCHAR, overall VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE nationality = \"united states\" AND overall = \"61 (from boston)\"", "question": "Which Player has a Nationality of united states, and an Overall of 61 (from boston)?", "context": "CREATE TABLE table_name_79 (player VARCHAR, nationality VARCHAR, overall VARCHAR)"}, {"answer": "SELECT round FROM table_name_92 WHERE club_team = \"brandon wheat kings (whl)\"", "question": "Which Round has a Club team of brandon wheat kings (whl)?", "context": "CREATE TABLE table_name_92 (round VARCHAR, club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_62 WHERE round = \"t\" AND team = \"minneapolis lakers\"", "question": "What was the position of the team Minneapolis Lakers during round T?", "context": "CREATE TABLE table_name_62 (position VARCHAR, round VARCHAR, team VARCHAR)"}, {"answer": "SELECT pick FROM table_name_56 WHERE college = \"kentucky\" AND team = \"washington capitols\"", "question": "What was the pick for the game at the College of Kentucky with the team Washington Capitols?", "context": "CREATE TABLE table_name_56 (pick VARCHAR, college VARCHAR, team VARCHAR)"}, {"answer": "SELECT pick FROM table_name_14 WHERE round = \"2\" AND team = \"indianapolis olympians\"", "question": "What was the pick for round 2 with the team Indianapolis Olympians?", "context": "CREATE TABLE table_name_14 (pick VARCHAR, round VARCHAR, team VARCHAR)"}, {"answer": "SELECT points FROM table_name_67 WHERE draw = 5", "question": "How many points does Draw 5 have?", "context": "CREATE TABLE table_name_67 (points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MIN(place) FROM table_name_4 WHERE artist = \"all mixed up\"", "question": "Where did the artist All Mixed Up place?", "context": "CREATE TABLE table_name_4 (place INTEGER, artist VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE game = 2", "question": "What's the score of Game 2?", "context": "CREATE TABLE table_name_73 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT place FROM table_name_81 WHERE score = 70 - 67 - 69 - 69 = 275", "question": "Can you tell me the Place that has the Score of 70-67-69-69=275?", "context": "CREATE TABLE table_name_81 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_84 WHERE score = 69 - 72 - 67 - 71 = 279 AND player = \"loren roberts\"", "question": "Can you tell me the sum of Money ($) that has the Score of 69-72-67-71=279, and the Player of loren roberts?", "context": "CREATE TABLE table_name_84 (money___ INTEGER, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_94 WHERE score = 69 - 72 - 67 - 71 = 279", "question": "Can you tell me the Country that has the Score of 69-72-67-71=279?", "context": "CREATE TABLE table_name_94 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT driver FROM table_name_4 WHERE constructor = \"renault\" AND q1_pos > 2", "question": "Who is the driver whose car was constructed by Renault and whose Q1 pos is greater than 2?", "context": "CREATE TABLE table_name_4 (driver VARCHAR, constructor VARCHAR, q1_pos VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_84 WHERE q1_pos < 8 AND q1_time = \"1:15.038\"", "question": "Who was the constructor of the car that had a Q1 pos of less than 8 and a Q1 time of 1:15.038?", "context": "CREATE TABLE table_name_84 (constructor VARCHAR, q1_pos VARCHAR, q1_time VARCHAR)"}, {"answer": "SELECT q1 + q2_time FROM table_name_51 WHERE q1_time = \"1:14.819\"", "question": "What is the Q1+Q2 time for the driver whose Q1 time was 1:14.819, ?", "context": "CREATE TABLE table_name_51 (q1 VARCHAR, q2_time VARCHAR, q1_time VARCHAR)"}, {"answer": "SELECT q1 + q2_time FROM table_name_35 WHERE q1_order = 13", "question": "What is the Q1+Q2 time for the driver whose Q1 order was 13?", "context": "CREATE TABLE table_name_35 (q1 VARCHAR, q2_time VARCHAR, q1_order VARCHAR)"}, {"answer": "SELECT round FROM table_name_72 WHERE opponents = \"nikola \u0107iri\u0107 du\u0161an vemi\u0107\"", "question": "For what round was the opponent nikola \u0107iri\u0107 du\u0161an vemi\u0107?", "context": "CREATE TABLE table_name_72 (round VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT surface FROM table_name_82 WHERE result = \"6\u20137 (6\u20137) , 7\u20136 (9\u20137) , 6\u20137 (4\u20137) , 7\u20135, 3\u20136\"", "question": "What was the surface when the result was 6\u20137 (6\u20137) , 7\u20136 (9\u20137) , 6\u20137 (4\u20137) , 7\u20135, 3\u20136?", "context": "CREATE TABLE table_name_82 (surface VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE country = \"fiji\"", "question": "What is the score of the player from fiji?", "context": "CREATE TABLE table_name_6 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_46 WHERE score = 70 - 66 - 67 = 203", "question": "What is the place of the player with a 70-66-67=203 score?", "context": "CREATE TABLE table_name_46 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_99 WHERE place = \"t6\"", "question": "Who is the player with a t6 place?", "context": "CREATE TABLE table_name_99 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_73 WHERE player = \"john cook\"", "question": "What is the place of player john cook?", "context": "CREATE TABLE table_name_73 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_98 WHERE score = 70 - 71 - 68 = 209", "question": "What is the country of the player with a 70-71-68=209 score?", "context": "CREATE TABLE table_name_98 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT casualties FROM table_name_3 WHERE intensity = \"unknown\" AND epicenter = \"bou\u00efra province\"", "question": "How many casualties were in the earthquake with an unknown intensity and an epicenter in the bou\u00efra province?", "context": "CREATE TABLE table_name_3 (casualties VARCHAR, intensity VARCHAR, epicenter VARCHAR)"}, {"answer": "SELECT magnitude FROM table_name_6 WHERE epicenter = \"biskra province\"", "question": "What is the magnitude of the earthquake with an epicenter in biskra province?", "context": "CREATE TABLE table_name_6 (magnitude VARCHAR, epicenter VARCHAR)"}, {"answer": "SELECT epicenter FROM table_name_10 WHERE intensity = \"unknown\" AND date = \"march 2, 1825\"", "question": "What is the epicenter of the earthquake on March 2, 1825 with an unknown intensity?", "context": "CREATE TABLE table_name_10 (epicenter VARCHAR, intensity VARCHAR, date VARCHAR)"}, {"answer": "SELECT epicenter FROM table_name_88 WHERE date = \"january 1, 1965\"", "question": "What is the epicenter on January 1, 1965?", "context": "CREATE TABLE table_name_88 (epicenter VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE winning_driver = \"antonio ascari\"", "question": "What date was the winning driver Antonio Ascari?", "context": "CREATE TABLE table_name_27 (date VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE name = \"coppa acerbo\"", "question": "What date was the name Coppa Acerbo?", "context": "CREATE TABLE table_name_7 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE circuit = \"tigullio\"", "question": "What date was the Tigullio Circuit?", "context": "CREATE TABLE table_name_24 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE circuit = \"madonie\"", "question": "What date was the Madonie Circuit?", "context": "CREATE TABLE table_name_22 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT surface FROM table_name_96 WHERE opponent_in_the_final = \"steven diez\"", "question": "What surface was the tournament played on against Steven Diez?", "context": "CREATE TABLE table_name_96 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE surface = \"hard\" AND tournament = \"sweden f2\"", "question": "What date was the game played on the hard surface at the Tournament of Sweden f2?", "context": "CREATE TABLE table_name_77 (date VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_44 WHERE tournament = \"great britain f16\"", "question": "What was the playing surface for the Tournament of Great Britain F16?", "context": "CREATE TABLE table_name_44 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_77 WHERE result = \"1-0\" AND venue = \"a\" AND opponent = \"newcastle united\"", "question": "Which Attendance has a Result of 1-0, and a Venue of A, and an Opponent of newcastle united?", "context": "CREATE TABLE table_name_77 (attendance INTEGER, opponent VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_99 WHERE height = 2.06 AND current_club = \"triumph lyubertsy\"", "question": "What's the position of the player with a Height of 2.06 and club of Triumph Lyubertsy?", "context": "CREATE TABLE table_name_99 (position VARCHAR, height VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT points FROM table_name_85 WHERE played < 76 AND average = 0.763", "question": "How many points were there when the average was 0.763 and the played was less than 76?", "context": "CREATE TABLE table_name_85 (points VARCHAR, played VARCHAR, average VARCHAR)"}, {"answer": "SELECT median_household_income FROM table_name_8 WHERE county = \"valley\"", "question": "What is the median household income in Valley County?", "context": "CREATE TABLE table_name_8 (median_household_income VARCHAR, county VARCHAR)"}, {"answer": "SELECT SUM(byes) FROM table_name_24 WHERE wins < 16 AND losses = 8 AND mininera_dfl = \"penshurst\" AND against < 1405", "question": "WHAT ARE THE BYES WITH A WIN SMALLER THAN 16, 8 LOSSES, AND AT PENSHURST, WITH AGAINST SMALLER THAN 1405?", "context": "CREATE TABLE table_name_24 (byes INTEGER, against VARCHAR, mininera_dfl VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(byes) FROM table_name_76 WHERE draws = 1 AND mininera_dfl = \"smw rovers\" AND wins > 6", "question": "WHAT ARE THE BYES WITH A DRAWS OF 1, SMW ROVERS, AND WINS LARGER THAN 6?", "context": "CREATE TABLE table_name_76 (byes INTEGER, wins VARCHAR, draws VARCHAR, mininera_dfl VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_35 WHERE losses < 17 AND draws > 1", "question": "WHAT IS THE HIGHEST AGAINST WITH LOSSES SMALLER THAN 17, DRAWS LARGER THAN 1?", "context": "CREATE TABLE table_name_35 (against INTEGER, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_72 WHERE against < 924 AND losses < 2", "question": "WHAT IS THE HIGHEST WINS WITH AGAINST SMALLER THAN 924, LOSSES SMALLER THAN 2?", "context": "CREATE TABLE table_name_72 (wins INTEGER, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_75 WHERE team_2 = \"belasica\"", "question": "What is the score for the 2nd leg when Belasica is team 2?", "context": "CREATE TABLE table_name_75 (team_2 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_65 WHERE team_2 = \"cementarnica\"", "question": "When Cementarnica is team 2 what is the aggregate score?", "context": "CREATE TABLE table_name_65 (agg VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_name_36 WHERE current_club = \"alba berlin\" AND player = \"patrick femerling\"", "question": "What is the height of Patrick Femerling, of the Alba Berlin club?", "context": "CREATE TABLE table_name_36 (height VARCHAR, current_club VARCHAR, player VARCHAR)"}, {"answer": "SELECT year_born__age_ FROM table_name_93 WHERE height > 2.04 AND current_club = \"los angeles clippers\"", "question": "What is the Year born (Age) for the player who is taller than 2.04 and currently plays for the Los Angeles Clippers?", "context": "CREATE TABLE table_name_93 (year_born__age_ VARCHAR, height VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT position FROM table_name_77 WHERE current_club = \"alba berlin\" AND height > 1.96 AND year_born__age_ = \"july 23, 1985 (age28)\"", "question": "What is the position for the player from the Alba Berlin club who is taller than 1.96 and whose ear born (Age) is july 23, 1985 (age28)?", "context": "CREATE TABLE table_name_77 (position VARCHAR, year_born__age_ VARCHAR, current_club VARCHAR, height VARCHAR)"}, {"answer": "SELECT against FROM table_name_76 WHERE date = \"17/02/1979\"", "question": "What is the against for 17/02/1979?", "context": "CREATE TABLE table_name_76 (against VARCHAR, date VARCHAR)"}, {"answer": "SELECT opposing_teams FROM table_name_26 WHERE date = \"24/11/1979\"", "question": "On 24/11/1979, what is the opposing teams?", "context": "CREATE TABLE table_name_26 (opposing_teams VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_19 WHERE date = \"24/11/1979\"", "question": "Where was the venue for 24/11/1979?", "context": "CREATE TABLE table_name_19 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT status FROM table_name_86 WHERE date = \"24/11/1979\"", "question": "What is the status for 24/11/1979?", "context": "CREATE TABLE table_name_86 (status VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_54 WHERE surface = \"clay\" AND opponent = \"sofia shapatava\"", "question": "What is the tournament with a clay surface and sofia shapatava as the opponent?", "context": "CREATE TABLE table_name_54 (tournament VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_50 WHERE date = \"5 october 2004\"", "question": "What is the tournament on 5 October 2004?", "context": "CREATE TABLE table_name_50 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE date = \"5 october 2004\"", "question": "What is the score on 5 October 2004?", "context": "CREATE TABLE table_name_1 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_17 WHERE tournament = \"us open\"", "question": "What was the result in 2009 for the US Open Tournament?", "context": "CREATE TABLE table_name_17 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_4 WHERE 2007 = \"a\" AND tournament = \"australian open\"", "question": "For the Australian Open, in 2007 the result was A, but what was the result in 2012?", "context": "CREATE TABLE table_name_4 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_12 WHERE tournament = \"us open\"", "question": "What was the result in the 2012 for the US Open tournament?", "context": "CREATE TABLE table_name_12 (tournament VARCHAR)"}, {"answer": "SELECT ends FROM table_name_77 WHERE since = 2007 AND name = \"milito\"", "question": "WHAT IS THE ENDS IN 2007 AND NAMED MILITO?", "context": "CREATE TABLE table_name_77 (ends VARCHAR, since VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_85 WHERE gold = 1 AND nation = \"portugal\" AND bronze > 0", "question": "Portugal has how many total number of medals when there is 1 gold medal, and bronze medals are greater than 0?", "context": "CREATE TABLE table_name_85 (total VARCHAR, bronze VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT rank FROM table_name_15 WHERE total > 4 AND nation = \"spain\"", "question": "Spain with a total of more than 4 medals is in what rank?", "context": "CREATE TABLE table_name_15 (rank VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_57 WHERE points = \"48\"", "question": "How many tries for were there 48 points?", "context": "CREATE TABLE table_name_57 (tries_for VARCHAR, points VARCHAR)"}, {"answer": "SELECT played FROM table_name_32 WHERE tries_for = \"50\"", "question": "What is the played for tries for 50?", "context": "CREATE TABLE table_name_32 (played VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT club FROM table_name_95 WHERE points = \"77\"", "question": "Which club has 77 points?", "context": "CREATE TABLE table_name_95 (club VARCHAR, points VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_25 WHERE points_against = \"214\"", "question": "What is the tries for when the points against is 214?", "context": "CREATE TABLE table_name_25 (tries_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT title FROM table_name_65 WHERE year = 1940", "question": "In what title did he act in 1940?", "context": "CREATE TABLE table_name_65 (title VARCHAR, year VARCHAR)"}, {"answer": "SELECT title FROM table_name_84 WHERE role = \"molly o'day\"", "question": "What is the title of the work where the role was Molly O'Day?", "context": "CREATE TABLE table_name_84 (title VARCHAR, role VARCHAR)"}, {"answer": "SELECT role FROM table_name_77 WHERE format_genre = \"original play, comedy\" AND year = 1938", "question": "What is the role in an original play, comedy in 1938?", "context": "CREATE TABLE table_name_77 (role VARCHAR, format_genre VARCHAR, year VARCHAR)"}, {"answer": "SELECT series_3 FROM table_name_25 WHERE series_5 = \"gavin duffy\"", "question": "What is the series 3 with gavin duffy in series 5?", "context": "CREATE TABLE table_name_25 (series_3 VARCHAR, series_5 VARCHAR)"}, {"answer": "SELECT series_4 FROM table_name_70 WHERE series_1 = \"sarah newman\"", "question": "What is the series 4 with sarah newman in series 1?", "context": "CREATE TABLE table_name_70 (series_4 VARCHAR, series_1 VARCHAR)"}, {"answer": "SELECT series_3 FROM table_name_77 WHERE seat > 4", "question": "What is the series 3 with more than 4 seats?", "context": "CREATE TABLE table_name_77 (series_3 VARCHAR, seat INTEGER)"}, {"answer": "SELECT COUNT(seat) FROM table_name_13 WHERE series_4 = \"gavin duffy\"", "question": "What is the total number of seats with gavin duffy in series 4?", "context": "CREATE TABLE table_name_13 (seat VARCHAR, series_4 VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_28 WHERE draws < 9 AND wins = 11 AND goals_for > 40", "question": "What is the highest points of the club with less than 9 draws, 11 wins, and more than 40 goals?", "context": "CREATE TABLE table_name_28 (points INTEGER, goals_for VARCHAR, draws VARCHAR, wins VARCHAR)"}, {"answer": "SELECT club FROM table_name_47 WHERE losses < 10 AND goals_for < 55 AND wins = 13", "question": "What club has less than 10 losses, less than 55 goals, and 13 wins?", "context": "CREATE TABLE table_name_47 (club VARCHAR, wins VARCHAR, losses VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_70 WHERE goals_against = 53 AND points = 26 AND goal_difference > -11", "question": "What is the lowest position of the club with 53 goals against, 26 points, and a -11 goal difference?", "context": "CREATE TABLE table_name_70 (position INTEGER, goal_difference VARCHAR, goals_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_85 WHERE goals_against > 31 AND goals_for = 38 AND club = \"cf calvo sotelo\" AND played < 30", "question": "What is the highest number of losses of club cf calvo sotelo, which has more than 31 goals against, 38 goals for, and less than 30 played?", "context": "CREATE TABLE table_name_85 (losses INTEGER, played VARCHAR, club VARCHAR, goals_against VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_60 WHERE goals_against > 42 AND club = \"burgos cf\" AND losses > 14", "question": "What is the average position of club burgos cf, which has more than 42 goals against and more than 14 losses?", "context": "CREATE TABLE table_name_60 (position INTEGER, losses VARCHAR, goals_against VARCHAR, club VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_7 WHERE draft < 1991 AND player = \"tom sasso category:articles with hcards\"", "question": "What is the lowest Pick, when Draft is less than 1991, and when Player is \"Tom Sasso Category:Articles with hCards\"?", "context": "CREATE TABLE table_name_7 (pick INTEGER, draft VARCHAR, player VARCHAR)"}, {"answer": "SELECT draft FROM table_name_17 WHERE round = \"9\" AND pick = 171 AND player = \"dan wiebe category:articles with hcards\"", "question": "What is Draft, when Round is \"9\", when Pick is \"171\", and when Player is \"Dan Wiebe Category:Articles with hCards\"?", "context": "CREATE TABLE table_name_17 (draft VARCHAR, player VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_37 WHERE round = \"6\" AND nationality = \"canada\" AND draft > 1983 AND player = \"ed ward category:articles with hcards\"", "question": "What is Pick, when Round is \"6\", when Nationality is \"Canada\", when Draft is greater than 1983, and when Player is \"Ed Ward Category:Articles with hCards\"?", "context": "CREATE TABLE table_name_37 (pick VARCHAR, player VARCHAR, draft VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT AVG(metres) FROM table_name_61 WHERE name = \"dzelzavas street 74\"", "question": "What is the average number of metres for the Dzelzavas Street 74?", "context": "CREATE TABLE table_name_61 (metres INTEGER, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE rank = 2", "question": "What Date has a Rank of 2?", "context": "CREATE TABLE table_name_23 (date VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(result) FROM table_name_11 WHERE location = \"atlanta\" AND rank < 4", "question": "What Result has a Location of atlanta, and Rank smaller than 4?", "context": "CREATE TABLE table_name_11 (result INTEGER, location VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(result) FROM table_name_73 WHERE location = \"birmingham\" AND rank > 5", "question": "What is the smallest Result with a Location of birmingham, and Rank larger than 5?", "context": "CREATE TABLE table_name_73 (result INTEGER, location VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_80 WHERE championship < 1", "question": "What is the highest total when there is less than 1 championship?", "context": "CREATE TABLE table_name_80 (total INTEGER, championship INTEGER)"}, {"answer": "SELECT MIN(championship) FROM table_name_69 WHERE fa_cup = 0 AND league_cup = 1", "question": "What is the smallest championship when the FA Cup is 0 and the League Cup is 1?", "context": "CREATE TABLE table_name_69 (championship INTEGER, fa_cup VARCHAR, league_cup VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_8 WHERE 2010 = \"q2\"", "question": "What was the result in 2013 in the tournament whose 2010 result was q2?", "context": "CREATE TABLE table_name_8 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_31 WHERE 2012 = \"1r\" AND 2013 = \"3r\"", "question": "In which tournament was the 2012 result 1r and the 2013 result 3r?", "context": "CREATE TABLE table_name_31 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_16 WHERE tournament = \"french open\"", "question": "What was the result in 2011 for the French Open tournament?", "context": "CREATE TABLE table_name_16 (tournament VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_66 WHERE 2001 = \"a\" AND 2010 = \"3r\"", "question": "What is the 2000 figure when 2010 is 3R and 2001 is A?", "context": "CREATE TABLE table_name_66 (Id VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_29 WHERE 2002 = \"a\" AND 2010 = \"3r\"", "question": "What is the 2005 figure when 2002 is A and 2010 is 3R?", "context": "CREATE TABLE table_name_29 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_82 WHERE outcome = \"runner-up\" AND partner = \"aurelija misevi\u010di\u016bt\u0117\"", "question": "Partner Aurelija Misevi\u010di\u016bt\u0117 had an outcome of runner-up in what tournament?", "context": "CREATE TABLE table_name_82 (tournament VARCHAR, outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE opponents = \"kelly de beer eva pera\"", "question": "The tournament with the opponent of Kelly De Beer Eva Pera was played on what date?", "context": "CREATE TABLE table_name_5 (date VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT surface FROM table_name_88 WHERE partner = \"aurelija misevi\u010di\u016bt\u0117\"", "question": "The tournament with a partner listed as Aurelija Misevi\u010di\u016bt\u0117 had what kind of surface?", "context": "CREATE TABLE table_name_88 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT SUM(goals_scored) FROM table_name_31 WHERE club = \"utenis utena\" AND wins < 8", "question": "How many goals scored have utenis utena as the club, with wins less than 8?", "context": "CREATE TABLE table_name_31 (goals_scored INTEGER, club VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_68 WHERE club = \"utenis utena\" AND loses > 16", "question": "How many points have utenis utena as the club, with loses less than 16?", "context": "CREATE TABLE table_name_68 (points INTEGER, club VARCHAR, loses VARCHAR)"}, {"answer": "SELECT SUM(loses) FROM table_name_84 WHERE points > 30 AND goals_scored > 59 AND position > 5", "question": "How many loses have points greater than 30, goals scored greater than 59, with a position greater than 5?", "context": "CREATE TABLE table_name_84 (loses INTEGER, position VARCHAR, points VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT country FROM table_name_57 WHERE label = \"control\"", "question": "What country has the label Control?", "context": "CREATE TABLE table_name_57 (country VARCHAR, label VARCHAR)"}, {"answer": "SELECT catalogue__number FROM table_name_8 WHERE country = \"brazil\"", "question": "What is the catalogue number for Brazil?", "context": "CREATE TABLE table_name_8 (catalogue__number VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_30 WHERE date = \"october 24, 2008\"", "question": "What is the country when the date shows October 24, 2008?", "context": "CREATE TABLE table_name_30 (country VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_61 WHERE label = \"sony / sony bmg\"", "question": "What is the country for Sony / Sony Bmg?", "context": "CREATE TABLE table_name_61 (country VARCHAR, label VARCHAR)"}, {"answer": "SELECT country FROM table_name_55 WHERE format = \"lp\"", "question": "What country that has LP as a format?", "context": "CREATE TABLE table_name_55 (country VARCHAR, format VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_7 WHERE position = \"f\" AND college_high_school_club = \"kentucky state\"", "question": "What is the nationality of the person drafted to Position F from Kentucky State?", "context": "CREATE TABLE table_name_7 (nationality VARCHAR, position VARCHAR, college_high_school_club VARCHAR)"}, {"answer": "SELECT round FROM table_name_73 WHERE nationality = \"united states\" AND position = \"g\" AND pick = \"13\" AND draft = \"1971-1 1971\"", "question": "In which round was Position G  from the United States drafted as Pick 13 in 1971-1 1971?", "context": "CREATE TABLE table_name_73 (round VARCHAR, draft VARCHAR, pick VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT pick FROM table_name_78 WHERE nationality = \"united states\" AND college_high_school_club = \"north carolina\" AND position = \"sf\"", "question": "What was the pick number for the person from the United States who as drafted to the SF position from North Carolina?", "context": "CREATE TABLE table_name_78 (pick VARCHAR, position VARCHAR, nationality VARCHAR, college_high_school_club VARCHAR)"}, {"answer": "SELECT draft FROM table_name_9 WHERE pick = \"46\"", "question": "In which year was the Pick #46?", "context": "CREATE TABLE table_name_9 (draft VARCHAR, pick VARCHAR)"}, {"answer": "SELECT week_1 FROM table_name_64 WHERE week_2 = \"mandy lynn\"", "question": "Which week 1 had a week 2 of Mandy Lynn?", "context": "CREATE TABLE table_name_64 (week_1 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_1 FROM table_name_1 WHERE week_2 = \"claudia nathalia\"", "question": "Which week 1 had a week 2 of Claudia Nathalia?", "context": "CREATE TABLE table_name_1 (week_1 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_3 FROM table_name_30 WHERE week_1 = \"kristy dwyer\"", "question": "Which week 3 had a week 1 of Kristy Dwyer?", "context": "CREATE TABLE table_name_30 (week_3 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT week_4 FROM table_name_80 WHERE week_3 = \"cidney carson\"", "question": "Which week 4 had a week 3 of Cidney Carson?", "context": "CREATE TABLE table_name_80 (week_4 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_74 WHERE week_3 = \"cidney carson\"", "question": "Which week 2 had a week 3 of Cidney Carson?", "context": "CREATE TABLE table_name_74 (week_2 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT MAX(el_places) FROM table_name_4 WHERE rank_2013 = \"15\"", "question": "Which EL places have a Rank 2013 of 15?", "context": "CREATE TABLE table_name_4 (el_places INTEGER, rank_2013 VARCHAR)"}, {"answer": "SELECT 2009 AS _10 FROM table_name_87 WHERE rank_2013 = \"18\"", "question": "Which 2009\u201310 has a Rank 2013 of 18?", "context": "CREATE TABLE table_name_87 (rank_2013 VARCHAR)"}, {"answer": "SELECT total FROM table_name_99 WHERE year_s__won = \"1977\"", "question": "What is the total for the year (s) won in 1977?", "context": "CREATE TABLE table_name_99 (total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_16 WHERE total = 163", "question": "What is the total to par with a total of 163?", "context": "CREATE TABLE table_name_16 (to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_58 WHERE player = \"al geiberger\" AND to_par > 7", "question": "What is the total for a to par bigger than 7 and a player of al geiberger?", "context": "CREATE TABLE table_name_58 (total VARCHAR, player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT AVG(2 AS _vs_3) FROM table_name_52 WHERE total > 38", "question": "What is the 2 vs 3 when total is bigger than 38?", "context": "CREATE TABLE table_name_52 (total INTEGER)"}, {"answer": "SELECT year_s__won FROM table_name_71 WHERE total < 276", "question": "Which Year(s) won has a Total smaller than 276? Question 1", "context": "CREATE TABLE table_name_71 (year_s__won VARCHAR, total INTEGER)"}, {"answer": "SELECT player FROM table_name_68 WHERE finish = \"74\"", "question": "Who Player has a Finish of 74?", "context": "CREATE TABLE table_name_68 (player VARCHAR, finish VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_77 WHERE player = \"tom watson\"", "question": "Which To par has a Player of tom watson?", "context": "CREATE TABLE table_name_77 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT finish FROM table_name_20 WHERE total = 287", "question": "Name the Finish which has a Total of 287?", "context": "CREATE TABLE table_name_20 (finish VARCHAR, total VARCHAR)"}, {"answer": "SELECT round FROM table_name_64 WHERE method = \"ko (punch)\"", "question": "What is the round where there was a KO (punch)?", "context": "CREATE TABLE table_name_64 (round VARCHAR, method VARCHAR)"}, {"answer": "SELECT event FROM table_name_52 WHERE res = \"loss\" AND time = \"5:00\"", "question": "What event was a loss in 5:00?", "context": "CREATE TABLE table_name_52 (event VARCHAR, res VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_11 WHERE event = \"conquista fight 1\"", "question": "What is the location of the Conquista Fight 1?", "context": "CREATE TABLE table_name_11 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT time FROM table_name_66 WHERE record = \"10-1\"", "question": "What is the time where the record is 10-1?", "context": "CREATE TABLE table_name_66 (time VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_91 WHERE time = \"1:11\"", "question": "What is the record when the time is 1:11?", "context": "CREATE TABLE table_name_91 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(loss) FROM table_name_43 WHERE gp_gs = \"8-8\" AND gain < 416", "question": "What's the total loss for a GP-GS of 8-8 and a gain less than 416?", "context": "CREATE TABLE table_name_43 (loss INTEGER, gp_gs VARCHAR, gain VARCHAR)"}, {"answer": "SELECT SUM(long) FROM table_name_19 WHERE loss > 24 AND gain > 273 AND avg_g = 207.8", "question": "What's the total long for more than 24 loss, a gain over 273, and an avg/g of 207.8?", "context": "CREATE TABLE table_name_19 (long INTEGER, avg_g VARCHAR, loss VARCHAR, gain VARCHAR)"}, {"answer": "SELECT COUNT(long) FROM table_name_30 WHERE avg_g > 0.2 AND loss < 2 AND gain < 8", "question": "What's the total long for an avg/g over 0.2, fewer than 2 loss, and a gain less than 8?", "context": "CREATE TABLE table_name_30 (long VARCHAR, gain VARCHAR, avg_g VARCHAR, loss VARCHAR)"}, {"answer": "SELECT COUNT(avg_g) FROM table_name_69 WHERE name = \"cameron dantley\" AND loss < 35", "question": "What's cameron dantley's total avg/g for loss less than 35?", "context": "CREATE TABLE table_name_69 (avg_g VARCHAR, name VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MIN(avg_g) FROM table_name_10 WHERE gp_gs = \"12-12\" AND gain < 16", "question": "What's the lowest avg/g for a GP-GS of 12-12 and a gain less than 16?", "context": "CREATE TABLE table_name_10 (avg_g INTEGER, gp_gs VARCHAR, gain VARCHAR)"}, {"answer": "SELECT player FROM table_name_71 WHERE place = \"1\"", "question": "What player has 1 as the place?", "context": "CREATE TABLE table_name_71 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_79 WHERE place = \"t10\" AND country = \"ireland\"", "question": "What is the lowest score that has t10 as the place, with Ireland as the country?", "context": "CREATE TABLE table_name_79 (score INTEGER, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT record FROM table_name_16 WHERE date = \"april 24\"", "question": "What is Record, when Date is \"April 24\"?", "context": "CREATE TABLE table_name_16 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_24 WHERE date = \"april 24\"", "question": "What is Visitor, when Date is \"April 24\"?", "context": "CREATE TABLE table_name_24 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE record = \"1-1\"", "question": "What is Date, when Record is \"1-1\"?", "context": "CREATE TABLE table_name_25 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_4 WHERE home = \"new york rangers\" AND date = \"april 17\"", "question": "What is Record, when Home is \"New York Rangers\", and when Date is \"April 17\"?", "context": "CREATE TABLE table_name_4 (record VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_32 WHERE visitor = \"chicago black hawks\" AND date = \"april 17\"", "question": "What is Record, when Visitor is \"Chicago Black Hawks\", and when Date is \"April 17\"?", "context": "CREATE TABLE table_name_32 (record VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE record = \"4-1\"", "question": "What is Score, when Record is \"4-1\"?", "context": "CREATE TABLE table_name_79 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT player FROM table_name_65 WHERE year_s__won = \"1985\"", "question": "What player won 1985?", "context": "CREATE TABLE table_name_65 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_34 WHERE country = \"spain\"", "question": "What's spain's highest total?", "context": "CREATE TABLE table_name_34 (total INTEGER, country VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_13 WHERE player = \"lee trevino\"", "question": "What's the average to par for lee trevino?", "context": "CREATE TABLE table_name_13 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(jury) FROM table_name_66 WHERE artist = \"chalice & maagiline kuues\" AND draw < 5", "question": "How much Jury has an Artist of chalice & maagiline kuues, and a Draw smaller than 5?", "context": "CREATE TABLE table_name_66 (jury VARCHAR, artist VARCHAR, draw VARCHAR)"}, {"answer": "SELECT kinka_pre_release FROM table_name_45 WHERE kinka_developer = \"no\"", "question": "What is the pre-release when the developer is no?", "context": "CREATE TABLE table_name_45 (kinka_pre_release VARCHAR, kinka_developer VARCHAR)"}, {"answer": "SELECT kinka_developer FROM table_name_70 WHERE kinka_12 = \"341s0297 thru 300\"", "question": "What is the developer when the 1.2 is 341s0297 thru 300?", "context": "CREATE TABLE table_name_70 (kinka_developer VARCHAR, kinka_12 VARCHAR)"}, {"answer": "SELECT kinka_developer FROM table_name_70 WHERE kinka_pre_release = \"no*\"", "question": "Who is the developer when the pre-release is no*?", "context": "CREATE TABLE table_name_70 (kinka_developer VARCHAR, kinka_pre_release VARCHAR)"}, {"answer": "SELECT kinka_12 FROM table_name_35 WHERE kinka_pre_release = \"no\" AND kinka_developer = \"yes\"", "question": "What is the KINKA 1.2 when the pre-release is no and the developer is yes?", "context": "CREATE TABLE table_name_35 (kinka_12 VARCHAR, kinka_pre_release VARCHAR, kinka_developer VARCHAR)"}, {"answer": "SELECT kinka_13 FROM table_name_11 WHERE kinka_developer = \"yes\" AND version = \"support mo 230\"", "question": "What is the KINKA 1.3 when the developer is yes and the support version is support mo 230?", "context": "CREATE TABLE table_name_11 (kinka_13 VARCHAR, kinka_developer VARCHAR, version VARCHAR)"}, {"answer": "SELECT version FROM table_name_42 WHERE kinka_pre_release = \"no*\"", "question": "Which version has a KINKA pre-release of no*?", "context": "CREATE TABLE table_name_42 (version VARCHAR, kinka_pre_release VARCHAR)"}, {"answer": "SELECT MIN(nanquan) FROM table_name_40 WHERE rank > 2 AND total < 18.36 AND nangun < 8.85", "question": "WHAT IS THE LOWEST NANQUAN WITH A RANK BIGGER THAN 2, TOTAL LESS THAN 18.36 AND SMALLER THAN 8.85?", "context": "CREATE TABLE table_name_40 (nanquan INTEGER, nangun VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(nangun) FROM table_name_80 WHERE rank > 2 AND total = 17.85", "question": "WHAT IS THE AVERAGE NANGUN WITH A RANK LARGER THAN 2, TOTAL OF 17.85?", "context": "CREATE TABLE table_name_80 (nangun INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_50 WHERE nanquan = 9.72 AND rank > 3 AND nangun < 9.5", "question": "WHAT IS THE TOTAL WITH A NANQUAN OF 9.72, RANK BIGGER THAN 3, NANGUN SMALLER THAN 9.5?", "context": "CREATE TABLE table_name_50 (total INTEGER, nangun VARCHAR, nanquan VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE tonnage > 8 OFFSET 017", "question": "What is the date of the ship with a tonnage greater than 8,017?", "context": "CREATE TABLE table_name_10 (date VARCHAR, tonnage INTEGER)"}, {"answer": "SELECT ship FROM table_name_18 WHERE nationality = \"norway\"", "question": "What ship has a norway nationality?", "context": "CREATE TABLE table_name_18 (ship VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT fate FROM table_name_20 WHERE date = \"26 april 1942\"", "question": "What is the fate of the ship on 26 April 1942?", "context": "CREATE TABLE table_name_20 (fate VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(tonnage) FROM table_name_71 WHERE nationality = \"norway\"", "question": "What is the highest tonnage of the ship from norway?", "context": "CREATE TABLE table_name_71 (tonnage INTEGER, nationality VARCHAR)"}, {"answer": "SELECT AVG(number_of_households) FROM table_name_71 WHERE median_household_income = \"$43,889\"", "question": "How many households have a Median household income of $43,889?", "context": "CREATE TABLE table_name_71 (number_of_households INTEGER, median_household_income VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_41 WHERE median_family_income = \"$53,946\"", "question": "Which Population has a Median family income of $53,946?", "context": "CREATE TABLE table_name_41 (population INTEGER, median_family_income VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_10 WHERE event = \"international procar meeting\"", "question": "Which Circuit has an Event of international procar meeting?", "context": "CREATE TABLE table_name_10 (circuit VARCHAR, event VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_74 WHERE winning_driver = \"hans-joachim stuck\" AND round = 3", "question": "Which Circuit has a Winning Driver of hans-joachim stuck, and a Round of 3?", "context": "CREATE TABLE table_name_74 (circuit VARCHAR, winning_driver VARCHAR, round VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_43 WHERE circuit = \"circuit zandvoort\"", "question": "Which Winning Driver has a Circuit of circuit zandvoort?", "context": "CREATE TABLE table_name_43 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_45 WHERE round = 9", "question": "Which Winning Driver has a Round of 9?", "context": "CREATE TABLE table_name_45 (winning_driver VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_25 WHERE event = \"200 miles of norisring\"", "question": "Which Round has an Event of 200 miles of norisring?", "context": "CREATE TABLE table_name_25 (round VARCHAR, event VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_82 WHERE event = \"200 miles of norisring\"", "question": "Which Winning Driver has an Event of 200 miles of norisring?", "context": "CREATE TABLE table_name_82 (winning_driver VARCHAR, event VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_26 WHERE year = 1983", "question": "What is the average pick in 1983?", "context": "CREATE TABLE table_name_26 (pick INTEGER, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_14 WHERE team = \"montreal expos\"", "question": "What is the average year of the montreal expos?", "context": "CREATE TABLE table_name_14 (year INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_36 WHERE team = \"los angeles dodgers\" AND position = \"lhp\" AND year < 1979", "question": "What is the total pick number of the los angeles dodgers, which has a lhp position before 1979?", "context": "CREATE TABLE table_name_36 (pick VARCHAR, year VARCHAR, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT ship FROM table_name_79 WHERE built = 2012", "question": "What ship was built in 2012?", "context": "CREATE TABLE table_name_79 (ship VARCHAR, built VARCHAR)"}, {"answer": "SELECT ship FROM table_name_91 WHERE built = 2012", "question": "What ship was built in 2012?", "context": "CREATE TABLE table_name_91 (ship VARCHAR, built VARCHAR)"}, {"answer": "SELECT COUNT(built) FROM table_name_21 WHERE flag = \"panama\"", "question": "What is the total of built with a flag of panama?", "context": "CREATE TABLE table_name_21 (built VARCHAR, flag VARCHAR)"}, {"answer": "SELECT tonnage FROM table_name_75 WHERE built = 2007", "question": "What tonnage was built in 2007?", "context": "CREATE TABLE table_name_75 (tonnage VARCHAR, built VARCHAR)"}, {"answer": "SELECT operator FROM table_name_8 WHERE ship = \"costa pacifica\"", "question": "What operator has a ship costa pacifica?", "context": "CREATE TABLE table_name_8 (operator VARCHAR, ship VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_38 WHERE date = \"november 1\"", "question": "Who is the opponent on November 1?", "context": "CREATE TABLE table_name_38 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT pick FROM table_name_72 WHERE round = \"8\" AND nationality = \"usa\" AND draft = 2000", "question": "What is the pick for round 8 with a USA nationality in the 2000 draft?", "context": "CREATE TABLE table_name_72 (pick VARCHAR, draft VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT round FROM table_name_48 WHERE draft < 1983 AND pick < 132 AND player = \"brad winton\"", "question": "What is the round of player brad winton with a draft before 1983 and a pick less than 132?", "context": "CREATE TABLE table_name_48 (round VARCHAR, player VARCHAR, draft VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_96 WHERE round = \"7\" AND player = \"don waddell\"", "question": "What is the pick of player don waddell from round 7?", "context": "CREATE TABLE table_name_96 (pick VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_76 WHERE round = \"2\" AND nationality = \"canada\" AND player = \"josh green\" AND draft > 1996", "question": "What is the average pick of player josh green from Canada from round 2 with a draft after 1996?", "context": "CREATE TABLE table_name_76 (pick INTEGER, draft VARCHAR, player VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MIN(draft) FROM table_name_80 WHERE nationality = \"usa\" AND player = \"justin martin\"", "question": "What is the lowest draft of player justin martin from the USA?", "context": "CREATE TABLE table_name_80 (draft INTEGER, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT event FROM table_name_4 WHERE total = \"defending champion\"", "question": "What event is defending champion the total?", "context": "CREATE TABLE table_name_4 (event VARCHAR, total VARCHAR)"}, {"answer": "SELECT rank_points FROM table_name_85 WHERE event = \"wc rio de janeiro\" AND total = \"16\"", "question": "The event WC Rio De Janeiro with a total of 16 has what as rank points?", "context": "CREATE TABLE table_name_85 (rank_points VARCHAR, event VARCHAR, total VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_7 WHERE event = \"wc rio de janeiro\" AND rank_points = \"10\"", "question": "Who is the shooter at the WC Rio De Janeiro event with 10 rank points?", "context": "CREATE TABLE table_name_7 (shooter VARCHAR, event VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_30 WHERE country = \"new zealand\"", "question": "What years did New Zealand win?", "context": "CREATE TABLE table_name_30 (year_s__won VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_34 WHERE total < 277", "question": "What player had a total less than 277?", "context": "CREATE TABLE table_name_34 (player VARCHAR, total INTEGER)"}, {"answer": "SELECT country FROM table_name_24 WHERE total < 291 AND finish = \"4\"", "question": "What country had a total less than 291 and a 4 Finish?", "context": "CREATE TABLE table_name_24 (country VARCHAR, total VARCHAR, finish VARCHAR)"}, {"answer": "SELECT score FROM table_name_4 WHERE tournament = \"portugal f1, faro , portugal\"", "question": "Name the Score of Tournament of portugal f1, faro , portugal?", "context": "CREATE TABLE table_name_4 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_79 WHERE surface = \"clay\" AND tournament = \"morocco f5, rabat , morocco\"", "question": "Which Outcome has a Surface of clay, and a Tournament of morocco f5, rabat , morocco?", "context": "CREATE TABLE table_name_79 (outcome VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_19 WHERE tournament = \"milan , italy\"", "question": "Which Outcome that has a Tournament of milan , italy?", "context": "CREATE TABLE table_name_19 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE tournament = \"milan , italy\"", "question": "Which Date has a Tournament of milan , italy?", "context": "CREATE TABLE table_name_69 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_31 WHERE opponent = \"piero luisi\"", "question": "Which Tournament has a Opponent of piero luisi?", "context": "CREATE TABLE table_name_31 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE away_team = \"york city\"", "question": "What date was the game with the away team york city?", "context": "CREATE TABLE table_name_56 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE home_team = \"peterborough united\"", "question": "What date did the home game for peterborough united take place?", "context": "CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_48 WHERE competition = \"2002 world cup qualification\"", "question": "What is the Venue of the 2002 World Cup Qualification?", "context": "CREATE TABLE table_name_48 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_91 WHERE competition = \"friendly\"", "question": "What is the Venue with the Friendly Competition?", "context": "CREATE TABLE table_name_91 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE opponent = \"li na\"", "question": "What is the score when Li Na was the opponent?", "context": "CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE date = \"19 february 2011\"", "question": "Who was the opponent on 19 February 2011?", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(goals_against) FROM table_name_44 WHERE team = \"clitheroe\" AND lost > 2", "question": "How many goals against did Clitheroe have when the loss was larger than 2?", "context": "CREATE TABLE table_name_44 (goals_against VARCHAR, team VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_19 WHERE team = \"rossendale united\" AND played > 34", "question": "What was the highest position for Rossendale United when the played was larger than 34?", "context": "CREATE TABLE table_name_19 (position INTEGER, team VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(year_s_) FROM table_name_81 WHERE season = 4", "question": "When was the earliest with 4 seasons?", "context": "CREATE TABLE table_name_81 (year_s_ INTEGER, season VARCHAR)"}, {"answer": "SELECT result FROM table_name_38 WHERE week = 13", "question": "What was the result of week 13?", "context": "CREATE TABLE table_name_38 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE points = 22 AND opponent = \"capitals\"", "question": "What is the score of the game with 22 points and the capitals as the opponent?", "context": "CREATE TABLE table_name_37 (score VARCHAR, points VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_63 WHERE date = \"november 16\"", "question": "What is the sum of the attendance on November 16?", "context": "CREATE TABLE table_name_63 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT scores_by_each_individual_judge FROM table_name_15 WHERE status = \"eliminated\" AND date_performed = \"august 13\"", "question": "What Scores by each individual judge has a Status of eliminated, and a Date performed of august 13?", "context": "CREATE TABLE table_name_15 (scores_by_each_individual_judge VARCHAR, status VARCHAR, date_performed VARCHAR)"}, {"answer": "SELECT scores_by_each_individual_judge FROM table_name_76 WHERE total_score_week = \"51/60\" AND co_contestant__yaar_vs_pyaar_ = \"tina sachdev\"", "question": "What Scores by each individual judge has a Total score/week of 51/60, and a Co-contestant (Yaar vs. Pyaar) of tina sachdev?", "context": "CREATE TABLE table_name_76 (scores_by_each_individual_judge VARCHAR, total_score_week VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT co_contestant__yaar_vs_pyaar_ FROM table_name_40 WHERE total_score_week = \"48/60\" AND date_performed = \"august 14\"", "question": "What Co-contestant (Yaar vs. Pyaar) has a Total score/week of 48/60, and a Date performed of august 14?", "context": "CREATE TABLE table_name_40 (co_contestant__yaar_vs_pyaar_ VARCHAR, total_score_week VARCHAR, date_performed VARCHAR)"}, {"answer": "SELECT date_performed FROM table_name_19 WHERE scores_by_each_individual_judge = 10 + 10 + 10 = 30 AND main_contestant = \"karanvir bohra\"", "question": "What Date performed has a Scores by each individual judge of 10 + 10 + 10 = 30, and a Main contestant of karanvir bohra?", "context": "CREATE TABLE table_name_19 (date_performed VARCHAR, main_contestant VARCHAR, scores_by_each_individual_judge VARCHAR)"}, {"answer": "SELECT status FROM table_name_42 WHERE date_performed = \"august 13\" AND position = \"safe\"", "question": "What Status has a Date performed of august 13, and a Position of safe?", "context": "CREATE TABLE table_name_42 (status VARCHAR, date_performed VARCHAR, position VARCHAR)"}, {"answer": "SELECT scores_by_each_individual_judge FROM table_name_67 WHERE status = \"current\" AND co_contestant__yaar_vs_pyaar_ = \"krushna abhishek\"", "question": "What Scores by each individual judge has a Status of current, and a Co-contestant (Yaar vs. Pyaar) of krushna abhishek?", "context": "CREATE TABLE table_name_67 (scores_by_each_individual_judge VARCHAR, status VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT COUNT(number_of_electorates__2009_) FROM table_name_56 WHERE district = \"jhajjar\" AND reserved_for___sc___st__none_ = \"sc\" AND constituency_number < 66", "question": "Which Number of electorates (2009) has a District of jhajjar, and a Reserved for (SC/ST/None) of sc, and a Constituency number smaller than 66?", "context": "CREATE TABLE table_name_56 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_95 WHERE taijiquan > 9.64 AND total > 19.69", "question": "What is the highest rank of the athlete with a Taijiquan higher than 9.64 and a total more than 19.69?", "context": "CREATE TABLE table_name_95 (rank INTEGER, taijiquan VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(taijiquan) FROM table_name_90 WHERE taijijian = 9.7 AND total > 19.34", "question": "What is the lowest Taijiquan of the athlete who has a Taijijian of 9.7 and a total more than 19.34?", "context": "CREATE TABLE table_name_90 (taijiquan INTEGER, taijijian VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_67 WHERE result = \"nominated\" AND category = \"best supporting actress\"", "question": "What are the years that had someone nominated for best supporting actress?", "context": "CREATE TABLE table_name_67 (year VARCHAR, result VARCHAR, category VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_86 WHERE category = \"best supporting actress\"", "question": "What's the nominee for best supporting actress?", "context": "CREATE TABLE table_name_86 (nominee VARCHAR, category VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_39 WHERE score = \"1\u20131\"", "question": "What is the Tie no of the game with a Score of 1\u20131?", "context": "CREATE TABLE table_name_39 (tie_no VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE home_team = \"burnley\"", "question": "What is the Score of the Burnley Home game?", "context": "CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_93 WHERE home_team = \"arsenal\"", "question": "What is the Away team when Arsenal is the Home team?", "context": "CREATE TABLE table_name_93 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE tie_no = \"3\"", "question": "What is the Date of Tie no 3?", "context": "CREATE TABLE table_name_67 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE record = \"3\u20131\"", "question": "Which opponent has a record of 3\u20131?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT event FROM table_name_22 WHERE record = \"4\u20132\"", "question": "What event has a Record of 4\u20132?", "context": "CREATE TABLE table_name_22 (event VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_18 WHERE time = \"0:38\"", "question": "Which Opponent has a Time of 0:38?", "context": "CREATE TABLE table_name_18 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE result = \"win\" AND location = \"helsinki\" AND competition = \"friendly\"", "question": "What was the score when the result was win, in Helsinki, competition was friendly?", "context": "CREATE TABLE table_name_50 (score VARCHAR, competition VARCHAR, result VARCHAR, location VARCHAR)"}, {"answer": "SELECT competition FROM table_name_85 WHERE score = \"7\u20130\"", "question": "What competition has a Score of 7\u20130?", "context": "CREATE TABLE table_name_85 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE result = \"win\" AND competition = \"friendly\" AND location = \"porto\"", "question": "What date has a result of win, in a friendly competition in Porto?", "context": "CREATE TABLE table_name_79 (date VARCHAR, location VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT name FROM table_name_41 WHERE city = \"santiago\"", "question": "Who has the city Santiago?", "context": "CREATE TABLE table_name_41 (name VARCHAR, city VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE set_2 = \"15:21\"", "question": "What is the score for Set 2 at 15:21?", "context": "CREATE TABLE table_name_48 (score VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_3 WHERE set_1 = \"19:21\"", "question": "What Set 2 has a set one at 19:21?", "context": "CREATE TABLE table_name_3 (set_2 VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE set_1 = \"19:21\"", "question": "What is the score for Set 1 at 19:21?", "context": "CREATE TABLE table_name_59 (score VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_93 WHERE set_2 = \"21:17\"", "question": "What is the Set 1 with set 2 at 21:17?", "context": "CREATE TABLE table_name_93 (set_1 VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT result_f___a FROM table_name_92 WHERE league_position = \"2nd\" AND opponents = \"liverpool\"", "question": "What Result F \u2013 A has a League position of 2nd, and Opponents of liverpool?", "context": "CREATE TABLE table_name_92 (result_f___a VARCHAR, league_position VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT league_position FROM table_name_31 WHERE result_f___a = \"2 \u2013 0\" AND opponents = \"queens park rangers\"", "question": "What League position has a Result F \u2013 A of 2 \u2013 0, and Opponents of queens park rangers?", "context": "CREATE TABLE table_name_31 (league_position VARCHAR, result_f___a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_4 WHERE h___a = \"h\" AND opponents = \"nottingham forest\"", "question": "What is the smallest Attendance with H / A of h, and Opponents of nottingham forest?", "context": "CREATE TABLE table_name_4 (attendance INTEGER, h___a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT country FROM table_name_66 WHERE place = \"4\"", "question": "What country has a place of 4?", "context": "CREATE TABLE table_name_66 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE country = \"united states\" AND place = \"t5\"", "question": "What did the United States score in the T5?", "context": "CREATE TABLE table_name_88 (score VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_39 WHERE place = \"t5\" AND score = 74 - 69 - 66 = 209", "question": "What was the to par at the T5 for the player with a score of 74-69-66=209?", "context": "CREATE TABLE table_name_39 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_99 WHERE country = \"trinidad and tobago\"", "question": "Where did Trinidad and Tobago play?", "context": "CREATE TABLE table_name_99 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_24 WHERE score = 74 - 69 - 66 = 209", "question": "What was the to par for the game with a score of 74-69-66=209?", "context": "CREATE TABLE table_name_24 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_64 WHERE player = \"eduardo romero\"", "question": "Where is Eduardo Romero from?", "context": "CREATE TABLE table_name_64 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT city FROM table_name_42 WHERE name = \"estonian university of life sciences\"", "question": "In what city is the Estonian University of Life Sciences located?", "context": "CREATE TABLE table_name_42 (city VARCHAR, name VARCHAR)"}, {"answer": "SELECT abbr FROM table_name_43 WHERE name = \"university of tartu\"", "question": "What is the abbreviation for the University of Tartu?", "context": "CREATE TABLE table_name_43 (abbr VARCHAR, name VARCHAR)"}, {"answer": "SELECT place FROM table_name_30 WHERE player = \"fred funk\"", "question": "What place is Fred Funk in?", "context": "CREATE TABLE table_name_30 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE away_team = \"thame united\"", "question": "What is Score, when Away Team is \"Thame United\"?", "context": "CREATE TABLE table_name_67 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE attendance = \"76\" AND home_team = \"meir ka\"", "question": "What is Score, when Attendance is \"76\", and when Home Team is \"Meir Ka\"?", "context": "CREATE TABLE table_name_84 (score VARCHAR, attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_89 WHERE score = \"marlow united won 4\u20132 on penalties\"", "question": "What is Tie No, when Score is \"Marlow United won 4\u20132 on penalties\"?", "context": "CREATE TABLE table_name_89 (tie_no VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_94 WHERE attendance = \"112\" AND away_team = \"kentish town\"", "question": "What is Home Team, when Attendance is \"112\", and when Away Team is \"Kentish Town\"?", "context": "CREATE TABLE table_name_94 (home_team VARCHAR, attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE surface = \"clay\" AND date = \"april 7, 2008\"", "question": "What was the April 7, 2008 score on a clay surface?", "context": "CREATE TABLE table_name_71 (score VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE score = \"6\u20133, 3\u20136, 6\u20130\"", "question": "What date was the score 6\u20133, 3\u20136, 6\u20130?", "context": "CREATE TABLE table_name_55 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT 17 AS th_c FROM table_name_25 WHERE american = \"\u0259\"", "question": "What is 17th c., when American is \"\u0259\"?", "context": "CREATE TABLE table_name_25 (american VARCHAR)"}, {"answer": "SELECT 17 AS th_c FROM table_name_25 WHERE australian = \"i, \u026a, \u0259\" AND examples = \"\u0153sophagus\"", "question": "What is 17th c., when Australian is \"i, \u026a, \u0259\", and when Examples is \"\u0153sophagus\"?", "context": "CREATE TABLE table_name_25 (australian VARCHAR, examples VARCHAR)"}, {"answer": "SELECT australian FROM table_name_95 WHERE examples = \"am\u0153ba, anemone, ascesis\"", "question": "What is Australian, when Examples is \"am\u0153ba, anemone, ascesis\"?", "context": "CREATE TABLE table_name_95 (australian VARCHAR, examples VARCHAR)"}, {"answer": "SELECT british FROM table_name_83 WHERE australian = \"i, \u026a, \u0259\" AND examples = \"\u0153sophagus\"", "question": "What is British, when Australian is \"i, \u026a, \u0259\", and when Examples is \"\u0153sophagus\"?", "context": "CREATE TABLE table_name_83 (british VARCHAR, australian VARCHAR, examples VARCHAR)"}, {"answer": "SELECT australian FROM table_name_50 WHERE examples = \"elysium, emeritus, epitome, erotica\"", "question": "What is Australian, when Examples is \"elysium, emeritus, epitome, erotica\"?", "context": "CREATE TABLE table_name_50 (australian VARCHAR, examples VARCHAR)"}, {"answer": "SELECT report FROM table_name_33 WHERE circuit = \"cagliari\"", "question": "Which report had a circuit of Cagliari?", "context": "CREATE TABLE table_name_33 (report VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT name FROM table_name_49 WHERE circuit = \"monza\"", "question": "Which name had the circuit Monza?", "context": "CREATE TABLE table_name_49 (name VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE circuit = \"isle of man\"", "question": "What day was the circuit Isle of Man?", "context": "CREATE TABLE table_name_72 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_72 WHERE team_2 = \"milano\"", "question": "What is the 2nd leg for the team 2 Milano?", "context": "CREATE TABLE table_name_72 (team_2 VARCHAR)"}, {"answer": "SELECT position FROM table_name_32 WHERE pick > 243", "question": "What was the position of the player picked at 243?", "context": "CREATE TABLE table_name_32 (position VARCHAR, pick INTEGER)"}, {"answer": "SELECT visitor FROM table_name_69 WHERE record = \"24\u201314\u20132\"", "question": "Who was the visitor when the record was 24\u201314\u20132?", "context": "CREATE TABLE table_name_69 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_1 WHERE score = \"6\u20134\"", "question": "On what date was the score 6\u20134?", "context": "CREATE TABLE table_name_1 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE date = \"february 17\"", "question": "What was the score on February 17?", "context": "CREATE TABLE table_name_77 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_35 WHERE gold = 1 AND bronze < 0", "question": "What is the total number of Silver, when Gold is \"1\", and when Bronze is less than 0?", "context": "CREATE TABLE table_name_35 (silver VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_73 WHERE nation = \"south africa\" AND total < 20", "question": "What is the highest Bronze, when Nation is \"South Africa\", and when Total is less than 20?", "context": "CREATE TABLE table_name_73 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_61 WHERE gold = 8 AND total > 31", "question": "What is the highest Silver, when Gold is \"8\", and when Total is greater than 31?", "context": "CREATE TABLE table_name_61 (silver INTEGER, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_81 WHERE gold < 34 AND rank = \"6\" AND total > 10", "question": "What is the total number of Silver, when Gold is less than 34, when Rank is \"6\", and when Total is greater than 10?", "context": "CREATE TABLE table_name_81 (silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_6 WHERE silver < 89 AND total = 4", "question": "What is Bronze, when Silver is less than 89, and when Total is \"4\"?", "context": "CREATE TABLE table_name_6 (bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT production_time FROM table_name_59 WHERE number_built > 2.737 AND model = \"280s\"", "question": "What's the production time with more than 2.737 built and a 280s model?", "context": "CREATE TABLE table_name_59 (production_time VARCHAR, number_built VARCHAR, model VARCHAR)"}, {"answer": "SELECT COUNT(number_built) FROM table_name_45 WHERE chassis_code = \"w108.057\"", "question": "What's the total number built with a chassis code of w108.057?", "context": "CREATE TABLE table_name_45 (number_built VARCHAR, chassis_code VARCHAR)"}, {"answer": "SELECT chassis_code FROM table_name_17 WHERE model = \"280s\"", "question": "What's the chassis code for the 280s model?", "context": "CREATE TABLE table_name_17 (chassis_code VARCHAR, model VARCHAR)"}, {"answer": "SELECT MIN(jianshu) FROM table_name_29 WHERE athlete = \"liu yang ( hkg )\"", "question": "What is the lowest Jianshu number for Liu Yang ( hkg )?", "context": "CREATE TABLE table_name_29 (jianshu INTEGER, athlete VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_25 WHERE jianshu < 9.66 AND athlete = \"richard devine ( gbr )\" AND total < 19.02", "question": "What is the lowest rank when Jianshu is smaller than 9.66, for Richard Devine ( gbr ), with a total smaller than 19.02?", "context": "CREATE TABLE table_name_25 (rank INTEGER, total VARCHAR, jianshu VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(jianshu) FROM table_name_76 WHERE total > 19.16 AND athlete = \"nguyen huy thanh ( vie )\" AND qiangshu > 9.66", "question": "What is the number of Jianshu when the total is more than 19.16, for Nguyen Huy Thanh ( vie ), and Qiangshu is more than 9.66?", "context": "CREATE TABLE table_name_76 (jianshu VARCHAR, qiangshu VARCHAR, total VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(qiangshu) FROM table_name_73 WHERE rank < 10 AND total = 18.97 AND jianshu > 9.51", "question": "What is the number of Qiangshu when rank is less than 10, with a total of 18.97, and Jianshu is larger than 9.51?", "context": "CREATE TABLE table_name_73 (qiangshu VARCHAR, jianshu VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT place FROM table_name_22 WHERE country = \"australia\" AND player = \"ian baker-finch\"", "question": "Can you tell me the Place that has the Country of australia, and the Player of ian baker-finch?", "context": "CREATE TABLE table_name_22 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_70 WHERE score = 68 AND player = \"christy o'connor jnr\"", "question": "Can you tell me the Place that has the Score of 68, and the Player of christy o'connor jnr?", "context": "CREATE TABLE table_name_70 (place VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_60 WHERE score > 67", "question": "Can you tell me the Player that has the Score larger than 67?", "context": "CREATE TABLE table_name_60 (player VARCHAR, score INTEGER)"}, {"answer": "SELECT 2011 FROM table_name_31 WHERE 2008 = \"134\"", "question": "What is the 2011 value with a 134 in 2008?", "context": "CREATE TABLE table_name_31 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_32 WHERE 2012 = \"a\" AND 2011 = \"q2\"", "question": "What is the 2009 value with A in 2012 and q2 in 2011?", "context": "CREATE TABLE table_name_32 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_5 WHERE 2008 = \"1r\" AND tournament = \"paris masters\"", "question": "What is the 2011 value for the paris masters tournament with 1r in 2008?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_54 WHERE 2008 = \"nms\"", "question": "What is the 2011 value with nms in 2008?", "context": "CREATE TABLE table_name_54 (Id VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_98 WHERE club = \"burgos cf\" AND position > 8", "question": "Which Draws have a Club of burgos cf, and a Position larger than 8?", "context": "CREATE TABLE table_name_98 (draws INTEGER, club VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_35 WHERE goal_difference > 24", "question": "Which Played has a Goal Difference larger than 24?", "context": "CREATE TABLE table_name_35 (played INTEGER, goal_difference INTEGER)"}, {"answer": "SELECT AVG(goals_against) FROM table_name_45 WHERE wins = 13 AND goals_for > 42 AND losses > 9", "question": "Which Goals against has Wins of 13, and Goals for larger than 42, and more than 9 Losses?", "context": "CREATE TABLE table_name_45 (goals_against INTEGER, losses VARCHAR, wins VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_25 WHERE wins < 8 AND goals_for = 31", "question": "How many draws have less than 8 wins, and 31 goals for?", "context": "CREATE TABLE table_name_25 (draws INTEGER, wins VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT event FROM table_name_36 WHERE time = \"2:43\"", "question": "What event of this season had a time of 2:43?", "context": "CREATE TABLE table_name_36 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT penalties FROM table_name_20 WHERE gf = \"40\"", "question": "How many penalties were there in the game with a G.F. of 40?", "context": "CREATE TABLE table_name_20 (penalties VARCHAR, gf VARCHAR)"}, {"answer": "SELECT pim FROM table_name_42 WHERE gf = \"55\"", "question": "What's the P.I.M. for the G.F. of 55?", "context": "CREATE TABLE table_name_42 (pim VARCHAR, gf VARCHAR)"}, {"answer": "SELECT ga FROM table_name_33 WHERE losses = \"2\" AND team = \"scotland\"", "question": "What's the G.A. when there were 2 losses and Scotland played?", "context": "CREATE TABLE table_name_33 (ga VARCHAR, losses VARCHAR, team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_19 WHERE notes = \"2:04.22\"", "question": "Which venue has 2:04.22 notes?", "context": "CREATE TABLE table_name_19 (venue VARCHAR, notes VARCHAR)"}, {"answer": "SELECT years_member FROM table_name_62 WHERE school = \"goreville high school\"", "question": "What years does Goreville High School have members?", "context": "CREATE TABLE table_name_62 (years_member VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_41 WHERE nickname_s_ = \"tornadoes lady tornadoes\"", "question": "What is the name of the school with the Tornadoes Lady Tornadoes?", "context": "CREATE TABLE table_name_41 (school VARCHAR, nickname_s_ VARCHAR)"}, {"answer": "SELECT school FROM table_name_65 WHERE nickname_s_ = \"tornadoes lady tornadoes\"", "question": "What is the school with the nickname Tornadoes Lady Tornadoes?", "context": "CREATE TABLE table_name_65 (school VARCHAR, nickname_s_ VARCHAR)"}, {"answer": "SELECT nickname_s_ FROM table_name_59 WHERE enrollment__2013_14_ = \"160\"", "question": "What is the nickname with an enrollment (2013/14) of 160?", "context": "CREATE TABLE table_name_59 (nickname_s_ VARCHAR, enrollment__2013_14_ VARCHAR)"}, {"answer": "SELECT notes FROM table_name_70 WHERE gold = \"thierry gueorgiou\" AND year < 2008 AND bronze = \"valentin novikov\"", "question": "What is Notes, when Gold is \"Thierry Gueorgiou\", when Year is before 2008, and when Bronze is \"Valentin Novikov\"?", "context": "CREATE TABLE table_name_70 (notes VARCHAR, bronze VARCHAR, gold VARCHAR, year VARCHAR)"}, {"answer": "SELECT notes FROM table_name_3 WHERE silver = \"jarkko huovila\"", "question": "What is Notes, when Silver is \"Jarkko Huovila\"?", "context": "CREATE TABLE table_name_3 (notes VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_90 WHERE bronze = \"jamie stevenson\"", "question": "What is the total number of Year, when Bronze is \"Jamie Stevenson\"?", "context": "CREATE TABLE table_name_90 (year VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT notes FROM table_name_20 WHERE bronze = \"pasi ikonen\"", "question": "What is Notes, when Bronze is \"Pasi Ikonen\"?", "context": "CREATE TABLE table_name_20 (notes VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_2 WHERE notes = \"6.7km, 22controls\"", "question": "What is Bronze, when Notes is \"6.7km, 22controls\"?", "context": "CREATE TABLE table_name_2 (bronze VARCHAR, notes VARCHAR)"}, {"answer": "SELECT silver FROM table_name_86 WHERE notes = \"6.24km, 23controls\"", "question": "What is Silver, when Notes is \"6.24km, 23controls\"?", "context": "CREATE TABLE table_name_86 (silver VARCHAR, notes VARCHAR)"}, {"answer": "SELECT position FROM table_name_52 WHERE player = \"siim ennemuist\"", "question": "What position has siim ennemuist as the player?", "context": "CREATE TABLE table_name_52 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_21 WHERE to_par < 15 AND total = 149", "question": "What Player has a To par less than 15 and a Total of 149?", "context": "CREATE TABLE table_name_21 (player VARCHAR, to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_4 WHERE to_par = 5", "question": "What is the Year(s) won of the Player with a To par of 5?", "context": "CREATE TABLE table_name_4 (year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT english FROM table_name_53 WHERE german = \"apfel\"", "question": "What's the English word for apfel?", "context": "CREATE TABLE table_name_53 (english VARCHAR, german VARCHAR)"}, {"answer": "SELECT dutch FROM table_name_48 WHERE crimean_gothic = \"apel\"", "question": "What's the Dutch word for Apel?", "context": "CREATE TABLE table_name_48 (dutch VARCHAR, crimean_gothic VARCHAR)"}, {"answer": "SELECT bible_gothic FROM table_name_7 WHERE english = \"hand\"", "question": "What's the Bible Gothic for the word hand?", "context": "CREATE TABLE table_name_7 (bible_gothic VARCHAR, english VARCHAR)"}, {"answer": "SELECT icelandic FROM table_name_12 WHERE english = \"rain\"", "question": "What's the Icelandic word for rain?", "context": "CREATE TABLE table_name_12 (icelandic VARCHAR, english VARCHAR)"}, {"answer": "SELECT icelandic FROM table_name_85 WHERE german = \"hand\"", "question": "What's the Icelandic word for the German word for hand?", "context": "CREATE TABLE table_name_85 (icelandic VARCHAR, german VARCHAR)"}, {"answer": "SELECT AVG(score) FROM table_name_76 WHERE player = \"nick faldo\"", "question": "What was the score for Nick Faldo?", "context": "CREATE TABLE table_name_76 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(score) FROM table_name_9 WHERE to_par = \"\u20135\" AND player = \"peter jacobsen\"", "question": "What is the score when the to par was \u20135, for Peter Jacobsen?", "context": "CREATE TABLE table_name_9 (score INTEGER, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(run_4) FROM table_name_78 WHERE country = \"united states\" AND athlete = \"bree schaaf emily azevedo\" AND run_3 < 58.04", "question": "Which Run 4 has a Country of united states, and an Athlete of bree schaaf emily azevedo, and a Run 3 smaller than 58.04?", "context": "CREATE TABLE table_name_78 (run_4 INTEGER, run_3 VARCHAR, country VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(run_2) FROM table_name_53 WHERE run_4 = 57.68 AND run_3 < 57.9", "question": "How much Run 2 has a Run 4 of 57.68, and a Run 3 smaller than 57.9?", "context": "CREATE TABLE table_name_53 (run_2 VARCHAR, run_4 VARCHAR, run_3 VARCHAR)"}, {"answer": "SELECT SUM(run_4) FROM table_name_32 WHERE run_1 = 57.37 AND run_3 < 57.45", "question": "Which Run 4 has a Run 1 of 57.37, and a Run 3 smaller than 57.45?", "context": "CREATE TABLE table_name_32 (run_4 INTEGER, run_1 VARCHAR, run_3 VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_15 WHERE run_1 > 57.37 AND run_4 < 59.05 AND run_3 = 58.08", "question": "Which Athlete has a Run 1 larger than 57.37, and a Run 4 smaller than 59.05, and a Run 3 of 58.08?", "context": "CREATE TABLE table_name_15 (athlete VARCHAR, run_3 VARCHAR, run_1 VARCHAR, run_4 VARCHAR)"}, {"answer": "SELECT SUM(first_exercise) FROM table_name_2 WHERE second_exercise = 18", "question": "What is the total for the first exercise and has 18 as the second exercise?", "context": "CREATE TABLE table_name_2 (first_exercise INTEGER, second_exercise VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_99 WHERE score = 68 - 67 - 75 = 210", "question": "What is the to par of the player with a 68-67-75=210?", "context": "CREATE TABLE table_name_99 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_29 WHERE score = 68 - 67 - 75 = 210", "question": "Who is the player with a 68-67-75=210 score?", "context": "CREATE TABLE table_name_29 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_73 WHERE score = 70 - 68 - 74 = 212", "question": "Who is the player with a 70-68-74=212 score?", "context": "CREATE TABLE table_name_73 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_14 WHERE geelong_dfl = \"anakie\" AND against < 2275", "question": "What is the highest Byes by Anakie who has an Against smaller than 2275?", "context": "CREATE TABLE table_name_14 (byes INTEGER, geelong_dfl VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_23 WHERE lost = 5", "question": "For entries with a lost of 5, what is the sum of the draw entry?", "context": "CREATE TABLE table_name_23 (draw INTEGER, lost VARCHAR)"}, {"answer": "SELECT MIN(place) FROM table_name_10 WHERE draw = 6 AND goals_conceded = 18 AND goals_scored > 26", "question": "What is the lowest place with more than 26 goals scored, 18 goals conceded, and a draw entry of 6?", "context": "CREATE TABLE table_name_10 (place INTEGER, goals_scored VARCHAR, draw VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_99 WHERE goals_scored = 28 AND draw < 6", "question": "What is the highest place that has a draw entry smaller than 6 and goal score of 28?", "context": "CREATE TABLE table_name_99 (place INTEGER, goals_scored VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MIN(goals_scored) FROM table_name_94 WHERE draw < 6 AND lost > 3 AND goals_conceded > 30", "question": "What is the lowest number of goals scored for the entry with goals conceded larger than 30, lost larger than 3, and fewer than 6 draws?", "context": "CREATE TABLE table_name_94 (goals_scored INTEGER, goals_conceded VARCHAR, draw VARCHAR, lost VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_36 WHERE rank_points = \"olympic bronze medalist\"", "question": "What was the shooter when the rank points was olympic bronze medalist?", "context": "CREATE TABLE table_name_36 (shooter VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT rank_points FROM table_name_59 WHERE total = \"15\" AND score_points = \"7\"", "question": "What were the rank points when the score was 7 and the total was 15?", "context": "CREATE TABLE table_name_59 (rank_points VARCHAR, total VARCHAR, score_points VARCHAR)"}, {"answer": "SELECT rank_points FROM table_name_72 WHERE total = \"11\"", "question": "What were the rank points when the total was 11?", "context": "CREATE TABLE table_name_72 (rank_points VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_51 WHERE bronze < 1", "question": "What is the smallest number of silver medals for a nation with fewer than 1 bronze?", "context": "CREATE TABLE table_name_51 (silver INTEGER, bronze INTEGER)"}, {"answer": "SELECT gold FROM table_name_19 WHERE rank = \"6\"", "question": "How many gold medals for the nation ranked 6?", "context": "CREATE TABLE table_name_19 (gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT district FROM table_name_94 WHERE reserved_for___sc___st__none_ = \"sc\"", "question": "Name the District which has a Reserved for ( SC / ST /None) of sc?", "context": "CREATE TABLE table_name_94 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR)"}, {"answer": "SELECT district FROM table_name_19 WHERE reserved_for___sc___st__none_ = \"none\" AND constituency_number = \"242\"", "question": "Name the  District that has a Reserved for ( SC / ST /None) of none and a Constituency number of 242?", "context": "CREATE TABLE table_name_19 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT MIN(number_of_electorates__2009_) FROM table_name_40 WHERE reserved_for___sc___st__none_ = \"none\" AND name = \"jahanabad\"", "question": "Name the Number of electorates (2009 which has a Reserved for ( SC / ST /None) of none, and a Name of jahanabad?", "context": "CREATE TABLE table_name_40 (number_of_electorates__2009_ INTEGER, reserved_for___sc___st__none_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(number_of_electorates__2009_) FROM table_name_11 WHERE district = \"fatehpur\" AND name = \"jahanabad\"", "question": "Count the Number of electorates (2009) that has a District of fatehpur and  jahanabad?", "context": "CREATE TABLE table_name_11 (number_of_electorates__2009_ INTEGER, district VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE date = \"11 september 2010\"", "question": "What Score has a Date of 11 september 2010?", "context": "CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE outcome = \"runner up\" AND partner = \"tyra calderwood\"", "question": "What Date has an Outcome of runner up, and a Partner of tyra calderwood?", "context": "CREATE TABLE table_name_30 (date VARCHAR, outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE tournament = \"tanjung selor, indonesia\"", "question": "What Score has a Tournament of tanjung selor, indonesia?", "context": "CREATE TABLE table_name_76 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE opponents = \"sun shengnan han xinyun\"", "question": "What Date has Opponents of sun shengnan han xinyun?", "context": "CREATE TABLE table_name_2 (date VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_75 WHERE points > 12 AND club = \"lietava-2 jonava\" AND wins > 7", "question": "What is the highest position of club lietava-2 jonava, which has more than 12 points and more than 7 wins?", "context": "CREATE TABLE table_name_75 (position INTEGER, wins VARCHAR, points VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(goals_conceded) FROM table_name_45 WHERE wins = 4 AND draws < 0", "question": "What is the total number of goals of the club with 4 wins and less than 0 draws?", "context": "CREATE TABLE table_name_45 (goals_conceded VARCHAR, wins VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(games_played) FROM table_name_33 WHERE goals_scored < 40 AND loses = 9 AND goals_conceded = 39 AND draws > 2", "question": "What is the total number of games played of the club with less than 40 goals scored, 9 losses, 39 goals conceded, and more than 2 draws?", "context": "CREATE TABLE table_name_33 (games_played VARCHAR, draws VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR, loses VARCHAR)"}, {"answer": "SELECT COUNT(goals_scored) FROM table_name_15 WHERE draws > 3 AND loses > 1 AND points < 26", "question": "What is the total number of goals scored of the club with more than 3 draws, more than 1 loses, and less than 26 points?", "context": "CREATE TABLE table_name_15 (goals_scored VARCHAR, points VARCHAR, draws VARCHAR, loses VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_39 WHERE draws < 0", "question": "What is the sum of the position with less than 0 draws?", "context": "CREATE TABLE table_name_39 (position INTEGER, draws INTEGER)"}, {"answer": "SELECT home_team FROM table_name_5 WHERE tie_no = \"7\"", "question": "What is Home Team, when Tie No is \"7\"?", "context": "CREATE TABLE table_name_5 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_67 WHERE away_team = \"brentford\"", "question": "What is Home Team, when Away Team is \"Brentford\"?", "context": "CREATE TABLE table_name_67 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_49 WHERE date = \"6 december 1986\" AND tie_no = \"4\"", "question": "What is Home Team, when Date is \"6 December 1986\", and when Tie No is \"4\"?", "context": "CREATE TABLE table_name_49 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE home_team = \"chester city\"", "question": "What is Date, when Home Team is \"Chester City\"?", "context": "CREATE TABLE table_name_18 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_96 WHERE home_team = \"gillingham\"", "question": "What is Tie no, when Home Team is \"Gillingham\"?", "context": "CREATE TABLE table_name_96 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT country FROM table_name_60 WHERE finish = \"t2\" AND player = \"gary player\"", "question": "From what Country is T2 Finish Player Gary Player?", "context": "CREATE TABLE table_name_60 (country VARCHAR, finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT total FROM table_name_96 WHERE finish = \"t39\"", "question": "What is the total for the player with a Finish of T39?", "context": "CREATE TABLE table_name_96 (total VARCHAR, finish VARCHAR)"}, {"answer": "SELECT finish FROM table_name_20 WHERE total = 273", "question": "What is the Finish of the Player with a Total of 273?", "context": "CREATE TABLE table_name_20 (finish VARCHAR, total VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_67 WHERE finish = \"t20\"", "question": "What is the To par of the player with a Finish of T20?", "context": "CREATE TABLE table_name_67 (to_par VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_88 WHERE losses > 7 AND wins < 6 AND draws < 0", "question": "Which byes are high when losses are larger than 7, wins smaller than 6, and draws are smaller than 0?", "context": "CREATE TABLE table_name_88 (byes INTEGER, draws VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_11 WHERE draws > 0", "question": "What is the sum of losses when draws are larger than 0?", "context": "CREATE TABLE table_name_11 (losses VARCHAR, draws INTEGER)"}, {"answer": "SELECT MIN(draws) FROM table_name_44 WHERE wins > 18", "question": "What draws are the lowest when wins are larger than 18?", "context": "CREATE TABLE table_name_44 (draws INTEGER, wins INTEGER)"}, {"answer": "SELECT COUNT(byes) FROM table_name_96 WHERE wins = 8 AND losses > 10", "question": "What is the sum of byes when wins are 8, and losses are larger than 10?", "context": "CREATE TABLE table_name_96 (byes VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_99 WHERE byes > 0", "question": "Which against has the lowest when byes are larger than 0?", "context": "CREATE TABLE table_name_99 (against INTEGER, byes INTEGER)"}, {"answer": "SELECT MAX(losses) FROM table_name_95 WHERE byes > 0", "question": "What are the highest losses when byes are larger than 0?", "context": "CREATE TABLE table_name_95 (losses INTEGER, byes INTEGER)"}, {"answer": "SELECT player FROM table_name_24 WHERE previous_team = \"new york knicks\"", "question": "Which player was previously on the New York Knicks?", "context": "CREATE TABLE table_name_24 (player VARCHAR, previous_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_23 WHERE years_of_nba_experience_[a_] = 2 AND previous_team = \"los angeles lakers\"", "question": "What is the nationality of the player with 2 years of NBA experience for the previously played for the Los Angeles Lakers?", "context": "CREATE TABLE table_name_23 (nationality VARCHAR, previous_team VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT record FROM table_name_25 WHERE week > 7 AND opponent = \"san diego chargers\"", "question": "What is the Record in a week later than 7 against the San Diego Chargers?", "context": "CREATE TABLE table_name_25 (record VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_2 WHERE week = 1", "question": "What is the result week 1?", "context": "CREATE TABLE table_name_2 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_17 WHERE date = \"october 3, 1965\"", "question": "What is the lowest attendance on October 3, 1965?", "context": "CREATE TABLE table_name_17 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT manuals FROM table_name_89 WHERE kind = \"r\" AND opus = \"144\"", "question": "What are the manuals with a kind of r, and an opus of 144?", "context": "CREATE TABLE table_name_89 (manuals VARCHAR, kind VARCHAR, opus VARCHAR)"}, {"answer": "SELECT manuals FROM table_name_2 WHERE opus = \"147\"", "question": "What are the manuals with an opus of 147?", "context": "CREATE TABLE table_name_2 (manuals VARCHAR, opus VARCHAR)"}, {"answer": "SELECT kind FROM table_name_79 WHERE year = \"1978\" AND manuals = \"ii/p\"", "question": "What kind is in the year 1978 and a manual of ii/p?", "context": "CREATE TABLE table_name_79 (kind VARCHAR, year VARCHAR, manuals VARCHAR)"}, {"answer": "SELECT manuals FROM table_name_31 WHERE opus = \"135\"", "question": "What manuals have the opus of 135?", "context": "CREATE TABLE table_name_31 (manuals VARCHAR, opus VARCHAR)"}, {"answer": "SELECT year FROM table_name_30 WHERE town = \"eugene\"", "question": "What year was it the town of Eugene?", "context": "CREATE TABLE table_name_30 (year VARCHAR, town VARCHAR)"}, {"answer": "SELECT town FROM table_name_82 WHERE stops = \"15\" AND kind = \"nb\"", "question": "What town has 15 stops and a NB kind?", "context": "CREATE TABLE table_name_82 (town VARCHAR, stops VARCHAR, kind VARCHAR)"}, {"answer": "SELECT district FROM table_name_3 WHERE weblink = \"http://www.annauniv.edu\" AND college_or_campus_name = \"anna university - tiruchirappalli campus\"", "question": "In which district is anna university - tiruchirappalli campus, whose website is http://www.annauniv.edu, located?", "context": "CREATE TABLE table_name_3 (district VARCHAR, weblink VARCHAR, college_or_campus_name VARCHAR)"}, {"answer": "SELECT SUM(estd) FROM table_name_14 WHERE college_or_campus_name = \"anna university - panruti campus\"", "question": "In what year was anna university - panruti campus established?", "context": "CREATE TABLE table_name_14 (estd INTEGER, college_or_campus_name VARCHAR)"}, {"answer": "SELECT district FROM table_name_82 WHERE estd = 1942", "question": "Which district was established in 1942?", "context": "CREATE TABLE table_name_82 (district VARCHAR, estd VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_18 WHERE district = \"cuddalore district\"", "question": "What is the affiliation for the Cuddalore District?", "context": "CREATE TABLE table_name_18 (affiliation VARCHAR, district VARCHAR)"}, {"answer": "SELECT college_or_campus_name FROM table_name_79 WHERE weblink = \"http://www.aucev.edu.in/\"", "question": "Which College or campus has a website of http://www.aucev.edu.in/?", "context": "CREATE TABLE table_name_79 (college_or_campus_name VARCHAR, weblink VARCHAR)"}, {"answer": "SELECT single___pack_name FROM table_name_30 WHERE genre = \"rock\" AND artist = \"reo speedwagon\"", "question": "What is the name of the available rock single/pack by REO Speedwagon?", "context": "CREATE TABLE table_name_30 (single___pack_name VARCHAR, genre VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_40 WHERE silver = 1 AND total > 1", "question": "What is the highest gold with 1 silver, and more than 1 altogether?", "context": "CREATE TABLE table_name_40 (gold INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_51 WHERE best_finish = \"2\" AND scoring_average < 71.24", "question": "What is the latest year when the best finish is 2 and the scoring average is less than 71.24?", "context": "CREATE TABLE table_name_51 (year INTEGER, best_finish VARCHAR, scoring_average VARCHAR)"}, {"answer": "SELECT AVG(scoring_average) FROM table_name_51 WHERE top_10s = 4", "question": "What was the average scoring the the top 10s is 4?", "context": "CREATE TABLE table_name_51 (scoring_average INTEGER, top_10s VARCHAR)"}, {"answer": "SELECT country FROM table_name_40 WHERE score < 68", "question": "What is the country of the player with a score less than 68?", "context": "CREATE TABLE table_name_40 (country VARCHAR, score INTEGER)"}, {"answer": "SELECT state FROM table_name_87 WHERE royal_house = \"ji\" AND name = \"ding\"", "question": "What state is Ding and has a royal house of Ji?", "context": "CREATE TABLE table_name_87 (state VARCHAR, royal_house VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_44 WHERE state = \"yan\"", "question": "Which name has a state of Yan?", "context": "CREATE TABLE table_name_44 (name VARCHAR, state VARCHAR)"}, {"answer": "SELECT state FROM table_name_66 WHERE royal_house = \"ying\"", "question": "Which state has a royal house of Ying?", "context": "CREATE TABLE table_name_66 (state VARCHAR, royal_house VARCHAR)"}, {"answer": "SELECT state FROM table_name_5 WHERE royal_house = \"jiang\"", "question": "Which state has a royal house of Jiang?", "context": "CREATE TABLE table_name_5 (state VARCHAR, royal_house VARCHAR)"}, {"answer": "SELECT height FROM table_name_2 WHERE date_of_birth = \"1976-12-27\"", "question": "How tall is the person born on 1976-12-27?", "context": "CREATE TABLE table_name_2 (height VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_39 WHERE club = \"bvsc v\u00edzilabda\"", "question": "What is the birth date of a member of the Club of bvsc v\u00edzilabda?", "context": "CREATE TABLE table_name_39 (date_of_birth VARCHAR, club VARCHAR)"}, {"answer": "SELECT name FROM table_name_57 WHERE height = \"m (ft 9in)\" AND date_of_birth = \"1980-03-05\"", "question": "Who has the height of m (ft 9in) and was born on  1980-03-05?", "context": "CREATE TABLE table_name_57 (name VARCHAR, height VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT name FROM table_name_65 WHERE height = \"head coach: tam\u00e1s farag\u00f3\"", "question": "Who has a Height of head coach: tam\u00e1s farag\u00f3?", "context": "CREATE TABLE table_name_65 (name VARCHAR, height VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_27 WHERE nationality = \"france\" AND draft < 1979", "question": "What is the highest Pick, when Nationality is \"France\", and when Draft is less than 1979?", "context": "CREATE TABLE table_name_27 (pick INTEGER, nationality VARCHAR, draft VARCHAR)"}, {"answer": "SELECT SUM(draft) FROM table_name_56 WHERE round > 9", "question": "What is the sum of Draft, when Round is greater than 9?", "context": "CREATE TABLE table_name_56 (draft INTEGER, round INTEGER)"}, {"answer": "SELECT MAX(round) FROM table_name_46 WHERE draft > 1980 AND player = \"shane doan category:articles with hcards\"", "question": "What is the highest Round, when Draft is greater than 1980, and when Player is \"Shane Doan Category:Articles with hCards\"?", "context": "CREATE TABLE table_name_46 (round INTEGER, draft VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(draft) FROM table_name_7 WHERE nationality = \"canada\" AND player = \"shane doan category:articles with hcards\" AND round < 1", "question": "What is the lowest Draft, when Nationality is \"Canada\", when Player is \"Shane Doan Category:Articles with hCards\", and when Round is less than 1?", "context": "CREATE TABLE table_name_7 (draft INTEGER, round VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(draft) FROM table_name_74 WHERE player = \"dave christian category:articles with hcards\"", "question": "What is the lowest Draft, when Player is \"Dave Christian Category:Articles with hCards\"?", "context": "CREATE TABLE table_name_74 (draft INTEGER, player VARCHAR)"}, {"answer": "SELECT party FROM table_name_46 WHERE district = \"georgia 7\"", "question": "What party has the district Georgia 7?", "context": "CREATE TABLE table_name_46 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_name_92 WHERE incumbent = \"sanford bishop\"", "question": "Which district has an incumbent of Sanford Bishop?", "context": "CREATE TABLE table_name_92 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE away_team = \"hereford united\"", "question": "What is the Score of the Hereford United Away game?", "context": "CREATE TABLE table_name_88 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_5 WHERE away_team = \"lincoln city\"", "question": "What is the Home team of the Lincoln City Away game?", "context": "CREATE TABLE table_name_5 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_33 WHERE home_team = \"bristol rovers\"", "question": "What is the Away team at Bristol Rovers' Home game?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_53 WHERE home_team = \"mansfield town\"", "question": "What is the Away team at Mansfield Town's Home game?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_80 WHERE score = \"1\u20131\" AND home_team = \"hull city\"", "question": "What is the Tie no at the Hull City Home game with a Score of 1\u20131?", "context": "CREATE TABLE table_name_80 (tie_no VARCHAR, score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_87 WHERE against > 1235 AND losses < 10 AND wins > 7", "question": "Which Byes have an Against larger than 1235, and Losses smaller than 10, and Wins larger than 7?", "context": "CREATE TABLE table_name_87 (byes INTEGER, wins VARCHAR, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_58 WHERE against < 1464 AND draws < 1 AND wins > 7", "question": "Which Losses have an Against smaller than 1464, and Draws smaller than 1, and Wins larger than 7?", "context": "CREATE TABLE table_name_58 (losses INTEGER, wins VARCHAR, against VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_85 WHERE lexton_plains = \"skipton\" AND against > 1212", "question": "Which Draws have a Lexton Plains of skipton, and an Against larger than 1212?", "context": "CREATE TABLE table_name_85 (draws INTEGER, lexton_plains VARCHAR, against VARCHAR)"}, {"answer": "SELECT against FROM table_name_24 WHERE losses = 14", "question": "Which against has 14 losses?", "context": "CREATE TABLE table_name_24 (against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT country FROM table_name_58 WHERE player = \"s.k. ho\"", "question": "What is S.K. Ho's Country?", "context": "CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_78 WHERE place = \"2\"", "question": "What Player has a Place of 2?", "context": "CREATE TABLE table_name_78 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_81 WHERE player = \"gary evans\"", "question": "From what Country is Gary Evans?", "context": "CREATE TABLE table_name_81 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_12 WHERE to_par = \"+1\" AND score = 74 - 70 - 70 = 214", "question": "What is the Country of the Player with a To par of +1 and a Score of 74-70-70=214?", "context": "CREATE TABLE table_name_12 (country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_63 WHERE score = 69 - 72 - 72 = 213", "question": "What is the Place of the Player with a Score of 69-72-72=213?", "context": "CREATE TABLE table_name_63 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_99 WHERE date = \"september 20\"", "question": "What was the result on September 20?", "context": "CREATE TABLE table_name_99 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_97 WHERE year_s__won = \"1993\"", "question": "The golfer who won in 1993 had what total has his total?", "context": "CREATE TABLE table_name_97 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_57 WHERE finish = \"t27\"", "question": "When the finish is t27 what is the year (s) won?", "context": "CREATE TABLE table_name_57 (year_s__won VARCHAR, finish VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_34 WHERE year_s__won = \"1988\"", "question": "What total average has 1988 has the year (s) won?", "context": "CREATE TABLE table_name_34 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT finish FROM table_name_71 WHERE player = \"bob tway\"", "question": "In what place did Bob Tway finish?", "context": "CREATE TABLE table_name_71 (finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_80 WHERE byes < 4", "question": "What is the smallest draws for Byes less than 4?", "context": "CREATE TABLE table_name_80 (draws INTEGER, byes INTEGER)"}, {"answer": "SELECT MAX(byes) FROM table_name_24 WHERE losses = 6 AND draws > 0", "question": "When losses is 6 and draws is more than 0, what is the greatest byes?", "context": "CREATE TABLE table_name_24 (byes INTEGER, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_15 WHERE benalla_dfl = \"goorambat\" AND wins < 13", "question": "When Benall DFL is Goorambat with less than 13 wins, what is the least amount of losses?", "context": "CREATE TABLE table_name_15 (losses INTEGER, benalla_dfl VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_39 WHERE benalla_dfl = \"swanpool\" AND losses < 16", "question": "When Benalla DFL is swanpool with less than 16 losses, what is the sum of Byes?", "context": "CREATE TABLE table_name_39 (byes VARCHAR, benalla_dfl VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_31 WHERE draws > 0", "question": "What is the most wins for draws greater than 0?", "context": "CREATE TABLE table_name_31 (wins INTEGER, draws INTEGER)"}, {"answer": "SELECT date FROM table_name_11 WHERE raiders_points = 17", "question": "What day did the Raiders score 17?", "context": "CREATE TABLE table_name_11 (date VARCHAR, raiders_points VARCHAR)"}, {"answer": "SELECT streak FROM table_name_74 WHERE game > 8 AND date = \"nov 22\"", "question": "What was the streak for the game after 8 on Nov 22?", "context": "CREATE TABLE table_name_74 (streak VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_7 WHERE rank < 10 AND name = \"nicolas anelka\" AND appearances > 9", "question": "What is the total Goals with a Rank smaller than 10, a Name of nicolas anelka, and Appearances larger than 9?", "context": "CREATE TABLE table_name_7 (goals INTEGER, appearances VARCHAR, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_71 WHERE rank > 10", "question": "What is the total Goals with Rank larger than 10?", "context": "CREATE TABLE table_name_71 (goals INTEGER, rank INTEGER)"}, {"answer": "SELECT MAX(goals) FROM table_name_34 WHERE name = \"samuel eto'o\"", "question": "What is the greatest Goals with a Name of samuel eto'o?", "context": "CREATE TABLE table_name_34 (goals INTEGER, name VARCHAR)"}, {"answer": "SELECT rank FROM table_name_14 WHERE team = \"roma\"", "question": "What Rank has a Team of roma?", "context": "CREATE TABLE table_name_14 (rank VARCHAR, team VARCHAR)"}, {"answer": "SELECT country FROM table_name_99 WHERE to_par = \"+1\" AND score = 72 - 71 = 143", "question": "What is the Country of the Player with a To par of +1 and a Score of 72-71=143?", "context": "CREATE TABLE table_name_99 (country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_27 WHERE player = \"bob tway\"", "question": "What is Bob Tway's To par?", "context": "CREATE TABLE table_name_27 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_40 WHERE score = 73 - 69 - 67 - 74 = 283", "question": "What is the to par when the score is 73-69-67-74=283?", "context": "CREATE TABLE table_name_40 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(snatch) FROM table_name_21 WHERE clean_ & _jerk < 185", "question": "What is the lowest weight snatched for a lifter who had a clean and jerk less than 185?", "context": "CREATE TABLE table_name_21 (snatch INTEGER, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT record FROM table_name_29 WHERE result = \"l 13\u201330\"", "question": "Which Record has a Result of l 13\u201330?", "context": "CREATE TABLE table_name_29 (record VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE week > 3 AND game_site = \"mile high stadium\" AND record = \"3\u20133\"", "question": "Which Opponent has a Week larger than 3, and a Game site of mile high stadium, and a Record of 3\u20133?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, record VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_name_36 WHERE party = \"republican\"", "question": "What is the most recent year for a first elected republican?", "context": "CREATE TABLE table_name_36 (first_elected INTEGER, party VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_name_12 WHERE incumbent = \"jo bonner\"", "question": "What is the first elected for Jo Bonner?", "context": "CREATE TABLE table_name_12 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_name_4 WHERE district = \"california 35\"", "question": "What is the party of the california 35 district?", "context": "CREATE TABLE table_name_4 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_name_26 WHERE incumbent = \"howard mckeon\"", "question": "What is the earliest first elected date of incumbent howard mckeon?", "context": "CREATE TABLE table_name_26 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_name_45 WHERE party = \"democratic\"", "question": "What district has a democratic party?", "context": "CREATE TABLE table_name_45 (district VARCHAR, party VARCHAR)"}, {"answer": "SELECT streak FROM table_name_1 WHERE location_attendance = \"staples center\" AND score = \"67\u201389\"", "question": "which Streak has a Location/Attendance of staples center, and a Score of 67\u201389?", "context": "CREATE TABLE table_name_1 (streak VARCHAR, location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_81 WHERE date = \"mar 12\"", "question": "Which game is on mar 12?", "context": "CREATE TABLE table_name_81 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_63 WHERE date = \"mar 10\"", "question": "Which Opponent is on mar 10?", "context": "CREATE TABLE table_name_63 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT streak FROM table_name_75 WHERE location_attendance = \"new orleans arena\" AND record = \"31\u201333\"", "question": "Which Streak is in new orleans arena and a Record of 31\u201333?", "context": "CREATE TABLE table_name_75 (streak VARCHAR, location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT game FROM table_name_22 WHERE opponent = \"phoenix suns\"", "question": "Which Game has an Opponent of phoenix suns?", "context": "CREATE TABLE table_name_22 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE score = \"92\u201393\"", "question": "Which Opponent has a Score of 92\u201393?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_21 WHERE score = 71 - 69 - 70 - 69 = 279", "question": "What is the country of the player whose score is 71-69-70-69=279?", "context": "CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT director FROM table_name_28 WHERE film_title_used_in_nomination = \"hope and pain\"", "question": "WHAT IS THE DIRECTOR WITH FILM hope and pain?", "context": "CREATE TABLE table_name_28 (director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT result FROM table_name_28 WHERE film_title_used_in_nomination = \"lake of tears\"", "question": "WHAT IS THE RESULT WITH FILM LAKE OF TEARS?", "context": "CREATE TABLE table_name_28 (result VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_92 WHERE date = \"september 20, 1992\"", "question": "Which Opponent has a Date of september 20, 1992?", "context": "CREATE TABLE table_name_92 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_97 WHERE attendance = \"71,740\"", "question": "Which Week has Attendance of 71,740?", "context": "CREATE TABLE table_name_97 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_52 WHERE date = \"october 4, 1992\"", "question": "Which Week has a Date of october 4, 1992?", "context": "CREATE TABLE table_name_52 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE attendance = \"71,740\"", "question": "Which Opponent has Attendance of 71,740?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT 1976 FROM table_name_57 WHERE 1978 = \"grand slam tournaments\"", "question": "What 1976 has a 1978 of grand slam tournaments?", "context": "CREATE TABLE table_name_57 (Id VARCHAR)"}, {"answer": "SELECT 1978 FROM table_name_99 WHERE 1976 = \"62%\"", "question": "What 1978 has a 1976 of 62%?", "context": "CREATE TABLE table_name_99 (Id VARCHAR)"}, {"answer": "SELECT 1984 FROM table_name_87 WHERE 1978 = \"46\u201315\"", "question": "What 1984 has a 1978 of 46\u201315?", "context": "CREATE TABLE table_name_87 (Id VARCHAR)"}, {"answer": "SELECT 1973 FROM table_name_31 WHERE 1978 = \"75%\"", "question": "What 1973 has a 1978 of 75%?", "context": "CREATE TABLE table_name_31 (Id VARCHAR)"}, {"answer": "SELECT 1983 FROM table_name_44 WHERE 1975 = \"career statistics\"", "question": "What 1983 has a 1975 of career statistics?", "context": "CREATE TABLE table_name_44 (Id VARCHAR)"}, {"answer": "SELECT 1976 FROM table_name_67 WHERE tournament = \"overall win \u2013 loss\"", "question": "What 1976 has a Tournament of overall win \u2013 loss?", "context": "CREATE TABLE table_name_67 (tournament VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_55 WHERE goals_for > 39 AND points < 25", "question": "What is the highest Wins, when Goals For is greater than 39, and when Points is less than 25?", "context": "CREATE TABLE table_name_55 (wins INTEGER, goals_for VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_99 WHERE losses > 16", "question": "What is the total number of Goals For, when Losses is greater than 16?", "context": "CREATE TABLE table_name_99 (goals_for VARCHAR, losses INTEGER)"}, {"answer": "SELECT AVG(position) FROM table_name_80 WHERE goal_difference = 17 AND wins > 13", "question": "What is the average Position, when Goal Difference is \"17\", and when Wins is greater than 13?", "context": "CREATE TABLE table_name_80 (position INTEGER, goal_difference VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_32 WHERE draws < 4 AND points < 27", "question": "What is the lowest Goals For, when Draws is less than 4, and when Points is less than 27?", "context": "CREATE TABLE table_name_32 (goals_for INTEGER, draws VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_10 WHERE city = \"bursa\"", "question": "What is the smallest capacity for Bursa?", "context": "CREATE TABLE table_name_10 (capacity INTEGER, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_4 WHERE arena = \"kara ali acar sport hall\"", "question": "What city is Kara Ali Acar Sport Hall located in?", "context": "CREATE TABLE table_name_4 (city VARCHAR, arena VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_28 WHERE club = \"band\u0131rma banvit\"", "question": "What is the capacity of Band\u0131rma Banvit?", "context": "CREATE TABLE table_name_28 (capacity INTEGER, club VARCHAR)"}, {"answer": "SELECT venue FROM table_name_98 WHERE year > 2009 AND notes = \"5000 m\"", "question": "What was the venue that had 5000 m after 2009?", "context": "CREATE TABLE table_name_98 (venue VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_60 WHERE position = \"1st\" AND venue = \"maputo, mozambique\"", "question": "What was the latest year with a position of 1st at Maputo, Mozambique?", "context": "CREATE TABLE table_name_60 (year INTEGER, position VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_82 WHERE year = 2009", "question": "Which position was in 2009?", "context": "CREATE TABLE table_name_82 (position VARCHAR, year VARCHAR)"}, {"answer": "SELECT player FROM table_name_73 WHERE pos = \"f\" AND previous_team = \"new york knicks\"", "question": "What F Player was previously with the New York Knicks?", "context": "CREATE TABLE table_name_73 (player VARCHAR, pos VARCHAR, previous_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_29 WHERE years_of_nba_experience_[a_] = \"4\" AND pos = \"g\"", "question": "What is the Nationality of the G Player with 4 years NBA Experience?", "context": "CREATE TABLE table_name_29 (nationality VARCHAR, pos VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT player FROM table_name_21 WHERE years_of_nba_experience_[a_] = \"10\"", "question": "What Player has 10 Years of NBA experience?", "context": "CREATE TABLE table_name_21 (player VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT player FROM table_name_27 WHERE pos = \"g/f\" AND years_of_nba_experience_[a_] = \"3\"", "question": "What G/F Player has 3 Years in the NBA?", "context": "CREATE TABLE table_name_27 (player VARCHAR, pos VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT source FROM table_name_53 WHERE name = \"delph\"", "question": "What source has delph as the name?", "context": "CREATE TABLE table_name_53 (source VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_25 WHERE home_team = \"stourbridge\"", "question": "What is the total attendance when Stourbridge is the home team?", "context": "CREATE TABLE table_name_25 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE attendance > 134 AND home_team = \"workington\"", "question": "What is the score when the attendance is greater than 134 and Workington is the home team?", "context": "CREATE TABLE table_name_30 (score VARCHAR, attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT coach FROM table_name_18 WHERE conference_titles = \"0\" AND seasons > 2 AND losses > 87 AND ncaa = \"0\"", "question": "Which coach has 0 conference titles, more than 2 seasons, higher than 87 losses and 0 NCAA?", "context": "CREATE TABLE table_name_18 (coach VARCHAR, ncaa VARCHAR, losses VARCHAR, conference_titles VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_35 WHERE coach = \"bill henderson\" AND losses > 233", "question": "What are coach Bill Henderson's highest wins with more than 233 losses?", "context": "CREATE TABLE table_name_35 (wins INTEGER, coach VARCHAR, losses VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_61 WHERE against < 2284 AND losses = 8 AND wins > 10", "question": "What is the sum of the draws with less than 2284 against, 8 losses, and more than 10 wins?", "context": "CREATE TABLE table_name_61 (draws INTEGER, wins VARCHAR, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_31 WHERE wins = 11 AND draws < 0", "question": "What is the average number of against with 11 wins and less than 0 draws?", "context": "CREATE TABLE table_name_31 (against INTEGER, wins VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_65 WHERE central_murray = \"tooleybuc manangatang\" AND draws < 0", "question": "What is the total number of losses of the central murray of tooleybuc manangatang, which has less than 0 draws?", "context": "CREATE TABLE table_name_65 (losses VARCHAR, central_murray VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_91 WHERE central_murray = \"lake boga\" AND wins < 10", "question": "What is the highest number of losses of the central murray of lake boga, which has less than 10 wins?", "context": "CREATE TABLE table_name_91 (losses INTEGER, central_murray VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_30 WHERE central_murray = \"leitchville gunbower\" AND byes < 0", "question": "What is the average number of draws of the central murray of leitchville gunbower, which has less than 0 byes?", "context": "CREATE TABLE table_name_30 (draws INTEGER, central_murray VARCHAR, byes VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_70 WHERE central_murray = \"koondrook-barham\" AND draws > 0", "question": "What is the total number of wins of the central murray of koondrook-barham, which has more than 0 draws?", "context": "CREATE TABLE table_name_70 (wins VARCHAR, central_murray VARCHAR, draws VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE opposing_teams = \"france\"", "question": "What is the date when France is the opposing team?", "context": "CREATE TABLE table_name_50 (date VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT venue FROM table_name_55 WHERE against > 3 AND opposing_teams = \"south africa\"", "question": "What is the venue with more than 3 against, and South Africa is the opposing team?", "context": "CREATE TABLE table_name_55 (venue VARCHAR, against VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT venue FROM table_name_38 WHERE status = \"five nations\" AND against = 0", "question": "What is the venue for the Status of Five Nations and 0 againts?", "context": "CREATE TABLE table_name_38 (venue VARCHAR, status VARCHAR, against VARCHAR)"}, {"answer": "SELECT upper_stage FROM table_name_86 WHERE launches_to_date = 0 AND version = \"532\"", "question": "What Upper stage has Launches to date of 0, and Version of 532?", "context": "CREATE TABLE table_name_86 (upper_stage VARCHAR, launches_to_date VARCHAR, version VARCHAR)"}, {"answer": "SELECT MAX(ccbs) FROM table_name_52 WHERE launches_to_date = 4 AND payload_to_gto = \"8,900kg\"", "question": "What is the greatest CCBs with Launches to date of 4, and a Payload to GTO of 8,900kg?", "context": "CREATE TABLE table_name_52 (ccbs INTEGER, launches_to_date VARCHAR, payload_to_gto VARCHAR)"}, {"answer": "SELECT payload_to_gto FROM table_name_95 WHERE ccbs > 1 AND payload_to_leo = \"29,400kg\"", "question": "What Payload to GTO has CCBs larger than 1, and a Payload to LEO of 29,400kg?", "context": "CREATE TABLE table_name_95 (payload_to_gto VARCHAR, ccbs VARCHAR, payload_to_leo VARCHAR)"}, {"answer": "SELECT MAX(ccbs) FROM table_name_13 WHERE payload_to_gto = \"\u2013\" AND upper_stage = \"sec\"", "question": "What is the greatest CCBs with a Payload to GTO of \u2013, and an Upper stage of sec?", "context": "CREATE TABLE table_name_13 (ccbs INTEGER, payload_to_gto VARCHAR, upper_stage VARCHAR)"}, {"answer": "SELECT COUNT(launches_to_date) FROM table_name_8 WHERE version = \"541\" AND ccbs < 1", "question": "What is the total Launches to date with a Version of 541, and CCBs smaller than 1?", "context": "CREATE TABLE table_name_8 (launches_to_date VARCHAR, version VARCHAR, ccbs VARCHAR)"}, {"answer": "SELECT MAX(standard_order) FROM table_name_93 WHERE transcription__based_on_pinyin_ = \"she jiang\"", "question": "What is the highest standard order for the Transcription based on Pinyin, She Jiang?", "context": "CREATE TABLE table_name_93 (standard_order INTEGER, transcription__based_on_pinyin_ VARCHAR)"}, {"answer": "SELECT english_translation FROM table_name_73 WHERE traditional_chinese = \"\u54c0\u90e2\"", "question": "What is the english translation of the traditional Chinese word, \u54c0\u90e2?", "context": "CREATE TABLE table_name_73 (english_translation VARCHAR, traditional_chinese VARCHAR)"}, {"answer": "SELECT simplified_chinese FROM table_name_43 WHERE standard_order > 4 AND transcription__based_on_pinyin_ = \"bei hui feng\"", "question": "What is the simplified Chinese with a standard order over 4, and the transcription of Bei Hui Feng?", "context": "CREATE TABLE table_name_43 (simplified_chinese VARCHAR, standard_order VARCHAR, transcription__based_on_pinyin_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE opponent = \"guillermo olaso\"", "question": "What is the Date of the match against Guillermo Olaso?", "context": "CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT category FROM table_name_69 WHERE tournament = \"rodez, france\"", "question": "What is the Category of the Rodez, France Tournament?", "context": "CREATE TABLE table_name_69 (category VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE tournament = \"rodez, france\"", "question": "What is the Date of the Rodez, France Tournament?", "context": "CREATE TABLE table_name_63 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE surface = \"clay\" AND opponent = \"pablo martin-adalia\"", "question": "What is the Score of the tournament played on Clay Surface against Pablo Martin-Adalia?", "context": "CREATE TABLE table_name_97 (score VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_83 WHERE year = 1951 AND date = \"november 4\"", "question": "What was the venue in 1951 on November 4?", "context": "CREATE TABLE table_name_83 (venue VARCHAR, year VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_60 WHERE result = \"34-0\"", "question": "What is the latest year with a 34-0 result?", "context": "CREATE TABLE table_name_60 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE visiting_team = \"los angeles rams\" AND year < 1958", "question": "What date was the visiting team of Los Angeles Rams, earlier than 1958?", "context": "CREATE TABLE table_name_58 (date VARCHAR, visiting_team VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_68 WHERE venue = \"los angeles memorial coliseum\"", "question": "What is the number in attendance at Los Angeles Memorial Coliseum?", "context": "CREATE TABLE table_name_68 (attendance VARCHAR, venue VARCHAR)"}, {"answer": "SELECT state FROM table_name_36 WHERE association_agreement = \"2010-05-01 (saa)\"", "question": "Which state has a 2010-05-01 (saa) association agreement?", "context": "CREATE TABLE table_name_36 (state VARCHAR, association_agreement VARCHAR)"}, {"answer": "SELECT acquis_chapters_open_closed FROM table_name_44 WHERE membership_application = \"2009-04-28\"", "question": "What is the acquis chapter open/closed dates with a membership application in 2009-04-28?", "context": "CREATE TABLE table_name_44 (acquis_chapters_open_closed VARCHAR, membership_application VARCHAR)"}, {"answer": "SELECT status FROM table_name_26 WHERE membership_application = \"2008-12-15\"", "question": "What is the status of the membership application on 2008-12-15?", "context": "CREATE TABLE table_name_26 (status VARCHAR, membership_application VARCHAR)"}, {"answer": "SELECT association_agreement FROM table_name_69 WHERE state = \"bosnia and herzegovina\"", "question": "What is the association agreement for bosnia and herzegovina?", "context": "CREATE TABLE table_name_69 (association_agreement VARCHAR, state VARCHAR)"}, {"answer": "SELECT candidate_status FROM table_name_46 WHERE state = \"macedonia\"", "question": "What is the candidate status of macedonia?", "context": "CREATE TABLE table_name_46 (candidate_status VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_name_92 WHERE number_of_households = 41 OFFSET 511", "question": "What is the population with 41,511 households?", "context": "CREATE TABLE table_name_92 (population VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_85 WHERE opponent = \"@ nashville predators\"", "question": "What was the lowest attendance for a game played @ Nashville Predators?", "context": "CREATE TABLE table_name_85 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_91 WHERE date = \"december 23\"", "question": "What was the highest attendance on December 23?", "context": "CREATE TABLE table_name_91 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT torque FROM table_name_29 WHERE engine = \"2b\"", "question": "What is the torque of a 2B engine?", "context": "CREATE TABLE table_name_29 (torque VARCHAR, engine VARCHAR)"}, {"answer": "SELECT MAX(power__hp_) FROM table_name_5 WHERE engine = \"om314\"", "question": "What is the highest power (hp) of an OM314 engine?", "context": "CREATE TABLE table_name_5 (power__hp_ INTEGER, engine VARCHAR)"}, {"answer": "SELECT used FROM table_name_4 WHERE power__hp_ < 93 AND engine = \"om324\"", "question": "When was power (hp) less than 93 for the OM324 engine used?", "context": "CREATE TABLE table_name_4 (used VARCHAR, power__hp_ VARCHAR, engine VARCHAR)"}, {"answer": "SELECT name FROM table_name_56 WHERE district = \"nagpur\" AND reserved_for___sc___st__none_ = \"none\" AND constituency_number = \"59\"", "question": "What is the name for Nagpur district, with a reserved for ( SC / ST /None) of none, and a Constituency number of 59?", "context": "CREATE TABLE table_name_56 (name VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)"}, {"answer": "SELECT district FROM table_name_45 WHERE reserved_for___sc___st__none_ = \"total:\"", "question": "What district shows reserved for (SC / ST /None) of total:?", "context": "CREATE TABLE table_name_45 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR)"}, {"answer": "SELECT AVG(number_of_electorates__2009_) FROM table_name_78 WHERE name = \"hingna\"", "question": "What is the number of electorates (2009) for Hingna?", "context": "CREATE TABLE table_name_78 (number_of_electorates__2009_ INTEGER, name VARCHAR)"}, {"answer": "SELECT constituency_number FROM table_name_65 WHERE reserved_for___sc___st__none_ = \"none\" AND name = \"katol\"", "question": "What is the constituency number with a reserved for ( SC / ST /None) of none, for Katol?", "context": "CREATE TABLE table_name_65 (constituency_number VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(number_of_electorates__2009_) FROM table_name_57 WHERE name = \"katol\"", "question": "What is the total number of electorates (2009) for Katol?", "context": "CREATE TABLE table_name_57 (number_of_electorates__2009_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_72 WHERE category = \"best performance by a leading actress in a musical\"", "question": "Which Year has a Category of best performance by a leading actress in a musical?", "context": "CREATE TABLE table_name_72 (year INTEGER, category VARCHAR)"}, {"answer": "SELECT award_ceremony FROM table_name_75 WHERE result = \"nominated\" AND category = \"best revival of a musical\"", "question": "Which Award Ceremony has a Result of nominated, and a Category of best revival of a musical?", "context": "CREATE TABLE table_name_75 (award_ceremony VARCHAR, result VARCHAR, category VARCHAR)"}, {"answer": "SELECT analogue_terrestrial_channel FROM table_name_95 WHERE internet = \"channel4.com\"", "question": "What is the analogue terrestrial channel when the internet shows channel4.com?", "context": "CREATE TABLE table_name_95 (analogue_terrestrial_channel VARCHAR, internet VARCHAR)"}, {"answer": "SELECT position FROM table_name_42 WHERE channel = \"channel 4\"", "question": "What is the position when the channel shows channel 4?", "context": "CREATE TABLE table_name_42 (position VARCHAR, channel VARCHAR)"}, {"answer": "SELECT channel FROM table_name_10 WHERE analogue_terrestrial_channel = \"n/a\" AND internet = \"itv.com\" AND position > 6 AND digital_terrestrial_channel = \"6 27 (+1)\"", "question": "What is the channel when the analogue terrestrial channel shows n/a, and the internet is itv.com, with a position larger than 6, and digital terrestrial channel is 6 27 (+1)?", "context": "CREATE TABLE table_name_10 (channel VARCHAR, digital_terrestrial_channel VARCHAR, position VARCHAR, analogue_terrestrial_channel VARCHAR, internet VARCHAR)"}, {"answer": "SELECT internet FROM table_name_12 WHERE position > 13", "question": "What is the internet when the position is more than 13?", "context": "CREATE TABLE table_name_12 (internet VARCHAR, position INTEGER)"}, {"answer": "SELECT notes FROM table_name_74 WHERE method = \"decision\"", "question": "What are the Notes when the Method is decision?", "context": "CREATE TABLE table_name_74 (notes VARCHAR, method VARCHAR)"}, {"answer": "SELECT result FROM table_name_95 WHERE event = \"2012 ibjjf world jiu-jitsu championships\" AND method = \"points (4 x 0)\"", "question": "What was the result for the 2012 ibjjf world jiu-jitsu championships event when the method was points (4 x 0)?", "context": "CREATE TABLE table_name_95 (result VARCHAR, event VARCHAR, method VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_55 WHERE method = \"points (4 x 0)\"", "question": "Who was the opponent when the method was points (4 x 0)?", "context": "CREATE TABLE table_name_55 (opponent VARCHAR, method VARCHAR)"}, {"answer": "SELECT result FROM table_name_36 WHERE opponent = \"amanda lucas\"", "question": "What was the result against opponent Amanda Lucas?", "context": "CREATE TABLE table_name_36 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_43 WHERE notes = \"women +60kg quarterfinal\"", "question": "Which event has notes of women +60kg quarterfinal?", "context": "CREATE TABLE table_name_43 (event VARCHAR, notes VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE attendance > 17 OFFSET 652", "question": "On what date was the attendance more than 17,652?", "context": "CREATE TABLE table_name_15 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT record FROM table_name_41 WHERE date = \"january 18\"", "question": "What is the record on January 18?", "context": "CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_50 WHERE against > 2638", "question": "What was the lowest draw when the against was larger than 2638?", "context": "CREATE TABLE table_name_50 (draws INTEGER, against INTEGER)"}, {"answer": "SELECT MIN(against) FROM table_name_16 WHERE draws > 0", "question": "What was the lowest against when the draw was at least 0?", "context": "CREATE TABLE table_name_16 (against INTEGER, draws INTEGER)"}, {"answer": "SELECT MAX(losses) FROM table_name_99 WHERE byes > 2", "question": "What were the highest losses for a byes larger than 2?", "context": "CREATE TABLE table_name_99 (losses INTEGER, byes INTEGER)"}, {"answer": "SELECT position_in_1960_1961 FROM table_name_2 WHERE clubs = \"belenenses\"", "question": "What position did the Belenenses club occupy in 1960/61?", "context": "CREATE TABLE table_name_2 (position_in_1960_1961 VARCHAR, clubs VARCHAR)"}, {"answer": "SELECT clubs FROM table_name_10 WHERE seasons_at_this_level = \"27 seasons\"", "question": "Which club has played for 27 seasons at this level?", "context": "CREATE TABLE table_name_10 (clubs VARCHAR, seasons_at_this_level VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_name_23 WHERE college = \"toledo\"", "question": "What is the NFL team for Toledo?", "context": "CREATE TABLE table_name_23 (nfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT rnd FROM table_name_18 WHERE college = \"northern colorado\"", "question": "What is Northern Colorado's Rnd.?", "context": "CREATE TABLE table_name_18 (rnd VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_68 WHERE south_west_dfl = \"tyrendarra\" AND byes > 0", "question": "What is the lowest value for Draws, when South West DFL is \"Tyrendarra\", and when Byes is greater than 0?", "context": "CREATE TABLE table_name_68 (draws INTEGER, south_west_dfl VARCHAR, byes VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_19 WHERE wins > 8 AND losses > 6", "question": "What is the sum of Against, when Wins is greater than 8, and when Losses is greater than 6?", "context": "CREATE TABLE table_name_19 (against INTEGER, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_80 WHERE south_west_dfl = \"coleraine\" AND wins < 12", "question": "What is the total number of Byes, when South West DFL is \"Coleraine\", and when Wins is less than 12?", "context": "CREATE TABLE table_name_80 (byes VARCHAR, south_west_dfl VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_73 WHERE south_west_dfl = \"coleraine\" AND byes > 0", "question": "What is the average value for Wins, when South West DFL is \"Coleraine\", and when Byes is greater than 0?", "context": "CREATE TABLE table_name_73 (wins INTEGER, south_west_dfl VARCHAR, byes VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_58 WHERE south_west_dfl = \"cavendish\" AND byes < 0", "question": "What is the lowest value for Wins, when South West DFL is \"Cavendish\", and when Byes is less than 0?", "context": "CREATE TABLE table_name_58 (wins INTEGER, south_west_dfl VARCHAR, byes VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_42 WHERE losses < 10 AND against < 1253 AND byes < 0", "question": "What is the total number of Wins, when Losses is less than 10, when Against is less than 1253, and when Byes is less than 0?", "context": "CREATE TABLE table_name_42 (wins VARCHAR, byes VARCHAR, losses VARCHAR, against VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE year > 1974 AND champion = \"hawthorn\"", "question": "What score has a year later than 1974, with hawthorn as the champion?", "context": "CREATE TABLE table_name_31 (score VARCHAR, year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT champion FROM table_name_92 WHERE runner_up = \"north melbourne\"", "question": "What champion has north melbourne as the runner-up?", "context": "CREATE TABLE table_name_92 (champion VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT location FROM table_name_81 WHERE year = \"2013\" AND country = \"egypt\"", "question": "What is the location for Egypt in 2013?", "context": "CREATE TABLE table_name_81 (location VARCHAR, year VARCHAR, country VARCHAR)"}, {"answer": "SELECT location FROM table_name_1 WHERE year = \"1994\" AND country = \"yemen\"", "question": "What is the location for Yemen in 1994?", "context": "CREATE TABLE table_name_1 (location VARCHAR, year VARCHAR, country VARCHAR)"}, {"answer": "SELECT year FROM table_name_61 WHERE location = \"ta'izz\"", "question": "What year is the location Ta'izz?", "context": "CREATE TABLE table_name_61 (year VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_49 WHERE country = \"belgian congo tanganyika\"", "question": "Which location is in the Belgian Congo Tanganyika?", "context": "CREATE TABLE table_name_49 (location VARCHAR, country VARCHAR)"}, {"answer": "SELECT perpetrator FROM table_name_64 WHERE location = \"bait al-aqari\"", "question": "Who is the perpetrator in Bait Al-Aqari?", "context": "CREATE TABLE table_name_64 (perpetrator VARCHAR, location VARCHAR)"}, {"answer": "SELECT perpetrator FROM table_name_54 WHERE country = \"uganda\" AND location = \"kampala\" AND killed = \"12\"", "question": "Who is the perpetrator in Uganda who killed 12 in Kampala?", "context": "CREATE TABLE table_name_54 (perpetrator VARCHAR, killed VARCHAR, country VARCHAR, location VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_91 WHERE away_team = \"grimsby town\"", "question": "Who was the home team when grimsby town was the away team?", "context": "CREATE TABLE table_name_91 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_36 WHERE transfer_window = \"summer\" AND name = \"kenton\"", "question": "How many goals for Kenton have a transfer window of Summer?", "context": "CREATE TABLE table_name_36 (goals VARCHAR, transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT branding FROM table_name_53 WHERE callsign = \"dwfm\"", "question": "What is the branding for callsign DWFM?", "context": "CREATE TABLE table_name_53 (branding VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_10 WHERE power__kw_ = \"25kw\"", "question": "What is the frequency where the power is 25kw?", "context": "CREATE TABLE table_name_10 (frequency VARCHAR, power__kw_ VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_name_59 WHERE frequency = \"102.3mhz\" AND location = \"baguio\"", "question": "What is the power at Baguio where the frequency is 102.3mhz?", "context": "CREATE TABLE table_name_59 (power__kw_ VARCHAR, frequency VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_76 WHERE frequency = \"92.3mhz\"", "question": "What is the location where the frequency is 92.3mhz?", "context": "CREATE TABLE table_name_76 (location VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT branding FROM table_name_54 WHERE location = \"cagayan de oro\"", "question": "What is the brand where the location is Cagayan De Oro?", "context": "CREATE TABLE table_name_54 (branding VARCHAR, location VARCHAR)"}, {"answer": "SELECT established FROM table_name_62 WHERE league = \"ontario australian football league\"", "question": "Which Established has a League of ontario australian football league?", "context": "CREATE TABLE table_name_62 (established VARCHAR, league VARCHAR)"}, {"answer": "SELECT championships FROM table_name_70 WHERE league = \"ontario australian football league\"", "question": "Which Championships have a League of ontario australian football league?", "context": "CREATE TABLE table_name_70 (championships VARCHAR, league VARCHAR)"}, {"answer": "SELECT established FROM table_name_61 WHERE club = \"guelph rangers\"", "question": "Which Established has a Club of guelph rangers?", "context": "CREATE TABLE table_name_61 (established VARCHAR, club VARCHAR)"}, {"answer": "SELECT MIN(year_s_) FROM table_name_64 WHERE spokesperson = \"colin berry\" AND radio_commentator = \"ray moore\"", "question": "What is the earliest year with colin berry as the spokesperson and ray moore as the radio commentator?", "context": "CREATE TABLE table_name_64 (year_s_ INTEGER, spokesperson VARCHAR, radio_commentator VARCHAR)"}, {"answer": "SELECT spokesperson FROM table_name_33 WHERE year_s_ > 2012", "question": "Who is the spokesperson after 2012?", "context": "CREATE TABLE table_name_33 (spokesperson VARCHAR, year_s_ INTEGER)"}, {"answer": "SELECT semi_final_second_television_commentator FROM table_name_51 WHERE final_television_commentator = \"graham norton\" AND spokesperson = \"scott mills\" AND year_s_ < 2013", "question": "Who is the semi-final second television commentator with graham norton as the final television commentator and scott mills as the spokesperson before 2013?", "context": "CREATE TABLE table_name_51 (semi_final_second_television_commentator VARCHAR, year_s_ VARCHAR, final_television_commentator VARCHAR, spokesperson VARCHAR)"}, {"answer": "SELECT wind FROM table_name_26 WHERE athlete = \"kerron stewart\"", "question": "What kind of Wind has an Athlete of kerron stewart?", "context": "CREATE TABLE table_name_26 (wind VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT wind FROM table_name_69 WHERE result = \"21.69\"", "question": "What kind of Wind has a Result of 21.69?", "context": "CREATE TABLE table_name_69 (wind VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_75 WHERE athlete = \"inger miller\"", "question": "Show the Result of inger miller?", "context": "CREATE TABLE table_name_75 (result VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT AVG(byes) FROM table_name_92 WHERE losses > 14 AND wins > 0", "question": "How many byes for the team with more than 14 losses and more than 0 wins?", "context": "CREATE TABLE table_name_92 (byes INTEGER, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_48 WHERE losses < 11 AND mininera_dfl = \"caramut\" AND byes < 2", "question": "How many wins for the Caramut team with fewer than 11 losses and fewer than 2 byes?", "context": "CREATE TABLE table_name_48 (wins INTEGER, byes VARCHAR, losses VARCHAR, mininera_dfl VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_59 WHERE against > 1282 AND losses < 14", "question": "How many wins for the team with more than 1282 against and fewer than 14 losses?", "context": "CREATE TABLE table_name_59 (wins INTEGER, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_1 WHERE byes < 2", "question": "How many wins for the team with fewer than 2 byes?", "context": "CREATE TABLE table_name_1 (wins INTEGER, byes INTEGER)"}, {"answer": "SELECT MAX(against) FROM table_name_15 WHERE losses = 4 AND mininera_dfl = \"moyston-willaura\" AND byes < 2", "question": "How many against for the Moyston-Willaura team with 4 losses and fewer than 2 byes?", "context": "CREATE TABLE table_name_15 (against INTEGER, byes VARCHAR, losses VARCHAR, mininera_dfl VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE venue = \"canberra stadium\"", "question": "Who is the player of the match at canberra stadium?", "context": "CREATE TABLE table_name_89 (player VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(tries) FROM table_name_25 WHERE player = \"israel folau\"", "question": "What is the average number of tries of player israel folau?", "context": "CREATE TABLE table_name_25 (tries INTEGER, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_8 WHERE player = \"phil graham\"", "question": "What round is player phil graham in?", "context": "CREATE TABLE table_name_8 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE venue = \"cua stadium\"", "question": "Who is the opponent of the match at cua stadium?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_72 WHERE player = \"phil graham\"", "question": "Who is the opponent of player phil graham?", "context": "CREATE TABLE table_name_72 (opponent VARCHAR, player VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_59 WHERE country = \"england\" AND player = \"malcolm mackenzie\"", "question": "Can you tell me the Money (\u00a3) that has the Country of england, and the Player of malcolm mackenzie?", "context": "CREATE TABLE table_name_59 (money___\u00a3__ VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT year FROM table_name_90 WHERE nominee = \"stephen sondheim\" AND category = \"best original score\"", "question": "Which Year has a Nominee of stephen sondheim, and a Category of the best original score?", "context": "CREATE TABLE table_name_90 (year VARCHAR, nominee VARCHAR, category VARCHAR)"}, {"answer": "SELECT result FROM table_name_3 WHERE category = \"best costume design\"", "question": "Which Result has a Category of the best costume design?", "context": "CREATE TABLE table_name_3 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_73 WHERE award_ceremony = \"tony award\" AND category = \"best performance by a leading actor in a musical\"", "question": "Which Nominee has an Award Ceremony of tony award, and a Category of the best performance by a leading actor in a musical?", "context": "CREATE TABLE table_name_73 (nominee VARCHAR, award_ceremony VARCHAR, category VARCHAR)"}, {"answer": "SELECT SUM(solo_blocks) FROM table_name_24 WHERE errors > 126 AND kills > 551 AND season = \"2007\" AND assists > 40", "question": "When there are more than 126 errors, more than 551 kills, and more than 40 assists for the 2007 season, what is the total of Solo Blocks?", "context": "CREATE TABLE table_name_24 (solo_blocks INTEGER, assists VARCHAR, season VARCHAR, errors VARCHAR, kills VARCHAR)"}, {"answer": "SELECT MIN(total_attempts) FROM table_name_47 WHERE percentage > 0.34900000000000003 AND service_aces < 13", "question": "When there is less than 13 services aces with a percentage greater than 0.34900000000000003, what is the smallest total attempts?", "context": "CREATE TABLE table_name_47 (total_attempts INTEGER, percentage VARCHAR, service_aces VARCHAR)"}, {"answer": "SELECT MAX(assists) FROM table_name_63 WHERE percentage < 0.34900000000000003 AND solo_blocks > 13 AND total_attempts < 4713", "question": "When the percentage is 0.34900000000000003 with more than 13 solo blocks and less than 4713 total attempts, what is the greatest assists?", "context": "CREATE TABLE table_name_63 (assists INTEGER, total_attempts VARCHAR, percentage VARCHAR, solo_blocks VARCHAR)"}, {"answer": "SELECT SUM(Block) AS assists FROM table_name_12 WHERE assists > 32 AND total_blocks > 88", "question": "When assists is more than 32 and total blocks is more than 88, what is the total of block assists?", "context": "CREATE TABLE table_name_12 (Block INTEGER, assists VARCHAR, total_blocks VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_66 WHERE losses < 52 AND matches > 4 AND draw < 2", "question": "What is the total number of Against, when Losses is less than 52, when Matches is greater than 4, and when Draw is less than 2?", "context": "CREATE TABLE table_name_66 (against VARCHAR, draw VARCHAR, losses VARCHAR, matches VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_12 WHERE draw > 48", "question": "What is the total number of Against, when Draw is greater than 48?", "context": "CREATE TABLE table_name_12 (against VARCHAR, draw INTEGER)"}, {"answer": "SELECT MAX(losses) FROM table_name_21 WHERE wins = 1 AND matches < 2", "question": "What is the highest Losses, when Wins is \"1\", and when Matches is less than 2?", "context": "CREATE TABLE table_name_21 (losses INTEGER, wins VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_47 WHERE wins > 2 AND matches < 17", "question": "What is the highest Against, when Wins is greater than 2, and when Matches is less than 17?", "context": "CREATE TABLE table_name_47 (against INTEGER, wins VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MIN(matches) FROM table_name_74 WHERE against < 7 AND wins > 1", "question": "What is the lowest Matches, when Against is less than 7, and when Wins is greater than 1?", "context": "CREATE TABLE table_name_74 (matches INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT position FROM table_name_35 WHERE player = \"tomasz kie\u0142bowicz\"", "question": "What position did tomasz kie\u0142bowicz play?", "context": "CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(_number_of_episodes) FROM table_name_55 WHERE mole = \"craig slike\"", "question": "Which # of Episodes has a Mole of craig slike?", "context": "CREATE TABLE table_name_55 (_number_of_episodes INTEGER, mole VARCHAR)"}, {"answer": "SELECT host FROM table_name_95 WHERE _number_of_episodes > 11", "question": "Which host has more than 11 episodes?", "context": "CREATE TABLE table_name_95 (host VARCHAR, _number_of_episodes INTEGER)"}, {"answer": "SELECT MAX(season) FROM table_name_77 WHERE mole = \"frederique van der wal\"", "question": "Which Season has a Mole of frederique van der wal?", "context": "CREATE TABLE table_name_77 (season INTEGER, mole VARCHAR)"}, {"answer": "SELECT res FROM table_name_51 WHERE time = \"1:09\"", "question": "What is Res., when Time is \"1:09\"?", "context": "CREATE TABLE table_name_51 (res VARCHAR, time VARCHAR)"}, {"answer": "SELECT res FROM table_name_92 WHERE round > 2 AND event = \"midwest cage championships 25: inferno\"", "question": "What is Res., when Round is greater than 2, and when Event is \"Midwest Cage Championships 25: Inferno\"?", "context": "CREATE TABLE table_name_92 (res VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT time FROM table_name_45 WHERE round = 3 AND method = \"decision (unanimous)\" AND record = \"7-3\"", "question": "What is Time, when Round is \"3\", when Method is \"Decision (unanimous)\", and when Record is \"7-3\"?", "context": "CREATE TABLE table_name_45 (time VARCHAR, record VARCHAR, round VARCHAR, method VARCHAR)"}, {"answer": "SELECT record FROM table_name_31 WHERE location = \"des moines, iowa , united states\" AND method = \"submission (arm-triangle choke)\"", "question": "What is Record, when Location is \"Des Moines, Iowa , United States\", and when Method is \"Submission (arm-triangle choke)\"?", "context": "CREATE TABLE table_name_31 (record VARCHAR, location VARCHAR, method VARCHAR)"}, {"answer": "SELECT score FROM table_name_3 WHERE attendance = \"213\"", "question": "What is the score for the game with 213 attending?", "context": "CREATE TABLE table_name_3 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_75 WHERE home_team = \"slough town\"", "question": "What was the away team for the game in Slough Town?", "context": "CREATE TABLE table_name_75 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_51 WHERE away_team = \"armthorpe welfare\"", "question": "Who was the home team that played against Armthorpe Welfare?", "context": "CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_99 WHERE away_team = \"whyteleafe\"", "question": "What is the Tie no for the game with the away team Whyteleafe?", "context": "CREATE TABLE table_name_99 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE home_team = \"maine road\"", "question": "What is home team Maine Road's score?", "context": "CREATE TABLE table_name_46 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_56 WHERE partnering = \"maikel scheffers\" AND championship = \"us open\"", "question": "What year was the US Open that had a partnering of Maikel Scheffers?", "context": "CREATE TABLE table_name_56 (year INTEGER, partnering VARCHAR, championship VARCHAR)"}, {"answer": "SELECT championship FROM table_name_23 WHERE year < 2012 AND opponents_in_final = \"stephane houdet michael jeremiasz\"", "question": "What was the championship before 2012 that had Stephane Houdet Michael Jeremiasz as opponents?", "context": "CREATE TABLE table_name_23 (championship VARCHAR, year VARCHAR, opponents_in_final VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_name_84 WHERE opponents_in_final = \"shingo kunieda satoshi saida\"", "question": "What was the score when the Shingo Kunieda Satoshi Saida were the opponents?", "context": "CREATE TABLE table_name_84 (score_in_final VARCHAR, opponents_in_final VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_22 WHERE opponents_in_final = \"shingo kunieda satoshi saida\"", "question": "What year were the opponents Shingo Kunieda Satoshi Saida?", "context": "CREATE TABLE table_name_22 (year INTEGER, opponents_in_final VARCHAR)"}, {"answer": "SELECT place FROM table_name_24 WHERE score = 68 - 69 - 73 - 70 = 280", "question": "In what place is the golfer with a score of 68-69-73-70=280?", "context": "CREATE TABLE table_name_24 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_52 WHERE money___\u00a3__ = \"40,850\" AND score = 72 - 74 - 70 - 70 = 286", "question": "What is the to par of the golfer with winnings of 40,850 and a score of 72-74-70-70=286?", "context": "CREATE TABLE table_name_52 (to_par VARCHAR, money___\u00a3__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_74 WHERE money___\u00a3__ = \"49,500\"", "question": "What is the to par for the player with winnings of 49,500?", "context": "CREATE TABLE table_name_74 (to_par VARCHAR, money___\u00a3__ VARCHAR)"}, {"answer": "SELECT score FROM table_name_61 WHERE to_par = \"+2\" AND player = \"aaron baddeley\"", "question": "What is the Score of the Round with Player Aaron Baddeley having a To par of +2?", "context": "CREATE TABLE table_name_61 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_29 WHERE player = \"charlie wi\"", "question": "What is Charlie Wi's To par?", "context": "CREATE TABLE table_name_29 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_99 WHERE place = \"t8\" AND score = 68 - 74 = 142", "question": "What is the Country of the T8 Place Player with a Score of 68-74=142?", "context": "CREATE TABLE table_name_99 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE place = \"t8\" AND score = 68 - 74 = 142", "question": "What is the T8 Place Player with a Score of 68-74=142?", "context": "CREATE TABLE table_name_67 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_84 WHERE player = \"david toms\"", "question": "What Country is David Toms from?", "context": "CREATE TABLE table_name_84 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_6 WHERE country = \"australia\" AND player = \"robert allenby\"", "question": "What is the To par for Robert Allenby from Australia", "context": "CREATE TABLE table_name_6 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE to_par = \"+2\" AND country = \"united states\" AND player = \"rocco mediate\"", "question": "When Rocco Mediate of the United States has a To par of +2, what was his score?", "context": "CREATE TABLE table_name_43 (score VARCHAR, player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE player = \"greg norman\"", "question": "What is the score for Greg Norman", "context": "CREATE TABLE table_name_84 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_36 WHERE to_par = \"+2\" AND score = 69 - 73 = 142 AND player = \"rocco mediate\"", "question": "When Rocco Mediate has a To par of +2 and a 69-73=142 score, what is the country listed?", "context": "CREATE TABLE table_name_36 (country VARCHAR, player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_85 WHERE place = \"t4\" AND score = 72 - 70 = 142", "question": "What is the country listed that has a place of t4 with a score of 72-70=142?", "context": "CREATE TABLE table_name_85 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_20 WHERE away_team = \"kidderminster harriers\"", "question": "What is the Home team of the Kidderminster Harriers Away game?", "context": "CREATE TABLE table_name_20 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE home_team = \"sutton united\"", "question": "What is the Date of the Sutton United Home game?", "context": "CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE score = \"3\u20132\" AND tie_no = \"35\"", "question": "What is the Date of Tie no 35 with a Score of 3\u20132?", "context": "CREATE TABLE table_name_78 (date VARCHAR, score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_27 WHERE date = \"17/11/1990\" AND score = \"5\u20130\" AND away_team = \"carlisle united\"", "question": "What is the Tie no of the Carlisle United Away game on 17/11/1990 with a Score of 5\u20130?", "context": "CREATE TABLE table_name_27 (tie_no VARCHAR, away_team VARCHAR, date VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_35 WHERE tie_no = \"40\"", "question": "What is the Home team of Tie no 40?", "context": "CREATE TABLE table_name_35 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_46 WHERE score = \"1\u20131\" AND home_team = \"merthyr tydfil\"", "question": "What is the Away team of the Merthyr Tydfil Home game with a Score of 1\u20131?", "context": "CREATE TABLE table_name_46 (away_team VARCHAR, score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_26 WHERE home_team = \"welling united\"", "question": "What is the lowest Attendance, when Home Team is \"Welling United\"?", "context": "CREATE TABLE table_name_26 (attendance INTEGER, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE attendance = 303", "question": "What is Score, when Attendance is \"303\"?", "context": "CREATE TABLE table_name_14 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT place FROM table_name_50 WHERE country = \"united states\" AND player = \"andy bean\"", "question": "Which place is Andy Bean from the United States?", "context": "CREATE TABLE table_name_50 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_3 WHERE country = \"united states\" AND place = \"t3\"", "question": "Which United States player has a place of T3?", "context": "CREATE TABLE table_name_3 (player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_41 WHERE player = \"lee trevino\"", "question": "What country is Lee Trevino from?", "context": "CREATE TABLE table_name_41 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT state FROM table_name_98 WHERE rank__2012_ = 43", "question": "What is the state that has the 2012 rank of 43?", "context": "CREATE TABLE table_name_98 (state VARCHAR, rank__2012_ VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_45 WHERE apparatus = \"vault\" AND rank_final < 9", "question": "What is the highest Year, when Apparatus is \"Vault\", and when Rank-Final is less than 9?", "context": "CREATE TABLE table_name_45 (year INTEGER, apparatus VARCHAR, rank_final VARCHAR)"}, {"answer": "SELECT year FROM table_name_79 WHERE competition_description = \"u.s. championships\" AND rank_final < 3 AND apparatus = \"all-around\"", "question": "What is Year, when Competition Description is \"U.S. Championships\", when Rank-Final is less than 3, and when Apparatus is \"All-Around\"?", "context": "CREATE TABLE table_name_79 (year VARCHAR, apparatus VARCHAR, competition_description VARCHAR, rank_final VARCHAR)"}, {"answer": "SELECT apparatus FROM table_name_9 WHERE rank_final > 6 AND competition_description = \"u.s. championships\"", "question": "What is Apparatus, when Rank-Final is greater than 6, and when Competition Description is \"U.S. Championships\"?", "context": "CREATE TABLE table_name_9 (apparatus VARCHAR, rank_final VARCHAR, competition_description VARCHAR)"}, {"answer": "SELECT home__1st_leg_ FROM table_name_90 WHERE aggregate = \"3-1\"", "question": "What was the first leg home that had a total aggregate of 3-1?", "context": "CREATE TABLE table_name_90 (home__1st_leg_ VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_33 WHERE aggregate = \"4-2\"", "question": "What was the 1st leg that had a 4-2 aggregate?", "context": "CREATE TABLE table_name_33 (aggregate VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_82 WHERE home__1st_leg_ = \"boca juniors\"", "question": "What was the 1st leg that had a 1st get home for the Boca Juniors?", "context": "CREATE TABLE table_name_82 (home__1st_leg_ VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_41 WHERE home__2nd_leg_ = \"estudiantes la plata\"", "question": "What was the 2nd leg that had the Estudiantes La Plata home for the 2nd leg?", "context": "CREATE TABLE table_name_41 (home__2nd_leg_ VARCHAR)"}, {"answer": "SELECT player FROM table_name_33 WHERE place = \"t5\" AND score = 73 - 72 - 71 - 75 = 291", "question": "Can you tell me the Player that has the Place of t5, and the Score of 73-72-71-75=291?", "context": "CREATE TABLE table_name_33 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_87 WHERE to_par > 14 AND player = \"ed dudley\"", "question": "Can you tell me the average Money ($) that has the To par larger than 14, and the Player of ed dudley?", "context": "CREATE TABLE table_name_87 (money___ INTEGER, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_69 WHERE name = \"hleb\"", "question": "What is the transfer window for Hleb?", "context": "CREATE TABLE table_name_69 (transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(ends) FROM table_name_49 WHERE name = \"dani alves\"", "question": "What is the lowest ends for Dani Alves?", "context": "CREATE TABLE table_name_49 (ends INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_64 WHERE type = \"transfer\" AND transfer_fee = \"\u20ac8m + \u20ac2m in variables\"", "question": "What is the name of the person with a type of transfer, and a Transfer fee of \u20ac8m + \u20ac2m in variables?", "context": "CREATE TABLE table_name_64 (name VARCHAR, type VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_98 WHERE margin_of_victory = \"2 strokes\" AND tournament = \"women's british open\"", "question": "What is To par, when Margin of Victory is \"2 Strokes\", and when Tournament is \"Women's British Open\"?", "context": "CREATE TABLE table_name_98 (to_par VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE runner_s__up = \"bo-mee lee\"", "question": "What is Date, when Runner(s)-Up is \"Bo-Mee Lee\"?", "context": "CREATE TABLE table_name_65 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_36 WHERE margin_of_victory = \"2 strokes\" AND tournament = \"women's british open\"", "question": "What is To par, when Margin of Victory is \"2 Strokes\", and when Tournament is \"Women's British Open\"?", "context": "CREATE TABLE table_name_36 (to_par VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE player = \"steve stricker\"", "question": "What did Steve Stricker score?", "context": "CREATE TABLE table_name_54 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(number_of_clubs) FROM table_name_30 WHERE season < 1992 AND total_wins > 3", "question": "What is the sum of the number of clubs in seasons before 1992 with more than 3 total wins?", "context": "CREATE TABLE table_name_30 (number_of_clubs INTEGER, season VARCHAR, total_wins VARCHAR)"}, {"answer": "SELECT SUM(season) FROM table_name_63 WHERE number_of_clubs = 8 AND runners_up = \"shanghai\"", "question": "What is the sum of the season with 8 clubs and shanghai as the runners-up?", "context": "CREATE TABLE table_name_63 (season INTEGER, number_of_clubs VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_89 WHERE total_wins < 5 AND winners = \"china b\"", "question": "Who is third-place with less than 5 total wins with china b as the winners?", "context": "CREATE TABLE table_name_89 (third_place VARCHAR, total_wins VARCHAR, winners VARCHAR)"}, {"answer": "SELECT MIN(total_wins) FROM table_name_92 WHERE season < 1989 AND runners_up = \"tianjin\" AND number_of_clubs > 8", "question": "What is the lowest total number of wins in a season before 1989 with tianjin as the runners-up and more than 8 clubs?", "context": "CREATE TABLE table_name_92 (total_wins INTEGER, number_of_clubs VARCHAR, season VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT result FROM table_name_23 WHERE rank_number = \"2\" AND date = \"december 6, 1969\"", "question": "What was the result for Rank 2 on December 6, 1969?", "context": "CREATE TABLE table_name_23 (result VARCHAR, rank_number VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank_number FROM table_name_27 WHERE opponent_number = \"at baylor\"", "question": "What was the rank # for opponent AT Baylor?", "context": "CREATE TABLE table_name_27 (rank_number VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT result FROM table_name_89 WHERE opponent_number = \"tcu\"", "question": "What is the result for opponent TCU?", "context": "CREATE TABLE table_name_89 (result VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE attendance = \"82,500\"", "question": "What date was the attendance 82,500?", "context": "CREATE TABLE table_name_81 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(league_cup) FROM table_name_3 WHERE total < 1", "question": "Which League Cup has a Total smaller than 1?", "context": "CREATE TABLE table_name_3 (league_cup INTEGER, total INTEGER)"}, {"answer": "SELECT MAX(total) FROM table_name_69 WHERE league_cup < 0", "question": "Which Total has a League Cup smaller than 0?", "context": "CREATE TABLE table_name_69 (total INTEGER, league_cup INTEGER)"}, {"answer": "SELECT MIN(championship) FROM table_name_68 WHERE league_cup > 0 AND fa_cup > 0", "question": "Which Championship has a League Cup larger than 0, and a FA Cup larger than 0?", "context": "CREATE TABLE table_name_68 (championship INTEGER, league_cup VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT AVG(championship) FROM table_name_14 WHERE league_cup < 0", "question": "Which Championship has a League Cup smaller than 0?", "context": "CREATE TABLE table_name_14 (championship INTEGER, league_cup INTEGER)"}, {"answer": "SELECT age__as_of_1_february_2014_ FROM table_name_3 WHERE rank < 9 AND death_date = \"24 january 2007\"", "question": "Which Age (as of 1 February 2014) has a Rank smaller than 9, and a Death date of 24 january 2007?", "context": "CREATE TABLE table_name_3 (age__as_of_1_february_2014_ VARCHAR, rank VARCHAR, death_date VARCHAR)"}, {"answer": "SELECT death_date FROM table_name_65 WHERE rank < 49 AND age__as_of_1_february_2014_ = \"112 years, 172 days\"", "question": "Which Death date has a Rank smaller than 49, and an Age (as of 1 February 2014) of 112 years, 172 days?", "context": "CREATE TABLE table_name_65 (death_date VARCHAR, rank VARCHAR, age__as_of_1_february_2014_ VARCHAR)"}, {"answer": "SELECT death_date FROM table_name_49 WHERE place_of_death_or_residence = \"united states\" AND age__as_of_1_february_2014_ = \"111 years, 61 days\"", "question": "Which Death date has a Place of death or residence of united states, and an Age (as of 1 February 2014) of 111 years, 61 days?", "context": "CREATE TABLE table_name_49 (death_date VARCHAR, place_of_death_or_residence VARCHAR, age__as_of_1_february_2014_ VARCHAR)"}, {"answer": "SELECT record FROM table_name_83 WHERE date = \"feb 25\"", "question": "What was the record on Feb 25?", "context": "CREATE TABLE table_name_83 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT streak FROM table_name_26 WHERE opponent = \"@ new jersey nets\"", "question": "What was the streak when the opponent was @ new jersey nets?", "context": "CREATE TABLE table_name_26 (streak VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_41 WHERE competition = \"vitry-sur-seine humarathon\"", "question": "What year was the competition vitry-sur-seine humarathon?", "context": "CREATE TABLE table_name_41 (year INTEGER, competition VARCHAR)"}, {"answer": "SELECT MAX(goal_difference) FROM table_name_77 WHERE points = 28 AND club = \"cd cartagena\" AND losses > 15", "question": "Which Goal Difference has 28 Points, and a Club of cd cartagena, more than 15 losses?", "context": "CREATE TABLE table_name_77 (goal_difference INTEGER, losses VARCHAR, points VARCHAR, club VARCHAR)"}, {"answer": "SELECT SUM(goal_difference) FROM table_name_22 WHERE losses < 9 AND draws = 8 AND points > 40", "question": "How much Goal Difference has less than 9 Losses, and 8 Draws, and more than 40 points?", "context": "CREATE TABLE table_name_22 (goal_difference INTEGER, points VARCHAR, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_13 WHERE wins > 14 AND goal_difference = 14 AND draws > 6", "question": "How many points have more than 14 wins, a goal difference of 14, and more than 6 draws?", "context": "CREATE TABLE table_name_13 (points VARCHAR, draws VARCHAR, wins VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_39 WHERE goals_against > 34 AND wins < 12 AND goals_for < 50 AND losses > 15", "question": "Which Played has Goals against larger than 34, and Wins smaller than 12, and Goals for smaller than 50, and Losses larger than 15?", "context": "CREATE TABLE table_name_39 (played INTEGER, losses VARCHAR, goals_for VARCHAR, goals_against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_28 WHERE goals_against < 47 AND position < 13 AND goals_for = 52", "question": "Which Draws has Goals against smaller than 47, and a Position smaller than 13, and Goals for of 52?", "context": "CREATE TABLE table_name_28 (draws INTEGER, goals_for VARCHAR, goals_against VARCHAR, position VARCHAR)"}, {"answer": "SELECT longest_span_in_s_metre___feet__ FROM table_name_40 WHERE location = \"villeneuve-sur-lot\"", "question": "How long is the bridge in Villeneuve-sur-Lot?", "context": "CREATE TABLE table_name_40 (longest_span_in_s_metre___feet__ VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_name_57 WHERE completed = \"1928\"", "question": "Which bridge was completed in 1928?", "context": "CREATE TABLE table_name_57 (name VARCHAR, completed VARCHAR)"}, {"answer": "SELECT longest_span_in_s_metre___feet__ FROM table_name_97 WHERE land = \"uk\" AND name = \"ballochmyle viaduct\"", "question": "How long is the UK's Ballochmyle Viaduct?", "context": "CREATE TABLE table_name_97 (longest_span_in_s_metre___feet__ VARCHAR, land VARCHAR, name VARCHAR)"}, {"answer": "SELECT arch_type FROM table_name_23 WHERE name = \"pont de montanges (pont-des-pierres)\"", "question": "What kind of arch is the pont de montanges (pont-des-pierres)?", "context": "CREATE TABLE table_name_23 (arch_type VARCHAR, name VARCHAR)"}, {"answer": "SELECT launch_site FROM table_name_6 WHERE carrier_rocket = \"scout\" AND cospar_id = \"1971-109a\"", "question": "From where did the Scout carrier rocket with the satellite that has a COSPAR ID of 1971-109a launch?", "context": "CREATE TABLE table_name_6 (launch_site VARCHAR, carrier_rocket VARCHAR, cospar_id VARCHAR)"}, {"answer": "SELECT launch_date FROM table_name_80 WHERE cospar_id = \"1967-042a\"", "question": "When was the satellite that has a COSPAR ID of 1967-042a launched?", "context": "CREATE TABLE table_name_80 (launch_date VARCHAR, cospar_id VARCHAR)"}, {"answer": "SELECT cospar_id FROM table_name_3 WHERE satellite = \"ariel 3\"", "question": "What is Ariel 3's COSPAR ID?", "context": "CREATE TABLE table_name_3 (cospar_id VARCHAR, satellite VARCHAR)"}, {"answer": "SELECT satellite FROM table_name_5 WHERE launch_site = \"vandenberg\"", "question": "Which satellite was launched from Vandenberg?", "context": "CREATE TABLE table_name_5 (satellite VARCHAR, launch_site VARCHAR)"}, {"answer": "SELECT cospar_id FROM table_name_69 WHERE carrier_rocket = \"scout\" AND satellite = \"ariel 4\"", "question": "What is the COSPAR ID of Ariel 4, which was launched with a Scout carrier rocket?", "context": "CREATE TABLE table_name_69 (cospar_id VARCHAR, carrier_rocket VARCHAR, satellite VARCHAR)"}, {"answer": "SELECT song FROM table_name_4 WHERE played_for = \"mike fincke\" AND artist = \"rush\"", "question": "Which Rush song was played for Mike Fincke?", "context": "CREATE TABLE table_name_4 (song VARCHAR, played_for VARCHAR, artist VARCHAR)"}, {"answer": "SELECT flight_day FROM table_name_2 WHERE artist = \"u2\"", "question": "On what flight day was U2 played?", "context": "CREATE TABLE table_name_2 (flight_day VARCHAR, artist VARCHAR)"}, {"answer": "SELECT links FROM table_name_81 WHERE flight_day = \"day 16\"", "question": "What links were used on flight day 16?", "context": "CREATE TABLE table_name_81 (links VARCHAR, flight_day VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_70 WHERE tournament = \"australian open\" AND 2010 = \"qf\"", "question": "What is the 2011 Australian Open and a 2010 QF?", "context": "CREATE TABLE table_name_70 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_3 WHERE 2011 = \"1r\"", "question": "What is 2010 that has 1r 2011?", "context": "CREATE TABLE table_name_3 (Id VARCHAR)"}, {"answer": "SELECT win__percentage FROM table_name_3 WHERE 2010 = \"qf\"", "question": "What is the winning % for the 2010 QF?", "context": "CREATE TABLE table_name_3 (win__percentage VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_77 WHERE 2012 = \"1r\" AND tournament = \"wimbledon\" AND 2011 = \"2r\"", "question": "What is the 2009 for 2012 1R in Wimbledon and a 2011 2r?", "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_60 WHERE win__percentage = \"67%\"", "question": "What is 2012 that has a winning % of 67%?", "context": "CREATE TABLE table_name_60 (win__percentage VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE runner_up = \"jimmy connors\" AND year < 1979", "question": "In 1979 when Jimmy Connors was the runner-up what was the score?", "context": "CREATE TABLE table_name_74 (score VARCHAR, runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT champion FROM table_name_82 WHERE runner_up = \"peter fleming\"", "question": "Who won when Peter Fleming was a runner-up?", "context": "CREATE TABLE table_name_82 (champion VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE location = \"montreal\" AND champion = \"john mcenroe\"", "question": "When John Mcenroe won at Montreal, what was the score?", "context": "CREATE TABLE table_name_43 (score VARCHAR, location VARCHAR, champion VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_56 WHERE champion = \"ilie n\u0103stase\" AND runner_up = \"peter fleming\"", "question": "When Ilie N\u0103stase beat runner-up Peter Fleming what year was it?", "context": "CREATE TABLE table_name_56 (year VARCHAR, champion VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT MIN(track) FROM table_name_98 WHERE production_credits = \"margret arranged by e. mergency\"", "question": "What is the first track where the production credit is margret arranged by e. mergency?", "context": "CREATE TABLE table_name_98 (track INTEGER, production_credits VARCHAR)"}, {"answer": "SELECT title FROM table_name_58 WHERE songwriter_s_ = \"nigel stock\" AND time = \"4:12\"", "question": "Which song was written by Nigel Stock and is 4:12 long?", "context": "CREATE TABLE table_name_58 (title VARCHAR, songwriter_s_ VARCHAR, time VARCHAR)"}, {"answer": "SELECT songwriter_s_ FROM table_name_84 WHERE production_credits = \"nigel wright and john smits\" AND track = 4", "question": "Who was the songwriter for Track 4, produced by nigel wright and john smits?", "context": "CREATE TABLE table_name_84 (songwriter_s_ VARCHAR, production_credits VARCHAR, track VARCHAR)"}, {"answer": "SELECT MIN(draft) FROM table_name_62 WHERE pick > 197 AND round = 14 AND player = \"jim farrell\"", "question": "What is the lowest draft of player jim farrell, who has a pick greater than 197 and a round of 14?", "context": "CREATE TABLE table_name_62 (draft INTEGER, player VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_45 WHERE player = \"paul stasiuk\" AND round > 12", "question": "What is the lowest pick of player paul stasiuk from a round greater than 12?", "context": "CREATE TABLE table_name_45 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_32 WHERE nationality = \"canada\" AND draft < 1976 AND player = \"curt bennett\" AND round < 2", "question": "What is the total pick number of player curt bennett from canada with a draft before 1976 and a round less than 2?", "context": "CREATE TABLE table_name_32 (pick VARCHAR, round VARCHAR, player VARCHAR, nationality VARCHAR, draft VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_19 WHERE player = \"paul maclean\" AND draft < 1978", "question": "What is the average pick of player paul maclean, who had a draft before 1978?", "context": "CREATE TABLE table_name_19 (pick INTEGER, player VARCHAR, draft VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_61 WHERE player = \"dave pulkkinen\" AND draft > 1969", "question": "What is the average round of player dave pulkkinen, who had a draft after 1969?", "context": "CREATE TABLE table_name_61 (round INTEGER, player VARCHAR, draft VARCHAR)"}, {"answer": "SELECT position FROM table_name_55 WHERE year = 1981", "question": "What was the position in 1981?", "context": "CREATE TABLE table_name_55 (position VARCHAR, year VARCHAR)"}, {"answer": "SELECT player FROM table_name_87 WHERE pick = \"19\"", "question": "What was the player with pick 19?", "context": "CREATE TABLE table_name_87 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT country FROM table_name_2 WHERE place = \"t2\" AND score = 69 - 69 - 69 = 207", "question": "What is the Country of the T2 Place Player with a Score of 69-69-69=207?", "context": "CREATE TABLE table_name_2 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE place = \"t7\" AND player = \"justin leonard\"", "question": "What is T7 Place Player Justin Leonard's Score?", "context": "CREATE TABLE table_name_31 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_88 WHERE score = 69 - 71 - 69 = 208", "question": "What Player's Score is 69-71-69=208?", "context": "CREATE TABLE table_name_88 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_83 WHERE to_par = \"\u20138\" AND score = 67 - 74 - 67 = 208", "question": "What is the Place of the Player with a To par of \u20138 and a Score of 67-74-67=208?", "context": "CREATE TABLE table_name_83 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE place = \"t4\" AND player = \"nick price\"", "question": "What is T4 Place Player Nick Price's Score?", "context": "CREATE TABLE table_name_15 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE to_par = \"\u20137\" AND player = \"justin leonard\"", "question": "What is Justin Leonard with a To par of \u20137's Score?", "context": "CREATE TABLE table_name_32 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_85 WHERE week = 4", "question": "Who was the opponent at the week 4 game?", "context": "CREATE TABLE table_name_85 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE week = 16", "question": "What was the result of the week 16 game?", "context": "CREATE TABLE table_name_49 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_53 WHERE week > 7 AND opponent = \"san diego chargers\"", "question": "What was the attendance at the post-week 7 game against the San Diego Chargers?", "context": "CREATE TABLE table_name_53 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT competition FROM table_name_68 WHERE date = \"july 7\"", "question": "What is the Competition on July 7?", "context": "CREATE TABLE table_name_68 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_12 WHERE round = \"round 3\" AND score = \"1-1\"", "question": "At what Location in Round 3 is the Score 1-1?", "context": "CREATE TABLE table_name_12 (location VARCHAR, round VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE date = \"october 25\"", "question": "What is the Score of the competition on October 25?", "context": "CREATE TABLE table_name_47 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2 AS nd_party FROM table_name_11 WHERE election = \"1885\"", "question": "What is 2nd Party, when Election is \"1885\"?", "context": "CREATE TABLE table_name_11 (election VARCHAR)"}, {"answer": "SELECT MAX(area__msr_) FROM table_name_70 WHERE area__sqdeg_ < 291.045 AND family = \"per\" AND rank > 78", "question": "What is the largest Area (msr) that has an Area less than 291.045, is part of the Per family, and has a rank higher than 78?", "context": "CREATE TABLE table_name_70 (area__msr_ INTEGER, rank VARCHAR, area__sqdeg_ VARCHAR, family VARCHAR)"}, {"answer": "SELECT SUM(area__sqdeg_) FROM table_name_47 WHERE area__msr_ = 43.059 AND right_ascension__hm_ > 747.73", "question": "What is the total sum of Areas (sq.deg) that have an Area (msr) of 43.059 and a Right ascension (hm) larger than 747.73?", "context": "CREATE TABLE table_name_47 (area__sqdeg_ INTEGER, area__msr_ VARCHAR, right_ascension__hm_ VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_82 WHERE competition = \"summer universiade\"", "question": "What's the total time for the summer universiade competition?", "context": "CREATE TABLE table_name_82 (time VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MAX(time) FROM table_name_31 WHERE year = 1995 AND event = \"200 metres\"", "question": "What's the highest time for the 1995 200 metres event?", "context": "CREATE TABLE table_name_31 (time INTEGER, year VARCHAR, event VARCHAR)"}, {"answer": "SELECT position FROM table_name_96 WHERE time > 38.61 AND venue = \"gothenburg\"", "question": "What position has a time over 38.61 at the gothenburg venue?", "context": "CREATE TABLE table_name_96 (position VARCHAR, time VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_69 WHERE venue = \"rome\" AND time < 40.2", "question": "What position has a time less than 40.2 at the rome venue?", "context": "CREATE TABLE table_name_69 (position VARCHAR, venue VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_5 WHERE total < 22 AND silver < 5", "question": "What is the most Bronze medals won among the participants that won less than 22 medals overall and less than 5 silver medals?", "context": "CREATE TABLE table_name_5 (bronze INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT silver FROM table_name_54 WHERE gold > 12 AND bronze = 11", "question": "How many silver medals were won by the participant(s) that had more than 12 gold medals and 11 bronze medals?", "context": "CREATE TABLE table_name_54 (silver VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_99 WHERE silver < 13 AND total > 18 AND bronze < 8", "question": "What is the average number of gold medals won among participants that won less than 13 silver, less than 8 bronze, and more than 18 medals overall?", "context": "CREATE TABLE table_name_99 (gold INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT number_range FROM table_name_88 WHERE class = \"t 3\"", "question": "What is the number range for the T 3 class?", "context": "CREATE TABLE table_name_88 (number_range VARCHAR, class VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_19 WHERE 2010 = \"52-75\"", "question": "What 2009 has 52-75 as the 2010?", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_37 WHERE \"2013\" = \"2013\"", "question": "What 2008 has 2013 for the year 2013?", "context": "CREATE TABLE table_name_37 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_45 WHERE 2011 = \"39th\"", "question": "What 2009 has 39th as the 2011?", "context": "CREATE TABLE table_name_45 (Id VARCHAR)"}, {"answer": "SELECT SUM(no_specimens) FROM table_name_1 WHERE abbr = \"sant\"", "question": "How many specimens does the SANT institution have?", "context": "CREATE TABLE table_name_1 (no_specimens INTEGER, abbr VARCHAR)"}, {"answer": "SELECT city FROM table_name_37 WHERE name = \"universidad de santiago de compostela\"", "question": "In which city is the Universidad de Santiago de Compostela located?", "context": "CREATE TABLE table_name_37 (city VARCHAR, name VARCHAR)"}, {"answer": "SELECT city FROM table_name_29 WHERE abbr = \"mub\"", "question": "In which city is MUB located?", "context": "CREATE TABLE table_name_29 (city VARCHAR, abbr VARCHAR)"}, {"answer": "SELECT 1 AS st_party FROM table_name_10 WHERE election = \"1893 by-election\"", "question": "Which 1st Party has an Election of 1893 by-election?", "context": "CREATE TABLE table_name_10 (election VARCHAR)"}, {"answer": "SELECT 1 AS st_member FROM table_name_23 WHERE election = \"1895\"", "question": "Which 1st Member has an Election of 1895?", "context": "CREATE TABLE table_name_23 (election VARCHAR)"}, {"answer": "SELECT 1999 FROM table_name_40 WHERE 2000 = \"year-end championship\"", "question": "Which 1999 has 2000 as the year-end championship?", "context": "CREATE TABLE table_name_40 (Id VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_74 WHERE 2002 = \"sf\"", "question": "Which 1997 has sf as the 2002?", "context": "CREATE TABLE table_name_74 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_12 WHERE 2011 = \"1r\"", "question": "What tournament has 1r as the 2011?", "context": "CREATE TABLE table_name_12 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_40 WHERE 1999 = \"3r\" AND 2002 = \"w\"", "question": "What 2009 has 3r as the 1999, and w as 2002?", "context": "CREATE TABLE table_name_40 (Id VARCHAR)"}, {"answer": "SELECT mass FROM table_name_54 WHERE designation = \"prognoz 2\"", "question": "What is Mass, when Designation is Prognoz 2?", "context": "CREATE TABLE table_name_54 (mass VARCHAR, designation VARCHAR)"}, {"answer": "SELECT mass FROM table_name_29 WHERE launch_date_time___gmt__ = \"25 november 1976, 03:59\"", "question": "What is Mass, when Launch Date/Time ( GMT ) is 25 November 1976, 03:59?", "context": "CREATE TABLE table_name_29 (mass VARCHAR, launch_date_time___gmt__ VARCHAR)"}, {"answer": "SELECT apogee FROM table_name_48 WHERE inclination = \"65\u00b0\" AND launch_date_time___gmt__ = \"15 february 1973, 01:11\"", "question": "What is Apogee, when Inclination is 65\u00b0, and when Launch Date/Time is ( GMT ) is 15 February 1973, 01:11?", "context": "CREATE TABLE table_name_48 (apogee VARCHAR, inclination VARCHAR, launch_date_time___gmt__ VARCHAR)"}, {"answer": "SELECT apogee FROM table_name_9 WHERE designation = \"prognoz 6\"", "question": "What is Apogee, when Designation is Prognoz 6?", "context": "CREATE TABLE table_name_9 (apogee VARCHAR, designation VARCHAR)"}, {"answer": "SELECT designation FROM table_name_73 WHERE launch_date_time___gmt__ = \"29 june 1972, 03:47\"", "question": "What is Designation, when Launch Date/Time ( GMT ) is 29 June 1972, 03:47?", "context": "CREATE TABLE table_name_73 (designation VARCHAR, launch_date_time___gmt__ VARCHAR)"}, {"answer": "SELECT elimination FROM table_name_96 WHERE wrestler = \"candice\"", "question": "What is the Elimination for Candice?", "context": "CREATE TABLE table_name_96 (elimination VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT wrestler FROM table_name_6 WHERE elimination = \"7\"", "question": "What Wrestler has an Elimination of 7?", "context": "CREATE TABLE table_name_6 (wrestler VARCHAR, elimination VARCHAR)"}, {"answer": "SELECT time FROM table_name_86 WHERE wrestler = \"natalya\"", "question": "What is Natalya's Time?", "context": "CREATE TABLE table_name_86 (time VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT elimination AS Move FROM table_name_88 WHERE wrestler = \"maria\"", "question": "What is Maria's Elimination Move?", "context": "CREATE TABLE table_name_88 (elimination VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT place FROM table_name_42 WHERE score = 68", "question": "In which area was there a score of 68?", "context": "CREATE TABLE table_name_42 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_49 WHERE place = \"t1\" AND country = \"united states\"", "question": "Which player had a position of t1 and played in the united states?", "context": "CREATE TABLE table_name_49 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(score) FROM table_name_4 WHERE player = \"linda wessberg\"", "question": "What person had an opponent of linda wessberg and scored an average score?", "context": "CREATE TABLE table_name_4 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_43 WHERE nationality = \"italy\" AND latest_win = 1950", "question": "What was the lowest total for Italy when the latest win is 1950?", "context": "CREATE TABLE table_name_43 (total INTEGER, nationality VARCHAR, latest_win VARCHAR)"}, {"answer": "SELECT results FROM table_name_12 WHERE district = \"iowa 2\"", "question": "What were the results for the incumbent from Iowa 2 district?", "context": "CREATE TABLE table_name_12 (results VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_90 WHERE results = \"re-elected\" AND first_elected < 1996", "question": "Who is the incumbent that has been in office since before 1996 and was again re-elected?", "context": "CREATE TABLE table_name_90 (incumbent VARCHAR, results VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_name_8 WHERE first_elected = 1990", "question": "From which party is the incumbent who was first elected to office in 1990?", "context": "CREATE TABLE table_name_8 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_52 WHERE results = \"re-elected\" AND party = \"democratic\"", "question": "In what year did the Democratic incumbent that was re-elected first take office?", "context": "CREATE TABLE table_name_52 (first_elected VARCHAR, results VARCHAR, party VARCHAR)"}, {"answer": "SELECT AVG(year_built) FROM table_name_20 WHERE sub_parish__sogn_ = \"kyrkjeb\u00f8\"", "question": "what is the year built of  kyrkjeb\u00f8?", "context": "CREATE TABLE table_name_20 (year_built INTEGER, sub_parish__sogn_ VARCHAR)"}, {"answer": "SELECT sub_parish__sogn_ FROM table_name_41 WHERE year_built > 1916 AND location_of_the_church = \"ortnevik\"", "question": "WHAT IS THE SUB-PARISH WITH A YEAR AFTER 1916, IN  ortnevik?", "context": "CREATE TABLE table_name_41 (sub_parish__sogn_ VARCHAR, year_built VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_45 WHERE year_s__won = \"1936\"", "question": "What is the To par of the Player who won in 1936?", "context": "CREATE TABLE table_name_45 (to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT player FROM table_name_88 WHERE year_s__won = \"1931\"", "question": "What is the Player who won in 1931?", "context": "CREATE TABLE table_name_88 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_44 WHERE year_s__won = \"1922, 1932\"", "question": "What is the Total for the Player who won in 1922, 1932?", "context": "CREATE TABLE table_name_44 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_66 WHERE year_s__won = \"1936\"", "question": "What is the Total for the Player who won in 1936?", "context": "CREATE TABLE table_name_66 (total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT finish FROM table_name_91 WHERE to_par < 23 AND total = 294", "question": "What is the Finish of the Player with a To par of 23 of less and Total of 294?", "context": "CREATE TABLE table_name_91 (finish VARCHAR, to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT season FROM table_name_84 WHERE level = \"2nd\" AND points = 29", "question": "What season has a Level of 2nd, 29 points?", "context": "CREATE TABLE table_name_84 (season VARCHAR, level VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_98 WHERE goals = \"29\u201330\"", "question": "What is the number of points when goals were 29\u201330?", "context": "CREATE TABLE table_name_98 (points INTEGER, goals VARCHAR)"}, {"answer": "SELECT level FROM table_name_43 WHERE points > 25 AND goals = \"64\u201331\"", "question": "What is the level when points are larger than 25, and goals are 64\u201331?", "context": "CREATE TABLE table_name_43 (level VARCHAR, points VARCHAR, goals VARCHAR)"}, {"answer": "SELECT engine AS code FROM table_name_46 WHERE engine = \"2.5 20v d\"", "question": "Engine 2.5 20v d has what engine code?", "context": "CREATE TABLE table_name_46 (engine VARCHAR)"}, {"answer": "SELECT cyl FROM table_name_1 WHERE engine = \"2.3 16v\"", "question": "Engine 2.3 16v has how many cylinders?", "context": "CREATE TABLE table_name_1 (cyl VARCHAR, engine VARCHAR)"}, {"answer": "SELECT record FROM table_name_93 WHERE opponent = \"milwaukee bucks\"", "question": "Which Record has an Opponent of milwaukee bucks?", "context": "CREATE TABLE table_name_93 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_51 WHERE location_attendance = \"ford center\" AND game > 30 AND score = \"87\u201379\"", "question": "Which Record has a Location/Attendance of ford center, a Game larger than 30, and a Score of 87\u201379?", "context": "CREATE TABLE table_name_51 (record VARCHAR, score VARCHAR, location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_22 WHERE opponent = \"@ houston rockets\"", "question": "Which Game has an Opponent of @ houston rockets?", "context": "CREATE TABLE table_name_22 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT streak FROM table_name_27 WHERE score = \"98\u2013109\"", "question": "Which Streak has a Score of 98\u2013109?", "context": "CREATE TABLE table_name_27 (streak VARCHAR, score VARCHAR)"}, {"answer": "SELECT game FROM table_name_13 WHERE opponent = \"@ washington wizards\"", "question": "Which Game has an Opponent of @ washington wizards?", "context": "CREATE TABLE table_name_13 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT streak FROM table_name_9 WHERE record = \"21\u201322\"", "question": "Which Streak has a Record of 21\u201322?", "context": "CREATE TABLE table_name_9 (streak VARCHAR, record VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_72 WHERE partner = \"jordan kerr\" AND date = \"11 october 2009\"", "question": "What was the outcome on 11 October 2009, when his partner was Jordan Kerr?", "context": "CREATE TABLE table_name_72 (outcome VARCHAR, partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_32 WHERE partner = \"stephen huss\" AND date = \"31 october 2010\"", "question": "On what surface did he play with Stephen Huss on 31 October 2010?", "context": "CREATE TABLE table_name_32 (surface VARCHAR, partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_44 WHERE tournament = \"year end ranking\"", "question": "What's was the 2008 during the Year End Ranking?", "context": "CREATE TABLE table_name_44 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_45 WHERE 2011 = \"q2\"", "question": "What's the 2010 when Q2 happened in 2011?", "context": "CREATE TABLE table_name_45 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_5 WHERE 2009 = \"1r\"", "question": "What's the 2008 when 1R happened in 2009?", "context": "CREATE TABLE table_name_5 (Id VARCHAR)"}, {"answer": "SELECT MIN(olympics_so_far) FROM table_name_80 WHERE sailors > 1 AND first_og > 1948 AND class = \"flying dutchman\"", "question": "What is the lowest value for Olympics, when Sailors is greater than 1, when First OG is after 1948, and when Class is \"Flying Dutchman\"?", "context": "CREATE TABLE table_name_80 (olympics_so_far INTEGER, class VARCHAR, sailors VARCHAR, first_og VARCHAR)"}, {"answer": "SELECT country FROM table_name_34 WHERE date = \"2003\"", "question": "What is the country associated with the date in 2003?", "context": "CREATE TABLE table_name_34 (country VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_90 WHERE country = \"uk\" AND catalog = \"s 63795\"", "question": "What is the format for UK catalog S 63795?", "context": "CREATE TABLE table_name_90 (format VARCHAR, country VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE country = \"us\" AND catalog = \"ck 9942\"", "question": "What is the date for US catalog CK 9942?", "context": "CREATE TABLE table_name_4 (date VARCHAR, country VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_14 WHERE catalog = \"emb 31956\"", "question": "What is the label for catalog EMB 31956?", "context": "CREATE TABLE table_name_14 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE label = \"cbs\"", "question": "What is the date for CBS label?", "context": "CREATE TABLE table_name_48 (date VARCHAR, label VARCHAR)"}, {"answer": "SELECT name FROM table_name_57 WHERE constituency_number = \"16\"", "question": "Where is constituency number 16?", "context": "CREATE TABLE table_name_57 (name VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_89 WHERE elevated = \"april 12, 1281\" AND nationality = \"french\" AND elector = \"jean cholet\"", "question": "Which Elevator has Elevated of april 12, 1281, a Nationality of french, and an Elector of jean cholet?", "context": "CREATE TABLE table_name_89 (elevator VARCHAR, elector VARCHAR, elevated VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT elevated FROM table_name_23 WHERE elector = \"matteo orsini rosso\"", "question": "Which Elevated has an Elector of matteo orsini rosso?", "context": "CREATE TABLE table_name_23 (elevated VARCHAR, elector VARCHAR)"}, {"answer": "SELECT elector FROM table_name_1 WHERE title = \"title of s. cecilia\"", "question": "Which Elector has a Title of s. cecilia?", "context": "CREATE TABLE table_name_1 (elector VARCHAR, title VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_29 WHERE title = \"bishop of palestrina\"", "question": "Which Elevator has a Title of bishop of palestrina?", "context": "CREATE TABLE table_name_29 (elevator VARCHAR, title VARCHAR)"}, {"answer": "SELECT order FROM table_name_68 WHERE nationality = \"ese milan\"", "question": "Which Order has a Nationality of ese milan?", "context": "CREATE TABLE table_name_68 (order VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT elector FROM table_name_74 WHERE order = \"cardinal-priest\" AND nationality = \"french\"", "question": "Which Elector has an Order of cardinal-priest, and a Nationality of french?", "context": "CREATE TABLE table_name_74 (elector VARCHAR, order VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_name_25 WHERE city = \"sousse\" AND capacity > 25 OFFSET 000", "question": "How many foundeds have sousse as the city, with a capacity greater than 25,000?", "context": "CREATE TABLE table_name_25 (founded VARCHAR, city VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_name_42 WHERE club = \"bizerte athletic f.c.\"", "question": "What is the lowest founded that has bizerte athletic f.c. as the club?", "context": "CREATE TABLE table_name_42 (founded INTEGER, club VARCHAR)"}, {"answer": "SELECT SUM(founded) FROM table_name_6 WHERE club = \"stade tunisien\" AND capacity > 18 OFFSET 000", "question": "How many foundeds have stade tunisien as the club, with a capacity greater than 18,000?", "context": "CREATE TABLE table_name_6 (founded INTEGER, club VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_name_84 WHERE founded = 1944", "question": "How much capacity has 1944 as the founded?", "context": "CREATE TABLE table_name_84 (capacity VARCHAR, founded VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_58 WHERE losses > 6 AND club = \"club sportif sfaxien\" AND wins < 3", "question": "What is the total number of Games, when Losses is greater than 6, when Club is \"Club Sportif Sfaxien\", and when Wins is less than 3?", "context": "CREATE TABLE table_name_58 (games VARCHAR, wins VARCHAR, losses VARCHAR, club VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_40 WHERE wins < 1 AND draws > 1", "question": "What is the lowest Games, when Wins is less than 1, and when Draws is greater than 1?", "context": "CREATE TABLE table_name_40 (games INTEGER, wins VARCHAR, draws VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_70 WHERE losses > 9 AND wins > 9", "question": "What is the average Draws, when Losses is greater than 9, and when Wins is greater than 9?", "context": "CREATE TABLE table_name_70 (draws INTEGER, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_36 WHERE 2007 = \"558\"", "question": "What is the 2011 entry for the row with a 2007 entry of 558?", "context": "CREATE TABLE table_name_36 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_35 WHERE 2009 = \"270\"", "question": "What is the 2010 entry for the row that has a 2009 entry of 270?", "context": "CREATE TABLE table_name_35 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_94 WHERE 2007 = \"a\" AND tournament = \"us open\"", "question": "What is the 2009 entry for the row that has a 2007 entry of A and a tournament entry of US Open?", "context": "CREATE TABLE table_name_94 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_32 WHERE 2011 = \"1r\"", "question": "What is the 2008 entry for the row that as a 2011 entry of 1R?", "context": "CREATE TABLE table_name_32 (Id VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_99 WHERE player = \"lanny wadkins\"", "question": "What is the To par for Lanny Wadkins?", "context": "CREATE TABLE table_name_99 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_86 WHERE country = \"australia\"", "question": "What is Australia's highest total?", "context": "CREATE TABLE table_name_86 (total INTEGER, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_38 WHERE to_par > 5 AND player = \"john mahaffey\"", "question": "What country has a to par larger than 5 and a player John Mahaffey?", "context": "CREATE TABLE table_name_38 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_9 WHERE year_s__won = \"1991\"", "question": "Which Total has a Year(s) won of 1991?", "context": "CREATE TABLE table_name_9 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_84 WHERE to_par = 12", "question": "Which Year(s) won with a To par of 12?", "context": "CREATE TABLE table_name_84 (year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_63 WHERE player = \"jack nicklaus\" AND total < 146", "question": "Which To par has a Player of jack nicklaus, and a Total smaller than 146?", "context": "CREATE TABLE table_name_63 (to_par INTEGER, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(points_for_higher) FROM table_name_25 WHERE points_for_ordinary = 0 AND grade = \"ng\" AND points_for_foundation < 0", "question": "What average points for highers has 0 has points for ordinary, and Ng as the grade, and less than 0 as points for foundation?", "context": "CREATE TABLE table_name_25 (points_for_higher INTEGER, points_for_foundation VARCHAR, points_for_ordinary VARCHAR, grade VARCHAR)"}, {"answer": "SELECT MAX(points_for_higher) FROM table_name_66 WHERE points_for_foundation < 0", "question": "What is the maximum points for higher when the points for foundation is less than 0?", "context": "CREATE TABLE table_name_66 (points_for_higher INTEGER, points_for_foundation INTEGER)"}, {"answer": "SELECT MAX(points_for_ordinary) FROM table_name_97 WHERE points_for_foundation = 10", "question": "With 10 as the points for foundation, what is the maximum points for ordinary?", "context": "CREATE TABLE table_name_97 (points_for_ordinary INTEGER, points_for_foundation VARCHAR)"}, {"answer": "SELECT country FROM table_name_47 WHERE score = 66 - 72 - 70 - 69 = 277", "question": "What is the Country of the Player with a Score of 66-72-70-69=277?", "context": "CREATE TABLE table_name_47 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_58 WHERE driver = \"patrick carpentier\" AND laps < 103", "question": "What is the sum of a grid for driver Patrick Carpentier and less than 103 laps?", "context": "CREATE TABLE table_name_58 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT team FROM table_name_80 WHERE points = 0 AND time_retired = \"contact\" AND laps = 71", "question": "What team has 0 points and a contact tired/retired, and 71 laps?", "context": "CREATE TABLE table_name_80 (team VARCHAR, laps VARCHAR, points VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_8 WHERE team = \"dale coyne racing\" AND points = 0", "question": "What is the sum of lap for the Dale Coyne Racing Team, and 0 points?", "context": "CREATE TABLE table_name_8 (laps INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_29 WHERE points > 16", "question": "What is the lowest number of laps with more than 16 points?", "context": "CREATE TABLE table_name_29 (laps INTEGER, points INTEGER)"}, {"answer": "SELECT team FROM table_name_70 WHERE laps = 104 AND grid = 10", "question": "What team has 104 laps and a grid of 10?", "context": "CREATE TABLE table_name_70 (team VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT year FROM table_name_81 WHERE opening = \"e34 nimzo-indian defence\"", "question": "Which year had e34 Nimzo-Indian defence is the opening?", "context": "CREATE TABLE table_name_81 (year VARCHAR, opening VARCHAR)"}, {"answer": "SELECT AVG(quantity) FROM table_name_40 WHERE number_s_ = \"1104\"", "question": "What is the average quantity that has 1104 as the number(s)?", "context": "CREATE TABLE table_name_40 (quantity INTEGER, number_s_ VARCHAR)"}, {"answer": "SELECT type FROM table_name_26 WHERE quantity = 5", "question": "What type has 5 as the quantity?", "context": "CREATE TABLE table_name_26 (type VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT years FROM table_name_44 WHERE player = \"alvin mitchell\"", "question": "What years did Alvin Mitchell play?", "context": "CREATE TABLE table_name_44 (years VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_63 WHERE team = \"1970s\"", "question": "Who is the player on a team from the 1970s?", "context": "CREATE TABLE table_name_63 (player VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_39 WHERE player = \"oliver dobbins\"", "question": "What team does Oliver Dobbins play for?", "context": "CREATE TABLE table_name_39 (team VARCHAR, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_54 WHERE tournament = \"mallorca 2, spain\"", "question": "Who was the opponent in the mallorca 2, spain tournament?", "context": "CREATE TABLE table_name_54 (opponent VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE opponent = \"varvara lepchenko\"", "question": "When was varvara lepchenko the opponent?", "context": "CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_71 WHERE total = 288", "question": "For the total of 288 what was the to par?", "context": "CREATE TABLE table_name_71 (to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_4 WHERE country = \"united states\" AND total = 278", "question": "What year did the United States win with a total of 278?", "context": "CREATE TABLE table_name_4 (year_s__won VARCHAR, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_88 WHERE finish = \"t47\"", "question": "What was the lowest total with a finish of t47?", "context": "CREATE TABLE table_name_88 (total INTEGER, finish VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_97 WHERE total > 288", "question": "What is the to par when the total is larger than 288?", "context": "CREATE TABLE table_name_97 (to_par VARCHAR, total INTEGER)"}, {"answer": "SELECT AVG(rank) FROM table_name_50 WHERE total < 5 AND bronze = 1 AND silver < 1", "question": "What is the rank for total less than 5, 1 bronze and less than 1 silver?", "context": "CREATE TABLE table_name_50 (rank INTEGER, silver VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_95 WHERE rank > 11 AND gold < 0", "question": "What is the most possible bronze medals when rank is more than 11 and there are fewer than 0 gold medals?", "context": "CREATE TABLE table_name_95 (bronze INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_6 WHERE gold > 2 AND silver < 0", "question": "What is the least total when there are more than 2 golds and fewer than 0 silver?", "context": "CREATE TABLE table_name_6 (total INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_39 WHERE record = \"2-4\"", "question": "Which visitor has a record of 2-4?", "context": "CREATE TABLE table_name_39 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_81 WHERE date = \"april 28\"", "question": "What is the record on April 28?", "context": "CREATE TABLE table_name_81 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE home = \"chicago black hawks\" AND record = \"2-1\"", "question": "What is the score for the Chicago Black Hawks game with a record of 2-1?", "context": "CREATE TABLE table_name_36 (score VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_50 WHERE hometown = \"san carlos, pangasinan\"", "question": "What's the latest year with a hometown of san carlos, pangasinan?", "context": "CREATE TABLE table_name_50 (year INTEGER, hometown VARCHAR)"}, {"answer": "SELECT other_awards FROM table_name_77 WHERE year = 1995", "question": "What are the other awards for 1995?", "context": "CREATE TABLE table_name_77 (other_awards VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_11 WHERE placement_in_miss_world = \"did not place\" AND delegate = \"daisy garcia reyes\"", "question": "What's the latest year that daisy garcia reyes did not place in miss world?", "context": "CREATE TABLE table_name_11 (year INTEGER, placement_in_miss_world VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT venue FROM table_name_15 WHERE against < 7", "question": "Which venue had an against smaller than 7?", "context": "CREATE TABLE table_name_15 (venue VARCHAR, against INTEGER)"}, {"answer": "SELECT date FROM table_name_92 WHERE opposing_teams = \"australia\" AND against = 12", "question": "What day was Australia the opposing team and the against 12?", "context": "CREATE TABLE table_name_92 (date VARCHAR, opposing_teams VARCHAR, against VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE opposing_teams = \"wales\"", "question": "What day was Wales the opposing team?", "context": "CREATE TABLE table_name_17 (date VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS $__ FROM table_name_85 WHERE score = 67 - 71 - 70 - 71 = 279", "question": "What is the amount of money with a score of 67-71-70-71=279?", "context": "CREATE TABLE table_name_85 (money___ VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_22 WHERE player = \"dave rummells\"", "question": "What is Dave Rummells's to par?", "context": "CREATE TABLE table_name_22 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_51 WHERE score = 67 - 66 - 71 - 71 = 275", "question": "What is the to par number with a score of 67-66-71-71=275?", "context": "CREATE TABLE table_name_51 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_55 WHERE player = \"steve jones\"", "question": "What country is Steve Jones from?", "context": "CREATE TABLE table_name_55 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT black FROM table_name_87 WHERE white = \"anand\" AND moves = 20 AND opening = \"e15 queen's indian defence\"", "question": "Who was the opponent of Anand in the match with 20 moves that opened with E15 Queen's Indian Defence?", "context": "CREATE TABLE table_name_87 (black VARCHAR, opening VARCHAR, white VARCHAR, moves VARCHAR)"}, {"answer": "SELECT points FROM table_name_71 WHERE points_for = \"points for\"", "question": "What is Points, when Points For is \"points for\"?", "context": "CREATE TABLE table_name_71 (points VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_55 WHERE played = \"18\" AND points_against = \"478\"", "question": "What is Drawn, when Played is \"18\", and when Points Against is \"478\"?", "context": "CREATE TABLE table_name_55 (drawn VARCHAR, played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_88 WHERE losing_bonus = \"2\" AND lost = \"8\" AND club = \"rhyl and district rfc\"", "question": "What is Points For, when Losing Bonus is \"2\", when Lost is \"8\", and when Club is \"Rhyl And District RFC\"?", "context": "CREATE TABLE table_name_88 (points_for VARCHAR, club VARCHAR, losing_bonus VARCHAR, lost VARCHAR)"}, {"answer": "SELECT lost FROM table_name_16 WHERE points_for = \"205\"", "question": "What is Lost, when Points For is \"205\"?", "context": "CREATE TABLE table_name_16 (lost VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT played FROM table_name_81 WHERE tries_against = \"63\"", "question": "What is Played, when Tries Against is \"63\"?", "context": "CREATE TABLE table_name_81 (played VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_98 WHERE tries_for = \"39\"", "question": "What is Try Bonus, when Tries For is \"39\"?", "context": "CREATE TABLE table_name_98 (try_bonus VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_63 WHERE week_4 = \"piret aava\"", "question": "What Week 2 has a Week 4 of piret aava?", "context": "CREATE TABLE table_name_63 (week_2 VARCHAR, week_4 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_16 WHERE week_3 = \"casey mae\"", "question": "What Week 2 has a Week 3 of casey mae?", "context": "CREATE TABLE table_name_16 (week_2 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_66 WHERE week_1 = \"crystal beddows\"", "question": "What Week 2 has a Week 1 of crystal beddows?", "context": "CREATE TABLE table_name_66 (week_2 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT week_3 FROM table_name_95 WHERE week_4 = \"gina blair\"", "question": "What Week 3 has a Week 4 of gina blair?", "context": "CREATE TABLE table_name_95 (week_3 VARCHAR, week_4 VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_10 WHERE week_1 = \"mysti sherwood\"", "question": "What Week 5 has a Week 1 of mysti sherwood?", "context": "CREATE TABLE table_name_10 (week_5 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT week_4 FROM table_name_62 WHERE week_2 = \"samantha speer\"", "question": "What Week 4 has a Week 2 of samantha speer?", "context": "CREATE TABLE table_name_62 (week_4 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_party FROM table_name_14 WHERE election = \"1857\"", "question": "Which 2nd Party has a Election of 1857?", "context": "CREATE TABLE table_name_14 (election VARCHAR)"}, {"answer": "SELECT 2 AS nd_party FROM table_name_17 WHERE election = \"1857\"", "question": "Which 2nd Party has a Election of 1857?", "context": "CREATE TABLE table_name_17 (election VARCHAR)"}, {"answer": "SELECT 1 AS st_member FROM table_name_51 WHERE election = \"1832\"", "question": "which 1st Member has a Election of 1832", "context": "CREATE TABLE table_name_51 (election VARCHAR)"}, {"answer": "SELECT name FROM table_name_42 WHERE moving_from = \"treviso\" AND type = \"loan return\"", "question": "Who is moving from Treviso with a loan return?", "context": "CREATE TABLE table_name_42 (name VARCHAR, moving_from VARCHAR, type VARCHAR)"}, {"answer": "SELECT nat FROM table_name_9 WHERE name = \"acquafresca\"", "question": "What is the nationality of Acquafresca?", "context": "CREATE TABLE table_name_9 (nat VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_89 WHERE transfer_window = \"summer\" AND moving_from = \"free agent\"", "question": "What is the type if the transfer window is summer and the moving from category is free agent?", "context": "CREATE TABLE table_name_89 (type VARCHAR, transfer_window VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_46 WHERE moving_from = \"s\u00e3o paulo\"", "question": "What is the transfer window for the moving from of S\u00e3o Paulo?", "context": "CREATE TABLE table_name_46 (transfer_window VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_22 WHERE type = \"transfer\" AND nat = \"bra\"", "question": "What is the moving from with a transfer and the nationality of Bra?", "context": "CREATE TABLE table_name_22 (moving_from VARCHAR, type VARCHAR, nat VARCHAR)"}, {"answer": "SELECT ends FROM table_name_59 WHERE name = \"maaroufi\"", "question": "What is the end date for Maaroufi?", "context": "CREATE TABLE table_name_59 (ends VARCHAR, name VARCHAR)"}, {"answer": "SELECT result FROM table_name_40 WHERE date = \"october 2, 1966\"", "question": "The game played on October 2, 1966 had what result?", "context": "CREATE TABLE table_name_40 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_18 WHERE date = \"october 9, 1966\"", "question": "Who was the game played against on October 9, 1966?", "context": "CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_13 WHERE attendance = \"69,372\"", "question": "What is the maximum week that 69,372 people attended the game?", "context": "CREATE TABLE table_name_13 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE week > 4 AND attendance = \"60,658\"", "question": "What is the date of the game played after week 4 with 60,658 people in attendance?", "context": "CREATE TABLE table_name_28 (date VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(capacity) FROM table_name_21 WHERE city = \"trogir\"", "question": "What is the total capacity for the city of Trogir?", "context": "CREATE TABLE table_name_21 (capacity INTEGER, city VARCHAR)"}, {"answer": "SELECT party FROM table_name_17 WHERE established > 1797 AND election = 2007", "question": "What party established in 1797 won an election in 2007?", "context": "CREATE TABLE table_name_17 (party VARCHAR, established VARCHAR, election VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_13 WHERE lost < 3 AND drawn < 0", "question": "What Played has a Lost smaller than 3, and a Drawn smaller than 0?", "context": "CREATE TABLE table_name_13 (played INTEGER, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(_percentage_won) FROM table_name_89 WHERE lost < 0", "question": "What is the largest % Won with a Lost smaller than 0?", "context": "CREATE TABLE table_name_89 (_percentage_won INTEGER, lost INTEGER)"}, {"answer": "SELECT SUM(against) FROM table_name_76 WHERE _percentage_won > 100", "question": "What is the total of Against with % Won larger than 100?", "context": "CREATE TABLE table_name_76 (against INTEGER, _percentage_won INTEGER)"}, {"answer": "SELECT MIN(against) FROM table_name_48 WHERE lost > 0 AND _percentage_won > 50 AND played < 5", "question": "What is the smallest Against with Lost larger than 0, % Won larger than 50, and Played smaller than 5?", "context": "CREATE TABLE table_name_48 (against INTEGER, played VARCHAR, lost VARCHAR, _percentage_won VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_93 WHERE against < 25 AND played < 1", "question": "What is the Lost with Against smaller than 25, and Played smaller than 1?", "context": "CREATE TABLE table_name_93 (lost INTEGER, against VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(height__m_) FROM table_name_98 WHERE prominence__m_ = 3 OFFSET 118", "question": "What is the largest height when the prominence is 3,118?", "context": "CREATE TABLE table_name_98 (height__m_ INTEGER, prominence__m_ VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_34 WHERE away_team = \"wigan athletic\"", "question": "What is the Tie number of when Wigan Athletic was the away team?", "context": "CREATE TABLE table_name_34 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE tie_no = \"6\"", "question": "Name the team with a tie number of 6.", "context": "CREATE TABLE table_name_51 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT ship FROM table_name_81 WHERE country = \"royal navy\" AND builder = \"palmers shipbuilding and iron company\"", "question": "What ship was built by Palmers Shipbuilding and Iron Company for the Royal Navy?", "context": "CREATE TABLE table_name_81 (ship VARCHAR, country VARCHAR, builder VARCHAR)"}, {"answer": "SELECT class___type FROM table_name_32 WHERE location = \"trieste\"", "question": "What is the class/type at Trieste?", "context": "CREATE TABLE table_name_32 (class___type VARCHAR, location VARCHAR)"}, {"answer": "SELECT country FROM table_name_96 WHERE builder = \"palmers shipbuilding and iron company\"", "question": "What is the country of Palmers Shipbuilding and Iron Company?", "context": "CREATE TABLE table_name_96 (country VARCHAR, builder VARCHAR)"}, {"answer": "SELECT country FROM table_name_96 WHERE location = \"aberdeen\"", "question": "In what country is Aberdeen?", "context": "CREATE TABLE table_name_96 (country VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(number_of_households) FROM table_name_1 WHERE median_household_income = \"$32,806\" AND population > 11 OFFSET 291", "question": "Which Number of households has a Median household income of $32,806, and a Population larger than 11,291?", "context": "CREATE TABLE table_name_1 (number_of_households INTEGER, median_household_income VARCHAR, population VARCHAR)"}, {"answer": "SELECT county FROM table_name_96 WHERE median_household_income = \"$37,230\"", "question": "Which County has a Median household income of $37,230?", "context": "CREATE TABLE table_name_96 (county VARCHAR, median_household_income VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_21 WHERE county = \"mississippi\" AND number_of_households < 17 OFFSET 741", "question": "Which Population has a County of mississippi, and a Number of households smaller than 17,741?", "context": "CREATE TABLE table_name_21 (population INTEGER, county VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT AVG(height) FROM table_name_27 WHERE position = \"pf\" AND year_born__age_ = \"april 1, 1981 (age32)\"", "question": "Count the average Height which has a Position of pf, and a Year born (Age) on april 1, 1981 (age32)?", "context": "CREATE TABLE table_name_27 (height INTEGER, position VARCHAR, year_born__age_ VARCHAR)"}, {"answer": "SELECT SUM(height) FROM table_name_50 WHERE position = \"c\" AND player = \"yiannis bourousis\"", "question": "Which Height has a Position of c, and a Player of yiannis bourousis?", "context": "CREATE TABLE table_name_50 (height INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_61 WHERE score_in_the_final = \"1\u20136, 6\u20134, 7\u20135\"", "question": "Which Outcome has a Score in the final of 1\u20136, 6\u20134, 7\u20135?", "context": "CREATE TABLE table_name_61 (outcome VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_96 WHERE score_in_the_final = \"4\u20136, 5\u20137\"", "question": "Which Outcome has a Score in the final of 4\u20136, 5\u20137?", "context": "CREATE TABLE table_name_96 (outcome VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_79 WHERE partner = \"olga lugina\"", "question": "Which Opponents in the final has a Partner of olga lugina?", "context": "CREATE TABLE table_name_79 (opponents_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_57 WHERE score_in_the_final = \"3\u20136, 1\u20136\"", "question": "Which Outcome has a Score in the final of 3\u20136, 1\u20136?", "context": "CREATE TABLE table_name_57 (outcome VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_75 WHERE name = \"he yingqin\" AND birth < 1890", "question": "What rank is He Yingqin who was born before 1890?", "context": "CREATE TABLE table_name_75 (rank INTEGER, name VARCHAR, birth VARCHAR)"}, {"answer": "SELECT death FROM table_name_74 WHERE birth = 1873 AND rank > 28", "question": "What year is the death for a birth of 1873 and higher than rank 28?", "context": "CREATE TABLE table_name_74 (death VARCHAR, birth VARCHAR, rank VARCHAR)"}, {"answer": "SELECT name FROM table_name_6 WHERE death = \"2001\"", "question": "What is the name with a death in 2001?", "context": "CREATE TABLE table_name_6 (name VARCHAR, death VARCHAR)"}, {"answer": "SELECT 1 AS st_round FROM table_name_91 WHERE team_1 = \"ecac chaumont (d2)\"", "question": "What is the 1st round result for ECAC Chaumont (D2) as team 1?", "context": "CREATE TABLE table_name_91 (team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_21 WHERE team_2 = \"tours fc (d2)\"", "question": "Which team 1 played against team 2 of Tours FC (D2)?", "context": "CREATE TABLE table_name_21 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_45 WHERE team_1 = \"ecac chaumont (d2)\"", "question": "Which is team 2 when team 1 is ECAC Chaumont (d2)?", "context": "CREATE TABLE table_name_45 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_57 WHERE code = \"1.2 1.3\"", "question": "Which Written by has a Code of 1.2 1.3?", "context": "CREATE TABLE table_name_57 (written_by VARCHAR, code VARCHAR)"}, {"answer": "SELECT MAX(crude_death_rate__per_1000_) FROM table_name_16 WHERE deaths = \"3 433\" AND average_population__x_1000_ > 298", "question": "What is the highest crude death rate when deaths are 3 433 and average population is greater than 298?", "context": "CREATE TABLE table_name_16 (crude_death_rate__per_1000_ INTEGER, deaths VARCHAR, average_population__x_1000_ VARCHAR)"}, {"answer": "SELECT live_births FROM table_name_79 WHERE crude_birth_rate__per_1000_ > 15.7 AND average_population__x_1000_ < 297 AND deaths = \"4 686\"", "question": "How many live births where the crude birth rate is lore than 15.7, average population is less than 297 and deaths are al 4 686?", "context": "CREATE TABLE table_name_79 (live_births VARCHAR, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR, average_population__x_1000_ VARCHAR)"}, {"answer": "SELECT natural_change FROM table_name_96 WHERE crude_birth_rate__per_1000_ < 11.4 AND crude_death_rate__per_1000_ > 12.1 AND deaths = \"4 376\"", "question": "What is the national change where crude birth rate is less than 11.4, crude death rate is more than 12.1 and deaths are 4 376?", "context": "CREATE TABLE table_name_96 (natural_change VARCHAR, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR, crude_death_rate__per_1000_ VARCHAR)"}, {"answer": "SELECT AVG(average_population__x_1000_) FROM table_name_40 WHERE deaths = \"3 557\" AND crude_death_rate__per_1000_ < 11.9", "question": "What is the average population when deaths are 3 557 and crude death date is less than 11.9?", "context": "CREATE TABLE table_name_40 (average_population__x_1000_ INTEGER, deaths VARCHAR, crude_death_rate__per_1000_ VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_99 WHERE opponent = \"cleveland browns\"", "question": "In what week(s) did the Broncos go up against the Cleveland Browns?", "context": "CREATE TABLE table_name_99 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_78 WHERE date = \"december 24, 1994\"", "question": "What week was the December 24, 1994 game?", "context": "CREATE TABLE table_name_78 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_98 WHERE round < 3", "question": "Which Nationality has a Round smaller than 3?", "context": "CREATE TABLE table_name_98 (nationality VARCHAR, round INTEGER)"}, {"answer": "SELECT position FROM table_name_45 WHERE round > 4 AND player = \"patrick johnson\"", "question": "Which Position has a Round larger than 4, and a Player of patrick johnson?", "context": "CREATE TABLE table_name_45 (position VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_17 WHERE round = 4", "question": "Which Nationality has a Round of 4?", "context": "CREATE TABLE table_name_17 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_48 WHERE round < 4 AND college_junior_club_team__league_ = \"usa u-18\"", "question": "Which Player has a Round smaller than 4, and a College/junior/club team (league) of usa u-18?", "context": "CREATE TABLE table_name_48 (player VARCHAR, round VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_16 WHERE team_1 = \"lokomotiva\"", "question": "What team 2 has lokomotiva as team 1?", "context": "CREATE TABLE table_name_16 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_99 WHERE team_2 = \"sloga jugomagnat\"", "question": "What team 1 has sloga jugomagnat as team 2?", "context": "CREATE TABLE table_name_99 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_7 WHERE team_1 = \"pelister\"", "question": "What 2nd leg has pelister as team 1?", "context": "CREATE TABLE table_name_7 (team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_78 WHERE team_2 = \"11 oktomvri\"", "question": "What 1st leg has 11 oktomvri as team 2?", "context": "CREATE TABLE table_name_78 (team_2 VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_39 WHERE date = \"15/10/1999\"", "question": "What is the total against on 15/10/1999?", "context": "CREATE TABLE table_name_39 (against INTEGER, date VARCHAR)"}, {"answer": "SELECT status FROM table_name_66 WHERE date = \"21/08/1999\"", "question": "What status is on 21/08/1999?", "context": "CREATE TABLE table_name_66 (status VARCHAR, date VARCHAR)"}, {"answer": "SELECT opposing_teams FROM table_name_63 WHERE date = \"11/04/1999\"", "question": "What opposing teams playing on 11/04/1999?", "context": "CREATE TABLE table_name_63 (opposing_teams VARCHAR, date VARCHAR)"}, {"answer": "SELECT co_singer FROM table_name_26 WHERE composer = \"sukhwinder singh\"", "question": "What co-singer has sukhwinder singh as the composer?", "context": "CREATE TABLE table_name_26 (co_singer VARCHAR, composer VARCHAR)"}, {"answer": "SELECT away FROM table_name_61 WHERE home = \"3-2\" AND season = \"1959-60\"", "question": "What is the away when the home is 3-2, and the season is 1959-60?", "context": "CREATE TABLE table_name_61 (away VARCHAR, home VARCHAR, season VARCHAR)"}, {"answer": "SELECT teams FROM table_name_32 WHERE league = \"bundesliga\" AND away = \"3-2\"", "question": "What team has a league of bundesliga, and an away of 3-2?", "context": "CREATE TABLE table_name_32 (teams VARCHAR, league VARCHAR, away VARCHAR)"}, {"answer": "SELECT teams FROM table_name_58 WHERE home = \"5-0\"", "question": "What teams has a home of 5-0?", "context": "CREATE TABLE table_name_58 (teams VARCHAR, home VARCHAR)"}, {"answer": "SELECT teams FROM table_name_27 WHERE home = \"1-0\" AND season = \"1988-89\"", "question": "What teams has a home of 1-0, in the season 1988-89?", "context": "CREATE TABLE table_name_27 (teams VARCHAR, home VARCHAR, season VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE to_par = 5 AND player = \"brian watts\"", "question": "What is the score of player brian watts, who has a to par of 5?", "context": "CREATE TABLE table_name_5 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_83 WHERE place = \"t7\" AND score = 73 - 74 = 147 AND player = \"len mattiace\"", "question": "What is the highest to par of player len mattiace, who has a t7 place and a score of 73-74=147?", "context": "CREATE TABLE table_name_83 (to_par INTEGER, player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_87 WHERE country = \"united states\" AND score = 74 - 72 = 146", "question": "What is the place of the player from the United States with a score of 74-72=146?", "context": "CREATE TABLE table_name_87 (place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_8 WHERE score = 76 - 71 = 147", "question": "What country has a 76-71=147 score?", "context": "CREATE TABLE table_name_8 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_74 WHERE goals_conceded < 154 AND games_played < 36", "question": "What is the most draws when less than 154 goals were conceded, and less than 36 games played?", "context": "CREATE TABLE table_name_74 (draws INTEGER, goals_conceded VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT MAX(goals_scored) FROM table_name_87 WHERE wins < 13 AND goals_conceded > 86 AND loses > 32", "question": "What is the maximum goals score with less than 13 wins, greater than 86 goals were conceded, and more than 32 games lost?", "context": "CREATE TABLE table_name_87 (goals_scored INTEGER, loses VARCHAR, wins VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT games_played FROM table_name_58 WHERE wins = 13 AND goals_conceded = 45", "question": "How many games have been played when there are 13 wins and 45 goals were conceded?", "context": "CREATE TABLE table_name_58 (games_played VARCHAR, wins VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT tenure FROM table_name_79 WHERE character = \"kerry vincent\"", "question": "What is Character Kerry Vincent's Tenure?", "context": "CREATE TABLE table_name_79 (tenure VARCHAR, character VARCHAR)"}, {"answer": "SELECT episodes FROM table_name_31 WHERE rank = \"senior sergeant\" AND actor_actress = \"rodger corser\"", "question": "What Rodger Corser Episode has a Rank of senior sergeant?", "context": "CREATE TABLE table_name_31 (episodes VARCHAR, rank VARCHAR, actor_actress VARCHAR)"}, {"answer": "SELECT character FROM table_name_3 WHERE rank = \"intelligence officer\"", "question": "What Character has a Rank of intelligence officer?", "context": "CREATE TABLE table_name_3 (character VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_2 WHERE tenure = \"2011\"", "question": "What is the Rank of the Character with Tenure of 2011?", "context": "CREATE TABLE table_name_2 (rank VARCHAR, tenure VARCHAR)"}, {"answer": "SELECT actor_actress FROM table_name_88 WHERE tenure = \"2008\u20132011\" AND character = \"stella dagostino\"", "question": "What Actor/Actress a Tenure of 2008\u20132011 played Stella Dagostino?", "context": "CREATE TABLE table_name_88 (actor_actress VARCHAR, tenure VARCHAR, character VARCHAR)"}, {"answer": "SELECT rank FROM table_name_52 WHERE actor_actress = \"jolene anderson\"", "question": "What is Jolene Anderson's Rank?", "context": "CREATE TABLE table_name_52 (rank VARCHAR, actor_actress VARCHAR)"}, {"answer": "SELECT neon FROM table_name_89 WHERE argon = \"4.203\"", "question": "What neon has an Argon of 4.203?", "context": "CREATE TABLE table_name_89 (neon VARCHAR, argon VARCHAR)"}, {"answer": "SELECT krypton FROM table_name_18 WHERE argon = \"20.85\"", "question": "What krypton has an argon of 20.85?", "context": "CREATE TABLE table_name_18 (krypton VARCHAR, argon VARCHAR)"}, {"answer": "SELECT argon FROM table_name_51 WHERE neon = \"10.5\"", "question": "What argon has a neon of 10.5?", "context": "CREATE TABLE table_name_51 (argon VARCHAR, neon VARCHAR)"}, {"answer": "SELECT neon FROM table_name_61 WHERE krypton = \"213\"", "question": "What neon has a krypton of 213?", "context": "CREATE TABLE table_name_61 (neon VARCHAR, krypton VARCHAR)"}, {"answer": "SELECT argon FROM table_name_54 WHERE helium = \"1.0000684\"", "question": "Wha argon has helium of 1.0000684?", "context": "CREATE TABLE table_name_54 (argon VARCHAR, helium VARCHAR)"}, {"answer": "SELECT date__ddmmyyyy_ FROM table_name_45 WHERE axis_unit = \"5./jg 3\"", "question": "What was the date of the victory when the Axis Unit was 5./jg 3?", "context": "CREATE TABLE table_name_45 (date__ddmmyyyy_ VARCHAR, axis_unit VARCHAR)"}, {"answer": "SELECT date__ddmmyyyy_ FROM table_name_74 WHERE soviet_unit = \"73 giap\" AND enemy_aircraft = \"bf.109g-? w.nr.?\"", "question": "What was the date of the victory when the Soviet Unit was 73 giap, and the Enemy Aircraft was bf.109g-? w.nr.?", "context": "CREATE TABLE table_name_74 (date__ddmmyyyy_ VARCHAR, soviet_unit VARCHAR, enemy_aircraft VARCHAR)"}, {"answer": "SELECT aircraft_flown FROM table_name_40 WHERE axis_unit = \"luftwaffe (**)\" AND enemy_aircraft = \"ju.88\"", "question": "What was the aircraft flown when the axis unit was luftwaffe (**) and the enemy aircraft was ju.88?", "context": "CREATE TABLE table_name_40 (aircraft_flown VARCHAR, axis_unit VARCHAR, enemy_aircraft VARCHAR)"}, {"answer": "SELECT enemy_aircraft FROM table_name_46 WHERE soviet_unit = \"437 iap\" AND date__ddmmyyyy_ = \"14.09.1942\"", "question": "What was the enemy aircraft on 14.09.1942, when the Soviet Unit was 437 iap?", "context": "CREATE TABLE table_name_46 (enemy_aircraft VARCHAR, soviet_unit VARCHAR, date__ddmmyyyy_ VARCHAR)"}, {"answer": "SELECT reserved_for___sc___st__none_ FROM table_name_31 WHERE name = \"goverdhan\"", "question": "What Reserved for (SC / ST /None) with a Name of goverdhan?", "context": "CREATE TABLE table_name_31 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(number_of_electorates__2009_) FROM table_name_56 WHERE district = \"mathura\" AND name = \"mant\"", "question": "What Number of electorates (2009) has a District of mathura, and a Name of mant?", "context": "CREATE TABLE table_name_56 (number_of_electorates__2009_ INTEGER, district VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(number_of_electorates__2009_) FROM table_name_41 WHERE constituency_number = \"total:\"", "question": "What is the largest Number of electorates (2009) with a Constituency number of total:?", "context": "CREATE TABLE table_name_41 (number_of_electorates__2009_ INTEGER, constituency_number VARCHAR)"}, {"answer": "SELECT inhabitants FROM table_name_42 WHERE election = 2009 AND municipality = \"cremona\"", "question": "Which inhabitants have 2009 as the election, with cremona as the municipality?", "context": "CREATE TABLE table_name_42 (inhabitants VARCHAR, election VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT inhabitants FROM table_name_26 WHERE party = \"lega lombarda\" AND election > 2010", "question": "Which inhabitants have lega lombarda as the party, with an election greater than 2010?", "context": "CREATE TABLE table_name_26 (inhabitants VARCHAR, party VARCHAR, election VARCHAR)"}, {"answer": "SELECT MIN(election) FROM table_name_4 WHERE municipality = \"cinisello balsamo\"", "question": "What is the lowest election that has cinisello balsamo as the municipality?", "context": "CREATE TABLE table_name_4 (election INTEGER, municipality VARCHAR)"}, {"answer": "SELECT AVG(election) FROM table_name_30 WHERE municipality = \"monza\"", "question": "What is the average election that has monza as the municipality?", "context": "CREATE TABLE table_name_30 (election INTEGER, municipality VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_12 WHERE points = 18 AND lost < 8", "question": "Whate place has 18 points with lost less than 8?", "context": "CREATE TABLE table_name_12 (place VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_21 WHERE place < 10 AND points < 23 AND team = \"chorrillo\" AND goals_conceded < 26", "question": "What is the average of lost for place less than 10, less than 23 points, and goals conceded less than 26 for the Chorrillo team?", "context": "CREATE TABLE table_name_21 (lost INTEGER, goals_conceded VARCHAR, team VARCHAR, place VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_51 WHERE points = 37 AND goals_conceded > 17", "question": "When goals conceded is greater than 17 with 37 points, what is the greatest played?", "context": "CREATE TABLE table_name_51 (played INTEGER, points VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_16 WHERE place < 2 AND played > 18", "question": "What is the total points for a place less than 2 with a played greater than 18?", "context": "CREATE TABLE table_name_16 (points INTEGER, place VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_33 WHERE goals_scored > 18 AND draw < 4 AND goals_conceded > 24", "question": "When goals scored is more than 18, draw is less than 4, and goals conceded is more than 24, what is the sum of played?", "context": "CREATE TABLE table_name_33 (played VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR, draw VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_56 WHERE nation = \"new zealand\" AND bronze < 1", "question": "What is the total rank for New Zealand, when less than 1 bronze medals were won?", "context": "CREATE TABLE table_name_56 (rank INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_88 WHERE gold = 2 AND total < 15 AND rank > 5", "question": "What is the sum of sliver medals when there were 2 gold medals, less than 15 total medals, and the rank is greater than 5?", "context": "CREATE TABLE table_name_88 (silver INTEGER, rank VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_8 WHERE nation = \"netherlands\" AND silver > 2", "question": "What is the total rank for the Netherlands when more than 2 silver medals were won?", "context": "CREATE TABLE table_name_8 (rank VARCHAR, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT total FROM table_name_15 WHERE gold > 1 AND silver > 2 AND rank < 2", "question": "What is the total medal count when there are more than 1 gold and more than 2 silver medals won and the rank is less than 1?", "context": "CREATE TABLE table_name_15 (total VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_64 WHERE rank < 5 AND bronze < 7", "question": "What is the average medal total when the rank is less than 5 and less than 7 bronze medals were won?", "context": "CREATE TABLE table_name_64 (total INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_54 WHERE result = \"win\" AND type = \"w pts 12\"", "question": "Who did Tony Oakey win against when he had type of w pts 12?", "context": "CREATE TABLE table_name_54 (opponent VARCHAR, result VARCHAR, type VARCHAR)"}, {"answer": "SELECT rd, _time FROM table_name_48 WHERE opponent = \"hastings rasani\"", "question": "What was Tony Oakey's Rd., Time when he fought against hastings rasani?", "context": "CREATE TABLE table_name_48 (rd VARCHAR, _time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT position FROM table_name_11 WHERE height = 2.11", "question": "What is the Position of the Player with a Height of 2.11?", "context": "CREATE TABLE table_name_11 (position VARCHAR, height VARCHAR)"}, {"answer": "SELECT current_club FROM table_name_87 WHERE height < 1.9500000000000002 AND position = \"pg/sg\"", "question": "What is the Current Club of the PG/SG player with a Height of less than 1.9500000000000002?", "context": "CREATE TABLE table_name_87 (current_club VARCHAR, height VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_78 WHERE current_club = \"toronto raptors\"", "question": "What is the Position of the Player from the Toronto Raptors?", "context": "CREATE TABLE table_name_78 (position VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT elected FROM table_name_44 WHERE assembled = \"23 january 1559\"", "question": "What Elected has Assembled of 23 january 1559?", "context": "CREATE TABLE table_name_44 (elected VARCHAR, assembled VARCHAR)"}, {"answer": "SELECT assembled FROM table_name_30 WHERE elected = \"1562/63\"", "question": "What Assembled has Elected of 1562/63?", "context": "CREATE TABLE table_name_30 (assembled VARCHAR, elected VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_75 WHERE total = \"olympic bronze medalist\"", "question": "Which shooter was the olympic bronze medalist?", "context": "CREATE TABLE table_name_75 (shooter VARCHAR, total VARCHAR)"}, {"answer": "SELECT event FROM table_name_31 WHERE total = \"29\"", "question": "What event did the shooter, who had 29 total points, compete in?", "context": "CREATE TABLE table_name_31 (event VARCHAR, total VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_16 WHERE score_points = \"13\" AND event = \"wc kerrville\"", "question": "Who got 13 score points at wc kerrville?", "context": "CREATE TABLE table_name_16 (shooter VARCHAR, score_points VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_81 WHERE score_points = \"10\"", "question": "What event did the shooter, who had 10 score points, compete in?", "context": "CREATE TABLE table_name_81 (event VARCHAR, score_points VARCHAR)"}, {"answer": "SELECT mark FROM table_name_84 WHERE athlete = \"tatyana lebedeva\"", "question": "Which Mark has an Athlete of tatyana lebedeva?", "context": "CREATE TABLE table_name_84 (mark VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT mark FROM table_name_17 WHERE athlete = \"heike drechsler\"", "question": "Which Mark has an Athlete of heike drechsler?", "context": "CREATE TABLE table_name_17 (mark VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE venue = \"bucharest\"", "question": "Which Date has a Venue of bucharest?", "context": "CREATE TABLE table_name_3 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_27 WHERE team = \"congleton town\" AND lost > 11", "question": "Which Goals For has a Team of congleton town, and a Lost larger than 11?", "context": "CREATE TABLE table_name_27 (goals_for INTEGER, team VARCHAR, lost VARCHAR)"}, {"answer": "SELECT goal_difference FROM table_name_21 WHERE drawn > 10 AND team = \"lancaster city\"", "question": "Which Goal Difference has Drawn larger than 10, and a Team of lancaster city?", "context": "CREATE TABLE table_name_21 (goal_difference VARCHAR, drawn VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE event = \"200m breaststroke\"", "question": "What date was the 200m breaststroke event?", "context": "CREATE TABLE table_name_53 (date VARCHAR, event VARCHAR)"}, {"answer": "SELECT time FROM table_name_26 WHERE event = \"50m freestyle\"", "question": "What time was the 50m freestyle event?", "context": "CREATE TABLE table_name_26 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT meet FROM table_name_56 WHERE event = \"400m individual medley\"", "question": "What meet had a 400m individual medley meet?", "context": "CREATE TABLE table_name_56 (meet VARCHAR, event VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_55 WHERE player = \"todd hamilton\" AND to_par < 15", "question": "How much Total has a Player of todd hamilton, and a To par smaller than 15?", "context": "CREATE TABLE table_name_55 (total VARCHAR, player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_31 WHERE total > 295", "question": "Which Year(s) won has a Total larger than 295?", "context": "CREATE TABLE table_name_31 (year_s__won VARCHAR, total INTEGER)"}, {"answer": "SELECT country FROM table_name_19 WHERE finish = \"t32\" AND year_s__won = \"1996\"", "question": "Which Country has a Finish of t32, and a Year(s) won of 1996?", "context": "CREATE TABLE table_name_19 (country VARCHAR, finish VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_83 WHERE player = \"p\u00e1draig harrington\"", "question": "How many totals does p\u00e1draig harrington have?", "context": "CREATE TABLE table_name_83 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_37 WHERE place = \"t8\" AND country = \"west germany\"", "question": "What is the highest to par with a place of t8 and West Germany as the country?", "context": "CREATE TABLE table_name_37 (to_par INTEGER, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE to_par = 7 AND country = \"england\"", "question": "Who was the player for England when the to par is 7?", "context": "CREATE TABLE table_name_43 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_57 WHERE to_par < 7 AND country = \"japan\"", "question": "Who was the player for Japan when the to par was smaller than 7?", "context": "CREATE TABLE table_name_57 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_2 WHERE score = 78 - 67 - 73 = 218", "question": "What is the average to par for a score of 78-67-73=218?", "context": "CREATE TABLE table_name_2 (to_par INTEGER, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE player = \"sam torrance\"", "question": "What did Sam Torrance score?", "context": "CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_71 WHERE total = 289", "question": "Which Year(s) won has a Total of 289?", "context": "CREATE TABLE table_name_71 (year_s__won VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_37 WHERE year_s__won = \"1964\"", "question": "Which country has a Year(s) won in 1964?", "context": "CREATE TABLE table_name_37 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_50 WHERE player = \"al geiberger\"", "question": "Which year al geiberger is in?", "context": "CREATE TABLE table_name_50 (year_s__won VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_89 WHERE year_s__won = \"1964\"", "question": "Which To par has a Year(s) won of 1964?", "context": "CREATE TABLE table_name_89 (to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_81 WHERE finish = \"t59\"", "question": "Which Total has a Finish of t59?", "context": "CREATE TABLE table_name_81 (total INTEGER, finish VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_42 WHERE country = \"united states\" AND player = \"dave stockton\"", "question": "which To par has a Country of united states, and a Player of dave stockton?", "context": "CREATE TABLE table_name_42 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE money___$__ = \"450\" AND score = 76 - 74 - 74 - 72 = 296", "question": "Which player has $450 and a score of 76-74-74-72=296?", "context": "CREATE TABLE table_name_67 (player VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT 1 AS st_member FROM table_name_41 WHERE assembled = \"5 april 1614\"", "question": "Who is the 1st member of the parliament assembled on 5 April 1614?", "context": "CREATE TABLE table_name_41 (assembled VARCHAR)"}, {"answer": "SELECT assembled FROM table_name_60 WHERE dissolved = \"9 february 1611\" AND elected = \"1606\"", "question": "What is the assembled date of the parliament dissolved on 9 February 1611 and elected in 1606?", "context": "CREATE TABLE table_name_60 (assembled VARCHAR, dissolved VARCHAR, elected VARCHAR)"}, {"answer": "SELECT 1 AS st_member FROM table_name_82 WHERE elected = \"1620/21\"", "question": "Who is the 1st member elected in 1620/21?", "context": "CREATE TABLE table_name_82 (elected VARCHAR)"}, {"answer": "SELECT assembled FROM table_name_47 WHERE elected = \"1620/21\"", "question": "What is the assembled date of the parliament elected in 1620/21?", "context": "CREATE TABLE table_name_47 (assembled VARCHAR, elected VARCHAR)"}, {"answer": "SELECT status FROM table_name_68 WHERE against > 22", "question": "What's the statue for an against above 22?", "context": "CREATE TABLE table_name_68 (status VARCHAR, against INTEGER)"}, {"answer": "SELECT status FROM table_name_86 WHERE against < 22 AND opposing_teams = \"australia\"", "question": "What's the status for an against below 22 with an opposing team of Australia?", "context": "CREATE TABLE table_name_86 (status VARCHAR, against VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_74 WHERE date = \"17/01/1976\"", "question": "What's the against on 17/01/1976?", "context": "CREATE TABLE table_name_74 (against INTEGER, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_64 WHERE money___$__ = 82 AND player = \"al watrous\"", "question": "Which ranking has money of $82 and Al Watrous as the player?", "context": "CREATE TABLE table_name_64 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_89 WHERE player = \"jock hutchison\"", "question": "What is the score for Jock Hutchison?", "context": "CREATE TABLE table_name_89 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(to_par) FROM table_name_9 WHERE player = \"bobby cruickshank\"", "question": "What is the lowest par for Bobby Cruickshank?", "context": "CREATE TABLE table_name_9 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_69 WHERE to_par = \"\u20131\"", "question": "What is the Country of the Player with a To par of \u20131?", "context": "CREATE TABLE table_name_69 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MAX(rd_1) FROM table_name_70 WHERE province = \"utrecht\" AND rd_4 > 0", "question": "Which is the highest Rd 1 has a Province of utrecht and a Rd 4 larger than 0?", "context": "CREATE TABLE table_name_70 (rd_1 INTEGER, province VARCHAR, rd_4 VARCHAR)"}, {"answer": "SELECT rd_3 FROM table_name_95 WHERE rd_2_1 = \"0+1\"", "question": "What Rd 3 has a Rd 2 1 of 0+1?", "context": "CREATE TABLE table_name_95 (rd_3 VARCHAR, rd_2_1 VARCHAR)"}, {"answer": "SELECT position FROM table_name_22 WHERE goals_against > 32 AND points > 30", "question": "Which Position has Goals against larger than 32, and points larger than 30?", "context": "CREATE TABLE table_name_22 (position VARCHAR, goals_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_45 WHERE goals_against = 35 AND losses < 13", "question": "How many Points have Goals against of 35, and less than 13 losses?", "context": "CREATE TABLE table_name_45 (points INTEGER, goals_against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_43 WHERE goals_for < 33 AND draws > 9", "question": "How many points have Goals for smaller than 33, and Draws larger than 9?", "context": "CREATE TABLE table_name_43 (points INTEGER, goals_for VARCHAR, draws VARCHAR)"}, {"answer": "SELECT AVG(goal_difference) FROM table_name_10 WHERE wins = 13 AND position = 3 AND played < 30", "question": "Which Goal Difference has 13 Wins, and a Position of 3, and Played smaller than 30?", "context": "CREATE TABLE table_name_10 (goal_difference INTEGER, played VARCHAR, wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE status = \"five nations\" AND opposing_teams = \"ireland\"", "question": "On which date was the opponent ireland and the status Five Nations?", "context": "CREATE TABLE table_name_67 (date VARCHAR, status VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT venue FROM table_name_59 WHERE status = \"five nations\" AND against > 12 AND date = \"15/02/1975\"", "question": "Which venue had a status of five nations, an against larger than 12 and took place on 15/02/1975?", "context": "CREATE TABLE table_name_59 (venue VARCHAR, date VARCHAR, status VARCHAR, against VARCHAR)"}, {"answer": "SELECT status FROM table_name_30 WHERE against > 6 AND date = \"01/02/1975\"", "question": "WHat status had an against larger than 6 and a date of 01/02/1975?", "context": "CREATE TABLE table_name_30 (status VARCHAR, against VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_53 WHERE opponent = \"san diego chargers\" AND attendance < 53 OFFSET 455", "question": "What is the highest week for the San Diego Chargers with an attendance that is less than 53,455?", "context": "CREATE TABLE table_name_53 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_30 WHERE date = \"december 3, 1972\" AND week > 12", "question": "What is the highest attendance for December 3, 1972 after week 12?", "context": "CREATE TABLE table_name_30 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE competition = \"ecqg5\" AND venue = \"hampden park , glasgow (h)\"", "question": "What is Score, when Competition is \"ECQG5\", and when Venue is \"Hampden Park , Glasgow (H)\"?", "context": "CREATE TABLE table_name_18 (score VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE competition = \"friendly\" AND date = \"30 april\"", "question": "What is Score, when Competition is \"Friendly\", and when Date is \"30 April\"?", "context": "CREATE TABLE table_name_46 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE date = \"7 september\"", "question": "What is Venue, when Date is \"7 September\"?", "context": "CREATE TABLE table_name_45 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_65 WHERE goals = 33", "question": "What was the nationality for the player with 33 goals?", "context": "CREATE TABLE table_name_65 (nationality VARCHAR, goals VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_13 WHERE ranking = \"3\"", "question": "What was the nationality of the player ranking 3?", "context": "CREATE TABLE table_name_13 (nationality VARCHAR, ranking VARCHAR)"}, {"answer": "SELECT COUNT(2010 AS _population) FROM table_name_23 WHERE district = \"klang\" AND area__km_2__ > 636", "question": "What is the total population of the district of Klang, with an area larger than 636?", "context": "CREATE TABLE table_name_23 (district VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT fate FROM table_name_15 WHERE tonnage = \"7,217\"", "question": "Which Fate has a Tonnage of 7,217?", "context": "CREATE TABLE table_name_15 (fate VARCHAR, tonnage VARCHAR)"}, {"answer": "SELECT fate FROM table_name_4 WHERE nationality = \"united kingdom\" AND tonnage = \"1,809\"", "question": "Which Fate has a Nationality of united kingdom, and a Tonnage of 1,809?", "context": "CREATE TABLE table_name_4 (fate VARCHAR, nationality VARCHAR, tonnage VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_83 WHERE date = \"6 july 1942\"", "question": "Name Nationality is on 6 july 1942?", "context": "CREATE TABLE table_name_83 (nationality VARCHAR, date VARCHAR)"}, {"answer": "SELECT tonnage FROM table_name_81 WHERE date = \"27 september 1941\" AND ship = \"hmsspringbank\"", "question": "Name Tonnage on 27 september 1941 and a Ship of hmsspringbank?", "context": "CREATE TABLE table_name_81 (tonnage VARCHAR, date VARCHAR, ship VARCHAR)"}, {"answer": "SELECT tonnage FROM table_name_66 WHERE date = \"25 july 1942\"", "question": "Which Tonnage is on 25 july 1942?", "context": "CREATE TABLE table_name_66 (tonnage VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_38 WHERE player = \"leo diegel\"", "question": "What place is player leo diegel?", "context": "CREATE TABLE table_name_38 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_62 WHERE player = \"horton smith\"", "question": "How much money does player horton smith have?", "context": "CREATE TABLE table_name_62 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_5 WHERE score = 74 - 71 - 76 - 76 = 297", "question": "How much money does the player with a score of 74-71-76-76=297 have?", "context": "CREATE TABLE table_name_5 (money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(to_par) FROM table_name_88 WHERE score = 76 - 77 - 74 - 75 = 302", "question": "What is the sum of the to par with a 76-77-74-75=302 score?", "context": "CREATE TABLE table_name_88 (to_par INTEGER, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_16 WHERE place = \"t8\" AND score = 74 - 74 - 76 - 77 = 301", "question": "Who is the player with a t8 place and a 74-74-76-77=301 score?", "context": "CREATE TABLE table_name_16 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_66 WHERE to_par = 14", "question": "What country has a 14 to par?", "context": "CREATE TABLE table_name_66 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE home_team = \"millwall\"", "question": "What is the score if Millwall is the Home Team?", "context": "CREATE TABLE table_name_18 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_42 WHERE home_team = \"newcastle united\"", "question": "What is the Away team with Newcastle United as the Home team?", "context": "CREATE TABLE table_name_42 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE date = \"27 jan 1990\" AND away_team = \"queens park rangers\"", "question": "What is the Score on 27 Jan 1990 with an Away Team of Queens Park Rangers?", "context": "CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE away_team = \"arsenal\"", "question": "If the Away Team is Arsenal what is the Score?", "context": "CREATE TABLE table_name_47 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE record = \"4-1\"", "question": "What is the score for 4-1?", "context": "CREATE TABLE table_name_9 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT population FROM table_name_75 WHERE status = \"rural community\"", "question": "What is the Population of the Rural Community", "context": "CREATE TABLE table_name_75 (population VARCHAR, status VARCHAR)"}, {"answer": "SELECT SUM(area_km_2) FROM table_name_56 WHERE census_ranking = \"1,773 of 5,008\"", "question": "What is the Area km 2 with a Census Ranking of 1,773 of 5,008?", "context": "CREATE TABLE table_name_56 (area_km_2 INTEGER, census_ranking VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_54 WHERE area_km_2 < 130.68 AND official_name = \"mcadam\"", "question": "With an Area km 2 of less than 130.68, what is McAdam's Population?", "context": "CREATE TABLE table_name_54 (population INTEGER, area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT home FROM table_name_73 WHERE record = \"2-4\"", "question": "Which home had a record of 2-4?", "context": "CREATE TABLE table_name_73 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_7 WHERE home = \"chicago black hawks\" AND date = \"may 6\"", "question": "Who was the visitor for Chicago Black Hawks on May 6?", "context": "CREATE TABLE table_name_7 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE visitor = \"chicago black hawks\" AND record = \"0-2\"", "question": "What day was the visitor Chicago Black Hawks and the record 0-2?", "context": "CREATE TABLE table_name_16 (date VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_84 WHERE method = \"submission (ankle lock)\" AND location = \"tokyo, japan\" AND record = \"13-5-2\"", "question": "What is the total number of Round with a Method of submission (ankle lock), a Location of tokyo, japan, and a Record of 13-5-2?", "context": "CREATE TABLE table_name_84 (round INTEGER, record VARCHAR, method VARCHAR, location VARCHAR)"}, {"answer": "SELECT nation FROM table_name_77 WHERE silver < 16 AND bronze > 6 AND gold = 2", "question": "Which Nation has Silver smaller than 16, Bronze larger than 6, and Gold of 2?", "context": "CREATE TABLE table_name_77 (nation VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_83 WHERE nation = \"south korea (kor)\" AND bronze < 65", "question": "Which Gold has a Nation of south korea (kor), and Bronze smaller than 65?", "context": "CREATE TABLE table_name_83 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_60 WHERE gold = 2", "question": "Which Total has Gold of 2?", "context": "CREATE TABLE table_name_60 (total INTEGER, gold VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_43 WHERE gold < 12 AND nation = \"hong kong (hkg)\"", "question": "Which Total has Gold smaller than 12, and a Nation of hong kong (hkg)?", "context": "CREATE TABLE table_name_43 (total INTEGER, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_18 WHERE total = 721", "question": "Which Gold has a Total of 721?", "context": "CREATE TABLE table_name_18 (gold INTEGER, total VARCHAR)"}, {"answer": "SELECT 2007 AS _08_season FROM table_name_75 WHERE stadium = \"stadio silvio piola\"", "question": "What is the 2007-08 season at Stadio Silvio Piola?", "context": "CREATE TABLE table_name_75 (stadium VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_77 WHERE place = \"t6\" AND score = 68 - 69 - 70 = 207", "question": "What is the To par of the T6 Place Player with a Score of 68-69-70=207?", "context": "CREATE TABLE table_name_77 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_60 WHERE place = \"t8\" AND score = 70 - 67 - 71 = 208", "question": "What is the Country of the T8 Place Player with a Score of 70-67-71=208?", "context": "CREATE TABLE table_name_60 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_8 WHERE player = \"peter jacobsen\"", "question": "What is Peter Jacobsen's Place?", "context": "CREATE TABLE table_name_8 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_25 WHERE score = 71 - 69 - 68 = 208", "question": "What is the To par of the Player with a Score of 71-69-68=208?", "context": "CREATE TABLE table_name_25 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_39 WHERE country = \"argentina\"", "question": "What is the To par of the Player from Argentina?", "context": "CREATE TABLE table_name_39 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_41 WHERE wins < 2", "question": "which Points has Wins smaller than 2?", "context": "CREATE TABLE table_name_41 (points INTEGER, wins INTEGER)"}, {"answer": "SELECT AVG(wins) FROM table_name_79 WHERE draws < 3 AND points = 26", "question": "Which Wins has a Draws smaller than 3, and Points of 26?", "context": "CREATE TABLE table_name_79 (wins INTEGER, draws VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(games_played) FROM table_name_83 WHERE points = 6 AND goals_scored > 12", "question": "Which Games played has a Points of 6, and Goals scored larger than 12?", "context": "CREATE TABLE table_name_83 (games_played INTEGER, points VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT SUM(goals_scored) FROM table_name_79 WHERE points > 26 AND wins > 11", "question": "Which Goals scored has Points larger than 26 and Wins larger than 11?", "context": "CREATE TABLE table_name_79 (goals_scored INTEGER, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(loses) FROM table_name_38 WHERE points < 6", "question": "Which Loses has Points smaller than 6?", "context": "CREATE TABLE table_name_38 (loses INTEGER, points INTEGER)"}, {"answer": "SELECT MAX(goals_conceded) FROM table_name_10 WHERE points = 6 AND draws > 0", "question": "Which Goals conceded has Points of 6 and Draws larger than 0?", "context": "CREATE TABLE table_name_10 (goals_conceded INTEGER, points VARCHAR, draws VARCHAR)"}, {"answer": "SELECT round FROM table_name_12 WHERE club = \"spartak moscow\"", "question": "What round did the spartak moscow club play?", "context": "CREATE TABLE table_name_12 (round VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(wickets) FROM table_name_8 WHERE average = 26.13", "question": "What is the total number of Wickets with a 26.13 average?", "context": "CREATE TABLE table_name_8 (wickets VARCHAR, average VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_71 WHERE player = \"delyone borden\" AND wickets > 15", "question": "What is the total rank for player Delyone Borden with more than 15 wickets?", "context": "CREATE TABLE table_name_71 (rank INTEGER, player VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT COUNT(wickets) FROM table_name_22 WHERE rank > 5", "question": "What are the total number of Wickets that ranger higher than 5?", "context": "CREATE TABLE table_name_22 (wickets VARCHAR, rank INTEGER)"}, {"answer": "SELECT career FROM table_name_71 WHERE rank > 1 AND average < 36.13 AND wickets = 15 AND player = \"george o'brien\"", "question": "What was the career of the rank higher than 1, with an average less than 36.13 and 15 wickets, and player George O'Brien?", "context": "CREATE TABLE table_name_71 (career VARCHAR, player VARCHAR, wickets VARCHAR, rank VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_22 WHERE wickets < 15", "question": "What is the highest rank for less than 15 Wickets?", "context": "CREATE TABLE table_name_22 (rank INTEGER, wickets INTEGER)"}, {"answer": "SELECT grid FROM table_name_67 WHERE time = \"+0.180\"", "question": "What is the grid with a +0.180 time?", "context": "CREATE TABLE table_name_67 (grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_33 WHERE bike = \"honda cbr1000rr\" AND time = \"+16.569\"", "question": "What is the sum of laps of the honda cbr1000rr bike, which has a time of +16.569?", "context": "CREATE TABLE table_name_33 (laps INTEGER, bike VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_49 WHERE laps < 25 AND bike = \"honda cbr1000rr\"", "question": "What is the time of the honda cbr1000rr bike, which has less than 25 laps?", "context": "CREATE TABLE table_name_49 (time VARCHAR, laps VARCHAR, bike VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE loan_expires = \"end of the season\" AND position = \"mf\"", "question": "What date has a loan expires date of end of the season, and a Position of mf?", "context": "CREATE TABLE table_name_87 (date VARCHAR, loan_expires VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE position = \"df\" AND loaned_to = \"stoke city\"", "question": "What player that has a Position of df, and Loaned to is Stoke City?", "context": "CREATE TABLE table_name_89 (player VARCHAR, position VARCHAR, loaned_to VARCHAR)"}, {"answer": "SELECT loan_expires FROM table_name_6 WHERE date = \"29 december 2003\"", "question": "What loan expires date has a Date of 29 december 2003?", "context": "CREATE TABLE table_name_6 (loan_expires VARCHAR, date VARCHAR)"}, {"answer": "SELECT loaned_to FROM table_name_37 WHERE loan_expires = \"end of the season\" AND player = \"francis jeffers\"", "question": "What shows for loaned to when the loan expires end of the season, Francis Jeffers is the player?", "context": "CREATE TABLE table_name_37 (loaned_to VARCHAR, loan_expires VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_29 WHERE loaned_to = \"leeds united\"", "question": "What player loaned to of Leeds United?", "context": "CREATE TABLE table_name_29 (player VARCHAR, loaned_to VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_79 WHERE team_1 = \"apoel\"", "question": "What was the 1st leg when team 1 was apoel?", "context": "CREATE TABLE table_name_79 (team_1 VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_9 WHERE team_1 = \"omonia\"", "question": "What was team 2 when team 1 was omonia?", "context": "CREATE TABLE table_name_9 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_12 WHERE nation = \"croatia\"", "question": "What was the lowest total of medals won by Croatia?", "context": "CREATE TABLE table_name_12 (total INTEGER, nation VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_41 WHERE apps < 1", "question": "Which Goals have Apps smaller than 1?", "context": "CREATE TABLE table_name_41 (goals INTEGER, apps INTEGER)"}, {"answer": "SELECT national_team FROM table_name_6 WHERE year = \"total\"", "question": "Which National team has a Year of total?", "context": "CREATE TABLE table_name_6 (national_team VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_78 WHERE national_team = \"england\" AND apps < 6 AND year = \"2012\"", "question": "How many Goals have a National team of england, and Apps smaller than 6, and a Year of 2012?", "context": "CREATE TABLE table_name_78 (goals INTEGER, year VARCHAR, national_team VARCHAR, apps VARCHAR)"}, {"answer": "SELECT national_team FROM table_name_95 WHERE club = \"arsenal\" AND apps < 4 AND year = \"2010\"", "question": "Which National team has a Club of arsenal, and Apps smaller than 4, and a Year of 2010?", "context": "CREATE TABLE table_name_95 (national_team VARCHAR, year VARCHAR, club VARCHAR, apps VARCHAR)"}, {"answer": "SELECT champion FROM table_name_16 WHERE llws = \"group stage\" AND city = \"russellville\"", "question": "Which champion has a Group Stage LLWS in Russellville?", "context": "CREATE TABLE table_name_16 (champion VARCHAR, llws VARCHAR, city VARCHAR)"}, {"answer": "SELECT record FROM table_name_85 WHERE year = 2008", "question": "What is the record of the champion in 2008?", "context": "CREATE TABLE table_name_85 (record VARCHAR, year VARCHAR)"}, {"answer": "SELECT nation FROM table_name_6 WHERE total > 5 AND rank = \"1\"", "question": "What nation was number 1 and had a total larger than 5?", "context": "CREATE TABLE table_name_6 (nation VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_9 WHERE rank = \"10\" AND gold < 0", "question": "How many bronzes had a rank of 10 and 0 gold?", "context": "CREATE TABLE table_name_9 (bronze INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_72 WHERE bronze > 16", "question": "Hold many gold had more than 16 bronzes?", "context": "CREATE TABLE table_name_72 (gold VARCHAR, bronze INTEGER)"}, {"answer": "SELECT MIN(gold) FROM table_name_14 WHERE silver > 16", "question": "What is the lowest amount of gold for more than 16 silver?", "context": "CREATE TABLE table_name_14 (gold INTEGER, silver INTEGER)"}, {"answer": "SELECT AVG(pop__2010_) FROM table_name_36 WHERE land___sqmi__ = 35.666 AND geo_id > 3807364500", "question": "What is the average population of the township having land of 35.666sqmi and GEO ID over 3807364500?", "context": "CREATE TABLE table_name_36 (pop__2010_ INTEGER, land___sqmi__ VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT AVG(pop__2010_) FROM table_name_30 WHERE longitude > -102.353035 AND latitude > 46.937841 AND water__sqmi_ = 0.034", "question": "What is the average 2010 population having longitude over -102.353035, latitude over 46.937841, and 0.034 sqmi of water?", "context": "CREATE TABLE table_name_30 (pop__2010_ INTEGER, water__sqmi_ VARCHAR, longitude VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT MAX(pop__2010_) FROM table_name_58 WHERE geo_id = 3802763220 AND longitude > -98.936777", "question": "What is the highest 2010 population having GEO ID of 3802763220 and longitude over -98.936777?", "context": "CREATE TABLE table_name_58 (pop__2010_ INTEGER, geo_id VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT MIN(water__sqmi_) FROM table_name_2 WHERE land___sqmi__ > 34.864 AND township = \"pierce\" AND geo_id > 3800362460", "question": "What is the smallest amount of water having landmass over 34.864 sqmi, in Pierce township, with a GEO ID over 3800362460?", "context": "CREATE TABLE table_name_2 (water__sqmi_ INTEGER, geo_id VARCHAR, land___sqmi__ VARCHAR, township VARCHAR)"}, {"answer": "SELECT tally FROM table_name_3 WHERE county = \"limerick\" AND rank > 1", "question": "Which Tally has a County of limerick, and a Rank larger than 1?", "context": "CREATE TABLE table_name_3 (tally VARCHAR, county VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_23 WHERE silver = 15 AND total < 54", "question": "Which Bronze has a Silver of 15, and a Total smaller than 54?", "context": "CREATE TABLE table_name_23 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_5 WHERE rank = \"9\" AND silver > 2", "question": "How many Bronzes have a Rank of 9, and a Silver larger than 2?", "context": "CREATE TABLE table_name_5 (bronze INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_21 WHERE silver = 40 AND gold < 39", "question": "How many totals have a Silver of 40, and a Gold smaller than 39?", "context": "CREATE TABLE table_name_21 (total VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_32 WHERE time = \"3:24\"", "question": "Who's the opponent with a time of 3:24?", "context": "CREATE TABLE table_name_32 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_64 WHERE time = \"4:00\" AND opponent = \"krzysztof soszynski\"", "question": "What's the record that had an opponent of Krzysztof Soszynski and a time of 4:00?", "context": "CREATE TABLE table_name_64 (record VARCHAR, time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_98 WHERE event = \"ifl: championship final\"", "question": "What's the time of IFL: Championship Final?", "context": "CREATE TABLE table_name_98 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT fa_cup_apps FROM table_name_28 WHERE league_apps = \"21\"", "question": "Which FA Cup Apps have League Apps of 21?", "context": "CREATE TABLE table_name_28 (fa_cup_apps VARCHAR, league_apps VARCHAR)"}, {"answer": "SELECT name FROM table_name_75 WHERE league_cup_goals = 0 AND league_apps = \"1\"", "question": "Which Name has a League Cup Goals of 0, and League Apps of 1?", "context": "CREATE TABLE table_name_75 (name VARCHAR, league_cup_goals VARCHAR, league_apps VARCHAR)"}, {"answer": "SELECT AVG(total_goals) FROM table_name_82 WHERE league_cup_goals > 0 AND fa_cup_goals > 0", "question": "Which Total Goals have a League Cup Goals larger than 0, and FA Cup Goals larger than 0?", "context": "CREATE TABLE table_name_82 (total_goals INTEGER, league_cup_goals VARCHAR, fa_cup_goals VARCHAR)"}, {"answer": "SELECT MAX(total_goals) FROM table_name_10 WHERE total_apps = \"42 (3)\" AND league_goals < 1", "question": "Which Total Goals have Total Apps of 42 (3), and League Goals smaller than 1?", "context": "CREATE TABLE table_name_10 (total_goals INTEGER, total_apps VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_87 WHERE notes = \"sa/b\" AND time = \"6:17.62\"", "question": "What is the lowest rank for the team that raced a time of 6:17.62 and a notes of sa/b?", "context": "CREATE TABLE table_name_87 (rank INTEGER, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT country FROM table_name_97 WHERE notes = \"r\" AND rank = 3", "question": "What country has a rank of 3 and notes of r?", "context": "CREATE TABLE table_name_97 (country VARCHAR, notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT conference_joined FROM table_name_40 WHERE mascot = \"indians\"", "question": "What conference includes the Indians?", "context": "CREATE TABLE table_name_40 (conference_joined VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT location FROM table_name_81 WHERE school = \"lakewood park christian\"", "question": "What is the location for Lakewood Park Christian?", "context": "CREATE TABLE table_name_81 (location VARCHAR, school VARCHAR)"}, {"answer": "SELECT county FROM table_name_81 WHERE mascot = \"bruins\"", "question": "Which county has the mascot of Bruins?", "context": "CREATE TABLE table_name_81 (county VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT school FROM table_name_15 WHERE year_joined = \"1971\" AND year_left = \"1975\"", "question": "Which school joined in 1971 and left in 1975?", "context": "CREATE TABLE table_name_15 (school VARCHAR, year_joined VARCHAR, year_left VARCHAR)"}, {"answer": "SELECT county FROM table_name_38 WHERE ihsaa_class = \"a\" AND mascot = \"cavaliers\"", "question": "Which IHSAA class A school are the Cavaliers from?", "context": "CREATE TABLE table_name_38 (county VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT county FROM table_name_87 WHERE mascot = \"trojans\"", "question": "Which county do the Trojans come from?", "context": "CREATE TABLE table_name_87 (county VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_78 WHERE react = 0.17300000000000001 AND lane < 5", "question": "What is the average ranking for a react of 0.17300000000000001 and less than 5 lanes?", "context": "CREATE TABLE table_name_78 (rank INTEGER, react VARCHAR, lane VARCHAR)"}, {"answer": "SELECT 4 AS th_day FROM table_name_52 WHERE year < 2012 AND finish_position = \"33rd\"", "question": "What was the 4th day in the year before 2012 that the finish is 33rd?", "context": "CREATE TABLE table_name_52 (year VARCHAR, finish_position VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_23 WHERE total = 5 AND bronze < 2", "question": "What is the sum of gold medals won by teams that won 5 total medals and fewer than 2 bronze medals?", "context": "CREATE TABLE table_name_23 (gold INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_51 WHERE silver < 3 AND rank = \"10\" AND total > 1", "question": "What is the sum of gold medals won by teams that won fewer than 3 silver medals, more than 1 total medal, and rank 10?", "context": "CREATE TABLE table_name_51 (gold INTEGER, total VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_62 WHERE total < 14 AND silver = 1 AND rank = \"5\"", "question": "What nation won fewer than 14 total medals, 1 silver medal, and rank 5?", "context": "CREATE TABLE table_name_62 (nation VARCHAR, rank VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT ihsaa_football_class FROM table_name_14 WHERE ihsaa_class = \"aa\" AND enrollment = 475", "question": "Which IHSAA Football Class has an IHSAA Class of aa, and an Enrollment of 475?", "context": "CREATE TABLE table_name_14 (ihsaa_football_class VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT school FROM table_name_37 WHERE location = \"peru\"", "question": "Which School has a Location of peru?", "context": "CREATE TABLE table_name_37 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_53 WHERE ihsaa_class = \"aaa\" AND location = \"russiaville\"", "question": "Which Mascot has an IHSAA Class of aaa, and a Location of russiaville?", "context": "CREATE TABLE table_name_53 (mascot VARCHAR, ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_51 WHERE school = \"taylor\"", "question": "Which IHSAA Class has a School of taylor?", "context": "CREATE TABLE table_name_51 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE opponent = \"leeds united\"", "question": "what is the date when the opponent is leeds united?", "context": "CREATE TABLE table_name_80 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE scorers = \"parkinson\"", "question": "what is the date when scorers is parkinson?", "context": "CREATE TABLE table_name_23 (date VARCHAR, scorers VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_43 WHERE date = \"31 jul\"", "question": "who is the opponent on 31 jul?", "context": "CREATE TABLE table_name_43 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_39 WHERE opponent = \"blackburn rovers\"", "question": "what is the result when the opponent is blackburn rovers?", "context": "CREATE TABLE table_name_39 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_42 WHERE week = 6", "question": "What was the result on week 6?", "context": "CREATE TABLE table_name_42 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_41 WHERE opponent = \"tampa bay buccaneers\" AND attendance < 60 OFFSET 320", "question": "What is the sum on week against the Tampa Bay Buccaneers with less than 60,320 in attendance?", "context": "CREATE TABLE table_name_41 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_38 WHERE result = \"w 33-14\"", "question": "What is the highest week with a w 33-14 result?", "context": "CREATE TABLE table_name_38 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT netscape FROM table_name_45 WHERE firefox = \"21.67%\"", "question": "What percentage of users were using Netscape during the period in which 21.67% were using Firefox?", "context": "CREATE TABLE table_name_45 (netscape VARCHAR, firefox VARCHAR)"}, {"answer": "SELECT safari FROM table_name_3 WHERE opera = \"2.33%\"", "question": "What percentage of users were using Safari during the period in which 2.33% were using Opera?", "context": "CREATE TABLE table_name_3 (safari VARCHAR, opera VARCHAR)"}, {"answer": "SELECT netscape FROM table_name_54 WHERE internet_explorer = \"63.67%\"", "question": "What percentage of users were using Netscape during the period in which 63.67% were using Internet Explorer?", "context": "CREATE TABLE table_name_54 (netscape VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT firefox FROM table_name_8 WHERE netscape = \"*0.77%\"", "question": "What percentage of users were using Firefox during the period in which *0.77% were using Netscape?", "context": "CREATE TABLE table_name_8 (firefox VARCHAR, netscape VARCHAR)"}, {"answer": "SELECT other_mozilla FROM table_name_97 WHERE opera = \"2.29%\"", "question": "What percentage of users were using other Mozilla browsers during the period in which 2.29% were using Opera?", "context": "CREATE TABLE table_name_97 (other_mozilla VARCHAR, opera VARCHAR)"}, {"answer": "SELECT opera FROM table_name_59 WHERE internet_explorer = \"63.67%\"", "question": "What percentage of users were using Opera during the period in which 63.67% were using Internet Explorer?", "context": "CREATE TABLE table_name_59 (opera VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT country FROM table_name_57 WHERE entities = \"emsa\"", "question": "Which Country has Entities of emsa?", "context": "CREATE TABLE table_name_57 (country VARCHAR, entities VARCHAR)"}, {"answer": "SELECT AVG(power__mw_) FROM table_name_26 WHERE voltage__kv_ = 500 AND country = \"argentina\"", "question": "Which Power (MW) has a Voltage (kV) of 500, and a Country of argentina?", "context": "CREATE TABLE table_name_26 (power__mw_ INTEGER, voltage__kv_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(voltage__kv_) FROM table_name_44 WHERE country = \"argentina\" AND power__mw_ > 30 AND supply_point = \"yacyret\u00e1\"", "question": "How much Voltage (kV) has a Country of argentina, and a Power (MW) larger than 30, and a Supply point of yacyret\u00e1?", "context": "CREATE TABLE table_name_44 (voltage__kv_ VARCHAR, supply_point VARCHAR, country VARCHAR, power__mw_ VARCHAR)"}, {"answer": "SELECT MIN(number) FROM table_name_32 WHERE western_name = \"aquarius\"", "question": "What is the lowest number for the english word Aquarius?", "context": "CREATE TABLE table_name_32 (number INTEGER, western_name VARCHAR)"}, {"answer": "SELECT sanskrit FROM table_name_98 WHERE greek = \"\u03bb\u03ad\u03c9\u03bd\"", "question": "What is the Sanskrit for the Greek word \u03bb\u03ad\u03c9\u03bd?", "context": "CREATE TABLE table_name_98 (sanskrit VARCHAR, greek VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE home_team = \"wrexham\"", "question": "What date has wrexham as the home team?", "context": "CREATE TABLE table_name_69 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_38 WHERE tie_no = \"7\"", "question": "What away team has 7 as the tie no.?", "context": "CREATE TABLE table_name_38 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_44 WHERE home_team = \"wrexham\"", "question": "What away team has wrexham as the home team?", "context": "CREATE TABLE table_name_44 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_82 WHERE tie_no = \"6\"", "question": "What home team has 6 as the tie no.?", "context": "CREATE TABLE table_name_82 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT kickoff_time FROM table_name_82 WHERE date = \"december 14, 2003\"", "question": "What was the kickoff time for the December 14, 2003 game?", "context": "CREATE TABLE table_name_82 (kickoff_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank FROM table_name_33 WHERE nationality = \"zimbabwe\"", "question": "What is Zimbabwe's rank?", "context": "CREATE TABLE table_name_33 (rank VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_85 WHERE name = \"meagen nay\" AND lane > 5", "question": "What is Meagen Nay's rank with a lane greater than 5?", "context": "CREATE TABLE table_name_85 (rank INTEGER, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT AVG(debut_year) FROM table_name_6 WHERE games < 54 AND years_at_club = \"1989\" AND goals < 8", "question": "What is the debut year for the player with fewer than 54 games, fewer than 8 goals and 1989 at club?", "context": "CREATE TABLE table_name_6 (debut_year INTEGER, goals VARCHAR, games VARCHAR, years_at_club VARCHAR)"}, {"answer": "SELECT years_at_club FROM table_name_61 WHERE goals < 62 AND debut_year = 1981 AND games = 28", "question": "What are the years for the player with fewer than 62 goals, debut year of 1981 and 28 games?", "context": "CREATE TABLE table_name_61 (years_at_club VARCHAR, games VARCHAR, goals VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT MIN(debut_year) FROM table_name_10 WHERE player = \"mark eaves\"", "question": "What is the debut year of Mark Eaves?", "context": "CREATE TABLE table_name_10 (debut_year INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_5 WHERE total = 9 AND opposition = \"offaly\"", "question": "Which Player has a Total of 9, and an Opposition of offaly?", "context": "CREATE TABLE table_name_5 (player VARCHAR, total VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT county FROM table_name_64 WHERE opposition = \"offaly\"", "question": "Which County has an Opposition of offaly?", "context": "CREATE TABLE table_name_64 (county VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT player FROM table_name_21 WHERE total < 11 AND tally = \"0-9\"", "question": "Which Player has a Total smaller than 11, and a Tally of 0-9?", "context": "CREATE TABLE table_name_21 (player VARCHAR, total VARCHAR, tally VARCHAR)"}, {"answer": "SELECT country FROM table_name_90 WHERE player = \"todd hamilton\"", "question": "What country has todd hamilton as the player?", "context": "CREATE TABLE table_name_90 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_43 WHERE player = \"david toms\"", "question": "What country has david toms as the player?", "context": "CREATE TABLE table_name_43 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE course = \"rest day\"", "question": "Which date was a rest day?", "context": "CREATE TABLE table_name_81 (date VARCHAR, course VARCHAR)"}, {"answer": "SELECT location FROM table_name_13 WHERE year = 2012", "question": "What is the location for 2012?", "context": "CREATE TABLE table_name_13 (location VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(rounds) FROM table_name_1 WHERE champion = \"new zealand (130 points)\"", "question": "What are the rounds for champion New Zealand (130 points)?", "context": "CREATE TABLE table_name_1 (rounds INTEGER, champion VARCHAR)"}, {"answer": "SELECT season FROM table_name_87 WHERE player_of_the_year = \"tim mikkelson\"", "question": "For which season is Tim Mikkelson player of the year?", "context": "CREATE TABLE table_name_87 (season VARCHAR, player_of_the_year VARCHAR)"}, {"answer": "SELECT collaboration FROM table_name_7 WHERE name = \"sbi-087\" AND indication = \"rheumatoid arthritis\"", "question": "What company collaborated in SBI-087 for rheumatoid arthritis?", "context": "CREATE TABLE table_name_7 (collaboration VARCHAR, name VARCHAR, indication VARCHAR)"}, {"answer": "SELECT collaboration FROM table_name_63 WHERE indication = \"non-hodgkin lymphoma\"", "question": "What company collaborated in non-hodgkin lymphoma?", "context": "CREATE TABLE table_name_63 (collaboration VARCHAR, indication VARCHAR)"}, {"answer": "SELECT collaboration FROM table_name_99 WHERE status = \"pre-clinical\" AND indication = \"autoimmune disease and inflammation\"", "question": "What company collaborated in pre-clinical autoimmune disease and inflammation?", "context": "CREATE TABLE table_name_99 (collaboration VARCHAR, status VARCHAR, indication VARCHAR)"}, {"answer": "SELECT name FROM table_name_41 WHERE indication = \"autoimmune disease and inflammation\"", "question": "Which study included autoimmune disease and inflammation?", "context": "CREATE TABLE table_name_41 (name VARCHAR, indication VARCHAR)"}, {"answer": "SELECT indication FROM table_name_50 WHERE status = \"phase 2b\"", "question": "What did the phase 2b status target?", "context": "CREATE TABLE table_name_50 (indication VARCHAR, status VARCHAR)"}, {"answer": "SELECT collaboration FROM table_name_5 WHERE indication = \"non-hodgkin lymphoma\"", "question": "What company collaborated with non-hodgkin lymphoma?", "context": "CREATE TABLE table_name_5 (collaboration VARCHAR, indication VARCHAR)"}, {"answer": "SELECT AVG(water__sqmi_) FROM table_name_8 WHERE pop__2010_ > 47 AND township = \"brenna\" AND longitude < -97.171507", "question": "what is the average water sqmi with a population (2010) more than 47 in the Brenna Township with Longitude less than -97.171507", "context": "CREATE TABLE table_name_8 (water__sqmi_ INTEGER, longitude VARCHAR, pop__2010_ VARCHAR, township VARCHAR)"}, {"answer": "SELECT COUNT(latitude) FROM table_name_62 WHERE township = \"berlin\" AND geo_id < 3801706260", "question": "what is the latitude for the berlin township with a geo id less than 3801706260", "context": "CREATE TABLE table_name_62 (latitude VARCHAR, township VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT MAX(ansi_code) FROM table_name_98 WHERE latitude > 47.623288 AND geo_id > 3805508060 AND land___sqmi__ > 35.66 AND longitude < -102.054248", "question": "what is the highest ANSI code with a latitude more than 47.623288 and a geo id more than 3805508060 with land (sqmi) more than 35.66 and a longitude less than -102.054248", "context": "CREATE TABLE table_name_98 (ansi_code INTEGER, longitude VARCHAR, land___sqmi__ VARCHAR, latitude VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT MIN(latitude) FROM table_name_97 WHERE land___sqmi__ < 32.696 AND water__sqmi_ < 0", "question": "what is the lowest latitude for the land sqmi less than 32.696 and a water sqmi less than 0", "context": "CREATE TABLE table_name_97 (latitude INTEGER, land___sqmi__ VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT SUM(quantity) FROM table_name_1 WHERE class_from_1928 = \"ci-30\"", "question": "What's the sum of Quantity for the Class of 1928 of CI-30?", "context": "CREATE TABLE table_name_1 (quantity INTEGER, class_from_1928 VARCHAR)"}, {"answer": "SELECT class_to_1928 FROM table_name_16 WHERE quantity < 440 AND seats = \"29/29\"", "question": "What Class to 1928 has the Quantity smaller than 440 and Seats of 29/29?", "context": "CREATE TABLE table_name_16 (class_to_1928 VARCHAR, quantity VARCHAR, seats VARCHAR)"}, {"answer": "SELECT best_fit__all_data_ FROM table_name_18 WHERE parameter = \"fluctuation amplitude at 8h \u22121 mpc\"", "question": "What is the best fit (all data) when the parameter shows fluctuation amplitude at 8h \u22121 mpc?", "context": "CREATE TABLE table_name_18 (best_fit__all_data_ VARCHAR, parameter VARCHAR)"}, {"answer": "SELECT best_fit__wmap, _extra_parameter_ FROM table_name_92 WHERE best_fit__all_data_ = \".0224 \u00b1 .0009\"", "question": "What is the best fit (WMAP, extra parameter)when the best fit (all data) is .0224 \u00b1 .0009?", "context": "CREATE TABLE table_name_92 (best_fit__wmap VARCHAR, _extra_parameter_ VARCHAR, best_fit__all_data_ VARCHAR)"}, {"answer": "SELECT parameter FROM table_name_94 WHERE best_fit__wmap_only_ = \".9 \u00b1 .1\" AND symbol = \"a\"", "question": "What is the parameter when the best fit (WMAP only) is .9 \u00b1 .1, and symbol is a?", "context": "CREATE TABLE table_name_94 (parameter VARCHAR, best_fit__wmap_only_ VARCHAR, symbol VARCHAR)"}, {"answer": "SELECT MAX(heat) FROM table_name_23 WHERE lane > 3 AND time = \"2:09.12\"", "question": "What is the highest heat for more than 3 lanes and a time of 2:09.12?", "context": "CREATE TABLE table_name_23 (heat INTEGER, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_21 WHERE nationality = \"russia\" AND heat > 3", "question": "What is Russia's time with a heat higher than 3?", "context": "CREATE TABLE table_name_21 (time VARCHAR, nationality VARCHAR, heat VARCHAR)"}, {"answer": "SELECT time FROM table_name_45 WHERE heat > 2 AND nationality = \"hungary\" AND lane = 2", "question": "What is Hungary's time with a heat higher than 2 and two lanes?", "context": "CREATE TABLE table_name_45 (time VARCHAR, lane VARCHAR, heat VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT constituency_number FROM table_name_86 WHERE reserved_for___sc___st__none_ = \"none\" AND name = \"badnawar\"", "question": "When the name is badnawar, and the reserved for (sc / st /none) of none what is the constituency number?", "context": "CREATE TABLE table_name_86 (constituency_number VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT number_of_electorates__2009_ FROM table_name_61 WHERE name = \"badnawar\"", "question": "What is the number of electorates when the name is badnawar?", "context": "CREATE TABLE table_name_61 (number_of_electorates__2009_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(number_of_electorates__2009_) FROM table_name_58 WHERE district = \"indore\"", "question": "What is the average number of electorates (2009) when the district is indore?", "context": "CREATE TABLE table_name_58 (number_of_electorates__2009_ INTEGER, district VARCHAR)"}, {"answer": "SELECT name FROM table_name_77 WHERE reserved_for___sc___st__none_ = \"st\" AND constituency_number = \"196\"", "question": "What is the name when the reserved is (sc / st /none) of st, with a constituency number 196?", "context": "CREATE TABLE table_name_77 (name VARCHAR, reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_79 WHERE rank = 27", "question": "What is the nationality for rank 27?", "context": "CREATE TABLE table_name_79 (nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(rating) FROM table_name_78 WHERE player = \"mark miller\" AND comp > 1", "question": "What is the sum rating with more than 1 comp for mark miller?", "context": "CREATE TABLE table_name_78 (rating VARCHAR, player VARCHAR, comp VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_70 WHERE rating < 3.8 AND yards < 9", "question": "What is the games average with less than 3.8 in rating and less than 9 yards?", "context": "CREATE TABLE table_name_70 (games INTEGER, rating VARCHAR, yards VARCHAR)"}, {"answer": "SELECT AVG(rating) FROM table_name_51 WHERE player = \"john kidd\" AND yards > 0", "question": "What is the average rating for john kidd with more than 0 yards?", "context": "CREATE TABLE table_name_51 (rating INTEGER, player VARCHAR, yards VARCHAR)"}, {"answer": "SELECT share_of_seats FROM table_name_79 WHERE european_election__uk_ = 2009", "question": "Which Share of seats has a European election (UK) of 2009?", "context": "CREATE TABLE table_name_79 (share_of_seats VARCHAR, european_election__uk_ VARCHAR)"}, {"answer": "SELECT european_election__uk_ FROM table_name_41 WHERE share_of_votes = \"19%\"", "question": "Which European election (UK) has a Share of votes of 19%?", "context": "CREATE TABLE table_name_41 (european_election__uk_ VARCHAR, share_of_votes VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_58 WHERE rank = \"3\" AND total < 2", "question": "What is the fewest bronzes for ranks of 3 with totals under 2?", "context": "CREATE TABLE table_name_58 (bronze INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT rank FROM table_name_42 WHERE nation = \"austria\"", "question": "Which rank is Austria?", "context": "CREATE TABLE table_name_42 (rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_19 WHERE gold = 1 AND silver < 1", "question": "What is the sum of bronzes for countries with 1 gold and under 1 silver?", "context": "CREATE TABLE table_name_19 (bronze INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_4 WHERE bronze > 1 AND silver = 1", "question": "What is the total number of totals for nations with 1 silver and more than 1 bronze?", "context": "CREATE TABLE table_name_4 (total VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_12 WHERE games = \"1999 fort-de-france\" AND event = \"triple jump\"", "question": "What is the Nationality of the athlete in 1999 Fort-de-France in the Triple Jump?", "context": "CREATE TABLE table_name_12 (nationality VARCHAR, games VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_19 WHERE event = \"shot put\"", "question": "What is the Date of the athlete in the shot put Event?", "context": "CREATE TABLE table_name_19 (date VARCHAR, event VARCHAR)"}, {"answer": "SELECT district FROM table_name_43 WHERE position = \"member\" AND first_election = \"1985\"", "question": "What District has a Member with a First Election date of 1985?", "context": "CREATE TABLE table_name_43 (district VARCHAR, position VARCHAR, first_election VARCHAR)"}, {"answer": "SELECT party FROM table_name_95 WHERE position = \"member\" AND name = \"alicia hughes\"", "question": "What Party is Member Alicia Hughes from?", "context": "CREATE TABLE table_name_95 (party VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_42 WHERE first_election = \"2003\" AND name = \"william d. euille\"", "question": "What Position does First Elected in 2003 William D. Euille hold ?", "context": "CREATE TABLE table_name_42 (position VARCHAR, first_election VARCHAR, name VARCHAR)"}, {"answer": "SELECT first_election FROM table_name_23 WHERE name = \"kerry j. donley\"", "question": "What is Kerry J. Donley's First Election date?", "context": "CREATE TABLE table_name_23 (first_election VARCHAR, name VARCHAR)"}, {"answer": "SELECT party FROM table_name_48 WHERE name = \"kerry j. donley\"", "question": "What is Kerry J. Donley's Party?", "context": "CREATE TABLE table_name_48 (party VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_64 WHERE first_election = \"1988 as vice mayor 2009\"", "question": "What is the Position of the person with a First Election of 1988 as Vice Mayor 2009?", "context": "CREATE TABLE table_name_64 (position VARCHAR, first_election VARCHAR)"}, {"answer": "SELECT final_points FROM table_name_60 WHERE total = \"0\" AND draw = 22", "question": "What are the final points a 0 total and 22 draws?", "context": "CREATE TABLE table_name_60 (final_points VARCHAR, total VARCHAR, draw VARCHAR)"}, {"answer": "SELECT televote_points FROM table_name_1 WHERE televotes = \"6,131\"", "question": "Who received 6,131 televotes?", "context": "CREATE TABLE table_name_1 (televote_points VARCHAR, televotes VARCHAR)"}, {"answer": "SELECT televotes FROM table_name_74 WHERE draw = 1", "question": "What are televotes for 1 draw?", "context": "CREATE TABLE table_name_74 (televotes VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_name_89 WHERE artist = \"ketil stokkan\" AND points < 44", "question": "What is the draw for the artist Ketil Stokkan which has less than 44 points?", "context": "CREATE TABLE table_name_89 (draw INTEGER, artist VARCHAR, points VARCHAR)"}, {"answer": "SELECT artist FROM table_name_32 WHERE language = \"croatian\"", "question": "Which artist speaks croatian?", "context": "CREATE TABLE table_name_32 (artist VARCHAR, language VARCHAR)"}, {"answer": "SELECT score FROM table_name_90 WHERE high_points = \"douglas (15)\"", "question": "Which Score has High points of douglas (15)?", "context": "CREATE TABLE table_name_90 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_21 WHERE game > 21 AND record = \"18-6\"", "question": "Which High assists have a Game larger than 21, and a Record of 18-6?", "context": "CREATE TABLE table_name_21 (high_assists VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_8 WHERE location = \"madison square garden\"", "question": "Which Record has a Location of madison square garden?", "context": "CREATE TABLE table_name_8 (record VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(2012) FROM table_name_33 WHERE 2009 < 3.38", "question": "Which 2012 has a 2009 smaller than 3.38?", "context": "CREATE TABLE table_name_33 (Id VARCHAR)"}, {"answer": "SELECT MAX(2009) FROM table_name_61 WHERE 2012 > 9 OFFSET 265", "question": "Which 2009 has a 2012 larger than 9,265?", "context": "CREATE TABLE table_name_61 (Id VARCHAR)"}, {"answer": "SELECT champion FROM table_name_25 WHERE year < 2012 AND runner_up__average_in_final_ = \"steve beaton (97.16)\"", "question": "who is the champion when the year is earlier than 2012, the runner-up (average in final) is steve beaton (97.16)?", "context": "CREATE TABLE table_name_25 (champion VARCHAR, year VARCHAR, runner_up__average_in_final_ VARCHAR)"}, {"answer": "SELECT venue FROM table_name_86 WHERE runner_up = \"\u00a320,000\" AND champion__average_in_final_ = \"phil taylor (109.35)\"", "question": "what is the venue when the runner-up is \u00a320,000, the champion (average in final) is phil taylor (109.35)?", "context": "CREATE TABLE table_name_86 (venue VARCHAR, runner_up VARCHAR, champion__average_in_final_ VARCHAR)"}, {"answer": "SELECT legs FROM table_name_8 WHERE year < 2009", "question": "what is the legs when the year is earlier than 2009?", "context": "CREATE TABLE table_name_8 (legs VARCHAR, year INTEGER)"}, {"answer": "SELECT venue FROM table_name_6 WHERE runner_up__average_in_final_ = \"wayne jones (94.64)\"", "question": "what is the venue when the runner-up (average in final) is wayne jones (94.64)?", "context": "CREATE TABLE table_name_6 (venue VARCHAR, runner_up__average_in_final_ VARCHAR)"}, {"answer": "SELECT legs FROM table_name_81 WHERE venue = \"rwe-sporthalle, m\u00fclheim\" AND runner_up__average_in_final_ = \"simon whitlock (99.59)\"", "question": "What is the legs when the venue is rwe-sporthalle, m\u00fclheim and the runner-up (average in final) is simon whitlock (99.59)?", "context": "CREATE TABLE table_name_81 (legs VARCHAR, venue VARCHAR, runner_up__average_in_final_ VARCHAR)"}, {"answer": "SELECT 110 AS _m_h FROM table_name_85 WHERE overall_points = \"7835 (sb)\"", "question": "What is the 110m H number when the overall points are 7835 (sb)?", "context": "CREATE TABLE table_name_85 (overall_points VARCHAR)"}, {"answer": "SELECT result FROM table_name_86 WHERE venue = \"kinnarps arena\" AND date = \"thursday, february 19\"", "question": "Which Result has a Venue of kinnarps arena, and a Date of thursday, february 19?", "context": "CREATE TABLE table_name_86 (result VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_54 WHERE home = \"djurg\u00e5rdens if\" AND round = 53", "question": "Which Attendance has a Home of djurg\u00e5rdens if, and a Round of 53?", "context": "CREATE TABLE table_name_54 (attendance INTEGER, home VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_67 WHERE round = 52 AND home = \"s\u00f6dert\u00e4lje sk\"", "question": "Which Attendance has a Round of 52, and a Home of s\u00f6dert\u00e4lje sk?", "context": "CREATE TABLE table_name_67 (attendance INTEGER, round VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_92 WHERE attendance = \"70,604\"", "question": "What is the Record of the game with an Attendance of 70,604?", "context": "CREATE TABLE table_name_92 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_26 WHERE record = \"1\u20133\u20130\"", "question": "Who is the Opponent in the game with a Record of 1\u20133\u20130?", "context": "CREATE TABLE table_name_26 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_41 WHERE attendance = \"70,479\"", "question": "What is the Record of the game with an Attendance of 70,479?", "context": "CREATE TABLE table_name_41 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_92 WHERE date = \"aug 21, 1977\"", "question": "What was the winning score on Aug 21, 1977?", "context": "CREATE TABLE table_name_92 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_55 WHERE tournament = \"pocono northeast classic\"", "question": "What's the margin of victory during the Pocono Northeast Classic?", "context": "CREATE TABLE table_name_55 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_49 WHERE date = \"feb 12, 1978\"", "question": "What's the winning score on Feb 12, 1978?", "context": "CREATE TABLE table_name_49 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_9 WHERE year > 2001 AND length = \"52 x 20 mins\"", "question": "Which Name has a Year larger than 2001, and a Length of 52 x 20 mins?", "context": "CREATE TABLE table_name_9 (name VARCHAR, year VARCHAR, length VARCHAR)"}, {"answer": "SELECT type FROM table_name_14 WHERE year > 2004", "question": "What was the type after 2004?", "context": "CREATE TABLE table_name_14 (type VARCHAR, year INTEGER)"}, {"answer": "SELECT relation FROM table_name_12 WHERE year > 2000 AND length = \"8 x 20 mins\"", "question": "Which Relation has a Year larger than 2000, and a Length of 8 x 20 mins?", "context": "CREATE TABLE table_name_12 (relation VARCHAR, year VARCHAR, length VARCHAR)"}, {"answer": "SELECT relation FROM table_name_71 WHERE type = \"tv\" AND name = \"ohanami\"", "question": "Which Relation has a Type of tv, and a Name of ohanami?", "context": "CREATE TABLE table_name_71 (relation VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT majority FROM table_name_8 WHERE clone_independence = \"no\"", "question": "What is the majority when the clone independence is no?", "context": "CREATE TABLE table_name_8 (majority VARCHAR, clone_independence VARCHAR)"}, {"answer": "SELECT consistency_ & _participation FROM table_name_83 WHERE pareto_efficiency = \"yes\" AND condorcet = \"no\"", "question": "what is the consistency & participation when pareto efficiency is yes and condorcet is no?", "context": "CREATE TABLE table_name_83 (consistency_ VARCHAR, _participation VARCHAR, pareto_efficiency VARCHAR, condorcet VARCHAR)"}, {"answer": "SELECT reversal_symmetry FROM table_name_1 WHERE non_dictatorship = \"yes\" AND consistency_ & _participation = \"no\" AND clone_independence = \"yes\"", "question": "what is the reversal symmetry when non-dictatorship is yes, consistency & participation is no, and clone independence is yes?", "context": "CREATE TABLE table_name_1 (reversal_symmetry VARCHAR, clone_independence VARCHAR, non_dictatorship VARCHAR, consistency_ VARCHAR, _participation VARCHAR)"}, {"answer": "SELECT monotone FROM table_name_41 WHERE pareto_efficiency = \"yes\" AND non_dictatorship = \"yes\" AND clone_independence = \"yes\"", "question": "what is the monotone when pareto efficiency is yes, non-dictatorship is yes, and clone independence is yes?", "context": "CREATE TABLE table_name_41 (monotone VARCHAR, clone_independence VARCHAR, pareto_efficiency VARCHAR, non_dictatorship VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_name_76 WHERE english_translation = \"someone like you\"", "question": "For the English translation Someone Like You, what is the lowest draw?", "context": "CREATE TABLE table_name_76 (draw INTEGER, english_translation VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_86 WHERE english_translation = \"sing\"", "question": "The English translation of Sing has what average points?", "context": "CREATE TABLE table_name_86 (points INTEGER, english_translation VARCHAR)"}, {"answer": "SELECT MIN(heat) FROM table_name_84 WHERE nationality = \"germany\" AND rank > 24", "question": "What is Germany's lowest heat ranked after 24?", "context": "CREATE TABLE table_name_84 (heat INTEGER, nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_33 WHERE nationality = \"denmark\"", "question": "What is the rank for Denmark?", "context": "CREATE TABLE table_name_33 (rank VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_31 WHERE name = \"christine mailliet\" AND rank < 39", "question": "What is the highest lane for Christine Mailliet ranked less than 39?", "context": "CREATE TABLE table_name_31 (lane INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT title FROM table_name_83 WHERE written_by = \"robert haywood\"", "question": "What was the title of the episode written by Robert Haywood?", "context": "CREATE TABLE table_name_83 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT player FROM table_name_71 WHERE goals > 10 AND debut_year < 1993 AND years_at_club = \"1990\u20131993\"", "question": "Which Player has Goals larger than 10, and a Debut year smaller than 1993, and Years at club of 1990\u20131993?", "context": "CREATE TABLE table_name_71 (player VARCHAR, years_at_club VARCHAR, goals VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_87 WHERE games = 51 AND debut_year < 1992", "question": "Which Goals have Games of 51, and a Debut year smaller than 1992?", "context": "CREATE TABLE table_name_87 (goals INTEGER, games VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT MAX(year_joined) FROM table_name_97 WHERE enrollment < 726 AND school = \"tri-west\"", "question": "Which Year Joined has an Enrollment smaller than 726, and a School of tri-west?", "context": "CREATE TABLE table_name_97 (year_joined INTEGER, enrollment VARCHAR, school VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM table_name_99 WHERE school = \"lebanon\"", "question": "What is lebanon's enrollment?", "context": "CREATE TABLE table_name_99 (enrollment INTEGER, school VARCHAR)"}, {"answer": "SELECT SUM(enrollment) FROM table_name_53 WHERE mascot = \"hot dogs\"", "question": "What is the enrollment of the school whose mascot is hot dogs?", "context": "CREATE TABLE table_name_53 (enrollment INTEGER, mascot VARCHAR)"}, {"answer": "SELECT MAX(year_joined) FROM table_name_10 WHERE location = \"crawfordsville\"", "question": "When did crawfordsville join?", "context": "CREATE TABLE table_name_10 (year_joined INTEGER, location VARCHAR)"}, {"answer": "SELECT AVG(b_score) FROM table_name_20 WHERE gymnast = \"k\u014dhei uchimura ( jpn )\"", "question": "what is the average b score when the gymnast is k\u014dhei uchimura ( jpn )?", "context": "CREATE TABLE table_name_20 (b_score INTEGER, gymnast VARCHAR)"}, {"answer": "SELECT b_score FROM table_name_6 WHERE a_score = 6.9", "question": "what is the b score when the a score is 6.9?", "context": "CREATE TABLE table_name_6 (b_score VARCHAR, a_score VARCHAR)"}, {"answer": "SELECT SUM(b_score) FROM table_name_37 WHERE a_score = 6.6 AND total = 15.6", "question": "what is the sum of the b score when the a score is 6.6 and the total is 15.6?", "context": "CREATE TABLE table_name_37 (b_score INTEGER, a_score VARCHAR, total VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_87 WHERE constiuency = \"territorial at-large\" AND name = \"myron walwyn\"", "question": "What is Myron Walwyn with a Territorial at-large Constiuency's First Elected Date", "context": "CREATE TABLE table_name_87 (first_elected VARCHAR, constiuency VARCHAR, name VARCHAR)"}, {"answer": "SELECT party FROM table_name_77 WHERE constiuency = \"council member for the fifth district\"", "question": "What is the Party of the council member for the Fifth District?", "context": "CREATE TABLE table_name_77 (party VARCHAR, constiuency VARCHAR)"}, {"answer": "SELECT total FROM table_name_2 WHERE gold = 2 AND nation = \"brazil (bra)\"", "question": "What is the medal total when there is 2 gold medals, and Brazil (BRA) is the nation?", "context": "CREATE TABLE table_name_2 (total VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT nation FROM table_name_7 WHERE silver > 1 AND bronze = 1", "question": "Which nation has the number of silver medals greater than 1, and bronze medals as 1?", "context": "CREATE TABLE table_name_7 (nation VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_46 WHERE bronze = 1 AND nation = \"czech republic (cze)\"", "question": "What is the least total number of medals when the bronze medals is 1, and Czech Republic (CZE) is the nation?", "context": "CREATE TABLE table_name_46 (total INTEGER, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT nation FROM table_name_28 WHERE gold = 0 AND bronze < 1", "question": "For what nation is the gold medals 0, and the bronze medals less than 1?", "context": "CREATE TABLE table_name_28 (nation VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_75 WHERE bronze = 0 AND silver > 1", "question": "What is the most gold medals when the bronze medals were 0, and the silver medals greater than 1?", "context": "CREATE TABLE table_name_75 (gold INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_28 WHERE silver = 0 AND rank = \"1\" AND nation = \"brazil (bra)\" AND gold < 2", "question": "What is the total bronze medals when the silver medals is 0, and 1 is the rank, Brazil (BRA) is the nation, and the gold medals is less than 2?", "context": "CREATE TABLE table_name_28 (bronze INTEGER, gold VARCHAR, nation VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_76 WHERE silver > 4 AND gold > 3 AND total = 18", "question": "What Nation has more than 4 silver, more than 3 gold and 18 total medals?", "context": "CREATE TABLE table_name_76 (nation VARCHAR, total VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_63 WHERE winner = \"hajduk split (3)\"", "question": "Who is listed as the Runners-up that also has a Winner of Hajduk Split (3)?", "context": "CREATE TABLE table_name_63 (runners_up VARCHAR, winner VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_42 WHERE tv_station = \"ntv\" AND romaji_title = \"kuitan 2\"", "question": "What is the Japanese Title of the Episode on NTV Station with a Romaji Title of Kuitan 2?", "context": "CREATE TABLE table_name_42 (japanese_title VARCHAR, tv_station VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT average_ratings FROM table_name_32 WHERE episodes = \"11\" AND tv_station = \"fuji tv\" AND japanese_title = \"\u30d7\u30ed\u30dd\u30fc\u30ba\u5927\u4f5c\u6226\"", "question": "What are the Ratings of Japanese Title \u30d7\u30ed\u30dd\u30fc\u30ba\u5927\u4f5c\u6226 episode 11 on Fuji TV station?", "context": "CREATE TABLE table_name_32 (average_ratings VARCHAR, japanese_title VARCHAR, episodes VARCHAR, tv_station VARCHAR)"}, {"answer": "SELECT episodes FROM table_name_17 WHERE average_ratings = \"12.0%\" AND tv_station = \"tv asahi\"", "question": "What Episode on TV Asahi Station has Rating of 12.0%?", "context": "CREATE TABLE table_name_17 (episodes VARCHAR, average_ratings VARCHAR, tv_station VARCHAR)"}, {"answer": "SELECT tv_station FROM table_name_84 WHERE romaji_title = \"tokkyuu tanaka sangou\"", "question": "What is the TV Station of the episode with a Romaji Title of Tokkyuu Tanaka Sangou?", "context": "CREATE TABLE table_name_84 (tv_station VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT class FROM table_name_52 WHERE rank = \"2nd\"", "question": "Which class had a rank of 2nd?", "context": "CREATE TABLE table_name_52 (class VARCHAR, rank VARCHAR)"}, {"answer": "SELECT wins FROM table_name_20 WHERE class = \"500cc\" AND year = 1979", "question": "How many wins did the 500cc class have in 1979?", "context": "CREATE TABLE table_name_20 (wins VARCHAR, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_59 WHERE rank = \"2nd\" AND wins < 6", "question": "What is the total of the points for wins under 6 and a rank of 2nd?", "context": "CREATE TABLE table_name_59 (points INTEGER, rank VARCHAR, wins VARCHAR)"}, {"answer": "SELECT class FROM table_name_23 WHERE points = 110", "question": "Which class had 110 points?", "context": "CREATE TABLE table_name_23 (class VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_61 WHERE points = 142", "question": "What is the average year having 142 points?", "context": "CREATE TABLE table_name_61 (year INTEGER, points VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE nationality = \"martinique\" AND games = \"1997 bridgetown\"", "question": "On what date were the 1997 Bridgetown games in which a Martinique girl competed?", "context": "CREATE TABLE table_name_20 (date VARCHAR, nationality VARCHAR, games VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE record = \"43.66 m\"", "question": "What is the date of the games that saw a record of 43.66 m?", "context": "CREATE TABLE table_name_25 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE record = \"43.89 m\"", "question": "On which date was the record of 43.89 m set?", "context": "CREATE TABLE table_name_35 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT games FROM table_name_94 WHERE event = \"long jump\"", "question": "Which games saw a record set in the long jump event?", "context": "CREATE TABLE table_name_94 (games VARCHAR, event VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_22 WHERE year_made = \"4-6-0 \u2014 ooooo \u2014 ten-wheeler\"", "question": "Which manufacturer has a year made of 4-6-0 \u2014 ooooo \u2014 ten-wheeler?", "context": "CREATE TABLE table_name_22 (manufacturer VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_65 WHERE quantity_preserved = \"4-6-0 \u2014 ooooo \u2014 ten-wheeler\"", "question": "What is the quantity made number for the quantity preserved 4-6-0 \u2014 ooooo \u2014 ten-wheeler?", "context": "CREATE TABLE table_name_65 (quantity_made VARCHAR, quantity_preserved VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_23 WHERE tally = \"2-12\" AND total > 18", "question": "Which Average has a Tally of 2-12, and a Total larger than 18?", "context": "CREATE TABLE table_name_23 (average INTEGER, tally VARCHAR, total VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_64 WHERE school = \"international\"", "question": "What is the ISHAA class for the International School?", "context": "CREATE TABLE table_name_64 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_56 WHERE county = \"41 johnson\"", "question": "What school is in 41 Johnson county?", "context": "CREATE TABLE table_name_56 (school VARCHAR, county VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_21 WHERE size < 154 AND county = \"49 marion\"", "question": "What is the mascot for the team smaller than 154 from 49 Marion?", "context": "CREATE TABLE table_name_21 (mascot VARCHAR, size VARCHAR, county VARCHAR)"}, {"answer": "SELECT MIN(size) FROM table_name_94 WHERE school = \"international\"", "question": "What is the size of the International school?", "context": "CREATE TABLE table_name_94 (size INTEGER, school VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE to_par = \"\u22123\" AND player = \"branden grace\"", "question": "What was the score that has a To par of \u22123, for Branden Grace?", "context": "CREATE TABLE table_name_94 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_72 WHERE score < 66 AND place = \"t2\" AND country = \"united states\"", "question": "What player has a score less than 66, and a Place of t2, in the United States?", "context": "CREATE TABLE table_name_72 (player VARCHAR, country VARCHAR, score VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(score) FROM table_name_74 WHERE to_par = \"\u22123\" AND country = \"south africa\" AND player = \"richard sterne\"", "question": "What is the score when To par was \u22123, in South Africa, for Richard Sterne?", "context": "CREATE TABLE table_name_74 (score INTEGER, player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_75 WHERE games_played > 8", "question": "What is the average number of goals for games played that total more than 8?", "context": "CREATE TABLE table_name_75 (goals_for INTEGER, games_played INTEGER)"}, {"answer": "SELECT SUM(wins) FROM table_name_55 WHERE losses < 4 AND goals_against > 20", "question": "What is the sum of wins and the sum of losses less than 4 for teams larger than 20?", "context": "CREATE TABLE table_name_55 (wins INTEGER, losses VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT japan FROM table_name_88 WHERE total = \"1.82 million\"", "question": "What are the sales in Japan for the release totaling 1.82 million?", "context": "CREATE TABLE table_name_88 (japan VARCHAR, total VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE japan = \"0.61 million\"", "question": "Which date had Japanese sales of 0.61 million?", "context": "CREATE TABLE table_name_93 (date VARCHAR, japan VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE japan = \"0.57 million\"", "question": "Which date had Japanese sales of 0.57 million?", "context": "CREATE TABLE table_name_60 (date VARCHAR, japan VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE japan = \"0.59 million\"", "question": "Which date had Japanese sales of 0.59 million?", "context": "CREATE TABLE table_name_70 (date VARCHAR, japan VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_82 WHERE week = 6", "question": "what is the highest attendance for week 6?", "context": "CREATE TABLE table_name_82 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_80 WHERE date = \"october 6, 1975\" AND attendance > 79 OFFSET 384", "question": "what is the highest week when the date is october 6, 1975 and attendance is higher than 79,384?", "context": "CREATE TABLE table_name_80 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(geo_id) FROM table_name_21 WHERE land___sqmi__ < 36.112 AND latitude > 47.536618 AND township = \"west bay\" AND water__sqmi_ > 0.209", "question": "what is the geo id when the land (sqmi) is less than 36.112, the latitude is more than 47.536618, the township is west bay and water (sqmi) is more than 0.209?", "context": "CREATE TABLE table_name_21 (geo_id INTEGER, water__sqmi_ VARCHAR, township VARCHAR, land___sqmi__ VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT township FROM table_name_20 WHERE land___sqmi__ > 36.112 AND geo_id > 3801985060 AND latitude = 46.062384", "question": "what is the township when the land (sqmi) is more than 36.112, the geo id is higher than 3801985060 and the latitude is 46.062384?", "context": "CREATE TABLE table_name_20 (township VARCHAR, latitude VARCHAR, land___sqmi__ VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT AVG(longitude) FROM table_name_75 WHERE water__sqmi_ = 0.317 AND ansi_code > 1759695", "question": "what is the longitude when the water (sqmi) is 0.317 and the ansi code is higher than 1759695?", "context": "CREATE TABLE table_name_75 (longitude INTEGER, water__sqmi_ VARCHAR, ansi_code VARCHAR)"}, {"answer": "SELECT county FROM table_name_74 WHERE latitude > 48.581299 AND ansi_code > 1037103 AND geo_id = 3801985060", "question": "what is the county when the latitude is more than 48.581299, ansi code is more than 1037103 and the geo id is 3801985060?", "context": "CREATE TABLE table_name_74 (county VARCHAR, geo_id VARCHAR, latitude VARCHAR, ansi_code VARCHAR)"}, {"answer": "SELECT MAX(longitude) FROM table_name_38 WHERE county = \"mountrail\" AND water__sqmi_ < 0.075", "question": "what is the highest longitude for county mountrail and the water (sqmi) is less than 0.075?", "context": "CREATE TABLE table_name_38 (longitude INTEGER, county VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT nation FROM table_name_98 WHERE gold = 0 AND bronze > 0 AND rank = \"16\"", "question": "What is the nation when gold is 0, bronze is more than 0 and rank is 16?", "context": "CREATE TABLE table_name_98 (nation VARCHAR, rank VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_38 WHERE nation = \"syria (syr)\" AND gold > 0", "question": "what is the silver when the nation is syria (syr) and gold is more than 0?", "context": "CREATE TABLE table_name_38 (silver INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_32 WHERE rank = \"total\" AND silver > 20", "question": "what is the average gold when rank is total and silver is more than 20?", "context": "CREATE TABLE table_name_32 (gold INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_62 WHERE bronze > 0 AND total > 1 AND gold > 0 AND nation = \"china (chn)\"", "question": "what is the most silver when bronze is more than 0, total is more than 1, gold is more than 0 and the nation is china (chn)?", "context": "CREATE TABLE table_name_62 (silver INTEGER, nation VARCHAR, gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT venue FROM table_name_19 WHERE event = \"marathon\" AND competition = \"london marathon\"", "question": "Where was the London Marathon held?", "context": "CREATE TABLE table_name_19 (venue VARCHAR, event VARCHAR, competition VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_70 WHERE venue = \"singapore\"", "question": "In what years did Salina Kosgei compete in Singapore?", "context": "CREATE TABLE table_name_70 (year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_23 WHERE competition = \"tokyo marathon\"", "question": "In what position did Salina Kosgei finish in the Tokyo Marathon?", "context": "CREATE TABLE table_name_23 (position VARCHAR, competition VARCHAR)"}, {"answer": "SELECT AVG(heat) FROM table_name_97 WHERE rank = 34 AND time < 49.49", "question": "What is the Heat of the 34 Rank swimmer with a Time of 49.49 or less?", "context": "CREATE TABLE table_name_97 (heat INTEGER, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_24 WHERE name = \"dominik meichtry\" AND heat < 7", "question": "What is Dominik Meichtry's Time in Heat 7 or lower?", "context": "CREATE TABLE table_name_24 (time VARCHAR, name VARCHAR, heat VARCHAR)"}, {"answer": "SELECT comp FROM table_name_63 WHERE games < 2", "question": "What is the comp for games less than 2?", "context": "CREATE TABLE table_name_63 (comp VARCHAR, games INTEGER)"}, {"answer": "SELECT MAX(comp) FROM table_name_97 WHERE rating < 52.8 AND yards < 0", "question": "What is the highest comp for ratings less than 52.8 and yards less than 0?", "context": "CREATE TABLE table_name_97 (comp INTEGER, rating VARCHAR, yards VARCHAR)"}, {"answer": "SELECT SUM(yards) FROM table_name_43 WHERE rating = 118.7", "question": "What is the sum of yards for a 118.7 rating?", "context": "CREATE TABLE table_name_43 (yards INTEGER, rating VARCHAR)"}, {"answer": "SELECT MAX(yards) FROM table_name_47 WHERE rating > 52.8 AND games > 13", "question": "What is the highest yards for a rating larger than 52.8 and more than 13 games?", "context": "CREATE TABLE table_name_47 (yards INTEGER, rating VARCHAR, games VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_23 WHERE release_price___usd__ = \"$346\" AND turbo = \"9/11\"", "question": "What is the release date when the release price (usd) is $346 and the turbo is 9/11?", "context": "CREATE TABLE table_name_23 (release_date VARCHAR, release_price___usd__ VARCHAR, turbo VARCHAR)"}, {"answer": "SELECT i_o_bus FROM table_name_28 WHERE sspec_number = \"sr0n5(l1)\"", "question": "what is the i/o bus when the sspec numebr is sr0n5(l1)?", "context": "CREATE TABLE table_name_28 (i_o_bus VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT l3_cache FROM table_name_88 WHERE sspec_number = \"sr0r2(l1)sr0t6(l1)\"", "question": "What is the l3 cache when the sspec number is sr0r2(l1)sr0t6(l1)?", "context": "CREATE TABLE table_name_88 (l3_cache VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_name_52 WHERE turbo = \"9/11\" AND frequency = \"1.5 ghz\"", "question": "what is the part number(s) when the turbo is 9/11 and the frequency is 1.5 ghz?", "context": "CREATE TABLE table_name_52 (part_number_s_ VARCHAR, turbo VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT time FROM table_name_84 WHERE res = \"loss\" AND round < 3", "question": "What was the time for the match that resulted in a loss in less than 3 rounds?", "context": "CREATE TABLE table_name_84 (time VARCHAR, res VARCHAR, round VARCHAR)"}, {"answer": "SELECT hometown_school FROM table_name_94 WHERE team = \"cleveland indians\"", "question": "Which Hometown/School has a Team of cleveland indians?", "context": "CREATE TABLE table_name_94 (hometown_school VARCHAR, team VARCHAR)"}, {"answer": "SELECT player FROM table_name_6 WHERE pick < 11 AND position = \"rhp\" AND team = \"new york mets\"", "question": "Which Player has a Pick smaller than 11, and a Position of rhp, and a Team of new york mets?", "context": "CREATE TABLE table_name_6 (player VARCHAR, team VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT hometown_school FROM table_name_74 WHERE team = \"atlanta braves\"", "question": "Which Hometown/School has a Team of atlanta braves?", "context": "CREATE TABLE table_name_74 (hometown_school VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_name_71 WHERE location = \"hamilton\"", "question": "What's the most enrollment in Hamilton?", "context": "CREATE TABLE table_name_71 (enrollment INTEGER, location VARCHAR)"}, {"answer": "SELECT school FROM table_name_35 WHERE enrollment > 441 AND mascot = \"chargers\"", "question": "What's the school that has an enrollment more than 441 with chargers as their mascot?", "context": "CREATE TABLE table_name_35 (school VARCHAR, enrollment VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_95 WHERE _number___county = \"57 noble\" AND ihsaa_class = \"aa\"", "question": "What's the total enrollment in 57 Noble having a # and AA as the IHSAA Class?", "context": "CREATE TABLE table_name_95 (enrollment VARCHAR, _number___county VARCHAR, ihsaa_class VARCHAR)"}, {"answer": "SELECT year_joined FROM table_name_63 WHERE enrollment < 438 AND ihsaa_class = \"aa\"", "question": "What year joined had an enrollment less than 438 and an AA as the IHSAA Class?", "context": "CREATE TABLE table_name_63 (year_joined VARCHAR, enrollment VARCHAR, ihsaa_class VARCHAR)"}, {"answer": "SELECT branding FROM table_name_33 WHERE call_sign = \"ckua-fm-3\"", "question": "what is the branding when the call sign is ckua-fm-3?", "context": "CREATE TABLE table_name_33 (branding VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT format FROM table_name_58 WHERE frequency = \"fm 94.5\"", "question": "what is the format when the frequency is fm 94.5?", "context": "CREATE TABLE table_name_58 (format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT owner FROM table_name_69 WHERE frequency = \"fm 94.5\"", "question": "who is the owner of fm 94.5?", "context": "CREATE TABLE table_name_69 (owner VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT language_rebroadcast FROM table_name_30 WHERE branding = \"cbc radio one\"", "question": "what is the language/rebroadcast for cbc radio one?", "context": "CREATE TABLE table_name_30 (language_rebroadcast VARCHAR, branding VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_68 WHERE format = \"contemporary christian music\"", "question": "what is the frequency when the format is contemporary christian music?", "context": "CREATE TABLE table_name_68 (frequency VARCHAR, format VARCHAR)"}, {"answer": "SELECT branding FROM table_name_55 WHERE owner = \"jim pattison group\" AND frequency = \"fm 94.5\"", "question": "what is the branding when the owner is jim pattison group and the frequency is fm 94.5?", "context": "CREATE TABLE table_name_55 (branding VARCHAR, owner VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_name_99 WHERE lost > 9 AND goals_scored > 16", "question": "What is the fewest number of draws with more than 9 losts and more than 16 goals scored?", "context": "CREATE TABLE table_name_99 (draw INTEGER, lost VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_2 WHERE lost = 11 AND played < 18", "question": "How many total draws was played less than 18 with 11 losts?", "context": "CREATE TABLE table_name_2 (draw INTEGER, lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(goals_scored) FROM table_name_17 WHERE points > 11 AND goals_conceded = 18 AND played < 18", "question": "What is the total goals scored with more than 11 points, 18 goals conceded, and played fewer than 18 times?", "context": "CREATE TABLE table_name_17 (goals_scored VARCHAR, played VARCHAR, points VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT record FROM table_name_56 WHERE games = \"1991 port of spain\"", "question": "What is the Record of the 1991 Port of Spain Games?", "context": "CREATE TABLE table_name_56 (record VARCHAR, games VARCHAR)"}, {"answer": "SELECT record FROM table_name_72 WHERE nationality = \"bahamas\" AND games = \"2012 hamilton\"", "question": "What is the Record of the 2012 Hamilton Games from Bahamas?", "context": "CREATE TABLE table_name_72 (record VARCHAR, nationality VARCHAR, games VARCHAR)"}, {"answer": "SELECT record FROM table_name_15 WHERE event = \"3000 m\"", "question": "What is the Record of the 3000 M?", "context": "CREATE TABLE table_name_15 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_2 WHERE games = \"2013 nassau\"", "question": "What is the Record of the 2013 Nassau Games?", "context": "CREATE TABLE table_name_2 (record VARCHAR, games VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_92 WHERE class = \"f-7\"", "question": "What is the Quantity made when class is f-7?", "context": "CREATE TABLE table_name_92 (quantity_made VARCHAR, class VARCHAR)"}, {"answer": "SELECT class FROM table_name_16 WHERE year_made = \"1899\u20131900\"", "question": "What is the Class of 1899\u20131900?", "context": "CREATE TABLE table_name_16 (class VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_82 WHERE wheel_arrangement = \"2-8-0\" AND year_made = \"1883\"", "question": "What is the manufacturer with a wheel arrangement of 2-8-0, and Year made of 1883?", "context": "CREATE TABLE table_name_82 (manufacturer VARCHAR, wheel_arrangement VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_92 WHERE wheel_arrangement = \"2-8-0\" AND class = \"f-4\"", "question": "What is the quantity when the wheel arrangement is 2-8-0, and class is f-4?", "context": "CREATE TABLE table_name_92 (quantity_made VARCHAR, wheel_arrangement VARCHAR, class VARCHAR)"}, {"answer": "SELECT wheel_arrangement FROM table_name_46 WHERE fleet_number_s_ = \"45\u201346\"", "question": "What wheel arrangement has a fleet number(s) of 45\u201346?", "context": "CREATE TABLE table_name_46 (wheel_arrangement VARCHAR, fleet_number_s_ VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_76 WHERE year_made = \"1883\"", "question": "What manufacturer has a year made of 1883?", "context": "CREATE TABLE table_name_76 (manufacturer VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE attendance > 66 OFFSET 926", "question": "When hasn an Attendance larger than 66,926?", "context": "CREATE TABLE table_name_72 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT manner_of_departure FROM table_name_14 WHERE date_of_vacancy = \"15 september 2008\"", "question": "what is the manner of departure when the date of vacancy is 15 september 2008?", "context": "CREATE TABLE table_name_14 (manner_of_departure VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_97 WHERE team = \"port vale\"", "question": "who is the replacement when the team is port vale?", "context": "CREATE TABLE table_name_97 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_87 WHERE team = \"bournemouth\" AND outgoing_manager = \"kevin bond\"", "question": "who is the replacement when the team is bournemouth and the outgoing manager is kevin bond?", "context": "CREATE TABLE table_name_87 (replaced_by VARCHAR, team VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_22 WHERE manner_of_departure = \"contract terminated\" AND date_of_vacancy = \"1 september 2008\"", "question": "who is the outgoing manager when the manner of departure is contract terminated and the date of vacancy is 1 september 2008?", "context": "CREATE TABLE table_name_22 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_4 WHERE manner_of_departure = \"contract terminated\" AND position_in_table = \"23rd\" AND date_of_appointment = \"31 december 2008\"", "question": "what is the date of vacancy when the manner of departure is contract terminated, the position in table is 23rd and the date of appointment is 31 december 2008?", "context": "CREATE TABLE table_name_4 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_51 WHERE date_of_vacancy = \"1 september 2008\"", "question": "who is the replacement when the date of vacancy is 1 september 2008?", "context": "CREATE TABLE table_name_51 (replaced_by VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_12 WHERE tournament = \"masters tournament\" AND events < 12", "question": "How many times did Morgan win The Masters Tournament with fewer than 12 appearances?", "context": "CREATE TABLE table_name_12 (wins INTEGER, tournament VARCHAR, events VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_68 WHERE draws = 0 AND wins < 4 AND byes < 0", "question": "What is the lowest losses for a team that has 0 draws, fewer than 4 wins, and no Byes?", "context": "CREATE TABLE table_name_68 (losses INTEGER, byes VARCHAR, draws VARCHAR, wins VARCHAR)"}, {"answer": "SELECT population FROM table_name_18 WHERE median_family_income = \"$38,044\"", "question": "What Population has a Median family income of $38,044?", "context": "CREATE TABLE table_name_18 (population VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT county FROM table_name_95 WHERE median_family_income = \"$37,667\"", "question": "What county has a Median family income of $37,667?", "context": "CREATE TABLE table_name_95 (county VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_34 WHERE median_household_income = \"$32,902\" AND number_of_households < 11 OFFSET 125", "question": "What is the highest Population that has a Median household income of $32,902 with a number of households less than 11,125", "context": "CREATE TABLE table_name_34 (population INTEGER, median_household_income VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT 1851 FROM table_name_67 WHERE 1881 = \"764\"", "question": "What's the 1851 when 1881 had 764?", "context": "CREATE TABLE table_name_67 (Id VARCHAR)"}, {"answer": "SELECT year FROM table_name_29 WHERE 1851 = \"634\"", "question": "What's the year when 1851 had 634?", "context": "CREATE TABLE table_name_29 (year VARCHAR)"}, {"answer": "SELECT 1881 FROM table_name_38 WHERE 1871 = \"1017\"", "question": "What's the 1881 when 1871 had 1017?", "context": "CREATE TABLE table_name_38 (Id VARCHAR)"}, {"answer": "SELECT 1861 FROM table_name_82 WHERE \"year\" = \"year\" AND 1881 = \"1991\"", "question": "What's the 1861 had 1991 in 1881 and a year of year?", "context": "CREATE TABLE table_name_82 (Id VARCHAR)"}, {"answer": "SELECT 1881 FROM table_name_54 WHERE 1851 = \"1961\"", "question": "What's the 1881 with 1961 in 1851?", "context": "CREATE TABLE table_name_54 (Id VARCHAR)"}, {"answer": "SELECT stage AS winner FROM table_name_38 WHERE start_of_stage = \"cauterets\"", "question": "Who was the stage winner when the start of stage is Cauterets?", "context": "CREATE TABLE table_name_38 (stage VARCHAR, start_of_stage VARCHAR)"}, {"answer": "SELECT stage AS winner FROM table_name_99 WHERE stage > 10 AND yellow_jersey = \"joseph planckaert\"", "question": "Who was the stage winner when the stage was more than 10 and yellow jersey was Joseph Planckaert?", "context": "CREATE TABLE table_name_99 (stage VARCHAR, yellow_jersey VARCHAR)"}, {"answer": "SELECT stage AS winner FROM table_name_44 WHERE stage < 16 AND year < 1986 AND distance__km_ = \"19.6\"", "question": "who was the Stage winner when the stage was smaller than 16, earlier than 1986, and a distance (km) was 19.6?", "context": "CREATE TABLE table_name_44 (stage VARCHAR, distance__km_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_66 WHERE yellow_jersey = \"jacques anquetil\"", "question": "What year was yellow jersey of Jacques Anquetil?", "context": "CREATE TABLE table_name_66 (year INTEGER, yellow_jersey VARCHAR)"}, {"answer": "SELECT gpu_model FROM table_name_33 WHERE sspec_number = \"sr16z(c0)\"", "question": "What's the GPU model that has sSpec number SR16Z(c0)?", "context": "CREATE TABLE table_name_33 (gpu_model VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT l3_cache FROM table_name_84 WHERE part_number_s_ = \"low power\"", "question": "What's the L3 cache that has a low power part number?", "context": "CREATE TABLE table_name_84 (l3_cache VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT gpu_frequency FROM table_name_87 WHERE cores = \"ultra-low power\"", "question": "What's the GPU frequency that has ultra-low power in cores?", "context": "CREATE TABLE table_name_87 (gpu_frequency VARCHAR, cores VARCHAR)"}, {"answer": "SELECT cores FROM table_name_89 WHERE part_number_s_ = \"cl8064701477202\"", "question": "What's the cores with the part number cl8064701477202?", "context": "CREATE TABLE table_name_89 (cores VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_65 WHERE year_s__won = \"2003\" AND total > 145", "question": "What is the To par for the player that won in 2003, with a total larger than 145?", "context": "CREATE TABLE table_name_65 (to_par VARCHAR, year_s__won VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_1 WHERE country = \"united states\" AND year_s__won = \"2000 , 2005 , 2006\"", "question": "What is United States total in the year(s) won of 2000 , 2005 , 2006?", "context": "CREATE TABLE table_name_1 (total INTEGER, country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT player FROM table_name_32 WHERE country = \"united states\" AND total > 145", "question": "Who was the player from the United States, with a total larger than 145?", "context": "CREATE TABLE table_name_32 (player VARCHAR, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_70 WHERE to_par = 8", "question": "What is the Year won for the player with a To par of 8?", "context": "CREATE TABLE table_name_70 (year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_21 WHERE country = \"united states\" AND total = 145 AND year_s__won = \"2004\"", "question": "What is the To par  of the United States, when the Total was 145, in 2004?", "context": "CREATE TABLE table_name_21 (to_par VARCHAR, year_s__won VARCHAR, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(tally) FROM table_name_9 WHERE venue = \"vasil levski national stadium, sofia, bulgaria\"", "question": "What is the fewest tally for the game played at Vasil Levski National Stadium, Sofia, Bulgaria?", "context": "CREATE TABLE table_name_9 (tally INTEGER, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_28 WHERE date = \"28 march 2009\"", "question": "For what competition was the game played on 28 March 2009?", "context": "CREATE TABLE table_name_28 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_81 WHERE lane = 7", "question": "The swimmer in lane 7 has what as the smallest rank?", "context": "CREATE TABLE table_name_81 (rank INTEGER, lane VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_88 WHERE name = \"aurore mongel\"", "question": "Swimmer Aurore Mongel has what nationality?", "context": "CREATE TABLE table_name_88 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_50 WHERE name = \"jiao liuyang\"", "question": "Swimmer Jiao Liuyang has what for the sum of lane?", "context": "CREATE TABLE table_name_50 (lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT time FROM table_name_42 WHERE lane < 4 AND rank > 4", "question": "For the swimmer in the lane less than 4, and is ranked greater than 4 what was the time?", "context": "CREATE TABLE table_name_42 (time VARCHAR, lane VARCHAR, rank VARCHAR)"}, {"answer": "SELECT time FROM table_name_20 WHERE name = \"audrey lacroix\"", "question": "Swimmer Audrey Lacroix finished in what time?", "context": "CREATE TABLE table_name_20 (time VARCHAR, name VARCHAR)"}, {"answer": "SELECT competition FROM table_name_12 WHERE notes = \"1:48.58\"", "question": "In which competition was Moradi's time 1:48.58?", "context": "CREATE TABLE table_name_12 (competition VARCHAR, notes VARCHAR)"}, {"answer": "SELECT event FROM table_name_21 WHERE year > 2005 AND competition = \"asian championships\" AND position = \"2nd\" AND venue = \"kobe, japan\"", "question": "In which event did Moradi compete and finish in 2nd at the Asian Championships in Kobe, Japan held after 2005?", "context": "CREATE TABLE table_name_21 (event VARCHAR, venue VARCHAR, position VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_47 WHERE year < 2007 AND notes = \"7434\"", "question": "What competition was held earlier than 2007 and has 7434 in the notes field?", "context": "CREATE TABLE table_name_47 (competition VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT event FROM table_name_86 WHERE notes = \"7860\"", "question": "What event has 7860 notes?", "context": "CREATE TABLE table_name_86 (event VARCHAR, notes VARCHAR)"}, {"answer": "SELECT venue FROM table_name_81 WHERE notes = \"7964 pb\"", "question": "What venue has 7964 pb notes?", "context": "CREATE TABLE table_name_81 (venue VARCHAR, notes VARCHAR)"}, {"answer": "SELECT COUNT(vuelta_wins) FROM table_name_67 WHERE points > 0 AND country = \"spain\" AND name = \"jos\u00e9 p\u00e9rez-franc\u00e9s\"", "question": "How many times is vuelta wins when points is more than 0, country is spain and the name is jos\u00e9 p\u00e9rez-franc\u00e9s?", "context": "CREATE TABLE table_name_67 (vuelta_wins VARCHAR, name VARCHAR, points VARCHAR, country VARCHAR)"}, {"answer": "SELECT constituency_number FROM table_name_99 WHERE name = \"timarni\"", "question": "Which constituency number has a name of Timarni?", "context": "CREATE TABLE table_name_99 (constituency_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT reserved_for___sc___st__none_ FROM table_name_76 WHERE constituency_number = \"132\"", "question": "What is the reserved for value for constituency number 132?", "context": "CREATE TABLE table_name_76 (reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT place FROM table_name_51 WHERE score = 72 - 70 - 67 = 209", "question": "What is the place of the player with a 72-70-67=209 score?", "context": "CREATE TABLE table_name_51 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_87 WHERE player = \"hunter mahan\"", "question": "What is the to par of player hunter mahan?", "context": "CREATE TABLE table_name_87 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_65 WHERE country = \"canada\"", "question": "What is the to par of canada?", "context": "CREATE TABLE table_name_65 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT album FROM table_name_93 WHERE year < 2008 AND title = \"we're not made in the usa\"", "question": "What album came out before 2008 called We're not Made in the USA?", "context": "CREATE TABLE table_name_93 (album VARCHAR, year VARCHAR, title VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_61 WHERE title = \"faces\"", "question": "What is the average year for Faces?", "context": "CREATE TABLE table_name_61 (year INTEGER, title VARCHAR)"}, {"answer": "SELECT AVG(election) FROM table_name_69 WHERE municipality = \"livorno\"", "question": "What is livorno's average election?", "context": "CREATE TABLE table_name_69 (election INTEGER, municipality VARCHAR)"}, {"answer": "SELECT MAX(election) FROM table_name_52 WHERE party = \"democratic party\" AND mayor = \"leonardo betti\"", "question": "Which Election has a Party of democratic party, and a Mayor of leonardo betti?", "context": "CREATE TABLE table_name_52 (election INTEGER, party VARCHAR, mayor VARCHAR)"}, {"answer": "SELECT MIN(inhabitants) FROM table_name_4 WHERE mayor = \"matteo renzi\" AND election > 2009", "question": "Which Inhabitants have a Mayor of matteo renzi, and an Election larger than 2009?", "context": "CREATE TABLE table_name_4 (inhabitants INTEGER, mayor VARCHAR, election VARCHAR)"}, {"answer": "SELECT MIN(inhabitants) FROM table_name_99 WHERE party = \"democratic party\" AND municipality = \"florence\" AND election < 2009", "question": "Which Inhabitants have a Party of democratic party, and a Municipality of florence, and an Election smaller than 2009?", "context": "CREATE TABLE table_name_99 (inhabitants INTEGER, election VARCHAR, party VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT MIN(seats) FROM table_name_6 WHERE share_of_votes = \"18%\" AND share_of_seats = \"3%\" AND general_election < 1992", "question": "Which Seatshave a Share of votes of 18%, and a Share of seats of 3%, and a General election smaller than 1992?", "context": "CREATE TABLE table_name_6 (seats INTEGER, general_election VARCHAR, share_of_votes VARCHAR, share_of_seats VARCHAR)"}, {"answer": "SELECT SUM(general_election) FROM table_name_92 WHERE share_of_votes = \"17%\"", "question": "How much General election has a Share of votes of 17%?", "context": "CREATE TABLE table_name_92 (general_election INTEGER, share_of_votes VARCHAR)"}, {"answer": "SELECT MAX(seats) FROM table_name_62 WHERE share_of_votes = \"18%\" AND share_of_seats = \"3%\" AND general_election > 1992", "question": "Which Seats have a Share of votes of 18%, and a Share of seats of 3%, and a General election larger than 1992?", "context": "CREATE TABLE table_name_62 (seats INTEGER, general_election VARCHAR, share_of_votes VARCHAR, share_of_seats VARCHAR)"}, {"answer": "SELECT share_of_seats FROM table_name_66 WHERE seats < 52 AND name = \"sdp\u2013liberal alliance\" AND general_election = 1983", "question": "Which Share of seats has Seats smaller than 52, and a Name of sdp\u2013liberal alliance, and a General election of 1983?", "context": "CREATE TABLE table_name_66 (share_of_seats VARCHAR, general_election VARCHAR, seats VARCHAR, name VARCHAR)"}, {"answer": "SELECT voltage FROM table_name_71 WHERE l2_cache = \"2 \u00d7 256 kb\" AND turbo = \"5/8\"", "question": "What is the voltage when the L2 cache is 2 \u00d7 256 kb and the turbo is 5/8?", "context": "CREATE TABLE table_name_71 (voltage VARCHAR, l2_cache VARCHAR, turbo VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_92 WHERE sspec_number = \"slbmm(c2)slbsr(k0)\"", "question": "What is the L2 cache with ec number of slbmm(c2)slbsr(k0)?", "context": "CREATE TABLE table_name_92 (l2_cache VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT voltage FROM table_name_71 WHERE cores = \"2\" AND release_date = \"september 2010\" AND turbo = \"5/8\"", "question": "What is the voltage when there are 2 cores, turbo is 5/8 and the release date is September 2010?", "context": "CREATE TABLE table_name_71 (voltage VARCHAR, turbo VARCHAR, cores VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_4 WHERE i_o_bus = \"dmi\" AND voltage = \"0.725\u20131.4v\" AND part_number_s_ = \"cn80617004458ab\"", "question": "What is the frequency for I/O bus of DMI, voltage of 0.725\u20131.4v and part cn80617004458ab?", "context": "CREATE TABLE table_name_4 (frequency VARCHAR, part_number_s_ VARCHAR, i_o_bus VARCHAR, voltage VARCHAR)"}, {"answer": "SELECT i_o_bus FROM table_name_46 WHERE socket = \"socket g1bga-1288\"", "question": "What is I/O bus when socket is socket g1bga-1288?", "context": "CREATE TABLE table_name_46 (i_o_bus VARCHAR, socket VARCHAR)"}, {"answer": "SELECT memory FROM table_name_13 WHERE release_date = \"january 2010\" AND socket = \"bga-1288\"", "question": "What is the memory when release date is January 2010 and socket is BGA-1288?", "context": "CREATE TABLE table_name_13 (memory VARCHAR, release_date VARCHAR, socket VARCHAR)"}, {"answer": "SELECT COUNT(no_of_premierships) FROM table_name_72 WHERE nickname = \"kangaroos\"", "question": "How many Premierships have Nicknamed of kangaroos?", "context": "CREATE TABLE table_name_72 (no_of_premierships VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_69 WHERE school = \"muncie burris\"", "question": "What is the IHSAA class for Muncie Burris?", "context": "CREATE TABLE table_name_69 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_27 WHERE school = \"muncie cowan\"", "question": "What is the IHSAA class for Muncie Cowan?", "context": "CREATE TABLE table_name_27 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT location FROM table_name_30 WHERE _number___county = \"18 delaware\" AND enrollment = 266", "question": "What is the location where enrollment is 266 and and the county is 18 Delaware?", "context": "CREATE TABLE table_name_30 (location VARCHAR, _number___county VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT enrollment FROM table_name_39 WHERE ihsaa_class = \"a\" AND mascot = \"vikings\"", "question": "What is the enrollment at the school with IHSAA class A and where mascot is the Vikings?", "context": "CREATE TABLE table_name_39 (enrollment VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_80 WHERE mascot = \"rebels\"", "question": "What is the IHSAA class for the school where the mascot is the Rebels?", "context": "CREATE TABLE table_name_80 (ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT location FROM table_name_21 WHERE _number___county = \"68 randolph\" AND enrollment = 316", "question": "What is the location with enrollment of 316 and county is 68 Randolph?", "context": "CREATE TABLE table_name_21 (location VARCHAR, _number___county VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT result FROM table_name_17 WHERE year = 2009 AND award = \"sopot international song festival\"", "question": "What result took pace in 2009 and had an award of sopot international song festival?", "context": "CREATE TABLE table_name_17 (result VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT award FROM table_name_88 WHERE year > 2009", "question": "Which award took place after 2009?", "context": "CREATE TABLE table_name_88 (award VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_name_53 WHERE category = \"best international newcomer\"", "question": "What year had the category of best international newcomer?", "context": "CREATE TABLE table_name_53 (year VARCHAR, category VARCHAR)"}, {"answer": "SELECT player FROM table_name_11 WHERE opposition = \"clare\"", "question": "Which Player has an Opposition of clare?", "context": "CREATE TABLE table_name_11 (player VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT total FROM table_name_40 WHERE player = \"matt ruth\"", "question": "Which Total has a Player of matt ruth?", "context": "CREATE TABLE table_name_40 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_62 WHERE player = \"matt ruth\"", "question": "Which Rank has a Player of matt ruth?", "context": "CREATE TABLE table_name_62 (rank INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(byes) FROM table_name_27 WHERE draws < 0", "question": "How many byes were there recorded with 0 draws?", "context": "CREATE TABLE table_name_27 (byes INTEGER, draws INTEGER)"}, {"answer": "SELECT COUNT(draws) FROM table_name_38 WHERE losses = 10 AND wins > 6", "question": "How many draws occured with a record of 10 losses, and 6 wins?", "context": "CREATE TABLE table_name_38 (draws VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(byes) FROM table_name_51 WHERE against = 1655 AND wins > 10", "question": "How many byes were there with an Against of 1655 and more than 10 wins?", "context": "CREATE TABLE table_name_51 (byes INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_93 WHERE byes < 3", "question": "What was the against were there were less than 3 byes?", "context": "CREATE TABLE table_name_93 (against INTEGER, byes INTEGER)"}, {"answer": "SELECT general_classification FROM table_name_36 WHERE mountains_classification = \"stefano garzelli\" AND points_classification = \"danilo di luca\" AND winner = \"ignatas konovalovas\"", "question": "What's the general classification of Ignatas Konovalovas when the mountains classification was Stefano Garzelli and points classification was Danilo Di Luca?", "context": "CREATE TABLE table_name_36 (general_classification VARCHAR, winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_26 WHERE points_classification = \"alessandro petacchi\" AND general_classification = \"danilo di luca\"", "question": "What's the mountains classification when the points classification is Alessandro Petacchi and the general classification is Danilo Di Luca?", "context": "CREATE TABLE table_name_26 (mountains_classification VARCHAR, points_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT winner FROM table_name_60 WHERE general_classification = \"danilo di luca\" AND stage = \"9\"", "question": "Who was the winner of Stage 9 when then general classification was Danilo Di Luca?", "context": "CREATE TABLE table_name_60 (winner VARCHAR, general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_21 WHERE general_classification = \"denis menchov\" AND winner = \"carlos sastre\"", "question": "What is the stage of winner Carlos Sastre when the general classification was Denis Menchov?", "context": "CREATE TABLE table_name_21 (stage VARCHAR, general_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_46 WHERE general_classification = \"denis menchov\" AND stage = \"18\"", "question": "What's the points classification of Stage 18 when the general classification was Denis Menchov?", "context": "CREATE TABLE table_name_46 (points_classification VARCHAR, general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_15 WHERE general_classification = \"denis menchov\" AND winner = \"carlos sastre\"", "question": "What's the mountains classification of winner Carlos Sastre when the general classification is Denis Menchov?", "context": "CREATE TABLE table_name_15 (mountains_classification VARCHAR, general_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_1 WHERE agg = \"2-5\"", "question": "Who is team 1 with an agg of 2-5?", "context": "CREATE TABLE table_name_1 (team_1 VARCHAR, agg VARCHAR)"}, {"answer": "SELECT director FROM table_name_90 WHERE title = \"rebel rabbit\"", "question": "Who was the director of the episode Rebel Rabbit?", "context": "CREATE TABLE table_name_90 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_3 WHERE artist = \"claudia beni\"", "question": "How many years have claudia beni as the artist?", "context": "CREATE TABLE table_name_3 (year INTEGER, artist VARCHAR)"}, {"answer": "SELECT song FROM table_name_94 WHERE artist = \"filipa sousa\"", "question": "What song has filipa sousa as an artist?", "context": "CREATE TABLE table_name_94 (song VARCHAR, artist VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_24 WHERE surface = \"wintry asphalt\"", "question": "How many rounds have a Surface of wintry asphalt?", "context": "CREATE TABLE table_name_24 (round VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_21 WHERE support_category = \"jwrc/pwrc\" AND round > 5", "question": "Which Surface has a Support Category of jwrc/pwrc, and a Round larger than 5?", "context": "CREATE TABLE table_name_21 (surface VARCHAR, support_category VARCHAR, round VARCHAR)"}, {"answer": "SELECT rally_name FROM table_name_17 WHERE surface = \"asphalt and gravel\"", "question": "Which Rally Name has a Surface of asphalt and gravel?", "context": "CREATE TABLE table_name_17 (rally_name VARCHAR, surface VARCHAR)"}, {"answer": "SELECT dates FROM table_name_6 WHERE rally_hq = \"kingscliff\"", "question": "Which dates have a Rally HQ of kingscliff?", "context": "CREATE TABLE table_name_6 (dates VARCHAR, rally_hq VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_80 WHERE rally_hq = \"salou\"", "question": "Which Round has a Rally HQ of salou?", "context": "CREATE TABLE table_name_80 (round INTEGER, rally_hq VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_31 WHERE date = \"december 18, 2005\"", "question": "Who were the Opponents on December 18, 2005?", "context": "CREATE TABLE table_name_31 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT coach FROM table_name_82 WHERE runner_up = \"northeastern\" AND score = \"6\u20133\"", "question": "Which Coach has a Runner-up of northeastern and a Score of 6\u20133?", "context": "CREATE TABLE table_name_82 (coach VARCHAR, runner_up VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE year > 2004 AND runner_up = \"northeastern\"", "question": "Name the Score of the Year larger than 2004 and a Runner-up of northeastern?", "context": "CREATE TABLE table_name_43 (score VARCHAR, year VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_18 WHERE year = 1963", "question": "Name the Runner-up of a Year in 1963?", "context": "CREATE TABLE table_name_18 (runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_71 WHERE score = \"4\u20131\"", "question": "Name the highest Year with a Score of 4\u20131?", "context": "CREATE TABLE table_name_71 (year INTEGER, score VARCHAR)"}, {"answer": "SELECT start FROM table_name_55 WHERE qual = \"207.590\"", "question": "Which Start has a Qual of 207.590?", "context": "CREATE TABLE table_name_55 (start VARCHAR, qual VARCHAR)"}, {"answer": "SELECT year FROM table_name_64 WHERE rank = \"25\"", "question": "Which Year has a Rank of 25?", "context": "CREATE TABLE table_name_64 (year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT laps FROM table_name_30 WHERE finish = \"15\"", "question": "Which Laps have a Finish of 15?", "context": "CREATE TABLE table_name_30 (laps VARCHAR, finish VARCHAR)"}, {"answer": "SELECT qual FROM table_name_74 WHERE laps < 195 AND rank = \"25\"", "question": "Which Qual has Laps smaller than 195, and a Rank of 25?", "context": "CREATE TABLE table_name_74 (qual VARCHAR, laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_11 WHERE finish = \"8\"", "question": "Which Rank has a Finish of 8?", "context": "CREATE TABLE table_name_11 (rank VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_58 WHERE heat > 7", "question": "Which Rank has a Heat larger than 7?", "context": "CREATE TABLE table_name_58 (rank INTEGER, heat INTEGER)"}, {"answer": "SELECT MAX(heat) FROM table_name_36 WHERE nation = \"australia\" AND rank > 7", "question": "Which Heat has a Nation of australia, and a Rank larger than 7?", "context": "CREATE TABLE table_name_36 (heat INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(podiums) FROM table_name_24 WHERE finishes < 12 AND starts < 1", "question": "What is the average number of podiums for drivers with under 12 finishes and under 1 start?", "context": "CREATE TABLE table_name_24 (podiums INTEGER, finishes VARCHAR, starts VARCHAR)"}, {"answer": "SELECT wins FROM table_name_68 WHERE finishes < 7 AND starts > 1 AND points = 1", "question": "What is the number of wins associated with 1 point, more than 1 start, and under 7 finishes?", "context": "CREATE TABLE table_name_68 (wins VARCHAR, points VARCHAR, finishes VARCHAR, starts VARCHAR)"}, {"answer": "SELECT finishes FROM table_name_12 WHERE starts = 13 AND points > 169 AND stage_wins = 96", "question": "What is the number of finishes associated with 13 starts, more than 169 points, and 96 stage wins?", "context": "CREATE TABLE table_name_12 (finishes VARCHAR, stage_wins VARCHAR, starts VARCHAR, points VARCHAR)"}, {"answer": "SELECT director FROM table_name_7 WHERE prod_code = \"40811-005\"", "question": "Who directed the episode with production code 40811-005?", "context": "CREATE TABLE table_name_7 (director VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT title FROM table_name_87 WHERE prod_code = \"40811-002\"", "question": "What is the title of the episode with production code 40811-002?", "context": "CREATE TABLE table_name_87 (title VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_1 WHERE score = \"2-6, 4-6\"", "question": "what is the tournament when the score is 2-6, 4-6?", "context": "CREATE TABLE table_name_1 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_20 WHERE date = \"april 24, 1988\"", "question": "what is the outcome on april 24, 1988?", "context": "CREATE TABLE table_name_20 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE tournament = \"san diego\" AND opponent = \"ann grossman\"", "question": "What is the date when the tournament is san diego and the opponent is ann grossman?", "context": "CREATE TABLE table_name_92 (date VARCHAR, tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_40 WHERE tournament = \"san diego\" AND opponent = \"ann grossman\"", "question": "what is the outcome when the tournament is san diego and the opponent is ann grossman?", "context": "CREATE TABLE table_name_40 (outcome VARCHAR, tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE opponent = \"ann grossman\"", "question": "what is the score when the opponent is ann grossman?", "context": "CREATE TABLE table_name_79 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_83 WHERE tournament = \"tokyo\"", "question": "what is the outcome when the tournament is tokyo?", "context": "CREATE TABLE table_name_83 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT year FROM table_name_87 WHERE ceremony = \"32nd\" AND name = \"william a. horning\" AND film = \"north by northwest\"", "question": "In what Year was the 32nd Ceremony with winner William A. Horning in the Film North by Northwest?", "context": "CREATE TABLE table_name_87 (year VARCHAR, film VARCHAR, ceremony VARCHAR, name VARCHAR)"}, {"answer": "SELECT year FROM table_name_70 WHERE film = \"your national gallery\"", "question": "In what Year was the Film Your National Gallery winner?", "context": "CREATE TABLE table_name_70 (year VARCHAR, film VARCHAR)"}, {"answer": "SELECT film FROM table_name_47 WHERE ceremony = \"19th\" AND name = \"jerome kern\"", "question": "What is the Film with winner Jerome Kern in the 19th Ceremony?", "context": "CREATE TABLE table_name_47 (film VARCHAR, ceremony VARCHAR, name VARCHAR)"}, {"answer": "SELECT academy_award FROM table_name_34 WHERE film = \"educating peter\"", "question": "What is the Academy Award for the Film Educating Peter?", "context": "CREATE TABLE table_name_34 (academy_award VARCHAR, film VARCHAR)"}, {"answer": "SELECT number_of_electorates__2009_ FROM table_name_93 WHERE constituency_number = \"188\"", "question": "Which Number of electorates (2009) has 188 Constituents?", "context": "CREATE TABLE table_name_93 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_48 WHERE winning_score = \u22125(72 - 71 - 68 = 211)", "question": "Who is the runner(s)-up with a winning score of \u22125 (72-71-68=211)?", "context": "CREATE TABLE table_name_48 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE margin_of_victory = \"playoff\" AND tournament = \"shirley englehorn invitational\"", "question": "What date was there a playoff on the margin of victory during the Shirley Englehorn Invitational?", "context": "CREATE TABLE table_name_36 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_10 WHERE margin_of_victory = \"3 strokes\" AND tournament = \"lady carling open\"", "question": "Who is the runner(s)-up for the Lady Carling Open with 3 strokes margin of victory?", "context": "CREATE TABLE table_name_10 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_80 WHERE week > 4 AND date = \"december 6, 1992\"", "question": "What is the attendance in a week larter than 4, on December 6, 1992?", "context": "CREATE TABLE table_name_80 (attendance VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_78 WHERE date = \"october 4, 1992\"", "question": "What week has a Date of October 4, 1992?", "context": "CREATE TABLE table_name_78 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE result = \"l 37-3\"", "question": "What is the date when the result was l 37-3?", "context": "CREATE TABLE table_name_77 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_47 WHERE opponent = \"houston oilers\"", "question": "What is the attendance when the opponent was the Houston Oilers?", "context": "CREATE TABLE table_name_47 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_3 WHERE reaction_time < 0.199 AND country = \"united states\" AND name = \"muna lee\" AND time > 22.01", "question": "Which Lane has a Reaction Time smaller than 0.199, and a Country of united states, and a Name of muna lee, and a Time larger than 22.01?", "context": "CREATE TABLE table_name_3 (lane INTEGER, time VARCHAR, name VARCHAR, reaction_time VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_46 WHERE country = \"jamaica\" AND name = \"kerron stewart\" AND time > 22", "question": "How many Lanes have a Country of jamaica, and a Name of kerron stewart, and a Time larger than 22?", "context": "CREATE TABLE table_name_46 (lane INTEGER, time VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_62 WHERE reaction_time > 0.17500000000000002 AND lane = 3", "question": "How many Times have a Reaction Time larger than 0.17500000000000002, and a Lane of 3?", "context": "CREATE TABLE table_name_62 (time VARCHAR, reaction_time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_95 WHERE country = \"united states\" AND time < 22.01 AND reaction_time < 0.193", "question": "Which Lane has a Country of united states, and a Time smaller than 22.01, and a Reaction Time smaller than 0.193?", "context": "CREATE TABLE table_name_95 (lane INTEGER, reaction_time VARCHAR, country VARCHAR, time VARCHAR)"}, {"answer": "SELECT final_ladder_position FROM table_name_75 WHERE finals_qualification = \"dnq\" AND teams < 10", "question": "What's the ladder position when team is less than 10 and the Finals qualifications were DNQ?", "context": "CREATE TABLE table_name_75 (final_ladder_position VARCHAR, finals_qualification VARCHAR, teams VARCHAR)"}, {"answer": "SELECT SUM(teams) FROM table_name_19 WHERE season = \"2012-13\"", "question": "What is the total teams during the 2012-13 season?", "context": "CREATE TABLE table_name_19 (teams INTEGER, season VARCHAR)"}, {"answer": "SELECT acl_qualification FROM table_name_11 WHERE finals_qualification = \"dnq\" AND minor_ladder_position = \"5th\"", "question": "What's the ACL qualification when the minor ladder position is 5th and the finals qualifications were DNQ?", "context": "CREATE TABLE table_name_11 (acl_qualification VARCHAR, finals_qualification VARCHAR, minor_ladder_position VARCHAR)"}, {"answer": "SELECT finals_qualification FROM table_name_88 WHERE season = \"2009-10\"", "question": "What's the finals qualification during the 2009-10 season?", "context": "CREATE TABLE table_name_88 (finals_qualification VARCHAR, season VARCHAR)"}, {"answer": "SELECT AVG(lib_dem) FROM table_name_87 WHERE conservative < 0", "question": "Name the the average Lib Dem with Conservative smaller than 0?", "context": "CREATE TABLE table_name_87 (lib_dem INTEGER, conservative INTEGER)"}, {"answer": "SELECT MIN(green) FROM table_name_82 WHERE year > 2010 AND labour > 29", "question": "Name the lowest Green with a Year larger than 2010, and a Labour larger than 29? Question 3", "context": "CREATE TABLE table_name_82 (green INTEGER, year VARCHAR, labour VARCHAR)"}, {"answer": "SELECT AVG(independent) FROM table_name_35 WHERE green > 7 AND conservative < 0", "question": "Name the average Independent with a Green larger than 7, and a Conservative smaller than 0?", "context": "CREATE TABLE table_name_35 (independent INTEGER, green VARCHAR, conservative VARCHAR)"}, {"answer": "SELECT MAX(labour) FROM table_name_86 WHERE lib_dem > 21", "question": "Name the highest Labour with Lib Dem larger than 21?", "context": "CREATE TABLE table_name_86 (labour INTEGER, lib_dem INTEGER)"}, {"answer": "SELECT score_in_the_final FROM table_name_88 WHERE surface = \"clay\" AND date = \"18 april 2011\"", "question": "What is the score in the final of the tournament with a clay surface on 18 April 2011?", "context": "CREATE TABLE table_name_88 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_8 WHERE surface = \"hard\"", "question": "What is the score in the final of the tournament with a hard surface?", "context": "CREATE TABLE table_name_8 (score_in_the_final VARCHAR, surface VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_43 WHERE date = \"24 november 2008\"", "question": "Who is the opponent in the final on 24 November 2008?", "context": "CREATE TABLE table_name_43 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE week < 15 AND attendance = \"64,900\" AND result = \"l 38-31\"", "question": "What is the Opponent at the game with an Attendance of 64,900 in Week prior to 15 with a Result of L 38-31?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, result VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_83 WHERE attendance = \"64,900\" AND result = \"l 34-13\"", "question": "What is the Week of the game with an Attendance of 64,900 and a Result of L 34-13?", "context": "CREATE TABLE table_name_83 (week INTEGER, attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_10 WHERE opponent = \"minnesota vikings\"", "question": "What is the Week of the game against Minnesota Vikings?", "context": "CREATE TABLE table_name_10 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_30 WHERE opponent = \"seattle seahawks\"", "question": "What is the Week of the game against Seattle Seahawks?", "context": "CREATE TABLE table_name_30 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(total_goals) FROM table_name_92 WHERE fa_cup_goals = 0 AND fa_cup_apps = \"3\" AND position = \"fw\"", "question": "Which Total Goals have an FA Cup Goals of 0, and an FA Cup Apps of 3, and a Position of fw?", "context": "CREATE TABLE table_name_92 (total_goals INTEGER, position VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_21 WHERE miss_fire__3rd_runner_up_ = \"caroline medina\"", "question": "What year was Caroline Medina Miss Fire (3rd Runner-up)?", "context": "CREATE TABLE table_name_21 (year INTEGER, miss_fire__3rd_runner_up_ VARCHAR)"}, {"answer": "SELECT miss_air__1st_runner_up_ FROM table_name_35 WHERE year < 2007 AND miss_water__2nd_runner_up_ = \"catherine untalan\"", "question": "Who won Miss Air (1st Runner-up) when Catherine Untalan was Miss Water (2nd Runner-up) earlier than 2007?", "context": "CREATE TABLE table_name_35 (miss_air__1st_runner_up_ VARCHAR, year VARCHAR, miss_water__2nd_runner_up_ VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE sr_no < 74 AND floors > 36", "question": "what is the name when the sr no is less than 74 and floors is more than 36?", "context": "CREATE TABLE table_name_61 (name VARCHAR, sr_no VARCHAR, floors VARCHAR)"}, {"answer": "SELECT COUNT(sr_no) FROM table_name_22 WHERE building_type = \"residential\" AND locale = \"yashodham\"", "question": "how many times is the building type residential and the locale yashodham?", "context": "CREATE TABLE table_name_22 (sr_no VARCHAR, building_type VARCHAR, locale VARCHAR)"}, {"answer": "SELECT MIN(floors) FROM table_name_79 WHERE building_type = \"residential\" AND sr_no = 8", "question": "what is the least floors when the building type is residential and the sr no is 8?", "context": "CREATE TABLE table_name_79 (floors INTEGER, building_type VARCHAR, sr_no VARCHAR)"}, {"answer": "SELECT height FROM table_name_99 WHERE locale = \"nepean sea road\" AND floors > 30 AND sr_no = 58", "question": "what is the height when the locale is nepean sea road, floors is more than 30 and sr no is 58?", "context": "CREATE TABLE table_name_99 (height VARCHAR, sr_no VARCHAR, locale VARCHAR, floors VARCHAR)"}, {"answer": "SELECT name FROM table_name_47 WHERE floors = 46", "question": "what is the name that had 46 floors?", "context": "CREATE TABLE table_name_47 (name VARCHAR, floors VARCHAR)"}, {"answer": "SELECT MAX(games_per_goal) FROM table_name_34 WHERE a_league = \"39 (110)\"", "question": "Which player from A-League 39 (110) has the highest games per goal?", "context": "CREATE TABLE table_name_34 (games_per_goal INTEGER, a_league VARCHAR)"}, {"answer": "SELECT name FROM table_name_5 WHERE finals = \"0 (10)\"", "question": "What player had a finals score of 0 (10)?", "context": "CREATE TABLE table_name_5 (name VARCHAR, finals VARCHAR)"}, {"answer": "SELECT name FROM table_name_8 WHERE total = \"8 (24)\"", "question": "Which player has a total of 8 (24)?", "context": "CREATE TABLE table_name_8 (name VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_33 WHERE result = \"w 38-24\" AND attendance < 43 OFFSET 449", "question": "What's the week when the result was W 38-24 and attendance was less than 43,449?", "context": "CREATE TABLE table_name_33 (week INTEGER, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_21 WHERE time = \"0:39\"", "question": "What round had a time of 0:39?", "context": "CREATE TABLE table_name_21 (round INTEGER, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_95 WHERE rank_final = \"1st\" AND score_qualifying < 28.975", "question": "What was the location of the competition with a Rank-Final of 1st and a Score-Qualifying under 28.975?", "context": "CREATE TABLE table_name_95 (location VARCHAR, rank_final VARCHAR, score_qualifying VARCHAR)"}, {"answer": "SELECT competition_description FROM table_name_94 WHERE rank_qualifying = \"1st\" AND apparatus = \"ball\"", "question": "What competition had a Rank-Qualifying of 1st and a ball apparatus?", "context": "CREATE TABLE table_name_94 (competition_description VARCHAR, rank_qualifying VARCHAR, apparatus VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE nationality = \"great britain\" AND ship = \"afrika\"", "question": "What is the date for the ship Afrika, with nationality Great Britain?", "context": "CREATE TABLE table_name_73 (date VARCHAR, nationality VARCHAR, ship VARCHAR)"}, {"answer": "SELECT MAX(tonnage) FROM table_name_13 WHERE nationality = \"great britain\" AND ship = \"newton ash\"", "question": "What is the highest tonnage for a ship from Great Britain named Newton Ash?", "context": "CREATE TABLE table_name_13 (tonnage INTEGER, nationality VARCHAR, ship VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_91 WHERE ship = \"toward\"", "question": "What was the nationality of the ship named Toward?", "context": "CREATE TABLE table_name_91 (nationality VARCHAR, ship VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_52 WHERE fate = \"sunk\" AND ship = \"rinos\"", "question": "What was the nationality of the sunk ship named Rinos?", "context": "CREATE TABLE table_name_52 (nationality VARCHAR, fate VARCHAR, ship VARCHAR)"}, {"answer": "SELECT comp FROM table_name_3 WHERE score = \"489.5\"", "question": "What is the Comp of the Shooter with a Score of 489.5?", "context": "CREATE TABLE table_name_3 (comp VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE shooter = \"new targets from 1989\"", "question": "What is the Date of Shooter New Targets from 1989's record?", "context": "CREATE TABLE table_name_39 (date VARCHAR, shooter VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_58 WHERE nation = \"spain\"", "question": "What is the average total value for Spain?", "context": "CREATE TABLE table_name_58 (total INTEGER, nation VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_25 WHERE rank = \"8\" AND total > 3", "question": "What is the sum of silvers for countries in rank 8 with totals over 3?", "context": "CREATE TABLE table_name_25 (silver INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_83 WHERE gold < 3 AND silver < 0", "question": "What is the average total for countries with under 3 golds and 0 silvers?", "context": "CREATE TABLE table_name_83 (total INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT studio_s_ FROM table_name_45 WHERE director = \"paul greengrass\"", "question": "What is the Studio of the Film directed by Paul Greengrass?", "context": "CREATE TABLE table_name_45 (studio_s_ VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_15 WHERE title = \"kung fu panda 2\"", "question": "Who was the Director of Kung Fu Panda 2?", "context": "CREATE TABLE table_name_15 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_59 WHERE studio_s_ = \"walt disney pictures imagemovers digital\"", "question": "What is Year is Walt Disney Pictures Imagemovers Digital?", "context": "CREATE TABLE table_name_59 (year INTEGER, studio_s_ VARCHAR)"}, {"answer": "SELECT year FROM table_name_14 WHERE title = \"rio\"", "question": "What is the Year of Rio?", "context": "CREATE TABLE table_name_14 (year VARCHAR, title VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_56 WHERE player = \"craig stadler\"", "question": "What is the Total of Player Craig Stadler?", "context": "CREATE TABLE table_name_56 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_72 WHERE year_s__won = \"1998\"", "question": "What is the Total of the Player who won in 1998?", "context": "CREATE TABLE table_name_72 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_28 WHERE year_s__won = \"1979\" AND to_par < 11", "question": "What is the Total of the Player who won in 1979 with a To par of less than 11?", "context": "CREATE TABLE table_name_28 (total INTEGER, year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_79 WHERE name = \"bronte barratt\" AND rank > 4", "question": "What lane did Bronte Barratt, who had a rank larger than 4, swim in?", "context": "CREATE TABLE table_name_79 (lane INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_67 WHERE time = \"1:58.44\"", "question": "In which lane did the swimmer with a time of 1:58.44 swim?", "context": "CREATE TABLE table_name_67 (lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_17 WHERE rank < 6 AND time = \"1:57.01\"", "question": "In which lane did the swimmer with a time of 1:57.01 and a rank smaller than 6 swim?", "context": "CREATE TABLE table_name_17 (lane INTEGER, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT result FROM table_name_39 WHERE round = 4", "question": "What is the result of round 4?", "context": "CREATE TABLE table_name_39 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT venue FROM table_name_11 WHERE round = 20", "question": "What venue was round 20 held at?", "context": "CREATE TABLE table_name_11 (venue VARCHAR, round VARCHAR)"}, {"answer": "SELECT report FROM table_name_9 WHERE round = 9", "question": "What is the report for round 9?", "context": "CREATE TABLE table_name_9 (report VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_54 WHERE heat > 3 AND nationality = \"switzerland\"", "question": "What is the highest rank of an athlete from Switzerland in a heat larger than 3?", "context": "CREATE TABLE table_name_54 (rank INTEGER, heat VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT goals FROM table_name_90 WHERE years_at_club = \"1908\u20131911, 1913\u20131919\"", "question": "What were the goals for the player whose years at club were 1908\u20131911, 1913\u20131919?", "context": "CREATE TABLE table_name_90 (goals VARCHAR, years_at_club VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_29 WHERE debut_year = 1902 AND player = \"jack trehey\" AND games < 1", "question": "What are the most goals listed when Jack Trehey was the player, with the listed debut year of 1902, games less than 1?", "context": "CREATE TABLE table_name_29 (goals INTEGER, games VARCHAR, debut_year VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_at_club FROM table_name_5 WHERE goals > 0 AND debut_year > 1904 AND games > 136 AND player = \"wally johnson\"", "question": "For player Wally Johnson, with goals larger than 0, the debut year later than 1904, and games greater than 136, what were the years at club?", "context": "CREATE TABLE table_name_5 (years_at_club VARCHAR, player VARCHAR, games VARCHAR, goals VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT MAX(debut_year) FROM table_name_56 WHERE player = \"joe youlden\" AND goals > 0", "question": "What is the highest debut year for player Joe Youlden, with goals larger than 0?", "context": "CREATE TABLE table_name_56 (debut_year INTEGER, player VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_91 WHERE player = \"sid o'neill\" AND games > 1", "question": "What is the lowest goals listed for player Sid O'neill, with Games larger than 1?", "context": "CREATE TABLE table_name_91 (goals INTEGER, player VARCHAR, games VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE score = \"379\"", "question": "What's the date the score was 379?", "context": "CREATE TABLE table_name_5 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT comp FROM table_name_81 WHERE score = \"393\"", "question": "What's the comp when the score was 393?", "context": "CREATE TABLE table_name_81 (comp VARCHAR, score VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_11 WHERE round = 4", "question": "Which College/junior/club team has a Round of 4?", "context": "CREATE TABLE table_name_11 (college_junior_club_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(population_1961) FROM table_name_22 WHERE administrative_county = \"west sussex\" AND population_1891 < 120 OFFSET 952", "question": "What is the Population 1961 of West Sussex with a Population of 120,952 or less?", "context": "CREATE TABLE table_name_22 (population_1961 INTEGER, administrative_county VARCHAR, population_1891 VARCHAR)"}, {"answer": "SELECT MAX(population_1891) FROM table_name_44 WHERE headquarters = \"sleaford\"", "question": "What is the Population n1891 of the County with Sleaford Headquarters?", "context": "CREATE TABLE table_name_44 (population_1891 INTEGER, headquarters VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_74 WHERE previous_conference = \"independent\" AND location = \"anderson\"", "question": "What's the mascot in Anderson for the Independent previous conference?", "context": "CREATE TABLE table_name_74 (mascot VARCHAR, previous_conference VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_99 WHERE mascot = \"spartans\"", "question": "What's the location for the Spartans?", "context": "CREATE TABLE table_name_99 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_40 WHERE year_left > 2000 AND location = \"huntington\"", "question": "What's the mascot in Huntington after the year 2000?", "context": "CREATE TABLE table_name_40 (mascot VARCHAR, year_left VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(spectators) FROM table_name_47 WHERE date = \"17 june 2006\" AND time__cet_ > 15", "question": "How many Spectators have a Date of 17 june 2006, and a Time (CET) larger than 15?", "context": "CREATE TABLE table_name_47 (spectators INTEGER, date VARCHAR, time__cet_ VARCHAR)"}, {"answer": "SELECT COUNT(cuts_made) FROM table_name_68 WHERE top_25 > 0 AND top_5 > 1", "question": "What is the total number of cuts made when the top-25 is more than 0, and top-5 is more than 1?", "context": "CREATE TABLE table_name_68 (cuts_made VARCHAR, top_25 VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT COUNT(cuts_made) FROM table_name_47 WHERE events > 3", "question": "What is the total number of cuts made when the events are more than 3?", "context": "CREATE TABLE table_name_47 (cuts_made VARCHAR, events INTEGER)"}, {"answer": "SELECT episodes FROM table_name_13 WHERE japanese_title = \"\u30ed\u30c86\u30673\u51042\u5343\u4e07\u5186\u5f53\u3066\u305f\u7537\"", "question": "What episodes had the title \u30ed\u30c86\u30673\u51042\u5343\u4e07\u5186\u5f53\u3066\u305f\u7537 in Japanese?", "context": "CREATE TABLE table_name_13 (episodes VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_67 WHERE average_ratings = \"9.1%\"", "question": "What Japanese title had average ratings at 9.1%?", "context": "CREATE TABLE table_name_67 (japanese_title VARCHAR, average_ratings VARCHAR)"}, {"answer": "SELECT tv_station FROM table_name_64 WHERE romaji_title = \"maou\"", "question": "Which TV station had a Romaji Title Maou?", "context": "CREATE TABLE table_name_64 (tv_station VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_78 WHERE average_ratings = \"9.2%\" AND tv_station = \"nhk\"", "question": "What Japanese title had average ratings of 9.2% on the NHK station?", "context": "CREATE TABLE table_name_78 (japanese_title VARCHAR, average_ratings VARCHAR, tv_station VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_26 WHERE tv_station = \"nhk\" AND average_ratings = \"9.2%\"", "question": "What Japanese show on NHK had average ratings of 9.2%?", "context": "CREATE TABLE table_name_26 (japanese_title VARCHAR, tv_station VARCHAR, average_ratings VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_91 WHERE team_2 = \"asil lysi\"", "question": "What is the 1st leg when team 2 is Asil Lysi?", "context": "CREATE TABLE table_name_91 (team_2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_50 WHERE team_1 = \"ermis aradippou\"", "question": "What is the 2nd leg when Ermis Aradippou is the first team?", "context": "CREATE TABLE table_name_50 (team_1 VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_40 WHERE bronze > 1", "question": "What is the average number of gold medals won among the nations that won more than 1 bronze?", "context": "CREATE TABLE table_name_40 (gold INTEGER, bronze INTEGER)"}, {"answer": "SELECT AVG(bronze) FROM table_name_65 WHERE total > 1 AND rank > 1", "question": "What is the average number of bronze medals won among nations that won at least 1 medal and are not ranked 1st?", "context": "CREATE TABLE table_name_65 (bronze INTEGER, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_8 WHERE rank = 1 AND silver < 1", "question": "What is the least number of gold medals won among nations ranked 1 with no silver medals?", "context": "CREATE TABLE table_name_8 (gold INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_35 WHERE country = \"egypt\"", "question": "Which athlete represented the country of egypt?", "context": "CREATE TABLE table_name_35 (athlete VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_70 WHERE time = \"6:52.74\"", "question": "What rank did rower have with the time of 6:52.74?", "context": "CREATE TABLE table_name_70 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT notes FROM table_name_48 WHERE rank < 2", "question": "What were the notes for the player who finished with a rank smaller than 2?", "context": "CREATE TABLE table_name_48 (notes VARCHAR, rank INTEGER)"}, {"answer": "SELECT MAX(week) FROM table_name_51 WHERE opponent = \"carolina panthers\"", "question": "What is the highest week that has carolina panthers as the opponent?", "context": "CREATE TABLE table_name_51 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_14 WHERE date = \"september 14, 2003\"", "question": "Which opponent has September 14, 2003 as the date?", "context": "CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_81 WHERE date = \"september 14, 2003\"", "question": "What is the highest week that has September 14, 2003 as the date?", "context": "CREATE TABLE table_name_81 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_19 WHERE date = \"november 30, 2003\"", "question": "What is the lowest week that has November 30, 2003 as the date?", "context": "CREATE TABLE table_name_19 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(league_goals) FROM table_name_80 WHERE fa_cup_apps = \"2\" AND total_goals < 0", "question": "Which League Goals have FA Cup Apps of 2, and Total Goals smaller than 0?", "context": "CREATE TABLE table_name_80 (league_goals INTEGER, fa_cup_apps VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT COUNT(league_cup_goals) FROM table_name_76 WHERE total_apps = \"36\" AND total_goals < 1", "question": "How many League Cup Goals have Total Apps of 36, and Total Goals smaller than 1?", "context": "CREATE TABLE table_name_76 (league_cup_goals VARCHAR, total_apps VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT position FROM table_name_39 WHERE total_apps = \"5\"", "question": "Which position has 5 total apps?", "context": "CREATE TABLE table_name_39 (position VARCHAR, total_apps VARCHAR)"}, {"answer": "SELECT population_density__per_km\u00b2_ FROM table_name_8 WHERE change___percentage_ = \"-6.7\"", "question": "What is the population density (per km) that has -6.7 as the change (%)?", "context": "CREATE TABLE table_name_8 (population_density__per_km\u00b2_ VARCHAR, change___percentage_ VARCHAR)"}, {"answer": "SELECT population_density__per_km\u00b2_ FROM table_name_56 WHERE population__2006_ = \"84\"", "question": "What population density (per km) that has 84 as the population (2006)?", "context": "CREATE TABLE table_name_56 (population_density__per_km\u00b2_ VARCHAR, population__2006_ VARCHAR)"}, {"answer": "SELECT socket FROM table_name_31 WHERE sspec_number = \"sr0pk(e1)\"", "question": "Name the socket of sSpec number of sr0pk(e1)?", "context": "CREATE TABLE table_name_31 (socket VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_55 WHERE sspec_number = \"sr0pk(e1)\"", "question": "Which Release date has a sSpec number of sr0pk(e1)?", "context": "CREATE TABLE table_name_55 (release_date VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_name_60 WHERE model_number = \"core i7-3770\"", "question": "Which Part number(s) has a Model number of core i7-3770?", "context": "CREATE TABLE table_name_60 (part_number_s_ VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_name_71 WHERE l3_cache = \"8 mb\" AND sspec_number = \"sr0pl(e1)\"", "question": "Which Part number(s) has a L3 cache of 8 mb and a sSpec number of sr0pl(e1)?", "context": "CREATE TABLE table_name_71 (part_number_s_ VARCHAR, l3_cache VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_name_20 WHERE gpu_frequency = \"650\u20131150 mhz\" AND sspec_number = \"sr0pq(e1)\"", "question": "Which Release price (USD ) has a GPU frequency of 650\u20131150 mhz and a sSpec number of sr0pq(e1)?", "context": "CREATE TABLE table_name_20 (release_price___usd__ VARCHAR, gpu_frequency VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_name_90 WHERE release_date = \"april 2012\" AND part_number_s_ = \"cm8063701211900bx80637i73770s\"", "question": "Which Release price (USD ) that has a Release date on april 2012 and a Part number(s) of cm8063701211900bx80637i73770s?", "context": "CREATE TABLE table_name_90 (release_price___usd__ VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT game FROM table_name_89 WHERE genre = \"fighting\"", "question": "When the genre is fighting what is the game?", "context": "CREATE TABLE table_name_89 (game VARCHAR, genre VARCHAR)"}, {"answer": "SELECT game FROM table_name_33 WHERE platform_s_ = \"playstation 3\" AND genre = \"platform game\"", "question": "What game has a platform(s) of playstation 3, when the genre is platform game?", "context": "CREATE TABLE table_name_33 (game VARCHAR, platform_s_ VARCHAR, genre VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_78 WHERE year = \"2006 (10th)\"", "question": "What is the platform(s) for the year 2006 (10th)?", "context": "CREATE TABLE table_name_78 (platform_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT genre FROM table_name_44 WHERE year = \"2012 (16th)\"", "question": "What is the genre for the year 2012 (16th)?", "context": "CREATE TABLE table_name_44 (genre VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_18 WHERE genre = \"platform game\"", "question": "What year has a genre the platform game?", "context": "CREATE TABLE table_name_18 (year VARCHAR, genre VARCHAR)"}, {"answer": "SELECT genre FROM table_name_91 WHERE game = \"god of war\"", "question": "What genre has the game god of war?", "context": "CREATE TABLE table_name_91 (genre VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE country = \"united states\" AND player = \"lucas glover\"", "question": "What is the score for Lucas Glover of the United States?", "context": "CREATE TABLE table_name_31 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE player = \"todd hamilton\"", "question": "What is the score for Todd Hamilton?", "context": "CREATE TABLE table_name_52 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_61 WHERE to_par = \"\u20132\" AND score = 73 - 65 = 138", "question": "What player has a To par of \u20132, and a Score of 73-65=138?", "context": "CREATE TABLE table_name_61 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE player = \"nick taylor (a)\"", "question": "What is the score of Nick Taylor (a)?", "context": "CREATE TABLE table_name_64 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_96 WHERE score = 67 - 70 = 137", "question": "What is the place of the person with a score of 67-70=137?", "context": "CREATE TABLE table_name_96 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT ihsaa_class__football_ FROM table_name_63 WHERE school = \"bishop luers\"", "question": "What is Bishop Luers IHSAA class in football?", "context": "CREATE TABLE table_name_63 (ihsaa_class__football_ VARCHAR, school VARCHAR)"}, {"answer": "SELECT ihsaa_class__football_ FROM table_name_24 WHERE mascot = \"generals\"", "question": "What IHSAA football class do the Generals play in?", "context": "CREATE TABLE table_name_24 (ihsaa_class__football_ VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_34 WHERE date = \"december 14, 2003\"", "question": "what is the attendance on december 14, 2003?", "context": "CREATE TABLE table_name_34 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_28 WHERE week = 5", "question": "what is the attendance when the week is 5?", "context": "CREATE TABLE table_name_28 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_36 WHERE date = \"october 19, 2003\"", "question": "what is the attendance on october 19, 2003?", "context": "CREATE TABLE table_name_36 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank FROM table_name_41 WHERE lane = 4", "question": "What rank was the swimmer in lane 4?", "context": "CREATE TABLE table_name_41 (rank VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_42 WHERE rank < 6 AND nationality = \"poland\"", "question": "What is the highest lane for the poland swimmer who ranked under 6?", "context": "CREATE TABLE table_name_42 (lane INTEGER, rank VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT cpu_speed FROM table_name_74 WHERE type = \"new plus\"", "question": "What is the CPU speed(s) of the New Plus type hardware?", "context": "CREATE TABLE table_name_74 (cpu_speed VARCHAR, type VARCHAR)"}, {"answer": "SELECT cpu_chip FROM table_name_71 WHERE type = \"classic\"", "question": "Which CPU chip(s) is used in the Classic type hardware?", "context": "CREATE TABLE table_name_71 (cpu_chip VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_88 WHERE modem = \"v.90\" AND storage = \"2 mb\" AND brand = \"rca\" AND model = \"rw-2110\"", "question": "What is the type of the RCA RW-2110, which has 2 MB of storage and a v.90 modem?", "context": "CREATE TABLE table_name_88 (type VARCHAR, model VARCHAR, brand VARCHAR, modem VARCHAR, storage VARCHAR)"}, {"answer": "SELECT cpu_chip FROM table_name_10 WHERE modem = \"v.90\" AND type = \"dish tuner\" AND model = \"dishplayer 7100\"", "question": "What is the CPU chip in the Dishplayer 7100, which is a dish tuner with a v.90 modem?", "context": "CREATE TABLE table_name_10 (cpu_chip VARCHAR, model VARCHAR, modem VARCHAR, type VARCHAR)"}, {"answer": "SELECT brand FROM table_name_95 WHERE model = \"rw-2100\"", "question": "What brand is the RW-2100 model?", "context": "CREATE TABLE table_name_95 (brand VARCHAR, model VARCHAR)"}, {"answer": "SELECT MAX(date) FROM table_name_97 WHERE u_boats_destroyed__pola_ = \"1\"", "question": "What's the highest Date listed that has U-boats destroyed (Pola) of 1?", "context": "CREATE TABLE table_name_97 (date INTEGER, u_boats_destroyed__pola_ VARCHAR)"}, {"answer": "SELECT tonnage FROM table_name_54 WHERE u_boats_destroyed__kuk_ = \"2\" AND ships_sunk__pola_ = \"(not recorded)\"", "question": "What is the listed Tonnage that has U-boats destroyed (KuK) of 2 and Ships sunk (Pola) of (not recorded)?", "context": "CREATE TABLE table_name_54 (tonnage VARCHAR, u_boats_destroyed__kuk_ VARCHAR, ships_sunk__pola_ VARCHAR)"}, {"answer": "SELECT tonnage FROM table_name_69 WHERE date = 1914", "question": "What is the listed Tonnage for the Date of 1914?", "context": "CREATE TABLE table_name_69 (tonnage VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(date) FROM table_name_13 WHERE u_boats_destroyed__kuk_ = \"2\" AND tonnage = \"1,514,050\"", "question": "What is listed as the average Date that has U-boats destroyed (KuK) of 2 with Tonnage of 1,514,050?", "context": "CREATE TABLE table_name_13 (date INTEGER, u_boats_destroyed__kuk_ VARCHAR, tonnage VARCHAR)"}, {"answer": "SELECT MIN(prominence__m_) FROM table_name_41 WHERE rank = 10 AND col__m_ < 50", "question": "Which Prominence (m) has a Rank of 10, and a Col (m) smaller than 50?", "context": "CREATE TABLE table_name_41 (prominence__m_ INTEGER, rank VARCHAR, col__m_ VARCHAR)"}, {"answer": "SELECT COUNT(elevation__m_) FROM table_name_15 WHERE col__m_ < 562 AND rank = 10 AND prominence__m_ > 1 OFFSET 598", "question": "How much Elevation (m) has a Col (m) smaller than 562, and a Rank of 10, and a Prominence (m) larger than 1,598?", "context": "CREATE TABLE table_name_15 (elevation__m_ VARCHAR, prominence__m_ VARCHAR, col__m_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_32 WHERE col__m_ = 0 AND peak = \"aoraki/mount cook\" AND prominence__m_ > 3 OFFSET 755", "question": "Which Rank has a Col (m) of 0, and a Peak of aoraki/mount cook, and a Prominence (m) larger than 3,755?", "context": "CREATE TABLE table_name_32 (rank INTEGER, prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR)"}, {"answer": "SELECT city FROM table_name_75 WHERE title = \"the night of the living duck\"", "question": "In which city was the Night of the Living Duck released?", "context": "CREATE TABLE table_name_75 (city VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_81 WHERE director = \"stephen fossatti\"", "question": "On what title was Stephen Fossatti the director of?", "context": "CREATE TABLE table_name_81 (title VARCHAR, director VARCHAR)"}, {"answer": "SELECT year FROM table_name_74 WHERE notes = \"87.17 m\"", "question": "Which Year has Notes of 87.17 m?", "context": "CREATE TABLE table_name_74 (year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT position FROM table_name_55 WHERE notes = \"68.76 m\"", "question": "Which Position has Notes of 68.76 m?", "context": "CREATE TABLE table_name_55 (position VARCHAR, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_name_48 WHERE year = 2002", "question": "Which Notes have a Year of 2002?", "context": "CREATE TABLE table_name_48 (notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT nation FROM table_name_91 WHERE bronze = 3", "question": "Which nation had 3 bronze?", "context": "CREATE TABLE table_name_91 (nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT sspec_number FROM table_name_75 WHERE socket = \"standard power\"", "question": "what is the sspec number when the socket is standard power?", "context": "CREATE TABLE table_name_75 (sspec_number VARCHAR, socket VARCHAR)"}, {"answer": "SELECT gpu_model FROM table_name_8 WHERE frequency = \"3.4 ghz\" AND sspec_number = \"sr00b(d2)\"", "question": "what is the gpu model when the frequency is 3.4 ghz and the sspec number is sr00b(d2)?", "context": "CREATE TABLE table_name_8 (gpu_model VARCHAR, frequency VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT turbo FROM table_name_62 WHERE part_number_s_ = \"cm8062300834302bx80623i72600bxc80623i72600\"", "question": "what is the turbo when the part number is cm8062300834302bx80623i72600bxc80623i72600?", "context": "CREATE TABLE table_name_62 (turbo VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT turbo FROM table_name_30 WHERE cores = \"standard power\"", "question": "what is the turbo when the cores is standard power?", "context": "CREATE TABLE table_name_30 (turbo VARCHAR, cores VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_name_99 WHERE release_date = \"january 2011\" AND frequency = \"3.4 ghz\" AND release_price___usd__ = \"$317\"", "question": "what is the part number when the release date is january 2011, the frequency is 3.4 ghz and the release price (usd) is $317?", "context": "CREATE TABLE table_name_99 (part_number_s_ VARCHAR, release_price___usd__ VARCHAR, release_date VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_name_85 WHERE turbo = \"low power\"", "question": "what is the part number that has a turbo of low power?", "context": "CREATE TABLE table_name_85 (part_number_s_ VARCHAR, turbo VARCHAR)"}, {"answer": "SELECT place_of_birth FROM table_name_7 WHERE elevator = \"nicholas iv\" AND elector = \"napoleone orsini frangipani\"", "question": "What is the place of birth when the elevator is Nicholas IV, and elector is Napoleone Orsini Frangipani?", "context": "CREATE TABLE table_name_7 (place_of_birth VARCHAR, elevator VARCHAR, elector VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_77 WHERE elector = \"pietro colonna\"", "question": "What is the elevator when the elector is Pietro Colonna?", "context": "CREATE TABLE table_name_77 (elevator VARCHAR, elector VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_21 WHERE elevated = \"may 16, 1288\" AND cardinalatial_title = \"deacon of s. adriano\"", "question": "What is the elevator when elevated is May 16, 1288, and cardinalatial title shows Deacon of S. Adriano?", "context": "CREATE TABLE table_name_21 (elevator VARCHAR, elevated VARCHAR, cardinalatial_title VARCHAR)"}, {"answer": "SELECT cardinalatial_title FROM table_name_36 WHERE elevated = \"september 18, 1294\" AND elector = \"b\u00e9rard de got\"", "question": "What is the cardinalatial title when the elevated is September 18, 1294, and elector is B\u00e9rard De Got?", "context": "CREATE TABLE table_name_36 (cardinalatial_title VARCHAR, elevated VARCHAR, elector VARCHAR)"}, {"answer": "SELECT place_of_birth FROM table_name_78 WHERE elevated = \"may 16, 1288\" AND cardinalatial_title = \"deacon of s. eustachio\"", "question": "What is the place of birth when elevated is May 16, 1288, and cardinalatial title is Deacon of S. Eustachio?", "context": "CREATE TABLE table_name_78 (place_of_birth VARCHAR, elevated VARCHAR, cardinalatial_title VARCHAR)"}, {"answer": "SELECT format FROM table_name_62 WHERE label = \"edsel\" AND catalog = \"edcd 262\"", "question": "What format was the release in form the Edsel label, and that was from the EDCD 262 catalog?", "context": "CREATE TABLE table_name_62 (format VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_20 WHERE format = \"lp\" AND date = \"april 12, 1968\"", "question": "Released on April 12, 1968 in LP format, what was the catalog?", "context": "CREATE TABLE table_name_20 (catalog VARCHAR, format VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_28 WHERE format = \"lp\" AND date = \"april 12, 1968\"", "question": "From what catalog was the release that happened on April 12, 1968, and in LP format?", "context": "CREATE TABLE table_name_28 (catalog VARCHAR, format VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_33 WHERE label = \"sundazed\"", "question": "From what catalog was the release from Sundazed label?", "context": "CREATE TABLE table_name_33 (catalog VARCHAR, label VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE format = \"sacd (hybrid)\"", "question": "When was the release that was in SACD (hybrid) format?", "context": "CREATE TABLE table_name_27 (date VARCHAR, format VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE label = \"simply vinyl\"", "question": "The release from Simply Vinyl label was on what date?", "context": "CREATE TABLE table_name_91 (date VARCHAR, label VARCHAR)"}, {"answer": "SELECT AVG(heat) FROM table_name_35 WHERE nationality = \"australia\" AND rank < 1", "question": "what is the heat when the nationality is australia and the rank is less than 1?", "context": "CREATE TABLE table_name_35 (heat INTEGER, nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(al_ahly_wins) FROM table_name_29 WHERE draws = 0 AND el_zamalek_wins < 0", "question": "What is the fewest Al Ahly wins for El Zamalek wins of 0 and 0 draws?", "context": "CREATE TABLE table_name_29 (al_ahly_wins INTEGER, draws VARCHAR, el_zamalek_wins VARCHAR)"}, {"answer": "SELECT competition FROM table_name_79 WHERE draws = 2", "question": "Which competition had 2 draws?", "context": "CREATE TABLE table_name_79 (competition VARCHAR, draws VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_27 WHERE el_zamalek_wins < 36 AND total > 2 AND al_ahly_wins > 37", "question": "What is the sum of draws for El Zamalek wins under 36, total over 2, and Al Ahly wins over 37?", "context": "CREATE TABLE table_name_27 (draws INTEGER, al_ahly_wins VARCHAR, el_zamalek_wins VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_1 WHERE al_ahly_wins > 59", "question": "What is the average number of draws for Al Ahly wins over 59?", "context": "CREATE TABLE table_name_1 (draws INTEGER, al_ahly_wins INTEGER)"}, {"answer": "SELECT SUM(latitude) FROM table_name_71 WHERE longitude > -101.819319 AND township = \"martin\" AND geo_id = 3809951140", "question": "What is the latitude that has a longitude larger than -101.819319 in Martin and a GEO ID of 3809951140?", "context": "CREATE TABLE table_name_71 (latitude INTEGER, geo_id VARCHAR, longitude VARCHAR, township VARCHAR)"}, {"answer": "SELECT AVG(latitude) FROM table_name_98 WHERE geo_id > 3806352640 AND land___sqmi__ = 34.345", "question": "What is the latitude with a GEO ID larger than 3806352640, and a Land(sqmi) of 34.345?", "context": "CREATE TABLE table_name_98 (latitude INTEGER, geo_id VARCHAR, land___sqmi__ VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_58 WHERE opponent = \"platense\"", "question": "what is the final score when the opponent is platense?", "context": "CREATE TABLE table_name_58 (final_score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE opponent = \"real espa\u00f1a\"", "question": "what is the date when the opponent is real espa\u00f1a?", "context": "CREATE TABLE table_name_41 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE opponent = \"real juventud\"", "question": "what is the date when the opponent is real juventud?", "context": "CREATE TABLE table_name_90 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_62 WHERE date = \"2009-02-26\"", "question": "what is the final score when the date is 2009-02-26?", "context": "CREATE TABLE table_name_62 (final_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT playing_for FROM table_name_95 WHERE opponent = \"deportes savio\" AND date = \"2010-03-11\"", "question": "who is playing for when the opponent is deportes savio and the date is 2010-03-11?", "context": "CREATE TABLE table_name_95 (playing_for VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank FROM table_name_16 WHERE date = \"september 9, 2004\"", "question": "Which Rank that is on september 9, 2004?", "context": "CREATE TABLE table_name_16 (rank VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_77 WHERE date = \"september 9, 2004\"", "question": "Which Opponent is on september 9, 2004?", "context": "CREATE TABLE table_name_77 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_79 WHERE date = \"november 24, 2002\"", "question": "What were the results for November 24, 2002?", "context": "CREATE TABLE table_name_79 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_99 WHERE athlete = \"david payne\" AND time > 13.17", "question": "What is the greatest lane that David Payne was in when he ran longer than 13.17?", "context": "CREATE TABLE table_name_99 (lane INTEGER, athlete VARCHAR, time VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_76 WHERE time = 13.6", "question": "Who had the time 13.6?", "context": "CREATE TABLE table_name_76 (athlete VARCHAR, time VARCHAR)"}, {"answer": "SELECT position FROM table_name_6 WHERE team = \"baltimore orioles\"", "question": "What is the position of the player for the Baltimore Orioles?", "context": "CREATE TABLE table_name_6 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE school = \"vanderbilt university\"", "question": "What is the name of the player from Vanderbilt University?", "context": "CREATE TABLE table_name_43 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_13 WHERE position = \"of\" AND team = \"san francisco giants\" AND player = \"arturo mcdowell\"", "question": "What is the lowest pick number for Arturo McDowell, who plays the OF position for the San Francisco Giants?", "context": "CREATE TABLE table_name_13 (pick INTEGER, player VARCHAR, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT school FROM table_name_4 WHERE team = \"new york mets\"", "question": "What school did the player drafted for the New York Mets attend?", "context": "CREATE TABLE table_name_4 (school VARCHAR, team VARCHAR)"}, {"answer": "SELECT round_of_32 FROM table_name_10 WHERE finals = \"did not advance\" AND semifinals = \"did not advance\" AND quarterfinals = \"did not advance\" AND event = \"56kg\"", "question": "What's the round of 32 during the 56kg when the quarterfinals, semifinals, and finals did not advance?", "context": "CREATE TABLE table_name_10 (round_of_32 VARCHAR, event VARCHAR, quarterfinals VARCHAR, finals VARCHAR, semifinals VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_65 WHERE finals = \"did not advance\" AND event = \"56kg\"", "question": "Who was the athlete in the 56kg event having a did not advance in the finals?", "context": "CREATE TABLE table_name_65 (athlete VARCHAR, finals VARCHAR, event VARCHAR)"}, {"answer": "SELECT round_of_16 FROM table_name_16 WHERE event = \"69kg\"", "question": "What's the 69kg of Round 16?", "context": "CREATE TABLE table_name_16 (round_of_16 VARCHAR, event VARCHAR)"}, {"answer": "SELECT quarterfinals FROM table_name_79 WHERE rank = \"bronze\"", "question": "What's the quarterfinals when the rank was bronze?", "context": "CREATE TABLE table_name_79 (quarterfinals VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_25 WHERE name = \"hon. vicente q. roxas\"", "question": "What is Hon. Vicente Q. Roxas appointment date?", "context": "CREATE TABLE table_name_25 (date_of_appointment VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_63 WHERE points < 68 AND artist = \"loudest whisper\" AND place > 9", "question": "What is the Draw number of the song by Artist of \"Loudest Whisper\" with 68 or less Points with a place of 9 or larger?", "context": "CREATE TABLE table_name_63 (draw INTEGER, place VARCHAR, points VARCHAR, artist VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_10 WHERE artist = \"rosie hunter\" AND draw > 1", "question": "What is the Place of the Song by Artist Rosie Hunter with a Draw of 1 or larger?", "context": "CREATE TABLE table_name_10 (place VARCHAR, artist VARCHAR, draw VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_65 WHERE total > 7 AND silver = 3 AND games = \"summer\" AND gold = 5", "question": "Which Bronze has a Total larger than 7 and a Silver of 3, and a Games of summer, and a Gold of 5?", "context": "CREATE TABLE table_name_65 (bronze VARCHAR, gold VARCHAR, games VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT tonnage__grt_ FROM table_name_15 WHERE name = \"eldena\"", "question": "What is the tonnage of the Eldena?", "context": "CREATE TABLE table_name_15 (tonnage__grt_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT show_name FROM table_name_54 WHERE time = \"4:00pm\u20135:00am\"", "question": "What show has a time of 4:00pm\u20135:00am?", "context": "CREATE TABLE table_name_54 (show_name VARCHAR, time VARCHAR)"}, {"answer": "SELECT show_name FROM table_name_25 WHERE news_freq = \"60 minutes\"", "question": "What's the show that has 60 minutes as the news freq?", "context": "CREATE TABLE table_name_25 (show_name VARCHAR, news_freq VARCHAR)"}, {"answer": "SELECT time FROM table_name_13 WHERE local_networked = \"networked\" AND ad_freq = \"20 minutes until 7pm\"", "question": "What time that is networked has an ad freq of 20 minutes until 7pm?", "context": "CREATE TABLE table_name_13 (time VARCHAR, local_networked VARCHAR, ad_freq VARCHAR)"}, {"answer": "SELECT time FROM table_name_94 WHERE show_name = \"best mix overnight\"", "question": "What's time is Best Mix Overnight?", "context": "CREATE TABLE table_name_94 (time VARCHAR, show_name VARCHAR)"}, {"answer": "SELECT res FROM table_name_25 WHERE time = \"5:00\" AND method = \"decision (unanimous)\" AND record = \"1\u20130\"", "question": "Which res has a Time of 5:00, and a Method of decision (unanimous), and a Record of 1\u20130?", "context": "CREATE TABLE table_name_25 (res VARCHAR, record VARCHAR, time VARCHAR, method VARCHAR)"}, {"answer": "SELECT event FROM table_name_37 WHERE res = \"loss\" AND time = \"5:00\" AND opponent = \"lance everson\"", "question": "Which Event has Res of loss, and a Time of 5:00, and an Opponent of lance everson?", "context": "CREATE TABLE table_name_37 (event VARCHAR, opponent VARCHAR, res VARCHAR, time VARCHAR)"}, {"answer": "SELECT heat FROM table_name_62 WHERE time = \"57.97\"", "question": "What is the heat for the time 57.97?", "context": "CREATE TABLE table_name_62 (heat VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_88 WHERE name = \"julia wilkinson\"", "question": "How many heats does Julia Wilkinson have?", "context": "CREATE TABLE table_name_88 (heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_6 WHERE heat > 4 AND nationality = \"germany\" AND lane = 7", "question": "Who has more than 4 heat for Germany and 7 lanes?", "context": "CREATE TABLE table_name_6 (name VARCHAR, lane VARCHAR, heat VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT name FROM table_name_88 WHERE nationality = \"france\" AND lane < 3", "question": "Who has less than 3 lanes for France?", "context": "CREATE TABLE table_name_88 (name VARCHAR, nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT player FROM table_name_71 WHERE college = \"cincinnati\"", "question": "Who is the Cincinnati College player?", "context": "CREATE TABLE table_name_71 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_42 WHERE time = \"13:00\" AND total = \"97\u201374\"", "question": "What is the set 1 when the time is 13:00, and total is 97\u201374?", "context": "CREATE TABLE table_name_42 (set_1 VARCHAR, time VARCHAR, total VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_85 WHERE total = \"97\u201374\"", "question": "What set 2 has a total of 97\u201374?", "context": "CREATE TABLE table_name_85 (set_2 VARCHAR, total VARCHAR)"}, {"answer": "SELECT time FROM table_name_30 WHERE set_1 = \"18\u201325\"", "question": "What time has a Set 1 of 18\u201325?", "context": "CREATE TABLE table_name_30 (time VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT time FROM table_name_14 WHERE set_3 = \"25\u201316\"", "question": "What time has a Set 3 of 25\u201316?", "context": "CREATE TABLE table_name_14 (time VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT MAX(2010) FROM table_name_62 WHERE code__iata_icao_ = \"otp/lrop\"", "question": "What was the value in 2010 for the airport coded OTP/LROP?", "context": "CREATE TABLE table_name_62 (code__iata_icao_ VARCHAR)"}, {"answer": "SELECT COUNT(2010) FROM table_name_84 WHERE city = \"cluj-napoca\" AND rank > 3", "question": "What is the value in 2010 for an airport ranked higher than 3 located in Cluj-Napoca?", "context": "CREATE TABLE table_name_84 (city VARCHAR, rank VARCHAR)"}, {"answer": "SELECT venue FROM table_name_30 WHERE semi_final_heat_host = \"david jacobs\"", "question": "What was the venue when David Jacobs was the host?", "context": "CREATE TABLE table_name_30 (venue VARCHAR, semi_final_heat_host VARCHAR)"}, {"answer": "SELECT semi_final_heat_host FROM table_name_24 WHERE national_final_main_host = \"terry wogan\" AND national_final_co_host = \"gaby roslin\"", "question": "What was the host for the semi final heat, when Terry Wogan was the National Final main host, and Gaby Roslin was the National Final co-host?", "context": "CREATE TABLE table_name_24 (semi_final_heat_host VARCHAR, national_final_main_host VARCHAR, national_final_co_host VARCHAR)"}, {"answer": "SELECT national_final_main_host FROM table_name_83 WHERE semi_final_heat_host = \"internal selection\" AND year_s_ = \"2011\"", "question": "What is the name of the national final main host when the semi final/heat host shows internal selection in 2011?", "context": "CREATE TABLE table_name_83 (national_final_main_host VARCHAR, semi_final_heat_host VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT national_final_co_host FROM table_name_85 WHERE national_final_main_host = \"david jacobs\" AND selection_show = \"a song for europe\" AND year_s_ = \"1966\"", "question": "What is the name of the national final co host when David Jacobs was the National final main host, and the selection show was a song for europe in 1966?", "context": "CREATE TABLE table_name_85 (national_final_co_host VARCHAR, year_s_ VARCHAR, national_final_main_host VARCHAR, selection_show VARCHAR)"}, {"answer": "SELECT selection_show FROM table_name_86 WHERE semi_final_heat_host = \"no semi final/heat\" AND year_s_ = \"1969\"", "question": "What is the selection show in 1969 when the Semi final/heat host shows there was no semi final/heat.", "context": "CREATE TABLE table_name_86 (selection_show VARCHAR, semi_final_heat_host VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT national_final_main_host FROM table_name_75 WHERE venue = \"bbc television centre\" AND selection_show = \"eurovision: your country needs you\"", "question": "What is the name of the national final main host at BBC Television Centre, and the selection show was Eurovision: Your Country Needs You?", "context": "CREATE TABLE table_name_75 (national_final_main_host VARCHAR, venue VARCHAR, selection_show VARCHAR)"}, {"answer": "SELECT total FROM table_name_31 WHERE a_score > 6.4 AND b_score < 9.025", "question": "Can you tell me the Total that has the A Score larger than 6.4, and the B Score smaller than 9.025?", "context": "CREATE TABLE table_name_31 (total VARCHAR, a_score VARCHAR, b_score VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_16 WHERE b_score = 9.15", "question": "Can you tell me the total number of Total that has the B Score of 9.15?", "context": "CREATE TABLE table_name_16 (total VARCHAR, b_score VARCHAR)"}, {"answer": "SELECT AVG(b_score) FROM table_name_47 WHERE position = \"2nd\" AND total < 15.525", "question": "Can you tell me the average B Score that has the Position of 2nd, and the Total smaller than 15.525?", "context": "CREATE TABLE table_name_47 (b_score INTEGER, position VARCHAR, total VARCHAR)"}, {"answer": "SELECT year_s__of_manufacture FROM table_name_26 WHERE type = \"1b n2\" AND quantity = 10", "question": "Which Year(s) of manufacture has a Type of 1b n2, and a Quantity of 10?", "context": "CREATE TABLE table_name_26 (year_s__of_manufacture VARCHAR, type VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT railway_number_s_ FROM table_name_93 WHERE year_s__of_manufacture = \"1899\u20131907\"", "question": "Which Railway number(s) has a Year(s) of manufacture of 1899\u20131907?", "context": "CREATE TABLE table_name_93 (railway_number_s_ VARCHAR, year_s__of_manufacture VARCHAR)"}, {"answer": "SELECT league FROM table_name_53 WHERE goals = \"10\"", "question": "What is the league listed that has goals of 10?", "context": "CREATE TABLE table_name_53 (league VARCHAR, goals VARCHAR)"}, {"answer": "SELECT team FROM table_name_32 WHERE games = \"7\"", "question": "What is the team name that as games of 7?", "context": "CREATE TABLE table_name_32 (team VARCHAR, games VARCHAR)"}, {"answer": "SELECT season FROM table_name_39 WHERE games = \"10\"", "question": "What season has a Games listed of 10?", "context": "CREATE TABLE table_name_39 (season VARCHAR, games VARCHAR)"}, {"answer": "SELECT league FROM table_name_47 WHERE games = \"10\"", "question": "What is the league name that has a Games listing of 10?", "context": "CREATE TABLE table_name_47 (league VARCHAR, games VARCHAR)"}, {"answer": "SELECT season FROM table_name_63 WHERE league = \"bcla\" AND goals = \"6\"", "question": "What is the Season with goals of 6 and BCLA as the league?", "context": "CREATE TABLE table_name_63 (season VARCHAR, league VARCHAR, goals VARCHAR)"}, {"answer": "SELECT team FROM table_name_27 WHERE games = \"7\"", "question": "What is the name of the team with a Games listing of 7?", "context": "CREATE TABLE table_name_27 (team VARCHAR, games VARCHAR)"}, {"answer": "SELECT season FROM table_name_47 WHERE position = \"14th\"", "question": "What season had a 14th position?", "context": "CREATE TABLE table_name_47 (season VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(poles) FROM table_name_73 WHERE series = \"firestone indy lights series\" AND season < 2009", "question": "What is the sum of poles of the firestone indy lights series before the 2009 season?", "context": "CREATE TABLE table_name_73 (poles INTEGER, series VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(f_laps) FROM table_name_53 WHERE wins < 0", "question": "What is the highest f/laps with less than 0 wins?", "context": "CREATE TABLE table_name_53 (f_laps INTEGER, wins INTEGER)"}, {"answer": "SELECT AVG(wins) FROM table_name_31 WHERE position = \"20th\" AND f_laps > 0", "question": "What is the average wins with a 20th position and more than 0 f/laps?", "context": "CREATE TABLE table_name_31 (wins INTEGER, position VARCHAR, f_laps VARCHAR)"}, {"answer": "SELECT MIN(poles) FROM table_name_84 WHERE position = \"nc\" AND team = \"comtec racing\"", "question": "What is the lowest poles of team comtec racing, which has a nc position?", "context": "CREATE TABLE table_name_84 (poles INTEGER, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE saros > 124 AND type = \"total\" AND magnitude > 1.0535 AND time__greatest_ = \"20:55:28\"", "question": "what is the date when saros is more than 124, the type is total, the magnitude is more than 1.0535 and the time (greatest) is 20:55:28?", "context": "CREATE TABLE table_name_21 (date VARCHAR, time__greatest_ VARCHAR, magnitude VARCHAR, saros VARCHAR, type VARCHAR)"}, {"answer": "SELECT SUM(member) FROM table_name_11 WHERE saros > 127 AND gamma < 1.1508 AND magnitude = 0.742", "question": "what is the sum of the member when the saros is more than 127, gamma is less than 1.1508 and the magnitude is 0.742?", "context": "CREATE TABLE table_name_11 (member INTEGER, magnitude VARCHAR, saros VARCHAR, gamma VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_94 WHERE player = \"travis lee\"", "question": "When Travis Lee was picked, what was the highest pick?", "context": "CREATE TABLE table_name_94 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_13 WHERE team = \"seattle mariners\"", "question": "What is the total number pick for seattle mariners team?", "context": "CREATE TABLE table_name_13 (pick VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_52 WHERE scored = 10 AND wins < 3", "question": "What is the sum of points for teams with 10 goals scored and under 3 wins?", "context": "CREATE TABLE table_name_52 (points INTEGER, scored VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_8 WHERE points < 16 AND draws < 3", "question": "What is the average number of losses for teams with under 16 points and under 3 draws?", "context": "CREATE TABLE table_name_8 (losses INTEGER, points VARCHAR, draws VARCHAR)"}, {"answer": "SELECT country FROM table_name_61 WHERE time = \"8:03.61\"", "question": "What country has a time of 8:03.61?", "context": "CREATE TABLE table_name_61 (country VARCHAR, time VARCHAR)"}, {"answer": "SELECT notes FROM table_name_74 WHERE country = \"zimbabwe\"", "question": "What are the notes for Zimbabwe?", "context": "CREATE TABLE table_name_74 (notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT time FROM table_name_3 WHERE country = \"south korea\"", "question": "What is the time for South Korea?", "context": "CREATE TABLE table_name_3 (time VARCHAR, country VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_90 WHERE time = \"8:34.27\"", "question": "The time of 8:34.27 was set by what athlete?", "context": "CREATE TABLE table_name_90 (athlete VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_79 WHERE rank > 3 AND notes = \"fd\" AND athlete = \"shin yeong-eun\"", "question": "The Athlete Shin Yeong-eun with a rank larger than 3 and notes of FD had what time?", "context": "CREATE TABLE table_name_79 (time VARCHAR, athlete VARCHAR, rank VARCHAR, notes VARCHAR)"}, {"answer": "SELECT event FROM table_name_69 WHERE horse = \"fabuleux 5\" AND result < 70.88", "question": "In which event did Fabuleux 5 get a result smaller than 70.88?", "context": "CREATE TABLE table_name_69 (event VARCHAR, horse VARCHAR, result VARCHAR)"}, {"answer": "SELECT class FROM table_name_11 WHERE event = \"freestyle test\" AND result < 70.277 AND horse = \"fabuleux 5\"", "question": "What is the class of Fabuleux 5 get less than 70.277 in the freestyle test?", "context": "CREATE TABLE table_name_11 (class VARCHAR, horse VARCHAR, event VARCHAR, result VARCHAR)"}, {"answer": "SELECT horse FROM table_name_61 WHERE athlete = \"britta n\u00e4pel\" AND result < 71.909", "question": "What horse was shown by with Britta N\u00e4pel and got less than 71.909?", "context": "CREATE TABLE table_name_61 (horse VARCHAR, athlete VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_name_99 WHERE horse = \"waldemar 27\" AND event = \"freestyle test\"", "question": "What is the result of Waldemar 27\u00b4s freestyle test?", "context": "CREATE TABLE table_name_99 (result VARCHAR, horse VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE tournament = \"acapulco\"", "question": "what is the date for the tournament acapulco?", "context": "CREATE TABLE table_name_94 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_64 WHERE tournament = \"cagnes-sur-mer\"", "question": "who is the opponent in the final when the tournament is cagnes-sur-mer?", "context": "CREATE TABLE table_name_64 (opponent_in_the_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE tournament = \"jou\u00e9-l\u00e8s-tours\"", "question": "what is the date for the tournament jou\u00e9-l\u00e8s-tours?", "context": "CREATE TABLE table_name_52 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE tournament = \"cagnes-sur-mer\"", "question": "what is the score for the tournament cagnes-sur-mer?", "context": "CREATE TABLE table_name_38 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE date = \"may 11, 1997\"", "question": "what is the score on may 11, 1997?", "context": "CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE score = \"6-1 6-3\"", "question": "What is the Date of the tournament with a Score of 6-1 6-3?", "context": "CREATE TABLE table_name_22 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE opponent_in_final = \"anastasiya yakimova\"", "question": "What is the Date of the Tournament against Anastasiya Yakimova?", "context": "CREATE TABLE table_name_35 (date VARCHAR, opponent_in_final VARCHAR)"}, {"answer": "SELECT opponent_in_final FROM table_name_47 WHERE tournament = \"pingguo\"", "question": "What is the Opponent in final of the Pingguo Tournament?", "context": "CREATE TABLE table_name_47 (opponent_in_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE tournament = \"pingguo\"", "question": "What is the Score of the Pingguo Tournament?", "context": "CREATE TABLE table_name_94 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_67 WHERE date = \"june 11, 2006\"", "question": "What is the Surface of the Tournament on June 11, 2006?", "context": "CREATE TABLE table_name_67 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT a_league FROM table_name_7 WHERE saves = 39", "question": "What is the A-league with 39 saves?", "context": "CREATE TABLE table_name_7 (a_league VARCHAR, saves VARCHAR)"}, {"answer": "SELECT tally FROM table_name_73 WHERE total > 8 AND opposition = \"waterford\"", "question": "What is the tally with a total larger than 8, Waterford was the opposition?", "context": "CREATE TABLE table_name_73 (tally VARCHAR, total VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT tally FROM table_name_12 WHERE opposition = \"derry\" AND total = 14", "question": "What is the tally when the opposition is Derry, and total is 14?", "context": "CREATE TABLE table_name_12 (tally VARCHAR, opposition VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_60 WHERE total_score = \"305\"", "question": "What's the year with a score of 305?", "context": "CREATE TABLE table_name_60 (year INTEGER, total_score VARCHAR)"}, {"answer": "SELECT to_par_[a_] FROM table_name_35 WHERE course = \"st andrews\" AND year < 1888", "question": "What's the To par of St Andrews before the year 1888?", "context": "CREATE TABLE table_name_35 (to_par_ VARCHAR, a_ VARCHAR, course VARCHAR, year VARCHAR)"}, {"answer": "SELECT location FROM table_name_28 WHERE total_score = \"149\"", "question": "What's the location that has a total of 149?", "context": "CREATE TABLE table_name_28 (location VARCHAR, total_score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_73 WHERE state = \"berlin\"", "question": "Who is the home team for the stadium located in Berlin?", "context": "CREATE TABLE table_name_73 (home_team VARCHAR, state VARCHAR)"}, {"answer": "SELECT MIN(f_laps) FROM table_name_17 WHERE position = \"5th\"", "question": "What is the lowest number of f/laps in the 5th position?", "context": "CREATE TABLE table_name_17 (f_laps INTEGER, position VARCHAR)"}, {"answer": "SELECT MAX(podiums) FROM table_name_62 WHERE season < 2008 AND position = \"5th\" AND f_laps > 0", "question": "What is the highest number of podiums before 2008 with a 5th position and more than 0 f/laps?", "context": "CREATE TABLE table_name_62 (podiums INTEGER, f_laps VARCHAR, season VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(f_laps) FROM table_name_97 WHERE podiums > 4 AND races > 14", "question": "What is the lowest number of f/laps with more than 4 podiums and more than 14 races?", "context": "CREATE TABLE table_name_97 (f_laps INTEGER, podiums VARCHAR, races VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_72 WHERE races > 14 AND podiums > 4", "question": "What is the earliest season with more than 14 races and more than 4 podiums?", "context": "CREATE TABLE table_name_72 (season INTEGER, races VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT COUNT(poles) FROM table_name_43 WHERE wins < 0", "question": "What is the total number of poles with less than 0 wins?", "context": "CREATE TABLE table_name_43 (poles VARCHAR, wins INTEGER)"}, {"answer": "SELECT MIN(draw) FROM table_name_74 WHERE artist = \"anastasia prikhodko\" AND place > 1", "question": "What's the smallest draw that has a place bigger more than 1 and Anastasia Prikhodko as the artist?", "context": "CREATE TABLE table_name_74 (draw INTEGER, artist VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_29 WHERE result = \"10%\"", "question": "What's the draw having the result of 10%?", "context": "CREATE TABLE table_name_29 (draw INTEGER, result VARCHAR)"}, {"answer": "SELECT AVG(tries_for) FROM table_name_90 WHERE points_for < 117 AND tries_against < 48", "question": "What is the average tries for less than 117 points and less than 48 tries against?", "context": "CREATE TABLE table_name_90 (tries_for INTEGER, points_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT AVG(2008) FROM table_name_56 WHERE city = \"durban\"", "question": "Which 2008 has a City of durban?", "context": "CREATE TABLE table_name_56 (city VARCHAR)"}, {"answer": "SELECT AVG(2008) FROM table_name_20 WHERE airport = \"hurghada international airport\"", "question": "Which 2008 has an Airport of hurghada international airport?", "context": "CREATE TABLE table_name_20 (airport VARCHAR)"}, {"answer": "SELECT AVG(2008) FROM table_name_74 WHERE airport = \"julius nyerere international airport\"", "question": "Which 2008 has an Airport of julius nyerere international airport?", "context": "CREATE TABLE table_name_74 (airport VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_95 WHERE opened < 1937 AND region = \"champagne-ardenne\"", "question": "What capacity opened lessed than 1937 and is located in the region of champagne-ardenne?", "context": "CREATE TABLE table_name_95 (capacity VARCHAR, opened VARCHAR, region VARCHAR)"}, {"answer": "SELECT COUNT(opened) FROM table_name_49 WHERE stadium = \"stade de la mosson\" AND capacity > 32 OFFSET 939", "question": "What total number of opened has a stadium of stade de la mosson and is larger than 32,939 capacity?", "context": "CREATE TABLE table_name_49 (opened VARCHAR, stadium VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT song FROM table_name_39 WHERE place > 7 AND points > 13 AND draw = 5", "question": "Which song has a place greater than 7, more than 13 points, and draw of 5?", "context": "CREATE TABLE table_name_39 (song VARCHAR, draw VARCHAR, place VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_21 WHERE artist = \"catcat\" AND draw > 2", "question": "How many points does catcat have with more than 2 draws?", "context": "CREATE TABLE table_name_21 (points INTEGER, artist VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_58 WHERE english_translation = \"lullaby for my beloved\"", "question": "Which Place has an English translation of lullaby for my beloved?", "context": "CREATE TABLE table_name_58 (place INTEGER, english_translation VARCHAR)"}, {"answer": "SELECT place FROM table_name_41 WHERE language = \"croatian\"", "question": "Where is Croatian spoken?", "context": "CREATE TABLE table_name_41 (place VARCHAR, language VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_64 WHERE club = \"south warrnambool\" AND wins > 8", "question": "When South warrnambool has more than 8 wins, what is the least amount of losses?", "context": "CREATE TABLE table_name_64 (losses INTEGER, club VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_77 WHERE club = \"cobden\" AND against > 1487", "question": "Cobden has more than 1487 against and what average of losses?", "context": "CREATE TABLE table_name_77 (losses INTEGER, club VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_31 WHERE notes = \"fb\" AND time = \"7:20.32\"", "question": "What is the Rank of the Player with a Time of 7:20.32 and Notes of FB?", "context": "CREATE TABLE table_name_31 (rank VARCHAR, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_77 WHERE rank = 2", "question": "What is the Time of the Player with a Rank of 2?", "context": "CREATE TABLE table_name_77 (time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT country FROM table_name_78 WHERE notes = \"fa\" AND athlete = \"alan campbell\"", "question": "What is Alan Campbell's Country with Notes of FA?", "context": "CREATE TABLE table_name_78 (country VARCHAR, notes VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT result FROM table_name_21 WHERE coach = \"dave farrish\" AND division = \"southwest\" AND season = \"2000-01\"", "question": "What was the result of the 2000-01 season in which the IceGators were part of the Southwest division and were coached by Dave Farrish?", "context": "CREATE TABLE table_name_21 (result VARCHAR, season VARCHAR, coach VARCHAR, division VARCHAR)"}, {"answer": "SELECT division FROM table_name_24 WHERE coach = \"todd gordon\"", "question": "In which division were the IceGators when coached by Todd Gordon?", "context": "CREATE TABLE table_name_24 (division VARCHAR, coach VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_79 WHERE lane = 1", "question": "What is the average rank of a swimmer in lane 1?", "context": "CREATE TABLE table_name_79 (rank INTEGER, lane VARCHAR)"}, {"answer": "SELECT name FROM table_name_87 WHERE lane = 6", "question": "What is the name of the swimmer in lane 6?", "context": "CREATE TABLE table_name_87 (name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_93 WHERE medal = \"bronze\"", "question": "What is the earliest date for the bronze medal?", "context": "CREATE TABLE table_name_93 (date INTEGER, medal VARCHAR)"}, {"answer": "SELECT name FROM table_name_30 WHERE sport = \"athletics\" AND date < 16", "question": "Who had the sport of athletics on a date earlier than 16?", "context": "CREATE TABLE table_name_30 (name VARCHAR, sport VARCHAR, date VARCHAR)"}, {"answer": "SELECT sport FROM table_name_69 WHERE name = \"wolfgang schattauer\"", "question": "what is the sport for wolfgang schattauer?", "context": "CREATE TABLE table_name_69 (sport VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(date) FROM table_name_26 WHERE sport = \"athletics\" AND medal = \"bronze\"", "question": "what is the date when the medal is bronze for athletics?", "context": "CREATE TABLE table_name_26 (date INTEGER, sport VARCHAR, medal VARCHAR)"}, {"answer": "SELECT gold FROM table_name_65 WHERE year > 1970 AND place = \"milan\"", "question": "What gold has a year after 1970, with milan as the place?", "context": "CREATE TABLE table_name_65 (gold VARCHAR, year VARCHAR, place VARCHAR)"}, {"answer": "SELECT MAX(opened) FROM table_name_80 WHERE system = \"c-train\" AND daily_ridership < 269 OFFSET 600", "question": "Which Opened has a System of c-train, and a Daily ridership smaller than 269,600?", "context": "CREATE TABLE table_name_80 (opened INTEGER, system VARCHAR, daily_ridership VARCHAR)"}, {"answer": "SELECT stations FROM table_name_64 WHERE city = \"vancouver, bc\"", "question": "Which Stations are in vancouver, bc?", "context": "CREATE TABLE table_name_64 (stations VARCHAR, city VARCHAR)"}, {"answer": "SELECT category FROM table_name_11 WHERE stations = \"5\"", "question": "Which category has 5 stations?", "context": "CREATE TABLE table_name_11 (category VARCHAR, stations VARCHAR)"}, {"answer": "SELECT MAX(opened) FROM table_name_3 WHERE category = \"diesel light rail\"", "question": "Which Opened has a Category of diesel light rail?", "context": "CREATE TABLE table_name_3 (opened INTEGER, category VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_93 WHERE round = \"group e\"", "question": "What is the highest attendance among Group E games?", "context": "CREATE TABLE table_name_93 (attendance INTEGER, round VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_33 WHERE points = 16 AND draws < 4", "question": "How many total games were played by the team which had a total of 16 points and less than 4 draws?", "context": "CREATE TABLE table_name_33 (played INTEGER, points VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(scored) FROM table_name_83 WHERE draws < 5 AND wins = 8 AND points < 27", "question": "How many points are in the scored category for the team that has less than 5 draws, 8 total wins, and total overall points less than 27?", "context": "CREATE TABLE table_name_83 (scored VARCHAR, points VARCHAR, draws VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(scored) FROM table_name_41 WHERE played < 18", "question": "How many points are in the scored category for the team that played less than 18 games?", "context": "CREATE TABLE table_name_41 (scored INTEGER, played INTEGER)"}, {"answer": "SELECT SUM(scored) FROM table_name_38 WHERE points = 8 AND position < 10", "question": "How many points are in the scored category for the team that has 8 total points and a position that is less than 10?", "context": "CREATE TABLE table_name_38 (scored INTEGER, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_6 WHERE conceded = 25 AND wins > 6", "question": "How many loses does the team have that conceded 25 and won more than 6 games?", "context": "CREATE TABLE table_name_6 (losses INTEGER, conceded VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_17 WHERE scored < 25 AND points = 20 AND position > 8", "question": "Out of the teams that have scored lower than 25 points, have a total of points less than 20, and a position larger than 8, which has the lowest amount of draws?", "context": "CREATE TABLE table_name_17 (draws INTEGER, position VARCHAR, scored VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_97 WHERE silver < 3 AND rank < 31 AND gold = 5", "question": "How many bronze medals did the nation have that had less than 3 silver, 5 gold and ranked better than 31?", "context": "CREATE TABLE table_name_97 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_27 WHERE gold < 39 AND silver = 3 AND rank < 35 AND nation = \"spain\"", "question": "What's the bronze medal count of Spain that has less than 39 Gold, 3 silver, and a rank better than 35?", "context": "CREATE TABLE table_name_27 (bronze VARCHAR, nation VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_62 WHERE gold > 0 AND bronze > 6 AND nation = \"ussr\" AND silver < 85", "question": "What's the total amount of USSR that has more than 0 gold, less than 85 silver and more than 6 bronze?", "context": "CREATE TABLE table_name_62 (total INTEGER, silver VARCHAR, nation VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_55 WHERE gold < 0", "question": "What's the lowest bronze medal amount that has fewer than 0 gold?", "context": "CREATE TABLE table_name_55 (bronze INTEGER, gold INTEGER)"}, {"answer": "SELECT SUM(total) FROM table_name_2 WHERE nation = \"bulgaria\" AND bronze > 13", "question": "What's the total amount of Bulgaria that has more than 13 bronze?", "context": "CREATE TABLE table_name_2 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_81 WHERE week > 5 AND opponent = \"washington redskins\"", "question": "what is the average attendance when the week is higher than 5 and the opponent is washington redskins?", "context": "CREATE TABLE table_name_81 (attendance INTEGER, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT country FROM table_name_88 WHERE place = \"t6\" AND player = \"sean o'hair\"", "question": "What country has t6 as the place, with sean o'hair as the player?", "context": "CREATE TABLE table_name_88 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_91 WHERE score = 65", "question": "What to par has 65 as the score?", "context": "CREATE TABLE table_name_91 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE country = \"south africa\"", "question": "What score has south africa as the country?", "context": "CREATE TABLE table_name_92 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT time FROM table_name_55 WHERE rank = 6", "question": "What is the Time of the Athlete with a Rank of 6?", "context": "CREATE TABLE table_name_55 (time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(longitude) FROM table_name_87 WHERE county = \"nelson\" AND latitude > 47.980183", "question": "How much Longitude has a County of nelson, and a Latitude larger than 47.980183?", "context": "CREATE TABLE table_name_87 (longitude INTEGER, county VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT MIN(water__sqmi_) FROM table_name_13 WHERE county = \"benson\" AND ansi_code < 1759243", "question": "Which Water (sqmi) has a County of benson, and an ANSI code smaller than 1759243?", "context": "CREATE TABLE table_name_13 (water__sqmi_ INTEGER, county VARCHAR, ansi_code VARCHAR)"}, {"answer": "SELECT AVG(pop__2010_) FROM table_name_21 WHERE ansi_code < 1036864 AND longitude > -98.46611 AND land___sqmi__ < 36.238 AND latitude < 48.144102", "question": "Which Pop (2010) has an ANSI code smaller than 1036864, and a Longitude larger than -98.46611, and a Land (sqmi) smaller than 36.238, and a Latitude smaller than 48.144102?", "context": "CREATE TABLE table_name_21 (pop__2010_ INTEGER, latitude VARCHAR, land___sqmi__ VARCHAR, ansi_code VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_77 WHERE date = \"november 5, 1961\"", "question": "Who did the Eagle's play on November 5, 1961?", "context": "CREATE TABLE table_name_77 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT years FROM table_name_62 WHERE character = \"joyce couwenberg\"", "question": "What years have joyce couwenberg as the character?", "context": "CREATE TABLE table_name_62 (years VARCHAR, character VARCHAR)"}, {"answer": "SELECT actor FROM table_name_91 WHERE soap_opera = \"goede tijden, slechte tijden\" AND duration = \"11 years\" AND character = \"rosa gonzalez\"", "question": "What actor has goede tijden, slechte tijden, as the soap opera, 11 years as the duration, with rosa gonzalez as the character?", "context": "CREATE TABLE table_name_91 (actor VARCHAR, character VARCHAR, soap_opera VARCHAR, duration VARCHAR)"}, {"answer": "SELECT actor FROM table_name_47 WHERE soap_opera = \"onderweg naar morgen\" AND character = \"aafke couwenberg\"", "question": "What actor has onderweg naar morgen, as the soap opera, with aafke couwenberg as the character?", "context": "CREATE TABLE table_name_47 (actor VARCHAR, soap_opera VARCHAR, character VARCHAR)"}, {"answer": "SELECT duration FROM table_name_60 WHERE character = \"rosa gonzalez\"", "question": "What duration has rosa gonzalez as the character?", "context": "CREATE TABLE table_name_60 (duration VARCHAR, character VARCHAR)"}, {"answer": "SELECT team FROM table_name_77 WHERE position = \"fullback\"", "question": "What is the Team of the Fullback Player?", "context": "CREATE TABLE table_name_77 (team VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_name_57 WHERE position = \"halfback\"", "question": "What is the College of the Halfback Player?", "context": "CREATE TABLE table_name_57 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_33 WHERE notes = \"58.25 m\" AND competition = \"world championships\"", "question": "Which Venue has Notes of 58.25 m, and a Competition of world championships?", "context": "CREATE TABLE table_name_33 (venue VARCHAR, notes VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_13 WHERE year < 2009 AND notes = \"56.16 m\"", "question": "Which Competition has a Year smaller than 2009, and Notes of 56.16 m?", "context": "CREATE TABLE table_name_13 (competition VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT venue FROM table_name_70 WHERE notes = \"58.48 m\"", "question": "Which Venue has Notes of 58.48 m?", "context": "CREATE TABLE table_name_70 (venue VARCHAR, notes VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_35 WHERE venue = \"bydgoszcz, poland\"", "question": "Which Year has a Venue of bydgoszcz, poland?", "context": "CREATE TABLE table_name_35 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_41 WHERE position = \"17th (q)\"", "question": "How many years have a Position of 17th (q)?", "context": "CREATE TABLE table_name_41 (year VARCHAR, position VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE home_team = \"queens park rangers\"", "question": "What is the score when the home team is queens park rangers?", "context": "CREATE TABLE table_name_29 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE away_team = \"bolton wanderers\"", "question": "what is the date when the away team is bolton wanderers?", "context": "CREATE TABLE table_name_66 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE away_team = \"tottenham hotspur\"", "question": "what is the score when the away team is tottenham hotspur?", "context": "CREATE TABLE table_name_29 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_34 WHERE away_team = \"ipswich town\"", "question": "who is the home team when the away team is ipswich town?", "context": "CREATE TABLE table_name_34 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_10 WHERE home_team = \"hartlepool united\"", "question": "who is the away team when the home team is hartlepool united?", "context": "CREATE TABLE table_name_10 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_24 WHERE award = \"best feature film\" AND organization = \"macabro film festival\"", "question": "What was the Best Feature Film at the Macabro Film Festival?", "context": "CREATE TABLE table_name_24 (result VARCHAR, award VARCHAR, organization VARCHAR)"}, {"answer": "SELECT rank FROM table_name_85 WHERE album = \"sean kingston\"", "question": "what is the rank when the album is sean kingston?", "context": "CREATE TABLE table_name_85 (rank VARCHAR, album VARCHAR)"}, {"answer": "SELECT COUNT(sales) FROM table_name_49 WHERE rank < 6 AND certification = \"2x platinum\" AND peak_position = \"2\"", "question": "how many times is the rank less than 6, certification 2x platinum and the peak position 2?", "context": "CREATE TABLE table_name_49 (sales VARCHAR, peak_position VARCHAR, rank VARCHAR, certification VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_82 WHERE peak_position = \"2\" AND certification = \"platinum\" AND album = \"my december\"", "question": "what is the lowest rank when the peak position is 2, certification is platinum and the album is my december?", "context": "CREATE TABLE table_name_82 (rank INTEGER, album VARCHAR, peak_position VARCHAR, certification VARCHAR)"}, {"answer": "SELECT COUNT(sales) FROM table_name_88 WHERE artist = \"kelly clarkson\"", "question": "What is the sales when the artist is kelly clarkson?", "context": "CREATE TABLE table_name_88 (sales VARCHAR, artist VARCHAR)"}, {"answer": "SELECT liberal FROM table_name_23 WHERE new_democratic = \"36%\" AND dates = \"august 2008\"", "question": "What percentage of people polled aligned with the Liberal party according to the August 2008 poll that reported 36% aligning with New Democratic party?", "context": "CREATE TABLE table_name_23 (liberal VARCHAR, new_democratic VARCHAR, dates VARCHAR)"}, {"answer": "SELECT liberal FROM table_name_36 WHERE polling_firm = \"corporate research associates\" AND prog_cons = \"32%\" AND dates = \"august 2007\"", "question": "According to the August 2007 poll by the Corporate Research Associates that reported 32% Prog. Cons., what percentage aligned with the Liberal party?", "context": "CREATE TABLE table_name_36 (liberal VARCHAR, dates VARCHAR, polling_firm VARCHAR, prog_cons VARCHAR)"}, {"answer": "SELECT polling_firm FROM table_name_42 WHERE dates = \"august 2006\"", "question": "Which firm conducted a poll in August 2006?", "context": "CREATE TABLE table_name_42 (polling_firm VARCHAR, dates VARCHAR)"}, {"answer": "SELECT prog_cons FROM table_name_63 WHERE polling_firm = \"corporate research associates\" AND liberal = \"31%\" AND dates = \"february 2009\"", "question": "According to the February 2009 poll by the Corporate Research Associates that reported 31% Liberal., what percentage aligned with the Prog. Cons. party?", "context": "CREATE TABLE table_name_63 (prog_cons VARCHAR, dates VARCHAR, polling_firm VARCHAR, liberal VARCHAR)"}, {"answer": "SELECT liberal FROM table_name_37 WHERE new_democratic = \"36%\" AND dates = \"august 2008\"", "question": "According to the August 2008 poll that reported 36% New Demcratic, what percentage aligned with the Liberal party?", "context": "CREATE TABLE table_name_37 (liberal VARCHAR, new_democratic VARCHAR, dates VARCHAR)"}, {"answer": "SELECT record FROM table_name_51 WHERE nationality = \"barbados\"", "question": "What's the record of Barbados?", "context": "CREATE TABLE table_name_51 (record VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT event FROM table_name_17 WHERE nationality = \"guadeloupe\"", "question": "What's the event of Guadeloupe?", "context": "CREATE TABLE table_name_17 (event VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE games = \"2010 georgetown\" AND event = \"discus throw\"", "question": "What's the date of the discus throw in 2010 Georgetown?", "context": "CREATE TABLE table_name_75 (date VARCHAR, games VARCHAR, event VARCHAR)"}, {"answer": "SELECT AVG(staterooms) FROM table_name_28 WHERE guests > 210", "question": "What is the number of staterooms when guests was larger than 210?", "context": "CREATE TABLE table_name_28 (staterooms INTEGER, guests INTEGER)"}, {"answer": "SELECT AVG(guests) FROM table_name_46 WHERE ship_name = \"viking ingvar\" AND year_built < 1990", "question": "What is the number of guests for the Viking Ingvar, built earlier than 1990?", "context": "CREATE TABLE table_name_46 (guests INTEGER, ship_name VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT MIN(year_built) FROM table_name_47 WHERE last_refurbished < 2013", "question": "What is the earliest year built for the ship refurbished earlier than 2013?", "context": "CREATE TABLE table_name_47 (year_built INTEGER, last_refurbished INTEGER)"}, {"answer": "SELECT gene FROM table_name_42 WHERE route_of_administration = \"intramuscular\" AND status = \"ongoing\"", "question": "Which gene is ongoing and has an intramuscular route of administration?", "context": "CREATE TABLE table_name_42 (gene VARCHAR, route_of_administration VARCHAR, status VARCHAR)"}, {"answer": "SELECT gene FROM table_name_28 WHERE subject_number = \"21\"", "question": "Which gene has the subject number 21?", "context": "CREATE TABLE table_name_28 (gene VARCHAR, subject_number VARCHAR)"}, {"answer": "SELECT route_of_administration FROM table_name_4 WHERE status = \"several ongoing and complete\"", "question": "What is the route of administration that has several ongoing and complete?", "context": "CREATE TABLE table_name_4 (route_of_administration VARCHAR, status VARCHAR)"}, {"answer": "SELECT status FROM table_name_98 WHERE route_of_administration = \"intramuscular\" AND gene = \"aat\"", "question": "What is the statue of the aat gene, which has an intramuscular route of administration?", "context": "CREATE TABLE table_name_98 (status VARCHAR, route_of_administration VARCHAR, gene VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_18 WHERE losses < 2 AND position < 4 AND wins > 4", "question": "What is the fewest draws for teams having under 2 losses, more than 4 wins, and a position under 4?", "context": "CREATE TABLE table_name_18 (draws INTEGER, wins VARCHAR, losses VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_19 WHERE wins < 2 AND position < 11 AND points > 6", "question": "What is the most losses for teams with under 2 wins, more than 6 points, and a position under 11?", "context": "CREATE TABLE table_name_19 (losses INTEGER, points VARCHAR, wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_7 WHERE losses = 1 AND conceded > 9", "question": "What is the total number of positions having 1 loss and more than 9 conceded?", "context": "CREATE TABLE table_name_7 (position VARCHAR, losses VARCHAR, conceded VARCHAR)"}, {"answer": "SELECT venue FROM table_name_93 WHERE year < 2009 AND result = \"1st\"", "question": "What is the venue of the competition with a result of 1st before 2009?", "context": "CREATE TABLE table_name_93 (venue VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_35 WHERE event = \"400 m hurdles\" AND tournament = \"olympic games\"", "question": "What was the venue of the 400 M Hurdles for the Olympic Games?", "context": "CREATE TABLE table_name_35 (venue VARCHAR, event VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_71 WHERE venue = \"santiago, chile\" AND event = \"400 m hurdles\"", "question": "What was the earliest year for the 400 M Hurdles in Santiago, Chile?", "context": "CREATE TABLE table_name_71 (year INTEGER, venue VARCHAR, event VARCHAR)"}, {"answer": "SELECT time FROM table_name_85 WHERE country = \"belgium\"", "question": "What time does Belgium have?", "context": "CREATE TABLE table_name_85 (time VARCHAR, country VARCHAR)"}, {"answer": "SELECT notes FROM table_name_10 WHERE rank = 6", "question": "Rank 6 has what notes?", "context": "CREATE TABLE table_name_10 (notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_6 WHERE notes = \"fb\" AND rank < 5", "question": "Who has less than 5 rank and notes of fb?", "context": "CREATE TABLE table_name_6 (athlete VARCHAR, notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT time FROM table_name_16 WHERE rank = 6", "question": "Rank of 6 has what time?", "context": "CREATE TABLE table_name_16 (time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_99 WHERE surface = \"carpet\"", "question": "What tournament is played on a carpet surface?", "context": "CREATE TABLE table_name_99 (tournament VARCHAR, surface VARCHAR)"}, {"answer": "SELECT gothic_letter FROM table_name_4 WHERE proto_germanic_origin = \"/\u0278/; /b/\"", "question": "Which Gothic Letter has Proto-Germanic origin of /\u0278/; /b/?", "context": "CREATE TABLE table_name_4 (gothic_letter VARCHAR, proto_germanic_origin VARCHAR)"}, {"answer": "SELECT proto_germanic_origin FROM table_name_2 WHERE sound__phoneme_ = \"/[[|j]]/\"", "question": "What is the Proto-Germanic origin of the phoneme /[[|j]]/?", "context": "CREATE TABLE table_name_2 (proto_germanic_origin VARCHAR, sound__phoneme_ VARCHAR)"}, {"answer": "SELECT roman FROM table_name_79 WHERE sound__allophone_ = \"[[[|k]]]\"", "question": "What is the Roman entry for the allophone of [[[|k]]]?", "context": "CREATE TABLE table_name_79 (roman VARCHAR, sound__allophone_ VARCHAR)"}, {"answer": "SELECT proto_germanic_origin FROM table_name_15 WHERE sound__allophone_ = \"[[[|k]]]\"", "question": "What is the Proto-Germanic origin associated with an allophone of [[[|k]]]?", "context": "CREATE TABLE table_name_15 (proto_germanic_origin VARCHAR, sound__allophone_ VARCHAR)"}, {"answer": "SELECT roman FROM table_name_27 WHERE proto_germanic_origin = \"/w/\"", "question": "The Proto-Germanic origin of /w/ is associated with what Roman entry?", "context": "CREATE TABLE table_name_27 (roman VARCHAR, proto_germanic_origin VARCHAR)"}, {"answer": "SELECT sound__allophone_ FROM \"t\" AS able_name_50 WHERE roman = \"t\"", "question": "The Roman value of t is associated with what allophone?", "context": "CREATE TABLE t (Id VARCHAR)"}, {"answer": "SELECT location FROM table_name_93 WHERE mascot = \"mustangs\"", "question": "Where is the school located that has mustangs as a mascot?", "context": "CREATE TABLE table_name_93 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT SUM(enrollment) FROM table_name_30 WHERE school = \"highland\"", "question": "What is the enrollment for the school Highland?", "context": "CREATE TABLE table_name_30 (enrollment INTEGER, school VARCHAR)"}, {"answer": "SELECT nominee_s_ FROM table_name_69 WHERE year < 2005 AND result = \"won\"", "question": "Which nominees won before year 2005?", "context": "CREATE TABLE table_name_69 (nominee_s_ VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT episode FROM table_name_10 WHERE nominee_s_ = \"gary murphy and neil thompson\" AND year = 2003", "question": "Which episode in year 2003 that have Gary Murphy and Neil Thompson?", "context": "CREATE TABLE table_name_10 (episode VARCHAR, nominee_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_32 WHERE result = \"nominated\"", "question": "What is the average year with nominated result?", "context": "CREATE TABLE table_name_32 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT MIN(fa_cup_goals) FROM table_name_6 WHERE total_goals < 4 AND name = \"terry poole\"", "question": "What is the lowest FA cup goals that have total goals less than 4, with Terry poole as the name?", "context": "CREATE TABLE table_name_6 (fa_cup_goals INTEGER, total_goals VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(fa_cup_goals) FROM table_name_41 WHERE name = \"jimmy nicholson\" AND league_cup_goals > 0", "question": "How many FA cup goals have Jimmy Nicholson as the name, and league cup goals greater than 0?", "context": "CREATE TABLE table_name_41 (fa_cup_goals VARCHAR, name VARCHAR, league_cup_goals VARCHAR)"}, {"answer": "SELECT points_against___tests__ FROM table_name_16 WHERE year_s_ = 2001 AND games_won___tests__ = \"5 (3)\"", "question": "What are the points against for 2001, and games won of 5 (3)?", "context": "CREATE TABLE table_name_16 (points_against___tests__ VARCHAR, year_s_ VARCHAR, games_won___tests__ VARCHAR)"}, {"answer": "SELECT points_against___tests__ FROM table_name_16 WHERE year_s_ = 2000 AND games_won___tests__ = \"4 (1)\"", "question": "What are the points against for 2000, when games won is 4 (1)?", "context": "CREATE TABLE table_name_16 (points_against___tests__ VARCHAR, year_s_ VARCHAR, games_won___tests__ VARCHAR)"}, {"answer": "SELECT games_lost___tests__ FROM table_name_73 WHERE games_played___tests__ = \"2\" AND year_s_ < 1999 AND points_for___tests__ = \"24\"", "question": "What is the games lost when games played was 2, year was earlier than 1999, and points for was 24?", "context": "CREATE TABLE table_name_73 (games_lost___tests__ VARCHAR, points_for___tests__ VARCHAR, games_played___tests__ VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT MIN(year_s_) FROM table_name_29 WHERE games_drawn___tests__ = \"0\" AND points_against___tests__ = \"86\"", "question": "What is the earliest year when games drawn was 0, points against are 86?", "context": "CREATE TABLE table_name_29 (year_s_ INTEGER, games_drawn___tests__ VARCHAR, points_against___tests__ VARCHAR)"}, {"answer": "SELECT tournament_or_series FROM table_name_15 WHERE played_in = \"england\" AND games_played___tests__ = \"4\" AND points_for___tests__ = \"121\"", "question": "What tournament or series was played in England, when games played was 4, points for were 121?", "context": "CREATE TABLE table_name_15 (tournament_or_series VARCHAR, points_for___tests__ VARCHAR, played_in VARCHAR, games_played___tests__ VARCHAR)"}, {"answer": "SELECT average_ratings FROM table_name_26 WHERE romaji_title = \"mendol\"", "question": "What's the average rating when the Romanji title was Mendol?", "context": "CREATE TABLE table_name_26 (average_ratings VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT average_ratings FROM table_name_76 WHERE tv_station = \"tbs\" AND episodes = \"10\" AND japanese_title = \"scandal\"", "question": "What's the ratings of TBS of Episode 10 and had a Japanese title of Scandal?", "context": "CREATE TABLE table_name_76 (average_ratings VARCHAR, japanese_title VARCHAR, tv_station VARCHAR, episodes VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_24 WHERE romaji_title = \"atsu-hime\"", "question": "What's the Japanese title when the Romaji Title was Atsu-Hime?", "context": "CREATE TABLE table_name_24 (japanese_title VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_13 WHERE romaji_title = \"ry\u016bsei no kizuna\"", "question": "What's the Japanese Title when the Romaji title was Ry\u016bsei No Kizuna?", "context": "CREATE TABLE table_name_13 (japanese_title VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT location FROM table_name_68 WHERE position_in_2012_13 = \"13th, third division\"", "question": "When the position in 2012-13 is 13th, third division what is the location?", "context": "CREATE TABLE table_name_68 (location VARCHAR, position_in_2012_13 VARCHAR)"}, {"answer": "SELECT location FROM table_name_61 WHERE club = \"telecom\"", "question": "What is the location for a club of telecom?", "context": "CREATE TABLE table_name_61 (location VARCHAR, club VARCHAR)"}, {"answer": "SELECT home_ground FROM table_name_24 WHERE position_in_2012_13 = \"7th, third division\"", "question": "When the position in 2012-12 is 7th, third division what is the home ground?", "context": "CREATE TABLE table_name_24 (home_ground VARCHAR, position_in_2012_13 VARCHAR)"}, {"answer": "SELECT club FROM table_name_95 WHERE league_division = \"fourth division\"", "question": "What club has a league/division of fourth division?", "context": "CREATE TABLE table_name_95 (club VARCHAR, league_division VARCHAR)"}, {"answer": "SELECT club FROM table_name_27 WHERE position_in_2012_13 = \"4th, second division\"", "question": "When the position in 2012-23 is 4th, second division what is the club?", "context": "CREATE TABLE table_name_27 (club VARCHAR, position_in_2012_13 VARCHAR)"}, {"answer": "SELECT location FROM table_name_2 WHERE home_ground = \"n/a\" AND position_in_2012_13 = \"13th, third division\"", "question": "What location has a home ground of n/a, and position in 2012-13 of 13th, third division?", "context": "CREATE TABLE table_name_2 (location VARCHAR, home_ground VARCHAR, position_in_2012_13 VARCHAR)"}, {"answer": "SELECT usage FROM table_name_60 WHERE engine = \"f136e\"", "question": "What is the usage for the f136e engline?", "context": "CREATE TABLE table_name_60 (usage VARCHAR, engine VARCHAR)"}, {"answer": "SELECT usage FROM table_name_98 WHERE engine = \"f136fb\"", "question": "What is the for the f136fb engine?", "context": "CREATE TABLE table_name_98 (usage VARCHAR, engine VARCHAR)"}, {"answer": "SELECT hometown_school FROM table_name_40 WHERE position = \"of\" AND player = \"mike white\"", "question": "What is the hometown of Mike White?", "context": "CREATE TABLE table_name_40 (hometown_school VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_98 WHERE pick < 13 AND position = \"p\" AND hometown_school = \"georgia tech\"", "question": "Which player was picked before 13, in a P position, and is from Georgia Tech?", "context": "CREATE TABLE table_name_98 (player VARCHAR, hometown_school VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT season FROM table_name_52 WHERE ufl_cup = \"tbd\"", "question": "Which Season has a UFL Cup of tbd?", "context": "CREATE TABLE table_name_52 (season VARCHAR, ufl_cup VARCHAR)"}, {"answer": "SELECT pff_nmcc FROM table_name_50 WHERE afc_pc = \"dnq\"", "question": "Which PFF NMCC has a AFC PC of dnq?", "context": "CREATE TABLE table_name_50 (pff_nmcc VARCHAR, afc_pc VARCHAR)"}, {"answer": "SELECT season FROM table_name_42 WHERE ufl_cup = \"quarter-finals\"", "question": "Which Season has a UFL Cup of quarter-finals?", "context": "CREATE TABLE table_name_42 (season VARCHAR, ufl_cup VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_7 WHERE driver = \"ryan hunter-reay\" AND points > 24", "question": "What is the sum of the grid of driver ryan hunter-reay, who has more than 24 points?", "context": "CREATE TABLE table_name_7 (grid INTEGER, driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_95 WHERE driver = \"enrique bernoldi (r)\"", "question": "What is the total number of points of driver enrique bernoldi (r)?", "context": "CREATE TABLE table_name_95 (points VARCHAR, driver VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_93 WHERE result = \"w 24\u201317\"", "question": "Which TV Time has a Result of w 24\u201317?", "context": "CREATE TABLE table_name_93 (tv_time VARCHAR, result VARCHAR)"}, {"answer": "SELECT week FROM table_name_44 WHERE tv_time = \"cbs 1:00pm\" AND attendance = \"72,714\"", "question": "Which Week has a TV Time of cbs 1:00pm, and an Attendance of 72,714?", "context": "CREATE TABLE table_name_44 (week VARCHAR, tv_time VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_23 WHERE date = \"january 2, 2005\"", "question": "Which TV Time has a Date of january 2, 2005?", "context": "CREATE TABLE table_name_23 (tv_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_50 WHERE location = \"orillia, on\"", "question": "What was the original name of the restaurant located in Orillia, ON?", "context": "CREATE TABLE table_name_50 (original_name VARCHAR, location VARCHAR)"}, {"answer": "SELECT fate_and_location FROM table_name_3 WHERE ship = \"ringstad\"", "question": "What was the fate and location of the Ringstad?", "context": "CREATE TABLE table_name_3 (fate_and_location VARCHAR, ship VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE loss = \"kiprusoff (2\u20132)\"", "question": "What is the Score of the game with a Loss of Kiprusoff (2\u20132)?", "context": "CREATE TABLE table_name_50 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT partner FROM table_name_52 WHERE date = \"may 16, 2004\"", "question": "Who was the partner on May 16, 2004?", "context": "CREATE TABLE table_name_52 (partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_2 WHERE date = \"march 14, 2008\"", "question": "Who was the match played against in the final on March 14, 2008?", "context": "CREATE TABLE table_name_2 (opponents_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT title FROM table_name_83 WHERE production_number = \"1039\"", "question": "What is the title of the production with a number of 1039?", "context": "CREATE TABLE table_name_83 (title VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT title FROM table_name_48 WHERE production_number = \"1023\"", "question": "What is the title of the film with a production number of 1023?", "context": "CREATE TABLE table_name_48 (title VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_34 WHERE silver < 2 AND nation = \"zimbabwe\" AND bronze < 1", "question": "What is the lowest gold that has a silver less than 2, Zimbabwe as the nation, and a bronze less than 1?", "context": "CREATE TABLE table_name_34 (gold INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_32 WHERE cardinalatial_order_and_title = \"cardinal-bishop of albano\"", "question": "What's the nationality of Cardinal-Bishop of Albano?", "context": "CREATE TABLE table_name_32 (nationality VARCHAR, cardinalatial_order_and_title VARCHAR)"}, {"answer": "SELECT notes FROM table_name_95 WHERE cardinalatial_order_and_title = \"cardinal-deacon of s. maria in portico\"", "question": "What are the notes of Cardinal-Deacon of S. Maria in Portico?", "context": "CREATE TABLE table_name_95 (notes VARCHAR, cardinalatial_order_and_title VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE constituency_number = \"1\"", "question": "Which Name has a Constituency number of 1?", "context": "CREATE TABLE table_name_61 (name VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT COUNT(number_of_electorates__2009_) FROM table_name_94 WHERE district = \"sheopur\" AND constituency_number = \"1\"", "question": "Which Number of electorates (2009) has a District of sheopur, and a Constituency number of 1?", "context": "CREATE TABLE table_name_94 (number_of_electorates__2009_ VARCHAR, district VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT name FROM table_name_96 WHERE reserved_for___sc___st__none_ = \"none\" AND constituency_number = \"7\"", "question": "Which Name has a Reserved for of none, and a Constituency number of 7?", "context": "CREATE TABLE table_name_96 (name VARCHAR, reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE venue = \"sultan qaboos sports complex, muscat\"", "question": "The game played at Sultan Qaboos Sports Complex, Muscat had what score?", "context": "CREATE TABLE table_name_99 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_96 WHERE place = \"t3\" AND country = \"england\"", "question": "What to par has t3 as the place and england as the country?", "context": "CREATE TABLE table_name_96 (to_par VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_24 WHERE games < 6 AND w_l_t = \"3-2-0\" AND season < 1948", "question": "How much Attendance has Games smaller than 6, and a W-L-T of 3-2-0, and a Season smaller than 1948?", "context": "CREATE TABLE table_name_24 (attendance INTEGER, season VARCHAR, games VARCHAR, w_l_t VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_59 WHERE w_l_t = \"5-1\" AND season < 2001 AND games < 6", "question": "Which Average that has a W-L-T of 5-1, and a Season smaller than 2001, and Games smaller than 6?", "context": "CREATE TABLE table_name_59 (average INTEGER, games VARCHAR, w_l_t VARCHAR, season VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_4 WHERE attendance = \"78,883\"", "question": "Which Opponent had an Attendance of 78,883?", "context": "CREATE TABLE table_name_4 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE attendance = \"bye\"", "question": "On what date was the attendance a bye?", "context": "CREATE TABLE table_name_44 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT week FROM table_name_59 WHERE date = \"december 21, 2003\"", "question": "Which week was the December 21, 2003 game?", "context": "CREATE TABLE table_name_59 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_96 WHERE tv_time = \"bye\"", "question": "Which opponent had a bye for the TV Time?", "context": "CREATE TABLE table_name_96 (opponent VARCHAR, tv_time VARCHAR)"}, {"answer": "SELECT arena FROM table_name_22 WHERE date = \"september 21\"", "question": "At what arena was the September 21 game?", "context": "CREATE TABLE table_name_22 (arena VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_72 WHERE arena = \"arrowhead pond of anaheim\" AND opponent = \"sharks\"", "question": "What was the record after the game against the Sharks at Arrowhead Pond of Anaheim?", "context": "CREATE TABLE table_name_72 (record VARCHAR, arena VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_19 WHERE opponent = \"sharks\"", "question": "What was the record after the game against the Sharks?", "context": "CREATE TABLE table_name_19 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT player FROM table_name_81 WHERE college = \"arizona state\"", "question": "who is the player from arizona state?", "context": "CREATE TABLE table_name_81 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_63 WHERE college = \"florida\"", "question": "what is the position of the player from florida?", "context": "CREATE TABLE table_name_63 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_20 WHERE position = \"tight end\"", "question": "what is the highest pick for the position tight end?", "context": "CREATE TABLE table_name_20 (pick INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(mpg_us_combined) FROM table_name_90 WHERE green_rating = \"e\" AND mpg_uk_combined < 42.2 AND manufacturer = \"volkswagen\" AND transmission = \"m6\"", "question": "What is the lowest MPG-US combined for a green rating of E, mpg in the UK- combined of under 42.2, manufacturer of Volkswagen, and an M6 transmission?", "context": "CREATE TABLE table_name_90 (mpg_us_combined INTEGER, transmission VARCHAR, manufacturer VARCHAR, green_rating VARCHAR, mpg_uk_combined VARCHAR)"}, {"answer": "SELECT AVG(l_100km_urban__cold_) FROM table_name_97 WHERE l_100km_extra_urban < 7.2 AND mpg_uk_combined < 39.8 AND l_100km_combined > 7.9 AND mpg_us_combined < 25.1", "question": "What is the average L/100km urban value having an L/100km extraurban under 7.2, mpg combined in the UK under 39.8, l/100km combined over 7.9, and mpg combined in the US under 25.1?", "context": "CREATE TABLE table_name_97 (l_100km_urban__cold_ INTEGER, mpg_us_combined VARCHAR, l_100km_combined VARCHAR, l_100km_extra_urban VARCHAR, mpg_uk_combined VARCHAR)"}, {"answer": "SELECT mpg_uk_urban__cold_ FROM table_name_8 WHERE fuel_type = \"diesel\" AND mpg_uk_extra_urban > 68.9 AND engine_capacity = 1422 AND l_100km_urban__cold_ > 5.1", "question": "What is the mpg-UK urban (cold) for a fuel type of diesel, extraurban MPG in the UK over 68.9, engine capacity of 1422, and L/100km urban (cold) over 5.1?", "context": "CREATE TABLE table_name_8 (mpg_uk_urban__cold_ VARCHAR, l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, fuel_type VARCHAR, mpg_uk_extra_urban VARCHAR)"}, {"answer": "SELECT green_rating FROM table_name_68 WHERE l_100km_urban__cold_ > 10.9 AND mpg_us_urban > 14.1 AND manufacturer = \"volkswagen\" AND engine_capacity < 3189", "question": "What is the green rating for the vehicle with L/100km urban (cold) over 10.9, mpg in the US (urban) over 14.1, manufacturer of Volkswagen, and engine capacity under 3189?", "context": "CREATE TABLE table_name_68 (green_rating VARCHAR, engine_capacity VARCHAR, manufacturer VARCHAR, l_100km_urban__cold_ VARCHAR, mpg_us_urban VARCHAR)"}, {"answer": "SELECT AVG(l_100km_urban__cold_) FROM table_name_27 WHERE engine_capacity > 1910 AND mpg_us_urban < 25.3 AND mpg_uk_combined > 27.2 AND mpg_uk_urban__cold_ = 22.4", "question": "What is the average L/100km urban (cold) for engine capacities over 1910, mpg in the US (urban) under 25.3, mpg in the UK (combined) over 27.2, and mpg in the UK (urban, cold) of 22.4?", "context": "CREATE TABLE table_name_27 (l_100km_urban__cold_ INTEGER, mpg_uk_urban__cold_ VARCHAR, mpg_uk_combined VARCHAR, engine_capacity VARCHAR, mpg_us_urban VARCHAR)"}, {"answer": "SELECT MIN(mpg_us_combined) FROM table_name_11 WHERE transmission = \"a6\" AND co_2_g_km < 303 AND engine_capacity > 2461 AND l_100km_urban__cold_ = 15.9", "question": "What is the lowest combined mpg in the US for the A6 transmission, a CO2 g/km under 303, engine capacity over 2461, and L/100km urban (cold) of 15.9?", "context": "CREATE TABLE table_name_11 (mpg_us_combined INTEGER, l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, transmission VARCHAR, co_2_g_km VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_85 WHERE title = \"drip-along daffy\"", "question": "What was the release date of the episode titled Drip-Along Daffy?", "context": "CREATE TABLE table_name_85 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT october FROM table_name_61 WHERE november = \"carina ragnarsson\"", "question": "Who is in October when Carina Ragnarsson is in November?", "context": "CREATE TABLE table_name_61 (october VARCHAR, november VARCHAR)"}, {"answer": "SELECT november FROM table_name_36 WHERE year = 1979", "question": "Who is in November in the year 1979?", "context": "CREATE TABLE table_name_36 (november VARCHAR, year VARCHAR)"}, {"answer": "SELECT december FROM table_name_32 WHERE november = \"alexus winston\"", "question": "Who is in December when November has Alexus Winston?", "context": "CREATE TABLE table_name_32 (december VARCHAR, november VARCHAR)"}, {"answer": "SELECT november FROM table_name_52 WHERE year > 1988 AND october = \"prinzzess\"", "question": "Who is in November after 1988 when Prinzzess is in October?", "context": "CREATE TABLE table_name_52 (november VARCHAR, year VARCHAR, october VARCHAR)"}, {"answer": "SELECT line FROM table_name_8 WHERE ship = \"lucania\" AND year = \"1894\"", "question": "What is the line that has lucania as the ship and 1894 as the date?", "context": "CREATE TABLE table_name_8 (line VARCHAR, ship VARCHAR, year VARCHAR)"}, {"answer": "SELECT genre FROM table_name_47 WHERE developer_s_ = \"naughty dog\"", "question": "Which Genre has a Developer(s) of naughty dog?", "context": "CREATE TABLE table_name_47 (genre VARCHAR, developer_s_ VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_35 WHERE game = \"resident evil 4\"", "question": "Which Year has a Game of resident evil 4?", "context": "CREATE TABLE table_name_35 (year INTEGER, game VARCHAR)"}, {"answer": "SELECT developer_s_ FROM table_name_90 WHERE year = 2010", "question": "Which Developer(s) has a Year of 2010?", "context": "CREATE TABLE table_name_90 (developer_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_12 WHERE record = \"0-1\"", "question": "Who is the Opponent of the match with a Record of 0-1?", "context": "CREATE TABLE table_name_12 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT time FROM table_name_30 WHERE record = \"3-3\"", "question": "What is the Time of the match with a Record of 3-3?", "context": "CREATE TABLE table_name_30 (time VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_53 WHERE time = \"4:07\"", "question": "What is the Method of the match with a Time of 4:07?", "context": "CREATE TABLE table_name_53 (method VARCHAR, time VARCHAR)"}, {"answer": "SELECT published_as_serial FROM table_name_82 WHERE published_as_novel = \"october 1917, mcclurg\"", "question": "Which Published as serial has a Published as novel of october 1917, mcclurg?", "context": "CREATE TABLE table_name_82 (published_as_serial VARCHAR, published_as_novel VARCHAR)"}, {"answer": "SELECT fictional_narrator FROM table_name_63 WHERE published_as_serial = \"february\u2013july 1912, all-story\"", "question": "Which Fictional narrator has a Published as serial of february\u2013july 1912, all-story?", "context": "CREATE TABLE table_name_63 (fictional_narrator VARCHAR, published_as_serial VARCHAR)"}, {"answer": "SELECT year_in_novel FROM table_name_18 WHERE published_as_serial = \"november 1934-april 1935, blue book\"", "question": "Which year in novel has a Published as serial of november 1934-april 1935, blue book?", "context": "CREATE TABLE table_name_18 (year_in_novel VARCHAR, published_as_serial VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_48 WHERE games < 6 AND debut_year = 1939 AND years_at_club = \"1939, 1941\"", "question": "How many Goals have Games smaller than 6, and a Debut year of 1939, and Years at club of 1939, 1941?", "context": "CREATE TABLE table_name_48 (goals VARCHAR, years_at_club VARCHAR, games VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT years_at_club FROM table_name_38 WHERE debut_year = 1930 AND games > 7 AND player = \"colin benham\"", "question": "Which Years at club have a Debut year of 1930, and Games larger than 7, and a Player of colin benham?", "context": "CREATE TABLE table_name_38 (years_at_club VARCHAR, player VARCHAR, debut_year VARCHAR, games VARCHAR)"}, {"answer": "SELECT player FROM table_name_6 WHERE debut_year > 1930 AND goals < 95 AND years_at_club = \"1938\" AND games = 6", "question": "WhichPlayer has a Debut year larger than 1930, and Goals smaller than 95, and Years at club of 1938, and Games of 6?", "context": "CREATE TABLE table_name_6 (player VARCHAR, games VARCHAR, years_at_club VARCHAR, debut_year VARCHAR, goals VARCHAR)"}, {"answer": "SELECT cores FROM table_name_58 WHERE l3_cache = \"8 mb\" AND frequency = \"2.5 ghz\"", "question": "What is the cores when the L3 cache is 8 mb, and the frequency is 2.5 ghz?", "context": "CREATE TABLE table_name_58 (cores VARCHAR, l3_cache VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_2 WHERE release_price___usd__ = \"$303\" AND sspec_number = \"sr14q(c0)\"", "question": "What is the model number with a release price of $303, and a sSpec number of sr14q(c0)?", "context": "CREATE TABLE table_name_2 (model_number VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT turbo FROM table_name_78 WHERE l2_cache = \"4 \u00d7 256 kb\" AND release_date = \"june 2013\" AND model_number = \"core i7-4770s\"", "question": "What turbo has a L2 cache of 4 \u00d7 256 kb, a release date of June 2013, and a Model number of core i7-4770s?", "context": "CREATE TABLE table_name_78 (turbo VARCHAR, model_number VARCHAR, l2_cache VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT socket FROM table_name_96 WHERE sspec_number = \"standard power\"", "question": "What is the socket when the sSpec number is standard power?", "context": "CREATE TABLE table_name_96 (socket VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT gpu_model FROM table_name_74 WHERE l3_cache = \"standard power\"", "question": "What is the GPU model when the L3 cache is standard power?", "context": "CREATE TABLE table_name_74 (gpu_model VARCHAR, l3_cache VARCHAR)"}, {"answer": "SELECT cores FROM table_name_16 WHERE l2_cache = \"low power\"", "question": "What cores has an L2 cache of low power?", "context": "CREATE TABLE table_name_16 (cores VARCHAR, l2_cache VARCHAR)"}, {"answer": "SELECT position FROM table_name_98 WHERE event = \"discus\" AND year = 2013", "question": "What is the position for Discus in 2013?", "context": "CREATE TABLE table_name_98 (position VARCHAR, event VARCHAR, year VARCHAR)"}, {"answer": "SELECT event FROM table_name_16 WHERE competition = \"world junior championships\" AND year = 2010", "question": "What event was the competition World Junior Championships in 2010?", "context": "CREATE TABLE table_name_16 (event VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_88 WHERE vehicle = \"mitsubishi\"", "question": "Which year had a vehicle of Mitsubishi?", "context": "CREATE TABLE table_name_88 (year VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT class FROM table_name_31 WHERE vehicle = \"nissan\" AND year = 2007", "question": "Which class had a vehicle of Nissan in 2007?", "context": "CREATE TABLE table_name_31 (class VARCHAR, vehicle VARCHAR, year VARCHAR)"}, {"answer": "SELECT vehicle FROM table_name_87 WHERE class = \"car\" AND year > 2009 AND stages_won = \"0\" AND position = \"5\"", "question": "Which vehicle had a class of car in years after 2009 with 0 stages won and position of 5?", "context": "CREATE TABLE table_name_87 (vehicle VARCHAR, position VARCHAR, stages_won VARCHAR, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_45 WHERE position = \"9\"", "question": "Which year had a position of 9?", "context": "CREATE TABLE table_name_45 (year VARCHAR, position VARCHAR)"}, {"answer": "SELECT county FROM table_name_89 WHERE mascot = \"tigers\"", "question": "What county is the team with the mascot of the Tigers in?", "context": "CREATE TABLE table_name_89 (county VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT county FROM table_name_2 WHERE mascot = \"tigers\"", "question": "What county is the team with the mascot of the Tigers in?", "context": "CREATE TABLE table_name_2 (county VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM table_name_21 WHERE school = \"lanesville\"", "question": "What is the enrollment at Lanesville?", "context": "CREATE TABLE table_name_21 (enrollment INTEGER, school VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_73 WHERE county = \"10 clark\" AND mascot = \"mustangs\"", "question": "What is the IHSAA class for the school in 10 Clark county with mascot of the Mustangs?", "context": "CREATE TABLE table_name_73 (ihsaa_class VARCHAR, county VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_48 WHERE school = \"borden\"", "question": "What is the mascot at Borden?", "context": "CREATE TABLE table_name_48 (mascot VARCHAR, school VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_50 WHERE county = \"10 clark\" AND location = \"new washington\"", "question": "What is the mascot of the school in New Washington in 10 Clark county?", "context": "CREATE TABLE table_name_50 (mascot VARCHAR, county VARCHAR, location VARCHAR)"}, {"answer": "SELECT owner_s_ FROM table_name_18 WHERE description = \"hunslet engine company 0-6-0st\"", "question": "Which Owner(s) has a Description of hunslet engine company 0-6-0st?", "context": "CREATE TABLE table_name_18 (owner_s_ VARCHAR, description VARCHAR)"}, {"answer": "SELECT number_of_electorates__2009_ FROM table_name_13 WHERE constituency_number = \"182\"", "question": "What is the number of electorates (2009) for Constituency number 182?", "context": "CREATE TABLE table_name_13 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT constituency_number FROM table_name_62 WHERE name = \"pandhana\"", "question": "What is the Constituency number for Pandhana?", "context": "CREATE TABLE table_name_62 (constituency_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_56 WHERE number_of_electorates__2009_ > 188 OFFSET 799", "question": "Which Name has a Number of electorates (2009) greater than 188,799?", "context": "CREATE TABLE table_name_56 (name VARCHAR, number_of_electorates__2009_ INTEGER)"}, {"answer": "SELECT constituency_number FROM table_name_11 WHERE reserved_for___sc___st__none_ = \"st\" AND name = \"bikhangaon\"", "question": "What is the Constituency number for Bikhangaon with a Reserved for ( SC / ST /None) of st?", "context": "CREATE TABLE table_name_11 (constituency_number VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_81 WHERE nation = \"germany\" AND bronze > 0", "question": "How many silver medals for germany with a bronze count more than 0?", "context": "CREATE TABLE table_name_81 (silver INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_80 WHERE total > 1 AND silver = 18", "question": "How many gold medals when the total is more than 1 and 18 silver?", "context": "CREATE TABLE table_name_80 (gold INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_66 WHERE total < 3 AND silver < 1 AND gold > 1", "question": "How many bronze medals has a total less than 3 with a silver less than 1 and gold more than 1?", "context": "CREATE TABLE table_name_66 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT venue FROM table_name_43 WHERE date = \"october 28, 2008\"", "question": "what is the venue on october 28, 2008?", "context": "CREATE TABLE table_name_43 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_43 WHERE date = \"september 10, 2008\"", "question": "what is the result on september 10, 2008?", "context": "CREATE TABLE table_name_43 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_22 WHERE assists > 0 AND position = \"forward\" AND apps > 84 AND goals = 19", "question": "What is the name of the player with more than 0 assists, a position of forward, 19 goals, and more than 84 apps?", "context": "CREATE TABLE table_name_22 (name VARCHAR, goals VARCHAR, apps VARCHAR, assists VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_52 WHERE assists = 12 AND apps < 291", "question": "What is the total goals with 12 assists, and less than 291 apps?", "context": "CREATE TABLE table_name_52 (goals INTEGER, assists VARCHAR, apps VARCHAR)"}, {"answer": "SELECT SUM(apps) FROM table_name_37 WHERE name = \"keith treacy\"", "question": "What is the total of apps for Keith Treacy?", "context": "CREATE TABLE table_name_37 (apps INTEGER, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_12 WHERE name = \"erin donohue\"", "question": "What nationality is Erin Donohue?", "context": "CREATE TABLE table_name_12 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(heat) FROM table_name_78 WHERE nationality = \"guinea-bissau\" AND rank < 33", "question": "How many heats did Runners from Guinea-Bissau run, with rank higher than 33?", "context": "CREATE TABLE table_name_78 (heat INTEGER, nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT 1 AS st_round FROM table_name_56 WHERE team_1 = \"stade lavallois (d2)\"", "question": "what is the 1st round when team 1 is stade lavallois (d2)?", "context": "CREATE TABLE table_name_56 (team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_round FROM table_name_73 WHERE team_2 = \"usl dunkerque (d2)\"", "question": "what is the 1st round when team 2 is usl dunkerque (d2)?", "context": "CREATE TABLE table_name_73 (team_2 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_87 WHERE team_2 = \"usl dunkerque (d2)\"", "question": "who is team 1 when team 2 is usl dunkerque (d2)?", "context": "CREATE TABLE table_name_87 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_73 WHERE candidate = \"lenny veltman\"", "question": "What is the Hometown of Candidate Lenny Veltman?", "context": "CREATE TABLE table_name_73 (hometown VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT background FROM table_name_82 WHERE hometown = \"barrington, illinois\"", "question": "What is the Background of the Candidate from Barrington, Illinois?", "context": "CREATE TABLE table_name_82 (background VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT original_team FROM table_name_37 WHERE background = \"clothing company owner\"", "question": "What is the Original Team of the Clothing Company Owner Candidate?", "context": "CREATE TABLE table_name_37 (original_team VARCHAR, background VARCHAR)"}, {"answer": "SELECT AVG(place) FROM table_name_99 WHERE artist = \"juliana pasha & luiz ejlli\" AND points > 119", "question": "what is the average place when the artist is juliana pasha & luiz ejlli and the points is more than 119?", "context": "CREATE TABLE table_name_99 (place INTEGER, artist VARCHAR, points VARCHAR)"}, {"answer": "SELECT song FROM table_name_38 WHERE points = 17", "question": "what is the song that has 17 points?", "context": "CREATE TABLE table_name_38 (song VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(time) FROM table_name_35 WHERE react > 0.183 AND athlete = \"david neville\"", "question": "What is the shortest Time for David Neville when his React time was greater than 0.183?", "context": "CREATE TABLE table_name_35 (time INTEGER, react VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT title FROM table_name_89 WHERE series = \"lt\" AND release_date = \"1964-02-08\"", "question": "What is the Title of the LT Series Filmography with a Release date of 1964-02-08?", "context": "CREATE TABLE table_name_89 (title VARCHAR, series VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT series FROM table_name_93 WHERE director = \"friz freleng\"", "question": "What is the Series of the Filmography by Directory Friz Freleng?", "context": "CREATE TABLE table_name_93 (series VARCHAR, director VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_16 WHERE director = \"robert mckimson\" AND series = \"mm\" AND production_number = \"1665\"", "question": "What is the Release date of the Filmography directed by Robert McKimson in MM Series with Production Number 1665?", "context": "CREATE TABLE table_name_16 (release_date VARCHAR, production_number VARCHAR, director VARCHAR, series VARCHAR)"}, {"answer": "SELECT director FROM table_name_82 WHERE title = \"the iceman ducketh\"", "question": "What is the Director of the Filmography The Iceman Ducketh?", "context": "CREATE TABLE table_name_82 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT production_number FROM table_name_96 WHERE series = \"mm\" AND release_date = \"1964-06-27\"", "question": "What is the Production Number of the Filmography in MM Series with a Release date of 1964-06-27?", "context": "CREATE TABLE table_name_96 (production_number VARCHAR, series VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE record = \"46-22\"", "question": "What is the Date of the Game with a Record of 46-22?", "context": "CREATE TABLE table_name_17 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE score = \"w 112-107 (ot)\"", "question": "What is the Date of the Game with a Score of w 112-107 (ot)?", "context": "CREATE TABLE table_name_29 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(time) FROM table_name_45 WHERE athlete = \"muna lee\"", "question": "What is the athlete muna lee lowest time?", "context": "CREATE TABLE table_name_45 (time INTEGER, athlete VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_10 WHERE athlete = \"kerron stewart\" AND time < 11.05", "question": "What is the sum of rank for the athlete kerron stewart, and a time smaller than 11.05?", "context": "CREATE TABLE table_name_10 (rank INTEGER, athlete VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(time) FROM table_name_39 WHERE heat < 1", "question": "What is a highest time for the heat smaller than 1?", "context": "CREATE TABLE table_name_39 (time INTEGER, heat INTEGER)"}, {"answer": "SELECT MAX(time) FROM table_name_31 WHERE athlete = \"torri edwards\" AND rank > 6", "question": "What is the highest time for athlete torri edwards, and a rank larger than 6?", "context": "CREATE TABLE table_name_31 (time INTEGER, athlete VARCHAR, rank VARCHAR)"}, {"answer": "SELECT is_2_m1945 FROM table_name_91 WHERE kv_1s_m1942 = \"114\"", "question": "What's the IS-2 when the KV-1S is 114?", "context": "CREATE TABLE table_name_91 (is_2_m1945 VARCHAR, kv_1s_m1942 VARCHAR)"}, {"answer": "SELECT is_3_m1945 FROM table_name_72 WHERE kv_1s_m1942 = \"45\"", "question": "What's the IS-3 when the KV-1S is 45?", "context": "CREATE TABLE table_name_72 (is_3_m1945 VARCHAR, kv_1s_m1942 VARCHAR)"}, {"answer": "SELECT t_100 FROM table_name_51 WHERE is_3_m1945 = \"150 (225)\"", "question": "What's the T-100 when the IS-3 is 150 (225)?", "context": "CREATE TABLE table_name_51 (t_100 VARCHAR, is_3_m1945 VARCHAR)"}, {"answer": "SELECT is_3_m1945 FROM table_name_11 WHERE kv_85_m1943 = \"40\"", "question": "What's the IS-3 when the KV-85 is 40?", "context": "CREATE TABLE table_name_11 (is_3_m1945 VARCHAR, kv_85_m1943 VARCHAR)"}, {"answer": "SELECT kv_85_m1943 FROM table_name_51 WHERE kv_1s_m1942 = \"45\"", "question": "What's the KV-85 when the KV-1S is 45?", "context": "CREATE TABLE table_name_51 (kv_85_m1943 VARCHAR, kv_1s_m1942 VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_67 WHERE nation = \"south korea\"", "question": "What is the sum of the bronze medals won by south korea?", "context": "CREATE TABLE table_name_67 (bronze INTEGER, nation VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_85 WHERE school = \"speedway\"", "question": "Which IHSAA class does speedway school belong to?", "context": "CREATE TABLE table_name_85 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_64 WHERE year_joined < 2012 AND mascot = \"panthers\"", "question": "Which ISHAA school joined in 2012 and has a mascot of the panthers?", "context": "CREATE TABLE table_name_64 (ihsaa_class VARCHAR, year_joined VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT AVG(tries_against) FROM table_name_8 WHERE points_against > 156 AND points_for = 127 AND tries_for > 17", "question": "Which Tries against has Points against larger than 156, and Points for of 127, and Tries for larger than 17?", "context": "CREATE TABLE table_name_8 (tries_against INTEGER, tries_for VARCHAR, points_against VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT try_diff FROM table_name_34 WHERE tries_for = 12", "question": "Which Try diff has Tries for of 12?", "context": "CREATE TABLE table_name_34 (try_diff VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT team FROM table_name_19 WHERE position = \"ss\" AND player = \"rich mckinney\"", "question": "What is SS Player Rich McKinney's Team?", "context": "CREATE TABLE table_name_19 (team VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_99 WHERE pick > 15 AND hometown_school = \"dayton, oh\"", "question": "What is the Player from Dayton, Oh with a Pick of 15 or larger?", "context": "CREATE TABLE table_name_99 (player VARCHAR, pick VARCHAR, hometown_school VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_25 WHERE hometown_school = \"stamford, ct\"", "question": "What is the Pick of the Player from Stamford, CT?", "context": "CREATE TABLE table_name_25 (pick INTEGER, hometown_school VARCHAR)"}, {"answer": "SELECT county FROM table_name_90 WHERE ihsaa_class = \"aa\" AND location = \"ferdinand\"", "question": "What is the county with an AA IHSAA class in ferdinand?", "context": "CREATE TABLE table_name_90 (county VARCHAR, ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(size) FROM table_name_93 WHERE mascot = \"titans\"", "question": "What is the lowest size of the school with titans as the mascot?", "context": "CREATE TABLE table_name_93 (size INTEGER, mascot VARCHAR)"}, {"answer": "SELECT school FROM table_name_43 WHERE size < 674 AND county = \"19 dubois\" AND mascot = \"rangers\"", "question": "What school has a size less than 674, has a county of 19 dubois, and has the rangers as their mascot?", "context": "CREATE TABLE table_name_43 (school VARCHAR, mascot VARCHAR, size VARCHAR, county VARCHAR)"}, {"answer": "SELECT player FROM table_name_81 WHERE score = 71 - 69 - 71 - 67 = 278", "question": "Which player has a score of 71-69-71-67=278?", "context": "CREATE TABLE table_name_81 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_8 WHERE winnings = \"$184,190\" AND top_10 > 1", "question": "How many Wins have Winnings of $184,190, and a Top 10 larger than 1?", "context": "CREATE TABLE table_name_8 (wins VARCHAR, winnings VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT MAX(col__m_) FROM table_name_91 WHERE rank < 7 AND peak = \"puncak jaya (carstensz pyramid)\" AND prominence__m_ < 4 OFFSET 884", "question": "What is the highest col in m of the puncak jaya (carstensz pyramid) peak, which is ranked lower than 7 and has a prominence less than 4,884 m?", "context": "CREATE TABLE table_name_91 (col__m_ INTEGER, prominence__m_ VARCHAR, rank VARCHAR, peak VARCHAR)"}, {"answer": "SELECT MAX(elevation__m_) FROM table_name_11 WHERE col__m_ > 0 AND peak = \"bon irau\" AND prominence__m_ < 1 OFFSET 900", "question": "What is the highest elevation in m of the bon irau peak, which has a col greater than 0 m and a prominence less than 1,900 m?", "context": "CREATE TABLE table_name_11 (elevation__m_ INTEGER, prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_8 WHERE position = \"defensive tackle\" AND pick__number > 187", "question": "Which round was the defensive tackle picked after 187?", "context": "CREATE TABLE table_name_8 (round INTEGER, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT title FROM table_name_80 WHERE label = \"mother / mvp / polydor\"", "question": "What was the title for the label mother / mvp / polydor?", "context": "CREATE TABLE table_name_80 (title VARCHAR, label VARCHAR)"}, {"answer": "SELECT label FROM table_name_59 WHERE country_of_release = \"usa\" AND title = \"shake your groove thing\"", "question": "What was the label for Shake Your Groove Thing in USA?", "context": "CREATE TABLE table_name_59 (label VARCHAR, country_of_release VARCHAR, title VARCHAR)"}, {"answer": "SELECT place_of_birth FROM table_name_31 WHERE elector = \"soffredo\"", "question": "What is listed as the Place of birth for the Elector of Soffredo?", "context": "CREATE TABLE table_name_31 (place_of_birth VARCHAR, elector VARCHAR)"}, {"answer": "SELECT place_of_birth FROM table_name_51 WHERE elevator = \"alexander iii\" AND elector = \"ruggiero di san severino\"", "question": "What's the Place of birth listed that has an Elevator of ALexander III, and an Elector of Ruggiero Di San Severino?", "context": "CREATE TABLE table_name_51 (place_of_birth VARCHAR, elevator VARCHAR, elector VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_78 WHERE cardinalatial_title = \"deacon of s. maria in portico\"", "question": "What is listed for the Elevator, that also has the Cardinalatial title of Deacon of S. Maria in Portico?", "context": "CREATE TABLE table_name_78 (elevator VARCHAR, cardinalatial_title VARCHAR)"}, {"answer": "SELECT elector FROM table_name_86 WHERE cardinalatial_title = \"priest of s. marco\"", "question": "What is listed for the Elector that also has the Cardinalatial title of Priest of S. Marco?", "context": "CREATE TABLE table_name_86 (elector VARCHAR, cardinalatial_title VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_10 WHERE elector = \"gerardo\"", "question": "What is listed for the Elevator that has the Elector of Gerardo?", "context": "CREATE TABLE table_name_10 (elevator VARCHAR, elector VARCHAR)"}, {"answer": "SELECT place_of_birth FROM table_name_40 WHERE elector = \"pandolfo\"", "question": "What is listed as the Place of Birth for the Elector of Pandolfo?", "context": "CREATE TABLE table_name_40 (place_of_birth VARCHAR, elector VARCHAR)"}, {"answer": "SELECT MIN(density__per_km\u00b2_) FROM table_name_77 WHERE rank = \"5\" AND area__km\u00b2_ < 125 OFFSET 755", "question": "what is the least density (per km\u00b2) when the rank is 5 and the Area (km\u00b2) is less than 125,755?", "context": "CREATE TABLE table_name_77 (density__per_km\u00b2_ INTEGER, rank VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT turbo FROM table_name_63 WHERE frequency = \"2.2 ghz\"", "question": "what is the turbo when the frequency is 2.2 ghz?", "context": "CREATE TABLE table_name_63 (turbo VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT gpu_frequency FROM table_name_50 WHERE part_number_s_ = \"cw8064701470702\"", "question": "what is the gpu frequency when the part number is cw8064701470702?", "context": "CREATE TABLE table_name_50 (gpu_frequency VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_98 WHERE sspec_number = \"sr15h(c0)\"", "question": "what is the release date when the sspec number is sr15h(c0)?", "context": "CREATE TABLE table_name_98 (release_date VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT sspec_number FROM table_name_2 WHERE part_number_s_ = \"cw8064701470802\"", "question": "what is the sspec number when the part number is cw8064701470802?", "context": "CREATE TABLE table_name_2 (sspec_number VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_71 WHERE cyclist = \"alexandr pliuschin\"", "question": "what is the average rank when the cyclist is alexandr pliuschin?", "context": "CREATE TABLE table_name_71 (rank INTEGER, cyclist VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_21 WHERE heat = 9 AND nation = \"great britain\"", "question": "what is the rank when heat is 9 and the nation is great britain?", "context": "CREATE TABLE table_name_21 (rank INTEGER, heat VARCHAR, nation VARCHAR)"}, {"answer": "SELECT result FROM table_name_13 WHERE rank = 12", "question": "what is the result when the rank is 12?", "context": "CREATE TABLE table_name_13 (result VARCHAR, rank VARCHAR)"}, {"answer": "SELECT competition FROM table_name_23 WHERE year = 2010 AND snatch = \"185kg\"", "question": "Which competition had a year of 2010 with Snatch weight of 185kg?", "context": "CREATE TABLE table_name_23 (competition VARCHAR, year VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT snatch FROM table_name_92 WHERE total = \"409kg\"", "question": "What was the Snatch weight for the year that had a total of 409kg?", "context": "CREATE TABLE table_name_92 (snatch VARCHAR, total VARCHAR)"}, {"answer": "SELECT clean_and_jerk FROM table_name_13 WHERE snatch = \"190kg\"", "question": "What was the Clean and Jerk weight for the year that had a Snatch result of 190kg?", "context": "CREATE TABLE table_name_13 (clean_and_jerk VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_92 WHERE year = 2010 AND clean_and_jerk = \"224kg\"", "question": "What was the highest place result in 2010 with a Clean and Jerk weight of 224kg?", "context": "CREATE TABLE table_name_92 (place INTEGER, year VARCHAR, clean_and_jerk VARCHAR)"}, {"answer": "SELECT competition FROM table_name_77 WHERE total = \"428kg\"", "question": "Which competition led to a total weight of 428kg?", "context": "CREATE TABLE table_name_77 (competition VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_97 WHERE time = \"1:59.42\"", "question": "In what lane did the swimmer get a time of 1:59.42?", "context": "CREATE TABLE table_name_97 (lane INTEGER, time VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_64 WHERE nation = \"australia\" AND bronze < 1", "question": "Name the Gold which has a Nation of australia, and a Bronze smaller than 1?", "context": "CREATE TABLE table_name_64 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_63 WHERE nation = \"czech republic\" AND total < 4", "question": "Which the highest Bronze of czech republic with a Total smaller than 4?", "context": "CREATE TABLE table_name_63 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_70 WHERE gold > 2 AND rank = \"total\"", "question": "Name the highest Bronze which has a Gold larger than 2 and a Rank of total?", "context": "CREATE TABLE table_name_70 (bronze INTEGER, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_47 WHERE nation = \"sweden\" AND silver > 1", "question": "Count the average Gold which has a Nation of sweden, and a Silver larger than 1?", "context": "CREATE TABLE table_name_47 (gold INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_50 WHERE date = \"june 3\"", "question": "Who was the opponent on June 3?", "context": "CREATE TABLE table_name_50 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_28 WHERE record = \"9-7\"", "question": "Which game had a 9-7 record?", "context": "CREATE TABLE table_name_28 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_79 WHERE record = \"3-2\"", "question": "What is the highest game with a 3-2 record?", "context": "CREATE TABLE table_name_79 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_85 WHERE game > 5 AND date = \"june 22\"", "question": "Who is the opponent of the game with a game number larger than 5 on June 22?", "context": "CREATE TABLE table_name_85 (opponent VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE location = \"mohegan sun arena\" AND date = \"june 25\"", "question": "What is the score of the game on June 25 at the mohegan sun arena?", "context": "CREATE TABLE table_name_85 (score VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_24 WHERE location = \"america west arena\"", "question": "Who is the opponent at america west arena?", "context": "CREATE TABLE table_name_24 (opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_42 WHERE rank > 3 AND country = \"finland\"", "question": "Who are the rowers ranked greater than 3 from Finland?", "context": "CREATE TABLE table_name_42 (rowers VARCHAR, rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_72 WHERE time = \"6:55.23\"", "question": "What country had a 6:55.23 time?", "context": "CREATE TABLE table_name_72 (country VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_41 WHERE losses = 14 AND against > 2200", "question": "What is the average number of wins for teams with 14 losses and against over 2200?", "context": "CREATE TABLE table_name_41 (wins INTEGER, losses VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_16 WHERE against < 1067", "question": "What is the sum of wins for teams with against under 1067?", "context": "CREATE TABLE table_name_16 (wins INTEGER, against INTEGER)"}, {"answer": "SELECT SUM(against) FROM table_name_8 WHERE losses = 5 AND draws < 0", "question": "What is the sum of Against values for teams with 5 losses and 0 draws?", "context": "CREATE TABLE table_name_8 (against INTEGER, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_70 WHERE against = 2139 AND draws > 0", "question": "What is the total number of byes for teams with against of 2139 and more than 0 draws?", "context": "CREATE TABLE table_name_70 (byes VARCHAR, against VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_30 WHERE week < 1", "question": "what is the highest attendance when the week is smaller than 1?", "context": "CREATE TABLE table_name_30 (attendance INTEGER, week INTEGER)"}, {"answer": "SELECT AVG(week) FROM table_name_51 WHERE result = \"w 14-13\" AND attendance > 53 OFFSET 295", "question": "what is the week when the result is w 14-13 and the attendance is higher than 53,295?", "context": "CREATE TABLE table_name_51 (week INTEGER, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT college FROM table_name_82 WHERE player = \"richard ticzon\"", "question": "What college did Richard Ticzon attend?", "context": "CREATE TABLE table_name_82 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE pba_team = \"alaska milkmen\" AND college = \"up-diliman\"", "question": "Which player went to college at Up-Diliman and plays on PBA team of the Alaska Milkmen?", "context": "CREATE TABLE table_name_97 (player VARCHAR, pba_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_37 WHERE bronze < 1 AND total = 2", "question": "How many silver medals when the total was 2 and less than 1 bronze?", "context": "CREATE TABLE table_name_37 (silver INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_90 WHERE bronze > 1 AND silver = 3 AND gold < 5", "question": "What's the total when the bronze was more than 1, silver was 3, and gold was less than 5?", "context": "CREATE TABLE table_name_90 (total INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_13 WHERE bronze > 0 AND nation = \"total\" AND \"total\" < 54", "question": "What's the gold medal count for Total Nation with a bronze count more than 0 and a total less than 54?", "context": "CREATE TABLE table_name_13 (gold INTEGER, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT borough_or_a[\u203a_] AS _census_area FROM table_name_81 WHERE name_a[\u203a_] = \"jerome lake dam\"", "question": "what is the borough or A[\u203a] Census area when the Name A[\u203a] is jerome lake dam?", "context": "CREATE TABLE table_name_81 (borough_or_a VARCHAR, \u203a_ VARCHAR, name_a VARCHAR)"}, {"answer": "SELECT score FROM table_name_40 WHERE money___$__ = \"3,600\"", "question": "What is the score for the player who won $3,600?", "context": "CREATE TABLE table_name_40 (score VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_39 WHERE average < 36.5 AND rank_by_average = 14", "question": "Name the most total with average less than 36.5 and rank by average of 14", "context": "CREATE TABLE table_name_39 (total INTEGER, average VARCHAR, rank_by_average VARCHAR)"}, {"answer": "SELECT SUM(rank_by_average) FROM table_name_29 WHERE competition_finish > 8 AND average > 30", "question": "Name the sum of rank by average with competition finish more than 8 and average larger than 30", "context": "CREATE TABLE table_name_29 (rank_by_average INTEGER, competition_finish VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(competition_finish) FROM table_name_43 WHERE total = 90 AND rank_by_average > 5", "question": "Name the total number of competition finish with total of 90 and rank by average more than 5", "context": "CREATE TABLE table_name_43 (competition_finish VARCHAR, total VARCHAR, rank_by_average VARCHAR)"}, {"answer": "SELECT MAX(competition_finish) FROM table_name_4 WHERE average > 32.9 AND number_of_dances > 16", "question": "Name the greatest competition finish with average more than 32.9 and number of dances more than 16", "context": "CREATE TABLE table_name_4 (competition_finish INTEGER, average VARCHAR, number_of_dances VARCHAR)"}, {"answer": "SELECT MIN(rank_by_average) FROM table_name_62 WHERE competition_finish = 5 AND number_of_dances < 9", "question": "Name the least rank by average for number of dances less than 9 and competition finish of 5", "context": "CREATE TABLE table_name_62 (rank_by_average INTEGER, competition_finish VARCHAR, number_of_dances VARCHAR)"}, {"answer": "SELECT record FROM table_name_83 WHERE date = \"june 4\"", "question": "What was the record on june 4?", "context": "CREATE TABLE table_name_83 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE opponent = \"minnesota\"", "question": "What was the score of the Iowa v. Minnesota game?", "context": "CREATE TABLE table_name_59 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_98 WHERE city = \"milwaukee\"", "question": "Who was Milwaukee's opponent?", "context": "CREATE TABLE table_name_98 (opponent VARCHAR, city VARCHAR)"}, {"answer": "SELECT result FROM table_name_80 WHERE opponent = \"tulsa\"", "question": "What was the result of the game versus Tulsa?", "context": "CREATE TABLE table_name_80 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_54 WHERE chassis = \"lola thl1\" AND year > 1986", "question": "What is the most points for a vehicle with a lola thl1, chassis later than 1986?", "context": "CREATE TABLE table_name_54 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_84 WHERE points < 2 AND chassis = \"mclaren m28\" AND entrant = \"l\u00f6wenbr\u00e4u team mclaren\"", "question": "What is the latest year with less than 2 points, a Mclaren m28 chassis and an Entrant of l\u00f6wenbr\u00e4u team mclaren?", "context": "CREATE TABLE table_name_84 (year INTEGER, entrant VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_68 WHERE entrant = \"equipe talbot gitanes\" AND points < 1", "question": "What is the latest year for Entrant of equipe talbot gitanes with less than 1 point?", "context": "CREATE TABLE table_name_68 (year INTEGER, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT close_of_reactor FROM table_name_13 WHERE rated_power = \"945 mw\" AND finish_construction = \"may 10, 1978\"", "question": "When did the reactor that has a rated power of 945 MW and ended construction on May 10, 1978 close?", "context": "CREATE TABLE table_name_13 (close_of_reactor VARCHAR, rated_power VARCHAR, finish_construction VARCHAR)"}, {"answer": "SELECT rated_power FROM table_name_52 WHERE finish_construction = \"may 10, 1978\"", "question": "What is the rated power for the reactor that ended construction on May 10, 1978?", "context": "CREATE TABLE table_name_52 (rated_power VARCHAR, finish_construction VARCHAR)"}, {"answer": "SELECT partnering FROM table_name_41 WHERE opponents = \"marin \u010dili\u0107 lovro zovko\"", "question": "Who was the parter against Marin \u010dili\u0107 lovro Zovko?", "context": "CREATE TABLE table_name_41 (partnering VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE date = \"24 february 2013\"", "question": "What was the score on 24 February 2013?", "context": "CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_23 WHERE surface = \"clay\" AND partnering = \"horacio zeballos\"", "question": "Who was the opponent on clay surface when partnered with Horacio Zeballos?", "context": "CREATE TABLE table_name_23 (opponents VARCHAR, surface VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT course FROM table_name_1 WHERE race_leader = \"rest day\"", "question": "Which course had a rest day for the Race Leader?", "context": "CREATE TABLE table_name_1 (course VARCHAR, race_leader VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_32 WHERE opponent = \"angels\" AND date = \"july 9\"", "question": "Name the attendance with angels opponent for july 9", "context": "CREATE TABLE table_name_32 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_2 WHERE record = \"45-57\"", "question": "Name the most attendance whent he record is 45-57", "context": "CREATE TABLE table_name_2 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_12 WHERE record = \"43-56\"", "question": "Which is the opponent when the record was 43-56?", "context": "CREATE TABLE table_name_12 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_20 WHERE top_5 = 0 AND wins < 0", "question": "What is the highest number of cuts made in a tournament with 0 wins and 0 top 5 placings?", "context": "CREATE TABLE table_name_20 (cuts_made INTEGER, top_5 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(inaug) FROM table_name_96 WHERE type = \"public\" AND name = \"mei lam estate\" AND no_units > 4 OFFSET 156", "question": "What is the number of Inaug., when the Type is Public, when the Name is Mei Lam Estate, and when the No Units is larger than 4,156?", "context": "CREATE TABLE table_name_96 (inaug VARCHAR, no_units VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(no_units) FROM table_name_99 WHERE name = \"fung shing court\" AND no_blocks < 3", "question": "What is the average No Units, when the Name is Fung Shing Court, and when the No Blocks is fewer than 3?", "context": "CREATE TABLE table_name_99 (no_units INTEGER, name VARCHAR, no_blocks VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_4 WHERE moving_to = \"milan\" AND year = 2000", "question": "What rank is the transfer for the milan move in 2000?", "context": "CREATE TABLE table_name_4 (rank INTEGER, moving_to VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_37 WHERE moving_to = \"milan\" AND name = \"kakha kaladze\" AND rank < 9", "question": "When was the earliest year that kakha kaladze moved to milan with a rank above 9?", "context": "CREATE TABLE table_name_37 (year INTEGER, rank VARCHAR, moving_to VARCHAR, name VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_17 WHERE moving_to = \"stuttgart\"", "question": "Where did the player move from that went to stuttgart?", "context": "CREATE TABLE table_name_17 (moving_from VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE moving_to = \"barcelona\"", "question": "Who was moved to barcelona?", "context": "CREATE TABLE table_name_61 (name VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_94 WHERE gold = 0 AND bronze > 1 AND silver < 1", "question": "How many totals have 0 as Gold, a bronze greater than 1, and a silver less than 1?", "context": "CREATE TABLE table_name_94 (total VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_89 WHERE nation = \"brazil\" AND bronze < 2", "question": "How many totals have brazil as the nation, and a bronze less than 2?", "context": "CREATE TABLE table_name_89 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_69 WHERE gold = 2 AND bronze < 2", "question": "How many silvers have 2 as gold, and a bronze less than 2?", "context": "CREATE TABLE table_name_69 (silver INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT nation FROM table_name_31 WHERE gold < 2 AND bronze < 5", "question": "Which nation has a gold less than 2 and a bronze less than 5?", "context": "CREATE TABLE table_name_31 (nation VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_69 WHERE nation = \"mexico\" AND gold < 0", "question": "What is the least silver that has mexico as a nation and a gold less than 0?", "context": "CREATE TABLE table_name_69 (silver INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT college FROM table_name_29 WHERE player = \"dennis byrd\"", "question": "Where did Dennis Byrd go to college?", "context": "CREATE TABLE table_name_29 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT visa_3 FROM table_name_83 WHERE visa_1 = \"gui finkler\"", "question": "Which Visa 3 has gui finkler as Visa 1?", "context": "CREATE TABLE table_name_83 (visa_3 VARCHAR, visa_1 VARCHAR)"}, {"answer": "SELECT visa_3 FROM table_name_70 WHERE visa_4 = \"youssouf hersi\"", "question": "Which Visa 3 has a Visa 4 of youssouf hersi?", "context": "CREATE TABLE table_name_70 (visa_3 VARCHAR, visa_4 VARCHAR)"}, {"answer": "SELECT visa_5 FROM table_name_4 WHERE visa_1 = \"emile heskey\"", "question": "Which  Visa 5  has a Visa 1 of emile heskey?", "context": "CREATE TABLE table_name_4 (visa_5 VARCHAR, visa_1 VARCHAR)"}, {"answer": "SELECT visa_3 FROM table_name_7 WHERE visa_1 = \"michael mcglinchey\"", "question": "Which Visa 3 has a Visa 1 of michael mcglinchey?", "context": "CREATE TABLE table_name_7 (visa_3 VARCHAR, visa_1 VARCHAR)"}, {"answer": "SELECT visa_4 FROM table_name_42 WHERE visa_1 = \"besart berisha\"", "question": "Which Visa 4 has besart berisha as Visa 1?", "context": "CREATE TABLE table_name_42 (visa_4 VARCHAR, visa_1 VARCHAR)"}, {"answer": "SELECT MIN(tier) FROM table_name_99 WHERE turkish_cup = \"group stage\" AND pos < 7", "question": "What is the lowest tier for a position smaller than 7 for a Turkish Cup group stage?", "context": "CREATE TABLE table_name_99 (tier INTEGER, turkish_cup VARCHAR, pos VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_26 WHERE grand_prix = \"german gp\"", "question": "How many rounds have a Grand Prix of german gp?", "context": "CREATE TABLE table_name_26 (round INTEGER, grand_prix VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_58 WHERE race_title = \"korean grand prix\"", "question": "What is the largest round with a Race Title of korean grand prix?", "context": "CREATE TABLE table_name_58 (round INTEGER, race_title VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_22 WHERE race_title = \"japanese grand prix\"", "question": "Which circuit has a Race Title of japanese grand prix?", "context": "CREATE TABLE table_name_22 (circuit VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_74 WHERE grand_prix = \"indian gp\"", "question": "What is the smallest round with a Grand Prix of indian gp?", "context": "CREATE TABLE table_name_74 (round INTEGER, grand_prix VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE race_title = \"dhl turkish grand prix\"", "question": "Which date has a Race Title of dhl turkish grand prix?", "context": "CREATE TABLE table_name_40 (date VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT pba_team FROM table_name_81 WHERE player = \"paolo mendoza\"", "question": "Name the PBA team for paolo mendoza", "context": "CREATE TABLE table_name_81 (pba_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_5 WHERE player = \"billy andrade\"", "question": "What did billy andrade to par?", "context": "CREATE TABLE table_name_5 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE result = \"w 31-28\"", "question": "Name the date for w 31-28", "context": "CREATE TABLE table_name_60 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_60 WHERE record = \"1-2\" AND attendance > 61 OFFSET 602", "question": "Name the most week for record of 1-2 and attendance more than 61,602", "context": "CREATE TABLE table_name_60 (week INTEGER, record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE result = \"4-0\"", "question": "What was the final score when the result was 4-0?", "context": "CREATE TABLE table_name_1 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_98 WHERE result = \"4-5\" AND score = \"1-1\"", "question": "Where was there a result of 4-5 and a score of 1-1?", "context": "CREATE TABLE table_name_98 (venue VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_89 WHERE time = 53.33", "question": "With a time of 53.33, who ranked the highest?", "context": "CREATE TABLE table_name_89 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_4 WHERE nationality = \"great britain\"", "question": "What was Great Britain's total time?", "context": "CREATE TABLE table_name_4 (time VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT lane FROM table_name_4 WHERE rank < 4 AND nationality = \"netherlands\"", "question": "Which lane ranked less than 4 for the Netherlands?", "context": "CREATE TABLE table_name_4 (lane VARCHAR, rank VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_35 WHERE tournament = \"alfred dunhill links championship\"", "question": "What was the winning score in the Alfred Dunhill links championship?", "context": "CREATE TABLE table_name_35 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE runner_s__up = \"ian poulter\"", "question": "What date did Ian poulter become runner up?", "context": "CREATE TABLE table_name_76 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_83 WHERE original_name = \"panny z wilka\"", "question": "What was the film title used in nomination for Panny Z Wilka?", "context": "CREATE TABLE table_name_83 (film_title_used_in_nomination VARCHAR, original_name VARCHAR)"}, {"answer": "SELECT language FROM table_name_39 WHERE original_name = \"\u05e8\u05d2\u05e2\u05d9\u05dd\"", "question": "What is the language of the film originally titled \u05e8\u05d2\u05e2\u05d9\u05dd?", "context": "CREATE TABLE table_name_39 (language VARCHAR, original_name VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_33 WHERE drawn = \"0\" AND points = \"88\"", "question": "Name the points for with drawn of 0 and points of 88", "context": "CREATE TABLE table_name_33 (points_for VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT played FROM table_name_76 WHERE try_bonus = \"6\" AND drawn = \"0\"", "question": "Name the played with try bonus of 6 and drawn of 0", "context": "CREATE TABLE table_name_76 (played VARCHAR, try_bonus VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT points FROM table_name_67 WHERE points_for = \"255\"", "question": "Name the point with points for of 255", "context": "CREATE TABLE table_name_67 (points VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT played FROM table_name_99 WHERE losing_bonus = \"2\" AND points_for = \"706\"", "question": "Name the played with losing bonus of 2 and points for of 706", "context": "CREATE TABLE table_name_99 (played VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_86 WHERE lost = \"3\" AND points = \"88\"", "question": "Name the drawn with lost of 3 and points of 88", "context": "CREATE TABLE table_name_86 (drawn VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT year FROM table_name_50 WHERE publisher = \"argonaut games sierra entertainment\"", "question": "Name the year when the publisher was argonaut games sierra entertainment", "context": "CREATE TABLE table_name_50 (year VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT platform FROM table_name_33 WHERE year > 2006 AND developer = \"3g studios\"", "question": "Name the plaform for year more than 2006 and developer of 3g studios", "context": "CREATE TABLE table_name_33 (platform VARCHAR, year VARCHAR, developer VARCHAR)"}, {"answer": "SELECT title FROM table_name_2 WHERE year = 2005", "question": "Name the title for 2005", "context": "CREATE TABLE table_name_2 (title VARCHAR, year VARCHAR)"}, {"answer": "SELECT years FROM table_name_31 WHERE authority = \"state\" AND name = \"tahunanui school\"", "question": "What years are listed for the Tahunanui school with an authority of state?", "context": "CREATE TABLE table_name_31 (years VARCHAR, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT october FROM table_name_51 WHERE february = \"cristy thom\"", "question": "Who is the october playmate with February playmate Cristy Thom?", "context": "CREATE TABLE table_name_51 (october VARCHAR, february VARCHAR)"}, {"answer": "SELECT january FROM table_name_15 WHERE september = \"nikki schieler\"", "question": "Who is the January playmate with a September playmate Nikki Schieler?", "context": "CREATE TABLE table_name_15 (january VARCHAR, september VARCHAR)"}, {"answer": "SELECT june FROM table_name_3 WHERE november = \"lorraine olivia\"", "question": "Who is the June playmate with the November playmate Lorraine Olivia?", "context": "CREATE TABLE table_name_3 (june VARCHAR, november VARCHAR)"}, {"answer": "SELECT january FROM table_name_59 WHERE march = \"alexandria karlsen\"", "question": "Who is the January playmate with a March playmate Alexandria Karlsen?", "context": "CREATE TABLE table_name_59 (january VARCHAR, march VARCHAR)"}, {"answer": "SELECT july FROM table_name_58 WHERE december = \"morgan fox\"", "question": "Who is the July playmate with a December playmate Morgan Fox?", "context": "CREATE TABLE table_name_58 (july VARCHAR, december VARCHAR)"}, {"answer": "SELECT march FROM table_name_3 WHERE november = \"cara wakelin\"", "question": "Who is the March playmate with a November playmate Cara Wakelin?", "context": "CREATE TABLE table_name_3 (march VARCHAR, november VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_31 WHERE result = \"11th\"", "question": "In which year did he finish 11th?", "context": "CREATE TABLE table_name_31 (year VARCHAR, result VARCHAR)"}, {"answer": "SELECT year FROM table_name_3 WHERE result = \"8th\"", "question": "In which year did he finish 8th?", "context": "CREATE TABLE table_name_3 (year VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_95 WHERE time = \"2:38\"", "question": "What is the number of the game that was played in the time of 2:38?", "context": "CREATE TABLE table_name_95 (game INTEGER, time VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_61 WHERE date = \"october 4\"", "question": "What is the number of the game that was played on October 4?", "context": "CREATE TABLE table_name_61 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_72 WHERE date = \"august 16\"", "question": "August 16 had what record?", "context": "CREATE TABLE table_name_72 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_55 WHERE date = \"august 18\"", "question": "Tell me the record for the date of August 18.", "context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE record = \"52-60\"", "question": "For the record of 52-60 what's the date?", "context": "CREATE TABLE table_name_60 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_38 WHERE h___a = \"h\" AND date = \"7 november 2007\"", "question": "What is the average attendance for the date of 7 November 2007 with an H/A of H?", "context": "CREATE TABLE table_name_38 (attendance INTEGER, h___a VARCHAR, date VARCHAR)"}, {"answer": "SELECT group_position FROM table_name_9 WHERE date = \"7 november 2007\"", "question": "What is the Group position for the date of 7 November 2007?", "context": "CREATE TABLE table_name_9 (group_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT year FROM table_name_6 WHERE playoffs = \"1st round\" AND league = \"nasl indoor\"", "question": "What year had a 1st round playoff in the NASL indoor league?", "context": "CREATE TABLE table_name_6 (year VARCHAR, playoffs VARCHAR, league VARCHAR)"}, {"answer": "SELECT normal_temperature FROM table_name_8 WHERE city = \"abbotsford, british columbia\"", "question": "What is the normal temperature of Abbotsford, British Columbia?", "context": "CREATE TABLE table_name_8 (normal_temperature VARCHAR, city VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE date = \"may 18\"", "question": "What is the score on May 18?", "context": "CREATE TABLE table_name_75 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_29 WHERE visitor = \"edmonton oilers\" AND date = \"may 22\"", "question": "What is the home team of the game on May 22 with the Edmonton Oilers as the visiting team?", "context": "CREATE TABLE table_name_29 (home VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_50 WHERE visitor = \"edmonton oilers\"", "question": "What is the record of the game where the visitor team is the Edmonton Oilers?", "context": "CREATE TABLE table_name_50 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT time FROM table_name_65 WHERE lane < 5 AND name = \"\u00e1gnes kov\u00e1cs\"", "question": "When is the lane less than 5 and is named \u00e1gnes kov\u00e1cs?", "context": "CREATE TABLE table_name_65 (time VARCHAR, lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_52 WHERE nationality = \"china\"", "question": "What is the average lane for china?", "context": "CREATE TABLE table_name_52 (lane INTEGER, nationality VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_88 WHERE name = \"rebecca brown\"", "question": "What is the average lane that is called rebecca brown?", "context": "CREATE TABLE table_name_88 (lane INTEGER, name VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_99 WHERE championship > 13", "question": "Which Championship total is over 13?", "context": "CREATE TABLE table_name_99 (total INTEGER, championship INTEGER)"}, {"answer": "SELECT COUNT(others_number) FROM table_name_88 WHERE kerry_percentage = \"36.7%\"", "question": "When Kerry is at 36.7%, what is the total number of others?", "context": "CREATE TABLE table_name_88 (others_number VARCHAR, kerry_percentage VARCHAR)"}, {"answer": "SELECT bush_number FROM table_name_10 WHERE bush_percentage = \"52.9%\"", "question": "When Bush has 52.9%, what is the Bush#?", "context": "CREATE TABLE table_name_10 (bush_number VARCHAR, bush_percentage VARCHAR)"}, {"answer": "SELECT iata FROM table_name_4 WHERE city = \"guam\"", "question": "What is the IATA of Guam?", "context": "CREATE TABLE table_name_4 (iata VARCHAR, city VARCHAR)"}, {"answer": "SELECT airport FROM table_name_80 WHERE iata = \"vie\"", "question": "VIE is the IATA for which city?", "context": "CREATE TABLE table_name_80 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT city FROM table_name_92 WHERE icao = \"wadd\"", "question": "Which city's ICAO is WADD?", "context": "CREATE TABLE table_name_92 (city VARCHAR, icao VARCHAR)"}, {"answer": "SELECT city FROM table_name_84 WHERE iata = \"per\"", "question": "PER is the IATA for which city?", "context": "CREATE TABLE table_name_84 (city VARCHAR, iata VARCHAR)"}, {"answer": "SELECT city FROM table_name_50 WHERE iata = \"kul\"", "question": "Which city's IATA is KUL?", "context": "CREATE TABLE table_name_50 (city VARCHAR, iata VARCHAR)"}, {"answer": "SELECT country FROM table_name_85 WHERE airport = \"brisbane airport\"", "question": "The Brisbane airport is located in which country?", "context": "CREATE TABLE table_name_85 (country VARCHAR, airport VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_99 WHERE date = \"august 26\"", "question": "Name the opponent for august 26", "context": "CREATE TABLE table_name_99 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_41 WHERE points = 90 AND year < 1994", "question": "What is the lowest win number of the competitor who had 90 points before 1994?", "context": "CREATE TABLE table_name_41 (wins INTEGER, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_47 WHERE year > 1999", "question": "What is the sum of wins after 1999?", "context": "CREATE TABLE table_name_47 (wins INTEGER, year INTEGER)"}, {"answer": "SELECT saturday_shani__saturn_ FROM table_name_41 WHERE sunday_surya__the_sun_ = \"\u0930\u0935\u093f\u0935\u093e\u0930 raviv\u0101r\" AND tuesday_mangala__mars_ = \"\u092e\u0902\u0917\u0933\u0935\u093e\u0930 manga\u1e37av\u0101r\"", "question": "What is the result on Saturday when it's \u0930\u0935\u093f\u0935\u093e\u0930 raviv\u0101r on Sunday and \u092e\u0902\u0917\u0933\u0935\u093e\u0930 manga\u1e37av\u0101r on Tuesday?", "context": "CREATE TABLE table_name_41 (saturday_shani__saturn_ VARCHAR, sunday_surya__the_sun_ VARCHAR, tuesday_mangala__mars_ VARCHAR)"}, {"answer": "SELECT saturday_shani__saturn_ FROM table_name_14 WHERE sunday_surya__the_sun_ = \"\u09b0\u09ac\u09bf\u09ac\u09be\u09b0 robibar\"", "question": "What is the result on Saturday that's \u09b0\u09ac\u09bf\u09ac\u09be\u09b0 robibar on Sunday", "context": "CREATE TABLE table_name_14 (saturday_shani__saturn_ VARCHAR, sunday_surya__the_sun_ VARCHAR)"}, {"answer": "SELECT friday_shukra__venus_ FROM table_name_91 WHERE tuesday_mangala__mars_ = \"\u1010\u1039\u105a\u1032 \u1021\u105a\u102b [\u014boa \u0259\u014b\u025b\u0300a] from sans. a\u1e45g\u0101ra\"", "question": "What is the result of Friday that's \u1010\u1039\u105a\u1032 \u1021\u105a\u102b [\u014boa \u0259\u014b\u025b\u0300a] from sans. a\u1e45g\u0101ra on Tuesday?", "context": "CREATE TABLE table_name_91 (friday_shukra__venus_ VARCHAR, tuesday_mangala__mars_ VARCHAR)"}, {"answer": "SELECT saturday_shani__saturn_ FROM table_name_30 WHERE sunday_surya__the_sun_ = \"\u1790\u17d2\u1784\u17c3\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799 [t\u014baj \u0294aat\u0268t ]\"", "question": "What is the result of Saturday that's \u1790\u17d2\u1784\u17c3\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799 [t\u014baj \u0294aat\u0268t ] on Sunday?", "context": "CREATE TABLE table_name_30 (saturday_shani__saturn_ VARCHAR, sunday_surya__the_sun_ VARCHAR)"}, {"answer": "SELECT sunday_surya__the_sun_ FROM table_name_29 WHERE monday_soma__the_moon_ = \"\u0938\u094b\u092e\u0935\u093e\u0930 somav\u0101r\" AND tuesday_mangala__mars_ = \"\u092e\u0902\u0917\u0932\u0935\u093e\u0930 mangalav\u0101r\"", "question": "What is the result on Sunday that's \u0938\u094b\u092e\u0935\u093e\u0930 somav\u0101r on Monday and \u092e\u0902\u0917\u0932\u0935\u093e\u0930 mangalav\u0101r on Tuesday?", "context": "CREATE TABLE table_name_29 (sunday_surya__the_sun_ VARCHAR, monday_soma__the_moon_ VARCHAR, tuesday_mangala__mars_ VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_97 WHERE award = \"american music awards\"", "question": "What year has american music awards?", "context": "CREATE TABLE table_name_97 (year VARCHAR, award VARCHAR)"}, {"answer": "SELECT result FROM table_name_99 WHERE year > 2009 AND category = \"album of the year\"", "question": "What was album of the year after 2009?", "context": "CREATE TABLE table_name_99 (result VARCHAR, year VARCHAR, category VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_43 WHERE award = \"ozone awards\"", "question": "How many years had ozone awards?", "context": "CREATE TABLE table_name_43 (year INTEGER, award VARCHAR)"}, {"answer": "SELECT event FROM table_name_82 WHERE opponent = \"masato shiozawa\"", "question": "What event did he fight masato shiozawa?", "context": "CREATE TABLE table_name_82 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT partnering FROM table_name_25 WHERE score = \"4\u20136, 7\u20135, [10\u20138]\"", "question": "What is the partner with a score of 4\u20136, 7\u20135, [10\u20138]?", "context": "CREATE TABLE table_name_25 (partnering VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE opponent = \"marquette\"", "question": "What was the score for the game against Marquette?", "context": "CREATE TABLE table_name_68 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_34 WHERE city = \"milwaukee\"", "question": "What was the result of the game in Milwaukee?", "context": "CREATE TABLE table_name_34 (result VARCHAR, city VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE score = \"25-0\"", "question": "What team was the opponent when the score was 25-0?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE city = \"minneapolis\"", "question": "What date was the game in Minneapolis?", "context": "CREATE TABLE table_name_21 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT record FROM table_name_96 WHERE res = \"loss\" AND time = \"3:54\"", "question": "Which Record has a Result of loss, and a Time of 3:54?", "context": "CREATE TABLE table_name_96 (record VARCHAR, res VARCHAR, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_32 WHERE method = \"submission (heel hook)\" AND round > 1 AND time = \"2:28\"", "question": "Which Record has a Method of submission (heel hook), a Round larger than 1, and a Time of 2:28?", "context": "CREATE TABLE table_name_32 (record VARCHAR, time VARCHAR, method VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_88 WHERE res = \"draw\" AND opponent = \"mari kaneko\"", "question": "What is the smallest round resulting in a draw with an Opponent of mari kaneko?", "context": "CREATE TABLE table_name_88 (round INTEGER, res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT ship_type FROM table_name_86 WHERE nat = \"se\"", "question": "What ship type was from SE?", "context": "CREATE TABLE table_name_86 (ship_type VARCHAR, nat VARCHAR)"}, {"answer": "SELECT principal_victims FROM table_name_35 WHERE nat = \"us\" AND where_sunk = \"mississippi river near memphis\"", "question": "Who were the victims of the US ship that sank in the Mississippi River near Memphis?", "context": "CREATE TABLE table_name_35 (principal_victims VARCHAR, nat VARCHAR, where_sunk VARCHAR)"}, {"answer": "SELECT estimate FROM table_name_78 WHERE date = \"april 27, 1865\"", "question": "What was the estimated number of victims for the April 27, 1865 sinking?", "context": "CREATE TABLE table_name_78 (estimate VARCHAR, date VARCHAR)"}, {"answer": "SELECT nat FROM table_name_26 WHERE estimate = \"372\"", "question": "Which nation was the ship from that had 372 victims?", "context": "CREATE TABLE table_name_26 (nat VARCHAR, estimate VARCHAR)"}, {"answer": "SELECT ship_type FROM table_name_66 WHERE name = \"hmsst george\"", "question": "What type of ship was the HMSST George?", "context": "CREATE TABLE table_name_66 (ship_type VARCHAR, name VARCHAR)"}, {"answer": "SELECT region FROM table_name_91 WHERE format = \"cd maxi\"", "question": "Which region had the CD maxi format?", "context": "CREATE TABLE table_name_91 (region VARCHAR, format VARCHAR)"}, {"answer": "SELECT format FROM table_name_84 WHERE catalog = \"887 847-1\" AND date = \"september 1990\"", "question": "What was the format in September 1990 for Catalog 887 847-1?", "context": "CREATE TABLE table_name_84 (format VARCHAR, catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_14 WHERE region = \"japan\"", "question": "What was the label in Japan?", "context": "CREATE TABLE table_name_14 (label VARCHAR, region VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_9 WHERE opponent_in_final = \"mansour bahrami eric winogradsky\"", "question": "In which Tournament was Mansour Bahrami Eric Winogradsky", "context": "CREATE TABLE table_name_9 (tournament VARCHAR, opponent_in_final VARCHAR)"}, {"answer": "SELECT position FROM table_name_28 WHERE overall < 421 AND player = \"matt clark\"", "question": "What position was less than 421 overall played by Matt Clark?", "context": "CREATE TABLE table_name_28 (position VARCHAR, overall VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_91 WHERE player = \"louis coleman\"", "question": "What was the lowest overall for Louis Coleman?", "context": "CREATE TABLE table_name_91 (overall INTEGER, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_94 WHERE player = \"matt clark\"", "question": "What round did Matt Clark play?", "context": "CREATE TABLE table_name_94 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_45 WHERE overall > 421 AND mlb_team = \"st. louis cardinals\"", "question": "Which position was more than 421 overall for the St. Louis Cardinals?", "context": "CREATE TABLE table_name_45 (position VARCHAR, overall VARCHAR, mlb_team VARCHAR)"}, {"answer": "SELECT round FROM table_name_92 WHERE overall < 545 AND mlb_team = \"san francisco giants\"", "question": "What round was less than 545 overall for San Francisco Giants?", "context": "CREATE TABLE table_name_92 (round VARCHAR, overall VARCHAR, mlb_team VARCHAR)"}, {"answer": "SELECT gender FROM table_name_53 WHERE area = \"swannanoa\"", "question": "What Gender has the area of swannanoa?", "context": "CREATE TABLE table_name_53 (gender VARCHAR, area VARCHAR)"}, {"answer": "SELECT years FROM table_name_13 WHERE decile < 8 AND area = \"southbrook\"", "question": "What years had the decile smaller than 8 in the area of southbrook?", "context": "CREATE TABLE table_name_13 (years VARCHAR, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_54 WHERE try_bonus = \"4\" AND lost = \"10\"", "question": "For a Lost of 10 and a Try Bonus of 4, what are the points against them?", "context": "CREATE TABLE table_name_54 (points_against VARCHAR, try_bonus VARCHAR, lost VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_24 WHERE points_against = \"429\"", "question": "Having 429 points against, what is the Tries Against?", "context": "CREATE TABLE table_name_24 (tries_against VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_47 WHERE try_bonus = \"8\"", "question": "With a Try Bonus of 8, what is the Tries Against?", "context": "CREATE TABLE table_name_47 (tries_against VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT club FROM table_name_16 WHERE try_bonus = \"8\"", "question": "What club has a Try Bonus of 8?", "context": "CREATE TABLE table_name_16 (club VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT played FROM table_name_56 WHERE try_bonus = \"2\" AND club = \"pontyberem rfc\"", "question": "For Pontyberem RFC that has a Try Bonus of 2, what is the played?", "context": "CREATE TABLE table_name_56 (played VARCHAR, try_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_50 WHERE points_against = \"400\"", "question": "With a club that has 400 Points against, what are the points?", "context": "CREATE TABLE table_name_50 (points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_6 WHERE goals_against > 60 AND losses < 29", "question": "When goals against is greater than 60 and losses less than 29, what is the highest played?", "context": "CREATE TABLE table_name_6 (played INTEGER, goals_against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT club FROM table_name_73 WHERE goals_against < 60 AND goal_difference < 1 AND position = 8", "question": "What club has less than 60 goals against, a goal difference smaller than 1, and a position of 8?", "context": "CREATE TABLE table_name_73 (club VARCHAR, position VARCHAR, goals_against VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_57 WHERE week = \"14\"", "question": "Where did they play in week 14?", "context": "CREATE TABLE table_name_57 (game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_49 WHERE attendance = \"48,121\"", "question": "Who was the opponent when 48,121 people attended?", "context": "CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_54 WHERE attendance = \"50,514\"", "question": "What was the score when 50,514 people were in attendance?", "context": "CREATE TABLE table_name_54 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_59 WHERE week = \"divisional playoffs\"", "question": "Where did they have the divisional playoffs?", "context": "CREATE TABLE table_name_59 (game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_21 WHERE attendance = \"54,418\"", "question": "What is the result when there was an attendance of 54,418?", "context": "CREATE TABLE table_name_21 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT year_active FROM table_name_83 WHERE role = \"rachel\"", "question": "What year was the role of Rachel active in TV?", "context": "CREATE TABLE table_name_83 (year_active VARCHAR, role VARCHAR)"}, {"answer": "SELECT SUM(population_112008) FROM table_name_62 WHERE urban_area = \"t\u00f8nsberg\" AND population_112006 > 45.447", "question": "Name the sum of population 1.1.2008 for t\u00f8nsberg and population 1.1.2006 more than 45.447", "context": "CREATE TABLE table_name_62 (population_112008 INTEGER, urban_area VARCHAR, population_112006 VARCHAR)"}, {"answer": "SELECT MIN(population_112008) FROM table_name_62 WHERE population_per_square_km = 1.957 AND population_112006 < 12.67", "question": "Name the least population 1.1.2008 with population per square km of 1.957 and population 1.1.2006 less than 12.67", "context": "CREATE TABLE table_name_62 (population_112008 INTEGER, population_per_square_km VARCHAR, population_112006 VARCHAR)"}, {"answer": "SELECT COUNT(population_per_square_km) FROM table_name_97 WHERE population_112006 = 12.757", "question": "Name the total number of population per square km with population 1.12006 of 12.757", "context": "CREATE TABLE table_name_97 (population_per_square_km VARCHAR, population_112006 VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_4 WHERE engine = \"climax straight-4\" AND year < 1958", "question": "What is the average Points when the engine was a climax straight-4 earlier than 1958?", "context": "CREATE TABLE table_name_4 (points INTEGER, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_94 WHERE engine = \"maserati straight-4\" AND year > 1959", "question": "What is the number of points for the maserati straight-4 engine, later than 1959?", "context": "CREATE TABLE table_name_94 (points VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_49 WHERE chassis = \"jbw\" AND year = 1960", "question": "What engine had a JBW chassis in 1960?", "context": "CREATE TABLE table_name_49 (engine VARCHAR, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_53 WHERE chassis = \"jbw\" AND engine = \"climax straight-4\" AND year > 1961", "question": "What is the highest points for the JBW chassis with a climax straight-4 engine, later than 1961?", "context": "CREATE TABLE table_name_53 (points INTEGER, year VARCHAR, chassis VARCHAR, engine VARCHAR)"}, {"answer": "SELECT engine FROM table_name_83 WHERE year = 1961", "question": "What is the name of the engine in 1961?", "context": "CREATE TABLE table_name_83 (engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE record = \"54-55\"", "question": "On which date were the 2003 Toronto Blue Jays 54-55?", "context": "CREATE TABLE table_name_5 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_86 WHERE opponent = \"mariners\" AND record = \"62-64\"", "question": "What is the average attendance of the Mariners' attendance when their record was 62-64?", "context": "CREATE TABLE table_name_86 (attendance INTEGER, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE attendance > 9 OFFSET 430", "question": "What was the score when the Blue Jays had an attendance larger than 9,430?", "context": "CREATE TABLE table_name_25 (score VARCHAR, attendance INTEGER)"}, {"answer": "SELECT structure_height_[m] FROM table_name_93 WHERE year < 1968 AND type = \"te\" AND country = \"united states\" AND name = \"fort peck dam\"", "question": "What is the height of the fort peck dam which was built before 1968, is located in the united states and has a dam type of TE ?", "context": "CREATE TABLE table_name_93 (structure_height_ VARCHAR, m VARCHAR, name VARCHAR, country VARCHAR, year VARCHAR, type VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_93 WHERE season < 2007", "question": "Who was the runner up before 2007?", "context": "CREATE TABLE table_name_93 (runner_up VARCHAR, season INTEGER)"}, {"answer": "SELECT season FROM table_name_46 WHERE champion = \"manresa\"", "question": "Which season was Manresa the champion?", "context": "CREATE TABLE table_name_46 (season VARCHAR, champion VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_74 WHERE engine = \"cosworth ca2006 2.4 v8 4 series\"", "question": "What year was the cosworth ca2006 2.4 v8 4 series used?", "context": "CREATE TABLE table_name_74 (year INTEGER, engine VARCHAR)"}, {"answer": "SELECT engine FROM table_name_40 WHERE chassis = \"mclaren mp4-20\"", "question": "What engine did the mclaren mp4-20 use?", "context": "CREATE TABLE table_name_40 (engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_79 WHERE engine = \"toyota rvx-07 2.4 v8\"", "question": "What team used the toyota rvx-07 2.4 v8 engine", "context": "CREATE TABLE table_name_79 (entrant VARCHAR, engine VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_19 WHERE points = \"2\"", "question": "in what year were 2 points scored?", "context": "CREATE TABLE table_name_19 (year INTEGER, points VARCHAR)"}, {"answer": "SELECT engine FROM table_name_86 WHERE points = \"17\"", "question": "What engine scored 17 points?", "context": "CREATE TABLE table_name_86 (engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_65 WHERE to_par > 13", "question": "What years won when the To par is more than 13?", "context": "CREATE TABLE table_name_65 (year_s__won VARCHAR, to_par INTEGER)"}, {"answer": "SELECT MAX(total) FROM table_name_78 WHERE country = \"australia\"", "question": "What is the highest Total for Australia?", "context": "CREATE TABLE table_name_78 (total INTEGER, country VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_96 WHERE country = \"united states\" AND to_par > 6 AND year_s__won = \"1996\"", "question": "What is the average Total for the United States with a To par more than 6 and 1996 was won?", "context": "CREATE TABLE table_name_96 (total INTEGER, year_s__won VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MIN(number) FROM table_name_8 WHERE film = \"raiders of the lost ark\" AND pieces = 277", "question": "Raiders of the Lost Ark had pieces of 277 for what lowest number?", "context": "CREATE TABLE table_name_8 (number INTEGER, film VARCHAR, pieces VARCHAR)"}, {"answer": "SELECT AVG(number) FROM table_name_54 WHERE pieces < 511 AND name = \"chauchilla cemetery battle\"", "question": "What is the number for Chauchilla Cemetery Battle with less than 511 pieces?", "context": "CREATE TABLE table_name_54 (number INTEGER, pieces VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(released) FROM table_name_15 WHERE pieces = 339 AND number < 7198", "question": "What was the earliest year with 339 pieces and a number smaller than 7198?", "context": "CREATE TABLE table_name_15 (released INTEGER, pieces VARCHAR, number VARCHAR)"}, {"answer": "SELECT competition FROM table_name_4 WHERE date = \"august 20, 2004\"", "question": "What is the name of the competition that was held on August 20, 2004?", "context": "CREATE TABLE table_name_4 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_64 WHERE result = \"draw\"", "question": "Where was the game held that resulted in a draw?", "context": "CREATE TABLE table_name_64 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_78 WHERE date = \"august 20, 2004\"", "question": "Where was the game held on August 20, 2004?", "context": "CREATE TABLE table_name_78 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_15 WHERE score = \"9-2\"", "question": "Where was the game held that resulted in a score of 9-2?", "context": "CREATE TABLE table_name_15 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_46 WHERE rank > 12 AND gold > 4", "question": "What is the sum of total with a Rank larger than 12, and a Gold larger than 4?", "context": "CREATE TABLE table_name_46 (total VARCHAR, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_5 WHERE rank = 12 AND silver < 2", "question": "What is the smallest bronze with a Rank of 12, and a Silver smaller than 2?", "context": "CREATE TABLE table_name_5 (bronze INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_37 WHERE silver < 2 AND gold = 1 AND nation = \"western isles\" AND total > 6", "question": "What is the smallest bronze with a Silver smaller than 2, and a Gold of 1, and a Nation of western isles, and a Total larger than 6?", "context": "CREATE TABLE table_name_37 (bronze INTEGER, total VARCHAR, nation VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_69 WHERE total = 15 AND gold < 2", "question": "What is the average bronze with a total of 15 and less than 2 gold?", "context": "CREATE TABLE table_name_69 (bronze INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_34 WHERE nation = \"gotland\" AND gold > 23", "question": "What is the total rank with a Nation of gotland, and a Gold larger than 23?", "context": "CREATE TABLE table_name_34 (rank VARCHAR, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_9 WHERE goals_against > 42", "question": "for a Goals Against greater than 42 what is the number of losses?", "context": "CREATE TABLE table_name_9 (losses INTEGER, goals_against INTEGER)"}, {"answer": "SELECT MAX(losses) FROM table_name_19 WHERE games_played = 8 AND goals_for < 48", "question": "for goals less than 48 and 8 games played what is the count of losses?", "context": "CREATE TABLE table_name_19 (losses INTEGER, games_played VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_28 WHERE goals_against > 39 AND wins < 4", "question": "what is the number of losses with wins less than 4 and goals against more than 39?", "context": "CREATE TABLE table_name_28 (losses VARCHAR, goals_against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT years FROM table_name_23 WHERE area = \"makikihi\"", "question": "What years does the school have that's in Makikihi?", "context": "CREATE TABLE table_name_23 (years VARCHAR, area VARCHAR)"}, {"answer": "SELECT area FROM table_name_75 WHERE name = \"morven school\"", "question": "In what area is Morven School?", "context": "CREATE TABLE table_name_75 (area VARCHAR, name VARCHAR)"}, {"answer": "SELECT years FROM table_name_85 WHERE roll = 33", "question": "What years does the school have with a roll of 33?", "context": "CREATE TABLE table_name_85 (years VARCHAR, roll VARCHAR)"}, {"answer": "SELECT name FROM table_name_15 WHERE status = \"final cast\" AND last_performance = \"13 june 2009\"", "question": "What is the name of the actor who played Billy Elliot in the Final Cast with a Last Performance of 13 June 2009?", "context": "CREATE TABLE table_name_15 (name VARCHAR, status VARCHAR, last_performance VARCHAR)"}, {"answer": "SELECT first_performance FROM table_name_38 WHERE status = \"original cast\" AND name = \"rhys kosakowski\"", "question": "What is the date of the First Performance of Rhys Kosakowski as Billy Elliot in the Original Cast?", "context": "CREATE TABLE table_name_38 (first_performance VARCHAR, status VARCHAR, name VARCHAR)"}, {"answer": "SELECT style FROM table_name_50 WHERE first_performance = \"15 november 2007\"", "question": "What is the Style of the First Performance of Billy Elliot on 15 November 2007?", "context": "CREATE TABLE table_name_50 (style VARCHAR, first_performance VARCHAR)"}, {"answer": "SELECT last_performance FROM table_name_3 WHERE name = \"rarmian newton\"", "question": "What is the date of the Last Performance of Rarmian Newton as Billy Elliot?", "context": "CREATE TABLE table_name_3 (last_performance VARCHAR, name VARCHAR)"}, {"answer": "SELECT last_performance FROM table_name_7 WHERE style = \"ballet\" AND name = \"rhys kosakowski\"", "question": "What is the date of the Last Ballet Style Performance of Rhys kosakowski as Billy Elliot?", "context": "CREATE TABLE table_name_7 (last_performance VARCHAR, style VARCHAR, name VARCHAR)"}, {"answer": "SELECT last_performance FROM table_name_46 WHERE status = \"past replacement\"", "question": "What is the date of the Last Performance of Billy Elliot with a Cast Status of past replacement?", "context": "CREATE TABLE table_name_46 (last_performance VARCHAR, status VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_1 WHERE gold = 0 AND silver < 3 AND rank > 9 AND total = 1", "question": "Gold of 0, and a Silver smaller than 3, and a Rank larger than 9, and a Total of 1 has how many numbers of bronze?", "context": "CREATE TABLE table_name_1 (bronze VARCHAR, total VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_84 WHERE bronze > 2 AND rank = 4 AND total > 7", "question": "Bronze larger than 2, and a Rank of 4, and a Total larger than 7 has how many numbers of gold?", "context": "CREATE TABLE table_name_84 (gold INTEGER, total VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_83 WHERE bronze < 3 AND total < 2 AND gold > 1", "question": "Bronze smaller than 3, and a Total smaller than 2, and a Gold larger than 1 has how many average silvers?", "context": "CREATE TABLE table_name_83 (silver INTEGER, gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_19 WHERE gold = 1 AND total < 4 AND bronze < 0", "question": "Gold of 1, and a Total smaller than 4, and a Bronze smaller than 0 has the lowest silver?", "context": "CREATE TABLE table_name_19 (silver INTEGER, bronze VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE record = \"3-3\"", "question": "Name the date for record 3-3", "context": "CREATE TABLE table_name_64 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_60 WHERE date = \"april 27\"", "question": "Name the opponent on april 27", "context": "CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_52 WHERE date = \"april 22\"", "question": "Name the record for april 22", "context": "CREATE TABLE table_name_52 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_15 WHERE date = \"april 17\"", "question": "Name the attendance on april 17", "context": "CREATE TABLE table_name_15 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE attendance = \"postponed\"", "question": "Name the date for postponed attendance", "context": "CREATE TABLE table_name_7 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_20 WHERE date = \"april 6\"", "question": "Name the record for april 6", "context": "CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT engine FROM table_name_50 WHERE entrant = \"garvey team lotus\"", "question": "What engine does Garvey Team Lotus use?", "context": "CREATE TABLE table_name_50 (engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT population_est__2012_ FROM table_name_61 WHERE capital = \"santa fe\"", "question": "What is the 2012 population for the state whose capital is Santa Fe?", "context": "CREATE TABLE table_name_61 (population_est__2012_ VARCHAR, capital VARCHAR)"}, {"answer": "SELECT capital FROM table_name_27 WHERE largest_city = \"burlington\"", "question": "What is the capital for the state that has the largest city of Burlington?", "context": "CREATE TABLE table_name_27 (capital VARCHAR, largest_city VARCHAR)"}, {"answer": "SELECT COUNT(population_est__2012_) FROM table_name_53 WHERE capital = \"montpelier\" AND house_seat_s_ > 1", "question": "How many populations have a capital of Montpelier and more than 1 House seat?", "context": "CREATE TABLE table_name_53 (population_est__2012_ VARCHAR, capital VARCHAR, house_seat_s_ VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_52 WHERE opponent = \"devil rays\" AND score = \"2 - 1 (10)\"", "question": "On games against the Devil Rays and a score of 2 - 1 (10), what was the attendance?", "context": "CREATE TABLE table_name_52 (attendance INTEGER, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_95 WHERE record = \"34-44\"", "question": "On the game that put the team at 34-44, what was the attendance?", "context": "CREATE TABLE table_name_95 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_51 WHERE record = \"27-32\"", "question": "What was the score of the game that put the team at 27-32?", "context": "CREATE TABLE table_name_51 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT venue FROM table_name_47 WHERE date = \"11 october 2008\"", "question": "In which venue did the competition on 11 October 2008 take place?", "context": "CREATE TABLE table_name_47 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_88 WHERE nation = \"france\" AND rank > 8", "question": "What was the average number of silver medals won by France when they are ranked higher than 8?", "context": "CREATE TABLE table_name_88 (silver INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_62 WHERE date = \"april 26\"", "question": "Who was their Opponent on April 26?", "context": "CREATE TABLE table_name_62 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_47 WHERE venue = \"berlin, germany\"", "question": "What competition took place in Berlin, Germany?", "context": "CREATE TABLE table_name_47 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_80 WHERE competition = \"pan american games\"", "question": "Where were the Pan American Games held?", "context": "CREATE TABLE table_name_80 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_91 WHERE year = 2003", "question": "What venue hosted the 2003 event?", "context": "CREATE TABLE table_name_91 (venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_34 WHERE time = \"2:35\"", "question": "What game had the highest score and a time of 2:35?", "context": "CREATE TABLE table_name_34 (game INTEGER, time VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_93 WHERE date = \"october 17\" AND attendance > 49 OFFSET 347", "question": "What game, played on October 17 in front of 49,347 fans, had the lowest score?", "context": "CREATE TABLE table_name_93 (game INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(total_foreign_born__1000_) FROM table_name_53 WHERE born_in_a_non_eu_state__1000_ = 685 AND total_population__1000_ > 10 OFFSET 666", "question": "What is the highest Total Foreign-born (1000) from a non EU state (1000) of 685 and a population (1000) smaller than 10,666?", "context": "CREATE TABLE table_name_53 (total_foreign_born__1000_ INTEGER, born_in_a_non_eu_state__1000_ VARCHAR, total_population__1000_ VARCHAR)"}, {"answer": "SELECT MAX(born_in_a_non_eu_state__1000_) FROM table_name_20 WHERE country = \"denmark\" AND total_population__1000_ < 5 OFFSET 534", "question": "What is the highest number born in a none EU state (1000) from Denmark with a total population (1000) less than 5,534?", "context": "CREATE TABLE table_name_20 (born_in_a_non_eu_state__1000_ INTEGER, country VARCHAR, total_population__1000_ VARCHAR)"}, {"answer": "SELECT SUM(total_foreign_born__1000_) FROM table_name_7 WHERE country = \"sweden\" AND born_in_other_eu_state__1000_ > 477", "question": "How many Foreign-born (1000) are from Sweden and born in some other EU state (1000) larger than 477?", "context": "CREATE TABLE table_name_7 (total_foreign_born__1000_ INTEGER, country VARCHAR, born_in_other_eu_state__1000_ VARCHAR)"}, {"answer": "SELECT MAX(total_population__1000_) FROM table_name_79 WHERE country = \"sweden\" AND born_in_a_non_eu_state__1000_ < 859", "question": "What is the greatest Total population (1000) from Sweden and born in a non EU state (1000) less than 859?", "context": "CREATE TABLE table_name_79 (total_population__1000_ INTEGER, country VARCHAR, born_in_a_non_eu_state__1000_ VARCHAR)"}, {"answer": "SELECT race FROM table_name_98 WHERE position = \"dnf\"", "question": "Whice race ended with a DNF?", "context": "CREATE TABLE table_name_98 (race VARCHAR, position VARCHAR)"}, {"answer": "SELECT race FROM table_name_13 WHERE time = \"01:46:59.69\"", "question": "Which race ended with a time of 01:46:59.69?", "context": "CREATE TABLE table_name_13 (race VARCHAR, time VARCHAR)"}, {"answer": "SELECT speed FROM table_name_10 WHERE race = \"superbike\"", "question": "What was the speed of the Superbike race?", "context": "CREATE TABLE table_name_10 (speed VARCHAR, race VARCHAR)"}, {"answer": "SELECT speed FROM table_name_29 WHERE position = \"2nd\" AND time = \"01:13:03.39\"", "question": "What was the speed of the race that ended in 2nd place and had a time of 01:13:03.39?", "context": "CREATE TABLE table_name_29 (speed VARCHAR, position VARCHAR, time VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_81 WHERE 2007 = \"3r\"", "question": "How many sets were played in the 2011 Tournament in which there were 3R in 2007?", "context": "CREATE TABLE table_name_81 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_10 WHERE tournament = \"australian open\"", "question": "How many sets were in the 2011 Australian Open Tournament?", "context": "CREATE TABLE table_name_10 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_60 WHERE 2011 = \"4r\" AND 2008 = \"2r\"", "question": "How many sets were played in the tournament that had 4R in 2011 and 2R in 2008?", "context": "CREATE TABLE table_name_60 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_4 WHERE 2008 = \"2r\"", "question": "How many sets were played in the 2011 tournament, in which 2R were played in 2008?", "context": "CREATE TABLE table_name_4 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_8 WHERE 2013 = \"1r\"", "question": "Which tournament had 1R in 2013?", "context": "CREATE TABLE table_name_8 (tournament VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_89 WHERE 2011 = \"4r\" AND 2009 = \"2r\"", "question": "How many sets were played in 2007 at the tournament that had 4R in 2011 and 2R in 2009?", "context": "CREATE TABLE table_name_89 (Id VARCHAR)"}, {"answer": "SELECT record FROM table_name_11 WHERE date = \"december 24, 2005\"", "question": "What was the record at the game held on December 24, 2005?", "context": "CREATE TABLE table_name_11 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE game_site = \"invesco field\"", "question": "What was the date of the game held at Invesco Field?", "context": "CREATE TABLE table_name_8 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT nfl_recap FROM table_name_70 WHERE date = \"december 24, 2005\"", "question": "What was the NFL Recap of the game held on December 24, 2005?", "context": "CREATE TABLE table_name_70 (nfl_recap VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE date = \"december 24, 2005\"", "question": "Who was the opponent at the game held on December 24, 2005?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_37 WHERE attendance = \"90,138\"", "question": "Which week's game had an attendance of 90,138?", "context": "CREATE TABLE table_name_37 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_2 WHERE points > 1", "question": "What is the total years with more than 1 points?", "context": "CREATE TABLE table_name_2 (year INTEGER, points INTEGER)"}, {"answer": "SELECT year FROM table_name_73 WHERE points < 1 AND engine = \"cosworth v8\" AND entrant = \"jolly club switzerland\"", "question": "When were there less than 1 point with a cosworth v8 engine in jolly club switzerland?", "context": "CREATE TABLE table_name_73 (year VARCHAR, entrant VARCHAR, points VARCHAR, engine VARCHAR)"}, {"answer": "SELECT home FROM table_name_17 WHERE away = \"(2-1)\"", "question": "Which home team has an Away of (2-1)?", "context": "CREATE TABLE table_name_17 (home VARCHAR, away VARCHAR)"}, {"answer": "SELECT away FROM table_name_46 WHERE plyff = \"(0-0)\" AND opponent = \"sioux city bandits\"", "question": "Which away team has a playoff record of (0-0) and played against Sioux City Bandits?", "context": "CREATE TABLE table_name_46 (away VARCHAR, plyff VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home FROM table_name_3 WHERE plyff = \"(0-0)\" AND opponent = \"la crosse spartans\"", "question": "Which home team has a playoff record of (0-0) and played La Crosse Spartans?", "context": "CREATE TABLE table_name_3 (home VARCHAR, plyff VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT plyff FROM table_name_21 WHERE opponent = \"billings outlaws\"", "question": "What is the Plyff team that plays the Billings Outlaws?", "context": "CREATE TABLE table_name_21 (plyff VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT overall FROM table_name_74 WHERE plyff = \"(0-0)\" AND home = \"(0-1)\" AND opponent = \"green bay blizzard\"", "question": "Which team has an overall playoff of (0-0), a home record of (0-1) and played the Green Bay Blizzard team?", "context": "CREATE TABLE table_name_74 (overall VARCHAR, opponent VARCHAR, plyff VARCHAR, home VARCHAR)"}, {"answer": "SELECT overall FROM table_name_71 WHERE plyff = \"(0-1)\" AND away = \"(1-1)\"", "question": "Which Overall has a playoff record of (0-1) and an away record of (1-1)?", "context": "CREATE TABLE table_name_71 (overall VARCHAR, plyff VARCHAR, away VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_20 WHERE date = \"april 14\"", "question": "Which opponent has a Date of april 14?", "context": "CREATE TABLE table_name_20 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_88 WHERE score = \"3-5\"", "question": "Which attendance has a Score of 3-5?", "context": "CREATE TABLE table_name_88 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE record = \"7-9\"", "question": "Which Date has a Record of 7-9?", "context": "CREATE TABLE table_name_48 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE attendance = \"30,612\"", "question": "Which Date has an Attendance of 30,612?", "context": "CREATE TABLE table_name_63 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE opponent = \"@ mariners\" AND loss = \"hern\u00e1ndez (0-1)\"", "question": "Which Date has an Opponent of @ mariners, and a Loss of hern\u00e1ndez (0-1)?", "context": "CREATE TABLE table_name_25 (date VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_83 WHERE loss = \"mays (0-3)\"", "question": "Which Record that has a Loss of mays (0-3)?", "context": "CREATE TABLE table_name_83 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT week FROM table_name_99 WHERE final_score = \"6\u201326\"", "question": "What week was the final score 6\u201326?", "context": "CREATE TABLE table_name_99 (week VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_33 WHERE visiting_team = \"miami dolphins\"", "question": "Who was the host team when the Miami Dolphins were the visiting team?", "context": "CREATE TABLE table_name_33 (host_team VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_28 WHERE week > 15", "question": "What was the stadium that held that game after week 15?", "context": "CREATE TABLE table_name_28 (stadium VARCHAR, week INTEGER)"}, {"answer": "SELECT MAX(fa_cup) FROM table_name_74 WHERE championship = 18 AND total = 19", "question": "Name the most FA cup for championship of 18 and total of 19", "context": "CREATE TABLE table_name_74 (fa_cup INTEGER, championship VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(league_cup) FROM table_name_38 WHERE total > 19 AND fa_cup > 6", "question": "Name the most league cups for total more than 19 and FA cups more than 6", "context": "CREATE TABLE table_name_38 (league_cup INTEGER, total VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE year > 2007 AND country = \"england\"", "question": "What is the Score, when the Year is after 2007, and when the Country is England?", "context": "CREATE TABLE table_name_5 (score VARCHAR, year VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_16 WHERE venue = \"l\u00fcbker golf resort\"", "question": "What is the latest Year, when the Venue is L\u00fcbker Golf Resort?", "context": "CREATE TABLE table_name_16 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE venue = \"l\u00fcbker golf resort\"", "question": "What is the Score, when the Venue is L\u00fcbker Golf Resort?", "context": "CREATE TABLE table_name_37 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_19 WHERE winner = \"iain pyman\"", "question": "What is the Venue, when the Winner is iain pyman?", "context": "CREATE TABLE table_name_19 (venue VARCHAR, winner VARCHAR)"}, {"answer": "SELECT final_round FROM table_name_22 WHERE first_round = 20", "question": "Which final round had a first round of 20?", "context": "CREATE TABLE table_name_22 (final_round VARCHAR, first_round VARCHAR)"}, {"answer": "SELECT final_round FROM table_name_61 WHERE weight = 245", "question": "What final round had a weight of 245?", "context": "CREATE TABLE table_name_61 (final_round VARCHAR, weight VARCHAR)"}, {"answer": "SELECT pos FROM table_name_2 WHERE team = \"new york knicks\"", "question": "What is the pos for the New York Knicks?", "context": "CREATE TABLE table_name_2 (pos VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(first_round) FROM table_name_29 WHERE weight < 229 AND team = \"utah jazz\"", "question": "What is the average first round for Utah Jazz team, with a weight smaller than 229?", "context": "CREATE TABLE table_name_29 (first_round INTEGER, weight VARCHAR, team VARCHAR)"}, {"answer": "SELECT pos FROM table_name_37 WHERE weight < 205", "question": "What is the pos with weight less than 205?", "context": "CREATE TABLE table_name_37 (pos VARCHAR, weight INTEGER)"}, {"answer": "SELECT gsr_class FROM table_name_49 WHERE type = \"0-4-2t\"", "question": "What GSR class is associated with a 0-4-2t type?", "context": "CREATE TABLE table_name_49 (gsr_class VARCHAR, type VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_43 WHERE fleet_numbers = \"wlwr 2, 4, 11\"", "question": "Who manufactured fleet numbers of wlwr 2, 4, 11?", "context": "CREATE TABLE table_name_43 (manufacturer VARCHAR, fleet_numbers VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_8 WHERE name = \"dwight freeney\" AND round < 1", "question": "Name the most overall for dwight freeney with round less than 1", "context": "CREATE TABLE table_name_8 (overall INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_52 WHERE overall = 204", "question": "Name the most pick # for overall of 204", "context": "CREATE TABLE table_name_52 (pick__number INTEGER, overall VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE game = 6", "question": "What was the date for game 6?", "context": "CREATE TABLE table_name_66 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_93 WHERE date = \"april 17\"", "question": "Who was the visitor for the April 17 game?", "context": "CREATE TABLE table_name_93 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_32 WHERE year > 1990 AND entrant = \"fondmetal f1 spa\"", "question": "Which chassis did fondmetal f1 spa use after 1990?", "context": "CREATE TABLE table_name_32 (chassis VARCHAR, year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_11 WHERE engine = \"ilmor v10\" AND year > 1992", "question": "What points did the ilmor v10 engine get after 1992?", "context": "CREATE TABLE table_name_11 (points INTEGER, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT place FROM table_name_65 WHERE player = \"tim clark\"", "question": "Name the place for tim clark", "context": "CREATE TABLE table_name_65 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_98 WHERE country = \"south africa\" AND player = \"retief goosen\"", "question": "Name the place for south africa and retief goosen", "context": "CREATE TABLE table_name_98 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_88 WHERE place = \"t10\" AND score = 72 - 71 = 143", "question": "Name the To par for t10 place and score of 72-71=143", "context": "CREATE TABLE table_name_88 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE method = \"submission\"", "question": "Which Opponent has a Method of submission?", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, method VARCHAR)"}, {"answer": "SELECT res FROM table_name_40 WHERE event = \"ufc 122\"", "question": "Which Res has an Event of UFC 122?", "context": "CREATE TABLE table_name_40 (res VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_15 WHERE opponent = \"st. louis cardinals\"", "question": "What was the record after the game against the St. Louis Cardinals?", "context": "CREATE TABLE table_name_15 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_59 WHERE game_site = \"veterans stadium\" AND week < 1", "question": "How many attendance numbers are associated with the site of Veterans Stadium before week 1?", "context": "CREATE TABLE table_name_59 (attendance VARCHAR, game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT future_stem FROM table_name_66 WHERE imperfect_stem = \"hartzen\"", "question": "What is the future stem for the word that has an imperfect stem of hartzen?", "context": "CREATE TABLE table_name_66 (future_stem VARCHAR, imperfect_stem VARCHAR)"}, {"answer": "SELECT imperfect_stem FROM table_name_93 WHERE future_stem = \"ikusiko\"", "question": "What is the imperfect stem for the word that has a future stem of ikusiko?", "context": "CREATE TABLE table_name_93 (imperfect_stem VARCHAR, future_stem VARCHAR)"}, {"answer": "SELECT short_stem FROM table_name_56 WHERE perfect_stem = \"poztu\"", "question": "What is the short stem for the word that has a perfect stem of poztu?", "context": "CREATE TABLE table_name_56 (short_stem VARCHAR, perfect_stem VARCHAR)"}, {"answer": "SELECT imperfect_stem FROM table_name_74 WHERE meaning = \"'take away, remove'\"", "question": "What is the imperfect stem of the word that means 'take away, remove'?", "context": "CREATE TABLE table_name_74 (imperfect_stem VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT perfect_stem FROM table_name_79 WHERE future_stem = \"emango\"", "question": "What is the perfect stem for the word that has a future stem of emango?", "context": "CREATE TABLE table_name_79 (perfect_stem VARCHAR, future_stem VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_51 WHERE year > 2012 AND outcome = \"runner-up\"", "question": "Who was the opponent of the runner-up after 2012?", "context": "CREATE TABLE table_name_51 (opponents VARCHAR, year VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT partner FROM table_name_12 WHERE year > 2012 AND outcome = \"winner\"", "question": "Who was the partner of the winner after 2012?", "context": "CREATE TABLE table_name_12 (partner VARCHAR, year VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_76 WHERE date = \"6 march 2000\"", "question": "Name the outcome for 6 march 2000", "context": "CREATE TABLE table_name_76 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE surface = \"clay\" AND score = \"6\u20131, 6\u20132\" AND outcome = \"runner-up\"", "question": "Name the date when the surface was clay and the score was 6\u20131, 6\u20132 and runner-up", "context": "CREATE TABLE table_name_6 (date VARCHAR, outcome VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_4 WHERE date = \"26 may 1997\"", "question": "Name the score for 26 may 1997", "context": "CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_61 WHERE outcome = \"winner\" AND surface = \"clay\" AND opponent = \"aranza salut\"", "question": "Name the tournament for outcome of winner and clay surface with opponent of aranza salut", "context": "CREATE TABLE table_name_61 (tournament VARCHAR, opponent VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT loss FROM table_name_15 WHERE date = \"july 16\"", "question": "Who did the Blue Jays lose to on July 16?", "context": "CREATE TABLE table_name_15 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner AS Men FROM table_name_92 WHERE season = \"1992/93\"", "question": "Who had the men's win in the 1992/93 season?", "context": "CREATE TABLE table_name_92 (winner VARCHAR, season VARCHAR)"}, {"answer": "SELECT winner AS Women FROM table_name_68 WHERE winner = \"norway\" AND season = \"2001/02\"", "question": "Who had the women's win when Norway was the winner overall in season 2001/02?", "context": "CREATE TABLE table_name_68 (winner VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_29 WHERE qual = \"122.951\"", "question": "How many laps did Duke Nelson complete when his qualifying time was 122.951?", "context": "CREATE TABLE table_name_29 (laps INTEGER, qual VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_9 WHERE qual = \"136.498\"", "question": "How many laps did Duke Nelson complete when his qualifying time was 136.498?", "context": "CREATE TABLE table_name_9 (laps INTEGER, qual VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_37 WHERE year < 1953 AND chassis = \"moore\"", "question": "What entrant drove a car with a Moore chassis prior to 1953?", "context": "CREATE TABLE table_name_37 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT opponent_team FROM table_name_61 WHERE result = \"1-2\"", "question": "What opponent was in the match that resulted in 1-2?", "context": "CREATE TABLE table_name_61 (opponent_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_42 WHERE 2009 = \"a\"", "question": "Which tournament has a value of a for 2009?", "context": "CREATE TABLE table_name_42 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_89 WHERE 2009 = \"a\" AND 2013 = \"4r\"", "question": "What is the value for 2011 when `a` is the value for 2009, and 4r is the value for 2013?", "context": "CREATE TABLE table_name_89 (Id VARCHAR)"}, {"answer": "SELECT result FROM table_name_60 WHERE hometown = \"chicago, illinois\"", "question": "What is the result for Chicago, Illinois?", "context": "CREATE TABLE table_name_60 (result VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT raised FROM table_name_35 WHERE original_team = \"hydra\" AND hometown = \"bronx, new york\"", "question": "How much did the Hydra team from Bronx, New York raise?", "context": "CREATE TABLE table_name_35 (raised VARCHAR, original_team VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_26 WHERE opponent = \"atlanta braves\" AND date = \"september 9\"", "question": "Name the attendance for atlanta braves opponent for september 9", "context": "CREATE TABLE table_name_26 (attendance INTEGER, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT years_active FROM table_name_1 WHERE caps > 11 AND country = \"new zealand\"", "question": "What were the years active of the player from New Zealand with more than 11 caps?", "context": "CREATE TABLE table_name_1 (years_active VARCHAR, caps VARCHAR, country VARCHAR)"}, {"answer": "SELECT goals FROM table_name_6 WHERE country = \"france\"", "question": "How many goals did a player from France have?", "context": "CREATE TABLE table_name_6 (goals VARCHAR, country VARCHAR)"}, {"answer": "SELECT goals FROM table_name_4 WHERE years_active = \"2006\"", "question": "How many goals did a player active since 2006 have?", "context": "CREATE TABLE table_name_4 (goals VARCHAR, years_active VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_52 WHERE source = \"leeds united\" AND moving_from = \"motherwell\"", "question": "What is the transfer window of the Leeds United source with a move from Motherwell?", "context": "CREATE TABLE table_name_52 (transfer_window VARCHAR, source VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT source FROM table_name_43 WHERE moving_from = \"swindon town\"", "question": "What is the source of a move from Swindon Town?", "context": "CREATE TABLE table_name_43 (source VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT country FROM table_name_45 WHERE transfer_window = \"winter\" AND ends > 2009 AND moving_from = \"bolton wanderers\"", "question": "What is the name of the country that has a transfer window of winter with an end after 2009 and moving from Bolton Wanderers?", "context": "CREATE TABLE table_name_45 (country VARCHAR, moving_from VARCHAR, transfer_window VARCHAR, ends VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_34 WHERE moving_from = \"port vale\"", "question": "What is the transfer fee of the move from Port Vale?", "context": "CREATE TABLE table_name_34 (transfer_fee VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT type FROM table_name_65 WHERE source = \"leeds united\" AND transfer_window = \"winter\" AND moving_from = \"northampton town\"", "question": "What is the type of the Leeds United source, winter transfer window and moving from Northampton town?", "context": "CREATE TABLE table_name_65 (type VARCHAR, moving_from VARCHAR, source VARCHAR, transfer_window VARCHAR)"}, {"answer": "SELECT source FROM table_name_97 WHERE moving_from = \"port vale\"", "question": "What is the source of the move from Port Vale?", "context": "CREATE TABLE table_name_97 (source VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_28 WHERE rank = 12 AND bronze < 2", "question": "What is the average silver medals a team ranked 12 with less than 2 bronze has?", "context": "CREATE TABLE table_name_28 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_6 WHERE bronze = 1 AND silver > 1 AND nation = \"finland\" AND gold < 0", "question": "What is the average rank Finland, which has 1 bronze, more than 1 silver, and less than 0 gold, has?", "context": "CREATE TABLE table_name_6 (rank INTEGER, gold VARCHAR, nation VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_62 WHERE total < 2 AND rank = 17 AND silver > 0", "question": "What is the lowest amount of gold a team with less than 2 total medals, ranked 17, and more than 0 silver medals, has?", "context": "CREATE TABLE table_name_62 (gold INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT captain FROM table_name_51 WHERE team = \"manchester city\"", "question": "Who is the captain of the manchester city team?", "context": "CREATE TABLE table_name_51 (captain VARCHAR, team VARCHAR)"}, {"answer": "SELECT captain FROM table_name_49 WHERE manager = \"joe royle\"", "question": "Which captain's manager is Joe Royle?", "context": "CREATE TABLE table_name_49 (captain VARCHAR, manager VARCHAR)"}, {"answer": "SELECT AVG(founded) FROM table_name_88 WHERE joined < 2008", "question": "Name the average founded with joined less than 2008", "context": "CREATE TABLE table_name_88 (founded INTEGER, joined INTEGER)"}, {"answer": "SELECT role FROM table_name_55 WHERE broadcaster = \"challenge tv\"", "question": "What was the role for Challenge TV?", "context": "CREATE TABLE table_name_55 (role VARCHAR, broadcaster VARCHAR)"}, {"answer": "SELECT broadcaster FROM table_name_24 WHERE year = \"2003\"", "question": "Who was the broadcaster in 2003?", "context": "CREATE TABLE table_name_24 (broadcaster VARCHAR, year VARCHAR)"}, {"answer": "SELECT role FROM table_name_20 WHERE broadcaster = \"bbc1\"", "question": "What was the role for BBC1?", "context": "CREATE TABLE table_name_20 (role VARCHAR, broadcaster VARCHAR)"}, {"answer": "SELECT title FROM table_name_82 WHERE episodes = \"8\"", "question": "What was the title with episode 8?", "context": "CREATE TABLE table_name_82 (title VARCHAR, episodes VARCHAR)"}, {"answer": "SELECT title FROM table_name_27 WHERE broadcaster = \"sky one\" AND year = \"2005\"", "question": "What was the title for Sky One in 2005?", "context": "CREATE TABLE table_name_27 (title VARCHAR, broadcaster VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_96 WHERE entrant = \"yardley-brm\" AND year > 1971", "question": "What was Yardley-BRM's points high after 1971?", "context": "CREATE TABLE table_name_96 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_99 WHERE entrant = \"austria-marlboro brm\" AND points > 0", "question": "What year did Austria-Marlboro BRM get more than 0 points?", "context": "CREATE TABLE table_name_99 (year INTEGER, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_62 WHERE chassis = \"mclaren m7c\"", "question": "Which entrant has a Mclaren m7c Chassis?", "context": "CREATE TABLE table_name_62 (entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT province_region FROM table_name_73 WHERE iata = \"gmp\"", "question": "Which province has gmp for an IATA?", "context": "CREATE TABLE table_name_73 (province_region VARCHAR, iata VARCHAR)"}, {"answer": "SELECT airport FROM table_name_73 WHERE city = \"tokyo\" AND icao = \"rjtt\"", "question": "Which airport is in Tokyo and has an ICAO of rjtt?", "context": "CREATE TABLE table_name_73 (airport VARCHAR, city VARCHAR, icao VARCHAR)"}, {"answer": "SELECT country FROM table_name_80 WHERE icao = \"vvts\"", "question": "Which country is the ICAO vvts?", "context": "CREATE TABLE table_name_80 (country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_77 WHERE country = \"vietnam\"", "question": "What airport is in Vietnam?", "context": "CREATE TABLE table_name_77 (airport VARCHAR, country VARCHAR)"}, {"answer": "SELECT airport FROM table_name_29 WHERE iata = \"hgh\"", "question": "Which airport has an IATA of hgh?", "context": "CREATE TABLE table_name_29 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT city FROM table_name_69 WHERE iata = \"tsa\"", "question": "Which city has an IATA of tsa?", "context": "CREATE TABLE table_name_69 (city VARCHAR, iata VARCHAR)"}, {"answer": "SELECT start FROM table_name_84 WHERE laps = 182", "question": "Where was the starting position when there were 182 laps?", "context": "CREATE TABLE table_name_84 (start VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_67 WHERE start = \"33\" AND finish = \"18\"", "question": "How many laps were completed with a start of 33, and a finish of 18?", "context": "CREATE TABLE table_name_67 (laps INTEGER, start VARCHAR, finish VARCHAR)"}, {"answer": "SELECT qual FROM table_name_67 WHERE laps = 182", "question": "When completing 182 laps, what was the qual.?", "context": "CREATE TABLE table_name_67 (qual VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_23 WHERE year = \"1949\"", "question": "What is the total number of laps that were completed in 1949?", "context": "CREATE TABLE table_name_23 (laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_12 WHERE rank = \"32\"", "question": "What is the fewest number of laps completed by a rank 32?", "context": "CREATE TABLE table_name_12 (laps INTEGER, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE type = \"individual time trial\"", "question": "On what date was the individual time trial?", "context": "CREATE TABLE table_name_55 (date VARCHAR, type VARCHAR)"}, {"answer": "SELECT MAX(year_born) FROM table_name_31 WHERE position = \"guard\" AND player = \"tony parker\"", "question": "When was tony parker (guard) born?", "context": "CREATE TABLE table_name_31 (year_born INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT current_club FROM table_name_13 WHERE height > 1.8 AND position = \"guard\" AND year_born < 1982 AND player = \"tariq kirksay\"", "question": "What team does tariq kirksay, a guard who is taller than 1.8M and born before 1982, represent?", "context": "CREATE TABLE table_name_13 (current_club VARCHAR, player VARCHAR, year_born VARCHAR, height VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE position = \"center\" AND year_born = 1977", "question": "What player is a center born in 1977?", "context": "CREATE TABLE table_name_79 (player VARCHAR, position VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT extra FROM table_name_37 WHERE result = \"4th\"", "question": "What is the extra result of the 4th game?", "context": "CREATE TABLE table_name_37 (extra VARCHAR, result VARCHAR)"}, {"answer": "SELECT extra FROM table_name_87 WHERE year > 2009", "question": "What extra is from after 2009?", "context": "CREATE TABLE table_name_87 (extra VARCHAR, year INTEGER)"}, {"answer": "SELECT kit_manufacturer FROM table_name_63 WHERE shirt_sponsor = \"walkers\"", "question": "Who was the Kit manufacturer that was has shirts sponsored by Walkers?", "context": "CREATE TABLE table_name_63 (kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT team FROM table_name_83 WHERE kit_manufacturer = \"umbro\" AND captain = \"gary mabbutt\"", "question": "Which team is the kit manufacturer Umbro, and the captain Gary Mabbutt?", "context": "CREATE TABLE table_name_83 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR)"}, {"answer": "SELECT captain FROM table_name_59 WHERE kit_manufacturer = \"pony\" AND manager = \"harry redknapp\"", "question": "Who is the captain for the manufacturer Pony, and the manager Harry Redknapp?", "context": "CREATE TABLE table_name_59 (captain VARCHAR, kit_manufacturer VARCHAR, manager VARCHAR)"}, {"answer": "SELECT shirt_sponsor FROM table_name_54 WHERE kit_manufacturer = \"nike\"", "question": "Who is the shirt sponsor for the manufacturer Nike?", "context": "CREATE TABLE table_name_54 (shirt_sponsor VARCHAR, kit_manufacturer VARCHAR)"}, {"answer": "SELECT team FROM table_name_81 WHERE captain = \"jon newsome\"", "question": "Which team has the team captain Jon Newsome?", "context": "CREATE TABLE table_name_81 (team VARCHAR, captain VARCHAR)"}, {"answer": "SELECT gsr_nos FROM table_name_50 WHERE date_made = \"1883\"", "question": "What was the GSR number on the date 1883?", "context": "CREATE TABLE table_name_50 (gsr_nos VARCHAR, date_made VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_4 WHERE fleet_numbers = \"dwwr 50 and 51\"", "question": "What was the quantity of the fleet information for DWWR 50 and 51?", "context": "CREATE TABLE table_name_4 (quantity_made VARCHAR, fleet_numbers VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_3 WHERE inchicore_class = \"j7\"", "question": "What was the quantity for Inchicore of J7?", "context": "CREATE TABLE table_name_3 (quantity_made VARCHAR, inchicore_class VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_70 WHERE position = \"defensive tackle\"", "question": "What's the highest round for a defensive tackle position?", "context": "CREATE TABLE table_name_70 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_54 WHERE name = \"samuel scheschuk\"", "question": "What is the smallest round associated with Samuel Scheschuk?", "context": "CREATE TABLE table_name_54 (round INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_13 WHERE record = \"30-22\"", "question": "How many people were in attendance on the day there was a 30-22 victory?", "context": "CREATE TABLE table_name_13 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_84 WHERE date = \"june 29\"", "question": "Who lost on June 29?", "context": "CREATE TABLE table_name_84 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE result = \"lost\"", "question": "What is the score with lost as the result?", "context": "CREATE TABLE table_name_80 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE venue = \"china\"", "question": "Which date has china as the venue?", "context": "CREATE TABLE table_name_25 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE competition = \"1997 dunhill cup malaysia\" AND date = \"february 23, 1997\"", "question": "Which score has a competition of 1997 dunhill cup malaysia and february 23, 1997 as the date?", "context": "CREATE TABLE table_name_92 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_88 WHERE score = \"4-0\"", "question": "Which competition has 4-0 as the score?", "context": "CREATE TABLE table_name_88 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE date = \"october 16, 2000\"", "question": "What score has october 16, 2000 as the date?", "context": "CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_22 WHERE competition = \"2000 afc asian cup group stages\"", "question": "What is the result of the competition of 2000 afc asian cup group stages?", "context": "CREATE TABLE table_name_22 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT motive FROM table_name_25 WHERE year < 2007", "question": "What is the motive before 2007?", "context": "CREATE TABLE table_name_25 (motive VARCHAR, year INTEGER)"}, {"answer": "SELECT result FROM table_name_77 WHERE category = \"directorial debut of the year\"", "question": "What is the result of the directorial debut of the year award?", "context": "CREATE TABLE table_name_77 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_name_72 WHERE award = \"premios lo nuestro\"", "question": "What is the category for the premios lo nuestro award?", "context": "CREATE TABLE table_name_72 (category VARCHAR, award VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_21 WHERE start = \"25\" AND qual = \"138.063\"", "question": "What's the average number of Laps, that had a start of 25, with a Qual of 138.063?", "context": "CREATE TABLE table_name_21 (laps INTEGER, start VARCHAR, qual VARCHAR)"}, {"answer": "SELECT year FROM table_name_65 WHERE finish = \"12\"", "question": "What year had the Finish of 12?", "context": "CREATE TABLE table_name_65 (year VARCHAR, finish VARCHAR)"}, {"answer": "SELECT year FROM table_name_69 WHERE start = \"25\" AND qual = \"141.105\"", "question": "In what year did a Qual of 141.105 with a Start of 25 happen?", "context": "CREATE TABLE table_name_69 (year VARCHAR, start VARCHAR, qual VARCHAR)"}, {"answer": "SELECT year FROM table_name_52 WHERE laps > 196", "question": "What year had the largest number of laps over 196?", "context": "CREATE TABLE table_name_52 (year VARCHAR, laps INTEGER)"}, {"answer": "SELECT runners_up FROM table_name_28 WHERE year = \"1996\"", "question": "Who are the runners-up in 1996?", "context": "CREATE TABLE table_name_28 (runners_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(roll) FROM table_name_93 WHERE authority = \"state\" AND decile = 9", "question": "What is the average roll of a school with state authority and a decile of 9?", "context": "CREATE TABLE table_name_93 (roll INTEGER, authority VARCHAR, decile VARCHAR)"}, {"answer": "SELECT area FROM table_name_78 WHERE authority = \"state\" AND roll < 18", "question": "Which area has state authority and a roll fewer than 18?", "context": "CREATE TABLE table_name_78 (area VARCHAR, authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT roll FROM table_name_42 WHERE authority = \"state\" AND decile = 9", "question": "What is the roll for the school with state authority and a decile of 9?", "context": "CREATE TABLE table_name_42 (roll VARCHAR, authority VARCHAR, decile VARCHAR)"}, {"answer": "SELECT AVG(decile) FROM table_name_5 WHERE name = \"westport south school\"", "question": "What is the average decile of Westport South School?", "context": "CREATE TABLE table_name_5 (decile INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_25 WHERE time = \"2:19.86\"", "question": "What is the top rank with a time of 2:19.86?", "context": "CREATE TABLE table_name_25 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT name FROM table_name_32 WHERE lane < 7 AND time = \"2:19.86\"", "question": "Who had a lane number smaller than 7 and a time of 2:19.86?", "context": "CREATE TABLE table_name_32 (name VARCHAR, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_32 WHERE heat = 4 AND name = \"liu limin\"", "question": "What was Liu Limin's time in heat 4?", "context": "CREATE TABLE table_name_32 (time VARCHAR, heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT result FROM table_name_69 WHERE competition = \"friendly\"", "question": "What was the result of the friendly competition?", "context": "CREATE TABLE table_name_69 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT start_source FROM table_name_72 WHERE ended = \"4 may\"", "question": "What was the start source that ended on 4 May?", "context": "CREATE TABLE table_name_72 (start_source VARCHAR, ended VARCHAR)"}, {"answer": "SELECT loan_club FROM table_name_57 WHERE country = \"eng\" AND ended = \"22 february\"", "question": "What is the Loan Club from Eng that ended on 22 February?", "context": "CREATE TABLE table_name_57 (loan_club VARCHAR, country VARCHAR, ended VARCHAR)"}, {"answer": "SELECT end_source FROM table_name_51 WHERE loan_club = \"hartlepool united\"", "question": "What is the End Source from the Hartlepool United Loan Club?", "context": "CREATE TABLE table_name_51 (end_source VARCHAR, loan_club VARCHAR)"}, {"answer": "SELECT started FROM table_name_60 WHERE ended = \"15 january\"", "question": "When did the loan that Ended on 15 January Start?", "context": "CREATE TABLE table_name_60 (started VARCHAR, ended VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_34 WHERE gold > 97 AND silver < 332", "question": "What nation had more than 97 Gold Medals and fewer than 332 Silver Medals?", "context": "CREATE TABLE table_name_34 (total INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_89 WHERE total = 135", "question": "What nation had 135 Bronze medals?", "context": "CREATE TABLE table_name_89 (bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(land_area__km_2__) FROM table_name_53 WHERE capital = \"ulim\" AND villages < 30", "question": "What is the area of Ulim with less than 30 villages?", "context": "CREATE TABLE table_name_53 (land_area__km_2__ INTEGER, capital VARCHAR, villages VARCHAR)"}, {"answer": "SELECT name FROM table_name_6 WHERE current_status = \"demolished\" AND line = \"shepparton line\" AND location = \"tabilk\"", "question": "What is the name of the station that is currently demolished with the Shepparton line in Tabilk?", "context": "CREATE TABLE table_name_6 (name VARCHAR, location VARCHAR, current_status VARCHAR, line VARCHAR)"}, {"answer": "SELECT line FROM table_name_54 WHERE name = \"mangalore\"", "question": "What is the line of Mangalore station?", "context": "CREATE TABLE table_name_54 (line VARCHAR, name VARCHAR)"}, {"answer": "SELECT line FROM table_name_81 WHERE current_status = \"demolished\" AND closed = \"late 1970s\" AND location = \"toolamba\"", "question": "What is the line of the station in Toolamba that is currently demolished and closed in the late 1970s?", "context": "CREATE TABLE table_name_81 (line VARCHAR, location VARCHAR, current_status VARCHAR, closed VARCHAR)"}, {"answer": "SELECT name FROM table_name_26 WHERE current_status = \"demolished\" AND location = \"toolamba\"", "question": "What is the name of the station in Toolamba that is currently demolished?", "context": "CREATE TABLE table_name_26 (name VARCHAR, current_status VARCHAR, location VARCHAR)"}, {"answer": "SELECT current_club FROM table_name_21 WHERE year_born = 1976", "question": "What club began in 1976?", "context": "CREATE TABLE table_name_21 (current_club VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT player FROM table_name_42 WHERE height < 2.03 AND year_born = 1976", "question": "What player was born in 1976 and is smaller than 2.03?", "context": "CREATE TABLE table_name_42 (player VARCHAR, height VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT current_club FROM table_name_31 WHERE height < 1.92 AND year_born > 1978", "question": "What player was born in 1978 and smaller than 1.92?", "context": "CREATE TABLE table_name_31 (current_club VARCHAR, height VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_17 WHERE film = \"the adventures of tintin\"", "question": "Which year did The Adventures of Tintin come out?", "context": "CREATE TABLE table_name_17 (year INTEGER, film VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_3 WHERE film = \"rango\"", "question": "What year did the movie Rango come out?", "context": "CREATE TABLE table_name_3 (year INTEGER, film VARCHAR)"}, {"answer": "SELECT rank FROM table_name_76 WHERE height_feet___m = \"427 / 130\"", "question": "What is the rank associated with a Height feet / m of 427 / 130?", "context": "CREATE TABLE table_name_76 (rank VARCHAR, height_feet___m VARCHAR)"}, {"answer": "SELECT address FROM table_name_42 WHERE year = \"1974\"", "question": "What was the address in 1974?", "context": "CREATE TABLE table_name_42 (address VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_36 WHERE points = 3 AND chassis = \"cooper t20\"", "question": "What was the earliest year for a car with 3 points and Cooper t20 chassis?", "context": "CREATE TABLE table_name_36 (year INTEGER, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_1 WHERE game = 2", "question": "Game 2 has how much attendance?", "context": "CREATE TABLE table_name_1 (attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_40 WHERE date = \"october 12\"", "question": "What was the average attendance on October 12?", "context": "CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_7 WHERE date = \"23,24,25,26 july 1992\"", "question": "What is the name of the Home Captain for 23,24,25,26 july 1992?", "context": "CREATE TABLE table_name_7 (home_captain VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_66 WHERE venue = \"headingley\"", "question": "Who is the Away Captain at headingley?", "context": "CREATE TABLE table_name_66 (away_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_13 WHERE date = \"23,24,25,26 july 1992\"", "question": "Where was a game played on 23,24,25,26 july 1992?", "context": "CREATE TABLE table_name_13 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_86 WHERE venue = \"the oval\"", "question": "Who was the Away Captain at The Oval?", "context": "CREATE TABLE table_name_86 (away_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_89 WHERE date = \"23,24,25,26 july 1992\"", "question": "Who is the Home Captain for 23,24,25,26 july 1992?", "context": "CREATE TABLE table_name_89 (home_captain VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_58 WHERE date = \"23,24,25,26 july 1992\"", "question": "What is the result for 23,24,25,26 july 1992?", "context": "CREATE TABLE table_name_58 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_40 WHERE season > 1979 AND avg_attend = 16 OFFSET 605", "question": "What is the maximum number of losses that the Minnesota Kicks had after 1979 with an average attendance of 16,605?", "context": "CREATE TABLE table_name_40 (lost INTEGER, season VARCHAR, avg_attend VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_34 WHERE lost = 13 AND points = 156", "question": "Which season did the Minnesota Kicks lose 13 games and scored 156 points?", "context": "CREATE TABLE table_name_34 (season VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_25 WHERE goals_against < 68 AND goal_difference < 23 AND draws = 10 AND club = \"racing de santander\"", "question": "What losses did racing de santander, that scored less than 68 goals, had a goal difference of less than 23 and 10 draws?", "context": "CREATE TABLE table_name_25 (losses INTEGER, club VARCHAR, draws VARCHAR, goals_against VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT MAX(goal_difference) FROM table_name_52 WHERE points = \"33-5\" AND wins < 12", "question": "What is the highest goal difference that the club with 33-5 points and less than 12 wins?", "context": "CREATE TABLE table_name_52 (goal_difference INTEGER, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT reactor_type FROM table_name_25 WHERE commercial_operation = \"\u2014\" AND unit = \"tianwan-7\"", "question": "What reactor type that has a commercial operation of \u2014, and a tianwan-7 unit?", "context": "CREATE TABLE table_name_25 (reactor_type VARCHAR, commercial_operation VARCHAR, unit VARCHAR)"}, {"answer": "SELECT net_capacity FROM table_name_74 WHERE gross_capacity = \"1,126 mw\" AND unit = \"tianwan-4\"", "question": "What was the net capacity with a gross capacity of 1,126 mw, and a Unit of tianwan-4?", "context": "CREATE TABLE table_name_74 (net_capacity VARCHAR, gross_capacity VARCHAR, unit VARCHAR)"}, {"answer": "SELECT commercial_operation FROM table_name_95 WHERE gross_capacity = \"1,126 mw\" AND unit = \"tianwan-4\"", "question": "What commercial operation that has a gross capacity of 1,126 mw, and a unit of tianwan-4?", "context": "CREATE TABLE table_name_95 (commercial_operation VARCHAR, gross_capacity VARCHAR, unit VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE result = \"won\" AND date = \"december 14, 2004\"", "question": "What score has won as the result on the date of December 14, 2004?", "context": "CREATE TABLE table_name_49 (score VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE result = \"won\" AND score = \"2-1\" AND competition = \"2004 tiger cup third place match\"", "question": "What date has won as the result and 2-1 as the score with a competition of 2004 tiger cup third place match?", "context": "CREATE TABLE table_name_93 (date VARCHAR, competition VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE date = \"january 15, 2005\"", "question": "What score has january 15, 2005 as the date?", "context": "CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE result = \"lost\" AND competition = \"friendly\" AND score = \"1-2\"", "question": "What date has lost as the result and a competition of friendly with 1-2 as the score?", "context": "CREATE TABLE table_name_86 (date VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE date = \"january 3, 2005\"", "question": "What score has january 3, 2005 as the date?", "context": "CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_25 WHERE date = \"may 5, 2001\"", "question": "What competition has may 5, 2001 as the date?", "context": "CREATE TABLE table_name_25 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_52 WHERE date = \"september 8\"", "question": "Who did the team lose to on September 8?", "context": "CREATE TABLE table_name_52 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT order FROM table_name_91 WHERE red_list = 7 AND family = \"didelphidae\"", "question": "What is the order for a red list of 7 in the didelphidae family?", "context": "CREATE TABLE table_name_91 (order VARCHAR, red_list VARCHAR, family VARCHAR)"}, {"answer": "SELECT name FROM table_name_51 WHERE red_list < 7", "question": "What is the name with a red lest less than 7?", "context": "CREATE TABLE table_name_51 (name VARCHAR, red_list INTEGER)"}, {"answer": "SELECT family FROM table_name_57 WHERE name = \"eastern cottontail\"", "question": "What family has the name of eastern cottontail?", "context": "CREATE TABLE table_name_57 (family VARCHAR, name VARCHAR)"}, {"answer": "SELECT red_list FROM table_name_22 WHERE order = \"artiodactyla\" AND family = \"cervidae\" AND species_authority = \"odocoileus virginianus zimmermann, 1780\"", "question": "What red list is in the artiodactyla order and the cervidae family with a Species Authority of odocoileus virginianus zimmermann, 1780?", "context": "CREATE TABLE table_name_22 (red_list VARCHAR, species_authority VARCHAR, order VARCHAR, family VARCHAR)"}, {"answer": "SELECT name FROM table_name_4 WHERE red_list = 7 AND order = \"artiodactyla\" AND species_authority = \"cervus elaphus linnaeus, 1758\"", "question": "What is the name for the red list of 7, the artiodactyla order, and Species Authority of cervus elaphus linnaeus, 1758?", "context": "CREATE TABLE table_name_4 (name VARCHAR, species_authority VARCHAR, red_list VARCHAR, order VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_91 WHERE film_title_used_in_nomination = \"olympics 40\"", "question": "What is the original name of the film that used the title Olympics 40 in nomination?", "context": "CREATE TABLE table_name_91 (original_name VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_33 WHERE country = \"colombia\"", "question": "What title did the film from Colombia use in its nomination?", "context": "CREATE TABLE table_name_33 (film_title_used_in_nomination VARCHAR, country VARCHAR)"}, {"answer": "SELECT director FROM table_name_4 WHERE language = \"portuguese\" AND original_name = \"bye bye brazil\"", "question": "Who directed the film originally named Bye Bye Brazil in Portuguese?", "context": "CREATE TABLE table_name_4 (director VARCHAR, language VARCHAR, original_name VARCHAR)"}, {"answer": "SELECT country FROM table_name_19 WHERE language = \"french\" AND director = \"jean-luc godard\"", "question": "What country is the film directed by Jean-Luc Godard in French from?", "context": "CREATE TABLE table_name_19 (country VARCHAR, language VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_92 WHERE language = \"italian\"", "question": "Who is the director of the film in Italian?", "context": "CREATE TABLE table_name_92 (director VARCHAR, language VARCHAR)"}, {"answer": "SELECT status FROM table_name_48 WHERE hometown = \"london\" AND name = \"aden theobald\"", "question": "What is the status of Aden Theobald from the hometown of London?", "context": "CREATE TABLE table_name_48 (status VARCHAR, hometown VARCHAR, name VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_40 WHERE name = \"hasan shah\"", "question": "What is Hasan Shah's hometown?", "context": "CREATE TABLE table_name_40 (hometown VARCHAR, name VARCHAR)"}, {"answer": "SELECT series FROM table_name_20 WHERE name = \"sam evans\"", "question": "What series was Sam Evans on?", "context": "CREATE TABLE table_name_20 (series VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_69 WHERE series = \"bb1\" AND hometown = \"bolton\"", "question": "What is the name of the person from series bb1 with a hometown of Bolton?", "context": "CREATE TABLE table_name_69 (name VARCHAR, series VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT occupation FROM table_name_17 WHERE hometown = \"hampshire\"", "question": "What is the occupation of the person with a hometown of Hampshire?", "context": "CREATE TABLE table_name_17 (occupation VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT 1 AS st_party FROM table_name_42 WHERE election = \"1849 by-election\"", "question": "Which 1st Party has an Election of 1849 by-election?", "context": "CREATE TABLE table_name_42 (election VARCHAR)"}, {"answer": "SELECT 2 AS nd_party FROM table_name_96 WHERE election = \"1837\"", "question": "Which 2nd Party has an Election of 1837?", "context": "CREATE TABLE table_name_96 (election VARCHAR)"}, {"answer": "SELECT type FROM table_name_90 WHERE fleet_numbers = \"2\u20138, 91\u201392, 97\u2013100\"", "question": "Which Type has a Fleet numbers of 2\u20138, 91\u201392, 97\u2013100?", "context": "CREATE TABLE table_name_90 (type VARCHAR, fleet_numbers VARCHAR)"}, {"answer": "SELECT date_made FROM table_name_46 WHERE notes = \"45/48 renumbered 15/16; two sold to sl&ncr\"", "question": "When has a Note of 45/48 renumbered 15/16; two sold to sl&ncr?", "context": "CREATE TABLE table_name_46 (date_made VARCHAR, notes VARCHAR)"}, {"answer": "SELECT willingshain FROM table_name_71 WHERE kirchheim = \"1,126\"", "question": "What Willingshain is Kirchheim 1,126?", "context": "CREATE TABLE table_name_71 (willingshain VARCHAR, kirchheim VARCHAR)"}, {"answer": "SELECT rotterterode FROM table_name_31 WHERE reimboldsh = \"80\"", "question": "What Rotterterrode has a Reimboldsh 80?", "context": "CREATE TABLE table_name_31 (rotterterode VARCHAR, reimboldsh VARCHAR)"}, {"answer": "SELECT reimboldsh FROM table_name_24 WHERE willingshain = \"268\" AND gersdorf = \"194\"", "question": "What Reimboldsh has Willingshain of 268 and Gersdorf 194?", "context": "CREATE TABLE table_name_24 (reimboldsh VARCHAR, willingshain VARCHAR, gersdorf VARCHAR)"}, {"answer": "SELECT kemmerode FROM table_name_68 WHERE gersdorf = \"39\"", "question": "What Kemmerode has a Gersforf of 39?", "context": "CREATE TABLE table_name_68 (kemmerode VARCHAR, gersdorf VARCHAR)"}, {"answer": "SELECT gershausen FROM table_name_46 WHERE willingshain = \"243\" AND reckerode_ * * * * = \"224\"", "question": "What Gershausen has a Willingshain of 243 and Reckerode of 224?", "context": "CREATE TABLE table_name_46 (gershausen VARCHAR, willingshain VARCHAR, reckerode_ VARCHAR)"}, {"answer": "SELECT willingshain FROM table_name_27 WHERE reimboldsh = \"101\"", "question": "What Willinghshain has Reimboldsh of 101?", "context": "CREATE TABLE table_name_27 (willingshain VARCHAR, reimboldsh VARCHAR)"}, {"answer": "SELECT pts FROM table_name_6 WHERE year = \"2004\" AND event = \"ro\"", "question": "What is the pts for 2004, and the ro event?", "context": "CREATE TABLE table_name_6 (pts VARCHAR, year VARCHAR, event VARCHAR)"}, {"answer": "SELECT pos FROM table_name_64 WHERE year = \"2003\" AND event = \"f\"", "question": "What is the pos from 2003, and the f event?", "context": "CREATE TABLE table_name_64 (pos VARCHAR, year VARCHAR, event VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_59 WHERE region = \"japan\"", "question": "What is the Catalog Number is for the Japan region?", "context": "CREATE TABLE table_name_59 (catalog VARCHAR, region VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE catalog = \"540,934-2\"", "question": "What is the date on Catalog 540,934-2?", "context": "CREATE TABLE table_name_9 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_49 WHERE format = \"stereo lp\" AND catalog = \"amlh 66078\"", "question": "What is the region for Catalog amlh 66078 in stereo lp format?", "context": "CREATE TABLE table_name_49 (region VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_68 WHERE format = \"stereo lp\" AND catalog = \"amlh 66078\"", "question": "What is the region for Catalog amlh 66078 in stereo lp format?", "context": "CREATE TABLE table_name_68 (region VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_91 WHERE region = \"japan\"", "question": "What is the Catalog number for the region of Japan?", "context": "CREATE TABLE table_name_91 (catalog VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_name_49 WHERE format = \"cd\" AND label = \"a&m/canyon\"", "question": "What is the region of the Catalog that is in cd format and has a label a&m/canyon?", "context": "CREATE TABLE table_name_49 (region VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT original_team FROM table_name_84 WHERE result = \"hired by trump (5-19-2005)\"", "question": "What is the original team that was Hired by Trump (5-19-2005)?", "context": "CREATE TABLE table_name_84 (original_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT candidate FROM table_name_45 WHERE result = \"10 fired in week 2 (1-27-2005)\"", "question": "Who is the candidate that had 10 fired in week 2 (1-27-2005)?", "context": "CREATE TABLE table_name_45 (candidate VARCHAR, result VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_10 WHERE result = \"10 fired in week 6 (2-24-2005)\"", "question": "What is the hometown of the candidate that had a result of 10 fired in week 6 (2-24-2005)?", "context": "CREATE TABLE table_name_10 (hometown VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_66 WHERE tournament = \"totals\" AND top_25 < 4", "question": "Which totals tournament has the lowest wins and top-25 less than 4?", "context": "CREATE TABLE table_name_66 (wins INTEGER, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT AVG(events) FROM table_name_27 WHERE top_10 = 0 AND tournament = \"pga championship\" AND top_5 < 0", "question": "What is the average number of events of PGA Championship tournaments with a top-5 less than 0?", "context": "CREATE TABLE table_name_27 (events INTEGER, top_5 VARCHAR, top_10 VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT competition FROM table_name_64 WHERE assist_pass = \"stephanie cox\" AND date = \"2011-07-02\"", "question": "Name the competition for stephanie cox on 2011-07-02", "context": "CREATE TABLE table_name_64 (competition VARCHAR, assist_pass VARCHAR, date VARCHAR)"}, {"answer": "SELECT lineup FROM table_name_21 WHERE location = \"washington dc\"", "question": "Name the lineup for washington dc", "context": "CREATE TABLE table_name_21 (lineup VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE location = \"faro\"", "question": "Name the date for faro", "context": "CREATE TABLE table_name_33 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_98 WHERE source = \"fao\" AND out_of > 50 AND name = \"dietary calorie intake\"", "question": "What is the highest rank that has fao as a source and an out greater than 50, with dietary calorie intake as the name?", "context": "CREATE TABLE table_name_98 (rank INTEGER, name VARCHAR, source VARCHAR, out_of VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_29 WHERE source = \"cia world factbook\" AND year < 2005", "question": "What is the average rank that has cia world factbook as the source and a year prior to 2005?", "context": "CREATE TABLE table_name_29 (rank INTEGER, source VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_43 WHERE chassis = \"coloni fc88\"", "question": "What were the least points with a Coloni FC88 chassis?", "context": "CREATE TABLE table_name_43 (points INTEGER, chassis VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_51 WHERE chassis = \"coloni c3\"", "question": "How many years was the chassis a Coloni C3?", "context": "CREATE TABLE table_name_51 (year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_78 WHERE entrant = \"coloni spa\"", "question": "What was the most points for Coloni Spa?", "context": "CREATE TABLE table_name_78 (points INTEGER, entrant VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_79 WHERE team_2 = \"asante kotoko\"", "question": "Which team 1 had a team 2 of Asante Kotoko?", "context": "CREATE TABLE table_name_79 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_87 WHERE team_2 = \"hafia fc\"", "question": "Which team 1 had a team 2 of Hafia FC?", "context": "CREATE TABLE table_name_87 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_98 WHERE team_2 = \"hafia fc\"", "question": "What was the aggregate for the match with a team 2 of Hafia FC?", "context": "CREATE TABLE table_name_98 (agg VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT last_performance FROM table_name_26 WHERE name = \"j.p. viernes\"", "question": "When was J.P. Viernes' last performance?", "context": "CREATE TABLE table_name_26 (last_performance VARCHAR, name VARCHAR)"}, {"answer": "SELECT chinese_name FROM table_name_85 WHERE station_name = \"wudaokou\"", "question": "What's the Chinese name of the wudaokou station?", "context": "CREATE TABLE table_name_85 (chinese_name VARCHAR, station_name VARCHAR)"}, {"answer": "SELECT transfers FROM table_name_16 WHERE distance__km_ > 36.5 AND station_name = \"guangximen\"", "question": "What's the transfer distance (km) larger than 36.5, at the station of guangximen?", "context": "CREATE TABLE table_name_16 (transfers VARCHAR, distance__km_ VARCHAR, station_name VARCHAR)"}, {"answer": "SELECT station_name FROM table_name_57 WHERE chinese_name = \"\u4e0a\u5730 sh\u00e0ngd\u00ec\"", "question": "The Chinese Name of \u4e0a\u5730 sh\u00e0ngd\u00ec belongs to what station?", "context": "CREATE TABLE table_name_57 (station_name VARCHAR, chinese_name VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_37 WHERE margin_of_victory = \"3 strokes\"", "question": "Name the runner-up for margin of victory of 3 strokes", "context": "CREATE TABLE table_name_37 (runner_s__up VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE margin_of_victory = \"1 stroke\" AND tournament = \"legend financial group classic\"", "question": "Name the date with margin of victory of 1 stroke and tournament of legend financial group classic", "context": "CREATE TABLE table_name_83 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_10 WHERE margin_of_victory = \"1 stroke\" AND tournament = \"legend financial group classic\"", "question": "Name the runner-up for margin of victory of 1 stroke and tournament of legend financial group classic", "context": "CREATE TABLE table_name_10 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_24 WHERE runner_s__up = \"jonas blixt\"", "question": "Name the margin of victory for jonas blixt", "context": "CREATE TABLE table_name_24 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT party FROM table_name_46 WHERE office = \"majority floor leader\"", "question": "Which Party has a Office of majority floor leader", "context": "CREATE TABLE table_name_46 (party VARCHAR, office VARCHAR)"}, {"answer": "SELECT office FROM table_name_81 WHERE representative = \"scott pelath\"", "question": "Which Office has a Representative of scott pelath?", "context": "CREATE TABLE table_name_81 (office VARCHAR, representative VARCHAR)"}, {"answer": "SELECT office FROM table_name_9 WHERE party = \"rep\" AND representative = \"brian bosma\"", "question": "Which Office has a Party of rep, and a Representative of brian bosma?", "context": "CREATE TABLE table_name_9 (office VARCHAR, party VARCHAR, representative VARCHAR)"}, {"answer": "SELECT residence FROM table_name_20 WHERE party = \"dem\" AND representative = \"linda lawson\"", "question": "Which Residence has a Party of dem, and a Representative of linda lawson?", "context": "CREATE TABLE table_name_20 (residence VARCHAR, party VARCHAR, representative VARCHAR)"}, {"answer": "SELECT party FROM table_name_61 WHERE representative = \"brian bosma\"", "question": "Which Party has a Representative of brian bosma?", "context": "CREATE TABLE table_name_61 (party VARCHAR, representative VARCHAR)"}, {"answer": "SELECT office FROM table_name_2 WHERE party = \"dem\" AND first_elected = \"1991\u2020\"", "question": "Which Office has a Party of dem, and a First Elected of 1991\u2020?", "context": "CREATE TABLE table_name_2 (office VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT college FROM table_name_22 WHERE player = \"paul seiler\"", "question": "what college has paul seiler as a player?", "context": "CREATE TABLE table_name_22 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_89 WHERE year = \"1955\"", "question": "How many laps were in 1955?", "context": "CREATE TABLE table_name_89 (laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT finish FROM table_name_85 WHERE laps < 200 AND year = \"1953\"", "question": "What was the finish with less than 200 laps in 1953?", "context": "CREATE TABLE table_name_85 (finish VARCHAR, laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT rank FROM table_name_89 WHERE year = \"1955\"", "question": "What was the rank in 1955?", "context": "CREATE TABLE table_name_89 (rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_79 WHERE year = \"1954\"", "question": "What was the sum of laps in 1954?", "context": "CREATE TABLE table_name_79 (laps INTEGER, year VARCHAR)"}, {"answer": "SELECT rank FROM table_name_84 WHERE laps < 200 AND finish = \"26\"", "question": "What rank had less than 200 laps with a finish of 26?", "context": "CREATE TABLE table_name_84 (rank VARCHAR, laps VARCHAR, finish VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_42 WHERE podiums = 3", "question": "What's the average wins of those games with 3 podiums?", "context": "CREATE TABLE table_name_42 (wins INTEGER, podiums VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_65 WHERE team_2 = \"young africans\"", "question": "Who was team 1 when team 2 was Young Africans?", "context": "CREATE TABLE table_name_65 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_61 WHERE team_2 = \"al-merrikh\"", "question": "What was the 2nd leg score for Al-Merrikh as team 2?", "context": "CREATE TABLE table_name_61 (team_2 VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE opponent = \"gisela dulko\"", "question": "What is the Date, when the Opponent is Gisela Dulko?", "context": "CREATE TABLE table_name_74 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_83 WHERE opponent = \"patricia mayr-achleitner\"", "question": "What is the Tournament, when the Opponent is Patricia Mayr-Achleitner?", "context": "CREATE TABLE table_name_83 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE competition = \"2006 world cup qualification\"", "question": "what is the result of the competition in 2006 world cup qualification?", "context": "CREATE TABLE table_name_49 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_78 WHERE heat = 2 AND lane = 3", "question": "What nation started in lane 3 of heat 2?", "context": "CREATE TABLE table_name_78 (nationality VARCHAR, heat VARCHAR, lane VARCHAR)"}, {"answer": "SELECT tied FROM table_name_95 WHERE matches = \"1\" AND lost = \"0\" AND team = \"durham\"", "question": "Which Tied has Matches of 1, and a Lost of 0, and a Team of durham?", "context": "CREATE TABLE table_name_95 (tied VARCHAR, team VARCHAR, matches VARCHAR, lost VARCHAR)"}, {"answer": "SELECT team FROM table_name_6 WHERE winner = \"1\"", "question": "Which Team has a Winner of 1?", "context": "CREATE TABLE table_name_6 (team VARCHAR, winner VARCHAR)"}, {"answer": "SELECT _percentage_won FROM table_name_12 WHERE team = \"durham\"", "question": "What is the % Won of Team of durham", "context": "CREATE TABLE table_name_12 (_percentage_won VARCHAR, team VARCHAR)"}, {"answer": "SELECT matches FROM table_name_77 WHERE _percentage_won = \"52.38\"", "question": "Which Match has the percentage won 52.38?", "context": "CREATE TABLE table_name_77 (matches VARCHAR, _percentage_won VARCHAR)"}, {"answer": "SELECT points FROM table_name_54 WHERE wins > 15 AND losses < 10", "question": "How many points has more than 15 wins and less than 10 losses?", "context": "CREATE TABLE table_name_54 (points VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT SUM(goal_difference) FROM table_name_73 WHERE goals_against > 47 AND played > 38", "question": "What is the total goal difference with more than 38 played and more than 47 goals against?", "context": "CREATE TABLE table_name_73 (goal_difference INTEGER, goals_against VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_25 WHERE played > 38", "question": "What is the average draws with more than 38 played?", "context": "CREATE TABLE table_name_25 (draws INTEGER, played INTEGER)"}, {"answer": "SELECT partner FROM table_name_39 WHERE opponents_in_final = \"lucas arnold ker mart\u00edn garc\u00eda\"", "question": "What is the name of the partner who played in the final against Lucas Arnold Ker Mart\u00edn Garc\u00eda?", "context": "CREATE TABLE table_name_39 (partner VARCHAR, opponents_in_final VARCHAR)"}, {"answer": "SELECT name FROM table_name_70 WHERE lane < 6 AND time = \"2:11.02\"", "question": "Who swam in a lane less than 6 and finished with a time of 2:11.02?", "context": "CREATE TABLE table_name_70 (name VARCHAR, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_10 WHERE original_name = \"mig og charly\"", "question": "What is the Film title used in nomination of Mig Og Charly?", "context": "CREATE TABLE table_name_10 (film_title_used_in_nomination VARCHAR, original_name VARCHAR)"}, {"answer": "SELECT director FROM table_name_66 WHERE film_title_used_in_nomination = \"nick carter in prague\"", "question": "Who is the Director that has a Film title of nick carter in prague?", "context": "CREATE TABLE table_name_66 (director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT language FROM table_name_54 WHERE director = \"nagisa oshima\"", "question": "Which Language Director of nagisa oshima use in his film?", "context": "CREATE TABLE table_name_54 (language VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_8 WHERE language = \"dutch\"", "question": "Who is the Director that speaks dutch?", "context": "CREATE TABLE table_name_8 (director VARCHAR, language VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_17 WHERE film_title_used_in_nomination = \"empire of passion\"", "question": "What is the Original name of empire of passion?", "context": "CREATE TABLE table_name_17 (original_name VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT start_date FROM table_name_28 WHERE party = \"pd\"", "question": "Name the start date with party of pd", "context": "CREATE TABLE table_name_28 (start_date VARCHAR, party VARCHAR)"}, {"answer": "SELECT minister FROM table_name_12 WHERE end_date = \"31 july 2004\"", "question": "Name the minister for end date of 31 july 2004", "context": "CREATE TABLE table_name_12 (minister VARCHAR, end_date VARCHAR)"}, {"answer": "SELECT party FROM table_name_2 WHERE end_date = \"22 november 1980\"", "question": "Name the party with end date of 22 november 1980", "context": "CREATE TABLE table_name_2 (party VARCHAR, end_date VARCHAR)"}, {"answer": "SELECT end_date FROM table_name_50 WHERE minister = \"robert goebbels\"", "question": "Name the end date for robert goebbels", "context": "CREATE TABLE table_name_50 (end_date VARCHAR, minister VARCHAR)"}, {"answer": "SELECT start_date FROM table_name_29 WHERE party = \"lsap\" AND end_date = \"present day\"", "question": "Name the start date with lsap and end date of present day", "context": "CREATE TABLE table_name_29 (start_date VARCHAR, party VARCHAR, end_date VARCHAR)"}, {"answer": "SELECT acceleration_0_100km_h FROM table_name_32 WHERE name = \"1.5 dci\"", "question": "What is the acceleration 1-100km/h when the name is 1.5 dci?", "context": "CREATE TABLE table_name_32 (acceleration_0_100km_h VARCHAR, name VARCHAR)"}, {"answer": "SELECT power FROM table_name_43 WHERE capacity = \"898cc\"", "question": "what is the power when the capacity is 898cc?", "context": "CREATE TABLE table_name_43 (power VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_36 WHERE code = \"d4f bi-fuel 732\"", "question": "what is the capacity when the code is d4f bi-fuel 732?", "context": "CREATE TABLE table_name_36 (capacity VARCHAR, code VARCHAR)"}, {"answer": "SELECT power FROM table_name_13 WHERE name = \"1.2 16v lpg\"", "question": "what is the power when the name is 1.2 16v lpg?", "context": "CREATE TABLE table_name_13 (power VARCHAR, name VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_68 WHERE name = \"1.2 16v\"", "question": "what is the capacity when the name is 1.2 16v?", "context": "CREATE TABLE table_name_68 (capacity VARCHAR, name VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_39 WHERE acceleration_0_100km_h = \"11.1 s\"", "question": "what is the capacity when the acceleration 1-100km/h is 11.1 s?", "context": "CREATE TABLE table_name_39 (capacity VARCHAR, acceleration_0_100km_h VARCHAR)"}, {"answer": "SELECT director FROM table_name_50 WHERE year = 1957", "question": "Name the director for 1957", "context": "CREATE TABLE table_name_50 (director VARCHAR, year VARCHAR)"}, {"answer": "SELECT director FROM table_name_47 WHERE title = \"transylvania 6-5000\"", "question": "Name the director who has title of transylvania 6-5000", "context": "CREATE TABLE table_name_47 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_21 WHERE time = \"1:31\"", "question": "Name the attendance for time of 1:31", "context": "CREATE TABLE table_name_21 (attendance VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE time = \"1:36\"", "question": "Name the score for 1:36 time", "context": "CREATE TABLE table_name_20 (score VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE date = \"october 9\"", "question": "Name the score for october 9", "context": "CREATE TABLE table_name_92 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_83 WHERE overall = 91", "question": "What round did the overall pick of 91 occur in the 1982 NFL draft?", "context": "CREATE TABLE table_name_83 (round INTEGER, overall VARCHAR)"}, {"answer": "SELECT race_3 FROM table_name_4 WHERE round = \"round 5\"", "question": "What Race 3 is Round 5?", "context": "CREATE TABLE table_name_4 (race_3 VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_42 WHERE track = \"clipsal 500 support\"", "question": "What Round has the Track Clipsal 500 Support?", "context": "CREATE TABLE table_name_42 (round VARCHAR, track VARCHAR)"}, {"answer": "SELECT race_2 FROM table_name_26 WHERE race_1 = \"dnf\" AND race_3 = \"dnf\" AND track = \"winton\"", "question": "What Race 2 has a Race 1 of dnf, a Race 3 of dnf, and the Track Winton?", "context": "CREATE TABLE table_name_26 (race_2 VARCHAR, track VARCHAR, race_1 VARCHAR, race_3 VARCHAR)"}, {"answer": "SELECT round FROM table_name_30 WHERE track = \"winton\"", "question": "What Round has the Track Winton?", "context": "CREATE TABLE table_name_30 (round VARCHAR, track VARCHAR)"}, {"answer": "SELECT race_2 FROM table_name_4 WHERE round = \"round 2\"", "question": "What is the Race 2 result of Round 2?", "context": "CREATE TABLE table_name_4 (race_2 VARCHAR, round VARCHAR)"}, {"answer": "SELECT race_1 FROM table_name_25 WHERE round = \"round 2\"", "question": "What is the Race 1 result of Round 2?", "context": "CREATE TABLE table_name_25 (race_1 VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_71 WHERE mixed_doubles = \"nathan robertson gail emms\"", "question": "What is the average year with Nathan Robertson Gail Emms in mixed doubles?", "context": "CREATE TABLE table_name_71 (year INTEGER, mixed_doubles VARCHAR)"}, {"answer": "SELECT player FROM table_name_59 WHERE score = 76 - 67 - 71 = 214", "question": "Who is the player with a 76-67-71=214 score?", "context": "CREATE TABLE table_name_59 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE player = \"nick price\"", "question": "What is Nick Price's score?", "context": "CREATE TABLE table_name_20 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_23 WHERE score = 69 - 74 - 71 = 214", "question": "What is the country of the player with a score of 69-74-71=214?", "context": "CREATE TABLE table_name_23 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_83 WHERE player = \"greg norman\"", "question": "What is the to par of Greg Norman?", "context": "CREATE TABLE table_name_83 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE opponent = \"@ tigers\" AND date = \"july 24\"", "question": "What's the score for opponent @ Tigers on July 24?", "context": "CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_12 WHERE date = \"july 2\"", "question": "What's the opponent for July 2?", "context": "CREATE TABLE table_name_12 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT year FROM table_name_80 WHERE chassis = \"surtees ts19\"", "question": "What's the year of the Chassis surtees ts19?", "context": "CREATE TABLE table_name_80 (year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_51 WHERE year > 1978", "question": "What are the lowest points past the year 1978?", "context": "CREATE TABLE table_name_51 (points INTEGER, year INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_name_33 WHERE chassis = \"ats hs1\"", "question": "What's the top year with the Chassis ats hs1?", "context": "CREATE TABLE table_name_33 (year INTEGER, chassis VARCHAR)"}, {"answer": "SELECT local_time FROM table_name_46 WHERE date = \"september 1\"", "question": "What was the time on September 1?", "context": "CREATE TABLE table_name_46 (local_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_25 WHERE date = \"september 5\"", "question": "Where was September 5?", "context": "CREATE TABLE table_name_25 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_72 WHERE winning_score = 74 - 68 - 67 - 75 = 284", "question": "When the Winning score is 74-68-67-75=284, what was the Margin of victory?", "context": "CREATE TABLE table_name_72 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_7 WHERE winning_score = 71 - 71 - 70 - 69 = 281", "question": "When the Winning is 71-71-70-69=281, what is the To par?", "context": "CREATE TABLE table_name_7 (to_par VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_59 WHERE winning_score = 68 - 65 - 65 - 68 = 266", "question": "When the Winning score is 68-65-65-68=266, what is the Margin of victory?", "context": "CREATE TABLE table_name_59 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE winning_score = 72 - 67 - 68 - 67 = 274", "question": "On what Date was the Winning score of 72-67-68-67=274?", "context": "CREATE TABLE table_name_30 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT SUM(2 AS nd_pl) FROM table_name_83 WHERE years_active = \"2009-2010\" AND wins > 0", "question": "What is the total number of 2nd place finishes for riders active in years 2009-2010 and more than 0 wins?", "context": "CREATE TABLE table_name_83 (years_active VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(3 AS rd_pl) FROM table_name_31 WHERE titles < 0", "question": "What is the total number of 3rd place finishes for racers with 0 titles?", "context": "CREATE TABLE table_name_31 (titles INTEGER)"}, {"answer": "SELECT AVG(2 AS nd_pl) FROM table_name_16 WHERE years_active = \"2000\" AND titles > 0", "question": "What is the average number of 2nd place finishes for racers active in the year 2000 and more than 0 titles?", "context": "CREATE TABLE table_name_16 (years_active VARCHAR, titles VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_67 WHERE team = \"c.d. luis \u00e1ngel firpo\" AND place > 3", "question": "Name the sum of played for c.d. luis \u00e1ngel firpo and place more than 3", "context": "CREATE TABLE table_name_67 (played INTEGER, team VARCHAR, place VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_59 WHERE played > 18", "question": "Name the total number of places which has played more than 18", "context": "CREATE TABLE table_name_59 (place VARCHAR, played INTEGER)"}, {"answer": "SELECT COUNT(lost) FROM table_name_82 WHERE goals_scored < 22 AND goals_conceded > 27", "question": "Name the total number of lost when goals scored is less than 22 and goals conceded is more than 27", "context": "CREATE TABLE table_name_82 (lost VARCHAR, goals_scored VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT AVG(goals_conceded) FROM table_name_26 WHERE draw > 7 AND goals_scored > 24", "question": "Name the average goals conceded with draw bigger than 7 and goals scored more than 24", "context": "CREATE TABLE table_name_26 (goals_conceded INTEGER, draw VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT MIN(goals_scored) FROM table_name_36 WHERE place > 8 AND lost < 8", "question": "Name the least goals scored with place more than 8 and lost less than 8", "context": "CREATE TABLE table_name_36 (goals_scored INTEGER, place VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_37 WHERE state = \"alaska\" AND mountain_peak = \"mount chamberlin\"", "question": "Where does Mount Chamberlin, located in Alaska, rank on the chart?", "context": "CREATE TABLE table_name_37 (rank INTEGER, state VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT location FROM table_name_20 WHERE rank = 36", "question": "What is the location of the mountain ranked at 36?", "context": "CREATE TABLE table_name_20 (location VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_5 WHERE mountain_range = \"kuskokwim mountains\"", "question": "Where does the Kuskokwim Mountains rank on the chart?", "context": "CREATE TABLE table_name_5 (rank INTEGER, mountain_range VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_38 WHERE state = \"maine\"", "question": "What is the average rank of a mountain range located in Maine?", "context": "CREATE TABLE table_name_38 (rank INTEGER, state VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_82 WHERE player = \"matt roth\"", "question": "What round was matt roth drafted?", "context": "CREATE TABLE table_name_82 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT nfl_club FROM table_name_35 WHERE pick > 196", "question": "What team did the player represent that was picked after 196?", "context": "CREATE TABLE table_name_35 (nfl_club VARCHAR, pick INTEGER)"}, {"answer": "SELECT pos FROM table_name_41 WHERE european_competitions = \"eurocup regular season\"", "question": "Name the position for european competitions of eurocup regular season", "context": "CREATE TABLE table_name_41 (pos VARCHAR, european_competitions VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_54 WHERE series = \"3-2\"", "question": "Who was the opponent with a series of 3-2?", "context": "CREATE TABLE table_name_54 (opponent VARCHAR, series VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_79 WHERE series = \"1-0\"", "question": "Who was the opponent with a series of 1-0?", "context": "CREATE TABLE table_name_79 (opponent VARCHAR, series VARCHAR)"}, {"answer": "SELECT division_record FROM table_name_93 WHERE school = \"delmar\"", "question": "For the Delmar school what is the division record?", "context": "CREATE TABLE table_name_93 (division_record VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_16 WHERE team = \"blue raiders\"", "question": "What school does the Blue Raiders belong to?", "context": "CREATE TABLE table_name_16 (school VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_57 WHERE school = \"seaford\"", "question": "What team name belongs to Seaford?", "context": "CREATE TABLE table_name_57 (team VARCHAR, school VARCHAR)"}, {"answer": "SELECT division_record FROM table_name_26 WHERE team = \"spartans\"", "question": "What division record did the Spartans hold?", "context": "CREATE TABLE table_name_26 (division_record VARCHAR, team VARCHAR)"}, {"answer": "SELECT school FROM table_name_38 WHERE team = \"wildcats\"", "question": "The wildcats belong to what school?", "context": "CREATE TABLE table_name_38 (school VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(murder) FROM table_name_44 WHERE year > 2011", "question": "How many total murders happened after 2011?", "context": "CREATE TABLE table_name_44 (murder INTEGER, year INTEGER)"}, {"answer": "SELECT AVG(robbery) FROM table_name_40 WHERE non_violent_crime < 1147 AND rape < 11 AND aggravated_assault > 167 AND crime_index_total = 1313", "question": "Which average Robbery has the following criteria: Non-Violent crime less than 1147, rape less then 11, aggrevated assault greater than 167 and a crime index with a total of 1313?", "context": "CREATE TABLE table_name_40 (robbery INTEGER, crime_index_total VARCHAR, aggravated_assault VARCHAR, non_violent_crime VARCHAR, rape VARCHAR)"}, {"answer": "SELECT MAX(aggravated_assault) FROM table_name_90 WHERE crime_rate_per_1000 > 89.1 AND rape = 23 AND crime_index_total > 1590", "question": "Which aggravated assault has the highest amount and the following criteria: crime rate per 1000 greater than 89.1,rape value of 23, and a crime index greater than 1590?", "context": "CREATE TABLE table_name_90 (aggravated_assault INTEGER, crime_index_total VARCHAR, crime_rate_per_1000 VARCHAR, rape VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE label = \"sony music direct\"", "question": "When did sony music direct a label?", "context": "CREATE TABLE table_name_60 (date VARCHAR, label VARCHAR)"}, {"answer": "SELECT region FROM table_name_88 WHERE format = \"cd\" AND catalog = \"alca-271\"", "question": "What record had an alca-271 cd?", "context": "CREATE TABLE table_name_88 (region VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_10 WHERE catalog = \"alca-9196\"", "question": "What formated cataloged alca-9196?", "context": "CREATE TABLE table_name_10 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT podiums FROM table_name_11 WHERE races = \"1\" AND final_placing = \"5th\"", "question": "Which Podium has 1 Race and a Final Place of 5th?", "context": "CREATE TABLE table_name_11 (podiums VARCHAR, races VARCHAR, final_placing VARCHAR)"}, {"answer": "SELECT season FROM table_name_79 WHERE final_placing = \"8th\" AND podiums = \"8\"", "question": "Which Season has a Final Place of 8th and 8 Podiums?", "context": "CREATE TABLE table_name_79 (season VARCHAR, final_placing VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT season FROM table_name_77 WHERE podiums = \"0\" AND races = \"1\" AND points = \"0\"", "question": "Which Season has 0 Podiums, 1 Race, and 0 Points?", "context": "CREATE TABLE table_name_77 (season VARCHAR, points VARCHAR, podiums VARCHAR, races VARCHAR)"}, {"answer": "SELECT season FROM table_name_48 WHERE points = \"95\"", "question": "Which Season has 95 Points?", "context": "CREATE TABLE table_name_48 (season VARCHAR, points VARCHAR)"}, {"answer": "SELECT races FROM table_name_99 WHERE series = \"toyota racing series new zealand\" AND wins = \"0\"", "question": "Which Race has the Toyota Racing Series New Zealand and 0 wins?", "context": "CREATE TABLE table_name_99 (races VARCHAR, series VARCHAR, wins VARCHAR)"}, {"answer": "SELECT season FROM table_name_77 WHERE final_placing = \"19th\"", "question": "Which Season has a 19th Final Place?", "context": "CREATE TABLE table_name_77 (season VARCHAR, final_placing VARCHAR)"}, {"answer": "SELECT MAX(frequency) FROM table_name_40 WHERE status = \"owned by multicultural broadcasting\" AND format = \"vietnamese\"", "question": "What is the largest frequency owned by multicultural broadcasting with a Format of vietnamese?", "context": "CREATE TABLE table_name_40 (frequency INTEGER, status VARCHAR, format VARCHAR)"}, {"answer": "SELECT format FROM table_name_28 WHERE station = \"klok\"", "question": "Which format has a Station of klok?", "context": "CREATE TABLE table_name_28 (format VARCHAR, station VARCHAR)"}, {"answer": "SELECT format FROM table_name_70 WHERE frequency > 1050 AND station = \"kvto\"", "question": "Which format has a Frequency larger than 1050, and a Station of kvto?", "context": "CREATE TABLE table_name_70 (format VARCHAR, frequency VARCHAR, station VARCHAR)"}, {"answer": "SELECT SUM(frequency) FROM table_name_66 WHERE status = \"owned by cumulus media\" AND format = \"news\"", "question": "What is the total frequency have a Status of owned by cumulus media, and a Format of news?", "context": "CREATE TABLE table_name_66 (frequency INTEGER, status VARCHAR, format VARCHAR)"}, {"answer": "SELECT format FROM table_name_80 WHERE station = \"kcbs\"", "question": "Which format has a Station of kcbs?", "context": "CREATE TABLE table_name_80 (format VARCHAR, station VARCHAR)"}, {"answer": "SELECT MIN(fa_cup) FROM table_name_69 WHERE total > 46", "question": "Who has the lowest FA cup and has a total over 46?", "context": "CREATE TABLE table_name_69 (fa_cup INTEGER, total INTEGER)"}, {"answer": "SELECT SUM(total) FROM table_name_39 WHERE league_cup < 0", "question": "What is the sum of the League Cup smaller than 0?", "context": "CREATE TABLE table_name_39 (total INTEGER, league_cup INTEGER)"}, {"answer": "SELECT AVG(heat) FROM table_name_43 WHERE time = \"59.11\" AND lane > 3", "question": "What is the average of all Heats of competitors with a Time of 59.11 and a lane higher than 3?", "context": "CREATE TABLE table_name_43 (heat INTEGER, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_67 WHERE nationality = \"malta\"", "question": "What is the highest Lane used by a racer from Malta?", "context": "CREATE TABLE table_name_67 (lane INTEGER, nationality VARCHAR)"}, {"answer": "SELECT name FROM table_name_96 WHERE heat > 2 AND lane < 5 AND time = \"1:01.53\"", "question": "What is the Name of the racer with a heat higher than 2 and a lane less than 5, with a time of 1:01.53?", "context": "CREATE TABLE table_name_96 (name VARCHAR, time VARCHAR, heat VARCHAR, lane VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_37 WHERE cuts_made > 2 AND top_10 < 2", "question": "How many wins did he have when he made over 2 cuts and had under 2 top 10s?", "context": "CREATE TABLE table_name_37 (wins INTEGER, cuts_made VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_4 WHERE score = \"9 - 6\" AND attendance > 31 OFFSET 293", "question": "Who was the opponent of the game that 31,293 people attended that had a final score of 9 - 6.", "context": "CREATE TABLE table_name_4 (opponent VARCHAR, score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_40 WHERE opponent = \"athletics\" AND record = \"9-12\"", "question": "How many people attended the game against athletics with the record of 9-12?", "context": "CREATE TABLE table_name_40 (attendance VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_44 WHERE record = \"8-10\"", "question": "How many people went to the game with the record of 8-10?", "context": "CREATE TABLE table_name_44 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_22 WHERE year > 1987 AND chassis = \"benetton b188\" AND points = 12", "question": "which entrant after 1987 had 12 points and a benetton b188 chassis?", "context": "CREATE TABLE table_name_22 (entrant VARCHAR, points VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_39 WHERE engine = \"cosworth v8\" AND points = 12", "question": "what's the earliest year that there was a cosworth v8 engine and 12 points?", "context": "CREATE TABLE table_name_39 (year INTEGER, engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_31 WHERE year < 1988", "question": "which chassis were in use prior to 1988?", "context": "CREATE TABLE table_name_31 (chassis VARCHAR, year INTEGER)"}, {"answer": "SELECT name FROM table_name_28 WHERE nationality = \"great britain\" AND lane = 5", "question": "Who was from Great Britain in lane 5?", "context": "CREATE TABLE table_name_28 (name VARCHAR, nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_19 WHERE week = 16", "question": "How many people were in attendance at week 16?", "context": "CREATE TABLE table_name_19 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_94 WHERE chassis = \"maserati 250f\" AND year = 1954", "question": "What entrant had a chassis of Maserati 250f in 1954?", "context": "CREATE TABLE table_name_94 (entrant VARCHAR, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_5 WHERE year < 1954", "question": "What is the highest number of points before 1954?", "context": "CREATE TABLE table_name_5 (points INTEGER, year INTEGER)"}, {"answer": "SELECT MIN(decile) FROM table_name_10 WHERE name = \"ohau school\"", "question": "What is the lowest decile that Ohau School has?", "context": "CREATE TABLE table_name_10 (decile INTEGER, name VARCHAR)"}, {"answer": "SELECT gender FROM table_name_69 WHERE decile = 6 AND roll < 179", "question": "What gender is allowed to attend the school that has a decile of 6 and a roll that is less than 179?", "context": "CREATE TABLE table_name_69 (gender VARCHAR, decile VARCHAR, roll VARCHAR)"}, {"answer": "SELECT gender FROM table_name_9 WHERE roll = 338", "question": "What gender is allowed at the school which has a roll of 338?", "context": "CREATE TABLE table_name_9 (gender VARCHAR, roll VARCHAR)"}, {"answer": "SELECT authority FROM table_name_54 WHERE decile = 6 AND area = \"levin\" AND roll = 226", "question": "What authority controls the school in Levin that has a decile of 6, and a roll of 226?", "context": "CREATE TABLE table_name_54 (authority VARCHAR, roll VARCHAR, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT function__figure_ FROM table_name_95 WHERE serial_number = \"af 934103\"", "question": "What Function (figure) has Serial number AF 934103?", "context": "CREATE TABLE table_name_95 (function__figure_ VARCHAR, serial_number VARCHAR)"}, {"answer": "SELECT primary_military_speciality FROM table_name_39 WHERE code_name = \"moondancer\"", "question": "What is Moondancer's Primary Military Speciality?", "context": "CREATE TABLE table_name_39 (primary_military_speciality VARCHAR, code_name VARCHAR)"}, {"answer": "SELECT secondary_military_speciality FROM table_name_58 WHERE primary_military_speciality = \"astral assault tactics\"", "question": "With a Primary military speciality of astral assault tactics, what is the Secondary military speciality?", "context": "CREATE TABLE table_name_58 (secondary_military_speciality VARCHAR, primary_military_speciality VARCHAR)"}, {"answer": "SELECT serial_number FROM table_name_11 WHERE function__figure_ = \"space security trooper\"", "question": "What is the Serial number for the Space Security Trooper Function (figure)?", "context": "CREATE TABLE table_name_11 (serial_number VARCHAR, function__figure_ VARCHAR)"}, {"answer": "SELECT code_name FROM table_name_88 WHERE function__figure_ = \"space pilot\"", "question": "What is the Code Name for the Space Pilot Function (figure)?", "context": "CREATE TABLE table_name_88 (code_name VARCHAR, function__figure_ VARCHAR)"}, {"answer": "SELECT birthplace FROM table_name_86 WHERE real_name = \"charles 'chuck' connors\"", "question": "What Birthplace's Real Name is Charles 'Chuck' Connors?", "context": "CREATE TABLE table_name_86 (birthplace VARCHAR, real_name VARCHAR)"}, {"answer": "SELECT home FROM table_name_53 WHERE date = \"december 21\"", "question": "Who is the home team of the game on December 21?", "context": "CREATE TABLE table_name_53 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_48 WHERE date = \"march 7\"", "question": "Who is the visitor of the game on March 7?", "context": "CREATE TABLE table_name_48 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_28 WHERE points = 3", "question": "Which is the highest year that has 3 points?", "context": "CREATE TABLE table_name_28 (year INTEGER, points VARCHAR)"}, {"answer": "SELECT engine_s_ FROM table_name_53 WHERE points > 0 AND year < 1984", "question": "Which engine has more than 0 points and a year before 1984?", "context": "CREATE TABLE table_name_53 (engine_s_ VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_1 WHERE date = \"october 18, 1992\"", "question": "Name the game site for october 18, 1992", "context": "CREATE TABLE table_name_1 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_40 WHERE date = \"october 4, 1992\"", "question": "Name the game site for october 4, 1992", "context": "CREATE TABLE table_name_40 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE opponent = \"bye\"", "question": "Name the date when bye was opponent", "context": "CREATE TABLE table_name_15 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_24 WHERE date = \"july 16\"", "question": "Name the attendance for july 16", "context": "CREATE TABLE table_name_24 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_54 WHERE record = \"48-37\"", "question": "Name the loss for 48-37", "context": "CREATE TABLE table_name_54 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_61 WHERE score = \"9-4\"", "question": "Name the record for 9-4 score", "context": "CREATE TABLE table_name_61 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_53 WHERE record = \"52-37\"", "question": "Name the least attendance for 52-37 record", "context": "CREATE TABLE table_name_53 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT away FROM table_name_71 WHERE golden_point_s__scorer = \"trent hodkinson\" AND home = \"manly-warringah sea eagles\"", "question": "What Away team has the Golden point(s) scorer Trent Hodkinson and the Home of Manly-Warringah Sea Eagles?", "context": "CREATE TABLE table_name_71 (away VARCHAR, golden_point_s__scorer VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE golden_point_s__scorer = \"adam reynolds\"", "question": "What is the Score of Golden Point(s) scorer Adam Reynolds?", "context": "CREATE TABLE table_name_29 (score VARCHAR, golden_point_s__scorer VARCHAR)"}, {"answer": "SELECT golden_point_s__scorer FROM table_name_31 WHERE venue = \"allianz stadium\"", "question": "What Golden point(s) has the Venue Allianz Stadium?", "context": "CREATE TABLE table_name_31 (golden_point_s__scorer VARCHAR, venue VARCHAR)"}, {"answer": "SELECT golden_point_s__scorer FROM table_name_53 WHERE away = \"sydney roosters\" AND home = \"cronulla sharks\"", "question": "What Golden point(s) scorer has the Away Sydney Roosters and Home Cronulla Sharks?", "context": "CREATE TABLE table_name_53 (golden_point_s__scorer VARCHAR, away VARCHAR, home VARCHAR)"}, {"answer": "SELECT golden_point_s__scorer FROM table_name_14 WHERE away = \"brisbane broncos\" AND home = \"south sydney rabbitohs\"", "question": "What Golden point(s) scorer has the Away Brisbane Broncos and Home South Sydney Rabbitohs?", "context": "CREATE TABLE table_name_14 (golden_point_s__scorer VARCHAR, away VARCHAR, home VARCHAR)"}, {"answer": "SELECT revenues FROM table_name_15 WHERE name = \"\u014doka tadayoshi (2nd) (\u5927\u5ca1\u5fe0\u611b)\"", "question": "What are the revenues for \u014doka tadayoshi (2nd) (\u5927\u5ca1\u5fe0\u611b)?", "context": "CREATE TABLE table_name_15 (revenues VARCHAR, name VARCHAR)"}, {"answer": "SELECT lineage FROM table_name_15 WHERE name = \"\u014doka tadatomo (\u5927\u5ca1\u5fe0\u8207)\"", "question": "What's the lineage of \u014doka tadatomo (\u5927\u5ca1\u5fe0\u8207)?", "context": "CREATE TABLE table_name_15 (lineage VARCHAR, name VARCHAR)"}, {"answer": "SELECT tenure FROM table_name_14 WHERE lineage = \"3rd son of tadatsune\"", "question": "What's the tenure of 3rd son of tadatsune?", "context": "CREATE TABLE table_name_14 (tenure VARCHAR, lineage VARCHAR)"}, {"answer": "SELECT court_rank FROM table_name_32 WHERE revenues = \"10,000 koku\" AND lineage = \"5th son of tadayori\"", "question": "What's the court ranking of 5th son of tadayori and has revenues of 10,000 koku?", "context": "CREATE TABLE table_name_32 (court_rank VARCHAR, revenues VARCHAR, lineage VARCHAR)"}, {"answer": "SELECT courtesy_title FROM table_name_36 WHERE lineage = \"4th son of hatamoto \u014doka tadataka\"", "question": "What's the courtesy title of 4th son of hatamoto \u014doka tadataka?", "context": "CREATE TABLE table_name_36 (courtesy_title VARCHAR, lineage VARCHAR)"}, {"answer": "SELECT rank FROM table_name_87 WHERE name = \"pieter de korver\"", "question": "What was the rank of the event won by Pieter de Korver?", "context": "CREATE TABLE table_name_87 (rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE prize = \"$2,434,061\"", "question": "Which event had a prize of $2,434,061?", "context": "CREATE TABLE table_name_61 (name VARCHAR, prize VARCHAR)"}, {"answer": "SELECT prize FROM table_name_88 WHERE name = \"sebastian ruthenberg\"", "question": "What was the prize won by Sebastian Ruthenberg?", "context": "CREATE TABLE table_name_88 (prize VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_28 WHERE prize = \"$2,434,061\"", "question": "Who won the event with a top prize of $2,434,061?", "context": "CREATE TABLE table_name_28 (name VARCHAR, prize VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_71 WHERE rider = \"mike di meglio\"", "question": "The rider mike di meglio had a total of how many grids?", "context": "CREATE TABLE table_name_71 (grid VARCHAR, rider VARCHAR)"}, {"answer": "SELECT n117_2400_iec3 FROM table_name_10 WHERE n100_iec3 = \"25\"", "question": "What is the N117/2400 IEC3 associated with an N100IEC3 of 25?", "context": "CREATE TABLE table_name_10 (n117_2400_iec3 VARCHAR, n100_iec3 VARCHAR)"}, {"answer": "SELECT name FROM table_name_45 WHERE length = \"2.40km\" AND winner = \"s. loeb\"", "question": "What is the Name of the Special Stage with a 2.40km length and S. Loeb as Winner?", "context": "CREATE TABLE table_name_45 (name VARCHAR, length VARCHAR, winner VARCHAR)"}, {"answer": "SELECT time FROM table_name_38 WHERE length = \"21.40km\" AND name = \"santa rosa 1\"", "question": "In the 21.40km Santa Rosa 1 Stage, what was the Time?", "context": "CREATE TABLE table_name_38 (time VARCHAR, length VARCHAR, name VARCHAR)"}, {"answer": "SELECT winner FROM table_name_54 WHERE stage = \"ss5\"", "question": "What was the Winner of the SS5 Stage?", "context": "CREATE TABLE table_name_54 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT time FROM table_name_74 WHERE name = \"mina clavero 2\"", "question": "What was the Time in the Mina Clavero 2 Stage?", "context": "CREATE TABLE table_name_74 (time VARCHAR, name VARCHAR)"}, {"answer": "SELECT winner FROM table_name_86 WHERE stage = \"ss2\"", "question": "What was Stage SS2's Winner?", "context": "CREATE TABLE table_name_86 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT MIN(bronze_medals) FROM table_name_27 WHERE gold_medals > 3 AND ensemble = \"music city mystique\" AND total_medals < 15", "question": "What is the lowest amount of bronze medals won by Music City Mystique where they won more than 3 gold medals and less than 15 total medals?", "context": "CREATE TABLE table_name_27 (bronze_medals INTEGER, total_medals VARCHAR, gold_medals VARCHAR, ensemble VARCHAR)"}, {"answer": "SELECT COUNT(gold_medals) FROM table_name_3 WHERE ensemble = \"mandarins\" AND bronze_medals > 1", "question": "When the Mandarins won more than 1 bronze medals, how many gold medals did they win?", "context": "CREATE TABLE table_name_3 (gold_medals VARCHAR, ensemble VARCHAR, bronze_medals VARCHAR)"}, {"answer": "SELECT MAX(roll) FROM table_name_49 WHERE years = \"1\u20138\" AND name = \"dorie school\" AND decile > 9", "question": "What is the largest roll with Years 1\u20138, a Name of dorie school, and a Decile larger than 9?", "context": "CREATE TABLE table_name_49 (roll INTEGER, decile VARCHAR, years VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(decile) FROM table_name_95 WHERE years = \"1\u20138\" AND roll = 49", "question": "How many deciles have Years of 1\u20138, and a Roll of 49?", "context": "CREATE TABLE table_name_95 (decile VARCHAR, years VARCHAR, roll VARCHAR)"}, {"answer": "SELECT name FROM table_name_20 WHERE years = \"1\u20138\" AND decile = 9 AND roll < 141", "question": "Which name has Years of 1\u20138, a Decile of 9, and a Roll smaller than 141?", "context": "CREATE TABLE table_name_20 (name VARCHAR, roll VARCHAR, years VARCHAR, decile VARCHAR)"}, {"answer": "SELECT MAX(decile) FROM table_name_46 WHERE years = \"1\u20138\" AND authority = \"state\" AND roll = 141", "question": "What is the largest Decile with Years of 1\u20138, anAuthority of state, and a Roll of 141?", "context": "CREATE TABLE table_name_46 (decile INTEGER, roll VARCHAR, years VARCHAR, authority VARCHAR)"}, {"answer": "SELECT COUNT(decile) FROM table_name_21 WHERE authority = \"state\" AND name = \"chertsey school\"", "question": "How many deciles have an Authority of state and a Name of chertsey school?", "context": "CREATE TABLE table_name_21 (decile VARCHAR, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_19 WHERE bldr = \"mcw&f\" AND year < 1927 AND lt_nos = \"9820-9821\"", "question": "Bldr of mcw&f, and a Year smaller than 1927, and a LT Nos of 9820-9821 has what type?", "context": "CREATE TABLE table_name_19 (type VARCHAR, lt_nos VARCHAR, bldr VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(sales) FROM table_name_21 WHERE song_title = \"21 seconds\"", "question": "What were the total number of sales for the song 21 Seconds?", "context": "CREATE TABLE table_name_21 (sales VARCHAR, song_title VARCHAR)"}, {"answer": "SELECT reigns FROM table_name_53 WHERE days_held = 92", "question": "Which Reigns has 92 days held?", "context": "CREATE TABLE table_name_53 (reigns VARCHAR, days_held VARCHAR)"}, {"answer": "SELECT successful_defenses FROM table_name_89 WHERE days_held = 126 AND reigns = \"3\"", "question": "What successful defenses has 126 days held and a Reigns of 3?", "context": "CREATE TABLE table_name_89 (successful_defenses VARCHAR, days_held VARCHAR, reigns VARCHAR)"}, {"answer": "SELECT event FROM table_name_39 WHERE location = \"philadelphia, pa\" AND days_held = 41", "question": "Which event has Philadelphia, PA as the location and 41 days held?", "context": "CREATE TABLE table_name_39 (event VARCHAR, location VARCHAR, days_held VARCHAR)"}, {"answer": "SELECT no3 FROM table_name_98 WHERE no2 = \"delfina\" AND final = \"pedro\"", "question": "Who was number 3 that had a number 2 of Delfina and a Final of Pedro?", "context": "CREATE TABLE table_name_98 (no3 VARCHAR, no2 VARCHAR, final VARCHAR)"}, {"answer": "SELECT no9 FROM table_name_96 WHERE no7 = \"joana\" AND final = \"pedro\"", "question": "Who was number 9 that had a number 7 of Joana and a Final of Pedro?", "context": "CREATE TABLE table_name_96 (no9 VARCHAR, no7 VARCHAR, final VARCHAR)"}, {"answer": "SELECT days FROM table_name_48 WHERE the_presenter = \"andreas mikroutsikos\" AND launch_date = \"march 10, 2003\"", "question": "Which days were presented by Andreas Mikroutsikos and were launched on March 10, 2003?", "context": "CREATE TABLE table_name_48 (days VARCHAR, the_presenter VARCHAR, launch_date VARCHAR)"}, {"answer": "SELECT the_winner FROM table_name_92 WHERE the_presenter = \"tatiana stefanidou\"", "question": "Who won when the presenter was Tatiana Stefanidou?", "context": "CREATE TABLE table_name_92 (the_winner VARCHAR, the_presenter VARCHAR)"}, {"answer": "SELECT the_prize FROM table_name_19 WHERE tv_channel = \"ant1\" AND the_presenter = \"andreas mikroutsikos\" AND launch_date = \"march 10, 2003\"", "question": "What was the prize when the show was aired on Ant1, was presented by Andreas Mikroutsikos, and was launched on March 10, 2003?", "context": "CREATE TABLE table_name_19 (the_prize VARCHAR, launch_date VARCHAR, tv_channel VARCHAR, the_presenter VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_19 WHERE bronze < 0", "question": "Name the sum of gold when Bronze is less than 0", "context": "CREATE TABLE table_name_19 (gold INTEGER, bronze INTEGER)"}, {"answer": "SELECT nation FROM table_name_46 WHERE total > 4 AND bronze < 4", "question": "Name the nation when bronze is less than 4 and the total is more than 4", "context": "CREATE TABLE table_name_46 (nation VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT position FROM table_name_27 WHERE team = \"chicago bulls\"", "question": "What positions are in the Chicago bulls?", "context": "CREATE TABLE table_name_27 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT season FROM table_name_46 WHERE nationality = \"united states\" AND position = \"center\"", "question": "What season did a United States center play in?", "context": "CREATE TABLE table_name_46 (season VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT film FROM table_name_30 WHERE year = 1983", "question": "Which film was released in 1983?", "context": "CREATE TABLE table_name_30 (film VARCHAR, year VARCHAR)"}, {"answer": "SELECT us_peak_position FROM table_name_83 WHERE uk_peak_position = \"21\"", "question": "What was the US Peak position of the film that peaked at #21 in the UK?", "context": "CREATE TABLE table_name_83 (us_peak_position VARCHAR, uk_peak_position VARCHAR)"}, {"answer": "SELECT score_composer FROM table_name_5 WHERE year = 1967", "question": "Who was the score composer of the film released in 1967?", "context": "CREATE TABLE table_name_5 (score_composer VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_1 WHERE uk_peak_position = \"10\"", "question": "How many years had a film that peaked at #10 in the UK?", "context": "CREATE TABLE table_name_1 (year VARCHAR, uk_peak_position VARCHAR)"}, {"answer": "SELECT category FROM table_name_56 WHERE director_s_ = \"tom shankland\"", "question": "what category is for tom shankland, director?", "context": "CREATE TABLE table_name_56 (category VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT COUNT(transfer_fee___) AS \u20ac_million_ FROM table_name_13 WHERE player = \"afonso alves\" AND year > 2008", "question": "How many transfer fees did Afonso Alves have after 2008?", "context": "CREATE TABLE table_name_13 (transfer_fee___ VARCHAR, player VARCHAR, year VARCHAR)"}, {"answer": "SELECT country FROM table_name_30 WHERE film_title_used_in_nomination = \"the garden of the finzi-continis\"", "question": "Where was the film about the garden of the finzi-continis made?", "context": "CREATE TABLE table_name_30 (country VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_44 WHERE language = \"portuguese\"", "question": "Which film was translated from portuguese?", "context": "CREATE TABLE table_name_44 (original_name VARCHAR, language VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_27 WHERE country = \"france\"", "question": "Which film originated in France?", "context": "CREATE TABLE table_name_27 (original_name VARCHAR, country VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_26 WHERE film_title_used_in_nomination = \"love\"", "question": "What is the real name of the movie about love?", "context": "CREATE TABLE table_name_26 (original_name VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_22 WHERE director = \"gert fredholm\"", "question": "What is the real name of the movie directed by gert fredholm?", "context": "CREATE TABLE table_name_22 (original_name VARCHAR, director VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_9 WHERE country = \"bulgaria\"", "question": "Which movie originated in Bulgaria?", "context": "CREATE TABLE table_name_9 (film_title_used_in_nomination VARCHAR, country VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_64 WHERE loss = \"stieb (5-7)\"", "question": "Who was the opponent at the game that had a loss of Stieb (5-7)?", "context": "CREATE TABLE table_name_64 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_9 WHERE opponent = \"angels\" AND record = \"26-30\"", "question": "What was the loss of the game against the Angels with a 26-30 record?", "context": "CREATE TABLE table_name_9 (loss VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_22 WHERE year < 1953 AND chassis = \"ferrari 375/50\"", "question": "What is the most points earlier than 1953 with a Ferrari 375/50 chassis?", "context": "CREATE TABLE table_name_22 (points INTEGER, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_13 WHERE points > 0", "question": "What is the latest year with more than 0 points?", "context": "CREATE TABLE table_name_13 (year INTEGER, points INTEGER)"}, {"answer": "SELECT year FROM table_name_90 WHERE points < 1.5 AND entrant = \"escuderia bandeirantes\" AND engine = \"maserati straight-4\"", "question": "What year were there less than 1.5 points and an Entrant of escuderia bandeirantes, and a maserati straight-4 engine?", "context": "CREATE TABLE table_name_90 (year VARCHAR, engine VARCHAR, points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_65 WHERE entrant = \"escuderia bandeirantes\" AND year < 1952", "question": "What is the number of points for the Entrant of escuderia bandeirantes earlier than 1952?", "context": "CREATE TABLE table_name_65 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_5 WHERE tournament = \"canada masters\"", "question": "What was the double's performance data from the Canada Masters tournament in 2008?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_54 WHERE tournament = \"monte carlo masters\"", "question": "What was the double's performance data from the Monte Carlo Masters tournament in 2007?", "context": "CREATE TABLE table_name_54 (tournament VARCHAR)"}, {"answer": "SELECT MIN(population__2004_) FROM table_name_8 WHERE households = 5158", "question": "What is the lowest 2004 population when there were 5158 households?", "context": "CREATE TABLE table_name_8 (population__2004_ INTEGER, households VARCHAR)"}, {"answer": "SELECT COUNT(moroccan_population) FROM table_name_30 WHERE name = \"sebt saiss\" AND population__2004_ > 11212", "question": "What is the number for the Moroccan population when the name is Sebt Saiss and the 2004 population is more than 11212?", "context": "CREATE TABLE table_name_30 (moroccan_population VARCHAR, name VARCHAR, population__2004_ VARCHAR)"}, {"answer": "SELECT MAX(foreign_population) FROM table_name_83 WHERE population__2004_ = 7641", "question": "What is the largest foreign population when the 2004 population is 7641?", "context": "CREATE TABLE table_name_83 (foreign_population INTEGER, population__2004_ VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_85 WHERE points < 0", "question": "What is the highest year that has no more than 0 points?", "context": "CREATE TABLE table_name_85 (year INTEGER, points INTEGER)"}, {"answer": "SELECT chassis FROM table_name_60 WHERE points = 7", "question": "Which of the chassis had a total of 7 points?", "context": "CREATE TABLE table_name_60 (chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_35 WHERE chassis = \"kurtis kraft 500c\" AND entrant = \"bardahl\" AND points < 0", "question": "What was the latest year that a Bardahl entrant had a Kurtis Kraft 500c chassis with no more than 0 points?", "context": "CREATE TABLE table_name_35 (year INTEGER, points VARCHAR, chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_75 WHERE entrant = \"hopkins\" AND year < 1956", "question": "What was the average points for Hopkins before 1956?", "context": "CREATE TABLE table_name_75 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_19 WHERE year < 1960 AND entrant = \"simoniz\"", "question": "What is the least amount of points the entrant Simoniz received before 1960?", "context": "CREATE TABLE table_name_19 (points INTEGER, year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_72 WHERE director = \"lene gr\u00f8nlykke and sven gr\u00f8nlykke\"", "question": "What was the original title of the film directed by Lene Gr\u00f8nlykke and Sven Gr\u00f8nlykke?", "context": "CREATE TABLE table_name_72 (original_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT language FROM table_name_27 WHERE director = \"federico fellini\"", "question": "What is the language of the film directed by Federico Fellini?", "context": "CREATE TABLE table_name_27 (language VARCHAR, director VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_26 WHERE country = \"south korea\"", "question": "What is the film title used in nomination for the film from South Korea?", "context": "CREATE TABLE table_name_26 (film_title_used_in_nomination VARCHAR, country VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_89 WHERE director = \"gheorghe vitanidis\"", "question": "What was the film title used in nomination for the film directed by Gheorghe Vitanidis?", "context": "CREATE TABLE table_name_89 (film_title_used_in_nomination VARCHAR, director VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE film = \"monsters\"", "question": "When did the film 'Monsters' come out?", "context": "CREATE TABLE table_name_96 (date VARCHAR, film VARCHAR)"}, {"answer": "SELECT recipient FROM table_name_78 WHERE date = \"12/11/03\"", "question": "What movie won with a date of 12/11/03", "context": "CREATE TABLE table_name_78 (recipient VARCHAR, date VARCHAR)"}, {"answer": "SELECT producer_s_ FROM table_name_20 WHERE film = \"strange little girls\"", "question": "Who was the producer for the film 'Strange Little Girls'?", "context": "CREATE TABLE table_name_20 (producer_s_ VARCHAR, film VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_name_35 WHERE recipient = \"intrepido ltd\" AND date = \"17/03/04\"", "question": "Which writer worked for Intrepido LTD for a film on 17/03/04?", "context": "CREATE TABLE table_name_35 (writer_s_ VARCHAR, recipient VARCHAR, date VARCHAR)"}, {"answer": "SELECT producer_s_ FROM table_name_42 WHERE recipient = \"animus films ltd\"", "question": "Which producer worked for Animus Films LTD?", "context": "CREATE TABLE table_name_42 (producer_s_ VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_94 WHERE opponent = \"mariners\" AND score = \"9-6\"", "question": "How many people attended the game against the Mariners with a score of 9-6?", "context": "CREATE TABLE table_name_94 (attendance VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT loss FROM table_name_82 WHERE record = \"42-36\"", "question": "What is the loss for the record of 42-36?", "context": "CREATE TABLE table_name_82 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE score = \"5-2\" AND loss = \"sele (3-2)\"", "question": "What date was the score 5-2 with a loss of sele (3-2)?", "context": "CREATE TABLE table_name_17 (date VARCHAR, score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_67 WHERE record = \"38-33\"", "question": "What is the loss when the record is 38-33?", "context": "CREATE TABLE table_name_67 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_72 WHERE player = \"conor jackson\"", "question": "What was the pick number of Conor Jackson?", "context": "CREATE TABLE table_name_72 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT school FROM table_name_36 WHERE pick = 29", "question": "What school had the draft pick of 29?", "context": "CREATE TABLE table_name_36 (school VARCHAR, pick VARCHAR)"}, {"answer": "SELECT school FROM table_name_75 WHERE player = \"conor jackson\"", "question": "What school did Conor Jackson attend?", "context": "CREATE TABLE table_name_75 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_68 WHERE 2008 = \"q1\"", "question": "What is the value for 2007 when 2008 is Q1?", "context": "CREATE TABLE table_name_68 (Id VARCHAR)"}, {"answer": "SELECT career_win_loss FROM table_name_65 WHERE 2008 = \"q1\" AND tournament = \"australian open\"", "question": "What is the win-loss when 2008 has a value of Q1 at Australian Open?", "context": "CREATE TABLE table_name_65 (career_win_loss VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_86 WHERE tournament = \"french open\"", "question": "What is the value in 2009 at the French Open?", "context": "CREATE TABLE table_name_86 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_31 WHERE tournament = \"us open\"", "question": "What is the value in 2008 for the US Open?", "context": "CREATE TABLE table_name_31 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_19 WHERE 2007 = \"1r\"", "question": "What is the value in 2009 when 1R is in 2007?", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT record FROM table_name_4 WHERE date = \"may 6\"", "question": "What is the record of the game on May 6?", "context": "CREATE TABLE table_name_4 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_38 WHERE 2012 = \"2r\"", "question": "what is the tournament when in 2012 the performance was 2r?", "context": "CREATE TABLE table_name_38 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_12 WHERE 2010 = \"1r\" AND 2011 = \"1r\"", "question": "what is the tournament with the performance in 2010 and 2011 is 1r?", "context": "CREATE TABLE table_name_12 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_28 WHERE 2011 = \"qf\" AND 2010 = \"3r\"", "question": "what is the 2012 performance when in 2011 is qf and 2010 is 3r?", "context": "CREATE TABLE table_name_28 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_42 WHERE 2011 = \"qf\" AND 2012 = \"sf\"", "question": "what is the tournament when 2011 is qf and 2012 is sf?", "context": "CREATE TABLE table_name_42 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_77 WHERE 2012 = \"3r\" AND 2011 = \"qf\"", "question": "what is the tournament when the performance in 2012 is 3r and 2011 is qf?", "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_2 WHERE tournament = \"us open\"", "question": "what is the 2011 performance for the US open?", "context": "CREATE TABLE table_name_2 (tournament VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_70 WHERE entrant = \"spirit tom's racing\" AND points > 3", "question": "What is the year when Spirit Tom's Racing had more than 3 points?", "context": "CREATE TABLE table_name_70 (year INTEGER, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_17 WHERE attendance = 75 OFFSET 111", "question": "Name the average week for attendance of 75,111", "context": "CREATE TABLE table_name_17 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_49 WHERE attendance = 62 OFFSET 233", "question": "Name the sum of week with attendance of 62,233", "context": "CREATE TABLE table_name_49 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_9 WHERE place = \"3rd\" AND position > 8", "question": "Who had the smallest points in 3rd place but had a position greater than 8?", "context": "CREATE TABLE table_name_9 (points INTEGER, place VARCHAR, position VARCHAR)"}, {"answer": "SELECT place FROM table_name_12 WHERE position < 5 AND points = 90", "question": "What was the place with 90 point total but a position less than 5?", "context": "CREATE TABLE table_name_12 (place VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT song FROM table_name_31 WHERE points > 100 AND artist = \"afro-dite\"", "question": "What's the name of the song by afro-dite that had a points total greater than 100?", "context": "CREATE TABLE table_name_31 (song VARCHAR, points VARCHAR, artist VARCHAR)"}, {"answer": "SELECT SUM(money_requested__) AS \u00a3_ FROM table_name_87 WHERE first_aired = \"4 september 2011\"", "question": "how much money was requested on the show which aired on 4 september 2011?", "context": "CREATE TABLE table_name_87 (money_requested__ INTEGER, first_aired VARCHAR)"}, {"answer": "SELECT investing_dragon_s_ FROM table_name_31 WHERE episode = \"episode 10\"", "question": "what investing dragons aired on episode 10?", "context": "CREATE TABLE table_name_31 (investing_dragon_s_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_53 WHERE year > 1993 AND entrant = \"sasol jordan\"", "question": "For the Entrant of Sasol Jordan, add up all the points with a Year larger than 1993.", "context": "CREATE TABLE table_name_53 (points INTEGER, year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_64 WHERE chassis = \"jordan 194\"", "question": "Give the most points that features jordan 194 in the Chassis column.", "context": "CREATE TABLE table_name_64 (points INTEGER, chassis VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_18 WHERE category = \"sub 1 litre\"", "question": "What car was awarded sub 1 litre in 2000?", "context": "CREATE TABLE table_name_18 (category VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_35 WHERE 1999 = \"toyota 1sz-fe 1.0l yaris\" AND category = \"sub 1 litre\"", "question": "What car was awarded sub 1 litre in 2000 (won by toyota 1sz-fe 1.0l yaris in 1999)?", "context": "CREATE TABLE table_name_35 (category VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_76 WHERE 1999 = \"toyota 1nz-fxe hybrid prius\"", "question": "Which car won the same award in 2001 that the toyota 1nz-fxe hybrid prius won in 1999?", "context": "CREATE TABLE table_name_76 (Id VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_13 WHERE 2001 = \"ferrari f133 5.5l v12 456 / 550\"", "question": "Which car won the same award in 2000 that the ferrari f133 5.5l v12 456 / 550 won in 2001?", "context": "CREATE TABLE table_name_13 (Id VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_26 WHERE 1999 = \"bmw m67d39 3.9l v8 e38 740d\"", "question": "Which car won the same award in 2001 that the bmw m67d39 3.9l v8 e38 740d won in 1999?", "context": "CREATE TABLE table_name_26 (Id VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_17 WHERE category = \"1.4litre to 1.8litre\"", "question": "Which car won the 1.4litre to 1.8litre award in 2001?", "context": "CREATE TABLE table_name_17 (category VARCHAR)"}, {"answer": "SELECT surface FROM table_name_38 WHERE mountain = \"elk garden\"", "question": "What is the surface of the mountain range that contains the Elk Garden Mountain?", "context": "CREATE TABLE table_name_38 (surface VARCHAR, mountain VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_70 WHERE tournament = \"grand slam tournaments\"", "question": "What is the 2012 value at the Grand Slam Tournaments?", "context": "CREATE TABLE table_name_70 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_77 WHERE 2011 = \"a\"", "question": "What is the tournament with A in 2011?", "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_43 WHERE 2009 = \"a\" AND 2008 = \"a\" AND tournament = \"australian open\"", "question": "What is the 2010 value with A in 2009 and A in 2008 in the Australian Open?", "context": "CREATE TABLE table_name_43 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_13 WHERE 2010 = \"a\" AND tournament = \"wimbledon\"", "question": "What is the 2012 value with A in 2010 at the Tournament of Wimbledon?", "context": "CREATE TABLE table_name_13 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_60 WHERE 2010 = \"q1\"", "question": "What is the 2009 value with q1 in 2010?", "context": "CREATE TABLE table_name_60 (Id VARCHAR)"}, {"answer": "SELECT record FROM table_name_20 WHERE score = \"0-7\"", "question": "What was the record of the game that went 0-7?", "context": "CREATE TABLE table_name_20 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE opponent = \"diamondbacks\" AND score = \"2-7\"", "question": "What day did the Diamondbacks go 2-7?", "context": "CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_88 WHERE score = \"3-5\"", "question": "What was the record of the game that went 3-5?", "context": "CREATE TABLE table_name_88 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(elevation__ft_) FROM table_name_40 WHERE type = \"stratovolcano\" AND name = \"goat rocks\" AND elevation__m_ > 2 OFFSET 494", "question": "Type of stratovolcano, and a Name of goat rocks, and a Elevation (m) larger than 2,494 has what highest elevation in feet?", "context": "CREATE TABLE table_name_40 (elevation__ft_ INTEGER, elevation__m_ VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_90 WHERE year > 1963", "question": "What is the lowest points of British Racing after 1963?", "context": "CREATE TABLE table_name_90 (points INTEGER, year INTEGER)"}, {"answer": "SELECT chassis FROM table_name_47 WHERE points = 6", "question": "Which chassis was used when over 6 points were earned?", "context": "CREATE TABLE table_name_47 (chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_73 WHERE year < 1964", "question": "What is the average points of the drivers before 1964?", "context": "CREATE TABLE table_name_73 (points INTEGER, year INTEGER)"}, {"answer": "SELECT period FROM table_name_93 WHERE built = \"578\"", "question": "In what time period were 578 built?", "context": "CREATE TABLE table_name_93 (period VARCHAR, built VARCHAR)"}, {"answer": "SELECT period FROM table_name_2 WHERE model = \"cessna 208\"", "question": "In what time period was the Cessna 208 built?", "context": "CREATE TABLE table_name_2 (period VARCHAR, model VARCHAR)"}, {"answer": "SELECT period FROM table_name_13 WHERE built = \"354\"", "question": "In what time period were 354 built?", "context": "CREATE TABLE table_name_13 (period VARCHAR, built VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_97 WHERE gold = 2", "question": "How many silver metals are possessed by countries with 2 gold medals?", "context": "CREATE TABLE table_name_97 (silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_76 WHERE total > 2 AND bronze > 2", "question": "What is the total sum of silver metals for all countries with more than 2 Bronze medals?", "context": "CREATE TABLE table_name_76 (silver INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_70 WHERE gold = 1 AND silver < 0", "question": "What is the lowest number of bronze medals for a country with less than 1 gold and 0 silver?", "context": "CREATE TABLE table_name_70 (bronze INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT loss FROM table_name_62 WHERE date = \"april 16\"", "question": "What was the score of the game for April 16?", "context": "CREATE TABLE table_name_62 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_32 WHERE charts = \"no. 7\"", "question": "What year was the No. 7 charts?", "context": "CREATE TABLE table_name_32 (year INTEGER, charts VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE game_site = \"riverfront stadium\"", "question": "Name the date for game site of riverfront stadium", "context": "CREATE TABLE table_name_31 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT record FROM table_name_67 WHERE attendance = \"73,996\"", "question": "Name the record with attendance of 73,996", "context": "CREATE TABLE table_name_67 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_88 WHERE result = \"w 20-14\"", "question": "Name the game site with result of w 20-14", "context": "CREATE TABLE table_name_88 (game_site VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_72 WHERE week = \"16\"", "question": "Name the result with week of 16", "context": "CREATE TABLE table_name_72 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT record FROM table_name_51 WHERE result = \"w 13-11\"", "question": "Name the record with result of w 13-11", "context": "CREATE TABLE table_name_51 (record VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE opponent = \"chicago bears\"", "question": "Name the result for opponent of chicago bears", "context": "CREATE TABLE table_name_14 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT airdate FROM table_name_54 WHERE length = \"30 minutes\"", "question": "The length of 30 minutes aired on what date?", "context": "CREATE TABLE table_name_54 (airdate VARCHAR, length VARCHAR)"}, {"answer": "SELECT airdate FROM table_name_46 WHERE length = \"60 minutes\"", "question": "When did the length of 60 minutes air?", "context": "CREATE TABLE table_name_46 (airdate VARCHAR, length VARCHAR)"}, {"answer": "SELECT division_iV FROM table_name_35 WHERE division_iII = portsmouth", "question": "With a Division II of Portsmouth, what is the Division IV?", "context": "CREATE TABLE table_name_35 (division_iV VARCHAR, division_iII VARCHAR, portsmouth VARCHAR)"}, {"answer": "SELECT division_iII FROM table_name_97 WHERE division_v = \"bishop brady\" AND division_iV = hanover", "question": "What Division III has Bishop Brady in Division V and Hanover in Division IV?", "context": "CREATE TABLE table_name_97 (division_iII VARCHAR, division_v VARCHAR, division_iV VARCHAR, hanover VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_88 WHERE chassis = \"reynard 92d\"", "question": "What is the total sum of points of entrants with a reynard 92d chassis?", "context": "CREATE TABLE table_name_88 (points INTEGER, chassis VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_21 WHERE engine = \"ford cosworth\" AND year > 1991", "question": "What is total amount of points of entrants with a ford cosworth engine and a year later than 1991?", "context": "CREATE TABLE table_name_21 (points VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE venue = \"adelaide oval\"", "question": "When has a Venue of Adelaide Oval?", "context": "CREATE TABLE table_name_94 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_81 WHERE venue = \"waca ground\"", "question": "What is the Home Captain which has Waca Ground as a Venue", "context": "CREATE TABLE table_name_81 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_75 WHERE score = \"1-3\"", "question": "Name the venue for score of 1-3", "context": "CREATE TABLE table_name_75 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT points FROM table_name_21 WHERE chassis = \"march 751\"", "question": "Name the points with chassis of march 751", "context": "CREATE TABLE table_name_21 (points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_33 WHERE chassis = \"alfa romeo 177\" AND year < 1979", "question": "Name the most points for years before 1979 and chassis of alfa romeo 177", "context": "CREATE TABLE table_name_33 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_86 WHERE entrant = \"beta team march\" AND year = 1975 AND chassis = \"march 751\"", "question": "Name the total number of points for beta team march 1975 and chassis of march 751", "context": "CREATE TABLE table_name_86 (points VARCHAR, chassis VARCHAR, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT persian FROM table_name_92 WHERE romani = \"duj\"", "question": "What Persian word(s) has the same meaning as the Romani word duj?", "context": "CREATE TABLE table_name_92 (persian VARCHAR, romani VARCHAR)"}, {"answer": "SELECT domari FROM table_name_40 WHERE hindi = \"p\u0101\u00f1c\"", "question": "What Domari word has the same meaning as the Hindi word p\u0101\u00f1c?", "context": "CREATE TABLE table_name_40 (domari VARCHAR, hindi VARCHAR)"}, {"answer": "SELECT hindi FROM table_name_99 WHERE lomavren = \"saj\"", "question": "What word in Hindi has the same meaning as the Lomavren word saj?", "context": "CREATE TABLE table_name_99 (hindi VARCHAR, lomavren VARCHAR)"}, {"answer": "SELECT persian FROM table_name_84 WHERE domari = \"na\"", "question": "What Persian word has the same meaning as the Domari word na?", "context": "CREATE TABLE table_name_84 (persian VARCHAR, domari VARCHAR)"}, {"answer": "SELECT romani FROM table_name_56 WHERE persian = \"dah\"", "question": "What Romani word has the same meaning as the Persian word dah?", "context": "CREATE TABLE table_name_56 (romani VARCHAR, persian VARCHAR)"}, {"answer": "SELECT lomavren FROM table_name_97 WHERE hindi = \"do\"", "question": "What Lomavren word has the same meaning as the Hindi word do?", "context": "CREATE TABLE table_name_97 (lomavren VARCHAR, hindi VARCHAR)"}, {"answer": "SELECT surface FROM table_name_53 WHERE opponents = \"amer delic robert kendrick\"", "question": "Which type of surface do Amer Delic Robert Kendrick's opponents have?", "context": "CREATE TABLE table_name_53 (surface VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT surface FROM table_name_82 WHERE score = \"w/o\"", "question": "On which surface was the score w/o?", "context": "CREATE TABLE table_name_82 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE opponents = \"diego junqueira gabriel trujillo-soler\"", "question": "What is Diego Junqueira Gabriel Trujillo-Soler's opponent's score?", "context": "CREATE TABLE table_name_35 (score VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT surface FROM table_name_18 WHERE opponents = \"thomas oger nicolas tourte\"", "question": "Which surface do opponents of Thomas Oger Nicolas Tourte have?", "context": "CREATE TABLE table_name_18 (surface VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE circuit = \"madonie\" AND winning_constructor = \"bugatti\"", "question": "In the circuit of Madonie, what was the date that had the winning constructor Bugatti?", "context": "CREATE TABLE table_name_17 (date VARCHAR, circuit VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_5 WHERE winning_constructor = \"itala\" AND name = \"savio circuit\"", "question": "Who was the winning driver of the Savio Circuit with the constructor Itala?", "context": "CREATE TABLE table_name_5 (winning_driver VARCHAR, winning_constructor VARCHAR, name VARCHAR)"}, {"answer": "SELECT death FROM table_name_75 WHERE birth = \"1309\"", "question": "What is the date of death of the Countess of Flanders who was born in 1309?", "context": "CREATE TABLE table_name_75 (death VARCHAR, birth VARCHAR)"}, {"answer": "SELECT death FROM table_name_69 WHERE birth = \"1309\"", "question": "What is the date of death of the Countess of Flanders who was born in 1309?", "context": "CREATE TABLE table_name_69 (death VARCHAR, birth VARCHAR)"}, {"answer": "SELECT spouse FROM table_name_71 WHERE name = \"margaret of brabant\"", "question": "Who was Margaret of Brabant's spouse?", "context": "CREATE TABLE table_name_71 (spouse VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(acquired) FROM table_name_49 WHERE design = \"1a1\" AND name = \"wallenstein\"", "question": "What is the average year for Wallenstein with 1a1 design?", "context": "CREATE TABLE table_name_49 (acquired INTEGER, design VARCHAR, name VARCHAR)"}, {"answer": "SELECT design FROM table_name_32 WHERE acquired = 1875", "question": "What design was acquired in 1875?", "context": "CREATE TABLE table_name_32 (design VARCHAR, acquired VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_55 WHERE winner = \"arthur osborne\"", "question": "Who was the incumbent when Arthur Osborne won the election?", "context": "CREATE TABLE table_name_55 (incumbent VARCHAR, winner VARCHAR)"}, {"answer": "SELECT SUM(saves) FROM table_name_10 WHERE save__percentage = \"92.3%\" AND goals_against > 217", "question": "How many saves did the player with a 92.3% save rate and 217 goals have?", "context": "CREATE TABLE table_name_10 (saves INTEGER, save__percentage VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_50 WHERE h___a = \"h\" AND referee = \"beguiristain iceta\" AND kick_off = \"1993-04-18 17:00\"", "question": "Who is the opponent of the match with a H/A of h, Beguiristain Iceta as the referee, and a kick off at 1993-04-18 17:00?", "context": "CREATE TABLE table_name_50 (opponents VARCHAR, kick_off VARCHAR, h___a VARCHAR, referee VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE h___a = \"a\" AND kick_off = \"1992-10-31 16:00\"", "question": "What is the result of the match with a H/A of A and a kick off at 1992-10-31 16:00?", "context": "CREATE TABLE table_name_14 (result VARCHAR, h___a VARCHAR, kick_off VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_46 WHERE year = 2010", "question": "How many Laps were there in 2010?", "context": "CREATE TABLE table_name_46 (laps INTEGER, year VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_59 WHERE team = \"toyota racing\" AND year > 2012", "question": "Who was the co-driver for Toyota Racing after the year 2012?", "context": "CREATE TABLE table_name_59 (co_drivers VARCHAR, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_47 WHERE pos = \"4th\" AND year > 2013", "question": "How many laps were driven by the racer who earned 4th place in 2013?", "context": "CREATE TABLE table_name_47 (laps VARCHAR, pos VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_62 WHERE record = \"78-60\"", "question": "Which opponent has a record of 78-60?", "context": "CREATE TABLE table_name_62 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE loss = \"erickson (8-19)\"", "question": "Which opponent has a loss of erickson (8-19)?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_58 WHERE game < 3 AND score = \"2 \u2013 5\"", "question": "Which Attendance  has a Game score less than 3, and a Score of 2 \u2013 5?", "context": "CREATE TABLE table_name_58 (attendance INTEGER, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_77 WHERE series = \"2 \u2013 3\"", "question": "Who has Series of 2 \u2013 3?", "context": "CREATE TABLE table_name_77 (visitor VARCHAR, series VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_95 WHERE home = \"detroit\" AND date = \"april 22\"", "question": "Who has  a Home of detroit on  april 22?", "context": "CREATE TABLE table_name_95 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_24 WHERE goals < 23 AND league = \"football league division 3\" AND year = \"1997\u201398\"", "question": "Leading Scorer that has a Goal smaller than 23, and a League of football league division 3, and a Year of 1997\u201398 is who?", "context": "CREATE TABLE table_name_24 (leading_scorer VARCHAR, year VARCHAR, goals VARCHAR, league VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_45 WHERE leading_scorer = \"ian rush\"", "question": "Leading Scorer of Ian rush is what lowest # of goals?", "context": "CREATE TABLE table_name_45 (goals INTEGER, leading_scorer VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_63 WHERE position = \"14th of 24\" AND league = \"football conference\"", "question": "Goals that has a Position of 14th of 24, and a League of football conference has what sum?", "context": "CREATE TABLE table_name_63 (goals INTEGER, position VARCHAR, league VARCHAR)"}, {"answer": "SELECT league FROM table_name_13 WHERE position = \"7th of 24\" AND goals < 24", "question": "Position of 7th of 24, and a Goals smaller than 24 is what league?", "context": "CREATE TABLE table_name_13 (league VARCHAR, position VARCHAR, goals VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_96 WHERE points < 2", "question": "Which entrant scored less than 2 points?", "context": "CREATE TABLE table_name_96 (entrant VARCHAR, points INTEGER)"}, {"answer": "SELECT entrant FROM table_name_9 WHERE chassis = \"de tomaso 505\"", "question": "Which entrant used the chassis de tomaso 505?", "context": "CREATE TABLE table_name_9 (entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT presentation_of_credentials FROM table_name_91 WHERE termination_of_mission = \"august 15, 2000\"", "question": "What is the Presentation of Credentials has a Termination of Mission listed as August 15, 2000?", "context": "CREATE TABLE table_name_91 (presentation_of_credentials VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT presentation_of_credentials FROM table_name_55 WHERE appointed_by = \"benjamin harrison\"", "question": "Which Presentation of Credentials is listed for the Appointed by Benjamin Harrison?", "context": "CREATE TABLE table_name_55 (presentation_of_credentials VARCHAR, appointed_by VARCHAR)"}, {"answer": "SELECT termination_of_mission FROM table_name_37 WHERE title = \"ambassador extraordinary and plenipotentiary\" AND representative = \"reynold e. carlson\"", "question": "What is the Termination of Mission with a Title of Ambassador Extraordinary and Plenipotentiary with a Representative of Reynold E. Carlson?", "context": "CREATE TABLE table_name_37 (termination_of_mission VARCHAR, title VARCHAR, representative VARCHAR)"}, {"answer": "SELECT representative FROM table_name_10 WHERE termination_of_mission = \"may 24, 1905\"", "question": "Which Representative has a Termination of Mission as May 24, 1905?", "context": "CREATE TABLE table_name_10 (representative VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT title FROM table_name_90 WHERE presentation_of_credentials = \"october 4, 1988\"", "question": "What Title has a Presentation of Credentials of October 4, 1988?", "context": "CREATE TABLE table_name_90 (title VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT appointed_by FROM table_name_55 WHERE title = \"ambassador extraordinary and plenipotentiary\" AND representative = \"spruille braden\"", "question": "What is the Appointed by that has the Title of Ambassador Extraordinary and Plenipotentiary and has a Representative of Spruille Braden?", "context": "CREATE TABLE table_name_55 (appointed_by VARCHAR, title VARCHAR, representative VARCHAR)"}, {"answer": "SELECT race_leader FROM table_name_90 WHERE course = \"cuneo to turin\"", "question": "Who's the race leader of Cuneo to Turin?", "context": "CREATE TABLE table_name_90 (race_leader VARCHAR, course VARCHAR)"}, {"answer": "SELECT course FROM table_name_5 WHERE stage = \"1\"", "question": "What course are they running on stage 1?", "context": "CREATE TABLE table_name_5 (course VARCHAR, stage VARCHAR)"}, {"answer": "SELECT distance FROM table_name_73 WHERE stage = \"4\"", "question": "What's the distance of the course of stage 4?", "context": "CREATE TABLE table_name_73 (distance VARCHAR, stage VARCHAR)"}, {"answer": "SELECT distance FROM table_name_13 WHERE stage = \"4\"", "question": "What was the distance of the course for stage 4?", "context": "CREATE TABLE table_name_13 (distance VARCHAR, stage VARCHAR)"}, {"answer": "SELECT race_leader FROM table_name_66 WHERE stage = \"5\"", "question": "Who was the race leader for stage 5?", "context": "CREATE TABLE table_name_66 (race_leader VARCHAR, stage VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE competition = \"2000 afc asian cup qualification\"", "question": "Name the result for 2000 afc asian cup qualification", "context": "CREATE TABLE table_name_14 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_24 WHERE bronze < 2 AND rank > 2 AND silver < 1", "question": "Name the least total when bronze is less than 2 and rank is more than 2 with silver less than 1", "context": "CREATE TABLE table_name_24 (total INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_91 WHERE total = 2 AND rank < 2", "question": "What is the largest gold with a Total of 2, and a Rank smaller than 2?", "context": "CREATE TABLE table_name_91 (gold INTEGER, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_17 WHERE nation = \"united states\" AND rank < 2", "question": "What is the lowest total from United States with a Rank smaller than 2?", "context": "CREATE TABLE table_name_17 (total INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_61 WHERE rank < 2 AND gold > 1", "question": "What is the average silver with a Rank smaller than 2 and more than 1 gold?", "context": "CREATE TABLE table_name_61 (silver INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_69 WHERE total < 1", "question": "What is the smallest rank with a Total smaller than 1?", "context": "CREATE TABLE table_name_69 (rank INTEGER, total INTEGER)"}, {"answer": "SELECT AVG(year) FROM table_name_60 WHERE certification = \"2x platinum\" AND \u00e1lbum = \"xuxa 3\" AND sales > 750 OFFSET 000", "question": "What was the average year that Xuxa 3 earned the certification 2x platinum, and that the sales were higher than 750,000?", "context": "CREATE TABLE table_name_60 (year INTEGER, sales VARCHAR, certification VARCHAR, \u00e1lbum VARCHAR)"}, {"answer": "SELECT sales FROM table_name_59 WHERE year < 1991", "question": "What were the number of sales before 1991?", "context": "CREATE TABLE table_name_59 (sales VARCHAR, year INTEGER)"}, {"answer": "SELECT \u00e1lbum FROM table_name_65 WHERE year = 1996", "question": "What \u00e1lbum was in the year 1996?", "context": "CREATE TABLE table_name_65 (\u00e1lbum VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(population__total_) FROM table_name_96 WHERE year = 1976 AND _barcaldine_ < 1 OFFSET 780", "question": "What is the high Population (total) from 1976 with a (Barcaldine) smaller than 1,780?", "context": "CREATE TABLE table_name_96 (population__total_ INTEGER, year VARCHAR, _barcaldine_ VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_42 WHERE _aramac_ = 832 AND population__total_ < 3 OFFSET 762", "question": "What Year has an (Aramac) of 832 and a Population (Total) less than 3,762?", "context": "CREATE TABLE table_name_42 (year INTEGER, _aramac_ VARCHAR, population__total_ VARCHAR)"}, {"answer": "SELECT engine FROM table_name_42 WHERE year > 1955 AND points > 0 AND entrant = \"hoover motor express\"", "question": "What was the engine of the Hoover Motor Express after 1955 with greater than 0 points?", "context": "CREATE TABLE table_name_42 (engine VARCHAR, entrant VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_8 WHERE engine = \"offenhauser l4\" AND entrant = \"belanger motors\"", "question": "What is the average year that the Belanger Motors had an Offenhauser l4 engine?", "context": "CREATE TABLE table_name_8 (year INTEGER, engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT name FROM table_name_39 WHERE current_age > 45 AND years_on_death_row < 22", "question": "Who is the prisoner that is older than 45 and has served less than 22 years on death row?", "context": "CREATE TABLE table_name_39 (name VARCHAR, current_age VARCHAR, years_on_death_row VARCHAR)"}, {"answer": "SELECT name FROM table_name_35 WHERE current_age = 29", "question": "What is the prisoner's name that is currently 29 years old?", "context": "CREATE TABLE table_name_35 (name VARCHAR, current_age VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_77 WHERE 2007 = \"a\" AND 2012 = \"a\"", "question": "Name the 2010 for 2007 of a and 2012 of a", "context": "CREATE TABLE table_name_77 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_20 WHERE 2012 = \"a\" AND tournament = \"australian open\"", "question": "Name the 2008 for 2012 being a and tournament of australian open", "context": "CREATE TABLE table_name_20 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_32 WHERE 2012 = \"grand slam tournaments\"", "question": "Name the tournament for 2012 grand slam tournaments", "context": "CREATE TABLE table_name_32 (tournament VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_98 WHERE engine = \"bristol\"", "question": "What is the earliest year that has a Bristol engine?", "context": "CREATE TABLE table_name_98 (year INTEGER, engine VARCHAR)"}, {"answer": "SELECT record FROM table_name_86 WHERE loss = \"brandon (4\u20138)\"", "question": "What was the record at the game that had a loss of Brandon (4\u20138)?", "context": "CREATE TABLE table_name_86 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_63 WHERE record = \"54\u201342\"", "question": "What was the loss of the game with a record of 54\u201342?", "context": "CREATE TABLE table_name_63 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_96 WHERE loss = \"bell (6\u20139)\"", "question": "Who was the opponent at the game that had a loss of Bell (6\u20139)?", "context": "CREATE TABLE table_name_96 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_41 WHERE loss = \"wyatt (4\u20134)\"", "question": "What was the record at the game that had a loss of Wyatt (4\u20134)?", "context": "CREATE TABLE table_name_41 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_77 WHERE year = 1985 AND chassis = \"march 85b\"", "question": "In 1985, how many points were earned by the entrant with the March 85B chassis?", "context": "CREATE TABLE table_name_77 (points INTEGER, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT points FROM table_name_90 WHERE entrant = \"corbari italia\" AND year = 1985", "question": "How many points did Corbari Italia earn in 1985?", "context": "CREATE TABLE table_name_90 (points VARCHAR, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_32 WHERE record = \"18\u201315\u20136\"", "question": "Record of 18\u201315\u20136 belongs to what lowest attendance?", "context": "CREATE TABLE table_name_32 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE decision = \"parent\" AND home = \"philadelphia\" AND record = \"20\u201316\u20137\"", "question": "Decision of parent, and a Home of philadelphia, and a Record of 20\u201316\u20137 is on what date?", "context": "CREATE TABLE table_name_23 (date VARCHAR, record VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_26 WHERE decision = \"parent\" AND visitor = \"philadelphia\" AND date = \"january 27\"", "question": "Decision of parent, and a Visitor of Philadelphia, and a Date of January 27 had what score?", "context": "CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_46 WHERE attendance > 56 OFFSET 040", "question": "What was the average Game, when the attendance was higher than 56,040?", "context": "CREATE TABLE table_name_46 (game INTEGER, attendance INTEGER)"}, {"answer": "SELECT date FROM table_name_62 WHERE time = \"2:26\" AND location = \"riverfront stadium\"", "question": "What was date when the time was 2:26 and the location was Riverfront Stadium?", "context": "CREATE TABLE table_name_62 (date VARCHAR, time VARCHAR, location VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_14 WHERE date = \"may 9\"", "question": "Who is the visitor on May 9?", "context": "CREATE TABLE table_name_14 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT discovery FROM table_name_4 WHERE operator_s_ = \"lundin\"", "question": "Which Discoveryhas an Operator(s) of lundin?", "context": "CREATE TABLE table_name_4 (discovery VARCHAR, operator_s_ VARCHAR)"}, {"answer": "SELECT geological_trend FROM table_name_41 WHERE operator_s_ = \"woc\"", "question": "Which Geological Trend has an Operator(s) of woc?", "context": "CREATE TABLE table_name_41 (geological_trend VARCHAR, operator_s_ VARCHAR)"}, {"answer": "SELECT operator_s_ FROM table_name_96 WHERE reserves = \"100 bbbl\"", "question": "Which operator has a Reserve of 100 bbbl?", "context": "CREATE TABLE table_name_96 (operator_s_ VARCHAR, reserves VARCHAR)"}, {"answer": "SELECT field FROM table_name_15 WHERE discovery = \"na\" AND operator_s_ = \"woc\" AND geological_trend = \"western\"", "question": "Which Field has a Discovery of na, and an Operator(s) of woc, and a Geological Trend of western", "context": "CREATE TABLE table_name_15 (field VARCHAR, geological_trend VARCHAR, discovery VARCHAR, operator_s_ VARCHAR)"}, {"answer": "SELECT primary_sponsor_s_ FROM table_name_34 WHERE car_s_ = \"ford fusion\" AND crew_chief = \"drew blickensderfer\"", "question": "What primary sponsor(s) owns ford fusion car(s) and the crew chief is Drew Blickensderfer?", "context": "CREATE TABLE table_name_34 (primary_sponsor_s_ VARCHAR, car_s_ VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT crew_chief FROM table_name_12 WHERE owner_s_ = \"jack roush\" AND driver_s_ = \"greg biffle\"", "question": "What crew chief has an owner name Jack Roush and driver Greg Biffle?", "context": "CREATE TABLE table_name_12 (crew_chief VARCHAR, owner_s_ VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT primary_sponsor_s_ FROM table_name_50 WHERE owner_s_ = \"rick hendrick\" AND crew_chief = \"alan gustafson\"", "question": "What primary sponsor has the owner Rick Hendrick and their crew chief is Alan Gustafson?", "context": "CREATE TABLE table_name_50 (primary_sponsor_s_ VARCHAR, owner_s_ VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT bahia FROM table_name_97 WHERE northeast_total = \"6747013\"", "question": "What is the value for Bahia when the Northeast total was 6747013?", "context": "CREATE TABLE table_name_97 (bahia VARCHAR, northeast_total VARCHAR)"}, {"answer": "SELECT MIN(pernambuco) FROM table_name_55 WHERE northeast_total = \"119978\"", "question": "What was the lowest number in Pernambuco where the Northeast had a total of 119978?", "context": "CREATE TABLE table_name_55 (pernambuco INTEGER, northeast_total VARCHAR)"}, {"answer": "SELECT winner FROM table_name_59 WHERE runner_up = \"kimberly kim\" AND country = \"united states\"", "question": "Who was the winner from the United States the year Kimberly Kim was runner-up?", "context": "CREATE TABLE table_name_59 (winner VARCHAR, runner_up VARCHAR, country VARCHAR)"}, {"answer": "SELECT pick FROM table_name_11 WHERE position = \"1b\" AND team = \"oakland athletics\"", "question": "What number pick was the player for the Oakland Athletics who plays the 1B position?", "context": "CREATE TABLE table_name_11 (pick VARCHAR, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_91 WHERE 2007 = \"olympic games\"", "question": "What tournament was at the 2007 Olympic Games?", "context": "CREATE TABLE table_name_91 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_5 WHERE tournament = \"cincinnati masters\"", "question": "What tournament was at the 2011 Cincinnati Masters?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"}, {"answer": "SELECT SUM(heat) FROM table_name_17 WHERE lane = 6 AND time = \"4:08.27\" AND rank > 7", "question": "In what heat did the swimmer in Lane 6 rank higher than 7 with a time of 4:08.27?", "context": "CREATE TABLE table_name_17 (heat INTEGER, rank VARCHAR, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT comp FROM table_name_16 WHERE date = \"2007-08-06\"", "question": "What was the Comp on 2007-08-06?", "context": "CREATE TABLE table_name_16 (comp VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(apogee__km_) FROM table_name_74 WHERE alt_name = \"ops-8285\" AND mass__kg_ > 1500", "question": "How many Apogee sis Ops-8285 with more than 1500 kg?", "context": "CREATE TABLE table_name_74 (apogee__km_ VARCHAR, alt_name VARCHAR, mass__kg_ VARCHAR)"}, {"answer": "SELECT MIN(perigee__km_) FROM table_name_30 WHERE launch_date = \"1970-08-26\"", "question": "What is the lowest Perigee with a Launch date of 1970-08-26?", "context": "CREATE TABLE table_name_30 (perigee__km_ INTEGER, launch_date VARCHAR)"}, {"answer": "SELECT total FROM table_name_5 WHERE name = \"grant brebner\"", "question": "How many total appearances did Grant Brebner have?", "context": "CREATE TABLE table_name_5 (total VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_1 WHERE a_league = \"150 (4)\"", "question": "Which player has an A-League of 150 (4)?", "context": "CREATE TABLE table_name_1 (name VARCHAR, a_league VARCHAR)"}, {"answer": "SELECT name FROM table_name_3 WHERE total = \"116 (22)\"", "question": "Which player had a total of 116 (22)?", "context": "CREATE TABLE table_name_3 (name VARCHAR, total VARCHAR)"}, {"answer": "SELECT name FROM table_name_40 WHERE a_league = \"150 (4)\"", "question": "Which player has an A-League of 150 (4)?", "context": "CREATE TABLE table_name_40 (name VARCHAR, a_league VARCHAR)"}, {"answer": "SELECT name FROM table_name_6 WHERE a_league = \"113 (0)\"", "question": "Which player has an A-League of 113 (0)?", "context": "CREATE TABLE table_name_6 (name VARCHAR, a_league VARCHAR)"}, {"answer": "SELECT data_limit__gb FROM table_name_18 WHERE company = \"t-mobile\" AND plan_name = \"internet basic\"", "question": "What is the data limit for a T-Mobile internet basic plan?", "context": "CREATE TABLE table_name_18 (data_limit__gb VARCHAR, company VARCHAR, plan_name VARCHAR)"}, {"answer": "SELECT data_limit__gb FROM table_name_8 WHERE company = \"vodafone\"", "question": "What is the data limit for vodafone?", "context": "CREATE TABLE table_name_8 (data_limit__gb VARCHAR, company VARCHAR)"}, {"answer": "SELECT plan_name FROM table_name_14 WHERE monthly_price_incl_vat__czk = \"300, 500, 750, 1000\"", "question": "What plan has monthly prices of 300, 500, 750, 1000?", "context": "CREATE TABLE table_name_14 (plan_name VARCHAR, monthly_price_incl_vat__czk VARCHAR)"}, {"answer": "SELECT maximum_download_speed__kbps FROM table_name_5 WHERE technology = \"3g\" AND plan_name = \"internet premium\"", "question": "What is the maximum download speed for the Internet premium 3G plan?", "context": "CREATE TABLE table_name_5 (maximum_download_speed__kbps VARCHAR, technology VARCHAR, plan_name VARCHAR)"}, {"answer": "SELECT maximum_download_speed__kbps FROM table_name_24 WHERE technology = \"3g\" AND plan_name = \"internet basic\"", "question": "What is the maximum download speed for the Internet basic plan with 3G?", "context": "CREATE TABLE table_name_24 (maximum_download_speed__kbps VARCHAR, technology VARCHAR, plan_name VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_42 WHERE player = \"gene littler\"", "question": "What is the to par for Gene Littler?", "context": "CREATE TABLE table_name_42 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_91 WHERE place = \"4\"", "question": "What is the country that placed 4?", "context": "CREATE TABLE table_name_91 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT name FROM table_name_27 WHERE decile = 8 AND roll = 705", "question": "Which school has a decile of 8 and a roll of 705?", "context": "CREATE TABLE table_name_27 (name VARCHAR, decile VARCHAR, roll VARCHAR)"}, {"answer": "SELECT SUM(roll) FROM table_name_59 WHERE area = \"oakura\"", "question": "What is the roll of the school in Oakura?", "context": "CREATE TABLE table_name_59 (roll INTEGER, area VARCHAR)"}, {"answer": "SELECT AVG(decile) FROM table_name_74 WHERE name = \"francis douglas memorial college\"", "question": "What is the avererage decile of Francis Douglas Memorial College?", "context": "CREATE TABLE table_name_74 (decile INTEGER, name VARCHAR)"}, {"answer": "SELECT result FROM table_name_98 WHERE competition = \"2002 fifa world cup qualification\" AND goal < 10", "question": "What was the final score in a 2002 fifa world cup qualification that was less than 10?", "context": "CREATE TABLE table_name_98 (result VARCHAR, competition VARCHAR, goal VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_38 WHERE pts > 8", "question": "What is the earliest year with points more than 8?", "context": "CREATE TABLE table_name_38 (year INTEGER, pts INTEGER)"}, {"answer": "SELECT SUM(pts) FROM table_name_7 WHERE chassis = \"march 811\"", "question": "What are the points for a chassis of march 811?", "context": "CREATE TABLE table_name_7 (pts INTEGER, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_73 WHERE year > 1980 AND pts = 8 AND chassis = \"theodore ty02\"", "question": "Who had 8 points, later than 1980, and a theodore ty02 chassis?", "context": "CREATE TABLE table_name_73 (entrant VARCHAR, chassis VARCHAR, year VARCHAR, pts VARCHAR)"}, {"answer": "SELECT player FROM table_name_2 WHERE country = \"united states\" AND to_par = 14", "question": "Which United States player has a To par of 14?", "context": "CREATE TABLE table_name_2 (player VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_32 WHERE points < 9", "question": "Which year averaged less than 9 points?", "context": "CREATE TABLE table_name_32 (year INTEGER, points INTEGER)"}, {"answer": "SELECT COUNT(points) FROM table_name_18 WHERE chassis = \"ligier js11/15\"", "question": "What is the total points of teams using a ligier js11/15 chassis?", "context": "CREATE TABLE table_name_18 (points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_20 WHERE entrant = \"team tyrrell\" AND points > 14", "question": "What is the highest year team tyrrell earned more than 14 points?", "context": "CREATE TABLE table_name_20 (year INTEGER, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT club FROM table_name_65 WHERE drawn = \"1\" AND lost = \"11\" AND try_bonus = \"7\"", "question": "Which club had 1, draw, 11 lost, and a try bonus of 7?", "context": "CREATE TABLE table_name_65 (club VARCHAR, try_bonus VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_29 WHERE points_against = \"961\"", "question": "How many tries against were there when there was 961 points against?", "context": "CREATE TABLE table_name_29 (tries_against VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT club FROM table_name_75 WHERE points_against = \"556\"", "question": "Which of the clubs had 556 points against?", "context": "CREATE TABLE table_name_75 (club VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_2 WHERE lost = \"17\"", "question": "How many tries against were there with 17 losses?", "context": "CREATE TABLE table_name_2 (tries_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT lost FROM table_name_84 WHERE tries_for = \"103\"", "question": "How many losses were there with 103 tries for?", "context": "CREATE TABLE table_name_84 (lost VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT MAX(revenue__) AS $m_ FROM table_name_44 WHERE team = \"schalke 04\" AND rank < 10", "question": "Name the highest revenue for schalke 04 with rank less than 10", "context": "CREATE TABLE table_name_44 (revenue__ INTEGER, team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_7 WHERE team = \"tottenham hotspur\"", "question": "Name the rank for tottenham hotspur", "context": "CREATE TABLE table_name_7 (rank VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(revenue__) AS $m_ FROM table_name_73 WHERE country = \"england\" AND team = \"chelsea\" AND rank < 7", "question": "Name the least revenue for chelsea of england with rank less than 7", "context": "CREATE TABLE table_name_73 (revenue__ INTEGER, rank VARCHAR, country VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(value__) AS $m_ FROM table_name_21 WHERE revenue__$m_ > 193 AND rank < 12 AND team = \"manchester united\"", "question": "Name the total number of value for revenue more than 193 and rank less than 12 for manchester united", "context": "CREATE TABLE table_name_21 (value__ VARCHAR, team VARCHAR, revenue__$m_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_28 WHERE population > 231 AND name = \"qaanaaq\"", "question": "What is the lowest rank of Qaanaaq, which has a population greater than 231?", "context": "CREATE TABLE table_name_28 (rank INTEGER, population VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_4 WHERE population = 258", "question": "What is the rank of the town with a population of 258?", "context": "CREATE TABLE table_name_4 (rank VARCHAR, population VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE decision = \"osgood\" AND score = \"6 \u2013 7\"", "question": "When is a Decision of osgood, and a Score of 6 \u2013 7?", "context": "CREATE TABLE table_name_76 (date VARCHAR, decision VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE decision = \"osgood\" AND score = \"3 \u2013 4\"", "question": "What date has a Decision of osgood, and a Score of 3 \u2013 4?", "context": "CREATE TABLE table_name_63 (date VARCHAR, decision VARCHAR, score VARCHAR)"}, {"answer": "SELECT name FROM table_name_54 WHERE heat > 3 AND lane = 5", "question": "List a name that has a heat of at least 3 and a Lane of exactly 5.", "context": "CREATE TABLE table_name_54 (name VARCHAR, heat VARCHAR, lane VARCHAR)"}, {"answer": "SELECT SUM(time) FROM table_name_17 WHERE lane = 1 AND rank < 8", "question": "Name the sum of time for lane of 1 and rank less than 8", "context": "CREATE TABLE table_name_17 (time INTEGER, lane VARCHAR, rank VARCHAR)"}, {"answer": "SELECT championship FROM table_name_36 WHERE reign = \"8\"", "question": "Name the championship with reign of 8", "context": "CREATE TABLE table_name_36 (championship VARCHAR, reign VARCHAR)"}, {"answer": "SELECT days_held FROM table_name_33 WHERE current_champion_s_ = \"dean ambrose\"", "question": "Name the days for current champions of dean ambrose", "context": "CREATE TABLE table_name_33 (days_held VARCHAR, current_champion_s_ VARCHAR)"}, {"answer": "SELECT location FROM table_name_76 WHERE reign = \"3\"", "question": "Name the location of reign 3", "context": "CREATE TABLE table_name_76 (location VARCHAR, reign VARCHAR)"}, {"answer": "SELECT date_won FROM table_name_10 WHERE championship = \"wwe intercontinental championship\"", "question": "Name the date won for wwe intercontinental championship", "context": "CREATE TABLE table_name_10 (date_won VARCHAR, championship VARCHAR)"}, {"answer": "SELECT initial_release_date FROM table_name_41 WHERE publisher = \"banpresto\" AND japanese_title = \"ranma \u00bd: netsuretsu kakutouhen\"", "question": "When was Ranma \u00bd: netsuretsu kakutouhen first release by Banpresto?", "context": "CREATE TABLE table_name_41 (initial_release_date VARCHAR, publisher VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT genre FROM table_name_49 WHERE developer = \"microvision\"", "question": "In what genre did Microvision develop a game?", "context": "CREATE TABLE table_name_49 (genre VARCHAR, developer VARCHAR)"}, {"answer": "SELECT genre FROM table_name_34 WHERE developer = \"banpresto\" AND japanese_title = \"ranma \u00bd: netsuretsu kakutouhen\"", "question": "What genre is the Banpresto game tittled Ranma \u00bd: netsuretsu kakutouhen?", "context": "CREATE TABLE table_name_34 (genre VARCHAR, developer VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_7 WHERE position = \"defensive back\" AND overall < 69", "question": "Position of defensive back, and an Overall smaller than 69 is what lowest pick #?", "context": "CREATE TABLE table_name_7 (pick__number INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_64 WHERE round = 11 AND pick__number > 14", "question": "Round of 11, and a Pick # larger than 14 is the highest overall pick?", "context": "CREATE TABLE table_name_64 (overall INTEGER, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT round FROM table_name_67 WHERE overall = 208", "question": "Overall of 208 occurred in what round?", "context": "CREATE TABLE table_name_67 (round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT player FROM table_name_62 WHERE to_par = \"\u20133\" AND score = 73 - 68 = 141", "question": "what player has To par of \u20133, and a Score of 73-68=141?", "context": "CREATE TABLE table_name_62 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_71 WHERE place = \"t3\" AND country = \"united states\" AND player = \"steve flesch\"", "question": "what was steve flesch's to par when he was placed at t3 in the united states?", "context": "CREATE TABLE table_name_71 (to_par VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_84 WHERE player = \"arron oberholser\"", "question": "where did arron oberholser play?", "context": "CREATE TABLE table_name_84 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE country = \"canada\" AND place = \"t8\"", "question": "what's the score in canada with place of t8?", "context": "CREATE TABLE table_name_83 (score VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_85 WHERE date = \"june 18\"", "question": "How many people attended the game on June 18?", "context": "CREATE TABLE table_name_85 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(first_game) FROM table_name_60 WHERE played > 11 AND lost = 12", "question": "When was the earliest first game with 11 played and 12 games lost?", "context": "CREATE TABLE table_name_60 (first_game INTEGER, played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_48 WHERE first_game = 1997 AND drawn > 0", "question": "What is the average number of games played associated with a first game in 1997 and over 0 games drawn?", "context": "CREATE TABLE table_name_48 (played INTEGER, first_game VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT SUM(first_game) FROM table_name_85 WHERE played = 5 AND lost < 3", "question": "How many first games are associated with 5 games played and under 3 games lost?", "context": "CREATE TABLE table_name_85 (first_game INTEGER, played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_41 WHERE lost = 78 AND played > 121", "question": "How many games drawn when there are 78 losses and over 121 games played?", "context": "CREATE TABLE table_name_41 (drawn VARCHAR, lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_24 WHERE played > 4 AND first_game = 2000", "question": "How many times was there a draw when played is more than 4 and the first game is in 2000?", "context": "CREATE TABLE table_name_24 (drawn VARCHAR, played VARCHAR, first_game VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_15 WHERE drawn < 0", "question": "what is the most games lost when there were 0 draws?", "context": "CREATE TABLE table_name_15 (lost INTEGER, drawn INTEGER)"}, {"answer": "SELECT MAX(played) FROM table_name_2 WHERE lost = 2 AND percentage = \"0.00%\" AND drawn > 0", "question": "what is the highest number of games played when there was 2 losses, percentage was 0.00% and more than 0 draws?", "context": "CREATE TABLE table_name_2 (played INTEGER, drawn VARCHAR, lost VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_95 WHERE percentage = \"50.00%\" AND played < 2", "question": "what is the most lost games when the percentage is 50.00% and games played is less than 2?", "context": "CREATE TABLE table_name_95 (lost INTEGER, percentage VARCHAR, played VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_54 WHERE percentage = \"100.00%\" AND played = 7", "question": "how many draws are there when percentage is 100.00% and played is 7?", "context": "CREATE TABLE table_name_54 (drawn VARCHAR, percentage VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_5 WHERE drawn > 0 AND lost > 0", "question": "how many times is there more than 0 draws and more than 0 losses?", "context": "CREATE TABLE table_name_5 (played VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT club FROM table_name_9 WHERE not_winning_editions = \"1992, 2003\"", "question": "Which Club has a Not winning editions of 1992, 2003?", "context": "CREATE TABLE table_name_9 (club VARCHAR, not_winning_editions VARCHAR)"}, {"answer": "SELECT finalists FROM table_name_22 WHERE club = \"gy\u0151ri\"", "question": "Who Finalists has a Club of gy\u0151ri?", "context": "CREATE TABLE table_name_22 (finalists VARCHAR, club VARCHAR)"}, {"answer": "SELECT winners FROM table_name_77 WHERE not_winning_editions = \"1992, 2003\"", "question": "Who is Winners that has  editions of 1992, 2003 as Not Winning", "context": "CREATE TABLE table_name_77 (winners VARCHAR, not_winning_editions VARCHAR)"}, {"answer": "SELECT finalists FROM table_name_88 WHERE not_winning_editions = \"2008, 2012, 2013\"", "question": "What is the Finalists that has 2008, 2012, 2013 as Not winning editions", "context": "CREATE TABLE table_name_88 (finalists VARCHAR, not_winning_editions VARCHAR)"}, {"answer": "SELECT engine FROM table_name_9 WHERE chassis = \"theodore n183\"", "question": "What engine was in the Theodore n183?", "context": "CREATE TABLE table_name_9 (engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT winners FROM table_name_79 WHERE year = \"2005\"", "question": "Who is listed as the Winners with a Year of 2005?", "context": "CREATE TABLE table_name_79 (winners VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_37 WHERE year = \"2005\"", "question": "Which Venue has a Year of 2005?", "context": "CREATE TABLE table_name_37 (venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE date = \"november 15\"", "question": "What is the score when november 15 is the date?", "context": "CREATE TABLE table_name_86 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_32 WHERE date = \"november 15\"", "question": "What record has November 15 as the date?", "context": "CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_53 WHERE tournament = \"cincinnati\"", "question": "What tournament what held in Cincinnati in 2009?", "context": "CREATE TABLE table_name_53 (tournament VARCHAR)"}, {"answer": "SELECT played FROM table_name_89 WHERE points_for = \"369\"", "question": "How many games played when the points for is 369?", "context": "CREATE TABLE table_name_89 (played VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT club FROM table_name_48 WHERE tries_for = \"100\"", "question": "what is the club that as 100 tries?", "context": "CREATE TABLE table_name_48 (club VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_71 WHERE drawn = \"0\" AND tries_against = \"60\"", "question": "what is the points for when the club has 0 drawn and 60 tries against?", "context": "CREATE TABLE table_name_71 (points_for VARCHAR, drawn VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_5 WHERE club = \"senghenydd rfc\"", "question": "How many draws are for the club senghenydd rfc?", "context": "CREATE TABLE table_name_5 (drawn VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_37 WHERE club = \"senghenydd rfc\"", "question": "What is senghenydd rfc's points for?", "context": "CREATE TABLE table_name_37 (points_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT lost FROM table_name_72 WHERE drawn = \"1\" AND points_for = \"515\"", "question": "what is the amount lost when there is 1 draw and 515 points?", "context": "CREATE TABLE table_name_72 (lost VARCHAR, drawn VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_66 WHERE nominee = \"ang\u00e9lica rivera\"", "question": "In which year was Ang\u00e9lica Rivera a nominee?", "context": "CREATE TABLE table_name_66 (year INTEGER, nominee VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_49 WHERE finish = \"23\"", "question": "What is the average lap of the race with a 23 finish?", "context": "CREATE TABLE table_name_49 (laps INTEGER, finish VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_6 WHERE qual = \"145.926\"", "question": "What is the lowest lap with a 145.926 qual?", "context": "CREATE TABLE table_name_6 (laps INTEGER, qual VARCHAR)"}, {"answer": "SELECT finish FROM table_name_98 WHERE laps = 51", "question": "What is the finish with 51 laps?", "context": "CREATE TABLE table_name_98 (finish VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_80 WHERE year = \"1958\"", "question": "How many laps were in 1958?", "context": "CREATE TABLE table_name_80 (laps INTEGER, year VARCHAR)"}, {"answer": "SELECT MIN(area__sq_mi_) FROM table_name_82 WHERE rank = 160", "question": "What is the smallest area (sq mi) that has 160 as it rank?", "context": "CREATE TABLE table_name_82 (area__sq_mi_ INTEGER, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_12 WHERE area__sq_mi_ < 48 AND area__km\u00b2_ > 104 AND island = \"sula, sogn og fjordane\"", "question": "Which rank has a smaller area (sq mi) than 48, and an area (km2) greater than 104, and an island of sula, sogn og fjordane?", "context": "CREATE TABLE table_name_12 (rank VARCHAR, island VARCHAR, area__sq_mi_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT AVG(api_level) FROM table_name_7 WHERE distribution = \"10.6%\"", "question": "with Distribution of 10.6% what is the average api level?", "context": "CREATE TABLE table_name_7 (api_level INTEGER, distribution VARCHAR)"}, {"answer": "SELECT AVG(api_level) FROM table_name_74 WHERE release_date = \"february 9, 2011\"", "question": "with release date of february 9, 2011, what is the api level?", "context": "CREATE TABLE table_name_74 (api_level INTEGER, release_date VARCHAR)"}, {"answer": "SELECT code_name FROM table_name_12 WHERE api_level = 3", "question": "with api level 3, what is the code name?", "context": "CREATE TABLE table_name_12 (code_name VARCHAR, api_level VARCHAR)"}, {"answer": "SELECT code_name FROM table_name_90 WHERE distribution = \"20.6%\"", "question": "with distribution of 20.6% what is the code name?", "context": "CREATE TABLE table_name_90 (code_name VARCHAR, distribution VARCHAR)"}, {"answer": "SELECT code_name FROM table_name_71 WHERE api_level = 18", "question": "with api level of 18, what's the code name?", "context": "CREATE TABLE table_name_71 (code_name VARCHAR, api_level VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_83 WHERE points < 33 AND year = 1999", "question": "Which entrant had fewer than 33 points in 1999?", "context": "CREATE TABLE table_name_83 (entrant VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_43 WHERE points = 16", "question": "Which chassis had 16 points?", "context": "CREATE TABLE table_name_43 (chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_23 WHERE engine = \"gc37-01 v10\"", "question": "Which gc37-01 v10 engine has the fewest points?", "context": "CREATE TABLE table_name_23 (points INTEGER, engine VARCHAR)"}, {"answer": "SELECT MIN(kerry__number) FROM table_name_65 WHERE others__percentage = \"0.8%\" AND kerry__percentage = \"70.4%\"", "question": "What was Kerry's lowest number of votes where Other received 0.8% and Kerry 70.4%?", "context": "CREATE TABLE table_name_65 (kerry__number INTEGER, others__percentage VARCHAR, kerry__percentage VARCHAR)"}, {"answer": "SELECT COUNT(others__number) FROM table_name_65 WHERE kerry__percentage = \"44.6%\" AND bush__number > 163 OFFSET 650", "question": "How many votes did Others receive where Kerry has 44.6%, and Bush more than 163,650 votes?", "context": "CREATE TABLE table_name_65 (others__number VARCHAR, kerry__percentage VARCHAR, bush__number VARCHAR)"}, {"answer": "SELECT title FROM table_name_94 WHERE termination_of_mission = \"current\"", "question": "Which Title has a Termination of Mission of current?", "context": "CREATE TABLE table_name_94 (title VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT appointed_by FROM table_name_40 WHERE termination_of_mission = \"april 7, 2005\"", "question": "Which Appointed has Termination of Mission on april 7, 2005?", "context": "CREATE TABLE table_name_40 (appointed_by VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT appointed_by FROM table_name_45 WHERE presentation_of_credentials = \"november 22, 1990\"", "question": "Which Appointed has a Presentation of Credentials on November 22, 1990", "context": "CREATE TABLE table_name_45 (appointed_by VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT representative FROM table_name_93 WHERE presentation_of_credentials = \"september 8, 2005\"", "question": "Which Representative has a Presentation of Credentials on september 8, 2005?", "context": "CREATE TABLE table_name_93 (representative VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT termination_of_mission FROM table_name_5 WHERE presentation_of_credentials = \"october 29, 1981\"", "question": "Which Termination of Mission has a Presentation of Credentials on October 29, 1981", "context": "CREATE TABLE table_name_5 (termination_of_mission VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT total FROM table_name_98 WHERE name = \"danny allsopp\"", "question": "What is the total for danny allsopp?", "context": "CREATE TABLE table_name_98 (total VARCHAR, name VARCHAR)"}, {"answer": "SELECT area_of_operation FROM table_name_19 WHERE services = \"drilling\" AND years_of_operation = \"1999\"", "question": "Where is the area of operation that had drilling during the year 1999?", "context": "CREATE TABLE table_name_19 (area_of_operation VARCHAR, services VARCHAR, years_of_operation VARCHAR)"}, {"answer": "SELECT country FROM table_name_5 WHERE client = \"agiba-agip\"", "question": "What country did the client Agiba-agip work in?", "context": "CREATE TABLE table_name_5 (country VARCHAR, client VARCHAR)"}, {"answer": "SELECT years_of_operation FROM table_name_88 WHERE client = \"soc\"", "question": "What years was soc a client?", "context": "CREATE TABLE table_name_88 (years_of_operation VARCHAR, client VARCHAR)"}, {"answer": "SELECT years_of_operation FROM table_name_42 WHERE area_of_operation = \"el mabrouk\"", "question": "What years was El Mabrouk the area of operation?", "context": "CREATE TABLE table_name_42 (years_of_operation VARCHAR, area_of_operation VARCHAR)"}, {"answer": "SELECT services FROM table_name_2 WHERE area_of_operation = \"wadi borjuj\"", "question": "What services were in the area of operation Wadi Borjuj?", "context": "CREATE TABLE table_name_2 (services VARCHAR, area_of_operation VARCHAR)"}, {"answer": "SELECT points FROM table_name_42 WHERE year = 1972 AND engine = \"cosworth v8\"", "question": "How many points did the Cosworth v8 engine get in 1972?", "context": "CREATE TABLE table_name_42 (points VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT gold_coast FROM table_name_36 WHERE melbourne = \"yes\" AND perth = \"yes\" AND auckland = \"no\" AND sydney = \"no\"", "question": "Which gold Coast has a Melbourne of yes, a Perth of yes, an Auckland of no, and a Sydney of no?", "context": "CREATE TABLE table_name_36 (gold_coast VARCHAR, sydney VARCHAR, auckland VARCHAR, melbourne VARCHAR, perth VARCHAR)"}, {"answer": "SELECT adelaide FROM table_name_76 WHERE auckland = \"no\" AND melbourne = \"no\"", "question": "Which Adelaide has an Auckland of no and a Melbourne of no?", "context": "CREATE TABLE table_name_76 (adelaide VARCHAR, auckland VARCHAR, melbourne VARCHAR)"}, {"answer": "SELECT sydney FROM table_name_13 WHERE gold_coast = \"yes\" AND adelaide = \"no\" AND auckland = \"yes\"", "question": "Which Sydney has a Gold Coast of yes, an Adelaide of no, and an Auckland of yes?", "context": "CREATE TABLE table_name_13 (sydney VARCHAR, auckland VARCHAR, gold_coast VARCHAR, adelaide VARCHAR)"}, {"answer": "SELECT sydney FROM table_name_84 WHERE perth = \"no\" AND adelaide = \"yes\" AND gold_coast = \"no\"", "question": "Which Sydney has a Perth of no, an Adelaide of yes, and a Gold Coast of no?", "context": "CREATE TABLE table_name_84 (sydney VARCHAR, gold_coast VARCHAR, perth VARCHAR, adelaide VARCHAR)"}, {"answer": "SELECT adelaide FROM table_name_30 WHERE sydney = \"yes\" AND perth = \"no\" AND melbourne = \"yes\" AND auckland = \"no\"", "question": "Which Adelaide has a Sydney of yes, a Perth of no, a Melbourne of yes, and an Auckland of no?", "context": "CREATE TABLE table_name_30 (adelaide VARCHAR, auckland VARCHAR, melbourne VARCHAR, sydney VARCHAR, perth VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_35 WHERE perth = \"yes\" AND auckland = \"yes\"", "question": "Which Melbourne has a Perth of yes, and an Auckland of yes?", "context": "CREATE TABLE table_name_35 (melbourne VARCHAR, perth VARCHAR, auckland VARCHAR)"}, {"answer": "SELECT analog FROM table_name_9 WHERE callsign = \"wxmi\"", "question": "what is the analog type for wxmi?", "context": "CREATE TABLE table_name_9 (analog VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_69 WHERE affiliation = \"independent\"", "question": "what is the callsign for independent affiliation?", "context": "CREATE TABLE table_name_69 (callsign VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT analog FROM table_name_45 WHERE affiliation = \"cw\" AND digital = \"26\"", "question": "what is the analog type for cw on digital 26?", "context": "CREATE TABLE table_name_45 (analog VARCHAR, affiliation VARCHAR, digital VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_42 WHERE analog = \"19\"", "question": "what is the callsign for analog 19?", "context": "CREATE TABLE table_name_42 (callsign VARCHAR, analog VARCHAR)"}, {"answer": "SELECT winner FROM table_name_11 WHERE event = \"european poker tour grand final\"", "question": "Who is the winner of the European Poker Tour Grand Final?", "context": "CREATE TABLE table_name_11 (winner VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_22 WHERE prize = \"z\u0142 1,226,711\"", "question": "What is the name of the event that had a prize of z\u0142 1,226,711?", "context": "CREATE TABLE table_name_22 (event VARCHAR, prize VARCHAR)"}, {"answer": "SELECT winner FROM table_name_39 WHERE prize = \"z\u0142 1,226,711\"", "question": "Who was the winner of the prize z\u0142 1,226,711?", "context": "CREATE TABLE table_name_39 (winner VARCHAR, prize VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_98 WHERE ties > 0", "question": "What is the score of Goal For which has a Ties larger 0?", "context": "CREATE TABLE table_name_98 (goals_for INTEGER, ties INTEGER)"}, {"answer": "SELECT SUM(goals_conceded) FROM table_name_60 WHERE lost > 7 AND points < 26", "question": "Name the sum of goals conceded when lost is more than 7 and points less than 26", "context": "CREATE TABLE table_name_60 (goals_conceded INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_23 WHERE goals_scored > 28 AND played < 18", "question": "Name the most place for goals scored more than 28 and played less than 18", "context": "CREATE TABLE table_name_23 (place INTEGER, goals_scored VARCHAR, played VARCHAR)"}, {"answer": "SELECT d_46 FROM table_name_50 WHERE d_44 = \"\u2190 majority\"", "question": "Name the D46 when it has D 44 of \u2190 majority", "context": "CREATE TABLE table_name_50 (d_46 VARCHAR, d_44 VARCHAR)"}, {"answer": "SELECT d_45 FROM table_name_40 WHERE d_44 = \"d 53\"", "question": "Name the D 45 which has D 44 of d 53", "context": "CREATE TABLE table_name_40 (d_45 VARCHAR, d_44 VARCHAR)"}, {"answer": "SELECT d_43 FROM table_name_45 WHERE d_45 = \"d 25\"", "question": "Name the D 43 when it has D 45 of d 25", "context": "CREATE TABLE table_name_45 (d_43 VARCHAR, d_45 VARCHAR)"}, {"answer": "SELECT d_43 FROM table_name_35 WHERE d_41 = \"d 56\"", "question": "Name the D 43 when it has D 41 of d 56", "context": "CREATE TABLE table_name_35 (d_43 VARCHAR, d_41 VARCHAR)"}, {"answer": "SELECT d_46 FROM table_name_36 WHERE d_42 = \"r 14\"", "question": "Name the D 46 which has D 42 of r 14", "context": "CREATE TABLE table_name_36 (d_46 VARCHAR, d_42 VARCHAR)"}, {"answer": "SELECT nominating_festival FROM table_name_12 WHERE country = \"russia\"", "question": "Which nominating festival did Russia enter?", "context": "CREATE TABLE table_name_12 (nominating_festival VARCHAR, country VARCHAR)"}, {"answer": "SELECT nominating_festival FROM table_name_72 WHERE director_s_ = \"olga baillif\"", "question": "Which nominating festival did Olga Baillif enter?", "context": "CREATE TABLE table_name_72 (nominating_festival VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT nominating_festival FROM table_name_62 WHERE country = \"bosnia and herzegovina\"", "question": "Which nominating festival did Bosnia and Herzegovina enter?", "context": "CREATE TABLE table_name_62 (nominating_festival VARCHAR, country VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_13 WHERE film = \"mi-temps\"", "question": "Which director made Mi-temps?", "context": "CREATE TABLE table_name_13 (director_s_ VARCHAR, film VARCHAR)"}, {"answer": "SELECT nominating_festival FROM table_name_72 WHERE country = \"united kingdom\"", "question": "Which nominating festival did United Kingdom enter?", "context": "CREATE TABLE table_name_72 (nominating_festival VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_8 WHERE team = \"audi sport team joest\" AND pos = \"3rd\"", "question": "How many years was Audi Sport Team Joest in 3rd position?", "context": "CREATE TABLE table_name_8 (year VARCHAR, team VARCHAR, pos VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_62 WHERE laps > 377 AND pos = \"1st\"", "question": "Who were the co-drivers with more than 377 laps in 1st position?", "context": "CREATE TABLE table_name_62 (co_drivers VARCHAR, laps VARCHAR, pos VARCHAR)"}, {"answer": "SELECT MAX(goals_scored) FROM table_name_33 WHERE points > 28 AND played > 18", "question": "How many goals were scored when they had over 28 points and played over 18 games?", "context": "CREATE TABLE table_name_33 (goals_scored INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(place) FROM table_name_71 WHERE points < 28 AND lost < 11 AND played < 18", "question": "What place is associated with under 28 points, under 11 games lost, and under 18 games played?", "context": "CREATE TABLE table_name_71 (place INTEGER, played VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_40 WHERE goals_scored < 27 AND goals_conceded = 24 AND lost < 6", "question": "How many points are there when they have under 27 goals scored, conceded 24 goals, and lost less than 6 times?", "context": "CREATE TABLE table_name_40 (points INTEGER, lost VARCHAR, goals_scored VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_48 WHERE entrant = \"bryant heating\"", "question": "What year did Bryant Heating enter?", "context": "CREATE TABLE table_name_48 (year INTEGER, entrant VARCHAR)"}, {"answer": "SELECT category FROM table_name_45 WHERE country = \"russia\"", "question": "Russia has films in which category?", "context": "CREATE TABLE table_name_45 (category VARCHAR, country VARCHAR)"}, {"answer": "SELECT film FROM table_name_7 WHERE nominating_festival = \"prix uip vilo do conde\"", "question": "The Prix UIP Vilo Do Conde festival nominated which film?", "context": "CREATE TABLE table_name_7 (film VARCHAR, nominating_festival VARCHAR)"}, {"answer": "SELECT country FROM table_name_98 WHERE film = \"le portefeuille\"", "question": "Which country made Le Portefeuille?", "context": "CREATE TABLE table_name_98 (country VARCHAR, film VARCHAR)"}, {"answer": "SELECT nominating_festival FROM table_name_80 WHERE director_s_ = \"iao lethem\"", "question": "Which nominating festival nominated Iao Lethem's film?", "context": "CREATE TABLE table_name_80 (nominating_festival VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_55 WHERE director_s_ = \"julio robledo\"", "question": "Julio Robledo represents which country?", "context": "CREATE TABLE table_name_55 (country VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT category FROM table_name_60 WHERE film = \"(a) torzija\"", "question": "(A) Torzija was nominated in which category?", "context": "CREATE TABLE table_name_60 (category VARCHAR, film VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_11 WHERE wins = 12 AND points = \"40-4\" AND goals_for > 57", "question": "How many losses altogether were had by teams that won 12 times, had 40-4 points, and more than 57 goals?", "context": "CREATE TABLE table_name_11 (losses INTEGER, goals_for VARCHAR, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_81 WHERE club = \"rayo vallecano\" AND wins < 12", "question": "What's the average number of played games from Rayo Vallecano with less than 12 wins?", "context": "CREATE TABLE table_name_81 (played INTEGER, club VARCHAR, wins VARCHAR)"}, {"answer": "SELECT name FROM table_name_24 WHERE family = \"canidae\" AND species_authority = \"canis rufus audubon & bachman, 1851\"", "question": "Who has canidae as family and canis rufus audubon & bachman, 1851 as species/authority?", "context": "CREATE TABLE table_name_24 (name VARCHAR, family VARCHAR, species_authority VARCHAR)"}, {"answer": "SELECT MIN(league) FROM table_name_88 WHERE play_offs > 0 AND total = 25", "question": "Name the lowest league for play-offs more than 0 and total of 25", "context": "CREATE TABLE table_name_88 (league INTEGER, play_offs VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(first_game) FROM table_name_96 WHERE played < 2", "question": "What are the earliest year with games played fewer than 2?", "context": "CREATE TABLE table_name_96 (first_game INTEGER, played INTEGER)"}, {"answer": "SELECT SUM(played) FROM table_name_18 WHERE first_game < 2005", "question": "What is the number of games played in the season before 2005?", "context": "CREATE TABLE table_name_18 (played INTEGER, first_game INTEGER)"}, {"answer": "SELECT MIN(selection) FROM table_name_39 WHERE player = \"ron barnett\"", "question": "Name the least selection for ron barnett", "context": "CREATE TABLE table_name_39 (selection INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_88 WHERE college = \"notre dame\"", "question": "Name the player that went to notre dame", "context": "CREATE TABLE table_name_88 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_72 WHERE player = \"bill collins\"", "question": "What is the to par that has bill collins as the player?", "context": "CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_86 WHERE score = 76 - 70 - 68 - 73 = 287", "question": "How much money has 76-70-68-73=287 as a score?", "context": "CREATE TABLE table_name_86 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT commissioned FROM table_name_29 WHERE operator = \"vietnam\"", "question": "What is the commissioned for Vietnam?", "context": "CREATE TABLE table_name_29 (commissioned VARCHAR, operator VARCHAR)"}, {"answer": "SELECT commissioned FROM table_name_24 WHERE project = \"636.3\" AND status = \"ordered\"", "question": "What is the commissioned with a 636.3 project, and ordered status?", "context": "CREATE TABLE table_name_24 (commissioned VARCHAR, project VARCHAR, status VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE loss = \"shirley (0-1)\"", "question": "When was the date that had a Loss of Shirley (0-1)?", "context": "CREATE TABLE table_name_31 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT site FROM table_name_84 WHERE opponent = \"chicago cubs\" AND date = \"thursday, april 29\"", "question": "Where was the game on Thursday, April 29, and they played the Chicago Cubs?", "context": "CREATE TABLE table_name_84 (site VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_42 WHERE loss = \"bird (1-4)\"", "question": "Who were they playing when Bird (1-4) had a loss?", "context": "CREATE TABLE table_name_42 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE loss = \"kern (0-2)\"", "question": "What was the score of the game when there was a loss of Kern (0-2)?", "context": "CREATE TABLE table_name_44 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(mpix) FROM table_name_51 WHERE aspect_ratio = \"2:1\" AND height < 1536 AND width < 2048", "question": "What camera has the highest Mpix with an aspect ratio of 2:1, a height less than 1536, and a width smaller than 2048?", "context": "CREATE TABLE table_name_51 (mpix INTEGER, width VARCHAR, aspect_ratio VARCHAR, height VARCHAR)"}, {"answer": "SELECT COUNT(max_fps) FROM table_name_5 WHERE mpix > 8.4 AND frame_size = \"4k 16:9\"", "question": "What is the max fps of a camera with mpix larger than 8.4 and frame size of 4k 16:9?", "context": "CREATE TABLE table_name_5 (max_fps VARCHAR, mpix VARCHAR, frame_size VARCHAR)"}, {"answer": "SELECT frame_size FROM table_name_74 WHERE max_fps = 120 AND width = 2048 AND height = 1024", "question": "What frame size corresponds the selection with a max fps of 120, a width of 2048, and height of 1024?", "context": "CREATE TABLE table_name_74 (frame_size VARCHAR, height VARCHAR, max_fps VARCHAR, width VARCHAR)"}, {"answer": "SELECT overall_record FROM table_name_16 WHERE team = \"ravens\"", "question": "What is the overall record of the Ravens?", "context": "CREATE TABLE table_name_16 (overall_record VARCHAR, team VARCHAR)"}, {"answer": "SELECT division_record FROM table_name_41 WHERE school = \"sussex central\"", "question": "What is the division record of Sussex Central?", "context": "CREATE TABLE table_name_41 (division_record VARCHAR, school VARCHAR)"}, {"answer": "SELECT engine FROM table_name_30 WHERE points = 3", "question": "Which Engine has Points of 3?", "context": "CREATE TABLE table_name_30 (engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_41 WHERE chassis = \"gordini t16\" AND year < 1954", "question": "What are the highest points with a Chassis of gordini t16, and a Year smaller than 1954?", "context": "CREATE TABLE table_name_41 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_67 WHERE name = \"paul tracy\" AND points > 4", "question": "What is the lowest grid that Paul Tracy had when he had over 4 points?", "context": "CREATE TABLE table_name_67 (grid INTEGER, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE winner = \"aaron gustavson\"", "question": "What is the Date, when the Winner is Aaron Gustavson?", "context": "CREATE TABLE table_name_79 (date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE city = \"warsaw\"", "question": "What is the Date, when the City is Warsaw?", "context": "CREATE TABLE table_name_39 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT prize FROM table_name_90 WHERE winner = \"aaron gustavson\"", "question": "What is the Prize, when the Winner is Aaron Gustavson?", "context": "CREATE TABLE table_name_90 (prize VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_name_19 WHERE city = \"berlin\"", "question": "Who is the Winner, when the City is Berlin?", "context": "CREATE TABLE table_name_19 (winner VARCHAR, city VARCHAR)"}, {"answer": "SELECT party FROM table_name_45 WHERE \"name\" = \"name\"", "question": "What is the name of the party called name?", "context": "CREATE TABLE table_name_45 (party VARCHAR)"}, {"answer": "SELECT name FROM table_name_16 WHERE left_office = \"cabinet secretary for culture and external affairs\"", "question": "What is the Left Office of cabinet secretary for culture and external affairs named?", "context": "CREATE TABLE table_name_16 (name VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_49 WHERE first_minister = \"henry mcleish\"", "question": "What left office does the First Minister of henry mcleish belong to?", "context": "CREATE TABLE table_name_49 (left_office VARCHAR, first_minister VARCHAR)"}, {"answer": "SELECT SUM(population__region_total_) FROM table_name_1 WHERE year > 1976 AND population__mareeba_ > 18 OFFSET 212", "question": "What was the sum total of the region after 1976 when Mareeba had population was more than 18,212?", "context": "CREATE TABLE table_name_1 (population__region_total_ INTEGER, year VARCHAR, population__mareeba_ VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_2 WHERE standing = \"5th, lebel\" AND goals_against > 220 AND lost > 52", "question": "Name the most games for standing of 5th, lebel and goals against larger than 220 with lost more than 52", "context": "CREATE TABLE table_name_2 (games INTEGER, lost VARCHAR, standing VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MIN(tied) FROM table_name_94 WHERE games > 70 AND goals_for < 310 AND points = 98", "question": "Name the least tied with games more than 70 and goals for less than 310 with points of 98", "context": "CREATE TABLE table_name_94 (tied INTEGER, points VARCHAR, games VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT player FROM table_name_62 WHERE place = \"t4\"", "question": "Which player had a place of T4?", "context": "CREATE TABLE table_name_62 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_54 WHERE points < 0", "question": "What is the latest year with less than 0 points?", "context": "CREATE TABLE table_name_54 (year INTEGER, points INTEGER)"}, {"answer": "SELECT entrant FROM table_name_77 WHERE year < 1960 AND engine = \"veritas straight-6\"", "question": "What entrant has a year earlier than 1960 and a veritas straight-6 engine?", "context": "CREATE TABLE table_name_77 (entrant VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_73 WHERE chassis = \"veritas rs\" AND points > 0", "question": "What is the average Year with a Veritas rs chassis and more than 0 points?", "context": "CREATE TABLE table_name_73 (year INTEGER, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_74 WHERE entrant = \"wolfgang seidel\" AND chassis = \"cooper t45\" AND year > 1960", "question": "What is the number of points for the Entrant of wolfgang seidel and a Cooper t45 chassis later than 1960?", "context": "CREATE TABLE table_name_74 (points VARCHAR, year VARCHAR, entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_37 WHERE chassis = \"emeryson 1006\" AND points > 0", "question": "What is the latest year for a Emeryson 1006 chassis with more than 0 points?", "context": "CREATE TABLE table_name_37 (year INTEGER, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_50 WHERE agg = \"4-6\"", "question": "What was the score of the second leg with an agg of 4-6?", "context": "CREATE TABLE table_name_50 (agg VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_25 WHERE team_1 = \"africa sports\"", "question": "What is the second team that has first team of Africa sports?", "context": "CREATE TABLE table_name_25 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_32 WHERE team_2 = \"tp englebert\"", "question": "What is team one that has tp englebert for team 2?", "context": "CREATE TABLE table_name_32 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_64 WHERE team_1 = \"far rabat\"", "question": "Which team has far rabat as the team 1?", "context": "CREATE TABLE table_name_64 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_67 WHERE time_retired = \"+47.376\"", "question": "with a Time/Retired of +47.376 what is the lap sum?", "context": "CREATE TABLE table_name_67 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_85 WHERE rider = \"marco melandri\" AND grid < 10", "question": "with a Rider of marco melandri, and a Grid smaller than 10, what is the highest lap count?", "context": "CREATE TABLE table_name_85 (laps INTEGER, rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_15 WHERE rider = \"sylvain guintoli\" AND laps > 32", "question": "with more than 32 laps and sylvain guintoli as rider, what's the lowest grid ?", "context": "CREATE TABLE table_name_15 (grid INTEGER, rider VARCHAR, laps VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_53 WHERE year > 2010 AND winner = \"ding junhui\"", "question": "Who came in 2nd place when Ding Junhui won in 2010?", "context": "CREATE TABLE table_name_53 (runner_up VARCHAR, year VARCHAR, winner VARCHAR)"}, {"answer": "SELECT malay_ethnic_group FROM table_name_43 WHERE 1931 = \"65,104\"", "question": "What ethnic group is 65,104 in 1931?", "context": "CREATE TABLE table_name_43 (malay_ethnic_group VARCHAR)"}, {"answer": "SELECT result FROM table_name_21 WHERE week = \"vegas verdicts\"", "question": "For Vegas Verdicts week, what was the result?", "context": "CREATE TABLE table_name_21 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT week FROM table_name_47 WHERE theme = \"heroes\"", "question": "Which week had a theme of Heroes?", "context": "CREATE TABLE table_name_47 (week VARCHAR, theme VARCHAR)"}, {"answer": "SELECT theme FROM table_name_30 WHERE result = \"advanced\" AND week = \"vegas verdicts\"", "question": "What was the theme for Vegas Verdicts week with a result of Advanced?", "context": "CREATE TABLE table_name_30 (theme VARCHAR, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT placement FROM table_name_58 WHERE votes < 208 AND candidate = \"jordan turner\"", "question": "What is the Placement when the Votes are fewer than 208, and when the Candidate is Jordan Turner?", "context": "CREATE TABLE table_name_58 (placement VARCHAR, votes VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT candidate FROM table_name_13 WHERE riding = \"hochelaga\"", "question": "Who is the Candidate when the Riding is Hochelaga?", "context": "CREATE TABLE table_name_13 (candidate VARCHAR, riding VARCHAR)"}, {"answer": "SELECT placement FROM table_name_96 WHERE candidate = \"jean-patrick berthiaume\"", "question": "What is the Placement when the Candidate is Jean-Patrick Berthiaume?", "context": "CREATE TABLE table_name_96 (placement VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT league AS Cup FROM table_name_20 WHERE fa_cup = \"0 13 0 (49)\"", "question": "What is the value for the League Cup when the FA Cup value is 0 13 0 (49)?", "context": "CREATE TABLE table_name_20 (league VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT league AS Cup FROM table_name_13 WHERE years = \"1991\u2013present\"", "question": "What is the League Cup value for 1991\u2013present?", "context": "CREATE TABLE table_name_13 (league VARCHAR, years VARCHAR)"}, {"answer": "SELECT league FROM table_name_43 WHERE europe = \"0 29 (152)\"", "question": "What league has a value of 0 29 (152) for Europe?", "context": "CREATE TABLE table_name_43 (league VARCHAR, europe VARCHAR)"}, {"answer": "SELECT week FROM table_name_1 WHERE result = \"w 23\u201314\"", "question": "Which week was there a w 23\u201314 result?", "context": "CREATE TABLE table_name_1 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE opponent = \"hawthorn\"", "question": "Name the score for hawthorn opponent", "context": "CREATE TABLE table_name_64 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE venue = \"mcg\" AND opponent = \"footscray\"", "question": "Name the score at mcg venue and footscray opponent", "context": "CREATE TABLE table_name_13 (score VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_19 WHERE opponent = \"collingwood\"", "question": "Name the venue with opponent of collingwood", "context": "CREATE TABLE table_name_19 (venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE result = \"2\u20130\" AND score = \"2 \u2013 0\"", "question": "When has Result of 2\u20130, and a Score of 2 \u2013 0?", "context": "CREATE TABLE table_name_38 (date VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_3 WHERE goal > 3 AND competition = \"2011 afc asian cup\"", "question": "Which Venue has a Goal larger than 3, and a Competition of 2011 afc asian cup?", "context": "CREATE TABLE table_name_3 (venue VARCHAR, goal VARCHAR, competition VARCHAR)"}, {"answer": "SELECT casualties FROM table_name_43 WHERE nature_of_incident = \"hostile\" AND date = \"2006-06-26\"", "question": "Name the casualities for nation of incident of hostile on 2006-06-26", "context": "CREATE TABLE table_name_43 (casualties VARCHAR, nature_of_incident VARCHAR, date VARCHAR)"}, {"answer": "SELECT casualties FROM table_name_74 WHERE location = \"kabul area\"", "question": "Name the casualities for kabul area", "context": "CREATE TABLE table_name_74 (casualties VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_9 WHERE date = \"2006-04-07\" AND circumstances = \"direct fire\"", "question": "Name the location on 2006-04-07 for direct fire", "context": "CREATE TABLE table_name_9 (location VARCHAR, date VARCHAR, circumstances VARCHAR)"}, {"answer": "SELECT venue FROM table_name_57 WHERE date = \"20,21,22,23,24 november 1998\"", "question": "Which venue has a Date of 20,21,22,23,24 november 1998?", "context": "CREATE TABLE table_name_57 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_12 WHERE date = \"26,27,28,29 december 1998\"", "question": "Which Away captain has a Date of 26,27,28,29 december 1998?", "context": "CREATE TABLE table_name_12 (away_captain VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_92 WHERE result = \"draw\"", "question": "Which venue has a Result of draw?", "context": "CREATE TABLE table_name_92 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_53 WHERE venue = \"melbourne cricket ground\"", "question": "Which Home captain has a Venue of melbourne cricket ground?", "context": "CREATE TABLE table_name_53 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_69 WHERE date = \"2,3,4,5 january 1999\"", "question": "Which Away captain has a Date of 2,3,4,5 january 1999?", "context": "CREATE TABLE table_name_69 (away_captain VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_38 WHERE winning_score = 71 - 69 - 71 - 70 = 281", "question": "What was the margin of victory for the win with a score of 71-69-71-70=281?", "context": "CREATE TABLE table_name_38 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_49 WHERE winning_score = 71 - 69 - 71 - 70 = 281", "question": "What is the to par value for the game with a winning score of 71-69-71-70=281?", "context": "CREATE TABLE table_name_49 (to_par VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_29 WHERE runner_s__up = \"bubba watson\"", "question": "For what tournament was Bubba Watson the runner-up?", "context": "CREATE TABLE table_name_29 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_76 WHERE runner_s__up = \"john senden\"", "question": "When John Senden was the runner-up, what was the To Par?", "context": "CREATE TABLE table_name_76 (to_par VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT metro_champion FROM table_name_73 WHERE runner_up = \"memphis state\" AND year = 1988", "question": "In 1988, what Metro Champion had a Runner-up of Memphis State?", "context": "CREATE TABLE table_name_73 (metro_champion VARCHAR, runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(opened_in) FROM table_name_93 WHERE manufacture = \"zamperla\" AND type = \"convoy ride\" AND ride_name = \"tiny truckers\"", "question": "What is the latest year a ride opened that was manufactured by Zamperla, was a convoy ride, and had a name of Tiny Truckers?", "context": "CREATE TABLE table_name_93 (opened_in INTEGER, ride_name VARCHAR, manufacture VARCHAR, type VARCHAR)"}, {"answer": "SELECT manufacture FROM table_name_33 WHERE opened_in < 2001 AND type = \"mini jet red baron\"", "question": "Who is the manufacturer of the mini jet red baron ride that opened before 2001?", "context": "CREATE TABLE table_name_33 (manufacture VARCHAR, opened_in VARCHAR, type VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_45 WHERE original_title = \"les triplettes de belleville\"", "question": "Name the least year for les triplettes de belleville", "context": "CREATE TABLE table_name_45 (year INTEGER, original_title VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_18 WHERE director = \"zhang yimou\"", "question": "Name the english title for zhang yimou", "context": "CREATE TABLE table_name_18 (english_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT country FROM table_name_81 WHERE year = 2002", "question": "Name the country for 2002", "context": "CREATE TABLE table_name_81 (country VARCHAR, year VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_24 WHERE country = \"mexico/spain/usa\"", "question": "Name the english title for mexico/spain/usa", "context": "CREATE TABLE table_name_24 (english_title VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_95 WHERE year > 2008", "question": "Name the country with year more than 2008", "context": "CREATE TABLE table_name_95 (country VARCHAR, year INTEGER)"}, {"answer": "SELECT AVG(year) FROM table_name_37 WHERE engine = \"cosworth v8\"", "question": "What year did the Cosworth v8 engine participate in?", "context": "CREATE TABLE table_name_37 (year INTEGER, engine VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_65 WHERE points > 0", "question": "Which year did the team receive more than 0 points?", "context": "CREATE TABLE table_name_65 (year INTEGER, points INTEGER)"}, {"answer": "SELECT chassis FROM table_name_1 WHERE year = 1971", "question": "Which chassis was used in 1971?", "context": "CREATE TABLE table_name_1 (chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT time FROM table_name_44 WHERE heat < 3 AND lane > 2 AND name = \"jean luc razakarivony\"", "question": "What was the time for Jean Luc Razakarivony with less than 3 heat and more than 2 lanes?", "context": "CREATE TABLE table_name_44 (time VARCHAR, name VARCHAR, heat VARCHAR, lane VARCHAR)"}, {"answer": "SELECT time FROM table_name_66 WHERE lane = 5 AND name = \"domenico fioravanti\"", "question": "What was Domenico Fioravanti's time on lane 5?", "context": "CREATE TABLE table_name_66 (time VARCHAR, lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_3 WHERE heat < 9 AND time = \"1:01.87\"", "question": "What is the nationality with less than 9 heat, and a time of 1:01.87?", "context": "CREATE TABLE table_name_3 (nationality VARCHAR, heat VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE home_captain = \"courtney walsh\" AND venue = \"queen's park oval\"", "question": "On which dates played Home Captain Courtney Walsh at the Queen's Park Oval?", "context": "CREATE TABLE table_name_35 (date VARCHAR, home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE result = \"draw\" AND venue = \"antigua recreation ground\"", "question": "On what dates did the draw at the Antigua Recreation Ground happen?", "context": "CREATE TABLE table_name_25 (date VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_65 WHERE venue = \"sabina park\"", "question": "Who was the Home Captain at Sabina Park?", "context": "CREATE TABLE table_name_65 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE result = \"draw\"", "question": "When did the draw happen?", "context": "CREATE TABLE table_name_76 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(joined) FROM table_name_59 WHERE institution = \"northeastern university\"", "question": "When did Northeastern University join?", "context": "CREATE TABLE table_name_59 (joined INTEGER, institution VARCHAR)"}, {"answer": "SELECT type FROM table_name_1 WHERE location = \"amherst, ma\"", "question": "Which type of institution is in Amherst, MA?", "context": "CREATE TABLE table_name_1 (type VARCHAR, location VARCHAR)"}, {"answer": "SELECT tenure FROM table_name_96 WHERE courtesy_title = \"yamashiro-no-kami\"", "question": "What is the tenure of the person whose courtesy title is yamashiro-no-kami?", "context": "CREATE TABLE table_name_96 (tenure VARCHAR, courtesy_title VARCHAR)"}, {"answer": "SELECT courtesy_title FROM table_name_1 WHERE tenure = \"1766\u20131794\"", "question": "What is the courtesy title of the person whose tenure goes from 1766\u20131794?", "context": "CREATE TABLE table_name_1 (courtesy_title VARCHAR, tenure VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_2 WHERE rank > 5", "question": "What is the bronze value associated with ranks over 5?", "context": "CREATE TABLE table_name_2 (bronze VARCHAR, rank INTEGER)"}, {"answer": "SELECT MAX(bronze) FROM table_name_74 WHERE rank > 5 AND gold < 0", "question": "What is the highest number of bronzes for countries ranking over 5 with 0 golds?", "context": "CREATE TABLE table_name_74 (bronze INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT loss FROM table_name_8 WHERE date = \"june 22\"", "question": "Name the loss for june 22", "context": "CREATE TABLE table_name_8 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_96 WHERE date = \"june 30\"", "question": "Name the loss for june 30", "context": "CREATE TABLE table_name_96 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE date = \"august 21, 2007\"", "question": "Name the score on august 21, 2007", "context": "CREATE TABLE table_name_46 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_83 WHERE date = \"august 25, 2007\"", "question": "Name the competition on august 25, 2007", "context": "CREATE TABLE table_name_83 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_48 WHERE date = \"august 25, 2007\"", "question": "Name the competition that was on august 25, 2007", "context": "CREATE TABLE table_name_48 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_19 WHERE date = \"january 14, 2008\"", "question": "Name the result for january 14, 2008", "context": "CREATE TABLE table_name_19 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT played FROM table_name_38 WHERE lost = \"20\"", "question": "How many matches played are associated with 20 losses?", "context": "CREATE TABLE table_name_38 (played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT played FROM table_name_24 WHERE club = \"rhymney rfc\"", "question": "How many matches have Rhymney RFC played?", "context": "CREATE TABLE table_name_24 (played VARCHAR, club VARCHAR)"}, {"answer": "SELECT lost FROM table_name_90 WHERE club = \"abercarn rfc\"", "question": "How many losses does Abercarn RFC have?", "context": "CREATE TABLE table_name_90 (lost VARCHAR, club VARCHAR)"}, {"answer": "SELECT year FROM table_name_67 WHERE position = \"21st (q)\"", "question": "When did a Position of 21st (q) happen?", "context": "CREATE TABLE table_name_67 (year VARCHAR, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_63 WHERE year < 2003 AND notes = \"57.73 m\"", "question": "What is the Venue before 2003 with Notes of 57.73 m?", "context": "CREATE TABLE table_name_63 (venue VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_name_39 WHERE position = \"8th\"", "question": "What notes have the 8th position?", "context": "CREATE TABLE table_name_39 (notes VARCHAR, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_52 WHERE competition = \"european championships\" AND notes = \"61.46 m\"", "question": "Where was European Championships held with notes of 61.46 m?", "context": "CREATE TABLE table_name_52 (venue VARCHAR, competition VARCHAR, notes VARCHAR)"}, {"answer": "SELECT 0 AS _100km_h__62mph_ FROM table_name_16 WHERE max_power = \"s diesel engine all direct injection (dci)\"", "question": "What is the 0\u2013100km/h (62mph) when the max power is s diesel engine all direct injection (dci)?", "context": "CREATE TABLE table_name_16 (max_power VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_97 WHERE film_title_used_in_nomination = \"last days of the victim\"", "question": "Name the original name for last days of the victim", "context": "CREATE TABLE table_name_97 (original_name VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_98 WHERE original_name = \"okkar \u00e1 milli: \u00ed hita og \u00feunga dagsins\"", "question": "Name the film title for okkar \u00e1 milli: \u00ed hita og \u00feunga dagsins", "context": "CREATE TABLE table_name_98 (film_title_used_in_nomination VARCHAR, original_name VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_40 WHERE language = \"norwegian\"", "question": "Name the film title that was norwegian", "context": "CREATE TABLE table_name_40 (film_title_used_in_nomination VARCHAR, language VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_8 WHERE language = \"german\"", "question": "Name the film title for german", "context": "CREATE TABLE table_name_8 (film_title_used_in_nomination VARCHAR, language VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_4 WHERE country = \"bulgaria\"", "question": "Name the original name for the one from bulgaria", "context": "CREATE TABLE table_name_4 (original_name VARCHAR, country VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_27 WHERE attendance > 54 OFFSET 766", "question": "who was the opponent when the attendance was larger than 54,766?", "context": "CREATE TABLE table_name_27 (opponent VARCHAR, attendance INTEGER)"}, {"answer": "SELECT attendance FROM table_name_2 WHERE series = \"0-1\"", "question": "What was the attendance when the series was at 0-1?", "context": "CREATE TABLE table_name_2 (attendance VARCHAR, series VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE series = \"1-3\"", "question": "Who was the opponent when the series was at 1-3?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, series VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE loss = \"tapani (0-1)\"", "question": "what was the score in the loss to tapani (0-1)?", "context": "CREATE TABLE table_name_39 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT team__number1 FROM table_name_76 WHERE time___cest__ < 18", "question": "What id the team with a smaller Time than 18?", "context": "CREATE TABLE table_name_76 (team__number1 VARCHAR, time___cest__ INTEGER)"}, {"answer": "SELECT location FROM table_name_84 WHERE record = \"10-8-1\"", "question": "What is the location of the match with the record 10-8-1?", "context": "CREATE TABLE table_name_84 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_72 WHERE time = \"5:00\" AND round < 3 AND res = \"loss\" AND event = \"road fc 12\"", "question": "What is the method of the match in the Road fc 12 at 5:00 with less than 3 rounds, and a loss result?", "context": "CREATE TABLE table_name_72 (method VARCHAR, event VARCHAR, res VARCHAR, time VARCHAR, round VARCHAR)"}, {"answer": "SELECT record FROM table_name_84 WHERE time = \"6:00\"", "question": "What is the record of the match at 6:00?", "context": "CREATE TABLE table_name_84 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT method FROM table_name_69 WHERE record = \"3-4\"", "question": "What is the method of the match with a 3-4 record?", "context": "CREATE TABLE table_name_69 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_62 WHERE round > 1 AND opponent = \"yoshihiro akiyama\"", "question": "What is the location of the match with a round bigger than 1 where the opponent was Yoshihiro Akiyama?", "context": "CREATE TABLE table_name_62 (location VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_26 WHERE res = \"draw\" AND record = \"4-4-1\"", "question": "What is the average round of the match with a draw result and a record of 4-4-1?", "context": "CREATE TABLE table_name_26 (round INTEGER, res VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_7 WHERE time = \"5:00\" AND event = \"hero's 9\"", "question": "What is the average round of the match in the Hero's 9 event with a time of 5:00?", "context": "CREATE TABLE table_name_7 (round INTEGER, time VARCHAR, event VARCHAR)"}, {"answer": "SELECT first_us_tour_cast FROM table_name_16 WHERE original_broadway_cast = \"sarah bolt\"", "question": "What shows as the First US Tour Cast when the Original Broadway Cast was Sarah Bolt?", "context": "CREATE TABLE table_name_16 (first_us_tour_cast VARCHAR, original_broadway_cast VARCHAR)"}, {"answer": "SELECT first_uk_tour_cast FROM table_name_54 WHERE character = \"sister mary robert\"", "question": "What is the name of the person in the First UK Tour Cast for the Character of Sister Mary Robert?", "context": "CREATE TABLE table_name_54 (first_uk_tour_cast VARCHAR, character VARCHAR)"}, {"answer": "SELECT character FROM table_name_22 WHERE original_west_end_cast = \"katie rowley jones\"", "question": "What character did Katie Rowley Jones play in the Original West End Cast?", "context": "CREATE TABLE table_name_22 (character VARCHAR, original_west_end_cast VARCHAR)"}, {"answer": "SELECT original_west_end_cast FROM table_name_55 WHERE first_us_tour_cast = \"lael van keuren\"", "question": "Who was the Original West End Cast when the irst US Tour Cast was lael van keuren?", "context": "CREATE TABLE table_name_55 (original_west_end_cast VARCHAR, first_us_tour_cast VARCHAR)"}, {"answer": "SELECT original_west_end_cast FROM table_name_1 WHERE original_broadway_cast = \"audrie neenan\"", "question": "Who was in the Original West End Cast when the Original Broadway Cast was audrie neenan?", "context": "CREATE TABLE table_name_1 (original_west_end_cast VARCHAR, original_broadway_cast VARCHAR)"}, {"answer": "SELECT original_broadway_cast FROM table_name_56 WHERE original_west_end_cast = \"sheila hancock\"", "question": "What is the name of the person who was in the Original Broadway Cast that was Original West End Cast of sheila hancock?", "context": "CREATE TABLE table_name_56 (original_broadway_cast VARCHAR, original_west_end_cast VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE player = \"dave douglas\"", "question": "Dave Douglas has what score?", "context": "CREATE TABLE table_name_46 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_13 WHERE score > 70 AND to_par = \"+1\"", "question": "Who has more than 70 score with +1 to par?", "context": "CREATE TABLE table_name_13 (player VARCHAR, score VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT loss FROM table_name_67 WHERE score = \"6 - 5\"", "question": "What game did they lose by 6 - 5?", "context": "CREATE TABLE table_name_67 (loss VARCHAR, score VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_75 WHERE year > 1985 AND country = \"uk\"", "question": "What is the original title of the film from years after 1985 from the UK?", "context": "CREATE TABLE table_name_75 (original_title VARCHAR, year VARCHAR, country VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_93 WHERE year > 1981 AND country = \"argentina\"", "question": "What is the English title for years after 1981 originating from Argentina?", "context": "CREATE TABLE table_name_93 (english_title VARCHAR, year VARCHAR, country VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_68 WHERE year = 1984 AND country = \"sweden\"", "question": "What is the English title for 1984 from Sweden?", "context": "CREATE TABLE table_name_68 (english_title VARCHAR, year VARCHAR, country VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_19 WHERE director = \"george miller\"", "question": "What is the English title for the film directed by George Miller?", "context": "CREATE TABLE table_name_19 (english_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT country FROM table_name_3 WHERE director = \"george miller\"", "question": "What is the Country of origin for the film directed by George Miller?", "context": "CREATE TABLE table_name_3 (country VARCHAR, director VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_11 WHERE nation = \"west germany\" AND total > 8", "question": "How many golds for west germany with over 8 total?", "context": "CREATE TABLE table_name_11 (gold INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_41 WHERE bronze < 1", "question": "How many golds for nations with under 1 bronze?", "context": "CREATE TABLE table_name_41 (gold INTEGER, bronze INTEGER)"}, {"answer": "SELECT AVG(total) FROM table_name_56 WHERE bronze < 4 AND silver = 1 AND rank = \"7\"", "question": "How many total medals for the nation ranked 7 with 1 silver and under 4 bronzes?", "context": "CREATE TABLE table_name_56 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_92 WHERE founded = \"may 1995\"", "question": "Name the city of license when founded was may 1995", "context": "CREATE TABLE table_name_92 (city_of_license VARCHAR, founded VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_3 WHERE founded = \"october 2010\"", "question": "Name the city of license for when founded is october 2010", "context": "CREATE TABLE table_name_3 (city_of_license VARCHAR, founded VARCHAR)"}, {"answer": "SELECT coverage_area FROM table_name_25 WHERE city_of_license = \"hillsboro, west virginia\"", "question": "Name the coverage area for licesne of hillsboro, west virginia", "context": "CREATE TABLE table_name_25 (coverage_area VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_56 WHERE age_watt = \"160 watts\"", "question": "Name the city of license which has age Watt of 160 watts", "context": "CREATE TABLE table_name_56 (city_of_license VARCHAR, age_watt VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_80 WHERE frequency = \"103.5 mhz\"", "question": "Name the city of license with frequency of 103.5 mhz", "context": "CREATE TABLE table_name_80 (city_of_license VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_74 WHERE label = \"alfa records\"", "question": "What is the catalog number of Alfa records?", "context": "CREATE TABLE table_name_74 (catalog VARCHAR, label VARCHAR)"}, {"answer": "SELECT player FROM table_name_35 WHERE score = 68 AND country = \"canada\"", "question": "Which player has 68 as the score and canada as the country?", "context": "CREATE TABLE table_name_35 (player VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_53 WHERE country = \"canada\"", "question": "What place has Canada as the country?", "context": "CREATE TABLE table_name_53 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_52 WHERE score = 69", "question": "Which player has 69 as the score?", "context": "CREATE TABLE table_name_52 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_51 WHERE score > 68 AND player = \"camilo villegas\"", "question": "What place has a score greater than 68, and camilo villegas as the player?", "context": "CREATE TABLE table_name_51 (place VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(score) FROM table_name_5 WHERE player = \"lee westwood\"", "question": "What is the average score with lee westwood as the player?", "context": "CREATE TABLE table_name_5 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT years FROM table_name_40 WHERE authority = \"state\" AND decile > 6 AND roll < 33", "question": "Name the years with authority of state and decile more than 6 with roll less than 33", "context": "CREATE TABLE table_name_40 (years VARCHAR, roll VARCHAR, authority VARCHAR, decile VARCHAR)"}, {"answer": "SELECT years FROM table_name_91 WHERE area = \"marton\" AND decile = 3 AND name = \"turakina maori girls' college\"", "question": "Name the years for marton and decile of 3 for turakina maori girls' college?", "context": "CREATE TABLE table_name_91 (years VARCHAR, name VARCHAR, area VARCHAR, decile VARCHAR)"}, {"answer": "SELECT AVG(gold_medals) FROM table_name_82 WHERE bronze_medals < 1 AND silver_medals = 0 AND total_medals > 1", "question": "Name the average gold medals when the bronze medals was less than 1, silver medals being 0 and total medals more than 1", "context": "CREATE TABLE table_name_82 (gold_medals INTEGER, total_medals VARCHAR, bronze_medals VARCHAR, silver_medals VARCHAR)"}, {"answer": "SELECT COUNT(bronze_medals) FROM table_name_87 WHERE gold_medals = 2 AND total_medals > 4 AND silver_medals < 5", "question": "Name the total number of bronze medals when gold medals was 2, total medals more than 4 and silver medals less than 5", "context": "CREATE TABLE table_name_87 (bronze_medals VARCHAR, silver_medals VARCHAR, gold_medals VARCHAR, total_medals VARCHAR)"}, {"answer": "SELECT ensemble FROM table_name_21 WHERE silver_medals > 1", "question": "Name the ensemble with silver medals more than 1", "context": "CREATE TABLE table_name_21 (ensemble VARCHAR, silver_medals INTEGER)"}, {"answer": "SELECT AVG(total_medals) FROM table_name_2 WHERE ensemble = \"goshen hs\"", "question": "Name the average total medals with ensemble of goshen hs", "context": "CREATE TABLE table_name_2 (total_medals INTEGER, ensemble VARCHAR)"}, {"answer": "SELECT category FROM table_name_9 WHERE recipient_s_ = \"nick jonas\" AND award = \"kids' choice awards mexico\"", "question": "In which category did Nick Jonas win at the Kids' Choice Awards Mexico?", "context": "CREATE TABLE table_name_9 (category VARCHAR, recipient_s_ VARCHAR, award VARCHAR)"}, {"answer": "SELECT award FROM table_name_36 WHERE category = \"choice tv: breakout star female\"", "question": "What is the award for the Choice TV: Breakout Star Female category?", "context": "CREATE TABLE table_name_36 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT result FROM table_name_32 WHERE recipient_s_ = \"joe jonas\" AND award = \"kids' choice awards mexico\"", "question": "What is Joe Jonas' result at the Kids' Choice Awards Mexico?", "context": "CREATE TABLE table_name_32 (result VARCHAR, recipient_s_ VARCHAR, award VARCHAR)"}, {"answer": "SELECT category FROM table_name_44 WHERE result = \"nominated\" AND year = 2010 AND award = \"kids' choice awards mexico\" AND recipient_s_ = \"joe jonas\"", "question": "What category was Joe Jonas nominated for at the Kids' Choice Awards Mexico in 2010?", "context": "CREATE TABLE table_name_44 (category VARCHAR, recipient_s_ VARCHAR, award VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_76 WHERE team = \"bms scuderia italia\" AND tyres = \"g\" AND engine = \"ferrari 037 3.5 v12\"", "question": "What Chassis did Team BMS Scuderia Italia use with G Tyres and a Ferrari 037 3.5 v12 engine?", "context": "CREATE TABLE table_name_76 (chassis VARCHAR, engine VARCHAR, team VARCHAR, tyres VARCHAR)"}, {"answer": "SELECT rookie_of_the_year FROM table_name_72 WHERE season = 2000", "question": "Who was the Rookie of the Year for the Season in 2000?", "context": "CREATE TABLE table_name_72 (rookie_of_the_year VARCHAR, season VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE record = \"46-29\"", "question": "When was the game played in which the record was 46-29?", "context": "CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT type FROM table_name_15 WHERE unit = \"greifswald - 7 (kgr 7)\"", "question": "Which type had the unit greifswald - 7 (kgr 7) ?", "context": "CREATE TABLE table_name_15 (type VARCHAR, unit VARCHAR)"}, {"answer": "SELECT unit FROM table_name_31 WHERE type = \"wwer-440/213\"", "question": "Which unite had the type wwer-440/213?", "context": "CREATE TABLE table_name_31 (unit VARCHAR, type VARCHAR)"}, {"answer": "SELECT finish_construction FROM table_name_28 WHERE unit = \"greifswald - 4 (kgr 4)\"", "question": "What was the date that construction was finished when the unit was greifswald - 4 (kgr 4)?", "context": "CREATE TABLE table_name_28 (finish_construction VARCHAR, unit VARCHAR)"}, {"answer": "SELECT net_power FROM table_name_74 WHERE type = \"wwer-440/230\" AND finish_construction = \"24.10.1977\"", "question": "What was the net power, when the type was wwer-440/230, and when construction was finished on 24.10.1977?", "context": "CREATE TABLE table_name_74 (net_power VARCHAR, type VARCHAR, finish_construction VARCHAR)"}, {"answer": "SELECT year_s_ FROM table_name_39 WHERE rank = 2 AND player = \"\u00e1lvaro p\u00e9rez\"", "question": "During what years was \u00e1lvaro p\u00e9rez the number 2 ranked player?", "context": "CREATE TABLE table_name_39 (year_s_ VARCHAR, rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(top_5) FROM table_name_66 WHERE top_25 = 0 AND wins < 0", "question": "What is the average value for Top-5, when the value for Top-25 is 0, and the value for Wins is less than 0?", "context": "CREATE TABLE table_name_66 (top_5 INTEGER, top_25 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(top_25) FROM table_name_92 WHERE top_5 > 1", "question": "What is the total amount of Top-25 having a Top-5 greater than 1?", "context": "CREATE TABLE table_name_92 (top_25 VARCHAR, top_5 INTEGER)"}, {"answer": "SELECT SUM(top_10) FROM table_name_26 WHERE cuts_made = 2 AND wins < 0", "question": "What is the sum of the value Top-10 that has a Cuts value of 2 and a Wins value smaller than 0?", "context": "CREATE TABLE table_name_26 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(top_5) FROM table_name_89 WHERE cuts_made = 5 AND tournament = \"the open championship\" AND events < 6", "question": "What is the average value for Top-5, when the value Cuts is 5, and when the tournament is the Open Championship, and when the value Events is less than 6?", "context": "CREATE TABLE table_name_89 (top_5 INTEGER, events VARCHAR, cuts_made VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MIN(events) FROM table_name_56 WHERE top_5 > 1", "question": "What is the lowest value for Events, when the value for Top-5 is greater than 1?", "context": "CREATE TABLE table_name_56 (events INTEGER, top_5 INTEGER)"}, {"answer": "SELECT visiting_team FROM table_name_28 WHERE date = \"november 10\"", "question": "Who was the visiting team on November 10?", "context": "CREATE TABLE table_name_28 (visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_67 WHERE final_score = \"26-24\"", "question": "Who was the host team for the game with the final score of 26-24?", "context": "CREATE TABLE table_name_67 (host_team VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_48 WHERE date = \"november 17\"", "question": "Who was the host team on November 17?", "context": "CREATE TABLE table_name_48 (host_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_55 WHERE final_score = \"9-23\"", "question": "At what stadium was the game with the final score of 9-23 played?", "context": "CREATE TABLE table_name_55 (stadium VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_29 WHERE final_score = \"26-24\"", "question": "At what stadium was the game with the final score of 26-24 played?", "context": "CREATE TABLE table_name_29 (stadium VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_29 WHERE visiting_team = \"new england patriots\"", "question": "Which host team played against the New England Patriots?", "context": "CREATE TABLE table_name_29 (host_team VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT reason_for_termination FROM table_name_33 WHERE chief_judge = \"1971\u20131977\"", "question": "What is the reason the Chief Judge of 1971\u20131977 was terminated?", "context": "CREATE TABLE table_name_33 (reason_for_termination VARCHAR, chief_judge VARCHAR)"}, {"answer": "SELECT state FROM table_name_34 WHERE reason_for_termination = \"retirement\" AND active_service = \"1926\u20131928\"", "question": "Which state has a Reason for termination of retirement, and an Active service of 1926\u20131928?", "context": "CREATE TABLE table_name_34 (state VARCHAR, reason_for_termination VARCHAR, active_service VARCHAR)"}, {"answer": "SELECT pi_code FROM table_name_54 WHERE area = \"hindhead\"", "question": "What is the PI code in the hindhead area?", "context": "CREATE TABLE table_name_54 (pi_code VARCHAR, area VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_81 WHERE power = \"900w\"", "question": "What is the frequency with 900w power?", "context": "CREATE TABLE table_name_81 (frequency VARCHAR, power VARCHAR)"}, {"answer": "SELECT event FROM table_name_92 WHERE round = 1 AND time = \"3:02\"", "question": "What event ended in 3:02 of round 1?", "context": "CREATE TABLE table_name_92 (event VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_77 WHERE opponent = \"jr schumacher\"", "question": "What is the highest round reached by an oppo ent of JR schumacher?", "context": "CREATE TABLE table_name_77 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_24 WHERE opponent = \"arturo segovia\"", "question": "Where did arturo segovia compete?", "context": "CREATE TABLE table_name_24 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(fastest_time__s_) FROM table_name_76 WHERE location = \"enugu\" AND rank > 2", "question": "What is the top fastest time, larger than 2, in Enugu?", "context": "CREATE TABLE table_name_76 (fastest_time__s_ INTEGER, location VARCHAR, rank VARCHAR)"}, {"answer": "SELECT casualties FROM table_name_48 WHERE circumstances = \"ied\"", "question": "How many casualties were from the IED circumstance?", "context": "CREATE TABLE table_name_48 (casualties VARCHAR, circumstances VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_56 WHERE tries_against = \"45\"", "question": "Where there any Draws with 45 tries against?", "context": "CREATE TABLE table_name_56 (drawn VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT club FROM table_name_91 WHERE tries_against = \"45\"", "question": "Which club participated with a record of 45 tries against?", "context": "CREATE TABLE table_name_91 (club VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_19 WHERE tries_for = \"51\"", "question": "What was the amount of draws where a club had 51 tries for?", "context": "CREATE TABLE table_name_19 (drawn VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT lost FROM table_name_26 WHERE points_for = \"208\"", "question": "How many losses were there with 208 points?", "context": "CREATE TABLE table_name_26 (lost VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT club FROM table_name_73 WHERE tries_for = \"73\"", "question": "Which of the participating clubs had 73 tries for?", "context": "CREATE TABLE table_name_73 (club VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT engine FROM table_name_44 WHERE chassis = \"march 90ca\"", "question": "What car has a March 90ca Chassis?", "context": "CREATE TABLE table_name_44 (engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_81 WHERE engine = \"cosworth v8\" AND chassis = \"hesketh 308e\"", "question": "What is the latest year that has an engine of cosworth v8, with a chassis of hesketh 308e?", "context": "CREATE TABLE table_name_81 (year INTEGER, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT year FROM table_name_19 WHERE engine = \"brm v12\"", "question": "Which year has brm v12 as the engine?", "context": "CREATE TABLE table_name_19 (year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_22 WHERE pts > 0", "question": "What is the latesr year that has more points than 0?", "context": "CREATE TABLE table_name_22 (year INTEGER, pts INTEGER)"}, {"answer": "SELECT MAX(gold) FROM table_name_94 WHERE total < 4 AND silver = 1 AND bronze < 2 AND rank = \"13\"", "question": "Which is the highest Gold that has a total smaller than 4 and a silver of 1, and a bronze smaller than 2, and a rank of 13?", "context": "CREATE TABLE table_name_94 (gold INTEGER, rank VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT nation FROM table_name_87 WHERE bronze < 1 AND silver < 1 AND gold > 1", "question": "Which nation has a Bronze and Silver smaller than 1 and a Gold larger than 1?", "context": "CREATE TABLE table_name_87 (nation VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT score FROM table_name_90 WHERE round = \"rd 26, 2001\"", "question": "What was the score of the game that had a round of Rd 26, 2001?", "context": "CREATE TABLE table_name_90 (score VARCHAR, round VARCHAR)"}, {"answer": "SELECT loss FROM table_name_24 WHERE attendance = \"37,119\"", "question": "What was the loss of the game attended by 37,119?", "context": "CREATE TABLE table_name_24 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE loss = \"lidle (10-8)\"", "question": "What was the date of the game that had a loss of lidle (10-8)?", "context": "CREATE TABLE table_name_89 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_45 WHERE opponent = \"yankees\" AND attendance = \"27,652\"", "question": "What was the loss of the game against the Yankees that was attended by 27,652?", "context": "CREATE TABLE table_name_45 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT finish FROM table_name_11 WHERE qual = \"159.384\"", "question": "What is the number of finish of the Qual of 159.384?", "context": "CREATE TABLE table_name_11 (finish VARCHAR, qual VARCHAR)"}, {"answer": "SELECT qual FROM table_name_44 WHERE rank = \"18\" AND year = \"1964\"", "question": "What is the qual for rank 18 in 1964?", "context": "CREATE TABLE table_name_44 (qual VARCHAR, rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT record FROM table_name_33 WHERE date = \"may 13\"", "question": "On May 13, what was the team's record?", "context": "CREATE TABLE table_name_33 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_92 WHERE date = \"may 26\"", "question": "On May 26, what was the team's record?", "context": "CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_68 WHERE date = \"may 20\"", "question": "Who did they lose to on May 20?", "context": "CREATE TABLE table_name_68 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT area FROM table_name_67 WHERE decile = 4 AND name = \"spring creek school\"", "question": "What was Spring Creek School's area when the decile was 4?", "context": "CREATE TABLE table_name_67 (area VARCHAR, decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(founded) FROM table_name_59 WHERE location = \"chicopee, massachusetts\"", "question": "What is the average Founded for chicopee, massachusetts?", "context": "CREATE TABLE table_name_59 (founded INTEGER, location VARCHAR)"}, {"answer": "SELECT AVG(joined) FROM table_name_55 WHERE nickname = \"wildcats\" AND location = \"longmeadow, massachusetts\"", "question": "What is the average Joined with a Nickname of wildcats in longmeadow, massachusetts?", "context": "CREATE TABLE table_name_55 (joined INTEGER, nickname VARCHAR, location VARCHAR)"}, {"answer": "SELECT current_conference FROM table_name_53 WHERE nickname = \"lynx\"", "question": "Which Current Conference has a Nickname of lynx?", "context": "CREATE TABLE table_name_53 (current_conference VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT league FROM table_name_65 WHERE year = 2011", "question": "What league played in 2011?", "context": "CREATE TABLE table_name_65 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE record = \"22-22\"", "question": "Which date has a Record of 22-22?", "context": "CREATE TABLE table_name_24 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE date = \"may 30\"", "question": "Which Opponent has a Date of may 30?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_name_68 WHERE year = 2010", "question": "Who all played mixed doubles in 2010?", "context": "CREATE TABLE table_name_68 (mixed_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_28 WHERE nationality = \"united states\" AND name = \"aaron peirsol\"", "question": "How many lanes have a Nationality of united states, and a Name of aaron peirsol?", "context": "CREATE TABLE table_name_28 (lane VARCHAR, nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_12 WHERE lane < 3 AND heat > 4 AND time = \"2:00.80\"", "question": "Which name has a Lane smaller than 3, a Heat larger than 4, and a Time of 2:00.80?", "context": "CREATE TABLE table_name_12 (name VARCHAR, time VARCHAR, lane VARCHAR, heat VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE result = \"8-1\" AND score = \"8-1\"", "question": "When was there a result of 8-1 and a score of 8-1?", "context": "CREATE TABLE table_name_92 (date VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE result = \"5-1\"", "question": "When was there a result of 5-1?", "context": "CREATE TABLE table_name_41 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE score = \"7-1\"", "question": "When was there a score of 7-1?", "context": "CREATE TABLE table_name_71 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_75 WHERE score = \"8-1\"", "question": "What is the result when the score is 8-1?", "context": "CREATE TABLE table_name_75 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_44 WHERE score = \"1-1\"", "question": "What is the competition type when the score is 1-1?", "context": "CREATE TABLE table_name_44 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE week > 6 AND opponent = \"new york jets\"", "question": "What was the date of the game after week 6 with the New York Jets as the opponent?", "context": "CREATE TABLE table_name_38 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_91 WHERE week = 1", "question": "What is the result of the week 1 game?", "context": "CREATE TABLE table_name_91 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_33 WHERE lost > 35 AND games < 80", "question": "How many goals have Lost larger than 35, and Games smaller than 80?", "context": "CREATE TABLE table_name_33 (goals_for VARCHAR, lost VARCHAR, games VARCHAR)"}, {"answer": "SELECT SUM(goals_against) FROM table_name_10 WHERE points = 72 AND lost > 37", "question": "What are the total Goals against with 72 points and more than 37 losses?", "context": "CREATE TABLE table_name_10 (goals_against INTEGER, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_31 WHERE goals_for > 225 AND goals_against = 190", "question": "What are the total number of points with more than 225 goals and a Goals against of 190?", "context": "CREATE TABLE table_name_31 (points INTEGER, goals_for VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT number_of_broadband_subscribers FROM table_name_24 WHERE population = \"~3,644,070\"", "question": "How many broadband subscribers are there where the population is ~3,644,070?", "context": "CREATE TABLE table_name_24 (number_of_broadband_subscribers VARCHAR, population VARCHAR)"}, {"answer": "SELECT Broadband AS penetration FROM table_name_31 WHERE number_of_broadband_subscribers = \"~355,100\"", "question": "What is the broadband penetration where there are ~355,100 broadband subscribers?", "context": "CREATE TABLE table_name_31 (Broadband VARCHAR, number_of_broadband_subscribers VARCHAR)"}, {"answer": "SELECT number_of_broadband_subscribers FROM table_name_56 WHERE number_of_users = \"~47,372\"", "question": "How many broadband subscribers are there where there are ~47,372 users?", "context": "CREATE TABLE table_name_56 (number_of_broadband_subscribers VARCHAR, number_of_users VARCHAR)"}, {"answer": "SELECT team FROM table_name_5 WHERE value__$m_ < 377 AND country = \"germany\" AND rank = 17", "question": "Which team has a value less than 377 million in Germany with a rank of 17?", "context": "CREATE TABLE table_name_5 (team VARCHAR, rank VARCHAR, value__$m_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(revenue__) AS $m_ FROM table_name_28 WHERE team = \"bayern munich\" AND rank > 4", "question": "What is the average revenue for Bayern Munich with a rank greater than 4?", "context": "CREATE TABLE table_name_28 (revenue__ INTEGER, team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT country FROM table_name_23 WHERE _percentage_change_on_year > 5 AND rank = 10", "question": "Which country has more than 5% change in a year with a rank of 10?", "context": "CREATE TABLE table_name_23 (country VARCHAR, _percentage_change_on_year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(revenue__) AS $m_ FROM table_name_95 WHERE rank = 14", "question": "What is the lowest revenue for the rank of 14?", "context": "CREATE TABLE table_name_95 (revenue__ INTEGER, rank VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_50 WHERE date = \"jul 31\" AND score = \"w 5-1\"", "question": "Name the opponent for jul 31 and score of w 5-1", "context": "CREATE TABLE table_name_50 (opponent VARCHAR, date VARCHAR, score VARCHAR)"}, {"answer": "SELECT loss FROM table_name_44 WHERE opponent = \"@cle\" AND record = \"67-29\"", "question": "Name the less for opponent of @cle and record of 67-29", "context": "CREATE TABLE table_name_44 (loss VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_4 WHERE record = \"71-33\"", "question": "Name the loss with record of 71-33", "context": "CREATE TABLE table_name_4 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE record = \"55-24\"", "question": "Name the date with record of 55-24", "context": "CREATE TABLE table_name_9 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_37 WHERE opponent = \"bos\" AND loss = \"morris\"", "question": "Name the record with opponent of bos and loss of morris", "context": "CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_60 WHERE label = \"village records\" AND date = \"february 14, 2002\"", "question": "Which catalog did Village Records have on February 14, 2002?", "context": "CREATE TABLE table_name_60 (catalog VARCHAR, label VARCHAR, date VARCHAR)"}, {"answer": "SELECT region FROM table_name_6 WHERE catalog = \"38xa-5\"", "question": "What was the region for the 38xa-5 catalog?", "context": "CREATE TABLE table_name_6 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE catalog = \"32xa-112\"", "question": "What was the date for the catalog 32xa-112?", "context": "CREATE TABLE table_name_42 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE format = \"stereo lp\"", "question": "What was the date for a catalog formatted in stereo LP?", "context": "CREATE TABLE table_name_33 (date VARCHAR, format VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE label = \"village records\"", "question": "What date is associated with the label Village Records?", "context": "CREATE TABLE table_name_88 (date VARCHAR, label VARCHAR)"}, {"answer": "SELECT round FROM table_name_43 WHERE opponents = \"southampton\"", "question": "Name the round for southampton opponents", "context": "CREATE TABLE table_name_43 (round VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_62 WHERE date = \"19 february 2005\"", "question": "Name the most attendance for 19 february 2005", "context": "CREATE TABLE table_name_62 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_22 WHERE round = \"round 3\"", "question": "Name the sum of attendance for round 3", "context": "CREATE TABLE table_name_22 (attendance INTEGER, round VARCHAR)"}, {"answer": "SELECT team FROM table_name_8 WHERE owner_s_ = \"mark smith\" AND crew_chief = \"paul clapprood\"", "question": "What team is owned by Mark Smith and has Paul Clapprood as a crew chief?", "context": "CREATE TABLE table_name_8 (team VARCHAR, owner_s_ VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT primary_sponsor_s_ FROM table_name_45 WHERE driver_s_ = \"mike wallace\"", "question": "Who is Mike Wallace's primary Sponsor(s)?", "context": "CREATE TABLE table_name_45 (primary_sponsor_s_ VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_name_44 WHERE crew_chief = \"scott zipadelli\"", "question": "What driver has Scott Zipadelli as a crew chief?", "context": "CREATE TABLE table_name_44 (driver_s_ VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT team FROM table_name_22 WHERE driver_s_ = \"reed sorenson\"", "question": "What team does Reed Sorenson drive for?", "context": "CREATE TABLE table_name_22 (team VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT primary_sponsor_s_ FROM table_name_55 WHERE driver_s_ = \"austin dillon\"", "question": "Who is Austin Dillon's primary sponsor(s)?", "context": "CREATE TABLE table_name_55 (primary_sponsor_s_ VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT crew_chief FROM table_name_36 WHERE team = \"tristar motorsports\" AND driver_s_ = \"eric mcclure\"", "question": "Who is Eric McClure's and Tristar Motorsports' crew chief?", "context": "CREATE TABLE table_name_36 (crew_chief VARCHAR, team VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_44 WHERE lane = 4", "question": "What is the highest rank from Lane 4?", "context": "CREATE TABLE table_name_44 (rank INTEGER, lane VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_83 WHERE lane > 4 AND nationality = \"great britain\" AND name = \"margaretha pedder\"", "question": "How many ranks are higher than lane 4 from Great Britain, raced by Margaretha Pedder?", "context": "CREATE TABLE table_name_83 (rank VARCHAR, name VARCHAR, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_40 WHERE nationality = \"great britain\" AND time = \"2:10.33\"", "question": "What is the lowest rank from Great Britain with a time of 2:10.33?", "context": "CREATE TABLE table_name_40 (rank INTEGER, nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_72 WHERE time = \"2:08.11\" AND rank > 3", "question": "How many Lanes have a rank higher than 3 with a time of 2:08.11?", "context": "CREATE TABLE table_name_72 (lane VARCHAR, time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT years FROM table_name_36 WHERE decile < 4 AND name = \"tkkm o te ara rima\"", "question": "Tkkm o te ara rima has a decile less than 4 in what years?", "context": "CREATE TABLE table_name_36 (years VARCHAR, decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT authority FROM table_name_35 WHERE area = \"rototuna\"", "question": "What authority does the rototuna area have?", "context": "CREATE TABLE table_name_35 (authority VARCHAR, area VARCHAR)"}, {"answer": "SELECT award FROM table_name_23 WHERE recipient = \"hannah gal\"", "question": "What award was Hannah Gal the recipient of?", "context": "CREATE TABLE table_name_23 (award VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT recipient FROM table_name_31 WHERE director_s_ = \"susan jacobson\"", "question": "What is the name of the recipient when the director was Susan Jacobson?", "context": "CREATE TABLE table_name_31 (recipient VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT film FROM table_name_67 WHERE director_s_ = \"hannah gal\"", "question": "What is the film where Hannah Gal was the director?", "context": "CREATE TABLE table_name_67 (film VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT film FROM table_name_35 WHERE date = \"22/3/06\" AND recipient = \"redhouse lane / perfect world\"", "question": "What is the film dated 22/3/06 and redhouse lane / perfect world was the recipient?", "context": "CREATE TABLE table_name_35 (film VARCHAR, date VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT film FROM table_name_18 WHERE award = \"\u00a35,380\"", "question": "What is the name of the film with an award of \u00a35,380?", "context": "CREATE TABLE table_name_18 (film VARCHAR, award VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_32 WHERE engine = \"climax straight-4\"", "question": "What chassis was paired with climax straight-4?", "context": "CREATE TABLE table_name_32 (chassis VARCHAR, engine VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_35 WHERE entrant = \"cooper car company\"", "question": "What year did Cooper Car Company enter?", "context": "CREATE TABLE table_name_35 (year INTEGER, entrant VARCHAR)"}, {"answer": "SELECT year FROM table_name_56 WHERE points > 0", "question": "What year has more than 0 points?", "context": "CREATE TABLE table_name_56 (year VARCHAR, points INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_47 WHERE year < 1963", "question": "What is the total points before 1963?", "context": "CREATE TABLE table_name_47 (points INTEGER, year INTEGER)"}, {"answer": "SELECT genre FROM table_name_47 WHERE country_of_origin = \"united kingdom\" AND artist = \"queen\"", "question": "What was the genre of Queen (an artist from the United Kingdom)?", "context": "CREATE TABLE table_name_47 (genre VARCHAR, country_of_origin VARCHAR, artist VARCHAR)"}, {"answer": "SELECT claimed_sales FROM table_name_85 WHERE genre = \"rock\"", "question": "What is the number of claimed sales in the rock genre?", "context": "CREATE TABLE table_name_85 (claimed_sales VARCHAR, genre VARCHAR)"}, {"answer": "SELECT MIN(release_year_of_first_charted_record) FROM table_name_88 WHERE artist = \"abba\"", "question": "What was the earliest release-year of the first charted record of Abba?", "context": "CREATE TABLE table_name_88 (release_year_of_first_charted_record INTEGER, artist VARCHAR)"}, {"answer": "SELECT period_active FROM table_name_87 WHERE genre = \"pop\"", "question": "What was the active period for the pop genre?", "context": "CREATE TABLE table_name_87 (period_active VARCHAR, genre VARCHAR)"}, {"answer": "SELECT points FROM table_name_66 WHERE chassis = \"lotus 33\" AND entrant = \"team lotus\" AND year = 1964", "question": "What point had team Lotus whit the lotus 33 chassis in 1964?", "context": "CREATE TABLE table_name_66 (points VARCHAR, year VARCHAR, chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_23 WHERE year < 1965 AND points > 0 AND chassis = \"lotus 25\"", "question": "Which entrant before 1965 scored more than 0 point with the lotus 25 chassis?", "context": "CREATE TABLE table_name_23 (entrant VARCHAR, chassis VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT engine FROM table_name_85 WHERE points = 9", "question": "Which engine scored 9 points?", "context": "CREATE TABLE table_name_85 (engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_59 WHERE entrant = \"team lotus\" AND year > 1964", "question": "What chassis did team lotus use after 1964?", "context": "CREATE TABLE table_name_59 (chassis VARCHAR, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT others_percentage FROM table_name_83 WHERE others_number > 147 AND kerry_percentage = \"39.6%\"", "question": "What is the value Others% when the value Others# is greater than 147 and the value Kerry% is 39.6%?", "context": "CREATE TABLE table_name_83 (others_percentage VARCHAR, others_number VARCHAR, kerry_percentage VARCHAR)"}, {"answer": "SELECT COUNT(others_number) FROM table_name_94 WHERE county = \"langlade\" AND bush_number > 6 OFFSET 235", "question": "What is the total number of the value Others#, when the county is Langlade, and when the value Bush# is greater than 6,235?", "context": "CREATE TABLE table_name_94 (others_number VARCHAR, county VARCHAR, bush_number VARCHAR)"}, {"answer": "SELECT AVG(bush_number) FROM table_name_70 WHERE others_number > 57 AND bush_percentage = \"49.2%\"", "question": "What is the average value of Bush# when the value for Others# is greater than 57, and the value for Bush% is 49.2%?", "context": "CREATE TABLE table_name_70 (bush_number INTEGER, others_number VARCHAR, bush_percentage VARCHAR)"}, {"answer": "SELECT laid_down FROM table_name_76 WHERE name = \"fubuki\"", "question": "What is the date the Fubuki ship laid down?", "context": "CREATE TABLE table_name_76 (laid_down VARCHAR, name VARCHAR)"}, {"answer": "SELECT launched FROM table_name_18 WHERE name = \"harusame\"", "question": "What is the launched date for the Harusame ship?", "context": "CREATE TABLE table_name_18 (launched VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE location = \"lille\"", "question": "The game taking place in Lille had what as a score?", "context": "CREATE TABLE table_name_96 (score VARCHAR, location VARCHAR)"}, {"answer": "SELECT score FROM table_name_51 WHERE competition = \"test\" AND date = \"23 apr 1988\"", "question": "A competition of test taking place on 23 Apr 1988 had what as a score?", "context": "CREATE TABLE table_name_51 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_23 WHERE date = \"11 feb 1990\"", "question": "On 11 Feb 1990, the competition is listed as what?", "context": "CREATE TABLE table_name_23 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE date = \"4 apr 1997\"", "question": "The competition that took place on 4 Apr 1997 ended with what as the score?", "context": "CREATE TABLE table_name_42 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE location = \"northampton\"", "question": "The competition located in Northampton had a resulting score of what?", "context": "CREATE TABLE table_name_75 (score VARCHAR, location VARCHAR)"}, {"answer": "SELECT category FROM table_name_62 WHERE label = \"mcg\" AND result = \"nominee\"", "question": "What category did MCG get a nominee in?", "context": "CREATE TABLE table_name_62 (category VARCHAR, label VARCHAR, result VARCHAR)"}, {"answer": "SELECT genre FROM table_name_7 WHERE title = \"music in the air\"", "question": "What genre was Music in the Air?", "context": "CREATE TABLE table_name_7 (genre VARCHAR, title VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_63 WHERE record = \"52-52\"", "question": "Which opponent has a record of 52-52?", "context": "CREATE TABLE table_name_63 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_11 WHERE date = \"july 22\"", "question": "What is the record as of July 22?", "context": "CREATE TABLE table_name_11 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_47 WHERE goals_conceded = 21 AND draw > 3", "question": "What was the highest number played when there were 21 goals conceded and a draw greater than 3?", "context": "CREATE TABLE table_name_47 (played INTEGER, goals_conceded VARCHAR, draw VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_39 WHERE goals_scored < 20", "question": "What were the total number of points when the amount of goals scored was less than 20?", "context": "CREATE TABLE table_name_39 (points VARCHAR, goals_scored INTEGER)"}, {"answer": "SELECT COUNT(points) FROM table_name_45 WHERE lost > 6 AND team = \"once municipal\" AND goals_scored < 8", "question": "What were the total number of points when there was a lost larger than 6, when the team was Once Municipal, and when the number of goals scored was less than 8?", "context": "CREATE TABLE table_name_45 (points VARCHAR, goals_scored VARCHAR, lost VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_83 WHERE draw = 2 AND played < 18", "question": "What was the highest number of points scored when there was a draw of 2 and when the amount played was 18?", "context": "CREATE TABLE table_name_83 (points INTEGER, draw VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_73 WHERE draw < 4 AND lost < 6", "question": "What was the total number of places in which the draw was less than 4 and the amount lost was less than 6?", "context": "CREATE TABLE table_name_73 (place VARCHAR, draw VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_73 WHERE nationality = \"poland\" AND time > 55.34", "question": "What is the lowest rank with poland as the nationality and a time greater than 55.34?", "context": "CREATE TABLE table_name_73 (rank INTEGER, nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT name FROM table_name_8 WHERE lane < 7 AND time > 54.32 AND nationality = \"germany\" AND rank < 5", "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 AVG(lane) FROM table_name_99 WHERE time = 54.95", "question": "Which average lane has 54.95 as a time?", "context": "CREATE TABLE table_name_99 (lane INTEGER, time VARCHAR)"}, {"answer": "SELECT AVG(time) FROM table_name_99 WHERE name = \"eithan urbach\" AND lane > 2", "question": "Which average time has eithan urbach as a name with a lane bigger than 2?", "context": "CREATE TABLE table_name_99 (time INTEGER, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_89 WHERE chassis = \"brabham bt46 bt48 bt49\"", "question": "What year was the brabham bt46 bt48 bt49 Chassis common?", "context": "CREATE TABLE table_name_89 (year INTEGER, chassis VARCHAR)"}, {"answer": "SELECT MAX(score) FROM table_name_69 WHERE player = \"arnold palmer\"", "question": "How high did Arnold Palmer score in 1962?", "context": "CREATE TABLE table_name_69 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT result FROM table_name_27 WHERE venue = \"ulsan\"", "question": "Which result has a Venue of ulsan?", "context": "CREATE TABLE table_name_27 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_55 WHERE date = \"2007-08-22\"", "question": "Which competition has a Date of 2007-08-22?", "context": "CREATE TABLE table_name_55 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_31 WHERE date = \"2007-08-22\"", "question": "Which result has a Date of 2007-08-22?", "context": "CREATE TABLE table_name_31 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_24 WHERE 2000 = \"2r\"", "question": "What's the 2004 tournament that has a 2R in 2000?", "context": "CREATE TABLE table_name_24 (Id VARCHAR)"}, {"answer": "SELECT 1999 FROM table_name_2 WHERE 2003 = \"q1\" AND 2002 = \"q3\"", "question": "What is the 1999 tournament that has a Q1 in 2003 and a Q3 in 2002?", "context": "CREATE TABLE table_name_2 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_10 WHERE 2011 = \"q1\"", "question": "What is the 2004 tournament that has a Q1 of 2011?", "context": "CREATE TABLE table_name_10 (Id VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_13 WHERE profession = \"mixologist\"", "question": "What was the hometown of the contestant who was a professional mixologist?", "context": "CREATE TABLE table_name_13 (hometown VARCHAR, profession VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_17 WHERE engine = \"cosworth straight-4\" AND entrant = \"ron harris / team lotus\"", "question": "What is the average Year when there was a cosworth straight-4 engine, and the Entrant was ron harris / team lotus?", "context": "CREATE TABLE table_name_17 (year INTEGER, engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_39 WHERE chassis = \"lotus 25\"", "question": "What is the name of the Entrant that has a Chassis of lotus 25", "context": "CREATE TABLE table_name_39 (entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_87 WHERE chassis = \"porsche 718\"", "question": "What was the engine when the chassis was a porsche 718??", "context": "CREATE TABLE table_name_87 (engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_63 WHERE chassis = \"bmw 269 f2\" AND year < 1969", "question": "What is the number of points when there was a BMW 269 F2 chassis earlier than 1969?", "context": "CREATE TABLE table_name_63 (points VARCHAR, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_27 WHERE chassis = \"lotus 44 f2\"", "question": "What engine was in the lotus 44 f2 Chassis?", "context": "CREATE TABLE table_name_27 (engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT year FROM table_name_47 WHERE chassis = \"lotus 25\"", "question": "What year was there a lotus 25 Chassis?", "context": "CREATE TABLE table_name_47 (year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_92 WHERE nationality = \"netherlands\" AND lane < 4", "question": "what is the lowest rank for the netherlands in lane less than 4?", "context": "CREATE TABLE table_name_92 (rank INTEGER, nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT height FROM table_name_69 WHERE hometown = \"renton, wa\"", "question": "What is the height of the delegate whose hometown is Renton, WA?", "context": "CREATE TABLE table_name_69 (height VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT position FROM table_name_82 WHERE notes = \"53.96\"", "question": "Is there a Position for Notes 53.96?", "context": "CREATE TABLE table_name_82 (position VARCHAR, notes VARCHAR)"}, {"answer": "SELECT venue FROM table_name_82 WHERE event = \"4x400m relay\" AND year > 2002 AND position = \"4th\"", "question": "Is there a Venus that's a year later than 2002, with an Event of 4x400m relay in 4th Position?", "context": "CREATE TABLE table_name_82 (venue VARCHAR, position VARCHAR, event VARCHAR, year VARCHAR)"}, {"answer": "SELECT event FROM table_name_76 WHERE notes = \"53.76\"", "question": "What Event goes with Notes 53.76?", "context": "CREATE TABLE table_name_76 (event VARCHAR, notes VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE record = \"12-17\"", "question": "On what date did they have a record of 12-17?", "context": "CREATE TABLE table_name_68 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT engine FROM table_name_63 WHERE entrant = \"team lotus\" AND year > 1965", "question": "What engine did the Team Lotus have after 1965?", "context": "CREATE TABLE table_name_63 (engine VARCHAR, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_92 WHERE engine = \"brm v8\"", "question": "What chassis did the BRM V8 engine have?", "context": "CREATE TABLE table_name_92 (chassis VARCHAR, engine VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_99 WHERE year = 1966", "question": "What was the highest number of points in 1966?", "context": "CREATE TABLE table_name_99 (points INTEGER, year VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_87 WHERE games < 25 AND season = \"2010\"", "question": "What is the greatest number of losses a team that played fewer than 25 games in 2010 had?", "context": "CREATE TABLE table_name_87 (losses INTEGER, games VARCHAR, season VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_37 WHERE games = 17 AND losses > 15", "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 SUM(laps) FROM table_name_69 WHERE driver = \"gunnar nilsson\"", "question": "How many laps did gunnar nilsson drive?", "context": "CREATE TABLE table_name_69 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_74 WHERE laps = 79 AND driver = \"james hunt\"", "question": "Who built james hunt's car that went 79 laps?", "context": "CREATE TABLE table_name_74 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT weight FROM table_name_65 WHERE series = \"iii series\" AND reverse = \"modern pentathlon\"", "question": "How much did the Modern Pentathlon III Series coin weigh?", "context": "CREATE TABLE table_name_65 (weight VARCHAR, series VARCHAR, reverse VARCHAR)"}, {"answer": "SELECT obverse FROM table_name_45 WHERE reverse = \"archery\"", "question": "What is the obverse of the archery coin?", "context": "CREATE TABLE table_name_45 (obverse VARCHAR, reverse VARCHAR)"}, {"answer": "SELECT denomination FROM table_name_8 WHERE series = \"iii series\"", "question": "What is the denomination of the III Series?", "context": "CREATE TABLE table_name_8 (denomination VARCHAR, series VARCHAR)"}, {"answer": "SELECT diameter FROM table_name_46 WHERE reverse = \"archery\"", "question": "What is the diameter of the Archery Reverse coin?", "context": "CREATE TABLE table_name_46 (diameter VARCHAR, reverse VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_5 WHERE prod_code > 1.4 AND directed_by = \"rick wallace\"", "question": "Who wrote the episode with a production code greater than 1.4 direcyed by rick wallace?", "context": "CREATE TABLE table_name_5 (written_by VARCHAR, prod_code VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_12 WHERE directed_by = \"dan lerner\"", "question": "Who wrote the episode that was directed by dan lerner?", "context": "CREATE TABLE table_name_12 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_2 WHERE player = \"simon donnelly\" AND scottish_cup > 0", "question": "What is the average total of player Simon Donnelly, with a Scottish Cup greater than 0?", "context": "CREATE TABLE table_name_2 (total INTEGER, player VARCHAR, scottish_cup VARCHAR)"}, {"answer": "SELECT SUM(challenge_cup) FROM table_name_90 WHERE league = 1 AND player = \"simon storey\" AND total > 1", "question": "What is the Challenge Cup total with a League of 1, Player Simon Storey, and a Total greater than 1?", "context": "CREATE TABLE table_name_90 (challenge_cup INTEGER, total VARCHAR, league VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_25 WHERE player = \"damon gray\" AND challenge_cup < 0", "question": "What is the highest total of Player Damon Gray, with a Challenge Cup less than 0?", "context": "CREATE TABLE table_name_25 (total INTEGER, player VARCHAR, challenge_cup VARCHAR)"}, {"answer": "SELECT result FROM table_name_35 WHERE venue = \"away\" AND opponent = \"marbella\"", "question": "Which result has a Venue of away, and an Opponent of marbella?", "context": "CREATE TABLE table_name_35 (result VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_68 WHERE date = \"28 july 2007\"", "question": "Which venue has a Date of 28 july 2007?", "context": "CREATE TABLE table_name_68 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE venue = \"home\"", "question": "What is the result with a home venue?", "context": "CREATE TABLE table_name_26 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE result = \"0\u20130\"", "question": "Which Date has a Result of 0\u20130?", "context": "CREATE TABLE table_name_42 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE result = \"5\u20130\" AND opponent = \"tooting & mitcham\"", "question": "Which date has a Result of 5\u20130, and an Opponent of tooting & mitcham?", "context": "CREATE TABLE table_name_90 (date VARCHAR, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_13 WHERE played > 44", "question": "Name the total number of goals which have played more than 44", "context": "CREATE TABLE table_name_13 (goals_for VARCHAR, played INTEGER)"}, {"answer": "SELECT MAX(draws) FROM table_name_89 WHERE goals_against > 56 AND wins > 14", "question": "Name the most draws when goals against is more than 56 and wins is more than 14", "context": "CREATE TABLE table_name_89 (draws INTEGER, goals_against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_67 WHERE position > 4 AND draws > 11", "question": "Name the least goals when position is more than 4 and draws is more than 11", "context": "CREATE TABLE table_name_67 (goals_for INTEGER, position VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_51 WHERE club = \"elche cf\" AND goals_against > 43", "question": "Name the most wins which have clubbed of elche cf and goals against more than 43", "context": "CREATE TABLE table_name_51 (wins INTEGER, club VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT SUM(shirt_no) FROM table_name_6 WHERE birth_date = \"8 november 1980\" AND weight < 93", "question": "Birth Date of 8 November 1980, and a Weight smaller than 93 has what sum of a shirt number?", "context": "CREATE TABLE table_name_6 (shirt_no INTEGER, birth_date VARCHAR, weight VARCHAR)"}, {"answer": "SELECT COUNT(weight) FROM table_name_63 WHERE shirt_no = 18 AND height > 195", "question": "Shirt number of 18, and a Height larger than 195 has how much weight?", "context": "CREATE TABLE table_name_63 (weight VARCHAR, shirt_no VARCHAR, height VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_59 WHERE player = \"leland gibson\"", "question": "Name the To par for leland gibson", "context": "CREATE TABLE table_name_59 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_47 WHERE player = \"ed oliver\"", "question": "Name the place for ed oliver", "context": "CREATE TABLE table_name_47 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_4 WHERE score = 74 - 68 - 71 = 213", "question": "Name the player with score of 74-68-71=213", "context": "CREATE TABLE table_name_4 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_61 WHERE player = \"dick metz\"", "question": "Name the To par for dick metz", "context": "CREATE TABLE table_name_61 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT year FROM table_name_45 WHERE mixed_doubles = \"no competition\"", "question": "What year was there no competition in Mixed Doubles?", "context": "CREATE TABLE table_name_45 (year VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE date = \"14 april 2001\"", "question": "what was the score for the game on 14 april 2001?", "context": "CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE date = \"21 april 2001\"", "question": "what is the score for the game on 21 april 2001?", "context": "CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_75 WHERE date = \"21 april 2001\"", "question": "what is the competition on 21 april 2001?", "context": "CREATE TABLE table_name_75 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_57 WHERE record = \"1-3\"", "question": "Who is the opponent the Seattle Seahawks played when their record was 1-3?", "context": "CREATE TABLE table_name_57 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE attendance = \"71,789\"", "question": "On what date was the crowd size of 71,789?", "context": "CREATE TABLE table_name_35 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_7 WHERE record = \"6-6\"", "question": "Which week did the Seattle Seahawks have a record of 6-6?", "context": "CREATE TABLE table_name_7 (week INTEGER, record VARCHAR)"}, {"answer": "SELECT result FROM table_name_36 WHERE attendance = \"51,100\"", "question": "What was the final score (result) for the game where 51,100 attended?", "context": "CREATE TABLE table_name_36 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_63 WHERE attendance = \"56,770\"", "question": "Where was the game held when the attendance was 56,770?", "context": "CREATE TABLE table_name_63 (game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_71 WHERE game_site = \"kingdome\" AND date = \"october 13, 1991\"", "question": "Which week was the game held at Kingdome on October 13, 1991?", "context": "CREATE TABLE table_name_71 (week INTEGER, game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_27 WHERE loss = \"harden (9-6)\"", "question": "Who was the opponent at the game that had a loss of Harden (9-6)?", "context": "CREATE TABLE table_name_27 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_17 WHERE co_drivers = \"oliver gavin jan magnussen\" AND class = \"gts\" AND year < 2004", "question": "Name the sum of Laps for co-drivers of oliver gavin jan magnussen and class of gts with year less than 2004", "context": "CREATE TABLE table_name_17 (laps INTEGER, year VARCHAR, co_drivers VARCHAR, class VARCHAR)"}, {"answer": "SELECT team FROM table_name_84 WHERE laps > 333 AND year < 2004", "question": "Name the team with laps more than 333 and year less than 2004", "context": "CREATE TABLE table_name_84 (team VARCHAR, laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_name_92 WHERE laps = 333", "question": "Name the team with Laps of 333", "context": "CREATE TABLE table_name_92 (team VARCHAR, laps VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_34 WHERE tries_for = \"29\"", "question": "What is the points for where the tries for is 29?", "context": "CREATE TABLE table_name_34 (points_for VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_17 WHERE club = \"penallta rfc\"", "question": "What is the points for of Club of penallta rfc?", "context": "CREATE TABLE table_name_17 (points_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_12 WHERE club = \"ynysybwl rfc\"", "question": "What is the try bonus for ynysybwl rfc?", "context": "CREATE TABLE table_name_12 (try_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_81 WHERE played = \"22\" AND lost = \"6\"", "question": "What is the points against for the team that played 22 and lost 6?", "context": "CREATE TABLE table_name_81 (points_against VARCHAR, played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_23 WHERE player = \"tommy bolt\"", "question": "What is the score of  Tommy Bolt", "context": "CREATE TABLE table_name_23 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_12 WHERE score < 69", "question": "WHich Places have a score smaller than 69?", "context": "CREATE TABLE table_name_12 (place VARCHAR, score INTEGER)"}, {"answer": "SELECT to_par FROM table_name_6 WHERE place = \"t6\" AND player = \"tommy bolt\"", "question": "What is the To Par that has Tommy Bolt with a Place of t6?", "context": "CREATE TABLE table_name_6 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_47 WHERE year < 1958 AND chassis = \"cooper t43\"", "question": "Who is the entrant with a cooper t43 chassis before 1958?", "context": "CREATE TABLE table_name_47 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_26 WHERE 2010 = \"27\"", "question": "Name the 2006 when the 2010 is 27", "context": "CREATE TABLE table_name_26 (Id VARCHAR)"}, {"answer": "SELECT main_cast_seasons FROM table_name_13 WHERE portrayed_by = \"joe jonas\"", "question": "Which main cast seasons were portrayed by Joe Jonas?", "context": "CREATE TABLE table_name_13 (main_cast_seasons VARCHAR, portrayed_by VARCHAR)"}, {"answer": "SELECT COUNT(_number_of_episodes) FROM table_name_81 WHERE portrayed_by = \"nick jonas\"", "question": "How many episodes were portrayed by Nick Jonas?", "context": "CREATE TABLE table_name_81 (_number_of_episodes VARCHAR, portrayed_by VARCHAR)"}, {"answer": "SELECT SUM(_number_of_episodes) FROM table_name_91 WHERE character = \"nick lucas\"", "question": "How many episodes had the character of Nick Lucas?", "context": "CREATE TABLE table_name_91 (_number_of_episodes INTEGER, character VARCHAR)"}, {"answer": "SELECT character FROM table_name_59 WHERE portrayed_by = \"joe jonas\"", "question": "What character is portrayed by Joe Jonas?", "context": "CREATE TABLE table_name_59 (character VARCHAR, portrayed_by VARCHAR)"}, {"answer": "SELECT extra FROM table_name_90 WHERE tournament = \"commonwealth games\"", "question": "What was the extra info for the Commonwealth Games?", "context": "CREATE TABLE table_name_90 (extra VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_16 WHERE tournament = \"commonwealth games\"", "question": "What year was the Commonwealth Games?", "context": "CREATE TABLE table_name_16 (year INTEGER, tournament VARCHAR)"}, {"answer": "SELECT occupation FROM table_name_90 WHERE residence = \"red bank\"", "question": "What job is at red bank?", "context": "CREATE TABLE table_name_90 (occupation VARCHAR, residence VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_34 WHERE pts > 0 AND entrant = \"ecurie bleue\"", "question": "What year did Ecurie Bleue score more than 0 points?", "context": "CREATE TABLE table_name_34 (year INTEGER, pts VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT starting_point FROM table_name_66 WHERE operates = \"north/south\" AND name = \"palafox street\"", "question": "What is the starting point of the north/south operating Palafox Street route?", "context": "CREATE TABLE table_name_66 (starting_point VARCHAR, operates VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_50 WHERE direction = \"bi-directional\" AND terminus = \"ecat/rosa park transit center\"", "question": "Which bi-directional route has a terminus at Ecat/Rosa Park Transit Center?", "context": "CREATE TABLE table_name_50 (name VARCHAR, direction VARCHAR, terminus VARCHAR)"}, {"answer": "SELECT name FROM table_name_57 WHERE terminus = \"pine forest\"", "question": "Which route has a terminus of pine Forest?", "context": "CREATE TABLE table_name_57 (name VARCHAR, terminus VARCHAR)"}, {"answer": "SELECT starting_point FROM table_name_27 WHERE terminus = \"ecat/rosa park transit center\"", "question": "What is the starting point of the route that has its terminus at Ecat/Rosa Park Transit Center?", "context": "CREATE TABLE table_name_27 (starting_point VARCHAR, terminus VARCHAR)"}, {"answer": "SELECT direction FROM table_name_50 WHERE starting_point = \"downtown transit center\" AND terminus = \"pensacola beach\"", "question": "What is the direction of the route that stars at downtown transit center and has a terminus point at Pensacola Beach?", "context": "CREATE TABLE table_name_50 (direction VARCHAR, starting_point VARCHAR, terminus VARCHAR)"}, {"answer": "SELECT operates FROM table_name_5 WHERE terminus = \"downtown transit center\" AND name = \"bayou blvd./12th avenue\"", "question": "Where does the Bayou Blvd./12th Avenue route that has a terminus at the downtown transit center operate?", "context": "CREATE TABLE table_name_5 (operates VARCHAR, terminus VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(full_professors) FROM table_name_72 WHERE head = \"hartmut kliemt\" AND lecturers > 0", "question": "How many full professors work under Hartmut Kliemt with more than 0 lecturers?", "context": "CREATE TABLE table_name_72 (full_professors VARCHAR, head VARCHAR, lecturers VARCHAR)"}, {"answer": "SELECT MIN(lecturers) FROM table_name_86 WHERE department = \"accounting\" AND full_professors < 5", "question": "What is the least amount of lecturers in the accounting department with less than 5 full professors?", "context": "CREATE TABLE table_name_86 (lecturers INTEGER, department VARCHAR, full_professors VARCHAR)"}, {"answer": "SELECT AVG(honorary_professors) FROM table_name_9 WHERE lecturers = 1 AND department = \"economics\"", "question": "What is the average number of honorary professors in the economics department with 1 lecturer?", "context": "CREATE TABLE table_name_9 (honorary_professors INTEGER, lecturers VARCHAR, department VARCHAR)"}, {"answer": "SELECT loss FROM table_name_39 WHERE date = \"june 12\"", "question": "What Loss occured on the Date of June 12?", "context": "CREATE TABLE table_name_39 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_27 WHERE attendance = \"17,675\"", "question": "What Loss had an Attendance of 17,675?", "context": "CREATE TABLE table_name_27 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT loss FROM table_name_35 WHERE attendance = \"17,675\"", "question": "What Loss had an Attendance of 17,675?", "context": "CREATE TABLE table_name_35 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE score = \"5-2\" AND loss = \"greinke (1-2)\"", "question": "On what Date had a Score of 5-2 and a Loss of Greinke (1-2)?", "context": "CREATE TABLE table_name_84 (date VARCHAR, score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_3 WHERE attendance = \"39,446\"", "question": "What was the Score that has an Attendance of 39,446?", "context": "CREATE TABLE table_name_3 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT loss FROM table_name_87 WHERE score = \"9-1\"", "question": "What was the Loss that had a Score of 9-1?", "context": "CREATE TABLE table_name_87 (loss VARCHAR, score VARCHAR)"}, {"answer": "SELECT counties_represented FROM table_name_17 WHERE party = \"democratic\" AND committee = \"ways and means\"", "question": "What counties represented have a democratic committee, and a committee of ways and means?", "context": "CREATE TABLE table_name_17 (counties_represented VARCHAR, party VARCHAR, committee VARCHAR)"}, {"answer": "SELECT AVG(first_elected) FROM table_name_18 WHERE district = \"11\" AND committee = \"environmental matters\"", "question": "What is the average first elected year that has a district of 11 and a committee of environmental matters?", "context": "CREATE TABLE table_name_18 (first_elected INTEGER, district VARCHAR, committee VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_name_80 WHERE counties_represented = \"baltimore county\" AND district = \"06.0 6\" AND committee = \"economic matters\"", "question": "What is the total number of First elected that has a country represented in Baltimore county, a district of 06.0 6, and a committee of economic matters?", "context": "CREATE TABLE table_name_80 (first_elected VARCHAR, committee VARCHAR, counties_represented VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_name_86 WHERE counties_represented = \"baltimore county\" AND committee = \"health and government operations\" AND first_elected < 2002", "question": "What district has counties represented by Baltimore county, a committee of health and government operations, and a first elected smaller than 2002?", "context": "CREATE TABLE table_name_86 (district VARCHAR, first_elected VARCHAR, counties_represented VARCHAR, committee VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_name_99 WHERE district = \"06.0 6\" AND committee = \"economic matters\"", "question": "What is the Highest first elected year that has a district of 06.0 6, and a committee of economic matters?", "context": "CREATE TABLE table_name_99 (first_elected INTEGER, district VARCHAR, committee VARCHAR)"}, {"answer": "SELECT name FROM table_name_57 WHERE goals = 6 AND nationality = \"morocco\"", "question": "Who was from Morocco and scored 6 goals?", "context": "CREATE TABLE table_name_57 (name VARCHAR, goals VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MAX(ranking) FROM table_name_80 WHERE years = \"1996\u201313\" AND goals > 17", "question": "Who has the highest ranking from  1996\u201313, and more than 17 goals?", "context": "CREATE TABLE table_name_80 (ranking INTEGER, years VARCHAR, goals VARCHAR)"}, {"answer": "SELECT AVG(ranking) FROM table_name_53 WHERE nationality = \"saudi arabia\" AND years = \"2000\u2013\"", "question": "What was the average ranking of Saudi Arabia in the years of 2000\u2013?", "context": "CREATE TABLE table_name_53 (ranking INTEGER, nationality VARCHAR, years VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_89 WHERE goals = 14", "question": "Which nation had 14 goals?", "context": "CREATE TABLE table_name_89 (nationality VARCHAR, goals VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_28 WHERE name = \"hamzah idris\"", "question": "What nationality is hamzah idris?", "context": "CREATE TABLE table_name_28 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_76 WHERE ranking < 4 AND years = \"1996\u201313\"", "question": "Who had fewer goals than 4 during the years of 1996\u201313?", "context": "CREATE TABLE table_name_76 (goals INTEGER, ranking VARCHAR, years VARCHAR)"}, {"answer": "SELECT MIN(top_25) FROM table_name_47 WHERE events < 17 AND top_5 > 0", "question": "what is the lowest top-25 when the events is less than 17 and top-5 is more than 0?", "context": "CREATE TABLE table_name_47 (top_25 INTEGER, events VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT AVG(top_5) FROM table_name_80 WHERE tournament = \"totals\" AND top_25 > 4", "question": "what is the top-5 when the tournament is totals and the top-25 is more than 4?", "context": "CREATE TABLE table_name_80 (top_5 INTEGER, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT AVG(events) FROM table_name_89 WHERE top_5 < 1 AND top_25 > 1", "question": "what is the average number of events when the top-5 is less than 1 and top 25 more than 1", "context": "CREATE TABLE table_name_89 (events INTEGER, top_5 VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_name_29 WHERE top_25 < 4 AND cuts_made > 3 AND wins < 0", "question": "what is the highest top-5 when the top-25 is less than 4, cuts made is more than 3 and wins is 0?", "context": "CREATE TABLE table_name_29 (top_5 INTEGER, wins VARCHAR, top_25 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT COUNT(top_5) FROM table_name_95 WHERE tournament = \"pga championship\" AND events < 4", "question": "what is the total number of times the tournament was pga championship and evens is less than 4?", "context": "CREATE TABLE table_name_95 (top_5 VARCHAR, tournament VARCHAR, events VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_59 WHERE entrant = \"elf team tyrrell\" AND points = \"34\"", "question": "What year did Elf Team Tyrrell have 34 points?", "context": "CREATE TABLE table_name_59 (year INTEGER, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_84 WHERE year > 1972 AND entrant = \"marlboro team alfa romeo\"", "question": "After 1972, how many points did Marlboro Team Alfa Romeo have?", "context": "CREATE TABLE table_name_84 (points VARCHAR, year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_5 WHERE points = \"39\"", "question": "What chassis had 39 points?", "context": "CREATE TABLE table_name_5 (chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_3 WHERE engine = \"ford v8\" AND chassis = \"tyrrell 007\"", "question": "How many points did the Ford V8 with a Tyrrell 007 have?", "context": "CREATE TABLE table_name_3 (points VARCHAR, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_66 WHERE engine = \"ford v8\" AND year < 1976 AND points = \"12\"", "question": "Before 1976 and with 12 points, what chassis did the Ford V8 have?", "context": "CREATE TABLE table_name_66 (chassis VARCHAR, points VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_75 WHERE entrant = \"elf team tyrrell\" AND points = \"39\" AND chassis = \"tyrrell 007\"", "question": "What year did Elf Team Tyrrell have 39 points and a Tyrrell 007 Chassis?", "context": "CREATE TABLE table_name_75 (year INTEGER, chassis VARCHAR, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT position FROM table_10015132_11 WHERE school_club_team = \"Butler CC (KS)\"", "question": "What position does the player who played for butler cc (ks) play?", "context": "CREATE TABLE table_10015132_11 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(school_club_team) FROM table_10015132_11 WHERE no = \"3\"", "question": "How many schools did player number 3 play at?", "context": "CREATE TABLE table_10015132_11 (school_club_team VARCHAR, no VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_11 WHERE no = \"21\"", "question": "What school did player number 21 play for?", "context": "CREATE TABLE table_10015132_11 (school_club_team VARCHAR, no VARCHAR)"}, {"answer": "SELECT player FROM table_10015132_11 WHERE no = \"42\"", "question": "Who is the player that wears number 42?", "context": "CREATE TABLE table_10015132_11 (player VARCHAR, no VARCHAR)"}, {"answer": "SELECT player FROM table_10015132_11 WHERE position = \"Guard\" AND years_in_toronto = \"1996-97\"", "question": "What player played guard for toronto in 1996-97?", "context": "CREATE TABLE table_10015132_11 (player VARCHAR, position VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT player FROM table_10015132_9 WHERE school_club_team = \"Westchester High School\"", "question": "Who are all of the players on the Westchester High School club team?", "context": "CREATE TABLE table_10015132_9 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_9 WHERE player = \"Amir Johnson\"", "question": "What school/club team is Amir Johnson on?", "context": "CREATE TABLE table_10015132_9 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_10015132_9 WHERE years_in_toronto = \"2005-06\"", "question": "What are the total amount of numbers on the Toronto team in 2005-06?", "context": "CREATE TABLE table_10015132_9 (no VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_10015132_9 WHERE years_in_toronto = \"2006-07\"", "question": "What are the total number of positions on the Toronto team in 2006-07?", "context": "CREATE TABLE table_10015132_9 (position VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT nationality FROM table_10015132_9 WHERE school_club_team = \"Fresno State\"", "question": "What are the nationality of the players on the Fresno State school/club team?", "context": "CREATE TABLE table_10015132_9 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_9 WHERE player = \"Trey Johnson\"", "question": "What school/club team is Trey Johnson on?", "context": "CREATE TABLE table_10015132_9 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT ended_time_as_senior_g8_leader FROM table_10026563_1 WHERE person = \"Jacques Chirac\"", "question": "When did Jacques Chirac stop being a G8 leader?", "context": "CREATE TABLE table_10026563_1 (ended_time_as_senior_g8_leader VARCHAR, person VARCHAR)"}, {"answer": "SELECT entered_office_as_head_of_state_or_government FROM table_10026563_1 WHERE office = \"Prime Minister of Italy\"", "question": "When did the Prime Minister of Italy take office?", "context": "CREATE TABLE table_10026563_1 (entered_office_as_head_of_state_or_government VARCHAR, office VARCHAR)"}, {"answer": "SELECT country___exonym__ FROM table_1008653_1 WHERE official_or_native_language_s___alphabet_script_ = \"Dutch Papiamento\"", "question": "What is the English name of the country whose official native language is Dutch Papiamento?", "context": "CREATE TABLE table_1008653_1 (country___exonym__ VARCHAR, official_or_native_language_s___alphabet_script_ VARCHAR)"}, {"answer": "SELECT official_or_native_language_s___alphabet_script_ FROM table_1008653_1 WHERE capital___exonym__ = \"Canberra\"", "question": "What official or native languages are spoken in the country whose capital city is Canberra?", "context": "CREATE TABLE table_1008653_1 (official_or_native_language_s___alphabet_script_ VARCHAR, capital___exonym__ VARCHAR)"}, {"answer": "SELECT capital___endonym__ FROM table_1008653_1 WHERE capital___exonym__ = \"Canberra\"", "question": "What is the local name given to the city of Canberra?", "context": "CREATE TABLE table_1008653_1 (capital___endonym__ VARCHAR, capital___exonym__ VARCHAR)"}, {"answer": "SELECT capital___endonym__ FROM table_1008653_1 WHERE country___endonym__ = \"Anguilla\"", "question": "What is the local name given to the capital of Anguilla?", "context": "CREATE TABLE table_1008653_1 (capital___endonym__ VARCHAR, country___endonym__ VARCHAR)"}, {"answer": "SELECT capital___exonym__ FROM table_1008653_1 WHERE capital___endonym__ = \"St. John's\"", "question": "What is the English name given to the city of St. John's?", "context": "CREATE TABLE table_1008653_1 (capital___exonym__ VARCHAR, capital___endonym__ VARCHAR)"}, {"answer": "SELECT COUNT(capital___endonym__) FROM table_1008653_1 WHERE country___endonym__ = \"Australia\"", "question": "How many capital cities does Australia have?", "context": "CREATE TABLE table_1008653_1 (capital___endonym__ VARCHAR, country___endonym__ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_10088101_1 WHERE production_code = \"9ABX02\"", "question": "The episode with production code 9abx02 was originally aired on what date?", "context": "CREATE TABLE table_10088101_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_10088101_1 WHERE production_code = \"8ABX15\"", "question": "What is the episode number that has production code 8abx15?", "context": "CREATE TABLE table_10088101_1 (no_in_series INTEGER, production_code VARCHAR)"}, {"answer": "SELECT MIN(ties_played) FROM table_10295819_2 WHERE years_played = 6", "question": "Name the minimum tiesplayed for 6 years", "context": "CREATE TABLE table_10295819_2 (ties_played INTEGER, years_played VARCHAR)"}, {"answer": "SELECT amount_of_trees, _that_require_replacement FROM table_10342194_3 WHERE district = \"Leninsky\"", "question": "What is the amount of trees, that require replacement when district is leninsky?", "context": "CREATE TABLE table_10342194_3 (amount_of_trees VARCHAR, _that_require_replacement VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_10342194_3 WHERE total_amount_of_trees < 150817.6878461314 AND amount_of_old_trees = \"1,928 (1.89%)\"", "question": "What is the district when the total amount of trees is smaller than 150817.6878461314 and amount of old trees is 1,928 (1.89%)?", "context": "CREATE TABLE table_10342194_3 (district VARCHAR, total_amount_of_trees VARCHAR, amount_of_old_trees VARCHAR)"}, {"answer": "SELECT amount_of_trees, _that_require_replacement FROM table_10342194_3 WHERE district = \"Motovilikhinsky\"", "question": "What is the amount of trees, that require replacement when the district is motovilikhinsky?", "context": "CREATE TABLE table_10342194_3 (amount_of_trees VARCHAR, _that_require_replacement VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(total_amount_of_trees) FROM table_10342194_3 WHERE district = \"Leninsky\"", "question": "What is the total amount of trees when district is leninsky?", "context": "CREATE TABLE table_10342194_3 (total_amount_of_trees INTEGER, district VARCHAR)"}, {"answer": "SELECT in_ames FROM table_10429820_13 WHERE \"since_beginning_of_big_12\" = \"since_beginning_of_big_12\"", "question": "When the value of \"since beginning of big 12\" is synonymous with its' category, what are the in Ames values?", "context": "CREATE TABLE table_10429820_13 (in_ames VARCHAR)"}, {"answer": "SELECT us_open_cup FROM table_1046170_5 WHERE regular_season = \"4th, Atlantic division\"", "question": "what's the\u00a0u.s. open cup status\u00a0for regular season\u00a0of 4th, atlantic division ", "context": "CREATE TABLE table_1046170_5 (us_open_cup VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT division FROM table_1046170_5 WHERE us_open_cup = \"Did Not Qualify\" AND year = 2003", "question": "how many division  did not qualify for u.s. open cup in 2003", "context": "CREATE TABLE table_1046170_5 (division VARCHAR, us_open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT us_open_cup FROM table_1046170_5 WHERE playoffs = \"division Semifinals\"", "question": "which round is u.s. open cup division semifinals", "context": "CREATE TABLE table_1046170_5 (us_open_cup VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT playoffs FROM table_1046170_5 WHERE regular_season = \"1st, Atlantic division\"", "question": "what are all the playoffs for regular season is 1st, atlantic division", "context": "CREATE TABLE table_1046170_5 (playoffs VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT playoffs FROM table_1046170_5 WHERE us_open_cup = \"1st Round\"", "question": "what are all the playoffs for u.s. open cup in 1st round", "context": "CREATE TABLE table_1046170_5 (playoffs VARCHAR, us_open_cup VARCHAR)"}, {"answer": "SELECT COUNT(2 AS nd_leg) FROM table_1061075_1 WHERE aggregate = \"7-2\"", "question": "what is the total number of\u00a02nd leg\u00a0where\u00a0aggregate\u00a0is 7-2", "context": "CREATE TABLE table_1061075_1 (aggregate VARCHAR)"}, {"answer": "SELECT competition FROM table_1061075_1 WHERE aggregate = \"4\u20137\"", "question": " what's the\u00a0competition\u00a0where\u00a0aggregate\u00a0is 4\u20137", "context": "CREATE TABLE table_1061075_1 (competition VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_1061075_1 WHERE opponents = \"Haugar\"", "question": "what is the total number of\u00a0round\u00a0where\u00a0opponents\u00a0is haugar", "context": "CREATE TABLE table_1061075_1 (round VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_1061075_1 WHERE opponents = \"Galatasaray\"", "question": " what's the\u00a01st leg\u00a0where\u00a0opponents\u00a0is galatasaray", "context": "CREATE TABLE table_1061075_1 (opponents VARCHAR)"}, {"answer": "SELECT MAX(rd) FROM table_10706961_2 WHERE pole_position = \"Tom Sneva\"", "question": "What is the highest Rd that Tom Sneva had the pole position in?", "context": "CREATE TABLE table_10706961_2 (rd INTEGER, pole_position VARCHAR)"}, {"answer": "SELECT COUNT(winning_driver) FROM table_10706961_2 WHERE fastest_lap = \"56.920\"", "question": "How many winning drivers were there in the race that had a fastest lap time of 56.920?", "context": "CREATE TABLE table_10706961_2 (winning_driver VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT COUNT(report) FROM table_10706961_2 WHERE winning_team = \"Forsythe Racing\" AND pole_position = \"Teo Fabi\"", "question": "How many reports are there in the race that Forsythe Racing won and Teo Fabi had the pole position in?", "context": "CREATE TABLE table_10706961_2 (report VARCHAR, winning_team VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT rd FROM table_10706961_2 WHERE name = \"Indianapolis 500\"", "question": "Which Rd took place at the Indianapolis 500?", "context": "CREATE TABLE table_10706961_2 (rd VARCHAR, name VARCHAR)"}, {"answer": "SELECT winning_team FROM table_10706961_2 WHERE winning_driver = \"Bobby Rahal\"", "question": "Which teams won when Bobby Rahal was their winning driver?", "context": "CREATE TABLE table_10706961_2 (winning_team VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_10706961_2 WHERE name = \"Escort Radar Warning 200\"", "question": "What was the fastest lap time in the Escort Radar Warning 200?", "context": "CREATE TABLE table_10706961_2 (fastest_lap VARCHAR, name VARCHAR)"}, {"answer": "SELECT report FROM table_10707176_2 WHERE winning_team = \"Porsche North America\"", "question": "What report was there for the porsche north america?", "context": "CREATE TABLE table_10707176_2 (report VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT rnd FROM table_10707176_2 WHERE circuit = \"Phoenix International Raceway\"", "question": "What rnds were there for the phoenix international raceway?", "context": "CREATE TABLE table_10707176_2 (rnd VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT pole_position FROM table_10707176_2 WHERE rnd = \"12\"", "question": "Who was the pole position for the rnd equalling 12?", "context": "CREATE TABLE table_10707176_2 (pole_position VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT COUNT(report) FROM table_10707176_2 WHERE circuit = \"Cleveland Burke Lakefront Airport\"", "question": "How many reports were the for the cleveland burke lakefront airport circut?", "context": "CREATE TABLE table_10707176_2 (report VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(winning_driver) FROM table_10707176_2 WHERE rnd = \"5\"", "question": "How many winning drivers were the for the rnd equalling 5?", "context": "CREATE TABLE table_10707176_2 (winning_driver VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT MIN(rd) FROM table_10706879_3 WHERE name = \"Tony Bettenhausen 200\"", "question": "The race tony bettenhausen 200 has what smallest rd?", "context": "CREATE TABLE table_10706879_3 (rd INTEGER, name VARCHAR)"}, {"answer": "SELECT winning_team FROM table_10706879_3 WHERE name = \"Los Angeles Times 500\"", "question": "The winning team of the race, los angeles times 500 is who?", "context": "CREATE TABLE table_10706879_3 (winning_team VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(winning_driver) FROM table_10706879_3 WHERE name = \"Kraco Twin 125 (R2)\"", "question": "How many winning drivers in the kraco twin 125 (r2) race were there?", "context": "CREATE TABLE table_10706879_3 (winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_10706879_3 WHERE winning_driver = \"Johnny Rutherford\"", "question": "What are the races that johnny rutherford has won?", "context": "CREATE TABLE table_10706879_3 (name VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT COUNT(fastest_lap) FROM table_10706879_3 WHERE rd = 10", "question": "How many fastest laps were there for a rd that equals 10?", "context": "CREATE TABLE table_10706879_3 (fastest_lap VARCHAR, rd VARCHAR)"}, {"answer": "SELECT licence_award_date FROM table_10712301_5 WHERE region = \"North East England\"", "question": "What is the license award date for North East England?", "context": "CREATE TABLE table_10712301_5 (licence_award_date VARCHAR, region VARCHAR)"}, {"answer": "SELECT _percentage_growth__2000_2008_ FROM table_10733530_3 WHERE nation = \"Ethiopia\"", "question": "What is the percentage of growth in 2000-2008 in ethiopia?", "context": "CREATE TABLE table_10733530_3 (_percentage_growth__2000_2008_ VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(_percentage_growth__2000_2008_) FROM table_10733530_3 WHERE nation = \"Uganda\"", "question": "Name the total number of percentage growth 2000-2008 of uganda?", "context": "CREATE TABLE table_10733530_3 (_percentage_growth__2000_2008_ VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(_percentage_growth__2000_2008_) FROM table_10733530_3 WHERE nation = \"Burundi\"", "question": "What is the maximum percentage grown 2000-2008 in burundi", "context": "CREATE TABLE table_10733530_3 (_percentage_growth__2000_2008_ INTEGER, nation VARCHAR)"}, {"answer": "SELECT village__german_ FROM table_10798421_1 WHERE percent_of_slovenes_1951 = \"76.3%\"", "question": "Provide me with the names of all the villages (German) that has 76.3% of Slovenes in 1951.", "context": "CREATE TABLE table_10798421_1 (village__german_ VARCHAR, percent_of_slovenes_1951 VARCHAR)"}, {"answer": "SELECT MIN(number_of_people_1991) FROM table_10798421_1 WHERE percent_of_slovenes_1991 = \"92.5%\"", "question": "Give me the minimum number of people in 1991 with 92.5% of Slovenes in 1991.", "context": "CREATE TABLE table_10798421_1 (number_of_people_1991 INTEGER, percent_of_slovenes_1991 VARCHAR)"}, {"answer": "SELECT village__german_ FROM table_10798421_1 WHERE village__slovenian_ = \"Sele Srednji Kot\"", "question": "Provide me with the name of all the village (German) that are part of the village (Slovenian) with sele srednji kot. ", "context": "CREATE TABLE table_10798421_1 (village__german_ VARCHAR, village__slovenian_ VARCHAR)"}, {"answer": "SELECT village__german_ FROM table_10798421_1 WHERE village__slovenian_ = \"Sele Borovnica\"", "question": "Provide me with the name of all the village (German) that are part of the village (Slovenian) with sele borovnica.", "context": "CREATE TABLE table_10798421_1 (village__german_ VARCHAR, village__slovenian_ VARCHAR)"}, {"answer": "SELECT village__german_ FROM table_10798421_1 WHERE percent_of_slovenes_1951 = \"96.9%\"", "question": "Provide me with the name of the village (German) where there is 96.9% Slovenes in 1951. ", "context": "CREATE TABLE table_10798421_1 (village__german_ VARCHAR, percent_of_slovenes_1951 VARCHAR)"}, {"answer": "SELECT score FROM table_10812293_3 WHERE date = \"November 12\"", "question": "What was the score of the game on November 12?", "context": "CREATE TABLE table_10812293_3 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_10812293_3 WHERE team = \"San Antonio\"", "question": "Who had high assists when they played against San Antonio?", "context": "CREATE TABLE table_10812293_3 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_10812293_3 WHERE game = 4", "question": "Who scored the most points in game 4?", "context": "CREATE TABLE table_10812293_3 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_10812293_3 WHERE date = \"November 20\"", "question": "Where was the game on November 20?", "context": "CREATE TABLE table_10812293_3 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_10935205_1 WHERE canadian_airdate = \"11 February 2008\"", "question": "The canadian airdate of 11 february 2008 applied to what series number?", "context": "CREATE TABLE table_10935205_1 (no_in_series VARCHAR, canadian_airdate VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_10935205_1 WHERE us_airdate = \"4 April 2008\"", "question": "The U.S. airdate of 4 april 2008 had a production code of what?", "context": "CREATE TABLE table_10935205_1 (production_code INTEGER, us_airdate VARCHAR)"}, {"answer": "SELECT canadian_airdate FROM table_10935205_1 WHERE us_airdate = \"8 August 2008\"", "question": "The U.S. airdate of 8 august 2008 also had canadian airdates of what?", "context": "CREATE TABLE table_10935205_1 (canadian_airdate VARCHAR, us_airdate VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_10935205_1 WHERE canadian_airdate = \"17 March 2008\"", "question": "The canadian airdate of 17 march 2008 had how many numbers in the season?", "context": "CREATE TABLE table_10935205_1 (no_in_season VARCHAR, canadian_airdate VARCHAR)"}, {"answer": "SELECT title FROM table_10935205_1 WHERE us_airdate = \"4 April 2008\"", "question": "For the episode(s) aired in the U.S. on 4 april 2008, what were the names?", "context": "CREATE TABLE table_10935205_1 (title VARCHAR, us_airdate VARCHAR)"}, {"answer": "SELECT player FROM table_10975034_2 WHERE college = \"Wilfrid Laurier\"", "question": "Which player from the 2004 CFL draft attended Wilfrid Laurier?", "context": "CREATE TABLE table_10975034_2 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_10975034_2 WHERE player = \"Christian Leibl-Cote\"", "question": "What position does Christian Leibl-Cote play?", "context": "CREATE TABLE table_10975034_2 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_10975034_2 WHERE college = \"Northwestern\"", "question": "What is the pick number for Northwestern college?", "context": "CREATE TABLE table_10975034_2 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT COUNT(city_district__stadtteil_) FROM table_10992_3 WHERE foreign_nationals = \"5.162\"", "question": "What is the number of the city district of stadtteil where foreigners are 5.162?", "context": "CREATE TABLE table_10992_3 (city_district__stadtteil_ VARCHAR, foreign_nationals VARCHAR)"}, {"answer": "SELECT city_district__stadtteil_ FROM table_10992_3 WHERE no = \"47\"", "question": "What is the city where the number is 47?", "context": "CREATE TABLE table_10992_3 (city_district__stadtteil_ VARCHAR, no VARCHAR)"}, {"answer": "SELECT league FROM table_11044765_1 WHERE mascot = \"Raiders\"", "question": "Which leagues have Raiders as their mascot?", "context": "CREATE TABLE table_11044765_1 (league VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT league FROM table_11044765_1 WHERE school = \"Galena\"", "question": "Which leagues is the Galena school in?", "context": "CREATE TABLE table_11044765_1 (league VARCHAR, school VARCHAR)"}, {"answer": "SELECT location FROM table_11044765_1 WHERE mascot = \"Lancers\"", "question": "What city and state is the Lancers mascot located?", "context": "CREATE TABLE table_11044765_1 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT location FROM table_11044765_1 WHERE mascot = \"Miners\"", "question": "What city and state are the miners located in?", "context": "CREATE TABLE table_11044765_1 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT school FROM table_11044765_1 WHERE mascot = \"Raiders\"", "question": "Which school has the Raiders as their mascot?", "context": "CREATE TABLE table_11044765_1 (school VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT tournament FROM table_1121352_2 WHERE date = \"Nov 3, 2002\"", "question": "Where was the tournament dated nov 3, 2002?", "context": "CREATE TABLE table_1121352_2 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_1121352_2 WHERE date = \"Mar 28, 2004\"", "question": "Where is the margin of victory dated mar 28, 2004?", "context": "CREATE TABLE table_1121352_2 (margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT to_par FROM table_1121352_2 WHERE date = \"May 4, 2003\"", "question": "What is the to par dated may 4, 2003?", "context": "CREATE TABLE table_1121352_2 (to_par VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_1121352_2 WHERE runner_s__up = \"Pat Hurst Juli Inkster\"", "question": "What date were the runner ups pat hurst juli inkster?", "context": "CREATE TABLE table_1121352_2 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT COUNT(final_episode) AS Count FROM table_11210576_4 WHERE character = \"Rick Stetler\"", "question": "what's the total number of\u00a0final epbeingode count\u00a0with\u00a0character\u00a0being rick stetler", "context": "CREATE TABLE table_11210576_4 (final_episode VARCHAR, character VARCHAR)"}, {"answer": "SELECT character FROM table_11210576_4 WHERE fate = \"Deceased: Knife Wound\"", "question": "what's the\u00a0character\u00a0with\u00a0fate\u00a0being deceased: knife wound", "context": "CREATE TABLE table_11210576_4 (character VARCHAR, fate VARCHAR)"}, {"answer": "SELECT actor FROM table_11210576_4 WHERE character = \"Judge Joseph Ratner\"", "question": "what's the\u00a0actor\u00a0with\u00a0character\u00a0being judge joseph ratner", "context": "CREATE TABLE table_11210576_4 (actor VARCHAR, character VARCHAR)"}, {"answer": "SELECT semi_finalist__number2 FROM table_11214772_2 WHERE year = 2007", "question": "Which team was the second semi finalist in 2007?", "context": "CREATE TABLE table_11214772_2 (semi_finalist__number2 VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(runner_up) FROM table_11214772_2 WHERE semi_finalist__number1 = \"Western Carolina\" AND year = 2005", "question": "How many teams were listed as runner up in 2005 and there the first semi finalist was Western Carolina?", "context": "CREATE TABLE table_11214772_2 (runner_up VARCHAR, semi_finalist__number1 VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_11214772_2 WHERE semi_finalist__number1 = \"Miami\"", "question": "List the scores of all games when Miami were listed as the first Semi finalist", "context": "CREATE TABLE table_11214772_2 (score VARCHAR, semi_finalist__number1 VARCHAR)"}, {"answer": "SELECT runner_up FROM table_11214772_2 WHERE semi_finalist__number1 = \"Embry-Riddle\"", "question": "When Embry-Riddle made it to the first semi finalist slot, list all the runners up.", "context": "CREATE TABLE table_11214772_2 (runner_up VARCHAR, semi_finalist__number1 VARCHAR)"}, {"answer": "SELECT location FROM table_11214772_2 WHERE year = 2007", "question": "Where was the final game played in 2007", "context": "CREATE TABLE table_11214772_2 (location VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_1132600_3 WHERE pole_position = \"Michael Schumacher\" AND fastest_lap = \"David Coulthard\" AND winning_constructor = \"McLaren - Mercedes\"", "question": "Which round had Michael Schumacher in the pole position, David Coulthard with the fastest lap, and McLaren - Mercedes as the winning constructor?", "context": "CREATE TABLE table_1132600_3 (round VARCHAR, winning_constructor VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT COUNT(winning_driver) FROM table_1132600_3 WHERE grand_prix = \"Italian grand_prix\"", "question": "How many drivers won the Italian Grand Prix?", "context": "CREATE TABLE table_1132600_3 (winning_driver VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT report FROM table_1132600_3 WHERE grand_prix = \"Belgian grand_prix\"", "question": "What was the report of the Belgian Grand Prix?", "context": "CREATE TABLE table_1132600_3 (report VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_1132600_3 WHERE grand_prix = \"Belgian grand_prix\"", "question": "Who had the fastest lap in the Belgian Grand Prix?", "context": "CREATE TABLE table_1132600_3 (fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_1134091_4 WHERE vacator = \"Charles E. Chamberlain (R)\"", "question": "When was the date successor seated when the vacator was charles e. chamberlain (r)?", "context": "CREATE TABLE table_1134091_4 (date_successor_seated VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT successor FROM table_1134091_4 WHERE vacator = \"Chester E. Holifield (D)\"", "question": "Who was the successor when the vacator was chester e. holifield (d)?", "context": "CREATE TABLE table_1134091_4 (successor VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_1134091_4 WHERE district = \"California 10th\"", "question": "When was the successor seated when the district was California 10th?", "context": "CREATE TABLE table_1134091_4 (date_successor_seated VARCHAR, district VARCHAR)"}, {"answer": "SELECT vacator FROM table_1134091_4 WHERE date_successor_seated = \"August 21, 1973\"", "question": "Who was the vacator when the date successor seated was august 21, 1973?", "context": "CREATE TABLE table_1134091_4 (vacator VARCHAR, date_successor_seated VARCHAR)"}, {"answer": "SELECT district FROM table_1134091_4 WHERE reason_for_change = \"Died January 1, 1974\"", "question": "What was the district when the reason for change was died January 1, 1974?", "context": "CREATE TABLE table_1134091_4 (district VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT route_name FROM table_11336756_6 WHERE remarks = \"Replaced by US 81\"", "question": "Which routes have  \"replaced by US 81\" listed in their remarks section?", "context": "CREATE TABLE table_11336756_6 (route_name VARCHAR, remarks VARCHAR)"}, {"answer": "SELECT junctions FROM table_11336756_6 WHERE remarks = \"Replaced by BSI-35\"", "question": "Which junctions have \"replaced by bsi-35\" listed in their remarks section?", "context": "CREATE TABLE table_11336756_6 (junctions VARCHAR, remarks VARCHAR)"}, {"answer": "SELECT COUNT(junctions) FROM table_11336756_6 WHERE remarks = \"Replaced by BSI-35\"", "question": "How many junctions have \"replaced by bsi-35\" listed in their remarks section?", "context": "CREATE TABLE table_11336756_6 (junctions VARCHAR, remarks VARCHAR)"}, {"answer": "SELECT length FROM table_11336756_6 WHERE remarks = \"Replaced by US 81\"", "question": "What unit of length is being used for the route with \"replaced by us 81\" in their remarks section?", "context": "CREATE TABLE table_11336756_6 (length VARCHAR, remarks VARCHAR)"}, {"answer": "SELECT population_area FROM table_11336756_6 WHERE remarks = \"Replaced by US 83\"", "question": "Which population areas have \"replaced by us 83\" listed in their remarks section?", "context": "CREATE TABLE table_11336756_6 (population_area VARCHAR, remarks VARCHAR)"}, {"answer": "SELECT COUNT(termini) FROM table_11336756_6 WHERE direction = \"East West\" AND junctions = \"none\" AND route_name = \"SH 202\"", "question": "How many termini are there that have \"east west\" listed in their direction section, \"none\" listed in their junction section, and have a route name of \"sh 202\"?", "context": "CREATE TABLE table_11336756_6 (termini VARCHAR, route_name VARCHAR, direction VARCHAR, junctions VARCHAR)"}, {"answer": "SELECT kickoff_[a_] FROM table_11449311_2 WHERE tv = \"CBS\" AND opponent = \"St. Louis Cardinals\"", "question": "Give me the kickoff time of the game that was aired on CBS against the St. Louis Cardinals. ", "context": "CREATE TABLE table_11449311_2 (kickoff_ VARCHAR, a_ VARCHAR, tv VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_11449311_2 WHERE record = \"2-13\"", "question": "Find all the result(s) with the record of 2-13.", "context": "CREATE TABLE table_11449311_2 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT vault FROM table_11542215_3 WHERE total = \"56.635\"", "question": "What is the vault score for the total of 56.635?", "context": "CREATE TABLE table_11542215_3 (vault VARCHAR, total VARCHAR)"}, {"answer": "SELECT total FROM table_11542215_3 WHERE floor_exercise = \"9.287\"", "question": "What is the total score when the score for floor exercise was 9.287?", "context": "CREATE TABLE table_11542215_3 (total VARCHAR, floor_exercise VARCHAR)"}, {"answer": "SELECT margin FROM table_11570261_1 WHERE runner_s__up = \"Phil Mickelson\"", "question": " what's the\u00a0margin\u00a0where\u00a0runner(s)-up\u00a0is phil mickelson", "context": "CREATE TABLE table_11570261_1 (margin VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_11570261_1 WHERE winning_score = \u22128(71 - 63 - 69 - 69 = 272)", "question": "what is the minimum\u00a0year\u00a0where\u00a0winning score\u00a0is \u22128 (71-63-69-69=272)", "context": "CREATE TABLE table_11570261_1 (year INTEGER, winning_score VARCHAR)"}, {"answer": "SELECT championship FROM table_11570261_1 WHERE winning_score = \u221212(74 - 66 - 65 - 71 = 276)", "question": " what's the\u00a0championship\u00a0where\u00a0winning score\u00a0is \u221212 (74-66-65-71=276)", "context": "CREATE TABLE table_11570261_1 (championship VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT 54 AS _holes FROM table_11570261_1 WHERE winning_score = \u221219(67 - 66 - 67 - 69 = 269)", "question": " what's the\u00a054 holes\u00a0where\u00a0winning score\u00a0is \u221219 (67-66-67-69=269)", "context": "CREATE TABLE table_11570261_1 (winning_score VARCHAR)"}, {"answer": "SELECT title FROM table_11589522_3 WHERE original_air_date = \"January18,2009\"", "question": " what's the\u00a0title\u00a0where\u00a0original air date\u00a0is january18,2009", "context": "CREATE TABLE table_11589522_3 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11589522_3 WHERE written_by = \"Iain Morris & Damon Beesley\"", "question": " what's the\u00a0original air date\u00a0where\u00a0written by\u00a0is iain morris & damon beesley", "context": "CREATE TABLE table_11589522_3 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT allied_forces FROM table_1160161_12 WHERE target = \"Woensdrecht\"", "question": "Which Allied Force targetted Woensdrecht?", "context": "CREATE TABLE table_1160161_12 (allied_forces VARCHAR, target VARCHAR)"}, {"answer": "SELECT date_of_entry FROM table_1160304_2 WHERE chart = \"UK Albums Top 75\"", "question": "What is the date of entry for the UK Albums Top 75 chart?", "context": "CREATE TABLE table_1160304_2 (date_of_entry VARCHAR, chart VARCHAR)"}, {"answer": "SELECT COUNT(weeks_on_peak) FROM table_1160304_2 WHERE chart = \"Ireland Albums Top 75\"", "question": "What was the total number of weeks on peak for the Ireland Albums Top 75 chart?", "context": "CREATE TABLE table_1160304_2 (weeks_on_peak VARCHAR, chart VARCHAR)"}, {"answer": "SELECT date_of_exit FROM table_1160304_2 WHERE chart = \"Dutch Albums Top 100\"", "question": "What is the exit date for the Dutch Albums Top 100 Chart?", "context": "CREATE TABLE table_1160304_2 (date_of_exit VARCHAR, chart VARCHAR)"}, {"answer": "SELECT COUNT(constancy) FROM table_11609814_1 WHERE purity = \"falling\"", "question": "what is the total number of\u00a0constancy\u00a0where\u00a0purity\u00a0is falling", "context": "CREATE TABLE table_11609814_1 (constancy VARCHAR, purity VARCHAR)"}, {"answer": "SELECT permanence_of_the_body FROM table_11609814_1 WHERE purity = \"Rudra\"", "question": " what's the\u00a0permanence of the body\u00a0where\u00a0purity\u00a0is rudra", "context": "CREATE TABLE table_11609814_1 (permanence_of_the_body VARCHAR, purity VARCHAR)"}, {"answer": "SELECT permanence_of_the_body FROM table_11609814_1 WHERE purity = \"apprehension\"", "question": " what's the\u00a0permanence of the body\u00a0where\u00a0purity\u00a0is apprehension", "context": "CREATE TABLE table_11609814_1 (permanence_of_the_body VARCHAR, purity VARCHAR)"}, {"answer": "SELECT permanence_of_the_body FROM table_11609814_1 WHERE penance = \"the undifferenced\"", "question": " what's the\u00a0permanence of the body\u00a0where\u00a0penance\u00a0is the undifferenced", "context": "CREATE TABLE table_11609814_1 (permanence_of_the_body VARCHAR, penance VARCHAR)"}, {"answer": "SELECT constancy FROM table_11609814_1 WHERE permanence_of_the_body = \"meditation\"", "question": " what's the\u00a0constancy\u00a0where\u00a0permanence of the body\u00a0is meditation", "context": "CREATE TABLE table_11609814_1 (constancy VARCHAR, permanence_of_the_body VARCHAR)"}, {"answer": "SELECT permanence_of_the_body FROM table_11609814_1 WHERE constancy = \"interestedness\"", "question": " what's the\u00a0permanence of the body\u00a0where\u00a0constancy\u00a0is interestedness", "context": "CREATE TABLE table_11609814_1 (permanence_of_the_body VARCHAR, constancy VARCHAR)"}, {"answer": "SELECT title FROM table_11630008_8 WHERE production_code = 624", "question": "What is the title of the episode with the production code 624?", "context": "CREATE TABLE table_11630008_8 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11630008_8 WHERE written_by = \"Karen Felix and Don Woodard\"", "question": "What is the original air date of the episode written by Karen Felix and Don Woodard?", "context": "CREATE TABLE table_11630008_8 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE species_in_the_world = 8411", "question": "what's the total number of\u00a0species in the peruvian amazon\u00a0with\u00a08411 species in the world\u00a0", "context": "CREATE TABLE table_11727969_1 (species_in_the_peruvian_amazon VARCHAR, species_in_the_world VARCHAR)"}, {"answer": "SELECT MIN(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE taxonomy = \"s Fern ( Pteridophyta )\"", "question": "what's the minimum\u00a0species in the peruvian amazon\u00a0with\u00a0taxonomy\u00a0s fern ( pteridophyta )", "context": "CREATE TABLE table_11727969_1 (species_in_the_peruvian_amazon INTEGER, taxonomy VARCHAR)"}, {"answer": "SELECT species_in_the_world FROM table_11727969_1 WHERE peruvian_amazon_vs_peru__percent_ = 63", "question": "what's the\u00a0species in the world\u00a0with\u00a0peruvian amazon vs. peru (percent)\u00a0 of 63", "context": "CREATE TABLE table_11727969_1 (species_in_the_world VARCHAR, peruvian_amazon_vs_peru__percent_ VARCHAR)"}, {"answer": "SELECT MIN(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE species_in_peru = 1000", "question": "what's the minimum\u00a0species in the peruvian amazon\u00a0with\u00a0species in peru\u00a0of 1000", "context": "CREATE TABLE table_11727969_1 (species_in_the_peruvian_amazon INTEGER, species_in_peru VARCHAR)"}, {"answer": "SELECT MIN(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE peru_vs_world__percent_ = 7", "question": "what's the minimum\u00a0species in the peruvian amazon\u00a0with\u00a0peru vs. world (percent)\u00a0value of 7", "context": "CREATE TABLE table_11727969_1 (species_in_the_peruvian_amazon INTEGER, peru_vs_world__percent_ VARCHAR)"}, {"answer": "SELECT MAX(peru_vs_world__percent_) FROM table_11727969_1 WHERE species_in_the_world = 9672", "question": "what's the maximum\u00a0peru vs. world (percent)\u00a0with\u00a09672 species in the world\u00a0", "context": "CREATE TABLE table_11727969_1 (peru_vs_world__percent_ INTEGER, species_in_the_world VARCHAR)"}, {"answer": "SELECT school_club_team_country FROM table_11734041_2 WHERE no_s_ = \"10\" AND position = \"Forward\"", "question": "What school did the forward whose number is 10 belong to?", "context": "CREATE TABLE table_11734041_2 (school_club_team_country VARCHAR, no_s_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_11734041_2 WHERE school_club_team_country = \"Hartford\"", "question": "What is the height of the player who attended Hartford?", "context": "CREATE TABLE table_11734041_2 (height_in_ft VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT years_for_rockets FROM table_11734041_2 WHERE school_club_team_country = \"LaSalle\"", "question": "What years did the player from LaSalle play for the Rockets?", "context": "CREATE TABLE table_11734041_2 (years_for_rockets VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT position FROM table_11734041_2 WHERE height_in_ft = \"6-6\" AND no_s_ = \"35\"", "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 player FROM table_11734041_9 WHERE years_for_rockets = \"1986-92\"", "question": "Which player who played for the Rockets for the years 1986-92?", "context": "CREATE TABLE table_11734041_9 (player VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT no_s_ FROM table_11734041_9 WHERE school_club_team_country = \"Southern University\"", "question": "What is the number of the player who went to Southern University?", "context": "CREATE TABLE table_11734041_9 (no_s_ VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_11734041_9 WHERE player = \"Jones, Major Major Jones\"", "question": "How tall is the player jones, major major jones?", "context": "CREATE TABLE table_11734041_9 (height_in_ft VARCHAR, player VARCHAR)"}, {"answer": "SELECT member FROM table_11764007_2 WHERE week_sent_to_third_island = \"1\"", "question": "Who was sent to the third island in week 1?", "context": "CREATE TABLE table_11764007_2 (member VARCHAR, week_sent_to_third_island VARCHAR)"}, {"answer": "SELECT week_sent_to_third_island FROM table_11764007_2 WHERE week_arrived_on_main_island = \"6\"", "question": "What week was the member who arrived on the main island in week 6 sent to the third island?", "context": "CREATE TABLE table_11764007_2 (week_sent_to_third_island VARCHAR, week_arrived_on_main_island VARCHAR)"}, {"answer": "SELECT COUNT(member) FROM table_11764007_2 WHERE week_arrived_on_main_island = \"4\"", "question": "How many members arrived on the main island in week 4?", "context": "CREATE TABLE table_11764007_2 (member VARCHAR, week_arrived_on_main_island VARCHAR)"}, {"answer": "SELECT week_arrived_on_main_island FROM table_11764007_2 WHERE original_tribe = \"Shark\" AND week_sent_to_third_island = \"14\"", "question": "What week did the member who's original tribe was shark and who was sent to the third island on week 14 arrive on the main island?", "context": "CREATE TABLE table_11764007_2 (week_arrived_on_main_island VARCHAR, original_tribe VARCHAR, week_sent_to_third_island VARCHAR)"}, {"answer": "SELECT no_of_sikhs FROM table_11800185_1 WHERE country = \"Japan\"", "question": "What is the number of sikhs in Japan?", "context": "CREATE TABLE table_11800185_1 (no_of_sikhs VARCHAR, country VARCHAR)"}, {"answer": "SELECT evening_gown FROM table_11884814_3 WHERE swimsuit = \"9.61\"", "question": "What was the evening gown score when the swimsuit was 9.61?", "context": "CREATE TABLE table_11884814_3 (evening_gown VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_11884814_3 WHERE interview = \"9.74\"", "question": "What is the swimsuit score when the interview was 9.74?", "context": "CREATE TABLE table_11884814_3 (swimsuit VARCHAR, interview VARCHAR)"}, {"answer": "SELECT country FROM table_11884814_3 WHERE interview = \"9.40\" AND average = \"9.44\"", "question": "Which country had an interview score of 9.40 and average of 9.44?", "context": "CREATE TABLE table_11884814_3 (country VARCHAR, interview VARCHAR, average VARCHAR)"}, {"answer": "SELECT country FROM table_11884814_3 WHERE swimsuit = \"9.67\"", "question": "Which country had the swimsuit score 9.67?", "context": "CREATE TABLE table_11884814_3 (country VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT average FROM table_11884814_3 WHERE swimsuit = \"9.57\"", "question": "What was the average for the country with the swimsuit score of 9.57?", "context": "CREATE TABLE table_11884814_3 (average VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT interview FROM table_11884814_3 WHERE country = \"Hawaii\"", "question": "What was the interview score for Hawaii?", "context": "CREATE TABLE table_11884814_3 (interview VARCHAR, country VARCHAR)"}, {"answer": "SELECT date FROM table_11960407_5 WHERE game = 50", "question": "What is the date of Game 50?", "context": "CREATE TABLE table_11960407_5 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_11960407_5 WHERE game = 49", "question": "Who scored the most points in Game 49?", "context": "CREATE TABLE table_11960407_5 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_11961582_6 WHERE location_attendance = \"Philips Arena 19,335\"", "question": "Name the number of teams at the philips arena 19,335?", "context": "CREATE TABLE table_11961582_6 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_11961582_6 WHERE location_attendance = \"Philips Arena 18,227\"", "question": "What is the team located at philips arena 18,227?", "context": "CREATE TABLE table_11961582_6 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT record FROM table_11964047_7 WHERE score = \"W 98\u201391\"", "question": "what are all the records with a score is w 98\u201391", "context": "CREATE TABLE table_11964047_7 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_11964047_7 WHERE score = \"L 109\u2013116 2 OT\"", "question": "what records have a score of l 109\u2013116 2 ot", "context": "CREATE TABLE table_11964047_7 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT visitor FROM table_11964047_7 WHERE record = \"25\u201318\"", "question": "who are all the visitor with a record of 25\u201318", "context": "CREATE TABLE table_11964047_7 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_11964047_7 WHERE leading_scorer = \"Roy : 25\"", "question": "Which visitors have a leading scorer of roy : 25", "context": "CREATE TABLE table_11964047_7 (visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_11964047_7 WHERE leading_scorer = \"Gordon : 32\"", "question": "what is the total number of dates where the scorer is gordon : 32", "context": "CREATE TABLE table_11964047_7 (date VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT home FROM table_11964047_5 WHERE streak = \"L3\" AND leading_scorer = \"Roy : 23\"", "question": " what's the\u00a0home\u00a0team where\u00a0streak\u00a0is l3 and\u00a0leading scorer\u00a0is roy : 23", "context": "CREATE TABLE table_11964047_5 (home VARCHAR, streak VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT attendance FROM table_11964047_5 WHERE score = \"L 92\u2013101\"", "question": " what's the\u00a0attendance\u00a0where\u00a0score\u00a0is l 92\u2013101", "context": "CREATE TABLE table_11964047_5 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_11964047_5 WHERE visitor = \"New Jersey Nets\"", "question": "what is the total number of\u00a0date\u00a0where\u00a0visitor\u00a0is new jersey nets", "context": "CREATE TABLE table_11964047_5 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_11964047_5 WHERE home = \"Charlotte Bobcats\"", "question": " who is the\u00a0leading scorer\u00a0where\u00a0home\u00a0is charlotte bobcats", "context": "CREATE TABLE table_11964047_5 (leading_scorer VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_11964047_5 WHERE record = \"0\u20132\"", "question": " what's the\u00a0score\u00a0where\u00a0record\u00a0is 0\u20132", "context": "CREATE TABLE table_11964047_5 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_11964047_5 WHERE streak = \"L2\" AND leading_scorer = \"Roy : 23\"", "question": "what is the total number of\u00a0record\u00a0where\u00a0streak\u00a0is l2 and\u00a0leading scorer\u00a0is roy : 23", "context": "CREATE TABLE table_11964047_5 (record VARCHAR, streak VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_11965481_13 WHERE date = \"June 10\"", "question": "Name the location on june 10", "context": "CREATE TABLE table_11965481_13 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_11965481_13 WHERE date = \"June 12\"", "question": "Name the number of games on june 12", "context": "CREATE TABLE table_11965481_13 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_11965481_13 WHERE date = \"June 5\"", "question": "Name the series on june 5", "context": "CREATE TABLE table_11965481_13 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT written_by FROM table_12030612_3 WHERE series__number = 25", "question": "Who were the authors of series episode #25?", "context": "CREATE TABLE table_12030612_3 (written_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT season__number FROM table_12030612_3 WHERE written_by = \"Michael Poryes\"", "question": "What season features writer Michael Poryes?", "context": "CREATE TABLE table_12030612_3 (season__number VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_12030612_3 WHERE written_by = \"Michael Poryes\"", "question": "What is the date of the episode written by Michael Poryes?", "context": "CREATE TABLE table_12030612_3 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT somerset FROM table_12043148_2 WHERE year = 2009", "question": "what is the somerset for the  year 2009?", "context": "CREATE TABLE table_12043148_2 (somerset VARCHAR, year VARCHAR)"}, {"answer": "SELECT bristol_ & _n_som FROM table_12043148_2 WHERE somerset = \"Ashcott and Shapwick\"", "question": "what is the bristol & n. som where the somerset is ashcott and shapwick?", "context": "CREATE TABLE table_12043148_2 (bristol_ VARCHAR, _n_som VARCHAR, somerset VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_12043148_2 WHERE glos_ & _wilts = \"Warminster\"", "question": "what is the latest year where glos & wilts is warminster?", "context": "CREATE TABLE table_12043148_2 (year INTEGER, glos_ VARCHAR, _wilts VARCHAR)"}, {"answer": "SELECT glos_ & _wilts FROM table_12043148_2 WHERE bristol_ & _somerset = \"Lansdown\"", "question": "what is the glos & wilts where the bristol & somerset is lansdown?", "context": "CREATE TABLE table_12043148_2 (glos_ VARCHAR, _wilts VARCHAR, bristol_ VARCHAR, _somerset VARCHAR)"}, {"answer": "SELECT year FROM table_12043148_2 WHERE glos_ & _wilts = \"Gloucester City Winget\"", "question": "what is the year where glos & wilts is gloucester city winget?", "context": "CREATE TABLE table_12043148_2 (year VARCHAR, glos_ VARCHAR, _wilts VARCHAR)"}, {"answer": "SELECT COUNT(premier_two) FROM table_12043148_2 WHERE gloucestershire = \"Painswick\"", "question": "who many times is gloucestershire is painswick?", "context": "CREATE TABLE table_12043148_2 (premier_two VARCHAR, gloucestershire VARCHAR)"}, {"answer": "SELECT preliminaries FROM table_12094609_1 WHERE evening_gown = \"8.988\"", "question": " what's the\u00a0preliminaries\u00a0where\u00a0evening gown\u00a0is 8.988", "context": "CREATE TABLE table_12094609_1 (preliminaries VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_12094609_1 WHERE average = \"8.670\"", "question": " what's the\u00a0swimsuit\u00a0where\u00a0average\u00a0is 8.670", "context": "CREATE TABLE table_12094609_1 (swimsuit VARCHAR, average VARCHAR)"}, {"answer": "SELECT evening_gown FROM table_12094609_1 WHERE preliminaries = \"8.977\"", "question": " what's the\u00a0evening gown\u00a0where\u00a0preliminaries\u00a0is 8.977", "context": "CREATE TABLE table_12094609_1 (evening_gown VARCHAR, preliminaries VARCHAR)"}, {"answer": "SELECT preliminaries FROM table_12094609_1 WHERE state = \"South Dakota\"", "question": " what's the\u00a0preliminaries\u00a0where\u00a0state\u00a0is south dakota", "context": "CREATE TABLE table_12094609_1 (preliminaries VARCHAR, state VARCHAR)"}, {"answer": "SELECT evening_gown FROM table_12094609_1 WHERE state = \"South Dakota\"", "question": " what's the\u00a0evening gown\u00a0where\u00a0state\u00a0is south dakota", "context": "CREATE TABLE table_12094609_1 (evening_gown VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_12094609_1 WHERE evening_gown = \"8.988\"", "question": "what is the total number of\u00a0average\u00a0where\u00a0evening gown\u00a0is 8.988", "context": "CREATE TABLE table_12094609_1 (average VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_12104319_1 WHERE womens_doubles = \"Marina Yakusheva Elena Shimko\"", "question": "Name the men's singles of marina yakusheva elena shimko", "context": "CREATE TABLE table_12104319_1 (mens_singles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_12104319_1 WHERE mens_doubles = \"Imam Sodikin Irawan Andi Tandaputra\"", "question": "What are the womens singles of imam sodikin irawan andi tandaputra?", "context": "CREATE TABLE table_12104319_1 (womens_singles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_12104319_1 WHERE womens_doubles = \"Naoko Fukuman Kurumi Yonao\"", "question": "What are the womens singles of naoko fukuman kurumi yonao?", "context": "CREATE TABLE table_12104319_1 (womens_singles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_12104319_1 WHERE mixed_doubles = \"Marcus Ellis Gabrielle White\"", "question": "What is the womens singles of marcus ellis gabrielle white?", "context": "CREATE TABLE table_12104319_1 (womens_singles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_12104319_1 WHERE year = 2008", "question": "What is the mens singles of 2008?", "context": "CREATE TABLE table_12104319_1 (mens_singles VARCHAR, year VARCHAR)"}, {"answer": "SELECT gdp___bn__ FROM table_12108_1 WHERE \"capital\" = \"capital\"", "question": "what is the gdp ( bn ) where capital is capital?", "context": "CREATE TABLE table_12108_1 (gdp___bn__ VARCHAR)"}, {"answer": "SELECT population FROM table_12108_1 WHERE \"area__sq_mi_\" = \"area__sq_mi_\"", "question": "what is the population where the area (sq. mi.) is area (sq. mi.)?", "context": "CREATE TABLE table_12108_1 (population VARCHAR)"}, {"answer": "SELECT light_vehicle FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = \"R87.00\"", "question": "What is the toll for light vehicles at the plaza where the toll for heavy vehicles with 2 axles is r87.00?", "context": "CREATE TABLE table_1211545_2 (light_vehicle VARCHAR, heavy_vehicle__2_axles_ VARCHAR)"}, {"answer": "SELECT name FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = \"R87.00\"", "question": "What is the name of the plaza where the toll for heavy vehicles with 2 axles is r87.00?", "context": "CREATE TABLE table_1211545_2 (name VARCHAR, heavy_vehicle__2_axles_ VARCHAR)"}, {"answer": "SELECT heavy_vehicle__3_4_axles_ FROM table_1211545_2 WHERE name = \"Verkeerdevlei Toll Plaza\"", "question": "What is the toll for heavy vehicles with 3/4 axles at Verkeerdevlei toll plaza?", "context": "CREATE TABLE table_1211545_2 (heavy_vehicle__3_4_axles_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT location FROM table_1211545_2 WHERE name = \"Carousel Toll Plaza\"", "question": "What is the location of the Carousel toll plaza?", "context": "CREATE TABLE table_1211545_2 (location VARCHAR, name VARCHAR)"}, {"answer": "SELECT light_vehicle FROM table_1211545_2 WHERE location = \"between Bela Bela and Modimolle\"", "question": "What is the toll for light vehicles at the plaza between bela bela and modimolle?", "context": "CREATE TABLE table_1211545_2 (light_vehicle VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = \"R20.50\"", "question": "What is the name of the plaza where the told for heavy vehicles with 2 axles is r20.50?", "context": "CREATE TABLE table_1211545_2 (name VARCHAR, heavy_vehicle__2_axles_ VARCHAR)"}, {"answer": "SELECT inclination FROM table_12141496_1 WHERE alt_name = \"OPS-1584\"", "question": "What is the inclination when the alt name is OPS-1584?", "context": "CREATE TABLE table_12141496_1 (inclination VARCHAR, alt_name VARCHAR)"}, {"answer": "SELECT MAX(apogee__km_) FROM table_12141496_1 WHERE name = \"SAMOS F3-3\"", "question": "What is the maximum apogee for samos f3-3?", "context": "CREATE TABLE table_12141496_1 (apogee__km_ INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(perigee__km_) FROM table_12141496_1 WHERE decay_date = \"1969-01-09\"", "question": "What was the maximum perigee on 1969-01-09?", "context": "CREATE TABLE table_12141496_1 (perigee__km_ INTEGER, decay_date VARCHAR)"}, {"answer": "SELECT COUNT(alt_name) FROM table_12141496_1 WHERE id = \"1964-011A\"", "question": "How many alt names does 1964-011a have?", "context": "CREATE TABLE table_12141496_1 (alt_name VARCHAR, id VARCHAR)"}, {"answer": "SELECT shortstop FROM table_12142298_2 WHERE first_baseman = \"Paul Konerko\"", "question": "Who played SS when paul konerko played 1st base?", "context": "CREATE TABLE table_12142298_2 (shortstop VARCHAR, first_baseman VARCHAR)"}, {"answer": "SELECT second_baseman FROM table_12142298_2 WHERE first_baseman = \"Nomar Garciaparra\"", "question": "Who played 2nd base when nomar garciaparra was at 1st base?", "context": "CREATE TABLE table_12142298_2 (second_baseman VARCHAR, first_baseman VARCHAR)"}, {"answer": "SELECT rightfielder FROM table_12142298_2 WHERE starting_pitcher = \"Vicente Padilla\"", "question": "Who was the RF when the SP was vicente padilla?", "context": "CREATE TABLE table_12142298_2 (rightfielder VARCHAR, starting_pitcher VARCHAR)"}, {"answer": "SELECT shortstop FROM table_12142298_2 WHERE second_baseman = \"Jim Lefebvre\" AND centerfielder = \"Willie Davis\" AND starting_pitcher = \"Don Drysdale\"", "question": "Who was the SS when jim lefebvre was at 2nd, willie davis at CF, and don drysdale was the SP.", "context": "CREATE TABLE table_12142298_2 (shortstop VARCHAR, starting_pitcher VARCHAR, second_baseman VARCHAR, centerfielder VARCHAR)"}, {"answer": "SELECT top_scorer FROM table_1218784_1 WHERE gf = 41", "question": "Who is the top scorer where gf is 41?", "context": "CREATE TABLE table_1218784_1 (top_scorer VARCHAR, gf VARCHAR)"}, {"answer": "SELECT goals FROM table_1218784_1 WHERE season = \"2005-06\"", "question": "How many goals were scored in the 2005-06 season?", "context": "CREATE TABLE table_1218784_1 (goals VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_1218784_1 WHERE rank = 16", "question": "How many seasons had a rank of 16?", "context": "CREATE TABLE table_1218784_1 (season VARCHAR, rank VARCHAR)"}, {"answer": "SELECT manager FROM table_1218784_1 WHERE rank = 16", "question": "Who is the manager whose rank is 16?", "context": "CREATE TABLE table_1218784_1 (manager VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_1218784_1 WHERE manager = \"Rob McDonald\"", "question": "What is the rank of manager Rob Mcdonald?", "context": "CREATE TABLE table_1218784_1 (rank VARCHAR, manager VARCHAR)"}, {"answer": "SELECT order__number FROM table_12310814_1 WHERE original_artist = \"Rickie Lee Jones\"", "question": "What's the order number of the song originally performed by Rickie Lee Jones?", "context": "CREATE TABLE table_12310814_1 (order__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT result FROM table_12310814_1 WHERE episode = \"Top 3\"", "question": "What was the result of the Top 3 episode?", "context": "CREATE TABLE table_12310814_1 (result VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(song_choice) FROM table_12310814_1 WHERE original_artist = \"Anna Nalick\"", "question": "What's the total number of songs originally performed by Anna Nalick?", "context": "CREATE TABLE table_12310814_1 (song_choice VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT song_choice FROM table_12310814_1 WHERE original_artist = \"Rickie Lee Jones\"", "question": "Which one of the songs was originally performed by Rickie Lee Jones?", "context": "CREATE TABLE table_12310814_1 (song_choice VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT original_artist FROM table_12310814_1 WHERE episode = \"Top 3\"", "question": "What's the original artist of the song performed in the top 3 episode?", "context": "CREATE TABLE table_12310814_1 (original_artist VARCHAR, episode VARCHAR)"}, {"answer": "SELECT _number_of_seats_won FROM table_123462_2 WHERE election = 1974", "question": "What is the # of seats one for the election in 1974?", "context": "CREATE TABLE table_123462_2 (_number_of_seats_won VARCHAR, election VARCHAR)"}, {"answer": "SELECT COUNT(_number_of_seats_won) FROM table_123462_2 WHERE _number_of_total_votes = 2582322", "question": "How many times was the # of total votes 2582322?", "context": "CREATE TABLE table_123462_2 (_number_of_seats_won VARCHAR, _number_of_total_votes VARCHAR)"}, {"answer": "SELECT election FROM table_123462_2 WHERE _number_of_seats_won = 65", "question": "What year was the election when the # of seats won was 65?", "context": "CREATE TABLE table_123462_2 (election VARCHAR, _number_of_seats_won VARCHAR)"}, {"answer": "SELECT COUNT(election) FROM table_123462_2 WHERE _number_of_candidates_nominated = 262", "question": "What is the election year when the # of candidates nominated was 262?", "context": "CREATE TABLE table_123462_2 (election VARCHAR, _number_of_candidates_nominated VARCHAR)"}, {"answer": "SELECT MIN(_number_of_total_votes) FROM table_123462_2", "question": "What was the lowest # of total votes?", "context": "CREATE TABLE table_123462_2 (_number_of_total_votes INTEGER)"}, {"answer": "SELECT strongs_words_compounded FROM table_1242447_1 WHERE english_spelling = \"Jonadab\"", "question": "What is the strongs words compounded when the english spelling is jonadab?", "context": "CREATE TABLE table_1242447_1 (strongs_words_compounded VARCHAR, english_spelling VARCHAR)"}, {"answer": "SELECT strongs_words_compounded FROM table_1242447_1 WHERE strongs_transliteration = \"Yowyariyb\"", "question": "What is the strong words compounded when the strongs transliteration is yowyariyb?", "context": "CREATE TABLE table_1242447_1 (strongs_words_compounded VARCHAR, strongs_transliteration VARCHAR)"}, {"answer": "SELECT english_spelling FROM table_1242447_1 WHERE strongs_transliteration = \"Y e howram\"", "question": "What is the english spelling of the word that has the strongs trasliteration of y e howram?", "context": "CREATE TABLE table_1242447_1 (english_spelling VARCHAR, strongs_transliteration VARCHAR)"}, {"answer": "SELECT strongs__number FROM table_1242447_1 WHERE english_spelling = \"Jehojakin\"", "question": "What is the strongs # of the english spelling word jehojakin?", "context": "CREATE TABLE table_1242447_1 (strongs__number VARCHAR, english_spelling VARCHAR)"}, {"answer": "SELECT strongs_transliteration FROM table_1242447_1 WHERE hebrew_word = \"\u05d9\u05d5\u05b9\u05d7\u05b8\u05e0\u05b8\u05df\"", "question": "What is the strongs transliteration of the hebrew word \u05d9\u05d5\u05b9\u05d7\u05b8\u05e0\u05b8\u05df?", "context": "CREATE TABLE table_1242447_1 (strongs_transliteration VARCHAR, hebrew_word VARCHAR)"}, {"answer": "SELECT COUNT(strongs_transliteration) FROM table_1242447_1 WHERE english_spelling = \"Jehojakin\"", "question": "How many strongs transliteration of the english spelling of the work jehojakin?", "context": "CREATE TABLE table_1242447_1 (strongs_transliteration VARCHAR, english_spelling VARCHAR)"}, {"answer": "SELECT ds_division FROM table_12485020_1 WHERE main_town = \"Kaluvanchikudy\"", "question": "Kaluvanchikudy is the main town in what DS division?", "context": "CREATE TABLE table_12485020_1 (ds_division VARCHAR, main_town VARCHAR)"}, {"answer": "SELECT ds_division FROM table_12485020_1 WHERE divisional_secretary = \"S. L. M. Haneefa\"", "question": "What DS division has S. L. M. Haneefa as the divisional secretary?", "context": "CREATE TABLE table_12485020_1 (ds_division VARCHAR, divisional_secretary VARCHAR)"}, {"answer": "SELECT ds_division FROM table_12485020_1 WHERE divisional_secretary = \"S. H. Muzammil\"", "question": "What is the name of the DS division where the divisional secretary is S. H. Muzammil?", "context": "CREATE TABLE table_12485020_1 (ds_division VARCHAR, divisional_secretary VARCHAR)"}, {"answer": "SELECT COUNT(population__region_total_) FROM table_12555835_1 WHERE year = 1947", "question": "How many figures are given for the region's total in 1947?", "context": "CREATE TABLE table_12555835_1 (population__region_total_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(population__mareeba_) FROM table_12555835_1", "question": "What was the smallest population figure for Mareeba?", "context": "CREATE TABLE table_12555835_1 (population__mareeba_ INTEGER)"}, {"answer": "SELECT COUNT(written_by) FROM table_12570759_2 WHERE us_viewers__millions_ = \"12.72\"", "question": "How many episodes were watched by 12.72 million U.S. viewers?", "context": "CREATE TABLE table_12570759_2 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_12570759_2 WHERE directed_by = \"Rob Bailey\" AND written_by = \"Pam Veasey\"", "question": "How many millions of U.S. viewers watched the episode directed by Rob Bailey and written by Pam Veasey?", "context": "CREATE TABLE table_12570759_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(immunity) FROM table_1272844_2 WHERE eliminated = \"Wanda\"", "question": "How many persons had immunity in the episode when Wanda was eliminated?", "context": "CREATE TABLE table_1272844_2 (immunity VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT episode_title FROM table_1272844_2 WHERE eliminated = \"Jenn\"", "question": "What is the name of the episode in which Jenn is eliminated?", "context": "CREATE TABLE table_1272844_2 (episode_title VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT vote FROM table_1272844_2 WHERE air_date = \"May 5, 2005\"", "question": "What was the vote tally on the episode aired May 5, 2005?", "context": "CREATE TABLE table_1272844_2 (vote VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT reward FROM table_1272844_2 WHERE finish = \"3rd voted Out Day 8\"", "question": "Who received the reward on the episode where the finish was \"3rd voted out day 8\"?", "context": "CREATE TABLE table_1272844_2 (reward VARCHAR, finish VARCHAR)"}, {"answer": "SELECT vote FROM table_1272844_2 WHERE finish = \"10th voted Out 3rd Jury Member Day 30\"", "question": "What was the vote on the episode where the finish was \"10th voted out 3rd jury member day 30\"?", "context": "CREATE TABLE table_1272844_2 (vote VARCHAR, finish VARCHAR)"}, {"answer": "SELECT COUNT(vote) FROM table_1272844_2 WHERE finish = \"6th voted Out Day 12\"", "question": "How many votes were taken when the outcome was \"6th voted out day 12\"?", "context": "CREATE TABLE table_1272844_2 (vote VARCHAR, finish VARCHAR)"}, {"answer": "SELECT short_stem FROM table_12784134_24 WHERE imperfect_stem = \"garbitzen\"", "question": "What is the short stem for garbitzen?", "context": "CREATE TABLE table_12784134_24 (short_stem VARCHAR, imperfect_stem VARCHAR)"}, {"answer": "SELECT perfect_stem FROM table_12784134_24 WHERE imperfect_stem = \"pozten\"", "question": "What is the perfect stem for pozten?", "context": "CREATE TABLE table_12784134_24 (perfect_stem VARCHAR, imperfect_stem VARCHAR)"}, {"answer": "SELECT COUNT(perfect_stem) FROM table_12784134_24 WHERE short_stem = \"jo\"", "question": "Name the perfect stem for jo", "context": "CREATE TABLE table_12784134_24 (perfect_stem VARCHAR, short_stem VARCHAR)"}, {"answer": "SELECT COUNT(future_stem) FROM table_12784134_24 WHERE perfect_stem = \"poztu\"", "question": "What is the number for future stem for poztu?", "context": "CREATE TABLE table_12784134_24 (future_stem VARCHAR, perfect_stem VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_12792876_4 WHERE points_against = \"430\"", "question": "Name the try bonus of points against at 430", "context": "CREATE TABLE table_12792876_4 (try_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_12792876_4 WHERE points = \"96\"", "question": "Name the losing bonus of 96 points", "context": "CREATE TABLE table_12792876_4 (losing_bonus VARCHAR, points VARCHAR)"}, {"answer": "SELECT points_against FROM table_12792876_4 WHERE points = \"51\"", "question": "Name the points against for 51 points", "context": "CREATE TABLE table_12792876_4 (points_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT tries_against FROM table_12792876_4 WHERE points = \"87\"", "question": "Name the tries against for 87 points", "context": "CREATE TABLE table_12792876_4 (tries_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(tries_against) FROM table_12792876_4 WHERE \"drawn\" = \"drawn\"", "question": "Name the tries against for drawn", "context": "CREATE TABLE table_12792876_4 (tries_against VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_12792876_4 WHERE tries_for = \"27\"", "question": "Name the losing bonus for 27", "context": "CREATE TABLE table_12792876_4 (losing_bonus VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT rear_sight FROM table_12834315_1 WHERE colt_model_no = \"735\"", "question": "What is the rear sight in the Cole model no. 735?", "context": "CREATE TABLE table_12834315_1 (rear_sight VARCHAR, colt_model_no VARCHAR)"}, {"answer": "SELECT colt_model_no FROM table_12834315_1 WHERE bayonet_lug = \"No\" AND stock = \"2nd Generation\" AND case_deflector = \"No\" AND name = \"GAU-5A/A\"", "question": "What are the Colt model numbers of the models named GAU-5A/A, with no bayonet lug, no case deflector and stock of 2nd generation? ", "context": "CREATE TABLE table_12834315_1 (colt_model_no VARCHAR, name VARCHAR, case_deflector VARCHAR, bayonet_lug VARCHAR, stock VARCHAR)"}, {"answer": "SELECT muzzle_device FROM table_12834315_1 WHERE hand_guards = \"Round\"", "question": "What's the type of muzzle devices on the models with round hand guards?", "context": "CREATE TABLE table_12834315_1 (muzzle_device VARCHAR, hand_guards VARCHAR)"}, {"answer": "SELECT winners_from_previous_round FROM table_1281200_1 WHERE clubs_involved = 8", "question": "Clubs involved is 8, what number would you find from winners from previous round?", "context": "CREATE TABLE table_1281200_1 (winners_from_previous_round VARCHAR, clubs_involved VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_1281200_1 WHERE round = \"Third round\"", "question": "From the round name of third round; what would the new entries this round that would be found?", "context": "CREATE TABLE table_1281200_1 (new_entries_this_round VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(clubs_remaining) FROM table_1281200_1 WHERE new_entries_this_round = \"8\"", "question": "When looking at new entries this round and seeing 8; what number in total is there for clubs remaining?", "context": "CREATE TABLE table_1281200_1 (clubs_remaining VARCHAR, new_entries_this_round VARCHAR)"}, {"answer": "SELECT winners_from_previous_round FROM table_1281200_1 WHERE phase = \"First phase\" AND clubs_involved = 16", "question": "During the first phase portion of phase and having 16 clubs involved; what would you find for the winners from previous round?", "context": "CREATE TABLE table_1281200_1 (winners_from_previous_round VARCHAR, phase VARCHAR, clubs_involved VARCHAR)"}, {"answer": "SELECT phase FROM table_1281200_1 WHERE new_entries_this_round = \"12\"", "question": "The new entries this round was shown to be 12, in which phase would you find this?", "context": "CREATE TABLE table_1281200_1 (phase VARCHAR, new_entries_this_round VARCHAR)"}, {"answer": "SELECT submitting_country FROM table_12842068_1 WHERE original_title = \"Miehen ty\u00f6\"", "question": "What country submitted miehen ty\u00f6?", "context": "CREATE TABLE table_12842068_1 (submitting_country VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_12842068_1 WHERE submitting_country = \"Lebanon\"", "question": "What was the title of the movie from lebanon?", "context": "CREATE TABLE table_12842068_1 (film_title_used_in_nomination VARCHAR, submitting_country VARCHAR)"}, {"answer": "SELECT submitting_country FROM table_12842068_1 WHERE film_title_used_in_nomination = \"The Orphanage\"", "question": "What country submitted the movie the orphanage?", "context": "CREATE TABLE table_12842068_1 (submitting_country VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT MAX(first_season) FROM table_12896884_1 WHERE institution = \"University of Saskatchewan\"", "question": "What year did University of Saskatchewan have their first season?", "context": "CREATE TABLE table_12896884_1 (first_season INTEGER, institution VARCHAR)"}, {"answer": "SELECT football_stadium FROM table_12896884_1 WHERE enrollment = 43579", "question": "What football stadium has a school enrollment of 43579?", "context": "CREATE TABLE table_12896884_1 (football_stadium VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT COUNT(endowment) FROM table_12896884_1 WHERE football_stadium = \"Mosaic Stadium\"", "question": "How many endowments does Mosaic Stadium have?", "context": "CREATE TABLE table_12896884_1 (endowment VARCHAR, football_stadium VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_12896884_1 WHERE football_stadium = \"Foote Field\"", "question": "What is the enrollment for Foote Field?", "context": "CREATE TABLE table_12896884_1 (enrollment INTEGER, football_stadium VARCHAR)"}, {"answer": "SELECT COUNT(city) FROM table_12896884_1 WHERE enrollment = 19082", "question": "How many cities have an enrollment of 19082?", "context": "CREATE TABLE table_12896884_1 (city VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_13282157_3 WHERE country = \"South Korea\"", "question": "Name the number of points for south korea", "context": "CREATE TABLE table_13282157_3 (points VARCHAR, country VARCHAR)"}, {"answer": "SELECT dismissals FROM table_13337302_16 WHERE player = \"Peter McGlashan\"", "question": "How many dismissals did the player Peter McGlashan have?", "context": "CREATE TABLE table_13337302_16 (dismissals VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(stumpings) FROM table_13337302_16 WHERE player = \"Tim Latham\"", "question": "How many stumpings did the player Tim Latham have?", "context": "CREATE TABLE table_13337302_16 (stumpings INTEGER, player VARCHAR)"}, {"answer": "SELECT rank FROM table_13337302_16 WHERE dismissals = 4", "question": "List the ranks of all dismissals with a value of 4", "context": "CREATE TABLE table_13337302_16 (rank VARCHAR, dismissals VARCHAR)"}, {"answer": "SELECT COUNT(innings) FROM table_13337302_16 WHERE catches = 2 AND stumpings = 0", "question": "How many innings had a total of 2 catches and 0 stumpings?", "context": "CREATE TABLE table_13337302_16 (innings VARCHAR, catches VARCHAR, stumpings VARCHAR)"}, {"answer": "SELECT district FROM table_1341395_36 WHERE incumbent = \"Steve Chabot\"", "question": "In what district was the incumbent Steve Chabot? ", "context": "CREATE TABLE table_1341395_36 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341395_36 WHERE incumbent = \"Deborah Pryce\"", "question": "Incumbent Deborah Pryce was a member of what party? ", "context": "CREATE TABLE table_1341395_36 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341453_12 WHERE incumbent = \"Saxby Chambliss\"", "question": "Who were the candidates in the election where Saxby Chambliss was the incumbent?", "context": "CREATE TABLE table_1341453_12 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341453_20 WHERE incumbent = \"William J. Jefferson\"", "question": "What party does William J. Jefferson?", "context": "CREATE TABLE table_1341453_20 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1341453_20 WHERE incumbent = \"Jim McCrery\"", "question": "What were the results for incumbent Jim McCrery?", "context": "CREATE TABLE table_1341453_20 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341453_20 WHERE first_elected = 1980", "question": "How many candidates were elected first in 1980?", "context": "CREATE TABLE table_1341453_20 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_1341453_20 WHERE incumbent = \"John Cooksey\"", "question": "What district does John Cooksey represent?", "context": "CREATE TABLE table_1341453_20 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341453_15 WHERE incumbent = \"John Porter\"", "question": "What district was John Porter elected in?", "context": "CREATE TABLE table_1341453_15 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1341453_15 WHERE district = \"Illinois 7\"", "question": "What was the result in Illinois 7?", "context": "CREATE TABLE table_1341453_15 (results VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341453_15 WHERE incumbent = \"Jerry Costello\"", "question": "Who were the candidates in the district where Jerry Costello won?", "context": "CREATE TABLE table_1341453_15 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(results) FROM table_1341453_45 WHERE incumbent = \"Ruben Hinojosa\"", "question": "How many times did incumbent ruben hinojosa get elected?", "context": "CREATE TABLE table_1341453_45 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341453_45 WHERE incumbent = \"Ruben Hinojosa\"", "question": "What district is ruben hinojosa from?", "context": "CREATE TABLE table_1341453_45 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341453_45 WHERE incumbent = \"Nick Lampson\"", "question": "What district is nick lampson from?", "context": "CREATE TABLE table_1341453_45 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341522_50 WHERE incumbent = \"Jim McDermott\"", "question": "What year was incumbent jim mcdermott first elected?", "context": "CREATE TABLE table_1341522_50 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT status FROM table_1341522_50 WHERE opponent = \"Doc Hastings (R) 53.3% Jay Inslee (D) 46.7%\"", "question": "What was the result of the election of doc hastings (r) 53.3% jay inslee (d) 46.7%", "context": "CREATE TABLE table_1341522_50 (status VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT district FROM table_1341568_39 WHERE incumbent = \"Curt Weldon\"", "question": "What districts does incumbent Curt Weldon hold?", "context": "CREATE TABLE table_1341568_39 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT champions FROM table_13416000_3 WHERE first_driver_s_ = \"Hiroki Yoshimoto ( 2005 )\"", "question": "How many champions were there when the first driver was hiroki yoshimoto ( 2005 )?", "context": "CREATE TABLE table_13416000_3 (champions VARCHAR, first_driver_s_ VARCHAR)"}, {"answer": "SELECT COUNT(first_driver_s_) FROM table_13416000_3 WHERE country = \"Canada\"", "question": "How many entries are there for first driver for Canada?", "context": "CREATE TABLE table_13416000_3 (first_driver_s_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341604_11 WHERE district = \"Georgia 8\"", "question": "Name the candidates for georgia 8", "context": "CREATE TABLE table_1341604_11 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341604_11 WHERE district = \"Georgia 4\"", "question": "Name the party of georgia 4", "context": "CREATE TABLE table_1341604_11 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341604_11 WHERE incumbent = \"Jack Thomas Brinkley\"", "question": "Name the party for jack thomas brinkley", "context": "CREATE TABLE table_1341604_11 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341604_11 WHERE incumbent = \"Larry McDonald\"", "question": "Name the districk for larry mcdonald", "context": "CREATE TABLE table_1341604_11 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341604_10 WHERE district = \"Florida 7\"", "question": "what's the\u00a0result\u00a0with\u00a0district being florida 7", "context": "CREATE TABLE table_1341604_10 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341604_10 WHERE result = \"New seat Democratic gain\"", "question": "what's the\u00a0district with\u00a0result\u00a0being new seat democratic gain", "context": "CREATE TABLE table_1341604_10 (district VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341604_10 WHERE result = \"New seat Democratic gain\"", "question": " how many\u00a0candidates\u00a0with\u00a0result\u00a0being new seat democratic gain", "context": "CREATE TABLE table_1341604_10 (candidates VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1341604_10 WHERE district = \"Florida 14\"", "question": " how many\u00a0result\u00a0with\u00a0district being florida 14", "context": "CREATE TABLE table_1341604_10 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341604_10 WHERE district = \"Florida 7\"", "question": "what's the\u00a0first elected\u00a0with\u00a0district\u00a0being florida 7", "context": "CREATE TABLE table_1341604_10 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341604_10 WHERE incumbent = \"Don Fuqua\"", "question": "who is the the\u00a0candidates\u00a0with\u00a0incumbent\u00a0being don fuqua", "context": "CREATE TABLE table_1341604_10 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341640_11 WHERE first_elected = 1972", "question": "How many candidates were first elected in 1972?", "context": "CREATE TABLE table_1341640_11 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1341640_11 WHERE candidates = \"Newt Gingrich (R) 59.1% Dock H. Davis (D) 40.9%\"", "question": "What is the party with the candidates newt gingrich (r) 59.1% dock h. davis (d) 40.9%?", "context": "CREATE TABLE table_1341640_11 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341640_11 WHERE district = \"Georgia 1\"", "question": "What is the earliest first elected for district georgia 1?", "context": "CREATE TABLE table_1341640_11 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341640_11 WHERE candidates = \"Newt Gingrich (R) 59.1% Dock H. Davis (D) 40.9%\"", "question": "How many parties were for candidates newt gingrich (r) 59.1% dock h. davis (d) 40.9%?", "context": "CREATE TABLE table_1341640_11 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341640_11 WHERE district = \"Georgia 6\"", "question": "How many incumbents were for district georgia 6?", "context": "CREATE TABLE table_1341640_11 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341672_14 WHERE incumbent = \"Tim Lee Hall\"", "question": "Name the district for tim lee hall", "context": "CREATE TABLE table_1341672_14 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1341672_14 WHERE incumbent = \"Phil Crane\"", "question": "Name the number of first elected for phil crane", "context": "CREATE TABLE table_1341672_14 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341672_14 WHERE incumbent = \"Tim Lee Hall\"", "question": "Name the party for tim lee hall", "context": "CREATE TABLE table_1341672_14 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341672_14 WHERE district = \"Illinois 15\"", "question": "Name the candidates for illinois 15", "context": "CREATE TABLE table_1341672_14 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341672_14 WHERE incumbent = \"Abner J. Mikva\"", "question": "Name the first elected for abner j. mikva", "context": "CREATE TABLE table_1341672_14 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341672_14 WHERE first_elected = 1944", "question": "Name the total number of incumbent for first elected of 1944", "context": "CREATE TABLE table_1341672_14 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341930_38 WHERE incumbent = \"Alvin Bush\"", "question": "How many incumbents come from alvin bush's district?", "context": "CREATE TABLE table_1341930_38 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342218_17 WHERE district = \"Kentucky 4\"", "question": "Who were the candidates in the Kentucky 4 voting district?", "context": "CREATE TABLE table_1342218_17 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342218_17 WHERE incumbent = \"Noble Jones Gregory\"", "question": "How many times was incumbent Noble Jones Gregory first elected?", "context": "CREATE TABLE table_1342218_17 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342218_17 WHERE district = \"Kentucky 2\"", "question": "What was the result in the voting district Kentucky 2?", "context": "CREATE TABLE table_1342218_17 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342218_17 WHERE incumbent = \"Brent Spence\"", "question": "What was the result of the election incumbent Brent Spence took place in?", "context": "CREATE TABLE table_1342218_17 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342218_17 WHERE district = \"Kentucky 5\"", "question": "Which party won in the election in voting district Kentucky 5?", "context": "CREATE TABLE table_1342218_17 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342218_17 WHERE party = \"Democratic\" AND incumbent = \"Frank Chelf\"", "question": "List all candidates in the democratic party where the election had the incumbent Frank Chelf running.", "context": "CREATE TABLE table_1342218_17 (candidates VARCHAR, party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342233_24 WHERE incumbent = \"Jamie L. Whitten\"", "question": "Which district is jamie l. whitten from?", "context": "CREATE TABLE table_1342233_24 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342233_24 WHERE district = \"Mississippi 6\"", "question": "What candidates are from mississippi 6?", "context": "CREATE TABLE table_1342233_24 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342233_24 WHERE first_elected = 1941", "question": "What is the incumbent from 1941?", "context": "CREATE TABLE table_1342233_24 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_1342233_24 WHERE incumbent = \"W. Arthur Winstead\"", "question": "What is the result for w. arthur winstead?", "context": "CREATE TABLE table_1342233_24 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342233_5 WHERE district = \"Arkansas 4\"", "question": "How many were first elected in the Arkansas 4 district?", "context": "CREATE TABLE table_1342233_5 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342233_5 WHERE incumbent = \"William F. Norrell\"", "question": "How many districts had William F. Norrell as the incumbent?", "context": "CREATE TABLE table_1342233_5 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342233_5 WHERE first_elected > 1939.0", "question": "Which party has a first elected number bigger than 1939.0?", "context": "CREATE TABLE table_1342233_5 (party VARCHAR, first_elected INTEGER)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1342233_5 WHERE district = \"Arkansas 3\"", "question": "How many incumbents had a district of Arkansas 3?", "context": "CREATE TABLE table_1342233_5 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342249_5 WHERE district = \"Arkansas 5\"", "question": "What party did the incumbent from the Arkansas 5 district belong to? ", "context": "CREATE TABLE table_1342249_5 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342249_5 WHERE district = \"Arkansas 6\"", "question": "What party did the incumbent of the Arkansas 6 district belong to? ", "context": "CREATE TABLE table_1342249_5 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1342249_5", "question": "What is the earliest years any of the incumbents were first elected? ", "context": "CREATE TABLE table_1342249_5 (first_elected INTEGER)"}, {"answer": "SELECT party FROM table_1342249_5 WHERE incumbent = \"Brooks Hays\"", "question": "What party did incumbent Brooks Hays belong to? ", "context": "CREATE TABLE table_1342249_5 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342338_3 WHERE district = \"Alabama 1\"", "question": "What kind of party is the district in Alabama 1?", "context": "CREATE TABLE table_1342338_3 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342338_3 WHERE result = \"Lost renomination\"", "question": "How many in lost renomination results were elected first?", "context": "CREATE TABLE table_1342338_3 (first_elected VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342338_3 WHERE result = \"Lost renomination\"", "question": "How many in total were elected first in lost renomination?", "context": "CREATE TABLE table_1342338_3 (first_elected VARCHAR, result VARCHAR)"}, {"answer": "SELECT district FROM table_1342338_5 WHERE incumbent = \"John E. Miller\"", "question": "In what district was John E. Miller the incumbent? ", "context": "CREATE TABLE table_1342338_5 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342338_5 WHERE incumbent = \"David Delano Glover\"", "question": "In how many districts was the incumbent David Delano Glover? ", "context": "CREATE TABLE table_1342338_5 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342338_5 WHERE incumbent = \"Claude Fuller\"", "question": "What year was incumbent Claude Fuller first elected? ", "context": "CREATE TABLE table_1342338_5 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342338_5 WHERE incumbent = \"Claude Fuller\"", "question": "Who ran in the election where Claude Fuller was the incumbent? ", "context": "CREATE TABLE table_1342338_5 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342359_39 WHERE incumbent = \"Thomas S. McMillan\"", "question": "What is the result for thomas s. mcmillan?", "context": "CREATE TABLE table_1342359_39 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342359_39 WHERE district = \"South Carolina 1\"", "question": "Name the candidate for south carolina 1?", "context": "CREATE TABLE table_1342359_39 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342359_39 WHERE district = \"South Carolina 3\"", "question": "What is the party for south carolina 3?", "context": "CREATE TABLE table_1342359_39 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342359_39 WHERE district = \"South Carolina 4\"", "question": "What is the result for south carolina 4?", "context": "CREATE TABLE table_1342359_39 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1342359_5 WHERE incumbent = \"Richard J. Welch\"", "question": "what's the\u00a0district with\u00a0incumbent\u00a0being richard j. welch", "context": "CREATE TABLE table_1342359_5 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342359_5 WHERE party = \"Democratic\"", "question": "what's the\u00a0districtwith\u00a0party\u00a0being democratic", "context": "CREATE TABLE table_1342359_5 (district VARCHAR, party VARCHAR)"}, {"answer": "SELECT district FROM table_1342359_5 WHERE candidates = \"Harry Lane Englebright (R) Unopposed\"", "question": "what's the\u00a0district with\u00a0candidates\u00a0being harry lane englebright (r) unopposed", "context": "CREATE TABLE table_1342359_5 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342359_5 WHERE district = \"California 7\"", "question": " how many\u00a0candidates\u00a0with\u00a0district being california 7", "context": "CREATE TABLE table_1342359_5 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342359_5 WHERE incumbent = \"William E. Evans\"", "question": "what's the\u00a0party\u00a0with\u00a0incumbent\u00a0being william e. evans", "context": "CREATE TABLE table_1342359_5 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342370_23 WHERE incumbent = \"William Madison Whittington\"", "question": "What was the result of the election featuring william madison whittington?", "context": "CREATE TABLE table_1342370_23 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1342370_39 WHERE district = \"South Carolina 5\"", "question": "what is the total number of results where the district is south carolina 5?", "context": "CREATE TABLE table_1342370_39 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342370_39 WHERE district = \"South Carolina 2\"", "question": "who is the candidate in district south carolina 2?", "context": "CREATE TABLE table_1342370_39 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342370_39 WHERE incumbent = \"William Francis Stevenson\"", "question": "what year was william francis stevenson first elected?", "context": "CREATE TABLE table_1342370_39 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342451_13 WHERE incumbent = \"Burton E. Sweet\"", "question": "What political party for burton e. sweet?", "context": "CREATE TABLE table_1342451_13 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_13464416_7 WHERE record = \"14-38\"", "question": "how many locations have a record of 14-38?", "context": "CREATE TABLE table_13464416_7 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT written_by FROM table_13477468_3 WHERE us_viewers__millions_ = \"1.83\"", "question": "Who wrote the episode that received 1.83 million U.S. viewers?", "context": "CREATE TABLE table_13477468_3 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_13477468_3 WHERE directed_by = \"Jeff Melman\"", "question": "What is the original air date of the episode directed by Jeff Melman?", "context": "CREATE TABLE table_13477468_3 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT launched FROM table_13537940_1 WHERE name = \"Driade\"", "question": "Which launch date involved the Driade?", "context": "CREATE TABLE table_13537940_1 (launched VARCHAR, name VARCHAR)"}, {"answer": "SELECT median_household_income FROM table_1356555_2 WHERE county = \"Sacramento\"", "question": "What is the median household income of sacramento?", "context": "CREATE TABLE table_1356555_2 (median_household_income VARCHAR, county VARCHAR)"}, {"answer": "SELECT per_capita_income FROM table_1356555_2 WHERE county = \"Shasta\"", "question": "What is the per capita income of shasta?", "context": "CREATE TABLE table_1356555_2 (per_capita_income VARCHAR, county VARCHAR)"}, {"answer": "SELECT median_family_income FROM table_1356555_2 WHERE county = \"Riverside\"", "question": "Name the median family income for riverside", "context": "CREATE TABLE table_1356555_2 (median_family_income VARCHAR, county VARCHAR)"}, {"answer": "SELECT median_household_income FROM table_1356555_2 WHERE county = \"Butte\"", "question": "What is the median household income of butte?", "context": "CREATE TABLE table_1356555_2 (median_household_income VARCHAR, county VARCHAR)"}, {"answer": "SELECT club FROM table_13564702_4 WHERE points_against = \"239\"", "question": "What club got 239 points against?", "context": "CREATE TABLE table_13564702_4 (club VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points FROM table_13564702_4 WHERE \"lost\" = \"lost\"", "question": "What is the value of the points column when the value of the column lost is \"lost\"", "context": "CREATE TABLE table_13564702_4 (points VARCHAR)"}, {"answer": "SELECT tries_against FROM table_13564702_4 WHERE tries_for = \"62\"", "question": "How many tries against got the club with 62 tries for?", "context": "CREATE TABLE table_13564702_4 (tries_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT group FROM table_1358608_2 WHERE weight__kg_ = \"56.5\"", "question": "What group info is available for the 56.5 kg weight?", "context": "CREATE TABLE table_1358608_2 (group VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT result FROM table_1358608_2 WHERE race = \"Railway Stakes\"", "question": "What was the result for the railway stakes race?", "context": "CREATE TABLE table_1358608_2 (result VARCHAR, race VARCHAR)"}, {"answer": "SELECT district FROM table_13618584_2 WHERE incumbent = \"Terry Kilgore\"", "question": "What district is incument terry kilgore from?", "context": "CREATE TABLE table_13618584_2 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(elected) FROM table_13618584_2 WHERE incumbent = \"Onzlee Ware\"", "question": "How many times was incumbent onzlee ware elected?", "context": "CREATE TABLE table_13618584_2 (elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(2007 AS _result) FROM table_13618584_2 WHERE district = \"19th\"", "question": "How many election results are there from the 19th district?", "context": "CREATE TABLE table_13618584_2 (district VARCHAR)"}, {"answer": "SELECT MAX(elected) FROM table_13618584_2 WHERE district = \"14th\"", "question": "What was the last year someone was elected to the 14th district?", "context": "CREATE TABLE table_13618584_2 (elected INTEGER, district VARCHAR)"}, {"answer": "SELECT score FROM table_13619053_4 WHERE team = \"San Antonio\"", "question": "What was the score against san antonio?", "context": "CREATE TABLE table_13619053_4 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_13619053_4 WHERE record = \"1-3\"", "question": "How many games did the team play when they were 1-3?", "context": "CREATE TABLE table_13619053_4 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT team FROM table_13619135_6 WHERE game = 53", "question": "Who was the opposing team for game 53?", "context": "CREATE TABLE table_13619135_6 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_13619135_6 WHERE record = \"26-21\"", "question": "How many games were played when the record was 26-21?", "context": "CREATE TABLE table_13619135_6 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_13619135_7 WHERE team = \"@ Minnesota\"", "question": "How many people had the high assists @ minnesota?", "context": "CREATE TABLE table_13619135_7 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_13619135_7 WHERE team = \"Charlotte\"", "question": "Who was the high rebounder against charlotte?", "context": "CREATE TABLE table_13619135_7 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_13619135_7 WHERE team = \"New Jersey\"", "question": "Where did the team play and what was the attendance against new jersey?", "context": "CREATE TABLE table_13619135_7 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_13619135_7 WHERE location_attendance = \"Staples Center 18,176\"", "question": "What day was the attendance at the staples center 18,176?", "context": "CREATE TABLE table_13619135_7 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT turing_complete FROM table_13636_1 WHERE numeral_system = \"Decimal\"", "question": "what's the\u00a0turing complete\u00a0with\u00a0numeral system\u00a0being decimal", "context": "CREATE TABLE table_13636_1 (turing_complete VARCHAR, numeral_system VARCHAR)"}, {"answer": "SELECT computing_mechanism FROM table_13636_1 WHERE name = \"Atanasoff\u2013Berry Computer (US)\"", "question": "what's the\u00a0computing mechanbeingm\u00a0with\u00a0name\u00a0being atanasoff\u2013berry computer (us)", "context": "CREATE TABLE table_13636_1 (computing_mechanism VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_13636_1 WHERE first_operational = \"March 1945\"", "question": "what's the\u00a0name\u00a0with\u00a0first operational\u00a0being march 1945", "context": "CREATE TABLE table_13636_1 (name VARCHAR, first_operational VARCHAR)"}, {"answer": "SELECT computing_mechanism FROM table_13636_1 WHERE first_operational = \"February 1944\"", "question": "what's the\u00a0computing mechanbeingm\u00a0with\u00a0first operational\u00a0being february 1944", "context": "CREATE TABLE table_13636_1 (computing_mechanism VARCHAR, first_operational VARCHAR)"}, {"answer": "SELECT turing_complete FROM table_13636_1 WHERE name = \"Atanasoff\u2013Berry Computer (US)\"", "question": "what's the\u00a0turing complete\u00a0with\u00a0name\u00a0being atanasoff\u2013berry computer (us)", "context": "CREATE TABLE table_13636_1 (turing_complete VARCHAR, name VARCHAR)"}, {"answer": "SELECT first_operational FROM table_13636_1 WHERE programming = \"Not programmable\u2014single purpose\"", "question": "what's the\u00a0first operational\u00a0with\u00a0programming\u00a0being not programmable\u2014single purpose", "context": "CREATE TABLE table_13636_1 (first_operational VARCHAR, programming VARCHAR)"}, {"answer": "SELECT rank FROM table_13677808_1 WHERE security = \"5.5\"", "question": "What country has a 5.5 mark for security?", "context": "CREATE TABLE table_13677808_1 (rank VARCHAR, security VARCHAR)"}, {"answer": "SELECT COUNT(technology) FROM table_13677808_1 WHERE rank = \"Denmark\"", "question": "How many times is denmark ranked in technology?", "context": "CREATE TABLE table_13677808_1 (technology VARCHAR, rank VARCHAR)"}, {"answer": "SELECT environment FROM table_13677808_1 WHERE overall__average_ = \"4.7\"", "question": "What is the environment rating of the country with an overall average rating of 4.7?", "context": "CREATE TABLE table_13677808_1 (environment VARCHAR, overall__average_ VARCHAR)"}, {"answer": "SELECT migration FROM table_13677808_1 WHERE trade = \"5.7\"", "question": "What is the migration rating when trade is 5.7?", "context": "CREATE TABLE table_13677808_1 (migration VARCHAR, trade VARCHAR)"}, {"answer": "SELECT MIN(pf) FROM table_1370559_1", "question": "What is the lowest PF?", "context": "CREATE TABLE table_1370559_1 (pf INTEGER)"}, {"answer": "SELECT pa FROM table_1370559_1 WHERE pf = 77", "question": "What is the PA when the PF is 77?", "context": "CREATE TABLE table_1370559_1 (pa VARCHAR, pf VARCHAR)"}, {"answer": "SELECT won FROM table_13758945_3 WHERE try_bonus = \"8\"", "question": "what's the\u00a0won\u00a0with\u00a0try bonus\u00a0being 8", "context": "CREATE TABLE table_13758945_3 (won VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT club FROM table_13758945_3 WHERE losing_bonus = \"1\"", "question": "what's the\u00a0club\u00a0with\u00a0losing bonus\u00a0being 1", "context": "CREATE TABLE table_13758945_3 (club VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT COUNT(losing_bonus) FROM table_13758945_3 WHERE won = \"10\" AND points_against = \"283\"", "question": " how many\u00a0losing bonus\u00a0with\u00a0won\u00a0being 10 and\u00a0points against\u00a0being 283", "context": "CREATE TABLE table_13758945_3 (losing_bonus VARCHAR, won VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT COUNT(points_against) FROM table_13758945_3 WHERE tries_for = \"43\"", "question": " how many\u00a0points against\u00a0with\u00a0tries for\u00a0being 43", "context": "CREATE TABLE table_13758945_3 (points_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT points FROM table_13758945_3 WHERE tries_for = \"64\"", "question": "what's the\u00a0points\u00a0with\u00a0tries for\u00a0being 64", "context": "CREATE TABLE table_13758945_3 (points VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT won FROM table_13758945_3 WHERE points_against = \"597\"", "question": "what's the\u00a0won\u00a0with\u00a0points against\u00a0being 597", "context": "CREATE TABLE table_13758945_3 (won VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT type FROM table_13770460_3 WHERE transfer_fee = \"\u20ac20M\"", "question": "What is the type of the player whose transfer fee was \u20ac20m?", "context": "CREATE TABLE table_13770460_3 (type VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT eu FROM table_13770460_3 WHERE country = \"ESp\"", "question": "What is the EU status of ESP?", "context": "CREATE TABLE table_13770460_3 (eu VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUnT AS n FROM table_13770460_3 WHERE ends = \"1 year\"", "question": "How many numbers are ending in 1 year?", "context": "CREATE TABLE table_13770460_3 (COUnT VARCHAR, ends VARCHAR)"}, {"answer": "SELECT song_title FROM table_13804825_2 WHERE artist = \"Billy Vaughn\"", "question": "what is the nme of the song performed by billy vaughn?", "context": "CREATE TABLE table_13804825_2 (song_title VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_13805773_2 WHERE artist = \"Ray Adams\"", "question": "What is highest place reached by artist Ray Adams?", "context": "CREATE TABLE table_13805773_2 (position INTEGER, artist VARCHAR)"}, {"answer": "SELECT song_title FROM table_13805773_2 WHERE points = 259", "question": "What is the title of the song that received 259 points?", "context": "CREATE TABLE table_13805773_2 (song_title VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(per_lift) FROM table_13950065_1", "question": "how heavy is the  maximum", "context": "CREATE TABLE table_13950065_1 (per_lift INTEGER)"}, {"answer": "SELECT COUNT(other_programming_sources) FROM table_1397655_1 WHERE year_acquired = 1997", "question": "how many channels were gained in 1997", "context": "CREATE TABLE table_1397655_1 (other_programming_sources VARCHAR, year_acquired VARCHAR)"}, {"answer": "SELECT COUNT(year_acquired) FROM table_1397655_1 WHERE station = \"CHAN\"", "question": "how any were gained as the chan", "context": "CREATE TABLE table_1397655_1 (year_acquired VARCHAR, station VARCHAR)"}, {"answer": "SELECT MIN(year_acquired) FROM table_1397655_1 WHERE station = \"CITV\"", "question": "how many is the minimum for citv", "context": "CREATE TABLE table_1397655_1 (year_acquired INTEGER, station VARCHAR)"}, {"answer": "SELECT city FROM table_1397655_1 WHERE station = \"CITV\"", "question": "where is citv located", "context": "CREATE TABLE table_1397655_1 (city VARCHAR, station VARCHAR)"}, {"answer": "SELECT station FROM table_1397655_1 WHERE city = \"Edmonton\"", "question": "which station is located in edmonton", "context": "CREATE TABLE table_1397655_1 (station VARCHAR, city VARCHAR)"}, {"answer": "SELECT outcome FROM table_1399994_5 WHERE year = \"1989\"", "question": "What was the outcome for the match in 1989?", "context": "CREATE TABLE table_1399994_5 (outcome VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_1399994_5 WHERE opponents = \"Claudia Kohde-Kilsch Eva Pfaff\"", "question": "How many locations hosted Claudia Kohde-Kilsch Eva Pfaff?", "context": "CREATE TABLE table_1399994_5 (location VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT opponents FROM table_1399994_5 WHERE year = \"1984\"", "question": "Who were all of the opponents in 1984?", "context": "CREATE TABLE table_1399994_5 (opponents VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(partner) FROM table_1399994_5 WHERE year = \"1988\"", "question": "How many partners were there in 1988?", "context": "CREATE TABLE table_1399994_5 (partner VARCHAR, year VARCHAR)"}, {"answer": "SELECT height FROM table_14038363_1 WHERE player = \"Maksim Botin\"", "question": "How tall is Maksim Botin? ", "context": "CREATE TABLE table_14038363_1 (height VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_14038363_1 WHERE player = \"Maksim Botin\"", "question": "What is Maksim Botin's position? ", "context": "CREATE TABLE table_14038363_1 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_14038363_1 WHERE player = \"Roman Bragin\"", "question": "What is Roman Bragin's position? ", "context": "CREATE TABLE table_14038363_1 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_14038363_1 WHERE player = \"Teodor Salparov\"", "question": "How many position does Teodor Salparov play on? ", "context": "CREATE TABLE table_14038363_1 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_14181578_1 WHERE goals_for_against = \"8-5\"", "question": "what is the minimum\u00a0points\u00a0with\u00a0goals for/against\u00a0being 8-5", "context": "CREATE TABLE table_14181578_1 (points INTEGER, goals_for_against VARCHAR)"}, {"answer": "SELECT w_l_d FROM table_14181578_1 WHERE position = 1", "question": "what's the\u00a0w-l-d\u00a0with\u00a0position\u00a0being 1", "context": "CREATE TABLE table_14181578_1 (w_l_d VARCHAR, position VARCHAR)"}, {"answer": "SELECT club__city_town_ FROM table_14181578_1 WHERE goals_for_against = \"14-2\"", "question": "who is the the\u00a0club (city/town)\u00a0with\u00a0goals for/against\u00a0being 14-2", "context": "CREATE TABLE table_14181578_1 (club__city_town_ VARCHAR, goals_for_against VARCHAR)"}, {"answer": "SELECT goals_for_against FROM table_14181578_1 WHERE w_l_d = \"3-1-1\"", "question": "what's the\u00a0goals for/against\u00a0with\u00a0w-l-d\u00a0being 3-1-1", "context": "CREATE TABLE table_14181578_1 (goals_for_against VARCHAR, w_l_d VARCHAR)"}, {"answer": "SELECT MIN(games_played) FROM table_14181578_1 WHERE goals_for_against = \"7-5\"", "question": "what is the minimum\u00a0games played\u00a0with\u00a0goals for/against\u00a0being 7-5", "context": "CREATE TABLE table_14181578_1 (games_played INTEGER, goals_for_against VARCHAR)"}, {"answer": "SELECT nationality FROM table_14209245_9 WHERE college_junior_club_team__league_ = \"Seattle Thunderbirds (WHL)\"", "question": "What is the nationality of the player whose college/junior/club team (league) is Seattle Thunderbirds (WHL)?", "context": "CREATE TABLE table_14209245_9 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_14209245_9 WHERE pick__number = \"130\"", "question": "What is the college/junior/club team (league) of the player who was pick number 130?", "context": "CREATE TABLE table_14209245_9 (college_junior_club_team__league_ VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT pick__number FROM table_14209245_9 WHERE round = 2", "question": "What is the pick number for round 2?", "context": "CREATE TABLE table_14209245_9 (pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT mon_26_may FROM table_14209455_1 WHERE fri_30_may = \"18' 28.27 122.599mph\"", "question": "what time is mon may 26 and fri may 30 is 18' 28.27 122.599mph?", "context": "CREATE TABLE table_14209455_1 (mon_26_may VARCHAR, fri_30_may VARCHAR)"}, {"answer": "SELECT wed_28_may FROM table_14209455_1 WHERE mon_26_may = \"17' 58.34 125.960mph\"", "question": "what tims is wed may 28 and mon may 26 is 17' 58.34 125.960mph?", "context": "CREATE TABLE table_14209455_1 (wed_28_may VARCHAR, mon_26_may VARCHAR)"}, {"answer": "SELECT fri_30_may FROM table_14209455_1 WHERE mon_26_may = \"19' 02.890 118.847mph\"", "question": "what is the numbr for fri may 30 and mon may 26 is 19' 02.890 118.847mph?", "context": "CREATE TABLE table_14209455_1 (fri_30_may VARCHAR, mon_26_may VARCHAR)"}, {"answer": "SELECT school FROM table_14286908_1 WHERE year_of_last_win = \"2007-08\"", "question": "What the name of  the school where the last win in 2007-08?", "context": "CREATE TABLE table_14286908_1 (school VARCHAR, year_of_last_win VARCHAR)"}, {"answer": "SELECT COUNT(winners) FROM table_14286908_1 WHERE school = \"Banbridge Academy\"", "question": "How many times was banbridge academy the winner?", "context": "CREATE TABLE table_14286908_1 (winners VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_14286908_1 WHERE finalists = 2", "question": "What are the names that had a finalist score of 2?", "context": "CREATE TABLE table_14286908_1 (school VARCHAR, finalists VARCHAR)"}, {"answer": "SELECT year_of_last_win FROM table_14286908_1 WHERE total_finals = 10", "question": "In what year was the total finals at 10?", "context": "CREATE TABLE table_14286908_1 (year_of_last_win VARCHAR, total_finals VARCHAR)"}, {"answer": "SELECT school FROM table_14286908_1 WHERE year_of_last_win = \"1985-86\"", "question": "What is the name of the school where the year of last win is 1985-86?", "context": "CREATE TABLE table_14286908_1 (school VARCHAR, year_of_last_win VARCHAR)"}, {"answer": "SELECT total_finals FROM table_14286908_1 WHERE year_of_last_win = \"2012-13\"", "question": "How many total finals where there when the last win was in 2012-13?", "context": "CREATE TABLE table_14286908_1 (total_finals VARCHAR, year_of_last_win VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_14323347_1", "question": "Name the most played", "context": "CREATE TABLE table_14323347_1 (played INTEGER)"}, {"answer": "SELECT COUNT(1992 AS _93) FROM table_14323347_1 WHERE points = 115", "question": "Name the total number of 1992-93 for 115 points", "context": "CREATE TABLE table_14323347_1 (points VARCHAR)"}, {"answer": "SELECT MAX(touchdowns) FROM table_14342480_6 WHERE field_goals = 1", "question": "Name the most touchdowns for field goals being 1", "context": "CREATE TABLE table_14342480_6 (touchdowns INTEGER, field_goals VARCHAR)"}, {"answer": "SELECT starter FROM table_14342480_6 WHERE position = \"Left end\"", "question": "Name the starter for position being left end", "context": "CREATE TABLE table_14342480_6 (starter VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_14342480_6", "question": "Name the fewest touchdowns", "context": "CREATE TABLE table_14342480_6 (touchdowns INTEGER)"}, {"answer": "SELECT MAX(extra_points) FROM table_14342480_6 WHERE position = \"Right tackle\"", "question": "Name the most extra points for right tackle", "context": "CREATE TABLE table_14342480_6 (extra_points INTEGER, position VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_14342480_6 WHERE field_goals = 1", "question": "Name the number of points for field goals being 1", "context": "CREATE TABLE table_14342480_6 (points VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT MAX(touchdowns) FROM table_14342592_8 WHERE player = \"Becker\"", "question": "Name the most touchdowns for becker ", "context": "CREATE TABLE table_14342592_8 (touchdowns INTEGER, player VARCHAR)"}, {"answer": "SELECT extra_points FROM table_14342592_8 WHERE position = \"Left guard\"", "question": "Name the extra points for left guard", "context": "CREATE TABLE table_14342592_8 (extra_points VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_14342592_8 WHERE points = 11", "question": "Name the least touchdowns for 11 points", "context": "CREATE TABLE table_14342592_8 (touchdowns INTEGER, points VARCHAR)"}, {"answer": "SELECT MAX(field_goals) FROM table_14342592_8", "question": "Name the most field goals", "context": "CREATE TABLE table_14342592_8 (field_goals INTEGER)"}, {"answer": "SELECT COUNT(field_goals) FROM table_14342592_8 WHERE extra_points = 19", "question": "Name the number of field goals for 19 extra points", "context": "CREATE TABLE table_14342592_8 (field_goals VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT MAX(touchdowns) FROM table_14342592_8 WHERE player = \"Norcross\"", "question": "Name the most touchdowns for norcross", "context": "CREATE TABLE table_14342592_8 (touchdowns INTEGER, player VARCHAR)"}, {"answer": "SELECT famous_for FROM table_14345690_4 WHERE finished = \"9th\"", "question": "Name who was famous for finished in 9th", "context": "CREATE TABLE table_14345690_4 (famous_for VARCHAR, finished VARCHAR)"}, {"answer": "SELECT finished FROM table_14345690_4 WHERE exited = \"Day 13\"", "question": "Name the finished for exited day 13", "context": "CREATE TABLE table_14345690_4 (finished VARCHAR, exited VARCHAR)"}, {"answer": "SELECT entered FROM table_14345690_4 WHERE famous_for = \"Page 3 Model\"", "question": "Name the entered for famous for page 3 model", "context": "CREATE TABLE table_14345690_4 (entered VARCHAR, famous_for VARCHAR)"}, {"answer": "SELECT COUNT(finished) FROM table_14345690_4 WHERE celebrity = \"Kerry Katona\"", "question": "Name the finished for kerry katona", "context": "CREATE TABLE table_14345690_4 (finished VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT COUNT(celebrity) FROM table_14345690_4 WHERE famous_for = \"Athlete\"", "question": "Name the number of celebrity for athlete", "context": "CREATE TABLE table_14345690_4 (celebrity VARCHAR, famous_for VARCHAR)"}, {"answer": "SELECT COUNT(teleplay_by) FROM table_14346950_1 WHERE series__number = 35", "question": "What is the total number of values for \"Teleplay by\" category for series # 35?", "context": "CREATE TABLE table_14346950_1 (teleplay_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT teleplay_by FROM table_14346950_1 WHERE directed_by = \"Rob Bailey\"", "question": "Who is the teleplay by when the director is Rob Bailey?", "context": "CREATE TABLE table_14346950_1 (teleplay_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT season__number FROM table_14346950_1 WHERE teleplay_by = \"Richard Price\" AND directed_by = \"Steve Shill\"", "question": "What is the season # for a teleplay by Richard Price and the director is Steve Shill?", "context": "CREATE TABLE table_14346950_1 (season__number VARCHAR, teleplay_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT time___et__ FROM table_14433719_1 WHERE opponent = \"at Denver Broncos\"", "question": "What time in eastern standard time was game held at denver broncos?", "context": "CREATE TABLE table_14433719_1 (time___et__ VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT unix_shell FROM table_14465871_1 WHERE powershell__cmdlet_ = \"Select-String\"", "question": "What are the names of all unix shell with PowerShell (Cmdlet) of select-string?", "context": "CREATE TABLE table_14465871_1 (unix_shell VARCHAR, powershell__cmdlet_ VARCHAR)"}, {"answer": "SELECT cmdexe___commandcom FROM table_14465871_1 WHERE unix_shell = \"echo\"", "question": "What are all values of CMD.EXE / COMMAND.COM for the unix shell echo?", "context": "CREATE TABLE table_14465871_1 (cmdexe___commandcom VARCHAR, unix_shell VARCHAR)"}, {"answer": "SELECT description FROM table_14465871_1 WHERE powershell__alias_ = \"cpi, copy, cp\"", "question": "If Powershell (alias) is cpi, copy, cp, what are all corresponding descriptions. ", "context": "CREATE TABLE table_14465871_1 (description VARCHAR, powershell__alias_ VARCHAR)"}, {"answer": "SELECT powershell__cmdlet_ FROM table_14465871_1 WHERE cmdexe___commandcom = \"type\"", "question": "When the cmd.exe / command.com is type, what are all associated values for powershell (cmdlet)?", "context": "CREATE TABLE table_14465871_1 (powershell__cmdlet_ VARCHAR, cmdexe___commandcom VARCHAR)"}, {"answer": "SELECT COUNT(powershell__cmdlet_) FROM table_14465871_1 WHERE unix_shell = \"env, export, set, setenv\"", "question": "How many values of powershell (cmdlet) are valid when unix shell is env, export, set, setenv?", "context": "CREATE TABLE table_14465871_1 (powershell__cmdlet_ VARCHAR, unix_shell VARCHAR)"}, {"answer": "SELECT county FROM table_1447085_1 WHERE number_of_households = 2053", "question": "What county has 2053 households? ", "context": "CREATE TABLE table_1447085_1 (county VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT place FROM table_1447085_1 WHERE rank = 71", "question": "Which place has a rank of 71?", "context": "CREATE TABLE table_1447085_1 (place VARCHAR, rank VARCHAR)"}, {"answer": "SELECT county FROM table_1447085_1 WHERE median_house__hold_income = \"$98,090\"", "question": "Which county has a median household income of  $98,090?", "context": "CREATE TABLE table_1447085_1 (county VARCHAR, median_house__hold_income VARCHAR)"}, {"answer": "SELECT median_house__hold_income FROM table_1447085_1 WHERE place = \"Woodside\"", "question": "What is the median household income for Woodside?", "context": "CREATE TABLE table_1447085_1 (median_house__hold_income VARCHAR, place VARCHAR)"}, {"answer": "SELECT per_capita_income FROM table_1447085_1 WHERE county = \"Fayette county\"", "question": "What is the per capita income for Fayette County?", "context": "CREATE TABLE table_1447085_1 (per_capita_income VARCHAR, county VARCHAR)"}, {"answer": "SELECT rank FROM table_1449169_1 WHERE common = \"Galliate\"", "question": "Where does the common of Galliate rank in population?", "context": "CREATE TABLE table_1449169_1 (rank VARCHAR, common VARCHAR)"}, {"answer": "SELECT common FROM table_1449169_1 WHERE area__km_2__ = \"38.38\"", "question": "Which common has an area (km2) of 38.38?", "context": "CREATE TABLE table_1449169_1 (common VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT common FROM table_1449169_1 WHERE area__km_2__ = \"103.02\"", "question": "Which common has an area (km2) of 103.02?", "context": "CREATE TABLE table_1449169_1 (common VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT MIN(altitude__mslm_) FROM table_1449169_1", "question": "What is the minimum altitude (mslm) in all the commons?", "context": "CREATE TABLE table_1449169_1 (altitude__mslm_ INTEGER)"}, {"answer": "SELECT rank FROM table_1449176_1 WHERE area__km_2__ = \"47.3\"", "question": "What rank is the common with an area of 47.3 km^2?", "context": "CREATE TABLE table_1449176_1 (rank VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT density__inhabitants_km_2__ FROM table_1449176_1 WHERE area__km_2__ = \"20.4\"", "question": "What is the density of the common with an area of 20.4 km^2?", "context": "CREATE TABLE table_1449176_1 (density__inhabitants_km_2__ VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT COUNT(altitude__mslm_) FROM table_1449176_1 WHERE area__km_2__ = \"130.7\"", "question": "How many altitudes does the common with an area of 130.7 km^2 have?", "context": "CREATE TABLE table_1449176_1 (altitude__mslm_ VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_1449176_1 WHERE common_of = \"Settimo Torinese\"", "question": "How may population figures are given for Settimo Torinese", "context": "CREATE TABLE table_1449176_1 (population VARCHAR, common_of VARCHAR)"}, {"answer": "SELECT common_of FROM table_1449176_1 WHERE rank = \"9th\"", "question": "What is the name of the 9th ranked common?", "context": "CREATE TABLE table_1449176_1 (common_of VARCHAR, rank VARCHAR)"}, {"answer": "SELECT density__inhabitants_km_2__ FROM table_1449176_1 WHERE common_of = \"Chieri\"", "question": "The common of Chieri has what population density?", "context": "CREATE TABLE table_1449176_1 (density__inhabitants_km_2__ VARCHAR, common_of VARCHAR)"}, {"answer": "SELECT economics FROM table_145439_1 WHERE education = \"92.0\"", "question": "what's the\u00a0economics\u00a0score with\u00a0education\u00a0being 92.0", "context": "CREATE TABLE table_145439_1 (economics VARCHAR, education VARCHAR)"}, {"answer": "SELECT health FROM table_145439_1 WHERE justice = \"80.7\"", "question": "what's the\u00a0health\u00a0score with\u00a0justice\u00a0being 80.7", "context": "CREATE TABLE table_145439_1 (health VARCHAR, justice VARCHAR)"}, {"answer": "SELECT rank FROM table_145439_1 WHERE country = \"Iceland\"", "question": "what's the\u00a0rank\u00a0for iceland", "context": "CREATE TABLE table_145439_1 (rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_145439_1 WHERE health = \"91.4\"", "question": "what's the\u00a0country\u00a0with\u00a0health\u00a0being 91.4", "context": "CREATE TABLE table_145439_1 (country VARCHAR, health VARCHAR)"}, {"answer": "SELECT economics FROM table_145439_1 WHERE justice = \"90.8\"", "question": "what's the\u00a0economics score\u00a0with\u00a0justice\u00a0being 90.8", "context": "CREATE TABLE table_145439_1 (economics VARCHAR, justice VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_14608759_1 WHERE date = \"October 17, 1937\"", "question": "On October 17, 1937 what was maximum number or attendants.", "context": "CREATE TABLE table_14608759_1 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_14608759_1 WHERE week = 9", "question": "In week 9 who were the opponent? ", "context": "CREATE TABLE table_14608759_1 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_14608759_1 WHERE week = 4", "question": "What are week 4 results? ", "context": "CREATE TABLE table_14608759_1 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_14624447_33 WHERE name = \"Trevard Lindley\"", "question": "What was Trevard Lindley's number?", "context": "CREATE TABLE table_14624447_33 (number INTEGER, name VARCHAR)"}, {"answer": "SELECT player FROM table_1473672_8 WHERE nhl_team = \"Chicago Black Hawks\"", "question": "Name the player for chicago black hawks", "context": "CREATE TABLE table_1473672_8 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_1473672_8 WHERE pick__number = 128", "question": "Name the position for pick number 128", "context": "CREATE TABLE table_1473672_8 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1473672_8 WHERE position = \"Left Wing\"", "question": "Name the college/junior/club team for left wing", "context": "CREATE TABLE table_1473672_8 (college_junior_club_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT burmese FROM table_14850099_18 WHERE english = \"Thursday\"", "question": "What is the Burmese term for Thursday?", "context": "CREATE TABLE table_14850099_18 (burmese VARCHAR, english VARCHAR)"}, {"answer": "SELECT cardinal_direction FROM table_14850099_18 WHERE planet = \"Venus\"", "question": "What is the cardinal direction associated with Venus?", "context": "CREATE TABLE table_14850099_18 (cardinal_direction VARCHAR, planet VARCHAR)"}, {"answer": "SELECT burmese FROM table_14850099_18 WHERE cardinal_direction = \"West\"", "question": "What is the Burmese term associated with a cardinal direction of west?", "context": "CREATE TABLE table_14850099_18 (burmese VARCHAR, cardinal_direction VARCHAR)"}, {"answer": "SELECT planet FROM table_14850099_18 WHERE cardinal_direction = \"South\"", "question": "What is the planet associated with the direction of south?", "context": "CREATE TABLE table_14850099_18 (planet VARCHAR, cardinal_direction VARCHAR)"}, {"answer": "SELECT MAX(scored) FROM table_14871601_2 WHERE points = 19 AND team = \"3 de Febrero\"", "question": "What is the value scored when there were 19 points for the team 3 de Febrero?", "context": "CREATE TABLE table_14871601_2 (scored INTEGER, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_14871601_2 WHERE scored = 25", "question": "What was the number of losses when the scored value was 25?", "context": "CREATE TABLE table_14871601_2 (losses INTEGER, scored VARCHAR)"}, {"answer": "SELECT yacht FROM table_14882588_3 WHERE sail_number = \"6952\"", "question": "What were all Yachts with a sail number of 6952?", "context": "CREATE TABLE table_14882588_3 (yacht VARCHAR, sail_number VARCHAR)"}, {"answer": "SELECT COUNT(yacht) FROM table_14882588_3 WHERE position = 3", "question": "How many yachts had a position of 3?", "context": "CREATE TABLE table_14882588_3 (yacht VARCHAR, position VARCHAR)"}, {"answer": "SELECT sail_number FROM table_14882588_3 WHERE yacht = \"Yendys\"", "question": "What are all sail numbers for the yacht Yendys?", "context": "CREATE TABLE table_14882588_3 (sail_number VARCHAR, yacht VARCHAR)"}, {"answer": "SELECT courtside_reporter FROM table_14902507_2 WHERE year = \"2009-10\"", "question": "Who is the courtside reporter for the year 2009-10?", "context": "CREATE TABLE table_14902507_2 (courtside_reporter VARCHAR, year VARCHAR)"}, {"answer": "SELECT studio_host FROM table_14902507_2 WHERE year = \"2006-07\"", "question": "Who is the studio host for the year 2006-07?", "context": "CREATE TABLE table_14902507_2 (studio_host VARCHAR, year VARCHAR)"}, {"answer": "SELECT studio_analysts FROM table_14902507_2 WHERE year = \"2008-09\"", "question": "Who are the studio analysts for the year 2008-09?", "context": "CREATE TABLE table_14902507_2 (studio_analysts VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(channel) FROM table_14902507_2 WHERE year = \"2001-02\"", "question": "How many channels were the games shown on in 2001-02?", "context": "CREATE TABLE table_14902507_2 (channel VARCHAR, year VARCHAR)"}, {"answer": "SELECT current_venue FROM table_14903081_1 WHERE tournament = \"Miami Masters\"", "question": "What is the current venue for the Miami Masters tournament?", "context": "CREATE TABLE table_14903081_1 (current_venue VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT country FROM table_14903081_1 WHERE location = \"Rome\"", "question": "Rome is in which country?", "context": "CREATE TABLE table_14903081_1 (country VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(tournament) FROM table_14903081_1 WHERE current_venue = \"Lindner Family Tennis Center\"", "question": "How many tournaments have their current venue as the Lindner Family Tennis Center?", "context": "CREATE TABLE table_14903081_1 (tournament VARCHAR, current_venue VARCHAR)"}, {"answer": "SELECT MIN(began) FROM table_14903081_1 WHERE country = \"Italy\"", "question": "What year was the tournament first held in Italy?", "context": "CREATE TABLE table_14903081_1 (began INTEGER, country VARCHAR)"}, {"answer": "SELECT current_venue FROM table_14903081_1 WHERE location = \"Mason, Ohio\"", "question": "Which current venues location is Mason, Ohio?", "context": "CREATE TABLE table_14903081_1 (current_venue VARCHAR, location VARCHAR)"}, {"answer": "SELECT tournament FROM table_14903081_1 WHERE current_venue = \"Madrid Arena\"", "question": "Which tournaments current venue is the Madrid Arena?", "context": "CREATE TABLE table_14903081_1 (tournament VARCHAR, current_venue VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_14903841_1 WHERE year = \"2000/2001\"", "question": "What are all values for Womens Doubles in the year 2000/2001?", "context": "CREATE TABLE table_14903841_1 (womens_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_14903841_1 WHERE year = \"2008/2009\"", "question": "Who are all the womens doubles for the year 2008/2009?", "context": "CREATE TABLE table_14903841_1 (womens_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_14929574_3 WHERE us_viewers__million_ = \"3.84\"", "question": "Which episode number drew in 3.84 million viewers in the U.S.?", "context": "CREATE TABLE table_14929574_3 (series__number INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_14929574_3 WHERE directed_by = \"David Nutter\"", "question": "How many viewers did the episode directed by David Nutter draw in?", "context": "CREATE TABLE table_14929574_3 (us_viewers__million_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_14929574_3 WHERE us_viewers__million_ = \"3.35\"", "question": "Which episode number drew in 3.35 million viewers in the United States?", "context": "CREATE TABLE table_14929574_3 (series__number VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_14929574_3 WHERE directed_by = \"Bill Eagles\"", "question": "Which episode number was directed by Bill Eagles?", "context": "CREATE TABLE table_14929574_3 (series__number INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(masters) FROM table_14937957_1 WHERE martial_art_style = \"Boxing\"", "question": "How many masters fought using a boxing style?", "context": "CREATE TABLE table_14937957_1 (masters VARCHAR, martial_art_style VARCHAR)"}, {"answer": "SELECT COUNT(original_airdate) FROM table_14937957_1 WHERE episode__number = \"1.8\"", "question": "How many times did episode 1.8 air?", "context": "CREATE TABLE table_14937957_1 (original_airdate VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT masters FROM table_14937957_1 WHERE martial_art_style = \"Hapkido\"", "question": "Which masters fought in hapkido style?", "context": "CREATE TABLE table_14937957_1 (masters VARCHAR, martial_art_style VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_14937957_1 WHERE martial_art_style = \"Brazilian Jiu-Jitsu\"", "question": "When did the episode featuring a master using Brazilian jiu-jitsu air?", "context": "CREATE TABLE table_14937957_1 (original_airdate VARCHAR, martial_art_style VARCHAR)"}, {"answer": "SELECT country FROM table_14937957_1 WHERE city = \"Netanya\"", "question": "In which country is the city of Netanya?", "context": "CREATE TABLE table_14937957_1 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT martial_art_style FROM table_14937957_1 WHERE city = \"Rio de Janeiro\"", "question": "Which martial arts style was shown in Rio de Janeiro?", "context": "CREATE TABLE table_14937957_1 (martial_art_style VARCHAR, city VARCHAR)"}, {"answer": "SELECT week FROM table_14941284_1 WHERE attendance = 74804", "question": "When 74804 is the attendance what week is it?", "context": "CREATE TABLE table_14941284_1 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_14941284_1 WHERE date = \"October 25, 1981\"", "question": "When it is October 25, 1981 who is the opponent?", "context": "CREATE TABLE table_14941284_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_14941284_1 WHERE week = 2", "question": "When it is week 2 what is the record?", "context": "CREATE TABLE table_14941284_1 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT game_site FROM table_14941284_1 WHERE date = \"October 18, 1981\"", "question": "When it is October 18, 1981 where is the game site?", "context": "CREATE TABLE table_14941284_1 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT median_income FROM table_14946657_3 WHERE age_band = \"Under 20\"", "question": "Name the median income for age band being under 20", "context": "CREATE TABLE table_14946657_3 (median_income VARCHAR, age_band VARCHAR)"}, {"answer": "SELECT COUNT(archive) FROM table_1498589_1 WHERE run_time = \"24:06\"", "question": "How many episodes in history have a running time of 24:06?", "context": "CREATE TABLE table_1498589_1 (archive VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT southern_lakota FROM table_1499774_5 WHERE yankton_yanktonai = \"h\u00ed\u014bha\u014bna\"", "question": "Name the southern lakota for h\u00ed\u014bha\u014bna", "context": "CREATE TABLE table_1499774_5 (southern_lakota VARCHAR, yankton_yanktonai VARCHAR)"}, {"answer": "SELECT santee_sisseton FROM table_1499774_5 WHERE yankton_yanktonai = \"wi\u010dh\u00e1\u0161a\"", "question": "Name the santee sisseton for wi\u010dh\u00e1\u0161a", "context": "CREATE TABLE table_1499774_5 (santee_sisseton VARCHAR, yankton_yanktonai VARCHAR)"}, {"answer": "SELECT english_gloss FROM table_1499774_5 WHERE santee_sisseton = \"ha\u014b\u021f\u2019\u00e1\u014bna\"", "question": "Name the english gloss for ha\u014b\u021f\u2019\u00e1\u014bna", "context": "CREATE TABLE table_1499774_5 (english_gloss VARCHAR, santee_sisseton VARCHAR)"}, {"answer": "SELECT COUNT(english_gloss) FROM table_1499774_5 WHERE northern_lakota = \"wak\u021f\u00e1\u014bye\u017ea\"", "question": "Name the number of english gloss for wak\u021f\u00e1\u014bye\u017ea", "context": "CREATE TABLE table_1499774_5 (english_gloss VARCHAR, northern_lakota VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_15001753_1", "question": "What was the first year of the Lithuanian National Badminton Championships?", "context": "CREATE TABLE table_15001753_1 (year INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_15001753_1 WHERE mens_doubles = \"Aivaras Kvedarauskas Juozas Spelveris\"", "question": "How many years did aivaras kvedarauskas juozas spelveris participate in the men's doubles?", "context": "CREATE TABLE table_15001753_1 (year VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_15001681_1 WHERE womens_singles = \"Daniela Kressig\"", "question": "In 2004, where the womens singles is daniela kressig who is the mens singles", "context": "CREATE TABLE table_15001681_1 (mens_singles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_15001681_1 WHERE womens_doubles = \"Astrid Eidenbenz Claudia Jehle\"", "question": "What is the most current year where the women's doubles champions are astrid eidenbenz claudia jehle", "context": "CREATE TABLE table_15001681_1 (year INTEGER, womens_doubles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_15001681_1 WHERE womens_singles = \"no competition\" AND mens_doubles = \"Roland Hilti Kilian Pfister\" AND year = 2006", "question": "In the year 2006, the womens singles had no competition and the mens doubles were roland hilti kilian pfister, what were the womens doubles", "context": "CREATE TABLE table_15001681_1 (womens_doubles VARCHAR, year VARCHAR, womens_singles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_15001681_1 WHERE womens_singles = \"Michaela Ritter\" AND mens_singles = \"Armand Jehle\"", "question": "In 2001, where the mens singles is armand jehle and the womens singles is michaela ritter, who are the mixed doubles", "context": "CREATE TABLE table_15001681_1 (mixed_doubles VARCHAR, womens_singles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_15001681_1 WHERE year = 1987", "question": "In 1987 who was the mens singles", "context": "CREATE TABLE table_15001681_1 (mens_singles VARCHAR, year VARCHAR)"}, {"answer": "SELECT rhel_release_date FROM table_1500146_1 WHERE scientific_linux_release = \"3.0.4\"", "question": "When is the rhel release date when scientific linux release is 3.0.4", "context": "CREATE TABLE table_1500146_1 (rhel_release_date VARCHAR, scientific_linux_release VARCHAR)"}, {"answer": "SELECT delay FROM table_1500146_1 WHERE scientific_linux_release = \"5.10\"", "question": "Name the delay when scientific linux release is 5.10", "context": "CREATE TABLE table_1500146_1 (delay VARCHAR, scientific_linux_release VARCHAR)"}, {"answer": "SELECT scientific_linux_release FROM table_1500146_1 WHERE delay = \"28d\"", "question": "Name the scientific linux release when delay is 28d", "context": "CREATE TABLE table_1500146_1 (scientific_linux_release VARCHAR, delay VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_150343_3 WHERE country_territory = \"United States\"", "question": "What is the United States rank?", "context": "CREATE TABLE table_150343_3 (rank VARCHAR, country_territory VARCHAR)"}, {"answer": "SELECT total FROM table_150343_3 WHERE country_territory = \"Venezuela\"", "question": "What is Venezuela's total rank?", "context": "CREATE TABLE table_150343_3 (total VARCHAR, country_territory VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_150343_3 WHERE country_territory = \"Iceland\"", "question": "What is Iceland's total?", "context": "CREATE TABLE table_150343_3 (total VARCHAR, country_territory VARCHAR)"}, {"answer": "SELECT MAX(score) FROM table_1506950_4", "question": "What is the worst (highest) score?", "context": "CREATE TABLE table_1506950_4 (score INTEGER)"}, {"answer": "SELECT date FROM table_1506950_4 WHERE rounds = \"66-67-70-67\"", "question": "What days were the rounds of 66-67-70-67 recorded?", "context": "CREATE TABLE table_1506950_4 (date VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT country FROM table_1506950_4 WHERE tournament = \"The Open Championship\"", "question": "What country hosts the tournament the open championship?", "context": "CREATE TABLE table_1506950_4 (country VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT player FROM table_1506950_4 WHERE finish = \"2nd\"", "question": "What players finished 2nd?", "context": "CREATE TABLE table_1506950_4 (player VARCHAR, finish VARCHAR)"}, {"answer": "SELECT year FROM table_1507806_1 WHERE winning_score = \"3 & 2\"", "question": "WHAT YEAR WAS IT WHEN THE SCORE WAS 3 & 2?", "context": "CREATE TABLE table_1507806_1 (year VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_1507806_1 WHERE winning_score = (76 - 73 - 79 - 72 = 300)", "question": "HOW MANY YEARS WAS IT FOR THE SCORE (76-73-79-72=300)?", "context": "CREATE TABLE table_1507806_1 (year VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_1507806_1 WHERE runner_up = \"William Mehlhorn\"", "question": "WHAT WAS THE YEAR WHEN THE RUNNER-UP WAS WILLIAM MEHLHORN?", "context": "CREATE TABLE table_1507806_1 (year INTEGER, runner_up VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_1507806_1 WHERE runner_up = \"Mike Brady\"", "question": "WHAT YEAR DID MIKE BRADY GET RUNNER-UP?", "context": "CREATE TABLE table_1507806_1 (year INTEGER, runner_up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_1507806_1 WHERE year = 1922", "question": "WHAT WAS THE WINNING SCORE IN YEAR 1922?", "context": "CREATE TABLE table_1507806_1 (winning_score VARCHAR, year VARCHAR)"}, {"answer": "SELECT cancelable FROM table_1507852_5 WHERE bubbles = \"Yes\"", "question": "what's the\u00a0cancelable\u00a0with\u00a0bubbles\u00a0being yes", "context": "CREATE TABLE table_1507852_5 (cancelable VARCHAR, bubbles VARCHAR)"}, {"answer": "SELECT bubbles FROM table_1507852_5 WHERE attribute = \"onpopuphidden\"", "question": "what's the\u00a0bubbles\u00a0with\u00a0attribute\u00a0being onpopuphidden", "context": "CREATE TABLE table_1507852_5 (bubbles VARCHAR, attribute VARCHAR)"}, {"answer": "SELECT COUNT(bubbles) FROM table_1507852_5 WHERE category = \"Input\"", "question": " how many\u00a0bubbles\u00a0with\u00a0category\u00a0being input", "context": "CREATE TABLE table_1507852_5 (bubbles VARCHAR, category VARCHAR)"}, {"answer": "SELECT type FROM table_1507852_5 WHERE description = \"Fires when the overflow state changes.\"", "question": "what's the\u00a0type\u00a0with\u00a0description\u00a0being fires when the overflow state changes.", "context": "CREATE TABLE table_1507852_5 (type VARCHAR, description VARCHAR)"}, {"answer": "SELECT attribute FROM table_1507852_5 WHERE cancelable = \"Yes\"", "question": "what's the\u00a0attribute\u00a0with\u00a0cancelable\u00a0being yes", "context": "CREATE TABLE table_1507852_5 (attribute VARCHAR, cancelable VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_15185133_1 WHERE production_code = 318", "question": "What is the original air date for the episode with a production code of 318?", "context": "CREATE TABLE table_15185133_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_15185133_1 WHERE written_by = \"John O'Bryan\" AND directed_by = \"Ethan Spaulding\"", "question": "What season has an episode written by john o'bryan and directed by ethan spaulding?", "context": "CREATE TABLE table_15185133_1 (no_in_season VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_17 WHERE segment_d = \"Wood Boring Augers\"", "question": "how many segments involve wood boring augers", "context": "CREATE TABLE table_15187735_17 (segment_a VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_17 WHERE segment_c = \"Beet Sugar\"", "question": "for the shows featuring beet sugar, what was on before that", "context": "CREATE TABLE table_15187735_17 (segment_b VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT series_ep FROM table_15187735_17 WHERE segment_a = \"Rolled Wafers\"", "question": "are rolled wafers in many episodes", "context": "CREATE TABLE table_15187735_17 (series_ep VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT best_actor FROM table_15301258_1 WHERE best_film = \"Uncle Boonmee Who Can Recall His Past Lives\"", "question": "Name the best actor for uncle boonmee who can recall his past lives", "context": "CREATE TABLE table_15301258_1 (best_actor VARCHAR, best_film VARCHAR)"}, {"answer": "SELECT best_director FROM table_15301258_1 WHERE best_film = \"Mother\"", "question": "Name the best director for mother", "context": "CREATE TABLE table_15301258_1 (best_director VARCHAR, best_film VARCHAR)"}, {"answer": "SELECT year FROM table_15301258_1 WHERE best_supporting_actor = \"Sammo Hung for Ip Man 2\"", "question": "Name the year for sammo hung for ip man 2", "context": "CREATE TABLE table_15301258_1 (year VARCHAR, best_supporting_actor VARCHAR)"}, {"answer": "SELECT best_supporting_actress FROM table_15301258_1 WHERE best_supporting_actor = \"Sun Honglei for Mongol\"", "question": "Name the best supporting actress for sun honglei for mongol", "context": "CREATE TABLE table_15301258_1 (best_supporting_actress VARCHAR, best_supporting_actor VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_1529260_2 WHERE champion = \"Jiyai Shin\"", "question": "How many years was Jiyai Shin the champion?", "context": "CREATE TABLE table_1529260_2 (year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT country FROM table_1529260_2 WHERE margin_of_victory = \"6 strokes\"", "question": "What countries have a margin of victory at 6 strokes?", "context": "CREATE TABLE table_1529260_2 (country VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT COUNT(purse___us) AS $__ FROM table_1529260_2 WHERE margin_of_victory = \"8 strokes\"", "question": "How many dollars is the purse when the margin of victory is 8 strokes?", "context": "CREATE TABLE table_1529260_2 (purse___us VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_1529260_2", "question": "What is the lowest year listed?", "context": "CREATE TABLE table_1529260_2 (year INTEGER)"}, {"answer": "SELECT dates FROM table_1529260_2 WHERE score = 66 - 72 - 64 - 65 = 267", "question": "At what date is the score 66-72-64-65=267?", "context": "CREATE TABLE table_1529260_2 (dates VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(records) FROM table_15313204_1 WHERE _number = 2", "question": "How many teams are #2 on the list?", "context": "CREATE TABLE table_15313204_1 (records VARCHAR, _number VARCHAR)"}, {"answer": "SELECT records FROM table_15313204_1 WHERE pct = \".464\"", "question": "What are the record(s) for the team with a winning percentage of .464?", "context": "CREATE TABLE table_15313204_1 (records VARCHAR, pct VARCHAR)"}, {"answer": "SELECT points FROM table_15418319_1 WHERE team = \"Paulistano\"", "question": "Name the points for paulistano", "context": "CREATE TABLE table_15418319_1 (points VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_15472061_1 WHERE production_code = \"3020\"", "question": "Name the total number of titles for 3020 production code", "context": "CREATE TABLE table_15472061_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_15472061_1 WHERE us_viewers__millions_ = \"7.78\"", "question": "Name the number in the series for when the viewers is 7.78", "context": "CREATE TABLE table_15472061_1 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_15472061_1 WHERE no_in_season = \"10/11\"", "question": "Name the number of original air date for when the number in season is 10/11", "context": "CREATE TABLE table_15472061_1 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT race FROM table_15530244_2 WHERE circuit = \"Indy F3 Challenge\" AND pole_position = \"John Martin\"", "question": "Which race number in the Indy F3 Challenge circuit had John Martin in pole position?", "context": "CREATE TABLE table_15530244_2 (race VARCHAR, circuit VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT MAX(race) FROM table_15530244_2 WHERE circuit = \"Phillip Island\" AND winning_driver = \"James Winslow\" AND pole_position = \"James Winslow\"", "question": "What is the highest race number in the Phillip Island circuit with James Winslow as the winning driver and pole position?", "context": "CREATE TABLE table_15530244_2 (race INTEGER, pole_position VARCHAR, circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT MIN(tackles) FROM table_15581223_8 WHERE player = \"Danny Clark\"", "question": "Name the least amount of tackles for danny clark", "context": "CREATE TABLE table_15581223_8 (tackles INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(tackles) FROM table_15581223_8 WHERE sacks = \"3.5\"", "question": "Name the most tackles for 3.5 sacks", "context": "CREATE TABLE table_15581223_8 (tackles INTEGER, sacks VARCHAR)"}, {"answer": "SELECT MIN(fum_rec) AS TD FROM table_15581223_8", "question": "Name the least fum rec td", "context": "CREATE TABLE table_15581223_8 (fum_rec INTEGER)"}, {"answer": "SELECT MIN(int) AS yards FROM table_15581223_8 WHERE sacks = \"11.5\"", "question": "Name the least int yards when sacks is 11.5", "context": "CREATE TABLE table_15581223_8 (int INTEGER, sacks VARCHAR)"}, {"answer": "SELECT MIN(int) AS yards FROM table_15581223_8", "question": "Name the least amount of int yards", "context": "CREATE TABLE table_15581223_8 (int INTEGER)"}, {"answer": "SELECT MAX(no) FROM table_15621965_8 WHERE player = \"Al Harrington\"", "question": "What jersey number did Al Harrington wear", "context": "CREATE TABLE table_15621965_8 (no INTEGER, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_15621965_8 WHERE player = \"Dwight Howard\"", "question": "What school did Dwight Howard play for", "context": "CREATE TABLE table_15621965_8 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_15621965_7 WHERE school_club_team = \"Notre Dame\"", "question": "How many players belong to Notre Dame?", "context": "CREATE TABLE table_15621965_7 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_15621965_7 WHERE player = \"Chris Gatling\"", "question": "What number identifies Chris Gatling?", "context": "CREATE TABLE table_15621965_7 (no INTEGER, player VARCHAR)"}, {"answer": "SELECT extortion_theft_3 FROM table_15652027_1 WHERE united_nations_mission = \"United Nations Observer Mission Uganda-Rwanda\"", "question": "What is the extortion and theft rates where the United Nations Observer Mission Uganda-Rwanda is active?", "context": "CREATE TABLE table_15652027_1 (extortion_theft_3 VARCHAR, united_nations_mission VARCHAR)"}, {"answer": "SELECT MIN(sexual_abuse_1) FROM table_15652027_1 WHERE conflict = \"Burundi Civil War\"", "question": "What is the sexual abuse rate where the conflict is the Burundi Civil War?", "context": "CREATE TABLE table_15652027_1 (sexual_abuse_1 INTEGER, conflict VARCHAR)"}, {"answer": "SELECT MAX(sexual_abuse_1) FROM table_15652027_1 WHERE conflict = \"Burundi Civil War\"", "question": "What is the sexual abuse rate where the conflict is the Burundi Civil War?", "context": "CREATE TABLE table_15652027_1 (sexual_abuse_1 INTEGER, conflict VARCHAR)"}, {"answer": "SELECT MIN(sexual_abuse_1) FROM table_15652027_1 WHERE conflict = \"Second Sudanese Civil War\"", "question": "What is the sexual abuse rate where the conflict is the Second Sudanese Civil War?", "context": "CREATE TABLE table_15652027_1 (sexual_abuse_1 INTEGER, conflict VARCHAR)"}, {"answer": "SELECT date FROM table_1566848_8 WHERE centerfold_model = \"Kymberly Paige\"", "question": "When was the Kymberly Paige the Centerfold?", "context": "CREATE TABLE table_1566848_8 (date VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT date FROM table_1566850_8 WHERE centerfold_model = \"Kalin Olson\"", "question": "When was Kalin Olson listed as  the centerfold model?", "context": "CREATE TABLE table_1566850_8 (date VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT cover_model FROM table_1566850_8 WHERE date = \"3-97\"", "question": "What is the name of the cover model on 3-97?", "context": "CREATE TABLE table_1566850_8 (cover_model VARCHAR, date VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_1566850_8 WHERE pictorials = \"Marilyn Monroe\"", "question": "Who was the centerfold model when a pictorial was done on marilyn monroe?", "context": "CREATE TABLE table_1566850_8 (centerfold_model VARCHAR, pictorials VARCHAR)"}, {"answer": "SELECT interview_subject FROM table_1566850_8 WHERE date = \"1-97\"", "question": "Who was the interview subject on the date 1-97?", "context": "CREATE TABLE table_1566850_8 (interview_subject VARCHAR, date VARCHAR)"}, {"answer": "SELECT cover_model FROM table_1566852_8 WHERE pictorials = \"PMOY - Sara Jean Underwood\"", "question": "Who was the cover model when the issue's pictorials was pmoy - sara jean underwood?", "context": "CREATE TABLE table_1566852_8 (cover_model VARCHAR, pictorials VARCHAR)"}, {"answer": "SELECT pictorials FROM table_1566852_8 WHERE cover_model = \"Lindsey Roeper\"", "question": "List the pictorals from issues when lindsey roeper was the cover model.", "context": "CREATE TABLE table_1566852_8 (pictorials VARCHAR, cover_model VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_1566852_8 WHERE pictorials = \"Kimberly Bell , Bunnies of the New Playboy Club\"", "question": "Who was the centerfold model when the issue's pictorial was kimberly bell , bunnies of the new playboy club?", "context": "CREATE TABLE table_1566852_8 (centerfold_model VARCHAR, pictorials VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_1566852_8 WHERE pictorials = \"Amanda Beard, Reby Sky , Girls of Montauk\"", "question": "Who was the centerfold model when the issue's pictorial was amanda beard, reby sky , girls of montauk ?", "context": "CREATE TABLE table_1566852_8 (centerfold_model VARCHAR, pictorials VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_1566852_8 WHERE date = \"10-07\"", "question": "Who answered the 20 questions on 10-07?", "context": "CREATE TABLE table_1566852_8 (date VARCHAR)"}, {"answer": "SELECT wickets FROM table_15700367_2 WHERE overs_bowled = \"15\"", "question": "Name the wickets for overs bowled being 15", "context": "CREATE TABLE table_15700367_2 (wickets VARCHAR, overs_bowled VARCHAR)"}, {"answer": "SELECT COUNT(wickets) FROM table_15700367_2 WHERE name = \"Yuvraj Singh\"", "question": "Name the total number of wickets being yuvraj singh", "context": "CREATE TABLE table_15700367_2 (wickets VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_15700367_2 WHERE overs_bowled = \"31.2\"", "question": "Name the name for when overs bowled is 31.2", "context": "CREATE TABLE table_15700367_2 (name VARCHAR, overs_bowled VARCHAR)"}, {"answer": "SELECT COUNT(runs_conceded) FROM table_15700367_2 WHERE overs_bowled = \"53\"", "question": "Name the runs conceded where overs bowled is 53", "context": "CREATE TABLE table_15700367_2 (runs_conceded VARCHAR, overs_bowled VARCHAR)"}, {"answer": "SELECT maidens FROM table_15700367_2 WHERE overs_bowled = \"13\"", "question": "Name the maaidens where overs bowled is 13", "context": "CREATE TABLE table_15700367_2 (maidens VARCHAR, overs_bowled VARCHAR)"}, {"answer": "SELECT date FROM table_15736385_1 WHERE location = \"Nazareth\"", "question": "On what date was the race at Nazareth?", "context": "CREATE TABLE table_15736385_1 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_15736385_1 WHERE driver = \"Rick Mears\"", "question": "At which location did Rick Mears drive?", "context": "CREATE TABLE table_15736385_1 (location VARCHAR, driver VARCHAR)"}, {"answer": "SELECT team FROM table_15736385_1 WHERE date = \"October 19\"", "question": "Which team raced on October 19?", "context": "CREATE TABLE table_15736385_1 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT engine FROM table_15736385_1 WHERE team = \"Galles Racing\"", "question": "What engine does Galles Racing use?", "context": "CREATE TABLE table_15736385_1 (engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_15780049_5 WHERE date = \"December 19\"", "question": "What game happened on December 19?", "context": "CREATE TABLE table_15780049_5 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_15780049_5 WHERE team = \"Washington\"", "question": "Who scored the most points against Washington?", "context": "CREATE TABLE table_15780049_5 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT municipality FROM table_157826_1 WHERE county = \"Finnmark\" AND population > 6187.0", "question": "Which municipalities located in the county of Finnmark have populations bigger than 6187.0?", "context": "CREATE TABLE table_157826_1 (municipality VARCHAR, county VARCHAR, population VARCHAR)"}, {"answer": "SELECT county FROM table_157826_1 WHERE city_town = \"Halden\"", "question": "In which county is the city/town of Halden located?", "context": "CREATE TABLE table_157826_1 (county VARCHAR, city_town VARCHAR)"}, {"answer": "SELECT municipality FROM table_157826_1 WHERE population = 24421", "question": "Which municipality has a population of 24421?", "context": "CREATE TABLE table_157826_1 (municipality VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_157826_1 WHERE city_town = \"Arendal\"", "question": "What is the total population in the city/town of Arendal?", "context": "CREATE TABLE table_157826_1 (population VARCHAR, city_town VARCHAR)"}, {"answer": "SELECT city_town FROM table_157826_1 WHERE municipality = \"Horten\"", "question": "What are the cities/towns located in the municipality of Horten?", "context": "CREATE TABLE table_157826_1 (city_town VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT city_town FROM table_157826_1 WHERE municipality = \"Moss\"", "question": "What are the cities/towns located in the municipality of Moss?", "context": "CREATE TABLE table_157826_1 (city_town VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT song_choice FROM table_15796054_3 WHERE week__number = \"Hollywood\"", "question": "Name the song choice when week number is hollywood", "context": "CREATE TABLE table_15796054_3 (song_choice VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT week__number FROM table_15796054_3 WHERE theme = \"Andrew Lloyd Webber\"", "question": "Name the week number for andrew lloyd webber", "context": "CREATE TABLE table_15796054_3 (week__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT order__number FROM table_15796054_3 WHERE original_artist = \"The Beatles\" AND result = \"Safe\"", "question": "Name the order number for the beatles and result is safe", "context": "CREATE TABLE table_15796054_3 (order__number VARCHAR, original_artist VARCHAR, result VARCHAR)"}, {"answer": "SELECT production_code FROM table_158088_2 WHERE written_by = \"Drew Z. Greenberg\"", "question": "What is the production code for the episode written by Drew Z. Greenberg?", "context": "CREATE TABLE table_158088_2 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_158088_2 WHERE episode_no = 3", "question": "Who directed episode number 3?", "context": "CREATE TABLE table_158088_2 (directed_by VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT season__number FROM table_15824796_4 WHERE original_air_date = \"September 17, 1955\"", "question": "Which Season originally aired on September 17, 1955", "context": "CREATE TABLE table_15824796_4 (season__number VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_15824796_4", "question": "What is the lowest number of series?", "context": "CREATE TABLE table_15824796_4 (series__number INTEGER)"}, {"answer": "SELECT original_air_date FROM table_15824796_4 WHERE season__number = 9", "question": "When did season 9 originally air?", "context": "CREATE TABLE table_15824796_4 (original_air_date VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT date FROM table_15869204_4 WHERE location_attendance = \"Continental Airlines Arena 13,755\"", "question": "On what date was the attendance at Continental Airlines Arena 13,755?", "context": "CREATE TABLE table_15869204_4 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT television_service FROM table_15887683_15 WHERE language = \"Italian\" AND n\u00b0 > 856.0", "question": "How many television service are in italian and n\u00b0is greater than 856.0?", "context": "CREATE TABLE table_15887683_15 (television_service VARCHAR, language VARCHAR, n\u00b0 VARCHAR)"}, {"answer": "SELECT television_service FROM table_15887683_15 WHERE country = \"Italy\" AND language = \"English\"", "question": "What television service is in italy and is in english?", "context": "CREATE TABLE table_15887683_15 (television_service VARCHAR, country VARCHAR, language VARCHAR)"}, {"answer": "SELECT television_service FROM table_15887683_15 WHERE country = \"United Kingdom\" AND n\u00b0 > 854.0", "question": "what television service are in the united kingdom and n\u00b0 is greater than 854.0?", "context": "CREATE TABLE table_15887683_15 (television_service VARCHAR, country VARCHAR, n\u00b0 VARCHAR)"}, {"answer": "SELECT dar FROM table_15887683_15 WHERE country = \"Germany\"", "question": "How many dar are in germany?", "context": "CREATE TABLE table_15887683_15 (dar VARCHAR, country VARCHAR)"}, {"answer": "SELECT musical_guest__song_performed_ FROM table_1590967_6 WHERE guest_host = \"Elle Macpherson\"", "question": "Name the musical guest where guest host is elle macpherson", "context": "CREATE TABLE table_1590967_6 (musical_guest__song_performed_ VARCHAR, guest_host VARCHAR)"}, {"answer": "SELECT COUNT(episode_number) FROM table_1590967_6 WHERE coat_of_cash_wearing_celebrity = \"Matt Di Angelo\"", "question": "Name the total number of episodes for coat of cash wearing celebrity is matt di angelo", "context": "CREATE TABLE table_1590967_6 (episode_number VARCHAR, coat_of_cash_wearing_celebrity VARCHAR)"}, {"answer": "SELECT opponents FROM table_15986020_3 WHERE oilers_points = 21", "question": "What was the total opponents points for the game were the Oilers scored 21?", "context": "CREATE TABLE table_15986020_3 (opponents VARCHAR, oilers_points VARCHAR)"}, {"answer": "SELECT second_place FROM table_15988037_4 WHERE winner = \"Rafa\u0142 Mroczek & Aneta Piotrowska\"", "question": "Who got second place when the winners were rafa\u0142 mroczek & aneta piotrowska?", "context": "CREATE TABLE table_15988037_4 (second_place VARCHAR, winner VARCHAR)"}, {"answer": "SELECT province FROM table_160510_1 WHERE hanja = \"\u6714\u5dde\"", "question": "The hanja \u6714\u5dde is for what province?", "context": "CREATE TABLE table_160510_1 (province VARCHAR, hanja VARCHAR)"}, {"answer": "SELECT COUNT(modern_equivalent) FROM table_160510_1 WHERE former_kingdom = \"Silla\" AND hanja = \"\u5c19\u5dde\"", "question": "What is the modern equivalent of the former kingdom \"silla\" with the hanja \u5c19\u5dde?", "context": "CREATE TABLE table_160510_1 (modern_equivalent VARCHAR, former_kingdom VARCHAR, hanja VARCHAR)"}, {"answer": "SELECT capital FROM table_160510_1 WHERE hanja = \"\u5c19\u5dde\"", "question": "The hanja \u5c19\u5dde is for what capital?", "context": "CREATE TABLE table_160510_1 (capital VARCHAR, hanja VARCHAR)"}, {"answer": "SELECT hangul FROM table_160510_1 WHERE hanja = \"\u826f\u5dde\"", "question": "What is the hangul symbol for the hanja \u826f\u5dde?", "context": "CREATE TABLE table_160510_1 (hangul VARCHAR, hanja VARCHAR)"}, {"answer": "SELECT hanja FROM table_160510_1 WHERE province = \"Sangju\"", "question": "What is the hanja for the province of \"sangju\"?", "context": "CREATE TABLE table_160510_1 (hanja VARCHAR, province VARCHAR)"}, {"answer": "SELECT modern_equivalent FROM table_160510_1 WHERE province = \"Hanju\"", "question": "What are the modern equivalents for the province of \"hanju\"?", "context": "CREATE TABLE table_160510_1 (modern_equivalent VARCHAR, province VARCHAR)"}, {"answer": "SELECT 2012 AS _passengers__in_millions_ FROM table_16066063_1 WHERE city_1 = \"Seoul\"", "question": "How many passengers (in millions) flew from Seoul in 2012?", "context": "CREATE TABLE table_16066063_1 (city_1 VARCHAR)"}, {"answer": "SELECT 2012 AS _passengers__in_millions_ FROM table_16066063_1 WHERE distance = \"1075km\"", "question": "How many passengers (in millions) flew through along the route that is 1075km long in 2012?", "context": "CREATE TABLE table_16066063_1 (distance VARCHAR)"}, {"answer": "SELECT city_1 FROM table_16066063_1 WHERE city_2 = \"Okinawa\"", "question": "Which city is listed first when Okinawa is listed as the second city?", "context": "CREATE TABLE table_16066063_1 (city_1 VARCHAR, city_2 VARCHAR)"}, {"answer": "SELECT report FROM table_16099880_5 WHERE pole_position = \"Will Power\" AND fastest_lap = \"Will Power\"", "question": "What is the report for races where Will Power had both pole position and fastest lap?", "context": "CREATE TABLE table_16099880_5 (report VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT pole_position FROM table_16099880_5 WHERE race = \"Chicagoland\"", "question": "Who was on the pole at Chicagoland?", "context": "CREATE TABLE table_16099880_5 (pole_position VARCHAR, race VARCHAR)"}, {"answer": "SELECT COUNT(winning_driver) FROM table_16099880_5 WHERE race = \"Chicagoland\"", "question": "In what position did the winning driver finish at Chicagoland?", "context": "CREATE TABLE table_16099880_5 (winning_driver VARCHAR, race VARCHAR)"}, {"answer": "SELECT COUNT(school) FROM table_16225511_2 WHERE percent = \"0.667\"", "question": "How many schools had the win loss ratio of 0.667? ", "context": "CREATE TABLE table_16225511_2 (school VARCHAR, percent VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_16225511_2 WHERE school = \"Baylor\"", "question": "How many wins did Baylor have? ", "context": "CREATE TABLE table_16225511_2 (wins VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_16225511_2 WHERE school = \"Texas\"", "question": "What's the largest amount of wins Texas has? ", "context": "CREATE TABLE table_16225511_2 (wins INTEGER, school VARCHAR)"}, {"answer": "SELECT sanction FROM table_16275828_4 WHERE track_name = \"Fayette County Speedway\"", "question": "Who sanctioned the event at fayette county speedway?", "context": "CREATE TABLE table_16275828_4 (sanction VARCHAR, track_name VARCHAR)"}, {"answer": "SELECT sanction FROM table_16275828_4 WHERE location = \"Lincoln, Illinois\"", "question": "Who sanctioned the event in lincoln, illinois?", "context": "CREATE TABLE table_16275828_4 (sanction VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_16275828_4 WHERE track_name = \"Farmer City Speedway\"", "question": "What location is farmer city speedway?", "context": "CREATE TABLE table_16275828_4 (location VARCHAR, track_name VARCHAR)"}, {"answer": "SELECT program FROM table_16275828_4 WHERE track_name = \"Highland Speedway\"", "question": "What programs were held at highland speedway?", "context": "CREATE TABLE table_16275828_4 (program VARCHAR, track_name VARCHAR)"}, {"answer": "SELECT program FROM table_16275828_4 WHERE location = \"Charleston, Illinois\"", "question": "What programs were held in charleston, illinois?", "context": "CREATE TABLE table_16275828_4 (program VARCHAR, location VARCHAR)"}, {"answer": "SELECT round_eliminated FROM table_16295365_2 WHERE conf_record = \"12-6\"", "question": "Name the round eliminated where conference record is 12-6", "context": "CREATE TABLE table_16295365_2 (round_eliminated VARCHAR, conf_record VARCHAR)"}, {"answer": "SELECT school FROM table_16295365_2 WHERE conf_record = \"12-6\"", "question": "Name the school where conference record is 12-6", "context": "CREATE TABLE table_16295365_2 (school VARCHAR, conf_record VARCHAR)"}, {"answer": "SELECT conf_record FROM table_16295365_2 WHERE seed = \"3\" AND record = \"24-9\"", "question": "Name the conference record where seed is 3 and record is 24-9", "context": "CREATE TABLE table_16295365_2 (conf_record VARCHAR, seed VARCHAR, record VARCHAR)"}, {"answer": "SELECT conf_record FROM table_16295365_1 WHERE conference = \"Sun Belt\"", "question": "For teams in the Sun Belt conference, what is the conference record?", "context": "CREATE TABLE table_16295365_1 (conf_record VARCHAR, conference VARCHAR)"}, {"answer": "SELECT record FROM table_16295365_1 WHERE school = \"Oral Roberts\"", "question": "What was the overall record of Oral Roberts college?", "context": "CREATE TABLE table_16295365_1 (record VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_16295365_1 WHERE conference = \"Patriot\"", "question": "Which qualifying schools were in the Patriot conference?", "context": "CREATE TABLE table_16295365_1 (school VARCHAR, conference VARCHAR)"}, {"answer": "SELECT record FROM table_16295365_1 WHERE school = \"UMBC\"", "question": "What was the overall record of UMBC?", "context": "CREATE TABLE table_16295365_1 (record VARCHAR, school VARCHAR)"}, {"answer": "SELECT conference FROM table_16295365_1 WHERE school = \"Belmont\"", "question": "Which conference is Belmont in?", "context": "CREATE TABLE table_16295365_1 (conference VARCHAR, school VARCHAR)"}, {"answer": "SELECT status FROM table_1634376_1 WHERE _number = \"K-223\"", "question": "What is the status of vessel number K-223?", "context": "CREATE TABLE table_1634376_1 (status VARCHAR, _number VARCHAR)"}, {"answer": "SELECT third_place FROM table_16331144_1 WHERE season = \"Four\"", "question": "Who won third place in season four?", "context": "CREATE TABLE table_16331144_1 (third_place VARCHAR, season VARCHAR)"}, {"answer": "SELECT runner_up FROM table_16331144_1 WHERE season = \"Five\"", "question": "Who was the runner-up in season five?", "context": "CREATE TABLE table_16331144_1 (runner_up VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_16331144_1 WHERE winning_mentor = \"Ida Corr\"", "question": "Which season did Ida Corr win?", "context": "CREATE TABLE table_16331144_1 (season VARCHAR, winning_mentor VARCHAR)"}, {"answer": "SELECT winning_mentor FROM table_16331144_1 WHERE season = \"Two\"", "question": "Who was the winning mentor in season two?", "context": "CREATE TABLE table_16331144_1 (winning_mentor VARCHAR, season VARCHAR)"}, {"answer": "SELECT runner_up FROM table_16331144_1 WHERE third_place = \"Mohamed Ali\"", "question": "Who was the runner-up when Mohamed Ali got third?", "context": "CREATE TABLE table_16331144_1 (runner_up VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT affiliation FROM table_16381914_1 WHERE location = \"Erie, Pennsylvania\"", "question": "What affiliation is Erie, Pennsylvania?", "context": "CREATE TABLE table_16381914_1 (affiliation VARCHAR, location VARCHAR)"}, {"answer": "SELECT enrollment FROM table_16381914_1 WHERE founded = 1846", "question": "What was the enrollment of the school founded in 1846?", "context": "CREATE TABLE table_16381914_1 (enrollment VARCHAR, founded VARCHAR)"}, {"answer": "SELECT affiliation FROM table_16381914_1 WHERE location = \"Canton, New York\"", "question": "What kind of school is Canton, New York?", "context": "CREATE TABLE table_16381914_1 (affiliation VARCHAR, location VARCHAR)"}, {"answer": "SELECT ground FROM table_16388047_1 WHERE home_team = \"Essendon\"", "question": "Name the ground for essendon", "context": "CREATE TABLE table_16388047_1 (ground VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(ground) FROM table_16388047_1 WHERE home_team = \"Essendon\"", "question": "Name the total number of grounds for essendon", "context": "CREATE TABLE table_16388047_1 (ground VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT time FROM table_16388047_1 WHERE date = \"Saturday 4 March 1995\"", "question": "Name the time for saturday 4 march 1995", "context": "CREATE TABLE table_16388047_1 (time VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_16388478_3 WHERE away_team = \"Fremantle\"", "question": "On what date did the away team Fremantle play?", "context": "CREATE TABLE table_16388478_3 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_16388478_3 WHERE home_team = \"Port Adelaide\"", "question": "What score did the away team receive against home team Port Adelaide?", "context": "CREATE TABLE table_16388478_3 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT h FROM table WHERE c__max_ = 99", "question": "Name the h when c max is 99", "context": "CREATE TABLE table (h VARCHAR, c__max_ VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_16494599_5 WHERE school_club_team = \"Maryland\"", "question": "when was the school/club team for grizzles was maryland", "context": "CREATE TABLE table_16494599_5 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_16494599_5 WHERE player = \"Kevin Edwards\"", "question": "Which position did kevin edwards play for", "context": "CREATE TABLE table_16494599_5 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_16494599_5 WHERE no = 32", "question": "when did no. 32 play for grizzles", "context": "CREATE TABLE table_16494599_5 (years_for_grizzlies VARCHAR, no VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_16494599_5 WHERE years_for_grizzlies = \"2000-2001\"", "question": "what's the highest player number from the list from 2000-2001", "context": "CREATE TABLE table_16494599_5 (no INTEGER, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_16494599_5 WHERE player = \"Blue Edwards\"", "question": "Which school/club team did blue edwards play for", "context": "CREATE TABLE table_16494599_5 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_16575609_3 WHERE player = \"Justin Shaw\"", "question": "What position is Justin Shaw in?", "context": "CREATE TABLE table_16575609_3 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick__number FROM table_16575609_3 WHERE college = \"Western Illinois\"", "question": "What pick # did Western Illinois have?", "context": "CREATE TABLE table_16575609_3 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(cfl_team) FROM table_16575609_3 WHERE pick__number = 21", "question": "How many cfl teams had pick # 21?", "context": "CREATE TABLE table_16575609_3 (cfl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_16575609_3 WHERE player = \"Michael Giffin\"", "question": "How many pick numbers did Michael Giffin have?", "context": "CREATE TABLE table_16575609_3 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_16575609_3 WHERE player = \"Jean-Nicolas Carriere\"", "question": "What college does Jean-Nicolas Carriere play for?", "context": "CREATE TABLE table_16575609_3 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT points FROM table_16729457_18 WHERE equipment = \"KTM-VMC\"", "question": "What are the points for ktm-vmc equipment? ", "context": "CREATE TABLE table_16729457_18 (points VARCHAR, equipment VARCHAR)"}, {"answer": "SELECT location FROM table_1672976_7 WHERE big_ten_team = \"Illinois\"", "question": "Name the location for illinois", "context": "CREATE TABLE table_1672976_7 (location VARCHAR, big_ten_team VARCHAR)"}, {"answer": "SELECT MAX(lead_margin) FROM table_16751596_5 WHERE dates_administered = \"August 5, 2008\"", "question": "what is the maximum lead margin on august 5, 2008?", "context": "CREATE TABLE table_16751596_5 (lead_margin INTEGER, dates_administered VARCHAR)"}, {"answer": "SELECT democrat AS :_john_kerry FROM table_16751596_5 WHERE dates_administered = \"April 22, 2008\"", "question": "what is the percentage for john kerry and dates administered is april 22, 2008?", "context": "CREATE TABLE table_16751596_5 (democrat VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_16799784_3 WHERE year_named = 1997", "question": "What was the diameter of the feature found in 1997?", "context": "CREATE TABLE table_16799784_3 (diameter__km_ VARCHAR, year_named VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_16799784_3 WHERE latitude = \"67.5N\"", "question": "At a latitude of 67.5n, what is the diameter?", "context": "CREATE TABLE table_16799784_3 (diameter__km_ VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT latitude FROM table_16799784_3 WHERE name = \"Vaidilute Rupes\"", "question": "What is the latitude of vaidilute rupes?", "context": "CREATE TABLE table_16799784_3 (latitude VARCHAR, name VARCHAR)"}, {"answer": "SELECT name AS origin FROM table_16799784_3 WHERE longitude = \"71.1E\"", "question": "At a latitude of 71.1e, what is the feature's name origin?", "context": "CREATE TABLE table_16799784_3 (name VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT COUNT(diameter__km_) FROM table_16799784_3 WHERE longitude = \"109.9E\"", "question": "At a longitude of 109.9e, how many features were found?", "context": "CREATE TABLE table_16799784_3 (diameter__km_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT latitude FROM table_16799784_3 WHERE longitude = \"321.9E\"", "question": "At a longitude of 321.9e, what is the latitude of the features found?", "context": "CREATE TABLE table_16799784_3 (latitude VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT MAX(year_named) FROM table_16799784_8 WHERE latitude = \"33.3S\"", "question": "In what year was the feature at a 33.3S latitude named? ", "context": "CREATE TABLE table_16799784_8 (year_named INTEGER, latitude VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_16799784_8 WHERE name = \"Colette Patera\"", "question": "What is the diameter in km of the feature named Colette Patera? ", "context": "CREATE TABLE table_16799784_8 (diameter__km_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT longitude FROM table_16799784_8 WHERE name = \"Razia Patera\"", "question": "What is the longitude of the feature named Razia Patera? ", "context": "CREATE TABLE table_16799784_8 (longitude VARCHAR, name VARCHAR)"}, {"answer": "SELECT name AS origin FROM table_16799784_8 WHERE name = \"Keller Patera\"", "question": "What is the origin of the name of Keller Patera? ", "context": "CREATE TABLE table_16799784_8 (name VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_16799784_8 WHERE longitude = \"40.2E\"", "question": "What is  the diameter in km of the feature with a longitude of 40.2E? ", "context": "CREATE TABLE table_16799784_8 (diameter__km_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT name AS origin FROM table_16799784_7 WHERE diameter__km_ = \"2,155.0\"", "question": "what's the name origin of feature of diameter (km) 2,155.0", "context": "CREATE TABLE table_16799784_7 (name VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_16799784_7 WHERE latitude = \"23.0S\"", "question": "what is the diameter (km) of the feature of latitude 23.0s", "context": "CREATE TABLE table_16799784_7 (diameter__km_ VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT latitude FROM table_16799784_7 WHERE longitude = \"80.0E\"", "question": "what is the latitude of the feature of longitude 80.0e", "context": "CREATE TABLE table_16799784_7 (latitude VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_16799784_7 WHERE latitude = \"40.5S\"", "question": "what is the diameter (km) of feature of latitude 40.5s", "context": "CREATE TABLE table_16799784_7 (diameter__km_ VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_16799784_7 WHERE longitude = \"170.1E\"", "question": "what is the diameter (km) of longitude 170.1e", "context": "CREATE TABLE table_16799784_7 (diameter__km_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT market_value__billion_$_ FROM table_1682026_6 WHERE sales__billion_$_ = \"172.7\"", "question": "What is the market value of a company in billions that has 172.7 billion in sales? ", "context": "CREATE TABLE table_1682026_6 (market_value__billion_$_ VARCHAR, sales__billion_$_ VARCHAR)"}, {"answer": "SELECT profits__billion_$_ FROM table_1682026_6 WHERE company = \"Berkshire Hathaway\"", "question": "What are the profits in billions for Berkshire Hathaway? ", "context": "CREATE TABLE table_1682026_6 (profits__billion_$_ VARCHAR, company VARCHAR)"}, {"answer": "SELECT industry FROM table_1682026_6 WHERE market_value__billion_$_ = \"80.3\"", "question": "Which industry has a company with a market value of 80.3 billion? ", "context": "CREATE TABLE table_1682026_6 (industry VARCHAR, market_value__billion_$_ VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_1682026_6 WHERE assets__billion_$_ = \"1,715.8\"", "question": "What is the highest rank of a company that has 1,715.8 billion in assets? ", "context": "CREATE TABLE table_1682026_6 (rank INTEGER, assets__billion_$_ VARCHAR)"}, {"answer": "SELECT profits__billion_$_ FROM table_1682026_6 WHERE market_value__billion_$_ = \"204.9\"", "question": "what is the amount of profits in billions for companies with a market value of 204.9 billion? ", "context": "CREATE TABLE table_1682026_6 (profits__billion_$_ VARCHAR, market_value__billion_$_ VARCHAR)"}, {"answer": "SELECT mls_cup_playoffs FROM table_16857_2 WHERE concacaf_champions_cup___champions_league = \"Did not qualify\" AND us_open_cup = \"Round of 16\"", "question": "How did the team place when they did not qualify for the Concaf Champions Cup but made it to Round of 16 in the U.S. Open Cup?", "context": "CREATE TABLE table_16857_2 (mls_cup_playoffs VARCHAR, concacaf_champions_cup___champions_league VARCHAR, us_open_cup VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_16857_2", "question": "When was the first season?", "context": "CREATE TABLE table_16857_2 (season INTEGER)"}, {"answer": "SELECT paperback FROM table_16907214_1 WHERE title = \"Dead as a Doornail\"", "question": "What is the ISBN of \"Dead as a Doornail?", "context": "CREATE TABLE table_16907214_1 (paperback VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(publisher) FROM table_16907214_1 WHERE hardcover = \"ISBN 193700788X\"", "question": "How many publishers put out isbn 193700788x?", "context": "CREATE TABLE table_16907214_1 (publisher VARCHAR, hardcover VARCHAR)"}, {"answer": "SELECT _number FROM table_16907214_1 WHERE hardcover = \"ISBN 0-441-01400-3\"", "question": "isbn 0-441-01400-3 is book number?", "context": "CREATE TABLE table_16907214_1 (_number VARCHAR, hardcover VARCHAR)"}, {"answer": "SELECT publisher FROM table_16907214_1 WHERE hardcover = \"ISBN 1-937007-44-8\"", "question": "Who pubilshed isbn 1-937007-44-8?", "context": "CREATE TABLE table_16907214_1 (publisher VARCHAR, hardcover VARCHAR)"}, {"answer": "SELECT MIN(w) FROM table_16922657_2", "question": "What is the minimum Wins a team has?", "context": "CREATE TABLE table_16922657_2 (w INTEGER)"}, {"answer": "SELECT COUNT(Ends) AS won FROM table_16922657_2 WHERE country = Scotland", "question": "When the country was Scotland, how many ends were won?", "context": "CREATE TABLE table_16922657_2 (Ends VARCHAR, country VARCHAR, Scotland VARCHAR)"}, {"answer": "SELECT MIN(Ends) AS lost FROM table_16922657_2 WHERE country = Norway", "question": "What is Norway's least ends lost?", "context": "CREATE TABLE table_16922657_2 (Ends INTEGER, country VARCHAR, Norway VARCHAR)"}, {"answer": "SELECT poles FROM table_1708050_1 WHERE position = \"25th\"", "question": "Name the poles for 25th position", "context": "CREATE TABLE table_1708050_1 (poles VARCHAR, position VARCHAR)"}, {"answer": "SELECT starts FROM table_1708050_1 WHERE position = \"16th\"", "question": "Name the starts when position is 16th", "context": "CREATE TABLE table_1708050_1 (starts VARCHAR, position VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17103645_9 WHERE date = \"June 7\"", "question": "What stadium hosted the June 7 game and how many visitors were there?", "context": "CREATE TABLE table_17103645_9 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17103645_9 WHERE score = \"79-88\"", "question": "Who made the highest assist in the game that scored 79-88?", "context": "CREATE TABLE table_17103645_9 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT sixth FROM table_17111812_1 WHERE eighth = \"Marcos Hernandez\"", "question": "When the 8th is Marcos Hernandez who was the 6th?", "context": "CREATE TABLE table_17111812_1 (sixth VARCHAR, eighth VARCHAR)"}, {"answer": "SELECT fourth FROM table_17111812_1 WHERE sixth = \"Air Traffic\"", "question": "Who was in 4th when in 6th is Air Traffic?", "context": "CREATE TABLE table_17111812_1 (fourth VARCHAR, sixth VARCHAR)"}, {"answer": "SELECT tenth FROM table_17111812_1 WHERE ninth = \"Kubb\"", "question": "When Kubb is in 9th, who is in 10th?", "context": "CREATE TABLE table_17111812_1 (tenth VARCHAR, ninth VARCHAR)"}, {"answer": "SELECT COUNT(seventh) FROM table_17111812_1 WHERE sixth = \"Interpol\"", "question": "When Interpol is in 6th, who is in 7th?", "context": "CREATE TABLE table_17111812_1 (seventh VARCHAR, sixth VARCHAR)"}, {"answer": "SELECT COUNT(winner) FROM table_17111812_1 WHERE fourth = \"Plan B\"", "question": "How many times was Plan B 4th place?", "context": "CREATE TABLE table_17111812_1 (winner VARCHAR, fourth VARCHAR)"}, {"answer": "SELECT winner FROM table_17111812_1 WHERE fifth = \"Dizzee Rascal\"", "question": "When dizzee rascal is 5th, who was the winner?", "context": "CREATE TABLE table_17111812_1 (winner VARCHAR, fifth VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17121262_9 WHERE game = 60", "question": "What was the location and attendance for game 60?", "context": "CREATE TABLE table_17121262_9 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17121262_9 WHERE date = \"March 18\"", "question": "Who had the highest assists on March 18?", "context": "CREATE TABLE table_17121262_9 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17140608_7 WHERE date = \"January 6\"", "question": "Who had the high rebound total on january 6?", "context": "CREATE TABLE table_17140608_7 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_17186229_4 WHERE record = \"9-2\"", "question": "Name the total number of opponent of record 9-2", "context": "CREATE TABLE table_17186229_4 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_17186229_4 WHERE score_time = \"W 74-63\"", "question": "name the date where score time is w 74-63", "context": "CREATE TABLE table_17186229_4 (date VARCHAR, score_time VARCHAR)"}, {"answer": "SELECT episode FROM table_1723080_1 WHERE broadcast_date = \"11July1964\"", "question": "What episode aired on 11july1964?", "context": "CREATE TABLE table_1723080_1 (episode VARCHAR, broadcast_date VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_1723080_1 WHERE broadcast_date = \"1August1964\"", "question": "How many viewers were there on 1august1964?", "context": "CREATE TABLE table_1723080_1 (viewers__in_millions_ VARCHAR, broadcast_date VARCHAR)"}, {"answer": "SELECT run_time FROM table_1723080_1 WHERE viewers__in_millions_ = \"7.4\"", "question": "What is run time when there were 7.4 million viewers?", "context": "CREATE TABLE table_1723080_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT MAX(2 AS nd_throw) FROM table_17265535_6 WHERE equation = \"(10 times 8) + 4\"", "question": "If the equation is (10 times 8) + 4, what would be the 2nd throw?", "context": "CREATE TABLE table_17265535_6 (equation VARCHAR)"}, {"answer": "SELECT 3 AS rd_throw FROM table_17265535_6 WHERE equation = \"all equal\"", "question": "If the equation is all equal, what is the 3rd throw?", "context": "CREATE TABLE table_17265535_6 (equation VARCHAR)"}, {"answer": "SELECT MAX(2 AS nd_throw) FROM table_17265535_6 WHERE equation = \"(10 times 1) + 3\"", "question": "If the equation is (10 times 1) + 3, what is the 2nd throw?", "context": "CREATE TABLE table_17265535_6 (equation VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_17271495_1 WHERE points = \"30\"", "question": "Name the total number of grid for 30", "context": "CREATE TABLE table_17271495_1 (grid VARCHAR, points VARCHAR)"}, {"answer": "SELECT laps FROM table_17271495_1 WHERE points = \"18\"", "question": "Name the laps for 18 pointss", "context": "CREATE TABLE table_17271495_1 (laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT driver FROM table_17271495_1 WHERE points = \"13\"", "question": "Name the drive for points being 13", "context": "CREATE TABLE table_17271495_1 (driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_17271495_1 WHERE driver = \"Scott Dixon\"", "question": "Name the team for scott dixon", "context": "CREATE TABLE table_17271495_1 (team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT team FROM table_17271495_1 WHERE driver = \"Darren Manning\"", "question": "Name the team of darren manning", "context": "CREATE TABLE table_17271495_1 (team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT record FROM table_17288825_8 WHERE score = \"L 93\u2013104 (OT)\"", "question": "Name the record for score of  l 93\u2013104 (ot)", "context": "CREATE TABLE table_17288825_8 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_17288825_9 WHERE team = \"Memphis\"", "question": "On what date did the Rockets play Memphis?", "context": "CREATE TABLE table_17288825_9 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_17288825_9 WHERE game = 72", "question": "Who had the most poinst in game 72?", "context": "CREATE TABLE table_17288825_9 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_17288825_6 WHERE high_assists = \"Tracy McGrady (8)\"", "question": "When tracy mcgrady (8) is leading in assists what is the date?", "context": "CREATE TABLE table_17288825_6 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17288825_6 WHERE team = \"@ New Orleans\"", "question": "When @ new orleans is the team who has the highest amount of rebounds?", "context": "CREATE TABLE table_17288825_6 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_17288825_6 WHERE high_assists = \"Aaron Brooks (6)\"", "question": "When aaron brooks (6) had the highest amount of assists what is the date?", "context": "CREATE TABLE table_17288825_6 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT record FROM table_17288869_5 WHERE date = \"November 1\"", "question": "What was the record on November 1?", "context": "CREATE TABLE table_17288869_5 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_17288869_5 WHERE date = \"November 7\"", "question": "What was the record on November 7?", "context": "CREATE TABLE table_17288869_5 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT grid FROM table_17304504_1 WHERE points = \"14\"", "question": "What is the grid for the driver who earned 14 points?", "context": "CREATE TABLE table_17304504_1 (grid VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(car_no) FROM table_17304308_1 WHERE team = \"Panther Racing\" AND grid = 9", "question": "Name the total number of cars for panther racing and grid of 9", "context": "CREATE TABLE table_17304308_1 (car_no VARCHAR, team VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_17304308_1 WHERE points = \"17\"", "question": "Name the least grid for 17 points ", "context": "CREATE TABLE table_17304308_1 (grid INTEGER, points VARCHAR)"}, {"answer": "SELECT COUNT(fin_pos) FROM table_17304308_1 WHERE points = \"12\" AND time_retired = \"Accident\"", "question": "Name the total number of fin pos for 12 points of accident", "context": "CREATE TABLE table_17304308_1 (fin_pos VARCHAR, points VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(driver) FROM table_17304308_1 WHERE fin_pos = 19", "question": "Name the number of driver for fin pos of 19", "context": "CREATE TABLE table_17304308_1 (driver VARCHAR, fin_pos VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_17311759_7 WHERE date = \"February 4\"", "question": "how many high assists stats were maade on february 4", "context": "CREATE TABLE table_17311759_7 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17311759_7 WHERE date = \"February 4\"", "question": "who made high assists on february 4", "context": "CREATE TABLE table_17311759_7 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17311797_10 WHERE game = 81", "question": "What was the score in game 81?", "context": "CREATE TABLE table_17311797_10 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_17311797_10 WHERE game = 79", "question": "Which player had the highest points in game 79?", "context": "CREATE TABLE table_17311797_10 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_17311783_9 WHERE date = \"March 9\"", "question": "What team(s) did they play on march 9?", "context": "CREATE TABLE table_17311783_9 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_17311783_9 WHERE team = \"Cleveland\"", "question": "Who had the high point total against cleveland?", "context": "CREATE TABLE table_17311783_9 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_17323042_8 WHERE team = \"Miami\"", "question": "When did they play Miami?", "context": "CREATE TABLE table_17323042_8 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_17323529_5 WHERE location_attendance = \"Staples Center 13,266\"", "question": "Name the total number of score for staples center 13,266", "context": "CREATE TABLE table_17323529_5 (score VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_points FROM table_17323529_5 WHERE date = \"November 24\"", "question": "Name the high points for the date of november 24", "context": "CREATE TABLE table_17323529_5 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17323529_5 WHERE score = \"L 98\u2013103 (OT)\"", "question": "Name the high assists for  l 98\u2013103 (ot)", "context": "CREATE TABLE table_17323529_5 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_17340355_10 WHERE date = \"April 1\"", "question": "What was the team's score on April 1?", "context": "CREATE TABLE table_17340355_10 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17340355_10 WHERE high_rebounds = \"Matt Barnes (11)\"", "question": "Who did the most assists when Matt Barnes (11) got the most rebounds?", "context": "CREATE TABLE table_17340355_10 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_17340355_10 WHERE high_points = \"Steve Nash (24)\"", "question": "Steve Nash (24) got high points for how many teams?", "context": "CREATE TABLE table_17340355_10 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_17340355_9 WHERE date = \"March 15\"", "question": "After the March 15 game, what was the team's record?", "context": "CREATE TABLE table_17340355_9 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT written_by FROM table_17356042_1 WHERE directed_by = \"Arthur Albert\"", "question": "Name who wrote the episode directed by arthur albert", "context": "CREATE TABLE table_17356042_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_17356042_1 WHERE written_by = \"R. Scott Gemmill\"", "question": "Name the title that was written by r. scott gemmill", "context": "CREATE TABLE table_17356042_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_17356042_1 WHERE series__number = 236", "question": "Name who directed the episode for the series number 236", "context": "CREATE TABLE table_17356042_1 (directed_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT MIN(won) FROM table_17358515_1 WHERE goals_for = 60", "question": "How many games did the team who scored 60 goals win?", "context": "CREATE TABLE table_17358515_1 (won INTEGER, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(points_2) FROM table_17358515_1 WHERE team = \"Goole Town\"", "question": "How many points did Goole Town accumulate?", "context": "CREATE TABLE table_17358515_1 (points_2 VARCHAR, team VARCHAR)"}, {"answer": "SELECT lost FROM table_17366952_1 WHERE goal_average_1 = \"1.21\"", "question": "List all losses with average goals of 1.21.", "context": "CREATE TABLE table_17366952_1 (lost VARCHAR, goal_average_1 VARCHAR)"}, {"answer": "SELECT team FROM table_17366952_1 WHERE goal_average_1 = \"1.34\"", "question": "Which team had goal averages of 1.34?", "context": "CREATE TABLE table_17366952_1 (team VARCHAR, goal_average_1 VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_17366952_1 WHERE team = \"Bangor City\"", "question": "What is the highest position of the Bangor City team?", "context": "CREATE TABLE table_17366952_1 (position INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_17366952_1 WHERE team = \"Lancaster City\"", "question": "How many times did the Lancaster City team play?", "context": "CREATE TABLE table_17366952_1 (played VARCHAR, team VARCHAR)"}, {"answer": "SELECT athlete FROM table_1745820_5 WHERE event = \"Flyweight\"", "question": "Which athlete competed in the flyweight division?", "context": "CREATE TABLE table_1745820_5 (athlete VARCHAR, event VARCHAR)"}, {"answer": "SELECT semifinals FROM table_1745820_5 WHERE round_of_32 = \"Bye\"", "question": "When there was a bye in the round of 32, what was the result in the round of 16?", "context": "CREATE TABLE table_1745820_5 (semifinals VARCHAR, round_of_32 VARCHAR)"}, {"answer": "SELECT part_4 FROM table_1745843_8 WHERE part_1 = \"lesan\"", "question": "What is the part 4 when part 1 is \"lesan\"?", "context": "CREATE TABLE table_1745843_8 (part_4 VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_1745843_8 WHERE part_3 = \"sufun\"", "question": "What is the verb meaning of the word with part 3 \"sufun\"?", "context": "CREATE TABLE table_1745843_8 (verb_meaning VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT class FROM table_1745843_8 WHERE part_4 = \"giheizan\"", "question": "What class in the word with part 4 \"giheizan\"?", "context": "CREATE TABLE table_1745843_8 (class VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT part_4 FROM table_1745843_8 WHERE part_1 = \"heizan\"", "question": "What is the part 4 of the word with the part 1 \"heizan\"?", "context": "CREATE TABLE table_1745843_8 (part_4 VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT part_3 FROM table_1745843_8 WHERE class = \"7a\"", "question": "What is the part 3 of the word in class 7a?", "context": "CREATE TABLE table_1745843_8 (part_3 VARCHAR, class VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_1745843_8 WHERE part_2 = \"bant\"", "question": "What is the verb meaning of the word with part 2 \"bant\"?", "context": "CREATE TABLE table_1745843_8 (verb_meaning VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_17521433_1 WHERE average = \"8.848\"", "question": "What was the swimsuit score for the country with the average score of 8.848?", "context": "CREATE TABLE table_17521433_1 (swimsuit VARCHAR, average VARCHAR)"}, {"answer": "SELECT country FROM table_17521433_1 WHERE swimsuit = \"8.788\"", "question": "What country had a swimsuit score of 8.788?", "context": "CREATE TABLE table_17521433_1 (country VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_17521433_1 WHERE country = \"Illinois\"", "question": "What was the swimsuit score for Illinois?", "context": "CREATE TABLE table_17521433_1 (swimsuit VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_17521433_1 WHERE evening_gown = \"9.100\"", "question": "What was the average score for the country with the evening gown score of 9.100?", "context": "CREATE TABLE table_17521433_1 (average VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_17516967_1 WHERE state = \"Oregon\"", "question": "Name the swuinsuit for oregon", "context": "CREATE TABLE table_17516967_1 (swimsuit VARCHAR, state VARCHAR)"}, {"answer": "SELECT preliminary FROM table_17516967_1 WHERE state = \"North Carolina\"", "question": "Name the preliminary for north carolina", "context": "CREATE TABLE table_17516967_1 (preliminary VARCHAR, state VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_176521_2 WHERE official_name = \"Maugerville\"", "question": "What are the census ranking(s) of maugerville?", "context": "CREATE TABLE table_176521_2 (census_ranking VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT status FROM table_176521_2 WHERE area_km_2 = \"304.06\"", "question": "What is the status(es) of the place with an area of 304.06 km2?", "context": "CREATE TABLE table_176521_2 (status VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT official_name FROM table_176521_2 WHERE area_km_2 = \"304.06\"", "question": "What are the official name(s) of places with an area of 304.06 km2?", "context": "CREATE TABLE table_176521_2 (official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT location_denotes_location_of_school_by_seattle_neighborhood, _does_not_necessary_correspond_with_attendance_area FROM table_17641314_3 WHERE school = \"Eckstein\"", "question": "Name the location for school eckstein", "context": "CREATE TABLE table_17641314_3 (location_denotes_location_of_school_by_seattle_neighborhood VARCHAR, _does_not_necessary_correspond_with_attendance_area VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(11 AS _12_enrollment) FROM table_17641314_3 WHERE school = \"Washington\"", "question": "Name the minimum 11-12 enrollment for washington school", "context": "CREATE TABLE table_17641314_3 (school VARCHAR)"}, {"answer": "SELECT length FROM table_1773707_2 WHERE body_style = \"500 E\"", "question": "What's the length of the model with 500 E body style?", "context": "CREATE TABLE table_1773707_2 (length VARCHAR, body_style VARCHAR)"}, {"answer": "SELECT length FROM table_1773707_2 WHERE body_style = \"Sedan\"", "question": "What's the length of the model with Sedan body style?", "context": "CREATE TABLE table_1773707_2 (length VARCHAR, body_style VARCHAR)"}, {"answer": "SELECT length FROM table_1773707_2 WHERE height = \"mm (in)\"", "question": "What are the lengths of the models that are mm (in) tall?", "context": "CREATE TABLE table_1773707_2 (length VARCHAR, height VARCHAR)"}, {"answer": "SELECT COUNT(provider) FROM table_1773908_3 WHERE resale = \"yes\" AND up__up_to_kbit_s_ = 1024", "question": "How many providers are there where the resale category is yes and bandwith is up is 1024?", "context": "CREATE TABLE table_1773908_3 (provider VARCHAR, resale VARCHAR, up__up_to_kbit_s_ VARCHAR)"}, {"answer": "SELECT MAX(down__up_to_kbit_s_) FROM table_1773908_3 WHERE provider = \"Deutsche Telekom AG\"", "question": "What is download bandwith where the provider is deutsche telekom ag?", "context": "CREATE TABLE table_1773908_3 (down__up_to_kbit_s_ INTEGER, provider VARCHAR)"}, {"answer": "SELECT provider FROM table_1773908_3 WHERE up__up_to_kbit_s_ = 1024 AND resale = \"yes\"", "question": "Who are all of the telecom providers for which the upload rate is 1024 kbits and the resale category is yes?", "context": "CREATE TABLE table_1773908_3 (provider VARCHAR, up__up_to_kbit_s_ VARCHAR, resale VARCHAR)"}, {"answer": "SELECT dsl_type FROM table_1773908_3 WHERE provider = \"M-net\"", "question": "What are all the dsl type offered by the M-Net telecom company?", "context": "CREATE TABLE table_1773908_3 (dsl_type VARCHAR, provider VARCHAR)"}, {"answer": "SELECT resale FROM table_1773908_3 WHERE provider = \"Netcologne\"", "question": "What is the resale category for the provider NetCologne?", "context": "CREATE TABLE table_1773908_3 (resale VARCHAR, provider VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_17782308_1 WHERE week = 13", "question": "How many results are listed for week 13?", "context": "CREATE TABLE table_17782308_1 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT game_site FROM table_17782308_1 WHERE date = \"October 16, 1966\"", "question": "On October 16, 1966, what was the game site?", "context": "CREATE TABLE table_17782308_1 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_17782308_1 WHERE opponent = \"Miami Dolphins\"", "question": "What was the date of the game when the opponent was the Miami Dolphins?", "context": "CREATE TABLE table_17782308_1 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(date_released) FROM table_17798548_4 WHERE season = \"The Complete 4th Series\"", "question": "On how many dates was the complete 4th series released?", "context": "CREATE TABLE table_17798548_4 (date_released VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(_number_of_discs) FROM table_17798548_4 WHERE season = \"The Complete 4th Series\"", "question": "How many discs for the complete 4th series?", "context": "CREATE TABLE table_17798548_4 (_number_of_discs INTEGER, season VARCHAR)"}, {"answer": "SELECT date_released FROM table_17798548_4 WHERE season = \"The Complete 2nd Series: Volume One\"", "question": "What day was the complete 2nd series: volume one released?", "context": "CREATE TABLE table_17798548_4 (date_released VARCHAR, season VARCHAR)"}, {"answer": "SELECT original_us_air_date FROM table_17901155_4 WHERE viewers__millions_ = \"4.4\"", "question": "Which US air date had 4.4 million viewers?", "context": "CREATE TABLE table_17901155_4 (original_us_air_date VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT viewers__millions_ FROM table_17901155_4 WHERE no_in_season = 6", "question": "How many million viewers watched episode 6?", "context": "CREATE TABLE table_17901155_4 (viewers__millions_ VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT MAX(wickets) FROM table_17900317_5 WHERE best = \"4/22\"", "question": "Name the most wickets for best is 4/22", "context": "CREATE TABLE table_17900317_5 (wickets INTEGER, best VARCHAR)"}, {"answer": "SELECT MIN(matches) FROM table_17900317_5 WHERE runs = 276", "question": "Name the least matches for runs being 276", "context": "CREATE TABLE table_17900317_5 (matches INTEGER, runs VARCHAR)"}, {"answer": "SELECT matches FROM table_17900317_5 WHERE wickets = 17", "question": "Name the matches for wickets 17", "context": "CREATE TABLE table_17900317_5 (matches VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT MAX(4 AS _inns) FROM table_17900317_5", "question": "Name the most 4/inns", "context": "CREATE TABLE table_17900317_5 (Id VARCHAR)"}, {"answer": "SELECT date FROM table_17927935_1 WHERE week = 4", "question": "What was the date of the week 4 game?", "context": "CREATE TABLE table_17927935_1 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_17927935_1 WHERE opponent = \"New York Jets\"", "question": "What was the week number when the opponent was the New York Jets?", "context": "CREATE TABLE table_17927935_1 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT district FROM table_1805191_14 WHERE first_elected = 1986", "question": "What is the district when the first elected was in 1986?", "context": "CREATE TABLE table_1805191_14 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1805191_14 WHERE first_elected = 1998 AND party = \"Republican\"", "question": "Who were the candidates when the first elected was a republican in 1998? ", "context": "CREATE TABLE table_1805191_14 (candidates VARCHAR, first_elected VARCHAR, party VARCHAR)"}, {"answer": "SELECT COUNT(results) FROM table_1805191_34 WHERE incumbent = \"Mike McIntyre\"", "question": "How many times was Mike McIntyre elected?", "context": "CREATE TABLE table_1805191_34 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1805191_34 WHERE first_elected = 1998", "question": "Which party was elected first in 1998?", "context": "CREATE TABLE table_1805191_34 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1805191_34 WHERE incumbent = \"Robin Hayes\"", "question": "How many times did Robin Hayes run?", "context": "CREATE TABLE table_1805191_34 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1805191_50 WHERE party = \"Democratic\" AND first_elected = 1998", "question": "What district first elected a Democratic incumbent in 1998?", "context": "CREATE TABLE table_1805191_50 (district VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT ast FROM table_18064020_21 WHERE avg = \"23.7\"", "question": "How many tackle assists for the player who averages 23.7?", "context": "CREATE TABLE table_18064020_21 (ast VARCHAR, avg VARCHAR)"}, {"answer": "SELECT COUNT(solo) FROM table_18064020_21 WHERE name = \"Jake Flaherty\"", "question": "How many players named jake flaherty?", "context": "CREATE TABLE table_18064020_21 (solo VARCHAR, name VARCHAR)"}, {"answer": "SELECT brup FROM table_18064020_21 WHERE name = \"total\"", "question": "What is the total brup for the team?", "context": "CREATE TABLE table_18064020_21 (brup VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(td) FROM table_18064020_21", "question": "What is the largest number of tds scored for a player?", "context": "CREATE TABLE table_18064020_21 (td INTEGER)"}, {"answer": "SELECT no_yds FROM table_18064020_21 WHERE tfl_yds = \"2.5-4\"", "question": "How many yards for the player with tfl-yds of 2.5-4?", "context": "CREATE TABLE table_18064020_21 (no_yds VARCHAR, tfl_yds VARCHAR)"}, {"answer": "SELECT MIN(tonkolili) FROM table_18103265_1", "question": "What is the lowest number associated with Tonkolili?", "context": "CREATE TABLE table_18103265_1 (tonkolili INTEGER)"}, {"answer": "SELECT main_services FROM table_18118221_1 WHERE total_passengers__millions__2011_12 = \"14.849\"", "question": "What is the main service for the station with 14.849 million passengers 2011-12? ", "context": "CREATE TABLE table_18118221_1 (main_services VARCHAR, total_passengers__millions__2011_12 VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_18118221_1 WHERE railway_station = \"Gatwick Airport\"", "question": "What is the lowest rank of Gatwick Airport? ", "context": "CREATE TABLE table_18118221_1 (rank INTEGER, railway_station VARCHAR)"}, {"answer": "SELECT location FROM table_18118221_1 WHERE total_passengers__millions__2011_12 = \"103.534\"", "question": "Which location has 103.534 million passengers in 2011-12? ", "context": "CREATE TABLE table_18118221_1 (location VARCHAR, total_passengers__millions__2011_12 VARCHAR)"}, {"answer": "SELECT annual_interchanges__millions__2011_12 FROM table_18118221_1 WHERE annual_entry_exit__millions__2011_12 = \"36.609\"", "question": "How many annual interchanges in the millions occurred in 2011-12 when the number of annual entry/exits was 36.609 million? ", "context": "CREATE TABLE table_18118221_1 (annual_interchanges__millions__2011_12 VARCHAR, annual_entry_exit__millions__2011_12 VARCHAR)"}, {"answer": "SELECT winning_team FROM table_18095719_2 WHERE circuit = \"Zolder\"", "question": "Who was the winning team on the circuit Zolder?", "context": "CREATE TABLE table_18095719_2 (winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_18095719_2 WHERE circuit = \"AVUS\"", "question": "What round was circuit Avus?", "context": "CREATE TABLE table_18095719_2 (round INTEGER, circuit VARCHAR)"}, {"answer": "SELECT pole_position FROM table_18095719_2 WHERE round = 7", "question": "Who had pole position in round 7?", "context": "CREATE TABLE table_18095719_2 (pole_position VARCHAR, round VARCHAR)"}, {"answer": "SELECT modern_german__standard_wording_ FROM table_181240_1 WHERE english___bcp__ = \"For thine is the kingdom, the power\"", "question": "What is the english (bcp) phrase \"for thine is the kingdom, the power\" in modern german with standard wording?", "context": "CREATE TABLE table_181240_1 (modern_german__standard_wording_ VARCHAR, english___bcp__ VARCHAR)"}, {"answer": "SELECT modern_german__standard_wording_ FROM table_181240_1 WHERE writing_system_2__german_based_ = \"wie mir die vergewwe wu uns schuldich sinn.\"", "question": "What is the modern german standard wording for the german based writing system 2 phrase \"wie mir die vergewwe wu uns schuldich sinn.\"?", "context": "CREATE TABLE table_181240_1 (modern_german__standard_wording_ VARCHAR, writing_system_2__german_based_ VARCHAR)"}, {"answer": "SELECT _number_of_new_stations FROM table_1817879_2 WHERE date_opened = \"June 24, 2000\"", "question": "How many news stations opened on the date of June 24, 2000?", "context": "CREATE TABLE table_1817879_2 (_number_of_new_stations VARCHAR, date_opened VARCHAR)"}, {"answer": "SELECT length__miles_ FROM table_1817879_2 WHERE endpoints = \"Pico to 7th St/Metro Center\"", "question": "What is the length  (miles) when pico to 7th st/metro center are the endpoints?", "context": "CREATE TABLE table_1817879_2 (length__miles_ VARCHAR, endpoints VARCHAR)"}, {"answer": "SELECT line_s_ FROM table_1817879_2 WHERE segment_description = \"Red Line MOS-2 West\"", "question": "How many lines have the segment description of red line mos-2 west?", "context": "CREATE TABLE table_1817879_2 (line_s_ VARCHAR, segment_description VARCHAR)"}, {"answer": "SELECT length__miles_ FROM table_1817879_2 WHERE endpoints = \"Westlake/MacArthur Park to Wilshire/Western\"", "question": "What is the lenth (miles) of endpoints westlake/macarthur park to wilshire/western?", "context": "CREATE TABLE table_1817879_2 (length__miles_ VARCHAR, endpoints VARCHAR)"}, {"answer": "SELECT date_opened FROM table_1817879_2 WHERE segment_description = \"Red Line MOS-2 North\"", "question": "What date of segment description red line mos-2 north open?", "context": "CREATE TABLE table_1817879_2 (date_opened VARCHAR, segment_description VARCHAR)"}, {"answer": "SELECT COUNT(_number_of_new_stations) FROM table_1817879_2 WHERE length__miles_ = \"6.0\"", "question": "How many new stations have a lenght (miles) of 6.0?", "context": "CREATE TABLE table_1817879_2 (_number_of_new_stations VARCHAR, length__miles_ VARCHAR)"}, {"answer": "SELECT destroyed FROM table_1817852_1 WHERE 1990 = 14 AND survived = 6", "question": "If there were 14 in 1990 and 6 survived how many were destroyed?", "context": "CREATE TABLE table_1817852_1 (destroyed VARCHAR, survived VARCHAR)"}, {"answer": "SELECT COUNT(1990) FROM table_1817852_1 WHERE to_iran = 4 AND survived < 12.0", "question": "If 4 went to iran and the amount that survived was less than 12.0 how many were there in 1990?", "context": "CREATE TABLE table_1817852_1 (to_iran VARCHAR, survived VARCHAR)"}, {"answer": "SELECT destroyed FROM table_1817852_1 WHERE aircraft = \"USSR MiG-25 RB\"", "question": "If the aircraft was  ussr mig-25 rb how many were destroyed?", "context": "CREATE TABLE table_1817852_1 (destroyed VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT score FROM table_18183850_12 WHERE opponent_team = \"Belgium\"", "question": "What was the score when the opposing team was from Belgium?", "context": "CREATE TABLE table_18183850_12 (score VARCHAR, opponent_team VARCHAR)"}, {"answer": "SELECT COUNT(outcome) FROM table_18183850_12 WHERE opponent = \"Aleksandra Wozniak\"", "question": "How many outcomes were there when the opponent was Aleksandra Wozniak?", "context": "CREATE TABLE table_18183850_12 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_18183850_12 WHERE opponent = \"Dominika Cibulkov\u00e1\"", "question": "What was the score when the opponent was Dominika Cibulkov\u00e1?", "context": "CREATE TABLE table_18183850_12 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_18183850_12 WHERE opponent = \"Magdal\u00e9na Ryb\u00e1rikov\u00e1\"", "question": "What was the outcome of the game when the opponent was Magdal\u00e9na Ryb\u00e1rikov\u00e1?", "context": "CREATE TABLE table_18183850_12 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT edition FROM table_18183850_12 WHERE surface = \"Clay (i)\" AND outcome = \"Winner\"", "question": "What was the game edition when they played on the clay (i) surface and the outcome was a winner?", "context": "CREATE TABLE table_18183850_12 (edition VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT opponent FROM table_18207285_2 WHERE attendance = 60425", "question": "Who was the game attended by 60425 people played against?", "context": "CREATE TABLE table_18207285_2 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(raiders_first_downs) FROM table_18207285_2 WHERE game = 9", "question": "How many different counts of the Raiders first downs are there for the game number 9?", "context": "CREATE TABLE table_18207285_2 (raiders_first_downs VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_18207285_2 WHERE opponents = 42", "question": "What's the record in the game played against 42?", "context": "CREATE TABLE table_18207285_2 (record VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT result FROM table_18207285_2 WHERE attendance = 31095", "question": "What was the result of the game seen by 31095 people?", "context": "CREATE TABLE table_18207285_2 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(opponents) FROM table_18207285_2 WHERE result = \"Win\" AND game = 1", "question": "How many opponents played 1 game with a result win?", "context": "CREATE TABLE table_18207285_2 (opponents INTEGER, result VARCHAR, game VARCHAR)"}, {"answer": "SELECT award_winning_film FROM table_18220102_1 WHERE number_of_screening = \"50 films 50 televised\"", "question": "Which award-winning film has a screening number of 50 films 50 televised?", "context": "CREATE TABLE table_18220102_1 (award_winning_film VARCHAR, number_of_screening VARCHAR)"}, {"answer": "SELECT COUNT(award_winning_film) FROM table_18220102_1 WHERE opening_film = \"Encounters at the End of the World\"", "question": "How many award-winning films have the opening film of encounters at the end of the world?", "context": "CREATE TABLE table_18220102_1 (award_winning_film VARCHAR, opening_film VARCHAR)"}, {"answer": "SELECT COUNT(number_of_screening) FROM table_18220102_1 WHERE opening_film = \"The Journey of Vaan Nguyen\"", "question": "How many number of screenings have an opening film of the journey of vaan nguyen?", "context": "CREATE TABLE table_18220102_1 (number_of_screening VARCHAR, opening_film VARCHAR)"}, {"answer": "SELECT opening_film FROM table_18220102_1 WHERE date__opening_ = \"August 23\"", "question": "Which opening film has the opening date of august 23?", "context": "CREATE TABLE table_18220102_1 (opening_film VARCHAR, date__opening_ VARCHAR)"}, {"answer": "SELECT award_winning_film FROM table_18220102_1 WHERE date__closing_ = \"September 4\"", "question": "Which award-winning film has a closing date of September 4?", "context": "CREATE TABLE table_18220102_1 (award_winning_film VARCHAR, date__closing_ VARCHAR)"}, {"answer": "SELECT series__number FROM table_18217750_1 WHERE us_viewers__millions_ = \"20.64\"", "question": "What series number garnered 20.64 million viewers?", "context": "CREATE TABLE table_18217750_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT position FROM table_18278508_2 WHERE co_contestant__yaar_vs_pyaar_ = \"Pranita Sahu\"", "question": "What position did Pranita Sahu's team get?", "context": "CREATE TABLE table_18278508_2 (position VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT date_performed FROM table_18278508_2 WHERE main_contestant = \"Jatin Shah\" AND co_contestant__yaar_vs_pyaar_ = \"Shalini Chandran\"", "question": "What date did Jatin Shah and Shalini Chandran perform?", "context": "CREATE TABLE table_18278508_2 (date_performed VARCHAR, main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT main_contestant FROM table_18278508_2 WHERE co_contestant__yaar_vs_pyaar_ = \"Tina Parekh\"", "question": "Who performed with Tina Parekh?", "context": "CREATE TABLE table_18278508_2 (main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT position FROM table_18278508_2 WHERE total_score_week = \"41/60\"", "question": "What position did the team with the total score of 41/60 get?", "context": "CREATE TABLE table_18278508_2 (position VARCHAR, total_score_week VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_18303274_1 WHERE pole_position = \"Daijiro Hiura\" AND round = 5", "question": "Which round 5 Grand Prix had Daijiro Hiura at pole position? ", "context": "CREATE TABLE table_18303274_1 (grand_prix VARCHAR, pole_position VARCHAR, round VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_18303274_1 WHERE race_winner = \"Daijiro Hiura\"", "question": "What grand prixs did Daijiro Hiura win? ", "context": "CREATE TABLE table_18303274_1 (grand_prix VARCHAR, race_winner VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_18303274_1 WHERE grand_prix = \"Dutch TT\"", "question": "Who had the fastest lap in the Dutch TT Grand Prix? ", "context": "CREATE TABLE table_18303274_1 (fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT circuit FROM table_18303274_1 WHERE fastest_lap = \"Luis Salom\"", "question": "Luis Salom had the fastest lap on which circuits? ", "context": "CREATE TABLE table_18303274_1 (circuit VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_18335117_3 WHERE no_overall = 15", "question": "When 15 is the number overall what is the original air date?", "context": "CREATE TABLE table_18335117_3 (original_air_date VARCHAR, no_overall VARCHAR)"}, {"answer": "SELECT director FROM table_18335117_3 WHERE no_in_series = 1", "question": "When 1 is the number in series who is the director?", "context": "CREATE TABLE table_18335117_3 (director VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_18335117_2 WHERE production_code = 102", "question": "When did the episode first air that had a production code of 102?", "context": "CREATE TABLE table_18335117_2 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_18335117_2 WHERE production_code = 107", "question": "When did the episodes first air that had a production code of 107?", "context": "CREATE TABLE table_18335117_2 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_18335117_2 WHERE writer = \"Tim Loane\"", "question": "What is the highest production code of an episode written by Tim Loane?", "context": "CREATE TABLE table_18335117_2 (production_code INTEGER, writer VARCHAR)"}, {"answer": "SELECT COUNT(number_of_editions) FROM table_1840433_2 WHERE most_wins_by = \"Franco Marvulli (4)\"", "question": "How many editions have a most wins value of Franco Marvulli (4)?", "context": "CREATE TABLE table_1840433_2 (number_of_editions VARCHAR, most_wins_by VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_18428016_1 WHERE written_by = \"John Banas\" AND directed_by = \"Pino Amenta\"", "question": "Name the total number in the series written by john banas and directed by pino amenta", "context": "CREATE TABLE table_18428016_1 (no_in_series VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT kentucky FROM table_18461045_1 WHERE illinois = \"Rock Falls LL Rock Falls\"", "question": "What was the little league team from Kentucky when the little league team from Illinois was Rock Falls LL Rock Falls?", "context": "CREATE TABLE table_18461045_1 (kentucky VARCHAR, illinois VARCHAR)"}, {"answer": "SELECT indiana FROM table_18461045_1 WHERE michigan = \"Midland Northeast LL Midland\"", "question": "What was the little league team from Indiana when the little league team from Michigan was Midland Northeast LL Midland?", "context": "CREATE TABLE table_18461045_1 (indiana VARCHAR, michigan VARCHAR)"}, {"answer": "SELECT kentucky FROM table_18461045_1 WHERE indiana = \"Brownsburg LL Brownsburg\" AND wisconsin = \"Merrill LL Merrill\"", "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 ohio FROM table_18461045_1 WHERE kentucky = \"Warren County South LL Bowling Green\"", "question": "What was the little league team from Ohio when the little league team from Kentucky was Warren County South LL Bowling Green?", "context": "CREATE TABLE table_18461045_1 (ohio VARCHAR, kentucky VARCHAR)"}, {"answer": "SELECT michigan FROM table_18461045_1 WHERE indiana = \"Terre Haute North LL Terre Haute\"", "question": "What was the little league team from Michigan when the little league team from Indiana was Terre Haute North LL Terre Haute? ", "context": "CREATE TABLE table_18461045_1 (michigan VARCHAR, indiana VARCHAR)"}, {"answer": "SELECT kentucky FROM table_18461045_1 WHERE michigan = \"Grosse Pointe Farms-City LL Grosse Pointe Farms\"", "question": "What was the little league team from Kentucky when the little league team from Michigan was Grosse Pointe Farms-City LL Grosse Pointe Farms? ", "context": "CREATE TABLE table_18461045_1 (kentucky VARCHAR, michigan VARCHAR)"}, {"answer": "SELECT COUNT(table_points) FROM table_18505065_1 WHERE difference = \"+194\"", "question": " How many table points are listed for the deficit is +194? ", "context": "CREATE TABLE table_18505065_1 (table_points VARCHAR, difference VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_18505065_1 WHERE against = 175", "question": " How many games had a deficit of 175? ", "context": "CREATE TABLE table_18505065_1 (played VARCHAR, against VARCHAR)"}, {"answer": "SELECT theme_song_s_ FROM table_18540104_1 WHERE romaji_title = \"Magarikado no Kanojo\"", "question": "What is the theme song for Magarikado no Kanojo?", "context": "CREATE TABLE table_18540104_1 (theme_song_s_ VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT starring_actors FROM table_18540104_1 WHERE time_frame = \"Thursdays 22:00~22:54 2005-04-xx to 2005-06-xx\"", "question": "Who is the star of the program on Thursdays 22:00~22:54 2005-04-xx to 2005-06-xx?", "context": "CREATE TABLE table_18540104_1 (starring_actors VARCHAR, time_frame VARCHAR)"}, {"answer": "SELECT romaji_title FROM table_18540104_1 WHERE average_ratings = \"22.4%\"", "question": "What is the title with an average rating of 22.4%?", "context": "CREATE TABLE table_18540104_1 (romaji_title VARCHAR, average_ratings VARCHAR)"}, {"answer": "SELECT MAX(episodes) FROM table_18540104_1", "question": "What is maximum number of episodes for a show?", "context": "CREATE TABLE table_18540104_1 (episodes INTEGER)"}, {"answer": "SELECT japanese_title FROM table_18540104_1 WHERE average_ratings = \"11.6%\"", "question": "What is the Japanese title with an average rating of 11.6%?", "context": "CREATE TABLE table_18540104_1 (japanese_title VARCHAR, average_ratings VARCHAR)"}, {"answer": "SELECT starring_actors FROM table_18539834_2 WHERE time_frame = \"Tuesday 22:00~22:54 8 April 2008 to 17 June 2008\"", "question": "Who were the starting actors in the time frame of  tuesday 22:00~22:54 8 april 2008 to 17 june 2008?", "context": "CREATE TABLE table_18539834_2 (starring_actors VARCHAR, time_frame VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_18539834_2 WHERE tv_station = \"TV Asahi\"", "question": "What are the japanese title(s) for tv asahi?", "context": "CREATE TABLE table_18539834_2 (japanese_title VARCHAR, tv_station VARCHAR)"}, {"answer": "SELECT COUNT(romaji_title) FROM table_18539834_2 WHERE average_ratings = \"8.9%\"", "question": "How many titles had an average rating of 8.9%?", "context": "CREATE TABLE table_18539834_2 (romaji_title VARCHAR, average_ratings VARCHAR)"}, {"answer": "SELECT average_ratings FROM table_18539834_2 WHERE tv_station = \"TV Asahi\"", "question": "What is the average rating for tv asahi?", "context": "CREATE TABLE table_18539834_2 (average_ratings VARCHAR, tv_station VARCHAR)"}, {"answer": "SELECT top_speed FROM table_1857216_1 WHERE transmission = \"4-speed automatic\" AND production = \"2002-2005\"", "question": "What is the top speed of a 4-speed automatic with production in 2002-2005?", "context": "CREATE TABLE table_1857216_1 (top_speed VARCHAR, transmission VARCHAR, production VARCHAR)"}, {"answer": "SELECT top_speed FROM table_1857216_1 WHERE production = \"2006-2009\" AND transmission = \"5-speed manual\"", "question": "What is the top speed of a 5-speed manual transmission produced in 2006-2009?", "context": "CREATE TABLE table_1857216_1 (top_speed VARCHAR, production VARCHAR, transmission VARCHAR)"}, {"answer": "SELECT acceleration_0_100km_h__0_62mph_ FROM table_1857216_1 WHERE production = \"2002-2006\"", "question": "What is the acceleration 0-100km/h that was produced in 2002-2006?", "context": "CREATE TABLE table_1857216_1 (acceleration_0_100km_h__0_62mph_ VARCHAR, production VARCHAR)"}, {"answer": "SELECT township FROM table_18600760_3 WHERE geo_id = 3807116660", "question": "What was the township with a geo ID of 3807116660?", "context": "CREATE TABLE table_18600760_3 (township VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT county FROM table_18600760_3 WHERE longitude = \"-102.302775\"", "question": "What was the county with a longitude of -102.302775?", "context": "CREATE TABLE table_18600760_3 (county VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT land___sqmi__ FROM table_18600760_3 WHERE latitude = \"48.763937\"", "question": "What was the land area in sqmi that has a latitude of 48.763937?", "context": "CREATE TABLE table_18600760_3 (land___sqmi__ VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT county FROM table_18600760_3 WHERE latitude = \"46.770977\"", "question": "What was the county with a latitude of 46.770977?", "context": "CREATE TABLE table_18600760_3 (county VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT latitude FROM table_18600760_3 WHERE township = \"Clearwater\"", "question": "What was the latitude of the Clearwater townsship?", "context": "CREATE TABLE table_18600760_3 (latitude VARCHAR, township VARCHAR)"}, {"answer": "SELECT longitude FROM table_18600760_3 WHERE latitude = \"48.075823\"", "question": "What was the longitude of the township with a latitude of 48.075823?", "context": "CREATE TABLE table_18600760_3 (longitude VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT player FROM table_18621456_22 WHERE legs_lost = 41", "question": "Who is the player with 41 legs lost?", "context": "CREATE TABLE table_18621456_22 (player VARCHAR, legs_lost VARCHAR)"}, {"answer": "SELECT MAX(legs_lost) FROM table_18621456_22", "question": "What is the most legs lost of all?", "context": "CREATE TABLE table_18621456_22 (legs_lost INTEGER)"}, {"answer": "SELECT parallel_bars FROM table_18662026_10 WHERE floor = \"14.200\"", "question": "If the floor number is 14.200, what is the number for the parallel bars?", "context": "CREATE TABLE table_18662026_10 (parallel_bars VARCHAR, floor VARCHAR)"}, {"answer": "SELECT gymnast FROM table_18662026_10 WHERE parallel_bars = \"16.150\"", "question": "If the parallel bars is 16.150, who is the gymnast?", "context": "CREATE TABLE table_18662026_10 (gymnast VARCHAR, parallel_bars VARCHAR)"}, {"answer": "SELECT COUNT(gymnast) FROM table_18662026_10 WHERE parallel_bars = \"14.025\"", "question": "If the parallel bars is 14.025, what is the total number of gymnasts?", "context": "CREATE TABLE table_18662026_10 (gymnast VARCHAR, parallel_bars VARCHAR)"}, {"answer": "SELECT parallel_bars FROM table_18662026_10 WHERE floor = \"14.175\" AND horizontal_bar = \"N/A\"", "question": "If the horizontal bar is n/a and the floor is 14.175, what is the number for the parallel bars?", "context": "CREATE TABLE table_18662026_10 (parallel_bars VARCHAR, floor VARCHAR, horizontal_bar VARCHAR)"}, {"answer": "SELECT points_classification FROM table_18733814_2 WHERE stage = 19", "question": "When 19 is the stage who is the points classification?", "context": "CREATE TABLE table_18733814_2 (points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT general_classification FROM table_18733814_2 WHERE points_classification = \"Alessandro Petacchi\" AND young_rider_classification = \"Thomas L\u00f6fkvist\"", "question": "When thomas l\u00f6fkvist is the  young rider classification and alessandro petacchi is the points classification who are the general classifications? ", "context": "CREATE TABLE table_18733814_2 (general_classification VARCHAR, points_classification VARCHAR, young_rider_classification VARCHAR)"}, {"answer": "SELECT winner FROM table_18733814_2 WHERE general_classification = \"Thomas L\u00f6fkvist\"", "question": "When  thomas l\u00f6fkvist is the general classification who is the winner?", "context": "CREATE TABLE table_18733814_2 (winner VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT points_classification FROM table_18733814_2 WHERE winner = \"Philippe Gilbert\"", "question": "When philippe gilbert is the winner who is the points classification?", "context": "CREATE TABLE table_18733814_2 (points_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT general_classification FROM table_18733814_2 WHERE winner = \"Danilo Di Luca\"", "question": "When danilo di luca is the winner who is the general classification? ", "context": "CREATE TABLE table_18733814_2 (general_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MIN(_number_s_reservoir_and_gnis_query_link) FROM table_18760137_2 WHERE _number_s_lake_and_gnis_query_link = 60", "question": "Name the minimum number of reservoir for gnis query link where numbers lake gnis query link being 60", "context": "CREATE TABLE table_18760137_2 (_number_s_reservoir_and_gnis_query_link INTEGER, _number_s_lake_and_gnis_query_link VARCHAR)"}, {"answer": "SELECT MAX(_number_s_dam_and_gnis_query_link) FROM table_18760137_2 WHERE borough_or_census_area = \"Fairbanks North Star\"", "question": "Name the most numbers dam and gnis query link for borough or census area for fairbanks north star", "context": "CREATE TABLE table_18760137_2 (_number_s_dam_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR)"}, {"answer": "SELECT location FROM table_18752986_1 WHERE nickname = \"Bears\"", "question": "What is the location for the club with the nickname the bears?", "context": "CREATE TABLE table_18752986_1 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_18752986_1 WHERE coach = \"Steve Mayne\"", "question": "What is the code nickname where Steve Mayne is the coach?", "context": "CREATE TABLE table_18752986_1 (nickname VARCHAR, coach VARCHAR)"}, {"answer": "SELECT first_season FROM table_18752986_1 WHERE home_ground_s_ = \"Hillcrest Reserve\"", "question": "What is the dates where Hillcrest Reserve is the home grounds?", "context": "CREATE TABLE table_18752986_1 (first_season VARCHAR, home_ground_s_ VARCHAR)"}, {"answer": "SELECT captain FROM table_18752986_1 WHERE location = \"Caversham\"", "question": "For location Caversham, what is the name of the captain?", "context": "CREATE TABLE table_18752986_1 (captain VARCHAR, location VARCHAR)"}, {"answer": "SELECT home_ground_s_ FROM table_18752986_1 WHERE nickname = \"Swans\"", "question": "With the nickname the swans, what is the home ground?", "context": "CREATE TABLE table_18752986_1 (home_ground_s_ VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT record FROM table_18847692_2 WHERE opponent = \"Washington Redskins\"", "question": "What is the record when the opponent is washington redskins?", "context": "CREATE TABLE table_18847692_2 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(opponents) FROM table_18847692_2", "question": "What is the minimum number of opponents?", "context": "CREATE TABLE table_18847692_2 (opponents INTEGER)"}, {"answer": "SELECT COUNT(province) FROM table_1888051_1 WHERE area__km\u00b2_ = \"1605.35\"", "question": "when area (km\u00b2) is 1605.35, how many provinces are there?", "context": "CREATE TABLE table_1888051_1 (province VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_1888051_1 WHERE province = \"Monse\u00f1or Nouel\"", "question": "when province is monse\u00f1or nouel, what is the area (km\u00b2)?", "context": "CREATE TABLE table_1888051_1 (area__km\u00b2_ VARCHAR, province VARCHAR)"}, {"answer": "SELECT COUNT(capital) FROM table_1888051_1 WHERE area__km\u00b2_ = \"1111.14\"", "question": "How many capitals are there when area (km\u00b2) is 1111.14?", "context": "CREATE TABLE table_1888051_1 (capital VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_1888051_1 WHERE capital = \"Nagua\"", "question": "Nagua has the area (km\u00b2) of?", "context": "CREATE TABLE table_1888051_1 (area__km\u00b2_ VARCHAR, capital VARCHAR)"}, {"answer": "SELECT period_in_office FROM table_1889233_2 WHERE parliament = \"11th\"", "question": "During what period were parliament 11th?", "context": "CREATE TABLE table_1889233_2 (period_in_office VARCHAR, parliament VARCHAR)"}, {"answer": "SELECT parliament FROM table_1889233_2 WHERE name = \"Lina Loh Woon Lee\"", "question": "what parliament's name is lina loh woon lee?", "context": "CREATE TABLE table_1889233_2 (parliament VARCHAR, name VARCHAR)"}, {"answer": "SELECT parliament FROM table_1889233_2 WHERE general_election_contested = 1997", "question": "What number parliament held it's election in 1997?", "context": "CREATE TABLE table_1889233_2 (parliament VARCHAR, general_election_contested VARCHAR)"}, {"answer": "SELECT period_in_office FROM table_1889233_2 WHERE constituency_contested = \"Aljunied GRC\"", "question": "What period were conscituency contested is aljunied grc?", "context": "CREATE TABLE table_1889233_2 (period_in_office VARCHAR, constituency_contested VARCHAR)"}, {"answer": "SELECT parliament FROM table_1889233_2 WHERE name = \"Sylvia Lim Swee Lian\"", "question": "Which parliament is sylvia lim swee lian?", "context": "CREATE TABLE table_1889233_2 (parliament VARCHAR, name VARCHAR)"}, {"answer": "SELECT finish FROM table_1893276_2 WHERE eliminated = \"Jim\"", "question": "When jim is eliminated what is the finish?", "context": "CREATE TABLE table_1893276_2 (finish VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT reward FROM table_1893276_2 WHERE air_date = \"October 6, 2005\"", "question": "How many rewards are there for air date October 6, 2005?", "context": "CREATE TABLE table_1893276_2 (reward VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT eliminated FROM table_1893276_2 WHERE air_date = \"November 3, 2005\"", "question": "What was eliminated on the air date of November 3, 2005?", "context": "CREATE TABLE table_1893276_2 (eliminated VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT COUNT(air_date) FROM table_1893276_2 WHERE eliminated = \"Morgan\"", "question": "How many air dates were there when Morgan was eliminated?", "context": "CREATE TABLE table_1893276_2 (air_date VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT unit FROM table_18933037_3 WHERE mission_target = \"Same target; Linebacker II Offensive\"", "question": "When  same target; linebacker ii offensive is the same target what is the unit?", "context": "CREATE TABLE table_18933037_3 (unit VARCHAR, mission_target VARCHAR)"}, {"answer": "SELECT mission_target FROM table_18933037_3 WHERE cause_of_loss = \"Hit by SAM at 38,500 feet just after bomb release\"", "question": "When hit by sam at 38,500 feet just after bomb release was the cause of loss what is the mission/target?", "context": "CREATE TABLE table_18933037_3 (mission_target VARCHAR, cause_of_loss VARCHAR)"}, {"answer": "SELECT b_52_model FROM table_18933037_3 WHERE unit = \"7th BW attached to 43rd SW\"", "question": "When 7th bw attached to 43rd sw is the unit what is the b-52 model?", "context": "CREATE TABLE table_18933037_3 (b_52_model VARCHAR, unit VARCHAR)"}, {"answer": "SELECT b_52_model FROM table_18933037_3 WHERE unit = \"441st BS, 7th BW\"", "question": "When 441st bs, 7th bw is the unit what is the b-52 model?", "context": "CREATE TABLE table_18933037_3 (b_52_model VARCHAR, unit VARCHAR)"}, {"answer": "SELECT cause_of_loss FROM table_18933037_3 WHERE bomb_capacity = \"27 GP H-E bombs\"", "question": "When  27 gp h-e bombs the capacity of the bomb what is the cause of loss?", "context": "CREATE TABLE table_18933037_3 (cause_of_loss VARCHAR, bomb_capacity VARCHAR)"}, {"answer": "SELECT MIN(clubs_involved) FROM table_19089486_1 WHERE leagues_entering_this_round = \"none\" AND round = \"Semi finals\"", "question": "Name the least clubs involved for leagues being none for semi finals", "context": "CREATE TABLE table_19089486_1 (clubs_involved INTEGER, leagues_entering_this_round VARCHAR, round VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_19089486_1 WHERE round = \"Third round\"", "question": "Name the new entries this round for third round", "context": "CREATE TABLE table_19089486_1 (new_entries_this_round VARCHAR, round VARCHAR)"}, {"answer": "SELECT leagues_entering_this_round FROM table_19089486_1 WHERE clubs_involved = 4", "question": "Name the leagues entering this round for 4", "context": "CREATE TABLE table_19089486_1 (leagues_entering_this_round VARCHAR, clubs_involved VARCHAR)"}, {"answer": "SELECT MIN(clubs_remaining) FROM table_19089486_1", "question": "Name the least clubs remaining", "context": "CREATE TABLE table_19089486_1 (clubs_remaining INTEGER)"}, {"answer": "SELECT performed_by FROM table_191105_2 WHERE music_by = \"Bob Dorough\" AND episode_title = \"Conjunction Junction\"", "question": "When conjunction junction is the episode title and the music is by bob dorough who is the performer?", "context": "CREATE TABLE table_191105_2 (performed_by VARCHAR, music_by VARCHAR, episode_title VARCHAR)"}, {"answer": "SELECT COUNT(performed_by) FROM table_191105_2 WHERE subject = \"interjection\"", "question": "When interjection is the subject how many performers are there?", "context": "CREATE TABLE table_191105_2 (performed_by VARCHAR, subject VARCHAR)"}, {"answer": "SELECT episode_title FROM table_191105_2 WHERE subject = \"pronoun\"", "question": "When pronoun is the subject what is the episode title?", "context": "CREATE TABLE table_191105_2 (episode_title VARCHAR, subject VARCHAR)"}, {"answer": "SELECT lyrics_by FROM table_191105_2 WHERE subject = \"interjection\"", "question": "When interjection is the subject who are the lyrics by?", "context": "CREATE TABLE table_191105_2 (lyrics_by VARCHAR, subject VARCHAR)"}, {"answer": "SELECT COUNT(first_aired) FROM table_191105_2 WHERE performed_by = \"Zachary Sanders\"", "question": "When zachary sanders is the performer how many first aired are there?", "context": "CREATE TABLE table_191105_2 (first_aired VARCHAR, performed_by VARCHAR)"}, {"answer": "SELECT COUNT(music_by) FROM table_191105_2 WHERE performed_by = \"Zachary Sanders\"", "question": "When zachary sanders is the performer how many people is the music by?", "context": "CREATE TABLE table_191105_2 (music_by VARCHAR, performed_by VARCHAR)"}, {"answer": "SELECT world_rank FROM table_19112_3 WHERE market_value__billion_$_ = \"17.2\"", "question": "Name the world rank for market value 17.2", "context": "CREATE TABLE table_19112_3 (world_rank VARCHAR, market_value__billion_$_ VARCHAR)"}, {"answer": "SELECT market_value__billion_$_ FROM table_19112_3 WHERE company = \"RHB Capital\"", "question": "Name the market value for rhb capital", "context": "CREATE TABLE table_19112_3 (market_value__billion_$_ VARCHAR, company VARCHAR)"}, {"answer": "SELECT profits__billion_$_ FROM table_19112_3 WHERE market_value__billion_$_ = \"11.8\"", "question": "Name the profits for market value of 11.8", "context": "CREATE TABLE table_19112_3 (profits__billion_$_ VARCHAR, market_value__billion_$_ VARCHAR)"}, {"answer": "SELECT industry FROM table_19112_3 WHERE revenue__billion_$_ = \"2.1\"", "question": "Name the industry for revenue being 2.1", "context": "CREATE TABLE table_19112_3 (industry VARCHAR, revenue__billion_$_ VARCHAR)"}, {"answer": "SELECT COUNT(industry) FROM table_19112_3 WHERE company = \"Maxis\"", "question": "Name the total number of industry for maxis", "context": "CREATE TABLE table_19112_3 (industry VARCHAR, company VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_19169116_6 WHERE date = \"February 26\"", "question": "how many games with high rebounds where in february 26", "context": "CREATE TABLE table_19169116_6 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT institute FROM table_1919538_1 WHERE democratic_renewal = \"18.0% \u2013 22.0%\"", "question": "which institutes gave the democratic renewal 18.0% \u2013 22.0% on a poll from October 6, 1985?", "context": "CREATE TABLE table_1919538_1 (institute VARCHAR, democratic_renewal VARCHAR)"}, {"answer": "SELECT _number_of_seats_to_be_won FROM table_19283982_4 WHERE _percentage_of_popular_vote = \"6.88%\"", "question": "Name the number of seats to be won being % of popular vote at 6.88%", "context": "CREATE TABLE table_19283982_4 (_number_of_seats_to_be_won VARCHAR, _percentage_of_popular_vote VARCHAR)"}, {"answer": "SELECT _number_of_total_votes FROM table_19283982_4 WHERE _number_of_seats_won = 30", "question": "Name the number of total votes for # of seats won being 30", "context": "CREATE TABLE table_19283982_4 (_number_of_total_votes VARCHAR, _number_of_seats_won VARCHAR)"}, {"answer": "SELECT _number_of_candidates FROM table_19283982_4 WHERE _number_of_seats_won = 43", "question": "Name the number of candidates for # of seats won being 43", "context": "CREATE TABLE table_19283982_4 (_number_of_candidates VARCHAR, _number_of_seats_won VARCHAR)"}, {"answer": "SELECT COUNT(leader) FROM table_19283982_4 WHERE _percentage_of_popular_vote = \"11.05%\"", "question": "Name the number of leaders for % of popular vote being 11.05%", "context": "CREATE TABLE table_19283982_4 (leader VARCHAR, _percentage_of_popular_vote VARCHAR)"}, {"answer": "SELECT location FROM table_19283806_4 WHERE district = \"12th\"", "question": "What is the location that has the 12th district?", "context": "CREATE TABLE table_19283806_4 (location VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(2012 AS _election_results) FROM table_19283806_4 WHERE cook_pvi = \"D+16\"", "question": "How many election results in 2012 had a Cook PVI of D+16?", "context": "CREATE TABLE table_19283806_4 (cook_pvi VARCHAR)"}, {"answer": "SELECT cook_pvi FROM table_19283806_4 WHERE representative = \"Mike Thompson\"", "question": "What is the Cook PVI for the location that has a representative of Mike Thompson?", "context": "CREATE TABLE table_19283806_4 (cook_pvi VARCHAR, representative VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_19283806_4 WHERE median_household_income__2011_ = \"$71,479\"", "question": "How many locations have a median household income in 2011 of $71,479?", "context": "CREATE TABLE table_19283806_4 (location VARCHAR, median_household_income__2011_ VARCHAR)"}, {"answer": "SELECT 2012 AS _election_results FROM table_19283806_4 WHERE representative = \"Barbara Lee\"", "question": "What is the 2012 election results for locations whose representative is Barbara Lee?", "context": "CREATE TABLE table_19283806_4 (representative VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_19422702_1 WHERE production_code = 816", "question": "What is the latest season number for a show with a production code of 816?", "context": "CREATE TABLE table_19422702_1 (no_in_season INTEGER, production_code VARCHAR)"}, {"answer": "SELECT COUNT(us_airdate) FROM table_19422702_1 WHERE no_in_season = 4", "question": "How many U.S. air dates were from an episode in Season 4?", "context": "CREATE TABLE table_19422702_1 (us_airdate VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT STRUCT(high) FROM table_1942366_9 WHERE category = \"Good\"", "question": "How many different C_{high} values are there for the good category?", "context": "CREATE TABLE table_1942366_9 (high VARCHAR, category VARCHAR)"}, {"answer": "SELECT STRUCT(high) FROM table_1942366_9 WHERE STRUCT(low) = \"250.5\"", "question": "What's the C_{high} when the C_{low} value is 250.5?", "context": "CREATE TABLE table_1942366_9 (high VARCHAR, low VARCHAR)"}, {"answer": "SELECT STRUCT(low) FROM table_1942366_9 WHERE STRUCT(high) = \"12.0\"", "question": "What's the C_{low} value when C_{high} is 12.0?", "context": "CREATE TABLE table_1942366_9 (low VARCHAR, high VARCHAR)"}, {"answer": "SELECT COUNT(category) FROM table_1942366_9 WHERE STRUCT(low) = \"35.5\"", "question": "In how many different categories is the value of C_{low} 35.5?", "context": "CREATE TABLE table_1942366_9 (category VARCHAR, low VARCHAR)"}, {"answer": "SELECT members FROM table_19439814_1 WHERE sold__albums_and_singles_ = \"65 million\"", "question": "How many members were in the group that sold 65 million albums and singles?", "context": "CREATE TABLE table_19439814_1 (members VARCHAR, sold__albums_and_singles_ VARCHAR)"}, {"answer": "SELECT girl_group FROM table_19439814_1 WHERE studio_albums = 29", "question": "What group had 29 studio albums?", "context": "CREATE TABLE table_19439814_1 (girl_group VARCHAR, studio_albums VARCHAR)"}, {"answer": "SELECT MIN(\u00e5lesund) FROM table_19439864_2 WHERE bergen = 88", "question": "When bergen is 88, what is the alesund?", "context": "CREATE TABLE table_19439864_2 (\u00e5lesund INTEGER, bergen VARCHAR)"}, {"answer": "SELECT COUNT(elverum) FROM table_19439864_2 WHERE song = \"Et sted i Scandinavia\"", "question": "How many elverum are tehre for et sted i scandinavia?", "context": "CREATE TABLE table_19439864_2 (elverum VARCHAR, song VARCHAR)"}, {"answer": "SELECT total FROM table_19439864_2 WHERE song = \"Radio Luxembourg\"", "question": "What was the total for radio luxembourg?", "context": "CREATE TABLE table_19439864_2 (total VARCHAR, song VARCHAR)"}, {"answer": "SELECT MIN(stavanger) FROM table_19439864_2 WHERE oslo = 48", "question": "When oslo is 48, what is stavanger?", "context": "CREATE TABLE table_19439864_2 (stavanger INTEGER, oslo VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_19439864_2", "question": "What is the lowest total?", "context": "CREATE TABLE table_19439864_2 (total INTEGER)"}, {"answer": "SELECT MIN(troms\u00f8) FROM table_19439864_2 WHERE total = 740", "question": "When the total score is 740, what is tromso?", "context": "CREATE TABLE table_19439864_2 (troms\u00f8 INTEGER, total VARCHAR)"}, {"answer": "SELECT group_8 FROM table_19523142_5 WHERE group_12 = \"Persinab Nabire\"", "question": "Who played in group 8 when Persinab Nabire played in Group 12?", "context": "CREATE TABLE table_19523142_5 (group_8 VARCHAR, group_12 VARCHAR)"}, {"answer": "SELECT group_11 FROM table_19523142_5 WHERE group_12 = \"Persipal Palu\"", "question": "Who played in group 11 when Persipal Palu played in group 12?", "context": "CREATE TABLE table_19523142_5 (group_11 VARCHAR, group_12 VARCHAR)"}, {"answer": "SELECT group_12 FROM table_19523142_5 WHERE group_10 = \"Persikutim East Kutai\"", "question": "Who played in group 12 when persikutim east kutai played in group 10?", "context": "CREATE TABLE table_19523142_5 (group_12 VARCHAR, group_10 VARCHAR)"}, {"answer": "SELECT group_7 FROM table_19523142_5 WHERE group_11 = \"Persikos Sorong City\"", "question": "When  persikos sorong city played in group 11, who played in group 7?", "context": "CREATE TABLE table_19523142_5 (group_7 VARCHAR, group_11 VARCHAR)"}, {"answer": "SELECT COUNT(group_7) FROM table_19523142_5 WHERE group_12 = \"Nusa Ina\"", "question": "Nusa Ina only played once while group 7 played.", "context": "CREATE TABLE table_19523142_5 (group_7 VARCHAR, group_12 VARCHAR)"}, {"answer": "SELECT group_12 FROM table_19523142_5 WHERE group_9 = \"PSID Jombang\"", "question": "Who played in group 12 when Group 9 played psid jombang?", "context": "CREATE TABLE table_19523142_5 (group_12 VARCHAR, group_9 VARCHAR)"}, {"answer": "SELECT MAX(whole_weeks) FROM table_19542477_9", "question": "What is the longest number of weeks any 1 song was at number #1?", "context": "CREATE TABLE table_19542477_9 (whole_weeks INTEGER)"}, {"answer": "SELECT song_s__\u2014_weeks FROM table_19542477_9 WHERE artist_s_ = \"One Direction\"", "question": "What is the title of every song, and how many weeks was each song at #1 for One Direction?", "context": "CREATE TABLE table_19542477_9 (song_s__\u2014_weeks VARCHAR, artist_s_ VARCHAR)"}, {"answer": "SELECT song_s__\u2014_weeks FROM table_19542477_9 WHERE issue_years = 2012 AND artist_s_ = \"Rihanna\"", "question": "What is the title of every song, and how many weeks was each song at #1 for Rihanna in 2012?", "context": "CREATE TABLE table_19542477_9 (song_s__\u2014_weeks VARCHAR, issue_years VARCHAR, artist_s_ VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1965650_11 WHERE college_junior_club_team = \"Calgary Centennials (WCHL)\"", "question": "What NHL team was the player from Calgary Centennials (WCHL) drafted for?", "context": "CREATE TABLE table_1965650_11 (nhl_team VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_1965650_11 WHERE college_junior_club_team = \"University of Michigan (NCAA)\"", "question": "Who came from the University of Michigan (NCAA) team?", "context": "CREATE TABLE table_1965650_11 (player VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_1965650_11 WHERE pick__number = 166", "question": "How many players have the pick number 166?", "context": "CREATE TABLE table_1965650_11 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT nationality FROM table_1965650_11 WHERE college_junior_club_team = \"University of Michigan (NCAA)\"", "question": "What is the nationality of the player from the University of Michigan (NCAA)?", "context": "CREATE TABLE table_1965650_11 (nationality VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1965650_11 WHERE position = \"Centre\" AND player = \"Russ Wiechnik\"", "question": "What team did Russ Wiechnik, on the centre position, come from?", "context": "CREATE TABLE table_1965650_11 (college_junior_club_team VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_19744915_14 WHERE rank_by_average < 2.0", "question": "What place would you be in if your rank by average is less than 2.0?", "context": "CREATE TABLE table_19744915_14 (place VARCHAR, rank_by_average INTEGER)"}, {"answer": "SELECT couple FROM table_19744915_14 WHERE average = \"15.9\"", "question": "What is the couples name where the average is 15.9?", "context": "CREATE TABLE table_19744915_14 (couple VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(number_of_dances) FROM table_19744915_14 WHERE total_points = \"50.5\"", "question": "If the total points is 50.5, what is the total number of dances?", "context": "CREATE TABLE table_19744915_14 (number_of_dances VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT couple FROM table_19744915_14 WHERE rank_by_average = 9", "question": "If your rank by average is 9, what is the name of the couple?", "context": "CREATE TABLE table_19744915_14 (couple VARCHAR, rank_by_average VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_19753079_35 WHERE candidates = \"Richard L. Hanna (R) 53.1% Mike Arcuri (D) 46.9%\"", "question": "Name the number of party for richard l. hanna (r) 53.1% mike arcuri (d) 46.9%", "context": "CREATE TABLE table_19753079_35 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT party FROM table_19753079_35 WHERE district = \"New York 4\"", "question": "Name the party for new york 4", "context": "CREATE TABLE table_19753079_35 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_19753079_35 WHERE result = \"Re-elected\" AND incumbent = \"Brian Higgins\"", "question": "Name the first elected for re-elected and brian higgins", "context": "CREATE TABLE table_19753079_35 (first_elected VARCHAR, result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_19753079_35 WHERE candidates = \"Yvette Clarke (D) 90.6% Hugh Carr (R) 9.4%\"", "question": "Name the party for yvette clarke (d) 90.6% hugh carr (r) 9.4%", "context": "CREATE TABLE table_19753079_35 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_19753079_35 WHERE district = \"New York 8\"", "question": "Name the result for new york 8", "context": "CREATE TABLE table_19753079_35 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_19753079_4 WHERE result = \"Lost renomination Republican hold\"", "question": "Name the incumbent for lost renomination republican hold", "context": "CREATE TABLE table_19753079_4 (incumbent VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_19753079_4 WHERE first_elected = 1992", "question": "Name the result for first elected being 1992", "context": "CREATE TABLE table_19753079_4 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_19753079_4 WHERE district = \"Alabama 6\"", "question": "Name the incumbent for alabama 6", "context": "CREATE TABLE table_19753079_4 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(song) FROM table_19763199_5 WHERE artist = \"Julia Bermejo\"", "question": "Name the number of song for julia bermejo", "context": "CREATE TABLE table_19763199_5 (song VARCHAR, artist VARCHAR)"}, {"answer": "SELECT COUNT(song) FROM table_19763199_5 WHERE artist = \"Solydo\"", "question": "Name the number of song for solydo", "context": "CREATE TABLE table_19763199_5 (song VARCHAR, artist VARCHAR)"}, {"answer": "SELECT tournament FROM table_19765685_2 WHERE city = \"Katowice\"", "question": "What tournament is in katowice?", "context": "CREATE TABLE table_19765685_2 (tournament VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_19765685_2 WHERE also_currently_known_as = \"HP Open\"", "question": "How many tournaments are also currently known as the hp open?", "context": "CREATE TABLE table_19765685_2 (country VARCHAR, also_currently_known_as VARCHAR)"}, {"answer": "SELECT COUNT(defending_champion) FROM table_19765685_2 WHERE country = \"Thailand\"", "question": "How many defending champs from thailand?", "context": "CREATE TABLE table_19765685_2 (defending_champion VARCHAR, country VARCHAR)"}, {"answer": "SELECT opponent FROM table_19789597_5 WHERE date = \"June 12\"", "question": "Name the opponent for june 12", "context": "CREATE TABLE table_19789597_5 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_19789597_5 WHERE score = \"L 63-77\"", "question": "Name the total number of date for  l 63-77", "context": "CREATE TABLE table_19789597_5 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_19834691_4 WHERE viewers__millions_ = \"6.95\"", "question": "Name the most number for viewers being 6.95", "context": "CREATE TABLE table_19834691_4 (_number INTEGER, viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(viewers__millions_) FROM table_19834691_4 WHERE audience_share_in_timeslot = \"10.2%\"", "question": "Name the total number of viewers for audience share in timeslot for 10.2%", "context": "CREATE TABLE table_19834691_4 (viewers__millions_ VARCHAR, audience_share_in_timeslot VARCHAR)"}, {"answer": "SELECT timeslot FROM table_19834691_4 WHERE viewers__millions_ = \"6.51\"", "question": "Name the timeslot for 6.51 viewers", "context": "CREATE TABLE table_19834691_4 (timeslot VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT uk_air_date FROM table_19834691_4 WHERE audience_share_in_timeslot = \"7.3%\"", "question": "Name the uk air date for audience share in timeslot in 7.3%", "context": "CREATE TABLE table_19834691_4 (uk_air_date VARCHAR, audience_share_in_timeslot VARCHAR)"}, {"answer": "SELECT COUNT(timeslot) FROM table_19834691_4 WHERE _number = 1", "question": "name the total number of timeslot for number 1", "context": "CREATE TABLE table_19834691_4 (timeslot VARCHAR, _number VARCHAR)"}, {"answer": "SELECT city___town FROM table_1984697_53 WHERE principal = \"Mark Fletcher\"", "question": "Where's the school that Mark Fletcher is the principal of?", "context": "CREATE TABLE table_1984697_53 (city___town VARCHAR, principal VARCHAR)"}, {"answer": "SELECT COUNT(website) FROM table_1984697_53 WHERE size = 1939", "question": "How many websites are there for the school with 1939 students?", "context": "CREATE TABLE table_1984697_53 (website VARCHAR, size VARCHAR)"}, {"answer": "SELECT principal FROM table_1984697_53 WHERE school = \"Edgewood High school\"", "question": "Who's the principal of Edgewood High School?/", "context": "CREATE TABLE table_1984697_53 (principal VARCHAR, school VARCHAR)"}, {"answer": "SELECT city___town FROM table_1984697_53 WHERE school = \"Bloomington High school North\"", "question": "Where is Bloomington High School North?", "context": "CREATE TABLE table_1984697_53 (city___town VARCHAR, school VARCHAR)"}, {"answer": "SELECT pole_position FROM table_19908651_3 WHERE race_name = \"Texaco/Havoline 200\"", "question": "Who was on the pole position in the Texaco/Havoline 200 race?", "context": "CREATE TABLE table_19908651_3 (pole_position VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_19908651_3 WHERE pole_position = \"Emerson Fittipaldi\" AND winning_driver = \"Paul Tracy\"", "question": "Who did the fastest lap in the race won by Paul Tracy, with Emerson Fittipaldi at the pole position?", "context": "CREATE TABLE table_19908651_3 (fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT report FROM table_19908651_3 WHERE winning_driver = \"Michael Andretti\" AND fastest_lap = \"Nigel Mansell\"", "question": "What's the report of the race won by Michael Andretti, with Nigel Mansell driving the fastest lap?", "context": "CREATE TABLE table_19908651_3 (report VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT pole_position FROM table_19908651_3 WHERE winning_driver = \"Paul Tracy\" AND race_name = \"ITT Automotive Grand Prix of Detroit\"", "question": "Who was at the pole position in the ITT Automotive Grand Prix of Detroit, won by Paul Tracy?", "context": "CREATE TABLE table_19908651_3 (pole_position VARCHAR, winning_driver VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT directed_by FROM table_19929970_1 WHERE production_code = \"4AKJ08\"", "question": "Who directed the episode with production code 4akj08?", "context": "CREATE TABLE table_19929970_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_19929970_1 WHERE production_code = \"4AKJ01\"", "question": "Who directed the episode with production code 4akj01?", "context": "CREATE TABLE table_19929970_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT torque FROM table_20007413_6 WHERE year = \"1996\"", "question": "What are the torque characteristics of the model made in 1996?", "context": "CREATE TABLE table_20007413_6 (torque VARCHAR, year VARCHAR)"}, {"answer": "SELECT compression_ratio FROM table_20007413_6 WHERE rpo = \"L35\" AND applications = 5", "question": "What's the compression ratio of the model with L35 RPO and 5 applications?", "context": "CREATE TABLE table_20007413_6 (compression_ratio VARCHAR, rpo VARCHAR, applications VARCHAR)"}, {"answer": "SELECT torque FROM table_20007413_6 WHERE applications = 346", "question": "What are the torque characteristics of the model with 346 applications?", "context": "CREATE TABLE table_20007413_6 (torque VARCHAR, applications VARCHAR)"}, {"answer": "SELECT team FROM table_20016339_1 WHERE motorcycle = \"Honda\"", "question": "What's the name of the team who had a Honda motorcycle?", "context": "CREATE TABLE table_20016339_1 (team VARCHAR, motorcycle VARCHAR)"}, {"answer": "SELECT poles FROM table_20016339_1 WHERE motorcycle = \"Kalex\"", "question": "What's the number of poles in the season where the team had a Kalex motorcycle?", "context": "CREATE TABLE table_20016339_1 (poles VARCHAR, motorcycle VARCHAR)"}, {"answer": "SELECT COUNT(fastest_laps) FROM table_20016339_1 WHERE team = \"I.C. team\"", "question": "How many fastest laps did I.C. Team have?", "context": "CREATE TABLE table_20016339_1 (fastest_laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT class FROM table_20016339_1 WHERE pts = 0 AND team = \"Italtrans Racing team\"", "question": "What's Italtrans Racing Team's, with 0 pts, class?", "context": "CREATE TABLE table_20016339_1 (class VARCHAR, pts VARCHAR, team VARCHAR)"}, {"answer": "SELECT conventional FROM table_2008069_2 WHERE uyghur___k\u0322ona_yezik\u0322__ = \"\u062a\u0627\u063a\u0627\u0631\u0645\u0627\"", "question": "Name the conventional for \u062a\u0627\u063a\u0627\u0631\u0645\u0627", "context": "CREATE TABLE table_2008069_2 (conventional VARCHAR, uyghur___k\u0322ona_yezik\u0322__ VARCHAR)"}, {"answer": "SELECT uyghur___k\u0322ona_yezik\u0322__ FROM table_2008069_2 WHERE chinese = \"\u74e6\u6070\"", "question": "Name the uyghur for  \u74e6\u6070", "context": "CREATE TABLE table_2008069_2 (uyghur___k\u0322ona_yezik\u0322__ VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT conventional FROM table_2008069_2 WHERE uyghur___yen\u0261i_yezik\u0322__ = \"Defter\"", "question": "Name the conventional for defter", "context": "CREATE TABLE table_2008069_2 (conventional VARCHAR, uyghur___yen\u0261i_yezik\u0322__ VARCHAR)"}, {"answer": "SELECT pinyin FROM table_2008069_2 WHERE uyghur___k\u0322ona_yezik\u0322__ = \"\u062a\u0649\u0632\u0646\u0627\u067e\"", "question": "Name the pinyin for \u062a\u0649\u0632\u0646\u0627\u067e", "context": "CREATE TABLE table_2008069_2 (pinyin VARCHAR, uyghur___k\u0322ona_yezik\u0322__ VARCHAR)"}, {"answer": "SELECT pinyin FROM table_2008069_2 WHERE conventional = \"Mazar\"", "question": "Name the pinyin for mazar", "context": "CREATE TABLE table_2008069_2 (pinyin VARCHAR, conventional VARCHAR)"}, {"answer": "SELECT pinyin FROM table_2008069_2 WHERE uyghur___yen\u0261i_yezik\u0322__ = \"K\u0275kyar K\u0321ir\u01a3iz yezisi\"", "question": "Name the pinyin for  k\u0275kyar k\u0321ir\u01a3iz yezisi", "context": "CREATE TABLE table_2008069_2 (pinyin VARCHAR, uyghur___yen\u0261i_yezik\u0322__ VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_2012187_3 WHERE top_10 = 18", "question": "What team or teams with 18 in the top 10?", "context": "CREATE TABLE table_2012187_3 (team_s_ VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_2012187_3 WHERE position = \"4th\"", "question": "How many wins in the 4th position?", "context": "CREATE TABLE table_2012187_3 (wins INTEGER, position VARCHAR)"}, {"answer": "SELECT date FROM table_2015453_1 WHERE attendance = 22000", "question": "What date was the attendance 22000?", "context": "CREATE TABLE table_2015453_1 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT remarks FROM table_2015453_1 WHERE date = \"8 October 2008\"", "question": "What are the remarks for 8 October 2008?", "context": "CREATE TABLE table_2015453_1 (remarks VARCHAR, date VARCHAR)"}, {"answer": "SELECT res FROM table_2015453_1 WHERE team__number2 = \"Payam\"", "question": "What was the res for the game against Payam?", "context": "CREATE TABLE table_2015453_1 (res VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT team__number1 FROM table_2015453_1 WHERE date = \"9 September 2006\"", "question": "Who was team #1 on 9 September 2006?", "context": "CREATE TABLE table_2015453_1 (team__number1 VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_2015453_1", "question": "What was the largest attendance?", "context": "CREATE TABLE table_2015453_1 (attendance INTEGER)"}, {"answer": "SELECT position FROM table_20170644_3 WHERE college = \"Regina\"", "question": "What position is the player who went to Regina? ", "context": "CREATE TABLE table_20170644_3 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_20170644_3 WHERE cfl_team = \"BC Lions\"", "question": "Which player is on the BC Lions? ", "context": "CREATE TABLE table_20170644_3 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_20170644_3 WHERE college = \"Calgary\"", "question": "What number picks were the players who went to Calgary? ", "context": "CREATE TABLE table_20170644_3 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT title FROM table_20205538_4 WHERE episode__number = 2", "question": "What was the title for episode 2?", "context": "CREATE TABLE table_20205538_4 (title VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT episode__number FROM table_20205538_4 WHERE series__number = 17", "question": "What is the episode number for series 17?", "context": "CREATE TABLE table_20205538_4 (episode__number VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT season FROM table_20217456_7 WHERE rl_s\u00fcd__1st_ = \"SV Darmstadt 98\"", "question": "What season did SV Darmstadt 98 end up at RL S\u00fcd (1st)?", "context": "CREATE TABLE table_20217456_7 (season VARCHAR, rl_s\u00fcd__1st_ VARCHAR)"}, {"answer": "SELECT rl_s\u00fcd__1st_ FROM table_20217456_7 WHERE rl_s\u00fcdwest__1st_ = \"FK Pirmasens\"", "question": "Who was RL S\u00fcd (1st) when FK Pirmasens was RL S\u00fcdwest (1st)?", "context": "CREATE TABLE table_20217456_7 (rl_s\u00fcd__1st_ VARCHAR, rl_s\u00fcdwest__1st_ VARCHAR)"}, {"answer": "SELECT season FROM table_20217456_7 WHERE rl_s\u00fcd__2nd_ = \"Freiburger FC\"", "question": "What season was Freiburger FC the RL S\u00fcd (2nd) team?", "context": "CREATE TABLE table_20217456_7 (season VARCHAR, rl_s\u00fcd__2nd_ VARCHAR)"}, {"answer": "SELECT COUNT(serial_no) FROM table_20236726_2 WHERE wd_no = 24", "question": "Name the total number of serial number for 24 wd no", "context": "CREATE TABLE table_20236726_2 (serial_no VARCHAR, wd_no VARCHAR)"}, {"answer": "SELECT COUNT(wd_no) FROM table_20236726_2 WHERE lms_no = 7638", "question": "Name the total number of wd number for lms number being 7638", "context": "CREATE TABLE table_20236726_2 (wd_no VARCHAR, lms_no VARCHAR)"}, {"answer": "SELECT builder FROM table_20236726_2 WHERE wd_no = 22", "question": "Name the builder for wd number being 22", "context": "CREATE TABLE table_20236726_2 (builder VARCHAR, wd_no VARCHAR)"}, {"answer": "SELECT lms_no FROM table_20236726_2 WHERE serial_no = 372", "question": "Name the lms number for serial number being 372", "context": "CREATE TABLE table_20236726_2 (lms_no VARCHAR, serial_no VARCHAR)"}, {"answer": "SELECT builder FROM table_20236726_2 WHERE serial_no = 377", "question": "Name the builder for serial number being 377", "context": "CREATE TABLE table_20236726_2 (builder VARCHAR, serial_no VARCHAR)"}, {"answer": "SELECT directed_by FROM table_20360535_2 WHERE television_order = \"S01E13\"", "question": "who directed s01e13", "context": "CREATE TABLE table_20360535_2 (directed_by VARCHAR, television_order VARCHAR)"}, {"answer": "SELECT television_order FROM table_20360535_2 WHERE directed_by = \"Ben Jones\" AND written_by = \"J. M. DeMatteis\" AND original_air_date = \"February6,2009\"", "question": "what is the television order of the episode directed by ben jones, written by j. m. dematteis and originally aired on february6,2009", "context": "CREATE TABLE table_20360535_2 (television_order VARCHAR, original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_20360535_2 WHERE television_order = \"S01E06\"", "question": "who wrote s01e06", "context": "CREATE TABLE table_20360535_2 (written_by VARCHAR, television_order VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_20360535_4 WHERE directed_by = \"Ben Jones\" AND written_by = \"Steven Melching\"", "question": "what is the original air date of the episode directed by Ben Jones and written by Steven Melching? ", "context": "CREATE TABLE table_20360535_4 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(guest_1) FROM table_20466963_9 WHERE guest_4 = \"Des Kelly\"", "question": "How many people are guest 1 on episodes where guest 4 is Des Kelly?", "context": "CREATE TABLE table_20466963_9 (guest_1 VARCHAR, guest_4 VARCHAR)"}, {"answer": "SELECT guest_3 FROM table_20466963_9 WHERE guest_1 = \"Jim White\"", "question": "On episodes where guest 1 is Jim White, who was guest 3?", "context": "CREATE TABLE table_20466963_9 (guest_3 VARCHAR, guest_1 VARCHAR)"}, {"answer": "SELECT points FROM table_20500097_1 WHERE poles > 1.0", "question": "How many points did he win in the race with more than 1.0 poles?", "context": "CREATE TABLE table_20500097_1 (points VARCHAR, poles INTEGER)"}, {"answer": "SELECT team FROM table_20500097_1 WHERE series = \"GP3 series\"", "question": "What team did he compete for in the GP3 series?", "context": "CREATE TABLE table_20500097_1 (team VARCHAR, series VARCHAR)"}, {"answer": "SELECT COUNT(first_place) FROM table_2054561_2 WHERE no_of_weeks = 6", "question": "Who took first place in week 6?", "context": "CREATE TABLE table_2054561_2 (first_place VARCHAR, no_of_weeks VARCHAR)"}, {"answer": "SELECT epa_rated_highway_fuel_economy FROM table_20549371_3 WHERE type_of_powertrain = \"Electric SUV\"", "question": "What is the epa highway fuel economy for an electric suv?", "context": "CREATE TABLE table_20549371_3 (epa_rated_highway_fuel_economy VARCHAR, type_of_powertrain VARCHAR)"}, {"answer": "SELECT vehicle FROM table_20549371_3 WHERE epa_rated_highway_fuel_economy = \"109 mpg-e\"", "question": "What vehicle has an epa highway fuel economy of 109 mpg-e?", "context": "CREATE TABLE table_20549371_3 (vehicle VARCHAR, epa_rated_highway_fuel_economy VARCHAR)"}, {"answer": "SELECT shareholder FROM table_206419_3 WHERE percent_of_votes = \"2.55\"", "question": "What shareholder has 2.55 percent of votes? ", "context": "CREATE TABLE table_206419_3 (shareholder VARCHAR, percent_of_votes VARCHAR)"}, {"answer": "SELECT shareholder FROM table_206419_3 WHERE percent_of_capital = \"3.63\"", "question": "What shareholder has 3.63 percent of capital? ", "context": "CREATE TABLE table_206419_3 (shareholder VARCHAR, percent_of_capital VARCHAR)"}, {"answer": "SELECT MAX(s_b_share) FROM table_206419_3 WHERE percent_of_votes = \"2.55\"", "question": "What is the s B share for the shareholder that has 2.55 percent of votes? ", "context": "CREATE TABLE table_206419_3 (s_b_share INTEGER, percent_of_votes VARCHAR)"}, {"answer": "SELECT percent_of_capital FROM table_206419_3 WHERE s_b_share = 8256534", "question": "What is the percent of capital for the shareholder that has a s B share of 8256534? ", "context": "CREATE TABLE table_206419_3 (percent_of_capital VARCHAR, s_b_share VARCHAR)"}, {"answer": "SELECT MIN(s_b_share) FROM table_206419_3 WHERE percent_of_votes = \"2.12\"", "question": "What is the s B share for the shareholder that has 2.12 percent of votes? ", "context": "CREATE TABLE table_206419_3 (s_b_share INTEGER, percent_of_votes VARCHAR)"}, {"answer": "SELECT s_b_share FROM table_206419_3 WHERE shareholder = \"Handelsbanken funds incl XACT\"", "question": "What is the s B share for Handelsbanken funds incl XACT?", "context": "CREATE TABLE table_206419_3 (s_b_share VARCHAR, shareholder VARCHAR)"}, {"answer": "SELECT name FROM table_20668268_1 WHERE starting_price = \"11/1\" AND jockey = \"Garrett Cotter\"", "question": "What was the name that had a starting price of 11/1 and a jockey named Garrett Cotter?", "context": "CREATE TABLE table_20668268_1 (name VARCHAR, starting_price VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT name FROM table_20668268_1 WHERE owner = \"David Johnson\"", "question": "What was the name of the entrant with an owner named David Johnson?", "context": "CREATE TABLE table_20668268_1 (name VARCHAR, owner VARCHAR)"}, {"answer": "SELECT others_percentage FROM table_20693870_1 WHERE mccain_percentage = \"52.9%\" AND mccain_number < 45205.0", "question": "What percentage was the others vote when McCain had 52.9% and less than 45205.0 voters?", "context": "CREATE TABLE table_20693870_1 (others_percentage VARCHAR, mccain_percentage VARCHAR, mccain_number VARCHAR)"}, {"answer": "SELECT COUNT(obama_number) FROM table_20693870_1 WHERE obama_percentage = \"29.9%\"", "question": "How many numbers were recorded under Obama when he had 29.9% voters?", "context": "CREATE TABLE table_20693870_1 (obama_number VARCHAR, obama_percentage VARCHAR)"}, {"answer": "SELECT COUNT(mccain_number) FROM table_20693870_1 WHERE obama_percentage = \"27.2%\"", "question": "How many numbers were recorded under McCain when Obama had 27.2% voters?", "context": "CREATE TABLE table_20693870_1 (mccain_number VARCHAR, obama_percentage VARCHAR)"}, {"answer": "SELECT mccain_number FROM table_20693870_1 WHERE obama_number = 895", "question": "What were the number of voters McCain had when Obama had 895?", "context": "CREATE TABLE table_20693870_1 (mccain_number VARCHAR, obama_number VARCHAR)"}, {"answer": "SELECT MIN(others_number) FROM table_20693870_1 WHERE county = \"Columbia\"", "question": "What was the number of others votes in Columbia county?", "context": "CREATE TABLE table_20693870_1 (others_number INTEGER, county VARCHAR)"}, {"answer": "SELECT obama_percentage FROM table_20684390_1 WHERE county = \"Gem\"", "question": "For Gem County, what was the Obama vote percentage?", "context": "CREATE TABLE table_20684390_1 (obama_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT MAX(mccain_number) FROM table_20684390_1", "question": "What is the maximum McCain population turnout number?", "context": "CREATE TABLE table_20684390_1 (mccain_number INTEGER)"}, {"answer": "SELECT COUNT(mccain_number) FROM table_20684390_1 WHERE obama_percentage = \"17.34%\"", "question": "What is the total number of McCain vote totals where Obama percentages was 17.34%?", "context": "CREATE TABLE table_20684390_1 (mccain_number VARCHAR, obama_percentage VARCHAR)"}, {"answer": "SELECT mccain_percentage FROM table_20684390_1 WHERE county = \"Jerome\"", "question": "What is the McCain vote percentage in Jerome county?", "context": "CREATE TABLE table_20684390_1 (mccain_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT COUNT(third_place_s_) FROM table_20823568_2 WHERE total_placing_s_ = 8", "question": "What is the total number of 3rd place entries that have exactly 8 total placings?", "context": "CREATE TABLE table_20823568_2 (third_place_s_ VARCHAR, total_placing_s_ VARCHAR)"}, {"answer": "SELECT second_place_s_ FROM table_20823568_2 WHERE sporting_profession = \"Snooker\"", "question": "How many second place showings does snooker have?", "context": "CREATE TABLE table_20823568_2 (second_place_s_ VARCHAR, sporting_profession VARCHAR)"}, {"answer": "SELECT game FROM table_20850527_1 WHERE opponent = \"Purdue\"", "question": "What game number did the Wildcats play Purdue?", "context": "CREATE TABLE table_20850527_1 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_20850527_1 WHERE record = \"3-0\"", "question": "How many wins or losses were there when the record was 3-0?", "context": "CREATE TABLE table_20850527_1 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(wildcats_points) FROM table_20850527_1 WHERE record = \"5-1\"", "question": "What is the lowest points scored by the Wildcats when the record was 5-1?", "context": "CREATE TABLE table_20850527_1 (wildcats_points INTEGER, record VARCHAR)"}, {"answer": "SELECT COUNT(winner) FROM table_20867295_2 WHERE third_place = \"Feyenoord\" AND runner_up = \"AZ\"", "question": "When az is the runner up nad feyenoord came in third place how many overall winners are there?", "context": "CREATE TABLE table_20867295_2 (winner VARCHAR, third_place VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT season FROM table_20867295_2 WHERE winner = \"Ajax\" AND third_place = \"Twente\"", "question": "When twente came in third place and ajax was the winner what are the seasons?", "context": "CREATE TABLE table_20867295_2 (season VARCHAR, winner VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT top_scorer FROM table_20867295_2 WHERE winner = \"PSV Eindhoven\" AND third_place = \"NAC Breda\"", "question": "When nac breda came in third place and psv eindhoven was the winner who is the top scorer?", "context": "CREATE TABLE table_20867295_2 (top_scorer VARCHAR, winner VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT naming FROM table_2088_1 WHERE fluency = \"fluent\" AND auditory_comprehension = \"poor\"", "question": "Name the naming for fluent and poor comprehension", "context": "CREATE TABLE table_2088_1 (naming VARCHAR, fluency VARCHAR, auditory_comprehension VARCHAR)"}, {"answer": "SELECT COUNT(naming) FROM table_2088_1 WHERE type_of_aphasia = \"Anomic aphasia\"", "question": "Name the number of naming for anomic aphasia", "context": "CREATE TABLE table_2088_1 (naming VARCHAR, type_of_aphasia VARCHAR)"}, {"answer": "SELECT auditory_comprehension FROM table_2088_1 WHERE fluency = \"non-fluent, effortful, slow\"", "question": "Name the comprehension for non-fluent, effortful, slow", "context": "CREATE TABLE table_2088_1 (auditory_comprehension VARCHAR, fluency VARCHAR)"}, {"answer": "SELECT fluency FROM table_2088_1 WHERE type_of_aphasia = \"Transcortical sensory aphasia\"", "question": "Name the fluency for transcortical sensory aphasia", "context": "CREATE TABLE table_2088_1 (fluency VARCHAR, type_of_aphasia VARCHAR)"}, {"answer": "SELECT english FROM table_20925393_3 WHERE cardinal_direction = \"East\"", "question": "state the name of day in english where cardinal direction is east", "context": "CREATE TABLE table_20925393_3 (english VARCHAR, cardinal_direction VARCHAR)"}, {"answer": "SELECT MIN(us_open) FROM table_2092557_12 WHERE player = \"Shirley Fry Irvin\"", "question": "When did Shirley Fry Irvin win the US Open?", "context": "CREATE TABLE table_2092557_12 (us_open INTEGER, player VARCHAR)"}, {"answer": "SELECT wimbledon FROM table_2092557_12 WHERE player = \"Martina Navratilova\"", "question": "What year did Martina Navratilova win Wimbledon?", "context": "CREATE TABLE table_2092557_12 (wimbledon VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(round__number) FROM table_20996923_25 WHERE player = \"Sherrick McManis\"", "question": "What was Sherrick McManis's earliest round?", "context": "CREATE TABLE table_20996923_25 (round__number INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(nfl_team) FROM table_20996923_25 WHERE player = \"Stevie Brown\"", "question": "How many NFL teams does Stevie Brown play for?", "context": "CREATE TABLE table_20996923_25 (nfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_20996923_25 WHERE pick__number = 28", "question": "What NFL team was the player with pick number 28 drafted to?", "context": "CREATE TABLE table_20996923_25 (nfl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT area__km_2__ FROM table_210279_2 WHERE barangay = \"Guadalupe Viejo\"", "question": "what is the area where barangay is guadalupe viejo?", "context": "CREATE TABLE table_210279_2 (area__km_2__ VARCHAR, barangay VARCHAR)"}, {"answer": "SELECT regular_season_winner FROM table_21091982_3 WHERE conference = \"Ivy League\"", "question": "Who is the regular season winner for the Ivy League conference?", "context": "CREATE TABLE table_21091982_3 (regular_season_winner VARCHAR, conference VARCHAR)"}, {"answer": "SELECT tournament_venue__city_ FROM table_21091982_3 WHERE conference = \"Ivy League\"", "question": "Where was the Ivy League conference tournament?", "context": "CREATE TABLE table_21091982_3 (tournament_venue__city_ VARCHAR, conference VARCHAR)"}, {"answer": "SELECT locale FROM table_21093403_1 WHERE shot_pct = 78", "question": "Where was the shot pct 78?", "context": "CREATE TABLE table_21093403_1 (locale VARCHAR, shot_pct VARCHAR)"}, {"answer": "SELECT position FROM table_21220720_1 WHERE name = \"van den Brink, Bas\"", "question": "Name the position for van den brink, bas", "context": "CREATE TABLE table_21220720_1 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(finals_apps) FROM table_21220720_1", "question": "Name the mosst finals apps", "context": "CREATE TABLE table_21220720_1 (finals_apps INTEGER)"}, {"answer": "SELECT to FROM table_21220720_1 WHERE league_apps = 19", "question": "Name the to for 19 league apps", "context": "CREATE TABLE table_21220720_1 (to VARCHAR, league_apps VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_21313327_1 WHERE written_by = \"Rob Wright & Debra J. Fisher & Erica Messer\"", "question": "what is the No in series when Rob wright & Debra j. Fisher & Erica Messer were the writers?", "context": "CREATE TABLE table_21313327_1 (no_in_series INTEGER, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_21313327_1 WHERE us_viewers__millions_ = \"3.3\"", "question": "what was the name of the episode that got 3.3 (millions) of u.s viewers?", "context": "CREATE TABLE table_21313327_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_21313327_1 WHERE no_in_season = 3", "question": "In season number 3,  who were the writers?", "context": "CREATE TABLE table_21313327_1 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_21313327_1 WHERE written_by = \"Brad Kern\"", "question": "when the writer is Brad Kern, how many u.s viewers (in millions) had the episode?", "context": "CREATE TABLE table_21313327_1 (us_viewers__millions_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT 100 AS _yr FROM table_21350772_2 WHERE gas_name = \"Carbon dioxide\"", "question": "What is the 100 year for Carbon Dioxide?", "context": "CREATE TABLE table_21350772_2 (gas_name VARCHAR)"}, {"answer": "SELECT 20 AS _yr FROM table_21350772_2 WHERE gas_name = \"Nitrous oxide\"", "question": "What is the 20 year for Nitrous Oxide?", "context": "CREATE TABLE table_21350772_2 (gas_name VARCHAR)"}, {"answer": "SELECT lifetime__years_ FROM table_21350772_2 WHERE chemical_formula = \"CH 4\"", "question": "What is the lifetime (years) for chemical formula ch 4?", "context": "CREATE TABLE table_21350772_2 (lifetime__years_ VARCHAR, chemical_formula VARCHAR)"}, {"answer": "SELECT 20 AS _yr FROM table_21350772_2 WHERE gas_name = \"Sulfur hexafluoride\"", "question": "What is the 20 year for Sulfur Hexafluoride?", "context": "CREATE TABLE table_21350772_2 (gas_name VARCHAR)"}, {"answer": "SELECT traditional FROM table_2135222_2 WHERE simplified = \"\u6c38\u57ce\u5e02\"", "question": "What is the traditional form for \u6c38\u57ce\u5e02?", "context": "CREATE TABLE table_2135222_2 (traditional VARCHAR, simplified VARCHAR)"}, {"answer": "SELECT COUNT(density) FROM table_2135222_2 WHERE english_name = \"Yucheng County\"", "question": "How many figures are there for density for Yucheng County?", "context": "CREATE TABLE table_2135222_2 (density VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT traditional FROM table_2135222_2 WHERE simplified = \"\u5b81\u9675\u53bf\"", "question": "What is the traditional form for \u5b81\u9675\u53bf?", "context": "CREATE TABLE table_2135222_2 (traditional VARCHAR, simplified VARCHAR)"}, {"answer": "SELECT traditional FROM table_2135222_2 WHERE density = 820", "question": "What is the traditional with density of 820?", "context": "CREATE TABLE table_2135222_2 (traditional VARCHAR, density VARCHAR)"}, {"answer": "SELECT pinyin FROM table_2135222_2 WHERE simplified = \"\u865e\u57ce\u53bf\"", "question": "What is the Pinyin for the simplified \u865e\u57ce\u53bf?", "context": "CREATE TABLE table_2135222_2 (pinyin VARCHAR, simplified VARCHAR)"}, {"answer": "SELECT COUNT(area) FROM table_2135222_2 WHERE population = 703379", "question": "How many areas have a population of 703379?", "context": "CREATE TABLE table_2135222_2 (area VARCHAR, population VARCHAR)"}, {"answer": "SELECT episode AS Summary FROM table_2140071_12 WHERE coach = \"Torae Carr\"", "question": "Name the episode summary for torae carr", "context": "CREATE TABLE table_2140071_12 (episode VARCHAR, coach VARCHAR)"}, {"answer": "SELECT episode AS Summary FROM table_2140071_12 WHERE coach = \"Travis Brown\"", "question": "Name the episode summary for travis brown", "context": "CREATE TABLE table_2140071_12 (episode VARCHAR, coach VARCHAR)"}, {"answer": "SELECT MIN(episode) FROM table_2140071_12 WHERE coach = \"Donnie Klang\"", "question": "Name the least episode for donnie klang", "context": "CREATE TABLE table_2140071_12 (episode INTEGER, coach VARCHAR)"}, {"answer": "SELECT episode FROM table_2140071_12 WHERE coach = \"Travis Brown\"", "question": "Name the episode for travis brown", "context": "CREATE TABLE table_2140071_12 (episode VARCHAR, coach VARCHAR)"}, {"answer": "SELECT COUNT(external_link) FROM table_2140071_7 WHERE premier_date = \"July 24, 2006\"", "question": "How many episodes have a premier date of july 24, 2006", "context": "CREATE TABLE table_2140071_7 (external_link VARCHAR, premier_date VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_2140071_7", "question": "What is the newest season?", "context": "CREATE TABLE table_2140071_7 (season INTEGER)"}, {"answer": "SELECT COUNT(episode) AS Summary FROM table_2140071_7 WHERE coach = \"Valerie\"", "question": "How many episodes have Valerie?", "context": "CREATE TABLE table_2140071_7 (episode VARCHAR, coach VARCHAR)"}, {"answer": "SELECT episode AS Summary FROM table_2140071_7 WHERE episode = 15", "question": "What the summary of episode 15?", "context": "CREATE TABLE table_2140071_7 (episode VARCHAR)"}, {"answer": "SELECT MAX(episode) FROM table_2140071_8 WHERE premier_date = \"March 8, 2008\"", "question": "Which Maximum episode premiered March 8, 2008?", "context": "CREATE TABLE table_2140071_8 (episode INTEGER, premier_date VARCHAR)"}, {"answer": "SELECT coach FROM table_2140071_8 WHERE episode = 15", "question": "Who was the coach for episode 15?", "context": "CREATE TABLE table_2140071_8 (coach VARCHAR, episode VARCHAR)"}, {"answer": "SELECT coach FROM table_2140071_8 WHERE premier_date = \"February 16, 2008\" AND episode > 21.0", "question": "What coach premiered February 16, 2008 later than episode 21.0?", "context": "CREATE TABLE table_2140071_8 (coach VARCHAR, premier_date VARCHAR, episode VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_2140071_8 WHERE coach = \"Cici Kelley\"", "question": "What was Cici Kelley's minimum season?", "context": "CREATE TABLE table_2140071_8 (season INTEGER, coach VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_2140071_8 WHERE coach = \"Rob Masek\"", "question": "How many seasons feature Rob Masek?", "context": "CREATE TABLE table_2140071_8 (season VARCHAR, coach VARCHAR)"}, {"answer": "SELECT stadium FROM table_21436373_4 WHERE type_of_record = \"Regular season game\"", "question": "What was the stadium that had the regular season game?", "context": "CREATE TABLE table_21436373_4 (stadium VARCHAR, type_of_record VARCHAR)"}, {"answer": "SELECT y_ = _2008 FROM table_214479_8 WHERE y_ = _2011 = a = 3", "question": "What is the y = 2008 when y = 2011 is a = 3?", "context": "CREATE TABLE table_214479_8 (y_ VARCHAR, _2008 VARCHAR, a VARCHAR, _2011 VARCHAR)"}, {"answer": "SELECT y_ = _2011 FROM table_214479_8 WHERE expression = month = FLOOR((d + e + 114) / 31)", "question": "What is the y = 2011 when the expression is month = floor ((d + e + 114) / 31)?", "context": "CREATE TABLE table_214479_8 (y_ VARCHAR, _2011 VARCHAR, expression VARCHAR, month VARCHAR, d VARCHAR, e VARCHAR)"}, {"answer": "SELECT y_ = _2008 FROM table_214479_8 WHERE expression = \"Easter Day (Julian calendar)\"", "question": "what is the y = 2008 when the expression is easter day (julian calendar)?", "context": "CREATE TABLE table_214479_8 (y_ VARCHAR, _2008 VARCHAR, expression VARCHAR)"}, {"answer": "SELECT y_ = _2009 FROM table_214479_8 WHERE expression = month = FLOOR((d + e + 114) / 31)", "question": "what is  the y = 2009 when the expression is month = floor ((d + e + 114) / 31)?", "context": "CREATE TABLE table_214479_8 (y_ VARCHAR, _2009 VARCHAR, expression VARCHAR, month VARCHAR, d VARCHAR, e VARCHAR)"}, {"answer": "SELECT MAX(rr1_pts) FROM table_21471897_2 WHERE ranking = 7", "question": "Name the most rr1 pts for 7 ranking", "context": "CREATE TABLE table_21471897_2 (rr1_pts INTEGER, ranking VARCHAR)"}, {"answer": "SELECT races FROM table_21471897_2 WHERE team_name = \"Prada Challenge\"", "question": "Name the races for the prada challenge", "context": "CREATE TABLE table_21471897_2 (races VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT MIN(total_pts) FROM table_21471897_2 WHERE team_name = \"Team Dennis Conner\"", "question": "Name the min total pts for team dennis conner", "context": "CREATE TABLE table_21471897_2 (total_pts INTEGER, team_name VARCHAR)"}, {"answer": "SELECT ranking FROM table_21471897_2 WHERE rr2_pts = 8", "question": "Name the ranking for rr2 pts being 8", "context": "CREATE TABLE table_21471897_2 (ranking VARCHAR, rr2_pts VARCHAR)"}, {"answer": "SELECT COUNT(rr3_pts) FROM table_21471897_2 WHERE won = 11", "question": "Name the total number of rr2 pts for won being 11", "context": "CREATE TABLE table_21471897_2 (rr3_pts VARCHAR, won VARCHAR)"}, {"answer": "SELECT r1b1a2__r_m269_ FROM table_21481509_4 WHERE r1b1c__r_v88_ = \"77.8%\"", "question": "What percentage is listed in column r1b1a2 (r-m269) for the 77.8% r1b1c (r-v88)?", "context": "CREATE TABLE table_21481509_4 (r1b1a2__r_m269_ VARCHAR, r1b1c__r_v88_ VARCHAR)"}, {"answer": "SELECT r1b1c__r_v88_ FROM table_21481509_4 WHERE total_percentage = \"4.5%\"", "question": "What percentage is listed in column r1b1c (r-v88) for the 4.5% total percentage?", "context": "CREATE TABLE table_21481509_4 (r1b1c__r_v88_ VARCHAR, total_percentage VARCHAR)"}, {"answer": "SELECT COUnT AS n FROM table_21481509_4 WHERE r1b1a2__r_m269_ = \"0.6%\"", "question": "How many n are listed for 0.6% r1b1a2 (r-m269)?", "context": "CREATE TABLE table_21481509_4 (COUnT VARCHAR, r1b1a2__r_m269_ VARCHAR)"}, {"answer": "SELECT COUnT AS n FROM table_21481509_4 WHERE population = \"Berbers from Siwa\"", "question": "How many n are listed for berbers from siwa?", "context": "CREATE TABLE table_21481509_4 (COUnT VARCHAR, population VARCHAR)"}, {"answer": "SELECT MAX(n) FROM table_21481509_4 WHERE r1b1c4__r_v69_ = \"55.6%\"", "question": "What is the largest n value for 55.6% r1b1c4 (r-v69)?", "context": "CREATE TABLE table_21481509_4 (n INTEGER, r1b1c4__r_v69_ VARCHAR)"}, {"answer": "SELECT seat_of_rcm FROM table_214920_1 WHERE density__pop_per_km2_ = \"9.7\"", "question": "What is the seat of the RCM in the county that has a density of 9.7?", "context": "CREATE TABLE table_214920_1 (seat_of_rcm VARCHAR, density__pop_per_km2_ VARCHAR)"}, {"answer": "SELECT seat_of_rcm FROM table_214920_1 WHERE density__pop_per_km2_ = \"14.1\"", "question": "What is the seat of the county that has a density of 14.1?", "context": "CREATE TABLE table_214920_1 (seat_of_rcm VARCHAR, density__pop_per_km2_ VARCHAR)"}, {"answer": "SELECT land_area FROM table_214920_1 WHERE population_canada_2011_census = 18847", "question": "What is the land area for the RCM that has a population of 18847?", "context": "CREATE TABLE table_214920_1 (land_area VARCHAR, population_canada_2011_census VARCHAR)"}, {"answer": "SELECT regional_county_municipality__rcm_ FROM table_214920_1 WHERE density__pop_per_km2_ = \"9.7\"", "question": "What is the RCM that has a density of 9.7?", "context": "CREATE TABLE table_214920_1 (regional_county_municipality__rcm_ VARCHAR, density__pop_per_km2_ VARCHAR)"}, {"answer": "SELECT land_area FROM table_214920_1 WHERE density__pop_per_km2_ = \"21.1\"", "question": "What is the land area of the RCM having a density of 21.1?", "context": "CREATE TABLE table_214920_1 (land_area VARCHAR, density__pop_per_km2_ VARCHAR)"}, {"answer": "SELECT withdrawal_rate__2010_11_ FROM table_21514460_1 WHERE graduation_rate__2011_12_ = \"89.3%\"", "question": "What is the withdrawal rate for the school district with a graduation rate of 89.3%?", "context": "CREATE TABLE table_21514460_1 (withdrawal_rate__2010_11_ VARCHAR, graduation_rate__2011_12_ VARCHAR)"}, {"answer": "SELECT headquarters FROM table_21514460_1 WHERE school_district = \"Annapolis Valley Regional School Board\"", "question": "Where is the headquarter located for the Annapolis Valley Regional School Board?", "context": "CREATE TABLE table_21514460_1 (headquarters VARCHAR, school_district VARCHAR)"}, {"answer": "SELECT withdrawal_rate__2010_11_ FROM table_21514460_1 WHERE headquarters = \"Truro\"", "question": "What is their withdrawal rate for the school district with headquarters located in Truro?", "context": "CREATE TABLE table_21514460_1 (withdrawal_rate__2010_11_ VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT graduation_rate__2011_12_ FROM table_21514460_1 WHERE headquarters = \"Sydney\"", "question": "What is the graduation rate for the school district with headquarters located in Sydney?", "context": "CREATE TABLE table_21514460_1 (graduation_rate__2011_12_ VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT surface FROM table_2151643_3 WHERE year = 1983", "question": "What was the surface for events held in 1983?", "context": "CREATE TABLE table_2151643_3 (surface VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_2151643_3 WHERE outcome = \"Winner\" AND partner = \"John Lloyd\" AND surface = \"Clay\"", "question": "What was the total number of matches that had an outcome of Winner, a partner of John Lloyd, and a clay surface?", "context": "CREATE TABLE table_2151643_3 (opponents VARCHAR, surface VARCHAR, outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT opponents FROM table_2151643_3 WHERE outcome = \"Winner\" AND surface = \"Grass\"", "question": "Who were the opponents that led to an outcome of winner on a grass surface?", "context": "CREATE TABLE table_2151643_3 (opponents VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_21550897_1 WHERE _number = 6", "question": "How many times did episode 6 originally air?", "context": "CREATE TABLE table_21550897_1 (original_air_date VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_21550897_1 WHERE us_viewers__million_ = \"9.18\"", "question": "What is the production code for the episode that had 9.18 million viewers (U.S.)?", "context": "CREATE TABLE table_21550897_1 (production_code INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT _number FROM table_21550897_1 WHERE directed_by = \"Craig Ross, Jr.\"", "question": "What episode number was directed by Craig Ross, Jr.", "context": "CREATE TABLE table_21550897_1 (_number VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_21550897_1 WHERE us_viewers__million_ = \"10.14\"", "question": "What episode had 10.14 million viewers (U.S.)?", "context": "CREATE TABLE table_21550897_1 (_number INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_21550897_1 WHERE production_code = 519", "question": "Who wrote the episode with the production code 519?", "context": "CREATE TABLE table_21550897_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT successor FROM table_2159506_4 WHERE reason_for_change = \"Died May 12, 1964\"", "question": "Who are all successors when reason for change is died May 12, 1964?", "context": "CREATE TABLE table_2159506_4 (successor VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT district FROM table_2159506_4 WHERE reason_for_change = \"Died August 9, 1964\"", "question": "What is every district for reason for change is died August 9, 1964?", "context": "CREATE TABLE table_2159506_4 (district VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT MIN(division) FROM table_21602734_1", "question": "What is the lowest division number?", "context": "CREATE TABLE table_21602734_1 (division INTEGER)"}, {"answer": "SELECT reg_season FROM table_21602734_1 WHERE playoffs = \"Did not qualify\" AND year = 2009", "question": "What was the regular season name where they did not qualify for the playoffs in 2009?", "context": "CREATE TABLE table_21602734_1 (reg_season VARCHAR, playoffs VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_21602734_1 WHERE year = 2010", "question": "What league was involved in 2010?", "context": "CREATE TABLE table_21602734_1 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(division) FROM table_21602734_1", "question": "What is the highest number of divisions mentioned?", "context": "CREATE TABLE table_21602734_1 (division INTEGER)"}, {"answer": "SELECT league FROM table_21602734_1 WHERE year = 2008", "question": "What league was involved in 2008?", "context": "CREATE TABLE table_21602734_1 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT administrative_division FROM table_21734764_1 WHERE population_2011_siak_database = \"3,672,994\"", "question": "Which administrative division had a population of 2011 according to the siak database of 3,672,994?", "context": "CREATE TABLE table_21734764_1 (administrative_division VARCHAR, population_2011_siak_database VARCHAR)"}, {"answer": "SELECT population_density___km\u00b2_2010_ FROM table_21734764_1 WHERE administrative_division = \"Bandung Regency\"", "question": "What is the population density of bandung regency?", "context": "CREATE TABLE table_21734764_1 (population_density___km\u00b2_2010_ VARCHAR, administrative_division VARCHAR)"}, {"answer": "SELECT administrative_division FROM table_21734764_1 WHERE population_2011_siak_database = \"606,699\"", "question": "Which administrative division had a 2011 population of 606,699 according to the siak database?", "context": "CREATE TABLE table_21734764_1 (administrative_division VARCHAR, population_2011_siak_database VARCHAR)"}, {"answer": "SELECT area__km\u00b2__2005 FROM table_21734764_1 WHERE administrative_division = \"Cimahi City\"", "question": "What is the area of cimahi city?", "context": "CREATE TABLE table_21734764_1 (area__km\u00b2__2005 VARCHAR, administrative_division VARCHAR)"}, {"answer": "SELECT population_density___km\u00b2_2010_ FROM table_21734764_1 WHERE population_2010_census = 264170", "question": "What is the population density of the administrative division with a population in 2010 of 264170 according to the census?", "context": "CREATE TABLE table_21734764_1 (population_density___km\u00b2_2010_ VARCHAR, population_2010_census VARCHAR)"}, {"answer": "SELECT installation_date FROM table_21821014_1 WHERE location = \"El Paso, Texas\"", "question": "What was the installation date in El Paso, Texas? ", "context": "CREATE TABLE table_21821014_1 (installation_date VARCHAR, location VARCHAR)"}, {"answer": "SELECT chapter FROM table_21821014_1 WHERE institution = \"Illinois Wesleyan\"", "question": "What is the chapter for Illinois Wesleyan? ", "context": "CREATE TABLE table_21821014_1 (chapter VARCHAR, institution VARCHAR)"}, {"answer": "SELECT inactive FROM table_21821014_1 WHERE institution = \"University of Texas, El Paso\"", "question": "What does the inactive state for University of Texas, El Paso? ", "context": "CREATE TABLE table_21821014_1 (inactive VARCHAR, institution VARCHAR)"}, {"answer": "SELECT installation_date FROM table_21821014_1 WHERE chapter = \"Delta\"", "question": "What is the installation date for the Delta Chapter?", "context": "CREATE TABLE table_21821014_1 (installation_date VARCHAR, chapter VARCHAR)"}, {"answer": "SELECT lowest FROM table_21824695_8 WHERE stadium = \"Pohang Steelyard\"", "question": "What is the lowest when pohang steelyard is the stadium?", "context": "CREATE TABLE table_21824695_8 (lowest VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT match_played FROM table_21824695_8 WHERE highest = 32250", "question": "How many match played have the highest as 32250?", "context": "CREATE TABLE table_21824695_8 (match_played VARCHAR, highest VARCHAR)"}, {"answer": "SELECT team FROM table_21824695_8 WHERE match_played = \"10 4\"", "question": "Which team has a match played of 10 4?", "context": "CREATE TABLE table_21824695_8 (team VARCHAR, match_played VARCHAR)"}, {"answer": "SELECT highest FROM table_21824695_8 WHERE team = \"Pohang Steelers\"", "question": "What is the highest when pohang steelers is the team?", "context": "CREATE TABLE table_21824695_8 (highest VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_21824695_8 WHERE average = 7757", "question": "Which team has 7757 as the average?", "context": "CREATE TABLE table_21824695_8 (team VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_2182654_6 WHERE written_by = \"Nancy Oliver\"", "question": "What s the episode number in the season that was written by Nancy Oliver?", "context": "CREATE TABLE table_2182654_6 (no_in_season INTEGER, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2182654_6 WHERE no_in_season = 10", "question": "What date was episode 10 in the season originally aired?", "context": "CREATE TABLE table_2182654_6 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT title FROM table_2182654_6 WHERE directed_by = \"Mary Harron\"", "question": "What was the name of the episode that was directed by Mary Harron?", "context": "CREATE TABLE table_2182654_6 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT average_grade FROM table_21829580_1 WHERE song = \"\u015e\u0131mar\u0131k Tarkan\"", "question": "Name the average grade for \u015f\u0131mar\u0131k tarkan", "context": "CREATE TABLE table_21829580_1 (average_grade VARCHAR, song VARCHAR)"}, {"answer": "SELECT classification__judges_ FROM table_21829580_1 WHERE detailed_grades = \"9, 9, 8, 9\"", "question": "Name the classification for 9, 9, 8, 9", "context": "CREATE TABLE table_21829580_1 (classification__judges_ VARCHAR, detailed_grades VARCHAR)"}, {"answer": "SELECT poles FROM table_2190919_1 WHERE team_s_ = \"#08 Miller Racing\"", "question": "What are the poles is #08 Miller racing?", "context": "CREATE TABLE table_2190919_1 (poles VARCHAR, team_s_ VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_2190919_1 WHERE avg_start = \"8.5\"", "question": "What is the most recent year where the average start is 8.5?", "context": "CREATE TABLE table_2190919_1 (year INTEGER, avg_start VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_2190919_1 WHERE avg_finish = \"23.3\"", "question": "What are the racing teams for which the average finish is 23.3?", "context": "CREATE TABLE table_2190919_1 (team_s_ VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_2190919_1 WHERE position = \"92nd\"", "question": "What racing team/s had the 92nd position?", "context": "CREATE TABLE table_2190919_1 (team_s_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(top_10) FROM table_2190919_1 WHERE avg_finish = \"23.3\"", "question": "How many teams finished in the top team with an average finish of 23.3?", "context": "CREATE TABLE table_2190919_1 (top_10 VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_21907770_4 WHERE versus = \"India\"", "question": "How many times was the opponent country India? ", "context": "CREATE TABLE table_21907770_4 (country VARCHAR, versus VARCHAR)"}, {"answer": "SELECT date FROM table_21907770_4 WHERE versus = \"South Africa\"", "question": "What are the dates where the versus team is South Africa?", "context": "CREATE TABLE table_21907770_4 (date VARCHAR, versus VARCHAR)"}, {"answer": "SELECT championship__titles_finals_ FROM table_2201541_3 WHERE year = 1981", "question": "What championship was played in 1981?", "context": "CREATE TABLE table_2201541_3 (championship__titles_finals_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(outcome) FROM table_2201541_3 WHERE partner = \"Paul McNamee\"", "question": "How many different outcomes did the final with Paul McNamee as a partner have?", "context": "CREATE TABLE table_2201541_3 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT COUNT(partner) FROM table_2201541_3 WHERE championship__titles_finals_ = \"French Open (0/1)\"", "question": "How many different partners were played with during French Open (0/1)?", "context": "CREATE TABLE table_2201541_3 (partner VARCHAR, championship__titles_finals_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2221374_3 WHERE directed_by = \"James Widdoes\" AND production_code = 320", "question": "What date was the episode originally aired that was directed by James Widdoes and the production code is 320?", "context": "CREATE TABLE table_2221374_3 (original_air_date VARCHAR, directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT production_code FROM table_2221374_3 WHERE no_in_season = 3", "question": "What is the production code for episode 3 of the season?", "context": "CREATE TABLE table_2221374_3 (production_code VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT orchestra FROM table_222198_1 WHERE year_of_recording = 1951", "question": "Which orchestra has a recording year of 1951?", "context": "CREATE TABLE table_222198_1 (orchestra VARCHAR, year_of_recording VARCHAR)"}, {"answer": "SELECT orchestra FROM table_222198_1 WHERE year_of_recording = 1934", "question": "Where is the orchestra when the year of recording is 1934?", "context": "CREATE TABLE table_222198_1 (orchestra VARCHAR, year_of_recording VARCHAR)"}, {"answer": "SELECT former_codes FROM table_222666_1 WHERE new_country_names_and_codes = \"Merged into Panama ( PA , PAN , 591 )\"", "question": "Name the former codes for  merged into panama ( pa , pan , 591 )", "context": "CREATE TABLE table_222666_1 (former_codes VARCHAR, new_country_names_and_codes VARCHAR)"}, {"answer": "SELECT COUNT(period_of_validity) FROM table_222666_1 WHERE former_country_name = \"Upper Volta\"", "question": "Name the total number for period of validity for upper volta", "context": "CREATE TABLE table_222666_1 (period_of_validity VARCHAR, former_country_name VARCHAR)"}, {"answer": "SELECT seat_no_4 FROM table_2231241_1 WHERE election = \"January 25, 1967\"", "question": "Who was the winner of seat no 4 for the election on January 25, 1967", "context": "CREATE TABLE table_2231241_1 (seat_no_4 VARCHAR, election VARCHAR)"}, {"answer": "SELECT seat_no_1 FROM table_2231241_1 WHERE mayor = \"John J. Seguier\"", "question": "Who is seat no 1 when the mayor was john j. seguier", "context": "CREATE TABLE table_2231241_1 (seat_no_1 VARCHAR, mayor VARCHAR)"}, {"answer": "SELECT seat_no_6 FROM table_2231241_1 WHERE seat_no_1 = \"Jacques Lachapelle\" AND seat_no_5 = \"Donald S. Dutton\"", "question": "Who was seat no 6 when seat no 1 and seat no 5 were jacques lachapelle and donald s. dutton", "context": "CREATE TABLE table_2231241_1 (seat_no_6 VARCHAR, seat_no_1 VARCHAR, seat_no_5 VARCHAR)"}, {"answer": "SELECT election FROM table_2231241_1 WHERE seat_no_1 = \"Jacques Lachapelle\" AND seat_no_5 = \"G. Sanscartier\"", "question": "which election had seat no 1 filled by jacques lachapelle but seat no 5 was filled by g. sanscartier", "context": "CREATE TABLE table_2231241_1 (election VARCHAR, seat_no_1 VARCHAR, seat_no_5 VARCHAR)"}, {"answer": "SELECT COUNt AS season FROM table_2233872_1 WHERE gp = 64 AND result = \"lost in round 1\"", "question": "How many season did the team lost in round 1 with a GP of 64?", "context": "CREATE TABLE table_2233872_1 (COUNt VARCHAR, gp VARCHAR, result VARCHAR)"}, {"answer": "SELECT season FROM table_2233872_1 WHERE gf = 244", "question": "What was the season where the team reached a GP of 244?", "context": "CREATE TABLE table_2233872_1 (season VARCHAR, gf VARCHAR)"}, {"answer": "SELECT MAX(Otl) FROM table_2233872_1 WHERE l = 28", "question": "What was the maximum OTL if L is 28?", "context": "CREATE TABLE table_2233872_1 (Otl INTEGER, l VARCHAR)"}, {"answer": "SELECT MIN(l) FROM table_2233872_1 WHERE ga = 272", "question": "What was the minimum L if the GA is 272?", "context": "CREATE TABLE table_2233872_1 (l INTEGER, ga VARCHAR)"}, {"answer": "SELECT MIN(total_min_2_medals_) FROM table_22355_23", "question": "What is the least amount of total medals won?", "context": "CREATE TABLE table_22355_23 (total_min_2_medals_ INTEGER)"}, {"answer": "SELECT winning_driver FROM table_22379931_2 WHERE winning_team = \"Lawson Team Impul\"", "question": "Who was the driver for the winning team Lawson Team Impul?", "context": "CREATE TABLE table_22379931_2 (winning_driver VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_22379931_2 WHERE pole_position = \"Beno\u00eet Tr\u00e9luyer\"", "question": "Who has the fastest lap where Beno\u00eet Tr\u00e9luyer got the pole position?", "context": "CREATE TABLE table_22379931_2 (fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_22379931_2 WHERE fastest_lap = \"Takashi Kogure\"", "question": "What was the earlier round where Takashi Kogure got the fastest lap?", "context": "CREATE TABLE table_22379931_2 (round INTEGER, fastest_lap VARCHAR)"}, {"answer": "SELECT COUNT(winning_driver) FROM table_22379931_2 WHERE circuit = \"Suzuka circuit\" AND pole_position = \"Lo\u00efc Duval\"", "question": "How many drivers drove on Suzuka Circuit where Lo\u00efc Duval took pole position?", "context": "CREATE TABLE table_22379931_2 (winning_driver VARCHAR, circuit VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT match_date FROM table_22384475_1 WHERE winner = \"West Indies\"", "question": "What date did the West Indies win the match?", "context": "CREATE TABLE table_22384475_1 (match_date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(team__a_) FROM table_22384475_1 WHERE margin = \"131 runs\"", "question": "How many games were won by a margin of 131 runs?", "context": "CREATE TABLE table_22384475_1 (team__a_ VARCHAR, margin VARCHAR)"}, {"answer": "SELECT winner FROM table_22384475_1 WHERE margin = \"131 runs\"", "question": "Who won the match when the margin was 131 runs?", "context": "CREATE TABLE table_22384475_1 (winner VARCHAR, margin VARCHAR)"}, {"answer": "SELECT margin FROM table_22384475_1 WHERE match_date = \"19 Jan 2002\"", "question": "What was the margin of the match on 19 Jan 2002?", "context": "CREATE TABLE table_22384475_1 (margin VARCHAR, match_date VARCHAR)"}, {"answer": "SELECT location_of_venue FROM table_224616_1 WHERE venue = \"Bellerive country Club\"", "question": "Where is the Bellerive Country Club venue located?", "context": "CREATE TABLE table_224616_1 (location_of_venue VARCHAR, venue VARCHAR)"}, {"answer": "SELECT winners_score FROM table_224616_1 WHERE year = 1982", "question": "List all winning scores from 1982.", "context": "CREATE TABLE table_224616_1 (winners_score VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(vacator) FROM table_224794_3 WHERE district = \"Pennsylvania 33rd\"", "question": "How many vacators were in the Pennsylvania 33rd district?", "context": "CREATE TABLE table_224794_3 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT successor FROM table_224794_3 WHERE district = \"Kentucky 2nd\"", "question": "Who was the successor for the Kentucky 2nd district?", "context": "CREATE TABLE table_224794_3 (successor VARCHAR, district VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_224837_4 WHERE reason_for_change = \"Contested election; served until February 14, 1794\"", "question": "Name the date successor seated for contested election; served until february 14, 1794", "context": "CREATE TABLE table_224837_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_224837_4 WHERE reason_for_change = \"Delegate seat established\"", "question": "Name the date successor seated for delegate seat established", "context": "CREATE TABLE table_224837_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_224837_4 WHERE district = \"South Carolina 3rd\"", "question": "Name the date successor seated is south carolina 3rd", "context": "CREATE TABLE table_224837_4 (date_successor_seated VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(vacator) FROM table_224839_3 WHERE successor = \"William H. Wells ( F )\"", "question": "What is the number of vacators when the successor was William H. Wells ( F )?", "context": "CREATE TABLE table_224839_3 (vacator VARCHAR, successor VARCHAR)"}, {"answer": "SELECT COUNT(date_of_successors_formal_installation) FROM table_224839_3 WHERE vacator = \"Joshua Clayton ( F )\"", "question": "What is the total number of dates of successor formal installation when the vacator was Joshua Clayton ( F )?", "context": "CREATE TABLE table_224839_3 (date_of_successors_formal_installation VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT COUNT(successor) FROM table_224839_3 WHERE vacator = \"William North ( F )\"", "question": "What is the total number of successors when the vacator was William North ( F )", "context": "CREATE TABLE table_224839_3 (successor VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_224839_3 WHERE successor = \"Joseph Anderson ( DR )\"", "question": "What are all the states (class) when the successor was Joseph Anderson ( DR )?", "context": "CREATE TABLE table_224839_3 (state__class_ VARCHAR, successor VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_224839_3 WHERE reason_for_change = \"Resigned November 26, 1798\" AND vacator = \"John Hunter ( DR )\"", "question": "What are all the states (class) when the reason for change was resigned November 26, 1798 and the vacator was John Hunter ( DR )?", "context": "CREATE TABLE table_224839_3 (state__class_ VARCHAR, reason_for_change VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT COUNT(vacator) FROM table_225093_4 WHERE date_successor_seated = \"October 22, 1808\"", "question": "How many vacators have October 22, 1808 as date successor seated?", "context": "CREATE TABLE table_225093_4 (vacator VARCHAR, date_successor_seated VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_225093_4 WHERE district = \"Massachusetts 2nd\"", "question": "What is the date successor seated where Massachusetts 2nd is the district?", "context": "CREATE TABLE table_225093_4 (date_successor_seated VARCHAR, district VARCHAR)"}, {"answer": "SELECT successor FROM table_225093_4 WHERE reason_for_change = \"Seat declared vacant January 2, 1808\"", "question": "Who is the successor when the reason for change is seat declared vacant January 2, 1808", "context": "CREATE TABLE table_225093_4 (successor VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT district FROM table_225093_4 WHERE vacator = \"John Culpepper (F)\"", "question": "Which district has John Culpepper (f) as the vacator?", "context": "CREATE TABLE table_225093_4 (district VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_225100_4 WHERE district = \"Maryland 6th\"", "question": "What is the reason for change when maryland 6th is the district? ", "context": "CREATE TABLE table_225100_4 (reason_for_change VARCHAR, district VARCHAR)"}, {"answer": "SELECT vacator FROM table_225100_4 WHERE district = \"South Carolina 4th\"", "question": "Who is the vacator when south carolina 4th is the district?", "context": "CREATE TABLE table_225100_4 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT successor FROM table_225100_4 WHERE district = \"Florida Territory At-large\"", "question": "Who is the successor when florida territory at-large is the district?", "context": "CREATE TABLE table_225100_4 (successor VARCHAR, district VARCHAR)"}, {"answer": "SELECT vacator FROM table_225102_4 WHERE reason_for_change = \"Died January 12, 1826\"", "question": "Name the vacator for reason for change died january 12, 1826", "context": "CREATE TABLE table_225102_4 (vacator VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_225102_4 WHERE district = \"Pennsylvania 13th\"", "question": "Name the reason for change pennsylvania 13th", "context": "CREATE TABLE table_225102_4 (reason_for_change VARCHAR, district VARCHAR)"}, {"answer": "SELECT vacator FROM table_225102_4 WHERE reason_for_change = \"Died August 13, 1826\"", "question": "Name the vacator for died august 13, 1826", "context": "CREATE TABLE table_225102_4 (vacator VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT COUNT(successor) FROM table_225200_3 WHERE date_of_successors_formal_installation = \"Elected January 26, 1837\"", "question": "Name the successor for elected january 26, 1837", "context": "CREATE TABLE table_225200_3 (successor VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT successor FROM table_225204_4 WHERE district = \"North Carolina 13th\"", "question": "Name the successor for north carolina 13th", "context": "CREATE TABLE table_225204_4 (successor VARCHAR, district VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_225204_4 WHERE district = \"Pennsylvania 17th\"", "question": "Name the date successor seated for pennsylvania 17th", "context": "CREATE TABLE table_225204_4 (date_successor_seated VARCHAR, district VARCHAR)"}, {"answer": "SELECT written_by FROM table_22580855_1 WHERE series_no = 170", "question": "who are the writer of the series episode number 170?", "context": "CREATE TABLE table_22580855_1 (written_by VARCHAR, series_no VARCHAR)"}, {"answer": "SELECT MAX(series_no) FROM table_22580855_1 WHERE us_viewers__millions_ = \"3.14\"", "question": "which is the  maximun serie episode number when the millions of North American spectators is 3.14?", "context": "CREATE TABLE table_22580855_1 (series_no INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_22580855_1 WHERE directed_by = \"Jonathan Herron\"", "question": "How many writers write the episode whose director is Jonathan Herron?", "context": "CREATE TABLE table_22580855_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_22580855_1", "question": "which is the biggest production code?", "context": "CREATE TABLE table_22580855_1 (production_code INTEGER)"}, {"answer": "SELECT written_by FROM table_22580855_1 WHERE production_code = 8011", "question": "who are the writers when the production code is 8011?", "context": "CREATE TABLE table_22580855_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_22580855_1 WHERE written_by = \"Timothy J. Lea\" AND directed_by = \"Norberto Barba\"", "question": "what is the name of the episode whose writer is Timothy J. Lea and the director is Norberto Barba?", "context": "CREATE TABLE table_22580855_1 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_22587192_1 WHERE mens_singles = \"Raju Rai\"", "question": "What is the least year when men's singles is Raju Rai?", "context": "CREATE TABLE table_22587192_1 (year INTEGER, mens_singles VARCHAR)"}, {"answer": "SELECT COUNT(outcome) FROM table_22597626_5 WHERE opponent_in_the_final = \"Johan Kriek\"", "question": "How many outcomes are listed when the final opponent was Johan Kriek? ", "context": "CREATE TABLE table_22597626_5 (outcome VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT miles__km_ FROM table_22648285_1 WHERE race_time = \"2:47:11\"", "question": "How many miles were driven in the race where the winner finished in 2:47:11?", "context": "CREATE TABLE table_22648285_1 (miles__km_ VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT date FROM table_22648285_1 WHERE year = 1968", "question": "What date was the race in 1968 run on?", "context": "CREATE TABLE table_22648285_1 (date VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_22648285_1 WHERE laps = \"301*\"", "question": "What year had a race with 301* laps?", "context": "CREATE TABLE table_22648285_1 (year VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(race_time) FROM table_22648285_1 WHERE driver = \"Cale Yarborough\" AND average_speed__mph_ = \"88.924\"", "question": "How many races did Cale Yarborough win at an average speed of 88.924 mph?", "context": "CREATE TABLE table_22648285_1 (race_time VARCHAR, driver VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT MAX(pos) FROM table_226619_12 WHERE club = \"West Bromwich Albion\"", "question": "Name the most pos for west bromwich albion club", "context": "CREATE TABLE table_226619_12 (pos INTEGER, club VARCHAR)"}, {"answer": "SELECT points FROM table_226619_12 WHERE respect_toward_opponents = 212", "question": "Name the points for 212 respect toward opponents", "context": "CREATE TABLE table_226619_12 (points VARCHAR, respect_toward_opponents VARCHAR)"}, {"answer": "SELECT MIN(pos) FROM table_226619_12 WHERE club = \"West Ham United\"", "question": "Name the pos for west ham united", "context": "CREATE TABLE table_226619_12 (pos INTEGER, club VARCHAR)"}, {"answer": "SELECT name FROM table_22705586_1 WHERE date_of_birth = \"27/07/86\"", "question": "Name the date of birth for 27/07/86", "context": "CREATE TABLE table_22705586_1 (name VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT MIN(number) FROM table_22705586_1", "question": "Name the least number", "context": "CREATE TABLE table_22705586_1 (number INTEGER)"}, {"answer": "SELECT nationality FROM table_22705586_1 WHERE name = \"Francesco Guglielmi\"", "question": "Name the nationality for francesco guglielmi", "context": "CREATE TABLE table_22705586_1 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(height__m_) FROM table_22705586_1 WHERE date_of_birth = \"17/08/75\"", "question": "Name the height for date of birth being 17/08/75", "context": "CREATE TABLE table_22705586_1 (height__m_ INTEGER, date_of_birth VARCHAR)"}, {"answer": "SELECT COUNT(challenge_cup) FROM table_22683369_8 WHERE p = 7", "question": "How many points did player 7 score in the challenge cup?", "context": "CREATE TABLE table_22683369_8 (challenge_cup VARCHAR, p VARCHAR)"}, {"answer": "SELECT COUNT(league) FROM table_22683369_8 WHERE player = \"Kris Doolan\"", "question": "What is Kris doolan's league number?", "context": "CREATE TABLE table_22683369_8 (league VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(p) FROM table_22683369_8 WHERE player = \"Bryan Hodge\"", "question": "What is bryan hodge's player number", "context": "CREATE TABLE table_22683369_8 (p VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(league) AS Cup FROM table_22683369_8", "question": "What was the lowest number of points scored in the league cup?", "context": "CREATE TABLE table_22683369_8 (league INTEGER)"}, {"answer": "SELECT date FROM table_22801165_1 WHERE cowboys_points = 13", "question": "When did the Cowboys score 13 points in 1966?", "context": "CREATE TABLE table_22801165_1 (date VARCHAR, cowboys_points VARCHAR)"}, {"answer": "SELECT record FROM table_22801165_1 WHERE date = \"Nov. 5\"", "question": "What was the Cowboys' record for Nov. 5, 1966?", "context": "CREATE TABLE table_22801165_1 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT regular_season_winner FROM table_22779004_1 WHERE tournament_winner = \"Maryland\"", "question": "Who won the regular season when Maryland won the tournament?", "context": "CREATE TABLE table_22779004_1 (regular_season_winner VARCHAR, tournament_winner VARCHAR)"}, {"answer": "SELECT conference AS Tournament FROM table_22779004_1 WHERE regular_season_winner = \"Idaho State\"", "question": "Who won the tournament when Idaho State won the regular season?", "context": "CREATE TABLE table_22779004_1 (conference VARCHAR, regular_season_winner VARCHAR)"}, {"answer": "SELECT regular_season_winner FROM table_22779004_1 WHERE conference = \"Missouri Valley conference\"", "question": "Who won the regular season when Missouri Valley Conference took place?", "context": "CREATE TABLE table_22779004_1 (regular_season_winner VARCHAR, conference VARCHAR)"}, {"answer": "SELECT conference FROM table_22779004_1 WHERE regular_season_winner = \"Arizona State\"", "question": "What was the conference when Arizona State won the regular season?", "context": "CREATE TABLE table_22779004_1 (conference VARCHAR, regular_season_winner VARCHAR)"}, {"answer": "SELECT tournament_winner FROM table_22779004_1 WHERE conference = \"Atlantic Coast conference\"", "question": "Who is the tournament winner in the Atlantic Coast Conference?", "context": "CREATE TABLE table_22779004_1 (tournament_winner VARCHAR, conference VARCHAR)"}, {"answer": "SELECT county FROM table_22815568_2 WHERE unemployment_rate = \"3.6%\"", "question": "Which county had a 3.6% unemployment rate?", "context": "CREATE TABLE table_22815568_2 (county VARCHAR, unemployment_rate VARCHAR)"}, {"answer": "SELECT status FROM table_22815568_2 WHERE poverty_rate = \"17.3%\"", "question": "What is the status of the county that has a 17.3% poverty rate?", "context": "CREATE TABLE table_22815568_2 (status VARCHAR, poverty_rate VARCHAR)"}, {"answer": "SELECT market_income_per_capita FROM table_22815568_2 WHERE poverty_rate = \"9.4%\"", "question": "What is the market income per capita of the county with the 9.4% poverty rate?", "context": "CREATE TABLE table_22815568_2 (market_income_per_capita VARCHAR, poverty_rate VARCHAR)"}, {"answer": "SELECT COUNT(status) FROM table_22815568_2 WHERE population = 90565", "question": "How many status' are there with a population of 90565?", "context": "CREATE TABLE table_22815568_2 (status VARCHAR, population VARCHAR)"}, {"answer": "SELECT status FROM table_22815568_2 WHERE market_income_per_capita = \"$24,326\"", "question": "What is the status of the county with per capita market income of $24,326?", "context": "CREATE TABLE table_22815568_2 (status VARCHAR, market_income_per_capita VARCHAR)"}, {"answer": "SELECT COUNT(unemployment_rate) FROM table_22815568_2 WHERE market_income_per_capita = \"$20,958\"", "question": "What is the unemployment rate for the county with a market income per capita of $20,958?", "context": "CREATE TABLE table_22815568_2 (unemployment_rate VARCHAR, market_income_per_capita VARCHAR)"}, {"answer": "SELECT written_by FROM table_22835602_1 WHERE production_code = \"1ARK07\"", "question": "List all who wrote for production code 1ark07.", "context": "CREATE TABLE table_22835602_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_22835602_1 WHERE production_code = \"1ARK08\"", "question": "How many directors were there for the production code 1ark08?", "context": "CREATE TABLE table_22835602_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_22835602_1 WHERE viewers__in_millions_ = \"1.945\"", "question": "List all directors from episodes with viewership of 1.945 million.", "context": "CREATE TABLE table_22835602_1 (directed_by VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_22835602_1 WHERE production_code = \"1ARK79\"", "question": "What is the original air date for production code 1ark79?", "context": "CREATE TABLE table_22835602_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_22853654_10 WHERE edition = \"2006 Davis Cup Europe/Africa Group I\"", "question": "How many rounds were there in the 2006 davis cup europe/africa group I?", "context": "CREATE TABLE table_22853654_10 (round VARCHAR, edition VARCHAR)"}, {"answer": "SELECT team FROM table_22879262_13 WHERE date = \"May 3\"", "question": "Where does the team play May 3?", "context": "CREATE TABLE table_22879262_13 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_22879323_8 WHERE date = \"February 27\"", "question": "What team was the game on February 27 played against?", "context": "CREATE TABLE table_22879323_8 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_22879323_8 WHERE high_rebounds = \"Brook Lopez (8)\"", "question": "What was the score of the game in which Brook Lopez (8) did the high rebounds?", "context": "CREATE TABLE table_22879323_8 (score VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_assists FROM table_22879323_8 WHERE date = \"February 9\"", "question": "Who did the high assists in the game played on February 9?", "context": "CREATE TABLE table_22879323_8 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_22879323_8 WHERE team = \"Memphis\"", "question": "What was the record in the game against Memphis?", "context": "CREATE TABLE table_22879323_8 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_22879323_8 WHERE high_rebounds = \"Kris Humphries (8)\"", "question": "What's the highest game number for a game in which Kris Humphries (8) did the high rebounds?", "context": "CREATE TABLE table_22879323_8 (game INTEGER, high_rebounds VARCHAR)"}, {"answer": "SELECT high_assists FROM table_22883210_11 WHERE series = \"0-1\"", "question": "When 0-1 is the series who has the highest amount of assists?", "context": "CREATE TABLE table_22883210_11 (high_assists VARCHAR, series VARCHAR)"}, {"answer": "SELECT high_points FROM table_22883210_11 WHERE game = 5", "question": "When 5 is the game who has the highest amount of points?", "context": "CREATE TABLE table_22883210_11 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_22883210_11 WHERE series = \"1-1\"", "question": "When 1-1 is the series who is the team?", "context": "CREATE TABLE table_22883210_11 (team VARCHAR, series VARCHAR)"}, {"answer": "SELECT date FROM table_22883210_11 WHERE high_points = \"George Hill (29)\"", "question": "When george hill (29) has the highest amount of points what is the date?", "context": "CREATE TABLE table_22883210_11 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT audition_city FROM table_22897967_1 WHERE callback_venue = \"Hyatt Regency Chicago\"", "question": "Name the audition city for hyatt regency chicago", "context": "CREATE TABLE table_22897967_1 (audition_city VARCHAR, callback_venue VARCHAR)"}, {"answer": "SELECT callback_date FROM table_22897967_1 WHERE audition_venue = \"Amway Arena\"", "question": "Name the callback date for amway arena", "context": "CREATE TABLE table_22897967_1 (callback_date VARCHAR, audition_venue VARCHAR)"}, {"answer": "SELECT COUNT(guest_judge) FROM table_22897967_1 WHERE first_audition_date = \"July 9, 2009\"", "question": "Name the guest judge for first audition date being july 9, 2009", "context": "CREATE TABLE table_22897967_1 (guest_judge VARCHAR, first_audition_date VARCHAR)"}, {"answer": "SELECT COUNT(golden_tickets) FROM table_22897967_1 WHERE callback_venue = \"Rosen Shingle Creek Resort\"", "question": "Name the total number of golden tickets being rosen shingle creek resort", "context": "CREATE TABLE table_22897967_1 (golden_tickets VARCHAR, callback_venue VARCHAR)"}, {"answer": "SELECT golden_tickets FROM table_22897967_1 WHERE audition_venue = \"Invesco Field\"", "question": "Name the golden ticket for invesco field", "context": "CREATE TABLE table_22897967_1 (golden_tickets VARCHAR, audition_venue VARCHAR)"}, {"answer": "SELECT kr_narayanan__values_ FROM table_22897453_1 WHERE states = \"Pondicherry\"", "question": "Name the k. r. narayanan values for pondicherry", "context": "CREATE TABLE table_22897453_1 (kr_narayanan__values_ VARCHAR, states VARCHAR)"}, {"answer": "SELECT kr_narayanan__votes_ FROM table_22897453_1 WHERE kr_narayanan__values_ = 936", "question": "Name the kr narayanan votes for values being 936 for kr", "context": "CREATE TABLE table_22897453_1 (kr_narayanan__votes_ VARCHAR, kr_narayanan__values_ VARCHAR)"}, {"answer": "SELECT MAX(kr_narayanan__votes_) FROM table_22897453_1 WHERE value_of_each_vote = 208", "question": "Name the most kr votes for value of each vote for 208", "context": "CREATE TABLE table_22897453_1 (kr_narayanan__votes_ INTEGER, value_of_each_vote VARCHAR)"}, {"answer": "SELECT COUNT(tn_seshan__values_) FROM table_22897453_1 WHERE kr_narayanan__values_ = 478608", "question": "Name the number of tn seshan values for kr values is 478608", "context": "CREATE TABLE table_22897453_1 (tn_seshan__values_ VARCHAR, kr_narayanan__values_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_22948559_1 WHERE no_in_season = \"21\"", "question": "Name the production code for number in season being 21", "context": "CREATE TABLE table_22948559_1 (production_code VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT production_code FROM table_22948559_1 WHERE written_by = \"Paul Lieberstein\"", "question": "Name the production code by paul lieberstein", "context": "CREATE TABLE table_22948559_1 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(blocks) FROM table_22993636_5 WHERE rebounds = 198", "question": "How many blockings occured in the game with 198 rebounds?", "context": "CREATE TABLE table_22993636_5 (blocks INTEGER, rebounds VARCHAR)"}, {"answer": "SELECT minutes FROM table_22993636_5 WHERE player = \"Jordan Coleman\"", "question": "For how long did Jordan Coleman play?", "context": "CREATE TABLE table_22993636_5 (minutes VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(minutes) FROM table_22993636_5 WHERE player = \"Chanel Chisholm\"", "question": "How much time, in minutes, did Chanel Chisholm play?", "context": "CREATE TABLE table_22993636_5 (minutes VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(three_pointers) FROM table_22993636_5 WHERE steals = 52", "question": "What is the lowest number of 3 pointers that occured in games with 52 steals?", "context": "CREATE TABLE table_22993636_5 (three_pointers INTEGER, steals VARCHAR)"}, {"answer": "SELECT MIN(games_played) FROM table_22993636_5 WHERE steals = 50", "question": "What is the lowest number of games played by the player with 50 steals?", "context": "CREATE TABLE table_22993636_5 (games_played INTEGER, steals VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_2305948_1 WHERE name = \"The Rock\"", "question": "What countries does the Rock come from?", "context": "CREATE TABLE table_2305948_1 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(other_placings) FROM table_2305948_1 WHERE federation = \"ROH, WWE\"", "question": "How many times has a wrestler whose federation was roh, wwe competed in this event?", "context": "CREATE TABLE table_2305948_1 (other_placings VARCHAR, federation VARCHAR)"}, {"answer": "SELECT _number FROM table_2305948_1 WHERE name = \"Eddie Guerrero\"", "question": "What are the rank/s of Eddie Guerrero?", "context": "CREATE TABLE table_2305948_1 (_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(2) FROM table_2305948_1 WHERE country = \"England\"", "question": "How many times has a wrestler from the country of England wrestled in this event?", "context": "CREATE TABLE table_2305948_1 (country VARCHAR)"}, {"answer": "SELECT written_by FROM table_23235679_1 WHERE no_in_series = 88", "question": "Name who wrote number 88", "context": "CREATE TABLE table_23235679_1 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_23235679_1 WHERE production_code = \"5AJN11\"", "question": "Name who wrote 5ajn11", "context": "CREATE TABLE table_23235679_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_23235679_1 WHERE directed_by = \"Pam Cooke & Jansen Yee\"", "question": "Name who wrote the episode directed by  pam cooke & jansen yee", "context": "CREATE TABLE table_23235679_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_23235767_4 WHERE score_in_the_final = \"6\u20133, 6\u20132\" AND surface = \"Hard\"", "question": "Name the number of year for 6\u20133, 6\u20132 hard surface", "context": "CREATE TABLE table_23235767_4 (year VARCHAR, score_in_the_final VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_23235767_4 WHERE championship = \"Philadelphia\"", "question": "Name the surface for philadelphia", "context": "CREATE TABLE table_23235767_4 (surface VARCHAR, championship VARCHAR)"}, {"answer": "SELECT championship FROM table_23235767_4 WHERE surface = \"Clay\" AND opponent_in_the_final = \"Corrado Barazzutti\"", "question": "Name the championship for clay and corrado barazzutti", "context": "CREATE TABLE table_23235767_4 (championship VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT year FROM table_23235767_4 WHERE surface = \"Clay\" AND championship = \"Boston\" AND opponent_in_the_final = \"Guillermo Vilas\"", "question": "Name the year for clay for boston and guillermo vilas", "context": "CREATE TABLE table_23235767_4 (year VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR, championship VARCHAR)"}, {"answer": "SELECT COUNT(opponent_in_the_final) FROM table_23235767_4 WHERE score_in_the_final = \"6\u20132, 6\u20131, 6\u20133\"", "question": "Name the total number of opponent in the final for 6\u20132, 6\u20131, 6\u20133", "context": "CREATE TABLE table_23235767_4 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT year FROM table_23235767_1 WHERE opponent_in_the_final = \"John McEnroe\" AND championship = \"Wimbledon\"", "question": "What is every year where opponent in the final is John Mcenroe at Wimbledon?", "context": "CREATE TABLE table_23235767_1 (year VARCHAR, opponent_in_the_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_23235767_1 WHERE opponent_in_the_final = \"John McEnroe\" AND championship = \"US Open\"", "question": "What is every score in the final for opponent in final John Mcenroe at US Open?", "context": "CREATE TABLE table_23235767_1 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT surface FROM table_23235767_1 WHERE score_in_the_final = \"6\u20134, 6\u20137 (1\u20137) , 6\u20137 (4\u20137) , 4\u20136\"", "question": "What is every surface with a score in the final of 6\u20134, 6\u20137 (1\u20137) , 6\u20137 (4\u20137) , 4\u20136?", "context": "CREATE TABLE table_23235767_1 (surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_23248910_11 WHERE game = 6", "question": "What was the score in game 6?", "context": "CREATE TABLE table_23248910_11 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23248910_11 WHERE game = 2", "question": "What were the amount of rebounds in game 2?", "context": "CREATE TABLE table_23248910_11 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_23274514_8 WHERE location_attendance = \"TD Garden 18,624\"", "question": "On what date was the attendance at TD Garden 18,624?", "context": "CREATE TABLE table_23274514_8 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_23274514_6 WHERE record = \"14-27\"", "question": "What day was the record 14-27?", "context": "CREATE TABLE table_23274514_6 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_23274514_6 WHERE game = 35", "question": "How many people got high points in game 35?", "context": "CREATE TABLE table_23274514_6 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_23274514_6 WHERE date = \"January 2\"", "question": "Who had the highest points on January 2?", "context": "CREATE TABLE table_23274514_6 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23281862_6 WHERE high_points = \"Carl Landry (23)\"", "question": "Who did the high rebounds in the game where Carl Landry (23) did the most high points?", "context": "CREATE TABLE table_23281862_6 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_23281862_6 WHERE high_rebounds = \"Shane Battier (8)\"", "question": "What's the end score of the game where Shane Battier (8) did the high rebounds?", "context": "CREATE TABLE table_23281862_6 (score VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23281862_6 WHERE high_points = \"Carl Landry (25)\"", "question": "Where was the game in which Carl Landry (25) did the most high points played?", "context": "CREATE TABLE table_23281862_6 (location_attendance VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_assists FROM table_23284271_8 WHERE record = \"32-19\"", "question": "Who had the most high assists with a record of 32-19?", "context": "CREATE TABLE table_23284271_8 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_23284271_8 WHERE record = \"32-19\"", "question": "When did the Mavericks have a record of 32-19?", "context": "CREATE TABLE table_23284271_8 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_23284271_9 WHERE record = \"45-22\"", "question": "List the stadium and number of people in attendance when the team record was 45-22.", "context": "CREATE TABLE table_23284271_9 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_23284271_9 WHERE record = \"46-22\"", "question": "How many games had been played when the Mavericks had a 46-22 record?", "context": "CREATE TABLE table_23284271_9 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT date FROM table_23285761_8 WHERE score = \"W 109\u201395 (OT)\"", "question": "Name the date for score w 109\u201395 (ot)", "context": "CREATE TABLE table_23285761_8 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_points FROM table_23285761_8 WHERE location_attendance = \"Pepsi Center 19,155\"", "question": "Name the high points for pepsi center 19,155", "context": "CREATE TABLE table_23285761_8 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_23285805_4 WHERE record = \"5-8\"", "question": "If the record is 5-8, what is the team name?", "context": "CREATE TABLE table_23285805_4 (team VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_23285805_4 WHERE record = \"5-5\"", "question": "If the record is 5-5, what is the game maximum?", "context": "CREATE TABLE table_23285805_4 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT score FROM table_23285805_4 WHERE record = \"6-8\"", "question": "If the record is 6-8, what was the score?", "context": "CREATE TABLE table_23285805_4 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_23286112_6 WHERE game = 3", "question": "When was the game number 3 played?", "context": "CREATE TABLE table_23286112_6 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23286112_6 WHERE high_points = \"Kevin Durant (25)\"", "question": "Where was the game in which Kevin Durant (25) did the most high points played?", "context": "CREATE TABLE table_23286112_6 (location_attendance VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_23286112_6 WHERE high_rebounds = \"Jeff Green (14)\"", "question": "What was the record in the game in which Jeff Green (14) did the most high rebounds?", "context": "CREATE TABLE table_23286112_6 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT team FROM table_23286112_8 WHERE date = \"January 4\"", "question": "Name the team for january 4", "context": "CREATE TABLE table_23286112_8 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23286112_8 WHERE date = \"January 18\"", "question": "Name the location attendance for january 18", "context": "CREATE TABLE table_23286112_8 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_23286112_8 WHERE date = \"January 29\"", "question": "Name the least game for january 29", "context": "CREATE TABLE table_23286112_8 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23286112_7 WHERE high_assists = \"Russell Westbrook (5)\" AND high_rebounds = \"Nenad Krstic (8)\"", "question": "What location attendance has russell westbrook (5) as high assists and nenad krstic (8) as high rebounds?", "context": "CREATE TABLE table_23286112_7 (location_attendance VARCHAR, high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_points FROM table_23286112_7 WHERE location_attendance = \"Toyota Center 15,095\"", "question": "Who has high points when toyota center 15,095 is location attendance?", "context": "CREATE TABLE table_23286112_7 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_points FROM table_23286112_7 WHERE location_attendance = \"Verizon Center 17,152\"", "question": "Who has high points when verizon center 17,152 is location attendance?", "context": "CREATE TABLE table_23286112_7 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT score FROM table_23286112_7 WHERE date = \"December 7\"", "question": "What is the score for the date of December 7?", "context": "CREATE TABLE table_23286112_7 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_23286223_5 WHERE high_rebounds = \"Carlos Boozer (8)\"", "question": "What's the number of the game in which Carlos Boozer (8) did the high rebounds?", "context": "CREATE TABLE table_23286223_5 (game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_23286223_5 WHERE high_assists = \"Deron Williams (13)\"", "question": "When was the game in which Deron Williams (13) did the high assists played?", "context": "CREATE TABLE table_23286223_5 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_23286223_5 WHERE game = 26", "question": "How many different high rebound results are there for the game number 26?", "context": "CREATE TABLE table_23286223_5 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_23286223_8 WHERE date = \"March 4\"", "question": "How many different players did the most high assists on the March 4 game?", "context": "CREATE TABLE table_23286223_8 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_23286223_8 WHERE high_assists = \"Deron Williams (6)\"", "question": "What was the record at the game where Deron Williams (6) did the high assists?", "context": "CREATE TABLE table_23286223_8 (record VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23286223_8 WHERE date = \"March 24\"", "question": "Where was the March 24 game played?", "context": "CREATE TABLE table_23286223_8 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_23286223_8 WHERE record = \"39-22\"", "question": "How many players did the most high points in the game with 39-22 record?", "context": "CREATE TABLE table_23286223_8 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_23292220_8 WHERE jasons_team = \"Rhod Gilbert and Shappi Khorsandi\"", "question": "What is the broadcast date where Jason's team is Rhod Gilbert and Shappi Khorsandi?", "context": "CREATE TABLE table_23292220_8 (first_broadcast VARCHAR, jasons_team VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_23292220_8 WHERE seans_team = \"Jeremy Clarkson and James McQuillan\"", "question": "In how many episodes did Sean's team include Jeremy Clarkson and James McQuillan?", "context": "CREATE TABLE table_23292220_8 (episode VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT jasons_team FROM table_23292220_8 WHERE first_broadcast = \"12 June 2009\"", "question": "Who was on Jason's team for the 12 June 2009 episode?", "context": "CREATE TABLE table_23292220_8 (jasons_team VARCHAR, first_broadcast VARCHAR)"}, {"answer": "SELECT jasons_team FROM table_23292220_8 WHERE seans_team = \"Reginald D. Hunter and Kelly Osbourne\"", "question": "Who was on Jason's team in the episode where Sean's team was Reginald D. Hunter and Kelly Osbourne?", "context": "CREATE TABLE table_23292220_8 (jasons_team VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT record FROM table_23346303_3 WHERE location = \"Tampa, FL\" AND opponent = \"Louisville\"", "question": "what is the record where the locaiton is tampa, fl and the opponent is louisville?", "context": "CREATE TABLE table_23346303_3 (record VARCHAR, location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_23346303_3 WHERE location = \"Syracuse, NY\"", "question": "what is the number of opponents where the location is syracuse, ny?", "context": "CREATE TABLE table_23346303_3 (opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT record FROM table_23346303_3 WHERE opponent = \"Central Connecticut\"", "question": "what is the record where the opponent is central connecticut?", "context": "CREATE TABLE table_23346303_3 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT horizontal_order FROM table_233830_1 WHERE channels = \"WXYZRSTUVPQ\"", "question": "If the channels is wxyzrstuvpq, what is the horizontal order?", "context": "CREATE TABLE table_233830_1 (horizontal_order VARCHAR, channels VARCHAR)"}, {"answer": "SELECT channels FROM table_233830_1 WHERE soundfield_type = \"mixed-order\" AND height_order = 1", "question": "If the height order is 1 and the soundfield type is mixed-order, what are all the channels?", "context": "CREATE TABLE table_233830_1 (channels VARCHAR, soundfield_type VARCHAR, height_order VARCHAR)"}, {"answer": "SELECT number_of_channels FROM table_233830_1 WHERE channels = \"WXYZUV\"", "question": "If the channels is wxyzuv, what is the number of channels?", "context": "CREATE TABLE table_233830_1 (number_of_channels VARCHAR, channels VARCHAR)"}, {"answer": "SELECT title FROM table_23399481_4 WHERE us_viewers__in_millions_ = \"1.10\"", "question": "What are the titles of the episodes which had 1.10 million U.S. viewers?", "context": "CREATE TABLE table_23399481_4 (title VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_23399481_4 WHERE us_viewers__in_millions_ = \"1.22\"", "question": "What is the name of the episodes which had 1.22 million U.S. viewers?", "context": "CREATE TABLE table_23399481_4 (title VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT us_viewers__in_millions_ FROM table_23399481_4 WHERE written_by = \"Andrea Conway Kagey\"", "question": "How many millions of viewers did the episode written by Andrea Conway Kagey?", "context": "CREATE TABLE table_23399481_4 (us_viewers__in_millions_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_23399481_4 WHERE written_by = \"Michael Gans & Richard Register\"", "question": "What is the title of the episode/s written by Michael Gans & Richard Register?", "context": "CREATE TABLE table_23399481_4 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(total_score) FROM table_23465011_5 WHERE average_ranking = 7", "question": "What is the total score when 7 is the average ranking?", "context": "CREATE TABLE table_23465011_5 (total_score INTEGER, average_ranking VARCHAR)"}, {"answer": "SELECT couple FROM table_23465011_5 WHERE total_score = 295", "question": "Which couple has 295 as a total score?", "context": "CREATE TABLE table_23465011_5 (couple VARCHAR, total_score VARCHAR)"}, {"answer": "SELECT average FROM table_23465011_5 WHERE couple = \"Anh & Luda\"", "question": "What is the average for the couple anh & luda?", "context": "CREATE TABLE table_23465011_5 (average VARCHAR, couple VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_23486853_5", "question": "What was the largest attended game?", "context": "CREATE TABLE table_23486853_5 (attendance INTEGER)"}, {"answer": "SELECT score FROM table_23486853_7 WHERE date = \"February 9\"", "question": "What scores happened on February 9?", "context": "CREATE TABLE table_23486853_7 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_23486853_7 WHERE date = \"February 11\"", "question": "What scores happened on February 11?", "context": "CREATE TABLE table_23486853_7 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_23499946_1 WHERE us_viewers__in_millions_ = \"2.80\"", "question": "How many directed by have 2.80 as u.s. viewers  (in millions)?", "context": "CREATE TABLE table_23499946_1 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_23499946_1 WHERE us_viewers__in_millions_ = \"2.50\"", "question": "What is the title when 2.50 is u.s. viewers (in millions)? ", "context": "CREATE TABLE table_23499946_1 (title VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT COUNT(points) AS defending FROM table_23501776_16 WHERE new_points = 1075", "question": "Name the number of points defending for 1075", "context": "CREATE TABLE table_23501776_16 (points VARCHAR, new_points VARCHAR)"}, {"answer": "SELECT points AS won FROM table_23501776_16 WHERE points = 1230", "question": "Name the points won for 1230", "context": "CREATE TABLE table_23501776_16 (points VARCHAR)"}, {"answer": "SELECT status FROM table_23501776_16 WHERE points = 3185", "question": "Name the status for points 3185", "context": "CREATE TABLE table_23501776_16 (status VARCHAR, points VARCHAR)"}, {"answer": "SELECT numbers FROM table_2351952_1 WHERE order_number = \"713096-713119\"", "question": "What are the numbers for the order number 713096-713119?", "context": "CREATE TABLE table_2351952_1 (numbers VARCHAR, order_number VARCHAR)"}, {"answer": "SELECT country FROM table_2351952_1 WHERE numbers = \"801-812\"", "question": "The numbers 801-812 are in which country?", "context": "CREATE TABLE table_2351952_1 (country VARCHAR, numbers VARCHAR)"}, {"answer": "SELECT country FROM table_2351952_1 WHERE order_number = \"711871-711880\"", "question": "What country has the order number 711871-711880?", "context": "CREATE TABLE table_2351952_1 (country VARCHAR, order_number VARCHAR)"}, {"answer": "SELECT country FROM table_2351952_1 WHERE serial_numbers = \"713096-713119\"", "question": "The serial numbers 713096-713119 are in which country?", "context": "CREATE TABLE table_2351952_1 (country VARCHAR, serial_numbers VARCHAR)"}, {"answer": "SELECT serial_numbers FROM table_2351952_1 WHERE order_number = \"713726-713735\"", "question": "The order number 713726-713735 has what serial number?", "context": "CREATE TABLE table_2351952_1 (serial_numbers VARCHAR, order_number VARCHAR)"}, {"answer": "SELECT COUNT(railroad) FROM table_2351952_1 WHERE numbers = \"864-873\"", "question": "How many railroads have the numbers 864-873?", "context": "CREATE TABLE table_2351952_1 (railroad VARCHAR, numbers VARCHAR)"}, {"answer": "SELECT victim_s_ FROM table_23546266_1 WHERE executed_person = \"Linroy Bottoson\"", "question": "What's the name of Linroy Bottoson's victim?", "context": "CREATE TABLE table_23546266_1 (victim_s_ VARCHAR, executed_person VARCHAR)"}, {"answer": "SELECT couple FROM table_23662272_4 WHERE number_of_dances = 6", "question": "What was the name of the couple if the number of dances is 6?", "context": "CREATE TABLE table_23662272_4 (couple VARCHAR, number_of_dances VARCHAR)"}, {"answer": "SELECT couple FROM table_23662272_4 WHERE total_points_earned = 161", "question": "What is the name of the couple if the total points earned is 161?", "context": "CREATE TABLE table_23662272_4 (couple VARCHAR, total_points_earned VARCHAR)"}, {"answer": "SELECT COUNT(total_points_earned) FROM table_23662272_4 WHERE average = \"21.3\"", "question": "What is the total points earned total number if the average is 21.3?", "context": "CREATE TABLE table_23662272_4 (total_points_earned VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(number_of_dances) FROM table_23662272_4 WHERE average = \"22.3\"", "question": "What is the number of dances total number if the average is 22.3?", "context": "CREATE TABLE table_23662272_4 (number_of_dances VARCHAR, average VARCHAR)"}, {"answer": "SELECT player FROM table_23670057_6 WHERE height__m_ = \"1.85\"", "question": "Name the player that is 1.85 m", "context": "CREATE TABLE table_23670057_6 (player VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT height__f_ FROM table_23670057_6 WHERE player = \"Demond Greene\"", "question": "Name the height of demond greene", "context": "CREATE TABLE table_23670057_6 (height__f_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT height__f_ FROM table_23670057_6 WHERE year_born = 1989 AND height__m_ = \"2.11\"", "question": "Name the height for the player born 1989 and height 2.11", "context": "CREATE TABLE table_23670057_6 (height__f_ VARCHAR, year_born VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT height__m_ FROM table_23670057_6 WHERE year_born = 1981", "question": "Name the height for the player born in 1981", "context": "CREATE TABLE table_23670057_6 (height__m_ VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT height__f_ FROM table_23670057_6 WHERE player = \"Steffen Hamann\"", "question": "Name the height for steffen hamann", "context": "CREATE TABLE table_23670057_6 (height__f_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT written_by FROM table_23799653_1 WHERE directed_by = \"Karen Gaviola\"", "question": "Who wrote the episode whose director is Karen Gaviola?", "context": "CREATE TABLE table_23799653_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23799653_1 WHERE us_viewers__millions_ = \"10.50\"", "question": "When did the episode viewed by 10.50 millions of people in the US run for the first time?", "context": "CREATE TABLE table_23799653_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_23799653_1 WHERE directed_by = \"Laura Innes\" AND us_viewers__millions_ = \"9.63\"", "question": "What's the name of the episode seen by 9.63 millions of people in the US, whose director is Laura Innes?", "context": "CREATE TABLE table_23799653_1 (title VARCHAR, directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT points_per_game FROM table_2387461_1 WHERE tournament = \"2005 EuroBasket\"", "question": "How many points per game have the tournament 2005 eurobasket?", "context": "CREATE TABLE table_2387461_1 (points_per_game VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT assists_per_game FROM table_2387461_1 WHERE points_per_game = \"7.7\"", "question": "How may assists per game have 7.7 points per game?", "context": "CREATE TABLE table_2387461_1 (assists_per_game VARCHAR, points_per_game VARCHAR)"}, {"answer": "SELECT games_played FROM table_2387461_1 WHERE points_per_game = \"4.7\"", "question": "How many games played have 4.7 as points per game?", "context": "CREATE TABLE table_2387461_1 (games_played VARCHAR, points_per_game VARCHAR)"}, {"answer": "SELECT assists_per_game FROM table_2387461_1 WHERE rebounds_per_game = \"4.2\"", "question": "How many assists per game have 4.2 rebounds per game?", "context": "CREATE TABLE table_2387461_1 (assists_per_game VARCHAR, rebounds_per_game VARCHAR)"}, {"answer": "SELECT assists_per_game FROM table_2387461_1 WHERE tournament = \"2010 FIBA World Championship\"", "question": "How many assists per game in the tournament 2010 fiba world championship?", "context": "CREATE TABLE table_2387461_1 (assists_per_game VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT COUNT(games_played) FROM table_2387461_1 WHERE points_per_game = \"4.7\"", "question": "How many games played have 4.7 points per game?", "context": "CREATE TABLE table_2387461_1 (games_played VARCHAR, points_per_game VARCHAR)"}, {"answer": "SELECT avg_finish FROM table_2387790_2 WHERE position = \"3rd\"", "question": "What was the average finish the year Bodine finished 3rd?", "context": "CREATE TABLE table_2387790_2 (avg_finish VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_2387790_2 WHERE year = 1987", "question": "What position did he finish in 1987?", "context": "CREATE TABLE table_2387790_2 (position VARCHAR, year VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_2387790_2 WHERE avg_finish = \"8.3\"", "question": "What team was Bodine in when he had an average finish of 8.3?", "context": "CREATE TABLE table_2387790_2 (team_s_ VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT COUNT(avg_start) FROM table_2387790_2 WHERE avg_finish = \"11.7\"", "question": "How many years did he have an average finish of 11.7?", "context": "CREATE TABLE table_2387790_2 (avg_start VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_23916462_3", "question": "What is the least value for week?", "context": "CREATE TABLE table_23916462_3 (week INTEGER)"}, {"answer": "SELECT COUNT(attendance) FROM table_23916462_3 WHERE date = \"September 5\"", "question": "How many values for attendance on the date of September 5?", "context": "CREATE TABLE table_23916462_3 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_23916462_3 WHERE week = 4", "question": "How many dates for the week of 4?", "context": "CREATE TABLE table_23916462_3 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_23916462_3 WHERE date = \"August 26\"", "question": "How many values for attendance on the date of August 26?", "context": "CREATE TABLE table_23916462_3 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT 07 AS _08_gp_jgp_2nd FROM table_23938357_5 WHERE name = \"Mao Asada\"", "question": "what is the total 07-08 gp/jgp 2nd with the name mao asada", "context": "CREATE TABLE table_23938357_5 (name VARCHAR)"}, {"answer": "SELECT owner_s___2009_ FROM table_23958917_1 WHERE location = \"South Side Indianapolis\"", "question": "Name the owners 2009 for south side indianapolis", "context": "CREATE TABLE table_23958917_1 (owner_s___2009_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT stacks FROM table_23958917_1 WHERE in_service_dates = \"1 1969 2 1995\"", "question": "Name the stacks for 1 1969 2 1995", "context": "CREATE TABLE table_23958917_1 (stacks VARCHAR, in_service_dates VARCHAR)"}, {"answer": "SELECT COUNT(stacks) FROM table_23958917_1 WHERE unit_capacity__2009_ = \"1 & 2 235 MW 3 & 4 88.2 MW\"", "question": "Name the number of stacks for 1 & 2 235 mw 3 & 4 88.2 mw", "context": "CREATE TABLE table_23958917_1 (stacks VARCHAR, unit_capacity__2009_ VARCHAR)"}, {"answer": "SELECT COUNT(in_service_dates) FROM table_23958917_1 WHERE owner_s___2009_ = \"Hoosier Energy\" AND location = \"Petersburg\"", "question": "Name the number for service dates for hoosier energy for petersburg", "context": "CREATE TABLE table_23958917_1 (in_service_dates VARCHAR, owner_s___2009_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT frequency FROM table_24018112_1 WHERE model__list_ = \"L34xx\"", "question": "What frequency does model L34xx use?", "context": "CREATE TABLE table_24018112_1 (frequency VARCHAR, model__list_ VARCHAR)"}, {"answer": "SELECT brand_name FROM table_24018112_1 WHERE model__list_ = \"G6xxx\"", "question": "What brand is model G6xxx?", "context": "CREATE TABLE table_24018112_1 (brand_name VARCHAR, model__list_ VARCHAR)"}, {"answer": "SELECT max_memory_speed FROM table_24018112_1 WHERE frequency = \"2.93-3.2GHz\"", "question": "What is the maximum memory speed for frequencies between 2.93-3.2ghz?", "context": "CREATE TABLE table_24018112_1 (max_memory_speed VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT brand_name FROM table_24018112_1 WHERE model__list_ = \"i7-8xx\"", "question": "What brand is model I7-8xx?", "context": "CREATE TABLE table_24018112_1 (brand_name VARCHAR, model__list_ VARCHAR)"}, {"answer": "SELECT cores_threads FROM table_24018112_1 WHERE max_memory_speed = \"DDR3-1333\" AND frequency = \"2.66-2.8GHz\"", "question": "List the number of cores for ddr3-1333 with frequencies between 2.66-2.8ghz.", "context": "CREATE TABLE table_24018112_1 (cores_threads VARCHAR, max_memory_speed VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_24018112_1 WHERE brand_name = \"Pentium\"", "question": "What frequency does the Pentium processor use?", "context": "CREATE TABLE table_24018112_1 (frequency VARCHAR, brand_name VARCHAR)"}, {"answer": "SELECT COUNT(bush_number) FROM table_2401326_1 WHERE bush_percentage = \"69.7%\"", "question": "How many different counts of the votes for Bush are there in the county where he got 69.7% of the votes?", "context": "CREATE TABLE table_2401326_1 (bush_number VARCHAR, bush_percentage VARCHAR)"}, {"answer": "SELECT kerry_percentage FROM table_2401326_1 WHERE county = \"Oneida\"", "question": "What percentage of the votes in Oneida did Kerry win?", "context": "CREATE TABLE table_2401326_1 (kerry_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT bush_percentage FROM table_2401326_1 WHERE county = \"Bonneville\"", "question": "What percentage of the people in Bonneville voted for Bush?", "context": "CREATE TABLE table_2401326_1 (bush_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT others_percentage FROM table_2401326_1 WHERE others_number = 462", "question": "What percentage of the votes were for others in the county where 462 people voted that way?", "context": "CREATE TABLE table_2401326_1 (others_percentage VARCHAR, others_number VARCHAR)"}, {"answer": "SELECT bush_percentage FROM table_2401326_1 WHERE kerry_percentage = \"37.6%\"", "question": "What's percentage voted for Busg in the county where Kerry got 37.6%?", "context": "CREATE TABLE table_2401326_1 (bush_percentage VARCHAR, kerry_percentage VARCHAR)"}, {"answer": "SELECT MIN(kerry_number) FROM table_2401326_1 WHERE others_number = 8", "question": "How many people voted for Kerry in the county where 8 voted for others?", "context": "CREATE TABLE table_2401326_1 (kerry_number INTEGER, others_number VARCHAR)"}, {"answer": "SELECT denis_nizhegorodov___rus__ FROM table_24059973_3 WHERE world_record = \"North American record\"", "question": "When north american record is the world record who is the denis nizhegorodov ( rus )?", "context": "CREATE TABLE table_24059973_3 (denis_nizhegorodov___rus__ VARCHAR, world_record VARCHAR)"}, {"answer": "SELECT COUNT(incoming_manager) FROM table_24172157_3 WHERE outgoing_manager = \"Roy Hodgson\" AND team = \"Fulham\"", "question": "How many incoming managers were there after Roy Hodgson left the position for the Fulham team?", "context": "CREATE TABLE table_24172157_3 (incoming_manager VARCHAR, outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT table FROM table_24172157_3 WHERE team = \"Blackburn Rovers\"", "question": "What is the table for the team Blackburn Rovers?", "context": "CREATE TABLE table_24172157_3 (table VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_24172157_3 WHERE team = \"Liverpool\" AND incoming_manager = \"Roy Hodgson\"", "question": "What was the date of appointment for incoming manager Roy Hodgson and the team is Liverpool?", "context": "CREATE TABLE table_24172157_3 (date_of_appointment VARCHAR, team VARCHAR, incoming_manager VARCHAR)"}, {"answer": "SELECT team FROM table_24172157_3 WHERE incoming_manager = \"Kenny Dalglish\"", "question": "What team has an incoming manager named Kenny Dalglish?", "context": "CREATE TABLE table_24172157_3 (team VARCHAR, incoming_manager VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_24172157_3 WHERE table = \"Pre-season\" AND team = \"Liverpool\"", "question": "What is the date of vacancy for the Liverpool team with a table named pre-season?", "context": "CREATE TABLE table_24172157_3 (date_of_vacancy VARCHAR, table VARCHAR, team VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_24162080_3 WHERE replaced_by = \"Steve McClaren\"", "question": "When steve mcclaren is the replacer what is the manner of departure?", "context": "CREATE TABLE table_24162080_3 (manner_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_24162080_3 WHERE team = \"1. FC K\u00f6ln\"", "question": "When 1. fc k\u00f6ln is the team what is the date of appointment?", "context": "CREATE TABLE table_24162080_3 (date_of_appointment VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(tournament) FROM table_2417741_1 WHERE year = 1999", "question": "When 1999 is the year how many tournaments are there?", "context": "CREATE TABLE table_2417741_1 (tournament VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(par) FROM table_2417741_1 WHERE winner = \"Cary Middlecoff\"", "question": "When cary middlecoff is the winner how many pars are there?", "context": "CREATE TABLE table_2417741_1 (par VARCHAR, winner VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_2417741_1 WHERE winner = \"Hale Irwin\"", "question": "When hale irwin is the winner what is the margin of victory?", "context": "CREATE TABLE table_2417741_1 (margin_of_victory VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_24195232_1 WHERE location = \"Springfield, Ohio\"", "question": "How many entries are there for founded when the location was springfield, ohio?", "context": "CREATE TABLE table_24195232_1 (founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_24195232_1 WHERE team_name = \"Patriots\"", "question": "What was the location for the team name of patriots?", "context": "CREATE TABLE table_24195232_1 (location VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT location FROM table_24195232_1 WHERE founded = 1957", "question": "What is the location when founded was 1957?", "context": "CREATE TABLE table_24195232_1 (location VARCHAR, founded VARCHAR)"}, {"answer": "SELECT affiliation FROM table_24195232_1 WHERE institution = \"Ohio Christian University\"", "question": "What is the affiliation when the institution was ohio christian university?", "context": "CREATE TABLE table_24195232_1 (affiliation VARCHAR, institution VARCHAR)"}, {"answer": "SELECT institution FROM table_24195232_1 WHERE location = \"Circleville, Ohio\"", "question": "What is the institution that was located is circleville, ohio?", "context": "CREATE TABLE table_24195232_1 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_24195232_1 WHERE team_name = \"Eagles\"", "question": "What is the location for the team name of eagles?", "context": "CREATE TABLE table_24195232_1 (location VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_24222929_3 WHERE live + sd_total_viewers = \"5.09 million\"", "question": "When did the episode that had 5.09 million total viewers (both Live and SD types) first air?", "context": "CREATE TABLE table_24222929_3 (original_airdate VARCHAR, live VARCHAR, sd_total_viewers VARCHAR)"}, {"answer": "SELECT live + 7 AS _day_dvr_total_viewers FROM table_24222929_3 WHERE share = \"8\"", "question": "How many total viewers (combined Live and SD) watched the episode with a share of 8?", "context": "CREATE TABLE table_24222929_3 (live VARCHAR, share VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_24222929_3 WHERE episode_number_production_number = \"4 1-04\"", "question": "When did the fourth episode of the season (4 1-04) first air?", "context": "CREATE TABLE table_24222929_3 (original_airdate VARCHAR, episode_number_production_number VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_24222929_3 WHERE live + sd_total_viewers = \"3.69 million\"", "question": "When did the episode that had 3.69 million total viewers (Live and SD types combined) first air?", "context": "CREATE TABLE table_24222929_3 (original_airdate VARCHAR, live VARCHAR, sd_total_viewers VARCHAR)"}, {"answer": "SELECT leading_actor FROM table_24225238_1 WHERE supporting_actor = \"Cecil Kellaway\"", "question": "Who was the leading actor in the film with a supporting actor named Cecil Kellaway?", "context": "CREATE TABLE table_24225238_1 (leading_actor VARCHAR, supporting_actor VARCHAR)"}, {"answer": "SELECT supporting_actress FROM table_24225238_1 WHERE film = \"For Whom the Bell Tolls\"", "question": "Who was the supporting actress in \"For Whom the Bell Tolls\"?", "context": "CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, film VARCHAR)"}, {"answer": "SELECT supporting_actress FROM table_24225238_1 WHERE leading_actress = \"Diane Keaton\"", "question": "Who was the supporting actress in a film with Diane Keaton as the leading actress?", "context": "CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, leading_actress VARCHAR)"}, {"answer": "SELECT leading_actress FROM table_24225238_1 WHERE leading_actor = \"Warren Beatty\" AND oscars = \"40th\"", "question": "Who was the leading actress in a film with Warren Beatty as the leading actor and also at the 40th Oscars?", "context": "CREATE TABLE table_24225238_1 (leading_actress VARCHAR, leading_actor VARCHAR, oscars VARCHAR)"}, {"answer": "SELECT film FROM table_24225238_1 WHERE supporting_actor = \"Charles Bickford\"", "question": "Which film had Charles Bickford as supporting actor?", "context": "CREATE TABLE table_24225238_1 (film VARCHAR, supporting_actor VARCHAR)"}, {"answer": "SELECT supporting_actress FROM table_24225238_1 WHERE year = 1943", "question": "Who was the supporting actress in 1943?", "context": "CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(sydney) FROM table_24291077_4 WHERE week = 3", "question": "How many episodes aired in Sydney in Week 3?", "context": "CREATE TABLE table_24291077_4 (sydney VARCHAR, week VARCHAR)"}, {"answer": "SELECT sydney FROM table_24291077_4 WHERE melbourne = 334000", "question": "How many viewers were there in Sydney for the episode when there were 334000 in Melbourne?", "context": "CREATE TABLE table_24291077_4 (sydney VARCHAR, melbourne VARCHAR)"}, {"answer": "SELECT adelaide FROM table_24291077_4 WHERE week = 5", "question": "How many Adelaide viewers were there in Week 5?", "context": "CREATE TABLE table_24291077_4 (adelaide VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(brisbane) FROM table_24291077_4", "question": "What is the highest number of Brisbane viewers?", "context": "CREATE TABLE table_24291077_4 (brisbane INTEGER)"}, {"answer": "SELECT MAX(brisbane) FROM table_24291077_8 WHERE melbourne = 276000", "question": "What was the rating in Brisbane the week it was 276000 in Melbourne? ", "context": "CREATE TABLE table_24291077_8 (brisbane INTEGER, melbourne VARCHAR)"}, {"answer": "SELECT total FROM table_24291077_8 WHERE week = 3", "question": "What was the total rating on week 3? ", "context": "CREATE TABLE table_24291077_8 (total VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(brisbane) FROM table_24291077_8 WHERE adelaide = 94000", "question": "What was the rating for Brisbane the week that Adelaide had 94000?", "context": "CREATE TABLE table_24291077_8 (brisbane INTEGER, adelaide VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_24319661_3 WHERE directed_by = \"Kevin Bray\"", "question": "How many millions of people in the US watched when Kevin Bray was director?", "context": "CREATE TABLE table_24319661_3 (us_viewers__million_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_24319661_3 WHERE us_viewers__million_ = \"3.81\"", "question": "How many episodes in the season had 3.81 million US viewers?", "context": "CREATE TABLE table_24319661_3 (no_in_season VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MAX(folded) FROM table_24334261_1 WHERE stadium = \"Fraser Field\"", "question": "What is the maximum folded value of the team whose stadium is Fraser Field?", "context": "CREATE TABLE table_24334261_1 (folded INTEGER, stadium VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_24334261_1 WHERE team = \"Worcester Tornadoes\"", "question": "What is the maximum founded year of the Worcester Tornadoes?", "context": "CREATE TABLE table_24334261_1 (founded INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(viewers) FROM table_24399615_3 WHERE airdate = \"22 October 2009\"", "question": "How many viewers were there for airdate is 22 october 2009?", "context": "CREATE TABLE table_24399615_3 (viewers INTEGER, airdate VARCHAR)"}, {"answer": "SELECT cable_rank FROM table_24399615_3 WHERE episode_no = 4", "question": "What is the  cable rank for episode no. 4?", "context": "CREATE TABLE table_24399615_3 (cable_rank VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT bbc_three_weekly_ranking FROM table_24399615_3 WHERE episode_no = 5", "question": "Where where the bbc three weekly ranking for episode no. 5?", "context": "CREATE TABLE table_24399615_3 (bbc_three_weekly_ranking VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT cable_rank FROM table_24399615_3 WHERE bbc_three_weekly_ranking = \"N/A\"", "question": "What is the cable rank for bbc three weekly ranking of n/a?", "context": "CREATE TABLE table_24399615_3 (cable_rank VARCHAR, bbc_three_weekly_ranking VARCHAR)"}, {"answer": "SELECT cable_rank FROM table_24399615_3 WHERE airdate = \"10 December 2009\"", "question": "What is the cable rank for the airdate of 10 december 2009?", "context": "CREATE TABLE table_24399615_3 (cable_rank VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT COUNT(viewers) FROM table_24399615_3 WHERE airdate = \"26 November 2009\"", "question": "How many entries are shown for viewers when the airdate was 26 november 2009?", "context": "CREATE TABLE table_24399615_3 (viewers VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT difficulty FROM table_24463470_1 WHERE circuit = \"Athens\"", "question": "What is the difficulty of the athens circuit?", "context": "CREATE TABLE table_24463470_1 (difficulty VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(unlock_order) FROM table_24463470_1 WHERE unlocks = \"Paris\"", "question": "How many instances is paris the unlock?", "context": "CREATE TABLE table_24463470_1 (unlock_order VARCHAR, unlocks VARCHAR)"}, {"answer": "SELECT COUNT(setting) FROM table_24463470_1 WHERE unlocked_by = \"N/A\"", "question": "How many instances is the unlocked n/a?", "context": "CREATE TABLE table_24463470_1 (setting VARCHAR, unlocked_by VARCHAR)"}, {"answer": "SELECT MIN(unlock_order) FROM table_24463470_1 WHERE circuit = \"Athens\"", "question": "What is the lowest unlock order for the athens circuit?", "context": "CREATE TABLE table_24463470_1 (unlock_order INTEGER, circuit VARCHAR)"}, {"answer": "SELECT setting FROM table_24463470_1 WHERE difficulty = \"Hard\"", "question": "What is the setting for the hard difficulty?", "context": "CREATE TABLE table_24463470_1 (setting VARCHAR, difficulty VARCHAR)"}, {"answer": "SELECT conditions FROM table_24463470_1 WHERE circuit = \"Athens\"", "question": "What are the conditions for the athens circuit?", "context": "CREATE TABLE table_24463470_1 (conditions VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT team FROM table_24491017_1 WHERE position = \"11th\"", "question": "What team was he on when he finished in 11th position?", "context": "CREATE TABLE table_24491017_1 (team VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(f_laps) FROM table_24491017_1 WHERE position = \"8th\"", "question": "How many f/laps when he finished 8th?", "context": "CREATE TABLE table_24491017_1 (f_laps INTEGER, position VARCHAR)"}, {"answer": "SELECT team FROM table_24491017_1 WHERE f_laps = 10", "question": "What team was he on when he had 10 f/laps?", "context": "CREATE TABLE table_24491017_1 (team VARCHAR, f_laps VARCHAR)"}, {"answer": "SELECT COUNT(podiums) FROM table_24491017_1 WHERE series = \"British F3 National Class\"", "question": "How many podiums when he was in the british f3 national class series?", "context": "CREATE TABLE table_24491017_1 (podiums VARCHAR, series VARCHAR)"}, {"answer": "SELECT last_title FROM table_2454589_1 WHERE home_city = \"Cuenca\"", "question": "Name the last title for cuenca", "context": "CREATE TABLE table_2454589_1 (last_title VARCHAR, home_city VARCHAR)"}, {"answer": "SELECT first_season_in_the_serie_a FROM table_2454589_1 WHERE last_title = \"2006\"", "question": "Name the first season in the series for 2006", "context": "CREATE TABLE table_2454589_1 (first_season_in_the_serie_a VARCHAR, last_title VARCHAR)"}, {"answer": "SELECT last_title FROM table_2454589_1 WHERE first_season_in_current_spell = 2012", "question": "Name the last title for 2012", "context": "CREATE TABLE table_2454589_1 (last_title VARCHAR, first_season_in_current_spell VARCHAR)"}, {"answer": "SELECT club FROM table_2454589_1 WHERE home_city = \"Quevedo\"", "question": "Name the club for quevedo", "context": "CREATE TABLE table_2454589_1 (club VARCHAR, home_city VARCHAR)"}, {"answer": "SELECT MAX(first_season_in_the_serie_a) FROM table_2454589_1 WHERE stadium = \"7 de Octubre\"", "question": "Name the most for first season in the serie a for 7 de octubre", "context": "CREATE TABLE table_2454589_1 (first_season_in_the_serie_a INTEGER, stadium VARCHAR)"}, {"answer": "SELECT COUNT(appearances\u00b9) FROM table_24565004_15 WHERE goals\u00b9 = 7", "question": "How many games had less than 7 goals scored?", "context": "CREATE TABLE table_24565004_15 (appearances\u00b9 VARCHAR, goals\u00b9 VARCHAR)"}, {"answer": "SELECT name FROM table_24565004_15 WHERE goals\u00b9 = 4", "question": "List the player that scored 4 times.", "context": "CREATE TABLE table_24565004_15 (name VARCHAR, goals\u00b9 VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_24565004_15 WHERE nationality\u00b2 = \"Brazil\"", "question": "How many players are from the country of Brazil?", "context": "CREATE TABLE table_24565004_15 (position VARCHAR, nationality\u00b2 VARCHAR)"}, {"answer": "SELECT period FROM table_24565004_15 WHERE position = \"Attaquant\"", "question": "List the number of active years for attaquant.", "context": "CREATE TABLE table_24565004_15 (period VARCHAR, position VARCHAR)"}, {"answer": "SELECT mls_cup_playoffs FROM table_245695_2 WHERE concacaf_champions_cup___concacaf_champions_league = \"Quarter-Finals (09-10)\"", "question": "What was the mls cup playoffs when concacaf champions cup / concacaf champions league was quarter-finals (09-10)?", "context": "CREATE TABLE table_245695_2 (mls_cup_playoffs VARCHAR, concacaf_champions_cup___concacaf_champions_league VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_24639086_3 WHERE season__number = \"2.08\"", "question": "What is the series minimum if the season number is 2.08?", "context": "CREATE TABLE table_24639086_3 (series__number INTEGER, season__number VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_24639086_3 WHERE series__number = 14", "question": "What is the amount of viewers if the series number is 14?", "context": "CREATE TABLE table_24639086_3 (viewers__in_millions_ VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_24639086_3 WHERE viewers__in_millions_ = \"2.48\"", "question": "If the amount of viewers is 2.48 million, what is the original air date?", "context": "CREATE TABLE table_24639086_3 (original_air_date VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_24639086_3 WHERE season__number = \"2.08\"", "question": "If the season number is 2.08, who was the episode written by?", "context": "CREATE TABLE table_24639086_3 (written_by VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT MAX(money_list_rank) FROM table_24747844_2 WHERE player = \"Matt Hansen\"", "question": "What is the maximum money list rank for Matt Hansen?", "context": "CREATE TABLE table_24747844_2 (money_list_rank INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(money_list_rank) FROM table_24747844_2 WHERE best_finish = \"T9\"", "question": "What is the minimum money list rank for the players having a best finish of T9?", "context": "CREATE TABLE table_24747844_2 (money_list_rank INTEGER, best_finish VARCHAR)"}, {"answer": "SELECT MIN(starts) FROM table_24747844_2 WHERE best_finish = \"T18\"", "question": "What is the minimum number of starts for the players having a best finish of T18?", "context": "CREATE TABLE table_24747844_2 (starts INTEGER, best_finish VARCHAR)"}, {"answer": "SELECT MIN(cuts_made) FROM table_24747844_2 WHERE player = \"Hunter Mahan\"", "question": "What is the minimum number of cuts made for Hunter Mahan?", "context": "CREATE TABLE table_24747844_2 (cuts_made INTEGER, player VARCHAR)"}, {"answer": "SELECT notability_profession FROM table_24775967_1 WHERE season = 15 AND finish = \"7th\"", "question": "What was the profession of the celebrity who was featured on season 15 and finished 7th place?", "context": "CREATE TABLE table_24775967_1 (notability_profession VARCHAR, season VARCHAR, finish VARCHAR)"}, {"answer": "SELECT score FROM table_24901152_2 WHERE outcome = \"Winner\"", "question": "When winner is the outcome what is the score?", "context": "CREATE TABLE table_24901152_2 (score VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT surface FROM table_24901152_2 WHERE championship = \"US Open (2)\"", "question": "When us open (2) is the championship what is the surface?", "context": "CREATE TABLE table_24901152_2 (surface VARCHAR, championship VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_24901152_2 WHERE championship = \"Australian Open\"", "question": "When Australian open is the championship what is the lowest year?", "context": "CREATE TABLE table_24901152_2 (year INTEGER, championship VARCHAR)"}, {"answer": "SELECT outcome FROM table_24901152_2 WHERE partner = \"Alicia Molik\"", "question": "When alicia molik is the partner what is the outcome?", "context": "CREATE TABLE table_24901152_2 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT seasons FROM table_24937583_1 WHERE wins = 7", "question": "When did they win 7 races?", "context": "CREATE TABLE table_24937583_1 (seasons VARCHAR, wins VARCHAR)"}, {"answer": "SELECT races__starts_ FROM table_24937583_1 WHERE points__dropped_points_ = \"18\"", "question": "What were the starts when the points dropped 18?", "context": "CREATE TABLE table_24937583_1 (races__starts_ VARCHAR, points__dropped_points_ VARCHAR)"}, {"answer": "SELECT MIN(poles) FROM table_24937583_1", "question": "What is the minimum amount of poles?", "context": "CREATE TABLE table_24937583_1 (poles INTEGER)"}, {"answer": "SELECT MIN(wins) FROM table_24937583_1", "question": "What was the least amount of wins?", "context": "CREATE TABLE table_24937583_1 (wins INTEGER)"}, {"answer": "SELECT config_core_1 FROM table_25005714_3 WHERE code_name = \"Redwood\" AND core_clock___mhz__ = \"500\"", "question": "What is the value for congi core 1 if the code name is Redwood and core clock(mhz) is 500?", "context": "CREATE TABLE table_25005714_3 (config_core_1 VARCHAR, code_name VARCHAR, core_clock___mhz__ VARCHAR)"}, {"answer": "SELECT bus_type FROM table_25005714_3 WHERE texture___gt__s_ = \"Fillrate\"", "question": "What is every bus type for the texture of fillrate?", "context": "CREATE TABLE table_25005714_3 (bus_type VARCHAR, texture___gt__s_ VARCHAR)"}, {"answer": "SELECT code_name FROM table_25005714_3 WHERE model = \"Radeon HD 6650M\"", "question": "What is every code name for the model Radeon HD 6650m?", "context": "CREATE TABLE table_25005714_3 (code_name VARCHAR, model VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_2500440_1 WHERE change___percentage_ = \"-19.3\"", "question": "What place is there a change of -19.3?", "context": "CREATE TABLE table_2500440_1 (name VARCHAR, change___percentage_ VARCHAR)"}, {"answer": "SELECT population_density__per_km_2__ FROM table_2500440_1 WHERE municipal_district = \"Smoky Lake County\"", "question": "What is the density per km in Smoky Lake County?", "context": "CREATE TABLE table_2500440_1 (population_density__per_km_2__ VARCHAR, municipal_district VARCHAR)"}, {"answer": "SELECT population_density__per_km_2__ FROM table_2500440_1 WHERE name = \"Fishing Lake\"", "question": "What is the population per km2 in Fishing Lake?", "context": "CREATE TABLE table_2500440_1 (population_density__per_km_2__ VARCHAR, name VARCHAR)"}, {"answer": "SELECT population_density__per_km_2__ FROM table_2500440_1 WHERE name = \"Buffalo Lake\"", "question": "What is the population density in Buffalo Lake?", "context": "CREATE TABLE table_2500440_1 (population_density__per_km_2__ VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_25037577_1 WHERE high_school_principal = \"Lynn Muscarella\" AND superintendent = \"Charlie Wiltse\"", "question": "How many years was lynn muscarella the high school principal and charlie wiltse the superintendent?", "context": "CREATE TABLE table_25037577_1 (year VARCHAR, high_school_principal VARCHAR, superintendent VARCHAR)"}, {"answer": "SELECT superintendent FROM table_25037577_1 WHERE middle_school_principal = \"Alan Degroote\" AND gorham_principal = \"Paul Lahue\" AND year = \"2006-2007\"", "question": "Who were the superintendent(s) when the middle school principal was alan degroote, the gorham principal was paul lahue, and the year was 2006-2007?", "context": "CREATE TABLE table_25037577_1 (superintendent VARCHAR, year VARCHAR, middle_school_principal VARCHAR, gorham_principal VARCHAR)"}, {"answer": "SELECT gorham_principal FROM table_25037577_1 WHERE year = \"2010-2011\"", "question": "Who was the gorham principal in 2010-2011?", "context": "CREATE TABLE table_25037577_1 (gorham_principal VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(middlesex_principal) FROM table_25037577_1 WHERE year = \"2000-2001\"", "question": "How many middlesex principals were there in 2000-2001?", "context": "CREATE TABLE table_25037577_1 (middlesex_principal VARCHAR, year VARCHAR)"}, {"answer": "SELECT high_school_principal FROM table_25037577_1 WHERE year = \"2000-2001\"", "question": "How many high school principals were there in 2000-2001?", "context": "CREATE TABLE table_25037577_1 (high_school_principal VARCHAR, year VARCHAR)"}, {"answer": "SELECT middle_school_principal FROM table_25037577_1 WHERE year = \"2010-2011\"", "question": "Who were the middle school principal(s) in 2010-2011?", "context": "CREATE TABLE table_25037577_1 (middle_school_principal VARCHAR, year VARCHAR)"}, {"answer": "SELECT youth_classification FROM table_25055040_22 WHERE sprint_classification = \"Mark Cavendish\" AND most_courageous = \"Maarten Tjallingii\"", "question": "When Mark Cavendish wins sprint classification and Maarten Tjallingii wins most courageous, who wins youth classification?", "context": "CREATE TABLE table_25055040_22 (youth_classification VARCHAR, sprint_classification VARCHAR, most_courageous VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_25055040_22 WHERE most_courageous = \"Maarten Tjallingii\"", "question": "Who won the mountains classification when Maarten Tjallingii won most corageous?", "context": "CREATE TABLE table_25055040_22 (mountains_classification VARCHAR, most_courageous VARCHAR)"}, {"answer": "SELECT team_classification FROM table_25055040_22 WHERE general_classification = \"Brett Lancaster\"", "question": "When Brett Lancaster won the general classification, who won the team calssification?", "context": "CREATE TABLE table_25055040_22 (team_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT sprint_classification FROM table_25055040_22 WHERE youth_classification = \"Peter Sagan\" AND most_courageous = \"Thomas Rabou\"", "question": "When Peter Sagan won the youth classification and Thomas Rabou won the most corageous, who won the sprint classification?", "context": "CREATE TABLE table_25055040_22 (sprint_classification VARCHAR, youth_classification VARCHAR, most_courageous VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_25055040_22 WHERE most_courageous = \"Yaroslav Popovych\"", "question": "When Yaroslav Popovych won most corageous, who won the mountains classification?", "context": "CREATE TABLE table_25055040_22 (mountains_classification VARCHAR, most_courageous VARCHAR)"}, {"answer": "SELECT sprint_classification FROM table_25055040_22 WHERE mountains_classification = \"Ryan Anderson\" AND general_classification = \"Michael Rogers\"", "question": "When Ryan Anderson won the mountains classification, and Michael Rogers won the general classification, who won the sprint classification?", "context": "CREATE TABLE table_25055040_22 (sprint_classification VARCHAR, mountains_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT MIN(top_10) FROM table_2506300_1 WHERE winnings = \"$1,741,176\"", "question": "What the rank in the top 10 when the  winnings were $1,741,176?", "context": "CREATE TABLE table_2506300_1 (top_10 INTEGER, winnings VARCHAR)"}, {"answer": "SELECT MAX(annual_co2_emissions__in_thousands_of_metric_tons_) FROM table_2508175_1 WHERE gdp_per_emissions__in_us_dollars_per_ton_ = 3903", "question": "when the gdp per emissions (in us dollars per ton) is 3903, what is the maximum annual co2 emissions (in thousands of metric tons)?", "context": "CREATE TABLE table_2508175_1 (annual_co2_emissions__in_thousands_of_metric_tons_ INTEGER, gdp_per_emissions__in_us_dollars_per_ton_ VARCHAR)"}, {"answer": "SELECT country FROM table_2508175_1 WHERE annual_co2_emissions__in_thousands_of_metric_tons_ = 1811", "question": "when the annual co2 emissions (in thousands of metric tons) is 1811, what is the country?", "context": "CREATE TABLE table_2508175_1 (country VARCHAR, annual_co2_emissions__in_thousands_of_metric_tons_ VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2508633_5 WHERE nfl_team = \"Buffalo Bills\"", "question": "What pick number did the buffalo bills get?", "context": "CREATE TABLE table_2508633_5 (pick__number VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2508633_5 WHERE player = \"Bruce Baldwin\"", "question": "What was bruce baldwin's pick #?", "context": "CREATE TABLE table_2508633_5 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_2508633_5 WHERE nfl_team = \"Los Angeles Raiders\"", "question": "What is the highest pick number the los angeles raiders got?", "context": "CREATE TABLE table_2508633_5 (pick__number INTEGER, nfl_team VARCHAR)"}, {"answer": "SELECT player FROM table_2508633_5 WHERE nfl_team = \"Green Bay Packers\"", "question": "Which player did the green bay packers pick?", "context": "CREATE TABLE table_2508633_5 (player VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_2508633_5 WHERE nfl_team = \"Philadelphia Eagles\"", "question": "How many players did the philadelphia eagles pick?", "context": "CREATE TABLE table_2508633_5 (position VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT reg_season FROM table_2511876_1 WHERE year = 2001", "question": "Mame the reg season for 2001", "context": "CREATE TABLE table_2511876_1 (reg_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_2511876_1 WHERE year = 2003", "question": "Name the league for 2003", "context": "CREATE TABLE table_2511876_1 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(playoffs) FROM table_2511876_1 WHERE open_cup = \"3rd Round\"", "question": "Name the number of playoffs for 3rd round", "context": "CREATE TABLE table_2511876_1 (playoffs VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_2511876_1 WHERE league = \"USISL Pro league\"", "question": "Name the total number of years for usisl pro league", "context": "CREATE TABLE table_2511876_1 (year VARCHAR, league VARCHAR)"}, {"answer": "SELECT playoffs FROM table_2511876_1 WHERE league = \"USISL Select league\"", "question": "Name the playoffs for  usisl select league", "context": "CREATE TABLE table_2511876_1 (playoffs VARCHAR, league VARCHAR)"}, {"answer": "SELECT position FROM table_25146455_1 WHERE points = 31", "question": "What position did the driver earn 31 points?", "context": "CREATE TABLE table_25146455_1 (position VARCHAR, points VARCHAR)"}, {"answer": "SELECT series FROM table_25146455_1 WHERE driver = \"Bobby Labonte\"", "question": "In what series did Bobby Labonte drive?", "context": "CREATE TABLE table_25146455_1 (series VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_25146455_1 WHERE winnings = \"$60,000\"", "question": "In what position was the driver who won $60,000?", "context": "CREATE TABLE table_25146455_1 (position INTEGER, winnings VARCHAR)"}, {"answer": "SELECT winnings FROM table_25146455_1 WHERE driver = \"Jeff Burton\"", "question": "How much did Jeff Burton win?", "context": "CREATE TABLE table_25146455_1 (winnings VARCHAR, driver VARCHAR)"}, {"answer": "SELECT winnings FROM table_25146455_1 WHERE driver = \"Kenny Brack\"", "question": "How much did Kenny Brack win?", "context": "CREATE TABLE table_25146455_1 (winnings VARCHAR, driver VARCHAR)"}, {"answer": "SELECT special_edition FROM table_25173505_13 WHERE english_version = \"James Baskett\"", "question": "what is the special edition for the english version of james baskett?", "context": "CREATE TABLE table_25173505_13 (special_edition VARCHAR, english_version VARCHAR)"}, {"answer": "SELECT special_edition FROM table_25173505_13 WHERE english_version = \"Nick Stewart\"", "question": "what is the special edition where the english version is nick stewart?", "context": "CREATE TABLE table_25173505_13 (special_edition VARCHAR, english_version VARCHAR)"}, {"answer": "SELECT english_version FROM table_25173505_13 WHERE buena_vista_edition = \"Daisuke Gouri\"", "question": "what is the english version that is buena vista edition is daisuke gouri?", "context": "CREATE TABLE table_25173505_13 (english_version VARCHAR, buena_vista_edition VARCHAR)"}, {"answer": "SELECT character FROM table_25173505_13 WHERE special_edition = \"Koichi Sakaguchi\"", "question": "who is the character where the special edition is koichi sakaguchi?", "context": "CREATE TABLE table_25173505_13 (character VARCHAR, special_edition VARCHAR)"}, {"answer": "SELECT buena_vista_edition FROM table_25173505_13 WHERE special_edition = \"Koichi Sakaguchi\"", "question": "who is the buena vista edidtion where special edition is koichi sakaguchi?", "context": "CREATE TABLE table_25173505_13 (buena_vista_edition VARCHAR, special_edition VARCHAR)"}, {"answer": "SELECT MAX(contestants) FROM table_25214321_1 WHERE runner_up = \"Monique Evans\"", "question": "How many contestants were there when the runner-up was Monique Evans?", "context": "CREATE TABLE table_25214321_1 (contestants INTEGER, runner_up VARCHAR)"}, {"answer": "SELECT MAX(contestants) FROM table_25214321_1 WHERE runner_up = \"S\u00e9rgio Abreu\"", "question": "How many contestants were there when the runner-up was S\u00e9rgio Abreu? ", "context": "CREATE TABLE table_25214321_1 (contestants INTEGER, runner_up VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_25214321_1 WHERE winner = \"Dado Dolabella\"", "question": "In what season was the winner Dado Dolabella?", "context": "CREATE TABLE table_25214321_1 (season INTEGER, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_25214321_1 WHERE third_place = \"Mateus Rocha\"", "question": "Who was the winner when Mateus Rocha finished in 3rd place? ", "context": "CREATE TABLE table_25214321_1 (winner VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT season FROM table_25214321_1 WHERE third_place = \"Raquel Pacheco\"", "question": "In what season did Raquel Pacheco finish in third place?", "context": "CREATE TABLE table_25214321_1 (season VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT third_place FROM table_25214321_1 WHERE winner = \"Karina Bacchi\"", "question": "Who finished in third place when the winner was Karina Bacchi? ", "context": "CREATE TABLE table_25214321_1 (third_place VARCHAR, winner VARCHAR)"}, {"answer": "SELECT branding FROM table_2523809_1 WHERE channel = \"TV-62\"", "question": "List the branding name for channel tv-62.", "context": "CREATE TABLE table_2523809_1 (branding VARCHAR, channel VARCHAR)"}, {"answer": "SELECT coverage FROM table_2523809_1 WHERE branding = \"Estrella TV 62\"", "question": "Which area did estrella tv 62 provide coverage for?", "context": "CREATE TABLE table_2523809_1 (coverage VARCHAR, branding VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_2523809_1 WHERE coverage = \"Phoenix\"", "question": "List the power output for Phoenix. ", "context": "CREATE TABLE table_2523809_1 (power__kw_ VARCHAR, coverage VARCHAR)"}, {"answer": "SELECT branding FROM table_2523809_1 WHERE callsign = \"KRCA-TV\"", "question": "List the branding for krca-tv.", "context": "CREATE TABLE table_2523809_1 (branding VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_2523809_1 WHERE channel = \"TV-29\"", "question": "What's the power output for channel tv-29?", "context": "CREATE TABLE table_2523809_1 (power__kw_ VARCHAR, channel VARCHAR)"}, {"answer": "SELECT coverage FROM table_2523809_1 WHERE callsign = \"KPNZ-TV\"", "question": "Which city did kpnz-tv provide coverage for?", "context": "CREATE TABLE table_2523809_1 (coverage VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT MAX(renewable_electricity__gw) AS \u2022h_ FROM table_25244412_1 WHERE state = \"Delaware\"", "question": "What is the maximum renewable energy (gw\u00d7h) for the state of Delaware?", "context": "CREATE TABLE table_25244412_1 (renewable_electricity__gw INTEGER, state VARCHAR)"}, {"answer": "SELECT state FROM table_25244412_1 WHERE renewable_electricity_w_o_hydro__gw\u2022h_ = 5179", "question": "Which state has 5179 (gw\u00d7h) of renewable energy without hydrogen power?wha", "context": "CREATE TABLE table_25244412_1 (state VARCHAR, renewable_electricity_w_o_hydro__gw\u2022h_ VARCHAR)"}, {"answer": "SELECT MIN(renewable_electricity_w_o_hydro__gw) AS \u2022h_ FROM table_25244412_1 WHERE renewable_electricity__gw\u2022h_ = 5760", "question": "When renewable electricity is 5760 (gw\u00d7h) what is the minimum amount of renewable elecrrixity without hydrogen power?", "context": "CREATE TABLE table_25244412_1 (renewable_electricity_w_o_hydro__gw INTEGER, renewable_electricity__gw\u2022h_ VARCHAR)"}, {"answer": "SELECT renewable_electricity_w_o_hydro__gw\u2022h_ FROM table_25244412_1 WHERE _percentage_renewable = \"83.4\"", "question": "What is the amount of renewable electricity without hydrogen power when the percentage of renewable energy is 83.4?", "context": "CREATE TABLE table_25244412_1 (renewable_electricity_w_o_hydro__gw\u2022h_ VARCHAR, _percentage_renewable VARCHAR)"}, {"answer": "SELECT state FROM table_25244412_1 WHERE renewable_electricity__gw\u2022h_ = 9667", "question": "Which states have renewable electricity equal to 9667 (gw\u00d7h)?", "context": "CREATE TABLE table_25244412_1 (state VARCHAR, renewable_electricity__gw\u2022h_ VARCHAR)"}, {"answer": "SELECT august_21_22 FROM table_25252080_3 WHERE november_3 = \"november_3, 1994\"", "question": "What is shown for  august 21-22 when november 3 is november 3, 1994?", "context": "CREATE TABLE table_25252080_3 (august_21_22 VARCHAR, november_3 VARCHAR)"}, {"answer": "SELECT march_27_29 FROM table_25252080_3 WHERE november_3 = \"153\"", "question": "What is the number for march 27-29 whern november 3 is 153?", "context": "CREATE TABLE table_25252080_3 (march_27_29 VARCHAR, november_3 VARCHAR)"}, {"answer": "SELECT january_15_16 FROM table_25252080_3 WHERE november_3 = \"133\"", "question": "What number is shown for january 15-16 when november 3 is 133?", "context": "CREATE TABLE table_25252080_3 (january_15_16 VARCHAR, november_3 VARCHAR)"}, {"answer": "SELECT november_3 FROM table_25252080_3 WHERE june_10_11 = \"June 10, 1964\"", "question": "What is shown for november 3 when june 10-11 is june 10, 1964?", "context": "CREATE TABLE table_25252080_3 (november_3 VARCHAR, june_10_11 VARCHAR)"}, {"answer": "SELECT november_3 FROM table_25252080_3 WHERE march_27_29 = \"149\"", "question": " november 3 where march 27-29 is 149?", "context": "CREATE TABLE table_25252080_3 (november_3 VARCHAR, march_27_29 VARCHAR)"}, {"answer": "SELECT november_3 FROM table_25252080_3 WHERE january_15_16 = \"151\"", "question": "What number is shown for november 3 where january 15-16 is 151?", "context": "CREATE TABLE table_25252080_3 (november_3 VARCHAR, january_15_16 VARCHAR)"}, {"answer": "SELECT release_year FROM table_25276250_3 WHERE outputs = \"2x Pro Bias, RCA Loop Out\" AND notes = \"Vacuum tube\"", "question": "What year were outputs is 2x pro bias, rca loop out and notes is vacuum tube released?", "context": "CREATE TABLE table_25276250_3 (release_year VARCHAR, outputs VARCHAR, notes VARCHAR)"}, {"answer": "SELECT COUNT(outputs) FROM table_25276250_3 WHERE notes = \"Solid state, battery operated for portable use\"", "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 singer FROM table_2528382_5 WHERE movie_album = \"Amar Deep\"", "question": "Who sang for the movie Amar Deep?", "context": "CREATE TABLE table_2528382_5 (singer VARCHAR, movie_album VARCHAR)"}, {"answer": "SELECT movie_album FROM table_2528382_5 WHERE co_stars = \"VijayaLaxmi\" AND lyricist = \"Shakeel Badayuni\"", "question": "What movie did Vijayalaxmi Co-star in and Shakeel Badayuni write the lyrics?", "context": "CREATE TABLE table_2528382_5 (movie_album VARCHAR, co_stars VARCHAR, lyricist VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_2528382_5 WHERE music_director = \"Naushad\"", "question": "What year did Naushad Direct the Music?", "context": "CREATE TABLE table_2528382_5 (year INTEGER, music_director VARCHAR)"}, {"answer": "SELECT COUNT(Co) - singers FROM table_2528382_5 WHERE co_stars = \"Parveen Babi\"", "question": "How many co-singers were there when Parveen Babi co-starred?", "context": "CREATE TABLE table_2528382_5 (singers VARCHAR, Co VARCHAR, co_stars VARCHAR)"}, {"answer": "SELECT movie_album FROM table_2528382_5 WHERE co_stars = \"Bela Bose\"", "question": "What movie did Bela Bose co-star in?", "context": "CREATE TABLE table_2528382_5 (movie_album VARCHAR, co_stars VARCHAR)"}, {"answer": "SELECT lyricist FROM table_2528382_5 WHERE co_stars = \"Jeevankala\"", "question": "Who wrote the lyrics when Jeevankala co-starred?", "context": "CREATE TABLE table_2528382_5 (lyricist VARCHAR, co_stars VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_25356350_2 WHERE written_by = \"Lew Schneider\"", "question": "How many episodes are written by Lew Schneider?", "context": "CREATE TABLE table_25356350_2 (series__number VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_25356350_2 WHERE written_by = \"Jack Orman\"", "question": "What is the title of the episode written by Jack Orman?", "context": "CREATE TABLE table_25356350_2 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_25356350_2 WHERE series__number = 1", "question": "How many viewers (in millions) did episode 1 have?", "context": "CREATE TABLE table_25356350_2 (viewers__in_millions_ VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT COUNT(games_played) FROM table_25401874_1 WHERE name = \"Lauren McGee\"", "question": "How many games played catagories are there for Lauren McGee? ", "context": "CREATE TABLE table_25401874_1 (games_played VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_25401874_1 WHERE assists = 10", "question": "How many numbers belong to the player with 10 assists? ", "context": "CREATE TABLE table_25401874_1 (number VARCHAR, assists VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_25401874_1 WHERE points = 50", "question": "How many names are listed for the player with 50 points?", "context": "CREATE TABLE table_25401874_1 (name VARCHAR, points VARCHAR)"}, {"answer": "SELECT type FROM table_254776_1 WHERE location = \"Swarthmore, Pennsylvania\"", "question": "What type of school is in swarthmore, pennsylvania?", "context": "CREATE TABLE table_254776_1 (type VARCHAR, location VARCHAR)"}, {"answer": "SELECT founded FROM table_254776_1 WHERE institution = \"Dickinson College\"", "question": "When was Dickinson College founded?", "context": "CREATE TABLE table_254776_1 (founded VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(fl) FROM table_25548630_1 WHERE series = \"Formula Three Euroseries\"", "question": "How many F.L. are listed for Formula Three Euroseries?", "context": "CREATE TABLE table_25548630_1 (fl VARCHAR, series VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_25548630_1", "question": "What are the most poles listed?", "context": "CREATE TABLE table_25548630_1 (poles INTEGER)"}, {"answer": "SELECT MIN(podiums) FROM table_25548630_1", "question": "What is the least amount of podiums?", "context": "CREATE TABLE table_25548630_1 (podiums INTEGER)"}, {"answer": "SELECT COUNT(points) FROM table_25548630_1 WHERE team = \"Marussia Manor Racing\"", "question": "How many points does Marussia Manor Racing have?", "context": "CREATE TABLE table_25548630_1 (points VARCHAR, team VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_255812_1 WHERE income_class__2007_ = \"2nd\"", "question": "What are all the vicinity (km\u00b2) where profits magnificence (2007) is 2nd", "context": "CREATE TABLE table_255812_1 (area__km\u00b2_ VARCHAR, income_class__2007_ VARCHAR)"}, {"answer": "SELECT income_class__2007_ FROM table_255812_1 WHERE mayor = \"Ma. Ester A. Hamor\"", "question": "What are all the profits elegance (2007) in which mayor is ma. Ester a. Hamor", "context": "CREATE TABLE table_255812_1 (income_class__2007_ VARCHAR, mayor VARCHAR)"}, {"answer": "SELECT COUNT(population__2010_) FROM table_255812_1 WHERE area__km\u00b2_ = \"134.51\"", "question": "What is the total quantity of populace (2010) where location (km\u00b2) is 134.51", "context": "CREATE TABLE table_255812_1 (population__2010_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT city___municipality FROM table_255812_1 WHERE mayor = \"Helen C. De Castro\"", "question": "What are all the metropolis / municipality where mayor is helen c. De castro", "context": "CREATE TABLE table_255812_1 (city___municipality VARCHAR, mayor VARCHAR)"}, {"answer": "SELECT sail_number FROM table_25595107_2 WHERE loa__metres_ = \"13.68\"", "question": "What is the number of the sail with an overall length of 13.68?", "context": "CREATE TABLE table_25595107_2 (sail_number VARCHAR, loa__metres_ VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_25604014_9 WHERE directed_by = \"Leslie Hill\"", "question": "Name the most number in season for leslie hill", "context": "CREATE TABLE table_25604014_9 (no_in_season INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25604014_9 WHERE production_code = \"1L10\"", "question": "Name who directed the production code 1l10", "context": "CREATE TABLE table_25604014_9 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT production_code FROM table_25604014_9 WHERE written_by = \"Theresa Rebeck\"", "question": "Name the production code for theresa rebeck", "context": "CREATE TABLE table_25604014_9 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_25604014_9 WHERE production_code = \"1L16\"", "question": "Name the original air date for production code 1l16", "context": "CREATE TABLE table_25604014_9 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_11 WHERE type = \"town\"", "question": "What is the ethnic majority in the only town?", "context": "CREATE TABLE table_2562572_11 (largest_ethnic_group__2002_ VARCHAR, type VARCHAR)"}, {"answer": "SELECT settlement FROM table_2562572_11 WHERE cyrillic_name_other_names = \"\u041f\u043b\u0430\u0432\u043d\u0430\"", "question": "How to you write  \u043f\u043b\u0430\u0432\u043d\u0430 with the latin alphabet?", "context": "CREATE TABLE table_2562572_11 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT MIN(population__2011_) FROM table_2562572_11", "question": "What is the smallest population listed?", "context": "CREATE TABLE table_2562572_11 (population__2011_ INTEGER)"}, {"answer": "SELECT type FROM table_2562572_30 WHERE settlement = \"Rabe\"", "question": "What type of settlement is rabe?", "context": "CREATE TABLE table_2562572_30 (type VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_30 WHERE cyrillic_name_other_names = \"\u0411\u0430\u043d\u0430\u0442\u0441\u043a\u043e \u0410\u0440\u0430\u043d\u0452\u0435\u043b\u043e\u0432\u043e\"", "question": "What is the largest ethnic group of the settlement with the cyrillic name of \u0431\u0430\u043d\u0430\u0442\u0441\u043a\u043e \u0430\u0440\u0430\u043d\u0452\u0435\u043b\u043e\u0432\u043e?", "context": "CREATE TABLE table_2562572_30 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT COUNT(dominant_religion__2002_) FROM table_2562572_30 WHERE settlement = \"\u0110ala\"", "question": "How many dominant religions are in \u0111ala?", "context": "CREATE TABLE table_2562572_30 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT settlement FROM table_2562572_30 WHERE cyrillic_name_other_names = \"\u0421\u0438\u0433\u0435\u0442\"", "question": "Which settlement has the cyrillic name \u0441\u0438\u0433\u0435\u0442? ", "context": "CREATE TABLE table_2562572_30 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_30 WHERE settlement = \"Rabe\"", "question": "What is the cyrillic and other name of rabe?", "context": "CREATE TABLE table_2562572_30 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_26 WHERE settlement = \"Gornji Tavankut\"", "question": "What is the dominant religion in Gornji Tavankut?", "context": "CREATE TABLE table_2562572_26 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT population__2011_ FROM table_2562572_26 WHERE cyrillic_name_other_names = \"\u0421\u0442\u0430\u0440\u0438 \u0416\u0435\u0434\u043d\u0438\u043a (Croatian: Stari \u017dednik)\"", "question": "What is the population in \u0441\u0442\u0430\u0440\u0438 \u0436\u0435\u0434\u043d\u0438\u043a (croatian: stari \u017eednik)?", "context": "CREATE TABLE table_2562572_26 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_26 WHERE population__2011_ = 6591", "question": "What are the cyrillic and other names of the settlement whose population is 6591?", "context": "CREATE TABLE table_2562572_26 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT type FROM table_2562572_26 WHERE population__2011_ = 1441", "question": "What type of settlement has a population of 1441?", "context": "CREATE TABLE table_2562572_26 (type VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT COUNT(settlement) FROM table_2562572_26 WHERE cyrillic_name_other_names = \"\u0402\u0443\u0440\u0452\u0438\u043d (Croatian: \u0110ur\u0111in)\"", "question": "How many settlements are named \u0452\u0443\u0440\u0452\u0438\u043d (croatian: \u0111ur\u0111in)?", "context": "CREATE TABLE table_2562572_26 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_39 WHERE population__2011_ = \"777\"", "question": "What town has the population of 777?", "context": "CREATE TABLE table_2562572_39 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_39 WHERE cyrillic_name_other_names = \"\u041a\u043e\u043d\u0430\u043a\"", "question": "What is the ethnic group is \u043a\u043e\u043d\u0430\u043a?", "context": "CREATE TABLE table_2562572_39 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT population__2011_ FROM table_2562572_39 WHERE cyrillic_name_other_names = \"\u0408\u0430\u0440\u043a\u043e\u0432\u0430\u0446\"", "question": "The pooulation of \u0458\u0430\u0440\u043a\u043e\u0432\u0430\u0446 is?", "context": "CREATE TABLE table_2562572_39 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT type FROM table_2562572_39 WHERE cyrillic_name_other_names = \"\u0411\u043e\u043a\u0430\"", "question": "What kind of type is  \u0431\u043e\u043a\u0430?", "context": "CREATE TABLE table_2562572_39 (type VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_39 WHERE population__2011_ = \"2,107\"", "question": "The population is 2,107's dominant religion is?", "context": "CREATE TABLE table_2562572_39 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_41 WHERE settlement = \"Deliblato\"", "question": "What is the Deliblato village known as in Cyrillic?", "context": "CREATE TABLE table_2562572_41 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT description FROM table_256286_20 WHERE _percentage_yes = \"41.76%\"", "question": "Who had 41.76% yes votes", "context": "CREATE TABLE table_256286_20 (description VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT MAX(yes_votes) FROM table_256286_20 WHERE _percentage_yes = \"43.18%\"", "question": "how many yes votes made up 43.18% yes?", "context": "CREATE TABLE table_256286_20 (yes_votes INTEGER, _percentage_yes VARCHAR)"}, {"answer": "SELECT MIN(no_votes) FROM table_256286_20 WHERE _percentage_yes = \"45.60%\"", "question": "HOw many no votes were there when there were 45.60% yes votes", "context": "CREATE TABLE table_256286_20 (no_votes INTEGER, _percentage_yes VARCHAR)"}, {"answer": "SELECT meas_num FROM table_256286_18 WHERE type = \"Init\"", "question": "what is the measure number for the init type? ", "context": "CREATE TABLE table_256286_18 (meas_num VARCHAR, type VARCHAR)"}, {"answer": "SELECT points FROM table_25646820_2 WHERE player = \"Donald Boor\"", "question": "Name the points for donald boor", "context": "CREATE TABLE table_25646820_2 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_25646820_2 WHERE player = \"Joe Rogers\"", "question": "Name the least touchdowns for joe rogers", "context": "CREATE TABLE table_25646820_2 (touchdowns INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_25662434_1 WHERE production_code = 1040", "question": "How many titles had production code 1040?", "context": "CREATE TABLE table_25662434_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25740548_4 WHERE production_code = \"CA311\"", "question": "Who directed the episode with production code ca311?", "context": "CREATE TABLE table_25740548_4 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_25740548_4 WHERE us_viewers__million_ = \"2.75\"", "question": "Which episode had 2.75 million viewers in the U.S.?", "context": "CREATE TABLE table_25740548_4 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25740548_4 WHERE production_code = \"CA303\"", "question": "Who directed the episode with production code ca303?", "context": "CREATE TABLE table_25740548_4 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_25750635_2 WHERE production_code = \"E4515\"", "question": "Who wrote the episode with e4515 as the production code?", "context": "CREATE TABLE table_25750635_2 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(base_elevation__feet_) FROM table_25762852_1 WHERE lifts = 11", "question": "If there are 11 lifts, what is the base elevation?", "context": "CREATE TABLE table_25762852_1 (base_elevation__feet_ INTEGER, lifts VARCHAR)"}, {"answer": "SELECT name FROM table_25762852_1 WHERE lifts = 30", "question": "if there are 30 lifts, what is the name of the ski resort?", "context": "CREATE TABLE table_25762852_1 (name VARCHAR, lifts VARCHAR)"}, {"answer": "SELECT top_elevation__feet_ FROM table_25762852_1 WHERE name = \"Steamboat\"", "question": "If the name is Steamboat, what is the top elevation?", "context": "CREATE TABLE table_25762852_1 (top_elevation__feet_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_25762852_1 WHERE runs = \"118\"", "question": "How many resorts have 118 runs?", "context": "CREATE TABLE table_25762852_1 (name VARCHAR, runs VARCHAR)"}, {"answer": "SELECT MAX(snowfall__in_year_) FROM table_25762852_1 WHERE name = \"Snowmass\"", "question": "What is the snowfall for ski resort Snowmass?", "context": "CREATE TABLE table_25762852_1 (snowfall__in_year_ INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_25794532_1 WHERE points = \"64\"", "question": "Name the most poles for 64 points", "context": "CREATE TABLE table_25794532_1 (poles INTEGER, points VARCHAR)"}, {"answer": "SELECT points FROM table_25794532_1 WHERE car_no = 4", "question": "Name the points for car number 4", "context": "CREATE TABLE table_25794532_1 (points VARCHAR, car_no VARCHAR)"}, {"answer": "SELECT position FROM table_25794532_1 WHERE team = \"Eifelland Racing\"", "question": "Name the position for eifelland racing", "context": "CREATE TABLE table_25794532_1 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT series FROM table_25794532_1 WHERE points = \"68\"", "question": "Name the series for 68", "context": "CREATE TABLE table_25794532_1 (series VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(group) FROM table_2581397_3 WHERE weight__kg_ = \"57.5\"", "question": "How man teams had a total weight of 57.5?", "context": "CREATE TABLE table_2581397_3 (group VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT distance FROM table_2581397_3 WHERE weight__kg_ = \"56\"", "question": "List the weight for 56 kilograms.", "context": "CREATE TABLE table_2581397_3 (distance VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT race FROM table_2581397_3 WHERE weight__kg_ = \"56.5\"", "question": "List the weight for 56.5 kilograms.", "context": "CREATE TABLE table_2581397_3 (race VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT loss_gain FROM table_25818630_2 WHERE votes__cast = 166", "question": "What was the loss/gain when the votes -cast was 166?", "context": "CREATE TABLE table_25818630_2 (loss_gain VARCHAR, votes__cast VARCHAR)"}, {"answer": "SELECT candidate FROM table_25818630_2 WHERE result____percentage = \"2.9%\"", "question": "Who as the candidate when the result - % was 2.9%?", "context": "CREATE TABLE table_25818630_2 (candidate VARCHAR, result____percentage VARCHAR)"}, {"answer": "SELECT votes__cast FROM table_25818630_2 WHERE constituency = \"Midlothian\"", "question": "How many votes were cast when the constituency was midlothian?", "context": "CREATE TABLE table_25818630_2 (votes__cast VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT candidate FROM table_25818630_2 WHERE result____percentage = \"0.4%\"", "question": "Who was the candidate when the result - % was 0.4%?", "context": "CREATE TABLE table_25818630_2 (candidate VARCHAR, result____percentage VARCHAR)"}, {"answer": "SELECT loss_gain FROM table_25818630_2 WHERE affiliation = \"Solidarity\"", "question": "What was the loss/gain when the affiliation was solidarity?", "context": "CREATE TABLE table_25818630_2 (loss_gain VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT affiliation FROM table_25818630_1 WHERE candidate = \"Daren Ireland\"", "question": "What is every affiliation for candidate Daren Ireland?", "context": "CREATE TABLE table_25818630_1 (affiliation VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT candidate FROM table_25818630_1 WHERE constituency = \"Cardiff Central\"", "question": "What is every candidate for the Cardiff Central constituency?", "context": "CREATE TABLE table_25818630_1 (candidate VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT MAX(result___votes) FROM table_25818630_1 WHERE constituency = \"Huddersfield\"", "question": "What is the largest vote result for the Huddersfield constituency?", "context": "CREATE TABLE table_25818630_1 (result___votes INTEGER, constituency VARCHAR)"}, {"answer": "SELECT MAX(result___votes) FROM table_25818630_1 WHERE loss_gain = \"-0.5%\"", "question": "What is the largest vote result if loss/gain is -0.5%?", "context": "CREATE TABLE table_25818630_1 (result___votes INTEGER, loss_gain VARCHAR)"}, {"answer": "SELECT affiliation FROM table_25818630_1 WHERE constituency = \"Tottenham\"", "question": "What is every affiliation for the Tottenham constituency?", "context": "CREATE TABLE table_25818630_1 (affiliation VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT COUNT(constituency) FROM table_25818630_1 WHERE result___votes = 162", "question": "How many values for constituency for the vote result of 162?", "context": "CREATE TABLE table_25818630_1 (constituency VARCHAR, result___votes VARCHAR)"}, {"answer": "SELECT MIN(w) FROM table_25933764_1 WHERE locale = Ontario", "question": "If the locale is Ontario, what is the W minimum?", "context": "CREATE TABLE table_25933764_1 (w INTEGER, locale VARCHAR, Ontario VARCHAR)"}, {"answer": "SELECT COUNT(network_tv_run_time) FROM table_26032940_2 WHERE episode__number = 53", "question": "How many runtimes does episode 53 have?", "context": "CREATE TABLE table_26032940_2 (network_tv_run_time VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT main_cast FROM table_26032940_2 WHERE airdate = \"3/23/1963\"", "question": "Who was the cast on the 3/23/1963 episode?", "context": "CREATE TABLE table_26032940_2 (main_cast VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT movie_title_and_year FROM table_26032940_2 WHERE main_cast = \"Dana Wynter , Mel Ferrer , Theodore Bikel\"", "question": "What movie did dana wynter , mel ferrer , theodore bikel star in?", "context": "CREATE TABLE table_26032940_2 (movie_title_and_year VARCHAR, main_cast VARCHAR)"}, {"answer": "SELECT branding FROM table_2610582_2 WHERE callsign = \"DWCI-TV\"", "question": "What is the branding of the callsign DWCI-TV?", "context": "CREATE TABLE table_2610582_2 (branding VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT COUNT(branding) FROM table_2610582_2 WHERE power_kw__erp_ = \"1kW (29.94kW ERP)\"", "question": "How many brandings are there where the Power kW (ERP) is 1kW (29.94kW ERP)?", "context": "CREATE TABLE table_2610582_2 (branding VARCHAR, power_kw__erp_ VARCHAR)"}, {"answer": "SELECT branding FROM table_2610582_2 WHERE callsign = \"DWEC-TV\"", "question": "The callsign DWEC-TV has what branding? ", "context": "CREATE TABLE table_2610582_2 (branding VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT power_kw__erp_ FROM table_2610582_2 WHERE location__transmitter_site_ = \"San Fernando, Pampanga **\"", "question": "The location (transmitter site) San Fernando, Pampanga ** has what Power kW (ERP)?", "context": "CREATE TABLE table_2610582_2 (power_kw__erp_ VARCHAR, location__transmitter_site_ VARCHAR)"}, {"answer": "SELECT station_type FROM table_2610582_2 WHERE branding = \"ABS-CBN TV-32 Tagaytay\"", "question": "What is the station type for the branding ABS-CBN TV-32 Tagaytay?", "context": "CREATE TABLE table_2610582_2 (station_type VARCHAR, branding VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_26137666_3 WHERE winning_team = \"Carlin Motorsport\" AND circuit = \"Croft\"", "question": "Who are all winning drivers if winning team is Carlin Motorsport and circuit is Croft?", "context": "CREATE TABLE table_26137666_3 (winning_driver VARCHAR, winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_26137666_3 WHERE winning_driver = \"Mark Taylor\"", "question": "What is every date of Mark Taylor as winning driver?", "context": "CREATE TABLE table_26137666_3 (date VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT pole_position FROM table_26137666_3 WHERE circuit = \"Castle Combe\" AND winning_driver = \"Robbie Kerr\"", "question": "What is every pole position for the Castle Combe circuit and Robbie Kerr is the winning driver?", "context": "CREATE TABLE table_26137666_3 (pole_position VARCHAR, circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_26137666_3 WHERE fastest_lap = \"Fabio Carbone\"", "question": "How many rounds have Fabio Carbone for fastest lap?", "context": "CREATE TABLE table_26137666_3 (round VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT COUNT(pole_position) FROM table_26137666_3 WHERE round = 20", "question": "How many pole positions for round 20?", "context": "CREATE TABLE table_26137666_3 (pole_position VARCHAR, round VARCHAR)"}, {"answer": "SELECT ahli FROM table_26173063_2 WHERE ramtha = \"0-4\"", "question": "what is ahli when ramtha is 0-4?", "context": "CREATE TABLE table_26173063_2 (ahli VARCHAR, ramtha VARCHAR)"}, {"answer": "SELECT faisaly FROM table_26173063_2 WHERE wehdat = \"XXX\"", "question": "what is faisaly when wehdat is xxx?", "context": "CREATE TABLE table_26173063_2 (faisaly VARCHAR, wehdat VARCHAR)"}, {"answer": "SELECT orthodoxy FROM table_26173063_2 WHERE \u00d7 = \"wehdat\"", "question": "What is orthodoxy when x is wehdat?", "context": "CREATE TABLE table_26173063_2 (orthodoxy VARCHAR, \u00d7 VARCHAR)"}, {"answer": "SELECT \u00d7 FROM table_26173063_2 WHERE faisaly = \"0-0\"", "question": "what is x when faisaly is 0-0?", "context": "CREATE TABLE table_26173063_2 (\u00d7 VARCHAR, faisaly VARCHAR)"}, {"answer": "SELECT ramtha FROM table_26173063_2 WHERE jeel = \"1-0\" AND hussein = \"1-0\"", "question": "What is ramtha when jeel is 1-0 and hussein is 1-0?", "context": "CREATE TABLE table_26173063_2 (ramtha VARCHAR, jeel VARCHAR, hussein VARCHAR)"}, {"answer": "SELECT title FROM table_2618142_1 WHERE directed_by = \"Ed Sherin\"", "question": "name the title of the episode that ed sherin directed.", "context": "CREATE TABLE table_2618142_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_2618142_1", "question": "the first episode in this season had what number in the series? ", "context": "CREATE TABLE table_2618142_1 (no_in_series INTEGER)"}, {"answer": "SELECT written_by FROM table_2618152_1 WHERE original_air_date = \"January 13, 1999\"", "question": "The episode with original air date January 13, 1999 is written by who?", "context": "CREATE TABLE table_2618152_1 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT production_code FROM table_2618152_1 WHERE original_air_date = \"January 6, 1999\"", "question": "The episode with the original air date January 6, 1999, has what production code?", "context": "CREATE TABLE table_2618152_1 (production_code VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_2618152_1 WHERE original_air_date = \"October 21, 1998\"", "question": "What is the title of the episode with the original air date October 21, 1998?", "context": "CREATE TABLE table_2618152_1 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_2618152_1 WHERE written_by = \"Matt Witten , Richard Sweren\"", "question": "What is the season number of the episode written by Matt Witten , Richard Sweren?", "context": "CREATE TABLE table_2618152_1 (no_in_season VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2618152_1 WHERE production_code = \"E0208\"", "question": "The episode with the production code E0208 is directed by who?", "context": "CREATE TABLE table_2618152_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT institution FROM table_261895_1 WHERE type = \"Private/United Church of Christ\"", "question": "which institutions can be categorized as private/united church of christ?", "context": "CREATE TABLE table_261895_1 (institution VARCHAR, type VARCHAR)"}, {"answer": "SELECT institution FROM table_261895_1 WHERE joined = \"1953\"", "question": "in 1953, which of the institutions joined?", "context": "CREATE TABLE table_261895_1 (institution VARCHAR, joined VARCHAR)"}, {"answer": "SELECT type FROM table_261895_1 WHERE institution = \"Calvin College\"", "question": "which categories fit under the institution calvin college?", "context": "CREATE TABLE table_261895_1 (type VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(institution) FROM table_261895_1 WHERE founded = 1833", "question": "in 1833, how many institutions were created?", "context": "CREATE TABLE table_261895_1 (institution VARCHAR, founded VARCHAR)"}, {"answer": "SELECT COUNT(type) FROM table_261895_1 WHERE nickname = \"Britons\"", "question": "how many categories fall under the category of britons?", "context": "CREATE TABLE table_261895_1 (type VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_261895_1 WHERE nickname = \"Belles\"", "question": "under belles, which is the most possible created?", "context": "CREATE TABLE table_261895_1 (founded INTEGER, nickname VARCHAR)"}, {"answer": "SELECT COUNT(pop_density__per_km\u00b2_) FROM table_261951_1 WHERE municipality = \"Lubang\"", "question": "What is the population density for the city of lubang?", "context": "CREATE TABLE table_261951_1 (pop_density__per_km\u00b2_ VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT MIN(population__2010_) FROM table_261951_1", "question": "What was the smallist population in 2010?", "context": "CREATE TABLE table_261951_1 (population__2010_ INTEGER)"}, {"answer": "SELECT pop_density__per_km\u00b2_ FROM table_261951_1 WHERE municipality = \"Calintaan\"", "question": "List the population density per kilometer for the city of calintaan?", "context": "CREATE TABLE table_261951_1 (pop_density__per_km\u00b2_ VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT pop_density__per_km\u00b2_ FROM table_261951_1 WHERE municipality = \"Abra de Ilog\"", "question": "List the population density per kilometer for the city of abra de ilog.", "context": "CREATE TABLE table_261951_1 (pop_density__per_km\u00b2_ VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT enrollment FROM table_261946_3 WHERE location__all_in_ohio_ = \"Ashland\"", "question": "What is the enrollment for Ashland University?", "context": "CREATE TABLE table_261946_3 (enrollment VARCHAR, location__all_in_ohio_ VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_261946_3", "question": "Which founding year corresponds with the highest enrollment? ", "context": "CREATE TABLE table_261946_3 (founded INTEGER)"}, {"answer": "SELECT MIN(left) FROM table_261946_3 WHERE location__all_in_ohio_ = \"Gambier\"", "question": "Which year did enrolled Gambier members leave?", "context": "CREATE TABLE table_261946_3 (left INTEGER, location__all_in_ohio_ VARCHAR)"}, {"answer": "SELECT type FROM table_261946_3 WHERE location__all_in_ohio_ = \"Kent\"", "question": "What is the type of institution in Kent State University?", "context": "CREATE TABLE table_261946_3 (type VARCHAR, location__all_in_ohio_ VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_26202788_7 WHERE championship = \"Miami , United States\"", "question": "In the championship Miami , United States, what is the score in the final?", "context": "CREATE TABLE table_26202788_7 (score_in_the_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT surface FROM table_26202788_7 WHERE opponent_in_the_final = \"Andy Roddick\"", "question": "Andy Roddick is the opponent in the final on what surface?", "context": "CREATE TABLE table_26202788_7 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_26202788_7 WHERE championship = \"Indian Wells, United States (2)\"", "question": "In the championship Indian Wells, United States (2), who are the opponents in the final?", "context": "CREATE TABLE table_26202788_7 (opponent_in_the_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT championship FROM table_26202788_7 WHERE opponent_in_the_final = \"Marat Safin\"", "question": "Marat Safin is the opponent in the final in what championship?", "context": "CREATE TABLE table_26202788_7 (championship VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(championship) FROM table_26202788_7 WHERE date = \"January 9, 2005\"", "question": "How many championships are there on the date January 9, 2005?", "context": "CREATE TABLE table_26202788_7 (championship VARCHAR, date VARCHAR)"}, {"answer": "SELECT no FROM table_26202847_6 WHERE outcome = \"Winner\" AND surface = \"Hard (i)\"", "question": "Where the outcome is Winner and surface is Hard (i), what is the No.?", "context": "CREATE TABLE table_26202847_6 (no VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT no FROM table_26202847_6 WHERE date = \"October 21, 2007\"", "question": "On the date October 21, 2007, what is the No.?", "context": "CREATE TABLE table_26202847_6 (no VARCHAR, date VARCHAR)"}, {"answer": "SELECT championship FROM table_26202847_6 WHERE score_in_the_final = \"6\u20131, 3\u20136, 3\u20136\"", "question": "Where is the championship where 6\u20131, 3\u20136, 3\u20136 is the score in the final?", "context": "CREATE TABLE table_26202847_6 (championship VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_26202847_6 WHERE score_in_the_final = \"3\u20136, 6\u20134, 3\u20136, 4\u20136\"", "question": "When the  score in the final is 3\u20136, 6\u20134, 3\u20136, 4\u20136, who are all the opponents in the final?", "context": "CREATE TABLE table_26202847_6 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_26202847_6 WHERE score_in_the_final = \"2\u20136, 6\u20132, 6\u20130\"", "question": "The score in the final is 2\u20136, 6\u20132, 6\u20130, on what surface?", "context": "CREATE TABLE table_26202847_6 (surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT result FROM table_26250199_1 WHERE original_artist = \"Joan Osborne\"", "question": "The original artist Joan Osborne has what result?", "context": "CREATE TABLE table_26250199_1 (result VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT episode FROM table_26250199_1 WHERE order__number = \"10\"", "question": "In which episode is the order number 10?", "context": "CREATE TABLE table_26250199_1 (episode VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT theme FROM table_26250199_1 WHERE episode = \"Top 16 (8 Men)\"", "question": "In episode Top 16 (8 Men), what are the themes?", "context": "CREATE TABLE table_26250199_1 (theme VARCHAR, episode VARCHAR)"}, {"answer": "SELECT song_choice FROM table_26250199_1 WHERE theme = \"Auditioner's Choice\"", "question": "The theme Auditioner's Choice\thas what song choice?", "context": "CREATE TABLE table_26250199_1 (song_choice VARCHAR, theme VARCHAR)"}, {"answer": "SELECT week__number FROM table_26250227_1 WHERE theme = \"Auditioner's Choice\"", "question": "What are all the week # where subject matter is auditioner's choice", "context": "CREATE TABLE table_26250227_1 (week__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT order__number FROM table_26250227_1 WHERE original_artist = \"Maroon 5\"", "question": "What are all of the order # where authentic artist is maroon 5", "context": "CREATE TABLE table_26250227_1 (order__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT represents FROM table_26301697_2 WHERE hometown = \"Los Alcarrizos\"", "question": "Name the represents for los alcarrizos", "context": "CREATE TABLE table_26301697_2 (represents VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT MAX(age) FROM table_26301697_2", "question": "Name the most age", "context": "CREATE TABLE table_26301697_2 (age INTEGER)"}, {"answer": "SELECT COUNT(represents) FROM table_26301697_2 WHERE contestant = \"Clary Sermina Delgado Cid\"", "question": "Name the total number of represents for clary sermina delgado cid", "context": "CREATE TABLE table_26301697_2 (represents VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT MIN(age) FROM table_26301697_2 WHERE represents = \"Distrito Nacional\"", "question": "Name the least age for distrito nacional", "context": "CREATE TABLE table_26301697_2 (age INTEGER, represents VARCHAR)"}, {"answer": "SELECT represents FROM table_26301697_2 WHERE height__cm_ = \"1.76\"", "question": "Name the represents for 1.76 cm", "context": "CREATE TABLE table_26301697_2 (represents VARCHAR, height__cm_ VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_26334740_3 WHERE race = 17", "question": "In how many rounds was Race 17?", "context": "CREATE TABLE table_26334740_3 (round VARCHAR, race VARCHAR)"}, {"answer": "SELECT winning_team FROM table_26334740_3 WHERE race = 17", "question": "What team won Race 17?", "context": "CREATE TABLE table_26334740_3 (winning_team VARCHAR, race VARCHAR)"}, {"answer": "SELECT partner FROM table_26309085_1 WHERE year = 1989", "question": "Who was his partner in 1989? ", "context": "CREATE TABLE table_26309085_1 (partner VARCHAR, year VARCHAR)"}, {"answer": "SELECT surface FROM table_26309085_1 WHERE partner = \"John Alexander\"", "question": "What was the surface when he played with John Alexander? ", "context": "CREATE TABLE table_26309085_1 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_26309085_1 WHERE year = 1986", "question": "What was the final score in 1986?", "context": "CREATE TABLE table_26309085_1 (score_in_final VARCHAR, year VARCHAR)"}, {"answer": "SELECT nickname FROM table_26355116_1 WHERE school = \"University of Alabama\"", "question": "What is the nickname of the University of Alabama?", "context": "CREATE TABLE table_26355116_1 (nickname VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_26355116_1", "question": "What is the maximum enrollment of the schools?", "context": "CREATE TABLE table_26355116_1 (enrollment INTEGER)"}, {"answer": "SELECT MAX(public) FROM table_26375386_23 WHERE result = \"Eliminated\"", "question": "How many public is there for the couple that got eliminated?", "context": "CREATE TABLE table_26375386_23 (public INTEGER, result VARCHAR)"}, {"answer": "SELECT result FROM table_26375386_23 WHERE total = 12", "question": "What was the result for the total of 12?", "context": "CREATE TABLE table_26375386_23 (result VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_26375386_23 WHERE vote_percentage = \"5.6%\"", "question": "What was the maximum rank for the vote percentage of 5.6%", "context": "CREATE TABLE table_26375386_23 (rank INTEGER, vote_percentage VARCHAR)"}, {"answer": "SELECT judges FROM table_26375386_23 WHERE result = \"Eliminated\"", "question": "How many judges were there for the eliminated couple? ", "context": "CREATE TABLE table_26375386_23 (judges VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(public) FROM table_26375386_23 WHERE vote_percentage = \"22.9%\"", "question": "What is the number of public that was there when the vote percentage was 22.9%?", "context": "CREATE TABLE table_26375386_23 (public VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_26375386_23 WHERE vote_percentage = \"44.8%\"", "question": "What was the total number when the vote percentage was 44.8%?", "context": "CREATE TABLE table_26375386_23 (total VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT MIN(year_operational) FROM table_26387382_1 WHERE location__county_ = \"Fayette\" AND capacity__mw_ = \"46\"", "question": "What year was Fayette operational at 46?", "context": "CREATE TABLE table_26387382_1 (year_operational INTEGER, location__county_ VARCHAR, capacity__mw_ VARCHAR)"}, {"answer": "SELECT name FROM table_26387382_1 WHERE capacity__mw_ = \"70\" AND status = \"Operational\"", "question": "What farm has a capacity of 70 and is operational?", "context": "CREATE TABLE table_26387382_1 (name VARCHAR, capacity__mw_ VARCHAR, status VARCHAR)"}, {"answer": "SELECT power__mw\u00b7hr_yr_ FROM table_26387382_1 WHERE location__county_ = \"Centre\"", "question": "What locations are considered centre?", "context": "CREATE TABLE table_26387382_1 (power__mw\u00b7hr_yr_ VARCHAR, location__county_ VARCHAR)"}, {"answer": "SELECT capacity__mw_ FROM table_26387382_1 WHERE turbines = \"50-60\"", "question": "What all capacities have turbines between 50-60?", "context": "CREATE TABLE table_26387382_1 (capacity__mw_ VARCHAR, turbines VARCHAR)"}, {"answer": "SELECT turbines FROM table_26387382_1 WHERE location__county_ = \"Somerset\" AND capacity__mw_ = \"30\"", "question": "What all turbines have a capacity of 30 and have a Somerset location?", "context": "CREATE TABLE table_26387382_1 (turbines VARCHAR, location__county_ VARCHAR, capacity__mw_ VARCHAR)"}, {"answer": "SELECT MAX(weeks_in_top_10) FROM table_26400041_2 WHERE peak = 9", "question": "if the peak is 9, how many weeks was it in the top 10?", "context": "CREATE TABLE table_26400041_2 (weeks_in_top_10 INTEGER, peak VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_26455614_1 WHERE runner_up = \"Red Star\"", "question": "How many games had red star as the runner up?", "context": "CREATE TABLE table_26455614_1 (attendance VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT MIN(entries) FROM table_26455614_1 WHERE winner = \"Paris Saint-Germain\"", "question": "What is the fewest recorded entrants against paris saint-germain?", "context": "CREATE TABLE table_26455614_1 (entries INTEGER, winner VARCHAR)"}, {"answer": "SELECT member_countries FROM table_26519486_1 WHERE languages = \"Finnish Swedish\"", "question": "Name the member countries for finnish swedish", "context": "CREATE TABLE table_26519486_1 (member_countries VARCHAR, languages VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_26519486_1 WHERE languages = \"German\"", "question": "Name the area for german", "context": "CREATE TABLE table_26519486_1 (area__km\u00b2_ VARCHAR, languages VARCHAR)"}, {"answer": "SELECT population FROM table_26519486_1 WHERE languages = \"11\"", "question": "Name the population for 11 languages", "context": "CREATE TABLE table_26519486_1 (population VARCHAR, languages VARCHAR)"}, {"answer": "SELECT production_code FROM table_26561508_1 WHERE patient_portrayer = \"Kathy Lamkin\"", "question": "What is the production code for the episode where the patient portrayer is Kathy Lamkin?", "context": "CREATE TABLE table_26561508_1 (production_code VARCHAR, patient_portrayer VARCHAR)"}, {"answer": "SELECT written_by FROM table_26561508_1 WHERE production_code = \"2T5954\"", "question": "Who was the writter for the  episode identified by the production code 2t5954?", "context": "CREATE TABLE table_26561508_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(patient_portrayer) FROM table_26561508_1 WHERE directed_by = \"Craig Zisk\" AND written_by = \"Brad Falchuk\"", "question": "What is the total number of patient portayers for the episode directed by Craig Zisk and written by Brad Falchuk?", "context": "CREATE TABLE table_26561508_1 (patient_portrayer VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_26561506_1 WHERE production_code = 177605", "question": "Who directed the episode with production code 177605?", "context": "CREATE TABLE table_26561506_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(patient_portrayer) FROM table_26561506_1 WHERE _number = 4", "question": "How many episodes are numbered 4 in the season?", "context": "CREATE TABLE table_26561506_1 (patient_portrayer VARCHAR, _number VARCHAR)"}, {"answer": "SELECT written_by FROM table_26561506_1 WHERE no = 28", "question": "Who wrote episode number 28?", "context": "CREATE TABLE table_26561506_1 (written_by VARCHAR, no VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_26561506_1 WHERE patient_portrayer = \"Doug Savant\"", "question": "What is the highest numbered episode with patient portrayer doug savant?", "context": "CREATE TABLE table_26561506_1 (_number INTEGER, patient_portrayer VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_26565936_2 WHERE written_by = \"Bo Crese\"", "question": "What number(s) in the series was written by bo crese?", "context": "CREATE TABLE table_26565936_2 (no_in_series VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_26565936_2 WHERE no_in_series = 109", "question": "Who wrote episode number 109 in the series?", "context": "CREATE TABLE table_26565936_2 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_26565936_2 WHERE directed_by = \"Nelson McCormick\"", "question": "What was the first episode in the season directed by nelson mccormick?", "context": "CREATE TABLE table_26565936_2 (no_in_season INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_26565936_2 WHERE us_viewers__millions_ = \"13.92\"", "question": "What was the original air date for the episode with 13.92 million us viewers?", "context": "CREATE TABLE table_26565936_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT first_broadcast_denmark___dr1__ FROM table_26591309_3 WHERE official_barb_ratings = \"999,000\"", "question": "When was the episode with a 999,000 BARB rating first aired in Denmark?", "context": "CREATE TABLE table_26591309_3 (first_broadcast_denmark___dr1__ VARCHAR, official_barb_ratings VARCHAR)"}, {"answer": "SELECT official_barb_ratings FROM table_26591309_3 WHERE episode = 6", "question": "What is the BARB ratings of episode 6?", "context": "CREATE TABLE table_26591309_3 (official_barb_ratings VARCHAR, episode VARCHAR)"}, {"answer": "SELECT first_broadcast_denmark___dr1__ FROM table_26591309_3 WHERE official_barb_ratings = \"1,036,000\"", "question": "When was the episode with a 1,036,000 BARB rating first aired in Denmark?", "context": "CREATE TABLE table_26591309_3 (first_broadcast_denmark___dr1__ VARCHAR, official_barb_ratings VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_2665085_1 WHERE park = \"Mt. Olympus\"", "question": "How many parks are called mt. olympus", "context": "CREATE TABLE table_2665085_1 (name VARCHAR, park VARCHAR)"}, {"answer": "SELECT speed__mph_ FROM table_2665085_1 WHERE height__ft_ = 163", "question": "How fast is the coaster that is 163 feet tall", "context": "CREATE TABLE table_2665085_1 (speed__mph_ VARCHAR, height__ft_ VARCHAR)"}, {"answer": "SELECT length__ft_ FROM table_2665085_1 WHERE speed__mph_ = \"unknown\"", "question": "What is the length of the coaster with the unknown speed", "context": "CREATE TABLE table_2665085_1 (length__ft_ VARCHAR, speed__mph_ VARCHAR)"}, {"answer": "SELECT length__ft_ FROM table_2665085_1 WHERE park = \"Kemah Boardwalk\"", "question": "How long is the rollar coaster on Kemah Boardwalk", "context": "CREATE TABLE table_2665085_1 (length__ft_ VARCHAR, park VARCHAR)"}, {"answer": "SELECT park FROM table_2665085_1 WHERE name = \"Boardwalk Bullet\"", "question": "What park is Boardwalk Bullet located in?", "context": "CREATE TABLE table_2665085_1 (park VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(park) FROM table_2665085_1 WHERE name = \"Zippin Pippin\"", "question": "How many parks is Zippin Pippin located in", "context": "CREATE TABLE table_2665085_1 (park VARCHAR, name VARCHAR)"}, {"answer": "SELECT year FROM table_26669939_1 WHERE host_country = \"Montenegro\"", "question": "In what year was Montenegro the host country?", "context": "CREATE TABLE table_26669939_1 (year VARCHAR, host_country VARCHAR)"}, {"answer": "SELECT no_of_athletes FROM table_26669939_1 WHERE host_city = \"Nice\"", "question": "What was the number of athletes in the host city of Nice?", "context": "CREATE TABLE table_26669939_1 (no_of_athletes VARCHAR, host_city VARCHAR)"}, {"answer": "SELECT host_country FROM table_26669939_1 WHERE host_city = \"Bar\"", "question": "Who was the host country when Bar was the host city?", "context": "CREATE TABLE table_26669939_1 (host_country VARCHAR, host_city VARCHAR)"}, {"answer": "SELECT no_of_athletes FROM table_26669939_1 WHERE edition = \"7th\"", "question": "What was the number of athletes for the 7th edition?", "context": "CREATE TABLE table_26669939_1 (no_of_athletes VARCHAR, edition VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_26669939_1", "question": "What was the most recent year?", "context": "CREATE TABLE table_26669939_1 (year INTEGER)"}, {"answer": "SELECT host_city FROM table_26669939_1 WHERE host_country = \"Croatia\" AND edition = \"8th\"", "question": "What was the host city of the 8th edition in the the host country of Croatia?", "context": "CREATE TABLE table_26669939_1 (host_city VARCHAR, host_country VARCHAR, edition VARCHAR)"}, {"answer": "SELECT result FROM table_2668243_18 WHERE first_elected = \"1798 1825\"", "question": "Name the result for first elected being 1798 1825", "context": "CREATE TABLE table_2668243_18 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_2668243_18 WHERE incumbent = \"Willis Alston\"", "question": "Name the total number of party for willis alston", "context": "CREATE TABLE table_2668243_18 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_2668243_18 WHERE candidates = \"Augustine H. Shepperd (J) 100%\"", "question": "Name the result for  augustine h. shepperd (j) 100%", "context": "CREATE TABLE table_2668243_18 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_2668243_18 WHERE incumbent = \"Willis Alston\"", "question": "Name the result for willis alston", "context": "CREATE TABLE table_2668243_18 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_2668243_18 WHERE candidates = \"Willis Alston (J) 93.9% George E. Spruill 6.1%\"", "question": "Name the total number of party for willis alston (j) 93.9% george e. spruill 6.1%", "context": "CREATE TABLE table_2668243_18 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_2668243_18 WHERE party = \"Anti-Jacksonian\"", "question": "Name the district for anti-jacksonian", "context": "CREATE TABLE table_2668243_18 (district VARCHAR, party VARCHAR)"}, {"answer": "SELECT result FROM table_2668243_19 WHERE first_elected = \"1820\"", "question": "What was the result for the candidate first elected in 1820?", "context": "CREATE TABLE table_2668243_19 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_2668243_19 WHERE incumbent = \"Joseph Vance\"", "question": "What is the party of Joseph Vance?", "context": "CREATE TABLE table_2668243_19 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_2668352_11 WHERE candidates = \"Hosea Moffitt (F) 57.9% Josiah Masters (DR) 42.1%\"", "question": "Name the first elected for hosea moffitt (f) 57.9% josiah masters (dr) 42.1%", "context": "CREATE TABLE table_2668352_11 (first_elected VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT first_elected FROM table_2668352_11 WHERE incumbent = \"Jacob Markell\"", "question": "Name the first elected for jacob markell", "context": "CREATE TABLE table_2668352_11 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_2668352_11", "question": "Name the least first elected", "context": "CREATE TABLE table_2668352_11 (first_elected INTEGER)"}, {"answer": "SELECT MAX(first_elected) FROM table_2668352_11", "question": "Name the most first elected", "context": "CREATE TABLE table_2668352_11 (first_elected INTEGER)"}, {"answer": "SELECT incumbent FROM table_2668352_11 WHERE district = \"New York 10\"", "question": "Name the incumbent for new york 10", "context": "CREATE TABLE table_2668352_11 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_2668367_21 WHERE incumbent = \"Thomas Wilson\"", "question": "Name the distrct for thomas wilson", "context": "CREATE TABLE table_2668367_21 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_2668367_21 WHERE incumbent = \"John Randolph Redistricted from the 15th district\"", "question": "Name the party for  john randolph redistricted from the 15th district", "context": "CREATE TABLE table_2668367_21 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_2668367_21 WHERE district = \"Virginia 12\"", "question": "Name the party for virginia 12", "context": "CREATE TABLE table_2668367_21 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668378_5 WHERE incumbent = \"John Boyle\"", "question": "Name the candidates for john boyle", "context": "CREATE TABLE table_2668378_5 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_2668378_5 WHERE district = \"Kentucky 3\"", "question": "Name the first elected for kentucky 3", "context": "CREATE TABLE table_2668378_5 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668378_5 WHERE candidates = \"Matthew Lyon (DR) Anthony New (DR)\"", "question": "Name the incumbent for  matthew lyon (dr) anthony new (dr)", "context": "CREATE TABLE table_2668378_5 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_2668378_5 WHERE district = \"Kentucky 3\"", "question": "Name the number of first elected for kentucky 3", "context": "CREATE TABLE table_2668378_5 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_2668378_5 WHERE district = \"Kentucky 1\"", "question": "Name the number of party for kentucky 1", "context": "CREATE TABLE table_2668378_5 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_2668378_5 WHERE district = \"Kentucky 1\"", "question": "Name the first elected for kentucky 1", "context": "CREATE TABLE table_2668378_5 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_2668416_7 WHERE party = \"Federalist\" AND candidates = \"William Craik (F) 51.0% Benjamin Edwards 49.0%\"", "question": "What is the district for the party federalist and the candidates are william craik (f) 51.0% benjamin edwards 49.0%?", "context": "CREATE TABLE table_2668416_7 (district VARCHAR, party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT party FROM table_2668416_7 WHERE incumbent = \"Samuel Smith\"", "question": "What is the party when the incumbent is samuel smith?", "context": "CREATE TABLE table_2668416_7 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_2668416_7 WHERE district = \"Maryland 7\"", "question": " What is the result for the district Maryland 7?", "context": "CREATE TABLE table_2668416_7 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668416_7 WHERE district = \"Maryland 1\"", "question": "Who is the candidates for district maryland 1?", "context": "CREATE TABLE table_2668416_7 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668420_12 WHERE first_elected = 1791", "question": "Who was the candidate in 1791?", "context": "CREATE TABLE table_2668420_12 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT tv_season FROM table_2669287_1 WHERE episodes = 23", "question": "What tv season was episode 23 broadcast?", "context": "CREATE TABLE table_2669287_1 (tv_season VARCHAR, episodes VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_2669287_1 WHERE rank = \"#50\"", "question": "How many seasons was the rank equal to #50?", "context": "CREATE TABLE table_2669287_1 (season VARCHAR, rank VARCHAR)"}, {"answer": "SELECT season AS finale FROM table_2669287_1 WHERE viewers__in_millions_ = \"10.02\"", "question": "When did the season finale reached an audience of 10.02 million viewers?", "context": "CREATE TABLE table_2669287_1 (season VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT nationality FROM table_2679061_2 WHERE player = \"Randy Heath\"", "question": "What is the nationality when the player is randy heath?", "context": "CREATE TABLE table_2679061_2 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2679061_2 WHERE college_junior_club_team = \"Toronto Marlboros (OHL)\" AND position = \"Centre\"", "question": "What is the nhl team when the college, junior, club team is toronto marlboros (ohl) and the position is centre?", "context": "CREATE TABLE table_2679061_2 (nhl_team VARCHAR, college_junior_club_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_2679061_2 WHERE nhl_team = \"Montreal Canadiens\" AND college_junior_club_team = \"Trois-Rivi\u00e8res Draveurs (QMJHL)\"", "question": "what is the pick # when the nhl team is montreal canadiens and the college/junior/club team is trois-rivi\u00e8res draveurs (qmjhl)?", "context": "CREATE TABLE table_2679061_2 (pick__number INTEGER, nhl_team VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_2679061_2 WHERE nhl_team = \"Winnipeg Jets\"", "question": "how many times is the nhl team the winnipeg jets?", "context": "CREATE TABLE table_2679061_2 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_2679061_2 WHERE nhl_team = \"Toronto Maple Leafs\"", "question": "what is the position for the nhl team toronto maple leafs?", "context": "CREATE TABLE table_2679061_2 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_26826304_1 WHERE directed_by = \"Gordon C. Lonsdale\"", "question": "How many were the US viewers (in millions) of the episode that was written by Gordon C. Lonsdale?", "context": "CREATE TABLE table_26826304_1 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_26826304_1 WHERE production_code = \"5AKY13\"", "question": "What was the air date of the episode that has a production code of 5aky13?", "context": "CREATE TABLE table_26826304_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_26826304_1 WHERE production_code = \"5AKY04\"", "question": "Who was the writer of the episode with a production code of 5aky04?", "context": "CREATE TABLE table_26826304_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT position FROM table_26847237_2 WHERE player = \"Todd Wise\"", "question": "What position does the player Todd Wise play in?", "context": "CREATE TABLE table_26847237_2 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_26847237_2 WHERE height = \"1.92m\"", "question": "How many games were played where the height of the player is 1.92m?", "context": "CREATE TABLE table_26847237_2 (games VARCHAR, height VARCHAR)"}, {"answer": "SELECT dob FROM table_26847237_2 WHERE club = \"Inglewood\"", "question": "What is the date of birth for the player in the Inglewood club?", "context": "CREATE TABLE table_26847237_2 (dob VARCHAR, club VARCHAR)"}, {"answer": "SELECT player FROM table_26847237_2 WHERE weight = \"76kg\"", "question": "Which player weighs 76kg?", "context": "CREATE TABLE table_26847237_2 (player VARCHAR, weight VARCHAR)"}, {"answer": "SELECT directx FROM table_26860595_2 WHERE core___mhz__ = \"700 700\"", "question": "What was the model's DirectX if it has a Core of 700 700 mhz?", "context": "CREATE TABLE table_26860595_2 (directx VARCHAR, core___mhz__ VARCHAR)"}, {"answer": "SELECT MAX(fab___nm__) FROM table_26860595_2", "question": "What was the maximum fab (nm)?", "context": "CREATE TABLE table_26860595_2 (fab___nm__ INTEGER)"}, {"answer": "SELECT config_core_1 FROM table_26860595_2 WHERE processing_power_gflops = \"432\"", "question": "What is the config core 1 of the model with a processing power GFLOPs of 432?", "context": "CREATE TABLE table_26860595_2 (config_core_1 VARCHAR, processing_power_gflops VARCHAR)"}, {"answer": "SELECT COUNT(texture___gt__s_) FROM table_26860595_2 WHERE tdp__watts__gpu_only = \"18\"", "question": "How many texture (gt/s) the card has if the tdp (watts) GPU only is 18?", "context": "CREATE TABLE table_26860595_2 (texture___gt__s_ VARCHAR, tdp__watts__gpu_only VARCHAR)"}, {"answer": "SELECT prize_money FROM table_26903214_1 WHERE rider = \"Nina Carberry\"", "question": " How much did Nina Carberry win? ", "context": "CREATE TABLE table_26903214_1 (prize_money VARCHAR, rider VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_26914076_2 WHERE directed_by = \"Christine Moore\"", "question": "Name the us viewers directed by christine moore", "context": "CREATE TABLE table_26914076_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT no FROM table_26914076_2 WHERE directed_by = \"Simon Cellan Jones\"", "question": "Name the number for simon cellan jones", "context": "CREATE TABLE table_26914076_2 (no VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT teleplay_by FROM table_26914076_2 WHERE story_by = \"David Simon & Eric Overmyer and Tom Piazza\"", "question": "Name the teleplay for  david simon & eric overmyer and tom piazza", "context": "CREATE TABLE table_26914076_2 (teleplay_by VARCHAR, story_by VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_26914076_2", "question": "Name the most number", "context": "CREATE TABLE table_26914076_2 (no INTEGER)"}, {"answer": "SELECT geez FROM table_26919_7 WHERE proto_semitic = \"*bayt-\"", "question": "If the proto-semitic is *bayt-, what are the geez?", "context": "CREATE TABLE table_26919_7 (geez VARCHAR, proto_semitic VARCHAR)"}, {"answer": "SELECT english FROM table_26919_7 WHERE aramaic = \"\u0161l\u0101m-\u0101\u02bc\"", "question": "if the aramaic is \u0161l\u0101m-\u0101\u02bc, what is the english?", "context": "CREATE TABLE table_26919_7 (english VARCHAR, aramaic VARCHAR)"}, {"answer": "SELECT akkadian FROM table_26919_7 WHERE geez = \"libb\"", "question": "if the geez is libb, what is the akkadian?", "context": "CREATE TABLE table_26919_7 (akkadian VARCHAR, geez VARCHAR)"}, {"answer": "SELECT hebrew FROM table_26919_7 WHERE english = \"heart\"", "question": "If in english it is heart, what is it in hebrew?", "context": "CREATE TABLE table_26919_7 (hebrew VARCHAR, english VARCHAR)"}, {"answer": "SELECT proto_semitic FROM table_26919_7 WHERE english = \"house\"", "question": "If in English it's house, what is it in proto-semitic?", "context": "CREATE TABLE table_26919_7 (proto_semitic VARCHAR, english VARCHAR)"}, {"answer": "SELECT proto_semitic FROM table_26919_7 WHERE arabic = \"sal\u0101m-\"", "question": "If in arabic it is sal\u0101m-, what is it in proto-semitic?", "context": "CREATE TABLE table_26919_7 (proto_semitic VARCHAR, arabic VARCHAR)"}, {"answer": "SELECT COUNT(pole_position) FROM table_2696531_2 WHERE location = \"Homestead, Florida\"", "question": "how many times is the location is homestead, florida?", "context": "CREATE TABLE table_2696531_2 (pole_position VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_26998693_1 WHERE podiums = 9", "question": "What was the earliest season where podium was 9?", "context": "CREATE TABLE table_26998693_1 (season INTEGER, podiums VARCHAR)"}, {"answer": "SELECT f_laps FROM table_26998693_1 WHERE poles > 1.0 AND season = 2008", "question": "How much were the f/laps if poles is higher than 1.0 during 2008?", "context": "CREATE TABLE table_26998693_1 (f_laps VARCHAR, poles VARCHAR, season VARCHAR)"}, {"answer": "SELECT races FROM table_26998693_1 WHERE f_laps = 0 AND poles = 1", "question": "What races achieved 0 f/laps and 1 pole position?", "context": "CREATE TABLE table_26998693_1 (races VARCHAR, f_laps VARCHAR, poles VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_27091128_3 WHERE outgoing_manager = \"H\u00fcsn\u00fc \u00d6zkara\"", "question": "Who replaced the outgoing manager H\u00fcsn\u00fc \u00d6zkara? ", "context": "CREATE TABLE table_27091128_3 (replaced_by VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_27091128_3 WHERE team = \"Kartalspor\"", "question": "When was the date of vacancy for the manager of Kartalspor? ", "context": "CREATE TABLE table_27091128_3 (date_of_vacancy VARCHAR, team VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_27091128_3 WHERE team = \"Akhisar B.G.S.\"", "question": "Who replaced the manager of Akhisar B.G.S.?", "context": "CREATE TABLE table_27091128_3 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_27091128_3 WHERE replaced_by = \"Serhat G\u00fcller\"", "question": "Which team replaced their manager with Serhat G\u00fcller?", "context": "CREATE TABLE table_27091128_3 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT COUNT(total__number) FROM table_27155243_3 WHERE written_by = \"Sheri Elwood\" AND directed_by = \"Jim Allodi\"", "question": "How many different episode numbers does the episode written by Sheri Elwood and directed by Jim Allodi have?", "context": "CREATE TABLE table_27155243_3 (total__number VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(total__number) FROM table_27155243_3 WHERE directed_by = \"Sheri Elwood\"", "question": "How many different episode numbers are there for the episodes directed by Sheri Elwood?", "context": "CREATE TABLE table_27155243_3 (total__number VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_27208814_1 WHERE writer = \"Robin Mukherjee\" AND director = \"Margy Kinmonth\"", "question": "Name the original airdate for robin mukherjee and margy kinmonth", "context": "CREATE TABLE table_27208814_1 (original_airdate VARCHAR, writer VARCHAR, director VARCHAR)"}, {"answer": "SELECT 50 AS s FROM table_27268238_4 WHERE highest_score = \"88\"", "question": "If the highest score is 88, what are the 50s?", "context": "CREATE TABLE table_27268238_4 (highest_score VARCHAR)"}, {"answer": "SELECT highest_score FROM table_27268238_4 WHERE matches = 5 AND team = \"Worcestershire\"", "question": "If the team is Worcestershire and the Matched had were 5, what is the highest score?", "context": "CREATE TABLE table_27268238_4 (highest_score VARCHAR, matches VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(matches) FROM table_27268238_4", "question": "What is the smallest amount of matches?", "context": "CREATE TABLE table_27268238_4 (matches INTEGER)"}, {"answer": "SELECT average FROM table_27268238_4 WHERE team = \"Gloucestershire\"", "question": "If the team is Gloucestershire, what is the average?", "context": "CREATE TABLE table_27268238_4 (average VARCHAR, team VARCHAR)"}, {"answer": "SELECT highest_score FROM table_27268238_4 WHERE team = \"Sussex\"", "question": "What is the team Sussex' highest score?", "context": "CREATE TABLE table_27268238_4 (highest_score VARCHAR, team VARCHAR)"}, {"answer": "SELECT player FROM table_27268238_4 WHERE average = \"50.16\"", "question": "If the average is 50.16, who is the player?", "context": "CREATE TABLE table_27268238_4 (player VARCHAR, average VARCHAR)"}, {"answer": "SELECT pakistanis FROM table_27257896_2 WHERE working_force_of_hk = \"32.8%\"", "question": "If the working force of HK is 32.8%, what are the Pakistanis' %? ", "context": "CREATE TABLE table_27257896_2 (pakistanis VARCHAR, working_force_of_hk VARCHAR)"}, {"answer": "SELECT salary_range FROM table_27257896_2 WHERE indians = \"8.2%\"", "question": "If the Indians are 8.2%, what is the salary range?", "context": "CREATE TABLE table_27257896_2 (salary_range VARCHAR, indians VARCHAR)"}, {"answer": "SELECT salary_range FROM table_27257896_2 WHERE working_force_of_hk = \"10.4%\"", "question": "If the working force of HK is 10.4%, what is the salary range?", "context": "CREATE TABLE table_27257896_2 (salary_range VARCHAR, working_force_of_hk VARCHAR)"}, {"answer": "SELECT working_force_of_hk FROM table_27257896_2 WHERE nepalese = \"37.1%\"", "question": "If the nepalese is 37.1%, what is the working force of HK?", "context": "CREATE TABLE table_27257896_2 (working_force_of_hk VARCHAR, nepalese VARCHAR)"}, {"answer": "SELECT indians FROM table_27257896_2 WHERE salary_range = \"4,000-9,000\"", "question": "If the salary range is 4,000-9,000, what is the Indians %?", "context": "CREATE TABLE table_27257896_2 (indians VARCHAR, salary_range VARCHAR)"}, {"answer": "SELECT points FROM table_27293285_6 WHERE won = \"15\"", "question": "For teams that won exactly 15, how many points were scored?", "context": "CREATE TABLE table_27293285_6 (points VARCHAR, won VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_27293285_6 WHERE won = \"10\"", "question": "How many matches were drawn by the teams that won exactly 10?", "context": "CREATE TABLE table_27293285_6 (drawn VARCHAR, won VARCHAR)"}, {"answer": "SELECT points_for FROM table_27293285_6 WHERE won = \"22\"", "question": "How many points for were scored by the team that won exactly 22?", "context": "CREATE TABLE table_27293285_6 (points_for VARCHAR, won VARCHAR)"}, {"answer": "SELECT club FROM table_27293285_6 WHERE lost = \"7\"", "question": "Which club lost exactly 7 matches?", "context": "CREATE TABLE table_27293285_6 (club VARCHAR, lost VARCHAR)"}, {"answer": "SELECT won FROM table_27293285_6 WHERE tries_for = \"61\"", "question": "How many matches were won by the teams that scored exactly 61 tries for?", "context": "CREATE TABLE table_27293285_6 (won VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT tries_for FROM table_27293285_6 WHERE points_for = \"396\"", "question": "How many tries for were scored by the team that had exactly 396 points for?", "context": "CREATE TABLE table_27293285_6 (tries_for VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT format FROM table_27303975_2 WHERE title = \"Super Callanetics\"", "question": "Name the format for super callanetics", "context": "CREATE TABLE table_27303975_2 (format VARCHAR, title VARCHAR)"}, {"answer": "SELECT format FROM table_27303975_2 WHERE title = \"Quick Callanetics: Hips and Behind\"", "question": "Name the format for  quick callanetics: hips and behind", "context": "CREATE TABLE table_27303975_2 (format VARCHAR, title VARCHAR)"}, {"answer": "SELECT catalog_number FROM table_27303975_2 WHERE release_date = \"October 6, 1988\"", "question": "Name the catalog number for  october 6, 1988", "context": "CREATE TABLE table_27303975_2 (catalog_number VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT studio FROM table_27303975_2 WHERE title = \"Super Callanetics\"", "question": "Name the studio for super callanetics", "context": "CREATE TABLE table_27303975_2 (studio VARCHAR, title VARCHAR)"}, {"answer": "SELECT studio FROM table_27303975_2 WHERE catalog_number = \"81063\"", "question": "Name the studio for catalog number 81063", "context": "CREATE TABLE table_27303975_2 (studio VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT catalog_number FROM table_27303975_2 WHERE title = \"AM/PM Callanetics\"", "question": "Name the catalog number for am/pm callanetics", "context": "CREATE TABLE table_27303975_2 (catalog_number VARCHAR, title VARCHAR)"}, {"answer": "SELECT share___percentage_ FROM table_27319183_5 WHERE episode = \"Semi-final 2\"", "question": "What was the share (%) for the Semi-Final 2 episode? ", "context": "CREATE TABLE table_27319183_5 (share___percentage_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT official_itv1_hd_rating__millions_ FROM table_27319183_5 WHERE official_itv1_rating__millions_ = \"8.98\"", "question": "What was the official ITV1 HD rating in millions for the episode that had an official ITV1 rating of 8.98 million?", "context": "CREATE TABLE table_27319183_5 (official_itv1_hd_rating__millions_ VARCHAR, official_itv1_rating__millions_ VARCHAR)"}, {"answer": "SELECT date FROM table_27319183_5 WHERE share___percentage_ = \"41.5\"", "question": "When was the episode that had a share (%) of 41.5?", "context": "CREATE TABLE table_27319183_5 (date VARCHAR, share___percentage_ VARCHAR)"}, {"answer": "SELECT episode FROM table_27319183_5 WHERE official_itv1_hd_rating__millions_ = \"1.185\"", "question": "Which episode had an official ITV1 HD rating of 1.185 million? ", "context": "CREATE TABLE table_27319183_5 (episode VARCHAR, official_itv1_hd_rating__millions_ VARCHAR)"}, {"answer": "SELECT official_itv1_rating__millions_ FROM table_27319183_5 WHERE episode = \"Live final results\"", "question": "What was the official ITV1 rating in millions of the Live Final Results episode?", "context": "CREATE TABLE table_27319183_5 (official_itv1_rating__millions_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT total_itv1_viewers__millions_ FROM table_27319183_5 WHERE share___percentage_ = \"28.9\"", "question": "What was the total ITV1 viewers in millions for the episode with a share (%) of 28.9? ", "context": "CREATE TABLE table_27319183_5 (total_itv1_viewers__millions_ VARCHAR, share___percentage_ VARCHAR)"}, {"answer": "SELECT team_nickname FROM table_27361255_1 WHERE location = \"Adrian, Michigan\"", "question": "What is the nickname of the Adrian, Michigan team?", "context": "CREATE TABLE table_27361255_1 (team_nickname VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(primary_conference) FROM table_27361255_1 WHERE location = \"Allendale, Michigan\"", "question": "How many primary conferences were held in Allendale, Michigan?", "context": "CREATE TABLE table_27361255_1 (primary_conference VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_27361255_1 WHERE institution = \"Robert Morris University-Illinois\"", "question": "Where is Robert Morris University-Illinois held?", "context": "CREATE TABLE table_27361255_1 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_27361255_1 WHERE team_nickname = \"RedHawks\"", "question": "What is the enrollment for the Redhawks?", "context": "CREATE TABLE table_27361255_1 (enrollment VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT 2001 AS __percentage FROM table_273617_6 WHERE status = \"Widowed or surviving partner\"", "question": "what is the 2001 % for the status widowed or surviving partner?", "context": "CREATE TABLE table_273617_6 (status VARCHAR)"}, {"answer": "SELECT MIN(2011 AS _number__), 000 AS _ FROM table_273617_6", "question": "What is the lowest 2011 number (,000)?", "context": "CREATE TABLE table_273617_6 (Id VARCHAR)"}, {"answer": "SELECT 2011 AS _number__, 000 AS _ FROM table_273617_6 WHERE status = \"Separated\"", "question": "What is the 2011 number (,000) when the status is separated?", "context": "CREATE TABLE table_273617_6 (status VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_27374740_1 WHERE directed_by = \"Paul Adelstein\"", "question": "What number episode in the season was directed by Paul Adelstein? ", "context": "CREATE TABLE table_27374740_1 (no_in_season INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_27374740_1", "question": "What is the earliest numbered episode of the season?", "context": "CREATE TABLE table_27374740_1 (no_in_season INTEGER)"}, {"answer": "SELECT director FROM table_27423508_1 WHERE spanish_title = \"Tango Bar\"", "question": "Who was the director for Tango Bar?", "context": "CREATE TABLE table_27423508_1 (director VARCHAR, spanish_title VARCHAR)"}, {"answer": "SELECT english_title FROM table_27423508_1 WHERE result = \"Nominee\"", "question": "What was the English title fo the film that was a nominee?", "context": "CREATE TABLE table_27423508_1 (english_title VARCHAR, result VARCHAR)"}, {"answer": "SELECT english_title FROM table_27423508_1 WHERE spanish_title = \"Ladrones y mentirosos\"", "question": "What was the English title of Ladrones Y Mentirosos?", "context": "CREATE TABLE table_27423508_1 (english_title VARCHAR, spanish_title VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_27441210_6 WHERE weeks_at__number1 = 8", "question": "How many years have a weeks at #1 value of exactly 8?", "context": "CREATE TABLE table_27441210_6 (year VARCHAR, weeks_at__number1 VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_27495117_3 WHERE outgoing_manager = \"Alfredo Merino\"", "question": "What is the position for outgoing manager alfredo merino", "context": "CREATE TABLE table_27495117_3 (position_in_table VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_27495117_3 WHERE date_of_appointment = \"11 April 2011\"", "question": "how many teams had an appointment date of 11 april 2011", "context": "CREATE TABLE table_27495117_3 (team VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_27495117_3 WHERE outgoing_manager = \"Luis C\u00e9sar Sampedro\"", "question": "what was the appointment date for outgoing manager luis c\u00e9sar sampedro", "context": "CREATE TABLE table_27495117_3 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_27495117_3 WHERE date_of_appointment = \"21 September 2010\"", "question": "What was the manner of departure for the appointment date of 21 september 2010", "context": "CREATE TABLE table_27495117_3 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_27495117_3 WHERE date_of_appointment = \"17 January 2011\"", "question": "What was the position of appointment date 17 january 2011", "context": "CREATE TABLE table_27495117_3 (position_in_table VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT COUNT(manner_of_departure) FROM table_27495117_3 WHERE outgoing_manager = \"Antonio G\u00f3mez\"", "question": "How many teams had an outgoing manager of antonio g\u00f3mez", "context": "CREATE TABLE table_27495117_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_27501030_3 WHERE opponent = \"Florida Panthers\"", "question": "What was the score for the opponent florida panthers?", "context": "CREATE TABLE table_27501030_3 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT ab_ripper_x FROM table_27512025_1 WHERE length = \"92:24\"", "question": "What is the ab ripper x when the length is 92:24?", "context": "CREATE TABLE table_27512025_1 (ab_ripper_x VARCHAR, length VARCHAR)"}, {"answer": "SELECT COUNT(program) FROM table_27512025_1 WHERE type = \"Cardio\"", "question": "How many types are cardio?", "context": "CREATE TABLE table_27512025_1 (program VARCHAR, type VARCHAR)"}, {"answer": "SELECT ab_ripper_x FROM table_27512025_1 WHERE exercise = \"X Stretch\"", "question": "What is the ab ripper x when exercise is x stretch?", "context": "CREATE TABLE table_27512025_1 (ab_ripper_x VARCHAR, exercise VARCHAR)"}, {"answer": "SELECT week FROM table_27512025_1 WHERE type = \"Cardio Workout\"", "question": "What is the week when type is cardio workout?", "context": "CREATE TABLE table_27512025_1 (week VARCHAR, type VARCHAR)"}, {"answer": "SELECT exercise FROM table_27512025_1 WHERE equipment = \"Heart rate monitor, water and towel\"", "question": "What is the exercise when the equipment is heart rate monitor, water and towel?", "context": "CREATE TABLE table_27512025_1 (exercise VARCHAR, equipment VARCHAR)"}, {"answer": "SELECT score FROM table_27537870_5 WHERE game = 29", "question": "Name the score for 29 game", "context": "CREATE TABLE table_27537870_5 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_27537870_5 WHERE record = \"10-13-3\"", "question": "Name the opponent for record 10-13-3", "context": "CREATE TABLE table_27537870_5 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT december FROM table_27537870_5 WHERE record = \"14-17-4\"", "question": "Name the december for record 14-17-4", "context": "CREATE TABLE table_27537870_5 (december VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(december) FROM table_27537870_5 WHERE location_attendance = \"HSBC Arena/18,017\"", "question": "Name the least december for hsbc arena/18,017", "context": "CREATE TABLE table_27537870_5 (december INTEGER, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_27537870_5 WHERE score = \"2-6\"", "question": "Name the number of game 2-6", "context": "CREATE TABLE table_27537870_5 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(november) FROM table_27539535_4 WHERE game = 20", "question": "What is the highest entry in November for the game 20?", "context": "CREATE TABLE table_27539535_4 (november INTEGER, game VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_27539535_4 WHERE score = \"1-0\"", "question": "What is the least entry for game if the score is 1-0?", "context": "CREATE TABLE table_27539535_4 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT game FROM table_27539535_4 WHERE november = 21", "question": "What is every game on November 21?", "context": "CREATE TABLE table_27539535_4 (game VARCHAR, november VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_27539535_4", "question": "What is the highest amount of points?", "context": "CREATE TABLE table_27539535_4 (points INTEGER)"}, {"answer": "SELECT record FROM table_27539535_4 WHERE game = 13", "question": "What is every record for game 13?", "context": "CREATE TABLE table_27539535_4 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_27539535_4", "question": "What is the least amount of points?", "context": "CREATE TABLE table_27539535_4 (points INTEGER)"}, {"answer": "SELECT opponent FROM table_27539272_5 WHERE game = 14", "question": "who was the opponent where the game is 14?", "context": "CREATE TABLE table_27539272_5 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_27539272_5 WHERE score = \"1-3\"", "question": "what is the total number of locations that had a score of 1-3?", "context": "CREATE TABLE table_27539272_5 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_27539272_5", "question": "what is the maximum number of points?", "context": "CREATE TABLE table_27539272_5 (points INTEGER)"}, {"answer": "SELECT record FROM table_27539272_5 WHERE score = \"5-3\"", "question": "what is the record that had a score of 5-3?", "context": "CREATE TABLE table_27539272_5 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_27539272_5 WHERE score = \"1-3\"", "question": "what is the record for score 1-3?", "context": "CREATE TABLE table_27539272_5 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(original_airdate) FROM table_27547668_4 WHERE written_by = \"Allan Hawco\"", "question": "what is the number of original airdate written by allan hawco?", "context": "CREATE TABLE table_27547668_4 (original_airdate VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_27547668_4 WHERE written_by = \"John Callaghan\"", "question": "what is the total number of films directy and written by john callaghan?", "context": "CREATE TABLE table_27547668_4 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_27552095_27 WHERE date = \"October 3, 2010\"", "question": "How many times was the date october 3, 2010?", "context": "CREATE TABLE table_27552095_27 (player VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(institution) FROM table_27599216_6 WHERE football_stadium = \"Mosaic Stadium\"", "question": "How many institutions are shown for the football stadium of mosaic stadium?", "context": "CREATE TABLE table_27599216_6 (institution VARCHAR, football_stadium VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_27599216_6 WHERE football_stadium = \"McMahon Stadium\"", "question": "What year was mcmahon stadium founded?", "context": "CREATE TABLE table_27599216_6 (founded INTEGER, football_stadium VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_27599216_6 WHERE team = \"Dinos\"", "question": "What is the year founded for the team Dinos?", "context": "CREATE TABLE table_27599216_6 (founded INTEGER, team VARCHAR)"}, {"answer": "SELECT capacity FROM table_27599216_6 WHERE institution = \"University of Alberta\"", "question": "What is the capacity for the  institution of university of alberta?", "context": "CREATE TABLE table_27599216_6 (capacity VARCHAR, institution VARCHAR)"}, {"answer": "SELECT institution FROM table_27599216_6 WHERE endowment = \"$25.9M\"", "question": "Which institution has an endowment of $25.9m?", "context": "CREATE TABLE table_27599216_6 (institution VARCHAR, endowment VARCHAR)"}, {"answer": "SELECT COUNT(latency__microseconds_) FROM table_27615520_1 WHERE product_name = \"RamSan-810\"", "question": "What is the ramsan-810 transfer delay?", "context": "CREATE TABLE table_27615520_1 (latency__microseconds_ VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT form_factor FROM table_27615520_1 WHERE bandwidth__gb_s_ = \"10\"", "question": "What is the shape distortion for the range frequency of 10?", "context": "CREATE TABLE table_27615520_1 (form_factor VARCHAR, bandwidth__gb_s_ VARCHAR)"}, {"answer": "SELECT COUNT(storage_medium) FROM table_27615520_1 WHERE product_name = \"RamSan-720\"", "question": "List the number of ramsan-720 hard drives?", "context": "CREATE TABLE table_27615520_1 (storage_medium VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT form_factor FROM table_27615520_1 WHERE product_name = \"RamSan-630\"", "question": "List the range distroration for the ramsan-630", "context": "CREATE TABLE table_27615520_1 (form_factor VARCHAR, product_name VARCHAR)"}, {"answer": "SELECT speed___iops__ FROM table_27615520_1 WHERE storage_medium = \"eMLC Flash\"", "question": "What is the Input/output operations per second for the emlc flash?", "context": "CREATE TABLE table_27615520_1 (speed___iops__ VARCHAR, storage_medium VARCHAR)"}, {"answer": "SELECT score FROM table_27698941_6 WHERE record = \"3\u201312\"", "question": "What is the score for the game with the record of 3\u201312?", "context": "CREATE TABLE table_27698941_6 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT game FROM table_27698941_6 WHERE score = \"L 90\u2013106 (OT)\"", "question": "What is the game number for the game with a score of l 90\u2013106 (ot)?", "context": "CREATE TABLE table_27698941_6 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_27698941_6 WHERE high_rebounds = \"Andre Iguodala (9)\"", "question": "How many games are shown for the game where andre iguodala (9) had the high rebounds?", "context": "CREATE TABLE table_27698941_6 (game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27700530_14 WHERE date = \"April 1\"", "question": "Who had the most the most rebounds and how many did they have on April 1?", "context": "CREATE TABLE table_27700530_14 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27700530_14 WHERE date = \"April 3\"", "question": "Where was the game and what was the attendance on April 3? ", "context": "CREATE TABLE table_27700530_14 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_27704187_8 WHERE game = 35", "question": "How many high rebounds are listed for game 35?", "context": "CREATE TABLE table_27704187_8 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT long_ranged_weapons FROM table_27704991_1 WHERE close_ranged_weapons = \"Knife (stone), Knife (iron)\"", "question": "If the Close ranged weapons are the knife (stone), knife (iron), what are the Long ranged weapons?", "context": "CREATE TABLE table_27704991_1 (long_ranged_weapons VARCHAR, close_ranged_weapons VARCHAR)"}, {"answer": "SELECT armor FROM table_27704991_1 WHERE special_weapon = \"Grenado\"", "question": "If the special weapon is the Grenado, what is the armor?", "context": "CREATE TABLE table_27704991_1 (armor VARCHAR, special_weapon VARCHAR)"}, {"answer": "SELECT close_ranged_weapons FROM table_27704991_1 WHERE armor = \"Bronze cuirass , Linothorax\"", "question": "If the armor is bronze cuirass , linothorax, what are the close ranged weapons?", "context": "CREATE TABLE table_27704991_1 (close_ranged_weapons VARCHAR, armor VARCHAR)"}, {"answer": "SELECT close_ranged_weapons FROM table_27704991_1 WHERE special_weapon = \"Glass egg\"", "question": "If the special weapon is glass egg, what is the close ranged weapon?", "context": "CREATE TABLE table_27704991_1 (close_ranged_weapons VARCHAR, special_weapon VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27712702_8 WHERE date = \"December 12\"", "question": "Who had the high rebounds record on December 12?", "context": "CREATE TABLE table_27712702_8 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_27712702_8 WHERE date = \"December 27\"", "question": "What was the record on December 27?", "context": "CREATE TABLE table_27712702_8 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_27713583_6 WHERE team = \"Washington\"", "question": "What game number is the Washington team.", "context": "CREATE TABLE table_27713583_6 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27713583_11 WHERE date = \"April 5\"", "question": "Name the location attendance april 5", "context": "CREATE TABLE table_27713583_11 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27713583_11 WHERE location_attendance = \"Madison Square Garden 19,763\" AND record = \"39\u201338\"", "question": "Name the high assists for madison square garden 19,763 and record is 39\u201338", "context": "CREATE TABLE table_27713583_11 (high_assists VARCHAR, location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_27713583_11 WHERE team = \"Cleveland\"", "question": "Name the date for cleveland", "context": "CREATE TABLE table_27713583_11 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27720737_1 WHERE us_viewers__million_ = \"5.39\"", "question": "What is the original air date when the u.s. viewers in millions was 5.39?", "context": "CREATE TABLE table_27720737_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_27720737_1 WHERE series__number = 8", "question": "What is the title of the series # 8?", "context": "CREATE TABLE table_27720737_1 (title VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_27720737_1 WHERE directed_by = \"Ken Whittingham\"", "question": "What is the highest series # directed by ken whittingham?", "context": "CREATE TABLE table_27720737_1 (series__number INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_27720737_1 WHERE production_code = 120", "question": "How many episodes had a production code 120?", "context": "CREATE TABLE table_27720737_1 (series__number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27722408_2 WHERE date = \"October 16\"", "question": "Who had the most rebounds and how many did they have on October 16?", "context": "CREATE TABLE table_27722408_2 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27722408_2 WHERE date = \"October 7\"", "question": "Who had the most assists and how many did they have on October 7? ", "context": "CREATE TABLE table_27722408_2 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_27723228_3 WHERE game = 4", "question": "What team did the Hornets play in game 4?", "context": "CREATE TABLE table_27723228_3 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27723526_12 WHERE score = \"L 103\u2013104 (OT)\"", "question": "Name the high assists for  l 103\u2013104 (ot)", "context": "CREATE TABLE table_27723526_12 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_points FROM table_27723526_12 WHERE date = \"March 30\"", "question": "Name the high points for march 30", "context": "CREATE TABLE table_27723526_12 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_27723526_12 WHERE high_assists = \"Jos\u00e9 Juan Barea (8)\"", "question": "Name the score for  jos\u00e9 juan barea (8)", "context": "CREATE TABLE table_27723526_12 (score VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_27723526_13 WHERE date = \"April 3\"", "question": "What is the game number played on April 3?", "context": "CREATE TABLE table_27723526_13 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT record FROM table_27723526_13 WHERE team = \"Phoenix\"", "question": "What is the record after the Phoenix game?", "context": "CREATE TABLE table_27723526_13 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_27733258_2 WHERE high_rebounds = \"Robin Lopez (10)\"", "question": "How many games had Robin Lopez (10) for the most rebounds?", "context": "CREATE TABLE table_27733258_2 (game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27733258_2 WHERE date = \"October 14\"", "question": "What two players had the highest rebounds for the October 14 game?", "context": "CREATE TABLE table_27733258_2 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_27733909_7 WHERE date = \"January 17\"", "question": "Name the team for january 17", "context": "CREATE TABLE table_27733909_7 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_27733909_7 WHERE score = \"L 102\u2013122 (OT)\"", "question": "Name the team for score l 102\u2013122 (ot)", "context": "CREATE TABLE table_27733909_7 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_27733909_7 WHERE date = \"January 5\"", "question": "Name the number of high rebounds for january 5", "context": "CREATE TABLE table_27733909_7 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_27753492_2 WHERE tour = \"Korea Super Series\"", "question": "Who is the mixed doubled on the tour korea super series?", "context": "CREATE TABLE table_27753492_2 (mixed_doubles VARCHAR, tour VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_27753492_2 WHERE mixed_doubles = \"Sudket Prapakamol Saralee Thungthongkam\"", "question": "Who is the women's doubles when the mixed doubles are sudket prapakamol saralee thungthongkam?", "context": "CREATE TABLE table_27753492_2 (womens_doubles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_27753492_2 WHERE mixed_doubles = \"Zhang Nan Zhao Yunlei\" AND tour = \"All England Super Series\"", "question": "Who were the womens doubles when the mixed doubles were zhang nan zhao yunlei on the tour all england super series?", "context": "CREATE TABLE table_27753492_2 (womens_doubles VARCHAR, mixed_doubles VARCHAR, tour VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_27753492_2 WHERE tour = \"French Super Series\"", "question": "Who is the womens doubles on the tour french super series?", "context": "CREATE TABLE table_27753492_2 (womens_doubles VARCHAR, tour VARCHAR)"}, {"answer": "SELECT score FROM table_27756314_11 WHERE high_points = \"Michael Beasley (26)\"", "question": "What was the score in the game in which Michael Beasley (26) did the high points?", "context": "CREATE TABLE table_27756314_11 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27756314_11 WHERE date = \"April 6\"", "question": "Who did the most high rebounds on April 6?", "context": "CREATE TABLE table_27756314_11 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_27756314_11 WHERE game = 76", "question": "How many different results for high rebounds were there for game number 76?", "context": "CREATE TABLE table_27756314_11 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_27756314_11 WHERE high_assists = \"Luke Ridnour (5)\"", "question": "In how many different games did Luke Ridnour (5) did the most high assists?", "context": "CREATE TABLE table_27756314_11 (game VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_points FROM table_27756314_8 WHERE team = \"Charlotte\"", "question": "Who had the high points when the team was charlotte?", "context": "CREATE TABLE table_27756314_8 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_27756314_8 WHERE team = \"@ L.A. Clippers\"", "question": "What is the highest game with team @ l.a. clippers?", "context": "CREATE TABLE table_27756314_8 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT date FROM table_27756314_8 WHERE team = \"Orlando\"", "question": "What is the date for the game with team orlando?", "context": "CREATE TABLE table_27756314_8 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_27756314_8 WHERE high_points = \"Kevin Love (22)\"", "question": "How many times did kevin love (22) have the high points?", "context": "CREATE TABLE table_27756314_8 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT date FROM table_27756314_8 WHERE game = 35", "question": "What is the date for the game 35?", "context": "CREATE TABLE table_27756314_8 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27811555_1 WHERE us_viewers__millions_ = \"6.3\"", "question": "who directed the episode that 6.3 million u.s. viewers saw?", "context": "CREATE TABLE table_27811555_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2781227_1 WHERE player = \"Mats Lindgren\"", "question": "What is the college/junior/club team name of player Mats Lindgren?", "context": "CREATE TABLE table_2781227_1 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(nhl_team) FROM table_2781227_1 WHERE player = \"Denis Pederson\"", "question": "How many NHL teams is Denis Pederson a draft pick for?", "context": "CREATE TABLE table_2781227_1 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT written_by FROM table_27823359_1 WHERE season__number = \"23\"", "question": "Who wrote episode 23 in the season?", "context": "CREATE TABLE table_27823359_1 (written_by VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27882867_9 WHERE team = \"Milwaukee\"", "question": "Where was the location and attendance when they played milwaukee?", "context": "CREATE TABLE table_27882867_9 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_27882867_9 WHERE high_assists = \"G. Rivers (5)\"", "question": "What was the date of the game when g. rivers (5) had the  high assists?", "context": "CREATE TABLE table_27882867_9 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_27882867_9 WHERE high_assists = \"A. Webb (7)\"", "question": "How many people had the high points when a. webb (7) had the high assists?", "context": "CREATE TABLE table_27882867_9 (high_points VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT date FROM table_27882867_9 WHERE score = \"W 104-98\"", "question": "What date was the game score w 104-98?", "context": "CREATE TABLE table_27882867_9 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27882867_9 WHERE team = \"Indiana\"", "question": "Who had the high assists when the opponent was Indiana?", "context": "CREATE TABLE table_27882867_9 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27882867_9 WHERE high_points = \"D. Wilkins (29)\"", "question": "What was the location and attendance when d. wilkins (29) had the high points?", "context": "CREATE TABLE table_27882867_9 (location_attendance VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27902171_7 WHERE high_rebounds = \"B. Benjamin (10)\"", "question": "What is the location and attendance for the game where b. benjamin (10) had the high rebounds?", "context": "CREATE TABLE table_27902171_7 (location_attendance VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_27902171_7 WHERE location_attendance = \"Delta Center 19,911\"", "question": "What dated was the game played at the location delta center 19,911?", "context": "CREATE TABLE table_27902171_7 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_27902171_7 WHERE score = \"W 95-85\"", "question": "Which game had a score of w 95-85?", "context": "CREATE TABLE table_27902171_7 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT high_points FROM table_27902171_7 WHERE score = \"W 112-110\"", "question": "Who had the high points when the score was w 112-110?", "context": "CREATE TABLE table_27902171_7 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_27902171_7 WHERE location_attendance = \"Seattle Center Coliseum 12,126\"", "question": "What date was the game played in seattle center coliseum 12,126?", "context": "CREATE TABLE table_27902171_7 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_27988382_1 WHERE no_in_season = 8", "question": "How many production codes had a total number in the season of 8?", "context": "CREATE TABLE table_27988382_1 (production_code VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(rank_timeslot_) FROM table_27987623_4 WHERE airdate = \"March 30, 2011\"", "question": "what is the total rank on airdate march 30, 2011?", "context": "CREATE TABLE table_27987623_4 (rank_timeslot_ VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT previous_club FROM table_27998152_1 WHERE name = \"Ben Williams\"", "question": "for the ben williams name what was the previous club", "context": "CREATE TABLE table_27998152_1 (previous_club VARCHAR, name VARCHAR)"}, {"answer": "SELECT fee FROM table_27998152_1 WHERE previous_club = \"Ankarag\u00fcc\u00fc\"", "question": "what is the fee for ankarag\u00fcc\u00fc previous club", "context": "CREATE TABLE table_27998152_1 (fee VARCHAR, previous_club VARCHAR)"}, {"answer": "SELECT COUNT(date_of_birth) FROM table_27998152_1 WHERE previous_club = \"Chelsea\"", "question": "how many date of birts are if the previous club is chelsea", "context": "CREATE TABLE table_27998152_1 (date_of_birth VARCHAR, previous_club VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_27998152_1 WHERE no = 7", "question": "for the no. 7 what is the date of birth", "context": "CREATE TABLE table_27998152_1 (date_of_birth VARCHAR, no VARCHAR)"}, {"answer": "SELECT COUNT(rank__week_) FROM table_28026156_1 WHERE written_by = \"Seth Hoffman, Russel Friend & Garrett Lerner\"", "question": "How many episodes were written by seth hoffman, russel friend & garrett lerner?", "context": "CREATE TABLE table_28026156_1 (rank__week_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT rank__week_ FROM table_28026156_1 WHERE written_by = \"Thomas L. Moran\"", "question": "Where did the episode rank that was written by thomas l. moran?", "context": "CREATE TABLE table_28026156_1 (rank__week_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_28138035_15 WHERE mens_singles = \"Ma Lin\"", "question": "Who won Womens Singles in the year that Ma Lin won Mens Singles?", "context": "CREATE TABLE table_28138035_15 (womens_singles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT year_location FROM table_28138035_33 WHERE womens_doubles = \"Bai Yang Niu Jianfeng\"", "question": "What is the place and when was the year when the women's doubles womens were Bai yang Niu Jianfeng?", "context": "CREATE TABLE table_28138035_33 (year_location VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT COUNT(mens_doubles) FROM table_28138035_33 WHERE mens_singles = \"Ma Long\"", "question": "How many times has Ma Long won the men's singles?", "context": "CREATE TABLE table_28138035_33 (mens_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT COUNT(mens_doubles) FROM table_28138035_33 WHERE womens_singles = \"Sun Jin\"", "question": "How many times has Sun Jin won the women's doubles?", "context": "CREATE TABLE table_28138035_33 (mens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT COUNT(artist) FROM table_28140141_1 WHERE show = \"Thoroughly Modern Millie\"", "question": "How many artists were there for the show thoroughly modern millie?", "context": "CREATE TABLE table_28140141_1 (artist VARCHAR, show VARCHAR)"}, {"answer": "SELECT COUNT(difficulty) FROM table_28140141_1 WHERE year = 1994", "question": "How many shows were in 1994?", "context": "CREATE TABLE table_28140141_1 (difficulty VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_28190534_1 WHERE entrant = \"Ecurie Lutetia\"", "question": "Name the engine for ecurie lutetia", "context": "CREATE TABLE table_28190534_1 (engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT chassis FROM table_28190534_1 WHERE entrant = \"SFACS Ecurie France\"", "question": "Name the chassis for sfacs ecurie france", "context": "CREATE TABLE table_28190534_1 (chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT constructor FROM table_28190534_1 WHERE driver = \"B. Bira\"", "question": "Name the constructor for b. bira", "context": "CREATE TABLE table_28190534_1 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_28190534_1 WHERE no = 10", "question": "Name the constructor for number 10", "context": "CREATE TABLE table_28190534_1 (constructor VARCHAR, no VARCHAR)"}, {"answer": "SELECT chassis FROM table_28190534_1 WHERE driver = \"B. Bira\"", "question": "Name the chassis for b. bira", "context": "CREATE TABLE table_28190534_1 (chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_2818164_8 WHERE directed_by = \"Art Dielhenn\"", "question": "the episode directed by art dielhenn was what number in the series? ", "context": "CREATE TABLE table_2818164_8 (no_in_series VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_28195898_1 WHERE directed_by = \"Nick Marck\"", "question": "Who wrote the episode which was directed by Nick Marck?", "context": "CREATE TABLE table_28195898_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT _number FROM table_28195898_1 WHERE production_code = \"4ABB07\"", "question": "What is the season 4 # for the production code of 4abb07?", "context": "CREATE TABLE table_28195898_1 (_number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_28195898_1 WHERE \u2116 = 65", "question": "What is the title of episode No. 65?", "context": "CREATE TABLE table_28195898_1 (title VARCHAR, \u2116 VARCHAR)"}, {"answer": "SELECT production_code FROM table_28195898_1 WHERE us_viewers__millions_ = \"5.5\"", "question": "What is the production code for the episode with 5.5 million u.s. viewers?", "context": "CREATE TABLE table_28195898_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN AS \u2116 FROM table_28195898_1 WHERE _number = 18", "question": "What is the series No when the season 4 # is 18?", "context": "CREATE TABLE table_28195898_1 (MIN VARCHAR, _number VARCHAR)"}, {"answer": "SELECT u21_mens FROM table_28211674_3 WHERE mixed_restricted = \"Mike Marsden\" AND u21_womens = \"Claire Nelson\"", "question": "Who was the U21 Mens winner when Mike Marsden was the mixed restricted winner and Claire Nelson was the U21 Womens winner? ", "context": "CREATE TABLE table_28211674_3 (u21_mens VARCHAR, mixed_restricted VARCHAR, u21_womens VARCHAR)"}, {"answer": "SELECT mixed_veteran FROM table_28211674_3 WHERE womens_singles = \"Naomi Owen\" AND mens_singles = \"Ricardo Walther\"", "question": "When Naomi Owen won the Womens Singles and Ricardo Walther won the Mens Singles, who won the mixed veteran?", "context": "CREATE TABLE table_28211674_3 (mixed_veteran VARCHAR, womens_singles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mixed_restricted FROM table_28211674_3 WHERE mixed_veteran = \"Tomasz Rzeszotko\" AND u21_womens = \"Karina Le Fevre\"", "question": "Who won the mixed restricted when Tomasz Rzeszotko won the mixed veteran and Karina Le Fevre won the U21 womens?", "context": "CREATE TABLE table_28211674_3 (mixed_restricted VARCHAR, mixed_veteran VARCHAR, u21_womens VARCHAR)"}, {"answer": "SELECT COUNT(date_location) FROM table_28211674_3 WHERE mixed_veteran = \"Eddie Smith\"", "question": "When and where did Eddie Smith win the mixed veteran?", "context": "CREATE TABLE table_28211674_3 (date_location VARCHAR, mixed_veteran VARCHAR)"}, {"answer": "SELECT mixed_restricted FROM table_28211674_3 WHERE mens_singles = \"Matt Ware\"", "question": "When Matt Ware won the mens singles, who won the mixed restricted?", "context": "CREATE TABLE table_28211674_3 (mixed_restricted VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mixed_restricted FROM table_28211674_3 WHERE mixed_veteran = \"Paul Whiting\"", "question": "When Paul Whiting won the mixed veteran, who won the mixed restricted?", "context": "CREATE TABLE table_28211674_3 (mixed_restricted VARCHAR, mixed_veteran VARCHAR)"}, {"answer": "SELECT COUNT(winner) FROM table_28211103_1 WHERE st_kilda_score = \"14.11.95\"", "question": "How many winners have st kilda score at 14.11.95?", "context": "CREATE TABLE table_28211103_1 (winner VARCHAR, st_kilda_score VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_28211103_1 WHERE hawthorn_score = \"17.7.109\"", "question": "What the listed in round when the hawthorn score is 17.7.109?", "context": "CREATE TABLE table_28211103_1 (round INTEGER, hawthorn_score VARCHAR)"}, {"answer": "SELECT attendance FROM table_28211103_1 WHERE hawthorn_score = \"18.15.123\"", "question": "What is the attendance when the hawthorn score is 18.15.123?", "context": "CREATE TABLE table_28211103_1 (attendance VARCHAR, hawthorn_score VARCHAR)"}, {"answer": "SELECT hawthorn_score FROM table_28211103_1 WHERE year = 2000", "question": "What is the hawthorn score at the year 2000?", "context": "CREATE TABLE table_28211103_1 (hawthorn_score VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner FROM table_28211103_1 WHERE st_kilda_score = \"13.10.88\"", "question": "Who is the winner when the st kilda score is 13.10.88?", "context": "CREATE TABLE table_28211103_1 (winner VARCHAR, st_kilda_score VARCHAR)"}, {"answer": "SELECT attendance FROM table_28211103_1 WHERE st_kilda_score = \"13.10.88\"", "question": "What is the attendance when the st kilda score is 13.10.88?", "context": "CREATE TABLE table_28211103_1 (attendance VARCHAR, st_kilda_score VARCHAR)"}, {"answer": "SELECT COUNT(cap_s_) FROM table_28286776_52 WHERE club_s_ = \"Doncaster Rovers\"", "question": "How many caps figures for the Doncaster Rovers?", "context": "CREATE TABLE table_28286776_52 (cap_s_ VARCHAR, club_s_ VARCHAR)"}, {"answer": "SELECT COUNT(cap_s_) FROM table_28286776_52 WHERE club_s_ = \"Norwich City, Coventry City\"", "question": "How many caps figures are there for Norwich City, Coventry City?", "context": "CREATE TABLE table_28286776_52 (cap_s_ VARCHAR, club_s_ VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_28286776_52 WHERE goal_s_ = 8", "question": "How many players had 8 goals?", "context": "CREATE TABLE table_28286776_52 (player VARCHAR, goal_s_ VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_2840500_1 WHERE nationality = \"Czech Republic\"", "question": "How many positions does the draft pick whose nationality is Czech Republic play?", "context": "CREATE TABLE table_2840500_1 (position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_2840500_1 WHERE player = \"Ric Jackman\"", "question": "What draft pick number was Ric Jackman?", "context": "CREATE TABLE table_2840500_1 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_2840500_4 WHERE player = \"Matt Bradley\"", "question": "How many draft pick positions did Matt Bradley have?", "context": "CREATE TABLE table_2840500_4 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_2840500_4 WHERE college_junior_club_team = \"Reipas Lahti (Finland)\"", "question": "How many players came from college team reipas lahti (finland)?", "context": "CREATE TABLE table_2840500_4 (player VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_2840500_4 WHERE player = \"Antti-Jussi Niemi\"", "question": "What position does Antti-Jussi Niemi play?", "context": "CREATE TABLE table_2840500_4 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_2840500_4 WHERE college_junior_club_team = \"Lake Superior State University (NCAA)\"", "question": "What position does that draft pick play from Lake Superior State University (NCAA)?", "context": "CREATE TABLE table_2840500_4 (position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_2840500_4 WHERE player = \"Christian Lefebvre\"", "question": "What is the nationality of Christian Lefebvre?", "context": "CREATE TABLE table_2840500_4 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_2840500_8 WHERE player = \"Ryan Mckie\"", "question": "Name the number of nationalities for ryan mckie", "context": "CREATE TABLE table_2840500_8 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick FROM table_2840500_8 WHERE player = \"Matthew Scorsune\"", "question": "Name the pick for matthew scorsune", "context": "CREATE TABLE table_2840500_8 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2840500_8 WHERE player = \"Andrej Podkonicky\"", "question": "Name the college for andrej podkonicky", "context": "CREATE TABLE table_2840500_8 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_2840500_8 WHERE player = \"Evgeny Korolev\"", "question": "Name the most pick for evgeny korolev", "context": "CREATE TABLE table_2840500_8 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT coastal_carolina_head_coach FROM table_28418916_3 WHERE year = 2013", "question": "Who was the coastal Carolina head coach in 2013?", "context": "CREATE TABLE table_28418916_3 (coastal_carolina_head_coach VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(opponents_head_coach) FROM table_28418916_3 WHERE fbs_opponent = \"Kent State Golden Flashes\"", "question": "How many head coaches did Kent state golden flashes have?", "context": "CREATE TABLE table_28418916_3 (opponents_head_coach VARCHAR, fbs_opponent VARCHAR)"}, {"answer": "SELECT result FROM table_28418916_3 WHERE opponents_conference = \"MAC (East)\"", "question": "What was the result when then opponents conference was Mac (east)?", "context": "CREATE TABLE table_28418916_3 (result VARCHAR, opponents_conference VARCHAR)"}, {"answer": "SELECT nationality FROM table_2850912_1 WHERE nhl_team = \"Minnesota North Stars\"", "question": "What nationality is the draft pick player going to Minnesota North Stars?", "context": "CREATE TABLE table_2850912_1 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2850912_1 WHERE college_junior_club_team = \"Regina Pats (WHL)\"", "question": "What daft pick number is the player coming from Regina Pats (WHL)?", "context": "CREATE TABLE table_2850912_1 (pick__number VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_2850912_1 WHERE pick__number = 17", "question": "What player is draft pick 17?", "context": "CREATE TABLE table_2850912_1 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2850912_1 WHERE pick__number = 18", "question": "What college team did draft pick 18 come from?", "context": "CREATE TABLE table_2850912_1 (college_junior_club_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_28498999_5 WHERE player = \"Phil Mickelson\"", "question": "How many times is  a to par listed when the player is phil mickelson?", "context": "CREATE TABLE table_28498999_5 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_28498999_5 WHERE player = \"Matt Kuchar\"", "question": "What is the score when the player is Matt Kuchar?", "context": "CREATE TABLE table_28498999_5 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_28498999_5 WHERE score = 68 - 70 - 68 - 69 = 275", "question": "What is the player listed when the score is 68-70-68-69=275", "context": "CREATE TABLE table_28498999_5 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT _number FROM table_28498999_5 WHERE score = 70 - 69 - 69 - 70 = 278", "question": "What is the # listed when the score is 70-69-69-70=278?", "context": "CREATE TABLE table_28498999_5 (_number VARCHAR, score VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2850912_12 WHERE nhl_team = \"Winnipeg Jets\"", "question": "To which organziation does the  winnipeg jets belong to?", "context": "CREATE TABLE table_2850912_12 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_2850912_12 WHERE player = \"Allister Brown\"", "question": "What position does allister brown play.", "context": "CREATE TABLE table_2850912_12 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_2850912_12 WHERE college_junior_club_team = \"Springfield Olympics (NEJHL)\"", "question": "What selection was the springfield olympics (nejhl)?", "context": "CREATE TABLE table_2850912_12 (pick__number INTEGER, college_junior_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_2850912_12 WHERE college_junior_club_team = \"Bryn\u00e4s IF (Sweden)\"", "question": "List the players for team bryn\u00e4s if (sweden).", "context": "CREATE TABLE table_2850912_12 (player VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2850912_12 WHERE nhl_team = \"New Jersey Devils\"", "question": "Which draft number did the new jersey devils get?", "context": "CREATE TABLE table_2850912_12 (pick__number VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT cuts_made FROM table_28540609_2 WHERE earnings__\u20ac_ = 210408", "question": "How many cuts did the player who earned 210408 Euro make?", "context": "CREATE TABLE table_28540609_2 (cuts_made VARCHAR, earnings__\u20ac_ VARCHAR)"}, {"answer": "SELECT cuts_made FROM table_28540609_2 WHERE player = \"Gary Clark\"", "question": "How many cuts did Gary Clark make?", "context": "CREATE TABLE table_28540609_2 (cuts_made VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_28540609_2 WHERE starts = 26", "question": "Which player made exactly 26 starts?", "context": "CREATE TABLE table_28540609_2 (player VARCHAR, starts VARCHAR)"}, {"answer": "SELECT cuts_made FROM table_28540609_2 WHERE player = \"Bernd Wiesberger\"", "question": "How many cuts did Bernd Wiesberger make?", "context": "CREATE TABLE table_28540609_2 (cuts_made VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(earnings__) AS \u20ac_ FROM table_28540609_2 WHERE best_finish = \"T38\"", "question": "How many earnings values are associated with players who had a best finish of T38?", "context": "CREATE TABLE table_28540609_2 (earnings__ VARCHAR, best_finish VARCHAR)"}, {"answer": "SELECT COUNT(dividend_per_share__p_) FROM table_2856898_1 WHERE turnover__\u00a3m_ = \"0.42\"", "question": "How many items appear in the dividend per share when the turnover is 0.42?", "context": "CREATE TABLE table_2856898_1 (dividend_per_share__p_ VARCHAR, turnover__\u00a3m_ VARCHAR)"}, {"answer": "SELECT profit_before_tax__\u00a3m_ FROM table_2856898_1 WHERE turnover__\u00a3m_ = \"431.06\"", "question": "What was the profit before tax when the turnover was 431.06?", "context": "CREATE TABLE table_2856898_1 (profit_before_tax__\u00a3m_ VARCHAR, turnover__\u00a3m_ VARCHAR)"}, {"answer": "SELECT turnover__\u00a3m_ FROM table_2856898_1 WHERE profit_before_tax__\u00a3m_ = \"29.47\"", "question": "What was the turnover when the profit before tax was 29.47?", "context": "CREATE TABLE table_2856898_1 (turnover__\u00a3m_ VARCHAR, profit_before_tax__\u00a3m_ VARCHAR)"}, {"answer": "SELECT singer_part_number FROM table_28652521_1 WHERE storage_case = \"green plastic box\"", "question": "What's the singer part number of the buttonholer whose storage case is a green plastic box?", "context": "CREATE TABLE table_28652521_1 (singer_part_number VARCHAR, storage_case VARCHAR)"}, {"answer": "SELECT description FROM table_28652521_1 WHERE singer_part_number = \"121795 kit 121908 buttonholer\"", "question": "What's the description of the buttonholer whose singer part number is 121795 kit 121908 buttonholer?", "context": "CREATE TABLE table_28652521_1 (description VARCHAR, singer_part_number VARCHAR)"}, {"answer": "SELECT description FROM table_28652521_1 WHERE storage_case = \"cardboard box\" AND for_shank_type = \"low\"", "question": "What are all the different descriptions for the buttonholer with cardboard box for storage and a low shank type?", "context": "CREATE TABLE table_28652521_1 (description VARCHAR, storage_case VARCHAR, for_shank_type VARCHAR)"}, {"answer": "SELECT storage_case FROM table_28652521_1 WHERE description = \"ivory and red metal\"", "question": "What's the storage case of the buttonholer described as ivory and red metal?", "context": "CREATE TABLE table_28652521_1 (storage_case VARCHAR, description VARCHAR)"}, {"answer": "SELECT for_shank_type FROM table_28652521_1 WHERE storage_case = \"red plastic box\"", "question": "What's the shank type of the buttonholer with red plastic box as storage case?", "context": "CREATE TABLE table_28652521_1 (for_shank_type VARCHAR, storage_case VARCHAR)"}, {"answer": "SELECT written_by FROM table_28688313_1 WHERE us_viewers__in_millions_ = \"7.52\"", "question": "Who wrote the episode with 7.52 million US viewers?", "context": "CREATE TABLE table_28688313_1 (written_by VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT episode FROM table_28688313_1 WHERE _number = 19", "question": "What are the titles of episodes numbered 19?", "context": "CREATE TABLE table_28688313_1 (episode VARCHAR, _number VARCHAR)"}, {"answer": "SELECT written_by FROM table_28688313_1 WHERE us_viewers__in_millions_ = \"9.81\"", "question": "Who wrote the episode with 9.81 million US viewers?", "context": "CREATE TABLE table_28688313_1 (written_by VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT COUNT(track_no) FROM table_28715942_2 WHERE track = \"Let Love Be Your Energy\"", "question": "How many tracks have the title let love be your energy?", "context": "CREATE TABLE table_28715942_2 (track_no VARCHAR, track VARCHAR)"}, {"answer": "SELECT arranger_s_ FROM table_28715942_2 WHERE vocal_percussionist_s_ = \"Tom Lyle\"", "question": "Who arranged song(s) with tom lyle on the vocal percussion?", "context": "CREATE TABLE table_28715942_2 (arranger_s_ VARCHAR, vocal_percussionist_s_ VARCHAR)"}, {"answer": "SELECT original_artist FROM table_28715942_2 WHERE track_no = 6", "question": "Who were the original artist(s) for track number 6?", "context": "CREATE TABLE table_28715942_2 (original_artist VARCHAR, track_no VARCHAR)"}, {"answer": "SELECT original_artist FROM table_28715942_2 WHERE track = \"Harder To Breathe\"", "question": "Who were the original artist(s) on harder to breathe?", "context": "CREATE TABLE table_28715942_2 (original_artist VARCHAR, track VARCHAR)"}, {"answer": "SELECT original_artist FROM table_28715942_2 WHERE arranger_s_ = \"Jack Stamp\"", "question": "Who were the original artist(s) when jack stamp arranged?", "context": "CREATE TABLE table_28715942_2 (original_artist VARCHAR, arranger_s_ VARCHAR)"}, {"answer": "SELECT original_artist FROM table_28715942_6 WHERE vocal_percussionist = \"Benjamin Holder\"", "question": "Who is the artist where the vocal percussionist is Benjamin Holder?", "context": "CREATE TABLE table_28715942_6 (original_artist VARCHAR, vocal_percussionist VARCHAR)"}, {"answer": "SELECT vocal_percussionist FROM table_28715942_6 WHERE track = \"Sex Bomb\"", "question": "Who is the vocal percussionist for Sex Bomb?", "context": "CREATE TABLE table_28715942_6 (vocal_percussionist VARCHAR, track VARCHAR)"}, {"answer": "SELECT original_artist FROM table_28715942_6 WHERE track = \"Use Somebody\"", "question": "Who is the original artist of \"Use Somebody\"?", "context": "CREATE TABLE table_28715942_6 (original_artist VARCHAR, track VARCHAR)"}, {"answer": "SELECT arranger_s_ FROM table_28715942_6 WHERE track = \"I Kissed a Girl\"", "question": "Who is the arranger for \"I KIssed a Girl\"?", "context": "CREATE TABLE table_28715942_6 (arranger_s_ VARCHAR, track VARCHAR)"}, {"answer": "SELECT vocal_percussionist FROM table_28715942_6 WHERE original_artist = \"The Coral\"", "question": "Who is the percussionist for The Coral?", "context": "CREATE TABLE table_28715942_6 (vocal_percussionist VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT charity FROM table_28730873_2 WHERE occupation = \"Actor and Singer\"", "question": "What is the charity for the celebrity with an occupation title of actor and singer?", "context": "CREATE TABLE table_28730873_2 (charity VARCHAR, occupation VARCHAR)"}, {"answer": "SELECT title FROM table_28760804_1 WHERE directed_by = \"Alex Reid\"", "question": "What is the title of the episode Alex Reid directed?", "context": "CREATE TABLE table_28760804_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_28760804_1 WHERE us_viewers__million_ = \"5.95\"", "question": "Who wrote the episode that got 5.95 million U.S. viewers?", "context": "CREATE TABLE table_28760804_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_28760804_1 WHERE production_code = \"3X5710\"", "question": "How many million U.S. viewers saw the episode with production code 3X5710?", "context": "CREATE TABLE table_28760804_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_28760804_1 WHERE us_viewers__million_ = \"6.79\"", "question": "How many directors got 6.79 million U.S. viewers from their episodes?", "context": "CREATE TABLE table_28760804_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT high_points FROM table_28768469_9 WHERE date = \"March 7\"", "question": "Who had the most points in the game on March 7?", "context": "CREATE TABLE table_28768469_9 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_28768469_9 WHERE team = \"Washington\"", "question": "What was the record after the game against Washington?", "context": "CREATE TABLE table_28768469_9 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT highest_score FROM table_28846752_12 WHERE average = \"30.00\"", "question": "What is the highest score for the player with average of 30.00?", "context": "CREATE TABLE table_28846752_12 (highest_score VARCHAR, average VARCHAR)"}, {"answer": "SELECT innings FROM table_28846752_12 WHERE average = \"22.61\"", "question": "How many innings for the player with an average of 22.61?", "context": "CREATE TABLE table_28846752_12 (innings VARCHAR, average VARCHAR)"}, {"answer": "SELECT strike_rate FROM table_28846752_12 WHERE average = \"32.78\"", "question": "What is the strike rate for the player with an average of 32.78?", "context": "CREATE TABLE table_28846752_12 (strike_rate VARCHAR, average VARCHAR)"}, {"answer": "SELECT team FROM table_28884858_1 WHERE stadium = \"Edward Jones Dome\"", "question": "What is the name of the team when the stadium is listed as Edward Jones Dome?", "context": "CREATE TABLE table_28884858_1 (team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT capacity_percentage FROM table_28884858_1 WHERE total_attendance = 509940", "question": "What is the capacity percentage when the total attendance is 509940?", "context": "CREATE TABLE table_28884858_1 (capacity_percentage VARCHAR, total_attendance VARCHAR)"}, {"answer": "SELECT stadium FROM table_28884858_1 WHERE capacity_percentage = \"83.9%\"", "question": "What is the name of the stadium when the capacity percentage is 83.9%", "context": "CREATE TABLE table_28884858_1 (stadium VARCHAR, capacity_percentage VARCHAR)"}, {"answer": "SELECT COUNT(home_games) FROM table_28884858_1 WHERE average_attendance = 79475", "question": "How many home games are listed when the average attendance is 79475?", "context": "CREATE TABLE table_28884858_1 (home_games VARCHAR, average_attendance VARCHAR)"}, {"answer": "SELECT COUNT(average_attendance) FROM table_28884858_1 WHERE capacity_percentage = \"96.5%\"", "question": "How many average attendance has a capacity percentage of 96.5%", "context": "CREATE TABLE table_28884858_1 (average_attendance VARCHAR, capacity_percentage VARCHAR)"}, {"answer": "SELECT home_games FROM table_28884858_1 WHERE team = \"Seattle Seahawks\"", "question": "What is the number listed in home games when the team is Seattle Seahawks?", "context": "CREATE TABLE table_28884858_1 (home_games VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_28884858_2 WHERE capacity_percentage = \"99.3%\"", "question": "How many teams had a 99.3% capacity rating?", "context": "CREATE TABLE table_28884858_2 (team VARCHAR, capacity_percentage VARCHAR)"}, {"answer": "SELECT capacity_percentage FROM table_28884858_2 WHERE team = \"Denver Broncos\"", "question": "What was the capacity for the Denver Broncos?", "context": "CREATE TABLE table_28884858_2 (capacity_percentage VARCHAR, team VARCHAR)"}, {"answer": "SELECT average_attendance FROM table_28884858_2 WHERE total_attendance = 541380", "question": "What was average attendance when total attendance was 541380?", "context": "CREATE TABLE table_28884858_2 (average_attendance VARCHAR, total_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_28884858_2 WHERE capacity_percentage = \"102.3%\"", "question": "What team had a capacity of 102.3%?", "context": "CREATE TABLE table_28884858_2 (team VARCHAR, capacity_percentage VARCHAR)"}, {"answer": "SELECT MIN(total_attendance) FROM table_28884858_2 WHERE team = \"New York Giants\"", "question": "What was the total attendance of the New York Giants?", "context": "CREATE TABLE table_28884858_2 (total_attendance INTEGER, team VARCHAR)"}, {"answer": "SELECT capacity_percentage FROM table_28884858_2 WHERE average_attendance = 71080", "question": "What was the capacity percentage when attendance was 71080?", "context": "CREATE TABLE table_28884858_2 (capacity_percentage VARCHAR, average_attendance VARCHAR)"}, {"answer": "SELECT MAX(postal_code) FROM table_28891101_3 WHERE administrative_capital = \"Bori\"", "question": "What is the postal code when the administrative capital in Bori?", "context": "CREATE TABLE table_28891101_3 (postal_code INTEGER, administrative_capital VARCHAR)"}, {"answer": "SELECT COUNT(census_2006_population) FROM table_28891101_3 WHERE administrative_capital = \"Eleme\"", "question": "What is the 2006 censusn population when is the administrative capital is Eleme?", "context": "CREATE TABLE table_28891101_3 (census_2006_population VARCHAR, administrative_capital VARCHAR)"}, {"answer": "SELECT COUNT(census_2006_population) FROM table_28891101_3 WHERE area__km_2__ = 159", "question": "What is the 2006 census population when the area is 159?", "context": "CREATE TABLE table_28891101_3 (census_2006_population VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT MAX(area__km_2__) FROM table_28891101_3 WHERE lga_name = \"Ahoada East\"", "question": "What is the area when the Iga name is Ahoada East?", "context": "CREATE TABLE table_28891101_3 (area__km_2__ INTEGER, lga_name VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2897457_2 WHERE player = \"Richard Borgo\"", "question": "What NHL team picked richard borgo?", "context": "CREATE TABLE table_2897457_2 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_2897457_2 WHERE position = \"Centre\" AND nhl_team = \"Calgary Flames\"", "question": "What is the nationality of the draft pick player who plays centre position and is going to Calgary Flames?", "context": "CREATE TABLE table_2897457_2 (nationality VARCHAR, position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_2897457_2 WHERE college_junior_club_team = \"Cornell University (NCAA)\"", "question": "What player came from Cornell University (NCAA)?", "context": "CREATE TABLE table_2897457_2 (player VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_2897457_2 WHERE player = \"Byron Dafoe\"", "question": "How many draft picks is player byron dafoe?", "context": "CREATE TABLE table_2897457_2 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_2897457_2 WHERE nhl_team = \"Washington Capitals\"", "question": "What is the nationality of the player picked to go to Washington Capitals?", "context": "CREATE TABLE table_2897457_2 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_2897457_5 WHERE college_junior_club_team = \"Avon Old Farms (USHS-CT)\"", "question": "What player attended avon old farms (ushs-ct)?", "context": "CREATE TABLE table_2897457_5 (player VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2897457_5 WHERE player = \"Marc Deschamps\"", "question": "What pick number was marc deschamps?", "context": "CREATE TABLE table_2897457_5 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_2897457_5 WHERE player = \"Keith Carney\"", "question": "What nationality is keith carney?", "context": "CREATE TABLE table_2897457_5 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_2897457_5 WHERE pick__number = 94", "question": "What position did the #94 pick play?", "context": "CREATE TABLE table_2897457_5 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT no FROM table_29085880_1 WHERE us_viewers__million_ = \"1.312\"", "question": "Which episode number saw 1.312 million U.S. Wviewers?", "context": "CREATE TABLE table_29085880_1 (no VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_29102100_1 WHERE directed_by = \"Rich Correll\" AND written_by = \"Dennis Rinsler\"", "question": "What is the title of the episode directed by Rich Correll and written by Dennis Rinsler?", "context": "CREATE TABLE table_29102100_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_29102100_1 WHERE prod_code = 334", "question": "What number episode in the season had a production code of 334?", "context": "CREATE TABLE table_29102100_1 (season__number INTEGER, prod_code VARCHAR)"}, {"answer": "SELECT MAX(prod_code) FROM table_29102100_1 WHERE directed_by = \"Rondell Sheridan\"", "question": "What was the production code of the episode directed by Rondell Sheridan? ", "context": "CREATE TABLE table_29102100_1 (prod_code INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_29127804_3 WHERE opponent_in_the_final = \"Rushmi Chakravarthi\"", "question": "in how many dates the opponen in the final was rushmi chakravarthi", "context": "CREATE TABLE table_29127804_3 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_29127804_3 WHERE outcome = \"Runner-up\"", "question": "what is the name of the tournament where outcome is runner-up", "context": "CREATE TABLE table_29127804_3 (tournament VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT surface FROM table_29127804_3 WHERE location = \"Dehradun , Uttarakhand, India\"", "question": "what is the material of the surface in the dehradun , uttarakhand, india location", "context": "CREATE TABLE table_29127804_3 (surface VARCHAR, location VARCHAR)"}, {"answer": "SELECT surface FROM table_29127804_3 WHERE location = \"Noida , Uttar Pradesh, India\"", "question": "what is the material of the surface in noida , uttar pradesh, india", "context": "CREATE TABLE table_29127804_3 (surface VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_29127804_3 WHERE location = \"Bangalore , Karnataka, India\"", "question": "what is the date of the game played in the bangalore , karnataka, india location", "context": "CREATE TABLE table_29127804_3 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT destination FROM table_29202276_2 WHERE train_number = 16526", "question": "What is the destination when the train number is 16526?", "context": "CREATE TABLE table_29202276_2 (destination VARCHAR, train_number VARCHAR)"}, {"answer": "SELECT origin FROM table_29202276_2 WHERE destination = \"Mumbai\"", "question": "What is the origin when the destination is Mumbai?", "context": "CREATE TABLE table_29202276_2 (origin VARCHAR, destination VARCHAR)"}, {"answer": "SELECT route_via FROM table_29202276_2 WHERE destination = \"Madurai\"", "question": "What is the route/via when the destination is listed as Madurai?", "context": "CREATE TABLE table_29202276_2 (route_via VARCHAR, destination VARCHAR)"}, {"answer": "SELECT route_via FROM table_29202276_2 WHERE train_name = \"Parasuram Express\"", "question": "What is the route/via when the train name is Parasuram Express?", "context": "CREATE TABLE table_29202276_2 (route_via VARCHAR, train_name VARCHAR)"}, {"answer": "SELECT MAX(train_number) FROM table_29202276_2 WHERE time = \"10:38\"", "question": "What is the train number when the time is 10:38?", "context": "CREATE TABLE table_29202276_2 (train_number INTEGER, time VARCHAR)"}, {"answer": "SELECT thurs_2_june FROM table_29218221_1 WHERE fri_3_june = \"17' 36.58 128.554mph\"", "question": "What is the Thurs 2 June time for the rider with a Fri 3 June time of 17' 36.58 128.554mph?", "context": "CREATE TABLE table_29218221_1 (thurs_2_june VARCHAR, fri_3_june VARCHAR)"}, {"answer": "SELECT mon_30_may FROM table_29218221_1 WHERE fri_3_june = \"17' 13.46 131.431mph\"", "question": "What is the Mon 30 May time for the rider whose Fri 3 June time was 17' 13.46 131.431mph?", "context": "CREATE TABLE table_29218221_1 (mon_30_may VARCHAR, fri_3_june VARCHAR)"}, {"answer": "SELECT fri_3_june FROM table_29218221_1 WHERE tues_31_may = \"19' 18.80 117.215mph\"", "question": "What is the Fri 3 June time for the rider whose Tues 31 May time was 19' 18.80 117.215mph?", "context": "CREATE TABLE table_29218221_1 (fri_3_june VARCHAR, tues_31_may VARCHAR)"}, {"answer": "SELECT fri_3_june FROM table_29218221_2 WHERE wed_1_june = \"18' 22.66 123.182mph\"", "question": "What is the Fri 3 June time for the rider with a Weds 1 June time of 18' 22.66 123.182mph?", "context": "CREATE TABLE table_29218221_2 (fri_3_june VARCHAR, wed_1_june VARCHAR)"}, {"answer": "SELECT rank FROM table_29218221_2 WHERE tues_31_may = \"19' 02.34 118.903mph\"", "question": "What is the rank of the rider whose Tues 31 May time was 19' 02.34 118.903mph?", "context": "CREATE TABLE table_29218221_2 (rank VARCHAR, tues_31_may VARCHAR)"}, {"answer": "SELECT COUNT(rider) FROM table_29218221_2 WHERE tues_31_may = \"18' 55.91 124.236mph\"", "question": "What is the number of riders that had a Tues 31 May time of 18' 55.91 124.236mph?", "context": "CREATE TABLE table_29218221_2 (rider VARCHAR, tues_31_may VARCHAR)"}, {"answer": "SELECT rider FROM table_29218221_2 WHERE fri_3_june = \"18' 19.68 123.516mph\"", "question": "Who was the rider with a Fri 3 June time of 18' 19.68 123.516mph?", "context": "CREATE TABLE table_29218221_2 (rider VARCHAR, fri_3_june VARCHAR)"}, {"answer": "SELECT MIN(matches_won) FROM table_29302711_12 WHERE matches_played = 23", "question": "how many matches did the player that played 23 matches win", "context": "CREATE TABLE table_29302711_12 (matches_won INTEGER, matches_played VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_29302711_12 WHERE points = 21", "question": "how many countries had 21 points", "context": "CREATE TABLE table_29302711_12 (country VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(prize_money__usd_) FROM table_29302711_12 WHERE name = \"Bob Lutz\"", "question": "how much prize money (in USD) did bob lutz win", "context": "CREATE TABLE table_29302711_12 (prize_money__usd_ INTEGER, name VARCHAR)"}, {"answer": "SELECT matches_won FROM table_29302711_12 WHERE name = \"Colin Dibley\"", "question": "how many matches did colin dibley win", "context": "CREATE TABLE table_29302711_12 (matches_won VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_29414946_3 WHERE replaced_by = \"Renato Ga\u00facho\"", "question": "What team hired Renato Ga\u00facho?", "context": "CREATE TABLE table_29414946_3 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT COUNT(manner_of_departure) FROM table_29414946_3 WHERE outgoing_manager = \"Silas\"", "question": "How many times did Silas leave as a team manager?", "context": "CREATE TABLE table_29414946_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_29414946_3 WHERE outgoing_manager = \"Geninho\"", "question": "Why did Geninho leave as manager?", "context": "CREATE TABLE table_29414946_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_29414946_3 WHERE team = \"Santos\"", "question": "Who was the new Santos manager?", "context": "CREATE TABLE table_29414946_3 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_29414946_3 WHERE date_of_appointment = \"June 20\"", "question": "Who was replaced as manager on June 20?", "context": "CREATE TABLE table_29414946_3 (outgoing_manager VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT s_color_commentator FROM table_2941848_10 WHERE pregame_hosts = \"Jon Sciambi\"", "question": "Who is the s color commentator when the pregame host is jon sciambi?", "context": "CREATE TABLE table_2941848_10 (s_color_commentator VARCHAR, pregame_hosts VARCHAR)"}, {"answer": "SELECT pregame_hosts FROM table_2941848_10 WHERE pregame_analysts = \"Dave Campbell\" AND year = 2001", "question": "Who is the pregame host when the pregame analysts is  Dave Campbell and the year is 2001?", "context": "CREATE TABLE table_2941848_10 (pregame_hosts VARCHAR, pregame_analysts VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(network) FROM table_2941848_10 WHERE year = 2008", "question": "How many networks are listed when the year is 2008?", "context": "CREATE TABLE table_2941848_10 (network VARCHAR, year VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_29436059_1 WHERE production_code = 319", "question": "What is the original air date of the episode with production code is 319?", "context": "CREATE TABLE table_29436059_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_29436059_1 WHERE no_in_season = 10", "question": "What is the title of episode 10?", "context": "CREATE TABLE table_29436059_1 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT position FROM table_29483890_1 WHERE goals = 57", "question": "What was the position of the player with 57 goals?", "context": "CREATE TABLE table_29483890_1 (position VARCHAR, goals VARCHAR)"}, {"answer": "SELECT title FROM table_2950964_1 WHERE _number = \"7\"", "question": "What is the title of book number 7?", "context": "CREATE TABLE table_2950964_1 (title VARCHAR, _number VARCHAR)"}, {"answer": "SELECT title FROM table_2950964_1 WHERE _number = \"8\"", "question": "What is the title of book number 8?", "context": "CREATE TABLE table_2950964_1 (title VARCHAR, _number VARCHAR)"}, {"answer": "SELECT published FROM table_2950964_1 WHERE audiobook_narrator = \"Michael Maloney\"", "question": "What is the publication date of the book that is narrated by Michael Maloney?", "context": "CREATE TABLE table_2950964_1 (published VARCHAR, audiobook_narrator VARCHAR)"}, {"answer": "SELECT title FROM table_2950964_1 WHERE isbn = \"isbn 1-84990-243-7\"", "question": "What is the title of ISBN 1-84990-243-7?", "context": "CREATE TABLE table_2950964_1 (title VARCHAR, isbn VARCHAR)"}, {"answer": "SELECT featuring_companion FROM table_2950964_1 WHERE _number = \"3\"", "question": "Who are the featuring companions of number 3?", "context": "CREATE TABLE table_2950964_1 (featuring_companion VARCHAR, _number VARCHAR)"}, {"answer": "SELECT time FROM table_29535057_4 WHERE location = \"Cassell Coliseum \u2022 Blacksburg, VA\"", "question": "What was the time of the games that took place at the cassell coliseum \u2022 blacksburg, va?", "context": "CREATE TABLE table_29535057_4 (time VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(challenge_leader) FROM table_29535057_4 WHERE winner = \"Virginia (87-79)\"", "question": "How many challenge leaders were there of the games won by virginia (87-79)?", "context": "CREATE TABLE table_29535057_4 (challenge_leader VARCHAR, winner VARCHAR)"}, {"answer": "SELECT challenge_leader FROM table_29535057_4 WHERE winner = \"Boston College (88-76)\"", "question": "Who were the challenge leaders of the games won by boston college (88-76)?", "context": "CREATE TABLE table_29535057_4 (challenge_leader VARCHAR, winner VARCHAR)"}, {"answer": "SELECT location FROM table_29535057_4 WHERE acc_team = \"Wake Forest\"", "question": "Where did the games that had Wake Forest as Acc Team take place?", "context": "CREATE TABLE table_29535057_4 (location VARCHAR, acc_team VARCHAR)"}, {"answer": "SELECT location FROM table_29535057_4 WHERE big_ten_team = \"Wisconsin\"", "question": "Where did the games that had Wisconsin as big ten team take place?", "context": "CREATE TABLE table_29535057_4 (location VARCHAR, big_ten_team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_29556461_7 WHERE date = \"January 5\"", "question": "Who had the most assists and how many did they have on January 5?", "context": "CREATE TABLE table_29556461_7 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_29556461_7 WHERE date = \"January 19\"", "question": "What team was Temple playing on January 19?", "context": "CREATE TABLE table_29556461_7 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(colors) FROM table_29612224_1 WHERE location = \"Maroa, Illinois\"", "question": "How many different combinations of team colors are there in all the schools in Maroa, Illinois?", "context": "CREATE TABLE table_29612224_1 (colors VARCHAR, location VARCHAR)"}, {"answer": "SELECT school_website FROM table_29612224_1 WHERE location = \"Macon, Illinois\"", "question": "What's the website of the school in Macon, Illinois?", "context": "CREATE TABLE table_29612224_1 (school_website VARCHAR, location VARCHAR)"}, {"answer": "SELECT colors FROM table_29612224_1 WHERE location = \"Tolono, Illinois\"", "question": "What are the team colors from Tolono, Illinois?", "context": "CREATE TABLE table_29612224_1 (colors VARCHAR, location VARCHAR)"}, {"answer": "SELECT institution FROM table_29612224_1 WHERE school_website = \"http://www.mfschools.org/high/\"", "question": "What's the name of the city or town of the school that operates the http://www.mfschools.org/high/ website?", "context": "CREATE TABLE table_29612224_1 (institution VARCHAR, school_website VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_29690363_3 WHERE pole_position = \"Stefan Wilson\"", "question": "Who had the fastest lap(s) when stefan wilson had the pole?", "context": "CREATE TABLE table_29690363_3 (fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_29690363_3 WHERE most_laps_led = \"Josef Newgarden\" AND race = \"Edmonton\"", "question": "Who had the fastest lap(s) when josef newgarden led the most laps at edmonton?", "context": "CREATE TABLE table_29690363_3 (fastest_lap VARCHAR, most_laps_led VARCHAR, race VARCHAR)"}, {"answer": "SELECT pole_position FROM table_29690363_3 WHERE most_laps_led = \"Esteban Guerrieri\" AND fastest_lap = \"Josef Newgarden\" AND rd = \"8A\"", "question": "Who had the pole(s) when esteban guerrieri led the most laps round 8a and josef newgarden had the fastest lap?", "context": "CREATE TABLE table_29690363_3 (pole_position VARCHAR, rd VARCHAR, most_laps_led VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT most_laps_led FROM table_29690363_3 WHERE fastest_lap = \"Brandon Wagner\"", "question": "Who led the most laps when brandon wagner had the fastest lap?", "context": "CREATE TABLE table_29690363_3 (most_laps_led VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT race FROM table_29690363_3 WHERE fastest_lap = \"Josef Newgarden\" AND most_laps_led = \"Josef Newgarden\"", "question": "What race did josef newgarden have the fastest lap and lead the most laps?", "context": "CREATE TABLE table_29690363_3 (race VARCHAR, fastest_lap VARCHAR, most_laps_led VARCHAR)"}, {"answer": "SELECT MIN(shutouts) FROM table_29743928_4", "question": "What is the lowest overall amount of shutouts?", "context": "CREATE TABLE table_29743928_4 (shutouts INTEGER)"}, {"answer": "SELECT years FROM table_29743928_4 WHERE name = \"Chase Harrison Category:Articles with hCards\"", "question": "When chase harrison category:articles with hcards is the name what is the year?", "context": "CREATE TABLE table_29743928_4 (years VARCHAR, name VARCHAR)"}, {"answer": "SELECT years FROM table_29743928_4 WHERE name = \"Chris Konopka Category:Articles with hCards\"", "question": "When  chris konopka category:articles with hcards is the name what is the year?", "context": "CREATE TABLE table_29743928_4 (years VARCHAR, name VARCHAR)"}, {"answer": "SELECT games FROM table_29743928_4 WHERE years = \"2010\"", "question": "When 2010 is the year what is the game?", "context": "CREATE TABLE table_29743928_4 (games VARCHAR, years VARCHAR)"}, {"answer": "SELECT song_choice FROM table_29756040_1 WHERE week__number = \"Audition\"", "question": "Which song was chosen during the audition week?", "context": "CREATE TABLE table_29756040_1 (song_choice VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT order__number FROM table_29756040_1 WHERE week__number = \"Top 6\"", "question": "What are all the order #s from the week \"top 6\"?", "context": "CREATE TABLE table_29756040_1 (order__number VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT original_artist FROM table_29756040_1 WHERE order__number = \"1\"", "question": "Which artists have order # 1?", "context": "CREATE TABLE table_29756040_1 (original_artist VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT original_artist FROM table_29756040_1 WHERE order__number = \"6\"", "question": "Which artists have order number 6?", "context": "CREATE TABLE table_29756040_1 (original_artist VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT title FROM table_29803475_3 WHERE directed_by = \"James Bobin\"", "question": "what is the name of the episode directed by james bobin", "context": "CREATE TABLE table_29803475_3 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_29803475_3 WHERE us_viewers__million_ = \"0.25\"", "question": "who directed the episode that have 0.25 million u.s viewers", "context": "CREATE TABLE table_29803475_3 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT official_rating_16_39 FROM table_29804176_23 WHERE share_16_39 = \"22,77%\"", "question": "what is the official rating 16-39 for the episode with  a 16-39 share of 22,77%?", "context": "CREATE TABLE table_29804176_23 (official_rating_16_39 VARCHAR, share_16_39 VARCHAR)"}, {"answer": "SELECT affiliation FROM table_29836557_2 WHERE player = \"Kevan George\"", "question": "What university was Kevan George affiliated with?", "context": "CREATE TABLE table_29836557_2 (affiliation VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_29836557_2 WHERE mls_team = \"Real Salt Lake\"", "question": "What pick number did Real Salt Lake get?", "context": "CREATE TABLE table_29836557_2 (pick__number INTEGER, mls_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_29836557_2 WHERE player = \"Kevan George\"", "question": "What pick number is Kevan George?", "context": "CREATE TABLE table_29836557_2 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_29836557_2 WHERE pick__number = 34", "question": "Who was pick number 34?", "context": "CREATE TABLE table_29836557_2 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT mls_team FROM table_29836557_2 WHERE player = \"Babayele Sodade\"", "question": "What MLS team picked Babayele Sodade?", "context": "CREATE TABLE table_29836557_2 (mls_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT international_use FROM table_29997112_3 WHERE flag_name = \"1 \u0435\u0434\u0438\u043d\u0438\u0446\u0430\"", "question": "What is the international use of the 1 \u0435\u0434\u0438\u043d\u0438\u0446\u0430 flag?", "context": "CREATE TABLE table_29997112_3 (international_use VARCHAR, flag_name VARCHAR)"}, {"answer": "SELECT flag_name FROM table_29997112_3 WHERE meaning = \"Decimal Digit 2\"", "question": "What is the name of the flag that means decimal digit 2?", "context": "CREATE TABLE table_29997112_3 (flag_name VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT COUNT(description) FROM table_29997112_3 WHERE meaning = \"Decimal Digit 2\"", "question": "How many different descriptions are there for the flag that means decimal digit 2?", "context": "CREATE TABLE table_29997112_3 (description VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT meaning FROM table_29997112_3 WHERE transliteration = \"dvojka\"", "question": "What are the meanings of the flag whose name transliterates to dvojka?", "context": "CREATE TABLE table_29997112_3 (meaning VARCHAR, transliteration VARCHAR)"}, {"answer": "SELECT meaning FROM table_29997112_3 WHERE transliteration = \"sem\u00ebrka\"", "question": "What are the meanings of the flag whose name transliterates to sem\u00ebrka?", "context": "CREATE TABLE table_29997112_3 (meaning VARCHAR, transliteration VARCHAR)"}, {"answer": "SELECT COUNT(3 AS rd_runner_up) FROM table_30007801_1 WHERE country_territory = \"Turkey\"", "question": "How many 3rd runner up values does Turkey have?", "context": "CREATE TABLE table_30007801_1 (country_territory VARCHAR)"}, {"answer": "SELECT MIN(1 AS st_runner_up) FROM table_30007801_1", "question": "What is the smallest 1st runner up value?", "context": "CREATE TABLE table_30007801_1 (Id VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_runner_up) FROM table_30007801_1 WHERE country_territory = \"Jamaica\"", "question": "What is the number of 1st runner up values for Jamaica?", "context": "CREATE TABLE table_30007801_1 (country_territory VARCHAR)"}, {"answer": "SELECT us_air_date FROM table_30012404_4 WHERE directed_by = \"Ken Girotti\"", "question": "What is the US air date when the director is ken girotti?", "context": "CREATE TABLE table_30012404_4 (us_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT canadian_air_date FROM table_30012404_4 WHERE us_air_date = \"24 August 2012\"", "question": "What is the canadian air date when the US air date is 24 august 2012?", "context": "CREATE TABLE table_30012404_4 (canadian_air_date VARCHAR, us_air_date VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_30012404_4 WHERE us_air_date = \"20 July 2012\"", "question": "What is the series # when the US air date is 20 July 2012?", "context": "CREATE TABLE table_30012404_4 (series__number INTEGER, us_air_date VARCHAR)"}, {"answer": "SELECT streak FROM table_30047613_13 WHERE date = \"May 9\"", "question": "How many games had they won or lost in a row on May 9?", "context": "CREATE TABLE table_30047613_13 (streak VARCHAR, date VARCHAR)"}, {"answer": "SELECT tues_23_aug FROM table_30058355_3 WHERE thurs_25_aug = \"24' 31.87 92.282mph\"", "question": "What is every entry for Tuesday August 23 when Thursday August 25 is 24' 31.87 92.282mph?", "context": "CREATE TABLE table_30058355_3 (tues_23_aug VARCHAR, thurs_25_aug VARCHAR)"}, {"answer": "SELECT thurs_25_aug FROM table_30058355_3 WHERE rank = 3", "question": "What is every value on Thursday August 25 for rank 3?", "context": "CREATE TABLE table_30058355_3 (thurs_25_aug VARCHAR, rank VARCHAR)"}, {"answer": "SELECT mon_22_aug FROM table_30058355_3 WHERE wed_24_aug = \"22' 50.05 99.141mph\"", "question": "What is every entry on Monday August 22 when the entry for Wednesday August 24 is 22' 50.05 99.141mph?", "context": "CREATE TABLE table_30058355_3 (mon_22_aug VARCHAR, wed_24_aug VARCHAR)"}, {"answer": "SELECT fri_26_aug FROM table_30058355_3 WHERE mon_22_aug = \"32' 25.72 69.809mph\"", "question": "What is every entry for Friday August 26 if the entry for Monday August 22 is 32' 25.72 69.809mph?", "context": "CREATE TABLE table_30058355_3 (fri_26_aug VARCHAR, mon_22_aug VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_30083499_1 WHERE tournament = \"2011 Apertura\"", "question": "How many nationalities are there for the 2011 apertura?", "context": "CREATE TABLE table_30083499_1 (nationality VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT team FROM table_30083499_1 WHERE tournament = \"2012 Clausura\"", "question": "Which team was in the 2012 clausura tournament?", "context": "CREATE TABLE table_30083499_1 (team VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT coefficient FROM table_30083499_1 WHERE player = \"Agust\u00edn Marches\u00edn (1)\"", "question": "What is the coefficient for agust\u00edn marches\u00edn (1)?", "context": "CREATE TABLE table_30083499_1 (coefficient VARCHAR, player VARCHAR)"}, {"answer": "SELECT coefficient FROM table_30083499_1 WHERE tournament = \"2010 Clausura\"", "question": " the 2010 clausura tournament?", "context": "CREATE TABLE table_30083499_1 (coefficient VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT nationality FROM table_30083499_1 WHERE tournament = \"2012 Clausura\"", "question": "What is the nationality of the 2012 clausura  tournament?", "context": "CREATE TABLE table_30083499_1 (nationality VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT high_points FROM table_30087032_5 WHERE game = 1", "question": "Who did the high points in game number 1?", "context": "CREATE TABLE table_30087032_5 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_30087032_5 WHERE high_rebounds = \"Oliver Miller (7)\"", "question": "In how many different games did Oliver Miller (7) did the high rebounds?", "context": "CREATE TABLE table_30087032_5 (game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_assists FROM table_30087032_5 WHERE high_points = \"Charles Barkley (21)\"", "question": "Who did the high assists in the game where Charles Barkley (21) did the high points?", "context": "CREATE TABLE table_30087032_5 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_30087032_5 WHERE date = \"May 15\"", "question": "How many different high points results are there for the game on May 15?", "context": "CREATE TABLE table_30087032_5 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_30087032_5 WHERE high_points = \"Charles Barkley (34)\"", "question": "In what series did Charles Barkley (34) did most high points?", "context": "CREATE TABLE table_30087032_5 (series VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT barony FROM table_30120605_1 WHERE townland = \"Mountcotton\"", "question": "What is the barony of mountcotton?", "context": "CREATE TABLE table_30120605_1 (barony VARCHAR, townland VARCHAR)"}, {"answer": "SELECT area__acres__ FROM table_30120605_1 WHERE townland = \"Gortnaskehy\"", "question": "What is the area in acres of gortnaskehy?", "context": "CREATE TABLE table_30120605_1 (area__acres__ VARCHAR, townland VARCHAR)"}, {"answer": "SELECT civil_parish FROM table_30120605_1 WHERE townland = \"Ballymacandrick\"", "question": "In which civil parish is ballymacandrick?", "context": "CREATE TABLE table_30120605_1 (civil_parish VARCHAR, townland VARCHAR)"}, {"answer": "SELECT townland FROM table_30120664_1 WHERE poor_law_union = \"Fermoy\" AND civil_parish = \"Ballynoe\"", "question": "Name  the townland for fermoy and ballynoe", "context": "CREATE TABLE table_30120664_1 (townland VARCHAR, poor_law_union VARCHAR, civil_parish VARCHAR)"}, {"answer": "SELECT civil_parish FROM table_30120664_1 WHERE townland = \"Garryduff\"", "question": "name the civil parish for garryduff", "context": "CREATE TABLE table_30120664_1 (civil_parish VARCHAR, townland VARCHAR)"}, {"answer": "SELECT area__acres__ FROM table_30120664_1 WHERE civil_parish = \"Ballynoe\" AND townland = \"Killasseragh\"", "question": "Name the area for civil parish ballynoe and killasseragh", "context": "CREATE TABLE table_30120664_1 (area__acres__ VARCHAR, civil_parish VARCHAR, townland VARCHAR)"}, {"answer": "SELECT poor_law_union FROM table_30121046_1 WHERE townland = \"Kilmaloda\"", "question": "What is the poor law union of the Kilmaloda townland?", "context": "CREATE TABLE table_30121046_1 (poor_law_union VARCHAR, townland VARCHAR)"}, {"answer": "SELECT poor_law_union FROM table_30121046_1 WHERE townland = \"Lackenagobidane\"", "question": "What is the poor law union of the Lackenagobidane townland?", "context": "CREATE TABLE table_30121046_1 (poor_law_union VARCHAR, townland VARCHAR)"}, {"answer": "SELECT poor_law_union FROM table_30121046_1 WHERE townland = \"Ardacrow\"", "question": "What is the poor law union of the Ardacrow townland?", "context": "CREATE TABLE table_30121046_1 (poor_law_union VARCHAR, townland VARCHAR)"}, {"answer": "SELECT MAX(area__acres__) FROM table_30121046_1 WHERE townland = \"Knockacullen\"", "question": "What is the maximum area (in acres) of the Knockacullen townland?", "context": "CREATE TABLE table_30121046_1 (area__acres__ INTEGER, townland VARCHAR)"}, {"answer": "SELECT civil_parish FROM table_30121082_1 WHERE townland = \"Loughmarsh\"", "question": "What are the civil parishes of the Loughmarsh townland?", "context": "CREATE TABLE table_30121082_1 (civil_parish VARCHAR, townland VARCHAR)"}, {"answer": "SELECT MAX(area__acres__) FROM table_30121082_1 WHERE poor_law_union = \"Skibbereen\" AND civil_parish = \"Tullagh\"", "question": "What is the greatest area when the Poor Law Union is Skibbereen and the Civil Parish is Tullagh?", "context": "CREATE TABLE table_30121082_1 (area__acres__ INTEGER, poor_law_union VARCHAR, civil_parish VARCHAR)"}, {"answer": "SELECT area__acres__ FROM table_30121082_1 WHERE townland = \"Kilnahera East\"", "question": "What are the areas (in acres) of the Kilnahera East townland?", "context": "CREATE TABLE table_30121082_1 (area__acres__ VARCHAR, townland VARCHAR)"}, {"answer": "SELECT barony FROM table_30121082_1 WHERE area__acres__ = 276", "question": "What are the Baronies when the area (in acres) is 276?", "context": "CREATE TABLE table_30121082_1 (barony VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT poor_law_union FROM table_30121082_1 WHERE area__acres__ = 142", "question": "What are the Poor Law Unions when the area (in acres) is 142?", "context": "CREATE TABLE table_30121082_1 (poor_law_union VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_30 WHERE losses < 6 AND wins < 11 AND school = \"michigan state\"", "question": "Tell me the average Rank for lossess less than 6 and wins less than 11 for michigan state", "context": "CREATE TABLE table_name_30 (rank INTEGER, school VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_60 WHERE wins < 2 AND rank = 10 AND appearances > 3", "question": "Tell me the sum of losses for wins less than 2 and rank of 10 with appearances larger than 3", "context": "CREATE TABLE table_name_60 (losses INTEGER, appearances VARCHAR, wins VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_56 WHERE silver = 0 AND gold = 2 AND total < 2", "question": "Which Rank number has a Silver of 0, Gold of 2 and total smaller than 2?", "context": "CREATE TABLE table_name_56 (rank VARCHAR, total VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_92 WHERE bronze = 0 AND rank < 2", "question": "What is the lowest Total containing a Bronze of 0 and Rank smaller than 2?", "context": "CREATE TABLE table_name_92 (total INTEGER, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT track FROM table_name_44 WHERE date = \"june 9\"", "question": "Tell me the track for june 9", "context": "CREATE TABLE table_name_44 (track VARCHAR, date VARCHAR)"}, {"answer": "SELECT track FROM table_name_47 WHERE race_winner = \"scott lagasse jr.\"", "question": "Tell me the track for scott lagasse jr.", "context": "CREATE TABLE table_name_47 (track VARCHAR, race_winner VARCHAR)"}, {"answer": "SELECT event_name FROM table_name_98 WHERE pole_winner = \"michael mcdowell\" AND race_winner = \"billy leslie\"", "question": "Tell me the event name for michael mcdowell and billy leslie", "context": "CREATE TABLE table_name_98 (event_name VARCHAR, pole_winner VARCHAR, race_winner VARCHAR)"}, {"answer": "SELECT pole_winner FROM table_name_91 WHERE date = \"may 12\"", "question": "Tell me the pole winner of may 12", "context": "CREATE TABLE table_name_91 (pole_winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(kazakhstan) FROM table_name_20 WHERE kyrghizstan = 4.62 AND belarus < 2.46", "question": "Tell me the lowest kazakhstan for kyrghizstan of 4.62 and belarus less than 2.46", "context": "CREATE TABLE table_name_20 (kazakhstan INTEGER, kyrghizstan VARCHAR, belarus VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_16 WHERE rank = \"6\" AND total < 2", "question": "Tell me the lowest gold for rank of 6 and total less than 2", "context": "CREATE TABLE table_name_16 (gold INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT rank FROM table_name_28 WHERE bronze < 17 AND silver > 1 AND gold < 1", "question": "Tell me the rank for bronze less than 17 and gold less than 1", "context": "CREATE TABLE table_name_28 (rank VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT w_l__doubles_ FROM table_name_73 WHERE debut = 1999", "question": "Tell me the WL doubles with a debut of 1999", "context": "CREATE TABLE table_name_73 (w_l__doubles_ VARCHAR, debut VARCHAR)"}, {"answer": "SELECT COUNT(win__percentage) FROM table_name_93 WHERE conference = \"hockey east\" AND _number_of_bids < 4", "question": "For the Hockey East conference, what is the total number of win percentages when there are less than 4 bids?", "context": "CREATE TABLE table_name_93 (win__percentage VARCHAR, conference VARCHAR, _number_of_bids VARCHAR)"}, {"answer": "SELECT AVG(regional_finals) FROM table_name_3 WHERE record = \"3-2\" AND _number_of_bids > 3", "question": "What is the average Regional Finals score when the record is 3-2 and there are more than 3 bids?", "context": "CREATE TABLE table_name_3 (regional_finals INTEGER, record VARCHAR, _number_of_bids VARCHAR)"}, {"answer": "SELECT competition FROM table_name_30 WHERE score = \"12.8 (80) - 8.7 (55)\"", "question": "In what competition was the score reported as 12.8 (80) - 8.7 (55)?", "context": "CREATE TABLE table_name_30 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE score = \"7.14 (56) - 4.5 (29)\"", "question": "At what venue was there a competition with a score reported as 7.14 (56) - 4.5 (29)?", "context": "CREATE TABLE table_name_89 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_51 WHERE opponent = \"collingwood\" AND score = \"7.14 (56) - 4.5 (29)\"", "question": "At what venue did the team from Collingwood score 7.14 (56) - 4.5 (29)?", "context": "CREATE TABLE table_name_51 (venue VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT mls_team FROM table_name_41 WHERE player = \"jimmy frazelle\"", "question": "What team does Jimmy Frazelle play on?", "context": "CREATE TABLE table_name_41 (mls_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT mls_team FROM table_name_86 WHERE pick__number = 41", "question": "Which MLS team has the #41 pick?", "context": "CREATE TABLE table_name_86 (mls_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT position FROM table_name_78 WHERE pick__number > 47 AND affiliation = \"ucla\"", "question": "What position has UCLA pick that is larger than #47?", "context": "CREATE TABLE table_name_78 (position VARCHAR, pick__number VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT position FROM table_name_38 WHERE mls_team = \"colorado rapids\"", "question": "What is the position of the Colorado Rapids team?", "context": "CREATE TABLE table_name_38 (position VARCHAR, mls_team VARCHAR)"}, {"answer": "SELECT in_service FROM table_name_52 WHERE versions = \"l-410uvp\"", "question": "Tell me the service for versions l-410uvp", "context": "CREATE TABLE table_name_52 (in_service VARCHAR, versions VARCHAR)"}, {"answer": "SELECT versions FROM table_name_80 WHERE origin = \"czechoslovakia\"", "question": "Tell me the versions for czechoslovakia?", "context": "CREATE TABLE table_name_80 (versions VARCHAR, origin VARCHAR)"}, {"answer": "SELECT aircraft FROM table_name_1 WHERE versions = \"pzl-104\"", "question": "Tell me the aircraft for pzl-104", "context": "CREATE TABLE table_name_1 (aircraft VARCHAR, versions VARCHAR)"}, {"answer": "SELECT origin FROM table_name_57 WHERE versions = \"mi-2\"", "question": "Tell me the origin for mi-2", "context": "CREATE TABLE table_name_57 (origin VARCHAR, versions VARCHAR)"}, {"answer": "SELECT COUNT(top_25) FROM table_name_59 WHERE cuts_made = 22 AND wins < 1", "question": "Tell me the total number of top 25 for wins less than 1 and cuts made of 22", "context": "CREATE TABLE table_name_59 (top_25 VARCHAR, cuts_made VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(events) FROM table_name_32 WHERE tournament = \"masters tournament\" AND top_25 < 6", "question": "Tell me the total number of events for tournament of masters tournament and top 25 less than 6", "context": "CREATE TABLE table_name_32 (events VARCHAR, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_52 WHERE league = \"usisl pro league\"", "question": "What was the earliest year for the USISL Pro League?", "context": "CREATE TABLE table_name_52 (year INTEGER, league VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_8 WHERE 2010 = \"3.137\"", "question": "What is the 2007 Lukoil oil prodroduction when in 2010 oil production 3.137 million tonnes?", "context": "CREATE TABLE table_name_8 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_25 WHERE 2009 = \"21.662\"", "question": "What is the 2010 Lukoil oil prodroduction when in 2009 oil production 21.662 million tonnes?", "context": "CREATE TABLE table_name_25 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_40 WHERE 2011 = \"90.917\"", "question": "What is the 2004 Lukoil oil prodroduction when in 2011 oil production 90.917 million tonnes?", "context": "CREATE TABLE table_name_40 (Id VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_25 WHERE 2007 = \"91.100\"", "question": "What is the 2005 Lukoil oil prodroduction when in 2007 oil production 91.100 million tonnes?", "context": "CREATE TABLE table_name_25 (Id VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_88 WHERE 2007 = \"5.545\"", "question": "What is the 2005 Lukoil oil prodroduction when in 2007 oil production 5.545 million tonnes?", "context": "CREATE TABLE table_name_88 (Id VARCHAR)"}, {"answer": "SELECT MAX(home_runs) FROM table_name_92 WHERE team = \"cleveland indians\" AND year < 1931", "question": "Tell me the highest home runs for cleveland indians years before 1931", "context": "CREATE TABLE table_name_92 (home_runs INTEGER, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_56 WHERE rank > 9", "question": "What nation has the lowest gold average that has a rank over 9?", "context": "CREATE TABLE table_name_56 (gold INTEGER, rank INTEGER)"}, {"answer": "SELECT country FROM table_name_38 WHERE director = \"julian schnabel\"", "question": "Tell me the country for julian schnabel", "context": "CREATE TABLE table_name_38 (country VARCHAR, director VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_17 WHERE director = \"jean-pierre jeunet\"", "question": "Name the title of jean-pierre jeunet", "context": "CREATE TABLE table_name_17 (english_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT power_output__kw_ FROM table_name_32 WHERE model = \"hxd2b\"", "question": "What is the power output (kw) of model hxd2b?", "context": "CREATE TABLE table_name_32 (power_output__kw_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT model FROM table_name_20 WHERE builder__family_ = \"zhuzhou\" AND power_output__kw_ = \"9600\"", "question": "What model has a builder of zhuzhou, and a power output of 9600 (kw)?", "context": "CREATE TABLE table_name_20 (model VARCHAR, builder__family_ VARCHAR, power_output__kw_ VARCHAR)"}, {"answer": "SELECT power_output__kw_ FROM table_name_6 WHERE model = \"hxd3d\"", "question": "What is the power output (kw) of model hxd3d?", "context": "CREATE TABLE table_name_6 (power_output__kw_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT power_output__kw_ FROM table_name_79 WHERE total_production = \"2\" AND builder__family_ = \"zhuzhou\" AND model = \"hxd1d\"", "question": "What is the power output (kw) of builder zhuzhou, model hxd1d, with a total production of 2?", "context": "CREATE TABLE table_name_79 (power_output__kw_ VARCHAR, model VARCHAR, total_production VARCHAR, builder__family_ VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_32 WHERE total < 1", "question": "Name the average bronze for total less than 1", "context": "CREATE TABLE table_name_32 (bronze INTEGER, total INTEGER)"}, {"answer": "SELECT recipient FROM table_name_77 WHERE play = \"much ado about nothing\" AND year = 1973", "question": "Name the recipient of much ado about nothing for 1973", "context": "CREATE TABLE table_name_77 (recipient VARCHAR, play VARCHAR, year VARCHAR)"}, {"answer": "SELECT recipient FROM table_name_69 WHERE year = 1976", "question": "Name the recipientof the year for 1976", "context": "CREATE TABLE table_name_69 (recipient VARCHAR, year VARCHAR)"}, {"answer": "SELECT play FROM table_name_20 WHERE year = 1976", "question": "Name the play for 1976", "context": "CREATE TABLE table_name_20 (play VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_50 WHERE play = \"much ado about nothing\" AND recipient = \"ray virta\"", "question": "Name the average year for much ado about nothing and recipient of ray virta", "context": "CREATE TABLE table_name_50 (year INTEGER, play VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT modulation FROM table_name_91 WHERE power = \"32 kw horizontal\" AND channel = 32", "question": "On channel 32, when the power is 32 kW horizontal, what is the modulation?", "context": "CREATE TABLE table_name_91 (modulation VARCHAR, power VARCHAR, channel VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_32 WHERE power = \"32 kw horizontal\" AND channel = 32", "question": "On channel 32, when the power is 32 kW horizontal, what is the frequency?", "context": "CREATE TABLE table_name_32 (frequency VARCHAR, power VARCHAR, channel VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_42 WHERE year < 2000 AND best_finish = \"4\" AND tournaments_played < 3", "question": "Tell me the highest wins for year less than 2000 and best finish of 4 and tournaments played less than 3", "context": "CREATE TABLE table_name_42 (wins INTEGER, tournaments_played VARCHAR, year VARCHAR, best_finish VARCHAR)"}, {"answer": "SELECT scoring_average FROM table_name_92 WHERE year < 1998 AND wins > 3", "question": "Tell me the scoring average for year less than 1998 and wins more than 3", "context": "CREATE TABLE table_name_92 (scoring_average VARCHAR, year VARCHAR, wins VARCHAR)"}, {"answer": "SELECT result FROM table_name_51 WHERE week < 15 AND date = \"november 20, 1983\"", "question": "What happened on November 20, 1983 before week 15?", "context": "CREATE TABLE table_name_51 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_92 WHERE trainer = \"gary simms\"", "question": "Who won under Gary Simms?", "context": "CREATE TABLE table_name_92 (winner VARCHAR, trainer VARCHAR)"}, {"answer": "SELECT trainer FROM table_name_34 WHERE year < 2009 AND time = \"1:10.09\"", "question": "Which trainer had a time of 1:10.09 with a year less than 2009?", "context": "CREATE TABLE table_name_34 (trainer VARCHAR, year VARCHAR, time VARCHAR)"}, {"answer": "SELECT trainer FROM table_name_97 WHERE year < 2010 AND winner = \"hyroglyphic\"", "question": "Which trainer won the hyroglyphic in a year that was before 2010?", "context": "CREATE TABLE table_name_97 (trainer VARCHAR, year VARCHAR, winner VARCHAR)"}, {"answer": "SELECT time FROM table_name_48 WHERE winner = \"screen your friend\"", "question": "What was the time for Screen Your Friend?", "context": "CREATE TABLE table_name_48 (time VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_8 WHERE place > 10", "question": "Which places have points larger than 10?", "context": "CREATE TABLE table_name_8 (points INTEGER, place INTEGER)"}, {"answer": "SELECT COUNT(grid) FROM table_name_59 WHERE rider = \"fonsi nieto\" AND laps > 22", "question": "What is the total grid number when Fonsi Nieto had more than 22 laps?", "context": "CREATE TABLE table_name_59 (grid VARCHAR, rider VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_39 WHERE grid = 10", "question": "When the grid number is 10, what is the total number of laps?", "context": "CREATE TABLE table_name_39 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT bike FROM table_name_34 WHERE grid > 14 AND laps < 22 AND rider = \"jiri drazdak\"", "question": "Which bike did Jiri Drazdak ride when he had a grid number larger than 14 and less than 22 laps?", "context": "CREATE TABLE table_name_34 (bike VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_1 WHERE name = \"pau grand prix\"", "question": "Tell me the winning driver for pau grand prix", "context": "CREATE TABLE table_name_1 (winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT report FROM table_name_86 WHERE date = \"30 july\"", "question": "Tell me the report for 30 july", "context": "CREATE TABLE table_name_86 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_name_64 WHERE date = \"10 april\"", "question": "Tell me the report for 10 april", "context": "CREATE TABLE table_name_64 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_42 WHERE name = \"paris cup\"", "question": "Tell me the winning constructor for the paris cup", "context": "CREATE TABLE table_name_42 (winning_constructor VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE class = \"non-championship f2\" AND driver = \"jos\u00e9 froil\u00e1n gonz\u00e1lez\" AND position > 2", "question": "what date has the class of non-championship f2 as well as a driver name jos\u00e9 froil\u00e1n gonz\u00e1lez that has a position larger than 2?", "context": "CREATE TABLE table_name_27 (date VARCHAR, position VARCHAR, class VARCHAR, driver VARCHAR)"}, {"answer": "SELECT team FROM table_name_46 WHERE position > 1 AND date = \"9/1953\" AND driver = \"emmanuel de graffenried\"", "question": "what team has a drive name emmanuel de graffenried and a position larger than 1 as well as the date of 9/1953?", "context": "CREATE TABLE table_name_46 (team VARCHAR, driver VARCHAR, position VARCHAR, date VARCHAR)"}, {"answer": "SELECT class FROM table_name_56 WHERE date = \"8/1954\"", "question": "what class has the date of 8/1954?", "context": "CREATE TABLE table_name_56 (class VARCHAR, date VARCHAR)"}, {"answer": "SELECT driver FROM table_name_51 WHERE team = \"officine alfieri maserati\" AND class = \"non-championship f2\" AND position = 2 AND date = \"9/1952\"", "question": "what driver has a team of officine alfieri maserati and belongs to the class of non-championship f2 and has a position of 2, as well as a date of 9/1952?", "context": "CREATE TABLE table_name_51 (driver VARCHAR, date VARCHAR, position VARCHAR, team VARCHAR, class VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_85 WHERE result = \"w 16-13\" AND week < 12", "question": "How many people attended the game with a result of w 16-13 and a week earlier than 12?", "context": "CREATE TABLE table_name_85 (attendance INTEGER, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(total_apps) FROM table_name_41 WHERE total_goals = 0 AND fa_cup_goals > 0", "question": "It has fa cup goals larger than 0 and total goals of 0, what is the average total apps?", "context": "CREATE TABLE table_name_41 (total_apps INTEGER, total_goals VARCHAR, fa_cup_goals VARCHAR)"}, {"answer": "SELECT COUNT(total_apps) FROM table_name_6 WHERE fa_cup_goals < 4 AND fa_cup_apps > 7", "question": "It has a FA Cup Goals smaller than 4, and a FA Cup Apps larger than 7, what is the total number of total apps?", "context": "CREATE TABLE table_name_6 (total_apps VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT COUNT(total_goals) FROM table_name_20 WHERE fa_cup_apps > 1 AND total_apps = 37 AND league_apps < 30", "question": "The total goals have a FA Cup Apps larger than 1, and a Total Apps of 37, and a League Apps smaller than 30?, what is the total number?", "context": "CREATE TABLE table_name_20 (total_goals VARCHAR, league_apps VARCHAR, fa_cup_apps VARCHAR, total_apps VARCHAR)"}, {"answer": "SELECT result FROM table_name_63 WHERE week < 4 AND record = \"1-0\"", "question": "What is the result when the record was 1-0 and it was earlier than week 4?", "context": "CREATE TABLE table_name_63 (result VARCHAR, week VARCHAR, record VARCHAR)"}, {"answer": "SELECT bore_ & _stroke FROM table_name_28 WHERE carburetor = \"4-barrel\" AND vin_code = \"a\"", "question": "What are the bore & stroke specifications for an engine with 4-barrel carburetor and VIN code of A?", "context": "CREATE TABLE table_name_28 (bore_ VARCHAR, _stroke VARCHAR, carburetor VARCHAR, vin_code VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_43 WHERE attendance = \"unknown\" AND result = \"lost 2-0\"", "question": "Which opponent has unknown attendance, and lost 2-0?", "context": "CREATE TABLE table_name_43 (opponent VARCHAR, attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_89 WHERE opponent = \"leeds united\"", "question": "What is the result from the Leeds United opponent?", "context": "CREATE TABLE table_name_89 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_27 WHERE opponent = \"middlesbrough\"", "question": "What is the attendance rate for the Middlesbrough opponent?", "context": "CREATE TABLE table_name_27 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT local_letter FROM table_name_28 WHERE capital = \"funadhoo\"", "question": "The capital of funadhoo has what local letter?", "context": "CREATE TABLE table_name_28 (local_letter VARCHAR, capital VARCHAR)"}, {"answer": "SELECT venue FROM table_name_90 WHERE extra = \"short race\" AND year < 1999", "question": "Tell me the venue for extra of short race and year less than 1999", "context": "CREATE TABLE table_name_90 (venue VARCHAR, extra VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_12 WHERE result = \"5th\"", "question": "Tell me the sum of year for 5th result", "context": "CREATE TABLE table_name_12 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT extra FROM table_name_14 WHERE tournament = \"olympic games\"", "question": "Tell me the extra for tournament of olympic games", "context": "CREATE TABLE table_name_14 (extra VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_98 WHERE result = \"9th\"", "question": "Tell me the highest year for result of 9th", "context": "CREATE TABLE table_name_98 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT shigella FROM table_name_52 WHERE yersinia = \"yopb\"", "question": "Tell me the shigella for yersinia yopb", "context": "CREATE TABLE table_name_52 (shigella VARCHAR, yersinia VARCHAR)"}, {"answer": "SELECT shigella FROM table_name_15 WHERE yersinia = \"yscn\"", "question": "Tell me the shigella and yscn", "context": "CREATE TABLE table_name_15 (shigella VARCHAR, yersinia VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_39 WHERE date = \"november 24, 1996\"", "question": "Tell me the opponent for november 24, 1996", "context": "CREATE TABLE table_name_39 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_86 WHERE attendance = \"60,894\"", "question": "Tell me the tv time for attendance of 60,894", "context": "CREATE TABLE table_name_86 (tv_time VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_37 WHERE attendance = \"60,894\"", "question": "Tell me the lowest week for attendance of 60,894", "context": "CREATE TABLE table_name_37 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT ensemble_name FROM table_name_79 WHERE advertisement_date = \"october 2007\"", "question": "Which Ensemble Name has the Advertisement date October 2007?", "context": "CREATE TABLE table_name_79 (ensemble_name VARCHAR, advertisement_date VARCHAR)"}, {"answer": "SELECT winning_applicant FROM table_name_39 WHERE block = \"10b\" AND area = \"derbyshire\"", "question": "Who is the Winning Applicant of Block 10B in Derbyshire Area?", "context": "CREATE TABLE table_name_39 (winning_applicant VARCHAR, block VARCHAR, area VARCHAR)"}, {"answer": "SELECT block FROM table_name_25 WHERE area = \"northamptonshire\"", "question": "Which Block does Northamptonshire Area have?", "context": "CREATE TABLE table_name_25 (block VARCHAR, area VARCHAR)"}, {"answer": "SELECT advertisement_date FROM table_name_17 WHERE block = \"10c\" AND ensemble_name = \"muxco gloucestershire\"", "question": "What is Ensemble Name Muxco Gloucestershire's Advertisement Date in Block 10C?", "context": "CREATE TABLE table_name_17 (advertisement_date VARCHAR, block VARCHAR, ensemble_name VARCHAR)"}, {"answer": "SELECT ensemble_name FROM table_name_29 WHERE area = \"oxfordshire\"", "question": "What is Oxfordshire Area's Ensemble Name?", "context": "CREATE TABLE table_name_29 (ensemble_name VARCHAR, area VARCHAR)"}, {"answer": "SELECT winning_applicant FROM table_name_45 WHERE block = \"10d\" AND ensemble_name = \"muxco lincolnshire\"", "question": "Who is the Winning Applicant of Ensemble Name Muxco Lincolnshire in Block 10D?", "context": "CREATE TABLE table_name_45 (winning_applicant VARCHAR, block VARCHAR, ensemble_name VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_43 WHERE venue = \"glenferrie oval\"", "question": "What was the average crowd size of games held at Glenferrie Oval?", "context": "CREATE TABLE table_name_43 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_81 WHERE crowd > 24 OFFSET 637", "question": "What was the home team's score at the game attended by more than 24,637?", "context": "CREATE TABLE table_name_81 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT time FROM table_name_89 WHERE points = 1", "question": "What was the time for the man who scored 1 point?", "context": "CREATE TABLE table_name_89 (time VARCHAR, points VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_56 WHERE venue = \"mcg\"", "question": "Who was the away team when the VFL played at MCG?", "context": "CREATE TABLE table_name_56 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_49 WHERE venue = \"mcg\"", "question": "What was the crowd when the VFL played MCG?", "context": "CREATE TABLE table_name_49 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_70 WHERE home_team = \"melbourne\"", "question": "What was the crowd when Melbourne was the home team?", "context": "CREATE TABLE table_name_70 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_24 WHERE nationality = \"sweden\" AND split__50m_ < 26.25", "question": "What is the total of lane(s) for swimmers from Sweden with a 50m split of faster than 26.25?", "context": "CREATE TABLE table_name_24 (lane INTEGER, nationality VARCHAR, split__50m_ VARCHAR)"}, {"answer": "SELECT MAX(split__50m_) FROM table_name_8 WHERE time = 53.74 AND lane < 3", "question": "What is the slowest 50m split time for a total of 53.74 in a lane of less than 3?", "context": "CREATE TABLE table_name_8 (split__50m_ INTEGER, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT SUM(split__50m_) FROM table_name_24 WHERE name = \"josefin lillhage\" AND lane > 8", "question": "What is the total sum of 50m splits for josefin lillhage in lanes above 8?", "context": "CREATE TABLE table_name_24 (split__50m_ INTEGER, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_60 WHERE home_team = \"st kilda\"", "question": "What was the score for the home team St Kilda?", "context": "CREATE TABLE table_name_60 (home_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_81 WHERE away_team = \"collingwood\"", "question": "What is the average crowd size when Collingwood is the away team?", "context": "CREATE TABLE table_name_81 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT name FROM table_name_81 WHERE assumed_office = 2013 AND district = \"o\"", "question": "What is the name of the Senator in the O District who assumed office in 2013?", "context": "CREATE TABLE table_name_81 (name VARCHAR, assumed_office VARCHAR, district VARCHAR)"}, {"answer": "SELECT 1944 FROM table_name_52 WHERE tournament = \"u.s. championships\"", "question": "What is the 1944 result for the U.S. Championships?", "context": "CREATE TABLE table_name_52 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_30 WHERE 1954 = \"a\" AND 1942 = \"nh\"", "question": "What is the tournament that had a result of A in 1954 and NH in 1942?", "context": "CREATE TABLE table_name_30 (tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE home_team = \"fitzroy\"", "question": "When was Fitzroy the home team?", "context": "CREATE TABLE table_name_94 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_74 WHERE home_team = \"geelong\"", "question": "Where did Geelong play a home game?", "context": "CREATE TABLE table_name_74 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_38 WHERE played < 4", "question": "What is the sum of losses for teams with less than 4 games played?", "context": "CREATE TABLE table_name_38 (lost INTEGER, played INTEGER)"}, {"answer": "SELECT rider_status FROM table_name_77 WHERE team_country = \"netherlands\" AND year = 1971", "question": "What is the rider status for the 1971 netherlands team?", "context": "CREATE TABLE table_name_77 (rider_status VARCHAR, team_country VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner FROM table_name_74 WHERE rider_status = \"amateur\" AND year = 1973", "question": "Who was the winner in 1973 with an amateur rider status?", "context": "CREATE TABLE table_name_74 (winner VARCHAR, rider_status VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_28 WHERE winner = \"phil anderson\"", "question": "What is the latest year when Phil Anderson won?", "context": "CREATE TABLE table_name_28 (year INTEGER, winner VARCHAR)"}, {"answer": "SELECT team_country FROM table_name_54 WHERE year > 1958 AND race_name = \"kellogg's tour\"", "question": "What ream played later than 1958 in the kellogg's tour?", "context": "CREATE TABLE table_name_54 (team_country VARCHAR, year VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_54 WHERE car__number > 1 AND make = \"ford\" AND points = 155", "question": "What is the sum of laps that has a car number of larger than 1, is a ford, and has 155 points?", "context": "CREATE TABLE table_name_54 (laps INTEGER, points VARCHAR, car__number VARCHAR, make VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_99 WHERE points < 118 AND driver = \"kyle petty\"", "question": "What is the lowest number of laps for kyle petty with under 118 points?", "context": "CREATE TABLE table_name_99 (laps INTEGER, points VARCHAR, driver VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_86 WHERE venue = \"brunswick street oval\"", "question": "Who was the away team that played Fitzroy on May 13, 1950 at Brunswick Street Oval.", "context": "CREATE TABLE table_name_86 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_55 WHERE venue = \"windy hill\"", "question": "What was the lowest crowd size at the Windy Hill venue?", "context": "CREATE TABLE table_name_55 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_33 WHERE home_team = \"geelong\"", "question": "Which venue's home team is geelong?", "context": "CREATE TABLE table_name_33 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_72 WHERE away_team = \"north melbourne\"", "question": "How many people in the crowd with north melbourne as an away team?", "context": "CREATE TABLE table_name_72 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_77 WHERE date = \"4 june 1927\" AND venue = \"corio oval\"", "question": "Which team was at Corio Oval on 4 June 1927?", "context": "CREATE TABLE table_name_77 (away_team VARCHAR, date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_50 WHERE away_team = \"richmond\"", "question": "What was the home team score for the Richmond away team?", "context": "CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT rider FROM table_name_17 WHERE time = \"1:54.26.6\"", "question": "Which rider had a time of 1:54.26.6?", "context": "CREATE TABLE table_name_17 (rider VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_75 WHERE team = \"suzuki\" AND rider = \"peter berwick\"", "question": "What was the time for Peter Berwick of Team Suzuki?", "context": "CREATE TABLE table_name_75 (time VARCHAR, team VARCHAR, rider VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_51 WHERE venue = \"punt road oval\"", "question": "What was the home team's score at the game held at Punt Road Oval?", "context": "CREATE TABLE table_name_51 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_79 WHERE crowd > 24 OFFSET 000", "question": "What was the home team's score at the game that had a crowd larger than 24,000?", "context": "CREATE TABLE table_name_79 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT position FROM table_name_92 WHERE school_country = \"arizona state\"", "question": "What position was for Arizona State?", "context": "CREATE TABLE table_name_92 (position VARCHAR, school_country VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_59 WHERE away_team = \"north melbourne\"", "question": "Who was the home team for the game where North Melbourne was the away team?", "context": "CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT format FROM table_name_93 WHERE label = \"candlelight records\" AND catalog = \"candle053tin\"", "question": "What was the Candlelight Records Catalog of Candle053tin format?", "context": "CREATE TABLE table_name_93 (format VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_98 WHERE label = \"candlelight records\"", "question": "What is Candlelight Records format?", "context": "CREATE TABLE table_name_98 (format VARCHAR, label VARCHAR)"}, {"answer": "SELECT year FROM table_name_79 WHERE region = \"japan\"", "question": "What year did Japan form a label?", "context": "CREATE TABLE table_name_79 (year VARCHAR, region VARCHAR)"}, {"answer": "SELECT name FROM table_name_64 WHERE length > 903", "question": "What name is associated with a longer length than 903?", "context": "CREATE TABLE table_name_64 (name VARCHAR, length INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_name_32 WHERE player = \"landon donovan\"", "question": "What is the sum of all the years that Landon Donovan won the ESPY award?", "context": "CREATE TABLE table_name_32 (year VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(uninterrupted_rank) FROM table_name_87 WHERE name = \"john dingell\"", "question": "How many uninterrupted ranks does john dingell have?", "context": "CREATE TABLE table_name_87 (uninterrupted_rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_14 WHERE total_tenure_time = \"36 years, 0 days\" AND uninterrupted_time = \"36 years, 0 days\" AND total_tenure_rank = 49", "question": "Who has a total tenure time and uninterrupted time of 36 years, 0 days, as well as a total tenure rank of 49?", "context": "CREATE TABLE table_name_14 (name VARCHAR, total_tenure_rank VARCHAR, total_tenure_time VARCHAR, uninterrupted_time VARCHAR)"}, {"answer": "SELECT match_points FROM table_name_8 WHERE points_against = \"570\"", "question": "What is the value of match points when the points for is 570?", "context": "CREATE TABLE table_name_8 (match_points VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT match_points FROM table_name_6 WHERE lost = \"18\" AND bonus_points = \"11\"", "question": "What is the amount of match points for a club that lost 18 and has 11 bonus points?", "context": "CREATE TABLE table_name_6 (match_points VARCHAR, lost VARCHAR, bonus_points VARCHAR)"}, {"answer": "SELECT diff FROM table_name_46 WHERE points_for = \"662\"", "question": "What is the diff for a club that has a value of 662 for points for?", "context": "CREATE TABLE table_name_46 (diff VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT games FROM table_name_26 WHERE points_for = \"595\"", "question": "What is the number of games for a club that has a value of 595 for points for?", "context": "CREATE TABLE table_name_26 (games VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT games FROM table_name_39 WHERE match_points = \"34\"", "question": "What is the number of games for a club that has 34 match points?", "context": "CREATE TABLE table_name_39 (games VARCHAR, match_points VARCHAR)"}, {"answer": "SELECT bonus_points FROM table_name_35 WHERE club = \"colomiers\"", "question": "How many bonus points did the Colomiers earn?", "context": "CREATE TABLE table_name_35 (bonus_points VARCHAR, club VARCHAR)"}, {"answer": "SELECT venue FROM table_name_13 WHERE date = \"12 november 2005\"", "question": "What is the venue for the event on 12 November 2005?", "context": "CREATE TABLE table_name_13 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_98 WHERE date = \"27 july 2004\"", "question": "What is the competition that occured on 27 July 2004?", "context": "CREATE TABLE table_name_98 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_33 WHERE date = \"20 november 2002\"", "question": "What is the venue of the game on 20 November 2002?", "context": "CREATE TABLE table_name_33 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE date = \"16 august 2006\"", "question": "What was the score of the game played on 16 August 2006?", "context": "CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_35 WHERE venue = \"brunswick street oval\"", "question": "How large was the crowd at Brunswick Street Oval?", "context": "CREATE TABLE table_name_35 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_4 WHERE away_team = \"richmond\"", "question": "How big was the crowd when the away team was Richmond?", "context": "CREATE TABLE table_name_4 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_19 WHERE home_team = \"fitzroy\"", "question": "What was the largest crowd where the home team was Fitzroy?", "context": "CREATE TABLE table_name_19 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_87 WHERE home_team = \"fitzroy\"", "question": "What was the venue where Fitzroy played as the home team?", "context": "CREATE TABLE table_name_87 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_88 WHERE home_team = \"north melbourne\"", "question": "Who was the away team playing the home team North Melbourne?", "context": "CREATE TABLE table_name_88 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_88 WHERE engine = \"cosworth dfv v8\" AND driver = \"warren booth\"", "question": "Who built Warren Booth's car with the Cosworth DFV V8 engine?", "context": "CREATE TABLE table_name_88 (constructor VARCHAR, engine VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine FROM table_name_48 WHERE entrant = \"colin bennett racing\" AND chassis = \"811\"", "question": "What engine is used by Colin Bennett Racing with an 811 chassis?", "context": "CREATE TABLE table_name_48 (engine VARCHAR, entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_92 WHERE constructor = \"brm\"", "question": "What team used the BRM built car?", "context": "CREATE TABLE table_name_92 (entrant VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_76 WHERE driver = \"jim crawford\"", "question": "Who built the Jim Crawford car?", "context": "CREATE TABLE table_name_76 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_36 WHERE constructor = \"shadow\"", "question": "What chassis does the shadow built car use?", "context": "CREATE TABLE table_name_36 (chassis VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_68 WHERE engine = \"cosworth dfv v8\" AND chassis = \"dn9\"", "question": "What team uses a Cosworth DFV V8 engine and DN9 Chassis?", "context": "CREATE TABLE table_name_68 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT AVG(population__1960_) FROM table_name_41 WHERE county = \"oslo\" AND population__2000_ > 507 OFFSET 467", "question": "What was Oslo's population in 1960, with a population of 507,467 in 2000?", "context": "CREATE TABLE table_name_41 (population__1960_ INTEGER, county VARCHAR, population__2000_ VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_95 WHERE attendance = 61 OFFSET 985", "question": "What is the sum of week number(s) had an attendance of 61,985?", "context": "CREATE TABLE table_name_95 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_16 WHERE venue = \"princes park\"", "question": "What is the home team's score when the venue is princes park?", "context": "CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_99 WHERE home_team = \"north melbourne\"", "question": "What is the away team when north melbourne is at home?", "context": "CREATE TABLE table_name_99 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_15 WHERE number_of_dances = 6 AND total > 128", "question": "What is the highest average that has 6 dances and a total of over 128?", "context": "CREATE TABLE table_name_15 (average INTEGER, number_of_dances VARCHAR, total VARCHAR)"}, {"answer": "SELECT party FROM table_name_19 WHERE net_gain_loss = \"-2\"", "question": "Which party has a net gain/loss of -2?", "context": "CREATE TABLE table_name_19 (party VARCHAR, net_gain_loss VARCHAR)"}, {"answer": "SELECT seats FROM table_name_38 WHERE net_gain_loss = \"0\" AND party = \"swedish people's party\"", "question": "When the Swedish People's Party had a net gain/loss of 0, how many seats did they have?", "context": "CREATE TABLE table_name_38 (seats VARCHAR, net_gain_loss VARCHAR, party VARCHAR)"}, {"answer": "SELECT _percentage_of_seats FROM table_name_74 WHERE net_gain_loss = \"+34\"", "question": "When there was a net gain/loss of +34, what was the percentage of seats that party held?", "context": "CREATE TABLE table_name_74 (_percentage_of_seats VARCHAR, net_gain_loss VARCHAR)"}, {"answer": "SELECT seats FROM table_name_71 WHERE _percentage_of_votes = \"8.1\"", "question": "Regarding the seats that casted 8.1% of the vote how many seats were held?", "context": "CREATE TABLE table_name_71 (seats VARCHAR, _percentage_of_votes VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_86 WHERE home_team = \"footscray\"", "question": "How many points does footscray score as the home side?", "context": "CREATE TABLE table_name_86 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_87 WHERE away_team = \"richmond\"", "question": "What is the home team's score when richmond is away?", "context": "CREATE TABLE table_name_87 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_36 WHERE conv = \"0\" AND date = \"04/05/1999\"", "question": "What player played on 04/05/1999 with a conv of 0?", "context": "CREATE TABLE table_name_36 (player VARCHAR, conv VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE venue = \"nuku'alofa\" AND player = \"josh taumalolo\"", "question": "What date did Josh Taumalolo play at Nuku'alofa?", "context": "CREATE TABLE table_name_49 (date VARCHAR, venue VARCHAR, player VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_37 WHERE away_team = \"st kilda\"", "question": "What is the home team score when the away team is St Kilda?", "context": "CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_95 WHERE away_team = \"melbourne\"", "question": "What is the home team score when the away team is Melbourne?", "context": "CREATE TABLE table_name_95 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_38 WHERE venue = \"punt road oval\"", "question": "What is the home team for punt road oval?", "context": "CREATE TABLE table_name_38 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT country FROM table_name_60 WHERE youth__15_24__literacy_rate_total = \"100%\" AND adult_women = \"92%\"", "question": "Which country has a Youth (15-24) Literacy Rate Total of 100% and has an Adult Women Literacy rate of 92%?", "context": "CREATE TABLE table_name_60 (country VARCHAR, youth__15_24__literacy_rate_total VARCHAR, adult_women VARCHAR)"}, {"answer": "SELECT country FROM table_name_62 WHERE year__most_recent_ = 2005 AND adult_men = \"96%\"", "question": "Which country has its most recent year as being 2005 and has an Adult Men literacy rate of 96%?", "context": "CREATE TABLE table_name_62 (country VARCHAR, year__most_recent_ VARCHAR, adult_men VARCHAR)"}, {"answer": "SELECT country FROM table_name_50 WHERE youth__15_24__literacy_rate_total = \"99%\" AND youth_men = \"98%\"", "question": "What country has a Youth (15-24) Literacy Rate Total of 99%, and a Youth Men of 98%?", "context": "CREATE TABLE table_name_50 (country VARCHAR, youth__15_24__literacy_rate_total VARCHAR, youth_men VARCHAR)"}, {"answer": "SELECT institution FROM table_name_30 WHERE type = \"public\" AND nickname = \"grenadiers\"", "question": "Which public college has a nickname of The Grenadiers?", "context": "CREATE TABLE table_name_30 (institution VARCHAR, type VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_name_83 WHERE type = \"private\" AND nickname = \"mountaineers\"", "question": "Which of the private colleges is the oldest, and whose nickname is the Mountaineers?", "context": "CREATE TABLE table_name_83 (founded INTEGER, type VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT institution FROM table_name_85 WHERE enrollment < 1 OFFSET 000", "question": "Which college's enrollment is less than 1,000?", "context": "CREATE TABLE table_name_85 (institution VARCHAR, enrollment INTEGER)"}, {"answer": "SELECT date FROM table_name_19 WHERE away_team = \"essendon\"", "question": "On what date does Essendon play as the away team?", "context": "CREATE TABLE table_name_19 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(goal_gain) FROM table_name_31 WHERE game < 18", "question": "What team with a Game smaller than 18 has the lowest Goal Gain?", "context": "CREATE TABLE table_name_31 (goal_gain INTEGER, game INTEGER)"}, {"answer": "SELECT nationality FROM table_name_55 WHERE school_country = \"baylor\"", "question": "What was the nationality of every player that attended Baylor?", "context": "CREATE TABLE table_name_55 (nationality VARCHAR, school_country VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_6 WHERE venue = \"punt road oval\"", "question": "Which team was the away team when the game was at punt road oval?", "context": "CREATE TABLE table_name_6 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_38 WHERE home_team = \"fitzroy\"", "question": "What was the score for the away team when the home team was Fitzroy?", "context": "CREATE TABLE table_name_38 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE away_team = \"south melbourne\"", "question": "What was the date of the game when the away team was south melbourne?", "context": "CREATE TABLE table_name_77 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT glendale FROM table_name_87 WHERE pasadena = \"14%\"", "question": "What is the percentage of Glendale when Pasadena is 14%?", "context": "CREATE TABLE table_name_87 (glendale VARCHAR, pasadena VARCHAR)"}, {"answer": "SELECT tujunga FROM table_name_37 WHERE pasadena = \"33%\"", "question": "What is the percentage of Tujunja when Pasadena is 33%?", "context": "CREATE TABLE table_name_37 (tujunga VARCHAR, pasadena VARCHAR)"}, {"answer": "SELECT tujunga FROM table_name_33 WHERE la_crescenta__montrose = \"28%\"", "question": "What is the percentage of Tukunga when La Crescenta-Montrose is 28%?", "context": "CREATE TABLE table_name_33 (tujunga VARCHAR, la_crescenta__montrose VARCHAR)"}, {"answer": "SELECT pasadena FROM table_name_11 WHERE tujunga = \"36\"", "question": "What is the figure for Pasadena when Tujunga is 36?", "context": "CREATE TABLE table_name_11 (pasadena VARCHAR, tujunga VARCHAR)"}, {"answer": "SELECT glendale FROM table_name_20 WHERE la_ca\u00f1ada_flintridge = \"5%\"", "question": "What is the percentage of Glendale when La Canada Flintridge is 5%?", "context": "CREATE TABLE table_name_20 (glendale VARCHAR, la_ca\u00f1ada_flintridge VARCHAR)"}, {"answer": "SELECT la_crescenta__montrose FROM table_name_64 WHERE glendale = \"$57,112\"", "question": "What is the figure for La Crescenta-Montrose when Gelndale is $57,112?", "context": "CREATE TABLE table_name_64 (la_crescenta__montrose VARCHAR, glendale VARCHAR)"}, {"answer": "SELECT conv FROM table_name_39 WHERE pens = \"0\" AND tries = \"0\"", "question": "How many conversions had 0 pens and 0 tries?", "context": "CREATE TABLE table_name_39 (conv VARCHAR, pens VARCHAR, tries VARCHAR)"}, {"answer": "SELECT conv FROM table_name_49 WHERE pens = \"0\" AND player = \"severo koroduadua waqanibau\"", "question": "How many conversions did Severo Koroduadua Waqanibau have when he has 0 pens?", "context": "CREATE TABLE table_name_49 (conv VARCHAR, pens VARCHAR, player VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_54 WHERE venue = \"mcg\"", "question": "What is the home team's score at mcg?", "context": "CREATE TABLE table_name_54 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE venue = \"western oval\"", "question": "What day is the venue the western oval?", "context": "CREATE TABLE table_name_33 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT bullet_diameter FROM table_name_22 WHERE name = \"11.4mm werndl m/73\"", "question": "Which Bullet diameter has a Name of 11.4mm werndl m/73?", "context": "CREATE TABLE table_name_22 (bullet_diameter VARCHAR, name VARCHAR)"}, {"answer": "SELECT case_length FROM table_name_90 WHERE rim_diameter = \"13.20 (.518)\"", "question": "Which Case length has a Rim diameter of 13.20 (.518)?", "context": "CREATE TABLE table_name_90 (case_length VARCHAR, rim_diameter VARCHAR)"}, {"answer": "SELECT bullet_diameter FROM table_name_32 WHERE neck_diameter = \"12.17 (.479)\"", "question": "Which Bullet diameter has a Neck diameter of 12.17 (.479)?", "context": "CREATE TABLE table_name_32 (bullet_diameter VARCHAR, neck_diameter VARCHAR)"}, {"answer": "SELECT rim_diameter FROM table_name_27 WHERE neck_diameter = \"11.84 (.466)\"", "question": "Which Rim diameter has a Neck diameter of 11.84 (.466)?", "context": "CREATE TABLE table_name_27 (rim_diameter VARCHAR, neck_diameter VARCHAR)"}, {"answer": "SELECT case_type FROM table_name_57 WHERE cartridge_length = \"64.77 (2.550)\"", "question": "Which Case type has a Cartridge length of 64.77 (2.550)?", "context": "CREATE TABLE table_name_57 (case_type VARCHAR, cartridge_length VARCHAR)"}, {"answer": "SELECT case_type FROM table_name_29 WHERE base_diameter = \"13.03 (.513)\" AND case_length = \"63.5 (2.5)\"", "question": "Which Case type has a Base diameter of 13.03 (.513), and a Case length of 63.5 (2.5)?", "context": "CREATE TABLE table_name_29 (case_type VARCHAR, base_diameter VARCHAR, case_length VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE attendance = \"37,500\"", "question": "What day had 37,500 attending?", "context": "CREATE TABLE table_name_56 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE game_site = \"candlestick park\"", "question": "What day did they play at candlestick park?", "context": "CREATE TABLE table_name_77 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_96 WHERE away_team = \"fitzroy\"", "question": "What is the crowd size of the game when Fitzroy is the away team?", "context": "CREATE TABLE table_name_96 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_27 WHERE away_team = \"geelong\"", "question": "What is the venue when Geelong is the away team?", "context": "CREATE TABLE table_name_27 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(dwellings) FROM table_name_37 WHERE neighbourhood = \"beverly heights\" AND change___percentage_ > -5.2", "question": "How many Dwellings does Beverly Heights have that have a change percent larger than -5.2?", "context": "CREATE TABLE table_name_37 (dwellings INTEGER, neighbourhood VARCHAR, change___percentage_ VARCHAR)"}, {"answer": "SELECT COUNT(density__people_km_2__) FROM table_name_95 WHERE area__km_2__ > 1.38 AND population__2012_ > 12924", "question": "What is the density of an area that is 1.38km and has a population more than 12924?", "context": "CREATE TABLE table_name_95 (density__people_km_2__ VARCHAR, area__km_2__ VARCHAR, population__2012_ VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_75 WHERE attendance < 22 OFFSET 604", "question": "What is the average week number of all the matches where less than 22,604 people attended?", "context": "CREATE TABLE table_name_75 (week INTEGER, attendance INTEGER)"}, {"answer": "SELECT MAX(attendance) FROM table_name_20 WHERE opponent = \"chicago cardinals\" AND week > 10", "question": "What is the largest crowd size at a match against the Chicago Cardinals after Week 10 of the season?", "context": "CREATE TABLE table_name_20 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_33 WHERE away_team = \"north melbourne\"", "question": "What is the average crowd size when North Melbourne is the away team?", "context": "CREATE TABLE table_name_33 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_29 WHERE away_team = \"hawthorn\"", "question": "What is the average crowd to watch Hawthorn as the away team?", "context": "CREATE TABLE table_name_29 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_92 WHERE home_team = \"footscray\"", "question": "What away team played Footscray?", "context": "CREATE TABLE table_name_92 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_41 WHERE away_team = \"essendon\"", "question": "What was the size of the largest crowd that Essendon played in front of as the away team?", "context": "CREATE TABLE table_name_41 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_9 WHERE venue = \"western oval\"", "question": "What was the average crowd at Western Oval?", "context": "CREATE TABLE table_name_9 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_74 WHERE home_team = \"north melbourne\"", "question": "What is the sum of all the crowds that watched North Melbourne at home?", "context": "CREATE TABLE table_name_74 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_18 WHERE venue = \"victoria park\"", "question": "What was the crowd size at Victoria Park?", "context": "CREATE TABLE table_name_18 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_82 WHERE margin_of_victory = \"9 strokes\"", "question": "What was the winning score when there were 9 strokes advantage?", "context": "CREATE TABLE table_name_82 (winning_score VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_56 WHERE date = \"apr 23, 1967\"", "question": "What was the margin of victory on Apr 23, 1967?", "context": "CREATE TABLE table_name_56 (margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT make FROM table_name_32 WHERE driver = \"brian vickers\"", "question": "What make of car did Brian Vickers drive?", "context": "CREATE TABLE table_name_32 (make VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(car__number) FROM table_name_12 WHERE points = \"109\"", "question": "What is the average car number of all the drivers with 109 points?", "context": "CREATE TABLE table_name_12 (car__number INTEGER, points VARCHAR)"}, {"answer": "SELECT AVG(car__number) FROM table_name_21 WHERE winnings = \"$111,683\"", "question": "What is the average car number of all the drivers who have won $111,683?", "context": "CREATE TABLE table_name_21 (car__number INTEGER, winnings VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_78 WHERE home_team = \"essendon\"", "question": "How many people were in the crowd when Essendon was the home team?", "context": "CREATE TABLE table_name_78 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_16 WHERE away_team = \"geelong\"", "question": "Which home team competed against the away team Geelong?", "context": "CREATE TABLE table_name_16 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_32 WHERE venue = \"mcg\"", "question": "How many people were present in a total of every crowd at the MCG venue?", "context": "CREATE TABLE table_name_32 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_71 WHERE home_team = \"essendon\"", "question": "What was the score for the home team of Essendon?", "context": "CREATE TABLE table_name_71 (home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_35 WHERE venue = \"glenferrie oval\"", "question": "What is the sum of all crowds present at the Glenferrie Oval venue?", "context": "CREATE TABLE table_name_35 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT party FROM table_name_28 WHERE mayor = \"achille variati\"", "question": "What party was achille variati afilliated with?", "context": "CREATE TABLE table_name_28 (party VARCHAR, mayor VARCHAR)"}, {"answer": "SELECT SUM(inhabitants) FROM table_name_57 WHERE party = \"five star movement\" AND election < 2012", "question": "In the election earlier than 2012 how many Inhabitants had a Party of five star movement?", "context": "CREATE TABLE table_name_57 (inhabitants INTEGER, party VARCHAR, election VARCHAR)"}, {"answer": "SELECT COUNT(inhabitants) FROM table_name_3 WHERE party = \"democratic party\" AND mayor = \"stefano cimatti\" AND election < 2009", "question": "How many Inhabitants were in the democratic party for an election before 2009 for Mayor of stefano cimatti?", "context": "CREATE TABLE table_name_3 (inhabitants VARCHAR, election VARCHAR, party VARCHAR, mayor VARCHAR)"}, {"answer": "SELECT time FROM table_name_76 WHERE speed = \"96.76mph\"", "question": "At 96.76mph speed, what is the Time?", "context": "CREATE TABLE table_name_76 (time VARCHAR, speed VARCHAR)"}, {"answer": "SELECT rider FROM table_name_92 WHERE time = \"1:06.02.0\"", "question": "Which Rider has a 1:06.02.0 Time?", "context": "CREATE TABLE table_name_92 (rider VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_8 WHERE rider = \"ray pickrell\"", "question": "How many Ranks have ray pickrell as a Rider?", "context": "CREATE TABLE table_name_8 (rank VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_49 WHERE away_team = \"hawthorn\"", "question": "What is the largest crowd when the away team is Hawthorn?", "context": "CREATE TABLE table_name_49 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE away_team = \"carlton\"", "question": "What date was the game when the away team was carlton?", "context": "CREATE TABLE table_name_45 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_83 WHERE crowd > 8 OFFSET 000", "question": "What is the score of the away team when the crowd was larger than 8,000?", "context": "CREATE TABLE table_name_83 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT away_team FROM table_name_53 WHERE venue = \"corio oval\"", "question": "What was the away team when the game was at corio oval?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT location FROM table_name_61 WHERE year = 2007", "question": "What is the location in 2007?", "context": "CREATE TABLE table_name_61 (location VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE theme = \"fate or fortune\"", "question": "What date has a theme of fate or fortune?", "context": "CREATE TABLE table_name_21 (date VARCHAR, theme VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_74 WHERE location = \"gelredome, arnhem\" AND anthem = \"technoboy - next dimensional world\"", "question": "What is the earliest year it was located in gelredome, arnhem, and a Anthem of technoboy - next dimensional world?", "context": "CREATE TABLE table_name_74 (year INTEGER, location VARCHAR, anthem VARCHAR)"}, {"answer": "SELECT sweet_sixteen FROM table_name_95 WHERE conference = \"colonial\"", "question": "What Sweet Sixteen team is in the Colonial conference?", "context": "CREATE TABLE table_name_95 (sweet_sixteen VARCHAR, conference VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE label = \"spunk\"", "question": "What date is associated with the Spunk label?", "context": "CREATE TABLE table_name_76 (date VARCHAR, label VARCHAR)"}, {"answer": "SELECT label FROM table_name_2 WHERE catalog = \"chem036cd\"", "question": "What label has a catalog of chem036cd?", "context": "CREATE TABLE table_name_2 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_86 WHERE region = \"united kingdom\" AND catalog = \"chem036\"", "question": "What label is associated with the United Kingdom and the chem036 catalog?", "context": "CREATE TABLE table_name_86 (label VARCHAR, region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_68 WHERE away_team = \"essendon\"", "question": "What is the listed crowd when essendon is the away squad?", "context": "CREATE TABLE table_name_68 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_98 WHERE crowd > 30 OFFSET 000", "question": "What venue featured a crowd of over 30,000?", "context": "CREATE TABLE table_name_98 (venue VARCHAR, crowd INTEGER)"}, {"answer": "SELECT crowd FROM table_name_28 WHERE venue = \"junction oval\"", "question": "What was the listed crowd at junction oval?", "context": "CREATE TABLE table_name_28 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE event = \"1500 m freestyle\"", "question": "What date was the 1500 m freestyle competition?", "context": "CREATE TABLE table_name_97 (date VARCHAR, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_3 WHERE meet = \"2008 championships\" AND time = \"7:56.90\"", "question": "Where were the 2008 championships with a time of 7:56.90 held?", "context": "CREATE TABLE table_name_3 (location VARCHAR, meet VARCHAR, time VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_22 WHERE home_team = \"footscray\"", "question": "What is the home team score for Footscray?", "context": "CREATE TABLE table_name_22 (home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_9 WHERE venue = \"western oval\"", "question": "What home team played at western oval?", "context": "CREATE TABLE table_name_9 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_48 WHERE week = 4", "question": "What was the score of the Browns week 4 game?", "context": "CREATE TABLE table_name_48 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT year FROM table_name_89 WHERE slogan = \"the wild side of soccer!\"", "question": "What year has the wild side of soccer! as the slogan?", "context": "CREATE TABLE table_name_89 (year VARCHAR, slogan VARCHAR)"}, {"answer": "SELECT lner_1946_no FROM table_name_20 WHERE year = \"1892\" AND lner_no = \"7347\u20137356\"", "question": "Which LNER 1946 number is from 1892 and has an LNER number of 7347\u20137356?", "context": "CREATE TABLE table_name_20 (lner_1946_no VARCHAR, year VARCHAR, lner_no VARCHAR)"}, {"answer": "SELECT lner_1946_no FROM table_name_88 WHERE order_no = \"s24\"", "question": "What is order S24's LNER 1946 number?", "context": "CREATE TABLE table_name_88 (lner_1946_no VARCHAR, order_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_85 WHERE venue = \"corio oval\"", "question": "Who is the away side at corio oval?", "context": "CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_47 WHERE away_team = \"melbourne\"", "question": "Who is the home team when melbourne is the away team?", "context": "CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_80 WHERE away_team = \"fitzroy\"", "question": "What is the venue when fitzroy was the away team?", "context": "CREATE TABLE table_name_80 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE venue = \"punt road oval\"", "question": "What day does the team play at punt road oval?", "context": "CREATE TABLE table_name_51 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_30 WHERE attendance > 84 OFFSET 816", "question": "How many weeks had an attendance larger than 84,816?", "context": "CREATE TABLE table_name_30 (week VARCHAR, attendance INTEGER)"}, {"answer": "SELECT date FROM table_name_57 WHERE week = 4", "question": "What is the date of week 4?", "context": "CREATE TABLE table_name_57 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_52 WHERE date = \"september 3, 1972\"", "question": "What is the lowest attendance on September 3, 1972?", "context": "CREATE TABLE table_name_52 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_65 WHERE venue = \"victoria park\"", "question": "Who was the away team at the game at Victoria Park?", "context": "CREATE TABLE table_name_65 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE away_team = \"footscray\"", "question": "When was the game when Footscray was the away team?", "context": "CREATE TABLE table_name_38 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_41 WHERE points = \"5\"", "question": "What is the highest number of laps for the driver with 5 points?", "context": "CREATE TABLE table_name_41 (laps INTEGER, points VARCHAR)"}, {"answer": "SELECT team FROM table_name_35 WHERE driver = \"jan heylen\"", "question": "What team does jan heylen race for?", "context": "CREATE TABLE table_name_35 (team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE week > 13 AND date = \"december 8, 1991\"", "question": "What was the result of the game after Week 13 on December 8, 1991?", "context": "CREATE TABLE table_name_14 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_43 WHERE week = 4", "question": "Who did the Patriots play in week 4?", "context": "CREATE TABLE table_name_43 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_37 WHERE date = \"december 22, 1991\"", "question": "What was the result of the game on December 22, 1991?", "context": "CREATE TABLE table_name_37 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_99 WHERE rank > 8", "question": "What is the fewest number of silver medals a nation who ranked below 8 received?", "context": "CREATE TABLE table_name_99 (silver INTEGER, rank INTEGER)"}, {"answer": "SELECT MIN(place) FROM table_name_44 WHERE points > 1 AND machine = \"bmw\" AND time = \"1:18.47.6\"", "question": "Which place has points larger than 1, a bmw machine, and a time of 1:18.47.6?", "context": "CREATE TABLE table_name_44 (place INTEGER, time VARCHAR, points VARCHAR, machine VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_53 WHERE make = \"chevrolet\" AND winnings = \"$97,508\"", "question": "How many total laps did the Chevrolet that won $97,508 make?", "context": "CREATE TABLE table_name_53 (laps VARCHAR, make VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_23 WHERE venue = \"brunswick street oval\"", "question": "What away team played at Brunswick Street Oval?", "context": "CREATE TABLE table_name_23 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_10 WHERE week > 16", "question": "What is the average attendance after week 16?", "context": "CREATE TABLE table_name_10 (attendance INTEGER, week INTEGER)"}, {"answer": "SELECT COUNT(injured) FROM table_name_83 WHERE place = \"east champaran, bihar\" AND killed > 2", "question": "How many people were injured in total in East Champaran, Bihar with more than 2 people killed?", "context": "CREATE TABLE table_name_83 (injured VARCHAR, place VARCHAR, killed VARCHAR)"}, {"answer": "SELECT MIN(injured) FROM table_name_83 WHERE place = \"dantewada, chhattisgarh\" AND killed = 8", "question": "What is the least amount of injuries in Dantewada, Chhattisgarh when 8 people were killed?", "context": "CREATE TABLE table_name_83 (injured INTEGER, place VARCHAR, killed VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_45 WHERE venue = \"princes park\"", "question": "Which team plays home at Princes Park?", "context": "CREATE TABLE table_name_45 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_58 WHERE away_team = \"hawthorn\"", "question": "Which match where Hawthorn was the away team had the largest crowd?", "context": "CREATE TABLE table_name_58 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_62 WHERE venue = \"western oval\"", "question": "What was the away team's score at the match played at The Western Oval?", "context": "CREATE TABLE table_name_62 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT air_date FROM table_name_39 WHERE winner = \"red\" AND challenge = \"emergency braking\"", "question": "What air date has a red winner and an emergency braking challenge?", "context": "CREATE TABLE table_name_39 (air_date VARCHAR, winner VARCHAR, challenge VARCHAR)"}, {"answer": "SELECT air_date FROM table_name_31 WHERE test_taker = \"robert\"", "question": "On which air date was Robert the test-taker?", "context": "CREATE TABLE table_name_31 (air_date VARCHAR, test_taker VARCHAR)"}, {"answer": "SELECT nation_of_citizenship FROM table_name_78 WHERE type_of_vehicle = \"stock car\" AND year = 1999", "question": "What Nation of citizenship has a stock car vehicle with a year of 1999?", "context": "CREATE TABLE table_name_78 (nation_of_citizenship VARCHAR, type_of_vehicle VARCHAR, year VARCHAR)"}, {"answer": "SELECT driver FROM table_name_71 WHERE type_of_vehicle = \"stock car\" AND year = 1999", "question": "What driver has a stock car vehicle with a year of 1999?", "context": "CREATE TABLE table_name_71 (driver VARCHAR, type_of_vehicle VARCHAR, year VARCHAR)"}, {"answer": "SELECT nation_of_citizenship FROM table_name_13 WHERE type_of_vehicle = \"stock car\" AND year = 2012", "question": "What Nation of citizenship has a stock car vehicle with a year of 2012?", "context": "CREATE TABLE table_name_13 (nation_of_citizenship VARCHAR, type_of_vehicle VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_90 WHERE type_of_vehicle = \"open wheel\" AND racing_series = \"formula one\" AND nation_of_citizenship = \"germany\"", "question": "What year has the vehicle of open wheel and a racing series of formula one with a Nation of citizenship in Germany.", "context": "CREATE TABLE table_name_90 (year VARCHAR, nation_of_citizenship VARCHAR, type_of_vehicle VARCHAR, racing_series VARCHAR)"}, {"answer": "SELECT MAX(route) FROM table_name_60 WHERE rank < 33 AND elevation = \"11,312 feet 3448 m\"", "question": "On what Route is the mountain with a Rank less than 33 and an Elevation of 11,312 feet 3448 m?", "context": "CREATE TABLE table_name_60 (route INTEGER, rank VARCHAR, elevation VARCHAR)"}, {"answer": "SELECT surface FROM table_name_68 WHERE route < 7", "question": "What is the Surface of the Route less than 7?", "context": "CREATE TABLE table_name_68 (surface VARCHAR, route INTEGER)"}, {"answer": "SELECT mountain_pass FROM table_name_87 WHERE rank = 21", "question": "What is the Mountain Pass with a 21 Rank?", "context": "CREATE TABLE table_name_87 (mountain_pass VARCHAR, rank VARCHAR)"}, {"answer": "SELECT elevation FROM table_name_1 WHERE route = 62", "question": "What is the Elevation of the mountain on Route 62?", "context": "CREATE TABLE table_name_1 (elevation VARCHAR, route VARCHAR)"}, {"answer": "SELECT mountain_pass FROM table_name_44 WHERE elevation = \"10,001 feet 3048 m\"", "question": "What Mountain Pass has an Elevation of 10,001 feet 3048 m?", "context": "CREATE TABLE table_name_44 (mountain_pass VARCHAR, elevation VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE visitor = \"ny rangers\" AND record = \"19\u201328\u201315\"", "question": "Which Score has a Visitor of ny rangers, and a Record of 19\u201328\u201315?", "context": "CREATE TABLE table_name_19 (score VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE date = \"february 9\"", "question": "Which Score has a Date of february 9?", "context": "CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_18 WHERE kickoff__et_ = \"1:00pm\" AND record = \"4\u20131\"", "question": "Which Game site has a Kickoff (ET) of 1:00pm, and a Record of 4\u20131?", "context": "CREATE TABLE table_name_18 (game_site VARCHAR, kickoff__et_ VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE game_site = \"heinz field\" AND record = \"3\u20131\"", "question": "Which Opponent has a Game site of heinz field, and a Record of 3\u20131?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, game_site VARCHAR, record VARCHAR)"}, {"answer": "SELECT kickoff__et_ FROM table_name_67 WHERE result = \"w 34\u201323\"", "question": "Which Kickoff (ET) has a Result of w 34\u201323?", "context": "CREATE TABLE table_name_67 (kickoff__et_ VARCHAR, result VARCHAR)"}, {"answer": "SELECT floors FROM table_name_61 WHERE location = \"ljubljana\" AND name = \"tr3\"", "question": "Which Floors have a Location of ljubljana, and a Name of tr3?", "context": "CREATE TABLE table_name_61 (floors VARCHAR, location VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_27 WHERE name = \"maribor cathedral\"", "question": "Which Rank is the lowest one that has a Name of maribor cathedral?", "context": "CREATE TABLE table_name_27 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_32 WHERE location = \"ljubljana\"", "question": "Which Name has a Location of ljubljana?", "context": "CREATE TABLE table_name_32 (name VARCHAR, location VARCHAR)"}, {"answer": "SELECT height_metres___feet FROM table_name_18 WHERE rank = 8 AND floors = \"3x17\"", "question": "Which Height Metres / feet has a Rank of 8, and Floors of 3x17?", "context": "CREATE TABLE table_name_18 (height_metres___feet VARCHAR, rank VARCHAR, floors VARCHAR)"}, {"answer": "SELECT time FROM table_name_62 WHERE location = \"moscow, russia\"", "question": "What is the time for Moscow, Russia?", "context": "CREATE TABLE table_name_62 (time VARCHAR, location VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_62 WHERE location = \"london, england\" AND round < 2", "question": "Who was the opponent in London, England in a round less than 2?", "context": "CREATE TABLE table_name_62 (opponent VARCHAR, location VARCHAR, round VARCHAR)"}, {"answer": "SELECT method FROM table_name_94 WHERE opponent = \"ivan serati\"", "question": "What was the method for opponent of Ivan Serati?", "context": "CREATE TABLE table_name_94 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_35 WHERE opponent = \"yasuhito namekawa\" AND method = \"decision\"", "question": "Which event had an opponent of Yasuhito Namekawa with a decision method?", "context": "CREATE TABLE table_name_35 (event VARCHAR, opponent VARCHAR, method VARCHAR)"}, {"answer": "SELECT time FROM table_name_78 WHERE opponent = \"satoshi honma\"", "question": "What is the time for an opponent of Satoshi Honma?", "context": "CREATE TABLE table_name_78 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT manufacturer_serial_numbers FROM table_name_86 WHERE year_s__withdrawn = \"1963\"", "question": "What is the manufacturer serial number of the 1963 withdrawn year?", "context": "CREATE TABLE table_name_86 (manufacturer_serial_numbers VARCHAR, year_s__withdrawn VARCHAR)"}, {"answer": "SELECT year_introduced_mrwa FROM table_name_76 WHERE wheel_arrangement = \"4-6-2\"", "question": "What was the year the MRWA with a wheel arrangement of 4-6-2 was introduced?", "context": "CREATE TABLE table_name_76 (year_introduced_mrwa VARCHAR, wheel_arrangement VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_34 WHERE round = 6", "question": "What College/Junior/Club Team (League) has 6 as the Round?", "context": "CREATE TABLE table_name_34 (college_junior_club_team__league_ VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_7 WHERE nationality = \"united states\" AND position = \"forward\" AND round > 5", "question": "Which Player has United States as Nationality, forward as Position and a greater than 5 Round?", "context": "CREATE TABLE table_name_7 (player VARCHAR, round VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_51 WHERE position = \"wide receiver\" AND college = \"kent state\"", "question": "Name the total number of round for wide receiver for kent state", "context": "CREATE TABLE table_name_51 (round VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT episodes FROM table_name_20 WHERE title = \"jewboy\"", "question": "what episode is called jewboy", "context": "CREATE TABLE table_name_20 (episodes VARCHAR, title VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE result = \"won 1-0\"", "question": "Tell me the date with result of won 1-0", "context": "CREATE TABLE table_name_13 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_27 WHERE result = \"won 1-0\"", "question": "Name the attendance with result of won 1-0", "context": "CREATE TABLE table_name_27 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_43 WHERE opponent = \"staines town\"", "question": "Name the venue for staines town", "context": "CREATE TABLE table_name_43 (venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT region FROM table_name_98 WHERE catalog = \"kem 072\"", "question": "Which Region has a Catalog of kem 072?", "context": "CREATE TABLE table_name_98 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_20 WHERE format = \"cd album\" AND label = \"kemado records\" AND catalog = \"kem 071\"", "question": "Which Region has a Format of cd album, and a Label of kemado records, and a Catalog of kem 071?", "context": "CREATE TABLE table_name_20 (region VARCHAR, catalog VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT format FROM table_name_44 WHERE date = \"may 24, 2008\"", "question": "Which Format has a Date of may 24, 2008?", "context": "CREATE TABLE table_name_44 (format VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_61 WHERE region = \"united states\" AND catalog = \"kem 072\"", "question": "Which Format has a Region of united states, and a Catalog of kem 072?", "context": "CREATE TABLE table_name_61 (format VARCHAR, region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_67 WHERE region = \"united states\" AND format = \"lp album\"", "question": "Which Label has a Region of united states, and a Format of lp album?", "context": "CREATE TABLE table_name_67 (label VARCHAR, region VARCHAR, format VARCHAR)"}, {"answer": "SELECT format FROM table_name_93 WHERE label = \"toy's factory records\"", "question": "Which Format has a Label of toy's factory records?", "context": "CREATE TABLE table_name_93 (format VARCHAR, label VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE venue = \"rotterdam, netherlands\"", "question": "Which result's venue was in Rotterdam, Netherlands?", "context": "CREATE TABLE table_name_14 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT district FROM table_name_57 WHERE name = \"wallasey\"", "question": "what is the district of wallasey", "context": "CREATE TABLE table_name_57 (district VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_97 WHERE week = 4", "question": "What is the average attendance at a week 4 game?", "context": "CREATE TABLE table_name_97 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT venue FROM table_name_43 WHERE result = \"l 24\u201314\"", "question": "What venue held that game with a result of l 24\u201314?", "context": "CREATE TABLE table_name_43 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_53 WHERE date = \"november 22, 1964\" AND attendance > 48 OFFSET 065", "question": "What is the average week of the game on November 22, 1964 attended by 48,065?", "context": "CREATE TABLE table_name_53 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT name FROM table_name_51 WHERE round > 5 AND position = \"defensive end\"", "question": "Which name had more than 5 rounds and was a defensive end?", "context": "CREATE TABLE table_name_51 (name VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT overall FROM table_name_65 WHERE pick__number = 14", "question": "Which overall's pick number was 14?", "context": "CREATE TABLE table_name_65 (overall VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_24 WHERE name = \"akeem dent\" AND overall < 91", "question": "Which highest pick number had Akeem Dent as a name and where the overall was less than 91?", "context": "CREATE TABLE table_name_24 (pick__number INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_89 WHERE opponent = \"@ los angeles kings\" AND game > 4", "question": "How many Points have an Opponent of @ los angeles kings and a Game larger than 4?", "context": "CREATE TABLE table_name_89 (points INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(october) FROM table_name_2 WHERE record = \"5\u20131\u20130\" AND game > 6", "question": "Which October has a Record of 5\u20131\u20130, and a Game larger than 6?", "context": "CREATE TABLE table_name_2 (october INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_88 WHERE year = \"2011\"", "question": "which playoffs took place during 2011?", "context": "CREATE TABLE table_name_88 (playoffs VARCHAR, year VARCHAR)"}, {"answer": "SELECT open_cup FROM table_name_36 WHERE year = \"2012\"", "question": "which open cup was in 2012?", "context": "CREATE TABLE table_name_36 (open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_56 WHERE league = \"usl a-league\" AND playoffs = \"conference finals\"", "question": "when did the usl a-league have conference finals?", "context": "CREATE TABLE table_name_56 (year VARCHAR, league VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_34 WHERE points < 62 AND january < 6", "question": "what opponent has an average less than 62 and a January average less than 6", "context": "CREATE TABLE table_name_34 (opponent VARCHAR, points VARCHAR, january VARCHAR)"}, {"answer": "SELECT january FROM table_name_7 WHERE points = 51", "question": "what is the average for January with points of 51", "context": "CREATE TABLE table_name_7 (january VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_96 WHERE wins = 2 AND top_5 < 7", "question": "How many vuts made for a player with 2 wins and under 7 top 5s?", "context": "CREATE TABLE table_name_96 (cuts_made INTEGER, wins VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT MAX(top_10) FROM table_name_13 WHERE top_5 = 3 AND cuts_made < 22", "question": "How many top 10s associated with 3 top 5s and under 22 cuts made?", "context": "CREATE TABLE table_name_13 (top_10 INTEGER, top_5 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT SUM(top_10) FROM table_name_61 WHERE top_5 < 1", "question": "How many top 10s when he had under 1 top 5s?", "context": "CREATE TABLE table_name_61 (top_10 INTEGER, top_5 INTEGER)"}, {"answer": "SELECT loss FROM table_name_96 WHERE record = \"26-9\"", "question": "What loss has 26-9 as a loss?", "context": "CREATE TABLE table_name_96 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_68 WHERE home = \"pittsburgh\"", "question": "What was their record when they were at Pittsburgh?", "context": "CREATE TABLE table_name_68 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_46 WHERE date = \"february 24\"", "question": "What was their record on February 24?", "context": "CREATE TABLE table_name_46 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT class FROM table_name_96 WHERE chassis = \"viper\" AND driver = \"shaun jones\"", "question": "Driver Shaun Jones with a viper as a chassis is in what class?", "context": "CREATE TABLE table_name_96 (class VARCHAR, chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_32 WHERE engine = \"rotax max\" AND class = \"rotax heavy\" AND chassis = \"arrow\" AND team = \"twr raceline seating\"", "question": "What is the name of the driver with a rotax max engine, in the rotax heavy class, with arrow as chassis and on the TWR Raceline Seating team?", "context": "CREATE TABLE table_name_32 (driver VARCHAR, team VARCHAR, chassis VARCHAR, engine VARCHAR, class VARCHAR)"}, {"answer": "SELECT engine FROM table_name_94 WHERE team = \"bf racing marron excavations\" AND chassis = \"monaco\" AND driver = \"lee filliponi\"", "question": "What type of engine does the BF Racing Marron Excavations have that also has Monaco as chassis and Lee Filliponi as the driver?", "context": "CREATE TABLE table_name_94 (engine VARCHAR, driver VARCHAR, team VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT team FROM table_name_12 WHERE driver = \"colin moore\"", "question": "Which team does Colin Moore drive for?", "context": "CREATE TABLE table_name_12 (team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT team FROM table_name_95 WHERE class = \"rotax light\"", "question": "What is the name of the team whose class is Rotax Light?", "context": "CREATE TABLE table_name_95 (team VARCHAR, class VARCHAR)"}, {"answer": "SELECT name FROM table_name_36 WHERE launch = \"1996\" AND hanzi = \"\u51e4\u51f0\u536b\u89c6\u4e2d\u6587\u53f0\"", "question": "Which company launched in 1996 and has a Hanzi of \u51e4\u51f0\u536b\u89c6\u4e2d\u6587\u53f0?", "context": "CREATE TABLE table_name_36 (name VARCHAR, launch VARCHAR, hanzi VARCHAR)"}, {"answer": "SELECT origin FROM table_name_62 WHERE hanzi = \"\u51e4\u51f0\u536b\u89c6\u7535\u5f71\u53f0\"", "question": "Where did the Hanzi of \u51e4\u51f0\u536b\u89c6\u7535\u5f71\u53f0 originate?", "context": "CREATE TABLE table_name_62 (origin VARCHAR, hanzi VARCHAR)"}, {"answer": "SELECT hanzi FROM table_name_46 WHERE origin = \"hong kong\" AND launch = \"1998\"", "question": "What is the Hanzi of Hong Kong in 1998?", "context": "CREATE TABLE table_name_46 (hanzi VARCHAR, origin VARCHAR, launch VARCHAR)"}, {"answer": "SELECT hanzi FROM table_name_69 WHERE launch = \"1996\" AND name = \"phoenix television chinese\"", "question": "What is the Hanzi of Phoenix Television Chinese that launched in 1996?", "context": "CREATE TABLE table_name_69 (hanzi VARCHAR, launch VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_14 WHERE difference = \"12\"", "question": "Which Against is the highest one that has a Difference of 12?", "context": "CREATE TABLE table_name_14 (against INTEGER, difference VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_83 WHERE drawn < 1 AND points > 4", "question": "Which average Played has a Drawn smaller than 1, and Points larger than 4?", "context": "CREATE TABLE table_name_83 (played INTEGER, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_32 WHERE played > 9", "question": "Which Position has a Played larger than 9?", "context": "CREATE TABLE table_name_32 (position INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(lost) FROM table_name_93 WHERE drawn < 4 AND played < 9", "question": "Which Lost is the highest one that has a Drawn smaller than 4, and a Played smaller than 9?", "context": "CREATE TABLE table_name_93 (lost INTEGER, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_60 WHERE position = 1 AND lost < 0", "question": "Which Points is the highest one that has a Position of 1, and a Lost smaller than 0?", "context": "CREATE TABLE table_name_60 (points INTEGER, position VARCHAR, lost VARCHAR)"}, {"answer": "SELECT district FROM table_name_31 WHERE first_elected = 1904 AND incumbent = \"duncan e. mckinlay\"", "question": "Which District has a First Elected of 1904 and an Incumbent of Duncan E. Mckinlay?", "context": "CREATE TABLE table_name_31 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_name_21 WHERE result = \"re-elected\" AND district = \"california 5\"", "question": "What's the highest First Elected with a Result of Re-elected and DIstrict of California 5?", "context": "CREATE TABLE table_name_21 (first_elected INTEGER, result VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_75 WHERE district = \"california 8\"", "question": "Which Incumbent has a District of California 8?", "context": "CREATE TABLE table_name_75 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_name_95 WHERE result = \"re-elected\" AND first_elected = 1898", "question": "Which District has a Result of Re-elected and a First Elected of 1898?", "context": "CREATE TABLE table_name_95 (district VARCHAR, result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_99 WHERE district = \"california 5\"", "question": "Which Incumbent has a District of California 5?", "context": "CREATE TABLE table_name_99 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE competition = \"friendly\" AND date = \"october 16, 2012\"", "question": "Name the venue for friendly competition october 16, 2012", "context": "CREATE TABLE table_name_89 (venue VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE score = \"1-5\"", "question": "Name the date for score of 1-5", "context": "CREATE TABLE table_name_38 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT gold FROM table_name_68 WHERE year = 1994", "question": "What Gold has the Year of 1994?", "context": "CREATE TABLE table_name_68 (gold VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_22 WHERE location = \"bangkok\"", "question": "What's the lowest Year with the Location of Bangkok?", "context": "CREATE TABLE table_name_22 (year INTEGER, location VARCHAR)"}, {"answer": "SELECT silver FROM table_name_17 WHERE location = \"guangzhou\"", "question": "What Silver has the Location of Guangzhou?", "context": "CREATE TABLE table_name_17 (silver VARCHAR, location VARCHAR)"}, {"answer": "SELECT gold FROM table_name_56 WHERE year = 2006", "question": "What Gold has the Year of 2006?", "context": "CREATE TABLE table_name_56 (gold VARCHAR, year VARCHAR)"}, {"answer": "SELECT silver FROM table_name_20 WHERE gold = \"li ao\"", "question": "What Silver has a Golf of Li AO?", "context": "CREATE TABLE table_name_20 (silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_52 WHERE year = 1998", "question": "What's the Bronze with the Year of 1998?", "context": "CREATE TABLE table_name_52 (bronze VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_73 WHERE gold = 0 AND rank < 3", "question": "What is the average number of silver medals for countries with 0 gold and rank under 3?", "context": "CREATE TABLE table_name_73 (silver INTEGER, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_56 WHERE bronze > 0 AND silver > 0 AND rank > 2 AND total > 3", "question": "What is the average gold medals for countries with more than 0 bronze, more than 0 silver, rank over 2 and total over 3?", "context": "CREATE TABLE table_name_56 (gold INTEGER, total VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT team FROM table_name_24 WHERE laps = 10 AND driver = \"alex yoong\"", "question": "What team had 10 Labs and the Driver was Alex Yoong?", "context": "CREATE TABLE table_name_24 (team VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_87 WHERE team = \"italy\"", "question": "What is the Grid number for the Team from Italy?", "context": "CREATE TABLE table_name_87 (grid VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_14 WHERE driver = \"narain karthikeyan\"", "question": "For what Team is Narain Karthikeyan the Driver?", "context": "CREATE TABLE table_name_14 (team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT award FROM table_name_69 WHERE category = \"best direction of a musical\"", "question": "Which award has the category of the best direction of a musical?", "context": "CREATE TABLE table_name_69 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_43 WHERE date = \"22 july\"", "question": "With a Date of 22 July, what is the Winning team?", "context": "CREATE TABLE table_name_43 (winning_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_79 WHERE date = \"22 july\"", "question": "What Winning team has 22 July as a Date?", "context": "CREATE TABLE table_name_79 (winning_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_55 WHERE winning_team = \"engstler motorsport engstler motorsport\" AND date = \"22 july\"", "question": "Who is the Winning Driver that has a Winning team of Engstler Motorsport Engstler Motorsport and also the Date 22 July?", "context": "CREATE TABLE table_name_55 (winning_driver VARCHAR, winning_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_name_26 WHERE winning_team = \"engstler motorsport maurer motorsport\"", "question": "What Round was the Winning Team Engstler Motorsport Maurer Motorsport?", "context": "CREATE TABLE table_name_26 (round VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_52 WHERE nhl_team = \"pittsburgh penguins\"", "question": "Which player(s) was drafted by the Pittsburgh Penguins?", "context": "CREATE TABLE table_name_52 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT award FROM table_name_17 WHERE year > 2005 AND result = \"nominated\"", "question": "What is the name of the award in a year more than 2005, and the Result of nominated?", "context": "CREATE TABLE table_name_17 (award VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT award FROM table_name_31 WHERE organisation = \"star awards\" AND year < 2005 AND result = \"won\"", "question": "What is the award for the Star Awards earlier than 2005 and the result is won?", "context": "CREATE TABLE table_name_31 (award VARCHAR, result VARCHAR, organisation VARCHAR, year VARCHAR)"}, {"answer": "SELECT organisation FROM table_name_8 WHERE year = 2011 AND result = \"nominated\" AND award = \"best info-ed programme host\"", "question": "What is the organisation in 2011 that was nominated and the award of best info-ed programme host?", "context": "CREATE TABLE table_name_8 (organisation VARCHAR, award VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT representative_work FROM table_name_20 WHERE year > 2005 AND result = \"nominated\" AND award = \"best variety show host\"", "question": "What is the name of the Representative Work in a year later than 2005 with a Result of nominated, and an Award of best variety show host?", "context": "CREATE TABLE table_name_20 (representative_work VARCHAR, award VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT award FROM table_name_78 WHERE year = 1998 AND representative_work = \"city beat\"", "question": "What is the award for 1998 with Representative Work of city beat?", "context": "CREATE TABLE table_name_78 (award VARCHAR, year VARCHAR, representative_work VARCHAR)"}, {"answer": "SELECT record FROM table_name_66 WHERE score = \"2\u20131\"", "question": "Score of 2\u20131 has what record?", "context": "CREATE TABLE table_name_66 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE home = \"kings\"", "question": "Home of kings had what score?", "context": "CREATE TABLE table_name_64 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_2 WHERE record = \"21\u201329\u201310\"", "question": "Record of 21\u201329\u201310 had what total number of points?", "context": "CREATE TABLE table_name_2 (points VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_13 WHERE year = 1989 AND points > 110", "question": "How many wins did the team, which had more than 110 points, have in 1989?", "context": "CREATE TABLE table_name_13 (wins INTEGER, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_11 WHERE wins = 0 AND year < 1992", "question": "What is the highest number of points the team with 0 wins had before 1992?", "context": "CREATE TABLE table_name_11 (points INTEGER, wins VARCHAR, year VARCHAR)"}, {"answer": "SELECT round FROM table_name_53 WHERE pick__number = 12", "question": "In what Round was Pick #12 drafted?", "context": "CREATE TABLE table_name_53 (round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT player FROM table_name_40 WHERE position = \"wide receiver\"", "question": "What Player is a Wide Receiver?", "context": "CREATE TABLE table_name_40 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT round FROM table_name_1 WHERE college = \"connecticut\"", "question": "In what Round was a player from College of Connecticut drafted?", "context": "CREATE TABLE table_name_1 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_97 WHERE pick__number = 321", "question": "What is the Position of Pick #321?", "context": "CREATE TABLE table_name_97 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_name_45 WHERE player = \"mark cannon\"", "question": "What is Mark Cannon's College?", "context": "CREATE TABLE table_name_45 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT length_duration FROM table_name_85 WHERE date = \"april 19\"", "question": "What is the length and duration of the race on April 19?", "context": "CREATE TABLE table_name_85 (length_duration VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_46 WHERE date = \"september 20\"", "question": "What was the circuit had a race on September 20.", "context": "CREATE TABLE table_name_46 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE length_duration = \"6 hours\"", "question": "What was the date of the race that lasted 6 hours?", "context": "CREATE TABLE table_name_54 (date VARCHAR, length_duration VARCHAR)"}, {"answer": "SELECT class_es_ FROM table_name_70 WHERE circuit = \"mazda raceway laguna seca\"", "question": "What are the classes for the circuit that has the Mazda Raceway Laguna Seca race.", "context": "CREATE TABLE table_name_70 (class_es_ VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_21 WHERE points < 18 AND november > 11", "question": "Which opponent has points less than 18, and a november greater than 11?", "context": "CREATE TABLE table_name_21 (opponent VARCHAR, points VARCHAR, november VARCHAR)"}, {"answer": "SELECT MAX(november) FROM table_name_57 WHERE game < 12 AND opponent = \"@ detroit red wings\"", "question": "What is the highest November that has a game less than 12, and @ detroit red wings as the opponent?", "context": "CREATE TABLE table_name_57 (november INTEGER, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_62 WHERE november > 11 AND opponent = \"st. louis blues\"", "question": "What record has a november greater than 11, and st. louis blues as the opponent?", "context": "CREATE TABLE table_name_62 (record VARCHAR, november VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE record = \"5-4-2\"", "question": "What is the score when the record was 5-4-2?", "context": "CREATE TABLE table_name_32 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE record = \"2-1\"", "question": "What is the score for the team with a record of 2-1?", "context": "CREATE TABLE table_name_81 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_49 WHERE record = \"3-2\"", "question": "Which home team has a record of 3-2?", "context": "CREATE TABLE table_name_49 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_84 WHERE class = \"250cc\" AND team = \"bultaco\" AND year > 1966 AND points = 8", "question": "What is the average wins in 250cc class for Bultaco with 8 points later than 1966?", "context": "CREATE TABLE table_name_84 (wins INTEGER, points VARCHAR, year VARCHAR, class VARCHAR, team VARCHAR)"}, {"answer": "SELECT class FROM table_name_47 WHERE points > 2 AND year < 1973 AND wins > 0", "question": "Which class corresponds to more than 2 points, wins greater than 0, and a year earlier than 1973?", "context": "CREATE TABLE table_name_47 (class VARCHAR, wins VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_33 WHERE year = 1975 AND wins < 0", "question": "What is the sum of all points in 1975 with 0 wins?", "context": "CREATE TABLE table_name_33 (points INTEGER, year VARCHAR, wins VARCHAR)"}, {"answer": "SELECT country FROM table_name_43 WHERE score = 70 - 68 - 70 - 68 = 276", "question": "Which Country has a Score of 70-68-70-68=276?", "context": "CREATE TABLE table_name_43 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_72 WHERE circuit = \"le mans bugatti\"", "question": "What is the fastest lap in the Le Mans Bugatti circuit?", "context": "CREATE TABLE table_name_72 (fastest_lap VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_76 WHERE winning_team = \"audi sport team abt\" AND circuit = \"oschersleben\"", "question": "What is the fastest lap of the Oschersleben circuit with Audi Sport Team ABT as the winning team?", "context": "CREATE TABLE table_name_76 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_36 WHERE pole_position = \"timo scheider\" AND circuit = \"oschersleben\"", "question": "Who is the winning driver of the Oschersleben circuit with Timo Scheider as the pole position?", "context": "CREATE TABLE table_name_36 (winning_driver VARCHAR, pole_position VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_15 WHERE winning_manufacturer = \"audi\" AND winning_driver = \"timo scheider\" AND date = \"31 august\"", "question": "What is the winning team of the race on 31 August with Audi as the winning manufacturer and Timo Scheider as the winning driver?", "context": "CREATE TABLE table_name_15 (winning_team VARCHAR, date VARCHAR, winning_manufacturer VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_66 WHERE winning_manufacturer = \"no race\"", "question": "Who is the winning driver of the race with no race as the winning manufacturer?", "context": "CREATE TABLE table_name_66 (winning_driver VARCHAR, winning_manufacturer VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_78 WHERE surface = \"hard\" AND score = \"3\u20136, 6\u20133, 7\u20136\"", "question": "In what Tournament was the Score of 3\u20136, 6\u20133, 7\u20136 in a match played on a hard Surface?", "context": "CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT partner FROM table_name_74 WHERE surface = \"hard\" AND score = \"6\u20134, 6\u20132\"", "question": "Who was the Partner in a game with the Score of 6\u20134, 6\u20132 on a hard surface?", "context": "CREATE TABLE table_name_74 (partner VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE score = \"6\u20134, 6\u20132\"", "question": "On what Date was the Score 6\u20134, 6\u20132?", "context": "CREATE TABLE table_name_59 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT year FROM table_name_64 WHERE avg_attendance = \"5,445\"", "question": "When was the year that had an average attendance of 5,445?", "context": "CREATE TABLE table_name_64 (year VARCHAR, avg_attendance VARCHAR)"}, {"answer": "SELECT league FROM table_name_18 WHERE year = \"2010-11\"", "question": "In 2010-11, what was the League name?", "context": "CREATE TABLE table_name_18 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT lost FROM table_name_66 WHERE \"played\" = \"played\"", "question": "If the Played was played, what is the lost?", "context": "CREATE TABLE table_name_66 (lost VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_76 WHERE losing_bonus = \"6\"", "question": "If the losing bonus was 6, what is the tries for?", "context": "CREATE TABLE table_name_76 (tries_for VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_51 WHERE points_against = \"371\"", "question": "If points against was 371, what is the drawn?", "context": "CREATE TABLE table_name_51 (drawn VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_30 WHERE played = \"22\" AND tries_against = \"43\"", "question": "If played is 22 and the tries against are 43, what are the points?", "context": "CREATE TABLE table_name_30 (points_for VARCHAR, played VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_21 WHERE club = \"crumlin rfc\"", "question": "What's the losing bonus of Crumlin RFC?", "context": "CREATE TABLE table_name_21 (losing_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_9 WHERE week > 16", "question": "What's the Opponent with a Week that's larger than 16?", "context": "CREATE TABLE table_name_9 (opponent VARCHAR, week INTEGER)"}, {"answer": "SELECT game_site FROM table_name_97 WHERE opponent = \"san diego chargers\"", "question": "What's the Game SIte with an Opponent of San Diego Chargers?", "context": "CREATE TABLE table_name_97 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_70 WHERE gold > 0 AND rank = \"total\" AND bronze < 32", "question": "Which Silver is the lowest one that has a Gold larger than 0, and a Rank of total, and a Bronze smaller than 32?", "context": "CREATE TABLE table_name_70 (silver INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_7 WHERE rank = \"3\" AND silver < 2", "question": "Which Bronze is the lowest one that has a Rank of 3, and a Silver smaller than 2?", "context": "CREATE TABLE table_name_7 (bronze INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_2 WHERE nation = \"china\" AND bronze < 7", "question": "Which Silver has a Nation of china, and a Bronze smaller than 7?", "context": "CREATE TABLE table_name_2 (silver INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT nation FROM table_name_91 WHERE gold = 0 AND bronze < \"6\" AND rank = \"6\"", "question": "Which Nation has a Gold of 0, and a Bronze smaller than 6, and a Rank of 6?", "context": "CREATE TABLE table_name_91 (nation VARCHAR, rank VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE home = \"detroit\" AND date = \"december 9\"", "question": "What score has detroit as the home, and December 9 as the date?", "context": "CREATE TABLE table_name_78 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE visitor = \"mtl. maroons\"", "question": "What score has mtl. maroons as the visitor?", "context": "CREATE TABLE table_name_91 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_99 WHERE home = \"detroit\" AND visitor = \"mtl. maroons\"", "question": "What record has detroit as the home and mtl. maroons as the visitor?", "context": "CREATE TABLE table_name_99 (record VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_55 WHERE date = \"december 14\"", "question": "What visitor has December 14 as the date?", "context": "CREATE TABLE table_name_55 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(fcwc) FROM table_name_38 WHERE years = \"1958\u20131965\" AND icfc < 11", "question": "What is the highest number of FCWC in the Years of 1958\u20131965, and an ICFC smaller than 11?", "context": "CREATE TABLE table_name_38 (fcwc INTEGER, years VARCHAR, icfc VARCHAR)"}, {"answer": "SELECT MIN(ranking) FROM table_name_51 WHERE total = 23", "question": "What is the lowest ranking associated with a total of 23?", "context": "CREATE TABLE table_name_51 (ranking INTEGER, total VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_44 WHERE date = \"13 november 2006\"", "question": "Which is the Outcome on 13 november 2006?", "context": "CREATE TABLE table_name_44 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE opponent = \"melanie south\"", "question": "Which Score has an Opponent of melanie south?", "context": "CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_83 WHERE opponent = \"lindsay lee-waters\"", "question": "Which Outcome has a Opponent of lindsay lee-waters?", "context": "CREATE TABLE table_name_83 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_64 WHERE date = \"17 november 2002\"", "question": "Which Opponent is on 17 november 2002?", "context": "CREATE TABLE table_name_64 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_25 WHERE outcome = \"winner\" AND date = \"19 october 2008\"", "question": "Which Tournament has an Outcome of winner on 19 october 2008?", "context": "CREATE TABLE table_name_25 (tournament VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE opponent = \"evie dominikovic\"", "question": "When is an Opponent of evie dominikovic?", "context": "CREATE TABLE table_name_72 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent_number FROM table_name_73 WHERE attendance = \"45,000\"", "question": "Who was the opponent at the game attended by 45,000?", "context": "CREATE TABLE table_name_73 (opponent_number VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_name_31 WHERE condition = \"factor x deficiency as seen in amyloid purpura\"", "question": "Which Bleeding time has a Condition of factor x deficiency as seen in amyloid purpura?", "context": "CREATE TABLE table_name_31 (bleeding_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT platelet_count FROM table_name_34 WHERE condition = \"bernard-soulier syndrome\"", "question": "Which Platelet count has a Condition of bernard-soulier syndrome?", "context": "CREATE TABLE table_name_34 (platelet_count VARCHAR, condition VARCHAR)"}, {"answer": "SELECT prothrombin_time FROM table_name_28 WHERE platelet_count = \"unaffected\" AND bleeding_time = \"unaffected\" AND partial_thromboplastin_time = \"normal or mildly prolonged\"", "question": "Which Prothrombin time has a Platelet count of unaffected, and a Bleeding time of unaffected, and a Partial thromboplastin time of normal or mildly prolonged?", "context": "CREATE TABLE table_name_28 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT platelet_count FROM table_name_39 WHERE condition = \"factor v deficiency\"", "question": "Which Platelet count has a Condition of factor v deficiency?", "context": "CREATE TABLE table_name_39 (platelet_count VARCHAR, condition VARCHAR)"}, {"answer": "SELECT condition FROM table_name_53 WHERE bleeding_time = \"unaffected\" AND partial_thromboplastin_time = \"prolonged\" AND prothrombin_time = \"unaffected\"", "question": "Which Condition has a Bleeding time of unaffected, and a Partial thromboplastin time of prolonged, and a Prothrombin time of unaffected?", "context": "CREATE TABLE table_name_53 (condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_name_41 WHERE condition = \"hemophilia\"", "question": "What is hemophilia's bleeding time?", "context": "CREATE TABLE table_name_41 (bleeding_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_45 WHERE year < 1994 AND silver = \"south korea\"", "question": "Which Bronze has a Year smaller than 1994, and a Silver of south korea?", "context": "CREATE TABLE table_name_45 (bronze VARCHAR, year VARCHAR, silver VARCHAR)"}, {"answer": "SELECT location FROM table_name_10 WHERE silver = \"japan\"", "question": "Which Location has a Silver of japan?", "context": "CREATE TABLE table_name_10 (location VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_27 WHERE bronze = \"south korea\" AND silver = \"philippines\"", "question": "Which Year is the highest one that has a Bronze of south korea, and a Silver of philippines?", "context": "CREATE TABLE table_name_27 (year INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_4 WHERE silver = \"japan\"", "question": "How many years has Japan won silver?", "context": "CREATE TABLE table_name_4 (year INTEGER, silver VARCHAR)"}, {"answer": "SELECT record FROM table_name_75 WHERE attendance = \"19,823\"", "question": "What was the Indians record during the game that had 19,823 fans attending?", "context": "CREATE TABLE table_name_75 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE record = \"14-28\"", "question": "What date did the Indians have a record of 14-28?", "context": "CREATE TABLE table_name_89 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_24 WHERE name = \"george thomas\"", "question": "In what Round was George Thomas Picked?", "context": "CREATE TABLE table_name_24 (round INTEGER, name VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_43 WHERE pick__number > 1 AND overall > 140", "question": "What was the first Round with a Pick # greater than 1 and 140 Overall?", "context": "CREATE TABLE table_name_43 (round INTEGER, pick__number VARCHAR, overall VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_8 WHERE name = \"aundray bruce\"", "question": "What is Aundray Bruce's Pick #?", "context": "CREATE TABLE table_name_8 (pick__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_66 WHERE college = \"virginia tech\" AND overall > 306", "question": "In what Round with an Overall greater than 306 was the pick from the College of Virginia Tech?", "context": "CREATE TABLE table_name_66 (round VARCHAR, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_9 WHERE team = \"kawasaki\" AND points = 95 AND year < 1981", "question": "Which highest wins number had Kawasaki as a team, 95 points, and a year prior to 1981?", "context": "CREATE TABLE table_name_9 (wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_19 WHERE class = \"250cc\" AND year < 1978 AND team = \"yamaha\" AND wins > 0", "question": "How many points numbers had a class of 250cc, a year prior to 1978, Yamaha as a team, and where wins was more than 0?", "context": "CREATE TABLE table_name_19 (points VARCHAR, wins VARCHAR, team VARCHAR, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_66 WHERE wins > 0 AND class = \"250cc\" AND points = 95", "question": "What is the mean year number where there are more than 0 wins, the class is 250cc, and the points are 95?", "context": "CREATE TABLE table_name_66 (year INTEGER, points VARCHAR, wins VARCHAR, class VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE date = \"december 10\"", "question": "What is the score on december 10?", "context": "CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE home = \"detroit\" AND visitor = \"chicago\"", "question": "What is the date for the home detroit and visitor was chicago?", "context": "CREATE TABLE table_name_82 (date VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_66 WHERE date = \"december 3\"", "question": "Who is the visitor on december 3?", "context": "CREATE TABLE table_name_66 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_95 WHERE date = \"december 31\"", "question": "Who is the visitor on the date december 31?", "context": "CREATE TABLE table_name_95 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_14 WHERE date = \"11 november\"", "question": "What is the location of the race on 11 November?", "context": "CREATE TABLE table_name_14 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_60 WHERE location = \"burkina faso\"", "question": "Who is the winner of the race in Burkina Faso?", "context": "CREATE TABLE table_name_60 (winner VARCHAR, location VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_45 WHERE release_title = \"martial law: take out\"", "question": "What is the release date of Martial Law: Take Out?", "context": "CREATE TABLE table_name_45 (release_date VARCHAR, release_title VARCHAR)"}, {"answer": "SELECT publisher FROM table_name_47 WHERE release_title = \"martial law: substitutes\"", "question": "Which publisher released Martial Law: Substitutes?", "context": "CREATE TABLE table_name_47 (publisher VARCHAR, release_title VARCHAR)"}, {"answer": "SELECT country FROM table_name_93 WHERE notes = \"1 vcd\" AND release_title = \"martial law: substitutes\"", "question": "Which country had a release of 1 VCD titled Martial Law: Substitutes?", "context": "CREATE TABLE table_name_93 (country VARCHAR, notes VARCHAR, release_title VARCHAR)"}, {"answer": "SELECT publisher FROM table_name_56 WHERE release_title = \"martial law: dead ringers\"", "question": "Who was the publisher of Martial Law: Dead Ringers?", "context": "CREATE TABLE table_name_56 (publisher VARCHAR, release_title VARCHAR)"}, {"answer": "SELECT loser FROM table_name_46 WHERE winner = \"new england patriots\" AND location = \"giants stadium\" AND result = \"30\u201328\"", "question": "What is the name of the Loser when the winner was new england patriots, and a Location of giants stadium, and a Result of 30\u201328?", "context": "CREATE TABLE table_name_46 (loser VARCHAR, result VARCHAR, winner VARCHAR, location VARCHAR)"}, {"answer": "SELECT loser FROM table_name_98 WHERE winner = \"new york jets\" AND year < 1994 AND result = \"37\u201313\"", "question": "What team was the lower when the winner was the new york jets, and a Year earlier than 1994, and a Result of 37\u201313?", "context": "CREATE TABLE table_name_98 (loser VARCHAR, result VARCHAR, winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT location FROM table_name_20 WHERE loser = \"new york jets\" AND year < 1997 AND result = \"31\u201328\"", "question": "What is the location when the new york jets lost earlier than 1997 and a Result of 31\u201328?", "context": "CREATE TABLE table_name_20 (location VARCHAR, result VARCHAR, loser VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_39 WHERE winner = \"new york jets\" AND result = \"24\u201317\" AND location = \"giants stadium\"", "question": "What is the year when the Winner was the new york jets, with a Result of 24\u201317, played at giants stadium?", "context": "CREATE TABLE table_name_39 (year INTEGER, location VARCHAR, winner VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_67 WHERE type = \"lp\" AND catalog__number = \"ual 24033\"", "question": "What is the earliest year catalog # ual 24033 had an LP?", "context": "CREATE TABLE table_name_67 (year INTEGER, type VARCHAR, catalog__number VARCHAR)"}, {"answer": "SELECT games FROM table_name_64 WHERE name = \"manuel felix diaz\"", "question": "Which Games had a Name of manuel felix diaz?", "context": "CREATE TABLE table_name_64 (games VARCHAR, name VARCHAR)"}, {"answer": "SELECT medal FROM table_name_48 WHERE games = \"2008 beijing\" AND sport = \"taekwondo\"", "question": "Which Medal had a Games of 2008 beijing, and a Sport of taekwondo?", "context": "CREATE TABLE table_name_48 (medal VARCHAR, games VARCHAR, sport VARCHAR)"}, {"answer": "SELECT medal FROM table_name_43 WHERE name = \"f\u00e9lix s\u00e1nchez\" AND games = \"2012 london\"", "question": "Which Medal had a Name of f\u00e9lix s\u00e1nchez, and a Games of 2012 london?", "context": "CREATE TABLE table_name_43 (medal VARCHAR, name VARCHAR, games VARCHAR)"}, {"answer": "SELECT sport FROM table_name_21 WHERE event = \"men's 400 m hurdles\"", "question": "Which Sport had an Event of men's 400 m hurdles?", "context": "CREATE TABLE table_name_21 (sport VARCHAR, event VARCHAR)"}, {"answer": "SELECT medal FROM table_name_1 WHERE name = \"manuel felix diaz\"", "question": "What Medal had a Name of manuel felix diaz?", "context": "CREATE TABLE table_name_1 (medal VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_37 WHERE games = \"2008 beijing\" AND medal = \"gold\"", "question": "Which Name had a Games of 2008 beijing, and a Medal of gold?", "context": "CREATE TABLE table_name_37 (name VARCHAR, games VARCHAR, medal VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_20 WHERE location = \"bedford\"", "question": "What is bedford's mascot?", "context": "CREATE TABLE table_name_20 (mascot VARCHAR, location VARCHAR)"}, {"answer": "SELECT netflix FROM table_name_97 WHERE segment_a = \"heather gems\"", "question": "Segment A of heather gems is what netflix episode?", "context": "CREATE TABLE table_name_97 (netflix VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT netflix FROM table_name_99 WHERE segment_b = \"aerospace fuel lines\"", "question": "Segment B of aerospace fuel lines is what netflix episode?", "context": "CREATE TABLE table_name_99 (netflix VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_5 WHERE segment_b = \"aerospace fuel lines\"", "question": "Segment B of aerospace fuel lines has what segment A?", "context": "CREATE TABLE table_name_5 (segment_a VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_c FROM table_name_67 WHERE episode < 210", "question": "Episode smaller than 210 had what segment c?", "context": "CREATE TABLE table_name_67 (segment_c VARCHAR, episode INTEGER)"}, {"answer": "SELECT material_collected FROM table_name_75 WHERE isbn = \"978-1401209674\"", "question": "What's the Material collected for the 978-1401209674 ISBN?", "context": "CREATE TABLE table_name_75 (material_collected VARCHAR, isbn VARCHAR)"}, {"answer": "SELECT SUM(vol__number) FROM table_name_64 WHERE title = \"darkness falls\"", "question": "How many Volume Numbers have the title of Darkness Falls?", "context": "CREATE TABLE table_name_64 (vol__number INTEGER, title VARCHAR)"}, {"answer": "SELECT MIN(vol__number) FROM table_name_5 WHERE publication_date = \"november 2004\"", "question": "What's the Lowest Volume Number that was published November 2004?", "context": "CREATE TABLE table_name_5 (vol__number INTEGER, publication_date VARCHAR)"}, {"answer": "SELECT type_of_game FROM table_name_33 WHERE results\u00b9 = \"10:1\"", "question": "What Type of game has a Results\u00b9 of 10:1?", "context": "CREATE TABLE table_name_33 (type_of_game VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_82 WHERE type_of_game = \"friendly\" AND city = \"belgrade\" AND date = \"november 2\"", "question": "With the Type is game of friendly and the City Belgrade and November 2 as the Date what were the Results\u00b9?", "context": "CREATE TABLE table_name_82 (results\u00b9 VARCHAR, date VARCHAR, type_of_game VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_94 WHERE date = \"december 21\"", "question": "What is the name of the City with December 21 as a Date?", "context": "CREATE TABLE table_name_94 (city VARCHAR, date VARCHAR)"}, {"answer": "SELECT type_of_game FROM table_name_28 WHERE date = \"july 29\"", "question": "What Type of game was played on Date of July 29?", "context": "CREATE TABLE table_name_28 (type_of_game VARCHAR, date VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_12 WHERE type_of_game = \"friendly\" AND date = \"june 25\"", "question": "What is the Results\u00b9 that was a friendly game and played on June 25?", "context": "CREATE TABLE table_name_12 (results\u00b9 VARCHAR, type_of_game VARCHAR, date VARCHAR)"}, {"answer": "SELECT version FROM table_name_1 WHERE length = \"4:58\"", "question": "What is the version shown for the Length of 4:58?", "context": "CREATE TABLE table_name_1 (version VARCHAR, length VARCHAR)"}, {"answer": "SELECT version FROM table_name_48 WHERE length = \"5:20\" AND remixed_by = \"\u2014\"", "question": "What is the version shown for the Length of 5:20, and shows Remixed by \u2014?", "context": "CREATE TABLE table_name_48 (version VARCHAR, length VARCHAR, remixed_by VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE record = \"19\u201316\"", "question": "Record of 19\u201316 occurred on what date?", "context": "CREATE TABLE table_name_78 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_60 WHERE loss = \"postponed (rain) rescheduled for may 10\"", "question": "Loss of postponed (rain) rescheduled for may 10 had what record?", "context": "CREATE TABLE table_name_60 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE opponent = \"@ braves\" AND loss = \"pelfrey (2\u20135)\"", "question": "Opponent of @ braves, and a Loss of pelfrey (2\u20135) had what score?", "context": "CREATE TABLE table_name_88 (score VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_74 WHERE attendance = \"30,335\"", "question": "Attendance of 30,335 had what record?", "context": "CREATE TABLE table_name_74 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE record = \"22\u201320\"", "question": "Record of 22\u201320 involved what score?", "context": "CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_32 WHERE score = \"postponed (rain) rescheduled for june 27\"", "question": "Score of postponed (rain) rescheduled for June 27 had what loss?", "context": "CREATE TABLE table_name_32 (loss VARCHAR, score VARCHAR)"}, {"answer": "SELECT virtual_channel FROM table_name_25 WHERE station_ownership = \"eicb tv\" AND call_sign = \"ktcj-ld\"", "question": "Station Ownership of eicb tv, and a Call sign of ktcj-ld is what virtual network?", "context": "CREATE TABLE table_name_25 (virtual_channel VARCHAR, station_ownership VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT network FROM table_name_52 WHERE call_sign = \"k33ln-ld\" AND virtual_channel = \"33.5\"", "question": "Call sign of k33ln-ld, and a Virtual channel of 33.5 is what network?", "context": "CREATE TABLE table_name_52 (network VARCHAR, call_sign VARCHAR, virtual_channel VARCHAR)"}, {"answer": "SELECT analog_channel FROM table_name_3 WHERE digital_channel = \"32\"", "question": "Digital channel of 32 belongs to what analog channel?", "context": "CREATE TABLE table_name_3 (analog_channel VARCHAR, digital_channel VARCHAR)"}, {"answer": "SELECT virtual_channel FROM table_name_13 WHERE call_sign = \"k43hb-ld\"", "question": "Call sign of k43hb-ld is what virtual channel?", "context": "CREATE TABLE table_name_13 (virtual_channel VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_23 WHERE virtual_channel = \"16.5\"", "question": "Virtual channel of 16.5 has what call sign?", "context": "CREATE TABLE table_name_23 (call_sign VARCHAR, virtual_channel VARCHAR)"}, {"answer": "SELECT digital_channel FROM table_name_31 WHERE network = \"nbc\"", "question": "Network of nbc is what digital channel?", "context": "CREATE TABLE table_name_31 (digital_channel VARCHAR, network VARCHAR)"}, {"answer": "SELECT MAX(first) FROM table_name_5 WHERE total > 0 AND gold > 0", "question": "What is the latest first year with 0 total medals and over 0 golds?", "context": "CREATE TABLE table_name_5 (first INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_9 WHERE total > 0 AND gold = 3 AND games > 6", "question": "How many bronzes associated with over 0 total medals, 3 golds, and over 6 games?", "context": "CREATE TABLE table_name_9 (bronze INTEGER, games VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_44 WHERE games < 6 AND gold > 0", "question": "What is the fewest number of medals associated with under 6 games and over 0 golds?", "context": "CREATE TABLE table_name_44 (total INTEGER, games VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_61 WHERE gold > 0 AND first < 2008", "question": "How many games are associated with over 0 golds and a first year before 2008?", "context": "CREATE TABLE table_name_61 (games INTEGER, gold VARCHAR, first VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_53 WHERE rank > 3 AND goal_ratio = 0.54", "question": "What is the largest value for goals in rank over 3 with goal ration of 0.54?", "context": "CREATE TABLE table_name_53 (goals INTEGER, rank VARCHAR, goal_ratio VARCHAR)"}, {"answer": "SELECT COUNT(goal_ratio) FROM table_name_46 WHERE rank = 2 AND games > 44", "question": "How many goal ratios have rank of 2 with more than 44 games?", "context": "CREATE TABLE table_name_46 (goal_ratio VARCHAR, rank VARCHAR, games VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_62 WHERE goals = 23 AND rank > 9", "question": "How many games have 23 goals with a rank greater than 9?", "context": "CREATE TABLE table_name_62 (games VARCHAR, goals VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_49 WHERE goal_ratio < 0.8 AND games = 56", "question": "How many goals have a goal ration less than 0.8 with 56 games?", "context": "CREATE TABLE table_name_49 (goals VARCHAR, goal_ratio VARCHAR, games VARCHAR)"}, {"answer": "SELECT event FROM table_name_34 WHERE outcome = \"other open tournaments\"", "question": "What Event has an Outcome of other open tournaments?", "context": "CREATE TABLE table_name_34 (event VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_12 WHERE event = \"singles\" AND venue = \"london, england\"", "question": "What is the Outcome of the Singles Event in London, England?", "context": "CREATE TABLE table_name_12 (outcome VARCHAR, event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_58 WHERE outcome = \"all england open\"", "question": "What is the Opponent in final with an All England Open Outcome?", "context": "CREATE TABLE table_name_58 (opponent_in_the_final VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_8 WHERE outcome = \"1\" AND venue = \"london, england\"", "question": "Who was the Opponent in London, England with an Outcome of 1?", "context": "CREATE TABLE table_name_8 (opponent_in_the_final VARCHAR, outcome VARCHAR, venue VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_67 WHERE opponent_in_the_final = \"all england open\"", "question": "What is the Outcome when All England Open is the Opponent in the final?", "context": "CREATE TABLE table_name_67 (outcome VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT name FROM table_name_11 WHERE length = \"16.62km\" AND time = \"15:10\"", "question": "What is the Name of the stage with a Length of 16.62km and Time of 15:10?", "context": "CREATE TABLE table_name_11 (name VARCHAR, length VARCHAR, time VARCHAR)"}, {"answer": "SELECT name FROM table_name_8 WHERE winner = \"s. loeb\" AND length = \"13.04km\" AND stage = \"ss12\"", "question": "What is the Name of the stage with S. Loeb as the Winner with a Length of 13.04km and a Stage of SS12?", "context": "CREATE TABLE table_name_8 (name VARCHAR, stage VARCHAR, winner VARCHAR, length VARCHAR)"}, {"answer": "SELECT name FROM table_name_90 WHERE stage = \"ss5\"", "question": "What is the Name of the SS5 Stage?", "context": "CREATE TABLE table_name_90 (name VARCHAR, stage VARCHAR)"}, {"answer": "SELECT name FROM table_name_3 WHERE stage = \"ss11\"", "question": "What is the Name of the SS11 Stage?", "context": "CREATE TABLE table_name_3 (name VARCHAR, stage VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_42 WHERE record = \"30-28-4\" AND march > 1", "question": "How many games ended in a record of 30-28-4, with a March more than 1?", "context": "CREATE TABLE table_name_42 (game VARCHAR, record VARCHAR, march VARCHAR)"}, {"answer": "SELECT competition FROM table_name_31 WHERE result = \"w\" AND date = \"june 30, 1966\"", "question": "What competition has a result of W on June 30, 1966?", "context": "CREATE TABLE table_name_31 (competition VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_89 WHERE competition = \"international friendly\" AND date = \"may 15, 1966\"", "question": "What is the result of the International Friendly competition on May 15, 1966?", "context": "CREATE TABLE table_name_89 (result VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_82 WHERE score = \"4-0\"", "question": "What is the result when the score is 4-0?", "context": "CREATE TABLE table_name_82 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT code__iata_icao_ FROM table_name_18 WHERE rank = 10", "question": "What is the code for rank 10?", "context": "CREATE TABLE table_name_18 (code__iata_icao_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT week_6 FROM table_name_85 WHERE week_3 = \"25\" AND week_7 = \"eliminated\"", "question": "Name the week 6 when week 3 is 25 and week 7 is eliminated", "context": "CREATE TABLE table_name_85 (week_6 VARCHAR, week_3 VARCHAR, week_7 VARCHAR)"}, {"answer": "SELECT week_3 FROM table_name_99 WHERE team = \"mark/jennifer\"", "question": "Name the week 3 for team of mark/jennifer", "context": "CREATE TABLE table_name_99 (week_3 VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_66 WHERE week_1 = \"33\"", "question": "Name the team for week 1 of 33", "context": "CREATE TABLE table_name_66 (team VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT week_3 FROM table_name_94 WHERE week_6 = 31 + 40 = 71", "question": "Name the week 3 with week 6 of 31+40=71", "context": "CREATE TABLE table_name_94 (week_3 VARCHAR, week_6 VARCHAR)"}, {"answer": "SELECT week_1 FROM table_name_67 WHERE week_3 = \"36\"", "question": "Name the week 3 of 36", "context": "CREATE TABLE table_name_67 (week_1 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT team FROM table_name_88 WHERE week_1 = \"28\"", "question": "Name the team for week 1 of 28", "context": "CREATE TABLE table_name_88 (team VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT home FROM table_name_21 WHERE visitor = \"chicago\"", "question": "Who was the home team in the game having a visitor of Chicago?", "context": "CREATE TABLE table_name_21 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE visitor = \"chicago\"", "question": "What is the date of the game that had a visitor of Chicago?", "context": "CREATE TABLE table_name_22 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT version FROM table_name_60 WHERE length = \"5:15\"", "question": "what album is 5:15 long", "context": "CREATE TABLE table_name_60 (version VARCHAR, length VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_73 WHERE silver = 0 AND bronze = 1 AND rank < 3", "question": "How many total show when silver is 0, bronze is 1, and the rank is less than 3?", "context": "CREATE TABLE table_name_73 (total VARCHAR, rank VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_91 WHERE gold < 0", "question": "What is the number for rank when gold is less than 0?", "context": "CREATE TABLE table_name_91 (rank INTEGER, gold INTEGER)"}, {"answer": "SELECT AVG(silver) FROM table_name_57 WHERE bronze < 1 AND gold > 0", "question": "What is the average for silver when bronze is less than 1, and gold is more than 0?", "context": "CREATE TABLE table_name_57 (silver INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_79 WHERE rank < 3 AND bronze < 1", "question": "What is the average Gold when the rank is less than 3 and the bronze is less than 1?", "context": "CREATE TABLE table_name_79 (gold INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_19 WHERE bronze = 2 AND total = 2 AND gold < 0", "question": "What is the average Rank when there are 2 bronze, the total is 2 and gold is less than 0?", "context": "CREATE TABLE table_name_19 (rank INTEGER, gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT player FROM table_name_53 WHERE round = \"1\"", "question": "what player is playing on round 1", "context": "CREATE TABLE table_name_53 (player VARCHAR, round VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_91 WHERE player = \"mikael renberg\"", "question": "what is the school that hosts mikael renberg", "context": "CREATE TABLE table_name_91 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT area_served FROM table_name_99 WHERE callsign = \"5ddn\"", "question": "Which area served has a Callsign of 5ddn?", "context": "CREATE TABLE table_name_99 (area_served VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_65 WHERE frequency = \"102.3\"", "question": "What is the purpose for Frequency of 102.3?", "context": "CREATE TABLE table_name_65 (purpose VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT freq_currently FROM table_name_67 WHERE frequency = \"104.7\"", "question": "What is the current freq for Frequency of 104.7?", "context": "CREATE TABLE table_name_67 (freq_currently VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE home = \"fk bratstvo\"", "question": "What was the score for the game with FK Bratstvo as home team?", "context": "CREATE TABLE table_name_7 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_89 WHERE guest = \"fk mogren\"", "question": "What was the attendance of the game that had an away team of FK Mogren?", "context": "CREATE TABLE table_name_89 (attendance VARCHAR, guest VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_48 WHERE partnering = \"tessa price\"", "question": "What was the final score for the match with a partnering of Tessa Price?", "context": "CREATE TABLE table_name_48 (score_in_the_final VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_18 WHERE player = \"donald mason\" AND pick > 114", "question": "What is the earliest round that Donald Mason had a pick larger than 114?", "context": "CREATE TABLE table_name_18 (round INTEGER, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_9 WHERE pick > 183 AND school_club_team = \"drexel\"", "question": "What is the nationality of the player from Drexel who had a pick larger than 183?", "context": "CREATE TABLE table_name_9 (nationality VARCHAR, pick VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT country FROM table_name_71 WHERE stadium = \"grandstand stadium\"", "question": "What country has grandstand stadium as the stadium?", "context": "CREATE TABLE table_name_71 (country VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_19 WHERE country = \"switzerland\"", "question": "What is the average capacity that has switzerland as the country?", "context": "CREATE TABLE table_name_19 (capacity INTEGER, country VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_97 WHERE stadium = \"rod laver arena\"", "question": "What is the average capacity that has rod laver arena as the stadium?", "context": "CREATE TABLE table_name_97 (capacity INTEGER, stadium VARCHAR)"}, {"answer": "SELECT SUM(january) FROM table_name_37 WHERE record = \"26\u201312\u20136\" AND points < 58", "question": "How much January has a Record of 26\u201312\u20136, and Points smaller than 58?", "context": "CREATE TABLE table_name_37 (january INTEGER, record VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_35 WHERE score = \"4\u20131\"", "question": "Which Points have a Score of 4\u20131?", "context": "CREATE TABLE table_name_35 (points INTEGER, score VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_38 WHERE score = \"2\u20136\" AND points > 62", "question": "How many Games have a Score of 2\u20136, and Points larger than 62?", "context": "CREATE TABLE table_name_38 (game VARCHAR, score VARCHAR, points VARCHAR)"}, {"answer": "SELECT region FROM table_name_61 WHERE catalog = \"576 096-2\"", "question": "Tell me the region for catalog of 576 096-2", "context": "CREATE TABLE table_name_61 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_2 WHERE date = \"26 march 1996\"", "question": "Name the catalog for 26 march 1996", "context": "CREATE TABLE table_name_2 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT region FROM table_name_47 WHERE catalog = \"576 097-2\"", "question": "Name the region with catalog of 576 097-2", "context": "CREATE TABLE table_name_47 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT score FROM table_name_41 WHERE save = \"lynch (4)\"", "question": "The game that has a save of lynch (4) ended with what score?", "context": "CREATE TABLE table_name_41 (score VARCHAR, save VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE loss = \"trout (4-2)\"", "question": "On which day did the Chicago Cubs have a loss of trout (4-2)?", "context": "CREATE TABLE table_name_23 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_28 WHERE opponent = \"@ expos\" AND save = \"parrett (2)\"", "question": "What is the loss for the game against @ expos, with a save of parrett (2)?", "context": "CREATE TABLE table_name_28 (loss VARCHAR, opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE loss = \"smith (2-4)\"", "question": "The game with a loss of smith (2-4) ended with what score?", "context": "CREATE TABLE table_name_6 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE loss = \"sutcliffe (10-4)\"", "question": "What is the date for the game that included a loss of sutcliffe (10-4)?", "context": "CREATE TABLE table_name_45 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE tournament = \"greater greensboro chrysler classic\"", "question": "What is the date of the Greater Greensboro Chrysler Classic?", "context": "CREATE TABLE table_name_88 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE location = \"new york\" AND tournament = \"b.c. open\"", "question": "What is the score of the B.C. Open in New York?", "context": "CREATE TABLE table_name_65 (score VARCHAR, location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winner FROM table_name_90 WHERE location = \"georgia\" AND date = \"oct 3\"", "question": "Who is the winner of the tournament in Georgia on Oct 3?", "context": "CREATE TABLE table_name_90 (winner VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(shirt_number) FROM table_name_22 WHERE cap_number = 5", "question": "What's the largest shirt number when the cap number is 5?", "context": "CREATE TABLE table_name_22 (shirt_number INTEGER, cap_number VARCHAR)"}, {"answer": "SELECT team FROM table_name_29 WHERE division = \"southeast\" AND home_arena = \"philips arena\"", "question": "Which team is in the Southeast with a home at Philips Arena?", "context": "CREATE TABLE table_name_29 (team VARCHAR, division VARCHAR, home_arena VARCHAR)"}, {"answer": "SELECT division FROM table_name_87 WHERE team = \"toronto raptors\"", "question": "Which division do the Toronto Raptors belong in?", "context": "CREATE TABLE table_name_87 (division VARCHAR, team VARCHAR)"}, {"answer": "SELECT city FROM table_name_62 WHERE home_arena = \"target center\"", "question": "Which city includes the Target Center arena?", "context": "CREATE TABLE table_name_62 (city VARCHAR, home_arena VARCHAR)"}, {"answer": "SELECT conference FROM table_name_80 WHERE city = \"portland, oregon\"", "question": "Which conference is in Portland, Oregon?", "context": "CREATE TABLE table_name_80 (conference VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_55 WHERE home_arena = \"barclays center\"", "question": "Which city includes Barclays Center?", "context": "CREATE TABLE table_name_55 (city VARCHAR, home_arena VARCHAR)"}, {"answer": "SELECT wysiwyg_editor FROM table_name_79 WHERE user_selectable_themes = \"yes\" AND unread_message_tracking = \"session\" AND image_attachment = \"plugin\"", "question": "Which WYSIWYG Editor has a User-selectable themes of yes, and an Unread message tracking of session, and an Image attachment of plugin?", "context": "CREATE TABLE table_name_79 (wysiwyg_editor VARCHAR, image_attachment VARCHAR, user_selectable_themes VARCHAR, unread_message_tracking VARCHAR)"}, {"answer": "SELECT calendar FROM table_name_56 WHERE wysiwyg_editor = \"yes\" AND unread_message_tracking = \"yes\"", "question": "Which Calendar has WYSIWYG Editor of yes and an Unread message tracking of yes?", "context": "CREATE TABLE table_name_56 (calendar VARCHAR, wysiwyg_editor VARCHAR, unread_message_tracking VARCHAR)"}, {"answer": "SELECT wysiwyg_editor FROM table_name_75 WHERE image_attachment = \"yes\" AND calendar = \"plugin\"", "question": "Which WYSIWYG Editor has an Image attachment of yes, and a Calendar of plugin?", "context": "CREATE TABLE table_name_75 (wysiwyg_editor VARCHAR, image_attachment VARCHAR, calendar VARCHAR)"}, {"answer": "SELECT calendar FROM table_name_91 WHERE wysiwyg_editor = \"no\" AND unread_message_tracking = \"session\" AND image_attachment = \"no\"", "question": "Which Calendar has a WYSIWYG Editor of no, and an Unread message tracking of session, and an Image attachment of no?", "context": "CREATE TABLE table_name_91 (calendar VARCHAR, image_attachment VARCHAR, wysiwyg_editor VARCHAR, unread_message_tracking VARCHAR)"}, {"answer": "SELECT image_attachment FROM table_name_44 WHERE threaded = \"yes\" AND calendar = \"yes\"", "question": "Which Image attachment has a Threaded of yes, and a Calendar of yes?", "context": "CREATE TABLE table_name_44 (image_attachment VARCHAR, threaded VARCHAR, calendar VARCHAR)"}, {"answer": "SELECT calendar FROM table_name_95 WHERE user_selectable_themes = \"user-selectable themes\"", "question": "Which Calendar has a User-selectable themes of user-selectable themes?", "context": "CREATE TABLE table_name_95 (calendar VARCHAR, user_selectable_themes VARCHAR)"}, {"answer": "SELECT record FROM table_name_76 WHERE score = \"12\u20136\"", "question": "What was the record of the game with a score of 12\u20136?", "context": "CREATE TABLE table_name_76 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE loss = \"bush (1\u20135)\"", "question": "What was the date of the game with a loss of Bush (1\u20135)?", "context": "CREATE TABLE table_name_18 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE score = \"7\u20136\"", "question": "Who was the opponent at the game with a score of 7\u20136?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE loss = \"maholm (2\u20134)\"", "question": "What was the score of the game with a loss of Maholm (2\u20134)?", "context": "CREATE TABLE table_name_81 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_33 WHERE date = \"may 25\"", "question": "What is the attendance for the game on May 25?", "context": "CREATE TABLE table_name_33 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_20 WHERE name = \"zendon hamilton\" AND rank > 2", "question": "What was the game with a rank higher than 2 and a name of zendon hamilton?", "context": "CREATE TABLE table_name_20 (games INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_32 WHERE points = \"0\"", "question": "If the points were 0, what was the losing bonus?", "context": "CREATE TABLE table_name_32 (losing_bonus VARCHAR, points VARCHAR)"}, {"answer": "SELECT club FROM table_name_67 WHERE points = \"56\"", "question": "What club had 56 points?", "context": "CREATE TABLE table_name_67 (club VARCHAR, points VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_65 WHERE points_for = \"0\"", "question": "If the points were 0, what were the tries for?", "context": "CREATE TABLE table_name_65 (tries_for VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_38 WHERE points_for = \"423\"", "question": "What's the try bonus that had 423 points?", "context": "CREATE TABLE table_name_38 (try_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_35 WHERE try_bonus = \"6\" AND tries_against = \"41\" AND points_against = \"317\"", "question": "Name the tries when tries against were 41, try bonus was 6, and had 317 points.", "context": "CREATE TABLE table_name_35 (tries_for VARCHAR, points_against VARCHAR, try_bonus VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_14 WHERE tries_for = \"32\"", "question": "What was the tries against when they had 32 tries for?", "context": "CREATE TABLE table_name_14 (tries_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT title_in_english FROM table_name_49 WHERE format = \"lp\" AND original_title = \"\u0442\u043e \u043b\u0438 \u0435\u0449\u0451 \u0431\u0443\u0434\u0435\u0442\"", "question": "What is the english title with a lp format and an Original title of \u0442\u043e \u043b\u0438 \u0435\u0449\u0451 \u0431\u0443\u0434\u0435\u0442?", "context": "CREATE TABLE table_name_49 (title_in_english VARCHAR, format VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE attendance = \"18,545\"", "question": "What was the score when the attendance was 18,545?", "context": "CREATE TABLE table_name_83 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT decision FROM table_name_6 WHERE attendance = \"19,592\"", "question": "What was the decision when the attendance was 19,592?", "context": "CREATE TABLE table_name_6 (decision VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT runs FROM table_name_52 WHERE opponent = \"canterbury\"", "question": "Which Run has an Opponent of Canterbury?", "context": "CREATE TABLE table_name_52 (runs VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT runs FROM table_name_53 WHERE opponent = \"south australia\"", "question": "Which Runs has a Opponent of south australia?", "context": "CREATE TABLE table_name_53 (runs VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT skip FROM table_name_45 WHERE third = \"tony angiboust\"", "question": "Which Skip has a Third of tony angiboust?", "context": "CREATE TABLE table_name_45 (skip VARCHAR, third VARCHAR)"}, {"answer": "SELECT lead FROM table_name_15 WHERE nation = \"switzerland\"", "question": "Which Lead has a Nation of switzerland?", "context": "CREATE TABLE table_name_15 (lead VARCHAR, nation VARCHAR)"}, {"answer": "SELECT third FROM table_name_14 WHERE nation = \"scotland\"", "question": "Which Third has a Nation of scotland?", "context": "CREATE TABLE table_name_14 (third VARCHAR, nation VARCHAR)"}, {"answer": "SELECT third FROM table_name_71 WHERE lead = \"angel garcia\"", "question": "In which third did angel garcia lead?", "context": "CREATE TABLE table_name_71 (third VARCHAR, lead VARCHAR)"}, {"answer": "SELECT second FROM table_name_54 WHERE nation = \"france\"", "question": "When did France come in second?", "context": "CREATE TABLE table_name_54 (second VARCHAR, nation VARCHAR)"}, {"answer": "SELECT third FROM table_name_59 WHERE lead = \"holger h\u00f6hne\"", "question": "When did holger h\u00f6hne come in third?", "context": "CREATE TABLE table_name_59 (third VARCHAR, lead VARCHAR)"}, {"answer": "SELECT COUNT(caps) FROM table_name_16 WHERE club_province = \"munster\" AND position = \"lock\" AND player = \"mick o'driscoll\"", "question": "How many Caps does the Club/province Munster, position of lock and Mick O'Driscoll have?", "context": "CREATE TABLE table_name_16 (caps VARCHAR, player VARCHAR, club_province VARCHAR, position VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_74 WHERE caps < 2 AND player = \"jonathan sexton\"", "question": "What Club/province have caps less than 2 and Jonathan Sexton as player?", "context": "CREATE TABLE table_name_74 (club_province VARCHAR, caps VARCHAR, player VARCHAR)"}, {"answer": "SELECT caps FROM table_name_97 WHERE position = \"fly-half\" AND player = \"paddy wallace\"", "question": "Paddy Wallace who plays the position of fly-half has how many Caps?", "context": "CREATE TABLE table_name_97 (caps VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(caps) FROM table_name_57 WHERE date_of_birth__age_ = \"13 december 1977\"", "question": "What is the total of Caps when player born 13 December 1977?", "context": "CREATE TABLE table_name_57 (caps INTEGER, date_of_birth__age_ VARCHAR)"}, {"answer": "SELECT artist_s_ FROM table_name_80 WHERE book_title = \"cyberella\"", "question": "what artist has a book called cyberella", "context": "CREATE TABLE table_name_80 (artist_s_ VARCHAR, book_title VARCHAR)"}, {"answer": "SELECT AVG(inegi_code) FROM table_name_17 WHERE population_density___km_2__ < 81.4 AND human_development_index__2000_ = 0.6593", "question": "WHich INEGI code has a Population density (/km 2 ) smaller than 81.4 and 0.6593 Human Development Index (2000)?", "context": "CREATE TABLE table_name_17 (inegi_code INTEGER, population_density___km_2__ VARCHAR, human_development_index__2000_ VARCHAR)"}, {"answer": "SELECT MIN(field_goals) FROM table_name_84 WHERE touchdowns = 3", "question": "What is the lowest number of field goals for a player with 3 touchdowns?", "context": "CREATE TABLE table_name_84 (field_goals INTEGER, touchdowns VARCHAR)"}, {"answer": "SELECT extra_points FROM table_name_12 WHERE position = \"right halfback\" AND player = \"roswell wendell\"", "question": "How many extra points did right halfback Roswell Wendell have?", "context": "CREATE TABLE table_name_12 (extra_points VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_name_74 WHERE position = \"left halfback\" AND player = \"willie heston\" AND points > 15", "question": "What is the lowest number of touchdowns for left halfback WIllie Heston who has more than 15 points?", "context": "CREATE TABLE table_name_74 (touchdowns INTEGER, points VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_64 WHERE type_of_game = \"1964 summer olympics\" AND date = \"october 18\"", "question": "What was the result for the 1964 summer olympics on october 18?", "context": "CREATE TABLE table_name_64 (results\u00b9 VARCHAR, type_of_game VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_24 WHERE date = \"october 28\"", "question": "What was the opponent on october 28?", "context": "CREATE TABLE table_name_24 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT city FROM table_name_65 WHERE date = \"october 13\"", "question": "Wjich city had a date of october 13?", "context": "CREATE TABLE table_name_65 (city VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE results\u00b9 = \"3:2\"", "question": "What day were the results 3:2?", "context": "CREATE TABLE table_name_54 (date VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT COUNT(failures) FROM table_name_76 WHERE country = \"russia\" AND family = \"r14 r-14\" AND partial_failures < 0", "question": "What is the number of failure for the country of Russia, and a Family of r14 r-14, and a Partial failures smaller than 0?", "context": "CREATE TABLE table_name_76 (failures VARCHAR, partial_failures VARCHAR, country VARCHAR, family VARCHAR)"}, {"answer": "SELECT AVG(partial_failures) FROM table_name_53 WHERE country = \"russia\" AND failures > 0 AND family = \"angara\" AND launches > 1", "question": "What is the partial failure for the Country of russia, and a Failure larger than 0, and a Family of angara, and a Launch larger than 1?", "context": "CREATE TABLE table_name_53 (partial_failures INTEGER, launches VARCHAR, family VARCHAR, country VARCHAR, failures VARCHAR)"}, {"answer": "SELECT group_b FROM table_name_17 WHERE group_e = \"georgia\"", "question": "What is the group B region with a Group E region of Georgia?", "context": "CREATE TABLE table_name_17 (group_b VARCHAR, group_e VARCHAR)"}, {"answer": "SELECT group_a FROM table_name_20 WHERE region = 2", "question": "What is the group A region with a region number of 2?", "context": "CREATE TABLE table_name_20 (group_a VARCHAR, region VARCHAR)"}, {"answer": "SELECT group_c FROM table_name_53 WHERE group_b = \"illinois\"", "question": "What is the group C region with Illinois as group B?", "context": "CREATE TABLE table_name_53 (group_c VARCHAR, group_b VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_61 WHERE record = \"82-68\"", "question": "What opponnent has a record of 82-68?", "context": "CREATE TABLE table_name_61 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE record = \"77-62\"", "question": "what date has the record of 77-62?", "context": "CREATE TABLE table_name_22 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE record = \"78-63\"", "question": "what opponent has the record of 78-63?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE opponent = \"tigers\" AND record = \"78-64\"", "question": "what score has the opponent of tigers and a record of 78-64?", "context": "CREATE TABLE table_name_75 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT time FROM table_name_61 WHERE team = \"kawasaki zx10 1000cc\"", "question": "What time did team kawasaki zx10 1000cc have?", "context": "CREATE TABLE table_name_61 (time VARCHAR, team VARCHAR)"}, {"answer": "SELECT time FROM table_name_72 WHERE team = \"kawasaki zx10 1000cc\"", "question": "What time did team kawasaki zx10 1000cc have?", "context": "CREATE TABLE table_name_72 (time VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_94 WHERE time = \"1:12.40.28\"", "question": "What is the rank for the team with a Time of 1:12.40.28?", "context": "CREATE TABLE table_name_94 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT issue_date_s_ FROM table_name_32 WHERE artist = \"men at work\"", "question": "Which Issue Date(s) has an Artist of men at work?", "context": "CREATE TABLE table_name_32 (issue_date_s_ VARCHAR, artist VARCHAR)"}, {"answer": "SELECT SUM(weeks_on_top) FROM table_name_94 WHERE issue_date_s_ = \"20 november\"", "question": "Which Weeks on Top have an Issue Date(s) of 20 november?", "context": "CREATE TABLE table_name_94 (weeks_on_top INTEGER, issue_date_s_ VARCHAR)"}, {"answer": "SELECT male FROM table_name_26 WHERE female = \"amy winehouse\"", "question": "Who is the male partner for amy winehouse?", "context": "CREATE TABLE table_name_26 (male VARCHAR, female VARCHAR)"}, {"answer": "SELECT male FROM table_name_79 WHERE year < 2004 AND female = \"dido\"", "question": "Which male is paired with dido in 2004?", "context": "CREATE TABLE table_name_79 (male VARCHAR, year VARCHAR, female VARCHAR)"}, {"answer": "SELECT female FROM table_name_48 WHERE album = \"elephant\"", "question": "Which female artist has an album named elephant?", "context": "CREATE TABLE table_name_48 (female VARCHAR, album VARCHAR)"}, {"answer": "SELECT home FROM table_name_86 WHERE date = \"march 30\"", "question": "Date of march 30 involves what home?", "context": "CREATE TABLE table_name_86 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_64 WHERE opponent = \"los angeles rams\"", "question": "Which venue hosted the Los Angeles Rams as an opponent?", "context": "CREATE TABLE table_name_64 (venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_1 WHERE week > 4 AND venue = \"city stadium\" AND attendance > 14 OFFSET 297", "question": "Which date's week was more than 4 with the venue being City Stadium and where the attendance was more than 14,297?", "context": "CREATE TABLE table_name_1 (date VARCHAR, attendance VARCHAR, week VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home FROM table_name_29 WHERE visitor = \"toronto\"", "question": "Name the home with toronto visiting", "context": "CREATE TABLE table_name_29 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_97 WHERE position = \"defensive tackle\" AND player = \"lorenzo freeman\"", "question": "What was the pick# for Lorenzo Freeman as defensive tackle?", "context": "CREATE TABLE table_name_97 (pick__number VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_87 WHERE player = \"greg harris\"", "question": "What is the largest pick# for Greg Harris?", "context": "CREATE TABLE table_name_87 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_21 WHERE college = \"stanford\"", "question": "Which round goes to Stanford college?", "context": "CREATE TABLE table_name_21 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_26 WHERE player = \"don majkowski\"", "question": "What is the sum of pick# for Don Majkowski?3", "context": "CREATE TABLE table_name_26 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_19 WHERE round = \"round 7\" AND player = \"tony leiker\"", "question": "Which college had Tony Leiker in round 7?", "context": "CREATE TABLE table_name_19 (college VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT company FROM table_name_37 WHERE type = \"joint venture\" AND principal_activities = \"cargo airline\" AND incorporated_in = \"china\"", "question": "Which  company's type is joint venture, and has principle activities listed as Cargo Airline and an incorporation of China?", "context": "CREATE TABLE table_name_37 (company VARCHAR, incorporated_in VARCHAR, type VARCHAR, principal_activities VARCHAR)"}, {"answer": "SELECT type FROM table_name_42 WHERE incorporated_in = \"hong kong\" AND principal_activities = \"travel agency\" AND company = \"cathay pacific holidays\"", "question": "What is the type for the Cathay Pacific Holidays company, an incorporation of Hong Kong and listed activities as Travel Agency?", "context": "CREATE TABLE table_name_42 (type VARCHAR, company VARCHAR, incorporated_in VARCHAR, principal_activities VARCHAR)"}, {"answer": "SELECT position FROM table_name_78 WHERE surname = \"naylor\"", "question": "Which Position has a Surname of naylor?", "context": "CREATE TABLE table_name_78 (position VARCHAR, surname VARCHAR)"}, {"answer": "SELECT COUNT(uni_number) FROM table_name_31 WHERE bats = \"s\" AND position = \"utl\"", "question": "How many Uni numbers have Bats of s, and a Position of utl?", "context": "CREATE TABLE table_name_31 (uni_number VARCHAR, bats VARCHAR, position VARCHAR)"}, {"answer": "SELECT first FROM table_name_12 WHERE uni_number > 34 AND throws = \"r\" AND position = \"rhp\" AND surname = \"stockman\"", "question": "Which First has a Uni # larger than 34, and Throws of r, and a Position of rhp, and a Surname of stockman?", "context": "CREATE TABLE table_name_12 (first VARCHAR, surname VARCHAR, position VARCHAR, uni_number VARCHAR, throws VARCHAR)"}, {"answer": "SELECT uni_number FROM table_name_40 WHERE surname = \"ough\"", "question": "Which Uni # has a Surname of ough?", "context": "CREATE TABLE table_name_40 (uni_number VARCHAR, surname VARCHAR)"}, {"answer": "SELECT surname FROM table_name_63 WHERE throws = \"l\" AND dob = \"5/02/79\"", "question": "Which Surname has Throws of l, and a DOB of 5/02/79?", "context": "CREATE TABLE table_name_63 (surname VARCHAR, throws VARCHAR, dob VARCHAR)"}, {"answer": "SELECT surface FROM table_name_93 WHERE partner = \"sandrine testud\" AND date = \"november 14, 1999\"", "question": "Which surface had a partner of Sandrine Testud on November 14, 1999?", "context": "CREATE TABLE table_name_93 (surface VARCHAR, partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(field_goals) FROM table_name_65 WHERE points > 60", "question": "What is the average number of field goals for players with more than 60 points?", "context": "CREATE TABLE table_name_65 (field_goals INTEGER, points INTEGER)"}, {"answer": "SELECT MIN(field_goals) FROM table_name_5 WHERE touchdowns = 4 AND extra_points < 9", "question": "What is the smallest number of field goals for players with 4 touchdowns and less than 9 extra points?", "context": "CREATE TABLE table_name_5 (field_goals INTEGER, touchdowns VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_88 WHERE extra_points = 0 AND touchdowns < 2", "question": "What is the highest number of points for players with less than 2 touchdowns and 0 extra points?", "context": "CREATE TABLE table_name_88 (points INTEGER, extra_points VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT MAX(extra_points) FROM table_name_47 WHERE touchdowns < 2 AND points < 1", "question": "What is the highest number of extra points for players with less than 2 touchdowns and less than 1 point?", "context": "CREATE TABLE table_name_47 (extra_points INTEGER, touchdowns VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_41 WHERE touchdowns = 4 AND field_goals > 0", "question": "What is the average number of points for players with 4 touchdowns and more than 0 field goals?", "context": "CREATE TABLE table_name_41 (points INTEGER, touchdowns VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT MIN(e_score) FROM table_name_66 WHERE t_score = 8 AND total < 22.95", "question": "What E score has the T score of 8 and a number smaller than 22.95?", "context": "CREATE TABLE table_name_66 (e_score INTEGER, t_score VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(a_score) FROM table_name_92 WHERE t_score < 7.3 AND e_score > 7.1", "question": "What's the sum of A Score that also has a score lower than 7.3 and an E Score larger than 7.1?", "context": "CREATE TABLE table_name_92 (a_score INTEGER, t_score VARCHAR, e_score VARCHAR)"}, {"answer": "SELECT COUNT(relative_height__m_) FROM table_name_9 WHERE country = \"scotland\" AND parent = \"ben vorlich\"", "question": "What is the relative height of Scotland with Ben Vorlich as parent?", "context": "CREATE TABLE table_name_9 (relative_height__m_ VARCHAR, country VARCHAR, parent VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_83 WHERE nation = \"austria\" AND silver < 0", "question": "What is the highest rank of Austria, which had less than 0 silvers?", "context": "CREATE TABLE table_name_83 (rank INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_72 WHERE gold = 0 AND silver < 0", "question": "What is the rank of the team with 0 gold and less than 0 silvers?", "context": "CREATE TABLE table_name_72 (rank INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_83 WHERE rank = 2 AND nation = \"west germany\" AND total < 1", "question": "What is the total number of bronze medals of West Germany, which is ranked 2 and has less than 1 total medals?", "context": "CREATE TABLE table_name_83 (bronze VARCHAR, total VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_43 WHERE record = \"11-6-0\" AND game__number < 17", "question": "What is the number of points of the game less than number 17 with an 11-6-0 record?", "context": "CREATE TABLE table_name_43 (points INTEGER, record VARCHAR, game__number VARCHAR)"}, {"answer": "SELECT record FROM table_name_14 WHERE date = \"november 22\"", "question": "What is the record of the game on November 22?", "context": "CREATE TABLE table_name_14 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_30 WHERE home = \"los angeles\" AND game__number = 19", "question": "Who is the visitor team of game 19 with Los Angeles as the home team?", "context": "CREATE TABLE table_name_30 (visitor VARCHAR, home VARCHAR, game__number VARCHAR)"}, {"answer": "SELECT studio_host FROM table_name_42 WHERE year = \"2003-04\"", "question": "WHich Studio host has a Year of 2003-04?", "context": "CREATE TABLE table_name_42 (studio_host VARCHAR, year VARCHAR)"}, {"answer": "SELECT studio_analysts FROM table_name_36 WHERE studio_host = \"gary tanguay\" AND year = \"2009-10\"", "question": "WHich Studio analysts has a Studio host of gary tanguay in 2009-10?", "context": "CREATE TABLE table_name_36 (studio_analysts VARCHAR, studio_host VARCHAR, year VARCHAR)"}, {"answer": "SELECT color_commentator_s_ FROM table_name_3 WHERE studio_host = \"gary tanguay & eric frede\"", "question": "WHich Color commentatorhas a Studio host of gary tanguay & eric frede?", "context": "CREATE TABLE table_name_3 (color_commentator_s_ VARCHAR, studio_host VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_name_63 WHERE studio_host = \"gary tanguay\" AND studio_analysts = \"donny marshall\"", "question": "WHich Play-by-play has a Studio host of gary tanguay, and a Studio analysts of donny marshall?", "context": "CREATE TABLE table_name_63 (play_by_play VARCHAR, studio_host VARCHAR, studio_analysts VARCHAR)"}, {"answer": "SELECT color_commentator_s_ FROM table_name_41 WHERE channel = \"fsn new england\" AND year = \"2004-05\"", "question": "Which Color commentator has a Channel of fsn new england, and a Year of 2004-05?", "context": "CREATE TABLE table_name_41 (color_commentator_s_ VARCHAR, channel VARCHAR, year VARCHAR)"}, {"answer": "SELECT courtside_reporter FROM table_name_43 WHERE channel = \"fsn new england\" AND year = \"2006-07\"", "question": "Which Courtside reporter has a Channel of fsn new england in 2006-07?", "context": "CREATE TABLE table_name_43 (courtside_reporter VARCHAR, channel VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE date = \"april 21\"", "question": "What was the score on April 21?", "context": "CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE location = \"comiskey park\" AND inning = \"4th\"", "question": "What date was the game at Comiskey Park and had a 4th Inning?", "context": "CREATE TABLE table_name_47 (date VARCHAR, location VARCHAR, inning VARCHAR)"}, {"answer": "SELECT MAX(home_run) FROM table_name_82 WHERE opposing_pitcher = \"efrain valdez\"", "question": "When Efrain Valdez was pitching, what was the highest home run?", "context": "CREATE TABLE table_name_82 (home_run INTEGER, opposing_pitcher VARCHAR)"}, {"answer": "SELECT AVG(home_run) FROM table_name_43 WHERE location = \"tiger stadium\" AND date = \"june 17\"", "question": "On June 17 in Tiger stadium, what was the average home run?", "context": "CREATE TABLE table_name_43 (home_run INTEGER, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE attendance = \"528\"", "question": "For the game with 528 attendance, what was the result?", "context": "CREATE TABLE table_name_14 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE record = \"80-61\"", "question": "What is the score of the game that holds a record of 80-61?", "context": "CREATE TABLE table_name_69 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_30 WHERE attendance = \"28,135\"", "question": "What is the record of the game with 28,135 people in attendance?", "context": "CREATE TABLE table_name_30 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE points = 2", "question": "what team has a score of 2", "context": "CREATE TABLE table_name_53 (score VARCHAR, points VARCHAR)"}, {"answer": "SELECT record FROM table_name_3 WHERE game = 11", "question": "what team has a score of 11", "context": "CREATE TABLE table_name_3 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT nation FROM table_name_56 WHERE time__sec_ = 47.049", "question": "Which nation finished with a time of 47.049?", "context": "CREATE TABLE table_name_56 (nation VARCHAR, time__sec_ VARCHAR)"}, {"answer": "SELECT sport FROM table_name_53 WHERE time__sec_ > 49", "question": "Which sport has a time over 49?", "context": "CREATE TABLE table_name_53 (sport VARCHAR, time__sec_ INTEGER)"}, {"answer": "SELECT nation FROM table_name_9 WHERE time__sec_ = 48.38", "question": "Which nation had a time of 48.38?", "context": "CREATE TABLE table_name_9 (nation VARCHAR, time__sec_ VARCHAR)"}, {"answer": "SELECT year FROM table_name_17 WHERE team = \"aprilia\" AND rank = \"4th\"", "question": "Which year had a team of Aprilia and a rank of 4th?", "context": "CREATE TABLE table_name_17 (year VARCHAR, team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT class FROM table_name_30 WHERE machine = \"rs125r\" AND points > 113 AND rank = \"4th\"", "question": "Which class had a machine of RS125R, points over 113, and a rank of 4th?", "context": "CREATE TABLE table_name_30 (class VARCHAR, rank VARCHAR, machine VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_name_95 WHERE year > 1995 AND machine = \"rs125r\" AND rank = \"1st\"", "question": "Which team had a year over 1995, machine of RS125R, and ranked 1st?", "context": "CREATE TABLE table_name_95 (team VARCHAR, rank VARCHAR, year VARCHAR, machine VARCHAR)"}, {"answer": "SELECT oberliga_bayern FROM table_name_24 WHERE season = \"1981-82\"", "question": "Which Oberliga Bayern has a Season of 1981-82?", "context": "CREATE TABLE table_name_24 (oberliga_bayern VARCHAR, season VARCHAR)"}, {"answer": "SELECT oberliga_s\u00fcdwest FROM table_name_82 WHERE oberliga_bayern = \"fc schweinfurt 05\"", "question": "Which Oberliga S\u00fcdwest has an Oberliga Bayern of fc schweinfurt 05?", "context": "CREATE TABLE table_name_82 (oberliga_s\u00fcdwest VARCHAR, oberliga_bayern VARCHAR)"}, {"answer": "SELECT season FROM table_name_19 WHERE oberliga_bayern = \"spvgg bayreuth\" AND oberliga_s\u00fcdwest = \"eintracht trier\"", "question": "Which Season ha spvgg bayreuth and eintracht trier?", "context": "CREATE TABLE table_name_19 (season VARCHAR, oberliga_bayern VARCHAR, oberliga_s\u00fcdwest VARCHAR)"}, {"answer": "SELECT oberliga_baden_w\u00fcrttemberg FROM table_name_41 WHERE season = \"1991-92\"", "question": "which Oberliga Baden-W\u00fcrttemberg has a Season of 1991-92?", "context": "CREATE TABLE table_name_41 (oberliga_baden_w\u00fcrttemberg VARCHAR, season VARCHAR)"}, {"answer": "SELECT oberliga_baden_w\u00fcrttemberg FROM table_name_77 WHERE oberliga_hessen = \"fsv frankfurt\" AND season = \"1993-94\"", "question": "Which Oberliga Baden-W\u00fcrttemberg has an Oberliga Hessen of fsv frankfurt in 1993-94?", "context": "CREATE TABLE table_name_77 (oberliga_baden_w\u00fcrttemberg VARCHAR, oberliga_hessen VARCHAR, season VARCHAR)"}, {"answer": "SELECT oberliga_s\u00fcdwest FROM table_name_60 WHERE oberliga_baden_w\u00fcrttemberg = \"sv sandhausen\" AND season = \"1984-85\"", "question": "which Oberliga S\u00fcdwes has an Oberliga Baden-W\u00fcrttemberg of sv sandhausen in 1984-85?", "context": "CREATE TABLE table_name_60 (oberliga_s\u00fcdwest VARCHAR, oberliga_baden_w\u00fcrttemberg VARCHAR, season VARCHAR)"}, {"answer": "SELECT loss FROM table_name_86 WHERE save = \"|| 23,391 ||17-18||\"", "question": "Name the loss with save of || 23,391 ||17-18||?", "context": "CREATE TABLE table_name_86 (loss VARCHAR, save VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_35 WHERE save = \"williams (9)\"", "question": "Name the opponent for save of williams (9)", "context": "CREATE TABLE table_name_35 (opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT save FROM table_name_86 WHERE opponent = \"braves\" AND date = \"may 15\"", "question": "Name the save for braves for may 15", "context": "CREATE TABLE table_name_86 (save VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_4 WHERE date = \"may 1\"", "question": "Name the loss for may 1", "context": "CREATE TABLE table_name_4 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE opponent = \"ekaterina makarova\"", "question": "What was the score in the tournament against Ekaterina Makarova?", "context": "CREATE TABLE table_name_21 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT market_market_rank FROM table_name_3 WHERE saturday = \"11pm-1am\"", "question": "What is the market for the 11pm-1am Saturday game?", "context": "CREATE TABLE table_name_3 (market_market_rank VARCHAR, saturday VARCHAR)"}, {"answer": "SELECT name FROM table_name_83 WHERE locale = \"holland\"", "question": "what is the name of the holland locale", "context": "CREATE TABLE table_name_83 (name VARCHAR, locale VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_42 WHERE primary_industry = \"health care\"", "question": "How many ranks have an industry of health care?", "context": "CREATE TABLE table_name_42 (rank VARCHAR, primary_industry VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_96 WHERE opponent = \"new york islanders\" AND game < 65", "question": "Which Points have an Opponent of new york islanders, and a Game smaller than 65?", "context": "CREATE TABLE table_name_96 (points INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_76 WHERE record = \"40\u201321\u201312\u20133\" AND march > 28", "question": "How many Points have a Record of 40\u201321\u201312\u20133, and a March larger than 28?", "context": "CREATE TABLE table_name_76 (points VARCHAR, record VARCHAR, march VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_20 WHERE record = \"38\u201320\u201312\u20132\"", "question": "Which Opponent has a Record of 38\u201320\u201312\u20132?", "context": "CREATE TABLE table_name_20 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_76 WHERE points < 92 AND score = \"1\u20133\"", "question": "Which Game is the highest one that has Points smaller than 92, and a Score of 1\u20133?", "context": "CREATE TABLE table_name_76 (game INTEGER, points VARCHAR, score VARCHAR)"}, {"answer": "SELECT accession_number FROM table_name_5 WHERE common_name = \"purple sea urchin\"", "question": "What is the accession number of the protein with the common name Purple Sea Urchin?", "context": "CREATE TABLE table_name_5 (accession_number VARCHAR, common_name VARCHAR)"}, {"answer": "SELECT protein_name FROM table_name_2 WHERE sequence_identity_to_human_protein = \"32%\"", "question": "What is the protein name of the protein with a sequence identity to human protein of 32%?", "context": "CREATE TABLE table_name_2 (protein_name VARCHAR, sequence_identity_to_human_protein VARCHAR)"}, {"answer": "SELECT SUM(sequence_length__aa_) FROM table_name_67 WHERE common_name = \"purple sea urchin\" AND divergence_from_human_lineage__mya_ < 742.9", "question": "What is the sequence length (aa) of the protein with the common name Purple Sea Urchin and a divergence from human lineage less than 742.9?", "context": "CREATE TABLE table_name_67 (sequence_length__aa_ INTEGER, common_name VARCHAR, divergence_from_human_lineage__mya_ VARCHAR)"}, {"answer": "SELECT accession_number FROM table_name_74 WHERE divergence_from_human_lineage__mya_ = 937.5", "question": "What is the accession number of the protein with a divergence from human lineage of 937.5?", "context": "CREATE TABLE table_name_74 (accession_number VARCHAR, divergence_from_human_lineage__mya_ VARCHAR)"}, {"answer": "SELECT series FROM table_name_86 WHERE score = \"9\u20134\"", "question": "Which Series has a Score of 9\u20134?", "context": "CREATE TABLE table_name_86 (series VARCHAR, score VARCHAR)"}, {"answer": "SELECT series FROM table_name_3 WHERE opponent = \"calgary flames\" AND score = \"9\u20134\"", "question": "Which Series has an Opponent of calgary flames, and a Score of 9\u20134?", "context": "CREATE TABLE table_name_3 (series VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE game < 4 AND opponent = \"calgary flames\" AND score = \"4\u20135\"", "question": "Which Date has a Game smaller than 4, and an Opponent of calgary flames, and a Score of 4\u20135?", "context": "CREATE TABLE table_name_83 (date VARCHAR, score VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE score = \"4\u20135\" AND game < 4", "question": "Which Date has a Score of 4\u20135, and a Game smaller than 4?", "context": "CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_name_73 WHERE final_af2_season < 2009 AND arena = \"bi-lo center\" AND first_af2_season < 2000", "question": "How many founded years had a final af2 season prior to 2009 where the arena was the bi-lo center and the first af2 season was prior to 2000?", "context": "CREATE TABLE table_name_73 (founded VARCHAR, first_af2_season VARCHAR, final_af2_season VARCHAR, arena VARCHAR)"}, {"answer": "SELECT AVG(founded) FROM table_name_96 WHERE team = \"baton rouge blaze\"", "question": "What is the mean Founded number when the team is the Baton Rouge Blaze?", "context": "CREATE TABLE table_name_96 (founded INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_23 WHERE silver < 1 AND total < 0", "question": "What is listed as the highest Gold that also has a Silver that's smaller than 1, and has a Total that's smaller than 0?", "context": "CREATE TABLE table_name_23 (gold INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_2 WHERE gold < 0", "question": "What's the total Rank that has a Gold that's smaller than 0?", "context": "CREATE TABLE table_name_2 (rank INTEGER, gold INTEGER)"}, {"answer": "SELECT MAX(participants) FROM table_name_13 WHERE rank = 5 AND silver < 0", "question": "What is listed as the highest Participants that also have a Rank of 5, and Silver that's smaller than 0?", "context": "CREATE TABLE table_name_13 (participants INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_6 WHERE gold > 0 AND participants < 10", "question": "What is listed as the highest Rank that has a Gold that's larger than 0, and Participants that's smaller than 10?", "context": "CREATE TABLE table_name_6 (rank INTEGER, gold VARCHAR, participants VARCHAR)"}, {"answer": "SELECT SUM(participants) FROM table_name_38 WHERE silver < 0", "question": "What is the total number of Participants that has Silver that's smaller than 0?", "context": "CREATE TABLE table_name_38 (participants INTEGER, silver INTEGER)"}, {"answer": "SELECT skip FROM table_name_90 WHERE second = \"zrinka muhek\"", "question": "Which skip has Zrinka Muhek as Second?", "context": "CREATE TABLE table_name_90 (skip VARCHAR, second VARCHAR)"}, {"answer": "SELECT second FROM table_name_96 WHERE third = \"caroline reed\"", "question": "What is the name of the second who has Caroline Reed as third?", "context": "CREATE TABLE table_name_96 (second VARCHAR, third VARCHAR)"}, {"answer": "SELECT lead FROM table_name_22 WHERE skip = \"kirsty balfour\"", "question": "Which lead has Kirsty Balfour as second?", "context": "CREATE TABLE table_name_22 (lead VARCHAR, skip VARCHAR)"}, {"answer": "SELECT third FROM table_name_47 WHERE skip = \"barbora vojtusova\"", "question": "What is the name of the third who has Barbora Vojtusova as Skip?", "context": "CREATE TABLE table_name_47 (third VARCHAR, skip VARCHAR)"}, {"answer": "SELECT second FROM table_name_41 WHERE third = \"nikolina petric\"", "question": "Who is the Second with Nikolina Petric as Third?", "context": "CREATE TABLE table_name_41 (second VARCHAR, third VARCHAR)"}, {"answer": "SELECT lead FROM table_name_10 WHERE skip = \"katarina radonic\"", "question": "Which Lead has Katarina Radonic as Skip?", "context": "CREATE TABLE table_name_10 (lead VARCHAR, skip VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_84 WHERE laps = 24 AND grid = 9", "question": "Who manufactured the motorcycle that did 24 laps and 9 grids?", "context": "CREATE TABLE table_name_84 (manufacturer VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_18 WHERE laps > 24", "question": "How many grids correspond to more than 24 laps?", "context": "CREATE TABLE table_name_18 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT time_retired FROM table_name_81 WHERE grid = 10", "question": "What is the time with 10 grids?", "context": "CREATE TABLE table_name_81 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_96 WHERE time_retired = \"+1:12.208\" AND laps > 24", "question": "How many grids have more than 24 laps with a time/retired of +1:12.208?", "context": "CREATE TABLE table_name_96 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE winner = \"keith clearwater (1)\"", "question": "What is the score from the winner Keith Clearwater (1)?", "context": "CREATE TABLE table_name_60 (score VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE winner = \"tom kite (10)\"", "question": "What is the date where the winner was Tom Kite (10)?", "context": "CREATE TABLE table_name_24 (date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT week FROM table_name_63 WHERE date = \"december 4, 1960\"", "question": "Which Week had a Date of december 4, 1960?", "context": "CREATE TABLE table_name_63 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT bats FROM table_name_93 WHERE surname = \"baron\"", "question": "Which player has a last name of baron?", "context": "CREATE TABLE table_name_93 (bats VARCHAR, surname VARCHAR)"}, {"answer": "SELECT bats FROM table_name_17 WHERE uni_number = 31", "question": "Which batter has a uni# of 31?", "context": "CREATE TABLE table_name_17 (bats VARCHAR, uni_number VARCHAR)"}, {"answer": "SELECT bats FROM table_name_61 WHERE surname = \"graham\"", "question": "Which batter has the last name Graham?", "context": "CREATE TABLE table_name_61 (bats VARCHAR, surname VARCHAR)"}, {"answer": "SELECT home FROM table_name_56 WHERE date = \"april 1\"", "question": "Which Home has a Date of april 1?", "context": "CREATE TABLE table_name_56 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_5 WHERE record = \"16\u201317\u20136\"", "question": "Which Home has a Record of 16\u201317\u20136?", "context": "CREATE TABLE table_name_5 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE score = \"2\u20137\" AND record = \"5\u20138\u20132\"", "question": "Which Date has a Score of 2\u20137, and a Record of 5\u20138\u20132?", "context": "CREATE TABLE table_name_50 (date VARCHAR, score VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_23 WHERE score = \"2\u20134\" AND home = \"quebec nordiques\"", "question": "Which Record has a Score of 2\u20134, and a Home of quebec nordiques?", "context": "CREATE TABLE table_name_23 (record VARCHAR, score VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_49 WHERE home = \"edmonton oilers\" AND score = \"3\u20136\"", "question": "Which Record has a Home of edmonton oilers, and a Score of 3\u20136?", "context": "CREATE TABLE table_name_49 (record VARCHAR, home VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_50 WHERE record = \"11\u201314\u20134\"", "question": "Which Home has a Record of 11\u201314\u20134?", "context": "CREATE TABLE table_name_50 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT series_ep FROM table_name_22 WHERE segment_d = \"fluorescent tubes\"", "question": "What is the series episode number with a segment of D, and having fluorescent tubes?", "context": "CREATE TABLE table_name_22 (series_ep VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT netflix FROM table_name_47 WHERE series_ep = \"1-01\"", "question": "What is the Netflix number having a series episode of 1-01?", "context": "CREATE TABLE table_name_47 (netflix VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT netflix FROM table_name_2 WHERE segment_d = \"ned can corn\"", "question": "What is the Netflix number having a segment D, of NED can corn?", "context": "CREATE TABLE table_name_2 (netflix VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_18 WHERE netflix = \"s01e12\"", "question": "What is the segment A name, having a Netflix of s01e12?", "context": "CREATE TABLE table_name_18 (segment_a VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT netflix FROM table_name_53 WHERE segment_c = \"pills\"", "question": "What is the Netflix number having a segment of C of pills?", "context": "CREATE TABLE table_name_53 (netflix VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT segment_b FROM table_name_93 WHERE segment_d = \"pasta\"", "question": "For a segment D of pasta, what is the segment B?", "context": "CREATE TABLE table_name_93 (segment_b VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT sport FROM table_name_41 WHERE medal = \"gold\" AND games = \"2000 sydney\"", "question": "Which sport resulted in a gold medal in the 2000 Sydney games?", "context": "CREATE TABLE table_name_41 (sport VARCHAR, medal VARCHAR, games VARCHAR)"}, {"answer": "SELECT event FROM table_name_31 WHERE sport = \"wrestling\" AND games = \"2008 beijing\"", "question": "Which wrestling event was at the 2008 Beijing games?", "context": "CREATE TABLE table_name_31 (event VARCHAR, sport VARCHAR, games VARCHAR)"}, {"answer": "SELECT event FROM table_name_28 WHERE games = \"2008 beijing\" AND sport = \"wrestling\"", "question": "What wrestling event was participated in during the 2008 Beijing games?", "context": "CREATE TABLE table_name_28 (event VARCHAR, games VARCHAR, sport VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE december > 29", "question": "after december 29 what is the score?", "context": "CREATE TABLE table_name_50 (score VARCHAR, december INTEGER)"}, {"answer": "SELECT game_3 FROM table_name_92 WHERE game_2 = \"ian french\"", "question": "Wjat game 3 has ian french as a game of 2?", "context": "CREATE TABLE table_name_92 (game_3 VARCHAR, game_2 VARCHAR)"}, {"answer": "SELECT game_1 FROM table_name_13 WHERE position = \"halfback\"", "question": "What game 1 has halfback as a position?", "context": "CREATE TABLE table_name_13 (game_1 VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_62 WHERE game_1 = \"colin scott\"", "question": "What position has colin scott as game 1?", "context": "CREATE TABLE table_name_62 (position VARCHAR, game_1 VARCHAR)"}, {"answer": "SELECT game_1 FROM table_name_18 WHERE game_2 = \"bob lindner\"", "question": "What game 1 has bob lindner as game 2?", "context": "CREATE TABLE table_name_18 (game_1 VARCHAR, game_2 VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_72 WHERE player_name = \"mario williams\" AND year < 2006", "question": "What pick was mario williams before 2006?", "context": "CREATE TABLE table_name_72 (pick INTEGER, player_name VARCHAR, year VARCHAR)"}, {"answer": "SELECT entered_office FROM table_name_74 WHERE left_office = \"1337\"", "question": "What is the entered office that has 1337 as the left office?", "context": "CREATE TABLE table_name_74 (entered_office VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT born_died FROM table_name_8 WHERE entered_office = \"13 september 1229\"", "question": "What is the born-died that has office of 13 September 1229 as the entered?", "context": "CREATE TABLE table_name_8 (born_died VARCHAR, entered_office VARCHAR)"}, {"answer": "SELECT blagojevich__d_ FROM table_name_5 WHERE source = \"zogby/wsj\" AND topinka__r_ = \"33.2%\"", "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_70 WHERE source = \"zogby/wsj\" AND date = \"october 16, 2006\"", "question": "Which Blagojevich (D) has a Source of zogby/wsj, and a Date of october 16, 2006?", "context": "CREATE TABLE table_name_70 (blagojevich__d_ VARCHAR, source VARCHAR, date VARCHAR)"}, {"answer": "SELECT blagojevich__d_ FROM table_name_77 WHERE date = \"october 16, 2006\"", "question": "Which Blagojevich (D) happened on october 16, 2006?", "context": "CREATE TABLE table_name_77 (blagojevich__d_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT topinka__r_ FROM table_name_11 WHERE date = \"january 22, 2006\"", "question": "Which Topinka happened on january 22, 2006?", "context": "CREATE TABLE table_name_11 (topinka__r_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE remainder = \"20%\"", "question": "Which Date has a Remainder of 20%?", "context": "CREATE TABLE table_name_21 (date VARCHAR, remainder VARCHAR)"}, {"answer": "SELECT source FROM table_name_78 WHERE remainder = \"15%\" AND topinka__r_ = \"26%\"", "question": "Which Source has a Remainder of 15%, and a Topinka of 26%?", "context": "CREATE TABLE table_name_78 (source VARCHAR, remainder VARCHAR, topinka__r_ VARCHAR)"}, {"answer": "SELECT season FROM table_name_98 WHERE number_of_contestants > 12 AND winner = \"greydis gil\"", "question": "What season had more than 12 contestants in which greydis gil won?", "context": "CREATE TABLE table_name_98 (season VARCHAR, number_of_contestants VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(number_of_contestants) FROM table_name_65 WHERE winner = \"alejandra espinoza\"", "question": "How many contestants were there in a season where alejandra espinoza won?", "context": "CREATE TABLE table_name_65 (number_of_contestants VARCHAR, winner VARCHAR)"}, {"answer": "SELECT pilot FROM table_name_89 WHERE record_description = \"maximum load to m (ft)\" AND date = \"23 september 1961\"", "question": "Record description of maximum load to m (ft), and a Date of 23 september 1961 is what pilot?", "context": "CREATE TABLE table_name_89 (pilot VARCHAR, record_description VARCHAR, date VARCHAR)"}, {"answer": "SELECT record_description FROM table_name_38 WHERE date = \"23 september 1961\" AND pilot = \"b.v. zemskov\"", "question": "Date of 23 september 1961, and a Pilot of b.v. zemskov had what record description?", "context": "CREATE TABLE table_name_38 (record_description VARCHAR, date VARCHAR, pilot VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE type = \"mi-10r\" AND record_description = \"altitude with kg (lb) payload\" AND pilot = \"g.v. alfyorov\"", "question": "Type of mi-10r, and a Record description of altitude with kg (lb) payload, and a Pilot of g.v. alfyorov is what date?", "context": "CREATE TABLE table_name_97 (date VARCHAR, pilot VARCHAR, type VARCHAR, record_description VARCHAR)"}, {"answer": "SELECT type FROM table_name_73 WHERE record_description = \"altitude with kg (lb) payload\" AND pilot = \"g.v. alfyorov\"", "question": "Record description of altitude with kg (lb) payload, and a Pilot of g.v. alfyorov had what type?", "context": "CREATE TABLE table_name_73 (type VARCHAR, record_description VARCHAR, pilot VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE pilot = \"g.v. alfyorov\" AND record_description = \"altitude with kg (lb) payload\" AND type = \"mi-10\"", "question": "Pilot of g.v. alfyorov, and a Record description of altitude with kg (lb) payload, and a Type of mi-10 involved what date?", "context": "CREATE TABLE table_name_39 (date VARCHAR, type VARCHAR, pilot VARCHAR, record_description VARCHAR)"}, {"answer": "SELECT record_description FROM table_name_96 WHERE achievement = \"m (ft)\" AND type = \"mi-10r\" AND pilot = \"v.p. koloshenko\" AND date = \"28 may 1965\"", "question": "Achievement of m (ft), and a Type of mi-10r, and a Pilot of v.p. koloshenko, and a Date of 28 may 1965 had what record description?", "context": "CREATE TABLE table_name_96 (record_description VARCHAR, date VARCHAR, pilot VARCHAR, achievement VARCHAR, type VARCHAR)"}, {"answer": "SELECT death FROM table_name_86 WHERE spouse = \"charles ii\"", "question": "When was the date of death for the person married to Charles II?", "context": "CREATE TABLE table_name_86 (death VARCHAR, spouse VARCHAR)"}, {"answer": "SELECT became_consort FROM table_name_16 WHERE spouse = \"james ii\"", "question": "On what date did James II take a consort?", "context": "CREATE TABLE table_name_16 (became_consort VARCHAR, spouse VARCHAR)"}, {"answer": "SELECT COUNT(field_goals) FROM table_name_6 WHERE extra_points > 0 AND touchdowns = 5", "question": "What is the total number of field goals a player had when there were more than 0 extra points and there were 5 touchdowns?", "context": "CREATE TABLE table_name_6 (field_goals VARCHAR, extra_points VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT SUM(touchdowns) FROM table_name_44 WHERE extra_points > 0 AND field_goals < 0", "question": "What is the sum of all the touchdowns when the player had more than 0 extra points and less than 0 field goals?", "context": "CREATE TABLE table_name_44 (touchdowns INTEGER, extra_points VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT COUNT(field_goals) FROM table_name_99 WHERE touchdowns < 3 AND points = 4 AND extra_points < 4", "question": "What is the total number of field goals for a player that had less than 3 touchdowns, had 4 points, and had less than 4 extra points?", "context": "CREATE TABLE table_name_99 (field_goals VARCHAR, extra_points VARCHAR, touchdowns VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_98 WHERE ntfa_div_2 = \"lilydale\"", "question": "What is the lowest number of draws of the NTFA Div 2 Lilydale?", "context": "CREATE TABLE table_name_98 (draws INTEGER, ntfa_div_2 VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_41 WHERE wins = 9 AND byes < 0", "question": "What is the lowest number of draws of the team with 9 wins and less than 0 byes?", "context": "CREATE TABLE table_name_41 (draws INTEGER, wins VARCHAR, byes VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_38 WHERE ntfa_div_2 = \"fingal valley\"", "question": "What is the lowest number of against of NTFA Div 2 Fingal Valley?", "context": "CREATE TABLE table_name_38 (against INTEGER, ntfa_div_2 VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_34 WHERE area__sqmi_ = 2 OFFSET 080", "question": "What is the largest rank with 2,080 area?", "context": "CREATE TABLE table_name_34 (rank INTEGER, area__sqmi_ VARCHAR)"}, {"answer": "SELECT MAX(area__km_2__) FROM table_name_41 WHERE location = \"alaska\" AND population__2000_ = \"39\" AND rank > 19", "question": "What is the largest area in Alaska with a population of 39 and rank over 19?", "context": "CREATE TABLE table_name_41 (area__km_2__ INTEGER, rank VARCHAR, location VARCHAR, population__2000_ VARCHAR)"}, {"answer": "SELECT SUM(events) FROM table_name_25 WHERE country = \"south africa\"", "question": "How many events are in South Africa?", "context": "CREATE TABLE table_name_25 (events INTEGER, country VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE game = \"game 2\"", "question": "On what date was game 2 played?", "context": "CREATE TABLE table_name_98 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_55 WHERE home_team = \"philadelphia\" AND date = \"april 23\"", "question": "Which game had Philadelphia as its home team and was played on April 23?", "context": "CREATE TABLE table_name_55 (game VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_20 WHERE home_team = \"philadelphia\"", "question": "Which games had Philadelphia as home team?", "context": "CREATE TABLE table_name_20 (game VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_64 WHERE home_team = \"philadelphia\" AND date = \"april 16\"", "question": "What was the result of the game played on April 16 with Philadelphia as home team?", "context": "CREATE TABLE table_name_64 (result VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_94 WHERE date = \"april 16\"", "question": "What was the result of the April 16 game?", "context": "CREATE TABLE table_name_94 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_88 WHERE result = \"126-95\"", "question": "Which game had a result of 126-95?", "context": "CREATE TABLE table_name_88 (game VARCHAR, result VARCHAR)"}, {"answer": "SELECT services FROM table_name_94 WHERE local_authority = \"chiltern\" AND zone_2010 = \"9\"", "question": "Which Services have a Local authority of chiltern, and a Zone 2010 of 9?", "context": "CREATE TABLE table_name_94 (services VARCHAR, local_authority VARCHAR, zone_2010 VARCHAR)"}, {"answer": "SELECT station FROM table_name_65 WHERE zone_2010 = \"7\"", "question": "Which Station has a Zone 2010 of 7?", "context": "CREATE TABLE table_name_65 (station VARCHAR, zone_2010 VARCHAR)"}, {"answer": "SELECT local_authority FROM table_name_46 WHERE zone_2007 = \"outside zones\" AND zone_2008 = \"outside zones\" AND zone_2010 = \"outside zones\" AND station = \"waltham cross\"", "question": "Which Local authority has a Zone 2007 of outside zones, and a Zone 2008 of outside zones, and a Zone 2010 of outside zones, and a Station of waltham cross?", "context": "CREATE TABLE table_name_46 (local_authority VARCHAR, station VARCHAR, zone_2010 VARCHAR, zone_2007 VARCHAR, zone_2008 VARCHAR)"}, {"answer": "SELECT local_authority FROM table_name_33 WHERE services = \"greater anglia\"", "question": "Which Local authority has Services of greater anglia?", "context": "CREATE TABLE table_name_33 (local_authority VARCHAR, services VARCHAR)"}, {"answer": "SELECT station FROM table_name_73 WHERE zone_2008 = \"8\" AND zone_2007 = \"outside zones\" AND services = \"london overground\"", "question": "Which Station has a Zone 2008 of 8, and a Zone 2007 of outside zones, and Services of london overground?", "context": "CREATE TABLE table_name_73 (station VARCHAR, services VARCHAR, zone_2008 VARCHAR, zone_2007 VARCHAR)"}, {"answer": "SELECT zone_2008 FROM table_name_17 WHERE services = \"greater anglia\" AND station = \"cheshunt\"", "question": "Which Zone 2008 has Services of greater anglia, and a Station of cheshunt?", "context": "CREATE TABLE table_name_17 (zone_2008 VARCHAR, services VARCHAR, station VARCHAR)"}, {"answer": "SELECT touchdowns FROM table_name_71 WHERE extra_points = 0 AND position = \"left halfback\" AND player = \"hal weeks\"", "question": "How many touchdowns are there when there were 0 extra points and Hal Weeks had left halfback?", "context": "CREATE TABLE table_name_71 (touchdowns VARCHAR, player VARCHAR, extra_points VARCHAR, position VARCHAR)"}, {"answer": "SELECT field_goals FROM table_name_8 WHERE player = \"duncan thompson\"", "question": "How many field goals did duncan thompson have?", "context": "CREATE TABLE table_name_8 (field_goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(field_goals) FROM table_name_7 WHERE touchdowns > 1 AND extra_points > 0", "question": "What is the highest field goals when there were more than 1 touchdown and 0 extra points?", "context": "CREATE TABLE table_name_7 (field_goals INTEGER, touchdowns VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT MIN(field_goals) FROM table_name_53 WHERE points < 5", "question": "What is the lowest number of field goals when the points were less than 5?", "context": "CREATE TABLE table_name_53 (field_goals INTEGER, points INTEGER)"}, {"answer": "SELECT haat FROM table_name_94 WHERE city_of_license = \"devils lake\"", "question": "what is the HAAT of devils lake", "context": "CREATE TABLE table_name_94 (haat VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE winner = \"km (mi)\"", "question": "What was the date with a winner of km (mi)?", "context": "CREATE TABLE table_name_20 (date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MAX(erp_w) FROM table_name_97 WHERE frequency_mhz = 89.1", "question": "What is the highest ERP W of an 89.1 frequency translator?", "context": "CREATE TABLE table_name_97 (erp_w INTEGER, frequency_mhz VARCHAR)"}, {"answer": "SELECT class FROM table_name_57 WHERE erp_w = 10 AND call_sign = \"w273bl\"", "question": "What is the class of the translator with 10 ERP W and a call sign of w273bl?", "context": "CREATE TABLE table_name_57 (class VARCHAR, erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_51 WHERE city_of_license = \"irmo, south carolina\"", "question": "What is the FCC info of the translator with an Irmo, South Carolina city license?", "context": "CREATE TABLE table_name_51 (fcc_info VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_16 WHERE city_of_license = \"spring valley, nevada\"", "question": "What is the call sign of the translator in Spring Valley, Nevada?", "context": "CREATE TABLE table_name_16 (call_sign VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_60 WHERE erp_w > 38 AND city_of_license = \"great falls, montana\"", "question": "What is the call sign of the translator with an ERP W greater than 38 and a city license from Great Falls, Montana?", "context": "CREATE TABLE table_name_60 (call_sign VARCHAR, erp_w VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_66 WHERE frequency_mhz = 92.7", "question": "Name the ERP W for frequency of 92.7", "context": "CREATE TABLE table_name_66 (erp_w VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_56 WHERE city_of_license = \"glens falls, new york\"", "question": "Name the ERP W for glens falls, new york", "context": "CREATE TABLE table_name_56 (erp_w VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_37 WHERE frequency_mhz < 97.3 AND call_sign = \"w237br\"", "question": "Name the FCC info for frequency Mhz less than 97.3 and call sign of w237br", "context": "CREATE TABLE table_name_37 (fcc_info VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT AVG(erp_w) FROM table_name_36 WHERE call_sign = \"w237br\"", "question": "Name the average ERP W and call sign of w237br", "context": "CREATE TABLE table_name_36 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE points = 64 AND game = 49", "question": "Which Score has Points of 64, and a Game of 49?", "context": "CREATE TABLE table_name_5 (score VARCHAR, points VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_71 WHERE score = \"4\u20131\" AND record = \"18\u201310\u20138\u20131\" AND january > 2", "question": "Which Points have a Score of 4\u20131, and a Record of 18\u201310\u20138\u20131, and a January larger than 2?", "context": "CREATE TABLE table_name_71 (points INTEGER, january VARCHAR, score VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_88 WHERE january = 18", "question": "How many Points have a January of 18?", "context": "CREATE TABLE table_name_88 (points VARCHAR, january VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_96 WHERE score = \"5\u20134\" AND points < 49", "question": "How many Games have a Score of 5\u20134, and Points smaller than 49?", "context": "CREATE TABLE table_name_96 (game VARCHAR, score VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_64 WHERE bronze = 1 AND type = \"winter\" AND silver < 3 AND total < 4", "question": "What is the average gold of the winter athlete with 1 bronze, less than 3 silver, and less than 4 total medals?", "context": "CREATE TABLE table_name_64 (gold INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR, type VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_41 WHERE type = \"winter\" AND athlete = \"clara hughes\"", "question": "What is the highest total medals winter athlete Clara Hughes has?", "context": "CREATE TABLE table_name_41 (total INTEGER, type VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_47 WHERE sport = \"short track\" AND gold = 0", "question": "What is the lowest number of bronze a short track athlete with 0 gold medals has?", "context": "CREATE TABLE table_name_47 (bronze INTEGER, sport VARCHAR, gold VARCHAR)"}, {"answer": "SELECT project_name FROM table_name_90 WHERE country = \"kazakhstan\" AND peak = \"150\"", "question": "What is the Project Name with a Country that is kazakhstan and a Peak that is 150?", "context": "CREATE TABLE table_name_90 (project_name VARCHAR, country VARCHAR, peak VARCHAR)"}, {"answer": "SELECT peak FROM table_name_14 WHERE project_name = \"talakan ph 1\"", "question": "What is the Peak with a Project Name that is talakan ph 1?", "context": "CREATE TABLE table_name_14 (peak VARCHAR, project_name VARCHAR)"}, {"answer": "SELECT project_name FROM table_name_36 WHERE country = \"opec\"", "question": "What is the Project Name with a Country that is opec?", "context": "CREATE TABLE table_name_36 (project_name VARCHAR, country VARCHAR)"}, {"answer": "SELECT operator FROM table_name_47 WHERE peak = \"55\"", "question": "What is the Operator with a Peak that is 55?", "context": "CREATE TABLE table_name_47 (operator VARCHAR, peak VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE record = \"25-41-9\"", "question": "What was the score when they had a 25-41-9 record?", "context": "CREATE TABLE table_name_84 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_81 WHERE score = \"4 - 2\" AND record = \"25-39-9\"", "question": "What is the game associated with a score of 4 - 2, and a record of 25-39-9?", "context": "CREATE TABLE table_name_81 (game INTEGER, score VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_6 WHERE result = \"w 48-10\"", "question": "How many attendances have w 48-10 as the result?", "context": "CREATE TABLE table_name_6 (attendance INTEGER, result VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_78 WHERE week = 9", "question": "How many attendances have 9 as the week?", "context": "CREATE TABLE table_name_78 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_98 WHERE week < 4 AND result = \"w 13-7\"", "question": "What is the lowest attendance that has a week less than 4, and w 13-7 as the result?", "context": "CREATE TABLE table_name_98 (attendance INTEGER, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT psd___pc FROM table_name_65 WHERE date = \"18-22/04/2009\"", "question": "What is the psd-pc for 18-22/04/2009?", "context": "CREATE TABLE table_name_65 (psd___pc VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE others = \"2%\"", "question": "What date has the others of 2%?", "context": "CREATE TABLE table_name_74 (date VARCHAR, others VARCHAR)"}, {"answer": "SELECT udmr FROM table_name_75 WHERE date = \"18-22/04/2009\"", "question": "What was the UDMR for 18-22/04/2009?", "context": "CREATE TABLE table_name_75 (udmr VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE others = \"n/a\" AND psd___pc = \"30%\"", "question": "When the other is n/a and the psc-pc is 30% what is the date?", "context": "CREATE TABLE table_name_52 (date VARCHAR, others VARCHAR, psd___pc VARCHAR)"}, {"answer": "SELECT polling_firm FROM table_name_25 WHERE others = \"1%\"", "question": "What was the polling firm with others of 1%?", "context": "CREATE TABLE table_name_25 (polling_firm VARCHAR, others VARCHAR)"}, {"answer": "SELECT elena_b\u0103sescu FROM table_name_98 WHERE polling_firm = \"gallup\"", "question": "What is the elena basescu when the poling firm of gallup?", "context": "CREATE TABLE table_name_98 (elena_b\u0103sescu VARCHAR, polling_firm VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE game < 34 AND december < 14 AND score = \"10 - 6\"", "question": "Game smaller than 34, and a December smaller than 14, and a Score of 10 - 6 has what opponent?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, score VARCHAR, game VARCHAR, december VARCHAR)"}, {"answer": "SELECT record FROM table_name_20 WHERE game > 34 AND december < 23", "question": "Game larger than 34, and a December smaller than 23 had what record?", "context": "CREATE TABLE table_name_20 (record VARCHAR, game VARCHAR, december VARCHAR)"}, {"answer": "SELECT MAX(december) FROM table_name_68 WHERE record = \"15-12-4\" AND game > 31", "question": "Record of 15-12-4, and a Game larger than 31 involves what highest December?", "context": "CREATE TABLE table_name_68 (december INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_77 WHERE record = \"45\u201321\u20134\" AND game > 70", "question": "Which Points have a Record of 45\u201321\u20134, and a Game larger than 70?", "context": "CREATE TABLE table_name_77 (points INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(march) FROM table_name_88 WHERE score = \"5\u20136\" AND points < 100", "question": "Which March is the lowest one that has a Score of 5\u20136, and Points smaller than 100?", "context": "CREATE TABLE table_name_88 (march INTEGER, score VARCHAR, points VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE march > 15 AND points > 96 AND game < 76 AND opponent = \"@ washington capitals\"", "question": "Which Score has a March larger than 15, and Points larger than 96, and a Game smaller than 76, and an Opponent of @ washington capitals?", "context": "CREATE TABLE table_name_65 (score VARCHAR, opponent VARCHAR, game VARCHAR, march VARCHAR, points VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_51 WHERE record = \"45\u201321\u20134\"", "question": "Which Opponent has a Record of 45\u201321\u20134?", "context": "CREATE TABLE table_name_51 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(year_completed) FROM table_name_82 WHERE floors = 10", "question": "What year was the building completed that has 10 floors?", "context": "CREATE TABLE table_name_82 (year_completed INTEGER, floors VARCHAR)"}, {"answer": "SELECT name FROM table_name_13 WHERE floors = 10", "question": "What was the name of the building with 10 floors?", "context": "CREATE TABLE table_name_13 (name VARCHAR, floors VARCHAR)"}, {"answer": "SELECT height_ft___m FROM table_name_44 WHERE year_completed < 1990 AND name = \"florida life building\"", "question": "How tall is the florida life building, completed before 1990?", "context": "CREATE TABLE table_name_44 (height_ft___m VARCHAR, year_completed VARCHAR, name VARCHAR)"}, {"answer": "SELECT game FROM table_name_28 WHERE result = \"86-87 (2-4)\"", "question": "Result of 86-87 (2-4) is what game?", "context": "CREATE TABLE table_name_28 (game VARCHAR, result VARCHAR)"}, {"answer": "SELECT game FROM table_name_16 WHERE result = \"88-85 ot (1-0)\"", "question": "Result of 88-85 ot (1-0) involves what game?", "context": "CREATE TABLE table_name_16 (game VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_83 WHERE game = \"game 5\"", "question": "Game of game 5 had what result?", "context": "CREATE TABLE table_name_83 (result VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_27 WHERE road_team = \"utah jazz\" AND result = \"81-83 (3-2)\"", "question": "Road Team of utah jazz, and a Result of 81-83 (3-2) involved what game?", "context": "CREATE TABLE table_name_27 (game VARCHAR, road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT game FROM table_name_33 WHERE home_team = \"chicago bulls\" AND result = \"81-83 (3-2)\"", "question": "Home Team of chicago bulls, and a Result of 81-83 (3-2) involved what game?", "context": "CREATE TABLE table_name_33 (game VARCHAR, home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_38 WHERE result = \"86-87 (2-4)\"", "question": "Result of 86-87 (2-4) involves what home team?", "context": "CREATE TABLE table_name_38 (home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_16 WHERE scored < 23 AND team = \"2 de mayo\" AND draws < 7", "question": "What is the fewest wins that has fewer than 23 goals scored, team of 2 de Mayo, and fewer than 7 draws?", "context": "CREATE TABLE table_name_16 (wins INTEGER, draws VARCHAR, scored VARCHAR, team VARCHAR)"}, {"answer": "SELECT draws FROM table_name_61 WHERE losses > 8 AND points = 13", "question": "What is the number of draws for the team with more than 8 losses and 13 points?", "context": "CREATE TABLE table_name_61 (draws VARCHAR, losses VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(march) FROM table_name_24 WHERE points = 85", "question": "How much March has Points of 85?", "context": "CREATE TABLE table_name_24 (march VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_46 WHERE score = \"2\u20133 ot\" AND points > 76", "question": "Which Game is the lowest one that has a Score of 2\u20133 ot, and Points larger than 76?", "context": "CREATE TABLE table_name_46 (game INTEGER, score VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_50 WHERE march = 19 AND points < 83", "question": "How many games have a March of 19, and Points smaller than 83?", "context": "CREATE TABLE table_name_50 (game VARCHAR, march VARCHAR, points VARCHAR)"}, {"answer": "SELECT almal\u0131__qax_ FROM table_name_77 WHERE s\u00fcsk\u0259n = \"z\u0259rn\u0259\"", "question": "What is the Almali village with the S\u00fcsk\u0259n village z\u0259rn\u0259?", "context": "CREATE TABLE table_name_77 (almal\u0131__qax_ VARCHAR, s\u00fcsk\u0259n VARCHAR)"}, {"answer": "SELECT almal\u0131__qax_ FROM table_name_81 WHERE malax = \"qaxingiloy\"", "question": "What is the Almali village with the Malax village qaxingiloy?", "context": "CREATE TABLE table_name_81 (almal\u0131__qax_ VARCHAR, malax VARCHAR)"}, {"answer": "SELECT s\u00fcsk\u0259n FROM table_name_25 WHERE malax = \"me\u015f\u0259ba\u015f\"", "question": "What is the S\u00fcsk\u0259n village with a Malax village me\u015f\u0259ba\u015f?", "context": "CREATE TABLE table_name_25 (s\u00fcsk\u0259n VARCHAR, malax VARCHAR)"}, {"answer": "SELECT qaxmu\u011fal FROM table_name_90 WHERE malax = \"me\u015f\u0259ba\u015f\"", "question": "What is the Qaxmu\u011fal village with a Malax village me\u015f\u0259ba\u015f?", "context": "CREATE TABLE table_name_90 (qaxmu\u011fal VARCHAR, malax VARCHAR)"}, {"answer": "SELECT qaxmu\u011fal FROM table_name_81 WHERE f\u0131st\u0131ql\u0131 = \"ke\u015fqutan\"", "question": "What is the Qaxmu\u011fal village with a Fistiqli village ke\u015fqutan?", "context": "CREATE TABLE table_name_81 (qaxmu\u011fal VARCHAR, f\u0131st\u0131ql\u0131 VARCHAR)"}, {"answer": "SELECT MAX(championships) FROM table_name_54 WHERE club = \"springfield cardinals\"", "question": "What are the highest championships where the club is Springfield Cardinals?", "context": "CREATE TABLE table_name_54 (championships INTEGER, club VARCHAR)"}, {"answer": "SELECT max_torque_at_rpm FROM table_name_36 WHERE displacement = \"2,445 cc\" AND engine = \"iveco 8144.61\"", "question": "What is the maximum torque that has 2,445 CC Displacement, and an Iveco 8144.61 engine?", "context": "CREATE TABLE table_name_36 (max_torque_at_rpm VARCHAR, displacement VARCHAR, engine VARCHAR)"}, {"answer": "SELECT valvetrain FROM table_name_77 WHERE fuel_system = \"petrol engines\"", "question": "What Valvetrain has a fuel system made up of petrol engines?", "context": "CREATE TABLE table_name_77 (valvetrain VARCHAR, fuel_system VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_22 WHERE altitude__mslm_ > 98 AND density__inhabitants_km_2__ > 5869 AND rank = \"1st\"", "question": "Which Population has an Altitude (mslm) larger than 98, and a Density (inhabitants/km 2) larger than 5869, and a Rank of 1st?", "context": "CREATE TABLE table_name_22 (population INTEGER, rank VARCHAR, altitude__mslm_ VARCHAR, density__inhabitants_km_2__ VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_99 WHERE density__inhabitants_km_2__ > 2805.8 AND rank = \"1st\" AND altitude__mslm_ < 122", "question": "Which Population is the highest one that has a Density (inhabitants/km 2) larger than 2805.8, and a Rank of 1st, and an Altitude (mslm) smaller than 122?", "context": "CREATE TABLE table_name_99 (population INTEGER, altitude__mslm_ VARCHAR, density__inhabitants_km_2__ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(altitude__mslm_) FROM table_name_20 WHERE area__km_2__ < 13.01 AND population = 74536 AND density__inhabitants_km_2__ > 5869", "question": "Which Altitude (mslm) is the highest one that has an Area (km 2) smaller than 13.01, and a Population of 74536, and a Density (inhabitants/km 2) larger than 5869?", "context": "CREATE TABLE table_name_20 (altitude__mslm_ INTEGER, density__inhabitants_km_2__ VARCHAR, area__km_2__ VARCHAR, population VARCHAR)"}, {"answer": "SELECT MAX(altitude__mslm_) FROM table_name_47 WHERE city = \"legnano\" AND population > 59492", "question": "Which Altitude (mslm) is the highest one that has a City of legnano, and a Population larger than 59492?", "context": "CREATE TABLE table_name_47 (altitude__mslm_ INTEGER, city VARCHAR, population VARCHAR)"}, {"answer": "SELECT engine FROM table_name_73 WHERE points > 62 AND entrant = \"rebaque\"", "question": "What is the Motor that has a Focuses bigger than 62, and a Participant of rebaque?", "context": "CREATE TABLE table_name_73 (engine VARCHAR, points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT points FROM table_name_1 WHERE year > 1977", "question": "What is the Focus that has a Year bigger than 1977?", "context": "CREATE TABLE table_name_1 (points VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_name_42 WHERE driver = \"hans hartmann\"", "question": "When did Hans Hartmann drive?", "context": "CREATE TABLE table_name_42 (year VARCHAR, driver VARCHAR)"}, {"answer": "SELECT second FROM table_name_97 WHERE lead = \"jordan moulton\"", "question": "What is the second that has jordan moulton as the lead?", "context": "CREATE TABLE table_name_97 (second VARCHAR, lead VARCHAR)"}, {"answer": "SELECT skip FROM table_name_22 WHERE third = \"martina baumann\"", "question": "What skip has martina baumann as the third?", "context": "CREATE TABLE table_name_22 (skip VARCHAR, third VARCHAR)"}, {"answer": "SELECT skip FROM table_name_15 WHERE country = \"switzerland\"", "question": "What skip has switzerland as the country?", "context": "CREATE TABLE table_name_15 (skip VARCHAR, country VARCHAR)"}, {"answer": "SELECT skip FROM table_name_13 WHERE lead = \"angela tuvaeva\"", "question": "What skip has angela tuvaeva as the lead?", "context": "CREATE TABLE table_name_13 (skip VARCHAR, lead VARCHAR)"}, {"answer": "SELECT skip FROM table_name_66 WHERE country = \"norway\"", "question": "What skip has norway as the country?", "context": "CREATE TABLE table_name_66 (skip VARCHAR, country VARCHAR)"}, {"answer": "SELECT skip FROM table_name_58 WHERE country = \"denmark\"", "question": "What skip has denmark as the country?", "context": "CREATE TABLE table_name_58 (skip VARCHAR, country VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_20 WHERE home = \"los angeles\"", "question": "Which visitor has a Los Angeles home?", "context": "CREATE TABLE table_name_20 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT series FROM table_name_95 WHERE opponent = \"edmonton oilers\" AND game = 3", "question": "Opponent of edmonton oilers, and a Game of 3 is what series?", "context": "CREATE TABLE table_name_95 (series VARCHAR, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE score = \"2\u20133 ot\"", "question": "Score of 2\u20133 ot on what date?", "context": "CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE opponent = \"@ edmonton oilers\" AND game < 7 AND series = \"oilers lead 3\u20132\"", "question": "Opponent of @ edmonton oilers, and a Game smaller than 7, and a Series of oilers lead 3\u20132 had what score?", "context": "CREATE TABLE table_name_38 (score VARCHAR, series VARCHAR, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE opponent = \"@ edmonton oilers\" AND game > 1 AND series = \"oilers lead 3\u20132\"", "question": "Opponent of @ edmonton oilers, and a Game larger than 1, and a Series of oilers lead 3\u20132 had what score?", "context": "CREATE TABLE table_name_30 (score VARCHAR, series VARCHAR, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_6 WHERE series = \"oilers win 4\u20133\"", "question": "Series of oilers win 4\u20133 had what highest game?", "context": "CREATE TABLE table_name_6 (game INTEGER, series VARCHAR)"}, {"answer": "SELECT december FROM table_name_65 WHERE record = \"4-3-6\"", "question": "Which December has a Record of 4-3-6?", "context": "CREATE TABLE table_name_65 (december VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE december < 14 AND game = 12", "question": "Which Score has a December smaller than 14, and a Game of 12?", "context": "CREATE TABLE table_name_93 (score VARCHAR, december VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_83 WHERE record = \"4-3-6\"", "question": "Which Game is the highest one that has a Record of 4-3-6?", "context": "CREATE TABLE table_name_83 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE record = \"18\u201311\u20135\"", "question": "Which Score has a Record of 18\u201311\u20135?", "context": "CREATE TABLE table_name_85 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE game > 32 AND points < 42 AND december > 19 AND record = \"18\u201312\u20135\"", "question": "Which Score has a Game larger than 32, and Points smaller than 42, and a December larger than 19, and a Record of 18\u201312\u20135?", "context": "CREATE TABLE table_name_28 (score VARCHAR, record VARCHAR, december VARCHAR, game VARCHAR, points VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE points = 36 AND game = 30", "question": "Which Score has Points of 36, and a Game of 30?", "context": "CREATE TABLE table_name_6 (score VARCHAR, points VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_50 WHERE record = \"14\u201310\u20134\" AND points < 32", "question": "Which Game has a Record of 14\u201310\u20134, and Points smaller than 32?", "context": "CREATE TABLE table_name_50 (game INTEGER, record VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_47 WHERE score = \"4\u20131\"", "question": "Which Game has a Score of 4\u20131?", "context": "CREATE TABLE table_name_47 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT celebrity FROM table_name_23 WHERE famous_for = \"rapper\"", "question": "Which celebrity was famous for being a rapper?", "context": "CREATE TABLE table_name_23 (celebrity VARCHAR, famous_for VARCHAR)"}, {"answer": "SELECT finished FROM table_name_16 WHERE exited = \"day 19\" AND entered = \"day 1\"", "question": "What position did the celebrity finish that entered on day 1 and exited on day 19?", "context": "CREATE TABLE table_name_16 (finished VARCHAR, exited VARCHAR, entered VARCHAR)"}, {"answer": "SELECT famous_for FROM table_name_32 WHERE celebrity = \"dom joly\"", "question": "What was Dom Joly famous for?", "context": "CREATE TABLE table_name_32 (famous_for VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT finished FROM table_name_41 WHERE entered = \"day 1\" AND exited = \"day 15\"", "question": "What position did the celebrity finish that entered on day 1 and exited on day 15?", "context": "CREATE TABLE table_name_41 (finished VARCHAR, entered VARCHAR, exited VARCHAR)"}, {"answer": "SELECT celebrity FROM table_name_84 WHERE famous_for = \"actor\"", "question": "What celebrity is famous for being an actor?", "context": "CREATE TABLE table_name_84 (celebrity VARCHAR, famous_for VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_53 WHERE player = \"steve smith\"", "question": "Where did steve smith go to school?", "context": "CREATE TABLE table_name_53 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT result FROM table_name_93 WHERE award = \"cinemaa awards\" AND film = \"gabbar singh\"", "question": "What was the result associated with the cinemaa awards, and gabbar singh film?", "context": "CREATE TABLE table_name_93 (result VARCHAR, award VARCHAR, film VARCHAR)"}, {"answer": "SELECT award FROM table_name_96 WHERE category = \"excellence in tamil\"", "question": "What was the award for the excellence in tamil category?", "context": "CREATE TABLE table_name_96 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT composer_s_ FROM table_name_85 WHERE length = \"6:24\"", "question": "Who is the composer of the song with a length of 6:24?", "context": "CREATE TABLE table_name_85 (composer_s_ VARCHAR, length VARCHAR)"}, {"answer": "SELECT length FROM table_name_88 WHERE track = \"16\"", "question": "What is the lengtho f track 16?", "context": "CREATE TABLE table_name_88 (length VARCHAR, track VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_name_58 WHERE clubs = \"2 \u2192 1\"", "question": "How many new entries this round have clubs 2 \u2192 1?", "context": "CREATE TABLE table_name_58 (new_entries_this_round VARCHAR, clubs VARCHAR)"}, {"answer": "SELECT AVG(matches) FROM table_name_56 WHERE prize_money = \"\u00a33,000\"", "question": "What is the average for matches with a prize money amount of \u00a33,000?", "context": "CREATE TABLE table_name_56 (matches INTEGER, prize_money VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_name_90 WHERE matches > 16 AND round = \"third round qualifying\"", "question": "How many new entries this round are there with more than 16 matches and a third round qualifying?", "context": "CREATE TABLE table_name_90 (new_entries_this_round VARCHAR, matches VARCHAR, round VARCHAR)"}, {"answer": "SELECT clubs FROM table_name_57 WHERE matches = 46", "question": "What are the clubs with 46 matches?", "context": "CREATE TABLE table_name_57 (clubs VARCHAR, matches VARCHAR)"}, {"answer": "SELECT high_school FROM table_name_17 WHERE division = \"crest\" AND nickname = \"s eagle\"", "question": "What High School with a nickname of S Eagle has a Division of crest?", "context": "CREATE TABLE table_name_17 (high_school VARCHAR, division VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_51 WHERE location = \"issaquah\"", "question": "What is the affiliation of a location called Issaquah?", "context": "CREATE TABLE table_name_51 (affiliation VARCHAR, location VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_37 WHERE founded < 1965 AND high_school = \"issaquah\"", "question": "What is the affiliation of a high school in Issaquah that was founded in less than 1965?", "context": "CREATE TABLE table_name_37 (affiliation VARCHAR, founded VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT venue FROM table_name_82 WHERE competition = \"pl group b\" AND score = \"2-2\"", "question": "Which Venue has a Competition of pl group b, and a Score of 2-2?", "context": "CREATE TABLE table_name_82 (venue VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_33 WHERE score = \"0-1\" AND opponents = \"pkns fc\"", "question": "Which Competition has a Score of 0-1, and Opponents of pkns fc?", "context": "CREATE TABLE table_name_33 (competition VARCHAR, score VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_50 WHERE date = \"may 6, 2006\"", "question": "Who competed on may 6, 2006?", "context": "CREATE TABLE table_name_50 (opponents VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE opponents = \"pkns fc\" AND date = \"january 8, 2006\"", "question": "Which Score has Opponents of pkns fc, and a Date of january 8, 2006?", "context": "CREATE TABLE table_name_35 (score VARCHAR, opponents VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE competition = \"pl group b\" AND opponents = \"police\" AND venue = \"selayang municipal council stadium\"", "question": "Which Date has a Competition of pl group b, and Opponents of police, and a Venue of selayang municipal council stadium?", "context": "CREATE TABLE table_name_52 (date VARCHAR, venue VARCHAR, competition VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT competition FROM table_name_38 WHERE opponents = \"pkns fc\" AND score = \"0-0\"", "question": "Which Competition has Opponents of pkns fc, and a Score of 0-0?", "context": "CREATE TABLE table_name_38 (competition VARCHAR, opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_49 WHERE game_site = \"miami orange bowl\"", "question": "How many people attended the game at the miami orange bowl?", "context": "CREATE TABLE table_name_49 (attendance INTEGER, game_site VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_11 WHERE loss = \"josh hall (0\u20131)\"", "question": "What was the attendance at game with a loss of Josh Hall (0\u20131)?", "context": "CREATE TABLE table_name_11 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE loss = \"chad fox (3\u20133)\"", "question": "What was the score of the game that had a loss of Chad Fox (3\u20133)?", "context": "CREATE TABLE table_name_68 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_37 WHERE loss = \"yates (3-2)\"", "question": "What's the attendance of the game where there was a Loss of Yates (3-2)?", "context": "CREATE TABLE table_name_37 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(keynote_version) FROM table_name_18 WHERE numbers_version = \"2.3\" AND pages_version > 4.3", "question": "What's the latest keynote version of version 2.3 of numbers with pages greater than 4.3?", "context": "CREATE TABLE table_name_18 (keynote_version INTEGER, numbers_version VARCHAR, pages_version VARCHAR)"}, {"answer": "SELECT iwork_version FROM table_name_44 WHERE release_date = \"october 22, 2013\" AND pages_version > 2", "question": "What version of iWork was released on October 22, 2013 with a pages version greater than 2?", "context": "CREATE TABLE table_name_44 (iwork_version VARCHAR, release_date VARCHAR, pages_version VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_9 WHERE points > 52 AND year > 1970", "question": "Which Rank is the lowest one that has Points larger than 52, and a Year larger than 1970?", "context": "CREATE TABLE table_name_9 (rank INTEGER, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_73 WHERE game > 61 AND february < 28 AND points < 69", "question": "Which opponent has a game larger than 61, february smaller than 28, and fewer points than 69?", "context": "CREATE TABLE table_name_73 (opponent VARCHAR, points VARCHAR, game VARCHAR, february VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_86 WHERE record = \"30\u201325\u20139\" AND points > 69", "question": "How many games have a record of 30\u201325\u20139 and more points than 69?", "context": "CREATE TABLE table_name_86 (game VARCHAR, record VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(february) FROM table_name_62 WHERE record = \"29\u201324\u20139\"", "question": "How many february games had a record of 29\u201324\u20139?", "context": "CREATE TABLE table_name_62 (february INTEGER, record VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_85 WHERE college = \"texas\"", "question": "What numbered pick was the player from texas?", "context": "CREATE TABLE table_name_85 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT conference_record FROM table_name_7 WHERE year = \"1971\"", "question": "What is the conference record for the year of 1971?", "context": "CREATE TABLE table_name_7 (conference_record VARCHAR, year VARCHAR)"}, {"answer": "SELECT delegate FROM table_name_99 WHERE first_elected = 2006", "question": "When first elected was 2006, who was the delegate?", "context": "CREATE TABLE table_name_99 (delegate VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_name_51 WHERE party = \"democratic\" AND first_elected > 2006", "question": "Which was the district that had first elected greater than 2006 and is democratic?", "context": "CREATE TABLE table_name_51 (district VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE game > 6 AND october < 28", "question": "Name the score for game more than 6 and before october 28", "context": "CREATE TABLE table_name_67 (score VARCHAR, game VARCHAR, october VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_42 WHERE october = 21", "question": "Name the least game for october 21", "context": "CREATE TABLE table_name_42 (game INTEGER, october VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_93 WHERE record = \"5-1-3\"", "question": "Name the least game for record of 5-1-3", "context": "CREATE TABLE table_name_93 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT MAX(october) FROM table_name_19 WHERE game < 1", "question": "Name the most october for game less than 1", "context": "CREATE TABLE table_name_19 (october INTEGER, game INTEGER)"}, {"answer": "SELECT MIN(game) FROM table_name_24 WHERE record = \"1-0-2\"", "question": "Name the least game for record of 1-0-2", "context": "CREATE TABLE table_name_24 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_44 WHERE rank > 1 AND nation = \"dominican republic\" AND total > 4", "question": "Which Bronze is the highest one that has a Rank larger than 1, and a Nation of dominican republic, and a Total larger than 4?", "context": "CREATE TABLE table_name_44 (bronze INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_47 WHERE rank < 1", "question": "Which Total is the lowest one that has a Rank smaller than 1?", "context": "CREATE TABLE table_name_47 (total INTEGER, rank INTEGER)"}, {"answer": "SELECT MIN(total) FROM table_name_23 WHERE rank < 2 AND silver < 15", "question": "Which Total is the lowest one that has a Rank smaller than 2, and a Silver smaller than 15?", "context": "CREATE TABLE table_name_23 (total INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_71 WHERE gold = 2 AND nation = \"puerto rico\" AND total < 12", "question": "Which Silver has a Gold of 2, and a Nation of puerto rico, and a Total smaller than 12?", "context": "CREATE TABLE table_name_71 (silver INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_18 WHERE album = \"les mots\"", "question": "Album of les mots had what lowest year?", "context": "CREATE TABLE table_name_18 (year INTEGER, album VARCHAR)"}, {"answer": "SELECT team FROM table_name_67 WHERE season = \"2000-01\"", "question": "What team has 2000-01 as the season?", "context": "CREATE TABLE table_name_67 (team VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_95 WHERE number < 90 AND league = \"mitte\" AND team = \"spvgg ruhmannsfelden\"", "question": "What season has a number less than 90, Mitte as the league and spvgg ruhmannsfelden as the team?", "context": "CREATE TABLE table_name_95 (season VARCHAR, team VARCHAR, number VARCHAR, league VARCHAR)"}, {"answer": "SELECT league FROM table_name_38 WHERE number < 122 AND record = \"least wins\"", "question": "What league has a number less than 122, and least wins as the record?", "context": "CREATE TABLE table_name_38 (league VARCHAR, number VARCHAR, record VARCHAR)"}, {"answer": "SELECT league FROM table_name_77 WHERE record = \"most wins\"", "question": "What league has most wins as the record?", "context": "CREATE TABLE table_name_77 (league VARCHAR, record VARCHAR)"}, {"answer": "SELECT league FROM table_name_11 WHERE number < 1", "question": "What league has a number less than 1?", "context": "CREATE TABLE table_name_11 (league VARCHAR, number INTEGER)"}, {"answer": "SELECT AVG(nominated_by_the_taoiseach) FROM table_name_99 WHERE industrial_and_commercial_panel < 9 AND administrative_panel > 0 AND cultural_and_educational_panel > 2 AND total < 29", "question": "What is the average nominated of the composition nominated by Taioseach with an Industrial and Commercial panel less than 9, an administrative panel greater than 0, a cultural and educational panel greater than 2, and a total less than 29?", "context": "CREATE TABLE table_name_99 (nominated_by_the_taoiseach INTEGER, total VARCHAR, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR, administrative_panel VARCHAR)"}, {"answer": "SELECT AVG(administrative_panel) FROM table_name_36 WHERE nominated_by_the_taoiseach = 0 AND total < 4", "question": "What is the average administrative panel of the composition nominated by Taoiseach 0 times with a total less than 4?", "context": "CREATE TABLE table_name_36 (administrative_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(nominated_by_the_taoiseach) FROM table_name_11 WHERE administrative_panel > 0 AND industrial_and_commercial_panel < 1", "question": "What is the highest number of nominations by Taoiseach of the composition with an administrative panel greater than 0 and an industrial and commercial panel less than 1?", "context": "CREATE TABLE table_name_11 (nominated_by_the_taoiseach INTEGER, administrative_panel VARCHAR, industrial_and_commercial_panel VARCHAR)"}, {"answer": "SELECT AVG(agricultural_panel) FROM table_name_62 WHERE labour_panel < 6 AND nominated_by_the_taoiseach > 0 AND total < 4", "question": "What is the average agricultural panel of the composition with a labour panel less than 6, more than 0 nominations by Taoiseach, and a total less than 4?", "context": "CREATE TABLE table_name_62 (agricultural_panel INTEGER, total VARCHAR, labour_panel VARCHAR, nominated_by_the_taoiseach VARCHAR)"}, {"answer": "SELECT COUNT(agricultural_panel) FROM table_name_59 WHERE national_university_of_ireland > 3", "question": "What is the total number of agriculatural panels of the composition with more than 3 National Universities of Ireland?", "context": "CREATE TABLE table_name_59 (agricultural_panel VARCHAR, national_university_of_ireland INTEGER)"}, {"answer": "SELECT MAX(attendance) FROM table_name_92 WHERE date = \"september 28\"", "question": "What was the attendance on September 28?", "context": "CREATE TABLE table_name_92 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT season FROM table_name_95 WHERE away_result = \"1-2\"", "question": "Away result of 1-2 has what season?", "context": "CREATE TABLE table_name_95 (season VARCHAR, away_result VARCHAR)"}, {"answer": "SELECT season FROM table_name_24 WHERE round = \"2r\" AND home_result = \"0-0\"", "question": "Round of 2r, and a Home result of 0-0 has what season?", "context": "CREATE TABLE table_name_24 (season VARCHAR, round VARCHAR, home_result VARCHAR)"}, {"answer": "SELECT club FROM table_name_56 WHERE home_result = \"1\u20130\" AND away_result = \"0\u20131\"", "question": "Home result of 1\u20130, and a Away result of 0\u20131 involves what club?", "context": "CREATE TABLE table_name_56 (club VARCHAR, home_result VARCHAR, away_result VARCHAR)"}, {"answer": "SELECT season FROM table_name_65 WHERE round = \"1r\" AND away_result = \"7\u20131\"", "question": "Round of 1r, and an away result of 7\u20131 is what season?", "context": "CREATE TABLE table_name_65 (season VARCHAR, round VARCHAR, away_result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_48 WHERE away_result = \"0\u20133\" AND season = \"1969-70\"", "question": "Away result of 0\u20133, and a Season of 1969-70 is what competition?", "context": "CREATE TABLE table_name_48 (competition VARCHAR, away_result VARCHAR, season VARCHAR)"}, {"answer": "SELECT club FROM table_name_92 WHERE away_result = \"1\u20131\" AND round = \"1r\" AND season = \"1967-68\"", "question": "Away result of 1\u20131, and a Round of 1r, and a Season of 1967-68 involves what club?", "context": "CREATE TABLE table_name_92 (club VARCHAR, season VARCHAR, away_result VARCHAR, round VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_67 WHERE category = \"best musical\"", "question": "what was the nominee of best musical", "context": "CREATE TABLE table_name_67 (nominee VARCHAR, category VARCHAR)"}, {"answer": "SELECT year FROM table_name_60 WHERE nominee = \"michele assaf\"", "question": "what year was michele assaf nominated", "context": "CREATE TABLE table_name_60 (year VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_9 WHERE school_club_team = \"arkansas\"", "question": "What was the highest pick for a player from a school or club team of Arkansas?", "context": "CREATE TABLE table_name_9 (pick INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_99 WHERE rank = \"10\" AND bronze > 2", "question": "How many Golds did Rank 10 get, with a Bronze larger than 2?", "context": "CREATE TABLE table_name_99 (gold VARCHAR, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT rank FROM table_name_93 WHERE silver = 0 AND gold < 2 AND nation = \"turkmenistan\"", "question": "What rank is Turkmenistan, who had 0 silver's and Less than 2 golds?", "context": "CREATE TABLE table_name_93 (rank VARCHAR, nation VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_73 WHERE silver < 0", "question": "What's the biggest Bronze that has less than 0 Silvers?", "context": "CREATE TABLE table_name_73 (bronze INTEGER, silver INTEGER)"}, {"answer": "SELECT COUNT(total) FROM table_name_44 WHERE gold < 0", "question": "What is the total Gold's less than 0?", "context": "CREATE TABLE table_name_44 (total VARCHAR, gold INTEGER)"}, {"answer": "SELECT city FROM table_name_55 WHERE rank < 8 AND first < 1980 AND last > 1960 AND school = \"highland\"", "question": "What city is the School, Highland, in that ranks less than 8 and had its first title before 1980 and its last title later than 1960?", "context": "CREATE TABLE table_name_55 (city VARCHAR, school VARCHAR, last VARCHAR, rank VARCHAR, first VARCHAR)"}, {"answer": "SELECT city FROM table_name_86 WHERE _number_of_titles < 17 AND last > 2005 AND sport = \"boys basketball\"", "question": "What city is the school that had less than 17 titles in boys basketball with the last title being after 2005?", "context": "CREATE TABLE table_name_86 (city VARCHAR, sport VARCHAR, _number_of_titles VARCHAR, last VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_72 WHERE sport = \"boys swimming\" AND city = \"albuquerque\"", "question": "What is the highest rank for the boys swimming team in Albuquerque?", "context": "CREATE TABLE table_name_72 (rank INTEGER, sport VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_84 WHERE school = \"los alamos\" AND sport = \"girls cross country\"", "question": "What is the total rank number for Los Alamos' girls cross country?", "context": "CREATE TABLE table_name_84 (rank VARCHAR, school VARCHAR, sport VARCHAR)"}, {"answer": "SELECT capital FROM table_name_89 WHERE sno < 7 AND name_of_janapada = \"punia\"", "question": "What capital has an S.Number under 7, and a Name of janapada of Punia?", "context": "CREATE TABLE table_name_89 (capital VARCHAR, sno VARCHAR, name_of_janapada VARCHAR)"}, {"answer": "SELECT name_of_king FROM table_name_54 WHERE sno > 1 AND no_of_villages = 600", "question": "What king has an S. number over 1 and a number of villages of 600?", "context": "CREATE TABLE table_name_54 (name_of_king VARCHAR, sno VARCHAR, no_of_villages VARCHAR)"}, {"answer": "SELECT AVG(no_of_villages) FROM table_name_86 WHERE name_of_janapada = \"punia\"", "question": "What is the average number of villages with a name of janapada of Punia?", "context": "CREATE TABLE table_name_86 (no_of_villages INTEGER, name_of_janapada VARCHAR)"}, {"answer": "SELECT MAX(sno) FROM table_name_5 WHERE capital = \"shekhsar\"", "question": "What is the highest S number with a capital of Shekhsar?", "context": "CREATE TABLE table_name_5 (sno INTEGER, capital VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_38 WHERE school_club_team = \"missouri\"", "question": "What is the highest round number for the player who came from team Missouri?", "context": "CREATE TABLE table_name_38 (round INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_62 WHERE player = \"duncan mccoll\" AND pick < 97", "question": "What is the total number of rounds that had draft pick 97, duncan mccoll?", "context": "CREATE TABLE table_name_62 (round VARCHAR, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_75 WHERE method = \"decision\" AND record = \"5-3\"", "question": "What opponent uses the method of decision and a 5-3 record?", "context": "CREATE TABLE table_name_75 (opponent VARCHAR, method VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_36 WHERE res = \"loss\" AND time = \"40:00\"", "question": "What round has the highest Res loss, and a time of 40:00?", "context": "CREATE TABLE table_name_36 (round INTEGER, res VARCHAR, time VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_35 WHERE date = \"april 29\"", "question": "Who visited on April 29?", "context": "CREATE TABLE table_name_35 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE visitor = \"montreal\" AND score = \"1-4\"", "question": "When did Montreal visit and have a score of 1-4?", "context": "CREATE TABLE table_name_47 (date VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE date = \"april 25\"", "question": "What was the score on April 25?", "context": "CREATE TABLE table_name_9 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE date = \"may 3\"", "question": "What was the score on May 3?", "context": "CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_49 WHERE round > 6 AND position = \"winger\" AND player = \"evgeny afanasiev\"", "question": "What is the School/Junior/Club Group (Association) that has a Round bigger than 6, and a Place of winger, and a Player of evgeny afanasiev?", "context": "CREATE TABLE table_name_49 (college_junior_club_team__league_ VARCHAR, player VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_69 WHERE nationality = \"canada\" AND position = \"goalie\"", "question": "What is the School/Junior/Club Group (Class) that has a Nationality of canada, and a Place of goalie?", "context": "CREATE TABLE table_name_69 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_2 WHERE player = \"alexandre jacques\"", "question": "What is the Nationality for alexandre jacques?", "context": "CREATE TABLE table_name_2 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_60 WHERE position = \"wide receiver\" AND overall = 29", "question": "What is the highest Pick that is wide receiver with overall of 29?", "context": "CREATE TABLE table_name_60 (pick__number INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_39 WHERE overall = 247 AND pick__number < 41", "question": "What is the lowest Round with Overall of 247 and pick less than 41?", "context": "CREATE TABLE table_name_39 (round INTEGER, overall VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT position FROM table_name_20 WHERE round < 3 AND name = \"r. jay soward\"", "question": "What is the Position with a round 3 pick for r. jay soward?", "context": "CREATE TABLE table_name_20 (position VARCHAR, round VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_16 WHERE position = \"wide receiver\" AND name = \"r. jay soward\" AND overall < 29", "question": "What is the average Round for wide receiver r. jay soward and Overall smaller than 29?", "context": "CREATE TABLE table_name_16 (round INTEGER, overall VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_85 WHERE touchdowns < 2 AND extra_points = 7 AND field_goals < 0", "question": "Which Points is the lowest one that has Touchdowns smaller than 2, and an Extra points of 7, and a Field goals smaller than 0?", "context": "CREATE TABLE table_name_85 (points INTEGER, field_goals VARCHAR, touchdowns VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT SUM(touchdowns) FROM table_name_33 WHERE player = \"rolla bigelow\" AND extra_points < 0", "question": "How many Touchdowns have a Player of rolla bigelow, and an Extra points smaller than 0?", "context": "CREATE TABLE table_name_33 (touchdowns INTEGER, player VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT longi__tude FROM table_name_28 WHERE date_\u00b3 = \"jun 6\"", "question": "Which Longi- tude is on jun 6?", "context": "CREATE TABLE table_name_28 (longi__tude VARCHAR, date_\u00b3 VARCHAR)"}, {"answer": "SELECT date_\u00b3 FROM table_name_88 WHERE korean_name_\u00b2 = \"\uccad\uba85 (\u6e05\u660e) cheongmyeong\"", "question": "When has a Korean name \u00b2 of \uccad\uba85 (\u6e05\u660e) cheongmyeong?", "context": "CREATE TABLE table_name_88 (date_\u00b3 VARCHAR, korean_name_\u00b2 VARCHAR)"}, {"answer": "SELECT vietnamese_name FROM table_name_23 WHERE chinese_name_\u00b9 = \"\u8292\u7a2e (\u8292\u79cd) m\u00e1ngzh\u00f2ng\"", "question": "WHICH Vietnamese name has a Chinese name \u00b9 of \u8292\u7a2e (\u8292\u79cd) m\u00e1ngzh\u00f2ng?", "context": "CREATE TABLE table_name_23 (vietnamese_name VARCHAR, chinese_name_\u00b9 VARCHAR)"}, {"answer": "SELECT usual_translation FROM table_name_98 WHERE date_\u00b3 = \"jun 21\"", "question": "WHICH Usual translation is on jun 21?", "context": "CREATE TABLE table_name_98 (usual_translation VARCHAR, date_\u00b3 VARCHAR)"}, {"answer": "SELECT japanese_name FROM table_name_8 WHERE korean_name_\u00b2 = \"\uacbd\uce69 (\u9a5a\u87c4) gyeongchip\"", "question": "Which Japanese name has a Korean name \u00b2 of \uacbd\uce69 (\u9a5a\u87c4) gyeongchip?", "context": "CREATE TABLE table_name_8 (japanese_name VARCHAR, korean_name_\u00b2 VARCHAR)"}, {"answer": "SELECT usual_translation FROM table_name_80 WHERE date_\u00b3 = \"sep 23\"", "question": "WHich Usual translation is on sep 23?", "context": "CREATE TABLE table_name_80 (usual_translation VARCHAR, date_\u00b3 VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_44 WHERE location = \"three rivers stadium\" AND record = \"3\u20132\"", "question": "What is the average Week for the game at three rivers stadium, with a Record of 3\u20132?", "context": "CREATE TABLE table_name_44 (week INTEGER, location VARCHAR, record VARCHAR)"}, {"answer": "SELECT result FROM table_name_20 WHERE location = \"three rivers stadium\" AND record = \"6\u20133\"", "question": "What is the result of the game at three rivers stadium with a Record of 6\u20133?", "context": "CREATE TABLE table_name_20 (result VARCHAR, location VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_40 WHERE record = \"8\u20135\"", "question": "What is the earliest week that shows a record of 8\u20135?", "context": "CREATE TABLE table_name_40 (week INTEGER, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_31 WHERE result = \"w 45\u201317\"", "question": "What is the record of the game that has a result of w 45\u201317?", "context": "CREATE TABLE table_name_31 (record VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_94 WHERE record = \"0\u20131\"", "question": "What week that shows a game record of 0\u20131?", "context": "CREATE TABLE table_name_94 (week INTEGER, record VARCHAR)"}, {"answer": "SELECT AVG(entries) FROM table_name_64 WHERE wins < 37 AND percentage = \"14.12%\"", "question": "Which driver has less than 37 wins and at 14.12%?", "context": "CREATE TABLE table_name_64 (entries INTEGER, wins VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT driver FROM table_name_74 WHERE entries = 162", "question": "Which driver has 162 entries?", "context": "CREATE TABLE table_name_74 (driver VARCHAR, entries VARCHAR)"}, {"answer": "SELECT seasons FROM table_name_67 WHERE entries < 215 AND driver = \"jackie stewart\"", "question": "Which season did jackie stewart enter with entries less than 215?", "context": "CREATE TABLE table_name_67 (seasons VARCHAR, entries VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(erp_w) FROM table_name_40 WHERE call_sign = \"w273bs\"", "question": "How many ERP W is it that has a Call sign of w273bs?", "context": "CREATE TABLE table_name_40 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_45 WHERE frequency_mhz < 100.9 AND erp_w > 100", "question": "Which City of license has a Frequency MHz smaller than 100.9, and a ERP W larger than 100?", "context": "CREATE TABLE table_name_45 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT SUM(frequency_mhz) FROM table_name_91 WHERE city_of_license = \"woodstock, georgia\"", "question": "What is the number of Frequency MHz in woodstock, georgia?", "context": "CREATE TABLE table_name_91 (frequency_mhz INTEGER, city_of_license VARCHAR)"}, {"answer": "SELECT MIN(erp_w) FROM table_name_6 WHERE call_sign = \"w223bp\"", "question": "What is the lowest ERP W of  w223bp?", "context": "CREATE TABLE table_name_6 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_26 WHERE drawn < 2 AND games < 6", "question": "What was the highest points where there were less than 2 drawn and the games were less than 6?", "context": "CREATE TABLE table_name_26 (points INTEGER, drawn VARCHAR, games VARCHAR)"}, {"answer": "SELECT license_plate_code FROM table_name_52 WHERE area__sqmi_ = 784", "question": "What is the license plate code for the country with an area of 784?", "context": "CREATE TABLE table_name_52 (license_plate_code VARCHAR, area__sqmi_ VARCHAR)"}, {"answer": "SELECT county AS seat FROM table_name_72 WHERE license_plate_code = \"5c\"", "question": "What is the country seat for the license plate code 5c?", "context": "CREATE TABLE table_name_72 (county VARCHAR, license_plate_code VARCHAR)"}, {"answer": "SELECT pada_3 FROM table_name_41 WHERE pada_1 = \"\u091f\u0947 te\"", "question": "Which Pada 3 has a Pada 1 of \u091f\u0947 te?", "context": "CREATE TABLE table_name_41 (pada_3 VARCHAR, pada_1 VARCHAR)"}, {"answer": "SELECT pada_4 FROM table_name_32 WHERE pada_2 = \"\u0925 tha\"", "question": "which Pada 4 has a Pada 2 of \u0925 tha?", "context": "CREATE TABLE table_name_32 (pada_4 VARCHAR, pada_2 VARCHAR)"}, {"answer": "SELECT pada_3 FROM table_name_27 WHERE pada_2 = \"\u091a\u0947 che\"", "question": "which Pada 3 has a Pada 2 of \u091a\u0947 che?", "context": "CREATE TABLE table_name_27 (pada_3 VARCHAR, pada_2 VARCHAR)"}, {"answer": "SELECT name FROM table_name_87 WHERE pada_3 = \"\u0919 ng/na\"", "question": "What is the Name of \u0919 ng/na?", "context": "CREATE TABLE table_name_87 (name VARCHAR, pada_3 VARCHAR)"}, {"answer": "SELECT pada_4 FROM table_name_90 WHERE pada_1 = \"\u0916\u0940 ju/khi\"", "question": "What kind of Pada 4 has a Pada 1 of \u0916\u0940 ju/khi?", "context": "CREATE TABLE table_name_90 (pada_4 VARCHAR, pada_1 VARCHAR)"}, {"answer": "SELECT pada_1 FROM table_name_8 WHERE pada_2 = \"\u0938\u093e sa\"", "question": "What kind of Pada 1 has a Pada 2 of \u0938\u093e sa?", "context": "CREATE TABLE table_name_8 (pada_1 VARCHAR, pada_2 VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_86 WHERE stage = \"18b\"", "question": "Name the points classification for stage of 18b", "context": "CREATE TABLE table_name_86 (points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_31 WHERE stage = \"16\"", "question": "Name the points classification of stage 16", "context": "CREATE TABLE table_name_31 (points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT round FROM table_name_70 WHERE opponent = \"emanuel newton\"", "question": "What is the round of the match with Emanuel Newton as the opponent?", "context": "CREATE TABLE table_name_70 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_29 WHERE opponent = \"aron lofton\"", "question": "What is the location of the match with Aron Lofton as the opponent?", "context": "CREATE TABLE table_name_29 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_49 WHERE event = \"ecc 8: comeback\"", "question": "What is the location of the match with an event of ecc 8: comeback?", "context": "CREATE TABLE table_name_49 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_13 WHERE res = \"win\" AND time = \"3:02\"", "question": "Who is the opponent of the match with a win result and a time of 3:02?", "context": "CREATE TABLE table_name_13 (opponent VARCHAR, res VARCHAR, time VARCHAR)"}, {"answer": "SELECT method FROM table_name_60 WHERE round = 1 AND time = \"1:58\"", "question": "What is the method of the match with 1 round and a time of 1:58?", "context": "CREATE TABLE table_name_60 (method VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_29 WHERE date = \"september 19, 1976\"", "question": "How many people attended the game on September 19, 1976?", "context": "CREATE TABLE table_name_29 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_94 WHERE opponent = \"detroit lions\"", "question": "What is the lowest week number where they played against the Detroit Lions?", "context": "CREATE TABLE table_name_94 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_48 WHERE date = \"september 26, 1976\"", "question": "What is the average attendance for the game on September 26, 1976?", "context": "CREATE TABLE table_name_48 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT pick FROM table_name_26 WHERE school_club_team = \"kentucky\"", "question": "Which pick has a school/club team that is kentucky?", "context": "CREATE TABLE table_name_26 (pick VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE pick = \"147\"", "question": "Which player is it that has a pick of 147?", "context": "CREATE TABLE table_name_22 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT round FROM table_name_19 WHERE position = \"cornerback\"", "question": "Which round has a position that is cornerback?", "context": "CREATE TABLE table_name_19 (round VARCHAR, position VARCHAR)"}, {"answer": "SELECT height_ft___m FROM table_name_77 WHERE name = \"555 17th street\"", "question": "What is the height of the building named 555 17th street?", "context": "CREATE TABLE table_name_77 (height_ft___m VARCHAR, name VARCHAR)"}, {"answer": "SELECT height_ft___m FROM table_name_77 WHERE floors = 40", "question": "What is the height of the building with 40 floors?", "context": "CREATE TABLE table_name_77 (height_ft___m VARCHAR, floors VARCHAR)"}, {"answer": "SELECT per_capita_income FROM table_name_9 WHERE county = \"charles\"", "question": "What is the per capital income for Charles county?", "context": "CREATE TABLE table_name_9 (per_capita_income VARCHAR, county VARCHAR)"}, {"answer": "SELECT per_capita_income FROM table_name_12 WHERE county = \"washington\"", "question": "What is the per capital income for Washington county?", "context": "CREATE TABLE table_name_12 (per_capita_income VARCHAR, county VARCHAR)"}, {"answer": "SELECT pennant_number FROM table_name_20 WHERE current_status = \"retired\"", "question": "what builder is now retired", "context": "CREATE TABLE table_name_20 (pennant_number VARCHAR, current_status VARCHAR)"}, {"answer": "SELECT launched FROM table_name_97 WHERE name = \"minerva\"", "question": "what builder launched the name minerva", "context": "CREATE TABLE table_name_97 (launched VARCHAR, name VARCHAR)"}, {"answer": "SELECT launched FROM table_name_97 WHERE name = \"danaide\"", "question": "what is the name of the builder who launched in danaide", "context": "CREATE TABLE table_name_97 (launched VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_22 WHERE events < 2", "question": "How many wins did he have when he played under 2 events?", "context": "CREATE TABLE table_name_22 (wins VARCHAR, events INTEGER)"}, {"answer": "SELECT MAX(top_25) FROM table_name_28 WHERE events > 2 AND wins < 0", "question": "What is his highest number of top 25s when eh played over 2 events and under 0 wins?", "context": "CREATE TABLE table_name_28 (top_25 INTEGER, events VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_95 WHERE top_25 = 3 AND cuts_made < 9", "question": "What is his low win total when he has over 3 top 25s and under 9 cuts made?", "context": "CREATE TABLE table_name_95 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_11 WHERE attendance = \"10,089\"", "question": "What opponent had an attendance of 10,089?", "context": "CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE opponent = \"braves\" AND record = \"41\u201327\"", "question": "What was the score of the game against the Braves with a record of 41\u201327?", "context": "CREATE TABLE table_name_25 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_79 WHERE outcome = \"runner-up\" AND score = \"5-7, 1-6\"", "question": "Who was the opponent for the match were the outcome was runner-up and the score was 5-7, 1-6?", "context": "CREATE TABLE table_name_79 (opponent VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_79 WHERE opponent = \"stacy margolin\"", "question": "What was the outcome of the match against Stacy Margolin?", "context": "CREATE TABLE table_name_79 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE opponent = \"duk-hee lee\"", "question": "What was the score of the match against duk-hee lee?", "context": "CREATE TABLE table_name_43 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_29 WHERE rank = \"17th\" AND wins > 0", "question": "How many Points have a Rank of 17th, and Wins larger than 0?", "context": "CREATE TABLE table_name_29 (points VARCHAR, rank VARCHAR, wins VARCHAR)"}, {"answer": "SELECT wins FROM table_name_46 WHERE class = \"500cc\" AND year < 1975", "question": "Which Wins have a Class of 500cc, and a Year smaller than 1975?", "context": "CREATE TABLE table_name_46 (wins VARCHAR, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_99 WHERE class = \"500cc\" AND points < 6", "question": "Which Wins is the highest one that has a Class of 500cc, and Points smaller than 6?", "context": "CREATE TABLE table_name_99 (wins INTEGER, class VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_75 WHERE year > 1974 AND rank = \"15th\"", "question": "Which Points is the lowest one that has a Year larger than 1974, and a Rank of 15th?", "context": "CREATE TABLE table_name_75 (points INTEGER, year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(erp_w) FROM table_name_50 WHERE frequency_mhz = 88.7", "question": "Frequency MHz of 88.7 had what average erp w?", "context": "CREATE TABLE table_name_50 (erp_w INTEGER, frequency_mhz VARCHAR)"}, {"answer": "SELECT class FROM table_name_69 WHERE frequency_mhz < 95.3 AND call_sign = \"k234ag\"", "question": "Frequency MHz smaller than 95.3, and a Call sign of k234ag is what class?", "context": "CREATE TABLE table_name_69 (class VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT SUM(erp_w) FROM table_name_30 WHERE call_sign = \"k231bg\"", "question": "Call sign of k231bg has what sum of erp w?", "context": "CREATE TABLE table_name_30 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_24 WHERE class = \"d\" AND frequency_mhz < 107.7 AND erp_w < 232", "question": "Class of d, and a Frequency MHz smaller than 107.7, and a ERP W smaller than 232 has what call sign?", "context": "CREATE TABLE table_name_24 (call_sign VARCHAR, erp_w VARCHAR, class VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT COUNT(erp_w) FROM table_name_84 WHERE class = \"d\" AND call_sign = \"k299ar\"", "question": "ERP W that has a Class of d, and a Call sign of k299ar is what total number?", "context": "CREATE TABLE table_name_84 (erp_w VARCHAR, class VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE loss = \"ruffin (3-5)\"", "question": "Name the date for loss of ruffin (3-5)", "context": "CREATE TABLE table_name_44 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE loss = \"carman (3-12)\"", "question": "Name the date with loss of carman (3-12)", "context": "CREATE TABLE table_name_59 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE save = \"lancaster (3)\"", "question": "Name the score for save of lancaster (3)", "context": "CREATE TABLE table_name_7 (score VARCHAR, save VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_80 WHERE loss = \"sanderson (9-8)\"", "question": "Name the opponent with loss of sanderson (9-8)", "context": "CREATE TABLE table_name_80 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(october) FROM table_name_41 WHERE game = 9", "question": "Which game has the highest score in October with 9?", "context": "CREATE TABLE table_name_41 (october INTEGER, game VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_58 WHERE record = \"4-4-0\"", "question": "What was the average game with a record of 4-4-0?", "context": "CREATE TABLE table_name_58 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT literacy_rate___percentage____2001_census FROM table_name_80 WHERE _percentage_increase = \"12.66%\"", "question": "What was the literacy rate published in the 2001 census for the state that saw a 12.66% increase?", "context": "CREATE TABLE table_name_80 (literacy_rate___percentage____2001_census VARCHAR, _percentage_increase VARCHAR)"}, {"answer": "SELECT save FROM table_name_32 WHERE opponent = \"sinon bulls\" AND loss = \"jeriome robertson\"", "question": "Who earned the save in the game against the Sinon Bulls when Jeriome Robertson took the loss?", "context": "CREATE TABLE table_name_32 (save VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT result FROM table_name_89 WHERE venue = \"tiger stadium\"", "question": "what number of people went to the tiger stadium", "context": "CREATE TABLE table_name_89 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT undecided FROM table_name_51 WHERE goldberg = \"6%\"", "question": "What is the undecided percentage of the poll where Goldberg had 6%?", "context": "CREATE TABLE table_name_51 (undecided VARCHAR, goldberg VARCHAR)"}, {"answer": "SELECT date FROM table_name_1 WHERE source = \"suffolk university\" AND murray = \"11%\"", "question": "What is the date of the poll where Murray had 11% from the Suffolk University source?", "context": "CREATE TABLE table_name_1 (date VARCHAR, source VARCHAR, murray VARCHAR)"}, {"answer": "SELECT undecided FROM table_name_80 WHERE source = \"suffolk university\" AND murray = \"11%\"", "question": "What is the undecided percentage of the poll from Suffolk University with Murray at 11%?", "context": "CREATE TABLE table_name_80 (undecided VARCHAR, source VARCHAR, murray VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE silbert = \"18%\"", "question": "What is the date of the poll with Silbert at 18%?", "context": "CREATE TABLE table_name_53 (date VARCHAR, silbert VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE silbert = \"10.0%\"", "question": "What is the date of the poll with Silbert at 10.0%?", "context": "CREATE TABLE table_name_48 (date VARCHAR, silbert VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE goldberg = \"26%\"", "question": "What is the date of the poll with Goldberg at 26%?", "context": "CREATE TABLE table_name_12 (date VARCHAR, goldberg VARCHAR)"}, {"answer": "SELECT MIN(tries) FROM table_name_22 WHERE conversions > 0", "question": "What is the smallest number of tries with conversions more than 0?", "context": "CREATE TABLE table_name_22 (tries INTEGER, conversions INTEGER)"}, {"answer": "SELECT AVG(tries) FROM table_name_82 WHERE team = \"british and irish lions\" AND games < 2", "question": "What is the average number of tries for British and Irish Lions with less than 2 games?", "context": "CREATE TABLE table_name_82 (tries INTEGER, team VARCHAR, games VARCHAR)"}, {"answer": "SELECT AVG(conversions) FROM table_name_91 WHERE team = \"cardiff blues\" AND tries < 14", "question": "What is the average number of conversions for the Cardiff Blues with less than 14 tries?", "context": "CREATE TABLE table_name_91 (conversions INTEGER, team VARCHAR, tries VARCHAR)"}, {"answer": "SELECT median_family_income FROM table_name_8 WHERE median_household_income = \"$38,137\"", "question": "What is the Median family income when the Median household income is $38,137?", "context": "CREATE TABLE table_name_8 (median_family_income VARCHAR, median_household_income VARCHAR)"}, {"answer": "SELECT county FROM table_name_36 WHERE median_household_income = \"$46,872\"", "question": "What County has a Median household income of $46,872?", "context": "CREATE TABLE table_name_36 (county VARCHAR, median_household_income VARCHAR)"}, {"answer": "SELECT AVG(field_goals) FROM table_name_80 WHERE position = \"right halfback\" AND touchdowns > 3", "question": "What is the average number of field goals scored by a right halfback who had more than 3 touchdowns?", "context": "CREATE TABLE table_name_80 (field_goals INTEGER, position VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_94 WHERE date = \"november 28, 1974\"", "question": "What is the week of the game played on November 28, 1974?", "context": "CREATE TABLE table_name_94 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT year FROM table_name_44 WHERE deputy = \"james mcclure\" AND name = \"robert mcphearson\"", "question": "What Year was james mcclure Deputy, and the Name is robert mcphearson?", "context": "CREATE TABLE table_name_44 (year VARCHAR, deputy VARCHAR, name VARCHAR)"}, {"answer": "SELECT deputy FROM table_name_88 WHERE name = \"elizabeth black\"", "question": "What is the name of the Deputy when the Name was elizabeth black?", "context": "CREATE TABLE table_name_88 (deputy VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_76 WHERE year = \"1997\u201399\"", "question": "What is the Name for 1997\u201399?", "context": "CREATE TABLE table_name_76 (name VARCHAR, year VARCHAR)"}, {"answer": "SELECT political_affiliation FROM table_name_39 WHERE deputy = \"john dallat\"", "question": "What is the Political affiliation of deputy john dallat?", "context": "CREATE TABLE table_name_39 (political_affiliation VARCHAR, deputy VARCHAR)"}, {"answer": "SELECT deputy FROM table_name_41 WHERE year = \"1992\u201393\"", "question": "What is the name of the deputy in 1992\u201393?", "context": "CREATE TABLE table_name_41 (deputy VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(civil_liberties_2013) FROM table_name_42 WHERE political_rights_2010 = 6 AND civil_liberties_2012 > 5 AND political_rights_2011 < 6", "question": "How many civil liberties 2013 values are associated with a 2010 political rights value of 6, civil liberties 2012 values over 5, and political rights 2011 under 6?", "context": "CREATE TABLE table_name_42 (civil_liberties_2013 VARCHAR, political_rights_2011 VARCHAR, political_rights_2010 VARCHAR, civil_liberties_2012 VARCHAR)"}, {"answer": "SELECT AVG(civil_liberties_2012) FROM table_name_42 WHERE status_2011 = \"not free\" AND political_rights_2012 > 6 AND political_rights_2011 > 7", "question": "What is the average 2012 civil liberties value associated with a 2011 status of not free, political rights 2012 over 6, and political rights 2011 over 7?", "context": "CREATE TABLE table_name_42 (civil_liberties_2012 INTEGER, political_rights_2011 VARCHAR, status_2011 VARCHAR, political_rights_2012 VARCHAR)"}, {"answer": "SELECT COUNT(civil_liberties_2011) FROM table_name_70 WHERE political_rights_2010 < 3 AND political_rights_2011 < 1", "question": "What is the total number of civil liberties 2011 values having 2010 political rights values under 3 and 2011 political rights values under 1?", "context": "CREATE TABLE table_name_70 (civil_liberties_2011 VARCHAR, political_rights_2010 VARCHAR, political_rights_2011 VARCHAR)"}, {"answer": "SELECT oppose FROM table_name_47 WHERE unsure = \"8%\" AND poll_source = \"wnbc/marist poll\"", "question": "What percentage of people were opposed to the candidate based on the WNBC/Marist poll that showed 8% of people were unsure?", "context": "CREATE TABLE table_name_47 (oppose VARCHAR, unsure VARCHAR, poll_source VARCHAR)"}, {"answer": "SELECT oppose FROM table_name_22 WHERE poll_source = \"time poll\" AND unsure = \"6%\"", "question": "What percentage of people were opposed to the candidate based on the Time Poll poll that showed 6% of people were unsure?", "context": "CREATE TABLE table_name_22 (oppose VARCHAR, poll_source VARCHAR, unsure VARCHAR)"}, {"answer": "SELECT consider FROM table_name_21 WHERE poll_source = \"newsweek poll\" AND oppose = \"32%\" AND candidate = \"rudy giuliani\"", "question": "What percentage of people said they would consider Rudy Giuliani as a candidate according to the Newsweek poll that showed 32% opposed him?", "context": "CREATE TABLE table_name_21 (consider VARCHAR, candidate VARCHAR, poll_source VARCHAR, oppose VARCHAR)"}, {"answer": "SELECT result FROM table_name_12 WHERE venue = \"stuttgart, west germany\" AND goal < 9", "question": "What was the result of the game in Stuttgart, West Germany and a goal number of less than 9?", "context": "CREATE TABLE table_name_12 (result VARCHAR, venue VARCHAR, goal VARCHAR)"}, {"answer": "SELECT record FROM table_name_10 WHERE opponent = \"twins\" AND date = \"july 25\"", "question": "Which Record has an Opponent of twins, and a Date of july 25?", "context": "CREATE TABLE table_name_10 (record VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT per_capita_income FROM table_name_43 WHERE median_household_income = \"$42,845\"", "question": "How much is per capita income when median household income is $42,845?", "context": "CREATE TABLE table_name_43 (per_capita_income VARCHAR, median_household_income VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_91 WHERE score = \"4\u20131\" AND game < 39", "question": "Which Points have a Score of 4\u20131, and a Game smaller than 39?", "context": "CREATE TABLE table_name_91 (points INTEGER, score VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(january) FROM table_name_69 WHERE score = \"7\u20134\" AND game < 42", "question": "Which January has a Score of 7\u20134, and a Game smaller than 42?", "context": "CREATE TABLE table_name_69 (january INTEGER, score VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_9 WHERE score = \"1\u20130\" AND points < 66", "question": "How many games have a Score of 1\u20130, and Points smaller than 66?", "context": "CREATE TABLE table_name_9 (game VARCHAR, score VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_26 WHERE score = \"1\u20134\" AND january < 18", "question": "Which Points is the lowest one that has a Score of 1\u20134, and a January smaller than 18?", "context": "CREATE TABLE table_name_26 (points INTEGER, score VARCHAR, january VARCHAR)"}, {"answer": "SELECT borough_or_census_area FROM table_name_68 WHERE median_household_income = \"$59,596\"", "question": "Which borough or census area has a $59,596 median household income?", "context": "CREATE TABLE table_name_68 (borough_or_census_area VARCHAR, median_household_income VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_name_59 WHERE median_family_income = \"$71,278\"", "question": "What is the population of the area with a median family income of $71,278?", "context": "CREATE TABLE table_name_59 (population VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_21 WHERE venue = \"danish open\" AND year = \"1985\"", "question": "What was the Outcome of the Danish Open in 1985?", "context": "CREATE TABLE table_name_21 (outcome VARCHAR, venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_71 WHERE year = \"1986\" AND outcome = \"1\"", "question": "What was the Venue in 1986 with an Outcome of 1?", "context": "CREATE TABLE table_name_71 (venue VARCHAR, year VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_11 WHERE event = \"wd\" AND year = \"1983\"", "question": "What was the Outcome in 1983 of the WD Event?", "context": "CREATE TABLE table_name_11 (outcome VARCHAR, event VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_8 WHERE partner = \"yoo sang-hee\" AND venue = \"german open\"", "question": "In what Year did the German Open have Yoo Sang-Hee as Partner?", "context": "CREATE TABLE table_name_8 (year VARCHAR, partner VARCHAR, venue VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_81 WHERE partner = \"yoo sang-hee\" AND venue = \"malaysia open\"", "question": "What is the Outcome in the Malaysia Open with Partner Yoo Sang-Hee?", "context": "CREATE TABLE table_name_81 (outcome VARCHAR, partner VARCHAR, venue VARCHAR)"}, {"answer": "SELECT partner FROM table_name_23 WHERE year = \"asian games\"", "question": "What is the Partner during the Asian Games Year?", "context": "CREATE TABLE table_name_23 (partner VARCHAR, year VARCHAR)"}, {"answer": "SELECT loss FROM table_name_91 WHERE date = \"august 19\"", "question": "What was the loss for August 19?", "context": "CREATE TABLE table_name_91 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT municipality FROM table_name_94 WHERE rank = 44", "question": "What Municipality has a Rank of 44?", "context": "CREATE TABLE table_name_94 (municipality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_85 WHERE municipality = \"winnipeg\" AND area__km_2__ > 464.01", "question": "What is the total Rank that has a Municipality of Winnipeg, an Area (KM 2) that's larger than 464.01?", "context": "CREATE TABLE table_name_85 (rank INTEGER, municipality VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT MAX(area__km_2__) FROM table_name_96 WHERE province = \"ontario\" AND status = \"town\" AND municipality = \"minto\" AND rank < 84", "question": "What is the highest Area (KM 2) for the Province of Ontario, that has the Status of Town, a Municipality of Minto, and a Rank that's smaller than 84?", "context": "CREATE TABLE table_name_96 (area__km_2__ INTEGER, rank VARCHAR, municipality VARCHAR, province VARCHAR, status VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_6 WHERE area__km_2__ = 1050.14", "question": "What's the total of Rank that has an Area (KM 2) of 1050.14?", "context": "CREATE TABLE table_name_6 (rank INTEGER, area__km_2__ VARCHAR)"}, {"answer": "SELECT status FROM table_name_19 WHERE province = \"ontario\" AND rank = 86", "question": "What is the listed Status that has the Province of Ontario and Rank of 86?", "context": "CREATE TABLE table_name_19 (status VARCHAR, province VARCHAR, rank VARCHAR)"}, {"answer": "SELECT event FROM table_name_31 WHERE reign = \"2\" AND days_held = \"35\"", "question": "What type of event had the wrestler with a reign of 2 and held the title for 35 days?", "context": "CREATE TABLE table_name_31 (event VARCHAR, reign VARCHAR, days_held VARCHAR)"}, {"answer": "SELECT location FROM table_name_41 WHERE wrestler = \"super parka\" AND reign = \"2\"", "question": "Where did the wrestler, super parka, with the title with a reign of 2?", "context": "CREATE TABLE table_name_41 (location VARCHAR, wrestler VARCHAR, reign VARCHAR)"}, {"answer": "SELECT reign FROM table_name_16 WHERE days_held = \"35\" AND wrestler = \"super kendo\"", "question": "What is the reign for super kendo who held it for 35 days?", "context": "CREATE TABLE table_name_16 (reign VARCHAR, days_held VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_67 WHERE erp_w = \"100 watts\"", "question": "Which FCC info has an ERP W of 100 watts?", "context": "CREATE TABLE table_name_67 (fcc_info VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_name_7 WHERE call_sign = \"k218be\"", "question": "Which Frequency MHz has a Call Sign of K218BE?", "context": "CREATE TABLE table_name_7 (frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_15 WHERE frequency_mhz = \"88.5 fm\"", "question": "Which ERP W has a Frequency MHz of 88.5 FM?", "context": "CREATE TABLE table_name_15 (erp_w VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT name FROM table_name_62 WHERE nationality = \"spain\" AND ranking > 3", "question": "What is the name of the player from Spain with a rank lower than 3?", "context": "CREATE TABLE table_name_62 (name VARCHAR, nationality VARCHAR, ranking VARCHAR)"}, {"answer": "SELECT region FROM table_name_19 WHERE catalog = \"570 734-2\"", "question": "Which region had a catalog number of 570 734-2?", "context": "CREATE TABLE table_name_19 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_8 WHERE format = \"cd maxi\"", "question": "Which region had a release format of CD Maxi?", "context": "CREATE TABLE table_name_8 (region VARCHAR, format VARCHAR)"}, {"answer": "SELECT region FROM table_name_20 WHERE format = \"cd maxi\"", "question": "Which region had a release format of CD Maxi?", "context": "CREATE TABLE table_name_20 (region VARCHAR, format VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_98 WHERE attendance = \"11,309\"", "question": "Where did the Jet's play with an attendance of 11,309?", "context": "CREATE TABLE table_name_98 (game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_34 WHERE opponent = \"bye\"", "question": "What's the result of the game against Bye?", "context": "CREATE TABLE table_name_34 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_53 WHERE week = 15", "question": "What's the Result for week 15?", "context": "CREATE TABLE table_name_53 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT appointment FROM table_name_79 WHERE credentials_presented = \"jul 2, 1969\"", "question": "What day was the appointment when Credentials Presented was jul 2, 1969?", "context": "CREATE TABLE table_name_79 (appointment VARCHAR, credentials_presented VARCHAR)"}, {"answer": "SELECT credentials_presented FROM table_name_59 WHERE state = \"new jersey\" AND status = \"foreign service officer\"", "question": "When were the credentials presented for new jersey with a status of foreign service officer?", "context": "CREATE TABLE table_name_59 (credentials_presented VARCHAR, state VARCHAR, status VARCHAR)"}, {"answer": "SELECT title FROM table_name_90 WHERE name = \"david campbell mulford\"", "question": "What is the title for david campbell mulford?", "context": "CREATE TABLE table_name_90 (title VARCHAR, name VARCHAR)"}, {"answer": "SELECT state FROM table_name_47 WHERE appointment = \"jul 12, 2001\"", "question": "What state has an appointment for jul 12, 2001?", "context": "CREATE TABLE table_name_47 (state VARCHAR, appointment VARCHAR)"}, {"answer": "SELECT credentials_presented FROM table_name_35 WHERE state = \"vermont\"", "question": "What day were credentials presented for vermont?", "context": "CREATE TABLE table_name_35 (credentials_presented VARCHAR, state VARCHAR)"}, {"answer": "SELECT class FROM table_name_57 WHERE weight = 203", "question": "Which Class has a Weight of 203?", "context": "CREATE TABLE table_name_57 (class VARCHAR, weight VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_43 WHERE team_2 = \"mount cameroon fc\"", "question": "What is the team 1 with team 2 Mount Cameroon FC?", "context": "CREATE TABLE table_name_43 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_99 WHERE team_1 = \"dolphins\"", "question": "What is the 2nd leg of team 1 Dolphins?", "context": "CREATE TABLE table_name_99 (team_1 VARCHAR)"}, {"answer": "SELECT distance__miles_ FROM table_name_68 WHERE winner = \"no race\" AND year > 1909", "question": "When the winner was No Race in a year after 1909, what was the distance?", "context": "CREATE TABLE table_name_68 (distance__miles_ VARCHAR, winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner FROM table_name_21 WHERE trainer = \"no race\"", "question": "What horse won with a trainer of \"no race\"?", "context": "CREATE TABLE table_name_21 (winner VARCHAR, trainer VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_41 WHERE winner = \"helioptic\"", "question": "Who was the jockey for the winning horse Helioptic?", "context": "CREATE TABLE table_name_41 (jockey VARCHAR, winner VARCHAR)"}, {"answer": "SELECT time FROM table_name_94 WHERE winner = \"salford ii\"", "question": "What was the time for the winning horse Salford ii?", "context": "CREATE TABLE table_name_94 (time VARCHAR, winner VARCHAR)"}, {"answer": "SELECT time FROM table_name_49 WHERE winner = \"kentucky ii\"", "question": "What was the winning time for the winning horse, Kentucky ii?", "context": "CREATE TABLE table_name_49 (time VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_1 WHERE lost < 1", "question": "What was the position with the total number less than 1?", "context": "CREATE TABLE table_name_1 (position VARCHAR, lost INTEGER)"}, {"answer": "SELECT SUM(gold) FROM table_name_36 WHERE rank = \"6\" AND total > 3", "question": "What is the sum of golds for ranks of 6 and totals over 3?", "context": "CREATE TABLE table_name_36 (gold INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_35 WHERE gold > 2 AND rank = \"1\" AND bronze > 0", "question": "What is the average silver for golds over 2, ranks of 1, and bronzes over 0?", "context": "CREATE TABLE table_name_35 (silver INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_57 WHERE silver < 2 AND bronze > 0 AND gold > 1", "question": "What is the number of totals that have silvers under 2, bronzes over 0, and golds over 1?", "context": "CREATE TABLE table_name_57 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_61 WHERE total = 1 AND bronze < 1 AND nation = \"west germany\"", "question": "What is the total number of golds having a total of 1, bronzes of 0, and from West Germany?", "context": "CREATE TABLE table_name_61 (gold VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_43 WHERE silver > 5 AND gold < 20", "question": "What is the sum of bronzes having silvers over 5 and golds under 20?", "context": "CREATE TABLE table_name_43 (bronze INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT result FROM table_name_71 WHERE attendance > 67 OFFSET 702", "question": "What is the result of the game with an attendance greater than 67,702?", "context": "CREATE TABLE table_name_71 (result VARCHAR, attendance INTEGER)"}, {"answer": "SELECT COUNT(losses) FROM table_name_10 WHERE ballarat_fl = \"melton south\" AND against > 1468", "question": "How many Losses have a Ballarat FL of melton south, and an Against larger than 1468?", "context": "CREATE TABLE table_name_10 (losses VARCHAR, ballarat_fl VARCHAR, against VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_15 WHERE byes < 2", "question": "How many Against has Byes smaller than 2?", "context": "CREATE TABLE table_name_15 (against INTEGER, byes INTEGER)"}, {"answer": "SELECT COUNT(against) FROM table_name_4 WHERE ballarat_fl = \"darley\" AND wins > 8", "question": "How many Against has a Ballarat FL of darley and Wins larger than 8?", "context": "CREATE TABLE table_name_4 (against VARCHAR, ballarat_fl VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(byes) FROM table_name_16 WHERE against = 1076 AND wins < 13", "question": "How many Byes have Against of 1076 and Wins smaller than 13?", "context": "CREATE TABLE table_name_16 (byes INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(total_passengers) FROM table_name_28 WHERE annual_change = \"28.8%\" AND rank < 8", "question": "What is the total number of Total Passengers when the annual change is 28.8% and the rank is less than 8?", "context": "CREATE TABLE table_name_28 (total_passengers VARCHAR, annual_change VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(total_passengers) FROM table_name_9 WHERE annual_change = \"9.7%\" AND rank < 6", "question": "What is the sum of Total Passengers when the annual change is 9.7% and the rank is less than 6?", "context": "CREATE TABLE table_name_9 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(total_passengers) FROM table_name_49 WHERE annual_change = \"18.3%\" AND rank < 11", "question": "What is the highest Total Passengers when the annual change is 18.3%, and the rank is less than 11?", "context": "CREATE TABLE table_name_49 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR)"}, {"answer": "SELECT location FROM table_name_32 WHERE annual_change = \"7.6%\"", "question": "What location has an annual change of 7.6%", "context": "CREATE TABLE table_name_32 (location VARCHAR, annual_change VARCHAR)"}, {"answer": "SELECT result FROM table_name_7 WHERE score = \"1\u20130\" AND goal = 16", "question": "Which Result has a Score of 1\u20130, and a Goal of 16?", "context": "CREATE TABLE table_name_7 (result VARCHAR, score VARCHAR, goal VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE result = \"2\u20131\" AND competition = \"friendly\" AND goal < 17", "question": "Which Score has a Result of 2\u20131, and a Competition of friendly, and a Goal smaller than 17?", "context": "CREATE TABLE table_name_21 (score VARCHAR, goal VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE date = \"october 8, 2005\" AND venue = \"estadio alfonso lastras, san luis potos\u00ed, mexico\"", "question": "Which Score has a Date of october 8, 2005, and a Venue of estadio alfonso lastras, san luis potos\u00ed, mexico?", "context": "CREATE TABLE table_name_96 (score VARCHAR, date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_45 WHERE venue = \"estadio alfonso lastras, san luis potos\u00ed, mexico\" AND goal > 15", "question": "Which Competition has a Venue of estadio alfonso lastras, san luis potos\u00ed, mexico, and a Goal larger than 15?", "context": "CREATE TABLE table_name_45 (competition VARCHAR, venue VARCHAR, goal VARCHAR)"}, {"answer": "SELECT area__hectare_ FROM table_name_22 WHERE parish = \"worth\"", "question": "What is the area for Worth Parish?", "context": "CREATE TABLE table_name_22 (area__hectare_ VARCHAR, parish VARCHAR)"}, {"answer": "SELECT week__number FROM table_name_88 WHERE original_artist = \"phil collins\"", "question": "What is the week number with Phil Collins as the original artist?", "context": "CREATE TABLE table_name_88 (week__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT order__number FROM table_name_16 WHERE week__number = \"top 20 (10 women)\"", "question": "What is the order number that has top 20 (10 women)  as the week number?", "context": "CREATE TABLE table_name_16 (order__number VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT original_artist FROM table_name_88 WHERE week__number = \"top 9\"", "question": "What is the original artist of top 9 as the week number?", "context": "CREATE TABLE table_name_88 (original_artist VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT week__number FROM table_name_12 WHERE theme = \"dolly parton\"", "question": "What is the week number that has Dolly Parton as the theme?", "context": "CREATE TABLE table_name_12 (week__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT original_artist FROM table_name_69 WHERE order__number = \"11\"", "question": "What is the original artist that has 11 as the order number?", "context": "CREATE TABLE table_name_69 (original_artist VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT order__number FROM table_name_97 WHERE original_artist = \"aretha franklin\"", "question": "What is the order number that has Aretha Franklin as the original artist?", "context": "CREATE TABLE table_name_97 (order__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT format FROM table_name_81 WHERE date = 1993 AND catalog = \"cleo 2481-2\"", "question": "Which Format has a Date of 1993, and a Catalog of cleo 2481-2?", "context": "CREATE TABLE table_name_81 (format VARCHAR, date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_82 WHERE date < 2008 AND catalog = \"fall cd 006\"", "question": "Which Label has a Date smaller than 2008, and a Catalog of fall cd 006?", "context": "CREATE TABLE table_name_82 (label VARCHAR, date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_88 WHERE position = \"center\"", "question": "What is the sum of Round with a Position that is center?", "context": "CREATE TABLE table_name_88 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_89 WHERE pick = 55", "question": "What is the sum of Round with a Pick that is 55?", "context": "CREATE TABLE table_name_89 (round INTEGER, pick VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_77 WHERE losses < 4 AND ties > 0", "question": "What is the most wins when the number of losses was less than 4 and there was more than 0 ties?", "context": "CREATE TABLE table_name_77 (wins INTEGER, losses VARCHAR, ties VARCHAR)"}, {"answer": "SELECT team FROM table_name_37 WHERE losses < 2 AND pos > 1", "question": "Which team had fewer than 2 losses and a position number more than 1?", "context": "CREATE TABLE table_name_37 (team VARCHAR, losses VARCHAR, pos VARCHAR)"}, {"answer": "SELECT season FROM table_name_97 WHERE name = \"marcio lassiter\"", "question": "What season had Marcio Lassiter?", "context": "CREATE TABLE table_name_97 (season VARCHAR, name VARCHAR)"}, {"answer": "SELECT season FROM table_name_89 WHERE acquisition_via = \"free agency\" AND number > 9", "question": "What season had an acquisition of free agency, and was higher than 9?", "context": "CREATE TABLE table_name_89 (season VARCHAR, acquisition_via VARCHAR, number VARCHAR)"}, {"answer": "SELECT number FROM table_name_54 WHERE acquisition_via = \"rookie draft\" AND school_club_team = \"cal state fullerton\"", "question": "What number has an acquisition via the Rookie Draft, and is part of a School/club team at Cal State Fullerton?", "context": "CREATE TABLE table_name_54 (number VARCHAR, acquisition_via VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_29 WHERE total < 15 AND bronze > 2 AND gold = 0 AND silver = 1", "question": "What is the highest rank of the medal total less than 15, more than 2 bronzes, 0 gold and 1 silver?", "context": "CREATE TABLE table_name_29 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT location FROM table_name_59 WHERE founded > 1889 AND team_nickname = \"broncos\"", "question": "What is the location of the team nicknamed Broncos, which was founded after 1889?", "context": "CREATE TABLE table_name_59 (location VARCHAR, founded VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT location FROM table_name_23 WHERE founded > 1890 AND institution = \"university of montana\"", "question": "What is the location of the University of Montana, which was founded after 1890?", "context": "CREATE TABLE table_name_23 (location VARCHAR, founded VARCHAR, institution VARCHAR)"}, {"answer": "SELECT landfall FROM table_name_85 WHERE saffir_simpson_category = 1 AND year = 1999", "question": "Which landfall was in category 1 for Saffir-Simpson in 1999?", "context": "CREATE TABLE table_name_85 (landfall VARCHAR, saffir_simpson_category VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(v_mph_) FROM table_name_36 WHERE saffir_simpson_category = 4 AND year = 2005", "question": "What was the lowest V(mph) for a Saffir-Simpson of 4 in 2005?", "context": "CREATE TABLE table_name_36 (v_mph_ INTEGER, saffir_simpson_category VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(saffir_simpson_category) FROM table_name_8 WHERE nhc_advisory_number = \"18\"", "question": "What was the highest SaffirSimpson with an NHC advisory of 18?", "context": "CREATE TABLE table_name_8 (saffir_simpson_category INTEGER, nhc_advisory_number VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_82 WHERE rank > 15 AND result < 7.68 AND group = \"b\" AND nationality = \"great britain\"", "question": "Which athlete's rank is more than 15 when the result is less than 7.68, the group is b, and the nationality listed is Great Britain?", "context": "CREATE TABLE table_name_82 (athlete VARCHAR, nationality VARCHAR, group VARCHAR, rank VARCHAR, result VARCHAR)"}, {"answer": "SELECT launch_date FROM table_name_11 WHERE space_agency = \"nasa\" AND name = \"wide field infrared explorer (wire)\"", "question": "When did NASA launch the wide field infrared explorer (wire)?", "context": "CREATE TABLE table_name_11 (launch_date VARCHAR, space_agency VARCHAR, name VARCHAR)"}, {"answer": "SELECT space_agency FROM table_name_17 WHERE name = \"herschel space observatory\"", "question": "Which space agency launched the herschel space observatory?", "context": "CREATE TABLE table_name_17 (space_agency VARCHAR, name VARCHAR)"}, {"answer": "SELECT lead FROM table_name_98 WHERE third = \"david nedohin\"", "question": "What lead has the third David Nedohin?", "context": "CREATE TABLE table_name_98 (lead VARCHAR, third VARCHAR)"}, {"answer": "SELECT builder FROM table_name_93 WHERE completed > 1889", "question": "Which builder completed after 1889?", "context": "CREATE TABLE table_name_93 (builder VARCHAR, completed INTEGER)"}, {"answer": "SELECT builder FROM table_name_84 WHERE completed < 1890 AND launched = \"9 june 1888\"", "question": "Which builder completed before 1890 and launched on 9 june 1888?", "context": "CREATE TABLE table_name_84 (builder VARCHAR, completed VARCHAR, launched VARCHAR)"}, {"answer": "SELECT name FROM table_name_75 WHERE builder = \"chatham\" AND laid_down = \"25 april 1887\"", "question": "What is the name of the boat that was built by Chatham and Laid down of 25 april 1887?", "context": "CREATE TABLE table_name_75 (name VARCHAR, builder VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT name FROM table_name_26 WHERE laid_down = \"25 april 1887\"", "question": "What boat was laid down on 25 april 1887?", "context": "CREATE TABLE table_name_26 (name VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT completed FROM table_name_91 WHERE builder = \"chatham\" AND name = \"hmsmedusa\"", "question": "When did chatham complete the Hmsmedusa?", "context": "CREATE TABLE table_name_91 (completed VARCHAR, builder VARCHAR, name VARCHAR)"}, {"answer": "SELECT overall FROM table_name_95 WHERE date = \"february 4, 1964\"", "question": "What is the Overall with a Date that is february 4, 1964?", "context": "CREATE TABLE table_name_95 (overall VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE opponent = \"indiana state college\"", "question": "What is the Date with an Opponent that is indiana state college?", "context": "CREATE TABLE table_name_71 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_11 WHERE date = \"december 10, 1963\"", "question": "What is the Location with a Date that is december 10, 1963?", "context": "CREATE TABLE table_name_11 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT nicd FROM table_name_23 WHERE type = \"capacity under 500ma constant drain\"", "question": "What is NiCd, when Type is \"Capacity under 500mA constant Drain\"?", "context": "CREATE TABLE table_name_23 (nicd VARCHAR, type VARCHAR)"}, {"answer": "SELECT li_fes_2 FROM table_name_9 WHERE type = \"nominal voltage\"", "question": "What is Li-FeS 2, when Type is Nominal Voltage?", "context": "CREATE TABLE table_name_9 (li_fes_2 VARCHAR, type VARCHAR)"}, {"answer": "SELECT liberal_party FROM table_name_97 WHERE conservative_party = \"16 (-1)\" AND labour_party = \"6 (+2)\"", "question": "What was the Liberal Party result from the election having a Conservative Party result of 16 (-1) and Labour of 6 (+2)?", "context": "CREATE TABLE table_name_97 (liberal_party VARCHAR, conservative_party VARCHAR, labour_party VARCHAR)"}, {"answer": "SELECT control FROM table_name_70 WHERE conservative_party = \"10 (+5)\"", "question": "What was the control for the year with a Conservative Party result of 10 (+5)?", "context": "CREATE TABLE table_name_70 (control VARCHAR, conservative_party VARCHAR)"}, {"answer": "SELECT control FROM table_name_36 WHERE labour_party = \"12 (+6)\"", "question": "Who was in control the year that Labour Party won 12 (+6) seats?", "context": "CREATE TABLE table_name_36 (control VARCHAR, labour_party VARCHAR)"}, {"answer": "SELECT independents FROM table_name_73 WHERE labour_party = \"26 (+3)\"", "question": "What is the number of Independents elected in the year Labour won 26 (+3) seats?", "context": "CREATE TABLE table_name_73 (independents VARCHAR, labour_party VARCHAR)"}, {"answer": "SELECT set_5 FROM table_name_62 WHERE set_2 = \"21-25\" AND set_1 = \"41633\"", "question": "What is the set 5 for the game with a set 2 of 21-25 and a set 1 of 41633?", "context": "CREATE TABLE table_name_62 (set_5 VARCHAR, set_2 VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT result__pts_ FROM table_name_17 WHERE set_1 = \"26-24\"", "question": "What is the result of the game with a set 1 of 26-24?", "context": "CREATE TABLE table_name_17 (result__pts_ VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT altade\u00f1a FROM table_name_83 WHERE aprende = \"jaguars\"", "question": "Which Altade\u00f1a has a Aprende of jaguars?", "context": "CREATE TABLE table_name_83 (altade\u00f1a VARCHAR, aprende VARCHAR)"}, {"answer": "SELECT aprende FROM table_name_35 WHERE centennial = \"1988\"", "question": "WHich kind of Aprende has a Centennial of 1988?", "context": "CREATE TABLE table_name_35 (aprende VARCHAR, centennial VARCHAR)"}, {"answer": "SELECT centennial FROM table_name_4 WHERE altade\u00f1a = \"panthers\"", "question": "Which Centennial has a Altade\u00f1a of panthers?", "context": "CREATE TABLE table_name_4 (centennial VARCHAR, altade\u00f1a VARCHAR)"}, {"answer": "SELECT centennial FROM table_name_40 WHERE del_pueblo = \"1986\"", "question": "Which Centennial has a del Pueblo of 1986?", "context": "CREATE TABLE table_name_40 (centennial VARCHAR, del_pueblo VARCHAR)"}, {"answer": "SELECT altade\u00f1a FROM table_name_45 WHERE del_pueblo = \"maroon/gray\"", "question": "What kind of Altade\u00f1a has del Pueblo of maroon/gray?", "context": "CREATE TABLE table_name_45 (altade\u00f1a VARCHAR, del_pueblo VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_34 WHERE opponent = \"clemson\"", "question": "How many people attended the game against Clemson?", "context": "CREATE TABLE table_name_34 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_97 WHERE winning_score = \u221219(71 - 63 - 63 - 64 = 261)", "question": "Who's the Runner(s)-up with a Winning score of \u221219 (71-63-63-64=261)?", "context": "CREATE TABLE table_name_97 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE runner_s__up = \"fred funk\"", "question": "Which Date has a Runner(s)-up of fred funk?", "context": "CREATE TABLE table_name_55 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_6 WHERE date = \"jul 14, 2013\"", "question": "Which Tournament has a Date of jul 14, 2013?", "context": "CREATE TABLE table_name_6 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_34 WHERE tournament = \"u.s. senior open\"", "question": "Which Margin of victory has a Tournament of u.s. senior open?", "context": "CREATE TABLE table_name_34 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE runner_s__up = \"bernhard langer\" AND tournament = \"at&t championship\"", "question": "Which Date has a Runner(s)-up of bernhard langer, and a Tournament of at&t championship?", "context": "CREATE TABLE table_name_3 (date VARCHAR, runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE margin_of_victory = \"5 strokes\" AND winning_score = \u221213(67 - 73 - 64 - 63 = 267)", "question": "Which Date has a Margin of victory of 5 strokes, and a Winning score of \u221213 (67-73-64-63=267)?", "context": "CREATE TABLE table_name_33 (date VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT AVG(population_density) FROM table_name_63 WHERE change___percentage_ > 10.4 AND county = \"queens\" AND population__2011_ < 8574", "question": "What is the Population density that has a Change (%) higher than 10.4, and a Population (2011) less than 8574, in the County of Queens?", "context": "CREATE TABLE table_name_63 (population_density INTEGER, population__2011_ VARCHAR, change___percentage_ VARCHAR, county VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_name_2 WHERE population__2006_ < 7083 AND population_density < 342.8 AND change___percentage_ = 5 AND area__km\u00b2_ > 4.5", "question": "What was the Population (2011) when the Population (2006) was less than 7083, and the Population density less than 342.8, and the Change (%) of 5, and an Area (km\u00b2) larger than 4.5?", "context": "CREATE TABLE table_name_2 (population__2011_ VARCHAR, area__km\u00b2_ VARCHAR, change___percentage_ VARCHAR, population__2006_ VARCHAR, population_density VARCHAR)"}, {"answer": "SELECT AVG(area__km\u00b2_) FROM table_name_21 WHERE population__2011_ = 8574 AND population_density > 381.4", "question": "What was the Area (km\u00b2) when the Population (2011) was 8574, and the Population density was larger than 381.4?", "context": "CREATE TABLE table_name_21 (area__km\u00b2_ INTEGER, population__2011_ VARCHAR, population_density VARCHAR)"}, {"answer": "SELECT MAX(population_density) FROM table_name_93 WHERE county = \"prince\" AND area__km\u00b2_ > 3.02 AND population__2006_ > 786 AND population__2011_ < 1135", "question": "In the County of Prince, what was the highest Population density when the Area (km\u00b2) was larger than 3.02, and the Population (2006) was larger than 786, and the Population (2011) was smaller than 1135?", "context": "CREATE TABLE table_name_93 (population_density INTEGER, population__2011_ VARCHAR, population__2006_ VARCHAR, county VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_4 WHERE played > 10", "question": "What is the lowest Against when the played is more than 10?", "context": "CREATE TABLE table_name_4 (against INTEGER, played INTEGER)"}, {"answer": "SELECT SUM(against) FROM table_name_45 WHERE lost > 7", "question": "What is the sum of Against when the lost is more than 7?", "context": "CREATE TABLE table_name_45 (against INTEGER, lost INTEGER)"}, {"answer": "SELECT MAX(drawn) FROM table_name_12 WHERE lost = 7 AND points > 4 AND against < 22", "question": "What is the highest Drawn when the lost is 7 and the points are more than 4, and the against is less than 22?", "context": "CREATE TABLE table_name_12 (drawn INTEGER, against VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_name_13 WHERE against > 8 AND lost = 7 AND position = 5", "question": "What team has an against more than 8, lost of 7, and the position is 5?", "context": "CREATE TABLE table_name_13 (team VARCHAR, position VARCHAR, against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT against FROM table_name_21 WHERE drawn = 5", "question": "What is the Against when the drawn is 5?", "context": "CREATE TABLE table_name_21 (against VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_29 WHERE awards = \"62nd golden globe awards\"", "question": "How many years were there for the 62nd golden globe awards?", "context": "CREATE TABLE table_name_29 (year INTEGER, awards VARCHAR)"}, {"answer": "SELECT result FROM table_name_83 WHERE year < 2005", "question": "What was the result for years prior to 2005?", "context": "CREATE TABLE table_name_83 (result VARCHAR, year INTEGER)"}, {"answer": "SELECT awards FROM table_name_33 WHERE year > 2005", "question": "Which awards happened more recently than 2005?", "context": "CREATE TABLE table_name_33 (awards VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_name_8 WHERE time = 14.26 AND avg_run < 4.75", "question": "What is the total years with average runs less than 4.75 and a time of 14.26?", "context": "CREATE TABLE table_name_8 (year VARCHAR, time VARCHAR, avg_run VARCHAR)"}, {"answer": "SELECT SUM(time) FROM table_name_25 WHERE stage = \"speed option\" AND year < 2013", "question": "What is the total amount of time for years prior to 2013 when speed option is the stage?", "context": "CREATE TABLE table_name_25 (time INTEGER, stage VARCHAR, year VARCHAR)"}, {"answer": "SELECT prior_position FROM table_name_1 WHERE name = \"wyman webb\"", "question": "What was the prior position held by Wyman Webb?", "context": "CREATE TABLE table_name_1 (prior_position VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_31 WHERE province = \"quebec\" AND appointed = \"october 21, 2011\"", "question": "Who was appointed on October 21, 2011 from Quebec?", "context": "CREATE TABLE table_name_31 (name VARCHAR, province VARCHAR, appointed VARCHAR)"}, {"answer": "SELECT ground FROM table_name_83 WHERE away = \"high park demons\"", "question": "The Away High Park Demons was which Ground?", "context": "CREATE TABLE table_name_83 (ground VARCHAR, away VARCHAR)"}, {"answer": "SELECT away FROM table_name_69 WHERE ground = \"humber college north\" AND time = \"12:00\"", "question": "With the Ground of Humber College North at 12:00, what was the Away?", "context": "CREATE TABLE table_name_69 (away VARCHAR, ground VARCHAR, time VARCHAR)"}, {"answer": "SELECT home FROM table_name_76 WHERE score = \"52-54\"", "question": "Who has the Home Score of 52-54?", "context": "CREATE TABLE table_name_76 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE away = \"high park demons\"", "question": "When did the High Park Demons play Away?", "context": "CREATE TABLE table_name_64 (date VARCHAR, away VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_14 WHERE runner_s__up = \"fernando roca\"", "question": "What tournament that Fernando Roca is the runner-up?", "context": "CREATE TABLE table_name_14 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_7 WHERE runner_s__up = \"ernie els\"", "question": "What is the winning score for the runner-up Ernie Els?", "context": "CREATE TABLE table_name_7 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_21 WHERE opponent = \"virginia tech\"", "question": "How many people attended when Wake Forest played Virginia Tech?", "context": "CREATE TABLE table_name_21 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT country FROM table_name_50 WHERE television_service = \"eurosport 2\"", "question": "What is Country, when Television Service is Eurosport 2?", "context": "CREATE TABLE table_name_50 (country VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_3 WHERE content = \"poker\"", "question": "What is Package/Option, when Content is Poker?", "context": "CREATE TABLE table_name_3 (package_option VARCHAR, content VARCHAR)"}, {"answer": "SELECT language FROM table_name_71 WHERE content = \"sport\" AND hdtv = \"no\" AND television_service = \"espn america\"", "question": "What is Language, when Content is Sport, when HDTV is No, and when Television Service is ESPN America?", "context": "CREATE TABLE table_name_71 (language VARCHAR, television_service VARCHAR, content VARCHAR, hdtv VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_3 WHERE content = \"tennis\"", "question": "What is Package/Option, when Content is Tennis?", "context": "CREATE TABLE table_name_3 (package_option VARCHAR, content VARCHAR)"}, {"answer": "SELECT television_service FROM table_name_5 WHERE content = \"calcio\" AND package_option = \"option\"", "question": "What is Television Service, when Content is Calcio, and when Package/Option is Option?", "context": "CREATE TABLE table_name_5 (television_service VARCHAR, content VARCHAR, package_option VARCHAR)"}, {"answer": "SELECT novelty FROM table_name_46 WHERE authors = \"zhiming\" AND notes = \"carcharodontosaurid\"", "question": "What is the Novelty of the dinosaur that was named by the Author, Zhiming, and whose Notes are, \"carcharodontosaurid\"?", "context": "CREATE TABLE table_name_46 (novelty VARCHAR, authors VARCHAR, notes VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE location = \"china\" AND notes = \"described from a single tooth\"", "question": "What is the Name of the dinosaur that was discovered in the Location, China, and whose Notes are, \"described from a single tooth\"?", "context": "CREATE TABLE table_name_63 (name VARCHAR, location VARCHAR, notes VARCHAR)"}, {"answer": "SELECT name FROM table_name_22 WHERE notes = \"n ornithischia of uncertain placement\"", "question": "What is the Name of the dinosaur, whose notes are, \"n ornithischia of uncertain placement\"?", "context": "CREATE TABLE table_name_22 (name VARCHAR, notes VARCHAR)"}, {"answer": "SELECT status FROM table_name_73 WHERE notes = \"n coelurosauria\"", "question": "What is the Status of the dinosaur, whose notes are, \"n coelurosauria\"?", "context": "CREATE TABLE table_name_73 (status VARCHAR, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_name_26 WHERE status = \"nomen dubium\" AND location = \"china\"", "question": "What are the Notes of the dinosaur, whose Status is nomen dubium, and whose Location is China?", "context": "CREATE TABLE table_name_26 (notes VARCHAR, status VARCHAR, location VARCHAR)"}, {"answer": "SELECT novelty FROM table_name_37 WHERE authors = \"galton\"", "question": "What is the Novelty of the dinosaur, whose naming Author was Galton?", "context": "CREATE TABLE table_name_37 (novelty VARCHAR, authors VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_72 WHERE losses < 13 AND byes < 2", "question": "What is the number listed under against when there were less than 13 losses and less than 2 byes?", "context": "CREATE TABLE table_name_72 (against VARCHAR, losses VARCHAR, byes VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_97 WHERE losses = 15 AND wins > 1", "question": "What is the highest number listed under against when there were 15 losses and more than 1 win?", "context": "CREATE TABLE table_name_97 (against INTEGER, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(byes) FROM table_name_75 WHERE against = 1247 AND draws < 0", "question": "What is the average number of Byes when there were less than 0 losses and were against 1247?", "context": "CREATE TABLE table_name_75 (byes INTEGER, against VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_20 WHERE wins < 3 AND losses < 15", "question": "What is the highest number listed under against when there were less than 3 wins and less than 15 losses?", "context": "CREATE TABLE table_name_20 (against INTEGER, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(public_debt__percentage_of_gdp__2013_q1_) FROM table_name_7 WHERE member_state_sorted_by_gdp = \"czech republic\" AND gdp_per_capita_in_ppp_us$__2012_ > 27 OFFSET 191", "question": "What is the average public debt % of GDP in 2013 Q1 of the country with a member slate sorted by GDP of Czech Republic and a GDP per capita in PPP US dollars in 2012 greater than 27,191?", "context": "CREATE TABLE table_name_7 (public_debt__percentage_of_gdp__2013_q1_ INTEGER, member_state_sorted_by_gdp VARCHAR, gdp_per_capita_in_ppp_us$__2012_ VARCHAR)"}, {"answer": "SELECT MAX(inflation__percentage_annual__2012_) FROM table_name_74 WHERE public_debt__percentage_of_gdp__2013_q1_ > 88.2 AND gdp__percentage_of_eu__2012_ = \"2.9%\"", "question": "What is the largest inflation % annual in 2012 of the country with a public debt % of GDP in 2013 Q1 greater than 88.2 and a GDP % of EU in 2012 of 2.9%?", "context": "CREATE TABLE table_name_74 (inflation__percentage_annual__2012_ INTEGER, public_debt__percentage_of_gdp__2013_q1_ VARCHAR, gdp__percentage_of_eu__2012_ VARCHAR)"}, {"answer": "SELECT gdp__percentage_of_eu__2012_ FROM table_name_19 WHERE gdp_in_s_billion_of_usd__2012_ = 256.3", "question": "What is the GDP % of EU in 2012 of the country with a GDP in billions of USD in 2012 of 256.3?", "context": "CREATE TABLE table_name_19 (gdp__percentage_of_eu__2012_ VARCHAR, gdp_in_s_billion_of_usd__2012_ VARCHAR)"}, {"answer": "SELECT chord FROM table_name_69 WHERE major_third = \"e\"", "question": "What is the Chord with a Major that is third of e?", "context": "CREATE TABLE table_name_69 (chord VARCHAR, major_third VARCHAR)"}, {"answer": "SELECT chord FROM table_name_73 WHERE minor_seventh = \"f\"", "question": "What is the Chord with a Minor that is seventh of f?", "context": "CREATE TABLE table_name_73 (chord VARCHAR, minor_seventh VARCHAR)"}, {"answer": "SELECT major_third FROM table_name_20 WHERE perfect_fifth = \"d\"", "question": "What is the Major third with a Perfect fifth that is d?", "context": "CREATE TABLE table_name_20 (major_third VARCHAR, perfect_fifth VARCHAR)"}, {"answer": "SELECT perfect_fifth FROM table_name_48 WHERE minor_seventh = \"d\"", "question": "What is the Perfect fifth with a Minor that is seventh of d?", "context": "CREATE TABLE table_name_48 (perfect_fifth VARCHAR, minor_seventh VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_69 WHERE date = \"january 2\"", "question": "Where was the game, and how many attended the game on january 2?", "context": "CREATE TABLE table_name_69 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_16 WHERE record = \"21\u201322\"", "question": "What is the Location and Attendance with a Record of 21\u201322?", "context": "CREATE TABLE table_name_16 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE opponent = \"north carolina\"", "question": "What was the date of the game against North Carolina?", "context": "CREATE TABLE table_name_10 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(fg_pct) FROM table_name_21 WHERE asst = 59 AND off_reb < 40", "question": "How many FG percent values are associated with 59 assists and offensive rebounds under 40?", "context": "CREATE TABLE table_name_21 (fg_pct VARCHAR, asst VARCHAR, off_reb VARCHAR)"}, {"answer": "SELECT COUNT(off_reb) FROM table_name_8 WHERE total_reb < 65 AND def_reb = 5 AND asst < 7", "question": "What is the total number of offensive rebounds for players with under 65 total rebounds, 5 defensive rebounds, and under 7 assists?", "context": "CREATE TABLE table_name_8 (off_reb VARCHAR, asst VARCHAR, total_reb VARCHAR, def_reb VARCHAR)"}, {"answer": "SELECT round FROM table_name_34 WHERE competition = \"uefa cup\" AND series = \"5\u20132\"", "question": "Which Round has a Competition of uefa cup, and a Series of 5\u20132?", "context": "CREATE TABLE table_name_34 (round VARCHAR, competition VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_name_96 WHERE home = \"2\u20130\" AND opponent = \"panathinaikos\"", "question": "Which Series has a Home of 2\u20130, and an Opponent of panathinaikos?", "context": "CREATE TABLE table_name_96 (series VARCHAR, home VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home FROM table_name_70 WHERE competition = \"european cup\" AND round = \"qf\"", "question": "Which Home has a Competition of european cup, and a Round of qf?", "context": "CREATE TABLE table_name_70 (home VARCHAR, competition VARCHAR, round VARCHAR)"}, {"answer": "SELECT season FROM table_name_4 WHERE opponent = \"hibernians\"", "question": "Which Season has an Opponent of hibernians?", "context": "CREATE TABLE table_name_4 (season VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE away = \"1\u20131\" AND home = \"3\u20133\"", "question": "Which Opponent has an Away of 1\u20131, and a Home of 3\u20133?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, away VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_72 WHERE round = \"r1\" AND opponent = \"dundee united\"", "question": "Which Home has a Round of r1, and an Opponent of dundee united?", "context": "CREATE TABLE table_name_72 (home VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_17 WHERE set_1 = \"21-25\" AND set_4 = \"25-20\"", "question": "What is the set 2 the has 1 set of 21-25, and 4 sets of 25-20?", "context": "CREATE TABLE table_name_17 (set_2 VARCHAR, set_1 VARCHAR, set_4 VARCHAR)"}, {"answer": "SELECT avg FROM table_name_76 WHERE player = \"domenik hixon\"", "question": "What is Domenik Hixon's average rush?", "context": "CREATE TABLE table_name_76 (avg VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(viewers) FROM table_name_30 WHERE rank = \"#40\"", "question": "What is the total number of Viewers when the rank is #40?", "context": "CREATE TABLE table_name_30 (viewers VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(episode__number) FROM table_name_96 WHERE share = 9 AND rank = \"#35\" AND viewers < 8.21", "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 MIN(bronze) FROM table_name_56 WHERE nation = \"egypt (egy)\" AND gold < 2", "question": "What is the lowest Bronze with a Nation of egypt (egy) and with a Gold that is smaller than 2?", "context": "CREATE TABLE table_name_56 (bronze INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_19 WHERE total < 1", "question": "What is the total number of Silver with a Total that is smaller than 1?", "context": "CREATE TABLE table_name_19 (silver VARCHAR, total INTEGER)"}, {"answer": "SELECT MAX(total) FROM table_name_57 WHERE rank < 4 AND nation = \"tunisia (tun)\" AND gold < 2", "question": "What is the highest Total with a Rank that is smaller than 4 and a Nation of tunisia (tun) with a Gold that is smaller than 2?", "context": "CREATE TABLE table_name_57 (total INTEGER, gold VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_4 WHERE nation = \"ethiopia (eth)\" AND rank > 9", "question": "What is the average Total with a Nation of ethiopia (eth) and a Rank that is larger than 9?", "context": "CREATE TABLE table_name_4 (total INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT region FROM table_name_7 WHERE date = \"19 june 2007\"", "question": "From which region is the album with release date of 19 June 2007?", "context": "CREATE TABLE table_name_7 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_86 WHERE date = \"28 march 2007\" AND catalog = \"magik muzik cd 07\"", "question": "Which label released the catalog Magik Muzik CD 07 on 28 March 2007?", "context": "CREATE TABLE table_name_86 (label VARCHAR, date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_52 WHERE catalog = \"dp068-07\"", "question": "For the catalog title DP068-07, what formats are available?", "context": "CREATE TABLE table_name_52 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT term_in_office FROM table_name_21 WHERE order = \"9\"", "question": "What is the Term in office with an Order that is 9?", "context": "CREATE TABLE table_name_21 (term_in_office VARCHAR, order VARCHAR)"}, {"answer": "SELECT competition FROM table_name_5 WHERE date = \"june 19, 2004\"", "question": "What competition has June 19, 2004 as the date?", "context": "CREATE TABLE table_name_5 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_51 WHERE date = \"january 21, 2002\"", "question": "What result has January 21, 2002 as the date?", "context": "CREATE TABLE table_name_51 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE venue = \"alamodome, san antonio, united states\"", "question": "What date has alamodome, san antonio, united states as the venue?", "context": "CREATE TABLE table_name_63 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE competition = \"2006 fifa world cup qualification\" AND venue = \"alamodome, san antonio, united states\"", "question": "What date has 2006 fifa world cup qualification as the competition, and alamodome, san antonio, united States as the venue?", "context": "CREATE TABLE table_name_40 (date VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT rank FROM table_name_97 WHERE silver > 0 AND bronze = 38", "question": "What is the rank of the nation with more than 0 silver medals and 38 bronze medals?", "context": "CREATE TABLE table_name_97 (rank VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT sign FROM table_name_21 WHERE latin_motto = \"vita\"", "question": "Which astrological sign has the Latin motto of Vita?", "context": "CREATE TABLE table_name_21 (sign VARCHAR, latin_motto VARCHAR)"}, {"answer": "SELECT translation FROM table_name_15 WHERE sign = \"aquarius\"", "question": "What is the translation of the sign of Aquarius?", "context": "CREATE TABLE table_name_15 (translation VARCHAR, sign VARCHAR)"}, {"answer": "SELECT modern_title_of_house FROM table_name_46 WHERE translation = \"prison\"", "question": "Which modern house title translates to prison?", "context": "CREATE TABLE table_name_46 (modern_title_of_house VARCHAR, translation VARCHAR)"}, {"answer": "SELECT latin_motto FROM table_name_94 WHERE translation = \"spouse\"", "question": "What is the Latin motto of the sign that translates to spouse?", "context": "CREATE TABLE table_name_94 (latin_motto VARCHAR, translation VARCHAR)"}, {"answer": "SELECT modern_title_of_house FROM table_name_27 WHERE house = \"1st\"", "question": "What is the modern house title of the 1st house?", "context": "CREATE TABLE table_name_27 (modern_title_of_house VARCHAR, house VARCHAR)"}, {"answer": "SELECT sign FROM table_name_50 WHERE modern_title_of_house = \"house of partnerships\"", "question": "Which sign has a modern house title of House of Partnerships?", "context": "CREATE TABLE table_name_50 (sign VARCHAR, modern_title_of_house VARCHAR)"}, {"answer": "SELECT SUM(int_yards) FROM table_name_81 WHERE assts > 3 AND player = \"jay alford\"", "question": "What is the sum for the int yards that has an assts more than 3, and player Jay Alford?", "context": "CREATE TABLE table_name_81 (int_yards INTEGER, assts VARCHAR, player VARCHAR)"}, {"answer": "SELECT time FROM table_name_38 WHERE score = \"80-34\"", "question": "What is the Time with a Score that is 80-34?", "context": "CREATE TABLE table_name_38 (time VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE home = \"hamilton wildcats\"", "question": "What is the Date with a Home that is hamilton wildcats?", "context": "CREATE TABLE table_name_29 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT ground FROM table_name_42 WHERE date = \"2008-06-20\"", "question": "What is the Ground with a Date that is 2008-06-20?", "context": "CREATE TABLE table_name_42 (ground VARCHAR, date VARCHAR)"}, {"answer": "SELECT away FROM table_name_88 WHERE ground = \"humber college lakeshore\"", "question": "What is the Away with a Ground that is humber college lakeshore?", "context": "CREATE TABLE table_name_88 (away VARCHAR, ground VARCHAR)"}, {"answer": "SELECT time FROM table_name_7 WHERE ground = \"humber college north\"", "question": "What is the Time with a Ground that is humber college north?", "context": "CREATE TABLE table_name_7 (time VARCHAR, ground VARCHAR)"}, {"answer": "SELECT away FROM table_name_9 WHERE ground = \"humber college north\"", "question": "What is the Away with a Ground that is humber college north?", "context": "CREATE TABLE table_name_9 (away VARCHAR, ground VARCHAR)"}, {"answer": "SELECT college FROM table_name_20 WHERE round__number = 290", "question": "What is the College with a Round # that is 290?", "context": "CREATE TABLE table_name_20 (college VARCHAR, round__number VARCHAR)"}, {"answer": "SELECT college FROM table_name_49 WHERE player = \"dean caliguire\"", "question": "What is the College with a Player that is dean caliguire?", "context": "CREATE TABLE table_name_49 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT first_leg FROM table_name_78 WHERE round = \"semi-final\"", "question": "What was the first leg of the semi-final?", "context": "CREATE TABLE table_name_78 (first_leg VARCHAR, round VARCHAR)"}, {"answer": "SELECT first_leg FROM table_name_66 WHERE opposition = \"real sociedad\"", "question": "What was the first leg score against Real Sociedad?", "context": "CREATE TABLE table_name_66 (first_leg VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT first_leg FROM table_name_13 WHERE opposition = \"hibernian\"", "question": "What was the first leg against Hibernian?", "context": "CREATE TABLE table_name_13 (first_leg VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_50 WHERE round = \"quarter-final\"", "question": "Who were the opposition in the quarter-final?", "context": "CREATE TABLE table_name_50 (opposition VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(assists) FROM table_name_53 WHERE rank = 2", "question": "What is the least number of assists among players ranked 2?", "context": "CREATE TABLE table_name_53 (assists INTEGER, rank VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_34 WHERE rank = \"14\" AND gold > 0", "question": "What is the lowest total when the rank is 14 and the gold medals is larger than 0?", "context": "CREATE TABLE table_name_34 (total INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_83 WHERE gold = 18", "question": "What is the total number of medals when there are 18 gold medals?", "context": "CREATE TABLE table_name_83 (total INTEGER, gold VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_94 WHERE total > 1 AND silver > \"2\" AND rank = \"2\"", "question": "What is the number of bronze medals when the total is greater than 1, more than 2 silver medals are won, and the rank is 2?", "context": "CREATE TABLE table_name_94 (bronze VARCHAR, rank VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT location FROM table_name_74 WHERE record = \"12-4\"", "question": "What was the location of the game when the record was 12-4?", "context": "CREATE TABLE table_name_74 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_86 WHERE record = \"2-1\"", "question": "What was the location of the game when the record was 2-1?", "context": "CREATE TABLE table_name_86 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE visitor = \"cavaliers\" AND home = \"knicks\"", "question": "What day was the game that had the Cavaliers as visiting team and the Knicks as the home team?", "context": "CREATE TABLE table_name_85 (date VARCHAR, visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT main_span_feet FROM table_name_69 WHERE year_opened > 2009 AND rank < 94 AND main_span_metres = \"1,310\"", "question": "What is the main span in feet from a year of 2009 or more recent with a rank less than 94 and 1,310 main span metres?", "context": "CREATE TABLE table_name_69 (main_span_feet VARCHAR, main_span_metres VARCHAR, year_opened VARCHAR, rank VARCHAR)"}, {"answer": "SELECT main_span_feet FROM table_name_43 WHERE year_opened = 1936 AND country = \"united states\" AND rank > 47 AND main_span_metres = \"421\"", "question": "What is the main span feet from opening year of 1936 in the United States with a rank greater than 47 and 421 main span metres?", "context": "CREATE TABLE table_name_43 (main_span_feet VARCHAR, main_span_metres VARCHAR, rank VARCHAR, year_opened VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_69 WHERE year_opened > 2010 AND main_span_metres = \"430\"", "question": "What is the highest rank from the year greater than 2010 with 430 main span metres?", "context": "CREATE TABLE table_name_69 (rank INTEGER, year_opened VARCHAR, main_span_metres VARCHAR)"}, {"answer": "SELECT MIN(year_opened) FROM table_name_52 WHERE main_span_feet = \"1,640\" AND country = \"south korea\"", "question": "What is the oldest year with a main span feet of 1,640 in South Korea?", "context": "CREATE TABLE table_name_52 (year_opened INTEGER, main_span_feet VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE record = \"39\u201321\u20134\"", "question": "What was the score of the game when the record was 39\u201321\u20134?", "context": "CREATE TABLE table_name_49 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE score = \"2\u20131\"", "question": "What was the date of the game with a score of 2\u20131?", "context": "CREATE TABLE table_name_60 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_10 WHERE game_site = \"cleveland browns stadium\"", "question": "What is the earliest week that the Texans played at the Cleveland Browns Stadium?", "context": "CREATE TABLE table_name_10 (week INTEGER, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE game_site = \"lp field\"", "question": "When did the Texans play at LP Field?", "context": "CREATE TABLE table_name_90 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT name FROM table_name_11 WHERE avg_g = 195.8", "question": "Which quarterback had an Avg/G of 195.8?", "context": "CREATE TABLE table_name_11 (name VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT royal_house FROM table_name_84 WHERE name = \"polyxenos epiphanes soter\"", "question": "Which royal house corresponds to Polyxenos Epiphanes Soter?", "context": "CREATE TABLE table_name_84 (royal_house VARCHAR, name VARCHAR)"}, {"answer": "SELECT mark FROM table_name_19 WHERE name = \"dmytro hlushchenko\"", "question": "What is Mark, when Name is Dmytro Hlushchenko?", "context": "CREATE TABLE table_name_19 (mark VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_80 WHERE lane = 5 AND react > 0.166", "question": "What is Country, when Lane is 5, and when React is greater than 0.166?", "context": "CREATE TABLE table_name_80 (country VARCHAR, lane VARCHAR, react VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_28 WHERE country = \"france\" AND react < 0.14100000000000001", "question": "What is the lowest Lane, when Country is France, and when React is less than 0.14100000000000001?", "context": "CREATE TABLE table_name_28 (lane INTEGER, country VARCHAR, react VARCHAR)"}, {"answer": "SELECT heat FROM table_name_42 WHERE mark = \"6.69\"", "question": "What is Heat, when Mark is 6.69?", "context": "CREATE TABLE table_name_42 (heat VARCHAR, mark VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_35 WHERE rank = \"2nd\" AND draw > 3", "question": "What is the average number of points for a song ranked 2nd with a draw greater than 3?", "context": "CREATE TABLE table_name_35 (points INTEGER, rank VARCHAR, draw VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_64 WHERE performer = \"miranda\" AND points < 48", "question": "What is the total number of draws for songs performed by Miranda with fewer than 48 points?", "context": "CREATE TABLE table_name_64 (draw VARCHAR, performer VARCHAR, points VARCHAR)"}, {"answer": "SELECT hdtv FROM table_name_54 WHERE content = \"timeshift +1 di disney junior\"", "question": "What is the HDTV when the content shows a timeshift +1 di disney junior?", "context": "CREATE TABLE table_name_54 (hdtv VARCHAR, content VARCHAR)"}, {"answer": "SELECT country FROM table_name_12 WHERE language = \"italian english\" AND television_service = \"disney xd +1\"", "question": "What is the Country when the language is italian english, and the television service is disney xd +1?", "context": "CREATE TABLE table_name_12 (country VARCHAR, language VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT hdtv FROM table_name_67 WHERE package_option = \"sky famiglia\" AND television_service = \"boomerang +1\"", "question": "What is the HDTV when the Package/Option is sky famiglia, and a Television service of boomerang +1?", "context": "CREATE TABLE table_name_67 (hdtv VARCHAR, package_option VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT content FROM table_name_75 WHERE television_service = \"nickelodeon +1\"", "question": "What shows as Content for the Television service of nickelodeon +1?", "context": "CREATE TABLE table_name_75 (content VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT SUM(year_2007) FROM table_name_23 WHERE year_2005 > 29 OFFSET 377", "question": "What is the sum of Year 2007(s), when the Year 2005 is greater than 29,377?", "context": "CREATE TABLE table_name_23 (year_2007 INTEGER, year_2005 INTEGER)"}, {"answer": "SELECT date FROM table_name_17 WHERE score = \"97-38\"", "question": "On what day was the game that ended in a score of 97-38?", "context": "CREATE TABLE table_name_17 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_53 WHERE time = \"14:00\"", "question": "Who was the home team of the game at the time of 14:00?", "context": "CREATE TABLE table_name_53 (home VARCHAR, time VARCHAR)"}, {"answer": "SELECT home FROM table_name_33 WHERE time = \"15:00\"", "question": "Who was the home team of the game at the time of 15:00?", "context": "CREATE TABLE table_name_33 (home VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_1 WHERE score = \"97-38\"", "question": "On what day was the game that ended in a score of 97-38?", "context": "CREATE TABLE table_name_1 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT away FROM table_name_57 WHERE time = \"15:00\"", "question": "Who was the away team of the game at the time 15:00?", "context": "CREATE TABLE table_name_57 (away VARCHAR, time VARCHAR)"}, {"answer": "SELECT ground FROM table_name_5 WHERE away = \"toronto rebels\"", "question": "On what grounds did the away team of the Toronto Rebels play?", "context": "CREATE TABLE table_name_5 (ground VARCHAR, away VARCHAR)"}, {"answer": "SELECT capital FROM table_name_97 WHERE hangul_chosongul = \"\uacbd\uc0c1\ub0a8\ub3c4\"", "question": "Which capital has a Hangul of \uacbd\uc0c1\ub0a8\ub3c4?", "context": "CREATE TABLE table_name_97 (capital VARCHAR, hangul_chosongul VARCHAR)"}, {"answer": "SELECT country FROM table_name_83 WHERE hanja = \"\u5e73\u5b89\u5317\u9053\"", "question": "Which country has a city with a Hanja of \u5e73\u5b89\u5317\u9053?", "context": "CREATE TABLE table_name_83 (country VARCHAR, hanja VARCHAR)"}, {"answer": "SELECT rr_romaja FROM table_name_85 WHERE hangul_chosongul = \"\uac15\uc6d0\ub3c4\" AND capital = \"wonsan\"", "question": "What is the RR Romaja for the province that has Hangul of \uac15\uc6d0\ub3c4 and capital of Wonsan?", "context": "CREATE TABLE table_name_85 (rr_romaja VARCHAR, hangul_chosongul VARCHAR, capital VARCHAR)"}, {"answer": "SELECT area FROM table_name_60 WHERE hangul_chosongul = \"\uacbd\uae30\ub3c4\"", "question": "What is the area for the province having Hangul of \uacbd\uae30\ub3c4?", "context": "CREATE TABLE table_name_60 (area VARCHAR, hangul_chosongul VARCHAR)"}, {"answer": "SELECT m_r_romaja FROM table_name_34 WHERE capital = \"cheongju\"", "question": "What is the M-R Romaja for the province having a capital of Cheongju?", "context": "CREATE TABLE table_name_34 (m_r_romaja VARCHAR, capital VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_41 WHERE points = 32 AND team = \"montepaschi siena\" AND rank > 4", "question": "What is the highest game that has 32 points and a team rank larger than 4 named montepaschi siena", "context": "CREATE TABLE table_name_41 (games INTEGER, rank VARCHAR, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(built) FROM table_name_38 WHERE floors > 23 AND rank = 3", "question": "What is the lowest Built, when Floors is greater than 23, and when Rank is 3?", "context": "CREATE TABLE table_name_38 (built INTEGER, floors VARCHAR, rank VARCHAR)"}, {"answer": "SELECT height FROM table_name_84 WHERE rank < 20 AND floors > 9 AND built = 2005 AND name = \"the edge (c)\"", "question": "What is Height, when Rank is less than 20, when Floors is greater than 9, when Built is 2005, and when Name is The Edge (C)?", "context": "CREATE TABLE table_name_84 (height VARCHAR, name VARCHAR, built VARCHAR, rank VARCHAR, floors VARCHAR)"}, {"answer": "SELECT MIN(floors) FROM table_name_90 WHERE built > 1970 AND name = \"nv building 3\"", "question": "What is the lowest Floors, when Built is greater than 1970, and when Name is NV Building 3?", "context": "CREATE TABLE table_name_90 (floors INTEGER, built VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(built) FROM table_name_55 WHERE floors < 22 AND rank < 8 AND name = \"white, mediacityuk\"", "question": "What is the total number of Built, when Floors is less than 22, when Rank is less than 8, and when Name is White, Mediacityuk?", "context": "CREATE TABLE table_name_55 (built VARCHAR, name VARCHAR, floors VARCHAR, rank VARCHAR)"}, {"answer": "SELECT height FROM table_name_80 WHERE home_town = \"las vegas, nv\"", "question": "What is the height of the player from Las Vegas, NV?", "context": "CREATE TABLE table_name_80 (height VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT name FROM table_name_44 WHERE position = \"guard\" AND home_town = \"cary, nc\"", "question": "What is the name of the guard from Cary, NC?", "context": "CREATE TABLE table_name_44 (name VARCHAR, position VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT year FROM table_name_90 WHERE position = \"forward\" AND name = \"iman mcfarland\"", "question": "In what year of school is the forward Iman McFarland?", "context": "CREATE TABLE table_name_90 (year VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT height FROM table_name_56 WHERE position = \"guard\" AND year = \"freshman\" AND name = \"cetera degraffenreid\"", "question": "How tall is the freshman guard Cetera Degraffenreid?", "context": "CREATE TABLE table_name_56 (height VARCHAR, name VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT position FROM table_name_10 WHERE height = \"5-8\" AND home_town = \"grottoes, va\"", "question": "What position does the 5-8 player from Grottoes, VA play?", "context": "CREATE TABLE table_name_10 (position VARCHAR, height VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT year FROM table_name_52 WHERE home_town = \"fayetteville, nc\"", "question": "In what year of school is the player from Fayetteville, NC?", "context": "CREATE TABLE table_name_52 (year VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT team FROM table_name_76 WHERE game > 56 AND score = \"l 85\u201390 (ot)\"", "question": "What is the Team with a game of more than 56, and the score is l 85\u201390 (ot)?", "context": "CREATE TABLE table_name_76 (team VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_5 WHERE high_rebounds = \"antonio davis (9)\"", "question": "What is the Record when the high rebounds was Antonio Davis (9)?", "context": "CREATE TABLE table_name_5 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT home FROM table_name_33 WHERE opponent = \"marek dupnitsa\"", "question": "What is the home score with marek dupnitsa as opponent?", "context": "CREATE TABLE table_name_33 (home VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT label FROM table_name_60 WHERE catalog = \"b0011141-01\"", "question": "What is the Label of the B0011141-01 Catalog?", "context": "CREATE TABLE table_name_60 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_42 WHERE catalog = \"uici-1069\"", "question": "What is the Label of the UICI-1069 Catalog?", "context": "CREATE TABLE table_name_42 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_71 WHERE catalog = \"1766390\"", "question": "What is the Region of the 1766390 Catalog?", "context": "CREATE TABLE table_name_71 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_27 WHERE player = \"dominique wilkins\"", "question": "What School/Club did Dominique Wilkins play for?", "context": "CREATE TABLE table_name_27 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_7 WHERE score = \"4\u20136, 6\u20134, 6\u20133, 7\u20136 (7\u20132)\"", "question": "What is the outcome of the 4\u20136, 6\u20134, 6\u20133, 7\u20136 (7\u20132) score?", "context": "CREATE TABLE table_name_7 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_89 WHERE opponent = \"roger federer\"", "question": "What is the outcome of the match with Roger Federer as the opponent?", "context": "CREATE TABLE table_name_89 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_84 WHERE championship = \"australian open (1)\"", "question": "What surface was the Australian Open (1) played on?", "context": "CREATE TABLE table_name_84 (surface VARCHAR, championship VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_92 WHERE matches = 362", "question": "What is the Rank of the player with 362 Matches?", "context": "CREATE TABLE table_name_92 (rank INTEGER, matches VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_85 WHERE goals = 158 AND matches > 362", "question": "What is the Rank of the player with 158 Goals in more than 362 Matches?", "context": "CREATE TABLE table_name_85 (rank VARCHAR, goals VARCHAR, matches VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_9 WHERE played > 12", "question": "What is the sum of drawn that has a played more than 12?", "context": "CREATE TABLE table_name_9 (drawn VARCHAR, played INTEGER)"}, {"answer": "SELECT difference FROM table_name_66 WHERE points > 10 AND drawn < 2", "question": "What difference has a points greater than 10, and a drawn less than 2?", "context": "CREATE TABLE table_name_66 (difference VARCHAR, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT result FROM table_name_41 WHERE attendance = \"72,949\"", "question": "What is the Result of the game with 72,949 in attendance?", "context": "CREATE TABLE table_name_41 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_39 WHERE week < 16 AND date = \"bye\"", "question": "What is the Attendance for a Week earlier than 16, and a Date of bye?", "context": "CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_70 WHERE opponent = \"indianapolis colts\"", "question": "What is the Result of the game against the Indianapolis Colts?", "context": "CREATE TABLE table_name_70 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT song FROM table_name_25 WHERE points > 66 AND draw > 3 AND rank = \"3rd\"", "question": "Which song has more than 66 points, a draw greater than 3, and is ranked 3rd?", "context": "CREATE TABLE table_name_25 (song VARCHAR, rank VARCHAR, points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_60 WHERE rank = \"1st\"", "question": "What is the lowest points when the ranking is 1st?", "context": "CREATE TABLE table_name_60 (points INTEGER, rank VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_63 WHERE rank = \"7th\" AND draw < 4", "question": "What is the average number of points when the ranking is 7th and the draw is less than 4?", "context": "CREATE TABLE table_name_63 (points INTEGER, rank VARCHAR, draw VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_41 WHERE engine = \"honda hr-1\"", "question": "What is the total number of points of the honda hr-1 engine?", "context": "CREATE TABLE table_name_41 (points VARCHAR, engine VARCHAR)"}, {"answer": "SELECT rank FROM table_name_50 WHERE year < 2002 AND chassis = \"reynard 2ki\"", "question": "What is the rank of the reynard 2ki chassis before 2002?", "context": "CREATE TABLE table_name_50 (rank VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_80 WHERE date = \"april 13, 2008\" AND away_team = \"itabuna\"", "question": "Who was the home team on April 13, 2008 when Itabuna was the away team?", "context": "CREATE TABLE table_name_80 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_57 WHERE round = \"2nd\" AND away_team = \"vit\u00f3ria da conquista\"", "question": "What is the name of the home team with a round of 2nd and Vit\u00f3ria da Conquista as the way team?", "context": "CREATE TABLE table_name_57 (home_team VARCHAR, round VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_48 WHERE date = \"april 13, 2008\" AND away_team = \"itabuna\"", "question": "What is the name of the home team on April 13, 2008 when Itabuna was the away team?", "context": "CREATE TABLE table_name_48 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_30 WHERE score = \"5 - 5\"", "question": "What home team has a score of 5 - 5?", "context": "CREATE TABLE table_name_30 (home_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE score = \"0 - 0\"", "question": "On which date was the score 0 - 0?", "context": "CREATE TABLE table_name_54 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_89 WHERE away_team = \"vit\u00f3ria\"", "question": "Who played as the home team when Vit\u00f3ria was the away team?", "context": "CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_30 WHERE time_retired = \"+ 5 laps\" AND laps < 161", "question": "What grid is the lowest when the time/retired is + 5 laps and the laps is less than 161?", "context": "CREATE TABLE table_name_30 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_34 WHERE grid < 13 AND time_retired = \"+7.538 secs\"", "question": "What is the biggest points when the grid is less than 13 and the time/retired is +7.538 secs?", "context": "CREATE TABLE table_name_34 (points INTEGER, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_96 WHERE driver = \"ricardo sperafico\"", "question": "Driver Ricardo Sperafico has what as his average laps?", "context": "CREATE TABLE table_name_96 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_35 WHERE points = 6", "question": "What is the name of the driver with 6 points?", "context": "CREATE TABLE table_name_35 (driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_54 WHERE driver = \"ryan hunter-reay\"", "question": "What is the average points that the driver Ryan Hunter-Reay has?", "context": "CREATE TABLE table_name_54 (points INTEGER, driver VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_64 WHERE 2013 = \"2\u20134\"", "question": "What shows for 2006, when 2013 is 2\u20134?", "context": "CREATE TABLE table_name_64 (Id VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_29 WHERE 2012 = \"2r\" AND 2009 = \"2r\"", "question": "What shows for 2013 when the 2012 is 2r, and a 2009 is 2r?", "context": "CREATE TABLE table_name_29 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_89 WHERE 2013 = \"1r\" AND 2012 = \"1r\"", "question": "What is the 2006 when the 2013 is 1r, and the 2012 is 1r?", "context": "CREATE TABLE table_name_89 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_91 WHERE 2013 = \"2r\" AND tournament = \"us open\"", "question": "What is the 2006 when the 2013 is 2r, and a Tournament was the us open?", "context": "CREATE TABLE table_name_91 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_26 WHERE 2013 = \"2r\" AND 2006 = \"1r\"", "question": "What is the Tournament when the 2013 is 2r, and a 2006 is 1r?", "context": "CREATE TABLE table_name_26 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_54 WHERE 2013 = \"1r\"", "question": "What is the Tournament when the 2013 is 1r?", "context": "CREATE TABLE table_name_54 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_30 WHERE 2007 = \"f\"", "question": "When in 2008 that has a 2007 of f?", "context": "CREATE TABLE table_name_30 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_3 WHERE 2007 = \"19\u20134\"", "question": "Which Tournament has a 2007 of 19\u20134?", "context": "CREATE TABLE table_name_3 (tournament VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_59 WHERE win__percentage = \"82.61\"", "question": "WHat in 2005 has a Win % of 82.61?", "context": "CREATE TABLE table_name_59 (win__percentage VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_95 WHERE 2008 = \"sf\" AND 2010 = \"f\"", "question": "What in 2007 has a 2008 of sf, and a 2010 of f?", "context": "CREATE TABLE table_name_95 (Id VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_29 WHERE 2009 = \"3r\"", "question": "What in 2013 has a 2009 of 3r?", "context": "CREATE TABLE table_name_29 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_92 WHERE 2010 = \"qf\" AND 2012 = \"w\"", "question": "What in 2007 has a 2010 of qf, and a 2012 of w?", "context": "CREATE TABLE table_name_92 (Id VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_4 WHERE team_1 = \"al qadsia\"", "question": "What is the name of Team 2 with a Team 1 of Al Qadsia?", "context": "CREATE TABLE table_name_4 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_11 WHERE team_1 = \"al fahaheel\"", "question": "What is the 1st leg of the Al Fahaheel Team 1?", "context": "CREATE TABLE table_name_11 (team_1 VARCHAR)"}, {"answer": "SELECT ground FROM table_name_7 WHERE away = \"central blues\"", "question": "What is the Ground with an Away that is central blues?", "context": "CREATE TABLE table_name_7 (ground VARCHAR, away VARCHAR)"}, {"answer": "SELECT away FROM table_name_28 WHERE time = \"14:00\"", "question": "What is the Away with a Time that is 14:00?", "context": "CREATE TABLE table_name_28 (away VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE time = \"18:45\"", "question": "What is the Date with a Time that is 18:45?", "context": "CREATE TABLE table_name_6 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE date = \"2008-06-28\"", "question": "What is the Score with a Date that is 2008-06-28?", "context": "CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_5 WHERE club = \"omonia nicosia\"", "question": "Which player was in the Omonia Nicosia club?", "context": "CREATE TABLE table_name_5 (player VARCHAR, club VARCHAR)"}, {"answer": "SELECT league FROM table_name_20 WHERE nationality = \"italy\" AND points = \"62\"", "question": "Which league's nationality was Italy when there were 62 points?", "context": "CREATE TABLE table_name_20 (league VARCHAR, nationality VARCHAR, points VARCHAR)"}, {"answer": "SELECT lost FROM table_name_86 WHERE tries_for = \"47\"", "question": "What is the value for the item \"Lost\" when the value \"Tries\" is 47?", "context": "CREATE TABLE table_name_86 (lost VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_16 WHERE played = \"18\" AND points_against = \"375\"", "question": "What is the value for the item \"Tries\" when the value of the item \"Played\" is 18 and the value of the item \"Points\" is 375?", "context": "CREATE TABLE table_name_16 (tries_for VARCHAR, played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_62 WHERE points_against = \"272\"", "question": "What is the value of the item \"Points\" when the value of the item \"Points against\" is 272?", "context": "CREATE TABLE table_name_62 (points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT AVG(height__cm_) FROM table_name_52 WHERE birthplace = \"bloomfield hills, michigan\"", "question": "Which Height (cm) has a Birthplace of bloomfield hills, michigan?", "context": "CREATE TABLE table_name_52 (height__cm_ INTEGER, birthplace VARCHAR)"}, {"answer": "SELECT COUNT(height__cm_) FROM table_name_52 WHERE birthplace = \"new canaan, connecticut\"", "question": "Which Height (cm) has a Birthplace of new canaan, connecticut?", "context": "CREATE TABLE table_name_52 (height__cm_ VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT class FROM table_name_60 WHERE number_at_lincoln < 1 AND wheel_arrangement = \"0-6-0\"", "question": "Which Class has a Number at Lincoln smaller than 1 and a Wheel Arrangement of 0-6-0?", "context": "CREATE TABLE table_name_60 (class VARCHAR, number_at_lincoln VARCHAR, wheel_arrangement VARCHAR)"}, {"answer": "SELECT class FROM table_name_88 WHERE number_at_lincoln > 0 AND number_at_doncaster = 8", "question": "Which Class has a Number at Lincoln larger than 0 and a Number at Doncaster of 8?", "context": "CREATE TABLE table_name_88 (class VARCHAR, number_at_lincoln VARCHAR, number_at_doncaster VARCHAR)"}, {"answer": "SELECT loss FROM table_name_94 WHERE name = \"boris picano-nacci\"", "question": "What was the loss for Boris Picano-Nacci?", "context": "CREATE TABLE table_name_94 (loss VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE year < 1994 AND partner = \"elizabeth sayers smylie\"", "question": "Which Score has smaller than 1994, and a Partner of elizabeth sayers smylie?", "context": "CREATE TABLE table_name_54 (score VARCHAR, year VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_94 WHERE outcome = \"winner\" AND year < 1993 AND score = \"6\u20134, 6\u20132\"", "question": "Who was the Partner that was a winner, a Year smaller than 1993, and a Score of 6\u20134, 6\u20132?", "context": "CREATE TABLE table_name_94 (partner VARCHAR, score VARCHAR, outcome VARCHAR, year VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_1 WHERE margin_of_victory = \"1 stroke\" AND winning_score = \"69-75-71-70\"", "question": "What tournament had a victory of a 1 stroke margin and the final winning score 69-75-71-70?", "context": "CREATE TABLE table_name_1 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT loera FROM table_name_47 WHERE source = \"surveyusa\" AND date = \"may 16\u2013may 18, 2008\"", "question": "Which Loera has a Source of surveyusa, and a Date of may 16\u2013may 18, 2008?", "context": "CREATE TABLE table_name_47 (loera VARCHAR, source VARCHAR, date VARCHAR)"}, {"answer": "SELECT goberman FROM table_name_63 WHERE date = \"april 28\u2013april 30, 2008\"", "question": "Which Goberman has a Date of april 28\u2013april 30, 2008?", "context": "CREATE TABLE table_name_63 (goberman VARCHAR, date VARCHAR)"}, {"answer": "SELECT neville FROM table_name_62 WHERE novick = \"23%\"", "question": "Which Neville has a Novick of 23%?", "context": "CREATE TABLE table_name_62 (neville VARCHAR, novick VARCHAR)"}, {"answer": "SELECT goberman FROM table_name_9 WHERE obrist = \"2%\" AND merkley = \"34%\"", "question": "Which Goberman has an Obrist of 2%, and a Merkley of 34%?", "context": "CREATE TABLE table_name_9 (goberman VARCHAR, obrist VARCHAR, merkley VARCHAR)"}, {"answer": "SELECT novick FROM table_name_59 WHERE source = \"surveyusa\" AND neville = \"8%\"", "question": "Which Novick has a Source of surveyusa, and a Neville of 8%?", "context": "CREATE TABLE table_name_59 (novick VARCHAR, source VARCHAR, neville VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE novick = \"26%\"", "question": "Which Date has a Novick of 26%?", "context": "CREATE TABLE table_name_48 (date VARCHAR, novick VARCHAR)"}, {"answer": "SELECT coach FROM table_name_72 WHERE big_ten = \"2nd (79)\"", "question": "What is the Coach with a Big Ten that is 2nd (79)?", "context": "CREATE TABLE table_name_72 (coach VARCHAR, big_ten VARCHAR)"}, {"answer": "SELECT season FROM table_name_6 WHERE big_ten = \"2nd (386)\"", "question": "What is the Season with a Big Ten that is 2nd (386)?", "context": "CREATE TABLE table_name_6 (season VARCHAR, big_ten VARCHAR)"}, {"answer": "SELECT coach FROM table_name_92 WHERE big_ten = \"3rd (278)\"", "question": "What is the Coach with a Big Ten that is 3rd (278)?", "context": "CREATE TABLE table_name_92 (coach VARCHAR, big_ten VARCHAR)"}, {"answer": "SELECT coach FROM table_name_39 WHERE big_ten = \"1st (148)\"", "question": "What is the Coach with a Big Ten that is 1st (148)?", "context": "CREATE TABLE table_name_39 (coach VARCHAR, big_ten VARCHAR)"}, {"answer": "SELECT SUM(first_season) FROM table_name_71 WHERE wins = 1537 AND seasons > 109", "question": "What is the total of First Season games with 1537 Wins and a Season greater than 109?", "context": "CREATE TABLE table_name_71 (first_season INTEGER, wins VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_29 WHERE losses > 980 AND first_season < 1906 AND college = \"washington state\" AND rank > 42", "question": "How many wins were there for Washington State College with losses greater than 980 and a first season before 1906 and rank greater than 42?", "context": "CREATE TABLE table_name_29 (wins VARCHAR, rank VARCHAR, college VARCHAR, losses VARCHAR, first_season VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_87 WHERE losses < 992 AND college = \"north carolina state\" AND seasons > 101", "question": "What is the total number of rank with losses less than 992, North Carolina State College and a season greater than 101?", "context": "CREATE TABLE table_name_87 (rank VARCHAR, seasons VARCHAR, losses VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_77 WHERE silver = 1 AND rank < 6 AND gold < 6", "question": "What is the total number of bronzes associated with 1 silver, ranks under 6 and under 6 golds?", "context": "CREATE TABLE table_name_77 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_77 WHERE silver > 0 AND rank = 7", "question": "What is the highest number of bronzes for teams ranked number 7 with more than 0 silver?", "context": "CREATE TABLE table_name_77 (bronze INTEGER, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_39 WHERE gold > 1 AND rank > 3 AND bronze > 3", "question": "What is the average total for teams with more than 1 gold, ranked over 3 and more than 3 bronze?", "context": "CREATE TABLE table_name_39 (total INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_82 WHERE gold > 2 AND rank < 3 AND silver < 22", "question": "What is the sum of bronzes for teams with more than 2 gold, ranked under 3, and less than 22 silver?", "context": "CREATE TABLE table_name_82 (bronze INTEGER, silver VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_98 WHERE rank > 3 AND total < 2", "question": "What is the sum of silvers for teams with ranks over 3 and totals under 2?", "context": "CREATE TABLE table_name_98 (silver INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_47 WHERE team = \"maccabi tel aviv\" AND rebounds < 208", "question": "What is the number of Games for the Maccabi Tel Aviv Team with less than 208 Rebounds?", "context": "CREATE TABLE table_name_47 (games INTEGER, team VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT SUM(rebounds) FROM table_name_6 WHERE name = \"novica veli\u010dkovi\u0107\" AND games < 22", "question": "How many Rebounds did Novica Veli\u010dkovi\u0107 get in less than 22 Games?", "context": "CREATE TABLE table_name_6 (rebounds INTEGER, name VARCHAR, games VARCHAR)"}, {"answer": "SELECT games FROM table_name_57 WHERE name = \"terence morris\"", "question": "How many Games for Terence Morris?", "context": "CREATE TABLE table_name_57 (games VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_25 WHERE team = \"partizan belgrade\" AND name = \"nikola pekovi\u0107\" AND rank > 4", "question": "What is the number of Games for Partizan Belgrade player Nikola Pekovi\u0107 with a Rank of more than 4?", "context": "CREATE TABLE table_name_25 (games INTEGER, rank VARCHAR, team VARCHAR, name VARCHAR)"}, {"answer": "SELECT year FROM table_name_55 WHERE rank = \"#4\" AND country = \"us\"", "question": "Which year's rank was #4 when the country was the US?", "context": "CREATE TABLE table_name_55 (year VARCHAR, rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT publication FROM table_name_75 WHERE country = \"uk\"", "question": "Which publication happened in the UK?", "context": "CREATE TABLE table_name_75 (publication VARCHAR, country VARCHAR)"}, {"answer": "SELECT rank FROM table_name_96 WHERE country = \"us\" AND accolade = \"40 best albums of the year\"", "question": "Which rank's country is the US when the accolade is 40 best albums of the year?", "context": "CREATE TABLE table_name_96 (rank VARCHAR, country VARCHAR, accolade VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_32 WHERE name = \"hms cheshire\"", "question": "What is the nationality of the HMS Cheshire?", "context": "CREATE TABLE table_name_32 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_81 WHERE opponent_in_the_final = \"guillermo vilas\" AND date > 1972", "question": "What was the final score with Guillermo Vilas as the opponent in the final, that happened after 1972?", "context": "CREATE TABLE table_name_81 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT points FROM table_name_56 WHERE driver = \"paul tracy\"", "question": "Which points has the driver Paul Tracy?", "context": "CREATE TABLE table_name_56 (points VARCHAR, driver VARCHAR)"}, {"answer": "SELECT grid FROM table_name_54 WHERE laps = 78 AND driver = \"ronnie bremer\"", "question": "What grid has 78 laps, and Ronnie Bremer as driver?", "context": "CREATE TABLE table_name_54 (grid VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_21 WHERE grid = 10", "question": "Who scored with a grid of 10 and the highest amount of laps?", "context": "CREATE TABLE table_name_21 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT fourth FROM table_name_93 WHERE event = \"2008 telstra men's pro\"", "question": "Who was Fourth in the 2008 Telstra Men's Pro Event?", "context": "CREATE TABLE table_name_93 (fourth VARCHAR, event VARCHAR)"}, {"answer": "SELECT winner FROM table_name_26 WHERE fourth = \"selby riddle\"", "question": "Who was the Winner when Selby Riddle came in Fourth?", "context": "CREATE TABLE table_name_26 (winner VARCHAR, fourth VARCHAR)"}, {"answer": "SELECT second FROM table_name_31 WHERE fourth = \"isabelle brayley\"", "question": "Who was in Second Place with Isabelle Brayley came in Fourth?", "context": "CREATE TABLE table_name_31 (second VARCHAR, fourth VARCHAR)"}, {"answer": "SELECT AVG(total_freshwater_withdrawal__km_3__yr_) FROM table_name_5 WHERE industrial_use__m_3__p_yr__in__percentage_ = \"337(63%)\" AND per_capita_withdrawal__m_3__p_yr_ > 535", "question": "What is the average Total Freshwater Withdrawal (km 3 /yr), when Industrial Use (m 3 /p/yr)(in %) is 337(63%), and when Per Capita Withdrawal (m 3 /p/yr) is greater than 535?", "context": "CREATE TABLE table_name_5 (total_freshwater_withdrawal__km_3__yr_ INTEGER, industrial_use__m_3__p_yr__in__percentage_ VARCHAR, per_capita_withdrawal__m_3__p_yr_ VARCHAR)"}, {"answer": "SELECT MAX(per_capita_withdrawal__m_3__p_yr_) FROM table_name_22 WHERE agricultural_use__m_3__p_yr__in__percentage_ = \"1363(92%)\" AND total_freshwater_withdrawal__km_3__yr_ < 42.7", "question": "What is the highest Per Capita Withdrawal (m 3 /p/yr), when Agricultural Use (m 3 /p/yr)(in %) is 1363(92%), and when Total Freshwater Withdrawal (km 3 /yr) is less than 42.7?", "context": "CREATE TABLE table_name_22 (per_capita_withdrawal__m_3__p_yr_ INTEGER, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR, total_freshwater_withdrawal__km_3__yr_ VARCHAR)"}, {"answer": "SELECT agricultural_use__m_3__p_yr__in__percentage_ FROM table_name_7 WHERE per_capita_withdrawal__m_3__p_yr_ > 923 AND domestic_use__m_3__p_yr__in__percentage_ = \"73(7%)\"", "question": "What is Agricultural Use (m 3 /p/yr)(in %), when Per Capita Withdrawal (m 3 /p/yr) is greater than 923, and when Domestic Use (m 3 /p/yr)(in %) is 73(7%)?", "context": "CREATE TABLE table_name_7 (agricultural_use__m_3__p_yr__in__percentage_ VARCHAR, per_capita_withdrawal__m_3__p_yr_ VARCHAR, domestic_use__m_3__p_yr__in__percentage_ VARCHAR)"}, {"answer": "SELECT industrial_use__m_3__p_yr__in__percentage_ FROM table_name_32 WHERE total_freshwater_withdrawal__km_3__yr_ < 82.75 AND agricultural_use__m_3__p_yr__in__percentage_ = \"1363(92%)\"", "question": "What is Industrial Use (m 3 /p/yr)(in %), when Total Freshwater Withdrawal (km 3/yr) is less than 82.75, and when Agricultural Use (m 3 /p/yr)(in %) is 1363(92%)?", "context": "CREATE TABLE table_name_32 (industrial_use__m_3__p_yr__in__percentage_ VARCHAR, total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_54 WHERE home = \"warriors\"", "question": "Who was the leading score in the game at the Warriors?", "context": "CREATE TABLE table_name_54 (leading_scorer VARCHAR, home VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_38 WHERE top_10 = 11", "question": "How many average cuts made when 11 is the Top-10?", "context": "CREATE TABLE table_name_38 (cuts_made INTEGER, top_10 VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_31 WHERE top_5 = 1 AND wins < 0", "question": "When the wins are less than 0 and the Top-5 1 what is the average cuts?", "context": "CREATE TABLE table_name_31 (cuts_made INTEGER, top_5 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(top_10) FROM table_name_15 WHERE top_25 > 11 AND wins < 2", "question": "What is the average Top-10 with a greater than 11 Top-25 and a less than 2 wins?", "context": "CREATE TABLE table_name_15 (top_10 INTEGER, top_25 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_3 WHERE cuts_made = 76 AND events > 115", "question": "What is the total of wins when the cuts made is 76 and the events greater than 115?", "context": "CREATE TABLE table_name_3 (wins INTEGER, cuts_made VARCHAR, events VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_11 WHERE events < 21", "question": "What are the largest cuts made when the events are less than 21?", "context": "CREATE TABLE table_name_11 (cuts_made INTEGER, events INTEGER)"}, {"answer": "SELECT MIN(top_25) FROM table_name_94 WHERE events = 3 AND wins > 0", "question": "What is the lowest Top-25 that has 3 Events and Wins greater than 0?", "context": "CREATE TABLE table_name_94 (top_25 INTEGER, events VARCHAR, wins VARCHAR)"}, {"answer": "SELECT wins FROM table_name_66 WHERE top_25 = 1 AND events = 7", "question": "What is the Wins of the Top-25 of 1 and 7 Events?", "context": "CREATE TABLE table_name_66 (wins VARCHAR, top_25 VARCHAR, events VARCHAR)"}, {"answer": "SELECT MIN(top_25) FROM table_name_2 WHERE wins < 0", "question": "What is the lowest Top-25 with Wins less than 0?", "context": "CREATE TABLE table_name_2 (top_25 INTEGER, wins INTEGER)"}, {"answer": "SELECT COUNT(cuts_made) FROM table_name_81 WHERE events = 2", "question": "What is the total number of cuts made of tournaments with 2 Events?", "context": "CREATE TABLE table_name_81 (cuts_made VARCHAR, events VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_name_75 WHERE condition = \"congenital afibrinogenemia\"", "question": "Which Bleeding has a Condition of congenital afibrinogenemia?", "context": "CREATE TABLE table_name_75 (bleeding_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT partial_thromboplastin_time FROM table_name_61 WHERE condition = \"liver failure , early\"", "question": "which Partial thromboplastin time has a Condition of liver failure , early?", "context": "CREATE TABLE table_name_61 (partial_thromboplastin_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT condition FROM table_name_46 WHERE partial_thromboplastin_time = \"unaffected\" AND platelet_count = \"unaffected\" AND prothrombin_time = \"unaffected\"", "question": "Which Condition has an unaffected Partial thromboplastin time, Platelet count, and a Prothrombin time?", "context": "CREATE TABLE table_name_46 (condition VARCHAR, prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)"}, {"answer": "SELECT condition FROM table_name_73 WHERE prothrombin_time = \"unaffected\" AND bleeding_time = \"unaffected\" AND partial_thromboplastin_time = \"prolonged\"", "question": "Which Condition has an unaffected Prothrombin time and a Bleeding time, and a Partial thromboplastin time of prolonged?", "context": "CREATE TABLE table_name_73 (condition VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT margin FROM table_name_88 WHERE year > 1981 AND runner_s__up = \"roberto de vicenzo\"", "question": "What margin was in after 1981, and was Roberto De Vicenzo runner-up?", "context": "CREATE TABLE table_name_88 (margin VARCHAR, year VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT championship FROM table_name_30 WHERE year = 1985", "question": "What championship was in 1985?", "context": "CREATE TABLE table_name_30 (championship VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_39 WHERE total = 78 AND gold < 12", "question": "What is the number of bronze medals when the total medals were 78 and there were less than 12 golds?", "context": "CREATE TABLE table_name_39 (bronze INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_89 WHERE silver > 14 AND total = 1335 AND bronze > 469", "question": "What is the average number of gold medals when the total was 1335 medals, with more than 469 bronzes and more than 14 silvers?", "context": "CREATE TABLE table_name_89 (gold INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_22 WHERE silver > 20 AND bronze = 135", "question": "What is the total amount of gold medals when there were more than 20 silvers and there were 135 bronze medals?", "context": "CREATE TABLE table_name_22 (gold VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_85 WHERE nation = \"total\"", "question": "What is the average number of bronze medals for total of all nations?", "context": "CREATE TABLE table_name_85 (bronze INTEGER, nation VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_95 WHERE rank = \"14\"", "question": "What is the sum of gold medals for a rank of 14?", "context": "CREATE TABLE table_name_95 (gold INTEGER, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_38 WHERE silver = 1 AND gold > 1", "question": "Which rank has 1 silver medal and more than 1 gold medal?", "context": "CREATE TABLE table_name_38 (rank VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT clubs FROM table_name_3 WHERE number_of_fixtures = 4", "question": "What is the Clubs when there are 4 for the number of fixtures?", "context": "CREATE TABLE table_name_3 (clubs VARCHAR, number_of_fixtures VARCHAR)"}, {"answer": "SELECT SUM(number_of_fixtures) FROM table_name_65 WHERE round = \"quarter-finals\"", "question": "What is the sum of Number of fixtures when the rounds shows quarter-finals?", "context": "CREATE TABLE table_name_65 (number_of_fixtures INTEGER, round VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_name_18 WHERE round = \"semi-finals\"", "question": "What is the New entries this round when the round is the semi-finals?", "context": "CREATE TABLE table_name_18 (new_entries_this_round VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_31 WHERE number_of_fixtures > 2 AND main_date = \"7 and 28 november 2007\"", "question": "What is the Round when the number of fixtures is more than 2, and the Main date of 7 and 28 november 2007?", "context": "CREATE TABLE table_name_31 (round VARCHAR, number_of_fixtures VARCHAR, main_date VARCHAR)"}, {"answer": "SELECT AVG(events) FROM table_name_84 WHERE top_25 < 0", "question": "What is the event average for a top-25 smaller than 0?", "context": "CREATE TABLE table_name_84 (events INTEGER, top_25 INTEGER)"}, {"answer": "SELECT MAX(wins) FROM table_name_74 WHERE cuts_made < 6 AND events = 4 AND top_5 < 0", "question": "What are the highest wins with cuts smaller than 6, events of 4 and a top-5 smaller than 0?", "context": "CREATE TABLE table_name_74 (wins INTEGER, top_5 VARCHAR, cuts_made VARCHAR, events VARCHAR)"}, {"answer": "SELECT MIN(top_5) FROM table_name_62 WHERE top_25 > 4 AND cuts_made = 29 AND top_10 > 18", "question": "What are the lowest top-5 with a top-25 larger than 4, 29 cuts and a top-10 larger than 18?", "context": "CREATE TABLE table_name_62 (top_5 INTEGER, top_10 VARCHAR, top_25 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(top_25) FROM table_name_5 WHERE events < 42 AND tournament = \"u.s. open\" AND top_10 < 5", "question": "What is the lowest for top-25 with events smaller than 42 in a U.S. Open with a top-10 smaller than 5?", "context": "CREATE TABLE table_name_5 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT birthplace FROM table_name_70 WHERE height__in_ > 192 AND position = \"d\" AND birthdate = \"april 5, 1983\"", "question": "Which birthplace's height in inches was more than 192 when the position was d and the birthday was April 5, 1983?", "context": "CREATE TABLE table_name_70 (birthplace VARCHAR, birthdate VARCHAR, height__in_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_95 WHERE player = \"steve kerr\"", "question": "What nationality has steve kerr as the player?", "context": "CREATE TABLE table_name_95 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_64 WHERE nationality = \"united states\" AND school_club_team = \"concord hs\"", "question": "What years in Orlando have the United States as the nationality, with concord hs as the school/club team?", "context": "CREATE TABLE table_name_64 (years_in_orlando VARCHAR, nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_12 WHERE school_club_team = \"montana\"", "question": "Which player has montana as the school/club team?", "context": "CREATE TABLE table_name_12 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_70 WHERE player = \"jon koncak\"", "question": "What nationality has jon koncak as the player?", "context": "CREATE TABLE table_name_70 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_16 WHERE nationality = \"united states\" AND school_club_team = \"montana\"", "question": "What years in orlando have the United States as the nationality, and montana as the school/club team?", "context": "CREATE TABLE table_name_16 (years_in_orlando VARCHAR, nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_25 WHERE player = \"tim kempton\"", "question": "What school/club team has tim kempton as the player?", "context": "CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_66 WHERE opponent = \"pittsburgh steelers\"", "question": "In the game where they played the Pittsburgh Steelers, what was the attendance?", "context": "CREATE TABLE table_name_66 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_49 WHERE week < 9 AND attendance = \"61,626\"", "question": "In the game on or before week 9, who was the opponent when the attendance was 61,626?", "context": "CREATE TABLE table_name_49 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_65 WHERE date = \"november 20, 1994\"", "question": "On November 20, 1994, what was the result of the game?", "context": "CREATE TABLE table_name_65 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_name_31 WHERE team__number1 = \"deport\"", "question": "What is the team #2 with Deport as team #1?", "context": "CREATE TABLE table_name_31 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_18 WHERE team__number2 = \"junior\"", "question": "What is the 2nd leg for the team #2 junior?", "context": "CREATE TABLE table_name_18 (team__number2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_5 WHERE team__number2 = \"junior\"", "question": "What is the 1st leg with a junior team #2?", "context": "CREATE TABLE table_name_5 (team__number2 VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_9 WHERE bronze < 0", "question": "What is the rank with 0 bronze?", "context": "CREATE TABLE table_name_9 (rank INTEGER, bronze INTEGER)"}, {"answer": "SELECT COUNT(total) FROM table_name_46 WHERE gold > 2", "question": "What is the total where the gold is larger than 2?", "context": "CREATE TABLE table_name_46 (total VARCHAR, gold INTEGER)"}, {"answer": "SELECT MIN(gold) FROM table_name_42 WHERE silver = 2 AND total < 3", "question": "What is the smallest number of gold where the total is less than 3 and the silver count is 2?", "context": "CREATE TABLE table_name_42 (gold INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_26 WHERE drawn < 5 AND lost < 6 AND points > 36", "question": "Which Against has a Drawn smaller than 5, and a Lost smaller than 6, and a Points larger than 36?", "context": "CREATE TABLE table_name_26 (against VARCHAR, points VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_18 WHERE lost > 9 AND points < 15 AND position < 12 AND drawn < 2", "question": "Which Played has a Lost larger than 9, and a Points smaller than 15, and a Position smaller than 12, and a Drawn smaller than 2?", "context": "CREATE TABLE table_name_18 (played INTEGER, drawn VARCHAR, position VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_96 WHERE date = \"october 31, 1954\"", "question": "How many weeks have october 31, 1954 as the date?", "context": "CREATE TABLE table_name_96 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT party FROM table_name_61 WHERE took_office > 1993 AND senator = \"michael galloway\"", "question": "What party took office after 1993 with Senator Michael Galloway?", "context": "CREATE TABLE table_name_61 (party VARCHAR, took_office VARCHAR, senator VARCHAR)"}, {"answer": "SELECT took_office FROM table_name_17 WHERE senator = \"ken armbrister\"", "question": "What year did Senator Ken Armbrister take office?", "context": "CREATE TABLE table_name_17 (took_office VARCHAR, senator VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_91 WHERE total > 27", "question": "What is the sum of Bronze when the total is more than 27?", "context": "CREATE TABLE table_name_91 (bronze INTEGER, total INTEGER)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_93 WHERE gold > 1 AND nation = \"total\"", "question": "What is the total number of Bronze when gold is more than 1 and nation is total?", "context": "CREATE TABLE table_name_93 (bronze VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_1 WHERE rank = \"3\" AND total > 8", "question": "What is the average Bronze for rank 3 and total is more than 8?", "context": "CREATE TABLE table_name_1 (bronze INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_46 WHERE rank = \"2\"", "question": "What is the sum of Total when rank is 2?", "context": "CREATE TABLE table_name_46 (total INTEGER, rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_62 WHERE total < 27 AND gold < 1 AND bronze > 1", "question": "What is the Nation when there is a total less than 27, gold is less than 1, and bronze is more than 1?", "context": "CREATE TABLE table_name_62 (nation VARCHAR, bronze VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(year_commissioned) FROM table_name_64 WHERE average_annual_output__million_kwh_ > 58 AND installed_capacity__megawatts_ = 20", "question": "What is the earliest Year commissioned wiht an Average annual output greater than 58 and Installed capacity of 20?", "context": "CREATE TABLE table_name_64 (year_commissioned INTEGER, average_annual_output__million_kwh_ VARCHAR, installed_capacity__megawatts_ VARCHAR)"}, {"answer": "SELECT AVG(average_annual_output__million_kwh_) FROM table_name_12 WHERE name = \"culligran\" AND installed_capacity__megawatts_ < 19", "question": "What is the Average annual output for Culligran power station with an Installed capacity less than 19?", "context": "CREATE TABLE table_name_12 (average_annual_output__million_kwh_ INTEGER, name VARCHAR, installed_capacity__megawatts_ VARCHAR)"}, {"answer": "SELECT AVG(year_commissioned) FROM table_name_58 WHERE gross_head__metres_ < 18", "question": "What is the Year Commissioned of the power stationo with a Gross head of less than 18?", "context": "CREATE TABLE table_name_58 (year_commissioned INTEGER, gross_head__metres_ INTEGER)"}, {"answer": "SELECT MAX(year_commissioned) FROM table_name_75 WHERE gross_head__metres_ = 60 AND average_annual_output__million_kwh_ < 59", "question": "What is the Year commissioned of the power station with a Gross head of 60 metres and Average annual output of less than 59 million KWh?", "context": "CREATE TABLE table_name_75 (year_commissioned INTEGER, gross_head__metres_ VARCHAR, average_annual_output__million_kwh_ VARCHAR)"}, {"answer": "SELECT SUM(area__km\u00b2_) FROM table_name_19 WHERE density___km\u00b2_ > 462 AND official_website = \"http://krishna.nic.in/\"", "question": "What is the sum of the area values for districts having density over 462 and websites of http://krishna.nic.in/?", "context": "CREATE TABLE table_name_19 (area__km\u00b2_ INTEGER, density___km\u00b2_ VARCHAR, official_website VARCHAR)"}, {"answer": "SELECT valvetrain FROM table_name_94 WHERE \"engine_model\" = \"engine_model\"", "question": "What is the valvetrain with an engine model that is engine model?", "context": "CREATE TABLE table_name_94 (valvetrain VARCHAR)"}, {"answer": "SELECT position FROM table_name_36 WHERE school_club_team = \"vanderbilt\"", "question": "What is the Position of the player from Vanderbilt?", "context": "CREATE TABLE table_name_36 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_80 WHERE player = \"stephen thompson\"", "question": "What is Stephen Thompson's School/Club Team?", "context": "CREATE TABLE table_name_80 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(spike) FROM table_name_78 WHERE date_of_birth = \"28.09.1981\" AND block > 318", "question": "How many spikes have 28.09.1981 as the date of birth, with a block greater than 318?", "context": "CREATE TABLE table_name_78 (spike INTEGER, date_of_birth VARCHAR, block VARCHAR)"}, {"answer": "SELECT dvd_release_date FROM table_name_74 WHERE season < 8 AND episodes < 13", "question": "On what date was the DVD released for the season with fewer than 13 episodes that aired before season 8?", "context": "CREATE TABLE table_name_74 (dvd_release_date VARCHAR, season VARCHAR, episodes VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_14 WHERE match_no > 43 AND score = \"2-4\"", "question": "After Match 43, what was the Attendance of the Match with a Score of 2-4?", "context": "CREATE TABLE table_name_14 (attendance INTEGER, match_no VARCHAR, score VARCHAR)"}, {"answer": "SELECT semi_finalists FROM table_name_25 WHERE runner_up = \"gigi fern\u00e1ndez natalia zvereva\" AND week_of = \"26 june 2 weeks\"", "question": "When the runner-up is listed as Gigi Fern\u00e1ndez Natalia Zvereva and the week is 26 June 2 weeks, who are the semi finalists?", "context": "CREATE TABLE table_name_25 (semi_finalists VARCHAR, runner_up VARCHAR, week_of VARCHAR)"}, {"answer": "SELECT winner FROM table_name_71 WHERE week_of = \"26 june 2 weeks\" AND runner_up = \"arantxa s\u00e1nchez vicario\"", "question": "Who is the winner in the week listed as 26 June 2 weeks, when the runner-up is Arantxa S\u00e1nchez Vicario?", "context": "CREATE TABLE table_name_71 (winner VARCHAR, week_of VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT semi_finalists FROM table_name_43 WHERE week_of = \"12 june\" AND runner_up = \"lori mcneil\"", "question": "Who are the semi finalists on the week of 12 june, when the runner-up is listed as Lori McNeil?", "context": "CREATE TABLE table_name_43 (semi_finalists VARCHAR, week_of VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT winner FROM table_name_79 WHERE tier = \"tier iii\"", "question": "When the Tier is listed as tier iii, who is the Winner?", "context": "CREATE TABLE table_name_79 (winner VARCHAR, tier VARCHAR)"}, {"answer": "SELECT week_of FROM table_name_71 WHERE winner = \"jana novotn\u00e1 arantxa s\u00e1nchez vicario 5\u20137, 7\u20135, 6\u20134\"", "question": "In which week is the winner listed as Jana Novotn\u00e1 Arantxa S\u00e1nchez Vicario 5\u20137, 7\u20135, 6\u20134?", "context": "CREATE TABLE table_name_71 (week_of VARCHAR, winner VARCHAR)"}, {"answer": "SELECT player FROM table_name_16 WHERE years_in_orlando = \"2005\"", "question": "Who was the Player that spent the Year 2005 in Orlando?", "context": "CREATE TABLE table_name_16 (player VARCHAR, years_in_orlando VARCHAR)"}, {"answer": "SELECT position FROM table_name_79 WHERE player = \"britton johnsen\"", "question": "What was the Position of the Player, Britton Johnsen?", "context": "CREATE TABLE table_name_79 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_54 WHERE position = \"guard-forward\"", "question": "Who was the Player that had the Position, guard-forward?", "context": "CREATE TABLE table_name_54 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT features FROM table_name_18 WHERE datacenter = \"yes\"", "question": "Which Features have Yes listed under Datacenter?", "context": "CREATE TABLE table_name_18 (features VARCHAR, datacenter VARCHAR)"}, {"answer": "SELECT datacenter FROM table_name_62 WHERE standard = \"no\" AND itanium = \"yes\" AND features = \"fault tolerant memory sync\"", "question": "What is the Datacenter for the Fault Tolerant Memory Sync Feature that has Yes for Itanium and No for Standard?", "context": "CREATE TABLE table_name_62 (datacenter VARCHAR, features VARCHAR, standard VARCHAR, itanium VARCHAR)"}, {"answer": "SELECT foundation FROM table_name_17 WHERE enterprise = \"2\"", "question": "Which Foundation has an Enterprise of 2?", "context": "CREATE TABLE table_name_17 (foundation VARCHAR, enterprise VARCHAR)"}, {"answer": "SELECT datacenter FROM table_name_85 WHERE itanium = \"yes\" AND features = \"memory modules: hot addition\"", "question": "What is the Datacenter for the Memory modules: hot addition Feature that has Yes listed for Itanium?", "context": "CREATE TABLE table_name_85 (datacenter VARCHAR, itanium VARCHAR, features VARCHAR)"}, {"answer": "SELECT enterprise FROM table_name_1 WHERE datacenter = \"yes\" AND features = \"memory modules: hot replacement\"", "question": "What is the Enterprise for teh memory modules: hot replacement Feature that has a Datacenter of Yes?", "context": "CREATE TABLE table_name_1 (enterprise VARCHAR, datacenter VARCHAR, features VARCHAR)"}, {"answer": "SELECT datacenter FROM table_name_85 WHERE features = \"network access connections: rras\"", "question": "What Datacenter is listed against the network access connections: rras Feature?", "context": "CREATE TABLE table_name_85 (datacenter VARCHAR, features VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_87 WHERE multi_1 = \"13.5x\"", "question": "What is the L2 cache with a 13.5x multi 1?", "context": "CREATE TABLE table_name_87 (l2_cache VARCHAR, multi_1 VARCHAR)"}, {"answer": "SELECT socket FROM table_name_34 WHERE release_date = \"september 10, 2009\" AND order_part_number = \"amm300dbo22gq\"", "question": "What is the socket with an order part number of amm300dbo22gq and a September 10, 2009 release date?", "context": "CREATE TABLE table_name_34 (socket VARCHAR, release_date VARCHAR, order_part_number VARCHAR)"}, {"answer": "SELECT order_part_number FROM table_name_61 WHERE multi_1 = \"12.5x\"", "question": "What is the order part number with a 12.5x multi 1?", "context": "CREATE TABLE table_name_61 (order_part_number VARCHAR, multi_1 VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_17 WHERE order_part_number = \"tmm500dbo22gq\"", "question": "What is the frequency of the tmm500dbo22gq order part number?", "context": "CREATE TABLE table_name_17 (frequency VARCHAR, order_part_number VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_80 WHERE release_date = \"september 10, 2009\" AND fpu_width = \"128-bit\" AND multi_1 = \"12x\"", "question": "What is the L2 cache with a release date on September 10, 2009, a 128-bit FPU width, and a 12x multi 1?", "context": "CREATE TABLE table_name_80 (l2_cache VARCHAR, multi_1 VARCHAR, release_date VARCHAR, fpu_width VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_48 WHERE l2_cache = \"2x 512 kb\" AND multi_1 = \"11x\" AND fpu_width = \"128-bit\"", "question": "What is the release date of the 2x 512 kb L2 cache with a 11x multi 1, and a FPU width of 128-bit?", "context": "CREATE TABLE table_name_48 (release_date VARCHAR, fpu_width VARCHAR, l2_cache VARCHAR, multi_1 VARCHAR)"}, {"answer": "SELECT player FROM table_name_56 WHERE college = \"alberta\"", "question": "What Player has a College that is alberta?", "context": "CREATE TABLE table_name_56 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_79 WHERE player = \"jermaine romans\"", "question": "What College has a Player that is jermaine romans?", "context": "CREATE TABLE table_name_79 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE date = \"28 february 1953\" AND tie_no = \"3\"", "question": "Which Score has a Date of 28 february 1953, and a Tie no of 3?", "context": "CREATE TABLE table_name_14 (score VARCHAR, date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_77 WHERE score = \"0\u20131\" AND away_team = \"tottenham hotspur\"", "question": "Which Home team has a Score of 0\u20131, and an Away team of tottenham hotspur?", "context": "CREATE TABLE table_name_77 (home_team VARCHAR, score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_22 WHERE tie_no = \"1\"", "question": "Which Score has a Tie no of 1?", "context": "CREATE TABLE table_name_22 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_57 WHERE away_team = \"everton\"", "question": "Which Home team has an Away team of everton?", "context": "CREATE TABLE table_name_57 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_95 WHERE score = \"0\u20131\" AND date = \"9 march 1953\"", "question": "Which Tie no has a Score of 0\u20131, and a Date of 9 march 1953?", "context": "CREATE TABLE table_name_95 (tie_no VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE home_team = \"aston villa\"", "question": "Which Score has a Home team of aston villa?", "context": "CREATE TABLE table_name_20 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT language FROM table_name_16 WHERE television_service = \"canale aste\"", "question": "What is the Language for Canale Aste?", "context": "CREATE TABLE table_name_16 (language VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT country FROM table_name_48 WHERE television_service = \"reteconomy\"", "question": "What is the Country with Reteconomy as the Television service?", "context": "CREATE TABLE table_name_48 (country VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT hdtv FROM table_name_84 WHERE content = \"documentaries\"", "question": "What is the HDTV when documentaries are the content?", "context": "CREATE TABLE table_name_84 (hdtv VARCHAR, content VARCHAR)"}, {"answer": "SELECT language FROM table_name_86 WHERE television_service = \"reteconomy\"", "question": "What is the Language when the Reteconomy is the television service?", "context": "CREATE TABLE table_name_86 (language VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT hdtv FROM table_name_77 WHERE television_service = \"rai nettuno sat uno\"", "question": "What is the HDTV for the Rai Nettuno Sat Uno Television service?", "context": "CREATE TABLE table_name_77 (hdtv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_93 WHERE result = \"l 13\u201310\" AND date = \"november 30, 1975\" AND attendance > 44 OFFSET 982", "question": "What is the lowest Week when the result was l 13\u201310, November 30, 1975, with more than 44,982 people in attendance?", "context": "CREATE TABLE table_name_93 (week INTEGER, attendance VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_93 WHERE opponent = \"los angeles rams\" AND attendance > 37 OFFSET 382", "question": "What is the highest Week when the opponent was the los angeles rams, with more than 37,382 in Attendance?", "context": "CREATE TABLE table_name_93 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_54 WHERE opponent = \"kansas city chiefs\" AND attendance > 26 OFFSET 469", "question": "What is the highest Week when the opponent was kansas city chiefs, with more than 26,469 in attendance?", "context": "CREATE TABLE table_name_54 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_19 WHERE result = \"l 6\u20130\"", "question": "What is the lowest Week when the result was l 6\u20130?", "context": "CREATE TABLE table_name_19 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_83 WHERE result = \"w 28\u201320\" AND attendance > 46 OFFSET 888", "question": "What is the average Week when the result was w 28\u201320, and there were more than 46,888 in attendance?", "context": "CREATE TABLE table_name_83 (week INTEGER, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(overs) FROM table_name_61 WHERE runs = 18", "question": "What is the lowest Overs with a Run that is 18?", "context": "CREATE TABLE table_name_61 (overs INTEGER, runs VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE away_team = \"charlton athletic\"", "question": "What score has charlton athletic as the away team?", "context": "CREATE TABLE table_name_83 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_45 WHERE away_team = \"coventry city\"", "question": "What home team has coventry city as the away team?", "context": "CREATE TABLE table_name_45 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_7 WHERE round < 6 AND player = \"kenneth green\"", "question": "What is the average Pick when the round was less than 6 for kenneth green?", "context": "CREATE TABLE table_name_7 (pick INTEGER, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_68 WHERE matches < 228", "question": "What average goals have matches less than 228?", "context": "CREATE TABLE table_name_68 (goals INTEGER, matches INTEGER)"}, {"answer": "SELECT SUM(goals) / matches FROM table_name_27 WHERE goals = 153 AND matches > 352", "question": "How many goals/matches have 153 as the goals with matches greater than 352?", "context": "CREATE TABLE table_name_27 (matches VARCHAR, goals INTEGER)"}, {"answer": "SELECT MIN(goals) FROM table_name_37 WHERE goals / matches > 0.43 AND name = \"joachim streich\" AND matches > 378", "question": "What are the lowest goal that have goals/matches greater than 0.43 with joachim streich as the name and matches greater than 378?", "context": "CREATE TABLE table_name_37 (goals INTEGER, matches VARCHAR, name VARCHAR)"}, {"answer": "SELECT years FROM table_name_70 WHERE goals < 229 AND matches = 440", "question": "What years have goals less than 229, and 440 as matches?", "context": "CREATE TABLE table_name_70 (years VARCHAR, goals VARCHAR, matches VARCHAR)"}, {"answer": "SELECT winner FROM table_name_26 WHERE runner_up = \"both teams awarded championship after a draw.\"", "question": "What team was the winner when the runner-up shows both teams awarded championship after a draw.?", "context": "CREATE TABLE table_name_26 (winner VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE winner = \"suntory sungoliath\" AND attendance = \"n/a\"", "question": "What is the Score when the winner was suntory sungoliath, and the number attendance was n/a?", "context": "CREATE TABLE table_name_86 (score VARCHAR, winner VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_41 WHERE runner_up = \"suntory sungoliath\" AND title = \"46th\"", "question": "What is the Attendance number when the runner-up was suntory sungoliath, and a Title of 46th?", "context": "CREATE TABLE table_name_41 (attendance VARCHAR, runner_up VARCHAR, title VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_67 WHERE title = \"44th\"", "question": "What is the Attendance number for the title of 44th?", "context": "CREATE TABLE table_name_67 (attendance VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_37 WHERE winner = \"suntory sungoliath\" AND season = \"2011-12 details\"", "question": "What is the Title when the winner was suntory sungoliath, and a Season of 2011-12 details?", "context": "CREATE TABLE table_name_37 (title VARCHAR, winner VARCHAR, season VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE winner = \"sanyo wild knights\" AND runner_up = \"suntory sungoliath\"", "question": "What is the Score when the winner was sanyo wild knights, and a Runner-up of suntory sungoliath?", "context": "CREATE TABLE table_name_39 (score VARCHAR, winner VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT position FROM table_name_22 WHERE pick__number < 278 AND player = \"charles benson\"", "question": "Which Position has a Pick # lower than 278 for Player Charles Benson?", "context": "CREATE TABLE table_name_22 (position VARCHAR, pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_31 WHERE pick__number < 223 AND position = \"defensive end\"", "question": "Which Player has a Pick # lower than 223 and a Defensive End Position?", "context": "CREATE TABLE table_name_31 (player VARCHAR, pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_84 WHERE position = \"running back\"", "question": "If the Position is Running Back what is the Total number of Pick #?", "context": "CREATE TABLE table_name_84 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_name_63 WHERE pick__number > 195 AND player = \"mark brown\"", "question": "Which College has Player Mark Brown and a Pick # greater than 195?", "context": "CREATE TABLE table_name_63 (college VARCHAR, pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_88 WHERE drawn < 0", "question": "What was the average Position for which the amount Drawn was less than 0?", "context": "CREATE TABLE table_name_88 (position INTEGER, drawn INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_75 WHERE difference = \"13\" AND lost > 3", "question": "What was the total number of Points when the value Difference was 13, and when the value Lost was greater than 3?", "context": "CREATE TABLE table_name_75 (points INTEGER, difference VARCHAR, lost VARCHAR)"}, {"answer": "SELECT winner FROM table_name_1 WHERE winning_song = \"kemenangan cinta\"", "question": "Who won with the song kemenangan cinta?", "context": "CREATE TABLE table_name_1 (winner VARCHAR, winning_song VARCHAR)"}, {"answer": "SELECT winning_song FROM table_name_32 WHERE debut_album = \"in progress\"", "question": "Which winning song had a debut album in progress?", "context": "CREATE TABLE table_name_32 (winning_song VARCHAR, debut_album VARCHAR)"}, {"answer": "SELECT debut_album FROM table_name_93 WHERE season = \"season 2 (2005)\"", "question": "Which album debuted in season 2 (2005)?", "context": "CREATE TABLE table_name_93 (debut_album VARCHAR, season VARCHAR)"}, {"answer": "SELECT WINNING_SONG(English AS Title) FROM table_name_7 WHERE winner = \"aris runtuwene\"", "question": "Which English winning song had the winner aris runtuwene?", "context": "CREATE TABLE table_name_7 (English VARCHAR, winner VARCHAR)"}, {"answer": "SELECT WINNING_SONG(English AS Title) FROM table_name_65 WHERE winning_song = \"aku tetap milikmu\"", "question": "Which winning song was sung by aku tetap milikmu?", "context": "CREATE TABLE table_name_65 (English VARCHAR, winning_song VARCHAR)"}, {"answer": "SELECT MAX(profits__billion_) AS $_ FROM table_name_14 WHERE company = \"walmart\"", "question": "Name the highest Profits (billion $) which has a Company of walmart?", "context": "CREATE TABLE table_name_14 (profits__billion_ INTEGER, company VARCHAR)"}, {"answer": "SELECT SUM(assets__billion_) AS $_ FROM table_name_8 WHERE industry = \"oil and gas\" AND rank = 9 AND market_value__billion_$_ > 121.7", "question": "How many Assets (billion $) has an Industry of oil and gas, and a Rank of 9, and a Market Value (billion $) larger than 121.7?", "context": "CREATE TABLE table_name_8 (assets__billion_ INTEGER, market_value__billion_$_ VARCHAR, industry VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(profits__billion_) AS $_ FROM table_name_14 WHERE sales__billion_$_ = 425.7 AND rank > 4", "question": "Name the lowest Profits (billion $) which has a Sales (billion $) of 425.7, and a Rank larger than 4?", "context": "CREATE TABLE table_name_14 (profits__billion_ INTEGER, sales__billion_$_ VARCHAR, rank 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", "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 sales__billion_$_ FROM table_name_70 WHERE company = \"exxonmobil\"", "question": "Name the Sales (billion $) which have a Company of exxonmobil?", "context": "CREATE TABLE table_name_70 (sales__billion_$_ VARCHAR, company VARCHAR)"}, {"answer": "SELECT winner FROM table_name_76 WHERE win__number > 1 AND points < 94", "question": "What is Winner, when Win # is greater than 1, and when Points is less than 94?", "context": "CREATE TABLE table_name_76 (winner VARCHAR, win__number VARCHAR, points VARCHAR)"}, {"answer": "SELECT playoff_result FROM table_name_45 WHERE winner = \"alaska aces\" AND win__number > 1 AND points < 106 AND year = \"2011-12\"", "question": "What is Playoff Result, when Winner is \"Alaska Aces\", when Win # is greater than 1, when Points is less than 106, and when Year is \"2011-12\"?", "context": "CREATE TABLE table_name_45 (playoff_result VARCHAR, year VARCHAR, points VARCHAR, winner VARCHAR, win__number VARCHAR)"}, {"answer": "SELECT MIN(win__number) FROM table_name_27 WHERE year = \"2011-12\" AND points < 97", "question": "What is the lowest Win #, when Year is \"2011-12\", and when Points is less than 97?", "context": "CREATE TABLE table_name_27 (win__number INTEGER, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(win__number) FROM table_name_87 WHERE winner = \"knoxville cherokees\" AND playoff_result = \"lost 1st round ( lou )\" AND points < 94", "question": "What is the highest Win #, when Winner is \"Knoxville Cherokees\", when Playoff Result is \"Lost 1st Round ( LOU )\", and when Points is less than 94?", "context": "CREATE TABLE table_name_87 (win__number INTEGER, points VARCHAR, winner VARCHAR, playoff_result VARCHAR)"}, {"answer": "SELECT winner FROM table_name_42 WHERE finalist = \"lindsay davenport\"", "question": "Who was the winner against Lindsay Davenport?", "context": "CREATE TABLE table_name_42 (winner VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_7 WHERE tournament = \"miami\"", "question": "Who was the finalist in Miami?", "context": "CREATE TABLE table_name_7 (finalist VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winner FROM table_name_92 WHERE finalist = \"lina krasnoroutskaya\"", "question": "Who was the winner against finalist Lina Krasnoroutskaya?", "context": "CREATE TABLE table_name_92 (winner VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE away_team = \"carlisle united\"", "question": "What was the date when the away team was carlisle united?", "context": "CREATE TABLE table_name_50 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE away_team = \"leeds united\"", "question": "What was the date when the away team was the leeds united?", "context": "CREATE TABLE table_name_3 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_35 WHERE away_team = \"peterborough united\"", "question": "What was the tie number when peterborough united was the away team?", "context": "CREATE TABLE table_name_35 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_6 WHERE to_par = \"e\" AND country = \"united states\"", "question": "What player has E as the to par, and The United States as the country?", "context": "CREATE TABLE table_name_6 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_91 WHERE country = \"united states\" AND score = 70", "question": "What player has The United States as the country with 70 as the score?", "context": "CREATE TABLE table_name_91 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_9 WHERE country = \"united states\" AND place = \"t2\"", "question": "What player has The United States as the country, with t2 as the place?", "context": "CREATE TABLE table_name_9 (player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_3 WHERE to_par = \"e\" AND player = \"mark wiebe\"", "question": "What place has E as the to par, with Mark Wiebe as the player?", "context": "CREATE TABLE table_name_3 (place VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_name_95 WHERE joined_prsl = 2008 AND home_city = \"carolina 1\"", "question": "When is the club founded that founed prsl in 2008 and the home city is carolina 1?", "context": "CREATE TABLE table_name_95 (founded INTEGER, joined_prsl VARCHAR, home_city VARCHAR)"}, {"answer": "SELECT club FROM table_name_85 WHERE founded < 2007 AND joined_prsl = 2008 AND stadium = \"yldefonso sol\u00e1 morales stadium\"", "question": "what is the club that was founded before 2007, joined prsl in 2008 and the stadium is yldefonso sol\u00e1 morales stadium?", "context": "CREATE TABLE table_name_85 (club VARCHAR, stadium VARCHAR, founded VARCHAR, joined_prsl VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_name_51 WHERE home_city = \"mayag\u00fcez\"", "question": "what is the earliest founded when the home city is mayag\u00fcez?", "context": "CREATE TABLE table_name_51 (founded INTEGER, home_city VARCHAR)"}, {"answer": "SELECT MAX(joined_prsl) FROM table_name_31 WHERE founded = 2007 AND stadium = \"roberto clemente stadium 1\"", "question": "when is the latest to join prsl when founded in 2007 and the stadium is roberto clemente stadium 1?", "context": "CREATE TABLE table_name_31 (joined_prsl INTEGER, founded VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT year FROM table_name_56 WHERE champion = \"akron goodyear wingfoots\" AND runner_up = \"real madrid\"", "question": "What year was the International Cup that was won by Akron Goodyear Wingfoots and had Real Madrid as runner-up?", "context": "CREATE TABLE table_name_56 (year VARCHAR, champion VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_7 WHERE country = \"united states\" AND to_par > 14", "question": "In what year did the United States win To par greater than 14", "context": "CREATE TABLE table_name_7 (year_s__won VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_25 WHERE country = \"south africa\" AND to_par > 14", "question": "What is the total that South Africa had a par greater than 14", "context": "CREATE TABLE table_name_25 (total INTEGER, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_54 WHERE total < 153", "question": "What is the highest to par that is less than 153", "context": "CREATE TABLE table_name_54 (to_par INTEGER, total INTEGER)"}, {"answer": "SELECT AVG(attendance) FROM table_name_78 WHERE date = \"september 17, 1981\"", "question": "What is the average Attendance, when the Date is September 17, 1981?", "context": "CREATE TABLE table_name_78 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_80 WHERE opponent = \"tampa bay buccaneers\"", "question": "What is the Attendance, when the Opponent is the Tampa Bay Buccaneers?", "context": "CREATE TABLE table_name_80 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(points_) FROM table_name_56 WHERE sets_ > 51", "question": "What is the total number of Points- when the Sets- is larger than 51?", "context": "CREATE TABLE table_name_56 (points_ VARCHAR, sets_ INTEGER)"}, {"answer": "SELECT developer FROM table_name_96 WHERE year_of_release = \"cancelled\"", "question": "Which developer has a year of cancelled releases?", "context": "CREATE TABLE table_name_96 (developer VARCHAR, year_of_release VARCHAR)"}, {"answer": "SELECT publisher FROM table_name_60 WHERE year_of_release = \"2000\" AND original_platforms = \"dreamcast\"", "question": "Which publisher has release year of 2000 and an original dreamcast platform?", "context": "CREATE TABLE table_name_60 (publisher VARCHAR, year_of_release VARCHAR, original_platforms VARCHAR)"}, {"answer": "SELECT publisher FROM table_name_19 WHERE name = \"spec ops: stealth patrol\"", "question": "Which publisher is responsible for spec ops: stealth patrol?", "context": "CREATE TABLE table_name_19 (publisher VARCHAR, name VARCHAR)"}, {"answer": "SELECT connection FROM table_name_62 WHERE web_client_accelerator = \"proxyconn web accelerator\"", "question": "What is the connection for the proxyconn web accelerator web client accelerator?", "context": "CREATE TABLE table_name_62 (connection VARCHAR, web_client_accelerator VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE region = \"europe\" AND catalog = \"28765 22392 8\"", "question": "What's the Date with the Region of Europe and has a Catalog of 28765 22392 8?", "context": "CREATE TABLE table_name_13 (date VARCHAR, region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_51 WHERE date = \"29 july 1997\"", "question": "What's listed for the Label with a Date of 29 July 1997?", "context": "CREATE TABLE table_name_51 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE region = \"europe\" AND catalog = \"28765 22392 8\"", "question": "What's the Date for the Region of Europe and has the Catalog of 28765 22392 8?", "context": "CREATE TABLE table_name_70 (date VARCHAR, region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_86 WHERE region = \"europe\" AND catalog = \"74321 45851 2\"", "question": "What Format has the Region of Europe and a Catalog of 74321 45851 2?", "context": "CREATE TABLE table_name_86 (format VARCHAR, region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_84 WHERE region = \"australia\"", "question": "What Label has the Region of Australia?", "context": "CREATE TABLE table_name_84 (label VARCHAR, region VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE region = \"europe\" AND catalog = \"74321 45851 2\"", "question": "What Date has the Region Europe and a Catalog of 74321 45851 2?", "context": "CREATE TABLE table_name_33 (date VARCHAR, region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT SUM(poles) FROM table_name_40 WHERE series = \"formula three euroseries\" AND season = \"2008\" AND f_laps > 0", "question": "How many poles are there in the Formula Three Euroseries in the 2008 season with more than 0 F/Laps?", "context": "CREATE TABLE table_name_40 (poles INTEGER, f_laps VARCHAR, series VARCHAR, season VARCHAR)"}, {"answer": "SELECT series FROM table_name_57 WHERE points = \"11\"", "question": "Which series has 11 points?", "context": "CREATE TABLE table_name_57 (series VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(poles) FROM table_name_45 WHERE season = \"2009\" AND races = 2 AND f_laps > 0", "question": "How many poles are there in the 2009 season with 2 races and more than 0 F/Laps?", "context": "CREATE TABLE table_name_45 (poles VARCHAR, f_laps VARCHAR, season VARCHAR, races VARCHAR)"}, {"answer": "SELECT SUM(races) FROM table_name_2 WHERE series = \"formula three euroseries\" AND team = \"signature\"", "question": "How many races did the Formula Three Euroseries signature team have?", "context": "CREATE TABLE table_name_2 (races INTEGER, series VARCHAR, team VARCHAR)"}, {"answer": "SELECT title FROM table_name_48 WHERE studio = \"embassy pictures\"", "question": "What is Title, when Studio is \"Embassy Pictures\"?", "context": "CREATE TABLE table_name_48 (title VARCHAR, studio VARCHAR)"}, {"answer": "SELECT studio FROM table_name_49 WHERE title = \"do not disturb\"", "question": "What is Studio, when Title is \"Do Not Disturb\"?", "context": "CREATE TABLE table_name_49 (studio VARCHAR, title VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_63 WHERE director = \"henry hathaway\"", "question": "What is the highest Rank, when Director is \"Henry Hathaway\"?", "context": "CREATE TABLE table_name_63 (rank INTEGER, director VARCHAR)"}, {"answer": "SELECT country FROM table_name_26 WHERE to_par < 5 AND player = \"sam snead\"", "question": "What Country is Player Sam Snead with a To par of less than 5 from?", "context": "CREATE TABLE table_name_26 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_37 WHERE player = \"claude harmon\"", "question": "What is Claude Harmon's Place?", "context": "CREATE TABLE table_name_37 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_81 WHERE to_par > 6 AND player = \"johnny palmer\"", "question": "What is the Johnny Palmer with a To larger than 6 Money sum?", "context": "CREATE TABLE table_name_81 (money___ INTEGER, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_84 WHERE series = \"western conference finals\"", "question": "What is the attendance of the western conference finals series?", "context": "CREATE TABLE table_name_84 (attendance VARCHAR, series VARCHAR)"}, {"answer": "SELECT Leading AS scorer FROM table_name_96 WHERE series = \"wnba finals\"", "question": "Who is the leading scorer of the wnba finals series?", "context": "CREATE TABLE table_name_96 (Leading VARCHAR, series VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_97 WHERE home_team = \"birmingham city\"", "question": "Which Tie is from birmingham city?", "context": "CREATE TABLE table_name_97 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_89 WHERE home_team = \"everton\"", "question": "Which Tie is from everton?", "context": "CREATE TABLE table_name_89 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(u_wins) FROM table_name_52 WHERE alianza_wins > 0 AND alianza_goals > 25 AND draws = 99", "question": "What is the lowest U Wins, when Alianza Wins is greater than 0, when Alianza Goals is greater than 25, and when Draws is \"99\"?", "context": "CREATE TABLE table_name_52 (u_wins INTEGER, draws VARCHAR, alianza_wins VARCHAR, alianza_goals VARCHAR)"}, {"answer": "SELECT SUM(alianza_wins) FROM table_name_97 WHERE alianza_goals = 317 AND u_goals > 296", "question": "What is the sum of Alianza Wins, when Alianza Goals is \"317, and when U Goals is greater than 296?", "context": "CREATE TABLE table_name_97 (alianza_wins INTEGER, alianza_goals VARCHAR, u_goals VARCHAR)"}, {"answer": "SELECT COUNT(u_wins) FROM table_name_25 WHERE alianza_goals = 0 AND u_goals > 3", "question": "What is the total number of U Wins, when Alianza Goals is \"0\", and when U Goals is greater than 3?", "context": "CREATE TABLE table_name_25 (u_wins VARCHAR, alianza_goals VARCHAR, u_goals VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_3 WHERE alianza_goals < 317 AND u_goals < 3 AND alianza_wins < 2", "question": "What is the lowest Draws, when Alianza Goals is less than 317, when U Goals is less than 3, and when Alianza Wins is less than 2?", "context": "CREATE TABLE table_name_3 (draws INTEGER, alianza_wins VARCHAR, alianza_goals VARCHAR, u_goals VARCHAR)"}, {"answer": "SELECT SUM(to_par) FROM table_name_65 WHERE player = \"bob rosburg\"", "question": "What is the total of all to par with player Bob Rosburg?", "context": "CREATE TABLE table_name_65 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_4 WHERE place = \"t1\" AND player = \"jack fleck\"", "question": "Which money has player Jack Fleck with t1 place?", "context": "CREATE TABLE table_name_4 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_38 WHERE player = \"bud holscher\"", "question": "What is average to par when Bud Holscher is the player?", "context": "CREATE TABLE table_name_38 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_81 WHERE score = 73 - 65 = 138", "question": "What is the name of the golfer that has the score of 73-65=138?", "context": "CREATE TABLE table_name_81 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_43 WHERE player = \"frank nobilo\"", "question": "Frank Nobilo plays for what country?", "context": "CREATE TABLE table_name_43 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(appearance) FROM table_name_32 WHERE goals > 0", "question": "what is the lowest appearance when goals is more than 0?", "context": "CREATE TABLE table_name_32 (appearance INTEGER, goals INTEGER)"}, {"answer": "SELECT SUM(appearance) FROM table_name_33 WHERE goals > 0", "question": "what is the sum of appearance when goals is more than 0?", "context": "CREATE TABLE table_name_33 (appearance INTEGER, goals INTEGER)"}, {"answer": "SELECT AVG(tries) FROM table_name_55 WHERE season = \"2008 warrington wolves\" AND appearance > 7", "question": "what is the average tries for the season 2008 warrington wolves with an appearance more than 7?", "context": "CREATE TABLE table_name_55 (tries INTEGER, season VARCHAR, appearance VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_51 WHERE tries = 0 AND appearance < 0", "question": "How many times is tries 0 and appearance less than 0?", "context": "CREATE TABLE table_name_51 (points VARCHAR, tries VARCHAR, appearance VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_19 WHERE worldwide_gross = \"$183,031,272\"", "question": "What is the Rank of the Film with a Worldwide Gross of $183,031,272?", "context": "CREATE TABLE table_name_19 (rank INTEGER, worldwide_gross VARCHAR)"}, {"answer": "SELECT title FROM table_name_25 WHERE rank > 11 AND worldwide_gross = \"$131,002,597\"", "question": "What is the Title of the Film with a Rank greater than 11 and Worldwide Gross of $131,002,597?", "context": "CREATE TABLE table_name_25 (title VARCHAR, rank VARCHAR, worldwide_gross VARCHAR)"}, {"answer": "SELECT worldwide_gross FROM table_name_38 WHERE rank = 3", "question": "What is the Worldwide Gross of the Film with a Rank of 3?", "context": "CREATE TABLE table_name_38 (worldwide_gross VARCHAR, rank VARCHAR)"}, {"answer": "SELECT worldwide_gross FROM table_name_68 WHERE rank = 16", "question": "What is the Worldwide Gross of the Film with a Rank of 16?", "context": "CREATE TABLE table_name_68 (worldwide_gross VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(long) FROM table_name_59 WHERE loss > 390 AND gain < 1 OFFSET 405", "question": "When the player gained below 1,405 yards and lost over 390 yards, what's the sum of the long yards?", "context": "CREATE TABLE table_name_59 (long INTEGER, loss VARCHAR, gain VARCHAR)"}, {"answer": "SELECT SUM(long) FROM table_name_26 WHERE loss < 390 AND avg_g = 2 AND gain > 29", "question": "When the Gain is 29, and the average per game is 2, and the player lost less than 390 yards, what's the sum of the Long yards?", "context": "CREATE TABLE table_name_26 (long INTEGER, gain VARCHAR, loss VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_90 WHERE name = \"charley barnes\" AND pick < 3", "question": "How many overalls have charley barnes as the name, with a pick less than 3?", "context": "CREATE TABLE table_name_90 (overall INTEGER, name VARCHAR, pick VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_87 WHERE name = \"john o'day\" AND pick < 3", "question": "How many rounds have john o'day as the name, and a pick less than 3?", "context": "CREATE TABLE table_name_87 (round INTEGER, name VARCHAR, pick VARCHAR)"}, {"answer": "SELECT airport FROM table_name_76 WHERE iata = \"arn\"", "question": "What airport has an IATA of ARN?", "context": "CREATE TABLE table_name_76 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT country FROM table_name_85 WHERE icao = \"enzv\"", "question": "What country has an ICAO of ENZV?", "context": "CREATE TABLE table_name_85 (country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_68 WHERE icao = \"bgbw\"", "question": "What airport has an ICAP of BGBW?", "context": "CREATE TABLE table_name_68 (airport VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_16 WHERE icao = \"birk\"", "question": "What airport has an ICAO of Birk?", "context": "CREATE TABLE table_name_16 (airport VARCHAR, icao VARCHAR)"}, {"answer": "SELECT icao FROM table_name_7 WHERE country = \"denmark\" AND iata = \"bll\"", "question": "What is the ICAO for Denmark, and the IATA is bll?", "context": "CREATE TABLE table_name_7 (icao VARCHAR, country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_60 WHERE name = \"ron hansen\" AND overall > 332", "question": "What is the number of the round in which Ron Hansen was drafted and the overall is greater than 332?", "context": "CREATE TABLE table_name_60 (round VARCHAR, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_71 WHERE name = \"george rosso\" AND overall < 296", "question": "What pick did George Rosso get drafted when the overall was less than 296?", "context": "CREATE TABLE table_name_71 (pick VARCHAR, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT name FROM table_name_86 WHERE date_from = \"2008-02-21\"", "question": "What was the name for the row with Date From of 2008-02-21?", "context": "CREATE TABLE table_name_86 (name VARCHAR, date_from VARCHAR)"}, {"answer": "SELECT date_from FROM table_name_30 WHERE date_to = \"end of season\" AND name = \"theo robinson\"", "question": "What was the Date From for Theo Robinson, who was with the team until the end of season?", "context": "CREATE TABLE table_name_30 (date_from VARCHAR, date_to VARCHAR, name VARCHAR)"}, {"answer": "SELECT date_from FROM table_name_81 WHERE position = \"mf\" AND name = \"toumani diagouraga\"", "question": "What date did Toumani Diagouraga, who played position MF, start?", "context": "CREATE TABLE table_name_81 (date_from VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_18 WHERE opponent = \"klas akesson\"", "question": "What is the average round against opponent Klas Akesson?", "context": "CREATE TABLE table_name_18 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_5 WHERE opponent = \"minnesota vikings\"", "question": "What is the highest week that was played against the Minnesota Vikings?", "context": "CREATE TABLE table_name_5 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_26 WHERE week = 6", "question": "Which opponent was played in Week 6?", "context": "CREATE TABLE table_name_26 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE location_attendance = \"seattle center coliseum 11,497\"", "question": "WhichScore has a Location Attendance of seattle center coliseum 11,497?", "context": "CREATE TABLE table_name_15 (score VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_36 WHERE team = \"portland trail blazers\"", "question": "Which Game has a Team of portland trail blazers?", "context": "CREATE TABLE table_name_36 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_4 WHERE date = \"march 2\"", "question": "Which game was played on march 2?", "context": "CREATE TABLE table_name_4 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_97 WHERE high_assists = \"s. threatt (9)\"", "question": "Which Game has High assists of s. threatt (9)?", "context": "CREATE TABLE table_name_97 (game INTEGER, high_assists VARCHAR)"}, {"answer": "SELECT SUM(pop__2004_) FROM table_name_15 WHERE governorate = \"al mahrah\" AND area_km\u00b2 < 78 OFFSET 073", "question": "Count the sum of Pop (2004) which has a Governorate of al mahrah with an Area km\u00b2 smaller than 78,073?", "context": "CREATE TABLE table_name_15 (pop__2004_ INTEGER, governorate VARCHAR, area_km\u00b2 VARCHAR)"}, {"answer": "SELECT SUM(pop__2004_) FROM table_name_48 WHERE governorate = \"al mahwit\"", "question": "How many Pop (2004) has a Governorate of al mahwit?", "context": "CREATE TABLE table_name_48 (pop__2004_ INTEGER, governorate VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_98 WHERE high_points = \"allen iverson (23)\"", "question": "What is Location Attendance, when High Points is \"Allen Iverson (23)\"?", "context": "CREATE TABLE table_name_98 (location_attendance VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_78 WHERE team = \"milwaukee\"", "question": "What is the average Game, when Team is \"Milwaukee\"?", "context": "CREATE TABLE table_name_78 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_5 WHERE game = 5", "question": "What is High Points, when Game is \"5\"?", "context": "CREATE TABLE table_name_5 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_18 WHERE game < 10 AND high_assists = \"chauncey billups (8)\"", "question": "What is High Points, when Game is less than 10, and when High Assists is \"Chauncey Billups (8)\"?", "context": "CREATE TABLE table_name_18 (high_points VARCHAR, game VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT team FROM table_name_46 WHERE game = 38", "question": "What is the Team in Game 38?", "context": "CREATE TABLE table_name_46 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_13 WHERE score = \"129\u2013105\"", "question": "What Game had a Score of 129\u2013105?", "context": "CREATE TABLE table_name_13 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_97 WHERE game = 41", "question": "What is the Team in Game 41?", "context": "CREATE TABLE table_name_97 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT streak FROM table_name_42 WHERE record = \"20\u201316\"", "question": "What is the Streak in the game with a Record of 20\u201316?", "context": "CREATE TABLE table_name_42 (streak VARCHAR, record VARCHAR)"}, {"answer": "SELECT team FROM table_name_97 WHERE date = \"january 20\"", "question": "What is the Team on January 20?", "context": "CREATE TABLE table_name_97 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_16 WHERE season = 1963 AND date = \"17 november 1963\"", "question": "What venue had an event on 17 November 1963?", "context": "CREATE TABLE table_name_16 (venue VARCHAR, season VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_43 WHERE date = \"27 october 1957\"", "question": "What is the most recent season with a date of 27 October 1957?", "context": "CREATE TABLE table_name_43 (season INTEGER, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_6 WHERE date = \"15 december 1957\"", "question": "Who was the winner on 15 December 1957?", "context": "CREATE TABLE table_name_6 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_[c_] FROM table_name_76 WHERE winner = \"alianza lima\" AND season = 1965", "question": "What is the score of the event that Alianza Lima won in 1965?", "context": "CREATE TABLE table_name_76 (score_ VARCHAR, c_ VARCHAR, winner VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(seasons) FROM table_name_98 WHERE name = \"joe grugin\" AND lost > 8", "question": "Which Seasons has a Name of joe grugin, and a Lost larger than 8?", "context": "CREATE TABLE table_name_98 (seasons VARCHAR, name VARCHAR, lost VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_23 WHERE record = \"9-2\"", "question": "what is the location/attendance when the record is 9-2?", "context": "CREATE TABLE table_name_23 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_75 WHERE date = \"june 29\"", "question": "what is the game on june 29?", "context": "CREATE TABLE table_name_75 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_42 WHERE date = \"june 8\"", "question": "who had the high points on june 8?", "context": "CREATE TABLE table_name_42 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_41 WHERE game < 13 AND score = \"w 75-66\"", "question": "who had the high assists when the game was less than 13 and the score was w 75-66?", "context": "CREATE TABLE table_name_41 (high_assists VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_64 WHERE nominee = \"frank langella\"", "question": "What was the result of Frank Langella?", "context": "CREATE TABLE table_name_64 (result VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT SUM(goals_against) FROM table_name_14 WHERE goals_for > 10 AND position = 3 AND wins < 6", "question": "Can you tell me the sum of Goals against that has the Goals for larger than 10, and the Position of 3, and the Wins smaller than 6?", "context": "CREATE TABLE table_name_14 (goals_against INTEGER, wins VARCHAR, goals_for VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_90 WHERE position > 2 AND draws < 2 AND goals_against < 18", "question": "Can you tell me the lowest Played that has the Position larger than 2, and the Draws smaller than 2, and the Goals against smaller than 18?", "context": "CREATE TABLE table_name_90 (played INTEGER, goals_against VARCHAR, position VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_48 WHERE draws > 0 AND points = 11", "question": "Can you tell me the total number of Wins that has the Draws larger than 0, and the Points of 11?", "context": "CREATE TABLE table_name_48 (wins VARCHAR, draws VARCHAR, points VARCHAR)"}, {"answer": "SELECT city FROM table_name_32 WHERE floors = 35", "question": "In what city does the tallest building have 35 floors?", "context": "CREATE TABLE table_name_32 (city VARCHAR, floors VARCHAR)"}, {"answer": "SELECT name FROM table_name_56 WHERE city = \"louisville\" AND floors > 35", "question": "What building in Louisville had more than 35 floors?", "context": "CREATE TABLE table_name_56 (name VARCHAR, city VARCHAR, floors VARCHAR)"}, {"answer": "SELECT venue FROM table_name_11 WHERE goal__number = 2", "question": "What was the venue where goal #2 occured?", "context": "CREATE TABLE table_name_11 (venue VARCHAR, goal__number VARCHAR)"}, {"answer": "SELECT record FROM table_name_63 WHERE visitor = \"florida\"", "question": "What was the flyers' record when the visitors were florida?", "context": "CREATE TABLE table_name_63 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_76 WHERE home = \"ny rangers\"", "question": "Who were the visitors when the home team were the ny rangers?", "context": "CREATE TABLE table_name_76 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT car___motorcycle FROM table_name_14 WHERE speed = \"91.813mph\"", "question": "What car/motorcycle goes 91.813mph?", "context": "CREATE TABLE table_name_14 (car___motorcycle VARCHAR, speed VARCHAR)"}, {"answer": "SELECT driver___rider FROM table_name_58 WHERE car___motorcycle = \"indian\"", "question": "Which driver is Indian?", "context": "CREATE TABLE table_name_58 (driver___rider VARCHAR, car___motorcycle VARCHAR)"}, {"answer": "SELECT full_word FROM table_name_46 WHERE case_suffix__case_ = \"-sa (dative)\"", "question": "What is the Full Word, when Case Suffix (case) is \"-sa (dative)\"?", "context": "CREATE TABLE table_name_46 (full_word VARCHAR, case_suffix__case_ VARCHAR)"}, {"answer": "SELECT english_meaning FROM table_name_22 WHERE full_word = \"shens gamo\"", "question": "What is English Meaning, when Full Word is \"Shens Gamo\"?", "context": "CREATE TABLE table_name_22 (english_meaning VARCHAR, full_word VARCHAR)"}, {"answer": "SELECT case_suffix__case_ FROM table_name_54 WHERE english_meaning = \"to georgia, in georgia\"", "question": "What is Case Suffix (Case), when English Meaning is \"to Georgia, in Georgia\"?", "context": "CREATE TABLE table_name_54 (case_suffix__case_ VARCHAR, english_meaning VARCHAR)"}, {"answer": "SELECT postposition FROM table_name_75 WHERE noun_root__meaning_ = \"mshobl- (parent)\"", "question": "What is Postposition, when Noun Root (Meaning) is \"mshobl- (parent)\"?", "context": "CREATE TABLE table_name_75 (postposition VARCHAR, noun_root__meaning_ VARCHAR)"}, {"answer": "SELECT english_meaning FROM table_name_40 WHERE case_suffix__case_ = \"-sa (dative)\"", "question": "What is English Meaning, when Case Suffix (Case) is \"-sa (dative)\"?", "context": "CREATE TABLE table_name_40 (english_meaning VARCHAR, case_suffix__case_ VARCHAR)"}, {"answer": "SELECT case_suffix__case_ FROM table_name_94 WHERE postposition = \"-mde (drops d)\"", "question": "What is Case Suffix (Case), when Postposition is \"-mde (drops d)\"?", "context": "CREATE TABLE table_name_94 (case_suffix__case_ VARCHAR, postposition VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_5 WHERE album = \"roots and branches\"", "question": "What is the total years for roots and branches?", "context": "CREATE TABLE table_name_5 (year INTEGER, album VARCHAR)"}, {"answer": "SELECT AVG(podiums) FROM table_name_64 WHERE position = \"32nd\" AND wins < 0", "question": "What is the average number of podiums in the 32nd position with less than 0 wins?", "context": "CREATE TABLE table_name_64 (podiums INTEGER, position VARCHAR, wins VARCHAR)"}, {"answer": "SELECT races FROM table_name_43 WHERE position = \"8th\"", "question": "What is the race in the 8th position?", "context": "CREATE TABLE table_name_43 (races VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_22 WHERE college = \"arkansas state\" AND pick < 17", "question": "What is the sum of Overall, when College is \"Arkansas State\", and when Pick is less than 17?", "context": "CREATE TABLE table_name_22 (overall INTEGER, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_30 WHERE name = \"lybrant robinson\" AND overall < 139", "question": "What is the average Pick, when Name is \"Lybrant Robinson\", and when Overall is less than 139?", "context": "CREATE TABLE table_name_30 (pick INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_22 WHERE name = \"tim smiley\" AND round < 5", "question": "What is the sum of Overall, when Name is \"Tim Smiley\", and when Round is less than 5?", "context": "CREATE TABLE table_name_22 (overall INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_96 WHERE championship = \"athens , greece\" AND outcome = \"winner\"", "question": "What is Score In The Final, when Championship is \"Athens , Greece\", and when Outcome is \"Winner\"?", "context": "CREATE TABLE table_name_96 (score_in_the_final VARCHAR, championship VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_30 WHERE date < 1991 AND outcome = \"runner-up\"", "question": "What is Opponent In The Final, when Date is before 1991, and when Outcome is \"Runner-Up\"?", "context": "CREATE TABLE table_name_30 (opponent_in_the_final VARCHAR, date VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT religious_affiliation FROM table_name_34 WHERE athletics_nickname = \"lords/ladies\"", "question": "What was the religious affiliation for the athletics nicknamed lords/ladies?", "context": "CREATE TABLE table_name_34 (religious_affiliation VARCHAR, athletics_nickname VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_73 WHERE career_sr = \"atp masters series\"", "question": "What is Tournament, when Career SR is \"ATP Masters Series\"?", "context": "CREATE TABLE table_name_73 (tournament VARCHAR, career_sr VARCHAR)"}, {"answer": "SELECT 1995 FROM table_name_36 WHERE tournament = \"miami\"", "question": "What is 1995, when Tournament is \"Miami\"?", "context": "CREATE TABLE table_name_36 (tournament VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_63 WHERE 1996 = \"1r\" AND 1990 = \"2r\" AND 1991 = \"f\"", "question": "What is 1997, when 1996 is \"1R\", when 1990 is \"2R\", and when 1991 is \"F\"?", "context": "CREATE TABLE table_name_63 (Id VARCHAR)"}, {"answer": "SELECT 1996 FROM table_name_29 WHERE 1992 = \"atp masters series\"", "question": "What is 1996, when 1992 is \"ATP Masters Series\"?", "context": "CREATE TABLE table_name_29 (Id VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_59 WHERE 1991 = \"qf\" AND tournament = \"australian open\"", "question": "What is 1994, when 1991 is \"QF\", and when Tournament is \"Australian Open\"?", "context": "CREATE TABLE table_name_59 (tournament VARCHAR)"}, {"answer": "SELECT MAX(established) FROM table_name_45 WHERE venue = \"nassau veterans memorial coliseum\"", "question": "When was the venue named nassau veterans memorial coliseum established??", "context": "CREATE TABLE table_name_45 (established INTEGER, venue VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_23 WHERE record = \"15-21-6\"", "question": "Who was the opponent with the record of 15-21-6?", "context": "CREATE TABLE table_name_23 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(january) FROM table_name_70 WHERE opponent = \"@ montreal canadiens\" AND game > 49", "question": "What day in January was the game greater than 49 and had @ Montreal Canadiens as opponents?", "context": "CREATE TABLE table_name_70 (january INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_75 WHERE january = 20", "question": "What was the total number of games on January 20?", "context": "CREATE TABLE table_name_75 (game VARCHAR, january VARCHAR)"}, {"answer": "SELECT votes___percentage_ FROM table_name_14 WHERE episode = \"1x03\"", "question": "What is Votes (%), when Episode is \"1x03\"?", "context": "CREATE TABLE table_name_14 (votes___percentage_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT votes___percentage_ FROM table_name_41 WHERE first_broadcast = \"13 march 1998\"", "question": "What is Votes (%), when First Broadcast is \"13 March 1998\"?", "context": "CREATE TABLE table_name_41 (votes___percentage_ VARCHAR, first_broadcast VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_4 WHERE high_assists = \"deron williams (5)\"", "question": "Who had the high rebounds of the game that Deron Williams (5) had the high assists?", "context": "CREATE TABLE table_name_4 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE game = 48", "question": "What was the score of Game 48?", "context": "CREATE TABLE table_name_33 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_68 WHERE date = \"january 24\"", "question": "Who had the high rebounds on January 24?", "context": "CREATE TABLE table_name_68 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(area) FROM table_name_31 WHERE pop_dens = 113 AND population > 184 OFFSET 531", "question": "How big is the area that has a population density of 113 and a population larger than 184,531?", "context": "CREATE TABLE table_name_31 (area VARCHAR, pop_dens VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(pop_dens) FROM table_name_83 WHERE population > 92 OFFSET 719", "question": "What is the population density of the area with a population larger than 92,719?", "context": "CREATE TABLE table_name_83 (pop_dens VARCHAR, population INTEGER)"}, {"answer": "SELECT MIN(population) FROM table_name_44 WHERE area = 1 OFFSET 126.84", "question": "What is the population with an area of 1,126.84?", "context": "CREATE TABLE table_name_44 (population INTEGER, area VARCHAR)"}, {"answer": "SELECT SUM(noof_settlements) FROM table_name_76 WHERE district = \"\u010desk\u00fd krumlov (ck)\" AND pop_dens > 38", "question": "How many settlements are in \u010desk\u00fd krumlov (ck) with a population density higher than 38?", "context": "CREATE TABLE table_name_76 (noof_settlements INTEGER, district VARCHAR, pop_dens VARCHAR)"}, {"answer": "SELECT MIN(pop_dens) FROM table_name_66 WHERE district = \"strakonice (st)\" AND noof_settlements > 112", "question": "What is the lowest population density of Strakonice (st) with more than 112 settlements?", "context": "CREATE TABLE table_name_66 (pop_dens INTEGER, district VARCHAR, noof_settlements VARCHAR)"}, {"answer": "SELECT name FROM table_name_11 WHERE presentation_of_credentials = \"unknown\"", "question": "Who presented their credentials at an unknown date?", "context": "CREATE TABLE table_name_11 (name VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT presentation_of_credentials FROM table_name_62 WHERE name = \"robert g. miner\"", "question": "When did Robert G. Miner present his credentials?", "context": "CREATE TABLE table_name_62 (presentation_of_credentials VARCHAR, name VARCHAR)"}, {"answer": "SELECT appointment FROM table_name_31 WHERE name = \"william a. costello\"", "question": "When was William A. Costello appointed?", "context": "CREATE TABLE table_name_31 (appointment VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE appointment = \"october 24, 1997\"", "question": "Who was appointed on October 24, 1997?", "context": "CREATE TABLE table_name_63 (name VARCHAR, appointment VARCHAR)"}, {"answer": "SELECT title FROM table_name_14 WHERE name = \"anthony d. marshall\"", "question": "What was Anthony D. Marshall's title?", "context": "CREATE TABLE table_name_14 (title VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_44 WHERE position = \"g\" AND pick > 26", "question": "What is Nationality, when Position is \"G\", and when Pick is greater than 26?", "context": "CREATE TABLE table_name_44 (nationality VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_49 WHERE round = 2 AND school_club_team = \"xavier\"", "question": "What is Player, when Round is \"2\", and when School/Club Team is \"Xavier\"?", "context": "CREATE TABLE table_name_49 (player VARCHAR, round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_39 WHERE position = \"g/f\"", "question": "What is the highest Pick, when Position is \"G/F\"?", "context": "CREATE TABLE table_name_39 (pick INTEGER, position VARCHAR)"}, {"answer": "SELECT AVG(place) FROM table_name_49 WHERE points = 69 AND draw < 13", "question": "What was the average place for the song that had 69 points and a draw smaller than 13?", "context": "CREATE TABLE table_name_49 (place INTEGER, points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT english_translation FROM table_name_77 WHERE artist = \"svetlana loboda\"", "question": "What was the english translation for the song by svetlana loboda?", "context": "CREATE TABLE table_name_77 (english_translation VARCHAR, artist VARCHAR)"}, {"answer": "SELECT song FROM table_name_98 WHERE language = \"french\"", "question": "What song was in french?", "context": "CREATE TABLE table_name_98 (song VARCHAR, language VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_96 WHERE \"drawn\" = \"drawn\"", "question": "what is the points against when drawn is drawn?", "context": "CREATE TABLE table_name_96 (points_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_32 WHERE losing_bonus = \"0\" AND club = \"banwen rfc\"", "question": "what is the points against when the losing bonus is 0 and the club is banwen rfc?", "context": "CREATE TABLE table_name_32 (points_against VARCHAR, losing_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT points FROM table_name_62 WHERE club = \"blaengarw rfc\"", "question": "what is the points when the club blaengarw rfc?", "context": "CREATE TABLE table_name_62 (points VARCHAR, club VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_47 WHERE losing_bonus = \"losing bonus\"", "question": "what is the tries fow when losing bonus is losing bonus?", "context": "CREATE TABLE table_name_47 (tries_for VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_80 WHERE club = \"hirwaun rfc\"", "question": "what is drawn when the club is hirwaun rfc?", "context": "CREATE TABLE table_name_80 (drawn VARCHAR, club VARCHAR)"}, {"answer": "SELECT lost FROM table_name_28 WHERE points_against = \"231\"", "question": "what is lost when the points against is 231?", "context": "CREATE TABLE table_name_28 (lost VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_18 WHERE home_team = \"sheffield united\"", "question": "Who was the away team against the home team Sheffield United?", "context": "CREATE TABLE table_name_18 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_4 WHERE tie_no = \"14\"", "question": "Who was the away team with a tie of 14?", "context": "CREATE TABLE table_name_4 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT MAX(year_of_release) FROM table_name_98 WHERE title = \"death valley\"", "question": "What is the latest year of the album with the release title death valley?", "context": "CREATE TABLE table_name_98 (year_of_release INTEGER, title VARCHAR)"}, {"answer": "SELECT COUNT(year_of_release) FROM table_name_75 WHERE title = \"what goes around comes around\"", "question": "What is the total year of release of the title what goes around comes around?", "context": "CREATE TABLE table_name_75 (year_of_release VARCHAR, title VARCHAR)"}, {"answer": "SELECT republican AS :_jeff_beatty FROM table_name_79 WHERE lead_margin = 25 AND poll_source = \"rasmussen reports\"", "question": "What percent is the lead margin of 25 that Republican: Jeff Beatty has according to poll source Rasmussen Reports?", "context": "CREATE TABLE table_name_79 (republican VARCHAR, lead_margin VARCHAR, poll_source VARCHAR)"}, {"answer": "SELECT fate FROM table_name_7 WHERE name_of_ship = \"proletarij\"", "question": "How did the ship named proletarij finish its service?", "context": "CREATE TABLE table_name_7 (fate VARCHAR, name_of_ship VARCHAR)"}, {"answer": "SELECT AVG(tonnage) FROM table_name_81 WHERE name_of_ship = \"proletarij\"", "question": "What is the average tonnage of the ship named proletarij?", "context": "CREATE TABLE table_name_81 (tonnage INTEGER, name_of_ship VARCHAR)"}, {"answer": "SELECT COUNT(area_km_2) FROM table_name_87 WHERE official_name = \"studholm\"", "question": "What is the area in square kilometers of Studholm?", "context": "CREATE TABLE table_name_87 (area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_2 WHERE attendance = 40 OFFSET 429", "question": "For what week was the attendance 40,429?", "context": "CREATE TABLE table_name_2 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT week FROM table_name_17 WHERE opponent = \"detroit lions\"", "question": "The Detroit Lions were played against what week?", "context": "CREATE TABLE table_name_17 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_65 WHERE date = \"september 10, 1989\"", "question": "On September 10, 1989 how many people attended the game?", "context": "CREATE TABLE table_name_65 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT poll_source FROM table_name_2 WHERE peg_luksik = \"9%\" AND dates_administered = \"may 12, 2010\"", "question": "Which Poll source has a Peg Luksik of 9%, and Dates administered of may 12, 2010?", "context": "CREATE TABLE table_name_2 (poll_source VARCHAR, peg_luksik VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT poll_source FROM table_name_5 WHERE pat_toomey = \"23%\"", "question": "Which Poll source has Pat Toomey of 23%?", "context": "CREATE TABLE table_name_5 (poll_source VARCHAR, pat_toomey VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_51 WHERE nation = \"russia\"", "question": "How many total silvers does Russia have?", "context": "CREATE TABLE table_name_51 (silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_63 WHERE nation = \"philippines\" AND gold > 0", "question": "What is the average number of bronze medals of the Philippines, which has more than 0 gold?", "context": "CREATE TABLE table_name_63 (bronze INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_96 WHERE gold > 1 AND silver = 1", "question": "What is the average number of bronze of the nation with more than 1 gold and 1 silver medal?", "context": "CREATE TABLE table_name_96 (bronze INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_62 WHERE rank = \"1\" AND silver < 1", "question": "What is the average total medals of the nation ranked 1 with less than 1 silver?", "context": "CREATE TABLE table_name_62 (total INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_67 WHERE silver < 0", "question": "What is the lowest number of gold medals the nation with less than 0 silver medals has?", "context": "CREATE TABLE table_name_67 (gold INTEGER, silver INTEGER)"}, {"answer": "SELECT location_attendance FROM table_name_3 WHERE date = \"september 11\"", "question": "What was the Location/Attendance on september 11?", "context": "CREATE TABLE table_name_3 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_35 WHERE date = \"september 11\"", "question": "What were the high rebounds on september 11?", "context": "CREATE TABLE table_name_35 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE opponent = \"indiana\"", "question": "When did indiana play?", "context": "CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_29 WHERE high_rebounds = \"lennox (7)\"", "question": "Which Location/Attendance has High rebounds of lennox (7)?", "context": "CREATE TABLE table_name_29 (location_attendance VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT team FROM table_name_57 WHERE high_assists = \"tony parker (10)\" AND high_rebounds = \"kurt thomas (12)\"", "question": "What team has tony parker (10) as the high assists, kurt thomas (12) as the high rebounds?", "context": "CREATE TABLE table_name_57 (team VARCHAR, high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE high_rebounds = \"tim duncan (14)\"", "question": "What score has tim duncan (14) as the high rebounds?", "context": "CREATE TABLE table_name_17 (score VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_28 WHERE overall = 349 AND pick > 11", "question": "What is the lowest round for an overall pick of 349 with a pick number in the round over 11?", "context": "CREATE TABLE table_name_28 (round INTEGER, overall VARCHAR, pick VARCHAR)"}, {"answer": "SELECT location FROM table_name_77 WHERE round = \"1\" AND opponent = \"luiz claudio das dores\"", "question": "Where was the fight located that lasted 1 round against luiz claudio das dores?", "context": "CREATE TABLE table_name_77 (location VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE game = 35", "question": "Which date was game 35 on?", "context": "CREATE TABLE table_name_2 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_70 WHERE game = 37", "question": "What was the record after game 37?", "context": "CREATE TABLE table_name_70 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_41 WHERE opponent_in_the_final = \"olivier dela\u00eetre\"", "question": "What is the score of the tournament with olivier dela\u00eetre as the opponent in the final?", "context": "CREATE TABLE table_name_41 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE opponent_in_the_final = \"olivier dela\u00eetre\"", "question": "What is the date of the tournament with olivier dela\u00eetre as the opponent in the final?", "context": "CREATE TABLE table_name_49 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_37 WHERE opponent_in_the_final = \"c\u00e9dric pioline\"", "question": "What is the surface of the tournament with c\u00e9dric pioline as the opponent in the final?", "context": "CREATE TABLE table_name_37 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT result FROM table_name_42 WHERE draws = \"3\"", "question": "What was the result for the team with 3 draws?", "context": "CREATE TABLE table_name_42 (result VARCHAR, draws VARCHAR)"}, {"answer": "SELECT draws FROM table_name_58 WHERE year = \"2006\"", "question": "How many draws were there in 2006?", "context": "CREATE TABLE table_name_58 (draws VARCHAR, year VARCHAR)"}, {"answer": "SELECT matches FROM table_name_95 WHERE result = \"first group stage\" AND year = \"1998\"", "question": "What were the matches where the teams finished in the first group stage, in 1998?", "context": "CREATE TABLE table_name_95 (matches VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_69 WHERE original_title = \"zona sur\"", "question": "What year was Zona Sur nominated?", "context": "CREATE TABLE table_name_69 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_2 WHERE original_title = \"dependencia sexual\"", "question": "What is Dependencia Sexual's film title that was used in its nomination?", "context": "CREATE TABLE table_name_2 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT result FROM table_name_36 WHERE original_title = \"zona sur\"", "question": "What was Zona Sur's result after being considered for nomination?", "context": "CREATE TABLE table_name_36 (result VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT COUNT(loss) FROM table_name_12 WHERE name = \"leon patton\" AND long > 45", "question": "How many losses did leon patton have with the longest gain higher than 45?", "context": "CREATE TABLE table_name_12 (loss VARCHAR, name VARCHAR, long VARCHAR)"}, {"answer": "SELECT AVG(top_5) FROM table_name_1 WHERE cuts_made > 34", "question": "what is the average top-5 when the cuts made is more than 34?", "context": "CREATE TABLE table_name_1 (top_5 INTEGER, cuts_made INTEGER)"}, {"answer": "SELECT SUM(wins) FROM table_name_15 WHERE events = 13 AND top_5 < 1", "question": "what is the sum of wins when events is 13 and top-5 is less than 1?", "context": "CREATE TABLE table_name_15 (wins INTEGER, events VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT MAX(events) FROM table_name_72 WHERE cuts_made < 34 AND top_25 < 5 AND top_10 > 1", "question": "what is the highest events when the cuts made is less than 34, the top-25 is less than 5 and the top-10 is more than 1?", "context": "CREATE TABLE table_name_72 (events INTEGER, top_10 VARCHAR, cuts_made VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT AVG(top_10) FROM table_name_48 WHERE cuts_made < 9 AND events > 14", "question": "what is the average top-10 when the cuts made is less than 9 and the events is more than 14?", "context": "CREATE TABLE table_name_48 (top_10 INTEGER, cuts_made VARCHAR, events VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_2 WHERE 2009 = \"heartland high tech\"", "question": "What is the 2008 for 2009 heartland high tech?", "context": "CREATE TABLE table_name_2 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_92 WHERE 2003 = \"ch callaway's copyright\"", "question": "What is the 2007 with ch callaway's copyright in 2003?", "context": "CREATE TABLE table_name_92 (Id VARCHAR)"}, {"answer": "SELECT year FROM table_name_96 WHERE 2007 = \"big red\"", "question": "What year is the 2007 big red?", "context": "CREATE TABLE table_name_96 (year VARCHAR)"}, {"answer": "SELECT year FROM table_name_67 WHERE 2004 = \"shake don't stir\"", "question": "What year is the 2004 shake don't stir?", "context": "CREATE TABLE table_name_67 (year VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_48 WHERE 2003 = \"desert prince\"", "question": "What is the 2007 for the 2003 desert prince?", "context": "CREATE TABLE table_name_48 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_89 WHERE 2009 = \"ch our charming lady\"", "question": "What is the 2008 for the 2009 ch our charming lady?", "context": "CREATE TABLE table_name_89 (Id VARCHAR)"}, {"answer": "SELECT antiparticle_symbol FROM table_name_16 WHERE rest_mass___mev___c_2__ = \".47 \u00b1 .33\"", "question": "What is the antiparticle symbol with a rest mess (mev/c2) of .47 \u00b1 .33?", "context": "CREATE TABLE table_name_16 (antiparticle_symbol VARCHAR, rest_mass___mev___c_2__ VARCHAR)"}, {"answer": "SELECT surface FROM table_name_56 WHERE date = 1981", "question": "What was the surface in 1981?", "context": "CREATE TABLE table_name_56 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_1 WHERE surface = \"hard\" AND score_in_the_final = \"4\u20136, 3\u20136\"", "question": "What is the outcome on a hard surface, when the score in the final was 4\u20136, 3\u20136?", "context": "CREATE TABLE table_name_1 (outcome VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT SUM(championship) FROM table_name_55 WHERE league_cup < 0", "question": "What is the total championships that the league cup is less than 0?", "context": "CREATE TABLE table_name_55 (championship INTEGER, league_cup INTEGER)"}, {"answer": "SELECT SUM(championship) FROM table_name_4 WHERE league_cup > 1 AND name = \"james henry\"", "question": "What is the total championships of James Henry that has a league cup more than 1?", "context": "CREATE TABLE table_name_4 (championship INTEGER, league_cup VARCHAR, name VARCHAR)"}, {"answer": "SELECT championship FROM table_name_10 WHERE total = 2 AND league_cup > 0 AND name = \"jem karacan\"", "question": "What is the championship of Jem Karacan that has a total of 2 and a league cup more than 0?", "context": "CREATE TABLE table_name_10 (championship VARCHAR, name VARCHAR, total VARCHAR, league_cup VARCHAR)"}, {"answer": "SELECT season FROM table_name_57 WHERE poles = \"0\" AND series = \"gp2 series\" AND position = \"19th\"", "question": "In which season did he have 0 Poles and 19th position in the GP2 Series?", "context": "CREATE TABLE table_name_57 (season VARCHAR, position VARCHAR, poles VARCHAR, series VARCHAR)"}, {"answer": "SELECT position FROM table_name_93 WHERE wins = \"1\" AND season = \"2009\"", "question": "What was his position in 2009 with 1 win?", "context": "CREATE TABLE table_name_93 (position VARCHAR, wins VARCHAR, season VARCHAR)"}, {"answer": "SELECT races FROM table_name_47 WHERE points = \"8\"", "question": "How many races did he do in the year he had 8 points?", "context": "CREATE TABLE table_name_47 (races VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_60 WHERE wins = \"0\" AND podiums = \"0\" AND races = \"4\"", "question": "What were the points in the year when his Wins were 0, his Podiums were 0, and he drove in 4 races?", "context": "CREATE TABLE table_name_60 (points VARCHAR, races VARCHAR, wins VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT points FROM table_name_35 WHERE podiums = \"5\"", "question": "What were the points in the year when his Podiums were 5?", "context": "CREATE TABLE table_name_35 (points VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT f_laps FROM table_name_97 WHERE wins = \"0\" AND position = \"4th\"", "question": "What was the F/Laps when the Wins were 0 and the Position was 4th?", "context": "CREATE TABLE table_name_97 (f_laps VARCHAR, wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT result FROM table_name_66 WHERE date = \"may 30\"", "question": "What was the Result on May 30?", "context": "CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_1 WHERE date = \"july 24\"", "question": "What was the Result on July 24?", "context": "CREATE TABLE table_name_1 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE record = \"0-1\"", "question": "What was the Score of the game with a Record of 0-1?", "context": "CREATE TABLE table_name_31 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_23 WHERE date = \"june 24\"", "question": "What is the Record of the game on June 24?", "context": "CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE result = \"loss\" AND record = \"7-9\"", "question": "What is the Date of the game with a Loss and Record of 7-9?", "context": "CREATE TABLE table_name_91 (date VARCHAR, result VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_10 WHERE date = \"july 12\"", "question": "What is the Record on July 12?", "context": "CREATE TABLE table_name_10 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_46 WHERE total = 290", "question": "What player has a total of 290 points?", "context": "CREATE TABLE table_name_46 (player VARCHAR, total VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_80 WHERE total = 285 AND player = \"hale irwin\"", "question": "What is the year that Hale Irwin won with 285 points?", "context": "CREATE TABLE table_name_80 (year_s__won VARCHAR, total VARCHAR, player VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_47 WHERE 2011 = \"1r\"", "question": "Which year has a 2011 of 1r?", "context": "CREATE TABLE table_name_47 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_38 WHERE 2013 = \"1r\" AND 2012 = \"1r\"", "question": "Which tournament has a 2013 of 1r, and a 2012 of 1r?", "context": "CREATE TABLE table_name_38 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_82 WHERE 2003 = \"lq\"", "question": "Which year has a 2003 of lq?", "context": "CREATE TABLE table_name_82 (Id VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_23 WHERE attendance = \"75,555\"", "question": "WHAT IS THE WEEK WITH AN ATTENDANCE OF 75,555?", "context": "CREATE TABLE table_name_23 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_18 WHERE opponent = \"chicago bears\"", "question": "WHAT IS THE RESULT WHEN THE OPPONENT WAS CHICAGO BEARS?", "context": "CREATE TABLE table_name_18 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_33 WHERE week > 15 AND opponent = \"oakland raiders\"", "question": "WHAT IS THE TV TIME WOTH A WEEK BIGGER THAN 15, WITH THE OAKLAND RAIDERS AS OPPONENT?", "context": "CREATE TABLE table_name_33 (tv_time VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_93 WHERE date = \"november 10, 1996\"", "question": "WHAT IS THE TV TIME FOR NOVEMBER 10, 1996?", "context": "CREATE TABLE table_name_93 (tv_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE partner = \"jodi kenoyer\"", "question": "What was the date for the match where Tweedie-Yates' partner was jodi kenoyer?", "context": "CREATE TABLE table_name_18 (date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_87 WHERE partner = \"christina wheeler\"", "question": "Who were the opponents during the final when christina wheeler was partner?", "context": "CREATE TABLE table_name_87 (opponents_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT country FROM table_name_29 WHERE total < 290 AND year_s__won = \"1960\"", "question": "What is Country, when Total is less than 290, and when Year(s) Won is 1960?", "context": "CREATE TABLE table_name_29 (country VARCHAR, total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_71 WHERE to_par = 12", "question": "What is the total number of Total, when To Par is 12?", "context": "CREATE TABLE table_name_71 (total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_36 WHERE total = 292", "question": "What is Player, when Total is 292?", "context": "CREATE TABLE table_name_36 (player VARCHAR, total VARCHAR)"}, {"answer": "SELECT player FROM table_name_84 WHERE year_s__won = \"1955\"", "question": "What is Player, when Year(s) Won is 1955?", "context": "CREATE TABLE table_name_84 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT oil_pattern FROM table_name_58 WHERE winner__title__number_ = \"mike wolfe (3)\"", "question": "Which Oil Pattern has a Winner (Title #) of mike wolfe (3)?", "context": "CREATE TABLE table_name_58 (oil_pattern VARCHAR, winner__title__number_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE event = \"constructionjobs.com classic\"", "question": "Which Score has an Event of constructionjobs.com classic?", "context": "CREATE TABLE table_name_74 (score VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_90 WHERE winner__title__number_ = \"parker bohn iii (31)\"", "question": "Name the Event which has a Winner (Title #) of parker bohn iii (31)?", "context": "CREATE TABLE table_name_90 (event VARCHAR, winner__title__number_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE winner__title__number_ = \"robert smith (7)\"", "question": "Name the Date when has  robert smith (7)?", "context": "CREATE TABLE table_name_8 (date VARCHAR, winner__title__number_ VARCHAR)"}, {"answer": "SELECT event FROM table_name_24 WHERE score = \"209-197\"", "question": "Name the Event which has a Score of 209-197?", "context": "CREATE TABLE table_name_24 (event VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE oil_pattern = \"chameleon\" AND event = \"lake county indiana classic\"", "question": "Name the Date which has a Oil Pattern of chameleon, and a Event of lake county indiana classic?", "context": "CREATE TABLE table_name_51 (date VARCHAR, oil_pattern VARCHAR, event VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_53 WHERE nation = \"south korea\" AND silver > 0", "question": "Which Rank has a Nation of south korea, and a Silver larger than 0?", "context": "CREATE TABLE table_name_53 (rank INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_39 WHERE rank = 3 AND silver > 0", "question": "Which Bronze has a Rank of 3, and a Silver larger than 0?", "context": "CREATE TABLE table_name_39 (bronze INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_32 WHERE method = \"tko\"", "question": "Who was the opponent when there was a TKO method?", "context": "CREATE TABLE table_name_32 (opponent VARCHAR, method VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_36 WHERE time = \"5:00\" AND opponent = \"sergio vinagre\"", "question": "What was the round that Sergio Vinagre had a time of 5:00?", "context": "CREATE TABLE table_name_36 (round INTEGER, time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_89 WHERE method = \"tko (would not stand up from butt scoot)\"", "question": "What round was it when the method was TKO (would not stand up from Butt Scoot)?", "context": "CREATE TABLE table_name_89 (round INTEGER, method VARCHAR)"}, {"answer": "SELECT record FROM table_name_1 WHERE january < 7", "question": "What was the record after the game before Jan 7?", "context": "CREATE TABLE table_name_1 (record VARCHAR, january INTEGER)"}, {"answer": "SELECT tv_season FROM table_name_4 WHERE season > 2 AND ranking = \"#5\"", "question": "Which TV season has a Season larger than 2, and a Ranking of #5?", "context": "CREATE TABLE table_name_4 (tv_season VARCHAR, season VARCHAR, ranking VARCHAR)"}, {"answer": "SELECT tv_season FROM table_name_61 WHERE season < 8 AND households__in_millions_ = \"15.92 (17.1 rating)\"", "question": "Which TV season has a Season smaller than 8, and a Household (in millions) of 15.92 (17.1 rating)?", "context": "CREATE TABLE table_name_61 (tv_season VARCHAR, season VARCHAR, households__in_millions_ VARCHAR)"}, {"answer": "SELECT tv_season FROM table_name_80 WHERE households__in_millions_ = \"30.503 (34.9 rating)\"", "question": "Which TV season has Households (in millions) of 30.503 (34.9 rating)?", "context": "CREATE TABLE table_name_80 (tv_season VARCHAR, households__in_millions_ VARCHAR)"}, {"answer": "SELECT COUNT(area__km_2__) FROM table_name_96 WHERE population < 409 AND place = \"cannonvale\"", "question": "What is the total number of area listed for cannonvale with a population less than 409?", "context": "CREATE TABLE table_name_96 (area__km_2__ VARCHAR, population VARCHAR, place VARCHAR)"}, {"answer": "SELECT MIN(code) FROM table_name_3 WHERE population > 762 AND most_spoken_language = \"xhosa\" AND area__km_2__ > 15.34 AND place = \"remainder of the municipality\"", "question": "What is the lowest code number for the remainder of the municipality that has an area bigger than 15.34 squared kilometers, a population greater than 762 and a language of xhosa spoken?", "context": "CREATE TABLE table_name_3 (code INTEGER, place VARCHAR, area__km_2__ VARCHAR, population VARCHAR, most_spoken_language VARCHAR)"}, {"answer": "SELECT COUNT(code) FROM table_name_41 WHERE population > 87 OFFSET 585", "question": "What is the total code number for places with a population greater than 87,585?", "context": "CREATE TABLE table_name_41 (code VARCHAR, population INTEGER)"}, {"answer": "SELECT MIN(area__km_2__) FROM table_name_31 WHERE most_spoken_language = \"afrikaans\" AND place = \"cannonvale\"", "question": "What is the lowest area for cannonvale that speaks afrikaans?", "context": "CREATE TABLE table_name_31 (area__km_2__ INTEGER, most_spoken_language VARCHAR, place VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE location = \"richfield coliseum\"", "question": "Which Score has a Location of richfield coliseum?", "context": "CREATE TABLE table_name_96 (score VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_62 WHERE game = 78", "question": "Where was game 78 held?", "context": "CREATE TABLE table_name_62 (location VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE record = \"56-26\"", "question": "When was the score 56-26?", "context": "CREATE TABLE table_name_2 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_44 WHERE score = \"92-111\"", "question": "Which Opponent has a Score of 92-111?", "context": "CREATE TABLE table_name_44 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_10 WHERE record = \"3-9\"", "question": "What was the Opponent when the Cavaliers had a Record of 3-9?", "context": "CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE score = \"105-128\"", "question": "On what Date was the Score 105-128?", "context": "CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE h_a_n = \"h\" AND score = \"120-99\"", "question": "What is the Opponent of the game with a H/A/N of H and Score of 120-99?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, h_a_n VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE opponent = \"portland trail blazers\" AND score = \"106-104\"", "question": "On what Date was the Score 106-104 against the Portland Trail Blazers?", "context": "CREATE TABLE table_name_30 (date VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE h_a_n = \"a\" AND score = \"105-118\"", "question": "On what Date was the Score 105-118 and the H/A/N A?", "context": "CREATE TABLE table_name_80 (date VARCHAR, h_a_n VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(selection) FROM table_name_71 WHERE college = \"texas a&m\"", "question": "Which Selection has a College of texas a&m?", "context": "CREATE TABLE table_name_71 (selection INTEGER, college VARCHAR)"}, {"answer": "SELECT MIN(selection) FROM table_name_33 WHERE player = \"jamaar taylor\" AND round > 6", "question": "Which Selection has a Player of jamaar taylor, and a Round larger than 6?", "context": "CREATE TABLE table_name_33 (selection INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_29 WHERE player = \"gibril wilson\"", "question": "Which Position has a Player of gibril wilson?", "context": "CREATE TABLE table_name_29 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_13 WHERE round > 5 AND selection = 168", "question": "Which Position has a Round larger than 5, and a Selection of 168?", "context": "CREATE TABLE table_name_13 (position VARCHAR, round VARCHAR, selection VARCHAR)"}, {"answer": "SELECT MAX(number_of_seats) FROM table_name_45 WHERE leader = \"jillian evans\"", "question": "What is Jillian Evans highest number of seats?", "context": "CREATE TABLE table_name_45 (number_of_seats INTEGER, leader VARCHAR)"}, {"answer": "SELECT party FROM table_name_50 WHERE leader = \"timothy kirkhope\"", "question": "Which party does Timothy Kirkhope lead?", "context": "CREATE TABLE table_name_50 (party VARCHAR, leader VARCHAR)"}, {"answer": "SELECT position FROM table_name_68 WHERE player = \"daultan leveille\"", "question": "What is Daultan Leveille's Position?", "context": "CREATE TABLE table_name_68 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_23 WHERE round = 5", "question": "What is the Player in Round 5?", "context": "CREATE TABLE table_name_23 (player VARCHAR, round VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_58 WHERE game = 81", "question": "What is the highest rebounds for game 81?", "context": "CREATE TABLE table_name_58 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT winner FROM table_name_25 WHERE finalist = \"elena dementieva\" AND tournament = \"miami\"", "question": "Who was the winner of the Miami tournament where Elena Dementieva was a finalist?", "context": "CREATE TABLE table_name_25 (winner VARCHAR, finalist VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_66 WHERE surface = \"hard\" AND tournament = \"miami\"", "question": "Who was the finalist of the hard surface tournament in Miami?", "context": "CREATE TABLE table_name_66 (finalist VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_6 WHERE tournament = \"rome\"", "question": "Who were the semifinalists in the Rome tournament?", "context": "CREATE TABLE table_name_6 (semifinalists VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT resolution FROM table_name_65 WHERE active_pixels = \"6726 x 5040\" AND model = \"afi 7\"", "question": "What is the resolution of the camera that has 6726 x 5040 pixels and a model of afi 7?", "context": "CREATE TABLE table_name_65 (resolution VARCHAR, active_pixels VARCHAR, model VARCHAR)"}, {"answer": "SELECT model FROM table_name_87 WHERE sensor_size = \"48x36 mm\" AND active_pixels = \"6726 x 5040\" AND resolution = \"33 mp\"", "question": "Which model has a sensor sized 48x36 mm, pixels of 6726 x 5040, and a 33 mp resolution?", "context": "CREATE TABLE table_name_87 (model VARCHAR, resolution VARCHAR, sensor_size VARCHAR, active_pixels VARCHAR)"}, {"answer": "SELECT active_pixels FROM table_name_10 WHERE model = \"cantare\"", "question": "What are the active pixels of the cantare model?", "context": "CREATE TABLE table_name_10 (active_pixels VARCHAR, model VARCHAR)"}, {"answer": "SELECT active_pixels FROM table_name_96 WHERE model = \"c-most\"", "question": "What are the active pixels of the c-most model camera?", "context": "CREATE TABLE table_name_96 (active_pixels VARCHAR, model VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_98 WHERE third = 2 AND winners < 2", "question": "Which Rank has a Third of 2, and Winners smaller than 2?", "context": "CREATE TABLE table_name_98 (rank INTEGER, third VARCHAR, winners VARCHAR)"}, {"answer": "SELECT COUNT(winners) FROM table_name_27 WHERE third = 1 AND runners_up < 0", "question": "How many Winners have a Third of 1, and Runners-up smaller than 0?", "context": "CREATE TABLE table_name_27 (winners VARCHAR, third VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT AVG(third) FROM table_name_4 WHERE runners_up = 0 AND winners = 0 AND club = \"far rabat\"", "question": "Which Third has Runners-up of 0, and Winners of 0, and a Club of far rabat?", "context": "CREATE TABLE table_name_4 (third INTEGER, club VARCHAR, runners_up VARCHAR, winners VARCHAR)"}, {"answer": "SELECT MAX(winners) FROM table_name_44 WHERE rank > 7 AND third < 1", "question": "Which Winners is the highest one that has a Rank larger than 7, and a Third smaller than 1?", "context": "CREATE TABLE table_name_44 (winners INTEGER, rank VARCHAR, third VARCHAR)"}, {"answer": "SELECT Leading AS scorer FROM table_name_59 WHERE opponent = \"@ seattle\" AND record = \"14-16\"", "question": "Which Leading Scorer has an Opponent of @ seattle, and a Record of 14-16?", "context": "CREATE TABLE table_name_59 (Leading VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE opponent = \"@ houston\" AND record = \"2-0\"", "question": "Which Score has an Opponent of @ houston, and a Record of 2-0?", "context": "CREATE TABLE table_name_46 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_84 WHERE date = \"september 7\"", "question": "Which Attendance has a Date of september 7?", "context": "CREATE TABLE table_name_84 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_88 WHERE game = 3", "question": "What is the venue of game 3?", "context": "CREATE TABLE table_name_88 (venue VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_33 WHERE date = \"20 july 2008\"", "question": "What is the lowest game number on 20 July 2008?", "context": "CREATE TABLE table_name_33 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_52 WHERE date = \"20 july 2008\"", "question": "What is the result on 20 July 2008?", "context": "CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_95 WHERE opponent = \"athlone town\"", "question": "What is the total game number with athlone town as the opponent?", "context": "CREATE TABLE table_name_95 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_7 WHERE venue = \"away\" AND game > 6", "question": "What is the result of the game with a game number greater than 6 and an away venue?", "context": "CREATE TABLE table_name_7 (result VARCHAR, venue VARCHAR, game VARCHAR)"}, {"answer": "SELECT end_date FROM table_name_11 WHERE minister = \"alex bodry\"", "question": "What was the end date when Alex Bodry was the minister?", "context": "CREATE TABLE table_name_11 (end_date VARCHAR, minister VARCHAR)"}, {"answer": "SELECT minister FROM table_name_43 WHERE party = \"csv\" AND end_date = \"present day\"", "question": "Who was the minister for the CSV party with a present day end date?", "context": "CREATE TABLE table_name_43 (minister VARCHAR, party VARCHAR, end_date VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_26 WHERE visitor = \"philadelphia\" AND attendance > 7 OFFSET 284", "question": "What is the sum of the points of the game with philadelphia as the visitor and an attendance greater than 7,284?", "context": "CREATE TABLE table_name_26 (points INTEGER, visitor VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_99 WHERE home = \"toronto\"", "question": "What is the lowest amount of points of the game with toronto as the home team?", "context": "CREATE TABLE table_name_99 (points INTEGER, home VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_52 WHERE rider = \"pere riba\"", "question": "How many laps did pere riba ride?", "context": "CREATE TABLE table_name_52 (laps INTEGER, rider VARCHAR)"}, {"answer": "SELECT laps FROM table_name_97 WHERE grid = 4", "question": "How many laps were in grid 4?", "context": "CREATE TABLE table_name_97 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_91 WHERE grid = 11", "question": "Who manufactured grid 11?", "context": "CREATE TABLE table_name_91 (manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_16 WHERE laps > 26 AND time_retired = \"44:39.467\"", "question": "Which Grid has Laps larger than 26, and a Time/Retired of 44:39.467?", "context": "CREATE TABLE table_name_16 (grid INTEGER, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT horse FROM table_name_54 WHERE finished = \"8\"", "question": "Which Horse finished in 8?", "context": "CREATE TABLE table_name_54 (horse VARCHAR, finished VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_39 WHERE trainer = \"nick zito\" AND odds = \"34-1\"", "question": "Who is the Jockey that has Nick Zito as Trainer and Odds of 34-1?", "context": "CREATE TABLE table_name_39 (jockey VARCHAR, trainer VARCHAR, odds VARCHAR)"}, {"answer": "SELECT odds FROM table_name_72 WHERE horse = \"ready's echo\"", "question": "What are the Odds for the Horse called Ready's Echo?", "context": "CREATE TABLE table_name_72 (odds VARCHAR, horse VARCHAR)"}, {"answer": "SELECT odds FROM table_name_87 WHERE trainer = \"barclay tagg\"", "question": "What are the Odds for Trainer Barclay Tagg?", "context": "CREATE TABLE table_name_87 (odds VARCHAR, trainer VARCHAR)"}, {"answer": "SELECT finished FROM table_name_3 WHERE trainer = \"nick zito\" AND horse = \"da'tara\"", "question": "What is the Finished place for da'tara trained by Nick zito?", "context": "CREATE TABLE table_name_3 (finished VARCHAR, trainer VARCHAR, horse VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_52 WHERE horse = \"guadalcanal\"", "question": "Who is the Jockey for guadalcanal?", "context": "CREATE TABLE table_name_52 (jockey VARCHAR, horse VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_61 WHERE time = \"accident\" AND grid > 15", "question": "Which Manufacturer has a Time of accident and a Grid greater than 15?", "context": "CREATE TABLE table_name_61 (manufacturer VARCHAR, time VARCHAR, grid VARCHAR)"}, {"answer": "SELECT 3 AS __f_ FROM table_name_1 WHERE verb = \"khola\"", "question": "What is the verb for Khola?", "context": "CREATE TABLE table_name_1 (verb VARCHAR)"}, {"answer": "SELECT 2 AS __f_ FROM table_name_34 WHERE verb = \"khola\"", "question": "What is the 2nd verb for Khola?", "context": "CREATE TABLE table_name_34 (verb VARCHAR)"}, {"answer": "SELECT 2 AS __f_ FROM table_name_7 WHERE verb = \"chena\"", "question": "What is the 2nd verb for chena?", "context": "CREATE TABLE table_name_7 (verb VARCHAR)"}, {"answer": "SELECT lead FROM table_name_21 WHERE third = \"randy ferbey (skip)\" AND second = \"scott pfeifer\" AND season = \"2009\u201310\"", "question": "Which Lead has a Third of randy ferbey (skip), a Second of scott pfeifer, and a Season of 2009\u201310?", "context": "CREATE TABLE table_name_21 (lead VARCHAR, season VARCHAR, third VARCHAR, second VARCHAR)"}, {"answer": "SELECT season FROM table_name_47 WHERE third = \"colin hodgson\"", "question": "Which Season has a Third of colin hodgson?", "context": "CREATE TABLE table_name_47 (season VARCHAR, third VARCHAR)"}, {"answer": "SELECT second FROM table_name_6 WHERE lead = \"ben hebert\"", "question": "Which Second has a Lead of ben hebert?", "context": "CREATE TABLE table_name_6 (second VARCHAR, lead VARCHAR)"}, {"answer": "SELECT third FROM table_name_29 WHERE second = \"scott pfeifer\"", "question": "Which Third has a Second of scott pfeifer?", "context": "CREATE TABLE table_name_29 (third VARCHAR, second VARCHAR)"}, {"answer": "SELECT second FROM table_name_76 WHERE third = \"david nedohin\" AND lead = \"ben hebert\"", "question": "Which Second has a Third of david nedohin, and a Lead of ben hebert?", "context": "CREATE TABLE table_name_76 (second VARCHAR, third VARCHAR, lead VARCHAR)"}, {"answer": "SELECT skip FROM table_name_77 WHERE season = \"2002\u201303\"", "question": "Which Skip has a Season of 2002\u201303?", "context": "CREATE TABLE table_name_77 (skip VARCHAR, season VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE republican = \"mike huckabee\" AND sample_size = 496", "question": "What was the date of the poll with a sample size of 496 where Republican Mike Huckabee was chosen?", "context": "CREATE TABLE table_name_29 (date VARCHAR, republican VARCHAR, sample_size VARCHAR)"}, {"answer": "SELECT AVG(sample_size) FROM table_name_5 WHERE republican = \"mike huckabee\" AND margin_of_error > 4 AND date = \"dec 13-15, 2007\"", "question": "What is the sample size of the poll taken on Dec 13-15, 2007 that had a margin of error of more than 4 and resulted with Republican Mike Huckabee?", "context": "CREATE TABLE table_name_5 (sample_size INTEGER, date VARCHAR, republican VARCHAR, margin_of_error VARCHAR)"}, {"answer": "SELECT democrat FROM table_name_16 WHERE sample_size < 516 AND republican = \"ron paul\"", "question": "Which Democrat was selected in the poll with a sample size smaller than 516 where the Republican chosen was Ron Paul?", "context": "CREATE TABLE table_name_16 (democrat VARCHAR, sample_size VARCHAR, republican VARCHAR)"}, {"answer": "SELECT returning FROM table_name_7 WHERE show = \"9 to 5\"", "question": "When was the show 9 to 5 returning?", "context": "CREATE TABLE table_name_7 (returning VARCHAR, show VARCHAR)"}, {"answer": "SELECT MIN(last_aired) FROM table_name_1 WHERE returning = \"september 13\"", "question": "What was the earliest aired show that's returning on September 13?", "context": "CREATE TABLE table_name_1 (last_aired INTEGER, returning VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_82 WHERE score = \"74-66\"", "question": "What is the Opponent of the game with a Score of 74-66?", "context": "CREATE TABLE table_name_82 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE opponent = \"@ san antonio\" AND date = \"june 20\"", "question": "What is the Score of the game @ San Antonio on June 20?", "context": "CREATE TABLE table_name_81 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_49 WHERE date = \"september 6\"", "question": "What is the Record of the game on September 6?", "context": "CREATE TABLE table_name_49 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_38 WHERE score = \"65-48\"", "question": "What is the Record of the game with a Score of 65-48?", "context": "CREATE TABLE table_name_38 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(league_cup_goals) FROM table_name_59 WHERE scorer = \"denis law\"", "question": "What is the lowest League Cup Goals, when Scorer is Denis Law?", "context": "CREATE TABLE table_name_59 (league_cup_goals INTEGER, scorer VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_20 WHERE fa_cup_goals = \"1\" AND league_goals = \"10\" AND club = \"crystal palace\"", "question": "What is the average Total, when FA Cup Goals is 1, when League Goals is 10, and when Club is Crystal Palace?", "context": "CREATE TABLE table_name_20 (total INTEGER, club VARCHAR, fa_cup_goals VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_77 WHERE club = \"leeds united\" AND league_goals = \"13\"", "question": "What is the total number of Total, when Club is Leeds United, and when League Goals is 13?", "context": "CREATE TABLE table_name_77 (total VARCHAR, club VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT fa_cup_goals FROM table_name_75 WHERE euro_competitions = \"1\" AND league_goals = \"11\"", "question": "What is FA Cup Goals, when Euro Competitions is 1, and when League Goals is 11?", "context": "CREATE TABLE table_name_75 (fa_cup_goals VARCHAR, euro_competitions VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_49 WHERE finalist = \"monica seles\"", "question": "What tournament had finalist Monica Seles?", "context": "CREATE TABLE table_name_49 (tournament VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT week FROM table_name_6 WHERE finalist = \"martina hingis\"", "question": "What week was the finalist Martina Hingis?", "context": "CREATE TABLE table_name_6 (week VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT surface FROM table_name_56 WHERE finalist = \"justine henin\"", "question": "What was the surface for finalist Justine Henin?", "context": "CREATE TABLE table_name_56 (surface VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT winner FROM table_name_67 WHERE tournament = \"indian wells\"", "question": "Who was the winner in the Indian Wells?", "context": "CREATE TABLE table_name_67 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_40 WHERE year = 1946 AND winner = \"bill holland\"", "question": "Which race did Bill Holland win in 1946?", "context": "CREATE TABLE table_name_40 (race_name VARCHAR, year VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE winner = \"ted horn\" AND race_name = \"lakewood race 2\"", "question": "What date did Ted Horn win Lakewood Race 2?", "context": "CREATE TABLE table_name_46 (date VARCHAR, winner VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT winner FROM table_name_2 WHERE date = \"september 6\"", "question": "Who won on September 6?", "context": "CREATE TABLE table_name_2 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_70 WHERE year > 1956 AND winner = \"jud larson\"", "question": "Jud Larson who which race after 1956?", "context": "CREATE TABLE table_name_70 (race_name VARCHAR, year VARCHAR, winner VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_5 WHERE rank = \"33\" AND bronze > 1", "question": "What is the Total medals for the Nation ranking 33 with more than 1 Bronze?", "context": "CREATE TABLE table_name_5 (total INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_52 WHERE attendance = 19 OFFSET 190", "question": "How many games have an Attendance of 19,190?", "context": "CREATE TABLE table_name_52 (game VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_45 WHERE time = \"2:14\"", "question": "How many games had a Time of 2:14?", "context": "CREATE TABLE table_name_45 (game INTEGER, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_41 WHERE time = \"2:28\"", "question": "Which Score has a Time of 2:28?", "context": "CREATE TABLE table_name_41 (score VARCHAR, time VARCHAR)"}, {"answer": "SELECT result FROM table_name_53 WHERE captain_1 = \"louis burger\" AND date = \"30 october\u20132 november\"", "question": "Which Result has a Captain 1 of louis burger, and a Date of 30 october\u20132 november?", "context": "CREATE TABLE table_name_53 (result VARCHAR, captain_1 VARCHAR, date VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_87 WHERE captain_1 = \"final\"", "question": "Which Team 2 has a Captain 1 of final?", "context": "CREATE TABLE table_name_87 (team_2 VARCHAR, captain_1 VARCHAR)"}, {"answer": "SELECT captain_2 FROM table_name_87 WHERE result = \"ireland by 8 runs\"", "question": "Which Captain 2 has a Result of ireland by 8 runs?", "context": "CREATE TABLE table_name_87 (captain_2 VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_81 WHERE captain_2 = \"louis burger\"", "question": "Which Result has a Captain 2 of louis burger?", "context": "CREATE TABLE table_name_81 (result VARCHAR, captain_2 VARCHAR)"}, {"answer": "SELECT captain_2 FROM table_name_50 WHERE result = \"final\"", "question": "Which Captain 2 has a Result of final?", "context": "CREATE TABLE table_name_50 (captain_2 VARCHAR, result VARCHAR)"}, {"answer": "SELECT kosal FROM table_name_97 WHERE sitalsasthi_carnival = \"balangir town\"", "question": "What is the Kosal with a balangir town sitalsasthi carnival?", "context": "CREATE TABLE table_name_97 (kosal VARCHAR, sitalsasthi_carnival VARCHAR)"}, {"answer": "SELECT kosal FROM table_name_94 WHERE sambalpuri_cinema = \"hatibandha\"", "question": "What is the kosal with hatibandha as the sambalpuri cinema?", "context": "CREATE TABLE table_name_94 (kosal VARCHAR, sambalpuri_cinema VARCHAR)"}, {"answer": "SELECT sambalpuri_saree FROM table_name_22 WHERE sambalpuri_language = \"samaleswari temple\"", "question": "What is the sambalpuri saree with a samaleswari temple as sambalpuri language?", "context": "CREATE TABLE table_name_22 (sambalpuri_saree VARCHAR, sambalpuri_language VARCHAR)"}, {"answer": "SELECT sitalsasthi_carnival FROM table_name_97 WHERE kosal = \"sonepur\"", "question": "What is the sitalsasthi carnival with sonepur as kosal?", "context": "CREATE TABLE table_name_97 (sitalsasthi_carnival VARCHAR, kosal VARCHAR)"}, {"answer": "SELECT sitalsasthi_carnival FROM table_name_92 WHERE sambalpuri_saree = \"hirakud\"", "question": "What is the sitalsasthi carnival with hirakud as sambalpuri saree?", "context": "CREATE TABLE table_name_92 (sitalsasthi_carnival VARCHAR, sambalpuri_saree VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_5 WHERE record = \"0-2-2\"", "question": "What was the attendance when their record stood at 0-2-2?", "context": "CREATE TABLE table_name_5 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE venue = \"away\" AND result = \"lost 6-4 (lost 9-7 on agg)\"", "question": "On what date was the venue Away and the result was lost 6-4 (lost 9-7 on agg)?", "context": "CREATE TABLE table_name_5 (date VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_31 WHERE date = \"26th\"", "question": "What was the result on the 26th?", "context": "CREATE TABLE table_name_31 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE opponent = \"sheffield scimitars\" AND venue = \"home\"", "question": "What was the date when the opponent was Sheffield Scimitars and the venue was Home?", "context": "CREATE TABLE table_name_4 (date VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT man_of_the_match FROM table_name_19 WHERE opponent = \"milton keynes lightning\" AND venue = \"away\"", "question": "Who was the Man of the Match when the opponent was Milton Keynes Lightning and the venue was Away?", "context": "CREATE TABLE table_name_19 (man_of_the_match VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_50 WHERE date = \"26th\"", "question": "What competition was held on the 26th?", "context": "CREATE TABLE table_name_50 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE attendance = \"n/a\" AND man_of_the_match = \"unknown\"", "question": "What was the date when the attendance was n/a and the Man of the Match was unknown?", "context": "CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR, man_of_the_match VARCHAR)"}, {"answer": "SELECT edition FROM table_name_45 WHERE result = \"6-3, 6-0, 6-2\"", "question": "What Edition had a Result of 6-3, 6-0, 6-2?", "context": "CREATE TABLE table_name_45 (edition VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE discipline = \"super g\" AND season = 2010", "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 COUNT(population) FROM table_name_56 WHERE official_name = \"balmoral\" AND area_km_2 > 43.51", "question": "When the communities name is Balmoral and the area is over 43.51 kilometers squared, what's the total population amount?", "context": "CREATE TABLE table_name_56 (population VARCHAR, official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT MIN(area_km_2) FROM table_name_47 WHERE status = \"rural community\"", "question": "When the status is rural community what's the lowest area in kilometers squared?", "context": "CREATE TABLE table_name_47 (area_km_2 INTEGER, status VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_79 WHERE total < 1", "question": "How many total golds do teams have when the total medals is less than 1?", "context": "CREATE TABLE table_name_79 (gold INTEGER, total INTEGER)"}, {"answer": "SELECT semifinalists FROM table_name_12 WHERE tournament = \"key biscane\"", "question": "who was the semifinalist for the Key Biscane tournament?", "context": "CREATE TABLE table_name_12 (semifinalists VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE game < 56 AND february > 18 AND opponent = \"chicago black hawks\"", "question": "What is the score of the game before 56 held after February 18 against the Chicago Black Hawks.", "context": "CREATE TABLE table_name_52 (score VARCHAR, opponent VARCHAR, game VARCHAR, february VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE february > 23 AND game = 57", "question": "What was the score of the game 57 after February 23?", "context": "CREATE TABLE table_name_19 (score VARCHAR, february VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_27 WHERE grid < 16 AND time = \"+21.689\"", "question": "Who had the lowest laps on a grid smaller than 16 with a time of +21.689?", "context": "CREATE TABLE table_name_27 (laps INTEGER, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT laps FROM table_name_39 WHERE manufacturer = \"honda\" AND time = \"+1:38.407\"", "question": "What laps did Honda do with a time of +1:38.407?", "context": "CREATE TABLE table_name_39 (laps VARCHAR, manufacturer VARCHAR, time VARCHAR)"}, {"answer": "SELECT grid FROM table_name_96 WHERE manufacturer = \"ducati\" AND laps < 22", "question": "What grid is Ducati with fewer than 22 laps?", "context": "CREATE TABLE table_name_96 (grid VARCHAR, manufacturer VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_61 WHERE manufacturer = \"honda\" AND time = \"+1:38.407\"", "question": "What is Honda's highest grid with a time of +1:38.407?", "context": "CREATE TABLE table_name_61 (grid INTEGER, manufacturer VARCHAR, time VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_5 WHERE player = \"bunky henry\"", "question": "What is the to par of player bunky henry?", "context": "CREATE TABLE table_name_5 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_90 WHERE player = \"bob rosburg\"", "question": "What is the score of player bob rosburg?", "context": "CREATE TABLE table_name_90 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_7 WHERE place = \"t6\" AND score = 72 - 68 - 72 = 212", "question": "Who is the player with a t6 place and a 72-68-72=212 score?", "context": "CREATE TABLE table_name_7 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE player = \"bob rosburg\"", "question": "What is the score of player bob rosburg?", "context": "CREATE TABLE table_name_46 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_51 WHERE score = 68 - 69 - 73 = 210", "question": "What is the place of the 68-69-73=210?", "context": "CREATE TABLE table_name_51 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_68 WHERE high_rebounds = \"tyson chandler (6)\"", "question": "What is Record, when High Rebounds is \"Tyson Chandler (6)\"?", "context": "CREATE TABLE table_name_68 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE location_attendance = \"td banknorth garden 18,624\"", "question": "What is Date, when Location Attendance is \"TD Banknorth Garden 18,624\"?", "context": "CREATE TABLE table_name_29 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_58 WHERE date = \"december 23\"", "question": "What is the average Game, when Date is \"December 23\"?", "context": "CREATE TABLE table_name_58 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE team = \"@ memphis\"", "question": "What is Score, when Team is \"@ Memphis\"?", "context": "CREATE TABLE table_name_29 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(post_position) FROM table_name_74 WHERE lengths_behind = \"0\"", "question": "What's the post position when the lengths behind is 0?", "context": "CREATE TABLE table_name_74 (post_position INTEGER, lengths_behind VARCHAR)"}, {"answer": "SELECT lengths_behind FROM table_name_63 WHERE jockey = \"ramon a. dominguez\"", "question": "What's the lengths behind of Jockey Ramon A. Dominguez?", "context": "CREATE TABLE table_name_63 (lengths_behind VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_59 WHERE post_time_odds = \"34-1\"", "question": "Who was the jockey that had post time odds of 34-1?", "context": "CREATE TABLE table_name_59 (jockey VARCHAR, post_time_odds VARCHAR)"}, {"answer": "SELECT owner FROM table_name_53 WHERE horse_name = \"icabad crane\"", "question": "Who is the owner of Icabad Crane?", "context": "CREATE TABLE table_name_53 (owner VARCHAR, horse_name VARCHAR)"}, {"answer": "SELECT lengths_behind FROM table_name_73 WHERE jockey = \"jeremy rose\"", "question": "What is the lengths behind of Jeremy Rose?", "context": "CREATE TABLE table_name_73 (lengths_behind VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_4 WHERE avg_start < 25", "question": "How many wins for average start less than 25?", "context": "CREATE TABLE table_name_4 (wins VARCHAR, avg_start INTEGER)"}, {"answer": "SELECT AVG(top_10) FROM table_name_68 WHERE starts = 2 AND winnings = \"$135,984\" AND avg_finish > 43", "question": "What is the average top 10 score for 2 starts, winnings of $135,984 and an average finish more than 43?", "context": "CREATE TABLE table_name_68 (top_10 INTEGER, avg_finish VARCHAR, starts VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT SUM(starts) FROM table_name_54 WHERE avg_finish > 43", "question": "How many starts for an average finish greater than 43?", "context": "CREATE TABLE table_name_54 (starts INTEGER, avg_finish INTEGER)"}, {"answer": "SELECT 1987 FROM table_name_47 WHERE 1989 = \"3r\" AND 1986 = \"f\"", "question": "What is the 1987 results when the results of 1989 is 3R, and the 1986 results is F?", "context": "CREATE TABLE table_name_47 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_24 WHERE 1983 = \"0 / 1\"", "question": "In 1983 what is the tournament that is 0 / 1?", "context": "CREATE TABLE table_name_24 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_71 WHERE career_sr = \"0 / 5\" AND 1983 = \"a\"", "question": "What tournament has 0 / 5 as career SR and A as 1983?", "context": "CREATE TABLE table_name_71 (tournament VARCHAR, career_sr VARCHAR)"}, {"answer": "SELECT 1985 FROM table_name_62 WHERE career_win_loss = \"n/a\" AND career_sr = \"0 / 23\"", "question": "What is the result in 1985 when the career win-loss is n/a, and 0 / 23 as the career SR?", "context": "CREATE TABLE table_name_62 (career_win_loss VARCHAR, career_sr VARCHAR)"}, {"answer": "SELECT 1985 FROM table_name_70 WHERE career_sr = \"0 / 5\" AND 1986 = \"nh\"", "question": "With a 1986 of NH and a career SR of 0 / 5 what is the results in 1985?", "context": "CREATE TABLE table_name_70 (career_sr VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_66 WHERE name = \"bob anderson\" AND round < 9", "question": "Which Overall has a Name of bob anderson, and a Round smaller than 9?", "context": "CREATE TABLE table_name_66 (overall INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_66 WHERE college = \"stanford\"", "question": "What is stanford's average overall?", "context": "CREATE TABLE table_name_66 (overall INTEGER, college VARCHAR)"}, {"answer": "SELECT pick FROM table_name_55 WHERE round < 8 AND overall < 16 AND name = \"harry gilmer\"", "question": "Which pick has a Round smaller than 8, and an Overall smaller than 16, and a Name of harry gilmer?", "context": "CREATE TABLE table_name_55 (pick VARCHAR, name VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_30 WHERE name = \"bob anderson\"", "question": "How much Overall has a Name of bob anderson?", "context": "CREATE TABLE table_name_30 (overall VARCHAR, name VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_19 WHERE played = \"20\" AND lost = \"0\"", "question": "What is the points number when 20 shows for played, and lost is 0?", "context": "CREATE TABLE table_name_19 (points_for VARCHAR, played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_83 WHERE try_bonus = \"1\"", "question": "What is the points when the try bonus is 1?", "context": "CREATE TABLE table_name_83 (points_for VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT club FROM table_name_93 WHERE played = \"19\" AND lost = \"14\"", "question": "What club has a played number of 19, and the lost of 14?", "context": "CREATE TABLE table_name_93 (club VARCHAR, played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_89 WHERE tries_against = \"52\"", "question": "What is the tries for when 52 was the tries against?", "context": "CREATE TABLE table_name_89 (tries_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT lost FROM table_name_40 WHERE try_bonus = \"5\" AND points_against = \"298\"", "question": "What is the lost when the try bonus is 5, and points against is 298?", "context": "CREATE TABLE table_name_40 (lost VARCHAR, try_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_70 WHERE points_for = \"475\"", "question": "What is the tries against when the points are 475?", "context": "CREATE TABLE table_name_70 (tries_against VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT team FROM table_name_73 WHERE points = \"26\"", "question": "Which team has 26 points?", "context": "CREATE TABLE table_name_73 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_17 WHERE driver = \"kosuke matsuura\"", "question": "How many points does driver kosuke matsuura have?", "context": "CREATE TABLE table_name_17 (points VARCHAR, driver VARCHAR)"}, {"answer": "SELECT grid FROM table_name_88 WHERE points = \"24\"", "question": "What grid has 24 points?", "context": "CREATE TABLE table_name_88 (grid VARCHAR, points VARCHAR)"}, {"answer": "SELECT laps FROM table_name_46 WHERE driver = \"dario franchitti\"", "question": "How many laps does driver dario franchitti have?", "context": "CREATE TABLE table_name_46 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT record FROM table_name_16 WHERE method = \"ko\"", "question": "What was the record when the method of resolution was KO?", "context": "CREATE TABLE table_name_16 (record VARCHAR, method VARCHAR)"}, {"answer": "SELECT record FROM table_name_14 WHERE event = \"ufc 27\"", "question": "What is the record during the event, UFC 27?", "context": "CREATE TABLE table_name_14 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_1 WHERE opponent = \"keith rockel\"", "question": "What is the record when the fight was against keith rockel?", "context": "CREATE TABLE table_name_1 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE time = \"0:10\"", "question": "Who was the opponent when the fight had a time of 0:10?", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_71 WHERE time = \"2:01\"", "question": "Who was the opponent when the fight had a time of 2:01?", "context": "CREATE TABLE table_name_71 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT res FROM table_name_65 WHERE method = \"submission (guillotine choke)\" AND opponent = \"tom bolger\"", "question": "What was the resolution for the fight against tom bolger by submission (guillotine choke)?", "context": "CREATE TABLE table_name_65 (res VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_61 WHERE result = \"3-2\"", "question": "What is the score of the match with a 3-2 result?", "context": "CREATE TABLE table_name_61 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT player FROM table_name_5 WHERE position = \"sg\" AND jersey_number_s_ = \"20\"", "question": "Who wears the jersey number 20 and has the position of SG?", "context": "CREATE TABLE table_name_5 (player VARCHAR, position VARCHAR, jersey_number_s_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_65 WHERE jersey_number_s_ = \"22\"", "question": "What position does the player with jersey number 22 play?", "context": "CREATE TABLE table_name_65 (position VARCHAR, jersey_number_s_ VARCHAR)"}, {"answer": "SELECT MIN(loss) FROM table_name_41 WHERE long < 0", "question": "What is the lowest Loss, when Long is less than 0?", "context": "CREATE TABLE table_name_41 (loss INTEGER, long INTEGER)"}, {"answer": "SELECT AVG(loss) FROM table_name_12 WHERE avg_g = 0 AND long < 0", "question": "What is the average Loss, when Avg/g is 0, and when Long is less than 0?", "context": "CREATE TABLE table_name_12 (loss INTEGER, avg_g VARCHAR, long VARCHAR)"}, {"answer": "SELECT MAX(loss) FROM table_name_75 WHERE long > 0 AND gain > 484 AND avg_g > 126.4", "question": "What is the highest Loss, when Long is greater than 0, when Gain is greater than 484, and when Avg/g is greater than 126.4?", "context": "CREATE TABLE table_name_75 (loss INTEGER, avg_g VARCHAR, long VARCHAR, gain VARCHAR)"}, {"answer": "SELECT MIN(long) FROM table_name_81 WHERE name = \"kass, rob\" AND avg_g < -0.30000000000000004", "question": "What is the lowest Long, when Name is Kass, Rob, and when Avg/g is less than -0.30000000000000004?", "context": "CREATE TABLE table_name_81 (long INTEGER, name VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT player FROM table_name_74 WHERE country = \"united states\" AND total < 293 AND year_s__won = \"1984\"", "question": "Who is the player from the United States with a total less than 293 and won in 1984?", "context": "CREATE TABLE table_name_74 (player VARCHAR, year_s__won VARCHAR, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_83 WHERE finish = \"t52\" AND player = \"hale irwin\"", "question": "What is the average total of player hale irwin, who had a t52 finish?", "context": "CREATE TABLE table_name_83 (total INTEGER, finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_91 WHERE year_s__won = \"1994\"", "question": "Who is the player who won in 1994?", "context": "CREATE TABLE table_name_91 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_53 WHERE finish = \"t60\" AND player = \"steve jones\"", "question": "What year did player steve jones, who had a t60 finish, win?", "context": "CREATE TABLE table_name_53 (year_s__won VARCHAR, finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT result FROM table_name_86 WHERE competition = \"friendly match\"", "question": "What was the result for a friendly match?", "context": "CREATE TABLE table_name_86 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT player FROM table_name_50 WHERE country = \"united states\" AND year_s__won = \"1962\"", "question": "Which player from the United States won in 1962?", "context": "CREATE TABLE table_name_50 (player VARCHAR, country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_41 WHERE player = \"gary player\" AND to_par > 15", "question": "What was Gary Player's highest total when his To par was over 15?", "context": "CREATE TABLE table_name_41 (total INTEGER, player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT trial_start_date FROM table_name_36 WHERE candidate_name = \"notes\"", "question": "What is Trial Start Date, when Candidate Name is Notes?", "context": "CREATE TABLE table_name_36 (trial_start_date VARCHAR, candidate_name VARCHAR)"}, {"answer": "SELECT candidate_name FROM table_name_58 WHERE target_approach = \"vaccine to amyloid-beta\"", "question": "What is Candidate Name, when Target/Approach is \"vaccine to amyloid-beta\"?", "context": "CREATE TABLE table_name_58 (candidate_name VARCHAR, target_approach VARCHAR)"}, {"answer": "SELECT trial_phase FROM table_name_59 WHERE expected_end_date = \"june 2007\"", "question": "What is Trial Phase, when Expected End Date is June 2007?", "context": "CREATE TABLE table_name_59 (trial_phase VARCHAR, expected_end_date VARCHAR)"}, {"answer": "SELECT expected_end_date FROM table_name_3 WHERE target_approach = \"notes\"", "question": "What is Expected End Date, when Target/Approach is Notes?", "context": "CREATE TABLE table_name_3 (expected_end_date VARCHAR, target_approach VARCHAR)"}, {"answer": "SELECT trial_start_date FROM table_name_89 WHERE candidate_name = \"pbt2\"", "question": "What is Trial Start Date, when Candidate Name is PBT2?", "context": "CREATE TABLE table_name_89 (trial_start_date VARCHAR, candidate_name VARCHAR)"}, {"answer": "SELECT expected_end_date FROM table_name_65 WHERE trial_start_date = \"nov 2007\"", "question": "What is Expected End Date, when Trial Start Date is Nov 2007?", "context": "CREATE TABLE table_name_65 (expected_end_date VARCHAR, trial_start_date VARCHAR)"}, {"answer": "SELECT rider FROM table_name_51 WHERE time_retired = \"+19.909\"", "question": "Which rider had a time/retired od +19.909?", "context": "CREATE TABLE table_name_51 (rider VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_74 WHERE laps = \"21\" AND manufacturer = \"yamaha\" AND grid = \"1\"", "question": "What is the time/retired for the rider with the manufacturuer yamaha, grod of 1 and 21 total laps?", "context": "CREATE TABLE table_name_74 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT laps FROM table_name_77 WHERE manufacturer = \"yamaha\" AND rider = \"valentino rossi\"", "question": "How many laps did Valentino rossi have when riding a vehicle manufactured by yamaha?", "context": "CREATE TABLE table_name_77 (laps VARCHAR, manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT rider FROM table_name_26 WHERE manufacturer = \"kr211v\"", "question": "WWhich rder had a vehicle manufactured by kr211v?", "context": "CREATE TABLE table_name_26 (rider VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT grid FROM table_name_20 WHERE laps = \"21\" AND rider = \"john hopkins\"", "question": "When rider John Hopkins had 21 laps, what was the grid?", "context": "CREATE TABLE table_name_20 (grid VARCHAR, laps VARCHAR, rider VARCHAR)"}, {"answer": "SELECT laps FROM table_name_34 WHERE manufacturer = \"honda\" AND grid = \"9\"", "question": "What was the amount of laps for the vehicle manufactured by honda with a grid of 9?", "context": "CREATE TABLE table_name_34 (laps VARCHAR, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_41 WHERE time_retired = \"+23.215\" AND grid > 11", "question": "Which Laps have a Time/Retired of +23.215, and a Grid larger than 11?", "context": "CREATE TABLE table_name_41 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_73 WHERE time_retired = \"accident\"", "question": "Which Manufacturer has a Time/Retired of accident?", "context": "CREATE TABLE table_name_73 (manufacturer VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_71 WHERE laps = 25 AND manufacturer = \"honda\" AND time_retired = \"+1:47.797\"", "question": "Which Grid has Laps of 25, and a Manufacturer of honda, and a Time/Retired of +1:47.797?", "context": "CREATE TABLE table_name_71 (grid INTEGER, time_retired VARCHAR, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT poles FROM table_name_51 WHERE points = \"104\"", "question": "What is the number of poles with 104 points?", "context": "CREATE TABLE table_name_51 (poles VARCHAR, points VARCHAR)"}, {"answer": "SELECT podiums FROM table_name_87 WHERE wins = \"0\" AND fl = \"0\" AND points = \"35\"", "question": "What is the number of podiums with 0 wins, 0 F.L. and 35 points?", "context": "CREATE TABLE table_name_87 (podiums VARCHAR, points VARCHAR, wins VARCHAR, fl VARCHAR)"}, {"answer": "SELECT poles FROM table_name_96 WHERE races = \"4\"", "question": "What is the number of poles with 4 races?", "context": "CREATE TABLE table_name_96 (poles VARCHAR, races VARCHAR)"}, {"answer": "SELECT races FROM table_name_43 WHERE series = \"gp2 series\" AND fl = \"0\" AND position = \"17th\"", "question": "What races have gp2 series, 0 F.L. and a 17th position?", "context": "CREATE TABLE table_name_43 (races VARCHAR, position VARCHAR, series VARCHAR, fl VARCHAR)"}, {"answer": "SELECT podiums FROM table_name_16 WHERE wins = \"0\" AND points = \"6\"", "question": "What is the number of podiums with 0 wins and 6 points?", "context": "CREATE TABLE table_name_16 (podiums VARCHAR, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT wins FROM table_name_98 WHERE fl = \"0\" AND poles = \"0\" AND position = \"7th\" AND points = \"35\"", "question": "What is the number of wins with a 0 F.L., 0 poles, a position of 7th, and 35 points?", "context": "CREATE TABLE table_name_98 (wins VARCHAR, points VARCHAR, position VARCHAR, fl VARCHAR, poles VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_60 WHERE college = \"pittsburgh\"", "question": "Which pick came from Pittsburgh?", "context": "CREATE TABLE table_name_60 (pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_25 WHERE college = \"texas el-paso\"", "question": "Which pick came from Texas El-Paso?", "context": "CREATE TABLE table_name_25 (pick INTEGER, college VARCHAR)"}, {"answer": "SELECT opening FROM table_name_85 WHERE worldwide = \"$559,852,396\"", "question": "WHAT IS THE OPENING WITH A WORLDWIDE NUMBER OF $559,852,396?", "context": "CREATE TABLE table_name_85 (opening VARCHAR, worldwide VARCHAR)"}, {"answer": "SELECT budget FROM table_name_28 WHERE worldwide = \"$363,398,565\"", "question": "WHAT IS THE BUDGET WHEN THE WORLDWIDE BOX OFFICE IS $363,398,565?", "context": "CREATE TABLE table_name_28 (budget VARCHAR, worldwide VARCHAR)"}, {"answer": "SELECT budget FROM table_name_28 WHERE film = \"the incredibles\"", "question": "WHAT IS THE BUDGET FOR THE INCREDIBLES?", "context": "CREATE TABLE table_name_28 (budget VARCHAR, film VARCHAR)"}, {"answer": "SELECT worldwide FROM table_name_41 WHERE film = \"brave\"", "question": "WHAT IS THE WORLDWIDE BOX OFFICE FOR BRAVE?", "context": "CREATE TABLE table_name_41 (worldwide VARCHAR, film VARCHAR)"}, {"answer": "SELECT driver FROM table_name_80 WHERE points < 36 AND team = \"bob holden motors\" AND race_1 = \"7\"", "question": "Which driver for Bob Holden Motors has fewer than 36 points and placed 7 in race 1?", "context": "CREATE TABLE table_name_80 (driver VARCHAR, race_1 VARCHAR, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_68 WHERE race_1 = \"4\"", "question": "Which team received 4 in race 1?", "context": "CREATE TABLE table_name_68 (team VARCHAR, race_1 VARCHAR)"}, {"answer": "SELECT driver FROM table_name_82 WHERE points < 36 AND team = \"greenfield mowers racing\"", "question": "Which driver for Greenfield Mowers Racing has fewer than 36 points?", "context": "CREATE TABLE table_name_82 (driver VARCHAR, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT pr\u00e9sident FROM table_name_10 WHERE d\u00e9partment__or_collectivity_ = \"creuse\"", "question": "Who is the president representing the Creuse department?", "context": "CREATE TABLE table_name_10 (pr\u00e9sident VARCHAR, d\u00e9partment__or_collectivity_ VARCHAR)"}, {"answer": "SELECT number FROM table_name_14 WHERE party = \"socialist party\" AND pr\u00e9sident = \"yves krattinger\"", "question": "What number corresponds to Presidet Yves Krattinger of the Socialist party?", "context": "CREATE TABLE table_name_14 (number VARCHAR, party VARCHAR, pr\u00e9sident VARCHAR)"}, {"answer": "SELECT d\u00e9partment__or_collectivity_ FROM table_name_54 WHERE since = 2008 AND pr\u00e9sident = \"guy-dominique kennel\"", "question": "Which department has Guy-Dominique Kennel as president since 2008?", "context": "CREATE TABLE table_name_54 (d\u00e9partment__or_collectivity_ VARCHAR, since VARCHAR, pr\u00e9sident VARCHAR)"}, {"answer": "SELECT pr\u00e9sident FROM table_name_36 WHERE party = \"union for a popular movement\" AND d\u00e9partment__or_collectivity_ = \"hautes-alpes\"", "question": "Who is the president from the Union for a Popular Movement party that represents the Hautes-Alpes department?", "context": "CREATE TABLE table_name_36 (pr\u00e9sident VARCHAR, party VARCHAR, d\u00e9partment__or_collectivity_ VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_1 WHERE location = \"varna\" AND venue = \"ticha stadium\"", "question": "What is the highest capacity for the venue, ticha stadium, located in varna?", "context": "CREATE TABLE table_name_1 (capacity INTEGER, location VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_19 WHERE club = \"vihren\"", "question": "What is the highest capacity for the venue of the club, vihren?", "context": "CREATE TABLE table_name_19 (capacity INTEGER, club VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_name_30 WHERE club = \"pirin\"", "question": "What is the total number of capacity for the venue of the club, pirin?", "context": "CREATE TABLE table_name_30 (capacity VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(rating) FROM table_name_70 WHERE share < 4 AND viewers__millions_ > 2.47", "question": "WHAT IS THE RATING THAT HAD A SHARE SMALLER THAN 4, AND 2.47 MILLION VIEWERS?", "context": "CREATE TABLE table_name_70 (rating VARCHAR, share VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(viewers__millions_) FROM table_name_78 WHERE episode_number > 10 AND rating < 2", "question": "WHAT IS THE NUMBER OF VIEWERS WITH EPISODE LARGER THAN 10, RATING SMALLER THAN 2?", "context": "CREATE TABLE table_name_78 (viewers__millions_ INTEGER, episode_number VARCHAR, rating VARCHAR)"}, {"answer": "SELECT MAX(viewers__millions_) FROM table_name_9 WHERE episode_number < 15 AND share > 7", "question": "WHAT IS THE HIGHEST VIEWERS WITH AN EPISODE LESS THAN 15 AND SHARE LAGER THAN 7?", "context": "CREATE TABLE table_name_9 (viewers__millions_ INTEGER, episode_number VARCHAR, share VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE game > 6 AND october = 28", "question": "What was the score of the game after game 6 on October 28?", "context": "CREATE TABLE table_name_32 (score VARCHAR, game VARCHAR, october VARCHAR)"}, {"answer": "SELECT record FROM table_name_54 WHERE game < 6 AND opponent = \"chicago black hawks\"", "question": "What was the record for the game before game 6 against the chicago black hawks?", "context": "CREATE TABLE table_name_54 (record VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT position__eliminated FROM table_name_29 WHERE age\u00b9 < 22 AND full_name = \"muhammad fairul azreen bin mohd zahid\"", "question": "What is Position/ Eliminated, when Age\u00b9 is less than 22, and when Full Name is \"Muhammad Fairul Azreen Bin Mohd Zahid\"?", "context": "CREATE TABLE table_name_29 (position__eliminated VARCHAR, age\u00b9 VARCHAR, full_name VARCHAR)"}, {"answer": "SELECT occupation\u00b2 FROM table_name_52 WHERE age\u00b9 > 24 AND alias = \"black\"", "question": "What is Occupation\u00b2, when Age\u00b9 is greater than 24, when Alias is \"Black\"?", "context": "CREATE TABLE table_name_52 (occupation\u00b2 VARCHAR, age\u00b9 VARCHAR, alias VARCHAR)"}, {"answer": "SELECT full_name FROM table_name_23 WHERE age\u00b9 = 20 AND occupation\u00b2 = \"student\"", "question": "What is Full Name, when Age\u00b9 is \"20\", and when Occupation\u00b2 is \"Student\"?", "context": "CREATE TABLE table_name_23 (full_name VARCHAR, age\u00b9 VARCHAR, occupation\u00b2 VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE score = \"2-8\"", "question": "Who is the Opponent when the Score is 2-8?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE site = \"shriver field\"", "question": "What is the Date if the Site is Shriver Field?", "context": "CREATE TABLE table_name_34 (date VARCHAR, site VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE time = \"5:00pm\"", "question": "Which Score has a Time of 5:00pm?", "context": "CREATE TABLE table_name_13 (score VARCHAR, time VARCHAR)"}, {"answer": "SELECT site FROM table_name_98 WHERE score = \"0-1\"", "question": "Which site has a Score of 0-1?", "context": "CREATE TABLE table_name_98 (site VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_17 WHERE site = \"homewood field\" AND score = \"5-8\"", "question": "Who was the Opponent at Homewood Field with a Score of 5-8?", "context": "CREATE TABLE table_name_17 (opponent VARCHAR, site VARCHAR, score VARCHAR)"}, {"answer": "SELECT team__number1 FROM table_name_85 WHERE position = \"11th place\"", "question": "What is the team #1 with an 11th place position?", "context": "CREATE TABLE table_name_85 (team__number1 VARCHAR, position VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_62 WHERE team__number2 = \"bp. honv\u00e9d\"", "question": "What is the 1st leg of bp. honv\u00e9d team #2?", "context": "CREATE TABLE table_name_62 (team__number2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_25 WHERE agg = \"4-3\"", "question": "What is the 1st leg with a 4-3 agg.?", "context": "CREATE TABLE table_name_25 (agg VARCHAR)"}, {"answer": "SELECT position FROM table_name_8 WHERE agg = \"2-6\"", "question": "What position has a 2-6 agg.?", "context": "CREATE TABLE table_name_8 (position VARCHAR, agg VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_68 WHERE agg = \"4-9\"", "question": "What is the 2nd leg of the 4-9 agg.?", "context": "CREATE TABLE table_name_68 (agg VARCHAR)"}, {"answer": "SELECT sport FROM table_name_22 WHERE club = \"montgomery biscuits\"", "question": "Which sport had the club of the Montgomery Biscuits?", "context": "CREATE TABLE table_name_22 (sport VARCHAR, club VARCHAR)"}, {"answer": "SELECT venue FROM table_name_98 WHERE sport = \"basketball\"", "question": "Which venue held a basketball team?", "context": "CREATE TABLE table_name_98 (venue VARCHAR, sport VARCHAR)"}, {"answer": "SELECT sport FROM table_name_76 WHERE city = \"huntsville\" AND venue = \"von braun center\" AND league = \"southern indoor football league\"", "question": "Which sport was held in Huntsville at the Von Braun Center as part of the Southern Indoor Football League?", "context": "CREATE TABLE table_name_76 (sport VARCHAR, league VARCHAR, city VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_85 WHERE league = \"gridiron development football league\"", "question": "Which venue hosted the Gridiron Development Football League?", "context": "CREATE TABLE table_name_85 (venue VARCHAR, league VARCHAR)"}, {"answer": "SELECT venue FROM table_name_68 WHERE club = \"dixie derby girls\"", "question": "Which venue hosted the Dixie Derby Girls?", "context": "CREATE TABLE table_name_68 (venue VARCHAR, club VARCHAR)"}, {"answer": "SELECT city FROM table_name_96 WHERE club = \"huntsville stars\"", "question": "Which city has a club called the Huntsville Stars?", "context": "CREATE TABLE table_name_96 (city VARCHAR, club VARCHAR)"}, {"answer": "SELECT type FROM table_name_49 WHERE title = \"so alive\"", "question": "which Type has a Title of so alive?", "context": "CREATE TABLE table_name_49 (type VARCHAR, title VARCHAR)"}, {"answer": "SELECT year FROM table_name_15 WHERE label = \"atco records\" AND type = \"album\"", "question": "Name the Year which has a Label of atco records and a Type of album? Question 2", "context": "CREATE TABLE table_name_15 (year VARCHAR, label VARCHAR, type VARCHAR)"}, {"answer": "SELECT title FROM table_name_73 WHERE type = \"album\" AND year > 1986", "question": "Which Title has a Type of album and a Year larger than 1986?", "context": "CREATE TABLE table_name_73 (title VARCHAR, type VARCHAR, year VARCHAR)"}, {"answer": "SELECT title FROM table_name_83 WHERE type = \"ep\" AND year > 2003", "question": "Which Title has a Type of ep and a Year larger than 2003?", "context": "CREATE TABLE table_name_83 (title VARCHAR, type VARCHAR, year VARCHAR)"}, {"answer": "SELECT title FROM table_name_34 WHERE type = \"album\" AND year = 1983", "question": "Which Title has a Type of album in 1983?", "context": "CREATE TABLE table_name_34 (title VARCHAR, type VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE attendance = \"20,874\"", "question": "What was the date of the game with an attendance of 20,874 fans?", "context": "CREATE TABLE table_name_23 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_66 WHERE opponent = \"vs. calgary stampeders\" AND week < 15", "question": "What was the record the the match against vs. calgary stampeders before week 15?", "context": "CREATE TABLE table_name_66 (record VARCHAR, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT status FROM table_name_31 WHERE artist = \"neil sedaka\"", "question": "What is the status when the artist is Neil Sedaka?", "context": "CREATE TABLE table_name_31 (status VARCHAR, artist VARCHAR)"}, {"answer": "SELECT theme FROM table_name_59 WHERE week = \"top 11\"", "question": "What was the theme for the Top 11 week?", "context": "CREATE TABLE table_name_59 (theme VARCHAR, week VARCHAR)"}, {"answer": "SELECT week FROM table_name_41 WHERE status = \"bottom 2\" AND artist = \"celine dion\"", "question": "What week did the contestant finish in the bottom 2 with a Celine Dion song?", "context": "CREATE TABLE table_name_41 (week VARCHAR, status VARCHAR, artist VARCHAR)"}, {"answer": "SELECT order_sung FROM table_name_43 WHERE artist = \"richard marx\"", "question": "What order was the performance of a Richard Marx song?", "context": "CREATE TABLE table_name_43 (order_sung VARCHAR, artist VARCHAR)"}, {"answer": "SELECT artist FROM table_name_89 WHERE theme = \"billboard #1\"", "question": "What artist's song was performed in the week with theme of Billboard #1?", "context": "CREATE TABLE table_name_89 (artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT headquarter FROM table_name_49 WHERE type = \"independent online news portal\"", "question": "What is Headquarter, when Type is Independent Online News Portal?", "context": "CREATE TABLE table_name_49 (headquarter VARCHAR, type VARCHAR)"}, {"answer": "SELECT status FROM table_name_24 WHERE newspaper_magazine = \"al-thawra\"", "question": "What is Status, when Newspaper/Magazine is Al-Thawra?", "context": "CREATE TABLE table_name_24 (status VARCHAR, newspaper_magazine VARCHAR)"}, {"answer": "SELECT headquarter FROM table_name_4 WHERE newspaper_magazine = \"al-ayyam\"", "question": "What is Headquarter, when Newspaper/Magazine is Al-Ayyam?", "context": "CREATE TABLE table_name_4 (headquarter VARCHAR, newspaper_magazine VARCHAR)"}, {"answer": "SELECT type FROM table_name_97 WHERE newspaper_magazine = \"telecoms & it magazine\"", "question": "What is Type, when Newspaper/Magazine is Telecoms & It Magazine?", "context": "CREATE TABLE table_name_97 (type VARCHAR, newspaper_magazine VARCHAR)"}, {"answer": "SELECT headquarter FROM table_name_89 WHERE language = \"english\" AND type = \"independent online news portal\"", "question": "What is Headquarter, when Language is English, and when Type is Independent Online News Portal?", "context": "CREATE TABLE table_name_89 (headquarter VARCHAR, language VARCHAR, type VARCHAR)"}, {"answer": "SELECT headquarter FROM table_name_11 WHERE type = \"government-owned\" AND newspaper_magazine = \"al-jumhuriya\"", "question": "What is Headquarter, when Type is Government-Owned, and when Newspaper/Magazine is Al-Jumhuriya?", "context": "CREATE TABLE table_name_11 (headquarter VARCHAR, type VARCHAR, newspaper_magazine VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_name_59 WHERE official_name = \"saint-paul\" AND area_km_2 > 228.65", "question": "For Saint-Paul parish, if it has an area of over 228.65 kilometers how many people live there?", "context": "CREATE TABLE table_name_59 (population VARCHAR, official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT Box AS score FROM table_name_20 WHERE score = \"86-96\"", "question": "What was the box score during a game that had a score of 86-96?", "context": "CREATE TABLE table_name_20 (Box VARCHAR, score VARCHAR)"}, {"answer": "SELECT report FROM table_name_43 WHERE venue = \"state sports centre\"", "question": "What was the report at State Sports Centre?", "context": "CREATE TABLE table_name_43 (report VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_8 WHERE venue = \"gold coast convention centre\"", "question": "Who was the home team at Gold Coast Convention Centre?", "context": "CREATE TABLE table_name_8 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE away_team = \"gold coast blaze\"", "question": "What was the date that featured a game against Gold Coast Blaze?", "context": "CREATE TABLE table_name_21 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT Box AS score FROM table_name_39 WHERE home_team = \"adelaide 36ers\"", "question": "What was the box score during a home game of the Adelaide 36ers?", "context": "CREATE TABLE table_name_39 (Box VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_86 WHERE overall < 304 AND position = \"g\" AND round < 11", "question": "How many Picks have an Overall smaller than 304, and a Position of g, and a Round smaller than 11?", "context": "CREATE TABLE table_name_86 (pick VARCHAR, round VARCHAR, overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_31 WHERE name = \"raleigh mckenzie\" AND pick > 10", "question": "Which Overall is the highest one that has a Name of raleigh mckenzie, and a Pick larger than 10?", "context": "CREATE TABLE table_name_31 (overall INTEGER, name VARCHAR, pick VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_51 WHERE college = \"hawaii\" AND overall < 122", "question": "How many Picks have a College of hawaii, and an Overall smaller than 122?", "context": "CREATE TABLE table_name_51 (pick VARCHAR, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_7 WHERE pick < 10 AND name = \"tory nixon\"", "question": "Which Round is the highest one that has a Pick smaller than 10, and a Name of tory nixon?", "context": "CREATE TABLE table_name_7 (round INTEGER, pick VARCHAR, name VARCHAR)"}, {"answer": "SELECT ofsted FROM table_name_83 WHERE capacity = 1677", "question": "Which Ofsted has a Capacity of 1677?", "context": "CREATE TABLE table_name_83 (ofsted VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT MIN(ofsted) FROM table_name_63 WHERE school = \"marple hall school\" AND capacity > 1711", "question": "Which Ofsted has a School of marple hall school, and a Capacity larger than 1711?", "context": "CREATE TABLE table_name_63 (ofsted INTEGER, school VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT school FROM table_name_65 WHERE ages = \"11-16\" AND ofsted < 106142 AND capacity = 1206", "question": "Which School has Ages of 11-16, and an Ofsted smaller than 106142, and a Capacity of 1206?", "context": "CREATE TABLE table_name_65 (school VARCHAR, capacity VARCHAR, ages VARCHAR, ofsted VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_54 WHERE locality = \"heaton chapel\"", "question": "What is heaton chapel's capacity?", "context": "CREATE TABLE table_name_54 (capacity INTEGER, locality VARCHAR)"}, {"answer": "SELECT school FROM table_name_89 WHERE capacity > 730 AND ofsted < 106135 AND locality = \"heaton mersey\"", "question": "Which School has a Capacity larger than 730, and an Ofsted smaller than 106135, and a Locality of heaton mersey?", "context": "CREATE TABLE table_name_89 (school VARCHAR, locality VARCHAR, capacity VARCHAR, ofsted VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_66 WHERE date = \"march 21\"", "question": "What is the lowest Game, when Date is March 21?", "context": "CREATE TABLE table_name_66 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_90 WHERE game = 77", "question": "What is Team, when Game is 77?", "context": "CREATE TABLE table_name_90 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_name_21 WHERE game = 73", "question": "What is Team, when Game is 73?", "context": "CREATE TABLE table_name_21 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT location FROM table_name_68 WHERE type = \"surveying\"", "question": "What location has surveying as the type?", "context": "CREATE TABLE table_name_68 (location VARCHAR, type VARCHAR)"}, {"answer": "SELECT AVG(wheels) FROM table_name_71 WHERE type = \"accounting\" AND location = \"ibm collection\"", "question": "What average wheels has accounting as the type, with IBM Collection as the location?", "context": "CREATE TABLE table_name_71 (wheels INTEGER, type VARCHAR, location VARCHAR)"}, {"answer": "SELECT configuration FROM table_name_25 WHERE country = \"france\" AND type = \"accounting\" AND wheels > 6", "question": "What is the configuration for the country France, with accounting as the type, and wheels greater than 6?", "context": "CREATE TABLE table_name_25 (configuration VARCHAR, wheels VARCHAR, country VARCHAR, type VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_name_23 WHERE pick__number < 200 AND player = \"travis davis\"", "question": "Which NFL team has a pick# less than 200 for Travis Davis?", "context": "CREATE TABLE table_name_23 (nfl_team VARCHAR, pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_94 WHERE position = \"running back\" AND college = \"san jose state\"", "question": "Which player was a running back from San Jose State?", "context": "CREATE TABLE table_name_94 (player VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_23 WHERE college = \"south dakota\"", "question": "What is the pick# from South Dakota college?", "context": "CREATE TABLE table_name_23 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_30 WHERE position = \"nose tackle\"", "question": "Which college has a nose tackle position?", "context": "CREATE TABLE table_name_30 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT home_or_away FROM table_name_25 WHERE shirt_number > 18", "question": "Can you tell me the Home or the Away that has the Shirt Number larger than 18?", "context": "CREATE TABLE table_name_25 (home_or_away VARCHAR, shirt_number INTEGER)"}, {"answer": "SELECT score FROM table_name_62 WHERE result = \"win\" AND date = \"13 november 2009\"", "question": "Can you tell me the Score that has the Result of win, and the Date of 13 november 2009?", "context": "CREATE TABLE table_name_62 (score VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(cap_number) FROM table_name_96 WHERE date = \"8 february 2009\" AND shirt_number > 19", "question": "Can you tell me the lowest Cap Number that has the Date of 8 february 2009, and the Shirt Number larger than 19?", "context": "CREATE TABLE table_name_96 (cap_number INTEGER, date VARCHAR, shirt_number VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_98 WHERE position > 6 AND lost < 13", "question": "Which Points have a Position larger than 6, and a Lost smaller than 13?", "context": "CREATE TABLE table_name_98 (points INTEGER, position VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_46 WHERE lost = 2 AND played < 14", "question": "How much Drawn has a Lost of 2, and Played smaller than 14?", "context": "CREATE TABLE table_name_46 (drawn INTEGER, lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_91 WHERE drawn < 2 AND name = \"esc holzkirchen\" AND played < 14", "question": "Which Points is the highest one that has a Drawn smaller than 2, and a Name of esc holzkirchen, and Played smaller than 14?", "context": "CREATE TABLE table_name_91 (points INTEGER, played VARCHAR, drawn VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_79 WHERE name = \"esc holzkirchen\" AND played < 14", "question": "Which Lost is the lowest one that has a Name of esc holzkirchen, and Played smaller than 14?", "context": "CREATE TABLE table_name_79 (lost INTEGER, name VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(episode__number) FROM table_name_89 WHERE rating / SHARE(18 AS \u201349) = 0.9 / 4 AND viewers__millions_ > 3.79", "question": "What is the lowest numbered episode that had a rating/share of 0.9/4 and more than 3.79 million viewers?", "context": "CREATE TABLE table_name_89 (episode__number INTEGER, viewers__millions_ VARCHAR, rating VARCHAR)"}, {"answer": "SELECT AVG(viewers__millions_) FROM table_name_28 WHERE episode__number < 11 AND share = \"4\"", "question": "What is the average number of million viewers that watched an episode before episode 11 with a share of 4?", "context": "CREATE TABLE table_name_28 (viewers__millions_ INTEGER, episode__number VARCHAR, share VARCHAR)"}, {"answer": "SELECT rating / SHARE(18 AS \u201349) FROM table_name_72 WHERE episode__number = 13", "question": "What is the rating/share for episode 13?", "context": "CREATE TABLE table_name_72 (rating VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT MIN(viewers__millions_) FROM table_name_74 WHERE rating / SHARE(18 AS \u201349) = 1.1 / 3 AND episode__number < 5", "question": "What is the lowest number of million viewers for an episode before episode 5 with a rating/share of 1.1/3?", "context": "CREATE TABLE table_name_74 (viewers__millions_ INTEGER, episode__number VARCHAR, rating VARCHAR)"}, {"answer": "SELECT years_of_nba_experience_[a_] FROM table_name_28 WHERE pos = \"g\" AND team = \"portland trail blazers\"", "question": "How many years of NBA experience does the player who plays position g for the Portland Trail Blazers?", "context": "CREATE TABLE table_name_28 (years_of_nba_experience_ VARCHAR, a_ VARCHAR, pos VARCHAR, team VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE team = \"buffalo braves\" AND previous_team = \"los angeles lakers\" AND career_with_the_franchise_[b_] = \"1970\"", "question": "Who is the player from the Buffalo Braves with the previous team Los Angeles Lakers and a career with the franchase in 1970?", "context": "CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR, previous_team VARCHAR, career_with_the_franchise_ VARCHAR, b_ VARCHAR)"}, {"answer": "SELECT player FROM table_name_23 WHERE years_of_nba_experience_[a_] = 7", "question": "Who is the player with 7 years of NBA experience?", "context": "CREATE TABLE table_name_23 (player VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_10 WHERE regular_season = 1063 AND playoffs > 119", "question": "how may times is regular season 1063 and playoffs more than 119?", "context": "CREATE TABLE table_name_10 (total VARCHAR, regular_season VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT years FROM table_name_51 WHERE playoffs = 115", "question": "what is the years when playoffs is 115?", "context": "CREATE TABLE table_name_51 (years VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT competition FROM table_name_38 WHERE score = \"2\u20130\"", "question": "What Competition had a Score of 2\u20130?", "context": "CREATE TABLE table_name_38 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE venue = \"gelora sriwijaya stadium\"", "question": "What was the Score in Gelora Sriwijaya Stadium?", "context": "CREATE TABLE table_name_47 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_6 WHERE result = \"2\u20132 (d)\"", "question": "What is the Venue of the Competition with a Result of 2\u20132 (d)?", "context": "CREATE TABLE table_name_6 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_95 WHERE score = \"4\u20130\" AND venue = \"mbpj stadium\"", "question": "What is the Result of the Competition at MBPJ Stadium with a Score of 4\u20130?", "context": "CREATE TABLE table_name_95 (result VARCHAR, score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_36 WHERE result = \"2\u20132 (d)\"", "question": "What is the Venue of the Competition with a Result of 2\u20132 (d)?", "context": "CREATE TABLE table_name_36 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_60 WHERE result = \"2\u20130 (w)\" AND venue = \"shah alam stadium\"", "question": "What Competition in Shah Alam Stadium have a Result of 2\u20130 (w)?", "context": "CREATE TABLE table_name_60 (competition VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(avg_g) FROM table_name_71 WHERE long = 93 AND loss < 249", "question": "Which Avg/G has a Long of 93, and a Loss smaller than 249?", "context": "CREATE TABLE table_name_71 (avg_g INTEGER, long VARCHAR, loss VARCHAR)"}, {"answer": "SELECT SUM(avg_g) FROM table_name_93 WHERE gain = 1 OFFSET 839", "question": "Which Avg/G has a Gain of 1,839?", "context": "CREATE TABLE table_name_93 (avg_g INTEGER, gain VARCHAR)"}, {"answer": "SELECT SUM(avg_g) FROM table_name_59 WHERE name = \"josh freeman\" AND loss < 134", "question": "Which Avg/G has a Name of josh freeman, and a Loss smaller than 134?", "context": "CREATE TABLE table_name_59 (avg_g INTEGER, name VARCHAR, loss VARCHAR)"}, {"answer": "SELECT COUNT(gain) FROM table_name_77 WHERE long = 29 AND avg_g < 33.7", "question": "How much Gain has a Long of 29, and an Avg/G smaller than 33.7?", "context": "CREATE TABLE table_name_77 (gain VARCHAR, long VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT MAX(long) FROM table_name_22 WHERE loss > 3 AND gain > 2 OFFSET 894", "question": "Which Long is the highest one that has a Loss larger than 3, and a Gain larger than 2,894?", "context": "CREATE TABLE table_name_22 (long INTEGER, loss VARCHAR, gain VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_18 WHERE nationality = \"united states\" AND position = \"rw\"", "question": "What is the average round of the rw position player from the United States?", "context": "CREATE TABLE table_name_18 (round INTEGER, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT college_junior_team FROM table_name_35 WHERE pick < 44 AND player = \"tyler myers\"", "question": "What is the college/junior team of player tyler myers, who has a pick less than 44?", "context": "CREATE TABLE table_name_35 (college_junior_team VARCHAR, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_2 WHERE pick < 104 AND player = \"corey fienhage\"", "question": "What is the nationality of player corey fienhage, who has a pick less than 104?", "context": "CREATE TABLE table_name_2 (nationality VARCHAR, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_25 WHERE position = \"lw\"", "question": "What is the sum of the pick of the lw position player?", "context": "CREATE TABLE table_name_25 (pick INTEGER, position VARCHAR)"}, {"answer": "SELECT record FROM table_name_50 WHERE week = 2", "question": "What is the Record in Week 2?", "context": "CREATE TABLE table_name_50 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE result = \"w 23\u201317\"", "question": "WHEN has a Result of w 23\u201317?", "context": "CREATE TABLE table_name_96 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE opponent = \"miami dolphins\"", "question": "WHEN has a Opponent of miami dolphins?", "context": "CREATE TABLE table_name_94 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_40 WHERE ranking = \"webometrics\"", "question": "What was the 2009 ranking for Webometrics?", "context": "CREATE TABLE table_name_40 (ranking VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_53 WHERE rebounds < 130 AND team = \"partizan igokea\"", "question": "What rank is Partizan Igokea that has less than 130 rebounds?", "context": "CREATE TABLE table_name_53 (rank INTEGER, rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT college FROM table_name_22 WHERE pick__number > 30 AND position = \"ol\"", "question": "Which College has a Pick # larger than 30, and a Position of ol?", "context": "CREATE TABLE table_name_22 (college VARCHAR, pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_45 WHERE college = \"concordia\"", "question": "Which Pick # has a College of concordia?", "context": "CREATE TABLE table_name_45 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_73 WHERE pick__number > 31", "question": "Which CFL Team has a Pick # larger than 31?", "context": "CREATE TABLE table_name_73 (cfl_team VARCHAR, pick__number INTEGER)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_39 WHERE college = \"buffalo\"", "question": "What is buffalo's pick #?", "context": "CREATE TABLE table_name_39 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_64 WHERE position = \"ol\" AND pick__number < 32", "question": "Which College has a Position of ol, and a Pick # smaller than 32?", "context": "CREATE TABLE table_name_64 (college VARCHAR, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT team FROM table_name_15 WHERE previous_team = \"indiana pacers\"", "question": "What is the team of the player who was previously on the indiana pacers?", "context": "CREATE TABLE table_name_15 (team VARCHAR, previous_team VARCHAR)"}, {"answer": "SELECT previous_team FROM table_name_12 WHERE nba_years_[a_] = \"4\" AND pick < 16", "question": "What is the previous team of the player with 4 NBA years and a pick less than 16?", "context": "CREATE TABLE table_name_12 (previous_team VARCHAR, pick VARCHAR, nba_years_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT nba_years_[a_] FROM table_name_58 WHERE nationality = \"united states\" AND previous_team = \"los angeles lakers\"", "question": "How many NBA years did the player from the United States who was previously on the los angeles lakers have?", "context": "CREATE TABLE table_name_58 (nba_years_ VARCHAR, a_ VARCHAR, nationality VARCHAR, previous_team VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_75 WHERE winner = \"nadal\" AND \"nadal\" = 16", "question": "What tournament did Nadal win and had a nadal of 16?", "context": "CREATE TABLE table_name_75 (tournament VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MAX(nadal) FROM table_name_55 WHERE round = \"final\" AND tournament = \"miami\"", "question": "What was the nadal in Miami in the final round?", "context": "CREATE TABLE table_name_55 (nadal INTEGER, round VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT sets FROM table_name_95 WHERE nadal = 13 AND federer = 6", "question": "What were the sets when Federer had 6 and a nadal of 13?", "context": "CREATE TABLE table_name_95 (sets VARCHAR, nadal VARCHAR, federer VARCHAR)"}, {"answer": "SELECT college FROM table_name_31 WHERE overall = 9", "question": "Which college had an overall pick of 9?", "context": "CREATE TABLE table_name_31 (college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT source_of_wealth FROM table_name_51 WHERE value = \"\u00a35726m\"", "question": "What source of wealth has a value of \u00a35726m?", "context": "CREATE TABLE table_name_51 (source_of_wealth VARCHAR, value VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_98 WHERE opponents < 80 AND record = \"1-0\"", "question": "What is the highest Game, when Opponents is less than 80, and when Record is \"1-0\"?", "context": "CREATE TABLE table_name_98 (game INTEGER, opponents VARCHAR, record VARCHAR)"}, {"answer": "SELECT result FROM table_name_70 WHERE date = \"december 12\"", "question": "What is Result, when Date is \"December 12\"?", "context": "CREATE TABLE table_name_70 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT streak FROM table_name_12 WHERE heat_points = 101 AND game = 16", "question": "What is Streak, when Heat Points is \"101\", and when Game is \"16\"?", "context": "CREATE TABLE table_name_12 (streak VARCHAR, heat_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT heat_points FROM table_name_11 WHERE game < 80 AND date = \"april 26 (first round)\"", "question": "What is Heat Points, when Game is less than 80, and when Date is \"April 26 (First Round)\"?", "context": "CREATE TABLE table_name_11 (heat_points VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(heat_points) FROM table_name_83 WHERE result = \"loss\" AND game > 72 AND date = \"april 21\"", "question": "What is the average Heat Points, when Result is \"Loss\", when Game is greater than 72, and when Date is \"April 21\"?", "context": "CREATE TABLE table_name_83 (heat_points INTEGER, date VARCHAR, result VARCHAR, game VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_39 WHERE week = 2", "question": "What was the attendance for week 2?", "context": "CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_79 WHERE opponent = \"cincinnati bengals\"", "question": "What was the attendance when the Cincinnati Bengals were the opponents?", "context": "CREATE TABLE table_name_79 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT country FROM table_name_9 WHERE year = 2009 AND publication = \"paste\"", "question": "What country had a paste publication in 2009?", "context": "CREATE TABLE table_name_9 (country VARCHAR, year VARCHAR, publication VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_79 WHERE year > 2009 AND accolade = \"125 best albums of the past 25 years\"", "question": "What was the lowest rank after 2009 with an accolade of 125 best albums of the past 25 years?", "context": "CREATE TABLE table_name_79 (rank INTEGER, year VARCHAR, accolade VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE player = \"tom gillis\"", "question": "What is Tom Gillis' score?", "context": "CREATE TABLE table_name_33 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_70 WHERE place = \"t3\"", "question": "Which player is T3?", "context": "CREATE TABLE table_name_70 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_54 WHERE place = \"t10\" AND player = \"len mattiace\"", "question": "Which country has is Len Mattiace in T10 place?", "context": "CREATE TABLE table_name_54 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(score) FROM table_name_60 WHERE place = \"t5\" AND country = \"united states\"", "question": "What is the average score for the player who is T5 in the United States?", "context": "CREATE TABLE table_name_60 (score INTEGER, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT 1976 FROM table_name_46 WHERE 1980 = \"2.0\"", "question": "what is 1976 when 1980 is 2.0?", "context": "CREATE TABLE table_name_46 (Id VARCHAR)"}, {"answer": "SELECT 1980 FROM table_name_9 WHERE 1979 = \"951\"", "question": "what is 1980 when 1979 is 951?", "context": "CREATE TABLE table_name_9 (Id VARCHAR)"}, {"answer": "SELECT 1977 FROM table_name_65 WHERE 1980 = \"chile\"", "question": "what is 1977 when 1980 is chile?", "context": "CREATE TABLE table_name_65 (Id VARCHAR)"}, {"answer": "SELECT 1976 FROM table_name_96 WHERE 1977 = \"3.5\"", "question": "what is 1976 when 1977 is 3.5?", "context": "CREATE TABLE table_name_96 (Id VARCHAR)"}, {"answer": "SELECT 1977 FROM table_name_84 WHERE 1978 = \"4.1\"", "question": "what is 1977 when 1978 is 4.1?", "context": "CREATE TABLE table_name_84 (Id VARCHAR)"}, {"answer": "SELECT 1980 FROM table_name_22 WHERE 1978 = \"2.3\"", "question": "what is 1980 when 1978 is 2.3?", "context": "CREATE TABLE table_name_22 (Id VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_54 WHERE model_number = \"c7 1.0\"", "question": "What is the Frequency for Model Number c7 1.0?", "context": "CREATE TABLE table_name_54 (frequency VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_62 WHERE model_number = \"c7 1.8\"", "question": "What is the Release Date for Model Number c7 1.8?", "context": "CREATE TABLE table_name_62 (release_date VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT front_side_bus FROM table_name_68 WHERE model_number = \"c7 1.5\"", "question": "What is the Front Side Bus for Model Number c7 1.5?", "context": "CREATE TABLE table_name_68 (front_side_bus VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_87 WHERE country = \"united states\" AND player = \"hale irwin\"", "question": "What to par is located in the united states and has the player by the name of hale irwin?", "context": "CREATE TABLE table_name_87 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_63 WHERE score = 66 - 70 - 69 - 71 = 276", "question": "What country has the score og 66-70-69-71=276?", "context": "CREATE TABLE table_name_63 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_52 WHERE date = \"april 25\"", "question": "WHAT IS THE HOME TEAM ON APRIL 25?", "context": "CREATE TABLE table_name_52 (home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE road_team = \"boston\" AND result = \"126-105\"", "question": "WHAT IS THE DATE WITH BOSTON ROAD TEAM AND 126-105 RESULT?", "context": "CREATE TABLE table_name_86 (date VARCHAR, road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT game FROM table_name_30 WHERE result = \"99-112\"", "question": "WHAT GAME HAD A SCORE OF 99-112?", "context": "CREATE TABLE table_name_30 (game VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_60 WHERE date = \"april 23\"", "question": "WHAT IS THE RESULT OF THE GAME ON APRIL 23?", "context": "CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_68 WHERE road_team = \"boston\" AND date = \"april 23\"", "question": "WHAT IS THE RESULT WITH THE BOSTON ROAD TEAM, ON APRIL 23?", "context": "CREATE TABLE table_name_68 (result VARCHAR, road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_21 WHERE result = \"99-112\"", "question": "WHAT IS THE HOME TEAM, RESULT 99-112?", "context": "CREATE TABLE table_name_21 (home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_52 WHERE name = \"brown\"", "question": "What is Brown's transfer window?", "context": "CREATE TABLE table_name_52 (transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_65 WHERE status = \"transfer\" AND country = \"wal\"", "question": "What is the transfer window with a status of transfer from the country of Wal?", "context": "CREATE TABLE table_name_65 (transfer_window VARCHAR, status VARCHAR, country VARCHAR)"}, {"answer": "SELECT status FROM table_name_28 WHERE country = \"eng\" AND name = \"maynard\"", "question": "What is the status of the Eng Country from the Maynard name?", "context": "CREATE TABLE table_name_28 (status VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_31 WHERE transfer_fee = \"free\" AND status = \"transfer\" AND country = \"eng\"", "question": "What is the name of the free transfer fee with a transfer status and an ENG country?", "context": "CREATE TABLE table_name_31 (name VARCHAR, country VARCHAR, transfer_fee VARCHAR, status VARCHAR)"}, {"answer": "SELECT status FROM table_name_79 WHERE country = \"eng\" AND name = \"farquharson\"", "question": "What is the status of the ENG Country with the name of Farquharson?", "context": "CREATE TABLE table_name_79 (status VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_82 WHERE took_office = \"2006\"", "question": "What is Left Office, when Took Office is 2006?", "context": "CREATE TABLE table_name_82 (left_office VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_83 WHERE party = \"vacant (1999-2001)\"", "question": "What is Left Office, when Party is Vacant (1999-2001)?", "context": "CREATE TABLE table_name_83 (left_office VARCHAR, party VARCHAR)"}, {"answer": "SELECT name FROM table_name_66 WHERE president = \"khamtai siphandon\" AND left_office = \"1999\"", "question": "What is Name, when President is Khamtai Siphandon, and when Left Office is 1999?", "context": "CREATE TABLE table_name_66 (name VARCHAR, president VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT party FROM table_name_8 WHERE name = \"oudom khattigna\"", "question": "What is Party, when Name is Oudom Khattigna?", "context": "CREATE TABLE table_name_8 (party VARCHAR, name VARCHAR)"}, {"answer": "SELECT party FROM table_name_14 WHERE took_office = \"1998\"", "question": "What is Party, when Took Office is 1998?", "context": "CREATE TABLE table_name_14 (party VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_25 WHERE took_office = \"1998\"", "question": "What is Left Office, when Took Office is 1998?", "context": "CREATE TABLE table_name_25 (left_office VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE away_team = \"geelong\"", "question": "When was the away team geelong?", "context": "CREATE TABLE table_name_13 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT ground FROM table_name_19 WHERE away_team = \"essendon\"", "question": "What was the ground for away team essendon?", "context": "CREATE TABLE table_name_19 (ground VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT ground FROM table_name_59 WHERE away_team = \"sydney\"", "question": "What was the ground for away team sydney?", "context": "CREATE TABLE table_name_59 (ground VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE week = 6", "question": "What date was the week 6 game played on?", "context": "CREATE TABLE table_name_80 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT week FROM table_name_85 WHERE venue = \"mile high stadium\"", "question": "What week was the game played at Mile High Stadium?", "context": "CREATE TABLE table_name_85 (week VARCHAR, venue VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_53 WHERE drawn = \"0\" AND points = \"101\"", "question": "What is the losing bonus when drawn was 0, and there were 101 points?", "context": "CREATE TABLE table_name_53 (losing_bonus VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_29 WHERE lost = \"11\"", "question": "What is the points when the lost was 11?", "context": "CREATE TABLE table_name_29 (points_for VARCHAR, lost VARCHAR)"}, {"answer": "SELECT lost FROM table_name_60 WHERE club = \"barry rfc\"", "question": "What is the lost when the club was Barry RFC?", "context": "CREATE TABLE table_name_60 (lost VARCHAR, club VARCHAR)"}, {"answer": "SELECT played FROM table_name_13 WHERE tries_against = \"84\" AND drawn = \"2\"", "question": "What is the played number when tries against is 84, and drawn is 2?", "context": "CREATE TABLE table_name_13 (played VARCHAR, tries_against VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT club FROM table_name_2 WHERE points = \"22\"", "question": "What is the name of the club with 22 points?", "context": "CREATE TABLE table_name_2 (club VARCHAR, points VARCHAR)"}, {"answer": "SELECT club FROM table_name_62 WHERE played = \"22\" AND try_bonus = \"0\"", "question": "What is the name of the club when the played number is 22, and the try bonus was 0?", "context": "CREATE TABLE table_name_62 (club VARCHAR, played VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_77 WHERE position = \"g\"", "question": "What was the nationality of the players with a position of g?", "context": "CREATE TABLE table_name_77 (nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT team FROM table_name_15 WHERE high_assists = \"rashard lewis (4)\"", "question": "What is Team, when High Assists is \"Rashard Lewis (4)\"?", "context": "CREATE TABLE table_name_15 (team VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_8 WHERE high_rebounds = \"dwight howard (16)\"", "question": "What is High Points, when High Rebounds is \"Dwight Howard (16)\"?", "context": "CREATE TABLE table_name_8 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT series FROM table_name_74 WHERE date = \"june 7\"", "question": "What is Series, when Date is \"June 7\"?", "context": "CREATE TABLE table_name_74 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_80 WHERE high_rebounds = \"dwight howard , rashard lewis (10)\"", "question": "What is High Assists, when High Rebounds is \"Dwight Howard , Rashard Lewis (10)\"?", "context": "CREATE TABLE table_name_80 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_86 WHERE high_assists = \"hedo t\u00fcrko\u011flu (7)\"", "question": "What is the highest Game, when High Assists is \"Hedo T\u00fcrko\u011flu (7)\"?", "context": "CREATE TABLE table_name_86 (game INTEGER, high_assists VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_71 WHERE score = \"101\u201392\"", "question": "What Game had a Score of 101\u201392?", "context": "CREATE TABLE table_name_71 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE record = \"13\u201312\"", "question": "What is the Score of the Game with a Record of 13\u201312?", "context": "CREATE TABLE table_name_43 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT streak FROM table_name_65 WHERE date = \"december 30\"", "question": "What is the Streak on December 30?", "context": "CREATE TABLE table_name_65 (streak VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE game = 9", "question": "What is the date of game 9?", "context": "CREATE TABLE table_name_61 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_63 WHERE record = \"3-7\"", "question": "Who had the most assists in the game that led to a 3-7 record?", "context": "CREATE TABLE table_name_63 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_71 WHERE record = \"6-11-8\"", "question": "What is the location of the game with a 6-11-8 record?", "context": "CREATE TABLE table_name_71 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT game FROM table_name_65 WHERE record = \"6-12-8\"", "question": "What game has a 6-12-8 record?", "context": "CREATE TABLE table_name_65 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT points FROM table_name_25 WHERE points_for = \"562\"", "question": "What is Points, when Points For is \"562\"?", "context": "CREATE TABLE table_name_25 (points VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_59 WHERE played = \"correct as of 2006-06-10\"", "question": "What is Drawn, when Played is \"Correct as of 2006-06-10\"?", "context": "CREATE TABLE table_name_59 (drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_34 WHERE points_against = \"686\"", "question": "What is Drawn, when Points Against is \"686\"?", "context": "CREATE TABLE table_name_34 (drawn VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_80 WHERE drawn = \"2\" AND points = \"32\"", "question": "What is Points Against, when Drawn is \"2\", and when Points Of is \"32\"?", "context": "CREATE TABLE table_name_80 (points_against VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT lost FROM table_name_94 WHERE drawn = \"2\" AND points = \"36\"", "question": "What is Lost, when Drawn is \"2\", and when Points is \"36\"?", "context": "CREATE TABLE table_name_94 (lost VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_8 WHERE points = \"63\"", "question": "What is Points For, when Points is \"63\"?", "context": "CREATE TABLE table_name_8 (points_for VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_82 WHERE date = \"november 15\"", "question": "What was the game number that was played on November 15?", "context": "CREATE TABLE table_name_82 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_73 WHERE h___a = \"h\" AND round = \"semi-finals second leg\"", "question": "What is the lowest attendance when the h/A is H in the Semi-Finals Second Leg?", "context": "CREATE TABLE table_name_73 (attendance INTEGER, h___a VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_29 WHERE round = \"final\"", "question": "What is the attendance number in the final round?", "context": "CREATE TABLE table_name_29 (attendance INTEGER, round VARCHAR)"}, {"answer": "SELECT name FROM table_name_30 WHERE county = \"sheridan\" AND built = \"1915\"", "question": "What bridge in Sheridan county was built in 1915?", "context": "CREATE TABLE table_name_30 (name VARCHAR, county VARCHAR, built VARCHAR)"}, {"answer": "SELECT listed FROM table_name_86 WHERE county = \"sublette\" AND location = \"daniel\"", "question": "What is the listed for the bridge at Daniel in Sublette county?", "context": "CREATE TABLE table_name_86 (listed VARCHAR, county VARCHAR, location VARCHAR)"}, {"answer": "SELECT built FROM table_name_71 WHERE location = \"lovell\"", "question": "In what year was the bridge in Lovell built?", "context": "CREATE TABLE table_name_71 (built VARCHAR, location VARCHAR)"}, {"answer": "SELECT county FROM table_name_62 WHERE location = \"boulder\"", "question": "What is the county of the bridge in Boulder?", "context": "CREATE TABLE table_name_62 (county VARCHAR, location VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_79 WHERE score = \"84-88 (ot)\"", "question": "Which opponent has a score of 84-88 (ot)?", "context": "CREATE TABLE table_name_79 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_36 WHERE score = \"85-92\"", "question": "How many games have a score of 85-92?", "context": "CREATE TABLE table_name_36 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_81 WHERE score = \"99-89\"", "question": "What is the earliest game with a score of 99-89?", "context": "CREATE TABLE table_name_81 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_27 WHERE score = \"89-91\"", "question": "What game has a score of 89-91?", "context": "CREATE TABLE table_name_27 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE game > 10 AND score = \"99-89\"", "question": "On what date did a game higher than 10 have a score of 99-89?", "context": "CREATE TABLE table_name_26 (date VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE location = \"fleetcenter\" AND game < 9 AND score = \"104-94\"", "question": "On what date did Fleetcenter have a game lower than 9 with a score of 104-94?", "context": "CREATE TABLE table_name_59 (date VARCHAR, score VARCHAR, location VARCHAR, game VARCHAR)"}, {"answer": "SELECT place FROM table_name_44 WHERE score < 70", "question": "What is Place, when Score is less than 70?", "context": "CREATE TABLE table_name_44 (place VARCHAR, score INTEGER)"}, {"answer": "SELECT to_par FROM table_name_80 WHERE country = \"united states\" AND place = \"t4\" AND player = \"frank boynton\"", "question": "What is To Par, when Country is \"United States\", when Place is \"T4\", and when Player is \"Frank Boynton\"?", "context": "CREATE TABLE table_name_80 (to_par VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_96 WHERE country = \"united states\" AND place = \"t4\" AND player = \"arnold palmer\"", "question": "What is To Par, when Country is \"United States\", when Place is \"T4\", and when Player is \"Arnold Palmer\"?", "context": "CREATE TABLE table_name_96 (to_par VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT d\u00e9part_de_la_main_gauche FROM table_name_26 WHERE mode = \"do\"", "question": "What is the Depart de la main gauche of the do Mode?", "context": "CREATE TABLE table_name_26 (d\u00e9part_de_la_main_gauche VARCHAR, mode VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_8 WHERE name = \"john curry\" AND points > 338.43", "question": "Which Rank has a Name of john curry, and Points larger than 338.43?", "context": "CREATE TABLE table_name_8 (rank INTEGER, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(placings) FROM table_name_1 WHERE points < 330.84 AND name = \"silvo svajger\"", "question": "How many Placings have Points smaller than 330.84, and a Name of silvo svajger?", "context": "CREATE TABLE table_name_1 (placings VARCHAR, points VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(placings) FROM table_name_31 WHERE nation = \"west germany\" AND points > 303.72", "question": "Which Placings have a Nation of west germany, and Points larger than 303.72?", "context": "CREATE TABLE table_name_31 (placings INTEGER, nation VARCHAR, points VARCHAR)"}, {"answer": "SELECT nation FROM table_name_90 WHERE points = 300.38", "question": "Which Nation has Points of 300.38?", "context": "CREATE TABLE table_name_90 (nation VARCHAR, points VARCHAR)"}, {"answer": "SELECT player FROM table_name_57 WHERE to_par = \"+10\"", "question": "Which player finished at +10?", "context": "CREATE TABLE table_name_57 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_31 WHERE game < 5 AND record = \"0-1-0\"", "question": "Who is the opponent before game 5 with a 0-1-0 record?", "context": "CREATE TABLE table_name_31 (opponent VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE opponent = \"vancouver canucks\"", "question": "What is the score for the opponent Vancouver Canucks?", "context": "CREATE TABLE table_name_23 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE record = \"4-3-0\"", "question": "What date is the record 4-3-0?", "context": "CREATE TABLE table_name_94 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT fleet_number_s_ FROM table_name_94 WHERE wheel_arrangement = \"4-6-0\" AND year_made = \"1890\"", "question": "What is the fleet number with a 4-6-0 wheel arrangement made in 1890?", "context": "CREATE TABLE table_name_94 (fleet_number_s_ VARCHAR, wheel_arrangement VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT wheel_arrangement FROM table_name_99 WHERE year_made = \"1890\"", "question": "What is the wheel arrangement made in 1890?", "context": "CREATE TABLE table_name_99 (wheel_arrangement VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT quantity_preserved FROM table_name_17 WHERE class = \"e-1\"", "question": "What is the quantity preserved of the e-1 class?", "context": "CREATE TABLE table_name_17 (quantity_preserved VARCHAR, class VARCHAR)"}, {"answer": "SELECT wheel_arrangement FROM table_name_1 WHERE quantity_preserved = \"1\"", "question": "What is the wheel arrangement with 1 quantity preserved?", "context": "CREATE TABLE table_name_1 (wheel_arrangement VARCHAR, quantity_preserved VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_36 WHERE quantity_preserved = \"0\" AND class = \"e-22\"", "question": "What is the quantity made of the e-22 class, which has a quantity preserved of 0?", "context": "CREATE TABLE table_name_36 (quantity_made VARCHAR, quantity_preserved VARCHAR, class VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_95 WHERE rank = \"8\" AND bronze < 1", "question": "What is the sum of Total, when Rank is 8, and when Bronze is less than 1?", "context": "CREATE TABLE table_name_95 (total INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_58 WHERE gold < 0", "question": "What is the lowest Bronze, when Gold is less than 0?", "context": "CREATE TABLE table_name_58 (bronze INTEGER, gold INTEGER)"}, {"answer": "SELECT AVG(bronze) FROM table_name_23 WHERE total = 7 AND silver > 1", "question": "What is the average Bronze, when Total is 7, and when Silver is greater than 1?", "context": "CREATE TABLE table_name_23 (bronze INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_72 WHERE silver = 0 AND gold = 1", "question": "What is the sum of Total, when Silver is 0, and when Gold is 1?", "context": "CREATE TABLE table_name_72 (total INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_32 WHERE gold = 1 AND nation = \"hungary\" AND bronze < 0", "question": "What is the highest Total, when Gold is 1, when Nation is Hungary, and when Bronze is less than 0?", "context": "CREATE TABLE table_name_32 (total INTEGER, bronze VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT year FROM table_name_22 WHERE film = \"belle of the nineties\"", "question": "What is the Year of the Film Belle of the Nineties?", "context": "CREATE TABLE table_name_22 (year VARCHAR, film VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_25 WHERE film = \"klondike annie\"", "question": "What is the Year of the Film Klondike Annie?", "context": "CREATE TABLE table_name_25 (year INTEGER, film VARCHAR)"}, {"answer": "SELECT studio FROM table_name_38 WHERE year > 1933 AND director = \"gregory ratoff\"", "question": "What is the Studio of the Film with Director Gregory Ratoff after 1933?", "context": "CREATE TABLE table_name_38 (studio VARCHAR, year VARCHAR, director VARCHAR)"}, {"answer": "SELECT label FROM table_name_88 WHERE year > 2004 AND details = \"2xcd\" AND title = \"sonic seducer cold hands seduction vol. 69\"", "question": "Which label has a year older than 2004 and a 2xcd detail as well as the sonic seducer cold hands seduction vol. 69 title?", "context": "CREATE TABLE table_name_88 (label VARCHAR, title VARCHAR, year VARCHAR, details VARCHAR)"}, {"answer": "SELECT details FROM table_name_9 WHERE label = \"out of line\" AND year = 2005", "question": "Which details has the out of line label and the year of 2005?", "context": "CREATE TABLE table_name_9 (details VARCHAR, label VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_54 WHERE title = \"machineries of joy vol. 4\"", "question": "What average year contains the title of machineries of joy vol. 4?", "context": "CREATE TABLE table_name_54 (year INTEGER, title VARCHAR)"}, {"answer": "SELECT Track AS title FROM table_name_6 WHERE year < 2005", "question": "Which track title has a year lesser thsn 2005?", "context": "CREATE TABLE table_name_6 (Track VARCHAR, year INTEGER)"}, {"answer": "SELECT college FROM table_name_10 WHERE pick < 25 AND overall > 159 AND round < 10 AND position = \"wr\"", "question": "Which college has a pick less than 25, an overall greater than 159, a round less than 10, and wr as the position?", "context": "CREATE TABLE table_name_10 (college VARCHAR, position VARCHAR, round VARCHAR, pick VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_69 WHERE pick < 20 AND college = \"north carolina\" AND round < 8", "question": "What is the average overall that has a pick less than 20, North Carolina as the college, with a round less than 8?", "context": "CREATE TABLE table_name_69 (overall INTEGER, round VARCHAR, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_24 WHERE pick > 19 AND college = \"florida\"", "question": "How many overalls have a pick greater than 19, with florida as the college?", "context": "CREATE TABLE table_name_24 (overall INTEGER, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_70 WHERE overall < 243 AND name = \"tony green\"", "question": "What college has an overall less than 243, and tony green as the name?", "context": "CREATE TABLE table_name_70 (college VARCHAR, overall VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(large_end) FROM table_name_5 WHERE taper / ft < 0.6000000000000001", "question": "Which Large end has a Taper/ft smaller than 0.6000000000000001?", "context": "CREATE TABLE table_name_5 (large_end VARCHAR, taper VARCHAR, ft VARCHAR)"}, {"answer": "SELECT MAX(taper) / ft FROM table_name_27 WHERE large_end < 0.5 AND taper = \"#2\"", "question": "Which Taper/ft that has a Large end smaller than 0.5, and a Taper of #2?", "context": "CREATE TABLE table_name_27 (ft VARCHAR, taper INTEGER, large_end VARCHAR)"}, {"answer": "SELECT MAX(length) FROM table_name_92 WHERE taper = \"#15\" AND large_end > 1.875", "question": "Which Length has a Taper of #15, and a Large end larger than 1.875?", "context": "CREATE TABLE table_name_92 (length INTEGER, taper VARCHAR, large_end VARCHAR)"}, {"answer": "SELECT COUNT(angle_from_center_) AS \u00b0 FROM table_name_97 WHERE taper / ft < 0.6000000000000001", "question": "Which Angle from center/\u00b0 has a Taper/ft smaller than 0.6000000000000001?", "context": "CREATE TABLE table_name_97 (angle_from_center_ VARCHAR, taper VARCHAR, ft VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_90 WHERE time = \"+0.283\"", "question": "What driver had the highest grid position with a time of +0.283?", "context": "CREATE TABLE table_name_90 (grid INTEGER, time VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_89 WHERE rider = \"ilario dionisi\"", "question": "What is the most number of laps run by Ilario Dionisi?", "context": "CREATE TABLE table_name_89 (laps INTEGER, rider VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_3 WHERE time = \"+5.088\" AND grid < 17", "question": "What is the total of laps run by the driver with a grid under 17 and a time of +5.088?", "context": "CREATE TABLE table_name_3 (laps INTEGER, time VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_67 WHERE laps < 16 AND time = \"accident\" AND bike = \"yamaha yzf-r6\" AND grid = 10", "question": "What is the driver with the laps under 16, grid of 10, a bike of Yamaha YZF-R6, and ended with an accident?", "context": "CREATE TABLE table_name_67 (rider VARCHAR, grid VARCHAR, bike VARCHAR, laps VARCHAR, time VARCHAR)"}, {"answer": "SELECT player FROM table_name_28 WHERE score > 72", "question": "Who scored more than 72?", "context": "CREATE TABLE table_name_28 (player VARCHAR, score INTEGER)"}, {"answer": "SELECT MAX(score) FROM table_name_80 WHERE player = \"tsuneyuki nakajima\"", "question": "What is the top score for tsuneyuki nakajima?", "context": "CREATE TABLE table_name_80 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_5 WHERE to_par = \"+2\" AND country = \"japan\"", "question": "What is the low score for TO par +2 in japan?", "context": "CREATE TABLE table_name_5 (score INTEGER, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_14 WHERE player = \"anders forsbrand\"", "question": "What is Anders Forsbrand's Place?", "context": "CREATE TABLE table_name_14 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_78 WHERE place = \"t8\"", "question": "What is the T8 Place Player?", "context": "CREATE TABLE table_name_78 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_58 WHERE score = 70 - 71 = 141", "question": "What is the To par of the Player with a Score of 70-71=141?", "context": "CREATE TABLE table_name_58 (to_par INTEGER, score VARCHAR)"}, {"answer": "SELECT partner FROM table_name_20 WHERE opponents_in_the_final = \"john bromwich frank sedgman\"", "question": "Which Partner has Opponents in the final of john bromwich frank sedgman?", "context": "CREATE TABLE table_name_20 (partner VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_18 WHERE score = \"4\u20136, 6\u20134, 2\u20136, 4\u20136\"", "question": "Which Opponents in the final have a Score of 4\u20136, 6\u20134, 2\u20136, 4\u20136?", "context": "CREATE TABLE table_name_18 (opponents_in_the_final VARCHAR, score VARCHAR)"}, {"answer": "SELECT year FROM table_name_88 WHERE score = \"5\u20137, 4\u20136, 6\u20133, 1\u20136\"", "question": "Which Year has a Score of 5\u20137, 4\u20136, 6\u20133, 1\u20136?", "context": "CREATE TABLE table_name_88 (year VARCHAR, score VARCHAR)"}, {"answer": "SELECT championship FROM table_name_91 WHERE score = \"2\u20136, 4\u20136, 4\u20136\"", "question": "Which Championship has a Score of 2\u20136, 4\u20136, 4\u20136?", "context": "CREATE TABLE table_name_91 (championship VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE opponents_in_the_final = \"john bromwich frank sedgman\"", "question": "Which Score has Opponents in the final of john bromwich frank sedgman?", "context": "CREATE TABLE table_name_92 (score VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_30 WHERE date = \"november 17, 1963\"", "question": "Which Opponent has a Date of november 17, 1963?", "context": "CREATE TABLE table_name_30 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_27 WHERE result = \"l 14\u201310\"", "question": "Which Opponent has a Result of l 14\u201310?", "context": "CREATE TABLE table_name_27 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_87 WHERE week < 11 AND attendance = \"17,568\"", "question": "Which Result has a Week smaller than 11, and Attendance of 17,568?", "context": "CREATE TABLE table_name_87 (result VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_40 WHERE result = \"w 19\u201310\"", "question": "Which Opponent has a Result of w 19\u201310?", "context": "CREATE TABLE table_name_40 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_54 WHERE name = \"essi sainio\"", "question": "What is the average goals for Essi Sainio?", "context": "CREATE TABLE table_name_54 (goals INTEGER, name VARCHAR)"}, {"answer": "SELECT champion FROM table_name_26 WHERE year = 1988", "question": "Who were the champions in 1988?", "context": "CREATE TABLE table_name_26 (champion VARCHAR, year VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_32 WHERE year = 1989", "question": "Who was the runner-up in 1989?", "context": "CREATE TABLE table_name_32 (runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(december) FROM table_name_66 WHERE score = \"4 - 4\"", "question": "What is the lowest December, when Score is \"4 - 4\"?", "context": "CREATE TABLE table_name_66 (december INTEGER, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_24 WHERE game = 24", "question": "What is Record, when Game is \"24\"?", "context": "CREATE TABLE table_name_24 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_9 WHERE game = 37", "question": "What is Opponent, when Game is \"37\"?", "context": "CREATE TABLE table_name_9 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_22 WHERE date = \"11/09/1935\"", "question": "How many spectators attended the game on 11/09/1935?", "context": "CREATE TABLE table_name_22 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_3 WHERE result = \"w20-0\"", "question": "Who was the opponent against which the result was w20-0?", "context": "CREATE TABLE table_name_3 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE result = \"w20-0\"", "question": "On which date was the result w20-0?", "context": "CREATE TABLE table_name_66 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_27 WHERE result = \"w29-7\"", "question": "How many spectators attended the game that ended in a result of w29-7?", "context": "CREATE TABLE table_name_27 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT place FROM table_name_19 WHERE to_par = \"\u20138\"", "question": "Which Place has a To par of \u20138?", "context": "CREATE TABLE table_name_19 (place VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE place = \"3\"", "question": "Which Score has a Place of 3?", "context": "CREATE TABLE table_name_18 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_38 WHERE score = 69 - 72 - 72 - 72 = 285", "question": "Which average money has a Score of 69-72-72-72=285?", "context": "CREATE TABLE table_name_38 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE place = \"t6\" AND country = \"paraguay\"", "question": "Which Score has a Place of t6, and a Country of paraguay?", "context": "CREATE TABLE table_name_20 (score VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_39 WHERE college = \"texas\" AND pick < 25", "question": "What are the total rounds for the texas college and has a pick smaller than 25?", "context": "CREATE TABLE table_name_39 (round VARCHAR, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_7 WHERE pick < 2", "question": "What top round has a pick smaller than 2?", "context": "CREATE TABLE table_name_7 (round INTEGER, pick INTEGER)"}, {"answer": "SELECT result FROM table_name_81 WHERE score = \"70-73\"", "question": "WHAT IS THE RESULT WITH A SCORE OF 70-73?", "context": "CREATE TABLE table_name_81 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE score = \"66-62\"", "question": "What is the date with score of 66-62?", "context": "CREATE TABLE table_name_10 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE record = \"1-0\"", "question": "WHAT IS THE SCORE WITH A RECORD OF 1-0?", "context": "CREATE TABLE table_name_94 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE score = \"72-63\"", "question": "WHAT IS THE OPPONENT WITH A SCORE OF 72-63?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(weight) FROM table_name_89 WHERE distance = \"5 \u00bd f\"", "question": "What is the weight number when the distance was 5 \u00bd f?", "context": "CREATE TABLE table_name_89 (weight VARCHAR, distance VARCHAR)"}, {"answer": "SELECT distance FROM table_name_21 WHERE weight = 6.11", "question": "What was the distance when the weight was 6.11?", "context": "CREATE TABLE table_name_21 (distance VARCHAR, weight VARCHAR)"}, {"answer": "SELECT race FROM table_name_27 WHERE winner_or_2nd = \"voleuse\"", "question": "What was the race when the winner of 2nd was Voleuse?", "context": "CREATE TABLE table_name_27 (race VARCHAR, winner_or_2nd VARCHAR)"}, {"answer": "SELECT winner_or_2nd FROM table_name_91 WHERE result = \"\u2013\" AND weight = 6.7", "question": "What was the name of the winner or 2nd when the result was \u2013, and weight was 6.7?", "context": "CREATE TABLE table_name_91 (winner_or_2nd VARCHAR, result VARCHAR, weight VARCHAR)"}, {"answer": "SELECT MAX(weight) FROM table_name_37 WHERE result = \"\u2013\" AND distance = \"7f\"", "question": "What is the largest weight wth a Result of \u2013, and a Distance of 7f?", "context": "CREATE TABLE table_name_37 (weight INTEGER, result VARCHAR, distance VARCHAR)"}, {"answer": "SELECT winner_or_2nd FROM table_name_41 WHERE weight > 7.3 AND result = \"\u2013\"", "question": "What is the the name of the winner or 2nd  with a weight more than 7.3, and the result was \u2013?", "context": "CREATE TABLE table_name_41 (winner_or_2nd VARCHAR, weight VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_5 WHERE silver = \"1\" AND bronze = \"7\"", "question": "What is the total number of Total, when Silver is 1, and when Bronze is 7?", "context": "CREATE TABLE table_name_5 (total VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_20 WHERE silver = \"2\" AND nation = \"italy\"", "question": "What is Bronze, when Silver is 2, and when Nation is Italy?", "context": "CREATE TABLE table_name_20 (bronze VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT gold FROM table_name_79 WHERE total = 6", "question": "What is Gold, when Total is 6?", "context": "CREATE TABLE table_name_79 (gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT gold FROM table_name_91 WHERE silver = \"5\" AND nation = \"belgium\"", "question": "What is Gold, when Silver is 5, and when Nation is Belgium?", "context": "CREATE TABLE table_name_91 (gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT gold FROM table_name_71 WHERE bronze = \"11\"", "question": "What is Gold, when Bronze is 11?", "context": "CREATE TABLE table_name_71 (gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT poll_source FROM table_name_98 WHERE undecided = \"5%\" AND jim_demint__r_ = \"58%\"", "question": "Which poll source determined undecided of 5% and Jim DeMint (R) of 58%?", "context": "CREATE TABLE table_name_98 (poll_source VARCHAR, undecided VARCHAR, jim_demint__r_ VARCHAR)"}, {"answer": "SELECT poll_source FROM table_name_38 WHERE other = \"15%\"", "question": "Which poll source had an other of 15%?", "context": "CREATE TABLE table_name_38 (poll_source VARCHAR, other VARCHAR)"}, {"answer": "SELECT alvin_greene__d_ FROM table_name_29 WHERE other = \"9%\"", "question": "What was the vote for Alvin Green when other was 9%?", "context": "CREATE TABLE table_name_29 (alvin_greene__d_ VARCHAR, other VARCHAR)"}, {"answer": "SELECT alvin_greene__d_ FROM table_name_71 WHERE jim_demint__r_ = \"62%\"", "question": "What was the vote for Alvin Green when Jim DeMint was 62%?", "context": "CREATE TABLE table_name_71 (alvin_greene__d_ VARCHAR, jim_demint__r_ VARCHAR)"}, {"answer": "SELECT alvin_greene__d_ FROM table_name_22 WHERE other = \"9%\"", "question": "What was the vote for Alvin Green when other was 9%?", "context": "CREATE TABLE table_name_22 (alvin_greene__d_ VARCHAR, other VARCHAR)"}, {"answer": "SELECT place FROM table_name_61 WHERE to_par = \"\u20131\"", "question": "What is the Place of the Player with a To par of \u20131?", "context": "CREATE TABLE table_name_61 (place VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT place FROM table_name_1 WHERE money___$__ > 300 AND score = 71 - 69 - 70 - 70 = 280", "question": "What is the Place of the Player with Money greater than 300 and a Score of 71-69-70-70=280?", "context": "CREATE TABLE table_name_1 (place VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_16 WHERE place = \"4\"", "question": "What is the Score of the game of the Player in Place 4?", "context": "CREATE TABLE table_name_16 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_35 WHERE score = 73 - 70 - 71 - 72 = 286", "question": "What is the To par of the Player with a Score of 73-70-71-72=286?", "context": "CREATE TABLE table_name_35 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_9 WHERE place = \"4\"", "question": "What is the To par of the 4 Place Player?", "context": "CREATE TABLE table_name_9 (to_par VARCHAR, place VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_37 WHERE place = \"5\"", "question": "What is the Money of the Player in Place 5?", "context": "CREATE TABLE table_name_37 (money___ INTEGER, place VARCHAR)"}, {"answer": "SELECT arranger_s_ FROM table_name_8 WHERE lyricist_s_ = \"sirapatara kalayapanid\"", "question": "Who was the arranger for the song that had a lyricist of Sirapatara Kalayapanid?", "context": "CREATE TABLE table_name_8 (arranger_s_ VARCHAR, lyricist_s_ VARCHAR)"}, {"answer": "SELECT MIN(bush_number) FROM table_name_63 WHERE bush_percentage = \"65.4%\"", "question": "What is the lowest Bush#, when Bush% is \"65.4%\"?", "context": "CREATE TABLE table_name_63 (bush_number INTEGER, bush_percentage VARCHAR)"}, {"answer": "SELECT MIN(kerry_number) FROM table_name_38 WHERE others_number = 106 AND bush_number < 3 OFFSET 188", "question": "What is the lowest Kerry#, when Others# is \"106\", and when Bush# is less than 3,188?", "context": "CREATE TABLE table_name_38 (kerry_number INTEGER, others_number VARCHAR, bush_number VARCHAR)"}, {"answer": "SELECT MAX(bush_number) FROM table_name_85 WHERE others_percentage = \"1.7%\" AND others_number < 75 AND kerry_number > 1 OFFSET 524", "question": "What is the highest Bush#, when Others% is \"1.7%\", when Others# is less than 75, and when Kerry# is greater than 1,524?", "context": "CREATE TABLE table_name_85 (bush_number INTEGER, kerry_number VARCHAR, others_percentage VARCHAR, others_number VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE h___a = \"a\" AND opponents = \"bristol city\"", "question": "When did Manchester United play against Bristol City with an H/A of A?", "context": "CREATE TABLE table_name_66 (date VARCHAR, h___a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_95 WHERE opponents = \"hearts\"", "question": "How many people attended the match when Manchester United played against the Hearts?", "context": "CREATE TABLE table_name_95 (attendance INTEGER, opponents VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_78 WHERE opponent = \"denver broncos\"", "question": "What is the average number of weeks that the opponent was the Denver Broncos?", "context": "CREATE TABLE table_name_78 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_67 WHERE date = \"november 23, 2003\"", "question": "What was the result of the game played on November 23, 2003?", "context": "CREATE TABLE table_name_67 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT kickoff_time FROM table_name_53 WHERE week = 1", "question": "What was the kickoff time on week 1?", "context": "CREATE TABLE table_name_53 (kickoff_time VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(fa_cup_goals) FROM table_name_57 WHERE league_cup_goals > 0", "question": "Can you tell me the sum of FA Cup Goals that has the League Cup Goals larger than 0?", "context": "CREATE TABLE table_name_57 (fa_cup_goals INTEGER, league_cup_goals INTEGER)"}, {"answer": "SELECT english_translation FROM table_name_51 WHERE language = \"english\" AND draw < 16 AND artist = \"aysel and arash\"", "question": "what is the english translation when the Language is english, Draw is smaller than 16, and the Artist is aysel and arash?", "context": "CREATE TABLE table_name_51 (english_translation VARCHAR, artist VARCHAR, language VARCHAR, draw VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_42 WHERE artist = \"kamil mikul\u010d\u00edk and nela\" AND place > 18", "question": "What is the average Points when the artist is kamil mikul\u010d\u00edk and nela, and the Place is larger than 18?", "context": "CREATE TABLE table_name_42 (points INTEGER, artist VARCHAR, place VARCHAR)"}, {"answer": "SELECT SUM(place) FROM table_name_60 WHERE draw < 12 AND artist = \"quartissimo feat. martina\"", "question": "what is the place when the draw is less than 12 and the artist is quartissimo feat. martina?", "context": "CREATE TABLE table_name_60 (place INTEGER, draw VARCHAR, artist VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE winner = \"amer sulaiman\"", "question": "What is the date amer sulaiman won?", "context": "CREATE TABLE table_name_50 (date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT event FROM table_name_24 WHERE prize = \"$248,004\"", "question": "What event has a $248,004 prize?", "context": "CREATE TABLE table_name_24 (event VARCHAR, prize VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE prize = \"$322,280\"", "question": "What is the date of the event with a $322,280 prize?", "context": "CREATE TABLE table_name_12 (date VARCHAR, prize VARCHAR)"}, {"answer": "SELECT event FROM table_name_12 WHERE city = \"florianopolis\"", "question": "What event is in florianopolis?", "context": "CREATE TABLE table_name_12 (event VARCHAR, city VARCHAR)"}, {"answer": "SELECT winner FROM table_name_16 WHERE city = \"lima\"", "question": "Who is the winner in the city of lima?", "context": "CREATE TABLE table_name_16 (winner VARCHAR, city VARCHAR)"}, {"answer": "SELECT years FROM table_name_56 WHERE player = \"alton lister category:articles with hcards\"", "question": "Alton Lister Category:Articles with hCards has what as the listed years?", "context": "CREATE TABLE table_name_56 (years VARCHAR, player VARCHAR)"}, {"answer": "SELECT jersey_number_s_ FROM table_name_22 WHERE player = \"tom lagarde category:articles with hcards\"", "question": "Tom Lagarde Category:Articles with hCards used what Jersey Number(s)?", "context": "CREATE TABLE table_name_22 (jersey_number_s_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_49 WHERE winning_driver = \"seiji ara\"", "question": "What is the fastest lap for Seiji Ara?", "context": "CREATE TABLE table_name_49 (fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE fastest_lap = \"yuji tachikawa\" AND round = 1", "question": "On what date does Yuji Tachikawa have the fastest lap in round 1?", "context": "CREATE TABLE table_name_24 (date VARCHAR, fastest_lap VARCHAR, round VARCHAR)"}, {"answer": "SELECT venue FROM table_name_7 WHERE competition = \"world race walking cup\" AND position = \"3rd\"", "question": "In which venue did he place 3rd in the World Race Walking Cup?", "context": "CREATE TABLE table_name_7 (venue VARCHAR, competition VARCHAR, position VARCHAR)"}, {"answer": "SELECT notes FROM table_name_2 WHERE position = \"10th\"", "question": "What were the notes when his position was 10th?", "context": "CREATE TABLE table_name_2 (notes VARCHAR, position VARCHAR)"}, {"answer": "SELECT year FROM table_name_21 WHERE competition = \"universiade\"", "question": "In which year did he compete in the Universiade?", "context": "CREATE TABLE table_name_21 (year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT player FROM table_name_48 WHERE years_for_grizzlies = \"2002-2003\"", "question": "Which Player has Years for Grizzlies of 2002-2003?", "context": "CREATE TABLE table_name_48 (player VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT player FROM table_name_85 WHERE position = \"power forward\" AND school_club_team = \"depaul\"", "question": "Which Player has position of power forward and School/Club Team of Depaul?", "context": "CREATE TABLE table_name_85 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nation FROM table_name_66 WHERE rank > 2 AND total > 1 AND bronze < 3", "question": "What is Nation, when Rank is greater than 2, when Total is greater than 1, and when Bronze is less than 3?", "context": "CREATE TABLE table_name_66 (nation VARCHAR, bronze VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_87 WHERE rank = 5 AND bronze < 1", "question": "What is the average Silver, when Rank is 5, and when Bronze is less than 1?", "context": "CREATE TABLE table_name_87 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_40 WHERE nation = \"great britain\" AND bronze < 1", "question": "What is the lowest Rank, when Nation is Great Britain, and when Bronze is less than 1?", "context": "CREATE TABLE table_name_40 (rank INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_34 WHERE silver = 2 AND total < 7", "question": "What is the total number of Gold, when Silver is 2, and when Total is less than 7?", "context": "CREATE TABLE table_name_34 (gold VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_63 WHERE nation = \"canada\" AND rank > 4", "question": "What is the lowest Gold, when Nation is Canada, and when Rank is greater than 4?", "context": "CREATE TABLE table_name_63 (gold INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_76 WHERE model = \"m1895 & m1897 carbine\"", "question": "What is Nation, when Model is M1895 & M1897 Carbine?", "context": "CREATE TABLE table_name_76 (nation VARCHAR, model VARCHAR)"}, {"answer": "SELECT weight FROM table_name_13 WHERE length = \"1168mm / 46 in\"", "question": "What is Weight, when Length is 1168mm / 46 in?", "context": "CREATE TABLE table_name_13 (weight VARCHAR, length VARCHAR)"}, {"answer": "SELECT length FROM table_name_46 WHERE barrel_length = \"750mm / 29.5 in\"", "question": "What is Length, when Barrel Length is 750mm / 29.5 in?", "context": "CREATE TABLE table_name_46 (length VARCHAR, barrel_length VARCHAR)"}, {"answer": "SELECT decision FROM table_name_24 WHERE date = \"january 13\"", "question": "What is the decision of the game on January 13?", "context": "CREATE TABLE table_name_24 (decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_84 WHERE bronze < 5 AND country = \"japan\" AND silver > 3", "question": "What was the sum of the ranks for Japan who had less than 5 bronze medals and more than 3 silvers?", "context": "CREATE TABLE table_name_84 (rank INTEGER, silver VARCHAR, bronze VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_80 WHERE country = \"united states\" AND silver > 11", "question": "What is the lowest total medals for the united states who had more than 11 silver medals?", "context": "CREATE TABLE table_name_80 (total INTEGER, country VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_89 WHERE silver > 2 AND rank > 6", "question": "What is the sum of the bronze medals when there were more than 2 silver medals and a rank larger than 6?", "context": "CREATE TABLE table_name_89 (bronze INTEGER, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_12 WHERE second = \"4\"", "question": "What was the highest points when the second was 4?", "context": "CREATE TABLE table_name_12 (points INTEGER, second VARCHAR)"}, {"answer": "SELECT driver___passenger FROM table_name_56 WHERE third = \"1\" AND position < 8 AND wins = \"1\"", "question": "Who was the driver/passengar when the position was smaller than 8, the third was 1, and there was 1 win?", "context": "CREATE TABLE table_name_56 (driver___passenger VARCHAR, wins VARCHAR, third VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(points_won) FROM table_name_66 WHERE total_matches = 4 AND total_w_l_h = \"4-0-0\"", "question": "Can you tell me the lowest Points won that has the Total matches of 4, and the Total W-L-H of 4-0-0?", "context": "CREATE TABLE table_name_66 (points_won INTEGER, total_matches VARCHAR, total_w_l_h VARCHAR)"}, {"answer": "SELECT MIN(total_matches) FROM table_name_11 WHERE points_won = 3 AND year = \"1994\"", "question": "Can you tell me the lowest Total natches that has the Points won of 3, and the Year of 1994?", "context": "CREATE TABLE table_name_11 (total_matches INTEGER, points_won VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_name_92 WHERE replaced_by = \"jes\u00fas ram\u00edrez\"", "question": "What is Team, when Replaced By is \"Jes\u00fas Ram\u00edrez\"?", "context": "CREATE TABLE table_name_92 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_name_21 WHERE replaced_by = \"sergio bueno\"", "question": "What is Position in Table, when Replaced By is \"Sergio Bueno\"?", "context": "CREATE TABLE table_name_21 (position_in_table VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_25 WHERE outgoing_manager = \"luis fernando tena\"", "question": "What is Manner of Departure, when Outgoing Manager is \"Luis Fernando Tena\"?", "context": "CREATE TABLE table_name_25 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_name_64 WHERE team = \"morelia\"", "question": "What is Position in Table, when Team is \"Morelia\"?", "context": "CREATE TABLE table_name_64 (position_in_table VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_5 WHERE replaced_by = \"omar arellano\"", "question": "What is Team, when Replaced By is \"Omar Arellano\"?", "context": "CREATE TABLE table_name_5 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_name_43 WHERE replaced_by = \"jos\u00e9 pekerman\"", "question": "What is Position in Table, when Replaced by is \"Jos\u00e9 Pekerman\"?", "context": "CREATE TABLE table_name_43 (position_in_table VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT episode_4 FROM table_name_87 WHERE star = \"anna powierza\"", "question": "Which episode 4 has a Star of anna powierza?", "context": "CREATE TABLE table_name_87 (episode_4 VARCHAR, star VARCHAR)"}, {"answer": "SELECT team FROM table_name_77 WHERE home_city = \"koprivnica\"", "question": "What team has a home city of Koprivnica?", "context": "CREATE TABLE table_name_77 (team VARCHAR, home_city VARCHAR)"}, {"answer": "SELECT team FROM table_name_65 WHERE home_city = \"zadar\"", "question": "What team that has a Home city of Zadar?", "context": "CREATE TABLE table_name_65 (team VARCHAR, home_city VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_70 WHERE team = \"nk zagreb\"", "question": "What is the stadium of the NK Zagreb?", "context": "CREATE TABLE table_name_70 (stadium VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_74 WHERE home_city = \"velika\"", "question": "What team has a home city of Velika?", "context": "CREATE TABLE table_name_74 (team VARCHAR, home_city VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_51 WHERE frequency = \"88.7 fm\"", "question": "What is the City of license with a 88.7 fm frequency", "context": "CREATE TABLE table_name_51 (city_of_license VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT power FROM table_name_50 WHERE frequency = \"88.5 fm\"", "question": "what is the Power with 88.5 fm Frequency", "context": "CREATE TABLE table_name_50 (power VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_79 WHERE power = \"1,400 watts\"", "question": "what is the City of license that has a 1,400 watts Power", "context": "CREATE TABLE table_name_79 (city_of_license VARCHAR, power VARCHAR)"}, {"answer": "SELECT identifier FROM table_name_19 WHERE frequency = \"94.9 fm\"", "question": "what is the Identifier with 94.9 fm Frequency", "context": "CREATE TABLE table_name_19 (identifier VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_32 WHERE city_of_license = \"fairview\"", "question": "what is the Frequency that has a fairview City of license", "context": "CREATE TABLE table_name_32 (frequency VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_93 WHERE power = \"1,400 watts\"", "question": "what is the City of license that has a 1,400 watts Power", "context": "CREATE TABLE table_name_93 (city_of_license VARCHAR, power VARCHAR)"}, {"answer": "SELECT COUNT(loss) FROM table_name_27 WHERE gain < 1571 AND long < 47 AND avg_g = 36.4", "question": "How much Loss has a Gain smaller than 1571, and a Long smaller than 47, and an Avg/G of 36.4?", "context": "CREATE TABLE table_name_27 (loss VARCHAR, avg_g VARCHAR, gain VARCHAR, long VARCHAR)"}, {"answer": "SELECT AVG(avg_g) FROM table_name_60 WHERE name = \"david allen\" AND gain > 371", "question": "Which Avg/G has a Name of david allen, and a Gain larger than 371?", "context": "CREATE TABLE table_name_60 (avg_g INTEGER, name VARCHAR, gain VARCHAR)"}, {"answer": "SELECT MIN(avg_g) FROM table_name_86 WHERE long < 47 AND name = \"frank murphy\" AND gain < 569", "question": "Which Avg/G is the lowest one that has a Long smaller than 47, and a Name of frank murphy, and a Gain smaller than 569?", "context": "CREATE TABLE table_name_86 (avg_g INTEGER, gain VARCHAR, long VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(avg_g) FROM table_name_81 WHERE gain < 1571 AND long < 46", "question": "How much Avg/G has a Gain smaller than 1571, and a Long smaller than 46?", "context": "CREATE TABLE table_name_81 (avg_g VARCHAR, gain VARCHAR, long VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_66 WHERE team = \"torpedo\"", "question": "Can you tell me the highest Capacity that has the Team of torpedo?", "context": "CREATE TABLE table_name_66 (capacity INTEGER, team VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_88 WHERE position_in_2005 = \"8\"", "question": "Can you tell me the Capacity that has the Position in 2005 of 8?", "context": "CREATE TABLE table_name_88 (capacity VARCHAR, position_in_2005 VARCHAR)"}, {"answer": "SELECT venue FROM table_name_77 WHERE position_in_2005 = \"8\"", "question": "Can you tell me the Venue that has the Position in 2005 of 8?", "context": "CREATE TABLE table_name_77 (venue VARCHAR, position_in_2005 VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_86 WHERE date = \"october 14, 2007\"", "question": "Which tournament was held on October 14, 2007?", "context": "CREATE TABLE table_name_86 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE score = \"4-6, 7-5, 4-6\"", "question": "Who was the opponent with a score of 4-6, 7-5, 4-6?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_81 WHERE opponent = \"jing-jing lu\"", "question": "What was the outcome when Jing-Jing Lu was the opponent?", "context": "CREATE TABLE table_name_81 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_17 WHERE result = \"loss\" AND venue = \"mosaic stadium\"", "question": "What is Opponent, when Result is Loss, and when Venue is Mosaic Stadium?", "context": "CREATE TABLE table_name_17 (opponent VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date__to_ FROM table_name_38 WHERE traction_type = \"electric\" AND name_of_system = \"yarmouth light and power company\"", "question": "What is the date (to) associated wiht a traction type of electric and the Yarmouth Light and Power Company system?", "context": "CREATE TABLE table_name_38 (date__to_ VARCHAR, traction_type VARCHAR, name_of_system VARCHAR)"}, {"answer": "SELECT name FROM table_name_83 WHERE overall < 175 AND college = \"georgia\"", "question": "What is Name, when Overall is less than 175, and when College is \"Georgia\"?", "context": "CREATE TABLE table_name_83 (name VARCHAR, overall VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_19 WHERE round > 15 AND college = \"tennessee\"", "question": "What is the highest Pick, when Round is greater than 15, and when College is \"Tennessee\"?", "context": "CREATE TABLE table_name_19 (pick INTEGER, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT pick FROM table_name_45 WHERE round = 15", "question": "What is Pick, when Round is 15?", "context": "CREATE TABLE table_name_45 (pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_69 WHERE pick > 5 AND round < 11 AND name = \"tom barrington\"", "question": "What is the sum of Overall, when Pick is greater than 5, when Round is less than 11, and when Name is \"Tom Barrington\"?", "context": "CREATE TABLE table_name_69 (overall INTEGER, name VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT venue FROM table_name_25 WHERE score = \"2:3\"", "question": "Which venue was used for the game whose score was 2:3?", "context": "CREATE TABLE table_name_25 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE team_2 = \"al-qadsia\"", "question": "What was the score for the game in which Al-Qadsia was Team 2?", "context": "CREATE TABLE table_name_55 (score VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT years FROM table_name_4 WHERE jersey_number_s_ = 33 AND position = \"pf\"", "question": "What years did the player with the jersey number 33 and played position pf play?", "context": "CREATE TABLE table_name_4 (years VARCHAR, jersey_number_s_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT years FROM table_name_5 WHERE jersey_number_s_ > 20", "question": "What years did the player with the jersey number bigger than 20 play?", "context": "CREATE TABLE table_name_5 (years VARCHAR, jersey_number_s_ INTEGER)"}, {"answer": "SELECT place FROM table_name_53 WHERE to_par = \"\u20132\" AND player = \"bernhard langer\"", "question": "WHich Place has a To par of \u20132, and a Player of bernhard langer?", "context": "CREATE TABLE table_name_53 (place VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE to_par = \"\u20133\" AND country = \"united states\"", "question": "WHich Score has a To par of \u20133, and a Country of united states?", "context": "CREATE TABLE table_name_28 (score VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_20 WHERE score = 70 - 72 = 142", "question": "Who is the Player with a Score of 70-72=142? Question 3", "context": "CREATE TABLE table_name_20 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_74 WHERE to_par = \"\u20132\" AND score = 69 - 73 = 142", "question": "Name the Player who has a To par of \u20132 and a Score of 69-73=142?", "context": "CREATE TABLE table_name_74 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_73 WHERE country = \"united states\" AND to_par = \"\u20135\"", "question": "Name the Player who has a Country of united states, and a To par of \u20135?", "context": "CREATE TABLE table_name_73 (player VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_45 WHERE place = \"t7\" AND country = \"united states\"", "question": "Name the Player who has a Place of t7 in Country of united states?", "context": "CREATE TABLE table_name_45 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT result FROM table_name_60 WHERE choreographer_s_ = \"bj\u00f8rn holthe\"", "question": "What is the result of choreographer bj\u00f8rn holthe?", "context": "CREATE TABLE table_name_60 (result VARCHAR, choreographer_s_ VARCHAR)"}, {"answer": "SELECT music FROM table_name_23 WHERE choreographer_s_ = \"sabina dalfj\u00e4ll\"", "question": "What is the music for choreographer sabina dalfj\u00e4ll?", "context": "CREATE TABLE table_name_23 (music VARCHAR, choreographer_s_ VARCHAR)"}, {"answer": "SELECT couple FROM table_name_8 WHERE result = \"safe\" AND style = \"lyrical jazz\"", "question": "What couple had a safe result and a lyrical jazz style?", "context": "CREATE TABLE table_name_8 (couple VARCHAR, result VARCHAR, style VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_37 WHERE opponents < 118 AND nets_points > 109 AND opponent = \"washington\"", "question": "How many games had fewer than 118 opponents and more than 109 net points with an opponent of Washington?", "context": "CREATE TABLE table_name_37 (game VARCHAR, opponent VARCHAR, opponents VARCHAR, nets_points VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_1 WHERE date = \"february 12\"", "question": "which opponent is from February 12?", "context": "CREATE TABLE table_name_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_15 WHERE game > 20 AND date = \"january 28\"", "question": "How many opponents were there in a game higher than 20 on January 28?", "context": "CREATE TABLE table_name_15 (opponents VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_name_9 WHERE opponent = \"celtic\" AND date = \"24 february 1900\"", "question": "What round did the celtic played away on 24 february 1900?", "context": "CREATE TABLE table_name_9 (round VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_43 WHERE venue = \"a\" AND date = \"17 february 1900\"", "question": "Who played against in venue a on 17 february 1900?", "context": "CREATE TABLE table_name_43 (opponent VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_79 WHERE opponent = \"morton\"", "question": "How many people attended in the game against morton?", "context": "CREATE TABLE table_name_79 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_8 WHERE to_par = 4", "question": "What is the Total of the Player with a To par of 4?", "context": "CREATE TABLE table_name_8 (total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_77 WHERE year_s__won = \"1982\"", "question": "What is the Total of the Player with a Year(s) won of 1982?", "context": "CREATE TABLE table_name_77 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_11 WHERE year_s__won = \"1983\"", "question": "What is the To par of the Player wtih Year(s) won of 1983?", "context": "CREATE TABLE table_name_11 (to_par INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT country FROM table_name_53 WHERE to_par > 8 AND player = \"andy north\"", "question": "What is Andy North with a To par greater than 8 Country?", "context": "CREATE TABLE table_name_53 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_18 WHERE total < 153 AND year_s__won = \"1984\"", "question": "What is the Country of the Player with a Total less than 153 and Year(s) won of 1984?", "context": "CREATE TABLE table_name_18 (country VARCHAR, total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_91 WHERE player = \"andy north\" AND total > 153", "question": "What is the To par of Player Andy North with a Total larger than 153?", "context": "CREATE TABLE table_name_91 (to_par VARCHAR, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_2 WHERE kick_off = \"2007-03-06, 20:45\"", "question": "WHAT OPPONENT HAD A KICKOFF OF 2007-03-06, 20:45?", "context": "CREATE TABLE table_name_2 (opponents VARCHAR, kick_off VARCHAR)"}, {"answer": "SELECT result FROM table_name_50 WHERE kick_off = \"2007-03-06, 20:45\"", "question": "WHAT WAS THE SCORE OF THE GAME WITH A 2007-03-06, 20:45 KICKOFF?", "context": "CREATE TABLE table_name_50 (result VARCHAR, kick_off VARCHAR)"}, {"answer": "SELECT COUNT(stories) FROM table_name_12 WHERE rank = 10", "question": "What is the total stories that rank number 10?", "context": "CREATE TABLE table_name_12 (stories VARCHAR, rank VARCHAR)"}, {"answer": "SELECT height FROM table_name_25 WHERE city = \"des moines\" AND name = \"emc insurance building\"", "question": "What is the height of the EMC Insurance Building in Des Moines?", "context": "CREATE TABLE table_name_25 (height VARCHAR, city VARCHAR, name VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_61 WHERE 2002 = \"a\" AND 2003 = \"1r\"", "question": "What was the 1997 value when 2002 was A and 2003 was 1R?", "context": "CREATE TABLE table_name_61 (Id VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_10 WHERE 1997 = \"qf\" AND 1993 = \"a\"", "question": "What was the value in 1989 with QF in 1997 and A in 1993?", "context": "CREATE TABLE table_name_10 (Id VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_63 WHERE 1989 = \"a\" AND 1995 = \"qf\" AND 1996 = \"3r\" AND career_sr = \"0 / 8\"", "question": "What is the value in 1997 when the value in 1989 is A, 1995 is QF, 1996 is 3R and the career SR is 0 / 8?", "context": "CREATE TABLE table_name_63 (career_sr VARCHAR)"}, {"answer": "SELECT 1995 FROM table_name_95 WHERE 2000 = \"a\" AND tournament = \"indian wells\"", "question": "What was the value in 1995 for A in 2000 at the Indian Wells tournament?", "context": "CREATE TABLE table_name_95 (tournament VARCHAR)"}, {"answer": "SELECT career_sr FROM table_name_47 WHERE 1989 = \"a\" AND 1997 = \"f\"", "question": "What was the career SR with a value of A in 1980 and F in 1997?", "context": "CREATE TABLE table_name_47 (career_sr VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_48 WHERE total < 285", "question": "What is Year(s) Won, when Total is less than 285?", "context": "CREATE TABLE table_name_48 (year_s__won VARCHAR, total INTEGER)"}, {"answer": "SELECT finish FROM table_name_37 WHERE country = \"united states\" AND player = \"julius boros\"", "question": "What is Finish, when Country is \"United States\", and when Player is \"Julius Boros\"?", "context": "CREATE TABLE table_name_37 (finish VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_78 WHERE year_s__won = \"1962\"", "question": "What is Country, when Year(s) Won is \"1962\"?", "context": "CREATE TABLE table_name_78 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT finish FROM table_name_3 WHERE country = \"united states\" AND to_par = \"+21\"", "question": "What is Finish, when Country is \"United States\", and when To Par is \"+21\"?", "context": "CREATE TABLE table_name_3 (finish VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT format FROM table_name_78 WHERE release_date = \"august 1996\"", "question": "What format was released in August 1996?", "context": "CREATE TABLE table_name_78 (format VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT label FROM table_name_52 WHERE code = \"cocy-78365\"", "question": "What Label has a Code of cocy-78365?", "context": "CREATE TABLE table_name_52 (label VARCHAR, code VARCHAR)"}, {"answer": "SELECT release FROM table_name_70 WHERE title = \"gala\"", "question": "When was Gala released?", "context": "CREATE TABLE table_name_70 (release VARCHAR, title VARCHAR)"}, {"answer": "SELECT label FROM table_name_84 WHERE release_date = \"august 1996\"", "question": "What Label released an album in August 1996?", "context": "CREATE TABLE table_name_84 (label VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT wednesday FROM table_name_24 WHERE day_3 = \"math\"", "question": "What is the Wednesday when day 3 is math?", "context": "CREATE TABLE table_name_24 (wednesday VARCHAR, day_3 VARCHAR)"}, {"answer": "SELECT day_1 FROM table_name_16 WHERE day_3 = \"math\"", "question": "What is the day 1 when the day 3 is math?", "context": "CREATE TABLE table_name_16 (day_1 VARCHAR, day_3 VARCHAR)"}, {"answer": "SELECT day_1 FROM table_name_35 WHERE day_5 = \"math\"", "question": "What is the day 1 when day 5 is math?", "context": "CREATE TABLE table_name_35 (day_1 VARCHAR, day_5 VARCHAR)"}, {"answer": "SELECT day_3 FROM table_name_45 WHERE day_4 = \"fr.\"", "question": "What is the day 3 when day 4 is fr.?", "context": "CREATE TABLE table_name_45 (day_3 VARCHAR, day_4 VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE opponent_number = \"iowa\"", "question": "what is the date when the opponent# is iowa?", "context": "CREATE TABLE table_name_42 (date VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE site = \"memorial stadium \u2022 minneapolis, mn\" AND attendance = \"53,192\"", "question": "what is the date when the site is memorial stadium \u2022 minneapolis, mn, and the Attendance is 53,192?", "context": "CREATE TABLE table_name_70 (date VARCHAR, site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_59 WHERE result = \"l0-13\"", "question": "What is the Attendance when the Result is l0-13?", "context": "CREATE TABLE table_name_59 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT site FROM table_name_37 WHERE date = \"11/11/1950\"", "question": "What is the Site when the date is 11/11/1950?", "context": "CREATE TABLE table_name_37 (site VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE result = \"*non-conference game. #rankings from ap poll .\"", "question": "What is the Date when the result is *non-conference game. #rankings from ap poll .?", "context": "CREATE TABLE table_name_65 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT player FROM table_name_77 WHERE round < 5 AND school_club_team = \"florida state\"", "question": "Which Player has a Round smaller than 5, and a School/Club Team of florida state?", "context": "CREATE TABLE table_name_77 (player VARCHAR, round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_7 WHERE pick = 198", "question": "Which School/Club Team has a Pick of 198?", "context": "CREATE TABLE table_name_7 (school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_85 WHERE school_club_team = \"indiana\" AND pick < 198", "question": "Which Round has a School/Club Team of indiana, and a Pick smaller than 198?", "context": "CREATE TABLE table_name_85 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_84 WHERE school_club_team = \"north carolina\" AND pick > 131", "question": "Which Round has a School/Club Team of north carolina, and a Pick larger than 131?", "context": "CREATE TABLE table_name_84 (round VARCHAR, school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_67 WHERE school_club_team = \"cal-poly slo\" AND pick < 238", "question": "Which Round has a School/Club Team of cal-poly slo, and a Pick smaller than 238?", "context": "CREATE TABLE table_name_67 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_66 WHERE tie_no = \"5\"", "question": "What is the away team with a 5 tie no?", "context": "CREATE TABLE table_name_66 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_50 WHERE away_team = \"scarborough\"", "question": "What is the home team with scarborough as the away team?", "context": "CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE tie_no = \"34\"", "question": "What is the date of tie no. 34?", "context": "CREATE TABLE table_name_37 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_54 WHERE player = \"michael del zotto\"", "question": "What is Michael Del Zotto's nationality?", "context": "CREATE TABLE table_name_54 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_16 WHERE points < 7", "question": "What is the highest loss with points less than 7?", "context": "CREATE TABLE table_name_16 (lost INTEGER, points INTEGER)"}, {"answer": "SELECT SUM(match) FROM table_name_73 WHERE draw < 0", "question": "What is the sum for the match with a draw less than 0?", "context": "CREATE TABLE table_name_73 (match INTEGER, draw INTEGER)"}, {"answer": "SELECT MIN(points) FROM table_name_88 WHERE match > 14", "question": "What is the lowest points for a match before 14?", "context": "CREATE TABLE table_name_88 (points INTEGER, match INTEGER)"}, {"answer": "SELECT COUNT(points) FROM table_name_83 WHERE assists = 5 AND rebounds < 16", "question": "How many points were there when there were less than 16 rebounds and 5 assists?", "context": "CREATE TABLE table_name_83 (points VARCHAR, assists VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT COUNT(minutes_played) FROM table_name_55 WHERE points = 18 AND opponent = \"chicago bulls\"", "question": "How many minutes were played when there were 18 points and the opponent was Chicago Bulls?", "context": "CREATE TABLE table_name_55 (minutes_played VARCHAR, points VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT mountain_range FROM table_name_82 WHERE region = \"haiti\" AND location = \"18.3601\u00b0n 71.9764\u00b0w\"", "question": "Which Mountain Range has a Region of haiti, and a Location of 18.3601\u00b0n 71.9764\u00b0w?", "context": "CREATE TABLE table_name_82 (mountain_range VARCHAR, region VARCHAR, location VARCHAR)"}, {"answer": "SELECT mountain_peak FROM table_name_2 WHERE rank = 62", "question": "Name the Mountain Peak which has a Rank of 62?", "context": "CREATE TABLE table_name_2 (mountain_peak VARCHAR, rank VARCHAR)"}, {"answer": "SELECT mountain_peak FROM table_name_87 WHERE region = \"baja california\" AND location = \"28.1301\u00b0n 115.2206\u00b0w\"", "question": "Which Mountain Peak has a Region of baja california, and a Location of 28.1301\u00b0n 115.2206\u00b0w?", "context": "CREATE TABLE table_name_87 (mountain_peak VARCHAR, region VARCHAR, location VARCHAR)"}, {"answer": "SELECT region FROM table_name_95 WHERE mountain_peak = \"dillingham high point\"", "question": "Name the Region with a Mountain Peak of dillingham high point?", "context": "CREATE TABLE table_name_95 (region VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_23 WHERE score = 70 - 71 - 77 - 76 = 294", "question": "How much was paid to the player whose score was 70-71-77-76=294?", "context": "CREATE TABLE table_name_23 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_32 WHERE money___$__ = 816 AND player = \"pete cooper\"", "question": "Which country is Pete Cooper, who made $816, from?", "context": "CREATE TABLE table_name_32 (country VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_51 WHERE position = \"de\" AND overall < 84", "question": "What is the lowest round of the position de player with an overall less than 84?", "context": "CREATE TABLE table_name_51 (round INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_13 WHERE college = \"texas a&i\" AND overall < 28", "question": "What is the highest pick of the player from texas a&i with an overall less than 28?", "context": "CREATE TABLE table_name_13 (pick INTEGER, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_18 WHERE college = \"baylor\" AND pick < 28", "question": "What is the average round of the player from the college of baylor with a pick less than 28?", "context": "CREATE TABLE table_name_18 (round INTEGER, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_3 WHERE college = \"texas a&i\" AND round > 1", "question": "What is the sum of the pick from texas a&i college with a round greater than 1?", "context": "CREATE TABLE table_name_3 (pick INTEGER, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE opponent = \"boston yanks\"", "question": "What date was the opponent the Boston Yanks?", "context": "CREATE TABLE table_name_44 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_41 WHERE date = \"december 5, 1948\"", "question": "What was the record for December 5, 1948?", "context": "CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(nets_points) FROM table_name_62 WHERE game < 9 AND opponents < 95", "question": "What was the average point total for the nets in games before game 9 where the opponents scored less than 95?", "context": "CREATE TABLE table_name_62 (nets_points INTEGER, game VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_32 WHERE record = \"1-3\" AND opponents > 103", "question": "In which game did the opponent score more than 103 and the record was 1-3?", "context": "CREATE TABLE table_name_32 (game INTEGER, record VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_45 WHERE date = \"november 1\"", "question": "What is the lowest Game, when Date is \"November 1\"?", "context": "CREATE TABLE table_name_45 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_50 WHERE high_assists = \"jason kidd (13)\"", "question": "What is High Rebounds, when High Assists is \"Jason Kidd (13)\"?", "context": "CREATE TABLE table_name_50 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE result = \"3\u20130\"", "question": "What is the Date of the Competition with a Result of 3\u20130?", "context": "CREATE TABLE table_name_75 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE competition = \"fifa world cup 1986 qualifying\"", "question": "What is the Score of the Fifa World Cup 1986 Qualifying Competition?", "context": "CREATE TABLE table_name_86 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE competition = \"fifa world cup 1986 play-off\"", "question": "What is the Score of the Fifa World Cup 1986 Play-off Competition?", "context": "CREATE TABLE table_name_7 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT game FROM table_name_11 WHERE home_team = \"st. louis\" AND date = \"april 12\"", "question": "What is the Game number on April 12 with St. Louis Home Team?", "context": "CREATE TABLE table_name_11 (game VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_87 WHERE date = \"april 9\"", "question": "What is the Result of the Game on April 9?", "context": "CREATE TABLE table_name_87 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_33 WHERE date = \"march 30\"", "question": "What is the Game number on March 30?", "context": "CREATE TABLE table_name_33 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_9 WHERE result = \"136-112\"", "question": "What Game had a Result of 136-112?", "context": "CREATE TABLE table_name_9 (game VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_16 WHERE game = \"game 3\"", "question": "What is the Result of Game 3?", "context": "CREATE TABLE table_name_16 (result VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE road_team = \"boston\" AND game = \"game 3\"", "question": "On what Date is Game 3 with Boston Road Team?", "context": "CREATE TABLE table_name_93 (date VARCHAR, road_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_21 WHERE away_team = \"luton town\"", "question": "Who was the home team in the match against Luton Town?", "context": "CREATE TABLE table_name_21 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_38 WHERE away_team = \"southampton\"", "question": "What tie happened with Southampton?", "context": "CREATE TABLE table_name_38 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_56 WHERE home_team = \"sheffield wednesday\"", "question": "What was the tie resulting from Sheffield Wednesday's game?", "context": "CREATE TABLE table_name_56 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_74 WHERE opponent = \"washington redskins\" AND attendance > 56 OFFSET 077", "question": "Which Week has an Opponent of washington redskins, and an Attendance larger than 56,077?", "context": "CREATE TABLE table_name_74 (week VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_61 WHERE date = \"november 19, 1961\"", "question": "Which Attendance has a Date of november 19, 1961?", "context": "CREATE TABLE table_name_61 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE date = \"october 8, 1961\"", "question": "What was the result on october 8, 1961?", "context": "CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT league FROM table_name_74 WHERE finish = \"2nd\" AND losses = 3", "question": "What league had a finish of 2nd and 3 losses?", "context": "CREATE TABLE table_name_74 (league VARCHAR, finish VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_59 WHERE ties < 0", "question": "What is the number of losses when the ties are lesser than 0?", "context": "CREATE TABLE table_name_59 (losses VARCHAR, ties INTEGER)"}, {"answer": "SELECT AVG(losses) FROM table_name_81 WHERE league = \"nfl\" AND season = 2011 AND wins < 13", "question": "What is the losses in the NFL in the 2011 season with less than 13 wins?", "context": "CREATE TABLE table_name_81 (losses INTEGER, wins VARCHAR, league VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_27 WHERE league = \"nfl\" AND finish = \"1st\" AND losses > 6", "question": "What is the highest wins for the NFL with a finish of 1st, and more than 6 losses?", "context": "CREATE TABLE table_name_27 (wins INTEGER, losses VARCHAR, league VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MIN(ties) FROM table_name_12 WHERE league = \"nfl\" AND losses < 2 AND wins < 15", "question": "What is the lowest number of ties in the NFL, with less than 2 losses and less than 15 wins?", "context": "CREATE TABLE table_name_12 (ties INTEGER, wins VARCHAR, league VARCHAR, losses VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_52 WHERE tournament = \"rr donnelley lpga founders cup\"", "question": "Who was the runner-up in the RR Donnelley LPGA Founders Cup?", "context": "CREATE TABLE table_name_52 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_60 WHERE date = \"21 june 1993\"", "question": "What is the surface on 21 june 1993?", "context": "CREATE TABLE table_name_60 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE championship = \"rome\" AND opponent = \"richard krajicek\"", "question": "what is the score when the championship is rome and the opponent is richard krajicek?", "context": "CREATE TABLE table_name_31 (score VARCHAR, championship VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_93 WHERE surface = \"clay\" AND outcome = \"winner\" AND championship = \"estoril\" AND date = \"15 april 1996\"", "question": "who is the opponent when the surface is clay, the outcome is winner and the championship is estoril on 15 april 1996?", "context": "CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR, championship VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_23 WHERE date = \"18 january 1993\"", "question": "who is the opponent on 18 january 1993?", "context": "CREATE TABLE table_name_23 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_51 WHERE outcome = \"winner\" AND opponent = \"yevgeny kafelnikov\"", "question": "what is the score when the outcome is winner against yevgeny kafelnikov?", "context": "CREATE TABLE table_name_51 (score VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_25 WHERE date = \"october 25, 1981\" AND week < 8", "question": "What was the highest number of attendance in a week before 8 and game on October 25, 1981?", "context": "CREATE TABLE table_name_25 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE opponent = \"new orleans saints\"", "question": "On what date did the team play againt the New Orleans Saints?", "context": "CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_40 WHERE date = \"november 29, 1981\" AND week > 13", "question": "What was the average number of attendance for the game on November 29, 1981 played after week 13?", "context": "CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_19 WHERE frequency = \"750 mhz\" AND socket = \"bga2\u03bcpga2\"", "question": "Which model has a frequency of 750 mhz and a socket of bga2\u03bcpga2?", "context": "CREATE TABLE table_name_19 (model_number VARCHAR, frequency VARCHAR, socket VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_48 WHERE socket = \"standard voltage\"", "question": "What model number uses standard voltage socket?", "context": "CREATE TABLE table_name_48 (model_number VARCHAR, socket VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE round = \"sf\"", "question": "what is the date when the round is sf?", "context": "CREATE TABLE table_name_52 (date VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE round = \"qf\"", "question": "what is the date when the round is qf?", "context": "CREATE TABLE table_name_80 (date VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_88 WHERE opponent = \"new york giants\" AND week < 5", "question": "Which Attendance has an Opponent of new york giants, and a Week smaller than 5?", "context": "CREATE TABLE table_name_88 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_69 WHERE opponent = \"pittsburgh steelers\" AND attendance > 47 OFFSET 727", "question": "Which Week has an Opponent of pittsburgh steelers, and an Attendance larger than 47,727?", "context": "CREATE TABLE table_name_69 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_17 WHERE date = \"september 29, 1968\" AND week < 3", "question": "Which Attendance has a Date of september 29, 1968, and a Week smaller than 3?", "context": "CREATE TABLE table_name_17 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT entered_office FROM table_name_43 WHERE election = \"jun. 1959\"", "question": "When did the party elected in jun. 1959 enter office?", "context": "CREATE TABLE table_name_43 (entered_office VARCHAR, election VARCHAR)"}, {"answer": "SELECT year_named FROM table_name_42 WHERE longitude = \"227.5e\"", "question": "What is Year Named, when Longitude is 227.5E?", "context": "CREATE TABLE table_name_42 (year_named VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT AVG(year_named) FROM table_name_70 WHERE latitude = \"37.9n\" AND diameter__km_ > 76", "question": "What is the average Year Named, when Latitude is 37.9N, and when Diameter (km) is greater than 76?", "context": "CREATE TABLE table_name_70 (year_named INTEGER, latitude VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT longitude FROM table_name_61 WHERE name = \"raskova paterae\"", "question": "What is Longitude, when Name is Raskova Paterae?", "context": "CREATE TABLE table_name_61 (longitude VARCHAR, name VARCHAR)"}, {"answer": "SELECT song FROM table_name_8 WHERE artist = \"liam reilly\"", "question": "What's the song of artist liam reilly?", "context": "CREATE TABLE table_name_8 (song VARCHAR, artist VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_93 WHERE artist = \"grace dunne\" AND draw > 5", "question": "What's the total number of points for grace dunne with a draw over 5?", "context": "CREATE TABLE table_name_93 (points VARCHAR, artist VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_40 WHERE points > 60 AND artist = \"paul duffy\"", "question": "What's the highest draw with over 60 points for paul duffy?", "context": "CREATE TABLE table_name_40 (draw INTEGER, points VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_50 WHERE time_retired = \"+19.1 secs\"", "question": "What was the highest grid for a time/retired of +19.1 secs?", "context": "CREATE TABLE table_name_50 (grid INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_97 WHERE area_km_2 > 326.76 AND official_name = \"new bandon\"", "question": "What is the Population of the New Bandon Parish with an Area km 2 larger than 326.76?", "context": "CREATE TABLE table_name_97 (population INTEGER, area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT SUM(area_km_2) FROM table_name_10 WHERE official_name = \"allardville\" AND population < 2 OFFSET 151", "question": "What is the Area of the Allardville Parish with a Population smaller than 2,151?", "context": "CREATE TABLE table_name_10 (area_km_2 INTEGER, official_name VARCHAR, population VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE score = 75 - 68 - 70 = 213", "question": "Who is the player with a 75-68-70=213 score?", "context": "CREATE TABLE table_name_79 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_46 WHERE country = \"australia\"", "question": "What is the place of Australia?", "context": "CREATE TABLE table_name_46 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_25 WHERE player = \"tom watson\"", "question": "What is the place of player tom watson?", "context": "CREATE TABLE table_name_25 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_42 WHERE to_par = \"+3\" AND score = 74 - 71 - 68 = 213", "question": "Who is the player with a +3 to par and a 74-71-68=213 score?", "context": "CREATE TABLE table_name_42 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_64 WHERE player = \"raymond floyd\"", "question": "What is player raymond floyd's country?", "context": "CREATE TABLE table_name_64 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_94 WHERE country = \"united states\" AND score = 75 - 70 - 68 = 211", "question": "Who is the player from the United States with a 75-70-68=211 score?", "context": "CREATE TABLE table_name_94 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT length___ft__ FROM table_name_47 WHERE length___m__ = \"64.2\"", "question": "What is the length in feet when the length in meters is 64.2?", "context": "CREATE TABLE table_name_47 (length___ft__ VARCHAR, length___m__ VARCHAR)"}, {"answer": "SELECT location FROM table_name_29 WHERE length___m__ = \"64.2\"", "question": "Where is the longest arch with a length in meters of 64.2?", "context": "CREATE TABLE table_name_29 (location VARCHAR, length___m__ VARCHAR)"}, {"answer": "SELECT location FROM table_name_47 WHERE length___m__ = \"63\"", "question": "Where is the longest arch with a length in meters of 63?", "context": "CREATE TABLE table_name_47 (location VARCHAR, length___m__ VARCHAR)"}, {"answer": "SELECT rank FROM table_name_29 WHERE length___m__ = \"75/55\"", "question": "What is the rank of the arch with a length in meters of 75/55?", "context": "CREATE TABLE table_name_29 (rank VARCHAR, length___m__ VARCHAR)"}, {"answer": "SELECT length___ft__ FROM table_name_7 WHERE name = \"jiangzhou arch\"", "question": "What is the length in feet of the Jiangzhou arch?", "context": "CREATE TABLE table_name_7 (length___ft__ VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_53 WHERE home_team = \"wollongong hawks\"", "question": "What was the number of the crowd when the Wollongong Hawks were the home team?", "context": "CREATE TABLE table_name_53 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_13 WHERE score = \"101-105\"", "question": "What was the crowd size for the game with a score of 101-105?", "context": "CREATE TABLE table_name_13 (crowd VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_77 WHERE home_team = \"gold coast blaze\"", "question": "What was the average crowd size for the game when the Gold Coast Blaze was the home team?", "context": "CREATE TABLE table_name_77 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_8 WHERE frequency_mhz < 102.5", "question": "What is City of License, when Frequency MHz is less than 102.5?", "context": "CREATE TABLE table_name_8 (city_of_license VARCHAR, frequency_mhz INTEGER)"}, {"answer": "SELECT call_sign FROM table_name_56 WHERE erp_w > 50", "question": "What is Call Sign, when ERP W is greater than 50?", "context": "CREATE TABLE table_name_56 (call_sign VARCHAR, erp_w INTEGER)"}, {"answer": "SELECT city_of_license FROM table_name_42 WHERE erp_w > 3 AND call_sign = \"k218dz\"", "question": "What is City of License, when ERP W is greater than 3, and when Call Sign is K218DZ?", "context": "CREATE TABLE table_name_42 (city_of_license VARCHAR, erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_51 WHERE city_of_license = \"brownfield, texas\"", "question": "What is Call Sign, when City of License is Brownfield, Texas?", "context": "CREATE TABLE table_name_51 (call_sign VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT SUM(erp_w) FROM table_name_49 WHERE call_sign = \"k216ga\"", "question": "What is the Sum of ERP W, when Call Sign is K216GA?", "context": "CREATE TABLE table_name_49 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_48 WHERE college = \"auburn\" AND pick > 9", "question": "What is the total number of overall picks that were after pick 9 and went to Auburn College?", "context": "CREATE TABLE table_name_48 (overall VARCHAR, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT overall FROM table_name_72 WHERE pick < 9 AND college = \"michigan state\" AND name = \"buck mystrom\"", "question": "What is the overall pick number for a draft pick smaller than 9, named buck mystrom from Michigan State college?", "context": "CREATE TABLE table_name_72 (overall VARCHAR, name VARCHAR, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_1 WHERE overall > 310 AND name = \"billy hicks\"", "question": "What is the average number of rounds for billy hicks who had an overall pick number bigger than 310?", "context": "CREATE TABLE table_name_1 (round INTEGER, overall VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_62 WHERE pick = 9 AND name = \"jim pyburn\"", "question": "What is the sum of rounds that has a pick of 9 and is named jim pyburn?", "context": "CREATE TABLE table_name_62 (round INTEGER, pick VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_6 WHERE name = \"donnie caraway\"", "question": "What is the highest round number for donnie caraway?", "context": "CREATE TABLE table_name_6 (round INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_35 WHERE name = \"george nicula\" AND pick < 9", "question": "What is the highest overall pick number for george nicula who had a pick smaller than 9?", "context": "CREATE TABLE table_name_35 (overall INTEGER, name VARCHAR, pick VARCHAR)"}, {"answer": "SELECT status FROM table_name_31 WHERE date = \"12/7/1997\"", "question": "What is the status of the match held on 12/7/1997?", "context": "CREATE TABLE table_name_31 (status VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_91 WHERE against > 21 AND opposing_team = \"argentina\"", "question": "Which venue has an against value larger than 21 and had Argentina as an opposing team.", "context": "CREATE TABLE table_name_91 (venue VARCHAR, against VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_45 WHERE date = \"21/5/1997\"", "question": "What was the average of againsts on 21/5/1997?", "context": "CREATE TABLE table_name_45 (against INTEGER, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_93 WHERE year < 1997", "question": "What was the outcome before 1997?", "context": "CREATE TABLE table_name_93 (outcome VARCHAR, year INTEGER)"}, {"answer": "SELECT championship FROM table_name_3 WHERE year > 1997 AND score = \"1\u20136, 4\u20136, 7\u20135, 5\u20137\"", "question": "What championship after 1997 was the score 1\u20136, 4\u20136, 7\u20135, 5\u20137?", "context": "CREATE TABLE table_name_3 (championship VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_21 WHERE opponent = \"petr korda\"", "question": "How many years was the opponent petr korda?", "context": "CREATE TABLE table_name_21 (year VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_68 WHERE year = 1996", "question": "What was the surface in 1996?", "context": "CREATE TABLE table_name_68 (surface VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_53 WHERE rd_7 < 8", "question": "What is the sum of total values for Rd 7 less than 8?", "context": "CREATE TABLE table_name_53 (total INTEGER, rd_7 INTEGER)"}, {"answer": "SELECT SUM(rd_7) FROM table_name_97 WHERE position > 1 AND rd_6 < 48 AND team = \"tc motorsport\" AND rd_8 < 4", "question": "What is the sum of values of Rd 7 with RD 6 less than 48 and Rd 8 less than 4 for TC Motorsport in a position greater than 1?", "context": "CREATE TABLE table_name_97 (rd_7 INTEGER, rd_8 VARCHAR, team VARCHAR, position VARCHAR, rd_6 VARCHAR)"}, {"answer": "SELECT AVG(rd_8) FROM table_name_68 WHERE team = \"audi sport australia\" AND position < 2", "question": "What is the average value for Rd 8 in a position less than 2 for Audi Sport Australia?", "context": "CREATE TABLE table_name_68 (rd_8 INTEGER, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_53 WHERE player = \"luca sbisa\"", "question": "What position did Luca Sbisa play for the Philadelphia Flyers?", "context": "CREATE TABLE table_name_53 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_48 WHERE home_team = \"walsall\"", "question": "What was the attendance for the home team of Walsall?", "context": "CREATE TABLE table_name_48 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_55 WHERE tie_no = \"20\"", "question": "Who were the away team in tie number 20?", "context": "CREATE TABLE table_name_55 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE tie_no = \"15\"", "question": "What was the score of tie number 15?", "context": "CREATE TABLE table_name_6 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_23 WHERE tournament = \"konica san jose classic\"", "question": "What is the margin of victory when the tournament is konica san jose classic?", "context": "CREATE TABLE table_name_23 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_78 WHERE runner_s__up = \"amy alcott\" AND winning_score = \u20139(72 - 68 - 67 = 207)", "question": "what is the margin of victory when the runner-up is amy alcott and the winning score is \u20139 (72-68-67=207)?", "context": "CREATE TABLE table_name_78 (margin_of_victory VARCHAR, runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_73 WHERE tournament = \"safeco classic\"", "question": "what is the winning score when the tournament is safeco classic?", "context": "CREATE TABLE table_name_73 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_84 WHERE winning_score = \u20139(69 - 69 - 70 - 71 = 279)", "question": "what is the tournament when the winning score is \u20139 (69-69-70-71=279)?", "context": "CREATE TABLE table_name_84 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT rider FROM table_name_44 WHERE laps < 15 AND grid > 32 AND time_retired = \"accident\"", "question": "Who is the rider with less than 15 laps, more than 32 grids, and an accident time/retired?", "context": "CREATE TABLE table_name_44 (rider VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_71 WHERE manufacturer = \"honda\" AND grid < 26 AND laps = 18 AND rider = \"joan oliv\u00e9\"", "question": "What is the time/retired of the honda manufacturer with a grid less than 26, 18 laps, and joan oliv\u00e9 as the rider?", "context": "CREATE TABLE table_name_71 (time_retired VARCHAR, rider VARCHAR, laps VARCHAR, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_84 WHERE time_retired = \"accident\" AND manufacturer = \"aprilia\" AND grid = 27", "question": "What is the average number of laps with an accident time/retired, aprilia manufacturer and a grid of 27?", "context": "CREATE TABLE table_name_84 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT type FROM table_name_47 WHERE rank > 6 AND number_of_bearers_2008 > 13.815 AND surname = \"eriksen\"", "question": "What is Type, when Rank is greater than 6, when Number of Bearers 2008 is greater than 13.815, and when Surname is Eriksen?", "context": "CREATE TABLE table_name_47 (type VARCHAR, surname VARCHAR, rank VARCHAR, number_of_bearers_2008 VARCHAR)"}, {"answer": "SELECT MAX(number_of_bearers_2008) FROM table_name_32 WHERE surname = \"hansen\" AND rank < 1", "question": "What is the highest Number of Bearers 2008, when Surname is Hansen, and when Rank is less than 1?", "context": "CREATE TABLE table_name_32 (number_of_bearers_2008 INTEGER, surname VARCHAR, rank VARCHAR)"}, {"answer": "SELECT type FROM table_name_68 WHERE number_of_bearers_2008 > 12.376 AND rank > 3 AND etymology = \"son of jens\"", "question": "What is Type, when Number of Bearers 2008 is greater than 12.376, when Rank is greater than 3, and when Etymology is Son of Jens?", "context": "CREATE TABLE table_name_68 (type VARCHAR, etymology VARCHAR, number_of_bearers_2008 VARCHAR, rank VARCHAR)"}, {"answer": "SELECT etymology FROM table_name_10 WHERE rank = 14", "question": "What is Etymology, when Rank is 14?", "context": "CREATE TABLE table_name_10 (etymology VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(number_of_bearers_2008) FROM table_name_87 WHERE surname = \"jacobsen\"", "question": "What is Highest Number of Bearers 2008, when Surname is Jacobsen?", "context": "CREATE TABLE table_name_87 (number_of_bearers_2008 INTEGER, surname VARCHAR)"}, {"answer": "SELECT position FROM table_name_86 WHERE round > 2 AND college = \"valdosta\"", "question": "WHAT POSITION HAS A ROUND LARGER THAN 2, FOR VALDOSTA COLLEGE?", "context": "CREATE TABLE table_name_86 (position VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_74 WHERE round > 9 AND player = \"butch webster\"", "question": "WHAT COLLEGE HAS A ROUND LARGER THAN 9, WITH BUTCH WEBSTER?", "context": "CREATE TABLE table_name_74 (college VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_53 WHERE college = \"southwestern oklahoma\"", "question": "WHAT IS THE NATIONALITY FOR SOUTHWESTERN OKLAHOMA?", "context": "CREATE TABLE table_name_53 (nationality VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_32 WHERE college = \"boston college\"", "question": "WHAT IS THE TOTAL PICK FOR BOSTON COLLEGE?", "context": "CREATE TABLE table_name_32 (pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT round FROM table_name_18 WHERE position = \"guard\" AND college = \"ohio\"", "question": "WHAT ROUND HAS A GUARD POSITION AT OHIO COLLEGE?", "context": "CREATE TABLE table_name_18 (round VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE round = \"r3\"", "question": "What is the date where the round is R3?", "context": "CREATE TABLE table_name_40 (date VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_31 WHERE venue = \"h\" AND opponent = \"derby county\"", "question": "What is the round of the game at venue H and opponent of Derby County?", "context": "CREATE TABLE table_name_31 (round VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_40 WHERE attendance = 18 OFFSET 690", "question": "What sum of game has an attendance of 18,690?", "context": "CREATE TABLE table_name_40 (game INTEGER, attendance VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_7 WHERE date = \"february 24\" AND attendance < 16 OFFSET 541", "question": "What average game was held on february 24 and has an attendance smaller than 16,541?", "context": "CREATE TABLE table_name_7 (game INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE tie_no = \"1\"", "question": "What was the score of having a tie of 1?", "context": "CREATE TABLE table_name_27 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_1 WHERE away_team = \"stockport county\"", "question": "What was the attendance for the game where the away team was Stockport County?", "context": "CREATE TABLE table_name_1 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_93 WHERE tie_no = \"2\"", "question": "What was the name of the away team that had a tie of 2?", "context": "CREATE TABLE table_name_93 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE home_team = \"wycombe wanderers\"", "question": "What was the score for the game where the home team was Wycombe Wanderers?", "context": "CREATE TABLE table_name_73 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_16 WHERE home_team = \"leicester city\"", "question": "What was the score for the match where the home team was Leicester City?", "context": "CREATE TABLE table_name_16 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_78 WHERE aedt_time = \"11:00 pm\"", "question": "Which Home team score has a AEDT Time of 11:00 pm?", "context": "CREATE TABLE table_name_78 (home_team VARCHAR, aedt_time VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_65 WHERE date = \"wednesday, 25 february 1998\"", "question": "Which Home team is on Wednesday, 25 february 1998?", "context": "CREATE TABLE table_name_65 (home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_81 WHERE ground = \"waverley park\" AND home_team = \"hawthorn\"", "question": "Name the Away team which has a Ground of waverley park, and a Home team of hawthorn?", "context": "CREATE TABLE table_name_81 (away_team VARCHAR, ground VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT aedt_time FROM table_name_62 WHERE away_team = \"collingwood\"", "question": "Name the AEDT Time which has an Away team of collingwood?", "context": "CREATE TABLE table_name_62 (aedt_time VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_72 WHERE opponent = \"at detroit lions\"", "question": "What was the attendance when they played at Detroit Lions?", "context": "CREATE TABLE table_name_72 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_39 WHERE opponent = \"at atlanta falcons\"", "question": "What was the average attendance for games played at Atlanta Falcons?", "context": "CREATE TABLE table_name_39 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT week FROM table_name_39 WHERE date = \"december 8, 1974\"", "question": "Which week was the game played on December 8, 1974?", "context": "CREATE TABLE table_name_39 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE week < 13 AND opponent = \"oakland raiders\"", "question": "What was the result before week 13 when they played the Oakland Raiders?", "context": "CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_67 WHERE event = \"tachi palace fights 3\"", "question": "What time did the even tachi palace fights 3 take place?", "context": "CREATE TABLE table_name_67 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_30 WHERE event = \"kotc: mortal sins\"", "question": "What location did the event kotc: mortal sins take place?", "context": "CREATE TABLE table_name_30 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_41 WHERE player = \"freddie mitchell\"", "question": "What is the sum of rounds where freddie mitchell was picked?", "context": "CREATE TABLE table_name_41 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_40 WHERE pick = 147", "question": "Who was the player who was pick number 147?", "context": "CREATE TABLE table_name_40 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_70 WHERE round = 5 AND player = \"a. j. feeley\"", "question": "What position did a. j. feeley play who was picked in round 5?", "context": "CREATE TABLE table_name_70 (position VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_18 WHERE round = 3", "question": "What position did the player who was picked in round 3 play?", "context": "CREATE TABLE table_name_18 (position VARCHAR, round VARCHAR)"}, {"answer": "SELECT country FROM table_name_95 WHERE player = \"tom kite\"", "question": "What Country is Tom Kite from?", "context": "CREATE TABLE table_name_95 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_2 WHERE finish = \"1\"", "question": "What is the Total of the Player with a Finish of 1?", "context": "CREATE TABLE table_name_2 (total VARCHAR, finish VARCHAR)"}, {"answer": "SELECT AVG(2010 AS _pop) FROM table_name_26 WHERE city = \"frankfort\" AND rank < 14", "question": "What was the 2010 population of frankfort which has a rank smaller than 14?", "context": "CREATE TABLE table_name_26 (city VARCHAR, rank VARCHAR)"}, {"answer": "SELECT class AS pos FROM table_name_73 WHERE pos = \"4th\"", "question": "What was the class position of the team that was in the 4th position?", "context": "CREATE TABLE table_name_73 (class VARCHAR, pos VARCHAR)"}, {"answer": "SELECT class AS pos FROM table_name_72 WHERE year < 2013 AND laps > 175", "question": "What is Class Pos., when Year is before 2013, and when Laps is greater than 175?", "context": "CREATE TABLE table_name_72 (class VARCHAR, year VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_58 WHERE category = \"best original song (\u0e23\u0e2d\u0e40\u0e18\u0e2d\u0e2b\u0e31\u0e19\u0e21\u0e32 \u2013 \u0e42\u0e1f\u0e01\u0e31\u0e2a \u0e08\u0e34\u0e23\u0e30\u0e01\u0e38\u0e25)\"", "question": "Which Year has a Category of best original song (\u0e23\u0e2d\u0e40\u0e18\u0e2d\u0e2b\u0e31\u0e19\u0e21\u0e32 \u2013 \u0e42\u0e1f\u0e01\u0e31\u0e2a \u0e08\u0e34\u0e23\u0e30\u0e01\u0e38\u0e25)?", "context": "CREATE TABLE table_name_58 (year INTEGER, category VARCHAR)"}, {"answer": "SELECT year FROM table_name_7 WHERE award = \"17th bangkok critics assembly awards\" AND category = \"best original score\"", "question": "Which Year has an Award of 17th bangkok critics assembly awards, and a Category of best original score?", "context": "CREATE TABLE table_name_7 (year VARCHAR, award VARCHAR, category VARCHAR)"}, {"answer": "SELECT country FROM table_name_75 WHERE result = \"nominated\" AND award = \"17th bangkok critics assembly awards\" AND category = \"best screenplay\"", "question": "Which Country has a Result of nominated, an Award of 17th bangkok critics assembly awards, and a Category of best screenplay?", "context": "CREATE TABLE table_name_75 (country VARCHAR, category VARCHAR, result VARCHAR, award VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE round = \"1\" AND record = \"14-4-1\"", "question": "Who was the opponent with a record of 14-4-1 and has a round of 1?", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT round FROM table_name_32 WHERE location = \"finland\" AND method = \"draw\"", "question": "What is the round in Finland with a draw for method?", "context": "CREATE TABLE table_name_32 (round VARCHAR, location VARCHAR, method VARCHAR)"}, {"answer": "SELECT location FROM table_name_17 WHERE record = \"6-0-1\"", "question": "What's the location when the record was 6-0-1?", "context": "CREATE TABLE table_name_17 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_62 WHERE date = \"october 14, 1984\"", "question": "Who was the opponent on October 14, 1984?", "context": "CREATE TABLE table_name_62 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_21 WHERE week < 10 AND opponent = \"chicago bears\"", "question": "What was the result in a week lower than 10 with an opponent of Chicago Bears?", "context": "CREATE TABLE table_name_21 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_54 WHERE result = \"l 16-13\"", "question": "What is the sum of attendance when the result was l 16-13?", "context": "CREATE TABLE table_name_54 (attendance INTEGER, result VARCHAR)"}, {"answer": "SELECT name FROM table_name_85 WHERE pos = \"fullback, hooker\"", "question": "What is the name when the position was fullback, hooker?", "context": "CREATE TABLE table_name_85 (name VARCHAR, pos VARCHAR)"}, {"answer": "SELECT name FROM table_name_33 WHERE pos = \"centre\"", "question": "What is the name when the position is centre?", "context": "CREATE TABLE table_name_33 (name VARCHAR, pos VARCHAR)"}, {"answer": "SELECT show FROM table_name_89 WHERE character = \"rohan\"", "question": "Which show has a character of Rohan?", "context": "CREATE TABLE table_name_89 (show VARCHAR, character VARCHAR)"}, {"answer": "SELECT show FROM table_name_85 WHERE award_ceremony = \"indian television academy awards\" AND category = \"ita milestone award\"", "question": "Which show was nominated for the ITA Milestone Award at the Indian Television Academy Awards?", "context": "CREATE TABLE table_name_85 (show VARCHAR, award_ceremony VARCHAR, category VARCHAR)"}, {"answer": "SELECT character FROM table_name_1 WHERE year = 2010 AND award_ceremony = \"indian television academy awards\"", "question": "Which character was nominated in the 2010 Indian Television Academy Awards?", "context": "CREATE TABLE table_name_1 (character VARCHAR, year VARCHAR, award_ceremony VARCHAR)"}, {"answer": "SELECT rank FROM table_name_21 WHERE gross = \"$26,589,355\"", "question": "What rank is the title with a gross of $26,589,355?", "context": "CREATE TABLE table_name_21 (rank VARCHAR, gross VARCHAR)"}, {"answer": "SELECT title FROM table_name_11 WHERE rank < 19 AND gross = \"$11,833,696\"", "question": "Which title ranked lower than 19 has a gross of $11,833,696?", "context": "CREATE TABLE table_name_11 (title VARCHAR, rank VARCHAR, gross VARCHAR)"}, {"answer": "SELECT rank FROM table_name_44 WHERE gross = \"$35,976,000\"", "question": "What rank has a gross of $35,976,000?", "context": "CREATE TABLE table_name_44 (rank VARCHAR, gross VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_62 WHERE title = \"the big doll house\"", "question": "What is the rank of The Big Doll House?", "context": "CREATE TABLE table_name_62 (rank INTEGER, title VARCHAR)"}, {"answer": "SELECT equipment FROM table_name_46 WHERE points > 256 AND position = 3", "question": "What is the Equipment that has a Point bigger than 256, and a Position of 3?", "context": "CREATE TABLE table_name_46 (equipment VARCHAR, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT equipment FROM table_name_93 WHERE points < 442 AND position = 9", "question": "What is the Equipment that has a Points littler than 442, and a Position of 9?", "context": "CREATE TABLE table_name_93 (equipment VARCHAR, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_96 WHERE points = 257 AND bike_no < 19", "question": "What is the most elevated Position that has a Points of 257, and a Bike No littler than 19?", "context": "CREATE TABLE table_name_96 (position INTEGER, points VARCHAR, bike_no VARCHAR)"}, {"answer": "SELECT place FROM table_name_18 WHERE score > 67 AND country = \"united states\" AND to_par = \"e\" AND player = \"bunky henry\"", "question": "When Bunky Henry of the United States scored higher than 67 and his To par was e, what was his place?", "context": "CREATE TABLE table_name_18 (place VARCHAR, player VARCHAR, to_par VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_14 WHERE score > 68 AND to_par = \"e\" AND player = \"bunky henry\"", "question": "When Bunky Henry of the United States scored higher than 68 and his To par was e, what was his place?", "context": "CREATE TABLE table_name_14 (place VARCHAR, player VARCHAR, score VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT place FROM table_name_74 WHERE country = \"united states\" AND player = \"bob murphy\"", "question": "Where did Bob Murphy of the United States place?", "context": "CREATE TABLE table_name_74 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_75 WHERE place = \"t8\" AND player = \"bunky henry\"", "question": "When Bunky Henry placed t8, what was his To par?", "context": "CREATE TABLE table_name_75 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_22 WHERE player = \"george archer\"", "question": "Which country is George Archer from?", "context": "CREATE TABLE table_name_22 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT season FROM table_name_30 WHERE third = \"zach jacobson\"", "question": "Which season has Zach Jacobson in third?", "context": "CREATE TABLE table_name_30 (season VARCHAR, third VARCHAR)"}, {"answer": "SELECT lead FROM table_name_83 WHERE skip = \"john shuster\" AND season = \"2009\u201310\"", "question": "Who was the lead with John Shuster as skip in the season of 2009\u201310?", "context": "CREATE TABLE table_name_83 (lead VARCHAR, skip VARCHAR, season VARCHAR)"}, {"answer": "SELECT second FROM table_name_71 WHERE lead = \"shane mckinlay\"", "question": "Who was second when Shane McKinlay was the lead?", "context": "CREATE TABLE table_name_71 (second VARCHAR, lead VARCHAR)"}, {"answer": "SELECT lead FROM table_name_61 WHERE skip = \"pete fenson\" AND second = \"joe polo\" AND season = \"2005\u201306\"", "question": "Who was the lead with Pete Fenson as skip and Joe Polo as second in season 2005\u201306?", "context": "CREATE TABLE table_name_61 (lead VARCHAR, season VARCHAR, skip VARCHAR, second VARCHAR)"}, {"answer": "SELECT lead FROM table_name_50 WHERE skip = \"john shuster\" AND third = \"jeff isaacson\" AND second = \"chris plys\"", "question": "Who was the lead with John Shuster as skip, Chris Plys in second, and Jeff Isaacson in third?", "context": "CREATE TABLE table_name_50 (lead VARCHAR, second VARCHAR, skip VARCHAR, third VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_23 WHERE finish = \"t11\" AND player = \"david graham\"", "question": "WHAT IS THE TO PAR WITH A FINISH OF T11, FOR DAVID GRAHAM?", "context": "CREATE TABLE table_name_23 (to_par VARCHAR, finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_14 WHERE year_s__won = \"1982\"", "question": "WHAT IS THE TOTAL THAT HAS A WIN IN 1982?", "context": "CREATE TABLE table_name_14 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_96 WHERE player = \"hubert green\" AND total > 291", "question": "WHAT IS THE TOTAL, OF A TO PAR FOR HUBERT GREEN, AND A TOTAL LARGER THAN 291?", "context": "CREATE TABLE table_name_96 (to_par VARCHAR, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(area_km_2) FROM table_name_75 WHERE official_name = \"glenelg\"", "question": "Can you tell me the sum of Area km 2 that has the Official Name of glenelg?", "context": "CREATE TABLE table_name_75 (area_km_2 INTEGER, official_name VARCHAR)"}, {"answer": "SELECT MIN(area_km_2) FROM table_name_16 WHERE population = 2 OFFSET 352", "question": "Can you tell me the lowest Area km 2 that has the Population of 2,352?", "context": "CREATE TABLE table_name_16 (area_km_2 INTEGER, population VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_35 WHERE state = \"indiana\" AND city_of_license = \"west lafayette\"", "question": "What is the FCC info for the radio station in West Lafayette, Indiana?", "context": "CREATE TABLE table_name_35 (fcc_info VARCHAR, state VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_70 WHERE state = \"indiana\" AND call_sign = \"wgnr\"", "question": "What is the frequency of the radio station in Indiana that has a call sign of WGNR?", "context": "CREATE TABLE table_name_70 (frequency VARCHAR, state VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_19 WHERE call_sign = \"wgnr-fm\"", "question": "What is the frequency of the radio station with a call sign of WGNR-FM?", "context": "CREATE TABLE table_name_19 (frequency VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT state FROM table_name_71 WHERE frequency = \"90.1 fm\" AND city_of_license = \"new castle\"", "question": "What state is the radio station in that has a frequency of 90.1 FM and a city license in New Castle?", "context": "CREATE TABLE table_name_71 (state VARCHAR, frequency VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_61 WHERE frequency = \"103.3 fm\"", "question": "What city is 103.3 FM licensed in?", "context": "CREATE TABLE table_name_61 (city_of_license VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_87 WHERE state = \"florida\" AND frequency = \"90.9 fm\"", "question": "What is the call sign for 90.9 FM which is in Florida?", "context": "CREATE TABLE table_name_87 (call_sign VARCHAR, state VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT res FROM table_name_98 WHERE event = \"call to arms i\"", "question": "What is the result for the Call to Arms I event?", "context": "CREATE TABLE table_name_98 (res VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_4 WHERE team = \"utah jazz\"", "question": "What is the record for the Utah Jazz?", "context": "CREATE TABLE table_name_4 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT location FROM table_name_65 WHERE method = \"tko (punches)\" AND time = \"2:48\"", "question": "what is the location when the method is tko (punches) and the time is 2:48?", "context": "CREATE TABLE table_name_65 (location VARCHAR, method VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_90 WHERE record = \"5-1-1\"", "question": "what is the location when the record is 5-1-1?", "context": "CREATE TABLE table_name_90 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(avg_g) FROM table_name_40 WHERE name = \"mccrary, greg\"", "question": "What is the total avg/g of McCrary, Greg?", "context": "CREATE TABLE table_name_40 (avg_g VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(effic) FROM table_name_58 WHERE avg_g = 58.9", "question": "What is the lowest effic with a 58.9 avg/g?", "context": "CREATE TABLE table_name_58 (effic INTEGER, avg_g VARCHAR)"}, {"answer": "SELECT avg_g FROM table_name_70 WHERE effic > 73.95 AND name = \"rhines, chris\"", "question": "What is the avg/g of Rhines, Chris, who has an effic greater than 73.95?", "context": "CREATE TABLE table_name_70 (avg_g VARCHAR, effic VARCHAR, name VARCHAR)"}, {"answer": "SELECT week FROM table_name_57 WHERE record = \"5\u20132\"", "question": "Which week has a record of 5\u20132?", "context": "CREATE TABLE table_name_57 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE result = \"w 28\u20137\"", "question": "On what date was the result w 28\u20137?", "context": "CREATE TABLE table_name_85 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT name FROM table_name_21 WHERE birth = \"16 august 1401\"", "question": "Who has a birth of 16 august 1401?", "context": "CREATE TABLE table_name_21 (name VARCHAR, birth VARCHAR)"}, {"answer": "SELECT death FROM table_name_1 WHERE husband = \"charles, 1st dauphin\"", "question": "when was the death of the person with husband Charles, 1st dauphin?", "context": "CREATE TABLE table_name_1 (death VARCHAR, husband VARCHAR)"}, {"answer": "SELECT death FROM table_name_45 WHERE birth = \"8 december 1542\"", "question": "when was the death when the birth was 8 december 1542?", "context": "CREATE TABLE table_name_45 (death VARCHAR, birth VARCHAR)"}, {"answer": "SELECT became_dauphine FROM table_name_72 WHERE birth = \"1393\"", "question": "When was became dauphine when birth is 1393?", "context": "CREATE TABLE table_name_72 (became_dauphine VARCHAR, birth VARCHAR)"}, {"answer": "SELECT marriage FROM table_name_79 WHERE became_dauphine = \"31 august 1412\"", "question": "when was the marriage when became dauphine is 31 august 1412?", "context": "CREATE TABLE table_name_79 (marriage VARCHAR, became_dauphine VARCHAR)"}, {"answer": "SELECT husband FROM table_name_36 WHERE ceased_to_be_dauphine = \"22 july 1461 became queen\"", "question": "who is the husband when ceased to be dauphine is 22 july 1461 became queen?", "context": "CREATE TABLE table_name_36 (husband VARCHAR, ceased_to_be_dauphine VARCHAR)"}, {"answer": "SELECT MIN(money___) AS $__ FROM table_name_45 WHERE country = \"united states\" AND player = \"kirk triplett\"", "question": "what is the least money ($) when the country is united states and the player is kirk triplett?", "context": "CREATE TABLE table_name_45 (money___ INTEGER, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_21 WHERE score = 71 - 74 - 69 - 72 = 286", "question": "what is the most money ($) when the score is 71-74-69-72=286?", "context": "CREATE TABLE table_name_21 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_40 WHERE place = \"t6\" AND player = \"chris dimarco\"", "question": "What is the Money ($) when the Place is t6, and Player is chris dimarco?", "context": "CREATE TABLE table_name_40 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT year FROM table_name_26 WHERE movie_title = \"jamboree\"", "question": "What year was Jamboree made?", "context": "CREATE TABLE table_name_26 (year VARCHAR, movie_title VARCHAR)"}, {"answer": "SELECT movie_title FROM table_name_75 WHERE year = 1957", "question": "What movie was made in 1957?", "context": "CREATE TABLE table_name_75 (movie_title VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_35 WHERE producer = \"sam kazman\"", "question": "What year was Sam Kazman a producer?", "context": "CREATE TABLE table_name_35 (year VARCHAR, producer VARCHAR)"}, {"answer": "SELECT producer FROM table_name_60 WHERE year = 1961", "question": "Who were the producers in 1961?", "context": "CREATE TABLE table_name_60 (producer VARCHAR, year VARCHAR)"}, {"answer": "SELECT role FROM table_name_70 WHERE year = 1961", "question": "What were the roles in 1961?", "context": "CREATE TABLE table_name_70 (role VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE week = 13", "question": "What was the date during week 13?", "context": "CREATE TABLE table_name_70 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_26 WHERE november = 27", "question": "what is the game when on november 27?", "context": "CREATE TABLE table_name_26 (game INTEGER, november VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_68 WHERE november = 24", "question": "who is the opponent on november 24?", "context": "CREATE TABLE table_name_68 (opponent VARCHAR, november VARCHAR)"}, {"answer": "SELECT opposing_team FROM table_name_48 WHERE against < 42 AND status = \"tour match\" AND venue = \"rugby park, gisborne\"", "question": "Which opposing team had an Against score less than 42 and a Tour Match status in Rugby Park, Gisborne?", "context": "CREATE TABLE table_name_48 (opposing_team VARCHAR, venue VARCHAR, against VARCHAR, status VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE opposing_team = \"poverty bay\"", "question": "What date was the opposing team Poverty Bay?", "context": "CREATE TABLE table_name_94 (date VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_84 WHERE against < 18 AND opposing_team = \"north auckland\"", "question": "Which venue had an against score smaller than 18 when the opposing team was North Auckland?", "context": "CREATE TABLE table_name_84 (venue VARCHAR, against VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE time = \"14:00\"", "question": "What was the score when the time was 14:00?", "context": "CREATE TABLE table_name_86 (score VARCHAR, time VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_13 WHERE high_points = \"kobe bryant (27)\" AND high_rebounds = \"pau gasol (11)\"", "question": "What is High Assists, when High Points is \"Kobe Bryant (27)\", and when High Rebounds is \"Pau Gasol (11)\"?", "context": "CREATE TABLE table_name_13 (high_assists VARCHAR, high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE team = \"st. louis\"", "question": "What is the record for the St. Louis team?", "context": "CREATE TABLE table_name_58 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_46 WHERE 1991 = \"w\"", "question": "What shows for 2002 when the 1991 is w?", "context": "CREATE TABLE table_name_46 (Id VARCHAR)"}, {"answer": "SELECT 1995 FROM table_name_74 WHERE 1996 = \"grand slams\"", "question": "What shows for 1995 when 1996 shows grand slams?", "context": "CREATE TABLE table_name_74 (Id VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_3 WHERE 1994 = \"a\" AND 1989 = \"nme\" AND 1999 = \"2r\"", "question": "What shows for 202 when the 1994 is A, the 1989 is NME, and the 199 is 2R?", "context": "CREATE TABLE table_name_3 (Id VARCHAR)"}, {"answer": "SELECT 1992 FROM table_name_43 WHERE 1988 = \"a\" AND tournament = \"australian open\"", "question": "What shows for 1992 when 1988 is A, at the Australian Open?", "context": "CREATE TABLE table_name_43 (tournament VARCHAR)"}, {"answer": "SELECT 1992 FROM table_name_3 WHERE 2001 = \"1r\" AND 1994 = \"1r\" AND 2002 = \"qf\"", "question": "What shows for 1992 when 2001 is 1r, 1994 is 1r, and the 2002 is qf?", "context": "CREATE TABLE table_name_3 (Id VARCHAR)"}, {"answer": "SELECT 1988 FROM table_name_32 WHERE 1994 = \"10\u20136\"", "question": "What shows for 1988 when 1994 shows 10\u20136?", "context": "CREATE TABLE table_name_32 (Id VARCHAR)"}, {"answer": "SELECT result FROM table_name_37 WHERE round = \"f\"", "question": "What result is found for the round that has f?", "context": "CREATE TABLE table_name_37 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT method FROM table_name_83 WHERE opponent = \"dale hartt\"", "question": "What was the method of resolution for the fight against dale hartt?", "context": "CREATE TABLE table_name_83 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT phase FROM table_name_72 WHERE round = \"matchday 4\"", "question": "Which phase is for the Matchday 4 Round?", "context": "CREATE TABLE table_name_72 (phase VARCHAR, round VARCHAR)"}, {"answer": "SELECT mountain_range FROM table_name_28 WHERE state = \"colorado\" AND rank > 90 AND mountain_peak = \"whetstone mountain\"", "question": "what is the mountain range when the state is colorado, rank is higher than 90 and mountain peak is whetstone mountain?", "context": "CREATE TABLE table_name_28 (mountain_range VARCHAR, mountain_peak VARCHAR, state VARCHAR, rank VARCHAR)"}, {"answer": "SELECT mountain_peak FROM table_name_73 WHERE location = \"37.5775\u00b0n 105.4856\u00b0w\"", "question": "what is the mountain peak when the location is 37.5775\u00b0n 105.4856\u00b0w?", "context": "CREATE TABLE table_name_73 (mountain_peak VARCHAR, location VARCHAR)"}, {"answer": "SELECT mountain_range FROM table_name_50 WHERE mountain_peak = \"mauna kea\"", "question": "what is the mountain range when the mountain peak is mauna kea?", "context": "CREATE TABLE table_name_50 (mountain_range VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_21 WHERE state = \"colorado\" AND location = \"37.7859\u00b0n 107.7039\u00b0w\"", "question": "what is the rank when the state is colorado and the location is 37.7859\u00b0n 107.7039\u00b0w?", "context": "CREATE TABLE table_name_21 (rank INTEGER, state VARCHAR, location VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_82 WHERE time = \"3:00\"", "question": "What is the number of people in attendance when the time is 3:00?", "context": "CREATE TABLE table_name_82 (attendance VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE location = \"tiger stadium\" AND date = \"october 12\"", "question": "What was the score at Tiger Stadium on October 12?", "context": "CREATE TABLE table_name_14 (score VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_83 WHERE location = \"oakland-alameda county coliseum\" AND game = 2", "question": "What is the number of people in attendance at Oakland-Alameda County Coliseum, and game is 2?", "context": "CREATE TABLE table_name_83 (attendance INTEGER, location VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_13 WHERE team = \"atlanta\"", "question": "Who had the most assists in the game against Atlanta?", "context": "CREATE TABLE table_name_13 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_85 WHERE lost > 10", "question": "What is the lowest played with a lost bigger than 10?", "context": "CREATE TABLE table_name_85 (played INTEGER, lost INTEGER)"}, {"answer": "SELECT team FROM table_name_81 WHERE goals_conceded < 25 AND place < 3", "question": "What team with a goals conceded smaller than 25, and a place smaller than 3?", "context": "CREATE TABLE table_name_81 (team VARCHAR, goals_conceded VARCHAR, place VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_90 WHERE lost < 6 AND place = 5 AND goals_scored < 29", "question": "What is the sum of draw with a lost smaller than 6, and a place of 5, and a goals scored less than 29?", "context": "CREATE TABLE table_name_90 (draw INTEGER, goals_scored VARCHAR, lost VARCHAR, place VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_70 WHERE points < 12", "question": "What is the total number for a place with points smaller than 12?", "context": "CREATE TABLE table_name_70 (place VARCHAR, points INTEGER)"}, {"answer": "SELECT place FROM table_name_41 WHERE country = \"united states\" AND player = \"lee trevino\"", "question": "What is Place, when Country is \"United States\", and when Player is \"Lee Trevino\"?", "context": "CREATE TABLE table_name_41 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_name_75 WHERE country = \"united states\" AND player = \"lee trevino\"", "question": "What is the total number of Score, when Country is \"United States\", and when Player is \"Lee Trevino\"?", "context": "CREATE TABLE table_name_75 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_23 WHERE place = \"t9\" AND player = \"lee trevino\"", "question": "What is To Par, when Place is \"T9\", and when Player is \"Lee Trevino\"?", "context": "CREATE TABLE table_name_23 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_3 WHERE place = \"t6\" AND player = \"raymond floyd\"", "question": "What is the Country, when Place is T6, and when Player is \"Raymond Floyd\"?", "context": "CREATE TABLE table_name_3 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT seasons_in_csl FROM table_name_15 WHERE top_division_titles__overall_ = 0 AND home_stadium = \"guiyang olympic sports center\"", "question": "What were the years for Seasons in CSL when they played in the Guiyang Olympic Sports Center and had Top Division Titles (Overall) of 0?", "context": "CREATE TABLE table_name_15 (seasons_in_csl VARCHAR, top_division_titles__overall_ VARCHAR, home_stadium VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_18 WHERE place = \"t5\" AND country = \"united states\"", "question": "What is To Par, when Place is \"T5\", and when Country is \"United States\"?", "context": "CREATE TABLE table_name_18 (to_par VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE country = \"united states\" AND to_par = \"+4\"", "question": "What is Score, when Country is \"United States\", and when To Par is \"+4\"?", "context": "CREATE TABLE table_name_56 (score VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_48 WHERE score = 66 - 74 - 76 = 216", "question": "What is Player, when Score is \"66-74-76=216\"?", "context": "CREATE TABLE table_name_48 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_1 WHERE place = \"t9\" AND player = \"michael campbell\"", "question": "What is Country, when Place is \"T9\", and when Player is \"Michael Campbell\"?", "context": "CREATE TABLE table_name_1 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_50 WHERE country = \"england\" AND place = \"t7\"", "question": "What is Player, when Country is \"England\", and when Place is \"T7\"?", "context": "CREATE TABLE table_name_50 (player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT player FROM table_name_70 WHERE place = \"1\"", "question": "What is Player, when Place is \"1\"?", "context": "CREATE TABLE table_name_70 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_88 WHERE player = \"mark o'meara\"", "question": "What is the total of Mark O'meara?", "context": "CREATE TABLE table_name_88 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_83 WHERE player = \"bernhard langer\"", "question": "What is the total for Bernhard Langer?", "context": "CREATE TABLE table_name_83 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_45 WHERE to_par = \"+2\"", "question": "Which player has +2 to par?", "context": "CREATE TABLE table_name_45 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_87 WHERE finish = \"t22\"", "question": "Which country has a finish of t22?", "context": "CREATE TABLE table_name_87 (country VARCHAR, finish VARCHAR)"}, {"answer": "SELECT player FROM table_name_29 WHERE total > 290 AND to_par = \"+4\"", "question": "Which player has a total of more than 290 and +4 to par.", "context": "CREATE TABLE table_name_29 (player VARCHAR, total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT gold FROM table_name_88 WHERE bronze = \"8\"", "question": "What is the number of gold medals when the number of bronze medals is 8?", "context": "CREATE TABLE table_name_88 (gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT rank FROM table_name_29 WHERE bronze = \"source: maltese olympic committee\"", "question": "What rank is the nation that has a bronze of source: Maltese Olympic Committee?", "context": "CREATE TABLE table_name_29 (rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT rank FROM table_name_44 WHERE silver = \"2\"", "question": "What rank is the nation with 2 silver medals?", "context": "CREATE TABLE table_name_44 (rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT total FROM table_name_91 WHERE gold = \"5\"", "question": "What is the total medal count for the nation that has 5 gold?", "context": "CREATE TABLE table_name_91 (total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_80 WHERE rank = \"1\"", "question": "How many bronze medals does the nation ranked number 1 have?", "context": "CREATE TABLE table_name_80 (bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_63 WHERE bronze = \"28\"", "question": "What nation has 28 bronze medals?", "context": "CREATE TABLE table_name_63 (nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_40 WHERE score = 72 - 67 - 71 - 72 = 282", "question": "What is the average To Par, when Score is \"72-67-71-72=282\"?", "context": "CREATE TABLE table_name_40 (to_par INTEGER, score VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_22 WHERE place = \"1\"", "question": "What is the highest To Par, when Place is \"1\"?", "context": "CREATE TABLE table_name_22 (to_par INTEGER, place VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_14 WHERE team = \"montreal impact\" AND player = \"justin mapp category:articles with hcards\"", "question": "What's the nationality of Montreal Impact with Justin Mapp Category:articles with hcards as the player?", "context": "CREATE TABLE table_name_14 (nationality VARCHAR, team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_23 WHERE nationality = \"canada\" AND year > 2009", "question": "After 2009, who was the player that has a nationality of Canada?", "context": "CREATE TABLE table_name_23 (player VARCHAR, nationality VARCHAR, year VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_78 WHERE year > 2009 AND player = \"dwayne de rosario category:articles with hcards\"", "question": "After 2009, what's the nationality of a player named Dwayne de Rosario Category:articles with hcards?", "context": "CREATE TABLE table_name_78 (nationality VARCHAR, year VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_36 WHERE nationality = \"united states\" AND player = \"justin mapp category:articles with hcards\"", "question": "What's the position when the player was Justin Mapp Category:articles with hcards with a United States nationality?", "context": "CREATE TABLE table_name_36 (position VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT result FROM table_name_34 WHERE round = \"r3\"", "question": "What is the result of round R3?", "context": "CREATE TABLE table_name_34 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT venue FROM table_name_72 WHERE round = \"f\"", "question": "In which venue was round F?", "context": "CREATE TABLE table_name_72 (venue VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(top_10) FROM table_name_69 WHERE starts = 7 AND avg_finish < 16.7", "question": "How many top 10s belong to the team with a start of 7 and an average finish less than 16.7?", "context": "CREATE TABLE table_name_69 (top_10 VARCHAR, starts VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT competition FROM table_name_46 WHERE event = \"50km\" AND year < 2010 AND position = \"3rd\"", "question": "Which Competition has an Event of 50km, a Year earlier than 2010 and a Position of 3rd?", "context": "CREATE TABLE table_name_46 (competition VARCHAR, position VARCHAR, event VARCHAR, year VARCHAR)"}, {"answer": "SELECT position FROM table_name_74 WHERE competition = \"european u23 championships\"", "question": "What is the Position for the European U23 Championships?", "context": "CREATE TABLE table_name_74 (position VARCHAR, competition VARCHAR)"}, {"answer": "SELECT event FROM table_name_49 WHERE competition = \"european championships\" AND position = \"5th\"", "question": "Which Event has 5th Position in the European Championships Competition?", "context": "CREATE TABLE table_name_49 (event VARCHAR, competition VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_64 WHERE venue = \"debrecen, hungary\"", "question": "What Position is listed against a Venue of Debrecen, Hungary", "context": "CREATE TABLE table_name_64 (position VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(blocks) FROM table_name_19 WHERE rebounds < 5.2", "question": "How many blocks are there when the rebounds are fewer than 5.2?", "context": "CREATE TABLE table_name_19 (blocks VARCHAR, rebounds INTEGER)"}, {"answer": "SELECT MAX(rebounds) FROM table_name_69 WHERE steals = 0.9 AND turnovers < 1.4", "question": "What is the maximum rebounds when there are 0.9 steals and fewer than 1.4 turnovers?", "context": "CREATE TABLE table_name_69 (rebounds INTEGER, steals VARCHAR, turnovers VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_91 WHERE week < 17 AND date = \"june 17, 2006\"", "question": "What team was the opponent in a week earlier than 17 on June 17, 2006?", "context": "CREATE TABLE table_name_91 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_19 WHERE date = \"may 27, 2006\"", "question": "What is the result for the game on May 27, 2006?", "context": "CREATE TABLE table_name_19 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_20 WHERE week = 1", "question": "What is the Game site week 1?", "context": "CREATE TABLE table_name_20 (game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(tie_no) FROM table_name_45 WHERE home_team = \"bolton wanderers\" AND date = \"middlesbrough\"", "question": "What was the highest Tie no when the home team was the Bolton Wanderers, and the date was Middlesbrough?", "context": "CREATE TABLE table_name_45 (tie_no INTEGER, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(tie_no) FROM table_name_22 WHERE date = \"birmingham city\"", "question": "What is the average Tie no when the date is Birmingham City?", "context": "CREATE TABLE table_name_22 (tie_no INTEGER, date VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_19 WHERE home_team = \"stoke city\" AND date = \"9 february 1946\"", "question": "What was the Tie no when then home team was Stoke City for the game played on 9 February 1946?", "context": "CREATE TABLE table_name_19 (tie_no VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_72 WHERE opponent = \"bye\"", "question": "How many attended the game with an opponent of bye?", "context": "CREATE TABLE table_name_72 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_32 WHERE attendance = \"73,428\"", "question": "Which opponent had 73,428 in attendance?", "context": "CREATE TABLE table_name_32 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_34 WHERE opponent = \"oakland raiders\"", "question": "What was the attendance of the Oakland Raiders game?", "context": "CREATE TABLE table_name_34 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT streak FROM table_name_6 WHERE game = \"2\"", "question": "What is the streak for game 2?", "context": "CREATE TABLE table_name_6 (streak VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE game = \"game 3\"", "question": "Which Date has a Game of game 3?", "context": "CREATE TABLE table_name_90 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_97 WHERE road_team = \"rochester\" AND result = \"71-78\"", "question": "Which Home Team has a Road Team of rochester, and a Result of 71-78?", "context": "CREATE TABLE table_name_97 (home_team VARCHAR, road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_99 WHERE home_team = \"rochester\" AND game = \"game 5\"", "question": "Which Result has a Home Team of rochester, and a Game of game 5?", "context": "CREATE TABLE table_name_99 (result VARCHAR, home_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_61 WHERE home_team = \"rochester\" AND game = \"game 2\"", "question": "Which Road Team has a Home Team of rochester, and a Game of game 2?", "context": "CREATE TABLE table_name_61 (road_team VARCHAR, home_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_9 WHERE home_team = \"rochester\" AND result = \"89-92\"", "question": "Which Road Team has a Home Team of rochester, and a Result of 89-92?", "context": "CREATE TABLE table_name_9 (road_team VARCHAR, home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE road_team = \"new york\" AND result = \"79-75\"", "question": "Which Date has a Road Team of new york, and a Result of 79-75?", "context": "CREATE TABLE table_name_42 (date VARCHAR, road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_7 WHERE game = 3", "question": "What was the highest assists for game 3?", "context": "CREATE TABLE table_name_7 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT country FROM table_name_70 WHERE to_par = \"+3\" AND player = \"ed sneed\"", "question": "What country is player ed sneed, who has a to par of +3, from?", "context": "CREATE TABLE table_name_70 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_45 WHERE place = \"t5\" AND player = \"ed sneed\"", "question": "What is the to par of player ed sneed, who has a t5 place?", "context": "CREATE TABLE table_name_45 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_62 WHERE score = 70 - 75 = 145", "question": "Who is the player with a 70-75=145 score?", "context": "CREATE TABLE table_name_62 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_60 WHERE score = 71 - 74 = 145 AND player = \"tom weiskopf\"", "question": "What is the to par of player tom weiskopf, who has a 71-74=145 score?", "context": "CREATE TABLE table_name_60 (to_par VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_47 WHERE place = \"t5\" AND score = 75 - 70 = 145", "question": "Who is the player with a t5 place and a 75-70=145 score?", "context": "CREATE TABLE table_name_47 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_15 WHERE to_par = \"+3\" AND player = \"ed sneed\"", "question": "What is the country of player ed sneed with a to par of +3?", "context": "CREATE TABLE table_name_15 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_3 WHERE record = \"31\u201337\u20139\"", "question": "What is the Score of the game with a Record of 31\u201337\u20139?", "context": "CREATE TABLE table_name_3 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE home = \"pittsburgh\" AND points = 61 AND date = \"march 3\"", "question": "What is the Score of the Pittsburgh Home game on March 3 with 61 Points?", "context": "CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR, home VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE home = \"vancouver\"", "question": "What is the Date of the game in Vancouver?", "context": "CREATE TABLE table_name_9 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT run_4 FROM table_name_37 WHERE athletes = \"alexandru frimu & costel r\u0103dulescu\"", "question": "Which Run 4 has Athletes of alexandru frimu & costel r\u0103dulescu?", "context": "CREATE TABLE table_name_37 (run_4 VARCHAR, athletes VARCHAR)"}, {"answer": "SELECT final FROM table_name_55 WHERE team = \"liechtenstein (lie) liechtenstein i\"", "question": "Which Final has a Team of liechtenstein (lie) liechtenstein i?", "context": "CREATE TABLE table_name_55 (final VARCHAR, team VARCHAR)"}, {"answer": "SELECT run_2 FROM table_name_29 WHERE run_1 = \"1:30.03\"", "question": "Which Run 2 has a Run 1 of 1:30.03?", "context": "CREATE TABLE table_name_29 (run_2 VARCHAR, run_1 VARCHAR)"}, {"answer": "SELECT run_4 FROM table_name_53 WHERE run_3 = \"1:26.63\"", "question": "Which Run 4 has a Run 3 of 1:26.63?", "context": "CREATE TABLE table_name_53 (run_4 VARCHAR, run_3 VARCHAR)"}, {"answer": "SELECT run_4 FROM table_name_59 WHERE run_1 = \"1:25.82\"", "question": "Which Run 4 has a Run 1 of 1:25.82?", "context": "CREATE TABLE table_name_59 (run_4 VARCHAR, run_1 VARCHAR)"}, {"answer": "SELECT final FROM table_name_50 WHERE run_2 = \"1:27.58\"", "question": "Which Final has a Run 2 of 1:27.58?", "context": "CREATE TABLE table_name_50 (final VARCHAR, run_2 VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_5 WHERE championship = \"u.s. championships\" AND year > 1945 AND score = \"3\u20136, 6\u20134, 2\u20136, 6\u20133, 20\u201318\"", "question": "which opponents in the u.s. championships played after 1945 and had a score of 3\u20136, 6\u20134, 2\u20136, 6\u20133, 20\u201318?", "context": "CREATE TABLE table_name_5 (opponents_in_the_final VARCHAR, score VARCHAR, championship VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_29 WHERE partner = \"gardnar mulloy\" AND score = \"12\u201310, 8\u201310, 12\u201310, 6\u20132\"", "question": "what is the most recent year gardnar mulloy played as a partner and score was 12\u201310, 8\u201310, 12\u201310, 6\u20132?", "context": "CREATE TABLE table_name_29 (year INTEGER, partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT ship FROM table_name_70 WHERE builder = \"cammell laird\"", "question": "What Ship was Built by Cammell Laird?", "context": "CREATE TABLE table_name_70 (ship VARCHAR, builder VARCHAR)"}, {"answer": "SELECT country FROM table_name_47 WHERE ship = \"john s. mccain\"", "question": "What Country is the John S. McCain Ship from?", "context": "CREATE TABLE table_name_47 (country VARCHAR, ship VARCHAR)"}, {"answer": "SELECT ship FROM table_name_66 WHERE class___type = \"cargo ship\" AND location = \"birkenhead\"", "question": "What is the Cargo Ship located at Birkenhead?", "context": "CREATE TABLE table_name_66 (ship VARCHAR, class___type VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_13 WHERE _percentage_lds = \"0.54%\" AND total_congregations > 2", "question": "What is the highest Population, when % LDS is 0.54%, and when Total Congregations is greater than 2?", "context": "CREATE TABLE table_name_13 (population INTEGER, _percentage_lds VARCHAR, total_congregations VARCHAR)"}, {"answer": "SELECT COUNT(total_congregations) FROM table_name_85 WHERE _percentage_lds = \"0.54%\" AND population > 105 OFFSET 275", "question": "What is the total number of Total Congregations, when % LDS is 0.54%, and when Population is greater than 105,275?", "context": "CREATE TABLE table_name_85 (total_congregations VARCHAR, _percentage_lds VARCHAR, population VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_16 WHERE state = \"puerto rico\" AND total_congregations > 41", "question": "What is the highest Population, when State is Puerto Rico, and when Total Congregations is greater than 41?", "context": "CREATE TABLE table_name_16 (population INTEGER, state VARCHAR, total_congregations VARCHAR)"}, {"answer": "SELECT population FROM table_name_83 WHERE total_congregations < 4 AND _percentage_lds = \"0.54%\"", "question": "What is Population, when Total Congregations is less than 4, and when % LDS is 0.54%?", "context": "CREATE TABLE table_name_83 (population VARCHAR, total_congregations VARCHAR, _percentage_lds VARCHAR)"}, {"answer": "SELECT actor_in_london, _2002 FROM table_name_78 WHERE shipwreck = \"leonty ibayev\"", "question": "Who was the actor in London in 2002 with the shipwreck of Leonty Ibayev?", "context": "CREATE TABLE table_name_78 (actor_in_london VARCHAR, _2002 VARCHAR, shipwreck VARCHAR)"}, {"answer": "SELECT actor_in_moscow, _2007 FROM table_name_91 WHERE voyage = \"varenka bakunin\"", "question": "Who was the 2007 actor from Moscow for the voyage of Varenka Bakunin?", "context": "CREATE TABLE table_name_91 (actor_in_moscow VARCHAR, _2007 VARCHAR, voyage VARCHAR)"}, {"answer": "SELECT actor_in_moscow, _2007 FROM table_name_44 WHERE shipwreck = \"leonty ibayev\"", "question": "Who was the 2007 actor from Moscow for the shipwreck of Leonty Ibayev?", "context": "CREATE TABLE table_name_44 (actor_in_moscow VARCHAR, _2007 VARCHAR, shipwreck VARCHAR)"}, {"answer": "SELECT institution FROM table_name_55 WHERE affiliation = \"private/catholic\"", "question": "Which institution is private/catholic?", "context": "CREATE TABLE table_name_55 (institution VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM table_name_47 WHERE nickname = \"redbirds\"", "question": "What is the average enrollment of the Redbirds' school?", "context": "CREATE TABLE table_name_47 (enrollment INTEGER, nickname VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_48 WHERE institution = \"southern illinois university edwardsville\"", "question": "What is Southern Illinois University Edwardsville's affiliation?", "context": "CREATE TABLE table_name_48 (affiliation VARCHAR, institution VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_23 WHERE series = \"0-2\"", "question": "With a 0-2 series, what is the high points?", "context": "CREATE TABLE table_name_23 (high_points VARCHAR, series VARCHAR)"}, {"answer": "SELECT masculine_an_stems FROM table_name_18 WHERE feminine_\u014d_stems = \"siangar\" AND masculine_u_stems = \"syni\"", "question": "What is the an-stem for the word which has an \u00f6-stems of siangar and an u-stem ending of syni?", "context": "CREATE TABLE table_name_18 (masculine_an_stems VARCHAR, feminine_\u014d_stems VARCHAR, masculine_u_stems VARCHAR)"}, {"answer": "SELECT feminine_\u014dn_stems FROM table_name_82 WHERE feminine_\u014d_stems = \"siangu\"", "question": "What ending does siangu get for \u00f6n?", "context": "CREATE TABLE table_name_82 (feminine_\u014dn_stems VARCHAR, feminine_\u014d_stems VARCHAR)"}, {"answer": "SELECT masculine_u_stems FROM table_name_18 WHERE neuter_a_stems = \"skip\" AND masculine_a_stems = \"fisker\"", "question": "What is the u form of the word with a neuter form of skip and a masculine a-ending of fisker?", "context": "CREATE TABLE table_name_18 (masculine_u_stems VARCHAR, neuter_a_stems VARCHAR, masculine_a_stems VARCHAR)"}, {"answer": "SELECT masculine_an_stems FROM table_name_49 WHERE feminine_\u014d_stems = \"siangar\" AND masculine_u_stems = \"sunar\"", "question": "What is the masculine an form for the word with a feminine \u00f6 ending of siangar and a masculine u ending of sunar?", "context": "CREATE TABLE table_name_49 (masculine_an_stems VARCHAR, feminine_\u014d_stems VARCHAR, masculine_u_stems VARCHAR)"}, {"answer": "SELECT masculine_u_stems FROM table_name_68 WHERE neuter_a_stems = \"skipum\"", "question": "What is the masculine u form for the old Swedish word with a neuter a form of skipum?", "context": "CREATE TABLE table_name_68 (masculine_u_stems VARCHAR, neuter_a_stems VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE margin_of_victory = \"2 strokes\" AND to_par = \"\u221216\"", "question": "A tournament on which date has a margin of victory of 2 strokes and a par of \u221216?", "context": "CREATE TABLE table_name_8 (date VARCHAR, margin_of_victory VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_62 WHERE margin_of_victory = \"2 strokes\" AND to_par = \"\u221216\"", "question": "Who was the runner-up in the tournament that has a margin of victory of 2 strokes, and a To par of \u221216?", "context": "CREATE TABLE table_name_62 (runner_up VARCHAR, margin_of_victory VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_56 WHERE runner_up = \"ken duke\"", "question": "What was the to par of the tournament that had Ken Duke as a runner-up?", "context": "CREATE TABLE table_name_56 (to_par VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_38 WHERE runner_up = \"brandt snedeker\"", "question": "What was the margin of victory when Brandt Snedeker was runner-up?", "context": "CREATE TABLE table_name_38 (margin_of_victory VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE winning_score = 67 - 70 - 68 - 67 = 272", "question": "What is the date that has a winning score of 67-70-68-67=272?", "context": "CREATE TABLE table_name_84 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_30 WHERE schwante < 2.043 AND eichst\u00e4dt < 848 AND b\u00e4renklau < 1.262", "question": "What year has a Schwante smaller than 2.043, an Eichst\u00e4dt smaller than 848, and a B\u00e4renklau smaller than 1.262?", "context": "CREATE TABLE table_name_30 (year VARCHAR, b\u00e4renklau VARCHAR, schwante VARCHAR, eichst\u00e4dt VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE game > 56 AND decision = \"lundqvist\" AND record = \"29-24-7\"", "question": "What's the score for a game over 56 with a record of 29-24-7 with a lundqvist decision?", "context": "CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR, game VARCHAR, decision VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_13 WHERE series = \"4\u20132\"", "question": "What is the High rebounds with a Series with 4\u20132?", "context": "CREATE TABLE table_name_13 (high_rebounds VARCHAR, series VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_9 WHERE high_assists = \"bryant (7)\" AND team = \"@ utah\"", "question": "What is the High rebounds with a High assists with bryant (7), and a Team of @ utah?", "context": "CREATE TABLE table_name_9 (high_rebounds VARCHAR, high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT series FROM table_name_54 WHERE high_rebounds = \"gasol (10)\"", "question": "What is the Series with a High rebounds with gasol (10)?", "context": "CREATE TABLE table_name_54 (series VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT d_49 FROM table_name_64 WHERE d_46 = \"r 13\"", "question": "Tell me the D 49 and D 46 of r 13", "context": "CREATE TABLE table_name_64 (d_49 VARCHAR, d_46 VARCHAR)"}, {"answer": "SELECT d_40 FROM table_name_17 WHERE d_44 = \"d 15\"", "question": "I want the D 40 with D 44 of d 15", "context": "CREATE TABLE table_name_17 (d_40 VARCHAR, d_44 VARCHAR)"}, {"answer": "SELECT d_45 FROM table_name_58 WHERE d_42 = \"r 22\"", "question": "I want the D 45 and D 42 of r 22", "context": "CREATE TABLE table_name_58 (d_45 VARCHAR, d_42 VARCHAR)"}, {"answer": "SELECT d_46 FROM table_name_54 WHERE d_45 = \"r 5\"", "question": "I want the D 46 for D 45 of r 5", "context": "CREATE TABLE table_name_54 (d_46 VARCHAR, d_45 VARCHAR)"}, {"answer": "SELECT d_47 FROM table_name_78 WHERE d_41 = \"r 21\"", "question": "I want the D 47 for D 41 being r 21", "context": "CREATE TABLE table_name_78 (d_47 VARCHAR, d_41 VARCHAR)"}, {"answer": "SELECT name FROM table_name_54 WHERE year = \"junior\" AND high_school = \"wheatley\"", "question": "What is the Name with a Year of junior, and a High School with wheatley?", "context": "CREATE TABLE table_name_54 (name VARCHAR, year VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT home_town FROM table_name_40 WHERE name = \"rob cunningham\"", "question": "What is the Home Town with a Name with rob cunningham?", "context": "CREATE TABLE table_name_40 (home_town VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_79 WHERE year = \"freshman\" AND weight > 210", "question": "What is the Position with a Year with freshman, and a Weight larger than 210?", "context": "CREATE TABLE table_name_79 (position VARCHAR, year VARCHAR, weight VARCHAR)"}, {"answer": "SELECT home_town FROM table_name_81 WHERE year = \"freshman\" AND height = \"6\u20136\"", "question": "What is the Home Town with a Year of freshman, and a Height with 6\u20136?", "context": "CREATE TABLE table_name_81 (home_town VARCHAR, year VARCHAR, height VARCHAR)"}, {"answer": "SELECT name FROM table_name_90 WHERE year = \"freshman\" AND home_town = \"los angeles, ca\" AND height = \"6\u20134\"", "question": "What is the Name with a Year with freshman, and a Home Town with los angeles, ca, and a Height of 6\u20134?", "context": "CREATE TABLE table_name_90 (name VARCHAR, height VARCHAR, year VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT result FROM table_name_30 WHERE goal = 3", "question": "What is the Result for Goal 3?", "context": "CREATE TABLE table_name_30 (result VARCHAR, goal VARCHAR)"}, {"answer": "SELECT AVG(ties) FROM table_name_73 WHERE team = \"montreal victorias\" AND games_played > 8", "question": "What is the average ties when the team is montreal victorias and the games played is more than 8?", "context": "CREATE TABLE table_name_73 (ties INTEGER, team VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_24 WHERE wins = 3", "question": "what is the average losses when the wins is 3?", "context": "CREATE TABLE table_name_24 (losses INTEGER, wins VARCHAR)"}, {"answer": "SELECT MAX(goals_against) FROM table_name_54 WHERE wins < 1", "question": "what is the highest goals against when the wins is less than 1?", "context": "CREATE TABLE table_name_54 (goals_against INTEGER, wins INTEGER)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_48 WHERE ties > 0 AND goals_against > 35 AND wins < 2", "question": "what is the total number of goals for when the ties is more than 0, the goals against is more than 35 and the wins is less than 2?", "context": "CREATE TABLE table_name_48 (goals_for VARCHAR, wins VARCHAR, ties VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_80 WHERE goals_against < 34 AND games_played < 8", "question": "what is the sum of the losses when the goals against is less than 34 and the games played is less than 8?", "context": "CREATE TABLE table_name_80 (losses INTEGER, goals_against VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT platform FROM table_name_11 WHERE system = \"various computers and consoles\"", "question": "What is the name of the platform used for various computers and consoles?", "context": "CREATE TABLE table_name_11 (platform VARCHAR, system VARCHAR)"}, {"answer": "SELECT system FROM table_name_66 WHERE name = \"elkjs\"", "question": "Which system is named ELKJS?", "context": "CREATE TABLE table_name_66 (system VARCHAR, name VARCHAR)"}, {"answer": "SELECT system FROM table_name_56 WHERE name = \"elkjs\"", "question": "What is the system called that is named ELKJS?", "context": "CREATE TABLE table_name_56 (system VARCHAR, name VARCHAR)"}, {"answer": "SELECT numbers FROM table_name_13 WHERE completed < 1904", "question": "What are the numbers for the item completed earlier than 1904?", "context": "CREATE TABLE table_name_13 (numbers VARCHAR, completed INTEGER)"}, {"answer": "SELECT MIN(completed) FROM table_name_97 WHERE quantity > 10 AND numbers = \"53-58, 61-72\"", "question": "For the item with more than 10, and numbers of 53-58, 61-72, what is the lowest completed?", "context": "CREATE TABLE table_name_97 (completed INTEGER, quantity VARCHAR, numbers VARCHAR)"}, {"answer": "SELECT AVG(quantity) FROM table_name_91 WHERE numbers = \"29-36\"", "question": "What is the quantity of the item with the numbers of 29-36?", "context": "CREATE TABLE table_name_91 (quantity INTEGER, numbers VARCHAR)"}, {"answer": "SELECT SUM(reg_gp) FROM table_name_40 WHERE player = \"rick vaive\" AND rd__number > 1", "question": "How many reg GP for rick vaive in round 1?", "context": "CREATE TABLE table_name_40 (reg_gp INTEGER, player VARCHAR, rd__number VARCHAR)"}, {"answer": "SELECT SUM(reg_gp) FROM table_name_19 WHERE player = \"rick vaive\" AND rd__number < 1", "question": "How many reg GP for rick vaive in round 1?", "context": "CREATE TABLE table_name_19 (reg_gp INTEGER, player VARCHAR, rd__number VARCHAR)"}, {"answer": "SELECT COUNT(rd__number) FROM table_name_21 WHERE pick__number < 5", "question": "How many rounds exist for picks under 5?", "context": "CREATE TABLE table_name_21 (rd__number VARCHAR, pick__number INTEGER)"}, {"answer": "SELECT opponent FROM table_name_2 WHERE week > 15", "question": "Who did the Jets play in their post-week 15 game?", "context": "CREATE TABLE table_name_2 (opponent VARCHAR, week INTEGER)"}, {"answer": "SELECT opponent FROM table_name_32 WHERE week < 9 AND game_site = \"robert f. kennedy memorial stadium\"", "question": "Who did the Jets play in their pre-week 9 game at the Robert F. Kennedy memorial stadium?", "context": "CREATE TABLE table_name_32 (opponent VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE record = \"31\u201319\u20139\"", "question": "What was the date of the game when the Canadiens had a record of 31\u201319\u20139?", "context": "CREATE TABLE table_name_40 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_29 WHERE record = \"30\u201319\u20139\"", "question": "Who was the visiting team at the game when the Canadiens had a record of 30\u201319\u20139?", "context": "CREATE TABLE table_name_29 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT school FROM table_name_96 WHERE player = \"bo jackson\"", "question": "What school did bo jackson attend?", "context": "CREATE TABLE table_name_96 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_50 WHERE position = \"guard\"", "question": "What was the highest guard picked?", "context": "CREATE TABLE table_name_50 (pick INTEGER, position VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_60 WHERE school = \"auburn\"", "question": "What is the highest pick for a player from auburn?", "context": "CREATE TABLE table_name_60 (pick INTEGER, school VARCHAR)"}, {"answer": "SELECT rider FROM table_name_54 WHERE round_1_points = \"18.185\"", "question": "Tell me the rider with 18.185 points round 1", "context": "CREATE TABLE table_name_54 (rider VARCHAR, round_1_points VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_10 WHERE horse = \"carlson\"", "question": "Tell me the most total for horse of carlson", "context": "CREATE TABLE table_name_10 (total INTEGER, horse VARCHAR)"}, {"answer": "SELECT rider FROM table_name_65 WHERE total > 16.615 AND round_1_points = \"7.465\"", "question": "Tell me the rider that had round 1 points of 7.465 and total more than 16.615", "context": "CREATE TABLE table_name_65 (rider VARCHAR, total VARCHAR, round_1_points VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_75 WHERE game < 78 AND date = \"april 8\"", "question": "What were the assists on April 8 in game less than 78?", "context": "CREATE TABLE table_name_75 (high_assists VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE game = 82", "question": "What was the score of game 82?", "context": "CREATE TABLE table_name_91 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE venue = \"kardinia park\"", "question": "When was there a game at Kardinia Park?", "context": "CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_97 WHERE high_rebounds = \"chris bosh (13)\"", "question": "who had the high points when chris bosh (13) had the high rebounds?", "context": "CREATE TABLE table_name_97 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE team = \"@ cleveland\"", "question": "what is the score when the team is @ cleveland?", "context": "CREATE TABLE table_name_20 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_70 WHERE game = 6", "question": "who had the high rebounds when the game number was 6?", "context": "CREATE TABLE table_name_70 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE visitor = \"ny islanders\"", "question": "What was the score when the NY Islanders was the visiting team?", "context": "CREATE TABLE table_name_67 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_54 WHERE visitor = \"ottawa\"", "question": "What was the record when the visiting team was Ottawa?", "context": "CREATE TABLE table_name_54 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT SUM(total_seats) FROM table_name_26 WHERE constituency_seats > 0 AND party = \"liberal democrat\" AND regional_seats < 6", "question": "What is the full number of Total Seats with a constituency seat number bigger than 0 with the Liberal Democrat party, and the Regional seat number is smaller than 6?", "context": "CREATE TABLE table_name_26 (total_seats INTEGER, regional_seats VARCHAR, constituency_seats VARCHAR, party VARCHAR)"}, {"answer": "SELECT COUNT(regional_seats) FROM table_name_77 WHERE party = \"snp\" AND total_seats > 46", "question": "How many regional seats were there with the SNP party and where the number of total seats was bigger than 46?", "context": "CREATE TABLE table_name_77 (regional_seats VARCHAR, party VARCHAR, total_seats VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_69 WHERE date = \"january 10\"", "question": "Which team was the visitor on January 10?", "context": "CREATE TABLE table_name_69 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_65 WHERE place > 5", "question": "What is the average Draw when the Place is larger than 5?", "context": "CREATE TABLE table_name_65 (draw INTEGER, place INTEGER)"}, {"answer": "SELECT MIN(draw) FROM table_name_95 WHERE artist = \"stine findsen\" AND points > 42", "question": "What is the lowest Draw when the Artist is Stine Findsen and the Points are larger than 42?", "context": "CREATE TABLE table_name_95 (draw INTEGER, artist VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_92 WHERE points > 44 AND place > 1", "question": "What is the Draw that has Points larger than 44 and a Place larger than 1?", "context": "CREATE TABLE table_name_92 (draw INTEGER, points VARCHAR, place VARCHAR)"}, {"answer": "SELECT position FROM table_name_21 WHERE round = 2 AND nationality = \"sweden\"", "question": "What is the position of the player from round 2 from Sweden?", "context": "CREATE TABLE table_name_21 (position VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_35 WHERE position = \"d\" AND nationality = \"united states\" AND player = \"ian cole\"", "question": "What is the highest round of Ian Cole, who played position d from the United States?", "context": "CREATE TABLE table_name_35 (round INTEGER, player VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT player FROM table_name_68 WHERE position = \"c\" AND nationality = \"denmark\"", "question": "Who is the player from Denmark who plays position c?", "context": "CREATE TABLE table_name_68 (player VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_45 WHERE player = \"brett sonne\"", "question": "Which college/junior/club team (league) did Brett Sonne play in?", "context": "CREATE TABLE table_name_45 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE to_par = \"\u201312\"", "question": "Which date has a To par of \u201312?", "context": "CREATE TABLE table_name_53 (date VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_92 WHERE date = \"december 16, 2001\"", "question": "How many attended the game on December 16, 2001?", "context": "CREATE TABLE table_name_92 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_64 WHERE date = \"bye\"", "question": "What week is a bye week?", "context": "CREATE TABLE table_name_64 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(entered_service) FROM table_name_89 WHERE locomotive = \"13\"", "question": "How many years entered service when there were 13 locomotives?", "context": "CREATE TABLE table_name_89 (entered_service VARCHAR, locomotive VARCHAR)"}, {"answer": "SELECT locomotive FROM table_name_9 WHERE type = \"2-8-2t\" AND entered_service < 1915 AND built > 1911", "question": "Which locomotive had a 2-8-2t type, entered service year prior to 1915, and which was built after 1911?", "context": "CREATE TABLE table_name_9 (locomotive VARCHAR, built VARCHAR, type VARCHAR, entered_service VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_82 WHERE goal_difference < 4 AND club = \"villarreal cf\" AND played > 38", "question": "What is the highest number of wins with a goal difference less than 4 at the Villarreal CF and more than 38 played?", "context": "CREATE TABLE table_name_82 (wins INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_57 WHERE goal_difference < -27", "question": "What is the highest number played with a goal difference less than -27?", "context": "CREATE TABLE table_name_57 (played INTEGER, goal_difference INTEGER)"}, {"answer": "SELECT MAX(losses) FROM table_name_73 WHERE position = 7 AND goals_for > 45", "question": "What is the highest number of loss with a 7 position and more than 45 goals?", "context": "CREATE TABLE table_name_73 (losses INTEGER, position VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_39 WHERE losses < 17 AND goals_for > 57 AND goal_difference < 4", "question": "What is the highest position with less than 17 losses, more than 57 goals, and a goal difference less than 4?", "context": "CREATE TABLE table_name_39 (position INTEGER, goal_difference VARCHAR, losses VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT AVG(goal_difference) FROM table_name_4 WHERE goals_against = 51 AND losses < 17", "question": "What is the average goal difference with 51 goals scored against and less than 17 losses?", "context": "CREATE TABLE table_name_4 (goal_difference INTEGER, goals_against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_37 WHERE points = \"32-6\" AND goals_against < 59 AND played > 38", "question": "What is the lowest position with 32-6 points and less then 59 goals when there are more than 38 played?", "context": "CREATE TABLE table_name_37 (position INTEGER, played VARCHAR, points VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_13 WHERE championship = \"australian open\"", "question": "What was the final score of the Australian Open?", "context": "CREATE TABLE table_name_13 (score_in_the_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT record_set FROM table_name_30 WHERE actor = \"walter brennan\" AND year < 1941", "question": "What record was set by walter brennan before 1941?", "context": "CREATE TABLE table_name_30 (record_set VARCHAR, actor VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_83 WHERE notes = \"ordinary people\"", "question": "What is the earliest year for ordinary people to appear in the notes?", "context": "CREATE TABLE table_name_83 (year INTEGER, notes VARCHAR)"}, {"answer": "SELECT engine_\u2020 FROM table_name_98 WHERE rounds = \"all\" AND tyre = \"m\" AND driver = \"david coulthard\"", "question": "what is the engine when the rounds ar all, the tyre is m and the driver is david coulthard?", "context": "CREATE TABLE table_name_98 (engine_\u2020 VARCHAR, driver VARCHAR, rounds VARCHAR, tyre VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_92 WHERE engine_\u2020 = \"bmw p82\"", "question": "who is the entrant when the engine is bmw p82?", "context": "CREATE TABLE table_name_92 (entrant VARCHAR, engine_\u2020 VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_17 WHERE engine_\u2020 = \"mercedes fo110m\"", "question": "what is the rounds when the engine is mercedes fo110m?", "context": "CREATE TABLE table_name_17 (rounds VARCHAR, engine_\u2020 VARCHAR)"}, {"answer": "SELECT driver FROM table_name_1 WHERE engine_\u2020 = \"mercedes fo110m\"", "question": "who is the driver when the engine is mercedes fo110m?", "context": "CREATE TABLE table_name_1 (driver VARCHAR, engine_\u2020 VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_47 WHERE engine_\u2020 = \"asiatech at02\" AND driver = \"alex yoong\"", "question": "what is the tyre when the engine is asiatech at02 and the driver is alex yoong?", "context": "CREATE TABLE table_name_47 (tyre VARCHAR, engine_\u2020 VARCHAR, driver VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_14 WHERE tyre = \"b\" AND engine_\u2020 = \"ferrari 050 ferrari 051\" AND driver = \"rubens barrichello\"", "question": "what is the chassis when the tyre is b, the engine is ferrari 050 ferrari 051 and the driver is rubens barrichello?", "context": "CREATE TABLE table_name_14 (chassis VARCHAR, driver VARCHAR, tyre VARCHAR, engine_\u2020 VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_24 WHERE time = \"1:41.40.55\"", "question": "What is the rank of the rider with time of 1:41.40.55?", "context": "CREATE TABLE table_name_24 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_85 WHERE team = \"398cc yamaha\"", "question": "What is the time of the rider with a 398cc yamaha?", "context": "CREATE TABLE table_name_85 (time VARCHAR, team VARCHAR)"}, {"answer": "SELECT time FROM table_name_76 WHERE rank = 6", "question": "What is the time of the rider ranked 6?", "context": "CREATE TABLE table_name_76 (time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rider FROM table_name_94 WHERE team = \"399cc kawasaki\"", "question": "Who is the rider with a 399cc Kawasaki?", "context": "CREATE TABLE table_name_94 (rider VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_school FROM table_name_89 WHERE utah_mr_basketball = \"tyler haws\" AND year = 2009", "question": "Where did Tyler Haws, 2009 Utah Mr. Basketball, go to high school?", "context": "CREATE TABLE table_name_89 (high_school VARCHAR, utah_mr_basketball VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(earnings__) AS $__ FROM table_name_5 WHERE wins = 14 AND rank > 3", "question": "How much have players earned with 14 wins ranked below 3?", "context": "CREATE TABLE table_name_5 (earnings__ VARCHAR, wins VARCHAR, rank VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_47 WHERE laps < 28 AND time_retired = \"out of fuel\"", "question": "Who built the car that ran out of fuel before 28 laps?", "context": "CREATE TABLE table_name_47 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_91 WHERE grid > 21 AND time_retired = \"+2 laps\"", "question": "What is the high lap total for cards with a grid larger than 21, and a Time/Retired of +2 laps?", "context": "CREATE TABLE table_name_91 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT secr_numbers FROM table_name_36 WHERE class = \"b1\"", "question": "Which SECR numbers have a class of b1?", "context": "CREATE TABLE table_name_36 (secr_numbers VARCHAR, class VARCHAR)"}, {"answer": "SELECT class FROM table_name_34 WHERE year_made = \"1880\"", "question": "Which class was made in 1880?", "context": "CREATE TABLE table_name_34 (class VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE attendance > 20 OFFSET 682", "question": "What is the date of the game when attendance is more than 20,682?", "context": "CREATE TABLE table_name_59 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT home_team FROM table_name_29 WHERE away_team = \"richmond\"", "question": "Which home team played the Away team from Richmond?", "context": "CREATE TABLE table_name_29 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_73 WHERE away_team = \"south melbourne\"", "question": "What was the home teams score while playing the away team of south melbourne?", "context": "CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_53 WHERE venue = \"arden street oval\"", "question": "What was the score of the away team while playing at the arden street oval?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_50 WHERE tyre = \"b\" AND engine_\u2020 = \"ferrari 053\"", "question": "What are the rounds for the B tyres and Ferrari 053 engine +?", "context": "CREATE TABLE table_name_50 (rounds VARCHAR, tyre VARCHAR, engine_\u2020 VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_30 WHERE driver = \"ricardo zonta\"", "question": "What kind of chassis does Ricardo Zonta have?", "context": "CREATE TABLE table_name_30 (chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT free_practice_driver_s_ FROM table_name_8 WHERE engine_\u2020 = \"ford rs2\"", "question": "What kind of free practice is there with a Ford RS2 engine +?", "context": "CREATE TABLE table_name_8 (free_practice_driver_s_ VARCHAR, engine_\u2020 VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_53 WHERE lost < 5 AND season = \"2008/2009\" AND draw > 9", "question": "What is the total number of matches with a loss less than 5 in the 2008/2009 season and has a draw larger than 9?", "context": "CREATE TABLE table_name_53 (matches VARCHAR, draw VARCHAR, lost VARCHAR, season VARCHAR)"}, {"answer": "SELECT competition FROM table_name_88 WHERE points > 30 AND draw < 5 AND lost > 10", "question": "What competition has a score greater than 30, a draw less than 5, and a loss larger than 10?", "context": "CREATE TABLE table_name_88 (competition VARCHAR, lost VARCHAR, points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_6 WHERE matches > 26 AND points = 62 AND draw > 5", "question": "What is the sum of the losses that a match score larger than 26, a points score of 62, and a draw greater than 5?", "context": "CREATE TABLE table_name_6 (lost INTEGER, draw VARCHAR, matches VARCHAR, points VARCHAR)"}, {"answer": "SELECT record FROM table_name_92 WHERE date = \"january 19\"", "question": "What is the record for the game on January 19?", "context": "CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE date = \"january 12\"", "question": "What is the score of the game on January 12?", "context": "CREATE TABLE table_name_46 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_60 WHERE visitor = \"montreal canadiens\" AND date = \"february 12\"", "question": "Who was the home team when the vistor team was the Montreal Canadiens on February 12?", "context": "CREATE TABLE table_name_60 (home VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_26 WHERE frequency_mhz = \"90.3 fm\"", "question": "Tell me the city of license with frequency of Mhz of 90.3 fm", "context": "CREATE TABLE table_name_26 (city_of_license VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_20 WHERE erp_w = 4", "question": "Name the call sign for ERP W of 4", "context": "CREATE TABLE table_name_20 (call_sign VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_name_80 WHERE erp_w = 55", "question": "Name the frequence MHz for ERP W of 55", "context": "CREATE TABLE table_name_80 (frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_17 WHERE call_sign = \"w279at\"", "question": "Name the FCC info for call sign of w279at", "context": "CREATE TABLE table_name_17 (fcc_info VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_65 WHERE erp_w = 27", "question": "Name the call sign for ERP W of 27", "context": "CREATE TABLE table_name_65 (call_sign VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE score = \"3 \u2013 1\"", "question": "What was the date of the game that had a score of 3 \u2013 1?", "context": "CREATE TABLE table_name_60 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE visitor = \"boston bruins\"", "question": "What was the score of the game when the Boston Bruins were the visiting team?", "context": "CREATE TABLE table_name_75 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE record = \"16\u201314\u20136\"", "question": "What was the score with a 16\u201314\u20136 record?", "context": "CREATE TABLE table_name_37 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT secr_numbers FROM table_name_31 WHERE year_made = \"1861\"", "question": "What was the SECR number of the item made in 1861?", "context": "CREATE TABLE table_name_31 (secr_numbers VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT venue FROM table_name_72 WHERE home_team = \"geelong\"", "question": "Name the venue with a home team of geelong", "context": "CREATE TABLE table_name_72 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_47 WHERE venue = \"punt road oval\"", "question": "When the Venue was Punt Road Oval, who was the Home Team?", "context": "CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_75 WHERE away_team = \"melbourne\"", "question": "When Melbourne was the Away team, what was their score?", "context": "CREATE TABLE table_name_75 (away_team VARCHAR)"}, {"answer": "SELECT driver FROM table_name_99 WHERE chassis = \"d6\"", "question": "Who is driver of the d6 chassis?", "context": "CREATE TABLE table_name_99 (driver VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_91 WHERE chassis = \"mp4/1c\" AND driver = \"niki lauda\"", "question": "Who is the constructor for driver Niki Lauda and a chassis of mp4/1c?", "context": "CREATE TABLE table_name_91 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_42 WHERE driver = \"piercarlo ghinzani\" AND engine = \"ford cosworth dfv 3.0 v8\"", "question": "Who is the Constructor for driver Piercarlo Ghinzani and a Ford cosworth dfv 3.0 v8 engine?", "context": "CREATE TABLE table_name_42 (constructor VARCHAR, driver VARCHAR, engine VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_75 WHERE driver = \"jean alesi\" AND laps < 24", "question": "When Jean Alesi had laps less than 24, what was his highest grid?", "context": "CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_15 WHERE grid < 14 AND driver = \"ricardo zonta\"", "question": "How many laps did Ricardo Zonta drive with a grid less than 14?", "context": "CREATE TABLE table_name_15 (laps INTEGER, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_75 WHERE driver = \"alexander wurz\" AND laps < 25", "question": "What was Alexander Wurz's highest grid with laps of less than 25?", "context": "CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_78 WHERE title = \"magia nuda\"", "question": "How many years have a Title of Magia Nuda?", "context": "CREATE TABLE table_name_78 (year VARCHAR, title VARCHAR)"}, {"answer": "SELECT country FROM table_name_57 WHERE music = \"angelo francesco lavagnino\" AND year = 1969", "question": "What is the country that has a music writer of Angelo Francesco Lavagnino, written in 1969?", "context": "CREATE TABLE table_name_57 (country VARCHAR, music VARCHAR, year VARCHAR)"}, {"answer": "SELECT music FROM table_name_61 WHERE notes = \"aka africa uncensored\"", "question": "Which music has the notes of AKA Africa Uncensored?", "context": "CREATE TABLE table_name_61 (music VARCHAR, notes VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_67 WHERE constellation = \"pegasus\" AND ngc_number = \"7318a\"", "question": "What is Pegasus' right ascension with a 7318a NGC?", "context": "CREATE TABLE table_name_67 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT declination___j2000__ FROM table_name_89 WHERE object_type = \"spiral galaxy\" AND constellation = \"pegasus\" AND ngc_number = \"7337\"", "question": "What is the declination of the spiral galaxy Pegasus with 7337 NGC", "context": "CREATE TABLE table_name_89 (declination___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_57 WHERE constellation = \"pegasus\" AND ngc_number = \"7343\"", "question": "What is the right ascension of Pegasus with a 7343 NGC?", "context": "CREATE TABLE table_name_57 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE date = \"october 13\"", "question": "What was the score on October 13?", "context": "CREATE TABLE table_name_94 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_56 WHERE visitor = \"carolina\"", "question": "Which team won when the visitor was Carolina?", "context": "CREATE TABLE table_name_56 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE date = \"october 31\"", "question": "What was the score on October 31?", "context": "CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_26 WHERE date = \"october 13\"", "question": "Which team was home on October 13?", "context": "CREATE TABLE table_name_26 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_city FROM table_name_7 WHERE stadium = \"angelo massimino\"", "question": "What is the home city for angelo massimino stadium?", "context": "CREATE TABLE table_name_7 (home_city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT h___a FROM table_name_54 WHERE date = \"20 february 2007\"", "question": "What is the H/A for 20 february 2007?", "context": "CREATE TABLE table_name_54 (h___a VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_14 WHERE date = \"2 may 2007\"", "question": "How many people attended on 2 may 2007?", "context": "CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE opponents = \"roma\" AND h___a = \"a\"", "question": "Which date has roma as opponent and a H/A of A?", "context": "CREATE TABLE table_name_46 (date VARCHAR, opponents VARCHAR, h___a VARCHAR)"}, {"answer": "SELECT round FROM table_name_41 WHERE date = \"10 april 2007\"", "question": "Which round happened on 10 april 2007?", "context": "CREATE TABLE table_name_41 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_55 WHERE venue = \"princes park\"", "question": "Who was home at Princes Park?", "context": "CREATE TABLE table_name_55 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_38 WHERE venue = \"princes park\"", "question": "What was the away team's score at Princes Park?", "context": "CREATE TABLE table_name_38 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE venue = \"lake oval\"", "question": "When was the game played at Lake Oval?", "context": "CREATE TABLE table_name_56 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_12 WHERE venue = \"princes park\"", "question": "What was the away team when the game was at Princes Park?", "context": "CREATE TABLE table_name_12 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(place) FROM table_name_52 WHERE total = 16 AND average < 16", "question": "What is the smallest place number when the total is 16 and average is less than 16?", "context": "CREATE TABLE table_name_52 (place INTEGER, total VARCHAR, average VARCHAR)"}, {"answer": "SELECT SUM(average) FROM table_name_88 WHERE rank_by_average > 12", "question": "What is the average when the rank by average is more than 12?", "context": "CREATE TABLE table_name_88 (average INTEGER, rank_by_average INTEGER)"}, {"answer": "SELECT AVG(place) FROM table_name_91 WHERE rank_by_average = 9 AND total < 83", "question": "What is the average place for a couple with the rank by average of 9 and total smaller than 83?", "context": "CREATE TABLE table_name_91 (place INTEGER, rank_by_average VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(rank_by_average) FROM table_name_43 WHERE total > 245 AND average = 27.1 AND number_of_dances < 15", "question": "What is the rank by average where the total was larger than 245 and the average was 27.1 with fewer than 15 dances?", "context": "CREATE TABLE table_name_43 (rank_by_average INTEGER, number_of_dances VARCHAR, total VARCHAR, average VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_3 WHERE club = \"north east stars\"", "question": "Which stadium was used for the North East Stars club?", "context": "CREATE TABLE table_name_3 (stadium VARCHAR, club VARCHAR)"}, {"answer": "SELECT SUM(top_division_titles) FROM table_name_90 WHERE founded < 1975 AND location = \"chaguaramas\"", "question": "What was the total number of Top Division Titles where the year founded was prior to 1975 and the location was in Chaguaramas?", "context": "CREATE TABLE table_name_90 (top_division_titles INTEGER, founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_4 WHERE date = \"november 9, 1958\"", "question": "What was the higest attendance on November 9, 1958?", "context": "CREATE TABLE table_name_4 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_23 WHERE goals = 22 AND debut_year < 1935", "question": "How many games had 22 goals before 1935?", "context": "CREATE TABLE table_name_23 (games INTEGER, goals VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_68 WHERE date_of_birth = \"17 march 1915\" AND debut_year < 1935", "question": "What is the average games a player born on 17 March 1915 and debut before 1935 had?", "context": "CREATE TABLE table_name_68 (games INTEGER, date_of_birth VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_88 WHERE debut_year = 1936 AND player = \"jack gaudion\"", "question": "What is the lowest number of games Jack Gaudion, who debut in 1936, played?", "context": "CREATE TABLE table_name_88 (games INTEGER, debut_year VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_at_club FROM table_name_63 WHERE goals = 2 AND date_of_birth = \"23 july 1910\"", "question": "What is the years at the club of the player with 2 goals and was born on 23 July 1910?", "context": "CREATE TABLE table_name_63 (years_at_club VARCHAR, goals VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT pos FROM table_name_91 WHERE play_offs = \"quarter-final\" AND pts = \"56\"", "question": "During the play-off quarter-final which team scored position was the team that scored 56 points?", "context": "CREATE TABLE table_name_91 (pos VARCHAR, play_offs VARCHAR, pts VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE home = \"philadelphia\"", "question": "What is the score when Philadelphia is at home?", "context": "CREATE TABLE table_name_84 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_55 WHERE date = \"december 4\"", "question": "What is the record on December 4?", "context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_84 WHERE record = \"13\u201310\u20134\"", "question": "what is the decision when the record is 13\u201310\u20134?", "context": "CREATE TABLE table_name_84 (decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_71 WHERE date = \"august 26\"", "question": "What is the lowest attendance total on August 26?", "context": "CREATE TABLE table_name_71 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_1 WHERE date = \"5 february\"", "question": "What is the sum of the year for 5 february?", "context": "CREATE TABLE table_name_1 (year INTEGER, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_82 WHERE year > 2012", "question": "What was the location for a year later than 2012?", "context": "CREATE TABLE table_name_82 (location VARCHAR, year INTEGER)"}, {"answer": "SELECT constructor FROM table_name_33 WHERE laps > 72 AND driver = \"eddie irvine\"", "question": "who is the constructor when the laps is more than 72 and the driver is eddie irvine?", "context": "CREATE TABLE table_name_33 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT record FROM table_name_16 WHERE visitor = \"rockets\"", "question": "What was the record of the game where the Rockets were the visiting team?", "context": "CREATE TABLE table_name_16 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT voltage FROM table_name_49 WHERE model_number = \"pentium dual-core e2140\"", "question": "What's the voltage for the pentium dual-core e2140?", "context": "CREATE TABLE table_name_49 (voltage VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_name_20 WHERE frequency = \"2.4 ghz\"", "question": "What part number(s) has a frequency of 2.4 ghz?", "context": "CREATE TABLE table_name_20 (part_number_s_ VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_name_98 WHERE part_number_s_ = \"hh80557pg0491m\"", "question": "What's the release price (USD) for part number hh80557pg0491m?", "context": "CREATE TABLE table_name_98 (release_price___usd__ VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_71 WHERE release_date = \"august 26, 2007\"", "question": "What L2 cache had a release date of august 26, 2007?", "context": "CREATE TABLE table_name_71 (l2_cache VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT location FROM table_name_10 WHERE pole_position = \"tom pryce\"", "question": "Where did the team in which Tom Pryce was in Pole Position race?", "context": "CREATE TABLE table_name_10 (location VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_39 WHERE constructor = \"ferrari\" AND location = \"zolder\"", "question": "Who ran the fastest lap in the team that competed in Zolder, in which Ferrari was the Constructor?", "context": "CREATE TABLE table_name_39 (fastest_lap VARCHAR, constructor VARCHAR, location VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_8 WHERE date = \"jan 29, 2012\"", "question": "What tournament was on Jan 29, 2012?", "context": "CREATE TABLE table_name_8 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_25 WHERE winning_score = 69 - 67 - 72 - 64 = 272", "question": "What is the to par of the match with a winning score 69-67-72-64=272?", "context": "CREATE TABLE table_name_25 (to_par VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT COUNT(episode_no) FROM table_name_53 WHERE original_airdate = \"january 26, 2009\" AND production_no < 38", "question": "What is the episode number of the episode that originally aired on January 26, 2009 and had a production number smaller than 38?", "context": "CREATE TABLE table_name_53 (episode_no VARCHAR, original_airdate VARCHAR, production_no VARCHAR)"}, {"answer": "SELECT acquired FROM table_name_1 WHERE player = \"tom norton\"", "question": "Who acquired tom norton?", "context": "CREATE TABLE table_name_1 (acquired VARCHAR, player VARCHAR)"}, {"answer": "SELECT venue FROM table_name_4 WHERE home_team = \"geelong\"", "question": "Where did Geelong play as the home team?", "context": "CREATE TABLE table_name_4 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_25 WHERE home_team = \"north melbourne\"", "question": "Where did North Melbourne play as the home team?", "context": "CREATE TABLE table_name_25 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_37 WHERE home_team = \"footscray\"", "question": "What did the away team score when playing Footscray?", "context": "CREATE TABLE table_name_37 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_61 WHERE week < 13 AND date = \"october 8, 2000\"", "question": "What's the record for October 8, 2000 before week 13?", "context": "CREATE TABLE table_name_61 (record VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_52 WHERE result = \"bye\"", "question": "What game site has a result of bye?", "context": "CREATE TABLE table_name_52 (game_site VARCHAR, result VARCHAR)"}, {"answer": "SELECT record FROM table_name_80 WHERE week > 16", "question": "What's the record after week 16?", "context": "CREATE TABLE table_name_80 (record VARCHAR, week INTEGER)"}, {"answer": "SELECT result FROM table_name_39 WHERE game_site = \"psinet stadium\" AND opponent = \"cincinnati bengals\"", "question": "What's the result at psinet stadium when the cincinnati bengals are the opponent?", "context": "CREATE TABLE table_name_39 (result VARCHAR, game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE week > 12 AND game_site = \"bye\"", "question": "What's the record after week 12 with a game site of bye?", "context": "CREATE TABLE table_name_26 (record VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE callback_venue = \"total tickets to hollywood\"", "question": "What day has a callback Venue of total tickets to hollywood? Question", "context": "CREATE TABLE table_name_73 (date VARCHAR, callback_venue VARCHAR)"}, {"answer": "SELECT SUM(golden_tickets) FROM table_name_85 WHERE callback_venue = \"georgia international convention center\"", "question": "How many golden tickets for the georgia international convention center?", "context": "CREATE TABLE table_name_85 (golden_tickets INTEGER, callback_venue VARCHAR)"}, {"answer": "SELECT class FROM table_name_10 WHERE wa = \"0-8-0\"", "question": "What class is associated with a W.A. of 0-8-0?", "context": "CREATE TABLE table_name_10 (class VARCHAR, wa VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_21 WHERE game_site = \"indianapolis hoosierdome\"", "question": "Who was the Opponent at the Game Site Indianapolis Hoosierdome?", "context": "CREATE TABLE table_name_21 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_24 WHERE away_team = \"st kilda\"", "question": "What is the St Kilda Away team score?", "context": "CREATE TABLE table_name_24 (away_team VARCHAR)"}, {"answer": "SELECT MAX(snatch) FROM table_name_65 WHERE bodyweight = 68.63 AND total__kg_ < 290", "question": "Tell me the highest snatch for 68.63 bodyweight and total kg less than 290", "context": "CREATE TABLE table_name_65 (snatch INTEGER, bodyweight VARCHAR, total__kg_ VARCHAR)"}, {"answer": "SELECT COUNT(snatch) FROM table_name_62 WHERE clean_ & _jerk > 132.5 AND total__kg_ = 315 AND bodyweight = 68.63", "question": "Tell me the total number of snatches for clean and jerk more than 132.5 when the total kg was 315 and bodyweight was 68.63", "context": "CREATE TABLE table_name_62 (snatch VARCHAR, bodyweight VARCHAR, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT AVG(clean_) & _jerk FROM table_name_10 WHERE snatch = 140 AND total__kg_ < 315", "question": "Name the average clean and jerk for snatch of 140 and total kg less than 315", "context": "CREATE TABLE table_name_10 (_jerk VARCHAR, clean_ INTEGER, snatch VARCHAR, total__kg_ VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_20 WHERE chassis = \"tg181\" AND driver = \"derek warwick\"", "question": "Who constructed the car that Derek Warwick raced in with a TG181 chassis?", "context": "CREATE TABLE table_name_20 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT player FROM table_name_99 WHERE club_province = \"direito\" AND caps < 21 AND position = \"lock\"", "question": "Which player has a Club/province of direito, less than 21 caps, and a Position of lock?", "context": "CREATE TABLE table_name_99 (player VARCHAR, position VARCHAR, club_province VARCHAR, caps VARCHAR)"}, {"answer": "SELECT COUNT(caps) FROM table_name_6 WHERE position = \"prop\" AND player = \"rui cordeiro\"", "question": "How many caps have a Position of prop, and a Player of rui cordeiro?", "context": "CREATE TABLE table_name_6 (caps VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_41 WHERE player = \"david penalva\"", "question": "Which Club/province has a Player of david penalva?", "context": "CREATE TABLE table_name_41 (club_province VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(caps) FROM table_name_49 WHERE date_of_birth__age_ = \"15 july 1981\"", "question": "How many caps have a Date of Birth (Age) of 15 july 1981?", "context": "CREATE TABLE table_name_49 (caps VARCHAR, date_of_birth__age_ VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE position = \"fly-half\" AND caps = 3", "question": "Which player has a Position of fly-half, and a Caps of 3?", "context": "CREATE TABLE table_name_41 (player VARCHAR, position VARCHAR, caps VARCHAR)"}, {"answer": "SELECT constituency FROM table_name_93 WHERE conservative = \"darren millar\"", "question": "What constituency does the Conservative Darren Millar belong to?", "context": "CREATE TABLE table_name_93 (constituency VARCHAR, conservative VARCHAR)"}, {"answer": "SELECT constituency FROM table_name_12 WHERE result = \"labour hold\" AND liberal_democrats = \"elizabeth newton\"", "question": "In what constituency was the result labour hold and Liberal democrat Elizabeth Newton won?", "context": "CREATE TABLE table_name_12 (constituency VARCHAR, result VARCHAR, liberal_democrats VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_21 WHERE winning_score = \u201310(66 - 71 - 62 - 71 = 270)", "question": "Who has the Winning score of \u201310 (66-71-62-71=270) ?", "context": "CREATE TABLE table_name_21 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_37 WHERE date = \"may 24, 1999\"", "question": "Who is Runner(s)-up that has a Date of may 24, 1999?", "context": "CREATE TABLE table_name_37 (runner_s__up VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_38 WHERE margin_of_victory = \"7 strokes\"", "question": "Which Tournament has a Margin of victory of 7 strokes", "context": "CREATE TABLE table_name_38 (tournament VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT decision FROM table_name_71 WHERE visitor = \"chicago\"", "question": "What was the decision of the Kings game when Chicago was the visiting team?", "context": "CREATE TABLE table_name_71 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_38 WHERE position = \"nose tackle\"", "question": "What round was the nose tackle drafted?", "context": "CREATE TABLE table_name_38 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT record FROM table_name_36 WHERE home = \"buffalo\"", "question": "What is the Record when Buffalo is at Home?", "context": "CREATE TABLE table_name_36 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT winnings FROM table_name_65 WHERE make = \"chevrolet\" AND car__number > 29 AND points = 102", "question": "What were the winnings for the Chevrolet with a number larger than 29 and scored 102 points?", "context": "CREATE TABLE table_name_65 (winnings VARCHAR, points VARCHAR, make VARCHAR, car__number VARCHAR)"}, {"answer": "SELECT make FROM table_name_47 WHERE car__number = 31", "question": "What is the make of car 31?", "context": "CREATE TABLE table_name_47 (make VARCHAR, car__number VARCHAR)"}, {"answer": "SELECT SUM(car__number) FROM table_name_62 WHERE laps < 369 AND make = \"dodge\" AND points > 49", "question": "What is the car number that has less than 369 laps for a Dodge with more than 49 points?", "context": "CREATE TABLE table_name_62 (car__number INTEGER, points VARCHAR, laps VARCHAR, make VARCHAR)"}, {"answer": "SELECT COUNT(ties) FROM table_name_27 WHERE name = \"totals\" AND lost > 30", "question": "Tell me the total number of ties for name of totals and lost more than 30", "context": "CREATE TABLE table_name_27 (ties VARCHAR, name VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(ties) FROM table_name_3 WHERE win__percentage > 0 AND tenure = \"2001-2011\" AND lost > 16", "question": "I want the total number of ties for win % more than 0 and tenure of 2001-2011 with lost more than 16", "context": "CREATE TABLE table_name_3 (ties VARCHAR, lost VARCHAR, win__percentage VARCHAR, tenure VARCHAR)"}, {"answer": "SELECT record FROM table_name_62 WHERE attendance = \"28,531\"", "question": "What's the record when the attendance was 28,531?", "context": "CREATE TABLE table_name_62 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_25 WHERE attendance = \"41,573\"", "question": "What's the record when the attendance was 41,573?", "context": "CREATE TABLE table_name_25 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_88 WHERE date = \"june 13\"", "question": "Who's the opponent for June 13?", "context": "CREATE TABLE table_name_88 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_67 WHERE position = \"center\" AND player = \"joakim andersson\"", "question": "Where does center Joakim Andersson come from?", "context": "CREATE TABLE table_name_67 (nationality VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_6 WHERE player = \"zack torquato\"", "question": "What position does Zack Torquato play?", "context": "CREATE TABLE table_name_6 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(heat) FROM table_name_44 WHERE lane = 4 AND quart > 44.62", "question": "When a lane of 4 has a QUART greater than 44.62, what is the lowest HEAT?", "context": "CREATE TABLE table_name_44 (heat INTEGER, lane VARCHAR, quart VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE venue = \"arden street oval\"", "question": "When did the game at Arden Street Oval occur?", "context": "CREATE TABLE table_name_7 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_79 WHERE home_team = \"north melbourne\"", "question": "What did the away team score when playing North Melbourne?", "context": "CREATE TABLE table_name_79 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_71 WHERE venue = \"vfl park\"", "question": "How many people attended the game at VFL Park?", "context": "CREATE TABLE table_name_71 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_16 WHERE home_team = \"fitzroy\"", "question": "When the home team was fitzroy, what did the away team score?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_39 WHERE grand_prix = \"brazilian grand prix\"", "question": "Name the fastest lap for the brazilian grand prix", "context": "CREATE TABLE table_name_39 (fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_62 WHERE fastest_lap = \"damon hill\" AND grand_prix = \"japanese grand prix\"", "question": "Name the pole position at the japanese grand prix when the fastest lap is damon hill", "context": "CREATE TABLE table_name_62 (pole_position VARCHAR, fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_27 WHERE fastest_lap = \"michael schumacher\" AND winning_driver = \"michael schumacher\" AND pole_position = \"michael schumacher\"", "question": "Name the lowest round for when pole position and winning driver is michael schumacher", "context": "CREATE TABLE table_name_27 (round INTEGER, pole_position VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT COUNT(reg_gp) FROM table_name_62 WHERE player = \"nathan barrett\" AND rd__number < 8", "question": "How many reg GP for nathan barrett in a round less than 8?", "context": "CREATE TABLE table_name_62 (reg_gp VARCHAR, player VARCHAR, rd__number VARCHAR)"}, {"answer": "SELECT organization FROM table_name_14 WHERE rank = \"68\"", "question": "What organization ranks 68?", "context": "CREATE TABLE table_name_14 (organization VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_79 WHERE index = \"happy planet index\"", "question": "What year is the happy planet index?", "context": "CREATE TABLE table_name_79 (year INTEGER, index VARCHAR)"}, {"answer": "SELECT year FROM table_name_79 WHERE organization = \"legatum institute\"", "question": "What year for the legatum institute?", "context": "CREATE TABLE table_name_79 (year VARCHAR, organization VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_58 WHERE agg = \"alense vivaldi (trentino)\"", "question": "What 1st leg has Alense Vivaldi (Trentino) as Agg.?", "context": "CREATE TABLE table_name_58 (agg VARCHAR)"}, {"answer": "SELECT grid FROM table_name_42 WHERE laps < 90 AND team = \"minardi team usa\"", "question": "What is the grid for the Minardi Team USA with laps smaller than 90?", "context": "CREATE TABLE table_name_42 (grid VARCHAR, laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_60 WHERE home_team = \"fitzroy\"", "question": "What is Fitzroy's Home team score?", "context": "CREATE TABLE table_name_60 (home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_90 WHERE home_team = \"fitzroy\"", "question": "What is Fitzroy's Home team Crowd?", "context": "CREATE TABLE table_name_90 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_90 WHERE total = 1 AND rank = \"6\" AND bronze > 1", "question": "What is the average gold total for nations ranked 6 with 1 total medal and 1 bronze medal?", "context": "CREATE TABLE table_name_90 (gold INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT driver FROM table_name_3 WHERE grid = 10", "question": "Who drove the grid 10 car?", "context": "CREATE TABLE table_name_3 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_25 WHERE laps < 60 AND time_retired = \"spun off\"", "question": "Who drive the car that went under 60 laps and spun off?", "context": "CREATE TABLE table_name_25 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(yards) FROM table_name_90 WHERE in_20 = 32", "question": "What number of Yards has 32 as an In 20?", "context": "CREATE TABLE table_name_90 (yards VARCHAR, in_20 VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE date = \"june 12\"", "question": "What was the score on June 12?", "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_57 WHERE week > 2 AND date = \"october 29, 1961\"", "question": "What is the top attendance for weeks past 2 on october 29, 1961?", "context": "CREATE TABLE table_name_57 (attendance INTEGER, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_82 WHERE date = \"october 15, 1961\"", "question": "What is the low week from october 15, 1961?", "context": "CREATE TABLE table_name_82 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_98 WHERE opponent = \"buffalo bills\"", "question": "What is the low attendance rate against buffalo bills?", "context": "CREATE TABLE table_name_98 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT team FROM table_name_37 WHERE date = \"november 28\"", "question": "What team played on November 28?", "context": "CREATE TABLE table_name_37 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT driver FROM table_name_19 WHERE time_retired = \"2:16:38.0\"", "question": "What driver has a Time/Retired of 2:16:38.0?", "context": "CREATE TABLE table_name_19 (driver VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_49 WHERE grid = 18", "question": "What time/retired for grid 18?", "context": "CREATE TABLE table_name_49 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT venue FROM table_name_33 WHERE away_team = \"north melbourne\"", "question": "What was the Venue of the North Melbourne Away Team?", "context": "CREATE TABLE table_name_33 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE delta = \"0:40\"", "question": "On what Date is Delta 0:40?", "context": "CREATE TABLE table_name_7 (date VARCHAR, delta VARCHAR)"}, {"answer": "SELECT winner FROM table_name_44 WHERE date = \"june 2, 2007\"", "question": "Who is the Winner on June 2, 2007?", "context": "CREATE TABLE table_name_44 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_78 WHERE home_team = \"essendon\"", "question": "What did the home team of essendon score?", "context": "CREATE TABLE table_name_78 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_56 WHERE venue = \"lake oval\"", "question": "When the venue was lake oval what did the home team score?", "context": "CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_47 WHERE home_team = \"collingwood\"", "question": "What did the away team score when they were playing collingwood?", "context": "CREATE TABLE table_name_47 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_3 WHERE hometown = \"fort lauderdale, florida\"", "question": "What is the position of the player from Fort Lauderdale, Florida?", "context": "CREATE TABLE table_name_3 (position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT position FROM table_name_83 WHERE hometown = \"beaumont, texas\"", "question": "What is the position of the player from Beaumont, Texas?", "context": "CREATE TABLE table_name_83 (position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT position FROM table_name_97 WHERE player = \"max redfield\"", "question": "What position did Max Redfield play?", "context": "CREATE TABLE table_name_97 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_58 WHERE school = \"liberty county high school\"", "question": "What college did the player from Liberty County High School attend?", "context": "CREATE TABLE table_name_58 (college VARCHAR, school VARCHAR)"}, {"answer": "SELECT home FROM table_name_96 WHERE date = \"march 13\"", "question": "On the Date of March 13, who was the Home team?", "context": "CREATE TABLE table_name_96 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_28 WHERE home = \"colorado\"", "question": "What is the Decision listed when the Home was Colorado?", "context": "CREATE TABLE table_name_28 (decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE winning_driver = \"ayrton senna\" AND location = \"monza\"", "question": "What is the date that Ayrton Senna was the drive in Monza?", "context": "CREATE TABLE table_name_73 (date VARCHAR, winning_driver VARCHAR, location VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_88 WHERE winning_driver = \"riccardo patrese\"", "question": "What was the constructor when riccardo patrese was the winning driver?", "context": "CREATE TABLE table_name_88 (winning_constructor VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_83 WHERE grand_prix = \"german grand prix\"", "question": "What is the Pole Position for the German Grand Prix", "context": "CREATE TABLE table_name_83 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE home_team = \"melbourne\"", "question": "What is the date of the game between Melbourne and Footscray?", "context": "CREATE TABLE table_name_78 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_55 WHERE home_team = \"footscray\"", "question": "In the match where footscray was the home team, how much did they score?", "context": "CREATE TABLE table_name_55 (home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_51 WHERE home_team = \"melbourne\"", "question": "During melbourne's home game, who was the away team?", "context": "CREATE TABLE table_name_51 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_61 WHERE away_team = \"north melbourne\"", "question": "In the match where north melbourne was the away team, how much did the home team score?", "context": "CREATE TABLE table_name_61 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_38 WHERE league = \"usisl pro league\"", "question": "How many years was there a team that was part of the usisl pro league?", "context": "CREATE TABLE table_name_38 (year VARCHAR, league VARCHAR)"}, {"answer": "SELECT COUNT(goal) FROM table_name_26 WHERE date = \"21 junio 2008\"", "question": "How many goals were scored on 21 Junio 2008?", "context": "CREATE TABLE table_name_26 (goal VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_22 WHERE goal = 6", "question": "How was the competition in which 6 goals were made?", "context": "CREATE TABLE table_name_22 (competition VARCHAR, goal VARCHAR)"}, {"answer": "SELECT COUNT(goal) FROM table_name_10 WHERE venue = \"panama city\" AND date = \"11 febrero 2006\"", "question": "At the venue of panama city, on 11 Febrero 2006, how many goals were scored?", "context": "CREATE TABLE table_name_10 (goal VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_24 WHERE laps = 52", "question": "what is the time/retired when the laps is 52?", "context": "CREATE TABLE table_name_24 (time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(play_offs) FROM table_name_15 WHERE league > 18 AND player = \"john grant\" AND total > 25", "question": "What is the mean number of play-offs when the league number was bigger than 18, where the player was John Grant and the total number was bigger than 25?", "context": "CREATE TABLE table_name_15 (play_offs INTEGER, total VARCHAR, league VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_26 WHERE player = \"tim sills\"", "question": "Which mean total had Tim Sills as a player?", "context": "CREATE TABLE table_name_26 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(fa_trophy) FROM table_name_8 WHERE club = \"forest green rovers\" AND play_offs > 0", "question": "Which of the lowest FA Trophys involved the Forest Green Rovers club when the play-offs number was bigger than 0?", "context": "CREATE TABLE table_name_8 (fa_trophy INTEGER, club VARCHAR, play_offs VARCHAR)"}, {"answer": "SELECT MIN(league) FROM table_name_13 WHERE club = \"aldershot town\" AND play_offs < 0", "question": "Which of the lowest leagues had Aldershot town as a club when the play-offs number was less than 0?", "context": "CREATE TABLE table_name_13 (league INTEGER, club VARCHAR, play_offs VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_88 WHERE league = 18 AND player = \"richard logan\" AND play_offs < 1", "question": "What mean total had a league number of 18, Richard Logan as a player, and a play-offs number smaller than 1?", "context": "CREATE TABLE table_name_88 (total INTEGER, play_offs VARCHAR, league VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_31 WHERE driver = \"ralf schumacher\" AND laps > 53", "question": "What is the grid total for ralf schumacher racing over 53 laps?", "context": "CREATE TABLE table_name_31 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_25 WHERE laps = 53 AND time_retired = \"1:17:09.672\"", "question": "Who built the car that went 53 laps with a Time/Retired of 1:17:09.672?", "context": "CREATE TABLE table_name_25 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_24 WHERE driver = \"pedro diniz\"", "question": "What is the high lap total for pedro diniz?", "context": "CREATE TABLE table_name_24 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_21 WHERE tournament = \"japan open\"", "question": "Who was the Japan open runner up?", "context": "CREATE TABLE table_name_21 (runner_up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_13 WHERE winning_driver = \"stirling moss\"", "question": "What is the name of the race where Stirling Moss was the winning driver?", "context": "CREATE TABLE table_name_13 (race_name VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_35 WHERE winning_driver = \"innes ireland\" AND race_name = \"i lombank trophy\"", "question": "What circuit did Innes Ireland win at for the I lombank trophy?", "context": "CREATE TABLE table_name_35 (circuit VARCHAR, winning_driver VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT COUNT(swing_to_gain) FROM table_name_20 WHERE constituency = \"edinburgh northern and leith\"", "question": "how many times is the constituency edinburgh northern and leith?", "context": "CREATE TABLE table_name_20 (swing_to_gain VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT constituency FROM table_name_64 WHERE rank < 5 AND result = \"con hold\"", "question": "what is the constituency when the rank is less than 5 and the result is con hold?", "context": "CREATE TABLE table_name_64 (constituency VARCHAR, rank VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_61 WHERE constituency = \"edinburgh northern and leith\" AND swing_to_gain < 4.16", "question": "what is the lowest rank when the constituency is edinburgh northern and leith and the swing to gain is less than 4.16?", "context": "CREATE TABLE table_name_61 (rank INTEGER, constituency VARCHAR, swing_to_gain VARCHAR)"}, {"answer": "SELECT record FROM table_name_6 WHERE leading_scorer = \"antawn jamison (14)\"", "question": "What is the record when the leading scorer is Antawn Jamison (14)?", "context": "CREATE TABLE table_name_6 (record VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_33 WHERE date = \"january 4, 2008\"", "question": "How many people were in attendance on January 4, 2008?", "context": "CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE location = \"addis ababa\"", "question": "What is the score at the Addis Ababa location?", "context": "CREATE TABLE table_name_47 (score VARCHAR, location VARCHAR)"}, {"answer": "SELECT competition FROM table_name_26 WHERE location = \"addis ababa\"", "question": "Which competition was held at Addis Ababa?", "context": "CREATE TABLE table_name_26 (competition VARCHAR, location VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_13 WHERE position_s_ = \"goalkeeper\" AND seasons = \"1st\"", "question": "What is the date of birth of the goalkeeper from the 1st season?", "context": "CREATE TABLE table_name_13 (date_of_birth VARCHAR, position_s_ VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT previous_club FROM table_name_48 WHERE date_of_birth = \"october 22, 1993\"", "question": "What previous club was born on October 22, 1993?", "context": "CREATE TABLE table_name_48 (previous_club VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT competition FROM table_name_84 WHERE date = \"7 june 1999\"", "question": "What was the competition on 7 June 1999?", "context": "CREATE TABLE table_name_84 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_6 WHERE date = \"13 november 2005\"", "question": "What was the competition on 13 November 2005?", "context": "CREATE TABLE table_name_6 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_9 WHERE competition = \"friendly\" AND date = \"7 june 1999\"", "question": "Where was the friendly competition on 7 June 1999 played?", "context": "CREATE TABLE table_name_9 (venue VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_81 WHERE constructor = \"brm\" AND grid = 13", "question": "What is the time/retired for brm with a grid of 13?", "context": "CREATE TABLE table_name_81 (time_retired VARCHAR, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_32 WHERE venue = \"mcg\"", "question": "Which Home team has a Venue of mcg?", "context": "CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_74 WHERE date = \"november 27, 1994\"", "question": "What was the score of the Chiefs November 27, 1994 game?", "context": "CREATE TABLE table_name_74 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_1 WHERE week < 16 AND attendance = \"69,362\"", "question": "What was the score of the Chiefs pre-Week 16 game that 69,362 people attended?", "context": "CREATE TABLE table_name_1 (result VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_39 WHERE player = \"sawyer hannay\"", "question": "What's sawyer hannay's total pick number?", "context": "CREATE TABLE table_name_39 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE date = \"22 august 2012\"", "question": "Tell me the score on 22 august 2012", "context": "CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_51 WHERE points > 167.5", "question": "Who has points larger than 167.5?", "context": "CREATE TABLE table_name_51 (name VARCHAR, points INTEGER)"}, {"answer": "SELECT MIN(crowd) FROM table_name_84 WHERE venue = \"mcg\"", "question": "What is the lowest crowd seen by the mcg Venue?", "context": "CREATE TABLE table_name_84 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE away_team = \"richmond\"", "question": "When was the game with richmond as Away team?", "context": "CREATE TABLE table_name_86 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(rating) FROM table_name_66 WHERE share < 4", "question": "What is the total ratings on share less than 4?", "context": "CREATE TABLE table_name_66 (rating VARCHAR, share INTEGER)"}, {"answer": "SELECT date_of_death FROM table_name_66 WHERE date_of_birth = \"24 september 1851\"", "question": "When did the person born 24 September 1851 pass away?", "context": "CREATE TABLE table_name_66 (date_of_death VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT age_at_time_of_disaster FROM table_name_81 WHERE date_of_birth = \"24 september 1851\"", "question": "How old was the person born 24 September 1851 at the time of disaster?", "context": "CREATE TABLE table_name_81 (age_at_time_of_disaster VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT name FROM table_name_26 WHERE date_of_birth = \"1909\"", "question": "What is the name of the person born in 1909?", "context": "CREATE TABLE table_name_26 (name VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT result FROM table_name_11 WHERE venue = \"oakland\"", "question": "What is the result in oakland?", "context": "CREATE TABLE table_name_11 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_14 WHERE home_team = \"richmond\"", "question": "Which Crowd has a Home team of richmond?", "context": "CREATE TABLE table_name_14 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_47 WHERE home_team = \"essendon\"", "question": "Which Venue has a Home team of essendon?", "context": "CREATE TABLE table_name_47 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_44 WHERE round = 6", "question": "What nationality was the round 6 draft pick?", "context": "CREATE TABLE table_name_44 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_66 WHERE position = \"w\" AND college_junior_club_team__league_ = \"leninogorsk (russia-2)\"", "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 college_junior_club_team__league_ FROM table_name_12 WHERE round = 2 AND position = \"d\"", "question": "What college or league did the round 2 pick with d position come from?", "context": "CREATE TABLE table_name_12 (college_junior_club_team__league_ VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_17 WHERE home_team = \"north melbourne\"", "question": "Who was the away team when North Melbourne was the home team?", "context": "CREATE TABLE table_name_17 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_50 WHERE home_team = \"footscray\"", "question": "What away team played against Footscray as the home team?", "context": "CREATE TABLE table_name_50 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT rank___number_ FROM table_name_86 WHERE air_date = \"may 19, 2009\"", "question": "What is the rank for the show aired on May 19, 2009?", "context": "CREATE TABLE table_name_86 (rank___number_ VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT timeslot FROM table_name_26 WHERE air_date = \"april 28, 2009\"", "question": "What is the timeslot for the episode that aired April 28, 2009?", "context": "CREATE TABLE table_name_26 (timeslot VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT rating FROM table_name_63 WHERE rank___number_ = \"tba\" AND air_date = \"april 21, 2009\"", "question": "What is the rating of the show ranked tba, aired on April 21, 2009?", "context": "CREATE TABLE table_name_63 (rating VARCHAR, rank___number_ VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT building FROM table_name_54 WHERE year = 2013 AND floors > 20", "question": "What building shows 2013 and has more than 20 floors?", "context": "CREATE TABLE table_name_54 (building VARCHAR, year VARCHAR, floors VARCHAR)"}, {"answer": "SELECT status FROM table_name_54 WHERE year < 2014 AND floors = 33", "question": "What is the status of the building for 2014 with 33 floors?", "context": "CREATE TABLE table_name_54 (status VARCHAR, year VARCHAR, floors VARCHAR)"}, {"answer": "SELECT AVG(floors) FROM table_name_45 WHERE building = \"td building redevelopment (office)\"", "question": "What are the number of floors for the building of td building redevelopment (office)?", "context": "CREATE TABLE table_name_45 (floors INTEGER, building VARCHAR)"}, {"answer": "SELECT status FROM table_name_57 WHERE floors > 28 AND year = 2013", "question": "What is the status of the building with more than 28 floor and a year of 2013?", "context": "CREATE TABLE table_name_57 (status VARCHAR, floors VARCHAR, year VARCHAR)"}, {"answer": "SELECT status FROM table_name_18 WHERE floors < 18 AND year > 2013", "question": "What is the status of the building with less than 18 floors and later than 2013?", "context": "CREATE TABLE table_name_18 (status VARCHAR, floors VARCHAR, year VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_64 WHERE venue = \"arden street oval\"", "question": "Which Home team has a Venue of arden street oval?", "context": "CREATE TABLE table_name_64 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE loss = \"tav\u00e1rez\"", "question": "When did tav\u00e1rez lose?", "context": "CREATE TABLE table_name_64 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(area__km_2__) FROM table_name_72 WHERE code = 66097 AND region > 6", "question": "What is the largest area with a Code of 66097, and a Region larger than 6?", "context": "CREATE TABLE table_name_72 (area__km_2__ INTEGER, code VARCHAR, region VARCHAR)"}, {"answer": "SELECT MAX(region) FROM table_name_17 WHERE code < 66112 AND name = \"l'\u00eele-dorval\"", "question": "What is the largest region with a Code smaller than 66112, and a Name of l'\u00eele-dorval?", "context": "CREATE TABLE table_name_17 (region INTEGER, code VARCHAR, name VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_1 WHERE venue = \"lake oval\"", "question": "Name the away team score for lake oval", "context": "CREATE TABLE table_name_1 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_35 WHERE home_team = \"south melbourne\"", "question": "Name the home team score for south melbourne home team", "context": "CREATE TABLE table_name_35 (home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_77 WHERE away_team = \"carlton\"", "question": "Name the home team for carlton away team", "context": "CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT listed FROM table_name_14 WHERE county = \"cochise\"", "question": "when was the site listed when the county is cochise?", "context": "CREATE TABLE table_name_14 (listed VARCHAR, county VARCHAR)"}, {"answer": "SELECT cerclis_id FROM table_name_74 WHERE proposed = \"12/30/1982\" AND partially_deleted = \"05/01/2003\"", "question": "what is the cerclis ID when the site was proposed on 12/30/1982 and was partially deleted on 05/01/2003?", "context": "CREATE TABLE table_name_74 (cerclis_id VARCHAR, proposed VARCHAR, partially_deleted VARCHAR)"}, {"answer": "SELECT partially_deleted FROM table_name_67 WHERE cerclis_id = \"az7570028582\"", "question": "when was the site partially deleted when the cerclis id is az7570028582?", "context": "CREATE TABLE table_name_67 (partially_deleted VARCHAR, cerclis_id VARCHAR)"}, {"answer": "SELECT MAX(band) FROM table_name_22 WHERE system = \"gsm-450\"", "question": "What band is the highest and has a System of gsm-450?", "context": "CREATE TABLE table_name_22 (band INTEGER, system VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_85 WHERE grid < 15 AND laps = 95", "question": "What was the constructor when there were 95 laps and a grid less than 15?", "context": "CREATE TABLE table_name_85 (constructor VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT grid FROM table_name_8 WHERE time_retired = \"suspension\"", "question": "What was the grid for suspension time/retired?", "context": "CREATE TABLE table_name_8 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_64 WHERE venue = \"victoria park\"", "question": "When the venue is victoria park, what's the largest Crowd that attended?", "context": "CREATE TABLE table_name_64 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_32 WHERE away_team = \"south melbourne\"", "question": "When the Away team is south melbourne, what's the Home team score?", "context": "CREATE TABLE table_name_32 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_18 WHERE away_team = \"north melbourne\"", "question": "If the Away team is north melbourne, what's the Home team score?", "context": "CREATE TABLE table_name_18 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_4 WHERE date_of_appointment = \"26 january\"", "question": "Name the manner of departyre for 26 january date of appointment", "context": "CREATE TABLE table_name_4 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT team FROM table_name_68 WHERE manner_of_departure = \"sacked\" AND date_of_vacancy = \"4 december\"", "question": "I want to know the team that was sacked and date of vacancy was 4 december", "context": "CREATE TABLE table_name_68 (team VARCHAR, manner_of_departure VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_13 WHERE date_of_vacancy = \"22 november\"", "question": "Tell me the outgoing manager for 22 november date of vacancy", "context": "CREATE TABLE table_name_13 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_15 WHERE team = \"livingston\"", "question": "Tell me the outgoing manager for livingston", "context": "CREATE TABLE table_name_15 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_1 WHERE date_of_appointment = \"3 january\"", "question": "Tell me the manner of departure for 3 january date of appointment", "context": "CREATE TABLE table_name_1 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE race = \"argentine grand prix\"", "question": "When did the Argentine Grand Prix race?", "context": "CREATE TABLE table_name_84 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE winning_driver = \"emerson fittipaldi\" AND race = \"spanish grand prix\"", "question": "What day did Emerson Fittipaldi win the Spanish Grand Prix?", "context": "CREATE TABLE table_name_44 (date VARCHAR, winning_driver VARCHAR, race VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_92 WHERE race = \"british grand prix\"", "question": "What circuit was the British Grand Prix?", "context": "CREATE TABLE table_name_92 (circuit VARCHAR, race VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE venue = \"manama, bahrain\" AND competition = \"2006 fifa world cup qualification\"", "question": "On which date was the 2006 FIFA World Cup Qualification in Manama, Bahrain?", "context": "CREATE TABLE table_name_57 (date VARCHAR, venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE venue = \"manama, bahrain\" AND competition = \"friendly\"", "question": "What was the final score of the Friendly Competition in Manama, Bahrain?", "context": "CREATE TABLE table_name_48 (score VARCHAR, venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE venue = \"manama, bahrain\"", "question": "On which date was the match in Manama, Bahrain?", "context": "CREATE TABLE table_name_63 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_98 WHERE grid > 14 AND time_retired = \"accident\" AND driver = \"emerson fittipaldi\"", "question": "How many laps did Emerson Fittipaldi do on a grid larger than 14, and when was the Time/Retired of accident?", "context": "CREATE TABLE table_name_98 (laps VARCHAR, driver VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_69 WHERE constructor = \"brabham - alfa romeo\" AND driver = \"carlos reutemann\"", "question": "What is the Time/Retired of Carlos Reutemann who was driving a brabham - Alfa Romeo?", "context": "CREATE TABLE table_name_69 (time_retired VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT status FROM table_name_55 WHERE vehicle_types = \"dmbs+tcl+dmcl\"", "question": "what status is the vehicle types of dmbs+tcl+dmcl?", "context": "CREATE TABLE table_name_55 (status VARCHAR, vehicle_types VARCHAR)"}, {"answer": "SELECT livery FROM table_name_74 WHERE status = \"in service as coaching stock\"", "question": "what livery has a status of in service as coaching stock?", "context": "CREATE TABLE table_name_74 (livery VARCHAR, status VARCHAR)"}, {"answer": "SELECT status FROM table_name_78 WHERE vehicle_numbers = \"adb977554\"", "question": "what status is the vehicle numbers of adb977554?", "context": "CREATE TABLE table_name_78 (status VARCHAR, vehicle_numbers VARCHAR)"}, {"answer": "SELECT city FROM table_name_62 WHERE name = \"alianza\"", "question": "Which city is Alianza?", "context": "CREATE TABLE table_name_62 (city VARCHAR, name VARCHAR)"}, {"answer": "SELECT first_season_in_first_division FROM table_name_63 WHERE first_season_after_most_recent_promotion = \"1959\" AND name = \"alianza\"", "question": "When was Alianza's first season in first division with a promotion after 1959?", "context": "CREATE TABLE table_name_63 (first_season_in_first_division VARCHAR, first_season_after_most_recent_promotion VARCHAR, name VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_93 WHERE venue = \"victoria park\"", "question": "What is the home team for victoria park?", "context": "CREATE TABLE table_name_93 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_86 WHERE away_team = \"hawthorn\"", "question": "Which home team has a Away team of hawthorn?", "context": "CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_82 WHERE score = \"6\u20135 13\"", "question": "Who is the opponent with a score of 6\u20135 13?", "context": "CREATE TABLE table_name_82 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_39 WHERE save = \"||33,453||36\u201327\"", "question": "Who is the opponent with a save of ||33,453||36\u201327?", "context": "CREATE TABLE table_name_39 (opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_28 WHERE time_retired = \"engine\" AND laps < 66", "question": "What is the top grid that laps less than 66 and a retried engine?", "context": "CREATE TABLE table_name_28 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_31 WHERE time_retired = \"tyre\"", "question": "What is the top lap that had a tyre time?", "context": "CREATE TABLE table_name_31 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_73 WHERE driver = \"roger williamson\" AND laps < 7", "question": "What is the top grid that roger williamson lapped less than 7?", "context": "CREATE TABLE table_name_73 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_31 WHERE record = \"10-1\"", "question": "What opponent does she fight when she is 10-1?", "context": "CREATE TABLE table_name_31 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_98 WHERE time = \"3:16\"", "question": "What is the highest number of rounds for a 3:16 fight?", "context": "CREATE TABLE table_name_98 (round INTEGER, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE home_team = \"south melbourne\"", "question": "What day is south melbourne at home?", "context": "CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_72 WHERE away_team = \"hawthorn\"", "question": "What is the listed crowd when hawthorn is away?", "context": "CREATE TABLE table_name_72 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_49 WHERE venue = \"mcg\"", "question": "What is the home team's score at mcg?", "context": "CREATE TABLE table_name_49 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_33 WHERE date = \"may 6\"", "question": "Tell me who was the opponent on May 6", "context": "CREATE TABLE table_name_33 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_61 WHERE opponent = \"dodgers\" AND date = \"april 21\"", "question": "Name the score when the opponent was the dodgers on april 21", "context": "CREATE TABLE table_name_61 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_15 WHERE round = 11", "question": "What is the number of the pick for round 11?", "context": "CREATE TABLE table_name_15 (pick INTEGER, round VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_82 WHERE round = 8", "question": "What is the largest pick in round 8?", "context": "CREATE TABLE table_name_82 (pick INTEGER, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_44 WHERE school = \"washington\"", "question": "What is the position of the player for Washington school?", "context": "CREATE TABLE table_name_44 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_name_89 WHERE studio_host = \"ward cornell\"", "question": "Who gave the play by play commentary with studio host Ward Cornell?", "context": "CREATE TABLE table_name_89 (play_by_play VARCHAR, studio_host VARCHAR)"}, {"answer": "SELECT colour_commentator_s_ FROM table_name_95 WHERE play_by_play = \"bill hewitt\"", "question": "Were the color commentators who worked with Bill Hewitt doing the play-by-play?", "context": "CREATE TABLE table_name_95 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_name_13 WHERE studio_host = \"ward cornell\" AND colour_commentator_s_ = \"bob goldham\"", "question": "Who did the play-by-play with studio host Ward Cornell and color commentator Bob Goldham?", "context": "CREATE TABLE table_name_13 (play_by_play VARCHAR, studio_host VARCHAR, colour_commentator_s_ VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_name_53 WHERE network = \"cbc\" AND year < 1961", "question": "Who did the play-by-play on the CBC network before 1961?", "context": "CREATE TABLE table_name_53 (play_by_play VARCHAR, network VARCHAR, year VARCHAR)"}, {"answer": "SELECT award FROM table_name_84 WHERE result = \"#100\"", "question": "What's the award for #100?", "context": "CREATE TABLE table_name_84 (award VARCHAR, result VARCHAR)"}, {"answer": "SELECT award FROM table_name_37 WHERE year = 2000 AND result = \"nominated\"", "question": "Which award was nominated for in 2000?", "context": "CREATE TABLE table_name_37 (award VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_7 WHERE year < 2000", "question": "What were the results before the year 2000?", "context": "CREATE TABLE table_name_7 (result VARCHAR, year INTEGER)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_78 WHERE team_1 = \"comunicaciones\"", "question": "What is the 2nd leg of the Comunicaciones team?", "context": "CREATE TABLE table_name_78 (team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_12 WHERE team_1 = \"c.d. plaza amador\"", "question": "What is the 1st leg where Team 1 is C.D. Plaza Amador?", "context": "CREATE TABLE table_name_12 (team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_48 WHERE team_1 = \"c.d. plaza amador\"", "question": "What is the 1st leg where Team 1 is C.D. Plaza Amador?", "context": "CREATE TABLE table_name_48 (team_1 VARCHAR)"}, {"answer": "SELECT partner FROM table_name_14 WHERE surface = \"hard\"", "question": "Who played on a hard surface?", "context": "CREATE TABLE table_name_14 (partner VARCHAR, surface VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_80 WHERE away_team = \"north melbourne\"", "question": "What is north melbourne's score as an away side?", "context": "CREATE TABLE table_name_80 (away_team VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_16 WHERE award = \"fantasia section award\"", "question": "What is the average year of the Fantasia Section Award?", "context": "CREATE TABLE table_name_16 (year INTEGER, award VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_24 WHERE team = \"tri-cities blackhawks\" AND college = \"drake\"", "question": "What is the sum total of picks for drake players from the tri-cities blackhawks?", "context": "CREATE TABLE table_name_24 (pick INTEGER, team VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_13 WHERE college = \"king's (ny)\"", "question": "What is the lowest pick number for players from king's (ny)?", "context": "CREATE TABLE table_name_13 (pick INTEGER, college VARCHAR)"}, {"answer": "SELECT home FROM table_name_22 WHERE visitor = \"calgary\" AND attendance > 15 OFFSET 655", "question": "Who was the Home Team while Calgary was visiting while having an Attendance above 15,655?", "context": "CREATE TABLE table_name_22 (home VARCHAR, visitor VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(frequency___hz__) FROM table_name_48 WHERE helmholtz_pitch = \"d\"", "question": "What is the lowest Frequency where the Hemholtz pitch is d?", "context": "CREATE TABLE table_name_48 (frequency___hz__ INTEGER, helmholtz_pitch VARCHAR)"}, {"answer": "SELECT scientific_pitch FROM table_name_33 WHERE helmholtz_pitch = \"d\"", "question": "What is the scientific pitch when the Helmholtz pitch is D?", "context": "CREATE TABLE table_name_33 (scientific_pitch VARCHAR, helmholtz_pitch VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_17 WHERE circuit = \"oulton park\" AND date = \"15 april\"", "question": "What company constrcuted the vehicle with a circuit of oulton park on 15 april?", "context": "CREATE TABLE table_name_17 (constructor VARCHAR, circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_29 WHERE date = \"16 september\"", "question": "What is the name of the race on 16 september?", "context": "CREATE TABLE table_name_29 (race_name VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_49 WHERE date = \"15 april\"", "question": "What is the circuit held on 15 april?", "context": "CREATE TABLE table_name_49 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE race_name = \"xiv international gold cup\"", "question": "What date was the xiv international gold cup?", "context": "CREATE TABLE table_name_80 (date VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE race_title = \"lakeside\"", "question": "Name the date for race title lakeside", "context": "CREATE TABLE table_name_21 (date VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT team FROM table_name_60 WHERE race_title = \"launceston\"", "question": "Name the team for launceston", "context": "CREATE TABLE table_name_60 (team VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT player FROM table_name_7 WHERE bowling_style = \"source:\"", "question": "Who has a bowling style of source:?", "context": "CREATE TABLE table_name_7 (player VARCHAR, bowling_style VARCHAR)"}, {"answer": "SELECT first_class_team FROM table_name_51 WHERE player = \"sanath jayasuriya\"", "question": "What first class team does sanath jayasuriya play for?", "context": "CREATE TABLE table_name_51 (first_class_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_71 WHERE player = \"roshan mahanama\"", "question": "When was roshan mahanama born?", "context": "CREATE TABLE table_name_71 (date_of_birth VARCHAR, player VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_51 WHERE player = \"avishka gunawardene\"", "question": "When was avishka gunawardene born?", "context": "CREATE TABLE table_name_51 (date_of_birth VARCHAR, player VARCHAR)"}, {"answer": "SELECT venue FROM table_name_33 WHERE result = \"2-1\"", "question": "What was the venue where the result was 2-1?", "context": "CREATE TABLE table_name_33 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE result = \"3-0\"", "question": "What was the score of the match with a 3-0 result?", "context": "CREATE TABLE table_name_44 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE date = \"july 29, 1990\"", "question": "What is the score of the match on July 29, 1990?", "context": "CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_77 WHERE competition = \"1990 asian games\"", "question": "What is the venue of the 1990 Asian games?", "context": "CREATE TABLE table_name_77 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE date = \"october 5, 1990\"", "question": "What is the score of the match on October 5, 1990?", "context": "CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_21 WHERE venue = \"ta'qali\"", "question": "What is the competition at the ta'qali venue?", "context": "CREATE TABLE table_name_21 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_99 WHERE lost < 7 AND drawn > 6 AND points = 25", "question": "What is the average against score of all teams with less than 7 losses, more than 6 draws, and 25 points?", "context": "CREATE TABLE table_name_99 (against INTEGER, points VARCHAR, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_3 WHERE drawn < 6 AND played < 18", "question": "What is the lowest number of points of any team with less than 6 draws and less than 18 matches played?", "context": "CREATE TABLE table_name_3 (points INTEGER, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_96 WHERE against < 14", "question": "What is the sum of the points of all teams that had against scores less than 14?", "context": "CREATE TABLE table_name_96 (points INTEGER, against INTEGER)"}, {"answer": "SELECT listed FROM table_name_46 WHERE construction_completed = \"08/10/2007\"", "question": "What construction completed on 08/10/2007?", "context": "CREATE TABLE table_name_46 (listed VARCHAR, construction_completed VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_11 WHERE venue = \"western oval\"", "question": "What away team played at western oval?", "context": "CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_28 WHERE away_team = \"richmond\"", "question": "What home team has an Away team of richmond?", "context": "CREATE TABLE table_name_28 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_76 WHERE away_team = \"essendon\"", "question": "Which home team has an Away team of essendon?", "context": "CREATE TABLE table_name_76 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tuesday FROM table_name_16 WHERE series = \"big brother 12\"", "question": "Which Tuesday does big brother 12 air?", "context": "CREATE TABLE table_name_16 (tuesday VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_name_20 WHERE saturday = \"channel 5\"", "question": "Which series airs Saturday on Channel 5?", "context": "CREATE TABLE table_name_20 (series VARCHAR, saturday VARCHAR)"}, {"answer": "SELECT thursday FROM table_name_59 WHERE series = \"big brother 13\"", "question": "Which Thursday does big brother 13 air?", "context": "CREATE TABLE table_name_59 (thursday VARCHAR, series VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_74 WHERE points = 32 AND difference < 86", "question": "What is the most lost games for the team with a difference smaller than 86 and points of 32?", "context": "CREATE TABLE table_name_74 (lost INTEGER, points VARCHAR, difference VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_56 WHERE lost = 4 AND played > 28", "question": "What is the average points for a team that lost 4 and played more than 28 games?", "context": "CREATE TABLE table_name_56 (points INTEGER, lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(difference) FROM table_name_98 WHERE drew < 0", "question": "What is the highest difference for the team that had less than 0 draws?", "context": "CREATE TABLE table_name_98 (difference INTEGER, drew INTEGER)"}, {"answer": "SELECT SUM(bronze) FROM table_name_51 WHERE total < 1", "question": "What is the total number of bronze when the total is less than 1?", "context": "CREATE TABLE table_name_51 (bronze INTEGER, total INTEGER)"}, {"answer": "SELECT SUM(total) FROM table_name_45 WHERE nation = \"austria\" AND gold < 0", "question": "What is the full amount of Total for Austria when the number of gold is less than 0?", "context": "CREATE TABLE table_name_45 (total INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT name FROM table_name_89 WHERE rank = 5", "question": "What is the name of Rank 5?", "context": "CREATE TABLE table_name_89 (name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_7 WHERE rmax_rpeak___pflops__ = \"17.173 20.133\"", "question": "What is the rank of Rmax Rpeak ( Pflops ) of 17.173 20.133?", "context": "CREATE TABLE table_name_7 (rank INTEGER, rmax_rpeak___pflops__ VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_58 WHERE fastest_lap = \"bruce mclaren\"", "question": "What is the tyre on the race where Bruce Mclaren had the fastest lap?", "context": "CREATE TABLE table_name_58 (tyre VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_65 WHERE race = \"united states grand prix\"", "question": "What is the constructor at the United States Grand Prix?", "context": "CREATE TABLE table_name_65 (constructor VARCHAR, race VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE circuit = \"monaco\"", "question": "What is the date of the circuit of Monaco?", "context": "CREATE TABLE table_name_97 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_82 WHERE fastest_lap = \"jim clark\" AND circuit = \"prince george\"", "question": "What is the tyre for the circuit of Prince George, which had Jim Clark as the fastest lap?", "context": "CREATE TABLE table_name_82 (tyre VARCHAR, fastest_lap VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE winning_driver = \"graham hill\" AND circuit = \"n\u00fcrburgring\"", "question": "What is the date of the circuit of n\u00fcrburgring, which had Graham Hill as the winning driver?", "context": "CREATE TABLE table_name_47 (date VARCHAR, winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT game FROM table_name_69 WHERE player = \"eoin holohan\"", "question": "What game did Eoin Holohan play in?", "context": "CREATE TABLE table_name_69 (game VARCHAR, player VARCHAR)"}, {"answer": "SELECT weekly_rank_for_living FROM table_name_96 WHERE air_date = \"october 6, 2008\"", "question": "what is the weekly rank for living when the air date is october 6, 2008?", "context": "CREATE TABLE table_name_96 (weekly_rank_for_living VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT episode FROM table_name_64 WHERE viewers = \"183,000\"", "question": "what is the episode with the 183,000 viewers?", "context": "CREATE TABLE table_name_64 (episode VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT viewers FROM table_name_25 WHERE weekly_rank_for_living = \"4\"", "question": "How many viewers for the episode with the weekly rank for living of 4?", "context": "CREATE TABLE table_name_25 (viewers VARCHAR, weekly_rank_for_living VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_42 WHERE venue = \"kardinia park\"", "question": "Which Away team score has a Venue of kardinia park?", "context": "CREATE TABLE table_name_42 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_47 WHERE home_team = \"geelong\"", "question": "Which Home team score has a Home team of geelong?", "context": "CREATE TABLE table_name_47 (home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE home_team = \"geelong\"", "question": "Which Venue has a Home team of geelong?", "context": "CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT school FROM table_name_23 WHERE hometown = \"raleigh, nc\"", "question": "Which school is in Raleigh, NC?", "context": "CREATE TABLE table_name_23 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT college FROM table_name_44 WHERE player = \"peyton siva\"", "question": "Which college does Peyton Siva play for?", "context": "CREATE TABLE table_name_44 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT height FROM table_name_40 WHERE school = \"franklin high school\"", "question": "Which height is associated with Franklin High School?", "context": "CREATE TABLE table_name_40 (height VARCHAR, school VARCHAR)"}, {"answer": "SELECT height FROM table_name_93 WHERE player = \"daniel orton\"", "question": "How tall is Daniel Orton?", "context": "CREATE TABLE table_name_93 (height VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_name_76 WHERE hometown = \"riverside, ca\"", "question": "Which school is in Riverside, CA?", "context": "CREATE TABLE table_name_76 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT round FROM table_name_87 WHERE position = \"defensive back\"", "question": "During which round was a Hawkeyes player selected for the defensive back position?", "context": "CREATE TABLE table_name_87 (round VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_22 WHERE pick > 50 AND player = \"derek pagel\"", "question": "What was the latest round that Derek Pagel was selected with a pick higher than 50?", "context": "CREATE TABLE table_name_22 (round INTEGER, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(began_operation) FROM table_name_7 WHERE length__km_ = \"sultan ismail\" AND stations > 27", "question": "When is the earliest began operation with a length of sultan ismail and over 27 stations?", "context": "CREATE TABLE table_name_7 (began_operation INTEGER, length__km_ VARCHAR, stations VARCHAR)"}, {"answer": "SELECT AVG(began_operation) FROM table_name_12 WHERE length__km_ = \"ampang\" AND stations > 27", "question": "What is the average operation beginning with a length of ampang and over 27 stations?", "context": "CREATE TABLE table_name_12 (began_operation INTEGER, length__km_ VARCHAR, stations VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_24 WHERE ship = \"appam\"", "question": "what is the nationality of the ship appam?", "context": "CREATE TABLE table_name_24 (nationality VARCHAR, ship VARCHAR)"}, {"answer": "SELECT tonnage_grt FROM table_name_40 WHERE ship = \"author\"", "question": "what is the tonnage grt of the ship author?", "context": "CREATE TABLE table_name_40 (tonnage_grt VARCHAR, ship VARCHAR)"}, {"answer": "SELECT MAX(tonnage_grt) FROM table_name_80 WHERE date = \"16 jan 16\"", "question": "what is the most tonnage grt of any ship sunk or captured on 16 jan 16?", "context": "CREATE TABLE table_name_80 (tonnage_grt INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(tonnage_grt) FROM table_name_94 WHERE type = \"cargo ship\" AND date = \"4 feb 16\"", "question": "what is the total tonnage grt of the cargo ship(s) sunk or captured on 4 feb 16?", "context": "CREATE TABLE table_name_94 (tonnage_grt VARCHAR, type VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank FROM table_name_25 WHERE gold < 1 AND silver > 0", "question": "What Rank has a gold smaller than 1, and a silver larger than 0?", "context": "CREATE TABLE table_name_25 (rank VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT year_completed FROM table_name_20 WHERE line = \"gardermobanen\"", "question": "What year was the Line of Gardermobanen completed?", "context": "CREATE TABLE table_name_20 (year_completed VARCHAR, line VARCHAR)"}, {"answer": "SELECT line FROM table_name_82 WHERE name = \"geumjeong tunnel\"", "question": "Which line is the Geumjeong tunnel?", "context": "CREATE TABLE table_name_82 (line VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE round = \"sf\"", "question": "What is the Date with a Round with sf?", "context": "CREATE TABLE table_name_67 (date VARCHAR, round VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_24 WHERE round = \"3\" AND venue = \"home\"", "question": "What is the Opponent with a Round with 3, and a Venue of home?", "context": "CREATE TABLE table_name_24 (opponent VARCHAR, round VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE opponent = \"wimbledon\" AND result = \"drew 0-0\"", "question": "What is the Date with an Opponent with wimbledon, and a Result of drew 0-0?", "context": "CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT round FROM table_name_15 WHERE opponent = \"blackburn\"", "question": "What is the Round with a Opponent with blackburn?", "context": "CREATE TABLE table_name_15 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE opponent = \"wimbledon\" AND result = \"won 2-0\"", "question": "What is the Date with a Opponent with wimbledon, and a Result of won 2-0?", "context": "CREATE TABLE table_name_25 (date VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_57 WHERE date = \"14 april 2002\"", "question": "What is the Venue with a Date with 14 april 2002?", "context": "CREATE TABLE table_name_57 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(withdrawn) FROM table_name_10 WHERE gnri_no > 172 AND name = \"croagh patrick\" AND rebuilt < 1939", "question": "What is the smallest withdrawn value with a GNRI greater than 172, name of Croagh Patrick and was rebuilt before 1939?", "context": "CREATE TABLE table_name_10 (withdrawn INTEGER, rebuilt VARCHAR, gnri_no VARCHAR, name VARCHAR)"}, {"answer": "SELECT location FROM table_name_19 WHERE bowl = \"california bowl\" AND attendance = \"30,000\"", "question": "Where was the California bowl played with 30,000 attending?", "context": "CREATE TABLE table_name_19 (location VARCHAR, bowl VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_56 WHERE opponent = \"cal state fullerton titans\"", "question": "What stadium had an opponent of Cal State Fullerton Titans?", "context": "CREATE TABLE table_name_56 (stadium VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_92 WHERE driver = \"thierry boutsen\"", "question": "What is the time/retired for thierry boutsen?", "context": "CREATE TABLE table_name_92 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT pitch FROM table_name_97 WHERE location = \"isle of man\"", "question": "What Pitch is located at Isle of Man?", "context": "CREATE TABLE table_name_97 (pitch VARCHAR, location VARCHAR)"}, {"answer": "SELECT name__english_ FROM table_name_76 WHERE location = \"chester\"", "question": "What is the English Name of the Location in Chester?", "context": "CREATE TABLE table_name_76 (name__english_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_97 WHERE pitch = \"old bedians\"", "question": "What is the Location of the Old Bedians Pitch?", "context": "CREATE TABLE table_name_97 (location VARCHAR, pitch VARCHAR)"}, {"answer": "SELECT report FROM table_name_11 WHERE race_name = \"v grand prix de paris\"", "question": "Name the report for v grand prix de paris", "context": "CREATE TABLE table_name_11 (report VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT report FROM table_name_98 WHERE date = \"20 may\"", "question": "Name the report on 20 may", "context": "CREATE TABLE table_name_98 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_name_74 WHERE winning_driver = \"philip fotheringham-parker\"", "question": "Name the report for philip fotheringham-parker", "context": "CREATE TABLE table_name_74 (report VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE circuit = \"pescara\"", "question": "Name the date for pescara", "context": "CREATE TABLE table_name_76 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_34 WHERE date = \"october 15, 2004\"", "question": "What is the catalogue on october 15, 2004?", "context": "CREATE TABLE table_name_34 (catalogue VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_97 WHERE date = \"january 24, 2005\"", "question": "Name the label for january 24, 2005", "context": "CREATE TABLE table_name_97 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_48 WHERE date = \"october 15, 2004\"", "question": "Name the october 15, 2004 catalogue", "context": "CREATE TABLE table_name_48 (catalogue VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE format = \"cd\"", "question": "Name the date that is a cd", "context": "CREATE TABLE table_name_81 (date VARCHAR, format VARCHAR)"}, {"answer": "SELECT region FROM table_name_33 WHERE date = \"december 7, 2004\"", "question": "Name the region for december 7, 2004", "context": "CREATE TABLE table_name_33 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_53 WHERE region = \"australia\"", "question": "Name the catalogue for australia", "context": "CREATE TABLE table_name_53 (catalogue VARCHAR, region VARCHAR)"}, {"answer": "SELECT player FROM table_name_10 WHERE rank = 2 AND seasons = \"1982\u201383, 1983\u201384, 1984\u201385\"", "question": "What player is ranked 2 and played in the seasons of 1982\u201383, 1983\u201384, 1984\u201385?", "context": "CREATE TABLE table_name_10 (player VARCHAR, rank VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_35 WHERE player = \"giuseppe meazza\" AND titles > 3", "question": "How many rankings are associated with giuseppe meazza holding over 3 titles?", "context": "CREATE TABLE table_name_35 (rank VARCHAR, player VARCHAR, titles VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_95 WHERE crowd > 20 OFFSET 000", "question": "What home team has had a crowd bigger than 20,000?", "context": "CREATE TABLE table_name_95 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT venue FROM table_name_87 WHERE away_team = \"footscray\"", "question": "What venue had footscray play at it?", "context": "CREATE TABLE table_name_87 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_57 WHERE venue = \"victoria park\"", "question": "How much did the away team score at victoria park?", "context": "CREATE TABLE table_name_57 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT regional_county_municipality FROM table_name_30 WHERE area__km_2__ > 108.46 AND population = 719", "question": "What municipality has 719 people and is larger than 108.46 km2?", "context": "CREATE TABLE table_name_30 (regional_county_municipality VARCHAR, area__km_2__ VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(region) FROM table_name_14 WHERE name = \"malartic\" AND area__km_2__ < 159.31", "question": "What was the region for Malartic with 159.31 km2?", "context": "CREATE TABLE table_name_14 (region VARCHAR, name VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT MIN(area__km_2__) FROM table_name_22 WHERE name = \"dupuy\"", "question": "What is Dupuy lowest area in km2?", "context": "CREATE TABLE table_name_22 (area__km_2__ INTEGER, name VARCHAR)"}, {"answer": "SELECT AVG(area__km_2__) FROM table_name_46 WHERE population = 311", "question": "What is the km2 area for the population of 311?", "context": "CREATE TABLE table_name_46 (area__km_2__ INTEGER, population VARCHAR)"}, {"answer": "SELECT type FROM table_name_77 WHERE population = 370", "question": "What type has a population of 370?", "context": "CREATE TABLE table_name_77 (type VARCHAR, population VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_18 WHERE home_team = \"geelong\"", "question": "What is the score of the away team that played home team Geelong?", "context": "CREATE TABLE table_name_18 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT source FROM table_name_88 WHERE knight = \"2%\"", "question": "What source has a Knight of 2%?", "context": "CREATE TABLE table_name_88 (source VARCHAR, knight VARCHAR)"}, {"answer": "SELECT lanier FROM table_name_60 WHERE cardwell = \"20%\"", "question": "What Lanier has a Cardwell of 20%?", "context": "CREATE TABLE table_name_60 (lanier VARCHAR, cardwell VARCHAR)"}, {"answer": "SELECT martin FROM table_name_36 WHERE date = \"july 8\u20139, 2008\"", "question": "What martin is on july 8\u20139, 2008?", "context": "CREATE TABLE table_name_36 (martin VARCHAR, date VARCHAR)"}, {"answer": "SELECT source FROM table_name_18 WHERE cardwell = \"20%\"", "question": "What source has a cardwell of 20%?", "context": "CREATE TABLE table_name_18 (source VARCHAR, cardwell VARCHAR)"}, {"answer": "SELECT martin FROM table_name_42 WHERE lanier = \"6%\"", "question": "What martin has a lanier of 6%?", "context": "CREATE TABLE table_name_42 (martin VARCHAR, lanier VARCHAR)"}, {"answer": "SELECT cardwell FROM table_name_43 WHERE source = \"insider advantage\" AND knight = \"1%\"", "question": "What cardwell has an insider advantage and a knight of 1%", "context": "CREATE TABLE table_name_43 (cardwell VARCHAR, source VARCHAR, knight VARCHAR)"}, {"answer": "SELECT weight_at_birth FROM table_name_2 WHERE gender = \"girl\" AND nickname = \"chidi\"", "question": "How much did the girl, nicknamed Chidi, weigh at birth?", "context": "CREATE TABLE table_name_2 (weight_at_birth VARCHAR, gender VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_63 WHERE meaning = \"god knows my journey\"", "question": "What nickname has the meaning of God knows my journey?", "context": "CREATE TABLE table_name_63 (nickname VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_64 WHERE gender = \"boy\" AND weight_at_birth = \"810g (26.0 oz.)\"", "question": "What is the nickname of the boy who weighed 810g (26.0 oz.) at birth?", "context": "CREATE TABLE table_name_64 (nickname VARCHAR, gender VARCHAR, weight_at_birth VARCHAR)"}, {"answer": "SELECT weight_at_birth FROM table_name_24 WHERE meaning = \"god knows my journey\"", "question": "How much did the baby who name means God knows my journey weigh at birth?", "context": "CREATE TABLE table_name_24 (weight_at_birth VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT gender FROM table_name_64 WHERE full_name = \"chukwubuikem maduabuchi\"", "question": "Chukwubuikem Maduabuchi is what gender?", "context": "CREATE TABLE table_name_64 (gender VARCHAR, full_name VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_58 WHERE weight_at_birth = \"730g (23.5 oz.)\"", "question": "What is the nickname of the baby with the birth weight of 730g (23.5 oz.)?", "context": "CREATE TABLE table_name_58 (nickname VARCHAR, weight_at_birth VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_96 WHERE date = \"29 sep\" AND time = \"16:40\"", "question": "For a date of 29 Sep and a time of 16:40, what is the corresponding Set 3?", "context": "CREATE TABLE table_name_96 (set_3 VARCHAR, date VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE time = \"14:10\"", "question": "What Score has a time of 14:10?", "context": "CREATE TABLE table_name_43 (score VARCHAR, time VARCHAR)"}, {"answer": "SELECT winner FROM table_name_55 WHERE trofeo_fast_team = \"carrera jeans-vagabond\" AND stage = \"5\"", "question": "who is the winner when the trofeo fast team is carrera jeans-vagabond in stage 5?", "context": "CREATE TABLE table_name_55 (winner VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR)"}, {"answer": "SELECT trofeo_fast_team FROM table_name_32 WHERE stage = \"10\"", "question": "who was the trofeo fast team in stage 10?", "context": "CREATE TABLE table_name_32 (trofeo_fast_team VARCHAR, stage VARCHAR)"}, {"answer": "SELECT trofeo_fast_team FROM table_name_57 WHERE stage = \"10\"", "question": "who is the trofeo fast team in stage 10?", "context": "CREATE TABLE table_name_57 (trofeo_fast_team VARCHAR, stage VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_64 WHERE stage = \"1\"", "question": "who is the points classification in stage 1?", "context": "CREATE TABLE table_name_64 (points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_80 WHERE winner = \"charly mottet\"", "question": "what is the stage when the winner is charly mottet?", "context": "CREATE TABLE table_name_80 (stage VARCHAR, winner VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_21 WHERE finish < 42 AND start = 19", "question": "Who was the maufacturer of the vehicle during the race where Cale Yarborough started at 19 and finished earlier than 42?", "context": "CREATE TABLE table_name_21 (manufacturer VARCHAR, finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT MIN(finish) FROM table_name_69 WHERE year > 1972 AND manufacturer = \"pontiac\"", "question": "What is the smallest finish time for a race after 1972 with a car manufactured by pontiac?", "context": "CREATE TABLE table_name_69 (finish INTEGER, year VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT MIN(finish) FROM table_name_45 WHERE year > 1978 AND manufacturer = \"buick\" AND start < 3", "question": "What is the smallest finish time for a race where start was less than 3, buick was the manufacturer, and the race was held after 1978?", "context": "CREATE TABLE table_name_45 (finish INTEGER, start VARCHAR, year VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_68 WHERE attendance = \"16,971\"", "question": "What home team had an attendance record of 16,971?", "context": "CREATE TABLE table_name_68 (home_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT track FROM table_name_34 WHERE catalogue = \"apbo 0280\"", "question": "Tell me the track that has the catalogue of apbo 0280", "context": "CREATE TABLE table_name_34 (track VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT SUM(track) FROM table_name_99 WHERE song_title = \"raised on rock\"", "question": "I want the sum of tracks for raised on rock", "context": "CREATE TABLE table_name_99 (track INTEGER, song_title VARCHAR)"}, {"answer": "SELECT time FROM table_name_95 WHERE release_date = \"6/6/77\" AND song_title = \"way down\"", "question": "Tell me the time for 6/6/77 release date and song title of way down", "context": "CREATE TABLE table_name_95 (time VARCHAR, release_date VARCHAR, song_title VARCHAR)"}, {"answer": "SELECT recorded FROM table_name_84 WHERE track > 20 AND release_date = \"6/6/77\" AND time = \"2:50\"", "question": "Tell me the recorded for time of 2:50 and released date of 6/6/77 with track more than 20", "context": "CREATE TABLE table_name_84 (recorded VARCHAR, time VARCHAR, track VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_45 WHERE time = \"2:50\" AND recorded = \"10/29/76\"", "question": "Tell me the release date record on 10/29/76 and a time on 2:50", "context": "CREATE TABLE table_name_45 (release_date VARCHAR, time VARCHAR, recorded VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_28 WHERE track < 13 AND release_date = \"10/31/72\"", "question": "Name the catalogue that has tracks less than 13 and the release date of 10/31/72", "context": "CREATE TABLE table_name_28 (catalogue VARCHAR, track VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT opening_date FROM table_name_6 WHERE classification = \"musical\" AND theatre = \"adelphi theatre\"", "question": "What is the opening date of the musical at the adelphi theatre?", "context": "CREATE TABLE table_name_6 (opening_date VARCHAR, classification VARCHAR, theatre VARCHAR)"}, {"answer": "SELECT opening_date FROM table_name_53 WHERE capacity = 100", "question": "What opening date has a capacity of 100?", "context": "CREATE TABLE table_name_53 (opening_date VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_14 WHERE rank < 1", "question": "On average, how many wins have a rank lower than 1?", "context": "CREATE TABLE table_name_14 (wins INTEGER, rank INTEGER)"}, {"answer": "SELECT MIN(earnings__) AS $__ FROM table_name_78 WHERE wins = 22 AND rank < 2", "question": "What is the lowest level of Earnings($) to have a Wins value of 22 and a Rank lower than 2?", "context": "CREATE TABLE table_name_78 (earnings__ INTEGER, wins VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(earnings__) AS $__ FROM table_name_28 WHERE country = \"united states\" AND wins < 24 AND player = \"george archer\" AND rank > 5", "question": "In total, how much did the United States player George Archer earn with Wins lower than 24 and a rank that was higher than 5?", "context": "CREATE TABLE table_name_28 (earnings__ VARCHAR, rank VARCHAR, player VARCHAR, country VARCHAR, wins VARCHAR)"}, {"answer": "SELECT state FROM table_name_47 WHERE member = \"hon david beddall\"", "question": "What state did Hon David Beddall belong to?", "context": "CREATE TABLE table_name_47 (state VARCHAR, member VARCHAR)"}, {"answer": "SELECT state FROM table_name_1 WHERE electorate = \"fowler\"", "question": "In what state was the electorate fowler?", "context": "CREATE TABLE table_name_1 (state VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT pos FROM table_name_57 WHERE school_country = \"arkansas\"", "question": "What position does the player from arkansas play?", "context": "CREATE TABLE table_name_57 (pos VARCHAR, school_country VARCHAR)"}, {"answer": "SELECT word__number FROM table_name_37 WHERE name = \"omega dot\"", "question": "What is the word count that is named omega dot?", "context": "CREATE TABLE table_name_37 (word__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(word__number) FROM table_name_43 WHERE subframe__number > 3", "question": "What is the total word count with a subframe count greater than 3?", "context": "CREATE TABLE table_name_43 (word__number INTEGER, subframe__number INTEGER)"}, {"answer": "SELECT SUM(grid) FROM table_name_78 WHERE laps < 2", "question": "What is the total grid with laps less than 2?", "context": "CREATE TABLE table_name_78 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT time_retired FROM table_name_9 WHERE laps < 35 AND grid < 10", "question": "How much time is required for less than 35 laps and less than 10 grids?", "context": "CREATE TABLE table_name_9 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT venue FROM table_name_24 WHERE goal = 1", "question": "What is the Venue for Goal number 1?", "context": "CREATE TABLE table_name_24 (venue VARCHAR, goal VARCHAR)"}, {"answer": "SELECT airing_date FROM table_name_73 WHERE number_of_episodes > 20 AND genre = \"costume action\"", "question": "What was the airing date when the number of episodes was larger than 20 and had the genre of costume action?", "context": "CREATE TABLE table_name_73 (airing_date VARCHAR, number_of_episodes VARCHAR, genre VARCHAR)"}, {"answer": "SELECT AVG(number_of_episodes) FROM table_name_34 WHERE genre = \"modern drama\" AND highest_average_point_ratings = 28", "question": "What are the number of episodes when the genre is modern drama and the highest average ratings points are 28?", "context": "CREATE TABLE table_name_34 (number_of_episodes INTEGER, genre VARCHAR, highest_average_point_ratings VARCHAR)"}, {"answer": "SELECT year FROM table_name_60 WHERE issue_price = \"$16.95\" AND artist = \"s.a. allward\"", "question": "What year was S.A. Allward's theme that had an issue price of $16.95 released?", "context": "CREATE TABLE table_name_60 (year VARCHAR, issue_price VARCHAR, artist VARCHAR)"}, {"answer": "SELECT COUNT(mintage) FROM table_name_68 WHERE theme = \"85th anniversary of vimy ridge\" AND year > 2002", "question": "What was the total mintage for years after 2002 that had a 85th Anniversary of Vimy Ridge theme?", "context": "CREATE TABLE table_name_68 (mintage VARCHAR, theme VARCHAR, year VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_29 WHERE away_team = \"footscray\"", "question": "How many people attended the game where Footscray was away?", "context": "CREATE TABLE table_name_29 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(pages) FROM table_name_75 WHERE isbn = \"isbn 91-7713-035-9\"", "question": "How many pages associated with isbn 91-7713-035-9?", "context": "CREATE TABLE table_name_75 (pages INTEGER, isbn VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_18 WHERE venue = \"mcg\"", "question": "What home team played at MCG?", "context": "CREATE TABLE table_name_18 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_63 WHERE venue = \"kardinia park\"", "question": "What away team played at Kardinia Park?", "context": "CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE venue = \"lake oval\"", "question": "On what date did the match at Lake Oval take place?", "context": "CREATE TABLE table_name_63 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE home_team = \"north melbourne\"", "question": "What wa the date of the North Melbourne home game?", "context": "CREATE TABLE table_name_76 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_1 WHERE venue = \"mcg\"", "question": "What was the lowest crowd size at MCG?", "context": "CREATE TABLE table_name_1 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_60 WHERE date = \"december 23, 1995\"", "question": "Who did the Tampa Bay Buccaneers play on december 23, 1995?", "context": "CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE week = \"4\"", "question": "On what date was Tampa Bay's Week 4 game?", "context": "CREATE TABLE table_name_2 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT week FROM table_name_87 WHERE date = \"november 19, 1995\"", "question": "What week was it on November 19, 1995?", "context": "CREATE TABLE table_name_87 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_19 WHERE silver < 2 AND total > 7 AND bronze < 8", "question": "What is the most gold medals a team with less than 2 silvers, more than 7 total medals, and less than 8 bronze medals has?", "context": "CREATE TABLE table_name_19 (gold INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_55 WHERE nation = \"scotland\" AND total < 7", "question": "What is the number of bronze that Scotland, which has less than 7 total medals, has?", "context": "CREATE TABLE table_name_55 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_2 WHERE gold = 1 AND bronze > 5", "question": "What is the average silver medals a team that has 1 gold and more than 5 bronze has?", "context": "CREATE TABLE table_name_2 (silver INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_97 WHERE silver > 0 AND total = 7 AND gold < 1", "question": "What is the total number of bronze a team with more than 0 silver, a total of 7 medals, and less than 1 gold medal has?", "context": "CREATE TABLE table_name_97 (bronze VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_66 WHERE silver = 1 AND bronze < 5", "question": "What is the highest rank a team with 1 silver and less than 5 bronze medals has?", "context": "CREATE TABLE table_name_66 (rank INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(pl_gp) FROM table_name_22 WHERE reg_gp > 18", "question": "What's the highest Pl GP with a Reg GP over 18?", "context": "CREATE TABLE table_name_22 (pl_gp INTEGER, reg_gp INTEGER)"}, {"answer": "SELECT score FROM table_name_30 WHERE venue = \"pro player stadium\" AND winning_team = \"devil rays\" AND date = \"june 14\"", "question": "on June 14, what was the winning score by the Devil rays in pro player stadium?", "context": "CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR, venue VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE date = \"june 16\"", "question": "what was the score on june 16?", "context": "CREATE TABLE table_name_77 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_2 WHERE score = \"4-1\"", "question": "who won by a score of 4-1?", "context": "CREATE TABLE table_name_2 (winning_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE date = \"june 29\"", "question": "what was the score on june 29?", "context": "CREATE TABLE table_name_83 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE losing_team = \"devil rays\" AND date = \"june 29\"", "question": "what was the score on june 29 when the devil rays los?", "context": "CREATE TABLE table_name_11 (score VARCHAR, losing_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE venue = \"pro player stadium\" AND date = \"june 14\"", "question": "what was the score of the game at pro player stadium on june 14?", "context": "CREATE TABLE table_name_9 (score VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_66 WHERE driver = \"jack brabham\" AND laps > 32", "question": "What is the average grid for jack brabham going over 32 laps?", "context": "CREATE TABLE table_name_66 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT res FROM table_name_10 WHERE method = \"decision (unanimous)\" AND opponent = \"wataru sakata\"", "question": "Which Res has a Method of decision (unanimous) and an Opponent of Wataru Sakata?", "context": "CREATE TABLE table_name_10 (res VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_30 WHERE res = \"win\" AND event = \"extreme fighting 1\"", "question": "Which Record has the Res of win with the Event of extreme fighting 1?", "context": "CREATE TABLE table_name_30 (record VARCHAR, res VARCHAR, event VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_3 WHERE record = \"8-4\"", "question": "What was the attendance where the record was 8-4?", "context": "CREATE TABLE table_name_3 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_99 WHERE bronze < 12 AND gold = 0 AND silver = 1", "question": "What is the largest total for a team with fewer than 12 bronze, 1 silver and 0 gold medals?", "context": "CREATE TABLE table_name_99 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_87 WHERE bronze = 1 AND rank = \"7\" AND gold > 0", "question": "What is the largest total for a team with 1 bronze, 0 gold medals and ranking of 7?", "context": "CREATE TABLE table_name_87 (total INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_19 WHERE silver < 0", "question": "What is the number of bronze medals when there are fewer than 0 silver medals?", "context": "CREATE TABLE table_name_19 (bronze INTEGER, silver INTEGER)"}, {"answer": "SELECT MAX(silver) FROM table_name_32 WHERE total < 1", "question": "What is the highest number of silver medals for a team with total less than 1?", "context": "CREATE TABLE table_name_32 (silver INTEGER, total INTEGER)"}, {"answer": "SELECT player FROM table_name_68 WHERE hometown = \"tampa, florida\"", "question": "Which player is from Tampa, Florida?", "context": "CREATE TABLE table_name_68 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT college FROM table_name_85 WHERE player = \"jordan phillips\"", "question": "Which college is Jordan Phillips playing for?", "context": "CREATE TABLE table_name_85 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_5 WHERE position = \"defensive line\" AND school = \"grant high school\"", "question": "What college has a position of defensive line and Grant high school?", "context": "CREATE TABLE table_name_5 (college VARCHAR, position VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_name_47 WHERE school = \"plant high school\"", "question": "What position is for Plant high school?", "context": "CREATE TABLE table_name_47 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_name_94 WHERE school = \"dr. phillips high school\"", "question": "What position is for Dr. Phillips high school?", "context": "CREATE TABLE table_name_94 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_19 WHERE player = \"ray drew\"", "question": "Which hometown has a player of Ray Drew?", "context": "CREATE TABLE table_name_19 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_95 WHERE against < 1867 AND wins = 11", "question": "What is the most byes with 11 wins and fewer than 1867 againsts?", "context": "CREATE TABLE table_name_95 (byes INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_15 WHERE wins < 9 AND byes < 2", "question": "What are the draws when wins are fwewer than 9 and byes fewer than 2?", "context": "CREATE TABLE table_name_15 (draws VARCHAR, wins VARCHAR, byes VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_65 WHERE losses < 7 AND tallangatta_dfl = \"mitta united\"", "question": "What are the fewest draws with less than 7 losses and Mitta United is the Tallagatta DFL?", "context": "CREATE TABLE table_name_65 (draws INTEGER, losses VARCHAR, tallangatta_dfl VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_47 WHERE wins = 9 AND against > 1326", "question": "What are the losses when there are 9 wins and more than 1326 against?", "context": "CREATE TABLE table_name_47 (losses INTEGER, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT decision FROM table_name_53 WHERE record = \"45\u201318\u20136\"", "question": "What was the decision of the Red Wings game when they had a record of 45\u201318\u20136?", "context": "CREATE TABLE table_name_53 (decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT r_51_o FROM table_name_8 WHERE d_42_o = \"r 19\"", "question": "Which R 51 O value corresponds to a D 42 O value of r 19?", "context": "CREATE TABLE table_name_8 (r_51_o VARCHAR, d_42_o VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_14 WHERE school_club_team = \"louisville\" AND pick > 75", "question": "What's the highest round that louisville drafted into when their pick was over 75?", "context": "CREATE TABLE table_name_14 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_31 WHERE school_club_team = \"southern mississippi\"", "question": "Where's the first round that southern mississippi shows up during the draft?", "context": "CREATE TABLE table_name_31 (round INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_38 WHERE regional_county_municipality = \"brome-missisquoi\" AND name = \"cowansville\" AND region < 16", "question": "Cowansville has less than 16 regions and is a Brome-Missisquoi Municipality, what is their population?", "context": "CREATE TABLE table_name_38 (population INTEGER, region VARCHAR, regional_county_municipality VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_64 WHERE type = \"m\" AND name = \"saint-blaise-sur-richelieu\" AND area__km_2__ < 68.42", "question": "Saint-Blaise-Sur-Richelieu is smaller than 68.42 km^2, what is the population of this type M municipality?", "context": "CREATE TABLE table_name_64 (population INTEGER, area__km_2__ VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(code) FROM table_name_14 WHERE regional_county_municipality = \"le haut-saint-laurent\" AND region > 16", "question": "What is the code for a Le Haut-Saint-Laurent municipality that has 16 or more regions?", "context": "CREATE TABLE table_name_14 (code INTEGER, regional_county_municipality VARCHAR, region VARCHAR)"}, {"answer": "SELECT location FROM table_name_74 WHERE tournament = \"security pacific senior classic\"", "question": "Where was the security pacific senior classic?", "context": "CREATE TABLE table_name_74 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_69 WHERE away_team = \"north melbourne\"", "question": "What is the Home team score for the Away team of North Melbourne?", "context": "CREATE TABLE table_name_69 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE away_team = \"footscray\"", "question": "On what date the footscray's away game?", "context": "CREATE TABLE table_name_81 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE result = \"3\u20132\"", "question": "What was the date of the game with a result of 3\u20132?", "context": "CREATE TABLE table_name_3 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE goal = 7", "question": "What was the date of the game with a goal of 7?", "context": "CREATE TABLE table_name_27 (date VARCHAR, goal VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_91 WHERE date = \"april 16\"", "question": "Who is the opponent on april 16?", "context": "CREATE TABLE table_name_91 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_43 WHERE date = \"april 23\"", "question": "What is the team's record on april 23?", "context": "CREATE TABLE table_name_43 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_12 WHERE result = \"loss\" AND location = \"berlin\" AND score = \"0-3\"", "question": "what is the competition when the result is loss in berlin with a score of 0-3?", "context": "CREATE TABLE table_name_12 (competition VARCHAR, score VARCHAR, result VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE location = \"prague\" AND competition = \"world group, consolation round\"", "question": "what is the date for the game in prague for the world group, consolation round competition?", "context": "CREATE TABLE table_name_57 (date VARCHAR, location VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_3 WHERE location = \"tokyo\" AND result = \"loss\"", "question": "What is the competition in tokyo with the result loss?", "context": "CREATE TABLE table_name_3 (competition VARCHAR, location VARCHAR, result VARCHAR)"}, {"answer": "SELECT year FROM table_name_84 WHERE date = \"not played\"", "question": "what is the year when the date is not played?", "context": "CREATE TABLE table_name_84 (year VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_45 WHERE result = \"loss\" AND year = \"1980\" AND competition = \"world group, consolation round\"", "question": "what is the score when the result is loss, the year is 1980 and the competition is world group, consolation round?", "context": "CREATE TABLE table_name_45 (score VARCHAR, competition VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_5 WHERE game > 64 AND date = \"march 16\"", "question": "How many attended the game on march 16 after over 64 games?", "context": "CREATE TABLE table_name_5 (location_attendance VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_12 WHERE high_rebounds = \"radoslav nesterovi\u0107 (8)\" AND high_assists = \"jos\u00e9 calder\u00f3n (9)\"", "question": "What numbered game featured a High rebounds of radoslav nesterovi\u0107 (8), and a High assists of jos\u00e9 calder\u00f3n (9)?", "context": "CREATE TABLE table_name_12 (game VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT sales FROM table_name_51 WHERE position < 13 AND artist = \"dj casper\"", "question": "What were the sales for Dj Casper when he was in a position lower than 13?", "context": "CREATE TABLE table_name_51 (sales VARCHAR, position VARCHAR, artist VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE date = \"january 12\"", "question": "What was the score on January 12?", "context": "CREATE TABLE table_name_27 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_61 WHERE visitor = \"ottawa senators\" AND score = \"1\u20135\"", "question": "Which home team had a visitor of Ottawa Senators with a score of 1\u20135?", "context": "CREATE TABLE table_name_61 (home VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_38 WHERE number = 14 AND years_with_franchise = \"1993-2000\"", "question": "Which team is number 14 and had a franchise in 1993-2000?", "context": "CREATE TABLE table_name_38 (team VARCHAR, number VARCHAR, years_with_franchise VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE position = \"g\" AND team = \"petron blaze boosters\" AND year_retired = \"2000\"", "question": "Who was the player in Position G on the Petron Blaze Boosters and retired in 2000?", "context": "CREATE TABLE table_name_61 (name VARCHAR, year_retired VARCHAR, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT years_with_franchise FROM table_name_16 WHERE number = 9", "question": "How many years did the team in slot number 9 have a franchise?", "context": "CREATE TABLE table_name_16 (years_with_franchise VARCHAR, number VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_name_32 WHERE point = 43 AND final_rank < 7", "question": "Tell me the highest matches for point 43 and final rank less than 7", "context": "CREATE TABLE table_name_32 (matches INTEGER, point VARCHAR, final_rank VARCHAR)"}, {"answer": "SELECT AVG(final_rank) FROM table_name_8 WHERE lose > 10 AND point < 43", "question": "Tell me the average final rank for loe more than 10 and point less than 43", "context": "CREATE TABLE table_name_8 (final_rank INTEGER, lose VARCHAR, point VARCHAR)"}, {"answer": "SELECT AVG(lose) FROM table_name_96 WHERE lost_point > 16 AND goal_difference < 37 AND point < 43", "question": "I want the average lose for lost point more than 16 and goal difference less than 37 and point less than 43", "context": "CREATE TABLE table_name_96 (lose INTEGER, point VARCHAR, lost_point VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_14 WHERE draw < 7 AND lost_point = 16 AND lose > 4", "question": "I want the total number of matches for draw less than 7 and lost point of 16 with lose more than 4", "context": "CREATE TABLE table_name_14 (matches VARCHAR, lose VARCHAR, draw VARCHAR, lost_point VARCHAR)"}, {"answer": "SELECT MAX(point) FROM table_name_98 WHERE lost_point = 33 AND league_point < 52", "question": "Tell me the highest point with lost point being 33 and league point less than 52", "context": "CREATE TABLE table_name_98 (point INTEGER, lost_point VARCHAR, league_point VARCHAR)"}, {"answer": "SELECT laps FROM table_name_31 WHERE grid > 1 AND time_retired = \"halfshaft\"", "question": "How many laps for a grid larger than 1 with a Time/Retired of halfshaft?", "context": "CREATE TABLE table_name_31 (laps VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_61 WHERE laps > 8 AND time_retired = \"+2 laps\" AND driver = \"peter gethin\"", "question": "What is the average grid that has over 8 laps, a Time/Retired of +2 laps, and peter gethin driving?", "context": "CREATE TABLE table_name_61 (grid INTEGER, driver VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_20 WHERE constructor = \"brm\" AND laps > 54", "question": "What is the low grid that has brm and over 54 laps?", "context": "CREATE TABLE table_name_20 (grid INTEGER, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_62 WHERE frequency_mhz > 94.1", "question": "What city has larger than 94.1 as a frequency?", "context": "CREATE TABLE table_name_62 (city_of_license VARCHAR, frequency_mhz INTEGER)"}, {"answer": "SELECT AVG(frequency_mhz) FROM table_name_2 WHERE call_sign = \"w224bn\"", "question": "What is the Frequency MHz for the station with a call sign of w224bn?", "context": "CREATE TABLE table_name_2 (frequency_mhz INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT class FROM table_name_45 WHERE city_of_license = \"black mountain, north carolina\"", "question": "What class is the city of black mountain, north carolina?", "context": "CREATE TABLE table_name_45 (class VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_35 WHERE frequency_mhz > 92.7 AND call_sign = \"w262al\"", "question": "What is the FCC frequency for the station w262al which has a Frequency MHz larger than 92.7?", "context": "CREATE TABLE table_name_35 (fcc_info VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT grid FROM table_name_74 WHERE time_retired = \"+ 1:24.3\"", "question": "What grad has a Time/Retired of + 1:24.3?", "context": "CREATE TABLE table_name_74 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_20 WHERE grid > 6 AND driver = \"henri pescarolo\"", "question": "What is the low lap total for henri pescarolo with a grad larger than 6?", "context": "CREATE TABLE table_name_20 (laps INTEGER, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_60 WHERE time_retired = \"+ 3:27.3\" AND grid > 16", "question": "What is the low lap total for a grid larger than 16 and has a Time/Retired of + 3:27.3?", "context": "CREATE TABLE table_name_60 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT published_in FROM table_name_22 WHERE setting = \"mars\" AND publication_date = \"july 1934\"", "question": "Name what was published in july 1934 with a setting of mars", "context": "CREATE TABLE table_name_22 (published_in VARCHAR, setting VARCHAR, publication_date VARCHAR)"}, {"answer": "SELECT publication_date FROM table_name_25 WHERE fictional_date = \"2112\"", "question": "Name the publication date when the fictional date is 2112", "context": "CREATE TABLE table_name_25 (publication_date VARCHAR, fictional_date VARCHAR)"}, {"answer": "SELECT title FROM table_name_84 WHERE published_in = \"astounding stories\" AND main_characters = \"grant calthorpe, lee neilan\"", "question": "Name the title when the main characters are grant calthorpe, lee neilan and the published in of astounding stories", "context": "CREATE TABLE table_name_84 (title VARCHAR, published_in VARCHAR, main_characters VARCHAR)"}, {"answer": "SELECT club FROM table_name_28 WHERE runners_up > 1 AND last_final_won = \"2010\"", "question": "What club has over 1 runners-up and last won the final in 2010?", "context": "CREATE TABLE table_name_28 (club VARCHAR, runners_up VARCHAR, last_final_won VARCHAR)"}, {"answer": "SELECT wins FROM table_name_54 WHERE total_final_appearances < 2 AND club = \"dunfermline athletic\"", "question": "How manywins for dunfermline athletic that has a total final appearances less than 2?", "context": "CREATE TABLE table_name_54 (wins VARCHAR, total_final_appearances VARCHAR, club VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_84 WHERE away_team = \"hawthorn\"", "question": "What was the crowd size of the match featuring Hawthorn as the Away team?", "context": "CREATE TABLE table_name_84 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_59 WHERE home_team = \"north melbourne\"", "question": "What score did the home team of north melbourne get?", "context": "CREATE TABLE table_name_59 (home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_14 WHERE away_team = \"collingwood\"", "question": "Which home team played the away team of collingwood?", "context": "CREATE TABLE table_name_14 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT method FROM table_name_36 WHERE time = \"5:00\" AND opponent = \"adriano martins\"", "question": "What method had Adriano Martins as an opponent and a time of 5:00?", "context": "CREATE TABLE table_name_36 (method VARCHAR, time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_10 WHERE time = \"5:00\" AND opponent = \"drew fickett\"", "question": "What is the total number of rounds when Drew Fickett was the opponent and the time is 5:00?", "context": "CREATE TABLE table_name_10 (round VARCHAR, time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT competition FROM table_name_68 WHERE location = \"bamako\"", "question": "What competition is located in bamako?", "context": "CREATE TABLE table_name_68 (competition VARCHAR, location VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE opponent = \"algeria\" AND location = \"porto-novo\"", "question": "What is the score from the game where Algeria is the opponent at Porto-Novo?", "context": "CREATE TABLE table_name_28 (score VARCHAR, opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(rd__number) FROM table_name_64 WHERE player = \"moe lemay\"", "question": "What is the mean road number when Moe Lemay is the player?", "context": "CREATE TABLE table_name_64 (rd__number INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(pl_gp) FROM table_name_13 WHERE pick__number = 178 AND rd__number > 9", "question": "What is the sum number of Pl GP when the pick number is 178 and the road number is bigger than 9?", "context": "CREATE TABLE table_name_13 (pl_gp VARCHAR, pick__number VARCHAR, rd__number VARCHAR)"}, {"answer": "SELECT SUM(pl_gp) FROM table_name_90 WHERE pick__number = 199 AND reg_gp > 0", "question": "What is the total number of Pl GP when the pick number is 199 and the Reg GP is bigger than 0?", "context": "CREATE TABLE table_name_90 (pl_gp INTEGER, pick__number VARCHAR, reg_gp VARCHAR)"}, {"answer": "SELECT position FROM table_name_33 WHERE school = \"east texas state\"", "question": "What position did the player from East Texas State play?", "context": "CREATE TABLE table_name_33 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE week < 2", "question": "What day did they play before week 2?", "context": "CREATE TABLE table_name_71 (date VARCHAR, week INTEGER)"}, {"answer": "SELECT cons FROM table_name_19 WHERE lib_dem = \"8%\" AND lead = \"27%\"", "question": "What is the cons for lib dem of 8% and a lead of 27%", "context": "CREATE TABLE table_name_19 (cons VARCHAR, lib_dem VARCHAR, lead VARCHAR)"}, {"answer": "SELECT lead FROM table_name_58 WHERE others = \"5%\"", "question": "I want the lead for others being 5%", "context": "CREATE TABLE table_name_58 (lead VARCHAR, others VARCHAR)"}, {"answer": "SELECT plaid_cymru FROM table_name_9 WHERE date_s__conducted = \"4 may 2011\"", "question": "I want the plaid cymru for 4 may 2011", "context": "CREATE TABLE table_name_9 (plaid_cymru VARCHAR, date_s__conducted VARCHAR)"}, {"answer": "SELECT plaid_cymru FROM table_name_77 WHERE polling_organisation_client = \"yougov/itv wales\" AND date_s__conducted = \"4 may 2011\"", "question": "I want the plaid cymru for Polling organisation/client of yougov/itv wales for 4 may 2011", "context": "CREATE TABLE table_name_77 (plaid_cymru VARCHAR, polling_organisation_client VARCHAR, date_s__conducted VARCHAR)"}, {"answer": "SELECT others FROM table_name_60 WHERE cons = \"21%\" AND lead = \"24%\"", "question": "Name the others for cons of 21% and lead of 24%", "context": "CREATE TABLE table_name_60 (others VARCHAR, cons VARCHAR, lead VARCHAR)"}, {"answer": "SELECT date_s__conducted FROM table_name_69 WHERE plaid_cymru = \"19%\"", "question": "Tell me the dates conducted for plaid cymru of 19%", "context": "CREATE TABLE table_name_69 (date_s__conducted VARCHAR, plaid_cymru VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE date = \"20/6/97\"", "question": "What was the score on 20/6/97?", "context": "CREATE TABLE table_name_9 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE date = \"20/6/97\"", "question": "What was the score on 20/6/97?", "context": "CREATE TABLE table_name_83 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT tries FROM table_name_10 WHERE date = \"14/6/97\"", "question": "What were the tries on 14/6/97?", "context": "CREATE TABLE table_name_10 (tries VARCHAR, date VARCHAR)"}, {"answer": "SELECT goals FROM table_name_86 WHERE date = \"3/10/97\"", "question": "What were the goals on 3/10/97?", "context": "CREATE TABLE table_name_86 (goals VARCHAR, date VARCHAR)"}, {"answer": "SELECT laps FROM table_name_67 WHERE grid = 3", "question": "Tell me the laps for 3 grids", "context": "CREATE TABLE table_name_67 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_44 WHERE away_team = \"footscray\"", "question": "What was the Away team score for Footscray?", "context": "CREATE TABLE table_name_44 (away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_36 WHERE away_team = \"south melbourne\"", "question": "What was the Home team score for the team that played South Melbourne?", "context": "CREATE TABLE table_name_36 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(interview) FROM table_name_57 WHERE average = 8.363 AND evening_gown > 8.37", "question": "Tell me the sum of interview for evening gown more than 8.37 and average of 8.363", "context": "CREATE TABLE table_name_57 (interview INTEGER, average VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT COUNT(swimsuit) FROM table_name_54 WHERE interview < 9.09 AND evening_gown < 8.21 AND average = 8.453", "question": "Name the total number of swimsuits for evening gowns less than 8.21 and average of 8.453 with interview less than 9.09", "context": "CREATE TABLE table_name_54 (swimsuit VARCHAR, average VARCHAR, interview VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT state FROM table_name_84 WHERE evening_gown > 8.86 AND swimsuit < 8.96 AND interview < 8.7", "question": "Name the state with an evening gown more than 8.86 and interview less than 8.7 and swimsuit less than 8.96", "context": "CREATE TABLE table_name_84 (state VARCHAR, interview VARCHAR, evening_gown VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT SUM(stellar_mass___m__) FROM table_name_57 WHERE type = \"m0\"", "question": "What is the total stellar mass of the type m0?", "context": "CREATE TABLE table_name_57 (stellar_mass___m__ INTEGER, type VARCHAR)"}, {"answer": "SELECT MAX(planetary_mass___m) AS \u2295__ FROM table_name_5 WHERE rv__cm_s_ = 65 AND period__days_ < 21", "question": "What is the highest planetary mass having an RV (cm/s) of 65 and a Period (days) less than 21?", "context": "CREATE TABLE table_name_5 (planetary_mass___m INTEGER, rv__cm_s_ VARCHAR, period__days_ VARCHAR)"}, {"answer": "SELECT MIN(period__days_) FROM table_name_1 WHERE planetary_mass___m\u2295__ = 1 AND stellar_mass___m__ > 0.21 AND type = \"m0\"", "question": "What is the smallest period (days) to have a planetary mass of 1, a stellar mass greater than 0.21 and of the type M0?", "context": "CREATE TABLE table_name_1 (period__days_ INTEGER, type VARCHAR, planetary_mass___m\u2295__ VARCHAR, stellar_mass___m__ VARCHAR)"}, {"answer": "SELECT AVG(word__number) FROM table_name_9 WHERE name = \"crs\" AND subframe__number < 2", "question": "What is the average word count with crs and subframes lesser than 2?", "context": "CREATE TABLE table_name_9 (word__number INTEGER, name VARCHAR, subframe__number VARCHAR)"}, {"answer": "SELECT page__number FROM table_name_79 WHERE word__number > 5 AND bits = \"18\u201322\"", "question": "What is the page count and word count greater than 5 with Bits of 18\u201322?", "context": "CREATE TABLE table_name_79 (page__number VARCHAR, word__number VARCHAR, bits VARCHAR)"}, {"answer": "SELECT SUM(subframe__number) FROM table_name_48 WHERE bits = \"18\u201322\"", "question": "What is the total subframe count with Bits of 18\u201322?", "context": "CREATE TABLE table_name_48 (subframe__number INTEGER, bits VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_76 WHERE tie_no = 19", "question": "How many attended tie number 19?", "context": "CREATE TABLE table_name_76 (attendance INTEGER, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_95 WHERE tie_no > 16 AND home_team = \"forest green rovers\"", "question": "Who was the away team in a tie no larger than 16 with forest green rovers at home?", "context": "CREATE TABLE table_name_95 (away_team VARCHAR, tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_9 WHERE home_team = \"stevenage borough\"", "question": "What is the highest attendance for games with stevenage borough at home?", "context": "CREATE TABLE table_name_9 (attendance INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MIN(height__m_) FROM table_name_94 WHERE parent = \"grasmoor\" AND prom__m_ > 117", "question": "What is the lowest height for Parent grasmoor when it has a Prom larger than 117?", "context": "CREATE TABLE table_name_94 (height__m_ INTEGER, parent VARCHAR, prom__m_ VARCHAR)"}, {"answer": "SELECT class FROM table_name_34 WHERE prom__m_ > 30 AND peak = \"sail\"", "question": "Which Class is Peak Sail when it has a Prom larger than 30?", "context": "CREATE TABLE table_name_34 (class VARCHAR, prom__m_ VARCHAR, peak VARCHAR)"}, {"answer": "SELECT parent FROM table_name_52 WHERE height__m_ < 756 AND prom__m_ = 39", "question": "Which Parent has height smaller than 756 and a Prom of 39?", "context": "CREATE TABLE table_name_52 (parent VARCHAR, height__m_ VARCHAR, prom__m_ VARCHAR)"}, {"answer": "SELECT MIN(interview) FROM table_name_52 WHERE state = \"south dakota\" AND evening_gown < 8.513", "question": "Who had the lowest interview score from South Dakota with an evening gown less than 8.513?", "context": "CREATE TABLE table_name_52 (interview INTEGER, state VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_57 WHERE state = \"texas\" AND evening_gown > 8.875", "question": "What is the highest average of the contestant from Texas with an evening gown larger than 8.875?", "context": "CREATE TABLE table_name_57 (average INTEGER, state VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT AVG(interview) FROM table_name_27 WHERE state = \"kentucky\"", "question": "What is the average interview score from Kentucky?", "context": "CREATE TABLE table_name_27 (interview INTEGER, state VARCHAR)"}, {"answer": "SELECT MIN(interview) FROM table_name_3 WHERE evening_gown < 8.938 AND state = \"texas\" AND average < 8.846", "question": "What is the lowest evening score of the contestant with an evening gown less than 8.938, from Texas, and with an average less than 8.846 has?", "context": "CREATE TABLE table_name_3 (interview INTEGER, average VARCHAR, evening_gown VARCHAR, state VARCHAR)"}, {"answer": "SELECT MAX(swimsuit) FROM table_name_91 WHERE evening_gown > 9.175 AND interview < 8.425", "question": "What is the highest swimsuit score of the contestant with an evening gown larger than 9.175 and an interview score less than 8.425?", "context": "CREATE TABLE table_name_91 (swimsuit INTEGER, evening_gown VARCHAR, interview VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_name_31 WHERE interview = 8.275 AND evening_gown > 8.7", "question": "What is the lowest average of the contestant with an interview of 8.275 and an evening gown bigger than 8.7?", "context": "CREATE TABLE table_name_31 (average INTEGER, interview VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_86 WHERE venue = \"arden street oval\"", "question": "How many attended the game at Arden Street Oval?", "context": "CREATE TABLE table_name_86 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_84 WHERE home_team = \"geelong\"", "question": "What was the score for Geelong?", "context": "CREATE TABLE table_name_84 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(joined) FROM table_name_81 WHERE city = \"college park\" AND conference_championships < 0", "question": "What is the lowest year joined in the city of College Park at the Conference championships smaller than 0?", "context": "CREATE TABLE table_name_81 (joined INTEGER, city VARCHAR, conference_championships VARCHAR)"}, {"answer": "SELECT MAX(joined) FROM table_name_84 WHERE conference_championships = 5 AND institution = \"university of north carolina\"", "question": "What is the latest year joined with a Conference championships of 5, and an Institution of university of north carolina?", "context": "CREATE TABLE table_name_84 (joined INTEGER, conference_championships VARCHAR, institution VARCHAR)"}, {"answer": "SELECT joined FROM table_name_15 WHERE conference_championships = 5 AND nickname = \"wolfpack\"", "question": "What is the year joined with a Conference championships of 5, and a Nickname of wolfpack?", "context": "CREATE TABLE table_name_15 (joined VARCHAR, conference_championships VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT MIN(total_produced) FROM table_name_68 WHERE model = \"fm h-15-44\"", "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 date FROM table_name_47 WHERE attendance > 20 OFFSET 268", "question": "Name the date for attendance more than 20,268", "context": "CREATE TABLE table_name_47 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT d_47 FROM table_name_32 WHERE d_45 = \"d 32\"", "question": "Name the D 47 when it has a D 45 of d 32", "context": "CREATE TABLE table_name_32 (d_47 VARCHAR, d_45 VARCHAR)"}, {"answer": "SELECT d_47 FROM table_name_93 WHERE d_41 = \"r 36\"", "question": "Name the D 47 when it has a D 41 of r 36", "context": "CREATE TABLE table_name_93 (d_47 VARCHAR, d_41 VARCHAR)"}, {"answer": "SELECT d_47 FROM table_name_35 WHERE d_48 = \"d 49\" AND d_42 = \"r 42\"", "question": "Name the D 47 when it has a D 48 of d 49 and D 42 of r 42", "context": "CREATE TABLE table_name_35 (d_47 VARCHAR, d_48 VARCHAR, d_42 VARCHAR)"}, {"answer": "SELECT d_48 FROM table_name_29 WHERE d_44 = \"d 33\"", "question": "Name the D 48 when it has a D 44 of d 33", "context": "CREATE TABLE table_name_29 (d_48 VARCHAR, d_44 VARCHAR)"}, {"answer": "SELECT d_44 FROM table_name_63 WHERE d_46 = \"d 31\"", "question": "Name the D 44 when it has a D 46 of d 31", "context": "CREATE TABLE table_name_63 (d_44 VARCHAR, d_46 VARCHAR)"}, {"answer": "SELECT model FROM table_name_68 WHERE fuel_or_propulsion = \"diesel\" AND manufacturer = \"orion\" AND year = 2005", "question": "Tell me the model with fuel or propulsion of diesel and orion manufacturer in 2005", "context": "CREATE TABLE table_name_68 (model VARCHAR, year VARCHAR, fuel_or_propulsion VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT SUM(quantity) FROM table_name_60 WHERE year < 2011 AND model = \"slf-230\"", "question": "Name the sum of quantity for before 2011 model slf-230", "context": "CREATE TABLE table_name_60 (quantity INTEGER, year VARCHAR, model VARCHAR)"}, {"answer": "SELECT fleet_series FROM table_name_96 WHERE quantity = 5", "question": "Name the fleet series with a quantity of 5", "context": "CREATE TABLE table_name_96 (fleet_series VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE race_title = \"mallala\"", "question": "When was the Mallala race held?", "context": "CREATE TABLE table_name_57 (date VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT winner FROM table_name_61 WHERE circuit = \"phillip island grand prix circuit\"", "question": "Which driver won the Phillip Island Grand Prix Circuit?", "context": "CREATE TABLE table_name_61 (winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winner FROM table_name_44 WHERE race_title = \"lakeside\"", "question": "What was the name of the driver that won the Lakeside race?", "context": "CREATE TABLE table_name_44 (winner VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT clerk FROM table_name_14 WHERE highway_commissioners = \"albert lewis\"", "question": "Who was the clerk when the highway commissioner was Albert Lewis?", "context": "CREATE TABLE table_name_14 (clerk VARCHAR, highway_commissioners VARCHAR)"}, {"answer": "SELECT supervisor FROM table_name_43 WHERE years = \"1846\"", "question": "Who was the supervisor in the year 1846?", "context": "CREATE TABLE table_name_43 (supervisor VARCHAR, years VARCHAR)"}, {"answer": "SELECT highway_commissioners FROM table_name_37 WHERE \"treasurer\" = \"treasurer\"", "question": "When Treasurer was treasurer, who was the highway commissioner?", "context": "CREATE TABLE table_name_37 (highway_commissioners VARCHAR)"}, {"answer": "SELECT COUNT(snatch) FROM table_name_73 WHERE total < 267.5", "question": "How many snatches were there with a total of 267.5?", "context": "CREATE TABLE table_name_73 (snatch VARCHAR, total INTEGER)"}, {"answer": "SELECT event FROM table_name_2 WHERE snatch = 122.5", "question": "What event has a 122.5 snatch rate?", "context": "CREATE TABLE table_name_2 (event VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_21 WHERE snatch < 170 AND event = \"56 kg\" AND clean_ & _jerk < 145", "question": "What is the lowest total that had less than 170 snatches, 56 kg events and less than 145 clean & jerk?", "context": "CREATE TABLE table_name_21 (total INTEGER, snatch VARCHAR, event VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_54 WHERE event = \"+105 kg\" AND clean_ & _jerk < 227.5", "question": "What is the total that had an event of +105 kg and clean & jerk less than 227.5?", "context": "CREATE TABLE table_name_54 (total VARCHAR, event VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_58 WHERE visitor = \"montreal\" AND decision = \"price\"", "question": "What was the average attendance when the decision was price and montreal were the visitors?", "context": "CREATE TABLE table_name_58 (attendance INTEGER, visitor VARCHAR, decision VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_50 WHERE week = 2", "question": "What is the lowest attendance for week 2?", "context": "CREATE TABLE table_name_50 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT shuttle_run__sec_ FROM table_name_36 WHERE grade = \"c\"", "question": "Tell me the shuttle run with grade c", "context": "CREATE TABLE table_name_36 (shuttle_run__sec_ VARCHAR, grade VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_42 WHERE date = \"january 15\"", "question": "On January 15, what was the most in attendance?", "context": "CREATE TABLE table_name_42 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_17 WHERE decision = \"mason\" AND date = \"january 29\"", "question": "On January 29, who had the decision of Mason?", "context": "CREATE TABLE table_name_17 (visitor VARCHAR, decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_15 WHERE grid = 3", "question": "What was the time of the driver on grid 3?", "context": "CREATE TABLE table_name_15 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_17 WHERE laps = 43 AND grid = 18", "question": "What was the retired time on someone who had 43 laps on a grip of 18?", "context": "CREATE TABLE table_name_17 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_89 WHERE time_retired = \"+18.445\"", "question": "What was the fewest laps for somone who finished +18.445?", "context": "CREATE TABLE table_name_89 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE venue = \"junction oval\"", "question": "On which date was a game played at Junction Oval?", "context": "CREATE TABLE table_name_40 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE home_team = \"essendon\"", "question": "On which date was Essendon the home team?", "context": "CREATE TABLE table_name_13 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_72 WHERE date = \"october 27\"", "question": "What was the record on the game that was played on october 27?", "context": "CREATE TABLE table_name_72 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(rec) FROM table_name_83 WHERE yards > 647 AND avg < 14", "question": "How many receptions for players with over 647 yards and an under 14 yard average?", "context": "CREATE TABLE table_name_83 (rec INTEGER, yards VARCHAR, avg VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_31 WHERE venue = \"victoria park\"", "question": "What is the home teams score at Victoria Park?", "context": "CREATE TABLE table_name_31 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_20 WHERE venue = \"mcg\"", "question": "What is the home team at the venue mcg?", "context": "CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_56 WHERE home = \"lakers\"", "question": "What is the highest attendace of the game with the Lakers as the home team?", "context": "CREATE TABLE table_name_56 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_55 WHERE date = \"december 5, 2007\"", "question": "What is the record of the game on December 5, 2007?", "context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner_and_nominees FROM table_name_44 WHERE director = \"cary joji fukunaga\"", "question": "Who was the winner and nominees for the movie directed by cary joji fukunaga?", "context": "CREATE TABLE table_name_44 (winner_and_nominees VARCHAR, director VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_58 WHERE winner_and_nominees = \"the king's speech\"", "question": "What was the original title for the king's speech?", "context": "CREATE TABLE table_name_58 (original_title VARCHAR, winner_and_nominees VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_99 WHERE winner_and_nominees = \"the king's speech\"", "question": "What was the original title of the king's speech?", "context": "CREATE TABLE table_name_99 (original_title VARCHAR, winner_and_nominees VARCHAR)"}, {"answer": "SELECT director FROM table_name_77 WHERE original_title = \"the king's speech\"", "question": "Who was the director of the king's speech?", "context": "CREATE TABLE table_name_77 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_51 WHERE round = 7 AND position = \"goalie\"", "question": "What is the nationality of the goalie in Round 7?", "context": "CREATE TABLE table_name_51 (nationality VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE date = \"june 22\"", "question": "What was the score from the game played on June 22?", "context": "CREATE TABLE table_name_84 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT people_assisted FROM table_name_14 WHERE year = \"1997\"", "question": "How many people were assisted in 1997?", "context": "CREATE TABLE table_name_14 (people_assisted VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_15 WHERE countries_affected = \"usa\"", "question": "Which year did USA undergo a disaster?", "context": "CREATE TABLE table_name_15 (year VARCHAR, countries_affected VARCHAR)"}, {"answer": "SELECT nature_of_help FROM table_name_31 WHERE people_assisted = \"1,000\"", "question": "In the disaster in which 1,000 people were helped, what was the nature of help?", "context": "CREATE TABLE table_name_31 (nature_of_help VARCHAR, people_assisted VARCHAR)"}, {"answer": "SELECT pick FROM table_name_2 WHERE school = \"penn state\"", "question": "What is the pick number of Penn State?", "context": "CREATE TABLE table_name_2 (pick VARCHAR, school VARCHAR)"}, {"answer": "SELECT round FROM table_name_2 WHERE pick = 112", "question": "Which Round is pick 112 in?", "context": "CREATE TABLE table_name_2 (round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_18 WHERE school = \"washington\"", "question": "What is the highest pick from Washington?", "context": "CREATE TABLE table_name_18 (pick INTEGER, school VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_60 WHERE round = \"2\"", "question": "What is the total pick number from round 2?", "context": "CREATE TABLE table_name_60 (pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_7 WHERE position = \"wide receiver\"", "question": "What is the total pick number for a wide receiver?", "context": "CREATE TABLE table_name_7 (pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_85 WHERE player = \"thad jemison\"", "question": "What is Thad Jemison's position?", "context": "CREATE TABLE table_name_85 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_3 WHERE caps = 74 AND player = \"girvan dempsey\"", "question": "What is the club or province of Girvan Dempsey, who has 74 caps?", "context": "CREATE TABLE table_name_3 (club_province VARCHAR, caps VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_4 WHERE caps < 49 AND position = \"wing\" AND club_province = \"ulster\"", "question": "Which Ulster player has fewer than 49 caps and plays the wing position?", "context": "CREATE TABLE table_name_4 (player VARCHAR, club_province VARCHAR, caps VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE position = \"fly-half\" AND club_province = \"munster\"", "question": "Which player Munster from Munster is a fly-half?", "context": "CREATE TABLE table_name_67 (player VARCHAR, position VARCHAR, club_province VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_28 WHERE laps < 67 AND points = 6", "question": "What was time/retired with less than 67 laps and 6 points?", "context": "CREATE TABLE table_name_28 (time_retired VARCHAR, laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_54 WHERE driver = \"alex tagliani\" AND points > 17", "question": "How many average laps for Alex Tagliani with more than 17 points?", "context": "CREATE TABLE table_name_54 (laps INTEGER, driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_18 WHERE week < 10 AND result = \"l 30-21\"", "question": "What sum of Attendance has a Week smaller than 10, and a Result of l 30-21?", "context": "CREATE TABLE table_name_18 (attendance INTEGER, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_40 WHERE result = \"w 24-0\" AND attendance < 10 OFFSET 000", "question": "Which Week has a Result of w 24-0, and an Attendance smaller than 10,000?", "context": "CREATE TABLE table_name_40 (week INTEGER, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_95 WHERE opponent = \"green bay packers\" AND week > 10", "question": "Which Attendance has an Opponent of green bay packers, and a Week larger than 10?", "context": "CREATE TABLE table_name_95 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT venue FROM table_name_21 WHERE home_team = \"fitzroy\"", "question": "Where did fitzroy play as the home team?", "context": "CREATE TABLE table_name_21 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_33 WHERE away_team = \"north melbourne\"", "question": "Who was North Melbourne's home opponent?", "context": "CREATE TABLE table_name_33 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_93 WHERE home_team = \"essendon\"", "question": "Where did Essendon play as the home team?", "context": "CREATE TABLE table_name_93 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_68 WHERE replaced_by = \"lucien favre\"", "question": "When was the appointment date for the manager replaced by Lucien Favre?", "context": "CREATE TABLE table_name_68 (date_of_appointment VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_60 WHERE outgoing_manager = \"petrik sander\"", "question": "When is the appointment date for outgoing manager Petrik Sander?", "context": "CREATE TABLE table_name_60 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_72 WHERE team = \"vfl wolfsburg\"", "question": "When was the appointment date for VFL Wolfsburg?", "context": "CREATE TABLE table_name_72 (date_of_appointment VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_departure FROM table_name_41 WHERE replaced_by = \"bojan pra\u0161nikar\"", "question": "When was the departure date when a manager was replaced by Bojan Pra\u0161nikar?", "context": "CREATE TABLE table_name_41 (date_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT sport FROM table_name_92 WHERE year_of_award = 2011", "question": "In 2011 which sport had the year award?", "context": "CREATE TABLE table_name_92 (sport VARCHAR, year_of_award VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_36 WHERE driver = \"giancarlo fisichella\" AND grid > 15", "question": "How many laps did Giancarlo Fisichella do with a grid larger than 15?", "context": "CREATE TABLE table_name_36 (laps VARCHAR, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_43 WHERE grid > 2 AND driver = \"jos verstappen\"", "question": "How many laps did Jos Verstappen do on Grid 2?", "context": "CREATE TABLE table_name_43 (laps INTEGER, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT grid FROM table_name_37 WHERE driver = \"david coulthard\"", "question": "David Coulthard was the driver in which grid?", "context": "CREATE TABLE table_name_37 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_name_80 WHERE grid = \"21\"", "question": "How many laps were there in grid 21?", "context": "CREATE TABLE table_name_80 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_43 WHERE home_team = \"essendon\"", "question": "When Essendon was the Home Team, what was the Away Team score?", "context": "CREATE TABLE table_name_43 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_44 WHERE crowd > 25 OFFSET 000", "question": "When the Crowd was larger than 25,000. what was the Home Team score?", "context": "CREATE TABLE table_name_44 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT COUNT(bulls) FROM table_name_27 WHERE venue = \"old trafford\"", "question": "What was the total number for the Bulls when they were at Old Trafford?", "context": "CREATE TABLE table_name_27 (bulls VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_12 WHERE nation = \"iceland\" AND silver < 19", "question": "Where does Iceland rank with under 19 silvers?", "context": "CREATE TABLE table_name_12 (rank INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_66 WHERE gold > 22 AND rank < 2", "question": "How many bronzes for nations with over 22 golds and ranked under 2?", "context": "CREATE TABLE table_name_66 (bronze INTEGER, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT gold FROM table_name_56 WHERE total = 14", "question": "How many golds for the nation with 14 total?", "context": "CREATE TABLE table_name_56 (gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_53 WHERE silver > 2 AND nation = \"iceland\"", "question": "How many bronzes for Iceland with over 2 silvers?", "context": "CREATE TABLE table_name_53 (bronze INTEGER, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_99 WHERE engine = \"toyota v8\" AND points < 26", "question": "What is the earliest year that had under 26 points and a toyota v8 engine?", "context": "CREATE TABLE table_name_99 (year INTEGER, engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_59 WHERE chassis = \"m16\" AND year > 2006", "question": "What is the low point total after 2006 with an m16 chassis?", "context": "CREATE TABLE table_name_59 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_40 WHERE silver > 0 AND total > 1 AND bronze > 3", "question": "How many golds for nations with over 0 silvers, over 1 total, and over 3 bronze?", "context": "CREATE TABLE table_name_40 (gold VARCHAR, bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_14 WHERE college = \"simon fraser\"", "question": "What was the highest Pick # for the College of Simon Fraser?", "context": "CREATE TABLE table_name_14 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_14 WHERE cfl_team = \"edmonton eskimos\"", "question": "What is the Pick # for the Edmonton Eskimos?", "context": "CREATE TABLE table_name_14 (pick__number VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_84 WHERE player = \"ryan strong\"", "question": "What is the Pick # for Ryan Strong?", "context": "CREATE TABLE table_name_84 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_22 WHERE score = \"6\u20135 (10)\"", "question": "Who did the Rockies play at the game that had a score of 6\u20135 (10)?", "context": "CREATE TABLE table_name_22 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT max_power_at_rpm FROM table_name_95 WHERE engine_code_s_ = \"2e\"", "question": "What is the maximum power of engine code 2e?", "context": "CREATE TABLE table_name_95 (max_power_at_rpm VARCHAR, engine_code_s_ VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_65 WHERE result = \"w 35-14\"", "question": "What is the combined attendance of all games that had a result of w 35-14?", "context": "CREATE TABLE table_name_65 (attendance INTEGER, result VARCHAR)"}, {"answer": "SELECT SUM(ngc_number) FROM table_name_16 WHERE constellation = \"vela\"", "question": "What is the sum of NGC numbers for Constellation vela?", "context": "CREATE TABLE table_name_16 (ngc_number INTEGER, constellation VARCHAR)"}, {"answer": "SELECT apparent_magnitude FROM table_name_78 WHERE object_type = \"globular cluster\"", "question": "What is the Apparent magnitude of a globular cluster?", "context": "CREATE TABLE table_name_78 (apparent_magnitude VARCHAR, object_type VARCHAR)"}, {"answer": "SELECT SUM(apparent_magnitude) FROM table_name_45 WHERE ngc_number > 3293", "question": "What is the total of Apparent magnitudes for an NGC number larger than 3293?", "context": "CREATE TABLE table_name_45 (apparent_magnitude INTEGER, ngc_number INTEGER)"}, {"answer": "SELECT money_raised, _2q FROM table_name_22 WHERE total_receipts = \"$890,398\"", "question": "Tell me the money raised when 2Q has total receipts of $890,398", "context": "CREATE TABLE table_name_22 (money_raised VARCHAR, _2q VARCHAR, total_receipts VARCHAR)"}, {"answer": "SELECT total_receipts FROM table_name_44 WHERE candidate = \"tom tancredo\"", "question": "Tell me the total receipts for tom tancredo", "context": "CREATE TABLE table_name_44 (total_receipts VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT money_spent, _2q FROM table_name_84 WHERE candidate = \"john mccain\"", "question": "Name the money spent for 2Q having candidate of john mccain", "context": "CREATE TABLE table_name_84 (money_spent VARCHAR, _2q VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT loans_received, _2q FROM table_name_95 WHERE total_receipts = \"$25,328,694\"", "question": "Name the loans received for 2Q having total receipts of $25,328,694", "context": "CREATE TABLE table_name_95 (loans_received VARCHAR, _2q VARCHAR, total_receipts VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_66 WHERE away_team = \"collingwood\"", "question": "When collingwood was the away team, what was the home team?", "context": "CREATE TABLE table_name_66 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_58 WHERE venue = \"arden street oval\"", "question": "What was the largest crowd size at arden street oval?", "context": "CREATE TABLE table_name_58 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT works_number FROM table_name_80 WHERE name = \"victor\"", "question": "What is the work number for Victor?", "context": "CREATE TABLE table_name_80 (works_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(built) FROM table_name_75 WHERE name = \"superb\"", "question": "What is the average building year for Superb?", "context": "CREATE TABLE table_name_75 (built INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(asts) FROM table_name_38 WHERE pos = \"f/c\" AND rebs < 13", "question": "What is the highest number of assists for players that are f/c and have under 13 rebounds?", "context": "CREATE TABLE table_name_38 (asts INTEGER, pos VARCHAR, rebs VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE opponent = \"sanaz marand\"", "question": "What was the score in the match against Sanaz Marand?", "context": "CREATE TABLE table_name_54 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_80 WHERE date = \"21 may 2006\"", "question": "What tournament was held on 21 May 2006?", "context": "CREATE TABLE table_name_80 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_47 WHERE constructor = \"maserati\" AND grid = 2", "question": "Who has the low lap total in a maserati with grid 2?", "context": "CREATE TABLE table_name_47 (laps INTEGER, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_28 WHERE time = \"4:39\"", "question": "What is the highest round number with a time of 4:39?", "context": "CREATE TABLE table_name_28 (round INTEGER, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_87 WHERE time = \"0:13\"", "question": "Which record has a time of 0:13?", "context": "CREATE TABLE table_name_87 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT res FROM table_name_44 WHERE round < 2 AND opponent = \"d.j. linderman\"", "question": "What is the result for rounds under 2 against D.J. Linderman?", "context": "CREATE TABLE table_name_44 (res VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_48 WHERE home_team = \"melbourne\"", "question": "What's the average crowd size when the Home team is melbourne?", "context": "CREATE TABLE table_name_48 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_73 WHERE home_team = \"footscray\"", "question": "Which Venue is the one for the footscray Home team?", "context": "CREATE TABLE table_name_73 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_7 WHERE viewers = \"13.7 million\"", "question": "Which Year is the lowest when the Viewers are 13.7 million?", "context": "CREATE TABLE table_name_7 (year INTEGER, viewers VARCHAR)"}, {"answer": "SELECT ratings FROM table_name_23 WHERE year = 2013", "question": "How many Ratings did the 2013 Year have?", "context": "CREATE TABLE table_name_23 (ratings VARCHAR, year VARCHAR)"}, {"answer": "SELECT network FROM table_name_67 WHERE viewers = \"16.0 million\"", "question": "Which Network has 16.0 million Viewers?", "context": "CREATE TABLE table_name_67 (network VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT lap_by_lap FROM table_name_48 WHERE year > 2008 AND pre_race_host = \"chris myers\" AND ratings = \"9.9/22\"", "question": "What Lap-by-lap has Chris Myers as the Pre-Race Host, a Year larger than 2008, and 9.9/22 as its Ratings?", "context": "CREATE TABLE table_name_48 (lap_by_lap VARCHAR, ratings VARCHAR, year VARCHAR, pre_race_host VARCHAR)"}, {"answer": "SELECT network FROM table_name_99 WHERE viewers = \"17.5 million\"", "question": "Which Network has 17.5 million Viewers?", "context": "CREATE TABLE table_name_99 (network VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT driver FROM table_name_39 WHERE constructor = \"maserati\" AND grid < 6 AND time_retired = \"+2 laps\"", "question": "Who was driving the Maserati with a Grid smaller than 6, and a Time/Retired of +2 laps?", "context": "CREATE TABLE table_name_39 (driver VARCHAR, time_retired VARCHAR, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_76 WHERE laps < 80 AND constructor = \"maserati\" AND time_retired = \"+2 laps\"", "question": "What's the average Grid for a Maserati with less than 80 laps, and a Time/Retired of +2 laps?", "context": "CREATE TABLE table_name_76 (grid INTEGER, time_retired VARCHAR, laps VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_31 WHERE constructor = \"ferrari\" AND grid > 2 AND driver = \"luigi musso\"", "question": "What were the lowest laps of Luigi Musso driving a Ferrari with a Grid larger than 2?", "context": "CREATE TABLE table_name_31 (laps INTEGER, driver VARCHAR, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE record = \"56\u201321\"", "question": "What was the score of the Mariners game when they had a record of 56\u201321?", "context": "CREATE TABLE table_name_91 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE record = \"53\u201317\"", "question": "What was the date of the Mariners game when they had a record of 53\u201317?", "context": "CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_85 WHERE record = \"56\u201320\"", "question": "What was the attendance of the Mariners game when they had a record of 56\u201320?", "context": "CREATE TABLE table_name_85 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT college FROM table_name_46 WHERE player = \"matt freeman\"", "question": "What college did Matt Freeman go to?", "context": "CREATE TABLE table_name_46 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_67 WHERE position = \"placekicker\"", "question": "What college did the placekicker go to?", "context": "CREATE TABLE table_name_67 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_35 WHERE school = \"warren central high school\"", "question": "What was the position of the player that went to warren central high school?", "context": "CREATE TABLE table_name_35 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_19 WHERE march = 31", "question": "Which opponent's march was 31?", "context": "CREATE TABLE table_name_19 (opponent VARCHAR, march VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE game < 69 AND march > 2 AND opponent = \"new york islanders\"", "question": "Which score's game was less than 69 when the march was bigger than 2 and the opponents were the New York Islanders?", "context": "CREATE TABLE table_name_80 (score VARCHAR, opponent VARCHAR, game VARCHAR, march VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE game < 76 AND march = 10", "question": "Which opponent's game was less than 76 when the march was 10?", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, game VARCHAR, march VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_30 WHERE home_team = \"north melbourne\"", "question": "What was North Melbourne's score as the home team?", "context": "CREATE TABLE table_name_30 (home_team VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_29 WHERE laps > 67 AND grid < 18 AND driver = \"phil hill\"", "question": "What is the time/retired for phil hill with over 67 laps and a grad smaller than 18?", "context": "CREATE TABLE table_name_29 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT relegated FROM table_name_48 WHERE season = \"2006\"", "question": "What was relegated in the 2006 season?", "context": "CREATE TABLE table_name_48 (relegated VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_22 WHERE promoted = \"norwich union league\"", "question": "What season was Norwich Union League promoted?", "context": "CREATE TABLE table_name_22 (season VARCHAR, promoted VARCHAR)"}, {"answer": "SELECT tv_series FROM table_name_33 WHERE species = \"boar\"", "question": "What show has a boar?", "context": "CREATE TABLE table_name_33 (tv_series VARCHAR, species VARCHAR)"}, {"answer": "SELECT animal_name FROM table_name_98 WHERE tv_series = \"yes\" AND species = \"terrapins\"", "question": "What animal was yes for tv series and was a terrapins?", "context": "CREATE TABLE table_name_98 (animal_name VARCHAR, tv_series VARCHAR, species VARCHAR)"}, {"answer": "SELECT MIN(tv_seasons) FROM table_name_58 WHERE tv_series = \"yes\" AND species = \"human\"", "question": "What is the smallest season for a tv series with a yes and human was the species?", "context": "CREATE TABLE table_name_58 (tv_seasons INTEGER, tv_series VARCHAR, species VARCHAR)"}, {"answer": "SELECT mate FROM table_name_48 WHERE tv_seasons > 1 AND last_appearance = \"bully, bully, bully (3x13)\" AND animal_name = \"hollow/holly\"", "question": "What is the mate for Last Appearance of bully, bully, bully (3x13) for the animal named hollow/holly later than season 1?", "context": "CREATE TABLE table_name_48 (mate VARCHAR, animal_name VARCHAR, tv_seasons VARCHAR, last_appearance VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_71 WHERE driver = \"peter collins\"", "question": "How many grids for peter collins?", "context": "CREATE TABLE table_name_71 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_45 WHERE constructor = \"ferrari\" AND laps = 2", "question": "What is the high grid for ferrari's with 2 laps?", "context": "CREATE TABLE table_name_45 (grid INTEGER, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_27 WHERE laps > 66 AND grid = 5", "question": "Who drove the car with over 66 laps with a grid of 5?", "context": "CREATE TABLE table_name_27 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE tournament = \"orange\"", "question": "When was the tournament at Orange?", "context": "CREATE TABLE table_name_30 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_32 WHERE tournament = \"sunderland\"", "question": "What kind of surface was the Tournament at Sunderland played on?", "context": "CREATE TABLE table_name_32 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_56 WHERE tournament = \"pune\"", "question": "What kind of surface was the tournament at Pune played on?", "context": "CREATE TABLE table_name_56 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE opponent = \"isha lakhani\"", "question": "What was the score of the tournament against Isha Lakhani?", "context": "CREATE TABLE table_name_80 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE record = \"8-25-7\"", "question": "What was the date that ended in a record of 8-25-7?", "context": "CREATE TABLE table_name_21 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_22 WHERE visitor = \"toronto\"", "question": "What was the home team when the visiting team was Toronto?", "context": "CREATE TABLE table_name_22 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_14 WHERE player = \"mitch fadden\"", "question": "What College/junior/club team (league) did mitch fadden play for?", "context": "CREATE TABLE table_name_14 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_10 WHERE result = \"w 34-21\"", "question": "When is the last week that has a result of a w 34-21?", "context": "CREATE TABLE table_name_10 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT method FROM table_name_76 WHERE res = \"loss\" AND time = \"5:00\"", "question": "What is the method where there is a loss with time 5:00?", "context": "CREATE TABLE table_name_76 (method VARCHAR, res VARCHAR, time VARCHAR)"}, {"answer": "SELECT method FROM table_name_51 WHERE time = \"1:01\"", "question": "What was the method when the time was 1:01?", "context": "CREATE TABLE table_name_51 (method VARCHAR, time VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_26 WHERE away_team = \"footscray\"", "question": "What was the crowd when the away team is footscray?", "context": "CREATE TABLE table_name_26 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_45 WHERE venue = \"lake oval\"", "question": "What is the home team score at lake oval?", "context": "CREATE TABLE table_name_45 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_2 WHERE home_team = \"south melbourne\"", "question": "What was the score for south melbourne at home?", "context": "CREATE TABLE table_name_2 (home_team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_84 WHERE team = \"lakers\"", "question": "How many high assists did the Lakers have?", "context": "CREATE TABLE table_name_84 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT result FROM table_name_6 WHERE competition = \"friendly match\" AND date = \"october 8, 2012\"", "question": "WHat was the result of the friendly match that was played on october 8, 2012?", "context": "CREATE TABLE table_name_6 (result VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_14 WHERE date = \"may 31, 2008\"", "question": "What was the name of the competition that took place on may 31, 2008?", "context": "CREATE TABLE table_name_14 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_10 WHERE result = \"loss\" AND date = \"march 26, 2005\"", "question": "During the loss on march 26, 2005, what was the venue where the match was played?", "context": "CREATE TABLE table_name_10 (venue VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_70 WHERE time_retired = \"+1 lap\" AND driver = \"olivier panis\" AND grid > 4", "question": "What is the average number of laps that has a Time/Retired of +1 lap, a Driver of olivier panis, and a Grid larger than 4?", "context": "CREATE TABLE table_name_70 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_19 WHERE laps < 62 AND time_retired = \"gearbox\" AND grid > 1 AND driver = \"pedro diniz\"", "question": "What constructor has under 62 laps, a Time/Retired of gearbox, a Grid larger than 1, and pedro diniz driving?", "context": "CREATE TABLE table_name_19 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_19 WHERE laps = 60 AND grid = 19", "question": "What is the time/retired with 60 laps and a grid 19?", "context": "CREATE TABLE table_name_19 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_80 WHERE home_team = \"south melbourne\"", "question": "What did the away team score when the home team was south melbourne?", "context": "CREATE TABLE table_name_80 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_28 WHERE venue = \"western oval\"", "question": "Who was the away team at western oval?", "context": "CREATE TABLE table_name_28 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_13 WHERE venue = \"vfl park\"", "question": "What team played away at vfl park?", "context": "CREATE TABLE table_name_13 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_65 WHERE away_team = \"carlton\"", "question": "What did carlton score while away?", "context": "CREATE TABLE table_name_65 (away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_25 WHERE away_team = \"north melbourne\"", "question": "Who was the home team in the game where North Melbourne was the away team?", "context": "CREATE TABLE table_name_25 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_32 WHERE venue = \"victoria park\"", "question": "Who was the home team that played in Victoria Park?", "context": "CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_74 WHERE venue = \"victoria park\"", "question": "What was the highest crowd in Victoria Park?", "context": "CREATE TABLE table_name_74 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_5 WHERE away_team = \"collingwood\"", "question": "How many people were in the crowd with the away team being collingwood?", "context": "CREATE TABLE table_name_5 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_69 WHERE home_team = \"essendon\"", "question": "Name the away team for essendon", "context": "CREATE TABLE table_name_69 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_30 WHERE grid > 14 AND time_retired = \"+ 2 laps\" AND driver = \"helmut marko\"", "question": "What is the largest number of laps with a Grid larger than 14, a Time/Retired of + 2 laps, and a Driver of helmut marko?", "context": "CREATE TABLE table_name_30 (laps INTEGER, driver VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_99 WHERE laps < 11 AND time_retired = \"accident\"", "question": "Which grid has less than 11 laps, and a Time/Retired of accident?", "context": "CREATE TABLE table_name_99 (grid INTEGER, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_58 WHERE driver = \"peter gethin\"", "question": "What is the total number of grids for peter gethin?", "context": "CREATE TABLE table_name_58 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_6 WHERE driver = \"dave walker\"", "question": "How many grids does dave walker have?", "context": "CREATE TABLE table_name_6 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_17 WHERE constructor = \"matra\"", "question": "What is the lowest grid with matra as constructor?", "context": "CREATE TABLE table_name_17 (grid INTEGER, constructor VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_94 WHERE release_date = \"9/21/71\" AND time = \"3:17\"", "question": "What is the catalogue number for the song that is 3:17 and was released 9/21/71?", "context": "CREATE TABLE table_name_94 (catalogue VARCHAR, release_date VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(track) FROM table_name_75 WHERE song_title = \"burning love\"", "question": "What is the highest track for Burning Love?", "context": "CREATE TABLE table_name_75 (track INTEGER, song_title VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_73 WHERE song_title = \"heart of rome\"", "question": "What is Heart of Rome's catalogue number?", "context": "CREATE TABLE table_name_73 (catalogue VARCHAR, song_title VARCHAR)"}, {"answer": "SELECT song_title FROM table_name_19 WHERE release_date = \"12/8/70\" AND time = \"2:54\"", "question": "Which song was released 12/8/70 with a time of 2:54?", "context": "CREATE TABLE table_name_19 (song_title VARCHAR, release_date VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_69 WHERE driver = \"ricardo zonta\"", "question": "How many laps did Ricardo Zonta have?", "context": "CREATE TABLE table_name_69 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_58 WHERE grid < 14 AND laps < 53 AND time_retired = \"collision\" AND constructor = \"ferrari\"", "question": "What is the name of the driver with a grid less than 14, laps smaller than 53 and a Time/Retired of collision, and a Constructor of ferrari?", "context": "CREATE TABLE table_name_58 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_42 WHERE laps < 52 AND time_retired = \"collision\" AND constructor = \"arrows - supertec\"", "question": "What is the grid number with less than 52 laps and a Time/Retired of collision, and a Constructor of arrows - supertec?", "context": "CREATE TABLE table_name_42 (grid VARCHAR, constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_49 WHERE grid < 17 AND constructor = \"williams - bmw\" AND driver = \"jenson button\"", "question": "What is the average Laps for a grid smaller than 17, and a Constructor of williams - bmw, driven by jenson button?", "context": "CREATE TABLE table_name_49 (laps INTEGER, driver VARCHAR, grid VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_61 WHERE venue = \"victoria park\"", "question": "When the Venue was victoria park, what was the Away team score?", "context": "CREATE TABLE table_name_61 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_93 WHERE home_team = \"carlton\"", "question": "When the Home team of carlton played, what was their score?", "context": "CREATE TABLE table_name_93 (home_team VARCHAR)"}, {"answer": "SELECT lost FROM table_name_20 WHERE tied = \"0\" AND drawn = \"47\"", "question": "Tell me the lost with tie of 0 and drawn of 47", "context": "CREATE TABLE table_name_20 (lost VARCHAR, tied VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT tied FROM table_name_1 WHERE drawn = \"71\"", "question": "Name the tie that has 71 drawn", "context": "CREATE TABLE table_name_1 (tied VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_25 WHERE tied = \"0\" AND player = \"chris cowdrey\"", "question": "I want to know the drawn that has a tie of 0 and the player is chris cowdrey", "context": "CREATE TABLE table_name_25 (drawn VARCHAR, tied VARCHAR, player VARCHAR)"}, {"answer": "SELECT tied FROM table_name_46 WHERE drawn = \"47\"", "question": "I want to know the tie for drawn of 47", "context": "CREATE TABLE table_name_46 (tied VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT name FROM table_name_70 WHERE authority = \"private\" AND local_board = \"hibiscus and bays\"", "question": "What name shows as private authority and hibiscus and bays local board ?", "context": "CREATE TABLE table_name_70 (name VARCHAR, authority VARCHAR, local_board VARCHAR)"}, {"answer": "SELECT name FROM table_name_36 WHERE local_board = \"albert\u2013eden\" AND decile = \"9\"", "question": "What is the name when the local board is albert\u2013eden, and a Decile of 9?", "context": "CREATE TABLE table_name_36 (name VARCHAR, local_board VARCHAR, decile VARCHAR)"}, {"answer": "SELECT suburb FROM table_name_60 WHERE roll = 741", "question": "What is the name of the suburb with a roll of 741?", "context": "CREATE TABLE table_name_60 (suburb VARCHAR, roll VARCHAR)"}, {"answer": "SELECT gender FROM table_name_49 WHERE local_board = \"albert\u2013eden\" AND roll > 232 AND decile = \"5\"", "question": "What gender has a local board of albert\u2013eden with a roll of more than 232 and Decile of 5?", "context": "CREATE TABLE table_name_49 (gender VARCHAR, decile VARCHAR, local_board VARCHAR, roll VARCHAR)"}, {"answer": "SELECT status FROM table_name_11 WHERE stories > 44 AND city = \"mexico city\" AND building = \"torre reforma\"", "question": "What is the status of the torre reforma building that is over 44 stories in mexico city?", "context": "CREATE TABLE table_name_11 (status VARCHAR, building VARCHAR, stories VARCHAR, city VARCHAR)"}, {"answer": "SELECT height FROM table_name_82 WHERE stories = 52", "question": "How tall is the 52 story building?", "context": "CREATE TABLE table_name_82 (height VARCHAR, stories VARCHAR)"}, {"answer": "SELECT COUNT(stories) FROM table_name_99 WHERE building = \"torre reforma\"", "question": "How many stories is the torre reforma building?", "context": "CREATE TABLE table_name_99 (stories VARCHAR, building VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_7 WHERE games = \"551\" AND player = \"mike gatting\"", "question": "What is the Nationality of Mike Gatting, who played 551 games?", "context": "CREATE TABLE table_name_7 (nationality VARCHAR, games VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_37 WHERE games = \"505\"", "question": "What is the nationality of the player who played 505 games?", "context": "CREATE TABLE table_name_37 (nationality VARCHAR, games VARCHAR)"}, {"answer": "SELECT rank FROM table_name_47 WHERE player = \"wasim akram\"", "question": "What is Wasim Akram's rank?", "context": "CREATE TABLE table_name_47 (rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_87 WHERE player = \"graham gooch\"", "question": "What is Graham Gooch's nationality?", "context": "CREATE TABLE table_name_87 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(average_attendance) FROM table_name_94 WHERE season = \"2009\"", "question": "What was the highest average attendance in the 2009 season?", "context": "CREATE TABLE table_name_94 (average_attendance INTEGER, season VARCHAR)"}, {"answer": "SELECT total_attendance FROM table_name_80 WHERE average_attendance < 4850 AND sport = \"rink hockey\"", "question": "What's the total attendance in rink hockey when the average attendance was smaller than 4850?", "context": "CREATE TABLE table_name_80 (total_attendance VARCHAR, average_attendance VARCHAR, sport VARCHAR)"}, {"answer": "SELECT average_attendance FROM table_name_75 WHERE total_attendance = \"2268508\"", "question": "What's the average attendance of the league with a total attendance of 2268508?", "context": "CREATE TABLE table_name_75 (average_attendance VARCHAR, total_attendance VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_1 WHERE pts_game > 4 AND nation = \"england\" AND games < 5", "question": "Can you tell me the average Points that has a Pts/game larger than 4, and the Nation of england, and the Games smaller than 5?", "context": "CREATE TABLE table_name_1 (points INTEGER, games VARCHAR, pts_game VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(pts_game) FROM table_name_98 WHERE games > 6", "question": "Can you tell me the lowest Pts/game that has the Games larger than 6?", "context": "CREATE TABLE table_name_98 (pts_game INTEGER, games INTEGER)"}, {"answer": "SELECT MIN(pts_game) FROM table_name_59 WHERE name = \"philippa tuttiett\" AND points > 6", "question": "Can you tell me the lowest Pts/game that has the Name of philippa tuttiett, and the Points larger then 6?", "context": "CREATE TABLE table_name_59 (pts_game INTEGER, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_96 WHERE pts_game > 1.4 AND points = 20 AND name = \"susan day\"", "question": "Can you tell me the lowest Games that has the Pts/game larger than 1.4 and the Points of 20, and the Name of susan day?", "context": "CREATE TABLE table_name_96 (games INTEGER, name VARCHAR, pts_game VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_name_14 WHERE series__number = 10", "question": "What was the lowest production code value in series #10?", "context": "CREATE TABLE table_name_14 (production_code INTEGER, series__number VARCHAR)"}, {"answer": "SELECT absorb__nm_ FROM table_name_40 WHERE color = \"orange\"", "question": "What is the Absorbtion (in nanometers) of the color Orange?", "context": "CREATE TABLE table_name_40 (absorb__nm_ VARCHAR, color VARCHAR)"}, {"answer": "SELECT absorb__nm_ FROM table_name_59 WHERE color = \"violet\" AND emit__nm_ = \"432\"", "question": "What is the Absorbtion (in nanometers) of the color Violet with an emission of 432 nm?", "context": "CREATE TABLE table_name_59 (absorb__nm_ VARCHAR, color VARCHAR, emit__nm_ VARCHAR)"}, {"answer": "SELECT emit__nm_ FROM table_name_6 WHERE absorb__nm_ = \"593\"", "question": "Which Emission (in nanometers) has an absorbtion of 593 nm?", "context": "CREATE TABLE table_name_6 (emit__nm_ VARCHAR, absorb__nm_ VARCHAR)"}, {"answer": "SELECT emit__nm_ FROM table_name_86 WHERE mass__g_mol_ = \"1078\"", "question": "Which Emission (in nanometers) that has a molar mass of 1078 g/mol?", "context": "CREATE TABLE table_name_86 (emit__nm_ VARCHAR, mass__g_mol_ VARCHAR)"}, {"answer": "SELECT \u03b5__m__1_cm__1__ FROM table_name_79 WHERE mass__g_mol_ = \"1008\"", "question": "Which \u03b5 (M -1 cm -1) has a molar mass of 1008 g/mol?", "context": "CREATE TABLE table_name_79 (\u03b5__m__1_cm__1__ VARCHAR, mass__g_mol_ VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_87 WHERE home_team = \"fitzroy\"", "question": "What was the away team that played against Fitzroy?", "context": "CREATE TABLE table_name_87 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE home_team = \"essendon\"", "question": "On what date was the Essendon home match?", "context": "CREATE TABLE table_name_66 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE competition = \"friendly\"", "question": "On what Date did the friendly Competition take place?", "context": "CREATE TABLE table_name_49 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_92 WHERE game_site = \"hoosier dome\"", "question": "What was the Attendance of the Game at Hoosier Dome?", "context": "CREATE TABLE table_name_92 (attendance VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT result FROM table_name_29 WHERE game_site = \"the meadowlands\" AND date = \"1991-09-01\"", "question": "What was the Result of the Game at the Meadowlands on 1991-09-01?", "context": "CREATE TABLE table_name_29 (result VARCHAR, game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_70 WHERE week = 17", "question": "What was the Attendance in Week 17?", "context": "CREATE TABLE table_name_70 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE date = \"1991-10-13\"", "question": "Which Opponent was played on 1991-10-13?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT number FROM table_name_77 WHERE position = \"k\"", "question": "What is the number for the player that has a k position?", "context": "CREATE TABLE table_name_77 (number VARCHAR, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_53 WHERE score = \"4-0\" AND competition = \"friendly\"", "question": "What is the venue for the friendly competition and score of 4-0?", "context": "CREATE TABLE table_name_53 (venue VARCHAR, score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE date = \"7 may 2000\"", "question": "Name the score for 7 may 2000", "context": "CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE competition = \"uncaf nations cup 2009\"", "question": "Name the date of the uncaf nations cup 2009", "context": "CREATE TABLE table_name_91 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE attendance > 19 OFFSET 600", "question": "What date were there more than 19,600 people in attendance?", "context": "CREATE TABLE table_name_49 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT crowd FROM table_name_12 WHERE home_team = \"st kilda\"", "question": "During st kilda's home game, what was the number of people in the crowd?", "context": "CREATE TABLE table_name_12 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_89 WHERE constructor = \"source:\"", "question": "What's the time/retired for constructor source:?", "context": "CREATE TABLE table_name_89 (time_retired VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT laps FROM table_name_71 WHERE driver = \"luca badoer\"", "question": "How many laps does luca badoer have?", "context": "CREATE TABLE table_name_71 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_98 WHERE grid = \"14\"", "question": "What's the time/retired for a grid of 14?", "context": "CREATE TABLE table_name_98 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT laps FROM table_name_67 WHERE time_retired = \"+1 lap\" AND driver = \"jean-christophe boullion\"", "question": "How many laps does jean-christophe boullion have with a time/retired of +1 lap?", "context": "CREATE TABLE table_name_67 (laps VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_name_51 WHERE driver = \"roberto moreno\"", "question": "How many laps does roberto moreno have?", "context": "CREATE TABLE table_name_51 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT grid FROM table_name_93 WHERE laps = \"2\"", "question": "What grid has 2 laps?", "context": "CREATE TABLE table_name_93 (grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE venue = \"windy hill\"", "question": "On what date was a game played at Windy Hill?", "context": "CREATE TABLE table_name_6 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_52 WHERE away_team = \"south melbourne\"", "question": "Where does South Melbourne play?", "context": "CREATE TABLE table_name_52 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_10 WHERE away_team = \"richmond\"", "question": "Where did Richmond play?", "context": "CREATE TABLE table_name_10 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_90 WHERE venue = \"western oval\"", "question": "Which Team plays at Western Oval?", "context": "CREATE TABLE table_name_90 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_92 WHERE home_team = \"collingwood\"", "question": "What is the average crowd attendance for Collingwood?", "context": "CREATE TABLE table_name_92 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_97 WHERE opponent_in_final = \"aliz\u00e9 cornet janette hus\u00e1rov\u00e1\"", "question": "Name the outcome for aliz\u00e9 cornet janette hus\u00e1rov\u00e1 being opponent in final", "context": "CREATE TABLE table_name_97 (outcome VARCHAR, opponent_in_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_56 WHERE opponent_in_final = \"nina bratchikova kathrin w\u00f6rle\"", "question": "Name the outcome that had an opponent in final of nina bratchikova kathrin w\u00f6rle", "context": "CREATE TABLE table_name_56 (outcome VARCHAR, opponent_in_final VARCHAR)"}, {"answer": "SELECT partner FROM table_name_94 WHERE date = \"14 april 2013\"", "question": "Which partner was on 14 april 2013?", "context": "CREATE TABLE table_name_94 (partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT grid FROM table_name_58 WHERE laps < 80 AND driver = \"bruce mclaren\"", "question": "When laps are less than 80 and Bruce mclaren is the driver, what is the grid?", "context": "CREATE TABLE table_name_58 (grid VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_27 WHERE grid > 19", "question": "What driver has a grid greater than 19?", "context": "CREATE TABLE table_name_27 (driver VARCHAR, grid INTEGER)"}, {"answer": "SELECT laps FROM table_name_87 WHERE constructor = \"brm\" AND driver = \"richard attwood\"", "question": "When the driver richard attwood has a constructor of brm, what is the number of laps?", "context": "CREATE TABLE table_name_87 (laps VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_55 WHERE laps < 3", "question": "What is the average grid for the competitiors who had laps smaller than 3?", "context": "CREATE TABLE table_name_55 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT AVG(grid) FROM table_name_79 WHERE time_retired = \"+17.276\" AND laps > 22", "question": "What is the average grid for competitors who had more than 22 laps and time/retired of +17.276?", "context": "CREATE TABLE table_name_79 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_27 WHERE time_retired = \"+28.108\" AND grid > 11", "question": "What was the average amount of laps for competitors with a grid that was more than 11 and a Time/Retired of +28.108?", "context": "CREATE TABLE table_name_27 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_17 WHERE venue = \"princes park\"", "question": "What was the away team that played at Princes Park?", "context": "CREATE TABLE table_name_17 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_97 WHERE venue = \"princes park\"", "question": "What was the away team that played at Princes Park?", "context": "CREATE TABLE table_name_97 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_59 WHERE away_team = \"essendon\"", "question": "In what venue was the hosted away team Essendon?", "context": "CREATE TABLE table_name_59 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_86 WHERE venue = \"mcg\"", "question": "Who was the home team at MCG?", "context": "CREATE TABLE table_name_86 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_74 WHERE date = \"december 27\"", "question": "I want to know the final score for december 27", "context": "CREATE TABLE table_name_74 (final_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_96 WHERE date = \"january 9\" AND host_team = \"cincinnati bengals\"", "question": "Tell me the final score for january 9 for cincinnati bengals", "context": "CREATE TABLE table_name_96 (final_score VARCHAR, date VARCHAR, host_team VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_57 WHERE stadium = \"giants stadium\" AND visiting_team = \"cincinnati bengals\"", "question": "Tell me the host team for giants stadium and visiting of cincinnati bengals", "context": "CREATE TABLE table_name_57 (host_team VARCHAR, stadium VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE visiting_team = \"pittsburgh steelers\"", "question": "Tell me the date for pittsburgh steelers", "context": "CREATE TABLE table_name_16 (date VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_59 WHERE date = \"october 4\"", "question": "Tell me the visiting team for october 4", "context": "CREATE TABLE table_name_59 (visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_32 WHERE visiting_team = \"tennessee titans\"", "question": "I want to know the stadium for tennessee titans visiting", "context": "CREATE TABLE table_name_32 (stadium VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_44 WHERE laps < 39 AND driver = \"juan manuel fangio\"", "question": "When the driver is Juan Manuel Fangio and laps is less than 39, what is the highest grid?", "context": "CREATE TABLE table_name_44 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_84 WHERE laps > 17 AND grid < 7 AND time_retired = \"+ 1:35.6\"", "question": "When grid is less than 7, laps are greater than 17, and time/retired is + 1:35.6, who is the constructor?", "context": "CREATE TABLE table_name_84 (constructor VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_29 WHERE driver = \"prince bira\"", "question": "What was the smallest grid for Prince bira?", "context": "CREATE TABLE table_name_29 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_52 WHERE goals_for = 22 AND games_played > 8", "question": "How many losses did the team with 22 goals for andmore than 8 games played have?", "context": "CREATE TABLE table_name_52 (losses VARCHAR, goals_for VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT AVG(ties) FROM table_name_21 WHERE wins < 5 AND goals_against > 37 AND games_played < 8", "question": "For teams with fewer than 5 wins, goals against over 37, and fewer than 8 games played, what is the average number of ties?", "context": "CREATE TABLE table_name_21 (ties INTEGER, games_played VARCHAR, wins VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT goals_against FROM table_name_36 WHERE wins = 7", "question": "For teams with 7 wins, what is the number of goals against?", "context": "CREATE TABLE table_name_36 (goals_against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_73 WHERE goals_against = 37 AND ties > 0", "question": "For teams with more than 0 ties and goals against of 37, how many wins were tallied?", "context": "CREATE TABLE table_name_73 (wins INTEGER, goals_against VARCHAR, ties VARCHAR)"}, {"answer": "SELECT year FROM table_name_35 WHERE superlative = \"youngest nominee\"", "question": "What year was the the youngest nominee a winner?", "context": "CREATE TABLE table_name_35 (year VARCHAR, superlative VARCHAR)"}, {"answer": "SELECT actor FROM table_name_22 WHERE year = \"1978\"", "question": "What actor won in 1978?", "context": "CREATE TABLE table_name_22 (actor VARCHAR, year VARCHAR)"}, {"answer": "SELECT notes FROM table_name_99 WHERE year = \"1981\"", "question": "What are the notes in 1981?", "context": "CREATE TABLE table_name_99 (notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_13 WHERE superlative = \"oldest winner\"", "question": "In what year had the oldest winner?", "context": "CREATE TABLE table_name_13 (year VARCHAR, superlative VARCHAR)"}, {"answer": "SELECT year FROM table_name_73 WHERE actor = \"richard farnsworth\"", "question": "What year did actor Richard Farnsworth get nominated for an award?", "context": "CREATE TABLE table_name_73 (year VARCHAR, actor VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_74 WHERE laps = 42 AND grid = 4", "question": "Tell me the time/retired for Laps of 42 and Grids of 4", "context": "CREATE TABLE table_name_74 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_59 WHERE laps = 10", "question": "I want the driver that has Laps of 10", "context": "CREATE TABLE table_name_59 (driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT position FROM table_name_56 WHERE club_province = \"perpignan\"", "question": "What is the position of Perpignan?", "context": "CREATE TABLE table_name_56 (position VARCHAR, club_province VARCHAR)"}, {"answer": "SELECT player FROM table_name_74 WHERE caps > 12 AND club_province = \"toulouse\"", "question": "Which player has a cap larger than 12 and Clubs of Toulouse?", "context": "CREATE TABLE table_name_74 (player VARCHAR, caps VARCHAR, club_province VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_85 WHERE caps = 32", "question": "What is the birthday of caps of 32?", "context": "CREATE TABLE table_name_85 (date_of_birth__age_ VARCHAR, caps VARCHAR)"}, {"answer": "SELECT result FROM table_name_20 WHERE score = \"0-2\"", "question": "What is the result when the score is 0-2?", "context": "CREATE TABLE table_name_20 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(goal) FROM table_name_61 WHERE competition = \"euro 2012 q\" AND score = \"3-0\"", "question": "How many goals when the score is 3-0 in the euro 2012 q?", "context": "CREATE TABLE table_name_61 (goal VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT driver FROM table_name_59 WHERE grid = 9", "question": "I want the driver for grid of 9", "context": "CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT school FROM table_name_94 WHERE position = \"quarterback\"", "question": "Which school has a quarterback?", "context": "CREATE TABLE table_name_94 (school VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_92 WHERE pick = \"242\"", "question": "In which round is pick number 242?", "context": "CREATE TABLE table_name_92 (round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_16 WHERE player = \"tom morris\"", "question": "Which round was Tom Morris picked in?", "context": "CREATE TABLE table_name_16 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick FROM table_name_38 WHERE school = \"clemson\"", "question": "What pick did Clemson choose?", "context": "CREATE TABLE table_name_38 (pick VARCHAR, school VARCHAR)"}, {"answer": "SELECT la_crescenta__montrose FROM table_name_71 WHERE tujunga = \"moderate\"", "question": "When Tujunga is moderate, what is La Crescenta-Montrose?", "context": "CREATE TABLE table_name_71 (la_crescenta__montrose VARCHAR, tujunga VARCHAR)"}, {"answer": "SELECT la_ca\u00f1ada_flintridge FROM table_name_58 WHERE tujunga = \"7%\"", "question": "What is the percentage of La Canada Flintridge when Tujunga is 7%?", "context": "CREATE TABLE table_name_58 (la_ca\u00f1ada_flintridge VARCHAR, tujunga VARCHAR)"}, {"answer": "SELECT la_crescenta__montrose FROM table_name_25 WHERE pasadena = \"10%\"", "question": "When Pasadena is at 10%, what is La Crescenta-Montrose?", "context": "CREATE TABLE table_name_25 (la_crescenta__montrose VARCHAR, pasadena VARCHAR)"}, {"answer": "SELECT tujunga FROM table_name_85 WHERE la_crescenta__montrose = \"66%\"", "question": "When La Crescenta-Montrose has 66%, what is Tujunga?", "context": "CREATE TABLE table_name_85 (tujunga VARCHAR, la_crescenta__montrose VARCHAR)"}, {"answer": "SELECT tujunga FROM table_name_39 WHERE pasadena = \"134,941\"", "question": "What is the figure for Tujunga when Pasadena is 134,941?", "context": "CREATE TABLE table_name_39 (tujunga VARCHAR, pasadena VARCHAR)"}, {"answer": "SELECT la_ca\u00f1ada_flintridge FROM table_name_65 WHERE pasadena = \"34\"", "question": "What is the figure for La Canada Flintridge when Pasadena is 34?", "context": "CREATE TABLE table_name_65 (la_ca\u00f1ada_flintridge VARCHAR, pasadena VARCHAR)"}, {"answer": "SELECT member_senator FROM table_name_4 WHERE first_elected = 2002 AND district > 41", "question": "Who was firest elected in 2002 in a district larger than 41?", "context": "CREATE TABLE table_name_4 (member_senator VARCHAR, first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_name_26 WHERE member_senator = \"ulysses currie\"", "question": "What district for ulysses currie?", "context": "CREATE TABLE table_name_26 (district VARCHAR, member_senator VARCHAR)"}, {"answer": "SELECT venue FROM table_name_75 WHERE away_team = \"geelong\"", "question": "Where did Geelong play as the away team?", "context": "CREATE TABLE table_name_75 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_94 WHERE home_team = \"hawthorn\"", "question": "What was Hawthorn's score as the home team?", "context": "CREATE TABLE table_name_94 (home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_18 WHERE home_team = \"south melbourne\"", "question": "Who was South Melbourne's away opponents?", "context": "CREATE TABLE table_name_18 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_58 WHERE runner_s__up = \"steve stricker\"", "question": "In which year is the highest for runner-up Steve Stricker?", "context": "CREATE TABLE table_name_58 (year INTEGER, runner_s__up VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_29 WHERE draws < 7 AND goals_for < 61 AND goals_against < 48 AND position = 5", "question": "Which Played has Draws smaller than 7, and Goals for smaller than 61, and Goals against smaller than 48, and a Position of 5?", "context": "CREATE TABLE table_name_29 (played INTEGER, position VARCHAR, goals_against VARCHAR, draws VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(goals_against) FROM table_name_97 WHERE played > 34", "question": "How many Goals against have Played more than 34?", "context": "CREATE TABLE table_name_97 (goals_against VARCHAR, played INTEGER)"}, {"answer": "SELECT MIN(losses) FROM table_name_83 WHERE goal_difference = -16 AND wins < 8", "question": "Which Losses have a Goal Difference of -16, and less than 8 wins?", "context": "CREATE TABLE table_name_83 (losses INTEGER, goal_difference VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_33 WHERE goal_difference > 0 AND goals_against > 40 AND position < 6 AND club = \"sd indauchu\"", "question": "Which Wins have a Goal Difference larger than 0, and Goals against larger than 40, and a Position smaller than 6, and a Club of sd indauchu?", "context": "CREATE TABLE table_name_33 (wins INTEGER, club VARCHAR, position VARCHAR, goal_difference VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT place FROM table_name_84 WHERE player = \"mark brooks\"", "question": "What place did player mark brooks take?", "context": "CREATE TABLE table_name_84 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_66 WHERE place = \"t5\"", "question": "What was the To par of the golfer that placed t5?", "context": "CREATE TABLE table_name_66 (to_par VARCHAR, place VARCHAR)"}, {"answer": "SELECT player FROM table_name_96 WHERE score = 70", "question": "Which player had a score of 70?", "context": "CREATE TABLE table_name_96 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(score) FROM table_name_51 WHERE place = \"t5\" AND player = \"brandt jobe\"", "question": "What was the highest score of t5 place finisher brandt jobe?", "context": "CREATE TABLE table_name_51 (score INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT event FROM table_name_39 WHERE total = \"defending champion\"", "question": "Which event had a total of defending champion?", "context": "CREATE TABLE table_name_39 (event VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_63 WHERE attendance = \"74,347\"", "question": "How many weeks was there an attendance of 74,347?", "context": "CREATE TABLE table_name_63 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_72 WHERE attendance = \"74,162\"", "question": "What is the latest week with an attendance of 74,162?", "context": "CREATE TABLE table_name_72 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_41 WHERE attendance = \"57,331\"", "question": "Who is the opponent when the attendance is 57,331?", "context": "CREATE TABLE table_name_41 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE attendance = \"74,285\"", "question": "What day was the attendance 74,285?", "context": "CREATE TABLE table_name_98 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_36 WHERE week = 16", "question": "What was the result for week 16?", "context": "CREATE TABLE table_name_36 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_65 WHERE date < 1998 AND tournament = \"bucharest, romania\"", "question": "Who are the Opponents in the final prior to 1998 in the Bucharest, Romania Tournament?", "context": "CREATE TABLE table_name_65 (opponents_in_the_final VARCHAR, date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT official_name FROM table_name_46 WHERE area_km_2 = 750.51", "question": "Which parish has an area of 750.51?", "context": "CREATE TABLE table_name_46 (official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT COUNT(area_km_2) FROM table_name_16 WHERE census_ranking = \"1,871 of 5,008\" AND population > 1 OFFSET 172", "question": "What is the area of the parish with a population larger than 1,172 and a census ranking of 1,871 of 5,008?", "context": "CREATE TABLE table_name_16 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR)"}, {"answer": "SELECT appeared_on_album FROM table_name_90 WHERE position < 7", "question": "When the position is less than 7, what is the appeared on album?", "context": "CREATE TABLE table_name_90 (appeared_on_album VARCHAR, position INTEGER)"}, {"answer": "SELECT AVG(position) FROM table_name_96 WHERE year > 1996", "question": "After 1996, what is the average position?", "context": "CREATE TABLE table_name_96 (position INTEGER, year INTEGER)"}, {"answer": "SELECT to_par FROM table_name_87 WHERE place = \"t4\" AND player = \"wayne grady\"", "question": "Which To par has a Place of t4, and wayne grady is in?", "context": "CREATE TABLE table_name_87 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_3 WHERE country = \"england\" AND score > 66", "question": "Name the Place of england with a Score larger than 66?", "context": "CREATE TABLE table_name_3 (place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_40 WHERE country = \"united states\" AND player = \"tom watson\"", "question": "Name the Score united states of tom watson in united state?", "context": "CREATE TABLE table_name_40 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_98 WHERE to_par = \"\u20132\" AND country = \"united states\"", "question": "Who has a To par of \u20132, and a Country of united states?", "context": "CREATE TABLE table_name_98 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT time FROM table_name_40 WHERE grid > 2 AND laps = 20 AND rider = \"max biaggi\"", "question": "What is the time of Max Biaggi with more than 2 grids, 20 laps?", "context": "CREATE TABLE table_name_40 (time VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time FROM table_name_96 WHERE grid < 8 AND rider = \"troy bayliss\"", "question": "What is the time of Troy Bayliss with less than 8 grids?", "context": "CREATE TABLE table_name_96 (time VARCHAR, grid VARCHAR, rider VARCHAR)"}, {"answer": "SELECT torque FROM table_name_91 WHERE model = \"s63 amg ('01)\"", "question": "Which Torque has a Model of s63 amg ('01)?", "context": "CREATE TABLE table_name_91 (torque VARCHAR, model VARCHAR)"}, {"answer": "SELECT engine FROM table_name_71 WHERE model = \"s430\"", "question": "Which Engine has a Model of s430?", "context": "CREATE TABLE table_name_71 (engine VARCHAR, model VARCHAR)"}, {"answer": "SELECT engine FROM table_name_87 WHERE model = \"s320 cdi\"", "question": "Which Engine has a Model of s320 cdi?", "context": "CREATE TABLE table_name_87 (engine VARCHAR, model VARCHAR)"}, {"answer": "SELECT division_southwest FROM table_name_4 WHERE division_north = \"mad\u017eari solidarnost\"", "question": "Who won Division Southwest when Mad\u017eari Solidarnost won Division North?", "context": "CREATE TABLE table_name_4 (division_southwest VARCHAR, division_north VARCHAR)"}, {"answer": "SELECT division_west FROM table_name_69 WHERE division_north = \"alumina\"", "question": "Who won Division West when Division North was won by Alumina?", "context": "CREATE TABLE table_name_69 (division_west VARCHAR, division_north VARCHAR)"}, {"answer": "SELECT division_north FROM table_name_75 WHERE division_southwest = \"novaci\" AND division_west = \"vrap\u010di\u0161te\"", "question": "Who won Division North when Division Southwest was won by Novaci and Division West by Vrap\u010di\u0161te?", "context": "CREATE TABLE table_name_75 (division_north VARCHAR, division_southwest VARCHAR, division_west VARCHAR)"}, {"answer": "SELECT division_southwest FROM table_name_44 WHERE division_north = \"lepenec\" AND division_south = \"11 oktomvri\"", "question": "Who won Division Southwest when the winner of Division North was Lepenec and Division South was won by 11 Oktomvri?", "context": "CREATE TABLE table_name_44 (division_southwest VARCHAR, division_north VARCHAR, division_south VARCHAR)"}, {"answer": "SELECT SUM(minutes) FROM table_name_73 WHERE rank > 7 AND club = \"real madrid\"", "question": "What are the minutes of the Player from Real Madrid Club with a Rank of 7 or larger?", "context": "CREATE TABLE table_name_73 (minutes INTEGER, rank VARCHAR, club VARCHAR)"}, {"answer": "SELECT award FROM table_name_21 WHERE category = \"best actress\"", "question": "For what award was there a nomination for Best Actress?", "context": "CREATE TABLE table_name_21 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT year FROM table_name_19 WHERE nominated = \"teen angels 2\"", "question": "What year was Teen Angels 2 nominated?", "context": "CREATE TABLE table_name_19 (year VARCHAR, nominated VARCHAR)"}, {"answer": "SELECT year FROM table_name_73 WHERE category = \"revelation\"", "question": "What year saw an award in the category of Revelation?", "context": "CREATE TABLE table_name_73 (year VARCHAR, category VARCHAR)"}, {"answer": "SELECT nominated FROM table_name_60 WHERE award = \"capif award\"", "question": "Name the performance nominated for a Capif Award.", "context": "CREATE TABLE table_name_60 (nominated VARCHAR, award VARCHAR)"}, {"answer": "SELECT category FROM table_name_21 WHERE nominated = \"herself\"", "question": "In what category was Herself nominated?", "context": "CREATE TABLE table_name_21 (category VARCHAR, nominated VARCHAR)"}, {"answer": "SELECT year FROM table_name_36 WHERE award = \"kids' choice awards argentina\" AND category = \"best actress\"", "question": "What year was there a nomination for Best Actress at the Kids' Choice Awards Argentina?", "context": "CREATE TABLE table_name_36 (year VARCHAR, award VARCHAR, category VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_97 WHERE goal_difference > -3 AND goals_against = 30 AND points > 45", "question": "What is the average Draws, when Goal Difference is greater than -3, when Goals Against is 30, and when Points is greater than 45?", "context": "CREATE TABLE table_name_97 (draws INTEGER, points VARCHAR, goal_difference VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_32 WHERE club = \"burgos cf\" AND draws < 7", "question": "What is the average Played, when Club is \"Burgos CF\", and when Draws is less than 7?", "context": "CREATE TABLE table_name_32 (played INTEGER, club VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(goals_against) FROM table_name_74 WHERE club = \"pontevedra cf\" AND played < 38", "question": "What is the highest Goals Against, when Club is \"Pontevedra CF\", and when Played is less than 38?", "context": "CREATE TABLE table_name_74 (goals_against INTEGER, club VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(score) FROM table_name_97 WHERE place = \"t2\" AND player = \"steve flesch\"", "question": "What is T2 Place Player Steve Flesch's Score?", "context": "CREATE TABLE table_name_97 (score INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_16 WHERE score = 67", "question": "What is the Place of the Player with a Score of 67?", "context": "CREATE TABLE table_name_16 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_10 WHERE year < 1991 AND time > 10.29 AND competition = \"mediterranean games\" AND event = \"4x100 m relay\"", "question": "What Venue has a Year smaller than 1991, Time larger than 10.29, Competition of mediterranean games, and Event of 4x100 m relay?", "context": "CREATE TABLE table_name_10 (venue VARCHAR, event VARCHAR, competition VARCHAR, year VARCHAR, time VARCHAR)"}, {"answer": "SELECT event FROM table_name_34 WHERE position = \"1st\" AND year = 1983 AND venue = \"budapest\"", "question": "What Event has a Position of 1st, a Year of 1983, and a Venue of budapest?", "context": "CREATE TABLE table_name_34 (event VARCHAR, venue VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT position FROM table_name_52 WHERE time = 20.66", "question": "What Position has a Time of 20.66?", "context": "CREATE TABLE table_name_52 (position VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(time) FROM table_name_89 WHERE year = 1991 AND event = \"4x100 m relay\"", "question": "What is the greatest Time with a Year of 1991, and Event of 4x100 m relay?", "context": "CREATE TABLE table_name_89 (time INTEGER, year VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE runner_up = \"shaun murphy\"", "question": "When was the match that had Shaun Murphy as runner-up?", "context": "CREATE TABLE table_name_31 (date VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT winner FROM table_name_63 WHERE runner_up = \"john higgins\"", "question": "Who was the winner in the match that had John Higgins as runner-up?", "context": "CREATE TABLE table_name_63 (winner VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT pronunciation_spelled_free FROM table_name_8 WHERE pronunciation_spelled_checked = \"\u028f\"", "question": "What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is \"\u028f\"?", "context": "CREATE TABLE table_name_8 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR)"}, {"answer": "SELECT pronunciation_spelled_free FROM table_name_2 WHERE pronunciation_spelled_checked = \"\u025b\"", "question": "What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is \"\u025b\"?", "context": "CREATE TABLE table_name_2 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR)"}, {"answer": "SELECT pronunciation_spelled_free FROM table_name_24 WHERE pronunciation_spelled_checked = \"\u0251\"", "question": "What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is \"\u0251\"?", "context": "CREATE TABLE table_name_24 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR)"}, {"answer": "SELECT MAX(ties) FROM table_name_56 WHERE gp > 5", "question": "What was the largest tie when the G.P was more than 5?", "context": "CREATE TABLE table_name_56 (ties INTEGER, gp INTEGER)"}, {"answer": "SELECT MAX(attendance) FROM table_name_47 WHERE opponent = \"at kansas city chiefs\"", "question": "What is the highest number in attendance against the game at Kansas City Chiefs?", "context": "CREATE TABLE table_name_47 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_32 WHERE opponent = \"kansas city chiefs\" AND week < 13", "question": "What is the attendance for the game against the Kansas City Chiefs earlier than week 13?", "context": "CREATE TABLE table_name_32 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_64 WHERE week > 13", "question": "What is the result later than week 13?", "context": "CREATE TABLE table_name_64 (result VARCHAR, week INTEGER)"}, {"answer": "SELECT MIN(to_par) FROM table_name_8 WHERE player = \"gary player\" AND total > 145", "question": "What is the lowest To par of gary player, with more than 145 total?", "context": "CREATE TABLE table_name_8 (to_par INTEGER, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_66 WHERE goals_against < 30 AND goals_for > 25 AND draws > 5", "question": "How many Wins have Goals against smaller than 30, and Goals for larger than 25, and Draws larger than 5?", "context": "CREATE TABLE table_name_66 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_44 WHERE points = 30 AND goals_against < 33", "question": "How many Draws have 30 Points, and less than 33 Goals against?", "context": "CREATE TABLE table_name_44 (draws VARCHAR, points VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_91 WHERE goal_difference > 12 AND club = \"granada cf\" AND played > 30", "question": "Which Wins have a Goal Difference larger than 12, and a Club of granada cf, and Played larger than 30?", "context": "CREATE TABLE table_name_91 (wins INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_40 WHERE club = \"atl\u00e9tico ceuta\" AND losses < 11", "question": "Which Played has a Club of atl\u00e9tico ceuta, and less than 11 Losses?", "context": "CREATE TABLE table_name_40 (played INTEGER, club VARCHAR, losses VARCHAR)"}, {"answer": "SELECT place FROM table_name_85 WHERE to_par = \"e\"", "question": "What is the place number for the player with a To Par score of 'E'?", "context": "CREATE TABLE table_name_85 (place VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_76 WHERE country = \"south africa\"", "question": "What is the To Par score for the player from South Africa?", "context": "CREATE TABLE table_name_76 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_50 WHERE to_par = \"+7\" AND country = \"scotland\"", "question": "Which player from Scotland has a To Par score of +7?", "context": "CREATE TABLE table_name_50 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_86 WHERE country = \"australia\" AND player = \"craig parry\"", "question": "Player Craig Parry of Australia is in what place number?", "context": "CREATE TABLE table_name_86 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_49 WHERE place = \"t2\" AND country = \"united states\"", "question": "Which player from the United States is in a place of T2?", "context": "CREATE TABLE table_name_49 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE to_par = \"+7\" AND player = \"david frost\"", "question": "For the match in which player David Frost scored a To Par of +7, what was the final score?", "context": "CREATE TABLE table_name_94 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(to_par) FROM table_name_44 WHERE player = \"tom watson\" AND total > 144", "question": "What was Tom Watson's lowest To par when the total was larger than 144?", "context": "CREATE TABLE table_name_44 (to_par INTEGER, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT total FROM table_name_75 WHERE country = \"england\"", "question": "What was England's total?", "context": "CREATE TABLE table_name_75 (total VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_9 WHERE to_par < 9 AND year_s__won = \"1985\"", "question": "What player had a To par smaller than 9 and won in 1985?", "context": "CREATE TABLE table_name_9 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT seat_percentage FROM table_name_73 WHERE vote_percentage = \"2.4% (-8.3)\"", "question": "What is the seat percentage when vote percentage is 2.4% (-8.3)?", "context": "CREATE TABLE table_name_73 (seat_percentage VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT calorie FROM table_name_64 WHERE watt_hour = \"1\"", "question": "How many calories is 1 watt hour?", "context": "CREATE TABLE table_name_64 (calorie VARCHAR, watt_hour VARCHAR)"}, {"answer": "SELECT electronvolt FROM table_name_44 WHERE joule = \"3,600\"", "question": "How many electronvolts is 3,600 joules?", "context": "CREATE TABLE table_name_44 (electronvolt VARCHAR, joule VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_81 WHERE winner = \"johnathan gray\"", "question": "What is the total number of Year, when Winner is \"Johnathan Gray\"?", "context": "CREATE TABLE table_name_81 (year VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_name_16 WHERE college = \"kentucky\"", "question": "What is Winner, when College is \"Kentucky\"?", "context": "CREATE TABLE table_name_16 (winner VARCHAR, college VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_83 WHERE sport = \"basketball\" AND winner = \"dwight howard\"", "question": "What is Hometown, when Sport is \"Basketball\", and when Winner is \"Dwight Howard\"?", "context": "CREATE TABLE table_name_83 (hometown VARCHAR, sport VARCHAR, winner VARCHAR)"}, {"answer": "SELECT duration FROM table_name_68 WHERE wins < 53", "question": "What is the Duration for less than 53 consecutive wins?", "context": "CREATE TABLE table_name_68 (duration VARCHAR, wins INTEGER)"}, {"answer": "SELECT COUNT(wins) FROM table_name_97 WHERE defeated_by = \"toda\"", "question": "How many wins were held before being defeated by toda?", "context": "CREATE TABLE table_name_97 (wins VARCHAR, defeated_by VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_9 WHERE name = \"curtis davies\" AND ends > 2012", "question": "What is the greatest goals for Curtis Davies if ends is greater than 2012?", "context": "CREATE TABLE table_name_9 (goals INTEGER, name VARCHAR, ends VARCHAR)"}, {"answer": "SELECT SUM(ends) FROM table_name_70 WHERE transfer_fee = \"\u00a38.5m\"", "question": "When the transfer fee is \u00a38.5m, what is the total ends?", "context": "CREATE TABLE table_name_70 (ends INTEGER, transfer_fee VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE latin_commander = \"henry i\" AND battle = \"battle of boruy\"", "question": "On what Date was Henry I Latin Commander of the Battle of Boruy?", "context": "CREATE TABLE table_name_67 (date VARCHAR, latin_commander VARCHAR, battle VARCHAR)"}, {"answer": "SELECT latin_commander FROM table_name_88 WHERE battle = \"siege of constantinople\"", "question": "Who is the Latin Commander of the Siege of Constantinople?", "context": "CREATE TABLE table_name_88 (latin_commander VARCHAR, battle VARCHAR)"}, {"answer": "SELECT result FROM table_name_3 WHERE latin_commander = \"boniface of montferrat\"", "question": "What is the Result of the battle with Latin Commander Boniface of Montferrat?", "context": "CREATE TABLE table_name_3 (result VARCHAR, latin_commander VARCHAR)"}, {"answer": "SELECT battle FROM table_name_21 WHERE bulgarian_commander = \"ivan asen ii\"", "question": "What is the Battle with Bulgarian Commander Ivan Asen II?", "context": "CREATE TABLE table_name_21 (battle VARCHAR, bulgarian_commander VARCHAR)"}, {"answer": "SELECT bulgarian_commander FROM table_name_39 WHERE battle = \"battle of rusion\"", "question": "What is the Bulgarian Commander of the Battle of Rusion?", "context": "CREATE TABLE table_name_39 (bulgarian_commander VARCHAR, battle VARCHAR)"}, {"answer": "SELECT type FROM table_name_63 WHERE rite = \"albanian\"", "question": "What is Type for Rite Albanian?", "context": "CREATE TABLE table_name_63 (type VARCHAR, rite VARCHAR)"}, {"answer": "SELECT MIN(area__km_2__) FROM table_name_47 WHERE type = \"apostolic administration\"", "question": "What Area (km 2) is lowest with a type being Apostolic Administration?", "context": "CREATE TABLE table_name_47 (area__km_2__ INTEGER, type VARCHAR)"}, {"answer": "SELECT ecclesiastical_province FROM table_name_21 WHERE type = \"diocese\" AND latin_name = \"alexiensis\"", "question": "What Ecclesiastical Province has a type diocese and a latin name alexiensis?", "context": "CREATE TABLE table_name_21 (ecclesiastical_province VARCHAR, type VARCHAR, latin_name VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_52 WHERE player = \"sam snead\"", "question": "What's the money that Sam Snead won?", "context": "CREATE TABLE table_name_52 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(to_par) FROM table_name_16 WHERE player = \"craig wood\"", "question": "What was the total To Par for Craig Wood?", "context": "CREATE TABLE table_name_16 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE place = \"t9\" AND player = \"harold mcspaden\"", "question": "What was the score for t9 place for Harold Mcspaden?", "context": "CREATE TABLE table_name_9 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_58 WHERE player = \"sam snead\"", "question": "What was the country for Sam Snead?", "context": "CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_23 WHERE ribbon < 9.8 AND total = 19.2", "question": "What place had a ribbon below 9.8 and a 19.2 total?", "context": "CREATE TABLE table_name_23 (place INTEGER, ribbon VARCHAR, total VARCHAR)"}, {"answer": "SELECT natural_change FROM table_name_88 WHERE crude_death_rate__per_1000_ > 9 AND deaths = \"40 399\"", "question": "Which Natural change has a Crude death rate (per 1000) larger than 9, and Deaths of 40 399?", "context": "CREATE TABLE table_name_88 (natural_change VARCHAR, crude_death_rate__per_1000_ VARCHAR, deaths VARCHAR)"}, {"answer": "SELECT SUM(season) FROM table_name_46 WHERE average_attendance_league = 2.456", "question": "How many season have an average attendance league of 2.456?", "context": "CREATE TABLE table_name_46 (season INTEGER, average_attendance_league VARCHAR)"}, {"answer": "SELECT venue FROM table_name_63 WHERE against > 19", "question": "Which venue has more than 19 against?", "context": "CREATE TABLE table_name_63 (venue VARCHAR, against INTEGER)"}, {"answer": "SELECT COUNT(against) FROM table_name_20 WHERE status = \"first test\"", "question": "How many against have a status of first test?", "context": "CREATE TABLE table_name_20 (against VARCHAR, status VARCHAR)"}, {"answer": "SELECT venue FROM table_name_38 WHERE date = \"2001-05-05\"", "question": "What is the Venue of the Competition on 2001-05-05?", "context": "CREATE TABLE table_name_38 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE score = \"1-0\" AND competition = \"fifa world cup\"", "question": "What is the Date of the Fifa World Cup with a Score of 1-0?", "context": "CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_46 WHERE location = \"riverfront stadium\" AND opponent = \"miami dolphins\"", "question": "What was the result of the game against the Miami Dolphins held at the Riverfront Stadium?", "context": "CREATE TABLE table_name_46 (result VARCHAR, location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_3 WHERE opponent = \"houston oilers\"", "question": "What was the location of the game against the Houston Oilers?", "context": "CREATE TABLE table_name_3 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_77 WHERE location = \"riverfront stadium\" AND week = \"8\"", "question": "What was the result of the game at the Riverfront Stadium after week 8?", "context": "CREATE TABLE table_name_77 (result VARCHAR, location VARCHAR, week VARCHAR)"}, {"answer": "SELECT 1880 FROM table_name_19 WHERE 1860 = \"n/a\" AND 1910 = 494", "question": "What is the 1880 figure when 1860 is N/A and 1910 is 494?", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT competition FROM table_name_63 WHERE date = \"october 11, 2006\"", "question": "Which competition took place on October 11, 2006?", "context": "CREATE TABLE table_name_63 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE venue = \"amman\" AND competition = \"friendly\" AND date = \"february 14, 2006\"", "question": "What was the score of the friendly match at Amman on February 14, 2006?", "context": "CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR, venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_35 WHERE date = \"august 17, 1999\"", "question": "Where did Ra'fat Ali play on August 17, 1999?", "context": "CREATE TABLE table_name_35 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_22 WHERE score = 71 - 69 - 71 = 211", "question": "What was the place when the score was 71-69-71=211?", "context": "CREATE TABLE table_name_22 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE country = \"australia\" AND player = \"peter lonard\"", "question": "What was Australia's score when Peter Lonard played?", "context": "CREATE TABLE table_name_6 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_68 WHERE score = 71 - 69 - 71 = 211", "question": "What player scored 71-69-71=211?", "context": "CREATE TABLE table_name_68 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE player = \"peter lonard\"", "question": "What was the score for Peter Lonard?", "context": "CREATE TABLE table_name_97 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_28 WHERE score = 68 - 75 - 68 = 211", "question": "What was the place when the score was 68-75-68=211?", "context": "CREATE TABLE table_name_28 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_4 WHERE date = \"november 26\"", "question": "What was the Venue on November 26?", "context": "CREATE TABLE table_name_4 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE home_team = \"san francisco 49ers\" AND result = \"30-10\"", "question": "What was the Venue of the San Francisco 49ers Home game with a Result of 30-10?", "context": "CREATE TABLE table_name_89 (venue VARCHAR, home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE date = \"october 3\"", "question": "What is the Result of the game on October 3?", "context": "CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_58 WHERE year = 2009 AND home_team = \"st. louis rams\"", "question": "What is the Venue of the 2009 St. Louis Rams Home game?", "context": "CREATE TABLE table_name_58 (venue VARCHAR, year VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE visiting_team = \"san francisco 49ers\" AND year > 2007", "question": "What Date after 2007 had the San Francisco 49ers as the Visiting Team?", "context": "CREATE TABLE table_name_17 (date VARCHAR, visiting_team VARCHAR, year VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_19 WHERE 2008 = \"wta premier 5 tournaments\"", "question": "What is 2004, when 2008 is \"WTA Premier 5 Tournaments\"?", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_82 WHERE 2009 = \"1\"", "question": "What is 2010, when 2009 is \"1\"?", "context": "CREATE TABLE table_name_82 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_31 WHERE 2005 = \"not tier i\"", "question": "What is 2004, when 2005 is \"Not Tier I\"?", "context": "CREATE TABLE table_name_31 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_27 WHERE tournament = \"madrid\"", "question": "What is 2007, when Tournament is \"Madrid\"?", "context": "CREATE TABLE table_name_27 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_19 WHERE 2006 = \"a\" AND 2008 = \"a\" AND tournament = \"rome\"", "question": "What is 2011, when 2006 is \"A\", when 2008 is \"A\", and when Tournament is \"Rome\"?", "context": "CREATE TABLE table_name_19 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_49 WHERE 2010 = \"wta premier 5 tournaments\"", "question": "What is 2011, when 2010 is \"WTA Premier 5 Tournaments\"?", "context": "CREATE TABLE table_name_49 (Id VARCHAR)"}, {"answer": "SELECT name FROM table_name_83 WHERE weight = \"kg (lb)\" AND club = \"gezira\" AND date_of_birth = \"1974-02-18\"", "question": "What is Name, when Weight is \"kg (lb)\", when Club is \"Gezira\", and when Date of Birth is \"1974-02-18\"?", "context": "CREATE TABLE table_name_83 (name VARCHAR, date_of_birth VARCHAR, weight VARCHAR, club VARCHAR)"}, {"answer": "SELECT pos FROM table_name_45 WHERE height = \"m (ft 10in)\" AND date_of_birth = \"1983-05-29\"", "question": "What is Pos., when Height is \"m (ft 10in)\", and when Date of Birth is \"1983-05-29\"?", "context": "CREATE TABLE table_name_45 (pos VARCHAR, height VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT weight FROM table_name_86 WHERE club = \"maadi\"", "question": "What is Weight, when Club is \"Maadi\"?", "context": "CREATE TABLE table_name_86 (weight VARCHAR, club VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_31 WHERE height = \"head coach: adel shamala\"", "question": "What is Date of Birth, when Height is \"Head Coach: Adel Shamala\"?", "context": "CREATE TABLE table_name_31 (date_of_birth VARCHAR, height VARCHAR)"}, {"answer": "SELECT weight FROM table_name_35 WHERE club = \"ahly\" AND name = \"ragy abdel hady\"", "question": "What is Weight, when Club is \"Ahly\", and when Name is \"Ragy Abdel Hady\"?", "context": "CREATE TABLE table_name_35 (weight VARCHAR, club VARCHAR, name VARCHAR)"}, {"answer": "SELECT series_1 FROM table_name_13 WHERE series_11 = \"peter jones\"", "question": "Which Series 1 has a Series 11 of peter jones?", "context": "CREATE TABLE table_name_13 (series_1 VARCHAR, series_11 VARCHAR)"}, {"answer": "SELECT series_2 FROM table_name_35 WHERE series_3 = \"deborah meaden\"", "question": "Which Series 2 has a Series 3 of deborah meaden?", "context": "CREATE TABLE table_name_35 (series_2 VARCHAR, series_3 VARCHAR)"}, {"answer": "SELECT COUNT(seat_order__right_to_left_) FROM table_name_83 WHERE series_3 = \"deborah meaden\"", "question": "How many Seat Orders (Right to Left) have a Series 3 of deborah meaden?", "context": "CREATE TABLE table_name_83 (seat_order__right_to_left_ VARCHAR, series_3 VARCHAR)"}, {"answer": "SELECT country FROM table_name_90 WHERE score = 66 - 72 = 138", "question": "The player for which country had a score of 66-72=138?", "context": "CREATE TABLE table_name_90 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_68 WHERE country = \"united states\" AND player = \"tiger woods\"", "question": "In what place was Tiger Woods of the United States?", "context": "CREATE TABLE table_name_68 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_73 WHERE score = 68 - 71 = 139", "question": "What was the TO par for the player who scored 68-71=139?", "context": "CREATE TABLE table_name_73 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_82 WHERE score = 68 - 69 = 137", "question": "What was the TO par for the player who scored 68-69=137?", "context": "CREATE TABLE table_name_82 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT party FROM table_name_59 WHERE district = \"illinois 13\"", "question": "What is Illinois 13 District's Party?", "context": "CREATE TABLE table_name_59 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_name_36 WHERE results = \"re-elected\" AND incumbent = \"jerry costello\"", "question": "What is re-elected Incumbent Jerry Costello's First elected date?", "context": "CREATE TABLE table_name_36 (first_elected INTEGER, results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_name_37 WHERE first_elected = 1996 AND district = \"illinois 19\"", "question": "What is the Party of District of Illinois 19 with an Incumbent First elected in 1996?", "context": "CREATE TABLE table_name_37 (party VARCHAR, first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_60 WHERE 2000 = \"a\"", "question": "What is Tournament, when 2000 is \"A\"?", "context": "CREATE TABLE table_name_60 (tournament VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_26 WHERE 1997 = \"3r\" AND 1992 = \"a\"", "question": "What is 1998, when 1997 is \"3R\", and when 1992 is \"A\"?", "context": "CREATE TABLE table_name_26 (Id VARCHAR)"}, {"answer": "SELECT 1992 FROM table_name_74 WHERE 1999 = \"year-end championship\"", "question": "What is 1992, when 1999 is \"Year-End Championship\"?", "context": "CREATE TABLE table_name_74 (Id VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_89 WHERE 1998 = \"f\" AND 2002 = \"2r\"", "question": "What is 2005, when 1998 is \"F\", and when 2002 is \"2R\"?", "context": "CREATE TABLE table_name_89 (Id VARCHAR)"}, {"answer": "SELECT british FROM table_name_88 WHERE examples = \"exit\"", "question": "Which British has Examples of exit?", "context": "CREATE TABLE table_name_88 (british VARCHAR, examples VARCHAR)"}, {"answer": "SELECT australian FROM table_name_61 WHERE british = \"\u0252s\"", "question": "Which Australian has British of \u0252s?", "context": "CREATE TABLE table_name_61 (australian VARCHAR, british VARCHAR)"}, {"answer": "SELECT examples FROM table_name_10 WHERE australian = \"\u0259m\"", "question": "Which Examples has Australian of \u0259m?", "context": "CREATE TABLE table_name_10 (examples VARCHAR, australian VARCHAR)"}, {"answer": "SELECT american FROM table_name_62 WHERE british = \"\u025bm\"", "question": "Which American has British of \u025bm?", "context": "CREATE TABLE table_name_62 (american VARCHAR, british VARCHAR)"}, {"answer": "SELECT ending FROM table_name_49 WHERE british = \"iz\" AND examples = \"achilles, appendices, f\u00e6ces\"", "question": "Which Ending has British of iz, and Examples of achilles, appendices, f\u00e6ces?", "context": "CREATE TABLE table_name_49 (ending VARCHAR, british VARCHAR, examples VARCHAR)"}, {"answer": "SELECT COUNT(first_year) FROM table_name_18 WHERE displacement_cc > 4719 AND engine = \"v8\" AND power_hp__kw_ = \"335 (246)\" AND model = \"ghibli ss\"", "question": "What is the total number of First Year, when Displacement CC is greater than 4719, when Engine is V8, when Power HP (kW) is \"335 (246)\", and when Model is \"Ghibli SS\"?", "context": "CREATE TABLE table_name_18 (first_year VARCHAR, model VARCHAR, power_hp__kw_ VARCHAR, displacement_cc VARCHAR, engine VARCHAR)"}, {"answer": "SELECT MIN(first_year) FROM table_name_15 WHERE model = \"quattroporte (2.8)\"", "question": "What is the lowest First Year, when Model is \"Quattroporte (2.8)\"?", "context": "CREATE TABLE table_name_15 (first_year INTEGER, model VARCHAR)"}, {"answer": "SELECT power_hp__kw_ FROM table_name_60 WHERE first_year > 1965 AND distribution = \"international\" AND engine = \"v6 biturbo\" AND model = \"425\"", "question": "What is Power HP (kW), when First Year is greater than 1965, when Distribution is \"International\", when Engine is V6 Biturbo, and when Model is \"425\"?", "context": "CREATE TABLE table_name_60 (power_hp__kw_ VARCHAR, model VARCHAR, engine VARCHAR, first_year VARCHAR, distribution VARCHAR)"}, {"answer": "SELECT competition FROM table_name_72 WHERE date = \"january 11, 1996\" AND venue = \"san diego , united states\"", "question": "What is Competition, when Date is \"January 11, 1996\", when Venue is \"San Diego , United States\"?", "context": "CREATE TABLE table_name_72 (competition VARCHAR, date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_22 WHERE venue = \"riyadh, saudi arabia\" AND result = \"win\"", "question": "What is Score, when Venue is Riyadh, Saudi Arabia, and when Result is \"Win\"?", "context": "CREATE TABLE table_name_22 (score VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_58 WHERE date = \"june 11, 1994\" AND venue = \"miami, united states\"", "question": "What is Result, when Date is \"June 11, 1994\", and when Venue is \"Miami, United States\"?", "context": "CREATE TABLE table_name_58 (result VARCHAR, date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_35 WHERE date = \"january 6, 1995\"", "question": "What is Venue, when Date is \"January 6, 1995\"?", "context": "CREATE TABLE table_name_35 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE date = \"june 8, 1996\"", "question": "What is Score, when Date is \"June 8, 1996\"?", "context": "CREATE TABLE table_name_31 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(total_pld) FROM table_name_14 WHERE team = \"arsenal\"", "question": "What is the total number of PLD for Team Arsenal?", "context": "CREATE TABLE table_name_14 (total_pld VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(total_pts) FROM table_name_24 WHERE total_pld < 38", "question": "What is the total number of points for a total pld less than 38?", "context": "CREATE TABLE table_name_24 (total_pts VARCHAR, total_pld INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_86 WHERE score = \"3\u20132\" AND attendance > 17 OFFSET 398", "question": "How many Points have a Score of 3\u20132, and an Attendance larger than 17,398?", "context": "CREATE TABLE table_name_86 (points INTEGER, score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE loss = \"hiller (22\u201315\u20131)\"", "question": "Which score has a Loss of hiller (22\u201315\u20131)?", "context": "CREATE TABLE table_name_12 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_38 WHERE record = \"41\u201332\u20136\"", "question": "Which Loss has a Record of 41\u201332\u20136?", "context": "CREATE TABLE table_name_38 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_60 WHERE points > 90", "question": "Which Attendance has more than 90 points?", "context": "CREATE TABLE table_name_60 (attendance VARCHAR, points INTEGER)"}, {"answer": "SELECT date FROM table_name_95 WHERE record = \"41\u201332\u20136\"", "question": "On what date was the Record 41\u201332\u20136?", "context": "CREATE TABLE table_name_95 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_33 WHERE penalties = 1 AND conversions > 20", "question": "How many ties did he have when he had 1 penalties and more than 20 conversions?", "context": "CREATE TABLE table_name_33 (drawn INTEGER, penalties VARCHAR, conversions VARCHAR)"}, {"answer": "SELECT MIN(penalties) FROM table_name_45 WHERE points_total = 1419 AND played > 98", "question": "What is the least number of penalties he got when his point total was over 1419 in more than 98 games?", "context": "CREATE TABLE table_name_45 (penalties INTEGER, points_total VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(fatalities) FROM table_name_62 WHERE aircraft_type = \"lockheed l-1049g\"", "question": "How many fatalities shows for the lockheed l-1049g?", "context": "CREATE TABLE table_name_62 (fatalities INTEGER, aircraft_type VARCHAR)"}, {"answer": "SELECT AVG(people_on_board) FROM table_name_48 WHERE airline = \"iberia\" AND aircraft_type = \"lockheed l-1049g\"", "question": "What is the number of people on board at Iberia Airline, with the aircraft type of lockheed l-1049g?", "context": "CREATE TABLE table_name_48 (people_on_board INTEGER, airline VARCHAR, aircraft_type VARCHAR)"}, {"answer": "SELECT AVG(fatalities) FROM table_name_67 WHERE airline = \"spantax\" AND registration = \"ec-arz\"", "question": "How many fatalities are there for the airline of spantax, with a registration of ec-arz?", "context": "CREATE TABLE table_name_67 (fatalities INTEGER, airline VARCHAR, registration VARCHAR)"}, {"answer": "SELECT end_of_term FROM table_name_89 WHERE age_at_inauguration = \"78years, 160days\"", "question": "What is the End of term of the President with an Age at inauguration of 78years, 160days?", "context": "CREATE TABLE table_name_89 (end_of_term VARCHAR, age_at_inauguration VARCHAR)"}, {"answer": "SELECT length_of_retirement FROM table_name_51 WHERE age_at_inauguration = \"70years, 53days\"", "question": "What is the Length of retirement of the President with an Age at inauguration of 70years, 53days?", "context": "CREATE TABLE table_name_51 (length_of_retirement VARCHAR, age_at_inauguration VARCHAR)"}, {"answer": "SELECT date_of_inauguration FROM table_name_10 WHERE age_at_inauguration = \"73years, 262days\"", "question": "What is the Date of inauguration of the President with an Age at inauguration of 73years, 262days?", "context": "CREATE TABLE table_name_10 (date_of_inauguration VARCHAR, age_at_inauguration VARCHAR)"}, {"answer": "SELECT player FROM table_name_88 WHERE country = \"australia\"", "question": "Which player is from Australia?", "context": "CREATE TABLE table_name_88 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_58 WHERE to_par = \"+14\"", "question": "Who has the highest total and a to par of +14?", "context": "CREATE TABLE table_name_58 (total INTEGER, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_37 WHERE total = 282", "question": "Which country had a total of 282?", "context": "CREATE TABLE table_name_37 (country VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_84 WHERE player = \"greg norman\"", "question": "What country is Greg Norman from?", "context": "CREATE TABLE table_name_84 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_48 WHERE country = \"australia\"", "question": "What is Australia's to par?", "context": "CREATE TABLE table_name_48 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(total__kg_) FROM table_name_48 WHERE clean_ & _jerk < 153 AND snatch < 100", "question": "Which Total (kg) has a Clean & Jerk smaller than 153, and a Snatch smaller than 100?", "context": "CREATE TABLE table_name_48 (total__kg_ INTEGER, snatch VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT competition_or_tour FROM table_name_73 WHERE ground = \"hr\" AND opponent = \"nordsj\u00e6lland\"", "question": "In which competition or tour was nordsj\u00e6lland the opponent with a hr Ground?", "context": "CREATE TABLE table_name_73 (competition_or_tour VARCHAR, ground VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT name FROM table_name_87 WHERE apps = 118", "question": "What name has 118 as the apps?", "context": "CREATE TABLE table_name_87 (name VARCHAR, apps VARCHAR)"}, {"answer": "SELECT judge FROM table_name_42 WHERE state = \"sd\"", "question": "Who was the judge for the state SD?", "context": "CREATE TABLE table_name_42 (judge VARCHAR, state VARCHAR)"}, {"answer": "SELECT status FROM table_name_87 WHERE against > 20 AND date = \"18/11/1995\"", "question": "What's the status with an against over 20 on 18/11/1995?", "context": "CREATE TABLE table_name_87 (status VARCHAR, against VARCHAR, date VARCHAR)"}, {"answer": "SELECT status FROM table_name_35 WHERE date = \"16/12/1995\"", "question": "What's the status on 16/12/1995?", "context": "CREATE TABLE table_name_35 (status VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE status = \"1995 rugby world cup\" AND against = 20", "question": "What date has a status of 1995 rugby world cup and an against of 20?", "context": "CREATE TABLE table_name_21 (date VARCHAR, status VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_6 WHERE status = \"five nations\" AND venue = \"twickenham, london\" AND opposing_teams = \"scotland\"", "question": "What's the total against for opposing team scotland at twickenham, london venue with a status of five nations?", "context": "CREATE TABLE table_name_6 (against VARCHAR, opposing_teams VARCHAR, status VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE status = \"test match\" AND opposing_teams = \"south africa\"", "question": "When was the status test match with an opposing team of south africa?", "context": "CREATE TABLE table_name_77 (date VARCHAR, status VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_4 WHERE silver = 4 AND bronze > 4", "question": "What is the fewest gold medals for the nation with 4 silvers and more than 4 bronze?", "context": "CREATE TABLE table_name_4 (gold INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_57 WHERE gold < 1 AND total < 1", "question": "How many silver medals for the nation with fewer than 1 golds and total less than 1?", "context": "CREATE TABLE table_name_57 (silver VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_24 WHERE result = \"not nominated\" AND film_title_used_in_nomination = \"in the navel of the sea\"", "question": "What is the year when not nominated was the result, and In the Navel of the Sea was the film title used in nomination?", "context": "CREATE TABLE table_name_24 (year__ceremony_ VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT director FROM table_name_61 WHERE film_title_used_in_nomination = \"small voices\"", "question": "Who was the director of Small Voices, a film title used in nomination?", "context": "CREATE TABLE table_name_61 (director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT director FROM table_name_51 WHERE result = \"not nominated\" AND original_title = \"bayan ko: kapit sa patalim\"", "question": "Which director had not nominated as a result, and had Bayan Ko: Kapit Sa Patalim as an original title?", "context": "CREATE TABLE table_name_51 (director VARCHAR, result VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_62 WHERE original_title = \"ganito kami noon, paano kayo ngayon\"", "question": "What is the ceremony year when Ganito Kami Noon, Paano Kayo Ngayon was the original title?", "context": "CREATE TABLE table_name_62 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE home_team = \"afc hornchurch\"", "question": "What was the score for home team AFC Hornchurch?", "context": "CREATE TABLE table_name_74 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_69 WHERE finish = \"1\"", "question": "What player has 1 as the place?", "context": "CREATE TABLE table_name_69 (player VARCHAR, finish VARCHAR)"}, {"answer": "SELECT country FROM table_name_94 WHERE total > 270 AND player = \"sandy lyle\"", "question": "What country has a total greater than 270, with sandy lyle as the player?", "context": "CREATE TABLE table_name_94 (country VARCHAR, total VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_85 WHERE finish = \"t6\"", "question": "How many totals have t6 as the finish?", "context": "CREATE TABLE table_name_85 (total INTEGER, finish VARCHAR)"}, {"answer": "SELECT player FROM table_name_93 WHERE total = 289", "question": "What player has 289 as the total?", "context": "CREATE TABLE table_name_93 (player VARCHAR, total VARCHAR)"}, {"answer": "SELECT local_networked FROM table_name_1 WHERE ad_freq = \"15 minutes\"", "question": "What is the local/network with an Ad frequency of 15 minutes?", "context": "CREATE TABLE table_name_1 (local_networked VARCHAR, ad_freq VARCHAR)"}, {"answer": "SELECT ad_freq FROM table_name_28 WHERE show_name = \"off the bench\"", "question": "What is the ad frequency for the Show Off The Bench?", "context": "CREATE TABLE table_name_28 (ad_freq VARCHAR, show_name VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_10 WHERE category = \"stacy\" AND awards = \"best reality star in social media\"", "question": "What year has Stacy as the category and award of Best Reality Star in Social Media?", "context": "CREATE TABLE table_name_10 (year INTEGER, category VARCHAR, awards VARCHAR)"}, {"answer": "SELECT result FROM table_name_51 WHERE category = \"stacy\" AND year > 2008 AND awards = \"jahat\"", "question": "What was the result in the year greaters than 2008 with an award of Jahat and had a category of Stacy?", "context": "CREATE TABLE table_name_51 (result VARCHAR, awards VARCHAR, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT awards FROM table_name_35 WHERE year > 2009 AND competition = \"digi wwwow awards\"", "question": "What award was in the year after 2009 with a competition of Digi Wwwow Awards?", "context": "CREATE TABLE table_name_35 (awards VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_30 WHERE competition = \"anugerah bintang popular berita harian 23\"", "question": "What was the year that had Anugerah Bintang Popular Berita Harian 23 as competition?", "context": "CREATE TABLE table_name_30 (year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT round FROM table_name_55 WHERE opponent = \"watford\"", "question": "What round was the game against Watford?", "context": "CREATE TABLE table_name_55 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_44 WHERE venue = \"n\" AND result = \"5-1\"", "question": "What round was the game with a result of 5-1 at N venue?", "context": "CREATE TABLE table_name_44 (round VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_94 WHERE result = \"5-1\"", "question": "What is the highest attendance at a game with a result of 5-1?", "context": "CREATE TABLE table_name_94 (attendance INTEGER, result VARCHAR)"}, {"answer": "SELECT country FROM table_name_99 WHERE date = \"december 8, 1968\"", "question": "What was the nationality of the winner on December 8, 1968?", "context": "CREATE TABLE table_name_99 (country VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE edition = \"48th\"", "question": "On what date was the 48th Edition raced?", "context": "CREATE TABLE table_name_43 (date VARCHAR, edition VARCHAR)"}, {"answer": "SELECT country FROM table_name_90 WHERE edition = \"42nd\"", "question": "What was the nationality of the winner of the 42nd Edition?", "context": "CREATE TABLE table_name_90 (country VARCHAR, edition VARCHAR)"}, {"answer": "SELECT country FROM table_name_84 WHERE edition = \"20th\"", "question": "What was the nationality of the winner for the 20th Edition?", "context": "CREATE TABLE table_name_84 (country VARCHAR, edition VARCHAR)"}, {"answer": "SELECT winner FROM table_name_58 WHERE edition = \"23rd\"", "question": "Who was the winner of the 23rd Edition?", "context": "CREATE TABLE table_name_58 (winner VARCHAR, edition VARCHAR)"}, {"answer": "SELECT report FROM table_name_8 WHERE date = \"1 september\"", "question": "Who reported the game played on 1 september?", "context": "CREATE TABLE table_name_8 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_name_67 WHERE date = \"6 october\"", "question": "Who reported the game on 6 october?", "context": "CREATE TABLE table_name_67 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_19 WHERE date = \"20 may\"", "question": "Where was the game played on 20 may?", "context": "CREATE TABLE table_name_19 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE date = \"1 september\"", "question": "What was the score of the game on 1 september?", "context": "CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE label = \"total holocaust records\" AND format = \"ed remaster cassette\"", "question": "Which date has Total Holocaust records in the ed Remaster cassette format?", "context": "CREATE TABLE table_name_85 (date VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT country FROM table_name_43 WHERE date = \"2004\" AND catalog_nr = \"thr-048\"", "question": "Which country has the catalog nr of thr-048 in 2004?", "context": "CREATE TABLE table_name_43 (country VARCHAR, date VARCHAR, catalog_nr VARCHAR)"}, {"answer": "SELECT country FROM table_name_97 WHERE label = \"debemur morti prod.\"", "question": "What country is the Debemur Morti prod. label from?", "context": "CREATE TABLE table_name_97 (country VARCHAR, label VARCHAR)"}, {"answer": "SELECT sales_total FROM table_name_30 WHERE chart = \"oricon monthly albums chart\"", "question": "Which Sales Total has a Chart of oricon monthly albums chart?", "context": "CREATE TABLE table_name_30 (sales_total VARCHAR, chart VARCHAR)"}, {"answer": "SELECT chart FROM table_name_68 WHERE peak_position = 1", "question": "Which Chart has a Peak Position of 1?", "context": "CREATE TABLE table_name_68 (chart VARCHAR, peak_position VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE record = \"1-3\"", "question": "When has a Record of 1-3?", "context": "CREATE TABLE table_name_7 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_74 WHERE home = \"chicago black hawks\" AND date = \"april 20\"", "question": "Name the Visitor that has a Home of chicago black hawks on april 20?", "context": "CREATE TABLE table_name_74 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_61 WHERE record = \"0-1\"", "question": "Which Score has a Record of 0-1?", "context": "CREATE TABLE table_name_61 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE record = \"1-4\"", "question": "Which Date has a Record of 1-4?", "context": "CREATE TABLE table_name_34 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_45 WHERE date = \"april 22\"", "question": "Which Home is on april 22?", "context": "CREATE TABLE table_name_45 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE visitor = \"buffalo sabres\" AND record = \"1-3\"", "question": "Which Score has a Visitor of buffalo sabres and a Record of 1-3?", "context": "CREATE TABLE table_name_48 (score VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_64 WHERE date = \"february 26\"", "question": "What is the Record of the February 26 date?", "context": "CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_47 WHERE date = \"february 10\"", "question": "What is the Record from February 10?", "context": "CREATE TABLE table_name_47 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE home = \"chicago black hawks\" AND visitor = \"vancouver canucks\" AND date = \"november 17\"", "question": "What is the Score of the Chicago Black Hawks Home game with the Visiting Vancouver Canucks on November 17?", "context": "CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT service_name FROM table_name_60 WHERE owner = \"utv\"", "question": "What Service Name has UTV as the owner?", "context": "CREATE TABLE table_name_60 (service_name VARCHAR, owner VARCHAR)"}, {"answer": "SELECT download FROM table_name_55 WHERE catch_up_period = \"varies\"", "question": "What is the download of the varies catch-up period?", "context": "CREATE TABLE table_name_55 (download VARCHAR, catch_up_period VARCHAR)"}, {"answer": "SELECT catch_up_period FROM table_name_30 WHERE owner = \"utv\"", "question": "What is the Catch-up period for UTV?", "context": "CREATE TABLE table_name_30 (catch_up_period VARCHAR, owner VARCHAR)"}, {"answer": "SELECT service_name FROM table_name_53 WHERE owner = \"bbc\"", "question": "What is the Service name of BBC?", "context": "CREATE TABLE table_name_53 (service_name VARCHAR, owner VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_15 WHERE byes < 0", "question": "What is the lowest number of wins where the byes are less than 0?", "context": "CREATE TABLE table_name_15 (wins INTEGER, byes INTEGER)"}, {"answer": "SELECT MIN(wins) FROM table_name_27 WHERE losses > 12 AND draws < 0", "question": "What is the lowest number of wins where the losses are more than 12 and the draws are less than 0?", "context": "CREATE TABLE table_name_27 (wins INTEGER, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_31 WHERE byes < 0", "question": "What is the average of wins when the byes are less than 0?", "context": "CREATE TABLE table_name_31 (wins INTEGER, byes INTEGER)"}, {"answer": "SELECT COUNT(losses) FROM table_name_36 WHERE byes > 0", "question": "What is the total number of losses where the byes were greater than 0?", "context": "CREATE TABLE table_name_36 (losses VARCHAR, byes INTEGER)"}, {"answer": "SELECT MAX(byes) FROM table_name_93 WHERE losses = 9 AND draws < 0", "question": "What is the highest number of byes where the losses were 9 and the draws were less than 0?", "context": "CREATE TABLE table_name_93 (byes INTEGER, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_73 WHERE geelong_dfl = \"bell post hill\" AND draws < 0", "question": "What are the average losses for Geelong DFL of Bell Post Hill where the draws are less than 0?", "context": "CREATE TABLE table_name_73 (losses INTEGER, geelong_dfl VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(yards) FROM table_name_5 WHERE carries < 23 AND team = \"at chi\" AND average < 8.5", "question": "Which Yards have Carries smaller than 23, and a Team of at chi, and an Average smaller than 8.5?", "context": "CREATE TABLE table_name_5 (yards INTEGER, average VARCHAR, carries VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_18 WHERE carries = 19 AND week > 13", "question": "Which Team has 19 Carries, and a Week larger than 13?", "context": "CREATE TABLE table_name_18 (team VARCHAR, carries VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_name_98 WHERE yards > 167 AND team = \"at tb\" AND week > 7", "question": "Which Average has Yards larger than 167, and a Team of at tb, and a Week larger than 7?", "context": "CREATE TABLE table_name_98 (average INTEGER, week VARCHAR, yards VARCHAR, team VARCHAR)"}, {"answer": "SELECT result FROM table_name_17 WHERE attendance = \"57,234\"", "question": "What is the result of the game with 57,234 people in attendance?", "context": "CREATE TABLE table_name_17 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_56 WHERE kickoff_time = \"cbs 1:00pm\" AND week < 8 AND date = \"september 15, 2002\"", "question": "How many people attended the game with a kickoff time of cbs 1:00pm, in a week earlier than 8, on September 15, 2002?", "context": "CREATE TABLE table_name_56 (attendance VARCHAR, date VARCHAR, kickoff_time VARCHAR, week VARCHAR)"}, {"answer": "SELECT kickoff_time FROM table_name_92 WHERE week = 17", "question": "What is the kickoff time for the game in week of 17?", "context": "CREATE TABLE table_name_92 (kickoff_time VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_71 WHERE opponent = \"san diego chargers\"", "question": "What week was the opponent the San Diego Chargers?", "context": "CREATE TABLE table_name_71 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_12 WHERE kickoff_time = \"cbs 1:00pm\" AND attendance = \"60,473\"", "question": "What week number was the kickoff time cbs 1:00pm, with 60,473 people in attendance?", "context": "CREATE TABLE table_name_12 (week VARCHAR, kickoff_time VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT kickoff_time FROM table_name_28 WHERE date = \"november 10, 2002\"", "question": "What is the kickoff time on November 10, 2002?", "context": "CREATE TABLE table_name_28 (kickoff_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT district FROM table_name_31 WHERE college_or_campus_name = \"anna university college of engineering kanchipuram\"", "question": "What District has a College or Campus Name of anna university college of engineering kanchipuram?", "context": "CREATE TABLE table_name_31 (district VARCHAR, college_or_campus_name VARCHAR)"}, {"answer": "SELECT district FROM table_name_24 WHERE location = \"tharamani\"", "question": "What District has a Location of tharamani?", "context": "CREATE TABLE table_name_24 (district VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_81 WHERE college_or_campus_name = \"anna university - tharamani campus\"", "question": "What Location has a College or Campus Name of anna university - tharamani campus?", "context": "CREATE TABLE table_name_81 (location VARCHAR, college_or_campus_name VARCHAR)"}, {"answer": "SELECT weblink FROM table_name_85 WHERE college_or_campus_name = \"anna university college of engineering kanchipuram\"", "question": "What Weblink has a College or Campus Name of anna university college of engineering kanchipuram?", "context": "CREATE TABLE table_name_85 (weblink VARCHAR, college_or_campus_name VARCHAR)"}, {"answer": "SELECT district FROM table_name_53 WHERE location = \"villupuram\"", "question": "What District has a Location of villupuram?", "context": "CREATE TABLE table_name_53 (district VARCHAR, location VARCHAR)"}, {"answer": "SELECT weblink FROM table_name_76 WHERE college_or_campus_name = \"anna university college of engineering tindivanam\"", "question": "What Weblink has a College or Campus Name of anna university college of engineering tindivanam?", "context": "CREATE TABLE table_name_76 (weblink VARCHAR, college_or_campus_name VARCHAR)"}, {"answer": "SELECT super_g FROM table_name_31 WHERE victories = 26 AND country = \"austria\"", "question": "What Super G has Victories of 26, and a Country of austria?", "context": "CREATE TABLE table_name_31 (super_g VARCHAR, victories VARCHAR, country VARCHAR)"}, {"answer": "SELECT super_g FROM table_name_25 WHERE career = \"1980\u20131996\"", "question": "What Super G has a Career of 1980\u20131996?", "context": "CREATE TABLE table_name_25 (super_g VARCHAR, career VARCHAR)"}, {"answer": "SELECT career FROM table_name_6 WHERE parallel = \"\u2013\" AND combined = \"\u2013\" AND giant_slalom = \"5\"", "question": "What Career has a Parallel of \u2013, a Combined of \u2013, and a Giant Slalom of 5?", "context": "CREATE TABLE table_name_6 (career VARCHAR, giant_slalom VARCHAR, parallel VARCHAR, combined VARCHAR)"}, {"answer": "SELECT country FROM table_name_26 WHERE career = \"1989\u20132004\"", "question": "What Country has a Career of 1989\u20132004?", "context": "CREATE TABLE table_name_26 (country VARCHAR, career VARCHAR)"}, {"answer": "SELECT giant_slalom FROM table_name_45 WHERE victories > 27 AND slalom = \"\u2013\" AND career = \"1996\u20132009\"", "question": "What Giant Slalom has Victories larger than 27, a Slalom of \u2013, and a Career of 1996\u20132009?", "context": "CREATE TABLE table_name_45 (giant_slalom VARCHAR, career VARCHAR, victories VARCHAR, slalom VARCHAR)"}, {"answer": "SELECT career FROM table_name_61 WHERE super_g = \"5\" AND combined = \"6\"", "question": "What Career has a Super G of 5, and a Combined of 6?", "context": "CREATE TABLE table_name_61 (career VARCHAR, super_g VARCHAR, combined VARCHAR)"}, {"answer": "SELECT class FROM table_name_32 WHERE year_s__of_manufacture = \"1899\"", "question": "Which Class has a Year(s) of Manufacture of 1899?", "context": "CREATE TABLE table_name_32 (class VARCHAR, year_s__of_manufacture VARCHAR)"}, {"answer": "SELECT year_s__of_manufacture FROM table_name_49 WHERE quantity > 60 AND number_s_ = \"7001\u20137165\"", "question": "Which Year(s) of Manufacture has a Quantity larger than 60, and a Number(s) of 7001\u20137165?", "context": "CREATE TABLE table_name_49 (year_s__of_manufacture VARCHAR, quantity VARCHAR, number_s_ VARCHAR)"}, {"answer": "SELECT MIN(quantity) FROM table_name_87 WHERE type = \"e h4v\" AND year_s__of_manufacture = \"1920\u20131924\"", "question": "Which Quantity has a Type of e h4v, and a Year(s) of Manufacture of 1920\u20131924?", "context": "CREATE TABLE table_name_87 (quantity INTEGER, type VARCHAR, year_s__of_manufacture VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_1 WHERE championship = \"premier league snooker\" AND year < 2010", "question": "What was Shaun Murphy's outcome in the Premier League Snooker championship held before 2010?", "context": "CREATE TABLE table_name_1 (outcome VARCHAR, championship VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_name_33 WHERE home = \"3-1\"", "question": "What league has a 3-1 home?", "context": "CREATE TABLE table_name_33 (league VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_99 WHERE away = \"1-1\" AND season = \"2004-05\"", "question": "What is the home with a 1-1 away in the 2004-05 season?", "context": "CREATE TABLE table_name_99 (home VARCHAR, away VARCHAR, season VARCHAR)"}, {"answer": "SELECT teams FROM table_name_41 WHERE season = \"2006-07\"", "question": "Which teams were in the 2006-07 season?", "context": "CREATE TABLE table_name_41 (teams VARCHAR, season VARCHAR)"}, {"answer": "SELECT league FROM table_name_37 WHERE home = \"0:1\"", "question": "What is the league with a 0:1 home?", "context": "CREATE TABLE table_name_37 (league VARCHAR, home VARCHAR)"}, {"answer": "SELECT season FROM table_name_38 WHERE league = \"regionalliga s\u00fcd\" AND home = \"1-0\" AND away = \"2-3\"", "question": "What season has a regionalliga s\u00fcd league, a 1-0 home, and an away of 2-3?", "context": "CREATE TABLE table_name_38 (season VARCHAR, away VARCHAR, league VARCHAR, home VARCHAR)"}, {"answer": "SELECT season FROM table_name_41 WHERE league = \"regionalliga s\u00fcd (iii)\"", "question": "Which season has the regionalliga s\u00fcd (iii) league?", "context": "CREATE TABLE table_name_41 (season VARCHAR, league VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_71 WHERE bronze = 2 AND rank = 6 AND total > 2", "question": "What is the smallest number of gold of a country of rank 6, with 2 bronzes?", "context": "CREATE TABLE table_name_71 (gold INTEGER, total VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_83 WHERE total > 2 AND gold = 2", "question": "What is the rank of the country with more than 2 medals, and 2 gold medals?", "context": "CREATE TABLE table_name_83 (rank VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_32 WHERE silver > 1", "question": "How many total medals does a country with more than 1 silver medals have?", "context": "CREATE TABLE table_name_32 (total INTEGER, silver INTEGER)"}, {"answer": "SELECT co_contestant__yaar_vs_pyaar_ FROM table_name_90 WHERE main_contestant = \"vishal singh\"", "question": "Who is the co-contestant (yaar vs. Pyaar) with Vishal Singh as the main contestant?", "context": "CREATE TABLE table_name_90 (co_contestant__yaar_vs_pyaar_ VARCHAR, main_contestant VARCHAR)"}, {"answer": "SELECT main_contestant FROM table_name_62 WHERE scores_by_each_individual_judge = 8 + 7 + 7 = 21", "question": "Who is the main contestant with scores by each individual judge of 8 + 7 + 7 = 21?", "context": "CREATE TABLE table_name_62 (main_contestant VARCHAR, scores_by_each_individual_judge VARCHAR)"}, {"answer": "SELECT main_contestant FROM table_name_29 WHERE total_score_week = \"42/60\" AND co_contestant__yaar_vs_pyaar_ = \"tina sachdev\"", "question": "Who is the main contestant with a total score/week of 42/60 and a co-contestant (Yaar vs. Pyaa) of Tina Sachdev?", "context": "CREATE TABLE table_name_29 (main_contestant VARCHAR, total_score_week VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_60 WHERE co_contestant__yaar_vs_pyaar_ = \"tina sachdev\"", "question": "What is Tina Sachdev's position?", "context": "CREATE TABLE table_name_60 (position VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT rank FROM table_name_43 WHERE mountain_peak = \"crested butte pb\"", "question": "Name the Rank of Rank Mountain Peak of crested butte pb?", "context": "CREATE TABLE table_name_43 (rank VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT prominence FROM table_name_81 WHERE mountain_peak = \"matchless mountain pb\"", "question": "Name the Prominence of the Mountain Peak of matchless mountain pb?", "context": "CREATE TABLE table_name_81 (prominence VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT year FROM table_name_63 WHERE nominee = \"mary elizabeth mastrantonio\"", "question": "What year was Mary Elizabeth Mastrantonio nominated?", "context": "CREATE TABLE table_name_63 (year VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT result FROM table_name_90 WHERE category = \"best revival of a musical\"", "question": "What was the result for the nomination of Best Revival of a Musical?", "context": "CREATE TABLE table_name_90 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT nanquan FROM table_name_76 WHERE nandao > 9.49 AND rank = 4", "question": "Which Nanquan has a Nandao larger than 9.49, and a Rank of 4?", "context": "CREATE TABLE table_name_76 (nanquan VARCHAR, nandao VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(nanquan) FROM table_name_27 WHERE nandao < 9.44 AND rank < 9 AND total > 18.68", "question": "Which Nanquan has a Nandao smaller than 9.44, and a Rank smaller than 9, and a Total larger than 18.68?", "context": "CREATE TABLE table_name_27 (nanquan INTEGER, total VARCHAR, nandao VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_75 WHERE winning_team = \"yellow team\" AND event = \"foos it or lose it\"", "question": "How many weeks have a Winning team of yellow team, and an Event of foos it or lose it?", "context": "CREATE TABLE table_name_75 (week INTEGER, winning_team VARCHAR, event VARCHAR)"}, {"answer": "SELECT week FROM table_name_62 WHERE air_date = \"august 2, 2008\"", "question": "Which Week has an Air Date of august 2, 2008?", "context": "CREATE TABLE table_name_62 (week VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT week FROM table_name_73 WHERE air_date = \"august 30, 2008\"", "question": "Which Week has an Air Date of august 30, 2008?", "context": "CREATE TABLE table_name_73 (week VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT winners_club FROM table_name_20 WHERE week = 4.5", "question": "Which Winners club has a Week of 4.5?", "context": "CREATE TABLE table_name_20 (winners_club VARCHAR, week VARCHAR)"}, {"answer": "SELECT winners_club FROM table_name_68 WHERE event = \"hang tight\"", "question": "Which Winners club has an Event of hang tight?", "context": "CREATE TABLE table_name_68 (winners_club VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE tie_no = \"4\"", "question": "on what date was tie number 4?", "context": "CREATE TABLE table_name_80 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_3 WHERE home_team = \"minehead\"", "question": "minehead has what tie number?", "context": "CREATE TABLE table_name_3 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_47 WHERE home_team = \"enfield\"", "question": "what is enfield's tie number?", "context": "CREATE TABLE table_name_47 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT show FROM table_name_15 WHERE network__last_aired_ = \"abc\" AND last_aired > 2002", "question": "What show was played on ABC laster after 2002?", "context": "CREATE TABLE table_name_15 (show VARCHAR, network__last_aired_ VARCHAR, last_aired VARCHAR)"}, {"answer": "SELECT returning FROM table_name_49 WHERE show = \"soul train music awards\"", "question": "When did soul train music awards return?", "context": "CREATE TABLE table_name_49 (returning VARCHAR, show VARCHAR)"}, {"answer": "SELECT returning FROM table_name_13 WHERE last_aired = 2002", "question": "When did a show last aired in 2002 return?", "context": "CREATE TABLE table_name_13 (returning VARCHAR, last_aired VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE past_season = \"2nd\"", "question": "What Venue has a Past Season of 2nd?", "context": "CREATE TABLE table_name_89 (venue VARCHAR, past_season VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_93 WHERE head_coach = \"ali asghar modir roosta\"", "question": "What is the Capacity of the Venue of Head Coach Ali Asghar Modir Roosta?", "context": "CREATE TABLE table_name_93 (capacity INTEGER, head_coach VARCHAR)"}, {"answer": "SELECT SUM(capacity) FROM table_name_34 WHERE head_coach = \"farhad kazemi\"", "question": "What is the Capacity of the Venue of Head Coach Farhad Kazemi?", "context": "CREATE TABLE table_name_34 (capacity INTEGER, head_coach VARCHAR)"}, {"answer": "SELECT COUNT(1991 AS _1992) FROM table_name_57 WHERE team = \"gimnasia de la plata\" AND points > 113", "question": "How much 1991-1992 has a Team of gimnasia de la plata, and more than 113 points?", "context": "CREATE TABLE table_name_57 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT role FROM table_name_22 WHERE pick__number = 10", "question": "What role did Pick # 10 have?", "context": "CREATE TABLE table_name_22 (role VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT employee__real_name_ FROM table_name_94 WHERE pick__number < 6 AND brand__from_ = \"raw\" AND role = \"male wrestler\"", "question": "What is the real name of the male wrestler from Raw with a pick # smaller than 6?", "context": "CREATE TABLE table_name_94 (employee__real_name_ VARCHAR, role VARCHAR, pick__number VARCHAR, brand__from_ VARCHAR)"}, {"answer": "SELECT brand__from_ FROM table_name_5 WHERE pick__number = 3", "question": "Pick # 3 works for which brand?", "context": "CREATE TABLE table_name_5 (brand__from_ VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT employee__real_name_ FROM table_name_67 WHERE pick__number > 9", "question": "What is the real name of the Pick # that is greater than 9?", "context": "CREATE TABLE table_name_67 (employee__real_name_ VARCHAR, pick__number INTEGER)"}, {"answer": "SELECT director FROM table_name_57 WHERE title = \"min dally nseek\" AND result = \"won\"", "question": "Who is the director with the Min Dally Nseek title, and won?", "context": "CREATE TABLE table_name_57 (director VARCHAR, title VARCHAR, result VARCHAR)"}, {"answer": "SELECT survey FROM table_name_57 WHERE title = \"ehsas jdeed\"", "question": "What survey has the Ehsas Jdeed title?", "context": "CREATE TABLE table_name_57 (survey VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_95 WHERE survey = \"murex d'or\" AND year > 2005 AND director = \"said elmarouk\" AND result = \"nominated\"", "question": "What is the title for the Murex D'or survey, after 2005, Said Elmarouk as director, and was nominated?", "context": "CREATE TABLE table_name_95 (title VARCHAR, result VARCHAR, director VARCHAR, survey VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_2 WHERE director = \"said elmarouk\" AND year < 2008", "question": "What is the result for director Said Elmarouk before 2008?", "context": "CREATE TABLE table_name_2 (result VARCHAR, director VARCHAR, year VARCHAR)"}, {"answer": "SELECT week_1 FROM table_name_53 WHERE week_3 = \"candice hunnicutt\"", "question": "What is the week 1 with candice hunnicutt in week 3?", "context": "CREATE TABLE table_name_53 (week_1 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_83 WHERE week_1 = \"daniella mugnolo\"", "question": "What is the week 2 with daniella mugnolo in week 1?", "context": "CREATE TABLE table_name_83 (week_2 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT week_3 FROM table_name_17 WHERE week_2 = \"addison miller\"", "question": "What is the week 3 with addison miller in week 2?", "context": "CREATE TABLE table_name_17 (week_3 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT SUM(first_elected) FROM table_name_37 WHERE party = \"republican\" AND district = \"kentucky 2\"", "question": "In what year was the republican incumbent from Kentucky 2 district first elected?", "context": "CREATE TABLE table_name_37 (first_elected INTEGER, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_89 WHERE position < 15 AND points_1 = \"19 2\" AND goals_against < 65", "question": "What is the average played for entries with fewer than 65 goals against, points 1 of 19 2, and a position higher than 15?", "context": "CREATE TABLE table_name_89 (played INTEGER, goals_against VARCHAR, position VARCHAR, points_1 VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_38 WHERE lost = 13", "question": "What is the lowest drawn for entries with a lost of 13?", "context": "CREATE TABLE table_name_38 (drawn INTEGER, lost VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_45 WHERE points_1 = \"33\" AND goals_against = 45 AND played < 28", "question": "For entries with fewer than 28 played, with 45 goals against and points 1 of 33, what is the average drawn?", "context": "CREATE TABLE table_name_45 (drawn INTEGER, played VARCHAR, points_1 VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_79 WHERE goals_for < 36 AND lost > 21", "question": "For entries with lost larger than 21 and goals for smaller than 36, what is the average drawn?", "context": "CREATE TABLE table_name_79 (drawn INTEGER, goals_for VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_84 WHERE goals_against = 85 AND drawn > 6", "question": "What is the highest goals entry with drawn larger than 6 and goals against 85?", "context": "CREATE TABLE table_name_84 (goals_for INTEGER, goals_against VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_64 WHERE player = \"fredrik jacobson\"", "question": "What is the To Par of Fredrik Jacobson?", "context": "CREATE TABLE table_name_64 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_92 WHERE to_par = \"+1\" AND player = \"davis love iii\"", "question": "What is the Place of Davis Love III with a To Par of +1?", "context": "CREATE TABLE table_name_92 (place VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT start FROM table_name_55 WHERE duration = \"6 months 2 days\"", "question": "Which Start has a Duration of 6 months 2 days?", "context": "CREATE TABLE table_name_55 (start VARCHAR, duration VARCHAR)"}, {"answer": "SELECT duration FROM table_name_84 WHERE defeated_by = \"retired\"", "question": "Which duration was defeated by retired?", "context": "CREATE TABLE table_name_84 (duration VARCHAR, defeated_by VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_45 WHERE defeated_by = \"furuichi\"", "question": "How many wins, on average, were defeated by furuichi?", "context": "CREATE TABLE table_name_45 (wins INTEGER, defeated_by VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_81 WHERE port_fairy_fl = \"port fairy\" AND against > 2333", "question": "How many wins for Port Fairy and against more than 2333?", "context": "CREATE TABLE table_name_81 (wins INTEGER, port_fairy_fl VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_22 WHERE draws < 0", "question": "How many byes when the draws are less than 0?", "context": "CREATE TABLE table_name_22 (byes VARCHAR, draws INTEGER)"}, {"answer": "SELECT MAX(draws) FROM table_name_81 WHERE port_fairy_fl = \"hawkesdale\" AND wins > 9", "question": "How many draws when the Port Fairy FL is Hawkesdale and there are more than 9 wins?", "context": "CREATE TABLE table_name_81 (draws INTEGER, port_fairy_fl VARCHAR, wins VARCHAR)"}, {"answer": "SELECT weight FROM table_name_23 WHERE date_of_birth = \"1981-11-21\"", "question": "What is the weight of the entry that has a date of birth of 1981-11-21?", "context": "CREATE TABLE table_name_23 (weight VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT name FROM table_name_95 WHERE pos = \"d\" AND club = \"circolo nautico posillipo\"", "question": "What is the name of the player from club Circolo Nautico Posillipo and a position of D?", "context": "CREATE TABLE table_name_95 (name VARCHAR, pos VARCHAR, club VARCHAR)"}, {"answer": "SELECT pos FROM table_name_53 WHERE height = \"m (ft 6in)\"", "question": "What is the position of the player with a height of m (ft 6in)?", "context": "CREATE TABLE table_name_53 (pos VARCHAR, height VARCHAR)"}, {"answer": "SELECT player FROM table_name_46 WHERE to_par = \"+8\" AND year_s__won = \"1979\"", "question": "Who won in 1979 with +8 to par?", "context": "CREATE TABLE table_name_46 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_27 WHERE year_s__won = \"1969\"", "question": "What is the average total in 1969?", "context": "CREATE TABLE table_name_27 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE opponent_in_the_final = \"martin spottl\"", "question": "What is the Score of the Tournament with Opponent in the final of Martin Spottl?", "context": "CREATE TABLE table_name_70 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE surface = \"clay\" AND date = \"may 5, 1999\"", "question": "What is the Score of the Tournament played on Clay Surface on May 5, 1999?", "context": "CREATE TABLE table_name_42 (score VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE score = \"6\u20134, 6\u20132\"", "question": "What is the Date of the game with a Score of 6\u20134, 6\u20132?", "context": "CREATE TABLE table_name_26 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_68 WHERE date = \"february 2, 2004\"", "question": "What is the Opponent in the final of the game on february 2, 2004?", "context": "CREATE TABLE table_name_68 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_56 WHERE car__number = 24 AND date = \"august 30\"", "question": "What team ran car #24 on August 30?", "context": "CREATE TABLE table_name_56 (team VARCHAR, car__number VARCHAR, date VARCHAR)"}, {"answer": "SELECT avg_speed FROM table_name_47 WHERE winning_driver = \"tony stewart\" AND make = \"chevrolet impala\"", "question": "What was the average speed of Tony Stewart's winning Chevrolet Impala?", "context": "CREATE TABLE table_name_47 (avg_speed VARCHAR, winning_driver VARCHAR, make VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_58 WHERE nationality = \"switzerland\"", "question": "Which College/junior/club team (league) was the player from Switzerland from?", "context": "CREATE TABLE table_name_58 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT player FROM table_name_68 WHERE position = \"defence\" AND round < 5 AND nationality = \"united states\"", "question": "Which player from the United States plays defence and was chosen before round 5?", "context": "CREATE TABLE table_name_68 (player VARCHAR, nationality VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_67 WHERE year > 1983 AND venue = \"anaheim stadium\" AND result = \"14-28\"", "question": "What's the total attendance at anaheim stadium after 1983 when the result is 14-28?", "context": "CREATE TABLE table_name_67 (attendance VARCHAR, result VARCHAR, year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE tie_no = \"8\"", "question": "What is the score when the tie is 8?", "context": "CREATE TABLE table_name_53 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_76 WHERE away_team = \"liverpool\"", "question": "Who is the home team with Liverpool as the away?", "context": "CREATE TABLE table_name_76 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE tie_no = \"9\"", "question": "What is the score when the tie is 9?", "context": "CREATE TABLE table_name_29 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_50 WHERE country = \"england\"", "question": "What's england's to par?", "context": "CREATE TABLE table_name_50 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_7 WHERE finish = \"t49\"", "question": "What country had a finish of t49?", "context": "CREATE TABLE table_name_7 (country VARCHAR, finish VARCHAR)"}, {"answer": "SELECT country FROM table_name_38 WHERE finish = \"t42\"", "question": "What country had a finish of t42?", "context": "CREATE TABLE table_name_38 (country VARCHAR, finish VARCHAR)"}, {"answer": "SELECT finish FROM table_name_96 WHERE total = 288", "question": "What's the finish for the total 288?", "context": "CREATE TABLE table_name_96 (finish VARCHAR, total VARCHAR)"}, {"answer": "SELECT status FROM table_name_68 WHERE against = 11", "question": "What is the status when the against is 11?", "context": "CREATE TABLE table_name_68 (status VARCHAR, against VARCHAR)"}, {"answer": "SELECT venue FROM table_name_5 WHERE date = \"13/02/1954\"", "question": "What was the venue for the game played on 13/02/1954?", "context": "CREATE TABLE table_name_5 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_96 WHERE against > 3 AND date = \"16/01/1954\"", "question": "What was the venue for the game played on 16/01/1954, when the against was more than 3?", "context": "CREATE TABLE table_name_96 (venue VARCHAR, against VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_51 WHERE venue = \"stade colombes, paris\"", "question": "What is the lowest against for games played in the stade colombes, paris venue?", "context": "CREATE TABLE table_name_51 (against INTEGER, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_72 WHERE against = 11", "question": "In which venue was there an against of 11?", "context": "CREATE TABLE table_name_72 (venue VARCHAR, against VARCHAR)"}, {"answer": "SELECT elector FROM table_name_31 WHERE elevated = \"december 18, 1182\"", "question": "What Elector was Elevated on December 18, 1182?", "context": "CREATE TABLE table_name_31 (elector VARCHAR, elevated VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_50 WHERE elevated = \"september 21, 1179\"", "question": "What is the Elevator of the Elected Elevated on September 21, 1179?", "context": "CREATE TABLE table_name_50 (elevator VARCHAR, elevated VARCHAR)"}, {"answer": "SELECT elector FROM table_name_91 WHERE cardinalatial_title = \"priest of s. sabina and archbishop of reims\"", "question": "Who is the Elector with a Cardinalatial title of Priest of S. Sabina and Archbishop of Reims?", "context": "CREATE TABLE table_name_91 (elector VARCHAR, cardinalatial_title VARCHAR)"}, {"answer": "SELECT elector FROM table_name_31 WHERE elevator = \"alexander iii\" AND cardinalatial_title = \"bishop of palestrina\"", "question": "What Elector has an Elevator of Alexander III and a Cardinalatial title of Bishop of Palestrina?", "context": "CREATE TABLE table_name_31 (elector VARCHAR, elevator VARCHAR, cardinalatial_title VARCHAR)"}, {"answer": "SELECT home__1st_leg_ FROM table_name_70 WHERE aggregate = \"3-4\"", "question": "Which team played their first leg at home with an aggregate score of 3-4?", "context": "CREATE TABLE table_name_70 (home__1st_leg_ VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT country FROM table_name_3 WHERE city = \"haugesund\"", "question": "In what Country is Haugesund?", "context": "CREATE TABLE table_name_3 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT airport FROM table_name_23 WHERE icao = \"ento\"", "question": "What Airport's ICAO is ENTO?", "context": "CREATE TABLE table_name_23 (airport VARCHAR, icao VARCHAR)"}, {"answer": "SELECT iata FROM table_name_12 WHERE country = \"norway\" AND city = \"sandefjord\"", "question": "What is City of Sandefjord in Norway's IATA?", "context": "CREATE TABLE table_name_12 (iata VARCHAR, country VARCHAR, city VARCHAR)"}, {"answer": "SELECT iata FROM table_name_99 WHERE country = \"norway\" AND icao = \"ento\"", "question": "What is th IATA for Norway with an ICAO of ENTO?", "context": "CREATE TABLE table_name_99 (iata VARCHAR, country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT country FROM table_name_67 WHERE icao = \"ekch\"", "question": "What Country has a ICAO of EKCH?", "context": "CREATE TABLE table_name_67 (country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_64 WHERE city = \"oslo\"", "question": "What is the Airport in Oslo?", "context": "CREATE TABLE table_name_64 (airport VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_4 WHERE lost < 25 AND goal_difference = \"+7\" AND played > 34", "question": "How many Drawn have a Lost smaller than 25, and a Goal Difference of +7, and a Played larger than 34?", "context": "CREATE TABLE table_name_4 (drawn VARCHAR, played VARCHAR, lost VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_86 WHERE played > 34", "question": "Which Goals For has a Played larger than 34?", "context": "CREATE TABLE table_name_86 (goals_for INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(position) FROM table_name_2 WHERE goals_against = 47 AND played > 34", "question": "Which Position has 47 Goals Against, and a Played larger than 34?", "context": "CREATE TABLE table_name_2 (position INTEGER, goals_against VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_28 WHERE lost = 12 AND played > 34", "question": "Which Goals For has a Lost of 12, and a Played larger than 34?", "context": "CREATE TABLE table_name_28 (goals_for INTEGER, lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE country = \"taiwan\"", "question": "What did Taiwan score?", "context": "CREATE TABLE table_name_1 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_95 WHERE place = \"t9\" AND player = \"jiyai shin\"", "question": "Which country placed t9 and had the player jiyai shin?", "context": "CREATE TABLE table_name_95 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_78 WHERE score = 69 - 74 = 143 AND country = \"colombia\"", "question": "Who scored 69-74=143 for Colombia?", "context": "CREATE TABLE table_name_78 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_86 WHERE player = \"momoko ueda\"", "question": "What was Momoko Ueda's place?", "context": "CREATE TABLE table_name_86 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_45 WHERE place = \"t5\" AND score = 70 - 72 = 142", "question": "Who placed t5 and had a score of 70-72=142?", "context": "CREATE TABLE table_name_45 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_47 WHERE player = \"david graham\"", "question": "What place is David Graham in?", "context": "CREATE TABLE table_name_47 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(goals_for) FROM table_name_14 WHERE points < 30 AND position < 10 AND goals_against > 57", "question": "What is the sum of the goals with less than 30 points, a position less than 10, and more than 57 goals against?", "context": "CREATE TABLE table_name_14 (goals_for INTEGER, goals_against VARCHAR, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_27 WHERE wins < 12 AND played < 30", "question": "What is the lowest amount of draws with less than 12 wins and less than 30 played?", "context": "CREATE TABLE table_name_27 (draws INTEGER, wins VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_66 WHERE goals_against > 51 AND played < 30", "question": "What is the highest amount of goals with more than 51 goals against and less than 30 played?", "context": "CREATE TABLE table_name_66 (goals_for INTEGER, goals_against VARCHAR, played VARCHAR)"}, {"answer": "SELECT goals_for FROM table_name_97 WHERE wins < 14 AND goal_difference < -4", "question": "What is the number of goals with less than 14 wins and a goal difference less than -4?", "context": "CREATE TABLE table_name_97 (goals_for VARCHAR, wins VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT AVG(goals_against) FROM table_name_98 WHERE wins > 12 AND losses = 12 AND position > 3", "question": "What is the average number of goals against with more than 12 wins, 12 losses, and a position greater than 3?", "context": "CREATE TABLE table_name_98 (goals_against INTEGER, position VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_54 WHERE goals_for < 73 AND wins < 11 AND points > 24 AND position > 15", "question": "What is the total number of losses with less than 73 goals for, less than 11 wins, more than 24 points, and a position greater than 15?", "context": "CREATE TABLE table_name_54 (losses VARCHAR, position VARCHAR, points VARCHAR, goals_for VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_31 WHERE matches < 29", "question": "What is the sum of Goals, when Matches is less than 29?", "context": "CREATE TABLE table_name_31 (goals INTEGER, matches INTEGER)"}, {"answer": "SELECT MAX(average) FROM table_name_41 WHERE goals = 34 AND matches < 37", "question": "What is the highest Average, when Goals is \"34\", and when Matches is less than 37?", "context": "CREATE TABLE table_name_41 (average INTEGER, goals VARCHAR, matches VARCHAR)"}, {"answer": "SELECT ship_type FROM table_name_93 WHERE tonnage = \"225\"", "question": "With a tonnage of 225 what is the ship type?", "context": "CREATE TABLE table_name_93 (ship_type VARCHAR, tonnage VARCHAR)"}, {"answer": "SELECT location FROM table_name_29 WHERE disposition_of_ship = \"captured\" AND tonnage = \"225\"", "question": "Where was the ship when the ship had captured as the disposition of ship and was carrying 225 tonnage?", "context": "CREATE TABLE table_name_29 (location VARCHAR, disposition_of_ship VARCHAR, tonnage VARCHAR)"}, {"answer": "SELECT disposition_of_ship FROM table_name_57 WHERE ship_type = \"brig\" AND location = \"english channel\"", "question": "For the ship that was a brig and located in the English Channel, what was the disposition of ship?", "context": "CREATE TABLE table_name_57 (disposition_of_ship VARCHAR, ship_type VARCHAR, location VARCHAR)"}, {"answer": "SELECT tonnage FROM table_name_19 WHERE date = \"14\"", "question": "With 14 under the date, what is the tonnage of the ship?", "context": "CREATE TABLE table_name_19 (tonnage VARCHAR, date VARCHAR)"}, {"answer": "SELECT disposition_of_ship FROM table_name_37 WHERE tonnage = \"t\" AND ship_name = \"bacchus\"", "question": "The ship named Bacchus with a tonnage of t had what disposition of ship?", "context": "CREATE TABLE table_name_37 (disposition_of_ship VARCHAR, tonnage VARCHAR, ship_name VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE ship_type = \"brig\" AND location = \"sw approaches\"", "question": "What date was a brig type ship located in SW Approaches?", "context": "CREATE TABLE table_name_30 (date VARCHAR, ship_type VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_59 WHERE round = \"round 9\"", "question": "What was the attendance at Round 9?", "context": "CREATE TABLE table_name_59 (crowd VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(number_of_electorates__2009_) FROM table_name_77 WHERE constituency_number = \"46\"", "question": "Which Number of electorates (2009) has a Constituency number of 46?", "context": "CREATE TABLE table_name_77 (number_of_electorates__2009_ INTEGER, constituency_number VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_81 WHERE code = \"f4r\"", "question": "What is the capacity of code f4r?", "context": "CREATE TABLE table_name_81 (capacity VARCHAR, code VARCHAR)"}, {"answer": "SELECT code FROM table_name_7 WHERE capacity = \"1,461cc\" AND name = \"1.5 dci 110\"", "question": "What is the code of 1.5 dci 110, which has a capacity of 1,461cc?", "context": "CREATE TABLE table_name_7 (code VARCHAR, capacity VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_55 WHERE height = \"6-5\" AND year = \"junior\"", "question": "Can you tell me the Name that has the Height of 6-5, and the Year of junior?", "context": "CREATE TABLE table_name_55 (name VARCHAR, height VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(weight) FROM table_name_69 WHERE height = \"6-9\"", "question": "Can you tell me the average Weight that has Height of 6-9?", "context": "CREATE TABLE table_name_69 (weight INTEGER, height VARCHAR)"}, {"answer": "SELECT lexton_plains FROM table_name_18 WHERE wins < 9 AND against < 1593", "question": "What team has fewer than 9 wins and less than 1593 against?", "context": "CREATE TABLE table_name_18 (lexton_plains VARCHAR, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_84 WHERE byes > 0", "question": "What is the most wins with 0 byes?", "context": "CREATE TABLE table_name_84 (wins INTEGER, byes INTEGER)"}, {"answer": "SELECT total FROM table_name_65 WHERE clubs = 10 AND place > 1", "question": "What total has 10 as the clubs, with a place greater than 1?", "context": "CREATE TABLE table_name_65 (total VARCHAR, clubs VARCHAR, place VARCHAR)"}, {"answer": "SELECT MIN(clubs) FROM table_name_88 WHERE place > 5 AND all_around > 9.7", "question": "What are the lowest clubs that have a place greater than 5, with an all around greater than 9.7?", "context": "CREATE TABLE table_name_88 (clubs INTEGER, place VARCHAR, all_around VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_98 WHERE name = \"andrea sinko\" AND all_around > 9.65", "question": "What is the highest total that has andrea sinko as the name, with an all around greater than 9.65?", "context": "CREATE TABLE table_name_98 (total INTEGER, name VARCHAR, all_around VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_84 WHERE name = \"bianka panova\" AND clubs < 10", "question": "How many places have bianka panova as the name, with clubs less than 10?", "context": "CREATE TABLE table_name_84 (place VARCHAR, name VARCHAR, clubs VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE country = \"china\" AND perpetrator = \"shi yuejun , 35\"", "question": "What is Date, when Country is \"China\", and when Perpetrator is \"Shi Yuejun , 35\"?", "context": "CREATE TABLE table_name_59 (date VARCHAR, country VARCHAR, perpetrator VARCHAR)"}, {"answer": "SELECT injured FROM table_name_21 WHERE country = \"afghanistan\"", "question": "What is Injured, when Country is \"Afghanistan\"?", "context": "CREATE TABLE table_name_21 (injured VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_87 WHERE killed = 100.9 AND year > 1939.9", "question": "What is Country, when Killed is \"100.9\", and when Year is greater than 1939.9?", "context": "CREATE TABLE table_name_87 (country VARCHAR, killed VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_64 WHERE date = \"04.01 april 1\"", "question": "What is the average Year, when Date is \"04.01 April 1\"?", "context": "CREATE TABLE table_name_64 (year INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_61 WHERE goals_against > 48 AND points_1 = \"29\" AND played < 34", "question": "What is the total number of positions when there are more than 48 goals against, 1 of 29 points are played, and less than 34 games have been played?", "context": "CREATE TABLE table_name_61 (position VARCHAR, played VARCHAR, goals_against VARCHAR, points_1 VARCHAR)"}, {"answer": "SELECT MIN(goals_against) FROM table_name_86 WHERE lost = 8 AND goals_for = 60", "question": "What is the smallest number of goals against when 8 games were lost, and the goals for are 60?", "context": "CREATE TABLE table_name_86 (goals_against INTEGER, lost VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MIN(goals_against) FROM table_name_58 WHERE points_1 = \"18\" AND drawn > 8", "question": "What is the smallest number of goals against when there are 1 of 18 points, and more than 8 are drawn?", "context": "CREATE TABLE table_name_58 (goals_against INTEGER, points_1 VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_33 WHERE drawn < 7 AND lost < 21 AND points_1 = \"33\"", "question": "What is the total number of goals for when the drawn is less than 7, less than 21 games have been lost, and there are 1 of 33 points?", "context": "CREATE TABLE table_name_33 (goals_for VARCHAR, points_1 VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(engine) FROM table_name_57 WHERE model = \"sl500\" AND year_from > 1999", "question": "Which Engine has a Model of sl500, and a Year From larger than 1999?", "context": "CREATE TABLE table_name_57 (engine INTEGER, model VARCHAR, year_from VARCHAR)"}, {"answer": "SELECT MIN(engine) FROM table_name_60 WHERE model = \"sl500\" AND chassis < 129.067", "question": "Which Engine has a Model of sl500, and a Chassis smaller than 129.067?", "context": "CREATE TABLE table_name_60 (engine INTEGER, model VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT COUNT(engine) FROM table_name_82 WHERE model = \"sl600\" AND year_from = 1994 AND year_to < 1995", "question": "How many engines have a Model of sl600, and a Year From of 1994, and a Year To smaller than 1995?", "context": "CREATE TABLE table_name_82 (engine VARCHAR, year_to VARCHAR, model VARCHAR, year_from VARCHAR)"}, {"answer": "SELECT MIN(year_to) FROM table_name_14 WHERE engine = 119.972 AND chassis < 129.067", "question": "Which Year To has an Engine of 119.972, and a Chassis smaller than 129.067?", "context": "CREATE TABLE table_name_14 (year_to INTEGER, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT time FROM table_name_44 WHERE show_name = \"mornings with neil mitchell\"", "question": "What Time has a Show Name of mornings with neil mitchell?", "context": "CREATE TABLE table_name_44 (time VARCHAR, show_name VARCHAR)"}, {"answer": "SELECT time FROM table_name_37 WHERE ad_freq = \"15 minutes\" AND show_name = \"country today\"", "question": "What Time has Ad Freq of 15 minutes, and a Show Name of country today?", "context": "CREATE TABLE table_name_37 (time VARCHAR, ad_freq VARCHAR, show_name VARCHAR)"}, {"answer": "SELECT time FROM table_name_15 WHERE show_name = \"mornings with neil mitchell\"", "question": "What Time has a Show Name of mornings with neil mitchell?", "context": "CREATE TABLE table_name_15 (time VARCHAR, show_name VARCHAR)"}, {"answer": "SELECT local_networked FROM table_name_99 WHERE show_name = \"nightline\"", "question": "What Local/Networked has a Show Name of nightline?", "context": "CREATE TABLE table_name_99 (local_networked VARCHAR, show_name VARCHAR)"}, {"answer": "SELECT news_freq FROM table_name_90 WHERE time = \"1:00pm\u20134:00pm\"", "question": "What News Freq has a Time of 1:00pm\u20134:00pm?", "context": "CREATE TABLE table_name_90 (news_freq VARCHAR, time VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_44 WHERE frequency_mhz = 96.7", "question": "What was the ERP W for 96.7 MHz?", "context": "CREATE TABLE table_name_44 (erp_w VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT class FROM table_name_96 WHERE city_of_license = \"appleton, wisconsin\"", "question": "What was the class for Appleton, Wisconsin?", "context": "CREATE TABLE table_name_96 (class VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT transfers_in FROM table_name_36 WHERE country = \"hungary\"", "question": "What are the transfers in for Hungary?", "context": "CREATE TABLE table_name_36 (transfers_in VARCHAR, country VARCHAR)"}, {"answer": "SELECT transfers_out FROM table_name_76 WHERE country = \"peru\"", "question": "What are the Transfers out for Peru?", "context": "CREATE TABLE table_name_76 (transfers_out VARCHAR, country VARCHAR)"}, {"answer": "SELECT points_1 FROM table_name_88 WHERE lost = 22", "question": "WHAT POINTS 1 HAD A 22 LOST?", "context": "CREATE TABLE table_name_88 (points_1 VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(goals_against) FROM table_name_85 WHERE goals_for = 46 AND played < 38", "question": "WHAT GOALS AGAINST HAD A GOAL FOR OF 46, AND PLAYED LESS THAN 38?", "context": "CREATE TABLE table_name_85 (goals_against INTEGER, goals_for VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_29 WHERE lost = 6 AND team = \"caernarfon town\"", "question": "WHAT IS THE POSITION WITH A LOST OF 6, FOR CAERNARFON TOWN?", "context": "CREATE TABLE table_name_29 (position INTEGER, lost VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_81 WHERE points_1 = \"53\" AND position > 3", "question": "WHAT IS THE SUM PLAYED WITH POINTS 1 OF 53, AND POSITION LARGER THAN 3?", "context": "CREATE TABLE table_name_81 (played INTEGER, points_1 VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_15 WHERE drawn = 11 AND team = \"leek town\"", "question": "WHAT IS THE LOST WITH A DRAWN 11, FOR LEEK TOWN?", "context": "CREATE TABLE table_name_15 (lost INTEGER, drawn VARCHAR, team VARCHAR)"}, {"answer": "SELECT player FROM table_name_59 WHERE subtotal > 3 AND round_1 > 8", "question": "Which player has a subtotal of more than 3 and more than 8 in round 1?", "context": "CREATE TABLE table_name_59 (player VARCHAR, subtotal VARCHAR, round_1 VARCHAR)"}, {"answer": "SELECT place FROM table_name_52 WHERE country = \"united states\" AND money___$__ = \"200\"", "question": "What is the ranking for the United States when the money is $200?", "context": "CREATE TABLE table_name_52 (place VARCHAR, country VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT place FROM table_name_6 WHERE money___$__ = \"73\" AND player = \"archie compston\"", "question": "What is the ranking when Archie Compston is the player and the money is $73?", "context": "CREATE TABLE table_name_6 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_92 WHERE to_par < 19 AND score = 75 - 79 - 77 - 73 = 304", "question": "Which country has a to par less than 19 and a score of 75-79-77-73=304?", "context": "CREATE TABLE table_name_92 (country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE country = \"united states\" AND money___$__ = \"73\" AND player = \"harry hampton\"", "question": "What is the score for the United States when Harry Hampton is the player and the money is $73?", "context": "CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR, country VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT MAX(2010) FROM table_name_94 WHERE state = \"fl\" AND major_city_served = \"miami\"", "question": "What is the greatest 2010 for Miami, Fl?", "context": "CREATE TABLE table_name_94 (state VARCHAR, major_city_served VARCHAR)"}, {"answer": "SELECT north_american_release_date FROM table_name_25 WHERE european_release_date = \"2013-03-20\"", "question": "What is the North American release date of the remake with a European release date on 2013-03-20?", "context": "CREATE TABLE table_name_25 (north_american_release_date VARCHAR, european_release_date VARCHAR)"}, {"answer": "SELECT series FROM table_name_12 WHERE north_american_release_date = \"2013-09-03\"", "question": "What is the series with a North American release date on 2013-09-03?", "context": "CREATE TABLE table_name_12 (series VARCHAR, north_american_release_date VARCHAR)"}, {"answer": "SELECT us_cash_box FROM table_name_20 WHERE year < 1978 AND us_billboard = 35", "question": "What is the US cash box before 1978 with a US billboard of 35?", "context": "CREATE TABLE table_name_20 (us_cash_box VARCHAR, year VARCHAR, us_billboard VARCHAR)"}, {"answer": "SELECT country FROM table_name_33 WHERE place = \"t6\"", "question": "What is the country of the player with a t6 place?", "context": "CREATE TABLE table_name_33 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_33 WHERE score = 72 - 71 - 65 = 208", "question": "What is the place of the player with a 72-71-65=208 score?", "context": "CREATE TABLE table_name_33 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_96 WHERE player = \"thomas bj\u00f8rn\"", "question": "What country is player thomas bj\u00f8rn from?", "context": "CREATE TABLE table_name_96 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_86 WHERE score = 66 - 68 - 70 = 204", "question": "What is the place of the player with a 66-68-70=204 score?", "context": "CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_53 WHERE goals_against > 41 AND points = 29 AND draws > 5", "question": "What is the number of wins when the goals against is larger than 41, points is 29, and draws are larger than 5?", "context": "CREATE TABLE table_name_53 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_74 WHERE played < 30", "question": "What is the number of draws when played is smaller than 30?", "context": "CREATE TABLE table_name_74 (draws VARCHAR, played INTEGER)"}, {"answer": "SELECT COUNT(losses) FROM table_name_37 WHERE goal_difference = -8 AND position < 10", "question": "What is the number of losses when the goal difference was -8, and position is smaller than 10?", "context": "CREATE TABLE table_name_37 (losses VARCHAR, goal_difference VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_76 WHERE points < 27 AND goals_against = 41", "question": "What is the wins number when the points were smaller than 27, and goals against was 41?", "context": "CREATE TABLE table_name_76 (wins INTEGER, points VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_45 WHERE goal_difference > 26", "question": "What is the losses when the goal difference is larger than 26?", "context": "CREATE TABLE table_name_45 (losses INTEGER, goal_difference INTEGER)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_72 WHERE played > 30", "question": "What is the goals for when played is larger than 30?", "context": "CREATE TABLE table_name_72 (goals_for INTEGER, played INTEGER)"}, {"answer": "SELECT score FROM table_name_72 WHERE date = \"2 october 2011\"", "question": "What is the score on 2 October 2011?", "context": "CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_59 WHERE outcome = \"runner-up\" AND opponent = \"dudi sela\"", "question": "What is the surface of the tournament with a runner-up outcome and dudi sela as the opponent?", "context": "CREATE TABLE table_name_59 (surface VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_75 WHERE event = \"wc beijing\"", "question": "Who was the shooter for the WC Beijing event?", "context": "CREATE TABLE table_name_75 (shooter VARCHAR, event VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_65 WHERE total = \"olympic bronze medalist\"", "question": "With Olympic Bronze Medalist as the total what are the score points?", "context": "CREATE TABLE table_name_65 (score_points VARCHAR, total VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_25 WHERE rank_points = \"10\" AND total = \"11\"", "question": "With a total of 11, and 10 rank points, what are the score points?", "context": "CREATE TABLE table_name_25 (score_points VARCHAR, rank_points VARCHAR, total VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_56 WHERE rank_points = \"15\" AND score_points = \"0\"", "question": "Who is the shooter with 15 rank points, and 0 score points?", "context": "CREATE TABLE table_name_56 (shooter VARCHAR, rank_points VARCHAR, score_points VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_32 WHERE total = \"11\"", "question": "With a total of 11, what is the score points?", "context": "CREATE TABLE table_name_32 (score_points VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_21 WHERE south_west_dfl = \"branxholme-wallacedale\" AND byes < 2", "question": "Which Losses have a South West DFL of branxholme-wallacedale, and less than 2 Byes?", "context": "CREATE TABLE table_name_21 (losses INTEGER, south_west_dfl VARCHAR, byes VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_89 WHERE wins = 14", "question": "Which draws have an average of 14 wins?", "context": "CREATE TABLE table_name_89 (draws INTEGER, wins VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_82 WHERE losses = 16 AND against < 3213", "question": "How many wins have 16 losses and an Against smaller than 3213?", "context": "CREATE TABLE table_name_82 (wins INTEGER, losses VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_83 WHERE south_west_dfl = \"tyrendarra\" AND wins < 10", "question": "How many Draws have a South West DFL of tyrendarra, and less than 10 wins?", "context": "CREATE TABLE table_name_83 (draws INTEGER, south_west_dfl VARCHAR, wins VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_20 WHERE winning_constructor = \"bugatti\" AND winning_driver = \"edward bret\"", "question": "What Circuit has a Winning constructor of bugatti, and a Winning driver of edward bret?", "context": "CREATE TABLE table_name_20 (circuit VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_55 WHERE date = \"25 july\"", "question": "What Circuit has a Date of 25 july?", "context": "CREATE TABLE table_name_55 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE name = \"thuin circuit\"", "question": "What Date has a Name of thuin circuit?", "context": "CREATE TABLE table_name_26 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_78 WHERE winning_constructor = \"bugatti\" AND winning_driver = \"louis chiron\"", "question": "What Name has a Winning constructor of bugatti, and a Winning driver of louis chiron?", "context": "CREATE TABLE table_name_78 (name VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_55 WHERE name = \"mugello circuit\"", "question": "What Winning driver has a Name of mugello circuit?", "context": "CREATE TABLE table_name_55 (winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_59 WHERE winning_constructor = \"talbot\"", "question": "What Winning driver has a Winning constructor of talbot?", "context": "CREATE TABLE table_name_59 (winning_driver VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_64 WHERE attendance = 356", "question": "What is the away team of the match with a 356 attendance?", "context": "CREATE TABLE table_name_64 (away_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT player FROM table_name_21 WHERE year_s__won = \"1993\"", "question": "Which player won in 1993?", "context": "CREATE TABLE table_name_21 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_86 WHERE year_s__won = \"1993\"", "question": "How many to pars were won in 1993?", "context": "CREATE TABLE table_name_86 (to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_34 WHERE country = \"zimbabwe\" AND to_par > 5", "question": "What is Zimbabwe's total with a to par higher than 5?", "context": "CREATE TABLE table_name_34 (total INTEGER, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_87 WHERE year_s__won = \"1986\" AND to_par > 6", "question": "What is the total for 1986 with a to par higher than 6?", "context": "CREATE TABLE table_name_87 (total VARCHAR, year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT SUM(1984) FROM table_name_11 WHERE total_points = 100 AND seasons > 3", "question": "What is the total for 1984 for the team with 100 points total and more than 3 seasons?", "context": "CREATE TABLE table_name_11 (total_points VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT COUNT(total_points) FROM table_name_99 WHERE 1982 = \"n/a\" AND points_average > 34 AND 1984 > 37", "question": "What is the points total for the team with points average more than 34, 1984 score more than 37 and N/A in 1982?", "context": "CREATE TABLE table_name_99 (total_points VARCHAR, points_average VARCHAR)"}, {"answer": "SELECT team FROM table_name_71 WHERE seasons = 3 AND 1984 < 27", "question": "What team had 3 seasons and fewer than 27 in 1984?", "context": "CREATE TABLE table_name_71 (team VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT SUM(seasons) FROM table_name_45 WHERE total_points < 24", "question": "What is the number of seasons for the team with a total fewer than 24?", "context": "CREATE TABLE table_name_45 (seasons INTEGER, total_points INTEGER)"}, {"answer": "SELECT weight FROM table_name_70 WHERE club = \"panionios g.c.\" AND date_of_birth = \"1975-05-21\"", "question": "What is the weight of the player from club panionios g.c. and was born on 1975-05-21?", "context": "CREATE TABLE table_name_70 (weight VARCHAR, club VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT COUNT(height_of_ground_station_m_) FROM table_name_35 WHERE name = \"lutersee\" AND height_of_mountain_station_m_ > 2398", "question": "How much Height of ground station(m) has a Name of lutersee, and a Height of mountain station(m) larger than 2398?", "context": "CREATE TABLE table_name_35 (height_of_ground_station_m_ VARCHAR, name VARCHAR, height_of_mountain_station_m_ VARCHAR)"}, {"answer": "SELECT AVG(elevation_groundstation) FROM table_name_68 WHERE capacity_in_persons_hour > 820 AND name_or_route = \"lager 1\" AND slope_length < 336", "question": "Which elevation groundstation has a capacity in persons/hour larger than 820, and a Name or route of lager 1, and a slope length smaller than 336?", "context": "CREATE TABLE table_name_68 (elevation_groundstation INTEGER, slope_length VARCHAR, capacity_in_persons_hour VARCHAR, name_or_route VARCHAR)"}, {"answer": "SELECT slope_length FROM table_name_43 WHERE type = \"surface lift\" AND elevation_groundstation < 1974 AND construction_year_s_ = \"1971\" AND name_or_route = \"alpmatten 1\"", "question": "Which slope length has a type of surface lift, and an elevation groundstation smaller than 1974, and a construction year(s) of 1971, and a Name or route of alpmatten 1?", "context": "CREATE TABLE table_name_43 (slope_length VARCHAR, name_or_route VARCHAR, construction_year_s_ VARCHAR, type VARCHAR, elevation_groundstation VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_43 WHERE nfl_club = \"arizona cardinals\"", "question": "What is the lowest pick that has arizona cardinals as the NFL club?", "context": "CREATE TABLE table_name_43 (pick INTEGER, nfl_club VARCHAR)"}, {"answer": "SELECT round FROM table_name_4 WHERE pick < 189 AND nfl_club = \"arizona cardinals\"", "question": "What round has a pick less than 189, with arizona cardinals as the NFL club?", "context": "CREATE TABLE table_name_4 (round VARCHAR, pick VARCHAR, nfl_club VARCHAR)"}, {"answer": "SELECT player FROM table_name_19 WHERE position = \"defensive back\" AND round < 2", "question": "What player has defensive back as the position, with a round less than 2?", "context": "CREATE TABLE table_name_19 (player VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_3 WHERE player = \"orlando pace\"", "question": "What lowest round has orlando pace as the player?", "context": "CREATE TABLE table_name_3 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_6 WHERE opponent = \"seattle supersonics\"", "question": "What was the location when the opponent was Seattle Supersonics?", "context": "CREATE TABLE table_name_6 (location_attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_69 WHERE game < 78 AND score = \"114\u2013109 (ot)\"", "question": "What was the record for less than 78 games and a score of 114\u2013109 (ot)?", "context": "CREATE TABLE table_name_69 (record VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_96 WHERE game = 75", "question": "Who was the opponent for game 75?", "context": "CREATE TABLE table_name_96 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT wrestler FROM table_name_3 WHERE team = \"team batista\" AND eliminated_by = \"orton\" AND elimination = \"8\"", "question": "Which Wrestler plays for Team Batista which was Elimated by Orton on Elimination 8?", "context": "CREATE TABLE table_name_3 (wrestler VARCHAR, elimination VARCHAR, team VARCHAR, eliminated_by VARCHAR)"}, {"answer": "SELECT time FROM table_name_12 WHERE eliminated_by = \"batista\" AND wrestler = \"henry\"", "question": "What time was the Wrestler Henry eliminated by Batista?", "context": "CREATE TABLE table_name_12 (time VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT elimination AS Move FROM table_name_90 WHERE team = \"team batista\" AND elimination = \"8\"", "question": "Which Elimination Move is listed at Elimination 8 for Team Batista?", "context": "CREATE TABLE table_name_90 (elimination VARCHAR, team VARCHAR)"}, {"answer": "SELECT elimination AS Move FROM table_name_25 WHERE team = \"team orton\" AND eliminated_by = \"batista\" AND elimination = \"7\"", "question": "Which Elimination move is listed against Team Orton, Eliminated by Batista against Elimination number 7?", "context": "CREATE TABLE table_name_25 (elimination VARCHAR, team VARCHAR, eliminated_by VARCHAR)"}, {"answer": "SELECT elimination AS Move FROM table_name_35 WHERE eliminated_by = \"batista\" AND wrestler = \"henry\"", "question": "What Elimination Move is listed against Wrestler Henry, Eliminated by Batista?", "context": "CREATE TABLE table_name_35 (elimination VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT elimination AS Move FROM table_name_28 WHERE wrestler = \"regal\"", "question": "What is the Elimination move listed against Regal?", "context": "CREATE TABLE table_name_28 (elimination VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_76 WHERE player = \"jeff sluman\"", "question": "Name the Total of jeff sluman?", "context": "CREATE TABLE table_name_76 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_48 WHERE country = \"australia\" AND to_par < 7", "question": "Name the Total of australia and a To par smaller than 7?", "context": "CREATE TABLE table_name_48 (total INTEGER, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_31 WHERE year_s__won = \"1988\" AND total < 148", "question": "Name the To par that has a Year(s) won of 1988 and a Total smaller than 148?", "context": "CREATE TABLE table_name_31 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(number) FROM table_name_79 WHERE home_club = \"broomstones\" AND year_end < 1999", "question": "Which Number has a Home Club of broomstones, and a Year End smaller than 1999?", "context": "CREATE TABLE table_name_79 (number INTEGER, home_club VARCHAR, year_end VARCHAR)"}, {"answer": "SELECT MAX(year_start) FROM table_name_41 WHERE number = 28", "question": "Which Year Start has a Number of 28?", "context": "CREATE TABLE table_name_41 (year_start INTEGER, number VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_name_41 WHERE name = \"hill, lucius t.\"", "question": "Which Number has a Name of hill, lucius t.?", "context": "CREATE TABLE table_name_41 (number INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_name_13 WHERE year_start < 1874 AND year_end > 1873", "question": "Which Number has a Year Start smaller than 1874, and a Year End larger than 1873?", "context": "CREATE TABLE table_name_13 (number INTEGER, year_start VARCHAR, year_end VARCHAR)"}, {"answer": "SELECT AVG(number) FROM table_name_90 WHERE name = \"cooper, c. kenneth\" AND year_end > 1984", "question": "Which Number has a Name of cooper, c. kenneth, and a Year End larger than 1984?", "context": "CREATE TABLE table_name_90 (number INTEGER, name VARCHAR, year_end VARCHAR)"}, {"answer": "SELECT venue FROM table_name_16 WHERE status = \"test match\" AND against = 12", "question": "What is Venue, when Status is \"Test Match\", and when Against is \"12\"?", "context": "CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR)"}, {"answer": "SELECT opposing_teams FROM table_name_81 WHERE date = \"11/10/1991\"", "question": "What is Opposing Teams, when Date is \"11/10/1991\"?", "context": "CREATE TABLE table_name_81 (opposing_teams VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE opposing_teams = \"australia\" AND venue = \"twickenham , london\"", "question": "What is Date, when Opposing Teams is \"Australia\", and when Venue is \"Twickenham , London\"?", "context": "CREATE TABLE table_name_79 (date VARCHAR, opposing_teams VARCHAR, venue VARCHAR)"}, {"answer": "SELECT against FROM table_name_12 WHERE opposing_teams = \"australia\" AND date = \"27/07/1991\"", "question": "What is Against, when Opposing Teams is \"Australia\", and when Date is \"27/07/1991\"?", "context": "CREATE TABLE table_name_12 (against VARCHAR, opposing_teams VARCHAR, date VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_36 WHERE home_team = \"exeter city\"", "question": "What is the tie no of the game where exeter city was the home team?", "context": "CREATE TABLE table_name_36 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE date = \"10 jan 1990\" AND away_team = \"exeter city\"", "question": "What is the score of the game against away team exeter city on 10 jan 1990?", "context": "CREATE TABLE table_name_70 (score VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE home_team = \"liverpool\"", "question": "What date did home team liverpool play?", "context": "CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_3 WHERE away_team = \"crewe alexandra\"", "question": "What was the score of the game against away team crewe alexandra?", "context": "CREATE TABLE table_name_3 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT results FROM table_name_79 WHERE first_elected = 1996", "question": "What are the results of the incumbent who was first elected in 1996?", "context": "CREATE TABLE table_name_79 (results VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT results FROM table_name_4 WHERE first_elected = 1996", "question": "What are the results of the incumbent who was first elected in 1996?", "context": "CREATE TABLE table_name_4 (results VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_41 WHERE first_elected < 2002 AND district = \"maryland 3\"", "question": "Who is the incumbent who was first elected before 2002 from the maryland 3 district?", "context": "CREATE TABLE table_name_41 (incumbent VARCHAR, first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_name_73 WHERE district = \"maryland 6\"", "question": "What is the party of the maryland 6 district?", "context": "CREATE TABLE table_name_73 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT silver FROM table_name_35 WHERE year = 1962", "question": "WHAT IS THE SILVER WITH A YEAR OF 1962?", "context": "CREATE TABLE table_name_35 (silver VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_88 WHERE bronze = \"valentin novikov\"", "question": "WHAT YEAR HAS A BRONZE OF VALENTIN NOVIKOV?", "context": "CREATE TABLE table_name_88 (year INTEGER, bronze VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_54 WHERE silver = \"matthias merz\"", "question": "WHAT YEAR HAS A SILVER FOR MATTHIAS MERZ?", "context": "CREATE TABLE table_name_54 (year INTEGER, silver VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_20 WHERE bronze = \"aimo tepsell\"", "question": "WHAT IS THE YEAR WITH A BRONZE OF AIMO TEPSELL?", "context": "CREATE TABLE table_name_20 (year INTEGER, bronze VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_72 WHERE player = \"greg turner\"", "question": "What is To par, when Player is \"Greg Turner\"?", "context": "CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_34 WHERE country = \"united states\" AND player = \"mark brooks\"", "question": "What is Score, when Country is \"United States\", and when Player is \"Mark Brooks\"?", "context": "CREATE TABLE table_name_34 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(money___) AS \u00a3__ FROM table_name_95 WHERE player = \"peter hedblom\"", "question": "What is the highest Money ( \u00a3 ), when Player is \"Peter Hedblom\"?", "context": "CREATE TABLE table_name_95 (money___ INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_21 WHERE drawn = 7 AND points_1 < 33", "question": "What is the total number of losses for a draw of 7, and 1 points less than 33?", "context": "CREATE TABLE table_name_21 (lost VARCHAR, drawn VARCHAR, points_1 VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_75 WHERE goals_against < 55 AND lost = 14", "question": "What is the total number drawn with goals against less than 55, and a total of 14 losses?", "context": "CREATE TABLE table_name_75 (drawn VARCHAR, goals_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_25 WHERE played < 38", "question": "What is the total number of goals that has been played less than 38 times?", "context": "CREATE TABLE table_name_25 (goals_for VARCHAR, played INTEGER)"}, {"answer": "SELECT diameter FROM table_name_74 WHERE theme = \"dog sled (gold variant)\"", "question": "What is the Diameter of the Dog Sled (gold variant) Theme coin?", "context": "CREATE TABLE table_name_74 (diameter VARCHAR, theme VARCHAR)"}, {"answer": "SELECT MAX(mintage) FROM table_name_42 WHERE year > 2006 AND theme = \"ruby-throated hummingbird\"", "question": "What is the MIntage after 2006 of the Ruby-Throated Hummingbird Theme coin?", "context": "CREATE TABLE table_name_42 (mintage INTEGER, year VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(mintage) FROM table_name_88 WHERE weight = \"12.61 g\" AND theme = \"ruby-throated hummingbird\"", "question": "What is the Mintage of the 12.61 g Weight Ruby-Throated Hummingbird?", "context": "CREATE TABLE table_name_88 (mintage VARCHAR, weight VARCHAR, theme VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_15 WHERE issue_price = \"$1089.95\" AND mintage < 900", "question": "What is the Year of the Coin with an Issue Price of $1089.95 and Mintage less than 900?", "context": "CREATE TABLE table_name_15 (year INTEGER, issue_price VARCHAR, mintage VARCHAR)"}, {"answer": "SELECT theme FROM table_name_95 WHERE issue_price = \"$89.95\"", "question": "What is the Theme of the coin with an Issue Price of $89.95?", "context": "CREATE TABLE table_name_95 (theme VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_58 WHERE date = \"11 july\"", "question": "What was the winning team on 11 July?", "context": "CREATE TABLE table_name_58 (winning_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_15 WHERE winning_team = \"a.z.k./roc-comp\u00e9tition a.z.k./roc-comp\u00e9tition\" AND date = \"2 june\"", "question": "Who is the winning driver of the race on 2 June with a.z.k./roc-comp\u00e9tition a.z.k./roc-comp\u00e9tition as the winning team?", "context": "CREATE TABLE table_name_15 (winning_driver VARCHAR, winning_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_90 WHERE date = \"5 may\"", "question": "Who is the winning driver of the race on 5 May?", "context": "CREATE TABLE table_name_90 (winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_name_7 WHERE winning_team = \"a.z.k./roc-comp\u00e9tition a.z.k./roc-comp\u00e9tition\" AND date = \"30 june\"", "question": "What is the round on 30 June with a.z.k./roc-comp\u00e9tition a.z.k./roc-comp\u00e9tition as the winning team?", "context": "CREATE TABLE table_name_7 (round VARCHAR, winning_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE winning_team = \"a.z.k./roc-comp\u00e9tition a.z.k./roc-comp\u00e9tition\" AND circuit = \"zolder\"", "question": "What is the date of the zolder circuit, which had a.z.k./roc-comp\u00e9tition a.z.k./roc-comp\u00e9tition as the winning team?", "context": "CREATE TABLE table_name_53 (date VARCHAR, winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT place FROM table_name_84 WHERE score = 72 - 66 = 138 AND player = \"bob may\"", "question": "What place did Bob May get when his score was 72-66=138?", "context": "CREATE TABLE table_name_84 (place VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_20 WHERE place = \"t9\" AND player = \"stephen ames\"", "question": "What country is Stephen Ames from with a place value of t9?", "context": "CREATE TABLE table_name_20 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_28 WHERE to_par = \"\u201310\"", "question": "What place had a To par of \u201310?", "context": "CREATE TABLE table_name_28 (place VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_18 WHERE player = \"darren clarke\"", "question": "What country is Darren Clarke from?", "context": "CREATE TABLE table_name_18 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_78 WHERE score = 70 - 69 = 139", "question": "What is the To par value that goes with a Score of 70-69=139?", "context": "CREATE TABLE table_name_78 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_43 WHERE season = \"2005-06\" AND division < 1", "question": "What is the sum of Goals, when Season is \"2005-06\", and when Division is less than 1?", "context": "CREATE TABLE table_name_43 (goals INTEGER, season VARCHAR, division VARCHAR)"}, {"answer": "SELECT season FROM table_name_42 WHERE goals < 6 AND team = \"tarbiat yazd\"", "question": "What is Season, when Goals is less than 6, and when Team is \"Tarbiat Yazd\"?", "context": "CREATE TABLE table_name_42 (season VARCHAR, goals VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(division) FROM table_name_15 WHERE goals < 5 AND season = \"2002-03\"", "question": "What is the lowest Division, when Goals is less than 5, and when Season is \"2002-03\"?", "context": "CREATE TABLE table_name_15 (division INTEGER, goals VARCHAR, season VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_81 WHERE team = \"rah ahan\" AND division < 1", "question": "What is the average Goals, when Team is \"Rah Ahan\", and when Division is less than 1?", "context": "CREATE TABLE table_name_81 (goals INTEGER, team VARCHAR, division VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_96 WHERE stadium = \"stadion mladina\"", "question": "What is the lowest capacity that has stadion mladina as the stadium?", "context": "CREATE TABLE table_name_96 (capacity INTEGER, stadium VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_13 WHERE city = \"kutina\"", "question": "What stadium has kutina as the city?", "context": "CREATE TABLE table_name_13 (stadium VARCHAR, city VARCHAR)"}, {"answer": "SELECT h___a FROM table_name_4 WHERE date = \"29 july 1992\"", "question": "What was the H/A on 29 july 1992?", "context": "CREATE TABLE table_name_4 (h___a VARCHAR, date VARCHAR)"}, {"answer": "SELECT result_f___a FROM table_name_8 WHERE opponents = \"rosenborg\"", "question": "Which Result F-A has Opponents of rosenborg?", "context": "CREATE TABLE table_name_8 (result_f___a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT depth FROM table_name_35 WHERE time__utc_ = \"19:48\"", "question": "What is the depth of the quake that occurred at 19:48?", "context": "CREATE TABLE table_name_35 (depth VARCHAR, time__utc_ VARCHAR)"}, {"answer": "SELECT magnitude FROM table_name_67 WHERE epicenter = \"vrancea county\" AND intensity = \"unknown\" AND time__utc_ = \"06:36\"", "question": "What is the magnitude with epicenter at Vrancea County, unknown intensity and which happened at 06:36?", "context": "CREATE TABLE table_name_67 (magnitude VARCHAR, time__utc_ VARCHAR, epicenter VARCHAR, intensity VARCHAR)"}, {"answer": "SELECT epicenter FROM table_name_54 WHERE date = \"december 1, 2012\"", "question": "Where was the epicenter of the quake on December 1, 2012?", "context": "CREATE TABLE table_name_54 (epicenter VARCHAR, date VARCHAR)"}, {"answer": "SELECT finish FROM table_name_6 WHERE year_s__won = \"1991\"", "question": "What is Finish, when Year(s) Won is \"1991\"?", "context": "CREATE TABLE table_name_6 (finish VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_65 WHERE finish = \"t31\" AND player = \"nick price\"", "question": "What is Year(s) Won, when Finish is \"T31\", and when Player is \"Nick Price\"?", "context": "CREATE TABLE table_name_65 (year_s__won VARCHAR, finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_90 WHERE total > 283 AND year_s__won = \"1989\"", "question": "What is Country, when Total is greater than 283, and when Year(s) Won is \"1989\"?", "context": "CREATE TABLE table_name_90 (country VARCHAR, total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT name FROM table_name_28 WHERE pos = \"cb\" AND date_of_birth = \"1983-03-14\"", "question": "born on 1983-03-14, what is the cb's name?", "context": "CREATE TABLE table_name_28 (name VARCHAR, pos VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT name FROM table_name_8 WHERE pos = \"cf\" AND date_of_birth = \"1973-08-21\"", "question": "born on 1973-08-21, what is the cf's name?", "context": "CREATE TABLE table_name_8 (name VARCHAR, pos VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_14 WHERE opponent = \"detroit lions\"", "question": "What attendance has detroit lions as the opponent?", "context": "CREATE TABLE table_name_14 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE opponent = \"houston texans\"", "question": "What score has houston texans as the opponent?", "context": "CREATE TABLE table_name_62 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE date = \"october 31\"", "question": "What score has October 31 as the date?", "context": "CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_7 WHERE result = \"w\" AND date = \"january 2\"", "question": "What record has w as the result, with January 2 as the date?", "context": "CREATE TABLE table_name_7 (record VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT position FROM table_name_69 WHERE team_from = \"aik\"", "question": "What is the position of the team player from Aik?", "context": "CREATE TABLE table_name_69 (position VARCHAR, team_from VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_11 WHERE league_from = \"quebec major junior hockey league\" AND player = \"samuel carrier\"", "question": "What is the average pick # from the Quebec Major Junior Hockey League player Samuel Carrier?", "context": "CREATE TABLE table_name_11 (pick__number INTEGER, league_from VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_94 WHERE position = \"d\" AND team_from = \"chilliwack bruins\"", "question": "What is the total pick # for the D position from a team from Chilliwack Bruins?", "context": "CREATE TABLE table_name_94 (pick__number INTEGER, position VARCHAR, team_from VARCHAR)"}, {"answer": "SELECT league_from FROM table_name_36 WHERE pick__number = 160", "question": "What is the league that has the pick #160?", "context": "CREATE TABLE table_name_36 (league_from VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT bowl_game FROM table_name_79 WHERE date = \"dec. 26, 2007\"", "question": "What bowl game was played on Dec. 26, 2007?", "context": "CREATE TABLE table_name_79 (bowl_game VARCHAR, date VARCHAR)"}, {"answer": "SELECT opp_team FROM table_name_49 WHERE score = \"21-17\"", "question": "Who was the opposing team in the game with a score of 21-17?", "context": "CREATE TABLE table_name_49 (opp_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT opp_team FROM table_name_19 WHERE big_ten_team = \"purdue\"", "question": "Who was Purdue's opponent?", "context": "CREATE TABLE table_name_19 (opp_team VARCHAR, big_ten_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE bowl_game = \"insight bowl\"", "question": "What was the score of the Insight Bowl?", "context": "CREATE TABLE table_name_53 (score VARCHAR, bowl_game VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE bowl_game = \"bcs national championship\"", "question": "What was the score of the BCS National Championship game?", "context": "CREATE TABLE table_name_66 (score VARCHAR, bowl_game VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_18 WHERE party = \"democratic\" AND first_elected = 1998", "question": "Which Democratic incumbent was first elected in 1998?", "context": "CREATE TABLE table_name_18 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_name_62 WHERE party = \"democratic\" AND first_elected < 1996", "question": "Which district has a Democratic incumbent that was first elected before 1996?", "context": "CREATE TABLE table_name_62 (district VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_34 WHERE first_elected = 1996 AND district = \"oregon 5\"", "question": "Who is the incumbent for the Oregon 5 District that was elected in 1996?", "context": "CREATE TABLE table_name_34 (incumbent VARCHAR, first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT results FROM table_name_18 WHERE first_elected = 1996 AND district = \"oregon 5\"", "question": "What was the result of the Oregon 5 District incumbent who was first elected in 1996?", "context": "CREATE TABLE table_name_18 (results VARCHAR, first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT location FROM table_name_46 WHERE opponent = \"liam mccarty\"", "question": "What's was the location for fight against Liam Mccarty?", "context": "CREATE TABLE table_name_46 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_90 WHERE year_s__won = \"1978\"", "question": "How many strokes off par was the winner in 1978?", "context": "CREATE TABLE table_name_90 (to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_72 WHERE year_s__won = \"1978\"", "question": "What was the average round score of the player who won in 1978?", "context": "CREATE TABLE table_name_72 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS \u00a3__ FROM table_name_46 WHERE player = \"frank nobilo\"", "question": "What is the money won by Frank Nobilo?", "context": "CREATE TABLE table_name_46 (money___ VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE player = \"lee westwood\"", "question": "What is Lee Westwood's score?", "context": "CREATE TABLE table_name_20 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_46 WHERE player = \"stephen ames\"", "question": "How much money has been won by Stephen Ames?", "context": "CREATE TABLE table_name_46 (money___\u00a3__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_95 WHERE goals_against = 81 AND lost > 23", "question": "How much Drawn has Goals Against of 81, and a Lost larger than 23?", "context": "CREATE TABLE table_name_95 (drawn VARCHAR, goals_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_87 WHERE position > 5 AND points_1 = \"37\" AND goals_against < 63", "question": "Which Lost has a Position larger than 5, and Points 1 of 37, and less than 63 Goals Against?", "context": "CREATE TABLE table_name_87 (lost INTEGER, goals_against VARCHAR, position VARCHAR, points_1 VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_43 WHERE goals_against > 74 AND lost < 20 AND played > 38", "question": "How much Drawn has Goals Against larger than 74, and a Lost smaller than 20, and a Played larger than 38?", "context": "CREATE TABLE table_name_43 (drawn VARCHAR, played VARCHAR, goals_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_51 WHERE goals_for = 52 AND goals_against > 70", "question": "Which Position has Goals For of 52, and Goals Against larger than 70?", "context": "CREATE TABLE table_name_51 (position INTEGER, goals_for VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_70 WHERE drawn = 4 AND position = 9 AND goals_against > 59", "question": "Which Played has a Drawn of 4, and a Position of 9, and Goals Against larger than 59?", "context": "CREATE TABLE table_name_70 (played INTEGER, goals_against VARCHAR, drawn VARCHAR, position VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_92 WHERE visiting_team = \"san francisco 49ers\" AND result = \"42-14\"", "question": "Who is the home team when the san francisco 49ers are visiting with a result of 42-14?", "context": "CREATE TABLE table_name_92 (home_team VARCHAR, visiting_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_41 WHERE attendance = 77 OFFSET 254", "question": "When was the earliest year when the attendance was 77,254?", "context": "CREATE TABLE table_name_41 (year INTEGER, attendance VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_19 WHERE result = \"7-23\" AND year < 1960", "question": "What was the total attendance for a result of 7-23 before 1960?", "context": "CREATE TABLE table_name_19 (attendance INTEGER, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT location FROM table_name_24 WHERE enzyme = \"uroporphyrinogen iii synthase\"", "question": "What is the location of the enzyme Uroporphyrinogen iii Synthase?", "context": "CREATE TABLE table_name_24 (location VARCHAR, enzyme VARCHAR)"}, {"answer": "SELECT substrate FROM table_name_55 WHERE product = \"protoporphyrin ix\"", "question": "What is protoporphyrin ix's substrate?", "context": "CREATE TABLE table_name_55 (substrate VARCHAR, product VARCHAR)"}, {"answer": "SELECT substrate FROM table_name_47 WHERE omim = 176000", "question": "Which substrate has an OMIM of 176000?", "context": "CREATE TABLE table_name_47 (substrate VARCHAR, omim VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE to_par = \"+4\" AND player = \"anders forsbrand\"", "question": "What was Anders Forsbrand's score when the TO par is +4?", "context": "CREATE TABLE table_name_65 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_28 WHERE score = 76 - 68 = 144", "question": "Which player scored 76-68=144?", "context": "CREATE TABLE table_name_28 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_84 WHERE country = \"united states\" AND player = \"raymond floyd\"", "question": "What did United States place when the player was Raymond Floyd?", "context": "CREATE TABLE table_name_84 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_9 WHERE player = \"raymond floyd\"", "question": "What country did Raymond Floyd play for?", "context": "CREATE TABLE table_name_9 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_89 WHERE player = \"greg norman\"", "question": "What is Greg Norman's place?", "context": "CREATE TABLE table_name_89 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_46 WHERE player = \"paul mcginley\"", "question": "What place did Paul McGinley finish in?", "context": "CREATE TABLE table_name_46 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_26 WHERE player = \"tiger woods\"", "question": "What is Tiger Woods' to par?", "context": "CREATE TABLE table_name_26 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_53 WHERE year_s__won > 1999", "question": "What is the to par when the year(s) won is larger than 1999?", "context": "CREATE TABLE table_name_53 (to_par VARCHAR, year_s__won INTEGER)"}, {"answer": "SELECT SUM(apps) FROM table_name_51 WHERE rank < 6 AND goals < 61", "question": "What are the apps for less than 61 goals and before rank 6?", "context": "CREATE TABLE table_name_51 (apps INTEGER, rank VARCHAR, goals VARCHAR)"}, {"answer": "SELECT season FROM table_name_59 WHERE apps > 26 AND club = \"barcelona\" AND goals > 96 AND rank > 12", "question": "What season was Barcelona ranked higher than 12, had more than 96 goals and had more than 26 apps?", "context": "CREATE TABLE table_name_59 (season VARCHAR, rank VARCHAR, goals VARCHAR, apps VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(apps) FROM table_name_96 WHERE goals > 73 AND rank > 13", "question": "How many apps when the rank was after 13 and having more than 73 goals?", "context": "CREATE TABLE table_name_96 (apps INTEGER, goals VARCHAR, rank VARCHAR)"}, {"answer": "SELECT club FROM table_name_72 WHERE apps < 22 AND rank < 2", "question": "Who was the club having less than 22 apps and ranked less than 2?", "context": "CREATE TABLE table_name_72 (club VARCHAR, apps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_66 WHERE country = \"united states\" AND score = 68 - 65 = 133", "question": "With a score of 68-65=133 and United States as the country what is the To par?", "context": "CREATE TABLE table_name_66 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_54 WHERE country = \"northern ireland\"", "question": "Who is the golfer that golfs for Northern Ireland?", "context": "CREATE TABLE table_name_54 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_13 WHERE place = \"1\"", "question": "The golfer in place 1 if from what country?", "context": "CREATE TABLE table_name_13 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE tie_no = \"26\"", "question": "On what date was Tie #26 played?", "context": "CREATE TABLE table_name_90 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE tie_no = \"13\"", "question": "On what date was Tie #13 played?", "context": "CREATE TABLE table_name_93 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_5 WHERE away_team = \"scunthorpe united\"", "question": "For which tie was Scunthorpe United the away team?", "context": "CREATE TABLE table_name_5 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE home_team = \"leeds united\"", "question": "What was the final score for the tie where Leeds United was the home team?", "context": "CREATE TABLE table_name_6 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_97 WHERE away_team = \"southampton\"", "question": "In the tie where Southampton was the away team, who was the home team?", "context": "CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_61 WHERE tie_no = \"19\"", "question": "What is the name of the away team for Tie #19?", "context": "CREATE TABLE table_name_61 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT nominated_work FROM table_name_15 WHERE year = 2000 AND results = \"won\"", "question": "Which Nominated Work won in 2000?", "context": "CREATE TABLE table_name_15 (nominated_work VARCHAR, year VARCHAR, results VARCHAR)"}, {"answer": "SELECT results FROM table_name_23 WHERE year = 2000", "question": "What was the result in 2000?", "context": "CREATE TABLE table_name_23 (results VARCHAR, year VARCHAR)"}, {"answer": "SELECT results FROM table_name_66 WHERE awards_show = \"71st academy awards\"", "question": "What was the results of the 71st Academy Awards show?", "context": "CREATE TABLE table_name_66 (results VARCHAR, awards_show VARCHAR)"}, {"answer": "SELECT city FROM table_name_89 WHERE year_opened = \"1996\" AND state = \"alabama\"", "question": "What is the city in Alabama that opened in 1996?", "context": "CREATE TABLE table_name_89 (city VARCHAR, year_opened VARCHAR, state VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_75 WHERE year_opened = \"1903\"", "question": "What is the lowest capacity for 1903?", "context": "CREATE TABLE table_name_75 (capacity INTEGER, year_opened VARCHAR)"}, {"answer": "SELECT year_opened FROM table_name_50 WHERE state = \"north carolina\" AND capacity < 21 OFFSET 500", "question": "What was the year opened for North Carolina with a smaller than 21,500 capacity?", "context": "CREATE TABLE table_name_50 (year_opened VARCHAR, state VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT rank FROM table_name_83 WHERE year_opened = \"1959\" AND state = \"pennsylvania\"", "question": "What is the rank for the year opened in 1959 in Pennsylvania?", "context": "CREATE TABLE table_name_83 (rank VARCHAR, year_opened VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_87 WHERE weight_class = \"lightweight\" AND date = \"february 28, 2009\"", "question": "How many years were lightweight class on february 28, 2009?", "context": "CREATE TABLE table_name_87 (year VARCHAR, weight_class VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_78 WHERE result = \"t 10-10\"", "question": "How many weeks have a Result of t 10-10?", "context": "CREATE TABLE table_name_78 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE week < 8 AND opponent = \"atlanta falcons\"", "question": "Which Date has a Week smaller than 8, and an Opponent of atlanta falcons?", "context": "CREATE TABLE table_name_31 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_85 WHERE opponent = \"minnesota vikings\"", "question": "Which Result has an Opponent of minnesota vikings?", "context": "CREATE TABLE table_name_85 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_35 WHERE time = \"1:47.65\" AND lane > 3", "question": "What is the Rank of the Athlete with a Time of 1:47.65 and in Lane 3 or larger?", "context": "CREATE TABLE table_name_35 (rank INTEGER, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT place FROM table_name_88 WHERE event = \"half marathon\"", "question": "What is the Place of the half marathon Event?", "context": "CREATE TABLE table_name_88 (place VARCHAR, event VARCHAR)"}, {"answer": "SELECT place FROM table_name_18 WHERE date = \"august 25, 2007\"", "question": "What is the Place of the Event on August 25, 2007?", "context": "CREATE TABLE table_name_18 (place VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_97 WHERE event = \"half marathon\"", "question": "What is the Country of the Half Marathon Event?", "context": "CREATE TABLE table_name_97 (country VARCHAR, event VARCHAR)"}, {"answer": "SELECT country FROM table_name_39 WHERE event = \"10,000m\"", "question": "What is the Country of the 10,000m Event?", "context": "CREATE TABLE table_name_39 (country VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_69 WHERE country = \"(local competition)\"", "question": "What is the Event labeled Country of (local competition)?", "context": "CREATE TABLE table_name_69 (event VARCHAR, country VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE time = \"2:23:47\"", "question": "What is the Date of the Event with a Time of 2:23:47?", "context": "CREATE TABLE table_name_23 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_89 WHERE time = \"6:30.53\"", "question": "What is the rank of the time of 6:30.53?", "context": "CREATE TABLE table_name_89 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_70 WHERE time = \"6:24.61\"", "question": "What is the names of the rowers that the time was 6:24.61?", "context": "CREATE TABLE table_name_70 (rowers VARCHAR, time VARCHAR)"}, {"answer": "SELECT country FROM table_name_45 WHERE rank < 6 AND notes = \"fb\" AND time = \"6:32.32\"", "question": "What country has a rank smaller than 6, a time of 6:32.32 and notes of FB?", "context": "CREATE TABLE table_name_45 (country VARCHAR, time VARCHAR, rank VARCHAR, notes VARCHAR)"}, {"answer": "SELECT actor FROM table_name_21 WHERE duration = \"20 years\" AND soap_opera = \"home and away\"", "question": "Which actor played on Home and Away for 20 years?", "context": "CREATE TABLE table_name_21 (actor VARCHAR, duration VARCHAR, soap_opera VARCHAR)"}, {"answer": "SELECT character FROM table_name_64 WHERE duration = \"12 years\" AND soap_opera = \"neighbours\"", "question": "What character was portrayed by the same actor for 12 years on Neighbours?", "context": "CREATE TABLE table_name_64 (character VARCHAR, duration VARCHAR, soap_opera VARCHAR)"}, {"answer": "SELECT duration FROM table_name_83 WHERE actor = \"joyce jacobs\"", "question": "How long did Joyce Jacobs portray her character on her show?", "context": "CREATE TABLE table_name_83 (duration VARCHAR, actor VARCHAR)"}, {"answer": "SELECT actor FROM table_name_85 WHERE duration = \"17 years\" AND character = \"harold bishop\"", "question": "Which actor played Harold Bishop for 17 years?", "context": "CREATE TABLE table_name_85 (actor VARCHAR, duration VARCHAR, character VARCHAR)"}, {"answer": "SELECT years FROM table_name_98 WHERE actor = \"martin sacks\"", "question": "Which years did Martin Sacks work on a soap opera?", "context": "CREATE TABLE table_name_98 (years VARCHAR, actor VARCHAR)"}, {"answer": "SELECT arena FROM table_name_84 WHERE points = \"65\"", "question": "What is the Arena when there were 65 points?", "context": "CREATE TABLE table_name_84 (arena VARCHAR, points VARCHAR)"}, {"answer": "SELECT record FROM table_name_45 WHERE score = \"2\u20130\"", "question": "What is the record when the score was 2\u20130?", "context": "CREATE TABLE table_name_45 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT points FROM table_name_15 WHERE date = \"february 10\"", "question": "What were the points on February 10?", "context": "CREATE TABLE table_name_15 (points VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_78 WHERE arena = \"palasport olimpico\"", "question": "What is the record at Palasport Olimpico?", "context": "CREATE TABLE table_name_78 (record VARCHAR, arena VARCHAR)"}, {"answer": "SELECT points FROM table_name_52 WHERE score = \"3\u20131\" AND record = \"25\u201319\u201311\"", "question": "What is the points when the score was 3\u20131, and record was 25\u201319\u201311?", "context": "CREATE TABLE table_name_52 (points VARCHAR, score VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_53 WHERE arena = \"arrowhead pond of anaheim\" AND loss = \"bryzgalov (10\u201311\u20131)\"", "question": "What is the record at Arrowhead Pond of Anaheim, when the loss was Bryzgalov (10\u201311\u20131)?", "context": "CREATE TABLE table_name_53 (record VARCHAR, arena VARCHAR, loss VARCHAR)"}, {"answer": "SELECT fin_time FROM table_name_10 WHERE finish = \"2/1q\" AND track = \"the meadowlands\"", "question": "What is the finishing time with a 2/1q finish on the Meadowlands track?", "context": "CREATE TABLE table_name_10 (fin_time VARCHAR, finish VARCHAR, track VARCHAR)"}, {"answer": "SELECT last_1_4 FROM table_name_22 WHERE race = \"qua\" AND fin_time = \"2:03.1\"", "question": "What is the last 1/4 for the QUA race with a finishing time of 2:03.1?", "context": "CREATE TABLE table_name_22 (last_1_4 VARCHAR, race VARCHAR, fin_time VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_98 WHERE time = \"1:01.14.62\" AND rider = \"michael russell\"", "question": "How many ranks have 1:01.14.62 as the time, with michael russell as the rider?", "context": "CREATE TABLE table_name_98 (rank VARCHAR, time VARCHAR, rider VARCHAR)"}, {"answer": "SELECT time FROM table_name_34 WHERE rider = \"phil mcgurk\"", "question": "What time has phil mcgurk as the rider?", "context": "CREATE TABLE table_name_34 (time VARCHAR, rider VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_71 WHERE rider = \"michael russell\"", "question": "How many ranks have michael russell as the rider?", "context": "CREATE TABLE table_name_71 (rank INTEGER, rider VARCHAR)"}, {"answer": "SELECT SUM(goals_conceded) FROM table_name_81 WHERE draw > 5 AND points > 21 AND played < 18", "question": "How many goals were conceded by the team with more than 21 points more than 5 draws and less than 18 games played?", "context": "CREATE TABLE table_name_81 (goals_conceded INTEGER, played VARCHAR, draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(goals_conceded) FROM table_name_75 WHERE points = 32 AND lost > 2 AND goals_scored > 22", "question": "How many goals were conceded by teams with 32 points, more than 2 losses and more than 22 goals scored?", "context": "CREATE TABLE table_name_75 (goals_conceded VARCHAR, goals_scored VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_25 WHERE goals_conceded = 41 AND place > 10", "question": "How many points did the team have that conceded 41 goals and finish in a place larger than 10?", "context": "CREATE TABLE table_name_25 (points VARCHAR, goals_conceded VARCHAR, place VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE week = 13", "question": "Who was the opponent in week 13?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT location FROM table_name_48 WHERE mascot = \"kingsmen\"", "question": "What location has kingsmen as the mascot?", "context": "CREATE TABLE table_name_48 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT ihsaa_football_class FROM table_name_39 WHERE county = \"20 elkhart\"", "question": "What IHSAA Football Class has 20 elkhart as the county?", "context": "CREATE TABLE table_name_39 (ihsaa_football_class VARCHAR, county VARCHAR)"}, {"answer": "SELECT school FROM table_name_32 WHERE location = \"south bend\" AND mascot = \"indians\"", "question": "What school has south bend as the location, with indians as the mascot?", "context": "CREATE TABLE table_name_32 (school VARCHAR, location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_31 WHERE position < 1", "question": "What's the total that the position is less than 1?", "context": "CREATE TABLE table_name_31 (total INTEGER, position INTEGER)"}, {"answer": "SELECT SUM(b_score) FROM table_name_10 WHERE position < 7 AND total = 16.125", "question": "What the B Score when the total is 16.125 and the position is less than 7?", "context": "CREATE TABLE table_name_10 (b_score INTEGER, position VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_87 WHERE a_score > 7 AND b_score < 8.65", "question": "What was the total rating that had a score higher than 7 and a b score smaller than 8.65?", "context": "CREATE TABLE table_name_87 (total INTEGER, a_score VARCHAR, b_score VARCHAR)"}, {"answer": "SELECT gymnast FROM table_name_94 WHERE b_score = 8.95 AND a_score < 6.9", "question": "Which gymnast had a b score of 8.95 and an a score less than 6.9", "context": "CREATE TABLE table_name_94 (gymnast VARCHAR, b_score VARCHAR, a_score VARCHAR)"}, {"answer": "SELECT winners FROM table_name_11 WHERE year = 1998", "question": "Who were the winners in 1998?", "context": "CREATE TABLE table_name_11 (winners VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_5 WHERE runner_up = \"portugal\" AND third_place = \"italy\" AND best_goalkeeper = \"nuno hidalgo\"", "question": "What year was the runner-up Portugal with Italy in third place, and the gold keeper Nuno Hidalgo?", "context": "CREATE TABLE table_name_5 (year INTEGER, best_goalkeeper VARCHAR, runner_up VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT college FROM table_name_23 WHERE pick = 213", "question": "What is the college pick for 213?", "context": "CREATE TABLE table_name_23 (college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT round FROM table_name_54 WHERE date = \"21 february 2009\"", "question": "what is the round on 21 february 2009?", "context": "CREATE TABLE table_name_54 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_name_66 WHERE school = \"rochester community\"", "question": "What is the highest enrollment for rochester community school?", "context": "CREATE TABLE table_name_66 (enrollment INTEGER, school VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM table_name_38 WHERE mascot = \"hot dogs\" AND year_joined > 1926", "question": "What is the average enrollment that has hot dogs as the mascot, with a year joined later than 1926?", "context": "CREATE TABLE table_name_38 (enrollment INTEGER, mascot VARCHAR, year_joined VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_name_46 WHERE location = \"lafayette\"", "question": "What is the lowest enrollment that has Lafayette as the location?", "context": "CREATE TABLE table_name_46 (enrollment INTEGER, location VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_62 WHERE name = \"pacific life open\" AND year = \"2006\"", "question": "Who was runner-up in the 2006 Pacific Life Open?", "context": "CREATE TABLE table_name_62 (runner_up VARCHAR, name VARCHAR, year VARCHAR)"}, {"answer": "SELECT class FROM table_name_66 WHERE quantity_made = \"29\"", "question": "Which Class has a Quantity made of 29?", "context": "CREATE TABLE table_name_66 (class VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT theme_song_s_ FROM table_name_64 WHERE romaji_title = \"yukan club\"", "question": "What is the Theme Song of the Yukan Club?", "context": "CREATE TABLE table_name_64 (theme_song_s_ VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT theme_song_s_ FROM table_name_5 WHERE japanese_title = \"\u50cd\u304d\u30de\u30f3\"", "question": "What is the Theme Song of \u50cd\u304d\u30de\u30f3?", "context": "CREATE TABLE table_name_5 (theme_song_s_ VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT theme_song_s_ FROM table_name_87 WHERE tv_station = \"fuji tv\" AND average_ratings = \"16.65%\"", "question": "What is the Theme Song of the show on Fuji TV Station with Average Ratings of 16.65%?", "context": "CREATE TABLE table_name_87 (theme_song_s_ VARCHAR, tv_station VARCHAR, average_ratings VARCHAR)"}, {"answer": "SELECT theme_song_s_ FROM table_name_23 WHERE romaji_title = \"iryu -team medical dragon-2\"", "question": "What is the Theme Song of Iryu -Team Medical Dragon-2?", "context": "CREATE TABLE table_name_23 (theme_song_s_ VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT road_numbers FROM table_name_33 WHERE build_year = \"1943\" AND railroad__quantity_ = \"clinchfield railroad (12 new, 6 secondhand)\"", "question": "what is the road numbers when the build year is 1943, the railroad (quantity) is clinchfield railroad (12 new, 6 secondhand)?", "context": "CREATE TABLE table_name_33 (road_numbers VARCHAR, build_year VARCHAR, railroad__quantity_ VARCHAR)"}, {"answer": "SELECT road_numbers FROM table_name_8 WHERE builder = \"alco\" AND railroad__quantity_ = \"union pacific railroad (105)\" AND class = \"csa-2\"", "question": "what is the road numbers when the builder is alco, the railroad (quantity) is union pacific railroad (105) and the class is csa-2?", "context": "CREATE TABLE table_name_8 (road_numbers VARCHAR, class VARCHAR, builder VARCHAR, railroad__quantity_ VARCHAR)"}, {"answer": "SELECT road_numbers FROM table_name_66 WHERE class = \"z-7\"", "question": "what is the road numbers when the class is z-7?", "context": "CREATE TABLE table_name_66 (road_numbers VARCHAR, class VARCHAR)"}, {"answer": "SELECT peak_date FROM table_name_1 WHERE main_artist = \"kelis\"", "question": "What was the peak date of Kelis's song?", "context": "CREATE TABLE table_name_1 (peak_date VARCHAR, main_artist VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_37 WHERE lane > 4 AND rank > 5", "question": "What is the Nationality of the Swimmer in Lane 4 or larger with a Rank of 5 or more?", "context": "CREATE TABLE table_name_37 (nationality VARCHAR, lane VARCHAR, rank VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_87 WHERE week = 3", "question": "Who was the opponent the falcons played against on week 3?", "context": "CREATE TABLE table_name_87 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(podiums) FROM table_name_60 WHERE stage_wins = 91 AND points < 140", "question": "what is the highest podiums when the stage wins is 91 and the points is less than 140?", "context": "CREATE TABLE table_name_60 (podiums INTEGER, stage_wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_49 WHERE podiums > 1 AND points = 80 AND starts < 28", "question": "what is the average wins when the podiums is more than 1, points is 80 and starts is less than 28?", "context": "CREATE TABLE table_name_49 (wins INTEGER, starts VARCHAR, podiums VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_72 WHERE constructor = \"citro\u00ebn total world rally team\" AND wins < 7", "question": "what is the total number of points when the constructor is citro\u00ebn total world rally team and the wins is less than 7?", "context": "CREATE TABLE table_name_72 (points VARCHAR, constructor VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_42 WHERE chassis = \"focus rs wrc 08 and 09\" AND stage_wins > 91", "question": "what is the highest points when the chassis is focus rs wrc 08 and 09 and the stage wins is more than 91?", "context": "CREATE TABLE table_name_42 (points INTEGER, chassis VARCHAR, stage_wins VARCHAR)"}, {"answer": "SELECT driver FROM table_name_66 WHERE total_time = \"16:58\"", "question": "What driver had a total time of 16:58?", "context": "CREATE TABLE table_name_66 (driver VARCHAR, total_time VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_77 WHERE margin = \"03:30\"", "question": "What's the lowest capacity when the margin is 03:30?", "context": "CREATE TABLE table_name_77 (capacity INTEGER, margin VARCHAR)"}, {"answer": "SELECT vehicle FROM table_name_20 WHERE class = \"6c3g\"", "question": "Which vehicle has a class 6c3g?", "context": "CREATE TABLE table_name_20 (vehicle VARCHAR, class VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_89 WHERE vehicle = \"1975 toyota celica 1600gt\"", "question": "What is the lowest capacity for the 1975 toyota celica 1600gt?", "context": "CREATE TABLE table_name_89 (capacity INTEGER, vehicle VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_46 WHERE react = 0.164", "question": "who is the athlete when react is 0.164?", "context": "CREATE TABLE table_name_46 (athlete VARCHAR, react VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_64 WHERE react > 0.164 AND nationality = \"guinea\"", "question": "what is the lowest lane when react is more than 0.164 and the nationality is guinea?", "context": "CREATE TABLE table_name_64 (lane INTEGER, react VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT year_s__retired FROM table_name_5 WHERE quantity_made = \"25\"", "question": "What is the year retired of the locomotive which had the quantity made of 25?", "context": "CREATE TABLE table_name_5 (year_s__retired VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT class FROM table_name_19 WHERE quantity_made = \"20\"", "question": "Which class had a quantity made of 20?", "context": "CREATE TABLE table_name_19 (class VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT class FROM table_name_48 WHERE wheel_arrangement = \"2-8-2\" AND quantity_made = \"25\"", "question": "What is the locomotive class that has a wheel arrangement of 2-8-2 and a quantity made of 25?", "context": "CREATE TABLE table_name_48 (class VARCHAR, wheel_arrangement VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT quantity_preserved FROM table_name_11 WHERE quantity_made = \"6\"", "question": "What is the quantity preserved to the locomotive with a quantity made of 6?", "context": "CREATE TABLE table_name_11 (quantity_preserved VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT MAX(number_of_electorates__2009_) FROM table_name_81 WHERE name = \"beohari\"", "question": "What is Beohari's highest number of electorates?", "context": "CREATE TABLE table_name_81 (number_of_electorates__2009_ INTEGER, name VARCHAR)"}, {"answer": "SELECT district FROM table_name_13 WHERE constituency_number = \"79\"", "question": "What is the district with 79 constituency number?", "context": "CREATE TABLE table_name_13 (district VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT reserved_for___sc___st__none_ FROM table_name_31 WHERE name = \"beohari\"", "question": "What is Beohari's reserved for (SC/ST/None)?", "context": "CREATE TABLE table_name_31 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(prominence__m_) FROM table_name_88 WHERE peak = \"moussa ali terara\"", "question": "What is the sum of the prominence in m of moussa ali terara peak?", "context": "CREATE TABLE table_name_88 (prominence__m_ INTEGER, peak VARCHAR)"}, {"answer": "SELECT COUNT(prominence__m_) FROM table_name_27 WHERE country = \"ethiopia\" AND col__m_ = 1728 AND elevation__m_ < 3 OFFSET 358", "question": "What is the total prominence number in m of ethiopia, which has a col in m of 1728 and an elevation less than 3,358?", "context": "CREATE TABLE table_name_27 (prominence__m_ VARCHAR, elevation__m_ VARCHAR, country VARCHAR, col__m_ VARCHAR)"}, {"answer": "SELECT team FROM table_name_22 WHERE start = 8 AND year < 2008", "question": "Which team had a start of 8 in years under 2008?", "context": "CREATE TABLE table_name_22 (team VARCHAR, start VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(finish) FROM table_name_35 WHERE year = 2011", "question": "What was Jeff's finish in 2011?", "context": "CREATE TABLE table_name_35 (finish INTEGER, year VARCHAR)"}, {"answer": "SELECT COUNT(finish) FROM table_name_78 WHERE start = 15", "question": "What is the number of finishes having a start of 15?", "context": "CREATE TABLE table_name_78 (finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT COUNT(2011 AS _1h) FROM table_name_9 WHERE 2006 = 27.4 AND 2007 > 27.7", "question": "How many 2011 1H values have a 2006 of 27.4 and 2007 over 27.7?", "context": "CREATE TABLE table_name_9 (Id VARCHAR)"}, {"answer": "SELECT MAX(2011 AS _1h) FROM table_name_35 WHERE 2005 > 28", "question": "What is the highest 2011 1H value for a 2005 over 28?", "context": "CREATE TABLE table_name_35 (Id VARCHAR)"}, {"answer": "SELECT AVG(2007) FROM table_name_6 WHERE 2009 < 20 AND 2006 = 2.8", "question": "What is the average 2007 value for a 2006 of 2.8 and 2009 under 20?", "context": "CREATE TABLE table_name_6 (Id VARCHAR)"}, {"answer": "SELECT round FROM table_name_85 WHERE venue = \"villa park\"", "question": "What was the round for Villa Park?", "context": "CREATE TABLE table_name_85 (round VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(latitude) FROM table_name_24 WHERE pop__2010_ = 24 AND water__sqmi_ > 0.319", "question": "What is latitude when 2010 population is 24 and water is more than 0.319?", "context": "CREATE TABLE table_name_24 (latitude INTEGER, pop__2010_ VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT mhra_approved FROM table_name_24 WHERE generic_name = \"blonanserin\"", "question": "Is Blonanserin MHRA approved?", "context": "CREATE TABLE table_name_24 (mhra_approved VARCHAR, generic_name VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_41 WHERE away_team = \"kwong wah\"", "question": "What is the home team when kwong wah was the away team?", "context": "CREATE TABLE table_name_41 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE time = \"14:30\" AND venue = \"happy valley recreation ground pitch #2\"", "question": "What is the score of the match at happy valley recreation ground pitch #2 with a 14:30 time?", "context": "CREATE TABLE table_name_93 (score VARCHAR, time VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_67 WHERE time = \"14:30\" AND away_team = \"sun source\"", "question": "What is the venue of the match with a 14:30 time and sun source as the away team?", "context": "CREATE TABLE table_name_67 (venue VARCHAR, time VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_63 WHERE home_team = \"solon\"", "question": "What is the away team when solon was the home team?", "context": "CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_21 WHERE name = \"elizabeth simmonds\"", "question": "What is Elizabeth Simmonds' average lane number?", "context": "CREATE TABLE table_name_21 (lane INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_32 WHERE name = \"laure manaudou\"", "question": "What is Laure Manaudou's highest rank?", "context": "CREATE TABLE table_name_32 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT internet_explorer FROM table_name_4 WHERE opera = \"1.67%\" AND period = \"2012 q1\"", "question": "What internet explorer has 1.67% as the opera, with 2012 q1 as the period?", "context": "CREATE TABLE table_name_4 (internet_explorer VARCHAR, opera VARCHAR, period VARCHAR)"}, {"answer": "SELECT safari FROM table_name_58 WHERE period = \"2012 q4\"", "question": "What safari has 2012 q4 as the period?", "context": "CREATE TABLE table_name_58 (safari VARCHAR, period VARCHAR)"}, {"answer": "SELECT period FROM table_name_36 WHERE internet_explorer = \"53.52%\"", "question": "What period has 53.52% as the internet explorer?", "context": "CREATE TABLE table_name_36 (period VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT other FROM table_name_85 WHERE firefox = \"20.80%\"", "question": "What is the other that has 20.80% as the firefox?", "context": "CREATE TABLE table_name_85 (other VARCHAR, firefox VARCHAR)"}, {"answer": "SELECT opera FROM table_name_48 WHERE firefox = \"19.87%\"", "question": "What opera has 19.87% as the firefox?", "context": "CREATE TABLE table_name_48 (opera VARCHAR, firefox VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_76 WHERE react = 0.209 AND rank > 7", "question": "How many total Time listings have a 0.209 React entry and a Rank that is greater than 7?", "context": "CREATE TABLE table_name_76 (time VARCHAR, react VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_16 WHERE athlete = \"liu xiaosheng\" AND react < 0.245", "question": "How many total Rank listings have Liu Xiaosheng listed as the athlete with a react entry that is smaller than 0.245?", "context": "CREATE TABLE table_name_16 (rank VARCHAR, athlete VARCHAR, react VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_7 WHERE lane < 4 AND nationality = \"san marino\"", "question": "What is the total average for Rank entries where the Lane listed is smaller than 4 and the Nationality listed is San Marino?", "context": "CREATE TABLE table_name_7 (rank INTEGER, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT lane FROM table_name_84 WHERE react > 0.209 AND rank > 6", "question": "What Lane has a 0.209 React entered with a Rank entry that is larger than 6?", "context": "CREATE TABLE table_name_84 (lane VARCHAR, react VARCHAR, rank VARCHAR)"}, {"answer": "SELECT notes FROM table_name_74 WHERE competition = \"world championships\" AND position = \"2nd\"", "question": "Which Notes have a Competition of world championships, and a Position of 2nd?", "context": "CREATE TABLE table_name_74 (notes VARCHAR, competition VARCHAR, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_4 WHERE year > 2012", "question": "What was the venue after 2012?", "context": "CREATE TABLE table_name_4 (venue VARCHAR, year INTEGER)"}, {"answer": "SELECT notes FROM table_name_89 WHERE year = 2011", "question": "What were the notes in 2011?", "context": "CREATE TABLE table_name_89 (notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_63 WHERE position = \"9th\"", "question": "Which Year has a Position of 9th?", "context": "CREATE TABLE table_name_63 (year INTEGER, position VARCHAR)"}, {"answer": "SELECT MAX(csa_cma_2009_population) FROM table_name_89 WHERE state__province = \"ia-il\"", "question": "What's the CSA/CMA Population in IA-IL?", "context": "CREATE TABLE table_name_89 (csa_cma_2009_population INTEGER, state__province VARCHAR)"}, {"answer": "SELECT projected_2025_population FROM table_name_68 WHERE state__province = \"in-mi\"", "question": "What's the projected population of IN-MI?", "context": "CREATE TABLE table_name_68 (projected_2025_population VARCHAR, state__province VARCHAR)"}, {"answer": "SELECT rank FROM table_name_90 WHERE lane = 6 AND heat = 2", "question": "Can you tell me the Rank that has the Lane of 6, and the Heat of 2?", "context": "CREATE TABLE table_name_90 (rank VARCHAR, lane VARCHAR, heat VARCHAR)"}, {"answer": "SELECT time FROM table_name_72 WHERE heat = 1 AND lane = 2", "question": "Can you tell me the Time that has the Heat of 1, and the Lane of 2?", "context": "CREATE TABLE table_name_72 (time VARCHAR, heat VARCHAR, lane VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_46 WHERE score = \"87-92\"", "question": "What is the Game # that scored 87-92?", "context": "CREATE TABLE table_name_46 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_7 WHERE nation = \"spain\"", "question": "What is the lowest rank that spain got?", "context": "CREATE TABLE table_name_7 (rank INTEGER, nation VARCHAR)"}, {"answer": "SELECT result FROM table_name_58 WHERE competition = \"2000 asian cup qualification\"", "question": "What was the result from the 2000 asian cup qualification?", "context": "CREATE TABLE table_name_58 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE score = \"7\u20130\"", "question": "On what date was the game that had a score of 7\u20130?", "context": "CREATE TABLE table_name_91 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_38 WHERE date = \"february 27, 2000\"", "question": "What was the result of the game that was played on february 27, 2000?", "context": "CREATE TABLE table_name_38 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_95 WHERE score = \"3\u20131\"", "question": "During what competition was a game played with a score of 3\u20131?", "context": "CREATE TABLE table_name_95 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE competition = \"king's cup 2000\"", "question": "What was the score from the king's cup 2000?", "context": "CREATE TABLE table_name_31 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_72 WHERE home_team = \"port vale\"", "question": "What is the tie number when the home team is Port Vale?", "context": "CREATE TABLE table_name_72 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE home_team = \"liverpool\"", "question": "What is the score in the Liverpool home game?", "context": "CREATE TABLE table_name_67 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_28 WHERE tie_no = \"3\"", "question": "Which away team has a tie number of 3?", "context": "CREATE TABLE table_name_28 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT murder__2012__rate_per_100, 000 FROM table_name_26 WHERE peace__2012__gpi = 1.616", "question": "What murder (2012) rate per 100,00 also has a 1.616 as the peace (2012) GPI?", "context": "CREATE TABLE table_name_26 (murder__2012__rate_per_100 VARCHAR, peace__2012__gpi VARCHAR)"}, {"answer": "SELECT COUNT(poverty__2009__hpi_1__percentage) FROM table_name_69 WHERE gdp__ppp___2012__us$_per_capita = \"11,284\"", "question": "What is the sum of poverty (2009) HPI-1 % when the GDP (PPP) (2012) US$ per capita of 11,284?", "context": "CREATE TABLE table_name_69 (poverty__2009__hpi_1__percentage VARCHAR, gdp__ppp___2012__us$_per_capita VARCHAR)"}, {"answer": "SELECT notes FROM table_name_94 WHERE time = \"6:24.21\"", "question": "What are the notes with the time 6:24.21?", "context": "CREATE TABLE table_name_94 (notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT country FROM table_name_68 WHERE rank = 2", "question": "What country is ranked #2?", "context": "CREATE TABLE table_name_68 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT time FROM table_name_78 WHERE rank = 3", "question": "What's the time of Rank 3?", "context": "CREATE TABLE table_name_78 (time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT championship_titles FROM table_name_83 WHERE fastest_laps < 3 AND podiums = 22", "question": "How many titles for the nation with less than 3 fastest laps and 22 podiums?", "context": "CREATE TABLE table_name_83 (championship_titles VARCHAR, fastest_laps VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT MIN(fastest_laps) FROM table_name_74 WHERE race_entries__starts_ = \"32 (30)\" AND podiums < 2", "question": "How many fastest laps for the nation with 32 (30) entries and starts and fewer than 2 podiums?", "context": "CREATE TABLE table_name_74 (fastest_laps INTEGER, race_entries__starts_ VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT jury FROM table_name_51 WHERE singer = \"kostas bigalis & mirella fragkopoulou\"", "question": "Kostas Bigalis & Mirella Fragkopoulou the singer had what has the jury?", "context": "CREATE TABLE table_name_51 (jury VARCHAR, singer VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_62 WHERE place = \"4th\"", "question": "What is the greatest draw that has 4th for place?", "context": "CREATE TABLE table_name_62 (draw INTEGER, place VARCHAR)"}, {"answer": "SELECT jury FROM table_name_6 WHERE singer = \"maria-louiza & not 4 sale\"", "question": "Singer Maria-Louiza & Not 4 Sale had what jury?", "context": "CREATE TABLE table_name_6 (jury VARCHAR, singer VARCHAR)"}, {"answer": "SELECT song FROM table_name_73 WHERE televoting__votes_ = \"2nd (25,517)\"", "question": "What song was 2nd (25,517) in televoting (votes)?", "context": "CREATE TABLE table_name_73 (song VARCHAR, televoting__votes_ VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_59 WHERE group = \"a\" AND athlete = \"yanina karolchyk\" AND result > 18", "question": "What is the average rank for Group A athlete Yanina Karolchyk, and a result higher than 18?", "context": "CREATE TABLE table_name_59 (rank INTEGER, result VARCHAR, group VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_43 WHERE result = 18.55", "question": "Which athlete, has an 18.55 result", "context": "CREATE TABLE table_name_43 (athlete VARCHAR, result VARCHAR)"}, {"answer": "SELECT name FROM table_name_12 WHERE result = 54.67", "question": "Who has a Result of 54.67?", "context": "CREATE TABLE table_name_12 (name VARCHAR, result VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_16 WHERE heat < 2 AND rank = 15", "question": "Which Nationality has a Heat smaller than 2, and a Rank of 15?", "context": "CREATE TABLE table_name_16 (nationality VARCHAR, heat VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_73 WHERE name = \"tsvetelina kirilova\" AND result < 55.97", "question": "Which Rank has a Name of tsvetelina kirilova, and a Result smaller than 55.97?", "context": "CREATE TABLE table_name_73 (rank INTEGER, name VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(heat) FROM table_name_30 WHERE nationality = \"bulgaria\" AND result > 55.97", "question": "Which Heat has a Nationality of bulgaria, and a Result larger than 55.97?", "context": "CREATE TABLE table_name_30 (heat INTEGER, nationality VARCHAR, result VARCHAR)"}, {"answer": "SELECT notes FROM table_name_23 WHERE builder = \"ford\" AND total = \"5\"", "question": "What are the notes for Ford when the total is 5?", "context": "CREATE TABLE table_name_23 (notes VARCHAR, builder VARCHAR, total VARCHAR)"}, {"answer": "SELECT builder FROM table_name_30 WHERE fleet_series = \"s057-s061\"", "question": "Which builder has a fleet series of s057-s061?", "context": "CREATE TABLE table_name_30 (builder VARCHAR, fleet_series VARCHAR)"}, {"answer": "SELECT total FROM table_name_84 WHERE builder = \"international\"", "question": "How many international builders are there?", "context": "CREATE TABLE table_name_84 (total VARCHAR, builder VARCHAR)"}, {"answer": "SELECT model FROM table_name_60 WHERE fleet_series = \"s410-s434\"", "question": "Which model with a fleet series of s410-s434?", "context": "CREATE TABLE table_name_60 (model VARCHAR, fleet_series VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_31 WHERE silver < 18 AND rank = \"14\"", "question": "What is the lowest total for those receiving less than 18 but more than 14?", "context": "CREATE TABLE table_name_31 (total INTEGER, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_94 WHERE losses > 5 AND club = \"mortlake\"", "question": "How many draws did Mortlake have when the losses were more than 5?", "context": "CREATE TABLE table_name_94 (draws VARCHAR, losses VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_73 WHERE losses > 8 AND wins < 2", "question": "What is the draw when the losses were more than 8 and less than 2 wins?", "context": "CREATE TABLE table_name_73 (draws INTEGER, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_90 WHERE club = \"cobden\" AND draws > 0", "question": "How many wins did Cobden have when draws were more than 0?", "context": "CREATE TABLE table_name_90 (wins VARCHAR, club VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_35 WHERE draws = 0 AND wins > 11", "question": "What's the number of losses when the wins were more than 11 and had 0 draws?", "context": "CREATE TABLE table_name_35 (losses VARCHAR, draws VARCHAR, wins VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE date = \"16 december 1978\" AND tie_no = \"9\"", "question": "What is the score for the date of 16 december 1978, with a tie no of 9?", "context": "CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_26 WHERE home_team = \"swansea city\"", "question": "What is the tie no for the home team swansea city?", "context": "CREATE TABLE table_name_26 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE tie_no = \"replay\" AND away_team = \"watford\"", "question": "What date had a tie no of replay, and an away team of watford?", "context": "CREATE TABLE table_name_57 (date VARCHAR, tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_95 WHERE home_team = \"colchester united\"", "question": "Waht was the away team when the home team is colchester united?", "context": "CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_59 WHERE away_team = \"altrincham\"", "question": "What is the tie no for the away team altrincham?", "context": "CREATE TABLE table_name_59 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT pos FROM table_name_25 WHERE name = \"michael lee\"", "question": "Which position did Michael Lee play?", "context": "CREATE TABLE table_name_25 (pos VARCHAR, name VARCHAR)"}, {"answer": "SELECT weight FROM table_name_50 WHERE name = \"serhiy alfyorov\"", "question": "What was the weight of Serhiy Alfyorov?", "context": "CREATE TABLE table_name_50 (weight VARCHAR, name VARCHAR)"}, {"answer": "SELECT weight FROM table_name_63 WHERE born = \"1980\"", "question": "What is the weight of the person born in 1980?", "context": "CREATE TABLE table_name_63 (weight VARCHAR, born VARCHAR)"}, {"answer": "SELECT pos FROM table_name_20 WHERE born = \"1984\" AND height = \"1.80\"", "question": "What is the position of the player born in 1984 with a height of 1.80m?", "context": "CREATE TABLE table_name_20 (pos VARCHAR, born VARCHAR, height VARCHAR)"}, {"answer": "SELECT weight FROM table_name_58 WHERE height = \"2.00\"", "question": "What is the weight of the player with a height of 2.00m?", "context": "CREATE TABLE table_name_58 (weight VARCHAR, height VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_68 WHERE school_club_team = \"arizona\" AND pick < 298", "question": "Which Round has a School/Club Team of arizona, and a Pick smaller than 298?", "context": "CREATE TABLE table_name_68 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_99 WHERE position = \"linebacker\"", "question": "Who plays linebacker?", "context": "CREATE TABLE table_name_99 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_48 WHERE pick = 160", "question": "Which player's pick is 160?", "context": "CREATE TABLE table_name_48 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT status FROM table_name_18 WHERE total_votes = \"0\" AND couples_team = \"purple team\"", "question": "Who had 0 total votes in the purple team?", "context": "CREATE TABLE table_name_18 (status VARCHAR, total_votes VARCHAR, couples_team VARCHAR)"}, {"answer": "SELECT total_votes FROM table_name_27 WHERE members = \"holly scouler\"", "question": "What were Holly Scouler's total votes?", "context": "CREATE TABLE table_name_27 (total_votes VARCHAR, members VARCHAR)"}, {"answer": "SELECT total_votes FROM table_name_62 WHERE members = \"holly scouler\"", "question": "What was Holly Scouler's total votes", "context": "CREATE TABLE table_name_62 (total_votes VARCHAR, members VARCHAR)"}, {"answer": "SELECT max_aperture FROM table_name_77 WHERE focal_length = \"20mm\"", "question": "What is the maximum aperture of the lens(es) with a focal length of 20mm?", "context": "CREATE TABLE table_name_77 (max_aperture VARCHAR, focal_length VARCHAR)"}, {"answer": "SELECT 35 AS mm_efl_and_equivalent_aperture FROM table_name_67 WHERE max_aperture = \"f /2.5\"", "question": "What is the 35mm EFL and the equivalent aperture of the lens(es) with a maximum aperture of f /2.5?", "context": "CREATE TABLE table_name_67 (max_aperture VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_54 WHERE notes = \"fb\" AND athlete = \"andre vonarburg\"", "question": "What is the lowest rank for Andre Vonarburg, when the notes are FB?", "context": "CREATE TABLE table_name_54 (rank INTEGER, notes VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_44 WHERE country = \"norway\"", "question": "Which athlete is from Norway?", "context": "CREATE TABLE table_name_44 (athlete VARCHAR, country VARCHAR)"}, {"answer": "SELECT notes FROM table_name_46 WHERE athlete = \"lassi karonen\"", "question": "What is listed in notes for the athlete, lassi karonen?", "context": "CREATE TABLE table_name_46 (notes VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_10 WHERE time = \"6:50.40\"", "question": "What is the highest rank for the team that raced a time of 6:50.40?", "context": "CREATE TABLE table_name_10 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_59 WHERE country = \"india\"", "question": "What is the sum of the ranks for india?", "context": "CREATE TABLE table_name_59 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT nation FROM table_name_84 WHERE performance = \"9.69\"", "question": "Which nation ran a time of 9.69 seconds?", "context": "CREATE TABLE table_name_84 (nation VARCHAR, performance VARCHAR)"}, {"answer": "SELECT place FROM table_name_49 WHERE nation = \"cuba\"", "question": "What is the Place associated with Cuba?", "context": "CREATE TABLE table_name_49 (place VARCHAR, nation VARCHAR)"}, {"answer": "SELECT place FROM table_name_50 WHERE nation = \"jamaica\" AND performance = \"19.30\"", "question": "Which place had a performance of 19.30 seconds by Jamaica?", "context": "CREATE TABLE table_name_50 (place VARCHAR, nation VARCHAR, performance VARCHAR)"}, {"answer": "SELECT game FROM table_name_85 WHERE year = 2005", "question": "What game was in 2005?", "context": "CREATE TABLE table_name_85 (game VARCHAR, year VARCHAR)"}, {"answer": "SELECT game FROM table_name_66 WHERE year = 2001", "question": "What game was in 2001?", "context": "CREATE TABLE table_name_66 (game VARCHAR, year VARCHAR)"}, {"answer": "SELECT game FROM table_name_7 WHERE year = 2011", "question": "What game was in 2011?", "context": "CREATE TABLE table_name_7 (game VARCHAR, year VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_33 WHERE developer_s_ = \"rockstar games\"", "question": "What's the platform that has Rockstar Games as the developer?", "context": "CREATE TABLE table_name_33 (platform_s_ VARCHAR, developer_s_ VARCHAR)"}, {"answer": "SELECT genre FROM table_name_23 WHERE year < 2002 AND game = \"the sims\"", "question": "What's the genre of The Sims before 2002?", "context": "CREATE TABLE table_name_23 (genre VARCHAR, year VARCHAR, game VARCHAR)"}, {"answer": "SELECT actor FROM table_name_73 WHERE character = \"marie-rose de putter\"", "question": "What actor plays Marie-Rose De Putter?", "context": "CREATE TABLE table_name_73 (actor VARCHAR, character VARCHAR)"}, {"answer": "SELECT character FROM table_name_93 WHERE duration = \"13 years\" AND actor = \"vicky versavel\"", "question": "What character did Vicky Versavel play for 13 years?", "context": "CREATE TABLE table_name_93 (character VARCHAR, duration VARCHAR, actor VARCHAR)"}, {"answer": "SELECT years FROM table_name_74 WHERE torque = \"n\u00b7m (lb\u00b7ft)@1750-3000\" AND model = \"sdrive16d\"", "question": "What years did the sdrive16d model have a Torque of n\u00b7m (lb\u00b7ft)@1750-3000?", "context": "CREATE TABLE table_name_74 (years VARCHAR, torque VARCHAR, model VARCHAR)"}, {"answer": "SELECT torque FROM table_name_60 WHERE power = \"ps (kw; hp)@4000\" AND model = \"xdrive20d\"", "question": "What is the torque of the xdrive20d model, which has a power of ps (kw; hp)@4000?", "context": "CREATE TABLE table_name_60 (torque VARCHAR, power VARCHAR, model VARCHAR)"}, {"answer": "SELECT engine_code FROM table_name_11 WHERE model = \"xdrive23d\"", "question": "What is the engine code of the xdrive23d model?", "context": "CREATE TABLE table_name_11 (engine_code VARCHAR, model VARCHAR)"}, {"answer": "SELECT model FROM table_name_60 WHERE torque = \"n\u00b7m (lb\u00b7ft)@1500-2500\"", "question": "What model is the n\u00b7m (lb\u00b7ft)@1500-2500 torque?", "context": "CREATE TABLE table_name_60 (model VARCHAR, torque VARCHAR)"}, {"answer": "SELECT ihsaa_football_class FROM table_name_78 WHERE ihsaa_class = \"aaa\" AND location = \"decatur\"", "question": "What's the IHSAA Football Class in Decatur with an AAA IHSAA class?", "context": "CREATE TABLE table_name_78 (ihsaa_football_class VARCHAR, ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_name_73 WHERE location = \"kendallville\"", "question": "What's the enrollment for Kendallville?", "context": "CREATE TABLE table_name_73 (enrollment INTEGER, location VARCHAR)"}, {"answer": "SELECT country FROM table_name_77 WHERE medal = \"silver\" AND event = \"boxing, heavyweight\"", "question": "What country has a silver medal in the boxing, heavyweight event?", "context": "CREATE TABLE table_name_77 (country VARCHAR, medal VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_68 WHERE medal = \"bronze\" AND olympics = \"2000 summer olympics\"", "question": "What is the event in the 2000 summer olympics with a bronze medal?", "context": "CREATE TABLE table_name_68 (event VARCHAR, medal VARCHAR, olympics VARCHAR)"}, {"answer": "SELECT event FROM table_name_57 WHERE olympics = \"1952 summer olympics\"", "question": "Which event is in the 1952 summer olympics?", "context": "CREATE TABLE table_name_57 (event VARCHAR, olympics VARCHAR)"}, {"answer": "SELECT country FROM table_name_16 WHERE olympics = \"2008 summer olympics\" AND name = \"vadim devyatovskiy\"", "question": "Which country in the 2008 summer olympics is vadim devyatovskiy from?", "context": "CREATE TABLE table_name_16 (country VARCHAR, olympics VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_19 WHERE nation = \"netherlands\" AND bronze > 0", "question": "What is the average Gold entry for the Netherlands that also has a Bronze entry that is greater than 0?", "context": "CREATE TABLE table_name_19 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT nation FROM table_name_28 WHERE gold > 0 AND total > 2 AND bronze = 0 AND silver > 1", "question": "What Nation has a Gold entry that is greater than 0, a Total that is greater than 2, a Silver entry that is larger than 1, and 0 Bronze?", "context": "CREATE TABLE table_name_28 (nation VARCHAR, silver VARCHAR, bronze VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_90 WHERE bronze < 2 AND nation = \"turkey\" AND total > 1", "question": "What is Turkey's average Gold entry that also has a Bronze entry that is smaller than 2 and the Total is greater than 1?", "context": "CREATE TABLE table_name_90 (gold INTEGER, total VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_41 WHERE byes < 0", "question": "What were the losses when the byes were less than 0?", "context": "CREATE TABLE table_name_41 (losses INTEGER, byes INTEGER)"}, {"answer": "SELECT play FROM table_name_11 WHERE company = \"national theatre of greece\"", "question": "what is the play when the company is national theatre of greece?", "context": "CREATE TABLE table_name_11 (play VARCHAR, company VARCHAR)"}, {"answer": "SELECT company FROM table_name_28 WHERE country = \"greece\" AND author = \"aeschylus\"", "question": "what is the company when the country is greece and the author is aeschylus?", "context": "CREATE TABLE table_name_28 (company VARCHAR, country VARCHAR, author VARCHAR)"}, {"answer": "SELECT country FROM table_name_67 WHERE base = \"ljubljana\"", "question": "what is the country when the base is ljubljana?", "context": "CREATE TABLE table_name_67 (country VARCHAR, base VARCHAR)"}, {"answer": "SELECT base FROM table_name_67 WHERE play = \"thesmophoriazusae\"", "question": "what is the base when the play is thesmophoriazusae?", "context": "CREATE TABLE table_name_67 (base VARCHAR, play VARCHAR)"}, {"answer": "SELECT company FROM table_name_63 WHERE base = \"ljubljana\"", "question": "what is the company when the base is ljubljana?", "context": "CREATE TABLE table_name_63 (company VARCHAR, base VARCHAR)"}, {"answer": "SELECT play FROM table_name_61 WHERE company = \"cyprus theatre organisation\"", "question": "what is the play when the company is cyprus theatre organisation?", "context": "CREATE TABLE table_name_61 (play VARCHAR, company VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_94 WHERE country = \"denmark\"", "question": "What was the highest rank for rowers who represented Denmark?", "context": "CREATE TABLE table_name_94 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT time FROM table_name_27 WHERE country = \"great britain\"", "question": "What was the time for the rowers representing great britain?", "context": "CREATE TABLE table_name_27 (time VARCHAR, country VARCHAR)"}, {"answer": "SELECT arena FROM table_name_79 WHERE opponent = \"@ oilers\" AND date = \"may 25\"", "question": "Which Arena has an Opponent of @ oilers, and a Date of may 25?", "context": "CREATE TABLE table_name_79 (arena VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_70 WHERE loss = \"roloson (11\u20135)\"", "question": "How much attendance has a Loss of roloson (11\u20135)?", "context": "CREATE TABLE table_name_70 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_74 WHERE arena = \"arrowhead pond of anaheim\" AND loss = \"giguere (3\u20133)\"", "question": "Which Attendance has an Arena of arrowhead pond of anaheim, and a Loss of giguere (3\u20133)?", "context": "CREATE TABLE table_name_74 (attendance INTEGER, arena VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_25 WHERE opponent = \"@ oilers\" AND date = \"may 25\"", "question": "Which Attendance has an Opponent of @ oilers, and a Date of may 25?", "context": "CREATE TABLE table_name_25 (attendance INTEGER, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_75 WHERE date = \"may 21\"", "question": "What was the attendance on may 21?", "context": "CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_50 WHERE nationality = \"united states\" AND wind = \"1.7\"", "question": "Who's the athlete with a wind of 1.7 and from the United States?", "context": "CREATE TABLE table_name_50 (athlete VARCHAR, nationality VARCHAR, wind VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_45 WHERE wind = \"1.8\"", "question": "Who was the athlete with a wind of 1.8?", "context": "CREATE TABLE table_name_45 (athlete VARCHAR, wind VARCHAR)"}, {"answer": "SELECT wind FROM table_name_83 WHERE time = \"19.32\"", "question": "What's the wind when the time was 19.32?", "context": "CREATE TABLE table_name_83 (wind VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_14 WHERE nation = \"romania\" AND bronze < 2", "question": "What's the highest total of Romania when the bronze was less than 2?", "context": "CREATE TABLE table_name_14 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_71 WHERE rank = \"6\" AND silver > 2", "question": "What's the total of rank number 6 with more than 2 silver?", "context": "CREATE TABLE table_name_71 (total INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT internet_explorer FROM table_name_39 WHERE firefox = \"27.85%\"", "question": "What percentage of browsers were using Internet Explorer during the period in which 27.85% were using Firefox?", "context": "CREATE TABLE table_name_39 (internet_explorer VARCHAR, firefox VARCHAR)"}, {"answer": "SELECT internet_explorer FROM table_name_81 WHERE date = \"april 2009\"", "question": "What percentage of browsers were using Internet Explorer in April 2009?", "context": "CREATE TABLE table_name_81 (internet_explorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT safari FROM table_name_62 WHERE firefox = \"31.27%\"", "question": "What percentage of browsers were using Safari during the period in which 31.27% were using Firefox?", "context": "CREATE TABLE table_name_62 (safari VARCHAR, firefox VARCHAR)"}, {"answer": "SELECT opera FROM table_name_53 WHERE date = \"october 2010\"", "question": "What percentage of browsers were using Opera in October 2010?", "context": "CREATE TABLE table_name_53 (opera VARCHAR, date VARCHAR)"}, {"answer": "SELECT opera FROM table_name_69 WHERE date = \"november 2009\"", "question": "What percentage of browsers were using Opera in November 2009?", "context": "CREATE TABLE table_name_69 (opera VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_55 WHERE notes = \"sa/b\" AND time = \"5:51.30\"", "question": "What country has sa/b as the notes, and a time of 5:51.30?", "context": "CREATE TABLE table_name_55 (country VARCHAR, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_76 WHERE notes = \"sa/b\" AND time = \"5:51.30\"", "question": "Who were the rowers when notes were sa/b, with a time of 5:51.30?", "context": "CREATE TABLE table_name_76 (rowers VARCHAR, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT country FROM table_name_72 WHERE rank > 4", "question": "What country is ranked larger than 4?", "context": "CREATE TABLE table_name_72 (country VARCHAR, rank INTEGER)"}, {"answer": "SELECT MIN(enrollment) FROM table_name_8 WHERE mascot = \"trojans\"", "question": "What's the least enrolled when the mascot was the Trojans?", "context": "CREATE TABLE table_name_8 (enrollment INTEGER, mascot VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_77 WHERE mascot = \"red devils\"", "question": "What's the IHSAA class of the Red Devils?", "context": "CREATE TABLE table_name_77 (ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_67 WHERE date = \"february 11, 2012\" AND attendance < 18 OFFSET 735", "question": "What's the rank for February 11, 2012 with less than 18,735 in attendance?", "context": "CREATE TABLE table_name_67 (rank INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT height__ft_ FROM table_name_83 WHERE contestant = \"cynthia mobumba\"", "question": "What is Cynthia Mobumba's height?", "context": "CREATE TABLE table_name_83 (height__ft_ VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_31 WHERE country = \"indonesia\"", "question": "What is the hometown of the player from Indonesia?", "context": "CREATE TABLE table_name_31 (hometown VARCHAR, country VARCHAR)"}, {"answer": "SELECT school FROM table_name_88 WHERE round = 3", "question": "From what school was the player drafted in round 3?", "context": "CREATE TABLE table_name_88 (school VARCHAR, round VARCHAR)"}, {"answer": "SELECT school FROM table_name_50 WHERE position = \"linebacker\" AND pick < 245 AND round = 6", "question": "From what school was the linebacker that had a pick less than 245 and was drafted in round 6?", "context": "CREATE TABLE table_name_50 (school VARCHAR, round VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT rebuildjahr_e_ FROM table_name_17 WHERE class = \"t2aa\"", "question": "What was the Rebuildjahr(e) for the T2AA class?", "context": "CREATE TABLE table_name_17 (rebuildjahr_e_ VARCHAR, class VARCHAR)"}, {"answer": "SELECT COUNT(quantity_rebuilt) FROM table_name_4 WHERE type = \"1b n2t\" AND railway_number_s_ = \"88, 118\"", "question": "What is the total of quantity rebuilt if the type is 1B N2T and the railway number is 88, 118?", "context": "CREATE TABLE table_name_4 (quantity_rebuilt VARCHAR, type VARCHAR, railway_number_s_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE away_team = \"chester\"", "question": "What date was Chester the away team?", "context": "CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_4 WHERE home_team = \"wolverhampton wanderers\"", "question": "What's the score when the Wolverhampton Wanderers played at home?", "context": "CREATE TABLE table_name_4 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_86 WHERE away_team = \"manchester united\"", "question": "Who was the home team that played against Manchester United?", "context": "CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE tie_no = \"6\"", "question": "What's the score when the tie number was 6?", "context": "CREATE TABLE table_name_35 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE tie_no = \"replay\"", "question": "What's the score when the tie number was replay?", "context": "CREATE TABLE table_name_70 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT episode FROM table_name_38 WHERE program = \"batman\"", "question": "What's the episode of Batman?", "context": "CREATE TABLE table_name_38 (episode VARCHAR, program VARCHAR)"}, {"answer": "SELECT first_aired FROM table_name_30 WHERE role = \"professor hubert whitehead\"", "question": "What's the first aired date when Professor Hubert Whitehead was the role?", "context": "CREATE TABLE table_name_30 (first_aired VARCHAR, role VARCHAR)"}, {"answer": "SELECT first_aired FROM table_name_91 WHERE episode = \"animated series\"", "question": "What's the first aired date of the Animated Series episode?", "context": "CREATE TABLE table_name_91 (first_aired VARCHAR, episode VARCHAR)"}, {"answer": "SELECT role FROM table_name_4 WHERE program = \"the bionic woman\"", "question": "What's the roles of the Bionic Woman?", "context": "CREATE TABLE table_name_4 (role VARCHAR, program VARCHAR)"}, {"answer": "SELECT episode FROM table_name_85 WHERE first_aired = \"1976\"", "question": "What episode was first aired in 1976?", "context": "CREATE TABLE table_name_85 (episode VARCHAR, first_aired VARCHAR)"}, {"answer": "SELECT MAX(total_goals) FROM table_name_98 WHERE fa_cup_goals = 0 AND league_apps = \"41\"", "question": "What is the most total goals for a player having 0 FA Cup goals and 41 League appearances?", "context": "CREATE TABLE table_name_98 (total_goals INTEGER, fa_cup_goals VARCHAR, league_apps VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_62 WHERE total > 1 AND gold > 0", "question": "How many bronze medals were won when the total is more than 1, and gold is more than 0?", "context": "CREATE TABLE table_name_62 (bronze INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_23 WHERE gold < 1 AND bronze = 0 AND total > 1", "question": "What is the rank when there was less than 1 gold, 0 bronze, and more than 1 total?", "context": "CREATE TABLE table_name_23 (rank INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_24 WHERE bronze < 0", "question": "What is the total when there were less than 0 bronze?", "context": "CREATE TABLE table_name_24 (total VARCHAR, bronze INTEGER)"}, {"answer": "SELECT MAX(rank) FROM table_name_58 WHERE gold = 0 AND total > 1 AND silver > 0", "question": "What is the rank when there is 0 gold, the total is more than 1, and silver is more than 0?", "context": "CREATE TABLE table_name_58 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_57 WHERE nation = \"lithuania (ltu)\" AND total > 1", "question": "What is the number of gold medals for Lithuania (ltu), when the total is more than 1?", "context": "CREATE TABLE table_name_57 (gold INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_60 WHERE production_number = 1327", "question": "What is the release date of production number 1327?", "context": "CREATE TABLE table_name_60 (release_date VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT MAX(production_number) FROM table_name_66 WHERE director = \"i. freleng\" AND release_date = \"1955-04-02\"", "question": "What is the highest production number released on 1955-04-02 with i. freleng as the director?", "context": "CREATE TABLE table_name_66 (production_number INTEGER, director VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT title FROM table_name_65 WHERE production_number > 1334 AND release_date = \"1955-08-27\"", "question": "What is the title with the production number greater than 1334 released on 1955-08-27?", "context": "CREATE TABLE table_name_65 (title VARCHAR, production_number VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT years FROM table_name_21 WHERE role = \"steve rhoades\"", "question": "How many years did the role of Steve Rhoades last?", "context": "CREATE TABLE table_name_21 (years VARCHAR, role VARCHAR)"}, {"answer": "SELECT episodes FROM table_name_37 WHERE actor = \"david faustino\"", "question": "How many episodes did the actor David Faustino appear in?", "context": "CREATE TABLE table_name_37 (episodes VARCHAR, actor VARCHAR)"}, {"answer": "SELECT county FROM table_name_29 WHERE rank > 8 AND player = \"joe mckenna\"", "question": "Which County has a Rank larger than 8, and a Player of joe mckenna?", "context": "CREATE TABLE table_name_29 (county VARCHAR, rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_13 WHERE county = \"kilkenny\" AND tally = \"1\u20134\" AND rank > 10", "question": "Which Total has a County of kilkenny, and a Tally of 1\u20134, and a Rank larger than 10?", "context": "CREATE TABLE table_name_13 (total INTEGER, rank VARCHAR, county VARCHAR, tally VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_80 WHERE county = \"galway\"", "question": "What is galway county's total?", "context": "CREATE TABLE table_name_80 (total INTEGER, county VARCHAR)"}, {"answer": "SELECT event FROM table_name_95 WHERE class = \"time trial hc a\"", "question": "What is the event when the class is time trial hc a?", "context": "CREATE TABLE table_name_95 (event VARCHAR, class VARCHAR)"}, {"answer": "SELECT gold FROM table_name_96 WHERE event = \"road race details\" AND silver = \"max weber germany (ger)\"", "question": "Who received gold when the event is road race details and silver is max weber germany (ger)?", "context": "CREATE TABLE table_name_96 (gold VARCHAR, event VARCHAR, silver VARCHAR)"}, {"answer": "SELECT gold FROM table_name_2 WHERE event = \"time trial details\" AND silver = \"simon richardson great britain (gbr)\"", "question": "Who received gold when the event is time trial details and silver is simon richardson great britain (gbr)?", "context": "CREATE TABLE table_name_2 (gold VARCHAR, event VARCHAR, silver VARCHAR)"}, {"answer": "SELECT gold FROM table_name_42 WHERE silver = \"wolfgang eibeck austria (aut)\"", "question": "who received gold when silver is wolfgang eibeck austria (aut)?", "context": "CREATE TABLE table_name_42 (gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT event FROM table_name_1 WHERE gold = \"darren kenny great britain (gbr)\"", "question": "what is the event when gold is darren kenny great britain (gbr)?", "context": "CREATE TABLE table_name_1 (event VARCHAR, gold VARCHAR)"}, {"answer": "SELECT director FROM table_name_77 WHERE title = \"bunker hill bunny\"", "question": "Who directed Bunker Hill Bunny?", "context": "CREATE TABLE table_name_77 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT director FROM table_name_53 WHERE title = \"an egg scramble\"", "question": "Who directed An Egg Scramble?", "context": "CREATE TABLE table_name_53 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_35 WHERE attendance = \"65,554\"", "question": "Who was the opposing team in the game attended by 65,554?", "context": "CREATE TABLE table_name_35 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_61 WHERE place < 3 AND percentage = \"30.71%\"", "question": "what is the highest draw when the place is less than 3 and the percentage is 30.71%?", "context": "CREATE TABLE table_name_61 (draw INTEGER, place VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_name_62 WHERE place > 4", "question": "what is the least draw when the place is higher than 4?", "context": "CREATE TABLE table_name_62 (draw INTEGER, place INTEGER)"}, {"answer": "SELECT MIN(pick) FROM table_name_30 WHERE position = \"defensive tackle\" AND player = \"dave haverdick\"", "question": "What is the lowest pick of the defensive tackle player dave haverdick?", "context": "CREATE TABLE table_name_30 (pick INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_3 WHERE player = \"jim h. mitchell\"", "question": "What is the average pick of player jim h. mitchell?", "context": "CREATE TABLE table_name_3 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT prominence__m_ FROM table_name_88 WHERE col__m_ > 2012 AND peak = \"mount kazbek\"", "question": "With a Col (m) larger than 2012, what is Mount Kazbek's Prominence (m)?", "context": "CREATE TABLE table_name_88 (prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR)"}, {"answer": "SELECT genre FROM table_name_53 WHERE station = \"class 95fm\"", "question": "What genre has a station of Class 95FM?", "context": "CREATE TABLE table_name_53 (genre VARCHAR, station VARCHAR)"}, {"answer": "SELECT genre FROM table_name_77 WHERE station = \"bbc world service\"", "question": "What is the genre of the BBC World Service?", "context": "CREATE TABLE table_name_77 (genre VARCHAR, station VARCHAR)"}, {"answer": "SELECT station FROM table_name_63 WHERE genre = \"talk radio\" AND operator = \"bbc radio\"", "question": "Which station is operated by BBC Radio under the talk radio genre?", "context": "CREATE TABLE table_name_63 (station VARCHAR, genre VARCHAR, operator VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_70 WHERE total < 560 AND bronze > 6 AND gold = 3", "question": "What's the sum of Silver with total smaller than 560, a Bronze larger than 6, and a Gold of 3?", "context": "CREATE TABLE table_name_70 (silver INTEGER, gold VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_89 WHERE bronze > 15 AND silver < 197 AND nation = \"saint lucia\" AND total > 50", "question": "What's the sum of Gold with a Bronze that's larger than 15, Silver that's smaller than 197, the Nation of Saint Lucia, and has a Total that is larger than 50?", "context": "CREATE TABLE table_name_89 (gold INTEGER, total VARCHAR, nation VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT nation FROM table_name_72 WHERE bronze < 10 AND silver = 5", "question": "What Nation has a Bronze that is smaller than 10 with a Silver of 5?", "context": "CREATE TABLE table_name_72 (nation VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_96 WHERE gold > 0 AND bronze < 23 AND total > 22 AND nation = \"saint kitts and nevis\"", "question": "What's the total number of Silver that has Gold that's larger than 0, Bronze that's smaller than 23, a Total that's larger than 22, and has the Nation of Saint Kitts and Nevis?", "context": "CREATE TABLE table_name_96 (silver VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_70 WHERE gold = 4 AND total > 25", "question": "What is listed as the highest Silver that also has a Gold of 4 and a Total that's larger than 25?", "context": "CREATE TABLE table_name_70 (silver INTEGER, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_18 WHERE points > 16 AND drawn < 1", "question": "What's the lost when there were more than 16 points and had a drawn less than 1?", "context": "CREATE TABLE table_name_18 (lost INTEGER, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_38 WHERE name = \"ea schongau\" AND drawn > 1", "question": "What's the most points for Ea Schongau with more than 1 drawn?", "context": "CREATE TABLE table_name_38 (points INTEGER, name VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_54 WHERE position > 1 AND lost > 6 AND played < 14", "question": "What's the points that has a lost more 6, played less than 14 and a position more than 1?", "context": "CREATE TABLE table_name_54 (points INTEGER, played VARCHAR, position VARCHAR, lost VARCHAR)"}, {"answer": "SELECT dvd_set_release_date FROM table_name_76 WHERE network = \"cbs\"", "question": "When dis cbs release the DVD set?", "context": "CREATE TABLE table_name_76 (dvd_set_release_date VARCHAR, network VARCHAR)"}, {"answer": "SELECT SUM(season) FROM table_name_67 WHERE episodes > 30", "question": "What is the total season number for episodes later than episode 30?", "context": "CREATE TABLE table_name_67 (season INTEGER, episodes INTEGER)"}, {"answer": "SELECT year FROM table_name_36 WHERE platform_s_ = \"windows\" AND game = \"grim fandango\"", "question": "What year is the Grim Fandango with a windows platform?", "context": "CREATE TABLE table_name_36 (year VARCHAR, platform_s_ VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_20 WHERE year > 1997 AND platform_s_ = \"windows\" AND genre = \"adventure\"", "question": "What game in the genre of adventure, has a windows platform and its year is after 1997?", "context": "CREATE TABLE table_name_20 (game VARCHAR, genre VARCHAR, year VARCHAR, platform_s_ VARCHAR)"}, {"answer": "SELECT 215 FROM table_name_9 WHERE athlete = \"tom parsons\"", "question": "What is the 2.15 for Tom Parsons?", "context": "CREATE TABLE table_name_9 (athlete VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_81 WHERE 220 = \"o\" AND 225 = \"xxx\" AND nationality = \"brazil\"", "question": "Which athlete from Brazil has 2.20 O and 2.25 of XXX?", "context": "CREATE TABLE table_name_81 (athlete VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_68 WHERE 220 = \"o\" AND 225 = \"o\" AND nationality = \"germany\"", "question": "Which athlete from Germany has 2.20 of O and a 2.25 of O?", "context": "CREATE TABLE table_name_68 (athlete VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MAX(2011) FROM table_name_38 WHERE airport = \"bole international airport\"", "question": "Which 2011 has an Airport of bole international airport?", "context": "CREATE TABLE table_name_38 (airport VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_10 WHERE title = \"forward march hare\"", "question": "What's the release date of Forward March Hare?", "context": "CREATE TABLE table_name_10 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_28 WHERE title = \"upswept hare\"", "question": "What's the release date of Upswept Hare?", "context": "CREATE TABLE table_name_28 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT series FROM table_name_80 WHERE title = \"kiss me cat\"", "question": "What's the series of Kiss Me Cat?", "context": "CREATE TABLE table_name_80 (series VARCHAR, title VARCHAR)"}, {"answer": "SELECT country FROM table_name_85 WHERE rank < 4 AND athlete = \"ekaterina karsten\"", "question": "What country is the athlete ekaterina karsten from with a rank less than 4?", "context": "CREATE TABLE table_name_85 (country VARCHAR, rank VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT time FROM table_name_81 WHERE notes = \"sa/b\" AND athlete = \"frida svensson\"", "question": "What is the time of frida svensson's race that had sa/b under the notes?", "context": "CREATE TABLE table_name_81 (time VARCHAR, notes VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT time FROM table_name_29 WHERE athlete = \"emma twigg\"", "question": "What is the race time for emma twigg?", "context": "CREATE TABLE table_name_29 (time VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_56 WHERE time = \"7:34.24\"", "question": "What is the total rank for the athlete that had a race time of 7:34.24?", "context": "CREATE TABLE table_name_56 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE week > 9 AND attendance = \"72,051\"", "question": "What is the Date of the game with an attendance of 72,051 after Week 9?", "context": "CREATE TABLE table_name_4 (date VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_51 WHERE attendance = \"49,097\"", "question": "In what Week was the Attendance 49,097?", "context": "CREATE TABLE table_name_51 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE attendance = \"73,405\"", "question": "On what Date was the Attendance 73,405?", "context": "CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_32 WHERE date = \"november 27, 2005\"", "question": "Who was the Opponent on November 27, 2005?", "context": "CREATE TABLE table_name_32 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_87 WHERE date = \"bye\"", "question": "What is the Week with a Date of Bye?", "context": "CREATE TABLE table_name_87 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank FROM table_name_89 WHERE bronze = 1 AND nation = \"lithuania\"", "question": "Which Rank has a Bronze of 1, and a Nation of lithuania?", "context": "CREATE TABLE table_name_89 (rank VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_29 WHERE rank = \"1\" AND bronze < 3", "question": "How much Silver has a Rank of 1, and a Bronze smaller than 3?", "context": "CREATE TABLE table_name_29 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_53 WHERE gold = 2 AND nation = \"slovakia\" AND total > 2", "question": "Which Bronze has a Gold of 2, and a Nation of slovakia, and a Total larger than 2?", "context": "CREATE TABLE table_name_53 (bronze INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_54 WHERE gold > 1 AND silver < 3 AND nation = \"germany\" AND total > 11", "question": "How much Bronze has a Gold larger than 1, and a Silver smaller than 3, and a Nation of germany, and a Total larger than 11?", "context": "CREATE TABLE table_name_54 (bronze VARCHAR, total VARCHAR, nation VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_91 WHERE position < 1", "question": "What's the total of the position of 1?", "context": "CREATE TABLE table_name_91 (total INTEGER, position INTEGER)"}, {"answer": "SELECT MIN(position) FROM table_name_72 WHERE total < 66.5 AND compulsory = 30.9 AND voluntary < 33.7", "question": "What's the position that has a total less than 66.5m, a compulsory of 30.9 and voluntary less than 33.7?", "context": "CREATE TABLE table_name_72 (position INTEGER, voluntary VARCHAR, total VARCHAR, compulsory VARCHAR)"}, {"answer": "SELECT COUNT(compulsory) FROM table_name_42 WHERE voluntary = 38.7 AND total > 69.2", "question": "What's the total compulsory when the total is more than 69.2 and the voluntary is 38.7?", "context": "CREATE TABLE table_name_42 (compulsory VARCHAR, voluntary VARCHAR, total VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_61 WHERE director = \"robert mckimson\" AND title = \"wet hare\"", "question": "What date was Wet Hare, directed by Robert McKimson, released?", "context": "CREATE TABLE table_name_61 (release_date VARCHAR, director VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_10 WHERE director = \"friz freleng\" AND production_number = 1553", "question": "What is the title of the film with production number 1553, directed by Friz Freleng?", "context": "CREATE TABLE table_name_10 (title VARCHAR, director VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT production_number FROM table_name_49 WHERE title = \"crows' feat\"", "question": "What is Crows' Feat's production number?", "context": "CREATE TABLE table_name_49 (production_number VARCHAR, title VARCHAR)"}, {"answer": "SELECT safari FROM table_name_7 WHERE opera = \"2.4%\" AND internet_explorer = \"29.9%\"", "question": "What is the safari value with a 2.4% opera and 29.9% internet explorer?", "context": "CREATE TABLE table_name_7 (safari VARCHAR, opera VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT firefox FROM table_name_97 WHERE safari = \"1.9%\"", "question": "What is the firefox value with a 1.9% safari?", "context": "CREATE TABLE table_name_97 (firefox VARCHAR, safari VARCHAR)"}, {"answer": "SELECT firefox FROM table_name_22 WHERE opera = \"1.8%\" AND date = \"30 july 2007\"", "question": "What is the firefox value with a 1.8% opera on 30 July 2007?", "context": "CREATE TABLE table_name_22 (firefox VARCHAR, opera VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE internet_explorer = \"62.2%\"", "question": "What is the date when internet explorer was 62.2%", "context": "CREATE TABLE table_name_17 (date VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT firefox FROM table_name_56 WHERE internet_explorer = \"22.0%\"", "question": "What is the firefox value with a 22.0% internet explorer?", "context": "CREATE TABLE table_name_56 (firefox VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT safari FROM table_name_70 WHERE internet_explorer = \"28.0%\"", "question": "What is the safari value with a 28.0% internet explorer?", "context": "CREATE TABLE table_name_70 (safari VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_34 WHERE region = \"world\"", "question": "Which catalog value has a region of world?", "context": "CREATE TABLE table_name_34 (catalog VARCHAR, region VARCHAR)"}, {"answer": "SELECT format_s_ FROM table_name_28 WHERE region = \"europe\" AND catalog = \"webb185\"", "question": "Which formats have a region of Europe and Catalog value of WEBB185?", "context": "CREATE TABLE table_name_28 (format_s_ VARCHAR, region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_57 WHERE catalog = \"512335\"", "question": "Which region is associated with the catalog value of 512335?", "context": "CREATE TABLE table_name_57 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format_s_ FROM table_name_15 WHERE label = \"atlantic records\" AND catalog = \"512336\"", "question": "What are the formats associated with the Atlantic Records label, catalog number 512336?", "context": "CREATE TABLE table_name_15 (format_s_ VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE region = \"europe\" AND label = \"wichita recordings\"", "question": "Which date was associated with the release in Europe on the Wichita Recordings label?", "context": "CREATE TABLE table_name_5 (date VARCHAR, region VARCHAR, label VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_11 WHERE venue = \"edmonton, canada\" AND weight_class__kg_ > 100", "question": "What is the lowest year that has edmonton, canada as the venue with a weight class (kg) greater than 100?", "context": "CREATE TABLE table_name_11 (year INTEGER, venue VARCHAR, weight_class__kg_ VARCHAR)"}, {"answer": "SELECT MIN(weight_class__kg_) FROM table_name_73 WHERE venue = \"sofia, bulgaria\"", "question": "What is the lowest weight class (kg) that has sofia, bulgaria as the venue?", "context": "CREATE TABLE table_name_73 (weight_class__kg_ INTEGER, venue VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_37 WHERE event = \"fila world championships\" AND venue = \"toledo, united states\" AND weight_class__kg_ < 97", "question": "What is the highest year that has fila world championships as the event, with toledo, united states as the venue, and a weight class (kg) less than 97?", "context": "CREATE TABLE table_name_37 (year INTEGER, weight_class__kg_ VARCHAR, event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT airport FROM table_name_10 WHERE icao = \"ksea\"", "question": "What is the Airport with the ICAO fo KSEA?", "context": "CREATE TABLE table_name_10 (airport VARCHAR, icao VARCHAR)"}, {"answer": "SELECT icao FROM table_name_91 WHERE city = \"frankfurt\"", "question": "What is the IcAO of Frankfurt?", "context": "CREATE TABLE table_name_91 (icao VARCHAR, city VARCHAR)"}, {"answer": "SELECT airport FROM table_name_87 WHERE icao = \"eddh\"", "question": "What is the Airport with a ICAO of EDDH?", "context": "CREATE TABLE table_name_87 (airport VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_56 WHERE iata = \"sea\"", "question": "What Airport's IATA is SEA?", "context": "CREATE TABLE table_name_56 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT city FROM table_name_51 WHERE iata = \"muc\"", "question": "What is the City with an IATA of MUC?", "context": "CREATE TABLE table_name_51 (city VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_30 WHERE city = \"akureyri\"", "question": "What is the IATA OF Akureyri?", "context": "CREATE TABLE table_name_30 (iata VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(height__m_) FROM table_name_11 WHERE mountain = \"jbel ghat\"", "question": "How tall is the Mountain of jbel ghat?", "context": "CREATE TABLE table_name_11 (height__m_ VARCHAR, mountain VARCHAR)"}, {"answer": "SELECT country FROM table_name_12 WHERE prominence__m_ < 1540 AND height__m_ < 3530 AND range = \"virunga mountains\" AND mountain = \"nyiragongo\"", "question": "Which Country has a Prominence (m) smaller than 1540, and a Height (m) smaller than 3530, and a Range of virunga mountains, and a Mountain of nyiragongo?", "context": "CREATE TABLE table_name_12 (country VARCHAR, mountain VARCHAR, range VARCHAR, prominence__m_ VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_15 WHERE height__m_ > 4100 AND range = \"arsi mountains\" AND mountain = \"bada\"", "question": "Which Country has a Height (m) larger than 4100, and a Range of arsi mountains, and a Mountain of bada?", "context": "CREATE TABLE table_name_15 (country VARCHAR, mountain VARCHAR, height__m_ VARCHAR, range VARCHAR)"}, {"answer": "SELECT percentage FROM table_name_9 WHERE draw = 6", "question": "Which Percentage has a Draw of 6?", "context": "CREATE TABLE table_name_9 (percentage VARCHAR, draw VARCHAR)"}, {"answer": "SELECT team FROM table_name_69 WHERE rank < 4 AND time = \"1:14.04.88\"", "question": "Which team had a rank under 4 with a time of 1:14.04.88?", "context": "CREATE TABLE table_name_69 (team VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT speed FROM table_name_52 WHERE time = \"1:14.15.64\"", "question": "What was the speed for the rider with a time of 1:14.15.64?", "context": "CREATE TABLE table_name_52 (speed VARCHAR, time VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_11 WHERE round = 2", "question": "Which College/junior/club team has a Round of 2?", "context": "CREATE TABLE table_name_11 (college_junior_club_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_65 WHERE player = \"dan chicoine\" AND pick > 23", "question": "Which Round has a Player of dan chicoine, and a Pick larger than 23?", "context": "CREATE TABLE table_name_65 (round INTEGER, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT SUM(production_number) FROM table_name_33 WHERE title = \"from hare to heir\"", "question": "What is the production number of From Hare to Heir?", "context": "CREATE TABLE table_name_33 (production_number INTEGER, title VARCHAR)"}, {"answer": "SELECT series FROM table_name_34 WHERE production_number = 1547", "question": "What is the Series number of the episode with a production number of 1547?", "context": "CREATE TABLE table_name_34 (series VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT COUNT(production_number) FROM table_name_24 WHERE director = \"robert mckimson\" AND title = \"mice follies\"", "question": "What is the production number for the episode directed by Robert McKimson named Mice Follies?", "context": "CREATE TABLE table_name_24 (production_number VARCHAR, director VARCHAR, title VARCHAR)"}, {"answer": "SELECT result FROM table_name_63 WHERE lineup = \"start\" AND assist_pass = \"carli lloyd\" AND competition = \"2011 fifa women\u2019s world cup \u2013 group stage\"", "question": "Name the Result of the Lineup of start, an Assist/pass of carli lloyd, and an Competition of 2011 fifa women\u2019s world cup \u2013 group stage?", "context": "CREATE TABLE table_name_63 (result VARCHAR, competition VARCHAR, lineup VARCHAR, assist_pass VARCHAR)"}, {"answer": "SELECT lineup FROM table_name_43 WHERE assist_pass = \"carli lloyd\" AND competition = \"2010 concacaf world cup qualifying \u2013 group stage\"", "question": "Name the Lineup that has an Assist/pass of carli lloyd,a Competition of 2010 concacaf world cup qualifying \u2013 group stage?", "context": "CREATE TABLE table_name_43 (lineup VARCHAR, assist_pass VARCHAR, competition VARCHAR)"}, {"answer": "SELECT assist_pass FROM table_name_14 WHERE score = \"1-0\" AND competition = \"2010 concacaf world cup qualifying \u2013 group stage\"", "question": "Which Assist/pass has a Score of 1-0,a Competition of 2010 concacaf world cup qualifying \u2013 group stage?", "context": "CREATE TABLE table_name_14 (assist_pass VARCHAR, score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT location FROM table_name_49 WHERE score = \"match reports\"", "question": "where has a Score of match reports?", "context": "CREATE TABLE table_name_49 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE location = \"mex cancun\"", "question": "which Score has a Location of mex cancun?", "context": "CREATE TABLE table_name_31 (score VARCHAR, location VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE competition = \"match reports\"", "question": "which Score has a Competition of match reports?", "context": "CREATE TABLE table_name_81 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_5 WHERE away_team = \"arsenal\"", "question": "Which tie number had an away team of Arsenal?", "context": "CREATE TABLE table_name_5 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_87 WHERE home_team = \"shrewsbury town\"", "question": "What was the score for the tie that had Shrewsbury Town as home team?", "context": "CREATE TABLE table_name_87 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE home_team = \"tottenham hotspur\"", "question": "What was the score of the tie that had Tottenham Hotspur as the home team?", "context": "CREATE TABLE table_name_35 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT apparatus FROM table_name_68 WHERE score_final < 75.5 AND score_qualifying < 18.7", "question": "On which apparatus did Kanayeva have a final score smaller than 75.5 and a qualifying score smaller than 18.7?", "context": "CREATE TABLE table_name_68 (apparatus VARCHAR, score_final VARCHAR, score_qualifying VARCHAR)"}, {"answer": "SELECT MIN(score_final) FROM table_name_7 WHERE score_qualifying = 74.075", "question": "What was her lowest final score with a qualifying score of 74.075?", "context": "CREATE TABLE table_name_7 (score_final INTEGER, score_qualifying VARCHAR)"}, {"answer": "SELECT score_final FROM table_name_86 WHERE apparatus = \"ribbon\"", "question": "What was her final score on the ribbon apparatus?", "context": "CREATE TABLE table_name_86 (score_final VARCHAR, apparatus VARCHAR)"}, {"answer": "SELECT notes FROM table_name_15 WHERE country = \"south africa\"", "question": "What are the notes for the athlete from South Africa?", "context": "CREATE TABLE table_name_15 (notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT notes FROM table_name_29 WHERE country = \"spain\"", "question": "What are the notes for the athlete from Spain?", "context": "CREATE TABLE table_name_29 (notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_1 WHERE athletes = \"calvin mokoto\"", "question": "What is Calvin Mokoto's average rank?", "context": "CREATE TABLE table_name_1 (rank INTEGER, athletes VARCHAR)"}, {"answer": "SELECT rank FROM table_name_80 WHERE athletes = \"andreas kiligkaridis\"", "question": "What is Andreas Kiligkaridis rank?", "context": "CREATE TABLE table_name_80 (rank VARCHAR, athletes VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_9 WHERE partner = \"erika sema\"", "question": "Which tournament had a partner of Erika Sema?", "context": "CREATE TABLE table_name_9 (tournament VARCHAR, partner VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_15 WHERE tournament = \"noida\"", "question": "Who were the opponents in the final at Noida?", "context": "CREATE TABLE table_name_15 (opponents_in_the_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT school FROM table_name_41 WHERE county = \"36 jackson\"", "question": "What school is in 36 Jackson?", "context": "CREATE TABLE table_name_41 (school VARCHAR, county VARCHAR)"}, {"answer": "SELECT ihsaa_class AS Football FROM table_name_7 WHERE mascot = \"panthers\"", "question": "What's the IHSAA Class Football if the panthers are the mascot?", "context": "CREATE TABLE table_name_7 (ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_39 WHERE school = \"seymour\"", "question": "What's the IHSAA Class when the school is Seymour?", "context": "CREATE TABLE table_name_39 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT team FROM table_name_44 WHERE pick > 2 AND position = \"running back\"", "question": "What team has a position of running back and picked after 2?", "context": "CREATE TABLE table_name_44 (team VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE college = \"alabama\"", "question": "Which player is from the College of Alabama?", "context": "CREATE TABLE table_name_97 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_55 WHERE college = \"ohio state\"", "question": "Which player is from Ohio State College?", "context": "CREATE TABLE table_name_55 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_43 WHERE team = \"new york jets\"", "question": "The New York Jets picked someone from what college?", "context": "CREATE TABLE table_name_43 (college VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_15 WHERE position = \"defensive end\"", "question": "What is the highest pick for the position of defensive end?", "context": "CREATE TABLE table_name_15 (pick INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_87 WHERE nation = \"canada\" AND total < 3", "question": "What is the fewest number of silver medals won by Canada with fewer than 3 total medals?", "context": "CREATE TABLE table_name_87 (silver INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_2 WHERE club = \"port fairy\" AND against < 1510", "question": "What is the sum of wins for Port Fairy with under 1510 against?", "context": "CREATE TABLE table_name_2 (wins INTEGER, club VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_4 WHERE wins > 2 AND losses = 5 AND draws < 0", "question": "What is the total number of Against values for clubs with more than 2 wins, 5 losses, and 0 draws?", "context": "CREATE TABLE table_name_4 (against VARCHAR, draws VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_9 WHERE losses > 8 AND against < 1344", "question": "What is the average number of draws for losses over 8 and Against values under 1344?", "context": "CREATE TABLE table_name_9 (draws INTEGER, losses VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_70 WHERE against > 1510", "question": "What is the sum of losses for Against values over 1510?", "context": "CREATE TABLE table_name_70 (losses INTEGER, against INTEGER)"}, {"answer": "SELECT genre FROM table_name_12 WHERE game = \"tony hawk's pro skater 2\"", "question": "Which Genre has a Game of tony hawk's pro skater 2?", "context": "CREATE TABLE table_name_12 (genre VARCHAR, game VARCHAR)"}, {"answer": "SELECT genre FROM table_name_81 WHERE game = \"donkey kong country\"", "question": "Which Genre has a Game of donkey kong country?", "context": "CREATE TABLE table_name_81 (genre VARCHAR, game VARCHAR)"}, {"answer": "SELECT genre FROM table_name_90 WHERE year > 1999 AND game = \"tony hawk's pro skater 2\"", "question": "Which Genre has a Year larger than 1999, and a Game of tony hawk's pro skater 2?", "context": "CREATE TABLE table_name_90 (genre VARCHAR, year VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_15 WHERE react = 0.155 AND athlete = \"kristof beyens\" AND rank < 3", "question": "How much Time has a Reaction of 0.155, and an Athlete of kristof beyens, and a Rank smaller than 3?", "context": "CREATE TABLE table_name_15 (time VARCHAR, rank VARCHAR, react VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_83 WHERE time > 20.5 AND nationality = \"trinidad and tobago\"", "question": "Which Lane has a Time larger than 20.5, and a Nationality of trinidad and tobago?", "context": "CREATE TABLE table_name_83 (lane INTEGER, time VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT location FROM table_name_23 WHERE name_of_mill = \"moulin bertrand\"", "question": "What is the Location of the Moulin Bertrand Mill?", "context": "CREATE TABLE table_name_23 (location VARCHAR, name_of_mill VARCHAR)"}, {"answer": "SELECT MAX(built) FROM table_name_16 WHERE name_of_mill = \"moulin de momalle\"", "question": "What is year Built of the Moulin de Momalle Mill?", "context": "CREATE TABLE table_name_16 (built INTEGER, name_of_mill VARCHAR)"}, {"answer": "SELECT name_of_mill FROM table_name_24 WHERE type = \"grondzeiler\"", "question": "What is the Name of the Grondzeiler Mill?", "context": "CREATE TABLE table_name_24 (name_of_mill VARCHAR, type VARCHAR)"}, {"answer": "SELECT MIN(total_population__2010_) FROM table_name_88 WHERE _percentage_asian_american = 5.7 AND asian_american_population__2010_ < 126 OFFSET 965", "question": "What's the total population when there are 5.7% Asian American and fewer than 126,965 Asian American Population?", "context": "CREATE TABLE table_name_88 (total_population__2010_ INTEGER, _percentage_asian_american VARCHAR, asian_american_population__2010_ VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_77 WHERE game = \"4\"", "question": "Who was their opponent in game 4?", "context": "CREATE TABLE table_name_77 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE game = \"3\"", "question": "On what date was game 3?", "context": "CREATE TABLE table_name_84 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT railway_number_s_ FROM table_name_68 WHERE class = \"t 4 ii\"", "question": "What is the railway number of t 4 ii class?", "context": "CREATE TABLE table_name_68 (railway_number_s_ VARCHAR, class VARCHAR)"}, {"answer": "SELECT year_s__of_manufacture FROM table_name_74 WHERE quantity = 31 AND axle_arrangement___uic__ = \"b n2t\"", "question": "What year was the b n2t axle arrangement, which has a quantity of 31, manufactured?", "context": "CREATE TABLE table_name_74 (year_s__of_manufacture VARCHAR, quantity VARCHAR, axle_arrangement___uic__ VARCHAR)"}, {"answer": "SELECT time FROM table_name_88 WHERE heat < 5 AND lane = 5 AND nationality = \"vietnam\"", "question": "What is the time in a heat smaller than 5, in Lane 5, for Vietnam?", "context": "CREATE TABLE table_name_88 (time VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_53 WHERE name = \"xue ruipeng\"", "question": "What is the smallest lane number of Xue Ruipeng?", "context": "CREATE TABLE table_name_53 (lane INTEGER, name VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_29 WHERE notes = \"fa\"", "question": "What is the Rank of the Rowers with FA as Notes?", "context": "CREATE TABLE table_name_29 (rank INTEGER, notes VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_27 WHERE tie_no = \"7\"", "question": "Which away team that had a tie of 7?", "context": "CREATE TABLE table_name_27 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_10 WHERE away_team = \"solihull moors\"", "question": "What was the attendance for the away team Solihull Moors?", "context": "CREATE TABLE table_name_10 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_9 WHERE away_team = \"southport\"", "question": "Which home team had the away team Southport?", "context": "CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_86 WHERE tie_no = \"2\"", "question": "What home team had 2 ties?", "context": "CREATE TABLE table_name_86 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE tie_no = \"7\"", "question": "What was the score when there were 7 ties?", "context": "CREATE TABLE table_name_36 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_38 WHERE nation = \"brazil (bra)\" AND bronze > 2", "question": "What is the total when the nation is brazil (bra) and bronze is more than 2?", "context": "CREATE TABLE table_name_38 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_78 WHERE nation = \"canada (can)\" AND bronze < 0", "question": "what is the least total when the nation is canada (can) and bronze is less than 0?", "context": "CREATE TABLE table_name_78 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_24 WHERE rank = \"3\" AND total > 2", "question": "what is bronze when the rank is 3 and the total is more than 2?", "context": "CREATE TABLE table_name_24 (bronze INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_81 WHERE silver > 2 AND nation = \"germany\" AND gold > 8", "question": "What is the most bronze can be when silver is larger than 2, and the nation is germany, and gold is more than 8?", "context": "CREATE TABLE table_name_81 (bronze INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_12 WHERE nation = \"netherlands\" AND silver > 0", "question": "What is the total number for a total when the nation is netherlands and silver is larger than 0?", "context": "CREATE TABLE table_name_12 (total VARCHAR, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT nation FROM table_name_24 WHERE total > 1 AND bronze < 3 AND silver > 2 AND gold > 2", "question": "When the total is larger than 1,and the bronze is less than 3, and silver larger than 2, and a gold larger than 2, what is the nation?", "context": "CREATE TABLE table_name_24 (nation VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_52 WHERE bronze > 1 AND silver < 0", "question": "What is the average rank when the bronze is larger than 1, and silver is less than 0?", "context": "CREATE TABLE table_name_52 (rank INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT result FROM table_name_38 WHERE opponent = \"sunderland\"", "question": "Which result has sunderland as opponent?", "context": "CREATE TABLE table_name_38 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_32 WHERE high_checkout = 135", "question": "What is the played number when the high checkout is 135?", "context": "CREATE TABLE table_name_32 (played INTEGER, high_checkout VARCHAR)"}, {"answer": "SELECT COUNT(3 AS _dart_average) FROM table_name_1 WHERE legs_lost > 41 AND played > 7", "question": "What is the total number of 3-dart average when legs lost is larger than 41, and played is larger than 7?", "context": "CREATE TABLE table_name_1 (legs_lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT years FROM table_name_74 WHERE model = \"sl 350\"", "question": "What year was the SL 350 Model?", "context": "CREATE TABLE table_name_74 (years VARCHAR, model VARCHAR)"}, {"answer": "SELECT race FROM table_name_30 WHERE runners = 7 AND odds = \"1/3\"", "question": "Which Race has a Runners of 7 and Odds of 1/3?", "context": "CREATE TABLE table_name_30 (race VARCHAR, runners VARCHAR, odds VARCHAR)"}, {"answer": "SELECT class FROM table_name_50 WHERE jockey = \"michael kinane\" AND time = \"2:27.71\"", "question": "Which Class has a Jockey of michael kinane on 2:27.71?", "context": "CREATE TABLE table_name_50 (class VARCHAR, jockey VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(dist__f_) FROM table_name_74 WHERE odds = \"11/4\" AND placing > 1", "question": "Name the highest Dist (f) with Odds of 11/4 and a Placing larger than 1?", "context": "CREATE TABLE table_name_74 (dist__f_ INTEGER, odds VARCHAR, placing VARCHAR)"}, {"answer": "SELECT margin FROM table_name_33 WHERE dist__f_ > 10 AND race = \"king george vi & queen elizabeth stakes\"", "question": "Which Margin has a Dist (f) larger than 10, and a Race of king george vi & queen elizabeth stakes?", "context": "CREATE TABLE table_name_33 (margin VARCHAR, dist__f_ VARCHAR, race VARCHAR)"}, {"answer": "SELECT dist__f_ FROM table_name_75 WHERE race = \"irish derby\"", "question": "Which Dist (f) has a Race of irish derby?", "context": "CREATE TABLE table_name_75 (dist__f_ VARCHAR, race VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_49 WHERE arena = \"joe louis arena\"", "question": "What is the Attendance at Joe Louis Arena?", "context": "CREATE TABLE table_name_49 (attendance INTEGER, arena VARCHAR)"}, {"answer": "SELECT loss FROM table_name_42 WHERE score = \"4\u20133\" AND arena = \"nationwide arena\"", "question": "What is the Loss of the game at Nationwide Arena with a Score of 4\u20133?", "context": "CREATE TABLE table_name_42 (loss VARCHAR, score VARCHAR, arena VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_59 WHERE score = \"3\u20132\"", "question": "What is the Attendance of the game with a Score of 3\u20132?", "context": "CREATE TABLE table_name_59 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE date = \"march 19\"", "question": "What is the Score of the game on March 19?", "context": "CREATE TABLE table_name_21 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_44 WHERE record = \"37\u201321\u201312\" AND points < 86", "question": "What is the Attendance of the game with a Record of 37\u201321\u201312 and less than 86 Points?", "context": "CREATE TABLE table_name_44 (attendance INTEGER, record VARCHAR, points VARCHAR)"}, {"answer": "SELECT player FROM table_name_27 WHERE debut_year < 1943 AND games < 12 AND goals < 11 AND years_at_club = \"1942\"", "question": "Which player debuted before 1943, played for the club in 1942, played less than 12 games, and scored less than 11 goals?", "context": "CREATE TABLE table_name_27 (player VARCHAR, years_at_club VARCHAR, goals VARCHAR, debut_year VARCHAR, games VARCHAR)"}, {"answer": "SELECT label FROM table_name_70 WHERE year > 1978", "question": "What label had the album after 1978?", "context": "CREATE TABLE table_name_70 (label VARCHAR, year INTEGER)"}, {"answer": "SELECT title FROM table_name_56 WHERE riaa = \"gold\"", "question": "What is the title of the album that had a RIAA of gold?", "context": "CREATE TABLE table_name_56 (title VARCHAR, riaa VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_82 WHERE title = \"loves lost and found\"", "question": "What is the highest year for the title, \"loves lost and found\"?", "context": "CREATE TABLE table_name_82 (year INTEGER, title VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_80 WHERE round < 3 AND home_team = \"queensland roar\"", "question": "Who was the away team when Queensland Roar was the home team in the round less than 3?", "context": "CREATE TABLE table_name_80 (away_team VARCHAR, round VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_50 WHERE stadium = \"members equity stadium\" AND attendance < 12 OFFSET 581", "question": "What is the least round for the game played at Members Equity Stadium in from of 12,581 people?", "context": "CREATE TABLE table_name_50 (round INTEGER, stadium VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT previous_conference FROM table_name_69 WHERE location = \"converse\"", "question": "what is the previous conference when the location is converse?", "context": "CREATE TABLE table_name_69 (previous_conference VARCHAR, location VARCHAR)"}, {"answer": "SELECT school FROM table_name_58 WHERE location = \"alexandria\"", "question": "what is the school with the location of alexandria?", "context": "CREATE TABLE table_name_58 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT ihsaa_class___football___soccer FROM table_name_43 WHERE location = \"alexandria\"", "question": "what is teh ihsaa class/football/soccer when the location is alexandria?", "context": "CREATE TABLE table_name_43 (ihsaa_class___football___soccer VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(margin) FROM table_name_40 WHERE country = \"canada\"", "question": "What is canada's margin?", "context": "CREATE TABLE table_name_40 (margin INTEGER, country VARCHAR)"}, {"answer": "SELECT AVG(margin) FROM table_name_30 WHERE player = \"russ cochran\"", "question": "What is russ cochran's average margin?", "context": "CREATE TABLE table_name_30 (margin INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_50 WHERE player = \"joe durant\" AND earnings__$_ > 396 OFFSET 000", "question": "How many years have a Player of joe durant, and Earnings ($) larger than 396,000?", "context": "CREATE TABLE table_name_50 (year VARCHAR, player VARCHAR, earnings__$_ VARCHAR)"}, {"answer": "SELECT margin FROM table_name_50 WHERE country = \"united states\" AND score = 63 - 70 - 65 - 69 = 267", "question": "Which Margin has a Country of united states, and a Score of 63-70-65-69=267?", "context": "CREATE TABLE table_name_50 (margin VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_38 WHERE class = \"d-2\"", "question": "what is the quantity made when the class is d-2?", "context": "CREATE TABLE table_name_38 (quantity_made VARCHAR, class VARCHAR)"}, {"answer": "SELECT year_made FROM table_name_20 WHERE manufacturer = \"2-6-2 \u2014 oooo \u2014 mogul\"", "question": "what is the year made when the manufacturer is 2-6-2 \u2014 oooo \u2014 mogul?", "context": "CREATE TABLE table_name_20 (year_made VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT wheel_arrangement FROM table_name_78 WHERE year_made = \"1881\"", "question": "what is the wheel arrangement when the year made is 1881?", "context": "CREATE TABLE table_name_78 (wheel_arrangement VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_78 WHERE wheel_arrangement = \"2-6-0\" AND class = \"k\"", "question": "what is the quantity made when the wheel arrangement is 2-6-0 and the class is k?", "context": "CREATE TABLE table_name_78 (quantity_made VARCHAR, wheel_arrangement VARCHAR, class VARCHAR)"}, {"answer": "SELECT class FROM table_name_78 WHERE quantity_preserved = \"0\" AND quantity_made = \"5\"", "question": "what is the class when the quantity perserved is 0 and the quantity made is 5?", "context": "CREATE TABLE table_name_78 (class VARCHAR, quantity_preserved VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT COUNT(match) FROM table_name_20 WHERE result = \"0:5 (0:3)\"", "question": "What is the match number that had a result of 0:5 (0:3)?", "context": "CREATE TABLE table_name_20 (match VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(match) FROM table_name_91 WHERE result = \"0:3 (0:2)\" AND opponent = \"fcr 2001 duisburg\" AND attnd > 1 OFFSET 490", "question": "Which match had more than 1,490 people in attendance to watch FCR 2001 Duisburg have a result of 0:3 (0:2)?", "context": "CREATE TABLE table_name_91 (match INTEGER, attnd VARCHAR, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(match) FROM table_name_39 WHERE opponent = \"fcr 2001 duisburg\"", "question": "Which match did FCR 2001 Duisburg participate as the opponent?", "context": "CREATE TABLE table_name_39 (match INTEGER, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_95 WHERE date = \"july 5, 2009\"", "question": "What is the surface of the match on July 5, 2009?", "context": "CREATE TABLE table_name_95 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE surface = \"clay\" AND score = \"6-3 2-6 6-4\"", "question": "What is the date of the match on clay with score of 6-3 2-6 6-4?", "context": "CREATE TABLE table_name_15 (date VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent_in_final FROM table_name_55 WHERE surface = \"carpet\"", "question": "Who was the opponent on carpet in a final?", "context": "CREATE TABLE table_name_55 (opponent_in_final VARCHAR, surface VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE surface = \"hard\" AND tournament = \"ramat hasharon\"", "question": "What is the score of the hard court Ramat Hasharon tournament?", "context": "CREATE TABLE table_name_75 (score VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE date = \"september 24, 2006\"", "question": "What is the score of the match on September 24, 2006?", "context": "CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_46 WHERE tournament = \"volos\"", "question": "What is the surface for the Volos tournament?", "context": "CREATE TABLE table_name_46 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winner FROM table_name_42 WHERE team = \"nissan motorsport australia\" AND circuit = \"oran park raceway\"", "question": "Who is the Winner of the Nissan Motorsport Australia Team at the Oran Park Raceway?", "context": "CREATE TABLE table_name_42 (winner VARCHAR, team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_34 WHERE winner = \"jim richards\" AND series = \"atcc round 1\"", "question": "What is the Circuit in the ATCC Round 1 Series with Winner Jim Richards?", "context": "CREATE TABLE table_name_34 (circuit VARCHAR, winner VARCHAR, series VARCHAR)"}, {"answer": "SELECT team FROM table_name_82 WHERE winner = \"mark skaife\" AND series = \"atcc round 7\"", "question": "What is the Team of Winner Mark Skaife in ATCC Round 7?", "context": "CREATE TABLE table_name_82 (team VARCHAR, winner VARCHAR, series VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_42 WHERE silver < 0", "question": "What is the sum of the bronze medals of the nation with less than 0 silvers?", "context": "CREATE TABLE table_name_42 (bronze INTEGER, silver INTEGER)"}, {"answer": "SELECT MAX(bronze) FROM table_name_93 WHERE gold > 1 AND nation = \"china\" AND total > 11", "question": "What is the highest amount of bronze china, which has more than 1 gold and more than 11 total, has?", "context": "CREATE TABLE table_name_93 (bronze INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_51 WHERE nation = \"hungary\" AND silver < 1", "question": "Wha is the average number of bronze of hungary, which has less than 1 silver?", "context": "CREATE TABLE table_name_51 (bronze INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT size FROM table_name_81 WHERE ihsaa_class = \"4a\" AND previous_conference = \"central indiana\"", "question": "What is the size of the team that was previously from Central Indiana conference, and is in IHSSA Class 4a?", "context": "CREATE TABLE table_name_81 (size VARCHAR, ihsaa_class VARCHAR, previous_conference VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_95 WHERE location = \"middlebury, in\"", "question": "What is the IHSAA class for the team located in Middlebury, IN?", "context": "CREATE TABLE table_name_95 (ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(cuts_made) FROM table_name_91 WHERE top_5 = 0 AND wins > 0", "question": "How many total cuts were made in events with more than 0 wins and exactly 0 top-5s?", "context": "CREATE TABLE table_name_91 (cuts_made VARCHAR, top_5 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_13 WHERE events = 9", "question": "What is the fewest wins for Thomas in events he had entered exactly 9 times?", "context": "CREATE TABLE table_name_13 (wins INTEGER, events VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_92 WHERE top_25 < 5 AND events > 4 AND top_5 < 2", "question": "What is the total number of wins for events with under 2 top-5s, under 5 top-25s, and more than 4 events played?", "context": "CREATE TABLE table_name_92 (wins VARCHAR, top_5 VARCHAR, top_25 VARCHAR, events VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_59 WHERE events < 4 AND wins > 0", "question": "What is the average number of cuts made for events with under 4 entries and more than 0 wins?", "context": "CREATE TABLE table_name_59 (cuts_made INTEGER, events VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_17 WHERE top_5 < 0", "question": "What is the average number of cuts made for events with 0 top-5s?", "context": "CREATE TABLE table_name_17 (cuts_made INTEGER, top_5 INTEGER)"}, {"answer": "SELECT MIN(top_25) FROM table_name_31 WHERE cuts_made > 13", "question": "What is the fewest number of top-25s for events with more than 13 cuts made?", "context": "CREATE TABLE table_name_31 (top_25 INTEGER, cuts_made INTEGER)"}, {"answer": "SELECT record FROM table_name_87 WHERE game > 51 AND date = \"1/27/1974\"", "question": "What was the record after game 51 on 1/27/1974?", "context": "CREATE TABLE table_name_87 (record VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE date = \"1/10/1974\"", "question": "What was the score on 1/10/1974?", "context": "CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_6 WHERE date = \"1/13/1974\"", "question": "What opponent played on 1/13/1974?", "context": "CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(erp_w) FROM table_name_58 WHERE class = \"c3\" AND frequency_mhz < 89.9", "question": "What is the total erp w of class c3, which has a frequency mhz less than 89.9?", "context": "CREATE TABLE table_name_58 (erp_w VARCHAR, class VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT COUNT(frequency_mhz) FROM table_name_19 WHERE call_sign = \"kgrj\" AND erp_w > 21 OFFSET 500", "question": "What is the total frequency mhz of the kgrj call sign, which has an erp w greater than 21,500?", "context": "CREATE TABLE table_name_19 (frequency_mhz VARCHAR, call_sign VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_15 WHERE erp_w = 222", "question": "What is the call sign with a 222 erp w?", "context": "CREATE TABLE table_name_15 (call_sign VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT AVG(frequency_mhz) FROM table_name_83 WHERE city_of_license = \"loomis, south dakota\"", "question": "What is the average frequency mhz of the loomis, south dakota city license?", "context": "CREATE TABLE table_name_83 (frequency_mhz INTEGER, city_of_license VARCHAR)"}, {"answer": "SELECT SUM(erp_w) FROM table_name_5 WHERE call_sign = \"k222al\"", "question": "What is the sum of the erp w of the k222al call sign?", "context": "CREATE TABLE table_name_5 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT MAX(erp_w) FROM table_name_38 WHERE frequency_mhz = 90.5", "question": "What is the highest erp w with a 90.5 frequency mhz?", "context": "CREATE TABLE table_name_38 (erp_w INTEGER, frequency_mhz VARCHAR)"}, {"answer": "SELECT COUNT(ends) FROM table_name_39 WHERE since > 2006 AND nat = \"ita\" AND goals < 0", "question": "What is the total number of ends after 2006 with a nationality of ita and 0 goals?", "context": "CREATE TABLE table_name_39 (ends VARCHAR, goals VARCHAR, since VARCHAR, nat VARCHAR)"}, {"answer": "SELECT MIN(since) FROM table_name_76 WHERE transfer_fee = \"\u20ac 14m\" AND ends > 2011", "question": "What is the lowest year in since that had a transfer fee of \u20ac 14m and ended after 2011?", "context": "CREATE TABLE table_name_76 (since INTEGER, transfer_fee VARCHAR, ends VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_10 WHERE round < 5 AND player = \"bruce affleck\"", "question": "Can you tell me the Nationality that has the Round smaller than 5, and the Player of bruce affleck?", "context": "CREATE TABLE table_name_10 (nationality VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_79 WHERE round = 4", "question": "Can you tell me the College/Junior/Club Team that has the Round of 4?", "context": "CREATE TABLE table_name_79 (college_junior_club_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(top_25) FROM table_name_45 WHERE wins < 0", "question": "What is the total number of top-25s for events with 0 wins?", "context": "CREATE TABLE table_name_45 (top_25 VARCHAR, wins INTEGER)"}, {"answer": "SELECT COUNT(cuts_made) FROM table_name_44 WHERE events > 3 AND top_25 < 2", "question": "What is the total number of cuts made for events played more than 3 times and under 2 top-25s?", "context": "CREATE TABLE table_name_44 (cuts_made VARCHAR, events VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT SUM(top_10) FROM table_name_68 WHERE wins > 0", "question": "What is the sum of top-10s for events with more than 0 wins?", "context": "CREATE TABLE table_name_68 (top_10 INTEGER, wins INTEGER)"}, {"answer": "SELECT 3 AS rd_run FROM table_name_55 WHERE rank = 8", "question": "Which 3rd run has rank of 8?", "context": "CREATE TABLE table_name_55 (rank VARCHAR)"}, {"answer": "SELECT 3 AS rd_run FROM table_name_97 WHERE rank = 1", "question": "Which 3rd run has rank of 1?", "context": "CREATE TABLE table_name_97 (rank VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_78 WHERE total = 16", "question": "Which average rank has a total of 16?", "context": "CREATE TABLE table_name_78 (rank INTEGER, total VARCHAR)"}, {"answer": "SELECT MIN(labour_party) FROM table_name_16 WHERE fianna_f\u00e1il > 5", "question": "What is the lowest number in the Labour Party for the Fianna Fail higher than 5?", "context": "CREATE TABLE table_name_16 (labour_party INTEGER, fianna_f\u00e1il INTEGER)"}, {"answer": "SELECT SUM(labour_party) FROM table_name_29 WHERE fianna_f\u00e1il = 3 AND total > 9 AND green_party > 2", "question": "How many are in the Labour Party of a Fianna Fail of 3 with a total higher than 9 and more than 2 in the Green Party?", "context": "CREATE TABLE table_name_29 (labour_party INTEGER, green_party VARCHAR, fianna_f\u00e1il VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(green_party) FROM table_name_41 WHERE fine_gael < 4 AND fianna_f\u00e1il < 2 AND town = \"athy\"", "question": "How many are in the Green Party with a Fine Gael of less than 4 and a Fianna Fail of less than 2 in Athy?", "context": "CREATE TABLE table_name_41 (green_party INTEGER, town VARCHAR, fine_gael VARCHAR, fianna_f\u00e1il VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_55 WHERE nationality = \"brazil\" AND time < 21.15", "question": "What's Brazil's lane with a time less than 21.15?", "context": "CREATE TABLE table_name_55 (lane INTEGER, nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_60 WHERE nationality = \"russia\" AND rank < 1", "question": "What's Russia's lane when they were ranked before 1?", "context": "CREATE TABLE table_name_60 (lane INTEGER, nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_28 WHERE nationality = \"bulgaria\" AND time > 21.55", "question": "What's Bulgaria's lane with a time more than 21.55?", "context": "CREATE TABLE table_name_28 (lane INTEGER, nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT nation FROM table_name_84 WHERE silver = 0 AND bronze = 1 AND rank = \"18\"", "question": "What nation has 0 as the silver, 1 as the bronze, with 18 as the rank?", "context": "CREATE TABLE table_name_84 (nation VARCHAR, rank VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_17 WHERE rank = \"3\" AND total > 7", "question": "How many golds have 3 as the rank, with a total greater than 7?", "context": "CREATE TABLE table_name_17 (gold VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_23 WHERE nation = \"belarus\" AND total < 1", "question": "What average silver has belarus as the nation, with a total less than 1?", "context": "CREATE TABLE table_name_23 (silver INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_69 WHERE gold = 0 AND rank = \"6\"", "question": "What average total has 0 as the gold, with 6 as the rank?", "context": "CREATE TABLE table_name_69 (total INTEGER, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_41 WHERE bronze = 21 AND silver > 10", "question": "How much Rank has a Bronze of 21, and a Silver larger than 10?", "context": "CREATE TABLE table_name_41 (rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_39 WHERE nation = \"sri lanka\" AND silver < 10", "question": "Which Gold has a Nation of sri lanka, and a Silver smaller than 10?", "context": "CREATE TABLE table_name_39 (gold INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_4 WHERE rank = 7", "question": "How much Silver has a Rank of 7?", "context": "CREATE TABLE table_name_4 (silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_97 WHERE rank < 5 AND bronze = 20", "question": "Which Gold has a Rank smaller than 5, and a Bronze of 20?", "context": "CREATE TABLE table_name_97 (gold INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_3 WHERE rank = 6 AND bronze < 3", "question": "Which Silver has a Rank of 6, and a Bronze smaller than 3?", "context": "CREATE TABLE table_name_3 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_21 WHERE nation = \"sweden (swe)\" AND silver < 1", "question": "What's the total of Sweden (SWE) having less than 1 silver?", "context": "CREATE TABLE table_name_21 (total INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_90 WHERE gold < 1 AND nation = \"sweden (swe)\" AND silver < 1", "question": "What's the total number of bronze medals for Sweden (SWE) having less than 1 gold and silver?", "context": "CREATE TABLE table_name_90 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_95 WHERE silver = 1 AND gold < 0", "question": "What's the total when the gold is less than 0 and silver is less than 1?", "context": "CREATE TABLE table_name_95 (total INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_2 WHERE silver = 0 AND rank = 8 AND gold > 1", "question": "What's the total of rank 8 when Silver medals are 0 and gold is more than 1?", "context": "CREATE TABLE table_name_2 (total VARCHAR, gold VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_48 WHERE total > 3 AND rank > 1", "question": "What are the most bronze medals in a rank more than 1 with a total larger than 3?", "context": "CREATE TABLE table_name_48 (bronze INTEGER, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_14 WHERE nation = \"turkey (tur)\" AND total > 2", "question": "What's the rank of Turkey (TUR) with a total more than 2?", "context": "CREATE TABLE table_name_14 (rank VARCHAR, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_73 WHERE record = \"86-62\"", "question": "What opponent has a record of 86-62?", "context": "CREATE TABLE table_name_73 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_62 WHERE date = \"september 16\"", "question": "What's the loss for September 16?", "context": "CREATE TABLE table_name_62 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE opponent = \"indians\" AND date = \"september 15\"", "question": "What is the score from September 15 that has the Indians as the opponent?", "context": "CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_10 WHERE loss = \"mccaskill (9-11)\"", "question": "What opponent has a loss of McCaskill (9-11)?", "context": "CREATE TABLE table_name_10 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT engine_type FROM table_name_45 WHERE model = \"2.3 v5\"", "question": "Which engine type was used in the model 2.3 v5?", "context": "CREATE TABLE table_name_45 (engine_type VARCHAR, model VARCHAR)"}, {"answer": "SELECT race FROM table_name_90 WHERE position = \"3rd\" AND speed = \"123.628\"", "question": "Which race has a position of 3rd and a speed of 123.628?", "context": "CREATE TABLE table_name_90 (race VARCHAR, position VARCHAR, speed VARCHAR)"}, {"answer": "SELECT race FROM table_name_72 WHERE replica = \"dnf\"", "question": "Which race has a replica of DNF?", "context": "CREATE TABLE table_name_72 (race VARCHAR, replica VARCHAR)"}, {"answer": "SELECT race FROM table_name_16 WHERE replica = \"dnf\"", "question": "Which race has a replica of DNF?", "context": "CREATE TABLE table_name_16 (race VARCHAR, replica VARCHAR)"}, {"answer": "SELECT position FROM table_name_35 WHERE speed = \"123.220\"", "question": "Which position has a speed of 123.220?", "context": "CREATE TABLE table_name_35 (position VARCHAR, speed VARCHAR)"}, {"answer": "SELECT position FROM table_name_41 WHERE time = \"1:45:53:00\"", "question": "Which position has a time of 1:45:53:00?", "context": "CREATE TABLE table_name_41 (position VARCHAR, time VARCHAR)"}, {"answer": "SELECT race FROM table_name_66 WHERE position = \"3rd\" AND speed = \"126.452\"", "question": "Which race has a position of 3rd and a speed of 126.452?", "context": "CREATE TABLE table_name_66 (race VARCHAR, position VARCHAR, speed VARCHAR)"}, {"answer": "SELECT scrapped_sold FROM table_name_11 WHERE name_as_rebuilt = \"trostan\"", "question": "Which Scrapped/Sold has a Name as rebuilt of trostan?", "context": "CREATE TABLE table_name_11 (scrapped_sold VARCHAR, name_as_rebuilt VARCHAR)"}, {"answer": "SELECT rebuilt FROM table_name_40 WHERE name_as_rebuilt = \"binevanagh\"", "question": "Which Rebuilt has a Name as rebuilt of binevanagh?", "context": "CREATE TABLE table_name_40 (rebuilt VARCHAR, name_as_rebuilt VARCHAR)"}, {"answer": "SELECT rebuilt FROM table_name_64 WHERE builder = \"derby\" AND name_as_rebuilt = \"ben madigan\"", "question": "Which Rebuilt has a Builder of derby, and a Name as rebuilt of ben madigan?", "context": "CREATE TABLE table_name_64 (rebuilt VARCHAR, builder VARCHAR, name_as_rebuilt VARCHAR)"}, {"answer": "SELECT scrapped_sold FROM table_name_74 WHERE builder = \"derby\" AND name_as_rebuilt = \"ben madigan\"", "question": "Which Scrapped/Sold has a Builder of derby, and a Name as rebuilt of ben madigan?", "context": "CREATE TABLE table_name_74 (scrapped_sold VARCHAR, builder VARCHAR, name_as_rebuilt VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_40 WHERE year_s__won = \"2003\"", "question": "What is the to par number of the person who won in 2003?", "context": "CREATE TABLE table_name_40 (to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_69 WHERE total = 291", "question": "In which year(s) did the person who has a total of 291 win?", "context": "CREATE TABLE table_name_69 (year_s__won VARCHAR, total VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_36 WHERE total > 286", "question": "In which year(s) did the person with a total greater than 286 win?", "context": "CREATE TABLE table_name_36 (year_s__won VARCHAR, total INTEGER)"}, {"answer": "SELECT total FROM table_name_33 WHERE player = \"davis love iii\"", "question": "What is Davis Love III's total?", "context": "CREATE TABLE table_name_33 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT finish FROM table_name_96 WHERE total = 282 AND player = \"phil mickelson\"", "question": "In what place did Phil Mickelson finish with a total of 282?", "context": "CREATE TABLE table_name_96 (finish VARCHAR, total VARCHAR, player VARCHAR)"}, {"answer": "SELECT source FROM table_name_10 WHERE net_worth_us$__billions_ = 17", "question": "What's the source of wealth of the person worth $17 billion?", "context": "CREATE TABLE table_name_10 (source VARCHAR, net_worth_us$__billions_ VARCHAR)"}, {"answer": "SELECT final_date FROM table_name_75 WHERE housemates = 16", "question": "What final date had 16 housemates?", "context": "CREATE TABLE table_name_75 (final_date VARCHAR, housemates VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE date = \"april 24\"", "question": "What scored is recorded on April 24?", "context": "CREATE TABLE table_name_92 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_82 WHERE engine = \"cosworth v8\" AND year = 1970", "question": "In 1970, what entrant had a cosworth v8 engine?", "context": "CREATE TABLE table_name_82 (entrant VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_3 WHERE year = 1971", "question": "Who was the entrant in 1971?", "context": "CREATE TABLE table_name_3 (entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_98 WHERE year = 1978 AND chassis = \"arrows fa1\"", "question": "What was the total amount of points in 1978 with a Chassis of arrows fa1?", "context": "CREATE TABLE table_name_98 (points INTEGER, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT venue FROM table_name_72 WHERE race = \"stan fox stakes\"", "question": "What venue hosted the stan fox stakes?", "context": "CREATE TABLE table_name_72 (venue VARCHAR, race VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE loss = \"moore (0-1)\"", "question": "When was the game with the loss of Moore (0-1)?", "context": "CREATE TABLE table_name_82 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_47 WHERE assists < 13 AND minutes < 91", "question": "What is the earliest year that Assists were less than 13 and minutes were under 91?", "context": "CREATE TABLE table_name_47 (season INTEGER, assists VARCHAR, minutes VARCHAR)"}, {"answer": "SELECT venue FROM table_name_22 WHERE result = \"draw\"", "question": "Which venues resulted in a draw?", "context": "CREATE TABLE table_name_22 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE venue = \"sabina park\"", "question": "What dates had matches at the venue Sabina Park?", "context": "CREATE TABLE table_name_50 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE venue = \"bourda\"", "question": "What dates contained matches at the venue Bourda?", "context": "CREATE TABLE table_name_32 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_44 WHERE top_25 = 3 AND events < 13", "question": "How many cuts did he make in the tournament with 3 top 25s and under 13 events?", "context": "CREATE TABLE table_name_44 (cuts_made INTEGER, top_25 VARCHAR, events VARCHAR)"}, {"answer": "SELECT SUM(cuts_made) FROM table_name_13 WHERE events > 13", "question": "How many cuts made in the tournament he played 13 times?", "context": "CREATE TABLE table_name_13 (cuts_made INTEGER, events INTEGER)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_36 WHERE tournament = \"pga championship\" AND events > 3", "question": "How many cuts did he make at the PGA championship in 3 events?", "context": "CREATE TABLE table_name_36 (cuts_made INTEGER, tournament VARCHAR, events VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_2 WHERE laps > 13 AND team = \"minardi team usa\"", "question": "What is the highest number of points scored by minardi team usa in more than 13 laps?", "context": "CREATE TABLE table_name_2 (points INTEGER, laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_88 WHERE driver = \"mario dom\u00ednguez\"", "question": "What is mario dom\u00ednguez's average Grid?", "context": "CREATE TABLE table_name_88 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_11 WHERE date = \"september 19\"", "question": "Which opponent plays on September 19?", "context": "CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_70 WHERE frequency_mhz = 89.5", "question": "Name the call sign with frequency of 89.5", "context": "CREATE TABLE table_name_70 (call_sign VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT SUM(frequency_mhz) FROM table_name_67 WHERE call_sign = \"k259aw\"", "question": "Name the sum of frequency will call sign of k259aw", "context": "CREATE TABLE table_name_67 (frequency_mhz INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT COUNT(failures) FROM table_name_92 WHERE successes > 3 AND type = \"ariane 5\" AND partial_failures > 0", "question": "What's the total failures among rockets that had more than 3 successes, type ariane 5 and more than 0 partial failures?", "context": "CREATE TABLE table_name_92 (failures VARCHAR, partial_failures VARCHAR, successes VARCHAR, type VARCHAR)"}, {"answer": "SELECT COUNT(successes) FROM table_name_92 WHERE launches > 3 AND country = \"russia\" AND type = \"soyuz\" AND rocket = \"soyuz-u\"", "question": "What is the number of successes for rockets that have more than 3 launches, were based in Russia, are type soyuz and a rocket type of soyuz-u?", "context": "CREATE TABLE table_name_92 (successes VARCHAR, rocket VARCHAR, type VARCHAR, launches VARCHAR, country VARCHAR)"}, {"answer": "SELECT dates_aired FROM table_name_6 WHERE region_country = \"united states\"", "question": "What dates did the episodes air in the United States?", "context": "CREATE TABLE table_name_6 (dates_aired VARCHAR, region_country VARCHAR)"}, {"answer": "SELECT starring FROM table_name_61 WHERE network = \"vara\"", "question": "Who was the star for the Vara network?", "context": "CREATE TABLE table_name_61 (starring VARCHAR, network VARCHAR)"}, {"answer": "SELECT local_name FROM table_name_28 WHERE dates_aired = \"1981\"", "question": "What is the local name for the episodes that aired in 1981?", "context": "CREATE TABLE table_name_28 (local_name VARCHAR, dates_aired VARCHAR)"}, {"answer": "SELECT network FROM table_name_44 WHERE region_country = \"united kingdom\" AND dates_aired = \"1985\u20131992\"", "question": "What is the name of the network in the United Kingdom which aired in 1985\u20131992?", "context": "CREATE TABLE table_name_44 (network VARCHAR, region_country VARCHAR, dates_aired VARCHAR)"}, {"answer": "SELECT total_appearances_league_only_ FROM table_name_88 WHERE name = \"gavin dykes\"", "question": "How many total appearances (league only) have a name of gavin dykes?", "context": "CREATE TABLE table_name_88 (total_appearances_league_only_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_13 WHERE ranking < 7 AND name = \"tony stenson\"", "question": "What nationality has a ranking less than 7 with tony stenson as the name?", "context": "CREATE TABLE table_name_13 (nationality VARCHAR, ranking VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_70 WHERE place = \"t5\" AND player = \"bob tway\"", "question": "What is the lowest score that Bob Tway get when he placed t5?", "context": "CREATE TABLE table_name_70 (score INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT record FROM table_name_83 WHERE date = \"may 31\"", "question": "What is the record for May 31?", "context": "CREATE TABLE table_name_83 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_94 WHERE date = \"may 31\"", "question": "Who lost on May 31?", "context": "CREATE TABLE table_name_94 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_83 WHERE record = \"25-24\"", "question": "For record 25-24, what is the sum of attendance?", "context": "CREATE TABLE table_name_83 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE record = \"27-25\"", "question": "When was the record 27-25?", "context": "CREATE TABLE table_name_64 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT engine FROM table_name_72 WHERE series = \"usac championship car\"", "question": "Which engine is responsible for the USAC Championship Car?", "context": "CREATE TABLE table_name_72 (engine VARCHAR, series VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_27 WHERE team_1 = \"asante kotoko\"", "question": "What was the 2nd leg score between Patronage Sainte-Anne and Asante Kotoko?", "context": "CREATE TABLE table_name_27 (team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_61 WHERE agg = \"3-4\"", "question": "Which teams had an aggregate score of 3-4?", "context": "CREATE TABLE table_name_61 (team_1 VARCHAR, agg VARCHAR)"}, {"answer": "SELECT MIN(facility_id) FROM table_name_24 WHERE city_of_license = \"beckley\"", "question": "What is the lowest facility ID that's in Beckley?", "context": "CREATE TABLE table_name_24 (facility_id INTEGER, city_of_license VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_20 WHERE class = \"a\"", "question": "What city has the A Class licence?", "context": "CREATE TABLE table_name_20 (city_of_license VARCHAR, class VARCHAR)"}, {"answer": "SELECT SUM(velocity__km_h_) FROM table_name_56 WHERE date = \"august 16, 1963\"", "question": "on august 16, 1963, what is the velocity?", "context": "CREATE TABLE table_name_56 (velocity__km_h_ INTEGER, date VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_78 WHERE time = \"2:44\"", "question": "What is the highest game number that had a time of 2:44?", "context": "CREATE TABLE table_name_78 (game INTEGER, time VARCHAR)"}, {"answer": "SELECT MAX(3 AS rd_place) FROM table_name_65 WHERE nation = \"perak fa\"", "question": "Name the highest 3rd place for nation of perak fa", "context": "CREATE TABLE table_name_65 (nation VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_53 WHERE total > 32 AND silver > 128", "question": "What is the gold medal count for the country with a total greater than 32 and more than 128 silvers?", "context": "CREATE TABLE table_name_53 (gold INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_72 WHERE gold < 12 AND total < 8", "question": "What is the maximum number of silvers for a country with fewer than 12 golds and a total less than 8?", "context": "CREATE TABLE table_name_72 (silver INTEGER, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_45 WHERE races < 56 AND titles > 0", "question": "What is the total number of wins for riders with fewer than 56 races and more than 0 titles?", "context": "CREATE TABLE table_name_45 (wins VARCHAR, races VARCHAR, titles VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_4 WHERE top_5 > 1 AND top_25 = 13 AND wins = 3", "question": "Name the tournament for top-5 more thn 1 and top-25 of 13 with wins of 3", "context": "CREATE TABLE table_name_4 (tournament VARCHAR, wins VARCHAR, top_5 VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_5 WHERE top_25 > 13 AND top_5 < 11", "question": "Name the average cuts for top-25 more than 13 and top-5 less than 11", "context": "CREATE TABLE table_name_5 (cuts_made INTEGER, top_25 VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_67 WHERE top_25 = 10 AND events < 26", "question": "Name the total number of wins with top-25 of 10 and events less than 26", "context": "CREATE TABLE table_name_67 (wins VARCHAR, top_25 VARCHAR, events VARCHAR)"}, {"answer": "SELECT SUM(top_25) FROM table_name_21 WHERE tournament = \"pga championship\" AND top_5 < 1", "question": "Name the sum of top-25 for pga championship and top-5 less than 1", "context": "CREATE TABLE table_name_21 (top_25 INTEGER, tournament VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT stage FROM table_name_39 WHERE start = \"saint-girons\" AND year = 1988", "question": "What stage has a start of saint-girons in 1988?", "context": "CREATE TABLE table_name_39 (stage VARCHAR, start VARCHAR, year VARCHAR)"}, {"answer": "SELECT category FROM table_name_14 WHERE year = 1964", "question": "What category was in 1964?", "context": "CREATE TABLE table_name_14 (category VARCHAR, year VARCHAR)"}, {"answer": "SELECT weeks_on_top FROM table_name_26 WHERE artist = \"the beatles\" AND issue_date_s_ = \"19 september\"", "question": "An artist of the Beatles with an issue date(s) of 19 September has what as the listed weeks on top?", "context": "CREATE TABLE table_name_26 (weeks_on_top VARCHAR, artist VARCHAR, issue_date_s_ VARCHAR)"}, {"answer": "SELECT weeks_on_top FROM table_name_96 WHERE issue_date_s_ = \"12 september\"", "question": "With an issue date(s) of 12 September, what is in the column for Weeks on Top?", "context": "CREATE TABLE table_name_96 (weeks_on_top VARCHAR, issue_date_s_ VARCHAR)"}, {"answer": "SELECT manager FROM table_name_52 WHERE manufacturer = \"adidas\" AND club = \"newcastle united\"", "question": "What Premier League Manager has an Adidas sponsor and a Newcastle United club?", "context": "CREATE TABLE table_name_52 (manager VARCHAR, manufacturer VARCHAR, club VARCHAR)"}, {"answer": "SELECT captain FROM table_name_54 WHERE manufacturer = \"nike\" AND club = \"manchester united\"", "question": "Which Manchester United captain is sponsored by Nike?", "context": "CREATE TABLE table_name_54 (captain VARCHAR, manufacturer VARCHAR, club VARCHAR)"}, {"answer": "SELECT manager FROM table_name_92 WHERE captain = \"dean whitehead\"", "question": "Who is Dean Whitehead's manager?", "context": "CREATE TABLE table_name_92 (manager VARCHAR, captain VARCHAR)"}, {"answer": "SELECT club FROM table_name_3 WHERE captain = \"ledley king\"", "question": "In which club is Ledley King a captain?", "context": "CREATE TABLE table_name_3 (club VARCHAR, captain VARCHAR)"}, {"answer": "SELECT captain FROM table_name_15 WHERE club = \"middlesbrough\"", "question": "Who is the captain of Middlesbrough?", "context": "CREATE TABLE table_name_15 (captain VARCHAR, club VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_34 WHERE resolution = \"sd 480i\" AND official_website = \"telemundo.com\"", "question": "Name the city of license with resolution of sd 480i and official website of telemundo.com", "context": "CREATE TABLE table_name_34 (city_of_license VARCHAR, resolution VARCHAR, official_website VARCHAR)"}, {"answer": "SELECT dish FROM table_name_8 WHERE resolution = \"sd 480i\" AND network = \"bvb\"", "question": "Name the dish for resolution of sd 480i and network of bvb", "context": "CREATE TABLE table_name_8 (dish VARCHAR, resolution VARCHAR, network VARCHAR)"}, {"answer": "SELECT resolution FROM table_name_36 WHERE dish = \"5270\"", "question": "Name the resolution for dish of 5270", "context": "CREATE TABLE table_name_36 (resolution VARCHAR, dish VARCHAR)"}, {"answer": "SELECT official_website FROM table_name_18 WHERE dish = \"\u2022\" AND callsign = \"kvtv\"", "question": "Name the official website which has dish of \u2022 and callsign of kvtv", "context": "CREATE TABLE table_name_18 (official_website VARCHAR, dish VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT resolution FROM table_name_87 WHERE official_website = \"ketftv.com\" AND callsign = \"kldo-dt2\"", "question": "Name the resolution for ketftv.com and callsign of kldo-dt2", "context": "CREATE TABLE table_name_87 (resolution VARCHAR, official_website VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT resolution FROM table_name_91 WHERE dish = \"8126\"", "question": "Name the resolution with dish of 8126", "context": "CREATE TABLE table_name_91 (resolution VARCHAR, dish VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_43 WHERE team = \"marlboro brm\" AND chassis = \"brm p180\"", "question": "What are the highest points for the team of marlboro brm with brm p180 as the chassis?", "context": "CREATE TABLE table_name_43 (points INTEGER, team VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_89 WHERE team = \"marlboro brm\"", "question": "Which chassis has marlboro brm as the team?", "context": "CREATE TABLE table_name_89 (chassis VARCHAR, team VARCHAR)"}, {"answer": "SELECT start FROM table_name_83 WHERE rank = \"12\"", "question": "What place did Jimmy Reece start from when he ranked 12?", "context": "CREATE TABLE table_name_83 (start VARCHAR, rank VARCHAR)"}, {"answer": "SELECT finish FROM table_name_29 WHERE year = \"1957\"", "question": "What place did Jimmy Reece finish in 1957?", "context": "CREATE TABLE table_name_29 (finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT sydney FROM table_name_61 WHERE adelaide = \"yes\" AND gold_coast = \"yes\" AND melbourne = \"yes\" AND auckland = \"yes\"", "question": "what is the Sydney that has Adelaide, Gold Coast, Melbourne, and Auckland are all yes?", "context": "CREATE TABLE table_name_61 (sydney VARCHAR, auckland VARCHAR, melbourne VARCHAR, adelaide VARCHAR, gold_coast VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_67 WHERE gold_coast = \"no\"", "question": "What is The Melbourne with a No- Gold Coast", "context": "CREATE TABLE table_name_67 (melbourne VARCHAR, gold_coast VARCHAR)"}, {"answer": "SELECT rank FROM table_name_22 WHERE votes > 2 OFFSET 211", "question": "What is the rank of the candidate with more than 2,211 votes?", "context": "CREATE TABLE table_name_22 (rank VARCHAR, votes INTEGER)"}, {"answer": "SELECT since FROM table_name_76 WHERE transfer_fee = \"\u00a3 75k\"", "question": "What the since year of the player with a transfer fee of \u00a3 75k?", "context": "CREATE TABLE table_name_76 (since VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT since FROM table_name_24 WHERE goals > 3 AND transfer_fee = \"\u00a3400k\"", "question": "What is the since year for the player with more than 3 goals and a transfer fee of \u00a3400k?", "context": "CREATE TABLE table_name_24 (since VARCHAR, goals VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT nat FROM table_name_99 WHERE transfer_fee = \"\u00a3400k\"", "question": "What is the nationality of the player with a transfer fee of \u00a3400k?", "context": "CREATE TABLE table_name_99 (nat VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_46 WHERE name = \"sawyer\"", "question": "What is the average goals Sawyer has?", "context": "CREATE TABLE table_name_46 (goals INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(goals_conceded) FROM table_name_19 WHERE lost > 8 AND points > 17", "question": "What were the goal conceded that had a lost greater than 8 and more than 17 points?", "context": "CREATE TABLE table_name_19 (goals_conceded INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(goals_scored) FROM table_name_69 WHERE place > 1 AND team = \"once municipal\" AND points < 27", "question": "For Once Municipal, what were the goals scored that had less than 27 points and greater than place 1?", "context": "CREATE TABLE table_name_69 (goals_scored INTEGER, points VARCHAR, place VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_85 WHERE goals_conceded = 27 AND lost = 5 AND place > 2", "question": "How many points were in a game that had a lost of 5, greater than place 2, and 27 goals conceded?", "context": "CREATE TABLE table_name_85 (points VARCHAR, place VARCHAR, goals_conceded VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(goals_scored) FROM table_name_50 WHERE goals_conceded > 19 AND played < 18", "question": "What is the lowest amount of goals scored that has more than 19 goal conceded and played less than 18?", "context": "CREATE TABLE table_name_50 (goals_scored INTEGER, goals_conceded VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(goals_conceded) FROM table_name_13 WHERE played > 18", "question": "What are the number of goals conceded that has a played greater than 18?", "context": "CREATE TABLE table_name_13 (goals_conceded VARCHAR, played INTEGER)"}, {"answer": "SELECT AVG(place) FROM table_name_81 WHERE team = \"once municipal\" AND lost > 3", "question": "What's the place that Once Municipal has a lost greater than 3?", "context": "CREATE TABLE table_name_81 (place INTEGER, team VARCHAR, lost VARCHAR)"}, {"answer": "SELECT finish FROM table_name_42 WHERE year > 2007", "question": "Give the Finish for years after 2007.", "context": "CREATE TABLE table_name_42 (finish VARCHAR, year INTEGER)"}, {"answer": "SELECT finish FROM table_name_44 WHERE stage > 15", "question": "Give the Finish for a Stage that is larger than 15", "context": "CREATE TABLE table_name_44 (finish VARCHAR, stage INTEGER)"}, {"answer": "SELECT start FROM table_name_40 WHERE category = \"2\" AND year = 1947", "question": "Name the start of an event in Catagory 2 of the year 1947.", "context": "CREATE TABLE table_name_40 (start VARCHAR, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT nat FROM table_name_49 WHERE principal_victims = \"civilians\"", "question": "What is the nationality of the ship when the principle victims are civilians?", "context": "CREATE TABLE table_name_49 (nat VARCHAR, principal_victims VARCHAR)"}, {"answer": "SELECT name FROM table_name_23 WHERE ship_type = \"battleship\" AND date = \"may 13, 1915\"", "question": "what is the name of the battleship with the battle listed on May 13, 1915?", "context": "CREATE TABLE table_name_23 (name VARCHAR, ship_type VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_74 WHERE 2000 = \"2-4\"", "question": "In what year 2000 tournment did Angeles Montolio have a career win-loss record of 2-4?", "context": "CREATE TABLE table_name_74 (tournament VARCHAR)"}, {"answer": "SELECT career_win_loss FROM table_name_75 WHERE 2002 = \"1r\" AND 2000 = \"2r\" AND 2001 = \"2r\"", "question": "Which career win-loss record has a 1r in 2002, a 2r in 2000 and a 2r in 2001?", "context": "CREATE TABLE table_name_75 (career_win_loss VARCHAR)"}, {"answer": "SELECT title FROM table_name_7 WHERE peak_position = 10 AND weeks_on_chart < 19", "question": "What is the title of the single with the peak position of 10 and weeks on chart is less than 19?", "context": "CREATE TABLE table_name_7 (title VARCHAR, peak_position VARCHAR, weeks_on_chart VARCHAR)"}, {"answer": "SELECT weeks_on_chart FROM table_name_92 WHERE country = \"france\"", "question": "what is the weeks on chart for the single from france?", "context": "CREATE TABLE table_name_92 (weeks_on_chart VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_53 WHERE album = \"best of\" AND weeks_on_chart < 5", "question": "what is the country with the album best of and weeks on chart is less than 5?", "context": "CREATE TABLE table_name_53 (country VARCHAR, album VARCHAR, weeks_on_chart VARCHAR)"}, {"answer": "SELECT title FROM table_name_21 WHERE peak_position = 10 AND country = \"france\"", "question": "What is the title of the single with the peak position of 10 and from France?", "context": "CREATE TABLE table_name_21 (title VARCHAR, peak_position VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(weeks_on_chart) FROM table_name_49 WHERE peak_position < 5 AND country = \"sweden\"", "question": "what is the most weeks on chart when the peak position is less than 5 and from Sweden?", "context": "CREATE TABLE table_name_49 (weeks_on_chart INTEGER, peak_position VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_50 WHERE total = 1 AND silver = 1", "question": "Name the total number of golds when total is 1 and silver is 1", "context": "CREATE TABLE table_name_50 (gold VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_76 WHERE total < 1", "question": "Name the total number of ranks when total is less than 1", "context": "CREATE TABLE table_name_76 (rank VARCHAR, total INTEGER)"}, {"answer": "SELECT date FROM table_name_56 WHERE machine = \"norton\" AND rider = \"harry l stephen\"", "question": "Harry l Stephen rides a Norton machine on what date?", "context": "CREATE TABLE table_name_56 (date VARCHAR, machine VARCHAR, rider VARCHAR)"}, {"answer": "SELECT machine FROM table_name_76 WHERE rider = \"keith t. gawler\"", "question": "What machine did Keith T. Gawler ride?", "context": "CREATE TABLE table_name_76 (machine VARCHAR, rider VARCHAR)"}, {"answer": "SELECT place FROM table_name_3 WHERE machine = \"249cc yamaha\"", "question": "Where was the 249cc Yamaha?", "context": "CREATE TABLE table_name_3 (place VARCHAR, machine VARCHAR)"}, {"answer": "SELECT machine FROM table_name_2 WHERE rider = \"kenneth e. herbert\"", "question": "What machine did Kenneth E. Herbert ride?", "context": "CREATE TABLE table_name_2 (machine VARCHAR, rider VARCHAR)"}, {"answer": "SELECT event FROM table_name_56 WHERE rider = \"rob vine\"", "question": "What event was Rob Vine riding?", "context": "CREATE TABLE table_name_56 (event VARCHAR, rider VARCHAR)"}, {"answer": "SELECT time FROM table_name_14 WHERE team_s_ = \"minnesota vikings\" AND artist_s_ = \"xxx\"", "question": "How long is the XXX track used by the Minnesota Vikings?", "context": "CREATE TABLE table_name_14 (time VARCHAR, team_s_ VARCHAR, artist_s_ VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_name_51 WHERE time = \"3:29\"", "question": "What teams used a track 3:29 long?", "context": "CREATE TABLE table_name_51 (team_s_ VARCHAR, time VARCHAR)"}, {"answer": "SELECT artist_s_ FROM table_name_39 WHERE team_s_ = \"seattle seahawks\"", "question": "Who is the artist of the Seattle Seahawks track?", "context": "CREATE TABLE table_name_39 (artist_s_ VARCHAR, team_s_ VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_49 WHERE location = \"ebbets field\" AND time = \"2:56\" AND game > 6", "question": "Location of ebbets field, and a Time of 2:56, and a Game larger than 6 has what sum of attendance?", "context": "CREATE TABLE table_name_49 (attendance INTEGER, game VARCHAR, location VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_47 WHERE game = 6", "question": "The game of 6 has what lowest attendance?", "context": "CREATE TABLE table_name_47 (attendance INTEGER, game VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_47 WHERE date = \"october 1\"", "question": "Date of October 1 has what average game?", "context": "CREATE TABLE table_name_47 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_56 WHERE location = \"yankee stadium (i)\" AND time = \"3:00\"", "question": "yankee stadium (i), and a Time of 3:00 has what attendance for this location?", "context": "CREATE TABLE table_name_56 (attendance VARCHAR, location VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_52 WHERE college = \"lsu\"", "question": "College of lsu has how many rounds?", "context": "CREATE TABLE table_name_52 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE pick__number = 25 AND overall = 207", "question": "Pick # of 25, and an Overall of 207 has what name?", "context": "CREATE TABLE table_name_61 (name VARCHAR, pick__number VARCHAR, overall VARCHAR)"}, {"answer": "SELECT college FROM table_name_67 WHERE round < 7 AND overall = 129", "question": "Round smaller than 7, and an Overall of 129 is what college?", "context": "CREATE TABLE table_name_67 (college VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT position FROM table_name_48 WHERE round > 6 AND pick__number < 25 AND college = \"southern illinois\"", "question": "Round larger than 6, and a Pick # smaller than 25, and a College of southern Illinois has what position?", "context": "CREATE TABLE table_name_48 (position VARCHAR, college VARCHAR, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT us_release FROM table_name_79 WHERE pages = \"704\"", "question": "Which US release has 704 pages?", "context": "CREATE TABLE table_name_79 (us_release VARCHAR, pages VARCHAR)"}, {"answer": "SELECT audio FROM table_name_21 WHERE title = \"a storm of swords\"", "question": "Which audio has a Title of a storm of swords?", "context": "CREATE TABLE table_name_21 (audio VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_56 WHERE us_release = \"august 1996\"", "question": "Which title has a US release of august 1996?", "context": "CREATE TABLE table_name_56 (title VARCHAR, us_release VARCHAR)"}, {"answer": "SELECT pages FROM table_name_3 WHERE title = \"a dream of spring\"", "question": "How many pages does a dream of spring have?", "context": "CREATE TABLE table_name_3 (pages VARCHAR, title VARCHAR)"}, {"answer": "SELECT result FROM table_name_75 WHERE game_site = \"kingdome\" AND opponent = \"denver broncos\"", "question": "Name the result for kingdome game site and opponent of denver broncos", "context": "CREATE TABLE table_name_75 (result VARCHAR, game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_27 WHERE pick__number = \"1\"", "question": "Which College/junior/club team has a Pick # of 1?", "context": "CREATE TABLE table_name_27 (college_junior_club_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_69 WHERE nhl_team = \"detroit red wings\"", "question": "Which Pick # has an NHL team of detroit red wings?", "context": "CREATE TABLE table_name_69 (pick__number VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_42 WHERE position = \"defence\" AND pick__number = \"6\"", "question": "Which player has a Position of defence, and a Pick # of 6?", "context": "CREATE TABLE table_name_42 (player VARCHAR, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_97 WHERE player = \"steve durbano\"", "question": "Which NHL team has a Player of steve durbano?", "context": "CREATE TABLE table_name_97 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_64 WHERE place = \"t4\" AND player = \"tiger woods\"", "question": "What is the largest money for a t4 place, for Tiger Woods?", "context": "CREATE TABLE table_name_64 (money___ INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT goals_against FROM table_name_82 WHERE points = 58", "question": "How many goals against have 58 points?", "context": "CREATE TABLE table_name_82 (goals_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(top_10) FROM table_name_9 WHERE cuts_made > 1 AND events = 8", "question": "For majors with 8 events played and more than 1 made cut, what is the most top-10s recorded?", "context": "CREATE TABLE table_name_9 (top_10 INTEGER, cuts_made VARCHAR, events VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_33 WHERE tournament = \"pga championship\" AND events > 3", "question": "For more than 3 events in the PGA Championship, what is the fewest number of wins?", "context": "CREATE TABLE table_name_33 (wins INTEGER, tournament VARCHAR, events VARCHAR)"}, {"answer": "SELECT COUNT(top_10) FROM table_name_24 WHERE events < 3 AND cuts_made < 1", "question": "For events with under 3 times played and fewer than 1 cut made, what is the total number of top-10 finishes?", "context": "CREATE TABLE table_name_24 (top_10 VARCHAR, events VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(top_10) FROM table_name_79 WHERE events = 1 AND cuts_made > 0", "question": "For events with values of exactly 1, and 0 cuts made, what is the fewest number of top-10s?", "context": "CREATE TABLE table_name_79 (top_10 INTEGER, events VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT tyres FROM table_name_33 WHERE year < 1961 AND engine = \"climax l4\"", "question": "What is the tyres with a year earlier than 1961 for a climax l4 engine?", "context": "CREATE TABLE table_name_33 (tyres VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_69 WHERE year > 1959 AND engine = \"climax l4\"", "question": "What company built the chassis for a year later than 1959 and a climax l4 engine?", "context": "CREATE TABLE table_name_69 (chassis VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT engine FROM table_name_85 WHERE year = 1961", "question": "What engine was in the year of 1961?", "context": "CREATE TABLE table_name_85 (engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_19 WHERE chassis = \"cooper t43\"", "question": "What engine was for the vehicle with a cooper t43 chassis?", "context": "CREATE TABLE table_name_19 (engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_59 WHERE year = 1960", "question": "What is the engine for a vehicle in 1960?", "context": "CREATE TABLE table_name_59 (engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT tyres FROM table_name_70 WHERE chassis = \"jbw type 2\"", "question": "What is the tyres for the JBW type 2 chassis?", "context": "CREATE TABLE table_name_70 (tyres VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT location FROM table_name_68 WHERE game < 2", "question": "What is the location of the game that has a number smaller than 2?", "context": "CREATE TABLE table_name_68 (location VARCHAR, game INTEGER)"}, {"answer": "SELECT film FROM table_name_55 WHERE category = \"short film 2007 prix uip\" AND director_s_ = \"ian mackinnon\"", "question": "What film did ian mackinnon direct that was in the short film 2007 prix uip category?", "context": "CREATE TABLE table_name_55 (film VARCHAR, category VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT film FROM table_name_49 WHERE country = \"spain\"", "question": "What film was filmed in Spain?", "context": "CREATE TABLE table_name_49 (film VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_43 WHERE director_s_ = \"2007\"", "question": "What Country has a Director of 2007?", "context": "CREATE TABLE table_name_43 (country VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT film FROM table_name_93 WHERE category = \"short film 2007 prix uip\" AND director_s_ = \"abdelatif hwidar\"", "question": "What film did abdelatif hwidar direct that was in the short film 2007 prix uip category?", "context": "CREATE TABLE table_name_93 (film VARCHAR, category VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT nominating_festival FROM table_name_69 WHERE film = \"adjustment\"", "question": "What Nominating festival was party of the adjustment film?", "context": "CREATE TABLE table_name_69 (nominating_festival VARCHAR, film VARCHAR)"}, {"answer": "SELECT country FROM table_name_49 WHERE nominating_festival = \"prix uip ghent\"", "question": "What country was the prix uip ghent nominating festival?", "context": "CREATE TABLE table_name_49 (country VARCHAR, nominating_festival VARCHAR)"}, {"answer": "SELECT record FROM table_name_33 WHERE loss = \"stottlemyre (10-12)\"", "question": "What was the record of the game that had a loss of Stottlemyre (10-12)?", "context": "CREATE TABLE table_name_33 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_26 WHERE date = \"august 28\"", "question": "What was the Attendance high on August 28?", "context": "CREATE TABLE table_name_26 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_95 WHERE record = \"22-13\"", "question": "Who was the opponent at the game when the record was 22-13?", "context": "CREATE TABLE table_name_95 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_15 WHERE record = \"21-13\"", "question": "What was the loss of the game when the record was 21-13?", "context": "CREATE TABLE table_name_15 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE record = \"31-15\"", "question": "What was date of the game when the record was 31-15?", "context": "CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_37 WHERE opponent = \"indians\" AND loss = \"camacho (1-4)\"", "question": "What was the record at the game against the Indians with a loss of Camacho (1-4)?", "context": "CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT type FROM table_name_81 WHERE themed_land = \"wild asia\" AND opened_in = 2000", "question": "What type ride is Wild Asia that opened in 2000?", "context": "CREATE TABLE table_name_81 (type VARCHAR, themed_land VARCHAR, opened_in VARCHAR)"}, {"answer": "SELECT type FROM table_name_59 WHERE ride_name = \"rameses revenge\"", "question": "What type of ride is Rameses Revenge?", "context": "CREATE TABLE table_name_59 (type VARCHAR, ride_name VARCHAR)"}, {"answer": "SELECT type FROM table_name_32 WHERE opened_in > 2000 AND ride_name = \"peeking heights\"", "question": "Which ride opened after the 2000 Peeking Heights?", "context": "CREATE TABLE table_name_32 (type VARCHAR, opened_in VARCHAR, ride_name VARCHAR)"}, {"answer": "SELECT ride_name FROM table_name_43 WHERE manufacturer = \"zierer\"", "question": "What ride was manufactured by Zierer?", "context": "CREATE TABLE table_name_43 (ride_name VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT year FROM table_name_77 WHERE engine = \"ferrari v6\"", "question": "What year engine does a ferrari v6 have?", "context": "CREATE TABLE table_name_77 (year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_42 WHERE chassis = \"maserati 250f\" AND points = \"6\" AND year < 1957", "question": "What is the entrant of a chassis maserati 250f, also has 6 points and older than year 1957?", "context": "CREATE TABLE table_name_42 (entrant VARCHAR, year VARCHAR, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT d_45_o FROM table_name_5 WHERE d_44_o = \"majority \u2192\"", "question": "Name the D 45 O with D 44 O majority \u2192", "context": "CREATE TABLE table_name_5 (d_45_o VARCHAR, d_44_o VARCHAR)"}, {"answer": "SELECT d_45_o FROM table_name_97 WHERE d_46_o = \"r 31 \u221a\"", "question": "Name the D 45 O with D 46 O of r 31 \u221a", "context": "CREATE TABLE table_name_97 (d_45_o VARCHAR, d_46_o VARCHAR)"}, {"answer": "SELECT d_41_\u221a FROM table_name_17 WHERE d_44_o = \"r 13\"", "question": "Name the D 41 \u221a with D 44 O of r 13", "context": "CREATE TABLE table_name_17 (d_41_\u221a VARCHAR, d_44_o VARCHAR)"}, {"answer": "SELECT d_48_o FROM table_name_47 WHERE d_41_\u221a = \"d 41 \u221a\"", "question": "Name the D 48 O with D 41 \u221a of d 41 \u221a", "context": "CREATE TABLE table_name_47 (d_48_o VARCHAR, d_41_\u221a VARCHAR)"}, {"answer": "SELECT d_47_o FROM table_name_80 WHERE d_48_o = \"r 9\"", "question": "Name the D 47 O with D 48 O of r 9", "context": "CREATE TABLE table_name_80 (d_47_o VARCHAR, d_48_o VARCHAR)"}, {"answer": "SELECT MIN(league) AS Cup FROM table_name_34 WHERE league = 434", "question": "What is the lowest number of League Cups a player with a 434 league has?", "context": "CREATE TABLE table_name_34 (league INTEGER)"}, {"answer": "SELECT AVG(fa_cup) FROM table_name_79 WHERE name = \"steve whitworth\" AND total < 400", "question": "What is the average number of FA cups Steve Whitworth, who has less than 400 total, has?", "context": "CREATE TABLE table_name_79 (fa_cup INTEGER, name VARCHAR, total VARCHAR)"}, {"answer": "SELECT height_feet___m FROM table_name_68 WHERE floors < 34 AND name = \"the tides\"", "question": "What is the height of the Tides with less than 34 floors?", "context": "CREATE TABLE table_name_68 (height_feet___m VARCHAR, floors VARCHAR, name VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_14 WHERE floors = 24", "question": "How many years was the building with 24 floors the tallest?", "context": "CREATE TABLE table_name_14 (years_as_tallest VARCHAR, floors VARCHAR)"}, {"answer": "SELECT SUM(floors) FROM table_name_92 WHERE name = \"blue diamond\"", "question": "How many floors does the Blue Diamond have?", "context": "CREATE TABLE table_name_92 (floors INTEGER, name VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_name_2 WHERE year > 2011", "question": "Which mixed doubles happened later than 2011?", "context": "CREATE TABLE table_name_2 (mixed_doubles VARCHAR, year INTEGER)"}, {"answer": "SELECT name FROM table_name_19 WHERE country = \"sco\"", "question": "What is the person's name that is from the country of SCO?", "context": "CREATE TABLE table_name_19 (name VARCHAR, country VARCHAR)"}, {"answer": "SELECT source FROM table_name_89 WHERE name = \"cresswell\"", "question": "What was the source for the person named Cresswell?", "context": "CREATE TABLE table_name_89 (source VARCHAR, name VARCHAR)"}, {"answer": "SELECT status FROM table_name_65 WHERE name = \"nicholls\"", "question": "What is the current status of the person named Nicholls?", "context": "CREATE TABLE table_name_65 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_83 WHERE transfer_window = \"summer\" AND country = \"sco\" AND name = \"crainey\"", "question": "What was the transfer fee for the summer transfer involving the SCO named Crainey?", "context": "CREATE TABLE table_name_83 (transfer_fee VARCHAR, name VARCHAR, transfer_window VARCHAR, country VARCHAR)"}, {"answer": "SELECT source FROM table_name_88 WHERE country = \"eng\" AND transfer_fee = \"\u00a31.5m\"", "question": "What was the source of an ENG transfer that paid a \u00a31.5m transfer fee?", "context": "CREATE TABLE table_name_88 (source VARCHAR, country VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT record FROM table_name_5 WHERE opponent = \"@ orioles\" AND loss = \"leal (5-4)\"", "question": "What was the record where the opponent was @ Orioles and the loss was to Leal (5-4)?", "context": "CREATE TABLE table_name_5 (record VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_84 WHERE date = \"june 14\"", "question": "What was the record for the date of June 14?", "context": "CREATE TABLE table_name_84 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(seats) FROM table_name_89 WHERE vote__percentage > 19.5", "question": "Name the total number of seats for votes % more than 19.5", "context": "CREATE TABLE table_name_89 (seats VARCHAR, vote__percentage INTEGER)"}, {"answer": "SELECT MAX(vote__percentage) FROM table_name_53 WHERE election = \"1946\"", "question": "Name the most vote % with election of 1946", "context": "CREATE TABLE table_name_53 (vote__percentage INTEGER, election VARCHAR)"}, {"answer": "SELECT vote__percentage FROM table_name_92 WHERE seats = 9", "question": "Name the vote % for seats of 9", "context": "CREATE TABLE table_name_92 (vote__percentage VARCHAR, seats VARCHAR)"}, {"answer": "SELECT SUM(votes) FROM table_name_26 WHERE vote__percentage > 19.5", "question": "Name the sum of votes % more than 19.5", "context": "CREATE TABLE table_name_26 (votes INTEGER, vote__percentage INTEGER)"}, {"answer": "SELECT director_s_ FROM table_name_80 WHERE recipient = \"cracking film productions\"", "question": "Who directed a film for Cracking Film Productions?", "context": "CREATE TABLE table_name_80 (director_s_ VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT award FROM table_name_7 WHERE film = \"ozone\"", "question": "What award did the film Ozone win?", "context": "CREATE TABLE table_name_7 (award VARCHAR, film VARCHAR)"}, {"answer": "SELECT recipient FROM table_name_37 WHERE date = \"4/9/02\" AND award = \"\u00a33,000\"", "question": "Who won an award of \u00a33,000 on 4/9/02?", "context": "CREATE TABLE table_name_37 (recipient VARCHAR, date VARCHAR, award VARCHAR)"}, {"answer": "SELECT categorie FROM table_name_39 WHERE year = 2002 AND awards = \"berlin international film festival\"", "question": "What was the categorie in 2002 at the Berlin international Film Festival that Danielle Darrieux was in?", "context": "CREATE TABLE table_name_39 (categorie VARCHAR, year VARCHAR, awards VARCHAR)"}, {"answer": "SELECT result FROM table_name_80 WHERE year > 1987 AND awards = \"berlin international film festival\"", "question": "What was the result at the Berlin International Film Festival in a year greater than 1987?", "context": "CREATE TABLE table_name_80 (result VARCHAR, year VARCHAR, awards VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_70 WHERE movie = \"8 women\" AND awards = \"c\u00e9sar award\"", "question": "In what year was the movie 8 women up for a C\u00e9sar Award?", "context": "CREATE TABLE table_name_70 (year INTEGER, movie VARCHAR, awards VARCHAR)"}, {"answer": "SELECT position FROM table_name_17 WHERE school = \"indiana state\"", "question": "Name the position for indiana state", "context": "CREATE TABLE table_name_17 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT format FROM table_name_53 WHERE date = \"february 14, 2002\"", "question": "What is the format of the date February 14, 2002?", "context": "CREATE TABLE table_name_53 (format VARCHAR, date VARCHAR)"}, {"answer": "SELECT region FROM table_name_7 WHERE catalog = \"38xa-3\"", "question": "Which region is identified as 38xa-3 in the catalog?", "context": "CREATE TABLE table_name_7 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE format = \"cd\"", "question": "Which date is in CD format?", "context": "CREATE TABLE table_name_70 (date VARCHAR, format VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE format = \"stereo lp\"", "question": "Which date is in stereo lp format?", "context": "CREATE TABLE table_name_97 (date VARCHAR, format VARCHAR)"}, {"answer": "SELECT label FROM table_name_32 WHERE date = \"february 14, 2002\"", "question": "Which label is dated February 14, 2002?", "context": "CREATE TABLE table_name_32 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_54 WHERE format = \"cd\"", "question": "Which catalog is in cd format?", "context": "CREATE TABLE table_name_54 (catalog VARCHAR, format VARCHAR)"}, {"answer": "SELECT event FROM table_name_9 WHERE winner = \"mark teltscher\"", "question": "What event did Mark Teltscher win?", "context": "CREATE TABLE table_name_9 (event VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE city = \"baden\"", "question": "When was the event in the City of Baden?", "context": "CREATE TABLE table_name_35 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT event FROM table_name_80 WHERE prize = \"\u20ac900,000\"", "question": "What event had a prize of \u20ac900,000?", "context": "CREATE TABLE table_name_80 (event VARCHAR, prize VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE city = \"dublin\"", "question": "When was the event in Dublin?", "context": "CREATE TABLE table_name_50 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_96 WHERE prize = \"\u20ac288,180\"", "question": "What city did an event have a prize of \u20ac288,180?", "context": "CREATE TABLE table_name_96 (city VARCHAR, prize VARCHAR)"}, {"answer": "SELECT city FROM table_name_93 WHERE winner = \"patrik antonius\"", "question": "What city was the event in when Patrik Antonius won?", "context": "CREATE TABLE table_name_93 (city VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_71 WHERE circuit = \"parioli\"", "question": "Who was the winning constructor at the circuit of parioli?", "context": "CREATE TABLE table_name_71 (winning_constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE winning_driver = \"gaspare bona\" AND name = \"pozzo circuit\"", "question": "When did Gaspare Bona win the Pozzo Circuit?", "context": "CREATE TABLE table_name_98 (date VARCHAR, winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_24 WHERE name = \"grand prix du salon\"", "question": "Who was the winning constructor of the Grand Prix Du Salon ?", "context": "CREATE TABLE table_name_24 (winning_constructor VARCHAR, name VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_54 WHERE winning_driver = \"fran\u00e7ois eysermann\"", "question": "Which circuit did fran\u00e7ois eysermann win ?", "context": "CREATE TABLE table_name_54 (circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_19 WHERE gold > 4 AND nation = \"united states\" AND total > 26", "question": "What is the largest silver with Gold larger than 4, a Nation of united states, and a Total larger than 26?", "context": "CREATE TABLE table_name_19 (silver INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_30 WHERE nation = \"hungary\" AND rank > 10", "question": "How many silvers have a Nation of hungary, and a Rank larger than 10?", "context": "CREATE TABLE table_name_30 (silver VARCHAR, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT silver FROM table_name_24 WHERE gold < 12 AND rank < 5 AND bronze = 5", "question": "Which silver has a Gold smaller than 12, a Rank smaller than 5, and a Bronze of 5?", "context": "CREATE TABLE table_name_24 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_48 WHERE date = \"august 12\"", "question": "Who did they play on August 12?", "context": "CREATE TABLE table_name_48 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT model FROM table_name_92 WHERE seats = 175", "question": "Which model has 175 seats?", "context": "CREATE TABLE table_name_92 (model VARCHAR, seats VARCHAR)"}, {"answer": "SELECT year_built FROM table_name_41 WHERE model = \"ctc-3\"", "question": "In what year was the ctc-3 model built?", "context": "CREATE TABLE table_name_41 (year_built VARCHAR, model VARCHAR)"}, {"answer": "SELECT SUM(seats) FROM table_name_57 WHERE model = \"btc-5\"", "question": "How many seats does the BTC-5 model have?", "context": "CREATE TABLE table_name_57 (seats INTEGER, model VARCHAR)"}, {"answer": "SELECT fleet_id FROM table_name_37 WHERE year_built = \"2012\" AND seats < 179", "question": "For the train built in 2012 with less than 179 seats, what is the Fleet ID?", "context": "CREATE TABLE table_name_37 (fleet_id VARCHAR, year_built VARCHAR, seats VARCHAR)"}, {"answer": "SELECT record FROM table_name_48 WHERE attendance = \"10,389\"", "question": "What was the record at the game attended by 10,389?", "context": "CREATE TABLE table_name_48 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE loss = \"drese (2-2)\"", "question": "What was the score of the game that had a loss of Drese (2-2)?", "context": "CREATE TABLE table_name_99 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE attendance = \"25,034\"", "question": "What is the score of the game attended by 25,034?", "context": "CREATE TABLE table_name_85 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_74 WHERE tournament = \"olympic games\"", "question": "How often are the Olympic games hosted?", "context": "CREATE TABLE table_name_74 (year INTEGER, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_29 WHERE year = 1984", "question": "Where was the 1984 Olympics hosted?", "context": "CREATE TABLE table_name_29 (tournament VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year_of_issue) FROM table_name_52 WHERE issue_price = \"$19.95\"", "question": "How many years was the issue price $19.95?", "context": "CREATE TABLE table_name_52 (year_of_issue VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT composition FROM table_name_79 WHERE issue_price = \"$99.00\"", "question": "Which composition has an issue price of $99.00?", "context": "CREATE TABLE table_name_79 (composition VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT european_competitions FROM table_name_35 WHERE tier = 2 AND season = \"2000\u201301\"", "question": "Tier of 2, and a Season of 2000\u201301 is what European competitions?", "context": "CREATE TABLE table_name_35 (european_competitions VARCHAR, tier VARCHAR, season VARCHAR)"}, {"answer": "SELECT league FROM table_name_68 WHERE season = \"2012\u201313\"", "question": "Season of 2012\u201313 is what league?", "context": "CREATE TABLE table_name_68 (league VARCHAR, season VARCHAR)"}, {"answer": "SELECT european_competitions FROM table_name_49 WHERE tier = 2 AND season = \"2004\u201305\"", "question": "Tier of 2, and a Season of 2004\u201305 is what European competitions?", "context": "CREATE TABLE table_name_49 (european_competitions VARCHAR, tier VARCHAR, season VARCHAR)"}, {"answer": "SELECT operator FROM table_name_20 WHERE rank = 7", "question": "Which operator has a rank of 7?", "context": "CREATE TABLE table_name_20 (operator VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_60 WHERE source_of_copper = \"copper ore, concentrated and leached\"", "question": "What's the lowest ranking source of copper, copper ore, concentrated and leached?", "context": "CREATE TABLE table_name_60 (rank INTEGER, source_of_copper VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_61 WHERE name = \"st\u00e9phan perrot\"", "question": "What was St\u00e9phan Perrot rank average?", "context": "CREATE TABLE table_name_61 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_91 WHERE name = \"maxim podoprigora\"", "question": "What was Maxim Podoprigora's lowest rank?", "context": "CREATE TABLE table_name_91 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_81 WHERE venue = \"kingsmead\"", "question": "Who is the away captain for Kingsmead?", "context": "CREATE TABLE table_name_81 (away_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT first_year_aired FROM table_name_28 WHERE prize = \"50,000\"", "question": "What was the first year that had a prize of 50,000?", "context": "CREATE TABLE table_name_28 (first_year_aired VARCHAR, prize VARCHAR)"}, {"answer": "SELECT first_year_aired FROM table_name_79 WHERE name = \"zone rouge\"", "question": "What year did Zone Rouge first air?", "context": "CREATE TABLE table_name_79 (first_year_aired VARCHAR, name VARCHAR)"}, {"answer": "SELECT host FROM table_name_74 WHERE country = \"horrid henry\"", "question": "What was the host of Horrid Henry?", "context": "CREATE TABLE table_name_74 (host VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(launched) FROM table_name_37 WHERE location = \"germany\" AND ship = \"vmv-1\"", "question": "What is the average launch date of the vmv-1 vessel in Germany?", "context": "CREATE TABLE table_name_37 (launched INTEGER, location VARCHAR, ship VARCHAR)"}, {"answer": "SELECT location FROM table_name_95 WHERE date = \"may 21\"", "question": "Which location has a date of may 21?", "context": "CREATE TABLE table_name_95 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(decile) FROM table_name_49 WHERE authority = \"state\" AND area = \"fairlie\" AND roll < 206", "question": "What is the total Decile that has a state authority, fairlie area and roll smarter than 206?", "context": "CREATE TABLE table_name_49 (decile VARCHAR, roll VARCHAR, authority VARCHAR, area VARCHAR)"}, {"answer": "SELECT area FROM table_name_50 WHERE name = \"mackenzie college\"", "question": "What area is named Mackenzie college?", "context": "CREATE TABLE table_name_50 (area VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(pts) FROM table_name_9 WHERE coach = \"bruce arena\" AND loss > 11", "question": "What is the highest percent of Bruce Arena when he loses more than 11 games?", "context": "CREATE TABLE table_name_9 (pts INTEGER, coach VARCHAR, loss VARCHAR)"}, {"answer": "SELECT SUM(pts) FROM table_name_96 WHERE wins = 21 AND coach = \"bruce arena\"", "question": "What is the sum of points when Bruce Arena has 21 wins?", "context": "CREATE TABLE table_name_96 (pts INTEGER, wins VARCHAR, coach VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_68 WHERE date = \"19-sep-2006\"", "question": "What was the outcome of the game played on 19-Sep-2006?", "context": "CREATE TABLE table_name_68 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_56 WHERE date = \"oct. 8, 2006\"", "question": "Where was the tournament played on Oct. 8, 2006?", "context": "CREATE TABLE table_name_56 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE tournament = \"clearwater, florida\"", "question": "What is the final score of the tournament played in Clearwater, Florida?", "context": "CREATE TABLE table_name_47 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE opponent = \"maria kondratieva\"", "question": "What is the score of the game that was played against Maria Kondratieva?", "context": "CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_90 WHERE score = \"6-1 7-5\"", "question": "What was the surface of the game that resulted in a final score of 6-1 7-5?", "context": "CREATE TABLE table_name_90 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_34 WHERE time = \"2:13\"", "question": "What was the Attendance when the Time was 2:13?", "context": "CREATE TABLE table_name_34 (attendance INTEGER, time VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_90 WHERE record = \"77-54\"", "question": "What was the attendance when the record was 77-54?", "context": "CREATE TABLE table_name_90 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT MAX(overs) FROM table_name_25 WHERE player = \"xavier doherty (tasmania)\"", "question": "What did Xavier Doherty (Tasmania) set as his highest Overs?", "context": "CREATE TABLE table_name_25 (overs INTEGER, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_17 WHERE player = \"tiger woods\"", "question": "What country does Tiger Woods play for?", "context": "CREATE TABLE table_name_17 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_50 WHERE country = \"england\"", "question": "What place did the player from England come in?", "context": "CREATE TABLE table_name_50 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_20 WHERE original_title = \"fanny och alexander\"", "question": "What's the English Title of Fanny Och Alexander?", "context": "CREATE TABLE table_name_20 (english_title VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_22 WHERE year < 1986 AND country = \"france\" AND director_s_ = \"alain resnais\"", "question": "What was the original title that was directed by Alain Resnais in France before 1986?", "context": "CREATE TABLE table_name_22 (original_title VARCHAR, director_s_ VARCHAR, year VARCHAR, country VARCHAR)"}, {"answer": "SELECT year FROM table_name_60 WHERE original_title = \"meg\u00e1ll az id\u00f6\"", "question": "What was the year of Meg\u00e1ll az Id\u00f6?", "context": "CREATE TABLE table_name_60 (year VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT name FROM table_name_2 WHERE avg_g < 225.5 AND gp_gs = \"8\u20130\"", "question": "Avg/G smaller than 225.5, and a GP-GS of 8\u20130 has what name?", "context": "CREATE TABLE table_name_2 (name VARCHAR, avg_g VARCHAR, gp_gs VARCHAR)"}, {"answer": "SELECT COUNT(avg_g) FROM table_name_82 WHERE gp_gs = \"13\u201313\" AND effic < 114.23", "question": "Avg/G that has a GP-GS of 13\u201313, and a Effic smaller than 114.23 has what total of numbers?", "context": "CREATE TABLE table_name_82 (avg_g VARCHAR, gp_gs VARCHAR, effic VARCHAR)"}, {"answer": "SELECT effic FROM table_name_54 WHERE avg_g = 2.7", "question": "Avg/G of 2.7 is what effic?", "context": "CREATE TABLE table_name_54 (effic VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT COUNT(avg_g) FROM table_name_62 WHERE att_cmp_int = \"1\u20131\u20130\" AND effic > 394", "question": "Avg/G that has a Att-Cmp-Int of 1\u20131\u20130, and an Effic larger than 394 is what total?", "context": "CREATE TABLE table_name_62 (avg_g VARCHAR, att_cmp_int VARCHAR, effic VARCHAR)"}, {"answer": "SELECT area FROM table_name_98 WHERE decile = 9 AND roll = 31", "question": "Which area has a Decile of 9, and a Roll of 31?", "context": "CREATE TABLE table_name_98 (area VARCHAR, decile VARCHAR, roll VARCHAR)"}, {"answer": "SELECT COUNT(decile) FROM table_name_68 WHERE years = \"9\u201313\"", "question": "How many deciles have Years of 9\u201313?", "context": "CREATE TABLE table_name_68 (decile VARCHAR, years VARCHAR)"}, {"answer": "SELECT name FROM table_name_55 WHERE decile < 10 AND roll = 297", "question": "What is the name with a Decile less than 10, and a Roll of 297?", "context": "CREATE TABLE table_name_55 (name VARCHAR, decile VARCHAR, roll VARCHAR)"}, {"answer": "SELECT name FROM table_name_1 WHERE roll > 297 AND years = \"7\u201313\"", "question": "Which name has a Roll larger than 297, and Years of 7\u201313?", "context": "CREATE TABLE table_name_1 (name VARCHAR, roll VARCHAR, years VARCHAR)"}, {"answer": "SELECT years FROM table_name_97 WHERE name = \"ladbrooks school\"", "question": "Which years have a Name of ladbrooks school?", "context": "CREATE TABLE table_name_97 (years VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(roll) FROM table_name_73 WHERE decile = 8 AND area = \"hororata\"", "question": "What is the total of the roll with a Decile of 8, and an Area of hororata?", "context": "CREATE TABLE table_name_73 (roll INTEGER, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_98 WHERE finish = \"8\"", "question": "What is the highest number of laps that also has a finish total of 8?", "context": "CREATE TABLE table_name_98 (laps INTEGER, finish VARCHAR)"}, {"answer": "SELECT qual FROM table_name_75 WHERE finish = \"9\"", "question": "Which qual also has a finish total of 9?", "context": "CREATE TABLE table_name_75 (qual VARCHAR, finish VARCHAR)"}, {"answer": "SELECT qual FROM table_name_80 WHERE laps = 200 AND year = \"1957\"", "question": "Which qual has both 200 total laps and took place in 1957?", "context": "CREATE TABLE table_name_80 (qual VARCHAR, laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT code_name FROM table_name_26 WHERE southbridge = \"amd-766, via-vt82c686b\"", "question": "What is the code name when the Southbridge shows as amd-766, via-vt82c686b?", "context": "CREATE TABLE table_name_26 (code_name VARCHAR, southbridge VARCHAR)"}, {"answer": "SELECT southbridge FROM table_name_56 WHERE cpu_support = \"athlon, athlonxp, duron( socketa ), alpha21264\"", "question": "What is the Southbridge when the CPU support was athlon, athlonxp, duron( socketa ), alpha21264?", "context": "CREATE TABLE table_name_56 (southbridge VARCHAR, cpu_support VARCHAR)"}, {"answer": "SELECT code_name FROM table_name_12 WHERE fsb___ht__mhz_ = \"100 (fsb)\"", "question": "What is the code name when the FSB / HT (MHz) is 100 (fsb)?", "context": "CREATE TABLE table_name_12 (code_name VARCHAR, fsb___ht__mhz_ VARCHAR)"}, {"answer": "SELECT fsb___ht__mhz_ FROM table_name_50 WHERE southbridge = \"amd-8131 amd-8132\"", "question": "What is the FSB / HT (MHz) when the Southbridge is amd-8131 amd-8132?", "context": "CREATE TABLE table_name_50 (fsb___ht__mhz_ VARCHAR, southbridge VARCHAR)"}, {"answer": "SELECT southbridge FROM table_name_7 WHERE model = \"amd-640 chipset\"", "question": "What shows for Southbridge when the Model number is amd-640 chipset?", "context": "CREATE TABLE table_name_7 (southbridge VARCHAR, model VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_34 WHERE sport = \"football\" AND league = \"china league one\"", "question": "Which stadium is for football with the China League One?", "context": "CREATE TABLE table_name_34 (stadium VARCHAR, sport VARCHAR, league VARCHAR)"}, {"answer": "SELECT tier FROM table_name_62 WHERE sport = \"football\" AND stadium = \"tianhe stadium\"", "question": "Which tier is for football at Tianhe Stadium?", "context": "CREATE TABLE table_name_62 (tier VARCHAR, sport VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT llws FROM table_name_70 WHERE city = \"parsippany\"", "question": "Which Little League World Series took place in Parsippany?", "context": "CREATE TABLE table_name_70 (llws VARCHAR, city VARCHAR)"}, {"answer": "SELECT tennessee FROM table_name_27 WHERE georgia = \"kevin butler\"", "question": "What is the Tennessee that Georgia of kevin butler is in?", "context": "CREATE TABLE table_name_27 (tennessee VARCHAR, georgia VARCHAR)"}, {"answer": "SELECT tennessee FROM table_name_11 WHERE kentucky = \"larry seiple\"", "question": "What is the Tennessee with a Kentucky of Larry Seiple", "context": "CREATE TABLE table_name_11 (tennessee VARCHAR, kentucky VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_10 WHERE kentucky = \"jeff van note\"", "question": "What is the total Year of jeff van note ( Kentucky)", "context": "CREATE TABLE table_name_10 (year INTEGER, kentucky VARCHAR)"}, {"answer": "SELECT built FROM table_name_51 WHERE period = \"1967-1987\"", "question": "How many cabins were built in the time between 1967-1987?", "context": "CREATE TABLE table_name_51 (built VARCHAR, period VARCHAR)"}, {"answer": "SELECT period FROM table_name_43 WHERE built < 241 AND model = \"fokker 70\"", "question": "Between which years were there 241 fokker 70 model cabins built?", "context": "CREATE TABLE table_name_43 (period VARCHAR, built VARCHAR, model VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_43 WHERE engine_s_ = \"brm p202 3.0 v12 brm p200 3.0 v12\"", "question": "Name the sum of year for engine of brm p202 3.0 v12 brm p200 3.0 v12", "context": "CREATE TABLE table_name_43 (year INTEGER, engine_s_ VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_12 WHERE tyres = \"d\" AND year = 1970", "question": "Name the chassis for 1970 and tyres of d", "context": "CREATE TABLE table_name_12 (chassis VARCHAR, tyres VARCHAR, year VARCHAR)"}, {"answer": "SELECT points FROM table_name_24 WHERE year = 1974", "question": "Name the point for 1974", "context": "CREATE TABLE table_name_24 (points VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_33 WHERE year = 1961", "question": "Name the chassis of 1961", "context": "CREATE TABLE table_name_33 (chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year_opened) FROM table_name_17 WHERE track_name = \"chicagoland speedway\" AND seating < 75 OFFSET 000", "question": "What is the year opened for Chicagoland Speedway with a seating smaller than 75,000?", "context": "CREATE TABLE table_name_17 (year_opened INTEGER, track_name VARCHAR, seating VARCHAR)"}, {"answer": "SELECT type FROM table_name_21 WHERE reported_price = \"$500,000\" AND person_s_ = \"angelina jolie\"", "question": "What type of photos of Angelina Jolie cost $500,000?", "context": "CREATE TABLE table_name_21 (type VARCHAR, reported_price VARCHAR, person_s_ VARCHAR)"}, {"answer": "SELECT publication_date FROM table_name_90 WHERE reported_price = \"$500,000\" AND publisher_s_ = \"people\" AND person_s_ = \"sean preston federline\"", "question": "What was the publication date of the photos of Sean Preston Federline that cost $500,000 and were published by People?", "context": "CREATE TABLE table_name_90 (publication_date VARCHAR, person_s_ VARCHAR, reported_price VARCHAR, publisher_s_ VARCHAR)"}, {"answer": "SELECT winner FROM table_name_38 WHERE date = \"28 may\"", "question": "Who won on 28 May?", "context": "CREATE TABLE table_name_38 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_9 WHERE film_title_used_in_nomination = \"tent of miracles\"", "question": "Which country is the film Tent of Miracles from?", "context": "CREATE TABLE table_name_9 (country VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT country FROM table_name_30 WHERE director = \"roland verhavert\"", "question": "Which country is the director Roland Verhavert from?", "context": "CREATE TABLE table_name_30 (country VARCHAR, director VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_14 WHERE language = \"german\" AND original_name = \"mama, ich lebe\"", "question": "What is the title of the German film that is originally called Mama, Ich Lebe?", "context": "CREATE TABLE table_name_14 (film_title_used_in_nomination VARCHAR, language VARCHAR, original_name VARCHAR)"}, {"answer": "SELECT director FROM table_name_41 WHERE country = \"italy\"", "question": "Which director is from Italy?", "context": "CREATE TABLE table_name_41 (director VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_99 WHERE director = \"dariush mehrjui\"", "question": "Where is the director Dariush Mehrjui from?", "context": "CREATE TABLE table_name_99 (country VARCHAR, director VARCHAR)"}, {"answer": "SELECT investing_dragon_s_ FROM table_name_65 WHERE first_aired = \"18 january 2005\" AND entrepreneur_s_ = \"tracey herrtage\"", "question": "Who were the Investing Dragons in the episode that first aired on 18 January 2005 with the entrepreneur Tracey Herrtage?", "context": "CREATE TABLE table_name_65 (investing_dragon_s_ VARCHAR, first_aired VARCHAR, entrepreneur_s_ VARCHAR)"}, {"answer": "SELECT AVG(money_requested__) AS \u00a3_ FROM table_name_96 WHERE first_aired = \"18 january 2005\" AND company_or_product_name = \"iv cam\"", "question": "What is the average money requested in the episode first aired on 18 January 2005 by the company/product name IV Cam", "context": "CREATE TABLE table_name_96 (money_requested__ INTEGER, first_aired VARCHAR, company_or_product_name VARCHAR)"}, {"answer": "SELECT population FROM table_name_95 WHERE rank = 11", "question": "What is the population for Rank 11?", "context": "CREATE TABLE table_name_95 (population VARCHAR, rank VARCHAR)"}, {"answer": "SELECT trailers FROM table_name_47 WHERE formed_from = \"pan/pul/res cars\"", "question": "Name the trailers for formed from pan/pul/res cars", "context": "CREATE TABLE table_name_47 (trailers VARCHAR, formed_from VARCHAR)"}, {"answer": "SELECT type FROM table_name_40 WHERE formed_from = \"6-pul trailer third in res unit\"", "question": "Name the typed for formed from 6-pul trailer third in res unit", "context": "CREATE TABLE table_name_40 (type VARCHAR, formed_from VARCHAR)"}, {"answer": "SELECT formed_from FROM table_name_58 WHERE type = \"4-cor\"", "question": "Name the formed that has type of 4-cor", "context": "CREATE TABLE table_name_58 (formed_from VARCHAR, type VARCHAR)"}, {"answer": "SELECT loss FROM table_name_9 WHERE time = \"2:42\"", "question": "Who lost with a time of 2:42?", "context": "CREATE TABLE table_name_9 (loss VARCHAR, time VARCHAR)"}, {"answer": "SELECT loss FROM table_name_93 WHERE date = \"august 27\"", "question": "Who lost on August 27?", "context": "CREATE TABLE table_name_93 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_62 WHERE year > 1953", "question": "Which of the biggest points numbers had a year more recent than 1953?", "context": "CREATE TABLE table_name_62 (points INTEGER, year INTEGER)"}, {"answer": "SELECT SUM(year) FROM table_name_68 WHERE points > 0", "question": "How many years had more than 0 points?", "context": "CREATE TABLE table_name_68 (year INTEGER, points INTEGER)"}, {"answer": "SELECT entrant FROM table_name_67 WHERE year < 1953", "question": "Which entrant was present prior to 1953?", "context": "CREATE TABLE table_name_67 (entrant VARCHAR, year INTEGER)"}, {"answer": "SELECT wickets FROM table_name_77 WHERE runs < 7531 AND matches > 44 AND average = 22.17", "question": "How many wickets have runs under 7531, matches over 44, and an average of 22.17?", "context": "CREATE TABLE table_name_77 (wickets VARCHAR, average VARCHAR, runs VARCHAR, matches VARCHAR)"}, {"answer": "SELECT SUM(wickets) FROM table_name_64 WHERE runs < 4600 AND matches < 44", "question": "What is the total number of wickets that have runs under 4600 and matches under 44?", "context": "CREATE TABLE table_name_64 (wickets INTEGER, runs VARCHAR, matches VARCHAR)"}, {"answer": "SELECT label FROM table_name_2 WHERE catalog = \"alca-9013\"", "question": "Which Label was cataloged as alca-9013?", "context": "CREATE TABLE table_name_2 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_9 WHERE label = \"alfa records\" AND format = \"cd\"", "question": "Which Catalog was formated as a CD under the label Alfa Records?", "context": "CREATE TABLE table_name_9 (catalog VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT MIN(retired) FROM table_name_50 WHERE delivery = \"1965\" AND in_service = \"november 1971\" AND poaf_serial < 7103", "question": "What is the earliest year retired delivered in 1965 with an in service in November 1971 for the PoAF Serial less than 7103?", "context": "CREATE TABLE table_name_50 (retired INTEGER, poaf_serial VARCHAR, delivery VARCHAR, in_service VARCHAR)"}, {"answer": "SELECT MIN(freight_carried_s_tonne) FROM table_name_80 WHERE road_closed = \"march 31\" AND super_b_capacity_reached_[_citation_needed_] = \"february 17\" AND year > 2011", "question": "What is the smallest amount of freight carried on the road that closed on March 31 and reached super B capacity on February 17 after 2011?", "context": "CREATE TABLE table_name_80 (freight_carried_s_tonne INTEGER, year VARCHAR, road_closed VARCHAR, super_b_capacity_reached_ VARCHAR, _citation_needed_ VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_95 WHERE original_title = \"the crying game\"", "question": "What's the English title listed that has an Original title of The Crying Game?", "context": "CREATE TABLE table_name_95 (english_title VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT year FROM table_name_13 WHERE original_title = \"la c\u00e9r\u00e9monie\"", "question": "Which Year has the Orginal title of La C\u00e9r\u00e9monie?", "context": "CREATE TABLE table_name_13 (year VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_70 WHERE english_title = \"a judgement in stone\"", "question": "What's the Original Title of the English title A Judgement in Stone?", "context": "CREATE TABLE table_name_70 (original_title VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT director FROM table_name_59 WHERE original_title = \"the crying game\"", "question": "Who is the Director of the Original title of The Crying Game?", "context": "CREATE TABLE table_name_59 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT country FROM table_name_74 WHERE director = \"thomas vinterberg\"", "question": "Which Country is listed for the Director Thomas Vinterberg?", "context": "CREATE TABLE table_name_74 (country VARCHAR, director VARCHAR)"}, {"answer": "SELECT country FROM table_name_79 WHERE director = \"chen kaige\"", "question": "Which Country has the Director Chen Kaige?", "context": "CREATE TABLE table_name_79 (country VARCHAR, director VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE attendance = \"50,200\"", "question": "What was the score of the game attended by 50,200?", "context": "CREATE TABLE table_name_2 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT termination_of_mission FROM table_name_34 WHERE presentation_of_credentials = \"august 29, 1859\"", "question": "What's the Termination of Mission listed that has a Presentation of Credentials for August 29, 1859?", "context": "CREATE TABLE table_name_34 (termination_of_mission VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT representative FROM table_name_80 WHERE presentation_of_credentials = \"august 25, 1851\"", "question": "What's the Representative listed that has a Presentation of Credentials of August 25, 1851?", "context": "CREATE TABLE table_name_80 (representative VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT title FROM table_name_93 WHERE termination_of_mission = \"august 13, 1854\"", "question": "What Title has a Termination of Mission for August 13, 1854?", "context": "CREATE TABLE table_name_93 (title VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT title FROM table_name_60 WHERE termination_of_mission = \"november 4, 1861\"", "question": "What Title has a Termination of Mission of November 4, 1861?", "context": "CREATE TABLE table_name_60 (title VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT representative FROM table_name_42 WHERE presentation_of_credentials = \"april 10, 1855\"", "question": "What Representative has a Presentation of Credentails of April 10, 1855?", "context": "CREATE TABLE table_name_42 (representative VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT title FROM table_name_21 WHERE appointed_by = \"millard fillmore\"", "question": "Which Title has an Appointed by of Millard Fillmore?", "context": "CREATE TABLE table_name_21 (title VARCHAR, appointed_by VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_42 WHERE year = 1999 AND partner = \"choong tan fook\"", "question": "Who was Choong Tan Fook's opponent in 1999?", "context": "CREATE TABLE table_name_42 (opponent VARCHAR, year VARCHAR, partner VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_66 WHERE tournament = \"chinese taipei open\" AND year = 2000", "question": "Which opponent played in the Chinese Taipei Open in 2000?", "context": "CREATE TABLE table_name_66 (opponent VARCHAR, tournament VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_6 WHERE nation = \"jamaica (jam)\" AND total < 7", "question": "How many bronzes have a Nation of jamaica (jam), and a Total smaller than 7?", "context": "CREATE TABLE table_name_6 (bronze VARCHAR, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_82 WHERE gold > 0 AND rank = \"1\" AND total < 30", "question": "What is the average silver with more than 0 gold, a Rank of 1, and a Total smaller than 30?", "context": "CREATE TABLE table_name_82 (silver INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_2 WHERE total < 1", "question": "What is the total gold with a total less than 1?", "context": "CREATE TABLE table_name_2 (gold INTEGER, total INTEGER)"}, {"answer": "SELECT nir_number FROM table_name_87 WHERE type = \"tso (ex-br class 488 unit 488305)\" AND br_number_s_ = \"6082 / 72605\"", "question": "Which NIR number is for the tso (ex-br class 488 unit 488305) type that has a 6082 / 72605 BR number?", "context": "CREATE TABLE table_name_87 (nir_number VARCHAR, type VARCHAR, br_number_s_ VARCHAR)"}, {"answer": "SELECT authority FROM table_name_32 WHERE name = \"whakamaru school\"", "question": "What is the Whakamaru school's authority?", "context": "CREATE TABLE table_name_32 (authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT area FROM table_name_11 WHERE authority = \"state\" AND roll > 157", "question": "Where is the school with state authority that has a roll of more than 157 students?", "context": "CREATE TABLE table_name_11 (area VARCHAR, authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT subject FROM table_name_12 WHERE pinyin = \"shiyan\"", "question": "Name the subject of shiyan", "context": "CREATE TABLE table_name_12 (subject VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT chinese FROM table_name_50 WHERE subject = \"adjectives, adverbs, mostly with reduplication\"", "question": "Name the chinese with subject of adjectives, adverbs, mostly with reduplication", "context": "CREATE TABLE table_name_50 (chinese VARCHAR, subject VARCHAR)"}, {"answer": "SELECT COUNT(chapter) FROM table_name_74 WHERE chinese = \"\u91cb\u5bae\"", "question": "Name the total number of chapter for chinese of \u91cb\u5bae", "context": "CREATE TABLE table_name_74 (chapter VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT MAX(chapter) FROM table_name_24 WHERE chinese = \"\u91cb\u8a00\"", "question": "Name the highest chapter with chinese of \u91cb\u8a00", "context": "CREATE TABLE table_name_24 (chapter INTEGER, chinese VARCHAR)"}, {"answer": "SELECT chapter FROM table_name_28 WHERE chinese = \"\u91cb\u6c34\"", "question": "Name the chapter with chinese of \u91cb\u6c34", "context": "CREATE TABLE table_name_28 (chapter VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_93 WHERE engine = \"gordini straight-6\" AND year = 1956", "question": "Who used Gordini Straight-6 in 1956?", "context": "CREATE TABLE table_name_93 (entrant VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_87 WHERE year = 1963", "question": "Who was in 1963?", "context": "CREATE TABLE table_name_87 (entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE date = \"september 11\"", "question": "Name the score for september 11", "context": "CREATE TABLE table_name_48 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_23 WHERE record = \"71-81\"", "question": "Name the loss for record of 71-81", "context": "CREATE TABLE table_name_23 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE record = \"73-83\"", "question": "Name the score which has record of 73-83", "context": "CREATE TABLE table_name_17 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE record = \"74-84\"", "question": "Name the date for record of 74-84", "context": "CREATE TABLE table_name_20 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(overall_ranking) FROM table_name_66 WHERE index = \"f10\"", "question": "For all events with index f10, what is the sum of the overall rankings?", "context": "CREATE TABLE table_name_66 (overall_ranking INTEGER, index VARCHAR)"}, {"answer": "SELECT status FROM table_name_23 WHERE index = \"f7\"", "question": "For the event with index f7, what is the status?", "context": "CREATE TABLE table_name_23 (status VARCHAR, index VARCHAR)"}, {"answer": "SELECT talent_segment FROM table_name_49 WHERE index = \"f9\"", "question": "For the event with index f9, what's the talent segment?", "context": "CREATE TABLE table_name_49 (talent_segment VARCHAR, index VARCHAR)"}, {"answer": "SELECT acting_segment FROM table_name_36 WHERE status = \"eliminated\" AND name = \"\u6797\u4f69\u742a lin peiqi\"", "question": "What's the acting segment of \u6797\u4f69\u742a lin peiqi's events that are eliminated?", "context": "CREATE TABLE table_name_36 (acting_segment VARCHAR, status VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(overall_ranking) FROM table_name_12 WHERE status = \"eliminated\" AND name = \"\u5ed6\u5c39\u5b81 jvnne leow\"", "question": "What's the total number of overall rankings of \u5ed6\u5c39\u5b81 jvnne leow's events that are eliminated?", "context": "CREATE TABLE table_name_12 (overall_ranking VARCHAR, status VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_9 WHERE round = \"qf(r)\"", "question": "Who was the opponent at the qf(r) round?", "context": "CREATE TABLE table_name_9 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE venue = \"firhill\" AND opponent = \"ayr united\"", "question": "What day was the game held at Firhill against AYR United?", "context": "CREATE TABLE table_name_60 (date VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_26 WHERE venue = \"firhill\" AND round = \"5(r)\"", "question": "What is the average attendance at a game held at Firhill for the 5(r) round?", "context": "CREATE TABLE table_name_26 (attendance INTEGER, venue VARCHAR, round VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_18 WHERE record = \"0-1\"", "question": "Who was the opponent when the Seattle Seahawks had a record of 0-1?", "context": "CREATE TABLE table_name_18 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_87 WHERE record = \"8-7\"", "question": "Who was the opponent when the Seattle Seahawks had a record of 8-7?", "context": "CREATE TABLE table_name_87 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_40 WHERE year > 1956", "question": "How many points after 1956?", "context": "CREATE TABLE table_name_40 (points VARCHAR, year INTEGER)"}, {"answer": "SELECT chassis FROM table_name_83 WHERE year < 1956 AND engine = \"gordini straight-4\" AND points = 3", "question": "Before 1956, what Chassis has Gordini Straight-4 engine with 3 points?", "context": "CREATE TABLE table_name_83 (chassis VARCHAR, points VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT engine FROM table_name_15 WHERE year < 1956 AND points < 4 AND entrant = \"equipe simca gordini\"", "question": "What engine was used by Equipe Simca Gordini before 1956 with less than 4 points?", "context": "CREATE TABLE table_name_15 (engine VARCHAR, entrant VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_92 WHERE points < 9 AND entrant = \"equipe rosier\"", "question": "What chassis has smaller than 9 points by Equipe Rosier?", "context": "CREATE TABLE table_name_92 (chassis VARCHAR, points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT winner FROM table_name_53 WHERE season = 2008", "question": "Who was the winner in the 2008 season?", "context": "CREATE TABLE table_name_53 (winner VARCHAR, season VARCHAR)"}, {"answer": "SELECT investing_dragon_s_ FROM table_name_21 WHERE company_or_product_name = \"tiny box\"", "question": "Who is the company Investing Dragons, or tiny box?", "context": "CREATE TABLE table_name_21 (investing_dragon_s_ VARCHAR, company_or_product_name VARCHAR)"}, {"answer": "SELECT first_aired FROM table_name_98 WHERE episode = \"episode 6\" AND entrepreneur_s_ = \"guy portelli\"", "question": "When did episode 6 first air with entrepreneur Guy Portelli?", "context": "CREATE TABLE table_name_98 (first_aired VARCHAR, episode VARCHAR, entrepreneur_s_ VARCHAR)"}, {"answer": "SELECT money_requested__\u00a3_ FROM table_name_39 WHERE company_or_product_name = \"neurotica\"", "question": "How much money did the company Neurotica request?", "context": "CREATE TABLE table_name_39 (money_requested__\u00a3_ VARCHAR, company_or_product_name VARCHAR)"}, {"answer": "SELECT MIN(hits) FROM table_name_28 WHERE year < 1920 AND player = \"ed delahanty\"", "question": "Name the least hits for year less than 1920 and player of ed delahanty", "context": "CREATE TABLE table_name_28 (hits INTEGER, year VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_8 WHERE year > 1885 AND hits = 238", "question": "Name the player with 238 hits and years after 1885", "context": "CREATE TABLE table_name_8 (player VARCHAR, year VARCHAR, hits VARCHAR)"}, {"answer": "SELECT hits FROM table_name_86 WHERE year < 1883", "question": "Name the hits for years before 1883", "context": "CREATE TABLE table_name_86 (hits VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_41 WHERE location = \"west side grounds\" AND date = \"october 22\"", "question": "For the game that was played on october 22 in west side grounds, what is the total attendance", "context": "CREATE TABLE table_name_41 (attendance VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_47 WHERE time = \"2:06\" AND attendance < 27 OFFSET 374", "question": "Which week was the first game played that had a time of 2:06 and less than 27,374 attendees?", "context": "CREATE TABLE table_name_47 (game INTEGER, time VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT class FROM table_name_5 WHERE pos = \"dnf\" AND laps = 252", "question": "In which class had 252 laps and a position of dnf?", "context": "CREATE TABLE table_name_5 (class VARCHAR, pos VARCHAR, laps VARCHAR)"}, {"answer": "SELECT pos FROM table_name_35 WHERE year = 1997", "question": "What was the position in 1997?", "context": "CREATE TABLE table_name_35 (pos VARCHAR, year VARCHAR)"}, {"answer": "SELECT kit_manufacturer FROM table_name_99 WHERE team = \"arsenal\"", "question": "Which Kit manufacturer sponsers Arsenal?", "context": "CREATE TABLE table_name_99 (kit_manufacturer VARCHAR, team VARCHAR)"}, {"answer": "SELECT captain FROM table_name_31 WHERE manager = \"gianluca vialli\"", "question": "Which captain is managed by gianluca vialli?", "context": "CREATE TABLE table_name_31 (captain VARCHAR, manager VARCHAR)"}, {"answer": "SELECT kit_manufacturer FROM table_name_90 WHERE team = \"everton\"", "question": "Which Kit Manufacturer supports team Everton?", "context": "CREATE TABLE table_name_90 (kit_manufacturer VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_28 WHERE manager = \"david o'leary\"", "question": "Which team does David O'leary manage?", "context": "CREATE TABLE table_name_28 (team VARCHAR, manager VARCHAR)"}, {"answer": "SELECT shirt_sponsor FROM table_name_68 WHERE kit_manufacturer = \"nike\"", "question": "Which shirt sponser has Nike as a kit manufacturer?", "context": "CREATE TABLE table_name_68 (shirt_sponsor VARCHAR, kit_manufacturer VARCHAR)"}, {"answer": "SELECT title FROM table_name_31 WHERE year < 2008 AND platform = \"xbox 360\"", "question": "Which title has a year prior to 2008 and xbox 360 as the platform?", "context": "CREATE TABLE table_name_31 (title VARCHAR, year VARCHAR, platform VARCHAR)"}, {"answer": "SELECT publisher FROM table_name_4 WHERE title = \"far cry\"", "question": "Which publisher has Far Cry as the title?", "context": "CREATE TABLE table_name_4 (publisher VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_85 WHERE platform = \"xbox\" AND year < 2006", "question": "Which title has xbox as the platform with a year prior to 2006?", "context": "CREATE TABLE table_name_85 (title VARCHAR, platform VARCHAR, year VARCHAR)"}, {"answer": "SELECT developer FROM table_name_59 WHERE platform = \"xbox 360\"", "question": "Which developer has xbox 360 as the platform?", "context": "CREATE TABLE table_name_59 (developer VARCHAR, platform VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_93 WHERE title = \"far cry vengeance\"", "question": "What is the average year that has far cry vengeance as the title?", "context": "CREATE TABLE table_name_93 (year INTEGER, title VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_9 WHERE goals_against < 54 AND losses = 7 AND goal_difference > 23", "question": "Which position is the highest to have less than 54 goals, a loss of 7 and a goal difference higher than 23?", "context": "CREATE TABLE table_name_9 (position INTEGER, goal_difference VARCHAR, goals_against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_97 WHERE points = \"28-10\" AND goals_for > 29", "question": "Which is the lowest played with 28-10 points and goals higher than 29?", "context": "CREATE TABLE table_name_97 (played INTEGER, points VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_7 WHERE wins = 14 AND goals_against = 61 AND losses < 19", "question": "How many positions have 14 wins, goals against of 61 and fewer than 19 losses?", "context": "CREATE TABLE table_name_7 (position VARCHAR, losses VARCHAR, wins VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_88 WHERE goals_against > 51 AND wins > 14", "question": "What is the average loss with a goal higher than 51 and wins higher than 14?", "context": "CREATE TABLE table_name_88 (losses INTEGER, goals_against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(ends) FROM table_name_28 WHERE name = \"weston\"", "question": "Name the average ends for weston", "context": "CREATE TABLE table_name_28 (ends INTEGER, name VARCHAR)"}, {"answer": "SELECT MIN(decile) FROM table_name_71 WHERE authority = \"state\" AND name = \"midhirst school\"", "question": "What is the lowest decile with a state authority and Midhirst school?", "context": "CREATE TABLE table_name_71 (decile INTEGER, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT area FROM table_name_91 WHERE name = \"central takaka school\"", "question": "What area is Central Takaka School in?", "context": "CREATE TABLE table_name_91 (area VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(mach) FROM table_name_88 WHERE vehicle_flight__number = \"m2-f2 #8\" AND altitude__meters_ > 13 OFFSET 716", "question": "What is the Mach with Vehicle Flight # m2-f2 #8 and an Altitude (meters) greater than 13,716?", "context": "CREATE TABLE table_name_88 (mach INTEGER, vehicle_flight__number VARCHAR, altitude__meters_ VARCHAR)"}, {"answer": "SELECT vehicle_flight__number FROM table_name_31 WHERE pilot = \"peterson\" AND velocity__km_h_ = 649", "question": "What Vehicle Flight # has Pilot Peterson and Velocity (km/h) of 649?", "context": "CREATE TABLE table_name_31 (vehicle_flight__number VARCHAR, pilot VARCHAR, velocity__km_h_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE mach = 0.662", "question": "What Date has a Mach of 0.662?", "context": "CREATE TABLE table_name_77 (date VARCHAR, mach VARCHAR)"}, {"answer": "SELECT 1 AS st_party FROM table_name_20 WHERE year = \"1865\"", "question": "In 1865, what was the first party?", "context": "CREATE TABLE table_name_20 (year VARCHAR)"}, {"answer": "SELECT barrel_twist FROM table_name_33 WHERE stock = \"canadian 3rd generation\" AND hand_guards = \"short ribbed\"", "question": "Which Barrel twist has a Stock of canadian 3rd generation and a Hand guards of short ribbed?", "context": "CREATE TABLE table_name_33 (barrel_twist VARCHAR, stock VARCHAR, hand_guards VARCHAR)"}, {"answer": "SELECT hand_guards FROM table_name_1 WHERE barrel_profile = \"a2\" AND rear_sight = \"weaver\"", "question": "Which Hand guards has a Barrel profile of a2 and a Rear sight of weaver?", "context": "CREATE TABLE table_name_1 (hand_guards VARCHAR, barrel_profile VARCHAR, rear_sight VARCHAR)"}, {"answer": "SELECT co_driver FROM table_name_41 WHERE laps > 160 AND year > 2010 AND number = 6", "question": "Who was the co-driver for the team with more than 160 laps and the number 6 after 2010?", "context": "CREATE TABLE table_name_41 (co_driver VARCHAR, number VARCHAR, laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_82 WHERE position = \"dnf\" AND number < 25 AND year < 2001", "question": "What is the fewest laps for a team with a position of DNF and a number smaller than 25 before 2001?", "context": "CREATE TABLE table_name_82 (laps INTEGER, year VARCHAR, position VARCHAR, number VARCHAR)"}, {"answer": "SELECT MAX(votes) FROM table_name_20 WHERE occupation = \"french professor\"", "question": "What is the highest number of votes for the French Professor?", "context": "CREATE TABLE table_name_20 (votes INTEGER, occupation VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_38 WHERE designation = \"hip 4872\"", "question": "Where is Hip 4872?", "context": "CREATE TABLE table_name_38 (constellation VARCHAR, designation VARCHAR)"}, {"answer": "SELECT language_s_ FROM table_name_33 WHERE original_title = \"rosie\"", "question": "What is the language of the film Rosie?", "context": "CREATE TABLE table_name_33 (language_s_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_79 WHERE language_s_ = \"dutch\" AND original_title = \"rosie\"", "question": "What was the title used for Rosie, the film nominated for the dutch language?", "context": "CREATE TABLE table_name_79 (film_title_used_in_nomination VARCHAR, language_s_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_name_49 WHERE year = \"2007\"", "question": "Who won the Mixed Doubles in 2007?", "context": "CREATE TABLE table_name_49 (mixed_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_8 WHERE player = \"adrien clarke\"", "question": "What is the average Round number of Player Adrien Clarke?", "context": "CREATE TABLE table_name_8 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_31 WHERE pick > 209", "question": "What is the highest round number of a Pick after 209.", "context": "CREATE TABLE table_name_31 (round INTEGER, pick INTEGER)"}, {"answer": "SELECT score FROM table_name_56 WHERE record = \"39-20\"", "question": "What was the score when the Blue Jays had a record of 39-20?", "context": "CREATE TABLE table_name_56 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT player FROM table_name_15 WHERE to_par = \"e\" AND score = 67 - 73 = 140", "question": "Which player has a to par of e and a score of 67-73=140?", "context": "CREATE TABLE table_name_15 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_19 WHERE player = \"adam scott\"", "question": "What country is Adam Scott from?", "context": "CREATE TABLE table_name_19 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE country = \"canada\"", "question": "What is Canada's score?", "context": "CREATE TABLE table_name_81 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_31 WHERE score = 70 - 66 = 136", "question": "Which country has a score of 70-66=136?", "context": "CREATE TABLE table_name_31 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_3 WHERE country = \"sweden\"", "question": "Which player is from Sweden?", "context": "CREATE TABLE table_name_3 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(Field) AS goals FROM table_name_4 WHERE tries > 4 AND points > 32 AND goals = 0 AND player = \"denan kemp\"", "question": "What is the total number of field goals of Denan Kemp, who has more than 4 tries, more than 32 points, and 0 goals?", "context": "CREATE TABLE table_name_4 (Field VARCHAR, player VARCHAR, goals VARCHAR, tries VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_65 WHERE player = \"dave taylor\" AND tries > 1", "question": "What is the number of goals Dave Taylor, who has more than 1 tries, has?", "context": "CREATE TABLE table_name_65 (goals INTEGER, player VARCHAR, tries VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_74 WHERE points < 4", "question": "How many goals did the player with less than 4 points have?", "context": "CREATE TABLE table_name_74 (goals VARCHAR, points INTEGER)"}, {"answer": "SELECT joined FROM table_name_74 WHERE mascot = \"blue devils\"", "question": "When doeas Mascot of blue devils in Gary Froebel School?", "context": "CREATE TABLE table_name_74 (joined VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT previous_conference FROM table_name_49 WHERE school = \"whiting\"", "question": "Which conference held at School of whiting?", "context": "CREATE TABLE table_name_49 (previous_conference VARCHAR, school VARCHAR)"}, {"answer": "SELECT lifespan FROM table_name_96 WHERE state = \"ohio\" AND representative = \"joseph vance\" AND party = \"democratic-republican\"", "question": "What is the lifespan of Joseph Vance, a democratic-republican from Ohio?", "context": "CREATE TABLE table_name_96 (lifespan VARCHAR, party VARCHAR, state VARCHAR, representative VARCHAR)"}, {"answer": "SELECT loss FROM table_name_29 WHERE date = \"may 22\"", "question": "Name the loss on may 22", "context": "CREATE TABLE table_name_29 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_18 WHERE record = \"84-69\"", "question": "Who was the Blue Jays opponent when their record was 84-69?", "context": "CREATE TABLE table_name_18 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE record = \"84-69\"", "question": "What was the date of the game when their record was 84-69?", "context": "CREATE TABLE table_name_56 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT laps FROM table_name_1 WHERE rank = \"16\"", "question": "How many laps does the one ranked 16 have?", "context": "CREATE TABLE table_name_1 (laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT start FROM table_name_29 WHERE laps = \"676\"", "question": "What is the start of the race with 676 laps?", "context": "CREATE TABLE table_name_29 (start VARCHAR, laps VARCHAR)"}, {"answer": "SELECT year FROM table_name_47 WHERE rank = \"1\"", "question": "What year was the ranking 1?", "context": "CREATE TABLE table_name_47 (year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT finish FROM table_name_74 WHERE qual = \"141.071\"", "question": "What finish qualified at 141.071?", "context": "CREATE TABLE table_name_74 (finish VARCHAR, qual VARCHAR)"}, {"answer": "SELECT rank FROM table_name_72 WHERE start = \"19\"", "question": "What ranking that had a start of 19?", "context": "CREATE TABLE table_name_72 (rank VARCHAR, start VARCHAR)"}, {"answer": "SELECT laps FROM table_name_4 WHERE qual = \"138.212\"", "question": "How many laps was qualifier of 138.212?", "context": "CREATE TABLE table_name_4 (laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT place FROM table_name_55 WHERE score = 67 - 70 = 137 AND player = \"stuart appleby\"", "question": "Name the place for score of 67-70=137 and stuart appleby", "context": "CREATE TABLE table_name_55 (place VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_29 WHERE country = \"fiji\"", "question": "Name the player for fiji", "context": "CREATE TABLE table_name_29 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE country = \"fiji\"", "question": "Name the score for fiji", "context": "CREATE TABLE table_name_99 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE player = \"vijay singh\"", "question": "Name the score for vijay singh", "context": "CREATE TABLE table_name_8 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT division FROM table_name_66 WHERE country = \"ukraine\" AND season = \"2006/07\"", "question": "What division was Ukraine in 2006/07?", "context": "CREATE TABLE table_name_66 (division VARCHAR, country VARCHAR, season VARCHAR)"}, {"answer": "SELECT airdate FROM table_name_88 WHERE share = 10 AND rank = \"#29\"", "question": "What is the Airdate of the episode that ranked #29 and had a share greater than 10?", "context": "CREATE TABLE table_name_88 (airdate VARCHAR, share VARCHAR, rank VARCHAR)"}, {"answer": "SELECT city FROM table_name_1 WHERE airport = \"fuhlsb\u00fcttel airport\"", "question": "What city is fuhlsb\u00fcttel airport in?", "context": "CREATE TABLE table_name_1 (city VARCHAR, airport VARCHAR)"}, {"answer": "SELECT iata FROM table_name_1 WHERE country = \"united kingdom\" AND airport = \"ringway airport\"", "question": "What is the IATA for Ringway Airport in the United Kingdom?", "context": "CREATE TABLE table_name_1 (iata VARCHAR, country VARCHAR, airport VARCHAR)"}, {"answer": "SELECT city FROM table_name_40 WHERE iata = \"ssg\"", "question": "Which city has the IATA SSG?", "context": "CREATE TABLE table_name_40 (city VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_58 WHERE airport = \"gale\u00e3o airport\"", "question": "What is the IATA of gale\u00e3o airport?", "context": "CREATE TABLE table_name_58 (iata VARCHAR, airport VARCHAR)"}, {"answer": "SELECT icao FROM table_name_13 WHERE city = \"douala\"", "question": "What is the ICAO of Douala city?", "context": "CREATE TABLE table_name_13 (icao VARCHAR, city VARCHAR)"}, {"answer": "SELECT icao FROM table_name_2 WHERE airport = \"lohausen airport\"", "question": "What is the ICAO of Lohausen airport?", "context": "CREATE TABLE table_name_2 (icao VARCHAR, airport VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE record = \"62-67\"", "question": "What was the score of the game when their record was 62-67", "context": "CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT hdmi FROM table_name_29 WHERE codename = \"trinity (valhalla)\"", "question": "Does Trinity (valhalla) have HDMI?", "context": "CREATE TABLE table_name_29 (hdmi VARCHAR, codename VARCHAR)"}, {"answer": "SELECT in_production FROM table_name_66 WHERE codename = \"jasper\"", "question": "Is Jasper being producted?", "context": "CREATE TABLE table_name_66 (in_production VARCHAR, codename VARCHAR)"}, {"answer": "SELECT result FROM table_name_36 WHERE home_captain = \"courtney walsh\"", "question": "What is the result of Courtney Walsh ?", "context": "CREATE TABLE table_name_36 (result VARCHAR, home_captain VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE venue = \"antigua recreation ground\"", "question": "When did a Venue of Antigua Recreation Ground happen?", "context": "CREATE TABLE table_name_40 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_9 WHERE result = \"wi by 8 wkts\"", "question": "What is the Venue which has a Wi by 8 wkts?", "context": "CREATE TABLE table_name_9 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_6 WHERE date = \"25,26,27,29,30 march 1994\"", "question": "Which Home captain has Date of 25,26,27,29,30 march 1994?", "context": "CREATE TABLE table_name_6 (home_captain VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_42 WHERE venue = \"bourda\"", "question": "Which Home Captain has Venue of Bourda?", "context": "CREATE TABLE table_name_42 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_28 WHERE result = \"eng by 208 runs\"", "question": "Which Home Captain has Eng by 208 runs?", "context": "CREATE TABLE table_name_28 (home_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(goal_ratio) FROM table_name_68 WHERE league = 88 AND fa_cup < 7", "question": "What's the Highest Goal Ratio with a League of 88 and an FA Cup less than 7?", "context": "CREATE TABLE table_name_68 (goal_ratio INTEGER, league VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_64 WHERE engine = \"ilmor 2175a 3.5 v10\"", "question": "What was the lowest year that the engine Ilmor 2175a 3.5 v10 was used?", "context": "CREATE TABLE table_name_64 (year INTEGER, engine VARCHAR)"}, {"answer": "SELECT engine FROM table_name_77 WHERE entrant = \"dr ing f porsche kg\" AND chassis = \"porsche rsk (f2)\"", "question": "Which engine did dr ing f porsche kg use with the porsche rsk (f2) chassis?", "context": "CREATE TABLE table_name_77 (engine VARCHAR, entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_44 WHERE engine = \"porsche flat-4\" AND year < 1958", "question": "What chassis did the porsche flat-4 use before 1958?", "context": "CREATE TABLE table_name_44 (chassis VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_52 WHERE chassis = \"porsche 718\"", "question": "What engine did the porsche 718 chassis use?", "context": "CREATE TABLE table_name_52 (engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_67 WHERE points > 0", "question": "Which year had more than 0 points?", "context": "CREATE TABLE table_name_67 (year VARCHAR, points INTEGER)"}, {"answer": "SELECT position FROM table_name_83 WHERE year = 1999", "question": "What position is 1999?", "context": "CREATE TABLE table_name_83 (position VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_79 WHERE competition = \"mediterranean games\" AND year > 2005", "question": "Where were the Mediterranean games after 2005?", "context": "CREATE TABLE table_name_79 (venue VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT notes FROM table_name_37 WHERE venue = \"bydgoszcz, poland\"", "question": "What are the notes for bydgoszcz, Poland?", "context": "CREATE TABLE table_name_37 (notes VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_31 WHERE name = \"kasey giteau\" AND rank < 18", "question": "Name the least lane for kasey giteau and rank less than 18", "context": "CREATE TABLE table_name_31 (lane INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_15 WHERE name = \"brooke bennett\" AND rank < 1", "question": "Name the total number of lane for brooke bennett and rank less than 1", "context": "CREATE TABLE table_name_15 (lane VARCHAR, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_24 WHERE lane > 3 AND heat > 5", "question": "Name the average rank with larger than 3 and heat more than 5", "context": "CREATE TABLE table_name_24 (rank INTEGER, lane VARCHAR, heat VARCHAR)"}, {"answer": "SELECT ole_miss FROM table_name_90 WHERE year > 2008 AND mississippi_st = \"eric moulds\"", "question": "Who was the player associated with Ole Miss in years after 2008 with a Mississippi St. name of Eric Moulds?", "context": "CREATE TABLE table_name_90 (ole_miss VARCHAR, year VARCHAR, mississippi_st VARCHAR)"}, {"answer": "SELECT ole_miss FROM table_name_65 WHERE arkansas = \"chuck dicus\"", "question": "Who was the Ole Miss player associated with Chuck Dicus?", "context": "CREATE TABLE table_name_65 (ole_miss VARCHAR, arkansas VARCHAR)"}, {"answer": "SELECT alabama FROM table_name_76 WHERE mississippi_st = \"walt harris\"", "question": "Who was the Alabama player associated with Walt Harris?", "context": "CREATE TABLE table_name_76 (alabama VARCHAR, mississippi_st VARCHAR)"}, {"answer": "SELECT mississippi_st FROM table_name_55 WHERE alabama = \"cornelius bennett\"", "question": "Who was the Mississippi State player associated with Cornelius Bennett?", "context": "CREATE TABLE table_name_55 (mississippi_st VARCHAR, alabama VARCHAR)"}, {"answer": "SELECT arkansas FROM table_name_22 WHERE alabama = \"ken stabler\"", "question": "Who is the Arkansas player associated with Ken Stabler?", "context": "CREATE TABLE table_name_22 (arkansas VARCHAR, alabama VARCHAR)"}, {"answer": "SELECT COUNT(roll) FROM table_name_69 WHERE decile > 1 AND authority = \"integrated\" AND name = \"bishop viard college\"", "question": "What is the roll of Bishop Viard College (An Integrated College), which has a decile larger than 1?", "context": "CREATE TABLE table_name_69 (roll VARCHAR, name VARCHAR, decile VARCHAR, authority VARCHAR)"}, {"answer": "SELECT COUNT(decile) FROM table_name_55 WHERE area = \"whitby\" AND name = \"samuel marsden collegiate school\" AND roll > 163", "question": "What was the decile of Samuel Marsden Collegiate School in Whitby, when it had a roll higher than 163?", "context": "CREATE TABLE table_name_55 (decile VARCHAR, roll VARCHAR, area VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_69 WHERE decile = 2 AND authority = \"integrated\" AND roll > 55", "question": "What integrated school had a decile of 2 and a roll larger than 55?", "context": "CREATE TABLE table_name_69 (name VARCHAR, roll VARCHAR, decile VARCHAR, authority VARCHAR)"}, {"answer": "SELECT MIN(heat) FROM table_name_9 WHERE lane = 4 AND nationality = \"canada\"", "question": "Who was the 4 lane person from Canada?", "context": "CREATE TABLE table_name_9 (heat INTEGER, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT finish FROM table_name_89 WHERE year = \"1939\"", "question": "In 1939, what was the finish?", "context": "CREATE TABLE table_name_89 (finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT finish FROM table_name_37 WHERE year = \"1937\"", "question": "In 1937, what was the finish?", "context": "CREATE TABLE table_name_37 (finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_62 WHERE qual = \"120.006\"", "question": "The Qual of 120.006 took place in what year?", "context": "CREATE TABLE table_name_62 (year VARCHAR, qual VARCHAR)"}, {"answer": "SELECT finish FROM table_name_41 WHERE rank = \"19\" AND start = \"14\"", "question": "With a Rank of 19, and a Start of 14, what was the finish?", "context": "CREATE TABLE table_name_41 (finish VARCHAR, rank VARCHAR, start VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_73 WHERE engine = \"ferrari\" AND points = 25", "question": "What company made the chassis when Ferrari made the engine and there were 25 points?", "context": "CREATE TABLE table_name_73 (chassis VARCHAR, engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_70 WHERE engine = \"maserati\" AND entrant = \"owen racing organisation\"", "question": "What is the most points when Maserati made the engine, and a Entrant of owen racing organisation?", "context": "CREATE TABLE table_name_70 (points INTEGER, engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_8 WHERE points = 8", "question": "What company made the chassis when there were 8 points?", "context": "CREATE TABLE table_name_8 (chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_19 WHERE year < 1956 AND chassis = \"vanwall special\"", "question": "What is the entrant earlier than 1956 with a Vanwall Special chassis?", "context": "CREATE TABLE table_name_19 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_73 WHERE top_10 > 13", "question": "what is the number of wins that is in the Top 10 and larger than 13?", "context": "CREATE TABLE table_name_73 (wins INTEGER, top_10 INTEGER)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_63 WHERE top_25 < 5", "question": "What is the average number of cuts made in the Top 25 smaller than 5?", "context": "CREATE TABLE table_name_63 (cuts_made INTEGER, top_25 INTEGER)"}, {"answer": "SELECT MIN(top_5) FROM table_name_30 WHERE wins < 0", "question": "What is the lowest top 5 winners with less than 0?", "context": "CREATE TABLE table_name_30 (top_5 INTEGER, wins INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_90 WHERE entrant = \"cooper car company\" AND year > 1959", "question": "How many points for the cooper car company after 1959?", "context": "CREATE TABLE table_name_90 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(3620) FROM table_name_66 WHERE 5432 = 1277 AND 15122 < 1540", "question": "What is the average 3620 value that has a 5432 of 1277 and a 15122 less than 1540?", "context": "CREATE TABLE table_name_66 (Id VARCHAR)"}, {"answer": "SELECT AVG(5432) FROM table_name_12 WHERE 11502 > 1163 AND 15122 < 15122 AND 3620 < 624", "question": "What is the average 5432 value with a 11502 larger than 1163, a 15122 less than 15122, and a 3620 less than 624?", "context": "CREATE TABLE table_name_12 (Id VARCHAR)"}, {"answer": "SELECT MAX(3620) FROM table_name_34 WHERE 5432 = 5432 AND 15122 > 15122", "question": "What is the highest 3620 value with a 5432 of 5432 and a 15122 greater than 15122?", "context": "CREATE TABLE table_name_34 (Id VARCHAR)"}, {"answer": "SELECT representative FROM table_name_83 WHERE title = \"ambassador extraordinary and plenipotentiary\" AND termination_of_mission = \"september 20, 1996\"", "question": "Which representative was the Ambassador Extraordinary and Plenipotentiary and had a Termination of Mission date September 20, 1996?", "context": "CREATE TABLE table_name_83 (representative VARCHAR, title VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT representative FROM table_name_59 WHERE termination_of_mission = \"mar 25, 1976\"", "question": "Which representative has a Termination of MIssion date Mar 25, 1976?", "context": "CREATE TABLE table_name_59 (representative VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT termination_of_mission FROM table_name_40 WHERE appointed_by = \"barack obama\"", "question": "What was the Termination of Mission date for the ambassador who was appointed by Barack Obama?", "context": "CREATE TABLE table_name_40 (termination_of_mission VARCHAR, appointed_by VARCHAR)"}, {"answer": "SELECT termination_of_mission FROM table_name_34 WHERE title = \"ambassador extraordinary and plenipotentiary\" AND representative = \"marsha e. barnes\"", "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 appointed_by FROM table_name_72 WHERE presentation_of_credentials = \"march 25, 1976\"", "question": "Who appointed the representative that had a Presentation of Credentials on March 25, 1976?", "context": "CREATE TABLE table_name_72 (appointed_by VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT character_s_ FROM table_name_89 WHERE first_appearance = \"amazing fantasy #15\"", "question": "Which character first appeared in Amazing Fantasy #15?", "context": "CREATE TABLE table_name_89 (character_s_ VARCHAR, first_appearance VARCHAR)"}, {"answer": "SELECT estimated_value FROM table_name_79 WHERE first_appearance = \"action comics #1\"", "question": "What is Action Comics #1's estimated value?", "context": "CREATE TABLE table_name_79 (estimated_value VARCHAR, first_appearance VARCHAR)"}, {"answer": "SELECT publisher FROM table_name_67 WHERE character_s_ = \"wolverine\"", "question": "Who publishes Wolverine?", "context": "CREATE TABLE table_name_67 (publisher VARCHAR, character_s_ VARCHAR)"}, {"answer": "SELECT player FROM table_name_96 WHERE original_nfl_team = \"oakland raiders\"", "question": "What player's original team are the Oakland Raiders?", "context": "CREATE TABLE table_name_96 (player VARCHAR, original_nfl_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_31 WHERE original_nfl_team = \"buffalo bills\"", "question": "What player's original team are the Buffalo Bills?", "context": "CREATE TABLE table_name_31 (player VARCHAR, original_nfl_team VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_10 WHERE money___$__ = 800", "question": "Which to par has a prize less than $800?", "context": "CREATE TABLE table_name_10 (to_par VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT country FROM table_name_27 WHERE money___$__ < 250 AND player = \"henry picard\"", "question": "Which country has a prize smaller than $250 and the player Henry Picard?", "context": "CREATE TABLE table_name_27 (country VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE money___$__ = 400", "question": "Which score has a prize of $400?", "context": "CREATE TABLE table_name_77 (score VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT loss FROM table_name_85 WHERE date = \"may 29\"", "question": "On May 29 which team had the loss?", "context": "CREATE TABLE table_name_85 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE date = \"may 9\"", "question": "What was the score of the game played on May 9?", "context": "CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE record = \"26-19\"", "question": "On what date was their record 26-19?", "context": "CREATE TABLE table_name_70 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_71 WHERE record = \"28-22\"", "question": "What team did they lose to when they had a 28-22 record?", "context": "CREATE TABLE table_name_71 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_89 WHERE venue = \"melbourne, australia\"", "question": "What is the year of the tournament played at Melbourne, Australia?", "context": "CREATE TABLE table_name_89 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_8 WHERE event = \"50km\" AND result = \"2nd\" AND venue = \"london, united kingdom\"", "question": "What is earliest year that had a 50km event with a 2nd place result played in London, United Kingdom?", "context": "CREATE TABLE table_name_8 (year INTEGER, venue VARCHAR, event VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_20 WHERE year > 2010 AND tournament = \"world race walking cup\"", "question": "What is the result of the World Race Walking Cup tournament played before the year 2010?", "context": "CREATE TABLE table_name_20 (result VARCHAR, year VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT country FROM table_name_55 WHERE year = \"1899\"", "question": "Which country had a tower destroyed in 1899?", "context": "CREATE TABLE table_name_55 (country VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_66 WHERE record = \"28\u201345\"", "question": "Who was the opponent at the game when the record was 28\u201345?", "context": "CREATE TABLE table_name_66 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_33 WHERE pts = \"4\" AND chassis = \"brm p25\"", "question": "Which entrant has 4 points and BRM p25 for the Chassis?", "context": "CREATE TABLE table_name_33 (entrant VARCHAR, pts VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_97 WHERE year < 1953", "question": "Who is the entrant when the year is less than 1953?", "context": "CREATE TABLE table_name_97 (entrant VARCHAR, year INTEGER)"}, {"answer": "SELECT pts FROM table_name_57 WHERE chassis = \"brm p25\"", "question": "How many points were scored when the Chassis is BRM p25?", "context": "CREATE TABLE table_name_57 (pts VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT episode_title FROM table_name_81 WHERE original_airdate = \"october 8, 1988\"", "question": "Name the episode that aired october 8, 1988", "context": "CREATE TABLE table_name_81 (episode_title VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_name_23 WHERE identity_ies_ = \"mr. buckston\"", "question": "Name the original airdate for mr. buckston", "context": "CREATE TABLE table_name_23 (original_airdate VARCHAR, identity_ies_ VARCHAR)"}, {"answer": "SELECT name FROM table_name_2 WHERE round = 23", "question": "What is the name of the player taken in round 23?", "context": "CREATE TABLE table_name_2 (name VARCHAR, round VARCHAR)"}, {"answer": "SELECT engine FROM table_name_76 WHERE year = \"1999\"", "question": "What engine was used in 1999?", "context": "CREATE TABLE table_name_76 (engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT rank FROM table_name_66 WHERE chassis = \"reynard 94i\" AND year = \"1996\"", "question": "What rank did the chassis reynard 94i have in 1996?", "context": "CREATE TABLE table_name_66 (rank VARCHAR, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT rank FROM table_name_93 WHERE year = \"2000\" AND chassis = \"dallara\"", "question": "What rank did the dallara chassis finish in 2000?", "context": "CREATE TABLE table_name_93 (rank VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_51 WHERE rank = \"7th\" AND chassis = \"reynard 95i\"", "question": "Which engine finished 7th with the reynard 95i chassis?", "context": "CREATE TABLE table_name_51 (engine VARCHAR, rank VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_78 WHERE wins = 15 AND loses < 5", "question": "What highest Year has Wins 15 and Losses less than 5?", "context": "CREATE TABLE table_name_78 (year INTEGER, wins VARCHAR, loses VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_24 WHERE loses = 4 AND wins < 18 AND draws > 1", "question": "What average Year has Losses 4, and Wins less than 18, and Draws greater than 1?", "context": "CREATE TABLE table_name_24 (year INTEGER, draws VARCHAR, loses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_92 WHERE loses = 2 AND draws < 0", "question": "What average Wins has Losses 2, and Draws less than 0?", "context": "CREATE TABLE table_name_92 (wins INTEGER, loses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT AVG(loses) FROM table_name_40 WHERE draws < 0", "question": "What average Loses has Draws less than 0?", "context": "CREATE TABLE table_name_40 (loses INTEGER, draws INTEGER)"}, {"answer": "SELECT SUM(loses) FROM table_name_18 WHERE year > 1972 AND competition = \"nswrfl\" AND draws = 0 AND wins = 16", "question": "What sum of Losses has Year greater than 1972, and Competition of nswrfl, and Draws 0, and Wins 16?", "context": "CREATE TABLE table_name_18 (loses INTEGER, wins VARCHAR, draws VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT height FROM table_name_59 WHERE current_club = \"alta gesti\u00f3n fuenlabrada\"", "question": "What is the height of the player who currently plays for Alta Gesti\u00f3n Fuenlabrada?", "context": "CREATE TABLE table_name_59 (height VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT position FROM table_name_94 WHERE player = \"mario kasun\"", "question": "What position does Mario Kasun play?", "context": "CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_91 WHERE win__percentage = \"20%\" AND opponent = \"david nalbandian\"", "question": "What is the largest number Lost to david nalbandian with a Win Rate of 20%?", "context": "CREATE TABLE table_name_91 (lost INTEGER, win__percentage VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(matches) FROM table_name_59 WHERE win__percentage = \"28.68%\" AND lost < 97", "question": "What is the smallest number of Matches with less than 97 losses and a Win rate of 28.68%?", "context": "CREATE TABLE table_name_59 (matches INTEGER, win__percentage VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_61 WHERE highest_ranking = \"\u2013 \u2013\"", "question": "What is the total number of Lost for the Highest Ranking of \u2013 \u2013?", "context": "CREATE TABLE table_name_61 (lost VARCHAR, highest_ranking VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_74 WHERE name = \"inna nikitina\"", "question": "what lane did inna nikitina have?", "context": "CREATE TABLE table_name_74 (lane INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_68 WHERE heat = 4 AND lane > 7", "question": "what is the name that saw 4 heats and a lane higher than 7?", "context": "CREATE TABLE table_name_68 (name VARCHAR, heat VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MAX(nbr_number) FROM table_name_29 WHERE class = \"j\" AND road_number = 1211", "question": "What is the highest NBR number that corresponds to the J class and the road number of 1211?", "context": "CREATE TABLE table_name_29 (nbr_number INTEGER, class VARCHAR, road_number VARCHAR)"}, {"answer": "SELECT COUNT(road_number) FROM table_name_18 WHERE year < 1922", "question": "How many road numbers are before 1922?", "context": "CREATE TABLE table_name_18 (road_number VARCHAR, year INTEGER)"}, {"answer": "SELECT original_operator FROM table_name_65 WHERE class = \"25nc\"", "question": "Which original operator is in the 25nc class?", "context": "CREATE TABLE table_name_65 (original_operator VARCHAR, class VARCHAR)"}, {"answer": "SELECT class FROM table_name_9 WHERE year > 1939 AND road_number < 3508", "question": "Which class starts after 1939 and has a road number smaller than 3508?", "context": "CREATE TABLE table_name_9 (class VARCHAR, year VARCHAR, road_number VARCHAR)"}, {"answer": "SELECT lb & scr_no FROM table_name_7 WHERE sr_no = \"8597\u20138600\"", "question": "Name the LB&SCR number that has SR number of 8597\u20138600", "context": "CREATE TABLE table_name_7 (lb VARCHAR, scr_no VARCHAR, sr_no VARCHAR)"}, {"answer": "SELECT time FROM table_name_55 WHERE writer_s_ = \"aaron schroeder and wally gold\"", "question": "What is the time of songs that have the writer Aaron Schroeder and Wally Gold?", "context": "CREATE TABLE table_name_55 (time VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT chart_peak FROM table_name_46 WHERE release_date = \"6/17/61\" AND track > 20 AND writer_s_ = \"woody harris\"", "question": "On songs that have a release date of 6/17/61, a track larger than 20, and a writer of Woody Harris, what is the chart peak?", "context": "CREATE TABLE table_name_46 (chart_peak VARCHAR, writer_s_ VARCHAR, release_date VARCHAR, track VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_86 WHERE song_title = \"it's now or never\"", "question": "What catalogue is the song It's Now or Never?", "context": "CREATE TABLE table_name_86 (catalogue VARCHAR, song_title VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_name_27 WHERE catalogue = \"lsp 2231\" AND track < 17", "question": "On songs with track numbers smaller than number 17 and catalogues of LSP 2231, who are the writer(s)?", "context": "CREATE TABLE table_name_27 (writer_s_ VARCHAR, catalogue VARCHAR, track VARCHAR)"}, {"answer": "SELECT year FROM table_name_6 WHERE start = \"13\"", "question": "What year did he start at 13?", "context": "CREATE TABLE table_name_6 (year VARCHAR, start VARCHAR)"}, {"answer": "SELECT finish FROM table_name_26 WHERE qual = \"123.660\"", "question": "What was the finish place with a qual of 123.660?", "context": "CREATE TABLE table_name_26 (finish VARCHAR, qual VARCHAR)"}, {"answer": "SELECT rank FROM table_name_86 WHERE qual = \"115.095\"", "question": "What was the rank with the qual of 115.095?", "context": "CREATE TABLE table_name_86 (rank VARCHAR, qual VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_1 WHERE margin = \"1 stroke\"", "question": "Who was the runner-up when the margin was 1 stroke?", "context": "CREATE TABLE table_name_1 (runner_s__up VARCHAR, margin VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE year = \"2004\"", "question": "What was the score in the year 2004?", "context": "CREATE TABLE table_name_72 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_58 WHERE year = \"2008\"", "question": "Who was the runner-up when the year was 2008?", "context": "CREATE TABLE table_name_58 (runner_s__up VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_3 WHERE score = \"204 (-6)\"", "question": "In what year was the score 204 (-6)?", "context": "CREATE TABLE table_name_3 (year VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_45 WHERE margin = \"2 strokes\" AND score = \"276 (-4)\"", "question": "What was the country when the margin was 2 strokes, and when the score was 276 (-4)?", "context": "CREATE TABLE table_name_45 (country VARCHAR, margin VARCHAR, score VARCHAR)"}, {"answer": "SELECT overall_record FROM table_name_28 WHERE school = \"milford\"", "question": "What is the Overall Record for the School in Milford?", "context": "CREATE TABLE table_name_28 (overall_record VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(first_prize___) AS $__ FROM table_name_49 WHERE year = 1997", "question": "What was the top first place prize in 1997?", "context": "CREATE TABLE table_name_49 (first_prize___ INTEGER, year VARCHAR)"}, {"answer": "SELECT SUM(purse___) AS $__ FROM table_name_27 WHERE score = \"272 (-16)\" AND winner = \"frank nobilo\" AND year > 1996", "question": "What was the total purse in the years after 1996 with a score of 272 (-16) when frank nobilo won?", "context": "CREATE TABLE table_name_27 (purse___ INTEGER, year VARCHAR, score VARCHAR, winner VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_55 WHERE lane < 3 AND nationality = \"australia\"", "question": "What is the average Rank for a lane smaller than 3 with a nationality of Australia?", "context": "CREATE TABLE table_name_55 (rank INTEGER, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_86 WHERE rank > 2 AND name = \"louise \u00f8rnstedt\"", "question": "what is the number of lane with a rank more than 2 for Louise \u00f8rnstedt?", "context": "CREATE TABLE table_name_86 (lane VARCHAR, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_52 WHERE rank > 6 AND time = \"2:14.95\"", "question": "What shows for nationality when there is a rank larger than 6, and a Time of 2:14.95?", "context": "CREATE TABLE table_name_52 (nationality VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(total_region) FROM table_name_40 WHERE eidsvold = 970 AND biggenden > 1 OFFSET 570", "question": "What is the Total Region number of hte one that has Eidsvold at 970 and Biggenden larger than 1,570?", "context": "CREATE TABLE table_name_40 (total_region VARCHAR, eidsvold VARCHAR, biggenden VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_41 WHERE mixed_doubles = \"alfredo salazar fina salazar\"", "question": "What is the average year with alfredo salazar fina salazar in mixed doubles?", "context": "CREATE TABLE table_name_41 (year INTEGER, mixed_doubles VARCHAR)"}, {"answer": "SELECT venue FROM table_name_48 WHERE extra = \"team competition\" AND result = \"1st\"", "question": "Which venue had an extra of Team Competition and a result of 1st?", "context": "CREATE TABLE table_name_48 (venue VARCHAR, extra VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_96 WHERE result = \"23rd\"", "question": "Which venue led to a result of 23rd?", "context": "CREATE TABLE table_name_96 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_68 WHERE extra = \"junior race\"", "question": "Which venue had an extra of Junior Race?", "context": "CREATE TABLE table_name_68 (venue VARCHAR, extra VARCHAR)"}, {"answer": "SELECT venue FROM table_name_51 WHERE extra = \"long race\" AND result = \"13th\"", "question": "Which venue led to a result of 13th and had an extra of Long Race?", "context": "CREATE TABLE table_name_51 (venue VARCHAR, extra VARCHAR, result VARCHAR)"}, {"answer": "SELECT terry_mcauliffe FROM table_name_86 WHERE dates_administered = \"may 31 \u2013 june 2\"", "question": "What is the percentage of Terry McAuliffe that has a Date Administered on May 31 \u2013 june 2", "context": "CREATE TABLE table_name_86 (terry_mcauliffe VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT source FROM table_name_80 WHERE terry_mcauliffe = \"36%\"", "question": "Which Source has Terry McAuliffe of 36%", "context": "CREATE TABLE table_name_80 (source VARCHAR, terry_mcauliffe VARCHAR)"}, {"answer": "SELECT terry_mcauliffe FROM table_name_8 WHERE dates_administered = \"june 6\u20137\"", "question": "Which Terry McAuliffe is it that has a Dates Administered on June 6\u20137?", "context": "CREATE TABLE table_name_8 (terry_mcauliffe VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT source FROM table_name_64 WHERE brian_moran = \"19%\"", "question": "Which Source has a Brian Moran of 19%?", "context": "CREATE TABLE table_name_64 (source VARCHAR, brian_moran VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_21 WHERE host_team = \"buffalo bills\"", "question": "What team played on the road against the Buffalo Bills at home ?", "context": "CREATE TABLE table_name_21 (visiting_team VARCHAR, host_team VARCHAR)"}, {"answer": "SELECT week FROM table_name_79 WHERE host_team = \"baltimore ravens\"", "question": "Which week did the Baltimore Ravens play at home ?", "context": "CREATE TABLE table_name_79 (week VARCHAR, host_team VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_53 WHERE week = 14", "question": "What was the final score on week 14 ?", "context": "CREATE TABLE table_name_53 (final_score VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE host_team = \"baltimore ravens\"", "question": "When did the Baltimore Ravens play at home ?", "context": "CREATE TABLE table_name_79 (date VARCHAR, host_team VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_46 WHERE week = 3", "question": "What was the final score in week 3 ?", "context": "CREATE TABLE table_name_46 (final_score VARCHAR, week VARCHAR)"}, {"answer": "SELECT party FROM table_name_79 WHERE member = \"ralph jacobi\"", "question": "To what party does Ralph Jacobi belong?", "context": "CREATE TABLE table_name_79 (party VARCHAR, member VARCHAR)"}, {"answer": "SELECT term_in_office FROM table_name_74 WHERE member = \"hon les johnson\"", "question": "When was Hon Les Johnson in office?", "context": "CREATE TABLE table_name_74 (term_in_office VARCHAR, member VARCHAR)"}, {"answer": "SELECT party FROM table_name_23 WHERE state = \"vic\" AND electorate = \"wannon\"", "question": "Which party had a member from the state of Vic and an Electorate called Wannon?", "context": "CREATE TABLE table_name_23 (party VARCHAR, state VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT party FROM table_name_45 WHERE member = \"mick young\"", "question": "What party is Mick Young a member of?", "context": "CREATE TABLE table_name_45 (party VARCHAR, member VARCHAR)"}, {"answer": "SELECT tyres FROM table_name_70 WHERE class = \"c\" AND year < 1983", "question": "Which tires were in Class C in years before 1983?", "context": "CREATE TABLE table_name_70 (tyres VARCHAR, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_77 WHERE co_drivers = \"roger enever\"", "question": "What is the earliest year that had a co-driver of Roger Enever?", "context": "CREATE TABLE table_name_77 (year INTEGER, co_drivers VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE goal = 3", "question": "Which date has 3 as the goal?", "context": "CREATE TABLE table_name_55 (date VARCHAR, goal VARCHAR)"}, {"answer": "SELECT label FROM table_name_79 WHERE date = \"october 25, 1984\" AND format = \"stereo lp\"", "question": "What Label released on October 25, 1984, in the format of Stereo LP?", "context": "CREATE TABLE table_name_79 (label VARCHAR, date VARCHAR, format VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_72 WHERE label = \"sony music direct\"", "question": "What are the catalogs of releases from Sony Music Direct?", "context": "CREATE TABLE table_name_72 (catalog VARCHAR, label VARCHAR)"}, {"answer": "SELECT region FROM table_name_58 WHERE format = \"cd\" AND catalog = \"32xa-119\"", "question": "What is the region of the release of a CD with catalog 32xa-119?", "context": "CREATE TABLE table_name_58 (region VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_59 WHERE date = \"january 23, 2002\"", "question": "What is the catalog of the release from January 23, 2002?", "context": "CREATE TABLE table_name_59 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT region FROM table_name_55 WHERE date = \"may 27, 2009\"", "question": "What was the region of the release from May 27, 2009?", "context": "CREATE TABLE table_name_55 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT region FROM table_name_54 WHERE label = \"alfa records\" AND catalog = \"alca-282\"", "question": "What is the region of the Alfa Records release with catalog ALCA-282?", "context": "CREATE TABLE table_name_54 (region VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_14 WHERE country = \"united states\" AND score = 72 - 67 - 80 - 71 = 290", "question": "What is the to par for the player from the United States with a 72-67-80-71=290 score?", "context": "CREATE TABLE table_name_14 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT rank FROM table_name_31 WHERE laps < 130 AND year = \"1951\"", "question": "Name the rank for laps less than 130 and year of 1951", "context": "CREATE TABLE table_name_31 (rank VARCHAR, laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_14 WHERE laps = 200 AND rank = \"24\"", "question": "Name the year for laps of 200 and rank of 24", "context": "CREATE TABLE table_name_14 (year VARCHAR, laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_29 WHERE finish = \"12\" AND year = \"1963\"", "question": "Name the rank with finish of 12 and year of 1963", "context": "CREATE TABLE table_name_29 (rank VARCHAR, finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT rank FROM table_name_5 WHERE laps = 200 AND qual = \"148.374\"", "question": "Name the rank with laps of 200 and qual of 148.374", "context": "CREATE TABLE table_name_5 (rank VARCHAR, laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT finish FROM table_name_17 WHERE laps > 200", "question": "Name the finish with Laps more than 200", "context": "CREATE TABLE table_name_17 (finish VARCHAR, laps INTEGER)"}, {"answer": "SELECT rank FROM table_name_18 WHERE laps = 151", "question": "Name the rank for 151 Laps", "context": "CREATE TABLE table_name_18 (rank VARCHAR, laps VARCHAR)"}, {"answer": "SELECT year FROM table_name_61 WHERE qual = \"totals\"", "question": "The qual of totals took place during what year?", "context": "CREATE TABLE table_name_61 (year VARCHAR, qual VARCHAR)"}, {"answer": "SELECT year FROM table_name_16 WHERE finish = \"15\"", "question": "What year did the finish of 15 happen in?", "context": "CREATE TABLE table_name_16 (year VARCHAR, finish VARCHAR)"}, {"answer": "SELECT finish FROM table_name_71 WHERE rank = \"31\"", "question": "What's the Finish rank of 31?", "context": "CREATE TABLE table_name_71 (finish VARCHAR, rank VARCHAR)"}, {"answer": "SELECT year FROM table_name_75 WHERE rank = \"31\"", "question": "What year did the rank of 31 happen in?", "context": "CREATE TABLE table_name_75 (year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE result = \"4-1\"", "question": "Which item resulted in a score of 4-1?", "context": "CREATE TABLE table_name_77 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE result = \"5-1\"", "question": "Which item has a score of 5-1?", "context": "CREATE TABLE table_name_6 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_19 WHERE result = \"4-1\" AND score = \"4-1\"", "question": "Which competition had a 4-1 result, and a score of 4-1?", "context": "CREATE TABLE table_name_19 (competition VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_44 WHERE 2010 = \"1r\" AND 2012 = \"a\" AND 2008 = \"2r\"", "question": "Name the 2009 ffor 2010 of 1r and 2012 of a and 2008 of 2r", "context": "CREATE TABLE table_name_44 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_92 WHERE 2012 = \"a\" AND 2010 = \"1r\" AND 2008 = \"2r\"", "question": "Name the 2011 for 2012 of a and 2010 of 1r with 2008 of 2r", "context": "CREATE TABLE table_name_92 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_95 WHERE tournament = \"us open\"", "question": "Name the 2010 for tournament of us open", "context": "CREATE TABLE table_name_95 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_61 WHERE 2011 = \"a\" AND 2008 = \"1r\"", "question": "Name the 2010 for 2011 of a and 2008 of 1r", "context": "CREATE TABLE table_name_61 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_94 WHERE 2010 = \"2r\"", "question": "Name the 2011 when 2010 is 2r", "context": "CREATE TABLE table_name_94 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_94 WHERE 2011 = \"2r\"", "question": "Name the tournament when it has 2011 of 2r", "context": "CREATE TABLE table_name_94 (tournament VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_66 WHERE loss = \"papelbon (0\u20131)\"", "question": "What was the average attendance for games with a loss of papelbon (0\u20131)?", "context": "CREATE TABLE table_name_66 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_74 WHERE record = \"16\u201314\"", "question": "When the team had their record of 16\u201314, what was the total attendance?", "context": "CREATE TABLE table_name_74 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT scorers FROM table_name_8 WHERE venue = \"a\" AND opponent = \"st. johnstone\"", "question": "Who was in a with opponent St. Johnstone?", "context": "CREATE TABLE table_name_8 (scorers VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_81 WHERE date = \"27 may 2000\"", "question": "What venue was on 27 May 2000?", "context": "CREATE TABLE table_name_81 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT scorers FROM table_name_24 WHERE date = \"12 march 2000\"", "question": "Who was on 12 March 2000?", "context": "CREATE TABLE table_name_24 (scorers VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank FROM table_name_55 WHERE player = \"jason dunstall\"", "question": "What is the rank of player Jason Dunstall?", "context": "CREATE TABLE table_name_55 (rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_6 WHERE goals = \"1299\"", "question": "Which player has 1299 goals?", "context": "CREATE TABLE table_name_6 (player VARCHAR, goals VARCHAR)"}, {"answer": "SELECT club_clubs FROM table_name_11 WHERE player = \"tony lockett\"", "question": "In what club(s) does Tony Lockett play?", "context": "CREATE TABLE table_name_11 (club_clubs VARCHAR, player VARCHAR)"}, {"answer": "SELECT manager FROM table_name_14 WHERE team = \"manchester city\"", "question": "Which manager has Manchester City as the team?", "context": "CREATE TABLE table_name_14 (manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT manager FROM table_name_7 WHERE team = \"sheffield wednesday\"", "question": "Which manager has sheffield wednesday as the team?", "context": "CREATE TABLE table_name_7 (manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_77 WHERE manager = \"george graham\"", "question": "Which team has george graham as the manager?", "context": "CREATE TABLE table_name_77 (team VARCHAR, manager VARCHAR)"}, {"answer": "SELECT kit_manufacturer FROM table_name_36 WHERE manager = \"billy bonds\"", "question": "What is the kit manufacturer that has billy bonds as the manager?", "context": "CREATE TABLE table_name_36 (kit_manufacturer VARCHAR, manager VARCHAR)"}, {"answer": "SELECT captain FROM table_name_34 WHERE manager = \"billy bonds\"", "question": "Which captain has billy bonds as the manager?", "context": "CREATE TABLE table_name_34 (captain VARCHAR, manager VARCHAR)"}, {"answer": "SELECT captain FROM table_name_52 WHERE manager = \"howard wilkinson\"", "question": "Which captain has howard wilkinson as the manager?", "context": "CREATE TABLE table_name_52 (captain VARCHAR, manager VARCHAR)"}, {"answer": "SELECT loss FROM table_name_90 WHERE record = \"46-48\"", "question": "What was the loss of the Brewers game when the record was 46-48?", "context": "CREATE TABLE table_name_90 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_76 WHERE score = \"7-10\"", "question": "What was the record at the game that had a score of 7-10?", "context": "CREATE TABLE table_name_76 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_53 WHERE year > 1972 AND pts > 0", "question": "Which chassis is more recent than 1972 and has more than 0 Pts. ?", "context": "CREATE TABLE table_name_53 (chassis VARCHAR, year VARCHAR, pts VARCHAR)"}, {"answer": "SELECT engine FROM table_name_92 WHERE year = 1973 AND chassis = \"brabham bt37\"", "question": "Which engine from 1973 has a Brabham bt37 chassis?", "context": "CREATE TABLE table_name_92 (engine VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_33 WHERE player = \"mike weir\"", "question": "What score to highest to par did Mike Weir achieve?", "context": "CREATE TABLE table_name_33 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_91 WHERE score = 70 - 73 - 69 = 212", "question": "Who had a score of 70-73-69=212?", "context": "CREATE TABLE table_name_91 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_81 WHERE place = \"t1\" AND score = 70 - 73 - 69 = 212", "question": "What player was place of t1 in To Par and had a score of 70-73-69=212?", "context": "CREATE TABLE table_name_81 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_69 WHERE player = \"mike weir\"", "question": "What score to par did Mike Weir have?", "context": "CREATE TABLE table_name_69 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_92 WHERE score = 67 - 74 - 73 = 214", "question": "What place was the scorer of 67-74-73=214?", "context": "CREATE TABLE table_name_92 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_77 WHERE player = \"rocco mediate\"", "question": "What country does Rocco Mediate play for?", "context": "CREATE TABLE table_name_77 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_17 WHERE player = \"rocco mediate\"", "question": "What is Rocco Mediate's par?", "context": "CREATE TABLE table_name_17 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_49 WHERE player = \"chad campbell\"", "question": "What country is Chad Campbell from?", "context": "CREATE TABLE table_name_49 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE country = \"spain\"", "question": "What was the score for Spain?", "context": "CREATE TABLE table_name_28 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_71 WHERE player = \"fred couples\"", "question": "Where is Fred Couples from?", "context": "CREATE TABLE table_name_71 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT record FROM table_name_65 WHERE date = \"july 10\"", "question": "what's the record on july 10?", "context": "CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT name_of_kingdom FROM table_name_65 WHERE capital = \"suin\"", "question": "Which kingdom has Suin as its capital?", "context": "CREATE TABLE table_name_65 (name_of_kingdom VARCHAR, capital VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_25 WHERE date = \"september 9, 1967\"", "question": "What week did the September 9, 1967 game occur on?", "context": "CREATE TABLE table_name_25 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE week > 5 AND opponent = \"houston oilers\"", "question": "What was the date of the game after week 5 against the Houston Oilers?", "context": "CREATE TABLE table_name_87 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT week FROM table_name_27 WHERE date = \"december 14, 1967\"", "question": "Which week was the game on December 14, 1967?", "context": "CREATE TABLE table_name_27 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_96 WHERE week > 9 AND attendance = \"44,020\"", "question": "Who was the opponent after week 9 with an attendance of 44,020?", "context": "CREATE TABLE table_name_96 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_79 WHERE team_1 = \"al-ismaily\"", "question": "What team played against Al-Ismaily (team 1)?", "context": "CREATE TABLE table_name_79 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_66 WHERE team_1 = \"kabwe warriors\"", "question": "When Kabwe Warriors (team 1) played, what was the result of the 1st leg?", "context": "CREATE TABLE table_name_66 (team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_36 WHERE team_2 = \"hafia fc\"", "question": "What team played against Hafia FC (team 2)?", "context": "CREATE TABLE table_name_36 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT record FROM table_name_24 WHERE week = 2", "question": "For the game that was played on week 2, what is the record?", "context": "CREATE TABLE table_name_24 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_95 WHERE week = 15", "question": "What was the result of the game that was played on week 15?", "context": "CREATE TABLE table_name_95 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(carries) FROM table_name_37 WHERE average < 8.7 AND touchdowns = 72", "question": "How many carries have an average under 8.7 and touchdowns of 72?", "context": "CREATE TABLE table_name_37 (carries VARCHAR, average VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT AVG(carries) FROM table_name_36 WHERE touchdowns > 72", "question": "What is the average number of carries that have more than 72 touchdowns?", "context": "CREATE TABLE table_name_36 (carries INTEGER, touchdowns INTEGER)"}, {"answer": "SELECT MAX(touchdowns) FROM table_name_77 WHERE points < 105 AND average > 4.7 AND rushing_yards < 487", "question": "What is the most number of touchdowns that have fewer than 105 points, averages over 4.7, and fewer than 487 rushing yards?", "context": "CREATE TABLE table_name_77 (touchdowns INTEGER, rushing_yards VARCHAR, points VARCHAR, average VARCHAR)"}, {"answer": "SELECT SUM(carries) FROM table_name_98 WHERE points = 80 AND touchdowns < 16", "question": "What is the sum of carries associated with 80 points and fewer than 16 touchdowns?", "context": "CREATE TABLE table_name_98 (carries INTEGER, points VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT COUNT(rushing_yards) FROM table_name_27 WHERE average > 8.4 AND carries < 54", "question": "What is the total number of rushing yards associated with averages over 8.4 and fewer than 54 carries?", "context": "CREATE TABLE table_name_27 (rushing_yards VARCHAR, average VARCHAR, carries VARCHAR)"}, {"answer": "SELECT record FROM table_name_60 WHERE date = \"april 8\"", "question": "Which record is dated April 8?", "context": "CREATE TABLE table_name_60 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE attendance = \"5,298\"", "question": "What is the score for the game that has an attendance of 5,298?", "context": "CREATE TABLE table_name_9 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE attendance = \"10,101\"", "question": "What was the date for the game that had an attendance of 10,101?", "context": "CREATE TABLE table_name_45 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE attendance = \"11,141\"", "question": "What is the record for the game with an attendance of 11,141?", "context": "CREATE TABLE table_name_26 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_66 WHERE losses < 8 AND team_name = \"vancouver burrards\" AND games < 24", "question": "What's the lowest number of points with fewer than 8 losses and fewer than 24 games for the vancouver burrards?", "context": "CREATE TABLE table_name_66 (points INTEGER, games VARCHAR, losses VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_1 WHERE losses < 12 AND team_name = \"vancouver carlings\" AND games > 32", "question": "What's the total number of points when the vancouver carlings have fewer than 12 losses and more than 32 games?", "context": "CREATE TABLE table_name_1 (points VARCHAR, games VARCHAR, losses VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_18 WHERE losses < 9 AND games > 24 AND team_name = \"vancouver burrards\"", "question": "What's the total number of points when the vancouver burrards have fewer than 9 losses and more than 24 games?", "context": "CREATE TABLE table_name_18 (points VARCHAR, team_name VARCHAR, losses VARCHAR, games VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_8 WHERE season = \"1963\" AND games > 30", "question": "What's the sum of points for the 1963 season when there are more than 30 games?", "context": "CREATE TABLE table_name_8 (points INTEGER, season VARCHAR, games VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_89 WHERE season = \"1976\" AND points > 20", "question": "What's the total number of games with more than 20 points for the 1976 season?", "context": "CREATE TABLE table_name_89 (games VARCHAR, season VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_8 WHERE team_name = \"vancouver burrards\" AND season = \"1947\" AND games < 24", "question": "What's the total losses for the vancouver burrards in the 1947 season with fewer than 24 games?", "context": "CREATE TABLE table_name_8 (losses VARCHAR, games VARCHAR, team_name VARCHAR, season VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_19 WHERE drawn = \"1\" AND points = \"41\"", "question": "How many tries against did the club with 1 drawn and 41 points have?", "context": "CREATE TABLE table_name_19 (tries_against VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT club FROM table_name_16 WHERE points_for = \"275\"", "question": "Which club has 275 points?", "context": "CREATE TABLE table_name_16 (club VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_68 WHERE losing_bonus = \"3\" AND tries_for = \"84\"", "question": "How many points against did the club with a losing bonus of 3 and 84 tries have?", "context": "CREATE TABLE table_name_68 (points_against VARCHAR, losing_bonus VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT club FROM table_name_2 WHERE tries_for = \"40\"", "question": "Which club has 40 tries for?", "context": "CREATE TABLE table_name_2 (club VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_45 WHERE try_bonus = \"correct as of 2 june 2009\"", "question": "How many tries did the club with a try bonus of correct as of 2 June 2009 have?", "context": "CREATE TABLE table_name_45 (tries_for VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_24 WHERE club = \"croesyceiliog rfc\"", "question": "How many tries did the club Croesyceiliog rfc have?", "context": "CREATE TABLE table_name_24 (tries_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT d_42_\u221a FROM table_name_47 WHERE d_45_o = \"d 32 \u221a\"", "question": "What is the value of D 42 \u221a, when the value of D 45 O is d 32 \u221a?", "context": "CREATE TABLE table_name_47 (d_42_\u221a VARCHAR, d_45_o VARCHAR)"}, {"answer": "SELECT d_45_o FROM table_name_67 WHERE d_44_o = \"\u2190 majority\"", "question": "What is the value of D 45 O when the value of D 44 O is \u2190 majority?", "context": "CREATE TABLE table_name_67 (d_45_o VARCHAR, d_44_o VARCHAR)"}, {"answer": "SELECT d_43_\u221a FROM table_name_58 WHERE d_42_\u221a = \"d 42 \u221a\"", "question": "What is the value of D 43 \u221a when the value of D 42 \u221a is d 42 \u221a?", "context": "CREATE TABLE table_name_58 (d_43_\u221a VARCHAR, d_42_\u221a VARCHAR)"}, {"answer": "SELECT d_45_o FROM table_name_60 WHERE d_41_\u221a = \"r 41 \u221a\"", "question": "What is the value of D 45 O, when the value of D 41 \u221a is r 41 \u221a?", "context": "CREATE TABLE table_name_60 (d_45_o VARCHAR, d_41_\u221a VARCHAR)"}, {"answer": "SELECT AVG(driver_wins) FROM table_name_51 WHERE nation = \"sweden\"", "question": "What is the average number of wins of drivers from Sweden?", "context": "CREATE TABLE table_name_51 (driver_wins INTEGER, nation VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_56 WHERE rank = \"1\" AND total > 16", "question": "How many gold are a rank 1 and larger than 16?", "context": "CREATE TABLE table_name_56 (gold VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_14 WHERE total < 4", "question": "How many total gold are less than 4?", "context": "CREATE TABLE table_name_14 (gold VARCHAR, total INTEGER)"}, {"answer": "SELECT SUM(gold) FROM table_name_32 WHERE bronze < 2 AND silver = 1 AND total > 4", "question": "What is the total gold that has bronze less than 2, a silver of 1 and total more than 4?", "context": "CREATE TABLE table_name_32 (gold INTEGER, total VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(runners) FROM table_name_34 WHERE dist__f_ = 10.5", "question": "Name the least runners with dist of 10.5", "context": "CREATE TABLE table_name_34 (runners INTEGER, dist__f_ VARCHAR)"}, {"answer": "SELECT runners FROM table_name_88 WHERE course = \"longchamp\"", "question": "Name the runners for longchamp", "context": "CREATE TABLE table_name_88 (runners VARCHAR, course VARCHAR)"}, {"answer": "SELECT year FROM table_name_48 WHERE laps = 116", "question": "What is the year with 116 laps?", "context": "CREATE TABLE table_name_48 (year VARCHAR, laps VARCHAR)"}, {"answer": "SELECT year FROM table_name_92 WHERE finish = \"19\"", "question": "What year has a finish of 19?", "context": "CREATE TABLE table_name_92 (year VARCHAR, finish VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_50 WHERE bronze > 3 AND gold = 16", "question": "How many Silver medals were won in total by all those with more than 3 bronze and exactly 16 gold?", "context": "CREATE TABLE table_name_50 (silver INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_95 WHERE loss = \"wells (1-3)\"", "question": "Which opponent has a loss of wells (1-3)?", "context": "CREATE TABLE table_name_95 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_75 WHERE opponent = \"tigers\" AND loss = \"leiter (0-1)\"", "question": "What is the largest attendance that has tigers as the opponent and a loss of leiter (0-1)?", "context": "CREATE TABLE table_name_75 (attendance INTEGER, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT party FROM table_name_44 WHERE representative = \"peter a. quinn\"", "question": "Which party has Peter A. Quinn as a representative?", "context": "CREATE TABLE table_name_44 (party VARCHAR, representative VARCHAR)"}, {"answer": "SELECT state FROM table_name_32 WHERE representative = \"jimmy quillen\"", "question": "Which state does Jimmy Quillen represent?", "context": "CREATE TABLE table_name_32 (state VARCHAR, representative VARCHAR)"}, {"answer": "SELECT lifespan FROM table_name_21 WHERE party = \"democratic\" AND state = \"new york\" AND representative = \"terence j. quinn\"", "question": "What is the lifespan of the democratic party in New York, for which Terence J. Quinn is a representative?", "context": "CREATE TABLE table_name_21 (lifespan VARCHAR, representative VARCHAR, party VARCHAR, state VARCHAR)"}, {"answer": "SELECT notes FROM table_1000181_1 WHERE current_slogan = \"SOUTH AUSTRALIA\"", "question": "Tell me what the notes are for South Australia ", "context": "CREATE TABLE table_1000181_1 (notes VARCHAR, current_slogan VARCHAR)"}, {"answer": "SELECT current_series FROM table_1000181_1 WHERE notes = \"New series began in June 2011\"", "question": "What is the current series where the new series began in June 2011?", "context": "CREATE TABLE table_1000181_1 (current_series VARCHAR, notes VARCHAR)"}, {"answer": "SELECT format FROM table_1000181_1 WHERE state_territory = \"South Australia\"", "question": "What is the format for South Australia?", "context": "CREATE TABLE table_1000181_1 (format VARCHAR, state_territory VARCHAR)"}, {"answer": "SELECT text_background_colour FROM table_1000181_1 WHERE state_territory = \"Australian Capital Territory\"", "question": "Name the background colour for the Australian Capital Territory", "context": "CREATE TABLE table_1000181_1 (text_background_colour VARCHAR, state_territory VARCHAR)"}, {"answer": "SELECT COUNT(fleet_series__quantity_) FROM table_10007452_3 WHERE fuel_propulsion = \"CNG\"", "question": "how many times is the fuel propulsion is cng?", "context": "CREATE TABLE table_10007452_3 (fleet_series__quantity_ VARCHAR, fuel_propulsion VARCHAR)"}, {"answer": "SELECT fuel_propulsion FROM table_10007452_3 WHERE fleet_series__quantity_ = \"310-329 (20)\"", "question": "what is the fuel propulsion where the fleet series (quantity) is 310-329 (20)?", "context": "CREATE TABLE table_10007452_3 (fuel_propulsion VARCHAR, fleet_series__quantity_ VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_10007452_3 WHERE order_year = \"1998\"", "question": "who is the manufacturer for the order year 1998?", "context": "CREATE TABLE table_10007452_3 (manufacturer VARCHAR, order_year VARCHAR)"}, {"answer": "SELECT COUNT(manufacturer) FROM table_10007452_3 WHERE model = \"GE40LFR\"", "question": "how many times is the model ge40lfr?", "context": "CREATE TABLE table_10007452_3 (manufacturer VARCHAR, model VARCHAR)"}, {"answer": "SELECT COUNT(order_year) FROM table_10007452_3 WHERE fleet_series__quantity_ = \"468-473 (6)\"", "question": "how many times is the fleet series (quantity) is 468-473 (6)?", "context": "CREATE TABLE table_10007452_3 (order_year VARCHAR, fleet_series__quantity_ VARCHAR)"}, {"answer": "SELECT powertrain__engine_transmission_ FROM table_10007452_3 WHERE order_year = \"2000\"", "question": "what is the powertrain (engine/transmission) when the order year is 2000?", "context": "CREATE TABLE table_10007452_3 (powertrain__engine_transmission_ VARCHAR, order_year VARCHAR)"}, {"answer": "SELECT description FROM table_10006830_1 WHERE aircraft = \"CH-47D Chinook\"", "question": "What if the description of a ch-47d chinook?", "context": "CREATE TABLE table_10006830_1 (description VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT max_gross_weight FROM table_10006830_1 WHERE aircraft = \"Robinson R-22\"", "question": "What is the max gross weight of the Robinson R-22?", "context": "CREATE TABLE table_10006830_1 (max_gross_weight VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_1 WHERE no = \"6\"", "question": "What school did player number 6 come from?", "context": "CREATE TABLE table_10015132_1 (school_club_team VARCHAR, no VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_1 WHERE years_in_toronto = \"2012-present\"", "question": "What school did the player that has been in Toronto from 2012-present come from?", "context": "CREATE TABLE table_10015132_1 (school_club_team VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_1 WHERE years_in_toronto = \"2010-2012\"", "question": "What school did the player that has been in Toronto from 2010-2012 go to?", "context": "CREATE TABLE table_10015132_1 (school_club_team VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT position FROM table_10015132_1 WHERE school_club_team = \"Baylor\"", "question": "What position did the player from Baylor play?", "context": "CREATE TABLE table_10015132_1 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_10015132_14 WHERE years_in_toronto = \"1995-96\"", "question": "Who played in the Toronto Raptors from 1995-96?", "context": "CREATE TABLE table_10015132_14 (player VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT no FROM table_10015132_14 WHERE player = \"Patrick O'Bryant\"", "question": "Which number was Patrick O'Bryant?", "context": "CREATE TABLE table_10015132_14 (no VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_14 WHERE player = \"Patrick O'Bryant\"", "question": "What school did Patrick O'Bryant play for?", "context": "CREATE TABLE table_10015132_14 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_10015132_14 WHERE school_club_team = \"Fordham\"", "question": "How many number does Fordham school have?", "context": "CREATE TABLE table_10015132_14 (no VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_14 WHERE years_in_toronto = \"2001-02\"", "question": "Which school was in Toronto in 2001-02?", "context": "CREATE TABLE table_10015132_14 (school_club_team VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_21 WHERE years_in_toronto = \"2004-05\"", "question": "Which school did the player that played 2004-05 attend?", "context": "CREATE TABLE table_10015132_21 (school_club_team VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT position FROM table_10015132_21 WHERE player = \"Loren Woods\"", "question": "Which position does Loren Woods play?", "context": "CREATE TABLE table_10015132_21 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_10015132_21 WHERE years_in_toronto = \"1998-2001\"", "question": "What number is the player that played 1998-2001", "context": "CREATE TABLE table_10015132_21 (no INTEGER, years_in_toronto VARCHAR)"}, {"answer": "SELECT nationality FROM table_10015132_21 WHERE school_club_team = \"Georgetown\"", "question": "Which country is the player that went to Georgetown from?", "context": "CREATE TABLE table_10015132_21 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_21 WHERE player = \"Herb Williams\"", "question": "Which school did Herb Williams go to?", "context": "CREATE TABLE table_10015132_21 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_in_toronto FROM table_10015132_3 WHERE school_club_team = \"Hawaii\"", "question": "When did the player from Hawaii play for Toronto?", "context": "CREATE TABLE table_10015132_3 (years_in_toronto VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_in_toronto FROM table_10015132_3 WHERE player = \"Dell Curry\"", "question": "During what period did Dell Curry play for Toronto?", "context": "CREATE TABLE table_10015132_3 (years_in_toronto VARCHAR, player VARCHAR)"}, {"answer": "SELECT no FROM table_10015132_3 WHERE school_club_team = \"Boise State\"", "question": "What's the number of the player from Boise State?", "context": "CREATE TABLE table_10015132_3 (no VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_10015132_3 WHERE player = \"Dell Curry\"", "question": "What's Dell Curry nationality?", "context": "CREATE TABLE table_10015132_3 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_10015132_7 WHERE school_club_team = \"Georgia\"", "question": "which player is from georgia", "context": "CREATE TABLE table_10015132_7 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_10015132_7 WHERE player = \"Rudy Gay\"", "question": "what school is rudy gay from", "context": "CREATE TABLE table_10015132_7 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_10015132_7 WHERE years_in_toronto = \"1997-98\"", "question": "what nationality is the player who played from 1997-98", "context": "CREATE TABLE table_10015132_7 (nationality VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT position FROM table_10015132_7 WHERE school_club_team = \"Connecticut\"", "question": "what position did the player from connecticut play", "context": "CREATE TABLE table_10015132_7 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_in_toronto FROM table_10015132_2 WHERE player = \"Marcus Banks\"", "question": "During which years was Marcus Banks in Toronto?", "context": "CREATE TABLE table_10015132_2 (years_in_toronto VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_10015132_2 WHERE years_in_toronto = \"2004\"", "question": "Which positions were in Toronto in 2004?", "context": "CREATE TABLE table_10015132_2 (position VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT nationality FROM table_10015132_2 WHERE player = \"Muggsy Bogues\"", "question": "What nationality is the player Muggsy Bogues?", "context": "CREATE TABLE table_10015132_2 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_in_toronto FROM table_10015132_2 WHERE player = \"Lonny Baxter\"", "question": "What years was the player Lonny Baxter in Toronto?", "context": "CREATE TABLE table_10015132_2 (years_in_toronto VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_10015132_2 WHERE school_club_team = \"La Salle\"", "question": "How many players were with the school or club team La Salle?", "context": "CREATE TABLE table_10015132_2 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT best_finish FROM table_10021158_3 WHERE scoring_rank = \"117\"", "question": "When the scoring rank was 117, what was the best finish?", "context": "CREATE TABLE table_10021158_3 (best_finish VARCHAR, scoring_rank VARCHAR)"}, {"answer": "SELECT 2 AS nd FROM table_10021158_3 WHERE best_finish = \"T69\"", "question": "When the best finish was T69, how many people came in 2nd?", "context": "CREATE TABLE table_10021158_3 (best_finish VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_10021158_3 WHERE money_list_rank = \"183\"", "question": "How many wins were there when the money list rank was 183?", "context": "CREATE TABLE table_10021158_3 (wins VARCHAR, money_list_rank VARCHAR)"}, {"answer": "SELECT scoring_average FROM table_10021158_3 WHERE money_list_rank = \"n/a\"", "question": "When the money list rank was n/a, what was the scoring average?", "context": "CREATE TABLE table_10021158_3 (scoring_average VARCHAR, money_list_rank VARCHAR)"}, {"answer": "SELECT MAX(2 AS nd) FROM table_10021158_3", "question": "What time was the highest for 2nd finishers?", "context": "CREATE TABLE table_10021158_3 (Id VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_1004033_1 WHERE team = \"MetroStars\"", "question": "When did the Metrostars have their first Rookie of the Year winner?", "context": "CREATE TABLE table_1004033_1 (season INTEGER, team VARCHAR)"}, {"answer": "SELECT college FROM table_1004033_1 WHERE team = \"Columbus Crew\"", "question": "What college did the Rookie of the Year from the Columbus Crew attend?", "context": "CREATE TABLE table_1004033_1 (college VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_1004033_1 WHERE draft_pick__number = \"1\"", "question": "How many teams had a #1 draft pick that won the Rookie of the Year Award?", "context": "CREATE TABLE table_1004033_1 (team VARCHAR, draft_pick__number VARCHAR)"}, {"answer": "SELECT position FROM table_1004033_1 WHERE draft_pick__number = \"10\"", "question": "What position did the #10 draft pick play?", "context": "CREATE TABLE table_1004033_1 (position VARCHAR, draft_pick__number VARCHAR)"}, {"answer": "SELECT years_played FROM table_10023387_1 WHERE singles_w_l = \"3\u20132\"", "question": "what's the\u00a0years played\u00a0with\u00a0singles w-l\u00a0of 3\u20132", "context": "CREATE TABLE table_10023387_1 (years_played VARCHAR, singles_w_l VARCHAR)"}, {"answer": "SELECT doubles_w_l FROM table_10023387_1 WHERE player = \"Seol Jae-Min (none)\"", "question": "what's the\u00a0doubles w-l\u00a0for player\u00a0seol jae-min (none)", "context": "CREATE TABLE table_10023387_1 (doubles_w_l VARCHAR, player VARCHAR)"}, {"answer": "SELECT singles_w_l FROM table_10023387_1 WHERE player = \"Kim Doo-Hwan\"", "question": "what's the\u00a0singles w-l\u00a0for kim doo-hwan", "context": "CREATE TABLE table_10023387_1 (singles_w_l VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(singles_w_l) FROM table_10023387_1 WHERE doubles_w_l = \"0\u20130\" AND total_w_l = \"3\u20131\"", "question": "what's the total number of\u00a0singles w-l\u00a0with\u00a0doubles w-l\u00a0of 0\u20130 and\u00a0total w-l\u00a0of 3\u20131", "context": "CREATE TABLE table_10023387_1 (singles_w_l VARCHAR, doubles_w_l VARCHAR, total_w_l VARCHAR)"}, {"answer": "SELECT doubles_w_l FROM table_10023387_1 WHERE years_played = \"1 (1968)\"", "question": "what's the\u00a0doubles w-l\u00a0with\u00a0years played\u00a0value of 1 (1968)", "context": "CREATE TABLE table_10023387_1 (doubles_w_l VARCHAR, years_played VARCHAR)"}, {"answer": "SELECT years_played FROM table_10023387_1 WHERE player = \"Im Chung-Yang\"", "question": "what\u00a0years are played\u00a0for player\u00a0 im chung-yang", "context": "CREATE TABLE table_10023387_1 (years_played VARCHAR, player VARCHAR)"}, {"answer": "SELECT name FROM table_10020178_1 WHERE crest_length__meters_ = 375", "question": "What is the name of the 375 crest length?", "context": "CREATE TABLE table_10020178_1 (name VARCHAR, crest_length__meters_ VARCHAR)"}, {"answer": "SELECT MIN(year_of_construction) FROM table_10020178_1 WHERE name = \"Spitallamm\"", "question": "What is year of construction of spitallamm?", "context": "CREATE TABLE table_10020178_1 (year_of_construction INTEGER, name VARCHAR)"}, {"answer": "SELECT canton FROM table_10020178_1 WHERE name = \"Grande Dixence\"", "question": "What is the canton of grande dixence?", "context": "CREATE TABLE table_10020178_1 (canton VARCHAR, name VARCHAR)"}, {"answer": "SELECT guardian_m\u0101t\u1e5bk\u0101 FROM table_100518_1 WHERE consort = \"Sv\u0101h\u0101\"", "question": "What is the  guardian m\u0101t\u1e5bk\u0101 for the guardian whose consort is Sv\u0101h\u0101?", "context": "CREATE TABLE table_100518_1 (guardian_m\u0101t\u1e5bk\u0101 VARCHAR, consort VARCHAR)"}, {"answer": "SELECT direction FROM table_100518_1 WHERE mantra = \"O\u1e43 Ya\u1e43 V\u0101yuve Nama\u1e25\"", "question": "Where the mantra is \"o\u1e43 ya\u1e43 v\u0101yuve nama\u1e25\", what is the direction of the guardian?", "context": "CREATE TABLE table_100518_1 (direction VARCHAR, mantra VARCHAR)"}, {"answer": "SELECT weapon FROM table_100518_1 WHERE consort = \"\u015aac\u012b\"", "question": "What weapon is used by the guardian whose consort is \u015bac\u012b?", "context": "CREATE TABLE table_100518_1 (weapon VARCHAR, consort VARCHAR)"}, {"answer": "SELECT direction FROM table_100518_1 WHERE weapon = \"Kha\u1e0dga (sword)\"", "question": "What are the directions for the guardian whose weapon is kha\u1e0dga (sword)?", "context": "CREATE TABLE table_100518_1 (direction VARCHAR, weapon VARCHAR)"}, {"answer": "SELECT weapon FROM table_100518_1 WHERE direction = \"East\"", "question": "What are the weapons used by guardians for the direction East?", "context": "CREATE TABLE table_100518_1 (weapon VARCHAR, direction VARCHAR)"}, {"answer": "SELECT direction FROM table_100518_1 WHERE graha__planet_ = \"B\u1e5bhaspati (Jupiter)\"", "question": "What are the directions for the guardian whose graha (planet) is b\u1e5bhaspati (Jupiter)?", "context": "CREATE TABLE table_100518_1 (direction VARCHAR, graha__planet_ VARCHAR)"}, {"answer": "SELECT MAX(chapters) FROM table_10054296_1 WHERE classification = \"Fraternity\" AND headquarters = \"Austin, Texas\"", "question": "What is the number of chapters listed for the fraternity with a headquarters in Austin, Texas?", "context": "CREATE TABLE table_10054296_1 (chapters INTEGER, classification VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT member FROM table_10054296_1 WHERE classification = \"Sorority\"", "question": "What are the members listed with the sorority classification", "context": "CREATE TABLE table_10054296_1 (member VARCHAR, classification VARCHAR)"}, {"answer": "SELECT member FROM table_10054296_1 WHERE chapters = 12", "question": "Name the member that has 12 chapters", "context": "CREATE TABLE table_10054296_1 (member VARCHAR, chapters VARCHAR)"}, {"answer": "SELECT headquarters FROM table_10054296_1 WHERE member = \"Alpha Nu Omega\"", "question": "Where is the headquarters of Alpha Nu Omega", "context": "CREATE TABLE table_10054296_1 (headquarters VARCHAR, member VARCHAR)"}, {"answer": "SELECT MIN(relapsing_fever) FROM table_1007688_1 WHERE malaria = \"3000\"", "question": "what is the number of relapsing fever when malaria is 3000", "context": "CREATE TABLE table_1007688_1 (relapsing_fever INTEGER, malaria VARCHAR)"}, {"answer": "SELECT typhoid_fever FROM table_1007688_1 WHERE year = \"1934\"", "question": "what is the typhoid fever number for the year 1934", "context": "CREATE TABLE table_1007688_1 (typhoid_fever VARCHAR, year VARCHAR)"}, {"answer": "SELECT typhus FROM table_1007688_1 WHERE smallpox = 4", "question": "What are all the typhus number when smallpox is 4", "context": "CREATE TABLE table_1007688_1 (typhus VARCHAR, smallpox VARCHAR)"}, {"answer": "SELECT MAX(smallpox) FROM table_1007688_1 WHERE typhoid_fever = 293", "question": "what is the number of smallpox when typhoid fever is 293", "context": "CREATE TABLE table_1007688_1 (smallpox INTEGER, typhoid_fever VARCHAR)"}, {"answer": "SELECT typhoid_fever FROM table_1007688_1 WHERE year = \"1929\"", "question": "what is the typhoid fever number for the year 1929", "context": "CREATE TABLE table_1007688_1 (typhoid_fever VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_10082596_1 WHERE location = \"Bloomington, IN\"", "question": "How many schools are in Bloomington, IN?", "context": "CREATE TABLE table_10082596_1 (founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_10082596_1 WHERE affiliation = \"Private/Presbyterian\"", "question": "How many of the schools are designated private/Presbyterian?", "context": "CREATE TABLE table_10082596_1 (location VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_10082596_1 WHERE school = \"Lindenwood University\"", "question": "In what year was Lindenwood University founded?", "context": "CREATE TABLE table_10082596_1 (founded INTEGER, school VARCHAR)"}, {"answer": "SELECT COUNT(primary_conference) FROM table_10082596_1 WHERE location = \"Ames, IA\"", "question": "How many of the schools listed are in Ames, IA?", "context": "CREATE TABLE table_10082596_1 (primary_conference VARCHAR, location VARCHAR)"}, {"answer": "SELECT capital___endonym__ FROM table_1008653_9 WHERE capital___exonym__ = \"Douglas\"", "question": "What is the capital (endonym) where Douglas is the Capital (exonym)?", "context": "CREATE TABLE table_1008653_9 (capital___endonym__ VARCHAR, capital___exonym__ VARCHAR)"}, {"answer": "SELECT COUNT(country___endonym__) FROM table_1008653_9 WHERE capital___endonym__ = \"Jakarta\"", "question": "How many countries (endonym) has the capital (endonym) of Jakarta?", "context": "CREATE TABLE table_1008653_9 (country___endonym__ VARCHAR, capital___endonym__ VARCHAR)"}, {"answer": "SELECT country___exonym__ FROM table_1008653_9 WHERE official_or_native_language_s___alphabet_script_ = \"Icelandic\"", "question": "What is the country (exonym) where the official or native language(s) (alphabet/script) is Icelandic?", "context": "CREATE TABLE table_1008653_9 (country___exonym__ VARCHAR, official_or_native_language_s___alphabet_script_ VARCHAR)"}, {"answer": "SELECT country___endonym__ FROM table_1008653_9 WHERE official_or_native_language_s___alphabet_script_ = \"Irish English\"", "question": "In which country (endonym) is Irish English the official or native language(s) (alphabet/script)?", "context": "CREATE TABLE table_1008653_9 (country___endonym__ VARCHAR, official_or_native_language_s___alphabet_script_ VARCHAR)"}, {"answer": "SELECT country___exonym__ FROM table_1008653_9 WHERE country___endonym__ = \"Isle of Man Ellan Vannin\"", "question": "Which country (exonym) is the country (endonym) isle of man ellan vannin?", "context": "CREATE TABLE table_1008653_9 (country___exonym__ VARCHAR, country___endonym__ VARCHAR)"}, {"answer": "SELECT MIN(population_canada_2011_census) FROM table_1011906_1 WHERE seat_of_rcm = \"Cowansville\"", "question": "what is the minimum\u00a0population canada 2011 census\u00a0with\u00a0seat of rcm\u00a0being cowansville", "context": "CREATE TABLE table_1011906_1 (population_canada_2011_census INTEGER, seat_of_rcm VARCHAR)"}, {"answer": "SELECT land_area FROM table_1011906_1 WHERE seat_of_rcm = \"Granby\"", "question": "what's the\u00a0land area\u00a0with\u00a0seat of rcm\u00a0being granby", "context": "CREATE TABLE table_1011906_1 (land_area VARCHAR, seat_of_rcm VARCHAR)"}, {"answer": "SELECT population FROM table_101196_1 WHERE county = \"county Mayo\" AND english_name = \"Carrowteige\"", "question": "What is the population for County Mayo with the English Name Carrowteige?", "context": "CREATE TABLE table_101196_1 (population VARCHAR, county VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT irish_name FROM table_101196_1 WHERE irish_speakers = \"62%\"", "question": "What is the Irish name listed with 62% Irish speakers?", "context": "CREATE TABLE table_101196_1 (irish_name VARCHAR, irish_speakers VARCHAR)"}, {"answer": "SELECT population FROM table_101196_1 WHERE irish_name = \"Leitir Meall\u00e1in\"", "question": "What is the population for the Irish Name Leitir meall\u00e1in?", "context": "CREATE TABLE table_101196_1 (population VARCHAR, irish_name VARCHAR)"}, {"answer": "SELECT county FROM table_101196_1 WHERE irish_name = \"Carna\"", "question": "What is the county for the Irish name Carna?", "context": "CREATE TABLE table_101196_1 (county VARCHAR, irish_name VARCHAR)"}, {"answer": "SELECT COUNT(english_name) FROM table_101196_1 WHERE irish_speakers = \"53%\" AND county = \"county Kerry\"", "question": "How many County Kerry have 53% Irish speakers?", "context": "CREATE TABLE table_101196_1 (english_name VARCHAR, irish_speakers VARCHAR, county VARCHAR)"}, {"answer": "SELECT population FROM table_101196_1 WHERE english_name = \"Spiddal\"", "question": "What is the population for the English name Spiddal?", "context": "CREATE TABLE table_101196_1 (population VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT MIN(chinese) FROM table_10118412_6 WHERE filipino = 1474707", "question": "What is the the Chinese population for the state that has a Filipino population of 1474707?", "context": "CREATE TABLE table_10118412_6 (chinese INTEGER, filipino VARCHAR)"}, {"answer": "SELECT COUNT(filipino) FROM table_10118412_6 WHERE indian = 30947", "question": "How many States have an Indian population of 30947?", "context": "CREATE TABLE table_10118412_6 (filipino VARCHAR, indian VARCHAR)"}, {"answer": "SELECT MAX(indian) FROM table_10118412_6", "question": "What is the highest Indian population?", "context": "CREATE TABLE table_10118412_6 (indian INTEGER)"}, {"answer": "SELECT australian_role FROM table_10121127_1 WHERE un_operation_name = \"UNAMA\"", "question": "What is Australia's role in the UN operation Unama?", "context": "CREATE TABLE table_10121127_1 (australian_role VARCHAR, un_operation_name VARCHAR)"}, {"answer": "SELECT un_operation_title FROM table_10121127_1 WHERE un_operation_name = \"UNCOK\"", "question": "What is the UN operation title with the UN operation name, Uncok?", "context": "CREATE TABLE table_10121127_1 (un_operation_title VARCHAR, un_operation_name VARCHAR)"}, {"answer": "SELECT COUNT(number_of_australians_involved) FROM table_10121127_1 WHERE un_operation_title = \"UN Commission on Korea\"", "question": "How many Australians were in the UN commission on Korea?", "context": "CREATE TABLE table_10121127_1 (number_of_australians_involved VARCHAR, un_operation_title VARCHAR)"}, {"answer": "SELECT dates_of_australian_involvement FROM table_10121127_1 WHERE number_of_australians_involved = \"65\"", "question": "When was it where 65 Australians were involved in the UN?", "context": "CREATE TABLE table_10121127_1 (dates_of_australian_involvement VARCHAR, number_of_australians_involved VARCHAR)"}, {"answer": "SELECT tv_season FROM table_10120207_8 WHERE viewers__millions_ = \"10.73\"", "question": "What year is the season with the 10.73 million views?", "context": "CREATE TABLE table_10120207_8 (tv_season VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT tv_season FROM table_10120207_8 WHERE rank = \"39\"", "question": "What is the season year where the rank is 39?", "context": "CREATE TABLE table_10120207_8 (tv_season VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(season) AS premiere FROM table_10120207_8 WHERE viewers__millions_ = \"10.17\"", "question": "What is the number of season premieres were 10.17 people watched?", "context": "CREATE TABLE table_10120207_8 (season VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT tv_season FROM table_10120207_8 WHERE season = 12", "question": "What is the year of the season that was 12?", "context": "CREATE TABLE table_10120207_8 (tv_season VARCHAR, season VARCHAR)"}, {"answer": "SELECT avg_finish FROM table_1012730_1 WHERE year = 2012", "question": "In 2012 what was the average finish?", "context": "CREATE TABLE table_1012730_1 (avg_finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_1012730_1 WHERE year = 1983", "question": "How many wins happened in 1983?", "context": "CREATE TABLE table_1012730_1 (wins INTEGER, year VARCHAR)"}, {"answer": "SELECT COUNT(top_10) FROM table_1012730_1 WHERE avg_start = \"29.4\"", "question": "How many top tens had an average start of 29.4?", "context": "CREATE TABLE table_1012730_1 (top_10 VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_1012730_1 WHERE avg_finish = \"19.1\"", "question": "How many poles had an average finish of 19.1?", "context": "CREATE TABLE table_1012730_1 (poles INTEGER, avg_finish VARCHAR)"}, {"answer": "SELECT MIN(starts) FROM table_1012730_1 WHERE team_s_ = \"Hendrick Motorsports\"", "question": "How many starts did Hendrick motorsports have?", "context": "CREATE TABLE table_1012730_1 (starts INTEGER, team_s_ VARCHAR)"}, {"answer": "SELECT player FROM table_1013129_10 WHERE position = \"Centre\" AND nhl_team = \"Florida Panthers\"", "question": "NHL players are all centre in Florida panthers.", "context": "CREATE TABLE table_1013129_10 (player VARCHAR, position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_1013129_10 WHERE nhl_team = \"San Jose Sharks\" AND nationality = \"United States\"", "question": "NHL team player San Jose Sharks is United States nationally.", "context": "CREATE TABLE table_1013129_10 (player VARCHAR, nhl_team VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT position FROM table_1013129_10 WHERE player = \"Mark Polak\"", "question": "All players are position mark polak.", "context": "CREATE TABLE table_1013129_10 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1013129_10 WHERE position = \"Centre\" AND pick < 243.0", "question": "Position in nhl team centre are all smaller pick than 243.0", "context": "CREATE TABLE table_1013129_10 (nhl_team VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1013129_11 WHERE nhl_team = \"St. Louis Blues\"", "question": "What college/junior/club teams do the players from the St. Louis Blues come from?", "context": "CREATE TABLE table_1013129_11 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1013129_11 WHERE college_junior_club_team = \"TPS (Finland)\"", "question": "What teams do the players from TPS (Finland) play for?", "context": "CREATE TABLE table_1013129_11 (nhl_team VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1013129_11 WHERE player = \"Doug Nolan\"", "question": "What high school team did Doug Nolan play for?", "context": "CREATE TABLE table_1013129_11 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1013129_11 WHERE player = \"Per Gustafsson\"", "question": "What club team is Per Gustafsson play for?", "context": "CREATE TABLE table_1013129_11 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_1013129_11 WHERE player = \"Shayne Wright\"", "question": "What is the nationality of Shayne Wright?", "context": "CREATE TABLE table_1013129_11 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT southern_england FROM table_10128185_2 WHERE northern_ireland = 3", "question": "How many votes did Southern England cast whilst Northern Ireland cast 3?", "context": "CREATE TABLE table_10128185_2 (southern_england VARCHAR, northern_ireland VARCHAR)"}, {"answer": "SELECT MIN(scotland) FROM table_10128185_2", "question": "What was the lowest number of votes Scotland cast?", "context": "CREATE TABLE table_10128185_2 (scotland INTEGER)"}, {"answer": "SELECT COUNT(scotland) FROM table_10128185_2 WHERE total = 35", "question": "What is the total number of votes if Scotland cast 35?", "context": "CREATE TABLE table_10128185_2 (scotland VARCHAR, total VARCHAR)"}, {"answer": "SELECT northern_ireland FROM table_10128185_2 WHERE total = 35", "question": "How many votes did Northern Ireland cast if the total was 35?", "context": "CREATE TABLE table_10128185_2 (northern_ireland VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(wales) FROM table_10128185_2 WHERE northern_england = 6", "question": "How many votes did Wales cast when Northern England cast 6?", "context": "CREATE TABLE table_10128185_2 (wales INTEGER, northern_england VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_1012730_2 WHERE top_5 = 9 AND wins = 1", "question": "What teams had 9 in the top 5 and 1 wins?", "context": "CREATE TABLE table_1012730_2 (team_s_ VARCHAR, top_5 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1013129_1 WHERE player = \"Vadim Sharifijanov\"", "question": "What teams did the player vadim sharifijanov play for?", "context": "CREATE TABLE table_1013129_1 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_1013129_1 WHERE nhl_team = \"Hartford Whalers\"", "question": "What positions do the hartford whalers nhl team have?", "context": "CREATE TABLE table_1013129_1 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_1013129_1 WHERE player = \"Brett Lindros\"", "question": "What is the smallest pick for the player, brett lindros?", "context": "CREATE TABLE table_1013129_1 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT position FROM table_1013129_1 WHERE college_junior_club_team = \"Molot Perm (Russia)\"", "question": "What positions does the college/junior/club team, molot perm (russia) have?", "context": "CREATE TABLE table_1013129_1 (position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_1013129_1 WHERE nhl_team = \"New York Islanders\"", "question": "The nhl team new york islanders is what nationality?", "context": "CREATE TABLE table_1013129_1 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT vacator FROM table_1013168_3 WHERE district = \"Louisiana 1st\"", "question": "What is the name of the vacator for district Louisiana 1st?", "context": "CREATE TABLE table_1013168_3 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT notation FROM table_101336_1 WHERE crystal_structure = \"Tetragonal\" AND formula = \"Bi 2 Sr 2 CaCu 2 O 8\"", "question": "What is the notion when the crystal structure is tetragonal and the formula is bi 2 sr 2 cacu 2 o 8", "context": "CREATE TABLE table_101336_1 (notation VARCHAR, crystal_structure VARCHAR, formula VARCHAR)"}, {"answer": "SELECT no_of_cu_o_planes_in_unit_cell FROM table_101336_1 WHERE formula = \"Tl 2 Ba 2 CuO 6\"", "question": "How many times is the formula tl 2 ba 2 cuo 6?", "context": "CREATE TABLE table_101336_1 (no_of_cu_o_planes_in_unit_cell VARCHAR, formula VARCHAR)"}, {"answer": "SELECT crystal_structure FROM table_101336_1 WHERE formula = \"YBa 2 Cu 3 O 7\"", "question": "What is the crystal structure for the formula yba 2 cu 3 o 7?", "context": "CREATE TABLE table_101336_1 (crystal_structure VARCHAR, formula VARCHAR)"}, {"answer": "SELECT COUNT(t_c__k_) FROM table_101336_1 WHERE notation = \"Tl-2212\"", "question": "What is the number for t c (k) when the notation is tl-2212?", "context": "CREATE TABLE table_101336_1 (t_c__k_ VARCHAR, notation VARCHAR)"}, {"answer": "SELECT COUNT(2010 AS _est) FROM table_10138926_1 WHERE city = \"Cremona\"", "question": "How many 2010 estimations have been done in the city of Cremona?", "context": "CREATE TABLE table_10138926_1 (city VARCHAR)"}, {"answer": "SELECT MAX(1991 AS _census) FROM table_10138926_1 WHERE city = \"Carpi\"", "question": "What's the 1991 census of the city of Carpi?", "context": "CREATE TABLE table_10138926_1 (city VARCHAR)"}, {"answer": "SELECT COUNT(2001 AS _census) FROM table_10138926_1 WHERE _number = 13", "question": "How many 2001 censuses are there on number 13?", "context": "CREATE TABLE table_10138926_1 (_number VARCHAR)"}, {"answer": "SELECT 1981 AS _census FROM table_10138926_1 WHERE city = \"Livorno\"", "question": "What's the 1981 census of Livorno?", "context": "CREATE TABLE table_10138926_1 (city VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1013129_8 WHERE player = \"Mike Loach\"", "question": "Which NHL team has player Mike Loach?", "context": "CREATE TABLE table_1013129_8 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1013129_8 WHERE player = \"Peter Strom\"", "question": "What is the NHL team that has Peter Strom?", "context": "CREATE TABLE table_1013129_8 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1013129_8 WHERE player = \"Keith McCambridge\"", "question": "What team is Keith Mccambridge on?", "context": "CREATE TABLE table_1013129_8 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_1013129_8 WHERE pick = 193", "question": "How many nationalities are the pick 193?", "context": "CREATE TABLE table_1013129_8 (nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT successor FROM table_1013168_2 WHERE date_of_successors_formal_installation = \"November 8, 1978\"", "question": "Who was the succesor that was formally installed on November 8, 1978?", "context": "CREATE TABLE table_1013168_2 (successor VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT COUNT(tonioli) FROM table_1014319_1 WHERE goodman = \"10\"", "question": "How many songs received a 10 from Goodman and were rated by Tonioli?", "context": "CREATE TABLE table_1014319_1 (tonioli VARCHAR, goodman VARCHAR)"}, {"answer": "SELECT goodman FROM table_1014319_1 WHERE total = \"31\" AND horwood = \"7\" AND result = \"Safe\"", "question": "What score did Goodman give to all songs with safe results, which received a 7 from Horwood and have a total score of 31?", "context": "CREATE TABLE table_1014319_1 (goodman VARCHAR, result VARCHAR, total VARCHAR, horwood VARCHAR)"}, {"answer": "SELECT dixon FROM table_1014319_1 WHERE dance_song = \"Samba / Young Hearts Run Free\" AND result = \"Second place\"", "question": "What score did Dixon give to the song \"samba / young hearts run free\", which was in second place?", "context": "CREATE TABLE table_1014319_1 (dixon VARCHAR, dance_song VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(goodman) FROM table_1014319_1 WHERE result = \"Second place\" AND dance_song = \"Samba / Young Hearts Run Free\"", "question": "How many scores did Goodman give to \"samba / young hearts run free\", which was in second place?", "context": "CREATE TABLE table_1014319_1 (goodman VARCHAR, result VARCHAR, dance_song VARCHAR)"}, {"answer": "SELECT year_built FROM table_1015421_1 WHERE no_built = 7", "question": "What year was number 7 built?", "context": "CREATE TABLE table_1015421_1 (year_built VARCHAR, no_built VARCHAR)"}, {"answer": "SELECT we_two FROM table_1015914_24 WHERE case_suffix = \"loc.\"", "question": "What is we two when the case/suffix is loc.?", "context": "CREATE TABLE table_1015914_24 (we_two VARCHAR, case_suffix VARCHAR)"}, {"answer": "SELECT them_two__the_two_ FROM table_1015914_24 WHERE we_two = \"ngalbelpa\"", "question": "What is them two (the two) when we two is ngalbelpa?", "context": "CREATE TABLE table_1015914_24 (them_two__the_two_ VARCHAR, we_two VARCHAR)"}, {"answer": "SELECT them_two__the_two_ FROM table_1015914_24 WHERE you_and_i = \"ng\u0153balngu\"", "question": "What is them two (the two) when you and i is ng\u0153balngu?", "context": "CREATE TABLE table_1015914_24 (them_two__the_two_ VARCHAR, you_and_i VARCHAR)"}, {"answer": "SELECT who_two FROM table_1015914_24 WHERE you_and_i = \"ng\u0153ban\"", "question": "What is who-two where you and i is ng\u0153ban?", "context": "CREATE TABLE table_1015914_24 (who_two VARCHAR, you_and_i VARCHAR)"}, {"answer": "SELECT we_two FROM table_1015914_24 WHERE you_two = \"ngipen\"", "question": "What is we two where you two is ngipen?", "context": "CREATE TABLE table_1015914_24 (we_two VARCHAR, you_two VARCHAR)"}, {"answer": "SELECT who_two FROM table_1015914_24 WHERE you_two = \"ngipelngu\"", "question": "What is who-two when you two is ngipelngu?", "context": "CREATE TABLE table_1015914_24 (who_two VARCHAR, you_two VARCHAR)"}, {"answer": "SELECT points FROM table_10160447_1 WHERE driver = \"Mark Martin\"", "question": "what's the\u00a0points\u00a0with\u00a0driver\u00a0 mark martin", "context": "CREATE TABLE table_10160447_1 (points VARCHAR, driver VARCHAR)"}, {"answer": "SELECT points FROM table_10160447_1 WHERE driver = \"Rusty Wallace\"", "question": "what's the\u00a0points\u00a0with\u00a0driver\u00a0 rusty wallace", "context": "CREATE TABLE table_10160447_1 (points VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_10160447_1 WHERE driver = \"Robby Gordon\"", "question": "what's the total number of\u00a0position\u00a0with\u00a0driver\u00a0 robby gordon", "context": "CREATE TABLE table_10160447_1 (position VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_10160447_1 WHERE winnings = \"$50,000\"", "question": "what's the maximum\u00a0position\u00a0with\u00a0winnings\u00a0 $50,000", "context": "CREATE TABLE table_10160447_1 (position INTEGER, winnings VARCHAR)"}, {"answer": "SELECT actors_name FROM table_10236830_6 WHERE film_name = \"Anastasiya Slutskaya\"", "question": "What actor was nominted for an award in the film Anastasiya Slutskaya?", "context": "CREATE TABLE table_10236830_6 (actors_name VARCHAR, film_name VARCHAR)"}, {"answer": "SELECT nomination FROM table_10236830_6 WHERE film_name = \"Falling Up\"", "question": "What was the film Falling up nominated for?", "context": "CREATE TABLE table_10236830_6 (nomination VARCHAR, film_name VARCHAR)"}, {"answer": "SELECT actors_name FROM table_10236830_6 WHERE film_name = \"Chopin: Desire for Love\" AND nomination = \"Best Actress in a Leading Role\"", "question": "What is the name of the actress that was nominated for best actress in a leading role in the film Chopin: Desire for love?", "context": "CREATE TABLE table_10236830_6 (actors_name VARCHAR, film_name VARCHAR, nomination VARCHAR)"}, {"answer": "SELECT film_name FROM table_10236830_6 WHERE actors_name = \"Alla Sergiyko\"", "question": "Which films does the actor Alla Sergiyko star in?", "context": "CREATE TABLE table_10236830_6 (film_name VARCHAR, actors_name VARCHAR)"}, {"answer": "SELECT nomination FROM table_10236830_6 WHERE film_name = \"27 Stolen Kisses\"", "question": "Which nominations was the film 27 Stolen Kisses nominated for?", "context": "CREATE TABLE table_10236830_6 (nomination VARCHAR, film_name VARCHAR)"}, {"answer": "SELECT actors_name FROM table_10236830_4 WHERE nomination = \"Best Actor in a Supporting Role\" AND country = \"Serbia\"", "question": "Which actor from Serbia was nominated for best actor in a supporting role?", "context": "CREATE TABLE table_10236830_4 (actors_name VARCHAR, nomination VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_10236830_4 WHERE actors_name = \"Vsevolod Shilovskiy\"", "question": "Vsevolod Shilovskiy is from what country?", "context": "CREATE TABLE table_10236830_4 (country VARCHAR, actors_name VARCHAR)"}, {"answer": "SELECT nomination FROM table_10236830_4 WHERE film_name = \"Totalitarian Romance\"", "question": "Which nominations are connected to the film Totalitarian Romance?", "context": "CREATE TABLE table_10236830_4 (nomination VARCHAR, film_name VARCHAR)"}, {"answer": "SELECT nomination FROM table_10236830_4 WHERE director = \"Srdjan Dragojevic\"", "question": "Srdjan Dragojevic worked on a film which earned what nomination?", "context": "CREATE TABLE table_10236830_4 (nomination VARCHAR, director VARCHAR)"}, {"answer": "SELECT actors_name FROM table_10236830_4 WHERE country = \"Ukraine\"", "question": "Which actors are from Ukraine?", "context": "CREATE TABLE table_10236830_4 (actors_name VARCHAR, country VARCHAR)"}, {"answer": "SELECT film_name FROM table_10236830_1 WHERE director = \"Vadim Ilyenko\"", "question": "What was the film that vadim ilyenko directed?", "context": "CREATE TABLE table_10236830_1 (film_name VARCHAR, director VARCHAR)"}, {"answer": "SELECT actors_name FROM table_10236830_1 WHERE director = \"Vadim Ilyenko\"", "question": "What was the actors name that vadim ilyenko directed?", "context": "CREATE TABLE table_10236830_1 (actors_name VARCHAR, director VARCHAR)"}, {"answer": "SELECT actors_name FROM table_10236830_1 WHERE film_name = \"Fuchzhou\" AND nomination = \"Best Non-Professional Actor\"", "question": "What was the actors name for fuchzhou and nomination was best non-professional actor?", "context": "CREATE TABLE table_10236830_1 (actors_name VARCHAR, film_name VARCHAR, nomination VARCHAR)"}, {"answer": "SELECT film_name FROM table_10236830_1 WHERE director = \"Michaylo Ilyenko\" AND nomination = \"Best Actor in a Supporting Role\"", "question": "What film did michaylo ilyenko make with best actor in a supporting role?", "context": "CREATE TABLE table_10236830_1 (film_name VARCHAR, director VARCHAR, nomination VARCHAR)"}, {"answer": "SELECT actors_name FROM table_10236830_1 WHERE nomination = \"Best Debut\"", "question": "What was the actor's name for best debut?", "context": "CREATE TABLE table_10236830_1 (actors_name VARCHAR, nomination VARCHAR)"}, {"answer": "SELECT COUNT(nomination) FROM table_10236830_1 WHERE actors_name = \"Natalia Raskokoha\"", "question": "What was the number of nominations for natalia raskokoha?", "context": "CREATE TABLE table_10236830_1 (nomination VARCHAR, actors_name VARCHAR)"}, {"answer": "SELECT MAX(total_goals) FROM table_10240125_1", "question": "What is the highest value of Total Goals?", "context": "CREATE TABLE table_10240125_1 (total_goals INTEGER)"}, {"answer": "SELECT MIN(fa_cup_goals) FROM table_10240125_1 WHERE fa_cup_apps = 9", "question": "When FA Cup Apps is 9 what is the smallest number of FA Cup Goals?", "context": "CREATE TABLE table_10240125_1 (fa_cup_goals INTEGER, fa_cup_apps VARCHAR)"}, {"answer": "SELECT MIN(total_goals) FROM table_10240125_1", "question": "What is the smallest number of Total Goals?", "context": "CREATE TABLE table_10240125_1 (total_goals INTEGER)"}, {"answer": "SELECT circuit FROM table_10264179_2 WHERE fastest_lap = \"Hideki Mutoh\"", "question": "What circuit was the race where Hideki Mutoh had the fastest lap?", "context": "CREATE TABLE table_10264179_2 (circuit VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT episode__number FROM table_10269427_3 WHERE production_code = 227", "question": "what is the episode # for production code 227", "context": "CREATE TABLE table_10269427_3 (episode__number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_10269427_3 WHERE written_by = \"Sib Ventress / Aydrea ten Bosch\"", "question": "who directed the movie written by is sib ventress / aydrea ten bosch", "context": "CREATE TABLE table_10269427_3 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(total_goals) FROM table_10240125_2", "question": "Whatis the number of total goals maximum?", "context": "CREATE TABLE table_10240125_2 (total_goals INTEGER)"}, {"answer": "SELECT COUNT(temp__) AS \u00b0c_ FROM table_10262329_1 WHERE adhesive_type = \"Acryl\"", "question": "HOW MANY TEMPERATURE INTERVALS ARE POSSIBLE TO USE WITH ACRYL? ", "context": "CREATE TABLE table_10262329_1 (temp__ VARCHAR, adhesive_type VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_1028356_3 WHERE partner = \"Jim Pugh\"", "question": "How many matches where played with Jim Pugh?", "context": "CREATE TABLE table_1028356_3 (opponents VARCHAR, partner VARCHAR)"}, {"answer": "SELECT score FROM table_1028356_3 WHERE partner = \"Jim Pugh\"", "question": "What is the score with partner Jim Pugh?", "context": "CREATE TABLE table_1028356_3 (score VARCHAR, partner VARCHAR)"}, {"answer": "SELECT COUNT(surface) FROM table_1028356_3 WHERE score = \"3\u20136, 7\u20136(5), 6\u20133\"", "question": "How many matched scored 3\u20136, 7\u20136(5), 6\u20133?", "context": "CREATE TABLE table_1028356_3 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT year FROM table_1028356_3 WHERE championship = \"Wimbledon (2)\"", "question": "What year was the championship in Wimbledon (2)?", "context": "CREATE TABLE table_1028356_3 (year VARCHAR, championship VARCHAR)"}, {"answer": "SELECT score FROM table_1028356_3 WHERE opponents = \"Gretchen Magers Kelly Jones\"", "question": "What is the score of the match with opponents Gretchen Magers Kelly Jones?", "context": "CREATE TABLE table_1028356_3 (score VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT COUNT(date_of_birth) FROM table_10284385_1 WHERE representative = \"Earl Hanley Beshlin\"", "question": "How many birthdays does Earl Hanley Beshlin have?", "context": "CREATE TABLE table_10284385_1 (date_of_birth VARCHAR, representative VARCHAR)"}, {"answer": "SELECT party FROM table_10284385_1 WHERE date_of_birth = \"November 10, 1880\"", "question": "Which politican party has a birthday of November 10, 1880", "context": "CREATE TABLE table_10284385_1 (party VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT representative FROM table_10284385_1 WHERE date_of_birth = \"January 31, 1866\"", "question": "Which representative has a birthday of January 31, 1866?", "context": "CREATE TABLE table_10284385_1 (representative VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT singles_w_l FROM table_10295819_1 WHERE player = \"Laurynas Grigelis\"", "question": "What is the Singles W-L for the players named  Laurynas Grigelis?", "context": "CREATE TABLE table_10295819_1 (singles_w_l VARCHAR, player VARCHAR)"}, {"answer": "SELECT current_singles_ranking FROM table_10295819_1 WHERE player = \"Mantas Bugaili\u0161kis\"", "question": "What is the Current singles ranking for the player named Mantas Bugaili\u0161kis?", "context": "CREATE TABLE table_10295819_1 (current_singles_ranking VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(1999 AS _broadway) FROM table_10312547_1 WHERE character = \"Mrs. Darling\"", "question": "How many playerd Mrs. Darling in the 1999 Broadway?", "context": "CREATE TABLE table_10312547_1 (character VARCHAR)"}, {"answer": "SELECT 1990 AS _broadway FROM table_10312547_1 WHERE character = \"Peter Pan\"", "question": "Who played Peter Pan in the 1990 Broadway?", "context": "CREATE TABLE table_10312547_1 (character VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_103084_4 WHERE bbc_one_total_viewing > 11616996.338225884", "question": "What date was BBC One total viewing greater then 11616996.338225884?", "context": "CREATE TABLE table_103084_4 (broadcast_date VARCHAR, bbc_one_total_viewing INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_103084_4 WHERE bbc_one_rank = \"20th\"", "question": "How many years did BBC One rank 20th?", "context": "CREATE TABLE table_103084_4 (year VARCHAR, bbc_one_rank VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_103084_4 WHERE bbc_two_total_viewing = \"7,530,000\"", "question": "What year was the BBC two total viewing 7,530,000?", "context": "CREATE TABLE table_103084_4 (year INTEGER, bbc_two_total_viewing VARCHAR)"}, {"answer": "SELECT COUNT AS \u2193_function___genus_\u2192 FROM table_10321124_1 WHERE escherichia = \"EspD\"", "question": " how many\u00a0\u2193 function / genus \u2192\u00a0with\u00a0escherichia\u00a0being espd", "context": "CREATE TABLE table_10321124_1 (COUNT VARCHAR, escherichia VARCHAR)"}, {"answer": "SELECT salmonella FROM table_10321124_1 WHERE escherichia = \"EspD\"", "question": "what's the\u00a0salmonella\u00a0with\u00a0escherichia\u00a0being espd", "context": "CREATE TABLE table_10321124_1 (salmonella VARCHAR, escherichia VARCHAR)"}, {"answer": "SELECT \u2193_function___genus_\u2192 FROM table_10321124_1 WHERE shigella = \"Spa32\"", "question": "what's the\u00a0\u2193 function / genus \u2192\u00a0with\u00a0shigella\u00a0being spa32", "context": "CREATE TABLE table_10321124_1 (\u2193_function___genus_\u2192 VARCHAR, shigella VARCHAR)"}, {"answer": "SELECT salmonella FROM table_10321124_1 WHERE shigella = \"IpgC\"", "question": "what's the\u00a0salmonella\u00a0with\u00a0shigella\u00a0being ipgc", "context": "CREATE TABLE table_10321124_1 (salmonella VARCHAR, shigella VARCHAR)"}, {"answer": "SELECT salmonella FROM table_10321124_1 WHERE escherichia = \"SepB (EscN)\"", "question": "what's the\u00a0salmonella\u00a0with\u00a0escherichia\u00a0being sepb (escn)", "context": "CREATE TABLE table_10321124_1 (salmonella VARCHAR, escherichia VARCHAR)"}, {"answer": "SELECT shigella FROM table_10321124_1 WHERE yersinia = \"YscP\"", "question": "what's the\u00a0shigella\u00a0with\u00a0yersinia\u00a0being yscp", "context": "CREATE TABLE table_10321124_1 (shigella VARCHAR, yersinia VARCHAR)"}, {"answer": "SELECT COUNT(original_title) FROM table_10321805_1 WHERE film_title_used_in_nomination = \"Marriage Italian-Style\"", "question": "How many original titles did Marriage Italian-Style have? ", "context": "CREATE TABLE table_10321805_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_10321805_1 WHERE original_title = \"La leggenda del santo bevitore\"", "question": "What year was a movie with the original title La Leggenda del Santo Bevitore submitted?", "context": "CREATE TABLE table_10321805_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT camp FROM table_10335_1 WHERE estimated_deaths = \"600,000\"", "question": "what's the\u00a0camp\u00a0with\u00a0estimated deaths\u00a0of 600,000", "context": "CREATE TABLE table_10335_1 (camp VARCHAR, estimated_deaths VARCHAR)"}, {"answer": "SELECT operational FROM table_10335_1 WHERE camp = \"Sajmi\u0161te\"", "question": "what's the\u00a0operational period\u00a0with\u00a0camp\u00a0 sajmi\u0161te", "context": "CREATE TABLE table_10335_1 (operational VARCHAR, camp VARCHAR)"}, {"answer": "SELECT estimated_deaths FROM table_10335_1 WHERE operational = \"17 March 1942 \u2013 end of June 1943\"", "question": "what's the\u00a0estimated deaths\u00a0with\u00a0operational period\u00a0of 17 march 1942 \u2013 end of june 1943", "context": "CREATE TABLE table_10335_1 (estimated_deaths VARCHAR, operational VARCHAR)"}, {"answer": "SELECT current_country_of_location FROM table_10335_1 WHERE operational = \"Summer of 1941 to 28 June 1944\"", "question": "what's the\u00a0current country of location\u00a0with\u00a0operational period\u00a0\u00a0of summer of 1941 to 28 june 1944", "context": "CREATE TABLE table_10335_1 (current_country_of_location VARCHAR, operational VARCHAR)"}, {"answer": "SELECT occupied_territory FROM table_10335_1 WHERE estimated_deaths = \"600,000\"", "question": "what's the\u00a0occupied territory\u00a0with\u00a0estimated deaths\u00a0of 600,000", "context": "CREATE TABLE table_10335_1 (occupied_territory VARCHAR, estimated_deaths VARCHAR)"}, {"answer": "SELECT occupied_territory FROM table_10335_1 WHERE operational = \"May 1940 \u2013 January 1945\"", "question": "what's the\u00a0occupied territory\u00a0with\u00a0operational\u00a0period of may 1940 \u2013 january 1945", "context": "CREATE TABLE table_10335_1 (occupied_territory VARCHAR, operational VARCHAR)"}, {"answer": "SELECT overall FROM table_10360823_1 WHERE college = \"Traded to the Cleveland Browns\"", "question": "Which overall pick was traded to the Cleveland Browns?", "context": "CREATE TABLE table_10360823_1 (overall VARCHAR, college VARCHAR)"}, {"answer": "SELECT round FROM table_10360823_1 WHERE overall = 240", "question": "Overall pick 240 was a pick in which round?", "context": "CREATE TABLE table_10360823_1 (round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_10360823_1 WHERE college = \"Youngstown State\"", "question": "Which overall pick number went to college at Youngstown State?", "context": "CREATE TABLE table_10360823_1 (overall INTEGER, college VARCHAR)"}, {"answer": "SELECT position FROM table_10360823_1 WHERE overall = 255", "question": "What position is played by pick 255 overall?", "context": "CREATE TABLE table_10360823_1 (position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT player_name FROM table_10360823_1 WHERE round = 17", "question": "Which player was chosen in round 17?", "context": "CREATE TABLE table_10360823_1 (player_name VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_10361453_2 WHERE record = \"7-3\"", "question": "The record of 7-3 had the largest attendance of what?", "context": "CREATE TABLE table_10361453_2 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_10361453_2 WHERE record = \"9-4\"", "question": "The record of 9-4 was against which opponent?", "context": "CREATE TABLE table_10361453_2 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_10361453_2 WHERE game = 8", "question": "The game number of 8 had a record of what?", "context": "CREATE TABLE table_10361453_2 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_10360656_1 WHERE player_name = \"Steve Stonebreaker\"", "question": "What round was Steve Stonebreaker drafted?", "context": "CREATE TABLE table_10360656_1 (round INTEGER, player_name VARCHAR)"}, {"answer": "SELECT MIN(choice) FROM table_10360656_1", "question": "Who was the top picki n the draft?", "context": "CREATE TABLE table_10360656_1 (choice INTEGER)"}, {"answer": "SELECT choice FROM table_10360656_1 WHERE player_name = \"Bill Hill\"", "question": "What round was Bill Hill drafted?", "context": "CREATE TABLE table_10360656_1 (choice VARCHAR, player_name VARCHAR)"}, {"answer": "SELECT player_name FROM table_10360656_1 WHERE position = \"Quarterback\"", "question": "What was the name of the quarterback drafted?", "context": "CREATE TABLE table_10360656_1 (player_name VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_10361625_1 WHERE player_name = \"Keith Hartwig\"", "question": "Where is the college where Keith Hartwig plays?", "context": "CREATE TABLE table_10361625_1 (college VARCHAR, player_name VARCHAR)"}, {"answer": "SELECT player_name FROM table_10361625_1 WHERE position = \"Linebacker\" AND college = \"Illinois\"", "question": "What is the name of the linebacker at Illinois college?", "context": "CREATE TABLE table_10361625_1 (player_name VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_10361625_1 WHERE overall = 83", "question": "What is the greatest round of overall 83?", "context": "CREATE TABLE table_10361625_1 (round INTEGER, overall VARCHAR)"}, {"answer": "SELECT round FROM table_10361625_1 WHERE player_name = \"Tommy Kramer\"", "question": "Which round did Tommy Kramer play in>", "context": "CREATE TABLE table_10361625_1 (round VARCHAR, player_name VARCHAR)"}, {"answer": "SELECT overall FROM table_10361625_1 WHERE college = \"Rice\"", "question": "What is Rice's collage score?", "context": "CREATE TABLE table_10361625_1 (overall VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_10361230_1 WHERE position = \"Defensive Back\"", "question": "Where does the defensive back position appear first?", "context": "CREATE TABLE table_10361230_1 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_10361230_1 WHERE player_name = \"Bruce Cerone\"", "question": "What is Bruce Cerone overall?", "context": "CREATE TABLE table_10361230_1 (overall INTEGER, player_name VARCHAR)"}, {"answer": "SELECT player_name FROM table_10361230_1 WHERE college = \"Emporia State\"", "question": "Which player went to Emporia State?", "context": "CREATE TABLE table_10361230_1 (player_name VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(choice) FROM table_10361230_1", "question": "What is the highest choice?", "context": "CREATE TABLE table_10361230_1 (choice INTEGER)"}, {"answer": "SELECT college FROM table_10361230_1 WHERE player_name = \"Bill Cappleman\"", "question": "What college did Bill Cappleman go to?", "context": "CREATE TABLE table_10361230_1 (college VARCHAR, player_name VARCHAR)"}, {"answer": "SELECT bullet_tip_color FROM table_1036189_1 WHERE headstamp_id = \"H2\"", "question": "For the headstamp id of h2, what was the color of the bullet tip?", "context": "CREATE TABLE table_1036189_1 (bullet_tip_color VARCHAR, headstamp_id VARCHAR)"}, {"answer": "SELECT other_features FROM table_1036189_1 WHERE functional_type = \"Light Ball\"", "question": "For the functional type of light ball, what were the other features?", "context": "CREATE TABLE table_1036189_1 (other_features VARCHAR, functional_type VARCHAR)"}, {"answer": "SELECT COUNT(primer_annulus_color) FROM table_1036189_1 WHERE bullet_tip_color = \"White\"", "question": "How many primers annulus colors were there when the color of the bullet tip was white?", "context": "CREATE TABLE table_1036189_1 (primer_annulus_color VARCHAR, bullet_tip_color VARCHAR)"}, {"answer": "SELECT COUNT(bullet_tip_color) FROM table_1036189_1 WHERE other_features = \"Blue band on case base\"", "question": "How many bullet tips colors had other features of a blue band on case base?", "context": "CREATE TABLE table_1036189_1 (bullet_tip_color VARCHAR, other_features VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_1037590_1 WHERE completion__percentage = \"56.0\"", "question": "How many touchdowns were scored in the year with a completion percentage of 56.0?", "context": "CREATE TABLE table_1037590_1 (touchdowns INTEGER, completion__percentage VARCHAR)"}, {"answer": "SELECT COUNT(yards) FROM table_1037590_1 WHERE attempts = 348", "question": "How many years were there with 348 attempts?", "context": "CREATE TABLE table_1037590_1 (yards VARCHAR, attempts VARCHAR)"}, {"answer": "SELECT COUNT(london) FROM table_10402018_1 WHERE us_tour = \"Babs Rubenstein\"", "question": "How many characters is by Babs Rubenstein?", "context": "CREATE TABLE table_10402018_1 (london VARCHAR, us_tour VARCHAR)"}, {"answer": "SELECT toronto___broadway FROM table_10402018_1 WHERE uk_tour = \"n/a\"", "question": "Which person is in the tronto/broadway and has a uk tour of n/a", "context": "CREATE TABLE table_10402018_1 (toronto___broadway VARCHAR, uk_tour VARCHAR)"}, {"answer": "SELECT COUNT(london) FROM table_10402018_1 WHERE character = \"Frank\"", "question": "How many people play Frank in London?", "context": "CREATE TABLE table_10402018_1 (london VARCHAR, character VARCHAR)"}, {"answer": "SELECT class_aAA FROM table_10399701_2 WHERE school_year = \"2000-01\"", "question": "Who was Class AAA during the school year of 2000-01?", "context": "CREATE TABLE table_10399701_2 (class_aAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aAA FROM table_10399701_2 WHERE class_a = \"(tie) Apple Springs/Texline\"", "question": "Who was Class AAA during the same year that Class A was (tie) Apple Springs/Texline?", "context": "CREATE TABLE table_10399701_2 (class_aAA VARCHAR, class_a VARCHAR)"}, {"answer": "SELECT class_aAAAA FROM table_10399701_2 WHERE school_year = \"1995-96\"", "question": "Who was Class AAAAA during the school year of 1995-96?", "context": "CREATE TABLE table_10399701_2 (class_aAAAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT COUNT(team_record) FROM table_10392906_2 WHERE date = \"Friday, May 25\"", "question": "How many records are listed on Friday, May 25?", "context": "CREATE TABLE table_10392906_2 (team_record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_10392906_2 WHERE date = \"Saturday, June 9\"", "question": "How many opponents were played on Saturday, June 9?", "context": "CREATE TABLE table_10392906_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_10392906_2 WHERE game_site = \"Commerzbank-Arena\"", "question": "In what week was the first game played at the Commerzbank-Arena?", "context": "CREATE TABLE table_10392906_2 (week INTEGER, game_site VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_10413597_5 WHERE setting = \"1544\"", "question": "What was the original air date of an episode set in 1544?", "context": "CREATE TABLE table_10413597_5 (original_air_date VARCHAR, setting VARCHAR)"}, {"answer": "SELECT COUNT(setting) FROM table_10413597_5 WHERE no_in_series = 29", "question": "How many settings where there for episode 29 of the season?", "context": "CREATE TABLE table_10413597_5 (setting VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_10413597_5 WHERE setting = \"Winter 1541/February 13, 1542\"", "question": "Who wrote the episode that was set in winter 1541/february 13, 1542?", "context": "CREATE TABLE table_10413597_5 (written_by VARCHAR, setting VARCHAR)"}, {"answer": "SELECT track AS title FROM table_10416547_1 WHERE duration = \"5:30\"", "question": "What is the name of the track that lasts 5:30?", "context": "CREATE TABLE table_10416547_1 (track VARCHAR, duration VARCHAR)"}, {"answer": "SELECT duration FROM table_10416547_1 WHERE major_instrument_s_ = \"Piano\" AND date = \"2004-02-03\"", "question": "What is the duration of the song where the major instrument is the piano and the date is 2004-02-03?", "context": "CREATE TABLE table_10416547_1 (duration VARCHAR, major_instrument_s_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(lyricist) FROM table_10416547_1 WHERE lyrics_theme_style = \"Romance\" AND duration = \"3:50\"", "question": "What is the total number of lyricist where the lyrics theme is romance and the song lasts 3:50?", "context": "CREATE TABLE table_10416547_1 (lyricist VARCHAR, lyrics_theme_style VARCHAR, duration VARCHAR)"}, {"answer": "SELECT major_instrument_s_ FROM table_10416547_1 WHERE duration = \"4:32\"", "question": "What is the major instrument of the song that lasts 4:32? ", "context": "CREATE TABLE table_10416547_1 (major_instrument_s_ VARCHAR, duration VARCHAR)"}, {"answer": "SELECT COUNT(music_genre_style) FROM table_10416547_1 WHERE lyrics_theme_style = \"Detective story\"", "question": "What is the total number of music genre/style in which the lyrics are a detective story?", "context": "CREATE TABLE table_10416547_1 (music_genre_style VARCHAR, lyrics_theme_style VARCHAR)"}, {"answer": "SELECT playoffs FROM table_1046071_1 WHERE league = \"USL Pro Select league\"", "question": "What is the playoffs for the usl pro select league?", "context": "CREATE TABLE table_1046071_1 (playoffs VARCHAR, league VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_1046071_1 WHERE open_cup = \"1st Round\"", "question": "What is the number of the division for the 1st round?", "context": "CREATE TABLE table_1046071_1 (division VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT team FROM table_10420426_1 WHERE series = \"Formula Renault 2.0 NEC\"", "question": "What was the team where series is formula renault 2.0 nec?", "context": "CREATE TABLE table_10420426_1 (team VARCHAR, series VARCHAR)"}, {"answer": "SELECT COUNT(poles) FROM table_10420426_1 WHERE team = \"Arden International\"", "question": "What is the total number of poles for arden international?", "context": "CREATE TABLE table_10420426_1 (poles VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_10420426_1 WHERE series = \"GP2 series\" AND team = \"Racing Engineering\"", "question": "What is the number of wins for gp2 series for racing engineering?", "context": "CREATE TABLE table_10420426_1 (wins VARCHAR, series VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(podiums) FROM table_10420426_1 WHERE season = \"2010\" AND series = \"Campionato Italiano Superstars\"", "question": "What is the number of podiums for season 2010 for campionato italiano superstars.", "context": "CREATE TABLE table_10420426_1 (podiums VARCHAR, season VARCHAR, series VARCHAR)"}, {"answer": "SELECT podiums FROM table_10420426_1 WHERE points = 144", "question": "What is the podium for 144 points?", "context": "CREATE TABLE table_10420426_1 (podiums VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(writer) FROM table_10470082_3 WHERE us_air_date = \"September 25, 1993\"", "question": "How many writers had an US air date of september 25, 1993?", "context": "CREATE TABLE table_10470082_3 (writer VARCHAR, us_air_date VARCHAR)"}, {"answer": "SELECT COUNT(villains) FROM table_10470082_3 WHERE no = 25", "question": "How many villians were in No. 25?", "context": "CREATE TABLE table_10470082_3 (villains VARCHAR, no VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_1046454_1 WHERE regular_season = \"4th, Northwest\"", "question": "what being the maximum\u00a0year\u00a0where\u00a0regular season\u00a0is 4th, northwest", "context": "CREATE TABLE table_1046454_1 (year INTEGER, regular_season VARCHAR)"}, {"answer": "SELECT COUNT(playoffs) FROM table_1046454_1 WHERE regular_season = \"6th, Southwest\"", "question": "what is the total number of\u00a0playoffs\u00a0where\u00a0regular season\u00a0is 6th, southwest", "context": "CREATE TABLE table_1046454_1 (playoffs VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT MAX(division) FROM table_1046454_1", "question": "what is the maximum\u00a0division", "context": "CREATE TABLE table_1046454_1 (division INTEGER)"}, {"answer": "SELECT league FROM table_1046454_1 WHERE regular_season = \"2nd, Northwest\"", "question": " what's the\u00a0league\u00a0where\u00a0regular season\u00a0is 2nd, northwest", "context": "CREATE TABLE table_1046454_1 (league VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT regular_season FROM table_1046454_1 WHERE year = 2011", "question": "what are all the regular season where year is 2011", "context": "CREATE TABLE table_1046454_1 (regular_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_10470082_5 WHERE _number = 11", "question": "How many titles have the number 11", "context": "CREATE TABLE table_10470082_5 (title VARCHAR, _number VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_10470082_5 WHERE villains = \"Mrs. Briar\"", "question": "How many have Mrs. briar as a villain", "context": "CREATE TABLE table_10470082_5 (no VARCHAR, villains VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_10470082_5 WHERE _number = 8", "question": "how many have the number 8", "context": "CREATE TABLE table_10470082_5 (no VARCHAR, _number VARCHAR)"}, {"answer": "SELECT title FROM table_10470082_6 WHERE storyteller = \"Kiki\" AND director = \"Will Dixon\"", "question": "What is the name of the episode told by Kiki and directed by Will Dixon?", "context": "CREATE TABLE table_10470082_6 (title VARCHAR, storyteller VARCHAR, director VARCHAR)"}, {"answer": "SELECT writer FROM table_10470082_6 WHERE _number = 3", "question": "Who wrote Episode #3?", "context": "CREATE TABLE table_10470082_6 (writer VARCHAR, _number VARCHAR)"}, {"answer": "SELECT villains FROM table_10470082_7 WHERE storyteller = \"Megan\" AND director = \"Lorette LeBlanc\"", "question": "Who are the villains in the episodes where Megan is the storyteller and Lorette LeBlanc is the director?", "context": "CREATE TABLE table_10470082_7 (villains VARCHAR, storyteller VARCHAR, director VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_10470082_7 WHERE writer = \"Allison Lea Bingeman\"", "question": "What is the largest # for an episode that was written by Allison Lea Bingeman?", "context": "CREATE TABLE table_10470082_7 (_number INTEGER, writer VARCHAR)"}, {"answer": "SELECT species FROM table_10477224_1 WHERE petal_width = \"2.0\" AND petal_length = \"4.9\"", "question": "Name the species when petal width is 2.0 and petal length is 4.9", "context": "CREATE TABLE table_10477224_1 (species VARCHAR, petal_width VARCHAR, petal_length VARCHAR)"}, {"answer": "SELECT sepal_width FROM table_10477224_1 WHERE species = \"I.virginica\" AND petal_length = \"5.1\"", "question": "Name the sepal width for i.virginica with petal length of 5.1", "context": "CREATE TABLE table_10477224_1 (sepal_width VARCHAR, species VARCHAR, petal_length VARCHAR)"}, {"answer": "SELECT COUNT(species) FROM table_10477224_1 WHERE sepal_width = \"3.4\" AND sepal_length = \"5.4\"", "question": "Name the number of species with sepal width of 3.4 and sepal length of 5.4", "context": "CREATE TABLE table_10477224_1 (species VARCHAR, sepal_width VARCHAR, sepal_length VARCHAR)"}, {"answer": "SELECT sepal_length FROM table_10477224_1 WHERE sepal_width = \"2.8\" AND petal_length = \"5.1\"", "question": "Name the sepal length for sepal width of 2.8 and petal length of 5.1", "context": "CREATE TABLE table_10477224_1 (sepal_length VARCHAR, sepal_width VARCHAR, petal_length VARCHAR)"}, {"answer": "SELECT sepal_width FROM table_10477224_1 WHERE sepal_length = \"6.5\" AND petal_width = \"2.2\"", "question": "Name the sepal width when sepal length is 6.5 and petal width is 2.2", "context": "CREATE TABLE table_10477224_1 (sepal_width VARCHAR, sepal_length VARCHAR, petal_width VARCHAR)"}, {"answer": "SELECT sepal_length FROM table_10477224_1 WHERE sepal_width = \"2.9\" AND petal_width = \"1.3\"", "question": "Name the sepal lengh when sepal width is 2.9 and petal width 1.3", "context": "CREATE TABLE table_10477224_1 (sepal_length VARCHAR, sepal_width VARCHAR, petal_width VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_10470082_4 WHERE _number = 1", "question": "Who is the director and what number is the episode for episode #1 of Are You Afraid of the Dark season 3?", "context": "CREATE TABLE table_10470082_4 (director VARCHAR, _number VARCHAR)"}, {"answer": "SELECT director FROM table_10470082_4 WHERE writer = \"Scott Peters\"", "question": "Who is the director of the episode whom Scott Peters is the writer?", "context": "CREATE TABLE table_10470082_4 (director VARCHAR, writer VARCHAR)"}, {"answer": "SELECT villains FROM table_10470082_4 WHERE _number = 7", "question": "Who is the villain in episode #7?", "context": "CREATE TABLE table_10470082_4 (villains VARCHAR, _number VARCHAR)"}, {"answer": "SELECT COUNT(writer) FROM table_10470082_8 WHERE _number = 1", "question": "Who wrote episode #1 in season 7?", "context": "CREATE TABLE table_10470082_8 (writer VARCHAR, _number VARCHAR)"}, {"answer": "SELECT us_air_date FROM table_10470082_8 WHERE writer = \"Jim Morris\"", "question": "When did the episode written by Jim Morris air?", "context": "CREATE TABLE table_10470082_8 (us_air_date VARCHAR, writer VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_10527215_3 WHERE name = \"Datsun Twin 200\"", "question": "What was Datsun Twin 200's fastest lap?", "context": "CREATE TABLE table_10527215_3 (fastest_lap VARCHAR, name VARCHAR)"}, {"answer": "SELECT report FROM table_10527215_3 WHERE name = \"True Value 500\"", "question": "What's the report for the True Value 500?", "context": "CREATE TABLE table_10527215_3 (report VARCHAR, name VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_10527215_3 WHERE winning_driver = \"Johnny Rutherford\" AND pole_position = \"Al Unser\"", "question": "What was Johnny Rutherford's fastest lap while Al Unser was the pole position?", "context": "CREATE TABLE table_10527215_3 (fastest_lap VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT COUNT(report) FROM table_10527215_3 WHERE pole_position = \"Al Unser\" AND winning_team = \"Penske Racing\"", "question": "What's the report on Penske Racing winning while the pole position was Al Unser?", "context": "CREATE TABLE table_10527215_3 (report VARCHAR, pole_position VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT country FROM table_104858_1 WHERE year_current_scouting_organization_joined_wosm = \"1930\" AND year_member_organization_was_founded = \"1926\"", "question": "Which countries have a scouting organization that was founded in 1926, and joined WOSM in 1930?", "context": "CREATE TABLE table_104858_1 (country VARCHAR, year_current_scouting_organization_joined_wosm VARCHAR, year_member_organization_was_founded VARCHAR)"}, {"answer": "SELECT admits_boys_girls FROM table_104858_1 WHERE country = \"Venezuela\"", "question": "Does Venezuela admit only boys, only girls, or both?", "context": "CREATE TABLE table_104858_1 (admits_boys_girls VARCHAR, country VARCHAR)"}, {"answer": "SELECT name_of_member_organization FROM table_104858_1 WHERE year_member_organization_was_founded = \"1972\" AND year_current_scouting_organization_joined_wosm = \"1977\"", "question": "Which organizations were founded in 1972, but became WOSM members until 1977?", "context": "CREATE TABLE table_104858_1 (name_of_member_organization VARCHAR, year_member_organization_was_founded VARCHAR, year_current_scouting_organization_joined_wosm VARCHAR)"}, {"answer": "SELECT admits_boys_girls FROM table_104858_1 WHERE name_of_member_organization = \"The Scout Association of Hong Kong\"", "question": "Does the Scout Association of Hong Kong admit boys, girls, or both?", "context": "CREATE TABLE table_104858_1 (admits_boys_girls VARCHAR, name_of_member_organization VARCHAR)"}, {"answer": "SELECT admits_boys_girls FROM table_104858_1 WHERE year_member_organization_was_founded = \"1912\" AND name_of_member_organization = \"The Ghana Scout Association\"", "question": "Does the Ghana Scout Association (founded in 1912) admit boys, girls, or both?", "context": "CREATE TABLE table_104858_1 (admits_boys_girls VARCHAR, year_member_organization_was_founded VARCHAR, name_of_member_organization VARCHAR)"}, {"answer": "SELECT MAX(model) FROM table_10528691_4 WHERE introduction = \"May 1999\"", "question": "What is the model number introduced May 1999?", "context": "CREATE TABLE table_10528691_4 (model INTEGER, introduction VARCHAR)"}, {"answer": "SELECT print_resolution__dpi__resolution_is_given_in_dots_per_inch__dpi_ FROM table_10528691_4 WHERE introduction = \"December 2002\"", "question": "What is the print resolution (FPI) for December 2002?", "context": "CREATE TABLE table_10528691_4 (print_resolution__dpi__resolution_is_given_in_dots_per_inch__dpi_ VARCHAR, introduction VARCHAR)"}, {"answer": "SELECT maximum_memory FROM table_10528691_4 WHERE discontinued = \"November 2001\"", "question": "What is the maximum memory for the model discontinued in November 2001?", "context": "CREATE TABLE table_10528691_4 (maximum_memory VARCHAR, discontinued VARCHAR)"}, {"answer": "SELECT main_presenters FROM table_1053802_1 WHERE local_title = \"La Granja\"", "question": "What is main presenters of La Granja?", "context": "CREATE TABLE table_1053802_1 (main_presenters VARCHAR, local_title VARCHAR)"}, {"answer": "SELECT main_presenters FROM table_1053802_1 WHERE region_country = \"Bulgaria\"", "question": "What is the main presenter of bulgaria?", "context": "CREATE TABLE table_1053802_1 (main_presenters VARCHAR, region_country VARCHAR)"}, {"answer": "SELECT COUNT(winners) FROM table_1053802_1 WHERE local_title = \"Farma\"", "question": "How many winners are there of farma?", "context": "CREATE TABLE table_1053802_1 (winners VARCHAR, local_title VARCHAR)"}, {"answer": "SELECT MAX(cup_goals) FROM table_10556257_1 WHERE season = \"1911-12\"", "question": "What is the most cup goals for seasson 1911-12?", "context": "CREATE TABLE table_10556257_1 (cup_goals INTEGER, season VARCHAR)"}, {"answer": "SELECT league_apps FROM table_10556257_1 WHERE season = \"1923-24\"", "question": "What is the league apps for season 1923-24?", "context": "CREATE TABLE table_10556257_1 (league_apps VARCHAR, season VARCHAR)"}, {"answer": "SELECT team FROM table_10556257_1 WHERE season = \"1911-12\"", "question": "What is the team for season 1911-12?", "context": "CREATE TABLE table_10556257_1 (team VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_10566855_1 WHERE score = \"10.16 (76) \u2013 9.22 (76)\"", "question": "what's the minimum\u00a0attendance\u00a0with\u00a0score\u00a0 10.16 (76) \u2013 9.22 (76)", "context": "CREATE TABLE table_10566855_1 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT premier FROM table_10566855_1 WHERE season = 1970", "question": "who's the\u00a0premier\u00a0with\u00a0in 1970", "context": "CREATE TABLE table_10566855_1 (premier VARCHAR, season VARCHAR)"}, {"answer": "SELECT runner_up FROM table_10566855_1 WHERE premier = \"Richmond\"", "question": "who are all the runner-up for premier in richmond", "context": "CREATE TABLE table_10566855_1 (runner_up VARCHAR, premier VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_10566855_1 WHERE score = \"8.16 (64) \u2013 8.12 (60)\"", "question": "what is the minimum attendance with score 8.16 (64) \u2013 8.12 (60)", "context": "CREATE TABLE table_10566855_1 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT COUNT(milepost) FROM table_10568553_1 WHERE street_names = \"Anne Street\"", "question": "How many mileposts are there on Anne Street?", "context": "CREATE TABLE table_10568553_1 (milepost VARCHAR, street_names VARCHAR)"}, {"answer": "SELECT street_names FROM table_10568553_1 WHERE milepost = \"12.2\"", "question": "Which street is 12.2 miles long?", "context": "CREATE TABLE table_10568553_1 (street_names VARCHAR, milepost VARCHAR)"}, {"answer": "SELECT location FROM table_10568553_1 WHERE roads_intersected = \"Route 24\"", "question": "Where does Route 24 intersect?", "context": "CREATE TABLE table_10568553_1 (location VARCHAR, roads_intersected VARCHAR)"}, {"answer": "SELECT location FROM table_10568553_1 WHERE milepost = \"12.8\"", "question": "Where is milepost 12.8?", "context": "CREATE TABLE table_10568553_1 (location VARCHAR, milepost VARCHAR)"}, {"answer": "SELECT MIN(2001 AS _02) FROM table_1057262_1 WHERE commodity = \"Wool\"", "question": "What is the minimum amount for wool for 2001-02?", "context": "CREATE TABLE table_1057262_1 (commodity VARCHAR)"}, {"answer": "SELECT operational_owner_s_ FROM table_1057316_1 WHERE build_date = \"April 1892\"", "question": "Who were the operational owners during the construction date of April 1892?", "context": "CREATE TABLE table_1057316_1 (operational_owner_s_ VARCHAR, build_date VARCHAR)"}, {"answer": "SELECT disposition FROM table_1057316_1 WHERE operational_owner_s_ = \"Colorado and Southern Railway #9\"", "question": "Where can you find Colorado and Southern Railway #9?", "context": "CREATE TABLE table_1057316_1 (disposition VARCHAR, operational_owner_s_ VARCHAR)"}, {"answer": "SELECT wheel_arrangement___whyte_notation__ FROM table_1057316_1 WHERE disposition = \"Riverdale, Georgia\"", "question": "What is the wheel arrangement for the train in Riverdale, Georgia?", "context": "CREATE TABLE table_1057316_1 (wheel_arrangement___whyte_notation__ VARCHAR, disposition VARCHAR)"}, {"answer": "SELECT build_date FROM table_1057316_1 WHERE serial_number = \"2053\"", "question": "When was the train 2053 built?", "context": "CREATE TABLE table_1057316_1 (build_date VARCHAR, serial_number VARCHAR)"}, {"answer": "SELECT COUNT(wheel_arrangement___whyte_notation__) FROM table_1057316_1 WHERE operational_owner_s_ = \"Texas and New Orleans Railroad #319\"", "question": "How many wheels does the train owned by Texas and New Orleans Railroad #319 have?", "context": "CREATE TABLE table_1057316_1 (wheel_arrangement___whyte_notation__ VARCHAR, operational_owner_s_ VARCHAR)"}, {"answer": "SELECT institution FROM table_10577579_3 WHERE men\u2019s_nickname = \"Blazers\"", "question": "Which college has the men's nickname of the blazers?", "context": "CREATE TABLE table_10577579_3 (institution VARCHAR, men\u2019s_nickname VARCHAR)"}, {"answer": "SELECT joined FROM table_10577579_3 WHERE women\u2019s_nickname = \"Wolfpack\"", "question": "Name the joined for the wolfpack women's nickname", "context": "CREATE TABLE table_10577579_3 (joined VARCHAR, women\u2019s_nickname VARCHAR)"}, {"answer": "SELECT left FROM table_10577579_3 WHERE women\u2019s_nickname = \"Lady Pilots\"", "question": "Name the left of the Lady Pilots.", "context": "CREATE TABLE table_10577579_3 (left VARCHAR, women\u2019s_nickname VARCHAR)"}, {"answer": "SELECT women\u2019s_nickname FROM table_10577579_3 WHERE enrollment = 1500 AND location = \"Mobile, Alabama\"", "question": "Name the women's nickname when the enrollment is 1500 in mobile, Alabama.", "context": "CREATE TABLE table_10577579_3 (women\u2019s_nickname VARCHAR, enrollment VARCHAR, location VARCHAR)"}, {"answer": "SELECT current_conference FROM table_10577579_3 WHERE location = \"Jackson, Mississippi\"", "question": "Which conference is in Jackson, Mississippi?", "context": "CREATE TABLE table_10577579_3 (current_conference VARCHAR, location VARCHAR)"}, {"answer": "SELECT men\u2019s_nickname FROM table_10577579_3 WHERE women\u2019s_nickname = \"Lady Wildcats\"", "question": "What is the men's nickname at the school that has the lady wildcats women's nickname?", "context": "CREATE TABLE table_10577579_3 (men\u2019s_nickname VARCHAR, women\u2019s_nickname VARCHAR)"}, {"answer": "SELECT mens_nickname FROM table_10577579_2 WHERE location = \"Jacksonville, Florida\"", "question": "What is the Mens Nickname for the member location of Jacksonville, florida?", "context": "CREATE TABLE table_10577579_2 (mens_nickname VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_10577579_2 WHERE founded = 1866 AND type = \"Private/(African Methodist)\"", "question": "What is the enrollment for the institution that was founded in 1866 and is a private/(african methodist) type?", "context": "CREATE TABLE table_10577579_2 (enrollment INTEGER, founded VARCHAR, type VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_10577579_2 WHERE location = \"Nashville, Tennessee\"", "question": "That is the year founded for the institution location of Nashville, Tennessee?", "context": "CREATE TABLE table_10577579_2 (founded INTEGER, location VARCHAR)"}, {"answer": "SELECT joined FROM table_10577579_2 WHERE institution = \"Tougaloo College\"", "question": "What is the year the institution Tougaloo College joined?", "context": "CREATE TABLE table_10577579_2 (joined VARCHAR, institution VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_10592536_8 WHERE date_of_appointment = \"28 November 2007\" AND replaced_by = \"Alex McLeish\"", "question": "What is the date of vacancy when the date of appointment is 28 november 2007 and replaced by is alex mcleish?", "context": "CREATE TABLE table_10592536_8 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_10592536_8 WHERE date_of_vacancy = \"21 December 2007\"", "question": "What is the date of appointment when the date of vacancy is 21 december 2007?", "context": "CREATE TABLE table_10592536_8 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_10592536_8 WHERE team = \"Wigan Athletic\"", "question": "Who replaced when team is wigan athletic?", "context": "CREATE TABLE table_10592536_8 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_10592536_8 WHERE team = \"Manchester City\" AND replaced_by = \"Mark Hughes\"", "question": "What is the date of vacancy when the team is manchester city and replaced by is mark hughes?", "context": "CREATE TABLE table_10592536_8 (date_of_vacancy VARCHAR, team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_10592536_8 WHERE replaced_by = \"Roy Hodgson\"", "question": "What is the date of appointment when replaced by is roy hodgson?", "context": "CREATE TABLE table_10592536_8 (date_of_appointment VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_10592536_8 WHERE position_in_table = \"Pre-season\"", "question": "Who replaced when position in table is pre-season?", "context": "CREATE TABLE table_10592536_8 (replaced_by VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT COUNT(play_off) FROM table_1059743_1 WHERE points = \"813.5\"", "question": "How many games had a score value of 813.5 in post-season play?", "context": "CREATE TABLE table_1059743_1 (play_off VARCHAR, points VARCHAR)"}, {"answer": "SELECT play_off FROM table_1059743_1 WHERE points = \"860.5\"", "question": "Did any team score games that totaled up to 860.5?", "context": "CREATE TABLE table_1059743_1 (play_off VARCHAR, points VARCHAR)"}, {"answer": "SELECT score FROM table_10595672_1 WHERE record = \"6-9\"", "question": "What was the score of the game when the team reached a record of 6-9?", "context": "CREATE TABLE table_10595672_1 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT type FROM table_10581768_2 WHERE institution = \"Point Park University\"", "question": "What type institution is point park university", "context": "CREATE TABLE table_10581768_2 (type VARCHAR, institution VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_10581768_2 WHERE type = \"Private\" AND location = \"Wilmore, Kentucky\"", "question": "How many institutions are located in wilmore, kentucky and private", "context": "CREATE TABLE table_10581768_2 (founded INTEGER, type VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_10581768_2 WHERE institution = \"Carlow University 1\"", "question": "how many founded dates are listed for carlow university 1", "context": "CREATE TABLE table_10581768_2 (founded VARCHAR, institution VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_10610087_3 WHERE no_in_season = 9", "question": "what is the original air date of the episode no in season 9?", "context": "CREATE TABLE table_10610087_3 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT title FROM table_10610087_3 WHERE written_by = \"Denis Leary, Peter Tolan and Evan Reilly\"", "question": "What is the title of the episode written by denis leary, peter tolan and evan reilly?", "context": "CREATE TABLE table_10610087_3 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT dates_active FROM table_10602294_1 WHERE name = \"Kamba\"", "question": "When was Kamba active?", "context": "CREATE TABLE table_10602294_1 (dates_active VARCHAR, name VARCHAR)"}, {"answer": "SELECT pressure FROM table_10602294_1 WHERE deaths = \"95km/h (60mph)\"", "question": "What was the cyclone's pressure in the storm that death was equal to 95km/h (60mph)?", "context": "CREATE TABLE table_10602294_1 (pressure VARCHAR, deaths VARCHAR)"}, {"answer": "SELECT dates_active FROM table_10602294_1 WHERE deaths = \"185km/h (115mph)\"", "question": "What were the active dates for the storm that had 185km/h (115mph) deaths?", "context": "CREATE TABLE table_10602294_1 (dates_active VARCHAR, deaths VARCHAR)"}, {"answer": "SELECT damage__usd_ FROM table_10602294_1 WHERE pressure = \"1003hPa (29.62inHg)\"", "question": "What was the damage (usd) from the cyclones that measured 1003hPa (29.62inHg) pressure?", "context": "CREATE TABLE table_10602294_1 (damage__usd_ VARCHAR, pressure VARCHAR)"}, {"answer": "SELECT average FROM table_10621256_1 WHERE high_score = 120", "question": " what's the\u00a0average\u00a0where\u00a0high score\u00a0is 120", "context": "CREATE TABLE table_10621256_1 (average VARCHAR, high_score VARCHAR)"}, {"answer": "SELECT player FROM table_10621256_1 WHERE 50 = 2 AND n_o = 0", "question": " what's the\u00a0player\u00a0where\u00a050\u00a0is 2 and\u00a0n/o\u00a0is 0", "context": "CREATE TABLE table_10621256_1 (player VARCHAR, n_o VARCHAR)"}, {"answer": "SELECT player FROM table_10621256_1 WHERE inns = 21", "question": " what's the\u00a0player\u00a0where\u00a0inns\u00a0is 21", "context": "CREATE TABLE table_10621256_1 (player VARCHAR, inns VARCHAR)"}, {"answer": "SELECT general_election FROM table_106367_2 WHERE result = \"PQ majority\" AND _percentage_of_popular_vote = \"44.75%\"", "question": "Which general election had a pq majority and a 44.75% of the popular vote?", "context": "CREATE TABLE table_106367_2 (general_election VARCHAR, result VARCHAR, _percentage_of_popular_vote VARCHAR)"}, {"answer": "SELECT MIN(_number_of_candidates) FROM table_106367_2 WHERE _number_of_seats_won = 80", "question": "What is the least number of candidates running were there when 80 seats were won?", "context": "CREATE TABLE table_106367_2 (_number_of_candidates INTEGER, _number_of_seats_won VARCHAR)"}, {"answer": "SELECT COUNT(_number_of_seats_won) FROM table_106367_2 WHERE _number_of_candidates = 125", "question": "How many seats were won in the election with 125 candidates?", "context": "CREATE TABLE table_106367_2 (_number_of_seats_won VARCHAR, _number_of_candidates VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_10647639_1", "question": "How many weeks are there?", "context": "CREATE TABLE table_10647639_1 (week INTEGER)"}, {"answer": "SELECT COUNT(attendance) FROM table_10647639_1 WHERE opponent = \"Indianapolis Colts\"", "question": "How many people attended the game against the indianapolis colts?", "context": "CREATE TABLE table_10647639_1 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_10647639_1 WHERE date = \"December 16, 1985\"", "question": "On december 16, 1985, all the records were what?", "context": "CREATE TABLE table_10647639_1 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_10646790_2 WHERE record = \"0-4\"", "question": "How many results are there for the 0-4 record?", "context": "CREATE TABLE table_10646790_2 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_10646790_2 WHERE date = \"October 11, 1969\"", "question": "How many weeks are there that include the date October 11, 1969.", "context": "CREATE TABLE table_10646790_2 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_10646790_2 WHERE date = \"November 9, 1969\"", "question": "How many weeks are there that include the date November 9, 1969.", "context": "CREATE TABLE table_10646790_2 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_10646790_2 WHERE stadium = \"War Memorial stadium\"", "question": "How many records are there at the War Memorial Stadium?", "context": "CREATE TABLE table_10646790_2 (record VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_10646790_2 WHERE date = \"December 7, 1969\"", "question": "What was the minimum attendance on December 7, 1969?", "context": "CREATE TABLE table_10646790_2 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_10647401_1 WHERE stadium = \"Memorial stadium\"", "question": "What week corresponds to the last one to be played at the memorial stadium?", "context": "CREATE TABLE table_10647401_1 (week INTEGER, stadium VARCHAR)"}, {"answer": "SELECT stadium FROM table_10647401_1 WHERE week = 5", "question": "In which stadium is the week 5 game played?", "context": "CREATE TABLE table_10647401_1 (stadium VARCHAR, week VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_10650711_1 WHERE player = \"Thane Gash\"", "question": " what is the\u00a0nfl team\u00a0where\u00a0player\u00a0is thane gash", "context": "CREATE TABLE table_10650711_1 (nfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_10650711_1 WHERE player = \"Anthony Blaylock\"", "question": "what is the maximum\u00a0pick #\u00a0where\u00a0player\u00a0is anthony blaylock", "context": "CREATE TABLE table_10650711_1 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_10650711_1 WHERE player = \"Clifford Charlton\"", "question": " what's the\u00a0nfl team\u00a0where\u00a0player\u00a0is clifford charlton", "context": "CREATE TABLE table_10650711_1 (nfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_10650711_1 WHERE player = \"Anthony Blaylock\"", "question": " what's the\u00a0position\u00a0where\u00a0player\u00a0is anthony blaylock", "context": "CREATE TABLE table_10650711_1 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_10650711_1 WHERE position = \"Defensive Tackle\"", "question": "what is the minimum\u00a0pick #\u00a0where\u00a0position\u00a0is defensive tackle", "context": "CREATE TABLE table_10650711_1 (pick__number INTEGER, position VARCHAR)"}, {"answer": "SELECT province FROM table_1067441_1 WHERE density = \"971.4\"", "question": "Which province has a density of 971.4?", "context": "CREATE TABLE table_1067441_1 (province VARCHAR, density VARCHAR)"}, {"answer": "SELECT MIN(gdp_per_cap__2003), _in_\u20ac_ FROM table_1067441_1 WHERE province = \"Friesland\"", "question": "What is Friesland's gdp per capita?", "context": "CREATE TABLE table_1067441_1 (_in_\u20ac_ VARCHAR, gdp_per_cap__2003 INTEGER, province VARCHAR)"}, {"answer": "SELECT MAX(area__km\u00b2_) FROM table_1067441_1 WHERE density = \"331.4\"", "question": "What is the area of the place that has a population density of 331.4?", "context": "CREATE TABLE table_1067441_1 (area__km\u00b2_ INTEGER, density VARCHAR)"}, {"answer": "SELECT title FROM table_10701133_1 WHERE original_air_date = \"May15,2008\"", "question": "What is the title when original air date is may15,2008?", "context": "CREATE TABLE table_10701133_1 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_10701133_1", "question": "What is the highest no. in season?", "context": "CREATE TABLE table_10701133_1 (no_in_season INTEGER)"}, {"answer": "SELECT directed_by FROM table_10701133_1 WHERE us_viewers__million_ = \"12.90\"", "question": "Who directed the episode where u.s. viewers (million) is 12.90?", "context": "CREATE TABLE table_10701133_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MIN(_number_of_ep) FROM table_1067134_1 WHERE region_2 = \"May 26, 2008\"", "question": "How many episodes aired in Region 2 beginning May 26, 2008?", "context": "CREATE TABLE table_1067134_1 (_number_of_ep INTEGER, region_2 VARCHAR)"}, {"answer": "SELECT region_2 FROM table_1067134_1 WHERE dvd_name = \"Season Six\"", "question": "What date did the DVD for season six come out in region 2?", "context": "CREATE TABLE table_1067134_1 (region_2 VARCHAR, dvd_name VARCHAR)"}, {"answer": "SELECT MIN(_number_of_ep) FROM table_1067134_1", "question": "What is the least amount of season epidsodes?", "context": "CREATE TABLE table_1067134_1 (_number_of_ep INTEGER)"}, {"answer": "SELECT dvd_name FROM table_1067134_1 WHERE region_2 = \"August 22, 2010\"", "question": "What DVD season/name for region 2 was released August 22, 2010?", "context": "CREATE TABLE table_1067134_1 (dvd_name VARCHAR, region_2 VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_10705060_1 WHERE season = \"2005\"", "question": "How many points for 2005?", "context": "CREATE TABLE table_10705060_1 (points VARCHAR, season VARCHAR)"}, {"answer": "SELECT points FROM table_10705060_1 WHERE team_name = \"DAMS\"", "question": "what is the score for the dams?", "context": "CREATE TABLE table_10705060_1 (points VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_10705060_1 WHERE season = \"2009\"", "question": "how many positions in 2009?", "context": "CREATE TABLE table_10705060_1 (position VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(poles) FROM table_10705060_1", "question": "what is the least number of poles?", "context": "CREATE TABLE table_10705060_1 (poles INTEGER)"}, {"answer": "SELECT series FROM table_10705060_1 WHERE points = 62", "question": "Which series with 62 points?", "context": "CREATE TABLE table_10705060_1 (series VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_10705060_1 WHERE position = \"10th\"", "question": "What is the total for 10th position?", "context": "CREATE TABLE table_10705060_1 (points VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(report) FROM table_10707142_2 WHERE date = \"October 16\"", "question": "how many reports of races took place on october 16?", "context": "CREATE TABLE table_10707142_2 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_10707142_2 WHERE race_name = \"Long Beach Grand Prix\"", "question": "what is the name of the report that lists the race name as long beach grand prix?", "context": "CREATE TABLE table_10707142_2 (report VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT report FROM table_10707142_2 WHERE circuit = \"Nazareth Speedway\"", "question": "what is the report called where the circuit took place at the nazareth speedway?", "context": "CREATE TABLE table_10707142_2 (report VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT race_name FROM table_10707142_2 WHERE winning_team = \"Newman/Haas Racing\" AND pole_position = \"Rick Mears\"", "question": "what is the name of the race where newman/haas racing is the winning team and rick mears is at the pole position?", "context": "CREATE TABLE table_10707142_2 (race_name VARCHAR, winning_team VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT city_location FROM table_10707142_2 WHERE circuit = \"Meadowlands Sports Complex\"", "question": "meadowlands sports complex is the circuit at which city/location?", "context": "CREATE TABLE table_10707142_2 (city_location VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT literacy___percentage_ FROM table_10710364_2 WHERE growth__1991_2001_ = \"103.1%\"", "question": "What is the literacy rate for groups that grew 103.1% between 1991 and 2001?", "context": "CREATE TABLE table_10710364_2 (literacy___percentage_ VARCHAR, growth__1991_2001_ VARCHAR)"}, {"answer": "SELECT MIN(sex_ratio__rural_) FROM table_10710364_2", "question": "What is the lowest sex ratio in rural areas?", "context": "CREATE TABLE table_10710364_2 (sex_ratio__rural_ INTEGER)"}, {"answer": "SELECT MIN(sex_ratio__child_) FROM table_10710364_2 WHERE work_participation___percentage_ = \"31.3%\"", "question": "What is the lowest child sex ratio in groups where employment is 31.3%?", "context": "CREATE TABLE table_10710364_2 (sex_ratio__child_ INTEGER, work_participation___percentage_ VARCHAR)"}, {"answer": "SELECT population__percentage FROM table_10710364_2 WHERE sex_ratio__rural_ = 953", "question": "What is the population percentage of the group where the rural sex ratio is 953?", "context": "CREATE TABLE table_10710364_2 (population__percentage VARCHAR, sex_ratio__rural_ VARCHAR)"}, {"answer": "SELECT title FROM table_10715317_2 WHERE directed_by = \"Peter Markle\" AND written_by = \"Jerry Stahl\"", "question": "What is the title of the episode directed by Peter Markle and written by Jerry Stahl?", "context": "CREATE TABLE table_10715317_2 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT lap_by_lap FROM table_10716893_3 WHERE year = 2011", "question": "Who does the lap-by-lap in 2011?", "context": "CREATE TABLE table_10716893_3 (lap_by_lap VARCHAR, year VARCHAR)"}, {"answer": "SELECT network FROM table_10716893_3 WHERE lap_by_lap = \"Marty Reid\" AND host = \"Marty Reid\"", "question": "Which network has Marty Reid as host and lap-by-lap broadcaster?", "context": "CREATE TABLE table_10716893_3 (network VARCHAR, lap_by_lap VARCHAR, host VARCHAR)"}, {"answer": "SELECT COUNT(pre_race_analyst) FROM table_10716893_3 WHERE lap_by_lap = \"Allen Bestwick\"", "question": "How many pre-race analysis occur when Allen Bestwick does the lap-by-lap?", "context": "CREATE TABLE table_10716893_3 (pre_race_analyst VARCHAR, lap_by_lap VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_10718192_2", "question": "What's the highest season number of an episode in the series?", "context": "CREATE TABLE table_10718192_2 (no_in_season INTEGER)"}, {"answer": "SELECT original_air_date FROM table_10718192_2 WHERE no_in_series = 63", "question": "What's the date of the first airing of the episode with series number 63?", "context": "CREATE TABLE table_10718192_2 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_10718525_2 WHERE us_viewers__millions_ = \"26.53\"", "question": "How many titles got a viewership of 26.53 million?", "context": "CREATE TABLE table_10718525_2 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_10718525_2 WHERE directed_by = \"Matt Earl Beesley\"", "question": "How many viewers tuned into the show directed by Matt Earl Beesley?", "context": "CREATE TABLE table_10718525_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_10718631_2 WHERE no_in_series = 94", "question": "Who wrote episode 94?", "context": "CREATE TABLE table_10718631_2 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_10718631_2 WHERE no_in_season = 10", "question": "Which episode was the number in the season where the number in the season is 10?", "context": "CREATE TABLE table_10718631_2 (no_in_series VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_10718631_2 WHERE no_in_series = 113", "question": "When did the 113 episode air?", "context": "CREATE TABLE table_10718631_2 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_10718631_2 WHERE no_in_series = 113", "question": "How many titles were there for the 113 episode?", "context": "CREATE TABLE table_10718631_2 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_10718984_2 WHERE written_by = \"Marlene Meyer\" AND us_viewers__millions_ = \"20.49\"", "question": "What is the number in the season that Marlene Meyer wrote and 20.49 million people watched?", "context": "CREATE TABLE table_10718984_2 (no_in_season INTEGER, written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_10718984_2 WHERE no_in_season = 23", "question": "When did the no. 23 show originally air?", "context": "CREATE TABLE table_10718984_2 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT circuit FROM table_10725629_2 WHERE date = \"October 4\"", "question": "Which circuits had a race on October 4?", "context": "CREATE TABLE table_10725629_2 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_10725629_2 WHERE pole_position = \"Michael Andretti\" AND winning_team = \"Galles-Kraco Racing\"", "question": "In which reports does Michael Andretti have the pole position and Galles-Kraco Racing is the winning team?", "context": "CREATE TABLE table_10725629_2 (report VARCHAR, pole_position VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT COUNT(rnd) FROM table_10725629_2 WHERE race_name = \"Bosch Spark Plug Grand Prix\"", "question": "How many rounds were there of the Bosch Spark Plug Grand Prix?", "context": "CREATE TABLE table_10725629_2 (rnd VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT rnd FROM table_10725629_2 WHERE date = \"August 9\"", "question": "Which rounds were held on August 9?", "context": "CREATE TABLE table_10725629_2 (rnd VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_10725629_2 WHERE circuit = \"Michigan International Speedway\"", "question": "On how many dates did the Michigan International Speedway hold a round?", "context": "CREATE TABLE table_10725629_2 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(_number_of_bids) FROM table_10722506_6 WHERE conference = \"Sun Belt\"", "question": "Name the total number of bids of the sun belt conference", "context": "CREATE TABLE table_10722506_6 (_number_of_bids VARCHAR, conference VARCHAR)"}, {"answer": "SELECT round_of_32 FROM table_10722506_6 WHERE conference = \"conference USA\"", "question": "Name the round of 32 in conference usa", "context": "CREATE TABLE table_10722506_6 (round_of_32 VARCHAR, conference VARCHAR)"}, {"answer": "SELECT record FROM table_10722506_6 WHERE round_of_32 = 0 AND conference = \"Metro Atlantic\"", "question": "What is the record when round of 32 is 0 and metro atlantic conference?", "context": "CREATE TABLE table_10722506_6 (record VARCHAR, round_of_32 VARCHAR, conference VARCHAR)"}, {"answer": "SELECT COUNT(_number_of_bids) FROM table_10722506_6 WHERE elite_eight > 1.0", "question": "What is the number of bids with elite eight larger than 1.0", "context": "CREATE TABLE table_10722506_6 (_number_of_bids VARCHAR, elite_eight INTEGER)"}, {"answer": "SELECT directed_by FROM table_10749143_2 WHERE production_code = \"7AFF03\"", "question": "Who directed the episode with production code 7aff03?", "context": "CREATE TABLE table_10749143_2 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_10749143_2 WHERE us_viewers__millions_ = \"10.34\"", "question": "What is the title of the episode wtih 10.34 million U.S viewers?", "context": "CREATE TABLE table_10749143_2 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT position FROM table_10748727_1 WHERE races = 6", "question": "What place is the team that completed 6 races?", "context": "CREATE TABLE table_10748727_1 (position VARCHAR, races VARCHAR)"}, {"answer": "SELECT points FROM table_10748727_1 WHERE series = \"British Formula Three\" AND team_name = \"Fortec Motorsport\"", "question": "how much did the british formula three called \"fortec motorsport\" score?", "context": "CREATE TABLE table_10748727_1 (points VARCHAR, series VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT races FROM table_10748727_1 WHERE season = \"2009\" AND wins = 0", "question": "how many races were in 2009 with 0 wins?", "context": "CREATE TABLE table_10748727_1 (races VARCHAR, season VARCHAR, wins VARCHAR)"}, {"answer": "SELECT season FROM table_10748727_1 WHERE team_name = \"ART Grand Prix\"", "question": "What years did art grand prix compete?", "context": "CREATE TABLE table_10748727_1 (season VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT season FROM table_10748727_1 WHERE points = \"9\"", "question": "What year had a score of 9?", "context": "CREATE TABLE table_10748727_1 (season VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_10748727_1 WHERE series = \"Japanese Formula Three\"", "question": "what is the greatest number of wins by japanese formula three?", "context": "CREATE TABLE table_10748727_1 (wins INTEGER, series VARCHAR)"}, {"answer": "SELECT test_taker FROM table_10749367_3 WHERE _number = 4", "question": "Who took test #4?", "context": "CREATE TABLE table_10749367_3 (test_taker VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_10749367_3 WHERE air_date = \"18 April 2007\"", "question": "What episode aired on 18 April 2007?", "context": "CREATE TABLE table_10749367_3 (_number INTEGER, air_date VARCHAR)"}, {"answer": "SELECT test_taker FROM table_10749367_3 WHERE challenge = \"Night Driving\"", "question": "Who had the challenge of night driving?", "context": "CREATE TABLE table_10749367_3 (test_taker VARCHAR, challenge VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_10798928_1 WHERE film_title_used_in_nomination = \"Course Completed\"", "question": "How many directors were there for the film Course Completed?", "context": "CREATE TABLE table_10798928_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT director FROM table_10798928_1 WHERE original_title = \"El nido\"", "question": "Who directed El Nido?", "context": "CREATE TABLE table_10798928_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT director FROM table_10798928_1 WHERE original_title = \"Dulcinea\"", "question": "Who directed Dulcinea?", "context": "CREATE TABLE table_10798928_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT village__slovenian_ FROM table_10797463_1 WHERE percent_of_slovenes_1951 = \"65.9%\"", "question": "What are the slovenian names of the villages that had 65.9% of slovenes in 1951?", "context": "CREATE TABLE table_10797463_1 (village__slovenian_ VARCHAR, percent_of_slovenes_1951 VARCHAR)"}, {"answer": "SELECT village__slovenian_ FROM table_10797463_1 WHERE percent_of_slovenes_1991 = \"16.7%\"", "question": "What are the slovenian names of the villages that had 16.7% of slovenes in 1991?", "context": "CREATE TABLE table_10797463_1 (village__slovenian_ VARCHAR, percent_of_slovenes_1991 VARCHAR)"}, {"answer": "SELECT COUNT(village__german_) FROM table_10797463_1 WHERE percent_of_slovenes_1991 = \"21.7%\"", "question": "How many villages had 21.7% of slovenes in 1991?", "context": "CREATE TABLE table_10797463_1 (village__german_ VARCHAR, percent_of_slovenes_1991 VARCHAR)"}, {"answer": "SELECT percent_of_slovenes_1991 FROM table_10797463_1 WHERE village__slovenian_ = \"\u010cahor\u010de\"", "question": "what percent of slovenes did the village called \u010dahor\u010de in slovenian have in 1991?", "context": "CREATE TABLE table_10797463_1 (percent_of_slovenes_1991 VARCHAR, village__slovenian_ VARCHAR)"}, {"answer": "SELECT village__slovenian_ FROM table_10797463_1 WHERE village__german_ = \"St.Margarethen\"", "question": "What is the slovenian name for the village that in german is known as st.margarethen?", "context": "CREATE TABLE table_10797463_1 (village__slovenian_ VARCHAR, village__german_ VARCHAR)"}, {"answer": "SELECT high_points FROM table_10812293_4 WHERE date = \"December 20\"", "question": "For games on December 20, how many points did the scoring leaders get?", "context": "CREATE TABLE table_10812293_4 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_10812293_4 WHERE date = \"December 23\"", "question": "Who was the scoring leader and how many points did he get in games on December 23?", "context": "CREATE TABLE table_10812293_4 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT pick__number FROM table_10812938_3 WHERE position = \"DE\"", "question": "What is the pick # for the position de?", "context": "CREATE TABLE table_10812938_3 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_10812938_3 WHERE college = \"Saint Mary's\"", "question": "Which player went to college at Saint Mary's?", "context": "CREATE TABLE table_10812938_3 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_10812938_3 WHERE cfl_team = \"Winnipeg Blue Bombers\"", "question": "What is the position for the player with cfl team Winnipeg blue bombers?", "context": "CREATE TABLE table_10812938_3 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT player FROM table_10812938_3 WHERE college = \"Laval\"", "question": "Which player went to college at Laval?", "context": "CREATE TABLE table_10812938_3 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_10812938_3 WHERE cfl_team = \"Edmonton Eskimos (via Calgary)\"", "question": "What was the college for the player with the cfl team of Edmonton Eskimos (via calgary)?", "context": "CREATE TABLE table_10812938_3 (college VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_10812938_5 WHERE college = \"St. Francis Xavier\"", "question": "What's the team of the player from St. Francis Xavier College?", "context": "CREATE TABLE table_10812938_5 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_10812938_5 WHERE cfl_team = \"Montreal Alouettes\"", "question": "What player is on the Montreal Alouettes CFl team?", "context": "CREATE TABLE table_10812938_5 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_10812938_5 WHERE cfl_team = \"Toronto Argonauts\"", "question": "What's the pick number of the player from Toronto Argonauts?", "context": "CREATE TABLE table_10812938_5 (pick__number INTEGER, cfl_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_10812938_5 WHERE position = \"CB\"", "question": "What's the pick number of the player whose position is CB?", "context": "CREATE TABLE table_10812938_5 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_10812938_5 WHERE college = \"New Mexico\"", "question": "What's the pick number of the player from New Mexico?", "context": "CREATE TABLE table_10812938_5 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT player FROM table_10812938_5 WHERE college = \"Ohio State\"", "question": "What player went to Ohio State College?", "context": "CREATE TABLE table_10812938_5 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(introduced) FROM table_1081459_1 WHERE region = \"Departmental\"", "question": "What is the minimum introduced value for the Departmental region?", "context": "CREATE TABLE table_1081459_1 (introduced INTEGER, region VARCHAR)"}, {"answer": "SELECT MIN(introduced) FROM table_1081459_1", "question": "What is the smallest introduced value?", "context": "CREATE TABLE table_1081459_1 (introduced INTEGER)"}, {"answer": "SELECT cfl_team FROM table_10812938_4 WHERE position = \"OL\"", "question": "Which CFL Teams drafted an OL in 2006?", "context": "CREATE TABLE table_10812938_4 (cfl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_10812938_4 WHERE cfl_team = \"Saskatchewan Roughriders\"", "question": "Which college is aligned to the Saskatchewan Roughriders?", "context": "CREATE TABLE table_10812938_4 (college VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT position FROM table_10812938_4 WHERE cfl_team = \"Hamilton Tiger-Cats (via Ottawa)\"", "question": "What Position did the Hamilton Tiger-Cats (via Ottawa) pick in the 2006 Draft.", "context": "CREATE TABLE table_10812938_4 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_10812938_4", "question": "What is the earliest pick listed in the table.", "context": "CREATE TABLE table_10812938_4 (pick__number INTEGER)"}, {"answer": "SELECT MAX(no_in_season) FROM table_10842344_1 WHERE production_code = \"E4423\"", "question": "What episode number had production code e4423?", "context": "CREATE TABLE table_10842344_1 (no_in_season INTEGER, production_code VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_10842344_1 WHERE us_viewers__millions_ = \"14.37\"", "question": "What's the latest episode in a season where the U.S. viewers totaled 14.37 million?", "context": "CREATE TABLE table_10842344_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT season AS finale FROM table_10819266_8 WHERE season = 4", "question": "What is the season finale for season 4?", "context": "CREATE TABLE table_10819266_8 (season VARCHAR)"}, {"answer": "SELECT season AS premiere FROM table_10819266_8 WHERE rank = \"#21\"", "question": "How many season premiers have a rank of #21?", "context": "CREATE TABLE table_10819266_8 (season VARCHAR, rank VARCHAR)"}, {"answer": "SELECT max_processors FROM table_10818465_1 WHERE max_memory = \"256 GB\"", "question": "What max processor has a maximum memory of 256 gb?", "context": "CREATE TABLE table_10818465_1 (max_processors VARCHAR, max_memory VARCHAR)"}, {"answer": "SELECT max_memory FROM table_10818465_1 WHERE model = \"T5120\"", "question": "What is the max memory of the t5120 model?", "context": "CREATE TABLE table_10818465_1 (max_memory VARCHAR, model VARCHAR)"}, {"answer": "SELECT MIN(ru) FROM table_10818465_1", "question": "What is the lowest ru?", "context": "CREATE TABLE table_10818465_1 (ru INTEGER)"}, {"answer": "SELECT ga_date FROM table_10818465_1 WHERE processor_frequency = \"1.0, 1.2, 1.4GHz\"", "question": "What ga date do the models with 1.0, 1.2, 1.4ghz processor frequencies have?", "context": "CREATE TABLE table_10818465_1 (ga_date VARCHAR, processor_frequency VARCHAR)"}, {"answer": "SELECT ga_date FROM table_10818465_1 WHERE model = \"T5120\"", "question": "What is the ga date of the t5120 model?", "context": "CREATE TABLE table_10818465_1 (ga_date VARCHAR, model VARCHAR)"}, {"answer": "SELECT sport FROM table_10815352_1 WHERE league = \"La Liga\"", "question": "What is the sport of the La Liga league?", "context": "CREATE TABLE table_10815352_1 (sport VARCHAR, league VARCHAR)"}, {"answer": "SELECT MIN(total_attendance) FROM table_10815352_1 WHERE sport = \"Association football\" AND league = \"Premier league\"", "question": "What's the minimum total attendance of the Premier League association football?", "context": "CREATE TABLE table_10815352_1 (total_attendance INTEGER, sport VARCHAR, league VARCHAR)"}, {"answer": "SELECT MIN(average_attendance) FROM table_10815352_1 WHERE season = \"2013\"", "question": "What's the average attendance of the leagues in the season of 2013?", "context": "CREATE TABLE table_10815352_1 (average_attendance INTEGER, season VARCHAR)"}, {"answer": "SELECT COUNT(total_attendance) FROM table_10815352_1 WHERE season = \"2010\"", "question": "What's the total attendance of the leagues in season of 2010?", "context": "CREATE TABLE table_10815352_1 (total_attendance VARCHAR, season VARCHAR)"}, {"answer": "SELECT director FROM table_10874596_1 WHERE film_title_used_in_nomination = \"Young T\u00f6rless\"", "question": "Who were the directors of the film submitted with the title Young T\u00f6rless?", "context": "CREATE TABLE table_10874596_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT original_title FROM table_10874596_1 WHERE film_title_used_in_nomination = \"A Woman in Flames\"", "question": "What was the original title of the film submitted with the title A Woman in Flames?", "context": "CREATE TABLE table_10874596_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT year_[e_] AS __ceremony_ FROM table_10874596_1 WHERE film_title_used_in_nomination = \"The Enigma of Kaspar Hauser\"", "question": "In what years was a film submitted with the title The Enigma of Kaspar Hauser?", "context": "CREATE TABLE table_10874596_1 (year_ VARCHAR, e_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT director FROM table_10874596_1 WHERE original_title = \"o.k.\"", "question": "Who were the directors of the film with the original title o.k.?", "context": "CREATE TABLE table_10874596_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT division FROM table_1087659_2 WHERE playoffs = \"division Semifinals\"", "question": "What is the division for the division semifinals playoffs?", "context": "CREATE TABLE table_1087659_2 (division VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT title FROM table_10908676_7 WHERE written_by = \"David Mamet\"", "question": "What is the title written by David Mamet?", "context": "CREATE TABLE table_10908676_7 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT finale FROM table_10942714_1 WHERE chinese_title = \"\u6f6e\u7206\u5927\u72c0\"", "question": "What was the finale for \u6f6e\u7206\u5927\u72c0", "context": "CREATE TABLE table_10942714_1 (finale VARCHAR, chinese_title VARCHAR)"}, {"answer": "SELECT hk_viewers FROM table_10942714_1 WHERE premiere = 34", "question": "How many viewers were there for the premier with 34", "context": "CREATE TABLE table_10942714_1 (hk_viewers VARCHAR, premiere VARCHAR)"}, {"answer": "SELECT COUNT(peak) FROM table_10942714_1 WHERE chinese_title = \"\u6f6e\u7206\u5927\u72c0\"", "question": "How many are listed under \u6f6e\u7206\u5927\u72c0", "context": "CREATE TABLE table_10942714_1 (peak VARCHAR, chinese_title VARCHAR)"}, {"answer": "SELECT director FROM table_10953197_2 WHERE production_code = \"2393059\"", "question": "Who was the director of the episode with a production code of 2393059?", "context": "CREATE TABLE table_10953197_2 (director VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_10935548_1 WHERE us_viewers__millions_ = \"16.38\"", "question": "Which episode had 16.38 million U.S. viewers?", "context": "CREATE TABLE table_10935548_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_10935548_1 WHERE written_by = \"Jos\u00e9 Molina\" AND original_air_date = \"October 12, 2004\"", "question": "What is the production code of the episode written by Jos\u00e9 Molina that aired on October 12, 2004?", "context": "CREATE TABLE table_10935548_1 (production_code VARCHAR, written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_10935548_1 WHERE directed_by = \"Jean de Segonzac\"", "question": "Which episode was directed by Jean de Segonzac?", "context": "CREATE TABLE table_10935548_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_10953197_3 WHERE production_code = \"2394087\"", "question": "what are the original air dates with a production code of 2394087", "context": "CREATE TABLE table_10953197_3 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_10953197_3 WHERE production_code = \"2394084\"", "question": "Who are the writer(s) for the production code 2394084", "context": "CREATE TABLE table_10953197_3 (writer_s_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_10953197_4 WHERE production_code = \"2395113A\"", "question": "What's the total number of episodes with the production code 2395113A?", "context": "CREATE TABLE table_10953197_4 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_10953197_4 WHERE production_code = \"2395114\"", "question": "Who's the writer for the episode with a production code 2395114?", "context": "CREATE TABLE table_10953197_4 (writer_s_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_10953197_4 WHERE production_code = \"2395118\"", "question": "What's the number of the episode with production code 2395118?", "context": "CREATE TABLE table_10953197_4 (no_in_season VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_10953197_4 WHERE production_code = \"2395096\"", "question": "Who was the writer for the episode with production code 2395096?", "context": "CREATE TABLE table_10953197_4 (writer_s_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT orbital_period FROM table_10932739_2 WHERE semimajor_axis___au__ = \"5.20\"", "question": "How long is the orbital period for the planet that has a semimajor axis of 5.20 au?", "context": "CREATE TABLE table_10932739_2 (orbital_period VARCHAR, semimajor_axis___au__ VARCHAR)"}, {"answer": "SELECT planet FROM table_10932739_2 WHERE orbital_period = \"11.86 years\"", "question": "Which planet has an orbital period of 11.86 years?", "context": "CREATE TABLE table_10932739_2 (planet VARCHAR, orbital_period VARCHAR)"}, {"answer": "SELECT director FROM table_10953197_7 WHERE production_code = \"2398204\"", "question": "who directed the production code 2398204", "context": "CREATE TABLE table_10953197_7 (director VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT pick__number FROM table_10960039_1 WHERE player = \"Alexis Bwenge\"", "question": "What is player Alexis Bwenge's pick number?", "context": "CREATE TABLE table_10960039_1 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_10960039_1 WHERE pick__number = 2", "question": "What player is pick #2?", "context": "CREATE TABLE table_10960039_1 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT player FROM table_10960039_1 WHERE college = \"Saskatchewan\"", "question": "Which player's college is Saskatchewan?", "context": "CREATE TABLE table_10960039_1 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_10960039_1 WHERE college = \"McMaster\"", "question": "What is McMaster College's pick number?", "context": "CREATE TABLE table_10960039_1 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_10953197_6", "question": "give the least number of times an episode was shown from 1997-1998", "context": "CREATE TABLE table_10953197_6 (no_in_season INTEGER)"}, {"answer": "SELECT MAX(no_in_season) FROM table_10953197_6 WHERE director = \"Chip Chalmers\" AND production_code = \"2397162\"", "question": "what is season 6 sum of both the number of times processing ID 2397162 was assigned and the number of times chip chalmers managed an episode ", "context": "CREATE TABLE table_10953197_6 (no_in_season INTEGER, director VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT player_name FROM table_10966926_2 WHERE college = \"Michigan State\"", "question": "Which player went to Michigan State?", "context": "CREATE TABLE table_10966926_2 (player_name VARCHAR, college VARCHAR)"}, {"answer": "SELECT player_name FROM table_10966926_2 WHERE college = \"Oklahoma\"", "question": "Which player went to college in Oklahoma?", "context": "CREATE TABLE table_10966926_2 (player_name VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_10966926_2 WHERE player_name = \"Colt Brennan\"", "question": "Which position does Colt Brennan play?", "context": "CREATE TABLE table_10966926_2 (position VARCHAR, player_name VARCHAR)"}, {"answer": "SELECT height FROM table_10966926_2 WHERE weight = 320", "question": "What is the height of the person that weighs 320 pounds?", "context": "CREATE TABLE table_10966926_2 (height VARCHAR, weight VARCHAR)"}, {"answer": "SELECT COUNT(college) FROM table_10975034_4 WHERE position = \"DB\"", "question": "How many colleges have a DB position?", "context": "CREATE TABLE table_10975034_4 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_10975034_4 WHERE cfl_team = \"Calgary Stampeders\"", "question": "What is the maximum number of picks for the CFL team Calgary Stampeders?", "context": "CREATE TABLE table_10975034_4 (pick__number INTEGER, cfl_team VARCHAR)"}, {"answer": "SELECT COUNT(cfl_team) FROM table_10975034_4 WHERE college = \"York\"", "question": "How many CFL teams are from York college?", "context": "CREATE TABLE table_10975034_4 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_10975034_4 WHERE college = \"Simon Fraser\"", "question": "What CFL teams are part of Simon Fraser college?", "context": "CREATE TABLE table_10975034_4 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_10975034_4 WHERE pick__number = 27", "question": "Which players have a pick number of 27?", "context": "CREATE TABLE table_10975034_4 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_10960039_6 WHERE player = \"Brett Ralph\"", "question": "How many times were players named brett ralph were selected?", "context": "CREATE TABLE table_10960039_6 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_10960039_6 WHERE player = \"Lenard Semajuste\"", "question": "What schools did lenard semajuste play for?", "context": "CREATE TABLE table_10960039_6 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_10960039_6 WHERE cfl_team = \"Saskatchewan Roughriders\"", "question": "What is the highest selection number for the saskatchewan roughriders team?", "context": "CREATE TABLE table_10960039_6 (pick__number INTEGER, cfl_team VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_10960039_6 WHERE position = \"FB\"", "question": "How many fb players were drafted?", "context": "CREATE TABLE table_10960039_6 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_10960039_6 WHERE college = \"Adams State\"", "question": "How many players played for adams state school?", "context": "CREATE TABLE table_10960039_6 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_10960039_6 WHERE college = \"Northwood\"", "question": "What teams drafted players that played for northwood school?", "context": "CREATE TABLE table_10960039_6 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_10975034_5 WHERE player = \"Craig Zimmer\"", "question": "What college did Craig Zimmer go to?", "context": "CREATE TABLE table_10975034_5 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick__number FROM table_10975034_5 WHERE college = \"Regina\"", "question": "What is the pick number of regina?", "context": "CREATE TABLE table_10975034_5 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_10975034_5 WHERE position = \"LB\" AND cfl_team = \"Saskatchewan Roughriders\"", "question": "What is the player who is lb and cfl team is saskatchewan roughriders?", "context": "CREATE TABLE table_10975034_5 (player VARCHAR, position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_10975034_5 WHERE position = \"OL\"", "question": "What is the cfl team that has a position of ol?", "context": "CREATE TABLE table_10975034_5 (cfl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_10975034_5 WHERE pick__number = 43", "question": "What is the number of position where the pick number is 43?", "context": "CREATE TABLE table_10975034_5 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_10975034_5 WHERE player = \"Ryan Folk\"", "question": "What is the cfl team with ryan folk?", "context": "CREATE TABLE table_10975034_5 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT release_date FROM table_10979230_5 WHERE reference = \"KIDS-270\"", "question": "What release date is when kids-270 is a reference? ", "context": "CREATE TABLE table_10979230_5 (release_date VARCHAR, reference VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_10979230_5 WHERE romaji_title = \"Da.i.su.ki\"", "question": "what is the title where romaji is titles da.i.su.ki", "context": "CREATE TABLE table_10979230_5 (japanese_title VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_10979230_5 WHERE reference = \"KIDS-430\"", "question": "what are the title in japanese where the reference is kids-430?", "context": "CREATE TABLE table_10979230_5 (japanese_title VARCHAR, reference VARCHAR)"}, {"answer": "SELECT reference FROM table_10979230_5 WHERE romaji_title = \"Heartbreak Sniper\"", "question": "who is the reference when romaji title is heartbreak sniper?", "context": "CREATE TABLE table_10979230_5 (reference VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT COUNT(oricon) FROM table_10979230_4 WHERE japanese_title = \"\u611b\u306e\u30d0\u30ab\"", "question": "What rank is \u611b\u306e\u30d0\u30ab on the Japanese singles chart?", "context": "CREATE TABLE table_10979230_4 (oricon VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT COUNT(romaji_title) FROM table_10979230_4 WHERE japanese_title = \"Mi-Chemin\"", "question": "How many songs have mi-chemin as their Japanese name and romanji name?", "context": "CREATE TABLE table_10979230_4 (romaji_title VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT partial_thromboplastin_time FROM table_1099080_1 WHERE condition = \"Factor X deficiency as seen in amyloid purpura\"", "question": "What was the  partial thromboplastin time for factor x deficiency as seen in amyloid purpura", "context": "CREATE TABLE table_1099080_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT COUNT(condition) FROM table_1099080_1 WHERE prothrombin_time = \"Unaffected\" AND bleeding_time = \"Prolonged\"", "question": "How many conditions have an unaffected prothrombin time and a prolonged bleeding time", "context": "CREATE TABLE table_1099080_1 (condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_1099080_1 WHERE condition = \"Factor X deficiency as seen in amyloid purpura\"", "question": "What was the bleeding time for the factor x deficiency as seen in amyloid purpura", "context": "CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT condition FROM table_1099080_1 WHERE partial_thromboplastin_time = \"Prolonged\" AND bleeding_time = \"Prolonged\"", "question": "What conditions had both prolonged bleeding times and prolonged partial thromboplastin times", "context": "CREATE TABLE table_1099080_1 (condition VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_1099080_1 WHERE condition = \"Factor XII deficiency\"", "question": "What was the bleeding time for  factor xii deficiency", "context": "CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_1099080_1 WHERE partial_thromboplastin_time = \"Unaffected\" AND platelet_count = \"Unaffected\"", "question": "What were the bleeding times when both the platelet count was unaffected and the partial thromboplastin time was unaffected", "context": "CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)"}, {"answer": "SELECT tuesday FROM table_11019212_1 WHERE location = \"Millhopper\"", "question": "what's the\u00a0tuesday\u00a0time with\u00a0location\u00a0being millhopper", "context": "CREATE TABLE table_11019212_1 (tuesday VARCHAR, location VARCHAR)"}, {"answer": "SELECT wednesday FROM table_11019212_1 WHERE monday = \"10:00-8:00\"", "question": "what's the\u00a0wednesday time\u00a0with\u00a0monday\u00a0being 10:00-8:00", "context": "CREATE TABLE table_11019212_1 (wednesday VARCHAR, monday VARCHAR)"}, {"answer": "SELECT thursday FROM table_11019212_1 WHERE location = \"Hawthorne\"", "question": "what's the\u00a0thursday\u00a0time with\u00a0location\u00a0being hawthorne", "context": "CREATE TABLE table_11019212_1 (thursday VARCHAR, location VARCHAR)"}, {"answer": "SELECT saturday FROM table_11019212_1 WHERE wednesday = \"10:00-5:00\"", "question": "what's the\u00a0saturday\u00a0time with\u00a0wednesday\u00a0being 10:00-5:00", "context": "CREATE TABLE table_11019212_1 (saturday VARCHAR, wednesday VARCHAR)"}, {"answer": "SELECT thursday FROM table_11019212_1 WHERE sunday = \"1:00-5:00\" AND tuesday = \"1:00-7:00\"", "question": "what's the\u00a0thursday\u00a0time with\u00a0sunday\u00a0being 1:00-5:00 and\u00a0tuesday\u00a0being 1:00-7:00", "context": "CREATE TABLE table_11019212_1 (thursday VARCHAR, sunday VARCHAR, tuesday VARCHAR)"}, {"answer": "SELECT monday FROM table_11019212_1 WHERE tuesday = \"9:00-6:00\"", "question": "what's the\u00a0monday\u00a0time with\u00a0tuesday\u00a0being 9:00-6:00", "context": "CREATE TABLE table_11019212_1 (monday VARCHAR, tuesday VARCHAR)"}, {"answer": "SELECT report FROM table_11056278_3 WHERE fastest_lap = \"Paul Tracy\"", "question": "What are all the reports where Paul Tracy had the fastest lap?", "context": "CREATE TABLE table_11056278_3 (report VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_11056278_3 WHERE race_name = \"Tenneco Automotive Grand Prix of Detroit\"", "question": "Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit?", "context": "CREATE TABLE table_11056278_3 (fastest_lap VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_11056278_3 WHERE winning_driver = \"Max Papis\"", "question": "Who had the fastest lap in the races won by Max Papis?", "context": "CREATE TABLE table_11056278_3 (fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT COUNT(winning_driver) FROM table_11056278_3 WHERE rnd = 6", "question": "In Round 6, how many winning drivers were there?", "context": "CREATE TABLE table_11056278_3 (winning_driver VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT original_name FROM table_1104312_5 WHERE population_at_2010_census = 210450", "question": "What are the original names of the districts where the population in the 2010 census was 210450?", "context": "CREATE TABLE table_1104312_5 (original_name VARCHAR, population_at_2010_census VARCHAR)"}, {"answer": "SELECT original_name FROM table_1104312_5 WHERE english_name = \"South Bogor\"", "question": "What is the original name of the district with the current English name of South Bogor?", "context": "CREATE TABLE table_1104312_5 (original_name VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT MIN(population_at_2010_census) FROM table_1104312_5 WHERE english_name = \"West Bogor\"", "question": "What is the listed population from the 2010 census of West Bogor?", "context": "CREATE TABLE table_1104312_5 (population_at_2010_census INTEGER, english_name VARCHAR)"}, {"answer": "SELECT COUNT(english_name) FROM table_1104312_5 WHERE area_in_km\u00b2 = \"17.72\"", "question": "How many districts have an area of 17.72 KM2?", "context": "CREATE TABLE table_1104312_5 (english_name VARCHAR, area_in_km\u00b2 VARCHAR)"}, {"answer": "SELECT area_in_km\u00b2 FROM table_1104312_5 WHERE original_name = \"Kecamatan Bogor Timur\"", "question": "What is the area in km2 for the district whose original name was Kecamatan Bogor Timur?", "context": "CREATE TABLE table_1104312_5 (area_in_km\u00b2 VARCHAR, original_name VARCHAR)"}, {"answer": "SELECT COUNT(colour) FROM table_11066073_1 WHERE registration_no = \"MG-509\"", "question": "What is the number of colour with the regisration number of mg-509?", "context": "CREATE TABLE table_11066073_1 (colour VARCHAR, registration_no VARCHAR)"}, {"answer": "SELECT title FROM table_11058032_1 WHERE directed_by = \"Mark Tinker\"", "question": "What is the title of the episode directed by Mark Tinker?", "context": "CREATE TABLE table_11058032_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_11058032_1 WHERE directed_by = \"Jeff Melman\"", "question": "What episode in the season was directed by Jeff Melman?", "context": "CREATE TABLE table_11058032_1 (no_in_season INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_11058032_1 WHERE us_viewers__millions_ = \"16.03\"", "question": "How many episodes had 16.03 million viewers?", "context": "CREATE TABLE table_11058032_1 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(interregnum_ended) FROM table_11071897_1 WHERE duration = \"3 months, 6 days\"", "question": "What is the number of interregnum for duration 3 months, 6 days?", "context": "CREATE TABLE table_11071897_1 (interregnum_ended VARCHAR, duration VARCHAR)"}, {"answer": "SELECT directed_by FROM table_11075747_4 WHERE episode__number = 8", "question": "Who directed Episode 8?", "context": "CREATE TABLE table_11075747_4 (directed_by VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11075747_4 WHERE series__number = 36", "question": "What was the original air date for Series 36?", "context": "CREATE TABLE table_11075747_4 (original_air_date VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT written_by FROM table_11075747_4 WHERE series__number = 38", "question": "Who wrote Series 38?", "context": "CREATE TABLE table_11075747_4 (written_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT COUNT(_percentage) FROM table_1108394_24 WHERE manhattan = \"45,901\"", "question": "What is the percentage for manhattan 45,901?", "context": "CREATE TABLE table_1108394_24 (_percentage VARCHAR, manhattan VARCHAR)"}, {"answer": "SELECT 1973 AS _democratic_initial_primary FROM table_1108394_24 WHERE queens = \"19_percentage\"", "question": "Who won the 1973 democratic initial primary for queens of 19%?", "context": "CREATE TABLE table_1108394_24 (queens VARCHAR)"}, {"answer": "SELECT manhattan FROM table_1108394_24 WHERE richmond_[staten_is] = \"35_percentage\"", "question": "What is the manhattan for richmond 35%?", "context": "CREATE TABLE table_1108394_24 (manhattan VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)"}, {"answer": "SELECT queens FROM table_1108394_24 WHERE richmond_[staten_is] = \"42_percentage\"", "question": "What is the queens where richmond staten is 42%?", "context": "CREATE TABLE table_1108394_24 (queens VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)"}, {"answer": "SELECT party FROM table_1108394_43 WHERE brooklyn = \"51.0_percentage\"", "question": "what's the\u00a0party\u00a0with\u00a0brooklyn\u00a0value of 51.0%", "context": "CREATE TABLE table_1108394_43 (party VARCHAR, brooklyn VARCHAR)"}, {"answer": "SELECT brooklyn FROM table_1108394_43 WHERE queens = \"16.8_percentage\"", "question": "what's the\u00a0brooklyn\u00a0with\u00a0queens\u00a0value of 16.8%", "context": "CREATE TABLE table_1108394_43 (brooklyn VARCHAR, queens VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_1108394_43", "question": "what is the minimum total", "context": "CREATE TABLE table_1108394_43 (total INTEGER)"}, {"answer": "SELECT _percentage FROM table_1108394_43 WHERE total = 249887 AND queens = \"6.8_percentage\"", "question": "what's the\u00a0%\u00a0with\u00a0total\u00a0value of 249887 and\u00a0queens\u00a0value of 6.8%", "context": "CREATE TABLE table_1108394_43 (_percentage VARCHAR, total VARCHAR, queens VARCHAR)"}, {"answer": "SELECT team FROM table_11094950_1 WHERE division = \"Central\" AND location = \"Livonia\"", "question": "Which teams were in the central division and located in livonia?", "context": "CREATE TABLE table_11094950_1 (team VARCHAR, division VARCHAR, location VARCHAR)"}, {"answer": "SELECT team FROM table_11094950_1 WHERE location = \"Highland Township\"", "question": "Which teams are located in highland township?", "context": "CREATE TABLE table_11094950_1 (team VARCHAR, location VARCHAR)"}, {"answer": "SELECT conference FROM table_11094950_1 WHERE team = \"Churchill Chargers\"", "question": "What conference was the churchill chargers team in?", "context": "CREATE TABLE table_11094950_1 (conference VARCHAR, team VARCHAR)"}, {"answer": "SELECT title FROM table_11111116_7 WHERE written_by = \"Ken LaZebnik\"", "question": "What was the titles of the episodes written by ken lazebnik?", "context": "CREATE TABLE table_11111116_7 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_11111116_7 WHERE us_viewers__million_ = \"2.81\"", "question": "Who directed an episode that had 2.81 million U.S. viewers?", "context": "CREATE TABLE table_11111116_7 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_11111116_7 WHERE us_viewers__million_ = \"3.02\"", "question": "What were the names of the episodes that had 3.02 million U.S. viewers?", "context": "CREATE TABLE table_11111116_7 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_11111116_7 WHERE us_viewers__million_ = \"2.61\"", "question": "Who directed episodes that had 2.61 million U.S. viewers?", "context": "CREATE TABLE table_11111116_7 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_11111116_8 WHERE original_air_date = \"March 31, 2013\"", "question": "How many millions of U.S. viewers watched the episode that first aired on March 31, 2013?", "context": "CREATE TABLE table_11111116_8 (us_viewers__million_ VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT written_by FROM table_11111116_8 WHERE us_viewers__million_ = \"2.12\"", "question": "Who wrote the episodes that were viewed by 2.12 million viewers?", "context": "CREATE TABLE table_11111116_8 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11111116_6 WHERE written_by = \"Rebecca Dameron\"", "question": "The episode written by Rebecca Dameron aired on what date? ", "context": "CREATE TABLE table_11111116_6 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_11111116_6 WHERE us_viewers__million_ = \"3.6\"", "question": "Which episode in the series drew 3.6 million U.S. viewers? ", "context": "CREATE TABLE table_11111116_6 (no_in_series INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_11111116_6 WHERE original_air_date = \"April 17, 2011\"", "question": "Who wrote the episode that aired on April 17, 2011? ", "context": "CREATE TABLE table_11111116_6 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_11111116_6 WHERE no_in_series = 79", "question": "How many times did episode 79 originally air? ", "context": "CREATE TABLE table_11111116_6 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT mls_cup_winner FROM table_11148572_1 WHERE mls_cup_runner_up = \"Colorado Rapids\"", "question": "What is the name of the shield winner in which the mls cup winner and mls cup runner up is colorado rapids?", "context": "CREATE TABLE table_11148572_1 (mls_cup_winner VARCHAR, mls_cup_runner_up VARCHAR)"}, {"answer": "SELECT mls_cup_winner FROM table_11148572_1 WHERE mls_supporters_shield_runner_up = \"Chivas USA\"", "question": "What is the name of the shield winner in which the mls cup winner and mls supporters shield runner up is Chivas usa?", "context": "CREATE TABLE table_11148572_1 (mls_cup_winner VARCHAR, mls_supporters_shield_runner_up VARCHAR)"}, {"answer": "SELECT mls_cup_runner_up FROM table_11148572_1 WHERE mls_cup_winner = \"Real Salt Lake\"", "question": "who is the of the shield winnerin which the mls cup runner-up and mls cup winner is real salt lake?", "context": "CREATE TABLE table_11148572_1 (mls_cup_runner_up VARCHAR, mls_cup_winner VARCHAR)"}, {"answer": "SELECT mls_cup_runner_up FROM table_11148572_1 WHERE season = 2000", "question": "Which shield winner has the mls cup runner up and the season is 2000?", "context": "CREATE TABLE table_11148572_1 (mls_cup_runner_up VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(league_apps__sub_) FROM table_1112176_1", "question": "League apps (sub) maximum?", "context": "CREATE TABLE table_1112176_1 (league_apps__sub_ INTEGER)"}, {"answer": "SELECT MAX(league_apps__sub_) FROM table_1112176_1 WHERE total_goals = 11", "question": "When total goals is 11 what was the league apps (sub)?", "context": "CREATE TABLE table_1112176_1 (league_apps__sub_ INTEGER, total_goals VARCHAR)"}, {"answer": "SELECT audition_city FROM table_11129123_1 WHERE callback_venue = \"Charleston Area Convention Center\"", "question": "Which city had the charleston area convention center as its callback location", "context": "CREATE TABLE table_11129123_1 (audition_city VARCHAR, callback_venue VARCHAR)"}, {"answer": "SELECT episode_air_date FROM table_11129123_1 WHERE callback_venue = \"Rancho Bernardo Inn\"", "question": "When did the callbacks from  rancho bernardo inn air", "context": "CREATE TABLE table_11129123_1 (episode_air_date VARCHAR, callback_venue VARCHAR)"}, {"answer": "SELECT owned_since FROM table_11147852_1 WHERE city_of_license_market = \"Albuquerque\"", "question": "The station located in Albuquerque has been owned since what year?", "context": "CREATE TABLE table_11147852_1 (owned_since VARCHAR, city_of_license_market VARCHAR)"}, {"answer": "SELECT channel_tv___dt__ FROM table_11147852_1 WHERE year_of_affiliation = \"2002\"", "question": "What channels have stations that were affiliated in 2002?", "context": "CREATE TABLE table_11147852_1 (channel_tv___dt__ VARCHAR, year_of_affiliation VARCHAR)"}, {"answer": "SELECT city_of_license_market FROM table_11147852_1 WHERE station = \"KTFK-DT\"", "question": "What market is KTFK-DT in?", "context": "CREATE TABLE table_11147852_1 (city_of_license_market VARCHAR, station VARCHAR)"}, {"answer": "SELECT engine FROM table_11167610_1 WHERE performance = \"0\u2013100km/h: 10.5s, VMax km/h (mph)\"", "question": " what's the\u00a0engine\u00a0where\u00a0performance\u00a0is 0\u2013100km/h: 10.5s, vmax km/h (mph)", "context": "CREATE TABLE table_11167610_1 (engine VARCHAR, performance VARCHAR)"}, {"answer": "SELECT turbo FROM table_11167610_1 WHERE trim = \"2.0 20v\"", "question": " what's the\u00a0turbo\u00a0where\u00a0trim\u00a0is 2.0 20v", "context": "CREATE TABLE table_11167610_1 (turbo VARCHAR, trim VARCHAR)"}, {"answer": "SELECT torque FROM table_11167610_1 WHERE performance = \"0\u2013100km/h: 7.5s auto, VMax: km/h (mph)\"", "question": " what's the\u00a0torque\u00a0where\u00a0performance\u00a0is 0\u2013100km/h: 7.5s auto, vmax: km/h (mph)", "context": "CREATE TABLE table_11167610_1 (torque VARCHAR, performance VARCHAR)"}, {"answer": "SELECT transmission FROM table_11167610_1 WHERE turbo = \"Yes (Mitsubishi TD04-16t )\"", "question": " what's the\u00a0transmission\u00a0where\u00a0turbo\u00a0is yes (mitsubishi td04-16t )", "context": "CREATE TABLE table_11167610_1 (transmission VARCHAR, turbo VARCHAR)"}, {"answer": "SELECT fuel_delivery FROM table_11167610_1 WHERE power = \"hp (kW) @6500 rpm\"", "question": " what's the\u00a0fuel delivery\u00a0where\u00a0power\u00a0is hp (kw) @6500 rpm", "context": "CREATE TABLE table_11167610_1 (fuel_delivery VARCHAR, power VARCHAR)"}, {"answer": "SELECT engine FROM table_11167610_1 WHERE turbo = \"Yes (Mitsubishi TD04-15g )\"", "question": "\" what's the engine with turbo being yes (mitsubishi td04-15g ) \"", "context": "CREATE TABLE table_11167610_1 (engine VARCHAR, turbo VARCHAR)"}, {"answer": "SELECT english_title FROM table_11173827_1 WHERE finale = 33 AND peak = 42", "question": "What is the english title that has finale as 33 and peak as 42?", "context": "CREATE TABLE table_11173827_1 (english_title VARCHAR, finale VARCHAR, peak VARCHAR)"}, {"answer": "SELECT english_title FROM table_11173827_1 WHERE premiere < 30.0 AND finale > 36.0", "question": "What is the english title where the premiere is less than 30.0 and the finale is bigger than 36.0?", "context": "CREATE TABLE table_11173827_1 (english_title VARCHAR, premiere VARCHAR, finale VARCHAR)"}, {"answer": "SELECT rank FROM table_11173827_1 WHERE chinese_title = \"\u7de3\u4f86\u81ea\u6709\u6a5f\"", "question": "What is the rank of the chinese title \u7de3\u4f86\u81ea\u6709\u6a5f?", "context": "CREATE TABLE table_11173827_1 (rank VARCHAR, chinese_title VARCHAR)"}, {"answer": "SELECT hk_viewers FROM table_11173827_1 WHERE chinese_title = \"\u5341\u5144\u5f1f\"", "question": "What amount is the number of hk viewers where chinese title is \u5341\u5144\u5f1f?", "context": "CREATE TABLE table_11173827_1 (hk_viewers VARCHAR, chinese_title VARCHAR)"}, {"answer": "SELECT weekly_rank FROM table_11178271_1 WHERE air_date = \"November 12, 2007\"", "question": "What is the weekly rank with an air date is november 12, 2007?", "context": "CREATE TABLE table_11178271_1 (weekly_rank VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT MIN(weekly_rank) FROM table_11178271_1 WHERE air_date = \"November 26, 2007\"", "question": "What is the lowest weekly rank with an air date of november 26, 2007?", "context": "CREATE TABLE table_11178271_1 (weekly_rank INTEGER, air_date VARCHAR)"}, {"answer": "SELECT viewers__m_ FROM table_11178271_1 WHERE rating = \"5.3\"", "question": "What is the viewers where the rating is 5.3?", "context": "CREATE TABLE table_11178271_1 (viewers__m_ VARCHAR, rating VARCHAR)"}, {"answer": "SELECT highest FROM table_11206787_5 WHERE stadium = \"Balmoor\"", "question": "What is the highest of balmoor/", "context": "CREATE TABLE table_11206787_5 (highest VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_11206787_5 WHERE stadium = \"Somerset Park\"", "question": "What is the number of capacity at somerset park?", "context": "CREATE TABLE table_11206787_5 (capacity VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_11206787_5 WHERE team = \"Airdrie United\"", "question": "What is the minimum capacity where airdrie united is?", "context": "CREATE TABLE table_11206787_5 (capacity INTEGER, team VARCHAR)"}, {"answer": "SELECT stadium FROM table_11206787_5 WHERE team = \"Alloa Athletic\"", "question": "What is the stadium for alloa athletic?", "context": "CREATE TABLE table_11206787_5 (stadium VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(highest) FROM table_11206787_5 WHERE team = \"Ayr United\"", "question": "What is the highest of ayr united?", "context": "CREATE TABLE table_11206787_5 (highest INTEGER, team VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_11206787_5", "question": "What is the average?", "context": "CREATE TABLE table_11206787_5 (average INTEGER)"}, {"answer": "SELECT date_of_appointment FROM table_11190568_7 WHERE team = \"Galway\"", "question": "When are team Galway's dates of appointment?", "context": "CREATE TABLE table_11190568_7 (date_of_appointment VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_11190568_7 WHERE outgoing_manager = \"Damien Fox\"", "question": "When are the vacancy dates for outgoing manager Damien Fox?", "context": "CREATE TABLE table_11190568_7 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_11190568_7 WHERE replaced_by = \"Davy FitzGerald\"", "question": "When is the date of vacancy of Davy Fitzgerald being a replacement?", "context": "CREATE TABLE table_11190568_7 (date_of_vacancy VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT team FROM table_11190568_7 WHERE outgoing_manager = \"John Meyler\"", "question": "Which team has the outgoing manager John Meyler?", "context": "CREATE TABLE table_11190568_7 (team VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT COUNT(4 AS _credits) FROM table_11200856_1 WHERE hand = \"Two pair\"", "question": "How many 4 credits is the hand two pair?", "context": "CREATE TABLE table_11200856_1 (hand VARCHAR)"}, {"answer": "SELECT duration FROM table_11210576_3 WHERE actor = \"Christian de la Fuente\"", "question": "What duration is listed for Christian de la Fuente?", "context": "CREATE TABLE table_11210576_3 (duration VARCHAR, actor VARCHAR)"}, {"answer": "SELECT final_episode FROM table_11210576_3 WHERE position = \"DEA Agent\"", "question": "What was the final episode for Dea Agent?", "context": "CREATE TABLE table_11210576_3 (final_episode VARCHAR, position VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_11207040_6 WHERE team = \"Greenock Morton\"", "question": "What days is greenock morton vacant?", "context": "CREATE TABLE table_11207040_6 (date_of_vacancy VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_11207040_6 WHERE outgoing_manager = \"Colin Hendry\"", "question": "What are the dates of the outgoing manager colin hendry does appointments? ", "context": "CREATE TABLE table_11207040_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT team FROM table_11207040_6 WHERE outgoing_manager = \"Jim McInally\"", "question": "What teams does jim mcinally manage?", "context": "CREATE TABLE table_11207040_6 (team VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_11207040_6 WHERE replaced_by = \"John Brown\"", "question": "What days are vacant that were replaced by john brown?", "context": "CREATE TABLE table_11207040_6 (date_of_vacancy VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_11206916_2 WHERE date_of_appointment = \"13 March 2008\"", "question": "What manner of departure is listed with an appointment date of 13 march 2008", "context": "CREATE TABLE table_11206916_2 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_11206916_2 WHERE outgoing_manager = \"Campbell Money\"", "question": "What is the date of appointment for outgoing manager Campbell Money", "context": "CREATE TABLE table_11206916_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT MIN(lowest) FROM table_11207040_5 WHERE stadium = \"East End Park\"", "question": "What is the lowest attendance that East End Park has ever had?", "context": "CREATE TABLE table_11207040_5 (lowest INTEGER, stadium VARCHAR)"}, {"answer": "SELECT team FROM table_11207040_5 WHERE stadium = \"Palmerston Park\"", "question": "What team plays at Palmerston Park?", "context": "CREATE TABLE table_11207040_5 (team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT MIN(lowest) FROM table_11207040_5 WHERE stadium = \"Cappielow\"", "question": "What is the lowest attandance recorded at Cappielow?", "context": "CREATE TABLE table_11207040_5 (lowest INTEGER, stadium VARCHAR)"}, {"answer": "SELECT MAX(highest) FROM table_11207040_5 WHERE team = \"St. Johnstone\"", "question": "What is the highest attendance at a game played by St. Johnstone?", "context": "CREATE TABLE table_11207040_5 (highest INTEGER, team VARCHAR)"}, {"answer": "SELECT MIN(highest) FROM table_11207040_5 WHERE team = \"Hamilton Academical\"", "question": "What is the highest attandence at a Hamilton Academical game?", "context": "CREATE TABLE table_11207040_5 (highest INTEGER, team VARCHAR)"}, {"answer": "SELECT champion FROM table_11214772_1 WHERE semi_finalist__number2 = \"NA\" AND location = \"Morrisville, NC\"", "question": " who is the\u00a0champion\u00a0where\u00a0semi-finalist #2\u00a0is na and\u00a0location\u00a0is morrisville, nc", "context": "CREATE TABLE table_11214772_1 (champion VARCHAR, semi_finalist__number2 VARCHAR, location VARCHAR)"}, {"answer": "SELECT score FROM table_11214772_1 WHERE year = \"2007\"", "question": " what's the\u00a0score\u00a0where\u00a0year\u00a0is 2007", "context": "CREATE TABLE table_11214772_1 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(semi_finalist__number2) FROM table_11214772_1 WHERE runner_up = \"East Carolina\"", "question": "what is the total number of\u00a0semi-finalist #2\u00a0where\u00a0runner-up\u00a0is east carolina", "context": "CREATE TABLE table_11214772_1 (semi_finalist__number2 VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT semi_finalist__number1 FROM table_11214772_1 WHERE runner_up = \"Elon University\"", "question": " who is the\u00a0semi-finalist #1\u00a0where\u00a0runner-up\u00a0is elon university", "context": "CREATE TABLE table_11214772_1 (semi_finalist__number1 VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT runner_up FROM table_11214772_1 WHERE year = \"2004\" AND champion = \"North Carolina State\"", "question": " who is the\u00a0runner-up\u00a0where\u00a0year\u00a0is 2004 and\u00a0champion\u00a0is north carolina state", "context": "CREATE TABLE table_11214772_1 (runner_up VARCHAR, year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT runner_up FROM table_11214772_1 WHERE location = \"Ellenton, FL\" AND year = \"2004\"", "question": " who is the\u00a0runner-up\u00a0where\u00a0location\u00a0is ellenton, fl and\u00a0year\u00a0is 2004", "context": "CREATE TABLE table_11214772_1 (runner_up VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT naturalisation_by_marriage FROM table_11214212_1 WHERE numer_of_jamaicans_granted_british_citizenship = 3165", "question": "what's the\u00a0naturalisation  by marriage\u00a0with\u00a0numer of jamaicans granted british citizenship\u00a0being 3165", "context": "CREATE TABLE table_11214212_1 (naturalisation_by_marriage VARCHAR, numer_of_jamaicans_granted_british_citizenship VARCHAR)"}, {"answer": "SELECT COUNT(numer_of_jamaicans_granted_british_citizenship) FROM table_11214212_1 WHERE naturalisation_by_marriage = 1060", "question": " how many\u00a0numer of jamaicans granted british citizenship\u00a0with\u00a0naturalisation  by marriage\u00a0being 1060", "context": "CREATE TABLE table_11214212_1 (numer_of_jamaicans_granted_british_citizenship VARCHAR, naturalisation_by_marriage VARCHAR)"}, {"answer": "SELECT naturalisation_by_marriage FROM table_11214212_1 WHERE registration_of_a_minor_child = 114", "question": "what's the\u00a0naturalisation by marriage\u00a0with\u00a0regbeingtration of a minor child\u00a0being 114", "context": "CREATE TABLE table_11214212_1 (naturalisation_by_marriage VARCHAR, registration_of_a_minor_child VARCHAR)"}, {"answer": "SELECT numer_of_jamaicans_granted_british_citizenship FROM table_11214212_1 WHERE naturalisation_by_residence = 927", "question": "what's the\u00a0numer of jamaicans granted british  citizenship\u00a0with\u00a0naturalisation by residence\u00a0being 927", "context": "CREATE TABLE table_11214212_1 (numer_of_jamaicans_granted_british_citizenship VARCHAR, naturalisation_by_residence VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_11214212_1 WHERE registration_of_a_minor_child = 281", "question": "what is the maximum\u00a0year\u00a0with\u00a0registration of a minor child\u00a0being 281", "context": "CREATE TABLE table_11214212_1 (year INTEGER, registration_of_a_minor_child VARCHAR)"}, {"answer": "SELECT COUNT(episode_titles) FROM table_11220799_2 WHERE first_air_date = \"March 6, 2008\"", "question": "How many episodes had their first air date on March 6, 2008?", "context": "CREATE TABLE table_11220799_2 (episode_titles VARCHAR, first_air_date VARCHAR)"}, {"answer": "SELECT finish FROM table_11220799_2 WHERE first_air_date = \"March 6, 2008\"", "question": "What were the results of episodes with the first air date of March 6, 2008?", "context": "CREATE TABLE table_11220799_2 (finish VARCHAR, first_air_date VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_11230937_2 WHERE no_in_season = 15", "question": "How many millions of viewers watched episode 15?", "context": "CREATE TABLE table_11230937_2 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_11230937_2 WHERE directed_by = \"Anthony Hemingway\"", "question": "How many millions of viewers watched the episode directed by Anthony Hemingway?", "context": "CREATE TABLE table_11230937_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_11222744_2 WHERE catalog_number = \"80809\"", "question": "The Catalog number is 80809 what is the title?", "context": "CREATE TABLE table_11222744_2 (title VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT COUNT(format) FROM table_11222744_2 WHERE title = \"Beginning Callanetics\"", "question": "where title is beginning callanetics , what is the total of format ?", "context": "CREATE TABLE table_11222744_2 (format VARCHAR, title VARCHAR)"}, {"answer": "SELECT studio FROM table_11222744_2 WHERE catalog_number = \"81258\"", "question": "where catalog number is 81258 , what are all the studio ?", "context": "CREATE TABLE table_11222744_2 (studio VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT copyright_information FROM table_11222744_2 WHERE title = \"AM/PM Callanetics\"", "question": "where title is am/pm callanetics , what are all the copyright information?", "context": "CREATE TABLE table_11222744_2 (copyright_information VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(gf_attendance) FROM table_11236195_2 WHERE location = \"Sydney Football Stadium, Sydney (6)\"", "question": "What was the GF attendance at the location of Sydney Football Stadium, Sydney (6)?", "context": "CREATE TABLE table_11236195_2 (gf_attendance VARCHAR, location VARCHAR)"}, {"answer": "SELECT losingteam FROM table_11236195_2 WHERE score = \"24-12\"", "question": "Which losing team had a score of 24-12?", "context": "CREATE TABLE table_11236195_2 (losingteam VARCHAR, score VARCHAR)"}, {"answer": "SELECT losingteam FROM table_11236195_2 WHERE season = 1993", "question": "What was the losing team in the 1993 season?", "context": "CREATE TABLE table_11236195_2 (losingteam VARCHAR, season VARCHAR)"}, {"answer": "SELECT compression_ratio FROM table_1123802_1 WHERE engine = \"Wasp Jr. T1B2\"", "question": "What was the compression ration when the engine was Wasp Jr. T1B2?", "context": "CREATE TABLE table_1123802_1 (compression_ratio VARCHAR, engine VARCHAR)"}, {"answer": "SELECT COUNT(power), _takeoff FROM table_1123802_1 WHERE engine = \"Wasp Jr. T1B2\"", "question": "When the engine is Wasp Jr. T1B2, what is the number needed for takeoff power?", "context": "CREATE TABLE table_1123802_1 (_takeoff VARCHAR, power VARCHAR, engine VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_11235334_2 WHERE air_date = \"October 27, 2008\"", "question": "How many episodes aired on october 27, 2008", "context": "CREATE TABLE table_11235334_2 (episode VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_11235334_2 WHERE air_date = \"September 29, 2008\"", "question": "what is the most # that aired on september 29, 2008?", "context": "CREATE TABLE table_11235334_2 (_number INTEGER, air_date VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_11236195_5 WHERE winningteam = \"Canterbury Bulldogs (8)\"", "question": "How many seasons did the canterbury bulldogs (8) win?", "context": "CREATE TABLE table_11236195_5 (season VARCHAR, winningteam VARCHAR)"}, {"answer": "SELECT COUNT(losingteam) FROM table_11236195_5 WHERE location = \"Sydney Football Stadium, Sydney (11)\"", "question": "How many teams lost at the sydney football stadium, sydney (11)?", "context": "CREATE TABLE table_11236195_5 (losingteam VARCHAR, location VARCHAR)"}, {"answer": "SELECT grand_finaldate FROM table_11236195_5 WHERE losingteam = \"St. George-Illawarra Dragons\"", "question": "What was the date that the st. george-illawarra dragons lost?", "context": "CREATE TABLE table_11236195_5 (grand_finaldate VARCHAR, losingteam VARCHAR)"}, {"answer": "SELECT winningteam FROM table_11236195_5 WHERE clive_churchill_medal = \"Brett Kimmorley\"", "question": "Brett kimmorley, who was chosen for the clive churchill medal belonged to what team?", "context": "CREATE TABLE table_11236195_5 (winningteam VARCHAR, clive_churchill_medal VARCHAR)"}, {"answer": "SELECT time_slot__est_ FROM table_11244302_1 WHERE rating = \"6.3\"", "question": "What time slots have a 6.3 rating", "context": "CREATE TABLE table_11244302_1 (time_slot__est_ VARCHAR, rating VARCHAR)"}, {"answer": "SELECT air_date FROM table_11244302_1 WHERE share = 11", "question": "Which air date had an 11 share", "context": "CREATE TABLE table_11244302_1 (air_date VARCHAR, share VARCHAR)"}, {"answer": "SELECT last_appearance FROM table_11240028_3 WHERE relationship = \"Late wife of Mac Taylor\"", "question": "What episode had the last appearances of the late wife of mac taylor?", "context": "CREATE TABLE table_11240028_3 (last_appearance VARCHAR, relationship VARCHAR)"}, {"answer": "SELECT portrayed_by FROM table_11240028_3 WHERE character = \"Reed Garrett\"", "question": "Which characters were portrayed by reed garrett?", "context": "CREATE TABLE table_11240028_3 (portrayed_by VARCHAR, character VARCHAR)"}, {"answer": "SELECT COUNT(portrayed_by) FROM table_11240028_3 WHERE relationship = \"Informant of Don Flack\"", "question": "How many characters were portrayed by the informant of don flack?", "context": "CREATE TABLE table_11240028_3 (portrayed_by VARCHAR, relationship VARCHAR)"}, {"answer": "SELECT last_appearance FROM table_11240028_3 WHERE character = \"Rikki Sandoval\"", "question": "What episode was the last appearance of the character, rikki sandoval?", "context": "CREATE TABLE table_11240028_3 (last_appearance VARCHAR, character VARCHAR)"}, {"answer": "SELECT last_appearance FROM table_11240028_1 WHERE portrayed_by = \"Sela Ward\"", "question": "On which episode did actress Sela Ward make her last appearance?", "context": "CREATE TABLE table_11240028_1 (last_appearance VARCHAR, portrayed_by VARCHAR)"}, {"answer": "SELECT episodes FROM table_11240028_1 WHERE portrayed_by = \"Vanessa Ferlito\"", "question": "How many episodes did actress Vanessa Ferlito appear in?", "context": "CREATE TABLE table_11240028_1 (episodes VARCHAR, portrayed_by VARCHAR)"}, {"answer": "SELECT COUNT(duration) FROM table_11240028_1 WHERE portrayed_by = \"Robert Joy\"", "question": "What was the duration of Robert Joy's portrayal?", "context": "CREATE TABLE table_11240028_1 (duration VARCHAR, portrayed_by VARCHAR)"}, {"answer": "SELECT last_appearance FROM table_11240028_1 WHERE portrayed_by = \"A. J. Buckley\"", "question": "Which episode did actor A. J. Buckley last appear in?", "context": "CREATE TABLE table_11240028_1 (last_appearance VARCHAR, portrayed_by VARCHAR)"}, {"answer": "SELECT MIN(top_division_titles) FROM table_11250_4", "question": "What is the least top division titles?", "context": "CREATE TABLE table_11250_4 (top_division_titles INTEGER)"}, {"answer": "SELECT MIN(number_of_seasons_in_top_division) FROM table_11250_4", "question": "What is the least number of seasons in top division?", "context": "CREATE TABLE table_11250_4 (number_of_seasons_in_top_division INTEGER)"}, {"answer": "SELECT COUNT(viewers__millions_) FROM table_11253290_2 WHERE rank__week_ = \"20\"", "question": "How many viewers (millions) were there for rank (week) 20?", "context": "CREATE TABLE table_11253290_2 (viewers__millions_ VARCHAR, rank__week_ VARCHAR)"}, {"answer": "SELECT MIN(rank__night_) FROM table_11253290_2 WHERE viewers__millions_ = \"5.25\"", "question": "What is the lowest rank (night) for having viewers (millions) 5.25?", "context": "CREATE TABLE table_11253290_2 (rank__night_ INTEGER, viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(viewers__millions_) FROM table_11253290_2 WHERE rank__night_ = 11", "question": "How many times was the rank (night) 11?", "context": "CREATE TABLE table_11253290_2 (viewers__millions_ VARCHAR, rank__night_ VARCHAR)"}, {"answer": "SELECT carbon_dioxide_emissions_per_year__10_6_tons___2006_ FROM table_11251601_2 WHERE carbon_dioxide_emissions_per_year__tons_per_person___2007_ = \"1.4\"", "question": "WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS  IN 2006 IN THE COUNTRY WHOSE  CO2 EMISSIONS (TONS PER PERSON)  REACHED 1.4 IN 2OO7?", "context": "CREATE TABLE table_11251601_2 (carbon_dioxide_emissions_per_year__10_6_tons___2006_ VARCHAR, carbon_dioxide_emissions_per_year__tons_per_person___2007_ VARCHAR)"}, {"answer": "SELECT MAX(carbon_dioxide_emissions_per_year__10_6_tons___2006_) FROM table_11251601_2 WHERE country = \"Russia\"", "question": "HOW MANY TONS OF CO2 EMISSIONS DID RUSSIA PRODUCE IN 2006?", "context": "CREATE TABLE table_11251601_2 (carbon_dioxide_emissions_per_year__10_6_tons___2006_ INTEGER, country VARCHAR)"}, {"answer": "SELECT percentage_of_global_total FROM table_11251601_2 WHERE country = \"India\"", "question": "WHAT PERCENTAGE OF GLOBAL TOTAL EMISSIONS DID INDIA PRODUCE?", "context": "CREATE TABLE table_11251601_2 (percentage_of_global_total VARCHAR, country VARCHAR)"}, {"answer": "SELECT percentage_of_global_total FROM table_11251601_2 WHERE carbon_dioxide_emissions_per_year__tons_per_person___2007_ = \"4.9\"", "question": "HOW MUCH IS THE PERCENTAGE OF GLOBAL TOTAL EMISSIONS IN THE COUNTRY THAT PRODUCED 4.9 TONS PER PERSON IN 2007?", "context": "CREATE TABLE table_11251601_2 (percentage_of_global_total VARCHAR, carbon_dioxide_emissions_per_year__tons_per_person___2007_ VARCHAR)"}, {"answer": "SELECT MAX(avg_emission_per_km_2_of_its_land__tons_) FROM table_11251601_2 WHERE country = \"India\"", "question": "WHAT WAS THE AVERAGE EMISSION PER KM 2 IN INDIA?", "context": "CREATE TABLE table_11251601_2 (avg_emission_per_km_2_of_its_land__tons_ INTEGER, country VARCHAR)"}, {"answer": "SELECT RANK(_number) FROM table_11251109_3 WHERE air_date = \"October 26, 2007\"", "question": "What is the rank number that aired october 26, 2007?", "context": "CREATE TABLE table_11251109_3 (_number VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT COUNT(Rank) AS (_number) FROM table_11251109_3 WHERE viewers__m_ = \"5.96\"", "question": "What is the number of rank with the viewership of 5.96 million?", "context": "CREATE TABLE table_11251109_3 (Rank VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT viewers__m_ FROM table_11251109_3 WHERE air_date = \"November 9, 2007\"", "question": "What is the viewership on november 9, 2007?", "context": "CREATE TABLE table_11251109_3 (viewers__m_ VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT MAX(points_awarded__platinum_) FROM table_11254821_2 WHERE points_awarded__gold_ = 6", "question": "How many platinum points were awarded when 6 gold points were awarded?", "context": "CREATE TABLE table_11254821_2 (points_awarded__platinum_ INTEGER, points_awarded__gold_ VARCHAR)"}, {"answer": "SELECT finishing_position FROM table_11254821_2 WHERE points_awarded__platinum_ = 15", "question": "What was the range of finishing position for 15 awarded platinum points?", "context": "CREATE TABLE table_11254821_2 (finishing_position VARCHAR, points_awarded__platinum_ VARCHAR)"}, {"answer": "SELECT MAX(points_awarded__platinum_) FROM table_11254821_2 WHERE finishing_position = \"5th\"", "question": "How many platinum points were awarded for 5th place?", "context": "CREATE TABLE table_11254821_2 (points_awarded__platinum_ INTEGER, finishing_position VARCHAR)"}, {"answer": "SELECT points_awarded__platinum_ FROM table_11254821_2 WHERE points_awarded__silver_ = 70", "question": "How many platinum points were awarded when 70 silver points were awarded?", "context": "CREATE TABLE table_11254821_2 (points_awarded__platinum_ VARCHAR, points_awarded__silver_ VARCHAR)"}, {"answer": "SELECT points_awarded__platinum_ FROM table_11254821_2 WHERE points_awarded__gold_ = 9", "question": "How many platinum points were awarded when 9 gold points were awarded?", "context": "CREATE TABLE table_11254821_2 (points_awarded__platinum_ VARCHAR, points_awarded__gold_ VARCHAR)"}, {"answer": "SELECT rank___number_ FROM table_11274401_2 WHERE viewers__m_ = \"2.65\"", "question": "How did the episode rank that had 2.65 million viewers?", "context": "CREATE TABLE table_11274401_2 (rank___number_ VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT MIN(share) FROM table_11274401_2 WHERE rank___number_ = \"85\"", "question": "What was the share for the first episode that ranked 85?", "context": "CREATE TABLE table_11274401_2 (share INTEGER, rank___number_ VARCHAR)"}, {"answer": "SELECT timeslot FROM table_11274401_2 WHERE no = 15", "question": "Which timeslot did episode no. 15 hold?", "context": "CREATE TABLE table_11274401_2 (timeslot VARCHAR, no VARCHAR)"}, {"answer": "SELECT timeslot FROM table_11274401_3 WHERE air_date = \"May 12, 2009\"", "question": "What was the timeslot for the episode that aired on May 12, 2009?", "context": "CREATE TABLE table_11274401_3 (timeslot VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT COUNT(air_date) FROM table_11274401_3 WHERE viewers__m_ = \"1.82\"", "question": "What's the total number of episodes whose original airings were viewed by 1.82 million viewers?", "context": "CREATE TABLE table_11274401_3 (air_date VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT rating FROM table_11274401_3 WHERE air_date = \"May 5, 2009\"", "question": "What's the rating of the episode originally aired on May 5, 2009?", "context": "CREATE TABLE table_11274401_3 (rating VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT episode FROM table_11274401_3 WHERE viewers__m_ = \"2.05\"", "question": "What episode was seen by 2.05 million viewers?", "context": "CREATE TABLE table_11274401_3 (episode VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT extroverted, _relationship_oriented FROM table_11256021_1 WHERE moderate = \"Introverted Sanguine\"", "question": " what's the\u00a0extroverted, relationship-oriented\u00a0where\u00a0moderate\u00a0is introverted sanguine", "context": "CREATE TABLE table_11256021_1 (extroverted VARCHAR, _relationship_oriented VARCHAR, moderate VARCHAR)"}, {"answer": "SELECT founder FROM table_11256021_1 WHERE moderate = \"ether\"", "question": " what's the\u00a0founder\u00a0where\u00a0moderate\u00a0is ether", "context": "CREATE TABLE table_11256021_1 (founder VARCHAR, moderate VARCHAR)"}, {"answer": "SELECT extroverted, _relationship_oriented FROM table_11256021_1 WHERE date = \"c. 1928\"", "question": " what's the\u00a0extroverted, relationship-oriented\u00a0where\u00a0date\u00a0is c. 1928", "context": "CREATE TABLE table_11256021_1 (extroverted VARCHAR, _relationship_oriented VARCHAR, date VARCHAR)"}, {"answer": "SELECT founder FROM table_11256021_1 WHERE date = \"c. 1900\"", "question": " who is the\u00a0founder\u00a0where\u00a0date\u00a0is c. 1900", "context": "CREATE TABLE table_11256021_1 (founder VARCHAR, date VARCHAR)"}, {"answer": "SELECT batting_team FROM table_11303072_5 WHERE runs = \"276\"", "question": "What is the batting team where the runs are 276?", "context": "CREATE TABLE table_11303072_5 (batting_team VARCHAR, runs VARCHAR)"}, {"answer": "SELECT batting_team FROM table_11303072_5 WHERE fielding_team = \"Durham\"", "question": "Name the batting team at Durham", "context": "CREATE TABLE table_11303072_5 (batting_team VARCHAR, fielding_team VARCHAR)"}, {"answer": "SELECT batting_team FROM table_11303072_5 WHERE batting_partners = \"Thilina Kandamby and Rangana Herath\"", "question": "What is the batting team with the batting partnets of thilina kandamby and rangana herath?", "context": "CREATE TABLE table_11303072_5 (batting_team VARCHAR, batting_partners VARCHAR)"}, {"answer": "SELECT fielding_team FROM table_11303072_5 WHERE runs = \"155\"", "question": "What is the fielding team with 155 runs?", "context": "CREATE TABLE table_11303072_5 (fielding_team VARCHAR, runs VARCHAR)"}, {"answer": "SELECT batting_partners FROM table_11303072_5 WHERE runs = \"226\"", "question": "What is the batting partners with runs of 226?", "context": "CREATE TABLE table_11303072_5 (batting_partners VARCHAR, runs VARCHAR)"}, {"answer": "SELECT nationality FROM table_11303072_9 WHERE player = \"David Bairstow\"", "question": "What is the nationality of David Bairstow?", "context": "CREATE TABLE table_11303072_9 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_11303072_9 WHERE rank = 2", "question": "What are the players whose rank is 2?", "context": "CREATE TABLE table_11303072_9 (player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT stumpings FROM table_11303072_9 WHERE player = \"Paul Nixon\"", "question": "How many stumpings has Paul Nixon in his career?", "context": "CREATE TABLE table_11303072_9 (stumpings VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_11303072_9 WHERE player = \"Adam Gilchrist\"", "question": "Where is Adam Gilchrist from?", "context": "CREATE TABLE table_11303072_9 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT title FROM table_1130632_1 WHERE us_viewers__million_ = \"19.48\"", "question": "What are the title that have 19.48 million u.s. viewers?", "context": "CREATE TABLE table_1130632_1 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_1130632_1 WHERE us_viewers__million_ = \"18.73\"", "question": "Which titles have 18.73 u.s. viewers.", "context": "CREATE TABLE table_1130632_1 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_1130632_1 WHERE us_viewers__million_ = \"18.73\"", "question": "Who wrote all the shows with 18.73 u.s. viewers?", "context": "CREATE TABLE table_1130632_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT rank___wjc__ FROM table_1131183_2 WHERE metro_area = \"Los Angeles\"", "question": "What is the rank where the area is Los Angeles?", "context": "CREATE TABLE table_1131183_2 (rank___wjc__ VARCHAR, metro_area VARCHAR)"}, {"answer": "SELECT COUNT(number_of_jews__wjc_) FROM table_1131183_2 WHERE rank__arda_ = 1", "question": "What is the number of jews where the rank is 1?", "context": "CREATE TABLE table_1131183_2 (number_of_jews__wjc_ VARCHAR, rank__arda_ VARCHAR)"}, {"answer": "SELECT number_of_jews__asarb_ FROM table_1131183_2 WHERE metro_area = \"Philadelphia\"", "question": "What is the number of jews asarb where the metro area is philadelphia?", "context": "CREATE TABLE table_1131183_2 (number_of_jews__asarb_ VARCHAR, metro_area VARCHAR)"}, {"answer": "SELECT open_1st_viii FROM table_11318462_5 WHERE u15_6th_iv = \"BGS\"", "question": "what are all the open 1st viii with u15 6th iv being bgs", "context": "CREATE TABLE table_11318462_5 (open_1st_viii VARCHAR, u15_6th_iv VARCHAR)"}, {"answer": "SELECT u16_2nd_viii FROM table_11318462_5 WHERE u15_3rd_iv = \"BBC\"", "question": "what are all the u16 2nd viii with u15 3rd iv being bbc", "context": "CREATE TABLE table_11318462_5 (u16_2nd_viii VARCHAR, u15_3rd_iv VARCHAR)"}, {"answer": "SELECT open_1st_viii FROM table_11318462_5 WHERE u15_4th_iv = \"GT\"", "question": "what are all the open 1st viii with u15 4th iv being gt", "context": "CREATE TABLE table_11318462_5 (open_1st_viii VARCHAR, u15_4th_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\"", "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 u15_3rd_iv FROM table_11318462_5 WHERE u15_4th_iv = \"BBC\"", "question": "what are all the u15 3rd iv with u15 4th iv being bbc", "context": "CREATE TABLE table_11318462_5 (u15_3rd_iv VARCHAR, u15_4th_iv VARCHAR)"}, {"answer": "SELECT COUNT(open_2nd_viii) FROM table_11318462_5 WHERE u15_3rd_iv = \"GT\"", "question": "how many open 2nd viii had u15 3rd iv being gt", "context": "CREATE TABLE table_11318462_5 (open_2nd_viii VARCHAR, u15_3rd_iv VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_11318462_29 WHERE enrolment = 850", "question": "How many schools have an enrollment of 850?", "context": "CREATE TABLE table_11318462_29 (founded VARCHAR, enrolment VARCHAR)"}, {"answer": "SELECT location FROM table_11318462_29 WHERE school = \"Brisbane Girls' Grammar school\"", "question": "What is the location of the school named Brisbane Girls' Grammar School?", "context": "CREATE TABLE table_11318462_29 (location VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(school) FROM table_11318462_29 WHERE location = \"South Brisbane\"", "question": "How many schools are located in South Brisbane?", "context": "CREATE TABLE table_11318462_29 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_11318462_29 WHERE abbreviation = \"SPLC\"", "question": "When was SPLC founded?", "context": "CREATE TABLE table_11318462_29 (founded INTEGER, abbreviation VARCHAR)"}, {"answer": "SELECT COUNT(enrolment) FROM table_11318462_29 WHERE in_competition_since = 1990 AND abbreviation = \"STM\"", "question": "What is the enrollment of STM which has been in competition since 1990?", "context": "CREATE TABLE table_11318462_29 (enrolment VARCHAR, in_competition_since VARCHAR, abbreviation VARCHAR)"}, {"answer": "SELECT rd FROM table_1132568_3 WHERE grand_prix = \"Monaco grand_prix\"", "question": "What number is the Monaco Grand Prix?", "context": "CREATE TABLE table_1132568_3 (rd VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT pole_position FROM table_1132568_3 WHERE grand_prix = \"French grand_prix\"", "question": "Who is in the pole position for the French Grand Prix?", "context": "CREATE TABLE table_1132568_3 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT rd FROM table_1132568_3 WHERE fastest_lap = \"Michael Schumacher\" AND constructor = \"Ferrari\" AND pole_position = \"Michael Schumacher\"", "question": "What are the numbers for the raceways that are constructed by Ferrari, with Michael Schumacher holding the fastest lap and pole position?", "context": "CREATE TABLE table_1132568_3 (rd VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT COUNT(rd) FROM table_1132568_3 WHERE grand_prix = \"Austrian grand_prix\"", "question": "How many on the list are called the Austrian Grand Prix?", "context": "CREATE TABLE table_1132568_3 (rd VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT rd FROM table_1132568_3 WHERE grand_prix = \"Canadian grand_prix\"", "question": "What number is the Canadian Grand Prix on the list?", "context": "CREATE TABLE table_1132568_3 (rd VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT rd FROM table_1132588_3 WHERE grand_prix = \"Canadian grand_prix\"", "question": "What is the rd for the canadian grand prix?", "context": "CREATE TABLE table_1132588_3 (rd VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_1132588_3 WHERE grand_prix = \"European grand_prix\"", "question": "What is the fastest lap for the european grand prix?", "context": "CREATE TABLE table_1132588_3 (fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT pole_position FROM table_1132588_3 WHERE constructor = \"Ferrari\" AND grand_prix = \"Austrian grand_prix\"", "question": "What is the pole position for the ferrari at the austrian grand prix?", "context": "CREATE TABLE table_1132588_3 (pole_position VARCHAR, constructor VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT outcome FROM table_11326124_3 WHERE round = \"2R\"", "question": "What was the result of round 2r?", "context": "CREATE TABLE table_11326124_3 (outcome VARCHAR, round VARCHAR)"}, {"answer": "SELECT against FROM table_11326124_3 WHERE opponent = \"Tina Pisnik\"", "question": "Who did Tina Pisnik verse?", "context": "CREATE TABLE table_11326124_3 (against VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_11326124_3 WHERE round = \"2R\"", "question": "How many rounds were 2r?", "context": "CREATE TABLE table_11326124_3 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT night_rank FROM table_11354111_3 WHERE viewers__m_ = \"6.63\"", "question": "what's the night rank with viewers (m) of 6.63", "context": "CREATE TABLE table_11354111_3 (night_rank VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT overall_rank FROM table_11354111_3 WHERE viewers__m_ = \"7.44\"", "question": "what's the overall rank with viewers (m) of 7.44", "context": "CREATE TABLE table_11354111_3 (overall_rank VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT night_rank FROM table_11354111_3 WHERE rating = \"6.2\"", "question": "what's the night rank with rating of 6.2", "context": "CREATE TABLE table_11354111_3 (night_rank VARCHAR, rating VARCHAR)"}, {"answer": "SELECT COUNT(group_b_winner) FROM table_1137142_1 WHERE group_c_winner = \"Francavilla\"", "question": "What is the number of group b winner for francavilla?", "context": "CREATE TABLE table_1137142_1 (group_b_winner VARCHAR, group_c_winner VARCHAR)"}, {"answer": "SELECT group_a_winner FROM table_1137142_1 WHERE group_b_winner = \"Modena\"", "question": "What is the group a winner for modena?", "context": "CREATE TABLE table_1137142_1 (group_a_winner VARCHAR, group_b_winner VARCHAR)"}, {"answer": "SELECT group_a_winner FROM table_1137142_1 WHERE group_c_winner = \"Vis Pesaro\"", "question": "What is the group a winner for vis pesaro?", "context": "CREATE TABLE table_1137142_1 (group_a_winner VARCHAR, group_c_winner VARCHAR)"}, {"answer": "SELECT group_a_winner FROM table_1137142_1 WHERE group_d_winner = \"Nocerina\"", "question": "What group a winner was for nocerina?", "context": "CREATE TABLE table_1137142_1 (group_a_winner VARCHAR, group_d_winner VARCHAR)"}, {"answer": "SELECT group_d_winner FROM table_1137142_1 WHERE group_b_winner = \"Modena\"", "question": "What was the group d winner for modena?", "context": "CREATE TABLE table_1137142_1 (group_d_winner VARCHAR, group_b_winner VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_1137695_3 WHERE grand_prix = \"Brazilian grand_prix\"", "question": "Who had the fastest lap at the brazilian grand prix?", "context": "CREATE TABLE table_1137695_3 (fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT pole_position FROM table_1137695_3 WHERE grand_prix = \"Monaco grand_prix\"", "question": "Who was on the pole position at the monaco grand prix?", "context": "CREATE TABLE table_1137695_3 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1137695_3 WHERE fastest_lap = \"Michael Schumacher\" AND pole_position = \"Michael Schumacher\"", "question": "Who was the winning driver when Michael Schumacher had the pole and the fastest lap?", "context": "CREATE TABLE table_1137695_3 (winning_driver VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT location FROM table_1137704_2 WHERE date = \"5 April\"", "question": "what are all the\u00a0location\u00a0where\u00a0date\u00a0is 5 april", "context": "CREATE TABLE table_1137704_2 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT pole_position FROM table_1137704_2 WHERE date = \"26 July\"", "question": "what are all the\u00a0pole position\u00a0where\u00a0date\u00a0is 26 july", "context": "CREATE TABLE table_1137704_2 (pole_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_1137704_2 WHERE fastest_lap = \"Riccardo Patrese\" AND location = \"Interlagos\"", "question": "who are all the\u00a0winning constructors\u00a0where\u00a0fastest lap\u00a0is riccardo patrese and\u00a0location\u00a0is interlagos", "context": "CREATE TABLE table_1137704_2 (winning_constructor VARCHAR, fastest_lap VARCHAR, location VARCHAR)"}, {"answer": "SELECT report FROM table_1137704_2 WHERE winning_constructor = \"Williams - Renault\" AND grand_prix = \"South African grand_prix\"", "question": "what are all the\u00a0report\u00a0where\u00a0winning constructor\u00a0is williams - renault and\u00a0grand prix\u00a0is south african grand prix", "context": "CREATE TABLE table_1137704_2 (report VARCHAR, winning_constructor VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_1137704_2 WHERE grand_prix = \"German grand_prix\"", "question": "whatthe minimum\u00a0round\u00a0where\u00a0grand prix\u00a0is german grand prix", "context": "CREATE TABLE table_1137704_2 (round INTEGER, grand_prix VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_1137704_2 WHERE grand_prix = \"Portuguese grand_prix\"", "question": "what of the total number of\u00a0date\u00a0where\u00a0grand prix\u00a0is portuguese grand prix", "context": "CREATE TABLE table_1137704_2 (date VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT COUNT(pole_position) FROM table_1137707_2 WHERE round = 15", "question": "What is the number of pole position with a round of 15?", "context": "CREATE TABLE table_1137707_2 (pole_position VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_1137707_2 WHERE location = \"Circuit Gilles Villeneuve\"", "question": "What is the date of the circuit gilles villeneuve?", "context": "CREATE TABLE table_1137707_2 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_1137707_2 WHERE fastest_lap = \"Thierry Boutsen\"", "question": "What is the location of thierry boutsen?", "context": "CREATE TABLE table_1137707_2 (location VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT pole_position FROM table_1137718_2 WHERE grand_prix = \"German grand_prix\"", "question": "Who had the pole position at the German Grand Prix?", "context": "CREATE TABLE table_1137718_2 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT MIN(rd) FROM table_1137718_2 WHERE date = \"22 October\"", "question": "Which rd. occurred on 22 October?", "context": "CREATE TABLE table_1137718_2 (rd INTEGER, date VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1137718_2 WHERE date = \"13 August\"", "question": "Who was the winning driver on 13 August?", "context": "CREATE TABLE table_1137718_2 (winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_1137718_2 WHERE grand_prix = \"Mexican grand_prix\"", "question": "What was the fastest lap at the Mexican Grand Prix?", "context": "CREATE TABLE table_1137718_2 (fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT MIN(rd) FROM table_1137718_2 WHERE location = \"Hockenheimring\"", "question": "Which rd. took place at Hockenheimring?", "context": "CREATE TABLE table_1137718_2 (rd INTEGER, location VARCHAR)"}, {"answer": "SELECT COUNT(fastest_lap) FROM table_1137718_2 WHERE location = \"Silverstone\"", "question": "How many drivers had the fastest lap at Silverstone?", "context": "CREATE TABLE table_1137718_2 (fastest_lap VARCHAR, location VARCHAR)"}, {"answer": "SELECT android FROM table_11381701_3 WHERE windows = \"1.15%\"", "question": "What is the percentage of Android use when Windows is 1.15%?", "context": "CREATE TABLE table_11381701_3 (android VARCHAR, windows VARCHAR)"}, {"answer": "SELECT date FROM table_11381701_3 WHERE bada = \"0.05%\"", "question": "On which dates was the value of Bada 0.05%?", "context": "CREATE TABLE table_11381701_3 (date VARCHAR, bada VARCHAR)"}, {"answer": "SELECT windows FROM table_11381701_3 WHERE other = \"0.7%\"", "question": "When the value of \"other\" is 0.7%, what is the percentage for Windows?", "context": "CREATE TABLE table_11381701_3 (windows VARCHAR, other VARCHAR)"}, {"answer": "SELECT other FROM table_11381701_3 WHERE symbian___series_40 = \"0.40%\"", "question": "When Symbian/Series 40 is 0.40%, what is the percentage of \"other\"?", "context": "CREATE TABLE table_11381701_3 (other VARCHAR, symbian___series_40 VARCHAR)"}, {"answer": "SELECT source FROM table_11381701_3 WHERE blackberry = \"2.9%\"", "question": "Which source shows Blackberry at 2.9%?", "context": "CREATE TABLE table_11381701_3 (source VARCHAR, blackberry VARCHAR)"}, {"answer": "SELECT english_name FROM table_11390711_4 WHERE abbreviation = \"MTC\"", "question": "Which colleges have the english abbreviation MTC?", "context": "CREATE TABLE table_11390711_4 (english_name VARCHAR, abbreviation VARCHAR)"}, {"answer": "SELECT japanese_orthography FROM table_11390711_4 WHERE english_name = \"National Farmers Academy\"", "question": "What is the Japanese orthography for the English name National Farmers Academy?", "context": "CREATE TABLE table_11390711_4 (japanese_orthography VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT abbreviation FROM table_11390711_4 WHERE pronouciation = \"K\u014dk\u016b Daigakk\u014d\"", "question": "What is the abbreviation for the college pronounced \"k\u014dk\u016b daigakk\u014d\"?", "context": "CREATE TABLE table_11390711_4 (abbreviation VARCHAR, pronouciation VARCHAR)"}, {"answer": "SELECT COUNT(provider_iai_) FROM table_11390711_4 WHERE foundation = 1964", "question": "How many providers were founded in 1964?", "context": "CREATE TABLE table_11390711_4 (provider_iai_ VARCHAR, foundation VARCHAR)"}, {"answer": "SELECT japanese_orthography FROM table_11390711_4 WHERE english_name = \"National Fisheries University\"", "question": "What is the Japanese orthography for National Fisheries University?", "context": "CREATE TABLE table_11390711_4 (japanese_orthography VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT MIN(Half) AS marathon__womens_ FROM table_11391954_3", "question": "What is the minimum number for the half marathon (womens)?", "context": "CREATE TABLE table_11391954_3 (Half INTEGER)"}, {"answer": "SELECT COUNT(Half) AS marathon__mens_ FROM table_11391954_3 WHERE country = \"Kazakhstan\"", "question": "Whatis the total number of half marathon (mens) that represented kazakhstan?", "context": "CREATE TABLE table_11391954_3 (Half VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(Half) AS marathon__womens_ FROM table_11391954_3 WHERE country = \"Moldova\"", "question": "How many times is Moldova the winner of half marathon (womens)?", "context": "CREATE TABLE table_11391954_3 (Half VARCHAR, country VARCHAR)"}, {"answer": "SELECT constructor FROM table_1139087_2 WHERE grand_prix = \"Brazilian grand_prix\"", "question": "What is the make of the car that won the brazilian grand prix?", "context": "CREATE TABLE table_1139087_2 (constructor VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_1139087_2 WHERE rd = 8", "question": "Who drove the fastest lap for round 8?", "context": "CREATE TABLE table_1139087_2 (fastest_lap VARCHAR, rd VARCHAR)"}, {"answer": "SELECT date FROM table_1139087_2 WHERE location = \"Jerez\"", "question": "What day was the grand prix in jerez?", "context": "CREATE TABLE table_1139087_2 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_1139087_2 WHERE location = \"Detroit\"", "question": "What event was in detroit?", "context": "CREATE TABLE table_1139087_2 (grand_prix VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(grand_prix) FROM table_1139087_2 WHERE constructor = \"McLaren - Honda\" AND fastest_lap = \"Nigel Mansell\"", "question": "How many events did nigel mansell drive the fastest and a mclaren - honda win?", "context": "CREATE TABLE table_1139087_2 (grand_prix VARCHAR, constructor VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT date FROM table_1139087_2 WHERE grand_prix = \"French grand_prix\"", "question": "What day is the french grand prix", "context": "CREATE TABLE table_1139087_2 (date VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT winners FROM table_1139835_3 WHERE season_result = \"7th\"", "question": " who is the\u00a0winners\u00a0where\u00a0season result\u00a0is 7th", "context": "CREATE TABLE table_1139835_3 (winners VARCHAR, season_result VARCHAR)"}, {"answer": "SELECT winners FROM table_1139835_3 WHERE season_result = \"9th\"", "question": " who is the\u00a0winners\u00a0where\u00a0season result\u00a0is 9th", "context": "CREATE TABLE table_1139835_3 (winners VARCHAR, season_result VARCHAR)"}, {"answer": "SELECT grand_finalist FROM table_1139835_3 WHERE winners = \"Collingwood\"", "question": " what's the\u00a0grand finalist\u00a0where\u00a0winners\u00a0is collingwood", "context": "CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, winners VARCHAR)"}, {"answer": "SELECT season_result FROM table_1139835_3 WHERE margin = 51", "question": " who is the\u00a0season result\u00a0where\u00a0margin\u00a0is 51", "context": "CREATE TABLE table_1139835_3 (season_result VARCHAR, margin VARCHAR)"}, {"answer": "SELECT grand_finalist FROM table_1139835_3 WHERE scores = \"11.11 (77) \u2013 10.8 (68)\"", "question": " who is the\u00a0grand finalist\u00a0where\u00a0scores\u00a0is 11.11 (77) \u2013 10.8 (68)", "context": "CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, scores VARCHAR)"}, {"answer": "SELECT grand_finalist FROM table_1139835_3 WHERE scores = \"8.9 (57) \u2013 7.12 (54)\"", "question": " who is the\u00a0grand finalist\u00a0where\u00a0scores\u00a0is 8.9 (57) \u2013 7.12 (54)", "context": "CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, scores VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_1139835_1 WHERE scores = \"10.12 (72) \u2013 8.11 (59)\"", "question": "what was the crowd when the scores are 10.12 (72) \u2013 8.11 (59)?", "context": "CREATE TABLE table_1139835_1 (crowd INTEGER, scores VARCHAR)"}, {"answer": "SELECT venue FROM table_1139835_1 WHERE scores = \"15.13 (103) \u2013 8.4 (52)\"", "question": "what is the venue where the scores are 15.13 (103) \u2013 8.4 (52)?", "context": "CREATE TABLE table_1139835_1 (venue VARCHAR, scores VARCHAR)"}, {"answer": "SELECT venue FROM table_1139835_1 WHERE margin = 4", "question": "what is the venue where the margin is 4?", "context": "CREATE TABLE table_1139835_1 (venue VARCHAR, margin VARCHAR)"}, {"answer": "SELECT crowd FROM table_1139835_1 WHERE grand_finalist = \"South Melbourne\"", "question": "what is the crowd when the grand finalist was south melbourne?", "context": "CREATE TABLE table_1139835_1 (crowd VARCHAR, grand_finalist VARCHAR)"}, {"answer": "SELECT date FROM table_1140067_2 WHERE race = \"Monaco Grand Prix\"", "question": "What was the date for monaco grand prix?", "context": "CREATE TABLE table_1140067_2 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT date FROM table_1140067_2 WHERE pole_position = \"Alain Prost\"", "question": "What was the date for the pole position of alain prost?", "context": "CREATE TABLE table_1140067_2 (date VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT race AS Winner FROM table_1140067_2 WHERE race = \"Portuguese Grand Prix\"", "question": "What is the race winer of the portuguese grand prix?", "context": "CREATE TABLE table_1140067_2 (race VARCHAR)"}, {"answer": "SELECT race AS Winner FROM table_1140074_2 WHERE date = \"12 June\"", "question": "what's the\u00a0race winner\u00a0with\u00a0date\u00a0being 12 june", "context": "CREATE TABLE table_1140074_2 (race VARCHAR, date VARCHAR)"}, {"answer": "SELECT constructor FROM table_1140074_2 WHERE location = \"Hockenheimring\"", "question": "what's the\u00a0constructor\u00a0with\u00a0location\u00a0being hockenheimring", "context": "CREATE TABLE table_1140074_2 (constructor VARCHAR, location VARCHAR)"}, {"answer": "SELECT race AS Winner FROM table_1140074_2 WHERE location = \"Jacarepagu\u00e1\"", "question": "what's the\u00a0race winner\u00a0with\u00a0location\u00a0being jacarepagu\u00e1", "context": "CREATE TABLE table_1140074_2 (race VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(race) AS Winner FROM table_1140074_2 WHERE rnd = 10", "question": "what's the total number of\u00a0race winner\u00a0with\u00a0rnd\u00a0being 10", "context": "CREATE TABLE table_1140074_2 (race VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT pole_position FROM table_1140074_2 WHERE location = \"Hockenheimring\"", "question": "what's the\u00a0pole position\u00a0with\u00a0location\u00a0being hockenheimring", "context": "CREATE TABLE table_1140074_2 (pole_position VARCHAR, location VARCHAR)"}, {"answer": "SELECT report FROM table_1140074_2 WHERE rnd = 4", "question": "what's the\u00a0report\u00a0with\u00a0rnd\u00a0being 4", "context": "CREATE TABLE table_1140074_2 (report VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT venue FROM table_1139835_9 WHERE premier = \"Essendon\" AND attendance = 30824", "question": "What venue has an attendance of 30824 at Essendon in 1984?", "context": "CREATE TABLE table_1139835_9 (venue VARCHAR, premier VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT venue FROM table_1139835_9 WHERE runner_up = \"Hawthorn\"", "question": "What other venue was a runner up to Hawthorn?", "context": "CREATE TABLE table_1139835_9 (venue VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT premiership FROM table_1139835_9 WHERE runner_up = \"Geelong\"", "question": "What is the other premiership when the runner up wis Geelong?", "context": "CREATE TABLE table_1139835_9 (premiership VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT runner_up FROM table_1139835_9 WHERE score = \"9.12 (66) \u2013 5.6 (36)\"", "question": "Who are all the runner ups when the score is 9.12 (66) \u2013 5.6 (36)?", "context": "CREATE TABLE table_1139835_9 (runner_up VARCHAR, score VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_1140073_2 WHERE pole_position = \"Patrick Tambay\"", "question": "Who had the fastest lap in the race where Patrick Tambay was on the pole?", "context": "CREATE TABLE table_1140073_2 (fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT race FROM table_1140073_2 WHERE pole_position = \"Nelson Piquet\" AND location = \"N\u00fcrburgring\"", "question": "What race had Nelson Piquet on the pole and was in N\u00fcrburgring?", "context": "CREATE TABLE table_1140073_2 (race VARCHAR, pole_position VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(rnd) FROM table_1140073_2 WHERE fastest_lap = \"Patrick Tambay\"", "question": "How many rounds did Patrick Tambay record the fastest lap?", "context": "CREATE TABLE table_1140073_2 (rnd VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT race FROM table_1140073_2 WHERE location = \"Kyalami\"", "question": "Which race is located in kyalami?", "context": "CREATE TABLE table_1140073_2 (race VARCHAR, location VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_1140077_2 WHERE pole_position = \"Gilles Villeneuve\"", "question": "What is the fastest lap with pole position of gilles villeneuve?", "context": "CREATE TABLE table_1140077_2 (fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_1140077_2 WHERE race = \"Dutch Grand Prix\"", "question": "Who did the fastest lap in the dutch grand prix?", "context": "CREATE TABLE table_1140077_2 (fastest_lap VARCHAR, race VARCHAR)"}, {"answer": "SELECT constructor FROM table_1140076_2 WHERE date = \"9 May\"", "question": "What is the constructor for 9 May?", "context": "CREATE TABLE table_1140076_2 (constructor VARCHAR, date VARCHAR)"}, {"answer": "SELECT pole_position FROM table_1140076_2 WHERE fastest_lap = \"Nelson Piquet\" AND constructor = \"Ferrari\"", "question": "What is the pole position for the race with the fastest lap by Nelson Piquet and the constructor is Ferrari?", "context": "CREATE TABLE table_1140076_2 (pole_position VARCHAR, fastest_lap VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT report FROM table_1140076_2 WHERE race = \"San Marino Grand Prix\"", "question": "What is the report listed for the race in San Marino Grand Prix?", "context": "CREATE TABLE table_1140076_2 (report VARCHAR, race VARCHAR)"}, {"answer": "SELECT constructor FROM table_1140076_2 WHERE location = \"Monza\"", "question": "Who was the constructor in the location Monza?", "context": "CREATE TABLE table_1140076_2 (constructor VARCHAR, location VARCHAR)"}, {"answer": "SELECT report FROM table_1140080_2 WHERE location = \"\u00d6sterreichring\"", "question": "what's the\u00a0report\u00a0with\u00a0location\u00a0 \u00f6sterreichring", "context": "CREATE TABLE table_1140080_2 (report VARCHAR, location VARCHAR)"}, {"answer": "SELECT report FROM table_1140080_2 WHERE race = \"Argentine Grand Prix\"", "question": "what's the\u00a0report\u00a0with\u00a0race\u00a0argentine grand prix", "context": "CREATE TABLE table_1140080_2 (report VARCHAR, race VARCHAR)"}, {"answer": "SELECT MIN(rnd) FROM table_1140080_2 WHERE race = \"Italian Grand Prix\"", "question": "what's the minimum\u00a0rnd\u00a0with\u00a0race\u00a0 italian grand prix", "context": "CREATE TABLE table_1140080_2 (rnd INTEGER, race VARCHAR)"}, {"answer": "SELECT COUNT(report) FROM table_1140080_2 WHERE date = \"29 April\"", "question": "what's the total number of\u00a0report\u00a0with\u00a0date\u00a0 29 april", "context": "CREATE TABLE table_1140080_2 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT race AS Winner FROM table_1140080_2 WHERE constructor = \"Renault\"", "question": "what's the\u00a0race winner\u00a0with\u00a0constructor\u00a0 renault", "context": "CREATE TABLE table_1140080_2 (race VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT date FROM table_1140080_2 WHERE rnd = 1", "question": "what's the\u00a0date\u00a0with\u00a0rnd\u00a0 1", "context": "CREATE TABLE table_1140080_2 (date VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_1140083_2 WHERE race = \"Monaco Grand Prix\"", "question": "How many days is the Monaco Grand Prix?", "context": "CREATE TABLE table_1140083_2 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT COUNT(rnd) FROM table_1140083_2 WHERE pole_position = \"James Hunt\" AND fastest_lap = \"John Watson\"", "question": "How many rounds were won with James Hunt as pole position and John Watson as  fastest lap?", "context": "CREATE TABLE table_1140083_2 (rnd VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT COUNT(fastest_lap) FROM table_1140083_2 WHERE location = \"Dijon-Prenois\"", "question": "The Dijon-prenois had how many fastest laps?", "context": "CREATE TABLE table_1140083_2 (fastest_lap VARCHAR, location VARCHAR)"}, {"answer": "SELECT constructor FROM table_1140083_2 WHERE rnd = 15", "question": "What was the constructor for round 15?", "context": "CREATE TABLE table_1140083_2 (constructor VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1140088_6 WHERE circuit = \"Brands Hatch\"", "question": "Who won the Brands Hatch circuit?", "context": "CREATE TABLE table_1140088_6 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT constructor FROM table_1140088_6 WHERE race_name = \"I Italian Republic Grand Prix\"", "question": "Who constructed the I Italian Republic Grand Prix?", "context": "CREATE TABLE table_1140088_6 (constructor VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT race_name FROM table_1140088_6 WHERE circuit = \"Oulton Park\"", "question": "What race was held at Oulton Park?", "context": "CREATE TABLE table_1140088_6 (race_name VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT report FROM table_1140088_6 WHERE race_name = \"I Brazilian Grand Prix\"", "question": "Did the I Brazilian Grand Prix have a report?", "context": "CREATE TABLE table_1140088_6 (report VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT race FROM table_1140085_2 WHERE pole_position = \"Niki Lauda\" AND date = \"27 April\"", "question": "what is the race where the pole position is niki lauda and the date is 27 april?", "context": "CREATE TABLE table_1140085_2 (race VARCHAR, pole_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_1140085_2 WHERE constructor = \"Ferrari\" AND location = \"Anderstorp\"", "question": "what is the date where the constructor is ferrari and the location is anderstorp?", "context": "CREATE TABLE table_1140085_2 (date VARCHAR, constructor VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(rnd) FROM table_1140085_2 WHERE pole_position = \"Niki Lauda\" AND race = \"Monaco Grand Prix\"", "question": "how many times is the pole position niki lauda and the race is monaco grand prix?", "context": "CREATE TABLE table_1140085_2 (rnd VARCHAR, pole_position VARCHAR, race VARCHAR)"}, {"answer": "SELECT report FROM table_1140085_2 WHERE location = \"Kyalami\"", "question": "what is the report where the location is kyalami?", "context": "CREATE TABLE table_1140085_2 (report VARCHAR, location VARCHAR)"}, {"answer": "SELECT pole_position FROM table_1140085_2 WHERE rnd = 3", "question": "who is the pole position for the rnd 3", "context": "CREATE TABLE table_1140085_2 (pole_position VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT race FROM table_1140085_2 WHERE fastest_lap = \"Jean-Pierre Jarier\"", "question": "what is the race where the fastest lap is by jean-pierre jarier?", "context": "CREATE TABLE table_1140085_2 (race VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT circuit FROM table_1140090_6 WHERE winning_driver = \"Clay Regazzoni\"", "question": "What circuit did Clay Regazzoni win?", "context": "CREATE TABLE table_1140090_6 (circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT date FROM table_1140090_6 WHERE winning_driver = \"Chris Amon\"", "question": "What was the date when Chris Amon won?", "context": "CREATE TABLE table_1140090_6 (date VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT circuit FROM table_1140090_6 WHERE race_name = \"VI Rhein-Pokalrennen\"", "question": "What circuit is the Vi Rhein-Pokalrennen race in?", "context": "CREATE TABLE table_1140090_6 (circuit VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT date FROM table_1140103_6 WHERE _number = 13", "question": "What date is listed at place 13", "context": "CREATE TABLE table_1140103_6 (date VARCHAR, _number VARCHAR)"}, {"answer": "SELECT date FROM table_1140103_6 WHERE circuit = \"Solitudering\"", "question": "What date has a solitudering circuit", "context": "CREATE TABLE table_1140103_6 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_1140103_6 WHERE circuit = \"Silverstone\"", "question": "How many dates have silverstone circuit", "context": "CREATE TABLE table_1140103_6 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(constructor) FROM table_1140103_6 WHERE race_name = \"XVI BRDC International Trophy\"", "question": "How many constructors are listed for the XVI BRDC international trophy race", "context": "CREATE TABLE table_1140103_6 (constructor VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT circuit FROM table_1140105_6 WHERE race_name = \"II Danish Grand Prix\"", "question": "What is the name of the circuit in which the race name is ii danish grand prix?", "context": "CREATE TABLE table_1140105_6 (circuit VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT constructor FROM table_1140105_6 WHERE date = \"26 March\"", "question": "What is te name of the constructors dated 26 march?", "context": "CREATE TABLE table_1140105_6 (constructor VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(circuit) FROM table_1140105_6 WHERE date = \"22 April\"", "question": "What is the total amount of circuts dated 22 april?", "context": "CREATE TABLE table_1140105_6 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT constructor FROM table_1140105_6 WHERE circuit = \"Zeltweg Airfield\"", "question": "what is the name of the constructor that has the circuit zeltweg airfield?", "context": "CREATE TABLE table_1140105_6 (constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1140105_6 WHERE circuit = \"Posillipo\"", "question": "What is the name of the winning driver where the circuit name is posillipo?", "context": "CREATE TABLE table_1140105_6 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_1140105_6 WHERE race_name = \"XI Syracuse Grand Prix\"", "question": "What is the name of the circuit where the race xi Syracuse grand prix was held?", "context": "CREATE TABLE table_1140105_6 (circuit VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT report FROM table_1140111_5 WHERE circuit = \"Pau\"", "question": "What kind of report is for the Pau circuit?", "context": "CREATE TABLE table_1140111_5 (report VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(report) FROM table_1140111_5 WHERE winning_driver = \"Juan Manuel Fangio\"", "question": "How many different kinds of reports are there for races that Juan Manuel Fangio won?", "context": "CREATE TABLE table_1140111_5 (report VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_1140111_5 WHERE circuit = \"Syracuse\"", "question": "Who constructed the Syracuse circuit?", "context": "CREATE TABLE table_1140111_5 (constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT race_name FROM table_1140116_5 WHERE circuit = \"Modena\"", "question": "What is the name of the race in the Modena circuit?", "context": "CREATE TABLE table_1140116_5 (race_name VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT race_name FROM table_1140116_5 WHERE circuit = \"Monza\"", "question": "What is the race name in the Monza circuit?", "context": "CREATE TABLE table_1140116_5 (race_name VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_1140116_5 WHERE race_name = \"V Madgwick Cup\"", "question": "When does V Madgwick Cup take place?", "context": "CREATE TABLE table_1140116_5 (date VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1140116_5 WHERE race_name = \"XIV El\u00e4intarhanajot\"", "question": "Which driver won the race xiv el\u00e4intarhanajot?", "context": "CREATE TABLE table_1140116_5 (winning_driver VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1140116_5 WHERE circuit = \"Modena\"", "question": "Who won the Modena circuit?", "context": "CREATE TABLE table_1140116_5 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(constructor) FROM table_1140113_5 WHERE race_name = \"III RedeX Trophy\"", "question": "How many constructors won the III Redex Trophy?", "context": "CREATE TABLE table_1140113_5 (constructor VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT report FROM table_1140113_5 WHERE winning_driver = \"Mike Hawthorn\"", "question": "What was the report of Mike Hawthorn's winning race?", "context": "CREATE TABLE table_1140113_5 (report VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT race_name FROM table_1140113_5 WHERE circuit = \"Bordeaux\"", "question": "What was the name of the race in Bordeaux?", "context": "CREATE TABLE table_1140113_5 (race_name VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT report FROM table_1140117_5 WHERE race_name = \"V Ulster Trophy\"", "question": "What is the report for the race name V Ulster Trophy?", "context": "CREATE TABLE table_1140117_5 (report VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT constructor FROM table_1140117_5 WHERE circuit = \"Silverstone\"", "question": "What is the constructor for the Silverstone circuit?", "context": "CREATE TABLE table_1140117_5 (constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT report FROM table_1140117_5 WHERE circuit = \"Silverstone\"", "question": "What's the report for the Silverstone circuit?", "context": "CREATE TABLE table_1140117_5 (report VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT report FROM table_1140117_5 WHERE race_name = \"XIII Grand Prix de l'Albigeois\"", "question": "What's the report for the race name, XIII Grand Prix de l'Albigeois?", "context": "CREATE TABLE table_1140117_5 (report VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT date FROM table_1140117_5 WHERE race_name = \"XII Pau Grand Prix\"", "question": "Which date did the race name XII Pau Grand Prix take place on?", "context": "CREATE TABLE table_1140117_5 (date VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1140117_5 WHERE circuit = \"Goodwood\"", "question": "Who was the winning driver for the goodwood circuit?", "context": "CREATE TABLE table_1140117_5 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_11411026_2 WHERE written_by = \"Krystal Houghton\"", "question": "How many millions of U.S. viewers whatched episodes written by Krystal Houghton?", "context": "CREATE TABLE table_11411026_2 (us_viewers__millions_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_11411026_2 WHERE no_in_series = 79", "question": "How many titles were directed in series 79?", "context": "CREATE TABLE table_11411026_2 (directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_11411026_2 WHERE us_viewers__millions_ = \"19.01\"", "question": "Who wrote an episode watched by 19.01 million US viewers?", "context": "CREATE TABLE table_11411026_2 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT episode_title FROM table_11404452_1 WHERE director = \"Rodman Flender\"", "question": "What are the titles of the episodes where Rodman Flender is the director?", "context": "CREATE TABLE table_11404452_1 (episode_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11404452_1 WHERE director = \"Jamie Babbit\"", "question": "What is the original air date of the Jamie Babbit directed episode?", "context": "CREATE TABLE table_11404452_1 (original_air_date VARCHAR, director VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11404452_1 WHERE us_viewers__millions_ = \"12.81\"", "question": "What is the original air date when there were 12.81 million u.s viewers?", "context": "CREATE TABLE table_11404452_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_11404452_1 WHERE writer_s_ = \"Shelia Lawrence\"", "question": "When did Shelia Lawrence join the series?", "context": "CREATE TABLE table_11404452_1 (series__number INTEGER, writer_s_ VARCHAR)"}, {"answer": "SELECT director FROM table_11404452_1 WHERE us_viewers__millions_ = \"13.66\"", "question": "Who was the director when there were 13.66 million u.s viewers?", "context": "CREATE TABLE table_11404452_1 (director VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT pct__percentage FROM table_1143966_1 WHERE won = 25", "question": "Name the percentage where the amount won was 25", "context": "CREATE TABLE table_1143966_1 (pct__percentage VARCHAR, won VARCHAR)"}, {"answer": "SELECT won FROM table_1143966_1 WHERE standing = \"2nd OHA\" AND games = 62", "question": "How many games were won with 2nd oha was standing and there were 62 games?", "context": "CREATE TABLE table_1143966_1 (won VARCHAR, standing VARCHAR, games VARCHAR)"}, {"answer": "SELECT liscumb FROM table_11447995_2 WHERE gauthier = \"34\"", "question": "What is the Liscumb when Gauthier is 34?", "context": "CREATE TABLE table_11447995_2 (liscumb VARCHAR, gauthier VARCHAR)"}, {"answer": "SELECT bello FROM table_11447995_2 WHERE ben_tahir = \"296\"", "question": "What is the Bello when Ben-Tahir is 296?", "context": "CREATE TABLE table_11447995_2 (bello VARCHAR, ben_tahir VARCHAR)"}, {"answer": "SELECT ben_tahir FROM table_11447995_2 WHERE bello = \"51\"", "question": "What is Ben-Tahir when Bello is 51?", "context": "CREATE TABLE table_11447995_2 (ben_tahir VARCHAR, bello VARCHAR)"}, {"answer": "SELECT haydon FROM table_11447995_2 WHERE larter = \"11\" AND libweshya = \"4\"", "question": "What is Haydon when Larter is 11 and Libweshya is 4?", "context": "CREATE TABLE table_11447995_2 (haydon VARCHAR, larter VARCHAR, libweshya VARCHAR)"}, {"answer": "SELECT liscumb FROM table_11447995_2 WHERE haydon = \"1632\"", "question": "What is Liscumb when Haydon is 1632?", "context": "CREATE TABLE table_11447995_2 (liscumb VARCHAR, haydon VARCHAR)"}, {"answer": "SELECT doucet FROM table_11447995_2 WHERE lawrance = \"36\"", "question": "What is Doucet when Lawrance is 36?", "context": "CREATE TABLE table_11447995_2 (doucet VARCHAR, lawrance VARCHAR)"}, {"answer": "SELECT tv FROM table_11449590_2 WHERE date = \"December 7, 1986\"", "question": "Which tv had the date december 7, 1986?", "context": "CREATE TABLE table_11449590_2 (tv VARCHAR, date VARCHAR)"}, {"answer": "SELECT kickoff_[a_] FROM table_11449590_2 WHERE opponent = \"at New Orleans Saints\"", "question": "Which kickoff has the opponent at new orleans saints?", "context": "CREATE TABLE table_11449590_2 (kickoff_ VARCHAR, a_ VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(house_name) FROM table_11464746_1 WHERE colours = \"Green\"", "question": "How many houses are green?", "context": "CREATE TABLE table_11464746_1 (house_name VARCHAR, colours VARCHAR)"}, {"answer": "SELECT founded FROM table_11464746_1 WHERE house_name = \"Gongola\"", "question": "What year was the house named gongola made?", "context": "CREATE TABLE table_11464746_1 (founded VARCHAR, house_name VARCHAR)"}, {"answer": "SELECT house_name FROM table_11464746_1 WHERE colours = \"Green\"", "question": "What is the name of the green house?", "context": "CREATE TABLE table_11464746_1 (house_name VARCHAR, colours VARCHAR)"}, {"answer": "SELECT composition FROM table_11464746_1 WHERE colours = \"Green\"", "question": "What is the green house made of?", "context": "CREATE TABLE table_11464746_1 (composition VARCHAR, colours VARCHAR)"}, {"answer": "SELECT composition FROM table_11464746_1 WHERE house_name = \"Benue\"", "question": "What is the benue house made of?", "context": "CREATE TABLE table_11464746_1 (composition VARCHAR, house_name VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_11465521_2 WHERE record = \"3-6\"", "question": "In which week was the game against a team with a record of 3-6 played?", "context": "CREATE TABLE table_11465521_2 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT tv FROM table_11465521_2 WHERE opponent = \"Minnesota Vikings\"", "question": "Which channel had the game against the Minnesota Vikings?", "context": "CREATE TABLE table_11465521_2 (tv VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_11465521_2 WHERE attendance = \"64,087\"", "question": "How many opponents were there at the game with 64,087 people in attendance?", "context": "CREATE TABLE table_11465521_2 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT game_site FROM table_11452830_2 WHERE record = \"1-3\"", "question": "Where was the game played when the team's record was 1-3? ", "context": "CREATE TABLE table_11452830_2 (game_site VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(kickoff_)[a_] FROM table_11452830_2 WHERE date = \"September 4, 1988\"", "question": "How many times was there a kickoff in the September 4, 1988 game? ", "context": "CREATE TABLE table_11452830_2 (a_ VARCHAR, kickoff_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_11452830_2 WHERE record = \"1-3\"", "question": "How many crowds watched the game where the record was 1-3? ", "context": "CREATE TABLE table_11452830_2 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_1149495_1 WHERE runner_up = \"Daniel Zueras\"", "question": "What year finished with Daniel Zueras as the runner-up?", "context": "CREATE TABLE table_1149495_1 (year VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT COUNT(host) FROM table_1149495_1 WHERE fourth_place = \"Chenoa\"", "question": "How many people hosted the show in the year when Chenoa  ended up in fourth place?", "context": "CREATE TABLE table_1149495_1 (host VARCHAR, fourth_place VARCHAR)"}, {"answer": "SELECT COUNT(fourth_place) FROM table_1149495_1 WHERE year = \"2003\"", "question": "How many fourth places were there in 2003?", "context": "CREATE TABLE table_1149495_1 (fourth_place VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine_type FROM table_1147705_1 WHERE max_torque_at_rpm = \"N\u00b7m ( lbf\u00b7ft ) @ 4,800\"", "question": "What is the engine type when the max torque at rpm is n\u00b7m ( lbf\u00b7ft ) @ 4,800 Answers:?", "context": "CREATE TABLE table_1147705_1 (engine_type VARCHAR, max_torque_at_rpm VARCHAR)"}, {"answer": "SELECT engine_configuration_ & _notes_0_100km_h FROM table_1147705_1 WHERE engine_type = \"B5244 T2\"", "question": "What is the engine configuration $notes 0-100km/h for the engine type b5244 t2?", "context": "CREATE TABLE table_1147705_1 (engine_configuration_ VARCHAR, _notes_0_100km_h VARCHAR, engine_type VARCHAR)"}, {"answer": "SELECT engine_displacement FROM table_1147705_1 WHERE engine_type = \"B5254 T\"", "question": "What is the engine displacement for the engine type b5254 t?", "context": "CREATE TABLE table_1147705_1 (engine_displacement VARCHAR, engine_type VARCHAR)"}, {"answer": "SELECT COUNT(engine_type) FROM table_1147705_1 WHERE model = \"2.4 AWD\"", "question": "How many have are model 2.4 awd?", "context": "CREATE TABLE table_1147705_1 (engine_type VARCHAR, model VARCHAR)"}, {"answer": "SELECT COUNT(engine_displacement) FROM table_1147705_1 WHERE engine_type = \"B5204 T3\"", "question": "How many engine b5204 t3?", "context": "CREATE TABLE table_1147705_1 (engine_displacement VARCHAR, engine_type VARCHAR)"}, {"answer": "SELECT COUNT(model) FROM table_1147705_1 WHERE engine_type = \"B5234 T3\"", "question": "How many engine b5234 t3?", "context": "CREATE TABLE table_1147705_1 (model VARCHAR, engine_type VARCHAR)"}, {"answer": "SELECT comment FROM table_1147701_4 WHERE model_name = \"2.4 (2001-2007)\"", "question": "what's the\u00a0comment\u00a0with\u00a0model name\u00a0being 2.4 (2001-2007)", "context": "CREATE TABLE table_1147701_4 (comment VARCHAR, model_name VARCHAR)"}, {"answer": "SELECT model_name FROM table_1147701_4 WHERE engine_code = \"B5204 T5\"", "question": "what's the\u00a0model name\u00a0with\u00a0engine code\u00a0being b5204 t5", "context": "CREATE TABLE table_1147701_4 (model_name VARCHAR, engine_code VARCHAR)"}, {"answer": "SELECT model_name FROM table_1147701_4 WHERE engine_code = \"B5254 T4\"", "question": "what's the\u00a0model name\u00a0with\u00a0engine code\u00a0being b5254 t4", "context": "CREATE TABLE table_1147701_4 (model_name VARCHAR, engine_code VARCHAR)"}, {"answer": "SELECT torque__nm AS @rpm_ FROM table_1147701_5 WHERE engine_code = \"D5244 T5\"", "question": "Name the torque of the engine is d5244 t5", "context": "CREATE TABLE table_1147701_5 (torque__nm VARCHAR, engine_code VARCHAR)"}, {"answer": "SELECT model_name FROM table_1147701_5 WHERE engine_code = \"D5244 T\"", "question": "What is the model of the engine d5244 t?", "context": "CREATE TABLE table_1147701_5 (model_name VARCHAR, engine_code VARCHAR)"}, {"answer": "SELECT model_name FROM table_1147701_5 WHERE engine_code = \"D5252 T\"", "question": "What is the model of the enginge d5252 t?", "context": "CREATE TABLE table_1147701_5 (model_name VARCHAR, engine_code VARCHAR)"}, {"answer": "SELECT model_name FROM table_1147701_5 WHERE engine_code = \"D5244 T7\"", "question": "What is the model of the engine d5244 t7?", "context": "CREATE TABLE table_1147701_5 (model_name VARCHAR, engine_code VARCHAR)"}, {"answer": "SELECT position FROM table_11545282_11 WHERE no = \"47\"", "question": "What is the position of number 47?", "context": "CREATE TABLE table_11545282_11 (position VARCHAR, no VARCHAR)"}, {"answer": "SELECT position FROM table_11545282_11 WHERE nationality = \"Turkey\"", "question": "Name the position of Turkey", "context": "CREATE TABLE table_11545282_11 (position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT player FROM table_11545282_11 WHERE no = \"51\"", "question": "Who is player number 51?", "context": "CREATE TABLE table_11545282_11 (player VARCHAR, no VARCHAR)"}, {"answer": "SELECT position FROM table_11545282_11 WHERE years_for_jazz = \"1998-99\"", "question": "What is the position for the years 1998-99", "context": "CREATE TABLE table_11545282_11 (position VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_11545282_11 WHERE school_club_team = \"Creighton\"", "question": "How many positions are for creighton?", "context": "CREATE TABLE table_11545282_11 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_11545282_12 WHERE years_for_jazz = \"1974-75\" AND school_club_team = \"Marshall\"", "question": "Which player is from Marshall and played 1974-75?", "context": "CREATE TABLE table_11545282_12 (player VARCHAR, years_for_jazz VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_11545282_12 WHERE school_club_team = \"Oregon\"", "question": "Which country is the player that went to Oregon?", "context": "CREATE TABLE table_11545282_12 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_11545282_12 WHERE player = \"Jim Les\"", "question": "Which country is Jim Les from?", "context": "CREATE TABLE table_11545282_12 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_11545282_12 WHERE school_club_team = \"Minnesota\"", "question": "Which number is the player from Minnesota?", "context": "CREATE TABLE table_11545282_12 (no INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_11545282_18 WHERE years_for_jazz = \"2000-02\"", "question": "Which player played for years 2000-02", "context": "CREATE TABLE table_11545282_18 (player VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_11545282_18 WHERE player = \"Kirk Snyder\"", "question": "Which school is Kirk Snyder from?", "context": "CREATE TABLE table_11545282_18 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_11545282_18 WHERE years_for_jazz = \"1985-88\"", "question": "What is the number for years 1985-88", "context": "CREATE TABLE table_11545282_18 (no INTEGER, years_for_jazz VARCHAR)"}, {"answer": "SELECT position FROM table_11545282_18 WHERE player = \"John Starks\"", "question": "Which position does John Starks play?", "context": "CREATE TABLE table_11545282_18 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_11545282_18 WHERE player = \"DeShawn Stevenson\"", "question": "Which position does Deshawn Stevenson play?", "context": "CREATE TABLE table_11545282_18 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_11545282_18 WHERE years_for_jazz = \"2004-05\"", "question": "Which player played 2004-05", "context": "CREATE TABLE table_11545282_18 (player VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT nationality FROM table_11545282_17 WHERE years_for_jazz = \"1987-89\"", "question": "Name the nationality who played for 1987-89?", "context": "CREATE TABLE table_11545282_17 (nationality VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_11545282_17 WHERE player = \"Truck Robinson\"", "question": "Wht years did truck robinson play?", "context": "CREATE TABLE table_11545282_17 (years_for_jazz VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_11545282_17 WHERE years_for_jazz = \"2004-05\"", "question": "What is the player that played 2004-05?", "context": "CREATE TABLE table_11545282_17 (player VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT no FROM table_11545282_17 WHERE years_for_jazz = \"1987-89\"", "question": "What is the number of players that played 1987-89?", "context": "CREATE TABLE table_11545282_17 (no VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT nationality FROM table_11545282_17 WHERE player = \"Bill Robinzine\"", "question": "What is the nationality of bill robinzine?", "context": "CREATE TABLE table_11545282_17 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_11545282_19 WHERE player = \"Kelly Tripucka\"", "question": "What is the nationality of the player named Kelly Tripucka?", "context": "CREATE TABLE table_11545282_19 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_11545282_19 WHERE school_club_team = \"Iowa State\"", "question": "What years were the Iowa State school/club team have a jazz club?", "context": "CREATE TABLE table_11545282_19 (years_for_jazz VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_11545282_19 WHERE no = 6", "question": "Which player wears the number 6?", "context": "CREATE TABLE table_11545282_19 (player VARCHAR, no VARCHAR)"}, {"answer": "SELECT player FROM table_11545282_19 WHERE position = \"Shooting guard\"", "question": "Which player's position is the shooting guard?", "context": "CREATE TABLE table_11545282_19 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_11545282_19 WHERE school_club_team = \"BYU\"", "question": "What is the number of school/club teams held by BYU?", "context": "CREATE TABLE table_11545282_19 (no INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_11545282_4 WHERE school_club_team = \"Maynard Evans HS\"", "question": "What position did the player from maynard evans hs play", "context": "CREATE TABLE table_11545282_4 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_11545282_4 WHERE school_club_team = \"Maryland\"", "question": "What is the largest jersey number for the player from maryland", "context": "CREATE TABLE table_11545282_4 (no INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_11545282_4 WHERE years_for_jazz = \"1979-86\"", "question": "Who are the players that played for the jazz from 1979-86", "context": "CREATE TABLE table_11545282_4 (player VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_11545282_4 WHERE no = 54", "question": "What years did number 54 play for the jazz", "context": "CREATE TABLE table_11545282_4 (years_for_jazz VARCHAR, no VARCHAR)"}, {"answer": "SELECT COUNT(school_club_team) FROM table_11545282_4 WHERE player = \"Darryl Dawkins\"", "question": "How many schools did darryl dawkins play for", "context": "CREATE TABLE table_11545282_4 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_11545282_5 WHERE years_for_jazz = \"1989-92; 1994-95\"", "question": "What is the nationality of the player who played during the years 1989-92; 1994-95?", "context": "CREATE TABLE table_11545282_5 (nationality VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT COUNT(school_club_team) FROM table_11545282_5 WHERE years_for_jazz = \"2010-11\"", "question": "How many schools are listed for the player who played the years for Jazz in 2010-11?", "context": "CREATE TABLE table_11545282_5 (school_club_team VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_11545282_5 WHERE player = \"Howard Eisley\"", "question": "How many players were names Howard Eisley?", "context": "CREATE TABLE table_11545282_5 (no VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_11545282_5 WHERE player = \"Blue Edwards\"", "question": "What is the position for player Blue Edwards?", "context": "CREATE TABLE table_11545282_5 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_11545282_5 WHERE years_for_jazz = \"1995-2000, 2004-05\"", "question": "Which player played the years for Jazz in 1995-2000, 2004-05", "context": "CREATE TABLE table_11545282_5 (player VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT player FROM table_11545282_5 WHERE no = \"53\"", "question": "Which player is no. 53?", "context": "CREATE TABLE table_11545282_5 (player VARCHAR, no VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_11545282_6 WHERE player = \"Jim Farmer\"", "question": "During which years did Jim Farmer play for Jazz?", "context": "CREATE TABLE table_11545282_6 (years_for_jazz VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_11545282_6 WHERE years_for_jazz = \"2006-2007\"", "question": "How many players have played for Jazz during 2006-2007?", "context": "CREATE TABLE table_11545282_6 (player VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT nationality FROM table_11545282_6 WHERE player = \"Jim Farmer\"", "question": "What's Jim Farmer's nationality?", "context": "CREATE TABLE table_11545282_6 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(years_for_jazz) FROM table_11545282_6 WHERE school_club_team = \"UTEP\"", "question": "For how many players from UTEP can one calculate how many years they've played for Jazz?", "context": "CREATE TABLE table_11545282_6 (years_for_jazz VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_11545282_6 WHERE player = \"Jim Farmer\"", "question": "How many position does Jim Farmer play in?", "context": "CREATE TABLE table_11545282_6 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_11545282_7 WHERE no = 35", "question": "What school or club did number 35 play for?", "context": "CREATE TABLE table_11545282_7 (school_club_team VARCHAR, no VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_11545282_7 WHERE no = 25", "question": "How many years did number 25 play for the Jazz?", "context": "CREATE TABLE table_11545282_7 (years_for_jazz VARCHAR, no VARCHAR)"}, {"answer": "SELECT COUNT(years_for_jazz) FROM table_11545282_7 WHERE player = \"Paul Griffin\"", "question": "How many years did Paul Griffin play for the Jazz?", "context": "CREATE TABLE table_11545282_7 (years_for_jazz VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_11545282_7 WHERE player = \"Lamar Green\"", "question": "What position did Lamar Green play?", "context": "CREATE TABLE table_11545282_7 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_11545282_7 WHERE years_for_jazz = \"2010\"", "question": "How many players only played for the Jazz in only 2010?", "context": "CREATE TABLE table_11545282_7 (no VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT 1 AS st_ship_delivery_date FROM table_11552751_2 WHERE ship_types_delivered = \"S2 (LST) type, S2 (frigate) type, C1-M type\"", "question": "What was the delivery date when s2 (lst) type, s2 (frigate) type, c1-m type was delivered?", "context": "CREATE TABLE table_11552751_2 (ship_types_delivered VARCHAR)"}, {"answer": "SELECT 1 AS st_ship_delivery_date FROM table_11552751_2 WHERE total_number_of_ways = \"12 ways\"", "question": "When was the delevery date when there were 12 ways of delivery?", "context": "CREATE TABLE table_11552751_2 (total_number_of_ways VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_11562149_1 WHERE featured_character_s_ = \"Jack & Locke\"", "question": "What are the episode numbers where the episode features Jack & Locke?", "context": "CREATE TABLE table_11562149_1 (no_in_series VARCHAR, featured_character_s_ VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_11562149_1 WHERE featured_character_s_ = \"Hurley\"", "question": "What are the episode numbers of episodes featuring Hurley?", "context": "CREATE TABLE table_11562149_1 (no_in_series VARCHAR, featured_character_s_ VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_11562149_1 WHERE no_in_series = \"111\"", "question": "List the episode whose number in the series is 111.", "context": "CREATE TABLE table_11562149_1 (no_in_season VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11562143_1 WHERE us_viewers__million_ = \"9.82\"", "question": "What date got 9.82 million viewers?", "context": "CREATE TABLE table_11562143_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_11577996_1 WHERE year = 2007", "question": "What school took 3rd place in 2007?", "context": "CREATE TABLE table_11577996_1 (year VARCHAR)"}, {"answer": "SELECT 4 AS th_place FROM table_11577996_1 WHERE year = 2002", "question": "What school took 4th place in 2002?", "context": "CREATE TABLE table_11577996_1 (year VARCHAR)"}, {"answer": "SELECT 4 AS th_place FROM table_11577996_1 WHERE year = 2001", "question": "What school took 4th place in 2001?", "context": "CREATE TABLE table_11577996_1 (year VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_11570261_2 WHERE margin_of_victory = \"11 strokes\"", "question": "Who were the runner(s)-up when Tiger won by 11 strokes?", "context": "CREATE TABLE table_11570261_2 (runner_s__up VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT COUNT(margin_of_victory) FROM table_11570261_2 WHERE runner_s__up = \"Justin Leonard, Phillip Price\"", "question": "What was the margin of victory over Justin Leonard, phillip price?", "context": "CREATE TABLE table_11570261_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT worcs_f_c_matches FROM table_1156428_2 WHERE name_of_ground = \"Chester Road North Ground\"", "question": "There were 68 worcs f-c matches played on Chester Road North Ground.", "context": "CREATE TABLE table_1156428_2 (worcs_f_c_matches VARCHAR, name_of_ground VARCHAR)"}, {"answer": "SELECT MAX(2 AS nd) FROM table_11570261_6 WHERE cuts_made = \"11\"", "question": "How many times did Tiger get second in the year where there were 11 cuts?", "context": "CREATE TABLE table_11570261_6 (cuts_made VARCHAR)"}, {"answer": "SELECT name FROM table_1157867_2 WHERE notes = \"Ex-industrial\" AND builder = \"Manning Wardle\"", "question": "Which locomotives 12\" x 17\" are both ex-industrial and built by Manning Wardle?", "context": "CREATE TABLE table_1157867_2 (name VARCHAR, notes VARCHAR, builder VARCHAR)"}, {"answer": "SELECT cylinders FROM table_1157867_2 WHERE builder = \"Longbottom, Barnsley\"", "question": "What's the size of the cylinders built by Longbottom, Barnsley?", "context": "CREATE TABLE table_1157867_2 (cylinders VARCHAR, builder VARCHAR)"}, {"answer": "SELECT builder FROM table_1157867_2 WHERE wheel_arrangement = \"2-4-2 T\"", "question": "Who is the builder of the locomotives with wheel arrangement of 2-4-2 T?", "context": "CREATE TABLE table_1157867_2 (builder VARCHAR, wheel_arrangement VARCHAR)"}, {"answer": "SELECT date_built FROM table_1157867_2 WHERE wheel_arrangement = \"0-6-0 ST\" AND builder = \"Hudswell Clarke\"", "question": "On what date did Hudswell Clarke build the locomotive with 0-6-0 ST wheel arrangements?", "context": "CREATE TABLE table_1157867_2 (date_built VARCHAR, wheel_arrangement VARCHAR, builder VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_11585313_1 WHERE name = \"Bok de Korver\"", "question": "What amount of times is the name, Bok De Korver listed?", "context": "CREATE TABLE table_11585313_1 (number INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(number_of_goals) FROM table_11585313_1 WHERE date_of_debut = \"14-04-1907\"", "question": "What is the total number of goals on the debut date of 14-04-1907?", "context": "CREATE TABLE table_11585313_1 (number_of_goals VARCHAR, date_of_debut VARCHAR)"}, {"answer": "SELECT date_of_debut FROM table_11585313_1 WHERE date_of_birth = \"24-10-1887\"", "question": "What is the date of debut that has a date of birth listed at 24-10-1887?", "context": "CREATE TABLE table_11585313_1 (date_of_debut VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT name FROM table_11585313_1 WHERE number_of_goals = 10", "question": "What is the name of person that scored 10 goals?", "context": "CREATE TABLE table_11585313_1 (name VARCHAR, number_of_goals VARCHAR)"}, {"answer": "SELECT name FROM table_11585313_1 WHERE date_of_death\u2020 = \"01-04-1954\"", "question": "What is the name of the person whose date of death is 01-04-1954?", "context": "CREATE TABLE table_11585313_1 (name VARCHAR, date_of_death\u2020 VARCHAR)"}, {"answer": "SELECT COUNT(number_of_caps) FROM table_11585313_1 WHERE name = \"Hans Blume\"", "question": "What is the toatl number of caps where the name is Hans Blume?", "context": "CREATE TABLE table_11585313_1 (number_of_caps VARCHAR, name VARCHAR)"}, {"answer": "SELECT date_of_death\u2020 FROM table_11585313_2 WHERE name = \"Henk Hordijk\"", "question": "What was the date of Henk Hordijk's death?", "context": "CREATE TABLE table_11585313_2 (date_of_death\u2020 VARCHAR, name VARCHAR)"}, {"answer": "SELECT frequency FROM table_11602313_4 WHERE model_number = \"Pentium Dual-Core T3200\"", "question": "What frequency is the pentium dual-core t3200?", "context": "CREATE TABLE table_11602313_4 (frequency VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT frequency FROM table_11602313_4 WHERE part_number_s_ = \"LF80537GF0411M\"", "question": "What is the frequency of the model with part number lf80537gf0411m?", "context": "CREATE TABLE table_11602313_4 (frequency VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT fsb FROM table_11602313_4 WHERE part_number_s_ = \"LF80537GF0411M\"", "question": "What is the FSB of the model with part number lf80537gf0411m?", "context": "CREATE TABLE table_11602313_4 (fsb VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT fsb FROM table_11602313_4 WHERE part_number_s_ = \"LF80537GE0251MN\"", "question": "What is the FSB of the model with part number lf80537ge0251mn?", "context": "CREATE TABLE table_11602313_4 (fsb VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT socket FROM table_11602313_4 WHERE model_number = \"Pentium Dual-Core T2410\"", "question": "What is the socket for the pentium dual-core t2410?", "context": "CREATE TABLE table_11602313_4 (socket VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT release_date FROM table_11602313_4 WHERE sspec_number = \"SLA4H(M0)\"", "question": "What is the release date for the model with sspec number sla4h(m0)?", "context": "CREATE TABLE table_11602313_4 (release_date VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_11603006_1 WHERE tournament = \"Verizon Classic\"", "question": "How many different scores are there for the Verizon Classic?", "context": "CREATE TABLE table_11603006_1 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_11603006_1 WHERE location = \"Michigan\" AND purse__$__ < 1813335.221493934", "question": "What was the score for the tournament in Michigan where the purse was smaller than 1813335.221493934?", "context": "CREATE TABLE table_11603006_1 (score VARCHAR, location VARCHAR, purse__$__ VARCHAR)"}, {"answer": "SELECT COUNT(tournament) FROM table_11603006_1 WHERE location = \"Maryland\"", "question": "How many tournaments were held in Maryland?", "context": "CREATE TABLE table_11603006_1 (tournament VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_11603006_1 WHERE score = \"207 (-10)\"", "question": "How many different locations have the score 207 (-10)?", "context": "CREATE TABLE table_11603006_1 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_11604804_5 WHERE nickname = \"ParSU Cimmarons\"", "question": "What is the founding of parsu cimmarons?", "context": "CREATE TABLE table_11604804_5 (founded INTEGER, nickname VARCHAR)"}, {"answer": "SELECT founded FROM table_11604804_5 WHERE color = \"Navy Blue\"", "question": "What was the founding of navy blue?", "context": "CREATE TABLE table_11604804_5 (founded VARCHAR, color VARCHAR)"}, {"answer": "SELECT COUNT(nickname) FROM table_11604804_5 WHERE founded = 1918", "question": "What was the number of nickname founded 1918?", "context": "CREATE TABLE table_11604804_5 (nickname VARCHAR, founded VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_11604804_5 WHERE nickname = \"CBSUA formerly known CSSAC\"", "question": "What was the number of location of nickname cbsua formerly known cssac?", "context": "CREATE TABLE table_11604804_5 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT tournament FROM table_11603267_1 WHERE location = \"Arizona\"", "question": "Name the tournament for arizona", "context": "CREATE TABLE table_11603267_1 (tournament VARCHAR, location VARCHAR)"}, {"answer": "SELECT state_ & _federal FROM table_11608735_3 WHERE property_taxes = \"17,199,210\"", "question": "Name the state and federal when property taxes is 17,199,210", "context": "CREATE TABLE table_11608735_3 (state_ VARCHAR, _federal VARCHAR, property_taxes VARCHAR)"}, {"answer": "SELECT other_local_sources FROM table_11608735_3 WHERE property_taxes = \"11,631,227\"", "question": "What is the local sources for property taxes of 11,631,227?", "context": "CREATE TABLE table_11608735_3 (other_local_sources VARCHAR, property_taxes VARCHAR)"}, {"answer": "SELECT other_local_sources FROM table_11608735_3 WHERE state_ & _federal = \"12,929,489\"", "question": "What is the number of local sources for state and federal 12,929,489", "context": "CREATE TABLE table_11608735_3 (other_local_sources VARCHAR, state_ VARCHAR, _federal VARCHAR)"}, {"answer": "SELECT seat FROM table_11614581_3 WHERE name_in_russian = \"\u041f\u043b\u043e\u0446\u043a\u0430\u044f \u0433\u0443\u0431\u0435\u0440\u043d\u0438\u044f\"", "question": "What seat does \u043f\u043b\u043e\u0446\u043a\u0430\u044f \u0433\u0443\u0431\u0435\u0440\u043d\u0438\u044f hold?", "context": "CREATE TABLE table_11614581_3 (seat VARCHAR, name_in_russian VARCHAR)"}, {"answer": "SELECT name_in_polish FROM table_11614581_3 WHERE seat = \"Lublin\"", "question": "Whose name in Polish holds the Lublin seat?", "context": "CREATE TABLE table_11614581_3 (name_in_polish VARCHAR, seat VARCHAR)"}, {"answer": "SELECT seat FROM table_11614581_3 WHERE name_in_polish = \"Gubernia warszawska\"", "question": "What seat does Gubernia Warszawska hold?", "context": "CREATE TABLE table_11614581_3 (seat VARCHAR, name_in_polish VARCHAR)"}, {"answer": "SELECT population, _in_thousands, __1905__ FROM table_11614581_3 WHERE seat = \"Lublin\"", "question": "What population (in thousands) is Lublin's seat?", "context": "CREATE TABLE table_11614581_3 (population VARCHAR, _in_thousands VARCHAR, __1905__ VARCHAR, seat VARCHAR)"}, {"answer": "SELECT area, _in_thousands_of_km_2 FROM table_11614581_3 WHERE name_in_russian = \"\u041f\u043b\u043e\u0446\u043a\u0430\u044f \u0433\u0443\u0431\u0435\u0440\u043d\u0438\u044f\"", "question": "\u043f\u043b\u043e\u0446\u043a\u0430\u044f \u0433\u0443\u0431\u0435\u0440\u043d\u0438\u044f governs an area with what area (in thousand km 2)?", "context": "CREATE TABLE table_11614581_3 (area VARCHAR, _in_thousands_of_km_2 VARCHAR, name_in_russian VARCHAR)"}, {"answer": "SELECT up_down FROM table_1161065_28 WHERE hosted = 7", "question": "What is the up/down at the venue that hosted 7 games?", "context": "CREATE TABLE table_1161065_28 (up_down VARCHAR, hosted VARCHAR)"}, {"answer": "SELECT last_year FROM table_1161065_28 WHERE venue = \"Manuka Oval\"", "question": "What was the attendance last year at Manuka Oval?", "context": "CREATE TABLE table_1161065_28 (last_year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT lowest FROM table_1161065_28 WHERE venue = \"Football Park\"", "question": "What was the lowest attendance figure at Football Park?", "context": "CREATE TABLE table_1161065_28 (lowest VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_1161065_27 WHERE team = \"Port Adelaide\"", "question": "What is the total of port adelaide", "context": "CREATE TABLE table_1161065_27 (total INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(purse__) AS $__ FROM table_11621915_1 WHERE score = \"204 (-9)\"", "question": "what's the maximum\u00a0purse( $ )\u00a0with\u00a0score\u00a0value of 204 (-9)", "context": "CREATE TABLE table_11621915_1 (purse__ INTEGER, score VARCHAR)"}, {"answer": "SELECT winner FROM table_11621915_1 WHERE purse__$__ > 964017.2297960471 AND date = \"May 28\"", "question": "what's the\u00a0winner\u00a0with\u00a0purse( $ )\u00a0value of bigger than 964017.2297960471 and\u00a0date\u00a0value of may 28", "context": "CREATE TABLE table_11621915_1 (winner VARCHAR, purse__$__ VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner FROM table_11621915_1 WHERE tournament = \"Kroger Senior Classic\"", "question": "what's the\u00a0winner\u00a0with\u00a0tournament\u00a0value of kroger senior classic", "context": "CREATE TABLE table_11621915_1 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_11621915_1 WHERE tournament = \"Ford Senior Players Championship\"", "question": "what's the\u00a0date\u00a0with\u00a0tournament\u00a0value of ford senior players championship", "context": "CREATE TABLE table_11621915_1 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT location FROM table_11621915_1 WHERE tournament = \"Quicksilver Classic\"", "question": "what's the\u00a0location\u00a0with\u00a0tournament\u00a0value of quicksilver classic", "context": "CREATE TABLE table_11621915_1 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_11621915_1 WHERE date = \"Oct 1\"", "question": "what's the\u00a0score\u00a0with\u00a0date\u00a0 oct 1", "context": "CREATE TABLE table_11621915_1 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_11621799_1 WHERE tournament = \"Toshiba Senior Classic\"", "question": "What was the score for the Toshiba Senior Classic?", "context": "CREATE TABLE table_11621799_1 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winner FROM table_11621799_1 WHERE score = \"281 (-6)\"", "question": "Who was the winner when the score was 281 (-6)?", "context": "CREATE TABLE table_11621799_1 (winner VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_11621873_1 WHERE tournament = \"Northville Long Island Classic\"", "question": "How many scores were at the Northville Long Island Classic?", "context": "CREATE TABLE table_11621873_1 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_11622255_1 WHERE winner = \"Raymond Floyd (1)\"", "question": " what's the\u00a0tournament\u00a0where\u00a0winner\u00a0is raymond floyd (1)", "context": "CREATE TABLE table_11622255_1 (tournament VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(purse__) AS $__ FROM table_11622255_1 WHERE winner = \"Jimmy Powell (2)\"", "question": "what is the total number of\u00a0purse( $ )\u00a0where\u00a0winner\u00a0is jimmy powell (2)", "context": "CREATE TABLE table_11622255_1 (purse__ VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_11622255_1 WHERE location = \"Illinois\"", "question": " what's the\u00a0date\u00a0where\u00a0location\u00a0is illinois", "context": "CREATE TABLE table_11622255_1 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(purse__) AS $__ FROM table_11622255_1 WHERE tournament = \"Ko Olina Senior Invitational\"", "question": "what is the minimum\u00a0purse( $ )\u00a0where\u00a0tournament\u00a0is ko olina senior invitational", "context": "CREATE TABLE table_11622255_1 (purse__ INTEGER, tournament VARCHAR)"}, {"answer": "SELECT location FROM table_11622255_1 WHERE tournament = \"Raley's Senior Gold Rush\"", "question": " what's the\u00a0location\u00a0where\u00a0tournament\u00a0is raley's senior gold rush", "context": "CREATE TABLE table_11622255_1 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MAX(1 AS st_prize__) AS $__ FROM table_11622255_1 WHERE score = \"193 (-17)\"", "question": "what is the maximum\u00a01st prize( $ )\u00a0where\u00a0score\u00a0is 193 (-17)", "context": "CREATE TABLE table_11622255_1 (score VARCHAR)"}, {"answer": "SELECT 1 AS st_prize__$__ FROM table_11622496_1 WHERE purse__$__ = 275000", "question": "How much was the prize money for the 275000 purse?", "context": "CREATE TABLE table_11622496_1 (purse__$__ VARCHAR)"}, {"answer": "SELECT 1 AS st_prize__$__ FROM table_11622496_1 WHERE location = \"Virginia\"", "question": "What is the prize money for Virginia?", "context": "CREATE TABLE table_11622496_1 (location VARCHAR)"}, {"answer": "SELECT COUNT(tournament) FROM table_11622562_1 WHERE score = \"204 (-12)\"", "question": "How many tournaments ended with a score of 204 (-12)?", "context": "CREATE TABLE table_11622562_1 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT winner FROM table_11622562_1 WHERE tournament = \"PaineWebber Invitational\"", "question": "What's the winner of the Painewebber Invitational tournament?", "context": "CREATE TABLE table_11622562_1 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT location FROM table_11622562_1 WHERE tournament = \"GTE Suncoast Classic\"", "question": "Where was the GTE Suncoast Classic tournament held?", "context": "CREATE TABLE table_11622562_1 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MIN(1 AS st_prize__) AS $__ FROM table_11622562_1 WHERE location = \"New Mexico\"", "question": "What was the minimal amount ($) of the 1st prize in the tournaments in New Mexico?", "context": "CREATE TABLE table_11622562_1 (location VARCHAR)"}, {"answer": "SELECT date FROM table_11622829_1 WHERE score = \"203 (-13)\"", "question": "What are all the dates with a score of 203 (-13)?", "context": "CREATE TABLE table_11622829_1 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_11622829_1 WHERE score = \"135 (-7)\"", "question": "For which tournaments was the score 135 (-7)?", "context": "CREATE TABLE table_11622829_1 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_11622840_1 WHERE score = \"206 (-7)\"", "question": "How many locations logged a score of 206 (-7)?", "context": "CREATE TABLE table_11622840_1 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(tournament) FROM table_11622840_1 WHERE score = \"206 (-7)\"", "question": "How many tournaments recorded a score of 206 (-7)?", "context": "CREATE TABLE table_11622840_1 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_11622840_1 WHERE location = \"Rhode Island\"", "question": "Name all the tournaments that took place in Rhode Island.", "context": "CREATE TABLE table_11622840_1 (tournament VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_11622840_1 WHERE score = \"208 (-8)\"", "question": "What is the state that hosted a tournament with the score of 208 (-8)?", "context": "CREATE TABLE table_11622840_1 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_11622771_1 WHERE tournament = \"Fairfield Barnett Classic\"", "question": "Where was the Fairfield Barnett classic tournament held?", "context": "CREATE TABLE table_11622771_1 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT COUNT(purse__) AS $__ FROM table_11622771_1 WHERE date = \"Mar 16\"", "question": "How many purses were there for the  mar 16?", "context": "CREATE TABLE table_11622771_1 (purse__ VARCHAR, date VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11630008_3 WHERE series_no = 23", "question": "When did the series number 23 air?", "context": "CREATE TABLE table_11630008_3 (original_air_date VARCHAR, series_no VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11630008_3 WHERE series_no = 21", "question": "What was the airdate of 21 series number?", "context": "CREATE TABLE table_11630008_3 (original_air_date VARCHAR, series_no VARCHAR)"}, {"answer": "SELECT winner FROM table_11622924_1 WHERE tournament = \"Suntree Seniors Classic\"", "question": "Who won the Suntree Seniors Classic?", "context": "CREATE TABLE table_11622924_1 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT purse__$__ FROM table_11622924_1 WHERE score = \"289 (9)\"", "question": "How much was the prize in the tournament where the winning score was 289 (9)?", "context": "CREATE TABLE table_11622924_1 (purse__$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_11622924_1 WHERE score = \"204 (-6)\"", "question": "When was the tournament that was won with a score of 204 (-6) played?", "context": "CREATE TABLE table_11622924_1 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_11630008_5 WHERE series__number = 61", "question": "What was the season number for the episode with the series number 61?", "context": "CREATE TABLE table_11630008_5 (season__number INTEGER, series__number VARCHAR)"}, {"answer": "SELECT title FROM table_11630008_5 WHERE production_code = 311", "question": "What was the title of the episode with the production code 311?", "context": "CREATE TABLE table_11630008_5 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_11630008_5 WHERE written_by = \"Lamont Ferrell\"", "question": "Who directed the episode written by Lamont Ferrell?", "context": "CREATE TABLE table_11630008_5 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT date FROM table_11636213_7 WHERE result = \"6\u20132, 4\u20136, 6\u20134\"", "question": "What date was the result 6\u20132, 4\u20136, 6\u20134?", "context": "CREATE TABLE table_11636213_7 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(partnering) FROM table_11636213_7 WHERE result = \"6\u20133, 6\u20132\"", "question": "How many matches had the result of 6\u20133, 6\u20132?", "context": "CREATE TABLE table_11636213_7 (partnering VARCHAR, result VARCHAR)"}, {"answer": "SELECT director FROM table_11642945_1 WHERE original_air_date = \"10January2008\"", "question": "If the Original Air Date is 10January2008, what  directors released on that date?", "context": "CREATE TABLE table_11642945_1 (director VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT total_no FROM table_11642945_1 WHERE original_air_date = \"29November2007\"", "question": "The original air date of 29November2007 has what total no.?", "context": "CREATE TABLE table_11642945_1 (total_no VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT director FROM table_11642945_1 WHERE celebrity = \"Margot Kidder\"", "question": "Margot Kidder had what director?", "context": "CREATE TABLE table_11642945_1 (director VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT COUNT(celebrity) FROM table_11642945_1 WHERE original_air_date = \"18October2007\"", "question": "How many celebrities had an 18October2007 Original air Date?", "context": "CREATE TABLE table_11642945_1 (celebrity VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT viewers FROM table_11642945_1 WHERE director = \"Matt Gallagher\"", "question": "Which viewers had Matt Gallagher as the director?", "context": "CREATE TABLE table_11642945_1 (viewers VARCHAR, director VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_11630008_7 WHERE production_code = 503", "question": "What is the number of series with production code 503?", "context": "CREATE TABLE table_11630008_7 (series__number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_11630008_7 WHERE production_code = 514", "question": "What is the title of production code 514?", "context": "CREATE TABLE table_11630008_7 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT location FROM table_11658094_1 WHERE institution = \"Barton College\"", "question": "What is the location of the institution barton college", "context": "CREATE TABLE table_11658094_1 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT institution FROM table_11658094_1 WHERE joined = \"1993\"", "question": " Which institutions joined in 1993", "context": "CREATE TABLE table_11658094_1 (institution VARCHAR, joined VARCHAR)"}, {"answer": "SELECT location FROM table_11658094_1 WHERE joined = \"2008\"", "question": "what are the locations that  joined in 2008", "context": "CREATE TABLE table_11658094_1 (location VARCHAR, joined VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_11658094_1 WHERE institution = \"Barton College\"", "question": "What is the minimum enrollment at barton college", "context": "CREATE TABLE table_11658094_1 (enrollment INTEGER, institution VARCHAR)"}, {"answer": "SELECT founded FROM table_11658094_1 WHERE institution = \"Erskine College\"", "question": "When was erskine college founded", "context": "CREATE TABLE table_11658094_1 (founded VARCHAR, institution VARCHAR)"}, {"answer": "SELECT married_filing_separately FROM table_11647327_2 WHERE head_of_household = \"$117,451\u2013$190,200\"", "question": "What is ithe range for married filing separately where head of household is $117,451\u2013$190,200?", "context": "CREATE TABLE table_11647327_2 (married_filing_separately VARCHAR, head_of_household VARCHAR)"}, {"answer": "SELECT COUNT(marginal_ordinary_income_tax_rate) FROM table_11647327_2 WHERE single = \"$8,351\u2013 $33,950\"", "question": "What is the amount of marginal ordinary income tax rate for single in which the range is $8,351\u2013 $33,950?", "context": "CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, single VARCHAR)"}, {"answer": "SELECT married_filing_jointly_or_qualified_widow_er_ FROM table_11647327_2 WHERE married_filing_separately = \"$33,951\u2013$68,525\"", "question": "What is the range of married filing jointly or qualified widower in which married filing separately is $33,951\u2013$68,525?", "context": "CREATE TABLE table_11647327_2 (married_filing_jointly_or_qualified_widow_er_ VARCHAR, married_filing_separately VARCHAR)"}, {"answer": "SELECT head_of_household FROM table_11647327_2 WHERE single = \"$171,551\u2013$372,950\"", "question": "What is the range of the head of household whereas single is $171,551\u2013$372,950?", "context": "CREATE TABLE table_11647327_2 (head_of_household VARCHAR, single VARCHAR)"}, {"answer": "SELECT COUNT(marginal_ordinary_income_tax_rate) FROM table_11647327_2 WHERE married_filing_jointly_or_qualified_widow_er_ = \"$208,851\u2013$372,950\"", "question": "What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851\u2013$372,950?", "context": "CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, married_filing_jointly_or_qualified_widow_er_ VARCHAR)"}, {"answer": "SELECT coach FROM table_1165048_1 WHERE dudley_tuckey_medal = \"Ben Howlett\"", "question": " who is the\u00a0coach\u00a0where\u00a0dudley tuckey medal\u00a0is ben howlett", "context": "CREATE TABLE table_1165048_1 (coach VARCHAR, dudley_tuckey_medal VARCHAR)"}, {"answer": "SELECT COUNT(coach) FROM table_1165048_1 WHERE captain = \"Grant Welsh\" AND win_loss = \"5-15\"", "question": "what is the total number of\u00a0coach\u00a0where\u00a0captain\u00a0is grant welsh and\u00a0win/loss\u00a0is 5-15", "context": "CREATE TABLE table_1165048_1 (coach VARCHAR, captain VARCHAR, win_loss VARCHAR)"}, {"answer": "SELECT dudley_tuckey_medal FROM table_1165048_1 WHERE leading_goalkicker = \"Scott Simister (46)\"", "question": " who is the\u00a0dudley tuckey medal\u00a0where\u00a0leading goalkicker\u00a0is scott simister (46)", "context": "CREATE TABLE table_1165048_1 (dudley_tuckey_medal VARCHAR, leading_goalkicker VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_1165048_1 WHERE leading_goalkicker = \"Scott Simister (54)\"", "question": "what is the maximum\u00a0season\u00a0where\u00a0leading goalkicker\u00a0is scott simister (54)", "context": "CREATE TABLE table_1165048_1 (season INTEGER, leading_goalkicker VARCHAR)"}, {"answer": "SELECT win_loss FROM table_1165048_1 WHERE season = 2009", "question": "what are all the\u00a0win/loss\u00a0where\u00a0season\u00a0is 2009", "context": "CREATE TABLE table_1165048_1 (win_loss VARCHAR, season VARCHAR)"}, {"answer": "SELECT captain FROM table_1165048_1 WHERE coach = \"Geoff Miles\"", "question": " who is the\u00a0captain\u00a0where\u00a0coach\u00a0is geoff miles", "context": "CREATE TABLE table_1165048_1 (captain VARCHAR, coach VARCHAR)"}, {"answer": "SELECT disaster FROM table_11649123_1 WHERE year = \"2005-06\"", "question": "In 2005-06 what was the disaster?", "context": "CREATE TABLE table_11649123_1 (disaster VARCHAR, year VARCHAR)"}, {"answer": "SELECT area_km\u00b2__1998_ FROM table_11656578_2 WHERE no_of_communes = 51", "question": "What's the area of the voivodenship with 51 communes?", "context": "CREATE TABLE table_11656578_2 (area_km\u00b2__1998_ VARCHAR, no_of_communes VARCHAR)"}, {"answer": "SELECT area_km\u00b2__1998_ FROM table_11656578_2 WHERE abbreviation = \"kn\"", "question": "How big (in km2) is the voivodenship also known by the abbreviation KN?", "context": "CREATE TABLE table_11656578_2 (area_km\u00b2__1998_ VARCHAR, abbreviation VARCHAR)"}, {"answer": "SELECT population__1980_ FROM table_11656578_2 WHERE capital = \"Siedlce\"", "question": "How many people lived in the voivodenship whose capital is Siedlce in the year of 1980?", "context": "CREATE TABLE table_11656578_2 (population__1980_ VARCHAR, capital VARCHAR)"}, {"answer": "SELECT COUNT(voivodeship) FROM table_11656578_2 WHERE population__1980_ = \"747 900\"", "question": "How many different voivodenship have 747 900 citizes?", "context": "CREATE TABLE table_11656578_2 (voivodeship VARCHAR, population__1980_ VARCHAR)"}, {"answer": "SELECT MIN(left) FROM table_11658094_3 WHERE institution = \"Longwood University\"", "question": "What year did longwood university leave the conference?", "context": "CREATE TABLE table_11658094_3 (left INTEGER, institution VARCHAR)"}, {"answer": "SELECT left FROM table_11658094_3 WHERE founded = 1880", "question": "What year did a school leave that was founded in 1880?", "context": "CREATE TABLE table_11658094_3 (left VARCHAR, founded VARCHAR)"}, {"answer": "SELECT nickname FROM table_11658094_3 WHERE enrollment = 2386", "question": "What is the nickname of the school with an enrollment of 2386?", "context": "CREATE TABLE table_11658094_3 (nickname VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT joined FROM table_11658094_3 WHERE location = \"Mars Hill, North Carolina\"", "question": "What year did the school from mars hill, north carolina join?", "context": "CREATE TABLE table_11658094_3 (joined VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(left) FROM table_11658094_3 WHERE institution = \"Anderson University\"", "question": "How many times did anderson university leave?", "context": "CREATE TABLE table_11658094_3 (left VARCHAR, institution VARCHAR)"}, {"answer": "SELECT nickname FROM table_11658094_3 WHERE institution = \"Newberry College\"", "question": "What is the nickname of the newberry college?", "context": "CREATE TABLE table_11658094_3 (nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT gross_tonnage FROM table_11662133_1 WHERE ended_service = \"1866\"", "question": "What was the gross tonnage of the ship that ended service in 1866?", "context": "CREATE TABLE table_11662133_1 (gross_tonnage VARCHAR, ended_service VARCHAR)"}, {"answer": "SELECT MIN(gross_tonnage) FROM table_11662133_1 WHERE ships_name = \"Munich\"", "question": "What is the minimum gross tonnage of the Munich? ", "context": "CREATE TABLE table_11662133_1 (gross_tonnage INTEGER, ships_name VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11665016_2 WHERE written_by = \"Wendy Battles\" AND directed_by = \"Oz Scott\"", "question": "What is the air date for the episode written by Wendy Battles and directed by Oz Scott", "context": "CREATE TABLE table_11665016_2 (original_air_date VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_11665016_2 WHERE written_by = \"Anthony E. Zuiker & Ken Solarz\"", "question": "Which episode was written by anthony e. zuiker & ken solarz", "context": "CREATE TABLE table_11665016_2 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_11665016_2 WHERE directed_by = \"Steven DePaul\"", "question": "Which episode was directed by steven depaul", "context": "CREATE TABLE table_11665016_2 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT TMS AS number FROM table_1166023_1 WHERE year_built = 1923", "question": "What where the tms numbers built in 1923", "context": "CREATE TABLE table_1166023_1 (TMS VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT TMS AS number FROM table_1166023_1 WHERE builder = \"NZR Addington\" AND year_built = 1913", "question": "What tms were built nzr addington in the year 1913", "context": "CREATE TABLE table_1166023_1 (TMS VARCHAR, builder VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT date_entered_service FROM table_11662133_3 WHERE ships_name = \"Koningin Wilhelmina\"", "question": " what's the date entered service with ships name koningin wilhelmina", "context": "CREATE TABLE table_11662133_3 (date_entered_service VARCHAR, ships_name VARCHAR)"}, {"answer": "SELECT date_entered_service FROM table_11662133_3 WHERE ships_name = \"Zeeland\"", "question": " what's the\u00a0date where ships name is zeeland entered service", "context": "CREATE TABLE table_11662133_3 (date_entered_service VARCHAR, ships_name VARCHAR)"}, {"answer": "SELECT MAX(tonnage) FROM table_11662133_3 WHERE date_entered_service = \"25 March 1986\"", "question": "what is the maximum tonnage where date entered service is 25 march 1986 ", "context": "CREATE TABLE table_11662133_3 (tonnage INTEGER, date_entered_service VARCHAR)"}, {"answer": "SELECT date_withdrawn FROM table_11662133_3 WHERE date_entered_service = \"21 November 1945\"", "question": "what are all the date withdrawn for service entered on 21 november 1945", "context": "CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, date_entered_service VARCHAR)"}, {"answer": "SELECT date_withdrawn FROM table_11662133_3 WHERE type_of_ship = \"Twin Screw Ro-Ro Motorship\"", "question": "what are all the date withdrawn for twin screw ro-ro motorship", "context": "CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, type_of_ship VARCHAR)"}, {"answer": "SELECT date_withdrawn FROM table_11662133_3 WHERE ships_name = \"Koningin Beatrix\"", "question": "what are all the date withdrawn for koningin beatrix", "context": "CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, ships_name VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_11664625_2 WHERE directed_by = \"Anthony Hemingway\"", "question": "Where is the first season that Anthony Hemingway appears?", "context": "CREATE TABLE table_11664625_2 (no_in_season INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11664625_2 WHERE no_in_season = 18", "question": "What is the original air date of season 18?", "context": "CREATE TABLE table_11664625_2 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_11664625_2 WHERE us_viewers__millions_ = \"14.57\"", "question": "When is the first season there were 14.57 million U.S viewers?", "context": "CREATE TABLE table_11664625_2 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(champion) FROM table_1167698_1 WHERE season = \"2009\"", "question": "How many champions were there in 2009?", "context": "CREATE TABLE table_1167698_1 (champion VARCHAR, season VARCHAR)"}, {"answer": "SELECT third_place FROM table_1167698_1 WHERE runner_up = \"Dynamo Moscow\"", "question": "Who won third place with the runner up being dynamo moscow?", "context": "CREATE TABLE table_1167698_1 (third_place VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT position FROM table_11677100_15 WHERE player = \"Matt Hobgood\"", "question": "What position does Matt Hobgood play?", "context": "CREATE TABLE table_11677100_15 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(mlb_draft) FROM table_11677100_15 WHERE hometown = \"High Point, NC\"", "question": "How many players were from high point, nc?", "context": "CREATE TABLE table_11677100_15 (mlb_draft VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT school FROM table_11677100_15 WHERE player = \"Jeff Malm\"", "question": "What high school did Jeff Malm attend?", "context": "CREATE TABLE table_11677100_15 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(hometown) FROM table_11677100_15 WHERE position = \"Catcher\"", "question": "How many hometowns does the catcher have?", "context": "CREATE TABLE table_11677100_15 (hometown VARCHAR, position VARCHAR)"}, {"answer": "SELECT mlb_draft FROM table_11677100_16 WHERE school = \"Mountain Pointe High school\"", "question": "Who was drafted from the school Mountain Pointe High School?", "context": "CREATE TABLE table_11677100_16 (mlb_draft VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_11677100_16 WHERE player = \"Ethan Bennett\"", "question": "What school did the player Ethan Bennett attend?", "context": "CREATE TABLE table_11677100_16 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT mlb_draft FROM table_11677100_16 WHERE position = \"Pitcher/Infielder\"", "question": "What MLB Drafts have the position pitcher/infielder? ", "context": "CREATE TABLE table_11677100_16 (mlb_draft VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_11677100_16 WHERE hometown = \"Las Vegas, NV\"", "question": "What positions were drafted from Las Vegas, NV?", "context": "CREATE TABLE table_11677100_16 (position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677100_17 WHERE player = \"Bubba Starling\"", "question": "What is the hometown of Bubba Starling?", "context": "CREATE TABLE table_11677100_17 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(school) FROM table_11677100_17 WHERE player = \"Bubba Starling\"", "question": "How many schools did Bubba Starling attend?", "context": "CREATE TABLE table_11677100_17 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677100_5 WHERE school = \"Athens Drive High school\"", "question": "What was the hometown of the player who attended Athens Drive High School?", "context": "CREATE TABLE table_11677100_5 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_11677100_5 WHERE player = \"Pat Osborn\"", "question": "What school did Pat Osborn attend? ", "context": "CREATE TABLE table_11677100_5 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677100_5 WHERE player = \"Josh Hamilton\"", "question": "What is Josh Hamilton's hometown?", "context": "CREATE TABLE table_11677100_5 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_11677100_3 WHERE player = \"Kerry Wood\"", "question": "What school does Kerry Wood play for?", "context": "CREATE TABLE table_11677100_3 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_11677100_3 WHERE hometown = \"Germantown, TN\"", "question": "What's the position of the player from Germantown, TN?", "context": "CREATE TABLE table_11677100_3 (position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT player FROM table_11677100_3 WHERE school = \"Torrey Pines High school\"", "question": "What player goes to Torrey Pines High School?", "context": "CREATE TABLE table_11677100_3 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_11677100_3 WHERE player = \"Kerry Wood\"", "question": "What position does Kerry Wood play in?", "context": "CREATE TABLE table_11677100_3 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT mlb_draft FROM table_11677100_3 WHERE player = \"Shion Newton\"", "question": "What's Shion Newton's MLB draft result?", "context": "CREATE TABLE table_11677100_3 (mlb_draft VARCHAR, player VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677100_18 WHERE position = \"Pitcher\" AND school = \"Saint Joseph Regional High school\"", "question": "What is the hometown of the pitcher who's school was Saint Joseph Regional High School?", "context": "CREATE TABLE table_11677100_18 (hometown VARCHAR, position VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_11677100_18 WHERE hometown = \"Lake Charles, LA\"", "question": " What is the school of the player from Lake Charles, LA?", "context": "CREATE TABLE table_11677100_18 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT mlb_draft FROM table_11677100_18 WHERE school = \"Carl Albert High school\"", "question": "Where was mlb draft for the player who's school was Carl Albert High School?", "context": "CREATE TABLE table_11677100_18 (mlb_draft VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_11677100_18 WHERE hometown = \"Montvale, NJ\"", "question": "What school did the player attend who's hometown was Montvale, NJ?", "context": "CREATE TABLE table_11677100_18 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT school FROM table_11677100_18 WHERE hometown = \"Irvine, CA\"", "question": "What is the school for the player who's hometown was Irvine, CA?", "context": "CREATE TABLE table_11677100_18 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_11677100_4 WHERE school = \"Spring High school\"", "question": "How many positions did the player from Spring High School play?", "context": "CREATE TABLE table_11677100_4 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT player FROM table_11677100_4 WHERE hometown = \"Spring, TX\"", "question": "What player is from Spring, Tx?", "context": "CREATE TABLE table_11677100_4 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677100_4 WHERE school = \"Brighton High school\"", "question": "What town is Brighton High School in?", "context": "CREATE TABLE table_11677100_4 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_11677100_7 WHERE position = \"Catcher\"", "question": "The catcher went to what school? ", "context": "CREATE TABLE table_11677100_7 (school VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(school) FROM table_11677100_7 WHERE player = \"Mike Jones\"", "question": "How many schools did Mike Jones attend?", "context": "CREATE TABLE table_11677100_7 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_11677691_10 WHERE school = \"Dooly County High school\"", "question": "What is the postion of the player listed from Dooly County High School?", "context": "CREATE TABLE table_11677691_10 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_10 WHERE school = \"Vista Murrieta High school\"", "question": "What player represented Vista Murrieta High School?", "context": "CREATE TABLE table_11677691_10 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_11677691_10 WHERE school = \"Butler High school\"", "question": "What was the position of the player from Butler High School?", "context": "CREATE TABLE table_11677691_10 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_11677691_10 WHERE hometown = \"Paramus, New Jersey\"", "question": "What position belonged to the player from Paramus, New Jersey?", "context": "CREATE TABLE table_11677691_10 (position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_10 WHERE school = \"Muscle Shoals High school\"", "question": "What town is Muscle Shoals High School located in?", "context": "CREATE TABLE table_11677691_10 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT mlb_draft FROM table_11677100_8 WHERE hometown = \"Apopka, FL\"", "question": "What pick was the player from Apopka, FL in the 2002 MLB draft", "context": "CREATE TABLE table_11677100_8 (mlb_draft VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT school FROM table_11677691_2 WHERE college = \"South Carolina\"", "question": "WHAT SCHOOL DID THE PLAYER FROM SOUTH CAROLINA ATTEND?", "context": "CREATE TABLE table_11677691_2 (school VARCHAR, college VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_2 WHERE player = \"Tony Steward\"", "question": "WHAT IS THE HOMETOWN OF TONY STEWARD?", "context": "CREATE TABLE table_11677691_2 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_11677691_2 WHERE school = \"South Pointe High school\"", "question": "WHAT POSITION DOES THE PLAYER FROM SOUTH POINTE HIGH SCHOOL PLAY?", "context": "CREATE TABLE table_11677691_2 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_11677691_2 WHERE college = \"Oregon\"", "question": "HOW MANY PLAYERS PLAY FOR OREGON?", "context": "CREATE TABLE table_11677691_2 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT school FROM table_11677691_2 WHERE player = \"Ha'Sean Clinton-Dix\"", "question": "WHAT SCHOOL DOES HA'SEAN CLINTON-DIX BELONG TO?", "context": "CREATE TABLE table_11677691_2 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_11677691_11 WHERE hometown = \"Delray Beach, Florida\"", "question": "How many players are from Delray Beach, Florida?", "context": "CREATE TABLE table_11677691_11 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(school) FROM table_11677691_11 WHERE player = \"Derrick Green\"", "question": "How many schools did Derrick Green attend?", "context": "CREATE TABLE table_11677691_11 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_11 WHERE school = \"American Heritage school\"", "question": "What is the hometown of the player who attended American Heritage School?", "context": "CREATE TABLE table_11677691_11 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_11677691_11 WHERE player = \"Greg Bryant\"", "question": "How many positions does Greg Bryant play?", "context": "CREATE TABLE table_11677691_11 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_11677691_5 WHERE player = \"Rushel Shell\"", "question": "Which college has the player Rushel Shell?", "context": "CREATE TABLE table_11677691_5 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_5 WHERE college = \"Stanford\"", "question": "Which players attend Stanford college?", "context": "CREATE TABLE table_11677691_5 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT school FROM table_11677691_5 WHERE hometown = \"Aledo, Texas\"", "question": "Which school is in the hometown of Aledo, Texas?", "context": "CREATE TABLE table_11677691_5 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT school FROM table_11677691_5 WHERE player = \"Zach Banner\"", "question": "Zach Banner is a player at which school?", "context": "CREATE TABLE table_11677691_5 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_11677691_5 WHERE hometown = \"Olney, Maryland\"", "question": "What position is associated with the hometown of Olney, Maryland?", "context": "CREATE TABLE table_11677691_5 (position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT college FROM table_11677691_5 WHERE player = \"John Theus\"", "question": "Which college does the player John Theus associate with?", "context": "CREATE TABLE table_11677691_5 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_3 WHERE hometown = \"Abilene, Texas\"", "question": "What player's hometown is Abilene, Texas? ", "context": "CREATE TABLE table_11677691_3 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_11677691_3 WHERE hometown = \"Indianapolis, Indiana\"", "question": "How many players are from Indianapolis, Indiana? ", "context": "CREATE TABLE table_11677691_3 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT position FROM table_11677691_3 WHERE player = \"Charone Peake\"", "question": "What position is Charone Peake? ", "context": "CREATE TABLE table_11677691_3 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_11677691_3 WHERE position = \"Running back\" AND college = \"Nebraska\"", "question": "Running back Aaron Green went to Nebraska and what high school? ", "context": "CREATE TABLE table_11677691_3 (school VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_3 WHERE hometown = \"Roebuck, South Carolina\"", "question": "What player's hometown is Roebuck, South Carolina? ", "context": "CREATE TABLE table_11677691_3 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT position FROM table_11677691_12 WHERE hometown = \"Concord, California\"", "question": "what are all the positions of players who's hometown is concord, california", "context": "CREATE TABLE table_11677691_12 (position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_12 WHERE school = \"St. Thomas Aquinas High school\"", "question": "who are all the players for st. thomas aquinas high school", "context": "CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_12 WHERE school = \"Mission Viejo High school\"", "question": "who are all the players for mission viejo high school", "context": "CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_12 WHERE school = \"De La Salle High school\"", "question": "What is the hometown of the players for de la salle high school", "context": "CREATE TABLE table_11677691_12 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_12 WHERE school = \"Armwood High school\"", "question": "who are all the players for armwood high school", "context": "CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_11677691_12 WHERE hometown = \"Placer, California\"", "question": "What is the hometown of the players for placer, california", "context": "CREATE TABLE table_11677691_12 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_11677760_1 WHERE hometown = \"Virginia Beach, VA\"", "question": "What is the nba draft for the player from the hometown of virginia beach, va?", "context": "CREATE TABLE table_11677760_1 (nba_draft VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT college FROM table_11677760_1 WHERE school = \"Camden High school\"", "question": "what is the college for the player who's school is camden high school?", "context": "CREATE TABLE table_11677760_1 (college VARCHAR, school VARCHAR)"}, {"answer": "SELECT year FROM table_11677760_1 WHERE player = \"Derrick Favors\"", "question": "what is the year for player is derrick favors?", "context": "CREATE TABLE table_11677760_1 (year VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(nba_draft) FROM table_11677760_1 WHERE player = \"Felipe Lopez\"", "question": "how many times was the player felipe lopez?", "context": "CREATE TABLE table_11677760_1 (nba_draft VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_11677760_1 WHERE player = \"Damon Bailey\"", "question": "what is the college for the player damon bailey?", "context": "CREATE TABLE table_11677760_1 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_11677760_1 WHERE college = \"Direct to NBA\" AND school = \"St. Vincent \u2013 St. Mary High school\" AND year = \"2001-2002\"", "question": "what is the player who's college is listed as direct to nba, school is st. vincent \u2013 st. mary high school and the year is 2001-2002?", "context": "CREATE TABLE table_11677760_1 (player VARCHAR, year VARCHAR, college VARCHAR, school VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_9 WHERE college = \"Louisiana State\"", "question": "Which hometown has the college Louisiana State?", "context": "CREATE TABLE table_11677691_9 (hometown VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_11677691_9 WHERE hometown = \"Crete, Illinois\"", "question": "Which college is present in the hometown of Crete, Illinois?", "context": "CREATE TABLE table_11677691_9 (college VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT school FROM table_11677691_9 WHERE player = \"Thomas Tyner\"", "question": "Which school has the player Thomas Tyner?", "context": "CREATE TABLE table_11677691_9 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_11677691_9 WHERE hometown = \"Centerville, Ohio\"", "question": "Which school is located in the hometown of Centerville, Ohio?", "context": "CREATE TABLE table_11677691_9 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT player FROM table_11677691_9 WHERE college = \"Ohio State\"", "question": "What player is from Ohio State college?", "context": "CREATE TABLE table_11677691_9 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_6 WHERE player = \"Scott Starr\"", "question": "Where is scott starr from?", "context": "CREATE TABLE table_11677691_6 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_6 WHERE school = \"Lincoln High school\"", "question": "Where is lincoln high school located?", "context": "CREATE TABLE table_11677691_6 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_6 WHERE player = \"Shaq Thompson\"", "question": "Where is Shaq Thompson from?", "context": "CREATE TABLE table_11677691_6 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_11677691_6 WHERE player = \"Darius Hamilton\"", "question": "Where did Darius Hamilton go?", "context": "CREATE TABLE table_11677691_6 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT hometown FROM table_11677691_6 WHERE school = \"Norco High school\"", "question": "Where is Norco HIgh School?", "context": "CREATE TABLE table_11677691_6 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT height FROM table_11677760_31 WHERE college = \"Ohio State\"", "question": "What is the height of the player that went to ohio state?", "context": "CREATE TABLE table_11677760_31 (height VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(nba_draft) FROM table_11677760_31 WHERE school = \"East Side High school\"", "question": "Name the total number of nba drafts that went to east side high school", "context": "CREATE TABLE table_11677760_31 (nba_draft VARCHAR, school VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_11677760_31 WHERE college = \"Kentucky\"", "question": "Name the numbers of the nba draft where the player went to kentucky", "context": "CREATE TABLE table_11677760_31 (nba_draft VARCHAR, college VARCHAR)"}, {"answer": "SELECT ratings FROM table_11691212_2 WHERE year = 1997", "question": "What was the rating in 1997?", "context": "CREATE TABLE table_11691212_2 (ratings VARCHAR, year VARCHAR)"}, {"answer": "SELECT lap_by_lap FROM table_11691212_2 WHERE viewers = \"13.4 million\"", "question": "Who narrated the lap-by-lap to a 13.4 million audience?", "context": "CREATE TABLE table_11691212_2 (lap_by_lap VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT b\u00f6tzow FROM table_11680175_1 WHERE vehlefanz = \"1.800\"", "question": "What was the number for B\u00f6tzow where Vehlefanz is 1.800?", "context": "CREATE TABLE table_11680175_1 (b\u00f6tzow VARCHAR, vehlefanz VARCHAR)"}, {"answer": "SELECT vehlefanz FROM table_11680175_1 WHERE b\u00e4renklau = \"1.288\"", "question": "What was the number for Vehlefanz  where B\u00e4renklau  is 1.288?", "context": "CREATE TABLE table_11680175_1 (vehlefanz VARCHAR, b\u00e4renklau VARCHAR)"}, {"answer": "SELECT schwante FROM table_11680175_1 WHERE b\u00e4renklau = \"1.270\"", "question": "What was the number for Schwante where B\u00e4renklau  is 1.270?", "context": "CREATE TABLE table_11680175_1 (schwante VARCHAR, b\u00e4renklau VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_11680175_1 WHERE Neu - vehlefanz = 365", "question": "How many years where Neu-Vehlefanz had a number of 365?", "context": "CREATE TABLE table_11680175_1 (year VARCHAR, Neu VARCHAR, vehlefanz VARCHAR)"}, {"answer": "SELECT COUNT(Neu) - vehlefanz FROM table_11680175_1 WHERE schwante = \"2.043\"", "question": "How many times did Neu-Vehlefanz occur when Schwante had 2.043?", "context": "CREATE TABLE table_11680175_1 (vehlefanz VARCHAR, Neu VARCHAR, schwante VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_11680175_1 WHERE eichst\u00e4dt = 939", "question": "How many years where Eichst\u00e4dt had a number of 939?", "context": "CREATE TABLE table_11680175_1 (year VARCHAR, eichst\u00e4dt VARCHAR)"}, {"answer": "SELECT COUNT(replaced_by) FROM table_11713303_2 WHERE date_of_appointment = \"10 December 2007\" AND manner_of_departure = \"Quit\"", "question": "How many have been replaced where the appointment date is 10 December 2007 and the manner of departure is quit?", "context": "CREATE TABLE table_11713303_2 (replaced_by VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_11713303_2 WHERE date_of_appointment = \"10 December 2007\" AND manner_of_departure = \"Quit\"", "question": "What is the date of vacancy for 10 december 2007 when quit?", "context": "CREATE TABLE table_11713303_2 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR)"}, {"answer": "SELECT COUNT(manner_of_departure) FROM table_11713303_2 WHERE outgoing_manager = \"Peter Voets\"", "question": "How many manners of departure did peter voets have?", "context": "CREATE TABLE table_11713303_2 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT link_abilities FROM table_11703336_1 WHERE predecessors = \"TI-85\"", "question": "What is the link abilities when the predecessors is ti-85?", "context": "CREATE TABLE table_11703336_1 (link_abilities VARCHAR, predecessors VARCHAR)"}, {"answer": "SELECT cpu FROM table_11703336_1 WHERE year_released = \"1993\"", "question": "What is the cpu of the calculator released in 1993?", "context": "CREATE TABLE table_11703336_1 (cpu VARCHAR, year_released VARCHAR)"}, {"answer": "SELECT display_size FROM table_11703336_1 WHERE year_released = \"1997\"", "question": "what is the display size for the calculator released in 1997?", "context": "CREATE TABLE table_11703336_1 (display_size VARCHAR, year_released VARCHAR)"}, {"answer": "SELECT display_size FROM table_11703336_1 WHERE calculator = \"TI-82\"", "question": "what is the display size for the calculator ti-82?", "context": "CREATE TABLE table_11703336_1 (display_size VARCHAR, calculator VARCHAR)"}, {"answer": "SELECT cpu FROM table_11703336_1 WHERE ram = \"28 KB of ram\" AND display_size = \"128\u00d764 pixels 21\u00d78 characters\"", "question": "what is the cpu for the calculator with 28 kb of ram and display size 128\u00d764 pixels 21\u00d78 characters?", "context": "CREATE TABLE table_11703336_1 (cpu VARCHAR, ram VARCHAR, display_size VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_11715748_2 WHERE season__number = 13", "question": "Who was the dirctor for season 13?", "context": "CREATE TABLE table_11715748_2 (director_s_ VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT title FROM table_11694832_1 WHERE production_code = \"3T5764\"", "question": "What is the episode title of the show that had a production code of 3T5764?", "context": "CREATE TABLE table_11694832_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_11694832_1 WHERE written_by = \"Adele Lim\"", "question": "What is the first series number that Adele Lim wrote?", "context": "CREATE TABLE table_11694832_1 (no_in_series INTEGER, written_by VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_11694832_1 WHERE production_code = \"3T5769\"", "question": "How many millions of U.S. viewers watched the show with a production code of 3T5769?", "context": "CREATE TABLE table_11694832_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11694832_1 WHERE us_viewers__millions_ = \"3.57\"", "question": "When was the show first aired that was viewed by 3.57 million U.S. viewers?", "context": "CREATE TABLE table_11694832_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_11694832_1 WHERE us_viewers__millions_ = \"2.06\"", "question": "Who directed the show that was viewed by 2.06 million U.S. people?", "context": "CREATE TABLE table_11694832_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT position FROM table_11734041_11 WHERE school_club_team_country = \"Purdue\"", "question": "What is the position of the player that came from the school/club team/country of Purdue?", "context": "CREATE TABLE table_11734041_11 (position VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT player FROM table_11734041_11 WHERE no_s_ = \"3\"", "question": "Who is the player who's number is 3?", "context": "CREATE TABLE table_11734041_11 (player VARCHAR, no_s_ VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_11734041_11 WHERE years_for_rockets = \"1968-72\"", "question": "What is the height for the player in 1968-72?", "context": "CREATE TABLE table_11734041_11 (height_in_ft VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT player FROM table_11734041_11 WHERE height_in_ft = \"6-0\"", "question": "Which player had a height of 6-0?", "context": "CREATE TABLE table_11734041_11 (player VARCHAR, height_in_ft VARCHAR)"}, {"answer": "SELECT position FROM table_11734041_11 WHERE years_for_rockets = \"2006\"", "question": "What is the position for the player that played in 2006?", "context": "CREATE TABLE table_11734041_11 (position VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT player FROM table_11734041_10 WHERE height_in_ft = \"7-0\"", "question": "What are all the names of the players who are 7-0 tall?", "context": "CREATE TABLE table_11734041_10 (player VARCHAR, height_in_ft VARCHAR)"}, {"answer": "SELECT COUNT(school_club_team_country) FROM table_11734041_10 WHERE player = \"Kimball, Toby Toby Kimball\"", "question": "Kimball, toby toby kimball is a player; How many times at school/ club team/country  was the player present?", "context": "CREATE TABLE table_11734041_10 (school_club_team_country VARCHAR, player VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_11734041_10 WHERE school_club_team_country = \"Connecticut\"", "question": "In connecticut the school/club team/country had a set height in ft. what is true for them?", "context": "CREATE TABLE table_11734041_10 (height_in_ft VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT years_for_rockets FROM table_11734041_10 WHERE height_in_ft = \"6-6\"", "question": "Rockets height was 6-6 in feet, list the time frame where this was true?", "context": "CREATE TABLE table_11734041_10 (years_for_rockets VARCHAR, height_in_ft VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_11734041_17 WHERE years_for_rockets = \"1969-70\"", "question": "What is the hight of the player who's tenure lasted from 1969-70?", "context": "CREATE TABLE table_11734041_17 (height_in_ft VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT school_club_team_country FROM table_11734041_17 WHERE height_in_ft = \"7-4\"", "question": "What school did the 7-4 player attend?", "context": "CREATE TABLE table_11734041_17 (school_club_team_country VARCHAR, height_in_ft VARCHAR)"}, {"answer": "SELECT years_for_rockets FROM table_11734041_20 WHERE position = \"Guard / Forward\"", "question": " what's the\u00a0years for rockets\u00a0where\u00a0position\u00a0is guard / forward", "context": "CREATE TABLE table_11734041_20 (years_for_rockets VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_11734041_20 WHERE years_for_rockets = \"1975-79\"", "question": "what is the total number of\u00a0player\u00a0where\u00a0years for rockets\u00a0is 1975-79", "context": "CREATE TABLE table_11734041_20 (player VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_11734041_20 WHERE years_for_rockets = \"2004-06\"", "question": "what is the total number of\u00a0player\u00a0where\u00a0years for rockets\u00a0is 2004-06", "context": "CREATE TABLE table_11734041_20 (player VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT position FROM table_11734041_20 WHERE player = \"Williams, Bernie Bernie Williams\"", "question": " what's the\u00a0position\u00a0where\u00a0player\u00a0is williams, bernie bernie williams", "context": "CREATE TABLE table_11734041_20 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(years_for_rockets) FROM table_11734041_20 WHERE school_club_team_country = \"Baylor\"", "question": "what is the total number of\u00a0years for rockets\u00a0where\u00a0school/club team/country\u00a0is baylor", "context": "CREATE TABLE table_11734041_20 (years_for_rockets VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_11734041_18 WHERE no_s_ = \"32\"", "question": "How many positions had jersey number 32", "context": "CREATE TABLE table_11734041_18 (position VARCHAR, no_s_ VARCHAR)"}, {"answer": "SELECT years_for_rockets FROM table_11734041_18 WHERE no_s_ = \"55\"", "question": "Which years had a jersey number 55", "context": "CREATE TABLE table_11734041_18 (years_for_rockets VARCHAR, no_s_ VARCHAR)"}, {"answer": "SELECT school_club_team_country FROM table_11734041_3 WHERE years_for_rockets = \"2000-01\"", "question": "Which school, club team, or country played for the rockets in the years 2000-01?", "context": "CREATE TABLE table_11734041_3 (school_club_team_country VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT years_for_rockets FROM table_11734041_3 WHERE no_s_ = \"13\"", "question": "During which years did number 13 play for the Rockets?", "context": "CREATE TABLE table_11734041_3 (years_for_rockets VARCHAR, no_s_ VARCHAR)"}, {"answer": "SELECT MIN(date_first_settled_as_a_suburb) FROM table_1174162_1 WHERE suburb = \"Chifley\"", "question": "What is the lowest date settled for chifley?", "context": "CREATE TABLE table_1174162_1 (date_first_settled_as_a_suburb INTEGER, suburb VARCHAR)"}, {"answer": "SELECT MIN(density___km\u00b2_) FROM table_1174162_1 WHERE suburb = \"Garran\"", "question": "What is the density in Garran?", "context": "CREATE TABLE table_1174162_1 (density___km\u00b2_ INTEGER, suburb VARCHAR)"}, {"answer": "SELECT date_first_settled_as_a_suburb FROM table_1174162_1 WHERE median_age__in_2006_ = \"40 years\"", "question": "What is the date settled for 40 years?", "context": "CREATE TABLE table_1174162_1 (date_first_settled_as_a_suburb VARCHAR, median_age__in_2006_ VARCHAR)"}, {"answer": "SELECT median_age__in_2006_ FROM table_1174162_1 WHERE area__km\u00b2_ = \"1.7\"", "question": "What is the median age where the area is 1.7?", "context": "CREATE TABLE table_1174162_1 (median_age__in_2006_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT thursday FROM table_11748792_2 WHERE series = \"Big Brother 13\"", "question": "Who is the thursday presenter of the show Big Brother 13?", "context": "CREATE TABLE table_11748792_2 (thursday VARCHAR, series VARCHAR)"}, {"answer": "SELECT friday FROM table_11748792_2 WHERE monday = \"Emma Willis Jamie East\"", "question": "Who is the friday presenter for each show, when the monday presenter is Emma Willis Jamie East?", "context": "CREATE TABLE table_11748792_2 (friday VARCHAR, monday VARCHAR)"}, {"answer": "SELECT tuesday FROM table_11748792_2 WHERE series = \"Celebrity Big Brother 8\"", "question": "Who is the Tuesday presenter of Celebrity Big Brother 8?", "context": "CREATE TABLE table_11748792_2 (tuesday VARCHAR, series VARCHAR)"}, {"answer": "SELECT wednesday FROM table_11748792_2 WHERE series = \"Big Brother 13\"", "question": "Who is the Wednesday presenter of the show Big Brother 13?", "context": "CREATE TABLE table_11748792_2 (wednesday VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_11748792_2 WHERE sunday = \"Alice Levine Jamie East\"", "question": "List all of the shows with Alice Levine Jamie East is the Sunday presenter.", "context": "CREATE TABLE table_11748792_2 (series VARCHAR, sunday VARCHAR)"}, {"answer": "SELECT position FROM table_11734041_7 WHERE years_for_rockets = \"2008\"", "question": "What are all the positions for the rockets in 2008?", "context": "CREATE TABLE table_11734041_7 (position VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_11734041_7 WHERE school_club_team_country = \"Clemson\"", "question": "What is the height of the school club team members in clemson?", "context": "CREATE TABLE table_11734041_7 (height_in_ft VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT years_for_rockets FROM table_11734041_6 WHERE player = \"Ford, Alton Alton Ford\"", "question": "What years for the rockets did player ford, alton alton ford play?", "context": "CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_for_rockets FROM table_11734041_6 WHERE player = \"Ford, Phil Phil Ford\"", "question": "What years for the rockets did the player ford, phil phil ford play?", "context": "CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team_country FROM table_11734041_6 WHERE player = \"Fitch, Gerald Gerald Fitch\"", "question": "What school/club team/country did the player fitch, gerald gerald fitch play for?", "context": "CREATE TABLE table_11734041_6 (school_club_team_country VARCHAR, player VARCHAR)"}, {"answer": "SELECT weekly_rank FROM table_11753080_2 WHERE _number = 4", "question": "What is the weekly rank where the number is 4?", "context": "CREATE TABLE table_11753080_2 (weekly_rank VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MIN(t20_matches) FROM table_1176371_1", "question": "What is the minimum of t20 matches?", "context": "CREATE TABLE table_1176371_1 (t20_matches INTEGER)"}, {"answer": "SELECT location FROM table_1176371_1 WHERE name_of_ground = \"Ropery Lane\"", "question": "Where is ropery lane located?", "context": "CREATE TABLE table_1176371_1 (location VARCHAR, name_of_ground VARCHAR)"}, {"answer": "SELECT location FROM table_1176371_1 WHERE la_matches = 7 AND name_of_ground = \"Ropery Lane\"", "question": "Where is ropery lane and la matches 7 location?", "context": "CREATE TABLE table_1176371_1 (location VARCHAR, la_matches VARCHAR, name_of_ground VARCHAR)"}, {"answer": "SELECT MAX(fc_matches) FROM table_1176371_1", "question": "What is the maximum fc matches?", "context": "CREATE TABLE table_1176371_1 (fc_matches INTEGER)"}, {"answer": "SELECT MAX(fc_matches) FROM table_1176371_1 WHERE name_of_ground = \"The Racecourse\"", "question": "What is the maximum fc matches at the racecourse?", "context": "CREATE TABLE table_1176371_1 (fc_matches INTEGER, name_of_ground VARCHAR)"}, {"answer": "SELECT MAX(t20_matches) FROM table_1176371_1 WHERE name_of_ground = \"Green Lane\"", "question": "What is the maximum t20 on green lane?", "context": "CREATE TABLE table_1176371_1 (t20_matches INTEGER, name_of_ground VARCHAR)"}, {"answer": "SELECT cylinders__valves FROM table_1176162_3 WHERE model = \"1.8 20V\"", "question": "what's the\u00a0cylinders/ valves\u00a0with\u00a0model\u00a0being 1.8 20v", "context": "CREATE TABLE table_1176162_3 (cylinders__valves VARCHAR, model VARCHAR)"}, {"answer": "SELECT unit FROM table_11793221_2 WHERE commander = \"Lieutenant Colonel Francis Hepburn\"", "question": "Which units are commanded by Lieutenant Colonel Francis Hepburn?", "context": "CREATE TABLE table_11793221_2 (unit VARCHAR, commander VARCHAR)"}, {"answer": "SELECT complement FROM table_11793221_2 WHERE commander = \"Major William Lloyd\"", "question": "What are the complements when the commander is Major William Lloyd?", "context": "CREATE TABLE table_11793221_2 (complement VARCHAR, commander VARCHAR)"}, {"answer": "SELECT wounded FROM table_11793221_2 WHERE complement = \"173 off 2059 men\"", "question": "How many were wounded when the complement was 173 off 2059 men?", "context": "CREATE TABLE table_11793221_2 (wounded VARCHAR, complement VARCHAR)"}, {"answer": "SELECT killed FROM table_11793221_2 WHERE commander = \"Major-General Jean Victor de Constant Rebecque\"", "question": "How many where killed under Major-General Jean Victor de Constant Rebecque's command?", "context": "CREATE TABLE table_11793221_2 (killed VARCHAR, commander VARCHAR)"}, {"answer": "SELECT commander FROM table_11793221_2 WHERE wounded = \"8 off 0 men\"", "question": "Who were the commanders when 8 off 0 men were wounded?", "context": "CREATE TABLE table_11793221_2 (commander VARCHAR, wounded VARCHAR)"}, {"answer": "SELECT gdp_per_capita__nominal_ FROM table_11780179_1 WHERE gdp__nominal_ = \"$52.0 billion\"", "question": "What is the gpa per capita (nominal) for the country with gdp (nominal) is $52.0 billion?", "context": "CREATE TABLE table_11780179_1 (gdp_per_capita__nominal_ VARCHAR, gdp__nominal_ VARCHAR)"}, {"answer": "SELECT COUNT(gdp_per_capita__nominal_) FROM table_11780179_1 WHERE gdp__nominal_ = \"$29.9 billion\"", "question": "How many countries has a gdp (nominal) of $29.9 billion?", "context": "CREATE TABLE table_11780179_1 (gdp_per_capita__nominal_ VARCHAR, gdp__nominal_ VARCHAR)"}, {"answer": "SELECT gdp__nominal_ FROM table_11780179_1 WHERE country = \"Uzbekistan\"", "question": "What is the GDP (nominal) for Uzbekistan?", "context": "CREATE TABLE table_11780179_1 (gdp__nominal_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(area__km\u00b2_) FROM table_11780179_1 WHERE population = 16967000", "question": "What is the area (km\u00b2) for the country with a population of 16967000?", "context": "CREATE TABLE table_11780179_1 (area__km\u00b2_ INTEGER, population VARCHAR)"}, {"answer": "SELECT aspect_ratio FROM table_1180228_1 WHERE released = \"12/10/2009\"", "question": "What is the aspect ratio of the DVD released on 12/10/2009?", "context": "CREATE TABLE table_1180228_1 (aspect_ratio VARCHAR, released VARCHAR)"}, {"answer": "SELECT dvd_name FROM table_1180228_1 WHERE num_of_discs > 2.0", "question": "What is the name of the DVD where the number of discs is greater than 2.0", "context": "CREATE TABLE table_1180228_1 (dvd_name VARCHAR, num_of_discs INTEGER)"}, {"answer": "SELECT COUNT(released) FROM table_1180228_1 WHERE dvd_name = \"River Cottage Forever\"", "question": "How many releases did the DVD River Cottage forever have?", "context": "CREATE TABLE table_1180228_1 (released VARCHAR, dvd_name VARCHAR)"}, {"answer": "SELECT COUNT(num_of_discs) FROM table_1180228_1 WHERE duration = \"4 hours 40 minutes\"", "question": "What is the total number of discs where the run time was 4 hours 40 minutes?", "context": "CREATE TABLE table_1180228_1 (num_of_discs VARCHAR, duration VARCHAR)"}, {"answer": "SELECT wounded FROM table_11793221_4 WHERE complement = \"46 off 656 men\"", "question": "What were the wounded for complement of 46 off 656 men?", "context": "CREATE TABLE table_11793221_4 (wounded VARCHAR, complement VARCHAR)"}, {"answer": "SELECT missing FROM table_11793221_4 WHERE commander = \"Lieutenant General Sir Thomas Picton\"", "question": "What was the missing for lieutenant general sir thomas picton?", "context": "CREATE TABLE table_11793221_4 (missing VARCHAR, commander VARCHAR)"}, {"answer": "SELECT COUNT(complement) FROM table_11793221_4 WHERE unit = \"4th Hanoverian Brigade\"", "question": "Name the number of complement for 4th hanoverian brigade", "context": "CREATE TABLE table_11793221_4 (complement VARCHAR, unit VARCHAR)"}, {"answer": "SELECT commander FROM table_11793221_4 WHERE complement = \"167 off 2348 men\"", "question": "Name the commander of 167 off 2348 men", "context": "CREATE TABLE table_11793221_4 (commander VARCHAR, complement VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_11803648_17", "question": "HOW MUCH WAS THE OVERALL FOR ERIK KARLSSON?", "context": "CREATE TABLE table_11803648_17 (overall INTEGER)"}, {"answer": "SELECT MIN(round) FROM table_11803648_17 WHERE position = \"Forward\"", "question": "WHAT ROUND WAS FORWARD ANDRE PETERSSON SELECTED?", "context": "CREATE TABLE table_11803648_17 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT position FROM table_11803648_17 WHERE player = \"Patrick Wiercioch\"", "question": "WHAT POSITION DOES PATRICK WIERCIOCH PLAY?", "context": "CREATE TABLE table_11803648_17 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_11803648_17 WHERE club_team = \"Omaha (USHL)\"", "question": "NAME THE OVERALL FOR THE OMAHA (USHL) CLUB TEAM", "context": "CREATE TABLE table_11803648_17 (overall INTEGER, club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_11803648_17 WHERE player = \"Andre Petersson\"", "question": "WHERE IS ANDRE PETERSSON FROM?", "context": "CREATE TABLE table_11803648_17 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT club_team FROM table_11803648_21 WHERE player = \"Jarrod Maidens\"", "question": "What club team did JArrod Maidens play for?", "context": "CREATE TABLE table_11803648_21 (club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_11803648_21 WHERE player = \"Cody Ceci\"", "question": "What position does Cody Ceci play?", "context": "CREATE TABLE table_11803648_21 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_11803648_20 WHERE club_team = \"Peterborough Petes (OHL)\"", "question": "What is the Nationality when the club team is Peterborough Petes (OHL)?", "context": "CREATE TABLE table_11803648_20 (nationality VARCHAR, club_team VARCHAR)"}, {"answer": "SELECT player FROM table_11803648_20 WHERE round = 5", "question": "Which player is in round 5?", "context": "CREATE TABLE table_11803648_20 (player VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_11803648_20 WHERE overall = \"126\"", "question": "What position is associated with an overall value of 126?", "context": "CREATE TABLE table_11803648_20 (position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT position FROM table_11803648_20 WHERE player = \"Jordan Fransoo\"", "question": "What position is the player Jordan Fransoo in?", "context": "CREATE TABLE table_11803648_20 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_11803648_20 WHERE player = \"Matthew Puempel\"", "question": "How many rounds is the player Matthew Puempel associated with?", "context": "CREATE TABLE table_11803648_20 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_11803648_22 WHERE player = \"Tobias Lindberg\"", "question": "What is the position of player Tobias Lindberg?", "context": "CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_11803648_22 WHERE overall = \"78\"", "question": "How many players had overall 78?", "context": "CREATE TABLE table_11803648_22 (player VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_11803648_22 WHERE club_team = \"Guelph Storm (OHL)\"", "question": "What is the last round with club team Guelph Storm (ohl)?", "context": "CREATE TABLE table_11803648_22 (round INTEGER, club_team VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_11803648_22 WHERE player = \"Ben Harpur\"", "question": "How many positions did player Ben Harpur play?", "context": "CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_11803648_22 WHERE player = \"Marcus Hogberg\"", "question": "What is the position of player Marcus Hogberg?", "context": "CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT institution FROM table_1183842_1 WHERE enrollment = 3488", "question": "3488 is the enrollment amount of what college?", "context": "CREATE TABLE table_1183842_1 (institution VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_1183842_1 WHERE institution = \"Barry University\"", "question": "Barry University had the highest enrollment of what number?", "context": "CREATE TABLE table_1183842_1 (enrollment INTEGER, institution VARCHAR)"}, {"answer": "SELECT type FROM table_1183842_1 WHERE nickname = \"Fighting Knights\"", "question": "The fighting knights has what type of nickname?", "context": "CREATE TABLE table_1183842_1 (type VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT joined FROM table_1183842_1 WHERE location = \"Boca Raton, Florida\"", "question": "Boca Raton, Florida had what joined amount?", "context": "CREATE TABLE table_1183842_1 (joined VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_1183842_1 WHERE enrollment = 3584", "question": "If the enrollment is 3584, what's the largest founded?", "context": "CREATE TABLE table_1183842_1 (founded INTEGER, enrollment VARCHAR)"}, {"answer": "SELECT directed_by FROM table_11820086_1 WHERE us_viewers__millions_ = \"2.57\"", "question": "Who directed the episode that was viewed by 2.57 million people in the U.S.?", "context": "CREATE TABLE table_11820086_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_11820086_1 WHERE us_viewers__millions_ = \"2.50\"", "question": "Who directed the episode that was viewed by 2.50 million people in the U.S.?", "context": "CREATE TABLE table_11820086_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_11820086_1 WHERE us_viewers__millions_ = \"3.00\"", "question": "Which episode number in season 5 was viewed by 3.00 million U.S. viziers?", "context": "CREATE TABLE table_11820086_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT percent__1990_ FROM table_1182314_5 WHERE state = \"United states\"", "question": "what are all the\u00a0percent (1990)\u00a0where\u00a0state\u00a0is united states", "context": "CREATE TABLE table_1182314_5 (percent__1990_ VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(percent__2000_) FROM table_1182314_5 WHERE percent__1980_ = \"3.4%\"", "question": "what is the total number of\u00a0percent (2000)\u00a0where\u00a0percent (1980)\u00a0is 3.4%", "context": "CREATE TABLE table_1182314_5 (percent__2000_ VARCHAR, percent__1980_ VARCHAR)"}, {"answer": "SELECT percent__1990_ FROM table_1182314_5 WHERE state = \"Mississippi\"", "question": "what are all the\u00a0percent (1990)\u00a0where\u00a0state\u00a0is mississippi", "context": "CREATE TABLE table_1182314_5 (percent__1990_ VARCHAR, state VARCHAR)"}, {"answer": "SELECT MAX(norwegian_americans__2000_) FROM table_1182314_5 WHERE norwegian_americans__1990_ = 9170", "question": "what is the maximum\u00a0norwegian americans (2000)\u00a0where\u00a0norwegian americans (1990)\u00a0is 9170", "context": "CREATE TABLE table_1182314_5 (norwegian_americans__2000_ INTEGER, norwegian_americans__1990_ VARCHAR)"}, {"answer": "SELECT MIN(norwegian_americans__1980_) FROM table_1182314_5 WHERE state = \"Rhode Island\"", "question": "what is the minimum\u00a0norwegian americans (1980)\u00a0where\u00a0state\u00a0is rhode island", "context": "CREATE TABLE table_1182314_5 (norwegian_americans__1980_ INTEGER, state VARCHAR)"}, {"answer": "SELECT english_title FROM table_11839306_2 WHERE r\u014dmaji_title = \"Getto Daun\"", "question": "What is the English version of the title Getto Daun?", "context": "CREATE TABLE table_11839306_2 (english_title VARCHAR, r\u014dmaji_title VARCHAR)"}, {"answer": "SELECT MIN(track) FROM table_11839306_2", "question": "What is the smallest track number?", "context": "CREATE TABLE table_11839306_2 (track INTEGER)"}, {"answer": "SELECT COUNT(track) FROM table_11839306_2 WHERE r\u014dmaji_title = \"M\u014d Sukoshi T\u014dku\"", "question": "How many tracks are titled M\u014d Sukoshi T\u014dku?", "context": "CREATE TABLE table_11839306_2 (track VARCHAR, r\u014dmaji_title VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_11839306_2 WHERE english_title = \"Fantasy\"", "question": "What is the Japanese title for Fantasy?", "context": "CREATE TABLE table_11839306_2 (japanese_title VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT track AS time FROM table_11839306_2 WHERE track = 8", "question": "How long is track number 8?", "context": "CREATE TABLE table_11839306_2 (track VARCHAR)"}, {"answer": "SELECT gt2_winning_team FROM table_11875915_2 WHERE gt3_winning_team = \"#1 PTG\"", "question": "Who was the GT2 winning team when the GT3 winning team was #1 PTG?", "context": "CREATE TABLE table_11875915_2 (gt2_winning_team VARCHAR, gt3_winning_team VARCHAR)"}, {"answer": "SELECT COUNT(doubles_champions) FROM table_11900378_1 WHERE tournament = \"Serbia F6 Futures\"", "question": "How many doubles champions were there for the Serbia f6 Futures tournament?", "context": "CREATE TABLE table_11900378_1 (doubles_champions VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT COUNT(tournament) FROM table_11900378_1 WHERE singles_champions = \"Ludovic Walter\"", "question": "How many singles tournaments did Ludovic Walter win?", "context": "CREATE TABLE table_11900378_1 (tournament VARCHAR, singles_champions VARCHAR)"}, {"answer": "SELECT type FROM table_11891841_2 WHERE country = \"ESp\"", "question": "What is the type where the country is esp?", "context": "CREATE TABLE table_11891841_2 (type VARCHAR, country VARCHAR)"}, {"answer": "SELECT name FROM table_11891841_2 WHERE p = \"MF\"", "question": "What is the name where p is mf?", "context": "CREATE TABLE table_11891841_2 (name VARCHAR, p VARCHAR)"}, {"answer": "SELECT type FROM table_11891841_2 WHERE name = \"Bojan\"", "question": "What is the type where the name is bojan?", "context": "CREATE TABLE table_11891841_2 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT first_day_cover_cancellation FROM table_11900773_5 WHERE theme = \"University of Saskatchewan\"", "question": "What was the first day cover cancellation for the University of Saskatchewan themed stamp?", "context": "CREATE TABLE table_11900773_5 (first_day_cover_cancellation VARCHAR, theme VARCHAR)"}, {"answer": "SELECT design FROM table_11900773_5 WHERE theme = \"Jasper National Park\"", "question": "Who was responsible  for the design of the Jasper National Park theme?", "context": "CREATE TABLE table_11900773_5 (design VARCHAR, theme VARCHAR)"}, {"answer": "SELECT paper_type FROM table_11900773_5 WHERE theme = \"University of Saskatchewan\"", "question": "What is the paper type of the University of Saskatchewan themed stamp?", "context": "CREATE TABLE table_11900773_5 (paper_type VARCHAR, theme VARCHAR)"}, {"answer": "SELECT illustration FROM table_11900773_5 WHERE theme = \"100 Years of Scouting\"", "question": "Who created the illustration for the stamp that was themed 100 years of scouting?", "context": "CREATE TABLE table_11900773_5 (illustration VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(nickname) FROM table_11908801_1 WHERE meaning = \"God Knows My Journey\"", "question": "What is the number of nicknames for the meaning of god knows my journey.", "context": "CREATE TABLE table_11908801_1 (nickname VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT COUNT(meaning) FROM table_11908801_1 WHERE full_name = \"Chidinma Anulika\"", "question": "What is the number of meaning where full name is chidinma anulika?", "context": "CREATE TABLE table_11908801_1 (meaning VARCHAR, full_name VARCHAR)"}, {"answer": "SELECT nickname FROM table_11908801_1 WHERE meaning = \"God Holds My Life\"", "question": "What is the nickname that means god holds my life?", "context": "CREATE TABLE table_11908801_1 (nickname VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT high_assists FROM table_11907963_6 WHERE game = 49", "question": "Who had the high assists for game 49?", "context": "CREATE TABLE table_11907963_6 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_11907963_6 WHERE high_rebounds = \"Emeka Okafor (10)\"", "question": "What was the score for the game in which Emeka Okafor (10) had high rebounds?", "context": "CREATE TABLE table_11907963_6 (score VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_11934032_1 WHERE station_number = \"C03\"", "question": "what is the total number of\u00a0location\u00a0where\u00a0station number\u00a0is c03", "context": "CREATE TABLE table_11934032_1 (location VARCHAR, station_number VARCHAR)"}, {"answer": "SELECT type FROM table_11934032_1 WHERE station_number = \"C08\"", "question": "what are all the\u00a0type\u00a0where\u00a0station number\u00a0is c08", "context": "CREATE TABLE table_11934032_1 (type VARCHAR, station_number VARCHAR)"}, {"answer": "SELECT type FROM table_11934032_1 WHERE location = \"St Ives, Cambridgeshire\"", "question": "what are all the\u00a0type\u00a0where\u00a0location\u00a0is st ives, cambridgeshire", "context": "CREATE TABLE table_11934032_1 (type VARCHAR, location VARCHAR)"}, {"answer": "SELECT registrations FROM table_11934032_1 WHERE station_number = \"C26\"", "question": "what are all the\u00a0registrations\u00a0where\u00a0station number\u00a0is c26", "context": "CREATE TABLE table_11934032_1 (registrations VARCHAR, station_number VARCHAR)"}, {"answer": "SELECT location FROM table_11934032_1 WHERE station_number = \"C11\"", "question": "what are all the\u00a0location\u00a0where\u00a0station number\u00a0is c11", "context": "CREATE TABLE table_11934032_1 (location VARCHAR, station_number VARCHAR)"}, {"answer": "SELECT registrations FROM table_11934032_1 WHERE location = \"Yaxley\"", "question": "what are all the\u00a0registrations\u00a0where\u00a0location\u00a0is yaxley", "context": "CREATE TABLE table_11934032_1 (registrations VARCHAR, location VARCHAR)"}, {"answer": "SELECT issue_price__proof_ FROM table_11916083_1 WHERE issue_price__bu_[_clarification_needed_] = \"34.95\"", "question": "What is the issue price (proof) where the issue price (bu) is 34.95?", "context": "CREATE TABLE table_11916083_1 (issue_price__proof_ VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_11916083_1 WHERE mintage__proof_ = \"25,000\"", "question": "What is the earliest year where the mintage (proof) is 25,000?", "context": "CREATE TABLE table_11916083_1 (year INTEGER, mintage__proof_ VARCHAR)"}, {"answer": "SELECT mintage__bu_[_clarification_needed_] FROM table_11916083_1 WHERE artist = \"Royal Canadian Mint Staff\" AND issue_price__proof_ = \"$54.95\"", "question": "What is the mintage (bu) with the artist Royal Canadian Mint Staff and has an issue price (proof) of $54.95?", "context": "CREATE TABLE table_11916083_1 (mintage__bu_ VARCHAR, _clarification_needed_ VARCHAR, artist VARCHAR, issue_price__proof_ VARCHAR)"}, {"answer": "SELECT year FROM table_11916083_1 WHERE issue_price__bu_[_clarification_needed_] = \"$26.95\"", "question": "What is the year that the issue price (bu) is $26.95?", "context": "CREATE TABLE table_11916083_1 (year VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR)"}, {"answer": "SELECT COUNT(first_class_team) FROM table_11950720_4 WHERE date_of_birth = \"5 December 1970\"", "question": "What is the number of first class team with birthday of 5 december 1970?", "context": "CREATE TABLE table_11950720_4 (first_class_team VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT no FROM table_11950720_4 WHERE date_of_birth = \"15 November 1973\"", "question": "What is the number when birthday is 15 november 1973?", "context": "CREATE TABLE table_11950720_4 (no VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT bowling_style FROM table_11950720_4 WHERE player = \"Chris Harris\"", "question": "What is the bowling style of chris harris?", "context": "CREATE TABLE table_11950720_4 (bowling_style VARCHAR, player VARCHAR)"}, {"answer": "SELECT first_class_team FROM table_11950720_4 WHERE date_of_birth = \"20 November 1969\"", "question": "Where is the first class team of date of birth 20 november 1969?", "context": "CREATE TABLE table_11950720_4 (first_class_team VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT batting_style FROM table_11950720_3 WHERE player = \"Javagal Srinath\"", "question": "What's Javagal Srinath's batting style?", "context": "CREATE TABLE table_11950720_3 (batting_style VARCHAR, player VARCHAR)"}, {"answer": "SELECT bowling_style FROM table_11950720_8 WHERE player = \"Shivnarine Chanderpaul\"", "question": "Shivnarine Chanderpaul used what bowling style? ", "context": "CREATE TABLE table_11950720_8 (bowling_style VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(musical_guest_and_song) FROM table_11951237_2 WHERE production_code = \"K0519\"", "question": "How many musical guests and songs were in episodes with a production code k0519?", "context": "CREATE TABLE table_11951237_2 (musical_guest_and_song VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_11951237_2 WHERE original_air_date = \"August 31, 1995\"", "question": "How many episodes originally aired on August 31, 1995?", "context": "CREATE TABLE table_11951237_2 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_11951237_3 WHERE directed_by = \"Timothy Van Patten\"", "question": "What is theoriginal air date of the episode directed by timothy van patten?", "context": "CREATE TABLE table_11951237_3 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(season__number) FROM table_11951237_3 WHERE production_code = \"K1505\"", "question": "What is the season # where production code is k1505?", "context": "CREATE TABLE table_11951237_3 (season__number INTEGER, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_11951237_3 WHERE original_air_date = \"February 6, 1997\"", "question": "What is the title of the episode with the original air date of february 6, 1997?", "context": "CREATE TABLE table_11951237_3 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_11951237_4 WHERE season__number = 8", "question": "How many titles are there for season 8", "context": "CREATE TABLE table_11951237_4 (title VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT title FROM table_11951237_4 WHERE original_air_date = \"March 19, 1998\"", "question": "Which tittles have an original air date of March 19, 1998", "context": "CREATE TABLE table_11951237_4 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_11959669_3 WHERE date = \"November 24\"", "question": "What was the attendance of the game November 24", "context": "CREATE TABLE table_11959669_3 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_11959669_3 WHERE date = \"November 4\"", "question": "Who had the  highest assists on November 4", "context": "CREATE TABLE table_11959669_3 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_11959669_3 WHERE date = \"November 4\"", "question": "Who had the highest rebounds on November 4", "context": "CREATE TABLE table_11959669_3 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_11959669_7 WHERE date = \"March 2\"", "question": "How many numbers were listed under attendance for March 2?", "context": "CREATE TABLE table_11959669_7 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_11959669_7 WHERE date = \"March 26\"", "question": "What was the final score on March 26?", "context": "CREATE TABLE table_11959669_7 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_11959669_6 WHERE score = \"88\u201386\"", "question": "What is the team when the score is 88\u201386?", "context": "CREATE TABLE table_11959669_6 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_11959669_6 WHERE high_points = \"Pierce (30)\"", "question": "What is the score when high points is from pierce (30)?", "context": "CREATE TABLE table_11959669_6 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_11959669_6 WHERE score = \"98\u201390\"", "question": "How many times is the score 98\u201390?", "context": "CREATE TABLE table_11959669_6 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_11959669_6 WHERE location_attendance = \"Pepsi Center 19,894\"", "question": "What is the game that the location attendance is pepsi center 19,894?", "context": "CREATE TABLE table_11959669_6 (game INTEGER, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_11959669_6 WHERE location_attendance = \"US Airways Center 18,422\"", "question": "What is the team when location attendance is us airways center 18,422?", "context": "CREATE TABLE table_11959669_6 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT record FROM table_11959669_6 WHERE high_assists = \"Pierce (6)\"", "question": "What is the record where high assists is pierce (6)?", "context": "CREATE TABLE table_11959669_6 (record VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT score FROM table_11960407_2 WHERE team = \"@ Cleveland\"", "question": "What was the result of the game when the raptors played @ cleveland?", "context": "CREATE TABLE table_11960407_2 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_11960196_3 WHERE game = 5", "question": "Who did the high points of game 5?", "context": "CREATE TABLE table_11960196_3 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_11960196_3 WHERE location_attendance = \"Wachovia Center 18,347\"", "question": "How many high points were at the wachovia center 18,347?", "context": "CREATE TABLE table_11960196_3 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_11960196_3 WHERE date = \"April 25\"", "question": "What is the team of april 25?", "context": "CREATE TABLE table_11960196_3 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_11960407_4 WHERE high_points = \"Chris Bosh (16)\"", "question": "Who had the high rebounds when Chris Bosh (16) had the high points?", "context": "CREATE TABLE table_11960407_4 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_11960407_4 WHERE location_attendance = \"Air Canada Centre 18,067\"", "question": "What was the score when the location attendance was Air Canada Centre 18,067?", "context": "CREATE TABLE table_11960407_4 (score VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_11960407_4 WHERE high_rebounds = \"Chris Bosh (14)\"", "question": "When did Chris Bosh (14) have the high rebounds?", "context": "CREATE TABLE table_11960407_4 (date VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_points FROM table_11960407_4 WHERE date = \"January 23\"", "question": "Who had the high points on January 23?", "context": "CREATE TABLE table_11960407_4 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_11960407_4 WHERE game = 39", "question": "How many times was the game 39?", "context": "CREATE TABLE table_11960407_4 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_11960610_10 WHERE team = \"San Antonio\"", "question": "What is San Antonio  game number?", "context": "CREATE TABLE table_11960610_10 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_11960610_10 WHERE high_rebounds = \"Gray (8)\"", "question": "Who had high points when high rebound is gray (8)?", "context": "CREATE TABLE table_11960610_10 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_11960610_10 WHERE high_points = \"Deng (20)\"", "question": "What is the date deng (20) had high points?", "context": "CREATE TABLE table_11960610_10 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_11960610_10 WHERE location_attendance = \"United Center 22,097\"", "question": "What was the score of united center 22,097?", "context": "CREATE TABLE table_11960610_10 (score VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_11960610_10 WHERE high_points = \"Gordon (27)\"", "question": "When gordon (27) had high points, what was the number of high assists?", "context": "CREATE TABLE table_11960610_10 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_11960610_6 WHERE date = \"November 15\"", "question": "What was the location attendance on the date of November 15?", "context": "CREATE TABLE table_11960610_6 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_11960944_11 WHERE high_assists = \"Billups , Stuckey (4)\"", "question": "Where was the game played when the high assists were scored by billups , stuckey (4)?", "context": "CREATE TABLE table_11960944_11 (location_attendance VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT date FROM table_11960944_11 WHERE score = \"L 88\u201379\"", "question": "What date was the game for the score  L 88\u201379?", "context": "CREATE TABLE table_11960944_11 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_11960944_7 WHERE game = 67", "question": "How many high points were there in the game 67?", "context": "CREATE TABLE table_11960944_7 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_11960944_4 WHERE high_points = \"Wallace (20)\"", "question": "Which team was played when the high points was from Wallace (20)?", "context": "CREATE TABLE table_11960944_4 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT date FROM table_11960944_4 WHERE team = \"@ Memphis\"", "question": "Which date was the team playing @ Memphis?", "context": "CREATE TABLE table_11960944_4 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_11960944_4 WHERE high_rebounds = \"McDyess (9)\" AND high_assists = \"Billups (10)\"", "question": "how many times was the high rebounds by Mcdyess (9) and the high assists was by Billups (10)?", "context": "CREATE TABLE table_11960944_4 (high_points VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_assists FROM table_11960944_4 WHERE date = \"December 12\"", "question": "Who had the high assists on the date December 12?", "context": "CREATE TABLE table_11960944_4 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_11960944_6 WHERE game = 57", "question": "What date was game 57 held on?", "context": "CREATE TABLE table_11960944_6 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_11960944_6 WHERE team = \"@ Milwaukee\"", "question": "How many players had the most points in the game @ Milwaukee?", "context": "CREATE TABLE table_11960944_6 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_11961582_4 WHERE game = 24", "question": "Who did the most high rebounds in the game 24?", "context": "CREATE TABLE table_11961582_4 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_11961582_4 WHERE date = \"December 8\"", "question": "What was the score of the game played on December 8?", "context": "CREATE TABLE table_11961582_4 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_11961582_4 WHERE high_assists = \"A. Johnson (6)\"", "question": "What was the total number of games where A. Johnson (6) gave the most high assists?", "context": "CREATE TABLE table_11961582_4 (game VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_11961582_4", "question": "What's the minimal game number in the season?", "context": "CREATE TABLE table_11961582_4 (game INTEGER)"}, {"answer": "SELECT location_attendance FROM table_11961582_10 WHERE high_rebounds = \"A. Horford (13)\"", "question": "What is the location when the high rebounds was from A. Horford (13)?", "context": "CREATE TABLE table_11961582_10 (location_attendance VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_points FROM table_11961582_10 WHERE high_assists = \"J. Johnson (7)\"", "question": "How had the high points when the high assists were from J. Johnson (7)?", "context": "CREATE TABLE table_11961582_10 (high_points VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_11961582_10 WHERE high_assists = \"J. Johnson (7)\"", "question": "Who had the high rebounds when the high assists were from J. Johnson (7)?", "context": "CREATE TABLE table_11961582_10 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT team FROM table_11961582_10 WHERE date = \"April 20\"", "question": "Which team was played on April 20?", "context": "CREATE TABLE table_11961582_10 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_11961582_10 WHERE date = \"April 23\"", "question": "Who had the high rebounds for the game on april 23?", "context": "CREATE TABLE table_11961582_10 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_11963601_11 WHERE date = \"May 11\"", "question": "What was the score in the game on May 11? ", "context": "CREATE TABLE table_11963601_11 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_11963601_11 WHERE date = \"May 3\"", "question": "Who was the high scorer and how much did they score in the game on May 3? ", "context": "CREATE TABLE table_11963601_11 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_11963601_11 WHERE game = 5", "question": "What was the series count at for game 5? ", "context": "CREATE TABLE table_11963601_11 (series VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_11963601_11 WHERE date = \"May 15\"", "question": "Where was the game on May 15 and how many were in attendance? ", "context": "CREATE TABLE table_11963601_11 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_11961582_7 WHERE date = \"March 17\"", "question": "What was the attendance on March 17?", "context": "CREATE TABLE table_11961582_7 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_11963536_11 WHERE date = \"May 11\"", "question": "What was the high assist total on May 11?", "context": "CREATE TABLE table_11963536_11 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_11964047_10", "question": "What is the lowest #?", "context": "CREATE TABLE table_11964047_10 (_number INTEGER)"}, {"answer": "SELECT score FROM table_11964047_10 WHERE streak = \"L5\"", "question": "What is the score of the game with the streak l5", "context": "CREATE TABLE table_11964047_10 (score VARCHAR, streak VARCHAR)"}, {"answer": "SELECT attendance FROM table_11964047_10 WHERE home = \"Los Angeles Lakers\"", "question": "What is the attendance for the home game at Los Angeles Lakers?", "context": "CREATE TABLE table_11964047_10 (attendance VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_11964047_10 WHERE home = \"Los Angeles Lakers\"", "question": "What is the record for the game at home Los Angeles Lakers?", "context": "CREATE TABLE table_11964047_10 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_11964047_6 WHERE _number = 29", "question": "What was the result and score of Game #29?", "context": "CREATE TABLE table_11964047_6 (score VARCHAR, _number VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_11964047_6 WHERE _number = 26", "question": "Who was the leading scorer in Game #26?", "context": "CREATE TABLE table_11964047_6 (leading_scorer VARCHAR, _number VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_11964154_11 WHERE score = \"L 84\u2013102 (OT)\"", "question": "Who had the high rebounds when the score was l 84\u2013102 (ot)?", "context": "CREATE TABLE table_11964154_11 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_11964154_11 WHERE high_rebounds = \"Nick Collison (15)\"", "question": "Who had the high assists when the high rebounds were from Nick Collison (15)?", "context": "CREATE TABLE table_11964154_11 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_assists FROM table_11964154_11 WHERE team = \"@ Dallas\"", "question": "Who had the high assists @ Dallas?", "context": "CREATE TABLE table_11964154_11 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_11964154_11 WHERE location_attendance = \"Toyota Center 18,370\"", "question": "Who had the high assists when the location attendance was Toyota Center 18,370?", "context": "CREATE TABLE table_11964154_11 (high_assists VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT record FROM table_11964154_11 WHERE high_rebounds = \"Nick Collison (11)\"", "question": "What was the record when the high rebounds was from Nick Collison (11)?", "context": "CREATE TABLE table_11964154_11 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_11964154_7 WHERE score = \"L 96\u2013123 (OT)\"", "question": "How many times was the final score  l 96\u2013123 (ot)?", "context": "CREATE TABLE table_11964154_7 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_11964154_7 WHERE high_assists = \"Earl Watson (5)\" AND date = \"December 2\"", "question": "How many times was the high assists earl watson (5) and the date of the game was december 2?", "context": "CREATE TABLE table_11964154_7 (score VARCHAR, high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_11964154_7 WHERE game = 25", "question": "Whom did they play on game number 25?", "context": "CREATE TABLE table_11964154_7 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(leading_scorer) FROM table_11964047_8 WHERE attendance = \"KeyArena 16,640\"", "question": "What is the number of the leading scorer for keyarena 16,640?", "context": "CREATE TABLE table_11964047_8 (leading_scorer VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(leading_scorer) FROM table_11964047_8 WHERE date = \"February 21\"", "question": "What is the number of leading scorer of february 21?", "context": "CREATE TABLE table_11964047_8 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_11964047_8 WHERE date = \"February 1\"", "question": "What is the leading scorer on february 1?", "context": "CREATE TABLE table_11964047_8 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_11964047_9 WHERE record = \"35\u201333\"", "question": " what's the\u00a0score\u00a0where\u00a0record\u00a0is 35\u201333", "context": "CREATE TABLE table_11964047_9 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_11964047_9 WHERE date = \"March 27\"", "question": " what's the\u00a0home\u00a0where\u00a0date\u00a0is march 27", "context": "CREATE TABLE table_11964047_9 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_11964047_9 WHERE visitor = \"Phoenix Suns\" AND record = \"31\u201330\"", "question": " what's the\u00a0date\u00a0where\u00a0visitor\u00a0is phoenix suns and\u00a0record\u00a0is 31\u201330", "context": "CREATE TABLE table_11964047_9 (date VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_11964047_9 WHERE score = \"L 80\u201388\"", "question": " what's the\u00a0home team\u00a0where\u00a0score\u00a0is l 80\u201388", "context": "CREATE TABLE table_11964047_9 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_11964047_9 WHERE date = \"March 2\"", "question": " what's the\u00a0leading scorer on march 2", "context": "CREATE TABLE table_11964047_9 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_11964047_9 WHERE home = \"Sacramento Kings\"", "question": " what's the\u00a0leading scorer where home is sacramento kings", "context": "CREATE TABLE table_11964047_9 (leading_scorer VARCHAR, home VARCHAR)"}, {"answer": "SELECT team FROM table_11964154_9 WHERE date = \"February 8\"", "question": " what's the\u00a0team\u00a0where\u00a0date\u00a0is february 8", "context": "CREATE TABLE table_11964154_9 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_11964154_9 WHERE high_rebounds = \"Nick Collison (14)\"", "question": " what's the\u00a0location attendance\u00a0where\u00a0high rebounds\u00a0is nick collison (14)", "context": "CREATE TABLE table_11964154_9 (location_attendance VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT record FROM table_11964154_9 WHERE score = \"W 105\u201392 (OT)\"", "question": " what's the\u00a0record\u00a0where\u00a0score\u00a0is w 105\u201392 (ot)", "context": "CREATE TABLE table_11964154_9 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_11964154_9 WHERE record = \"14\u201339\"", "question": " what's the\u00a0location attendance\u00a0where\u00a0record\u00a0is 14\u201339", "context": "CREATE TABLE table_11964154_9 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_11964154_9 WHERE high_points = \"Micka\u00ebl Gelabale (21)\"", "question": "what is the maximum\u00a0game\u00a0where\u00a0high points\u00a0is micka\u00ebl gelabale (21)", "context": "CREATE TABLE table_11964154_9 (game INTEGER, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_11964154_9 WHERE location_attendance = \"KeyArena 13,627\"", "question": " what's the\u00a0record\u00a0where\u00a0location attendance\u00a0is keyarena 13,627", "context": "CREATE TABLE table_11964154_9 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT score FROM table_11964263_13 WHERE date = \"April 29\"", "question": "What is the score for april 29?", "context": "CREATE TABLE table_11964263_13 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_11964263_13", "question": "Name the minimum game", "context": "CREATE TABLE table_11964263_13 (game INTEGER)"}, {"answer": "SELECT high_points FROM table_11964263_13 WHERE location_attendance = \"Toyota Center 18,269\"", "question": "Name the high points for toyota center 18,269?", "context": "CREATE TABLE table_11964263_13 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT preliminaries FROM table_11970261_2 WHERE average = \"9.135\"", "question": "what's the\u00a0preliminaries\u00a0with\u00a0average\u00a0being 9.135", "context": "CREATE TABLE table_11970261_2 (preliminaries VARCHAR, average VARCHAR)"}, {"answer": "SELECT evening_gown FROM table_11970261_2 WHERE preliminaries = \"9.212\"", "question": "what's the\u00a0evening gown\u00a0with\u00a0preliminaries\u00a0being 9.212", "context": "CREATE TABLE table_11970261_2 (evening_gown VARCHAR, preliminaries VARCHAR)"}, {"answer": "SELECT interview FROM table_11970261_2 WHERE swimsuit = \"9.140\"", "question": "what's the\u00a0interview\u00a0with\u00a0swimsuit\u00a0being 9.140", "context": "CREATE TABLE table_11970261_2 (interview VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT evening_gown FROM table_11970261_2 WHERE swimsuit = \"9.134\"", "question": "what's the\u00a0evening gown\u00a0with\u00a0swimsuit\u00a0being 9.134", "context": "CREATE TABLE table_11970261_2 (evening_gown VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT preliminaries FROM table_11970261_2 WHERE average = \"9.360\"", "question": "what's the\u00a0preliminaries\u00a0with\u00a0average\u00a0being 9.360", "context": "CREATE TABLE table_11970261_2 (preliminaries VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(successor) FROM table_1199219_2 WHERE district = \"New York 20th\"", "question": "How many successors were seated in the New York 20th district?", "context": "CREATE TABLE table_1199219_2 (successor VARCHAR, district VARCHAR)"}, {"answer": "SELECT playoffs FROM table_12002388_1 WHERE reg_season = \"1st, Southern\"", "question": "What playoff result happened during the season in which they finished 1st, southern?", "context": "CREATE TABLE table_12002388_1 (playoffs VARCHAR, reg_season VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_12002388_1 WHERE reg_season = \"4th\"", "question": "How many teams placed 4th in the regular season?", "context": "CREATE TABLE table_12002388_1 (division VARCHAR, reg_season VARCHAR)"}, {"answer": "SELECT open_cup FROM table_12002388_1 WHERE reg_season = \"4th\"", "question": "What was the result of the open cup when they finished 4th in the regular season?", "context": "CREATE TABLE table_12002388_1 (open_cup VARCHAR, reg_season VARCHAR)"}, {"answer": "SELECT COUNT(open_cup) FROM table_12002388_1 WHERE year = 1993", "question": "How many open cups were hosted in 1993?", "context": "CREATE TABLE table_12002388_1 (open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_12002388_1 WHERE reg_season = \"1st, Southern\"", "question": "What year did they finish 1st, southern?", "context": "CREATE TABLE table_12002388_1 (year INTEGER, reg_season VARCHAR)"}, {"answer": "SELECT playoffs FROM table_12002388_1 WHERE league = \"APSL\" AND year = 1992", "question": "What was the playoff result for theteam in the apsl in 1992?", "context": "CREATE TABLE table_12002388_1 (playoffs VARCHAR, league VARCHAR, year VARCHAR)"}, {"answer": "SELECT status FROM table_12001616_4 WHERE car_name = \"TropArtic\"", "question": "What was the status of tropartic?", "context": "CREATE TABLE table_12001616_4 (status VARCHAR, car_name VARCHAR)"}, {"answer": "SELECT status FROM table_12001616_4 WHERE entrant = \"Joe Gibbs Racing\"", "question": "What is the status of joe gibbs racing?", "context": "CREATE TABLE table_12001616_4 (status VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT laps FROM table_12001616_4 WHERE entrant = \"Marcis Auto Racing\"", "question": "What is the laops of marcis auto racing?", "context": "CREATE TABLE table_12001616_4 (laps VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT author___editor___source FROM table_12000368_1 WHERE index__year_ = \"Press Freedom (2007)\"", "question": "what's the\u00a0author / editor / source\u00a0with\u00a0index (year)\u00a0being press freedom (2007)", "context": "CREATE TABLE table_12000368_1 (author___editor___source VARCHAR, index__year_ VARCHAR)"}, {"answer": "SELECT COUNT(countries_sampled) FROM table_12000368_1 WHERE year_of_publication = \"2007\" AND ranking_la__2_ = \"7th\"", "question": " how many\u00a0countries sampled\u00a0with\u00a0year of publication\u00a0being 2007 and\u00a0ranking l.a. (2)\u00a0being 7th", "context": "CREATE TABLE table_12000368_1 (countries_sampled VARCHAR, year_of_publication VARCHAR, ranking_la__2_ VARCHAR)"}, {"answer": "SELECT author___editor___source FROM table_12000368_1 WHERE world_ranking__1_ = \"73rd\"", "question": "what's the\u00a0author / editor / source\u00a0with\u00a0world ranking (1)\u00a0being 73rd", "context": "CREATE TABLE table_12000368_1 (author___editor___source VARCHAR, world_ranking__1_ VARCHAR)"}, {"answer": "SELECT COUNT(losingteam) FROM table_12028543_3 WHERE cup_finaldate = \"20 August 1989\"", "question": "How many losingteams were for the cup finaldate 20 August 1989?", "context": "CREATE TABLE table_12028543_3 (losingteam VARCHAR, cup_finaldate VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_12028543_3 WHERE losingteam = \"Adelaide City\"", "question": "How many seasons was the losing team Adelaide City?", "context": "CREATE TABLE table_12028543_3 (season VARCHAR, losingteam VARCHAR)"}, {"answer": "SELECT winningteam FROM table_12028543_3 WHERE season = \"1989\"", "question": "Who was the winning team in the 1989 season?", "context": "CREATE TABLE table_12028543_3 (winningteam VARCHAR, season VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_12027364_1 WHERE womens_singles = \"Wu Jianqui\"", "question": "Who won the womens doubles when wu jianqui won the womens singles?", "context": "CREATE TABLE table_12027364_1 (womens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_12027364_1 WHERE mens_singles = \"Ji Xinpeng\"", "question": "Who won the mixed doubles when ji xinpeng won the mens singles?", "context": "CREATE TABLE table_12027364_1 (mixed_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT COUNT(womens_singles) FROM table_12027364_1 WHERE mens_singles = \"Peter Rasmussen\"", "question": "How many womens singles winners were there when peter rasmussen won the mens singles?", "context": "CREATE TABLE table_12027364_1 (womens_singles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT written_by FROM table_12033013_1 WHERE production_code = \"1ADK-03\"", "question": "WHO WROTE THE STORY WITH THE PRODUCTION CODE OF 1ADK-03", "context": "CREATE TABLE table_12033013_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_12030612_9 WHERE written_by = \"Adam I. Lapidus\"", "question": "Name the number of titles written by adam i. lapidus", "context": "CREATE TABLE table_12030612_9 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_12033013_3 WHERE production_code = \"3ADK-03\"", "question": "Who directed the episode with a production code 3ADK-03?", "context": "CREATE TABLE table_12033013_3 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(simplified) FROM table_1204998_2 WHERE pinyin = \"X\u012bnlu\u00f3 Q\u016b\"", "question": "When pinyin is x\u012bnlu\u00f3 q\u016b, what is the simplified value?", "context": "CREATE TABLE table_1204998_2 (simplified VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT pinyin FROM table_1204998_2 WHERE english_name = \"Wuping County\"", "question": "What is the pinyin for the English name Wuping County?", "context": "CREATE TABLE table_1204998_2 (pinyin VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT area FROM table_1204998_2 WHERE english_name = \"Shanghang County\"", "question": "What is the area of the English name Shanghang County?", "context": "CREATE TABLE table_1204998_2 (area VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT pinyin FROM table_1204998_2 WHERE population = 374047", "question": "Which pinyin have a population of 374047?", "context": "CREATE TABLE table_1204998_2 (pinyin VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(nhl_team_s_) FROM table_1205598_1 WHERE metropolitan_area = \"Phoenix, Arizona\"", "question": "How many NHL teams are there in the Phoenix, Arizona area?", "context": "CREATE TABLE table_1205598_1 (nhl_team_s_ VARCHAR, metropolitan_area VARCHAR)"}, {"answer": "SELECT COUNT(media_market_ranking) FROM table_1205598_1 WHERE nhl_team_s_ = \"Blackhawks\"", "question": "What is the media market ranking for the Blackhawks?", "context": "CREATE TABLE table_1205598_1 (media_market_ranking VARCHAR, nhl_team_s_ VARCHAR)"}, {"answer": "SELECT nhl_team_s_ FROM table_1205598_1 WHERE nba_team_s_ = \"Nuggets\"", "question": "What is the the name of the NHL team that is in the same market as the NBA team, Nuggets?", "context": "CREATE TABLE table_1205598_1 (nhl_team_s_ VARCHAR, nba_team_s_ VARCHAR)"}, {"answer": "SELECT nhl_team_s_ FROM table_1205598_1 WHERE media_market_ranking = 7", "question": "What is the NHL team in the media market ranking number 7?", "context": "CREATE TABLE table_1205598_1 (nhl_team_s_ VARCHAR, media_market_ranking VARCHAR)"}, {"answer": "SELECT COUNT(netflow_version) FROM table_1206114_2 WHERE vendor_and_type = \"Enterasys Switches\"", "question": "How many netflow version are there when the vendor and type is enterasys switches?", "context": "CREATE TABLE table_1206114_2 (netflow_version VARCHAR, vendor_and_type VARCHAR)"}, {"answer": "SELECT comments FROM table_1206114_2 WHERE vendor_and_type = \"Alcatel-Lucent routers\"", "question": "What are the comments when the  vendor and type is alcatel-lucent routers?", "context": "CREATE TABLE table_1206114_2 (comments VARCHAR, vendor_and_type VARCHAR)"}, {"answer": "SELECT comments FROM table_1206114_2 WHERE vendor_and_type = \"Enterasys Switches\"", "question": "What are the comments when vendor and type is enterasys switches?", "context": "CREATE TABLE table_1206114_2 (comments VARCHAR, vendor_and_type VARCHAR)"}, {"answer": "SELECT netflow_version FROM table_1206114_2 WHERE vendor_and_type = \"PC and Servers\"", "question": "What is the netflow version when vendor and type is pc and servers?", "context": "CREATE TABLE table_1206114_2 (netflow_version VARCHAR, vendor_and_type VARCHAR)"}, {"answer": "SELECT comments FROM table_1206114_2 WHERE implementation = \"Software running on Central Processor Module\"", "question": "What are the comments when the implementation is software running on central processor module?", "context": "CREATE TABLE table_1206114_2 (comments VARCHAR, implementation VARCHAR)"}, {"answer": "SELECT implementation FROM table_1206114_2 WHERE netflow_version = \"v5, v8, v9, IPFIX\"", "question": "What is the implementation when the netflow version is v5, v8, v9, ipfix?", "context": "CREATE TABLE table_1206114_2 (implementation VARCHAR, netflow_version VARCHAR)"}, {"answer": "SELECT MIN(for_prohibition) FROM table_120778_1", "question": "Name the minimum for prohibition?", "context": "CREATE TABLE table_120778_1 (for_prohibition INTEGER)"}, {"answer": "SELECT COUNT(jurisdiction) FROM table_120778_1 WHERE percent_for = \"57.3\"", "question": "What is the number of jurisdiction for 57.3 percent?", "context": "CREATE TABLE table_120778_1 (jurisdiction VARCHAR, percent_for VARCHAR)"}, {"answer": "SELECT MAX(for_prohibition) FROM table_120778_1", "question": "Name the max for prohibition.", "context": "CREATE TABLE table_120778_1 (for_prohibition INTEGER)"}, {"answer": "SELECT percent_for FROM table_120778_1 WHERE against_prohibition = 2978", "question": "What is the percent for when against prohibition is 2978?", "context": "CREATE TABLE table_120778_1 (percent_for VARCHAR, against_prohibition VARCHAR)"}, {"answer": "SELECT percent_for FROM table_120778_1 WHERE jurisdiction = \"Manitoba\"", "question": "What is the percent for in manitoba?", "context": "CREATE TABLE table_120778_1 (percent_for VARCHAR, jurisdiction VARCHAR)"}, {"answer": "SELECT COUNT(train_name) FROM table_12095519_1 WHERE origin = \"Puri\"", "question": "How many trains leave from puri?", "context": "CREATE TABLE table_12095519_1 (train_name VARCHAR, origin VARCHAR)"}, {"answer": "SELECT train_no FROM table_12095519_1 WHERE destination = \"Amritsar\"", "question": "What train number is heading to amritsar?", "context": "CREATE TABLE table_12095519_1 (train_no VARCHAR, destination VARCHAR)"}, {"answer": "SELECT frequency FROM table_12095519_1 WHERE origin = \"Sealdah\"", "question": "How often does a train leave sealdah?", "context": "CREATE TABLE table_12095519_1 (frequency VARCHAR, origin VARCHAR)"}, {"answer": "SELECT destination FROM table_12095519_1 WHERE train_name = \"BG Express\"", "question": "Where does the bg express train end?", "context": "CREATE TABLE table_12095519_1 (destination VARCHAR, train_name VARCHAR)"}, {"answer": "SELECT train_name FROM table_12095519_1 WHERE train_no = \"15647/48\"", "question": "What's the name of train number 15647/48?", "context": "CREATE TABLE table_12095519_1 (train_name VARCHAR, train_no VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_12086015_7 WHERE year_s_ = \"1992\"", "question": "What is the number of nationality in 1992?", "context": "CREATE TABLE table_12086015_7 (nationality VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT academic_ & _university_affairs FROM table_12113818_1 WHERE human_resources_ & _operations = \"N. Charles Hamilton\"", "question": "Who is the academic & University affairs when the Human resources & operations is N. Charles Hamilton?", "context": "CREATE TABLE table_12113818_1 (academic_ VARCHAR, _university_affairs VARCHAR, human_resources_ VARCHAR, _operations VARCHAR)"}, {"answer": "SELECT year FROM table_12113818_1 WHERE communications_and_corporate_affairs = \"Jeff Rotman\"", "question": "What year was communications and corporate affairs held by Jeff Rotman?", "context": "CREATE TABLE table_12113818_1 (year VARCHAR, communications_and_corporate_affairs VARCHAR)"}, {"answer": "SELECT built FROM table_12113888_1 WHERE name_as_rebuilt = \"Knocklayd\"", "question": "What was the built data for Knocklayd rebuild?", "context": "CREATE TABLE table_12113888_1 (built VARCHAR, name_as_rebuilt VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_12113888_1 WHERE rebuilt = \"Cannot handle non-empty timestamp argument! 1929\" AND scrapped_sold = \"Cannot handle non-empty timestamp argument! 1954\"", "question": "How many times does the  rebuilt data contain cannot handle non-empty timestamp argument! 1929 and scrapped data contain cannot handle non-empty timestamp argument! 1954?", "context": "CREATE TABLE table_12113888_1 (number VARCHAR, rebuilt VARCHAR, scrapped_sold VARCHAR)"}, {"answer": "SELECT built FROM table_12113888_1 WHERE scrapped_sold = \"Cannot handle non-empty timestamp argument! 1947\"", "question": "What is the built data on the scrapped information that is cannot handle non-empty timestamp argument! 1947?", "context": "CREATE TABLE table_12113888_1 (built VARCHAR, scrapped_sold VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_12113888_1 WHERE rebuilt = \"Cannot handle non-empty timestamp argument! 1934\"", "question": "How many times was the rebuilt data cannot handle non-empty timestamp argument! 1934?", "context": "CREATE TABLE table_12113888_1 (number VARCHAR, rebuilt VARCHAR)"}, {"answer": "SELECT built FROM table_12113888_1 WHERE number = 34", "question": "What is the built data for number 34?", "context": "CREATE TABLE table_12113888_1 (built VARCHAR, number VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_12113888_1", "question": "What is the highest number listed?", "context": "CREATE TABLE table_12113888_1 (number INTEGER)"}, {"answer": "SELECT womens_singles FROM table_12121208_1 WHERE mens_singles = \"Marc Zwiebler\"", "question": "Who won the womens singles when Marc Zwiebler won the men's singles?", "context": "CREATE TABLE table_12121208_1 (womens_singles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT COUNT(torque__nm__rpm) FROM table_1212189_1 WHERE model_engine = \"1.6 Duratec\"", "question": "The 1.6 Duratec model/engine has how many torque formulas?", "context": "CREATE TABLE table_1212189_1 (torque__nm__rpm VARCHAR, model_engine VARCHAR)"}, {"answer": "SELECT power_rpm FROM table_1212189_1 WHERE torque__nm__rpm = \"N\u00b7m (lb\u00b7ft)/*N\u00b7m (lb\u00b7ft) @1750\"", "question": "For the model with torque of n\u00b7m (lb\u00b7ft)/*n\u00b7m (lb\u00b7ft) @1750, what is the power?", "context": "CREATE TABLE table_1212189_1 (power_rpm VARCHAR, torque__nm__rpm VARCHAR)"}, {"answer": "SELECT torque__nm__rpm FROM table_1212189_1 WHERE model_engine = \"1.8 Duratec HE\"", "question": "For the model/engine of 1.8 Duratec HE, what is the torque?", "context": "CREATE TABLE table_1212189_1 (torque__nm__rpm VARCHAR, model_engine VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_1212189_1 WHERE model_engine = \"1.6 Duratec\"", "question": "How many capacities are possible for the 1.6 Duratec model/engine?", "context": "CREATE TABLE table_1212189_1 (capacity VARCHAR, model_engine VARCHAR)"}, {"answer": "SELECT torque__nm__rpm FROM table_1212189_1 WHERE capacity = \"1,753 cc\"", "question": "What is the torque formula for the model/engine which has 1,753 cc capacity?", "context": "CREATE TABLE table_1212189_1 (torque__nm__rpm VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT torque__nm__rpm FROM table_1212189_1 WHERE model_engine = \"1.6 Duratec Ti-VCT\"", "question": "What is the torque formula for the 1.6 Duratec ti-vct model/engine?", "context": "CREATE TABLE table_1212189_1 (torque__nm__rpm VARCHAR, model_engine VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_12134383_1 WHERE end_of_term = \"2April1969\"", "question": "what's the\u00a0date of birth\u00a0with\u00a0end of term\u00a0being 2april1969", "context": "CREATE TABLE table_12134383_1 (date_of_birth VARCHAR, end_of_term VARCHAR)"}, {"answer": "SELECT president FROM table_12134383_1 WHERE date_of_inauguration = \"4June1979\"", "question": "who is the the\u00a0president\u00a0with\u00a0date of inauguration\u00a0being 4june1979", "context": "CREATE TABLE table_12134383_1 (president VARCHAR, date_of_inauguration VARCHAR)"}, {"answer": "SELECT COUNT(president) FROM table_12134383_1 WHERE date_of_inauguration = \"4June1979\"", "question": " how many\u00a0president\u00a0with\u00a0date of inauguration\u00a0being 4june1979", "context": "CREATE TABLE table_12134383_1 (president VARCHAR, date_of_inauguration VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_12134383_1 WHERE end_of_term = \"5July1978\"", "question": "what's the\u00a0date of birth\u00a0with\u00a0end of term\u00a0being 5july1978", "context": "CREATE TABLE table_12134383_1 (date_of_birth VARCHAR, end_of_term VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_12134383_1 WHERE _number = 2", "question": "what's the\u00a0date of birth\u00a0with\u00a0#\u00a0being 2", "context": "CREATE TABLE table_12134383_1 (date_of_birth VARCHAR, _number VARCHAR)"}, {"answer": "SELECT COUNT(end_of_term) FROM table_12134383_1 WHERE age_at_inauguration = \"64-066 64years, 66days\"", "question": " how many\u00a0end of term\u00a0with\u00a0age at inauguration\u00a0being 64-066 64years, 66days", "context": "CREATE TABLE table_12134383_1 (end_of_term VARCHAR, age_at_inauguration VARCHAR)"}, {"answer": "SELECT winning_pitcher FROM table_12125069_2 WHERE date = \"June 25\"", "question": "Who was the winning pitcher on june 25?", "context": "CREATE TABLE table_12125069_2 (winning_pitcher VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_12125069_2 WHERE date = \"May 20\"", "question": "How many games were on May 20?", "context": "CREATE TABLE table_12125069_2 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT losing_pitcher FROM table_12125069_2 WHERE winning_pitcher = \"Roy Oswalt\"", "question": "Who is the losing pitcher when the winning pitcher is roy oswalt?", "context": "CREATE TABLE table_12125069_2 (losing_pitcher VARCHAR, winning_pitcher VARCHAR)"}, {"answer": "SELECT winning_pitcher FROM table_12125069_2 WHERE attendance = 38109", "question": "Who is the winning pitcher when attendance is 38109?", "context": "CREATE TABLE table_12125069_2 (winning_pitcher VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(nhl_team) FROM table_1213511_2 WHERE player = \"Terry French\"", "question": "How many NHL teams does Terry French play for?", "context": "CREATE TABLE table_1213511_2 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_1213511_2 WHERE nhl_team = \"New York Rangers\"", "question": "Who's the player for the New York Rangers?", "context": "CREATE TABLE table_1213511_2 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_1213511_2 WHERE nhl_team = \"Chicago Black Hawks\"", "question": "How many positions do the players of Chicago Black Hawks play in?", "context": "CREATE TABLE table_1213511_2 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_1213511_2 WHERE nhl_team = \"Buffalo Sabres\"", "question": "What is the nationality of the player from Buffalo Sabres?", "context": "CREATE TABLE table_1213511_2 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_1213511_2 WHERE college_junior_club_team = \"Peterborough Petes (OHA)\"", "question": "What position does the player from Peterborough Petes (OHA) play on?", "context": "CREATE TABLE table_1213511_2 (position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_1213511_2 WHERE player = \"Dave Fortier\"", "question": "What's Dave Fortier's pick number?", "context": "CREATE TABLE table_1213511_2 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1213511_4 WHERE player = \"George Hulme\"", "question": "What team does George Hulme play for?", "context": "CREATE TABLE table_1213511_4 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_1213511_4 WHERE player = \"Neil Komadoski\"", "question": "What position does Neil Komadoski play?", "context": "CREATE TABLE table_1213511_4 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1213511_5 WHERE player = \"Mike McNiven\"", "question": "where is team player mike mcniven played for?", "context": "CREATE TABLE table_1213511_5 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1213511_5 WHERE nhl_team = \"Chicago Black Hawks\"", "question": "what college has nhl team chicago black hawks?", "context": "CREATE TABLE table_1213511_5 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_1213511_5 WHERE nationality = \"Canada\" AND pick__number = 65", "question": "who is the player with the nationality of canada and pick # is 65?", "context": "CREATE TABLE table_1213511_5 (player VARCHAR, nationality VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(nhl_team) FROM table_1213511_3 WHERE player = \"Bob Peppler\"", "question": "How many teams did Bob Peppler play for?", "context": "CREATE TABLE table_1213511_3 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_1213511_3 WHERE nhl_team = \"Philadelphia Flyers\"", "question": "What is the position listed for the team the Philadelphia Flyers?", "context": "CREATE TABLE table_1213511_3 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_1213511_3 WHERE player = \"Glen Irwin\"", "question": "How many nationalities are listed for the player Glen Irwin?", "context": "CREATE TABLE table_1213511_3 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_1213511_7 WHERE position = \"Centre\" AND nhl_team = \"New York Rangers\"", "question": "Which players have the position of centre and play for the nhl team new york rangers", "context": "CREATE TABLE table_1213511_7 (player VARCHAR, position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1213511_7 WHERE college_junior_club_team = \"University of Notre Dame (NCAA)\"", "question": "Which nhl team has a college/junior/club team named university of notre dame (ncaa)", "context": "CREATE TABLE table_1213511_7 (nhl_team VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_1213511_7 WHERE player = \"Al Simmons\"", "question": "what are all the position where player is al simmons", "context": "CREATE TABLE table_1213511_7 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_1213511_7 WHERE pick__number = 89", "question": "What nationality is pick # 89", "context": "CREATE TABLE table_1213511_7 (nationality VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1213511_7 WHERE nationality = \"Canada\" AND nhl_team = \"Minnesota North Stars\"", "question": "Which college/junior/club teams nationality is canada and nhl team is minnesota north stars", "context": "CREATE TABLE table_1213511_7 (college_junior_club_team VARCHAR, nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_1213511_7 WHERE nhl_team = \"Philadelphia Flyers\"", "question": "what is the total number of pick # where nhl team is philadelphia flyers", "context": "CREATE TABLE table_1213511_7 (pick__number VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_1213511_6 WHERE nhl_team = \"Detroit Red Wings\"", "question": "What is the nationality of the player from the Detroit Red Wings?", "context": "CREATE TABLE table_1213511_6 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_1213511_6 WHERE player = \"Jim Johnston\"", "question": "What position does Jim Johnston play?", "context": "CREATE TABLE table_1213511_6 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1213511_6 WHERE player = \"Pierre Duguay\"", "question": "Which team does Pierre Duguay play for?", "context": "CREATE TABLE table_1213511_6 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_1213511_6 WHERE position = \"Goaltender\"", "question": "What country does the goaltender come from?", "context": "CREATE TABLE table_1213511_6 (nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT writer FROM table_12148018_2 WHERE viewers = \"5.16m\"", "question": " who is the\u00a0writer\u00a0where\u00a0viewers\u00a0is 5.16m", "context": "CREATE TABLE table_12148018_2 (writer VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT league FROM table_1214035_1 WHERE open_cup = \"Quarter Finals\"", "question": "For which league is the open cup the quarter finals", "context": "CREATE TABLE table_1214035_1 (league VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT open_cup FROM table_1214035_1 WHERE year = 2002", "question": "What open cups where played in 2002", "context": "CREATE TABLE table_1214035_1 (open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_1214035_1 WHERE division = \"3\"", "question": "What leagues includes division 3", "context": "CREATE TABLE table_1214035_1 (league VARCHAR, division VARCHAR)"}, {"answer": "SELECT playoffs FROM table_1214035_1 WHERE regular_season = \"7th, Southeast\"", "question": "What was the result of the playoffs when the regular season was 7th, southeast", "context": "CREATE TABLE table_1214035_1 (playoffs VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_12159115_2 WHERE production_code = \"2T6719\"", "question": "What's the original air date of the episode with production code 2T6719?", "context": "CREATE TABLE table_12159115_2 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_12159115_2 WHERE us_viewers__millions_ = \"12.13\"", "question": "Who's the writer of the episode see by 12.13 million US viewers?", "context": "CREATE TABLE table_12159115_2 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_12159115_2 WHERE production_code = \"2T6705\"", "question": "What's the total number of episodes with production code 2T6705?", "context": "CREATE TABLE table_12159115_2 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_12159115_2 WHERE us_viewers__millions_ = \"11.34\"", "question": "What's the total number of directors who've directed episodes seen by 11.34 million US viewers?", "context": "CREATE TABLE table_12159115_2 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_12159115_2 WHERE us_viewers__millions_ = \"11.64\"", "question": "What's the production code of the episode seen by 11.64 million US viewers?", "context": "CREATE TABLE table_12159115_2 (production_code VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT winner AS Women FROM table_1216097_7 WHERE third = \"Italy\" AND runner_up = \"Finland\"", "question": "What is the winner women and third is italy and runner-up is finland?", "context": "CREATE TABLE table_1216097_7 (winner VARCHAR, third VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT report FROM table_12161822_5 WHERE fastest_lap = \"Felipe Massa\" AND winning_driver = \"Jenson Button\"", "question": "what's the\u00a0report\u00a0with\u00a0fastest lap\u00a0being felipe massa and\u00a0winning driver\u00a0being jenson button", "context": "CREATE TABLE table_12161822_5 (report VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_12161822_5 WHERE winning_driver = \"Jenson Button\"", "question": "what's the\u00a0grand prix\u00a0with\u00a0winning driver\u00a0being jenson button", "context": "CREATE TABLE table_12161822_5 (grand_prix VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT pole_position FROM table_12161822_5 WHERE grand_prix = \"Italian grand_prix\"", "question": "who is the the\u00a0pole position\u00a0with\u00a0grand prix\u00a0being italian grand prix", "context": "CREATE TABLE table_12161822_5 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_12161822_5 WHERE grand_prix = \"European grand_prix\"", "question": "who is the the\u00a0fastest lap\u00a0with\u00a0grand prix\u00a0being european grand prix", "context": "CREATE TABLE table_12161822_5 (fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_12159115_3 WHERE directed_by = \"Tawnia McKiernan\"", "question": "How many viewers, in millions, were for the episode directed by Tawnia McKiernan?", "context": "CREATE TABLE table_12159115_3 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_12159115_3 WHERE written_by = \"William N. Fordes\"", "question": "How many episodes were written only by William N. Fordes?", "context": "CREATE TABLE table_12159115_3 (series__number VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_12159115_3 WHERE series__number = 26", "question": "How many U.S Viewers, in millions, were for series # 26?", "context": "CREATE TABLE table_12159115_3 (us_viewers__millions_ VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT third_year FROM table_12148147_2 WHERE subjects = \"Science\"", "question": "What is the third year course in science?", "context": "CREATE TABLE table_12148147_2 (third_year VARCHAR, subjects VARCHAR)"}, {"answer": "SELECT second_year FROM table_12148147_2 WHERE first_year = \"Pag-unawa\"", "question": "What is the second year class following pag-unawa?", "context": "CREATE TABLE table_12148147_2 (second_year VARCHAR, first_year VARCHAR)"}, {"answer": "SELECT COUNT(third_year) FROM table_12148147_2 WHERE first_year = \"Pag-unawa\"", "question": "How many classes are taken in the third year when pag-unawa was taken in the first year?", "context": "CREATE TABLE table_12148147_2 (third_year VARCHAR, first_year VARCHAR)"}, {"answer": "SELECT first_year FROM table_12148147_2 WHERE third_year = \"Geometry\"", "question": "What is the first year course in the program where geometry is taken in the third year?", "context": "CREATE TABLE table_12148147_2 (first_year VARCHAR, third_year VARCHAR)"}, {"answer": "SELECT second_year FROM table_12148147_2 WHERE fourth_year = \"Physics\"", "question": "What is the second year course in the program where physics is taken in the fourth year?", "context": "CREATE TABLE table_12148147_2 (second_year VARCHAR, fourth_year VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_12163387_1 WHERE mens_singles = \"Jonas Lyduch\"", "question": "Who won the womens singles event the year that Jonas Lyduch won?", "context": "CREATE TABLE table_12163387_1 (womens_singles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_12163387_1 WHERE womens_singles = \"Alison Humby\"", "question": "Who won the mens doubles the year Alison Humby won the womens singles?", "context": "CREATE TABLE table_12163387_1 (mens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_12164707_1 WHERE mens_singles = \"Peter Mikkelsen\"", "question": "How many years did Peter Mikkelsen win the Mens Singles?", "context": "CREATE TABLE table_12164707_1 (year VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_12164707_1 WHERE womens_singles = \"Karina de Wit\"", "question": "Who won the Men's Doubles when Karina de Wit won the Women's Singles?", "context": "CREATE TABLE table_12164707_1 (mens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT COUNT(mixed_doubles) FROM table_12164707_1 WHERE mens_singles = \"Oliver Pongratz\"", "question": "How many Mixed Doubles won when Oliver Pongratz won the Men's Singles?", "context": "CREATE TABLE table_12164707_1 (mixed_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_12164707_1 WHERE womens_singles = \"Guo Xin\"", "question": "Who won the Men's Doubles when Guo Xin won the Women's Singles?", "context": "CREATE TABLE table_12164707_1 (mens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT college FROM table_12165999_1 WHERE player = \"Dennis Byrd\"", "question": "Which college did Dennis Byrd come from?", "context": "CREATE TABLE table_12165999_1 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT afl_team FROM table_12165999_1 WHERE player = \"Bob Johnson\"", "question": "Bob Johnson plays for which AFL team?", "context": "CREATE TABLE table_12165999_1 (afl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_12165999_1 WHERE afl_team = \"Cincinnati Bengals\"", "question": "What position does the Cincinnati Bengals' player have?", "context": "CREATE TABLE table_12165999_1 (position VARCHAR, afl_team VARCHAR)"}, {"answer": "SELECT position FROM table_12165999_1 WHERE college = \"Syracuse\"", "question": "What position does Syracuse's player have?", "context": "CREATE TABLE table_12165999_1 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_12165999_1 WHERE afl_team = \"Cincinnati Bengals\"", "question": "What college did the Cincinnati Bengals' player come from?", "context": "CREATE TABLE table_12165999_1 (college VARCHAR, afl_team VARCHAR)"}, {"answer": "SELECT pinyin FROM table_1216675_1 WHERE translation = \"Explaining Music\"", "question": "What is the pinyin for explaining music?", "context": "CREATE TABLE table_1216675_1 (pinyin VARCHAR, translation VARCHAR)"}, {"answer": "SELECT COUNT(subject) FROM table_1216675_1 WHERE pinyin = \"Shixun\"", "question": "How many subjects have the pinyin shixun?", "context": "CREATE TABLE table_1216675_1 (subject VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT pinyin FROM table_1216675_1 WHERE translation = \"Explaining Beasts\"", "question": "What is the pinyin for explaining beasts?", "context": "CREATE TABLE table_1216675_1 (pinyin VARCHAR, translation VARCHAR)"}, {"answer": "SELECT COUNT(pinyin) FROM table_1216675_1 WHERE chinese = \"\u91cb\u87f2\"", "question": "How many pinyin transaltions are available for the chinese phrase \u91cb\u87f2?", "context": "CREATE TABLE table_1216675_1 (pinyin VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT MIN(chapter) FROM table_1216675_1 WHERE pinyin = \"Shiqiu\"", "question": "What chapter number is Shiqiu?", "context": "CREATE TABLE table_1216675_1 (chapter INTEGER, pinyin VARCHAR)"}, {"answer": "SELECT COUNT(mens_doubles) FROM table_12171145_1 WHERE womens_doubles = \"Catrine Bengtsson Margit Borg\"", "question": "How many mens doubles when womens doubles is catrine bengtsson margit borg?", "context": "CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_12171145_1 WHERE womens_doubles = \"Anastasia Chervyakova Romina Gabdullina\"", "question": "Who is the mens doubles when womens doubles is anastasia chervyakova romina gabdullina?", "context": "CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_12171145_1 WHERE mens_singles = \"Flemming Delfs\"", "question": "Who is themens doubles when the mens singles is flemming delfs?", "context": "CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_12171145_1 WHERE mixed_doubles = \"Jacco Arends Selena Piek\"", "question": "Who was the womens doubles when the mixed doubles is jacco arends selena piek?", "context": "CREATE TABLE table_12171145_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_12171145_1 WHERE womens_singles = \"Mette S\u00f8rensen\"", "question": "Who was the mens doubles when womens singles is mette s\u00f8rensen?", "context": "CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT motogp_winner FROM table_12186237_1 WHERE circuit = \"Catalunya\"", "question": "Who is the Motogp winnder for the Catalunya Circuit?", "context": "CREATE TABLE table_12186237_1 (motogp_winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT 125 AS cc_winner FROM table_12186237_1 WHERE circuit = \"Phillip Island\"", "question": "Who is the 125cc winnder for the Phillip Island circuit?", "context": "CREATE TABLE table_12186237_1 (circuit VARCHAR)"}, {"answer": "SELECT date FROM table_12186237_1 WHERE grand_prix = \"German grand_prix\"", "question": "What is the date of the German Grand Prix?", "context": "CREATE TABLE table_12186237_1 (date VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT circuit FROM table_12186237_1 WHERE date = \"4 May\"", "question": "What circuit was on the date 4 May?", "context": "CREATE TABLE table_12186237_1 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(mens_doubles) FROM table_12193259_1 WHERE season = \"2004/2005\"", "question": "Name the number of mens doubles for 2004/2005", "context": "CREATE TABLE table_12193259_1 (mens_doubles VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(mens_singles) FROM table_12193259_1 WHERE season = \"2002/2003\"", "question": "Name the total number for mens single for 2002/2003", "context": "CREATE TABLE table_12193259_1 (mens_singles VARCHAR, season VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_12193259_1 WHERE season = \"1944/1945\"", "question": "Name the mens singles for 1944/1945", "context": "CREATE TABLE table_12193259_1 (mens_singles VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_12206918_2 WHERE opponent = \"Pernell Whitaker\"", "question": "How many times was pernell whitaker an opponent?", "context": "CREATE TABLE table_12206918_2 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT number FROM table_12206918_2 WHERE opponent = \"Iran Barkley\"", "question": "How many times was iran barkley an opponent?", "context": "CREATE TABLE table_12206918_2 (number VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_12206918_2 WHERE result = \"UD 12/12\" AND date = \"1993-05-22\"", "question": "Who was the opponent when the result was ud 12/12 and date was 1993-05-22?", "context": "CREATE TABLE table_12206918_2 (opponent VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_12206918_2 WHERE date = \"1982-12-03\"", "question": "How many opponents fought on 1982-12-03?", "context": "CREATE TABLE table_12206918_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_12206918_2 WHERE titles = \"The Ring Light heavyweight (175)\"", "question": "What is the name of the title winner in the ring light heavyweight (175) division?", "context": "CREATE TABLE table_12206918_2 (name VARCHAR, titles VARCHAR)"}, {"answer": "SELECT COUNT(arrival) FROM table_12221135_3 WHERE operator = \"LNWR\" AND calling_at = \"Castor, Overton, Peterborough East\"", "question": "How many trains call at Castor, Overton, Peterborough East and are operated by LNWR?", "context": "CREATE TABLE table_12221135_3 (arrival VARCHAR, operator VARCHAR, calling_at VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_12204717_1 WHERE year = 2009", "question": "Who won the mens singles in 2009?", "context": "CREATE TABLE table_12204717_1 (mens_singles VARCHAR, year VARCHAR)"}, {"answer": "SELECT colors FROM table_1221089_1 WHERE institution = \"University of Richmond\"", "question": "What are the the University of Richmond's school colors?", "context": "CREATE TABLE table_1221089_1 (colors VARCHAR, institution VARCHAR)"}, {"answer": "SELECT colors FROM table_1221089_1 WHERE institution = \"University of New Hampshire\"", "question": "What are the school colors of the University of New Hampshire?", "context": "CREATE TABLE table_1221089_1 (colors VARCHAR, institution VARCHAR)"}, {"answer": "SELECT central_bank FROM table_1222653_10 WHERE currency = \"Colombian peso (COP)\"", "question": "What's the name of the central bank in the country where Colombian Peso (cop) is the local currency?", "context": "CREATE TABLE table_1222653_10 (central_bank VARCHAR, currency VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_12226390_3 WHERE written_by = \"Jay Sommers & Dick Chevillat and Al Schwartz\"", "question": "what's the minimum\u00a0production code\u00a0written by\u00a0jay sommers & dick chevillat and al schwartz", "context": "CREATE TABLE table_12226390_3 (production_code INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_12226390_3 WHERE production_code = 39", "question": "what's the total number of\u00a0title\u00a0for production code\u00a039", "context": "CREATE TABLE table_12226390_3 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_12226390_2 WHERE no_in_series = 14", "question": "Who wrote the episode 14 in series?", "context": "CREATE TABLE table_12226390_2 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT directed_by FROM table_12226390_2 WHERE production_code = 28", "question": "Who directed the episode with production code 28?", "context": "CREATE TABLE table_12226390_2 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_12226390_6 WHERE no_in_season = 25", "question": "What's the title of the episode with a season number 25?", "context": "CREATE TABLE table_12226390_6 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT title FROM table_12226390_6 WHERE production_code = 136", "question": "What's the title of the episode with a production code 136?", "context": "CREATE TABLE table_12226390_6 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_12226390_4 WHERE written_by = \"Bobby Bell and Bill Lee\"", "question": "What episode was written by Bobby Bell and Bill Lee?", "context": "CREATE TABLE table_12226390_4 (no_in_season INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(womens_doubles) FROM table_12232843_1 WHERE mens_singles = \"Jamie van Hooijdonk\"", "question": "How many women doubles teams competed in the same year as when Jamie van Hooijdonk competed in men singles?", "context": "CREATE TABLE table_12232843_1 (womens_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT MAX(hull_numbers) FROM table_12232526_2", "question": "what is the maximum number of hull numbers?", "context": "CREATE TABLE table_12232526_2 (hull_numbers INTEGER)"}, {"answer": "SELECT class FROM table_12232526_2 WHERE note = \"Reportedly still active as of 2012\"", "question": "who is the class where note is reportedly still active as of 2012?", "context": "CREATE TABLE table_12232526_2 (class VARCHAR, note VARCHAR)"}, {"answer": "SELECT MAX(hull_numbers) FROM table_12232526_2 WHERE ship_name = \"KRI Yos Sudarso\"", "question": "what is the maximum number of hull nunbers where ship name is kri yos sudarso?", "context": "CREATE TABLE table_12232526_2 (hull_numbers INTEGER, ship_name VARCHAR)"}, {"answer": "SELECT titles FROM table_12262182_2 WHERE date = \"1997-04-12\"", "question": "What titles were fought for on 1997-04-12?", "context": "CREATE TABLE table_12262182_2 (titles VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_12262182_2 WHERE titles = \"Lineal Super lightweight (140)\"", "question": "What is the date of the match for the lineal super lightweight (140)?", "context": "CREATE TABLE table_12262182_2 (date VARCHAR, titles VARCHAR)"}, {"answer": "SELECT date FROM table_12262182_2 WHERE titles = \"WBC Flyweight (112)\"", "question": "What is the date of the match for the wbc flyweight (112) title?", "context": "CREATE TABLE table_12262182_2 (date VARCHAR, titles VARCHAR)"}, {"answer": "SELECT young_rider_classification FROM table_12261714_2 WHERE stage = \"12\"", "question": "Who's the leader in the young rider classification in stage 12?", "context": "CREATE TABLE table_12261714_2 (young_rider_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT general_classification FROM table_12261714_2 WHERE stage = \"1a\"", "question": "Who's leading in the general classification in stage 1a?", "context": "CREATE TABLE table_12261714_2 (general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT COUNT(intergiro_classification) FROM table_12261714_2 WHERE stage = \"20\"", "question": "How many leaders are there in the intergiro classification in stage 20?", "context": "CREATE TABLE table_12261714_2 (intergiro_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT trofeo_fast_team FROM table_12261714_2 WHERE stage = \"20\"", "question": "What's the leader team in the Trofeo Fast Team in stage 20?", "context": "CREATE TABLE table_12261714_2 (trofeo_fast_team VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_12261714_2 WHERE young_rider_classification = \"Francesco Casagrande\" AND stage = \"1a\"", "question": "Who's the winner in stage 1a, where the leader in the young rider classification is Francesco Casagrande?", "context": "CREATE TABLE table_12261714_2 (winner VARCHAR, young_rider_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT COUNT(general_classification) FROM table_12261806_2 WHERE stage = \"15\"", "question": "Name the general classification of stage 15", "context": "CREATE TABLE table_12261806_2 (general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT trofeo_fast_team FROM table_12261806_2 WHERE stage = \"2\"", "question": "Name the trofeo fast team of stage 2", "context": "CREATE TABLE table_12261806_2 (trofeo_fast_team VARCHAR, stage VARCHAR)"}, {"answer": "SELECT young_rider_classification FROM table_12261806_2 WHERE winner = \"Laudelino Cubino\"", "question": "Name the young rider classification with laudelino cubino", "context": "CREATE TABLE table_12261806_2 (young_rider_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(trofeo_fast_team) FROM table_12261806_2 WHERE stage = \"16\"", "question": "Name the total number of trofeo fast team of stage 16", "context": "CREATE TABLE table_12261806_2 (trofeo_fast_team VARCHAR, stage VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_1226250_1 WHERE condition = \"Aspirin\"", "question": "What kind of bleeding does aspirin cause?", "context": "CREATE TABLE table_1226250_1 (bleeding_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT prothrombin_time FROM table_1226250_1 WHERE condition = \"Glanzmann's thrombasthenia\"", "question": "How in prothrombin affected by glanzmann's thrombasthenia.", "context": "CREATE TABLE table_1226250_1 (prothrombin_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT partial_thromboplastin_time FROM table_1226250_1 WHERE bleeding_time = \"Unaffected\" AND prothrombin_time = \"Unaffected\"", "question": "How long does thromboplastin last when prothrombin is unaffected?", "context": "CREATE TABLE table_1226250_1 (partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)"}, {"answer": "SELECT prothrombin_time FROM table_1226250_1 WHERE condition = \"Uremia\"", "question": "Is uremia affect prothrombin?", "context": "CREATE TABLE table_1226250_1 (prothrombin_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT prothrombin_time FROM table_1226250_1 WHERE bleeding_time = \"Prolonged\" AND partial_thromboplastin_time = \"Prolonged\"", "question": "Is prothrombin time long when thromboplastin is prolonged?", "context": "CREATE TABLE table_1226250_1 (prothrombin_time VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR)"}, {"answer": "SELECT live_births_2006 FROM table_12251936_1 WHERE county = \"South Yorkshire (Met county)\"", "question": "How many live births were there in 2006 in South Yorkshire (met county)?", "context": "CREATE TABLE table_12251936_1 (live_births_2006 VARCHAR, county VARCHAR)"}, {"answer": "SELECT tfr_2006 FROM table_12251936_1 WHERE gfr_2006 = \"53.8\"", "question": "How many TFR were there in 2006 when the GFR was 53.8?", "context": "CREATE TABLE table_12251936_1 (tfr_2006 VARCHAR, gfr_2006 VARCHAR)"}, {"answer": "SELECT COUNT(whites_as__percentage_of_pop) FROM table_12251936_1 WHERE gfr_2006 = \"53.2\"", "question": "How many times was the GFR 2006 equal to 53.2?", "context": "CREATE TABLE table_12251936_1 (whites_as__percentage_of_pop VARCHAR, gfr_2006 VARCHAR)"}, {"answer": "SELECT COUNT(mens_doubles) FROM table_12266757_1 WHERE season = \"1970/1971\"", "question": "How many mens doubles took place in 1970/1971?", "context": "CREATE TABLE table_12266757_1 (mens_doubles VARCHAR, season VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_12266757_1 WHERE season = \"1951/1952\"", "question": "Where were the Womens Doubles in the 1951/1952 season and who won?", "context": "CREATE TABLE table_12266757_1 (womens_doubles VARCHAR, season VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_12266757_1 WHERE mens_doubles = \"Stefan Karlsson Claes Nordin , BK Aura GBK\"", "question": "Who was the womens singles winnerwhen the mens doubles were  stefan karlsson claes nordin , bk aura gbk?", "context": "CREATE TABLE table_12266757_1 (womens_singles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_12266757_1 WHERE season = \"1986/1987\"", "question": "Who were the winners of mens doubles in the 1986/1987 season held?", "context": "CREATE TABLE table_12266757_1 (mens_doubles VARCHAR, season VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_12266757_1 WHERE mixed_doubles = \"Stellan Mohlin Kerstin St\u00e5hl , AIK\"", "question": "Who won the Mens Singles when the Mixed doubles went to Stellan Mohlin Kerstin St\u00e5hl , Aik?", "context": "CREATE TABLE table_12266757_1 (mens_singles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_12266757_1 WHERE season = \"1958/1959\"", "question": "Who won the womens singles in the 1958/1959 season?", "context": "CREATE TABLE table_12266757_1 (womens_singles VARCHAR, season VARCHAR)"}, {"answer": "SELECT county FROM table_12280396_1 WHERE isolation__km_ = 29", "question": "What county is in isolation of 29?", "context": "CREATE TABLE table_12280396_1 (county VARCHAR, isolation__km_ VARCHAR)"}, {"answer": "SELECT county FROM table_12280396_1 WHERE elevation__m_ = 1262", "question": "What is the county with an elevation of 1262?", "context": "CREATE TABLE table_12280396_1 (county VARCHAR, elevation__m_ VARCHAR)"}, {"answer": "SELECT rank FROM table_12280396_1 WHERE municipality = \"Sunndal\"", "question": "Name the rank where the municipality is sunndal?", "context": "CREATE TABLE table_12280396_1 (rank VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT county FROM table_12280396_1 WHERE peak = \"Indre Russetind\"", "question": "Name the county with the peak being indre russetind?", "context": "CREATE TABLE table_12280396_1 (county VARCHAR, peak VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_12280396_1 WHERE peak = \"Fresvikbreen\"", "question": "What is the number of rank of peak fresvikbreen?", "context": "CREATE TABLE table_12280396_1 (rank VARCHAR, peak VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_12275551_1 WHERE womens_singles = \"Sayaka Sato\"", "question": "Who won the mens singles when sayaka sato won the womens singles?", "context": "CREATE TABLE table_12275551_1 (mens_singles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_12275654_1 WHERE mens_singles = \"Chetan Anand\"", "question": "When did Chetan Anand win his first men's single?", "context": "CREATE TABLE table_12275654_1 (year INTEGER, mens_singles VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_12275654_1 WHERE mens_singles = \"Niels Christian Kaldau\" AND womens_singles = \"Pi Hongyan\"", "question": "How many times did Niels Christian Kaldau win the men's single and Pi Hongyan win the women's single in the same year?", "context": "CREATE TABLE table_12275654_1 (year VARCHAR, mens_singles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_12275654_1 WHERE mens_singles = \"Chou Tien-chen\"", "question": "Who won the men's double when Chou Tien-Chen won the men's single?", "context": "CREATE TABLE table_12275654_1 (mens_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT serbian_league_east FROM table_12283621_6 WHERE serbian_league_belgrade = \"Kolubara\"", "question": "What team was promoted in the Serbian League East in the same season when Kolubara was promoted in the Serbian League Belgrade?", "context": "CREATE TABLE table_12283621_6 (serbian_league_east VARCHAR, serbian_league_belgrade VARCHAR)"}, {"answer": "SELECT series FROM table_12284476_8 WHERE reverse = \"Swimming\"", "question": "what's the\u00a0series\u00a0with\u00a0reverse\u00a0being swimming", "context": "CREATE TABLE table_12284476_8 (series VARCHAR, reverse VARCHAR)"}, {"answer": "SELECT alloy FROM table_12284476_8 WHERE series = \"II series\"", "question": "what's the\u00a0alloy\u00a0with\u00a0series\u00a0being ii series", "context": "CREATE TABLE table_12284476_8 (alloy VARCHAR, series VARCHAR)"}, {"answer": "SELECT denomination FROM table_12284476_8 WHERE year = 2008 AND reverse = \"Football\"", "question": "what's the\u00a0denomination\u00a0with\u00a0year\u00a0being 2008 and\u00a0reverse\u00a0being football", "context": "CREATE TABLE table_12284476_8 (denomination VARCHAR, year VARCHAR, reverse VARCHAR)"}, {"answer": "SELECT COUNT(reverse) FROM table_12284476_8 WHERE series = \"III series\"", "question": " how many\u00a0reverse\u00a0with\u00a0series\u00a0being iii series", "context": "CREATE TABLE table_12284476_8 (reverse VARCHAR, series VARCHAR)"}, {"answer": "SELECT MIN(winners) FROM table_12303563_1 WHERE nation = \"Kingfisher East Bengal FC\"", "question": "How many times did kingfisher east bengal fc win?", "context": "CREATE TABLE table_12303563_1 (winners INTEGER, nation VARCHAR)"}, {"answer": "SELECT MAX(winners) FROM table_12303563_1 WHERE nation = \"BEC Tero Sasana\"", "question": "How many times did bec tero sasana win?", "context": "CREATE TABLE table_12303563_1 (winners INTEGER, nation VARCHAR)"}, {"answer": "SELECT date FROM table_1231316_5 WHERE nation = \"Nigeria\"", "question": "Nigeria competed on July2, 1999.", "context": "CREATE TABLE table_1231316_5 (date VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(fastest_time__s_) FROM table_1231316_5 WHERE nation = \"Nigeria\"", "question": "Nigeria had the fastest time once.", "context": "CREATE TABLE table_1231316_5 (fastest_time__s_ VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(runners_up) FROM table_12303563_2 WHERE nation = \"India\"", "question": " how many\u00a0runners-up\u00a0with\u00a0nation\u00a0being india", "context": "CREATE TABLE table_12303563_2 (runners_up VARCHAR, nation VARCHAR)"}, {"answer": "SELECT runners_up FROM table_12303563_2 WHERE nation = \"Malaysia\"", "question": "what's the\u00a0runners-up\u00a0with\u00a0nation\u00a0being malaysia", "context": "CREATE TABLE table_12303563_2 (runners_up VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(winners) FROM table_12303563_2 WHERE _number = 4", "question": " how many\u00a0winners\u00a0with\u00a0#\u00a0being 4", "context": "CREATE TABLE table_12303563_2 (winners VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MAX(winners) FROM table_12303563_2", "question": "how many maximum winners", "context": "CREATE TABLE table_12303563_2 (winners INTEGER)"}, {"answer": "SELECT winners FROM table_12303563_2 WHERE nation = \"Vietnam\"", "question": "how many winners from vietnam", "context": "CREATE TABLE table_12303563_2 (winners VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(arlenes_vote) FROM table_12305325_4 WHERE craigs_vote = \"Brian and Karen\"", "question": "What was the total of arlenes vote when craig voted for brian and karen?", "context": "CREATE TABLE table_12305325_4 (arlenes_vote VARCHAR, craigs_vote VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_12305325_4 WHERE eliminated = \"Kate and Anton\"", "question": "What is the max week where kate and anton are eliminated?", "context": "CREATE TABLE table_12305325_4 (week INTEGER, eliminated VARCHAR)"}, {"answer": "SELECT COUNT(eliminated) FROM table_12305325_4 WHERE safe = \"Kelly and Brendan\"", "question": "What is the number eliminated when kelly and brendan are safe?", "context": "CREATE TABLE table_12305325_4 (eliminated VARCHAR, safe VARCHAR)"}, {"answer": "SELECT safe FROM table_12305325_4 WHERE eliminated = \"John and Nicole\"", "question": "Who is safe if John and Nicole are eliminated?", "context": "CREATE TABLE table_12305325_4 (safe VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT COUNT(brunos_vote) FROM table_12305325_4 WHERE eliminated = \"Willie and Erin\"", "question": "What is the total number of brunos vote when willie and erin are eliminated?", "context": "CREATE TABLE table_12305325_4 (brunos_vote VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT goals FROM table_12321870_32 WHERE matches = \"17\"", "question": "How many goals were scored by the player who played 17 matches?", "context": "CREATE TABLE table_12321870_32 (goals VARCHAR, matches VARCHAR)"}, {"answer": "SELECT player_name FROM table_12321870_32 WHERE period = \"2009\"", "question": "What is the name of the player who played in 2009 only?", "context": "CREATE TABLE table_12321870_32 (player_name VARCHAR, period VARCHAR)"}, {"answer": "SELECT goals FROM table_12321870_32 WHERE player_name = \"Tiago Gomes\"", "question": "How many goals have been scored by Tiago Gomes?", "context": "CREATE TABLE table_12321870_32 (goals VARCHAR, player_name VARCHAR)"}, {"answer": "SELECT athlete FROM table_1231316_7 WHERE location = \"Mexico City\"", "question": "Which athlete is from Mexico City?", "context": "CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR)"}, {"answer": "SELECT athlete FROM table_1231316_7 WHERE location = \"Edwardsville\"", "question": "What is the athlete from Edwardsville?", "context": "CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR)"}, {"answer": "SELECT wind__m_s_ FROM table_1231316_7 WHERE date = \"21 June 1976\"", "question": "What was the wind on 21 june 1976?", "context": "CREATE TABLE table_1231316_7 (wind__m_s_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_1231316_7 WHERE fastest_time__s_ = \"11.13\"", "question": "What is the number of locations with the fastest times of 11.13?", "context": "CREATE TABLE table_1231316_7 (location VARCHAR, fastest_time__s_ VARCHAR)"}, {"answer": "SELECT title FROM table_1231892_4 WHERE broadcast_order = \"S04 E01\"", "question": "What's the title of the episode with a broadcast order s04 e01?", "context": "CREATE TABLE table_1231892_4 (title VARCHAR, broadcast_order VARCHAR)"}, {"answer": "SELECT COUNT(number_in_series) FROM table_1231892_4 WHERE broadcast_order = \"S04 E07\"", "question": "What's the number of episodes with a broadcast order s04 e07?", "context": "CREATE TABLE table_1231892_4 (number_in_series VARCHAR, broadcast_order VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_1231892_4 WHERE us_air_date = \"January 15, 2005\"", "question": "what's the total number of episodes with a US air date of january 15, 2005?", "context": "CREATE TABLE table_1231892_4 (production_code VARCHAR, us_air_date VARCHAR)"}, {"answer": "SELECT us_air_date FROM table_1231892_4 WHERE broadcast_order = \"S04 E01\"", "question": "What's the original air date of the episode with a broadcast order s04 e01?", "context": "CREATE TABLE table_1231892_4 (us_air_date VARCHAR, broadcast_order VARCHAR)"}, {"answer": "SELECT MAX(number_in_series) FROM table_1231892_4 WHERE broadcast_order = \"S04 E07\"", "question": "What's the series number of the episode with a broadcast order s04 e07?", "context": "CREATE TABLE table_1231892_4 (number_in_series INTEGER, broadcast_order VARCHAR)"}, {"answer": "SELECT police_force FROM table_12340907_1 WHERE population = 17000", "question": "Which police force serves a population of 17000?", "context": "CREATE TABLE table_12340907_1 (police_force VARCHAR, population VARCHAR)"}, {"answer": "SELECT cost_per_capita FROM table_12340907_1 WHERE total_costs__2005_ = \"$700,116\"", "question": "When total costs (2005) are $700,116, what is the cost per capita?", "context": "CREATE TABLE table_12340907_1 (cost_per_capita VARCHAR, total_costs__2005_ VARCHAR)"}, {"answer": "SELECT cost_per_capita FROM table_12340907_1 WHERE municipality = \"Courtenay\"", "question": "What is the cost per capita in the Courtenay municipality?", "context": "CREATE TABLE table_12340907_1 (cost_per_capita VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT MAX(crime_rate_per_1), 000 AS _people FROM table_12340907_1 WHERE cost_per_capita = \"$152\"", "question": "Which crime rate per 1,000 people is associated with a cost per capita of $152?", "context": "CREATE TABLE table_12340907_1 (crime_rate_per_1 INTEGER, cost_per_capita VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_12340907_1 WHERE police_officers = 94", "question": "If the number of police officers is 94, what is the lowest population number?", "context": "CREATE TABLE table_12340907_1 (population INTEGER, police_officers VARCHAR)"}, {"answer": "SELECT total_costs__2005_ FROM table_12340907_1 WHERE municipality = \"Coldstream\"", "question": "What is the value of total costs (2005) in the Coldstream municipality?", "context": "CREATE TABLE table_12340907_1 (total_costs__2005_ VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT interview FROM table_12338595_1 WHERE state = \"Virginia\"", "question": "What is the interview score for the state of Virginia?", "context": "CREATE TABLE table_12338595_1 (interview VARCHAR, state VARCHAR)"}, {"answer": "SELECT average FROM table_12338595_1 WHERE state = \"New York\"", "question": "How much is the average score for New York state?", "context": "CREATE TABLE table_12338595_1 (average VARCHAR, state VARCHAR)"}, {"answer": "SELECT interview FROM table_12338595_1 WHERE evening_gown = \"8.977\"", "question": "Which interview score corresponds with the evening gown score of 8.977?", "context": "CREATE TABLE table_12338595_1 (interview VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT COUNT(preliminaries) FROM table_12338595_1 WHERE interview = \"8.488\"", "question": "What is the preliminary score associated with the interview score of 8.488?", "context": "CREATE TABLE table_12338595_1 (preliminaries VARCHAR, interview VARCHAR)"}, {"answer": "SELECT COUNT(swimsuit) FROM table_12338595_1 WHERE state = \"Virginia\"", "question": "What swimsuit score did the state of Virginia contestant achieve?", "context": "CREATE TABLE table_12338595_1 (swimsuit VARCHAR, state VARCHAR)"}, {"answer": "SELECT interview FROM table_12338595_1 WHERE state = \"Nevada\"", "question": "Which interview score belongs to the state of Nevada contestant?", "context": "CREATE TABLE table_12338595_1 (interview VARCHAR, state VARCHAR)"}, {"answer": "SELECT date_and_time FROM table_1233808_2 WHERE competition = \"Mithras Cup 2nd Rd (2nd Leg)\"", "question": "For the competition Mithras Cup 2nd Rd (2nd Leg), what is the date and time?", "context": "CREATE TABLE table_1233808_2 (date_and_time VARCHAR, competition VARCHAR)"}, {"answer": "SELECT home_or_away FROM table_1233808_2 WHERE record = \"Biggest win\"", "question": "Is the biggest win recorded as home or away?", "context": "CREATE TABLE table_1233808_2 (home_or_away VARCHAR, record VARCHAR)"}, {"answer": "SELECT competition FROM table_1233808_2 WHERE date_and_time = \"17.04.1920 at 15:00\"", "question": "What competitions record a date and time of 17.04.1920 at 15:00?", "context": "CREATE TABLE table_1233808_2 (competition VARCHAR, date_and_time VARCHAR)"}, {"answer": "SELECT record FROM table_1233808_2 WHERE opponent = \"Aylesbury United\"", "question": "What records are hit where the opponent is Aylesbury United?", "context": "CREATE TABLE table_1233808_2 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_1233808_2 WHERE record = \"Biggest defeat\"", "question": "Who was the opponent during the biggest defeat?", "context": "CREATE TABLE table_1233808_2 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_12369913_1 WHERE original_title = \"Ani Ohev Otach Roza (\u05d0\u05e0\u05d9 \u05d0\u05d5\u05d4\u05d1 \u05d0\u05d5\u05ea\u05da \u05e8\u05d5\u05d6\u05d4)\"", "question": "How many results are there with the original title of ani ohev otach roza (\u05d0\u05e0\u05d9 \u05d0\u05d5\u05d4\u05d1 \u05d0\u05d5\u05ea\u05da \u05e8\u05d5\u05d6\u05d4)?", "context": "CREATE TABLE table_12369913_1 (result VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_12379297_1 WHERE ch__number = \"TV-26\" AND callsign = \"DYFJ-TV\"", "question": "What is the power when ch# is tv-26 and dyfj-tv?", "context": "CREATE TABLE table_12379297_1 (power__kw_ VARCHAR, ch__number VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT coverage__transmitter_site_ FROM table_12379297_1 WHERE station_type = \"Relay\" AND ch__number = \"TV-37\"", "question": "What is the coverage for relay tv-37?", "context": "CREATE TABLE table_12379297_1 (coverage__transmitter_site_ VARCHAR, station_type VARCHAR, ch__number VARCHAR)"}, {"answer": "SELECT ch__number FROM table_12379297_1 WHERE callsign = \"DWLJ-TV\"", "question": "What is the ch# of dwlj-tv?", "context": "CREATE TABLE table_12379297_1 (ch__number VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT coverage__transmitter_site_ FROM table_12379297_1 WHERE station_type = \"Relay\" AND power__kw_ = \"5kW\" AND callsign = \"DYFJ-TV\"", "question": "What is the coverage of relay 5kw of dyfj-tv?", "context": "CREATE TABLE table_12379297_1 (coverage__transmitter_site_ VARCHAR, callsign VARCHAR, station_type VARCHAR, power__kw_ VARCHAR)"}, {"answer": "SELECT running FROM table_12407546_2 WHERE athlete = \"Marlene Sanchez\"", "question": "What is the running of marlene sanchez?", "context": "CREATE TABLE table_12407546_2 (running VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(running) FROM table_12407546_2 WHERE athlete = \"Pamela Zapata\"", "question": "What is the numberof running wiht pamela zapata?", "context": "CREATE TABLE table_12407546_2 (running VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT shooting FROM table_12407546_1 WHERE athlete__noc_ = \"Luis Siri\"", "question": "What's Luis Siri's shooting score?", "context": "CREATE TABLE table_12407546_1 (shooting VARCHAR, athlete__noc_ VARCHAR)"}, {"answer": "SELECT riding FROM table_12407546_1 WHERE athlete__noc_ = \"Eduardo Salas\"", "question": "What's Eduardo Salas' riding score?", "context": "CREATE TABLE table_12407546_1 (riding VARCHAR, athlete__noc_ VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_12407546_1 WHERE riding = \"68.46 (1144 pts)\"", "question": "What's the number of the player with 68.46 (1144 pts) in riding?", "context": "CREATE TABLE table_12407546_1 (_number INTEGER, riding VARCHAR)"}, {"answer": "SELECT athlete__noc_ FROM table_12407546_1 WHERE swimming = \"2:05.63 (1296 pts)\"", "question": "Who's the player with 2:05.63 (1296 pts) swimming score?", "context": "CREATE TABLE table_12407546_1 (athlete__noc_ VARCHAR, swimming VARCHAR)"}, {"answer": "SELECT fencing FROM table_12407546_1 WHERE running = \"9:40.31 (1080 pts)\"", "question": "What's the fencing score of the player with 9:40.31 (1080 pts) in running?", "context": "CREATE TABLE table_12407546_1 (fencing VARCHAR, running VARCHAR)"}, {"answer": "SELECT fencing FROM table_12407546_1 WHERE athlete__noc_ = \"Eli Bremer\"", "question": "What's Eli Bremer's fencing score?", "context": "CREATE TABLE table_12407546_1 (fencing VARCHAR, athlete__noc_ VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_12419515_4 WHERE written_by = \"Casey Johnson\"", "question": "What is the total number of titles written by Casey Johnson?", "context": "CREATE TABLE table_12419515_4 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_12419515_4 WHERE total_viewers__in_millions_ = \"1.211\"", "question": "Who wrote the title that received 1.211 million total viewers?", "context": "CREATE TABLE table_12419515_4 (written_by VARCHAR, total_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_12419515_4 WHERE written_by = \"Adam Milch\"", "question": "Who directed the title that was written by Adam Milch?", "context": "CREATE TABLE table_12419515_4 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(total_viewers__in_millions_) FROM table_12419515_4 WHERE series__number = 57", "question": "How many millions of total viewers watched series #57?", "context": "CREATE TABLE table_12419515_4 (total_viewers__in_millions_ VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT total_viewers__in_millions_ FROM table_12419515_4 WHERE season__number = 8", "question": "How many millions of total viewers watched season #8?", "context": "CREATE TABLE table_12419515_4 (total_viewers__in_millions_ VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT english_spelling FROM table_1242447_2 WHERE strongs_transliteration = \"'Adoniyah\"", "question": "What is the English spelling of the strongs transliteration: 'adoniyah?", "context": "CREATE TABLE table_1242447_2 (english_spelling VARCHAR, strongs_transliteration VARCHAR)"}, {"answer": "SELECT hebrew_word FROM table_1242447_2 WHERE strongs__number = \"5418\"", "question": "What is the hebrew word listed for strongs # 5418?", "context": "CREATE TABLE table_1242447_2 (hebrew_word VARCHAR, strongs__number VARCHAR)"}, {"answer": "SELECT hebrew_word FROM table_1242447_2 WHERE strongs_words_compounded = \"'adown [# 113] & Yahu\"", "question": "List the hebrew word for the strongs words compounded of 'adown [# 113] & yahu", "context": "CREATE TABLE table_1242447_2 (hebrew_word VARCHAR, strongs_words_compounded VARCHAR)"}, {"answer": "SELECT strongs__number FROM table_1242447_2 WHERE hebrew_word = \"\u05d9\u05b4\u05e8\u05b0\u05de\u05b0\u05d9\u05b8\u05d4\"", "question": "What is the strongs # for the hebrew word \u05d9\u05b4\u05e8\u05b0\u05de\u05b0\u05d9\u05b8\u05d4?", "context": "CREATE TABLE table_1242447_2 (strongs__number VARCHAR, hebrew_word VARCHAR)"}, {"answer": "SELECT strongs__number FROM table_1242447_2 WHERE english_spelling = \"Jirmejah\"", "question": "What is the strongs # for the english spelling of the word  jirmejah?", "context": "CREATE TABLE table_1242447_2 (strongs__number VARCHAR, english_spelling VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_1241987_1 WHERE regular_season = \"6th, Heartland\"", "question": "What is the latest year that 6th, Heartland is regular season?", "context": "CREATE TABLE table_1241987_1 (year INTEGER, regular_season VARCHAR)"}, {"answer": "SELECT regular_season FROM table_1241987_1 WHERE playoffs = \"division Finals\"", "question": "Which regular season contains playoffs in division finals?", "context": "CREATE TABLE table_1241987_1 (regular_season VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_1241987_1 WHERE regular_season = \"4th, Rocky Mountain\"", "question": "What is the lowest year that regular season is 4th, Rocky Mountain?", "context": "CREATE TABLE table_1241987_1 (year INTEGER, regular_season VARCHAR)"}, {"answer": "SELECT COUNT(lost_to_eventual_winner) FROM table_12444503_1 WHERE lost_to_eventual_runner_up = \"ASC Jeanne d'Arc\"", "question": "How many players lost to eventual winner in the season when ASC Jeanne d'Arc lost to eventual runner up?", "context": "CREATE TABLE table_12444503_1 (lost_to_eventual_winner VARCHAR, lost_to_eventual_runner_up VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_12444503_1 WHERE lost_to_eventual_runner_up = \"USC Bassam\"", "question": "What's the number of seasons i which USC Bassam lost to eventual runner-up?", "context": "CREATE TABLE table_12444503_1 (season VARCHAR, lost_to_eventual_runner_up VARCHAR)"}, {"answer": "SELECT season FROM table_12444503_1 WHERE runner_up = \"Jeanne d'Arc (Bamako)\"", "question": "In which season was Jeanne d'Arc (Bamako) the runner-up?", "context": "CREATE TABLE table_12444503_1 (season VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT regular_season FROM table_1243601_1 WHERE year = \"2007\"", "question": "What was the regular season listing in 2007?", "context": "CREATE TABLE table_1243601_1 (regular_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT playoffs FROM table_1243601_1 WHERE year = \"2002\"", "question": "What was the playoff result in 2002?", "context": "CREATE TABLE table_1243601_1 (playoffs VARCHAR, year VARCHAR)"}, {"answer": "SELECT open_cup FROM table_1243601_1 WHERE year = \"2004\"", "question": "What was the open cup results in 2004?", "context": "CREATE TABLE table_1243601_1 (open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_1243601_1 WHERE year = \"2006\"", "question": "How many divisions were listed in 2006?", "context": "CREATE TABLE table_1243601_1 (division VARCHAR, year VARCHAR)"}, {"answer": "SELECT recurring_cast_seasons FROM table_12441518_1 WHERE character = \"Kevin Lucas\"", "question": "Kevin lucas appears in which seasons?", "context": "CREATE TABLE table_12441518_1 (recurring_cast_seasons VARCHAR, character VARCHAR)"}, {"answer": "SELECT COUNT(portrayed_by) FROM table_12441518_1 WHERE character = \"Nick Lucas\"", "question": "How many people named Nick Lucas are on the show?", "context": "CREATE TABLE table_12441518_1 (portrayed_by VARCHAR, character VARCHAR)"}, {"answer": "SELECT main_cast_seasons FROM table_12441518_1 WHERE character = \"Stella Malone\"", "question": "What seasons does stella malone appear?", "context": "CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, character VARCHAR)"}, {"answer": "SELECT main_cast_seasons FROM table_12441518_1 WHERE character = \"Nick Lucas\"", "question": "What seasons does Nick lucas appear?", "context": "CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, character VARCHAR)"}, {"answer": "SELECT main_cast_seasons FROM table_12441518_1 WHERE portrayed_by = \"Kevin Jonas\"", "question": "What seasons does Kevin Jonas appear?", "context": "CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, portrayed_by VARCHAR)"}, {"answer": "SELECT recurring_cast_seasons FROM table_12441518_1 WHERE character = \"Nick Lucas\"", "question": "What seasons does Nick Lucas appear in?", "context": "CREATE TABLE table_12441518_1 (recurring_cast_seasons VARCHAR, character VARCHAR)"}, {"answer": "SELECT COUNT(network) FROM table_12438767_1 WHERE dates_aired = \"1981\"", "question": "How many networks aired the franchise in 1981 only?", "context": "CREATE TABLE table_12438767_1 (network VARCHAR, dates_aired VARCHAR)"}, {"answer": "SELECT COUNT(network) FROM table_12438767_1 WHERE local_name = \"In Sickness and in Health\"", "question": "In how many networks the local name of the franchise was \"in sickness and in health\"?", "context": "CREATE TABLE table_12438767_1 (network VARCHAR, local_name VARCHAR)"}, {"answer": "SELECT title FROM table_12451376_3 WHERE season_3_ep__number = 12", "question": "What is the title of season 3 ep# 12?", "context": "CREATE TABLE table_12451376_3 (title VARCHAR, season_3_ep__number VARCHAR)"}, {"answer": "SELECT length FROM table_1245148_1 WHERE track_name = \"Michigan International Speedway\"", "question": "What is the length of the track named michigan international speedway?", "context": "CREATE TABLE table_1245148_1 (length VARCHAR, track_name VARCHAR)"}, {"answer": "SELECT location FROM table_1245148_1 WHERE year_opened = 1995", "question": "Where is the track that opened in 1995?", "context": "CREATE TABLE table_1245148_1 (location VARCHAR, year_opened VARCHAR)"}, {"answer": "SELECT location FROM table_1245148_1 WHERE track_name = \"Daytona International Speedway\"", "question": "What is the location of the daytona international speedway?", "context": "CREATE TABLE table_1245148_1 (location VARCHAR, track_name VARCHAR)"}, {"answer": "SELECT location FROM table_1245148_1 WHERE year_opened = 1950", "question": "What is the location of the track that opened in 1950?", "context": "CREATE TABLE table_1245148_1 (location VARCHAR, year_opened VARCHAR)"}, {"answer": "SELECT power FROM table_1245350_1 WHERE quattroporte_iv = \"3.2i V8 32v\"", "question": "What is the power of the 3.2i v8 32v?", "context": "CREATE TABLE table_1245350_1 (power VARCHAR, quattroporte_iv VARCHAR)"}, {"answer": "SELECT quattroporte_iv FROM table_1245350_1 WHERE units_produced = 340", "question": "What type of quattroporte iv only produced 340 units?", "context": "CREATE TABLE table_1245350_1 (quattroporte_iv VARCHAR, units_produced VARCHAR)"}, {"answer": "SELECT production_period FROM table_1245350_1 WHERE units_produced = 668", "question": "When were 668 units produced?", "context": "CREATE TABLE table_1245350_1 (production_period VARCHAR, units_produced VARCHAR)"}, {"answer": "SELECT overall_record FROM table_1246208_5 WHERE club = \"Dallas Burn\"", "question": "what is the overall record when the club is dallas burn?", "context": "CREATE TABLE table_1246208_5 (overall_record VARCHAR, club VARCHAR)"}, {"answer": "SELECT goals_for FROM table_1246208_5 WHERE club = \"New England Revolution\"", "question": "what is the goals for when the  club is new england revolution?", "context": "CREATE TABLE table_1246208_5 (goals_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT prize_money FROM table_12454156_1 WHERE runner_up = \"John Tabatabai\"", "question": "What was the total prize money where John Tabatabai was the runner-up?", "context": "CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT winner FROM table_12454156_1 WHERE losing_hand = \"Ah 7s\"", "question": "Who is the winner where the losing hand is Ah 7s?", "context": "CREATE TABLE table_12454156_1 (winner VARCHAR, losing_hand VARCHAR)"}, {"answer": "SELECT losing_hand FROM table_12454156_1 WHERE winning_hand = \"7h 7s\"", "question": "What was the losing hand where the winning hand was 7h 7s?", "context": "CREATE TABLE table_12454156_1 (losing_hand VARCHAR, winning_hand VARCHAR)"}, {"answer": "SELECT COUNT(losing_hand) FROM table_12454156_1 WHERE year = 2007", "question": "How many losing hands are there before 2007?", "context": "CREATE TABLE table_12454156_1 (losing_hand VARCHAR, year VARCHAR)"}, {"answer": "SELECT prize_money FROM table_12454156_1 WHERE runner_up = \"Fabrizio Baldassari\"", "question": "When Fabrizio Baldassari is the runner-up what is the total prize money?", "context": "CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT MAX(population_august_15), _2012 FROM table_12496904_1 WHERE population_density_2012__km_2__ = 307", "question": "What is the August 15, 2012 population when the  population density of 2012 is 307?", "context": "CREATE TABLE table_12496904_1 (_2012 VARCHAR, population_august_15 INTEGER, population_density_2012__km_2__ VARCHAR)"}, {"answer": "SELECT sector FROM table_12496904_1 WHERE population_change_2002_2012___percentage_ = \"79.6\"", "question": "What is the sector when the population change 2002-2012 (%) is 79.6?", "context": "CREATE TABLE table_12496904_1 (sector VARCHAR, population_change_2002_2012___percentage_ VARCHAR)"}, {"answer": "SELECT COUNT(population_august_15), _2012 FROM table_12496904_1 WHERE sector = \"Gatunda\"", "question": "For the sector of Gatunda how many entires are show for the August 15, 2012 population?", "context": "CREATE TABLE table_12496904_1 (_2012 VARCHAR, population_august_15 VARCHAR, sector VARCHAR)"}, {"answer": "SELECT MAX(rank_in_nyagatare_sectors), _2012 FROM table_12496904_1 WHERE population_change_2002_2012___percentage_ = \"35.5\"", "question": "When the population change 2002-2012 (%) is 35.5 what is the rank in nyagatare sectors?", "context": "CREATE TABLE table_12496904_1 (_2012 VARCHAR, rank_in_nyagatare_sectors INTEGER, population_change_2002_2012___percentage_ VARCHAR)"}, {"answer": "SELECT MIN(population_density_2012__km_2__) FROM table_12496904_1 WHERE sector = \"Gatunda\"", "question": "What is the population density for 2012 for Gatunda sector?", "context": "CREATE TABLE table_12496904_1 (population_density_2012__km_2__ INTEGER, sector VARCHAR)"}, {"answer": "SELECT MAX(population), _august_15, _2002 FROM table_12496904_1", "question": "What is the highest population for the ", "context": "CREATE TABLE table_12496904_1 (_august_15 VARCHAR, _2002 VARCHAR, population INTEGER)"}, {"answer": "SELECT MAX(biggenden) FROM table_12526990_1 WHERE year = 1947", "question": "What is the biggended for 1947?", "context": "CREATE TABLE table_12526990_1 (biggenden INTEGER, year VARCHAR)"}, {"answer": "SELECT COUNT(monto) FROM table_12526990_1 WHERE total_region = 11230", "question": "What is the monto where the total region is 11230?", "context": "CREATE TABLE table_12526990_1 (monto VARCHAR, total_region VARCHAR)"}, {"answer": "SELECT MAX(gayndah) FROM table_12526990_1 WHERE perry = 304", "question": "What is the gayndah when perry is 304?", "context": "CREATE TABLE table_12526990_1 (gayndah INTEGER, perry VARCHAR)"}, {"answer": "SELECT MIN(mundubbera) FROM table_12526990_1 WHERE biggenden = 1882", "question": "What is the minimum mundubbera when biggenden is 1882", "context": "CREATE TABLE table_12526990_1 (mundubbera INTEGER, biggenden VARCHAR)"}, {"answer": "SELECT goals_for FROM table_1253396_5 WHERE overall_record = \"12-9-7\"", "question": "The Dallas Burn had a 12-9-7 record and what number of goals for? ", "context": "CREATE TABLE table_1253396_5 (goals_for VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT MAX(goals_against) FROM table_1255110_7", "question": "What is the highest value under the column goals against?", "context": "CREATE TABLE table_1255110_7 (goals_against INTEGER)"}, {"answer": "SELECT date__from_ FROM table_12562214_1 WHERE date__to_ = \"1919\"", "question": "what is the date (from) where date (to) is 1919?", "context": "CREATE TABLE table_12562214_1 (date__from_ VARCHAR, date__to_ VARCHAR)"}, {"answer": "SELECT COUNT(notes) FROM table_12562214_1 WHERE date__to_ = \"1919\"", "question": "how many times is the date (to) 1919?", "context": "CREATE TABLE table_12562214_1 (notes VARCHAR, date__to_ VARCHAR)"}, {"answer": "SELECT date__from_ FROM table_12562214_1 WHERE notes = \"Apeldoornsche Tramweg-Maatschappij\"", "question": "what is the date (from) where the notes are apeldoornsche tramweg-maatschappij?", "context": "CREATE TABLE table_12562214_1 (date__from_ VARCHAR, notes VARCHAR)"}, {"answer": "SELECT COUNT(notes) FROM table_12562214_1 WHERE date__from_ = \"14 March 1910\"", "question": "how many notes are form the date (from) 14 march 1910?", "context": "CREATE TABLE table_12562214_1 (notes VARCHAR, date__from_ VARCHAR)"}, {"answer": "SELECT location FROM table_12562214_1 WHERE date__to_ = \"8 October 1922\"", "question": "what is the location for the date (to) 8 october 1922?", "context": "CREATE TABLE table_12562214_1 (location VARCHAR, date__to_ VARCHAR)"}, {"answer": "SELECT notes FROM table_12562214_1 WHERE date__from_ = \"12 August 1897\"", "question": "what are the notes for date (from) 12 august 1897?", "context": "CREATE TABLE table_12562214_1 (notes VARCHAR, date__from_ VARCHAR)"}, {"answer": "SELECT livingstone FROM table_12570207_1 WHERE fitzroy = 9499", "question": "what's the\u00a0livingstone\u00a0with\u00a0fitzroy\u00a0being 9499", "context": "CREATE TABLE table_12570207_1 (livingstone VARCHAR, fitzroy VARCHAR)"}, {"answer": "SELECT MAX(total_region) FROM table_12570207_1 WHERE fitzroy = 8047", "question": "what is the maximum\u00a0total region\u00a0with\u00a0fitzroy\u00a0being 8047", "context": "CREATE TABLE table_12570207_1 (total_region INTEGER, fitzroy VARCHAR)"}, {"answer": "SELECT MIN(rockhampton) FROM table_12570207_1", "question": "what is the minimum\u00a0rockhampton", "context": "CREATE TABLE table_12570207_1 (rockhampton INTEGER)"}, {"answer": "SELECT COUNT(population__glengallan_) FROM table_12584173_1 WHERE population__region_total_ = 30554", "question": "How many population figures are given for Glengallen for the year when the region's total is 30554?", "context": "CREATE TABLE table_12584173_1 (population__glengallan_ VARCHAR, population__region_total_ VARCHAR)"}, {"answer": "SELECT MAX(population__stanthorpe_) FROM table_12584173_1", "question": "What is the maximum population size in the town of Stanthorpe?", "context": "CREATE TABLE table_12584173_1 (population__stanthorpe_ INTEGER)"}, {"answer": "SELECT MAX(population__glengallan_) FROM table_12584173_1", "question": "What is the maximum population size in the town of Glengallen?", "context": "CREATE TABLE table_12584173_1 (population__glengallan_ INTEGER)"}, {"answer": "SELECT MAX(population__stanthorpe_) FROM table_12584173_1 WHERE population__rosenthal_ = 1548", "question": "What was the population in Stanthorpe in the year when the population in Rosenthal was 1548?", "context": "CREATE TABLE table_12584173_1 (population__stanthorpe_ INTEGER, population__rosenthal_ VARCHAR)"}, {"answer": "SELECT COUNT(population__region_total_) FROM table_12584173_1 WHERE population__allora_ = 2132", "question": "How many population total figures are there for the year when Allora's population was 2132?", "context": "CREATE TABLE table_12584173_1 (population__region_total_ VARCHAR, population__allora_ VARCHAR)"}, {"answer": "SELECT launched FROM table_12592074_1 WHERE commissioned_or_completed_ * _ = \"6 June 1864\"", "question": "When was the ship launched when the commissioned or completed(*) is 6 june 1864?", "context": "CREATE TABLE table_12592074_1 (launched VARCHAR, commissioned_or_completed_ VARCHAR, _ VARCHAR)"}, {"answer": "SELECT launched FROM table_12592074_1 WHERE ship = \"Tecumseh\"", "question": "When was the ship tecumseh launched?", "context": "CREATE TABLE table_12592074_1 (launched VARCHAR, ship VARCHAR)"}, {"answer": "SELECT namesake FROM table_12592074_1 WHERE commissioned_or_completed_ * _ = \"16 April 1864\"", "question": "What is the namesake of the ship that was commissioned or completed(*) 16 april 1864?", "context": "CREATE TABLE table_12592074_1 (namesake VARCHAR, commissioned_or_completed_ VARCHAR, _ VARCHAR)"}, {"answer": "SELECT MIN(laid_down) FROM table_12592074_1", "question": "What is the minimum laid down?", "context": "CREATE TABLE table_12592074_1 (laid_down INTEGER)"}, {"answer": "SELECT program FROM table_12591022_2 WHERE focus = \"General Management\"", "question": "What is the program where the focus is general management?", "context": "CREATE TABLE table_12591022_2 (program VARCHAR, focus VARCHAR)"}, {"answer": "SELECT teaching_language FROM table_12591022_2 WHERE focus = \"Auditing\"", "question": "what is teaching language where the focus is auditing?", "context": "CREATE TABLE table_12591022_2 (teaching_language VARCHAR, focus VARCHAR)"}, {"answer": "SELECT program FROM table_12591022_2 WHERE duration__years_ = \"1.5\" AND teaching_language = \"German/English\"", "question": "WHat is the program where duration (years) is 1.5 and teaching language is german/english?", "context": "CREATE TABLE table_12591022_2 (program VARCHAR, duration__years_ VARCHAR, teaching_language VARCHAR)"}, {"answer": "SELECT teaching_language FROM table_12591022_2 WHERE duration__years_ = \"3.5\"", "question": "What is the teaching language with the duration (years) 3.5?", "context": "CREATE TABLE table_12591022_2 (teaching_language VARCHAR, duration__years_ VARCHAR)"}, {"answer": "SELECT program FROM table_12591022_2 WHERE focus = \"Risk Management and Regulation\"", "question": "What is the program where the focus is risk management and regulation?", "context": "CREATE TABLE table_12591022_2 (program VARCHAR, focus VARCHAR)"}, {"answer": "SELECT release_date FROM table_12588029_3 WHERE year = 2003", "question": "What are the release dates for songs in 2003?", "context": "CREATE TABLE table_12588029_3 (release_date VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_1266602_1 WHERE owner_s_ = \"Jeff Gordon\"", "question": "What is the biggest number of the team who's owned by Jeff Gordon?", "context": "CREATE TABLE table_1266602_1 (_number INTEGER, owner_s_ VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_1266602_1 WHERE primary_sponsor_s_ = \"Quicken Loans / Haas Automation\"", "question": "What is the driver for the team whose primary sponsor is Quicken Loans / Haas Automation?", "context": "CREATE TABLE table_1266602_1 (driver_s_ VARCHAR, primary_sponsor_s_ VARCHAR)"}, {"answer": "SELECT COUNT(crew_chief) FROM table_1266602_1 WHERE team = \"FAS Lane Racing\"", "question": "What's the total number of crew chiefs of the Fas Lane Racing team?", "context": "CREATE TABLE table_1266602_1 (crew_chief VARCHAR, team VARCHAR)"}, {"answer": "SELECT started FROM table_12608427_8 WHERE name = \"de Vries\"", "question": "What date did De Vries start?", "context": "CREATE TABLE table_12608427_8 (started VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_12608427_8 WHERE name = \"de Vries\"", "question": "What is the number for De Vries?", "context": "CREATE TABLE table_12608427_8 (no INTEGER, name VARCHAR)"}, {"answer": "SELECT loan_club FROM table_12608427_8 WHERE name = \"Derry\"", "question": "What was the loan club when Derry played?", "context": "CREATE TABLE table_12608427_8 (loan_club VARCHAR, name VARCHAR)"}, {"answer": "SELECT loan_club FROM table_12608427_8 WHERE name = \"Westlake\"", "question": "Who was the loan club for the Westlake game?", "context": "CREATE TABLE table_12608427_8 (loan_club VARCHAR, name VARCHAR)"}, {"answer": "SELECT p FROM table_12608427_8 WHERE name = \"Clapham\"", "question": "What was the position (P) for Clapham?", "context": "CREATE TABLE table_12608427_8 (p VARCHAR, name VARCHAR)"}, {"answer": "SELECT district FROM table_12679326_1 WHERE party = \"Republican\" AND committee = \"Appropriations\"", "question": "What district is represented by a Republican Appropriations Committee?", "context": "CREATE TABLE table_12679326_1 (district VARCHAR, party VARCHAR, committee VARCHAR)"}, {"answer": "SELECT district FROM table_12679326_1 WHERE committee = \"Economic Matters\" AND party = \"Democratic\"", "question": "What are the districts represented by the Democratic Party and a Committee in Economic Matters?", "context": "CREATE TABLE table_12679326_1 (district VARCHAR, committee VARCHAR, party VARCHAR)"}, {"answer": "SELECT COUNT(constr) FROM table_12707313_2 WHERE first_win = \"1978 Brazilian Grand Prix\"", "question": "Name the number of constr with the first win at the 1978 brazilian grand prix", "context": "CREATE TABLE table_12707313_2 (constr VARCHAR, first_win VARCHAR)"}, {"answer": "SELECT first_win FROM table_12707313_2 WHERE pos = 6", "question": "What was the first win for pos 6?", "context": "CREATE TABLE table_12707313_2 (first_win VARCHAR, pos VARCHAR)"}, {"answer": "SELECT molecular_target FROM table_12715053_1 WHERE compound_name = \"Hemiasterlin (E7974)\"", "question": "What is the molecular target listed under the compounded name of hemiasterlin (e7974)", "context": "CREATE TABLE table_12715053_1 (molecular_target VARCHAR, compound_name VARCHAR)"}, {"answer": "SELECT molecular_target FROM table_12715053_1 WHERE trademark = \"Irvalec \u00ae\"", "question": "What is the molecular target listed under the trademark of irvalec \u00ae", "context": "CREATE TABLE table_12715053_1 (molecular_target VARCHAR, trademark VARCHAR)"}, {"answer": "SELECT compound_name FROM table_12715053_1 WHERE marine_organism_\u03b1 = \"Worm\"", "question": "What is the compound name listed where marine organism \u03b1 is worm", "context": "CREATE TABLE table_12715053_1 (compound_name VARCHAR, marine_organism_\u03b1 VARCHAR)"}, {"answer": "SELECT COUNT(compound_name) FROM table_12715053_1 WHERE chemical_class = \"Depsipeptide\" AND clinical_trials_\u03b2 = \"1/7\"", "question": "How many compound names list a chemical class of depsipeptide and a clinical trials \u03b2 value of 1/7?", "context": "CREATE TABLE table_12715053_1 (compound_name VARCHAR, chemical_class VARCHAR, clinical_trials_\u03b2 VARCHAR)"}, {"answer": "SELECT trademark FROM table_12715053_1 WHERE molecular_target = \"DNA-Binding\"", "question": "What is the trademark listed for the molecular target : dna-binding?", "context": "CREATE TABLE table_12715053_1 (trademark VARCHAR, molecular_target VARCHAR)"}, {"answer": "SELECT COUNT(trademark) FROM table_12715053_1 WHERE molecular_target = \"Minor Groove of DNA\" AND clinical_status = \"Phase I\"", "question": "How many trademarks list a molecular target of minor groove of dna and a clinical status value of phase i?", "context": "CREATE TABLE table_12715053_1 (trademark VARCHAR, molecular_target VARCHAR, clinical_status VARCHAR)"}, {"answer": "SELECT no FROM table_12722302_3 WHERE directed_by = \"Tucker Gates\"", "question": "What's the number of the episode directed by Tucker Gates?", "context": "CREATE TABLE table_12722302_3 (no VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_12722302_2 WHERE us_viewers__million_ = \"3.90\"", "question": "What was the original air date for the episode with 3.90 u.s. viewers (millions)?", "context": "CREATE TABLE table_12722302_2 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_12722302_2 WHERE no = 2", "question": "What is the original air date for no. 2?", "context": "CREATE TABLE table_12722302_2 (original_air_date VARCHAR, no VARCHAR)"}, {"answer": "SELECT directed_by FROM table_12722302_2 WHERE us_viewers__million_ = \"3.19\"", "question": "Who directed the episode with 3.19 million u.s. viewers?", "context": "CREATE TABLE table_12722302_2 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT price___usd__ FROM table_12740151_8 WHERE l3 = \"18 MB\"", "question": "What's the price (in USD) of the model whose L3 is 18 mb?", "context": "CREATE TABLE table_12740151_8 (price___usd__ VARCHAR, l3 VARCHAR)"}, {"answer": "SELECT clock_speed FROM table_12740151_8 WHERE price___usd__ = \"$910\"", "question": "What's the clock speed of the model that costs $910?", "context": "CREATE TABLE table_12740151_8 (clock_speed VARCHAR, price___usd__ VARCHAR)"}, {"answer": "SELECT MIN(league) AS Cup FROM table_12755786_8", "question": "what is the least amount in the tournament?", "context": "CREATE TABLE table_12755786_8 (league INTEGER)"}, {"answer": "SELECT league AS Cup FROM table_12755786_8 WHERE player = \"Kevin McKinlay\"", "question": "what is the tourney where the winner is kevin mckinlay?", "context": "CREATE TABLE table_12755786_8 (league VARCHAR, player VARCHAR)"}, {"answer": "SELECT thursday_iuppiter__jupiter_ FROM table_1277350_1 WHERE tuesday_mars__mars_ = \"Marter\u00ec\"", "question": "what's the\u00a0thursday iuppiter (jupiter)\u00a0with\u00a0tuesday mars (mars)\u00a0being marter\u00ec", "context": "CREATE TABLE table_1277350_1 (thursday_iuppiter__jupiter_ VARCHAR, tuesday_mars__mars_ VARCHAR)"}, {"answer": "SELECT sunday_s\u014dl__sun_ FROM table_1277350_1 WHERE friday_venus__venus_ = \"vernes\"", "question": "what's the\u00a0sunday s\u014dl (sun)\u00a0with\u00a0friday venus (venus)\u00a0being vernes", "context": "CREATE TABLE table_1277350_1 (sunday_s\u014dl__sun_ VARCHAR, friday_venus__venus_ VARCHAR)"}, {"answer": "SELECT thursday_iuppiter__jupiter_ FROM table_1277350_1 WHERE friday_venus__venus_ = \"vendredi\"", "question": "what's the\u00a0thursday iuppiter (jupiter)\u00a0with\u00a0friday venus (venus)\u00a0being vendredi", "context": "CREATE TABLE table_1277350_1 (thursday_iuppiter__jupiter_ VARCHAR, friday_venus__venus_ VARCHAR)"}, {"answer": "SELECT saturday_saturnus___saturn_ FROM table_1277350_1 WHERE wednesday_mercurius__mercury_ = \"Mercuridi\"", "question": "what's the\u00a0saturday saturnus ( saturn)\u00a0with\u00a0wednesday mercurius (mercury)\u00a0being mercuridi", "context": "CREATE TABLE table_1277350_1 (saturday_saturnus___saturn_ VARCHAR, wednesday_mercurius__mercury_ VARCHAR)"}, {"answer": "SELECT thursday_iuppiter__jupiter_ FROM table_1277350_1 WHERE saturday_saturnus___saturn_ = \"Jesarn\"", "question": "what's the\u00a0thursday iuppiter (jupiter)\u00a0with\u00a0saturday saturnus ( saturn)\u00a0being jesarn", "context": "CREATE TABLE table_1277350_1 (thursday_iuppiter__jupiter_ VARCHAR, saturday_saturnus___saturn_ VARCHAR)"}, {"answer": "SELECT sequencer FROM table_127511_1 WHERE ion_torrent_pgm = \"200-400 bp\"", "question": "What is the sequencer when ion torrent pgm is 200-400 bp?", "context": "CREATE TABLE table_127511_1 (sequencer VARCHAR, ion_torrent_pgm VARCHAR)"}, {"answer": "SELECT COUNT(ion_torrent_pgm) FROM table_127511_1 WHERE sanger_3730xl = \"$2400 USD\"", "question": "How many times was Sanger 3730xl $2400 usd?", "context": "CREATE TABLE table_127511_1 (ion_torrent_pgm VARCHAR, sanger_3730xl VARCHAR)"}, {"answer": "SELECT solidv4 FROM table_127511_1 WHERE pacbio = \"$300 USD\"", "question": "How much was solidv4 when pacbio is $300 usd?", "context": "CREATE TABLE table_127511_1 (solidv4 VARCHAR, pacbio VARCHAR)"}, {"answer": "SELECT solidv4 FROM table_127511_1 WHERE sequencer = \"Data output per run\"", "question": "What is solidv4 when sequencer is data output per run?", "context": "CREATE TABLE table_127511_1 (solidv4 VARCHAR, sequencer VARCHAR)"}, {"answer": "SELECT 454 AS _gs_flx FROM table_127511_1 WHERE pacbio = \"100-500 Mb\"", "question": "What is 454 gs flx when pacbio is 100-500 mb?", "context": "CREATE TABLE table_127511_1 (pacbio VARCHAR)"}, {"answer": "SELECT COUNT(phillips) FROM table_1276219_1 WHERE dance = \"Jive\" AND week__number = \"10\"", "question": "How was times was the dance the jive and the week # was 10?", "context": "CREATE TABLE table_1276219_1 (phillips VARCHAR, dance VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT thursday_fourth_day FROM table_1277350_5 WHERE day__see_irregularities__ = \"Slovene\"", "question": "What's the Slovene word for Thursday?", "context": "CREATE TABLE table_1277350_5 (thursday_fourth_day VARCHAR, day__see_irregularities__ VARCHAR)"}, {"answer": "SELECT friday_fifth_day FROM table_1277350_5 WHERE day__see_irregularities__ = \"Polish\"", "question": "How do you say Friday in Polish?", "context": "CREATE TABLE table_1277350_5 (friday_fifth_day VARCHAR, day__see_irregularities__ VARCHAR)"}, {"answer": "SELECT saturday_sixth_day FROM table_1277350_5 WHERE day__see_irregularities__ = \"Croatian\"", "question": "What's the Croatian word for Saturday?", "context": "CREATE TABLE table_1277350_5 (saturday_sixth_day VARCHAR, day__see_irregularities__ VARCHAR)"}, {"answer": "SELECT saturday_shani__saturn_ FROM table_1277350_3 WHERE sunday_surya__the_sun_ = \"\u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bcd\u0bb1\u0bc1 \u0b95\u0bbf\u0bb4\u0bae\u0bc8 Ny\u0101yitru kizhamai\"", "question": "In the system where Sunday is \u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bcd\u0bb1\u0bc1 \u0b95\u0bbf\u0bb4\u0bae\u0bc8 ny\u0101yitru kizhamai, what is Saturday?", "context": "CREATE TABLE table_1277350_3 (saturday_shani__saturn_ VARCHAR, sunday_surya__the_sun_ VARCHAR)"}, {"answer": "SELECT thursday_guru__jupiter_ FROM table_1277350_3 WHERE wednesday_budha__mercury_ = \"\u09ac\u09c1\u09a7\u09ac\u09be\u09b0 Budhbar\"", "question": "In language where Wednesday is \u09ac\u09c1\u09a7\u09ac\u09be\u09b0 budhbar, what is Thursday?", "context": "CREATE TABLE table_1277350_3 (thursday_guru__jupiter_ VARCHAR, wednesday_budha__mercury_ VARCHAR)"}, {"answer": "SELECT tuesday_mangala__mars_ FROM table_1277350_3 WHERE saturday_shani__saturn_ = \"\u0dc3\u0dd9\u0db1\u0dc3\u0dd4\u0dbb\u0dcf\u0daf\u0dcf Senasuraadaa\"", "question": "In language where Saturday is \u0dc3\u0dd9\u0db1\u0dc3\u0dd4\u0dbb\u0dcf\u0daf\u0dcf senasuraadaa, what is Tuesday?", "context": "CREATE TABLE table_1277350_3 (tuesday_mangala__mars_ VARCHAR, saturday_shani__saturn_ VARCHAR)"}, {"answer": "SELECT sunday_surya__the_sun_ FROM table_1277350_3 WHERE thursday_guru__jupiter_ = \"\u0628\u0631\u0633 \u0648\u0627\u0631 Bres'var\"", "question": "In language where Thursday is \u0628\u0631\u0633 \u0648\u0627\u0631 bres'var, what is Sunday?", "context": "CREATE TABLE table_1277350_3 (sunday_surya__the_sun_ VARCHAR, thursday_guru__jupiter_ VARCHAR)"}, {"answer": "SELECT saturday_shani__saturn_ FROM table_1277350_3 WHERE wednesday_budha__mercury_ = \"\u0628\u0631\u06be \u0648\u0627\u0631 Budh'var\"", "question": "In language where Wednesday is \u0628\u0631\u06be \u0648\u0627\u0631 budh'var, what is Saturday?", "context": "CREATE TABLE table_1277350_3 (saturday_shani__saturn_ VARCHAR, wednesday_budha__mercury_ VARCHAR)"}, {"answer": "SELECT saturday_day_seven FROM table_1277350_7 WHERE thursday_day_five = \"\u1210\u1219\u1235 hamus\"", "question": "What is saturday day seven when thursday day five is \u1210\u1219\u1235 hamus?", "context": "CREATE TABLE table_1277350_7 (saturday_day_seven VARCHAR, thursday_day_five VARCHAR)"}, {"answer": "SELECT thursday_day_five FROM table_1277350_7 WHERE friday_day_six = \"\u10de\u10d0\u10e0\u10d0\u10e1\u10d9\u10d4\u10d5\u10d8 p'arask'evi\"", "question": "What is thursday day five when friday day six is \u10de\u10d0\u10e0\u10d0\u10e1\u10d9\u10d4\u10d5\u10d8 p'arask'evi?", "context": "CREATE TABLE table_1277350_7 (thursday_day_five VARCHAR, friday_day_six VARCHAR)"}, {"answer": "SELECT tuesday_day_three FROM table_1277350_7 WHERE thursday_day_five = \"Kamis\"", "question": "What is tuesday day three when thursday day five is kamis?", "context": "CREATE TABLE table_1277350_7 (tuesday_day_three VARCHAR, thursday_day_five VARCHAR)"}, {"answer": "SELECT friday_day_six FROM table_1277350_7 WHERE thursday_day_five = \"\u067e\u0686\u06be\u0645\u0628\u06d2 pachhambey\"", "question": "What is friday day six when thursday day five is \u067e\u0686\u06be\u0645\u0628\u06d2 pachhambey?", "context": "CREATE TABLE table_1277350_7 (friday_day_six VARCHAR, thursday_day_five VARCHAR)"}, {"answer": "SELECT friday_day_six FROM table_1277350_7 WHERE monday_day_two = \"Isnin\"", "question": "What is friday day six when monday day two is isnin?", "context": "CREATE TABLE table_1277350_7 (friday_day_six VARCHAR, monday_day_two VARCHAR)"}, {"answer": "SELECT COUNT(thursday_day_five) FROM table_1277350_7 WHERE sunday_day_one = \"Ahad\"", "question": "How many time is sunday day one is ahad?", "context": "CREATE TABLE table_1277350_7 (thursday_day_five VARCHAR, sunday_day_one VARCHAR)"}, {"answer": "SELECT MIN(freight_carried_s_tonne) FROM table_12791809_1 WHERE super_b_capacity_reached_[_citation_needed_] = \"February 26\"", "question": "What is the least amount of freight carried when the super b capacity reached was February 26?", "context": "CREATE TABLE table_12791809_1 (freight_carried_s_tonne INTEGER, super_b_capacity_reached_ VARCHAR, _citation_needed_ VARCHAR)"}, {"answer": "SELECT MAX(number_of_truck_loads_north) FROM table_12791809_1", "question": "What is the most number of truck loads north?", "context": "CREATE TABLE table_12791809_1 (number_of_truck_loads_north INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_12791809_1 WHERE road_closed = \"April 13\"", "question": "What is thea year the road closed April 13?", "context": "CREATE TABLE table_12791809_1 (year INTEGER, road_closed VARCHAR)"}, {"answer": "SELECT super_b_capacity_reached_[_citation_needed_] FROM table_12791809_1 WHERE number_of_truck_loads_north = 7735", "question": "When was the Super B capacity reached when the number of truck loads north was 7735?", "context": "CREATE TABLE table_12791809_1 (super_b_capacity_reached_ VARCHAR, _citation_needed_ VARCHAR, number_of_truck_loads_north VARCHAR)"}, {"answer": "SELECT super_b_capacity_reached_[_citation_needed_] FROM table_12791809_1 WHERE freight_carried_s_tonne = 198818", "question": "When was the super b capacity reached when the freight carried s tonne was 198818?", "context": "CREATE TABLE table_12791809_1 (super_b_capacity_reached_ VARCHAR, _citation_needed_ VARCHAR, freight_carried_s_tonne VARCHAR)"}, {"answer": "SELECT lost FROM table_12792876_2 WHERE points_against = \"714\"", "question": "How many loses corresponded to giving up 714 points?", "context": "CREATE TABLE table_12792876_2 (lost VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_12792876_2 WHERE tries_against = \"30\"", "question": "How many draws were there when there were 30 tries against?", "context": "CREATE TABLE table_12792876_2 (drawn VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_12792876_2 WHERE tries_for = \"64\"", "question": "How many try bonuses were there when there were 64 tries for?", "context": "CREATE TABLE table_12792876_2 (try_bonus VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT club FROM table_12792876_2 WHERE points_against = \"714\"", "question": "Which club gave up 714 points?", "context": "CREATE TABLE table_12792876_2 (club VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT won FROM table_12792876_2 WHERE \"club\" = \"club\"", "question": "What is the third entry in the row with a first entry of \"club\"?", "context": "CREATE TABLE table_12792876_2 (won VARCHAR)"}, {"answer": "SELECT tries_for FROM table_12792876_2 WHERE \"club\" = \"club\"", "question": "What is the 8th entry in the row with a first entry of \"club\"?", "context": "CREATE TABLE table_12792876_2 (tries_for VARCHAR)"}, {"answer": "SELECT COUNT(won) FROM table_12792876_3 WHERE points_against = \"450\"", "question": "How many were won with the points against was 450?", "context": "CREATE TABLE table_12792876_3 (won VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_12792876_3 WHERE tries_for = \"46\"", "question": " what was the drawn when the tries for was 46?", "context": "CREATE TABLE table_12792876_3 (drawn VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT won FROM table_12792876_3 WHERE points_for = \"496\"", "question": "What was the won when the points for was 496?", "context": "CREATE TABLE table_12792876_3 (won VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_12792876_3 WHERE points_against = \"445\"", "question": "What was the losing bonus when the points against was 445?", "context": "CREATE TABLE table_12792876_3 (losing_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_12792876_3 WHERE drawn = \"2\"", "question": "What was the tries against when the drawn was 2?", "context": "CREATE TABLE table_12792876_3 (tries_against VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT drawn FROM table_12792876_3 WHERE tries_against = \"89\"", "question": "What was the drawn when the tries against was 89?", "context": "CREATE TABLE table_12792876_3 (drawn VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_12803263_1 WHERE _number = 4", "question": "What is the number of the name for number 4?", "context": "CREATE TABLE table_12803263_1 (name VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_12803263_1", "question": "What is the most number?", "context": "CREATE TABLE table_12803263_1 (_number INTEGER)"}, {"answer": "SELECT COUNT(played) FROM table_12807904_5 WHERE tries_for = \"60\"", "question": "what amount played tried for 60? ", "context": "CREATE TABLE table_12807904_5 (played VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT played FROM table_12807904_5 WHERE points = \"80\"", "question": "How many played where the points were 80?", "context": "CREATE TABLE table_12807904_5 (played VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_12807904_5 WHERE lost = \"13\"", "question": "what amount of points were lost by 13?", "context": "CREATE TABLE table_12807904_5 (points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points_against FROM table_12807904_5 WHERE points = \"63\"", "question": "what are the total points agains the score of 63?", "context": "CREATE TABLE table_12807904_5 (points_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_12807904_5 WHERE points_against = \"389\"", "question": "What amount of points where points  were 389?", "context": "CREATE TABLE table_12807904_5 (points VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT played FROM table_12807904_3 WHERE points_for = \"438\"", "question": "HOW MANY PLAYERS PLAYED IN THE GAME THAT WON WITH 438 POINTS", "context": "CREATE TABLE table_12807904_3 (played VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT won FROM table_12807904_3 WHERE try_bonus = \"11\"", "question": "HOW MANY GAMES HAD A WIN WITH A BONUS OF 11", "context": "CREATE TABLE table_12807904_3 (won VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT tries_for FROM table_12807904_3 WHERE drawn = \"3\"", "question": "HOW MANY GAMES WERE TIED AT 3?", "context": "CREATE TABLE table_12807904_3 (tries_for VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT points_for FROM table_12807904_3 WHERE try_bonus = \"6\"", "question": "HOW MANY GAMES HAD BONUS POINTS OF 6?", "context": "CREATE TABLE table_12807904_3 (points_for VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT drawn FROM table_12807904_3 WHERE points = \"76\"", "question": "HOW MANY GAMES WERE TIED AT 76?", "context": "CREATE TABLE table_12807904_3 (drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points_for) FROM table_12807904_3 WHERE lost = \"12\"", "question": "HOW MANY GAMES WERE LOST BY 12 POINTS?", "context": "CREATE TABLE table_12807904_3 (points_for VARCHAR, lost VARCHAR)"}, {"answer": "SELECT earnings__\u20ac_ FROM table_12821159_14 WHERE cuts_made = 19 AND money_list_rank = 3", "question": "What was the number of earnings were cuts made are 19 and money list rank is 3?", "context": "CREATE TABLE table_12821159_14 (earnings__\u20ac_ VARCHAR, cuts_made VARCHAR, money_list_rank VARCHAR)"}, {"answer": "SELECT barrel_length FROM table_12834315_2 WHERE name = \"AR-15A3 Competition HBAR\"", "question": "what are all the barrel lengths whith the name  ar-15a3 competition hbar", "context": "CREATE TABLE table_12834315_2 (barrel_length VARCHAR, name VARCHAR)"}, {"answer": "SELECT fire_control FROM table_12834315_2 WHERE name = \"Sporter Target\"", "question": "What is the fire control for the sporter target", "context": "CREATE TABLE table_12834315_2 (fire_control VARCHAR, name VARCHAR)"}, {"answer": "SELECT days_with_rain__year_summer_ FROM table_12837_1 WHERE city_town = \"Santiago de Compostela\"", "question": "What is the days with rain figure for the city of Santiago de Compostela?", "context": "CREATE TABLE table_12837_1 (days_with_rain__year_summer_ VARCHAR, city_town VARCHAR)"}, {"answer": "SELECT COUNT(rain) FROM table_12837_1 WHERE sunlight_hours = 1966", "question": "How many rain figures are provided for sunlight hours in 1966?", "context": "CREATE TABLE table_12837_1 (rain VARCHAR, sunlight_hours VARCHAR)"}, {"answer": "SELECT barrel_twist FROM table_12834315_8 WHERE barrel_profile = \"SFW\"", "question": "What is the value of barrel twist when the barrel profile is SFW?", "context": "CREATE TABLE table_12834315_8 (barrel_twist VARCHAR, barrel_profile VARCHAR)"}, {"answer": "SELECT hand_guards FROM table_12834315_8 WHERE rear_sight = \"A1\" AND stock = \"A2\"", "question": "What kind of hand guards are associated with a rear sight of A1 and stock of A2?", "context": "CREATE TABLE table_12834315_8 (hand_guards VARCHAR, rear_sight VARCHAR, stock VARCHAR)"}, {"answer": "SELECT barrel_length FROM table_12834315_8 WHERE rear_sight = \"Weaver\" AND barrel_profile = \"A2\"", "question": "How many inches is the barrel length when the rear sight is weaver and the barrel profile is A2?", "context": "CREATE TABLE table_12834315_8 (barrel_length VARCHAR, rear_sight VARCHAR, barrel_profile VARCHAR)"}, {"answer": "SELECT muzzle_device FROM table_12834315_5 WHERE colt_model_no = \"LE1020\"", "question": "What is the muzzle device on the colt model le1020?", "context": "CREATE TABLE table_12834315_5 (muzzle_device VARCHAR, colt_model_no VARCHAR)"}, {"answer": "SELECT barrel_profile FROM table_12834315_5 WHERE name = \"Gas Piston Carbine\"", "question": "What is the barrell profile that goes with the gas piston carbine?", "context": "CREATE TABLE table_12834315_5 (barrel_profile VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_12834315_5 WHERE barrel_profile = \"A2\"", "question": "What models have an a2 barrel profile?", "context": "CREATE TABLE table_12834315_5 (name VARCHAR, barrel_profile VARCHAR)"}, {"answer": "SELECT hand_guards FROM table_12834315_5 WHERE name = \"Gas Piston Commando\"", "question": "What hand guard system is used with a gas piston commando?", "context": "CREATE TABLE table_12834315_5 (hand_guards VARCHAR, name VARCHAR)"}, {"answer": "SELECT bayonet_lug FROM table_12834315_5 WHERE barrel_profile = \"M4 HBAR\" AND name = \"M4LE Carbine\"", "question": "What is the bayonet lug status for a m4 hbar and m4le carbine equipped?", "context": "CREATE TABLE table_12834315_5 (bayonet_lug VARCHAR, barrel_profile VARCHAR, name VARCHAR)"}, {"answer": "SELECT barrel_length FROM table_12834315_5 WHERE colt_model_no = \"LE6921SP\"", "question": "What is the barrel length for a cold model le6921sp?", "context": "CREATE TABLE table_12834315_5 (barrel_length VARCHAR, colt_model_no VARCHAR)"}, {"answer": "SELECT barrel_length FROM table_12834315_4 WHERE rear_sight = \"A2\" AND muzzle_device = \"Factory compensator\"", "question": "Name the barrel length for rear sight a2 for factory compensator", "context": "CREATE TABLE table_12834315_4 (barrel_length VARCHAR, rear_sight VARCHAR, muzzle_device VARCHAR)"}, {"answer": "SELECT barrel_twist FROM table_12834315_4 WHERE colt_model_no = \"MT6400\"", "question": "Name the barrel twist for colt model mt6400", "context": "CREATE TABLE table_12834315_4 (barrel_twist VARCHAR, colt_model_no VARCHAR)"}, {"answer": "SELECT forward_assist FROM table_12834315_4 WHERE barrel_profile = \"A2\"", "question": "Name the forward assist for a2 barrel profile", "context": "CREATE TABLE table_12834315_4 (forward_assist VARCHAR, barrel_profile VARCHAR)"}, {"answer": "SELECT stock FROM table_12834315_4 WHERE colt_model_no = \"MT6601\"", "question": "Name the stock for colt model mt6601", "context": "CREATE TABLE table_12834315_4 (stock VARCHAR, colt_model_no VARCHAR)"}, {"answer": "SELECT COUNT(distance) FROM table_1284347_2 WHERE race = \"Rosehill Guineas\"", "question": "How many races is different distances does Rosehill Guineas compete in? ", "context": "CREATE TABLE table_1284347_2 (distance VARCHAR, race VARCHAR)"}, {"answer": "SELECT played FROM table_12886178_4 WHERE points = \"16\"", "question": "How many games ended up with 16 points?", "context": "CREATE TABLE table_12886178_4 (played VARCHAR, points VARCHAR)"}, {"answer": "SELECT tries_against FROM table_12886178_4 WHERE tries_for = \"29\"", "question": "What was the tries against count for the club whose tries for count was 29?", "context": "CREATE TABLE table_12886178_4 (tries_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT points FROM table_12886178_4 WHERE club = \"Croesyceiliog RFC\"", "question": "How many points does Croesyceiliog RFC have?", "context": "CREATE TABLE table_12886178_4 (points VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_for FROM table_12886178_4 WHERE points = \"41\" AND won = \"8\"", "question": "What's the points for count for the club with 41 points and 8 won games?", "context": "CREATE TABLE table_12886178_4 (points_for VARCHAR, points VARCHAR, won VARCHAR)"}, {"answer": "SELECT points_for FROM table_12886178_4 WHERE tries_for = \"29\"", "question": "What's the points for count for the club with tries for count of 29?", "context": "CREATE TABLE table_12886178_4 (points_for VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_12886178_4 WHERE tries_against = \"83\"", "question": "What's the try bonus count for the club whose tries against count is 83?", "context": "CREATE TABLE table_12886178_4 (try_bonus VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT hometown FROM table_1289860_2 WHERE background = \"Real Estate agent\"", "question": "Where is the real estate agent from?", "context": "CREATE TABLE table_1289860_2 (hometown VARCHAR, background VARCHAR)"}, {"answer": "SELECT background FROM table_1289860_2 WHERE hometown = \"New York, New York\"", "question": "What background does the person from New york, New york, have?", "context": "CREATE TABLE table_1289860_2 (background VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(background) FROM table_1289860_2 WHERE hometown = \"Memphis, Tennessee\"", "question": "How many backgrounds are there represented from Memphis, Tennessee?", "context": "CREATE TABLE table_1289860_2 (background VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1289860_2 WHERE background = \"Prosecutor\"", "question": "How many people had a prosecutor background?", "context": "CREATE TABLE table_1289860_2 (result VARCHAR, background VARCHAR)"}, {"answer": "SELECT hometown FROM table_1289860_2 WHERE candidate = \"Kristen Kirchner\"", "question": "Where was Kristen Kirchner from?", "context": "CREATE TABLE table_1289860_2 (hometown VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT COUNT(try_bonus) FROM table_12886178_5 WHERE tries_against = \"41\"", "question": "How many clubs have a tries against count of 41?", "context": "CREATE TABLE table_12886178_5 (try_bonus VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT COUNT(club) FROM table_12886178_5 WHERE won = \"6\"", "question": "How many clubs have won 6 games?", "context": "CREATE TABLE table_12886178_5 (club VARCHAR, won VARCHAR)"}, {"answer": "SELECT COUNT(tries_for) FROM table_12886178_5 WHERE tries_against = \"45\" AND losing_bonus = \"4\"", "question": "How many clubs have a tries against count of 45 and a losing bonus of 4?", "context": "CREATE TABLE table_12886178_5 (tries_for VARCHAR, tries_against VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT club FROM table_12886178_5 WHERE tries_for = \"19\"", "question": "What club has a tries for count of 19?", "context": "CREATE TABLE table_12886178_5 (club VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_12886178_5 WHERE tries_for = \"50\"", "question": "How many clubs have tries for count of 50?", "context": "CREATE TABLE table_12886178_5 (played VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT drawn FROM table_12886178_5 WHERE tries_for = \"76\"", "question": "What's the number of drawn games for the club with a tries for count of 76?", "context": "CREATE TABLE table_12886178_5 (drawn VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT against___percentage_ FROM table_1289762_1 WHERE constituency = \"Vest-Agder\"", "question": "What is the against percentage in the Vest-Agder constituency?", "context": "CREATE TABLE table_1289762_1 (against___percentage_ VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT COUNT(electorate) FROM table_1289762_1 WHERE constituency = \"Hedmark\"", "question": "How many electorates are there with Hedmark as a constituency?", "context": "CREATE TABLE table_1289762_1 (electorate VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT for___percentage_ FROM table_1289762_1 WHERE against___percentage_ = \"35,782 (69)\"", "question": "How many for percentages are there when the against percentage is 35,782 (69)?", "context": "CREATE TABLE table_1289762_1 (for___percentage_ VARCHAR, against___percentage_ VARCHAR)"}, {"answer": "SELECT MIN(s_spoilt_vote) FROM table_1289762_1 WHERE constituency = \"S\u00f8r-Tr\u00f8ndelag\"", "question": "List the smallest possible spoilt vote with the s\u00f8r-tr\u00f8ndelag constituency.", "context": "CREATE TABLE table_1289762_1 (s_spoilt_vote INTEGER, constituency VARCHAR)"}, {"answer": "SELECT total_poll___percentage_ FROM table_1289762_1 WHERE for___percentage_ = \"59,532 (54)\"", "question": "List all total poll percentages when the for percentage is 59,532 (54).", "context": "CREATE TABLE table_1289762_1 (total_poll___percentage_ VARCHAR, for___percentage_ VARCHAR)"}, {"answer": "SELECT writer FROM table_12919003_3 WHERE episode = \"episode 1\"", "question": "What's the writer of Episode 1?", "context": "CREATE TABLE table_12919003_3 (writer VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_12919003_3 WHERE director = \"Tom Hooper\" AND viewers_millions_ = \"8.08\"", "question": "What's the total number of episodes both directed by Tom Hooper and viewed by 8.08 million viewers?", "context": "CREATE TABLE table_12919003_3 (_number VARCHAR, director VARCHAR, viewers_millions_ VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_12919003_3 WHERE director = \"Pete Travis\"", "question": "What's the original airdate of the episode directed by Pete Travis?", "context": "CREATE TABLE table_12919003_3 (original_airdate VARCHAR, director VARCHAR)"}, {"answer": "SELECT viewers_millions_ FROM table_12919003_3 WHERE episode = \"episode 5\"", "question": "How many millions of viewers did watch Episode 5?", "context": "CREATE TABLE table_12919003_3 (viewers_millions_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_12919003_3 WHERE viewers_millions_ = \"9.14\"", "question": "What's the total number of directors whose episodes have been seen by 9.14 million viewers?", "context": "CREATE TABLE table_12919003_3 (director VARCHAR, viewers_millions_ VARCHAR)"}, {"answer": "SELECT director FROM table_12919003_2 WHERE episode = \"episode 5\"", "question": "Who directed Episode 5?", "context": "CREATE TABLE table_12919003_2 (director VARCHAR, episode VARCHAR)"}, {"answer": "SELECT viewers_millions_ FROM table_12919003_2 WHERE episode = \"episode 5\"", "question": "How many viewers did Episode 5 have?", "context": "CREATE TABLE table_12919003_2 (viewers_millions_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_12962773_1 WHERE current_club = \"Panathinaikos\" AND position = \"Forward\"", "question": " what's the\u00a0no\u00a0with\u00a0current club\u00a0being panathinaikos and\u00a0position\u00a0being forward", "context": "CREATE TABLE table_12962773_1 (no VARCHAR, current_club VARCHAR, position VARCHAR)"}, {"answer": "SELECT height FROM table_12962773_1 WHERE position = \"Center\" AND year_born > 1980.0", "question": "what's\u00a0height\u00a0with\u00a0position\u00a0being center and\u00a0year born\u00a0being bigger than 1980.0", "context": "CREATE TABLE table_12962773_1 (height VARCHAR, position VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT player FROM table_12962773_1 WHERE position = \"Forward\" AND current_club = \"Real Madrid\"", "question": "what's\u00a0player\u00a0with\u00a0position\u00a0being forward and\u00a0current club\u00a0being real madrid", "context": "CREATE TABLE table_12962773_1 (player VARCHAR, position VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT current_club FROM table_12962773_1 WHERE player = \"Nikolaos Chatzivrettas\"", "question": "what's\u00a0current club\u00a0with\u00a0player\u00a0being nikolaos chatzivrettas", "context": "CREATE TABLE table_12962773_1 (current_club VARCHAR, player VARCHAR)"}, {"answer": "SELECT current_club FROM table_12962773_1 WHERE height = \"2.09\"", "question": "what's\u00a0current club\u00a0with\u00a0height\u00a0being 2.09", "context": "CREATE TABLE table_12962773_1 (current_club VARCHAR, height VARCHAR)"}, {"answer": "SELECT current_club FROM table_12962773_1 WHERE position = \"Center\" AND no > 12.0", "question": "what's\u00a0current club\u00a0with\u00a0position\u00a0being center and\u00a0no\u00a0being bigger than 12.0", "context": "CREATE TABLE table_12962773_1 (current_club VARCHAR, position VARCHAR, no VARCHAR)"}, {"answer": "SELECT opponent FROM table_12944805_15 WHERE game_site = \"Veterans Stadium\"", "question": "What is the opponent of the veterans stadium", "context": "CREATE TABLE table_12944805_15 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MAX(year_born) FROM table_12962773_14 WHERE height = \"2.02\"", "question": "What year was the player born who is 2.02m tall?", "context": "CREATE TABLE table_12962773_14 (year_born INTEGER, height VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_12962773_14 WHERE player = \"Aleksandar \u0106apin\"", "question": "What number does aleksandar \u0107apin wear?", "context": "CREATE TABLE table_12962773_14 (no INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_12962773_13 WHERE current_club = \"Grupo Capitol Valladolid\"", "question": "Name the total number of grupo capitol valladolid", "context": "CREATE TABLE table_12962773_13 (no VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT height FROM table_12962773_13 WHERE year_born = 1980 AND position = \"Center\"", "question": "Name the height for the player born in 1980 and center?", "context": "CREATE TABLE table_12962773_13 (height VARCHAR, year_born VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_12962773_13 WHERE height = \"2.06\"", "question": "What is the total number that has a height of 2.06?", "context": "CREATE TABLE table_12962773_13 (no VARCHAR, height VARCHAR)"}, {"answer": "SELECT current_club FROM table_12962773_13 WHERE no = 6", "question": "Name the current club for number 6", "context": "CREATE TABLE table_12962773_13 (current_club VARCHAR, no VARCHAR)"}, {"answer": "SELECT current_club FROM table_12962773_13 WHERE player = \"Sacha Giffa\"", "question": "Name the current club for player sacha giffa", "context": "CREATE TABLE table_12962773_13 (current_club VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(year_born) FROM table_12962773_13 WHERE current_club = \"Strasbourg\"", "question": "What is the minimum year born for strasbourg?", "context": "CREATE TABLE table_12962773_13 (year_born INTEGER, current_club VARCHAR)"}, {"answer": "SELECT current_club FROM table_12962773_15 WHERE year_born = 1983", "question": "Which club had a player born in 1983?", "context": "CREATE TABLE table_12962773_15 (current_club VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT height FROM table_12962773_15 WHERE player = \"Marco Belinelli\"", "question": "How tall is Marco Belinelli?", "context": "CREATE TABLE table_12962773_15 (height VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_12962773_15 WHERE player = \"Andrea Bargnani\"", "question": "What number is Andrea Bargnani?", "context": "CREATE TABLE table_12962773_15 (no INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_12962773_15 WHERE no = 6", "question": "What player is number 6?", "context": "CREATE TABLE table_12962773_15 (player VARCHAR, no VARCHAR)"}, {"answer": "SELECT COUNT(current_club) FROM table_12962773_15 WHERE no = 6", "question": "How many clubs does number 6 play for?", "context": "CREATE TABLE table_12962773_15 (current_club VARCHAR, no VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_12962773_5 WHERE no = 12", "question": " how many\u00a0player\u00a0with\u00a0no\u00a0being 12", "context": "CREATE TABLE table_12962773_5 (player VARCHAR, no VARCHAR)"}, {"answer": "SELECT height FROM table_12962773_5 WHERE position = \"Forward\" AND current_club = \"Real Madrid\"", "question": "what's the\u00a0height\u00a0with\u00a0position\u00a0being forward and\u00a0current club\u00a0being real madrid", "context": "CREATE TABLE table_12962773_5 (height VARCHAR, position VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT height FROM table_12962773_5 WHERE current_club = \"DKV Joventut\"", "question": "what's the\u00a0height\u00a0with\u00a0current club\u00a0being dkv joventut", "context": "CREATE TABLE table_12962773_5 (height VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT current_club FROM table_12962773_5 WHERE player = \"Felipe Reyes\"", "question": "what's the\u00a0current club\u00a0with\u00a0player\u00a0being felipe reyes", "context": "CREATE TABLE table_12962773_5 (current_club VARCHAR, player VARCHAR)"}, {"answer": "SELECT director FROM table_12976038_1 WHERE viewers__in_millions_ = \"6.04\"", "question": "Who directed the episode that had 6.04 million viewers? ", "context": "CREATE TABLE table_12976038_1 (director VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT episode__number FROM table_12976038_1 WHERE viewers__in_millions_ = \"5.74\"", "question": "What number episode had 5.74 million viewers? ", "context": "CREATE TABLE table_12976038_1 (episode__number VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT construction_start FROM table_12983929_1 WHERE net_power = \"905 MW\" AND unit = \"Chinon B1\"", "question": "When did the construction of the unit Chinon B1 with net power of 905 MW start?", "context": "CREATE TABLE table_12983929_1 (construction_start VARCHAR, net_power VARCHAR, unit VARCHAR)"}, {"answer": "SELECT total_power FROM table_12983929_1 WHERE construction_finish = \"14.06.1963\"", "question": "What's the total power of the unit whose construction finished on 14.06.1963?", "context": "CREATE TABLE table_12983929_1 (total_power VARCHAR, construction_finish VARCHAR)"}, {"answer": "SELECT COUNT(total_power) FROM table_12983929_1 WHERE construction_start = \"01.03.1977\" AND commercial_operation = \"01.02.1984\"", "question": "How many different values of total power are there for the unit whose construction started on 01.03.1977 and whose commercial operation started on 01.02.1984?", "context": "CREATE TABLE table_12983929_1 (total_power VARCHAR, construction_start VARCHAR, commercial_operation VARCHAR)"}, {"answer": "SELECT shut_down FROM table_12983929_1 WHERE commercial_operation = \"01.02.1984\"", "question": "What's the shut down state of the unit that's been in commercial operation since 01.02.1984?", "context": "CREATE TABLE table_12983929_1 (shut_down VARCHAR, commercial_operation VARCHAR)"}, {"answer": "SELECT construction_start FROM table_12983929_1 WHERE commercial_operation = \"04.03.1987\"", "question": "When was the start of the construction of the unit that's been in commercial operation since 04.03.1987?", "context": "CREATE TABLE table_12983929_1 (construction_start VARCHAR, commercial_operation VARCHAR)"}, {"answer": "SELECT MIN(total_viewers) FROM table_12995531_3 WHERE date_of_first_broadcast = \"28 January 2010\" AND episode_number = 1", "question": "what is the total viewers where the date of first broadcast is 28 january 2010 and the episode number is 1?", "context": "CREATE TABLE table_12995531_3 (total_viewers INTEGER, date_of_first_broadcast VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT MIN(episode_number) FROM table_12995531_3 WHERE total_viewers = 614000", "question": "what is the episode number where the total viewers is 614000?", "context": "CREATE TABLE table_12995531_3 (episode_number INTEGER, total_viewers VARCHAR)"}, {"answer": "SELECT series_number FROM table_12995531_3 WHERE date_of_first_broadcast = \"16 October 2008\"", "question": "what is  the series number where the date of first broadcast is 16 october 2008?", "context": "CREATE TABLE table_12995531_3 (series_number VARCHAR, date_of_first_broadcast VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_13012165_1 WHERE maryland = \"Easton LL Easton\"", "question": "In what year did Easton LL Easton play in Maryland?", "context": "CREATE TABLE table_13012165_1 (year VARCHAR, maryland VARCHAR)"}, {"answer": "SELECT washington, _dc FROM table_13012165_1 WHERE new_york = \"Ramapo LL Ramapo\"", "question": "What teams played in Washington, DC the year that Ramapo LL Ramapo was the game in New York?", "context": "CREATE TABLE table_13012165_1 (washington VARCHAR, _dc VARCHAR, new_york VARCHAR)"}, {"answer": "SELECT year FROM table_13012165_1 WHERE maryland = \"Railroaders LL Brunswick\"", "question": "Which year did Maryland hold the title with Railroaders LL Brunswick?", "context": "CREATE TABLE table_13012165_1 (year VARCHAR, maryland VARCHAR)"}, {"answer": "SELECT maryland FROM table_13012165_1 WHERE new_jersey = \"Somerset Hills LL Bernardsville\"", "question": "Who played in Maryland the same year that New Jersey hosted Somerset Hills LL Bernardsville?", "context": "CREATE TABLE table_13012165_1 (maryland VARCHAR, new_jersey VARCHAR)"}, {"answer": "SELECT maryland FROM table_13012165_1 WHERE delaware = \"M.O.T. LL Middletown\" AND year > 2008.0", "question": "After the year 2008.0, who played for Maryland the same year M.O.T. LL Middletown played in Delaware?", "context": "CREATE TABLE table_13012165_1 (maryland VARCHAR, delaware VARCHAR, year VARCHAR)"}, {"answer": "SELECT maryland FROM table_13012165_1 WHERE pennsylvania = \"Deep Run Valley LL Hilltown\"", "question": "Who played in Maryland the same year that Deep Run Valley LL Hilltown played in Pennsylvania?", "context": "CREATE TABLE table_13012165_1 (maryland VARCHAR, pennsylvania VARCHAR)"}, {"answer": "SELECT location FROM table_1301373_1 WHERE stadium = \"Bluetongue stadium\"", "question": "Where is Bluetongue Stadium located? ", "context": "CREATE TABLE table_1301373_1 (location VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT founded FROM table_1301373_1 WHERE captain = \"Matt Smith\"", "question": "When was the team, whose captain is Matt Smith,  founded? ", "context": "CREATE TABLE table_1301373_1 (founded VARCHAR, captain VARCHAR)"}, {"answer": "SELECT captain FROM table_1301373_1 WHERE head_coach = \"Alistair Edwards\"", "question": "Who's the captain of the team whose head coach is Alistair Edwards? ", "context": "CREATE TABLE table_1301373_1 (captain VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_1301373_1 WHERE team = \"Newcastle Jets\"", "question": "How many locations does the team Newcastle Jets come from? ", "context": "CREATE TABLE table_1301373_1 (location VARCHAR, team VARCHAR)"}, {"answer": "SELECT location FROM table_1301373_1 WHERE stadium = \"Westpac stadium\"", "question": "Where is Westpac Stadium located? ", "context": "CREATE TABLE table_1301373_1 (location VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT new_hampshire FROM table_13011547_1 WHERE year = 2009", "question": "What is the new hampshire in 2009?", "context": "CREATE TABLE table_13011547_1 (new_hampshire VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(pts_for) FROM table_13018116_1 WHERE won = 9", "question": "What is the most points when the won is 9?", "context": "CREATE TABLE table_13018116_1 (pts_for INTEGER, won VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_13018116_1 WHERE pts_agst = 645", "question": "What is the number of played when points against 645?", "context": "CREATE TABLE table_13018116_1 (played VARCHAR, pts_agst VARCHAR)"}, {"answer": "SELECT MIN(pts_for) FROM table_13018116_1", "question": "Name the most points for", "context": "CREATE TABLE table_13018116_1 (pts_for INTEGER)"}, {"answer": "SELECT MAX(pts_agst) FROM table_13018116_1 WHERE pts_for = 860", "question": "Name the most points against when points for is 860", "context": "CREATE TABLE table_13018116_1 (pts_agst INTEGER, pts_for VARCHAR)"}, {"answer": "SELECT COUNT(won) FROM table_13018091_1 WHERE pts_for = 616", "question": "How many teams scored 616 points?", "context": "CREATE TABLE table_13018091_1 (won VARCHAR, pts_for VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_13018091_1 WHERE club = \"Widnes Vikings\"", "question": "How many teams drew the widnes vikings?", "context": "CREATE TABLE table_13018091_1 (drawn VARCHAR, club VARCHAR)"}, {"answer": "SELECT MIN(won) FROM table_13018091_1 WHERE club = \"Whitehaven\"", "question": "How many games did whitehaven win?", "context": "CREATE TABLE table_13018091_1 (won INTEGER, club VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_13018091_1 WHERE club = \"Sheffield Eagles\"", "question": "What position did the sheffield eagles finish in?", "context": "CREATE TABLE table_13018091_1 (position INTEGER, club VARCHAR)"}, {"answer": "SELECT date FROM table_13023925_2 WHERE week = 14", "question": "What was the date of the game in week 14?", "context": "CREATE TABLE table_13023925_2 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_13015539_1 WHERE lost = 8", "question": "What is the total points for the tean with 8 losses?", "context": "CREATE TABLE table_13015539_1 (points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_13015539_1 WHERE club = \"Keighley Cougars\"", "question": "How many numbers are given for losses by the Keighley Cougars?", "context": "CREATE TABLE table_13015539_1 (lost VARCHAR, club VARCHAR)"}, {"answer": "SELECT australian_marquee FROM table_1301373_7 WHERE international_marquee = \"Alessandro Del Piero\"", "question": "Name the australian marquee for alessandro del piero", "context": "CREATE TABLE table_1301373_7 (australian_marquee VARCHAR, international_marquee VARCHAR)"}, {"answer": "SELECT Vice - captain FROM table_1301373_7 WHERE club = \"Melbourne Victory\"", "question": "Name the vice captain for melbourne victory", "context": "CREATE TABLE table_1301373_7 (Vice VARCHAR, captain VARCHAR, club VARCHAR)"}, {"answer": "SELECT captain FROM table_1301373_7 WHERE international_marquee = \"Emile Heskey\"", "question": "Name the captain for emile heskey", "context": "CREATE TABLE table_1301373_7 (captain VARCHAR, international_marquee VARCHAR)"}, {"answer": "SELECT championship FROM table_13026799_1 WHERE margin = \"Playoff 2\"", "question": "What championship had a margin of playoff 2?", "context": "CREATE TABLE table_13026799_1 (championship VARCHAR, margin VARCHAR)"}, {"answer": "SELECT margin FROM table_13026799_1 WHERE championship = \"Masters Tournament\"", "question": "What was the margin of the Masters Tournament?", "context": "CREATE TABLE table_13026799_1 (margin VARCHAR, championship VARCHAR)"}, {"answer": "SELECT winning_score FROM table_13026799_1 WHERE championship = \"Masters Tournament\"", "question": "What was the winning score of the Masters Tournament?", "context": "CREATE TABLE table_13026799_1 (winning_score VARCHAR, championship VARCHAR)"}, {"answer": "SELECT winning_score FROM table_13026799_1 WHERE championship = \"PGA championship (3)\"", "question": "What was the winning score of the PGA Championship (3)?", "context": "CREATE TABLE table_13026799_1 (winning_score VARCHAR, championship VARCHAR)"}, {"answer": "SELECT COUNT(starts) FROM table_13026799_3 WHERE year = 1987", "question": "What is the number of starts for 1987?", "context": "CREATE TABLE table_13026799_3 (starts VARCHAR, year VARCHAR)"}, {"answer": "SELECT scoring_average FROM table_13026799_3 WHERE earnings__$_ = 111419", "question": "What is the scoring aerage for 111419?", "context": "CREATE TABLE table_13026799_3 (scoring_average VARCHAR, earnings__$_ VARCHAR)"}, {"answer": "SELECT money_list_rank FROM table_13026799_3 WHERE year = 1966", "question": "What is the money list rank for 1966?", "context": "CREATE TABLE table_13026799_3 (money_list_rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(scoring_average) FROM table_13026799_3 WHERE money_list_rank = \"174\"", "question": "Name the total number of scoring average for money list rank of 174", "context": "CREATE TABLE table_13026799_3 (scoring_average VARCHAR, money_list_rank VARCHAR)"}, {"answer": "SELECT county FROM table_1302886_1 WHERE kerry_number = 59740", "question": "What is the county where kerry# is 59740?", "context": "CREATE TABLE table_1302886_1 (county VARCHAR, kerry_number VARCHAR)"}, {"answer": "SELECT kerry_number FROM table_1302886_1 WHERE county = \"Cook\"", "question": "In cook county Kerry# is?", "context": "CREATE TABLE table_1302886_1 (kerry_number VARCHAR, county VARCHAR)"}, {"answer": "SELECT kerry_number FROM table_1302886_1 WHERE bush_number = 3907", "question": "When bush# is 3907, what is Kerry#?", "context": "CREATE TABLE table_1302886_1 (kerry_number VARCHAR, bush_number VARCHAR)"}, {"answer": "SELECT MAX(others_number) FROM table_1302886_1 WHERE bush_percentage = \"57.0%\"", "question": "What is the others# when bush% is 57.0%?", "context": "CREATE TABLE table_1302886_1 (others_number INTEGER, bush_percentage VARCHAR)"}, {"answer": "SELECT the_mole FROM table_13036251_1 WHERE airdate = \"8 January 2009\"", "question": "what's\u00a0the mole\u00a0with\u00a0airdate\u00a0being 8 january 2009", "context": "CREATE TABLE table_13036251_1 (the_mole VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT the_mole FROM table_13036251_1 WHERE prize_money = \"\u20ac24,475\"", "question": "what's\u00a0the mole\u00a0with\u00a0prize money\u00a0being \u20ac24,475", "context": "CREATE TABLE table_13036251_1 (the_mole VARCHAR, prize_money VARCHAR)"}, {"answer": "SELECT COUNT(the_mole) FROM table_13036251_1 WHERE airdate = \"5 January 2012\"", "question": " what's the\u00a0the mole\u00a0with\u00a0airdate\u00a0being 5 january 2012", "context": "CREATE TABLE table_13036251_1 (the_mole VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT airdate FROM table_13036251_1 WHERE international_destination = \"Scotland\"", "question": "what's\u00a0airdate\u00a0with\u00a0international destination\u00a0being scotland", "context": "CREATE TABLE table_13036251_1 (airdate VARCHAR, international_destination VARCHAR)"}, {"answer": "SELECT the_mole FROM table_13036251_1 WHERE winner = \"Fr\u00e9d\u00e9rique Huydts\"", "question": "what's\u00a0the mole\u00a0with\u00a0winner\u00a0being fr\u00e9d\u00e9rique huydts", "context": "CREATE TABLE table_13036251_1 (the_mole VARCHAR, winner VARCHAR)"}, {"answer": "SELECT runner_up FROM table_13036251_1 WHERE season = \"season 13\"", "question": "what's\u00a0runner-up\u00a0with\u00a0season\u00a0being season 13", "context": "CREATE TABLE table_13036251_1 (runner_up VARCHAR, season VARCHAR)"}, {"answer": "SELECT county FROM table_1304443_2 WHERE kerry_number = 29231", "question": "In what county did 29231 people vote for Kerry?", "context": "CREATE TABLE table_1304443_2 (county VARCHAR, kerry_number VARCHAR)"}, {"answer": "SELECT county FROM table_1304443_2 WHERE bush_percentage = \"48.3%\"", "question": "What's the name of the county where 48.3% voted for Bush?", "context": "CREATE TABLE table_1304443_2 (county VARCHAR, bush_percentage VARCHAR)"}, {"answer": "SELECT others_percentage FROM table_1304443_2 WHERE bush_percentage = \"51.6%\"", "question": "What's the percentage of votes for other candidates in the county where Bush got 51.6% of the votes?", "context": "CREATE TABLE table_1304443_2 (others_percentage VARCHAR, bush_percentage VARCHAR)"}, {"answer": "SELECT county FROM table_1304443_2 WHERE bush_percentage = \"54.6%\"", "question": "What's the name of the county where 54.6% voted for Bush?", "context": "CREATE TABLE table_1304443_2 (county VARCHAR, bush_percentage VARCHAR)"}, {"answer": "SELECT COUNT(steals) FROM table_13050003_3 WHERE year = 2012", "question": "What is the number of steals for 2012", "context": "CREATE TABLE table_13050003_3 (steals VARCHAR, year VARCHAR)"}, {"answer": "SELECT blocks FROM table_13050003_2 WHERE points = \"Zach Randolph (24)\"", "question": "Who are the blockers where points are scored by Zach Randolph (24)?", "context": "CREATE TABLE table_13050003_2 (blocks VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(rebounds) FROM table_13050003_2 WHERE year = 2008", "question": "How many rebounds were there in 2008?", "context": "CREATE TABLE table_13050003_2 (rebounds VARCHAR, year VARCHAR)"}, {"answer": "SELECT blocks FROM table_13050003_2 WHERE year = 2012", "question": "Who had all of the blocks in 2012?", "context": "CREATE TABLE table_13050003_2 (blocks VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_13050003_2 WHERE blocks = \"Nerlens Noel (4)\"", "question": "What year has Nerlens Noel (4) as blocker?", "context": "CREATE TABLE table_13050003_2 (year INTEGER, blocks VARCHAR)"}, {"answer": "SELECT MAX(silver_medals) FROM table_1305623_18", "question": "What is the most silver medals?", "context": "CREATE TABLE table_1305623_18 (silver_medals INTEGER)"}, {"answer": "SELECT gold_medals FROM table_1305623_18 WHERE silver_medals < 1.0", "question": "what are all the gold medals when the silver medals is smaller than 1.0?", "context": "CREATE TABLE table_1305623_18 (gold_medals VARCHAR, silver_medals INTEGER)"}, {"answer": "SELECT COUNT(silver_medals) FROM table_1305623_20 WHERE ensemble = \"Portsmouth HS\"", "question": "How many numbers were listed under Silver Medals for Portsmouth HS?", "context": "CREATE TABLE table_1305623_20 (silver_medals VARCHAR, ensemble VARCHAR)"}, {"answer": "SELECT MIN(total_medals) FROM table_1305623_20", "question": "What was the smallest total number of medals?", "context": "CREATE TABLE table_1305623_20 (total_medals INTEGER)"}, {"answer": "SELECT MAX(gold_medals) FROM table_1305623_20 WHERE ensemble = \"Naugatuck HS\"", "question": "What is the highest number of gold medals Naugatuck HS won?", "context": "CREATE TABLE table_1305623_20 (gold_medals INTEGER, ensemble VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_13079788_3 WHERE gt3_winner = \"Hector Lester Tim Mullen\" AND pole_position = \"Jonny Cocker Paul Drayson\"", "question": "what is the maximum round for gt3 winner hector lester tim mullen and pole position of jonny cocker paul drayson", "context": "CREATE TABLE table_13079788_3 (round INTEGER, gt3_winner VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT date FROM table_13079788_3 WHERE gt3_winner = \"Oliver Bryant Matt Harris\"", "question": "what are all the date for gt3 winner oliver bryant matt harris", "context": "CREATE TABLE table_13079788_3 (date VARCHAR, gt3_winner VARCHAR)"}, {"answer": "SELECT date FROM table_13079788_3 WHERE gtc_winner = \"Graeme Mundy Jamie Smyth\" AND gt3_winner = \"Hector Lester Tim Mullen\"", "question": "what are all the date for gtc winners graeme mundy jamie smyth and gt3 winners hector lester tim mullen", "context": "CREATE TABLE table_13079788_3 (date VARCHAR, gtc_winner VARCHAR, gt3_winner VARCHAR)"}, {"answer": "SELECT circuit FROM table_13079788_3 WHERE date = \"9 September\" AND gt3_winner = \"Hector Lester Allan Simonsen\"", "question": "what are all the circuit for 9 september and gt3 winner hector lester allan simonsen", "context": "CREATE TABLE table_13079788_3 (circuit VARCHAR, date VARCHAR, gt3_winner VARCHAR)"}, {"answer": "SELECT circuit FROM table_13079788_3 WHERE gtc_winner = \"Graeme Mundy Jamie Smyth\" AND pole_position = \"Bradley Ellis Alex Mortimer\"", "question": "what are all the circuit for gtc winner graeme mundy jamie smyth and pole position bradley ellis alex mortimer", "context": "CREATE TABLE table_13079788_3 (circuit VARCHAR, gtc_winner VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT gtc_winner FROM table_13079788_3 WHERE pole_position = \"No. 21 Team Modena\"", "question": "what are all the gtc winners for pole position no. 21 team modena", "context": "CREATE TABLE table_13079788_3 (gtc_winner VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT composition FROM table_1307572_1 WHERE edge = \"Rounded, plain\"", "question": "What material is made with a rounded, plain edge?", "context": "CREATE TABLE table_1307572_1 (composition VARCHAR, edge VARCHAR)"}, {"answer": "SELECT COUNT(reverse) FROM table_1307572_1 WHERE diameter = \"23mm\"", "question": "How many coins have a diameter of 23mm?", "context": "CREATE TABLE table_1307572_1 (reverse VARCHAR, diameter VARCHAR)"}, {"answer": "SELECT first_minting FROM table_1307572_1 WHERE mass = \"3.7 g\"", "question": "When was the coin with the mass of 3.7 g first minted?", "context": "CREATE TABLE table_1307572_1 (first_minting VARCHAR, mass VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_1307842_7 WHERE member_countries = \"Lithuania\"", "question": "What is the number of population for lithuania?", "context": "CREATE TABLE table_1307842_7 (population VARCHAR, member_countries VARCHAR)"}, {"answer": "SELECT gdp__billion_us$_ FROM table_1307842_7 WHERE gdp_per_capita__us$_ = 20200", "question": "Name the gdp where gdp per capita 20200", "context": "CREATE TABLE table_1307842_7 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR)"}, {"answer": "SELECT COUNT(area__km\u00b2_) FROM table_1307842_7 WHERE population = 775927", "question": "Name the total number of area for 775927 population", "context": "CREATE TABLE table_1307842_7 (area__km\u00b2_ VARCHAR, population VARCHAR)"}, {"answer": "SELECT gdp__billion_us$_ FROM table_1307842_6 WHERE area__km\u00b2_ = 83871", "question": "What is the gdp of the country with an area of 83871 (km2)?", "context": "CREATE TABLE table_1307842_6 (gdp__billion_us$_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT gdp__billion_us$_ FROM table_1307842_6 WHERE gdp_per_capita__us$_ = 18048", "question": "What was the gdp of the country with a gdp per capita of $18048?", "context": "CREATE TABLE table_1307842_6 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR)"}, {"answer": "SELECT MAX(area__km\u00b2_) FROM table_1307842_6 WHERE member_countries = \"Austria\"", "question": "What is Austria's maximum area (km2)?", "context": "CREATE TABLE table_1307842_6 (area__km\u00b2_ INTEGER, member_countries VARCHAR)"}, {"answer": "SELECT season FROM table_13082900_1 WHERE rookie_of_the_year = \"No award given\"", "question": "What is the season for no award given for rookie of the year?", "context": "CREATE TABLE table_13082900_1 (season VARCHAR, rookie_of_the_year VARCHAR)"}, {"answer": "SELECT COUNT(air_date) FROM table_13110459_2 WHERE overall = \"83/95\"", "question": " how many\u00a0air date\u00a0with\u00a0overall\u00a0being 83/95", "context": "CREATE TABLE table_13110459_2 (air_date VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(viewers__m_) FROM table_13110459_2 WHERE overall = \"91/101\"", "question": " how many\u00a0viewers (m)\u00a0with\u00a0overall\u00a0being 91/101", "context": "CREATE TABLE table_13110459_2 (viewers__m_ VARCHAR, overall VARCHAR)"}, {"answer": "SELECT rating FROM table_13110459_2 WHERE viewers__m_ = \"2.89\"", "question": "what are all the\u00a0rating\u00a0with\u00a0viewers (m)\u00a0being 2.89", "context": "CREATE TABLE table_13110459_2 (rating VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT overall FROM table_13110459_2 WHERE rating = \"1.4\"", "question": "what are all the\u00a0overall\u00a0with\u00a0rating\u00a0being 1.4", "context": "CREATE TABLE table_13110459_2 (overall VARCHAR, rating VARCHAR)"}, {"answer": "SELECT overall FROM table_13110459_2 WHERE viewers__m_ = \"2.61\"", "question": "what are all the\u00a0overall\u00a0with\u00a0viewers (m)\u00a0being 2.61", "context": "CREATE TABLE table_13110459_2 (overall VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT rating FROM table_13110459_2 WHERE viewers__m_ = \"2.61\"", "question": "what are all the\u00a0rating\u00a0with\u00a0viewers (m)\u00a0being 2.61", "context": "CREATE TABLE table_13110459_2 (rating VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT year FROM table_13114949_3 WHERE qualifying_score = \"15.150\"", "question": "what is the year where the qualifying score was 15.150?", "context": "CREATE TABLE table_13114949_3 (year VARCHAR, qualifying_score VARCHAR)"}, {"answer": "SELECT COUNT(event) FROM table_13114949_3 WHERE qualifying_score = \"60.750\"", "question": "how many times was the qualifying score 60.750?", "context": "CREATE TABLE table_13114949_3 (event VARCHAR, qualifying_score VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_13114949_3 WHERE qualifying_score = \"61.400\"", "question": "how many times is the qualifying score 61.400?", "context": "CREATE TABLE table_13114949_3 (year VARCHAR, qualifying_score VARCHAR)"}, {"answer": "SELECT final_rank FROM table_13114949_3 WHERE event = \"Uneven Bars\" AND competition = \"U.S. Championships\"", "question": "what is the final-rank for the uneven bars and the competition is u.s. championships?", "context": "CREATE TABLE table_13114949_3 (final_rank VARCHAR, event VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MIN(qualifying_rank) FROM table_13114949_3", "question": "what is the lowest qualifying rank?", "context": "CREATE TABLE table_13114949_3 (qualifying_rank INTEGER)"}, {"answer": "SELECT MAX(qualifying_rank) FROM table_13114949_3 WHERE competition = \"Olympic Trials\" AND final_rank = \"4\" AND qualifying_score = \"15.100\"", "question": "what is the highest qualifying rank where the competition is olympic trials, the final-rank is 4 and qualifying score is 15.100?", "context": "CREATE TABLE table_13114949_3 (qualifying_rank INTEGER, qualifying_score VARCHAR, competition VARCHAR, final_rank VARCHAR)"}, {"answer": "SELECT k\u014dhaku__number FROM table_1315616_1 WHERE red_team_host = \"Peggy Hayama\"", "question": "In what number k\u014dhaku was the red team host Peggy Hayama? ", "context": "CREATE TABLE table_1315616_1 (k\u014dhaku__number VARCHAR, red_team_host VARCHAR)"}, {"answer": "SELECT mediator FROM table_1315616_1 WHERE k\u014dhaku__number = 53", "question": "Who was the mediator in k\u014dhaku number 53?", "context": "CREATE TABLE table_1315616_1 (mediator VARCHAR, k\u014dhaku__number VARCHAR)"}, {"answer": "SELECT date FROM table_1315616_1 WHERE mediator = \"Keiichi Ubukata\" AND red_team_host = \"Mitsuko Mori\"", "question": "On what date was Keiichi Ubukata the mediator and Mitsuko Mori the red team host?", "context": "CREATE TABLE table_1315616_1 (date VARCHAR, mediator VARCHAR, red_team_host VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_13169136_1", "question": "What is the most recent year?", "context": "CREATE TABLE table_13169136_1 (year INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_13169136_1 WHERE champion = \"Jiyai Shin\"", "question": "What year is Jiyai Shin the champion?", "context": "CREATE TABLE table_13169136_1 (year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT _number FROM table_13183076_3 WHERE production_code = \"3T7057\"", "question": "What is the # for the episode with a Production code of 3T7057?", "context": "CREATE TABLE table_13183076_3 (_number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_13183076_3 WHERE directed_by = \"Tricia Brock\"", "question": "What is the Original air date for the episode directed by Tricia Brock?", "context": "CREATE TABLE table_13183076_3 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_13183076_3 WHERE written_by = \"Peter Ocko\"", "question": "What is the Original air date for the episode written by Peter Ocko?", "context": "CREATE TABLE table_13183076_3 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_13183076_3 WHERE production_code = \"3T7051\"", "question": "How many U.S. viewers (million) are there for the episode whose Production code is 3T7051?", "context": "CREATE TABLE table_13183076_3 (us_viewers__million_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(michelob_ultra_mountains_classification_gold_polka_dot_jersey) FROM table_13223187_1 WHERE drury_hotels_most_aggressive_rider_red_jersey = \"Darren Lill\"", "question": "How many michelob ultra mountains classification for darren lill", "context": "CREATE TABLE table_13223187_1 (michelob_ultra_mountains_classification_gold_polka_dot_jersey VARCHAR, drury_hotels_most_aggressive_rider_red_jersey VARCHAR)"}, {"answer": "SELECT release FROM table_1322904_1 WHERE title = \"Sonic Adventure 2\"", "question": "What was the release date of Sonic Adventure 2?", "context": "CREATE TABLE table_1322904_1 (release VARCHAR, title VARCHAR)"}, {"answer": "SELECT windows FROM table_1322904_1 WHERE release = \"April 8\"", "question": "Was the release on April 8 available on Windows?", "context": "CREATE TABLE table_1322904_1 (windows VARCHAR, release VARCHAR)"}, {"answer": "SELECT title FROM table_1322904_1 WHERE release = \"August 27\"", "question": "What title was released on August 27?", "context": "CREATE TABLE table_1322904_1 (title VARCHAR, release VARCHAR)"}, {"answer": "SELECT windows FROM table_1322914_1 WHERE title = \"Icewind Dale\"", "question": "Is icewind dale available for windows", "context": "CREATE TABLE table_1322914_1 (windows VARCHAR, title VARCHAR)"}, {"answer": "SELECT no_yds FROM table_13237088_28 WHERE ast = 8", "question": "List all number of yards with an AST of 8.", "context": "CREATE TABLE table_13237088_28 (no_yds VARCHAR, ast VARCHAR)"}, {"answer": "SELECT opponent FROM table_13258876_2 WHERE attendance = 61615", "question": "Who did the Seahawks play when the listed attendance was 61615?", "context": "CREATE TABLE table_13258876_2 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_13258876_2 WHERE date = \"September 18, 1983\"", "question": "What was the Seahawks record on September 18, 1983?", "context": "CREATE TABLE table_13258876_2 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_13258876_2 WHERE game_site = \"Los Angeles Memorial Coliseum\"", "question": "What week did the Seahawks play at los angeles memorial coliseum?", "context": "CREATE TABLE table_13258876_2 (week INTEGER, game_site VARCHAR)"}, {"answer": "SELECT result FROM table_13258876_2 WHERE attendance = 48945", "question": "What was the score of the game when the attendance was 48945?", "context": "CREATE TABLE table_13258876_2 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_13258876_2 WHERE date = \"September 4, 1983\"", "question": "Who did the Seahawks play on September 4, 1983?", "context": "CREATE TABLE table_13258876_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_13258851_2 WHERE game_site = \"Hubert H. Humphrey Metrodome\"", "question": "What was the record set during the game played at Hubert H. Humphrey Metrodome?", "context": "CREATE TABLE table_13258851_2 (record VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_13258851_2 WHERE opponent = \"San Diego Chargers\"", "question": "On what date was the game against San Diego Chargers played?", "context": "CREATE TABLE table_13258851_2 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_13258851_2 WHERE opponent = \"Kansas City Chiefs\"", "question": "What was the date of the game against Kansas City Chiefs?", "context": "CREATE TABLE table_13258851_2 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_13258851_2 WHERE date = \"September 16, 1984\"", "question": "What was the result of the game played on September 16, 1984?", "context": "CREATE TABLE table_13258851_2 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_13258806_2 WHERE result = \"W 43-14\"", "question": "On what date did the game end with the result w 43-14?", "context": "CREATE TABLE table_13258806_2 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_13258806_2 WHERE result = \"W 24-20\"", "question": "What was the attendance at the game that resulted in w 24-20? ", "context": "CREATE TABLE table_13258806_2 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_13258806_2 WHERE record = \"2-2\"", "question": "Who did they play against in the game that ended in 2-2?", "context": "CREATE TABLE table_13258806_2 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_13258806_2 WHERE record = \"0-1\"", "question": "When was the record of 0-1 set?", "context": "CREATE TABLE table_13258806_2 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_13258806_2 WHERE date = \"October 4, 1987\"", "question": "During what weak of the season was the game played on october 4, 1987?", "context": "CREATE TABLE table_13258806_2 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_13258972_2 WHERE record = \"1-1\"", "question": "What was the attendance when the record was 1-1?", "context": "CREATE TABLE table_13258972_2 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_13258972_2 WHERE record = \"5-9\"", "question": "In what week was the record 5-9?", "context": "CREATE TABLE table_13258972_2 (week INTEGER, record VARCHAR)"}, {"answer": "SELECT date FROM table_13258972_2 WHERE game_site = \"Kingdome\" AND opponent = \"Kansas City Chiefs\"", "question": "What date did the Seahawks play the Kansas City Chiefs at the Kingdome?", "context": "CREATE TABLE table_13258972_2 (date VARCHAR, game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_13259034_2 WHERE date = \"November 27, 1977\"", "question": "In what week was November 27, 1977?", "context": "CREATE TABLE table_13259034_2 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_13259034_2 WHERE date = \"October 16, 1977\"", "question": "Where did the teams play on October 16, 1977?", "context": "CREATE TABLE table_13259034_2 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_13259009_2 WHERE game_site = \"Mile High Stadium\"", "question": "What team was the opponent at Mile High Stadium?", "context": "CREATE TABLE table_13259009_2 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT record FROM table_13259009_2 WHERE opponent = \"Los Angeles Rams\"", "question": "What was the record when they played the Los Angeles Rams?", "context": "CREATE TABLE table_13259009_2 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game_site FROM table_13259009_2 WHERE opponent = \"San Diego Chargers\"", "question": "Where did they play the San Diego Chargers?", "context": "CREATE TABLE table_13259009_2 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_13259019_2 WHERE record = \"8-6\"", "question": "How many times during the season were the seahawks 8-6?", "context": "CREATE TABLE table_13259019_2 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_13259019_2 WHERE game_site = \"Milwaukee County Stadium\"", "question": "On what day was the team playing at milwaukee county stadium?", "context": "CREATE TABLE table_13259019_2 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_13259019_2 WHERE game_site = \"Oakland-Alameda County Coliseum\"", "question": "How many times did the team play at oakland-alameda county coliseum?", "context": "CREATE TABLE table_13259019_2 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT title FROM table_13301516_1 WHERE us_viewers__millions_ = \"11.75\"", "question": "Which episode was watched by 11.75 million U.S. viewers?", "context": "CREATE TABLE table_13301516_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_13301516_1 WHERE original_air_date = \"November 13, 2007\"", "question": "How many U.S. viewers, in millions, watched the episode that aired on November 13, 2007?", "context": "CREATE TABLE table_13301516_1 (us_viewers__millions_ VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_13301516_1 WHERE original_air_date = \"April 29, 2008\"", "question": "How many episodes originally aired on April 29, 2008?", "context": "CREATE TABLE table_13301516_1 (no_in_series VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_13301516_1 WHERE no_in_series = 185", "question": "How many millions of U.S. viewers watched episode 185?", "context": "CREATE TABLE table_13301516_1 (us_viewers__millions_ VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT directed_by FROM table_13301516_1 WHERE original_air_date = \"January 15, 2008\"", "question": "Who directed the episode that originally aired on January 15, 2008?", "context": "CREATE TABLE table_13301516_1 (directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_13312864_1 WHERE weight = 95", "question": "How many players weight 95?", "context": "CREATE TABLE table_13312864_1 (player VARCHAR, weight VARCHAR)"}, {"answer": "SELECT MIN(weight) FROM table_13312864_1 WHERE player = \"Enrique de la Fuente\"", "question": "What's Enrique de la Fuente's weight?", "context": "CREATE TABLE table_13312864_1 (weight INTEGER, player VARCHAR)"}, {"answer": "SELECT date_of_election FROM table_1329532_2 WHERE appointed_successor = \"H. Brent Coles\"", "question": "What was the election date for H. Brent Coles?", "context": "CREATE TABLE table_1329532_2 (date_of_election VARCHAR, appointed_successor VARCHAR)"}, {"answer": "SELECT date_of_election FROM table_1329532_2 WHERE elected_successor = \"Arthur Hodges\"", "question": "What was the election date for Arthur Hodges?", "context": "CREATE TABLE table_1329532_2 (date_of_election VARCHAR, elected_successor VARCHAR)"}, {"answer": "SELECT country FROM table_13282157_1 WHERE _number = 8", "question": "What is the country for  # 8", "context": "CREATE TABLE table_13282157_1 (country VARCHAR, _number VARCHAR)"}, {"answer": "SELECT country FROM table_13282157_1 WHERE player = \"Phil Mickelson\"", "question": "what is the country where the player is phil mickelson?", "context": "CREATE TABLE table_13282157_1 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(Reset) AS points FROM table_13282157_1 WHERE events = 23", "question": "What is the highest reset points where the events is 23?", "context": "CREATE TABLE table_13282157_1 (Reset INTEGER, events VARCHAR)"}, {"answer": "SELECT round FROM table_13328239_4 WHERE venue = \"Knowsley Road\" AND result = \"Lose\"", "question": "What round was held at Knowsley Road, resulting in a lose.", "context": "CREATE TABLE table_13328239_4 (round VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_13328239_4 WHERE round = \"QF\"", "question": "What's the score of the QF round?", "context": "CREATE TABLE table_13328239_4 (score VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_13328239_4 WHERE score = \"16-52\"", "question": "How many rounds ended with a score of 16-52?", "context": "CREATE TABLE table_13328239_4 (round VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_13328239_4 WHERE round = \"2\"", "question": "Who was the opponent in round 2?", "context": "CREATE TABLE table_13328239_4 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_13328239_4 WHERE venue = \"Halton Stadium\"", "question": "When was the game happening at Halton Stadium?", "context": "CREATE TABLE table_13328239_4 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_13328239_4 WHERE score = \"38-14\"", "question": "What competition ended with a score of 38-14?", "context": "CREATE TABLE table_13328239_4 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT population FROM table_1333612_1 WHERE country = \"Chile\"", "question": "what's the\u00a0population\u00a0with\u00a0country\u00a0being chile", "context": "CREATE TABLE table_1333612_1 (population VARCHAR, country VARCHAR)"}, {"answer": "SELECT s_mestizo FROM table_1333612_1 WHERE asians = \"0.2%\" AND whites = \"74.8%\"", "question": "what's the\u00a0s mestizo\u00a0with\u00a0asians\u00a0being 0.2% and\u00a0whites\u00a0being 74.8%", "context": "CREATE TABLE table_1333612_1 (s_mestizo VARCHAR, asians VARCHAR, whites VARCHAR)"}, {"answer": "SELECT country FROM table_1333612_1 WHERE es_mulatto = \"3.5%\"", "question": "what's the\u00a0country\u00a0with\u00a0es mulatto\u00a0being 3.5%", "context": "CREATE TABLE table_1333612_1 (country VARCHAR, es_mulatto VARCHAR)"}, {"answer": "SELECT s_mestizo FROM table_1333612_1 WHERE population = 29461933", "question": "what's the\u00a0s mestizo\u00a0with\u00a0population\u00a0being 29461933", "context": "CREATE TABLE table_1333612_1 (s_mestizo VARCHAR, population VARCHAR)"}, {"answer": "SELECT native_american FROM table_1333612_1 WHERE es_mulatto = \"0.7%\"", "question": "what's the\u00a0native american\u00a0with\u00a0es mulatto\u00a0being 0.7%", "context": "CREATE TABLE table_1333612_1 (native_american VARCHAR, es_mulatto VARCHAR)"}, {"answer": "SELECT COUNT(native_american) FROM table_1333612_1 WHERE whites = \"1.0%\"", "question": " how many\u00a0native american\u00a0with\u00a0whites\u00a0being 1.0%", "context": "CREATE TABLE table_1333612_1 (native_american VARCHAR, whites VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_13336122_3 WHERE directed_by = \"David Duchovny\"", "question": "When did the episode directed by David Duchovny originally air?", "context": "CREATE TABLE table_13336122_3 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_13336122_3 WHERE directed_by = \"David Von Ancken\" AND no_in_series > 16.0", "question": "What's the title of the episode directed by David von Ancken, with a episode number bigger than 16.0?", "context": "CREATE TABLE table_13336122_3 (title VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_13336122_3 WHERE directed_by = \"David Duchovny\"", "question": "How many episodes have been directed by David Duchovny?", "context": "CREATE TABLE table_13336122_3 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_13336122_3 WHERE no_in_series = 22", "question": "What's the smallest episode number of an episode whose number in the series is 22?", "context": "CREATE TABLE table_13336122_3 (no_in_season INTEGER, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(us_viewers__million_) FROM table_13336122_6 WHERE no_in_season = 2", "question": "Name the number of shows when there was 2 million views", "context": "CREATE TABLE table_13336122_6 (us_viewers__million_ VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_13336122_5 WHERE written_by = \"Vanessa Reisen\"", "question": "what is the original air date for the episoe written by vanessa reisen?", "context": "CREATE TABLE table_13336122_5 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(completed) FROM table_13397394_1 WHERE building = \"Delta Bessborough\"", "question": "what is the maximum completed for delta bessborough", "context": "CREATE TABLE table_13397394_1 (completed INTEGER, building VARCHAR)"}, {"answer": "SELECT completed FROM table_13397394_1 WHERE address = \"410 22nd St E\"", "question": "what is the maximum completed for address on 410 22nd st e", "context": "CREATE TABLE table_13397394_1 (completed VARCHAR, address VARCHAR)"}, {"answer": "SELECT COUNT(building) FROM table_13397394_1 WHERE address = \"201 1st Avenue South\"", "question": "what is the total number of building for address on 201 1st avenue south", "context": "CREATE TABLE table_13397394_1 (building VARCHAR, address VARCHAR)"}, {"answer": "SELECT building FROM table_13397394_1 WHERE storeys = 12", "question": "what are all the building with 12 storeys", "context": "CREATE TABLE table_13397394_1 (building VARCHAR, storeys VARCHAR)"}, {"answer": "SELECT MIN(storeys) FROM table_13397394_1 WHERE address = \"325 5th Ave N\"", "question": "what is the minimum storeys on 325 5th ave n", "context": "CREATE TABLE table_13397394_1 (storeys INTEGER, address VARCHAR)"}, {"answer": "SELECT region_2 FROM table_1337525_1 WHERE complete_series = \"The Complete Fifth Series\"", "question": "What is the region 2 for the complete fifth series?", "context": "CREATE TABLE table_1337525_1 (region_2 VARCHAR, complete_series VARCHAR)"}, {"answer": "SELECT COUNT(region_4) FROM table_1337525_1 WHERE complete_series = \"The Complete Seventh Series\"", "question": "What is the number of region 4 for the series of the complete seventh series?", "context": "CREATE TABLE table_1337525_1 (region_4 VARCHAR, complete_series VARCHAR)"}, {"answer": "SELECT region_1 FROM table_1337525_1 WHERE region_4 = \"TBA\" AND complete_series = \"The Complete Eighth Series\"", "question": "What is the region 1 where region 4 is tba is the complete eighth series?", "context": "CREATE TABLE table_1337525_1 (region_1 VARCHAR, region_4 VARCHAR, complete_series VARCHAR)"}, {"answer": "SELECT region_4 FROM table_1337525_1 WHERE complete_series = \"The Complete Fifth Series\"", "question": "Name the region 4 for the complete fifth series", "context": "CREATE TABLE table_1337525_1 (region_4 VARCHAR, complete_series VARCHAR)"}, {"answer": "SELECT tries_against FROM table_13399573_3 WHERE won = \"14\"", "question": "How many tries were against when the number won was 14?", "context": "CREATE TABLE table_13399573_3 (tries_against VARCHAR, won VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_13399573_3 WHERE points_against = \"522\"", "question": "What was the number of bonus tries when there were 522 points against?", "context": "CREATE TABLE table_13399573_3 (try_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT COUNT(losing_bonus) FROM table_13399573_3 WHERE tries_for = \"68\"", "question": "How many numbers were listed under losing bonus when there were 68 tries for?", "context": "CREATE TABLE table_13399573_3 (losing_bonus VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT points_for FROM table_13399573_3 WHERE points = \"52\"", "question": "What amount of points for were there when there was 52 points?", "context": "CREATE TABLE table_13399573_3 (points_for VARCHAR, points VARCHAR)"}, {"answer": "SELECT points_against FROM table_13399573_3 WHERE won = \"10\"", "question": "What was the number of points against when the amount won is 10?", "context": "CREATE TABLE table_13399573_3 (points_against VARCHAR, won VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_13399573_3 WHERE \"tries_for\" = \"tries_for\"", "question": "What is listed under try bonus when listed under Tries for is tries for?", "context": "CREATE TABLE table_13399573_3 (try_bonus VARCHAR)"}, {"answer": "SELECT originalairdate FROM table_13403120_1 WHERE repeatairdate_s_ = \"26/01/1969\"", "question": "What is the original date of the repeat air date of 26/01/1969?", "context": "CREATE TABLE table_13403120_1 (originalairdate VARCHAR, repeatairdate_s_ VARCHAR)"}, {"answer": "SELECT repeatairdate_s_ FROM table_13403120_1 WHERE originalairdate = \"22/12/1968\"", "question": "What is the repeat date of the episode that aired 22/12/1968?", "context": "CREATE TABLE table_13403120_1 (repeatairdate_s_ VARCHAR, originalairdate VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_13403120_1 WHERE prodcode = \"30-17\"", "question": "who is the writer of the episode with prod.code 30-17", "context": "CREATE TABLE table_13403120_1 (writer_s_ VARCHAR, prodcode VARCHAR)"}, {"answer": "SELECT COUNT(prodcode) FROM table_13403120_1 WHERE originalairdate = \"01/12/1968\"", "question": "what is the prod.code of the episode with original air date 01/12/1968?", "context": "CREATE TABLE table_13403120_1 (prodcode VARCHAR, originalairdate VARCHAR)"}, {"answer": "SELECT points_against FROM table_13399573_4 WHERE points = \"31\"", "question": "In the 2008/2009 season one team had a season total points of 31,  for that team how many total points were scored against them?", "context": "CREATE TABLE table_13399573_4 (points_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT points_for FROM table_13399573_4 WHERE losing_bonus = \"1\"", "question": "In the 2008/2009 season one team had 1 losing bonus, How many points did that team score that year?", "context": "CREATE TABLE table_13399573_4 (points_for VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT won FROM table_13399573_4 WHERE tries_against = \"47\"", "question": "In the 2008/2009 season one team had 47 tries against, how many games did they win that year?", "context": "CREATE TABLE table_13399573_4 (won VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_13399573_4 WHERE tries_against = \"39\"", "question": "In the 2008/2009 season one team had 39 tries against, how many losing bonuses did they have that year?", "context": "CREATE TABLE table_13399573_4 (losing_bonus VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341395_22 WHERE incumbent = \"Ed Markey\"", "question": "Who were the candidates when ed markey was the incumbent?", "context": "CREATE TABLE table_1341395_22 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1341395_22 WHERE incumbent = \"Mike Capuano\"", "question": "How many times was the incumbent mike capuano", "context": "CREATE TABLE table_1341395_22 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341395_22 WHERE incumbent = \"Barney Frank\"", "question": "Who were the candidates when Barney Frank was the incumbent?", "context": "CREATE TABLE table_1341395_22 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341395_22 WHERE district = \"Massachusetts 3\"", "question": "What was the earliest year someone was first elected from Massachusetts 3", "context": "CREATE TABLE table_1341395_22 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341423_20 WHERE incumbent = \"Albert Wynn\"", "question": "What party did incumbent Albert Wynn belong to? ", "context": "CREATE TABLE table_1341423_20 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1341423_20 WHERE district = \"Maryland 7\"", "question": "What was the result of the election in the Maryland 7 district? ", "context": "CREATE TABLE table_1341423_20 (results VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341423_20 WHERE incumbent = \"Wayne Gilchrest\"", "question": "How many candidates ran in the election where Wayne Gilchrest was the incumbent?", "context": "CREATE TABLE table_1341423_20 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1341423_20 WHERE incumbent = \"Albert Wynn\"", "question": "What were the results in the election where Albert Wynn was the incumbent? ", "context": "CREATE TABLE table_1341423_20 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341423_20 WHERE district = \"Maryland 5\"", "question": "Who were the candidates in the Maryland 5 district election? ", "context": "CREATE TABLE table_1341423_20 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341423_13 WHERE incumbent = \"Henry Hyde\"", "question": "What district is Henry Hyde in", "context": "CREATE TABLE table_1341423_13 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341423_13 WHERE incumbent = \"Luis Gutierrez\"", "question": "What year was Luis Gutierrez election", "context": "CREATE TABLE table_1341423_13 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341423_21 WHERE incumbent = \"Joe Moakley\"", "question": "Which district is Joe Moakley?", "context": "CREATE TABLE table_1341423_21 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341423_21", "question": "What is the lowest first elected?", "context": "CREATE TABLE table_1341423_21 (first_elected INTEGER)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1341423_32 WHERE incumbent = \"John McHugh\"", "question": "Name the first election for john mchugh", "context": "CREATE TABLE table_1341423_32 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1341423_32 WHERE district = \"New York 24\"", "question": "Name the results for district new york 24", "context": "CREATE TABLE table_1341423_32 (results VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341423_32 WHERE incumbent = \"Carolyn McCarthy\"", "question": "Name the district for carolyn mccarthy", "context": "CREATE TABLE table_1341423_32 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341423_32 WHERE district = \"New York 29\"", "question": "Name the number of party for new york 29", "context": "CREATE TABLE table_1341423_32 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341423_22 WHERE first_elected = 1994", "question": "Which party does the incumbent first elected in 1994 belong to?", "context": "CREATE TABLE table_1341423_22 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1341423_22 WHERE incumbent = \"Bart Stupak\"", "question": "How many districts have Bart Stupak as the incumbent?", "context": "CREATE TABLE table_1341423_22 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341423_35 WHERE first_elected = 1972", "question": "Who was elected in 1972", "context": "CREATE TABLE table_1341423_35 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341423_40 WHERE results = \"Re-elected\" AND district = \"South Carolina 3\"", "question": "what is the earliest first elected with the results re-elected in the district south carolina 3?", "context": "CREATE TABLE table_1341423_40 (first_elected INTEGER, results VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341423_40 WHERE incumbent = \"Jim DeMint\"", "question": "what is the party with the incumbent jim demint?", "context": "CREATE TABLE table_1341423_40 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341423_40 WHERE district = \"South Carolina 4\"", "question": "what is the party for the district south carolina 4?", "context": "CREATE TABLE table_1341423_40 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341423_40 WHERE candidates = \"Jim DeMint (R) 80%\"", "question": "what is the party when candidates is jim demint (r) 80%?", "context": "CREATE TABLE table_1341423_40 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341423_40 WHERE incumbent = \"Lindsey Graham\"", "question": "who are the candidates when the incumbent is lindsey graham?", "context": "CREATE TABLE table_1341423_40 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1341423_36 WHERE incumbent = \"Ernest Istook\"", "question": "What was the results when the incumbent was ernest istook?", "context": "CREATE TABLE table_1341423_36 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1341423_36 WHERE district = \"Oklahoma 3\"", "question": "What was the results for the district oklahoma 3?", "context": "CREATE TABLE table_1341423_36 (results VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341423_36 WHERE district = \"Oklahoma 5\"", "question": "How many party were listed for district oklahoma 5?", "context": "CREATE TABLE table_1341423_36 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341423_36 WHERE candidates = \"Ernest Istook (R) 69% Garland McWatters (D) 28%\"", "question": "What is the party when the candidates were ernest istook (r) 69% garland mcwatters (d) 28%?", "context": "CREATE TABLE table_1341423_36 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341423_36 WHERE district = \"Oklahoma 1\"", "question": "when was the first elected for districk oklahoma 1?", "context": "CREATE TABLE table_1341423_36 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT results FROM table_1341423_36 WHERE district = \"Oklahoma 5\"", "question": "What were the results for the district oklahoma 5?", "context": "CREATE TABLE table_1341423_36 (results VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341423_38 WHERE incumbent = \"Bob Brady\"", "question": "How many parties is the incumbent Bob Brady a member of?", "context": "CREATE TABLE table_1341423_38 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341423_38 WHERE incumbent = \"Joe Hoeffel\"", "question": "How many candidates were there in the district won by Joe Hoeffel?", "context": "CREATE TABLE table_1341423_38 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341423_38 WHERE district = \"Pennsylvania 3\"", "question": "Who were the candidates in district Pennsylvania 3?", "context": "CREATE TABLE table_1341423_38 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341423_38 WHERE incumbent = \"Jim Greenwood\"", "question": "What's the first elected year of the district whose incumbent is Jim Greenwood?", "context": "CREATE TABLE table_1341423_38 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1341423_46 WHERE incumbent = \"Norman Sisisky\"", "question": "What was the result of the election featuring incumbent norman sisisky?", "context": "CREATE TABLE table_1341423_46 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341423_49 WHERE first_elected = 1998 AND incumbent = \"Paul Ryan\"", "question": "Who were the candidates in the district first elected in 1998 whose incumbent ended up being Paul Ryan?", "context": "CREATE TABLE table_1341423_49 (candidates VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341423_49 WHERE incumbent = \"Tom Petri\"", "question": "Who ran in the district elections won by Tom Petri?", "context": "CREATE TABLE table_1341423_49 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341423_49 WHERE incumbent = \"Ron Kind\"", "question": "When was the first election in the district whose incumbent is Ron Kind?", "context": "CREATE TABLE table_1341423_49 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341423_43 WHERE district = \"Texas 6\"", "question": "Name the first elected for texas 6 district", "context": "CREATE TABLE table_1341423_43 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341423_43 WHERE district = \"Texas 22\"", "question": "Name the incumbent for texas 22 district", "context": "CREATE TABLE table_1341423_43 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT results FROM table_1341423_9 WHERE district = \"Florida 14\"", "question": "How did the election in the Florida 14 district end?", "context": "CREATE TABLE table_1341423_9 (results VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341423_9 WHERE district = \"Florida 12\"", "question": "Who's the incumbent of Florida 12 district?", "context": "CREATE TABLE table_1341423_9 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341423_9 WHERE district = \"Florida 9\"", "question": "Who is the incumbent of Florida 9?", "context": "CREATE TABLE table_1341423_9 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341453_11 WHERE district = \"Florida 6\"", "question": "Who's the incumbent in Florida 6?", "context": "CREATE TABLE table_1341453_11 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341453_11 WHERE incumbent = \"Bill McCollum\"", "question": "What party does Bill McCollum belong to?", "context": "CREATE TABLE table_1341453_11 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1341453_11 WHERE incumbent = \"Peter Deutsch\"", "question": "What are the results in the county with Peter Deutsch as a candidate?", "context": "CREATE TABLE table_1341453_11 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1341453_11 WHERE incumbent = \"Robert Wexler\"", "question": "How did the election end for Robert Wexler?", "context": "CREATE TABLE table_1341453_11 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341453_22 WHERE district = \"Maryland 6\"", "question": "What party was the winner in the district Maryland 6?", "context": "CREATE TABLE table_1341453_22 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341453_22 WHERE district = \"Maryland 3\"", "question": "Who run for office in district Maryland 3?", "context": "CREATE TABLE table_1341453_22 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341453_22 WHERE party = \"Republican\" AND district = \"Maryland 1\"", "question": "List the candidates in district Maryland 1 where the republican party won.", "context": "CREATE TABLE table_1341453_22 (candidates VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341453_22 WHERE district = \"Maryland 2\"", "question": "When did the elections take place in district Maryland 2?", "context": "CREATE TABLE table_1341453_22 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341453_32 WHERE incumbent = \"Frank LoBiondo\"", "question": "What party is Frank Lobiondo a member of?", "context": "CREATE TABLE table_1341453_32 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341453_32 WHERE incumbent = \"Bill Pascrell\"", "question": "Who were the candidates in the district whose incumbent is Bill Pascrell?", "context": "CREATE TABLE table_1341453_32 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341453_32 WHERE incumbent = \"Jim Saxton\"", "question": "What is the party of the district incumbent Jim Saxton?", "context": "CREATE TABLE table_1341453_32 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341453_34 WHERE incumbent = \"John McHugh\"", "question": "What party is John McHugh a member of?", "context": "CREATE TABLE table_1341453_34 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341453_34 WHERE first_elected = \"1990\"", "question": "What's the party elected in the district that first elected in 1990?", "context": "CREATE TABLE table_1341453_34 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341453_34 WHERE incumbent = \"Ed Towns\"", "question": "What's the first elected year of the district that Ed Towns is an incumbent of?", "context": "CREATE TABLE table_1341453_34 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341453_34 WHERE results = \"Retired Democratic hold\"", "question": "How many elections have resulted in retired democratic hold?", "context": "CREATE TABLE table_1341453_34 (party VARCHAR, results VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341453_34 WHERE first_elected = \"1980\"", "question": "What were the candidates in the district that first elected in 1980?", "context": "CREATE TABLE table_1341453_34 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341453_40 WHERE district = \"Pennsylvania 2\"", "question": "When was Chaka Fattah first elected in the Pennsylvania 2 district? ", "context": "CREATE TABLE table_1341453_40 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341453_40 WHERE first_elected = \"1984\"", "question": "How many incumbents were first elected in 1984? ", "context": "CREATE TABLE table_1341453_40 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341453_40 WHERE incumbent = \"Bud Shuster\"", "question": "When was incumbent Bud Shuster first elected? ", "context": "CREATE TABLE table_1341453_40 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341453_40 WHERE incumbent = \"Mike Doyle\"", "question": "How many candidates ran in the election where Mike Doyle was the incumbent? ", "context": "CREATE TABLE table_1341453_40 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341453_40 WHERE incumbent = \"Tim Holden\"", "question": "Incumbent Tim Holden belonged to what party? ", "context": "CREATE TABLE table_1341453_40 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341453_40 WHERE incumbent = \"Tim Holden\"", "question": "In what district was Tim Holden the incumbent? ", "context": "CREATE TABLE table_1341453_40 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341453_44 WHERE first_elected = 1984", "question": "Which incumbent was first elected in 1984?", "context": "CREATE TABLE table_1341453_44 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341453_44 WHERE district = \"Tennessee 4\"", "question": "When was the incumbent in the Tennessee 4 district first elected? ", "context": "CREATE TABLE table_1341453_44 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341453_44 WHERE district = \"Tennessee 3\"", "question": "Who are the candidates in the Tennessee 3 district election? ", "context": "CREATE TABLE table_1341453_44 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341453_44 WHERE incumbent = \"Bob Clement\"", "question": "What year was Bob Clement first elected? ", "context": "CREATE TABLE table_1341453_44 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341472_11 WHERE incumbent = \"Sam Gibbons\"", "question": "List all the candidates for the seat where the incumbent is Sam Gibbons?", "context": "CREATE TABLE table_1341472_11 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341453_51 WHERE district = \"Wisconsin 4\"", "question": "Who were the candidates in district Wisconsin 4?", "context": "CREATE TABLE table_1341453_51 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341453_51 WHERE first_elected = 1969", "question": "Who's the incumbent in the district that first elected in 1969?", "context": "CREATE TABLE table_1341453_51 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341453_51 WHERE district = \"Wisconsin 5\"", "question": "Who's the incumbent of district Wisconsin 5?", "context": "CREATE TABLE table_1341453_51 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1341453_7 WHERE incumbent = \"Gary Condit\"", "question": "How many districts does gary condit represent?", "context": "CREATE TABLE table_1341453_7 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341453_7 WHERE first_elected = 1974", "question": "What party was first elected in 1974?", "context": "CREATE TABLE table_1341453_7 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_1341453_7 WHERE incumbent = \"Bill Thomas\"", "question": "What district is bill thomas from?", "context": "CREATE TABLE table_1341453_7 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341472_12 WHERE district = \"Georgia 2\"", "question": "Who was the incumbent of district Georgia 2?", "context": "CREATE TABLE table_1341472_12 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341472_12 WHERE incumbent = \"Mac Collins\"", "question": "What district is Mac Collins an incumbent in?", "context": "CREATE TABLE table_1341472_12 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341472_12", "question": "What's the first elected year of the district who's been the last one to do so?", "context": "CREATE TABLE table_1341472_12 (first_elected INTEGER)"}, {"answer": "SELECT candidates FROM table_1341472_12 WHERE incumbent = \"Charlie Norwood\"", "question": "Who were the candidates in the district where Charlie Norwood is the incumbent?", "context": "CREATE TABLE table_1341472_12 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341472_20 WHERE party = \"Republican\" AND incumbent = \"Billy Tauzin\"", "question": "Which result did the Republican have with the incumbent, Billy Tauzin?", "context": "CREATE TABLE table_1341472_20 (result VARCHAR, party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1341472_20 WHERE incumbent = \"Robert Livingston\"", "question": "How many districts was Robert Livingston incumbent in?", "context": "CREATE TABLE table_1341472_20 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341472_20", "question": "What is the first election year listed?", "context": "CREATE TABLE table_1341472_20 (first_elected INTEGER)"}, {"answer": "SELECT result FROM table_1341472_20 WHERE incumbent = \"Richard Baker\"", "question": "List all results in elections with Richard Baker as the incumbent.", "context": "CREATE TABLE table_1341472_20 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341472_49 WHERE district = \"Washington 7\"", "question": " how many\u00a0party\u00a0with\u00a0district being washington 7", "context": "CREATE TABLE table_1341472_49 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341472_49", "question": "what's the latest first elected year", "context": "CREATE TABLE table_1341472_49 (first_elected INTEGER)"}, {"answer": "SELECT result FROM table_1341472_49 WHERE district = \"Washington 7\"", "question": "what's the\u00a0result\u00a0with\u00a0district being washington 7", "context": "CREATE TABLE table_1341472_49 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341472_49 WHERE district = \"Washington 7\"", "question": "what being the minimum\u00a0first elected\u00a0with\u00a0district being washington 7", "context": "CREATE TABLE table_1341472_49 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT result FROM table_1341472_15 WHERE first_elected = \"1948 , 1964\"", "question": "what's the\u00a0result\u00a0for first elected\u00a0in 1948 , 1964", "context": "CREATE TABLE table_1341472_15 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341472_15 WHERE district = \"Illinois 18\"", "question": "what's the\u00a0first elected\u00a0with\u00a0district illinois 18", "context": "CREATE TABLE table_1341472_15 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341472_15 WHERE candidates = \"Jerry Weller (R) 51.77% Clem Balanoff (D) 48.23%\"", "question": "what's the\u00a0party\u00a0with\u00a0candidates\u00a0 jerry weller (r) 51.77% clem balanoff (d) 48.23%", "context": "CREATE TABLE table_1341472_15 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT party FROM table_1341472_15 WHERE first_elected = \"1980\"", "question": "what's the\u00a0party\u00a0for the first elected\u00a0in 1980", "context": "CREATE TABLE table_1341472_15 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_1341472_15 WHERE district = \"Illinois 15\"", "question": "what's the\u00a0result\u00a0with\u00a0district illinois 15", "context": "CREATE TABLE table_1341472_15 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341472_15 WHERE first_elected = \"1948 , 1964\"", "question": "what's the\u00a0total number of candidates for first elected\u00a0in 1948 , 1964", "context": "CREATE TABLE table_1341472_15 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_1341472_34 WHERE first_elected = 1994", "question": "Name thedistrict for 1994", "context": "CREATE TABLE table_1341472_34 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_1341472_34 WHERE district = \"New York 11\"", "question": "Name the result for New York 11", "context": "CREATE TABLE table_1341472_34 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1341472_34 WHERE district = \"New York 11\"", "question": "Name the number of first elected for new york 11", "context": "CREATE TABLE table_1341472_34 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1341472_34 WHERE district = \"New York 1\"", "question": "Name the first elected for new york 1", "context": "CREATE TABLE table_1341472_34 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341472_45 WHERE incumbent = \"Larry Combest\"", "question": "What year was Larry combest elected", "context": "CREATE TABLE table_1341472_45 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341522_36 WHERE incumbent = \"Bill Hefner\"", "question": "To what district does Bill Hefner belong?", "context": "CREATE TABLE table_1341522_36 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT opponent FROM table_1341522_36 WHERE incumbent = \"Bill Hefner\"", "question": "Who ran unsuccessfully against Bill Hefner?", "context": "CREATE TABLE table_1341522_36 (opponent VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(status) FROM table_1341522_36 WHERE incumbent = \"Alex McMillan\"", "question": "How many districts are respresented by Alex McMillan?", "context": "CREATE TABLE table_1341522_36 (status VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341522_13 WHERE incumbent = \"Sanford Bishop\"", "question": "What party is Sanford Bishop a member of?", "context": "CREATE TABLE table_1341522_13 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341522_13 WHERE district = \"Georgia7\"", "question": "What party won in the district Georgia7?", "context": "CREATE TABLE table_1341522_13 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341522_13 WHERE district = \"Georgia5\"", "question": "What's Georgia5's first elected year?", "context": "CREATE TABLE table_1341522_13 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT opponent FROM table_1341522_24 WHERE incumbent = \"Marty Meehan\"", "question": "Who opposed Marty Meehan in each election?", "context": "CREATE TABLE table_1341522_24 (opponent VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT opponent FROM table_1341522_24 WHERE district = \"Massachusetts5\"", "question": "Who are the opponents in Massachusetts5 district?", "context": "CREATE TABLE table_1341522_24 (opponent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341522_24 WHERE district = \"Massachusetts4\"", "question": "What parties are represented in Massachusetts4 district?", "context": "CREATE TABLE table_1341522_24 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341522_24 WHERE district = \"Massachusetts7\"", "question": "Who is the incumbent in district Massachusetts7?", "context": "CREATE TABLE table_1341522_24 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1341549_33 WHERE district = \"New York2\"", "question": " how many\u00a0first elected\u00a0with\u00a0district being new york2", "context": "CREATE TABLE table_1341549_33 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1341549_33 WHERE candidates = \"Eliot L. Engel (D) 85.2% Martin Richman (R) 14.8%\"", "question": " how many\u00a0district with\u00a0candidates\u00a0being eliot l. engel (d) 85.2% martin richman (r) 14.8%", "context": "CREATE TABLE table_1341549_33 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341549_33 WHERE party = \"Democratic\" AND district = \"New York5\"", "question": " how many\u00a0candidates\u00a0with\u00a0party\u00a0being democratic and\u00a0dbeingtrict\u00a0being new york5", "context": "CREATE TABLE table_1341549_33 (candidates VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1341549_33 WHERE result = \"Re-elected\" AND incumbent = \"Gary Ackerman Redistricted from the 7th district\"", "question": " how many\u00a0first elected\u00a0with\u00a0result\u00a0being re-elected and\u00a0incumbent\u00a0being gary ackerman redistricted from the 7th district", "context": "CREATE TABLE table_1341549_33 (first_elected VARCHAR, result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341522_41 WHERE incumbent = \"Ron Klink\"", "question": "What party does ron klink represent?", "context": "CREATE TABLE table_1341522_41 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT opponent FROM table_1341522_41 WHERE incumbent = \"Bud Shuster\"", "question": "Who was in the election that was for incumbent bud shuster's seat?", "context": "CREATE TABLE table_1341522_41 (opponent VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341522_41 WHERE first_elected = 1982", "question": "What district had someone first elected in 1982?", "context": "CREATE TABLE table_1341522_41 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341522_41 WHERE party = \"Republican\" AND first_elected = 1974", "question": "How many republican incumbents first elected in 1974?", "context": "CREATE TABLE table_1341522_41 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT status FROM table_1341522_41 WHERE incumbent = \"William F. Goodling\"", "question": "What was the result of the election where william f. goodling was the incumbent?", "context": "CREATE TABLE table_1341522_41 (status VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341568_34 WHERE incumbent = \"Howard Coble\"", "question": "What party did incumbent Howard Coble belong to?", "context": "CREATE TABLE table_1341568_34 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341568_34 WHERE incumbent = \"Stephen L. Neal\"", "question": "What party did incumbent Stephen L. Neal belong to? ", "context": "CREATE TABLE table_1341568_34 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1341568_34 WHERE party = \"Democratic\" AND elected = 1974", "question": "In how many districts was the democratic incumbent elected in 1974? ", "context": "CREATE TABLE table_1341568_34 (district VARCHAR, party VARCHAR, elected VARCHAR)"}, {"answer": "SELECT MIN(elected) FROM table_1341568_34 WHERE incumbent = \"Martin Lancaster\"", "question": "What year was incumbent Martin Lancaster elected? ", "context": "CREATE TABLE table_1341568_34 (elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341568_24 WHERE elected = 1980", "question": "What are the locations where the year of election is 1980?", "context": "CREATE TABLE table_1341568_24 (district VARCHAR, elected VARCHAR)"}, {"answer": "SELECT district FROM table_1341568_24 WHERE incumbent = \"Vin Weber\"", "question": "What location is Vin Weber from?", "context": "CREATE TABLE table_1341568_24 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341568_44 WHERE incumbent = \"Larry Combest\"", "question": "What is Larry Combest's district?", "context": "CREATE TABLE table_1341568_44 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT status FROM table_1341568_44 WHERE incumbent = \"Charles Stenholm\"", "question": "What is the status of incumbent Charles Stenholm?", "context": "CREATE TABLE table_1341568_44 (status VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341568_6 WHERE district = \"California 34\"", "question": "How many incumbents represent district California 34?", "context": "CREATE TABLE table_1341568_6 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT status FROM table_1341568_6 WHERE party = \"Democratic\" AND elected = \"1989\"", "question": "What is the elected status of the Democratic party in 1989?", "context": "CREATE TABLE table_1341568_6 (status VARCHAR, party VARCHAR, elected VARCHAR)"}, {"answer": "SELECT opponent FROM table_1341568_6 WHERE district = \"California 9\"", "question": "Who are the opponents in district California 9?", "context": "CREATE TABLE table_1341568_6 (opponent VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341568_6 WHERE elected = \"1974\"", "question": "Who are the incumbents elected in 1974?", "context": "CREATE TABLE table_1341568_6 (incumbent VARCHAR, elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341577_36 WHERE first_elected = 1958", "question": "Which incumbent was first elected in 1958?", "context": "CREATE TABLE table_1341577_36 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341577_36 WHERE incumbent = \"Ralph Regula\"", "question": "Who are all the candidates who ran in the district where Ralph Regula is the incumbent?", "context": "CREATE TABLE table_1341577_36 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341577_36 WHERE incumbent = \"Del Latta\"", "question": "Which party does Del Latta belong to?", "context": "CREATE TABLE table_1341577_36 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341577_36 WHERE incumbent = \"Tom Luken\"", "question": "Which party does Tom Luken belong to?", "context": "CREATE TABLE table_1341577_36 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341577_34 WHERE incumbent = \"Tim Valentine\"", "question": "Who were all the candidates when incumbent was Tim Valentine?", "context": "CREATE TABLE table_1341577_34 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341577_22 WHERE first_elected = 1958", "question": "Name the incumbent for first elected 1958", "context": "CREATE TABLE table_1341577_22 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_1341577_22 WHERE first_elected = 1952", "question": "What is the district for 1952?", "context": "CREATE TABLE table_1341577_22 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341577_22 WHERE first_elected = 1974", "question": "What is the incumbent for 1974?", "context": "CREATE TABLE table_1341577_22 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1341577_14 WHERE incumbent = \"Cardiss Collins\"", "question": "To what party does Cardiss Collins belong?", "context": "CREATE TABLE table_1341577_14 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341577_47 WHERE district = \"Virginia 3\"", "question": "Who was the candidate in the Virginia 3 district election? ", "context": "CREATE TABLE table_1341577_47 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1341577_47 WHERE district = \"Virginia 3\"", "question": "What was the result of the election in the Virginia 3 district?", "context": "CREATE TABLE table_1341577_47 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341577_44 WHERE incumbent = \"Lamar S. Smith\"", "question": "Who were the candidates when Lamar S. Smith was incumbent?", "context": "CREATE TABLE table_1341577_44 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341577_44 WHERE incumbent = \"Beau Boulter\"", "question": "What party did Beau Boulter represent?", "context": "CREATE TABLE table_1341577_44 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341577_44 WHERE incumbent = \"Jack Fields\"", "question": "Who were the candidates when Jack Fields was the incumbent?", "context": "CREATE TABLE table_1341577_44 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341577_50 WHERE incumbent = \"Les Aspin\"", "question": "What was the final result for Les Aspin?", "context": "CREATE TABLE table_1341577_50 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341577_50 WHERE first_elected = 1982", "question": "Who were the candidates that ran when Jim Moody was up for reelection after 1982?", "context": "CREATE TABLE table_1341577_50 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1341577_43 WHERE district = \"Tennessee 6\"", "question": "In the district called Tennessee 6, how many in total of first elected are there?", "context": "CREATE TABLE table_1341577_43 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341577_43 WHERE first_elected = 1982", "question": "Which party is associated with the person who was first elected in 1982?", "context": "CREATE TABLE table_1341577_43 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341577_43 WHERE incumbent = \"Bob Clement\"", "question": "How many candidates are listed all together for the incumbent named bob clement?", "context": "CREATE TABLE table_1341577_43 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341577_43 WHERE candidates = \"Bart Gordon (D) 76.5% Wallace Embry (R) 23.5%\"", "question": "What was the results for the candidates listed as bart gordon (d) 76.5% wallace embry (r) 23.5%?", "context": "CREATE TABLE table_1341577_43 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341577_43 WHERE candidates = \"Marilyn Lloyd (D) 57.4% Harold W. Coker (R) 42.6%\"", "question": "Who is the incumbent that is listed with the candidates listed as marilyn lloyd (d) 57.4% harold w. coker (r) 42.6%?", "context": "CREATE TABLE table_1341577_43 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_1341577_43 WHERE candidates = \"Jim Cooper (D) Unopposed\"", "question": "In what district would you find the candidates listed as jim cooper (d) unopposed?", "context": "CREATE TABLE table_1341577_43 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341586_39 WHERE candidates = \"Bud Shuster (R) Unopposed\"", "question": "who is the\u00a0incumbent\u00a0with\u00a0candidates\u00a0being bud shuster (r) unopposed", "context": "CREATE TABLE table_1341586_39 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341586_39 WHERE candidates = \"Tom Ridge (R) 80.9% Joylyn Blackwell (D) 19.1%\"", "question": "who is the\u00a0incumbent\u00a0with\u00a0candidates\u00a0being tom ridge (r) 80.9% joylyn blackwell (d) 19.1%", "context": "CREATE TABLE table_1341586_39 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_1341586_39 WHERE candidates = \"Curt Weldon (R) 61.3% Bill Spingler (D) 38.7%\"", "question": "what's\u00a0district with\u00a0candidates\u00a0being curt weldon (r) 61.3% bill spingler (d) 38.7%", "context": "CREATE TABLE table_1341586_39 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT party FROM table_1341586_39 WHERE district = \"Pennsylvania 21\"", "question": "what's\u00a0party\u00a0with\u00a0district being pennsylvania 21", "context": "CREATE TABLE table_1341586_39 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341586_39 WHERE incumbent = \"Gus Yatron\"", "question": "what is the maximum\u00a0first elected\u00a0with incumbent\u00a0being gus yatron", "context": "CREATE TABLE table_1341586_39 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341586_39 WHERE first_elected = 1972", "question": "what's\u00a0the district with\u00a0first elected\u00a0being 1972", "context": "CREATE TABLE table_1341586_39 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1341586_19 WHERE incumbent = \"Lindy Boggs\"", "question": " how many\u00a0district with\u00a0incumbent\u00a0being lindy boggs", "context": "CREATE TABLE table_1341586_19 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341586_19 WHERE candidates = \"Billy Tauzin (D) Unopposed\"", "question": "what's the\u00a0result\u00a0with\u00a0candidates\u00a0being billy tauzin (d) unopposed", "context": "CREATE TABLE table_1341586_19 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341586_19 WHERE result = \"Retired to run for U. S. Senate Republican hold\"", "question": " how many\u00a0candidates\u00a0with\u00a0result\u00a0being retired to run for u. s. senate republican hold", "context": "CREATE TABLE table_1341586_19 (candidates VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_1341586_19 WHERE district = \"Louisiana 2\"", "question": "what's the\u00a0result\u00a0with\u00a0district being louisiana 2", "context": "CREATE TABLE table_1341586_19 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341586_19 WHERE first_elected = 1977", "question": "who is the the\u00a0candidates\u00a0with\u00a0first elected\u00a0being 1977", "context": "CREATE TABLE table_1341586_19 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_1341586_14 WHERE first_elected = 1980", "question": "What happened to the incombent who was elected in 1980?", "context": "CREATE TABLE table_1341586_14 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_1341586_14 WHERE incumbent = \"Terry L. Bruce\"", "question": "How did the election end for Terry L. Bruce?", "context": "CREATE TABLE table_1341586_14 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341586_36 WHERE incumbent = \"Tony P. Hall\"", "question": "What party was Tony P. Hall affiliated with?", "context": "CREATE TABLE table_1341586_36 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1341586_43 WHERE district = \"Tennessee 2\"", "question": "Name number first elected for tennessee 2?", "context": "CREATE TABLE table_1341586_43 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341586_43 WHERE first_elected = 1964", "question": "Name the candidates  in 1964", "context": "CREATE TABLE table_1341586_43 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341586_44 WHERE incumbent = \"Mac Sweeney\"", "question": "How many districts have Mac Sweeney as incumbent?", "context": "CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341586_44 WHERE incumbent = \"Henry B. Gonzalez\"", "question": "Who are all the candidates vying for Henry B. Gonzalez' seat?", "context": "CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341586_44 WHERE incumbent = \"Albert Bustamante\"", "question": "Name all the candidates vying for Albert Bustamante's seat.", "context": "CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341598_10 WHERE incumbent = \"Michael Bilirakis\"", "question": "In what district was the incumbent Michael Bilirakis? ", "context": "CREATE TABLE table_1341598_10 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341598_10 WHERE first_elected = 1980", "question": "Who is the candidate in election where the incumbent was first elected in 1980? ", "context": "CREATE TABLE table_1341598_10 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1341598_10 WHERE incumbent = \"Charles Edward Bennett\"", "question": "What party does incumbent Charles Edward Bennett belong to? ", "context": "CREATE TABLE table_1341598_10 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341598_10 WHERE district = \"Florida 18\"", "question": "What was the result of the election in the Florida 18 district? ", "context": "CREATE TABLE table_1341598_10 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341598_10 WHERE incumbent = \"Lawrence J. Smith\"", "question": "In what district is the incumbent Lawrence J. Smith? ", "context": "CREATE TABLE table_1341598_10 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341598_36 WHERE incumbent = \"Del Latta\"", "question": "where is the district where the incumbent is del latta?", "context": "CREATE TABLE table_1341598_36 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341598_36 WHERE district = \"Ohio 11\"", "question": "what is the party for district ohio 11?", "context": "CREATE TABLE table_1341598_36 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341598_36 WHERE district = \"Ohio 6\"", "question": "who were the candidates for district ohio 6?", "context": "CREATE TABLE table_1341598_36 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341598_11 WHERE district = \"Georgia 9\"", "question": "What is the party for District Georgia 9?", "context": "CREATE TABLE table_1341598_11 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341598_11 WHERE first_elected = 1980", "question": "Which district shows a first elected of 1980?", "context": "CREATE TABLE table_1341598_11 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1341598_11 WHERE incumbent = \"Wyche Fowler\"", "question": "What is the party for the incumbent Wyche Fowler?", "context": "CREATE TABLE table_1341598_11 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341598_11 WHERE incumbent = \"George Darden\"", "question": "Who are shown as candidates when George Darden is the incumbent?", "context": "CREATE TABLE table_1341598_11 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341598_14 WHERE incumbent = \"Dan Crane\"", "question": "What district has Dan Crane as incumbent?", "context": "CREATE TABLE table_1341598_14 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341598_39 WHERE incumbent = \"Robert W. Edgar\"", "question": "In which district is Robert W. Edgar the incumbent?", "context": "CREATE TABLE table_1341598_39 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341598_39 WHERE incumbent = \"Robert W. Edgar\"", "question": "To which party does Robert W. Edgar belong?", "context": "CREATE TABLE table_1341598_39 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341598_44 WHERE incumbent = \"Jack Hightower\"", "question": "What district is incumbent jack hightower from?", "context": "CREATE TABLE table_1341598_44 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341598_44 WHERE candidates = \"Tom Loeffler (R) 80.6% Joe Sullivan (D) 19.4%\"", "question": "What year were the election results tom loeffler (r) 80.6% joe sullivan (d) 19.4%?", "context": "CREATE TABLE table_1341598_44 (first_elected INTEGER, candidates VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341598_44 WHERE district = \"Texas 22\"", "question": "What incumbent won the district of texas 22?", "context": "CREATE TABLE table_1341598_44 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341604_19 WHERE district = \"Louisiana 1\"", "question": "Who's the incumbent of the Louisiana 1 district?", "context": "CREATE TABLE table_1341604_19 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341604_19 WHERE district = \"Louisiana 4\"", "question": "Who were the candidates in the Louisiana 4 district?", "context": "CREATE TABLE table_1341604_19 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341604_19 WHERE first_elected = 1976", "question": "Who's the incumbent in the district first elected in 1976?", "context": "CREATE TABLE table_1341604_19 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341604_22 WHERE district = \"Massachusetts 2\"", "question": "what's the\u00a0incumbent\u00a0with\u00a0district being massachusetts 2", "context": "CREATE TABLE table_1341604_22 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341604_22 WHERE candidates = \"Silvio Conte (R) Unopposed\"", "question": "what's the\u00a0party\u00a0with\u00a0candidates\u00a0being silvio conte (r) unopposed", "context": "CREATE TABLE table_1341604_22 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341604_22 WHERE incumbent = \"Joseph D. Early\"", "question": "what's the\u00a0first elected\u00a0with\u00a0incumbent\u00a0being joseph d. early", "context": "CREATE TABLE table_1341604_22 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341604_22 WHERE district = \"Massachusetts 3\"", "question": "what's the\u00a0party\u00a0with\u00a0dbeingtrict\u00a0being massachusetts 3", "context": "CREATE TABLE table_1341604_22 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341604_39 WHERE incumbent = \"Bud Shuster\"", "question": "How many candidates won the election in the district whose incumbent is Bud Shuster?", "context": "CREATE TABLE table_1341604_39 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341604_39 WHERE incumbent = \"Gus Yatron\"", "question": "What are the candidates in the district whose incumbent is Gus Yatron?", "context": "CREATE TABLE table_1341604_39 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341604_39 WHERE district = \"Pennsylvania 6\"", "question": "What's the winning party in the Pennsylvania 6 district?", "context": "CREATE TABLE table_1341604_39 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341640_39 WHERE party = \"Republican\"", "question": "What candidate is a member of the Republican party?", "context": "CREATE TABLE table_1341640_39 (candidates VARCHAR, party VARCHAR)"}, {"answer": "SELECT district FROM table_1341640_39 WHERE incumbent = \"Ray Musto\"", "question": "What district is Ray Musto the incumbent of?", "context": "CREATE TABLE table_1341640_39 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341640_39 WHERE incumbent = \"Donald A. Bailey\"", "question": "How many parties does the incumbent Donald A. Bailey a member of?", "context": "CREATE TABLE table_1341640_39 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341640_39 WHERE district = \"Pennsylvania 6\"", "question": "What was the outcome of the election in Pennsylvania 6 district?", "context": "CREATE TABLE table_1341640_39 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341640_43 WHERE incumbent = \"Al Gore\"", "question": "Where was Al Gore elected", "context": "CREATE TABLE table_1341640_43 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341640_43 WHERE first_elected = 1976", "question": "Election results of 1976", "context": "CREATE TABLE table_1341640_43 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341640_26 WHERE district = \"Missouri 1\"", "question": "What was the incumbent for missouri 1?", "context": "CREATE TABLE table_1341640_26 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1341640_14 WHERE first_elected = 1960", "question": "What was the result of the election when someone was first elected in 1960?", "context": "CREATE TABLE table_1341640_14 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341640_14 WHERE incumbent = \"Phil Crane\"", "question": "What year was incumbent phil crane first elected?", "context": "CREATE TABLE table_1341640_14 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341640_14 WHERE first_elected = 1974", "question": "What candidates were featured in the 1974 election?", "context": "CREATE TABLE table_1341640_14 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341663_19 WHERE incumbent = \"Jerry Huckaby\"", "question": "What year was Jerry Huckaby first elected?", "context": "CREATE TABLE table_1341663_19 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341663_19 WHERE incumbent = \"Dave Treen\"", "question": "What other cadidate ran against Dave Treen?", "context": "CREATE TABLE table_1341663_19 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341663_19", "question": "What year was the earliest first elected?", "context": "CREATE TABLE table_1341663_19 (first_elected INTEGER)"}, {"answer": "SELECT district FROM table_1341663_19 WHERE incumbent = \"Dave Treen\"", "question": "What district did Dave Treen serve?", "context": "CREATE TABLE table_1341663_19 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341663_11 WHERE first_elected = 1972", "question": "How many sitting politicians were originally elected in 1972?", "context": "CREATE TABLE table_1341663_11 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1341663_11 WHERE district = \"Georgia 6\"", "question": "In the Georgia 6 district, what is the elected party?", "context": "CREATE TABLE table_1341663_11 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1341663_11 WHERE incumbent = \"Billy Lee Evans\"", "question": "In the race involving Billy Lee Evans as the seated Representative, was he elected again?", "context": "CREATE TABLE table_1341663_11 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341663_11 WHERE incumbent = \"Dawson Mathis\"", "question": "How many parties are there in races involving Dawson Mathis?", "context": "CREATE TABLE table_1341663_11 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341663_44 WHERE party = \"Republican\"", "question": "Which district is republican?", "context": "CREATE TABLE table_1341663_44 (district VARCHAR, party VARCHAR)"}, {"answer": "SELECT result FROM table_1341663_44 WHERE incumbent = \"George H. Mahon\"", "question": "Name the result when the incumbent was george h. mahon", "context": "CREATE TABLE table_1341663_44 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341663_44 WHERE district = \"Texas 3\"", "question": "What was the incumbent of texas 3?", "context": "CREATE TABLE table_1341663_44 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341663_44 WHERE district = \"Texas 19\"", "question": "What was the incumbent for texas 19?", "context": "CREATE TABLE table_1341663_44 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341663_26 WHERE candidates = \"Dick Gephardt (D) 81.9% Lee Buchschacher (R) 18.1%\"", "question": "Which district has candidates is dick gephardt (d) 81.9% lee buchschacher (r) 18.1%?", "context": "CREATE TABLE table_1341663_26 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_1341663_26 WHERE district = \"Missouri 2\"", "question": "What is the result for the district missouri 2?", "context": "CREATE TABLE table_1341663_26 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341663_26 WHERE district = \"Missouri 7\"", "question": "When was the first elected for district missouri 7?", "context": "CREATE TABLE table_1341663_26 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341663_26", "question": "When was the earliest first election?", "context": "CREATE TABLE table_1341663_26 (first_elected INTEGER)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341663_26 WHERE candidates = \"Dick Gephardt (D) 81.9% Lee Buchschacher (R) 18.1%\"", "question": "How many times was the candidates dick gephardt (d) 81.9% lee buchschacher (r) 18.1%?", "context": "CREATE TABLE table_1341663_26 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_1341663_33 WHERE incumbent = \"S. William Green\"", "question": "What district did S. William Green belong to?", "context": "CREATE TABLE table_1341663_33 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341663_33 WHERE party = \"Democratic\" AND first_elected = 1974 AND incumbent = \"Stephen J. Solarz\"", "question": "What district did the Democratic party incumbent Stephen J. Solarz get first elected to in 1974?", "context": "CREATE TABLE table_1341663_33 (district VARCHAR, incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341663_33 WHERE incumbent = \"Stephen J. Solarz\"", "question": "When was Stephen J. Solarz first elected?", "context": "CREATE TABLE table_1341663_33 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341663_33 WHERE incumbent = \"Shirley Chisholm\"", "question": "Who were the candidates when Shirley Chisholm was the incumbent?", "context": "CREATE TABLE table_1341663_33 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341663_6 WHERE incumbent = \"Bob Wilson\"", "question": "What is the district that has Bob Wilson as an incumbent?", "context": "CREATE TABLE table_1341663_6 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1341663_6 WHERE district = \"California 38\"", "question": "How many outcomes were there in the elections in California 38?", "context": "CREATE TABLE table_1341663_6 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341663_6 WHERE incumbent = \"Charles H. Wilson\"", "question": "What district is Charles H. Wilson the incumbent of?", "context": "CREATE TABLE table_1341663_6 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341663_6 WHERE district = \"California 30\"", "question": "What party was the winning one in the elections in the California 30 district?", "context": "CREATE TABLE table_1341663_6 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1341672_6 WHERE candidates = \"Robert L. Leggett (D) 50.2% Albert Dehr (R) 49.8%\"", "question": "How many times did an election feature the result robert l. leggett (d) 50.2% albert dehr (r) 49.8%?", "context": "CREATE TABLE table_1341672_6 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341672_6 WHERE incumbent = \"Mark W. Hannaford\"", "question": "What year was incumbent mark w. hannaford elected?", "context": "CREATE TABLE table_1341672_6 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341672_10 WHERE incumbent = \"Richard Kelly\"", "question": "what is the district where the incumbent is richard kelly?", "context": "CREATE TABLE table_1341672_10 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341672_10 WHERE candidates = \"Robert L. F. Sikes (D) Unopposed\"", "question": "what is the result where the candidates is robert l. f. sikes (d) unopposed?", "context": "CREATE TABLE table_1341672_10 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341672_10 WHERE candidates = \"William V. Chappell, Jr. (D) Unopposed\"", "question": "who is the incumbent where the candidates is william v. chappell, jr. (d) unopposed?", "context": "CREATE TABLE table_1341672_10 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_1341672_10 WHERE incumbent = \"James A. Haley\"", "question": "what is the district where the incumbent is james a. haley?", "context": "CREATE TABLE table_1341672_10 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341672_10 WHERE district = \"Florida 8\"", "question": "who are the candidates where the district is florida 8?", "context": "CREATE TABLE table_1341672_10 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341690_13 WHERE incumbent = \"Sidney R. Yates\"", "question": "what year was the first elected incumbant Sidney R. Yates?", "context": "CREATE TABLE table_1341690_13 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341690_18 WHERE district = \"Louisiana 5\"", "question": "How many incumbents are there in district Louisiana 5?", "context": "CREATE TABLE table_1341690_18 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341690_18 WHERE result = \"Lost renomination Republican gain\"", "question": "How many incumbents resulted in a lost renomination republican gain?", "context": "CREATE TABLE table_1341690_18 (incumbent VARCHAR, result VARCHAR)"}, {"answer": "SELECT district FROM table_1341690_18 WHERE incumbent = \"John Breaux\"", "question": "In which district is the incumbent John Breaux?", "context": "CREATE TABLE table_1341690_18 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341690_18 WHERE candidates = \"Otto Passman (D) Unopposed\"", "question": "What year was Otto Passman (d) unopposed first elected?", "context": "CREATE TABLE table_1341690_18 (first_elected INTEGER, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_1341690_18 WHERE incumbent = \"John Breaux\"", "question": "What were the results when the incumbent was John Breaux?", "context": "CREATE TABLE table_1341690_18 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341690_43 WHERE district = \"Texas 1\"", "question": "Name the candidates for texas 1", "context": "CREATE TABLE table_1341690_43 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341690_43 WHERE district = \"Texas 12\"", "question": "Name the incumbent for district texas 12", "context": "CREATE TABLE table_1341690_43 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341690_43 WHERE district = \"Texas 20\"", "question": "Name the candidates for texas 20", "context": "CREATE TABLE table_1341690_43 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341690_21 WHERE candidates = \"Edward Boland (D) Unopposed\"", "question": "what is the district with the candidates edward boland (d) unopposed?", "context": "CREATE TABLE table_1341690_21 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT party FROM table_1341690_21 WHERE candidates = \"Edward Boland (D) Unopposed\"", "question": "what is the party where the candidates are edward boland (d) unopposed?", "context": "CREATE TABLE table_1341690_21 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT party FROM table_1341690_21 WHERE incumbent = \"Edward Boland\"", "question": "what is the party where the incumbent is edward boland?", "context": "CREATE TABLE table_1341690_21 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341690_21 WHERE candidates = \"Paul Tsongas (D) 60.6% Paul W. Cronin (R) 39.4%\"", "question": "How many times was the candidates paul tsongas (d) 60.6% paul w. cronin (r) 39.4%?", "context": "CREATE TABLE table_1341690_21 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341690_20 WHERE incumbent = \"Goodloe Byron\"", "question": "List all candidates in elections where the incumbent politician is Goodloe Byron.", "context": "CREATE TABLE table_1341690_20 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341690_20 WHERE incumbent = \"Robert Bauman\"", "question": "How many instances are there of party in the situation where Robert Bauman is the incumbent politician?", "context": "CREATE TABLE table_1341690_20 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341690_20 WHERE incumbent = \"Robert Bauman\"", "question": "What is the party of the election in which Robert Bauman is the incumbent?", "context": "CREATE TABLE table_1341690_20 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341690_20 WHERE district = \"Maryland 7\"", "question": "List all results where the voting district is Maryland 7.", "context": "CREATE TABLE table_1341690_20 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1341690_20 WHERE incumbent = \"Robert Bauman\"", "question": "What are all the results where Robert Bauman is the incumbent politician?", "context": "CREATE TABLE table_1341690_20 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341690_35 WHERE incumbent = \"Del Latta\"", "question": "Who were the candidates in the district won by the incumbent Del Latta?", "context": "CREATE TABLE table_1341690_35 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341690_35 WHERE first_elected = 1966", "question": "Who were the candidates in the districts that was first elected in 1966?", "context": "CREATE TABLE table_1341690_35 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341690_5 WHERE district = \"California 10\"", "question": "Who was running for office in the California 10 district?", "context": "CREATE TABLE table_1341690_5 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341690_5 WHERE district = \"California 23\"", "question": "How many parties won the election in the California 23 district?", "context": "CREATE TABLE table_1341690_5 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341690_5 WHERE party = \"Republican\"", "question": "What republican candidate was first elected most recently?", "context": "CREATE TABLE table_1341690_5 (first_elected INTEGER, party VARCHAR)"}, {"answer": "SELECT district FROM table_1341707_12 WHERE first_elected = 1952", "question": "Phillip Landrum was first elected in 1952 from the ninth district of Georgia.", "context": "CREATE TABLE table_1341707_12 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1341707_15 WHERE district = \"Illinois 12\"", "question": "What party did the incumbent from the Illinois 12 district belong to? ", "context": "CREATE TABLE table_1341707_15 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341707_15 WHERE party = \"Democratic\" AND result = \"Re-elected\" AND district = \"Illinois 11\"", "question": "Who was the democratic incumbent in the Illinois 11 district who was re-elected? ", "context": "CREATE TABLE table_1341707_15 (incumbent VARCHAR, district VARCHAR, party VARCHAR, result VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341707_15 WHERE first_elected = \"1964\"", "question": "Which incumbent was first elected in 1964? ", "context": "CREATE TABLE table_1341707_15 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1341707_15 WHERE district = \"Illinois 1\"", "question": "What party did the incumbent from the Illinois 1 district belong to? ", "context": "CREATE TABLE table_1341707_15 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341690_9 WHERE incumbent = \"Don Fuqua\"", "question": "What candidates ran in the election with don fuqua?", "context": "CREATE TABLE table_1341690_9 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341690_9 WHERE candidates = \"Sam M. Gibbons (D) Unopposed\"", "question": "How many incumbent candidates in the election featuring sam m. gibbons (d) unopposed?", "context": "CREATE TABLE table_1341690_9 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341690_9", "question": "What is the last year that someone is first elected?", "context": "CREATE TABLE table_1341690_9 (first_elected INTEGER)"}, {"answer": "SELECT incumbent FROM table_1341690_9 WHERE first_elected = 1940", "question": "Who was the incumbent in 1940?", "context": "CREATE TABLE table_1341690_9 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1341718_14 WHERE incumbent = \"Sidney R. Yates\"", "question": "what is the party when the incumbent is sidney r. yates?", "context": "CREATE TABLE table_1341718_14 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341718_14 WHERE district = \"Illinois 7\"", "question": "what was the year first elected for district illinois 7?", "context": "CREATE TABLE table_1341718_14 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341718_14 WHERE candidates = \"Phil Crane (R) 58.0% Edward A. Warman (D) 42.0%\"", "question": "how many times was the candidates phil crane (r) 58.0% edward a. warman (d) 42.0%?", "context": "CREATE TABLE table_1341718_14 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341718_14 WHERE district = \"Illinois 18\"", "question": "how many times was it the district illinois 18?", "context": "CREATE TABLE table_1341718_14 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341718_14 WHERE incumbent = \"Ed Derwinski\"", "question": "who were the candidates when the incumbent was ed derwinski?", "context": "CREATE TABLE table_1341718_14 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341718_14 WHERE party = \"Republican\" AND candidates = \"Robert H. Michel (R) 66.1% Rosa Lee Fox (D) 33.9%\"", "question": "When was the first elected when the party was republican and the candidate were robert h. michel (r) 66.1% rosa lee fox (d) 33.9%?", "context": "CREATE TABLE table_1341718_14 (first_elected INTEGER, party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341707_45 WHERE district = \"Texas 15\"", "question": "Who is the incumbent in district Texas 15?", "context": "CREATE TABLE table_1341707_45 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341718_44 WHERE incumbent = \"Earle Cabell\"", "question": "Which district elected incumbent Earle Cabell?", "context": "CREATE TABLE table_1341718_44 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341718_44 WHERE incumbent = \"Ray Roberts\"", "question": "What was the result when Ray Roberts was elected?", "context": "CREATE TABLE table_1341718_44 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341738_11", "question": "What is the highest year that a candidate was first elected?", "context": "CREATE TABLE table_1341738_11 (first_elected INTEGER)"}, {"answer": "SELECT candidates FROM table_1341718_36 WHERE incumbent = \"Bill Harsha\"", "question": "Incumbent Bill Harsha was the winner in an election in which the candidates were who?", "context": "CREATE TABLE table_1341718_36 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341738_36 WHERE first_elected = 1954", "question": "What was the party of the first elected candidate in 1954?", "context": "CREATE TABLE table_1341738_36 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1341738_36 WHERE incumbent = \"Donald D. Clancy\"", "question": "How many districts does Donald D. Clancy represent?", "context": "CREATE TABLE table_1341738_36 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341738_34 WHERE incumbent = \"Lawrence H. Fountain\"", "question": "Which party is Lawrence H. Fountain part of?", "context": "CREATE TABLE table_1341738_34 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341738_34 WHERE district = \"North Carolina 8\"", "question": "Who was the first person elected in North Carolina 8?", "context": "CREATE TABLE table_1341738_34 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341738_34 WHERE first_elected = \"1952\" AND party = \"Democratic\"", "question": "who was the candidate elected to the democratic party in 1952?", "context": "CREATE TABLE table_1341738_34 (candidates VARCHAR, first_elected VARCHAR, party VARCHAR)"}, {"answer": "SELECT district FROM table_1341738_19 WHERE incumbent = \"Joe Waggonner\"", "question": "What district did Joe Waggonner belong to?", "context": "CREATE TABLE table_1341738_19 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341738_19 WHERE first_elected = 1940", "question": "What is the name of the incumbent who was first eleccted in 1940?", "context": "CREATE TABLE table_1341738_19 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1341738_6 WHERE incumbent = \"Edwin Reinecke\"", "question": "What party does incumbent edwin reinecke represent?", "context": "CREATE TABLE table_1341738_6 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341738_6 WHERE incumbent = \"Don Edwards\"", "question": "Who were the candidates in the election that featured incumbent don edwards?", "context": "CREATE TABLE table_1341738_6 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341843_15 WHERE district = \"Indiana 4\"", "question": "Who's the incumbent of Indiana 4 district?", "context": "CREATE TABLE table_1341843_15 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341843_15 WHERE first_elected = \"1950\"", "question": "Who's the incumbent of the district with first election held in 1950?", "context": "CREATE TABLE table_1341843_15 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341843_10 WHERE incumbent = \"Charles Edward Bennett Redistricted from 2nd\"", "question": "Who was featured in the election of charles edward bennett redistricted from 2nd?", "context": "CREATE TABLE table_1341843_10 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341865_23 WHERE party = \"Republican\"", "question": "Name the first elected for the republican party", "context": "CREATE TABLE table_1341865_23 (first_elected VARCHAR, party VARCHAR)"}, {"answer": "SELECT district FROM table_1341865_23 WHERE incumbent = \"Philip Philbin\"", "question": "Name the district with philip philbin", "context": "CREATE TABLE table_1341865_23 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341865_23 WHERE incumbent = \"Edward Boland\"", "question": "Name the party with edward boland", "context": "CREATE TABLE table_1341865_23 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341843_44 WHERE first_elected = 1966", "question": "What was the district who had their first elected in 1966?", "context": "CREATE TABLE table_1341843_44 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341843_44 WHERE incumbent = \"Richard C. White\"", "question": "Who was the candidate when the incumbent was Richard C. White?", "context": "CREATE TABLE table_1341843_44 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341865_11 WHERE incumbent = \"Donald Ray Matthews\"", "question": "What district did Donald Ray Matthews belong to?", "context": "CREATE TABLE table_1341865_11 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341865_11 WHERE incumbent = \"Don Fuqua\"", "question": "What party did Don Fuqua belong to?", "context": "CREATE TABLE table_1341865_11 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341865_20 WHERE district = \"Louisiana 5\"", "question": "How many parties won the election in the Louisiana 5 district?", "context": "CREATE TABLE table_1341865_20 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1341865_20 WHERE district = \"Louisiana 4\"", "question": "How many candidates were elected in the Louisiana 4 district?", "context": "CREATE TABLE table_1341865_20 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341865_20 WHERE district = \"Louisiana 7\"", "question": "Who was the winner in the Louisiana 7 district?", "context": "CREATE TABLE table_1341865_20 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341865_44 WHERE district = \"Tennessee 3\"", "question": "what's\u00a0party\u00a0with\u00a0district\u00a0being tennessee 3", "context": "CREATE TABLE table_1341865_44 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341865_44 WHERE district = \"Tennessee 1\"", "question": "how many party\u00a0with\u00a0district being tennessee 1", "context": "CREATE TABLE table_1341865_44 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1341865_44 WHERE district = \"Tennessee 5\"", "question": " how many\u00a0incumbent\u00a0with\u00a0district \u00a0being tennessee 5", "context": "CREATE TABLE table_1341865_44 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341865_44 WHERE district = \"Tennessee 5\"", "question": "what's\u00a0incumbent\u00a0with\u00a0district being tennessee 5", "context": "CREATE TABLE table_1341865_44 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341865_45 WHERE incumbent = \"Jack Brooks\"", "question": "Who ran in the race for Jack Brooks' seat?", "context": "CREATE TABLE table_1341865_45 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341865_34 WHERE incumbent = \"Seymour Halpern\"", "question": "which section did seymour halpern run in", "context": "CREATE TABLE table_1341865_34 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341865_40 WHERE incumbent = \"Albert W. Johnson\"", "question": "What district is incumbent albert w. johnson from?", "context": "CREATE TABLE table_1341865_40 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1341865_40 WHERE incumbent = \"Frank M. Clark\"", "question": "How many times was frank m. clark the incumbent?", "context": "CREATE TABLE table_1341865_40 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341865_40 WHERE incumbent = \"Elmer J. Holland\"", "question": "What district is incumbent elmer j. holland from?", "context": "CREATE TABLE table_1341865_40 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341865_37 WHERE incumbent = \"Frank T. Bow\"", "question": "To which party does Frank T. Bow belong?", "context": "CREATE TABLE table_1341865_37 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341865_37 WHERE incumbent = \"Carl W. Rich\"", "question": "Who ran in the race for the seat of incumbent Carl W. Rich?", "context": "CREATE TABLE table_1341865_37 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341865_37 WHERE incumbent = \"Carl W. Rich\"", "question": "In which district is the incumbent Carl W. Rich?", "context": "CREATE TABLE table_1341865_37 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341884_12 WHERE incumbent = \"Carl Vinson\"", "question": "Name the candidates where incumbent Carl Vinson is?", "context": "CREATE TABLE table_1341884_12 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341884_23 WHERE district = \"Massachusetts 8\"", "question": "Name the candidates for massachusetts 8", "context": "CREATE TABLE table_1341884_23 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341884_19 WHERE result = \"Re-elected\" AND party = \"Republican\"", "question": "What candidates were in the election when a republican was re-elected?", "context": "CREATE TABLE table_1341884_19 (candidates VARCHAR, result VARCHAR, party VARCHAR)"}, {"answer": "SELECT district FROM table_1341884_19 WHERE incumbent = \"Frank Chelf\"", "question": "What district is incumbent frank chelf from?", "context": "CREATE TABLE table_1341884_19 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1341884_20 WHERE incumbent = \"Edwin E. Willis\"", "question": "How many districts represented Edwin E. Willis?", "context": "CREATE TABLE table_1341884_20 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341884_20 WHERE first_elected = 1961", "question": "Who were all the candidates when the first elected year was 1961?", "context": "CREATE TABLE table_1341884_20 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1341884_20 WHERE incumbent = \"Hale Boggs\"", "question": "What party did Hale Boggs belong to?", "context": "CREATE TABLE table_1341884_20 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341884_45 WHERE district = \"Texas 12\"", "question": "what is the political affiliation of the texas 12 district", "context": "CREATE TABLE table_1341884_45 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341884_45 WHERE district = \"Texas 6\"", "question": "how many voted in the texas 6 section", "context": "CREATE TABLE table_1341884_45 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341884_45 WHERE incumbent = \"Ray Roberts\"", "question": "what is the political affiliation of ray roberts", "context": "CREATE TABLE table_1341884_45 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341884_40 WHERE candidates = \"James A. Byrne (D) 59.3% Joseph R. Burns (R) 40.7%\"", "question": "What district featured an election between  james a. byrne (d) 59.3% joseph r. burns (r) 40.7%?", "context": "CREATE TABLE table_1341884_40 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341897_23 WHERE district = \"Massachusetts 6\"", "question": "Name the candidates for massachusetts 6", "context": "CREATE TABLE table_1341897_23 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1341897_23 WHERE district = \"Massachusetts 3\"", "question": "Name the result for massachusetts 3", "context": "CREATE TABLE table_1341897_23 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341897_23 WHERE first_elected = 1942", "question": "Name the candidate first elected in 1942", "context": "CREATE TABLE table_1341897_23 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1341897_23 WHERE district = \"Massachusetts 3\"", "question": "Name the party for massachusetts 3", "context": "CREATE TABLE table_1341897_23 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1341897_3 WHERE incumbent = \"Albert Rains\"", "question": "What district is incumbent albert rains from?", "context": "CREATE TABLE table_1341897_3 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341897_3 WHERE incumbent = \"Kenneth A. Roberts\"", "question": "How many candidates represent the district of kenneth a. roberts?", "context": "CREATE TABLE table_1341897_3 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341897_6 WHERE district = \"Arkansas 2\"", "question": "Who was the incumbent in the Arkansas 2 district election? ", "context": "CREATE TABLE table_1341897_6 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341897_6 WHERE district = \"Arkansas 5\"", "question": "When was Dale Alford first elected in the Arkansas 5 district? ", "context": "CREATE TABLE table_1341897_6 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341897_6 WHERE district = \"Arkansas 3\"", "question": "When was James William Trimble first elected in the Arkansas 3 district? ", "context": "CREATE TABLE table_1341897_6 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341897_6 WHERE district = \"Arkansas 5\"", "question": "When party did the incumbent in the Arkansas 5 district belong to? ", "context": "CREATE TABLE table_1341897_6 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1341897_6 WHERE district = \"Arkansas 5\"", "question": "What was the result in the Arkansas 5 district election? ", "context": "CREATE TABLE table_1341897_6 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341897_6 WHERE district = \"Arkansas 2\"", "question": "What party did the incumbent in the Arkansas 2 district belong to? ", "context": "CREATE TABLE table_1341897_6 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341897_42 WHERE incumbent = \"William Jennings Bryan Dorn\"", "question": "How many candidates were there in the election for William Jennings Bryan Dorn's seat?", "context": "CREATE TABLE table_1341897_42 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1341897_42", "question": "What is the earliest year that a candidate was first elected?", "context": "CREATE TABLE table_1341897_42 (first_elected INTEGER)"}, {"answer": "SELECT result FROM table_1341897_45 WHERE incumbent = \"Lindley Beckworth\"", "question": "What was the result of the election in which Lindley Beckworth was the incumbent?", "context": "CREATE TABLE table_1341897_45 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341897_45 WHERE first_elected = 1936", "question": "Which incumbent was first elected in 1936? ", "context": "CREATE TABLE table_1341897_45 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_1341897_45 WHERE incumbent = \"Walter E. Rogers\"", "question": "What was the result of the election in which Walter E. Rogers was the incumbent? ", "context": "CREATE TABLE table_1341897_45 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341930_10 WHERE incumbent = \"Paul Rogers\"", "question": "When was Paul Rogers first elected?", "context": "CREATE TABLE table_1341930_10 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341930_10 WHERE incumbent = \"James A. Haley\"", "question": "Which district is James A. Haley from?", "context": "CREATE TABLE table_1341930_10 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341930_10", "question": "What year were the latest elections?", "context": "CREATE TABLE table_1341930_10 (first_elected INTEGER)"}, {"answer": "SELECT district FROM table_1341930_24 WHERE incumbent = \"John Bell Williams\"", "question": "In what district is the incumbent John Bell Williams?", "context": "CREATE TABLE table_1341930_24 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341930_24 WHERE incumbent = \"John Bell Williams\"", "question": "In what year was John Bell Williams first elected?", "context": "CREATE TABLE table_1341930_24 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1341930_24 WHERE incumbent = \"W. Arthur Winstead\"", "question": "How many districts have W. Arthur Winstead as elected official?", "context": "CREATE TABLE table_1341930_24 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1341930_11 WHERE incumbent = \"Carl Vinson\"", "question": "What is the district for carl vinson?", "context": "CREATE TABLE table_1341930_11 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341930_11 WHERE incumbent = \"James C. Davis\"", "question": "What is the most first elected for james c. davis?", "context": "CREATE TABLE table_1341930_11 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1341930_11 WHERE district = \"Georgia 4\"", "question": "What is the first elected for georgia 4?", "context": "CREATE TABLE table_1341930_11 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1341930_18 WHERE incumbent = \"Edwin E. Willis\"", "question": "which affiliation does edwin e. willis affiliate with", "context": "CREATE TABLE table_1341930_18 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1341930_18 WHERE incumbent = \"James H. Morrison\"", "question": "which affiliation is james h. morrison part of", "context": "CREATE TABLE table_1341930_18 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341973_11 WHERE first_elected = 1914", "question": "Who is the candidate that was first elected in 1914?", "context": "CREATE TABLE table_1341973_11 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_1341973_11 WHERE incumbent = \"Carl Vinson\"", "question": "In which district is the incumbent Carl Vinson?", "context": "CREATE TABLE table_1341973_11 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1341930_40 WHERE incumbent = \"L. Mendel Rivers\"", "question": "Name the candidates for l. mendel rivers", "context": "CREATE TABLE table_1341930_40 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341930_40 WHERE district = \"South Carolina 4\"", "question": "Name the result for south carolina 4", "context": "CREATE TABLE table_1341930_40 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341930_40 WHERE district = \"South Carolina 3\"", "question": "Name the candidates for south carolina 3", "context": "CREATE TABLE table_1341930_40 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341930_40 WHERE first_elected = 1956", "question": "Name the incumbent for first elected 1956", "context": "CREATE TABLE table_1341930_40 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341930_5 WHERE incumbent = \"James William Trimble\"", "question": "Name the number of party with the incubent james william trimble", "context": "CREATE TABLE table_1341930_5 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1341930_5 WHERE first_elected = 1944", "question": "What is the result for first elected in 1944", "context": "CREATE TABLE table_1341930_5 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1341930_5 WHERE district = \"Arkansas 1\"", "question": "What is the number of party in the arkansas 1 district", "context": "CREATE TABLE table_1341930_5 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1341973_3 WHERE district = \"Alabama 6\"", "question": "Who is the incumbent in the Alabama 6 voting district?", "context": "CREATE TABLE table_1341973_3 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341973_3 WHERE incumbent = \"Frank W. Boykin\"", "question": "Which candidates were in the election where Frank W. Boykin was an incumbent?", "context": "CREATE TABLE table_1341973_3 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341973_3 WHERE incumbent = \"George M. Grant\"", "question": "Who were the candidates in the election where the incumbent is George M. Grant?", "context": "CREATE TABLE table_1341973_3 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1341973_3 WHERE district = \"Alabama 6\"", "question": "Which candidates ran in the Alabama 6 district?", "context": "CREATE TABLE table_1341973_3 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1341973_3 WHERE district = \"Alabama 4\"", "question": "What is the latest year listed with the Alabama 4 voting district?", "context": "CREATE TABLE table_1341973_3 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342013_12 WHERE incumbent = \"Fred E. Busbey\"", "question": "What was the result when incumbent Fred E. Busbey was elected?", "context": "CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1342013_12 WHERE incumbent = \"Noah M. Mason\"", "question": "How many results are listed for the election where Noah M. Mason was elected?", "context": "CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342013_12 WHERE incumbent = \"Leo E. Allen\"", "question": "What was the result when Leo E. Allen was elected?", "context": "CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342013_10 WHERE first_elected = 1914", "question": "Which party had a person who has been in the seat since 1914?", "context": "CREATE TABLE table_1342013_10 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342013_10 WHERE incumbent = \"Prince Hulon Preston, Jr.\"", "question": "Name all the candidates listed in the race where the incumbent is Prince Hulon Preston, Jr.", "context": "CREATE TABLE table_1342013_10 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342013_10 WHERE incumbent = \"J. L. Pilcher\"", "question": "How many candidates ran in the race where the incumbent is J. L. Pilcher?", "context": "CREATE TABLE table_1342013_10 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1342013_20 WHERE incumbent = \"John W. Heselton\"", "question": "John W. Heselton was first elected in what year?", "context": "CREATE TABLE table_1342013_20 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342013_20 WHERE incumbent = \"Thomas J. Lane\"", "question": "Thomas J. Lane is the incumbent of how many parties?", "context": "CREATE TABLE table_1342013_20 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342013_20 WHERE first_elected = 1944", "question": "Who is the incumbent first elected in 1944?", "context": "CREATE TABLE table_1342013_20 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_1342013_20 WHERE first_elected = 1942", "question": "What was the result for the politician first elected in 1942?", "context": "CREATE TABLE table_1342013_20 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_1342013_34 WHERE district = \"Ohio 2\"", "question": "what's the result for district ohio 2", "context": "CREATE TABLE table_1342013_34 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342013_34 WHERE candidates = \"John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%\"", "question": "who is the the\u00a0incumbent\u00a0with\u00a0candidates\u00a0being john m. vorys (r) 61.5% jacob f. myers (d) 38.5%", "context": "CREATE TABLE table_1342013_34 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342013_34 WHERE district = \"Ohio 2\"", "question": "who is the the\u00a0incumbent\u00a0with\u00a0district being ohio 2", "context": "CREATE TABLE table_1342013_34 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342013_34 WHERE incumbent = \"William H. Ayres\"", "question": "what's the\u00a0result\u00a0with\u00a0incumbent\u00a0being william h. ayres", "context": "CREATE TABLE table_1342013_34 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342013_34 WHERE candidates = \"John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%\"", "question": " how many\u00a0party\u00a0with\u00a0candidates\u00a0being john m. vorys (r) 61.5% jacob f. myers (d) 38.5%", "context": "CREATE TABLE table_1342013_34 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_1342013_4 WHERE incumbent = \"Brooks Hays\"", "question": "what district is Brooks Hays in", "context": "CREATE TABLE table_1342013_4 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342013_42 WHERE incumbent = \"Omar Burleson\"", "question": "Omar Burleson was the incumbent in what district? ", "context": "CREATE TABLE table_1342013_42 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342013_42 WHERE first_elected = 1938", "question": "In what district was incumbent first elected in 1938? ", "context": "CREATE TABLE table_1342013_42 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1342013_37 WHERE district = \"Pennsylvania 25\"", "question": "Name the party for the pennsylvania 25", "context": "CREATE TABLE table_1342013_37 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1342013_37 WHERE incumbent = \"Alvin Bush\"", "question": "Name the minumim first elected for alvin bush", "context": "CREATE TABLE table_1342013_37 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342013_37 WHERE district = \"Pennsylvania 15\"", "question": "What is the incumbent for pennsylvania 15", "context": "CREATE TABLE table_1342013_37 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342149_13 WHERE incumbent = \"Noah M. Mason\"", "question": "What are the candidates for noah m. mason?", "context": "CREATE TABLE table_1342149_13 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342149_13 WHERE incumbent = \"Fred E. Busbey\"", "question": "What is the candidates for fred e. busbey?", "context": "CREATE TABLE table_1342149_13 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342149_13 WHERE first_elected = 1932", "question": "What is the incumbent for 1932?", "context": "CREATE TABLE table_1342149_13 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342013_9 WHERE incumbent = \"Charles Edward Bennett\"", "question": " how many\u00a0first elected\u00a0with\u00a0incumbent\u00a0being charles edward bennett", "context": "CREATE TABLE table_1342013_9 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342013_9 WHERE district = \"Florida 2\"", "question": "who is the the\u00a0incumbent\u00a0with\u00a0dbeingtrict\u00a0being florida 2", "context": "CREATE TABLE table_1342013_9 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342013_9 WHERE candidates = \"Charles Edward Bennett (D) Unopposed\"", "question": "what's the\u00a0result\u00a0with\u00a0candidates\u00a0being charles edward bennett (d) unopposed", "context": "CREATE TABLE table_1342013_9 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_1342013_9 WHERE district = \"Florida 4\"", "question": "what's the\u00a0result\u00a0with\u00a0dbeingtrict\u00a0being florida 4", "context": "CREATE TABLE table_1342013_9 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342013_9 WHERE candidates = \"Charles Edward Bennett (D) Unopposed\"", "question": " how many\u00a0party\u00a0with\u00a0candidates\u00a0being charles edward bennett (d) unopposed", "context": "CREATE TABLE table_1342013_9 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342013_9 WHERE incumbent = \"William C. Lantaff\"", "question": " how many\u00a0first elected\u00a0with\u00a0incumbent\u00a0being william c. lantaff", "context": "CREATE TABLE table_1342013_9 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342149_11 WHERE incumbent = \"Tic Forrester\"", "question": "What was the result of the election when Tic Forrester ran as an incumbent?", "context": "CREATE TABLE table_1342149_11 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342013_5 WHERE incumbent = \"Craig Hosmer\"", "question": "What was the final result for Craig Hosmer?", "context": "CREATE TABLE table_1342013_5 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342013_5 WHERE incumbent = \"Harlan Hagen\"", "question": "What district does Harlan Hagen represent?", "context": "CREATE TABLE table_1342013_5 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342149_18 WHERE district = \"Louisiana 2\"", "question": "Who was the candidate in the election in the Louisiana 2 district? ", "context": "CREATE TABLE table_1342149_18 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342149_18 WHERE result = \"Re-elected\" AND district = \"Louisiana 5\"", "question": "What candidate was re-elected in the Louisiana 5 district? ", "context": "CREATE TABLE table_1342149_18 (candidates VARCHAR, result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342149_18 WHERE result = \"Re-elected\" AND district = \"Louisiana 6\"", "question": "What party's candidate was re-elected in the Louisiana 6 district?", "context": "CREATE TABLE table_1342149_18 (party VARCHAR, result VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342149_18 WHERE incumbent = \"Hale Boggs\"", "question": "What was the result in the election where Hale Boggs was the incumbent? ", "context": "CREATE TABLE table_1342149_18 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342149_24 WHERE district = \"Mississippi 2\"", "question": "Name the result for mississippi 2", "context": "CREATE TABLE table_1342149_24 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342149_24 WHERE first_elected = 1941", "question": "Name the number of candidates for 1941", "context": "CREATE TABLE table_1342149_24 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342149_24 WHERE result = \"Lost renomination Democratic loss\"", "question": "Name the candidates for result of lost renomination democratic loss", "context": "CREATE TABLE table_1342149_24 (candidates VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_1342149_24 WHERE first_elected = 1920", "question": "Name the result for first elected of 1920", "context": "CREATE TABLE table_1342149_24 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1342149_42 WHERE district = \"Tennessee 7\"", "question": "In the District Tennessee 7 what is the number of first elected?", "context": "CREATE TABLE table_1342149_42 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342149_42 WHERE candidates = \"Tom J. Murray (D) Unopposed\"", "question": "What is the candidates  result that is tom j. murray (d) unopposed?", "context": "CREATE TABLE table_1342149_42 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342149_42 WHERE party = \"Republican\"", "question": "For the Republican party what are the names of the incumbents?", "context": "CREATE TABLE table_1342149_42 (incumbent VARCHAR, party VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342149_42 WHERE candidates = \"Howard Baker, Sr. (R) 68.9% Boyd W. Cox (D) 31.1%\"", "question": "How many parties match the canididates listed as howard baker, sr. (r) 68.9% boyd w. cox (d) 31.1%?", "context": "CREATE TABLE table_1342149_42 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_1342149_38 WHERE incumbent = \"Paul B. Dague\"", "question": "Which district had Paul B. Dague as the incumbent?", "context": "CREATE TABLE table_1342149_38 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342149_43 WHERE first_elected = \"1942\"", "question": "What was the result in the election where the incumbent was first elected in 1942? ", "context": "CREATE TABLE table_1342149_43 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_1342149_43 WHERE district = \"Texas 3\"", "question": "What was the result of the election in the Texas 3 district? ", "context": "CREATE TABLE table_1342149_43 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342149_43 WHERE incumbent = \"Wright Patman\"", "question": "What party did incumbent Wright Patman belong to? ", "context": "CREATE TABLE table_1342149_43 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342149_43 WHERE district = \"Texas 4\"", "question": "What was the result of the election in the Texas 4 district? ", "context": "CREATE TABLE table_1342149_43 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342149_43 WHERE result = \"Re-elected\" AND district = \"Texas 11\"", "question": "What party did the re-elected incumbent of the Texas 11 district belong to?", "context": "CREATE TABLE table_1342149_43 (party VARCHAR, result VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342149_6 WHERE district = \"California 22\"", "question": "List all those first elected in the California 22 voting district.", "context": "CREATE TABLE table_1342149_6 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342149_6 WHERE first_elected = \"1946\"", "question": "Who was the first elected incumbent in the 1946 election?", "context": "CREATE TABLE table_1342149_6 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1342149_6 WHERE district = \"California 29\"", "question": "How many results does the California 29 voting district have?", "context": "CREATE TABLE table_1342149_6 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342149_6 WHERE incumbent = \"Clair Engle\"", "question": "Which party had Clair Engle as an incumbent?", "context": "CREATE TABLE table_1342149_6 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342198_13 WHERE incumbent = \"Sid Simpson\"", "question": "What party does sid simpson represent?", "context": "CREATE TABLE table_1342198_13 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342198_13 WHERE incumbent = \"Barratt O'Hara\"", "question": "How many candidates ran against barratt o'hara?", "context": "CREATE TABLE table_1342198_13 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342198_13 WHERE incumbent = \"Barratt O'Hara\"", "question": "What year was incumbent barratt o'hara first elected?", "context": "CREATE TABLE table_1342198_13 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1342198_17 WHERE incumbent = \"Noble Jones Gregory\"", "question": "How many results for minimum first elected incumbent Noble Jones Gregory?", "context": "CREATE TABLE table_1342198_17 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342198_17 WHERE incumbent = \"Noble Jones Gregory\"", "question": "How many results for incumbent Noble Jones Gregory?", "context": "CREATE TABLE table_1342198_17 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342198_18 WHERE district = \"Louisiana 1\"", "question": "Who is the candidate wehre district is louisiana 1?", "context": "CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342198_18 WHERE incumbent = \"Overton Brooks\"", "question": "What is the party where the incumbent is overton brooks?", "context": "CREATE TABLE table_1342198_18 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342198_18 WHERE district = \"Louisiana 2\"", "question": "who athe party where district is louisiana 2?", "context": "CREATE TABLE table_1342198_18 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342198_18 WHERE district = \"Louisiana 3\"", "question": "who is the candidate where district is louisiana 3?", "context": "CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1342198_18 WHERE district = \"Louisiana 5\"", "question": "what is the minimum number first elected to district louisiana 5?", "context": "CREATE TABLE table_1342198_18 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342198_36 WHERE incumbent = \"Tom Steed\"", "question": "What was the result when incumbent Tom Steed was elected?", "context": "CREATE TABLE table_1342198_36 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342198_38 WHERE incumbent = \"Hardie Scott\"", "question": "What was the candidates for hardie scott", "context": "CREATE TABLE table_1342198_38 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342198_38 WHERE district = \"Pennsylvania 3\"", "question": "What is the number of candidates for pennsylvania 3", "context": "CREATE TABLE table_1342198_38 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342198_38 WHERE district = \"Pennsylvania 21\"", "question": "What is the number of candidates for pennsylvania 21", "context": "CREATE TABLE table_1342198_38 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342198_38 WHERE first_elected = 1948 AND incumbent = \"William T. Granahan\"", "question": "What is the party for first elected 1948 for william t. granahan", "context": "CREATE TABLE table_1342198_38 (party VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342198_6 WHERE incumbent = \"Cecil R. King\"", "question": "How many candidates were there in the race where Cecil R. King is the incumbent?", "context": "CREATE TABLE table_1342198_6 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342198_6 WHERE first_elected = 1944", "question": "How many districts have an incumbent first elected in 1944?", "context": "CREATE TABLE table_1342198_6 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342218_13 WHERE district = \"Illinois 17\"", "question": "Who was the incumbent in the Illinois 17 district?", "context": "CREATE TABLE table_1342218_13 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342218_24 WHERE incumbent = \"Thomas Abernethy\"", "question": "How many people on this list are named thomas abernethy?", "context": "CREATE TABLE table_1342218_24 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342218_24 WHERE incumbent = \"W. Arthur Winstead\"", "question": "How many times was w. arthur winstead first elected?", "context": "CREATE TABLE table_1342218_24 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342218_24 WHERE incumbent = \"William M. Colmer\"", "question": "How many times was william m. colmer winstead first elected?", "context": "CREATE TABLE table_1342218_24 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342218_24 WHERE incumbent = \"Jamie L. Whitten\"", "question": "What was the result of the election with jamie l. whitten?", "context": "CREATE TABLE table_1342218_24 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342218_35 WHERE result = \"Re-elected\" AND first_elected = 1942", "question": "What candidate was re-elected and was first elected in 1942? ", "context": "CREATE TABLE table_1342218_35 (candidates VARCHAR, result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342218_35 WHERE district = \"Ohio 9\"", "question": "Who are the candidates in the election in the Ohio 9 district? ", "context": "CREATE TABLE table_1342218_35 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1342218_35 WHERE incumbent = \"Michael A. Feighan\"", "question": "What year was incumbent Michael A. Feighan first elected? ", "context": "CREATE TABLE table_1342218_35 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342218_35 WHERE district = \"Ohio 5\"", "question": "What party does the incumbent from the Ohio 5 district belong to? ", "context": "CREATE TABLE table_1342218_35 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342218_35 WHERE district = \"Ohio 20\"", "question": "What party does the incumbent from the Ohio 20 district belong to? ", "context": "CREATE TABLE table_1342218_35 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342218_35 WHERE district = \"Ohio 7\"", "question": "What party does the incumbent from the Ohio 7 district belong to? ", "context": "CREATE TABLE table_1342218_35 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342218_5 WHERE district = \"Arkansas 2\"", "question": "Who is the candidate for the district Arkansas 2?", "context": "CREATE TABLE table_1342218_5 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1342218_5 WHERE result = \"Re-elected\" AND incumbent = \"Wilbur Mills\"", "question": "Which district has the incumbent Wilbur Mills and a re-elected result?", "context": "CREATE TABLE table_1342218_5 (district VARCHAR, result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342218_43 WHERE district = \"Texas 2\"", "question": "What year was first-elected for the row of Texas 2?", "context": "CREATE TABLE table_1342218_43 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342218_43 WHERE incumbent = \"Milton H. West\"", "question": "What was the result for the incumbent Milton H. West?", "context": "CREATE TABLE table_1342218_43 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342218_43 WHERE district = \"Texas 2\"", "question": "What party is associated with Texas 2?", "context": "CREATE TABLE table_1342218_43 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342218_43 WHERE result = \"Retired to run for U.S. Senate Democratic hold\"", "question": "When the result is retired to run for U.S. Senate Democratic Hold, who is the candidate?", "context": "CREATE TABLE table_1342218_43 (candidates VARCHAR, result VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342218_43 WHERE result = \"Re-elected\" AND district = \"Texas 7\"", "question": "What candidate has a result of being re-elected in the Texas 7 District?", "context": "CREATE TABLE table_1342218_43 (candidates VARCHAR, result VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342233_11 WHERE candidates = \"Albert Sidney Camp (D) Unopposed\"", "question": "Which party is associated with the candidate Albert Sidney Camp (D) unopposed?", "context": "CREATE TABLE table_1342233_11 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342233_11 WHERE incumbent = \"Carl Vinson\"", "question": "Which district is associated with the incumbent Carl Vinson?", "context": "CREATE TABLE table_1342233_11 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342233_11 WHERE district = \"Georgia 7\"", "question": "Which candidates are associated with the Georgia 7 district?", "context": "CREATE TABLE table_1342233_11 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342233_11 WHERE district = \"Georgia 4\"", "question": "What candidate is associated with the Georgia 4 district?", "context": "CREATE TABLE table_1342233_11 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342233_17 WHERE incumbent = \"Joe B. Bates\"", "question": "What year was incumbent joe b. bates first elected?", "context": "CREATE TABLE table_1342233_17 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342233_17 WHERE incumbent = \"Virgil Chapman\"", "question": "What party is incumbent virgil chapman from?", "context": "CREATE TABLE table_1342233_17 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342218_6 WHERE incumbent = \"Clair Engle\"", "question": "What year was clair engle first elected?", "context": "CREATE TABLE table_1342218_6 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342218_6 WHERE first_elected = 1943", "question": "what is the result of the first elected is 1943?", "context": "CREATE TABLE table_1342218_6 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1342233_3 WHERE incumbent = \"Albert Rains\"", "question": "what the the end number where albert rains was running", "context": "CREATE TABLE table_1342233_3 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342233_3 WHERE incumbent = \"Frank W. Boykin\"", "question": "what the was the final in which frank w. boykin was running", "context": "CREATE TABLE table_1342233_3 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342233_32 WHERE incumbent = \"Sol Bloom\"", "question": "Name the total number of first elected for sol bloom", "context": "CREATE TABLE table_1342233_32 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342233_32 WHERE incumbent = \"Ellsworth B. Buck\"", "question": "Name the candidates for ellsworth b. buck", "context": "CREATE TABLE table_1342233_32 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342233_32 WHERE district = \"New York 35\"", "question": "What are the candidates for new york 35?", "context": "CREATE TABLE table_1342233_32 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342233_32 WHERE district = \"New York 20\"", "question": "What is the party for new york 20?", "context": "CREATE TABLE table_1342233_32 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342233_43 WHERE candidates = \"R. Ewing Thomason (D) Unopposed\"", "question": "What was the result of the election featuring r. ewing thomason (d) unopposed?", "context": "CREATE TABLE table_1342233_43 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_1342233_43 WHERE incumbent = \"Eugene Worley\"", "question": "What district is eugene worley from?", "context": "CREATE TABLE table_1342233_43 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1342233_6 WHERE candidates = \"Richard J. Welch (R) Unopposed\"", "question": " how many\u00a0result\u00a0with\u00a0candidates\u00a0being richard j. welch (r) unopposed", "context": "CREATE TABLE table_1342233_6 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_1342233_6 WHERE incumbent = \"Jack Z. Anderson\"", "question": "what's the\u00a0result\u00a0with\u00a0incumbent\u00a0being jack z. anderson", "context": "CREATE TABLE table_1342233_6 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342233_6 WHERE result = \"Re-elected\" AND candidates = \"Clarence F. Lea (D) Unopposed\"", "question": "what's the\u00a0district with\u00a0result\u00a0being re-elected and\u00a0candidates\u00a0being clarence f. lea (d) unopposed", "context": "CREATE TABLE table_1342233_6 (district VARCHAR, result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342233_6 WHERE incumbent = \"Clair Engle\"", "question": "what's the\u00a0first elected\u00a0with\u00a0incumbent\u00a0being clair engle", "context": "CREATE TABLE table_1342233_6 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342233_6 WHERE incumbent = \"Alfred J. Elliott\"", "question": "who is the the\u00a0candidates\u00a0with\u00a0incumbent\u00a0being alfred j. elliott", "context": "CREATE TABLE table_1342233_6 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342233_6 WHERE candidates = \"Jack Z. Anderson (R) Unopposed\"", "question": "who is the the\u00a0incumbent\u00a0with\u00a0candidates\u00a0being jack z. anderson (r) unopposed", "context": "CREATE TABLE table_1342233_6 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342249_11 WHERE incumbent = \"Carl Vinson\"", "question": "How many parties does incumbent carl vinson represent?", "context": "CREATE TABLE table_1342249_11 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342249_11 WHERE incumbent = \"Stephen Pace\"", "question": "How many parties does incumbent stephen pace represent?", "context": "CREATE TABLE table_1342249_11 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342249_13 WHERE incumbent = \"Noah M. Mason\"", "question": "Who were the candidates when Noah M. Mason was incumbent?", "context": "CREATE TABLE table_1342249_13 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342249_13 WHERE incumbent = \"Leo E. Allen\"", "question": "In what year was Leo E. Allen first elected?", "context": "CREATE TABLE table_1342249_13 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342249_13 WHERE incumbent = \"Sid Simpson\"", "question": "Who were the candidates when Sid Simpson was the incumbent?", "context": "CREATE TABLE table_1342249_13 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342256_10 WHERE incumbent = \"Robert L. F. Sikes\"", "question": "What was the result of Robert L. F. Sikes' election bid?", "context": "CREATE TABLE table_1342256_10 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342256_10 WHERE first_elected = 1940", "question": "How many districts have an incumbent first elected in 1940?", "context": "CREATE TABLE table_1342256_10 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1342256_10 WHERE incumbent = \"Pat Cannon\"", "question": "How many races involve incumbent Pat Cannon?", "context": "CREATE TABLE table_1342256_10 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342256_10 WHERE first_elected = 1940", "question": "Which incumbent was first elected in 1940?", "context": "CREATE TABLE table_1342256_10 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342249_35 WHERE district = \"Ohio 18\"", "question": "What is the first electedfor district ohio 18", "context": "CREATE TABLE table_1342249_35 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342249_35 WHERE district = \"Ohio 12\"", "question": "What is the incumbent for ohio 12?", "context": "CREATE TABLE table_1342249_35 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342256_18 WHERE incumbent = \"James R. Domengeaux\"", "question": "Who are all of the candidates in the election featuring james r. domengeaux?", "context": "CREATE TABLE table_1342256_18 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342256_33 WHERE incumbent = \"Harold D. Cooley\"", "question": "Name all the candidates that ran for the seat where Harold D. Cooley is the incumbent?", "context": "CREATE TABLE table_1342256_33 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342256_33 WHERE first_elected = 1923", "question": "How many partys have a candidate first elected in 1923?", "context": "CREATE TABLE table_1342256_33 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342256_38 WHERE incumbent = \"Leon Sacks\"", "question": "what was the number of candidates when Leon Sacks was incumbent?", "context": "CREATE TABLE table_1342256_38 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342256_38 WHERE district = \"Pennsylvania 13\"", "question": "What was the result in Pennsylvania 13?", "context": "CREATE TABLE table_1342256_38 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342256_38 WHERE district = \"Pennsylvania 27\"", "question": "Who was the incumbent in Pennsylvania 27?", "context": "CREATE TABLE table_1342256_38 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342256_32 WHERE district = \"New York 19\"", "question": "Who are the contenders In the New York 19 polling area race?", "context": "CREATE TABLE table_1342256_32 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342256_32 WHERE incumbent = \"John Taber\"", "question": "How many polling areas are there with John Taber as the sitting Representative?", "context": "CREATE TABLE table_1342256_32 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342256_32 WHERE district = \"New York 29\"", "question": "Who are the contenders In the New York 29 polling area race?", "context": "CREATE TABLE table_1342256_32 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342256_32 WHERE incumbent = \"John J. Delaney\"", "question": "Which political party is involved where John J. Delaney is the sitting Representative?", "context": "CREATE TABLE table_1342256_32 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342256_32 WHERE district = \"New York 10\"", "question": "Who is the sitting Representative In the New York 10 polling area race?", "context": "CREATE TABLE table_1342256_32 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1342256_32 WHERE district = \"New York 10\"", "question": "How many sitting Representatives are there in the New York 10 polling area?", "context": "CREATE TABLE table_1342256_32 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1342256_40 WHERE incumbent = \"James P. Richards\"", "question": "What is the district for james p. richards?", "context": "CREATE TABLE table_1342256_40 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342256_40 WHERE district = \"South Carolina 4\"", "question": "What is the candidate for south carolina 4?", "context": "CREATE TABLE table_1342256_40 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342256_40 WHERE district = \"South Carolina 3\"", "question": "What is the candidate for south carolina 3?", "context": "CREATE TABLE table_1342256_40 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342256_40 WHERE district = \"South Carolina 4\"", "question": "What is the first elected for south carolina 4?", "context": "CREATE TABLE table_1342256_40 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342256_5 WHERE candidates = \"Brooks Hays (D) Unopposed\"", "question": "How many candidates were in the election featuring brooks hays (d) unopposed?", "context": "CREATE TABLE table_1342256_5 (first_elected VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT party FROM table_1342256_5 WHERE incumbent = \"Clyde T. Ellis\"", "question": "What party does clyde t. ellis represent?", "context": "CREATE TABLE table_1342256_5 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342256_6 WHERE candidates = \"John J. Phillips (R) 57.6% N. E. West (D) 42.4%\"", "question": " how many\u00a0party\u00a0with\u00a0candidates\u00a0being john j. phillips (r) 57.6% n. e. west (d) 42.4%", "context": "CREATE TABLE table_1342256_6 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_1342256_6 WHERE district = \"California 10\"", "question": "what's the\u00a0result\u00a0with\u00a0dbeingtrict\u00a0being california 10", "context": "CREATE TABLE table_1342256_6 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342256_6 WHERE first_elected = \"1926\"", "question": "what's the\u00a0party\u00a0with\u00a0first elected\u00a0being 1926", "context": "CREATE TABLE table_1342256_6 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342256_6 WHERE result = \"New seat Republican gain\"", "question": "what's the\u00a0incumbent\u00a0with\u00a0result\u00a0being new seat republican gain", "context": "CREATE TABLE table_1342256_6 (incumbent VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1342270_24", "question": "what was the maxiumum for the first elected?", "context": "CREATE TABLE table_1342270_24 (first_elected INTEGER)"}, {"answer": "SELECT first_elected FROM table_1342270_3 WHERE incumbent = \"Joe Starnes\"", "question": "what's the\u00a0first elected\u00a0with\u00a0incumbent\u00a0being joe starnes", "context": "CREATE TABLE table_1342270_3 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1342270_3 WHERE candidates = \"Joe Starnes (D) 100.0% George Bogus ( W/I ) 0.003%\"", "question": "what's the\u00a0first elected\u00a0with\u00a0candidates\u00a0being joe starnes (d) 100.0% george bogus ( w/i ) 0.003%", "context": "CREATE TABLE table_1342270_3 (first_elected VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342270_3 WHERE district = \"Alabama 6\"", "question": " how many\u00a0party\u00a0with\u00a0dbeingtrict\u00a0being alabama 6", "context": "CREATE TABLE table_1342270_3 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1342270_3 WHERE incumbent = \"Sam Hobbs\"", "question": "what are all the\u00a0district with\u00a0incumbent\u00a0being sam hobbs", "context": "CREATE TABLE table_1342270_3 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342270_3 WHERE district = \"Alabama 1\"", "question": "what are all the\u00a0result\u00a0with\u00a0district being alabama 1", "context": "CREATE TABLE table_1342270_3 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1342270_3 WHERE district = \"Alabama 5\"", "question": "what is the maximum\u00a0first elected\u00a0with\u00a0district being alabama 5", "context": "CREATE TABLE table_1342270_3 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342270_42 WHERE district = \"Tennessee 6\"", "question": "What was the result in the Tennessee 6 district election?", "context": "CREATE TABLE table_1342270_42 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342270_42 WHERE incumbent = \"Estes Kefauver\"", "question": "In how many districts was the incumbent Estes Kefauver? ", "context": "CREATE TABLE table_1342270_42 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1342270_42", "question": "What is the latest year any of the incumbents were first elected? ", "context": "CREATE TABLE table_1342270_42 (first_elected INTEGER)"}, {"answer": "SELECT result FROM table_1342270_42 WHERE district = \"Tennessee 2\"", "question": "What was the result of the Tennessee 2 district election? ", "context": "CREATE TABLE table_1342270_42 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1342292_17 WHERE incumbent = \"Robert L. Mouton\"", "question": "What district is incumbent robert l. mouton from?", "context": "CREATE TABLE table_1342292_17 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342270_5 WHERE incumbent = \"William Fadjo Cravens\"", "question": "William Fadjo Cravens is the only candidate who was first elected in 1939.", "context": "CREATE TABLE table_1342270_5 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342270_5 WHERE incumbent = \"William Fadjo Cravens\"", "question": "William Fadjo Cravens serves the fourth district of Arkansas.", "context": "CREATE TABLE table_1342270_5 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342292_2 WHERE district = \"Alabama 3\"", "question": "what's the\u00a0party\u00a0with\u00a0district being alabama 3", "context": "CREATE TABLE table_1342292_2 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342292_2 WHERE candidates = \"Sam Hobbs (D) 88.2% C. W. McKay (R) 11.8%\"", "question": "what's the\u00a0incumbent\u00a0with\u00a0candidates\u00a0being sam hobbs (d) 88.2% c. w. mckay (r) 11.8%", "context": "CREATE TABLE table_1342292_2 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT party FROM table_1342292_2 WHERE incumbent = \"John Sparkman\"", "question": "what's the\u00a0party\u00a0with\u00a0incumbent\u00a0being john sparkman", "context": "CREATE TABLE table_1342292_2 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342292_2 WHERE candidates = \"William B. Bankhead (D) 71.3% E. M. Reed (R) 28.7%\"", "question": " how many\u00a0dbeingtrict\u00a0with\u00a0candidates\u00a0being william b. bankhead (d) 71.3% e. m. reed (r) 28.7%", "context": "CREATE TABLE table_1342292_2 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT party FROM table_1342292_2 WHERE incumbent = \"William B. Bankhead\"", "question": "what's the\u00a0party\u00a0with\u00a0incumbent\u00a0being william b. bankhead", "context": "CREATE TABLE table_1342292_2 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342292_2 WHERE first_elected = 1938", "question": "what's the\u00a0district \u00a0with\u00a0first elected\u00a0being 1938", "context": "CREATE TABLE table_1342292_2 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342292_45 WHERE first_elected = 1930", "question": "How many incumbents were first elected in 1930?", "context": "CREATE TABLE table_1342292_45 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1342292_45 WHERE incumbent = \"Dave E. Satterfield, Jr.\"", "question": "In how many districts is the incumbent Dave E. Satterfield, Jr.", "context": "CREATE TABLE table_1342292_45 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342292_45 WHERE first_elected = 1918", "question": "What was the election result for the candidate first elected in 1918?", "context": "CREATE TABLE table_1342292_45 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342292_4 WHERE incumbent = \"William B. Cravens\"", "question": "How many parties does william b. cravens represent?", "context": "CREATE TABLE table_1342292_4 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342292_4 WHERE first_elected = 1932", "question": "What district had someone first elected in 1932?", "context": "CREATE TABLE table_1342292_4 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342292_4 WHERE incumbent = \"William J. Driver\"", "question": "What candidates ran in the election when the incumbent was william j. driver?", "context": "CREATE TABLE table_1342292_4 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342292_42 WHERE incumbent = \"Sam Rayburn\"", "question": "Who are all the candidates when Sam Rayburn was incumbent?", "context": "CREATE TABLE table_1342292_42 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342292_42 WHERE first_elected = 1919", "question": "What was the party that was frist elected in 1919?", "context": "CREATE TABLE table_1342292_42 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1342315_12 WHERE incumbent = \"Leo E. Allen\"", "question": "When was incumbent Leo E. Allen first elected?", "context": "CREATE TABLE table_1342315_12 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342315_12 WHERE party = \"Republican\"", "question": "Which district has a Republican elected?", "context": "CREATE TABLE table_1342315_12 (district VARCHAR, party VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342315_17 WHERE incumbent = \"Riley Joseph Wilson\"", "question": "How many districts does riley joseph wilson?", "context": "CREATE TABLE table_1342315_17 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342315_17 WHERE incumbent = \"Ren\u00e9 L. DeRouen\"", "question": "How many districts for ren\u00e9 l. derouen?", "context": "CREATE TABLE table_1342315_17 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342315_42 WHERE incumbent = \"Wright Patman\"", "question": "Who are the candidates in the race where Wright Patman is the incumbent?", "context": "CREATE TABLE table_1342315_42 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342331_11 WHERE incumbent = \"John S. Wood\"", "question": "What candidates ran in the election when john s. wood was the incumbent?", "context": "CREATE TABLE table_1342331_11 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342331_11 WHERE first_elected = 1914", "question": "What was the result of the election held in 1914?", "context": "CREATE TABLE table_1342331_11 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342315_4 WHERE incumbent = \"Claude Fuller\"", "question": "How many first elections have Claude Fuller as incumbent?", "context": "CREATE TABLE table_1342315_4 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342315_10 WHERE district = \"Georgia 1\"", "question": "How many winners were there in the Georgia 1 district?", "context": "CREATE TABLE table_1342315_10 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342315_10 WHERE district = \"Georgia 4\"", "question": "Who ran for office at the Georgia 4 district in this election?", "context": "CREATE TABLE table_1342315_10 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1342331_18 WHERE incumbent = \"Riley Joseph Wilson\"", "question": "What district has Riley Joseph Wilson as the incumbent?", "context": "CREATE TABLE table_1342331_18 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342331_18 WHERE district = \"Louisiana 6\"", "question": "What candidate is in Louisiana 6?", "context": "CREATE TABLE table_1342331_18 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342331_43 WHERE incumbent = \"Richard M. Kleberg\"", "question": "what happened during the election for Richard M. Kleberg?", "context": "CREATE TABLE table_1342331_43 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1342331_43 WHERE incumbent = \"Fritz G. Lanham\"", "question": "What year was the first election when Fritz G. Lanham was elected?", "context": "CREATE TABLE table_1342331_43 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342331_43 WHERE incumbent = \"James P. Buchanan\"", "question": "What is the name of the candidate where the incumbent is named James P. Buchanan?", "context": "CREATE TABLE table_1342331_43 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342331_43 WHERE incumbent = \"Oliver H. Cross\"", "question": "What party is incumbent Oliver H. Cross?", "context": "CREATE TABLE table_1342331_43 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342331_5 WHERE incumbent = \"William J. Driver\"", "question": "what's the\u00a0district with\u00a0incumbent\u00a0being william j. driver", "context": "CREATE TABLE table_1342331_5 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342331_5 WHERE incumbent = \"John E. Miller\"", "question": "what's the\u00a0district with\u00a0incumbent\u00a0being john e. miller", "context": "CREATE TABLE table_1342331_5 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1342331_5 WHERE first_elected = 1932", "question": " how many\u00a0incumbent\u00a0with\u00a0first elected\u00a0being 1932", "context": "CREATE TABLE table_1342331_5 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342331_5 WHERE district = \"Arkansas 1\"", "question": "who is the the\u00a0incumbent\u00a0with\u00a0dbeingtrict\u00a0being arkansas 1", "context": "CREATE TABLE table_1342331_5 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342331_5 WHERE incumbent = \"David Delano Glover\"", "question": " how many\u00a0district \u00a0with\u00a0incumbent\u00a0being david delano glover", "context": "CREATE TABLE table_1342331_5 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342331_5 WHERE candidates = \"Ben Cravens (D) Unopposed\"", "question": "who is the the\u00a0incumbent\u00a0with\u00a0candidates\u00a0being ben cravens (d) unopposed", "context": "CREATE TABLE table_1342331_5 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_1342331_6 WHERE incumbent = \"Denver S. Church\"", "question": "What was the result in the election in which the incumbent was Denver S. Church? ", "context": "CREATE TABLE table_1342331_6 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342331_6 WHERE incumbent = \"Ralph R. Eltse\"", "question": "What was the result in the election in which Ralph R. Eltse was the incumbent?", "context": "CREATE TABLE table_1342331_6 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342331_6 WHERE first_elected = 1932 AND district = \"California 8\"", "question": "Who was the candidate in the election in the California 8 district where the incumbent was first elected in 1932? ", "context": "CREATE TABLE table_1342331_6 (candidates VARCHAR, first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_1342359_15 WHERE district = \"Kansas 1\"", "question": "what are all the\u00a0party\u00a0with\u00a0district being kansas 1", "context": "CREATE TABLE table_1342359_15 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342359_15 WHERE district = \"Kansas 1\"", "question": "what's the\u00a0result\u00a0with\u00a0district being kansas 1", "context": "CREATE TABLE table_1342359_15 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342359_15 WHERE district = \"Kansas 4\"", "question": "who are the\u00a0candidates\u00a0with\u00a0district being kansas 4", "context": "CREATE TABLE table_1342359_15 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342359_15 WHERE first_elected = 1922", "question": "what's the\u00a0result\u00a0with\u00a0first elected\u00a0being 1922", "context": "CREATE TABLE table_1342359_15 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342359_15 WHERE district = \"Kansas 5\"", "question": "who is the the\u00a0candidates\u00a0with\u00a0dbeingtrict\u00a0being kansas 5", "context": "CREATE TABLE table_1342359_15 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342359_15 WHERE district = \"Kansas 3\"", "question": " how many\u00a0first elected\u00a0with\u00a0district\u00a0is kansas 3", "context": "CREATE TABLE table_1342359_15 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342359_4 WHERE district = \"Arkansas 2\"", "question": "What was the result of the election in the Arkansas 2 district? ", "context": "CREATE TABLE table_1342359_4 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342359_4 WHERE district = \"Arkansas 4\"", "question": "What was the result of the election in the Arkansas 4 district? ", "context": "CREATE TABLE table_1342359_4 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342359_4 WHERE district = \"Arkansas 4\"", "question": "How many candidates ran in the election in the Arkansas 4 district? ", "context": "CREATE TABLE table_1342359_4 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342359_2 WHERE incumbent = \"William B. Oliver\"", "question": "How many districts does william b. oliver represent?", "context": "CREATE TABLE table_1342359_2 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1342359_2", "question": "What is the last year that someone is first elected?", "context": "CREATE TABLE table_1342359_2 (first_elected INTEGER)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342359_17 WHERE first_elected = 1929", "question": "How many people were elected in 1929", "context": "CREATE TABLE table_1342359_17 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342359_17 WHERE first_elected = 1914", "question": "how many people won in 1914", "context": "CREATE TABLE table_1342359_17 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342359_17 WHERE first_elected = 1927", "question": "Who won in 1927", "context": "CREATE TABLE table_1342359_17 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1342359_42 WHERE district = \"Texas 12\"", "question": "Name the number of incumbents for texas 12 ", "context": "CREATE TABLE table_1342359_42 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1342370_10 WHERE incumbent = \"Charles R. Crisp\"", "question": "How many parties were represented for Charles R. Crisp?", "context": "CREATE TABLE table_1342370_10 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342370_10 WHERE first_elected = 1916", "question": "In what district was the representative first elected in 1916?", "context": "CREATE TABLE table_1342370_10 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342370_12 WHERE first_elected = 1922", "question": "Who were the candidates in the 1922 entry?", "context": "CREATE TABLE table_1342370_12 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_1342370_17 WHERE incumbent = \"James O'Connor\"", "question": "In which district is James O'Connor the incumbent?", "context": "CREATE TABLE table_1342370_17 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342370_17 WHERE incumbent = \"Riley Joseph Wilson\"", "question": "To which party does Riley Joseph Wilson belong?", "context": "CREATE TABLE table_1342370_17 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342370_42 WHERE result = \"Re-elected\" AND incumbent = \"Hatton W. Sumners\"", "question": "How many of the first elected were listed when Hatton W. Sumners was incumbent and re-elected?", "context": "CREATE TABLE table_1342370_42 (first_elected VARCHAR, result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342370_41 WHERE incumbent = \"Finis J. Garrett\"", "question": "What was the result in the election where the incumbent was Finis J. Garrett? ", "context": "CREATE TABLE table_1342370_41 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342370_41 WHERE incumbent = \"Cordell Hull\"", "question": "In what district was the incumbent Cordell hull? ", "context": "CREATE TABLE table_1342370_41 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342370_41 WHERE district = \"Tennessee 9\"", "question": "Who were the candidates in the election in the Tennessee 9 district? ", "context": "CREATE TABLE table_1342370_41 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342379_20 WHERE candidates = \"James A. Gallivan (D) Unopposed\"", "question": "What was the result of the election featuring james a. gallivan (d) unopposed?", "context": "CREATE TABLE table_1342379_20 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342379_20 WHERE incumbent = \"John J. Douglass\"", "question": "How many districts does john j. douglass represent?", "context": "CREATE TABLE table_1342379_20 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1342379_10 WHERE first_elected = 1912", "question": "how many areas were in the election in 1912", "context": "CREATE TABLE table_1342379_10 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_1342379_10 WHERE incumbent = \"Charles H. Brand\"", "question": "what is the affiliation of charles h. brand", "context": "CREATE TABLE table_1342379_10 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342370_5 WHERE incumbent = \"Harry Lane Englebright\"", "question": "What candidates ran in the election that featured harry lane englebright?", "context": "CREATE TABLE table_1342370_5 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1342379_2 WHERE incumbent = \"William B. Oliver\"", "question": "When was incumbent William B. Oliver first elected?", "context": "CREATE TABLE table_1342379_2 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342379_23 WHERE candidates = \"Percy E. Quin (D) Unopposed\"", "question": "who is the the\u00a0incumbent\u00a0with\u00a0candidates\u00a0being percy e. quin (d) unopposed", "context": "CREATE TABLE table_1342379_23 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_1342379_23 WHERE candidates = \"John E. Rankin (D) Unopposed\"", "question": "what's the\u00a0district with\u00a0candidates\u00a0being john e. rankin (d) unopposed", "context": "CREATE TABLE table_1342379_23 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342379_23 WHERE district = \"Mississippi 4\"", "question": "who is the the\u00a0candidates\u00a0with\u00a0district being mississippi 4", "context": "CREATE TABLE table_1342379_23 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342379_23 WHERE district = \"Mississippi 4\"", "question": "who is  the incumbent for district mississippi 4", "context": "CREATE TABLE table_1342379_23 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_1342379_23 WHERE incumbent = \"Bill G. Lowrey\"", "question": "what's the\u00a0result\u00a0with\u00a0incumbent\u00a0being bill g. lowrey", "context": "CREATE TABLE table_1342379_23 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342379_23 WHERE candidates = \"William Madison Whittington (D) Unopposed\"", "question": "what's the\u00a0district \u00a0with\u00a0candidates\u00a0being william madison whittington (d) unopposed", "context": "CREATE TABLE table_1342379_23 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_1342379_45 WHERE incumbent = \"Joseph T. Deal\"", "question": "What was the last year that incumbent joseph t. deal was first elected?", "context": "CREATE TABLE table_1342379_45 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1342379_45", "question": "What year was someone first elected?", "context": "CREATE TABLE table_1342379_45 (first_elected INTEGER)"}, {"answer": "SELECT district FROM table_1342379_41 WHERE incumbent = \"Edward Everett Eslick\"", "question": "What district does edward everett eslick represent?", "context": "CREATE TABLE table_1342379_41 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1342379_41 WHERE incumbent = \"Cordell Hull\"", "question": "How many times was incumbent cordell hull first elected?", "context": "CREATE TABLE table_1342379_41 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1342379_41 WHERE candidates = \"Joseph W. Byrns, Sr. (D) Unopposed\"", "question": "How many times was the election joseph w. byrns, sr. (d) unopposed?", "context": "CREATE TABLE table_1342379_41 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1342393_23 WHERE incumbent = \"Jeff Busby\"", "question": "What is the least first elected for jeff busby?", "context": "CREATE TABLE table_1342393_23 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1342393_23 WHERE first_elected = 1923", "question": "What was the party for first elected 1923?", "context": "CREATE TABLE table_1342393_23 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_1342393_23 WHERE district = \"Mississippi 4\"", "question": "Name the total number of result for mississippi 4?", "context": "CREATE TABLE table_1342393_23 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1342393_10 WHERE incumbent = \"Gordon Lee\"", "question": "what is the section where gordon lee ran", "context": "CREATE TABLE table_1342393_10 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342393_10 WHERE incumbent = \"Frank Park\"", "question": "what section did frank park run in", "context": "CREATE TABLE table_1342393_10 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342393_10 WHERE district = \"Georgia 5\"", "question": "who won in the race in the section georgia 5", "context": "CREATE TABLE table_1342393_10 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342426_18 WHERE incumbent = \"John N. Sandlin\"", "question": "How many candidates won the election of john n. sandlin?", "context": "CREATE TABLE table_1342426_18 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1342426_18 WHERE candidates = \"Henry Garland Dupr\u00e9 (D) Unopposed\"", "question": "Who was the incumbent in the election of henry garland dupr\u00e9 (d) unopposed?", "context": "CREATE TABLE table_1342426_18 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_1342426_3 WHERE incumbent = \"John R. Tyson\"", "question": "What was the result when incumbent John R. Tyson was elected?", "context": "CREATE TABLE table_1342426_3 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1342426_5 WHERE incumbent = \"William J. Driver\"", "question": "Name the result for william j. driver", "context": "CREATE TABLE table_1342426_5 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342426_5 WHERE incumbent = \"William J. Driver\"", "question": "Name the district for william j. driver ", "context": "CREATE TABLE table_1342426_5 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1342426_5 WHERE incumbent = \"Chester W. Taylor\"", "question": "Name the lowest first elected for chester w. taylor", "context": "CREATE TABLE table_1342426_5 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1342451_16 WHERE incumbent = \"Henry Garland Dupr\u00e9\"", "question": "Who were the candidates when Henry Garland Dupr\u00e9 was incumbent?", "context": "CREATE TABLE table_1342451_16 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_1342451_16 WHERE incumbent = \"Henry Garland Dupr\u00e9\"", "question": "How many candidates were there when Henry Garland Dupr\u00e9 was the incumbent? ", "context": "CREATE TABLE table_1342451_16 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_1342451_16 WHERE incumbent = \"James O'Connor\"", "question": "What district did James O'Connor belong to?", "context": "CREATE TABLE table_1342451_16 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_13426649_1 WHERE _number = 6", "question": "How many different original air dates did the episode number 6 have? ", "context": "CREATE TABLE table_13426649_1 (original_air_date VARCHAR, _number VARCHAR)"}, {"answer": "SELECT written_by FROM table_13426649_1 WHERE production_code = \"1ANJ01\"", "question": "Who wrote the episode with production code 1ANJ01?", "context": "CREATE TABLE table_13426649_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT location FROM table_13456202_1 WHERE mascot = \"Panthers\"", "question": "What are the locations with a panthers mascot?", "context": "CREATE TABLE table_13456202_1 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT location FROM table_13456202_1 WHERE mascot = \"Eagles\"", "question": "What are the locations with an eagles macot?", "context": "CREATE TABLE table_13456202_1 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT COUNT(affiliation) FROM table_13456202_1 WHERE mascot = \"Eagles\"", "question": "How many teams have an eagles mascot?", "context": "CREATE TABLE table_13456202_1 (affiliation VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT COUNT(affiliation) FROM table_13456202_1 WHERE mascot = \"Titans\"", "question": "How many teams have the titans as a mascot?", "context": "CREATE TABLE table_13456202_1 (affiliation VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_13456202_1 WHERE school = \"North College Hill High school\"", "question": "WHat year was north college hill high school founded?", "context": "CREATE TABLE table_13456202_1 (founded INTEGER, school VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1346118_2 WHERE candidates = \"William B. Oliver (D) Unopposed\"", "question": "Who was the incumbent when ran william b. oliver (d) unopposed?", "context": "CREATE TABLE table_1346118_2 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1346118_5 WHERE candidates = \"Henry E. Barbour (R) 52.1% Henry Hawson (D) 47.9%\"", "question": "Which party was the incumbent from when the cadidates were henry e. barbour (r) 52.1% henry hawson (d) 47.9%?  Answer: Democratic", "context": "CREATE TABLE table_1346118_5 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_1346118_5 WHERE candidates = \"John I. Nolan (R) 87% Thomas F. Feeley (S) 13%\"", "question": "Which district was the race between john i. nolan (r) 87% thomas f. feeley (s) 13%?", "context": "CREATE TABLE table_1346118_5 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_1346118_5 WHERE candidates = \"John A. Elston (R) 88.4% Luella Twining (S) 11.6%\"", "question": "What was the net seat gain in the race john a. elston (r) 88.4% luella twining (s) 11.6%?", "context": "CREATE TABLE table_1346118_5 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1346118_5 WHERE incumbent = \"Julius Kahn\"", "question": "Which District was the incumbent Julius Kahn from?  Answer:  California 4th district", "context": "CREATE TABLE table_1346118_5 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_1346118_5 WHERE incumbent = \"Clarence F. Lea\"", "question": "What was the result of the election when Clarence F. Lea was the incumbent?", "context": "CREATE TABLE table_1346118_5 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT team FROM table_13464416_5 WHERE game = 20", "question": "Which team played in game 20?", "context": "CREATE TABLE table_13464416_5 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT height__ft_ FROM table_13463790_2 WHERE name = \"Leadenhall Building\"", "question": "what's the\u00a0height (ft)\u00a0with\u00a0name\u00a0being leadenhall building", "context": "CREATE TABLE table_13463790_2 (height__ft_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT height__ft_ FROM table_13463790_2 WHERE name = \"52-54 Lime Street\"", "question": "what's the\u00a0height (ft)\u00a0with\u00a0name\u00a0being 52-54 lime street", "context": "CREATE TABLE table_13463790_2 (height__ft_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(city) FROM table_13463790_2 WHERE name = \"Providence Tower\"", "question": " how many\u00a0city\u00a0with\u00a0name\u00a0being providence tower", "context": "CREATE TABLE table_13463790_2 (city VARCHAR, name VARCHAR)"}, {"answer": "SELECT format FROM table_134729_3 WHERE call_sign = \"K213CL\"", "question": "What station has the call number K213cl", "context": "CREATE TABLE table_134729_3 (format VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT target_city__market FROM table_134729_3 WHERE city_of_license = \"Wessington Springs\"", "question": "What market is Wessington Springs in", "context": "CREATE TABLE table_134729_3 (target_city__market VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT format FROM table_134729_3 WHERE owner = \"Moody Bible Institute\"", "question": "What station owns Moody Bible Institute", "context": "CREATE TABLE table_134729_3 (format VARCHAR, owner VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_13480122_5 WHERE score = \"W 113\u201387\"", "question": " how many\u00a0date\u00a0with\u00a0score\u00a0being w 113\u201387", "context": "CREATE TABLE table_13480122_5 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT game FROM table_13480122_5 WHERE record = \"29\u20133\"", "question": "what's the\u00a0game\u00a0with\u00a0record\u00a0being 29\u20133", "context": "CREATE TABLE table_13480122_5 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_13480122_5 WHERE high_assists = \"Scottie Pippen (9)\"", "question": "who is the the\u00a0high rebounds\u00a0with\u00a0high assbeingts\u00a0being scottie pippen (9)", "context": "CREATE TABLE table_13480122_5 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_points FROM table_13480122_5 WHERE score = \"W 117\u201393\"", "question": "who is the the\u00a0high points\u00a0with\u00a0score\u00a0being w 117\u201393", "context": "CREATE TABLE table_13480122_5 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_13480122_5 WHERE date = \"January 13\"", "question": "what's the\u00a0record\u00a0with\u00a0date\u00a0being january 13", "context": "CREATE TABLE table_13480122_5 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_13480122_5 WHERE date = \"January 21\"", "question": "what are all the record where date is january 21", "context": "CREATE TABLE table_13480122_5 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_134987_3 WHERE city_of_license = \"Rapid City\" AND format = \"Adult Contemporary\"", "question": "What is the name of Rapid City's Adult Contemporary station?", "context": "CREATE TABLE table_134987_3 (name VARCHAR, city_of_license VARCHAR, format VARCHAR)"}, {"answer": "SELECT target_city__market FROM table_134987_3 WHERE city_of_license = \"Rapid City\" AND format = \"Alternative\"", "question": "What are the market city/market(s) for Rapid City Alternative format?", "context": "CREATE TABLE table_134987_3 (target_city__market VARCHAR, city_of_license VARCHAR, format VARCHAR)"}, {"answer": "SELECT frequency FROM table_134987_3 WHERE format = \"Christian KAWZ-FM translator\"", "question": "What is the frequency for the Christian Kawz-fm Translator station?", "context": "CREATE TABLE table_134987_3 (frequency VARCHAR, format VARCHAR)"}, {"answer": "SELECT target_city__market FROM table_134987_3 WHERE frequency = \"97.9 FM\"", "question": "What is the target market for the station on 97.9 fm?", "context": "CREATE TABLE table_134987_3 (target_city__market VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_134987_3 WHERE format = \"Classic Country KRKI-FM booster\"", "question": "What is the frequency of the Classic Country Krki-fm booster station?", "context": "CREATE TABLE table_134987_3 (frequency VARCHAR, format VARCHAR)"}, {"answer": "SELECT target_city__market FROM table_134987_3 WHERE call_sign = \"KFXS\"", "question": "What is the target market of the station with call sign KFXS?", "context": "CREATE TABLE table_134987_3 (target_city__market VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT season AS Finale FROM table_1348989_2 WHERE viewers__in_millions_ = \"10.29\"", "question": "What year did the season finale have a total of 10.29 million viewers?", "context": "CREATE TABLE table_1348989_2 (season VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT TV AS season FROM table_1348989_2 WHERE season = \"3rd\"", "question": "In what TV season did the 3rd season air?", "context": "CREATE TABLE table_1348989_2 (TV VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(ranking) FROM table_1348989_2 WHERE season = \"5th\"", "question": "How many rankings did the 5th season have?", "context": "CREATE TABLE table_1348989_2 (ranking VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(season) AS Finale FROM table_1348989_2 WHERE season = \"2nd\"", "question": "How many times did the 2nd season have a finale?", "context": "CREATE TABLE table_1348989_2 (season VARCHAR)"}, {"answer": "SELECT COUNT(county) FROM table_1350350_2 WHERE per_capita_income = \"$20,101\"", "question": " how many\u00a0county\u00a0with\u00a0per capita income\u00a0being $20,101", "context": "CREATE TABLE table_1350350_2 (county VARCHAR, per_capita_income VARCHAR)"}, {"answer": "SELECT place FROM table_1350350_2 WHERE per_capita_income = \"$14,793\"", "question": "who is the the\u00a0place\u00a0with\u00a0per capita income\u00a0being $14,793", "context": "CREATE TABLE table_1350350_2 (place VARCHAR, per_capita_income VARCHAR)"}, {"answer": "SELECT number_of_households FROM table_1350350_2 WHERE per_capita_income = \"$16,820\"", "question": "what's the\u00a0number of households\u00a0with\u00a0per capita income\u00a0being $16,820", "context": "CREATE TABLE table_1350350_2 (number_of_households VARCHAR, per_capita_income VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_1350350_2 WHERE per_capita_income = \"$17,013\"", "question": "what is the maximum\u00a0rank\u00a0with\u00a0per capita income\u00a0being $17,013", "context": "CREATE TABLE table_1350350_2 (rank INTEGER, per_capita_income VARCHAR)"}, {"answer": "SELECT barrier FROM table_13498403_1 WHERE jockey = \"Darryll Holland\"", "question": "How old is Darryll Holland's horse", "context": "CREATE TABLE table_13498403_1 (barrier VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT COUNT(trainer) FROM table_13498403_1 WHERE jockey = \"N Rawiller\"", "question": "how many people work with N Rawiller", "context": "CREATE TABLE table_13498403_1 (trainer VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT MAX(barrier) FROM table_13498403_1 WHERE trainer = \"Daniel Morton\"", "question": "How old is Daniel Morton", "context": "CREATE TABLE table_13498403_1 (barrier INTEGER, trainer VARCHAR)"}, {"answer": "SELECT Radio AS electrical FROM table_1348246_3 WHERE secretariat = \"WTR I\"", "question": "What are radio electricals when secretariat is wtr i?", "context": "CREATE TABLE table_1348246_3 (Radio VARCHAR, secretariat VARCHAR)"}, {"answer": "SELECT electrical FROM table_1348246_3 WHERE secretariat = \"PO(W)\"", "question": "What are electricals where secretariat is po(w)?", "context": "CREATE TABLE table_1348246_3 (electrical VARCHAR, secretariat VARCHAR)"}, {"answer": "SELECT mechanical FROM table_1348246_3 WHERE regulating = \"LPM\"", "question": "What mechanical has lpm regulation?", "context": "CREATE TABLE table_1348246_3 (mechanical VARCHAR, regulating VARCHAR)"}, {"answer": "SELECT MAX(series_number) FROM table_13505192_3 WHERE episode_title = \"Things That Fly\"", "question": "What number episode in the series is the episode \"things that fly\"?", "context": "CREATE TABLE table_13505192_3 (series_number INTEGER, episode_title VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_13505192_3 WHERE season_number = 8", "question": "What is the production code for season episode 8?", "context": "CREATE TABLE table_13505192_3 (production_code INTEGER, season_number VARCHAR)"}, {"answer": "SELECT COUNT(episode_title) FROM table_13505192_3 WHERE series_number = 35", "question": "How many episodes have a series number of 35?", "context": "CREATE TABLE table_13505192_3 (episode_title VARCHAR, series_number VARCHAR)"}, {"answer": "SELECT MIN(series_number) FROM table_13505192_3 WHERE season_number = 24", "question": "What is the series number for season episode 24?", "context": "CREATE TABLE table_13505192_3 (series_number INTEGER, season_number VARCHAR)"}, {"answer": "SELECT COUNT(fastest_lap) FROM table_13512105_3 WHERE rnd = 6", "question": "how many have times of 6", "context": "CREATE TABLE table_13512105_3 (fastest_lap VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT winning_team FROM table_13512105_3 WHERE winning_driver = \"Ryan Briscoe\" AND fastest_lap = \"Tomas Scheckter\"", "question": "which brand have drivers who won with the names of ryan briscoe and tomas scheckter", "context": "CREATE TABLE table_13512105_3 (winning_team VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_13512105_3 WHERE most_laps_led = \"Scott Dixon\" AND pole_position = \"Graham Rahal\"", "question": "who else along with scott dixon and graham rahal drove with the most speed", "context": "CREATE TABLE table_13512105_3 (fastest_lap VARCHAR, most_laps_led VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT COUNT(rnd) FROM table_13512105_3 WHERE race = \"Kansas\"", "question": "tell the number of times where kansas was the location", "context": "CREATE TABLE table_13512105_3 (rnd VARCHAR, race VARCHAR)"}, {"answer": "SELECT channel_tv___dt__ FROM table_1353096_2 WHERE city_of_license_market = \"Boston\"", "question": "What TV channel had a license from Boston?", "context": "CREATE TABLE table_1353096_2 (channel_tv___dt__ VARCHAR, city_of_license_market VARCHAR)"}, {"answer": "SELECT station FROM table_1353096_2 WHERE city_of_license_market = \"Fort Collins, Colorado\"", "question": "Which station has a license in Fort Collins, Colorado?", "context": "CREATE TABLE table_1353096_2 (station VARCHAR, city_of_license_market VARCHAR)"}, {"answer": "SELECT current_status FROM table_1353096_2 WHERE station = \"KDAF **\"", "question": "What is the current status of the KDAF ** Station?", "context": "CREATE TABLE table_1353096_2 (current_status VARCHAR, station VARCHAR)"}, {"answer": "SELECT COUNT(current_status) FROM table_1353096_2 WHERE station = \"WJW-TV ++\"", "question": "How many entries are listed under \"current status\" for the WJW-TV ++ Station?", "context": "CREATE TABLE table_1353096_2 (current_status VARCHAR, station VARCHAR)"}, {"answer": "SELECT COUNT(station) FROM table_1353096_1 WHERE primary_affiliation = \"Fox\" AND owned_since = \"1986\"", "question": "How many stations have fox as the primary affiliation and have been owned since 1986?", "context": "CREATE TABLE table_1353096_1 (station VARCHAR, primary_affiliation VARCHAR, owned_since VARCHAR)"}, {"answer": "SELECT channel_tv___dt__ FROM table_1353096_1 WHERE station = \"KDFW ++\"", "question": "What channel has station kdfw ++?", "context": "CREATE TABLE table_1353096_1 (channel_tv___dt__ VARCHAR, station VARCHAR)"}, {"answer": "SELECT city_of_license__market FROM table_1353096_1 WHERE channel_tv___dt__ = \"25 (31)\"", "question": "What city has channel tv (dt) 25 (31)?", "context": "CREATE TABLE table_1353096_1 (city_of_license__market VARCHAR, channel_tv___dt__ VARCHAR)"}, {"answer": "SELECT COUNT(channel_tv___dt__) FROM table_1353096_1 WHERE city_of_license__market = \"Austin, Texas\"", "question": "How many channel tv (dt)s are in austin, texas?", "context": "CREATE TABLE table_1353096_1 (channel_tv___dt__ VARCHAR, city_of_license__market VARCHAR)"}, {"answer": "SELECT owned_since FROM table_1353096_1 WHERE channel_tv___dt__ = \"10 (10)\"", "question": "When was 10 (10) bought?", "context": "CREATE TABLE table_1353096_1 (owned_since VARCHAR, channel_tv___dt__ VARCHAR)"}, {"answer": "SELECT umpires FROM table_13514348_7 WHERE simpson_medal = \"Paul Medhurst (C)\"", "question": "Who were the umpires when Paul Medhurst (C) won the Simpson Medal?", "context": "CREATE TABLE table_13514348_7 (umpires VARCHAR, simpson_medal VARCHAR)"}, {"answer": "SELECT umpires FROM table_13514348_7 WHERE simpson_medal = \"Paul Vines (S)\"", "question": "Who were the umpires when Paul Vines (S) won the Simpson Medal?", "context": "CREATE TABLE table_13514348_7 (umpires VARCHAR, simpson_medal VARCHAR)"}, {"answer": "SELECT venue FROM table_13514348_7 WHERE captain = \"Luke Blackwell\"", "question": "Which venue did Luke Blackwell serve as captain?", "context": "CREATE TABLE table_13514348_7 (venue VARCHAR, captain VARCHAR)"}, {"answer": "SELECT MIN(180 AS s) FROM table_13535824_2", "question": "what's the minimum 180s value", "context": "CREATE TABLE table_13535824_2 (Id VARCHAR)"}, {"answer": "SELECT new_channel_s_ FROM table_13549921_18 WHERE programme = \"Gladiators\"", "question": "What channel number is Gladiators on", "context": "CREATE TABLE table_13549921_18 (new_channel_s_ VARCHAR, programme VARCHAR)"}, {"answer": "SELECT programme FROM table_13549921_18 WHERE date_s__of_return = \"July 2008\"", "question": "What show is coming back on in July 2008", "context": "CREATE TABLE table_13549921_18 (programme VARCHAR, date_s__of_return VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_13553701_1 WHERE womens_singles = \"Wang Shixian\"", "question": "Who are the mens doubles and womens singles is wang shixian?", "context": "CREATE TABLE table_13553701_1 (mens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_13553701_1 WHERE womens_singles = \"Wang Shixian\"", "question": "Who is the mens singles and womens singlses is wang shixian?", "context": "CREATE TABLE table_13553701_1 (mens_singles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_13553701_1 WHERE mens_singles = \"Lee Hyun-il\"", "question": "Who are the mens doubles and and mens singles is lee hyun-il?", "context": "CREATE TABLE table_13553701_1 (mens_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_13553701_1 WHERE womens_singles = \"Sun Yu\"", "question": "Who are the mens singles and womens singles with sun yu?", "context": "CREATE TABLE table_13553701_1 (mens_singles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT MAX(competition_finish) FROM table_1354805_6 WHERE average = \"31.1\"", "question": "what is the highest number where people got done at 31.1", "context": "CREATE TABLE table_1354805_6 (competition_finish INTEGER, average VARCHAR)"}, {"answer": "SELECT couple FROM table_1354805_6 WHERE number_of_dances = 11 AND competition_finish > 2.0", "question": "who danced 11 and finished at more than a 2.0", "context": "CREATE TABLE table_1354805_6 (couple VARCHAR, number_of_dances VARCHAR, competition_finish VARCHAR)"}, {"answer": "SELECT average FROM table_1354805_6 WHERE number_of_dances = 1", "question": "tell the competitions where the mean is 1", "context": "CREATE TABLE table_1354805_6 (average VARCHAR, number_of_dances VARCHAR)"}, {"answer": "SELECT rank_by_average FROM table_1354805_6 WHERE number_of_dances = 7", "question": "tell the mean of the times competition for the 7 jigs", "context": "CREATE TABLE table_1354805_6 (rank_by_average VARCHAR, number_of_dances VARCHAR)"}, {"answer": "SELECT COUNT(number_of_dances) FROM table_1354805_6 WHERE average = \"34.0\"", "question": "how many turns were completed to make a mean of 34.0", "context": "CREATE TABLE table_1354805_6 (number_of_dances VARCHAR, average VARCHAR)"}, {"answer": "SELECT gender FROM table_13555999_1 WHERE junior_high_school__12_15_yrs_ = \"24mm\"", "question": "What is the gender of the junior high school is 24mm?", "context": "CREATE TABLE table_13555999_1 (gender VARCHAR, junior_high_school__12_15_yrs_ VARCHAR)"}, {"answer": "SELECT university_students_and_adults__18yrs + _ FROM table_13555999_1 WHERE senior_high_school__15_18_yrs_ = \"26mm\"", "question": "What amount of the university students and adults ehre the the senior high school is 26mm?", "context": "CREATE TABLE table_13555999_1 (university_students_and_adults__18yrs VARCHAR, _ VARCHAR, senior_high_school__15_18_yrs_ VARCHAR)"}, {"answer": "SELECT senior_high_school__15_18_yrs_ FROM table_13555999_1 WHERE junior_high_school__12_15_yrs_ = \"114cm\"", "question": "What amount of senior high school where junior high school is 114cm?", "context": "CREATE TABLE table_13555999_1 (senior_high_school__15_18_yrs_ VARCHAR, junior_high_school__12_15_yrs_ VARCHAR)"}, {"answer": "SELECT specification FROM table_13555999_1 WHERE senior_high_school__15_18_yrs_ = \"25mm\"", "question": "What is the specification where senior high school is 25mm?", "context": "CREATE TABLE table_13555999_1 (specification VARCHAR, senior_high_school__15_18_yrs_ VARCHAR)"}, {"answer": "SELECT junior_high_school__12_15_yrs_ FROM table_13555999_1 WHERE gender = \"Male\" AND specification = \"Minimum diameter of sakigawa\"", "question": "What amount is the junior high school where the gender is male and the specification is minimum diameter of sakigawa?", "context": "CREATE TABLE table_13555999_1 (junior_high_school__12_15_yrs_ VARCHAR, gender VARCHAR, specification VARCHAR)"}, {"answer": "SELECT gender FROM table_13555999_1 WHERE senior_high_school__15_18_yrs_ = \"26mm\"", "question": "What is the gender of senior high school 26mm?", "context": "CREATE TABLE table_13555999_1 (gender VARCHAR, senior_high_school__15_18_yrs_ VARCHAR)"}, {"answer": "SELECT score FROM table_13557843_3 WHERE record = \"1-2\"", "question": "What was the score of the game when the team was 1-2?", "context": "CREATE TABLE table_13557843_3 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_assists FROM table_13557843_3 WHERE team = \"Charlotte\"", "question": "Who had the high assists against charlotte?", "context": "CREATE TABLE table_13557843_3 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_13557843_5 WHERE team = \"Utah\"", "question": "How many leading scorers were there in the game against Utah?", "context": "CREATE TABLE table_13557843_5 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_13557843_7 WHERE team = \"Charlotte\"", "question": " how many\u00a0location attendance\u00a0with\u00a0team\u00a0being charlotte", "context": "CREATE TABLE table_13557843_7 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT game FROM table_13557843_7 WHERE date = \"March 7\"", "question": "what's the\u00a0game\u00a0with\u00a0date\u00a0being march 7", "context": "CREATE TABLE table_13557843_7 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_13557843_7 WHERE game = 72", "question": "what's the\u00a0date\u00a0with\u00a0game\u00a0being 72", "context": "CREATE TABLE table_13557843_7 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_13557843_7 WHERE score = \"L 90\u201398 (OT)\"", "question": " how many\u00a0high assbeingts\u00a0with\u00a0score\u00a0being l 90\u201398 (ot)", "context": "CREATE TABLE table_13557843_7 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_13557843_7 WHERE team = \"Vancouver\"", "question": "who is the the\u00a0high rebounds\u00a0with\u00a0team\u00a0being vancouver", "context": "CREATE TABLE table_13557843_7 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_13557843_8 WHERE date = \"April 12\"", "question": "How many pairs of numbers are under record on April 12?", "context": "CREATE TABLE table_13557843_8 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(won) FROM table_13564702_3 WHERE tries_for = \"92\"", "question": "Name total number of won for tries for 92", "context": "CREATE TABLE table_13564702_3 (won VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT club FROM table_13564702_3 WHERE tries_for = \"83\"", "question": "Name the club when tries for is 83", "context": "CREATE TABLE table_13564702_3 (club VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_13564702_3 WHERE club = \"Kenfig Hill RFC\"", "question": "Name the try bonus for kenfig hill rfc", "context": "CREATE TABLE table_13564702_3 (try_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT tries_against FROM table_13564702_3 WHERE played = \"22\" AND points_against = \"183\"", "question": "Name the tries against for played 22 and points against of 183", "context": "CREATE TABLE table_13564702_3 (tries_against VARCHAR, played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT COUNT(points_for) FROM table_13564702_3 WHERE try_bonus = \"10\"", "question": "Name the total number of points for when try bonus is 10", "context": "CREATE TABLE table_13564702_3 (points_for VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT COUNT(won) FROM table_13564702_3 WHERE club = \"Maesteg Harlequins RFC\"", "question": "Name the number of won for maesteg harlequins rfc", "context": "CREATE TABLE table_13564702_3 (won VARCHAR, club VARCHAR)"}, {"answer": "SELECT played FROM table_13564637_3 WHERE lost = \"8\"", "question": "What amount had all played that lost were 8?", "context": "CREATE TABLE table_13564637_3 (played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT club FROM table_13564637_3 WHERE drawn = \"1\" AND lost = \"10\"", "question": "what is the name of the club where drawn is 1 and lost is 10?", "context": "CREATE TABLE table_13564637_3 (club VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT tries_against FROM table_13564637_3 WHERE lost = \"4\"", "question": "what are the tries where the game was lost by 4?", "context": "CREATE TABLE table_13564637_3 (tries_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(try_bonus) FROM table_13564637_3 WHERE won = \"11\"", "question": "what amount of try bonus where the game was won by 11?", "context": "CREATE TABLE table_13564637_3 (try_bonus VARCHAR, won VARCHAR)"}, {"answer": "SELECT COUNT(tries_against) FROM table_13564637_3 WHERE points_for = \"325\"", "question": "what is the total amount of tries where the points were 325?", "context": "CREATE TABLE table_13564637_3 (tries_against VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT \"points\" AS _against FROM table_13564637_4 WHERE \"points\" = \"points\"", "question": "What is the name of the column points against?", "context": "CREATE TABLE table_13564637_4 (Id VARCHAR)"}, {"answer": "SELECT points_for FROM table_13564637_4 WHERE points = \"53\"", "question": "How many points for when the points was 53?", "context": "CREATE TABLE table_13564637_4 (points_for VARCHAR, points VARCHAR)"}, {"answer": "SELECT played FROM table_13564637_4 WHERE points_against = \"321\"", "question": "What is the played total when the points against was 321?", "context": "CREATE TABLE table_13564637_4 (played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_for FROM table_13564637_4 WHERE points_against = \"547\"", "question": "How many tries for when the points against was 547?", "context": "CREATE TABLE table_13564637_4 (tries_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_13564637_4 WHERE club = \"Tylorstown RFC\"", "question": "How many total games drawn for club tylorstown rfc?", "context": "CREATE TABLE table_13564637_4 (drawn VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(autonomous_community) FROM table_13566548_1 WHERE total_renewable_generation = 1375", "question": "How many communities had a total renewable generation of 1375?", "context": "CREATE TABLE table_13566548_1 (autonomous_community VARCHAR, total_renewable_generation VARCHAR)"}, {"answer": "SELECT autonomous_community FROM table_13566548_1 WHERE wind_power = 1042", "question": "What is the community with a wind power of 1042?", "context": "CREATE TABLE table_13566548_1 (autonomous_community VARCHAR, wind_power VARCHAR)"}, {"answer": "SELECT COUNT(group) FROM table_1358608_4 WHERE distance = \"2020 m\"", "question": "How many races were for a distance of 2020 m?", "context": "CREATE TABLE table_1358608_4 (group VARCHAR, distance VARCHAR)"}, {"answer": "SELECT winner_2nd FROM table_1358608_4 WHERE venue = \"Belmont\"", "question": "Who was the winner of the race at Belmont?", "context": "CREATE TABLE table_1358608_4 (winner_2nd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_1358608_4 WHERE result = \"6th\"", "question": "On what date did Northerly place 6th?", "context": "CREATE TABLE table_1358608_4 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT weight__kg_ FROM table_1358608_4 WHERE race = \"Ranvet Stakes\"", "question": "What was the weight in kg on the day of the race at Ranvet Stakes?", "context": "CREATE TABLE table_1358608_4 (weight__kg_ VARCHAR, race VARCHAR)"}, {"answer": "SELECT result FROM table_1358608_4 WHERE date = \"19 Oct 2002\"", "question": "What was Northerly's result at the race on 19 Oct 2002?", "context": "CREATE TABLE table_1358608_4 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT distance FROM table_1358608_4 WHERE group = \"G3\"", "question": "What was the distance of the race in which Northerly raced in group G3?", "context": "CREATE TABLE table_1358608_4 (distance VARCHAR, group VARCHAR)"}, {"answer": "SELECT software_executable_space_protection FROM table_1357052_6 WHERE distribution = \"Gentoo\"", "question": "what's the\u00a0software executable space protection\u00a0with\u00a0dbeingtribution\u00a0being gentoo", "context": "CREATE TABLE table_1357052_6 (software_executable_space_protection VARCHAR, distribution VARCHAR)"}, {"answer": "SELECT distribution FROM table_1357052_6 WHERE grsecurity = \"No\"", "question": "what's the\u00a0dbeingtribution\u00a0with\u00a0grsecurity\u00a0being no", "context": "CREATE TABLE table_1357052_6 (distribution VARCHAR, grsecurity VARCHAR)"}, {"answer": "SELECT grsecurity FROM table_1357052_6 WHERE distribution = \"Debian / Ubuntu\"", "question": "what's the\u00a0grsecurity\u00a0with\u00a0dbeingtribution\u00a0being debian / ubuntu", "context": "CREATE TABLE table_1357052_6 (grsecurity VARCHAR, distribution VARCHAR)"}, {"answer": "SELECT distribution FROM table_1357052_6 WHERE grsecurity = \"Optional\" AND compile_time_buffer_checks = \"Yes\"", "question": "what's the\u00a0dbeingtribution\u00a0with\u00a0grsecurity\u00a0being optional and\u00a0compile time buffer checks\u00a0being yes", "context": "CREATE TABLE table_1357052_6 (distribution VARCHAR, grsecurity VARCHAR, compile_time_buffer_checks VARCHAR)"}, {"answer": "SELECT distribution FROM table_1357052_6 WHERE rsbac = \"Unknown\"", "question": "what's the\u00a0dbeingtribution\u00a0with\u00a0rsbac\u00a0being unknown", "context": "CREATE TABLE table_1357052_6 (distribution VARCHAR, rsbac VARCHAR)"}, {"answer": "SELECT 2002 AS _commission FROM table_136027_2 WHERE district = \"district 3\"", "question": "Who is on the 2002 commission from district 3?", "context": "CREATE TABLE table_136027_2 (district VARCHAR)"}, {"answer": "SELECT others_percentage FROM table_13608101_1 WHERE parish = \"Tangipahoa\"", "question": "what's the\u00a0others%\u00a0with\u00a0parbeingh\u00a0being tangipahoa", "context": "CREATE TABLE table_13608101_1 (others_percentage VARCHAR, parish VARCHAR)"}, {"answer": "SELECT MAX(bush_number) FROM table_13608101_1 WHERE others_percentage = \"1.57%\"", "question": "what is the maximum\u00a0bush#\u00a0with\u00a0others%\u00a0being 1.57%", "context": "CREATE TABLE table_13608101_1 (bush_number INTEGER, others_percentage VARCHAR)"}, {"answer": "SELECT COUNT(bush_percentage) FROM table_13608101_1 WHERE total_number = 191269", "question": " how many\u00a0bush%\u00a0with\u00a0total#\u00a0being 191269", "context": "CREATE TABLE table_13608101_1 (bush_percentage VARCHAR, total_number VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_13619027_10", "question": "What is the highest game number?", "context": "CREATE TABLE table_13619027_10 (game INTEGER)"}, {"answer": "SELECT COUNT(weight__kg_) FROM table_1360997_3 WHERE winner_2nd = \"1st - Defier\" AND venue = \"Randwick\"", "question": "How many entries are there for weight when the winner is 1st - defier and venue is randwick?", "context": "CREATE TABLE table_1360997_3 (weight__kg_ VARCHAR, winner_2nd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT jockey FROM table_1360997_3 WHERE venue = \"Rosehill\" AND weight__kg_ = \"57.5\"", "question": "Who was the jockey at Rosehill and the weight was 57.5 kg?", "context": "CREATE TABLE table_1360997_3 (jockey VARCHAR, venue VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT winner_2nd FROM table_1360997_3 WHERE time = \"1:36.30\"", "question": "When the time is 1:36.30 what shows as winner?", "context": "CREATE TABLE table_1360997_3 (winner_2nd VARCHAR, time VARCHAR)"}, {"answer": "SELECT income_poverty_f FROM table_13618358_1 WHERE exports__usd_mn__2011 = 2470", "question": "What was the depravitiy of earnings where international sales was 2470?", "context": "CREATE TABLE table_13618358_1 (income_poverty_f VARCHAR, exports__usd_mn__2011 VARCHAR)"}, {"answer": "SELECT MAX(2010 AS _population__000_) FROM table_13618358_1 WHERE agri_culture_b = \"6.9\"", "question": "What was head count in 2010 where the farm production is 6.9?", "context": "CREATE TABLE table_13618358_1 (agri_culture_b VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_13618358_1 WHERE income_poverty_f = \"27.7\"", "question": "How many districts had an depravity level of 27.7", "context": "CREATE TABLE table_13618358_1 (district VARCHAR, income_poverty_f VARCHAR)"}, {"answer": "SELECT income_poverty_f FROM table_13618358_1 WHERE services_ & _cons_truction_b = \"72.5\"", "question": "How low was the income where services is 72.5?", "context": "CREATE TABLE table_13618358_1 (income_poverty_f VARCHAR, services_ VARCHAR, _cons_truction_b VARCHAR)"}, {"answer": "SELECT income_poverty_f FROM table_13618358_1 WHERE district = \"San Juan\"", "question": "How low was the San Juan income?", "context": "CREATE TABLE table_13618358_1 (income_poverty_f VARCHAR, district VARCHAR)"}, {"answer": "SELECT high_assists FROM table_13619027_7 WHERE date = \"January 22\"", "question": "who is the player with high assists on january 22?", "context": "CREATE TABLE table_13619027_7 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_13619027_7 WHERE date = \"January 3\"", "question": "what is the total score for the date of january 3?", "context": "CREATE TABLE table_13619027_7 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_13619053_9 WHERE record = \"15-63\"", "question": "Which team was in a game with a record of 15-63?", "context": "CREATE TABLE table_13619053_9 (team VARCHAR, record VARCHAR)"}, {"answer": "SELECT team FROM table_13619053_9 WHERE date = \"April 1\"", "question": "Which team played on April 1?", "context": "CREATE TABLE table_13619053_9 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_13619053_8 WHERE game = 66", "question": "How many players led Game #66 in scoring?", "context": "CREATE TABLE table_13619053_8 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_13619053_8 WHERE record = \"13-49\"", "question": "Who scored the most points in the game where the Raptors became 13-49?", "context": "CREATE TABLE table_13619053_8 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT team FROM table_13619053_8 WHERE record = \"13-48\"", "question": "Who did the Raptors play against when their record was 13-48?", "context": "CREATE TABLE table_13619053_8 (team VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_13619105_3 WHERE record = \"1-4\"", "question": "Who was the high scorer in the game when the team was 1-4?", "context": "CREATE TABLE table_13619105_3 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_13619105_3 WHERE team = \"Minnesota\"", "question": "Where did they play and how many attended in the game against minnesota?", "context": "CREATE TABLE table_13619105_3 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_13619105_4 WHERE high_assists = \"Dee Brown (5)\"", "question": "Who had the high point total when dee brown (5) had the high assist total?", "context": "CREATE TABLE table_13619105_4 (high_points VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_13619135_5 WHERE date = \"January 14\"", "question": "How many records are there for the games that took place on January 14.", "context": "CREATE TABLE table_13619135_5 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_13619135_5 WHERE team = \"Seattle\"", "question": "Which players scored the most points when the opposing team was Seattle and how many points did they score?", "context": "CREATE TABLE table_13619135_5 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_13619135_5 WHERE team = \"Portland\"", "question": "What was the location and attendance of the game against Portland?", "context": "CREATE TABLE table_13619135_5 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_13619135_5 WHERE score = \"W 108\u201393 (OT)\"", "question": "What was the record when the score was w 108\u201393 (ot)?", "context": "CREATE TABLE table_13619135_5 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(total_population) FROM table_1364343_2 WHERE catholic < 31370649.1405057 AND region = \"North Africa\"", "question": " how many\u00a0total population\u00a0with\u00a0catholic\u00a0being smaller than 31370649.1405057 and\u00a0region\u00a0being north africa", "context": "CREATE TABLE table_1364343_2 (total_population VARCHAR, catholic VARCHAR, region VARCHAR)"}, {"answer": "SELECT wii_points FROM table_13663434_1 WHERE title_and_source = \"Ts\u016bshin Taikyoku: Igo D\u014dj\u014d 2700-Mon\"", "question": "what's the\u00a0wii points\u00a0with\u00a0title and source\u00a0being ts\u016bshin taikyoku: igo d\u014dj\u014d 2700-mon", "context": "CREATE TABLE table_13663434_1 (wii_points VARCHAR, title_and_source VARCHAR)"}, {"answer": "SELECT na__350_ FROM table_13663434_1 WHERE title_and_source = \"Paper Wars: Cannon Fodder\"", "question": "what's the\u00a0na -350-\u00a0with\u00a0title and source\u00a0being paper wars: cannon fodder", "context": "CREATE TABLE table_13663434_1 (na__350_ VARCHAR, title_and_source VARCHAR)"}, {"answer": "SELECT COUNT(title_and_source) FROM table_13663434_1 WHERE pal__295_ = \"Yes\" AND jp__210_ = \"Yes\"", "question": " how many\u00a0title and source\u00a0with\u00a0pal -295-\u00a0being yes and\u00a0jp -210-\u00a0being yes", "context": "CREATE TABLE table_13663434_1 (title_and_source VARCHAR, pal__295_ VARCHAR, jp__210_ VARCHAR)"}, {"answer": "SELECT jp__210_ FROM table_13663434_1 WHERE title_and_source = \"Fun! Fun! Minigolf\"", "question": "what's the\u00a0jp -210-\u00a0with\u00a0title and source\u00a0being fun! fun! minigolf", "context": "CREATE TABLE table_13663434_1 (jp__210_ VARCHAR, title_and_source VARCHAR)"}, {"answer": "SELECT COUNT(na__350_) FROM table_13663434_1 WHERE title_and_source = \"Bokumo Sekai wo Sukuitai: Battle Tournament\"", "question": " how many\u00a0na -350-\u00a0with\u00a0title and source\u00a0being bokumo sekai wo sukuitai: battle tournament", "context": "CREATE TABLE table_13663434_1 (na__350_ VARCHAR, title_and_source VARCHAR)"}, {"answer": "SELECT gtu_winning_team FROM table_13657883_2 WHERE gto_winning_team = \"#48 Greenwood Racing\"", "question": "What was the gtu winning team when the gto winning team was #48 greenwood racing?", "context": "CREATE TABLE table_13657883_2 (gtu_winning_team VARCHAR, gto_winning_team VARCHAR)"}, {"answer": "SELECT to_winning_team FROM table_13657883_2 WHERE tu_winning_team = \"#16 2002\"", "question": "What was the to winnning team when the tu winning team was #16 2002?", "context": "CREATE TABLE table_13657883_2 (to_winning_team VARCHAR, tu_winning_team VARCHAR)"}, {"answer": "SELECT rnd FROM table_13657883_2 WHERE gto_winning_team = \"#48 Greenwood Racing\"", "question": "What round was the gto winning team #48 greenwood racing?", "context": "CREATE TABLE table_13657883_2 (rnd VARCHAR, gto_winning_team VARCHAR)"}, {"answer": "SELECT to_winning_team FROM table_13657883_2 WHERE tu_winning_team = \"Joe Amato Carson Baird\"", "question": "What was the to winning team when the tu winning team was joe amato carson baird?", "context": "CREATE TABLE table_13657883_2 (to_winning_team VARCHAR, tu_winning_team VARCHAR)"}, {"answer": "SELECT to_winning_team FROM table_13657749_2 WHERE gtu_winning_team = \"#27 Don Lindley\"", "question": "Who is GTU Winning Team's #27 Don Lindley's TO Winning Team?", "context": "CREATE TABLE table_13657749_2 (to_winning_team VARCHAR, gtu_winning_team VARCHAR)"}, {"answer": "SELECT rnd FROM table_13657749_2 WHERE gto_winning_team = \"Mike Keyser\"", "question": "What is GTO Winning Team Mike Keyser's RND number?", "context": "CREATE TABLE table_13657749_2 (rnd VARCHAR, gto_winning_team VARCHAR)"}, {"answer": "SELECT to_winning_team FROM table_13657749_2 WHERE gto_winning_team = \"Gene Felton\"", "question": "Who is Gene Felton's TO Winning Team?", "context": "CREATE TABLE table_13657749_2 (to_winning_team VARCHAR, gto_winning_team VARCHAR)"}, {"answer": "SELECT results FROM table_13657749_2 WHERE gto_winning_team = \"Peter Gregg Hurley Haywood\"", "question": "What is Peter Gregg Hurley Haywood's results?", "context": "CREATE TABLE table_13657749_2 (results VARCHAR, gto_winning_team VARCHAR)"}, {"answer": "SELECT MIN(goals_olimpia) FROM table_13688489_1", "question": "What was the least amount for Goals Olimpia?", "context": "CREATE TABLE table_13688489_1 (goals_olimpia INTEGER)"}, {"answer": "SELECT COUNT(goals_olimpia) FROM table_13688489_1 WHERE matches = 32", "question": "How many goals Olimpia recorded for 32 matches?", "context": "CREATE TABLE table_13688489_1 (goals_olimpia VARCHAR, matches VARCHAR)"}, {"answer": "SELECT matches FROM table_13688489_1 WHERE goals_olimpia = 149", "question": "What was the number of matches when the Goals Olimpia was 149?", "context": "CREATE TABLE table_13688489_1 (matches VARCHAR, goals_olimpia VARCHAR)"}, {"answer": "SELECT time_required_for_prices_to_double FROM table_13681_2 WHERE highest_monthly_inflation_rate = \"29,500%\"", "question": "what's the\u00a0time required for prices to double\u00a0with\u00a0highest monthly inflation rate\u00a0being 29,500%", "context": "CREATE TABLE table_13681_2 (time_required_for_prices_to_double VARCHAR, highest_monthly_inflation_rate VARCHAR)"}, {"answer": "SELECT currency_name FROM table_13681_2 WHERE highest_monthly_inflation_rate = \"29,500%\"", "question": "what's the\u00a0currency name\u00a0with\u00a0highest monthly inflation rate\u00a0being 29,500%", "context": "CREATE TABLE table_13681_2 (currency_name VARCHAR, highest_monthly_inflation_rate VARCHAR)"}, {"answer": "SELECT COUNT(equivalent_daily_inflation_rate) FROM table_13681_2 WHERE time_required_for_prices_to_double = \"3.7 days\"", "question": " how many\u00a0equivalent daily inflation rate\u00a0with\u00a0time required for prices to double\u00a0being 3.7 days", "context": "CREATE TABLE table_13681_2 (equivalent_daily_inflation_rate VARCHAR, time_required_for_prices_to_double VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_13681_2 WHERE currency_name = \"Republika Srpska dinar\"", "question": " how many\u00a0country\u00a0with\u00a0currency name\u00a0being republika srpska dinar", "context": "CREATE TABLE table_13681_2 (country VARCHAR, currency_name VARCHAR)"}, {"answer": "SELECT COUNT(equivalent_daily_inflation_rate) FROM table_13681_2 WHERE currency_name = \"Republika Srpska dinar\"", "question": " how many\u00a0equivalent daily inflation rate\u00a0with\u00a0currency name\u00a0being republika srpska dinar", "context": "CREATE TABLE table_13681_2 (equivalent_daily_inflation_rate VARCHAR, currency_name VARCHAR)"}, {"answer": "SELECT country FROM table_13681_2 WHERE highest_monthly_inflation_rate = \"3.13 \u00d7 10 8 %\"", "question": "what's the\u00a0country\u00a0with\u00a0highest monthly inflation rate\u00a0being 3.13 \u00d7 10 8 %", "context": "CREATE TABLE table_13681_2 (country VARCHAR, highest_monthly_inflation_rate VARCHAR)"}, {"answer": "SELECT COUNT(grand_final_dual_television_commentator) FROM table_1368649_9 WHERE year_s_ = 1961", "question": "How many grand final dual television commentators were there in 1961?", "context": "CREATE TABLE table_1368649_9 (grand_final_dual_television_commentator VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT spokesperson FROM table_1368649_9 WHERE year_s_ = 1970", "question": "Who was the spokesperson for France in 1970?", "context": "CREATE TABLE table_1368649_9 (spokesperson VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT MIN(year_s_) FROM table_1368649_9 WHERE spokesperson = \"Thierry Beccaro\"", "question": "What year was Thierry Beccaro the spokesperson?", "context": "CREATE TABLE table_1368649_9 (year_s_ INTEGER, spokesperson VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_13710464_1 WHERE date = \"June 25\"", "question": "How many games played on june 25?", "context": "CREATE TABLE table_13710464_1 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_team FROM table_13710464_1 WHERE date = \"May 21\"", "question": "Who won the game on may 21?", "context": "CREATE TABLE table_13710464_1 (winning_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT losing_pitcher FROM table_13710464_1 WHERE attendance = 40583", "question": "Who was the losing pitcher when 40583 attended?", "context": "CREATE TABLE table_13710464_1 (losing_pitcher VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT winning_pitcher FROM table_13710464_1 WHERE losing_pitcher = \"Ezequiel Astacio\"", "question": "Who was the wenning witcher when ezequiel astacio was the losing pitcher?", "context": "CREATE TABLE table_13710464_1 (winning_pitcher VARCHAR, losing_pitcher VARCHAR)"}, {"answer": "SELECT location FROM table_13710464_1 WHERE date = \"May 20\"", "question": "Where was the game played on may 20?", "context": "CREATE TABLE table_13710464_1 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(club__city_town_) FROM table_13713206_1 WHERE w_l_d = \"5-7-4\"", "question": "On what position number is the club with a w-l-d of 5-7-4?", "context": "CREATE TABLE table_13713206_1 (club__city_town_ VARCHAR, w_l_d VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_13713206_1 WHERE w_l_d = \"6-2-8\"", "question": "What's the position of the club with w-l-d of 6-2-8?", "context": "CREATE TABLE table_13713206_1 (position INTEGER, w_l_d VARCHAR)"}, {"answer": "SELECT games_played FROM table_13713206_1 WHERE goals_for_against = \"29-24\"", "question": "How many games has the club with 29-24 goals for/against score played? ", "context": "CREATE TABLE table_13713206_1 (games_played VARCHAR, goals_for_against VARCHAR)"}, {"answer": "SELECT COUNT(original_title) FROM table_13719788_1 WHERE film_title_used_in_nomination = \"Gie\"", "question": "How many films titled Gie have been nominated?", "context": "CREATE TABLE table_13719788_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT director FROM table_13719788_1 WHERE original_title = \"Biola tak berdawai\"", "question": "Who is the director of the fimm Biola Tak Berdawai?", "context": "CREATE TABLE table_13719788_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_13719788_1 WHERE original_title = \"Biola tak berdawai\"", "question": "What title was used in the nomination for the title Biola Tak Berdawai?", "context": "CREATE TABLE table_13719788_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT COUNT(year__ceremony_) FROM table_13719788_1 WHERE film_title_used_in_nomination = \"Nagabonar\"", "question": "How many years have a film that uses the title \"Nagabonar\" in the nomination?", "context": "CREATE TABLE table_13719788_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT director FROM table_13719788_1 WHERE film_title_used_in_nomination = \"Gie\"", "question": "Who is the director of the film Gie?", "context": "CREATE TABLE table_13719788_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_13741576_4 WHERE tries_against = \"70\"", "question": "Name the try bonus for tries against is 70", "context": "CREATE TABLE table_13741576_4 (try_bonus VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_13741576_4 WHERE tries_against = \"43\"", "question": "What is the try bonus for when tries against is 43?", "context": "CREATE TABLE table_13741576_4 (try_bonus VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_13741576_4 WHERE club = \"Llandaff RFC\"", "question": "Name the drawn for llandaff rfc", "context": "CREATE TABLE table_13741576_4 (drawn VARCHAR, club VARCHAR)"}, {"answer": "SELECT won FROM table_13741576_4 WHERE try_bonus = \"10\"", "question": "Name the won for try bonus of 10", "context": "CREATE TABLE table_13741576_4 (won VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT asset_acquired FROM table_1373542_1 WHERE date_announced = \"July 2, 2006\"", "question": "It was announced on July 2, 2006 that what asset was acquired? ", "context": "CREATE TABLE table_1373542_1 (asset_acquired VARCHAR, date_announced VARCHAR)"}, {"answer": "SELECT date_announced FROM table_1373542_1 WHERE reported_cost = \"US$9 million\"", "question": "On what date was it announced that an asset was acquired for US$9 Million? ", "context": "CREATE TABLE table_1373542_1 (date_announced VARCHAR, reported_cost VARCHAR)"}, {"answer": "SELECT date_completed FROM table_1373542_1 WHERE date_announced = \"February 22, 2007\"", "question": "On what date was the asset acquisition that was announced on February 22, 2007 completed?  ", "context": "CREATE TABLE table_1373542_1 (date_completed VARCHAR, date_announced VARCHAR)"}, {"answer": "SELECT reported_cost FROM table_1373542_1 WHERE acquired_from = \"Standard & Poor's\"", "question": "What was the reported cost of the asset acquired from Standard & Poor's? ", "context": "CREATE TABLE table_1373542_1 (reported_cost VARCHAR, acquired_from VARCHAR)"}, {"answer": "SELECT trim FROM table_1373768_1 WHERE fuel_mileage__latest_epa_mpg___us__ = \"22 city, 30 hwy, 25 comb\"", "question": "what's the\u00a0trim\u00a0with\u00a0fuel mileage (latest epa mpg - us )\u00a0being 22 city, 30 hwy, 25 comb", "context": "CREATE TABLE table_1373768_1 (trim VARCHAR, fuel_mileage__latest_epa_mpg___us__ VARCHAR)"}, {"answer": "SELECT trim FROM table_1373768_1 WHERE engine = \"3.5L LZ4 V6\"", "question": "what's the\u00a0trim\u00a0with\u00a0engine\u00a0being 3.5l lz4 v6", "context": "CREATE TABLE table_1373768_1 (trim VARCHAR, engine VARCHAR)"}, {"answer": "SELECT torque FROM table_1373768_1 WHERE fuel_mileage__latest_epa_mpg___us__ = \"22 city, 30 hwy, 25 comb\"", "question": "what's the\u00a0torque\u00a0with\u00a0fuel mileage (latest epa mpg - us )\u00a0being 22 city, 30 hwy, 25 comb", "context": "CREATE TABLE table_1373768_1 (torque VARCHAR, fuel_mileage__latest_epa_mpg___us__ VARCHAR)"}, {"answer": "SELECT torque FROM table_1373768_1 WHERE trim = \"XE (2009)\"", "question": "what's the\u00a0torque\u00a0with\u00a0trim\u00a0being xe (2009)", "context": "CREATE TABLE table_1373768_1 (torque VARCHAR, trim VARCHAR)"}, {"answer": "SELECT transmission FROM table_1373768_1 WHERE trim = \"XE (2009)\"", "question": "what's the\u00a0transmbeingsion\u00a0with\u00a0trim\u00a0being xe (2009)", "context": "CREATE TABLE table_1373768_1 (transmission VARCHAR, trim VARCHAR)"}, {"answer": "SELECT points FROM table_13741576_6 WHERE points_for = \"546\"", "question": "Nantyglo RFC had 546 points for and how many points?", "context": "CREATE TABLE table_13741576_6 (points VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT club FROM table_13741576_6 WHERE points_against = \"523\"", "question": "What club had 523 points against? ", "context": "CREATE TABLE table_13741576_6 (club VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT club FROM table_13741576_6 WHERE points_for = \"536\"", "question": "What club has 536 points for?", "context": "CREATE TABLE table_13741576_6 (club VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT COUNT(club) FROM table_13741576_6 WHERE won = \"7\"", "question": "How many clubs had 7 wins? ", "context": "CREATE TABLE table_13741576_6 (club VARCHAR, won VARCHAR)"}, {"answer": "SELECT club FROM table_13741576_6 WHERE points_against = \"404\"", "question": "What club had 404 points against? ", "context": "CREATE TABLE table_13741576_6 (club VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_13741576_6 WHERE tries_for = \"54\"", "question": "Risca RFC has 54 tries for and how many draws? ", "context": "CREATE TABLE table_13741576_6 (drawn VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT club FROM table_13758945_1 WHERE points = \"36\"", "question": "What club has 36 points?", "context": "CREATE TABLE table_13758945_1 (club VARCHAR, points VARCHAR)"}, {"answer": "SELECT lost FROM table_13758945_1 WHERE points_for = \"353\"", "question": "What are the lost where points lost is 353?", "context": "CREATE TABLE table_13758945_1 (lost VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT won FROM table_13758945_1 WHERE losing_bonus = \"0\"", "question": "What are the won games with losing bonus of 0?", "context": "CREATE TABLE table_13758945_1 (won VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT club FROM table_13758945_1 WHERE points_for = \"565\"", "question": "Which club has 565 points?", "context": "CREATE TABLE table_13758945_1 (club VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT tries_for FROM table_13758945_1 WHERE points = \"77\"", "question": "How many tries where points is 77?", "context": "CREATE TABLE table_13758945_1 (tries_for VARCHAR, points VARCHAR)"}, {"answer": "SELECT percentage_of_votes FROM table_13746866_2 WHERE number_of_deputies = 112", "question": "what's the\u00a0percentage of votes\u00a0with\u00a0number of deputies\u00a0being 112", "context": "CREATE TABLE table_13746866_2 (percentage_of_votes VARCHAR, number_of_deputies VARCHAR)"}, {"answer": "SELECT percentage_of_votes FROM table_13746866_2 WHERE election_date = 1981", "question": "what's the\u00a0percentage of votes\u00a0with\u00a0election date\u00a0being 1981", "context": "CREATE TABLE table_13746866_2 (percentage_of_votes VARCHAR, election_date VARCHAR)"}, {"answer": "SELECT number_of_deputies FROM table_13746866_2 WHERE number_of_votes_received < 1549176.2765483726 AND election_date = 1969", "question": "what's the\u00a0number of deputies\u00a0with\u00a0number of votes received\u00a0being smaller than 1549176.2765483726 and\u00a0election date\u00a0being 1969", "context": "CREATE TABLE table_13746866_2 (number_of_deputies VARCHAR, number_of_votes_received VARCHAR, election_date VARCHAR)"}, {"answer": "SELECT story_by FROM table_13755296_1 WHERE directed_by = \"Dan Attias\"", "question": "Who wrote the sorry of the episode directed by Dan Attias? ", "context": "CREATE TABLE table_13755296_1 (story_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(season__number) FROM table_13755296_1 WHERE directed_by = \"Dan Attias\"", "question": "What's the season number of the episode directed by Dan Attias? ", "context": "CREATE TABLE table_13755296_1 (season__number INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_13755296_1 WHERE teleplay_by = \"David Simon\"", "question": "What's the title of the episode written by David Simon? ", "context": "CREATE TABLE table_13755296_1 (title VARCHAR, teleplay_by VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_13759592_1 WHERE high_school = \"Skyline\"", "question": "What year was Skyline High School founded?", "context": "CREATE TABLE table_13759592_1 (founded VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_13759592_1 WHERE high_school = \"Roosevelt\"", "question": "How many enrollment figures are provided for Roosevelt High School?", "context": "CREATE TABLE table_13759592_1 (enrollment VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT location FROM table_13759592_1 WHERE nickname = \"Vikings\"", "question": "Which location has a team that is nicknamed the Vikings?", "context": "CREATE TABLE table_13759592_1 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT founded FROM table_13759592_2 WHERE location = \"Kirkland\"", "question": "What year was Kirkland founded?", "context": "CREATE TABLE table_13759592_2 (founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT institution FROM table_13759592_2 WHERE founded = 1923", "question": "Which institution was founded in 1923?", "context": "CREATE TABLE table_13759592_2 (institution VARCHAR, founded VARCHAR)"}, {"answer": "SELECT location FROM table_13759592_2 WHERE institution = \"Interlake\"", "question": "Where is Interlake located?", "context": "CREATE TABLE table_13759592_2 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT series FROM table_13762472_13 WHERE date = \"May 23\"", "question": "What was the series count at on May 23? ", "context": "CREATE TABLE table_13762472_13 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_13762472_5", "question": "What is the lowest numbered game on the list?", "context": "CREATE TABLE table_13762472_5 (game INTEGER)"}, {"answer": "SELECT high_rebounds FROM table_13762472_5 WHERE location_attendance = \"Delta Center\"", "question": "Who had the high rebounds at the delta center?", "context": "CREATE TABLE table_13762472_5 (high_rebounds VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_13762472_5 WHERE record = \"19-13\"", "question": "How many people had the high rebound total when the team was 19-13?", "context": "CREATE TABLE table_13762472_5 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_13762472_5 WHERE record = \"24-17\"", "question": "Who had the high point total when the team was 24-17?", "context": "CREATE TABLE table_13762472_5 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_13762472_7 WHERE location_attendance = \"Charlotte Arena\"", "question": "What was the score when the heat played at charlotte arena?", "context": "CREATE TABLE table_13762472_7 (score VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT game FROM table_13762472_7 WHERE record = \"40-20\"", "question": "How many games had the team played after they were 40-20?", "context": "CREATE TABLE table_13762472_7 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_13762472_3 WHERE date = \"November 25\"", "question": "What was the score on November 25?", "context": "CREATE TABLE table_13762472_3 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_13762472_3 WHERE team = \"New Orleans/Oklahoma City\"", "question": "How many players scored the most points when the opposing team was New Orleans/Oklahoma City?", "context": "CREATE TABLE table_13762472_3 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_13762472_3 WHERE game = 4", "question": "How many players scored the most points on game 4?", "context": "CREATE TABLE table_13762472_3 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_13762472_3 WHERE record = \"6-3\"", "question": "What was the last game where the record was 6-3?", "context": "CREATE TABLE table_13762472_3 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT country_region FROM table_13779832_1 WHERE seasons_and_winners = \"Season 1, 2012: Demetra Malalan\"", "question": "what's the\u00a0country/region\u00a0with\u00a0seasons and winners\u00a0being season 1, 2012: demetra malalan", "context": "CREATE TABLE table_13779832_1 (country_region VARCHAR, seasons_and_winners VARCHAR)"}, {"answer": "SELECT COUNT(local_title) FROM table_13779832_1 WHERE television_network = \"TV Nova Website\"", "question": " how many\u00a0local title\u00a0with\u00a0televbeingion network\u00a0being tv nova website", "context": "CREATE TABLE table_13779832_1 (local_title VARCHAR, television_network VARCHAR)"}, {"answer": "SELECT judges FROM table_13779832_1 WHERE seasons_and_winners = \"Season 1, 2013\u20132014: Upcoming season\"", "question": "who is the the\u00a0judges\u00a0with\u00a0seasons and winners\u00a0being season 1, 2013\u20132014: upcoming season", "context": "CREATE TABLE table_13779832_1 (judges VARCHAR, seasons_and_winners VARCHAR)"}, {"answer": "SELECT judges FROM table_13779832_1 WHERE local_title = \"X Factor\" AND presenters = \"Heikki Paasonen Jukka Rossi (Xtra Factor)\"", "question": "who is the the\u00a0judges\u00a0with\u00a0local title\u00a0being x factor and\u00a0presenters\u00a0being heikki paasonen jukka rossi (xtra factor)", "context": "CREATE TABLE table_13779832_1 (judges VARCHAR, local_title VARCHAR, presenters VARCHAR)"}, {"answer": "SELECT local_title FROM table_13779832_1 WHERE seasons_and_winners = \"Series 1, 2006: Lucy Benjamin\"", "question": "what's the\u00a0local title\u00a0with\u00a0seasons and winners\u00a0being series 1, 2006: lucy benjamin", "context": "CREATE TABLE table_13779832_1 (local_title VARCHAR, seasons_and_winners VARCHAR)"}, {"answer": "SELECT country_region FROM table_13779832_1 WHERE presenters = \"Heikki Paasonen Jukka Rossi (Xtra Factor)\"", "question": "what's the\u00a0country/region\u00a0with\u00a0presenters\u00a0being heikki paasonen jukka rossi (xtra factor)", "context": "CREATE TABLE table_13779832_1 (country_region VARCHAR, presenters VARCHAR)"}, {"answer": "SELECT COUNT(chroma_format) FROM table_1376890_2 WHERE name = \"High profile\"", "question": " how many\u00a0chroma format\u00a0with\u00a0name\u00a0being high profile", "context": "CREATE TABLE table_1376890_2 (chroma_format VARCHAR, name VARCHAR)"}, {"answer": "SELECT chroma_format FROM table_1376890_2 WHERE scalable_modes = \"SNR- or spatial-scalable\" AND intra_dc_precision = \"8, 9, 10\"", "question": "what's the\u00a0chroma format\u00a0with\u00a0scalable modes\u00a0being snr- or spatial-scalable and\u00a0intra dc precbeingion\u00a0being 8, 9, 10", "context": "CREATE TABLE table_1376890_2 (chroma_format VARCHAR, scalable_modes VARCHAR, intra_dc_precision VARCHAR)"}, {"answer": "SELECT chroma_format FROM table_1376890_2 WHERE name = \"High profile\"", "question": "what's the\u00a0chroma format\u00a0with\u00a0name\u00a0being high profile", "context": "CREATE TABLE table_1376890_2 (chroma_format VARCHAR, name VARCHAR)"}, {"answer": "SELECT points FROM table_13789248_2 WHERE artist = \"Dave Appell\"", "question": "what's the\u00a0points\u00a0with\u00a0artbeingt\u00a0being dave appell", "context": "CREATE TABLE table_13789248_2 (points VARCHAR, artist VARCHAR)"}, {"answer": "SELECT artist FROM table_13789248_2 WHERE position = 32", "question": "who is the the\u00a0artbeingt\u00a0with\u00a0position\u00a0being 32", "context": "CREATE TABLE table_13789248_2 (artist VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(song_title) FROM table_13789248_2 WHERE artist = \"Chubby Checker\"", "question": " how many\u00a0song title\u00a0with\u00a0artbeingt\u00a0being chubby checker", "context": "CREATE TABLE table_13789248_2 (song_title VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_13789248_2 WHERE highest_position = 1", "question": "what is the minimum\u00a0points\u00a0with\u00a0highest position\u00a0being 1", "context": "CREATE TABLE table_13789248_2 (points INTEGER, highest_position VARCHAR)"}, {"answer": "SELECT MAX(transit_passengers) FROM table_13836704_7 WHERE international_passengers = 4870184", "question": "What is the maximum number of trnsit passeners when the total number of international passengers is 4870184?", "context": "CREATE TABLE table_13836704_7 (transit_passengers INTEGER, international_passengers VARCHAR)"}, {"answer": "SELECT MAX(freight___metric_tonnes__) FROM table_13836704_7 WHERE airport = \"Edinburgh\"", "question": "What is Edinburgh's airport's freight in metric tonnes?", "context": "CREATE TABLE table_13836704_7 (freight___metric_tonnes__ INTEGER, airport VARCHAR)"}, {"answer": "SELECT COUNT(transit_passengers) FROM table_13836704_7 WHERE airport = \"London Luton\"", "question": "How many different total number of transit passengers are there in London Luton?", "context": "CREATE TABLE table_13836704_7 (transit_passengers VARCHAR, airport VARCHAR)"}, {"answer": "SELECT freight___metric_tonnes__ FROM table_13836704_7 WHERE transit_passengers = 147791", "question": "What are the total freights in metric tonnes when the total transit passengers is 147791?", "context": "CREATE TABLE table_13836704_7 (freight___metric_tonnes__ VARCHAR, transit_passengers VARCHAR)"}, {"answer": "SELECT international_passengers FROM table_13836704_7 WHERE rank = 15", "question": "What is the total number of passengers of the airport ranked 15?", "context": "CREATE TABLE table_13836704_7 (international_passengers VARCHAR, rank VARCHAR)"}, {"answer": "SELECT original_title FROM table_13834298_1 WHERE film_title_used_in_nomination = \"Lion's Den\"", "question": "Whatis the original title for lion's den?", "context": "CREATE TABLE table_13834298_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT _percentage_change_2008_2009 FROM table_13836704_6 WHERE airport = \"Belfast International\"", "question": "What is the percent change from 08/09 for belfast international?", "context": "CREATE TABLE table_13836704_6 (_percentage_change_2008_2009 VARCHAR, airport VARCHAR)"}, {"answer": "SELECT transit_passengers FROM table_13836704_6 WHERE airport = \"London Gatwick\"", "question": "How many transit passengers at london gatwick?", "context": "CREATE TABLE table_13836704_6 (transit_passengers VARCHAR, airport VARCHAR)"}, {"answer": "SELECT rank FROM table_13836704_6 WHERE freight___metric_tonnes__ = 255121", "question": "What is the rank of the airport with freight ( metric tonnes ) of 255121?", "context": "CREATE TABLE table_13836704_6 (rank VARCHAR, freight___metric_tonnes__ VARCHAR)"}, {"answer": "SELECT rank FROM table_13836704_6 WHERE freight___metric_tonnes__ = 23791", "question": "What is the rank of the airport with a  freight ( metric tonnes ) of 23791?", "context": "CREATE TABLE table_13836704_6 (rank VARCHAR, freight___metric_tonnes__ VARCHAR)"}, {"answer": "SELECT airport FROM table_13836704_4 WHERE total_passengers_2009 = 157933", "question": "what's the\u00a0airport\u00a0with\u00a0total passengers 2009\u00a0being 157933", "context": "CREATE TABLE table_13836704_4 (airport VARCHAR, total_passengers_2009 VARCHAR)"}, {"answer": "SELECT MAX(total_passengers_2008) FROM table_13836704_4 WHERE change_2008_09 = \"6.5%\"", "question": "what being the maximum\u00a0total passengers 2008\u00a0with\u00a0change 2008/09\u00a0being 6.5%", "context": "CREATE TABLE table_13836704_4 (total_passengers_2008 INTEGER, change_2008_09 VARCHAR)"}, {"answer": "SELECT airport FROM table_13836704_4 WHERE aircraft_movements_2009 < 238223.1659471435 AND change_2008_09 = \"0.5%\"", "question": "what's the\u00a0airport\u00a0with\u00a0aircraft movements 2009\u00a0being smaller than 238223.1659471435 and\u00a0change 2008/09\u00a0being 0.5%", "context": "CREATE TABLE table_13836704_4 (airport VARCHAR, aircraft_movements_2009 VARCHAR, change_2008_09 VARCHAR)"}, {"answer": "SELECT MAX(aircraft_movements_2009) FROM table_13836704_4 WHERE change_2008_09 = \"18.2%\"", "question": "what is the maximum\u00a0aircraft movements 2009\u00a0with\u00a0change 2008/09\u00a0being 18.2%", "context": "CREATE TABLE table_13836704_4 (aircraft_movements_2009 INTEGER, change_2008_09 VARCHAR)"}, {"answer": "SELECT total_passengers_2008 FROM table_13836704_4 WHERE change_2008_09 = \"6.5%\"", "question": "what's the\u00a0total passengers 2008\u00a0with\u00a0change 2008/09\u00a0being 6.5%", "context": "CREATE TABLE table_13836704_4 (total_passengers_2008 VARCHAR, change_2008_09 VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_13836704_8 WHERE airport = \"Birmingham airport\"", "question": "Name the rank of birmingham airport", "context": "CREATE TABLE table_13836704_8 (rank INTEGER, airport VARCHAR)"}, {"answer": "SELECT MAX(transit_passengers) FROM table_13836704_8 WHERE freight__metric_tonnes_ = 171078", "question": "Name the transit passengers for 171078", "context": "CREATE TABLE table_13836704_8 (transit_passengers INTEGER, freight__metric_tonnes_ VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_13857501_1 WHERE womens_singles = \"Beata Syta\"", "question": "Beata syta is the minimum year for womens singles.", "context": "CREATE TABLE table_13857501_1 (year INTEGER, womens_singles VARCHAR)"}, {"answer": "SELECT MAX(aircraft_movements) FROM table_13836704_9 WHERE international_passengers = 21002260", "question": "what is the maximum\u00a0aircraft movements\u00a0with\u00a0international passengers\u00a0being 21002260", "context": "CREATE TABLE table_13836704_9 (aircraft_movements INTEGER, international_passengers VARCHAR)"}, {"answer": "SELECT MAX(freight__metric_tonnes_) FROM table_13836704_9 WHERE airport = \"Liverpool\"", "question": "what is the maximum\u00a0freight (metric tonnes)\u00a0with\u00a0airport\u00a0being liverpool", "context": "CREATE TABLE table_13836704_9 (freight__metric_tonnes_ INTEGER, airport VARCHAR)"}, {"answer": "SELECT airport FROM table_13836704_9 WHERE _percentage_change_2005_2006 = \"13.0%\"", "question": "what's the\u00a0airport\u00a0with\u00a0% change 2005/2006\u00a0being 13.0%", "context": "CREATE TABLE table_13836704_9 (airport VARCHAR, _percentage_change_2005_2006 VARCHAR)"}, {"answer": "SELECT MAX(aircraft_movements) FROM table_13836704_9 WHERE airport = \"Liverpool\"", "question": "what is the maximum\u00a0aircraft movements\u00a0with\u00a0airport\u00a0being liverpool", "context": "CREATE TABLE table_13836704_9 (aircraft_movements INTEGER, airport VARCHAR)"}, {"answer": "SELECT total_passengers FROM table_13836704_9 WHERE freight__metric_tonnes_ = 827", "question": "what's the\u00a0total passengers\u00a0with\u00a0freight (metric tonnes)\u00a0being 827", "context": "CREATE TABLE table_13836704_9 (total_passengers VARCHAR, freight__metric_tonnes_ VARCHAR)"}, {"answer": "SELECT COUNT(airport) FROM table_13836704_9 WHERE rank = 4", "question": " how many\u00a0airport\u00a0with\u00a0rank\u00a0being 4", "context": "CREATE TABLE table_13836704_9 (airport VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(mens_singles) FROM table_13857700_1 WHERE mens_doubles = \"Pontus Jantti Lasse Lindel\u00f6f\"", "question": " how many\u00a0mens singles\u00a0with\u00a0mens doubles\u00a0being pontus jantti lasse lindel\u00f6f", "context": "CREATE TABLE table_13857700_1 (mens_singles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_13857700_1 WHERE mixed_doubles = \"Jimm Aalto Nina Sarnesto\"", "question": "who is the the\u00a0mens doubles\u00a0with\u00a0mixed doubles\u00a0being jimm aalto nina sarnesto", "context": "CREATE TABLE table_13857700_1 (mens_doubles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_13857700_1 WHERE year = 1972", "question": "who is the the\u00a0mixed doubles\u00a0with\u00a0year\u00a0being 1972", "context": "CREATE TABLE table_13857700_1 (mixed_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_13857700_1 WHERE year = 1978", "question": "who is the the\u00a0mens doubles\u00a0with\u00a0year\u00a0being 1978", "context": "CREATE TABLE table_13857700_1 (mens_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_13857700_1 WHERE mens_doubles = \"Kaj Lindfors Kaj Osterberg\"", "question": "who is the the\u00a0mens singles\u00a0with\u00a0mens doubles\u00a0being kaj lindfors kaj osterberg", "context": "CREATE TABLE table_13857700_1 (mens_singles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT area__sqmi_ FROM table_13897690_1 WHERE area__km_2__ = 4065", "question": "How big (in sq mi)  is the island that's 4065 km2?", "context": "CREATE TABLE table_13897690_1 (area__sqmi_ VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_13897690_1", "question": "What is the smallest rank number of those used to rank the islands? ", "context": "CREATE TABLE table_13897690_1 (rank INTEGER)"}, {"answer": "SELECT islands_name FROM table_13897690_1 WHERE population__2000_ = \"64\"", "question": "What's the name is the island with a population of just 64?", "context": "CREATE TABLE table_13897690_1 (islands_name VARCHAR, population__2000_ VARCHAR)"}, {"answer": "SELECT tries_against FROM table_13940275_5 WHERE try_bonus = \"10\"", "question": "what's the\u00a0tries against\u00a0with\u00a0try bonus\u00a0being 10", "context": "CREATE TABLE table_13940275_5 (tries_against VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT points FROM table_13940275_5 WHERE played = \"22\" AND points_against = \"319\"", "question": "what's the\u00a0points\u00a0with\u00a0played\u00a0being 22 and\u00a0points against\u00a0being 319", "context": "CREATE TABLE table_13940275_5 (points VARCHAR, played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_13940275_5 WHERE played = \"22\" AND tries_against = \"38\"", "question": "what's the\u00a0losing bonus\u00a0with\u00a0played\u00a0being 22 and\u00a0tries against\u00a0being 38", "context": "CREATE TABLE table_13940275_5 (losing_bonus VARCHAR, played VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_13940275_5 WHERE club = \"Abercwmboi RFC\"", "question": "what's the\u00a0try bonus\u00a0with\u00a0club\u00a0being abercwmboi rfc", "context": "CREATE TABLE table_13940275_5 (try_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_for FROM table_13940275_5 WHERE points_against = \"556\"", "question": "what's the\u00a0points for\u00a0with\u00a0points against\u00a0being 556", "context": "CREATE TABLE table_13940275_5 (points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT won FROM table_13940275_5 WHERE points_against = \"304\"", "question": "what's the\u00a0won\u00a0with\u00a0points against\u00a0being 304", "context": "CREATE TABLE table_13940275_5 (won VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT location FROM table_13943239_1 WHERE episode = \"12th Pride of Britain Awards\"", "question": "Where was held the ceremony for the 12th Pride of Britain Awards?", "context": "CREATE TABLE table_13943239_1 (location VARCHAR, episode VARCHAR)"}, {"answer": "SELECT episode FROM table_13943239_1 WHERE viewers__millions_ = \"6.06\"", "question": "What episode of the Pride of Britain Awards had an audience of 6.06 million viewers?", "context": "CREATE TABLE table_13943239_1 (episode VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(viewers__millions_) FROM table_13943239_1 WHERE episode = \"7th Pride of Britain Awards\"", "question": "How much audience did the 7th Pride of Britain Awards ceremony have?", "context": "CREATE TABLE table_13943239_1 (viewers__millions_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT vineyard_surface__2010_ FROM table_13981938_1 WHERE grand_cru = \"Bienvenues-B\u00e2tard-Montrachet\"", "question": "what's the\u00a0vineyard surface (2010)\u00a0with\u00a0grand cru\u00a0being bienvenues-b\u00e2tard-montrachet", "context": "CREATE TABLE table_13981938_1 (vineyard_surface__2010_ VARCHAR, grand_cru VARCHAR)"}, {"answer": "SELECT village FROM table_13981938_1 WHERE wine_style = \"Red wine\" AND vineyard_surface__2010_ = \"hectares (acres)\"", "question": "what's the\u00a0village\u00a0with\u00a0wine style\u00a0being red wine and\u00a0vineyard surface (2010)\u00a0being hectares (acres)", "context": "CREATE TABLE table_13981938_1 (village VARCHAR, wine_style VARCHAR, vineyard_surface__2010_ VARCHAR)"}, {"answer": "SELECT wine_style FROM table_13981938_1 WHERE grand_cru = \"Roman\u00e9e-Conti\"", "question": "what's the\u00a0wine style\u00a0with\u00a0grand cru\u00a0being roman\u00e9e-conti", "context": "CREATE TABLE table_13981938_1 (wine_style VARCHAR, grand_cru VARCHAR)"}, {"answer": "SELECT wine_style FROM table_13981938_1 WHERE village = \"Puligny-Montrachet [d ]\"", "question": "what's the\u00a0wine style\u00a0with\u00a0village\u00a0being puligny-montrachet [d ]", "context": "CREATE TABLE table_13981938_1 (wine_style VARCHAR, village VARCHAR)"}, {"answer": "SELECT COUNT(senior__4th_year_) FROM table_13967239_2 WHERE junior__3rd_year_ = \"World History\"", "question": "How many classes between senior and junior year for world history", "context": "CREATE TABLE table_13967239_2 (senior__4th_year_ VARCHAR, junior__3rd_year_ VARCHAR)"}, {"answer": "SELECT senior__4th_year_ FROM table_13967239_2 WHERE sophomore__grade_8_ = \"Intermediate Algebra\"", "question": "What is after intermediate algebra", "context": "CREATE TABLE table_13967239_2 (senior__4th_year_ VARCHAR, sophomore__grade_8_ VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_13956521_2 WHERE original_airdate = \"March 14, 2001\"", "question": "what is the maximum\u00a0#\u00a0with\u00a0original airdate\u00a0being march 14, 2001", "context": "CREATE TABLE table_13956521_2 (_number INTEGER, original_airdate VARCHAR)"}, {"answer": "SELECT COUNT(original_airdate) FROM table_13956521_2 WHERE writer_s_ = \"Becky Hartman Edwards\" AND director = \"Adam Nimoy\"", "question": " how many\u00a0original airdate\u00a0with\u00a0writer(s)\u00a0being becky hartman edwards and\u00a0director\u00a0being adam nimoy", "context": "CREATE TABLE table_13956521_2 (original_airdate VARCHAR, writer_s_ VARCHAR, director VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_13956521_2 WHERE original_airdate = \"February 7, 2001\"", "question": "who is the the\u00a0writer(s)\u00a0with\u00a0original airdate\u00a0being february 7, 2001", "context": "CREATE TABLE table_13956521_2 (writer_s_ VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_13998897_1 WHERE city_of_license = \"Chattanooga, Tennessee\"", "question": "what's the\u00a0frequency mhz\u00a0with\u00a0city of license\u00a0being chattanooga, tennessee", "context": "CREATE TABLE table_13998897_1 (frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT COUNT(height_m___ft__) FROM table_13998897_1 WHERE frequency_mhz = \"100.1\"", "question": " how many\u00a0height m ( ft )\u00a0with\u00a0frequency mhz\u00a0being 100.1", "context": "CREATE TABLE table_13998897_1 (height_m___ft__ VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_13998897_1 WHERE call_sign = \"W221AW\"", "question": "what's the\u00a0fcc info\u00a0with\u00a0call sign\u00a0being w221aw", "context": "CREATE TABLE table_13998897_1 (fcc_info VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT COUNT(height_m___ft__) FROM table_13998897_1 WHERE notes = \"via WCCV; formerly W236AJ\"", "question": " how many\u00a0height m ( ft )\u00a0with\u00a0notes\u00a0being via wccv; formerly w236aj", "context": "CREATE TABLE table_13998897_1 (height_m___ft__ VARCHAR, notes VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_13998897_1 WHERE call_sign = \"W265AV\"", "question": "what's the\u00a0fcc info\u00a0with\u00a0call sign\u00a0being w265av", "context": "CREATE TABLE table_13998897_1 (fcc_info VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT capacity FROM table_14003108_1 WHERE team = \"Berwick Rangers\"", "question": "what's the\u00a0capacity\u00a0with\u00a0team\u00a0being berwick rangers", "context": "CREATE TABLE table_14003108_1 (capacity VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_14003108_1 WHERE stadium = \"Borough Briggs\"", "question": "what's the\u00a0team\u00a0with\u00a0stadium\u00a0being borough briggs", "context": "CREATE TABLE table_14003108_1 (team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT MAX(lowest) FROM table_14003108_1 WHERE average = 734", "question": "what is the maximum\u00a0lowest\u00a0with\u00a0average\u00a0being 734", "context": "CREATE TABLE table_14003108_1 (lowest INTEGER, average VARCHAR)"}, {"answer": "SELECT COUNT(highest) FROM table_14003108_1 WHERE team = \"Forfar Athletic\"", "question": " how many\u00a0highest\u00a0with\u00a0team\u00a0being forfar athletic", "context": "CREATE TABLE table_14003108_1 (highest VARCHAR, team VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_14006_1 WHERE condition = \"Factor V deficiency\"", "question": "what's the\u00a0bleeding time\u00a0with\u00a0condition\u00a0being factor v deficiency", "context": "CREATE TABLE table_14006_1 (bleeding_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_14006_1 WHERE condition = \"Liver failure, end-stage\"", "question": "what's the\u00a0bleeding time\u00a0with\u00a0condition\u00a0being liver failure, end-stage", "context": "CREATE TABLE table_14006_1 (bleeding_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_14006_1 WHERE platelet_count = \"Decreased or unaffected\"", "question": "what's the\u00a0bleeding time\u00a0with\u00a0platelet count\u00a0being decreased or unaffected", "context": "CREATE TABLE table_14006_1 (bleeding_time VARCHAR, platelet_count VARCHAR)"}, {"answer": "SELECT condition FROM table_14006_1 WHERE bleeding_time = \"Unaffected\" AND prothrombin_time = \"Prolonged\"", "question": "what's the\u00a0condition\u00a0with\u00a0bleeding time\u00a0being unaffected and\u00a0prothrombin time\u00a0being prolonged", "context": "CREATE TABLE table_14006_1 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_14006_1 WHERE platelet_count = \"Decreased\" AND prothrombin_time = \"Prolonged\"", "question": "what's the\u00a0bleeding time\u00a0with\u00a0platelet count\u00a0being decreased and\u00a0prothrombin time\u00a0being prolonged", "context": "CREATE TABLE table_14006_1 (bleeding_time VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_14006_1 WHERE partial_thromboplastin_time = \"Unaffected\" AND condition = \"Liver failure , early\"", "question": "what's the\u00a0bleeding time\u00a0with\u00a0partial thromboplastin time\u00a0being unaffected and\u00a0condition\u00a0being liver failure , early", "context": "CREATE TABLE table_14006_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_14009909_1 WHERE committee = \"Economic Matters\"", "question": "How many of the elected officials are on the Economic Matters committee?", "context": "CREATE TABLE table_14009909_1 (first_elected VARCHAR, committee VARCHAR)"}, {"answer": "SELECT delegate FROM table_14009909_1 WHERE first_elected = 2003", "question": "Name the delegate first elected in 2003?", "context": "CREATE TABLE table_14009909_1 (delegate VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT counties_represented FROM table_14009909_1 WHERE district = \"12.1 12A\"", "question": "What are the counties represented in District 12.1 12a?", "context": "CREATE TABLE table_14009909_1 (counties_represented VARCHAR, district VARCHAR)"}, {"answer": "SELECT counties_represented FROM table_14009909_1 WHERE first_elected = 2006", "question": "Which country has a delegate who was first elected in 2006?", "context": "CREATE TABLE table_14009909_1 (counties_represented VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT foreign_players__max_2_ FROM table_14015965_1 WHERE town = \"Ekaterinburg\"", "question": "Who are the foreign players representing Ekaterinburg?", "context": "CREATE TABLE table_14015965_1 (foreign_players__max_2_ VARCHAR, town VARCHAR)"}, {"answer": "SELECT town FROM table_14015965_1 WHERE arena__capacity_ = \"Volleyball Sportiv Complex (3 500)\"", "question": "What town is Volleyball Sportiv Complex (3 500) located in?", "context": "CREATE TABLE table_14015965_1 (town VARCHAR, arena__capacity_ VARCHAR)"}, {"answer": "SELECT arena__capacity_ FROM table_14015965_1 WHERE previous_season = \"6\"", "question": "What arena was season 6 played at?", "context": "CREATE TABLE table_14015965_1 (arena__capacity_ VARCHAR, previous_season VARCHAR)"}, {"answer": "SELECT head_coach FROM table_14015965_1 WHERE previous_season = \"2\"", "question": "Who was the head coach in season 2?", "context": "CREATE TABLE table_14015965_1 (head_coach VARCHAR, previous_season VARCHAR)"}, {"answer": "SELECT circuit FROM table_14016079_1 WHERE race_title = \"City of Ipswich 400\"", "question": "On what circuit was the City of Ipswich 400 race  held?", "context": "CREATE TABLE table_14016079_1 (circuit VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT winner FROM table_14016079_1 WHERE circuit = \"Symmons Plains Raceway\"", "question": "Who was the winner on the Symmons Plains Raceway?", "context": "CREATE TABLE table_14016079_1 (winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_14016079_1 WHERE rd = 8", "question": "What were the dates for Round 8?", "context": "CREATE TABLE table_14016079_1 (date VARCHAR, rd VARCHAR)"}, {"answer": "SELECT COUNT(rd) FROM table_14016079_1 WHERE circuit = \"Hidden Valley Raceway\"", "question": "What was the number of rounds on the Hidden Valley Raceway?", "context": "CREATE TABLE table_14016079_1 (rd VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT rd FROM table_14016079_1 WHERE circuit = \"Queensland Raceway\"", "question": "What round was held at the Queensland Raceway?", "context": "CREATE TABLE table_14016079_1 (rd VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT MAX(team_defense_rank) FROM table_1402270_1 WHERE nfl_team = \"Green Bay Packers\"", "question": "what the highest number for the opposite of offense for the green bay packers", "context": "CREATE TABLE table_1402270_1 (team_defense_rank INTEGER, nfl_team VARCHAR)"}, {"answer": "SELECT COUNT(code) FROM table_1404414_2 WHERE area__km_2__ = \"1,205.4\"", "question": "How many counties have an area of 1,205.4 km2?", "context": "CREATE TABLE table_1404414_2 (code VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT capital FROM table_1404414_2 WHERE population_census_2009 = 596268", "question": "What capital has a population of 596268?", "context": "CREATE TABLE table_1404414_2 (capital VARCHAR, population_census_2009 VARCHAR)"}, {"answer": "SELECT capital FROM table_1404456_1 WHERE area__km_2__ = \"12,245.9\"", "question": "what's the\u00a0capital\u00a0with\u00a0area (km 2 )\u00a0being 12,245.9", "context": "CREATE TABLE table_1404456_1 (capital VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT former_province FROM table_1404456_1 WHERE area__km_2__ = \"12,245.9\"", "question": "what's the\u00a0former province\u00a0with\u00a0area (km 2 )\u00a0being 12,245.9", "context": "CREATE TABLE table_1404456_1 (former_province VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT COUNT(capital) FROM table_1404456_1 WHERE population_census_2009 = 284657", "question": " how many\u00a0capital\u00a0with\u00a0population census 2009\u00a0being 284657", "context": "CREATE TABLE table_1404456_1 (capital VARCHAR, population_census_2009 VARCHAR)"}, {"answer": "SELECT area__km_2__ FROM table_1404456_1 WHERE population_census_2009 = 939370", "question": "what's the\u00a0area (km 2 )\u00a0with\u00a0population census 2009\u00a0being 939370", "context": "CREATE TABLE table_1404456_1 (area__km_2__ VARCHAR, population_census_2009 VARCHAR)"}, {"answer": "SELECT MIN(code) FROM table_1404456_1 WHERE area__km_2__ = \"12,245.9\"", "question": "what is the minimum\u00a0code\u00a0with\u00a0area (km 2 )\u00a0being 12,245.9", "context": "CREATE TABLE table_1404456_1 (code INTEGER, area__km_2__ VARCHAR)"}, {"answer": "SELECT county FROM table_1404456_1 WHERE code = 2", "question": "what's the\u00a0county\u00a0with\u00a0code\u00a0being 2", "context": "CREATE TABLE table_1404456_1 (county VARCHAR, code VARCHAR)"}, {"answer": "SELECT season FROM table_1405704_1 WHERE winning_driver = \"Tom Sneva\"", "question": "In what year did Tom Sneva win a race?", "context": "CREATE TABLE table_1405704_1 (season VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT chassis FROM table_1405704_1 WHERE season = 1979 AND engine = \"Foyt\"", "question": "What kind of chassis did a winning car with a Foyt engine have in 1979?", "context": "CREATE TABLE table_1405704_1 (chassis VARCHAR, season VARCHAR, engine VARCHAR)"}, {"answer": "SELECT team FROM table_1405704_1 WHERE winning_driver = \"Al Unser\"", "question": "What team does Al Unser drive for?", "context": "CREATE TABLE table_1405704_1 (team VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT team FROM table_1405704_1 WHERE chassis = \"McLaren\" AND engine = \"Offenhauser\"", "question": "What team has a vehicle with an Offenhauser engine and a McLaren chassis?", "context": "CREATE TABLE table_1405704_1 (team VARCHAR, chassis VARCHAR, engine VARCHAR)"}, {"answer": "SELECT team FROM table_1405704_1 WHERE race_name = \"Texas Grand Prix\" AND engine = \"Foyt\"", "question": "What team raced with a Foyt engine in the Texas Grand Prix?", "context": "CREATE TABLE table_1405704_1 (team VARCHAR, race_name VARCHAR, engine VARCHAR)"}, {"answer": "SELECT network FROM table_1404984_1 WHERE virtual_channel = \"9.1\"", "question": "What network is virtual channel 9.1 linked to?", "context": "CREATE TABLE table_1404984_1 (network VARCHAR, virtual_channel VARCHAR)"}, {"answer": "SELECT station_ownership FROM table_1404984_1 WHERE virtual_channel = \"33.3\"", "question": "Who owns the station on channel 33.3?", "context": "CREATE TABLE table_1404984_1 (station_ownership VARCHAR, virtual_channel VARCHAR)"}, {"answer": "SELECT digital_channel FROM table_1404984_1 WHERE network = \"JCTV\"", "question": "What is JCTV's digital channel?", "context": "CREATE TABLE table_1404984_1 (digital_channel VARCHAR, network VARCHAR)"}, {"answer": "SELECT call_sign FROM table_1404984_1 WHERE virtual_channel = \"33.7\"", "question": "What is channel 33.7's official call sign?", "context": "CREATE TABLE table_1404984_1 (call_sign VARCHAR, virtual_channel VARCHAR)"}, {"answer": "SELECT virtual_channel FROM table_1404984_1 WHERE network = \"HSN\"", "question": "What is HSN's official virtual channel in Minneapolis-St. Paul?", "context": "CREATE TABLE table_1404984_1 (virtual_channel VARCHAR, network VARCHAR)"}, {"answer": "SELECT COUNT(station_ownership) FROM table_1404984_1 WHERE network = \"Bounce TV\"", "question": "How many stations own Bounce TV?", "context": "CREATE TABLE table_1404984_1 (station_ownership VARCHAR, network VARCHAR)"}, {"answer": "SELECT points FROM table_14058433_3 WHERE tries_for = \"83\"", "question": "How many points were made when the tries for was 83?", "context": "CREATE TABLE table_14058433_3 (points VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT points_for FROM table_14058433_3 WHERE lost = \"7\"", "question": "How many points are there when the lost is 7?", "context": "CREATE TABLE table_14058433_3 (points_for VARCHAR, lost VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_14058433_3 WHERE points = \"24\"", "question": "What is the losing bonus when the points are 24?", "context": "CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, points VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_14058433_3 WHERE club = \"Llandudno RFC\"", "question": "How many losing points does Llandudno RFC have?", "context": "CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_14058433_3 WHERE club = \"Ruthin RFC\"", "question": "What is the try bonus for Ruthin RFC?", "context": "CREATE TABLE table_14058433_3 (try_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(tries_against) FROM table_14058433_4 WHERE lost = \"11\"", "question": " how many\u00a0tries against\u00a0with\u00a0lost\u00a0being 11", "context": "CREATE TABLE table_14058433_4 (tries_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT won FROM table_14058433_4 WHERE try_bonus = \"12\"", "question": "what's the\u00a0won\u00a0with\u00a0try bonus\u00a0being 12", "context": "CREATE TABLE table_14058433_4 (won VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT drawn FROM table_14058433_4 WHERE lost = \"4\"", "question": "what's the\u00a0drawn\u00a0with\u00a0lost\u00a0being 4", "context": "CREATE TABLE table_14058433_4 (drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points_against FROM table_14058433_4 WHERE lost = \"13\"", "question": "what's the\u00a0points against\u00a0with\u00a0lost\u00a0being 13", "context": "CREATE TABLE table_14058433_4 (points_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points_against FROM table_14058433_4 WHERE won = \"11\"", "question": "what's the\u00a0points against\u00a0with\u00a0won\u00a0being 11", "context": "CREATE TABLE table_14058433_4 (points_against VARCHAR, won VARCHAR)"}, {"answer": "SELECT drawn FROM table_14058433_4 WHERE points_for = \"350\"", "question": "what's the\u00a0drawn\u00a0with\u00a0points for\u00a0being 350", "context": "CREATE TABLE table_14058433_4 (drawn VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT COUNT(points_for) FROM table_14058433_5 WHERE points_against = \"177\"", "question": " how many\u00a0points for\u00a0with\u00a0points against\u00a0being 177", "context": "CREATE TABLE table_14058433_5 (points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT lost FROM table_14058433_5 WHERE club = \"Colwyn Bay RFC\"", "question": "what's the\u00a0lost\u00a0with\u00a0club\u00a0being colwyn bay rfc", "context": "CREATE TABLE table_14058433_5 (lost VARCHAR, club VARCHAR)"}, {"answer": "SELECT won FROM table_14058433_5 WHERE tries_for = \"84\"", "question": "what's the\u00a0won\u00a0with\u00a0tries for\u00a0being 84", "context": "CREATE TABLE table_14058433_5 (won VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT won FROM table_14058433_5 WHERE points_for = \"596\"", "question": "what's the\u00a0won\u00a0with\u00a0points for\u00a0being 596", "context": "CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT points_for FROM table_14058433_5 WHERE lost = \"4\"", "question": "what's the\u00a0points for\u00a0with\u00a0lost\u00a0being 4", "context": "CREATE TABLE table_14058433_5 (points_for VARCHAR, lost VARCHAR)"}, {"answer": "SELECT won FROM table_14058433_5 WHERE points_for = \"643\"", "question": "what's the\u00a0won\u00a0with\u00a0points for\u00a0being 643", "context": "CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT telugu_\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 FROM table_1408397_3 WHERE mongolian = \"\u0425\u043e\u043d\u0433\u043e\u0440\u0446\u043e\u0433\"", "question": "What is the Telugu word for \u0445\u043e\u043d\u0433\u043e\u0440\u0446\u043e\u0433 in Mongolian?", "context": "CREATE TABLE table_1408397_3 (telugu_\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 VARCHAR, mongolian VARCHAR)"}, {"answer": "SELECT malayalam_\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 FROM table_1408397_3 WHERE kannada_\u0c95\u0ca8\u0ccd\u0ca8\u0ca1 = \"Punarvasu \u0caa\u0cc1\u0ca8\u0cb0\u0ccd\u0cb5\u0cb8\u0cc1\"", "question": "What is the Malayalam word for punarvasu \u0caa\u0cc1\u0ca8\u0cb0\u0ccd\u0cb5\u0cb8\u0cc1 in Kannada?", "context": "CREATE TABLE table_1408397_3 (malayalam_\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 VARCHAR, kannada_\u0c95\u0ca8\u0ccd\u0ca8\u0ca1 VARCHAR)"}, {"answer": "SELECT malayalam_\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 FROM table_1408397_3 WHERE _number = 10", "question": "What is the Malayalam word that is listed as #10 in the table?", "context": "CREATE TABLE table_1408397_3 (malayalam_\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 VARCHAR, _number VARCHAR)"}, {"answer": "SELECT points_against FROM table_14070062_4 WHERE tries_against = \"75\"", "question": "tell the score when the times gone was 75", "context": "CREATE TABLE table_14070062_4 (points_against VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_14070062_4 WHERE points_for = \"743\"", "question": "was the the score when the tries was 743", "context": "CREATE TABLE table_14070062_4 (points_against VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT COUNT(won) FROM table_14070062_4 WHERE points_for = \"490\"", "question": "tell how many wins there was when the score was 490", "context": "CREATE TABLE table_14070062_4 (won VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_14070062_4 WHERE points = \"48\"", "question": "how many extra points were there when the score was 48", "context": "CREATE TABLE table_14070062_4 (try_bonus VARCHAR, points VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_14070062_4 WHERE tries_for = \"52\"", "question": "what was the extra score when the overall score was 52", "context": "CREATE TABLE table_14070062_4 (losing_bonus VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT points FROM table_14070062_4 WHERE try_bonus = \"6\"", "question": "what was the score when the extras were 6", "context": "CREATE TABLE table_14070062_4 (points VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = \"Buenos Aires\"", "question": "What country's capital is buenos aires?", "context": "CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR)"}, {"answer": "SELECT area__km\u00b2___per_sqmi_ FROM table_14098_1 WHERE country_or_territory_with_flag = \"Uruguay\"", "question": "What unit of measurement for uruguay?", "context": "CREATE TABLE table_14098_1 (area__km\u00b2___per_sqmi_ VARCHAR, country_or_territory_with_flag VARCHAR)"}, {"answer": "SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = \"Santiago\"", "question": "What country'c capital is santiago?", "context": "CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR)"}, {"answer": "SELECT voice_actor__english_1998___pioneer_ FROM table_1410384_1 WHERE voice_actor__english_1997___saban_ = \"Alec Willows\" AND voice_actor__english_2006___funimation_ = \"Andy McAvin\"", "question": "who is the the\u00a0voice actor (englbeingh 1998 / pioneer)\u00a0with\u00a0voice actor (englbeingh 1997 / saban)\u00a0being alec willows and\u00a0voice actor (englbeingh 2006 / funimation)\u00a0being andy mcavin", "context": "CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__english_1997___saban_ VARCHAR, voice_actor__english_2006___funimation_ VARCHAR)"}, {"answer": "SELECT character_name FROM table_1410384_1 WHERE voice_actor__english_1997___saban_ = \"Ian James Corlett\"", "question": "what's the\u00a0character name\u00a0with\u00a0voice actor (englbeingh 1997 / saban)\u00a0being ian james corlett", "context": "CREATE TABLE table_1410384_1 (character_name VARCHAR, voice_actor__english_1997___saban_ VARCHAR)"}, {"answer": "SELECT character_name FROM table_1410384_1 WHERE voice_actor__english_1998___pioneer_ = \"Paul Dobson\"", "question": "what's the\u00a0character name\u00a0with\u00a0voice actor (englbeingh 1998 / pioneer)\u00a0being paul dobson", "context": "CREATE TABLE table_1410384_1 (character_name VARCHAR, voice_actor__english_1998___pioneer_ VARCHAR)"}, {"answer": "SELECT COUNT(voice_actor__english_1998___pioneer_) FROM table_1410384_1 WHERE voice_actor__japanese_ = \"Shinobu Satouchi\"", "question": " how many\u00a0voice actor (englbeingh 1998 / pioneer)\u00a0with\u00a0voice actor (japanese)\u00a0being shinobu satouchi", "context": "CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__japanese_ VARCHAR)"}, {"answer": "SELECT voice_actor__japanese_ FROM table_1410384_1 WHERE character_name = \"Goku\"", "question": "who is the the\u00a0voice actor (japanese)\u00a0with\u00a0character name\u00a0being goku", "context": "CREATE TABLE table_1410384_1 (voice_actor__japanese_ VARCHAR, character_name VARCHAR)"}, {"answer": "SELECT COUNT(national_titles) FROM table_14115168_4 WHERE school = \"Peru State College\"", "question": "how many big wins does peru state college have", "context": "CREATE TABLE table_14115168_4 (national_titles VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_14115168_4 WHERE national_titles = 14", "question": "which school has 14 large championships", "context": "CREATE TABLE table_14115168_4 (school VARCHAR, national_titles VARCHAR)"}, {"answer": "SELECT MIN(national_titles) FROM table_14115168_4 WHERE school = \"Concordia University\"", "question": "how many overall championships does concordia university have", "context": "CREATE TABLE table_14115168_4 (national_titles INTEGER, school VARCHAR)"}, {"answer": "SELECT duration FROM table_14118521_1 WHERE mission = \"STS-87\"", "question": "what's the\u00a0duration\u00a0with\u00a0mission being sts-87", "context": "CREATE TABLE table_14118521_1 (duration VARCHAR, mission VARCHAR)"}, {"answer": "SELECT edo_flight FROM table_14118521_1 WHERE duration = \"17 days, 15 hours, 53 minutes, 18 seconds\"", "question": "what's the\u00a0edo flight\u00a0with\u00a0duration\u00a0being 17 days, 15 hours, 53 minutes, 18 seconds", "context": "CREATE TABLE table_14118521_1 (edo_flight VARCHAR, duration VARCHAR)"}, {"answer": "SELECT primary_payload_s_ FROM table_14118521_1 WHERE launch_date = \"July 8, 1994\"", "question": "what's the\u00a0primary payload(s)\u00a0with\u00a0launch date\u00a0being july 8, 1994", "context": "CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, launch_date VARCHAR)"}, {"answer": "SELECT mission FROM table_14118521_1 WHERE primary_payload_s_ = \"Spacelab Life Sciences-2\"", "question": "what's the\u00a0mission with\u00a0primary payload(s)\u00a0being spacelab life sciences-2", "context": "CREATE TABLE table_14118521_1 (mission VARCHAR, primary_payload_s_ VARCHAR)"}, {"answer": "SELECT shuttle FROM table_14118521_1 WHERE primary_payload_s_ = \"United States Microgravity Laboratory-1\"", "question": "what's the\u00a0shuttle\u00a0with\u00a0primary payload(s)\u00a0being united states microgravity laboratory-1", "context": "CREATE TABLE table_14118521_1 (shuttle VARCHAR, primary_payload_s_ VARCHAR)"}, {"answer": "SELECT COUNT(primary_payload_s_) FROM table_14118521_1 WHERE shuttle = \"Columbia\" AND duration = \"13 days, 19 hours, 30 minutes, 4 seconds\"", "question": " how many\u00a0primary payload(s)\u00a0with\u00a0shuttle\u00a0being columbia and\u00a0duration\u00a0being 13 days, 19 hours, 30 minutes, 4 seconds", "context": "CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, shuttle VARCHAR, duration VARCHAR)"}, {"answer": "SELECT pts FROM table_14139408_1 WHERE team = \"Kopron team Scot\"", "question": "what's the\u00a0pts\u00a0with\u00a0team\u00a0being kopron team scot", "context": "CREATE TABLE table_14139408_1 (pts VARCHAR, team VARCHAR)"}, {"answer": "SELECT pts FROM table_14139408_1 WHERE position = \"NC\"", "question": "what's the\u00a0pts\u00a0with\u00a0position\u00a0being nc", "context": "CREATE TABLE table_14139408_1 (pts VARCHAR, position VARCHAR)"}, {"answer": "SELECT pts FROM table_14139408_1 WHERE poles < 1.0 AND motorcycle = \"Aprilia\" AND class = \"250cc\"", "question": "what's the\u00a0pts\u00a0with\u00a0poles\u00a0being smaller than 1.0 and\u00a0motorcycle\u00a0being aprilia and\u00a0class\u00a0being 250cc", "context": "CREATE TABLE table_14139408_1 (pts VARCHAR, class VARCHAR, poles VARCHAR, motorcycle VARCHAR)"}, {"answer": "SELECT poles FROM table_14139408_1 WHERE pts = \"81\"", "question": "what's the\u00a0poles\u00a0with\u00a0pts\u00a0being 81", "context": "CREATE TABLE table_14139408_1 (poles VARCHAR, pts VARCHAR)"}, {"answer": "SELECT COUNT(class) FROM table_14139408_1 WHERE poles > 1.0", "question": " how many\u00a0class\u00a0with\u00a0poles\u00a0being bigger than 1.0", "context": "CREATE TABLE table_14139408_1 (class VARCHAR, poles INTEGER)"}, {"answer": "SELECT position FROM table_14139408_1 WHERE team = \"Skilled Racing team\"", "question": "what's the\u00a0position\u00a0with\u00a0team\u00a0being skilled racing team", "context": "CREATE TABLE table_14139408_1 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT defensive FROM table_14132239_3 WHERE month = \"February\" AND rookie = \"Rhys Duch\"", "question": "Who was the defensive award winner in February when the rookie award was given to Rhys Duch?", "context": "CREATE TABLE table_14132239_3 (defensive VARCHAR, month VARCHAR, rookie VARCHAR)"}, {"answer": "SELECT offensive FROM table_14132239_3 WHERE overall = \"Bob Watson\"", "question": "Who was the offensive award winner the week when Bob Watson was given the overall award?", "context": "CREATE TABLE table_14132239_3 (offensive VARCHAR, overall VARCHAR)"}, {"answer": "SELECT defensive FROM table_14132239_3 WHERE rookie = \"Daryl Veltman\" AND offensive = \"Mark Steenhuis\"", "question": "Who was the defensive award winner when the rookie award was given to Daryl Veltman and the offensive award was given to Mark Steenhuis?", "context": "CREATE TABLE table_14132239_3 (defensive VARCHAR, rookie VARCHAR, offensive VARCHAR)"}, {"answer": "SELECT rookie FROM table_14132239_3 WHERE transition = \"Brodie Merrill\" AND offensive = \"Pat Maddalena\"", "question": "Who won the rookie award the week the transition award was given to Brodie Merrill and the offensive award was given to Pat Maddalena?", "context": "CREATE TABLE table_14132239_3 (rookie VARCHAR, transition VARCHAR, offensive VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_1414702_3 WHERE wiaa_classification = \"3A\"", "question": "What is the lowest enrollment value out of the enrollment values I'd the schools with a 3A WIAA clarification? ", "context": "CREATE TABLE table_1414702_3 (enrollment INTEGER, wiaa_classification VARCHAR)"}, {"answer": "SELECT wiaa_classification FROM table_1414702_3 WHERE high_school = \"Oakland Alternative\"", "question": "What is the WIAA classification of Oakland Alternative High School? ", "context": "CREATE TABLE table_1414702_3 (wiaa_classification VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT MAX(established) FROM table_1414702_3 WHERE high_school = \"Mount Tahoma\"", "question": "When was Mount Tahoma established? ", "context": "CREATE TABLE table_1414702_3 (established INTEGER, high_school VARCHAR)"}, {"answer": "SELECT notes FROM table_1414702_3 WHERE established = 1973", "question": "What's the note about the school established in the year of 1973?", "context": "CREATE TABLE table_1414702_3 (notes VARCHAR, established VARCHAR)"}, {"answer": "SELECT 4 AS th_district FROM table_14123513_5 WHERE year = 1924", "question": "Who was in the 4th district in 1924?", "context": "CREATE TABLE table_14123513_5 (year VARCHAR)"}, {"answer": "SELECT fte_teachers FROM table_1414743_1 WHERE school_level = \"Middle\" AND city = \"Sunnyvale\"", "question": "List all FTE middle school teachers in Sunnyvale.", "context": "CREATE TABLE table_1414743_1 (fte_teachers VARCHAR, school_level VARCHAR, city VARCHAR)"}, {"answer": "SELECT MAX(students) FROM table_1414743_1 WHERE pupil_teacher_ratio = \"20.8\"", "question": "What is the highest number of students with a teacher:student ratio of 20.8?", "context": "CREATE TABLE table_1414743_1 (students INTEGER, pupil_teacher_ratio VARCHAR)"}, {"answer": "SELECT fte_teachers FROM table_1414743_1 WHERE pupil_teacher_ratio = \"19\"", "question": "How many FTE teachers are there when the student:teacher ration is 19?", "context": "CREATE TABLE table_1414743_1 (fte_teachers VARCHAR, pupil_teacher_ratio VARCHAR)"}, {"answer": "SELECT congress FROM table_14158567_1 WHERE member_elect = \"Richard P. Giles\"", "question": "What edition of congress for member-elect richard p. giles?", "context": "CREATE TABLE table_14158567_1 (congress VARCHAR, member_elect VARCHAR)"}, {"answer": "SELECT COUNT(mean_elevation) FROM table_1416612_1 WHERE lowest_point = \"Gulf of Mexico\" AND state = \"Texas\"", "question": " how many\u00a0mean elevation\u00a0with\u00a0lowest point\u00a0being gulf of mexico and\u00a0state\u00a0being texas", "context": "CREATE TABLE table_1416612_1 (mean_elevation VARCHAR, lowest_point VARCHAR, state VARCHAR)"}, {"answer": "SELECT highest_point FROM table_1416612_1 WHERE lowest_point = \"Belle Fourche River at South Dakota border\"", "question": "what's the\u00a0highest point\u00a0with\u00a0lowest point\u00a0being belle fourche river at south dakota border", "context": "CREATE TABLE table_1416612_1 (highest_point VARCHAR, lowest_point VARCHAR)"}, {"answer": "SELECT lowest_elevation FROM table_1416612_1 WHERE highest_point = \"Charles Mound\"", "question": "what's the\u00a0lowest elevation\u00a0with\u00a0highest point\u00a0being charles mound", "context": "CREATE TABLE table_1416612_1 (lowest_elevation VARCHAR, highest_point VARCHAR)"}, {"answer": "SELECT lowest_point FROM table_1416612_1 WHERE highest_point = \"Mount Greylock\"", "question": "what's the\u00a0lowest point\u00a0with\u00a0highest point\u00a0being mount greylock", "context": "CREATE TABLE table_1416612_1 (lowest_point VARCHAR, highest_point VARCHAR)"}, {"answer": "SELECT state FROM table_1416612_1 WHERE highest_point = \"Mount Katahdin\"", "question": "what's the\u00a0state\u00a0with\u00a0highest point\u00a0being mount katahdin", "context": "CREATE TABLE table_1416612_1 (state VARCHAR, highest_point VARCHAR)"}, {"answer": "SELECT language FROM table_14160327_4 WHERE genre = \"Glam\"", "question": "What language for the glam genre?", "context": "CREATE TABLE table_14160327_4 (language VARCHAR, genre VARCHAR)"}, {"answer": "SELECT exportable FROM table_14160327_4 WHERE decade = \"1980s\"", "question": "What game allow the 1980s to be exportable?", "context": "CREATE TABLE table_14160327_4 (exportable VARCHAR, decade VARCHAR)"}, {"answer": "SELECT COUNT(family_friendly) FROM table_14160327_4 WHERE decade = \"1990s\"", "question": "How many family friendly games are in the 1990s?", "context": "CREATE TABLE table_14160327_4 (family_friendly VARCHAR, decade VARCHAR)"}, {"answer": "SELECT home__1st_leg_ FROM table_14219514_2 WHERE aggregate = \"0-1\"", "question": "When 0-1 is the aggregate what are the  home (1st leg)?", "context": "CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT home__2nd_leg_ FROM table_14219514_2 WHERE home__1st_leg_ = \"Belgrano\"", "question": "When belgrano is the home (1st leg) what is the  home (2nd leg)?", "context": "CREATE TABLE table_14219514_2 (home__2nd_leg_ VARCHAR, home__1st_leg_ VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_14219514_2 WHERE home__2nd_leg_ = \"Platense\"", "question": "When platense is the home (2nd leg) what is the 2nd leg?", "context": "CREATE TABLE table_14219514_2 (home__2nd_leg_ VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_leg) FROM table_14219514_2 WHERE home__1st_leg_ = \"Altos Hornos Zapla\"", "question": "When altos hornos zapla is the  home (1st leg) what is overall amount of 1st leg?", "context": "CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR)"}, {"answer": "SELECT home__1st_leg_ FROM table_14219514_2 WHERE home__2nd_leg_ = \"Temperley\"", "question": "When temperley is the home (2nd leg) what is the home (1st leg)?", "context": "CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR, home__2nd_leg_ VARCHAR)"}, {"answer": "SELECT COUNT(2 AS nd_leg) FROM table_14219514_1 WHERE aggregate = \"2-4\"", "question": "How many 2nd legs had an aggregate of 2-4?", "context": "CREATE TABLE table_14219514_1 (aggregate VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_14219514_1 WHERE home__1st_leg_ = \"Independiente\"", "question": "How many 2nd legs are there where home (1st leg) is Independiente?", "context": "CREATE TABLE table_14219514_1 (home__1st_leg_ VARCHAR)"}, {"answer": "SELECT home__2nd_leg_ FROM table_14219514_1 WHERE home__1st_leg_ = \"Talleres\"", "question": "Who was in home (2nd leg) when Talleres was in home  (1st leg)", "context": "CREATE TABLE table_14219514_1 (home__2nd_leg_ VARCHAR, home__1st_leg_ VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_14219514_1 WHERE home__1st_leg_ = \"Boca Juniors\"", "question": "Who was in 2nd leg when Boca Juniors was in home (1st leg)?", "context": "CREATE TABLE table_14219514_1 (home__1st_leg_ VARCHAR)"}, {"answer": "SELECT playoffs FROM table_14240688_1 WHERE open_cup = \"2nd Round\"", "question": "Name the playoffs for 2nd round open cup", "context": "CREATE TABLE table_14240688_1 (playoffs VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT reg_season FROM table_14225409_1 WHERE playoffs = \"Conference Semifinals\" AND us_open_cup = \"Did not qualify\"", "question": "What was the regular season standings for the year when the playoffs reached the conference semifinals and the team did not qualify for the US Open Cup?", "context": "CREATE TABLE table_14225409_1 (reg_season VARCHAR, playoffs VARCHAR, us_open_cup VARCHAR)"}, {"answer": "SELECT population__1931__in_1, 000 AS s FROM table_14245_3 WHERE voivodeship_or_city = \"lubelskie\"", "question": "Name the population in 1931 for lubelskie", "context": "CREATE TABLE table_14245_3 (population__1931__in_1 VARCHAR, voivodeship_or_city VARCHAR)"}, {"answer": "SELECT population__1931__in_1, 000 AS s FROM table_14245_3 WHERE capital = \"Tarnopol\"", "question": "Name the population when the capital is tarnopol", "context": "CREATE TABLE table_14245_3 (population__1931__in_1 VARCHAR, capital VARCHAR)"}, {"answer": "SELECT MIN(bits_14_12) FROM table_14249278_1 WHERE description = \"Output from accumulator to character bus\"", "question": "Name the most bits 14-12 for output from accumulator to character bus", "context": "CREATE TABLE table_14249278_1 (bits_14_12 INTEGER, description VARCHAR)"}, {"answer": "SELECT MIN(number_in_fleet) FROM table_1425948_1 WHERE chassis_manufacturer = \"Scania\" AND fleet_numbers = \"3230\"", "question": "what is smallest number in fleet for chassis manufacturer Scania and fleet numbers is 3230?", "context": "CREATE TABLE table_1425948_1 (number_in_fleet INTEGER, chassis_manufacturer VARCHAR, fleet_numbers VARCHAR)"}, {"answer": "SELECT chassis_manufacturer FROM table_1425948_1 WHERE fleet_numbers = \"2530-2558\"", "question": "Which chassis manufacturer is for fleet numbers range 2530-2558", "context": "CREATE TABLE table_1425948_1 (chassis_manufacturer VARCHAR, fleet_numbers VARCHAR)"}, {"answer": "SELECT MIN(number_in_fleet) FROM table_1425948_1 WHERE chassis_model = \"Scania K360UA\"", "question": "Chassis model Scania K360ua has what minimum number in fleet?", "context": "CREATE TABLE table_1425948_1 (number_in_fleet INTEGER, chassis_model VARCHAR)"}, {"answer": "SELECT channels FROM table_142573_1 WHERE designation = \"PC700\"", "question": "Name the channels when designation is pc700", "context": "CREATE TABLE table_142573_1 (channels VARCHAR, designation VARCHAR)"}, {"answer": "SELECT MAX(clock_rate__mhz_) FROM table_142573_1", "question": "Name the maximum clock rate mhz", "context": "CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER)"}, {"answer": "SELECT bus_width__bits_ FROM table_142573_1 WHERE bandwidth__mb_s_ = 3200", "question": "Name the bus width bits when bandwidth mb/s is 3200", "context": "CREATE TABLE table_142573_1 (bus_width__bits_ VARCHAR, bandwidth__mb_s_ VARCHAR)"}, {"answer": "SELECT MIN(clock_rate__mhz_) FROM table_142573_1", "question": "Name the least clock rate mhz", "context": "CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER)"}, {"answer": "SELECT MIN(clock_rate__mhz_) FROM table_142573_1 WHERE designation = \"RIMM 4200\"", "question": "Name the least clock rate mhz when designation is rimm 4200", "context": "CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER, designation VARCHAR)"}, {"answer": "SELECT COUNT(clock_rate__mhz_) FROM table_142573_1 WHERE bandwidth__mb_s_ = 2400", "question": "Name the number of clock rate mhz when bandwidth mb/s is 2400", "context": "CREATE TABLE table_142573_1 (clock_rate__mhz_ VARCHAR, bandwidth__mb_s_ VARCHAR)"}, {"answer": "SELECT elementary_schools FROM table_14254419_3 WHERE principal__2013_2014_ = \"Cort Monroe\"", "question": "Which elementary schools list Cort Monroe as the principal from 2013 to 2014?", "context": "CREATE TABLE table_14254419_3 (elementary_schools VARCHAR, principal__2013_2014_ VARCHAR)"}, {"answer": "SELECT Assistant AS principal__2013_2014_ FROM table_14254419_3 WHERE principal__2013_2014_ = \"Cort Monroe\"", "question": "Who are all the assistant principals that served from 2013-2014 under the principal Cort Monroe?", "context": "CREATE TABLE table_14254419_3 (Assistant VARCHAR, principal__2013_2014_ VARCHAR)"}, {"answer": "SELECT opponent FROM table_14263158_3 WHERE result = \"0\u20133 0\u20138 0\u20131 0\u20132 0\u20133 1\u20134 0\u20139 0\u20135\"", "question": "Who played in the series that resulted in matches with the following scores: 0\u20133 0\u20138 0\u20131 0\u20132 0\u20133 1\u20134 0\u20139 0\u20135?", "context": "CREATE TABLE table_14263158_3 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT name FROM table_1425958_1 WHERE _percentage_change = \"6.5\"", "question": "Where was there a change of 6.5%?", "context": "CREATE TABLE table_1425958_1 (name VARCHAR, _percentage_change VARCHAR)"}, {"answer": "SELECT density__pop_km\u00b2_ FROM table_1425958_1 WHERE _percentage_change = \"8.8\"", "question": "When the change is 8.8%, what is the density (pop/km\u00b2)?", "context": "CREATE TABLE table_1425958_1 (density__pop_km\u00b2_ VARCHAR, _percentage_change VARCHAR)"}, {"answer": "SELECT COUNT(2011 AS _census) FROM table_1425958_1 WHERE density__pop_km\u00b2_ = \"91.8\"", "question": "How many locations had a density (pop/km\u00b2) of 91.8 in the 2011 census?", "context": "CREATE TABLE table_1425958_1 (density__pop_km\u00b2_ VARCHAR)"}, {"answer": "SELECT MIN(population_rank) FROM table_1425958_1 WHERE _percentage_change = \"8.4\"", "question": "When the % change is 8.4, what is the population rank?", "context": "CREATE TABLE table_1425958_1 (population_rank INTEGER, _percentage_change VARCHAR)"}, {"answer": "SELECT _percentage_change FROM table_1425958_1 WHERE population_rank = 34", "question": "When the population rank is 34, what the is % change?", "context": "CREATE TABLE table_1425958_1 (_percentage_change VARCHAR, population_rank VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_14288212_1 WHERE points_for = 38", "question": "How many teams scored exactly 38 points", "context": "CREATE TABLE table_14288212_1 (team VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT MIN(first_played) FROM table_14288212_1 WHERE team = \"Italy\"", "question": "In what year did Italy begin playing?", "context": "CREATE TABLE table_14288212_1 (first_played INTEGER, team VARCHAR)"}, {"answer": "SELECT MIN(win) FROM table_14288212_1 WHERE played = 5", "question": "For teams that played 5 games, what was the smallest number of wins?", "context": "CREATE TABLE table_14288212_1 (win INTEGER, played VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_14288212_1 WHERE first_played = 2011 AND points_for = 36", "question": "How many games did the team that began in 2011 and scored 36 points play?", "context": "CREATE TABLE table_14288212_1 (played VARCHAR, first_played VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT run_time FROM table_1429629_1 WHERE viewers__in_millions_ = \"8.2\"", "question": "What are all the run times with 8.2 million viewers?", "context": "CREATE TABLE table_1429629_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT episode FROM table_1429629_1 WHERE run_time = \"24:01\"", "question": "What are all the episodes with an episode run time of 24:01?", "context": "CREATE TABLE table_1429629_1 (episode VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT COUNT(broadcast_date) FROM table_1429629_1 WHERE run_time = \"24:43\"", "question": "How many episodes had a broadcast date and run time of 24:43?", "context": "CREATE TABLE table_1429629_1 (broadcast_date VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT COUNT(research_funding__) AS \u00a3, 000 AS _ FROM table_142950_1 WHERE gained_university_status = 1900", "question": "How many members gained university status in 1900?", "context": "CREATE TABLE table_142950_1 (research_funding__ VARCHAR, gained_university_status VARCHAR)"}, {"answer": "SELECT MAX(total_number_of_students) FROM table_142950_1", "question": "What is the largest number of students?", "context": "CREATE TABLE table_142950_1 (total_number_of_students INTEGER)"}, {"answer": "SELECT COUNT(total_number_of_students) FROM table_142950_1 WHERE vice_chancellor = \"Professor Edward Acton\"", "question": "How many members have professor edward acton as vice-chancellor?", "context": "CREATE TABLE table_142950_1 (total_number_of_students VARCHAR, vice_chancellor VARCHAR)"}, {"answer": "SELECT MAX(established) FROM table_142950_1 WHERE location = \"Leicester\"", "question": "What is the year leicester was established?", "context": "CREATE TABLE table_142950_1 (established INTEGER, location VARCHAR)"}, {"answer": "SELECT country_territory FROM table_14308895_2 WHERE former_pageant = \"Miss Universe Hungary\"", "question": "which country has miss universe Hungary as former pageant?", "context": "CREATE TABLE table_14308895_2 (country_territory VARCHAR, former_pageant VARCHAR)"}, {"answer": "SELECT former_pageant FROM table_14308895_2 WHERE new_pageant = \"Miss Bahamas\"", "question": "which is the former pageant in the country where the new pageant is miss bahamas?", "context": "CREATE TABLE table_14308895_2 (former_pageant VARCHAR, new_pageant VARCHAR)"}, {"answer": "SELECT MAX(last_competed) FROM table_14308895_2 WHERE country_territory = \"New Zealand\"", "question": "when did new zealand last compete?", "context": "CREATE TABLE table_14308895_2 (last_competed INTEGER, country_territory VARCHAR)"}, {"answer": "SELECT COUNT(new_pageant) FROM table_14308895_2 WHERE country_territory = \"Aruba\"", "question": "How many new pageants does Aruba have?", "context": "CREATE TABLE table_14308895_2 (new_pageant VARCHAR, country_territory VARCHAR)"}, {"answer": "SELECT new_pageant FROM table_14308895_2 WHERE country_territory = \"Spain\"", "question": "which is the new pageant from spain?", "context": "CREATE TABLE table_14308895_2 (new_pageant VARCHAR, country_territory VARCHAR)"}, {"answer": "SELECT away_team FROM table_14312471_1 WHERE home_team = \"Carlton\"", "question": "Who was the away team when Carlton was the home team?", "context": "CREATE TABLE table_14312471_1 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_14310205_1 WHERE conmebol_1996 = \"did not qualify\"", "question": "what is the number of teams where conmebol 1996 did not qualify?", "context": "CREATE TABLE table_14310205_1 (team VARCHAR, conmebol_1996 VARCHAR)"}, {"answer": "SELECT copa_libertadores_1997 FROM table_14310205_1 WHERE team = \"Racing Club\"", "question": "what is the racing club where copa libertadores 1997?", "context": "CREATE TABLE table_14310205_1 (copa_libertadores_1997 VARCHAR, team VARCHAR)"}, {"answer": "SELECT copa_libertadores_1997 FROM table_14310205_1 WHERE supercopa_1996 = \"QF\"", "question": "what is th copa libertadores 1997 is qf?", "context": "CREATE TABLE table_14310205_1 (copa_libertadores_1997 VARCHAR, supercopa_1996 VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_14312471_4 WHERE ground = \"SCG\"", "question": "What's the maximum crowd when scg is the ground?", "context": "CREATE TABLE table_14312471_4 (crowd INTEGER, ground VARCHAR)"}, {"answer": "SELECT ground FROM table_14312471_4 WHERE crowd = 19929", "question": "What are the ground where the crowd totals 19929?", "context": "CREATE TABLE table_14312471_4 (ground VARCHAR, crowd VARCHAR)"}, {"answer": "SELECT home_team FROM table_14312471_3 WHERE ground = \"Manuka Oval\"", "question": "Name the home team for manuka oval", "context": "CREATE TABLE table_14312471_3 (home_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_14312471_3 WHERE away_team = \"Richmond\"", "question": "Name the away team score for richmond", "context": "CREATE TABLE table_14312471_3 (away_team VARCHAR)"}, {"answer": "SELECT report FROM table_14312471_7 WHERE home_team = \"North Melbourne\"", "question": "Who made the report when the home team is north Melbourne?", "context": "CREATE TABLE table_14312471_7 (report VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_14312471_7 WHERE away_team = \"Richmond\"", "question": "Who played Richmond at home?", "context": "CREATE TABLE table_14312471_7 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_14312471_7 WHERE ground = \"AAMI Stadium\"", "question": "Who has the home ground Aami stadium?", "context": "CREATE TABLE table_14312471_7 (home_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT candidates FROM table_1431467_4 WHERE incumbent = \"D. Wyatt Aiken\"", "question": "Who were all candidate when incumbent was D. Wyatt Aiken?", "context": "CREATE TABLE table_1431467_4 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_1431467_4 WHERE district = \"South Carolina 5\"", "question": "How many incumbents for the district of South Carolina 5?", "context": "CREATE TABLE table_1431467_4 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1431467_4 WHERE incumbent = \"John J. Hemphill\"", "question": "Who was everyone first elected when incumbent was John J. Hemphill?", "context": "CREATE TABLE table_1431467_4 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_14319023_2 WHERE girls_singles = \"Lindaweni Fanetri\"", "question": "When the girls singles is lindaweni fanetri what is the mixed doubled?", "context": "CREATE TABLE table_14319023_2 (mixed_doubles VARCHAR, girls_singles VARCHAR)"}, {"answer": "SELECT boys_doubles FROM table_14319023_2 WHERE girls_doubles = \"Ayu Pratiwi Anggi Widia\"", "question": "When the girls doubles is ayu pratiwi anggi widia what is the boys doubles?", "context": "CREATE TABLE table_14319023_2 (boys_doubles VARCHAR, girls_doubles VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_14319023_2 WHERE mixed_doubles = \"Didit Juang Indrianto Yayu Rahayu\"", "question": "When mixed doubles is didit juang indrianto yayu rahayu what is the most current year?", "context": "CREATE TABLE table_14319023_2 (year INTEGER, mixed_doubles VARCHAR)"}, {"answer": "SELECT boys_singles FROM table_14319023_2 WHERE mixed_doubles = \"Danny Bawa Chrisnanta Debby Susanto\"", "question": "When mixed doubles is danny bawa chrisnanta debby susanto what is the boys singles?", "context": "CREATE TABLE table_14319023_2 (boys_singles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_14319023_2 WHERE girls_doubles = \"Anneke Feinya Agustin Wenny Setiawati\"", "question": "When girls doubles is  anneke feinya agustin wenny setiawati what is the mixed doubles?", "context": "CREATE TABLE table_14319023_2 (mixed_doubles VARCHAR, girls_doubles VARCHAR)"}, {"answer": "SELECT COUNT(publisher_s_) FROM table_14325653_2 WHERE video_game = \"Flushed Away\"", "question": "Name the total number of publishers for flushed away", "context": "CREATE TABLE table_14325653_2 (publisher_s_ VARCHAR, video_game VARCHAR)"}, {"answer": "SELECT publisher_s_ FROM table_14325653_2 WHERE video_game = \"Resident Evil 4\"", "question": "Name the publisher for resident evil 4", "context": "CREATE TABLE table_14325653_2 (publisher_s_ VARCHAR, video_game VARCHAR)"}, {"answer": "SELECT MAX(total_number) FROM table_14330096_4", "question": "What is the highest total number?", "context": "CREATE TABLE table_14330096_4 (total_number INTEGER)"}, {"answer": "SELECT total_number FROM table_14330096_4 WHERE director = \"Roger Goldby\"", "question": "How many of the episodes have Roger Goldby as the director?", "context": "CREATE TABLE table_14330096_4 (total_number VARCHAR, director VARCHAR)"}, {"answer": "SELECT title FROM table_14330096_4 WHERE director = \"Patrick Lau\" AND writer = \"Lisa Holdsworth\"", "question": "Which episodes have Patrick Lau as the director and Lisa Holdsworth as the writer?", "context": "CREATE TABLE table_14330096_4 (title VARCHAR, director VARCHAR, writer VARCHAR)"}, {"answer": "SELECT MIN(accounting_closure_date) FROM table_143352_1 WHERE agr_power_station = \"Hunterston B\"", "question": "What is the Closure date of Hunterston B", "context": "CREATE TABLE table_143352_1 (accounting_closure_date INTEGER, agr_power_station VARCHAR)"}, {"answer": "SELECT COUNT(connected_to_grid) FROM table_143352_1 WHERE agr_power_station = \"Heysham 2\"", "question": "How many power stations are connected to grid at Heysham 2", "context": "CREATE TABLE table_143352_1 (connected_to_grid VARCHAR, agr_power_station VARCHAR)"}, {"answer": "SELECT construction_started FROM table_143352_1 WHERE agr_power_station = \"Heysham 1\"", "question": "What year did construction start at Heysham 1", "context": "CREATE TABLE table_143352_1 (construction_started VARCHAR, agr_power_station VARCHAR)"}, {"answer": "SELECT MIN(construction_started) FROM table_143352_1 WHERE net_mwe = 1190", "question": "When did construction start on the Power station with a net MWE of 1190", "context": "CREATE TABLE table_143352_1 (construction_started INTEGER, net_mwe VARCHAR)"}, {"answer": "SELECT MAX(extra_points) FROM table_14341967_2 WHERE player = \"John Heston\"", "question": "Name the most extra points for john heston", "context": "CREATE TABLE table_14341967_2 (extra_points INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_14342367_11", "question": "Who scored the most points?", "context": "CREATE TABLE table_14342367_11 (points INTEGER)"}, {"answer": "SELECT position FROM table_14342367_11 WHERE player = \"Joe Maddock\"", "question": "What position did Joe Maddock play?", "context": "CREATE TABLE table_14342367_11 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(extra_points) FROM table_14342367_11 WHERE player = \"Paul Jones\"", "question": "How many extra points did Paul Jones score?", "context": "CREATE TABLE table_14342367_11 (extra_points VARCHAR, player VARCHAR)"}, {"answer": "SELECT points FROM table_14342367_7 WHERE player = \"Albert Herrnstein\"", "question": "How many points did Albert Herrnstein make?", "context": "CREATE TABLE table_14342367_7 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_14342367_7 WHERE player = \"Paul Jones\"", "question": "What positions did Paul Jones play?", "context": "CREATE TABLE table_14342367_7 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(field_goals) FROM table_14342367_7", "question": "What is the least amount of field goals made by a player?", "context": "CREATE TABLE table_14342367_7 (field_goals INTEGER)"}, {"answer": "SELECT MAX(extra_points_1_point) FROM table_14342367_15 WHERE player = \"Paul Dickey\"", "question": "How many extra points did Paul Dickey received", "context": "CREATE TABLE table_14342367_15 (extra_points_1_point INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(field_goals__5_points_) FROM table_14342367_15", "question": "How many 5 points field goals is minimum", "context": "CREATE TABLE table_14342367_15 (field_goals__5_points_ INTEGER)"}, {"answer": "SELECT COUNT(player) FROM table_14342367_15 WHERE total_points = 75", "question": "How many player with total points of 75", "context": "CREATE TABLE table_14342367_15 (player VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT MAX(field_goals) FROM table_14342480_5", "question": "Name the most field goals", "context": "CREATE TABLE table_14342480_5 (field_goals INTEGER)"}, {"answer": "SELECT COUNT(points) FROM table_14342480_5 WHERE position = \"Right halfback\" AND starter = \"yes\"", "question": "Name the number of points for right halfback and starter being yes", "context": "CREATE TABLE table_14342480_5 (points VARCHAR, position VARCHAR, starter VARCHAR)"}, {"answer": "SELECT COUNT(field_goals) FROM table_14342480_5 WHERE position = \"Right tackle\"", "question": "Na,e the number of field goals for right tackle", "context": "CREATE TABLE table_14342480_5 (field_goals VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(extra_points) FROM table_14342480_5 WHERE position = \"Right halfback\"", "question": "Name the most extra points for right halfback", "context": "CREATE TABLE table_14342480_5 (extra_points INTEGER, position VARCHAR)"}, {"answer": "SELECT position FROM table_14342592_3 WHERE player = \"Tom Hammond\"", "question": "What positions does Tom Hammond play?", "context": "CREATE TABLE table_14342592_3 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_14342592_3 WHERE player = \"Hal Weeks\"", "question": "What positions does Hal Weeks play?", "context": "CREATE TABLE table_14342592_3 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT points FROM table_14342592_3 WHERE player = \"Clark\"", "question": "How many points does Clark have? ", "context": "CREATE TABLE table_14342592_3 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_14342592_7 WHERE position = \"Right guard\"", "question": "How many points did the player who was right guard score?", "context": "CREATE TABLE table_14342592_7 (points VARCHAR, position VARCHAR)"}, {"answer": "SELECT starter FROM table_14342592_7 WHERE touchdowns = 3", "question": "Was there a starter when 3 touchdowns were scored?", "context": "CREATE TABLE table_14342592_7 (starter VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT MAX(touchdowns) FROM table_14342592_7 WHERE player = \"Heston\"", "question": "How many touchdowns were there when Heston was in play?", "context": "CREATE TABLE table_14342592_7 (touchdowns INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_14342592_7 WHERE position = \"Left tackle\" AND extra_points = 5", "question": "How many maximum points were there when the left tackle was played and there were 5 extra points?", "context": "CREATE TABLE table_14342592_7 (points INTEGER, position VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT COUNT(uk_co_presenter) FROM table_14345690_15 WHERE co_presenter = \"Joe Swash\" AND comedian = \"Russell Kane\"", "question": "Who are the UK co-presenters that have Joe Swash as a co-presenter and Russell Kane as a comedian?", "context": "CREATE TABLE table_14345690_15 (uk_co_presenter VARCHAR, co_presenter VARCHAR, comedian VARCHAR)"}, {"answer": "SELECT series FROM table_14345690_15 WHERE main_presenter = \"Caroline Flack\"", "question": "What series have Caroline Flack as a main presenter?", "context": "CREATE TABLE table_14345690_15 (series VARCHAR, main_presenter VARCHAR)"}, {"answer": "SELECT co_presenter FROM table_14345690_15 WHERE series = \"Seven (2007)\"", "question": "Who is the co-presenter of the series Seven (2007)?", "context": "CREATE TABLE table_14345690_15 (co_presenter VARCHAR, series VARCHAR)"}, {"answer": "SELECT main_presenter FROM table_14345690_15 WHERE series = \"Twelve (2012)\"", "question": "Who is the main presenter of the series Twelve (2012)?", "context": "CREATE TABLE table_14345690_15 (main_presenter VARCHAR, series VARCHAR)"}, {"answer": "SELECT uk_co_presenter FROM table_14345690_15 WHERE co_presenter = \"Joe Swash\" AND series = \"Eleven (2011)\"", "question": "Who is the UK co-presenters that have Joe Swash as a co-presenter of the series Eleven (2011)?", "context": "CREATE TABLE table_14345690_15 (uk_co_presenter VARCHAR, co_presenter VARCHAR, series VARCHAR)"}, {"answer": "SELECT finished FROM table_14345690_2 WHERE celebrity = \"Nell McAndrew\"", "question": "What position did Nell McAndrew finish?", "context": "CREATE TABLE table_14345690_2 (finished VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT celebrity FROM table_14345690_2 WHERE famous_for = \"Champion boxer\"", "question": "Who was the champion boxer?", "context": "CREATE TABLE table_14345690_2 (celebrity VARCHAR, famous_for VARCHAR)"}, {"answer": "SELECT entered FROM table_14345690_2 WHERE celebrity = \"Darren Day\"", "question": "When did Darren Day enter?", "context": "CREATE TABLE table_14345690_2 (entered VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT finished FROM table_14345690_2 WHERE celebrity = \"Tara Palmer-Tomkinson\"", "question": "What position did Tara Palmer-Tomkinson finish?", "context": "CREATE TABLE table_14345690_2 (finished VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT entered FROM table_14345690_2 WHERE finished = \"4th\"", "question": "When did the 4th finisher enter?", "context": "CREATE TABLE table_14345690_2 (entered VARCHAR, finished VARCHAR)"}, {"answer": "SELECT COUNT(exited) FROM table_14345690_3 WHERE finished = \"9th\"", "question": "How many people finished 9th?", "context": "CREATE TABLE table_14345690_3 (exited VARCHAR, finished VARCHAR)"}, {"answer": "SELECT MIN(camp_mates) FROM table_14345690_1", "question": "What was the least amount of camp mates?", "context": "CREATE TABLE table_14345690_1 (camp_mates INTEGER)"}, {"answer": "SELECT COUNT(directed_by) FROM table_14346353_1 WHERE teleplay_by = \"David Simon\" AND series__number = 4", "question": "Who directed series #4 that was teleplayed by David Simon?", "context": "CREATE TABLE table_14346353_1 (directed_by VARCHAR, teleplay_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT title FROM table_14346353_1 WHERE series__number = 1", "question": "What is the title of series #1?", "context": "CREATE TABLE table_14346353_1 (title VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT finished FROM table_14345690_5 WHERE exited = \"Day 11\"", "question": "What is the finished place where exited is day 11?", "context": "CREATE TABLE table_14345690_5 (finished VARCHAR, exited VARCHAR)"}, {"answer": "SELECT famous_for FROM table_14345690_5 WHERE finished = \"2nd\"", "question": "Who is the famous for that finished 2nd?", "context": "CREATE TABLE table_14345690_5 (famous_for VARCHAR, finished VARCHAR)"}, {"answer": "SELECT famous_for FROM table_14345690_5 WHERE finished = \"5th\"", "question": "What is the famous for where the finished is 5th?", "context": "CREATE TABLE table_14345690_5 (famous_for VARCHAR, finished VARCHAR)"}, {"answer": "SELECT exited FROM table_14345690_5 WHERE celebrity = \"Vic Reeves\"", "question": "What is the exited day where the celebrity is vic reeves?", "context": "CREATE TABLE table_14345690_5 (exited VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT celebrity FROM table_14345690_5 WHERE finished = \"5th\"", "question": "what is the celebrity where the finished is 5th?", "context": "CREATE TABLE table_14345690_5 (celebrity VARCHAR, finished VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1434788_5 WHERE incumbent = \"John Thomas Wilson\"", "question": "When was incumbent John Thomas Wilson first elected? ", "context": "CREATE TABLE table_1434788_5 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_1434788_5 WHERE incumbent = \"John Beatty\"", "question": "Who were the candidates in the election where John Beatty was the incumbent? ", "context": "CREATE TABLE table_1434788_5 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1434788_5 WHERE district = \"Ohio 16\"", "question": "Who was the incumbent in the Ohio 16 district? ", "context": "CREATE TABLE table_1434788_5 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT 1991 AS _92 FROM table_14368332_1 WHERE average = \"1.053\"", "question": "What is the result in 91-92 for the team with a 1.053 average?", "context": "CREATE TABLE table_14368332_1 (average VARCHAR)"}, {"answer": "SELECT birth_date FROM table_14363116_1 WHERE shirt_no = 7", "question": "Name the birth date for shirt number 7", "context": "CREATE TABLE table_14363116_1 (birth_date VARCHAR, shirt_no VARCHAR)"}, {"answer": "SELECT MAX(height) FROM table_14363116_1 WHERE player = \"Yury Berezhko\"", "question": "Name the maximum height for yury berezhko", "context": "CREATE TABLE table_14363116_1 (height INTEGER, player VARCHAR)"}, {"answer": "SELECT 1991 AS _1992 FROM table_14390413_1 WHERE team = \"River Plate\"", "question": "Name the 1991-1992 for river plate", "context": "CREATE TABLE table_14390413_1 (team VARCHAR)"}, {"answer": "SELECT opengl AS ES FROM table_1439045_5 WHERE model = \"SGX520\"", "question": "Which version of opengl is used by model sgx520?", "context": "CREATE TABLE table_1439045_5 (opengl VARCHAR, model VARCHAR)"}, {"answer": "SELECT die_size__mm_2___[1] FROM table_1439045_5 WHERE model = \"SGX531\"", "question": "What is the die size(mm 2) for model sgx531?", "context": "CREATE TABLE table_1439045_5 (die_size__mm_2___ VARCHAR, model VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_14407512_23 WHERE name = \"Tom Hilde\"", "question": "Name the number of nationality is tom hilde", "context": "CREATE TABLE table_14407512_23 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT director FROM table_1439096_1 WHERE original_air_date__atv_ = \"26 October 1969\"", "question": "Who was the director of the episode originally aired on 26 October 1969?", "context": "CREATE TABLE table_1439096_1 (director VARCHAR, original_air_date__atv_ VARCHAR)"}, {"answer": "SELECT MIN(production_no) FROM table_1439096_1", "question": "What is the lowest production number?", "context": "CREATE TABLE table_1439096_1 (production_no INTEGER)"}, {"answer": "SELECT title FROM table_1439096_1 WHERE original_air_date__atv_ = \"28 September 1969\"", "question": "What is the title of the episode with the original air date of 28 September 1969?", "context": "CREATE TABLE table_1439096_1 (title VARCHAR, original_air_date__atv_ VARCHAR)"}, {"answer": "SELECT original_air_date__atv_ FROM table_1439096_1 WHERE episode_no = 1", "question": "What was the original air date (atv) of episode 1?", "context": "CREATE TABLE table_1439096_1 (original_air_date__atv_ VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT 1 AS st__m_ FROM table_14407512_4 WHERE nationality = \"FIN\"", "question": "What was the length of the jumper representing FIN, in meters?", "context": "CREATE TABLE table_14407512_4 (nationality VARCHAR)"}, {"answer": "SELECT 1 AS st__m_ FROM table_14407512_9 WHERE points = \"272.7\"", "question": "What is the 1st(m) score for the Person who had a total points of 272.7", "context": "CREATE TABLE table_14407512_9 (points VARCHAR)"}, {"answer": "SELECT opponent FROM table_14418812_1 WHERE week = 12", "question": "Name the opponent for week 12", "context": "CREATE TABLE table_14418812_1 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_14418812_1 WHERE game_site = \"Shea Stadium\"", "question": "Name the number of date for shea stadium", "context": "CREATE TABLE table_14418812_1 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT opponent FROM table_14418812_1 WHERE game_site = \"Astrodome\"", "question": "Name the opponent for astrodome", "context": "CREATE TABLE table_14418812_1 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT COUNT(home_team) AS score FROM table_14425454_1 WHERE time = \"4:40 PM\"", "question": "How many home team scores have a time of 4:40 PM?", "context": "CREATE TABLE table_14425454_1 (home_team VARCHAR, time VARCHAR)"}, {"answer": "SELECT ground FROM table_14425454_1 WHERE crowd = \"8,256\"", "question": "What stadiums had an attendance of 8,256?", "context": "CREATE TABLE table_14425454_1 (ground VARCHAR, crowd VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_14425454_1 WHERE home_team = \"Port Adelaide\"", "question": "What is the total number of attendees where the home team was Port Adelaide?", "context": "CREATE TABLE table_14425454_1 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_14423274_3 WHERE game_site = \"Rich Stadium\"", "question": "Which team did they play at Rich Stadium?", "context": "CREATE TABLE table_14423274_3 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_14423274_3 WHERE game_site = \"Cleveland Municipal Stadium\"", "question": "What date did they play in Cleveland Municipal Stadium?", "context": "CREATE TABLE table_14423274_3 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT year_model FROM table_1444201_1 WHERE engine = \"4-cyl Straight engine DOHC 16V\" AND model = \"1.5 CRDi\"", "question": "Name the year model for  4-cyl straight engine dohc 16v and 1.5 crdi", "context": "CREATE TABLE table_1444201_1 (year_model VARCHAR, engine VARCHAR, model VARCHAR)"}, {"answer": "SELECT year_model FROM table_1444201_1 WHERE model = \"1.3\"", "question": "Name the year model for 1.3", "context": "CREATE TABLE table_1444201_1 (year_model VARCHAR, model VARCHAR)"}, {"answer": "SELECT MIN(pos) FROM table_14460937_2 WHERE clubs = \"16\"", "question": "what is the minimum\u00a0pos\u00a0with\u00a0clubs\u00a0being 16", "context": "CREATE TABLE table_14460937_2 (pos INTEGER, clubs VARCHAR)"}, {"answer": "SELECT MAX(afc_cup) FROM table_14460937_2", "question": "what is the maximum value for afc cup", "context": "CREATE TABLE table_14460937_2 (afc_cup INTEGER)"}, {"answer": "SELECT COUNT(pos) FROM table_14460937_2 WHERE member_association = \"China PR\"", "question": " how many\u00a0pos\u00a0with\u00a0member association\u00a0being china pr", "context": "CREATE TABLE table_14460937_2 (pos VARCHAR, member_association VARCHAR)"}, {"answer": "SELECT COUNT(points__total_500_) FROM table_14460937_2 WHERE pos = 11", "question": " how many\u00a0points (total 500)\u00a0with\u00a0pos\u00a0being 11", "context": "CREATE TABLE table_14460937_2 (points__total_500_ VARCHAR, pos VARCHAR)"}, {"answer": "SELECT 1987 AS _88 FROM table_14460085_3 WHERE team = \"Racing de C\u00f3rdoba\"", "question": "How many points in 87/88 for racing de c\u00f3rdoba?", "context": "CREATE TABLE table_14460085_3 (team VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_14460085_3 WHERE team = \"Deportivo Espa\u00f1ol\"", "question": "What is the lowest number of games played for deportivo espa\u00f1ol?", "context": "CREATE TABLE table_14460085_3 (played INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_14460085_3 WHERE team = \"San Lorenzo\"", "question": "How many points total for san lorenzo?", "context": "CREATE TABLE table_14460085_3 (points VARCHAR, team VARCHAR)"}, {"answer": "SELECT telephone__052_ FROM table_14465924_1 WHERE area__km_2__ = \"5.42\"", "question": "Name the telephone 052 for area km2  being 5.42", "context": "CREATE TABLE table_14465924_1 (telephone__052_ VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT population__people_ FROM table_14465924_1 WHERE area__km_2__ = \"24.35\"", "question": "Name the population of people for area being 24.35", "context": "CREATE TABLE table_14465924_1 (population__people_ VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT COUNT(telephone__052_) FROM table_14465924_1 WHERE area__km_2__ = \"362.81\"", "question": "Name the total number of telephone 052 for 362.81", "context": "CREATE TABLE table_14465924_1 (telephone__052_ VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT name_of_administrative_unit FROM table_14465924_1 WHERE number = 4", "question": "Name the number of administrative unit for number 4", "context": "CREATE TABLE table_14465924_1 (name_of_administrative_unit VARCHAR, number VARCHAR)"}, {"answer": "SELECT name_of_administrative_unit FROM table_14465924_1 WHERE population__people_ = 3464", "question": "Name the name of administrative unit for 3464 people", "context": "CREATE TABLE table_14465924_1 (name_of_administrative_unit VARCHAR, population__people_ VARCHAR)"}, {"answer": "SELECT COUNT(cmdlets) FROM table_14465871_2 WHERE version = \"2008\"", "question": "How many of the cmdlets are the 2008 version?", "context": "CREATE TABLE table_14465871_2 (cmdlets VARCHAR, version VARCHAR)"}, {"answer": "SELECT provider FROM table_14465871_2 WHERE application = \"Exchange Server\"", "question": "Which providers use exchange server?", "context": "CREATE TABLE table_14465871_2 (provider VARCHAR, application VARCHAR)"}, {"answer": "SELECT provider FROM table_14465871_2 WHERE version = \"2008\"", "question": "Which providers use version 2008?", "context": "CREATE TABLE table_14465871_2 (provider VARCHAR, version VARCHAR)"}, {"answer": "SELECT 1986 AS _87 FROM table_14489821_1 WHERE team = \"Argentinos Juniors\"", "question": "how many points  did the argentinos juniors team score during the 1986-87 season?", "context": "CREATE TABLE table_14489821_1 (team VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_14489821_1", "question": "what is the maximum number of matches played by a team?", "context": "CREATE TABLE table_14489821_1 (played INTEGER)"}, {"answer": "SELECT 1986 AS _87 FROM table_14489821_1 WHERE average = \"1.079\"", "question": "list the number of matches played by the teams that got an average of 1.079", "context": "CREATE TABLE table_14489821_1 (average VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_14496232_2 WHERE tour = \"Korea Open Super Series\"", "question": "Name the womens singles for korea open super series", "context": "CREATE TABLE table_14496232_2 (womens_singles VARCHAR, tour VARCHAR)"}, {"answer": "SELECT tour FROM table_14496232_2 WHERE mens_singles = \"Chen Jin\" AND womens_doubles = \"Zhang Yawen Zhao Tingting\"", "question": "Name the tour when mens singles is chen jin and womens doubles is zhang yawen zhao tingting", "context": "CREATE TABLE table_14496232_2 (tour VARCHAR, mens_singles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_14496232_2 WHERE tour = \"Malaysia Super Series\"", "question": "Name the womens doubles when tour is malaysia super series", "context": "CREATE TABLE table_14496232_2 (womens_doubles VARCHAR, tour VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_14496232_2 WHERE womens_singles = \"Wang Lin\" AND mixed_doubles = \"Joachim Fischer Nielsen Christinna Pedersen\"", "question": "Name the mens singles when womens singles is wang lin and mixed doubles is joachim fischer nielsen christinna pedersen", "context": "CREATE TABLE table_14496232_2 (mens_singles VARCHAR, womens_singles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_14496232_2 WHERE tour = \"Hong Kong Super Series\"", "question": "Name the mixed doubles when tour is hong kong super series", "context": "CREATE TABLE table_14496232_2 (mixed_doubles VARCHAR, tour VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_14496232_2 WHERE womens_singles = \"Zhu Lin\"", "question": "Name the mixed doubles for zhu lin", "context": "CREATE TABLE table_14496232_2 (mixed_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT week FROM table_14520977_1 WHERE location = \"Kingdome\"", "question": "Name the week for kingdome", "context": "CREATE TABLE table_14520977_1 (week VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_14520977_1 WHERE result = \"L 13\u201310 OT\"", "question": "Name the date when result is l 13\u201310 ot", "context": "CREATE TABLE table_14520977_1 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT record FROM table_14520977_1 WHERE result = \"L 24\u201322\"", "question": "Name the record for l 24\u201322", "context": "CREATE TABLE table_14520977_1 (record VARCHAR, result VARCHAR)"}, {"answer": "SELECT country FROM table_14523485_9 WHERE channel = \"Fox\"", "question": "Which Country is the show aired on Fox?", "context": "CREATE TABLE table_14523485_9 (country VARCHAR, channel VARCHAR)"}, {"answer": "SELECT channel FROM table_14523485_9 WHERE country = \"New Zealand\"", "question": "Where is the show aired in New Zealand?", "context": "CREATE TABLE table_14523485_9 (channel VARCHAR, country VARCHAR)"}, {"answer": "SELECT channel FROM table_14523485_9 WHERE top_prize = \"\u20ac100,000\"", "question": "What channel had the prize of \u20ac100,000?", "context": "CREATE TABLE table_14523485_9 (channel VARCHAR, top_prize VARCHAR)"}, {"answer": "SELECT COUNT(host) FROM table_14523485_9 WHERE channel = \"Seven Network\"", "question": "How many hosts were on Seven Network?", "context": "CREATE TABLE table_14523485_9 (host VARCHAR, channel VARCHAR)"}, {"answer": "SELECT country FROM table_14523485_9 WHERE channel = \"TVNZ\"", "question": "What country is the show aired on TVNZ?", "context": "CREATE TABLE table_14523485_9 (country VARCHAR, channel VARCHAR)"}, {"answer": "SELECT capital FROM table_14532_1 WHERE region = \"Umbria\"", "question": "What is the capital of Umbria?", "context": "CREATE TABLE table_14532_1 (capital VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_14532_1 WHERE capital = \"Milan\"", "question": "What is the region where Milan is located?", "context": "CREATE TABLE table_14532_1 (region VARCHAR, capital VARCHAR)"}, {"answer": "SELECT MAX(area__km\u00b2_) FROM table_14532_1 WHERE region = \"Tuscany\"", "question": "What is the area of Tuscany?", "context": "CREATE TABLE table_14532_1 (area__km\u00b2_ INTEGER, region VARCHAR)"}, {"answer": "SELECT MIN(2500 AS _3000ft) FROM table_1456056_1 WHERE country = \"Scotland\"", "question": "Name the minimum for 2500-3000 ft for scotland", "context": "CREATE TABLE table_1456056_1 (country VARCHAR)"}, {"answer": "SELECT MAX(2500 AS _3000ft) FROM table_1456056_1", "question": "Name the most of 2500-3000ft", "context": "CREATE TABLE table_1456056_1 (Id VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_1456056_1 WHERE country = \"Ireland\"", "question": "Name the minimum total for ireland", "context": "CREATE TABLE table_1456056_1 (total INTEGER, country VARCHAR)"}, {"answer": "SELECT directed_by FROM table_14562722_1 WHERE written_by = \"Aaron Ehasz & John O'Bryan\"", "question": "Who directed all the episodes that were written by aaron ehasz & john o'bryan?", "context": "CREATE TABLE table_14562722_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT production_code FROM table_14562722_1 WHERE written_by = \"Michael Dante DiMartino\" AND directed_by = \"Lauren MacMullan\"", "question": "What was the production code of the episode that was written by michael dante dimartino and directed by lauren macmullan?", "context": "CREATE TABLE table_14562722_1 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_14562722_1 WHERE directed_by = \"Giancarlo Volpe\" AND written_by = \"John O'Bryan\"", "question": "What was the airdate of the episode that was directed by giancarlo volpe and written by is john o'bryan?", "context": "CREATE TABLE table_14562722_1 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT situation FROM table_14570857_1 WHERE original_us_airdate = \"December 5, 2007\"", "question": "Which situation has an original u.s. airdate of December 5, 2007?", "context": "CREATE TABLE table_14570857_1 (situation VARCHAR, original_us_airdate VARCHAR)"}, {"answer": "SELECT circuit FROM table_14574130_3 WHERE gt3_winner = \"Alex Mortimer Bradley Ellis\"", "question": "Name the circuit for gt3 alex mortimer bradley ellis", "context": "CREATE TABLE table_14574130_3 (circuit VARCHAR, gt3_winner VARCHAR)"}, {"answer": "SELECT episodes FROM table_14562722_2 WHERE region_1 = \"September 19, 2006\"", "question": "Name the episodes when region 1 is september 19, 2006", "context": "CREATE TABLE table_14562722_2 (episodes VARCHAR, region_1 VARCHAR)"}, {"answer": "SELECT MAX(discs) FROM table_14562722_2", "question": "Name the maximum discs", "context": "CREATE TABLE table_14562722_2 (discs INTEGER)"}, {"answer": "SELECT MAX(episodes) FROM table_14562722_2 WHERE region_4 = \"March 13, 2008\"", "question": "Name the most epiosdes when region 4 is march 13, 2008", "context": "CREATE TABLE table_14562722_2 (episodes INTEGER, region_4 VARCHAR)"}, {"answer": "SELECT individual_winners FROM table_1458666_4 WHERE nation = \"Australia\"", "question": "what's the\u00a0individual winners\u00a0with\u00a0nation\u00a0being australia", "context": "CREATE TABLE table_1458666_4 (individual_winners VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(total_wins) FROM table_1458666_4", "question": "what is the value for minimum\u00a0total wins", "context": "CREATE TABLE table_1458666_4 (total_wins INTEGER)"}, {"answer": "SELECT COUNT(team_s_) FROM table_1458412_1 WHERE winnings = \"$1,752,299\"", "question": "What is the total amount o teams where winnings is $1,752,299?", "context": "CREATE TABLE table_1458412_1 (team_s_ VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT avg_start FROM table_1458412_1 WHERE starts = 30", "question": "What is the avg start that starts at 30?", "context": "CREATE TABLE table_1458412_1 (avg_start VARCHAR, starts VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_1458412_1 WHERE avg_start = \"27.3\"", "question": "What is the totl amount of years where avg start is 27.3?", "context": "CREATE TABLE table_1458412_1 (year VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT name__alma_mater_ FROM table_14594528_6 WHERE wins = 15", "question": "What coach had 15 wins?", "context": "CREATE TABLE table_14594528_6 (name__alma_mater_ VARCHAR, wins VARCHAR)"}, {"answer": "SELECT losses FROM table_14594528_6 WHERE games = 19", "question": "How many losses for the coach that coached 19 games?", "context": "CREATE TABLE table_14594528_6 (losses VARCHAR, games VARCHAR)"}, {"answer": "SELECT COUNT(class_aA) FROM table_14601528_2 WHERE class_aAA = Bridgeport AND school_year = \"1999-2000\"", "question": "Name the number of class aa for bridgeport and 1999-2000", "context": "CREATE TABLE table_14601528_2 (class_aA VARCHAR, class_aAA VARCHAR, Bridgeport VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aA FROM table_14601528_2 WHERE school_year = \"1998-99\"", "question": "Name the class aa for 1998-99", "context": "CREATE TABLE table_14601528_2 (class_aA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_a FROM table_14601528_2 WHERE class_aAAAA = Pearland", "question": "Name the class a for pearland", "context": "CREATE TABLE table_14601528_2 (class_a VARCHAR, class_aAAAA VARCHAR, Pearland VARCHAR)"}, {"answer": "SELECT class_aAAAA FROM table_14601528_2 WHERE school_year = \"2005-06\"", "question": "Name the class aaaaa for 2005-06", "context": "CREATE TABLE table_14601528_2 (class_aAAAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT COUNT(class_aAAAA) FROM table_14601528_2 WHERE school_year = \"1988-89\"", "question": "Name the number of class aaaaa for 1988-89", "context": "CREATE TABLE table_14601528_2 (class_aAAAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT females___percentage_ FROM table_14598_9 WHERE india_state_ut = \"Maharashtra\"", "question": "What is the percentage of females where in India and are maharashtra?", "context": "CREATE TABLE table_14598_9 (females___percentage_ VARCHAR, india_state_ut VARCHAR)"}, {"answer": "SELECT females___percentage_ FROM table_14598_9 WHERE literate_persons___percentage_ = \"68.74\"", "question": "What is the percentage of all females that are literate people have a percentage of 68.74?", "context": "CREATE TABLE table_14598_9 (females___percentage_ VARCHAR, literate_persons___percentage_ VARCHAR)"}, {"answer": "SELECT females___percentage_ FROM table_14598_9 WHERE state_ut_code = 4", "question": "What is the percentage of females where the state code is a 4?", "context": "CREATE TABLE table_14598_9 (females___percentage_ VARCHAR, state_ut_code VARCHAR)"}, {"answer": "SELECT literate_persons___percentage_ FROM table_14598_9 WHERE females___percentage_ = \"73.17\"", "question": "What is the percentage of all the literate people where females are 73.17?", "context": "CREATE TABLE table_14598_9 (literate_persons___percentage_ VARCHAR, females___percentage_ VARCHAR)"}, {"answer": "SELECT literate_persons___percentage_ FROM table_14598_9 WHERE india_state_ut = \"Andaman and Nicobar Islands\"", "question": "What is the percentage of literate people where india is andaman and Nicobar Islands?", "context": "CREATE TABLE table_14598_9 (literate_persons___percentage_ VARCHAR, india_state_ut VARCHAR)"}, {"answer": "SELECT class_aAAA FROM table_14603057_2 WHERE school_year = \"2006-07\"", "question": "Who was the Class AAAA champion in 2006-07?", "context": "CREATE TABLE table_14603057_2 (class_aAAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT COUNT(class_a) FROM table_14603057_2 WHERE class_aAAA = Gregory - Portland", "question": "How many times was there a class A winner when Gregory-Portland was the class AAAA?", "context": "CREATE TABLE table_14603057_2 (class_a VARCHAR, class_aAAA VARCHAR, Gregory VARCHAR, Portland VARCHAR)"}, {"answer": "SELECT COUNT(class_aAAA) FROM table_14603057_2 WHERE school_year = \"2002-03\"", "question": "How many Class AAAA winners where in 2002-03?", "context": "CREATE TABLE table_14603057_2 (class_aAAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aAAAA FROM table_14603057_2 WHERE school_year = \"2008-09\"", "question": "Who was the class AAAAA in 2008-09?", "context": "CREATE TABLE table_14603057_2 (class_aAAAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aA FROM table_14603057_2 WHERE class_a = \"Plains\" AND class_aAAAA = Lubbock", "question": "Who was the Class AA winner when Plains was Class A winner and Lubbock was Class AAAAA winner?", "context": "CREATE TABLE table_14603057_2 (class_aA VARCHAR, class_a VARCHAR, class_aAAAA VARCHAR, Lubbock VARCHAR)"}, {"answer": "SELECT class_a FROM table_14603057_2 WHERE school_year = \"2006-07\"", "question": "Who was the Class A winner in 2006-07?", "context": "CREATE TABLE table_14603057_2 (class_a VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT school_year FROM table_14603212_1 WHERE class_aAA = Wimberley AND class_a = \"Canadian\"", "question": "If class a is canadian and class aaa is wimberley, which possible school years could this fall on? ", "context": "CREATE TABLE table_14603212_1 (school_year VARCHAR, class_aAA VARCHAR, Wimberley VARCHAR, class_a VARCHAR)"}, {"answer": "SELECT school_year FROM table_14603212_1 WHERE class_aA = Franklin", "question": "For franklin of class aa, which school years does this occur? ", "context": "CREATE TABLE table_14603212_1 (school_year VARCHAR, class_aA VARCHAR, Franklin VARCHAR)"}, {"answer": "SELECT school_year FROM table_14603212_1 WHERE class_a = \"Lindsay\" AND class_aAA = Cuero", "question": "Which school years have a class a being lindsay and a class aaa being cuero? ", "context": "CREATE TABLE table_14603212_1 (school_year VARCHAR, class_a VARCHAR, class_aAA VARCHAR, Cuero VARCHAR)"}, {"answer": "SELECT season FROM table_14609295_4 WHERE overall = \"29-7\"", "question": "What season was the overall record 29-7?", "context": "CREATE TABLE table_14609295_4 (season VARCHAR, overall VARCHAR)"}, {"answer": "SELECT postseason FROM table_14609295_4 WHERE overall = \"29-7\"", "question": "How far into the postseason did the Rams go when their record was 29-7?", "context": "CREATE TABLE table_14609295_4 (postseason VARCHAR, overall VARCHAR)"}, {"answer": "SELECT conference FROM table_14609295_4 WHERE postseason = \"CBI Champions\"", "question": "What was the Ram's conference record when they were the CBI champions?", "context": "CREATE TABLE table_14609295_4 (conference VARCHAR, postseason VARCHAR)"}, {"answer": "SELECT season FROM table_14609295_4 WHERE overall = \"24-10\"", "question": "What season was the overall record 24-10?", "context": "CREATE TABLE table_14609295_4 (season VARCHAR, overall VARCHAR)"}, {"answer": "SELECT school_year FROM table_14603212_5 WHERE class_aAA = Argyle", "question": "What are the school years where class \"AAA\" is argyle?", "context": "CREATE TABLE table_14603212_5 (school_year VARCHAR, class_aAA VARCHAR, Argyle VARCHAR)"}, {"answer": "SELECT class_aAA FROM table_14603212_5 WHERE school_year = \"2005-06\"", "question": "What are all the AAA classes in the school years of 2005-06?", "context": "CREATE TABLE table_14603212_5 (class_aAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aAAA FROM table_14603212_5 WHERE school_year = \"2004-05\"", "question": "What are all the AAAA classes in the schools years 2004-05?", "context": "CREATE TABLE table_14603212_5 (class_aAAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT school_year FROM table_14603212_5 WHERE class_aAAA = Gregory - Portland", "question": "What are all the school years where class AAAA is in Gregory-Portland? ", "context": "CREATE TABLE table_14603212_5 (school_year VARCHAR, class_aAAA VARCHAR, Gregory VARCHAR, Portland VARCHAR)"}, {"answer": "SELECT class_aAA FROM table_14603212_5 WHERE school_year = \"2004-05\"", "question": "What are all the AAA classes in the school years of 2004-05?", "context": "CREATE TABLE table_14603212_5 (class_aAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class FROM table_14624447_24 WHERE position = \"SLB\"", "question": "What are all classes for the position SLB?", "context": "CREATE TABLE table_14624447_24 (class VARCHAR, position VARCHAR)"}, {"answer": "SELECT weight FROM table_14624447_24 WHERE number = 27", "question": "What are all weights for the number 27?", "context": "CREATE TABLE table_14624447_24 (weight VARCHAR, number VARCHAR)"}, {"answer": "SELECT name FROM table_14624447_24 WHERE position = \"FS\"", "question": "What are all names for the position FS?", "context": "CREATE TABLE table_14624447_24 (name VARCHAR, position VARCHAR)"}, {"answer": "SELECT call_sign FROM table_14623167_1 WHERE physical = 17", "question": "Name the call sign for the 17 physical", "context": "CREATE TABLE table_14623167_1 (call_sign VARCHAR, physical VARCHAR)"}, {"answer": "SELECT branding FROM table_14623167_1 WHERE owner = \"Forum Communications\"", "question": "Name the branding for forum communications", "context": "CREATE TABLE table_14623167_1 (branding VARCHAR, owner VARCHAR)"}, {"answer": "SELECT COUNT(branding) FROM table_14623167_1 WHERE physical = 31", "question": "Name the number of branding for 31 physical", "context": "CREATE TABLE table_14623167_1 (branding VARCHAR, physical VARCHAR)"}, {"answer": "SELECT COUNT(virtual) FROM table_14623167_1 WHERE network = \"NBC\"", "question": "Name the number of virtual for NBC", "context": "CREATE TABLE table_14623167_1 (virtual VARCHAR, network VARCHAR)"}, {"answer": "SELECT COUNT(virtual) FROM table_14623167_1 WHERE network = \"Fox\"", "question": "Name the virtual for Fox", "context": "CREATE TABLE table_14623167_1 (virtual VARCHAR, network VARCHAR)"}, {"answer": "SELECT COUNT(owner) FROM table_14623167_1 WHERE branding = \"Prairie Public\"", "question": "Name the owners for prairie public", "context": "CREATE TABLE table_14623167_1 (owner VARCHAR, branding VARCHAR)"}, {"answer": "SELECT COUNT(class_aAA) FROM table_14630796_1 WHERE school_year = \"2006-07\"", "question": "Name the total number of class aaa for 2006-07", "context": "CREATE TABLE table_14630796_1 (class_aAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aAAA FROM table_14630796_1 WHERE class_a = \"Menard\"", "question": "Name the class aaaa for menard", "context": "CREATE TABLE table_14630796_1 (class_aAAA VARCHAR, class_a VARCHAR)"}, {"answer": "SELECT class_a FROM table_14630796_1 WHERE class_aAAA = Carthage", "question": "Name the class a for carthage", "context": "CREATE TABLE table_14630796_1 (class_a VARCHAR, class_aAAA VARCHAR, Carthage VARCHAR)"}, {"answer": "SELECT original_title FROM table_14631909_1 WHERE english_title = \"Europe for Dummies\"", "question": "What is the original title of europe for dummies?", "context": "CREATE TABLE table_14631909_1 (original_title VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT english_title FROM table_14631909_1 WHERE author = \"Mariusz Szczygie\u0142\"", "question": "What is the English version of Mariusz Szczygie\u0142 book?", "context": "CREATE TABLE table_14631909_1 (english_title VARCHAR, author VARCHAR)"}, {"answer": "SELECT pole_position FROM table_14638077_2 WHERE date = \"August 10\"", "question": "who is the the\u00a0pole position\u00a0with\u00a0date\u00a0being august 10", "context": "CREATE TABLE table_14638077_2 (pole_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(winning_team) FROM table_14638077_2 WHERE circuit = \"Road America\"", "question": " how many\u00a0winning team\u00a0with\u00a0circuit\u00a0being road america", "context": "CREATE TABLE table_14638077_2 (winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_14638077_2 WHERE pole_position = \"Paul Tracy\" AND race_name = \"Miller Genuine Draft 200\"", "question": "who is the the\u00a0winning driver\u00a0with\u00a0pole position\u00a0being paul tracy and\u00a0race name\u00a0being miller genuine draft 200", "context": "CREATE TABLE table_14638077_2 (winning_driver VARCHAR, pole_position VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT pole_position FROM table_14638077_2 WHERE rnd = 16", "question": "who is the the\u00a0pole position\u00a0with\u00a0rnd\u00a0being 16", "context": "CREATE TABLE table_14638077_2 (pole_position VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT race_name FROM table_14638077_2 WHERE date = \"September 7\"", "question": "what's the\u00a0race name\u00a0with\u00a0date\u00a0being september 7", "context": "CREATE TABLE table_14638077_2 (race_name VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_14638077_2 WHERE rnd = 5", "question": "what's the\u00a0circuit\u00a0with\u00a0rnd\u00a0being 5", "context": "CREATE TABLE table_14638077_2 (circuit VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT COUNT(_number_appearances) FROM table_1463332_2 WHERE most_recent_final = \"1999, beat Genk 3-1\"", "question": "What is the number of appearances where the most recent final result is 1999, beat Genk 3-1?", "context": "CREATE TABLE table_1463332_2 (_number_appearances VARCHAR, most_recent_final VARCHAR)"}, {"answer": "SELECT MAX(_number_runner_up) FROM table_1463332_2 WHERE years__won_in_bold_ = \"1984, 2010\"", "question": "What is the number of runner-up results for the years (won in bold) 1984, 2010?", "context": "CREATE TABLE table_1463332_2 (_number_runner_up INTEGER, years__won_in_bold_ VARCHAR)"}, {"answer": "SELECT most_recent_final FROM table_1463332_2 WHERE years__won_in_bold_ = \"1979\"", "question": "What is the most recent final result for the years (won in bold) 1979?", "context": "CREATE TABLE table_1463332_2 (most_recent_final VARCHAR, years__won_in_bold_ VARCHAR)"}, {"answer": "SELECT title FROM table_14637853_3 WHERE original_air_date = \"September23,1995\"", "question": "what's the\u00a0title\u00a0with\u00a0original air date\u00a0being september23,1995", "context": "CREATE TABLE table_14637853_3 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT written_by FROM table_14637853_3 WHERE original_air_date = \"September23,1995\"", "question": "who wrote with\u00a0original air date\u00a0being september23,1995", "context": "CREATE TABLE table_14637853_3 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT directed_by FROM table_14637853_3 WHERE original_air_date = \"November18,1995\"", "question": "who directed with\u00a0original air date\u00a0being november18,1995", "context": "CREATE TABLE table_14637853_3 (directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT social_democratic FROM table_1463383_1 WHERE left_bloc = \"5.5%\"", "question": "What percentages of social democratic correspond to a 5.5% left bloc?", "context": "CREATE TABLE table_1463383_1 (social_democratic VARCHAR, left_bloc VARCHAR)"}, {"answer": "SELECT date_released FROM table_1463383_1 WHERE green_communist = \"8.9%\"", "question": "When was there 8.9% Green-Communist?", "context": "CREATE TABLE table_1463383_1 (date_released VARCHAR, green_communist VARCHAR)"}, {"answer": "SELECT COUNT(socialist) FROM table_1463383_1 WHERE peoples_party = \"7.5%\"", "question": "How many socialists correspond to a 7.5% People's Party?", "context": "CREATE TABLE table_1463383_1 (socialist VARCHAR, peoples_party VARCHAR)"}, {"answer": "SELECT left_bloc FROM table_1463383_1 WHERE social_democratic = \"28.7%\"", "question": "What are all percentages of Left Block when there is a 28.7% Social Democratic?", "context": "CREATE TABLE table_1463383_1 (left_bloc VARCHAR, social_democratic VARCHAR)"}, {"answer": "SELECT social_democratic FROM table_1463383_1 WHERE socialist = \"46.1%\"", "question": "If Socialist is at 46.1%, what are all percentages for social democratic?", "context": "CREATE TABLE table_1463383_1 (social_democratic VARCHAR, socialist VARCHAR)"}, {"answer": "SELECT COUNT(left_bloc) FROM table_1463383_1 WHERE social_democratic = \"32.1%\"", "question": "How many percentages of Left Bloc correspond to a 32.1% Social Democratic?", "context": "CREATE TABLE table_1463383_1 (left_bloc VARCHAR, social_democratic VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_14650162_1 WHERE college = \"Minnesota\"", "question": "What is the NFL team of the player whose college is Minnesota?", "context": "CREATE TABLE table_14650162_1 (nfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_14650162_1 WHERE position = \"Defensive Back\"", "question": "What college did the defensive back attend?", "context": "CREATE TABLE table_14650162_1 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT pick__number FROM table_14650162_1 WHERE college = \"Florida State\"", "question": "What is the pick number of the player whose college is Florida State?", "context": "CREATE TABLE table_14650162_1 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(college) FROM table_14650162_1 WHERE pick__number = 269", "question": "How many colleges did pick number 269 attend?", "context": "CREATE TABLE table_14650162_1 (college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_14650162_1 WHERE position = \"Tight End\"", "question": "How many picks played Tight end?", "context": "CREATE TABLE table_14650162_1 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_14650162_1 WHERE college = \"Western Kentucky\"", "question": "What is the position of the player whose college is Western Kentucky?", "context": "CREATE TABLE table_14650162_1 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_14649522_1 WHERE player = \"Robert Brooks\"", "question": "What position does Robert Brooks play?", "context": "CREATE TABLE table_14649522_1 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_14649522_1 WHERE player = \"Robert Brooks\"", "question": "Which team does Robert Brooks play with?", "context": "CREATE TABLE table_14649522_1 (nfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_14649522_1 WHERE college = \"South Carolina\"", "question": "Which team picked from South Carolina college?", "context": "CREATE TABLE table_14649522_1 (nfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_14649522_1 WHERE position = \"Wide Receiver\" AND pick__number < 130.0", "question": "Which college was the wide receiver whose pick was less than 130.0 picked from?", "context": "CREATE TABLE table_14649522_1 (college VARCHAR, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT position FROM table_14650373_1 WHERE pick__number = 34", "question": "What position(s) does the player drafted #34 play?", "context": "CREATE TABLE table_14650373_1 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_14650373_1", "question": "What is the highest pick number?", "context": "CREATE TABLE table_14650373_1 (pick__number INTEGER)"}, {"answer": "SELECT pick__number FROM table_14650373_1 WHERE college = \"Arizona State\"", "question": "What number picked were players from arizona state picked?", "context": "CREATE TABLE table_14650373_1 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_14650373_1 WHERE player = \"Keith Woodside\"", "question": "What NFL team does player keith woodside play for?", "context": "CREATE TABLE table_14650373_1 (nfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_14655985_1 WHERE college = \"Penn State\"", "question": "what's the\u00a0player\u00a0with\u00a0college\u00a0being penn state", "context": "CREATE TABLE table_14655985_1 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_14655985_1 WHERE college = \"USC\"", "question": "what's the\u00a0position\u00a0with\u00a0college\u00a0being usc", "context": "CREATE TABLE table_14655985_1 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(college) FROM table_14655985_1 WHERE player = \"Rich Voltzke\"", "question": " how many\u00a0college\u00a0with\u00a0player\u00a0being rich voltzke", "context": "CREATE TABLE table_14655985_1 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_14655985_1 WHERE position = \"Placekicker\"", "question": "what's the\u00a0college\u00a0with\u00a0position\u00a0being placekicker", "context": "CREATE TABLE table_14655985_1 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_14655985_1 WHERE pick__number = 64", "question": "who is the the\u00a0player\u00a0where\u00a0pick #\u00a0is 64", "context": "CREATE TABLE table_14655985_1 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT date FROM table_14655917_1 WHERE opponent = \"Denver Broncos\"", "question": "What day were the Denver Broncos the opponent?", "context": "CREATE TABLE table_14655917_1 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_14655917_1 WHERE opponent = \"Detroit Lions\"", "question": "What day was the oppenent the detroit lions?", "context": "CREATE TABLE table_14655917_1 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT week FROM table_14656147_2 WHERE record = \"0-1\"", "question": "List the record of 0-1 from the table?", "context": "CREATE TABLE table_14656147_2 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_14656147_2 WHERE result = \"L 3-6\"", "question": "Type the record details if any result has L 3-6 in it?", "context": "CREATE TABLE table_14656147_2 (record VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_14656147_2", "question": "Find the least value of attendance?", "context": "CREATE TABLE table_14656147_2 (attendance INTEGER)"}, {"answer": "SELECT attendance FROM table_14656147_2 WHERE opponent = \"Tampa Bay Buccaneers\"", "question": "type the attendance for playing with tampa bay buccaneers?", "context": "CREATE TABLE table_14656147_2 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(revenue__millions_) FROM table_14700336_1 WHERE revenue_per_capita = \"$6,126\"", "question": "How many numbers were recorded under revenue when revenue per capita was $6,126?", "context": "CREATE TABLE table_14700336_1 (revenue__millions_ VARCHAR, revenue_per_capita VARCHAR)"}, {"answer": "SELECT spending_per_capita FROM table_14700336_1 WHERE revenue_per_capita = \"$7,755\"", "question": "What was the spending per capita when the revenue per capita was $7,755?", "context": "CREATE TABLE table_14700336_1 (spending_per_capita VARCHAR, revenue_per_capita VARCHAR)"}, {"answer": "SELECT presidential_majority_2000_2004 FROM table_14700336_1 WHERE presidential_majority_2012 = \"Non-voting\"", "question": "What was the recorded result under presidential majority 2000/2004 when the presiditial majority in 2012 was non-voting?", "context": "CREATE TABLE table_14700336_1 (presidential_majority_2000_2004 VARCHAR, presidential_majority_2012 VARCHAR)"}, {"answer": "SELECT COUNT(revenue__millions_) FROM table_14700336_1 WHERE spending_per_capita = \"$6,736\"", "question": "How many times was revenue in millions recorded when the spending per capita was $6,736?", "context": "CREATE TABLE table_14700336_1 (revenue__millions_ VARCHAR, spending_per_capita VARCHAR)"}, {"answer": "SELECT MAX(dvd_no) FROM table_1467951_4", "question": "What is the largest number of DVDs?", "context": "CREATE TABLE table_1467951_4 (dvd_no INTEGER)"}, {"answer": "SELECT MAX(ep_no) FROM table_1467951_4", "question": "What is the highest number of episodes?", "context": "CREATE TABLE table_1467951_4 (ep_no INTEGER)"}, {"answer": "SELECT MAX(release_date) FROM table_1467951_4", "question": "What is the most recent release date?", "context": "CREATE TABLE table_1467951_4 (release_date INTEGER)"}, {"answer": "SELECT COUNT(release_date) FROM table_1467951_4 WHERE dvd_name = \"Volume 4\"", "question": "How many release dates does volume 4 DVD have?", "context": "CREATE TABLE table_1467951_4 (release_date VARCHAR, dvd_name VARCHAR)"}, {"answer": "SELECT arrival FROM table_14688744_2 WHERE no = 14", "question": "what is the arrival time for no. 14?", "context": "CREATE TABLE table_14688744_2 (arrival VARCHAR, no VARCHAR)"}, {"answer": "SELECT arrival FROM table_14688744_2 WHERE station_code = \"AWY\"", "question": "what is the arrival time where the station code is awy?", "context": "CREATE TABLE table_14688744_2 (arrival VARCHAR, station_code VARCHAR)"}, {"answer": "SELECT COUNT(station) FROM table_14688744_2 WHERE station_code = \"AWY\"", "question": "what amount of stations have station code is awy?", "context": "CREATE TABLE table_14688744_2 (station VARCHAR, station_code VARCHAR)"}, {"answer": "SELECT arrival FROM table_14688744_2 WHERE station_code = \"PNVL\"", "question": "what is the arrival time where station code is pnvl?", "context": "CREATE TABLE table_14688744_2 (arrival VARCHAR, station_code VARCHAR)"}, {"answer": "SELECT COUNT(years) FROM table_14707564_1 WHERE total = 402", "question": "How many years was the total 402?", "context": "CREATE TABLE table_14707564_1 (years VARCHAR, total VARCHAR)"}, {"answer": "SELECT young_rider_classification FROM table_14710984_2 WHERE mountains_classification = \"Emanuele Sella\" AND stage = 9", "question": "Who won the young rider classification in Stage 9 where the mountain classification was Emanuele Sella?", "context": "CREATE TABLE table_14710984_2 (young_rider_classification VARCHAR, mountains_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT general_classification FROM table_14710984_2 WHERE stage = 3", "question": "Who is the general classification leader for stage 3?", "context": "CREATE TABLE table_14710984_2 (general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT COUNT(points_classification) FROM table_14710984_2 WHERE winner = \"Matteo Priamo\"", "question": "Who won the points classifications in the stage where Matteo Priamo was the winner?", "context": "CREATE TABLE table_14710984_2 (points_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT young_rider_classification FROM table_14710984_2 WHERE winner = \"Marzio Bruseghin\"", "question": "Who was awarded the young ride classification leader when the winner was Marzio Bruseghin?", "context": "CREATE TABLE table_14710984_2 (young_rider_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT title FROM table_14724369_1 WHERE directed_by = \"Neil Affleck\"", "question": "Which title did Neil Affleck direct?", "context": "CREATE TABLE table_14724369_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_14724369_1 WHERE production_code = \"1ACX03\"", "question": "What is the first number in series that had the production code 1ACX03?", "context": "CREATE TABLE table_14724369_1 (no_in_series INTEGER, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_14724369_1 WHERE production_code = \"1ACX04\"", "question": "Which title had the production code 1ACX04?", "context": "CREATE TABLE table_14724369_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_14724369_1 WHERE directed_by = \"Michael DiMartino\"", "question": "When did the show directed by Michael Dimartino first air?", "context": "CREATE TABLE table_14724369_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_14724369_1 WHERE directed_by = \"Monte Young\"", "question": "Which series numbers were directed by Monte Young?", "context": "CREATE TABLE table_14724369_1 (no_in_series VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_14724369_1 WHERE written_by = \"Chris Sheridan\"", "question": "How many people directed the show written by Chris Sheridan?", "context": "CREATE TABLE table_14724369_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT regular_season FROM table_14723382_1 WHERE year = 2011", "question": "What regular seasons occurred in 2011?", "context": "CREATE TABLE table_14723382_1 (regular_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(division) FROM table_14723382_1", "question": "What is the largest numbered?", "context": "CREATE TABLE table_14723382_1 (division INTEGER)"}, {"answer": "SELECT COUNT(position) FROM table_1473672_2 WHERE player = \"Rene Villemure\"", "question": "How many positions does rene villemure play?", "context": "CREATE TABLE table_1473672_2 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_1473672_2 WHERE college_junior_club_team = \"Medicine Hat Tigers (WCHL)\"", "question": "What is the pick# for the medicine hat tigers (wchl)?", "context": "CREATE TABLE table_1473672_2 (pick__number INTEGER, college_junior_club_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1473672_2 WHERE player = \"Stan Weir\"", "question": "What nhl team does stan weir play for?", "context": "CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1473672_2 WHERE player = \"Dwight Bialowas\"", "question": "What nhl team does dwight bialowas play for?", "context": "CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_1473672_2", "question": "Lorne Henning has the lowest pick# of?", "context": "CREATE TABLE table_1473672_2 (pick__number INTEGER)"}, {"answer": "SELECT nhl_team FROM table_1473672_2 WHERE college_junior_club_team = \"Oshawa Generals (OMJHL)\"", "question": "Jack Lynch played for the oshawa generals (omjhl) before playing for what nhl team?", "context": "CREATE TABLE table_1473672_2 (nhl_team VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1473672_3 WHERE player = \"Michel Boudreau\"", "question": "Which colle/junior/club team did Michel Boudreau play for?", "context": "CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_1473672_3 WHERE position = \"Right Wing\"", "question": "Which players played right wing?", "context": "CREATE TABLE table_1473672_3 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_1473672_3 WHERE nhl_team = \"Philadelphia Flyers\"", "question": "Which nationality is the player from the Philadelphia Flyers?", "context": "CREATE TABLE table_1473672_3 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_1473672_3 WHERE nhl_team = \"Philadelphia Flyers\"", "question": "Which position did the player hold that played for the Philadelphia Flyers in NHL?", "context": "CREATE TABLE table_1473672_3 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1473672_3 WHERE nhl_team = \"Buffalo Sabres\"", "question": "Which college/junior/club team did the player play on that played for the Buffalo Sabres in NHL?", "context": "CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(college_junior_club_team) FROM table_1473672_4 WHERE nhl_team = \"Philadelphia Flyers\"", "question": "Name the number of teams for college/junior club for philadelphia flyers", "context": "CREATE TABLE table_1473672_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_1473672_4 WHERE player = \"Ron Lalonde\"", "question": "Name the position for ron lalonde", "context": "CREATE TABLE table_1473672_4 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1473672_4 WHERE pick__number = 63", "question": "Name the college/junior club team for pick number 63", "context": "CREATE TABLE table_1473672_4 (college_junior_club_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_1473672_10 WHERE player = \"Rene Lambert\"", "question": "How many positions did 1972 NHL Draft pick Rene Lambert play?", "context": "CREATE TABLE table_1473672_10 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1473672_9 WHERE nhl_team = \"California Golden Seals\"", "question": "what's the\u00a0college/junior/club team\u00a0with\u00a0nhl team\u00a0being california golden seals", "context": "CREATE TABLE table_1473672_9 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1473672_9 WHERE college_junior_club_team = \"Brandon Wheat Kings (WCHL)\"", "question": "what's the\u00a0nhl team\u00a0with\u00a0college/junior/club team\u00a0being brandon wheat kings (wchl)", "context": "CREATE TABLE table_1473672_9 (nhl_team VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_1473672_9 WHERE pick__number = 132", "question": "who is the the\u00a0player\u00a0with\u00a0pick #\u00a0being 132", "context": "CREATE TABLE table_1473672_9 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_1473672_9 WHERE nhl_team = \"Vancouver Canucks\"", "question": " how many\u00a0player\u00a0with\u00a0nhl team\u00a0being vancouver canucks", "context": "CREATE TABLE table_1473672_9 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_1473672_9 WHERE player = \"Ray Boutin\"", "question": "what's the\u00a0position\u00a0with\u00a0player\u00a0being ray boutin", "context": "CREATE TABLE table_1473672_9 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT borough FROM table_14748457_1 WHERE station_users_2008_9 = \"28702\"", "question": "what is the name of the borough where station uses is 28702?", "context": "CREATE TABLE table_14748457_1 (borough VARCHAR, station_users_2008_9 VARCHAR)"}, {"answer": "SELECT lines_served FROM table_14748457_1 WHERE station_users_2008_9 = \"210076\"", "question": "what are the lines served where station users is 210076?", "context": "CREATE TABLE table_14748457_1 (lines_served VARCHAR, station_users_2008_9 VARCHAR)"}, {"answer": "SELECT station__and_code_ FROM table_14748457_1 WHERE station_users_2008_9 = \"130368\"", "question": "whatis hte station code where users are 130368?", "context": "CREATE TABLE table_14748457_1 (station__and_code_ VARCHAR, station_users_2008_9 VARCHAR)"}, {"answer": "SELECT class_a FROM table_14747043_1 WHERE class_aAAAA = Weslaco AND class_aAAA = Brownwood", "question": "Which is the class A when Weslaco was the class AAAAA and brownwood was the class AAAA", "context": "CREATE TABLE table_14747043_1 (class_a VARCHAR, class_aAAAA VARCHAR, Weslaco VARCHAR, class_aAAA VARCHAR, Brownwood VARCHAR)"}, {"answer": "SELECT class_a FROM table_14747043_1 WHERE class_aA = Marion", "question": "Which is the class A when Marion was the class AA", "context": "CREATE TABLE table_14747043_1 (class_a VARCHAR, class_aA VARCHAR, Marion VARCHAR)"}, {"answer": "SELECT class_aA FROM table_14747043_1 WHERE class_a = \"Graford\"", "question": "Which is the class AA when graford was the class A", "context": "CREATE TABLE table_14747043_1 (class_aA VARCHAR, class_a VARCHAR)"}, {"answer": "SELECT COUNT(class_aA) FROM table_14747043_1 WHERE school_year = \"2002-03\"", "question": "How many class AA in the year 2002-03", "context": "CREATE TABLE table_14747043_1 (class_aA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aAAA FROM table_14747043_1 WHERE class_aAAAA = Weslaco AND school_year = \"1994-95\"", "question": "Who was the class AAAA when class AAAAA was Weslaco in 1994-95", "context": "CREATE TABLE table_14747043_1 (class_aAAA VARCHAR, class_aAAAA VARCHAR, Weslaco VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT change__2009_to_2010_ FROM table_14752049_2 WHERE country = \"Tunisia\"", "question": "What are the changes from 2009 to 2010 in Tunisia?", "context": "CREATE TABLE table_14752049_2 (change__2009_to_2010_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2010_to_2011_ = \"+11.2%\"", "question": "What are the international tourist arrivals in 2010 where change from 2010 to 2011 is +11.2% ?", "context": "CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2010_to_2011_ VARCHAR)"}, {"answer": "SELECT change__2010_to_2011_ FROM table_14752049_2 WHERE international_tourist_arrivals__2011_ = \"1.7 million\"", "question": "What are the changes (2010 to 2011) where the International Tourist Arrivals is 1.7 million?", "context": "CREATE TABLE table_14752049_2 (change__2010_to_2011_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)"}, {"answer": "SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2009_to_2010_ = \"+11.1%\"", "question": "What are the international tourist arrivals(2010) where change from 2009 to 2010 is +11.1%?", "context": "CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2009_to_2010_ VARCHAR)"}, {"answer": "SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2010_to_2011_ = \"+15%\"", "question": "What are the International tourist arrivals (2010) where change from 2010 to 2011 is +15%", "context": "CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2010_to_2011_ VARCHAR)"}, {"answer": "SELECT international_tourist_arrivals__2011_ FROM table_14752049_2 WHERE country = \"Senegal\"", "question": "How many international tourist arrivals were in Senegal in 2011?", "context": "CREATE TABLE table_14752049_2 (international_tourist_arrivals__2011_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT change__2011_to_2012_ FROM table_14752049_6 WHERE change__2010_to_2011_ = \"+1.0%\"", "question": "When the change (2010 to 2011) is +1.0% what is the change (2011 to 2012)?", "context": "CREATE TABLE table_14752049_6 (change__2011_to_2012_ VARCHAR, change__2010_to_2011_ VARCHAR)"}, {"answer": "SELECT country FROM table_14752049_6 WHERE change__2011_to_2012_ = \"-0.1%\"", "question": "When the change (2011 to 2012) is -0.1% what is the country?", "context": "CREATE TABLE table_14752049_6 (country VARCHAR, change__2011_to_2012_ VARCHAR)"}, {"answer": "SELECT country FROM table_14752049_6 WHERE change__2011_to_2012_ = \"+13.4%\"", "question": "When the change (2011 to 2012) is +13.4% what is the country?", "context": "CREATE TABLE table_14752049_6 (country VARCHAR, change__2011_to_2012_ VARCHAR)"}, {"answer": "SELECT change__2010_to_2011_ FROM table_14752049_6 WHERE international_tourist_arrivals__2012_ = \"24.1 million\"", "question": "When 24.1 million is international tourist arrivals (2012) what is the  change (2010 to 2011) ?", "context": "CREATE TABLE table_14752049_6 (change__2010_to_2011_ VARCHAR, international_tourist_arrivals__2012_ VARCHAR)"}, {"answer": "SELECT change__2011_to_2012_ FROM table_14752049_6 WHERE country = \"United Kingdom\"", "question": "United kingdom is the country what is the change (2011 to 2012)?", "context": "CREATE TABLE table_14752049_6 (change__2011_to_2012_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(international_tourist_arrivals__2012_) FROM table_14752049_6 WHERE rank = 1", "question": "When the 1 is the rank what is the overall amount of  international tourist arrivals in 2012?", "context": "CREATE TABLE table_14752049_6 (international_tourist_arrivals__2012_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT enrollment FROM table_14754471_1 WHERE hispanic___percentage_ = \"3.6\"", "question": "What is the enrollment amount where Hispanic (%) is 3.6?", "context": "CREATE TABLE table_14754471_1 (enrollment VARCHAR, hispanic___percentage_ VARCHAR)"}, {"answer": "SELECT asian___percentage_ FROM table_14754471_1 WHERE year = 2009", "question": "What percentage of Asians are there in the year 2009?", "context": "CREATE TABLE table_14754471_1 (asian___percentage_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT asian___percentage_ FROM table_14754471_1 WHERE year = 2004", "question": "What percentage of Asians are there in the year 2004?", "context": "CREATE TABLE table_14754471_1 (asian___percentage_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT hispanic___percentage_ FROM table_14754471_1 WHERE free_reduced_lunch___percentage_ = \"81.4\"", "question": "What percentage of hispanics are there when the free/reduced lunch percentage is 81.4?", "context": "CREATE TABLE table_14754471_1 (hispanic___percentage_ VARCHAR, free_reduced_lunch___percentage_ VARCHAR)"}, {"answer": "SELECT free_reduced_lunch___percentage_ FROM table_14754471_1 WHERE hispanic___percentage_ = \"3.7\"", "question": "What percentage of free/reduced lunch  are there when the hispanic percentage is 3.7?", "context": "CREATE TABLE table_14754471_1 (free_reduced_lunch___percentage_ VARCHAR, hispanic___percentage_ VARCHAR)"}, {"answer": "SELECT arranger FROM table_14778650_1 WHERE writer = \"Nizar Francis\"", "question": "Who was the arranger for the track written by Nizar Francis ?", "context": "CREATE TABLE table_14778650_1 (arranger VARCHAR, writer VARCHAR)"}, {"answer": "SELECT writer FROM table_14778650_1 WHERE length = \"4:29\"", "question": "Who was the writer for the song 4:29 in length?", "context": "CREATE TABLE table_14778650_1 (writer VARCHAR, length VARCHAR)"}, {"answer": "SELECT _number FROM table_14778650_1 WHERE length = \"4:29\"", "question": "What track number is 4:29 in length?", "context": "CREATE TABLE table_14778650_1 (_number VARCHAR, length VARCHAR)"}, {"answer": "SELECT females_rank FROM table_14785903_1 WHERE states = \"Karnataka\"", "question": "What is the female rank in Karnataka?", "context": "CREATE TABLE table_14785903_1 (females_rank VARCHAR, states VARCHAR)"}, {"answer": "SELECT title__english_ FROM table_1481865_1 WHERE title__original_ = \"Die Qual der Wahl\"", "question": "What is the English title when the original title is Die Qual Der Wahl?", "context": "CREATE TABLE table_1481865_1 (title__english_ VARCHAR, title__original_ VARCHAR)"}, {"answer": "SELECT number_of_episode FROM table_1481865_1 WHERE title__english_ = \"Pilot\"", "question": "What is the episode number where the English title is Pilot?", "context": "CREATE TABLE table_1481865_1 (number_of_episode VARCHAR, title__english_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_1481865_1 WHERE number_of_episode = 6", "question": "What was the original air date for episode number 6?", "context": "CREATE TABLE table_1481865_1 (original_air_date VARCHAR, number_of_episode VARCHAR)"}, {"answer": "SELECT title__original_ FROM table_1481865_1 WHERE number_of_season = 3", "question": "What is the original title of season number 3?", "context": "CREATE TABLE table_1481865_1 (title__original_ VARCHAR, number_of_season VARCHAR)"}, {"answer": "SELECT municipality FROM table_1480455_1 WHERE human_development_index__2000_ = \"0.7827\"", "question": "What municipality where the human development index in the year 2000 was 0.7827?", "context": "CREATE TABLE table_1480455_1 (municipality VARCHAR, human_development_index__2000_ VARCHAR)"}, {"answer": "SELECT COUNT(population__2005_) FROM table_1480455_1 WHERE population_density___km_2__ = \"35.9\"", "question": "What is the total number of population in the year 2005 where the population density 35.9 (/km 2)?", "context": "CREATE TABLE table_1480455_1 (population__2005_ VARCHAR, population_density___km_2__ VARCHAR)"}, {"answer": "SELECT human_development_index__2000_ FROM table_1480455_1 WHERE inegi_code = 10", "question": "What is the human development index for the year 2000 where the ingei code is 10?", "context": "CREATE TABLE table_1480455_1 (human_development_index__2000_ VARCHAR, inegi_code VARCHAR)"}, {"answer": "SELECT area__km_2__ FROM table_1480455_1 WHERE population_density___km_2__ = \"84.3\"", "question": "What is the area (km 2) where the population density (/mk2) is 84.3?", "context": "CREATE TABLE table_1480455_1 (area__km_2__ VARCHAR, population_density___km_2__ VARCHAR)"}, {"answer": "SELECT mandate FROM table_14834801_1 WHERE list_pct = \"12.39%\"", "question": "Name the mandate for list pct 12.39%", "context": "CREATE TABLE table_14834801_1 (mandate VARCHAR, list_pct VARCHAR)"}, {"answer": "SELECT COUNT(list_votes) FROM table_14834801_1 WHERE list_pct = \"20.95%\"", "question": "Name the total number of list votes for 20.95%", "context": "CREATE TABLE table_14834801_1 (list_votes VARCHAR, list_pct VARCHAR)"}, {"answer": "SELECT scoring_rank FROM table_14836185_3 WHERE year = 2009", "question": "What was the scoring rank for Angela Stanford in 2009?", "context": "CREATE TABLE table_14836185_3 (scoring_rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(money_list_rank) FROM table_14836185_3", "question": "What was the highest number on money list rank for Angela Stanford's career?", "context": "CREATE TABLE table_14836185_3 (money_list_rank INTEGER)"}, {"answer": "SELECT COUNT(2 AS nd) FROM table_14836185_3 WHERE scoring_average = \"71.62\"", "question": "In the year where Angela Stanford had a scoring average of 71.62, how many times did she take second place?", "context": "CREATE TABLE table_14836185_3 (scoring_average VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_14845640_1 WHERE us_viewers__millions_ = \"16.04\"", "question": "Namw the minimum production code for 16.04 million viewers", "context": "CREATE TABLE table_14845640_1 (production_code INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_14845640_1 WHERE us_viewers__millions_ = \"16.32\"", "question": "Name the written by for 16.32 million viewers", "context": "CREATE TABLE table_14845640_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_14853156_2 WHERE best_finish = \"T4\"", "question": "What is the highest number of cuts made when her best finish is t4?", "context": "CREATE TABLE table_14853156_2 (cuts_made INTEGER, best_finish VARCHAR)"}, {"answer": "SELECT COUNT(earnings___) AS $__ FROM table_14853156_2 WHERE best_finish = \"T2\" AND scoring_average = \"71.25\"", "question": "How many total earnings are recorded when her best finish is t2 with a 71.25 scoring average?", "context": "CREATE TABLE table_14853156_2 (earnings___ VARCHAR, best_finish VARCHAR, scoring_average VARCHAR)"}, {"answer": "SELECT MIN(cuts_made) FROM table_14853156_2 WHERE best_finish = \"T4\"", "question": "What is the lowest number of cuts made when her best finish is t4?", "context": "CREATE TABLE table_14853156_2 (cuts_made INTEGER, best_finish VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_14853156_2 WHERE money_list_rank = \"56\"", "question": "How many years has she ranked 56 on the money list?", "context": "CREATE TABLE table_14853156_2 (year VARCHAR, money_list_rank VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_14853156_2", "question": "What is the lowest number of wins?", "context": "CREATE TABLE table_14853156_2 (wins INTEGER)"}, {"answer": "SELECT written_by FROM table_14847258_1 WHERE directed_by = \"Steve Gomer\"", "question": "When steve gomer is the director who is the writer?", "context": "CREATE TABLE table_14847258_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_14847258_1 WHERE us_viewers__millions_ = \"15.03\"", "question": "15.03 million u.s viewers seen what episode?", "context": "CREATE TABLE table_14847258_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN(3 AS _credits) FROM table_148535_2", "question": "Name the most 3 credits", "context": "CREATE TABLE table_148535_2 (Id VARCHAR)"}, {"answer": "SELECT MIN(2 AS _credits) FROM table_148535_2 WHERE hand = \"Straight\"", "question": "Name the least 2 credits for straight hand", "context": "CREATE TABLE table_148535_2 (hand VARCHAR)"}, {"answer": "SELECT MIN(2 AS _credits) FROM table_148535_2 WHERE hand = \"Flush\"", "question": "Name the least 2 credits for flush", "context": "CREATE TABLE table_148535_2 (hand VARCHAR)"}, {"answer": "SELECT MAX(1 AS _credit) FROM table_148535_2 WHERE hand = \"Three of a Kind\"", "question": "Name the most 1 credit for three of a kind", "context": "CREATE TABLE table_148535_2 (hand VARCHAR)"}, {"answer": "SELECT points_classification FROM table_14856023_18 WHERE general_classification = \"Mark Renshaw\" AND team_classification = \"Team CSC\"", "question": "Name the points classification for mark renshaw and team csc", "context": "CREATE TABLE table_14856023_18 (points_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT episodes FROM table_14855908_3 WHERE region_1__us_ = \"October 13, 2009\"", "question": "How many episodes were released on DVD in the US on October 13, 2009?", "context": "CREATE TABLE table_14855908_3 (episodes VARCHAR, region_1__us_ VARCHAR)"}, {"answer": "SELECT MAX(episodes) FROM table_14855908_3 WHERE region_4 = \"March 4, 2010\"", "question": "How many episodes were put out in Region 4 on March 4, 2010?", "context": "CREATE TABLE table_14855908_3 (episodes INTEGER, region_4 VARCHAR)"}, {"answer": "SELECT MIN(episodes) FROM table_14855908_3 WHERE dvd_name = \"Season 1\"", "question": "How many episodes were released in the season 1 DVD?", "context": "CREATE TABLE table_14855908_3 (episodes INTEGER, dvd_name VARCHAR)"}, {"answer": "SELECT altitude__km_ FROM table_148578_1 WHERE explosion = \"Hardtack Teak\"", "question": "What was the altitude of the explosion Hardtack Teak?", "context": "CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, explosion VARCHAR)"}, {"answer": "SELECT altitude__km_ FROM table_148578_1 WHERE date = \"1962-07-09\"", "question": "What was the altitude of the event on 1962-07-09?", "context": "CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT altitude__km_ FROM table_148578_1 WHERE yield__approximate_ = \"1.4 megatons\"", "question": "What was the altitude of the yield of 1.4 megatons?", "context": "CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, yield__approximate_ VARCHAR)"}, {"answer": "SELECT yield__approximate_ FROM table_148578_1 WHERE explosion = \"K-4\"", "question": "What was the yield of the K-4 explosion?", "context": "CREATE TABLE table_148578_1 (yield__approximate_ VARCHAR, explosion VARCHAR)"}, {"answer": "SELECT explosion FROM table_148578_1 WHERE altitude__km_ = \"539\"", "question": "What explosion had an altitude of 539 km?", "context": "CREATE TABLE table_148578_1 (explosion VARCHAR, altitude__km_ VARCHAR)"}, {"answer": "SELECT opponent FROM table_14863869_1 WHERE date = \"September 23, 1984\"", "question": "List all opponents in the September 23, 1984 game?", "context": "CREATE TABLE table_14863869_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_14863869_1 WHERE date = \"December 2, 1984\"", "question": "What was the score in the game played on December 2, 1984?", "context": "CREATE TABLE table_14863869_1 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_14863869_1 WHERE week = 11", "question": "How many scores were there in week 11?", "context": "CREATE TABLE table_14863869_1 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_14871601_1 WHERE team = \"Nacional\"", "question": "What is the highest win for the team Nacional?", "context": "CREATE TABLE table_14871601_1 (wins INTEGER, team VARCHAR)"}, {"answer": "SELECT MIN(conceded) FROM table_14871601_1 WHERE team = \"12 de Octubre\"", "question": "What is the smallest conceded value for the team 12 De Octubre?", "context": "CREATE TABLE table_14871601_1 (conceded INTEGER, team VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_14871601_1 WHERE points = 21", "question": "What is the smallest draws value with 21 points?", "context": "CREATE TABLE table_14871601_1 (draws INTEGER, points VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_14871601_1 WHERE team = \"Tacuary\"", "question": "What is the largest loss for the Tacuary team?", "context": "CREATE TABLE table_14871601_1 (losses INTEGER, team VARCHAR)"}, {"answer": "SELECT venue FROM table_14877831_2 WHERE opponents = 51", "question": "What is the name of the venue where the opponent scored 51?", "context": "CREATE TABLE table_14877831_2 (venue VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT MIN(first_downs) FROM table_14877831_2 WHERE attendance = 13196", "question": "How many first downs were there when the attendance was 13196?", "context": "CREATE TABLE table_14877831_2 (first_downs INTEGER, attendance VARCHAR)"}, {"answer": "SELECT game_site FROM table_14875671_1 WHERE opponent = \"Buffalo Bills\"", "question": "What was the site of the game against Buffalo Bills ?", "context": "CREATE TABLE table_14875671_1 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_14875671_1 WHERE week = 8", "question": "What was the attendance in week 8?", "context": "CREATE TABLE table_14875671_1 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT date FROM table_14875671_1 WHERE attendance = 63995", "question": "What was the date when the attendance was 63995", "context": "CREATE TABLE table_14875671_1 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_14875671_1 WHERE week = 4", "question": "Who was the opponent in week 4?", "context": "CREATE TABLE table_14875671_1 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(skipper) FROM table_14882588_2 WHERE yacht = \"City Index Leopard\"", "question": "How many different skippers of the yacht City Index Leopard?", "context": "CREATE TABLE table_14882588_2 (skipper VARCHAR, yacht VARCHAR)"}, {"answer": "SELECT race_number FROM table_14882588_2 WHERE sail_number = \"AUS 03\"", "question": "If sail number is AUS 03, what are all associated race numbers?", "context": "CREATE TABLE table_14882588_2 (race_number VARCHAR, sail_number VARCHAR)"}, {"answer": "SELECT location FROM table_14884844_2 WHERE record = \"1:37.071s\"", "question": "In what location was the fastest time 1:37.071s?", "context": "CREATE TABLE table_14884844_2 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_14884844_2 WHERE athletes = \"Birgit Fischer\"", "question": "What are all the places where Birgit Fischer competed?", "context": "CREATE TABLE table_14884844_2 (location VARCHAR, athletes VARCHAR)"}, {"answer": "SELECT record FROM table_14884844_2 WHERE athletes = \"Elzbieta Urbanczik\"", "question": "What are the records when Elzbieta Urbanczik competed?", "context": "CREATE TABLE table_14884844_2 (record VARCHAR, athletes VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_14889048_1 WHERE points = 17", "question": "Name the number of wins for when points is 17", "context": "CREATE TABLE table_14889048_1 (wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_14889048_1 WHERE conceded = 25", "question": "Name the number of draws for when conceded is 25", "context": "CREATE TABLE table_14889048_1 (draws VARCHAR, conceded VARCHAR)"}, {"answer": "SELECT MAX(conceded) FROM table_14889048_1 WHERE draws = 5 AND position = 1", "question": "Name the most conceded when draws is 5 and position is 1", "context": "CREATE TABLE table_14889048_1 (conceded INTEGER, draws VARCHAR, position VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_14889988_1 WHERE production_code = 176265", "question": "What date was the episode with production code 176265 aired?", "context": "CREATE TABLE table_14889988_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_14889988_1 WHERE written_by = \"Robert Carlock\"", "question": "On what dates were episodes written by Robert Carlock aired?", "context": "CREATE TABLE table_14889988_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_14889988_1 WHERE no_in_series = 229", "question": "What is the production code for episode 229?", "context": "CREATE TABLE table_14889988_1 (production_code INTEGER, no_in_series VARCHAR)"}, {"answer": "SELECT title FROM table_14889988_1 WHERE written_by = \"Robert Carlock & Dana Klein Borkow\"", "question": "What is the title for the episode written by Robert Carlock & Dana Klein Borkow?", "context": "CREATE TABLE table_14889988_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_14889988_1 WHERE production_code = 176252", "question": "Who directed the episode with the production code 176252?", "context": "CREATE TABLE table_14889988_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_14889048_2 WHERE scored = 15", "question": "How many points when 15 is scored is considered the minimum?", "context": "CREATE TABLE table_14889048_2 (points INTEGER, scored VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_14889048_2 WHERE wins = 4", "question": "When a team wins 4, how much is the Maximum amount of points?", "context": "CREATE TABLE table_14889048_2 (points INTEGER, wins VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_14889048_2 WHERE team = \"Libertad\"", "question": "How may draws did libertad have?", "context": "CREATE TABLE table_14889048_2 (draws VARCHAR, team VARCHAR)"}, {"answer": "SELECT men_doubles FROM table_14903355_2 WHERE womens_singles = \"Els Baert\"", "question": "Name the men doubles for els baert", "context": "CREATE TABLE table_14903355_2 (men_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT men_doubles FROM table_14903355_2 WHERE womens_doubles = \"Caroline Persyn Smids\"", "question": "Name the men doubles for caroline persyn smids", "context": "CREATE TABLE table_14903355_2 (men_doubles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT COUNT(men_doubles) FROM table_14903355_2 WHERE year = 2007", "question": "Name the number of men doubles for 2007", "context": "CREATE TABLE table_14903355_2 (men_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_14903491_1 WHERE womens_doubles = \"Raina Tzvetkova Petya Nedelcheva\"", "question": "Name the womens singles for  raina tzvetkova petya nedelcheva", "context": "CREATE TABLE table_14903491_1 (womens_singles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_14903491_1 WHERE womens_doubles = \"Diana Koleva Emilia Dimitrova\" AND mens_singles = \"Jeliazko Valkov\"", "question": "Name the number of years for womens doubles being  diana koleva emilia dimitrova and  jeliazko valkov", "context": "CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_14903491_1 WHERE mixed_doubles = \"Jeliazko Valkov Dobrinka Peneva\"", "question": "Name the mens singles for  jeliazko valkov dobrinka peneva", "context": "CREATE TABLE table_14903491_1 (mens_singles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_14903491_1 WHERE year = 1989", "question": "Name the mens singles for 1989", "context": "CREATE TABLE table_14903491_1 (mens_singles VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_14903491_1 WHERE womens_doubles = \"Victoria Hristova Neli Nedialkova\"", "question": "Name the year for victoria hristova neli nedialkova", "context": "CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT year FROM table_14903491_1 WHERE womens_doubles = \"Raina Tzvetkova Emilia Dimitrova\"", "question": "Name the year for womens doubles being raina tzvetkova emilia dimitrova", "context": "CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_14903627_1 WHERE womens_doubles = \"Piret Hamer Helen Reino\"", "question": "WHAT ARE THE NAMES OF THE MENS DOUBLES WHEN THE WOMENS DOUBLES WAS PIRET HAMER HELEN REINO?", "context": "CREATE TABLE table_14903627_1 (mens_doubles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_14903627_1 WHERE womens_doubles = \"Helen Reino Kai-Riin Saluste\"", "question": "WHAT IS THE NAME OF THE MENS DOUBLES PLAYER WHEN THE WOMENS DOUBLES PLAYER IS HELEN REINO KAI-RIIN SALUSTE?", "context": "CREATE TABLE table_14903627_1 (mens_doubles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_14903627_1 WHERE womens_singles = \"Kairi Viilup\"", "question": "WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP?", "context": "CREATE TABLE table_14903627_1 (mixed_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_14903627_1 WHERE mens_doubles = \"Heiki Sorge Meelis Maiste\"", "question": "HOW MANY YEARS DID MENS DOUBLES PLAYER HEIKI SORGE MEELIS MAISTE PLAY?", "context": "CREATE TABLE table_14903627_1 (year VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_14903881_1 WHERE mens_doubles = \"Charalambos Kazilas Stepan Partemian\"", "question": "Name the womens doubles when mens doubles is charalambos kazilas stepan partemian", "context": "CREATE TABLE table_14903881_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_14903881_1 WHERE mixed_doubles = \"Potten Ruth Scott\"", "question": "Name the womens doubles when mixed doubles is potten ruth scott", "context": "CREATE TABLE table_14903881_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_14903881_1 WHERE mens_doubles = \"George Georgoudis Gerostergiou\"", "question": "Name the mens singles when mens doubles is george georgoudis gerostergiou", "context": "CREATE TABLE table_14903881_1 (mens_singles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_14903881_1 WHERE mens_doubles = \"Theodoros Velkos Giorgos Patis\"", "question": "Name the womens doubles when mens doubles is theodoros velkos giorgos patis", "context": "CREATE TABLE table_14903881_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_14903999_1 WHERE mixed_doubles = \"\u00deorvaldur \u00c1sgeirsson Lov\u00edsa Sigur\u00f0ard\u00f3ttir\"", "question": "What was the earliest year \u00deorvaldur \u00c1sgeirsson Lov\u00edsa Sigur\u00f0ard\u00f3ttir won mixed doubles", "context": "CREATE TABLE table_14903999_1 (year INTEGER, mixed_doubles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_14903999_1 WHERE mixed_doubles = \"Magn\u00fas Ingi Helgason Tinna Helgad\u00f3ttir\" AND womens_singles = \"Ragna Ing\u00f3lfsd\u00f3ttir\" AND year = 2010", "question": "Who won womens doubles the year magn\u00fas ingi helgason tinna helgad\u00f3ttir won mixed doubles and ragna ing\u00f3lfsd\u00f3ttir won womens singles in 2010", "context": "CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, year VARCHAR, mixed_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT COUNT(womens_doubles) FROM table_14903999_1 WHERE mixed_doubles = \"Broddi Kristj\u00e1nsson Dr\u00edfa Har\u00f0ard\u00f3ttir\"", "question": "How many womens doubles had champions the years broddi kristj\u00e1nsson dr\u00edfa har\u00f0ard\u00f3ttir won mixed doubles", "context": "CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_14903999_1 WHERE mixed_doubles = \"\u00c1rni \u00de\u00f3r Hallgr\u00edmsson Dr\u00edfa Har\u00f0ard\u00f3ttir\"", "question": "What was the last year \u00e1rni \u00fe\u00f3r hallgr\u00edmsson dr\u00edfa har\u00f0ard\u00f3ttir won mixed doubles", "context": "CREATE TABLE table_14903999_1 (year INTEGER, mixed_doubles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_14903999_1 WHERE mens_doubles = \"Sveinn Logi S\u00f6lvason Tryggvi Nilsen\" AND womens_singles = \"Elsa Nielsen\"", "question": "Who won mens singles the year sveinn logi s\u00f6lvason tryggvi nilsen won mens doubles and elsa nielsen won womens singles", "context": "CREATE TABLE table_14903999_1 (mens_singles VARCHAR, mens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT position FROM table_14911550_5 WHERE team = \"Cerro Porte\u00f1o\"", "question": "In which position is the team Cerro Porte\u00f1o?", "context": "CREATE TABLE table_14911550_5 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_14911550_5", "question": "How many games were played?", "context": "CREATE TABLE table_14911550_5 (played INTEGER)"}, {"answer": "SELECT mixed_doubles FROM table_14904221_1 WHERE mens_doubles = \"no competition\"", "question": "What is the result of men's doubles when there was no competition?", "context": "CREATE TABLE table_14904221_1 (mixed_doubles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_14904221_1 WHERE year = 1994", "question": "WHo won men's singles in 1994?", "context": "CREATE TABLE table_14904221_1 (mens_singles VARCHAR, year VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_14904221_1 WHERE year = 2001", "question": "Who won women's singles in 2001?", "context": "CREATE TABLE table_14904221_1 (womens_singles VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_14911550_1", "question": "Name the least wins", "context": "CREATE TABLE table_14911550_1 (wins INTEGER)"}, {"answer": "SELECT result FROM table_14928423_1 WHERE original_title = \"\u0393\u043e\u043b\u0435\u043c\u0430\u0442\u0430 \u0412\u043e\u0434\u0430\"", "question": "is \u03b3\u043e\u043b\u0435\u043c\u0430\u0442\u0430 \u0432\u043e\u0434\u0430 nominated for anything?", "context": "CREATE TABLE table_14928423_1 (result VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT COUNT(year__ceremony_) FROM table_14928423_1 WHERE original_title = \"\u0421\u0435\u043d\u043a\u0438\"", "question": "how many years has \u0441\u0435\u043d\u043a\u0438 been nominated?", "context": "CREATE TABLE table_14928423_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT COUNT(director_s_) FROM table_14928423_1 WHERE original_title = \"\u041c\u0430\u0458\u043a\u0438\"", "question": "how many directors for the film \u043c\u0430\u0458\u043a\u0438", "context": "CREATE TABLE table_14928423_1 (director_s_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT performer_2 FROM table_14934885_1 WHERE episode = 5", "question": "Who is the second performer in episode 5?", "context": "CREATE TABLE table_14934885_1 (performer_2 VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_14934885_1 WHERE performer_3 = \"Kate Robbins\"", "question": "How many times was performer 3 Kate Robbins?", "context": "CREATE TABLE table_14934885_1 (date VARCHAR, performer_3 VARCHAR)"}, {"answer": "SELECT performer_1 FROM table_14934885_1 WHERE date = \"30 January 1988\"", "question": "Who was perfomer one on 30 January 1988?", "context": "CREATE TABLE table_14934885_1 (performer_1 VARCHAR, date VARCHAR)"}, {"answer": "SELECT performer_4 FROM table_14934885_1 WHERE performer_3 = \"Kate Robbins\"", "question": "Who was performer 4 when Kate Robbins was performer 3?", "context": "CREATE TABLE table_14934885_1 (performer_4 VARCHAR, performer_3 VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_14934885_1 WHERE performer_4 = \"Jimmy Mulville\"", "question": "How many episodes was Jimmy Mulville performer 4?", "context": "CREATE TABLE table_14934885_1 (episode VARCHAR, performer_4 VARCHAR)"}, {"answer": "SELECT general_election FROM table_149330_1 WHERE votes_swing = \"1.84\"", "question": "Which general election had a vote swing of 1.84?", "context": "CREATE TABLE table_149330_1 (general_election VARCHAR, votes_swing VARCHAR)"}, {"answer": "SELECT COUNT(seats_won) FROM table_149330_1 WHERE _percentage_of_votes = \"20.29\"", "question": "What was the total number of seats won where the % of votes is equal to 20.29?", "context": "CREATE TABLE table_149330_1 (seats_won VARCHAR, _percentage_of_votes VARCHAR)"}, {"answer": "SELECT change_in_seat FROM table_149330_1 WHERE _percentage_of_votes = \"23.75\"", "question": "What was the number of seat changes when the % of votes was 23.75?", "context": "CREATE TABLE table_149330_1 (change_in_seat VARCHAR, _percentage_of_votes VARCHAR)"}, {"answer": "SELECT general_election FROM table_149330_1 WHERE votes_swing = \"1.69\"", "question": "Which general election had a vote swing of 1.69?", "context": "CREATE TABLE table_149330_1 (general_election VARCHAR, votes_swing VARCHAR)"}, {"answer": "SELECT votes_swing FROM table_149330_1 WHERE general_election = \"12th Lok Sabha\"", "question": "What was the vote swing for the general election of the 12th lok sabha?", "context": "CREATE TABLE table_149330_1 (votes_swing VARCHAR, general_election VARCHAR)"}, {"answer": "SELECT result FROM table_14942535_1 WHERE week = 4", "question": "What was the team's result in week 4?", "context": "CREATE TABLE table_14942535_1 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT prefix_size FROM table_149426_4 WHERE network_mask = \"255.255.255.252\"", "question": "When the network mask is 255.255.255.252 what is the prefix size?", "context": "CREATE TABLE table_149426_4 (prefix_size VARCHAR, network_mask VARCHAR)"}, {"answer": "SELECT MAX(available_subnets) FROM table_149426_4", "question": "available subnets leading total is?", "context": "CREATE TABLE table_149426_4 (available_subnets INTEGER)"}, {"answer": "SELECT MIN(available_subnets) FROM table_149426_4 WHERE network_mask = \"255.255.255.128\"", "question": "When the network mask is  255.255.255.128 what is the lowest available subnet?", "context": "CREATE TABLE table_149426_4 (available_subnets INTEGER, network_mask VARCHAR)"}, {"answer": "SELECT MAX(total_usable_hosts) FROM table_149426_4 WHERE network_mask = \"255.255.255.224\"", "question": "When the network mask is 255.255.255.224 what is the highest  total usable host?", "context": "CREATE TABLE table_149426_4 (total_usable_hosts INTEGER, network_mask VARCHAR)"}, {"answer": "SELECT opponent FROM table_14945112_1 WHERE date = \"November 12, 1978\"", "question": "Who were all of the opponents when the date was November 12, 1978?", "context": "CREATE TABLE table_14945112_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_14945112_1 WHERE date = \"October 1, 1978\"", "question": "What is the total number of values for attendance for the date October 1, 1978?", "context": "CREATE TABLE table_14945112_1 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_14945608_1", "question": "What was the highest attendance?", "context": "CREATE TABLE table_14945608_1 (attendance INTEGER)"}, {"answer": "SELECT date FROM table_14945608_1 WHERE opponent = \"New York Jets\"", "question": "What date did the Colts play New York Jets?", "context": "CREATE TABLE table_14945608_1 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_14945608_1 WHERE attendance = 60225", "question": "How many games had the attendance of 60225?", "context": "CREATE TABLE table_14945608_1 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_14954150_1 WHERE date = \"October 6, 1974\"", "question": "What was the result of the game on October 6, 1974?", "context": "CREATE TABLE table_14954150_1 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_14954150_1 WHERE date = \"September 22, 1974\"", "question": "What was the record on September 22, 1974?", "context": "CREATE TABLE table_14954150_1 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT bhofen_number1__rk_ FROM table_14948647_1 WHERE bhofen_number2__rk_ = \"231.2 (8)\"", "question": "What was the Bhofen #1 score and rank for the player whose Bhofen #2 score and rank was 231.2 (8)?", "context": "CREATE TABLE table_14948647_1 (bhofen_number1__rk_ VARCHAR, bhofen_number2__rk_ VARCHAR)"}, {"answer": "SELECT bhofen_number2__rk_ FROM table_14948647_1 WHERE ga_pa__rk_ = \"233.4 (16)\"", "question": "What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 233.4 (16)?", "context": "CREATE TABLE table_14948647_1 (bhofen_number2__rk_ VARCHAR, ga_pa__rk_ VARCHAR)"}, {"answer": "SELECT bhofen_number2__rk_ FROM table_14948647_1 WHERE ga_pa__rk_ = \"227.5 (19)\"", "question": "What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 227.5 (19)?", "context": "CREATE TABLE table_14948647_1 (bhofen_number2__rk_ VARCHAR, ga_pa__rk_ VARCHAR)"}, {"answer": "SELECT total_points FROM table_14948647_1 WHERE oberstdorf__rk_ = \"252.6 (11)\"", "question": "How many points in total were scored by the player whose Oberstdork score and rank were 252.6 (11)?", "context": "CREATE TABLE table_14948647_1 (total_points VARCHAR, oberstdorf__rk_ VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_14958620_1 WHERE attendance = 74303", "question": "On which week was the attendance 74303?", "context": "CREATE TABLE table_14958620_1 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_14958620_1 WHERE game_site = \"Tiger Stadium\"", "question": "On which date was the game played at Tiger Stadium?", "context": "CREATE TABLE table_14958620_1 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT result FROM table_14959246_2 WHERE opponent = \"Dallas Cowboys\"", "question": "What was the final score of the game against the Dallas Cowboys?", "context": "CREATE TABLE table_14959246_2 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_14959246_2 WHERE date = \"December 10, 1972\"", "question": "What was the attendance at the game played on December 10, 1972?", "context": "CREATE TABLE table_14959246_2 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(french_voice_actor) FROM table_14960574_6 WHERE spanish_voice_actor = \"Javier Romano\"", "question": "Name the french actor with javier romano", "context": "CREATE TABLE table_14960574_6 (french_voice_actor VARCHAR, spanish_voice_actor VARCHAR)"}, {"answer": "SELECT german_voice_actor FROM table_14960574_6 WHERE french_voice_actor = \"Alain Dorval\"", "question": "Name the german voice actor for alain dorval", "context": "CREATE TABLE table_14960574_6 (german_voice_actor VARCHAR, french_voice_actor VARCHAR)"}, {"answer": "SELECT german_voice_actor FROM table_14960574_6 WHERE spanish_voice_actor = \"Rafael Torres\"", "question": "Name the german voice actor for rafael torres", "context": "CREATE TABLE table_14960574_6 (german_voice_actor VARCHAR, spanish_voice_actor VARCHAR)"}, {"answer": "SELECT character FROM table_14960574_6 WHERE french_voice_actor = \"Sophie Arthuys\"", "question": "Name the character for sophie arthuys", "context": "CREATE TABLE table_14960574_6 (character VARCHAR, french_voice_actor VARCHAR)"}, {"answer": "SELECT italian_voice_actor FROM table_14960574_6 WHERE german_voice_actor = \"Dirk Fenselau\"", "question": "Name the italian voice actor for dirk fenselau", "context": "CREATE TABLE table_14960574_6 (italian_voice_actor VARCHAR, german_voice_actor VARCHAR)"}, {"answer": "SELECT fa_cup FROM table_14962287_1 WHERE total = \"565 (7)\"", "question": "which fa cups had a total of 565 (7)?", "context": "CREATE TABLE table_14962287_1 (fa_cup VARCHAR, total VARCHAR)"}, {"answer": "SELECT years FROM table_14962287_1 WHERE other_a = \"8 (1)\"", "question": "which years had other a of 8 (1)?", "context": "CREATE TABLE table_14962287_1 (years VARCHAR, other_a VARCHAR)"}, {"answer": "SELECT name FROM table_14962287_2 WHERE league = 142", "question": "What name is associated with League 142?", "context": "CREATE TABLE table_14962287_2 (name VARCHAR, league VARCHAR)"}, {"answer": "SELECT COUNT(other_a) FROM table_14962287_2 WHERE name = \"Tommy Johnson Category:Articles with hCards\"", "question": "How many values of Other A correspond to Tommy Johnson Category:Articles with hCards?", "context": "CREATE TABLE table_14962287_2 (other_a VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(league) FROM table_14962287_2 WHERE name = \"Billy Meredith Category:Articles with hCards\"", "question": "How many different Leagues are associated with Billy Meredith Category:Articles with hCards?", "context": "CREATE TABLE table_14962287_2 (league VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(years) FROM table_14962287_2 WHERE fa_cup = 5", "question": "How many separate values for Years are associated with FA Cup of 5?", "context": "CREATE TABLE table_14962287_2 (years VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT years FROM table_14962287_2 WHERE total = \"139\"", "question": "What years have a total of 139?", "context": "CREATE TABLE table_14962287_2 (years VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(gdp_millions_of_usd__2009_) FROM table_1496582_1 WHERE country___territory = \"Indonesia\"", "question": "What was the GDP (in millions USD) of Indonesia in 2009?", "context": "CREATE TABLE table_1496582_1 (gdp_millions_of_usd__2009_ VARCHAR, country___territory VARCHAR)"}, {"answer": "SELECT MAX(gdp_millions_of_usd__2009_) FROM table_1496582_1 WHERE country___territory = \"Hong Kong\"", "question": "What was the GDP (in millions USD) of Hong Kong in 2009?", "context": "CREATE TABLE table_1496582_1 (gdp_millions_of_usd__2009_ INTEGER, country___territory VARCHAR)"}, {"answer": "SELECT height FROM table_14966667_19 WHERE name = \"Braxton Kelley\"", "question": "How tall is Braxton Kelley?", "context": "CREATE TABLE table_14966667_19 (height VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(class) FROM table_14966667_19 WHERE name = \"Braxton Kelley\"", "question": "what class is Braxton Kelley in?", "context": "CREATE TABLE table_14966667_19 (class VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(hometown) FROM table_14966667_19 WHERE position = \"FS\"", "question": "how many hometowns use the position of fs?", "context": "CREATE TABLE table_14966667_19 (hometown VARCHAR, position VARCHAR)"}, {"answer": "SELECT name FROM table_14966667_19 WHERE number = \"98\"", "question": "who is number 98?", "context": "CREATE TABLE table_14966667_19 (name VARCHAR, number VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_14966537_1 WHERE opponent = \"Chicago Bears\"", "question": "How many games were played against the Chicago Bears?", "context": "CREATE TABLE table_14966537_1 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_14966537_1 WHERE opponent = \"Chicago Bears\"", "question": "What is the result of the game against the Chicago Bears?", "context": "CREATE TABLE table_14966537_1 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_14966537_1 WHERE date = \"October 4, 1970\"", "question": "What was the final score of the game on October 4, 1970?", "context": "CREATE TABLE table_14966537_1 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_14966537_1 WHERE date = \"October 25, 1970\"", "question": "Who was the team's opponent of October 25, 1970?", "context": "CREATE TABLE table_14966537_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT recopa_sudamericana_1998 FROM table_14962316_9 WHERE team = \"Flamengo\"", "question": "Did Flamengo play in the Recopa Sudamericana in 1998", "context": "CREATE TABLE table_14962316_9 (recopa_sudamericana_1998 VARCHAR, team VARCHAR)"}, {"answer": "SELECT copa_mercosur_1998 FROM table_14962316_9 WHERE team = \"Cruzeiro\"", "question": "What were Cruzeiro results in the Copa Mercosur in 1998", "context": "CREATE TABLE table_14962316_9 (copa_mercosur_1998 VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_14976504_2 WHERE institution = \"California Lutheran University\"", "question": "Where is California Lutheran University located?", "context": "CREATE TABLE table_14976504_2 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT new_classification FROM table_14976504_2 WHERE institution = \"University of Arizona\"", "question": "What is the new classification for the University of Arizona Western in the Collegiate Lacrosse League?", "context": "CREATE TABLE table_14976504_2 (new_classification VARCHAR, institution VARCHAR)"}, {"answer": "SELECT new_conference FROM table_14976504_2 WHERE institution = \"California State University, Hayward\"", "question": "What is California State University, Hayward's new conference for Western Collegiate Lacrosse?", "context": "CREATE TABLE table_14976504_2 (new_conference VARCHAR, institution VARCHAR)"}, {"answer": "SELECT new_conference FROM table_14976504_2 WHERE team_nickname = \"Toreros\"", "question": "Which new conference is the Toreros Western Collegiate Lacrosse team playing in?", "context": "CREATE TABLE table_14976504_2 (new_conference VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT result FROM table_14981555_3 WHERE venue = \"Ascot (UK)\"", "question": "In Ascot (UK), what was the result?", "context": "CREATE TABLE table_14981555_3 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(jockey) FROM table_14981555_3 WHERE date = \"17 Feb 2007\"", "question": "How many different jockeys ran on 17 Feb 2007?", "context": "CREATE TABLE table_14981555_3 (jockey VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_14981555_3 WHERE date = \"10 Mar 2007\"", "question": "How many venues were used on 10 Mar 2007?", "context": "CREATE TABLE table_14981555_3 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(jockey) FROM table_14981555_3 WHERE race = \"Sir Rupert Clarke Stakes\"", "question": "How many jockeys are listed running at the Sir Rupert Clarke Stakes?", "context": "CREATE TABLE table_14981555_3 (jockey VARCHAR, race VARCHAR)"}, {"answer": "SELECT COUNT(venue) FROM table_14981555_3 WHERE race = \"Australia Stakes\"", "question": "How many venues had a race called the Australia Stakes?", "context": "CREATE TABLE table_14981555_3 (venue VARCHAR, race VARCHAR)"}, {"answer": "SELECT venue FROM table_14981555_1 WHERE distance = \"1400 m\"", "question": "Where was the 1400 m held?", "context": "CREATE TABLE table_14981555_1 (venue VARCHAR, distance VARCHAR)"}, {"answer": "SELECT group FROM table_14981555_1 WHERE race = \"3yo Hcp Restricted Maiden\"", "question": "What is the group name when 3yo hcp restricted maiden was raced?", "context": "CREATE TABLE table_14981555_1 (group VARCHAR, race VARCHAR)"}, {"answer": "SELECT date FROM table_14981555_1 WHERE weight__kg_ = \"55\"", "question": "When did the 55 kg participant race?", "context": "CREATE TABLE table_14981555_1 (date VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_14984050_1 WHERE attendance = 50073", "question": "Name the number of weeks for 50073 attendance", "context": "CREATE TABLE table_14984050_1 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_14984050_1 WHERE game_site = \"Milwaukee County Stadium\"", "question": "Name the result for milwaukee county stadium", "context": "CREATE TABLE table_14984050_1 (result VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT record FROM table_14984078_1 WHERE game_site = \"Cleveland Municipal Stadium\"", "question": "What was the record when the game was played at Cleveland Municipal Stadium?", "context": "CREATE TABLE table_14984078_1 (record VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_14984078_1 WHERE week = 13", "question": "What was the game date in week 13?", "context": "CREATE TABLE table_14984078_1 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT game_site FROM table_14984078_1 WHERE opponent = \"Detroit Lions\"", "question": "Where did the team play the Detroit Lions?", "context": "CREATE TABLE table_14984078_1 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT week FROM table_14984078_1 WHERE date = \"December 2, 1962\"", "question": "What week of the season did the date December 2, 1962 fall on?", "context": "CREATE TABLE table_14984078_1 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_14984039_1 WHERE date = \"October 14, 1956\"", "question": "what is the result for October 14, 1956?", "context": "CREATE TABLE table_14984039_1 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_14984103_1 WHERE week = 6", "question": "Name the game site for week 6", "context": "CREATE TABLE table_14984103_1 (game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_14984103_1 WHERE opponent = \"San Francisco 49ers\"", "question": "Name the number  of weeks for san francisco 49ers", "context": "CREATE TABLE table_14984103_1 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_14984103_1 WHERE game_site = \"Los Angeles Memorial Coliseum\"", "question": "Name the most attendance for game site for los angeles memorial coliseum", "context": "CREATE TABLE table_14984103_1 (attendance INTEGER, game_site VARCHAR)"}, {"answer": "SELECT result FROM table_14984126_1 WHERE record = \"0\u20131\"", "question": "what's the\u00a0result\u00a0with\u00a0record\u00a0being 0\u20131", "context": "CREATE TABLE table_14984126_1 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT game_site FROM table_14984126_1 WHERE result = \"L 24\u201334\"", "question": "what's the\u00a0game site\u00a0with\u00a0result\u00a0being l 24\u201334", "context": "CREATE TABLE table_14984126_1 (game_site VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_14984126_1 WHERE date = \"October 25, 1964\"", "question": " how many\u00a0result\u00a0with\u00a0date\u00a0being october 25, 1964", "context": "CREATE TABLE table_14984126_1 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_14984126_1 WHERE date = \"October 25, 1964\"", "question": " how many\u00a0opponent\u00a0with\u00a0date\u00a0being october 25, 1964", "context": "CREATE TABLE table_14984126_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT population__2010_census_ FROM table_14986292_1 WHERE population_2000_census = 920599", "question": "Name the population 2010 census for population 2000 census of 920599", "context": "CREATE TABLE table_14986292_1 (population__2010_census_ VARCHAR, population_2000_census VARCHAR)"}, {"answer": "SELECT COUNT(population_2000_census) FROM table_14986292_1 WHERE administrative_division = \"Mesquita\"", "question": "Name the total number of population 2000 census for mesquita", "context": "CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, administrative_division VARCHAR)"}, {"answer": "SELECT population_2000_census FROM table_14986292_1 WHERE area__km\u00b2_ = \"77\"", "question": "Name the population 2000 census for 77 area", "context": "CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(area__km\u00b2_) FROM table_14986292_1 WHERE population_density_2010___km\u00b2_ = 514", "question": "Name the number of area where population density 2010 for 514", "context": "CREATE TABLE table_14986292_1 (area__km\u00b2_ VARCHAR, population_density_2010___km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(population_density_2010___km\u00b2_) FROM table_14986292_1 WHERE administrative_division = \"Duque de Caxias\"", "question": "Name the number of population density 2010 for duque de caxias", "context": "CREATE TABLE table_14986292_1 (population_density_2010___km\u00b2_ VARCHAR, administrative_division VARCHAR)"}, {"answer": "SELECT administrative_division FROM table_14986292_1 WHERE population__2010_census_ = 95391", "question": "Name the administrative division for 95391", "context": "CREATE TABLE table_14986292_1 (administrative_division VARCHAR, population__2010_census_ VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_14997324_5 WHERE team = \"12 de Octubre\"", "question": "How many losses did 12 de Octubre have ? ", "context": "CREATE TABLE table_14997324_5 (losses INTEGER, team VARCHAR)"}, {"answer": "SELECT santee_sisseton FROM table_1499791_2 WHERE english_gloss = \"morning\"", "question": "Name the santee sisseton for morning", "context": "CREATE TABLE table_1499791_2 (santee_sisseton VARCHAR, english_gloss VARCHAR)"}, {"answer": "SELECT southern_lakota FROM table_1499791_2 WHERE english_gloss = \"morning\"", "question": "Name the southern lakota for morning", "context": "CREATE TABLE table_1499791_2 (southern_lakota VARCHAR, english_gloss VARCHAR)"}, {"answer": "SELECT southern_lakota FROM table_1499791_2 WHERE yankton_yanktonai = \"wak\u021f\u00e1\u014bye\u017ea\"", "question": "Name the southern lakota for wak\u021f\u00e1\u014bye\u017ea", "context": "CREATE TABLE table_1499791_2 (southern_lakota VARCHAR, yankton_yanktonai VARCHAR)"}, {"answer": "SELECT english_gloss FROM table_1499791_2 WHERE southern_lakota = \"nah\u00e1\u014b\u021f\u010di\u014b\"", "question": "Name the english gloss for nah\u00e1\u014b\u021f\u010di\u014b", "context": "CREATE TABLE table_1499791_2 (english_gloss VARCHAR, southern_lakota VARCHAR)"}, {"answer": "SELECT COUNT(santee_sisseton) FROM table_1499791_2 WHERE yankton_yanktonai = \"h\u00ed\u014bha\u014bna\"", "question": "Name the santee sisseton for h\u00ed\u014bha\u014bna", "context": "CREATE TABLE table_1499791_2 (santee_sisseton VARCHAR, yankton_yanktonai VARCHAR)"}, {"answer": "SELECT yankton_yanktonai FROM table_1499791_2 WHERE southern_lakota = \"wi\u010dh\u00e1\u0161a\"", "question": "Name the yankton yanktonai for wi\u010dh\u00e1\u0161a", "context": "CREATE TABLE table_1499791_2 (yankton_yanktonai VARCHAR, southern_lakota VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_14999879_2", "question": "What was the last round the team drafted?", "context": "CREATE TABLE table_14999879_2 (round INTEGER)"}, {"answer": "SELECT college FROM table_14999879_2 WHERE player = \"Steve Justice\"", "question": "What college did steve justice attend?", "context": "CREATE TABLE table_14999879_2 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(womens_doubles) FROM table_15001957_1 WHERE mens_singles = \"Philippe Aulner\"", "question": "How may women doubles winner were there when Philippe Aulner was mens singles winner?", "context": "CREATE TABLE table_15001957_1 (womens_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT COUNT(mixed_doubles) FROM table_15001957_1 WHERE year = 1996", "question": "How many mixed doubles were won in 1996?", "context": "CREATE TABLE table_15001957_1 (mixed_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_15002265_1 WHERE mens_doubles = \"Reinhold Pum Karl Buchart\" AND mixed_doubles = \"Hermann Fr\u00f6hlich Lore Voit\"", "question": "who is the the\u00a0womens doubles\u00a0with\u00a0mens doubles\u00a0being reinhold pum karl buchart and\u00a0mixed doubles\u00a0being hermann fr\u00f6hlich lore voit", "context": "CREATE TABLE table_15002265_1 (womens_doubles VARCHAR, mens_doubles VARCHAR, mixed_doubles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_15002265_1 WHERE mens_doubles = \"Leopold Bauer Alfred Kohlhauser\"", "question": "who is the the\u00a0womens doubles\u00a0with\u00a0mens doubles\u00a0being leopold bauer alfred kohlhauser", "context": "CREATE TABLE table_15002265_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_15002265_1 WHERE mens_singles = \"Peter Moritz\"", "question": "who is the the\u00a0mixed doubles\u00a0with\u00a0mens singles\u00a0being peter moritz", "context": "CREATE TABLE table_15002265_1 (mixed_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_15002265_1 WHERE mens_singles = \"J\u00fcrgen Koch\" AND womens_singles = \"Sabine Ploner\"", "question": "who is the the\u00a0mens doubles\u00a0with\u00a0mens singles\u00a0being j\u00fcrgen koch and\u00a0womens singles\u00a0being sabine ploner", "context": "CREATE TABLE table_15002265_1 (mens_doubles VARCHAR, mens_singles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_15002265_1 WHERE mixed_doubles = \"Bernd Frohnwieser Hilde Themel\" AND year < 1959.0", "question": "who is the the\u00a0womens singles\u00a0with\u00a0mixed doubles\u00a0being bernd frohnwieser hilde themel and\u00a0year\u00a0being smaller than 1959.0", "context": "CREATE TABLE table_15002265_1 (womens_singles VARCHAR, mixed_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(mixed_doubles) FROM table_15002177_1 WHERE womens_singles = \"Olga Koseli\"", "question": "How many mixed doubles were there in the year that Olga Koseli won the women's singles?", "context": "CREATE TABLE table_15002177_1 (mixed_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_15026994_5 WHERE viewing_figure = \"7.02 million\"", "question": "What is the # for the episode with viewing figures of 7.02 million ?", "context": "CREATE TABLE table_15026994_5 (_number INTEGER, viewing_figure VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_150340_3 WHERE country = \"Puerto Rico\"", "question": "What is the lowest rank for puerto rico?", "context": "CREATE TABLE table_150340_3 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_15026994_2 WHERE writer = \"Gaby Chiappe\"", "question": "How many different directors are associated with the writer Gaby Chiappe?", "context": "CREATE TABLE table_15026994_2 (director VARCHAR, writer VARCHAR)"}, {"answer": "SELECT writer FROM table_15026994_2 WHERE viewing_figure = \"7.01 million\"", "question": "What writers are associated with a viewing figure of 7.01 million?", "context": "CREATE TABLE table_15026994_2 (writer VARCHAR, viewing_figure VARCHAR)"}, {"answer": "SELECT episode FROM table_15026994_2 WHERE viewing_figure = \"6.72 million\"", "question": "What are all episodes with a viewing figure of 6.72 million?", "context": "CREATE TABLE table_15026994_2 (episode VARCHAR, viewing_figure VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_15026994_2 WHERE viewing_figure = \"7.27 million\"", "question": "What original air dates are associated with a viewing figure of 7.27 million?", "context": "CREATE TABLE table_15026994_2 (original_air_date VARCHAR, viewing_figure VARCHAR)"}, {"answer": "SELECT director FROM table_15026994_3 WHERE _number = 13", "question": "Who is the director of the episode at entry number 13? ", "context": "CREATE TABLE table_15026994_3 (director VARCHAR, _number VARCHAR)"}, {"answer": "SELECT COUNT(writer) FROM table_15026994_3 WHERE director = \"David Tucker\"", "question": "Who wrote the episode that David Tucker directed?", "context": "CREATE TABLE table_15026994_3 (writer VARCHAR, director VARCHAR)"}, {"answer": "SELECT episode FROM table_15026994_3 WHERE viewing_figure = \"6.34 million\"", "question": "Which episode has been viewed 6.34 million times? ", "context": "CREATE TABLE table_15026994_3 (episode VARCHAR, viewing_figure VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_15026994_3 WHERE director = \"Paul Marcus\"", "question": "What is the original air date of the episode directed by Paul Marcus?", "context": "CREATE TABLE table_15026994_3 (original_air_date VARCHAR, director VARCHAR)"}, {"answer": "SELECT COUNT(license) FROM table_15038373_1 WHERE version = \"1.2.2.0\"", "question": "How many licenses have version 1.2.2.0?", "context": "CREATE TABLE table_15038373_1 (license VARCHAR, version VARCHAR)"}, {"answer": "SELECT version FROM table_15038373_1 WHERE software = \"SBaGen\"", "question": "What is the version with sbagen software?", "context": "CREATE TABLE table_15038373_1 (version VARCHAR, software VARCHAR)"}, {"answer": "SELECT COUNT(license) FROM table_15038373_1 WHERE software = \"Mind WorkStation\"", "question": "How many licenses have mind workstation software?", "context": "CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR)"}, {"answer": "SELECT software FROM table_15038373_1 WHERE version = \"1.2.2.0\"", "question": "What is the software with version 1.2.2.0?", "context": "CREATE TABLE table_15038373_1 (software VARCHAR, version VARCHAR)"}, {"answer": "SELECT license FROM table_15038373_1 WHERE software = \"BeeOne SMOD/HMS\"", "question": "What is hte license for beeone smod/hms software?", "context": "CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR)"}, {"answer": "SELECT operating_systems FROM table_15038373_1 WHERE software = \"SBaGen\"", "question": "What are all the operating systems for sbagen?", "context": "CREATE TABLE table_15038373_1 (operating_systems VARCHAR, software VARCHAR)"}, {"answer": "SELECT english FROM table_15040_8 WHERE french = \"cheval\"", "question": "What is the English word for the French word cheval?", "context": "CREATE TABLE table_15040_8 (english VARCHAR, french VARCHAR)"}, {"answer": "SELECT spanish FROM table_15040_8 WHERE french = \"filtrer\"", "question": "What is the Spanish word for the French word filtrer?", "context": "CREATE TABLE table_15040_8 (spanish VARCHAR, french VARCHAR)"}, {"answer": "SELECT french FROM table_15040_8 WHERE german = \"filtern\"", "question": "What is the French word where the German word is filtern?", "context": "CREATE TABLE table_15040_8 (french VARCHAR, german VARCHAR)"}, {"answer": "SELECT french FROM table_15040_8 WHERE russian = \"filtrovat (\u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432\u0430\u0442\u044c)\"", "question": "What is the french word for the Russian word filtrovat (\u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432\u0430\u0442\u044c)?", "context": "CREATE TABLE table_15040_8 (french VARCHAR, russian VARCHAR)"}, {"answer": "SELECT french FROM table_15040_8 WHERE italian = \"nazione\"", "question": "What is the French word for the Italian word nazione?", "context": "CREATE TABLE table_15040_8 (french VARCHAR, italian VARCHAR)"}, {"answer": "SELECT english FROM table_15040_8 WHERE russian = \"loshad, kobyla (\u043b\u043e\u0448\u0430\u0434\u044c, \u043a\u043e\u0431\u044b\u043b\u0430)\"", "question": "What is the English word for the Russian words loshad, kobyla (\u043b\u043e\u0448\u0430\u0434\u044c, \u043a\u043e\u0431\u044b\u043b\u0430)?", "context": "CREATE TABLE table_15040_8 (english VARCHAR, russian VARCHAR)"}, {"answer": "SELECT states FROM table_15055594_6 WHERE fall_06 = 3821", "question": "Which state had 3821 students in the fall of 06?", "context": "CREATE TABLE table_15055594_6 (states VARCHAR, fall_06 VARCHAR)"}, {"answer": "SELECT fall_05 FROM table_15055594_6 WHERE states = \"Maryland\"", "question": "How man students were from Maryland in Fall 05?", "context": "CREATE TABLE table_15055594_6 (fall_05 VARCHAR, states VARCHAR)"}, {"answer": "SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_07 = 3940", "question": "What is the number of students in Fall 09 from the state that had 3940 in Fall 07?", "context": "CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_07 VARCHAR)"}, {"answer": "SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_06 = 3821", "question": "What was the highest number of students in Fall 09 in the state that had 3821 in Fall 06?", "context": "CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_06 VARCHAR)"}, {"answer": "SELECT MIN(fall_06) FROM table_15055594_6", "question": "What is the lowest number of students from a state during the Fall 06 semester?", "context": "CREATE TABLE table_15055594_6 (fall_06 INTEGER)"}, {"answer": "SELECT 1321 AS _percentage FROM table_15051_4 WHERE north_carolina = \"Colorado\"", "question": "Name the 132.1% for where north carolina is colorado", "context": "CREATE TABLE table_15051_4 (north_carolina VARCHAR)"}, {"answer": "SELECT COUNT(shot_pct) FROM table_1505809_2 WHERE blank_ends = 8", "question": "What is the total of all Shot PCT occurrences when the value of Blank Ends is 8?", "context": "CREATE TABLE table_1505809_2 (shot_pct VARCHAR, blank_ends VARCHAR)"}, {"answer": "SELECT locale FROM table_1505809_2 WHERE l = 2", "question": "Where is the Locale when L is 2.", "context": "CREATE TABLE table_1505809_2 (locale VARCHAR, l VARCHAR)"}, {"answer": "SELECT MIN(blank_ends) FROM table_1505809_2 WHERE stolen_ends = 7", "question": "What is the lowest value of Blank Ends when Stolen Ends is 7. ", "context": "CREATE TABLE table_1505809_2 (blank_ends INTEGER, stolen_ends VARCHAR)"}, {"answer": "SELECT Ends AS lost FROM table_1505809_2 WHERE blank_ends = 9", "question": "What is the value of Ends Lost when Blank Ends is 9.", "context": "CREATE TABLE table_1505809_2 (Ends VARCHAR, blank_ends VARCHAR)"}, {"answer": "SELECT COUNT(combination_classification) FROM table_15059783_1 WHERE points_classification = \"Alessandro Petacchi\" AND winner = \"Erik Zabel\"", "question": "How many combination classifications have the winner as Erik Zabel and a points classification as Alessandro Petacchi", "context": "CREATE TABLE table_15059783_1 (combination_classification VARCHAR, points_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_15059783_1 WHERE winner = \"Alejandro Valverde\" AND points_classification = \"Erik Zabel\"", "question": "If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification?", "context": "CREATE TABLE table_15059783_1 (mountains_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT COUNT(team_classification) FROM table_15059783_1 WHERE combination_classification = \"Alejandro Valverde\" AND points_classification = \"Alessandro Petacchi\"", "question": "How many teams have a combination classification of Alejandro Valverde and a Points classification of Alessandro Petacchi?", "context": "CREATE TABLE table_15059783_1 (team_classification VARCHAR, combination_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT COUNT(avg_finish) FROM table_1507423_4 WHERE winnings = \"$3,816,362\"", "question": "How many times were the winnings $3,816,362?", "context": "CREATE TABLE table_1507423_4 (avg_finish VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_1507423_4 WHERE position = \"26th\"", "question": "How many wins were there when the position was 26th?", "context": "CREATE TABLE table_1507423_4 (wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT avg_finish FROM table_1507423_4 WHERE avg_start = \"18.4\"", "question": "What was the average finish when the average start was 18.4?", "context": "CREATE TABLE table_1507423_4 (avg_finish VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT COUNT(team_s_) FROM table_1507423_4 WHERE position = \"76th\"", "question": "How many teams had a 76th position finish?", "context": "CREATE TABLE table_1507423_4 (team_s_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_1507423_4", "question": "What is the maximumum number of wins?", "context": "CREATE TABLE table_1507423_4 (wins INTEGER)"}, {"answer": "SELECT team_s_ FROM table_1507423_4 WHERE year = 2007", "question": "What teams won in 2007?", "context": "CREATE TABLE table_1507423_4 (team_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(top_10) FROM table_1507423_5 WHERE position = \"78th\"", "question": "How many entries arr there for the top 10 for the 78th position?", "context": "CREATE TABLE table_1507423_5 (top_10 VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(top_10) FROM table_1507423_5 WHERE team_s_ = \"#55/#83 Robby Gordon Motorsports\"", "question": "Where does team #55/#83 robby gordon motorsports rank in the top 10?", "context": "CREATE TABLE table_1507423_5 (top_10 INTEGER, team_s_ VARCHAR)"}, {"answer": "SELECT COUNT(winnings) FROM table_1507423_5 WHERE team_s_ = \"#07 Robby Gordon Motorsports\"", "question": "How many entries are shown for winnings for team #07 robby gordon motorsports?", "context": "CREATE TABLE table_1507423_5 (winnings VARCHAR, team_s_ VARCHAR)"}, {"answer": "SELECT to_par FROM table_1507431_1 WHERE winning_score = 67 - 67 - 69 - 69 = 272", "question": "What are all values for 'to par' for the winning score of 67-67-69-69=272?", "context": "CREATE TABLE table_1507431_1 (to_par VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_1507431_1 WHERE tournament = \"Buick Classic\"", "question": "The tournament Buick Classic occured on what dates?", "context": "CREATE TABLE table_1507431_1 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_up FROM table_1507431_1 WHERE no = 2", "question": "Who are all runner-ups for No. 2?", "context": "CREATE TABLE table_1507431_1 (runner_up VARCHAR, no VARCHAR)"}, {"answer": "SELECT date_completed FROM table_15070195_1 WHERE nickname = \"Halley\"", "question": "when the nickname halley is used, what are the date completed", "context": "CREATE TABLE table_15070195_1 (date_completed VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT framed_size FROM table_15070195_1 WHERE date_completed = \"02/91\"", "question": "the date complted is 02/91, what framed size was used", "context": "CREATE TABLE table_15070195_1 (framed_size VARCHAR, date_completed VARCHAR)"}, {"answer": "SELECT framed_size FROM table_15070195_1 WHERE nickname = \"Robot Black\"", "question": "for the robot black nickname, what framed size is used", "context": "CREATE TABLE table_15070195_1 (framed_size VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT attribute FROM table_1507852_1 WHERE type = \"DOMNodeRemoved\"", "question": "What are the attributes when the type is \"DOMNodeRemoved\"?", "context": "CREATE TABLE table_1507852_1 (attribute VARCHAR, type VARCHAR)"}, {"answer": "SELECT COUNT(category) FROM table_1507852_1 WHERE attribute = \"onreset\"", "question": "How many categories are there when the attribute is \"onreset\"?", "context": "CREATE TABLE table_1507852_1 (category VARCHAR, attribute VARCHAR)"}, {"answer": "SELECT COUNT(description) FROM table_1507852_1 WHERE attribute = \"ondragstart\"", "question": "How many descriptions are there when the attribute is \"ondragstart\"?", "context": "CREATE TABLE table_1507852_1 (description VARCHAR, attribute VARCHAR)"}, {"answer": "SELECT description FROM table_1507852_1 WHERE type = \"reset\"", "question": "When the type is \"reset\" what is the description?", "context": "CREATE TABLE table_1507852_1 (description VARCHAR, type VARCHAR)"}, {"answer": "SELECT team_classification FROM table_15088557_1 WHERE combination_classification = \"Mederic Clain\"", "question": "Name all the team clasification where the combination classification is mederic clain", "context": "CREATE TABLE table_15088557_1 (team_classification VARCHAR, combination_classification VARCHAR)"}, {"answer": "SELECT COUNT(stage) FROM table_15088557_1 WHERE winner = \"Jose Vicente Garcia Acosta\"", "question": "In how many stages did Jose Vicente Garcia Acosta won?", "context": "CREATE TABLE table_15088557_1 (stage VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MIN(stage) FROM table_15088557_1 WHERE winner = \"Sergei Smetanine\"", "question": "What is the minimum stage where Sergei Smetanine won?", "context": "CREATE TABLE table_15088557_1 (stage INTEGER, winner VARCHAR)"}, {"answer": "SELECT MIN(stage) FROM table_15088557_1 WHERE mountains_classification = \"Aitor Osa\" AND winner = \"Aitor Gonz\u00e1lez\"", "question": "what is the minimum stage where mountains classification is aitor osa and aitor gonz\u00e1lez won?", "context": "CREATE TABLE table_15088557_1 (stage INTEGER, mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(number_of_seasons_in_top_division) FROM table_1510519_1 WHERE position_in_2012_13 = \"005 5th\"", "question": "How many seasons in the top division for the team that finished 005 5th in 2012-2013", "context": "CREATE TABLE table_1510519_1 (number_of_seasons_in_top_division VARCHAR, position_in_2012_13 VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_1515346_2 WHERE honoree_s_ = \"Roberto De Vicenzo\"", "question": "How many countries does honoree Roberto de Vicenzo represent?", "context": "CREATE TABLE table_1515346_2 (country VARCHAR, honoree_s_ VARCHAR)"}, {"answer": "SELECT country FROM table_1515346_2 WHERE player = \"Keith Fergus\"", "question": "For which country does Keith Fergus play?", "context": "CREATE TABLE table_1515346_2 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_1515346_2 WHERE country = \"Australia\" AND honoree_s_ = \"Byron Nelson\"", "question": "Who won the tournament for Australia in the year when Byron Nelson was Honoree?", "context": "CREATE TABLE table_1515346_2 (player VARCHAR, country VARCHAR, honoree_s_ VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_1515346_2 WHERE honoree_s_ = \"Tommy Armour\"", "question": "What was the margin of victory in the year when the honoree was Tommy Armour?", "context": "CREATE TABLE table_1515346_2 (margin_of_victory VARCHAR, honoree_s_ VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_1514559_1 WHERE championship = \"US Open\"", "question": "What year was the most recent US Open championship?", "context": "CREATE TABLE table_1514559_1 (year INTEGER, championship VARCHAR)"}, {"answer": "SELECT COUNT(nominee) FROM table_15162479_8 WHERE net_vote = \"15.17%\"", "question": "How many nominees had a net voice of 15.17%", "context": "CREATE TABLE table_15162479_8 (nominee VARCHAR, net_vote VARCHAR)"}, {"answer": "SELECT nominee FROM table_15162479_8 WHERE net_vote = \"34.46%\"", "question": "What nominees had a net vote of 34.46%?", "context": "CREATE TABLE table_15162479_8 (nominee VARCHAR, net_vote VARCHAR)"}, {"answer": "SELECT COUNT(nominee) FROM table_15162479_8 WHERE vote_to_evict = \"3.92%\"", "question": "How many nominee's had a vote to evict percentage of 3.92%", "context": "CREATE TABLE table_15162479_8 (nominee VARCHAR, vote_to_evict VARCHAR)"}, {"answer": "SELECT COUNT(eviction_result) FROM table_15162479_8 WHERE eviction_no = 12 AND vote_to_save = \"2.76%\"", "question": "How many eviction results occurred with a eviction no. 12 and a vote to save of 2.76%?", "context": "CREATE TABLE table_15162479_8 (eviction_result VARCHAR, eviction_no VARCHAR, vote_to_save VARCHAR)"}, {"answer": "SELECT result FROM table_15162503_1 WHERE viewers_selection = \"Ejay\"", "question": "What was the final result when the viewers selected ejay?", "context": "CREATE TABLE table_15162503_1 (result VARCHAR, viewers_selection VARCHAR)"}, {"answer": "SELECT description FROM table_15162503_1 WHERE viewers_selection = \"Nan\"", "question": "What was the description when the viewers selected Nan?", "context": "CREATE TABLE table_15162503_1 (description VARCHAR, viewers_selection VARCHAR)"}, {"answer": "SELECT segment_c FROM table_15187735_11 WHERE series_ep = \"11-02\"", "question": "What is the name of series episode 11-02's segment c?", "context": "CREATE TABLE table_15187735_11 (segment_c VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT segment_d FROM table_15187735_11 WHERE series_ep = \"11-05\"", "question": "What is the title of series episode 11-05's segment d?", "context": "CREATE TABLE table_15187735_11 (segment_d VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_11 WHERE series_ep = \"11-04\"", "question": "In seris episode 11-04, what is the B segment titled?", "context": "CREATE TABLE table_15187735_11 (segment_b VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT segment_d FROM table_15187735_11 WHERE segment_a = \"Microphones\"", "question": "In the episode where segment a is microphones, what is segment d?", "context": "CREATE TABLE table_15187735_11 (segment_d VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_12 WHERE series_ep = \"12-08\"", "question": "What is Segment B for series episode 12-08?", "context": "CREATE TABLE table_15187735_12 (segment_b VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT series_ep FROM table_15187735_12 WHERE segment_b = \"Popcorn\"", "question": "What is the series episode where Segment B is popcorn ?", "context": "CREATE TABLE table_15187735_12 (series_ep VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT netflix FROM table_15187735_12 WHERE segment_c = \"Car Washes\"", "question": "What is the Netflix where Segment C is car washes?", "context": "CREATE TABLE table_15187735_12 (netflix VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_12 WHERE series_ep = \"12-02\"", "question": "What is Segment B for series episode 12-02?", "context": "CREATE TABLE table_15187735_12 (segment_b VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_12 WHERE segment_b = \"Kevlar s Canoe\"", "question": "What is Segment A where Segment B is Kevlar S Canoe?", "context": "CREATE TABLE table_15187735_12 (segment_a VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT netflix FROM table_15187735_12 WHERE segment_d = \"Pressure Gauges\"", "question": "What is the Netflix where Segment D is pressure gauges ?", "context": "CREATE TABLE table_15187735_12 (netflix VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT segment_d FROM table_15187735_13 WHERE segment_a = \"Bowling Balls\"", "question": "Name the segment d for bowling balls", "context": "CREATE TABLE table_15187735_13 (segment_d VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_13 WHERE segment_a = \"Pressure Cookers\"", "question": "Name the segment b for pressure cookers", "context": "CREATE TABLE table_15187735_13 (segment_b VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_13 WHERE episode = 167", "question": "Name the segment b for 167", "context": "CREATE TABLE table_15187735_13 (segment_b VARCHAR, episode VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_13 WHERE episode = 162", "question": "Name the segment a for 162", "context": "CREATE TABLE table_15187735_13 (segment_a VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(segment_c) FROM table_15187735_13 WHERE segment_a = \"Pressure Cookers\"", "question": "Name the total number of segment c for pressure cookers", "context": "CREATE TABLE table_15187735_13 (segment_c VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT segment_c FROM table_15187735_1 WHERE segment_d = \"Fluorescent Tubes\"", "question": "What was segment C when segment D was fluorescent tubes? ", "context": "CREATE TABLE table_15187735_1 (segment_c VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT segment_c FROM table_15187735_1 WHERE segment_b = \"Package printing\"", "question": "What was segment C when segment B was package printing? ", "context": "CREATE TABLE table_15187735_1 (segment_c VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_1 WHERE segment_b = \"Snowboards\"", "question": "What was segment A when segment B was snowboards? ", "context": "CREATE TABLE table_15187735_1 (segment_a VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_d FROM table_15187735_1 WHERE segment_b = \"Jeans\"", "question": "What was segment D when segment B was jeans? ", "context": "CREATE TABLE table_15187735_1 (segment_d VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT MAX(episode) FROM table_15187735_1 WHERE segment_d = \"ned Can Corn\"", "question": "In what episode was segment D ned Can Corn? ", "context": "CREATE TABLE table_15187735_1 (episode INTEGER, segment_d VARCHAR)"}, {"answer": "SELECT COUNT(segment_c) FROM table_15187735_10 WHERE segment_d = \"Crash Test Dummies\"", "question": "Name the segment c for crash test dummies", "context": "CREATE TABLE table_15187735_10 (segment_c VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_10 WHERE segment_a = \"s Dress Form\"", "question": "Name the segment b for s dress form", "context": "CREATE TABLE table_15187735_10 (segment_b VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_10 WHERE segment_c = \"s Duvet\"", "question": "Name the segment a for s duvet", "context": "CREATE TABLE table_15187735_10 (segment_a VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_15187735_10 WHERE segment_a = \"s Fire Extinguisher\"", "question": "Name the total number of episodes for s fire extinguisher", "context": "CREATE TABLE table_15187735_10 (episode VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT COUNT(segment_b) FROM table_15187735_10 WHERE segment_d = \"s Banjo\"", "question": "Name the total number of segment b for s banjo", "context": "CREATE TABLE table_15187735_10 (segment_b VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT COUNT(segment_d) FROM table_15187735_10 WHERE segment_a = \"Wooden s Barrel\"", "question": "Name the total number of segment d for wooden s barrel", "context": "CREATE TABLE table_15187735_10 (segment_d VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT COUNT(segment_a) FROM table_15187735_14 WHERE series_ep = \"14-05\"", "question": "How many segment A were in series episode 14-05", "context": "CREATE TABLE table_15187735_14 (segment_a VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT segment_c FROM table_15187735_14 WHERE netflix = \"S07E05\"", "question": "What is segment C in s07e05", "context": "CREATE TABLE table_15187735_14 (segment_c VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT netflix FROM table_15187735_15 WHERE segment_d = \"High-Performance Engines\"", "question": "What is the netflix episode number where Segment D is high-performance engines?", "context": "CREATE TABLE table_15187735_15 (netflix VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT segment_d FROM table_15187735_15 WHERE episode = 183", "question": "What was segment D for episode 183?", "context": "CREATE TABLE table_15187735_15 (segment_d VARCHAR, episode VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_15 WHERE segment_c = \"Sushi (Part 1)\"", "question": "What is Segment A where Segment C is Sushi (part 1)? ", "context": "CREATE TABLE table_15187735_15 (segment_a VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_15187735_15 WHERE netflix = \"S08E04\"", "question": "How many episodes have the Netflix episode number S08E04?", "context": "CREATE TABLE table_15187735_15 (episode VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_15 WHERE segment_d = \"Luxury Sports Cars\"", "question": "What is Segment A where Segment D is luxury sports cars?", "context": "CREATE TABLE table_15187735_15 (segment_a VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT MIN(episode) FROM table_15187735_20 WHERE segment_a = \"Thinning Shears\"", "question": "What episode number is the episode with a segment on thinning shears?", "context": "CREATE TABLE table_15187735_20 (episode INTEGER, segment_a VARCHAR)"}, {"answer": "SELECT MIN(episode) FROM table_15187735_20 WHERE segment_d = \"Custom Motorcycle Tanks\"", "question": "Which episode has segment D on custom motorcycle tanks?", "context": "CREATE TABLE table_15187735_20 (episode INTEGER, segment_d VARCHAR)"}, {"answer": "SELECT COUNT(segment_c) FROM table_15187735_20 WHERE segment_d = \"Bicycle Tires\"", "question": "How many segment C are there in the episode where segment D is bicycle tires?", "context": "CREATE TABLE table_15187735_20 (segment_c VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT MIN(episode) FROM table_15187735_20", "question": "What is the first episode number?", "context": "CREATE TABLE table_15187735_20 (episode INTEGER)"}, {"answer": "SELECT COUNT(segment_b) FROM table_15187735_16 WHERE segment_a = \"Filigree Glass\"", "question": "How many segment b's when segment a is filigree glass", "context": "CREATE TABLE table_15187735_16 (segment_b VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_16 WHERE netflix = \"S08E21\"", "question": "Whats the name of segment in s08e21", "context": "CREATE TABLE table_15187735_16 (segment_a VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT netflix FROM table_15187735_16 WHERE segment_a = \"Digital Dentistry\"", "question": "Whats the season/episode of segment a digital dentistry", "context": "CREATE TABLE table_15187735_16 (netflix VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT segment_d FROM table_15187735_16 WHERE segment_a = \"Tequila\"", "question": "Whats the name of segment D in the episode where segment A is tequila", "context": "CREATE TABLE table_15187735_16 (segment_d VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_15187735_18 WHERE segment_c = \"s Oyster\"", "question": "Name the number of episods for segment c being s oyster", "context": "CREATE TABLE table_15187735_18 (episode VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT MIN(episode) FROM table_15187735_18 WHERE segment_d = \"Fibre Cement Siding\"", "question": "Name the least episode for fibre cement siding", "context": "CREATE TABLE table_15187735_18 (episode INTEGER, segment_d VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_18 WHERE episode = 226", "question": "Name the segment b for 226 episode", "context": "CREATE TABLE table_15187735_18 (segment_b VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(segment_d) FROM table_15187735_18 WHERE segment_b = \"Solar Water Heaters\"", "question": "Name the number of sement d for solar water heaters ", "context": "CREATE TABLE table_15187735_18 (segment_d VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_d FROM table_15187735_18 WHERE segment_a = \"s Cufflink\"", "question": "Name the segment d for s cufflink", "context": "CREATE TABLE table_15187735_18 (segment_d VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_19 WHERE episode = 242", "question": "What is the segment B of episode 242?", "context": "CREATE TABLE table_15187735_19 (segment_b VARCHAR, episode VARCHAR)"}, {"answer": "SELECT segment_c FROM table_15187735_19 WHERE segment_b = \"Film Digitization\"", "question": "What is the segment C of the episode where segment B is Film Digitization?", "context": "CREATE TABLE table_15187735_19 (segment_c VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_19 WHERE episode = 237", "question": "What is the segment A on episode 237?", "context": "CREATE TABLE table_15187735_19 (segment_a VARCHAR, episode VARCHAR)"}, {"answer": "SELECT MAX(episode) FROM table_15187735_4 WHERE segment_d = \"Blown Glass\"", "question": "What is the last episode which has segment d as blown glass?", "context": "CREATE TABLE table_15187735_4 (episode INTEGER, segment_d VARCHAR)"}, {"answer": "SELECT MIN(episode) FROM table_15187735_4 WHERE netflix = \"S02E20\"", "question": "What is the first episode with a netflix episode code of s02e20?", "context": "CREATE TABLE table_15187735_4 (episode INTEGER, netflix VARCHAR)"}, {"answer": "SELECT netflix FROM table_15187735_4 WHERE episode = 46", "question": "What is the netflix code for episode 46?", "context": "CREATE TABLE table_15187735_4 (netflix VARCHAR, episode VARCHAR)"}, {"answer": "SELECT netflix FROM table_15187735_4 WHERE series_ep = \"4-11\"", "question": "What is the netflix code where the series and episode are 4-11?", "context": "CREATE TABLE table_15187735_4 (netflix VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_21 WHERE segment_c = \"Artificial Flowers\"", "question": "What is listed in segment b when segment c is artificial flowers?", "context": "CREATE TABLE table_15187735_21 (segment_b VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT segment_c FROM table_15187735_21 WHERE segment_d = \"Motorcycle Brake Locks\"", "question": "What are the titles of segment c when segment d is motorcycle brake locks?", "context": "CREATE TABLE table_15187735_21 (segment_c VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT segment_c FROM table_15187735_21 WHERE series_ep = \"21-08\"", "question": "What are the titles of segment c for series episode is 21-08?", "context": "CREATE TABLE table_15187735_21 (segment_c VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_21 WHERE segment_c = \"Standby Generators (Part 1)\"", "question": "What are the titles of segment b when segment c is standby generators (part 1)?", "context": "CREATE TABLE table_15187735_21 (segment_b VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_21 WHERE series_ep = \"21-12\"", "question": "What are the titles of segment a for series episode 21-12?", "context": "CREATE TABLE table_15187735_21 (segment_a VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_15187735_3 WHERE segment_c = \"Phyllo Dough\"", "question": "Name the number of episode for phyllo dough", "context": "CREATE TABLE table_15187735_3 (episode VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT segment_d FROM table_15187735_3 WHERE segment_a = \"Combination Locks\"", "question": "Name the segment d for combination locks", "context": "CREATE TABLE table_15187735_3 (segment_d VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT series_ep FROM table_15187735_3 WHERE netflix = \"S02E08\"", "question": "Name the series ep for s02e08", "context": "CREATE TABLE table_15187735_3 (series_ep VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT segment_c FROM table_15187735_3 WHERE segment_b = \"Couscous\"", "question": "Name the segment c for couscous", "context": "CREATE TABLE table_15187735_3 (segment_c VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_c FROM table_15187735_3 WHERE segment_b = \"Pottery\"", "question": "Name the segment c for pottery", "context": "CREATE TABLE table_15187735_3 (segment_c VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_d FROM table_15187735_3 WHERE segment_c = \"Chicken\"", "question": "Name the segment d for chicken", "context": "CREATE TABLE table_15187735_3 (segment_d VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT segment_a FROM table_15187735_6 WHERE segment_c = \"s Sailboard\"", "question": "What is the Segment A for when Segment C is s Sailboard?", "context": "CREATE TABLE table_15187735_6 (segment_a VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT segment_b FROM table_15187735_6 WHERE segment_d = \"s Hammock\"", "question": "What is the Segment B when the Segment D is s Hammock?", "context": "CREATE TABLE table_15187735_6 (segment_b VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT netflix FROM table_15187735_6 WHERE segment_b = \"s Highlighter\"", "question": "What is the Netflix Episode when the Segment B is s Highlighter?", "context": "CREATE TABLE table_15187735_6 (netflix VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT location FROM table_15190346_2 WHERE _number = 1", "question": "What is the location of #1?", "context": "CREATE TABLE table_15190346_2 (location VARCHAR, _number VARCHAR)"}, {"answer": "SELECT stadium FROM table_15190346_2 WHERE bowl_game = \"1994 Gator Bowl\"", "question": "What stadium was the 1994 Gator Bowl in?", "context": "CREATE TABLE table_15190346_2 (stadium VARCHAR, bowl_game VARCHAR)"}, {"answer": "SELECT stadium FROM table_15190346_2 WHERE attendance = \"75,406\"", "question": "What is the stadium where the attendance was 75,406?", "context": "CREATE TABLE table_15190346_2 (stadium VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_15190346_2 WHERE attendance = \"79,280\"", "question": "What is the number of the bowl game when attendance was 79,280?", "context": "CREATE TABLE table_15190346_2 (_number INTEGER, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_15190346_2 WHERE location = \"Gainesville, FL\"", "question": "What was the attendance of the bowl game in Gainesville, Fl?", "context": "CREATE TABLE table_15190346_2 (attendance VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(median_monthly_per_capita___labour_force_income__hkd_) FROM table_151994_1 WHERE population__2006_est_ = 365540", "question": "Name the total number of median income for population 2006 for 365540", "context": "CREATE TABLE table_151994_1 (median_monthly_per_capita___labour_force_income__hkd_ VARCHAR, population__2006_est_ VARCHAR)"}, {"answer": "SELECT MIN(derby_county) AS Goals FROM table_15201666_3", "question": "Name the minimum derby county goals", "context": "CREATE TABLE table_15201666_3 (derby_county INTEGER)"}, {"answer": "SELECT MAX(derby_county) FROM table_15201666_3", "question": "Name the most derby county", "context": "CREATE TABLE table_15201666_3 (derby_county INTEGER)"}, {"answer": "SELECT segment_b FROM table_15187735_9 WHERE segment_c = \"British Police Helmets\"", "question": "In episode 115 what is seen being made before British police helmets?", "context": "CREATE TABLE table_15187735_9 (segment_b VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT COUNT(segment_c) FROM table_15187735_9 WHERE segment_d = \"Pedal Steel Guitars\"", "question": "How many times was leather introduced before pedal steel guitars in episode 111?", "context": "CREATE TABLE table_15187735_9 (segment_c VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT uk_broadcast_date FROM table_15211468_1 WHERE countries_visited = \"USA\"", "question": "What was the UK broadcast date for the episode which visited USA?", "context": "CREATE TABLE table_15211468_1 (uk_broadcast_date VARCHAR, countries_visited VARCHAR)"}, {"answer": "SELECT countries_visited FROM table_15211468_1 WHERE presenter = \"Brian B. Thompson\"", "question": "What countries are visited in the episode presented by Brian B. Thompson?", "context": "CREATE TABLE table_15211468_1 (countries_visited VARCHAR, presenter VARCHAR)"}, {"answer": "SELECT episode_title FROM table_15211468_1 WHERE episode_no = \"#1.4\"", "question": "What is the episode title for the episode numbered #1.4?", "context": "CREATE TABLE table_15211468_1 (episode_title VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT social_democratic_party FROM table_152358_3 WHERE control = \"labour\"", "question": "Name the social democratic party for labour", "context": "CREATE TABLE table_152358_3 (social_democratic_party VARCHAR, control VARCHAR)"}, {"answer": "SELECT written_by FROM table_15284274_1 WHERE directed_by = \"Will Waring\" AND no_in_season = 11", "question": "Who wrote episode 11, of which was directed by Will Waring?", "context": "CREATE TABLE table_15284274_1 (written_by VARCHAR, directed_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT written_by FROM table_15284274_1 WHERE directed_by = \"Peter Woeste\"", "question": "Who wrote the episode directed by Peter Woeste?", "context": "CREATE TABLE table_15284274_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT director FROM table_15277629_1 WHERE original_title = \"Pecado Mortal\"", "question": "Who was the director of Pecado Mortal", "context": "CREATE TABLE table_15277629_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT original_title FROM table_15277629_1 WHERE director = \"Bruno Barreto\" AND year__ceremony_ = 1989", "question": "What was the original title of the Bruno Barreto film in 1989", "context": "CREATE TABLE table_15277629_1 (original_title VARCHAR, director VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT result FROM table_15277629_1 WHERE director = \"Fernando Meirelles\"", "question": "What was the result for director Fernando Meirelles", "context": "CREATE TABLE table_15277629_1 (result VARCHAR, director VARCHAR)"}, {"answer": "SELECT original_title FROM table_15277629_1 WHERE director = \"Suzana Amaral\"", "question": "Name the original title of the Suzana Amaral film", "context": "CREATE TABLE table_15277629_1 (original_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT COUNT(province) FROM table_152834_2 WHERE county = \"Fenghuang\"", "question": "If the country is fenghuang how many provinces are there? ", "context": "CREATE TABLE table_152834_2 (province VARCHAR, county VARCHAR)"}, {"answer": "SELECT group_a FROM table_15290638_1 WHERE group_d = \"Indiana\"", "question": "Who is in group a when indiana is in group d?", "context": "CREATE TABLE table_15290638_1 (group_a VARCHAR, group_d VARCHAR)"}, {"answer": "SELECT group_c FROM table_15290638_1 WHERE group_d = \"Wisconsin\"", "question": "Who is in group c when wisconsin is in group d?", "context": "CREATE TABLE table_15290638_1 (group_c VARCHAR, group_d VARCHAR)"}, {"answer": "SELECT group_c FROM table_15290638_1 WHERE group_e = \"Iowa\"", "question": "Who is in group c when iowa is in group e?", "context": "CREATE TABLE table_15290638_1 (group_c VARCHAR, group_e VARCHAR)"}, {"answer": "SELECT old_bulgarian_names FROM table_15275060_1 WHERE BULGARIAN_NAME(Transliteration) = Yuni", "question": "Name the old bulgarian names for yuni", "context": "CREATE TABLE table_15275060_1 (old_bulgarian_names VARCHAR, Yuni VARCHAR, Transliteration VARCHAR)"}, {"answer": "SELECT old_bulgarian_names FROM table_15275060_1 WHERE BULGARIAN_NAME(Transliteration) = Yanuari", "question": "Name the old bulgarian names for yanuari", "context": "CREATE TABLE table_15275060_1 (old_bulgarian_names VARCHAR, Yanuari VARCHAR, Transliteration VARCHAR)"}, {"answer": "SELECT bulgarian_name FROM table_15275060_1 WHERE BULGARIAN_NAME(Transliteration) = Mart", "question": "Name the bulgarian name for mart", "context": "CREATE TABLE table_15275060_1 (bulgarian_name VARCHAR, Mart VARCHAR, Transliteration VARCHAR)"}, {"answer": "SELECT listed_owner_s_ FROM table_1529793_1 WHERE driver_s_ = \"Jeremy Mayfield\"", "question": "Who owned the team Jeremy Mayfield raced for?", "context": "CREATE TABLE table_1529793_1 (listed_owner_s_ VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT primary_sponsor_s_ FROM table_1529793_1 WHERE driver_s_ = \"Jason Leffler\"", "question": "Who is Jason Leffler's primary sponsor?", "context": "CREATE TABLE table_1529793_1 (primary_sponsor_s_ VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT COUNT(stage) FROM table_15294880_2 WHERE winner = \"Alberto Contador\" AND points_classification = \"Alberto Contador\"", "question": "How many stages were there where the winner and the points classification were Alberto Contador?", "context": "CREATE TABLE table_15294880_2 (stage VARCHAR, winner VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT COUNT(team_classification) FROM table_15294880_2 WHERE winner = \"Alessandro Ballan\"", "question": "When the winner was Alessandro Ballan, how many total team classifications were there?", "context": "CREATE TABLE table_15294880_2 (team_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(general_classification) FROM table_15294880_2 WHERE team_classification = \"Quick Step\"", "question": "When the team classification was quick step, what was the total number of general classifications?", "context": "CREATE TABLE table_15294880_2 (general_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT 250 AS cc_winner FROM table_15299235_1 WHERE grand_prix = \"Spanish grand_prix\"", "question": "Who won the spanish grand prix?", "context": "CREATE TABLE table_15299235_1 (grand_prix VARCHAR)"}, {"answer": "SELECT date FROM table_15299235_1 WHERE circuit = \"Indianapolis\"", "question": "What is the date for the Indianapolis circuit?", "context": "CREATE TABLE table_15299235_1 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT 250 AS cc_winner FROM table_15299235_1 WHERE round = 9", "question": "in round 9 who was the 250cc winner?", "context": "CREATE TABLE table_15299235_1 (round VARCHAR)"}, {"answer": "SELECT condition_parameter FROM table_15314901_1 WHERE velocity_angle_\u03b7_in_i_radians = \"ln[(1 + \u221a5)/2] \u2245 0.481\"", "question": "If the velocity angle is ln[(1 + \u221a5)/2] \u2245 0.481, what is the condition/parameter?", "context": "CREATE TABLE table_15314901_1 (condition_parameter VARCHAR, velocity_angle_\u03b7_in_i_radians VARCHAR)"}, {"answer": "SELECT coordinate_velocity_v_dx_dt_in_units_of_c FROM table_15314901_1 WHERE condition_parameter = \"Rapidity of 2 hyperbolic radians\"", "question": "If the the condition/parameter is rapidity of 2 hyperbolic radians, what is the coordinate velocity v dx/dt in units of c?", "context": "CREATE TABLE table_15314901_1 (coordinate_velocity_v_dx_dt_in_units_of_c VARCHAR, condition_parameter VARCHAR)"}, {"answer": "SELECT velocity_angle_\u03b7_in_i_radians FROM table_15314901_1 WHERE coordinate_velocity_v_dx_dt_in_units_of_c = \"(e 2 \u2212 1)/(e 2 + 1) \u2245 0.761\"", "question": "If the coordinate velocity v dx/dt in units of c is (e 2 \u2212 1)/(e 2 + 1) \u2245 0.761, what is the velocity angle \u03b7 in i-radians?", "context": "CREATE TABLE table_15314901_1 (velocity_angle_\u03b7_in_i_radians VARCHAR, coordinate_velocity_v_dx_dt_in_units_of_c VARCHAR)"}, {"answer": "SELECT COUNT(coordinate_velocity_v_dx_dt_in_units_of_c) FROM table_15314901_1 WHERE velocity_angle_\u03b7_in_i_radians = \"ln[2 + \u221a5] \u2245 1.444\"", "question": "What is the coordinate velocity v dx/dt in units of c total number if the velocity angle \u03b7 in i-radians is ln[2 + \u221a5] \u2245 1.444?", "context": "CREATE TABLE table_15314901_1 (coordinate_velocity_v_dx_dt_in_units_of_c VARCHAR, velocity_angle_\u03b7_in_i_radians VARCHAR)"}, {"answer": "SELECT proper_velocity_w_dx_d\u03c4_in_units_of_c FROM table_15314901_1 WHERE condition_parameter = \"Rapidity of 1 hyperbolic radian\"", "question": "If the condition/parameter is rapidity of 1 hyperbolic radian, what is the proper velocity w dx/d\u03c4 in units of c?", "context": "CREATE TABLE table_15314901_1 (proper_velocity_w_dx_d\u03c4_in_units_of_c VARCHAR, condition_parameter VARCHAR)"}, {"answer": "SELECT school_year FROM table_15315103_1 WHERE class_aAAA = Dayton", "question": "What year is dayton in class AAAA?", "context": "CREATE TABLE table_15315103_1 (school_year VARCHAR, class_aAAA VARCHAR, Dayton VARCHAR)"}, {"answer": "SELECT class_aAAAA FROM table_15315103_1 WHERE school_year = \"1995-96\"", "question": "Who is in class during 1995-96?", "context": "CREATE TABLE table_15315103_1 (class_aAAAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT year FROM table_15315816_1 WHERE tournament_location = \"Western Turnpike Golf Course\"", "question": "When are all years that tournament location is Western Turnpike Golf Course?", "context": "CREATE TABLE table_15315816_1 (year VARCHAR, tournament_location VARCHAR)"}, {"answer": "SELECT year FROM table_15315816_1 WHERE champion = \"Ji Min Jeong\"", "question": "When are all years that the champion is Ji Min Jeong?", "context": "CREATE TABLE table_15315816_1 (year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT winners_share__$_ FROM table_15315816_1 WHERE year = \"2004\"", "question": "How much are all winners share ($) in the year 2004?", "context": "CREATE TABLE table_15315816_1 (winners_share__$_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(dates) FROM table_15315816_1 WHERE year = \"2006\"", "question": "When are all dates in the year 2006?", "context": "CREATE TABLE table_15315816_1 (dates VARCHAR, year VARCHAR)"}, {"answer": "SELECT dates FROM table_15315816_1 WHERE score = \"205 (\u20138)\" AND country = \"Australia\"", "question": "When are all dates with a score of 205 (\u20138)  in Australia?", "context": "CREATE TABLE table_15315816_1 (dates VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT dates FROM table_15315816_1 WHERE country = \"Canada\"", "question": "What are all of the dates in the country of Canada?", "context": "CREATE TABLE table_15315816_1 (dates VARCHAR, country VARCHAR)"}, {"answer": "SELECT dates FROM table_15315276_1 WHERE champion = \"Jenny Gleason\"", "question": "When was Jenny Gleason the champion of the Northeast Delta Dental International?", "context": "CREATE TABLE table_15315276_1 (dates VARCHAR, champion VARCHAR)"}, {"answer": "SELECT tournament_location FROM table_15315276_1 WHERE champion = \"Misun Cho\"", "question": "Where was the tournament located when Misun Cho won the championship?", "context": "CREATE TABLE table_15315276_1 (tournament_location VARCHAR, champion VARCHAR)"}, {"answer": "SELECT MAX(purse__) AS $_ FROM table_15315276_1", "question": "What is the maximum purse prize of the Northeast Delta Dental International Championship?", "context": "CREATE TABLE table_15315276_1 (purse__ INTEGER)"}, {"answer": "SELECT COUNT(purse__) AS $_ FROM table_15315276_1 WHERE champion = \"Jenny Shin\"", "question": "How many prizes were available when Jenny Shin became the champion?", "context": "CREATE TABLE table_15315276_1 (purse__ VARCHAR, champion VARCHAR)"}, {"answer": "SELECT team FROM table_15318779_1 WHERE points = 21", "question": "Which team had 21 points?", "context": "CREATE TABLE table_15318779_1 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(won) FROM table_15318779_1 WHERE team = \"Palmeiras\"", "question": "How many games did Palmeiras win?", "context": "CREATE TABLE table_15318779_1 (won INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_15319684_1 WHERE against = 46", "question": "Name the number of lost for against being 46", "context": "CREATE TABLE table_15319684_1 (lost VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_15319684_1 WHERE team = \"Portuguesa Santista\"", "question": "Name the number of against for portuguesa santista", "context": "CREATE TABLE table_15319684_1 (against VARCHAR, team VARCHAR)"}, {"answer": "SELECT won FROM table_15319684_1 WHERE difference = \"33\"", "question": "Name the won for difference being 33", "context": "CREATE TABLE table_15319684_1 (won VARCHAR, difference VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_15319684_1 WHERE team = \"Corinthians\"", "question": "Name the most losst for corinthians", "context": "CREATE TABLE table_15319684_1 (lost INTEGER, team VARCHAR)"}, {"answer": "SELECT r_z___arcsecond__ FROM table_15318324_1 WHERE r_y___arcsecond__ = \"\u22120.247\"", "question": "How many values of r z (arcsecond) correspond with a r y (arcsecond) value of \u22120.247?", "context": "CREATE TABLE table_15318324_1 (r_z___arcsecond__ VARCHAR, r_y___arcsecond__ VARCHAR)"}, {"answer": "SELECT r_z___arcsecond__ FROM table_15318324_1 WHERE target_datum = \"Ireland 1965\"", "question": "How many values of r z(arcsecond) are associated with a target datum of Ireland 1965?", "context": "CREATE TABLE table_15318324_1 (r_z___arcsecond__ VARCHAR, target_datum VARCHAR)"}, {"answer": "SELECT muslim___percentage_of_total_population_ FROM table_1532779_1 WHERE population_of_england_and_wales_000 = 49634", "question": "What is the muslim percentage of the 49634 population of england and wales 000?", "context": "CREATE TABLE table_1532779_1 (muslim___percentage_of_total_population_ VARCHAR, population_of_england_and_wales_000 VARCHAR)"}, {"answer": "SELECT MAX(census_year) FROM table_1532779_1", "question": "What is the most recent census year?", "context": "CREATE TABLE table_1532779_1 (census_year INTEGER)"}, {"answer": "SELECT muslim___percentage_of_total_population_ FROM table_1532779_1 WHERE registered_mosques = 614", "question": "What was the percentage of muslims during a time where there were 614 registered mosques?", "context": "CREATE TABLE table_1532779_1 (muslim___percentage_of_total_population_ VARCHAR, registered_mosques VARCHAR)"}, {"answer": "SELECT MAX(pa) FROM table_15333005_1 WHERE locale = Ontario", "question": "Name the most pa for ontario ", "context": "CREATE TABLE table_15333005_1 (pa INTEGER, locale VARCHAR, Ontario VARCHAR)"}, {"answer": "SELECT Ends AS lost FROM table_15333005_1 WHERE pa = 67", "question": "Name the ends lost for 67 pa", "context": "CREATE TABLE table_15333005_1 (Ends VARCHAR, pa VARCHAR)"}, {"answer": "SELECT COUNT(Ends) AS won FROM table_15333005_1 WHERE l = 4 AND stolen_ends = 17", "question": "Name the number ends won when L is 4 and stolen ends is 17", "context": "CREATE TABLE table_15333005_1 (Ends VARCHAR, l VARCHAR, stolen_ends VARCHAR)"}, {"answer": "SELECT date FROM table_15346009_1 WHERE tournament = \"JELD-WEN Tradition\"", "question": "What day was Jeld-Wen Tradition held?", "context": "CREATE TABLE table_15346009_1 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_15346009_1 WHERE winner = \"Bernhard Langer (2)\"", "question": "What day did Bernhard Langer (2) win?", "context": "CREATE TABLE table_15346009_1 (date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_15346009_1 WHERE location = \"Alabama\"", "question": "On what day was the tournament in Alabama?", "context": "CREATE TABLE table_15346009_1 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT 1 AS st_prize__$__ FROM table_15346009_1 WHERE score = \"271 (-9)\"", "question": "What was the value of 1st prize when the score was 271 (-9)?", "context": "CREATE TABLE table_15346009_1 (score VARCHAR)"}, {"answer": "SELECT date FROM table_15346009_1 WHERE score = \"200 (-16)\"", "question": "What day was the score 200 (-16)?", "context": "CREATE TABLE table_15346009_1 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_15346009_1 WHERE tournament = \"Outback Steakhouse Pro-Am\"", "question": "Where was Outback Steakhouse Pro-AM held?", "context": "CREATE TABLE table_15346009_1 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date_of_polls FROM table_15329030_1 WHERE state = \"Mizoram\"", "question": "Which dates of polls occur in the Mizoram state?", "context": "CREATE TABLE table_15329030_1 (date_of_polls VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(date_of_polls) FROM table_15329030_1 WHERE state = \"Madhya Pradesh\"", "question": "How many dates of polls occur in the Madhya Pradesh state?", "context": "CREATE TABLE table_15329030_1 (date_of_polls VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_15352382_1 WHERE difference = 11", "question": "How many under the category of Against have a Difference of 11", "context": "CREATE TABLE table_15352382_1 (against VARCHAR, difference VARCHAR)"}, {"answer": "SELECT won FROM table_15352382_1 WHERE against = 20", "question": "if Against is 20 how much is Won?", "context": "CREATE TABLE table_15352382_1 (won VARCHAR, against VARCHAR)"}, {"answer": "SELECT drawn FROM table_15352382_1 WHERE team = \"Portuguesa Santista\"", "question": "How many Drawn does the team Portuguesa Santista have?", "context": "CREATE TABLE table_15352382_1 (drawn VARCHAR, team VARCHAR)"}, {"answer": "SELECT drawn FROM table_15352382_1 WHERE team = \"Corinthians\"", "question": "How many drawn does the team Corinthians have?", "context": "CREATE TABLE table_15352382_1 (drawn VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(won) FROM table_15331868_1 WHERE difference = \"1\"", "question": "What is the highest number won with a difference of 1?", "context": "CREATE TABLE table_15331868_1 (won INTEGER, difference VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_15331868_1 WHERE against = 28", "question": "What the highest position when there is 28 against?", "context": "CREATE TABLE table_15331868_1 (position INTEGER, against VARCHAR)"}, {"answer": "SELECT MAX(won) FROM table_15331868_1 WHERE points = 31", "question": "What is the highest number won when the number of points is 31?", "context": "CREATE TABLE table_15331868_1 (won INTEGER, points VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_15331868_1 WHERE difference = \"6\"", "question": "What is the smalledt position when the difference was 6?", "context": "CREATE TABLE table_15331868_1 (position INTEGER, difference VARCHAR)"}, {"answer": "SELECT COUNT(average_weekly_rank) FROM table_15358729_6 WHERE average_nightly_rank = \"No. 2\"", "question": "How many were the show's average weekly ranking when it reached No. 2 in average nightly ranking?", "context": "CREATE TABLE table_15358729_6 (average_weekly_rank VARCHAR, average_nightly_rank VARCHAR)"}, {"answer": "SELECT timeslot FROM table_15358729_6 WHERE season = 3", "question": "What is the show's time slot during season 3?", "context": "CREATE TABLE table_15358729_6 (timeslot VARCHAR, season VARCHAR)"}, {"answer": "SELECT february FROM table_1539201_1", "question": "Name all of the february", "context": "CREATE TABLE table_1539201_1 (february VARCHAR)"}, {"answer": "SELECT june FROM table_1539201_1", "question": "Name the junes", "context": "CREATE TABLE table_1539201_1 (june VARCHAR)"}, {"answer": "SELECT july FROM table_1539201_1", "question": "Name the julys", "context": "CREATE TABLE table_1539201_1 (july VARCHAR)"}, {"answer": "SELECT COUNT(february) FROM table_1539201_1", "question": "Name the number of februaries", "context": "CREATE TABLE table_1539201_1 (february VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_15405904_1 WHERE position = 2", "question": "How many points are listed when the position is 2?", "context": "CREATE TABLE table_15405904_1 (points INTEGER, position VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_15405904_1 WHERE lost = 2", "question": "When there is a lost of 2 what is the mumber drawn?", "context": "CREATE TABLE table_15405904_1 (drawn INTEGER, lost VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_15405904_1", "question": "How many games are played?", "context": "CREATE TABLE table_15405904_1 (played INTEGER)"}, {"answer": "SELECT MIN(lost) FROM table_15405904_1 WHERE position = 2", "question": "When the position is 2 what is the number lost?", "context": "CREATE TABLE table_15405904_1 (lost INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(won) FROM table_15405904_1 WHERE team = \"Ypiranga-SP\"", "question": "When the team is ypiranga-sp what is the number of won games?", "context": "CREATE TABLE table_15405904_1 (won INTEGER, team VARCHAR)"}, {"answer": "SELECT difference FROM table_15400878_1 WHERE drawn > 2.0", "question": "Name the difference for when drawn is larger than 2.0", "context": "CREATE TABLE table_15400878_1 (difference VARCHAR, drawn INTEGER)"}, {"answer": "SELECT MAX(against) FROM table_15400878_1 WHERE team = \"Minas Gerais\"", "question": "Name the most against for minas gerais", "context": "CREATE TABLE table_15400878_1 (against INTEGER, team VARCHAR)"}, {"answer": "SELECT LMS AS class FROM table_15412381_5 WHERE lms_nos = \"14510-5\"", "question": "What is the LMS class of trains with numbers 14510-5?", "context": "CREATE TABLE table_15412381_5 (LMS VARCHAR, lms_nos VARCHAR)"}, {"answer": "SELECT date FROM table_15412381_5 WHERE wheels = 279", "question": "What is the date of the 279 wheels?", "context": "CREATE TABLE table_15412381_5 (date VARCHAR, wheels VARCHAR)"}, {"answer": "SELECT lms_nos FROM table_15412381_5 WHERE builder = \"G&SWR Kilmarnock\"", "question": "What is the LMS number of the trains built by G&SWR Kilmarnock?", "context": "CREATE TABLE table_15412381_5 (lms_nos VARCHAR, builder VARCHAR)"}, {"answer": "SELECT COUNT(wheels) FROM table_15412381_5 WHERE lms_nos = \"16377-9\"", "question": "How many figures are there for wheels for LMS numbers 16377-9?", "context": "CREATE TABLE table_15412381_5 (wheels VARCHAR, lms_nos VARCHAR)"}, {"answer": "SELECT MAX(saffir_simpson_category) FROM table_15416002_1", "question": "What is the maximum number for the Saffir-Simpson category in the Carvill Hurricane Index?", "context": "CREATE TABLE table_15416002_1 (saffir_simpson_category INTEGER)"}, {"answer": "SELECT MAX(v_mph_) FROM table_15416002_1 WHERE chi = \"13.5\"", "question": "What is the maximum miles per hour recorded when the  CHI (Carvill Hurricane Index) is equal to 13.5", "context": "CREATE TABLE table_15416002_1 (v_mph_ INTEGER, chi VARCHAR)"}, {"answer": "SELECT chi FROM table_15416002_1 WHERE nhc_advisory_number = \"49B\"", "question": "What is the CHI (Carvill Hurricane Index) when the NHC advisory number is equal to 49b?", "context": "CREATE TABLE table_15416002_1 (chi VARCHAR, nhc_advisory_number VARCHAR)"}, {"answer": "SELECT MAX(r_miles_) FROM table_15416002_1 WHERE landfall = \"Texas\" AND saffir_simpson_category < 3.0", "question": "What is the maximum number of miles reached in a Texas landfall when the Saffir-Simpson category is smaller than 3.0?", "context": "CREATE TABLE table_15416002_1 (r_miles_ INTEGER, landfall VARCHAR, saffir_simpson_category VARCHAR)"}, {"answer": "SELECT r_miles_ FROM table_15416002_1 WHERE chi = \"9.9\"", "question": "What are the miles when the Carvill Hurricane Index (CHI) is equal to 9.9?", "context": "CREATE TABLE table_15416002_1 (r_miles_ VARCHAR, chi VARCHAR)"}, {"answer": "SELECT saffir_simpson_category FROM table_15416002_1 WHERE name = \"Bonnie\"", "question": "What is the Saffir-Simpson category for the hurricane named Bonnie?", "context": "CREATE TABLE table_15416002_1 (saffir_simpson_category VARCHAR, name VARCHAR)"}, {"answer": "SELECT common_name FROM table_15417439_1 WHERE accession_number = \"XP_852505.1\"", "question": "What kind of animal corresponds to the accession number xp_852505.1?", "context": "CREATE TABLE table_15417439_1 (common_name VARCHAR, accession_number VARCHAR)"}, {"answer": "SELECT similarity FROM table_15417439_1 WHERE genus_species = \"Sus scrofa\"", "question": "How similar is the genus/species sus scrofa? ", "context": "CREATE TABLE table_15417439_1 (similarity VARCHAR, genus_species VARCHAR)"}, {"answer": "SELECT identity FROM table_15417439_1 WHERE genus_species = \"Arabidopsis thaliana\"", "question": "What identities do the genus/species arabidopsis thaliana have? ", "context": "CREATE TABLE table_15417439_1 (identity VARCHAR, genus_species VARCHAR)"}, {"answer": "SELECT common_name FROM table_15417439_1 WHERE genus_species = \"Rattus norvegicus\"", "question": "What's the animals name when the genus/species is rattus norvegicus? ", "context": "CREATE TABLE table_15417439_1 (common_name VARCHAR, genus_species VARCHAR)"}, {"answer": "SELECT length FROM table_15417439_1 WHERE genus_species = \"Arabidopsis thaliana\"", "question": "For the genus/species arabidopsis thaliana, what are the lengths? ", "context": "CREATE TABLE table_15417439_1 (length VARCHAR, genus_species VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_15430813_1 WHERE no_in_season = 17", "question": "How many original air dates were there for episode 17?", "context": "CREATE TABLE table_15430813_1 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT institution FROM table_15438337_1 WHERE country = \"London, United Kingdom\"", "question": "Which company was based in London, United Kingdom?", "context": "CREATE TABLE table_15438337_1 (institution VARCHAR, country VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_15431959_1 WHERE written_by = \"Peter DeLuise\"", "question": "What was the original air date of Stargate SG-1 written by Peter Deluise?", "context": "CREATE TABLE table_15431959_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_15431959_1 WHERE directed_by = \"Peter DeLuise\"", "question": "How many seasons did Peter Deluise direct Stargate SG-1?", "context": "CREATE TABLE table_15431959_1 (no_in_season INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT fifth_district FROM table_15442974_1 WHERE third_district = \"William Womer\"", "question": "Name the fifth district for william womer", "context": "CREATE TABLE table_15442974_1 (fifth_district VARCHAR, third_district VARCHAR)"}, {"answer": "SELECT third_district FROM table_15442974_1 WHERE fifth_district = \"Christine Young\"", "question": "Name the third district for christine young", "context": "CREATE TABLE table_15442974_1 (third_district VARCHAR, fifth_district VARCHAR)"}, {"answer": "SELECT fourth_district FROM table_15442974_1 WHERE second_district = \"Joan Runnels\"", "question": "Name the fourth district for joan runnels", "context": "CREATE TABLE table_15442974_1 (fourth_district VARCHAR, second_district VARCHAR)"}, {"answer": "SELECT fourth_district FROM table_15442974_1 WHERE first_district = \"Beverly Bodem\"", "question": "Name the fourth district for beverly bodem", "context": "CREATE TABLE table_15442974_1 (fourth_district VARCHAR, first_district VARCHAR)"}, {"answer": "SELECT COUNT(fifth_district) FROM table_15442974_1 WHERE third_district = \"Richard Houskamp\"", "question": "Name the number for fifth district for richard houskamp", "context": "CREATE TABLE table_15442974_1 (fifth_district VARCHAR, third_district VARCHAR)"}, {"answer": "SELECT fifth_district FROM table_15442974_1 WHERE fourth_district = \"Steve Rudoni\"", "question": "Name the fifth district for steve rudoni", "context": "CREATE TABLE table_15442974_1 (fifth_district VARCHAR, fourth_district VARCHAR)"}, {"answer": "SELECT locale FROM table_1543845_63 WHERE stolen_ends = 12 AND shot_pct = \"77%\"", "question": "What was the location when the stolen ends is 12 and shot pct is 77%?", "context": "CREATE TABLE table_1543845_63 (locale VARCHAR, stolen_ends VARCHAR, shot_pct VARCHAR)"}, {"answer": "SELECT stolen_ends FROM table_1543845_63 WHERE locale = Sweden", "question": "How many stolen ends were there when the locale was Sweden?", "context": "CREATE TABLE table_1543845_63 (stolen_ends VARCHAR, locale VARCHAR, Sweden VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_15463188_17 WHERE season = \"2012\" AND acquisition_via = \"Trade\"", "question": "What was the school/club team whose season was in 2012 and were acquired via trade? ", "context": "CREATE TABLE table_15463188_17 (school_club_team VARCHAR, season VARCHAR, acquisition_via VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_15463188_17 WHERE name = \"Mark Sanford\"", "question": "Which school/club team has a player named Mark Sanford? ", "context": "CREATE TABLE table_15463188_17 (school_club_team VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_15463188_17 WHERE school_club_team = \"Manuel Luis Quezon\"", "question": "How many school/club teams have a player named Manuel Luis Quezon? ", "context": "CREATE TABLE table_15463188_17 (number VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_15463188_17 WHERE school_club_team = \"Washington\"", "question": "How many players are listed for the school/club team Washington? ", "context": "CREATE TABLE table_15463188_17 (name VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_15463188_17 WHERE season = \"2009\"", "question": "How many players with a position are listed for the 2009 season? ", "context": "CREATE TABLE table_15463188_17 (position VARCHAR, season VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_15463188_1 WHERE position = \"Guard\"", "question": "Name the school/club for guard", "context": "CREATE TABLE table_15463188_1 (school_club_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_15463188_1 WHERE name = \"judy-ann ramirez\"", "question": "Name the position for judy-ann ramirez", "context": "CREATE TABLE table_15463188_1 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_15467476_3 WHERE points_difference = \"-99\"", "question": "What is the losing bonus for the team with a point difference of -99?", "context": "CREATE TABLE table_15467476_3 (losing_bonus VARCHAR, points_difference VARCHAR)"}, {"answer": "SELECT played FROM table_15467476_3 WHERE points_for = \"277\"", "question": "How many games played for teams with 277 points?", "context": "CREATE TABLE table_15467476_3 (played VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT won FROM table_15467476_3 WHERE tries_against = \"49\"", "question": "How many games won for teams with 49 tries against?", "context": "CREATE TABLE table_15467476_3 (won VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT COUNT(points_difference) FROM table_15467476_3 WHERE tries_against = \"62\"", "question": "How many teams have 62 tries against?", "context": "CREATE TABLE table_15467476_3 (points_difference VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT tries_for FROM table_15467476_3 WHERE club = \"Cambrian Welfare RFC\"", "question": "How many tries for, for club cambrian welfare rfc?", "context": "CREATE TABLE table_15467476_3 (tries_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(points_difference) FROM table_15467476_3 WHERE tries_for = \"21\"", "question": "How many teams have 21 tries for?", "context": "CREATE TABLE table_15467476_3 (points_difference VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT COUNT(chassis) FROM table_15491596_1 WHERE no = 34", "question": "How many chassis used number 34?", "context": "CREATE TABLE table_15491596_1 (chassis VARCHAR, no VARCHAR)"}, {"answer": "SELECT constructor FROM table_15491596_1 WHERE no = 22", "question": "Who was the constructor of car 22?", "context": "CREATE TABLE table_15491596_1 (constructor VARCHAR, no VARCHAR)"}, {"answer": "SELECT COUNT(engine) FROM table_15491596_1 WHERE no = 48", "question": "How many cars used number 48?", "context": "CREATE TABLE table_15491596_1 (engine VARCHAR, no VARCHAR)"}, {"answer": "SELECT driver FROM table_15491596_1 WHERE no = 44", "question": "Who drove car 44?", "context": "CREATE TABLE table_15491596_1 (driver VARCHAR, no VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_1547951_3 WHERE outcome = \"Runner-up\" AND championship = \"US Open\"", "question": "Name the total number of years where runner-up and championship is us open", "context": "CREATE TABLE table_1547951_3 (year VARCHAR, outcome VARCHAR, championship VARCHAR)"}, {"answer": "SELECT surface FROM table_1547951_3 WHERE outcome = \"Runner-up\" AND championship = \"US Open\"", "question": "Name the surfaace where outcome is runner-up and championship is us open", "context": "CREATE TABLE table_1547951_3 (surface VARCHAR, outcome VARCHAR, championship VARCHAR)"}, {"answer": "SELECT partner FROM table_1547951_3 WHERE opponents = \"Mark Woodforde Martina Navratilova\"", "question": "Name the partner for mark woodforde martina navratilova", "context": "CREATE TABLE table_1547951_3 (partner VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT score FROM table_1547951_3 WHERE opponents = \"Rick Leach Zina Garrison\"", "question": "Name the score for rick leach zina garrison", "context": "CREATE TABLE table_1547951_3 (score VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_15532342_2 WHERE state = \"Arizona\"", "question": "Name the swimsuit for arizona", "context": "CREATE TABLE table_15532342_2 (swimsuit VARCHAR, state VARCHAR)"}, {"answer": "SELECT driver FROM table_15530244_5 WHERE race_2 = \"7\"", "question": "Name the driver for race 2 7", "context": "CREATE TABLE table_15530244_5 (driver VARCHAR, race_2 VARCHAR)"}, {"answer": "SELECT COUNT(qualifying) FROM table_15530244_5 WHERE race_3 = \"3\"", "question": "Name the total number of qualifiying for race 3 being 3", "context": "CREATE TABLE table_15530244_5 (qualifying VARCHAR, race_3 VARCHAR)"}, {"answer": "SELECT driver FROM table_15530244_5 WHERE race_2 = \"2\"", "question": "Name the driver for race 2 2 ", "context": "CREATE TABLE table_15530244_5 (driver VARCHAR, race_2 VARCHAR)"}, {"answer": "SELECT race_1 FROM table_15530244_5 WHERE race_3 = \"8\"", "question": "Name the race 1 when race 3 is 8", "context": "CREATE TABLE table_15530244_5 (race_1 VARCHAR, race_3 VARCHAR)"}, {"answer": "SELECT race_2 FROM table_15530244_5 WHERE driver = \"James Winslow\"", "question": "Name the race 2 for james winslow", "context": "CREATE TABLE table_15530244_5 (race_2 VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(pos) FROM table_15530244_5 WHERE race_1 = \"2\"", "question": "Name the total number of positions for race 1 being 2", "context": "CREATE TABLE table_15530244_5 (pos VARCHAR, race_1 VARCHAR)"}, {"answer": "SELECT report FROM table_15511178_3 WHERE pole_position = \"Carl Skerlong\" AND winning_team = \"Newman Wachs Racing\"", "question": "Did the race get reported where the winning team was Newman Wachs racing and the pole belonged to Carl Skerlong", "context": "CREATE TABLE table_15511178_3 (report VARCHAR, pole_position VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT report FROM table_15511178_3 WHERE rd = 8", "question": "Did the round 8 race get reported", "context": "CREATE TABLE table_15511178_3 (report VARCHAR, rd VARCHAR)"}, {"answer": "SELECT race FROM table_15511178_3 WHERE winning_team = \"Mathiasen Motorsports\" AND pole_position = \"Jonathan Bomarito\"", "question": "Which race was the winning team mathiasen motorsports and the pole belonged to jonathan bomarito", "context": "CREATE TABLE table_15511178_3 (race VARCHAR, winning_team VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT COUNT(winning_driver) FROM table_15511178_3 WHERE rd = 8", "question": "how many winners were in round 8", "context": "CREATE TABLE table_15511178_3 (winning_driver VARCHAR, rd VARCHAR)"}, {"answer": "SELECT channel_tv___dt__ FROM table_1553485_1 WHERE station = \"KPIX\"", "question": "What channel tv (dt) plays the KPIX station?", "context": "CREATE TABLE table_1553485_1 (channel_tv___dt__ VARCHAR, station VARCHAR)"}, {"answer": "SELECT city_of_license__market FROM table_1553485_1 WHERE channel_tv___dt__ = \"3 (26)\"", "question": "Which city of license/market has 3 (26) as their channel tv (dt)?", "context": "CREATE TABLE table_1553485_1 (city_of_license__market VARCHAR, channel_tv___dt__ VARCHAR)"}, {"answer": "SELECT channel_tv___dt__ FROM table_1553485_1 WHERE city_of_license__market = \"San Francisco - Oakland - San Jose\"", "question": "Which channel tv (dt) plays in San Francisco - Oakland - San Jose?", "context": "CREATE TABLE table_1553485_1 (channel_tv___dt__ VARCHAR, city_of_license__market VARCHAR)"}, {"answer": "SELECT COUNT(years_owned) FROM table_1553485_1 WHERE station = \"KPIX\"", "question": "How many years has station KPIX been owned?", "context": "CREATE TABLE table_1553485_1 (years_owned VARCHAR, station VARCHAR)"}, {"answer": "SELECT current_affiliation FROM table_1553485_1 WHERE city_of_license__market = \"San Francisco - Oakland - San Jose\"", "question": "Who currently affiliates in San Francisco - Oakland - San Jose?", "context": "CREATE TABLE table_1553485_1 (current_affiliation VARCHAR, city_of_license__market VARCHAR)"}, {"answer": "SELECT condition FROM table_1555308_1 WHERE bleeding_time = \"Prolonged\" AND prothrombin_time = \"Unaffected\"", "question": "In which condition(s) is bleeding time prolonged and prothrombin time unaffected?", "context": "CREATE TABLE table_1555308_1 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)"}, {"answer": "SELECT COUNT(prothrombin_time) FROM table_1555308_1 WHERE platelet_count = \"Decreased or unaffected\"", "question": "How many entries for prothrombin time are there where platelet count is \"decreased or unaffected\"?", "context": "CREATE TABLE table_1555308_1 (prothrombin_time VARCHAR, platelet_count VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_1555308_1 WHERE platelet_count = \"Decreased\" AND prothrombin_time = \"Unaffected\"", "question": "How is the bleeding time wherein platelet count is decreased and prothrombin time is unaffected?", "context": "CREATE TABLE table_1555308_1 (bleeding_time VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_1555308_1 WHERE prothrombin_time = \"Unaffected\" AND platelet_count = \"Unaffected\"", "question": "What are all the possible bleeding time results where prothrombin time and platelet count are both unaffected?", "context": "CREATE TABLE table_1555308_1 (bleeding_time VARCHAR, prothrombin_time VARCHAR, platelet_count VARCHAR)"}, {"answer": "SELECT percentage_of_land_area FROM table_15555661_2 WHERE percentage_protected = \"7.96\"", "question": "What is the percentage of land area in the ecozone that the percentage protected is 7.96?", "context": "CREATE TABLE table_15555661_2 (percentage_of_land_area VARCHAR, percentage_protected VARCHAR)"}, {"answer": "SELECT percentage_of_total_area FROM table_15555661_2 WHERE percentage_of_land_area = \"2.2\"", "question": "What is the percentage of total area in the ecozone that the percentage of land area is 2.2?", "context": "CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, percentage_of_land_area VARCHAR)"}, {"answer": "SELECT percentage_of_total_area FROM table_15555661_2 WHERE percentage_protected = \"8.06\"", "question": "What is the  percentage of total area in the ecozone that the percentage protected is 8.06?", "context": "CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, percentage_protected VARCHAR)"}, {"answer": "SELECT percentage_of_land_area FROM table_15555661_2 WHERE percentage_protected = \"15.28\"", "question": "What is the  percentage of land area in the ecozone that the percentage protected is 15.28?", "context": "CREATE TABLE table_15555661_2 (percentage_of_land_area VARCHAR, percentage_protected VARCHAR)"}, {"answer": "SELECT COUNT(area__km\u00b2_) FROM table_15555661_2 WHERE ecozone = \"Boreal Shield\"", "question": "How large is the Boreal Shield in km2?", "context": "CREATE TABLE table_15555661_2 (area__km\u00b2_ VARCHAR, ecozone VARCHAR)"}, {"answer": "SELECT percentage_of_total_area FROM table_15555661_2 WHERE area__km\u00b2_ = 1782252", "question": "What is the percentage of total area in the ecozone that the area is 1782252 km2?", "context": "CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT platelet_count FROM table_1557752_1 WHERE condition = \"Hemophilia\"", "question": "What is the condition of the platelet counts in hemophilia?", "context": "CREATE TABLE table_1557752_1 (platelet_count VARCHAR, condition VARCHAR)"}, {"answer": "SELECT prothrombin_time FROM table_1557752_1 WHERE condition = \"Von Willebrand disease\"", "question": "What is the prothrombin time in Von willebrand disease?", "context": "CREATE TABLE table_1557752_1 (prothrombin_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT prothrombin_time FROM table_1557752_1 WHERE partial_thromboplastin_time = \"Prolonged\" AND bleeding_time = \"Prolonged\"", "question": "If the partial thromboplastin and bleeding time is prolonged, what is the prothrombin time?", "context": "CREATE TABLE table_1557752_1 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_1557752_1 WHERE condition = \"Bernard-Soulier syndrome\"", "question": "What is the bleeding time in Bernard-soulier syndrome?", "context": "CREATE TABLE table_1557752_1 (bleeding_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT ring_name FROM table_1557974_1 WHERE current_rank = \"f0 J\u016bry\u014d 3 West\"", "question": "Which ring names are currently ranked f0 j\u016bry\u014d 3 west?", "context": "CREATE TABLE table_1557974_1 (ring_name VARCHAR, current_rank VARCHAR)"}, {"answer": "SELECT COUNT(career_and_other_notes) FROM table_1557974_1 WHERE birthplace = \"Nara\"", "question": "How many wrestlers were born in nara, and have a completed 'career and other notes' section?", "context": "CREATE TABLE table_1557974_1 (career_and_other_notes VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT debut FROM table_1557974_1 WHERE birthplace = \"Nara\"", "question": "What are the debut year for wrestlers born in Nara?", "context": "CREATE TABLE table_1557974_1 (debut VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT birthplace FROM table_1557974_1 WHERE debut = \"2002-7\"", "question": "Where were the wrestlers born who debuted in 2002-7?", "context": "CREATE TABLE table_1557974_1 (birthplace VARCHAR, debut VARCHAR)"}, {"answer": "SELECT career_and_other_notes FROM table_1557974_1 WHERE stable = \"Oguruma\"", "question": "What are the career and other notes for wrestlers whose stable is oguruma?", "context": "CREATE TABLE table_1557974_1 (career_and_other_notes VARCHAR, stable VARCHAR)"}, {"answer": "SELECT kinship FROM table_15568886_14 WHERE proto_malayo_polynesian = \"*t-ina\"", "question": "Name the kinship for *t-ina", "context": "CREATE TABLE table_15568886_14 (kinship VARCHAR, proto_malayo_polynesian VARCHAR)"}, {"answer": "SELECT COUNT(proto_austronesian) FROM table_15568886_14 WHERE proto_oceanic = \"*natu\"", "question": "Name the number of proto austronesian for *natu", "context": "CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, proto_oceanic VARCHAR)"}, {"answer": "SELECT proto_austronesian FROM table_15568886_14 WHERE kinship = \"father\"", "question": "Name the ptor-austronesian for father", "context": "CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, kinship VARCHAR)"}, {"answer": "SELECT proto_oceanic FROM table_15568886_14 WHERE proto_polynesian = \"*fafine\"", "question": "Name the proto oceanic for *fafine", "context": "CREATE TABLE table_15568886_14 (proto_oceanic VARCHAR, proto_polynesian VARCHAR)"}, {"answer": "SELECT proto_austronesian FROM table_15568886_14 WHERE proto_oceanic = \"*pine, *papine\"", "question": "Name the proto-austrronesian for *pine, *papine", "context": "CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, proto_oceanic VARCHAR)"}, {"answer": "SELECT written_by FROM table_15584067_4 WHERE no_in_series = 47", "question": "Name who wrote number 47", "context": "CREATE TABLE table_15584067_4 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(mass__kg_) FROM table_1558077_2", "question": "What is the largest mass(kg)?", "context": "CREATE TABLE table_1558077_2 (mass__kg_ INTEGER)"}, {"answer": "SELECT college FROM table_15582870_1 WHERE choice = 143", "question": "Which college did draft pick #143 attend?", "context": "CREATE TABLE table_15582870_1 (college VARCHAR, choice VARCHAR)"}, {"answer": "SELECT weight FROM table_15582870_1 WHERE college = \"Arkansas\"", "question": "How heavy were the players who attended Arkansas?", "context": "CREATE TABLE table_15582870_1 (weight VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_15582870_1 WHERE weight = 207", "question": "Which college did the player weighing 207 pounds attend?", "context": "CREATE TABLE table_15582870_1 (college VARCHAR, weight VARCHAR)"}, {"answer": "SELECT written_by FROM table_15584067_7 WHERE us_viewers__million_ = \"1.81\"", "question": "Name who wrote the episode when the viewers was 1.81", "context": "CREATE TABLE table_15584067_7 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_15584067_7 WHERE no_in_series = \"114\"", "question": "Name who directed the 114 episode in the series", "context": "CREATE TABLE table_15584067_7 (directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_15584067_7 WHERE no_in_series = \"102\"", "question": "Name the total number of air dates for 102 episode", "context": "CREATE TABLE table_15584067_7 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_15584067_7 WHERE no_in_season = \"11\"", "question": "Name who wrote the 11 number in the season", "context": "CREATE TABLE table_15584067_7 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT award_name FROM table_15584199_3 WHERE team_name = \"BLACK OCEAN CURRENT\"", "question": "Name the award name for black ocean current", "context": "CREATE TABLE table_15584199_3 (award_name VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT position FROM table_15592941_1 WHERE college = \"Florida State\"", "question": "What position(s) do players from florida state play?", "context": "CREATE TABLE table_15592941_1 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT weight FROM table_15592941_1 WHERE player_name = \"Geno Hayes\"", "question": "How much does geno hayes weigh?", "context": "CREATE TABLE table_15592941_1 (weight VARCHAR, player_name VARCHAR)"}, {"answer": "SELECT college FROM table_15592941_1 WHERE player_name = \"Jeremy Zuttah\"", "question": "What college did jeremy zuttah attend?", "context": "CREATE TABLE table_15592941_1 (college VARCHAR, player_name VARCHAR)"}, {"answer": "SELECT MAX(pa) FROM table_15597975_2 WHERE stolen_ends = 5", "question": "When the stolen ends equal 5 whats the amount of pa?", "context": "CREATE TABLE table_15597975_2 (pa INTEGER, stolen_ends VARCHAR)"}, {"answer": "SELECT position_in_2013 FROM table_1560673_1 WHERE first_season = 2014", "question": "What position is the player whose first year is 2014", "context": "CREATE TABLE table_1560673_1 (position_in_2013 VARCHAR, first_season VARCHAR)"}, {"answer": "SELECT position_in_2013 FROM table_1560673_1 WHERE number_of_seasons_in_second_tier = \"29\"", "question": "What was the players position in 2013 who had 29 seasons in the second tier", "context": "CREATE TABLE table_1560673_1 (position_in_2013 VARCHAR, number_of_seasons_in_second_tier VARCHAR)"}, {"answer": "SELECT first_season FROM table_1560673_1 WHERE club = \"Syrianska FC\"", "question": "What was the first season for Syrianska FC", "context": "CREATE TABLE table_1560673_1 (first_season VARCHAR, club VARCHAR)"}, {"answer": "SELECT MIN(first_season) FROM table_1560673_1", "question": "What was the earliest season recorded for any team", "context": "CREATE TABLE table_1560673_1 (first_season INTEGER)"}, {"answer": "SELECT MAX(points_for) FROM table_15607589_2 WHERE date = \"October 11\"", "question": "Name the number of points for october 11", "context": "CREATE TABLE table_15607589_2 (points_for INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_15607589_2 WHERE week = 9", "question": "Name the date for week 9", "context": "CREATE TABLE table_15607589_2 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT points_against FROM table_15607589_2 WHERE date = \"November 7\"", "question": "Name the points against for november 7", "context": "CREATE TABLE table_15607589_2 (points_against VARCHAR, date VARCHAR)"}, {"answer": "SELECT points_against FROM table_15607589_2 WHERE date = \"November 14\"", "question": "Name the points against for november 14", "context": "CREATE TABLE table_15607589_2 (points_against VARCHAR, date VARCHAR)"}, {"answer": "SELECT first_downs FROM table_15607589_2 WHERE points_against = 0", "question": "Name the first downs for points against being 0", "context": "CREATE TABLE table_15607589_2 (first_downs VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT record FROM table_15607589_2 WHERE opponent = \"New York Giants\"", "question": "Name the record for new york giants", "context": "CREATE TABLE table_15607589_2 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(purse___us) AS $__ FROM table_15618241_1 WHERE year = 2011", "question": "Name the least purse for 2011", "context": "CREATE TABLE table_15618241_1 (purse___us INTEGER, year VARCHAR)"}, {"answer": "SELECT COUNT(wheel_arrangement) FROM table_15608800_2 WHERE class = \"D14\"", "question": "Name the number of wheel arrangement when class is d14", "context": "CREATE TABLE table_15608800_2 (wheel_arrangement VARCHAR, class VARCHAR)"}, {"answer": "SELECT MAX(number_at_pyewipe) FROM table_15608800_2", "question": "Name the most number of pyewipe", "context": "CREATE TABLE table_15608800_2 (number_at_pyewipe INTEGER)"}, {"answer": "SELECT number_at_march FROM table_15608800_2 WHERE class = \"J66\"", "question": "Name the number at march when class is j66", "context": "CREATE TABLE table_15608800_2 (number_at_march VARCHAR, class VARCHAR)"}, {"answer": "SELECT railway FROM table_15608800_2 WHERE class = \"J19\"", "question": "Name the railway when class is j19", "context": "CREATE TABLE table_15608800_2 (railway VARCHAR, class VARCHAR)"}, {"answer": "SELECT railway FROM table_15608800_2 WHERE class = \"J15\"", "question": "Name the railway when class is j15", "context": "CREATE TABLE table_15608800_2 (railway VARCHAR, class VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_15621965_1 WHERE school_club_team = \"Penn State\"", "question": "Name the years in orlando for penn state", "context": "CREATE TABLE table_15621965_1 (years_in_orlando VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_15621965_1 WHERE no = 9", "question": "Name the nationality of number 9", "context": "CREATE TABLE table_15621965_1 (nationality VARCHAR, no VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_15621965_10 WHERE position = \"Forward\"", "question": "Name the years in orlando for forward", "context": "CREATE TABLE table_15621965_10 (years_in_orlando VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_15621965_10 WHERE school_club_team = \"Arizona\"", "question": "Name the number of players from arizona", "context": "CREATE TABLE table_15621965_10 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_15621965_10 WHERE school_club_team = \"Concord HS\"", "question": "Name the years in orlando that the player from concord hs was in", "context": "CREATE TABLE table_15621965_10 (years_in_orlando VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_15621965_14 WHERE school_club_team = \"Louisiana State\"", "question": "Name the number of players for louisiana state", "context": "CREATE TABLE table_15621965_14 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_15621965_14 WHERE player = \"Kevin Ollie\"", "question": "Name the school/club team for kevin ollie", "context": "CREATE TABLE table_15621965_14 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_15621965_14 WHERE player = \"Jawann Oldham\"", "question": "Name the school/club team for jawann oldham", "context": "CREATE TABLE table_15621965_14 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_15621965_14 WHERE school_club_team = \"Seattle\"", "question": "Name the player for seattle", "context": "CREATE TABLE table_15621965_14 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_15621965_16 WHERE school_club_team = \"Clemson\"", "question": "What is the nationality of th player who's school is Clemson?", "context": "CREATE TABLE table_15621965_16 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_15621965_16 WHERE school_club_team = \"Clemson\"", "question": "What years did the player who's school is Clemson spend in Orlando?", "context": "CREATE TABLE table_15621965_16 (years_in_orlando VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_15621965_16 WHERE school_club_team = \"Delta State\"", "question": "What is the number of the player who attended Delta State?", "context": "CREATE TABLE table_15621965_16 (no INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_15621965_2 WHERE position = \"Forward-Center\"", "question": "Who plays the position of forward-center?", "context": "CREATE TABLE table_15621965_2 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_15621965_3 WHERE player = \"Chris Corchiani\"", "question": "During what years did Chris Corchiani play in Orlando?", "context": "CREATE TABLE table_15621965_3 (years_in_orlando VARCHAR, player VARCHAR)"}, {"answer": "SELECT date_of_issue FROM table_15635768_1 WHERE face_value = \"42\u00a2\"", "question": "When the face value is 42\u00a2, what was the issue's date?", "context": "CREATE TABLE table_15635768_1 (date_of_issue VARCHAR, face_value VARCHAR)"}, {"answer": "SELECT place_of_issue FROM table_15635768_1 WHERE ecosystem = \"Kelp Forest\"", "question": "Which location has the ecosystem of kelp forest?", "context": "CREATE TABLE table_15635768_1 (place_of_issue VARCHAR, ecosystem VARCHAR)"}, {"answer": "SELECT COUNT(no_stamps_in_sheet) FROM table_15635768_1 WHERE face_value = \"37\u00a2\" AND printer = \"Banknote Corporation of America\"", "question": "How many stamps have a face value of 37\u00a2 and were printed in the banknote corporation of america?", "context": "CREATE TABLE table_15635768_1 (no_stamps_in_sheet VARCHAR, face_value VARCHAR, printer VARCHAR)"}, {"answer": "SELECT printer FROM table_15635768_1 WHERE place_of_issue = \"Estes Park, Colorado\"", "question": "Who was the printer of Estes Park, Colorado?", "context": "CREATE TABLE table_15635768_1 (printer VARCHAR, place_of_issue VARCHAR)"}, {"answer": "SELECT printer FROM table_15635768_1 WHERE face_value = \"39\u00a2\"", "question": "The stamp was 39\u00a2, who was the printer?", "context": "CREATE TABLE table_15635768_1 (printer VARCHAR, face_value VARCHAR)"}, {"answer": "SELECT attendance FROM table_15647838_3 WHERE location = \"El Paso, TX\"", "question": "What are values of attendance for the El Paso, TX location?", "context": "CREATE TABLE table_15647838_3 (attendance VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_15647838_3 WHERE attendance = \"74,111\"", "question": "How many values for result correspond to attendance of 74,111?", "context": "CREATE TABLE table_15647838_3 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_15647838_3 WHERE stadium = \"Sun Life stadium\"", "question": "How many locations have the Sun Life Stadium?", "context": "CREATE TABLE table_15647838_3 (location VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_15647838_3 WHERE bowl_game = \"1993 Independence Bowl\"", "question": "What is the highest season for a bowl game of the 1993 Independence Bowl?", "context": "CREATE TABLE table_15647838_3 (season INTEGER, bowl_game VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_15647838_3 WHERE location = \"Atlanta, GA\" AND opponent = \"Georgia Bulldogs\"", "question": "What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent?", "context": "CREATE TABLE table_15647838_3 (_number INTEGER, location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_15647838_3 WHERE bowl_game = \"1986 Peach Bowl\"", "question": "How many values for attendance correspond to the 1986 Peach Bowl?", "context": "CREATE TABLE table_15647838_3 (attendance VARCHAR, bowl_game VARCHAR)"}, {"answer": "SELECT interview_subject FROM table_1566848_7 WHERE date = \"2-86\"", "question": "Who was the interview subject in the 2-86 issue?", "context": "CREATE TABLE table_1566848_7 (interview_subject VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(pictorials) FROM table_1566848_7 WHERE centerfold_model = \"Rebekka Armstrong\"", "question": "Who were all the pictorials when the centerfold model was Rebekka Armstrong?", "context": "CREATE TABLE table_1566848_7 (pictorials VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT pictorials FROM table_1566848_7 WHERE centerfold_model = \"Ava Fabian\"", "question": "Who were the pictorials when the centerfold model was Ava Fabian?", "context": "CREATE TABLE table_1566848_7 (pictorials VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT COUNT(interview_subject) FROM table_1566848_7 WHERE centerfold_model = \"Sherry Arnett\"", "question": "Who was the interview subject when the centerfold model was Sherry Arnett?", "context": "CREATE TABLE table_1566848_7 (interview_subject VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT cover_model FROM table_1566848_7 WHERE date = \"7-86\"", "question": "Who was the cover model in the 7-86 issue?", "context": "CREATE TABLE table_1566848_7 (cover_model VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_1566848_7 WHERE pictorials = \"Female s disk jockey\"", "question": "What is the date of the issue where the pictorials is of Female s disk jockey?", "context": "CREATE TABLE table_1566848_7 (date VARCHAR, pictorials VARCHAR)"}, {"answer": "SELECT cover_model FROM table_1566852_3 WHERE centerfold_model = \"Shallan Meiers\"", "question": "WHO WAS THE COVER MODEL OF PLAYBOY WHERE THE CENTERFOLD MODEL WAS SHALLAN MEIERS?", "context": "CREATE TABLE table_1566852_3 (cover_model VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT interview_subject FROM table_1566852_3 WHERE centerfold_model = \"Nicole Narain\"", "question": "IN THE ISSUE WHERE NICOLE NARAIN WAS THE CENTERFOLD MODEL, WHO WAS THE INTERVIEW SUBJECT?", "context": "CREATE TABLE table_1566852_3 (interview_subject VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_1566852_3 WHERE interview_subject = \"Harrison Ford\"", "question": "IN HOW MANY ISSUES WAS HARRISON FORD THE INTERVIEW SUBJECT?", "context": "CREATE TABLE table_1566852_3 (date VARCHAR, interview_subject VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_1566852_4 WHERE interview_subject = \"Mike Piazza\"", "question": "Who was featured in 20 questions when the subject of the interview was Mike Piazza?", "context": "CREATE TABLE table_1566852_4 (interview_subject VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_1566852_4 WHERE date = \"4-03\"", "question": "Who was featured in 20 questions on 4-03?", "context": "CREATE TABLE table_1566852_4 (date VARCHAR)"}, {"answer": "SELECT date FROM table_1566852_4 WHERE centerfold_model = \"Luci Victoria\"", "question": "On what deate was the centerfold featured Luci Victoria?", "context": "CREATE TABLE table_1566852_4 (date VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT COUNT(centerfold_model) FROM table_1566852_4 WHERE cover_model = \"Torrie Wilson\"", "question": "How many centerfold models were there when the cover model was Torrie Wilson?", "context": "CREATE TABLE table_1566852_4 (centerfold_model VARCHAR, cover_model VARCHAR)"}, {"answer": "SELECT pictorials FROM table_1566850_9 WHERE date = \"11-98\"", "question": "What is the name of the pictorial in the 11-98 issue?", "context": "CREATE TABLE table_1566850_9 (pictorials VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(centerfold_model) FROM table_1566850_9 WHERE date = \"9-98\"", "question": "How many centerfolds were in the 9-98 issue?", "context": "CREATE TABLE table_1566850_9 (centerfold_model VARCHAR, date VARCHAR)"}, {"answer": "SELECT interview_subject FROM table_1566850_9 WHERE date = \"8-98\"", "question": "Who was interviewed in the 8-98 issue?", "context": "CREATE TABLE table_1566850_9 (interview_subject VARCHAR, date VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_1566850_9 WHERE centerfold_model = \"Marliece Andrada\"", "question": "Who was asked 20 questions in the issue where the centerfold is Marliece Andrada?", "context": "CREATE TABLE table_1566850_9 (centerfold_model VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_1566850_9 WHERE cover_model = \"Linda Brava\"", "question": "Who was asked 20 questions in the issue where the cover model is Linda Brava?", "context": "CREATE TABLE table_1566850_9 (cover_model VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_1566852_6 WHERE centerfold_model = \"Jillian Grace\"", "question": "How many times was Jillian Grace the centerfold model?", "context": "CREATE TABLE table_1566852_6 (date VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT interview_subject FROM table_1566852_6 WHERE cover_model = \"Bai Ling\"", "question": "What were the interview subjects on those occasions where Bai Ling was the cover model?", "context": "CREATE TABLE table_1566852_6 (interview_subject VARCHAR, cover_model VARCHAR)"}, {"answer": "SELECT COUNT(interview_subject) FROM table_1566852_6 WHERE centerfold_model = \"Tamara Witmer\"", "question": "How many total interview subjects wererthere when the centerfold model was Tamara Witmer?", "context": "CREATE TABLE table_1566852_6 (interview_subject VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_1566852_6 WHERE centerfold_model = \"Jillian Grace\"", "question": "What's the subject of 20 questions in those issues where Jillian Grace is the centerfold model?", "context": "CREATE TABLE table_1566852_6 (centerfold_model VARCHAR)"}, {"answer": "SELECT cover_model FROM table_1566852_6 WHERE date = \"4-05\"", "question": "Who were the cover model(s) on the 4-05 issue?", "context": "CREATE TABLE table_1566852_6 (cover_model VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_1566852_5 WHERE interview_subject = \"Oliver Stone\"", "question": "Name the date for oliver stone", "context": "CREATE TABLE table_1566852_5 (date VARCHAR, interview_subject VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_1566852_5 WHERE interview_subject = \"Derek Jeter\"", "question": "Name the 20 questions for derek jeter", "context": "CREATE TABLE table_1566852_5 (interview_subject VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_1566852_5 WHERE date = \"8-04\"", "question": "Name the 20 questions for 8-04", "context": "CREATE TABLE table_1566852_5 (date VARCHAR)"}, {"answer": "SELECT open_cup FROM table_15672920_1 WHERE year = 2010", "question": "Name the open cup for 2010", "context": "CREATE TABLE table_15672920_1 (open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_1566852_7 WHERE interview_subject = \"Shepard Smith\"", "question": "IN WHAT ISSUE OF PLAYBOY WAS SHEPARD SMITH INTERVIEWED?", "context": "CREATE TABLE table_1566852_7 (date VARCHAR, interview_subject VARCHAR)"}, {"answer": "SELECT COUNT(cover_model) FROM table_1566852_7 WHERE centerfold_model = \"Stephanie Larimore\"", "question": "HOW MANY MODELS WERE ON THE COVER OF THE ISSUE WHERE THE CENTERFOLD WAS STEPHANIE LARIMORE?", "context": "CREATE TABLE table_1566852_7 (cover_model VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT interview_subject FROM table_1566852_7 WHERE cover_model = \"Kara Monaco\"", "question": "IN THE ISSUE WITH KARA MONACO ON THE COVER, WHO WAS THE INTERVIEW SUBJECT?", "context": "CREATE TABLE table_1566852_7 (interview_subject VARCHAR, cover_model VARCHAR)"}, {"answer": "SELECT COUNT(20 AS _questions) FROM table_1566852_7 WHERE interview_subject = \"Ludacris\"", "question": "HOW MANY TIMES WAS LUDACRIS THE INTERVIEW SUBJECT FOR THE 20 QUESTIONS COLUMN?", "context": "CREATE TABLE table_1566852_7 (interview_subject VARCHAR)"}, {"answer": "SELECT arabic_capital_name FROM table_15694696_1 WHERE english_capital_name = \"Manama\"", "question": "what is the arabic capital name wher the english capital name is manama?", "context": "CREATE TABLE table_15694696_1 (arabic_capital_name VARCHAR, english_capital_name VARCHAR)"}, {"answer": "SELECT arabic_capital_name FROM table_15694696_1 WHERE english_capital_name = \"Beirut\"", "question": "what is the arabic capital name where the english capital name is beirut?", "context": "CREATE TABLE table_15694696_1 (arabic_capital_name VARCHAR, english_capital_name VARCHAR)"}, {"answer": "SELECT rank__night_ FROM table_15681686_4 WHERE rating = \"4.4\"", "question": "what is the rank for the rating 4.4?", "context": "CREATE TABLE table_15681686_4 (rank__night_ VARCHAR, rating VARCHAR)"}, {"answer": "SELECT rating / SHARE(18 - 49) FROM table_15681686_4 WHERE rank__week_ = \"48\"", "question": "what is the rating where the rank is 48?", "context": "CREATE TABLE table_15681686_4 (rating VARCHAR, rank__week_ VARCHAR)"}, {"answer": "SELECT COUNT(rank__timeslot_) FROM table_15681686_4 WHERE rank__week_ = \"58\"", "question": "what is the total rank where the rank is 58?", "context": "CREATE TABLE table_15681686_4 (rank__timeslot_ VARCHAR, rank__week_ VARCHAR)"}, {"answer": "SELECT rank__week_ FROM table_15681686_4 WHERE viewers__millions_ = \"6.45\"", "question": "what rank has viewers at 6.45?", "context": "CREATE TABLE table_15681686_4 (rank__week_ VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(rank__timeslot_) FROM table_15681686_4 WHERE viewers__millions_ = \"9.38\"", "question": "what is the total number of rank where viewers is 9.38?", "context": "CREATE TABLE table_15681686_4 (rank__timeslot_ VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT destination FROM table_1569516_1 WHERE service_pattern = \"Sydenham then fast to Norwood Junction\"", "question": "Where is the service pattern sydenham then fast to norwood junction?", "context": "CREATE TABLE table_1569516_1 (destination VARCHAR, service_pattern VARCHAR)"}, {"answer": "SELECT COUNT(platform) FROM table_1569516_1 WHERE operator = \"Southern\" AND service_pattern = \"All stations via Clapham Junction\"", "question": "How many platforms have a southern opertator and the pattern is all stations via clapham junction?", "context": "CREATE TABLE table_1569516_1 (platform VARCHAR, operator VARCHAR, service_pattern VARCHAR)"}, {"answer": "SELECT frequency__per_hour_ FROM table_1569516_1 WHERE destination = \"London Bridge\"", "question": "When London Bridge is the destination, what is the frequency?", "context": "CREATE TABLE table_1569516_1 (frequency__per_hour_ VARCHAR, destination VARCHAR)"}, {"answer": "SELECT COUNT(line) FROM table_1569516_1 WHERE destination = \"London Bridge\"", "question": "When London Bridge is the destination, how many lines are there?", "context": "CREATE TABLE table_1569516_1 (line VARCHAR, destination VARCHAR)"}, {"answer": "SELECT playoffs FROM table_1570003_2 WHERE year = 1998", "question": "What was the playoff advancement during the year 1998?", "context": "CREATE TABLE table_1570003_2 (playoffs VARCHAR, year VARCHAR)"}, {"answer": "SELECT open_cup FROM table_1570003_2 WHERE year = 2003", "question": "During 2003 what was open cup qualifying status?", "context": "CREATE TABLE table_1570003_2 (open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_1570003_2 WHERE open_cup = \"2nd Round\"", "question": "What is the most recent year where team made it to 2nd round of the Open Cup?", "context": "CREATE TABLE table_1570003_2 (year INTEGER, open_cup VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_1569625_1 WHERE no = 15", "question": "Name the margin of victory when the number is 15", "context": "CREATE TABLE table_1569625_1 (margin_of_victory VARCHAR, no VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_1569625_1 WHERE runner_s__up = \"Howard Clark\"", "question": "Name the number of numbers for howard clark", "context": "CREATE TABLE table_1569625_1 (no VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_1569625_1 WHERE tournament = \"Algarve Open de Portugal\"", "question": "Name the margin of victory when tournament is algarve open de portugal", "context": "CREATE TABLE table_1569625_1 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_1569625_1 WHERE margin_of_victory = \"3 strokes\" AND winning_score = 71 - 66 - 70 - 67 = 274", "question": "Name the tournament when margin of victory is 3 strokes and winning score is 71-66-70-67=274", "context": "CREATE TABLE table_1569625_1 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT MAX(runs_conceded) FROM table_15700367_4", "question": "Name the most runs conceded", "context": "CREATE TABLE table_15700367_4 (runs_conceded INTEGER)"}, {"answer": "SELECT wickets FROM table_15700367_4 WHERE overs_bowled = \"9\"", "question": "Name the wickets when overs bowled is 9", "context": "CREATE TABLE table_15700367_4 (wickets VARCHAR, overs_bowled VARCHAR)"}, {"answer": "SELECT MAX(maidens) FROM table_15700367_4 WHERE er = \"5.11\"", "question": "Name the most maidens when e.r. 5.11", "context": "CREATE TABLE table_15700367_4 (maidens INTEGER, er VARCHAR)"}, {"answer": "SELECT MIN(runs_conceded) FROM table_15700367_4 WHERE name = \"Brett Lee\"", "question": "Name the least runs conceded for brett lee", "context": "CREATE TABLE table_15700367_4 (runs_conceded INTEGER, name VARCHAR)"}, {"answer": "SELECT runs_conceded FROM table_15700367_6 WHERE er = \"4.96\"", "question": "How many runs conceded when the earned runs was 4.96?", "context": "CREATE TABLE table_15700367_6 (runs_conceded VARCHAR, er VARCHAR)"}, {"answer": "SELECT COUNT(runs_conceded) FROM table_15700367_6 WHERE name = \"Sanath Jayasuriya\"", "question": "How many players named sanath jayasuriya?", "context": "CREATE TABLE table_15700367_6 (runs_conceded VARCHAR, name VARCHAR)"}, {"answer": "SELECT runs_conceded FROM table_15700367_6 WHERE name = \"Chaminda Vaas\"", "question": "How many runs conceded for chaminda vaas?", "context": "CREATE TABLE table_15700367_6 (runs_conceded VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(overs_bowled) FROM table_15700367_6 WHERE name = \"Muttiah Muralitharan\"", "question": "How many overs bowled for muttiah muralitharan?", "context": "CREATE TABLE table_15700367_6 (overs_bowled VARCHAR, name VARCHAR)"}, {"answer": "SELECT er FROM table_15700367_6 WHERE runs_conceded = 368", "question": "What was the ER average for the player that conceded 368 runs?", "context": "CREATE TABLE table_15700367_6 (er VARCHAR, runs_conceded VARCHAR)"}, {"answer": "SELECT MIN(wickets) FROM table_15700367_6 WHERE name = \"Farveez Maharoof\"", "question": "What is the lowest number of wickets for farveez maharoof?", "context": "CREATE TABLE table_15700367_6 (wickets INTEGER, name VARCHAR)"}, {"answer": "SELECT airdate FROM table_15739098_2 WHERE story = \"Hugh Leonard\"", "question": "What is the airdate when the story is listed as hugh leonard?", "context": "CREATE TABLE table_15739098_2 (airdate VARCHAR, story VARCHAR)"}, {"answer": "SELECT kansas_state_vs FROM table_15740666_6 WHERE last_meeting = \"11/26/1988\"", "question": "who won the kansas state game on 11/26/1988", "context": "CREATE TABLE table_15740666_6 (kansas_state_vs VARCHAR, last_meeting VARCHAR)"}, {"answer": "SELECT COUNT(games_played) FROM table_15740666_6 WHERE kansas_state_vs = \"DePaul\"", "question": "how many games has kansas state and depaul played against each other", "context": "CREATE TABLE table_15740666_6 (games_played VARCHAR, kansas_state_vs VARCHAR)"}, {"answer": "SELECT current_streak FROM table_15740666_6 WHERE last_meeting = \"12/5/1987\"", "question": "if they played last on 12/5/1987 what is their record", "context": "CREATE TABLE table_15740666_6 (current_streak VARCHAR, last_meeting VARCHAR)"}, {"answer": "SELECT high_points FROM table_15780049_8 WHERE date = \"March 7\"", "question": "Name the high points for march 7", "context": "CREATE TABLE table_15780049_8 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_15780049_8 WHERE team = \"Sacramento\"", "question": "Name the date for sacramento", "context": "CREATE TABLE table_15780049_8 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_15780049_8 WHERE date = \"March 17\"", "question": "Name the high rebounds for march 17", "context": "CREATE TABLE table_15780049_8 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_15780049_8 WHERE team = \"Philadelphia\"", "question": "Name the location attendance for philadelphia", "context": "CREATE TABLE table_15780049_8 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_15780718_8 WHERE game = 59", "question": "Who scored the most assists in game 59?", "context": "CREATE TABLE table_15780718_8 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_15780718_8 WHERE team = \"Boston\"", "question": "What was the record against Boston?", "context": "CREATE TABLE table_15780718_8 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(poll_winner) FROM table_15781170_2 WHERE original_air_date = \"March 19, 2008\"", "question": "Name the poll winner for march 19, 2008", "context": "CREATE TABLE table_15781170_2 (poll_winner VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT _number FROM table_15781170_2 WHERE poll_winner = \"YouTube\"", "question": "Name the # for youtube", "context": "CREATE TABLE table_15781170_2 (_number VARCHAR, poll_winner VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_15781170_3 WHERE poll_winner = \"Scientology\"", "question": "What are the original air dates when scientology isthe poll winner?", "context": "CREATE TABLE table_15781170_3 (original_air_date VARCHAR, poll_winner VARCHAR)"}, {"answer": "SELECT root_of_all_evil FROM table_15781170_3 WHERE poll_winner = \"Bloggers\"", "question": "When bloggers was the poll winner, who was the root of all evil?", "context": "CREATE TABLE table_15781170_3 (root_of_all_evil VARCHAR, poll_winner VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_15781170_3 WHERE poll_winner = \"Drinking Games\"", "question": "How many times did drinking games win the poll?", "context": "CREATE TABLE table_15781170_3 (_number VARCHAR, poll_winner VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_1579922_1 WHERE run_time = \"24:30\"", "question": "What date was an episode with a run time of 24:30 broadcasted?", "context": "CREATE TABLE table_1579922_1 (broadcast_date VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT episode FROM table_1579922_1 WHERE run_time = \"24:25\"", "question": "What episode had a run time of 24:25?", "context": "CREATE TABLE table_1579922_1 (episode VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT original_artist FROM table_15796072_1 WHERE week__number = \"Top 16 (8 Women)\"", "question": "Who was the original artist for week number Top 16 (8 women)?", "context": "CREATE TABLE table_15796072_1 (original_artist VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT order__number FROM table_15796072_1 WHERE original_artist = \"The Doors\"", "question": "What was the order number where the original artist is The Doors?", "context": "CREATE TABLE table_15796072_1 (order__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT theme FROM table_15796072_1 WHERE original_artist = \"The Beatles\"", "question": "What was the theme when the original artist was The Beatles?", "context": "CREATE TABLE table_15796072_1 (theme VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT original_artist FROM table_15796072_1 WHERE theme = \"1980s\"", "question": "Who was the original artist when the theme was 1980s?", "context": "CREATE TABLE table_15796072_1 (original_artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT original_artist FROM table_15796072_1 WHERE order__number = \"9\"", "question": "Who was the original artist when the order number is 9?", "context": "CREATE TABLE table_15796072_1 (original_artist VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT episodes FROM table_15823956_1 WHERE region_1 = \"N/A\"", "question": "Which episode was N/A in region 1", "context": "CREATE TABLE table_15823956_1 (episodes VARCHAR, region_1 VARCHAR)"}, {"answer": "SELECT series AS premiere FROM table_15823956_1 WHERE series = \"Pilot\"", "question": "When was series premiere on the pilot episode", "context": "CREATE TABLE table_15823956_1 (series VARCHAR)"}, {"answer": "SELECT region_1 FROM table_15823956_1 WHERE series = \"4\"", "question": "What is the region 1 date for series 4", "context": "CREATE TABLE table_15823956_1 (region_1 VARCHAR, series VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_15824796_3 WHERE original_air_date = \"December 5, 1953\"", "question": "What season began on december 5, 1953?", "context": "CREATE TABLE table_15824796_3 (season__number INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_15824796_3 WHERE original_air_date = \"February 27, 1954\"", "question": "What is the title of the first episode of the season that begin on february 27, 1954?", "context": "CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_15824796_3 WHERE original_air_date = \"December 12, 1953\"", "question": "What is the title of the episode that aired on december 12, 1953?", "context": "CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_15824796_3 WHERE original_air_date = \"February 13, 1954\"", "question": "How many episodes aired on february 13, 1954?", "context": "CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_15817998_5 WHERE pick__number = 36", "question": "What are all the CFL teams where the pick number is 36?", "context": "CREATE TABLE table_15817998_5 (cfl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT position FROM table_15817998_5 WHERE college = \"Alberta\"", "question": "What are the positions in the college of Alberta?", "context": "CREATE TABLE table_15817998_5 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(cfl_team) FROM table_15817998_5 WHERE college = \"Wilfrid Laurier\"", "question": "What is the total number of CFL teams in the college Wilfrid Laurier", "context": "CREATE TABLE table_15817998_5 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_15817998_5 WHERE player = \"Jeffrey Simmer\"", "question": "What is the college that Jeffrey Simmer plays for?", "context": "CREATE TABLE table_15817998_5 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(matches) FROM table_15829930_5 WHERE year = 2008", "question": "Name the least matches for year 2008", "context": "CREATE TABLE table_15829930_5 (matches INTEGER, year VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_15829930_5 WHERE success_rate = \"68.75%\"", "question": "Name the maximum wins for 68.75%", "context": "CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR)"}, {"answer": "SELECT summary FROM table_15829930_5 WHERE success_rate = \"68.75%\"", "question": "Name the summary for the success rate for 68.75%", "context": "CREATE TABLE table_15829930_5 (summary VARCHAR, success_rate VARCHAR)"}, {"answer": "SELECT MIN(tied) FROM table_15829930_5", "question": "Name the least tied", "context": "CREATE TABLE table_15829930_5 (tied INTEGER)"}, {"answer": "SELECT MIN(wins) FROM table_15829930_5 WHERE success_rate = \"56.25%\"", "question": "Name the least wins of 56.25%", "context": "CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_15827397_1 WHERE name = \"City of Birmingham\"", "question": "How many locomotives have a name of City of Birmingham", "context": "CREATE TABLE table_15827397_1 (no VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_15827397_1 WHERE livery = \"Highland Railway green\"", "question": "How many locomotives have a livery that is highland railway green", "context": "CREATE TABLE table_15827397_1 (name VARCHAR, livery VARCHAR)"}, {"answer": "SELECT locomotive_type FROM table_15827397_1 WHERE status = \"Static display\"", "question": "Which locomotive type has a status in static display", "context": "CREATE TABLE table_15827397_1 (locomotive_type VARCHAR, status VARCHAR)"}, {"answer": "SELECT MAX(points_against) FROM table_15847691_2 WHERE attendance = 47678", "question": "What is the maximum number of points against when the attendance was 47678?", "context": "CREATE TABLE table_15847691_2 (points_against INTEGER, attendance VARCHAR)"}, {"answer": "SELECT COUNT(first_downs) FROM table_15847691_2 WHERE date = \"October 23\"", "question": "What was the total number of first down on October 23?", "context": "CREATE TABLE table_15847691_2 (first_downs VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_15838081_3 WHERE writer_s_ = \"Giula Sandler\"", "question": "Name the most series number for giula sandler", "context": "CREATE TABLE table_15838081_3 (series__number INTEGER, writer_s_ VARCHAR)"}, {"answer": "SELECT COUNT(season__number) FROM table_15838081_3 WHERE writer_s_ = \"Jeff Truman\"", "question": "Name the number of season number for jeff truman", "context": "CREATE TABLE table_15838081_3 (season__number VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_15851155_1 WHERE school = \"Montana Tech of the University of Montana\"", "question": "Name the minimum enrollment for montana tech of the university of montana", "context": "CREATE TABLE table_15851155_1 (enrollment INTEGER, school VARCHAR)"}, {"answer": "SELECT location FROM table_15851155_1 WHERE control = \"Private\" AND founded = 1870", "question": "Name the location when control is private and founded is 1870", "context": "CREATE TABLE table_15851155_1 (location VARCHAR, control VARCHAR, founded VARCHAR)"}, {"answer": "SELECT directed_by FROM table_15861776_1 WHERE tv_broadcast = \"S03E19\"", "question": "Who directed the TV broadcast s03e19?", "context": "CREATE TABLE table_15861776_1 (directed_by VARCHAR, tv_broadcast VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_15861776_1 WHERE tv_broadcast = \"S03E20\"", "question": "What episode in the series is TV broadcast s03e20?", "context": "CREATE TABLE table_15861776_1 (no_in_series VARCHAR, tv_broadcast VARCHAR)"}, {"answer": "SELECT score FROM table_15869204_6 WHERE game = 31", "question": "WHAT WAS THE SCORE FOR GAME 31?", "context": "CREATE TABLE table_15869204_6 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_15869204_6 WHERE date = \"January 9\"", "question": "WHO DID THE RAPTORS PLAY ON JANUARY 9?", "context": "CREATE TABLE table_15869204_6 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_1585609_2 WHERE date_of_designation = \"2002-04-01\"", "question": "Name thenames for 2002-04-01", "context": "CREATE TABLE table_1585609_2 (name VARCHAR, date_of_designation VARCHAR)"}, {"answer": "SELECT date_of_designation FROM table_1585609_2 WHERE name = \"Kurume\"", "question": "Name all the date of designations for kurume", "context": "CREATE TABLE table_1585609_2 (date_of_designation VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(japanese) FROM table_1585609_2 WHERE name = \"Amagasaki\"", "question": "Name the total number of japanese for amagasaki", "context": "CREATE TABLE table_1585609_2 (japanese VARCHAR, name VARCHAR)"}, {"answer": "SELECT region FROM table_1585609_2 WHERE prefecture = \"Iwate\"", "question": "Name the region for iwate", "context": "CREATE TABLE table_1585609_2 (region VARCHAR, prefecture VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_15869204_9 WHERE team = \"Chicago\"", "question": "Who scored the most rebounds in the game against Chicago?", "context": "CREATE TABLE table_15869204_9 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_15872814_5 WHERE high_points = \"Jalen Rose (32)\"", "question": "What were the dates of the games where Jalen Rose (32) had the highest points?", "context": "CREATE TABLE table_15872814_5 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_15872814_5 WHERE team = \"New Orleans\"", "question": "What is the location and total attendance for games played against New Orleans?", "context": "CREATE TABLE table_15872814_5 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_15869204_7 WHERE date = \"February 18\"", "question": "How many teams are listed for February 18?", "context": "CREATE TABLE table_15869204_7 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_15869204_7 WHERE date = \"February 24\"", "question": "What were the high rebounds on February 24?", "context": "CREATE TABLE table_15869204_7 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_15869204_7 WHERE game = 51", "question": "What was the score in game 51?", "context": "CREATE TABLE table_15869204_7 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_15869204_7 WHERE team = \"San Antonio\"", "question": "What was the score when they played against San Antonio?", "context": "CREATE TABLE table_15869204_7 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_15869204_8 WHERE game = 68", "question": "Who was the high point scorer in game number 68?", "context": "CREATE TABLE table_15869204_8 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_15873014_3 WHERE team = \"New Jersey\"", "question": "How many players had the most assists against New Jersey?", "context": "CREATE TABLE table_15873014_3 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_15873014_3", "question": "How many games were played in the season?", "context": "CREATE TABLE table_15873014_3 (game INTEGER)"}, {"answer": "SELECT team FROM table_15872814_7 WHERE high_assists = \"Rafer Alston (5)\"", "question": "What team had high assists Rafer Alston (5)?", "context": "CREATE TABLE table_15872814_7 (team VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_assists FROM table_15873014_5 WHERE date = \"January 3\"", "question": "Who has the most assists on January 3?", "context": "CREATE TABLE table_15873014_5 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT rector FROM table_15873547_1 WHERE mascot = \"Phoxes\"", "question": "Who is the rector of the residence hall who's mascot is the phoxes?", "context": "CREATE TABLE table_15873547_1 (rector VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT mascot FROM table_15873547_1 WHERE colors = \"Green and Navy\"", "question": "What is the mascot with the colors green and navy?", "context": "CREATE TABLE table_15873547_1 (mascot VARCHAR, colors VARCHAR)"}, {"answer": "SELECT residence_hall FROM table_15873547_1 WHERE mascot = \"Vermin\"", "question": "What residence hall has the vermin mascot?", "context": "CREATE TABLE table_15873547_1 (residence_hall VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT colors FROM table_15873547_1 WHERE residence_hall = \"Howard Hall\"", "question": "What are the colors of Howard Hall?", "context": "CREATE TABLE table_15873547_1 (colors VARCHAR, residence_hall VARCHAR)"}, {"answer": "SELECT content FROM table_15887683_1 WHERE television_service = \"LA7\"", "question": "What is the content of la7 television service?", "context": "CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT content FROM table_15887683_1 WHERE television_service = \"Rai 1\"", "question": "What is the content of the rai 1 television service?", "context": "CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT package_option FROM table_15887683_1 WHERE television_service = \"Rai 3\"", "question": "What are the package/options when the TV service is rai 3?", "context": "CREATE TABLE table_15887683_1 (package_option VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT hdtv FROM table_15887683_1 WHERE television_service = \"Italia 1\"", "question": "What high definition television options are available for Italia 1?", "context": "CREATE TABLE table_15887683_1 (hdtv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT COUNT(hdtv) FROM table_15887683_16 WHERE television_service = \"Elite Shopping TV\"", "question": "How many values of HDTV apply when television service is elite shopping tv?", "context": "CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_15887683_16 WHERE content = \"arte\"", "question": "How many countries have content of arte?", "context": "CREATE TABLE table_15887683_16 (country VARCHAR, content VARCHAR)"}, {"answer": "SELECT COUNT(hdtv) FROM table_15887683_16 WHERE television_service = \"La Sorgente Sat 1\"", "question": "How many values of HDTV correspond to television service of la sorgente sat 1?", "context": "CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT hdtv FROM table_15887683_16 WHERE n\u00b0 = 862", "question": "What values of HDTV correspond to  n\u00b0 of 862?", "context": "CREATE TABLE table_15887683_16 (hdtv VARCHAR, n\u00b0 VARCHAR)"}, {"answer": "SELECT content FROM table_15887683_10 WHERE package_option = \"Sky Famiglia\" AND language = \"Italian\" AND dar = \"16:9\" AND television_service = \"MTV Hits\"", "question": "Name the content for sky famiglia for italian and dar 16:9 for mtv hits", "context": "CREATE TABLE table_15887683_10 (content VARCHAR, television_service VARCHAR, dar VARCHAR, package_option VARCHAR, language VARCHAR)"}, {"answer": "SELECT MIN(n) AS \u00b0 FROM table_15887683_10 WHERE television_service = \"myDeejay\"", "question": "Name the least number for mydeejay", "context": "CREATE TABLE table_15887683_10 (n INTEGER, television_service VARCHAR)"}, {"answer": "SELECT COUNT(package_option) FROM table_15887683_10 WHERE television_service = \"Music Box Italia\"", "question": "Name the number of package options for music box italia", "context": "CREATE TABLE table_15887683_10 (package_option VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT hdtv FROM table_15887683_10 WHERE package_option = \"Sky Famiglia\" AND dar = \"16:9\" AND television_service = \"myDeejay\"", "question": "Name the hdtv for sky famiglia and dar 16:9 for mydeejay", "context": "CREATE TABLE table_15887683_10 (hdtv VARCHAR, television_service VARCHAR, package_option VARCHAR, dar VARCHAR)"}, {"answer": "SELECT dar FROM table_15887683_10 WHERE television_service = \"MTV Rocks\"", "question": "Name the dar for mtv rocks", "context": "CREATE TABLE table_15887683_10 (dar VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT ppv FROM table_15887683_10 WHERE package_option = \"Sky Famiglia\" AND dar = \"16:9\" AND television_service = \"MTV Dance\"", "question": "Name the ppv for sky famiglia and dar 16:9 for mtv dance", "context": "CREATE TABLE table_15887683_10 (ppv VARCHAR, television_service VARCHAR, package_option VARCHAR, dar VARCHAR)"}, {"answer": "SELECT dar FROM table_15887683_17 WHERE television_service = \"Telenord\"", "question": "Name the dar for telenord", "context": "CREATE TABLE table_15887683_17 (dar VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT COUNT(hdtv) FROM table_15887683_17 WHERE television_service = \"Eurotic TV\"", "question": "Name the total number of hdtv for eurotic tv", "context": "CREATE TABLE table_15887683_17 (hdtv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT dar FROM table_15887683_17 WHERE n\u00b0 = 912", "question": "Name the dar for 912", "context": "CREATE TABLE table_15887683_17 (dar VARCHAR, n\u00b0 VARCHAR)"}, {"answer": "SELECT COUNT(content) FROM table_15887683_19 WHERE television_service = \"R-LIGHT\"", "question": "How many times was something listed under content when the television was R-light?", "context": "CREATE TABLE table_15887683_19 (content VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT ppv FROM table_15887683_19 WHERE television_service = \"SCT\"", "question": "Was there PPV when the service was SCT?", "context": "CREATE TABLE table_15887683_19 (ppv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT hdtv FROM table_15887683_19 WHERE television_service = \"PRIV\u00c8\"", "question": "Was there HDTV when the service was Priv\u00e8?", "context": "CREATE TABLE table_15887683_19 (hdtv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT language FROM table_15887683_19 WHERE television_service = \"ContoTV 5\"", "question": "In what laguage was Contotv 5?", "context": "CREATE TABLE table_15887683_19 (language VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT content FROM table_15887683_3 WHERE package_option = \"Tutti i pacchetti + Sky HD\"", "question": "What's the content of the Tutti i Pacchetti + Sky HD package?", "context": "CREATE TABLE table_15887683_3 (content VARCHAR, package_option VARCHAR)"}, {"answer": "SELECT package_option FROM table_15887683_3 WHERE television_service = \"FOX Sports HD\"", "question": "What package offers Fox Sports HD?", "context": "CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT package_option FROM table_15887683_3 WHERE television_service = \"Cartello promozionale Sky HD\"", "question": "What packages offer the Cartello Promozionale Sky HD service?", "context": "CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT COUNT(content) FROM table_15887683_3 WHERE package_option = \"qualsiasi tranne Sky HD\"", "question": "How many different contents are offered by the Qualsiasi Tranne Sky HD package?", "context": "CREATE TABLE table_15887683_3 (content VARCHAR, package_option VARCHAR)"}, {"answer": "SELECT content FROM table_15887683_3 WHERE n\u00b0 = 204", "question": "What's the content offered by the package number 204?", "context": "CREATE TABLE table_15887683_3 (content VARCHAR, n\u00b0 VARCHAR)"}, {"answer": "SELECT COUNT(ppv) FROM table_15887683_5 WHERE television_service = \"Sky Cinema 1\"", "question": "How many PPV values are listed for when television service Sky Cinema 1?", "context": "CREATE TABLE table_15887683_5 (ppv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT dar FROM table_15887683_5 WHERE n\u00b0 = \"336\" AND language = \"Italian\"", "question": "What DAR is available for n. 336 in Italian?", "context": "CREATE TABLE table_15887683_5 (dar VARCHAR, n\u00b0 VARCHAR, language VARCHAR)"}, {"answer": "SELECT n\u00b0 FROM table_15887683_5 WHERE package_option = \"Sky Cinema\" AND content = \"cinema\" AND television_service = \"Sky Cinema\" + 24", "question": "What are the values of n for cinema content provided by Sky Cinema +24 on its Sky Cinema package?", "context": "CREATE TABLE table_15887683_5 (n\u00b0 VARCHAR, television_service VARCHAR, package_option VARCHAR, content VARCHAR)"}, {"answer": "SELECT language FROM table_15887683_5 WHERE television_service = \"Sky Cinema Passion\" AND n\u00b0 = \"308\"", "question": "What language is Sky Cinema Passion television service n. 308?", "context": "CREATE TABLE table_15887683_5 (language VARCHAR, television_service VARCHAR, n\u00b0 VARCHAR)"}, {"answer": "SELECT package_option FROM table_15887683_5 WHERE content = \"cinema\" AND n\u00b0 = \"333\"", "question": "What package offers cinema content and is n. 333?", "context": "CREATE TABLE table_15887683_5 (package_option VARCHAR, content VARCHAR, n\u00b0 VARCHAR)"}, {"answer": "SELECT COUNT(dar) FROM table_15887683_9 WHERE television_service = \"Disney Channel\" AND n\u00b0 = 613", "question": "Name the total number of dar for disney channel and number is 613", "context": "CREATE TABLE table_15887683_9 (dar VARCHAR, television_service VARCHAR, n\u00b0 VARCHAR)"}, {"answer": "SELECT country FROM table_15887683_9 WHERE dar = \"16:9\" AND language = \"Italian English\" AND television_service = \"Disney XD +2\"", "question": "Name the country when dar is 16:9 for italian english for disney xd +2", "context": "CREATE TABLE table_15887683_9 (country VARCHAR, television_service VARCHAR, dar VARCHAR, language VARCHAR)"}, {"answer": "SELECT player FROM table_15893020_2 WHERE best_bowling = \"2/43\"", "question": "Who was the player with a bowling best of 2/43?", "context": "CREATE TABLE table_15893020_2 (player VARCHAR, best_bowling VARCHAR)"}, {"answer": "SELECT MAX(maidens) FROM table_15893020_2 WHERE best_bowling = \"1/13\"", "question": "What is the highest number of maidens when the bowling best was 1/13?", "context": "CREATE TABLE table_15893020_2 (maidens INTEGER, best_bowling VARCHAR)"}, {"answer": "SELECT overs FROM table_15893020_2 WHERE player = \"Oliver Hannon-Dalby\"", "question": "How many overs did Oliver Hannon-Dalby have?", "context": "CREATE TABLE table_15893020_2 (overs VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(5 AS w) FROM table_15893020_2 WHERE average = \"21.33\"", "question": "What is the highest number of 5w when there was a 21.33 average?", "context": "CREATE TABLE table_15893020_2 (average VARCHAR)"}, {"answer": "SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = \"2040(93%)\"", "question": "What are the countries in which the agricultural use  (m 3 /p/yr)(in %) is 2040(93%)?", "context": "CREATE TABLE table_15909409_2 (country VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_15909409_2 WHERE per_capita_withdrawal__m_3__p_yr_ = 372", "question": "How many countries had a per capita withdrawal (m 3 /p/yr) of 372?", "context": "CREATE TABLE table_15909409_2 (country VARCHAR, per_capita_withdrawal__m_3__p_yr_ VARCHAR)"}, {"answer": "SELECT COUNT(total_freshwater_withdrawal__km_3__yr_) FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = \"428(62%)\"", "question": "How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)?", "context": "CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)"}, {"answer": "SELECT total_freshwater_withdrawal__km_3__yr_ FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = \"1029(96%)\"", "question": "In Pakistan, what was the total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 1029(96%)?", "context": "CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)"}, {"answer": "SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = \"794(86%)\"", "question": "What was the country in which the agricultural use (m 3 /p/yr)(in %) was 794(86%)?", "context": "CREATE TABLE table_15909409_2 (country VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_15909409_2 WHERE total_freshwater_withdrawal__km_3__yr_ = \"169.39\"", "question": "In how many countries was the total freshwater withdrawal (km 3 /yr) 169.39?", "context": "CREATE TABLE table_15909409_2 (country VARCHAR, total_freshwater_withdrawal__km_3__yr_ VARCHAR)"}, {"answer": "SELECT date FROM table_1590652_4 WHERE winning_score = 67 - 67 - 63 = 197", "question": "Name the date of winning score being 67-67-63=197", "context": "CREATE TABLE table_1590652_4 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_1590652_4 WHERE tournament = \"WGC-Accenture Match Play Championship\"", "question": "Name the runners up for when tournament is wgc-accenture match play championship", "context": "CREATE TABLE table_1590652_4 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_1590652_4 WHERE date = \"30 May 2010\"", "question": "Name the total number when date is 30 may 2010", "context": "CREATE TABLE table_1590652_4 (no VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_1590652_4 WHERE date = \"10 Jul 2011\"", "question": "Name th margin of victory when date is 10 jul 2011", "context": "CREATE TABLE table_1590652_4 (margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_1590652_4 WHERE tournament = \"Madrid Masters\"", "question": "Name the most number when tournament is madrid masters", "context": "CREATE TABLE table_1590652_4 (no INTEGER, tournament VARCHAR)"}, {"answer": "SELECT MAX(episode_number) FROM table_1590967_2 WHERE air_date = \"6 January 2006\"", "question": "Name the most episode numbers of 6 january 2006", "context": "CREATE TABLE table_1590967_2 (episode_number INTEGER, air_date VARCHAR)"}, {"answer": "SELECT COUNT(validation) FROM table_15905399_1 WHERE iin_ranges = \"36\"", "question": "How many validations are listed for the iin range 36?", "context": "CREATE TABLE table_15905399_1 (validation VARCHAR, iin_ranges VARCHAR)"}, {"answer": "SELECT validation FROM table_15905399_1 WHERE iin_ranges = \"5610, 560221-560225\"", "question": "What is the validation for iin ranges  5610, 560221-560225?", "context": "CREATE TABLE table_15905399_1 (validation VARCHAR, iin_ranges VARCHAR)"}, {"answer": "SELECT length FROM table_15905399_1 WHERE iin_ranges = \"51-55\"", "question": "What is the length for iin range 51-55?", "context": "CREATE TABLE table_15905399_1 (length VARCHAR, iin_ranges VARCHAR)"}, {"answer": "SELECT active FROM table_15905399_1 WHERE iin_ranges = \"4\"", "question": "Is the iin range 4 active?", "context": "CREATE TABLE table_15905399_1 (active VARCHAR, iin_ranges VARCHAR)"}, {"answer": "SELECT COUNT(episode_number) FROM table_1590967_7 WHERE guest_host = \"Pamela Anderson\"", "question": "What episode did Pamela Anderson guest host.", "context": "CREATE TABLE table_1590967_7 (episode_number VARCHAR, guest_host VARCHAR)"}, {"answer": "SELECT musical_guest__song_performed_ FROM table_1590967_7 WHERE guest_host = \"Barbara Windsor\"", "question": "What song was performed when Barbara Windsor was the guest host?", "context": "CREATE TABLE table_1590967_7 (musical_guest__song_performed_ VARCHAR, guest_host VARCHAR)"}, {"answer": "SELECT weight__kg_ FROM table_15926991_1 WHERE jockey = \"D. Nikolic\"", "question": "What is the entry for weight in kilograms of jockey D. Nikolic?", "context": "CREATE TABLE table_15926991_1 (weight__kg_ VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT group FROM table_15926991_1 WHERE time = \"1:11.65\"", "question": "Which group had the time 1:11.65?", "context": "CREATE TABLE table_15926991_1 (group VARCHAR, time VARCHAR)"}, {"answer": "SELECT winner_2nd FROM table_15926991_1 WHERE time = \"1:35.98\"", "question": "Which horse won with a time of 1:35.98 and what was their position?", "context": "CREATE TABLE table_15926991_1 (winner_2nd VARCHAR, time VARCHAR)"}, {"answer": "SELECT engine_type FROM table_15944_5 WHERE scenario = \"Space shuttle vacuum\"", "question": "What engine type is used in a Space Shuttle Vacuum scenario?", "context": "CREATE TABLE table_15944_5 (engine_type VARCHAR, scenario VARCHAR)"}, {"answer": "SELECT COUNT(effective_exhaust_velocity__m_s_) FROM table_15944_5 WHERE scenario = \"Space shuttle vacuum\"", "question": "What is the effective exhaust velocity in a Space Shuttle Vacuum?", "context": "CREATE TABLE table_15944_5 (effective_exhaust_velocity__m_s_ VARCHAR, scenario VARCHAR)"}, {"answer": "SELECT MAX(specific_impulse__s_) FROM table_15944_5 WHERE effective_exhaust_velocity__m_s_ = 4423", "question": "What is the maximum specific impulse with a 4423 m/s effective exhaust velocity?", "context": "CREATE TABLE table_15944_5 (specific_impulse__s_ INTEGER, effective_exhaust_velocity__m_s_ VARCHAR)"}, {"answer": "SELECT sfc_in_g__kn\u00b7s_ FROM table_15944_5 WHERE specific_impulse__s_ = 453", "question": "What is the SFC when the specific impulse is 453?", "context": "CREATE TABLE table_15944_5 (sfc_in_g__kn\u00b7s_ VARCHAR, specific_impulse__s_ VARCHAR)"}, {"answer": "SELECT start_date__1st_night_ FROM table_159359_2 WHERE season = \"1966\"", "question": "When are start dates (1st night) for the season of 1966?", "context": "CREATE TABLE table_159359_2 (start_date__1st_night_ VARCHAR, season VARCHAR)"}, {"answer": "SELECT end_date__last_night_ FROM table_159359_2 WHERE season = \"1918\"", "question": "When are end dates (last night) for the season of 1918?", "context": "CREATE TABLE table_159359_2 (end_date__last_night_ VARCHAR, season VARCHAR)"}, {"answer": "SELECT harris FROM table_159614_2 WHERE party = \"Labour\"", "question": "What is the percentage of the Labour Party on the Harris Poll", "context": "CREATE TABLE table_159614_2 (harris VARCHAR, party VARCHAR)"}, {"answer": "SELECT opinion_research_centre__opc_ FROM table_159614_2 WHERE national_opinion_polls__nop_ = \"1.3%\"", "question": "On all other parties the National option polls are at 1.3% where as the opinion research pole is at what percentage? ", "context": "CREATE TABLE table_159614_2 (opinion_research_centre__opc_ VARCHAR, national_opinion_polls__nop_ VARCHAR)"}, {"answer": "SELECT del_pueblo FROM table_15977768_1 WHERE centennial = \"1988\"", "question": "Name the del pueblo for centennial 1988", "context": "CREATE TABLE table_15977768_1 (del_pueblo VARCHAR, centennial VARCHAR)"}, {"answer": "SELECT centennial FROM table_15977768_1 WHERE akimel_a_al_the_name_is_tohono_oodham_for_children_of_the_river = \"1992\"", "question": "Name the centennial for 1992 akimel", "context": "CREATE TABLE table_15977768_1 (centennial VARCHAR, akimel_a_al_the_name_is_tohono_oodham_for_children_of_the_river VARCHAR)"}, {"answer": "SELECT del_pueblo FROM table_15977768_1 WHERE centennial = \"Red/black\"", "question": "Name the del pueblo for red/black", "context": "CREATE TABLE table_15977768_1 (del_pueblo VARCHAR, centennial VARCHAR)"}, {"answer": "SELECT centennial FROM table_15977768_1 WHERE information = \"Location\"", "question": "Name the centennial for location", "context": "CREATE TABLE table_15977768_1 (centennial VARCHAR, information VARCHAR)"}, {"answer": "SELECT host FROM table_1597866_3 WHERE first_premiere = \"August 3, 2007\"", "question": "Name the host when first premiere is august 3, 2007", "context": "CREATE TABLE table_1597866_3 (host VARCHAR, first_premiere VARCHAR)"}, {"answer": "SELECT regular_judge FROM table_1597866_3 WHERE host = \"Anja Rubik\"", "question": "Name the regular judge when host is anja rubik", "context": "CREATE TABLE table_1597866_3 (regular_judge VARCHAR, host VARCHAR)"}, {"answer": "SELECT COUNT(regular_judge) FROM table_1597866_3 WHERE host = \"Bernie Chan\"", "question": "Name the number of regular judge when host is bernie chan", "context": "CREATE TABLE table_1597866_3 (regular_judge VARCHAR, host VARCHAR)"}, {"answer": "SELECT MAX(s_no) FROM table_1594772_2 WHERE margin = \"74 runs\"", "question": "Name the most number for 74 runs margins", "context": "CREATE TABLE table_1594772_2 (s_no INTEGER, margin VARCHAR)"}, {"answer": "SELECT COUNT(team__b_) FROM table_1594772_2 WHERE margin = \"35 runs\" AND winner = \"India\"", "question": "Name the number of team for 35 runs margin and india winner", "context": "CREATE TABLE table_1594772_2 (team__b_ VARCHAR, margin VARCHAR, winner VARCHAR)"}, {"answer": "SELECT team__a_ FROM table_1594772_2 WHERE match_date = \"Feb 27, 1996\"", "question": "Namethe team for feb 27, 1996", "context": "CREATE TABLE table_1594772_2 (team__a_ VARCHAR, match_date VARCHAR)"}, {"answer": "SELECT s_no FROM table_1594772_2 WHERE match_date = \"Feb 27, 1996\"", "question": "Name the numbers for date of feb 27, 1996", "context": "CREATE TABLE table_1594772_2 (s_no VARCHAR, match_date VARCHAR)"}, {"answer": "SELECT team__b_ FROM table_1594772_2 WHERE match_date = \"Oct 30, 1989\"", "question": "Name the team for oct 30, 1989", "context": "CREATE TABLE table_1594772_2 (team__b_ VARCHAR, match_date VARCHAR)"}, {"answer": "SELECT winner FROM table_1594772_2 WHERE match_date = \"Nov 5, 1987\"", "question": "Name the winner for date of nov 5, 1987", "context": "CREATE TABLE table_1594772_2 (winner VARCHAR, match_date VARCHAR)"}, {"answer": "SELECT COUNT(oilers_first_downs) FROM table_15984957_2 WHERE date = \"Sept. 17\"", "question": "On Sept. 17, how many first downs did the oilers have?", "context": "CREATE TABLE table_15984957_2 (oilers_first_downs VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_15984957_2 WHERE opponent = \"Los Angeles Rams\"", "question": "How many games were against the los angeles rams?", "context": "CREATE TABLE table_15984957_2 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT annual_change__percentage_of_gdp__2012_ FROM table_1598533_8 WHERE gdp__percentage_of_eu__2012_ = \"20.5%\"", "question": "What is the annual change of GDP with a 20.5% GDP of EU in 2012?", "context": "CREATE TABLE table_1598533_8 (annual_change__percentage_of_gdp__2012_ VARCHAR, gdp__percentage_of_eu__2012_ VARCHAR)"}, {"answer": "SELECT public_debt__percentage_of_gdp__2013_q1_ FROM table_1598533_8 WHERE gdp__percentage_of_eu__2012_ = \"4.7%\"", "question": "What is the public debt % of GDP in 2013 Q1 with a 4.7% GDP of EU in 2012?", "context": "CREATE TABLE table_1598533_8 (public_debt__percentage_of_gdp__2013_q1_ VARCHAR, gdp__percentage_of_eu__2012_ VARCHAR)"}, {"answer": "SELECT inflation__percentage_annual__2012_ FROM table_1598533_8 WHERE gdp_per_capita_in_ppp_us$__2012_ = 24505", "question": "What is the annual inflation % when GDP per capita in ppp US$ is 24505 in 2012?", "context": "CREATE TABLE table_1598533_8 (inflation__percentage_annual__2012_ VARCHAR, gdp_per_capita_in_ppp_us$__2012_ VARCHAR)"}, {"answer": "SELECT place FROM table_15988037_24 WHERE perfect_40s = 0 AND average = \"27.25\"", "question": "What are all the places where the number of perfect 40s is 0 and the average is 27.25?", "context": "CREATE TABLE table_15988037_24 (place VARCHAR, perfect_40s VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_15988037_24 WHERE average = \"28.5\"", "question": "What is the maximum total in which the average is 28.5?", "context": "CREATE TABLE table_15988037_24 (total INTEGER, average VARCHAR)"}, {"answer": "SELECT MIN(perfect_40s) FROM table_15988037_24", "question": "What is the minimum number of perfect 40s?", "context": "CREATE TABLE table_15988037_24 (perfect_40s INTEGER)"}, {"answer": "SELECT muzzle_velocity FROM table_16010376_1 WHERE cartridge = \".375 Remington Ultra Magnum\"", "question": "When using a .375 Remington Ultra Magnum, what is the muzzle velocity?", "context": "CREATE TABLE table_16010376_1 (muzzle_velocity VARCHAR, cartridge VARCHAR)"}, {"answer": "SELECT cartridge FROM table_16010376_1 WHERE source = \"Weatherby\"", "question": "What type of cartridge is used by a Weatherby?", "context": "CREATE TABLE table_16010376_1 (cartridge VARCHAR, source VARCHAR)"}, {"answer": "SELECT cartridge FROM table_16010376_1 WHERE source = \"Winchester\"", "question": "What type of cartridge is used by a Winchester?", "context": "CREATE TABLE table_16010376_1 (cartridge VARCHAR, source VARCHAR)"}, {"answer": "SELECT bullet_weight FROM table_16010376_1 WHERE source = \"Weatherby\"", "question": "What is the weight of the bullet used in a Weatherby?", "context": "CREATE TABLE table_16010376_1 (bullet_weight VARCHAR, source VARCHAR)"}, {"answer": "SELECT bullet_weight FROM table_16010376_1 WHERE source = \"Remington\"", "question": "What is the weight of the bullet used in a Remington?", "context": "CREATE TABLE table_16010376_1 (bullet_weight VARCHAR, source VARCHAR)"}, {"answer": "SELECT muzzle_energy FROM table_16010376_1 WHERE cartridge = \".375 Winchester\"", "question": "When using a .375 Winchester, what is the muzzle energy?", "context": "CREATE TABLE table_16010376_1 (muzzle_energy VARCHAR, cartridge VARCHAR)"}, {"answer": "SELECT headphone_model FROM table_1601027_1 WHERE us_msrp = \"$150\"", "question": "Which headphone models correspond to the US MSRP of $150?", "context": "CREATE TABLE table_1601027_1 (headphone_model VARCHAR, us_msrp VARCHAR)"}, {"answer": "SELECT termination FROM table_1601027_1 WHERE us_msrp = \"$49\"", "question": "Which terminations correspond to a US MSRP of $49?", "context": "CREATE TABLE table_1601027_1 (termination VARCHAR, us_msrp VARCHAR)"}, {"answer": "SELECT COUNT(headphone_class) FROM table_1601027_1 WHERE us_msrp = \"$150\"", "question": "How many headphone classes have a US MSRP of $150?", "context": "CREATE TABLE table_1601027_1 (headphone_class VARCHAR, us_msrp VARCHAR)"}, {"answer": "SELECT COUNT(earpads) FROM table_1601027_1 WHERE headphone_class = \"Prestige\" AND us_msrp = \"$79\"", "question": "How many values for earpads correspond to the headphone class Prestige and a US MSRP of $79?", "context": "CREATE TABLE table_1601027_1 (earpads VARCHAR, headphone_class VARCHAR, us_msrp VARCHAR)"}, {"answer": "SELECT headphone_model FROM table_1601027_1 WHERE driver_matched_db = \"0.1\" AND us_msrp = \"$49\"", "question": "Which headphone models have a driver-matched DB of 0.1 and a US MSRP of $49?", "context": "CREATE TABLE table_1601027_1 (headphone_model VARCHAR, driver_matched_db VARCHAR, us_msrp VARCHAR)"}, {"answer": "SELECT termination FROM table_1601027_1 WHERE headphone_model = \"SR80i\"", "question": "Which terminations correspond with headphone model SR80I?", "context": "CREATE TABLE table_1601027_1 (termination VARCHAR, headphone_model VARCHAR)"}, {"answer": "SELECT type FROM table_1602620_1 WHERE office = \"State Assemblyman\"", "question": "What type are State Assemblyman", "context": "CREATE TABLE table_1602620_1 (type VARCHAR, office VARCHAR)"}, {"answer": "SELECT type FROM table_1602620_1 WHERE term_began = \"December 8, 1980\"", "question": "What type had a beginning term of December 8, 1980", "context": "CREATE TABLE table_1602620_1 (type VARCHAR, term_began VARCHAR)"}, {"answer": "SELECT type FROM table_1602620_1 WHERE elected = 1980", "question": "What type had an election day in 1980", "context": "CREATE TABLE table_1602620_1 (type VARCHAR, elected VARCHAR)"}, {"answer": "SELECT term_ended FROM table_1602620_1 WHERE elected = 1990", "question": "What year did the term end for those elected in 1990", "context": "CREATE TABLE table_1602620_1 (term_ended VARCHAR, elected VARCHAR)"}, {"answer": "SELECT location FROM table_1602620_1 WHERE term_ended = \"December 2, 1976\"", "question": "What is the location for the office whose term ended December 2, 1976", "context": "CREATE TABLE table_1602620_1 (location VARCHAR, term_ended VARCHAR)"}, {"answer": "SELECT term_ended FROM table_1602620_1 WHERE elected = 1984", "question": "What year did the term end for the office elected in 1984", "context": "CREATE TABLE table_1602620_1 (term_ended VARCHAR, elected VARCHAR)"}, {"answer": "SELECT record FROM table_16028499_2 WHERE date = \"October 8, 1989\"", "question": "What was the record on October 8, 1989?", "context": "CREATE TABLE table_16028499_2 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_16028499_2 WHERE date = \"October 29, 1989\"", "question": "Where was the game site on October 29, 1989?", "context": "CREATE TABLE table_16028499_2 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_16028499_2 WHERE opponent = \"New Orleans Saints\"", "question": "What was the minimum attendance against the New Orleans Saints?", "context": "CREATE TABLE table_16028499_2 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_16028499_2 WHERE week = 2", "question": "What was the result of week 2?", "context": "CREATE TABLE table_16028499_2 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_16028499_2 WHERE opponent = \"New York Jets\"", "question": "What date did the team play the New York Jets?", "context": "CREATE TABLE table_16028499_2 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_16025095_1 WHERE date = \"January 24, 1987\"", "question": "What was the minimum crowd on January 24, 1987?", "context": "CREATE TABLE table_16025095_1 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_1601935_1 WHERE run_time = \"18:00\"", "question": "How many millions of viewers were there for the episode with a run time of 18:00?", "context": "CREATE TABLE table_1601935_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT archive FROM table_1601935_1 WHERE viewers__in_millions_ = \"6.6\"", "question": "What was the archive for episode with 6.6 million viewers?", "context": "CREATE TABLE table_1601935_1 (archive VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_16028459_2 WHERE bills_first_downs = 21", "question": "When is the latest game the bills had 21 first downs", "context": "CREATE TABLE table_16028459_2 (game INTEGER, bills_first_downs VARCHAR)"}, {"answer": "SELECT MIN(bills_first_downs) FROM table_16028459_2 WHERE opponents = 6", "question": "How many first downs did the bills have when their opponent had 6", "context": "CREATE TABLE table_16028459_2 (bills_first_downs INTEGER, opponents VARCHAR)"}, {"answer": "SELECT bills_points FROM table_16028459_2 WHERE opponents = 14", "question": "How many points did the bills score when their opponent had 14", "context": "CREATE TABLE table_16028459_2 (bills_points VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT MIN(opponents) FROM table_16028459_2 WHERE opponent = \"Baltimore Colts\"", "question": "What is the minimum number of points given up to the Baltimore Colts", "context": "CREATE TABLE table_16028459_2 (opponents INTEGER, opponent VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_1602858_1 WHERE tournament = \"Memorial tournament\"", "question": "Who was the runner-up in the Memorial Tournament?", "context": "CREATE TABLE table_1602858_1 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_1602858_1 WHERE runner_s__up = \"Rory Sabbatini\"", "question": "What was the winning score for the tournament with runner-up Rory Sabbatini?", "context": "CREATE TABLE table_1602858_1 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_1602858_1 WHERE winning_score = 63 - 68 - 68 - 68 = 267", "question": "What was the margin of victory with the winning score \"63-68-68-68=267\"?", "context": "CREATE TABLE table_1602858_1 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_16034882_5", "question": "Name the least position", "context": "CREATE TABLE table_16034882_5 (position INTEGER)"}, {"answer": "SELECT MAX(goals_scored) FROM table_16034882_5 WHERE position = 4", "question": "Name the most goals scored for position 4", "context": "CREATE TABLE table_16034882_5 (goals_scored INTEGER, position VARCHAR)"}, {"answer": "SELECT bowl_game FROM table_16046689_29 WHERE city = \"Tempe, Arizona\"", "question": "What is the name of the bowl game that was played in Tempe, Arizona?", "context": "CREATE TABLE table_16046689_29 (bowl_game VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_16046689_29 WHERE stadium = \"Citrus Bowl\" AND television = \"ABC\"", "question": "What city in the Citrus Bowl aired on ABC?", "context": "CREATE TABLE table_16046689_29 (city VARCHAR, stadium VARCHAR, television VARCHAR)"}, {"answer": "SELECT conference_matchups FROM table_16046689_29 WHERE date = \"January 1, 2009\" AND bowl_game = \"Capital One\"", "question": "What teams played in the Capital One bowl game on January 1, 2009?", "context": "CREATE TABLE table_16046689_29 (conference_matchups VARCHAR, date VARCHAR, bowl_game VARCHAR)"}, {"answer": "SELECT stadium FROM table_16046689_29 WHERE payout___us$__ = \"$3 Million\"", "question": "Which stadium has a payout of $3 million?", "context": "CREATE TABLE table_16046689_29 (stadium VARCHAR, payout___us$__ VARCHAR)"}, {"answer": "SELECT MAX(number_of_people) FROM table_16048129_5 WHERE average_family_size = \"2.8\"", "question": "What is the largest population in regions where the average family size is 2.8 people?", "context": "CREATE TABLE table_16048129_5 (number_of_people INTEGER, average_family_size VARCHAR)"}, {"answer": "SELECT COUNT(_percentage_of_total_deportees) FROM table_16048129_5 WHERE average_family_size = \"2.8\"", "question": "What is the total number of regions where the average family size is 2.8?", "context": "CREATE TABLE table_16048129_5 (_percentage_of_total_deportees VARCHAR, average_family_size VARCHAR)"}, {"answer": "SELECT region_of_ussr FROM table_16048129_5 WHERE _percentage_of_total_deportees = \"10.6\"", "question": "What regions of the USSR have a percentage of deportees of 10.6?", "context": "CREATE TABLE table_16048129_5 (region_of_ussr VARCHAR, _percentage_of_total_deportees VARCHAR)"}, {"answer": "SELECT MAX(number_of_families) FROM table_16048129_5 WHERE average_family_size = \"2.7\"", "question": "What is the most number of families in regions where average family size is 2.7?", "context": "CREATE TABLE table_16048129_5 (number_of_families INTEGER, average_family_size VARCHAR)"}, {"answer": "SELECT COUNT(number_of_families) FROM table_16048129_5 WHERE _percentage_of_total_deportees = \"5.8\"", "question": "How many total families are there in regions with 5.8 percent of the population being made up of deportees?", "context": "CREATE TABLE table_16048129_5 (number_of_families VARCHAR, _percentage_of_total_deportees VARCHAR)"}, {"answer": "SELECT MAX(number_of_families) FROM table_16048129_5 WHERE _percentage_of_total_deportees = \"5.8\"", "question": "What is the most number of families among regions where the population is made up of 5.8% deportees?", "context": "CREATE TABLE table_16048129_5 (number_of_families INTEGER, _percentage_of_total_deportees VARCHAR)"}, {"answer": "SELECT operator FROM table_1603807_2 WHERE line = \"Mamariga Shuttle\"", "question": "Which operator runs the Mamariga shuttle line?", "context": "CREATE TABLE table_1603807_2 (operator VARCHAR, line VARCHAR)"}, {"answer": "SELECT COUNT(length) FROM table_1603807_2 WHERE line = \"line 3\"", "question": "How many lengths of line 3 are given?", "context": "CREATE TABLE table_1603807_2 (length VARCHAR, line VARCHAR)"}, {"answer": "SELECT terminals FROM table_1603807_2 WHERE line = \"line 2\"", "question": "What are the terminals for line 2?", "context": "CREATE TABLE table_1603807_2 (terminals VARCHAR, line VARCHAR)"}, {"answer": "SELECT status FROM table_1603807_2 WHERE line = \"Airport line\"", "question": "What is the status of the airport line?", "context": "CREATE TABLE table_1603807_2 (status VARCHAR, line VARCHAR)"}, {"answer": "SELECT COUNT(hangul_chosongul) FROM table_160510_5 WHERE area = \"8,352\"", "question": "Name the total number of hangul chosongul for 8,352", "context": "CREATE TABLE table_160510_5 (hangul_chosongul VARCHAR, area VARCHAR)"}, {"answer": "SELECT iso FROM table_160510_5 WHERE rr_romaja = \"Chungcheongnam\"", "question": "Name the iso for chungcheongnam", "context": "CREATE TABLE table_160510_5 (iso VARCHAR, rr_romaja VARCHAR)"}, {"answer": "SELECT country FROM table_160510_5 WHERE area = \"11,891\"", "question": "Name the country for 11,891 area", "context": "CREATE TABLE table_160510_5 (country VARCHAR, area VARCHAR)"}, {"answer": "SELECT COUNT(region) FROM table_160510_5 WHERE hangul_chosongul = \"\uacbd\uc0c1\ub0a8\ub3c4\"", "question": "Name the number of region for  \uacbd\uc0c1\ub0a8\ub3c4", "context": "CREATE TABLE table_160510_5 (region VARCHAR, hangul_chosongul VARCHAR)"}, {"answer": "SELECT m_r_romaja FROM table_160510_5 WHERE region = \"Kwanbuk\"", "question": "Name the m r romaja for kwanbuk", "context": "CREATE TABLE table_160510_5 (m_r_romaja VARCHAR, region VARCHAR)"}, {"answer": "SELECT pop_density_people_km_2 FROM table_1606824_1 WHERE population__percentage_of_eu = \"1.1%\" AND member_state = \"Slovakia\"", "question": "Name the population density where population % is 1.1% for slovakia", "context": "CREATE TABLE table_1606824_1 (pop_density_people_km_2 VARCHAR, population__percentage_of_eu VARCHAR, member_state VARCHAR)"}, {"answer": "SELECT COUNT(pop_density_people_km_2) FROM table_1606824_1 WHERE population__percentage_of_eu = \"1.7%\"", "question": "Name the population density people where population % eu for 1.7%", "context": "CREATE TABLE table_1606824_1 (pop_density_people_km_2 VARCHAR, population__percentage_of_eu VARCHAR)"}, {"answer": "SELECT COUNT(area_km_2) FROM table_1606824_1 WHERE pop_density_people_km_2 = \"87\"", "question": "Name the number of area km 2 for population density is 87", "context": "CREATE TABLE table_1606824_1 (area_km_2 VARCHAR, pop_density_people_km_2 VARCHAR)"}, {"answer": "SELECT population__percentage_of_eu FROM table_1606824_1 WHERE member_state = \"Greece\"", "question": "Name the population % of eu for greece", "context": "CREATE TABLE table_1606824_1 (population__percentage_of_eu VARCHAR, member_state VARCHAR)"}, {"answer": "SELECT COUNT(network) FROM table_160728_4 WHERE channel = 7", "question": "How many networks are there that have a channel number 7?", "context": "CREATE TABLE table_160728_4 (network VARCHAR, channel VARCHAR)"}, {"answer": "SELECT network FROM table_160728_4 WHERE station = \"TV3\"", "question": "What station on the network is tv3?", "context": "CREATE TABLE table_160728_4 (network VARCHAR, station VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_16078390_2 WHERE team_nickname = \"Raiders\"", "question": "What year was the team named the Raiders established?", "context": "CREATE TABLE table_16078390_2 (founded INTEGER, team_nickname VARCHAR)"}, {"answer": "SELECT primary_conference FROM table_16078390_2 WHERE institution = \"Gonzaga University\"", "question": "What conference does Gonzaga University play in?", "context": "CREATE TABLE table_16078390_2 (primary_conference VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_16078390_2 WHERE location = \"Tacoma, Washington\"", "question": "How many Universities were founded in Tacoma, Washington?", "context": "CREATE TABLE table_16078390_2 (founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT institution FROM table_16078390_2 WHERE team_nickname = \"Wildcats\"", "question": "Which school's team has the nickname of the Wildcats?", "context": "CREATE TABLE table_16078390_2 (institution VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_16078390_2 WHERE location = \"Ellensburg, Washington\"", "question": "What year was the university that is located in Ellensburg, Washington established?", "context": "CREATE TABLE table_16078390_2 (founded INTEGER, location VARCHAR)"}, {"answer": "SELECT location FROM table_16078390_2 WHERE team_nickname = \"Wolves\"", "question": "Where is the university located that's nicknamed the Wolves?", "context": "CREATE TABLE table_16078390_2 (location VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT COUNT(viewers) FROM table_16072430_1 WHERE share = 7 AND weekly_rank = \"64\"", "question": "What is the total number of viewers where the share is 7 and the week rank is 64?", "context": "CREATE TABLE table_16072430_1 (viewers VARCHAR, share VARCHAR, weekly_rank VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_16072430_1 WHERE share > 7.0", "question": "How many episodes have a share bigger than 7.0?", "context": "CREATE TABLE table_16072430_1 (_number VARCHAR, share INTEGER)"}, {"answer": "SELECT COUNT(_number) FROM table_16072430_1 WHERE weekly_rank = \"TBA\" AND timeslot = \"8:00 P.M.\"", "question": "How many episodes have a weekly rank tba and are broadcast at 8:00 p.m.?", "context": "CREATE TABLE table_16072430_1 (_number VARCHAR, weekly_rank VARCHAR, timeslot VARCHAR)"}, {"answer": "SELECT timeslot FROM table_16072430_1 WHERE air_date = \"February 22, 2008\"", "question": "What are the timeslot(s) for broadcast on February 22, 2008?", "context": "CREATE TABLE table_16072430_1 (timeslot VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT COUNT(air_date) FROM table_16072430_1 WHERE weekly_rank = \"73\"", "question": "What broadcast dates have a weekly rank of 73?", "context": "CREATE TABLE table_16072430_1 (air_date VARCHAR, weekly_rank VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_16075179_6 WHERE team = \"St. Johnstone\"", "question": "When was the date of appointment for St. Johnstone's manager? ", "context": "CREATE TABLE table_16075179_6 (date_of_appointment VARCHAR, team VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_16075179_6 WHERE team = \"Aberdeen\"", "question": "Who was the outgoing manager for Aberdeen? ", "context": "CREATE TABLE table_16075179_6 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_16075179_6 WHERE outgoing_manager = \"Wim Jansen\"", "question": "When was the date of appointment for the manager replacing Wim Jansen? ", "context": "CREATE TABLE table_16075179_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT COUNT(citrate) FROM table_16083989_1 WHERE species = \"Salmonella spp.\"", "question": "What is the result for salmonella spp. if you use citrate?", "context": "CREATE TABLE table_16083989_1 (citrate VARCHAR, species VARCHAR)"}, {"answer": "SELECT species FROM table_16083989_1 WHERE voges_proskauer = \"Negative\" AND indole = \"Negative\"", "question": "Which species show a negative result with both voges-proskauer and indole?", "context": "CREATE TABLE table_16083989_1 (species VARCHAR, voges_proskauer VARCHAR, indole VARCHAR)"}, {"answer": "SELECT voges_proskauer FROM table_16083989_1 WHERE citrate = \"Positive\"", "question": "What are the results for testing the species with voges-proskauer when citrate yields a positive result?", "context": "CREATE TABLE table_16083989_1 (voges_proskauer VARCHAR, citrate VARCHAR)"}, {"answer": "SELECT indole FROM table_16083989_1 WHERE species = \"Proteus mirabilis\"", "question": "What is the result of proteus mirabilis tested with indole?", "context": "CREATE TABLE table_16083989_1 (indole VARCHAR, species VARCHAR)"}, {"answer": "SELECT originalairdate FROM table_16090262_1 WHERE tv_broadcast = \"S07E04\"", "question": "When was the show originally aired that had a TV broadcast of S07E04?", "context": "CREATE TABLE table_16090262_1 (originalairdate VARCHAR, tv_broadcast VARCHAR)"}, {"answer": "SELECT title FROM table_16090262_1 WHERE no_in_season = 4", "question": "Which title was No. 4 in season?", "context": "CREATE TABLE table_16090262_1 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT directed_by FROM table_16090262_1 WHERE tv_broadcast = \"S07E04\"", "question": "Who directed the show that had a TV broadcast of S07E04?", "context": "CREATE TABLE table_16090262_1 (directed_by VARCHAR, tv_broadcast VARCHAR)"}, {"answer": "SELECT mid_atlantic_south__washington, _dc_ FROM table_16105186_2 WHERE alaska___juneau__ = \"90 g/mi (56 g/km)\" AND california__san_francisco_ = \"110 g/mi (68 g/km)\"", "question": "What was the emission rating in Mid-Atlantic South for the vehicle that was rated 90 g/mi (56 g/km) in Alaska and 110 g/mi (68 g/km) in California?", "context": "CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, alaska___juneau__ VARCHAR, california__san_francisco_ VARCHAR)"}, {"answer": "SELECT mid_atlantic_south__washington, _dc_ FROM table_16105186_2 WHERE midwest__des_moines_ = \"300 g/mi (186 g/km)\"", "question": "What was the emission rating in Mid-Atlantic South for the vehicle that was rated 300 g/mi (186 g/km) in the Midwest?", "context": "CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, midwest__des_moines_ VARCHAR)"}, {"answer": "SELECT us_national_average_electric_mix FROM table_16105186_2 WHERE midwest__des_moines_ = \"280 g/mi (174 g/km)\"", "question": "What was the US national average electric mix rating for the vehicle that was rated 280 g/mi (174 g/km) in the Midwest?", "context": "CREATE TABLE table_16105186_2 (us_national_average_electric_mix VARCHAR, midwest__des_moines_ VARCHAR)"}, {"answer": "SELECT COUNT(california__san_francisco_) FROM table_16105186_2 WHERE vehicle = \"Ford Focus Electric\"", "question": "How many Ford Focus electric vehicle emission test scores were recorded in California?", "context": "CREATE TABLE table_16105186_2 (california__san_francisco_ VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT california__san_francisco_ FROM table_16105186_2 WHERE alaska___juneau__ = \"80 g/mi (50 g/km)\" AND southeast__atlanta_ = \"250 g/mi (155 g/km)\"", "question": "What was the emission rating in California for the vehicle that was rated 80 g/mi (50 g/km) in Alaska and 250 g/mi (155 g/km) in the Southeast ?", "context": "CREATE TABLE table_16105186_2 (california__san_francisco_ VARCHAR, alaska___juneau__ VARCHAR, southeast__atlanta_ VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_16119656_1", "question": "What was the lowest no. of attendance on record?", "context": "CREATE TABLE table_16119656_1 (attendance INTEGER)"}, {"answer": "SELECT date FROM table_16119656_1 WHERE attendance < 6427.0", "question": "When was the game played if the attendance is less than 6427.0?", "context": "CREATE TABLE table_16119656_1 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT attendance FROM table_16119656_1 WHERE date = \"January 9, 1988\"", "question": "How many were in attendance during the game on January 9, 1988?", "context": "CREATE TABLE table_16119656_1 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT headquarters FROM table_1610301_1 WHERE code = \"HY\"", "question": "Where is the headquarters of the place whose abbreviation is hy?", "context": "CREATE TABLE table_1610301_1 (headquarters VARCHAR, code VARCHAR)"}, {"answer": "SELECT headquarters FROM table_1610301_1 WHERE population__2011_ = 3811738", "question": "Where is the headquarters of the place whose population in 2011 was 3811738?", "context": "CREATE TABLE table_1610301_1 (headquarters VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT MIN(population__2011_) FROM table_1610301_1 WHERE district = \"Prakasam\"", "question": "What was the minimum population in 2011 of the district of Prakasam?", "context": "CREATE TABLE table_1610301_1 (population__2011_ INTEGER, district VARCHAR)"}, {"answer": "SELECT code FROM table_1610301_1 WHERE district = \"Mahbubnagar\"", "question": "What is the abbreviation of the district of Mahbubnagar?", "context": "CREATE TABLE table_1610301_1 (code VARCHAR, district VARCHAR)"}, {"answer": "SELECT population__2011_ FROM table_1610301_1 WHERE district = \"East Godavari\"", "question": "What is the 2011 population of the district of East Godavari?", "context": "CREATE TABLE table_1610301_1 (population__2011_ VARCHAR, district VARCHAR)"}, {"answer": "SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE gdp_per_capita_nominal__$_ = 2874", "question": "What is the adjusted GDP when the nominal GDP per capita is 2874?", "context": "CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, gdp_per_capita_nominal__$_ VARCHAR)"}, {"answer": "SELECT gdp_per_capita_adjusted__$_ FROM table_1610496_3 WHERE population__millions_ = \"37.376\"", "question": "What is the adjusted GDP per capita when the population is 37.376 million?", "context": "CREATE TABLE table_1610496_3 (gdp_per_capita_adjusted__$_ VARCHAR, population__millions_ VARCHAR)"}, {"answer": "SELECT MIN(gdp_per_capita_nominal__) AS $_ FROM table_1610496_3 WHERE population__millions_ = \"63.056\"", "question": "What is the nominal GDP per capita when the population is 63.056 million?", "context": "CREATE TABLE table_1610496_3 (gdp_per_capita_nominal__ INTEGER, population__millions_ VARCHAR)"}, {"answer": "SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE population__millions_ = \"5.141\"", "question": "What is the adjusted GDP when the population is 5.141 million?", "context": "CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, population__millions_ VARCHAR)"}, {"answer": "SELECT population__millions_ FROM table_1610496_3 WHERE gdp_adjusted__$_billions_ = \"492\"", "question": "What is the population in millions when the adjusted GDP is 492 billion?", "context": "CREATE TABLE table_1610496_3 (population__millions_ VARCHAR, gdp_adjusted__$_billions_ VARCHAR)"}, {"answer": "SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE gdp_nominal__$_billions_ = \"8.43\"", "question": "What is the adjusted GDP when the nominal GDP is 8.43 (in billions)?", "context": "CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, gdp_nominal__$_billions_ VARCHAR)"}, {"answer": "SELECT operating_profit__s$m_ FROM table_161591_2 WHERE expenditure__s$m_ = \"12,127.8\"", "question": "What was the opearint profit (s$m) associated with an expenditure (s$m) of 12,127.8?", "context": "CREATE TABLE table_161591_2 (operating_profit__s$m_ VARCHAR, expenditure__s$m_ VARCHAR)"}, {"answer": "SELECT expenditure__s$m_ FROM table_161591_2 WHERE operating_profit__s$m_ = \"717.1\"", "question": "What was the expenditure (s$m) associated with an operating profit (s$m) of 717.1?", "context": "CREATE TABLE table_161591_2 (expenditure__s$m_ VARCHAR, operating_profit__s$m_ VARCHAR)"}, {"answer": "SELECT COUNT(profit_before_taxation__s) AS $m_ FROM table_161591_2 WHERE operating_profit__s$m_ = \"717.1\"", "question": "How many years was the operating profit (s$m) 717.1?", "context": "CREATE TABLE table_161591_2 (profit_before_taxation__s VARCHAR, operating_profit__s$m_ VARCHAR)"}, {"answer": "SELECT simplified_characters FROM table_16162581_1 WHERE wade_giles = \"ch'ing-y\u00fcan \u2026 i-ma\"", "question": "Name the simplified characters for wade giles is ch'ing-y\u00fcan \u2026 i-ma", "context": "CREATE TABLE table_16162581_1 (simplified_characters VARCHAR, wade_giles VARCHAR)"}, {"answer": "SELECT pinyin FROM table_16162581_1 WHERE date__ce_ = \"657\"", "question": "Name the pinyin for 657 date", "context": "CREATE TABLE table_16162581_1 (pinyin VARCHAR, date__ce_ VARCHAR)"}, {"answer": "SELECT text FROM table_16162581_1 WHERE simplified_characters = \"\u5fc3\u733f\u610f\u9a6c\"", "question": "Name the text for \u5fc3\u733f\u610f\u9a6c", "context": "CREATE TABLE table_16162581_1 (text VARCHAR, simplified_characters VARCHAR)"}, {"answer": "SELECT simplified_characters FROM table_16162581_1 WHERE wade_giles = \"hsin-y\u00fcan \u2026 i-ma\"", "question": "Name the simplified charaacters being hsin-y\u00fcan \u2026 i-ma", "context": "CREATE TABLE table_16162581_1 (simplified_characters VARCHAR, wade_giles VARCHAR)"}, {"answer": "SELECT COUNT(pinyin) FROM table_16162581_1 WHERE wade_giles = \"hsin-y\u00fcan-i-ma\"", "question": "Name the total number of pinyin for hsin-y\u00fcan-i-ma", "context": "CREATE TABLE table_16162581_1 (pinyin VARCHAR, wade_giles VARCHAR)"}, {"answer": "SELECT date__ce_ FROM table_16162581_1 WHERE pinyin = \"q\u00edngyu\u00e1n \u2026 y\u00ecm\u01ce\"", "question": "Name the date for q\u00edngyu\u00e1n \u2026 y\u00ecm\u01ce", "context": "CREATE TABLE table_16162581_1 (date__ce_ VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT line FROM table_1612760_1 WHERE service_pattern = \"Fast to Norwood Junction\"", "question": "Which line offers Fast to Norwood Junction?", "context": "CREATE TABLE table_1612760_1 (line VARCHAR, service_pattern VARCHAR)"}, {"answer": "SELECT operator FROM table_1612760_1 WHERE destination = \"Highbury & Islington\"", "question": "Who is the operator to Highbury & Islington?", "context": "CREATE TABLE table_1612760_1 (operator VARCHAR, destination VARCHAR)"}, {"answer": "SELECT COUNT(frequency__per_hour_) FROM table_1612760_1 WHERE service_pattern = \"Next station\"", "question": "How many frequency figures are given for next station service pattern?", "context": "CREATE TABLE table_1612760_1 (frequency__per_hour_ VARCHAR, service_pattern VARCHAR)"}, {"answer": "SELECT operator FROM table_1612760_1 WHERE destination = \"Dalston Junction\"", "question": "Who is the operator to destination Dalston Junction?", "context": "CREATE TABLE table_1612760_1 (operator VARCHAR, destination VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_1615980_4 WHERE tournament = \"Volvo Masters Andalucia\"", "question": "How many tournament wins were at Volvo Masters Andalucia?", "context": "CREATE TABLE table_1615980_4 (no VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_1615980_4 WHERE tournament = \"Volvo Masters Andalucia\"", "question": "Who was the runner up at the Volvo Masters Andalucia?", "context": "CREATE TABLE table_1615980_4 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_1615980_4 WHERE winning_score = 68 - 67 - 65 - 66 = 266", "question": "In what tournament was the winning score 68-67-65-66=266?", "context": "CREATE TABLE table_1615980_4 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT joined FROM table_16168849_1 WHERE nickname = \"Blue Hose\"", "question": "Name the joined for blue hose", "context": "CREATE TABLE table_16168849_1 (joined VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_16168849_1 WHERE nickname = \"Blue Hose\"", "question": "Name the maximum founded for blue hose", "context": "CREATE TABLE table_16168849_1 (founded INTEGER, nickname VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_16168849_1 WHERE institution = \"St. Andrews University\"", "question": "Name the maximum enrollment for st. andrews university", "context": "CREATE TABLE table_16168849_1 (enrollment INTEGER, institution VARCHAR)"}, {"answer": "SELECT current_conference FROM table_16168849_1 WHERE left = \"1974, 1989\"", "question": "Name the current conference for 1974, 1989", "context": "CREATE TABLE table_16168849_1 (current_conference VARCHAR, left VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_16175064_3 WHERE writer_s_ = \"Alexa Wyatt\"", "question": "What is the total number of episodes where alexa wyatt is the writer?", "context": "CREATE TABLE table_16175064_3 (series__number VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_16175064_3 WHERE writer_s_ = \"Chris Hawkshaw\"", "question": "Who is the director when Chris Hawkshaw is the writer?", "context": "CREATE TABLE table_16175064_3 (director_s_ VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT season__number FROM table_16175064_3 WHERE director_s_ = \"Donald Crombie\" AND series__number = 40", "question": "What is the season number of the episode directed by Donald Crombie and the series number is 40?", "context": "CREATE TABLE table_16175064_3 (season__number VARCHAR, director_s_ VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT released_date FROM table_1616608_2 WHERE western_title = \"Super Mario 64 DS\"", "question": "What is the released date for Super Mario 64 DS?", "context": "CREATE TABLE table_1616608_2 (released_date VARCHAR, western_title VARCHAR)"}, {"answer": "SELECT game_modes FROM table_1616608_2 WHERE released_date = \"2007\"", "question": "What are the game modes for the game released in 2007?", "context": "CREATE TABLE table_1616608_2 (game_modes VARCHAR, released_date VARCHAR)"}, {"answer": "SELECT COUNT(western_title) FROM table_1616608_2 WHERE chinese_title = \"\u6478\u6478\u8000\u897f-\u4e91\u4e2d\u6f2b\u6b65\"", "question": "How many games share their western title with the Chinese title of \u6478\u6478\u8000\u897f-\u4e91\u4e2d\u6f2b\u6b65 ?", "context": "CREATE TABLE table_1616608_2 (western_title VARCHAR, chinese_title VARCHAR)"}, {"answer": "SELECT released_date FROM table_1616608_2 WHERE western_title = \"Polarium\"", "question": "What was the released date of Polarium?", "context": "CREATE TABLE table_1616608_2 (released_date VARCHAR, western_title VARCHAR)"}, {"answer": "SELECT game_modes FROM table_1616608_2 WHERE pinyin = \"Zh\u00edg\u01cen Y\u012b B\u01d0\"", "question": "What game modes are there when the pinyin is zh\u00edg\u01cen y\u012b b\u01d0 ?", "context": "CREATE TABLE table_1616608_2 (game_modes VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT donor_payment FROM table_16175217_1 WHERE children_per_donor = \"6 children\" AND allowed_recipients = \"no data\"", "question": "What is the status of donor payment in the country where there are 6 children per donor and no data on allowed recipients?", "context": "CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR, allowed_recipients VARCHAR)"}, {"answer": "SELECT donor_payment FROM table_16175217_1 WHERE children_per_donor = \"12 children to 6 families (2 per family)\"", "question": "What are donor payments in the country where there are 12 children to 6 families (2 per family)?", "context": "CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR)"}, {"answer": "SELECT donor_payment FROM table_16175217_1 WHERE country = \"Belgium\"", "question": "What is the donor payment in Belgium?", "context": "CREATE TABLE table_16175217_1 (donor_payment VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_16175217_1 WHERE children_per_donor = \"8 children\" AND donor_payment = \"no data\"", "question": "What is the country where there are 8 children per donor and no data for donor payments?", "context": "CREATE TABLE table_16175217_1 (country VARCHAR, children_per_donor VARCHAR, donor_payment VARCHAR)"}, {"answer": "SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = \"Married or in cohabitation\"", "question": "What are the children per donor in the country where the allowed recipients are married or in cohabitation?", "context": "CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR)"}, {"answer": "SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = \"no data\"", "question": "List the possible children per donor levels for countries where the allowed recipients is no data.", "context": "CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR)"}, {"answer": "SELECT missouri_vs FROM table_16201038_4 WHERE at_neutral_site = \"MU, 2-1\"", "question": "Against which team does Missouri Tigers have a record of mu, 2-1 at a neutral site?", "context": "CREATE TABLE table_16201038_4 (missouri_vs VARCHAR, at_neutral_site VARCHAR)"}, {"answer": "SELECT missouri_vs FROM table_16201038_4 WHERE at_opponents_venue = \"UI, 4-1\"", "question": "Which is the team against which Missouri Tigers have a record of ui, 4-1 at the opponent's venue?How", "context": "CREATE TABLE table_16201038_4 (missouri_vs VARCHAR, at_opponents_venue VARCHAR)"}, {"answer": "SELECT COUNT(last_5_meetings) FROM table_16201038_4 WHERE overall_record = \"MU, 21-19\"", "question": "How many times did the team achieve an overrall record of mu, 21-19?", "context": "CREATE TABLE table_16201038_4 (last_5_meetings VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT at_neutral_site FROM table_16201038_4 WHERE overall_record = \"UI, 27-16\"", "question": "What is the record at the neutral site for when the overall record is ui, 27-16?", "context": "CREATE TABLE table_16201038_4 (at_neutral_site VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT at_opponents_venue FROM table_16201038_4 WHERE last_5_meetings = \"MU, 4-1\" AND at_neutral_site = \"Tied, 0-0\"", "question": "What is the record at the opponent's venue against the team for which the record for the last 5 meetings is mu, 4-1 and the record at the neutral site is tied, 0-0?", "context": "CREATE TABLE table_16201038_4 (at_opponents_venue VARCHAR, last_5_meetings VARCHAR, at_neutral_site VARCHAR)"}, {"answer": "SELECT stamp_duty_reserve_tax FROM table_1618358_1 WHERE over_total_tax_revenue__in__percentage_ = \"0.79\"", "question": "What is the stamp duty reserve tax when the percentage over total tax revenue is 0.79?", "context": "CREATE TABLE table_1618358_1 (stamp_duty_reserve_tax VARCHAR, over_total_tax_revenue__in__percentage_ VARCHAR)"}, {"answer": "SELECT over_gdp__in__percentage_ FROM table_1618358_1 WHERE standard_stamp_duty = \"367\"", "question": "When the standard stamp duty is 367 what is the percentage over gdp?", "context": "CREATE TABLE table_1618358_1 (over_gdp__in__percentage_ VARCHAR, standard_stamp_duty VARCHAR)"}, {"answer": "SELECT over_gdp__in__percentage_ FROM table_1618358_1 WHERE stamp_duty_reserve_tax = \"3,669\"", "question": "When the stamp duty reserve tax is 3,669 what is the percentage over gdp?", "context": "CREATE TABLE table_1618358_1 (over_gdp__in__percentage_ VARCHAR, stamp_duty_reserve_tax VARCHAR)"}, {"answer": "SELECT year FROM table_1618358_1 WHERE over_total_tax_revenue__in__percentage_ = \"0.65\"", "question": "During what years are the percentage over total tax revenue is 0.65?", "context": "CREATE TABLE table_1618358_1 (year VARCHAR, over_total_tax_revenue__in__percentage_ VARCHAR)"}, {"answer": "SELECT COUNT(at_opponents_venue) FROM table_16201038_3 WHERE missouri_vs = \"Oklahoma\"", "question": "Name the total number of opponets venue for oklahoma", "context": "CREATE TABLE table_16201038_3 (at_opponents_venue VARCHAR, missouri_vs VARCHAR)"}, {"answer": "SELECT COUNT(last_5_meetings) FROM table_16201038_3 WHERE missouri_vs = \"Texas Tech\"", "question": "Name the total number of last 5 meetings for texas tech", "context": "CREATE TABLE table_16201038_3 (last_5_meetings VARCHAR, missouri_vs VARCHAR)"}, {"answer": "SELECT COUNT(series_sorted) FROM table_1620397_2 WHERE released = \"April 2010\"", "question": "Name the total number of series sorted for when released is april 2010", "context": "CREATE TABLE table_1620397_2 (series_sorted VARCHAR, released VARCHAR)"}, {"answer": "SELECT author FROM table_1620397_2 WHERE series_sorted = \"6Y/AE\"", "question": "Name the author for 6y/ae", "context": "CREATE TABLE table_1620397_2 (author VARCHAR, series_sorted VARCHAR)"}, {"answer": "SELECT author FROM table_1620397_2 WHERE featuring = \"Peri\" AND released = \"April 2010\"", "question": "Name the author for peri and april 2010", "context": "CREATE TABLE table_1620397_2 (author VARCHAR, featuring VARCHAR, released VARCHAR)"}, {"answer": "SELECT released FROM table_1620397_2 WHERE author = \"Pat Mills\"", "question": "Name the released for pat mills", "context": "CREATE TABLE table_1620397_2 (released VARCHAR, author VARCHAR)"}, {"answer": "SELECT featuring FROM table_1620397_2 WHERE author = \"Pat Mills\"", "question": "Name the featuring for pat mills", "context": "CREATE TABLE table_1620397_2 (featuring VARCHAR, author VARCHAR)"}, {"answer": "SELECT last_5_meetings FROM table_16201038_5 WHERE overall_record = \"UM, 2-1\"", "question": "What are the outcomes of the last 5 meetings where the overall record is UM, 2-1?", "context": "CREATE TABLE table_16201038_5 (last_5_meetings VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT overall_record FROM table_16201038_5 WHERE at_opponents_venue = \"UF, 1-0\"", "question": "What is the record of wins/losses that were played at opponents venue (uf, 1-0)", "context": "CREATE TABLE table_16201038_5 (overall_record VARCHAR, at_opponents_venue VARCHAR)"}, {"answer": "SELECT missouri_vs FROM table_16201038_5 WHERE overall_record = \"MU, 3-1\"", "question": "Who are the opponents of Missouri that have an overall record of MU, 3-1?", "context": "CREATE TABLE table_16201038_5 (missouri_vs VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT at_columbia FROM table_16201038_5 WHERE overall_record = \"MU, 3-1\"", "question": "What is the record at Columbia for the team overall record of MU, 3-1?", "context": "CREATE TABLE table_16201038_5 (at_columbia VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT COUNT(length_feet) FROM table_16226584_1 WHERE length_meters = \"106.1\"", "question": "How many feet in length are there when the length is 106.1 meters? ", "context": "CREATE TABLE table_16226584_1 (length_feet VARCHAR, length_meters VARCHAR)"}, {"answer": "SELECT MIN(length_feet) FROM table_16226584_1 WHERE km_from_kingston = \"105.4\"", "question": "When the kilometers from kingston is 105.4 what is the minimum amount of length in feet? ", "context": "CREATE TABLE table_16226584_1 (length_feet INTEGER, km_from_kingston VARCHAR)"}, {"answer": "SELECT parish FROM table_16226584_1 WHERE length_meters = \"51.8\"", "question": "Which parishes have a railroad length of 51.8 meters? ", "context": "CREATE TABLE table_16226584_1 (parish VARCHAR, length_meters VARCHAR)"}, {"answer": "SELECT mi_from_kingston FROM table_16226584_1 WHERE length_feet = 362", "question": "When the railroad length is 362 feet how many miles is it from kingston? ", "context": "CREATE TABLE table_16226584_1 (mi_from_kingston VARCHAR, length_feet VARCHAR)"}, {"answer": "SELECT parish FROM table_16226584_1 WHERE name = \"Highworth\"", "question": "Which parishes have the highworth railroad?", "context": "CREATE TABLE table_16226584_1 (parish VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_16226584_1 WHERE km_from_kingston = \"112.6\"", "question": "Which railroad is 112.6 kilometers from kingston? ", "context": "CREATE TABLE table_16226584_1 (name VARCHAR, km_from_kingston VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_16227492_1 WHERE opponent = \"New England Blazers\"", "question": "Name the most number for new england blazers", "context": "CREATE TABLE table_16227492_1 (_number INTEGER, opponent VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_16227492_1", "question": "Name the most attendance", "context": "CREATE TABLE table_16227492_1 (attendance INTEGER)"}, {"answer": "SELECT MAX(attendance) FROM table_16227492_1 WHERE _number = 4", "question": "Name the most attendance for number 4", "context": "CREATE TABLE table_16227492_1 (attendance INTEGER, _number VARCHAR)"}, {"answer": "SELECT preliminary_average FROM table_16268026_3 WHERE semifinal_average = \"8.834 (3)\"", "question": "What is the preliminary average when the semifinal average is 8.834 (3) ?", "context": "CREATE TABLE table_16268026_3 (preliminary_average VARCHAR, semifinal_average VARCHAR)"}, {"answer": "SELECT interview FROM table_16268026_3 WHERE preliminary_average = \"8.662 (3)\"", "question": "What is the interview when preliminary average is 8.662 (3) ?", "context": "CREATE TABLE table_16268026_3 (interview VARCHAR, preliminary_average VARCHAR)"}, {"answer": "SELECT state FROM table_16268026_3 WHERE semifinal_average = \"8.538 (8)\"", "question": "What state has a semifinal average of 8.538 (8) ?", "context": "CREATE TABLE table_16268026_3 (state VARCHAR, semifinal_average VARCHAR)"}, {"answer": "SELECT state FROM table_16268026_3 WHERE interview = \"8.313 (8)\"", "question": "What state has an interview of 8.313 (8) ?", "context": "CREATE TABLE table_16268026_3 (state VARCHAR, interview VARCHAR)"}, {"answer": "SELECT semifinal_average FROM table_16268026_3 WHERE preliminary_average = \"9.084 (1)\"", "question": "What is the semifinal average where the preliminary average is 9.084 (1) ?", "context": "CREATE TABLE table_16268026_3 (semifinal_average VARCHAR, preliminary_average VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_16268026_3 WHERE evening_gown = \"8.774 (6)\"", "question": "What is the swimsuit when evening gown is 8.774 (6) ?", "context": "CREATE TABLE table_16268026_3 (swimsuit VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT pop_density__per_km\u00b2_ FROM table_16278602_1 WHERE english_name = \"Capital Region of Denmark\"", "question": "What is the population density of the Capital Region of Denmark?", "context": "CREATE TABLE table_16278602_1 (pop_density__per_km\u00b2_ VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT seat_of_administration FROM table_16278602_1 WHERE largest_city = \"Roskilde\"", "question": "In the region where Roskilde is the largest city, what is the seat of administration?", "context": "CREATE TABLE table_16278602_1 (seat_of_administration VARCHAR, largest_city VARCHAR)"}, {"answer": "SELECT MIN(population__january_1), _2008_ FROM table_16278602_1 WHERE largest_city = \"Roskilde\"", "question": "What is the minimum population of the region in which Roskilde is the largest city?", "context": "CREATE TABLE table_16278602_1 (_2008_ VARCHAR, population__january_1 INTEGER, largest_city VARCHAR)"}, {"answer": "SELECT COUNT(language_s_) FROM table_16254861_1 WHERE year__ceremony_ = \"2001 (74th)\"", "question": "How many languages for the 2001 (74th) awards?", "context": "CREATE TABLE table_16254861_1 (language_s_ VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT result FROM table_16254861_1 WHERE year__ceremony_ = \"2009 (82nd)\"", "question": "What was the result for the 2009 (82nd) awards?", "context": "CREATE TABLE table_16254861_1 (result VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT original_title FROM table_16255245_1 WHERE film_title_used_in_nomination = \"The Counterfeiters\"", "question": "Name the original title for the counterfeiters", "context": "CREATE TABLE table_16255245_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_16255245_1 WHERE original_title = \"Spiele Leben\"", "question": "Name the year for spiele leben", "context": "CREATE TABLE table_16255245_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_16255245_1 WHERE original_title = \"Wohin und zur\u00fcck - Welcome in Vienna\"", "question": "Name the film title for wohin und zur\u00fcck - welcome in vienna", "context": "CREATE TABLE table_16255245_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT language FROM table_16278349_1 WHERE province = \"Kunar\"", "question": "Name the language for kunar", "context": "CREATE TABLE table_16278349_1 (language VARCHAR, province VARCHAR)"}, {"answer": "SELECT notes FROM table_16278349_1 WHERE province = \"Samangan\"", "question": "Name the notes for samangan", "context": "CREATE TABLE table_16278349_1 (notes VARCHAR, province VARCHAR)"}, {"answer": "SELECT un_region FROM table_16278349_1 WHERE population = 3314000", "question": "Name the un region for 3314000 population", "context": "CREATE TABLE table_16278349_1 (un_region VARCHAR, population VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_16278349_1 WHERE map__number = 24", "question": "Name the area for map # 24", "context": "CREATE TABLE table_16278349_1 (area__km\u00b2_ VARCHAR, map__number VARCHAR)"}, {"answer": "SELECT un_region FROM table_16278349_1 WHERE population = 378000", "question": "Name the un region for 378000 population", "context": "CREATE TABLE table_16278349_1 (un_region VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_16278825_1 WHERE towns__villages = 217", "question": "NJame the total number of population for towns/villages for 217", "context": "CREATE TABLE table_16278825_1 (population VARCHAR, towns__villages VARCHAR)"}, {"answer": "SELECT towns__villages FROM table_16278825_1 WHERE county_seat = \"Budapest\"", "question": "Name the towns/villages for budapest", "context": "CREATE TABLE table_16278825_1 (towns__villages VARCHAR, county_seat VARCHAR)"}, {"answer": "SELECT MIN(area__km\u00b2_) FROM table_16278825_1 WHERE name_of_county = \"Vas\"", "question": "Name the least area for vas", "context": "CREATE TABLE table_16278825_1 (area__km\u00b2_ INTEGER, name_of_county VARCHAR)"}, {"answer": "SELECT points_won FROM table_1628607_5 WHERE year = \"1992\"", "question": "When the year was 1992, what were the points won?", "context": "CREATE TABLE table_1628607_5 (points_won VARCHAR, year VARCHAR)"}, {"answer": "SELECT points__percentage FROM table_1628607_5 WHERE foursomes_w_l_h = \"1\u20130\u20130 won w/ P. Creamer 3&2\"", "question": "When the foursome was w-l-h is 1\u20130\u20130 won w/ p. creamer 3&2, what was the points %?", "context": "CREATE TABLE table_1628607_5 (points__percentage VARCHAR, foursomes_w_l_h VARCHAR)"}, {"answer": "SELECT foursomes_w_l_h FROM table_1628607_5 WHERE year = \"2002\"", "question": "What was the foursome's record in 2002?", "context": "CREATE TABLE table_1628607_5 (foursomes_w_l_h VARCHAR, year VARCHAR)"}, {"answer": "SELECT length FROM table_16279520_1 WHERE release = \"3.5\"", "question": "What was the length time of the 3.5 release?", "context": "CREATE TABLE table_16279520_1 (length VARCHAR, release VARCHAR)"}, {"answer": "SELECT title FROM table_16279520_1 WHERE release = \"1.1\"", "question": "What is the title of the 1.1 realease?", "context": "CREATE TABLE table_16279520_1 (title VARCHAR, release VARCHAR)"}, {"answer": "SELECT series FROM table_16279520_1 WHERE release = \"3.5\"", "question": "Under what series was the 3.5 release?", "context": "CREATE TABLE table_16279520_1 (series VARCHAR, release VARCHAR)"}, {"answer": "SELECT release FROM table_16279520_1 WHERE timeline = \"Season 2\"", "question": "What is the releases number under Season 2?", "context": "CREATE TABLE table_16279520_1 (release VARCHAR, timeline VARCHAR)"}, {"answer": "SELECT capital FROM table_16278894_1 WHERE county = \"Bungoma\"", "question": "What is the capital of Bungoma county?", "context": "CREATE TABLE table_16278894_1 (capital VARCHAR, county VARCHAR)"}, {"answer": "SELECT capital FROM table_16278894_1 WHERE county = \"Uasin Gishu\"", "question": "What is the capital of Uasin Gishu county?", "context": "CREATE TABLE table_16278894_1 (capital VARCHAR, county VARCHAR)"}, {"answer": "SELECT former_province FROM table_16278894_1 WHERE area__km_2__ = \"694.9\"", "question": "In what former province was the area 694.9 kilometers squared?", "context": "CREATE TABLE table_16278894_1 (former_province VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT COUNT(area__km_2__) FROM table_16278894_1 WHERE population_census_2009 = 240075", "question": "How many numbers were listed under area with a population of 240075 as of 2009?", "context": "CREATE TABLE table_16278894_1 (area__km_2__ VARCHAR, population_census_2009 VARCHAR)"}, {"answer": "SELECT population_census_2009 FROM table_16278894_1 WHERE county = \"Kisumu\"", "question": "What was the population in Kisumu county as of 2009?", "context": "CREATE TABLE table_16278894_1 (population_census_2009 VARCHAR, county VARCHAR)"}, {"answer": "SELECT capital FROM table_16278894_1 WHERE population_census_2009 = 730129", "question": "What capital's county had a population of 730129 as of 2009?", "context": "CREATE TABLE table_16278894_1 (capital VARCHAR, population_census_2009 VARCHAR)"}, {"answer": "SELECT COUNT(dates) FROM table_1628792_1 WHERE margin_of_victory = \"5 strokes\"", "question": "Name the dates for margin of victory being 5 strokes", "context": "CREATE TABLE table_1628792_1 (dates VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT champion FROM table_1628792_1 WHERE tournament_location = \"London Hunt and country Club ( London , ON )\"", "question": "Name the champion for  london hunt and country club ( london , on )", "context": "CREATE TABLE table_1628792_1 (champion VARCHAR, tournament_location VARCHAR)"}, {"answer": "SELECT evening_gown FROM table_16323766_3 WHERE interview = \"7.600 (9)\"", "question": "What was the evening gown score for the woman who scored 7.600 (9) in her interview?", "context": "CREATE TABLE table_16323766_3 (evening_gown VARCHAR, interview VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_16323766_3 WHERE semifinal_average = \"8.759 (5)\"", "question": "What was the swimsuit score for the one who had a semifinal average of 8.759 (5)?", "context": "CREATE TABLE table_16323766_3 (swimsuit VARCHAR, semifinal_average VARCHAR)"}, {"answer": "SELECT evening_gown FROM table_16323766_3 WHERE preliminary_average = \"8.121 (8)\"", "question": "What was the evening gown score for the one who had a preliminary average of 8.121 (8)?", "context": "CREATE TABLE table_16323766_3 (evening_gown VARCHAR, preliminary_average VARCHAR)"}, {"answer": "SELECT preliminary_average FROM table_16323766_3 WHERE semifinal_average = \"8.966 (3)\"", "question": "What was the preliminary average for the one who had a semifinal average of 8.966 (3)?", "context": "CREATE TABLE table_16323766_3 (preliminary_average VARCHAR, semifinal_average VARCHAR)"}, {"answer": "SELECT preliminary_average FROM table_16323766_3 WHERE state = \"Mississippi\"", "question": "What was the preliminary average for Miss Mississippi?", "context": "CREATE TABLE table_16323766_3 (preliminary_average VARCHAR, state VARCHAR)"}, {"answer": "SELECT preliminary_average FROM table_16323766_3 WHERE state = \"Maryland\"", "question": "What was the preliminary average for Miss Maryland?", "context": "CREATE TABLE table_16323766_3 (preliminary_average VARCHAR, state VARCHAR)"}, {"answer": "SELECT dates__mdy_ FROM table_16331025_2 WHERE gross_sales = \"$1,271,451\"", "question": "What day was the gross sales $1,271,451?", "context": "CREATE TABLE table_16331025_2 (dates__mdy_ VARCHAR, gross_sales VARCHAR)"}, {"answer": "SELECT sellout___percentage_ FROM table_16331025_2 WHERE gross_sales = \"$1,727,400\"", "question": "What is the sellout % when the gross sales is $1,727,400?", "context": "CREATE TABLE table_16331025_2 (sellout___percentage_ VARCHAR, gross_sales VARCHAR)"}, {"answer": "SELECT COUNT(dates__mdy_) FROM table_16331025_2 WHERE position = 9 AND sellout___percentage_ = \"81%\"", "question": "Who many dates are in position 9 and the sellout is 81%?", "context": "CREATE TABLE table_16331025_2 (dates__mdy_ VARCHAR, position VARCHAR, sellout___percentage_ VARCHAR)"}, {"answer": "SELECT COUNT(tickets_sold___available) FROM table_16331025_2 WHERE sellout___percentage_ = \"82%\"", "question": "What is the position of tickets sold/available when the sellout is 82%?", "context": "CREATE TABLE table_16331025_2 (tickets_sold___available VARCHAR, sellout___percentage_ VARCHAR)"}, {"answer": "SELECT probable_future FROM table_16337329_5 WHERE imperative = \"\u0917\u0930\u0947\u0938\u094d gares 'may you do'\"", "question": "Name the probably futures for \u0917\u0930\u0947\u0938\u094d gares 'may you do'", "context": "CREATE TABLE table_16337329_5 (probable_future VARCHAR, imperative VARCHAR)"}, {"answer": "SELECT imperative FROM table_16337329_5 WHERE past_habitual = \"\u0917\u0930\u093f\u0938\u094d garis 'you did'\"", "question": "Name the imperative for  \u0917\u0930\u093f\u0938\u094d garis 'you did'", "context": "CREATE TABLE table_16337329_5 (imperative VARCHAR, past_habitual VARCHAR)"}, {"answer": "SELECT past_habitual FROM table_16337329_5 WHERE probable_future = \"\u0917\u0930\u094d\u091b\u0938\u094d garchas 'you (will) do'\"", "question": "Name the past habitual for \u0917\u0930\u094d\u091b\u0938\u094d garchas 'you (will) do'", "context": "CREATE TABLE table_16337329_5 (past_habitual VARCHAR, probable_future VARCHAR)"}, {"answer": "SELECT past_habitual FROM table_16337329_5 WHERE probable_future = \"\u0917\u0930\u094d\u091b garcha 'he does'\"", "question": "Name the past habitual for  \u0917\u0930\u094d\u091b garcha 'he does'", "context": "CREATE TABLE table_16337329_5 (past_habitual VARCHAR, probable_future VARCHAR)"}, {"answer": "SELECT injunctive FROM table_16337329_5 WHERE past_habitual = \"\u0917\u0930\u094d\u092f\u094b garyo 'he did'\"", "question": "Name the injunctive for \u0917\u0930\u094d\u092f\u094b garyo 'he did'", "context": "CREATE TABLE table_16337329_5 (injunctive VARCHAR, past_habitual VARCHAR)"}, {"answer": "SELECT COUNT(winnings) FROM table_1637041_2 WHERE avg_finish = \"29.2\"", "question": "How many years did he have an average finish of 29.2?", "context": "CREATE TABLE table_1637041_2 (winnings VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT COUNT(avg_start) FROM table_1637041_2 WHERE position = \"59th\"", "question": "How many years did he finish in 59th?", "context": "CREATE TABLE table_1637041_2 (avg_start VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(starts) FROM table_1637041_2 WHERE year = 2003", "question": "How many instances do you see the year 2003?", "context": "CREATE TABLE table_1637041_2 (starts VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(top_10) FROM table_1637041_2 WHERE position = \"63rd\"", "question": "What is the maximum number of top 10s when he finished in 63rd?", "context": "CREATE TABLE table_1637041_2 (top_10 INTEGER, position VARCHAR)"}, {"answer": "SELECT avg_start FROM table_1637041_2 WHERE winnings = \"$1,663,868\"", "question": "What are the average start(s) when he had $1,663,868?", "context": "CREATE TABLE table_1637041_2 (avg_start VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT position FROM table_1637041_6 WHERE avg_start = \"9.2\"", "question": "What was the position in the season when the average start is 9.2?", "context": "CREATE TABLE table_1637041_6 (position VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT avg_start FROM table_1637041_6 WHERE winnings = \"$7,220\"", "question": "What is the average start for the season with $7,220 in winnings?", "context": "CREATE TABLE table_1637041_6 (avg_start VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT winnings FROM table_1637041_6 WHERE avg_finish = \"11.1\"", "question": "What are the winnings for the season where the average finish is 11.1?", "context": "CREATE TABLE table_1637041_6 (winnings VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_1637041_6 WHERE starts = 22", "question": "What is the maximum number of wins in the season with 22 starts?", "context": "CREATE TABLE table_1637041_6 (wins INTEGER, starts VARCHAR)"}, {"answer": "SELECT all_games FROM table_16372244_1 WHERE team = \"Maryland\"", "question": "What is the all games for Maryland?", "context": "CREATE TABLE table_16372244_1 (all_games VARCHAR, team VARCHAR)"}, {"answer": "SELECT kalamazoo__azo_ FROM table_1637981_7 WHERE saginaw__mbs_ = \"$481.39\"", "question": "What is the fare to Kalamazoo during the time frame when Saginaw's was $481.39?", "context": "CREATE TABLE table_1637981_7 (kalamazoo__azo_ VARCHAR, saginaw__mbs_ VARCHAR)"}, {"answer": "SELECT detroit__dtw_ FROM table_1637981_7 WHERE lansing__lan_ = \"$433.59\"", "question": "When Lansing's fare is $433.59, what is the Detroit fare?", "context": "CREATE TABLE table_1637981_7 (detroit__dtw_ VARCHAR, lansing__lan_ VARCHAR)"}, {"answer": "SELECT lansing__lan_ FROM table_1637981_7 WHERE saginaw__mbs_ = \"$470.47\"", "question": "At a Saginaw fare of $470.47, what is the fare to Lansing?", "context": "CREATE TABLE table_1637981_7 (lansing__lan_ VARCHAR, saginaw__mbs_ VARCHAR)"}, {"answer": "SELECT kalamazoo__azo_ FROM table_1637981_7 WHERE lansing__lan_ = \"$433.59\"", "question": "During the year when Lansing's fare is $433.59, what is the fare to Kalamazoo?", "context": "CREATE TABLE table_1637981_7 (kalamazoo__azo_ VARCHAR, lansing__lan_ VARCHAR)"}, {"answer": "SELECT grand_rapids__grr_ FROM table_1637981_7 WHERE saginaw__mbs_ = \"$470.47\"", "question": "When Saginaw's fare is $470.47, what was the fare to Grand Rapids?", "context": "CREATE TABLE table_1637981_7 (grand_rapids__grr_ VARCHAR, saginaw__mbs_ VARCHAR)"}, {"answer": "SELECT detroit__dtw_ FROM table_1637981_7 WHERE grand_rapids__grr_ = \"$377.29\"", "question": "When Grand Rapids's fare was $377.29, what is the fare to Detroit?", "context": "CREATE TABLE table_1637981_7 (detroit__dtw_ VARCHAR, grand_rapids__grr_ VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_16383772_1 WHERE school = \"Niagara University\"", "question": "Name the maximum enrollment for niagara university", "context": "CREATE TABLE table_16383772_1 (enrollment INTEGER, school VARCHAR)"}, {"answer": "SELECT primary_conference FROM table_16383772_1 WHERE school = \"St. Bonaventure University\"", "question": "Name the primary conference for st. bonaventure university", "context": "CREATE TABLE table_16383772_1 (primary_conference VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(nickname) FROM table_16383772_1 WHERE school = \"St. Bonaventure University\"", "question": "Name the total number of nicknames for st. bonaventure university", "context": "CREATE TABLE table_16383772_1 (nickname VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(affiliation) FROM table_16383772_1 WHERE enrollment = 14898", "question": "Name the total number of affiliation for enrollment being 14898", "context": "CREATE TABLE table_16383772_1 (affiliation VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT acc_home FROM table_16372911_1 WHERE acc__percentage = \".813\"", "question": "what was the ACC home game record for the team who's ACC winning percentage was .813?", "context": "CREATE TABLE table_16372911_1 (acc_home VARCHAR, acc__percentage VARCHAR)"}, {"answer": "SELECT written_by FROM table_16384596_4 WHERE broadcast_order = \"S02 E07\"", "question": "Who wrote the episode for s02 e07?", "context": "CREATE TABLE table_16384596_4 (written_by VARCHAR, broadcast_order VARCHAR)"}, {"answer": "SELECT directed_by FROM table_16384596_4 WHERE broadcast_order = \"S02 E08\"", "question": "Who directed the episode for s02 e08?", "context": "CREATE TABLE table_16384596_4 (directed_by VARCHAR, broadcast_order VARCHAR)"}, {"answer": "SELECT directed_by FROM table_16384596_4 WHERE production_code = 209", "question": "Who directed the episode with the production code 209?", "context": "CREATE TABLE table_16384596_4 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(institution) FROM table_16384648_2 WHERE team_nickname = \"Bobcats\"", "question": "How many schools have the team nickname bobcats? ", "context": "CREATE TABLE table_16384648_2 (institution VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT location FROM table_16384648_2 WHERE team_nickname = \"Bearcats\"", "question": "Which city has the team nickname bearcats? ", "context": "CREATE TABLE table_16384648_2 (location VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT joined_tschl FROM table_16384648_2 WHERE institution = \"University of Pittsburgh\"", "question": "What year did the university of Pittsburgh school join the hockey league? ", "context": "CREATE TABLE table_16384648_2 (joined_tschl VARCHAR, institution VARCHAR)"}, {"answer": "SELECT MIN(joined_tschl) FROM table_16384648_2", "question": "What's the earliest year anybody joined the hockey league? ", "context": "CREATE TABLE table_16384648_2 (joined_tschl INTEGER)"}, {"answer": "SELECT location FROM table_16384648_2 WHERE team_website = \"Cincinnati Hockey\"", "question": "Which city has the cincinnati hockey website?", "context": "CREATE TABLE table_16384648_2 (location VARCHAR, team_website VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_16384648_2 WHERE team_nickname = \"Flyers\"", "question": "For the flyers, what's the minimum capacity? ", "context": "CREATE TABLE table_16384648_2 (capacity INTEGER, team_nickname VARCHAR)"}, {"answer": "SELECT COUNT(pinyin) FROM table_1638437_2 WHERE simplified = \"\u6cb3\u897f\u533a\"", "question": "Name the number of pinyin where simplified is \u6cb3\u897f\u533a", "context": "CREATE TABLE table_1638437_2 (pinyin VARCHAR, simplified VARCHAR)"}, {"answer": "SELECT pinyin FROM table_1638437_2 WHERE population = 44617", "question": "Name the pinyin for where population is 44617", "context": "CREATE TABLE table_1638437_2 (pinyin VARCHAR, population VARCHAR)"}, {"answer": "SELECT pinyin FROM table_1638437_2 WHERE area = \"487\"", "question": "Name the pinyin for 487 area", "context": "CREATE TABLE table_1638437_2 (pinyin VARCHAR, area VARCHAR)"}, {"answer": "SELECT traditional FROM table_1638437_2 WHERE population = 74779", "question": "Name the traditional for population 74779", "context": "CREATE TABLE table_1638437_2 (traditional VARCHAR, population VARCHAR)"}, {"answer": "SELECT english_name FROM table_1638437_2 WHERE simplified = \"\u5d16\u57ce\u9547\"", "question": "Name the english name for  \u5d16\u57ce\u9547", "context": "CREATE TABLE table_1638437_2 (english_name VARCHAR, simplified VARCHAR)"}, {"answer": "SELECT date FROM table_16387700_1 WHERE away_team = \"Richmond\"", "question": "Name the date for richmond", "context": "CREATE TABLE table_16387700_1 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_16387700_1 WHERE date = \"Saturday 16 February\"", "question": "Name the most crowd for saturday 16 february", "context": "CREATE TABLE table_16387700_1 (crowd INTEGER, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_16388230_1 WHERE away_team = \"West Coast\"", "question": "What home team played the West Coast away team?", "context": "CREATE TABLE table_16388230_1 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_16388230_1 WHERE home_team = \"Hawthorn\"", "question": "How many days did Hawthorn play as a home team?", "context": "CREATE TABLE table_16388230_1 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT ground FROM table_16388230_1 WHERE away_team = \"Richmond\"", "question": "The away team of Richmond played on what grounds?", "context": "CREATE TABLE table_16388230_1 (ground VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_16387953_1 WHERE ground = \"Football Park\"", "question": "What was the away team's score at the venue football park?", "context": "CREATE TABLE table_16387953_1 (away_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_16387953_1 WHERE home_team = \"Adelaide\"", "question": "What are the scores for games where the home team is Adelaide?", "context": "CREATE TABLE table_16387953_1 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_16387953_1 WHERE ground = \"Football Park\"", "question": "On what dates where games played at Football Park?", "context": "CREATE TABLE table_16387953_1 (date VARCHAR, ground VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_16387653_1 WHERE away_team = \"Collingwood\"", "question": "What was the home team score against Collingwood?", "context": "CREATE TABLE table_16387653_1 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_16387653_1 WHERE home_team = \"Carlton\"", "question": "Who was the away team playing at Carlton?", "context": "CREATE TABLE table_16387653_1 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_16387653_1 WHERE away_team = \"Richmond\"", "question": "What did the home team score against Richmond?", "context": "CREATE TABLE table_16387653_1 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_16387653_1 WHERE away_team = \"St Kilda\"", "question": "What was the maximum crowd size against St Kilda?", "context": "CREATE TABLE table_16387653_1 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_16387653_1 WHERE home_team = \"Footscray\"", "question": "What to Footscray score at home?", "context": "CREATE TABLE table_16387653_1 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_16388439_3 WHERE ground = \"Bundaberg Rum Stadium\"", "question": "Name the date for bundaberg rum stadium", "context": "CREATE TABLE table_16388439_3 (date VARCHAR, ground VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_16388439_3 WHERE home_team = \"Brisbane Lions\"", "question": "Name the home team score for brisbane lions", "context": "CREATE TABLE table_16388439_3 (home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_16388439_3 WHERE ground = \"Football Park\"", "question": "Name the home team for football park", "context": "CREATE TABLE table_16388439_3 (home_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_16388439_3 WHERE home_team = \"Carlton\"", "question": "Name the away team score for carlton", "context": "CREATE TABLE table_16388439_3 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_16388439_3 WHERE home_team = \"Adelaide\" AND ground = \"Westpac Stadium\"", "question": "Name the date for adelaide for westpac stadium", "context": "CREATE TABLE table_16388439_3 (date VARCHAR, home_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT COUNT(ground) FROM table_16388439_1 WHERE home_team = \"Essendon\"", "question": "Name the total number of ground for essendon", "context": "CREATE TABLE table_16388439_1 (ground VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_16388439_1 WHERE away_team = \"Essendon\"", "question": "Name the most crowd for essendon", "context": "CREATE TABLE table_16388439_1 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT COUNT(home_team) AS score FROM table_16388439_2 WHERE ground = \"Manuka Oval\"", "question": "When ground is manuka oval what is the home team score?", "context": "CREATE TABLE table_16388439_2 (home_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_16388439_2 WHERE crowd = 8642", "question": "When the crowd was 8642 what was the away team's score?", "context": "CREATE TABLE table_16388439_2 (away_team VARCHAR, crowd VARCHAR)"}, {"answer": "SELECT ground FROM table_16388545_1 WHERE crowd = 22537", "question": "Which location had an attendance of 22537?", "context": "CREATE TABLE table_16388545_1 (ground VARCHAR, crowd VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_16388545_1 WHERE ground = \"Telstra Stadium\"", "question": "What was the away team's score of at the game of telstra stadium?", "context": "CREATE TABLE table_16388545_1 (away_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT home_team FROM table_16388545_1 WHERE away_team = \"Carlton\"", "question": "When the away team was Carlton, who was the home team?", "context": "CREATE TABLE table_16388545_1 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT average FROM table_16390001_2 WHERE swimsuit = \"8.266\"", "question": "What was the average for contestants with a swimsuit score of 8.266?", "context": "CREATE TABLE table_16390001_2 (average VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT interview FROM table_16390001_2 WHERE average = \"9.090\"", "question": "What are the interview scores for contestants whose average is 9.090?", "context": "CREATE TABLE table_16390001_2 (interview VARCHAR, average VARCHAR)"}, {"answer": "SELECT average FROM table_16390001_2 WHERE country = \"Pennsylvania\"", "question": "What are the average scores of contestants whose home state is Pennsylvania?", "context": "CREATE TABLE table_16390001_2 (average VARCHAR, country VARCHAR)"}, {"answer": "SELECT evening_gown FROM table_16390001_2 WHERE average = \"9.266\"", "question": "What are the evening gown scores of contestants whose average is 9.266?", "context": "CREATE TABLE table_16390001_2 (evening_gown VARCHAR, average VARCHAR)"}, {"answer": "SELECT average FROM table_16390001_2 WHERE interview = \"8.011\"", "question": "What are the average scores of contestants whose interview score is 8.011?", "context": "CREATE TABLE table_16390001_2 (average VARCHAR, interview VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_16388506_1 WHERE home_team = \"Richmond\"", "question": "What are the home team scores when richmond is the home team?", "context": "CREATE TABLE table_16388506_1 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_16388506_1 WHERE away_team = \"Fremantle\"", "question": "What are the home team scores when fremantle is the away team?", "context": "CREATE TABLE table_16388506_1 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_16388506_1 WHERE home_team = \"Essendon\"", "question": "What is the largest crowd when essendon is the home team?", "context": "CREATE TABLE table_16388506_1 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_16388506_1 WHERE ground = \"Subiaco Oval\"", "question": "Who are the away teams when subiaco oval was the grounds?", "context": "CREATE TABLE table_16388506_1 (away_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT home_team FROM table_16388478_4 WHERE away_team = \"Carlton\"", "question": "Who was the home team when the away team is Carlton?", "context": "CREATE TABLE table_16388478_4 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_16388478_4 WHERE home_team = \"Fremantle\"", "question": "What is the home team score where the home team is Fremantle?", "context": "CREATE TABLE table_16388478_4 (home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_16388478_4 WHERE crowd = 5391", "question": "What was the away team score for the game with a crowd of 5391?", "context": "CREATE TABLE table_16388478_4 (away_team VARCHAR, crowd VARCHAR)"}, {"answer": "SELECT date FROM table_16388478_4 WHERE home_team = \"Adelaide\"", "question": "What date was Adelaide the home team?", "context": "CREATE TABLE table_16388478_4 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_16403890_1 WHERE institution = \"Elon University\"", "question": "How many locations does Elon University have?", "context": "CREATE TABLE table_16403890_1 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_16403890_1 WHERE affiliation = \"Private/Catholic\"", "question": "Private/Catholic school's minimum enrollment is?", "context": "CREATE TABLE table_16403890_1 (enrollment INTEGER, affiliation VARCHAR)"}, {"answer": "SELECT institution FROM table_16403890_1 WHERE team_nickname = \"Colonials\"", "question": "Which school has the mascot of the Colonials?", "context": "CREATE TABLE table_16403890_1 (institution VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT socket FROM table_16400024_1 WHERE sspec_number = \"SL3F7(kC0)SL3FJ(kC0)\"", "question": "What is the socket location for sSPEC number sl3f7(kc0)sl3fj(kc0)?", "context": "CREATE TABLE table_16400024_1 (socket VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT release_date FROM table_16400024_1 WHERE part_number_s_ = \"80525PY500512BX80525U500512BX80525U500512E\"", "question": "What is the release date of part 80525py500512bx80525u500512bx80525u500512e?", "context": "CREATE TABLE table_16400024_1 (release_date VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT COUNT(release_price___usd__) FROM table_16400024_1 WHERE model_number = \"Pentium III 550\"", "question": "How many release prices are there for the Pentium iii 550?", "context": "CREATE TABLE table_16400024_1 (release_price___usd__ VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT model_number FROM table_16400024_1 WHERE release_price___usd__ = \"$496\"", "question": "What is the model number with a release price of $496?", "context": "CREATE TABLE table_16400024_1 (model_number VARCHAR, release_price___usd__ VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_16400024_1 WHERE release_price___usd__ = \"$669\"", "question": "What is the l2 cache for the model with a release price of $669?", "context": "CREATE TABLE table_16400024_1 (l2_cache VARCHAR, release_price___usd__ VARCHAR)"}, {"answer": "SELECT date FROM table_1639689_2 WHERE week = 2", "question": "What day(s) did they play on week 2?", "context": "CREATE TABLE table_1639689_2 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT kickoff FROM table_1639689_2 WHERE date = \"Monday, May 13\"", "question": "What was the kickoff time on monday, may 13?", "context": "CREATE TABLE table_1639689_2 (kickoff VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_16390576_3 WHERE directed_by = \"Jamie Babbit\"", "question": "what is the latest episode in season 2 directed by jamie babbit?", "context": "CREATE TABLE table_16390576_3 (no_in_season INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_16390576_3 WHERE production_code = \"08-02-214\"", "question": "what are the air dates for episodes with the production code 08-02-214", "context": "CREATE TABLE table_16390576_3 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_16390576_3 WHERE no_in_series = 28", "question": "what is the title of episode 28", "context": "CREATE TABLE table_16390576_3 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT dpi FROM table_16409745_1 WHERE dimensions__mm_ = \"280 x 95 x 40\"", "question": "What is the dpi of a scanner with the mm dimensions 280 x 95 x 40?", "context": "CREATE TABLE table_16409745_1 (dpi VARCHAR, dimensions__mm_ VARCHAR)"}, {"answer": "SELECT MAX(pages_per_minute__color_) FROM table_16409745_1 WHERE product = \"Xerox Travel Scanner 100\"", "question": "What is the maximum pages per minute for the Xerox Travel Scanner 100?", "context": "CREATE TABLE table_16409745_1 (pages_per_minute__color_ INTEGER, product VARCHAR)"}, {"answer": "SELECT interface FROM table_16409745_1 WHERE pages_per_minute__color_ = 36", "question": "What interface is used on the scanner that has a 36 pages per minute?", "context": "CREATE TABLE table_16409745_1 (interface VARCHAR, pages_per_minute__color_ VARCHAR)"}, {"answer": "SELECT dimensions__mm_ FROM table_16409745_1 WHERE product = \"Plustek MobileOffice D28 Corporate\"", "question": "What are the mm dimensions of the Plustek Mobileoffice D28 Corporate?", "context": "CREATE TABLE table_16409745_1 (dimensions__mm_ VARCHAR, product VARCHAR)"}, {"answer": "SELECT dimensions__mm_ FROM table_16409745_1 WHERE product = \"Fujitsu fi-6130 A4 Series Scanner\"", "question": "What are the mm dimensions for the Fujitsu fi-6130 a4 Series Scanner?", "context": "CREATE TABLE table_16409745_1 (dimensions__mm_ VARCHAR, product VARCHAR)"}, {"answer": "SELECT dpi FROM table_16409745_1 WHERE max_page_size = \"216mm x 355mm\"", "question": "What is the dpi for the scanner with a max page size of 216mm x 355mm?", "context": "CREATE TABLE table_16409745_1 (dpi VARCHAR, max_page_size VARCHAR)"}, {"answer": "SELECT track_ & _field FROM table_16423070_4 WHERE swimming = \"Lexington\" AND volleyball = \"Madison\"", "question": "which country won swimming track & field when lexington won swimming and madison won volleyball", "context": "CREATE TABLE table_16423070_4 (track_ VARCHAR, _field VARCHAR, swimming VARCHAR, volleyball VARCHAR)"}, {"answer": "SELECT COUNT(golf) FROM table_16423070_4 WHERE soccer = \"Wooster\"", "question": "how many teams won at golf when wooster won soccer", "context": "CREATE TABLE table_16423070_4 (golf VARCHAR, soccer VARCHAR)"}, {"answer": "SELECT soccer FROM table_16423070_4 WHERE volleyball = \"Madison\" AND cross_country = \"Lexington\" AND softball = \"Orrville\"", "question": "Who won soccer when madison won volleyball, lexington won cross country and orrville won softball ", "context": "CREATE TABLE table_16423070_4 (soccer VARCHAR, softball VARCHAR, volleyball VARCHAR, cross_country VARCHAR)"}, {"answer": "SELECT volleyball FROM table_16423070_4 WHERE basketball = \"West Holmes\" AND swimming = \"Wooster\" AND school_year = \"2011-12\"", "question": "Who won volleyball when west holmes won basketball and wooster won swimming in 2011-12", "context": "CREATE TABLE table_16423070_4 (volleyball VARCHAR, school_year VARCHAR, basketball VARCHAR, swimming VARCHAR)"}, {"answer": "SELECT tennis FROM table_16423070_4 WHERE softball = \"Ashland\" AND volleyball = \"Wooster\"", "question": "who won tennis when ashland won softball and wooster won volleybal", "context": "CREATE TABLE table_16423070_4 (tennis VARCHAR, softball VARCHAR, volleyball VARCHAR)"}, {"answer": "SELECT basketball FROM table_16423070_4 WHERE track_ & _field = \"Ashland\" AND cross_country = \"Ashland\"", "question": "who won basketball when ashland won track & field and cross country", "context": "CREATE TABLE table_16423070_4 (basketball VARCHAR, cross_country VARCHAR, track_ VARCHAR, _field VARCHAR)"}, {"answer": "SELECT location FROM table_16432543_1 WHERE established = 1923", "question": "What is the location of the school established in 1923", "context": "CREATE TABLE table_16432543_1 (location VARCHAR, established VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_16432543_1 WHERE nickname = \"Blue Hens\"", "question": "Total enrollment at the school with the nickname Blue Hens", "context": "CREATE TABLE table_16432543_1 (enrollment VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_16432543_1 WHERE established = 1773", "question": "Nickname of the school established in 1773", "context": "CREATE TABLE table_16432543_1 (nickname VARCHAR, established VARCHAR)"}, {"answer": "SELECT established FROM table_16432543_1 WHERE institution = \"Rowan University\"", "question": "What is the year Rowan University was established", "context": "CREATE TABLE table_16432543_1 (established VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(nickname) FROM table_16432543_1 WHERE location = \"Newark, DE\"", "question": "How many nicknames does the school in Newark, DE have", "context": "CREATE TABLE table_16432543_1 (nickname VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_16432543_1 WHERE nickname = \"Mountaineers\"", "question": "Location of the school with the nickname Mountaineers", "context": "CREATE TABLE table_16432543_1 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT written_by FROM table_16432167_1 WHERE production_code = \"942A\"", "question": "Who wrote the episode with the production code of 942A?", "context": "CREATE TABLE table_16432167_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT english_title FROM table_16425614_3 WHERE official__number = 22", "question": "What is the English title for the official number 22 episode?", "context": "CREATE TABLE table_16425614_3 (english_title VARCHAR, official__number VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_16441561_5 WHERE college = \"British Columbia\"", "question": "Which CFL team did the player from British Columbia get drafted to", "context": "CREATE TABLE table_16441561_5 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_16441561_5 WHERE college = \"Laval\"", "question": "Which positions had players from Laval college", "context": "CREATE TABLE table_16441561_5 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_16441561_5 WHERE player = \"Gene Stahl\"", "question": "What position did Gene Stahl play", "context": "CREATE TABLE table_16441561_5 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_16441561_5 WHERE position = \"DB\"", "question": "Which player played DB", "context": "CREATE TABLE table_16441561_5 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_16441561_5 WHERE position = \"LB\"", "question": "Who was the lowest picked LB", "context": "CREATE TABLE table_16441561_5 (pick__number INTEGER, position VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_16441561_5 WHERE player = \"Jeff Brown\"", "question": "How many players named Jeff Brown were drafted", "context": "CREATE TABLE table_16441561_5 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(m_v_ft_s) FROM table_16439764_1 WHERE max_height__ft_ = 23500", "question": "How many feet per second does a shell move where the height range is 23500?", "context": "CREATE TABLE table_16439764_1 (m_v_ft_s INTEGER, max_height__ft_ VARCHAR)"}, {"answer": "SELECT shell__lb_ FROM table_16439764_1 WHERE gun = \"QF 12 pdr 12 cwt\"", "question": "If the gun used is the qf 12 pdr 12 cwt, what is the shell weight?", "context": "CREATE TABLE table_16439764_1 (shell__lb_ VARCHAR, gun VARCHAR)"}, {"answer": "SELECT time_to_ft__m__at_25\u00b0__seconds_ FROM table_16439764_1 WHERE shell__lb_ = \"12.5\" AND max_height__ft_ > 20000.0", "question": "Where the height range is higher than 20000.0 and the shell weight is 12.5, what is the time to feet ratio at 25 degrees?", "context": "CREATE TABLE table_16439764_1 (time_to_ft__m__at_25\u00b0__seconds_ VARCHAR, shell__lb_ VARCHAR, max_height__ft_ VARCHAR)"}, {"answer": "SELECT gun FROM table_16439764_1 WHERE time_to_ft__m__at_55\u00b0__seconds_ = \"18.8\"", "question": "What gun has a time to feet ratio of 18.8 at 55 degrees?", "context": "CREATE TABLE table_16439764_1 (gun VARCHAR, time_to_ft__m__at_55\u00b0__seconds_ VARCHAR)"}, {"answer": "SELECT MAX(m_v_ft_s) FROM table_16439764_1 WHERE time_to_ft__m__at_55\u00b0__seconds_ = \"22.1\"", "question": "What is the maximum foot per second speed where time to feet ratio is 22.1 at 55 degrees?", "context": "CREATE TABLE table_16439764_1 (m_v_ft_s INTEGER, time_to_ft__m__at_55\u00b0__seconds_ VARCHAR)"}, {"answer": "SELECT m_v_ft_s FROM table_16439764_1 WHERE time_to_ft__m__at_25\u00b0__seconds_ = \"9.2\"", "question": "What is the foot per second speed where time to feet ratio is 9.2 at 25 degrees?", "context": "CREATE TABLE table_16439764_1 (m_v_ft_s VARCHAR, time_to_ft__m__at_25\u00b0__seconds_ VARCHAR)"}, {"answer": "SELECT skip FROM table_1644857_2 WHERE pf = 73", "question": "Who was skip for the country whose points for (PF) was 73?", "context": "CREATE TABLE table_1644857_2 (skip VARCHAR, pf VARCHAR)"}, {"answer": "SELECT COUNT(stolen_ends) FROM table_1644857_2 WHERE country = France", "question": "How many times is a score for stolen ends recorded for France?", "context": "CREATE TABLE table_1644857_2 (stolen_ends VARCHAR, country VARCHAR, France VARCHAR)"}, {"answer": "SELECT MAX(Ends) AS lost FROM table_1644857_2 WHERE pf = 87", "question": "How many ends were lost by the country whose points for (PF) was 87?", "context": "CREATE TABLE table_1644857_2 (Ends INTEGER, pf VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_16446652_1 WHERE treasurer = \"Dave Reid\"", "question": "How many seasons was Dave Reid treasurer?", "context": "CREATE TABLE table_16446652_1 (season VARCHAR, treasurer VARCHAR)"}, {"answer": "SELECT season FROM table_16446652_1 WHERE president = \"Jonny Leadbeater\"", "question": "When was Jonny Leadbeater President?", "context": "CREATE TABLE table_16446652_1 (season VARCHAR, president VARCHAR)"}, {"answer": "SELECT skip FROM table_1644876_2 WHERE stolen_ends = 14", "question": "Who was the skip with 14 stolen ends?", "context": "CREATE TABLE table_1644876_2 (skip VARCHAR, stolen_ends VARCHAR)"}, {"answer": "SELECT MIN(l) FROM table_1644876_2", "question": "What is the fewest number of losses?", "context": "CREATE TABLE table_1644876_2 (l INTEGER)"}, {"answer": "SELECT shot__percentage FROM table_1644876_2 WHERE locale = Switzerland", "question": "What are the shot percentages for teams that played in switzerland?", "context": "CREATE TABLE table_1644876_2 (shot__percentage VARCHAR, locale VARCHAR, Switzerland VARCHAR)"}, {"answer": "SELECT MIN(60 AS _to_64) FROM table_16457934_4", "question": "what is the minimum of 60 -64?", "context": "CREATE TABLE table_16457934_4 (Id VARCHAR)"}, {"answer": "SELECT COUNT(province) FROM table_16489766_2 WHERE chinese = \"\u91cd\u5e86\"", "question": "What province has the Chinese translation \u91cd\u5e86?", "context": "CREATE TABLE table_16489766_2 (province VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT COUNT(administrative_population__2010_) FROM table_16489766_2 WHERE city = \"Shanghai\"", "question": "What is the total administrative population of Shanghai?", "context": "CREATE TABLE table_16489766_2 (administrative_population__2010_ VARCHAR, city VARCHAR)"}, {"answer": "SELECT MAX(administrative_population__2010_) FROM table_16489766_2 WHERE chinese = \"\u6606\u660e\"", "question": "What is the maximum administrative population of the city with Chinese translation \u6606\u660e?", "context": "CREATE TABLE table_16489766_2 (administrative_population__2010_ INTEGER, chinese VARCHAR)"}, {"answer": "SELECT COUNT(urban_population__2010_) FROM table_16489766_2 WHERE pinyin = \"Ch\u00e1ngch\u016bn\"", "question": "What is the total urban population of the city with the pinyin translation ch\u00e1ngch\u016bn?", "context": "CREATE TABLE table_16489766_2 (urban_population__2010_ VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT player FROM table_16494599_1 WHERE years_for_grizzlies = \"2009-2013\"", "question": "What player was on the Grizzlies from 2009-2013?", "context": "CREATE TABLE table_16494599_1 (player VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT nationality FROM table_16494599_1 WHERE school_club_team = \"South Florida\"", "question": "What nationality is the player who went to school at South Florida?", "context": "CREATE TABLE table_16494599_1 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_16494599_1 WHERE years_for_grizzlies = \"1995-1996\"", "question": "What position is the player who was on the Grizzlies from 1995-1996?", "context": "CREATE TABLE table_16494599_1 (position VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_16494599_1 WHERE years_for_grizzlies = \"2000-2002\"", "question": "How may players played for the Grizzlies from 2000-2002?", "context": "CREATE TABLE table_16494599_1 (no VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT miles__km_ FROM table_16493961_1 WHERE date = \"June 7\"", "question": "Name the miles for june 7", "context": "CREATE TABLE table_16493961_1 (miles__km_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT driver FROM table_16493961_1 WHERE race_time = \"2:34:21\"", "question": "Name the driver for race time being 2:34:21", "context": "CREATE TABLE table_16493961_1 (driver VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT driver FROM table_16493961_1 WHERE date = \"June 23\" AND team = \"Penske Racing\"", "question": "Name the driver for june 23 and team of penske racing", "context": "CREATE TABLE table_16493961_1 (driver VARCHAR, date VARCHAR, team VARCHAR)"}, {"answer": "SELECT directed_by FROM table_16471432_4 WHERE series__number = 50", "question": "Who was the director for the episode in season #50?", "context": "CREATE TABLE table_16471432_4 (directed_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_16471432_4 WHERE series__number = 62", "question": "How many directors were there in total for the episode with series #62?", "context": "CREATE TABLE table_16471432_4 (directed_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_16494599_10 WHERE school_club_team = \"Duke\"", "question": "What are the nationalities of players who attended duke?", "context": "CREATE TABLE table_16494599_10 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_16494599_10 WHERE player = \"Casey Jacobsen\"", "question": "How many nationalities does athlete Casey Jacobsen have?", "context": "CREATE TABLE table_16494599_10 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_16494599_10 WHERE school_club_team = \"Stanford\"", "question": "Who are the players that have attended Stanford?", "context": "CREATE TABLE table_16494599_10 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_16494599_10 WHERE position = \"Guard\"", "question": "How many athletes play the position of guard?", "context": "CREATE TABLE table_16494599_10 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_16494599_10 WHERE school_club_team = \"Minnesota\"", "question": "During what years did athletes who attended school in Minnesota play for the Grizzlies?", "context": "CREATE TABLE table_16494599_10 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_16494599_2 WHERE school_club_team = \"DePaul\"", "question": "How many players went to depaul?", "context": "CREATE TABLE table_16494599_2 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_16494599_3 WHERE years_for_grizzlies = \"2011\"", "question": "What school did the player who was with the grizzles in 2011 attend?", "context": "CREATE TABLE table_16494599_3 (school_club_team VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT player FROM table_16494599_3 WHERE school_club_team = \"Missouri\"", "question": "What players attended missouri?", "context": "CREATE TABLE table_16494599_3 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_16494599_4 WHERE school_club_team = \"Seton Hall\"", "question": "What position(s) does the player from seton hall play?", "context": "CREATE TABLE table_16494599_4 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_16494599_4 WHERE years_for_grizzlies = \"1999\"", "question": "What number does the player who was with the grizzles in 1999 wear?", "context": "CREATE TABLE table_16494599_4 (no INTEGER, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT player FROM table_16494599_4 WHERE position = \"Guard\"", "question": "What players play guard?", "context": "CREATE TABLE table_16494599_4 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_16494599_4 WHERE school_club_team = \"Bowling Green\"", "question": "What position(s) do players from bowling green play?", "context": "CREATE TABLE table_16494599_4 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_16512618_1 WHERE manager = \"Leslie Mann\"", "question": "Name the most losses for leslie mann", "context": "CREATE TABLE table_16512618_1 (losses INTEGER, manager VARCHAR)"}, {"answer": "SELECT vacator FROM table_1651764_3 WHERE district = \"New Jersey 2nd\"", "question": "who is the vacator whre the district is new jersey 2nd?", "context": "CREATE TABLE table_1651764_3 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_1652224_5 WHERE reason_for_change = \"Died August 17, 1954\"", "question": "what is the date the successor seated because the person died august 17, 1954?", "context": "CREATE TABLE table_1652224_5 (date_successor_seated VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT successor FROM table_1652224_5 WHERE district = \"Ohio 15th\"", "question": "who was the successor for district ohio 15th?", "context": "CREATE TABLE table_1652224_5 (successor VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(reason_for_change) FROM table_1652224_5 WHERE district = \"Michigan 3rd\"", "question": "what is the total number for reason for change is district michigan 3rd?", "context": "CREATE TABLE table_1652224_5 (reason_for_change VARCHAR, district VARCHAR)"}, {"answer": "SELECT date_of_death FROM table_16527640_3 WHERE player = \"Archie Roberts\"", "question": "What day did ARchie Roberts die?", "context": "CREATE TABLE table_16527640_3 (date_of_death VARCHAR, player VARCHAR)"}, {"answer": "SELECT location FROM table_16527640_3 WHERE vfl_games = 9", "question": "What location had a VFL Game number of 9?", "context": "CREATE TABLE table_16527640_3 (location VARCHAR, vfl_games VARCHAR)"}, {"answer": "SELECT vfl_games FROM table_16527640_3 WHERE location = \"off Goodenough Island Milne Bay\"", "question": "How many VFL games were located off Goodenough Island Milne Bay?", "context": "CREATE TABLE table_16527640_3 (vfl_games VARCHAR, location VARCHAR)"}, {"answer": "SELECT 3 AS rd_stage FROM table_16537783_2 WHERE parameter = \"Thrust\"", "question": "Name the 3rd stage for parameter of thrust ", "context": "CREATE TABLE table_16537783_2 (parameter VARCHAR)"}, {"answer": "SELECT 1 AS st_stage FROM table_16537783_2 WHERE parameter = \"Diameter\"", "question": "Name the 1st stage for parameter being diameter", "context": "CREATE TABLE table_16537783_2 (parameter VARCHAR)"}, {"answer": "SELECT archbishop FROM table_1656555_1 WHERE ordained_bishop = \"November 30, 1925\"", "question": "Which archbishop was ordained as bishop November 30, 1925?", "context": "CREATE TABLE table_1656555_1 (archbishop VARCHAR, ordained_bishop VARCHAR)"}, {"answer": "SELECT died FROM table_1656555_1 WHERE ordained_bishop = \"April 26, 1927\"", "question": "What is the death date of the archbishop who was ordained as bishop April 26, 1927?", "context": "CREATE TABLE table_1656555_1 (died VARCHAR, ordained_bishop VARCHAR)"}, {"answer": "SELECT COUNT(Appointed) AS archbishop FROM table_1656555_1 WHERE ordained_priest = \"December 20, 1959\"", "question": "How many appointed archbishops were ordained as priests on December 20, 1959", "context": "CREATE TABLE table_1656555_1 (Appointed VARCHAR, ordained_priest VARCHAR)"}, {"answer": "SELECT ordained_bishop FROM table_1656555_1 WHERE ordained_priest = \"December 1838\"", "question": "What date was the person ordained as a priest in December 1838 ordained as a bishop?", "context": "CREATE TABLE table_1656555_1 (ordained_bishop VARCHAR, ordained_priest VARCHAR)"}, {"answer": "SELECT ordained_priest FROM table_1656555_1 WHERE vacated_throne = \"August 18, 1885\"", "question": "When was the archbishop who vacated the throne on August 18, 1885 ordained as a priest?", "context": "CREATE TABLE table_1656555_1 (ordained_priest VARCHAR, vacated_throne VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_16570286_4 WHERE best_bowling = \"4/125\"", "question": "How many players Bowled 4/125?", "context": "CREATE TABLE table_16570286_4 (player VARCHAR, best_bowling VARCHAR)"}, {"answer": "SELECT MAX(wickets) FROM table_16570286_4 WHERE average = \"22.66\"", "question": "What number of wickets were there when the average was 22.66?", "context": "CREATE TABLE table_16570286_4 (wickets INTEGER, average VARCHAR)"}, {"answer": "SELECT wickets FROM table_16570286_4 WHERE average = \"22.66\"", "question": "How many wickets were there when average was 22.66?", "context": "CREATE TABLE table_16570286_4 (wickets VARCHAR, average VARCHAR)"}, {"answer": "SELECT best_bowling FROM table_16570286_4 WHERE average = \"23.33\"", "question": "What was the best bowling score when the average was 23.33?", "context": "CREATE TABLE table_16570286_4 (best_bowling VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_16570286_4 WHERE wickets = 11", "question": "How many matches had 11 wickets?", "context": "CREATE TABLE table_16570286_4 (matches INTEGER, wickets VARCHAR)"}, {"answer": "SELECT MAX(wickets) FROM table_16570286_4 WHERE player = \"Alec Bedser\"", "question": "How many wickets did Alec bedser have?", "context": "CREATE TABLE table_16570286_4 (wickets INTEGER, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_16575609_1 WHERE player = \"Dimitri Tsoumpas\"", "question": "Who picked dimitri tsoumpas?", "context": "CREATE TABLE table_16575609_1 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_16575609_1 WHERE cfl_team = \"Winnipeg Blue Bombers\"", "question": "What position did the winnipeg blue bombers draft?", "context": "CREATE TABLE table_16575609_1 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_16575609_1 WHERE player = \"Brendon LaBatte\"", "question": "Where did Brendon Labatte get picked?", "context": "CREATE TABLE table_16575609_1 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_16575609_1 WHERE college = \"Weber State\"", "question": "Who picked a player from Weber State?", "context": "CREATE TABLE table_16575609_1 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_16575609_1 WHERE college = \"Louisiana-Lafayette\"", "question": "What position was taken out of Louisiana-Lafayette?", "context": "CREATE TABLE table_16575609_1 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_16575609_4 WHERE cfl_team = \"Calgary Stampeders\"", "question": "Name the college for calgary stampeders", "context": "CREATE TABLE table_16575609_4 (college VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_16575609_4 WHERE cfl_team = \"Edmonton Eskimos\"", "question": "Name the most pick number for cfl team being edmonton eskimos", "context": "CREATE TABLE table_16575609_4 (pick__number INTEGER, cfl_team VARCHAR)"}, {"answer": "SELECT COUNT(original_airdate) FROM table_16581695_3 WHERE production_code = 210", "question": "How many days are associated with production code 210?", "context": "CREATE TABLE table_16581695_3 (original_airdate VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_16581695_3 WHERE production_code = 211", "question": "How many titles have a production code of 211?", "context": "CREATE TABLE table_16581695_3 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_16581695_3 WHERE production_code = 204", "question": "How many seasons have a production code of 204?", "context": "CREATE TABLE table_16581695_3 (no_in_season VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_16581695_3 WHERE written_by = \"Matt Wayne\"", "question": "What title was written by Matt Wayne?", "context": "CREATE TABLE table_16581695_3 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_16581695_4 WHERE production_code = \"303\"", "question": "What is the series episode number of the episode with production code 303?", "context": "CREATE TABLE table_16581695_4 (no_in_series VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT production_code FROM table_16581695_4 WHERE no_in_season = \"15\"", "question": "What is the production code for episode 15 in season 3?", "context": "CREATE TABLE table_16581695_4 (production_code VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT directed_by FROM table_16581695_4 WHERE no_in_season = \"12\"", "question": "Who directed episode 12 in season 3?", "context": "CREATE TABLE table_16581695_4 (directed_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT tree_species FROM table_16577990_1 WHERE total_plant_species = 258", "question": "How many tree species are listed when the total plant species is 258?", "context": "CREATE TABLE table_16577990_1 (tree_species VARCHAR, total_plant_species VARCHAR)"}, {"answer": "SELECT COUNT(tree_species) FROM table_16577990_1 WHERE total_plant_species = 113", "question": "How many tree species are there when the total plant species is 113?", "context": "CREATE TABLE table_16577990_1 (tree_species VARCHAR, total_plant_species VARCHAR)"}, {"answer": "SELECT MIN(size_in_km\u00b2) FROM table_16577990_1 WHERE central_forest_reserve = \"Itwara\"", "question": "What is the size of Itwara central forest reserve?", "context": "CREATE TABLE table_16577990_1 (size_in_km\u00b2 INTEGER, central_forest_reserve VARCHAR)"}, {"answer": "SELECT tree_species FROM table_16577990_1 WHERE central_forest_reserve = \"Kitechura\"", "question": "How many tree species are in the kitechura reserve?", "context": "CREATE TABLE table_16577990_1 (tree_species VARCHAR, central_forest_reserve VARCHAR)"}, {"answer": "SELECT title FROM table_16617025_1 WHERE us_viewers__millions_ = \"17.93\"", "question": "What episode titles have 17.93 million U.S. viewers?", "context": "CREATE TABLE table_16617025_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_16617025_1 WHERE us_viewers__millions_ = \"20.94\"", "question": "What episode titles have 20.94 million U.S. viewers?", "context": "CREATE TABLE table_16617025_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT season__number FROM table_16617025_1 WHERE directed_by = \"Kate Woods\"", "question": "In what seasons did Kate Woods direct Without A Trace?", "context": "CREATE TABLE table_16617025_1 (season__number VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_16617025_1 WHERE season__number = 8", "question": "Who wrote Season 8?", "context": "CREATE TABLE table_16617025_1 (written_by VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT joined_opec FROM table_166346_1 WHERE production___bbl__day_ = \"1,213,000 (21st)\"", "question": "When did the country that produced 1,213,000 (21st) bbl/day join Opec?", "context": "CREATE TABLE table_166346_1 (joined_opec VARCHAR, production___bbl__day_ VARCHAR)"}, {"answer": "SELECT MIN(area__km\u00b2_) FROM table_166346_1 WHERE production___bbl__day_ = \"3,200,000 (12th)\"", "question": "What was the minimum area in square kilometers that produced 3,200,000 (12th) bbl/day?", "context": "CREATE TABLE table_166346_1 (area__km\u00b2_ INTEGER, production___bbl__day_ VARCHAR)"}, {"answer": "SELECT MAX(population__july_2012_) FROM table_166346_1 WHERE area__km\u00b2_ = 2149690", "question": "What is the highest poplulation in July 2012 in the country with an area of 2149690 square kilometers?", "context": "CREATE TABLE table_166346_1 (population__july_2012_ INTEGER, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT region FROM table_166346_1 WHERE production___bbl__day_ = \"1,213,000 (21st)\"", "question": "Which regions had a production (bbl/day) of 1,213,000 (21st)?", "context": "CREATE TABLE table_166346_1 (region VARCHAR, production___bbl__day_ VARCHAR)"}, {"answer": "SELECT country FROM table_166346_1 WHERE production___bbl__day_ = \"2,494,000 (10th)\"", "question": "Which country had a production (bbl/day) of 2,494,000 (10th)?", "context": "CREATE TABLE table_166346_1 (country VARCHAR, production___bbl__day_ VARCHAR)"}, {"answer": "SELECT approved_treatment_s_ FROM table_1661124_1 WHERE target = \"CD30\"", "question": "What are all the approved treatments for the target CD30?", "context": "CREATE TABLE table_1661124_1 (approved_treatment_s_ VARCHAR, target VARCHAR)"}, {"answer": "SELECT brand_name FROM table_1661124_1 WHERE antibody = \"Brentuximab vedotin\"", "question": "What is the brand name for the antibody Brentuximab Vedotin?", "context": "CREATE TABLE table_1661124_1 (brand_name VARCHAR, antibody VARCHAR)"}, {"answer": "SELECT COUNT(target) FROM table_1661124_1 WHERE approval_date = 1997", "question": "How many targets are there with an approval date of 1997?", "context": "CREATE TABLE table_1661124_1 (target VARCHAR, approval_date VARCHAR)"}, {"answer": "SELECT approved_treatment_s_ FROM table_1661124_1 WHERE antibody = \"Bevacizumab\"", "question": "What are the approved treatments when the antibody is bevacizumab?", "context": "CREATE TABLE table_1661124_1 (approved_treatment_s_ VARCHAR, antibody VARCHAR)"}, {"answer": "SELECT target FROM table_1661124_1 WHERE approved_treatment_s_ = \"non-Hodgkin lymphoma\"", "question": "What is the target when the approved treatment is non-hodgkin lymphoma?", "context": "CREATE TABLE table_1661124_1 (target VARCHAR, approved_treatment_s_ VARCHAR)"}, {"answer": "SELECT target FROM table_1661124_1 WHERE approval_date = 2006", "question": "What is the target with an approval date of 2006?", "context": "CREATE TABLE table_1661124_1 (target VARCHAR, approval_date VARCHAR)"}, {"answer": "SELECT MIN(rural), __percentage FROM table_16645_1 WHERE year__january_ = 1979", "question": "What is the rural population percentage in 1979?", "context": "CREATE TABLE table_16645_1 (__percentage VARCHAR, rural INTEGER, year__january_ VARCHAR)"}, {"answer": "SELECT COUNT(urban), __percentage FROM table_16645_1 WHERE population__000_ = 14685", "question": "How many percentage figures are given for the urban population when the total population number is 14685?", "context": "CREATE TABLE table_16645_1 (__percentage VARCHAR, urban VARCHAR, population__000_ VARCHAR)"}, {"answer": "SELECT islam FROM table_16642_1 WHERE ethnicity = \"Tajik\"", "question": "When tajik is the ethnicity  what is islam?", "context": "CREATE TABLE table_16642_1 (islam VARCHAR, ethnicity VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_16654785_2 WHERE length__m_ = 455", "question": "How many had a length of 455?", "context": "CREATE TABLE table_16654785_2 (name VARCHAR, length__m_ VARCHAR)"}, {"answer": "SELECT MIN(average_climb___percentage_) FROM table_16654785_2 WHERE name = \"Tenbosse\"", "question": "What is the average climb for Tenbosse?", "context": "CREATE TABLE table_16654785_2 (average_climb___percentage_ INTEGER, name VARCHAR)"}, {"answer": "SELECT number FROM table_16654785_2 WHERE kilometer = 233", "question": "How many have a kilometers of 233?", "context": "CREATE TABLE table_16654785_2 (number VARCHAR, kilometer VARCHAR)"}, {"answer": "SELECT COUNT(average_climb___percentage_) FROM table_16654785_2 WHERE length__m_ = 375", "question": "How many have a length of 375?", "context": "CREATE TABLE table_16654785_2 (average_climb___percentage_ VARCHAR, length__m_ VARCHAR)"}, {"answer": "SELECT playoffs FROM table_16636344_1 WHERE year = \"2011\"", "question": "What was the team's playoff status in 2011?", "context": "CREATE TABLE table_16636344_1 (playoffs VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_16636344_1 WHERE year = \"2010\"", "question": "What was the team's league in 2010?", "context": "CREATE TABLE table_16636344_1 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_16636344_1 WHERE regular_season = \"2nd, Mid Atlantic\"", "question": "What is the league name for the regular season status of 2nd, mid atlantic?", "context": "CREATE TABLE table_16636344_1 (league VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_16670746_2 WHERE circuit = \"Okayama International circuit\"", "question": "Who was the winning driver at Okayama International Circuit?", "context": "CREATE TABLE table_16670746_2 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_16670746_2 WHERE winning_team = \"TOM'S Racing\"", "question": "Who had the fastest lap when the winning team was Tom's Racing?", "context": "CREATE TABLE table_16670746_2 (fastest_lap VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_16670746_2 WHERE winning_team = \"Team Impul\" AND circuit = \"Twin Ring Motegi\"", "question": "Who had the fastest lap in the race won by Team Impul at the Twin Ring Motegi circuit?", "context": "CREATE TABLE table_16670746_2 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_16677874_2 WHERE game = 13", "question": "How many opponents did the team play in week 13?", "context": "CREATE TABLE table_16677874_2 (opponents VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(opponents) FROM table_16677887_2 WHERE date = \"Sept. 14\"", "question": "How many points did the opponent score on Sept. 14?", "context": "CREATE TABLE table_16677887_2 (opponents INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_16677887_2 WHERE bills_first_downs = 23", "question": "What team were the bills playing where their first down was 23?", "context": "CREATE TABLE table_16677887_2 (opponent VARCHAR, bills_first_downs VARCHAR)"}, {"answer": "SELECT record FROM table_16677887_2 WHERE date = \"Sept. 14\"", "question": "What was the record for the game on Sept. 14?", "context": "CREATE TABLE table_16677887_2 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(gore_hundred) FROM table_16677738_1 WHERE spelthorne_hundred = 12743", "question": "When 12743 is the spelthorne what is the largest gore hundred?", "context": "CREATE TABLE table_16677738_1 (gore_hundred INTEGER, spelthorne_hundred VARCHAR)"}, {"answer": "SELECT finsbury_division FROM table_16677738_1 WHERE inns_of_court_and_chancery = 1546", "question": "When 1546 is inns of court and chancery what is the finsbury division?", "context": "CREATE TABLE table_16677738_1 (finsbury_division VARCHAR, inns_of_court_and_chancery VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_16677738_1", "question": "What is the lowest overall year?", "context": "CREATE TABLE table_16677738_1 (year INTEGER)"}, {"answer": "SELECT inns_of_court_and_chancery FROM table_16677738_1 WHERE without_the_walls = 70489", "question": "When 70489 is without walls what is the inns of court and chancery?", "context": "CREATE TABLE table_16677738_1 (inns_of_court_and_chancery VARCHAR, without_the_walls VARCHAR)"}, {"answer": "SELECT MIN(without_the_walls) FROM table_16677738_1 WHERE within_the_walls > 56174.0", "question": "When within the walls is larger than 56174.0 what is the lowest amount without the walls?", "context": "CREATE TABLE table_16677738_1 (without_the_walls INTEGER, within_the_walls INTEGER)"}, {"answer": "SELECT MAX(holborn_division) FROM table_16677738_1 WHERE tower_division = 272966", "question": "When 272966 is the tower division what is the highest holborn division?", "context": "CREATE TABLE table_16677738_1 (holborn_division INTEGER, tower_division VARCHAR)"}, {"answer": "SELECT MAX(stolen_ends_against) FROM table_16684420_2 WHERE country = Japan", "question": "What is the maximum number of stolen ends against for Japan? ", "context": "CREATE TABLE table_16684420_2 (stolen_ends_against INTEGER, country VARCHAR, Japan VARCHAR)"}, {"answer": "SELECT skip FROM table_16684420_2 WHERE stolen_ends_against = 13", "question": "Who was the skip when the stolen ends against was 13? ", "context": "CREATE TABLE table_16684420_2 (skip VARCHAR, stolen_ends_against VARCHAR)"}, {"answer": "SELECT batting_partners FROM table_1670921_1 WHERE season = \"1997\"", "question": "Who are the batting partners for the 1997 season?", "context": "CREATE TABLE table_1670921_1 (batting_partners VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_1670921_1 WHERE wicket = \"7th\"", "question": "Which season reported wickets of 7th?", "context": "CREATE TABLE table_1670921_1 (season VARCHAR, wicket VARCHAR)"}, {"answer": "SELECT fielding_team FROM table_1670921_1 WHERE wicket = \"9th\"", "question": "Which team is 9th in wickets?", "context": "CREATE TABLE table_1670921_1 (fielding_team VARCHAR, wicket VARCHAR)"}, {"answer": "SELECT venue FROM table_1670921_1 WHERE batting_partners = \"Mahela Jayawardene and Prasanna Jayawardene\"", "question": "What is the venue for batting partners Mahela Jayawardene and Prasanna Jayawardene", "context": "CREATE TABLE table_1670921_1 (venue VARCHAR, batting_partners VARCHAR)"}, {"answer": "SELECT COUNT(batting_team) FROM table_1670921_1 WHERE wicket = \"3rd\"", "question": "How many teams are listed for 3rd wickets?", "context": "CREATE TABLE table_1670921_1 (batting_team VARCHAR, wicket VARCHAR)"}, {"answer": "SELECT COUNT(batting_partners) FROM table_1670921_2 WHERE season = \"2006\"", "question": "How many total batting partners were most successful in the 2006 season?", "context": "CREATE TABLE table_1670921_2 (batting_partners VARCHAR, season VARCHAR)"}, {"answer": "SELECT batting_partners FROM table_1670921_2 WHERE batting_team = \"Pakistan\"", "question": "What batting partners batted for pakistan?", "context": "CREATE TABLE table_1670921_2 (batting_partners VARCHAR, batting_team VARCHAR)"}, {"answer": "SELECT runs FROM table_1670921_2 WHERE fielding_team = \"Bangladesh\"", "question": "How many runs when bangladesh was the fielding team?", "context": "CREATE TABLE table_1670921_2 (runs VARCHAR, fielding_team VARCHAR)"}, {"answer": "SELECT wicket FROM table_1670921_2 WHERE runs = \"451\" AND fielding_team = \"India\"", "question": "What are the wickets when there are 451 runs and india is the fielding team?", "context": "CREATE TABLE table_1670921_2 (wicket VARCHAR, runs VARCHAR, fielding_team VARCHAR)"}, {"answer": "SELECT batting_partners FROM table_1670921_2 WHERE venue = \"Sydney\"", "question": "What batting partners played in sydney?", "context": "CREATE TABLE table_1670921_2 (batting_partners VARCHAR, venue VARCHAR)"}, {"answer": "SELECT batting_partners FROM table_1670921_2 WHERE season = \"2004\"", "question": "What batting partners were the most successful in 2004?", "context": "CREATE TABLE table_1670921_2 (batting_partners VARCHAR, season VARCHAR)"}, {"answer": "SELECT falcons_points FROM table_16710829_2 WHERE record = \"3-2\"", "question": "Name the falcons points for record of 3-2", "context": "CREATE TABLE table_16710829_2 (falcons_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_16710829_2 WHERE game = 9", "question": "Name the date for game 9", "context": "CREATE TABLE table_16710829_2 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_16710829_2 WHERE attendance = 54774", "question": "Name the max game for attendance being 54774", "context": "CREATE TABLE table_16710829_2 (game INTEGER, attendance VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_16710829_2 WHERE opponent = \"New Orleans Saints\"", "question": "Name the total number of results for new orleans saints", "context": "CREATE TABLE table_16710829_2 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_16710971_2 WHERE record = \"1-3\"", "question": "What is the total number of opponents for the game recorded as 1-3?", "context": "CREATE TABLE table_16710971_2 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT result FROM table_16710971_2 WHERE record = \"1-2\"", "question": "What was the result of the 1978 Atlanta Falcons season when the record was 1-2?", "context": "CREATE TABLE table_16710971_2 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT falcons_points FROM table_16710971_2 WHERE record = \"4-4\"", "question": "How many points did the Falcons score when the record was 4-4? ", "context": "CREATE TABLE table_16710971_2 (falcons_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_16710971_2 WHERE record = \"6-4\"", "question": "How many opponents were there for the game recorded as 6-4 in the Atlanta Falcons 1978 season?", "context": "CREATE TABLE table_16710971_2 (opponents VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(falcons_points) FROM table_16710971_2 WHERE opponent = \"San Francisco 49ers\"", "question": "In games where the opponent was the San Francisco 49ers what was the minimum amount of points scored?", "context": "CREATE TABLE table_16710971_2 (falcons_points INTEGER, opponent VARCHAR)"}, {"answer": "SELECT pts FROM table_16710541_2 WHERE team = \"Kiefer-Bos-Castrol Honda\"", "question": "How many points did kiefer-bos-castrol honda have?", "context": "CREATE TABLE table_16710541_2 (pts VARCHAR, team VARCHAR)"}, {"answer": "SELECT position FROM table_16710541_2 WHERE motorcycle = \"KTM\"", "question": "What result did the ktm motorcycle achieve?", "context": "CREATE TABLE table_16710541_2 (position VARCHAR, motorcycle VARCHAR)"}, {"answer": "SELECT MIN(poles) FROM table_16710541_2", "question": "What is the lowest number of poles?", "context": "CREATE TABLE table_16710541_2 (poles INTEGER)"}, {"answer": "SELECT MIN(top_5) FROM table_1671401_1", "question": "Name the least top 5", "context": "CREATE TABLE table_1671401_1 (top_5 INTEGER)"}, {"answer": "SELECT top_5 FROM table_1671401_3 WHERE winnings = \"$52,595\"", "question": "name the top 5 where the winnings is $52,595", "context": "CREATE TABLE table_1671401_3 (top_5 VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT COUNT(top_10) FROM table_1671401_3 WHERE position = \"51st\"", "question": "name the total number of top 10 also where the position is 51st ", "context": "CREATE TABLE table_1671401_3 (top_10 VARCHAR, position VARCHAR)"}, {"answer": "SELECT winnings FROM table_1671401_3 WHERE starts = 7", "question": "name all the winnings that the start appears to be 7", "context": "CREATE TABLE table_1671401_3 (winnings VARCHAR, starts VARCHAR)"}, {"answer": "SELECT COUNT(winnings) FROM table_1671401_2 WHERE year = 1995", "question": "Name the total number of winnings for 1995", "context": "CREATE TABLE table_1671401_2 (winnings VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_1671401_2 WHERE avg_finish = \"5.0\"", "question": "Name the max top 5 for 5.0 avg finish", "context": "CREATE TABLE table_1671401_2 (top_5 INTEGER, avg_finish VARCHAR)"}, {"answer": "SELECT poles FROM table_1671401_2 WHERE avg_finish = \"26.8\"", "question": "Name the poles for avg finish is 26.8", "context": "CREATE TABLE table_1671401_2 (poles VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT COUNT(team_s_) FROM table_1671401_2 WHERE top_10 = 5", "question": "Name the total number of teams for top 10 being 5", "context": "CREATE TABLE table_1671401_2 (team_s_ VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT COUNT(mens_u20) FROM table_16724844_1 WHERE womens_40 = \"Sydney Scorpions def North Queensland Cyclones\"", "question": "How many times was the mens u20 recorded when the Womens 40 were Sydney Scorpions def North Queensland Cyclones?", "context": "CREATE TABLE table_16724844_1 (mens_u20 VARCHAR, womens_40 VARCHAR)"}, {"answer": "SELECT mens_40 FROM table_16724844_1 WHERE mens_u20 = \"Southern Suns def Gold Coast Sharks\"", "question": "What were the results for mens 40 when the mens u20 was Southern Suns def Gold Coast Sharks?", "context": "CREATE TABLE table_16724844_1 (mens_40 VARCHAR, mens_u20 VARCHAR)"}, {"answer": "SELECT mens_open FROM table_16724844_1 WHERE womens_40 = \"Sydney Scorpions defeated Hunter Hornets\"", "question": "What were the results of the mens open when the  womens 40 was Sydney Scorpions defeated Hunter Hornets?", "context": "CREATE TABLE table_16724844_1 (mens_open VARCHAR, womens_40 VARCHAR)"}, {"answer": "SELECT womens_u20 FROM table_16724844_1 WHERE mens_45 = \"SunWest Razorbacks def Northern Eagles\"", "question": "What were the results of the womens u20 when the mens 45 was  Sunwest Razorbacks def Northern Eagles?", "context": "CREATE TABLE table_16724844_1 (womens_u20 VARCHAR, mens_45 VARCHAR)"}, {"answer": "SELECT mens_45 FROM table_16724844_1 WHERE mens_40 = \"SunWest Razorbacks def Sydney Mets\"", "question": "What was the mens 45 when mens 40 was Sunwest Razorbacks def Sydney Mets?", "context": "CREATE TABLE table_16724844_1 (mens_45 VARCHAR, mens_40 VARCHAR)"}, {"answer": "SELECT mens_open FROM table_16724844_1 WHERE mens_u20 = \"Qld Country Rustlers def Southern Suns\"", "question": "What was the mens open when the mens u20 was  Qld Country Rustlers def Southern Suns?", "context": "CREATE TABLE table_16724844_1 (mens_open VARCHAR, mens_u20 VARCHAR)"}, {"answer": "SELECT date FROM table_16729063_2 WHERE opponent = \"Los Angeles Raiders\"", "question": "What date was the opponent the Los Angeles Raiders?", "context": "CREATE TABLE table_16729063_2 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_16729063_2 WHERE game_site = \"Cleveland Stadium\"", "question": "How many games were played at Cleveland Stadium?", "context": "CREATE TABLE table_16729063_2 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_16729063_2 WHERE attendance = 74716", "question": "In what week number was the attendance 74716?", "context": "CREATE TABLE table_16729063_2 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT region FROM table_1672804_2 WHERE name_of_city = \"Iquitos\"", "question": "What is the region where Iquitos is located?", "context": "CREATE TABLE table_1672804_2 (region VARCHAR, name_of_city VARCHAR)"}, {"answer": "SELECT region FROM table_1672804_2 WHERE province = \"Constitutional province of Callao\"", "question": "What is the region containing the Constitutional Province of Callao?", "context": "CREATE TABLE table_1672804_2 (region VARCHAR, province VARCHAR)"}, {"answer": "SELECT result FROM table_16729071_1 WHERE opponent = \"New Orleans Saints\"", "question": "How did the game end against the New Orleans Saints?", "context": "CREATE TABLE table_16729071_1 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_16729071_1 WHERE attendance = 60038", "question": "How many weeks had an attendance of 60038?", "context": "CREATE TABLE table_16729071_1 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_16729457_17 WHERE driver___passenger = \"Dani\u00ebl Willemsen / Kenny van Gaalen\"", "question": "Name the least points for dani\u00ebl willemsen / kenny van gaalen", "context": "CREATE TABLE table_16729457_17 (points INTEGER, driver___passenger VARCHAR)"}, {"answer": "SELECT driver___passenger FROM table_16729457_17 WHERE position = 4", "question": "Name the driver passenger for position 4", "context": "CREATE TABLE table_16729457_17 (driver___passenger VARCHAR, position VARCHAR)"}, {"answer": "SELECT driver___passenger FROM table_16729457_16 WHERE position = 8", "question": "Name the driver/passenger for position 8", "context": "CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR)"}, {"answer": "SELECT driver___passenger FROM table_16729457_16 WHERE position = 6", "question": "Name the driver/passenger for 6 position", "context": "CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR)"}, {"answer": "SELECT winner FROM table_1672976_5 WHERE attendance = 16597", "question": "Who was the winner when the total attendance was 16597?", "context": "CREATE TABLE table_1672976_5 (winner VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT socket FROM table_16729930_18 WHERE frequency = \"1.3 GHz\"", "question": "What is the socket for microprocessors with a frequency of 1.3 ghz?", "context": "CREATE TABLE table_16729930_18 (socket VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT tdp FROM table_16729930_18 WHERE release_price___usd__ = \"$72\"", "question": "For a release price of $72, what is the TDP of the microprocessor?", "context": "CREATE TABLE table_16729930_18 (tdp VARCHAR, release_price___usd__ VARCHAR)"}, {"answer": "SELECT gpu_frequency FROM table_16729930_18 WHERE tdp = \"3.6 W\" AND part_number_s_ = \"CY80632007221AB\"", "question": "For a processor with part number cy80632007221ab and TDP of 3.6 W, What are the available GPU  frequencies?", "context": "CREATE TABLE table_16729930_18 (gpu_frequency VARCHAR, tdp VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT sspec_number FROM table_16729930_18 WHERE tdp = \"3.6 W\" AND model_number = \"Atom E665C\"", "question": "For a processor with model number atom e665c and a TDP of 3.6 W, what is the sSpec number?", "context": "CREATE TABLE table_16729930_18 (sspec_number VARCHAR, tdp VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_16729930_18 WHERE part_number_s_ = \"CY80632007227AB\"", "question": "What is the release price for a processor with part number  cy80632007227ab?", "context": "CREATE TABLE table_16729930_18 (release_price___usd__ VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT fsb FROM table_16729930_11 WHERE model_number = \"Atom Z540\"", "question": "Name the fsb for atom z540", "context": "CREATE TABLE table_16729930_11 (fsb VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT frequency FROM table_16729930_11 WHERE part_number_s_ = \"AC80566UE041DW\"", "question": "Name the frequency for part number of ac80566ue041dw", "context": "CREATE TABLE table_16729930_11 (frequency VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT memory FROM table_16729930_17 WHERE part_number_s_ = \"CT80618003201AA\"", "question": "Name the memory for part number of  ct80618003201aa", "context": "CREATE TABLE table_16729930_17 (memory VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT memory FROM table_16729930_17 WHERE model_number = \"Atom E640T\"", "question": "Name the memory for meodel number for atom e640t", "context": "CREATE TABLE table_16729930_17 (memory VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT memory FROM table_16729930_17 WHERE frequency = \"1.6 GHz\"", "question": "Name the memory for frequency of 1.6 ghz", "context": "CREATE TABLE table_16729930_17 (memory VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT winner FROM table_1672976_6 WHERE challenge_leader = \"ACC (2-1)\"", "question": "Who won the game where the Challenge Leader is ACC (2-1)?", "context": "CREATE TABLE table_1672976_6 (winner VARCHAR, challenge_leader VARCHAR)"}, {"answer": "SELECT television FROM table_1672976_6 WHERE time = \"9:00PM\"", "question": "What station aired a game at 9:00pm?", "context": "CREATE TABLE table_1672976_6 (television VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(rnd) FROM table_16732659_2 WHERE date = \"June 11\"", "question": "ON JUNE 11, WHAT WAS THE NUMBER OF RNDS ?", "context": "CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR)"}, {"answer": "SELECT MAX(rnd) FROM table_16732659_2 WHERE date = \"August 13\"", "question": "FOR AUGUST 13 WHAT IS THE RND ?", "context": "CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR)"}, {"answer": "SELECT race_name FROM table_16732659_2 WHERE rnd = 13", "question": "PLEASE LIST ALL RACES WHERE THE RND IS 13.", "context": "CREATE TABLE table_16732659_2 (race_name VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT COUNT(rank_07_11) FROM table_167354_2 WHERE world_ranking = \"4\"", "question": "How many figures are there for Rank 07-11 when the world ranking is 4?", "context": "CREATE TABLE table_167354_2 (rank_07_11 VARCHAR, world_ranking VARCHAR)"}, {"answer": "SELECT COUNT(pubs_2011) FROM table_167354_2 WHERE location = \"Chennai\"", "question": "How many figures are given for pubs 2011 in Chennai?", "context": "CREATE TABLE table_167354_2 (pubs_2011 VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_16734640_1 WHERE institution = \"Georgia Perimeter College\"", "question": "Name the number location of georgia perimeter college", "context": "CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT location FROM table_16734640_1 WHERE institution = \"Chattahoochee Technical College\"", "question": "Name the location for chattahoochee technical college", "context": "CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT location FROM table_16734640_1 WHERE institution = \"Abraham Baldwin Agricultural College\"", "question": "Name the location for abraham baldwin agricultural college", "context": "CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(nickname) FROM table_16734640_1 WHERE institution = \"Andrew College\"", "question": "Name the total number of nicknames for andrew college", "context": "CREATE TABLE table_16734640_1 (nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_16734640_1 WHERE nickname = \"Hawks\"", "question": "Name the most enrollment when nickname is hawks", "context": "CREATE TABLE table_16734640_1 (enrollment INTEGER, nickname VARCHAR)"}, {"answer": "SELECT surface FROM table_16741821_8 WHERE opponent = \"George Khrikadze\"", "question": "WHAT WAS THE SURFACE MADE OF WHEN THE OPPONENT WAS GEORGE KHRIKADZE?", "context": "CREATE TABLE table_16741821_8 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_16741821_8 WHERE surface = \"Clay\" AND against = \"Lithuania\"", "question": "WHAT WERE ALL OF THE RESULTS WHEN THEY PLAYED AGAINST LITHUANIA AND THE SURFACE WAS MADE OF CLAY?", "context": "CREATE TABLE table_16741821_8 (result VARCHAR, surface VARCHAR, against VARCHAR)"}, {"answer": "SELECT republican AS :_steve_sauerberg FROM table_16751596_2 WHERE dates_administered = \"September 15-September 18, 2008\"", "question": "Name the republican steve sauerberg where dates administered september 15-september 18, 2008", "context": "CREATE TABLE table_16751596_2 (republican VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT republican AS :_steve_sauerberg FROM table_16751596_2 WHERE dates_administered = \"August 12, 2008\"", "question": "Name the republican steve sauerberg for august 12, 2008", "context": "CREATE TABLE table_16751596_2 (republican VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT poll_source FROM table_16751596_2 WHERE dates_administered = \"July 12, 2008\"", "question": "Name the poll source for july 12, 2008", "context": "CREATE TABLE table_16751596_2 (poll_source VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE lead_margin = 35", "question": "When the lead margin was 35, what were the Democrat: Vivian Davis Figures?", "context": "CREATE TABLE table_16751596_12 (democrat VARCHAR, lead_margin VARCHAR)"}, {"answer": "SELECT republican AS :_jeff_sessions FROM table_16751596_12 WHERE dates_administered = \"June 30, 2008\"", "question": "On June 30, 2008 who what was the Republican: Jeff Sessions percentage?", "context": "CREATE TABLE table_16751596_12 (republican VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT COUNT(republican) AS :_jeff_sessions FROM table_16751596_12 WHERE dates_administered = \"November 14, 2007\"", "question": "On November 14, 2007, how many different Republican: Jeff Sessions are there?", "context": "CREATE TABLE table_16751596_12 (republican VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE dates_administered = \"November 14, 2007\"", "question": "On November 14, 2007, what are the Democrat: Vivian Davis Figures percentages? ", "context": "CREATE TABLE table_16751596_12 (democrat VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE dates_administered = \"July 31, 2008\"", "question": "On July 31, 2008, what are the Democrat: Vivian Davis Figures percentages?", "context": "CREATE TABLE table_16751596_12 (democrat VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT democrat AS :_mark_begich FROM table_16751596_13 WHERE dates_administered = \"October 6, 2008\"", "question": "What was Mark Begich polling on October 6, 2008?", "context": "CREATE TABLE table_16751596_13 (democrat VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT COUNT(dates_administered) FROM table_16751596_13 WHERE poll_source = \"Research 2000/Daily Kos\"", "question": "When the poll source is research 2000/daily kos, what is the total number of dates administered? ", "context": "CREATE TABLE table_16751596_13 (dates_administered VARCHAR, poll_source VARCHAR)"}, {"answer": "SELECT COUNT(lead_maragin) FROM table_16751596_13 WHERE dates_administered = \"July 17, 2008\"", "question": "On July 17, 2008, what was the total number of lead maragin? ", "context": "CREATE TABLE table_16751596_13 (lead_maragin VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT club FROM table_1676073_12 WHERE points_against = \"608\"", "question": "What clubs had 608 points against?", "context": "CREATE TABLE table_1676073_12 (club VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT played FROM table_1676073_12 WHERE points = \"48\"", "question": "How many games played for the team with 48 points?", "context": "CREATE TABLE table_1676073_12 (played VARCHAR, points VARCHAR)"}, {"answer": "SELECT played FROM table_1676073_12 WHERE points_against = \"686\"", "question": "How many games played for the team with 686 points against?", "context": "CREATE TABLE table_1676073_12 (played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT club FROM table_1676073_12 WHERE points_for = \"748\"", "question": "What clubs recorded 748 points to the good?", "context": "CREATE TABLE table_1676073_12 (club VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT COUNT(points_for) FROM table_1676073_12 WHERE points_against = \"632\"", "question": "How many teams had 632 points against?", "context": "CREATE TABLE table_1676073_12 (points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_1676073_12 WHERE lost = \"11\" AND points_for = \"748\"", "question": "How many games drawn for the team that lost 11 and had 748 points?", "context": "CREATE TABLE table_1676073_12 (drawn VARCHAR, lost VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT COUNT(republican) AS :_jack_hoogendyk FROM table_16751596_6 WHERE poll_source = \"Public Policy Polling\"", "question": "How many times did Public Policy Polling under Republican: Jack Hoogendyk?", "context": "CREATE TABLE table_16751596_6 (republican VARCHAR, poll_source VARCHAR)"}, {"answer": "SELECT poll_source FROM table_16751596_6 WHERE dates_administered = \"July 10, 2008\"", "question": "What poll source had an administered date on July 10, 2008?", "context": "CREATE TABLE table_16751596_6 (poll_source VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT latitude FROM table_16768245_2 WHERE diameter = \"184.0\"", "question": "What is the latitude when the diameter is 184.0?", "context": "CREATE TABLE table_16768245_2 (latitude VARCHAR, diameter VARCHAR)"}, {"answer": "SELECT COUNT(longitude) FROM table_16768245_2 WHERE diameter = \"224.0\"", "question": "How many longitudes have a diameter of 224.0?", "context": "CREATE TABLE table_16768245_2 (longitude VARCHAR, diameter VARCHAR)"}, {"answer": "SELECT namesake FROM table_16768245_2 WHERE longitude = \"189.5W\"", "question": "What is the namesake of the feature found at 189.5w longitude? ", "context": "CREATE TABLE table_16768245_2 (namesake VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT namesake FROM table_16768245_2 WHERE longitude = \"147.1W\"", "question": "When the longitude is 147.1w what is the namesake of the feature? ", "context": "CREATE TABLE table_16768245_2 (namesake VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT COUNT(longitude) FROM table_16768245_2 WHERE latitude = \"9.9N\"", "question": "How many longitudes have a latitude of 9.9n?", "context": "CREATE TABLE table_16768245_2 (longitude VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT MAX(points) AS against FROM table_16770037_3 WHERE pts = 10", "question": "What is the maximum points against when team's points are 10?", "context": "CREATE TABLE table_16770037_3 (points INTEGER, pts VARCHAR)"}, {"answer": "SELECT MAX(tries_against) FROM table_16770037_3 WHERE team = Bridgend", "question": "What are the tries against when they played against Bridgend?", "context": "CREATE TABLE table_16770037_3 (tries_against INTEGER, team VARCHAR, Bridgend VARCHAR)"}, {"answer": "SELECT MIN(tries_for) FROM table_16770037_3", "question": "What is the smallest number of tries for in a game?", "context": "CREATE TABLE table_16770037_3 (tries_for INTEGER)"}, {"answer": "SELECT latitude FROM table_16768245_5 WHERE name = \"Philae Sulcus\"", "question": "Philae Sulcus has a latitude of what?", "context": "CREATE TABLE table_16768245_5 (latitude VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_16776312_3 WHERE date = \"12 May 2008\"", "question": "Name the opponent for 12 may 2008", "context": "CREATE TABLE table_16776312_3 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_16788123_5 WHERE team = \"Sportivo Luque\u00f1o\"", "question": "how many points scored by sportivo luque\u00f1o", "context": "CREATE TABLE table_16788123_5 (points VARCHAR, team VARCHAR)"}, {"answer": "SELECT points FROM table_16795394_3 WHERE team__number2 = \"Atl\u00e9tico Nacional\"", "question": "For team Atl\u00e9tico Nacional, what were the points?", "context": "CREATE TABLE table_16795394_3 (points VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT COUNT(team__number1) FROM table_16795394_3 WHERE team__number2 = \"San Lorenzo\"", "question": "If team two is San Lorenzo, how many were on team one?", "context": "CREATE TABLE table_16795394_3 (team__number1 VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_16795394_3 WHERE team__number2 = \"Lan\u00fas\"", "question": "If team two is Lan\u00fas, what was the total number of points?", "context": "CREATE TABLE table_16795394_3 (points VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT name AS origin FROM table_16799784_11 WHERE name = \"Nike Fossae\"", "question": "What is the name origin of Nike Fossae? ", "context": "CREATE TABLE table_16799784_11 (name VARCHAR)"}, {"answer": "SELECT name FROM table_16799784_11 WHERE latitude = \"10.0S\"", "question": "Which name is at latitude 10.0s?", "context": "CREATE TABLE table_16799784_11 (name VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT latitude FROM table_16799784_11 WHERE name = \"Yuzut-Arkh Fossae\"", "question": "At what latitude can the name origin of yuzut-arkh fossae be found?", "context": "CREATE TABLE table_16799784_11 (latitude VARCHAR, name VARCHAR)"}, {"answer": "SELECT latitude FROM table_16799784_11 WHERE name = \"Naijok Fossae\"", "question": "At what latitude can the name origin of naijok fossae be found?", "context": "CREATE TABLE table_16799784_11 (latitude VARCHAR, name VARCHAR)"}, {"answer": "SELECT latitude FROM table_16799784_11 WHERE diameter__km_ = \"500.0\"", "question": "At what latitude can you find the diameter (km) of 500.0?", "context": "CREATE TABLE table_16799784_11 (latitude VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT COUNT(diameter__km_) FROM table_16799784_14 WHERE latitude = \"5.0N\"", "question": "How many numbers are listed under diameter with a lattitude of 5.0n?", "context": "CREATE TABLE table_16799784_14 (diameter__km_ VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT name AS origin FROM table_16799784_14 WHERE diameter__km_ = \"220.0\"", "question": "What is the name origin with a diameter of 220.0 kilometers?", "context": "CREATE TABLE table_16799784_14 (name VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT name FROM table_16799784_14 WHERE longitude = \"246.0E\"", "question": "What is the name of feature with a longitude 246.0e?", "context": "CREATE TABLE table_16799784_14 (name VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT name AS origin FROM table_16799784_12 WHERE name = \"Ovda Fluctus\"", "question": "What is every name origin with the name Ovda Fluctus?", "context": "CREATE TABLE table_16799784_12 (name VARCHAR)"}, {"answer": "SELECT MAX(year_named) FROM table_16799784_12 WHERE name = \"Tie Fluctus\"", "question": "What is the highest year named for the name Tie Fluctus?", "context": "CREATE TABLE table_16799784_12 (year_named INTEGER, name VARCHAR)"}, {"answer": "SELECT year_named FROM table_16799784_12 WHERE latitude = \"66.5N\"", "question": "What is every year named for the latitude of 66.5N?", "context": "CREATE TABLE table_16799784_12 (year_named VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT name FROM table_16799784_12 WHERE longitude = \"152.0E\"", "question": "What is every name for longitude of 152.0E?", "context": "CREATE TABLE table_16799784_12 (name VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_16799784_13 WHERE longitude = \"8.0E\"", "question": "What is the diameter of the feature with longitude 8.0e?", "context": "CREATE TABLE table_16799784_13 (diameter__km_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT name FROM table_16799784_13 WHERE latitude = \"23.9S\"", "question": "What feature is at latitude 23.9S?", "context": "CREATE TABLE table_16799784_13 (name VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT MAX(year_named) FROM table_16799784_13", "question": "When was  the most recently named feature named?", "context": "CREATE TABLE table_16799784_13 (year_named INTEGER)"}, {"answer": "SELECT name FROM table_16799784_2 WHERE latitude = \"36.0N\"", "question": "Name the name of 36.0n", "context": "CREATE TABLE table_16799784_2 (name VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT latitude FROM table_16799784_2 WHERE name = \"Laima Tessera\"", "question": "Name the latitude of laima tessera", "context": "CREATE TABLE table_16799784_2 (latitude VARCHAR, name VARCHAR)"}, {"answer": "SELECT name AS origin FROM table_16799784_2 WHERE longitude = \"54.0E\"", "question": "Name the name origin for 54.0e", "context": "CREATE TABLE table_16799784_2 (name VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT longitude FROM table_16799784_4 WHERE name = \"Grechukha Tholi\"", "question": "Grechukha Tholi has what longitude?", "context": "CREATE TABLE table_16799784_4 (longitude VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_16799784_4 WHERE longitude = \"202.9E\"", "question": "Where is longitude 202.9e?", "context": "CREATE TABLE table_16799784_4 (name VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT COUNT(year_named) FROM table_16799784_4 WHERE name = \"Otafuku Tholi\"", "question": "How many schools are named otafuku tholi?", "context": "CREATE TABLE table_16799784_4 (year_named VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(year_named) FROM table_16799784_4 WHERE name = \"Norterma Tholus\"", "question": "What year was Norterma Tholus created?", "context": "CREATE TABLE table_16799784_4 (year_named INTEGER, name VARCHAR)"}, {"answer": "SELECT round1 FROM table_16815824_1 WHERE team = \"Great Britain\"", "question": "What was Great Britain's Round 1 score?", "context": "CREATE TABLE table_16815824_1 (round1 VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(round4) FROM table_16815824_1 WHERE team = \"team Toshiba\"", "question": "What was team Toshiba's round 4 score?", "context": "CREATE TABLE table_16815824_1 (round4 INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(round2) FROM table_16815824_1", "question": "What was the highest score for round 2?", "context": "CREATE TABLE table_16815824_1 (round2 INTEGER)"}, {"answer": "SELECT round5 FROM table_16815824_1 WHERE total_points = 212", "question": "What was the round 5 score if the team's total points where 212?", "context": "CREATE TABLE table_16815824_1 (round5 VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT COUNT(round2) FROM table_16815824_1 WHERE team = \"team Toshiba\"", "question": "What is the score for round 2 for team Toshiba?", "context": "CREATE TABLE table_16815824_1 (round2 VARCHAR, team VARCHAR)"}, {"answer": "SELECT name AS origin FROM table_16799784_9 WHERE longitude = \"355.0E\"", "question": "At the longitude of 355.0e, what is the name origin?", "context": "CREATE TABLE table_16799784_9 (name VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT name AS origin FROM table_16799784_9 WHERE name = \"Morrigan Linea\"", "question": "What is the name origin of Morrigan Linea?", "context": "CREATE TABLE table_16799784_9 (name VARCHAR)"}, {"answer": "SELECT COUNT(year_named) FROM table_16799784_9 WHERE longitude = \"20.0E\"", "question": "How many years have a longitude measure of 20.0e?", "context": "CREATE TABLE table_16799784_9 (year_named VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_16799784_9 WHERE longitude = \"293.0E\"", "question": "At a longitude of 293.0e, what is the diameter, in km?", "context": "CREATE TABLE table_16799784_9 (diameter__km_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT release_date FROM table_1681535_1 WHERE notes = \"Bonus interview with Peter Purves\"", "question": "What is the release date of the bonus interview with Peter Purves?", "context": "CREATE TABLE table_1681535_1 (release_date VARCHAR, notes VARCHAR)"}, {"answer": "SELECT narrator FROM table_1681535_1 WHERE notes = \"Bonus interview with Frazer Hines\"", "question": "Which narrator has the bonus interview with Frazer Hines?", "context": "CREATE TABLE table_1681535_1 (narrator VARCHAR, notes VARCHAR)"}, {"answer": "SELECT release_date FROM table_1681535_1 WHERE title = \"Destiny of the Daleks\"", "question": "What is the release date for Destiny of the Daleks?", "context": "CREATE TABLE table_1681535_1 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT profits__billion_$_ FROM table_1682026_3 WHERE company = \"Wells Fargo\"", "question": "What are the profits of Wells Fargo (in billions)?", "context": "CREATE TABLE table_1682026_3 (profits__billion_$_ VARCHAR, company VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_1682026_3 WHERE company = \"BNP Paribas\"", "question": "What is the ranking of BNP Paribas?", "context": "CREATE TABLE table_1682026_3 (rank INTEGER, company VARCHAR)"}, {"answer": "SELECT headquarters FROM table_1682026_3 WHERE sales__billion_$_ = \"69.2\"", "question": "Where are the headquarters of the company whose sales were 69.2 billion?", "context": "CREATE TABLE table_1682026_3 (headquarters VARCHAR, sales__billion_$_ VARCHAR)"}, {"answer": "SELECT assets__billion_$_ FROM table_1682026_3 WHERE headquarters = \"China\" AND profits__billion_$_ = \"21.2\"", "question": "What are the assets (in billions) of the company headquartered in China and whose profits are 21.2 billion?", "context": "CREATE TABLE table_1682026_3 (assets__billion_$_ VARCHAR, headquarters VARCHAR, profits__billion_$_ VARCHAR)"}, {"answer": "SELECT profits__billion_$_ FROM table_1682026_3 WHERE market_value__billion_$_ = \"172.9\"", "question": "What are the profits (in billions) of the company with a market value of 172.9 billion?", "context": "CREATE TABLE table_1682026_3 (profits__billion_$_ VARCHAR, market_value__billion_$_ VARCHAR)"}, {"answer": "SELECT profits__billion_$_ FROM table_1682026_3 WHERE assets__billion_$_ = \"192.8\"", "question": "What are the profits (in billions) where the assets are 192.8 billion?", "context": "CREATE TABLE table_1682026_3 (profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)"}, {"answer": "SELECT COUNT(index_weighting___percentage__at_17_january_2013) FROM table_168274_1 WHERE company = \"Bouygues\"", "question": "Name the total number of index weighting % at 17 january 2013 for bouygues", "context": "CREATE TABLE table_168274_1 (index_weighting___percentage__at_17_january_2013 VARCHAR, company VARCHAR)"}, {"answer": "SELECT icb_sector FROM table_168274_1 WHERE ticker_symbol = \"AI\"", "question": "Name the icb sector for ai", "context": "CREATE TABLE table_168274_1 (icb_sector VARCHAR, ticker_symbol VARCHAR)"}, {"answer": "SELECT company FROM table_168274_1 WHERE index_weighting___percentage__at_17_january_2013 = \"11.96\"", "question": "Name the company where index weighting % is 11.96", "context": "CREATE TABLE table_168274_1 (company VARCHAR, index_weighting___percentage__at_17_january_2013 VARCHAR)"}, {"answer": "SELECT index_weighting___percentage__at_17_january_2013 FROM table_168274_1 WHERE ticker_symbol = \"RNO\"", "question": "Name the index weighting % for 17 januaary 2013 for rno", "context": "CREATE TABLE table_168274_1 (index_weighting___percentage__at_17_january_2013 VARCHAR, ticker_symbol VARCHAR)"}, {"answer": "SELECT COUNT(headquarters) FROM table_1682026_7 WHERE company = \"HSBC\"", "question": "How many headquarters are there listed for HSBC?", "context": "CREATE TABLE table_1682026_7 (headquarters VARCHAR, company VARCHAR)"}, {"answer": "SELECT market_value__billion_$_ FROM table_1682026_7 WHERE assets__billion_$_ = \"1,380.88\"", "question": "What is the market value in billions when the assets totaled 1,380.88?", "context": "CREATE TABLE table_1682026_7 (market_value__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_1682026_7 WHERE industry = \"Oil and gas\" AND headquarters = \"Netherlands\"", "question": "What is the highest rank of a company in the oil and gas industry headquartered in Netherlands?", "context": "CREATE TABLE table_1682026_7 (rank INTEGER, industry VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_1682026_7 WHERE assets__billion_$_ = \"248.44\"", "question": "What is the lowest rank of a company with 248.44 billions of dollars in assets?", "context": "CREATE TABLE table_1682026_7 (rank INTEGER, assets__billion_$_ VARCHAR)"}, {"answer": "SELECT industry FROM table_1682026_7 WHERE sales__billion_$_ = \"89.16\"", "question": "In what industry was the company that had 89.16 billions of dollars in sales?", "context": "CREATE TABLE table_1682026_7 (industry VARCHAR, sales__billion_$_ VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_1682026_9 WHERE profits__billion_$_ = \"9.52\"", "question": "Name the number of rank for 9.52 profits", "context": "CREATE TABLE table_1682026_9 (rank VARCHAR, profits__billion_$_ VARCHAR)"}, {"answer": "SELECT country FROM table_1682026_9 WHERE market_value__billion_$_ = \"188.77\"", "question": "Name the country for 188.77 market value", "context": "CREATE TABLE table_1682026_9 (country VARCHAR, market_value__billion_$_ VARCHAR)"}, {"answer": "SELECT numeral FROM table_1682865_1 WHERE english_name = \"Florin\"", "question": "What is the numeral where the English name is Florin?", "context": "CREATE TABLE table_1682865_1 (numeral VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT \u00a31_fraction FROM table_1682865_1 WHERE reverse = \"Hare\"", "question": "What is the \u00a31 fraction when the reverse is hare?", "context": "CREATE TABLE table_1682865_1 (\u00a31_fraction VARCHAR, reverse VARCHAR)"}, {"answer": "SELECT introduction FROM table_1682865_1 WHERE numeral = \"6d\"", "question": "What date was the 6d introduced?", "context": "CREATE TABLE table_1682865_1 (introduction VARCHAR, numeral VARCHAR)"}, {"answer": "SELECT irish_name FROM table_1682865_1 WHERE \u00a31_fraction = \"1/240\"", "question": "What is the Irish name for the \u00a31 fraction of 1/240?", "context": "CREATE TABLE table_1682865_1 (irish_name VARCHAR, \u00a31_fraction VARCHAR)"}, {"answer": "SELECT reverse FROM table_1682865_1 WHERE \u00a31_fraction = \"1/480\"", "question": "What is the reverse when the \u00a31 fraction is 1/480?", "context": "CREATE TABLE table_1682865_1 (reverse VARCHAR, \u00a31_fraction VARCHAR)"}, {"answer": "SELECT MAX(_number_of_seats_won) FROM table_168482_1", "question": "What is the largest number of seats won?", "context": "CREATE TABLE table_168482_1 (_number_of_seats_won INTEGER)"}, {"answer": "SELECT COUNT(_percentage_of_popular_vote) FROM table_168482_1 WHERE election = 1983", "question": "How many percentages are listed for the election in 1983?", "context": "CREATE TABLE table_168482_1 (_percentage_of_popular_vote VARCHAR, election VARCHAR)"}, {"answer": "SELECT place FROM table_168482_1 WHERE _percentage_of_popular_vote = \"0.86%\"", "question": "What place did the party finish in the year when they earned 0.86% of the vote?", "context": "CREATE TABLE table_168482_1 (place VARCHAR, _percentage_of_popular_vote VARCHAR)"}, {"answer": "SELECT ncbi_accession_number__mrna_protein_ FROM table_16849531_2 WHERE length__bp_aa_ = \"5304bp/377aa\"", "question": "What is the NCBI Accession Number for the length of 5304bp/377aa?", "context": "CREATE TABLE table_16849531_2 (ncbi_accession_number__mrna_protein_ VARCHAR, length__bp_aa_ VARCHAR)"}, {"answer": "SELECT ncbi_accession_number__mrna_protein_ FROM table_16849531_2 WHERE species = \"Homo sapiens\"", "question": "What is the NCBI Accession Number of the Homo Sapiens species?", "context": "CREATE TABLE table_16849531_2 (ncbi_accession_number__mrna_protein_ VARCHAR, species VARCHAR)"}, {"answer": "SELECT protein_identity FROM table_16849531_2 WHERE length__bp_aa_ = \"5304bp/377aa\"", "question": "What is the protein identity with a length of 5304bp/377aa?", "context": "CREATE TABLE table_16849531_2 (protein_identity VARCHAR, length__bp_aa_ VARCHAR)"}, {"answer": "SELECT release_date FROM table_16859758_1 WHERE title = \"Tell You When\"", "question": "When was \"Tell You When\" released?", "context": "CREATE TABLE table_16859758_1 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT location FROM table_16864968_7 WHERE game = 62", "question": "Where was game 62 played? ", "context": "CREATE TABLE table_16864968_7 (location VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_16864968_7 WHERE opponent = \"Columbus Blue Jackets\"", "question": "What was the final score when the Maple Leafs played the Columbus Blue Jackets? ", "context": "CREATE TABLE table_16864968_7 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT network FROM table_16884579_1 WHERE host_s_ = \"Dr\u00e9 Steemans Ann Van Elsen\"", "question": "Name the network for  dr\u00e9 steemans ann van elsen", "context": "CREATE TABLE table_16884579_1 (network VARCHAR, host_s_ VARCHAR)"}, {"answer": "SELECT seasons_and_winners FROM table_16884579_1 WHERE premiere = \"28 January 2007\"", "question": "Name the seasons and winners that airs 28 january 2007", "context": "CREATE TABLE table_16884579_1 (seasons_and_winners VARCHAR, premiere VARCHAR)"}, {"answer": "SELECT host_s_ FROM table_16884579_1 WHERE network = \"Prime\"", "question": "Name the host for prime", "context": "CREATE TABLE table_16884579_1 (host_s_ VARCHAR, network VARCHAR)"}, {"answer": "SELECT COUNT(judges) FROM table_16884579_1 WHERE host_s_ = \"Dr\u00e9 Steemans Ann Van Elsen\"", "question": "Name the number of judges for  dr\u00e9 steemans ann van elsen", "context": "CREATE TABLE table_16884579_1 (judges VARCHAR, host_s_ VARCHAR)"}, {"answer": "SELECT website FROM table_1688640_4 WHERE car__number = \"92\"", "question": "Name the website for car number of 92", "context": "CREATE TABLE table_1688640_4 (website VARCHAR, car__number VARCHAR)"}, {"answer": "SELECT MAX(year_started) FROM table_1688640_4 WHERE car__number = \"55\"", "question": "Name the year started where car number is 55", "context": "CREATE TABLE table_1688640_4 (year_started INTEGER, car__number VARCHAR)"}, {"answer": "SELECT car__number FROM table_1688640_4 WHERE year_started = 1997", "question": "Name the car number for 1997", "context": "CREATE TABLE table_1688640_4 (car__number VARCHAR, year_started VARCHAR)"}, {"answer": "SELECT COUNT(nickerie) FROM table_16886076_1 WHERE marowijne = \"4.7%\"", "question": "Name the nickerie for marowijne being 4.7%", "context": "CREATE TABLE table_16886076_1 (nickerie VARCHAR, marowijne VARCHAR)"}, {"answer": "SELECT coronie FROM table_16886076_1 WHERE marowijne = \"6.8%\"", "question": "Name the coronie for marowijne being 6.8%", "context": "CREATE TABLE table_16886076_1 (coronie VARCHAR, marowijne VARCHAR)"}, {"answer": "SELECT para FROM table_16886076_1 WHERE commewijne = \"1.5%\"", "question": "Name the para for 1.5% commewijne", "context": "CREATE TABLE table_16886076_1 (para VARCHAR, commewijne VARCHAR)"}, {"answer": "SELECT MIN(races) FROM table_16908657_1 WHERE poles = 2", "question": "Name the least amount of races for 2 poles", "context": "CREATE TABLE table_16908657_1 (races INTEGER, poles VARCHAR)"}, {"answer": "SELECT motorcycle FROM table_16908657_1 WHERE season = 2012", "question": "Name the motorcycle for season 2012", "context": "CREATE TABLE table_16908657_1 (motorcycle VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(flaps) FROM table_16908657_1 WHERE points = \"63\"", "question": "Name the number of flaps for 63 points ", "context": "CREATE TABLE table_16908657_1 (flaps VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(flaps) FROM table_16908657_1", "question": "Name the least flaps", "context": "CREATE TABLE table_16908657_1 (flaps INTEGER)"}, {"answer": "SELECT COUNT(p_ret) FROM table_16912000_13 WHERE kr_avg = \"11.3\"", "question": "How many p.ret are there when kr avg is 11.3 ? ", "context": "CREATE TABLE table_16912000_13 (p_ret VARCHAR, kr_avg VARCHAR)"}, {"answer": "SELECT kr_td FROM table_16912000_13 WHERE mfg_lg = 64", "question": "What is the kr td when mfg lg is 64?", "context": "CREATE TABLE table_16912000_13 (kr_td VARCHAR, mfg_lg VARCHAR)"}, {"answer": "SELECT player FROM table_16912000_13 WHERE kr_avg = \"24.8\"", "question": "Who's average is 24.8?", "context": "CREATE TABLE table_16912000_13 (player VARCHAR, kr_avg VARCHAR)"}, {"answer": "SELECT pr_avg FROM table_16912000_13 WHERE kr_lg = 49", "question": "What is the pr avg, when kr lg is 49?", "context": "CREATE TABLE table_16912000_13 (pr_avg VARCHAR, kr_lg VARCHAR)"}, {"answer": "SELECT population__2010_ FROM table_1691800_2 WHERE municipality = \"San Jacinto\"", "question": "what is the population where municipality is san jacinto?", "context": "CREATE TABLE table_1691800_2 (population__2010_ VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT income_class FROM table_1691800_2 WHERE area__km\u00b2_ = 75", "question": "what is the income class for area 75?", "context": "CREATE TABLE table_1691800_2 (income_class VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_1691800_2 WHERE municipality = \"Labrador\"", "question": "what is th area where the municipaity is labrador?", "context": "CREATE TABLE table_1691800_2 (area__km\u00b2_ VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT municipality FROM table_1691800_2 WHERE area__km\u00b2_ = 73", "question": "what is the municipality where the area is 73?", "context": "CREATE TABLE table_1691800_2 (municipality VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT equipment FROM table_16941304_4 WHERE bike_no = 6", "question": "Name the equipment for bike number 6", "context": "CREATE TABLE table_16941304_4 (equipment VARCHAR, bike_no VARCHAR)"}, {"answer": "SELECT driver___passenger FROM table_16941304_4 WHERE points = 394", "question": "Name the driver passenger for 394 points", "context": "CREATE TABLE table_16941304_4 (driver___passenger VARCHAR, points VARCHAR)"}, {"answer": "SELECT equipment FROM table_16941304_4 WHERE bike_no = 3", "question": "Name the equipment for bike number being 3", "context": "CREATE TABLE table_16941304_4 (equipment VARCHAR, bike_no VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_1694492_2 WHERE district = \"New York 10th\"", "question": "In district New York 10th, what was the reason for change?", "context": "CREATE TABLE table_1694492_2 (reason_for_change VARCHAR, district VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_1694505_4 WHERE district = \"Wisconsin 2nd\"", "question": "In the district Wisconsin 2nd, what was the reason for change?", "context": "CREATE TABLE table_1694505_4 (reason_for_change VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(age_30_39) FROM table_169693_1 WHERE age_20_29 = 593", "question": "Name the least age 30-39 where age 20-29 is 593", "context": "CREATE TABLE table_169693_1 (age_30_39 INTEGER, age_20_29 VARCHAR)"}, {"answer": "SELECT MIN(age_40_49) FROM table_169693_1", "question": "Name the least age 40-49", "context": "CREATE TABLE table_169693_1 (age_40_49 INTEGER)"}, {"answer": "SELECT age_30_39 FROM table_169693_1 WHERE age_10_19 = 380", "question": "Name the age 30-39 and age 10-19 380", "context": "CREATE TABLE table_169693_1 (age_30_39 VARCHAR, age_10_19 VARCHAR)"}, {"answer": "SELECT score FROM table_16967990_1 WHERE _number = \"4\"", "question": "Name the score for number 4", "context": "CREATE TABLE table_16967990_1 (score VARCHAR, _number VARCHAR)"}, {"answer": "SELECT COUNT(chester) FROM table_16974228_1 WHERE religion = \"Hindu\"", "question": "How many numbers were recorded for Chester when the religion was Hindu?", "context": "CREATE TABLE table_16974228_1 (chester VARCHAR, religion VARCHAR)"}, {"answer": "SELECT MIN(earnings___) AS $__ FROM table_1697190_2", "question": "what was Casey Martin's minimum yearly earnings?", "context": "CREATE TABLE table_1697190_2 (earnings___ INTEGER)"}, {"answer": "SELECT money_list_rank FROM table_1697190_2 WHERE best_finish = \"T-65\"", "question": "when Casey Martin's best finish was t-65, where did he land in the money list rankings?", "context": "CREATE TABLE table_1697190_2 (money_list_rank VARCHAR, best_finish VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_1697190_2", "question": "how many times did Casey Martin win?", "context": "CREATE TABLE table_1697190_2 (wins INTEGER)"}, {"answer": "SELECT COUNT(air_dates) FROM table_16976547_2 WHERE cycle_no = \"05\"", "question": "Name the total number of air dates for 05 cycle", "context": "CREATE TABLE table_16976547_2 (air_dates VARCHAR, cycle_no VARCHAR)"}, {"answer": "SELECT vote FROM table_16976547_2 WHERE eliminated = \"Gigit\"", "question": "Name the vote for gigit", "context": "CREATE TABLE table_16976547_2 (vote VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT finish FROM table_16976547_2 WHERE eliminated = \"Patani\"", "question": "Name the finish for patani", "context": "CREATE TABLE table_16976547_2 (finish VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT COUNT(immunity) FROM table_16976547_2 WHERE cycle_no = \"13\"", "question": "Name the total number of immunity for cycle number of 13", "context": "CREATE TABLE table_16976547_2 (immunity VARCHAR, cycle_no VARCHAR)"}, {"answer": "SELECT new_returning_same_network FROM table_169766_13 WHERE previous_network = \"NBC\"", "question": "For the NBC network, what was the new/returning/same network status?", "context": "CREATE TABLE table_169766_13 (new_returning_same_network VARCHAR, previous_network VARCHAR)"}, {"answer": "SELECT show FROM table_169766_13 WHERE new_returning_same_network = \"Syndication\"", "question": "Which show was sent to syndication for its new/returning/same network.", "context": "CREATE TABLE table_169766_13 (show VARCHAR, new_returning_same_network VARCHAR)"}, {"answer": "SELECT new_returning_same_network FROM table_169766_13 WHERE show = \"This Week in Baseball\"", "question": "What is the new/returning/same network name for This Week in Baseball?", "context": "CREATE TABLE table_169766_13 (new_returning_same_network VARCHAR, show VARCHAR)"}, {"answer": "SELECT show FROM table_169766_13 WHERE previous_network = \"The Family Channel\"", "question": "Which show as previously on The Family Channel?", "context": "CREATE TABLE table_169766_13 (show VARCHAR, previous_network VARCHAR)"}, {"answer": "SELECT retitled_as_same FROM table_169766_13 WHERE last_aired = 1958", "question": "Did the name change for the program last aired in 1958?", "context": "CREATE TABLE table_169766_13 (retitled_as_same VARCHAR, last_aired VARCHAR)"}, {"answer": "SELECT rating FROM table_16993379_1 WHERE rank__overall_ = \"190\"", "question": "What was the rating of the episode with an overall ranking of 190?", "context": "CREATE TABLE table_16993379_1 (rating VARCHAR, rank__overall_ VARCHAR)"}, {"answer": "SELECT COUNT(share) FROM table_16993379_1 WHERE viewers__millions_ = \"3.11\"", "question": "How many were the shares when the viewers reached 3.11 million?", "context": "CREATE TABLE table_16993379_1 (share VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT saka_era FROM table_169955_1 WHERE in_malayalam = \"\u0d2e\u0d3f\u0d25\u0d41\u0d28\u0d02\"", "question": "Name the saka era for malayalam \u0d2e\u0d3f\u0d25\u0d41\u0d28\u0d02", "context": "CREATE TABLE table_169955_1 (saka_era VARCHAR, in_malayalam VARCHAR)"}, {"answer": "SELECT months_in_malayalam_era FROM table_169955_1 WHERE in_malayalam = \"\u0d15\u0d41\u0d02\u0d2d\u0d02\"", "question": "Name the months in the malayalam era for \u0d15\u0d41\u0d02\u0d2d\u0d02", "context": "CREATE TABLE table_169955_1 (months_in_malayalam_era VARCHAR, in_malayalam VARCHAR)"}, {"answer": "SELECT sign_of_zodiac FROM table_169955_1 WHERE tamil_calendar = \"Chithirai\"", "question": "Name the sign of zodiac for chithirai", "context": "CREATE TABLE table_169955_1 (sign_of_zodiac VARCHAR, tamil_calendar VARCHAR)"}, {"answer": "SELECT saka_era FROM table_169955_1 WHERE sign_of_zodiac = \"Pisces\"", "question": "Name the saka era for sign of zodiac being pisces", "context": "CREATE TABLE table_169955_1 (saka_era VARCHAR, sign_of_zodiac VARCHAR)"}, {"answer": "SELECT COUNT(gregorian_calendar) FROM table_169955_1 WHERE sign_of_zodiac = \"Gemini\"", "question": "Name the number of gregorian calenda rof gemini", "context": "CREATE TABLE table_169955_1 (gregorian_calendar VARCHAR, sign_of_zodiac VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17001658_10 WHERE high_assists = \"Raymond Felton (12)\"", "question": "For High Assists of Raymond Felton (12), who were the High rebounds?", "context": "CREATE TABLE table_17001658_10 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT date FROM table_17001658_10 WHERE team = \"Philadelphia\"", "question": "On what date was the team Philadelphia?", "context": "CREATE TABLE table_17001658_10 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17001658_10 WHERE high_assists = \"D. J. Augustin (8)\"", "question": "Who was the high rebound for the high assists of d. j. augustin (8)?", "context": "CREATE TABLE table_17001658_10 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT record FROM table_17001658_10 WHERE high_rebounds = \"Gerald Wallace (14)\"", "question": "What was the final score of the game with gerald wallace (14) as the High Rebound?", "context": "CREATE TABLE table_17001658_10 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_17001658_5 WHERE game = 15", "question": "What was the final score in game 15? ", "context": "CREATE TABLE table_17001658_5 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17001658_5 WHERE team = \"Miami\"", "question": "Who had the most assists and how many did they have in the game against Miami? ", "context": "CREATE TABLE table_17001658_5 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17001658_8 WHERE game = 55", "question": "Name the location attendance for game 55", "context": "CREATE TABLE table_17001658_8 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17001658_7 WHERE game = 46", "question": "Who got the game high rebounds in game 46?", "context": "CREATE TABLE table_17001658_7 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_17001658_7 WHERE game = 37", "question": "How many scores are listed for game 37?", "context": "CREATE TABLE table_17001658_7 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_17001658_7 WHERE team = \"Milwaukee\"", "question": "What date was the opposing team Milwaukee?", "context": "CREATE TABLE table_17001658_7 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT pressure_in_hpa__mbar_ FROM table_170097_1 WHERE vacuum_range = \"Ultra high vacuum\"", "question": "What is the pressure in ultra high vacuum?", "context": "CREATE TABLE table_170097_1 (pressure_in_hpa__mbar_ VARCHAR, vacuum_range VARCHAR)"}, {"answer": "SELECT COUNT(nightly_rank) FROM table_17004367_3 WHERE episode_number_production_number = \"06 1-06\"", "question": "what is the nightly rank where the episode number production number is 06 1-06?", "context": "CREATE TABLE table_17004367_3 (nightly_rank VARCHAR, episode_number_production_number VARCHAR)"}, {"answer": "SELECT COUNT(weekly_rank) FROM table_17004367_3 WHERE total = 1980000", "question": "what is the number of weekly rank where the total is 1980000?", "context": "CREATE TABLE table_17004367_3 (weekly_rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17001658_9 WHERE game = 70", "question": "Name the high assists for 70 game", "context": "CREATE TABLE table_17001658_9 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT pe\u030dh_\u014de_j\u012b FROM table_17015_2 WHERE chinese = \"\u524d\u91d1\u5340\"", "question": "Name the pe\u030dh-\u014de-j\u012b  for \u524d\u91d1\u5340", "context": "CREATE TABLE table_17015_2 (pe\u030dh_\u014de_j\u012b VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT no FROM table_17015_2 WHERE population__2010_ = 171906", "question": "Name the number where population 2010 is 171906", "context": "CREATE TABLE table_17015_2 (no VARCHAR, population__2010_ VARCHAR)"}, {"answer": "SELECT tongyong FROM table_17015_2 WHERE chinese = \"\u6e56\u5167\u5340\"", "question": "Name the tongyong for chinese of  \u6e56\u5167\u5340", "context": "CREATE TABLE table_17015_2 (tongyong VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT COUNT(tongyong) FROM table_17015_2 WHERE hanyu = \"Qiaotou\"", "question": "Name the tongyong for qiaotou", "context": "CREATE TABLE table_17015_2 (tongyong VARCHAR, hanyu VARCHAR)"}, {"answer": "SELECT pixels FROM table_1701371_2 WHERE hardware_colours = 8", "question": "How many pixels would be found in a hardware colour of 8?", "context": "CREATE TABLE table_1701371_2 (pixels VARCHAR, hardware_colours VARCHAR)"}, {"answer": "SELECT char_cells FROM table_1701371_2 WHERE hardware_colours = 8", "question": "If hardware colours is 8 what would the char cells be?", "context": "CREATE TABLE table_1701371_2 (char_cells VARCHAR, hardware_colours VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_17025328_1 WHERE original_title = \"Le Confessional\"", "question": "Name the year for le confessional", "context": "CREATE TABLE table_17025328_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_17025328_1 WHERE original_title = \"Les portes tournantes\"", "question": "Name the year for les portes tournantes", "context": "CREATE TABLE table_17025328_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT MAX(w) FROM table_17012578_37 WHERE l = 5", "question": "Of the teams that lost 5 games, what is the highest number of wins?", "context": "CREATE TABLE table_17012578_37 (w INTEGER, l VARCHAR)"}, {"answer": "SELECT MAX(Ends) AS lost FROM table_17012578_37", "question": "What is the highest number of ends lost?", "context": "CREATE TABLE table_17012578_37 (Ends INTEGER)"}, {"answer": "SELECT COUNT(Ends) AS won FROM table_17012578_37 WHERE pa = 39", "question": "How many values are in the ends won cell corresponding to a PA of 39?", "context": "CREATE TABLE table_17012578_37 (Ends VARCHAR, pa VARCHAR)"}, {"answer": "SELECT skip FROM table_17012578_6 WHERE shot_pct = 88 AND province = \"Alberta\"", "question": "Who was Alberta's skip when the shot pct was 88?", "context": "CREATE TABLE table_17012578_6 (skip VARCHAR, shot_pct VARCHAR, province VARCHAR)"}, {"answer": "SELECT MAX(pa) FROM table_17012578_6", "question": "What is the top Points Allowed?", "context": "CREATE TABLE table_17012578_6 (pa INTEGER)"}, {"answer": "SELECT COUNT(pa) FROM table_17012578_6 WHERE blank_ends = 1", "question": "When the blank ends at 1, what is the PA?", "context": "CREATE TABLE table_17012578_6 (pa VARCHAR, blank_ends VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_17058116_6 WHERE team = \"Charlotte\"", "question": "How many times did the team play charlotte?", "context": "CREATE TABLE table_17058116_6 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_17058116_6 WHERE team = \"Charlotte\"", "question": "What day did the team play charlotte?", "context": "CREATE TABLE table_17058116_6 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_17058116_7 WHERE score = \"L 99\u2013107 (OT)\"", "question": "When was the game with score l 99\u2013107 (ot)", "context": "CREATE TABLE table_17058116_7 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17058116_7 WHERE record = \"20\u201323\"", "question": "Where was the game with record 20\u201323 and how many people attended it", "context": "CREATE TABLE table_17058116_7 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17058116_7 WHERE high_points = \"Charlie Villanueva (32)\"", "question": "Who scored highest rebounds high points is charlie villanueva (32)", "context": "CREATE TABLE table_17058116_7 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_17058116_7 WHERE game = 46", "question": "What is the score of game 46", "context": "CREATE TABLE table_17058116_7 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_17058116_5 WHERE date = \"November 2\"", "question": "Who scored the high points on the date November 2?", "context": "CREATE TABLE table_17058116_5 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_17058116_5 WHERE game = 13", "question": "In how many locations did Game 13 take place?", "context": "CREATE TABLE table_17058116_5 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17058116_5 WHERE date = \"November 21\"", "question": "Where was the game that took place in November 21 located and how many attended?", "context": "CREATE TABLE table_17058116_5 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17058178_11 WHERE date = \"April 7\"", "question": "Name the high reobounds for april 7", "context": "CREATE TABLE table_17058178_11 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_17058151_7 WHERE game = 43", "question": "How many games was game 43?", "context": "CREATE TABLE table_17058151_7 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_17058151_8 WHERE date = \"February 10\"", "question": "Name the total number of high rebounds for february 10", "context": "CREATE TABLE table_17058151_8 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_17058151_6 WHERE date = \"December 6\"", "question": "Name the record for december 6", "context": "CREATE TABLE table_17058151_6 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17058178_8 WHERE game = 38", "question": "What was the final score in game 38?", "context": "CREATE TABLE table_17058178_8 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_17058178_8 WHERE date = \"January 2\"", "question": "Who did the Trail Blazers play on January 2?", "context": "CREATE TABLE table_17058178_8 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_17058226_10 WHERE team = \"Phoenix\"", "question": "On how many dates did the Timberwolves play Phoenix? ", "context": "CREATE TABLE table_17058226_10 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_17058226_10 WHERE date = \"April 3\"", "question": "What was the Timberwolves' record on April 3? ", "context": "CREATE TABLE table_17058226_10 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17058226_8 WHERE team = \"Utah\"", "question": "Where are all of Utah's games held and how many have attended?", "context": "CREATE TABLE table_17058226_8 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17058226_5 WHERE high_assists = \"Craig Smith (4)\"", "question": "Who performed all the high rebounds when craig smith (4) was the lead for high assists?", "context": "CREATE TABLE table_17058226_5 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17058226_5 WHERE high_points = \"Kevin Love (20)\"", "question": "Who had all the high rebounds when kevin love (20) scored the highest points?", "context": "CREATE TABLE table_17058226_5 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT team FROM table_17058226_5 WHERE high_assists = \"Sebastian Telfair (7)\"", "question": "What opposing team was playing when sebastian telfair (7) had the highest assists?", "context": "CREATE TABLE table_17058226_5 (team VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT score FROM table_17058226_7 WHERE date = \"January 26\"", "question": "Name the score for january 26", "context": "CREATE TABLE table_17058226_7 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_17060277_10 WHERE date = \"April 12\"", "question": "Who did the high points in the game played on April 12?", "context": "CREATE TABLE table_17060277_10 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT constructor FROM table_1706942_1 WHERE q1_order = 4", "question": "What is the constructor when the Q1 order is 4?", "context": "CREATE TABLE table_1706942_1 (constructor VARCHAR, q1_order VARCHAR)"}, {"answer": "SELECT MAX(q1_order) FROM table_1706942_1 WHERE driver = \"Felipe Massa\"", "question": "What is the Q1 order for Felipe Massa?", "context": "CREATE TABLE table_1706942_1 (q1_order INTEGER, driver VARCHAR)"}, {"answer": "SELECT q1_time FROM table_1706942_1 WHERE q1_order = 6", "question": "What is the Q1 time for the driver with Q1 order of 6?", "context": "CREATE TABLE table_1706942_1 (q1_time VARCHAR, q1_order VARCHAR)"}, {"answer": "SELECT COUNT(q1_order) FROM table_1706942_1 WHERE driver = \"Alexander Wurz\"", "question": "How many Q1 figures are given for Alexander Wurz?", "context": "CREATE TABLE table_1706942_1 (q1_order VARCHAR, driver VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17060277_5 WHERE game = 12", "question": "Who all had the most assists in game 12?", "context": "CREATE TABLE table_17060277_5 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT position FROM table_1708014_1 WHERE winnings = \"$4,228,889\"", "question": "Which position offers winnings of $4,228,889?", "context": "CREATE TABLE table_1708014_1 (position VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT poles FROM table_1708014_1 WHERE team_s_ = \"#14 Ginn Racing\"", "question": "How many poles did team #14 ginn racing have?", "context": "CREATE TABLE table_1708014_1 (poles VARCHAR, team_s_ VARCHAR)"}, {"answer": "SELECT winnings FROM table_1708014_1 WHERE poles = 0 AND position = \"14th\"", "question": "When the poles are 0 and the position is 14th, how much are the winnings?", "context": "CREATE TABLE table_1708014_1 (winnings VARCHAR, poles VARCHAR, position VARCHAR)"}, {"answer": "SELECT starts FROM table_1708014_1 WHERE winnings = \"$1,301,370\"", "question": "Which start won $1,301,370?", "context": "CREATE TABLE table_1708014_1 (starts VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_1708014_1 WHERE top_10 = 5 AND team_s_ = \"#40 Chip Ganassi Racing\"", "question": "For team #40 chip ganassi racing which top 5 is the highest where top 10 is 5?", "context": "CREATE TABLE table_1708014_1 (top_5 INTEGER, top_10 VARCHAR, team_s_ VARCHAR)"}, {"answer": "SELECT position FROM table_1708014_2 WHERE starts = 3", "question": "what is the posisiotn where the start is 3?", "context": "CREATE TABLE table_1708014_2 (position VARCHAR, starts VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_1708014_2 WHERE winnings = \"$81,690\"", "question": "what is the team where winnings is $81,690?", "context": "CREATE TABLE table_1708014_2 (team_s_ VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17080868_7 WHERE team = \"Indiana\"", "question": "What was the attendance of the Indiana game?", "context": "CREATE TABLE table_17080868_7 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT trans_2 FROM table_17085947_32 WHERE bike__40km_ = \"58:20\"", "question": "What is the trans 2 duration if the biking stage is covered within 58:20?", "context": "CREATE TABLE table_17085947_32 (trans_2 VARCHAR, bike__40km_ VARCHAR)"}, {"answer": "SELECT trans_2 FROM table_17085947_32 WHERE total_time = \"1:51:19.45\"", "question": "What is the trans 2 duration if the total time is 1:51:19.45?", "context": "CREATE TABLE table_17085947_32 (trans_2 VARCHAR, total_time VARCHAR)"}, {"answer": "SELECT swim__15km_ FROM table_17085947_32 WHERE athlete = \"Daniela Ryf\"", "question": "What was the duration of Daniela Ryf's swimming stage?", "context": "CREATE TABLE table_17085947_32 (swim__15km_ VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(athlete) FROM table_17085947_32 WHERE trans_1 = \"0:26\"", "question": "How many athletes completed a trans 1 within 0:26?", "context": "CREATE TABLE table_17085947_32 (athlete VARCHAR, trans_1 VARCHAR)"}, {"answer": "SELECT athlete FROM table_17085947_32 WHERE bike__40km_ = \"58:52\"", "question": "Who was the athlete that covered biking within 58:52?", "context": "CREATE TABLE table_17085947_32 (athlete VARCHAR, bike__40km_ VARCHAR)"}, {"answer": "SELECT high_points FROM table_17080868_8 WHERE team = \"New York\"", "question": "All high points are team new york.", "context": "CREATE TABLE table_17080868_8 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17080868_8 WHERE date = \"February 12\"", "question": "February 12 is the date for all location attendance.", "context": "CREATE TABLE table_17080868_8 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17080868_8 WHERE game = 54", "question": "54 is the game where location attendance are.", "context": "CREATE TABLE table_17080868_8 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_17080868_8 WHERE high_points = \"Corey Maggette (25)\"", "question": "All high points were record by corey maggette (25).", "context": "CREATE TABLE table_17080868_8 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_17080868_6 WHERE date = \"December 29\"", "question": "what is the total number of attendance where the date is december 29?", "context": "CREATE TABLE table_17080868_6 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_17085981_2 WHERE outgoing_manager = \"Petrik Sander\"", "question": "What was the manner in which Petrik Sander departed?", "context": "CREATE TABLE table_17085981_2 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_17085981_2 WHERE team = \"Stuttgarter Kickers\" AND outgoing_manager = \"Edgar Schmitt\"", "question": "What was the manner of departure for Edgar Schmitt of the Stuttgarter Kickers?", "context": "CREATE TABLE table_17085981_2 (manner_of_departure VARCHAR, team VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_17085981_2 WHERE outgoing_manager = \"J\u00fcrgen Kohler\"", "question": "What was the date of appointment when J\u00fcrgen Kohler was the outgoing manager?", "context": "CREATE TABLE table_17085981_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT COUNT(date_of_appointment) FROM table_17085981_2 WHERE replaced_by = \"J\u00fcrgen Kohler\"", "question": "How many appointment dates were recorded when J\u00fcrgen Kohler was the replaced by?", "context": "CREATE TABLE table_17085981_2 (date_of_appointment VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_17088705_2 WHERE interview = \"9.366\"", "question": "What are the swimsuit scores of participants with score 9.366 in interview", "context": "CREATE TABLE table_17088705_2 (swimsuit VARCHAR, interview VARCHAR)"}, {"answer": "SELECT average FROM table_17088705_2 WHERE country = \"Arizona\"", "question": "State average scores of participants from arizona", "context": "CREATE TABLE table_17088705_2 (average VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(interview) FROM table_17088705_2 WHERE preliminary = \"8.895\"", "question": "Number of participants with a score 8.895 in preliminary", "context": "CREATE TABLE table_17088705_2 (interview VARCHAR, preliminary VARCHAR)"}, {"answer": "SELECT evening_gown FROM table_17088705_2 WHERE swimsuit = \"8.988\"", "question": "Evening gown scores of participants with 8.988 swimsuit score", "context": "CREATE TABLE table_17088705_2 (evening_gown VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT average FROM table_17088705_2 WHERE evening_gown = \"9.226\"", "question": "What are the average scores of participants with 9.226 in evening gown ", "context": "CREATE TABLE table_17088705_2 (average VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT swimsuit FROM table_17088705_2 WHERE preliminary = \"8.847\"", "question": "Give swimsuit scores of participants 8.847 in preliminary", "context": "CREATE TABLE table_17088705_2 (swimsuit VARCHAR, preliminary VARCHAR)"}, {"answer": "SELECT official_name FROM table_170958_2 WHERE area_km_2 = \"276.84\"", "question": "What is the official name of the land with an area of 276.84 km2?", "context": "CREATE TABLE table_170958_2 (official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_170958_2 WHERE area_km_2 = \"149.32\"", "question": "What is the total number of population in the land with an area of 149.32 km2?", "context": "CREATE TABLE table_170958_2 (population VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_170958_2 WHERE area_km_2 = \"276.84\"", "question": "What is the maximum population of the land with an area of 276.84 km2?", "context": "CREATE TABLE table_170958_2 (population INTEGER, area_km_2 VARCHAR)"}, {"answer": "SELECT area_km_2 FROM table_170958_2 WHERE official_name = \"Hopewell\"", "question": "What is the land area of Hopewell parish in km2?", "context": "CREATE TABLE table_170958_2 (area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT march_27_29 FROM table_1708610_3 WHERE november_3 = \"133\"", "question": "Name the march 27-29 for november 3 being 133", "context": "CREATE TABLE table_1708610_3 (march_27_29 VARCHAR, november_3 VARCHAR)"}, {"answer": "SELECT march_27_29 FROM table_1708610_3 WHERE january_15_16 = \"January 15, 1991\"", "question": "Name march 27-29 where january 15-16 is january 15, 1991", "context": "CREATE TABLE table_1708610_3 (march_27_29 VARCHAR, january_15_16 VARCHAR)"}, {"answer": "SELECT january_15_16 FROM table_1708610_3 WHERE march_27_29 = \"March 29, 2006\"", "question": "Name the january 15-16 where march 27-29 where march 29, 2006", "context": "CREATE TABLE table_1708610_3 (january_15_16 VARCHAR, march_27_29 VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_17102076_10 WHERE score = \"L 141\u2013143 (OT)\"", "question": "Name the number of location attendance for  l 141\u2013143 (ot)", "context": "CREATE TABLE table_17102076_10 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_17102076_10 WHERE date = \"April 1\"", "question": "Name the record for april 1", "context": "CREATE TABLE table_17102076_10 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17102076_10 WHERE score = \"L 98\u2013118 (OT)\"", "question": "Name the high assists for score being  l 98\u2013118 (ot)", "context": "CREATE TABLE table_17102076_10 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_17102076_10 WHERE location_attendance = \"ARCO Arena 13,330\"", "question": "Name the least game for arco arena 13,330", "context": "CREATE TABLE table_17102076_10 (game INTEGER, location_attendance VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17102076_5 WHERE game = 11", "question": "Name the high rebounds for game 11", "context": "CREATE TABLE table_17102076_5 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_17102076_5 WHERE score = \"L 92\u2013100 (OT)\"", "question": "Name the high points for score being  l 92\u2013100 (ot)", "context": "CREATE TABLE table_17102076_5 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_17102076_5 WHERE location_attendance = \"ARCO Arena 13,685\"", "question": "Name the team for arco arena 13,685", "context": "CREATE TABLE table_17102076_5 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT score FROM table_17102076_7 WHERE game = 35", "question": "What was the score of game 35?", "context": "CREATE TABLE table_17102076_7 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17103645_10 WHERE score = \"65-72\"", "question": "Name the location attendance for score of 65-72", "context": "CREATE TABLE table_17103645_10 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_17103645_10 WHERE date = \"July 18\"", "question": "Name the record for july 18", "context": "CREATE TABLE table_17103645_10 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_17103645_10 WHERE date = \"July 1\"", "question": "Name the number of high assists for july 1", "context": "CREATE TABLE table_17103645_10 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17103645_10 WHERE game = 19", "question": "Name the score when game is 19", "context": "CREATE TABLE table_17103645_10 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT result FROM table_17103566_1 WHERE team_1 = \"ICL Pakistan\"", "question": "What is the result when team 1 is ICL Pakistan?", "context": "CREATE TABLE table_17103566_1 (result VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT match_number FROM table_17103566_1 WHERE result = \"ICL World by 8 wickets\"", "question": "What is the match number where the result is ICL World by 8 wickets?", "context": "CREATE TABLE table_17103566_1 (match_number VARCHAR, result VARCHAR)"}, {"answer": "SELECT team_2 FROM table_17103566_1 WHERE result = \"ICL World by 8 wickets\"", "question": "What is team 2 where the result is ICL world by 8 wickets?", "context": "CREATE TABLE table_17103566_1 (team_2 VARCHAR, result VARCHAR)"}, {"answer": "SELECT man_of_the_match FROM table_17103566_1 WHERE team_1 = \"ICL Pakistan\"", "question": "Who is man of the match when Team 1 is ICL Pakistan?", "context": "CREATE TABLE table_17103566_1 (man_of_the_match VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_17103566_1 WHERE match_number = 5", "question": "How many dates have a Match number of 5?", "context": "CREATE TABLE table_17103566_1 (date VARCHAR, match_number VARCHAR)"}, {"answer": "SELECT man_of_the_match FROM table_17103566_1 WHERE match_number = 5", "question": "Who is man of the match for match number 5?", "context": "CREATE TABLE table_17103566_1 (man_of_the_match VARCHAR, match_number VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17103729_7 WHERE score = \"68-85\"", "question": "With a score of 68-85, what is the location and attendance?", "context": "CREATE TABLE table_17103729_7 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17103729_8 WHERE score = \"64-74\"", "question": "Name the location of 64-74", "context": "CREATE TABLE table_17103729_8 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_17103729_8 WHERE game = 25", "question": "Name the score for game for 25", "context": "CREATE TABLE table_17103729_8 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_17103729_8 WHERE location_attendance = \"Palace of Auburn Hills 15,210\"", "question": "Name the record for attendance location of palace of auburn hills 15,210", "context": "CREATE TABLE table_17103729_8 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_17103729_8 WHERE score = \"64-74\"", "question": "Name the high rebounds for score of 64-74", "context": "CREATE TABLE table_17103729_8 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_17103729_8 WHERE date = \"July 16\"", "question": "Namethe score for july 16", "context": "CREATE TABLE table_17103729_8 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT best_10_year_period FROM table_1710426_2 WHERE best_15_year_period = \"Fischer\"", "question": "Which people had the best 10-year period when Fischer had best 15-year period?", "context": "CREATE TABLE table_1710426_2 (best_10_year_period VARCHAR, best_15_year_period VARCHAR)"}, {"answer": "SELECT best_10_year_period FROM table_1710426_2 WHERE best_15_year_period = \"Capablanca\"", "question": "Which people had the best 10-year period when Capablanca had the best 15-year period?", "context": "CREATE TABLE table_1710426_2 (best_10_year_period VARCHAR, best_15_year_period VARCHAR)"}, {"answer": "SELECT record FROM table_17104539_9 WHERE date = \"June 7\"", "question": "Name the record for june 7", "context": "CREATE TABLE table_17104539_9 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_17104539_9 WHERE score = \"W 83-69\"", "question": "Name the date for the score of w 83-69", "context": "CREATE TABLE table_17104539_9 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_17104539_9 WHERE score = \"W 76-67\"", "question": "Name the record for score of w 76-67", "context": "CREATE TABLE table_17104539_9 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_17104539_12 WHERE date = \"September 9\"", "question": "What are the scores for games played on september 9?", "context": "CREATE TABLE table_17104539_12 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17104539_12 WHERE record = \"16-17\"", "question": "What was the score of the game played when the team was 16-17?", "context": "CREATE TABLE table_17104539_12 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17104539_12 WHERE game = 32", "question": "What was the location and where did the team play game number 32?", "context": "CREATE TABLE table_17104539_12 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17104539_10 WHERE record = \"11-13\"", "question": "Who had a high rebound where the associated record is 11-13?", "context": "CREATE TABLE table_17104539_10 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_17104539_10 WHERE date = \"July 8\"", "question": "On July 8, what was the score?", "context": "CREATE TABLE table_17104539_10 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_17104539_10 WHERE score = \"L 68-60\"", "question": "Who was the oppenent what the score was L 68-60?", "context": "CREATE TABLE table_17104539_10 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_17118657_10 WHERE high_assists = \"Canty (6)\"", "question": "If high assists are under Canty (6) how much would the record be?", "context": "CREATE TABLE table_17118657_10 (record VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_points FROM table_17118657_10 WHERE score = \"62-70\"", "question": "If the score is 62-70, what are the high points?", "context": "CREATE TABLE table_17118657_10 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_17118657_10 WHERE location_attendance = \"UIC Pavilion 3,829\"", "question": "On which date was the location/attendance UIC Pavilion 3,829 respectively?", "context": "CREATE TABLE table_17118657_10 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_17118657_10 WHERE high_assists = \"Dupree (6)\"", "question": "On which date is high assists Dupree (6)?", "context": "CREATE TABLE table_17118657_10 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT local_investment__us$_ FROM table_17118006_2 WHERE bid_pronar_investment__us$_ = \"912,185\"", "question": "What was the local investment (in $) in the projects of the department with $912,185 BID/PRONAR investment?", "context": "CREATE TABLE table_17118006_2 (local_investment__us$_ VARCHAR, bid_pronar_investment__us$_ VARCHAR)"}, {"answer": "SELECT MAX(farmers) FROM table_17118006_2 WHERE projects = 32", "question": "How many farmers were included by the department with 32 projects?", "context": "CREATE TABLE table_17118006_2 (farmers INTEGER, projects VARCHAR)"}, {"answer": "SELECT department FROM table_17118006_2 WHERE irrigated_ha = 2170", "question": "What department irrigated 2170 Ha?", "context": "CREATE TABLE table_17118006_2 (department VARCHAR, irrigated_ha VARCHAR)"}, {"answer": "SELECT bid_pronar_investment__us$_ FROM table_17118006_2 WHERE farmers = 1326", "question": "What was the BID/PRONAR investment (in $) in the department that included 1326 farmers in its projects?", "context": "CREATE TABLE table_17118006_2 (bid_pronar_investment__us$_ VARCHAR, farmers VARCHAR)"}, {"answer": "SELECT department FROM table_17118006_2 WHERE local_investment__us$_ = \"626,798\"", "question": "What was the department that got $626,798 in local investments?", "context": "CREATE TABLE table_17118006_2 (department VARCHAR, local_investment__us$_ VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_17118657_8 WHERE record = \"5-11\"", "question": "What number was the game resulting in a 5-11 record?", "context": "CREATE TABLE table_17118657_8 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_17118657_8 WHERE score = \"68-60\"", "question": "How many high assists are listed for the game with a score of 68-60?", "context": "CREATE TABLE table_17118657_8 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17118657_8 WHERE record = \"5-11\"", "question": "In the game resulting in a 5-11 record, who scored the high rebounds?", "context": "CREATE TABLE table_17118657_8 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_17120964_8 WHERE result = \"Won 4-1\"", "question": "Who was the opponent of the game with final score won 4-1?", "context": "CREATE TABLE table_17120964_8 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_17120964_8 WHERE man_of_the_match = \"Neil Liddiard\"", "question": "What was the attendance at the game where Neil Liddiard was Man of the Match?", "context": "CREATE TABLE table_17120964_8 (attendance INTEGER, man_of_the_match VARCHAR)"}, {"answer": "SELECT venue FROM table_17120964_8 WHERE result = \"Lost 3-4\"", "question": "What was the venue of the game that was lost 3-4?", "context": "CREATE TABLE table_17120964_8 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_17120964_8 WHERE man_of_the_match = \"Vaclav Zavoral\"", "question": "What is the venue of the game with Man of the Match Vaclav Zavoral?", "context": "CREATE TABLE table_17120964_8 (venue VARCHAR, man_of_the_match VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_17120964_8 WHERE result = \"Lost 5-3\"", "question": "How many attendance figures are given for the game where the final score was lost 5-3?", "context": "CREATE TABLE table_17120964_8 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_17120964_5 WHERE date = \"4th\"", "question": "Name the opponent for 4th", "context": "CREATE TABLE table_17120964_5 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_17120964_5 WHERE date = \"19th\"", "question": "Name the venue for 19th date", "context": "CREATE TABLE table_17120964_5 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_17120964_5 WHERE man_of_the_match = \"Lukas Smital\" AND venue = \"Home\"", "question": "Name the result for lukas smital and home", "context": "CREATE TABLE table_17120964_5 (result VARCHAR, man_of_the_match VARCHAR, venue VARCHAR)"}, {"answer": "SELECT man_of_the_match FROM table_17120964_5 WHERE date = \"24th\"", "question": "Name the man of the match for 24th", "context": "CREATE TABLE table_17120964_5 (man_of_the_match VARCHAR, date VARCHAR)"}, {"answer": "SELECT man_of_the_match FROM table_17120964_5 WHERE opponent = \"Sheffield Scimitars\"", "question": "Name the man of the maatch for sheffield scimitars", "context": "CREATE TABLE table_17120964_5 (man_of_the_match VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_17120964_6 WHERE date = \"19th\"", "question": "On the 19th, where was the venue?", "context": "CREATE TABLE table_17120964_6 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_17120964_6 WHERE opponent = \"Swindon Wildcats\" AND venue = \"Home\"", "question": "What was the total attendance during the home game against the Swindon Wildcats?", "context": "CREATE TABLE table_17120964_6 (attendance VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_17120964_6 WHERE man_of_the_match = \"Stuart Potts\"", "question": "On what day was Stuart Potts the Man of the Match?", "context": "CREATE TABLE table_17120964_6 (date VARCHAR, man_of_the_match VARCHAR)"}, {"answer": "SELECT venue FROM table_17120964_6 WHERE man_of_the_match = \"Alex Mettam/Mark Williams\"", "question": "At what venue did Alex Mettam/Mark Williams be named Man of the Match?", "context": "CREATE TABLE table_17120964_6 (venue VARCHAR, man_of_the_match VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_17120964_7 WHERE man_of_the_match = \"David Savage\"", "question": "How many dates did David Savage get man of the match?", "context": "CREATE TABLE table_17120964_7 (date VARCHAR, man_of_the_match VARCHAR)"}, {"answer": "SELECT man_of_the_match FROM table_17120964_7 WHERE attendance = 1568", "question": "When the attendance was 1568, who was man of the match?", "context": "CREATE TABLE table_17120964_7 (man_of_the_match VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT man_of_the_match FROM table_17120964_7 WHERE result = \"Lost 2-4\"", "question": "Who was the man of the match when they lost 2-4?", "context": "CREATE TABLE table_17120964_7 (man_of_the_match VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_17120964_9 WHERE opponent = \"Sheffield Scimitars\"", "question": "what was the competitoin where the opponent is sheffield scimitars?", "context": "CREATE TABLE table_17120964_9 (competition VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_17120964_9 WHERE attendance = \"702\"", "question": "where was the venue where the attendance was 702?", "context": "CREATE TABLE table_17120964_9 (venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT venue FROM table_17120964_9 WHERE date = \"22nd\"", "question": "what was the venue where the date was the 22nd?", "context": "CREATE TABLE table_17120964_9 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_17120964_9 WHERE date = \"21st\"", "question": "who was the opponent where the date was the 21st?", "context": "CREATE TABLE table_17120964_9 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17121262_5 WHERE team = \"Milwaukee\"", "question": "What is the score for Milwaukee? ", "context": "CREATE TABLE table_17121262_5 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_17121262_10 WHERE team = \"Washington\"", "question": "What was the record against Washington?", "context": "CREATE TABLE table_17121262_10 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT population FROM table_171236_1 WHERE census_ranking = \"231 of 5,008\"", "question": "If the census ranking is 231 of 5,008, what was the population?", "context": "CREATE TABLE table_171236_1 (population VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT official_name FROM table_171236_1 WHERE area_km_2 = \"59.73\"", "question": "If the area is 59.73, what is the official name?", "context": "CREATE TABLE table_171236_1 (official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT status FROM table_171236_1 WHERE census_ranking = \"693 of 5,008\"", "question": "If the census ranking is 693 of 5,008, what is the status?", "context": "CREATE TABLE table_171236_1 (status VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_171236_1 WHERE official_name = \"Quispamsis\"", "question": "With the official name Quispamsis, what is the census ranking?", "context": "CREATE TABLE table_171236_1 (census_ranking VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT population FROM table_171236_1 WHERE census_ranking = \"782 of 5,008\"", "question": "What was the population for census ranking 782 of 5,008?", "context": "CREATE TABLE table_171236_1 (population VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_171236_1 WHERE area_km_2 = \"34.73\"", "question": "If the area is 34.73, what is the census ranking?", "context": "CREATE TABLE table_171236_1 (census_ranking VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_171250_2 WHERE population = 284", "question": "What are the census ranking(s) for a population of 284?", "context": "CREATE TABLE table_171250_2 (census_ranking VARCHAR, population VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_171250_2 WHERE area_km_2 = \"369.25\"", "question": "What are the census ranking(s) that have an area of 369.25 km2?", "context": "CREATE TABLE table_171250_2 (census_ranking VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT population FROM table_171250_2 WHERE area_km_2 = \"715.58\"", "question": "What is the population that has an area of 715.58?", "context": "CREATE TABLE table_171250_2 (population VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT status FROM table_171250_2 WHERE official_name = \"Saint-Jacques\"", "question": "What are that status(es) of saint-jacques?", "context": "CREATE TABLE table_171250_2 (status VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT area_km_2 FROM table_171250_2 WHERE official_name = \"Saint-Joseph\"", "question": "What are the area(s) (km2) for saint-joseph?", "context": "CREATE TABLE table_171250_2 (area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_171356_2 WHERE area_km_2 = \"482.81\"", "question": "What rank is the parish with 482.81 km^2?", "context": "CREATE TABLE table_171356_2 (census_ranking VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT status FROM table_171356_2 WHERE census_ranking = \"2,290 of 5,008\"", "question": "What status doe the area with a census ranking of 2,290 of 5,008 have?", "context": "CREATE TABLE table_171356_2 (status VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT COUNT(status) FROM table_171356_2 WHERE official_name = \"Gagetown\"", "question": "How many statuses are listed for the parish officially named Gagetown?", "context": "CREATE TABLE table_171356_2 (status VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_171356_2 WHERE official_name = \"Petersville\"", "question": "What is Petersville's census ranking?", "context": "CREATE TABLE table_171356_2 (census_ranking VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT population FROM table_171361_1 WHERE status = \"City\"", "question": "What is the population of each community with city status?", "context": "CREATE TABLE table_171361_1 (population VARCHAR, status VARCHAR)"}, {"answer": "SELECT official_name FROM table_171361_1 WHERE area_km_2 = \"30.75\"", "question": "What is the name of the community with an area of 30.75 sq. km.?", "context": "CREATE TABLE table_171361_1 (official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT area_km_2 FROM table_171361_1 WHERE population = 1209", "question": "What is the area of the community with a population of 1209?", "context": "CREATE TABLE table_171361_1 (area_km_2 VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_171361_1 WHERE area_km_2 = \"10.25\"", "question": "How many population values are listed for the community with an area of 10.25 sq.km.?", "context": "CREATE TABLE table_171361_1 (population VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT region_1 FROM table_171320_3 WHERE region_4 = \"April 2, 2009\"", "question": "Name the region 1 where region 4 for april 2, 2009", "context": "CREATE TABLE table_171320_3 (region_1 VARCHAR, region_4 VARCHAR)"}, {"answer": "SELECT region_1 FROM table_171320_3 WHERE ep__number = 13", "question": "Name the region 1 for episode number 13", "context": "CREATE TABLE table_171320_3 (region_1 VARCHAR, ep__number VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_17152787_3 WHERE season__number = 1", "question": "How many episodes have the season number of 1?", "context": "CREATE TABLE table_17152787_3 (series__number VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT director FROM table_17155250_1 WHERE original_title = \"The Patience Stone\"", "question": "Who was the director of the film with the original title of \"The Patience Stone\"? ", "context": "CREATE TABLE table_17155250_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_17155250_1 WHERE original_title = \"Fire Dancer\"", "question": "For what ceremony was \"Fire Dancer\" not nominated? ", "context": "CREATE TABLE table_17155250_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_17155250_1 WHERE original_title = \"The Black Tulip\"", "question": "What name was used for nomination for the film with an original title of \"The Black Tulip\"? ", "context": "CREATE TABLE table_17155250_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT language_s_ FROM table_17155250_1 WHERE film_title_used_in_nomination = \"FireDancer\"", "question": "What languages were spoken in the film \"FireDancer\"?", "context": "CREATE TABLE table_17155250_1 (language_s_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT director FROM table_17155250_1 WHERE original_title = \"16 Days in Afghanistan\"", "question": "Who was the director of the film with an original title of \"16 Days in Afghanistan\"? ", "context": "CREATE TABLE table_17155250_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT model FROM table_17157367_1 WHERE method = \"HA\"", "question": "what is the model where the method is ha?", "context": "CREATE TABLE table_17157367_1 (model VARCHAR, method VARCHAR)"}, {"answer": "SELECT COUNT(model) FROM table_17157367_1 WHERE \"status\" = \"status\" AND name = \"GenEva\"", "question": "what is the total number of model wehre the status is named geneva?", "context": "CREATE TABLE table_17157367_1 (model VARCHAR, name VARCHAR)"}, {"answer": "SELECT max_fs FROM table_17157367_1 WHERE \"status\" = \"status\" AND \"method\" = \"method\"", "question": "what is the max fs where the status is status and the method is method?", "context": "CREATE TABLE table_17157367_1 (max_fs VARCHAR)"}, {"answer": "SELECT output FROM table_17157367_1 WHERE short_description = \"massive\"", "question": "what ist he output where the short description is massive?", "context": "CREATE TABLE table_17157367_1 (output VARCHAR, short_description VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_17156199_1 WHERE original_title = \"\u09b6\u09cd\u09af\u09be\u09ae\u09b2 \u099b\u09be\u09af\u09bc\u09be (Shyamol Chhaya)\"", "question": "What was the nominated film title of \u09b6\u09cd\u09af\u09be\u09ae\u09b2 \u099b\u09be\u09af\u09bc\u09be (shyamol chhaya)?", "context": "CREATE TABLE table_17156199_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_17156199_1 WHERE original_title = \"\u09ac\u09c3\u09a4\u09cd\u09a4\u09c7\u09b0 \u09ac\u09be\u0987\u09b0\u09c7 (Britter Baire)\"", "question": "What year and ceremony was the original title  \u09ac\u09c3\u09a4\u09cd\u09a4\u09c7\u09b0 \u09ac\u09be\u0987\u09b0\u09c7 (britter baire)?", "context": "CREATE TABLE table_17156199_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT COUNT(year__ceremony_) FROM table_17156199_1 WHERE original_title = \"\u09b8\u09cd\u09ac\u09aa\u09cd\u09a8\u09a1\u09be\u09a8\u09be\u09af\u09bc (Swopnodanay)\"", "question": "How many years was the original title was \u09b8\u09cd\u09ac\u09aa\u09cd\u09a8\u09a1\u09be\u09a8\u09be\u09af\u09bc (swopnodanay)?", "context": "CREATE TABLE table_17156199_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT nickname FROM table_1715730_2 WHERE founded = 1902", "question": "what is the nickname founded in 1902?", "context": "CREATE TABLE table_1715730_2 (nickname VARCHAR, founded VARCHAR)"}, {"answer": "SELECT location FROM table_1715730_2 WHERE enrollment = 4259", "question": "where is the enrollment 4259?", "context": "CREATE TABLE table_1715730_2 (location VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT founded FROM table_1715730_2 WHERE institution = \"Union University\"", "question": "what is the year union university was founded?", "context": "CREATE TABLE table_1715730_2 (founded VARCHAR, institution VARCHAR)"}, {"answer": "SELECT _percentage_2011 FROM table_1717824_1 WHERE province = \"Manitoba\"", "question": "What was the percentage in Manitoba in 2011?", "context": "CREATE TABLE table_1717824_1 (_percentage_2011 VARCHAR, province VARCHAR)"}, {"answer": "SELECT province FROM table_1717824_1 WHERE south_asians_2001 = 210295", "question": "Which province had population of 210295 South Asians in 2001?", "context": "CREATE TABLE table_1717824_1 (province VARCHAR, south_asians_2001 VARCHAR)"}, {"answer": "SELECT south_asians_2001 FROM table_1717824_1 WHERE province = \"Nova Scotia\"", "question": "What was the South Asian population in Nova Scotia in 2001?", "context": "CREATE TABLE table_1717824_1 (south_asians_2001 VARCHAR, province VARCHAR)"}, {"answer": "SELECT _percentage_2011 FROM table_1717824_1 WHERE _percentage_2001 = \"2.4%\"", "question": "What was the percentage in 2011 of the province that had 2.4% population in 2001?", "context": "CREATE TABLE table_1717824_1 (_percentage_2011 VARCHAR, _percentage_2001 VARCHAR)"}, {"answer": "SELECT COUNT(south_asians_2001) FROM table_1717824_1 WHERE _percentage_2011 = \"4.4%\"", "question": "How many figures are given for total number of South Asians in 2001 for the area where they were 4.4% of population in 2011?", "context": "CREATE TABLE table_1717824_1 (south_asians_2001 VARCHAR, _percentage_2011 VARCHAR)"}, {"answer": "SELECT indians_admitted FROM table_1717824_3 WHERE year = 2001", "question": "How many Indians were admitted in 2001?", "context": "CREATE TABLE table_1717824_3 (indians_admitted VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(pakistanis_admitted) FROM table_1717824_3 WHERE nepalis_admitted = 627", "question": "What is the greatest number of Pakistanis admitted to Canada during those times when the number of Nepalis admitted was 627?", "context": "CREATE TABLE table_1717824_3 (pakistanis_admitted INTEGER, nepalis_admitted VARCHAR)"}, {"answer": "SELECT MIN(indians_admitted) FROM table_1717824_3 WHERE sri_lankans_admitted = 3104", "question": "What is the most number of Indians admitted to Canada when the number of Sri Lankans admitted was 3104?", "context": "CREATE TABLE table_1717824_3 (indians_admitted INTEGER, sri_lankans_admitted VARCHAR)"}, {"answer": "SELECT COUNT(driver___passenger) FROM table_17176509_4 WHERE position = 30", "question": "Name the driver/passenger for 30", "context": "CREATE TABLE table_17176509_4 (driver___passenger VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(bike_no) FROM table_17176509_4 WHERE position = 30", "question": "Name the max bike number of position for 30", "context": "CREATE TABLE table_17176509_4 (bike_no INTEGER, position VARCHAR)"}, {"answer": "SELECT high_points FROM table_17190012_12 WHERE game = 4", "question": "Who had the most points in game 4?", "context": "CREATE TABLE table_17190012_12 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(going_to) FROM table_17200372_2 WHERE calling_at = \"Thurlby, Braceborough Spa\" AND departure = \"16.50\"", "question": "Name the number of going to for  thurlby, braceborough spa at departure being 16.50", "context": "CREATE TABLE table_17200372_2 (going_to VARCHAR, calling_at VARCHAR, departure VARCHAR)"}, {"answer": "SELECT departure FROM table_17200372_2 WHERE going_to = \"Spalding\"", "question": "Name the departure for spalding", "context": "CREATE TABLE table_17200372_2 (departure VARCHAR, going_to VARCHAR)"}, {"answer": "SELECT high_points FROM table_17190012_7 WHERE record = \"27\u20135\"", "question": "who scored highest points on the game with record 27\u20135", "context": "CREATE TABLE table_17190012_7 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17190012_7 WHERE score = \"W 105\u201388 (OT)\"", "question": "who did highest rebounds in the game with score w 105\u201388 (ot)", "context": "CREATE TABLE table_17190012_7 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_17190012_7 WHERE score = \"W 121\u2013119 (OT)\"", "question": "how many records were made on the game that ended with score w 121\u2013119 (ot)", "context": "CREATE TABLE table_17190012_7 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_17201869_3 WHERE replaced_by = \"Lucas Alcaraz\"", "question": "What was the team's position when the new manager was Lucas Alcaraz?", "context": "CREATE TABLE table_17201869_3 (position_in_table VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_17201869_3 WHERE outgoing_manager = \"Jos\u00e9 \u00c1ngel Ziganda\"", "question": "Who replaced outgoing manager Jos\u00e9 \u00c1ngel Ziganda?", "context": "CREATE TABLE table_17201869_3 (replaced_by VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT grid FROM table_17244483_1 WHERE points = \"19\"", "question": "What grid did the driver who earned 19 points start at?", "context": "CREATE TABLE table_17244483_1 (grid VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_17244483_1 WHERE driver = \"Scott Dixon\"", "question": "Scott Dixon had how many Grid positions?", "context": "CREATE TABLE table_17244483_1 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_17244483_1 WHERE car_no = 15", "question": "Car number 15 earned what time?", "context": "CREATE TABLE table_17244483_1 (time_retired VARCHAR, car_no VARCHAR)"}, {"answer": "SELECT COUNT(fin_pos) FROM table_17244483_1 WHERE time_retired = \"+10.8098\"", "question": "How many positions did the car with a final time of +10.8098 finish in?", "context": "CREATE TABLE table_17244483_1 (fin_pos VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MIN(fin_pos) FROM table_17244483_1 WHERE driver = \"Darren Manning\"", "question": "Darren Manning finished in what position?", "context": "CREATE TABLE table_17244483_1 (fin_pos INTEGER, driver VARCHAR)"}, {"answer": "SELECT position FROM table_17246160_1 WHERE team = \"Josef Kaufmann Racing\"", "question": "What was the position for the Josef Kaufmann Racing team?", "context": "CREATE TABLE table_17246160_1 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_17246160_1 WHERE series = \"Formula BMW Pacific\"", "question": "How many poles did the player have during the Formula BMW Pacific race?", "context": "CREATE TABLE table_17246160_1 (poles INTEGER, series VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_17246160_1 WHERE points = 0 AND position = \"31st\"", "question": "Which season did he have 0 points and 31st position?", "context": "CREATE TABLE table_17246160_1 (season INTEGER, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT wins FROM table_17246160_1 WHERE series = \"Formula BMW World Final\"", "question": "How many wins did the player have in the Formula BMW World Final?", "context": "CREATE TABLE table_17246160_1 (wins VARCHAR, series VARCHAR)"}, {"answer": "SELECT air_date FROM table_17257687_1 WHERE event_2 = \"Hang Tough\"", "question": "On what date was the episode aired where event 2 was Hang Tough?", "context": "CREATE TABLE table_17257687_1 (air_date VARCHAR, event_2 VARCHAR)"}, {"answer": "SELECT event_2 FROM table_17257687_1 WHERE event_4 = \"Whiplash\"", "question": "When event 4 was Whiplash, what was event 2?", "context": "CREATE TABLE table_17257687_1 (event_2 VARCHAR, event_4 VARCHAR)"}, {"answer": "SELECT COUNT(air_date) FROM table_17257687_1 WHERE event_1 = \"Suspension Bridge\"", "question": "On how many different dates was event 1 Suspension Bridge?", "context": "CREATE TABLE table_17257687_1 (air_date VARCHAR, event_1 VARCHAR)"}, {"answer": "SELECT COUNT(episode_number) FROM table_17257687_1 WHERE event_4 = \"The Wall\" AND event_1 = \"Pendulum\"", "question": "On which episode number is event 4 The Wall and event 1 the Pendulum?", "context": "CREATE TABLE table_17257687_1 (episode_number VARCHAR, event_4 VARCHAR, event_1 VARCHAR)"}, {"answer": "SELECT event_2 FROM table_17257687_1 WHERE event_1 = \"Atlasphere\"", "question": "What was event 2 when event 1 was Atlasphere?", "context": "CREATE TABLE table_17257687_1 (event_2 VARCHAR, event_1 VARCHAR)"}, {"answer": "SELECT car_no FROM table_17256857_1 WHERE driver = \"Darren Manning\"", "question": "What is the car number driven by Darren Manning?", "context": "CREATE TABLE table_17256857_1 (car_no VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(fin_pos) FROM table_17256857_1 WHERE points = \"50\"", "question": "Which position earned 50 points?", "context": "CREATE TABLE table_17256857_1 (fin_pos INTEGER, points VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_17256857_1 WHERE driver = \"Vitor Meira\"", "question": "How many drivers on the grid are called Vitor Meira?", "context": "CREATE TABLE table_17256857_1 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(result) FROM table_17265535_7 WHERE equation = \"0 \u00d7 9\u00b2 + 3 \u00d7 9 + 3\"", "question": "If the equation is 0 \u00d7 9\u00b2 + 3 \u00d7 9 + 3, what is the result?", "context": "CREATE TABLE table_17265535_7 (result INTEGER, equation VARCHAR)"}, {"answer": "SELECT MAX(3 AS rd_throw) FROM table_17265535_7 WHERE equation = \"6 \u00d7 9\u00b2 + 6 \u00d7 9 + 6\"", "question": "If the equation is 6 \u00d7 9\u00b2 + 6 \u00d7 9 + 6, what is the 3rd throw?", "context": "CREATE TABLE table_17265535_7 (equation VARCHAR)"}, {"answer": "SELECT MIN(2 AS nd_throw) FROM table_17265535_7 WHERE equation = \"8 \u00d7 9\u00b2 + 8 \u00d7 9 + 8\"", "question": "If the equation is 8 \u00d7 9\u00b2 + 8 \u00d7 9 + 8, what is the 2nd throw?", "context": "CREATE TABLE table_17265535_7 (equation VARCHAR)"}, {"answer": "SELECT 2 AS nd_throw FROM table_17265535_7 WHERE equation = \"1 \u00d7 9\u00b2 + 4 \u00d7 9 + 0\"", "question": "If the equation is 1 \u00d7 9\u00b2 + 4 \u00d7 9 + 0, what is the 2nd throw?", "context": "CREATE TABLE table_17265535_7 (equation VARCHAR)"}, {"answer": "SELECT MAX(2 AS nd_throw) FROM table_17265535_7 WHERE equation = \"6 \u00d7 9\u00b2 + 6 \u00d7 9 + 6\"", "question": "If the equation is  6 \u00d7 9\u00b2 + 6 \u00d7 9 + 6, what is the 2nd throw?", "context": "CREATE TABLE table_17265535_7 (equation VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_17282875_3 WHERE team__number1 = \"San Lorenzo\"", "question": "When they played San Lorenzo, what was the score of the second leg?", "context": "CREATE TABLE table_17282875_3 (team__number1 VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_leg) FROM table_17282875_3 WHERE team__number2 = \"Universidad de Chile\"", "question": "When they played Universidad de Chile, what was the score of the first leg?", "context": "CREATE TABLE table_17282875_3 (team__number2 VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_17282875_3 WHERE team__number1 = \"San Lorenzo\"", "question": "Who played San Lorenzo?", "context": "CREATE TABLE table_17282875_3 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_17282875_3 WHERE team__number1 = \"River Plate\"", "question": "Who played River Plate?", "context": "CREATE TABLE table_17282875_3 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_leg) FROM table_17282875_2 WHERE team__number2 = \"Botafogo\"", "question": "What was the score on the 1st leg if the team 2 is botafogo?", "context": "CREATE TABLE table_17282875_2 (team__number2 VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_17282875_2 WHERE team__number1 = \"Vit\u00f3ria\"", "question": "Who played against team 1 Vit\u00f3ria?", "context": "CREATE TABLE table_17282875_2 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_17282875_2 WHERE team__number1 = \"Liverpool\"", "question": "Who played against team 1 Liverpool? ", "context": "CREATE TABLE table_17282875_2 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT points FROM table_17282875_2 WHERE team__number2 = \"Deportivo Anzo\u00e1tegui\"", "question": "What was the game's points against Team 2 Deportivo Anzo\u00e1tegui?", "context": "CREATE TABLE table_17282875_2 (points VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_17288825_10 WHERE location_attendance = \"US Airways Center 18,422\"", "question": "How many different items appear in the high points column when the location attendance was US Airways Center 18,422?", "context": "CREATE TABLE table_17288825_10 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17288825_10 WHERE date = \"April 7\"", "question": "What was the high assists on April 7?", "context": "CREATE TABLE table_17288825_10 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17288825_7 WHERE date = \"January 25\"", "question": "What is the score for the game played on January 25?", "context": "CREATE TABLE table_17288825_7 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_17288825_7 WHERE date = \"January 19\"", "question": "What is the record for the team on January 19?", "context": "CREATE TABLE table_17288825_7 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_17288825_7 WHERE high_points = \"Ron Artest (24)\"", "question": "How many times did Ron Artest (24) receive the record for high points?", "context": "CREATE TABLE table_17288825_7 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17288825_7 WHERE high_assists = \"Rafer Alston (10)\"", "question": "At what location and what was the attendance when Rafer Alston (10) achieved high assists? ", "context": "CREATE TABLE table_17288825_7 (location_attendance VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_17288825_7 WHERE location_attendance = \"Conseco Fieldhouse 14,486\"", "question": "At what game number was the attendance at Conseco Fieldhouse 14,486?", "context": "CREATE TABLE table_17288825_7 (game INTEGER, location_attendance VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_17288845_7 WHERE date = \"January 19\"", "question": "What is the number of the game that was played on January 19?", "context": "CREATE TABLE table_17288845_7 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT record FROM table_17288845_8 WHERE location_attendance = \"Verizon Center 20,173\"", "question": "Name the record for verizon center 20,173", "context": "CREATE TABLE table_17288845_8 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_17288845_8 WHERE score = \"L 89\u201391 (OT)\"", "question": "Name the date for score  l 89\u201391 (ot)", "context": "CREATE TABLE table_17288845_8 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_17288861_5 WHERE team = \"Cleveland\"", "question": "What was the team record when the team was Cleveland?", "context": "CREATE TABLE table_17288861_5 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17288861_9 WHERE score = \"L 93\u2013103 (OT)\"", "question": "Name the high assists for  l 93\u2013103 (ot)", "context": "CREATE TABLE table_17288861_9 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_17288869_6 WHERE game = 21", "question": "What was the date of game 21?", "context": "CREATE TABLE table_17288869_6 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT round_of_32 FROM table_17289604_38 WHERE athlete = \"Nicole Vaidi\u0161ov\u00e1\"", "question": "What were the results for round of 32 for  Nicole Vaidi\u0161ov\u00e1?", "context": "CREATE TABLE table_17289604_38 (round_of_32 VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(athlete) FROM table_17289604_38 WHERE round_of_64 = \"Llagostera Vives ( ESP ) L 6\u20132, 3\u20136, 5\u20137\"", "question": "How many number of athletes were in round of 64 was llagostera Vives ( esp ) l 6\u20132, 3\u20136, 5\u20137?", "context": "CREATE TABLE table_17289604_38 (athlete VARCHAR, round_of_64 VARCHAR)"}, {"answer": "SELECT round_of_16 FROM table_17289604_38 WHERE round_of_32 = \"Koryttseva ( UKR ) W 2\u20136, 6\u20131, 7\u20135\"", "question": "What was round of 16 when in round 32 it was  koryttseva ( ukr ) w 2\u20136, 6\u20131, 7\u20135?", "context": "CREATE TABLE table_17289604_38 (round_of_16 VARCHAR, round_of_32 VARCHAR)"}, {"answer": "SELECT round_of_64 FROM table_17289604_38 WHERE event = \"Singles\" AND round_of_16 = \"Did not advance\" AND athlete = \"Iveta Bene\u0161ov\u00e1\"", "question": "What was round of 64 of the singles event when the result of round 16 was did not advance and the athlete was Iveta Bene\u0161ov\u00e1?", "context": "CREATE TABLE table_17289604_38 (round_of_64 VARCHAR, athlete VARCHAR, event VARCHAR, round_of_16 VARCHAR)"}, {"answer": "SELECT quarterfinals FROM table_17289604_38 WHERE round_of_32 = \"S Williams / V Williams ( USA ) L 6\u20134, 5\u20137, 1\u20136\"", "question": "What were the quarterfinals in the round of 32 was  S williams / V williams ( usa ) l 6\u20134, 5\u20137, 1\u20136?", "context": "CREATE TABLE table_17289604_38 (quarterfinals VARCHAR, round_of_32 VARCHAR)"}, {"answer": "SELECT date FROM table_17288869_7 WHERE high_rebounds = \"Dirk Nowitzki (14)\"", "question": "On what day did Dirk Nowitzki (14) have a high rebound? ", "context": "CREATE TABLE table_17288869_7 (date VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_17288869_7 WHERE high_points = \"Josh Howard (19)\"", "question": "High points earned by Josh Howard (19) resulted in how many high rebounds?", "context": "CREATE TABLE table_17288869_7 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17288869_7 WHERE high_rebounds = \"Erick Dampier (8)\"", "question": "Who had the high assists while Erick Dampier (8) had the high rebounds?", "context": "CREATE TABLE table_17288869_7 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_points FROM table_17288869_7 WHERE high_rebounds = \"Dirk Nowitzki (13)\"", "question": "Who had the high points while Dirk Nowitzki (13) had the high rebounds?", "context": "CREATE TABLE table_17288869_7 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT record FROM table_17288869_7 WHERE high_points = \"Dirk Nowitzki (19)\"", "question": "What was the final record for the game in which Dirk Nowitzki (19) had the high points?", "context": "CREATE TABLE table_17288869_7 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT championship FROM table_1729366_2 WHERE opponents_in_the_final = \"Nathalie Dechy Andy Ram\"", "question": "Which championship had the final opponents of nathalie dechy andy ram?", "context": "CREATE TABLE table_1729366_2 (championship VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT upstream FROM table_17304621_14 WHERE price_tl = \"39 TL\"", "question": "What is the upstream speed of the network that costs 39 tl?", "context": "CREATE TABLE table_17304621_14 (upstream VARCHAR, price_tl VARCHAR)"}, {"answer": "SELECT COUNT(upstream) FROM table_17304621_14 WHERE downstream = \"20 Mbit/s\" AND bandwidth = \"40 GB\"", "question": "How many upstream speeds are there for downstream of 20 mbit/s and bandwidth of 40 gb?", "context": "CREATE TABLE table_17304621_14 (upstream VARCHAR, downstream VARCHAR, bandwidth VARCHAR)"}, {"answer": "SELECT upstream FROM table_17304621_14 WHERE price_tl = \"89 TL\"", "question": "What is the upstream speed that you get for 89 tl?", "context": "CREATE TABLE table_17304621_14 (upstream VARCHAR, price_tl VARCHAR)"}, {"answer": "SELECT bandwidth FROM table_17304621_14 WHERE downstream = \"20 Mbit/s\" AND price_tl = \"69 TL\"", "question": "What is the bandwidth for downstream of 20 mbit/s for 69 tl?", "context": "CREATE TABLE table_17304621_14 (bandwidth VARCHAR, downstream VARCHAR, price_tl VARCHAR)"}, {"answer": "SELECT year FROM table_17302440_1 WHERE west_manila = \"6.5\"", "question": "What was the year when West Manila has a tariff increase of 6.5?", "context": "CREATE TABLE table_17302440_1 (year VARCHAR, west_manila VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_17294353_1 WHERE opponent = \"Cincinnati Bengals\"", "question": "Of the times the Broncos played the Cincinnati Bengals, what was the highest attendance?", "context": "CREATE TABLE table_17294353_1 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_17294353_1 WHERE opponent = \"Miami Dolphins\"", "question": "When did the Broncos play the Miami Dolphins?", "context": "CREATE TABLE table_17294353_1 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_17294353_1 WHERE attendance = 18304", "question": "In the game with an attendance of 18304, what was the final score?", "context": "CREATE TABLE table_17294353_1 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(max_pressure) FROM table_173103_1 WHERE cartridge = \".380 ACP\"", "question": "How many pressure figures are given for the .380 acp cartridge?", "context": "CREATE TABLE table_173103_1 (max_pressure VARCHAR, cartridge VARCHAR)"}, {"answer": "SELECT max_pressure FROM table_173103_1 WHERE muzzle_energy = \"201ft\u2022lbf (273 J)\"", "question": "What is the max pressure of the cartridge where the muzzle energy is 201ft\u2022lbf (273 j)?", "context": "CREATE TABLE table_173103_1 (max_pressure VARCHAR, muzzle_energy VARCHAR)"}, {"answer": "SELECT max_pressure FROM table_173103_1 WHERE cartridge = \".38 Long Colt\"", "question": "What is the max pressure of the .38 long colt cartridge?", "context": "CREATE TABLE table_173103_1 (max_pressure VARCHAR, cartridge VARCHAR)"}, {"answer": "SELECT bullet_weight FROM table_173103_1 WHERE max_pressure = \"12,000 CUP\"", "question": "What is the bullet weight when the max pressure is 12,000 cup?", "context": "CREATE TABLE table_173103_1 (bullet_weight VARCHAR, max_pressure VARCHAR)"}, {"answer": "SELECT score FROM table_17311759_4 WHERE team = \"Charlotte\"", "question": "What are the scores made by Charlotte team", "context": "CREATE TABLE table_17311759_4 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17311759_4 WHERE high_rebounds = \"Al Horford (17)\"", "question": "Who made highest assists when high rebounds was Al Horford (17)", "context": "CREATE TABLE table_17311759_4 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_17311759_4 WHERE high_rebounds = \"Zaza Pachulia (8)\"", "question": "Give the score when high rebounds was zaza pachulia (8)", "context": "CREATE TABLE table_17311759_4 (score VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT gs FROM table_17309500_1 WHERE points = \"12.1\"", "question": "Name the gs for points being 12.1", "context": "CREATE TABLE table_17309500_1 (gs VARCHAR, points VARCHAR)"}, {"answer": "SELECT assists FROM table_17309500_1 WHERE games = 157", "question": "Name the assists for 157 games", "context": "CREATE TABLE table_17309500_1 (assists VARCHAR, games VARCHAR)"}, {"answer": "SELECT steals FROM table_17309500_1 WHERE season = \"2007/2008\"", "question": "Name the steals for season 2007/2008", "context": "CREATE TABLE table_17309500_1 (steals VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(assists) FROM table_17309500_1 WHERE blocks = \"77\"", "question": "Name the total number of assists for 77 blocks", "context": "CREATE TABLE table_17309500_1 (assists VARCHAR, blocks VARCHAR)"}, {"answer": "SELECT record FROM table_17311759_9 WHERE high_assists = \"Mike Bibby (8)\"", "question": "When mike bibby (8) had the highest amount of assists what is the record?", "context": "CREATE TABLE table_17311759_9 (record VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17311759_9 WHERE high_assists = \"Mike Bibby (9)\"", "question": "When mike bibby (9) has the highest amount of assists what is the location and attendance?", "context": "CREATE TABLE table_17311759_9 (location_attendance VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT team FROM table_17311759_6 WHERE date = \"January 23\"", "question": "Who was the team played on January 23?", "context": "CREATE TABLE table_17311759_6 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17311759_6 WHERE team = \"Orlando\"", "question": "Where was the game held and what was the attendance when they played Orlando?", "context": "CREATE TABLE table_17311759_6 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_17311783_8 WHERE team = \"Charlotte\"", "question": "In what game did Miami play Charlotte? ", "context": "CREATE TABLE table_17311783_8 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_17311797_8 WHERE date = \"February 6\"", "question": "Who had the high points on February 6?", "context": "CREATE TABLE table_17311797_8 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(laps) AS Led FROM table_17319931_1 WHERE points = \"16\"", "question": "What is the highest number of laps led with 16 points?", "context": "CREATE TABLE table_17319931_1 (laps INTEGER, points VARCHAR)"}, {"answer": "SELECT COUNT(driver) FROM table_17319931_1 WHERE team = \"SAMAX Motorsport\"", "question": "How many drivers were there for Samax Motorsport?", "context": "CREATE TABLE table_17319931_1 (driver VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_17319931_1 WHERE driver = \"Jeff Simmons\"", "question": "What is the team whose driver Jeff Simmons?", "context": "CREATE TABLE table_17319931_1 (team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(driver) FROM table_17319931_1 WHERE time_retired = \"+3 laps\" AND points = \"24\"", "question": "How many drivers where there when the time/retired +3 laps and points were 24?", "context": "CREATE TABLE table_17319931_1 (driver VARCHAR, time_retired VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_17319931_1 WHERE driver = \"Darren Manning\"", "question": "What is the highest number of laps for Darren Manning?", "context": "CREATE TABLE table_17319931_1 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT COUNT(car_no) FROM table_17319931_1 WHERE time_retired = \"+4.0019\"", "question": "How many car numbers were recorded when the time/retired is +4.0019?", "context": "CREATE TABLE table_17319931_1 (car_no VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT game FROM table_17311812_7 WHERE date = \"January 28\"", "question": "What game number was played on January 28?", "context": "CREATE TABLE table_17311812_7 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_17311812_8 WHERE date = \"February 11\"", "question": "What is the high amount of points on February 11?", "context": "CREATE TABLE table_17311812_8 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17311812_8 WHERE team = \"Denver\"", "question": "Who has the most assists on Denver?", "context": "CREATE TABLE table_17311812_8 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17322817_10 WHERE date = \"April 13\"", "question": "Name the location attendance for april 13", "context": "CREATE TABLE table_17322817_10 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17322817_10 WHERE date = \"April 5\"", "question": "Name the location attendance for april 5", "context": "CREATE TABLE table_17322817_10 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_17323042_6 WHERE date = \"December 17\"", "question": "Who had the high points on December 17?", "context": "CREATE TABLE table_17323042_6 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_17323042_7 WHERE team = \"Houston\"", "question": "How many scores are listed for the game against Houston", "context": "CREATE TABLE table_17323042_7 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17323042_11 WHERE high_assists = \"Andre Miller (7)\"", "question": "What was the location and attendance of the game when High Assists were Andre Miller (7)?", "context": "CREATE TABLE table_17323042_11 (location_attendance VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17323042_11 WHERE game = 1", "question": "Who was the High Assist in game 1?", "context": "CREATE TABLE table_17323042_11 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17323042_11 WHERE high_rebounds = \"Andre Iguodala (8)\"", "question": "Who was the High Assist when the High Rebounds was andre iguodala (8)?", "context": "CREATE TABLE table_17323042_11 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT record FROM table_17323042_11 WHERE high_points = \"Andre Miller (30)\"", "question": "What was the W-L record when HIgh Points was andre miller (30)?", "context": "CREATE TABLE table_17323042_11 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_17323042_11 WHERE high_points = \"Andre Miller (17)\"", "question": "What was the score and game outcome when High Points was andre miller (17)?", "context": "CREATE TABLE table_17323042_11 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_17323042_11 WHERE high_points = \"Andre Iguodala (29)\"", "question": "How many games was High Points andre iguodala (29)?", "context": "CREATE TABLE table_17323042_11 (game VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_17323042_9 WHERE date = \"March 15\"", "question": "How many games were played on March 15?", "context": "CREATE TABLE table_17323042_9 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_17323042_5 WHERE team = \"Orlando\"", "question": "What was the team's record when they faced orlando?", "context": "CREATE TABLE table_17323042_5 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_17323092_5 WHERE score = \"L 97\u2013107 (OT)\"", "question": "Whic teams scored l 97\u2013107 (ot) ", "context": "CREATE TABLE table_17323092_5 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17323092_7 WHERE team = \"@ Minnesota\"", "question": "Who had the high assists when the team was @ Minnesota?", "context": "CREATE TABLE table_17323092_7 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_17323092_7 WHERE team = \"Minnesota\"", "question": "On what date did the Team Minnesota play?", "context": "CREATE TABLE table_17323092_7 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_17323092_7 WHERE date = \"February 10\"", "question": "Who had the high points on the date February 10?", "context": "CREATE TABLE table_17323092_7 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_17323092_7 WHERE location_attendance = \"FedExForum 11,498\"", "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 high_rebounds FROM table_17323092_7 WHERE high_assists = \"Shawn Marion (6)\"", "question": "When the high assists were Shawn Marion (6) who had high rebounds?", "context": "CREATE TABLE table_17323092_7 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT date FROM table_17323092_8 WHERE team = \"Miami\"", "question": "What dates did they play Miami?", "context": "CREATE TABLE table_17323092_8 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_17323092_8 WHERE high_points = \"Chris Bosh (18)\"", "question": "What dates did Chris Bosh (18) score the high points?", "context": "CREATE TABLE table_17323092_8 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17323092_8 WHERE high_assists = \"Anthony Parker (7)\"", "question": "Where was the location and what was the attendance in the game that Anthony Parker (7) earned high assists?", "context": "CREATE TABLE table_17323092_8 (location_attendance VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_points FROM table_17323092_8 WHERE game = 69", "question": "Who earned high points in game 69?", "context": "CREATE TABLE table_17323092_8 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_17323092_6 WHERE date = \"January 21\"", "question": "What is the total number of high points on January 21?", "context": "CREATE TABLE table_17323092_6 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17323092_6 WHERE team = \"Orlando\"", "question": "What is the location and attendance for the Orlando team?", "context": "CREATE TABLE table_17323092_6 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_17325580_5 WHERE team = \"Milwaukee\"", "question": "what was the final score of the game versus Milwaukee?", "context": "CREATE TABLE table_17325580_5 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_17323529_8 WHERE team = \"Boston\"", "question": "What is the record against Boston?", "context": "CREATE TABLE table_17323529_8 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_17325580_6 WHERE team = \"Washington\"", "question": "What is every high point when the team is Washington?", "context": "CREATE TABLE table_17325580_6 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_17325580_6 WHERE date = \"December 12\"", "question": "How many games occur on the date December 12?", "context": "CREATE TABLE table_17325580_6 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_17325580_6 WHERE date = \"December 13\"", "question": "How many high assist are on the date December 13?", "context": "CREATE TABLE table_17325580_6 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17325580_6 WHERE date = \"December 12\"", "question": "What is every location attendance on the date December 12?", "context": "CREATE TABLE table_17325580_6 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17325937_5 WHERE date = \"November 26\"", "question": "What was the high rebounds on November 26?", "context": "CREATE TABLE table_17325937_5 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17325937_5 WHERE date = \"November 14\"", "question": "What was the high assists on November 14?", "context": "CREATE TABLE table_17325937_5 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17325937_8 WHERE team = \"Miami\"", "question": "Who had the most assists in the game against Miami?", "context": "CREATE TABLE table_17325937_8 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_17325937_8 WHERE team = \"San Antonio\"", "question": "How many assists were made in the game against San Antonio?", "context": "CREATE TABLE table_17325937_8 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17326036_5 WHERE date = \"November 1\"", "question": "Who did the most high rebounds in the game played on November 1?", "context": "CREATE TABLE table_17326036_5 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_17326036_5 WHERE date = \"November 21\"", "question": "What team was the game on November 21 played against?", "context": "CREATE TABLE table_17326036_5 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17326036_5 WHERE team = \"Boston\"", "question": "What was the score in the game against Boston?", "context": "CREATE TABLE table_17326036_5 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_17327264_3 WHERE replaced_by = \"Petrik Sander\"", "question": "Name the date of appointment for petrik sander", "context": "CREATE TABLE table_17327264_3 (date_of_appointment VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_17327264_3 WHERE manner_of_departure = \"Sacked\" AND position_in_table = \"14th\" AND replaced_by = \"Marco Kostmann\"", "question": "Name the date of appointment for sacked and 14th position replaced by marco kostmann", "context": "CREATE TABLE table_17327264_3 (date_of_appointment VARCHAR, replaced_by VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_17326036_6 WHERE date = \"December 5\"", "question": "How many location attendance was recorded for December 5?", "context": "CREATE TABLE table_17326036_6 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17326036_6 WHERE date = \"December 15\"", "question": "What was the attendance and location on December 15?", "context": "CREATE TABLE table_17326036_6 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_17326036_6 WHERE team = \"@ Memphis\"", "question": "How many games were recorded when the team was @ Memphis?", "context": "CREATE TABLE table_17326036_6 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_17326036_6 WHERE high_rebounds = \"Jeff Foster (10)\"", "question": "What was the score of the game when the high rebounds Jeff Foster (10)?", "context": "CREATE TABLE table_17326036_6 (score VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT team FROM table_17327458_1 WHERE date_of_appointment = \"12 June\"", "question": "What team appointed a manager on 12 June?", "context": "CREATE TABLE table_17327458_1 (team VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_17327458_1 WHERE date_of_appointment = \"11 July\"", "question": "Who was replaced on 11 July?", "context": "CREATE TABLE table_17327458_1 (replaced_by VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_17327458_1 WHERE date_of_vacancy = \"29 May\"", "question": "Who left a position on 29 May?", "context": "CREATE TABLE table_17327458_1 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_17327458_1 WHERE date_of_vacancy = \"24 January\"", "question": "Who left a position on 24 January?", "context": "CREATE TABLE table_17327458_1 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT COUNT(manner_of_departure) FROM table_17327458_1 WHERE date_of_vacancy = \"25 May\"", "question": "How many vacancies happened on 25 May?", "context": "CREATE TABLE table_17327458_1 (manner_of_departure VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT COUNT(fin_pos) FROM table_17330069_1 WHERE points = \"15\"", "question": "If the points is 15, what is the fin. pos?", "context": "CREATE TABLE table_17330069_1 (fin_pos VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(car_no) FROM table_17330069_1 WHERE driver = \"H\u00e9lio Castroneves\"", "question": "What is the car number for driver H\u00e9lio Castroneves", "context": "CREATE TABLE table_17330069_1 (car_no INTEGER, driver VARCHAR)"}, {"answer": "SELECT MIN(fin_pos) FROM table_17330069_1 WHERE grid = 2", "question": "If grid is 2, what is the minimum fin. pos number?", "context": "CREATE TABLE table_17330069_1 (fin_pos INTEGER, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_17330069_1 WHERE points = \"28\"", "question": "If there are 28 points, what is the time/retired?", "context": "CREATE TABLE table_17330069_1 (time_retired VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(winning_score) FROM table_17335602_1 WHERE tournament = \"RR Donnelley LPGA Founders Cup\"", "question": "How many winning scores were there in the rr donnelley lpga founders cup?", "context": "CREATE TABLE table_17335602_1 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_17335602_1 WHERE tournament = \"McDonald's LPGA Championship\"", "question": "When was the mcdonald's lpga championship?", "context": "CREATE TABLE table_17335602_1 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MAX(winners_share___) AS $__ FROM table_17335602_1 WHERE tournament = \"Wegmans LPGA Championship\"", "question": "What was the winner's share in the wegmans lpga championship?", "context": "CREATE TABLE table_17335602_1 (winners_share___ INTEGER, tournament VARCHAR)"}, {"answer": "SELECT kerry_number FROM table_1733457_1 WHERE others_number = 44", "question": "Name the kerry # for others# is 44", "context": "CREATE TABLE table_1733457_1 (kerry_number VARCHAR, others_number VARCHAR)"}, {"answer": "SELECT MIN(kerry_number) FROM table_1733457_1 WHERE bush_percentage = \"50.9%\"", "question": "Name the minimum kerry # for bush % for 50.9%", "context": "CREATE TABLE table_1733457_1 (kerry_number INTEGER, bush_percentage VARCHAR)"}, {"answer": "SELECT others_percentage FROM table_1733457_1 WHERE county = \"Johnson\"", "question": "Name the others % for johnson", "context": "CREATE TABLE table_1733457_1 (others_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT MAX(kerry_number) FROM table_1733457_1 WHERE others_number = 47", "question": "Name the maximum kerry # for where others is 47", "context": "CREATE TABLE table_1733457_1 (kerry_number INTEGER, others_number VARCHAR)"}, {"answer": "SELECT bush_percentage FROM table_1733457_1 WHERE others_number = 90", "question": "Name the bush% for where others # is 90", "context": "CREATE TABLE table_1733457_1 (bush_percentage VARCHAR, others_number VARCHAR)"}, {"answer": "SELECT others_percentage FROM table_1733457_1 WHERE county = \"Cleveland\"", "question": "Name the others % for cleveland", "context": "CREATE TABLE table_1733457_1 (others_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT others_percentage FROM table_1733513_1 WHERE others_number = 2286", "question": "What is the percentage of others when the number of others is 2286?", "context": "CREATE TABLE table_1733513_1 (others_percentage VARCHAR, others_number VARCHAR)"}, {"answer": "SELECT others_percentage FROM table_1733513_1 WHERE bush_number = 3196", "question": "What was the percentage of others when the number for Bush was 3196? ", "context": "CREATE TABLE table_1733513_1 (others_percentage VARCHAR, bush_number VARCHAR)"}, {"answer": "SELECT others_percentage FROM table_1733513_1 WHERE bush_number = 1329", "question": "What is the percentage of others when the number for Bush is 1329? ", "context": "CREATE TABLE table_1733513_1 (others_percentage VARCHAR, bush_number VARCHAR)"}, {"answer": "SELECT game FROM table_17340355_6 WHERE team = \"Milwaukee\"", "question": "Which game was played by team milwaukee", "context": "CREATE TABLE table_17340355_6 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17340355_6 WHERE score = \"W 106\u2013104 (OT)\"", "question": "Who made high points on games of score w 106\u2013104 (ot)", "context": "CREATE TABLE table_17340355_6 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_17340355_6 WHERE high_rebounds = \"Amar'e Stoudemire (11)\"", "question": "What are the records of games where high rebounds is amar'e stoudemire (11)", "context": "CREATE TABLE table_17340355_6 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17340355_6 WHERE date = \"December 10\"", "question": "What is the location of the the game on december 10", "context": "CREATE TABLE table_17340355_6 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17344582_11 WHERE high_assists = \"B. Shaw (5)\"", "question": "List the all the scores where the high assis is b. shaw (5)", "context": "CREATE TABLE table_17344582_11 (score VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17344582_11 WHERE high_rebounds = \"K. McHale (10)\"", "question": "List of high assists with high rebounds for k. mchale (10)", "context": "CREATE TABLE table_17344582_11 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17344582_11 WHERE series = \"1-1\"", "question": "List all location attendance for series 1-1.", "context": "CREATE TABLE table_17344582_11 (location_attendance VARCHAR, series VARCHAR)"}, {"answer": "SELECT date FROM table_17340355_7 WHERE team = \"Indiana\"", "question": "What day(s) did the team play indiana?", "context": "CREATE TABLE table_17340355_7 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17340355_7 WHERE date = \"January 2\"", "question": "Who had the high assist total on january 2?", "context": "CREATE TABLE table_17340355_7 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_17350255_1 WHERE original_title = \"B\u0101b\u01cei zhu\u00e0ngsh\u00ec (\u516b\u767e\u58ef\u58eb)\"", "question": "What was the title used in nomination in the original B\u0101b\u01cei Zhu\u00e0ngsh\u00ec (\u516b\u767e\u58ef\u58eb)?", "context": "CREATE TABLE table_17350255_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_17350255_1 WHERE original_title = \"Ch\u016bnqi\u016b ch\u00e1sh\u00ec (\u6625\u79cb\u8336\u5ba4)\"", "question": "What was the year when Ch\u016bnqi\u016b Ch\u00e1sh\u00ec (\u6625\u79cb\u8336\u5ba4) was submitted?", "context": "CREATE TABLE table_17350255_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_17350255_1 WHERE film_title_used_in_nomination = \"Old Mo's Second Spring\"", "question": "Old Mo's Second Spring was the film title used in nomination in what year?", "context": "CREATE TABLE table_17350255_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_17350255_1 WHERE result = \"Not Nominated\" AND film_title_used_in_nomination = \"My Mother's Teahouse\"", "question": "What was the year when My Mother's Teahouse was not nominated?", "context": "CREATE TABLE table_17350255_1 (year__ceremony_ VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT title FROM table_173475_1 WHERE release = 2006", "question": "What titles were released in 2006?", "context": "CREATE TABLE table_173475_1 (title VARCHAR, release VARCHAR)"}, {"answer": "SELECT release FROM table_173475_1 WHERE title = \"Axis & Allies: D-Day\"", "question": "What year(s) was axis & allies: d-day released?", "context": "CREATE TABLE table_173475_1 (release VARCHAR, title VARCHAR)"}, {"answer": "SELECT game FROM table_17355408_12 WHERE date = \"May 25\"", "question": "What game was on May 25?", "context": "CREATE TABLE table_17355408_12 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_17355408_12 WHERE record = \"2-3\"", "question": "What game was the record 2-3?", "context": "CREATE TABLE table_17355408_12 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17355408_9 WHERE team = \"Sacramento\"", "question": "Who had the high rebounds when the team played Sacramento?", "context": "CREATE TABLE table_17355408_9 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_17355408_9 WHERE date = \"April 8\"", "question": "Who had the high points on April 8?", "context": "CREATE TABLE table_17355408_9 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17355408_9 WHERE game = 80", "question": "Who had the high assists in game 80?", "context": "CREATE TABLE table_17355408_9 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_17355408_5 WHERE date = \"December 29\"", "question": "Name the highh points for december 29", "context": "CREATE TABLE table_17355408_5 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17355408_5 WHERE game = 29", "question": "Name the high assists for 29 game", "context": "CREATE TABLE table_17355408_5 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_17355408_5 WHERE location_attendance = \"Pepsi Center 18,611\"", "question": "Name the high points for pepsi center 18,611", "context": "CREATE TABLE table_17355408_5 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_17355408_4 WHERE team = \"Chicago\"", "question": "Name the date for chicago", "context": "CREATE TABLE table_17355408_4 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_17355408_4 WHERE team = \"New Orleans\"", "question": "Name the record for new orleans", "context": "CREATE TABLE table_17355408_4 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17355408_4 WHERE high_points = \"Chauncey Billups , Carmelo Anthony (18)\"", "question": "Name the high assists for chauncey billups , carmelo anthony (18)", "context": "CREATE TABLE table_17355408_4 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_17355408_7 WHERE team = \"@ Orlando\"", "question": "What was the final score for @ Orlando?", "context": "CREATE TABLE table_17355408_7 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_17355408_7 WHERE high_assists = \"Chauncey Billups (6)\"", "question": "Chauncey Billups (6) had a high assist on what date?", "context": "CREATE TABLE table_17355408_7 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_points FROM table_17355408_7 WHERE team = \"@ Chicago\"", "question": "@ Chicago had a high points of what?", "context": "CREATE TABLE table_17355408_7 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_17355408_7 WHERE high_assists = \"Carmelo Anthony (11)\"", "question": "High assists belonging to Carmelo Anthony (11) have a record of what?", "context": "CREATE TABLE table_17355408_7 (record VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17355628_10 WHERE date = \"April 8\"", "question": "Name the high assists for april 8", "context": "CREATE TABLE table_17355628_10 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17355628_10 WHERE team = \"Charlotte\"", "question": "Name the score for charlotte", "context": "CREATE TABLE table_17355628_10 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_17355628_10 WHERE high_assists = \"Chucky Atkins , Russell Westbrook (4)\"", "question": "Name the location attendance for chucky atkins , russell westbrook (4)", "context": "CREATE TABLE table_17355628_10 (location_attendance VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_17355579_1 WHERE directed_by = \"Richard Thorpe\" AND written_by = \"Dee Johnson\"", "question": "Name the series number directed by richard thorpe written by dee johnson", "context": "CREATE TABLE table_17355579_1 (series__number INTEGER, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT team FROM table_17355716_5 WHERE date = \"November 17\"", "question": "Name the team where the date is november 17", "context": "CREATE TABLE table_17355716_5 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_17355716_5 WHERE date = \"November 5\"", "question": "Name the team for november 5", "context": "CREATE TABLE table_17355716_5 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_17356106_1 WHERE directed_by = \"Laura Innes\" AND season__number < 7.0", "question": "What is the maximum series number what is smaller than season 7.0 and directed by Laura Innes?", "context": "CREATE TABLE table_17356106_1 (series__number INTEGER, directed_by VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_17356106_1 WHERE directed_by = \"Arthur Albert\"", "question": "If Arthur Albert is the director, what is the maximum series number?", "context": "CREATE TABLE table_17356106_1 (series__number INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(season__number) FROM table_17356106_1 WHERE directed_by = \"Joanna Kerns\"", "question": "What was the number of seasons that was directed by Joanna Kerns?", "context": "CREATE TABLE table_17356106_1 (season__number VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_17356106_1 WHERE series__number = 256", "question": "For series number 256, what was the original air date?", "context": "CREATE TABLE table_17356106_1 (original_air_date VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT season__number FROM table_17356205_1 WHERE directed_by = \"Skipp Sudduth\"", "question": "What season episode is directed by Skipp Sudduth?", "context": "CREATE TABLE table_17356205_1 (season__number VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_17356205_1 WHERE directed_by = \"Joanna Kerns\"", "question": "How many titles are given for the episode directed by Joanna Kerns?", "context": "CREATE TABLE table_17356205_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_17356205_1 WHERE directed_by = \"Terrence Nightingall\"", "question": "What is the original air date of the episode directed by Terrence Nightingall?", "context": "CREATE TABLE table_17356205_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_17355933_1 WHERE directed_by = \"Nelson McCormick\"", "question": "Which seasons were directed by Nelson McCormick?", "context": "CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_17355933_1 WHERE directed_by = \"Laura Innes\"", "question": "Which season titles were directed by Laura Innes?", "context": "CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_17355820_1 WHERE directed_by = \"Nelson McCormick\"", "question": "Which episodes did Nelson McCormick direct?", "context": "CREATE TABLE table_17355820_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_17355820_1 WHERE season__number = 19", "question": "How many episodes were there in season 19?", "context": "CREATE TABLE table_17355820_1 (title VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT MIN(season__number) FROM table_17355820_1 WHERE directed_by = \"Paul McCrane\"", "question": "In which season did Paul McCrane first direct an episode?", "context": "CREATE TABLE table_17355820_1 (season__number INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_17355820_1 WHERE directed_by = \"TR Babu Subramaniam\"", "question": "On which dates did the episodes directed by TR Babu Subramaniam air?", "context": "CREATE TABLE table_17355820_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_17357929_1", "question": "What is the fewest number of games lost?", "context": "CREATE TABLE table_17357929_1 (lost INTEGER)"}, {"answer": "SELECT goal_average_1 FROM table_17357929_1 WHERE lost = 9", "question": "What is the goal average 1 for teams that lost 9 games?", "context": "CREATE TABLE table_17357929_1 (goal_average_1 VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_17357929_1 WHERE points_2 = 31", "question": "How many teams finished with a 2nd points total of 31?", "context": "CREATE TABLE table_17357929_1 (position VARCHAR, points_2 VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_17357929_1 WHERE goals_for = 72", "question": "How many games drawn for the team that had 72 goals for?", "context": "CREATE TABLE table_17357929_1 (drawn INTEGER, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_17360840_4 WHERE record = \"1-3-3\"", "question": "How many games with record 1-3-3", "context": "CREATE TABLE table_17360840_4 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_17360840_4 WHERE opponent = \"Atlanta Thrashers\"", "question": "How many attended on mathches against atlanta thrashers", "context": "CREATE TABLE table_17360840_4 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_17360840_4 WHERE opponent = \"Minnesota Wild\"", "question": "Give the date of games against minnesota wild", "context": "CREATE TABLE table_17360840_4 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_17360840_4 WHERE record = \"1-2-3\"", "question": "State the dates of games with record 1-2-3", "context": "CREATE TABLE table_17360840_4 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_17360840_4 WHERE record = \"0-2-1\"", "question": "What is the minimum attendance on games of record 0-2-1", "context": "CREATE TABLE table_17360840_4 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT venue FROM table_17356873_1 WHERE shirt_sponsor = \"Mardan\"", "question": "Which venue does Mardan sponsor?", "context": "CREATE TABLE table_17356873_1 (venue VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT venue FROM table_17356873_1 WHERE head_coach = \"Erdo\u011fan Ar\u0131ca\"", "question": "Erdo\u011fan Ar\u0131ca is the head coach at what venue?", "context": "CREATE TABLE table_17356873_1 (venue VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_17360840_5 WHERE record = \"6-8-6\"", "question": "How many points were scored when the record was 6-8-6?", "context": "CREATE TABLE table_17360840_5 (points VARCHAR, record VARCHAR)"}, {"answer": "SELECT game FROM table_17360840_5 WHERE record = \"6-9-7\"", "question": "Which game had a record of 6-9-7?", "context": "CREATE TABLE table_17360840_5 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_17360840_5 WHERE location = \"BankAtlantic Center\"", "question": "When they played at the Bankatlantic Center, what was their record?", "context": "CREATE TABLE table_17360840_5 (record VARCHAR, location VARCHAR)"}, {"answer": "SELECT opponent FROM table_17360840_6 WHERE date = \"December 27\"", "question": "Who was the opponent on December 27?", "context": "CREATE TABLE table_17360840_6 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17360840_6 WHERE date = \"December 11\"", "question": "What was the score of the game on December 11?", "context": "CREATE TABLE table_17360840_6 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_17360840_9 WHERE location = \"St. Pete Times Forum\" AND opponent = \"Columbus Blue Jackets\"", "question": "What was the record when the opposing team was the Columbus Blue Jackets at St. Pete Times Forum?", "context": "CREATE TABLE table_17360840_9 (record VARCHAR, location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_17360840_9 WHERE record = \"21-31-13\"", "question": "What was the score when the record was 21-31-13?", "context": "CREATE TABLE table_17360840_9 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_17360840_9 WHERE opponent = \"Columbus Blue Jackets\"", "question": "How many locations were recorded when the opponent Columbus Blue Jackets?", "context": "CREATE TABLE table_17360840_9 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_17360840_9 WHERE opponent = \"Ottawa Senators\" AND record = \"24-35-17\"", "question": "What was the attendance when the opposing team was the Ottawa Senators  and the record was 24-35-17?", "context": "CREATE TABLE table_17360840_9 (attendance INTEGER, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_17371135_30 WHERE position = \"Left Wing\"", "question": "The player who plays left wing is from what college/junior/club team? ", "context": "CREATE TABLE table_17371135_30 (college_junior_club_team__league_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_17371135_30 WHERE position = \"Goaltender\"", "question": "The player who plays goaltender is from what college/junior/club team? ", "context": "CREATE TABLE table_17371135_30 (college_junior_club_team__league_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT played FROM table_17369472_2 WHERE tries_for = \"39\"", "question": "How many were played when there were 39 tries for? ", "context": "CREATE TABLE table_17369472_2 (played VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT COUNT(won) FROM table_17369472_2 WHERE points = \"12\"", "question": "How many were won when the points were 12? ", "context": "CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR)"}, {"answer": "SELECT won FROM table_17369472_2 WHERE points = \"49\"", "question": "How many were won when there were 49 points? ", "context": "CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_17369472_2 WHERE tries_for = \"84\"", "question": "How many points were there when tries for were 84? ", "context": "CREATE TABLE table_17369472_2 (points VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT team FROM table_17382360_7 WHERE date = \"February 18\"", "question": "what team play in february 18 in the supersonic season ", "context": "CREATE TABLE table_17382360_7 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17382360_7 WHERE team = \"Boston Celtics\"", "question": "what is the score in february 12 of the boston celtics team", "context": "CREATE TABLE table_17382360_7 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT opponent FROM table_17386066_2 WHERE stadium = \"Shea stadium\"", "question": "Who is the opposing team when the game was played on the Shea Stadium?", "context": "CREATE TABLE table_17386066_2 (opponent VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_17386066_2 WHERE stadium = \"Miami Orange Bowl\"", "question": "How many games or records were played on the Miami Orange Bowl?", "context": "CREATE TABLE table_17386066_2 (record VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT result FROM table_17386066_2 WHERE date = \"Nov. 26\"", "question": "What was the result of the game that was played on Nov. 26, 1972?", "context": "CREATE TABLE table_17386066_2 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT tamil_months FROM table_1740431_3 WHERE season_in_english = \"Monsoon\"", "question": "What are all Tamil months when the season in English is monsoon?", "context": "CREATE TABLE table_1740431_3 (tamil_months VARCHAR, season_in_english VARCHAR)"}, {"answer": "SELECT english_translation FROM table_1740431_3 WHERE tamil_months = \"m\u0101rkazhi, tai\"", "question": "What is every English translation when Tamil months is M\u0101rkazhi, Tai?", "context": "CREATE TABLE table_1740431_3 (english_translation VARCHAR, tamil_months VARCHAR)"}, {"answer": "SELECT gregorian_months FROM table_1740431_3 WHERE season_in_tamil = \"\u0b87\u0bb3\u0bb5\u0bc7\u0ba9\u0bbf\u0bb2\u0bcd\"", "question": "What is every Gregorian month when the season in Tamil is \u0b87\u0bb3\u0bb5\u0bc7\u0ba9\u0bbf\u0bb2\u0bcd?", "context": "CREATE TABLE table_1740431_3 (gregorian_months VARCHAR, season_in_tamil VARCHAR)"}, {"answer": "SELECT COUNT(season_in_tamil) FROM table_1740431_3 WHERE season_in_sanskrit = \"Grishma\"", "question": "How many seasons in Tamil occur when the season in Sanskrit is Grishma?", "context": "CREATE TABLE table_1740431_3 (season_in_tamil VARCHAR, season_in_sanskrit VARCHAR)"}, {"answer": "SELECT department FROM table_17384764_1 WHERE qualification = \"M.Phil(Maths)\"", "question": "Which departments have M.Phil(Maths)?", "context": "CREATE TABLE table_17384764_1 (department VARCHAR, qualification VARCHAR)"}, {"answer": "SELECT COUNT(designation) FROM table_17384764_1 WHERE experience = \"20 years\"", "question": "How many faculty members have 20 years of experience? ", "context": "CREATE TABLE table_17384764_1 (designation VARCHAR, experience VARCHAR)"}, {"answer": "SELECT power_provided FROM table_174151_5 WHERE transfer_speed__mb_s_ = \"1250\"", "question": "Name the power provided for transfer speed mb/s is 1250", "context": "CREATE TABLE table_174151_5 (power_provided VARCHAR, transfer_speed__mb_s_ VARCHAR)"}, {"answer": "SELECT devices_per_channel FROM table_174151_5 WHERE raw_bandwidth__mbit_s_ = 2560", "question": "Name the devices per channel for 2560", "context": "CREATE TABLE table_174151_5 (devices_per_channel VARCHAR, raw_bandwidth__mbit_s_ VARCHAR)"}, {"answer": "SELECT power_provided FROM table_174151_5 WHERE transfer_speed__mb_s_ = \"300\" AND max_cable_length__m_ = \"10\"", "question": "Name the power provided where transfer speed mb/s is 300 and max cable length of 10", "context": "CREATE TABLE table_174151_5 (power_provided VARCHAR, transfer_speed__mb_s_ VARCHAR, max_cable_length__m_ VARCHAR)"}, {"answer": "SELECT colorado FROM table_17425749_1 WHERE alaska = \"Connecticut\"", "question": "Name the colorado when alaska is connecticut", "context": "CREATE TABLE table_17425749_1 (colorado VARCHAR, alaska VARCHAR)"}, {"answer": "SELECT california FROM table_17425749_1 WHERE alaska = \"Tennessee\"", "question": "Name the california where alaska tennessee", "context": "CREATE TABLE table_17425749_1 (california VARCHAR, alaska VARCHAR)"}, {"answer": "SELECT date FROM table_17432028_1 WHERE score = \"95-101\"", "question": "Name the date for score of 95-101", "context": "CREATE TABLE table_17432028_1 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_17432028_1 WHERE date = \"March 15\"", "question": "Name the high rebounds for march 15", "context": "CREATE TABLE table_17432028_1 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_17432028_1 WHERE record = \"2-5\"", "question": "Name the score for record of 2-5", "context": "CREATE TABLE table_17432028_1 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(school) FROM table_17429402_7 WHERE last_occ_championship = \"2006\"", "question": "How many schools won their last occ championship in 2006?", "context": "CREATE TABLE table_17429402_7 (school VARCHAR, last_occ_championship VARCHAR)"}, {"answer": "SELECT years_of_participation FROM table_17429402_7 WHERE school = \"Central Crossing\"", "question": "What are the years of participation for central crossing school?", "context": "CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(occ_championships) FROM table_17429402_7 WHERE last_outright_occ_championship = \"2006\"", "question": "What is the fewest number of occ championships for the team that last won an outright occ championship in 2006?", "context": "CREATE TABLE table_17429402_7 (occ_championships INTEGER, last_outright_occ_championship VARCHAR)"}, {"answer": "SELECT years_of_participation FROM table_17429402_7 WHERE school = \"Pickerington North\"", "question": "What are the years of participation for pickerington north?", "context": "CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR)"}, {"answer": "SELECT event FROM table_17417383_6 WHERE athlete = \"Redouane Bouchtouk\"", "question": "Name the event for redouane bouchtouk", "context": "CREATE TABLE table_17417383_6 (event VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT round_of_16 FROM table_17417383_6 WHERE quarterfinals = \"Did not advance\" AND event = \"Light flyweight\"", "question": "Name the round 16 for did not advance and light flyweight", "context": "CREATE TABLE table_17417383_6 (round_of_16 VARCHAR, quarterfinals VARCHAR, event VARCHAR)"}, {"answer": "SELECT athlete FROM table_17417383_6 WHERE round_of_32 = \"Enkhzorig ( MGL ) L 1\u201310\"", "question": "Name the athelte for enkhzorig ( mgl ) l 1\u201310", "context": "CREATE TABLE table_17417383_6 (athlete VARCHAR, round_of_32 VARCHAR)"}, {"answer": "SELECT quarterfinals FROM table_17427004_7 WHERE athlete = \"Abdelhafid Benchebla\"", "question": "Who did Abdelhafid Benchebla face in the quarterfinals?", "context": "CREATE TABLE table_17427004_7 (quarterfinals VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT round_of_32 FROM table_17427004_7 WHERE athlete = \"Nabil Kassel\"", "question": "Who did Nabil Kassel face in the Round of 32?", "context": "CREATE TABLE table_17427004_7 (round_of_32 VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT semifinals FROM table_17427004_7 WHERE athlete = \"Hamza Kramou\"", "question": "How did Hamza Kramou fare in the semifinals?", "context": "CREATE TABLE table_17427004_7 (semifinals VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT winter_olympics FROM table_174491_1 WHERE fis_nordic_world_ski_championships = \"1982\"", "question": "In what year did the winner of the FIS championship in 1982 win the Winter Olympics?", "context": "CREATE TABLE table_174491_1 (winter_olympics VARCHAR, fis_nordic_world_ski_championships VARCHAR)"}, {"answer": "SELECT winter_olympics FROM table_174491_1 WHERE winner = \"Thorleif Haug\"", "question": "What year did Thorleif Haug win the Winter Olympics?", "context": "CREATE TABLE table_174491_1 (winter_olympics VARCHAR, winner VARCHAR)"}, {"answer": "SELECT fis_nordic_world_ski_championships FROM table_174491_1 WHERE country = \"Norway\" AND holmenkollen = \"1958\"", "question": "What year did the man from Norway who won the Holmenkollen in 1958 win the FIS Nordic World Ski Championships?", "context": "CREATE TABLE table_174491_1 (fis_nordic_world_ski_championships VARCHAR, country VARCHAR, holmenkollen VARCHAR)"}, {"answer": "SELECT holmenkollen FROM table_174491_2 WHERE fis_nordic_world_ski_championships = \"1982\"", "question": "What is the holmenkollen for the 1982 FIS Nordic World Ski Championships?", "context": "CREATE TABLE table_174491_2 (holmenkollen VARCHAR, fis_nordic_world_ski_championships VARCHAR)"}, {"answer": "SELECT fis_nordic_world_ski_championships FROM table_174491_2 WHERE winner = \"Birger Ruud\"", "question": "What years did Birger Ruud win the FIS Nordic World Ski Championships?", "context": "CREATE TABLE table_174491_2 (fis_nordic_world_ski_championships VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winter_olympics FROM table_174491_2 WHERE winner = \"Karl Schnabl\"", "question": "What year did Karl Schnabl win the Winter Olympics?", "context": "CREATE TABLE table_174491_2 (winter_olympics VARCHAR, winner VARCHAR)"}, {"answer": "SELECT fis_nordic_world_ski_championships FROM table_174491_2 WHERE holmenkollen = \"1976\"", "question": "What is the FIS Nordic World Ski Championships when holmenkollen is 1976?", "context": "CREATE TABLE table_174491_2 (fis_nordic_world_ski_championships VARCHAR, holmenkollen VARCHAR)"}, {"answer": "SELECT winter_olympics FROM table_174491_2 WHERE holmenkollen = \"1957, 1960\"", "question": "What year is Winter Olympics when Holmenkollen is 1957, 1960?", "context": "CREATE TABLE table_174491_2 (winter_olympics VARCHAR, holmenkollen VARCHAR)"}, {"answer": "SELECT part_4 FROM table_1745843_7 WHERE part_3 = \"borgen\"", "question": "What's the part 4 for the verb whose part 3 is borgen?", "context": "CREATE TABLE table_1745843_7 (part_4 VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_1745843_7 WHERE part_1 = \"slapen\"", "question": "What's the meaning of the verb whose part 1 is slapen?", "context": "CREATE TABLE table_1745843_7 (verb_meaning VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT class FROM table_1745843_7 WHERE part_4 = \"gelopen\"", "question": "In what class does the verb with part 4 gelopen belong to?", "context": "CREATE TABLE table_1745843_7 (class VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT part_1 FROM table_1745843_7 WHERE part_4 = \"gevroren\"", "question": "What's part 1 of the verb whose part 4 is gevroren?", "context": "CREATE TABLE table_1745843_7 (part_1 VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT COUNT(verb_meaning) FROM table_1745843_7 WHERE part_4 = \"gegeven\"", "question": "How many different meanings does the verb with part 4 gegeven have?", "context": "CREATE TABLE table_1745843_7 (verb_meaning VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT part_3 FROM table_1745843_7 WHERE part_4 = \"gelopen\"", "question": "What's the part 3 of the verb with part 4 gelopen?", "context": "CREATE TABLE table_1745843_7 (part_3 VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT COUNT(class) FROM table_1745843_6 WHERE part_3 = \"lucon\"", "question": "How many different classes of verbs are there whose part 3 is lucon?", "context": "CREATE TABLE table_1745843_6 (class VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT class FROM table_1745843_6 WHERE part_1 = \"lesan\"", "question": "What's the class of the verb whose part 1 is lesan?", "context": "CREATE TABLE table_1745843_6 (class VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT COUNT(part_3) FROM table_1745843_6 WHERE verb_meaning = \"to freeze\"", "question": "How many different part 3 verbs are there that mean to freeze?", "context": "CREATE TABLE table_1745843_6 (part_3 VARCHAR, verb_meaning VARCHAR)"}, {"answer": "SELECT part_3 FROM table_1745843_6 WHERE class = \"4\"", "question": "What's the part 3 of the verb whose class is 4?", "context": "CREATE TABLE table_1745843_6 (part_3 VARCHAR, class VARCHAR)"}, {"answer": "SELECT part_3 FROM table_1745843_6 WHERE class = \"5\"", "question": "What's the part 3 of the verb in class 5?", "context": "CREATE TABLE table_1745843_6 (part_3 VARCHAR, class VARCHAR)"}, {"answer": "SELECT class FROM table_1745843_5 WHERE part_2 = \"laug\"", "question": "What is the class of the word who's second participle is laug?", "context": "CREATE TABLE table_1745843_5 (class VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_1745843_5 WHERE class = \"6\"", "question": "What is the meaning of the class 6 verbs?", "context": "CREATE TABLE table_1745843_5 (verb_meaning VARCHAR, class VARCHAR)"}, {"answer": "SELECT part_3 FROM table_1745843_5 WHERE part_2 = \"band\"", "question": "What is the 3rd participle of the verb whose 2nd participle is band?", "context": "CREATE TABLE table_1745843_5 (part_3 VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT part_1 FROM table_1745843_5 WHERE part_4 = \"haitans\"", "question": "What is the 1st participle of the verb whose 4th participle is haitans?", "context": "CREATE TABLE table_1745843_5 (part_1 VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT part_4 FROM table_1745843_2 WHERE part_2 = \"*lauk\"", "question": "For part 2 *lauk, what is listed for part 4?", "context": "CREATE TABLE table_1745843_2 (part_4 VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_1745843_2 WHERE part_3 = \"*bundun\"", "question": "What is the verb meaning for *bundun?", "context": "CREATE TABLE table_1745843_2 (verb_meaning VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT part_3 FROM table_1745843_2 WHERE part_2 = \"*raid\"", "question": "For part 2 *raid, what is listed for part 3?", "context": "CREATE TABLE table_1745843_2 (part_3 VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT part_2 FROM table_1745843_2 WHERE part_4 = \"*ridanaz\"", "question": "What word is listed under part 2 for part 4 *ridanaz?", "context": "CREATE TABLE table_1745843_2 (part_2 VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT part_1 FROM table_1745843_2 WHERE class = \"3b\"", "question": "What is listed under part 1 for class 3b?", "context": "CREATE TABLE table_1745843_2 (part_1 VARCHAR, class VARCHAR)"}, {"answer": "SELECT class FROM table_1745843_10 WHERE part_4 = \"frosinn\"", "question": "What class is the verb wich its part 4 is frosinn", "context": "CREATE TABLE table_1745843_10 (class VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT class FROM table_1745843_10 WHERE part_3 = \"heldu\"", "question": "What class is the verb wich its part 3 is heldu", "context": "CREATE TABLE table_1745843_10 (class VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT part_1 FROM table_1745843_10 WHERE class = \"7b\"", "question": "What is part 1 of the verb in class 7b", "context": "CREATE TABLE table_1745843_10 (part_1 VARCHAR, class VARCHAR)"}, {"answer": "SELECT part_3 FROM table_1745843_10 WHERE class = \"4\"", "question": "What is part 1 of the verb in class 4", "context": "CREATE TABLE table_1745843_10 (part_3 VARCHAR, class VARCHAR)"}, {"answer": "SELECT COUNT(part_4) FROM table_1745843_10 WHERE verb_meaning = \"to bear\"", "question": "How many verbs mean to bear", "context": "CREATE TABLE table_1745843_10 (part_4 VARCHAR, verb_meaning VARCHAR)"}, {"answer": "SELECT COUNT(part_1) FROM table_1745843_10 WHERE verb_meaning = \"to grow, to produce\"", "question": "How many verbs mean to grow, to produce", "context": "CREATE TABLE table_1745843_10 (part_1 VARCHAR, verb_meaning VARCHAR)"}, {"answer": "SELECT written_by FROM table_17467578_1 WHERE us_viewers__million_ = \"3.96\"", "question": "Who wrote the episode \"The Dream Lover\", which was viewed by 3.96 million viewers?", "context": "CREATE TABLE table_17467578_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(original_airdate) FROM table_17467578_1 WHERE episode__number = 8", "question": "What is the original air date of episode 8?  Answer: Dec. 21, 2006", "context": "CREATE TABLE table_17467578_1 (original_airdate VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT written_by FROM table_17467578_1 WHERE us_viewers__million_ = \"3.73\"", "question": "Who wrote the episode \"The Cold Turkey\", which was viewed by 3.73 million viewers?", "context": "CREATE TABLE table_17467578_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_17467578_1 WHERE episode__number = 11", "question": "Who wrote episode 11?", "context": "CREATE TABLE table_17467578_1 (written_by VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_17467578_1 WHERE us_viewers__million_ = \"3.73\"", "question": "What was the original airdate of the episode \"The Cold Turkey\", which was viewed by 3.73 million viewers?", "context": "CREATE TABLE table_17467578_1 (original_airdate VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT class FROM table_1745843_9 WHERE part_3 = \"boten\"", "question": "Name the class for boten", "context": "CREATE TABLE table_1745843_9 (class VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT part_3 FROM table_1745843_9 WHERE part_1 = \"treffen\"", "question": "Name the part 3 for treffen", "context": "CREATE TABLE table_1745843_9 (part_3 VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT part_1 FROM table_1745843_9 WHERE verb_meaning = \"to give\"", "question": "Name the part one for to give", "context": "CREATE TABLE table_1745843_9 (part_1 VARCHAR, verb_meaning VARCHAR)"}, {"answer": "SELECT class FROM table_1745843_9 WHERE part_3 = \"schliefen\"", "question": "Name the class for schliefen", "context": "CREATE TABLE table_1745843_9 (class VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_1745843_9 WHERE part_2 = \"half drosch\"", "question": "Name the verb meaning for half drosch", "context": "CREATE TABLE table_1745843_9 (verb_meaning VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT directed_by FROM table_17467447_1 WHERE production_code = \"2T6267\"", "question": "If the product code is 2t6267, who was the director?", "context": "CREATE TABLE table_17467447_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_17467447_1 WHERE us_viewers__million_ = \"5.50\"", "question": "What is the air date when the U.S. viewers was 5.50 million?", "context": "CREATE TABLE table_17467447_1 (original_airdate VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_17467447_1 WHERE production_code = \"2T6268\"", "question": "Who were the writers for production code 2t6268?", "context": "CREATE TABLE table_17467447_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(builder) FROM table_1748444_1 WHERE number = \"96\"", "question": "Name the number of builders for number 96", "context": "CREATE TABLE table_1748444_1 (builder VARCHAR, number VARCHAR)"}, {"answer": "SELECT builder FROM table_1748444_1 WHERE date_built = \"January 1910\"", "question": "Name the builder for date built is january 1910", "context": "CREATE TABLE table_1748444_1 (builder VARCHAR, date_built VARCHAR)"}, {"answer": "SELECT disposition FROM table_1748444_1 WHERE date_built = \"March 1909\"", "question": "Name the disposition for date built is march 1909", "context": "CREATE TABLE table_1748444_1 (disposition VARCHAR, date_built VARCHAR)"}, {"answer": "SELECT title FROM table_17482534_1 WHERE no_in_series = \"96\"", "question": "What is the title of episode number 96 in the series?", "context": "CREATE TABLE table_17482534_1 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_17482534_1 WHERE directed_by = \"Gene Stupnitsky\"", "question": "What number in season is the episode directed by Gene Stupnitsky?", "context": "CREATE TABLE table_17482534_1 (no_in_season VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_17482534_1 WHERE written_by = \"Warren Lieberstein & Halsted Sullivan\"", "question": "How many viewers did the episode written by Warren Lieberstein & Halsted Sullivan have?", "context": "CREATE TABLE table_17482534_1 (us_viewers__millions_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_17482534_1 WHERE production_code = \"5008\"", "question": "How many writers are listed for the episode with a production code of 5008?", "context": "CREATE TABLE table_17482534_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_17482534_1 WHERE production_code = \"5016/5017\"", "question": "What number in the series are the episodes with production code 5016/5017?", "context": "CREATE TABLE table_17482534_1 (no_in_series VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_17487395_1 WHERE callsign = \"DXJP-FM\"", "question": "How many locations have the call signs dxjp-fm? ", "context": "CREATE TABLE table_17487395_1 (location VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT callsign FROM table_17487395_1 WHERE frequency = \"90.3MHz\"", "question": "What is the call sign of the station with the frequency of 90.3mhz", "context": "CREATE TABLE table_17487395_1 (callsign VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT callsign FROM table_17487395_1 WHERE branding = \"Mom's Radio 101.5 Tacloban\"", "question": "What is the call sign for the station that uses the branding, mom's radio 101.5 tacloban?", "context": "CREATE TABLE table_17487395_1 (callsign VARCHAR, branding VARCHAR)"}, {"answer": "SELECT branding FROM table_17487395_1 WHERE location = \"Cebu\"", "question": "What is the branding for stations located in Cebu? ", "context": "CREATE TABLE table_17487395_1 (branding VARCHAR, location VARCHAR)"}, {"answer": "SELECT eagle_riders FROM table_17480471_3 WHERE ova__harmony_gold_dub_ = \"Dr. Kozaburo Nambu\"", "question": "Which eagle riders whose ova (harmony gold dub) is dr. kozaburo nambu?", "context": "CREATE TABLE table_17480471_3 (eagle_riders VARCHAR, ova__harmony_gold_dub_ VARCHAR)"}, {"answer": "SELECT battle_of_the_planets FROM table_17480471_3 WHERE ova__harmony_gold_dub_ = \"Solaris\"", "question": "Which battle of the planets where ova (harmony gold dub) is solaris?", "context": "CREATE TABLE table_17480471_3 (battle_of_the_planets VARCHAR, ova__harmony_gold_dub_ VARCHAR)"}, {"answer": "SELECT eagle_riders FROM table_17480471_3 WHERE battle_of_the_planets = \"Zoltar\"", "question": "Which eagle riders have battle of the planets as zoltar?", "context": "CREATE TABLE table_17480471_3 (eagle_riders VARCHAR, battle_of_the_planets VARCHAR)"}, {"answer": "SELECT gatchaman FROM table_17480471_3 WHERE eagle_riders = \"Lukan\"", "question": " Which gatchaman has eagle riders as lukan?", "context": "CREATE TABLE table_17480471_3 (gatchaman VARCHAR, eagle_riders VARCHAR)"}, {"answer": "SELECT eagle_riders FROM table_17480471_3 WHERE ova__harmony_gold_dub_ = \"Lord Zortek\"", "question": "What eagle riders where ova (harmony gold dub) is lord zortek?", "context": "CREATE TABLE table_17480471_3 (eagle_riders VARCHAR, ova__harmony_gold_dub_ VARCHAR)"}, {"answer": "SELECT pregame_host FROM table_17516922_1 WHERE network = \"ESPN\" AND color_commentator = \"Taylor Twellman\"", "question": "What pregame host was on espn and had taylor twellman color commentating?", "context": "CREATE TABLE table_17516922_1 (pregame_host VARCHAR, network VARCHAR, color_commentator VARCHAR)"}, {"answer": "SELECT pregame_analysts FROM table_17516922_1 WHERE sideline_reporters = \"Rob Stone and Monica Gonzalez\" AND network = \"TSN2\"", "question": "What pregame analyst(s) had rob stone and monica gonzalez as sideline reporters and were on tsn2?", "context": "CREATE TABLE table_17516922_1 (pregame_analysts VARCHAR, sideline_reporters VARCHAR, network VARCHAR)"}, {"answer": "SELECT color_commentator FROM table_17516922_1 WHERE year = 2010", "question": "What color commentator(s) were in 2010?", "context": "CREATE TABLE table_17516922_1 (color_commentator VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_17516922_1 WHERE sideline_reporters = \"Rob Stone and Monica Gonzalez\"", "question": "What is the last year that had sideline reporters rob stone and monica gonzalez?", "context": "CREATE TABLE table_17516922_1 (year INTEGER, sideline_reporters VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_17516922_1 WHERE network = \"ESPN\" AND sideline_reporters = \"Monica Gonzalez\"", "question": "Who had the play-by-play on espn with sideline reporter monica gonzalez?", "context": "CREATE TABLE table_17516922_1 (play_by_play VARCHAR, network VARCHAR, sideline_reporters VARCHAR)"}, {"answer": "SELECT name FROM table_1749567_2 WHERE number = 28", "question": "What was the name of race #28?", "context": "CREATE TABLE table_1749567_2 (name VARCHAR, number VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_1749567_2 WHERE name = \"Eyserweg\"", "question": "The Eyserweg race was which race #?", "context": "CREATE TABLE table_1749567_2 (number INTEGER, name VARCHAR)"}, {"answer": "SELECT location FROM table_1749567_2 WHERE average_climb___percentage_ = 40", "question": "Which race had an average climb of 40%?", "context": "CREATE TABLE table_1749567_2 (location VARCHAR, average_climb___percentage_ VARCHAR)"}, {"answer": "SELECT MAX(length__in_m_) FROM table_1749567_2 WHERE name = \"Keutenberg\"", "question": "The Keutenberg race had what race length?", "context": "CREATE TABLE table_1749567_2 (length__in_m_ INTEGER, name VARCHAR)"}, {"answer": "SELECT MIN(Champions) AS league FROM table_17505751_5", "question": "In the Champions league, what is the Minimum", "context": "CREATE TABLE table_17505751_5 (Champions INTEGER)"}, {"answer": "SELECT COUNT(Champions) AS league FROM table_17505751_5 WHERE position = \"Forward\" AND league < 6.0", "question": "In the Champions league is the forward position smaller than 6.0", "context": "CREATE TABLE table_17505751_5 (Champions VARCHAR, position VARCHAR, league VARCHAR)"}, {"answer": "SELECT MIN(league) FROM table_17505751_5 WHERE total = 8 AND copa_del_rey = 0", "question": "when the total is 8 and copa del rey is 0 what is the minimum league", "context": "CREATE TABLE table_17505751_5 (league INTEGER, total VARCHAR, copa_del_rey VARCHAR)"}, {"answer": "SELECT COUNT(Champions) AS league FROM table_17505751_5 WHERE league = 5 AND position = \"Forward\"", "question": "when the position is forward and the league is 5 what number is the Champion league", "context": "CREATE TABLE table_17505751_5 (Champions VARCHAR, league VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_17505751_5 WHERE p > 4.0", "question": "if p is bigger than 4.0 what is total number", "context": "CREATE TABLE table_17505751_5 (total VARCHAR, p INTEGER)"}, {"answer": "SELECT 2008 AS _status FROM table_17503169_1 WHERE democratic = \"Glenn Nye\"", "question": "What was the 2008 election status when glenn nye was the running democrat?", "context": "CREATE TABLE table_17503169_1 (democratic VARCHAR)"}, {"answer": "SELECT republican FROM table_17503169_1 WHERE incumbent = \"Thelma Drake\"", "question": "Who was the republican candidate in the race with incumbent thelma drake?", "context": "CREATE TABLE table_17503169_1 (republican VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_17503169_1 WHERE republican = \"Bob Goodlatte\"", "question": "How many districts had republican Bob Goodlatte as a candidate?", "context": "CREATE TABLE table_17503169_1 (district VARCHAR, republican VARCHAR)"}, {"answer": "SELECT democratic FROM table_17503169_1 WHERE republican = \"Frank Wolf\"", "question": "Who was the democratic candidate when the republican was  frank wolf?", "context": "CREATE TABLE table_17503169_1 (democratic VARCHAR, republican VARCHAR)"}, {"answer": "SELECT COUNT(won) FROM table_17510803_2 WHERE points_against = \"410\"", "question": "How many won when points against is 410?", "context": "CREATE TABLE table_17510803_2 (won VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT bonus_points FROM table_17510803_2 WHERE points_for = \"385\"", "question": "How many bonus points are there when points for is 385?", "context": "CREATE TABLE table_17510803_2 (bonus_points VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT COUNT(club) FROM table_17510803_2 WHERE points = \"62\"", "question": "How many clubs have 62 points?", "context": "CREATE TABLE table_17510803_2 (club VARCHAR, points VARCHAR)"}, {"answer": "SELECT bonus_points FROM table_17510803_2 WHERE won = \"5\"", "question": "How many bonus points were won by 5?", "context": "CREATE TABLE table_17510803_2 (bonus_points VARCHAR, won VARCHAR)"}, {"answer": "SELECT played FROM table_17510803_2 WHERE points_for = \"362\"", "question": "How many have been played for 362 points?", "context": "CREATE TABLE table_17510803_2 (played VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT points_against FROM table_17510803_2 WHERE lost = \"13\"", "question": "How many points against have a lose of 13?", "context": "CREATE TABLE table_17510803_2 (points_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(level) FROM table_1751142_2", "question": "What is the highest possible level?", "context": "CREATE TABLE table_1751142_2 (level INTEGER)"}, {"answer": "SELECT shuttle_time__seconds_ FROM table_1751142_2 WHERE speed__km_h_ = \"15.5\"", "question": "What is the shuttle time for the level where the speed is 15.5 km/h?", "context": "CREATE TABLE table_1751142_2 (shuttle_time__seconds_ VARCHAR, speed__km_h_ VARCHAR)"}, {"answer": "SELECT MIN(shuttles) FROM table_1751142_2 WHERE shuttle_time__seconds_ = \"6.55\"", "question": "What is the fewest number of shuttles where the shuttle time is 6.55 seconds?", "context": "CREATE TABLE table_1751142_2 (shuttles INTEGER, shuttle_time__seconds_ VARCHAR)"}, {"answer": "SELECT MIN(distance__m_) FROM table_1751142_2 WHERE shuttle_time__seconds_ = \"6.86\"", "question": "What is the distance (in meters) when the shuttle time is 6.86 seconds?", "context": "CREATE TABLE table_1751142_2 (distance__m_ INTEGER, shuttle_time__seconds_ VARCHAR)"}, {"answer": "SELECT MAX(3 AS rd_ru) FROM table_17522854_6 WHERE country = \"Costa Rica\"", "question": "How many 3rd ru does Costa Rica have? ", "context": "CREATE TABLE table_17522854_6 (country VARCHAR)"}, {"answer": "SELECT COUNT(3 AS rd_ru) FROM table_17522854_6 WHERE country = \"Canada\"", "question": "How many 3rd ru does Canada have? ", "context": "CREATE TABLE table_17522854_6 (country VARCHAR)"}, {"answer": "SELECT MIN(miss_united_continent) FROM table_17522854_6", "question": "What is the least number of miss united continents? ", "context": "CREATE TABLE table_17522854_6 (miss_united_continent INTEGER)"}, {"answer": "SELECT COUNT(lead_margin) FROM table_17538810_10 WHERE dates_administered = \"September 11, 2008\"", "question": "How many different lead margins were stated in the poll administered on September 11, 2008?", "context": "CREATE TABLE table_17538810_10 (lead_margin VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT common_name FROM table_175442_1 WHERE scientific_name = \"Rhampholeon spectrum\"", "question": "Name the common name for rhampholeon spectrum ", "context": "CREATE TABLE table_175442_1 (common_name VARCHAR, scientific_name VARCHAR)"}, {"answer": "SELECT scientific_name FROM table_175442_1 WHERE common_name = \"Veiled chameleon\"", "question": "Name the scientific name for veiled chameleon", "context": "CREATE TABLE table_175442_1 (scientific_name VARCHAR, common_name VARCHAR)"}, {"answer": "SELECT common_name FROM table_175442_1 WHERE scientific_name = \"Furcifer pardalis\"", "question": "Name the common name for furcifer pardalis", "context": "CREATE TABLE table_175442_1 (common_name VARCHAR, scientific_name VARCHAR)"}, {"answer": "SELECT COUNT(color) FROM table_175442_1 WHERE scientific_name = \"Furcifer pardalis\"", "question": "Name the number of color for furcifer pardalis", "context": "CREATE TABLE table_175442_1 (color VARCHAR, scientific_name VARCHAR)"}, {"answer": "SELECT COUNT(international_freight) FROM table_1754531_4 WHERE domestic_mail = 260", "question": "Name the number of international frieghts for domestic mail of 260", "context": "CREATE TABLE table_1754531_4 (international_freight VARCHAR, domestic_mail VARCHAR)"}, {"answer": "SELECT COUNT(domestic_mail) FROM table_1754531_4 WHERE total_freight_and_mail = 7853", "question": "Name the total number of domestic mail for 7853 for total frieght and mail", "context": "CREATE TABLE table_1754531_4 (domestic_mail VARCHAR, total_freight_and_mail VARCHAR)"}, {"answer": "SELECT COUNT(domestic_freight) FROM table_1754531_4 WHERE international_mail > 1.0 AND domestic_mail = 260", "question": "Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260", "context": "CREATE TABLE table_1754531_4 (domestic_freight VARCHAR, international_mail VARCHAR, domestic_mail VARCHAR)"}, {"answer": "SELECT MAX(others_number) FROM table_1756284_1", "question": "What was the highest vote for others?", "context": "CREATE TABLE table_1756284_1 (others_number INTEGER)"}, {"answer": "SELECT kerry_percentage FROM table_1756284_1 WHERE kerry_number = 199060", "question": "When Kerry# was 199060, what was the percentage?", "context": "CREATE TABLE table_1756284_1 (kerry_percentage VARCHAR, kerry_number VARCHAR)"}, {"answer": "SELECT MAX(bush_number) FROM table_1756284_1", "question": "What was the highest vote number for Bush?", "context": "CREATE TABLE table_1756284_1 (bush_number INTEGER)"}, {"answer": "SELECT COUnT AS transfer_window FROM table_17596418_4 WHERE moving_from = \"Crystal palace\"", "question": "How many transfer windows coming from Crystal Palace?", "context": "CREATE TABLE table_17596418_4 (COUnT VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT country FROM table_17596418_4 WHERE p = \"GK\"", "question": "What country has a P of GK?", "context": "CREATE TABLE table_17596418_4 (country VARCHAR, p VARCHAR)"}, {"answer": "SELECT p FROM table_17596418_4 WHERE moving_from = \"Everton\"", "question": "What is the P for the player moving from Everton?", "context": "CREATE TABLE table_17596418_4 (p VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT competition FROM table_17594659_1 WHERE opposition = \"Panathinaikos\"", "question": "Name the competition of panathinaikos", "context": "CREATE TABLE table_17594659_1 (competition VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_175980_2 WHERE ranking = \"#51\" AND timeslot = \"Tuesday 9:00 p.m.\"", "question": "What is every value for viewers for ranking #51 for the Tuesday 9:00 p.m. timeslot?", "context": "CREATE TABLE table_175980_2 (viewers__in_millions_ VARCHAR, ranking VARCHAR, timeslot VARCHAR)"}, {"answer": "SELECT finale FROM table_175980_2 WHERE timeslot = \"Tuesday 9:30 p.m.\"", "question": "What finales took place in the Tuesday 9:30 p.m. timeslot?", "context": "CREATE TABLE table_175980_2 (finale VARCHAR, timeslot VARCHAR)"}, {"answer": "SELECT premiere FROM table_175980_2 WHERE finale = \"May 25, 2004\"", "question": "What premieres had a finale on May 25, 2004?", "context": "CREATE TABLE table_175980_2 (premiere VARCHAR, finale VARCHAR)"}, {"answer": "SELECT season FROM table_175980_2 WHERE finale = \"May 25, 2004\"", "question": "What seasons had a finale on May 25, 2004?", "context": "CREATE TABLE table_175980_2 (season VARCHAR, finale VARCHAR)"}, {"answer": "SELECT season FROM table_175980_2 WHERE ranking = \"#47\"", "question": "What seasons had a ranking of #47?", "context": "CREATE TABLE table_175980_2 (season VARCHAR, ranking VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_175980_2 WHERE season = \"1st\"", "question": "What are all values for viewers for 1st season?", "context": "CREATE TABLE table_175980_2 (viewers__in_millions_ VARCHAR, season VARCHAR)"}, {"answer": "SELECT date_withdrawn FROM table_17607663_1 WHERE secr_no = 771", "question": "What is the withdraw date for secr no. 771?", "context": "CREATE TABLE table_17607663_1 (date_withdrawn VARCHAR, secr_no VARCHAR)"}, {"answer": "SELECT builder FROM table_17607663_1 WHERE br_no = 31779", "question": "Who is the builder for br no. 31779?", "context": "CREATE TABLE table_17607663_1 (builder VARCHAR, br_no VARCHAR)"}, {"answer": "SELECT country FROM table_17596418_5 WHERE loan_club = \"Fulham\"", "question": "what ist he country where the loan club is fulham?", "context": "CREATE TABLE table_17596418_5 (country VARCHAR, loan_club VARCHAR)"}, {"answer": "SELECT COUNT(age) FROM table_17596418_5 WHERE started = \"6 November\"", "question": "what ist he total number of ages where the start date is 6 november?", "context": "CREATE TABLE table_17596418_5 (age VARCHAR, started VARCHAR)"}, {"answer": "SELECT title FROM table_17624965_1 WHERE production_code = 618", "question": "What was the name of eipsode 618?", "context": "CREATE TABLE table_17624965_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_17624965_1 WHERE directed_by = \"Alison Maclean\"", "question": "How many episodes did Alison Maclean direct?", "context": "CREATE TABLE table_17624965_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT high_points FROM table_17622423_12 WHERE date = \"May 29\"", "question": "Name the high points for may 29", "context": "CREATE TABLE table_17622423_12 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_17622423_12 WHERE series = \"2-2\"", "question": "Name the date for series 2-2", "context": "CREATE TABLE table_17622423_12 (date VARCHAR, series VARCHAR)"}, {"answer": "SELECT high_assists FROM table_17622423_12 WHERE date = \"May 21\"", "question": "Name the high assists for may 21", "context": "CREATE TABLE table_17622423_12 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(play_by_play) FROM table_17628022_2 WHERE pregame_analysts = \"Darren Flutie, Eric Tillman and Greg Frers\"", "question": "How many different play-by-play announcers also had pregame analysis by Darren Flutie, Eric Tillman and Greg Frers?", "context": "CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_analysts VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_17628022_2 WHERE pregame_host = \"Brian Williams\" AND sideline_reporters = \"Steve Armitage and Brenda Irving\"", "question": "Who did the play-by-play when the pregame host was Brian Williams and the sideline reporters were Steve Armitage and Brenda Irving?", "context": "CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_host VARCHAR, sideline_reporters VARCHAR)"}, {"answer": "SELECT pregame_host FROM table_17628022_2 WHERE sideline_reporters = \"Steve Armitage and Brenda Irving\"", "question": "Who were the pregame hosts when the sideline reporters were Steve Armitage and Brenda Irving?", "context": "CREATE TABLE table_17628022_2 (pregame_host VARCHAR, sideline_reporters VARCHAR)"}, {"answer": "SELECT pregame_analysts FROM table_17628022_2 WHERE year = 2002", "question": "Who did pregame analysis in 2002?", "context": "CREATE TABLE table_17628022_2 (pregame_analysts VARCHAR, year VARCHAR)"}, {"answer": "SELECT state FROM table_1762887_1 WHERE county = \"Lake county\"", "question": "Name the state for lake county", "context": "CREATE TABLE table_1762887_1 (state VARCHAR, county VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_17632217_1", "question": "What is the lowest season?", "context": "CREATE TABLE table_17632217_1 (season INTEGER)"}, {"answer": "SELECT COUNT(number_of_clubs) FROM table_17632217_1 WHERE runners_up = \"Shandong\"", "question": "How many values for number of clubs have Shandong as the runner-up?", "context": "CREATE TABLE table_17632217_1 (number_of_clubs VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT COUNT(total_wins) FROM table_17632217_1 WHERE runners_up = \"Shanghai\"", "question": "How many total wins with Shanghai as runner-up?", "context": "CREATE TABLE table_17632217_1 (total_wins VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT club FROM table_17625749_1 WHERE tries_for = \"32\"", "question": "Name the club for when tries for is 32", "context": "CREATE TABLE table_17625749_1 (club VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_17625749_1 WHERE tries_for = \"109\"", "question": "Name the number of lost where tries for is 109", "context": "CREATE TABLE table_17625749_1 (lost VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT won FROM table_17625749_1 WHERE tries_against = \"72\"", "question": "Name the won when tries against is 72", "context": "CREATE TABLE table_17625749_1 (won VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_17625749_1 WHERE drawn = \"1\" AND points = \"51\"", "question": "Name the points aginst when drawn is 1 and points is 51", "context": "CREATE TABLE table_17625749_1 (points_against VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_17625876_1 WHERE no_in_season = 1", "question": "Name the original air date for number in season being 1", "context": "CREATE TABLE table_17625876_1 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT won FROM table_17625749_3 WHERE lost = \"5\"", "question": "How many were won when 5 were lost? ", "context": "CREATE TABLE table_17625749_3 (won VARCHAR, lost VARCHAR)"}, {"answer": "SELECT drawn FROM table_17625749_3 WHERE lost = \"13\"", "question": "How many were drawn when 13 were lost? ", "context": "CREATE TABLE table_17625749_3 (drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points_for FROM table_17625749_3 WHERE tries_against = \"63\"", "question": "How many points are there for 63 tries against? ", "context": "CREATE TABLE table_17625749_3 (points_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_17625749_3 WHERE tries_against = \"17\"", "question": "What is the try bonus when the tries against are 17? ", "context": "CREATE TABLE table_17625749_3 (try_bonus VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT tries_for FROM table_17625749_3 WHERE won = \"11\"", "question": "How many tries for are there when 11 were won? ", "context": "CREATE TABLE table_17625749_3 (tries_for VARCHAR, won VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_17625749_3 WHERE losing_bonus = \"2\" AND points_for = \"642\"", "question": "How many points categories are there when the losing bonus is 2 and points for are 642?", "context": "CREATE TABLE table_17625749_3 (points VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_17641206_2 WHERE viewership = \"6.34 million\"", "question": "How many people wrote the episode that had 6.34 million viewers?", "context": "CREATE TABLE table_17641206_2 (written_by VARCHAR, viewership VARCHAR)"}, {"answer": "SELECT original_title FROM table_17641206_4 WHERE viewership = \"5.04 million\"", "question": "What was the title of the episode with 5.04 million viewers?", "context": "CREATE TABLE table_17641206_4 (original_title VARCHAR, viewership VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_17641206_4 WHERE viewership = \"4.77 million\"", "question": "What was the first airdate with a viewership of 4.77 million?", "context": "CREATE TABLE table_17641206_4 (original_airdate VARCHAR, viewership VARCHAR)"}, {"answer": "SELECT COUNT(duration) FROM table_17641206_4 WHERE written_by = \"John Sullivan\"", "question": "How many episodes  of 30 minutes were written by John Sullivan?", "context": "CREATE TABLE table_17641206_4 (duration VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_17641206_4 WHERE written_by = \"John Sullivan\"", "question": "Who was the director when the writer was John Sullivan?", "context": "CREATE TABLE table_17641206_4 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_17641206_8 WHERE written_by = \"John Sullivan\" AND original_airdate = \"15January2009\"", "question": "What are the movies that are written and dircted by  john sullivan  with the airdate of 15january2009.", "context": "CREATE TABLE table_17641206_8 (directed_by VARCHAR, written_by VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_17641206_8 WHERE original_airdate = \"22January2009\"", "question": "How many episodes aired on 22january2009", "context": "CREATE TABLE table_17641206_8 (episode VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT MIN(transfers_out) FROM table_17650725_1 WHERE total_transfers = 21", "question": "Name the least transfers out when transfers is 21", "context": "CREATE TABLE table_17650725_1 (transfers_out INTEGER, total_transfers VARCHAR)"}, {"answer": "SELECT MIN(total_transfers) FROM table_17650725_1 WHERE country = \"Romania\"", "question": "Name the least total transfers for romania", "context": "CREATE TABLE table_17650725_1 (total_transfers INTEGER, country VARCHAR)"}, {"answer": "SELECT MIN(internal_transfers) FROM table_17650725_1", "question": "Name the least internal transfers", "context": "CREATE TABLE table_17650725_1 (internal_transfers INTEGER)"}, {"answer": "SELECT COUNT(status) FROM table_176529_2 WHERE official_name = \"Moncton\"", "question": "How many status are there for Moncton?", "context": "CREATE TABLE table_176529_2 (status VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_176529_2 WHERE population = 959", "question": "What is the census ranking of the location with population of 959?", "context": "CREATE TABLE table_176529_2 (census_ranking VARCHAR, population VARCHAR)"}, {"answer": "SELECT official_name FROM table_176529_2 WHERE area_km_2 = \"582.20\"", "question": "What is the name of the place with 582.20 square km area?", "context": "CREATE TABLE table_176529_2 (official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT official_name FROM table_176529_2 WHERE area_km_2 = \"578.28\"", "question": "What is the name of the place where area is 578.28 square km?", "context": "CREATE TABLE table_176529_2 (official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT team FROM table_17693171_1 WHERE points = \"20\"", "question": "If the points is 20, what was the team name?", "context": "CREATE TABLE table_17693171_1 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT time_retired FROM table_17693171_1 WHERE driver = \"Marco Andretti\"", "question": "What is the time/retired if the driver is Marco Andretti?", "context": "CREATE TABLE table_17693171_1 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(laps) AS Led FROM table_17693171_1 WHERE laps = 191", "question": "If the laps is 191, what is the maximum laps led?", "context": "CREATE TABLE table_17693171_1 (laps INTEGER)"}, {"answer": "SELECT time_retired FROM table_17693171_1 WHERE driver = \"Ed Carpenter\"", "question": "What is the time/retired if the driver is Ed Carpenter?", "context": "CREATE TABLE table_17693171_1 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_17693171_1 WHERE time_retired = \"+1 lap\"", "question": "If the time/retired is +1 lap, what is the amount of maximum laps?", "context": "CREATE TABLE table_17693171_1 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT team FROM table_17693171_1 WHERE driver = \"Milka Duno\"", "question": "If the driver is Milka Duno, what is the name of the team?", "context": "CREATE TABLE table_17693171_1 (team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(stage) FROM table_17672470_19 WHERE winner = \"Robbie McEwen\"", "question": "How many stages were won by Robbie McEwen?", "context": "CREATE TABLE table_17672470_19 (stage VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(car__number) FROM table_1769428_2 WHERE winning_driver = \"Rusty Wallace\"", "question": "How many car numbers were listed for Rusty Wallace?", "context": "CREATE TABLE table_1769428_2 (car__number VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_1769428_2 WHERE winning_driver = \"Rusty Wallace\"", "question": "In what season did Rusty Wallace win?", "context": "CREATE TABLE table_1769428_2 (season INTEGER, winning_driver VARCHAR)"}, {"answer": "SELECT team FROM table_1769428_2 WHERE date = \"June 27\"", "question": "What was the represented team on June 27?", "context": "CREATE TABLE table_1769428_2 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_1769428_2 WHERE team = \"Hendrick Motorsports\" AND make = \"Chevrolet Impala SS\"", "question": "Who was the winning driver for Hendrick Motorsports in a Chevrolet Impala SS?", "context": "CREATE TABLE table_1769428_2 (winning_driver VARCHAR, team VARCHAR, make VARCHAR)"}, {"answer": "SELECT lost FROM table_17718005_2 WHERE drawn = 10 AND goals_for = 45", "question": "When 45 is the goals for and  10 is the drawn what is the lost?", "context": "CREATE TABLE table_17718005_2 (lost VARCHAR, drawn VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT goals_for FROM table_17718005_2 WHERE goal_difference = \"+10\"", "question": "When +10 is the goal difference what is the goals for?", "context": "CREATE TABLE table_17718005_2 (goals_for VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT points_1 FROM table_17718005_2 WHERE team = \"Ellesmere Port & Neston\"", "question": "When ellesmere port & neston is the team what are the points 1?", "context": "CREATE TABLE table_17718005_2 (points_1 VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(driver) FROM table_1771753_3 WHERE season = \"2005\"", "question": "When 2005 is the season how many drivers are there?", "context": "CREATE TABLE table_1771753_3 (driver VARCHAR, season VARCHAR)"}, {"answer": "SELECT average_speed__mph_ FROM table_1771753_3 WHERE driver = \"Tony Kanaan\"", "question": "When tony kanaan is the driver what is the average speed miles per hour?", "context": "CREATE TABLE table_1771753_3 (average_speed__mph_ VARCHAR, driver VARCHAR)"}, {"answer": "SELECT chassis FROM table_1771753_3 WHERE average_speed__mph_ = \"169.182\"", "question": "When 169.182 is the average speed miles per hour what is the chassis?", "context": "CREATE TABLE table_1771753_3 (chassis VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT miles__km_ FROM table_1771753_3 WHERE race_time = \"1:34:01\"", "question": "When 1:34:01 is the race time what is the miles in kilometers?", "context": "CREATE TABLE table_1771753_3 (miles__km_ VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT race_time FROM table_1771753_3 WHERE team = \"Chip Ganassi Racing\" AND laps = \"228\"", "question": "When 228 is the lap and chip ganassi racing is the team what is the race time?", "context": "CREATE TABLE table_1771753_3 (race_time VARCHAR, team VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(tie_no) FROM table_17736890_5 WHERE home_team = \"Chelsea\"", "question": "What tie number featured Chelsea as the home team?", "context": "CREATE TABLE table_17736890_5 (tie_no INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MAX(tie_no) FROM table_17736890_5 WHERE away_team = \"Leeds United\"", "question": "In what tie were Leeds United the away team?", "context": "CREATE TABLE table_17736890_5 (tie_no INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_17736890_5 WHERE away_team = \"Burnley\"", "question": "Who was the home team when Burnley were the away team?", "context": "CREATE TABLE table_17736890_5 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_177273_2", "question": "what is the lowest year represented?", "context": "CREATE TABLE table_177273_2 (year INTEGER)"}, {"answer": "SELECT score FROM table_177273_2 WHERE partner = \"Fran\u00e7oise D\u00fcrr\"", "question": "What was the score when Fran\u00e7oise D\u00fcrr was partner?", "context": "CREATE TABLE table_177273_2 (score VARCHAR, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_177273_2 WHERE year = 1975", "question": "What was the outcome in 1975?", "context": "CREATE TABLE table_177273_2 (outcome VARCHAR, year VARCHAR)"}, {"answer": "SELECT surface FROM table_177273_2 WHERE score = \"6\u20134, 6\u20134\"", "question": "On what surface was the game played with a score of  6\u20134, 6\u20134?", "context": "CREATE TABLE table_177273_2 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT years_of_appearance FROM table_17751942_4 WHERE team = \"Prince Albert Raiders\"", "question": "What is the year of appearance for the Prince Albert Raiders? ", "context": "CREATE TABLE table_17751942_4 (years_of_appearance VARCHAR, team VARCHAR)"}, {"answer": "SELECT wins FROM table_17751942_4 WHERE team = \"Erie Otters\"", "question": "How many wins do the Erie Otters have? ", "context": "CREATE TABLE table_17751942_4 (wins VARCHAR, team VARCHAR)"}, {"answer": "SELECT final_win__percentage FROM table_17751942_4 WHERE team = \"Sault Ste. Marie Greyhounds\"", "question": "What is the final win percentage of the Sault Ste. Marie Greyhounds? ", "context": "CREATE TABLE table_17751942_4 (final_win__percentage VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(Semi) - final_losses FROM table_17751942_4 WHERE team = \"Kitchener Rangers\"", "question": "What is the total number of semi-final losses for the Kitchener Rangers? ", "context": "CREATE TABLE table_17751942_4 (final_losses VARCHAR, Semi INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_17751942_4 WHERE team = \"Red Deer Rebels\"", "question": "How many wins do the Red Deer Rebels have? ", "context": "CREATE TABLE table_17751942_4 (wins INTEGER, team VARCHAR)"}, {"answer": "SELECT record FROM table_17765888_1 WHERE date = \"November 26, 1961\"", "question": "What is the record for November 26, 1961?", "context": "CREATE TABLE table_17765888_1 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_17765888_1 WHERE opponent = \"Dallas Texans\"", "question": "What was the game site against the Dallas Texans?", "context": "CREATE TABLE table_17765888_1 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(year_s_) FROM table_17766232_7 WHERE final_television_commentator = \"Tom Fleming\"", "question": "In how many years was Tom Fleming the final television commentator? ", "context": "CREATE TABLE table_17766232_7 (year_s_ VARCHAR, final_television_commentator VARCHAR)"}, {"answer": "SELECT MAX(year_s_) FROM table_17766232_7 WHERE spokesperson = \"Colin Berry\"", "question": "What was the latest year that Colin Berry was the spokesperson? ", "context": "CREATE TABLE table_17766232_7 (year_s_ INTEGER, spokesperson VARCHAR)"}, {"answer": "SELECT semi_final_television_commentator FROM table_17766232_7 WHERE spokesperson = \"Colin Berry\" AND final_television_commentator = \"Pete Murray\"", "question": "Who was the semi-final television commentator when the spokesperson was Colin Berry and the final television commentator was Pete Murray?", "context": "CREATE TABLE table_17766232_7 (semi_final_television_commentator VARCHAR, spokesperson VARCHAR, final_television_commentator VARCHAR)"}, {"answer": "SELECT radio_commentator FROM table_17766232_7 WHERE final_television_commentator = \"John Dunn\"", "question": "Who was the radio commentator when the final television commentator was John Dunn? ", "context": "CREATE TABLE table_17766232_7 (radio_commentator VARCHAR, final_television_commentator VARCHAR)"}, {"answer": "SELECT MAX(year_s_) FROM table_17766232_7 WHERE final_television_commentator = \"David Jacobs\"", "question": "What is the latest year that the final television commentator was David Jacobs? ", "context": "CREATE TABLE table_17766232_7 (year_s_ INTEGER, final_television_commentator VARCHAR)"}, {"answer": "SELECT record FROM table_17765264_1 WHERE attendance = 14489", "question": "What was their record when the attendance at the game was 14489?", "context": "CREATE TABLE table_17765264_1 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_17765264_1 WHERE game_site = \"Cotton Bowl\"", "question": "When did they play at the Cotton Bowl?", "context": "CREATE TABLE table_17765264_1 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT per\u00adcent\u00adage FROM table_177766_1 WHERE abbre\u00adviation = \"Nor\"", "question": "What is the percentage of this constellation abbreviated as 'nor'?", "context": "CREATE TABLE table_177766_1 (per\u00adcent\u00adage VARCHAR, abbre\u00adviation VARCHAR)"}, {"answer": "SELECT COUNT(right_ascension__hm_) FROM table_177766_1 WHERE abbre\u00adviation = \"Oph\"", "question": "This constellation, abbreviated as 'oph' has how many right ascension (in hm)?", "context": "CREATE TABLE table_177766_1 (right_ascension__hm_ VARCHAR, abbre\u00adviation VARCHAR)"}, {"answer": "SELECT constellation FROM table_177766_1 WHERE area__sqdeg_ = \"245.375\"", "question": "What is the name of this constellation with an area of 245.375 sq. deg.?", "context": "CREATE TABLE table_177766_1 (constellation VARCHAR, area__sqdeg_ VARCHAR)"}, {"answer": "SELECT COUNT(per) AS \u00adcent\u00adage FROM table_177766_1 WHERE rank = 51", "question": "This constellation with a ranking of 51 has how many percentages on record?", "context": "CREATE TABLE table_177766_1 (per VARCHAR, rank VARCHAR)"}, {"answer": "SELECT per\u00adcent\u00adage FROM table_177766_1 WHERE area__sqdeg_ = \"248.885\"", "question": "What is the percentage of this constellation with an area of 248.885 sq. deg.?", "context": "CREATE TABLE table_177766_1 (per\u00adcent\u00adage VARCHAR, area__sqdeg_ VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_1776943_1 WHERE viewers__in_millions_ = \"6.4\" AND archive = \"16mm t/r\"", "question": "Name the broadcast date for 6.4 million viewers for the archive of 16mm t/r", "context": "CREATE TABLE table_1776943_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR, archive VARCHAR)"}, {"answer": "SELECT archive FROM table_1776943_1 WHERE run_time = \"24:04\"", "question": "Name the archive where run time 24:04", "context": "CREATE TABLE table_1776943_1 (archive VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT game_site FROM table_17781394_1 WHERE date = \"November 1, 1964\"", "question": "On November 1, 1964, where was the game site?", "context": "CREATE TABLE table_17781394_1 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_17778417_1 WHERE week = 8", "question": "How many people attended the Week 8 game when Denver played Buffalo?", "context": "CREATE TABLE table_17778417_1 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_17778417_1 WHERE opponent = \"Dallas Texans\"", "question": "How many times did the Denver Broncos face the Dallas Texans this season?", "context": "CREATE TABLE table_17778417_1 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_17801022_1 WHERE race_time = \"1:55:13\"", "question": "What year was the winning race time 1:55:13?", "context": "CREATE TABLE table_17801022_1 (year INTEGER, race_time VARCHAR)"}, {"answer": "SELECT race_time FROM table_17801022_1 WHERE average_speed__mph_ = \"113.835\"", "question": "For races with an average speed of 113.835 mph, what are the winning race times?", "context": "CREATE TABLE table_17801022_1 (race_time VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_17801022_1 WHERE date = \"November 2\"", "question": "What manufacturer won the race on November 2?", "context": "CREATE TABLE table_17801022_1 (manufacturer VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_17801022_1 WHERE driver = \"Jamie McMurray\"", "question": "What date did Jamie McMurray win the race?", "context": "CREATE TABLE table_17801022_1 (date VARCHAR, driver VARCHAR)"}, {"answer": "SELECT date FROM table_17801022_1 WHERE race_time = \"1:55:13\"", "question": "What was the date of the race with a winning time of 1:55:13?", "context": "CREATE TABLE table_17801022_1 (date VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT team FROM table_17802778_1 WHERE average_speed__mph_ = \"138.14\"", "question": "What team(s) enjoyed an average spped (mph) of 138.14?", "context": "CREATE TABLE table_17802778_1 (team VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT laps FROM table_17802778_1 WHERE year = 2001", "question": "How many laps recorded in 2001?", "context": "CREATE TABLE table_17802778_1 (laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_17802778_1 WHERE year = 2003", "question": "What team(s) were in 2003?", "context": "CREATE TABLE table_17802778_1 (team VARCHAR, year VARCHAR)"}, {"answer": "SELECT average_speed__mph_ FROM table_17802778_1 WHERE race_time = \"1:45:00\"", "question": "What was the average speed (mph) for the racer who finished in 1:45:00?", "context": "CREATE TABLE table_17802778_1 (average_speed__mph_ VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT miles__km_ FROM table_17802778_1 WHERE race_time = \"1:05:33\"", "question": "How many total miles recorded for the racer who finished in 1:05:33?", "context": "CREATE TABLE table_17802778_1 (miles__km_ VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT title FROM table_17810099_3 WHERE episode__number = \"21a\"", "question": "what was the title of the episode 21a?", "context": "CREATE TABLE table_17810099_3 (title VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_17810099_3 WHERE episode__number = \"14\"", "question": "who wrote episode 14?", "context": "CREATE TABLE table_17810099_3 (writer_s_ VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT COUNT(e_greenberg) FROM table_17820556_4 WHERE county = \"Morris\"", "question": "Who many votes did E. Greenberg receive in Morris County?", "context": "CREATE TABLE table_17820556_4 (e_greenberg VARCHAR, county VARCHAR)"}, {"answer": "SELECT precincts FROM table_17820556_4 WHERE g_hager = \"19 (20%)\"", "question": "How many precincts are in the county where G. Hager received 19 (20%) votes?", "context": "CREATE TABLE table_17820556_4 (precincts VARCHAR, g_hager VARCHAR)"}, {"answer": "SELECT COUNT(slope_length) FROM table_17814458_1 WHERE elevation_groundstation = 1966", "question": "Name the slope length for 1966 groundstation", "context": "CREATE TABLE table_17814458_1 (slope_length VARCHAR, elevation_groundstation VARCHAR)"}, {"answer": "SELECT name_or_route FROM table_17814458_1 WHERE slope_length = 336", "question": "Name the name or route for slope length being 336", "context": "CREATE TABLE table_17814458_1 (name_or_route VARCHAR, slope_length VARCHAR)"}, {"answer": "SELECT MIN(slope_length) FROM table_17814458_1 WHERE type = \"gondola\"", "question": "Name the slope length for gondola", "context": "CREATE TABLE table_17814458_1 (slope_length INTEGER, type VARCHAR)"}, {"answer": "SELECT MIN(capacity_in_persons_hour) FROM table_17814458_1 WHERE construction_year_s_ = \"1983\"", "question": "Name the least capacity for persons hour for 1983", "context": "CREATE TABLE table_17814458_1 (capacity_in_persons_hour INTEGER, construction_year_s_ VARCHAR)"}, {"answer": "SELECT COUNT(new_entries_this_round) FROM table_17814838_1 WHERE round = \"Fourth round Proper\"", "question": "How many categories of new entries this round are there for the fourth round proper? ", "context": "CREATE TABLE table_17814838_1 (new_entries_this_round VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(runner_up) FROM table_178242_7 WHERE international_destination = \"Japan\"", "question": "How many runner-ups were there when the show went to Japan?", "context": "CREATE TABLE table_178242_7 (runner_up VARCHAR, international_destination VARCHAR)"}, {"answer": "SELECT COUNT(winner) FROM table_178242_7 WHERE runner_up = \"Regina\"", "question": "How many won the prize when Regina was the runner-up?", "context": "CREATE TABLE table_178242_7 (winner VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT season FROM table_178242_7 WHERE the_mole = \"Milouska\"", "question": "Which season is it when Milouska was the show's mole ?", "context": "CREATE TABLE table_178242_7 (season VARCHAR, the_mole VARCHAR)"}, {"answer": "SELECT actor_required FROM table_17827271_1 WHERE actor_in_original_production = \"Robert Austin\"", "question": "What were the requirements for the role played by Robert Austin in the original production?", "context": "CREATE TABLE table_17827271_1 (actor_required VARCHAR, actor_in_original_production VARCHAR)"}, {"answer": "SELECT actor_in_original_production FROM table_17827271_1 WHERE actor_required = \"Female, older\"", "question": "What actor played the \"female, older\" role in the original production?", "context": "CREATE TABLE table_17827271_1 (actor_in_original_production VARCHAR, actor_required VARCHAR)"}, {"answer": "SELECT flatspin FROM table_17827271_1 WHERE actor_in_original_production = \"Robert Austin\"", "question": "What FlatSpin actor played the same role as Robert Austin?", "context": "CREATE TABLE table_17827271_1 (flatspin VARCHAR, actor_in_original_production VARCHAR)"}, {"answer": "SELECT COUNT(roleplay) FROM table_17827271_1 WHERE actor_required = \"Male, younger\"", "question": "How many RolePlay actors played the role requiring a \"male, younger\" actor?", "context": "CREATE TABLE table_17827271_1 (roleplay VARCHAR, actor_required VARCHAR)"}, {"answer": "SELECT COUNT(roleplay) FROM table_17827271_1 WHERE flatspin = \"Tracy Taylor\"", "question": "How many RolePlay actors played the same role as FlatSpin's Tracy Taylor?", "context": "CREATE TABLE table_17827271_1 (roleplay VARCHAR, flatspin VARCHAR)"}, {"answer": "SELECT roleplay FROM table_17827271_1 WHERE actor_in_original_production = \"Alison Pargeter\"", "question": "What RolePlay actor played the same role Alison Pargeter played in the original production?", "context": "CREATE TABLE table_17827271_1 (roleplay VARCHAR, actor_in_original_production VARCHAR)"}, {"answer": "SELECT church_name FROM table_178381_1 WHERE location_of_the_church = \"Stavang\"", "question": "What's the name of the church in Stavang?", "context": "CREATE TABLE table_178381_1 (church_name VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT sub_parish__sokn_ FROM table_178381_1 WHERE location_of_the_church = \"Eikefjord\"", "question": "What's the sub-parish (sokn) of Eikefjord?", "context": "CREATE TABLE table_178381_1 (sub_parish__sokn_ VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT COUNT(location_of_the_church) FROM table_178381_1 WHERE year_built = \"1957\" AND church_name = \"Askrova bedehuskapell\"", "question": "On how many locations is there a church named Askrova Bedehuskapell, built in 1957?", "context": "CREATE TABLE table_178381_1 (location_of_the_church VARCHAR, year_built VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT parish__prestegjeld_ FROM table_178381_1 WHERE church_name = \"Askrova bedehuskapell\"", "question": "In what parish is the Askrova Bedehuskapell church?", "context": "CREATE TABLE table_178381_1 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT channel FROM table_178242_1 WHERE host_s_ = \"Art Rooijakkers\"", "question": "Which channel has the host Art Rooijakkers?", "context": "CREATE TABLE table_178242_1 (channel VARCHAR, host_s_ VARCHAR)"}, {"answer": "SELECT premiere___aired FROM table_178242_1 WHERE channel = \"VIER\"", "question": "When did the program air on Vier?", "context": "CREATE TABLE table_178242_1 (premiere___aired VARCHAR, channel VARCHAR)"}, {"answer": "SELECT name FROM table_178242_1 WHERE channel = \"Nederland 3\" AND premiere___aired = \"17 May 2008 \u2013 21 June 2008\"", "question": "What is the title that aired from 17 may 2008 \u2013 21 june 2008 on Nederland 3?", "context": "CREATE TABLE table_178242_1 (name VARCHAR, channel VARCHAR, premiere___aired VARCHAR)"}, {"answer": "SELECT seasons FROM table_178242_1 WHERE country___region = \"Poland\"", "question": "How many seasons did the show run in Poland?", "context": "CREATE TABLE table_178242_1 (seasons VARCHAR, country___region VARCHAR)"}, {"answer": "SELECT current_stock FROM table_17839_1 WHERE avg_trips_per_mile__\u00d71000_ = 4744", "question": "When 4744 is the avg. trips per mile (x1000) what is the current stock?", "context": "CREATE TABLE table_17839_1 (current_stock VARCHAR, avg_trips_per_mile__\u00d71000_ VARCHAR)"}, {"answer": "SELECT future_stock FROM table_17839_1 WHERE map_colour = \"Green\"", "question": "When green is the map colour what is the future stock?", "context": "CREATE TABLE table_17839_1 (future_stock VARCHAR, map_colour VARCHAR)"}, {"answer": "SELECT COUNT(avg_trips_per_mile__) AS \u00d71000_ FROM table_17839_1 WHERE map_colour = \"Turquoise\"", "question": "When turquoise is the map colour how many avg. trips per mile (\u00d71000)  are there?", "context": "CREATE TABLE table_17839_1 (avg_trips_per_mile__ VARCHAR, map_colour VARCHAR)"}, {"answer": "SELECT length FROM table_17839_1 WHERE map_colour = \"Turquoise\"", "question": "When turquoise is the map colour what is the length?", "context": "CREATE TABLE table_17839_1 (length VARCHAR, map_colour VARCHAR)"}, {"answer": "SELECT MAX(year_established) FROM table_1784514_1", "question": "What is the latest year a division was established?", "context": "CREATE TABLE table_1784514_1 (year_established INTEGER)"}, {"answer": "SELECT number_of_powiats FROM table_1784514_1 WHERE capital = \"Mstsislaw\"", "question": "How many powiats have mstsislaw as a capital?", "context": "CREATE TABLE table_1784514_1 (number_of_powiats VARCHAR, capital VARCHAR)"}, {"answer": "SELECT COUNT(capital) FROM table_1784514_1 WHERE voivodeship_after_1569 = \"Brest Litovsk Voivodeship\"", "question": "How many capitals had brest litovsk voivodeship as voivodeship after 1569?", "context": "CREATE TABLE table_1784514_1 (capital VARCHAR, voivodeship_after_1569 VARCHAR)"}, {"answer": "SELECT MAX(year_established) FROM table_1784514_1 WHERE number_of_powiats = \"5 powiats\"", "question": "What is the latest year established that had 5 powiats?", "context": "CREATE TABLE table_1784514_1 (year_established INTEGER, number_of_powiats VARCHAR)"}, {"answer": "SELECT parish__prestegjeld_ FROM table_178398_1 WHERE sub_parish__sogn_ = \"Fortun\"", "question": "In what parish is the sub-parish fortun? ", "context": "CREATE TABLE table_178398_1 (parish__prestegjeld_ VARCHAR, sub_parish__sogn_ VARCHAR)"}, {"answer": "SELECT sub_parish__sogn_ FROM table_178398_1 WHERE location_of_the_church = \"Fortun\"", "question": "What is the sub-parish of the church located in Fortun? ", "context": "CREATE TABLE table_178398_1 (sub_parish__sogn_ VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT MIN(year_built) FROM table_178398_1 WHERE location_of_the_church = \"Jostedal\"", "question": "What is the year that the oldest church was built in Jostedal? ", "context": "CREATE TABLE table_178398_1 (year_built INTEGER, location_of_the_church VARCHAR)"}, {"answer": "SELECT parish__prestegjeld_ FROM table_178398_1 WHERE location_of_the_church = \"Solvorn\"", "question": "What parishes are in Solvorn? ", "context": "CREATE TABLE table_178398_1 (parish__prestegjeld_ VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT COUNT(parish__prestegjeld_) FROM table_178399_1 WHERE church_name = \"Vilnes kyrkje\"", "question": "Name the number of parish for vilnes kyrkje", "context": "CREATE TABLE table_178399_1 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT parish__prestegjeld_ FROM table_178399_1 WHERE year_built = 1908", "question": "Name the parish for 1908", "context": "CREATE TABLE table_178399_1 (parish__prestegjeld_ VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT MAX(year_built) FROM table_178399_1 WHERE church_name = \"Holmedal kyrkje\"", "question": "Name the maximum year built for holmedal kyrkje", "context": "CREATE TABLE table_178399_1 (year_built INTEGER, church_name VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_17861179_1 WHERE game_site = \"Shea Stadium\"", "question": "What is the week where the game site is Shea Stadium?", "context": "CREATE TABLE table_17861179_1 (week INTEGER, game_site VARCHAR)"}, {"answer": "SELECT result FROM table_17861179_1 WHERE week = 6", "question": "For week 6, what were the results?", "context": "CREATE TABLE table_17861179_1 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_17869717_1 WHERE date = \"November 3\"", "question": "In how many weeks was the game played on November 3 played?", "context": "CREATE TABLE table_17869717_1 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_1785117_1 WHERE viewers__in_millions_ = \"8.3\"", "question": "What is the broadcast date when 8.3 million viewers watched?", "context": "CREATE TABLE table_1785117_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_1785117_1 WHERE run_time = \"25:12\"", "question": "What is the broadcast date of the episode with run time 25:12?", "context": "CREATE TABLE table_1785117_1 (broadcast_date VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_1785117_1 WHERE run_time = \"25:55\"", "question": "How many million viewers watched the episode that runs 25:55 minutes?", "context": "CREATE TABLE table_1785117_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT number_of_dances FROM table_17862135_3 WHERE couple = \"Warren & Kym\"", "question": "How many dances did Warren & Kym have?", "context": "CREATE TABLE table_17862135_3 (number_of_dances VARCHAR, couple VARCHAR)"}, {"answer": "SELECT total_points FROM table_17862135_3 WHERE average = \"17.8\"", "question": "What are the total points for the team that averages 17.8?", "context": "CREATE TABLE table_17862135_3 (total_points VARCHAR, average VARCHAR)"}, {"answer": "SELECT average FROM table_17862135_3 WHERE couple = \"Cody & Julianne\"", "question": "What is average for Cody & Julianne?", "context": "CREATE TABLE table_17862135_3 (average VARCHAR, couple VARCHAR)"}, {"answer": "SELECT division_southwest FROM table_17881033_1 WHERE division_south = \"Ko\u017euf\" AND division_east = \"Osogovo\"", "question": "what is the division southwest when division south was ko\u017euf and division east was osogovo", "context": "CREATE TABLE table_17881033_1 (division_southwest VARCHAR, division_south VARCHAR, division_east VARCHAR)"}, {"answer": "SELECT division_north FROM table_17881033_1 WHERE season = \"2007\u201308\"", "question": "what is the division north in 2007\u201308", "context": "CREATE TABLE table_17881033_1 (division_north VARCHAR, season VARCHAR)"}, {"answer": "SELECT division_north FROM table_17881033_1 WHERE division_south = \"Ko\u017euf\" AND division_southwest = \"Ilinden Velmej\"", "question": "what is the division north when division south was ko\u017euf and division southwest was ilinden velmej", "context": "CREATE TABLE table_17881033_1 (division_north VARCHAR, division_south VARCHAR, division_southwest VARCHAR)"}, {"answer": "SELECT COUNT(division_southwest) FROM table_17881033_1 WHERE division_east = \"Babi\"", "question": "how many division southwest was there when  division east was babi", "context": "CREATE TABLE table_17881033_1 (division_southwest VARCHAR, division_east VARCHAR)"}, {"answer": "SELECT division_east FROM table_17881033_1 WHERE division_north = \"Milano\"", "question": "what is the division east when division north was milano", "context": "CREATE TABLE table_17881033_1 (division_east VARCHAR, division_north VARCHAR)"}, {"answer": "SELECT written_by FROM table_17901155_3 WHERE no_in_season = 3", "question": "who co-wrote Season 2, Episode 3?", "context": "CREATE TABLE table_17901155_3 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_17901155_3 WHERE directed_by = \"Kelly Sandefur\"", "question": "what is the series # for the episode directed by Kelly Sandefur?", "context": "CREATE TABLE table_17901155_3 (no_in_series INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(prod_code) FROM table_17901155_3 WHERE no_in_series = 32", "question": "how many production codes were there for the episode that was 32 in the series?", "context": "CREATE TABLE table_17901155_3 (prod_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_17919342_1 WHERE original_title = \"Milagros\"", "question": "What year was the film Milagros submitted?", "context": "CREATE TABLE table_17919342_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT COUNT(year__ceremony_) FROM table_17919342_1 WHERE film_title_used_in_nomination = \"The Blossoming of Maximo Oliveros\"", "question": "How many years was the film The Blossoming of Maximo Oliveros entered?", "context": "CREATE TABLE table_17919342_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_17919342_1 WHERE original_title = \"The Moises Padilla Story\"", "question": "How many directors were there for the film with the original title of The Moises Padilla Story?", "context": "CREATE TABLE table_17919342_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT spacecraft FROM table_179174_2 WHERE launch_complex = \"LC34\"", "question": "What spacecraft was launched from the LC34 launch complex? ", "context": "CREATE TABLE table_179174_2 (spacecraft VARCHAR, launch_complex VARCHAR)"}, {"answer": "SELECT spacecraft FROM table_179174_2 WHERE flights = \"22 Orbital\"", "question": "What spacecrafts had 22 orbital flights? ", "context": "CREATE TABLE table_179174_2 (spacecraft VARCHAR, flights VARCHAR)"}, {"answer": "SELECT launcher FROM table_179174_2 WHERE flights = \"37 Orbital\"", "question": "What launcher had spacecrafts that did 37 orbital flights? ", "context": "CREATE TABLE table_179174_2 (launcher VARCHAR, flights VARCHAR)"}, {"answer": "SELECT years FROM table_179174_2 WHERE flights = \"134 Orbital\"", "question": "What years had 134 orbital flights? ", "context": "CREATE TABLE table_179174_2 (years VARCHAR, flights VARCHAR)"}, {"answer": "SELECT status_at_production FROM table_1792122_11 WHERE project = \"London Aquatics Centre\"", "question": "What is the status of the London Aquatics Centre project at the time of production?", "context": "CREATE TABLE table_1792122_11 (status_at_production VARCHAR, project VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_1792122_11 WHERE no_in_series = 71", "question": "What was the original are date of series number 71?", "context": "CREATE TABLE table_1792122_11 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT length FROM table_17918238_1 WHERE maximum_diameter = \"450 mm\"", "question": "What is the length for a diameter totaling 450 mm?", "context": "CREATE TABLE table_17918238_1 (length VARCHAR, maximum_diameter VARCHAR)"}, {"answer": "SELECT maximum_diameter FROM table_17918238_1 WHERE owner_operator = \"Esperance Pipeline Co\"", "question": "What is Esperance pipeline co total diameter?", "context": "CREATE TABLE table_17918238_1 (maximum_diameter VARCHAR, owner_operator VARCHAR)"}, {"answer": "SELECT opponent FROM table_17924362_1 WHERE date = \"December 8\"", "question": "Name the opponent for december 8", "context": "CREATE TABLE table_17924362_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_17924362_1 WHERE date = \"October 26\"", "question": "Name the number of weeks for october 26", "context": "CREATE TABLE table_17924362_1 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_17928023_1 WHERE week = 6", "question": "What is the attendance record for week 6?", "context": "CREATE TABLE table_17928023_1 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_17928023_1 WHERE game_site = \"Schaefer Stadium\"", "question": "For game site Schaefer Stadium, what were the results?", "context": "CREATE TABLE table_17928023_1 (result VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT outgoing_manage FROM table_17933600_2 WHERE incoming_manager = \"Jo\u00e3o Pereira\"", "question": "Who was the outgoing manager when the incoming manager was jo\u00e3o pereira?", "context": "CREATE TABLE table_17933600_2 (outgoing_manage VARCHAR, incoming_manager VARCHAR)"}, {"answer": "SELECT team FROM table_17933600_2 WHERE outgoing_manage = \"Jo\u00e3o Alves\"", "question": "What team(s) had an outgoing manager of jo\u00e3o alves?", "context": "CREATE TABLE table_17933600_2 (team VARCHAR, outgoing_manage VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_17933600_2 WHERE outgoing_manage = \"Bogi\u0107evi\u0107\"", "question": "What day did the job open up when bogi\u0107evi\u0107 was outgoing?", "context": "CREATE TABLE table_17933600_2 (date_of_vacancy VARCHAR, outgoing_manage VARCHAR)"}, {"answer": "SELECT 0 AS _100km_h, s FROM table_17941111_2 WHERE name = \"2.0 8v\"", "question": "Name the 0-100 km/hs for name of 2.0 8v", "context": "CREATE TABLE table_17941111_2 (s VARCHAR, name VARCHAR)"}, {"answer": "SELECT volume FROM table_17941111_2 WHERE co_2 = \"168 g/km\"", "question": "Name the volume for co 2 for 168 g/km", "context": "CREATE TABLE table_17941111_2 (volume VARCHAR, co_2 VARCHAR)"}, {"answer": "SELECT tries_for FROM table_17941032_1 WHERE tries_against = \"60\"", "question": "When 60 is the tries against what is the tries for?", "context": "CREATE TABLE table_17941032_1 (tries_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT lost FROM table_17941032_1 WHERE tries_for = \"22\"", "question": "When 22 is the tries for what is the lost?", "context": "CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT club FROM table_17941032_1 WHERE points = \"98\"", "question": "When 98 is the points what is the club?", "context": "CREATE TABLE table_17941032_1 (club VARCHAR, points VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_17941032_1 WHERE tries_for = \"80\"", "question": "When 80 is the tries for what is the try bonus?", "context": "CREATE TABLE table_17941032_1 (try_bonus VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT lost FROM table_17941032_1 WHERE tries_for = \"55\"", "question": "When 55 is the tries for what is the lost?", "context": "CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT points_against FROM table_17941032_1 WHERE tries_for = \"17\"", "question": "When 17 is the tries for what is the points against?", "context": "CREATE TABLE table_17941032_1 (points_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT drawn FROM table_17941032_2 WHERE \"played\" = \"played\"", "question": "How many draws were there in played games?", "context": "CREATE TABLE table_17941032_2 (drawn VARCHAR)"}, {"answer": "SELECT club FROM table_17941032_2 WHERE drawn = \"1\" AND won = \"2\"", "question": "Which club had 2 wins and 1 draw?", "context": "CREATE TABLE table_17941032_2 (club VARCHAR, drawn VARCHAR, won VARCHAR)"}, {"answer": "SELECT played FROM table_17941032_2 WHERE tries_for = \"56\"", "question": "How many times were there plays with a try of 56?", "context": "CREATE TABLE table_17941032_2 (played VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT tries_against FROM table_17941032_2 WHERE points_for = \"150\"", "question": "How many tries against were there with points of 150?", "context": "CREATE TABLE table_17941032_2 (tries_against VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_17941032_2 WHERE points = \"53\"", "question": "What was the losing bonus that had 53 points?", "context": "CREATE TABLE table_17941032_2 (losing_bonus VARCHAR, points VARCHAR)"}, {"answer": "SELECT points_against FROM table_17941032_2 WHERE try_bonus = \"0\" AND points_for = \"150\"", "question": "List all points against with a 0 try bonus and points for of 150.", "context": "CREATE TABLE table_17941032_2 (points_against VARCHAR, try_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT tries_against FROM table_17941032_3 WHERE tries_for = \"30\"", "question": "Name the tries against when tries for is 30", "context": "CREATE TABLE table_17941032_3 (tries_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT points FROM table_17941032_3 WHERE tries_for = \"49\"", "question": "Name the points when tries for is 49", "context": "CREATE TABLE table_17941032_3 (points VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_17941032_3 WHERE lost = \"11\" AND losing_bonus = \"6\"", "question": "Name the try bonus for lost being 11 and losing bonus is 6", "context": "CREATE TABLE table_17941032_3 (try_bonus VARCHAR, lost VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_17968229_1 WHERE home__2nd_leg_ = \"River Plate\"", "question": "For home of River Plate, what is the first leg listed?", "context": "CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR)"}, {"answer": "SELECT home__2nd_leg_ FROM table_17968229_1 WHERE aggregate = \"0-2\"", "question": "With an aggregate of 0-2, what is listed for home?", "context": "CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_17968229_1 WHERE home__2nd_leg_ = \"Atl\u00e9tico Tucum\u00e1n\"", "question": "If the home is Atl\u00e9tico Tucum\u00e1n, what is the name of the first leg?", "context": "CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_17968229_1 WHERE home__2nd_leg_ = \"Newell's Old Boys\"", "question": "If second leg is Newell's Old Boys, what name is first leg?", "context": "CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR)"}, {"answer": "SELECT chinese_name FROM table_17964087_2 WHERE romanised_name = \"Chan Chi-yuen, Paul\"", "question": "What is the chinese name for whom chan chi-yuen, paul is listed as the romanised name?", "context": "CREATE TABLE table_17964087_2 (chinese_name VARCHAR, romanised_name VARCHAR)"}, {"answer": "SELECT foreign_nationality FROM table_17964087_2 WHERE romanised_name = \"Cheung, Raymond Man-to\"", "question": "The name cheung, raymond man-to is listed as a romanised name is cheung, raymond man-to?", "context": "CREATE TABLE table_17964087_2 (foreign_nationality VARCHAR, romanised_name VARCHAR)"}, {"answer": "SELECT COUNT(govt_salary) FROM table_17964087_2 WHERE chinese_name = \"\u76e7\u5955\u57fa\"", "question": "For the chinese name  \u76e7\u5955\u57fa how many in total is the govt salary?", "context": "CREATE TABLE table_17964087_2 (govt_salary VARCHAR, chinese_name VARCHAR)"}, {"answer": "SELECT COUNT(foreign_nationality) FROM table_17964087_2 WHERE romanised_name = \"Lo Yik-kee, Victor\"", "question": "For the name romanised name is lo yik-kee, victor what is the total number foreign nationality that is listed?", "context": "CREATE TABLE table_17964087_2 (foreign_nationality VARCHAR, romanised_name VARCHAR)"}, {"answer": "SELECT romanised_name FROM table_17964087_2 WHERE prior_occupation = \"Assistant Police Commissioner (ret'd)\"", "question": "For the prior occupation listed as assistant police commissioner (ret'd) what are the entire list of romanised name. ", "context": "CREATE TABLE table_17964087_2 (romanised_name VARCHAR, prior_occupation VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_17968282_1 WHERE points = 105", "question": "Name the most played when points is 105", "context": "CREATE TABLE table_17968282_1 (played INTEGER, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_17968282_1 WHERE team = \"Newell's Old Boys\"", "question": "Name the total number of points for newell's old boys", "context": "CREATE TABLE table_17968282_1 (points VARCHAR, team VARCHAR)"}, {"answer": "SELECT home__1st_leg_ FROM table_17968233_2 WHERE aggregate = \"3-4\"", "question": "If the aggregate is 3-4, what is the first leg?", "context": "CREATE TABLE table_17968233_2 (home__1st_leg_ VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT COUNT(aggregate) FROM table_17968233_2 WHERE home__2nd_leg_ = \"Instituto\"", "question": "If the second leg is Instituto, what is the total number of aggregate?", "context": "CREATE TABLE table_17968233_2 (aggregate VARCHAR, home__2nd_leg_ VARCHAR)"}, {"answer": "SELECT 1989 AS _90 FROM table_17968274_2 WHERE team = \"V\u00e9lez S\u00e1rsfield\"", "question": "How many games were played by the V\u00e9lez S\u00e1rsfield team from 1989-90?", "context": "CREATE TABLE table_17968274_2 (team VARCHAR)"}, {"answer": "SELECT team FROM table_17968274_2 WHERE points = 122", "question": "What was the team that scored 122 points?", "context": "CREATE TABLE table_17968274_2 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT opponent FROM table_17972136_1 WHERE date = \"October 4\"", "question": "What is the opponent played on October 4?", "context": "CREATE TABLE table_17972136_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_17972136_1 WHERE game_site = \"Riverfront Stadium\"", "question": "Where is riverfront stadium the game site for the week?", "context": "CREATE TABLE table_17972136_1 (week INTEGER, game_site VARCHAR)"}, {"answer": "SELECT MIN(_number_s_lake_and_gnis_query_link) FROM table_17978052_2 WHERE borough_or_census_area = \"Valdez-Cordova (CA)\"", "question": "How many number of lakes are there in the Valdez-Cordova (CA) area?", "context": "CREATE TABLE table_17978052_2 (_number_s_lake_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR)"}, {"answer": "SELECT comment FROM table_17978052_2 WHERE borough_or_census_area = \"Denali\"", "question": "What was the comment on the Denali area?", "context": "CREATE TABLE table_17978052_2 (comment VARCHAR, borough_or_census_area VARCHAR)"}, {"answer": "SELECT MAX(_number_s_dam_and_gnis_query_link) FROM table_17978052_2 WHERE borough_or_census_area = \"Lake and Peninsula\"", "question": "How many dams are there in the Lake and Peninsula area?", "context": "CREATE TABLE table_17978052_2 (_number_s_dam_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR)"}, {"answer": "SELECT MIN(_number_s_dam_and_gnis_query_link) FROM table_17978052_2 WHERE borough_or_census_area = \"Nome (CA)\"", "question": "How many dams are there in the Nome (CA) area?", "context": "CREATE TABLE table_17978052_2 (_number_s_dam_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR)"}, {"answer": "SELECT COUNT(comment) FROM table_17978052_2 WHERE borough_or_census_area = \"Bethel (CA)\"", "question": "How many comments are there in the Bethel (CA) Borough area?", "context": "CREATE TABLE table_17978052_2 (comment VARCHAR, borough_or_census_area VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_17972193_1 WHERE date = \"October 27\"", "question": "How many total numbers of attendance are there during the game in October 27?", "context": "CREATE TABLE table_17972193_1 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_17972193_1 WHERE opponent = \"at Los Angeles Raiders\"", "question": "What was the game record when the opponent was 'at Los Angeles Raiders'?", "context": "CREATE TABLE table_17972193_1 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_17972193_1 WHERE opponent = \"at Los Angeles Rams\"", "question": "When was the game played when the opponent was 'at Los Angeles Rams'?", "context": "CREATE TABLE table_17972193_1 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_17972193_1 WHERE game_site = \"Anaheim Stadium\"", "question": "How many total number of attendance were there when the game was held in Anaheim Stadium?", "context": "CREATE TABLE table_17972193_1 (attendance VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_17972193_1 WHERE game_site = \"Arrowhead Stadium\"", "question": "How many were in attendance when the game was held in Arrowhead Stadium?", "context": "CREATE TABLE table_17972193_1 (attendance INTEGER, game_site VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_18018214_1 WHERE draws = 7", "question": "What is the highest position a team with 7 draws earned?", "context": "CREATE TABLE table_18018214_1 (position INTEGER, draws VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_18012738_1 WHERE ai___percentage_ = 83", "question": "Name the original air date for ai% for 83", "context": "CREATE TABLE table_18012738_1 (original_air_date VARCHAR, ai___percentage_ VARCHAR)"}, {"answer": "SELECT story_no FROM table_18012738_1 WHERE written_by = \"Paul Cornell\"", "question": "Name the story number for paul cornell", "context": "CREATE TABLE table_18012738_1 (story_no VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_18012738_1 WHERE uk_viewers__million_ = \"6.86\"", "question": "Name the total number directed by for uk viewers being 6.86", "context": "CREATE TABLE table_18012738_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR)"}, {"answer": "SELECT MIN(ai___percentage_) FROM table_18012738_1", "question": "Name the least ai %", "context": "CREATE TABLE table_18012738_1 (ai___percentage_ INTEGER)"}, {"answer": "SELECT MAX(games_played) FROM table_18018214_4", "question": "What is the highest number of games played?", "context": "CREATE TABLE table_18018214_4 (games_played INTEGER)"}, {"answer": "SELECT COUNT(goals_conceded) FROM table_18018214_4 WHERE points = 31", "question": "In the game with 31 points, how many goals were conceded?", "context": "CREATE TABLE table_18018214_4 (goals_conceded VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(games_played) FROM table_18018214_4 WHERE points = 22", "question": "How many games had 22 points?", "context": "CREATE TABLE table_18018214_4 (games_played VARCHAR, points VARCHAR)"}, {"answer": "SELECT wins FROM table_18018248_2 WHERE goals_scored = 58", "question": "How many wins had 58 goals scored?", "context": "CREATE TABLE table_18018248_2 (wins VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT COUNT(club) FROM table_18018248_2 WHERE points = 29", "question": "How many clubs had 29 points?", "context": "CREATE TABLE table_18018248_2 (club VARCHAR, points VARCHAR)"}, {"answer": "SELECT club FROM table_18018248_2 WHERE draws = 9", "question": "Which clubs had draws of 9?", "context": "CREATE TABLE table_18018248_2 (club VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_18018248_2 WHERE goals_conceded = 45", "question": "How many draws were there when the conceded goals was numbered at 45?", "context": "CREATE TABLE table_18018248_2 (draws VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT MIN(games_played) FROM table_18018248_2 WHERE loses = 21", "question": "What is the least amount of games played with 21 losses?", "context": "CREATE TABLE table_18018248_2 (games_played INTEGER, loses VARCHAR)"}, {"answer": "SELECT MIN(games_played) FROM table_18018214_3", "question": "How many games did each team played?", "context": "CREATE TABLE table_18018214_3 (games_played INTEGER)"}, {"answer": "SELECT MAX(points) FROM table_18018214_3 WHERE goals_scored = 47", "question": "HOw many points where there when the number of goals scored was 47?", "context": "CREATE TABLE table_18018214_3 (points INTEGER, goals_scored VARCHAR)"}, {"answer": "SELECT goals_scored FROM table_18018214_3 WHERE club = \"FM (LOSC) Vilnius\"", "question": "How many goals were scored by club team fm (losc) vilnius", "context": "CREATE TABLE table_18018214_3 (goals_scored VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(loses) FROM table_18018214_3 WHERE club = \"Ekranas-2 Panev\u0117\u017eys\"", "question": "How many losses occurred when the club team was ekranas-2 panev\u0117\u017eys", "context": "CREATE TABLE table_18018214_3 (loses INTEGER, club VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_18018214_3", "question": "What was the highest number of wins for any team?", "context": "CREATE TABLE table_18018214_3 (wins INTEGER)"}, {"answer": "SELECT ncaat_record FROM table_18025024_7 WHERE date = \"June 22\"", "question": "What is the June 22 ncaat baseball record for Fresno State Bulldogs?", "context": "CREATE TABLE table_18025024_7 (ncaat_record VARCHAR, date VARCHAR)"}, {"answer": "SELECT save FROM table_18025024_7 WHERE score = \"7-6\"", "question": "How many saves were in the Georgia game, versus the Bulldogs, with a score of 7-6?", "context": "CREATE TABLE table_18025024_7 (save VARCHAR, score VARCHAR)"}, {"answer": "SELECT ncaat_record FROM table_18025024_7 WHERE date = \"June 21\"", "question": "What is the June 21 ncaat baseball record for Fresno State Bulldogs?", "context": "CREATE TABLE table_18025024_7 (ncaat_record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(2008 AS _suruga_bank_championship) FROM table_18027411_1 WHERE team___competition = \"Estudiantes de La Plata\"", "question": "how many times did estudiantes de la plata participate in 2008 suruga bank championship", "context": "CREATE TABLE table_18027411_1 (team___competition VARCHAR)"}, {"answer": "SELECT date FROM table_18042031_16 WHERE against = \"Morocco\"", "question": "What date was the match against Morocco played?", "context": "CREATE TABLE table_18042031_16 (date VARCHAR, against VARCHAR)"}, {"answer": "SELECT against FROM table_18042031_16 WHERE date = \"21\u201323 September 2007\"", "question": "What country did Gil play against on 21\u201323 september 2007?", "context": "CREATE TABLE table_18042031_16 (against VARCHAR, date VARCHAR)"}, {"answer": "SELECT partnering FROM table_18042031_16 WHERE date = \"10\u201312 July 2009\"", "question": "Who was Gil's partner on 10\u201312 july 2009", "context": "CREATE TABLE table_18042031_16 (partnering VARCHAR, date VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_1802760_3 WHERE date_of_successors_formal_installation = \"December 3, 1858\"", "question": "Where was the successor formally installed on December 3, 1858?", "context": "CREATE TABLE table_1802760_3 (state__class_ VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_1802760_3 WHERE date_of_successors_formal_installation = \"February 14, 1859\"", "question": "Why did the change happen in the state where the formal installation happen on February 14, 1859?", "context": "CREATE TABLE table_1802760_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT vacator FROM table_1802522_4 WHERE district = \"Tennessee 1st\"", "question": "Name the vacator for tennessee 1st", "context": "CREATE TABLE table_1802522_4 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT iata_code FROM table_18047346_4 WHERE passengers = \"15,505,566\"", "question": "If the passengers are 15,505,566, what is the iata code?", "context": "CREATE TABLE table_18047346_4 (iata_code VARCHAR, passengers VARCHAR)"}, {"answer": "SELECT airport_name FROM table_18047346_4 WHERE location = \"Chicago, Illinois\"", "question": "If the location is Chicago, Illinois, what is the airport name?", "context": "CREATE TABLE table_18047346_4 (airport_name VARCHAR, location VARCHAR)"}, {"answer": "SELECT _percentage_chg_2009_10 FROM table_18047346_4 WHERE passengers = \"15,505,566\"", "question": "If the amount of passengers is 15,505,566, what is the %/chg. for 2009/10?", "context": "CREATE TABLE table_18047346_4 (_percentage_chg_2009_10 VARCHAR, passengers VARCHAR)"}, {"answer": "SELECT alma_mater FROM table_18042409_1 WHERE player = \"Steve Hoar\"", "question": "What university did Steve Hoar attend. ", "context": "CREATE TABLE table_18042409_1 (alma_mater VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_18042409_1 WHERE alma_mater = \"Wilfrid Laurier University\"", "question": "List the plats that attended Wilfrid Laurier University. ", "context": "CREATE TABLE table_18042409_1 (player VARCHAR, alma_mater VARCHAR)"}, {"answer": "SELECT international_competition FROM table_18042409_1 WHERE national_lacrosse_league = \"Toronto Rock\"", "question": "List all the international lacrosse league competitions for Toronto Rock.", "context": "CREATE TABLE table_18042409_1 (international_competition VARCHAR, national_lacrosse_league VARCHAR)"}, {"answer": "SELECT player FROM table_18042409_1 WHERE national_lacrosse_league = \"Toronto Rock\"", "question": "List all of the NLL Toronto Rock players. ", "context": "CREATE TABLE table_18042409_1 (player VARCHAR, national_lacrosse_league VARCHAR)"}, {"answer": "SELECT rank FROM table_18047346_5 WHERE iata_code = \"JFK\"", "question": "What rank is the airport whose IATA Code is JFK?", "context": "CREATE TABLE table_18047346_5 (rank VARCHAR, iata_code VARCHAR)"}, {"answer": "SELECT airport_name FROM table_18047346_5 WHERE iata_code = \"ORD\"", "question": "Which airport has an IATA Code of ORD?", "context": "CREATE TABLE table_18047346_5 (airport_name VARCHAR, iata_code VARCHAR)"}, {"answer": "SELECT tonnes FROM table_18047346_5 WHERE airport_name = \"Louisville International Airport\"", "question": "Louisville International Airport had how many tonnes of cargo in 2011?", "context": "CREATE TABLE table_18047346_5 (tonnes VARCHAR, airport_name VARCHAR)"}, {"answer": "SELECT tonnes FROM table_18047346_5 WHERE iata_code = \"IND\"", "question": "How many tonnes of cargo did the airport have with the IATA Code IND?", "context": "CREATE TABLE table_18047346_5 (tonnes VARCHAR, iata_code VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1805191_10 WHERE party = \"Democratic\" AND district = \"Florida 11\"", "question": "Who is the incumbent democratic party in district florida 11?", "context": "CREATE TABLE table_1805191_10 (incumbent VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_1805191_10 WHERE first_elected = 2000", "question": "In which district is the first elected 2000?", "context": "CREATE TABLE table_1805191_10 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_1805191_10 WHERE district = \"Florida 19\"", "question": "When is the first elected in the Florida 19 district?", "context": "CREATE TABLE table_1805191_10 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(results) FROM table_1805191_10 WHERE incumbent = \"Dave Weldon\"", "question": "What are the results of incumbent dave weldon?", "context": "CREATE TABLE table_1805191_10 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1805191_33 WHERE incumbent = \"Charles Rangel\"", "question": "How many districts have the incumbent, Charles Rangel? ", "context": "CREATE TABLE table_1805191_33 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1805191_33 WHERE district = \"New York 26\"", "question": "What is the party affiliation of New York 26? ", "context": "CREATE TABLE table_1805191_33 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1805191_39 WHERE district = \"Pennsylvania 1\"", "question": "In the district of Pennsylvania 1, what is the total number of political parties?", "context": "CREATE TABLE table_1805191_39 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_1805191_39 WHERE incumbent = \"Tim Holden\"", "question": "What year was Tim Holden first elected?", "context": "CREATE TABLE table_1805191_39 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_1805191_39 WHERE first_elected = 1994", "question": "How many parties were first elected in 1994?", "context": "CREATE TABLE table_1805191_39 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(results) FROM table_1805191_39 WHERE district = \"Pennsylvania 11\"", "question": "In district Pennsylvania 11, what was the total numbers of results?", "context": "CREATE TABLE table_1805191_39 (results VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1805191_2 WHERE incumbent = \"Spencer Bachus\"", "question": "During what year was Representative Spencer Bachus first elected?", "context": "CREATE TABLE table_1805191_2 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1805191_2 WHERE incumbent = \"Robert Cramer\"", "question": "What is the party affiliation of the incumbent Robert Cramer?", "context": "CREATE TABLE table_1805191_2 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_1805191_48 WHERE district = \"Washington 1\"", "question": "Who is the incumbent in the Washington 1 district? ", "context": "CREATE TABLE table_1805191_48 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1805191_48 WHERE district = \"Washington 4\"", "question": "How many categories of first elected are in Washington 4 district? ", "context": "CREATE TABLE table_1805191_48 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT results FROM table_1805191_48 WHERE first_elected = 2000", "question": "What was the result in the election where the date of first elected was 2000? ", "context": "CREATE TABLE table_1805191_48 (results VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT title FROM table_18054886_1 WHERE viewers__millions_ = \"3.7\" AND directed_by = \"David Kendall\"", "question": "Which title, directed by David Kendall, had 3.7 million viewers?", "context": "CREATE TABLE table_18054886_1 (title VARCHAR, viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_1805191_6 WHERE incumbent = \"Diane Watson\"", "question": "How many people were first elected with an incument of diane watson?", "context": "CREATE TABLE table_1805191_6 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_1805191_6 WHERE incumbent = \"Hilda Solis\"", "question": "What party did hilda solis represent?", "context": "CREATE TABLE table_1805191_6 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_1805191_6 WHERE incumbent = \"Grace Napolitano\"", "question": "What were the result(s) of the election featuring grace napolitano as the incumbent?", "context": "CREATE TABLE table_1805191_6 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(standard_order) FROM table_1805919_1 WHERE transcription__based_on_pinyin_ = \"She Jiang\"", "question": "Which place in the order is the Pinyin transcription She Jiang?", "context": "CREATE TABLE table_1805919_1 (standard_order INTEGER, transcription__based_on_pinyin_ VARCHAR)"}, {"answer": "SELECT MAX(standard_order) FROM table_1805919_1 WHERE english_translation = \"A Lament for Ying\"", "question": "What is the place of \"A Lament for Ying\"?", "context": "CREATE TABLE table_1805919_1 (standard_order INTEGER, english_translation VARCHAR)"}, {"answer": "SELECT COUNT(traditional_chinese) FROM table_1805919_1 WHERE english_translation = \"Crossing the River\"", "question": "How many traditional Chinese for the translation of \"Crossing the River\"?", "context": "CREATE TABLE table_1805919_1 (traditional_chinese VARCHAR, english_translation VARCHAR)"}, {"answer": "SELECT MAX(standard_order) FROM table_1805919_1 WHERE transcription__based_on_pinyin_ = \"Xi Wangri\"", "question": "What is the place of the Pinyin transcription Xi Wangri?", "context": "CREATE TABLE table_1805919_1 (standard_order INTEGER, transcription__based_on_pinyin_ VARCHAR)"}, {"answer": "SELECT english_translation FROM table_1805919_1 WHERE traditional_chinese = \"\u54c0\u90e2\"", "question": "What is the English translation of \u54c0\u90e2?", "context": "CREATE TABLE table_1805919_1 (english_translation VARCHAR, traditional_chinese VARCHAR)"}, {"answer": "SELECT transcription__based_on_pinyin_ FROM table_1805919_1 WHERE english_translation = \"Alas for the Days Gone By\"", "question": "What is the Pinyin transcription for \"Alas for the Days Gone By\"?", "context": "CREATE TABLE table_1805919_1 (transcription__based_on_pinyin_ VARCHAR, english_translation VARCHAR)"}, {"answer": "SELECT english_name FROM table_180802_2 WHERE abbr = \"\u0e1e.\u0e22.\"", "question": "What's the English name for the month with \u0e1e.\u0e22. abbreviation? ", "context": "CREATE TABLE table_180802_2 (english_name VARCHAR, abbr VARCHAR)"}, {"answer": "SELECT zodiac_sign FROM table_180802_2 WHERE abbr = \"\u0e21\u0e35.\u0e04.\"", "question": "What's the zodiac sing for the month abbreviated as \u0e21\u0e35.\u0e04.?", "context": "CREATE TABLE table_180802_2 (zodiac_sign VARCHAR, abbr VARCHAR)"}, {"answer": "SELECT transcription FROM table_180802_2 WHERE thai_name = \"\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21\"", "question": "What's the transcription of the thai name of the month \u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21?", "context": "CREATE TABLE table_180802_2 (transcription VARCHAR, thai_name VARCHAR)"}, {"answer": "SELECT COUNT(zodiac_sign) FROM table_180802_2 WHERE thai_name = \"\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19\"", "question": "How many zodiac signs does the month by the Thai name of \u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19 belong to?", "context": "CREATE TABLE table_180802_2 (zodiac_sign VARCHAR, thai_name VARCHAR)"}, {"answer": "SELECT english_name FROM table_180802_2 WHERE abbr = \"\u0e21\u0e34.\u0e22.\"", "question": "What's the English name of the month abbreviated as \u0e21\u0e34.\u0e22.?", "context": "CREATE TABLE table_180802_2 (english_name VARCHAR, abbr VARCHAR)"}, {"answer": "SELECT abbr FROM table_180802_2 WHERE zodiac_sign = \"Scorpio\"", "question": "What's the abbreviation of the month in the zodiac sign scorpio?", "context": "CREATE TABLE table_180802_2 (abbr VARCHAR, zodiac_sign VARCHAR)"}, {"answer": "SELECT year_[e_] AS __ceremony_ FROM table_18069789_1 WHERE original_title = \"\u10d2\u10d0\u10e6\u10db\u10d0 \u10dc\u10d0\u10de\u10d8\u10e0\u10d8\"", "question": "which year was the original title \u10d2\u10d0\u10e6\u10db\u10d0 \u10dc\u10d0\u10de\u10d8\u10e0\u10d8", "context": "CREATE TABLE table_18069789_1 (year_ VARCHAR, e_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT COUNT(year_)[e_] AS __ceremony_ FROM table_18069789_1 WHERE film_title_used_in_nomination = \"27 Missing Kisses\"", "question": "how many times was 27 missing kisses used in nomination", "context": "CREATE TABLE table_18069789_1 (e_ VARCHAR, film_title_used_in_nomination VARCHAR, year_ VARCHAR)"}, {"answer": "SELECT year_[e_] AS __ceremony_ FROM table_18069789_1 WHERE director = \"Otar Iosseliani\"", "question": "when was otar iosseliani's film selected", "context": "CREATE TABLE table_18069789_1 (year_ VARCHAR, e_ VARCHAR, director VARCHAR)"}, {"answer": "SELECT thai_name FROM table_180802_3 WHERE transcription = \"wan chan\"", "question": "What is the thai name of the transcription wan chan?", "context": "CREATE TABLE table_180802_3 (thai_name VARCHAR, transcription VARCHAR)"}, {"answer": "SELECT sanskrit_word FROM table_180802_3 WHERE color = \"red\"", "question": "What is the sanskrit word for the color red?", "context": "CREATE TABLE table_180802_3 (sanskrit_word VARCHAR, color VARCHAR)"}, {"answer": "SELECT transcription FROM table_180802_3 WHERE sanskrit_word = \"Chandra\"", "question": "What is the transcription of the sanskrit word chandra?", "context": "CREATE TABLE table_180802_3 (transcription VARCHAR, sanskrit_word VARCHAR)"}, {"answer": "SELECT sanskrit_word FROM table_180802_3 WHERE transcription = \"wan athit\"", "question": "What is the sanskrit word if the transcription is wan athit?", "context": "CREATE TABLE table_180802_3 (sanskrit_word VARCHAR, transcription VARCHAR)"}, {"answer": "SELECT color FROM table_180802_3 WHERE planet = \"Venus\"", "question": "What is the color of the planet venus?", "context": "CREATE TABLE table_180802_3 (color VARCHAR, planet VARCHAR)"}, {"answer": "SELECT planet FROM table_180802_3 WHERE transcription = \"wan suk\"", "question": "Which planet has the transcription of wan suk?", "context": "CREATE TABLE table_180802_3 (planet VARCHAR, transcription VARCHAR)"}, {"answer": "SELECT year_to_april FROM table_18077713_1 WHERE revenue__us_$million_ = \"434.8\"", "question": "What is the year to april when the revenue is 434.8 million dollars?", "context": "CREATE TABLE table_18077713_1 (year_to_april VARCHAR, revenue__us_$million_ VARCHAR)"}, {"answer": "SELECT ebit__us_$m_ FROM table_18077713_1 WHERE net_profit__us_$m_ = \"120.6\"", "question": "What is the dollar amount of ebit when the net profit is 120.6?", "context": "CREATE TABLE table_18077713_1 (ebit__us_$m_ VARCHAR, net_profit__us_$m_ VARCHAR)"}, {"answer": "SELECT revenue__us_$million_ FROM table_18077713_1 WHERE net_profit__us_$m_ = \"55.4\"", "question": "How many dollars is the revenue when the net profit is 55.4 million dollars?", "context": "CREATE TABLE table_18077713_1 (revenue__us_$million_ VARCHAR, net_profit__us_$m_ VARCHAR)"}, {"answer": "SELECT COUNT(year_to_april) FROM table_18077713_1 WHERE earnings_per_share__\u00a2_ = \"22.0\"", "question": "When the earning per share is listed as 22.0 what is the year to april?", "context": "CREATE TABLE table_18077713_1 (year_to_april VARCHAR, earnings_per_share__\u00a2_ VARCHAR)"}, {"answer": "SELECT earnings_per_share__\u00a2_ FROM table_18077713_1 WHERE net_profit__us_$m_ = \"16.2\"", "question": "What is the earnings per share when the net profit is 16.2 million dollars?", "context": "CREATE TABLE table_18077713_1 (earnings_per_share__\u00a2_ VARCHAR, net_profit__us_$m_ VARCHAR)"}, {"answer": "SELECT net_profit__us_$m_ FROM table_18077713_1 WHERE revenue__us_$million_ = \"150.6\"", "question": "How much is the net profit when the revenue is 150.6 million dollars?", "context": "CREATE TABLE table_18077713_1 (net_profit__us_$m_ VARCHAR, revenue__us_$million_ VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_18123274_1 WHERE result = \"Not Nominated\" AND director = \"Alberto Aruelo\"", "question": "Name the year for not nominated for alberto aruelo", "context": "CREATE TABLE table_18123274_1 (year__ceremony_ VARCHAR, result VARCHAR, director VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_18123274_1 WHERE original_title = \"Oro Diablo\"", "question": "Name the total number of director for oro diablo", "context": "CREATE TABLE table_18123274_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_18123274_1 WHERE film_title_used_in_nomination = \"Maroa\"", "question": "Name the number of result for maroa", "context": "CREATE TABLE table_18123274_1 (result VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_18123274_1 WHERE original_title = \"Huelepega: Ley de la Calle\"", "question": "Name the number of director for  huelepega: ley de la calle", "context": "CREATE TABLE table_18123274_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT all_neutral FROM table_18135572_2 WHERE b10__percentage = \".833\"", "question": "What was the win/loss record for All Neutral games for the team whose Big 10 winning percentage was .833?", "context": "CREATE TABLE table_18135572_2 (all_neutral VARCHAR, b10__percentage VARCHAR)"}, {"answer": "SELECT category FROM table_18138132_2 WHERE version = \"1.0\" AND title = \"Chord Finder\"", "question": "What is the category when the version is 1.0 and the title is Chord finder? ", "context": "CREATE TABLE table_18138132_2 (category VARCHAR, version VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_18138132_2 WHERE title = \"Metronome\"", "question": "What was the release date for metronome? ", "context": "CREATE TABLE table_18138132_2 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT developer FROM table_18138132_2 WHERE title = \"Windows Live Messenger\"", "question": "Who is the developer for Windows live messenger? ", "context": "CREATE TABLE table_18138132_2 (developer VARCHAR, title VARCHAR)"}, {"answer": "SELECT function FROM table_18138132_2 WHERE version = \"1.4\" AND title = \"Windows Live Messenger\"", "question": "What is the function of 1.4 version of Windows live messenger? ", "context": "CREATE TABLE table_18138132_2 (function VARCHAR, version VARCHAR, title VARCHAR)"}, {"answer": "SELECT function FROM table_18138132_2 WHERE release_date = \"2011-06-23\"", "question": "What functions were released on 2011-06-23? ", "context": "CREATE TABLE table_18138132_2 (function VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT cospar_id FROM table_18161217_2 WHERE estimated_operational_life = \"2 months\" AND satellite = \"Kosmos 2397\"", "question": "What is the cospar ID of the Kosmos 2397 satellite, which has an operational life of 2 months?", "context": "CREATE TABLE table_18161217_2 (cospar_id VARCHAR, estimated_operational_life VARCHAR, satellite VARCHAR)"}, {"answer": "SELECT launch_date FROM table_18161217_2 WHERE cospar_id = \"2008-033A\"", "question": "What was the launch date the satellite with cospar ID is 2008-033A?", "context": "CREATE TABLE table_18161217_2 (launch_date VARCHAR, cospar_id VARCHAR)"}, {"answer": "SELECT cospar_id FROM table_18161217_2 WHERE satellite = \"Kosmos 2379\"", "question": "What it the international designation for the kosmos 2379 satellite?", "context": "CREATE TABLE table_18161217_2 (cospar_id VARCHAR, satellite VARCHAR)"}, {"answer": "SELECT estimated_end_date[_clarification_needed_] FROM table_18161217_2 WHERE cospar_id = \"2001-037A\"", "question": "What is the estimated end date for the 2001-037a international designated satellite?", "context": "CREATE TABLE table_18161217_2 (estimated_end_date VARCHAR, _clarification_needed_ VARCHAR, cospar_id VARCHAR)"}, {"answer": "SELECT city FROM table_18159601_1 WHERE charter_date = \"December 4, 2011\"", "question": "in which city was charter date december 4, 2011", "context": "CREATE TABLE table_18159601_1 (city VARCHAR, charter_date VARCHAR)"}, {"answer": "SELECT COUNT(greek_designation) FROM table_18159601_1 WHERE city = \"Tampa\"", "question": "how mnay greek designation  in tampa", "context": "CREATE TABLE table_18159601_1 (greek_designation VARCHAR, city VARCHAR)"}, {"answer": "SELECT status FROM table_18159601_1 WHERE city = \"Vestal\"", "question": "what is the status in vestal", "context": "CREATE TABLE table_18159601_1 (status VARCHAR, city VARCHAR)"}, {"answer": "SELECT collegiate_institution FROM table_18159601_1 WHERE city = \"Queens\"", "question": "what is the collegiate institution in queens", "context": "CREATE TABLE table_18159601_1 (collegiate_institution VARCHAR, city VARCHAR)"}, {"answer": "SELECT original_title FROM table_18162883_1 WHERE film_title_used_in_nomination = \"Run for Money\"", "question": "What was the original title of Run for Money?", "context": "CREATE TABLE table_18162883_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT tuesday FROM table_18173916_6 WHERE thursday = \"196 Buried\"", "question": "What was the Tuesday episode if theThursday episode was 196 Buried?", "context": "CREATE TABLE table_18173916_6 (tuesday VARCHAR, thursday VARCHAR)"}, {"answer": "SELECT COUNT(friday) FROM table_18173916_6 WHERE wednesday = \"210 Kirby's Epic Yarn\"", "question": "How many episodes were shown on Friday if 210 Kirby's Epic Yarn was shown on Wednesday?", "context": "CREATE TABLE table_18173916_6 (friday VARCHAR, wednesday VARCHAR)"}, {"answer": "SELECT COUNT(friday) FROM table_18173916_6 WHERE wednesday = \"190 Boardwalk Empire\"", "question": "How many episodes were shown on Friday if 190 Boardwalk Empire was shown on Wednesday?", "context": "CREATE TABLE table_18173916_6 (friday VARCHAR, wednesday VARCHAR)"}, {"answer": "SELECT episodes FROM table_18173916_6 WHERE tuesday = \"224 Assassin's Creed: Brotherhood Circus Training\"", "question": "What were the dates when 224 Assassin's Creed: Brotherhood Circus Training was shown on Tuesday?", "context": "CREATE TABLE table_18173916_6 (episodes VARCHAR, tuesday VARCHAR)"}, {"answer": "SELECT average_attendance_home FROM table_1816947_2 WHERE division___section = \"Superettan\" AND average_attendance_away = \"1.889\"", "question": "When the average away attendance is 1.889 in the Superettan, what's the average home attendance?", "context": "CREATE TABLE table_1816947_2 (average_attendance_home VARCHAR, division___section VARCHAR, average_attendance_away VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_1816947_2 WHERE average_attendance_league = \"2.572\"", "question": "In which season was the average league attendance 2.572?", "context": "CREATE TABLE table_1816947_2 (season INTEGER, average_attendance_league VARCHAR)"}, {"answer": "SELECT division___section FROM table_1816947_2 WHERE season = 2012", "question": "In which division did they compete in 2012?", "context": "CREATE TABLE table_1816947_2 (division___section VARCHAR, season VARCHAR)"}, {"answer": "SELECT highest_attendance_away FROM table_1816947_2 WHERE average_attendance_home = \"3.123\"", "question": "When the home attendance is 3.123, what's the highest away attendance?", "context": "CREATE TABLE table_1816947_2 (highest_attendance_away VARCHAR, average_attendance_home VARCHAR)"}, {"answer": "SELECT division___section FROM table_1816947_2 WHERE average_attendance_home = \"2.459\"", "question": "Which division has an average home attendance of 2.459?", "context": "CREATE TABLE table_1816947_2 (division___section VARCHAR, average_attendance_home VARCHAR)"}, {"answer": "SELECT COUNT(speed_rank) FROM table_181892_4 WHERE car_number = 92", "question": "How many years was he car number 92?", "context": "CREATE TABLE table_181892_4 (speed_rank VARCHAR, car_number VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_181892_4 WHERE chassis = \"Lotus-Ford 38/7\"", "question": "How many years was the chassis a lotus-ford 38/7?", "context": "CREATE TABLE table_181892_4 (year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT race_status FROM table_181892_4 WHERE chassis = \"Lotus-Ford 38/1\"", "question": "What was the race status(es) with the lotus-ford 38/1 chassis?", "context": "CREATE TABLE table_181892_4 (race_status VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT year FROM table_181892_4 WHERE race_status = \"Piston\"", "question": "What year(s) was the race status piston?", "context": "CREATE TABLE table_181892_4 (year VARCHAR, race_status VARCHAR)"}, {"answer": "SELECT MAX(laps_led) FROM table_181892_4 WHERE chassis = \"Lotus-Ford 34/3\"", "question": "What is the largest laps led with the lotus-ford 34/3 chassis?", "context": "CREATE TABLE table_181892_4 (laps_led INTEGER, chassis VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_1818254_1 WHERE city = \"Minneapolis\"", "question": "What was the population of Minneapolis in 2012?", "context": "CREATE TABLE table_1818254_1 (population INTEGER, city VARCHAR)"}, {"answer": "SELECT burglary FROM table_1818254_1 WHERE violent_crime = \"974.7\"", "question": "How many burglaries occurred in the city where the violent crime rate was 974.7?", "context": "CREATE TABLE table_1818254_1 (burglary VARCHAR, violent_crime VARCHAR)"}, {"answer": "SELECT violent_crime FROM table_1818254_1 WHERE robbery = \"201.4\"", "question": "What was the violent crime rate in the city where the robbery rate was 201.4?", "context": "CREATE TABLE table_1818254_1 (violent_crime VARCHAR, robbery VARCHAR)"}, {"answer": "SELECT COUNT(property_crime) FROM table_1818254_1 WHERE burglary = \"224.8\"", "question": "How many cities were there in 2012 where the rate of burglary was 224.8?", "context": "CREATE TABLE table_1818254_1 (property_crime VARCHAR, burglary VARCHAR)"}, {"answer": "SELECT value FROM table_1818471_1 WHERE mitchell = 676", "question": "What is every value when Mitchell is 676?", "context": "CREATE TABLE table_1818471_1 (value VARCHAR, mitchell VARCHAR)"}, {"answer": "SELECT COUNT(afinsa) FROM table_1818471_1 WHERE value = \"5P\"", "question": "How many different numbers for Afinsa when value is 5p?", "context": "CREATE TABLE table_1818471_1 (afinsa VARCHAR, value VARCHAR)"}, {"answer": "SELECT scott FROM table_1818471_1 WHERE date = \"(15.12)\"", "question": "What is every entry for Scott when the date is (15.12)?", "context": "CREATE TABLE table_1818471_1 (scott VARCHAR, date VARCHAR)"}, {"answer": "SELECT species FROM table_1818471_1 WHERE afinsa = 639", "question": "What is every species when Afinsa is 639?", "context": "CREATE TABLE table_1818471_1 (species VARCHAR, afinsa VARCHAR)"}, {"answer": "SELECT COUNT(order) FROM table_1818471_1 WHERE species = \"Pavo cristatus\"", "question": "How many orders when the species is Pavo Cristatus?", "context": "CREATE TABLE table_1818471_1 (order VARCHAR, species VARCHAR)"}, {"answer": "SELECT constellation FROM table_1820752_1 WHERE distance___ly__ = \"55.7\"", "question": "If the distance is 55.7, what is the name of the constellation?", "context": "CREATE TABLE table_1820752_1 (constellation VARCHAR, distance___ly__ VARCHAR)"}, {"answer": "SELECT COUNT(distance___ly__) FROM table_1820752_1 WHERE spectral_type = \"G1V\"", "question": "If the spectral type is g1v, what is the total distance amount?", "context": "CREATE TABLE table_1820752_1 (distance___ly__ VARCHAR, spectral_type VARCHAR)"}, {"answer": "SELECT COUNT(hd_designation) FROM table_1820752_1 WHERE arrival_date = \"February 2070\"", "question": "What is the hd designation for arrival date of February 2070?", "context": "CREATE TABLE table_1820752_1 (hd_designation VARCHAR, arrival_date VARCHAR)"}, {"answer": "SELECT spectral_type FROM table_1820752_1 WHERE constellation = \"Gemini\"", "question": "If the constellation is Gemini, what is the spectral type?", "context": "CREATE TABLE table_1820752_1 (spectral_type VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT COUNT(signal_power___kw__) FROM table_1820752_1 WHERE arrival_date = \"January 2059\"", "question": "If the arrival date is January 2059, what is the total amount of signal power?", "context": "CREATE TABLE table_1820752_1 (signal_power___kw__ VARCHAR, arrival_date VARCHAR)"}, {"answer": "SELECT constellation FROM table_1820752_1 WHERE spectral_type = \"G1V\"", "question": "If the spectral type is g1v, what is the constellation?", "context": "CREATE TABLE table_1820752_1 (constellation VARCHAR, spectral_type VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_18198579_2 WHERE tournament = \"Evian Masters\"", "question": "List the total numbers of Evian Masters tournaments. ", "context": "CREATE TABLE table_18198579_2 (no INTEGER, tournament VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_18217753_1 WHERE season__number = 9", "question": "What is the original air date of season 9?", "context": "CREATE TABLE table_18217753_1 (original_air_date VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT written_by FROM table_18217753_1 WHERE us_viewers__millions_ = \"27.11\"", "question": "Who were the writers when there were 27.11 million viewers?", "context": "CREATE TABLE table_18217753_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_18217753_1 WHERE us_viewers__millions_ = \"23.93\"", "question": "How many series had viewers totaling 23.93 million?", "context": "CREATE TABLE table_18217753_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_18217753_1 WHERE us_viewers__millions_ = \"26.06\"", "question": "How many original air dates totaled 26.06 million viewers?", "context": "CREATE TABLE table_18217753_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_18217741_1 WHERE us_viewers__millions_ = \"18.58\"", "question": "What is the title when 18.58 u.s. viewers  (millions) watched?", "context": "CREATE TABLE table_18217741_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(digital_terrestrial_channel) FROM table_182410_10 WHERE channel = \"channel 4\"", "question": "How many digital terrestrial channels are there for channel 4?", "context": "CREATE TABLE table_182410_10 (digital_terrestrial_channel VARCHAR, channel VARCHAR)"}, {"answer": "SELECT channel FROM table_182410_10 WHERE digital_terrestrial_channel = \"10\"", "question": "What is the channel that is on digital terrestrial channel 10?", "context": "CREATE TABLE table_182410_10 (channel VARCHAR, digital_terrestrial_channel VARCHAR)"}, {"answer": "SELECT digital_terrestrial_channel FROM table_182410_10 WHERE channel = \"ITV3\"", "question": "What is the digital terrestria channel number for itv3?", "context": "CREATE TABLE table_182410_10 (digital_terrestrial_channel VARCHAR, channel VARCHAR)"}, {"answer": "SELECT position FROM table_182410_10 WHERE digital_terrestrial_channel = \"5 44 (+1)\"", "question": "What is the position of digital channel 5 44 (+1)?", "context": "CREATE TABLE table_182410_10 (position VARCHAR, digital_terrestrial_channel VARCHAR)"}, {"answer": "SELECT delegate FROM table_1825751_14 WHERE pageant = \"Elite Model Look\" AND year > 1993.0", "question": "where pageant is elite model look and year is bigger than 1993.0, who is the delegate?", "context": "CREATE TABLE table_1825751_14 (delegate VARCHAR, pageant VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_1825751_14 WHERE pageant = \"Miss Globe International\" AND delegate = \"Karen Loren Medrano Agustin\"", "question": "How many years was the pageant miss globe international and delegate was karen loren medrano agustin?", "context": "CREATE TABLE table_1825751_14 (year VARCHAR, pageant VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT COUNT(pageant) FROM table_1825751_14 WHERE hometown = \"San Fernando, Pampanga\"", "question": "How many pageants were in san fernando, pampanga?", "context": "CREATE TABLE table_1825751_14 (pageant VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(pageant) FROM table_1825751_14 WHERE delegate = \"Margaret Ann Awitan Bayot\"", "question": "How many pageants were margaret ann awitan bayot the delegate of?", "context": "CREATE TABLE table_1825751_14 (pageant VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT other_awards FROM table_1825751_14 WHERE delegate = \"Milagros Gutierrez\"", "question": "How many awards did milagros gutierrez win?", "context": "CREATE TABLE table_1825751_14 (other_awards VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT hometown FROM table_1825751_14 WHERE pageant = \"Miss Global Teen\"", "question": "Where is the miss global teen?", "context": "CREATE TABLE table_1825751_14 (hometown VARCHAR, pageant VARCHAR)"}, {"answer": "SELECT substrate FROM table_182499_1 WHERE enzyme = \"ALA dehydratase\"", "question": "what is the subtrate for enzyme ala dehydratase", "context": "CREATE TABLE table_182499_1 (substrate VARCHAR, enzyme VARCHAR)"}, {"answer": "SELECT COUNT(porphyria) FROM table_182499_1 WHERE substrate = \"\u03b4-Aminolevulinic acid\"", "question": "how many porphyria have substrate \u03b4-aminolevulinic acid", "context": "CREATE TABLE table_182499_1 (porphyria VARCHAR, substrate VARCHAR)"}, {"answer": "SELECT location FROM table_182499_1 WHERE substrate = \"Coproporphyrinogen III\"", "question": "give the location of subtrate coproporphyrinogen iii", "context": "CREATE TABLE table_182499_1 (location VARCHAR, substrate VARCHAR)"}, {"answer": "SELECT written_by FROM table_18274425_1 WHERE production_code = \"3T7573\"", "question": "Who were the authors  of episode having production code 3t7573?", "context": "CREATE TABLE table_18274425_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_18274425_1 WHERE us_viewers__millions_ = \"2.65\"", "question": "How many episodes had a viewership of 2.65 million?", "context": "CREATE TABLE table_18274425_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_18274425_1 WHERE written_by = \"Mike Daniels\"", "question": "Who were the director/s of episodes written by Mike Daniels?", "context": "CREATE TABLE table_18274425_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(binibining_pilipinas_international) FROM table_1825751_4 WHERE miss_universe_philippines = \"Nina Ricci Alagao\"", "question": "How many winners of Binibining Pilipinas-International when Nina Ricci Alagao?", "context": "CREATE TABLE table_1825751_4 (binibining_pilipinas_international VARCHAR, miss_universe_philippines VARCHAR)"}, {"answer": "SELECT second_runner_up FROM table_1825751_4 WHERE binibining_pilipinas_world = \"Janina San Miguel\"", "question": "Who was second runner up when Janina San Miguel won Binibining Pilipinas-World?", "context": "CREATE TABLE table_1825751_4 (second_runner_up VARCHAR, binibining_pilipinas_world VARCHAR)"}, {"answer": "SELECT binibining_pilipinas_international FROM table_1825751_4 WHERE miss_universe_philippines = \"Gionna Cabrera\"", "question": "Who was the winner of binibining pilipinas-International wheh Gionna Cabrera won Miss Universe Philippines?", "context": "CREATE TABLE table_1825751_4 (binibining_pilipinas_international VARCHAR, miss_universe_philippines VARCHAR)"}, {"answer": "SELECT COUNT(binibining_pilipinas_international) FROM table_1825751_4 WHERE binibining_pilipinas_world = \"Maria Karla Bautista\"", "question": "How many winners of binibining pilipinas-International when Maria Karla Bautista won binibining pilipinas-world?", "context": "CREATE TABLE table_1825751_4 (binibining_pilipinas_international VARCHAR, binibining_pilipinas_world VARCHAR)"}, {"answer": "SELECT COUNT(second_runner_up) FROM table_1825751_4 WHERE binibining_pilipinas_world = \"Janina San Miguel\"", "question": "Who is the second runner up when Janina San Miguel won binibining pilipinas-world?", "context": "CREATE TABLE table_1825751_4 (second_runner_up VARCHAR, binibining_pilipinas_world VARCHAR)"}, {"answer": "SELECT COUNT(miss_universe_philippines) FROM table_1825751_4 WHERE binibining_pilipinas_international = \"Margaret Ann Bayot\"", "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 MIN(population_served) FROM table_18268930_1", "question": "What's the minimal number of population served?", "context": "CREATE TABLE table_18268930_1 (population_served INTEGER)"}, {"answer": "SELECT partner FROM table_18268930_1 WHERE location = \"Tamara, HON\"", "question": "Who's the partner at Tamara, Hon?", "context": "CREATE TABLE table_18268930_1 (partner VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(votes_khuzestan) FROM table_1827900_1 WHERE _percentage_of_votes_khuzestan = \"34.50\"", "question": "How many votes Khuzestan were there when the percentage was 34.50?", "context": "CREATE TABLE table_1827900_1 (votes_khuzestan INTEGER, _percentage_of_votes_khuzestan VARCHAR)"}, {"answer": "SELECT COUNT(votes_khuzestan) FROM table_1827900_1 WHERE _percentage_of_votes_khuzestan = \"34.50\"", "question": "How many figures for votes Khuzestan were there when the percentage was 34.50?", "context": "CREATE TABLE table_1827900_1 (votes_khuzestan VARCHAR, _percentage_of_votes_khuzestan VARCHAR)"}, {"answer": "SELECT _percentage_of_votes_nationally FROM table_1827900_1 WHERE candidates = \"Mahmoud Ahmadinejad\"", "question": "What was the percentage of national votes for Mahmoud Ahmadinejad?", "context": "CREATE TABLE table_1827900_1 (_percentage_of_votes_nationally VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT revenue__\u00a3million_ FROM table_18304259_1 WHERE earnings_per_share__p_ = \"8.9\"", "question": "Name the revenue for eps being 8.9", "context": "CREATE TABLE table_18304259_1 (revenue__\u00a3million_ VARCHAR, earnings_per_share__p_ VARCHAR)"}, {"answer": "SELECT COUNT(year_to_april) FROM table_18304259_1 WHERE ebit__\u00a3m_ = \"24.5\"", "question": "Name the total number of year to april for ebit being 24.5", "context": "CREATE TABLE table_18304259_1 (year_to_april VARCHAR, ebit__\u00a3m_ VARCHAR)"}, {"answer": "SELECT earnings_per_share__p_ FROM table_18304259_1 WHERE net_profit__\u00a3m_ = \"39.2\"", "question": "Name the eps for net profit being 39.2", "context": "CREATE TABLE table_18304259_1 (earnings_per_share__p_ VARCHAR, net_profit__\u00a3m_ VARCHAR)"}, {"answer": "SELECT ebit__\u00a3m_ FROM table_18304259_1 WHERE earnings_per_share__p_ = \"10.6\"", "question": "Name the ebit for eps being 10.6", "context": "CREATE TABLE table_18304259_1 (ebit__\u00a3m_ VARCHAR, earnings_per_share__p_ VARCHAR)"}, {"answer": "SELECT pop_density__km_2__ FROM table_1828368_1 WHERE area__km_2__ = \"28.3\"", "question": "What are the population densities of all communes with an are of 28.3 sq.km.?", "context": "CREATE TABLE table_1828368_1 (pop_density__km_2__ VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT commune FROM table_1828368_1 WHERE area__km_2__ = \"12.4\"", "question": "What commune has an area of 12.4 sq.km.?", "context": "CREATE TABLE table_1828368_1 (commune VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT city FROM table_18299148_1 WHERE resolution = \"Negotiated exile in Austria\"", "question": "Which city has a resolution that is negotiated exile in Austria?", "context": "CREATE TABLE table_18299148_1 (city VARCHAR, resolution VARCHAR)"}, {"answer": "SELECT COUNT(Missions) AS country FROM table_18299148_1 WHERE notability = \"President of Burundi\"", "question": "How many missions countries have notability with president of burundi?", "context": "CREATE TABLE table_18299148_1 (Missions VARCHAR, notability VARCHAR)"}, {"answer": "SELECT nickname_s_ FROM table_18304058_2 WHERE enrollment__2013_14_ = 436", "question": "What is the nickname of the team whose 2013/2014 enrollment is 436? ", "context": "CREATE TABLE table_18304058_2 (nickname_s_ VARCHAR, enrollment__2013_14_ VARCHAR)"}, {"answer": "SELECT team_name FROM table_18304058_2 WHERE sports = \"Football\" AND schools = \"Elverado Trico\"", "question": "What is the name of the team from the Elverado Trico school in football? ", "context": "CREATE TABLE table_18304058_2 (team_name VARCHAR, sports VARCHAR, schools VARCHAR)"}, {"answer": "SELECT years_of_kindergarten AS provided FROM table_1831309_1 WHERE canton = \"Ticino\"", "question": "How many years of kindergarten is provided in Ticino?", "context": "CREATE TABLE table_1831309_1 (years_of_kindergarten VARCHAR, canton VARCHAR)"}, {"answer": "SELECT MAX(length_of_mandatory_secondary_school) FROM table_1831309_1", "question": "What is the longest length of mandatory secondary school?", "context": "CREATE TABLE table_1831309_1 (length_of_mandatory_secondary_school INTEGER)"}, {"answer": "SELECT writer_s FROM table_18305523_2 WHERE cover_date = \"19 October 1985\"", "question": "Who wrote the story that is cover date 19 October 1985?", "context": "CREATE TABLE table_18305523_2 (writer_s VARCHAR, cover_date VARCHAR)"}, {"answer": "SELECT COUNT(cover_date) FROM table_18305523_2 WHERE story_title = \"DEVASTATION DERBY! (Part 1)\"", "question": "How many cover dates does the story \"Devastation Derby! (part 1)\" have?", "context": "CREATE TABLE table_18305523_2 (cover_date VARCHAR, story_title VARCHAR)"}, {"answer": "SELECT comments FROM table_18305523_2 WHERE cover_date = \"14 March 1987\"", "question": "What is the comment on the issue dated 14 March 1987?", "context": "CREATE TABLE table_18305523_2 (comments VARCHAR, cover_date VARCHAR)"}, {"answer": "SELECT story_title FROM table_18305523_2 WHERE artist_s = \"Barry Kitson and Farmer\"", "question": "What is the title of the issue where the art was done by Barry Kitson and Farmer?", "context": "CREATE TABLE table_18305523_2 (story_title VARCHAR, artist_s VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_18305523_1", "question": "What is the minimum number which is for title The Enemy Within part 1?", "context": "CREATE TABLE table_18305523_1 (_number INTEGER)"}, {"answer": "SELECT hydroxymatairesinol FROM table_1831262_2 WHERE sesamin = \"62724\"", "question": "what is the number of hydroxymatairesinol where sesamin is 62724?", "context": "CREATE TABLE table_1831262_2 (hydroxymatairesinol VARCHAR, sesamin VARCHAR)"}, {"answer": "SELECT sesamin FROM table_1831262_2 WHERE secoisolariciresinol = 240", "question": "what is the total number of sesamin were secoisolariciresinol is 240?", "context": "CREATE TABLE table_1831262_2 (sesamin VARCHAR, secoisolariciresinol VARCHAR)"}, {"answer": "SELECT MAX(pinoresinol) FROM table_1831262_2 WHERE foodstuff = \"Wheat bran\"", "question": "what is the maximum number of pinorinol in wheat bran?", "context": "CREATE TABLE table_1831262_2 (pinoresinol INTEGER, foodstuff VARCHAR)"}, {"answer": "SELECT sesamin FROM table_1831262_2 WHERE foodstuff = \"Sesame seed\"", "question": "how much sesamin is in sesame seed?", "context": "CREATE TABLE table_1831262_2 (sesamin VARCHAR, foodstuff VARCHAR)"}, {"answer": "SELECT MIN(lariciresinol) FROM table_1831262_2 WHERE matairesinol = 440", "question": "what is the minimum number is lariciresinol where matairesinol number is 440?", "context": "CREATE TABLE table_1831262_2 (lariciresinol INTEGER, matairesinol VARCHAR)"}, {"answer": "SELECT calling_at FROM table_18332845_2 WHERE arrival = \"18.42\"", "question": "What was the calling for the 18.42 arrival time?", "context": "CREATE TABLE table_18332845_2 (calling_at VARCHAR, arrival VARCHAR)"}, {"answer": "SELECT arrival FROM table_18332845_2 WHERE calling_at = \"Wansford, Peterborough East\"", "question": "What was the arrival for Wansford, Peterborough East?", "context": "CREATE TABLE table_18332845_2 (arrival VARCHAR, calling_at VARCHAR)"}, {"answer": "SELECT departure FROM table_18332845_2 WHERE arrival = \"14.40\"", "question": "What was the departure time when the arrival was 14.40?", "context": "CREATE TABLE table_18332845_2 (departure VARCHAR, arrival VARCHAR)"}, {"answer": "SELECT departure FROM table_18332845_2 WHERE going_to = \"Peterborough East\" AND arrival = \"12.40\"", "question": "What is the departure for Peterborough East whose arrival time is 12.40?", "context": "CREATE TABLE table_18332845_2 (departure VARCHAR, going_to VARCHAR, arrival VARCHAR)"}, {"answer": "SELECT calling_at FROM table_18332845_2 WHERE departure = \"09.50\"", "question": "What is the calling at for the 09.50 departure?", "context": "CREATE TABLE table_18332845_2 (calling_at VARCHAR, departure VARCHAR)"}, {"answer": "SELECT going_to FROM table_18332845_2 WHERE departure = \"20.35\"", "question": "Where is the train going to when departing at 20.35?", "context": "CREATE TABLE table_18332845_2 (going_to VARCHAR, departure VARCHAR)"}, {"answer": "SELECT 3 AS _dart_average FROM table_18317531_1 WHERE player = \"Michael van Gerwen\"", "question": "Name the 3 dart average for michael van gerwen", "context": "CREATE TABLE table_18317531_1 (player VARCHAR)"}, {"answer": "SELECT COUNT(calling_at) FROM table_18333678_2 WHERE arrival = \"09.06\"", "question": "how many callings of trains arriving at 09.06", "context": "CREATE TABLE table_18333678_2 (calling_at VARCHAR, arrival VARCHAR)"}, {"answer": "SELECT operator FROM table_18333678_2 WHERE arrival = \"13.39\"", "question": "what is the operator of trains arriving at 13.39 ", "context": "CREATE TABLE table_18333678_2 (operator VARCHAR, arrival VARCHAR)"}, {"answer": "SELECT arrival FROM table_18333678_2 WHERE departure = \"11.35\"", "question": "when does the train departuring at 11.35 arrive", "context": "CREATE TABLE table_18333678_2 (arrival VARCHAR, departure VARCHAR)"}, {"answer": "SELECT departure FROM table_18333678_2 WHERE going_to = \"Bourne\" AND arrival = \"11.45\"", "question": "when does the train arriving at bourne at 11.45 departure ", "context": "CREATE TABLE table_18333678_2 (departure VARCHAR, going_to VARCHAR, arrival VARCHAR)"}, {"answer": "SELECT departure FROM table_18333678_2 WHERE arrival = \"11.45\" AND going_to = \"Stamford East\"", "question": "when does the train arriving at stamford east at 11.45 departure ", "context": "CREATE TABLE table_18333678_2 (departure VARCHAR, arrival VARCHAR, going_to VARCHAR)"}, {"answer": "SELECT clubs_remaining FROM table_18328569_1 WHERE winners_from_previous_round = \"4\"", "question": "How many clubs are remaining when the winners from the previous round totals 4?", "context": "CREATE TABLE table_18328569_1 (clubs_remaining VARCHAR, winners_from_previous_round VARCHAR)"}, {"answer": "SELECT round FROM table_18328569_1 WHERE winners_from_previous_round = \"8\"", "question": "What is the round where winners from the previous round totals 8?", "context": "CREATE TABLE table_18328569_1 (round VARCHAR, winners_from_previous_round VARCHAR)"}, {"answer": "SELECT MIN(clubs_remaining) FROM table_18328569_1 WHERE round = \"Fourth round\"", "question": "How many clubs remain in the fourth round?", "context": "CREATE TABLE table_18328569_1 (clubs_remaining INTEGER, round VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_18328569_1 WHERE winners_from_previous_round = \"32\"", "question": "How many new entries started in the round where winners from the previous round is 32?", "context": "CREATE TABLE table_18328569_1 (new_entries_this_round VARCHAR, winners_from_previous_round VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_18328569_1 WHERE round = \"Quarter finals\"", "question": "How many new entries started in the quarter finals?", "context": "CREATE TABLE table_18328569_1 (new_entries_this_round VARCHAR, round VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_18328569_1 WHERE winners_from_previous_round = \"16\"", "question": "How many new entries started in the round where winners from the previous round is 16?", "context": "CREATE TABLE table_18328569_1 (new_entries_this_round VARCHAR, winners_from_previous_round VARCHAR)"}, {"answer": "SELECT operator FROM table_18365784_3 WHERE departure = \"11.02\"", "question": "Who was the train operator when the train departed at 11.02 in 1922?", "context": "CREATE TABLE table_18365784_3 (operator VARCHAR, departure VARCHAR)"}, {"answer": "SELECT going_to FROM table_18365784_3 WHERE calling_at = \"Boston, Sleaford, Nottingham Victoria\"", "question": "What was the train destination when it has a calling at Boston, Sleaford, Nottingham Victoria?", "context": "CREATE TABLE table_18365784_3 (going_to VARCHAR, calling_at VARCHAR)"}, {"answer": "SELECT departure FROM table_18365784_3 WHERE going_to = \"Boston\"", "question": "What was the departure time of the train going to Boston?", "context": "CREATE TABLE table_18365784_3 (departure VARCHAR, going_to VARCHAR)"}, {"answer": "SELECT arrival FROM table_18365784_3 WHERE departure = \"18.16\"", "question": "What was the arrival time of the train that departed at 18.16?", "context": "CREATE TABLE table_18365784_3 (arrival VARCHAR, departure VARCHAR)"}, {"answer": "SELECT departure FROM table_18365784_3 WHERE arrival = \"21.26\"", "question": "What was the departure time of the train that arrived at 21.26?", "context": "CREATE TABLE table_18365784_3 (departure VARCHAR, arrival VARCHAR)"}, {"answer": "SELECT calling_at FROM table_18365784_3 WHERE departure = \"18.16\"", "question": "What was the 'calling at' station of the train that departed on 18.16?", "context": "CREATE TABLE table_18365784_3 (calling_at VARCHAR, departure VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_18335117_5 WHERE director = \"Barnaby Southcomb\" AND writer = \"Charlie Martin\"", "question": "Name the original air date for barnaby southcomb for charlie martin", "context": "CREATE TABLE table_18335117_5 (original_air_date VARCHAR, director VARCHAR, writer VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_18335117_5 WHERE no_overall = 38", "question": "Name the number in series for number 38", "context": "CREATE TABLE table_18335117_5 (no_in_series INTEGER, no_overall VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_18367694_2 WHERE production_code = 1115", "question": "What is the original air date of the episode with the production code 1115? ", "context": "CREATE TABLE table_18367694_2 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_18367694_2 WHERE original_air_date = \"November 22, 1989\"", "question": "who directed the episode with the original air date of November 22, 1989? ", "context": "CREATE TABLE table_18367694_2 (directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT mlb_team FROM table_18373863_2 WHERE years_played = \"2008\" AND fcsl_team = \"DeLand\"", "question": "when deland is the fcsl team and 2008 is the year played who is the mlb team?", "context": "CREATE TABLE table_18373863_2 (mlb_team VARCHAR, years_played VARCHAR, fcsl_team VARCHAR)"}, {"answer": "SELECT fcsl_team FROM table_18373863_2 WHERE mlb_team = \"Toronto Blue Jays\"", "question": "When toronto blue jays are the mlb team who are the fscl team?", "context": "CREATE TABLE table_18373863_2 (fcsl_team VARCHAR, mlb_team VARCHAR)"}, {"answer": "SELECT MIN(year_drafted) FROM table_18373863_2 WHERE years_played = \"2005\"", "question": "When 2005 is the year played what is the lowest year drafted?", "context": "CREATE TABLE table_18373863_2 (year_drafted INTEGER, years_played VARCHAR)"}, {"answer": "SELECT COUNT(mlb_team) FROM table_18373863_2 WHERE fcsl_team = \"Winter Pines\"", "question": "When winter pines is the fcsl team how many mlb teams are there?", "context": "CREATE TABLE table_18373863_2 (mlb_team VARCHAR, fcsl_team VARCHAR)"}, {"answer": "SELECT player FROM table_18373863_2 WHERE fcsl_team = \"Winter Park\" AND years_played = \"2006\"", "question": "When 2006 is the year played and winter park is the fcsl team who is the player?", "context": "CREATE TABLE table_18373863_2 (player VARCHAR, fcsl_team VARCHAR, years_played VARCHAR)"}, {"answer": "SELECT operator FROM table_1837570_1 WHERE genre = \"music\"", "question": "Which operators offer a genre of music?", "context": "CREATE TABLE table_1837570_1 (operator VARCHAR, genre VARCHAR)"}, {"answer": "SELECT language FROM table_1837570_1 WHERE coverage_area = \"Klang Petaling Jaya Shah Alam\"", "question": "Which languages are offered in the coverage area of klang petaling jaya shah alam?", "context": "CREATE TABLE table_1837570_1 (language VARCHAR, coverage_area VARCHAR)"}, {"answer": "SELECT macedonian FROM table_1841901_1 WHERE french = \"il/elle avait entendu\"", "question": "Name the macedonian for  il/elle avait entendu", "context": "CREATE TABLE table_1841901_1 (macedonian VARCHAR, french VARCHAR)"}, {"answer": "SELECT greek__modern_ FROM table_1841901_1 WHERE polish__extinct_ = \"s\u0142ysza\u0142e\u015b by\u0142 / s\u0142ysza\u0142a\u015b by\u0142a\"", "question": "Name the greek modern for  s\u0142ysza\u0142e\u015b by\u0142 / s\u0142ysza\u0142a\u015b by\u0142a", "context": "CREATE TABLE table_1841901_1 (greek__modern_ VARCHAR, polish__extinct_ VARCHAR)"}, {"answer": "SELECT bulgarian FROM table_1841901_1 WHERE dutch = \"jullie hadden gehoord\"", "question": "Name the bulgarian for  jullie hadden gehoord", "context": "CREATE TABLE table_1841901_1 (bulgarian VARCHAR, dutch VARCHAR)"}, {"answer": "SELECT english FROM table_1841901_1 WHERE french = \"j'avais entendu\"", "question": "Name the english for  j'avais entendu", "context": "CREATE TABLE table_1841901_1 (english VARCHAR, french VARCHAR)"}, {"answer": "SELECT us_air_date FROM table_18424435_4 WHERE canadian_viewers__million_ = \"1.452\"", "question": "What was the air date in the U.S. for the episode that had 1.452 million Canadian viewers?", "context": "CREATE TABLE table_18424435_4 (us_air_date VARCHAR, canadian_viewers__million_ VARCHAR)"}, {"answer": "SELECT no FROM table_18424435_4 WHERE directed_by = \"Kelly Makin\" AND written_by = \"Mark Ellis & Stephanie Morgenstern\"", "question": "What number episode in the series was directed by Kelly Makin and written by Mark Ellis & Stephanie Morgenstern?", "context": "CREATE TABLE table_18424435_4 (no VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_18424435_4", "question": "What is the maximum number of episodes in the series listed?", "context": "CREATE TABLE table_18424435_4 (no INTEGER)"}, {"answer": "SELECT COUNT(_number) FROM table_18424435_4 WHERE production_code = 306", "question": "What is the total number of episodes listed with a production code of 306?", "context": "CREATE TABLE table_18424435_4 (_number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_18424435_4 WHERE production_code = 301", "question": "Who directed the episode with a production code of 301?", "context": "CREATE TABLE table_18424435_4 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_18424435_3 WHERE canadian_viewers__million_ = \"1.816\"", "question": "Who wrote the episodes watched by 1.816 million people in Canada?", "context": "CREATE TABLE table_18424435_3 (written_by VARCHAR, canadian_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_18424435_3 WHERE canadian_viewers__million_ = \"1.575\"", "question": "Who wrote the episodes watched by 1.575 million people in Canada?", "context": "CREATE TABLE table_18424435_3 (written_by VARCHAR, canadian_viewers__million_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_18424435_3 WHERE us_air_date = \"February 27, 2009\"", "question": "Who directed the episode aired on February 27, 2009?", "context": "CREATE TABLE table_18424435_3 (directed_by VARCHAR, us_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_18424435_3 WHERE production_code = 217", "question": "Which episodes had production code 217?", "context": "CREATE TABLE table_18424435_3 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT median_house__hold_income FROM table_1840495_2 WHERE place = \"Upper Arlington\"", "question": "For upper Arlington, what was the median household income?", "context": "CREATE TABLE table_1840495_2 (median_house__hold_income VARCHAR, place VARCHAR)"}, {"answer": "SELECT COUNT(number_of_households) FROM table_1840495_2 WHERE per_capita_income = \"$30,298\"", "question": "With a per capita income of $30,298, what was the total number of households?", "context": "CREATE TABLE table_1840495_2 (number_of_households VARCHAR, per_capita_income VARCHAR)"}, {"answer": "SELECT median_house__hold_income FROM table_1840495_2 WHERE population = 2188", "question": "If the population is 2188, what was the median household income?", "context": "CREATE TABLE table_1840495_2 (median_house__hold_income VARCHAR, population VARCHAR)"}, {"answer": "SELECT per_capita_income FROM table_1840495_2 WHERE place = \"Pigeon Creek\"", "question": "For Pigeon Creek what is the per capita income?", "context": "CREATE TABLE table_1840495_2 (per_capita_income VARCHAR, place VARCHAR)"}, {"answer": "SELECT per_capita_income FROM table_1840495_2 WHERE median_house__hold_income = \"$57,407\"", "question": "If the median income is $57,407, what is the per capita income?", "context": "CREATE TABLE table_1840495_2 (per_capita_income VARCHAR, median_house__hold_income VARCHAR)"}, {"answer": "SELECT directed_by FROM table_18424435_5 WHERE us_air_date = \"July 29, 2011\"", "question": "Who directed the episode that aired on July 29, 2011?", "context": "CREATE TABLE table_18424435_5 (directed_by VARCHAR, us_air_date VARCHAR)"}, {"answer": "SELECT COUNT(us_air_date) FROM table_18424435_5 WHERE directed_by = \"Jim Donovan\"", "question": "How many air dates where directed by jim donovan?", "context": "CREATE TABLE table_18424435_5 (us_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_18424435_5", "question": "What is the smallest number?", "context": "CREATE TABLE table_18424435_5 (_number INTEGER)"}, {"answer": "SELECT us_air_date FROM table_18424435_5 WHERE canadian_viewers__million_ = \"1.229\"", "question": "Which air dates have 1.229 canadian viewers (millions)?", "context": "CREATE TABLE table_18424435_5 (us_air_date VARCHAR, canadian_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_18425346_2 WHERE serial_no = 9", "question": "In what district is the city listed in Serial number 9?", "context": "CREATE TABLE table_18425346_2 (district VARCHAR, serial_no VARCHAR)"}, {"answer": "SELECT COUNT(city_area_km_2__) FROM table_18425346_2 WHERE district = \"Sargodha district\"", "question": "What is the area of the city in the Sargodha district?", "context": "CREATE TABLE table_18425346_2 (city_area_km_2__ VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(city_area_km_2__) FROM table_18425346_2", "question": "What is the smallest city area?", "context": "CREATE TABLE table_18425346_2 (city_area_km_2__ INTEGER)"}, {"answer": "SELECT original_air_date FROM table_18427769_1 WHERE directed_by = \"Di Drew\"", "question": "If Di Drew is the director, what was the original air date for episode A Whole Lot to Lose?", "context": "CREATE TABLE table_18427769_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(population__2010_census_) FROM table_184334_2 WHERE s_barangay = 51", "question": "What is the population (2010 census) if s barangay is 51?", "context": "CREATE TABLE table_184334_2 (population__2010_census_ VARCHAR, s_barangay VARCHAR)"}, {"answer": "SELECT MIN(population__2010_census_) FROM table_184334_2 WHERE area___has__ = \"66.11\"", "question": "What is the population  (2010 census) if the area is 66.11?", "context": "CREATE TABLE table_184334_2 (population__2010_census_ INTEGER, area___has__ VARCHAR)"}, {"answer": "SELECT entered FROM table_18438494_3 WHERE time = \"14:42\"", "question": "How many entered the match with a time of 14:42? ", "context": "CREATE TABLE table_18438494_3 (entered VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_18438494_3 WHERE wrestler = \"Cena\"", "question": "What was the time for the match with Cena? ", "context": "CREATE TABLE table_18438494_3 (time VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT station FROM table_1847523_2 WHERE city_of_license__market = \"Cincinnati\"", "question": "What are all the stations with a license in Cincinnati?", "context": "CREATE TABLE table_1847523_2 (station VARCHAR, city_of_license__market VARCHAR)"}, {"answer": "SELECT affiliation FROM table_1847523_2 WHERE station = \"KMGH-TV\"", "question": "What station is affiliated with kmgh-tv?", "context": "CREATE TABLE table_1847523_2 (affiliation VARCHAR, station VARCHAR)"}, {"answer": "SELECT owned_since FROM table_1847523_2 WHERE station = \"WFTS-TV\"", "question": "How many stations have been owned since wfts-tv?", "context": "CREATE TABLE table_1847523_2 (owned_since VARCHAR, station VARCHAR)"}, {"answer": "SELECT city_of_license__market FROM table_1847523_2 WHERE channel___tv___rf__ = \"41\"", "question": "What city of license/market has the channel of 41?", "context": "CREATE TABLE table_1847523_2 (city_of_license__market VARCHAR, channel___tv___rf__ VARCHAR)"}, {"answer": "SELECT MIN(owned_since) FROM table_1847523_2 WHERE station = \"KERO-TV\"", "question": "What is the minimum stations owned since kero-tv?", "context": "CREATE TABLE table_1847523_2 (owned_since INTEGER, station VARCHAR)"}, {"answer": "SELECT lyric_fm__mhz_ FROM table_18475946_2 WHERE rnag__mhz_ = \"93.2\"", "question": "What is the lyric fm for rnag 93.2?", "context": "CREATE TABLE table_18475946_2 (lyric_fm__mhz_ VARCHAR, rnag__mhz_ VARCHAR)"}, {"answer": "SELECT 2 AS fm__mhz_ FROM table_18475946_2 WHERE erp__kw_ = \"16\"", "question": "What are the 2fm's for erp 16?", "context": "CREATE TABLE table_18475946_2 (erp__kw_ VARCHAR)"}, {"answer": "SELECT rnag__mhz_ FROM table_18475946_2 WHERE transmitter = \"Kippure\"", "question": "What is the rnag for kippure transmitter? ", "context": "CREATE TABLE table_18475946_2 (rnag__mhz_ VARCHAR, transmitter VARCHAR)"}, {"answer": "SELECT rnag__mhz_ FROM table_18475946_2 WHERE lyric_fm__mhz_ = \"98.7\"", "question": "What is the rnag for  lyric fm 98.7? ", "context": "CREATE TABLE table_18475946_2 (rnag__mhz_ VARCHAR, lyric_fm__mhz_ VARCHAR)"}, {"answer": "SELECT 2 AS fm__mhz_ FROM table_18475946_2 WHERE rnag__mhz_ = \"94.4\"", "question": "What is the 2fm for rnag 94.4?", "context": "CREATE TABLE table_18475946_2 (rnag__mhz_ VARCHAR)"}, {"answer": "SELECT COUNT(reason_for_change) FROM table_1847180_3 WHERE vacator = \"A. Willis Robertson (D)\"", "question": "How many reasons were given when A. Willis Robertson (D) resigned?", "context": "CREATE TABLE table_1847180_3 (reason_for_change VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT vacator FROM table_1847180_3 WHERE date_of_successors_formal_installation = \"May 11, 1966\"", "question": "Who vacated his post when his successor was formally installed on May 11, 1966?", "context": "CREATE TABLE table_1847180_3 (vacator VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_1847180_3 WHERE date_of_successors_formal_installation = \"May 11, 1966\"", "question": "What was the state (class) where the new successor was formally installed on May 11, 1966?", "context": "CREATE TABLE table_1847180_3 (state__class_ VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT album FROM table_18442691_2 WHERE artist = \"ABBA\"", "question": "When abba is the artist what is the album?", "context": "CREATE TABLE table_18442691_2 (album VARCHAR, artist VARCHAR)"}, {"answer": "SELECT album FROM table_18442691_2 WHERE no = 35", "question": "When 35 is the number what is the album?", "context": "CREATE TABLE table_18442691_2 (album VARCHAR, no VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_18442691_2 WHERE album = \"Bat Out of Hell\"", "question": "When bat out of hell is the album what is the lowest number?", "context": "CREATE TABLE table_18442691_2 (no INTEGER, album VARCHAR)"}, {"answer": "SELECT no FROM table_18442691_2 WHERE released = \"Cannot handle non-empty timestamp argument! 2007\"", "question": "When cannot handle non-empty timestamp argument! 2007 is released what is the no.?  ", "context": "CREATE TABLE table_18442691_2 (no VARCHAR, released VARCHAR)"}, {"answer": "SELECT district FROM table_1847180_4 WHERE vacator = \"Ralph Harvey (R)\"", "question": "Which district did Ralph Harvey (r) vacated when he resigned?", "context": "CREATE TABLE table_1847180_4 (district VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT vacator FROM table_1847180_4 WHERE successor = \"Walter B. Jones, Sr. (D)\"", "question": "Who did Walter B. Jones, Sr. (d) succeeded in office?", "context": "CREATE TABLE table_1847180_4 (vacator VARCHAR, successor VARCHAR)"}, {"answer": "SELECT title FROM table_18481791_2 WHERE directed_by = \"John T. Kretchmer\"", "question": "What was the title of the episode directed by John T. Kretchmer? ", "context": "CREATE TABLE table_18481791_2 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_18481791_3 WHERE directed_by = \"Bryan Spicer\"", "question": "How many seasons were directed by Bryan Spicer?", "context": "CREATE TABLE table_18481791_3 (no_in_season INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_18481791_3 WHERE no_in_series = 23", "question": "What is the title of series 23?", "context": "CREATE TABLE table_18481791_3 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT directed_by FROM table_18481791_3 WHERE no_in_season = 1", "question": "Who directed season 1?", "context": "CREATE TABLE table_18481791_3 (directed_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT title FROM table_18481791_3 WHERE us_viewers__in_millions_ = \"3.97\"", "question": "What is the title when u.s. viewers (millions) is 3.97?", "context": "CREATE TABLE table_18481791_3 (title VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT COUNT(commentator) FROM table_184803_4 WHERE broadcaster = \"ORF\"", "question": "how many people commentated where broadcaster is orf", "context": "CREATE TABLE table_184803_4 (commentator VARCHAR, broadcaster VARCHAR)"}, {"answer": "SELECT spokespersons FROM table_184803_4 WHERE voting_order = 9", "question": "list the spokespersons where voting order is 9", "context": "CREATE TABLE table_184803_4 (spokespersons VARCHAR, voting_order VARCHAR)"}, {"answer": "SELECT country FROM table_184803_4 WHERE commentator = \"Gordana Bonetti\"", "question": "which countries were commentated on by gordana bonetti", "context": "CREATE TABLE table_184803_4 (country VARCHAR, commentator VARCHAR)"}, {"answer": "SELECT spokespersons FROM table_184803_4 WHERE country = \"Luxembourg\"", "question": "wich spokesperson talked on luxembourg", "context": "CREATE TABLE table_184803_4 (spokespersons VARCHAR, country VARCHAR)"}, {"answer": "SELECT commentator FROM table_184803_4 WHERE spokespersons = \"Claude Darget\"", "question": "who was the commentator when spokesperson was claude darget", "context": "CREATE TABLE table_184803_4 (commentator VARCHAR, spokespersons VARCHAR)"}, {"answer": "SELECT institution FROM table_18483171_1 WHERE team_nickname = \"Cardinals\"", "question": "List all institutions with a team name of the Cardinals. ", "context": "CREATE TABLE table_18483171_1 (institution VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_18483171_1 WHERE location = \"Rock Island, Illinois\"", "question": "List the total number of institutions founded in Rock Island, Illinois.", "context": "CREATE TABLE table_18483171_1 (founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_1849243_1 WHERE run_time = \"23:55\"", "question": "How many viewers in millions watched the episode 23:55 minutes long?", "context": "CREATE TABLE table_1849243_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_1849243_1 WHERE archive = \"16mm t/r\"", "question": "What is the broadcast date of the 16mm t/r episode?", "context": "CREATE TABLE table_1849243_1 (broadcast_date VARCHAR, archive VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_1849243_1 WHERE archive = \"16mm t/r\"", "question": "How many viewers watched the 16mm t/r episode?", "context": "CREATE TABLE table_1849243_1 (viewers__in_millions_ VARCHAR, archive VARCHAR)"}, {"answer": "SELECT el_canal_de_las_estrellas FROM table_18498743_1 WHERE ma\u00f1ana_es_para_siempre = \"Impreuna pentru totdeauna\"", "question": "state el canal de las estrellas where ma\u00f1ana es para siempre is impreuna pentru totdeauna", "context": "CREATE TABLE table_18498743_1 (el_canal_de_las_estrellas VARCHAR, ma\u00f1ana_es_para_siempre VARCHAR)"}, {"answer": "SELECT mexico FROM table_18498743_1 WHERE ma\u00f1ana_es_para_siempre = \"Love Never Dies\"", "question": "what is the mexico stat where ma\u00f1ana es para siempre is love never dies", "context": "CREATE TABLE table_18498743_1 (mexico VARCHAR, ma\u00f1ana_es_para_siempre VARCHAR)"}, {"answer": "SELECT october_20, _2008 FROM table_18498743_1 WHERE mexico = \"Romania\"", "question": "what is the october 20, 2008 stat where mexico stat is romania", "context": "CREATE TABLE table_18498743_1 (october_20 VARCHAR, _2008 VARCHAR, mexico VARCHAR)"}, {"answer": "SELECT other FROM table_1850282_7 WHERE species = \"Chironius multiventris septentrionalis\"", "question": "Name the other for chironius multiventris septentrionalis", "context": "CREATE TABLE table_1850282_7 (other VARCHAR, species VARCHAR)"}, {"answer": "SELECT trinidad FROM table_1850282_7 WHERE common_name = \"Yellow-bellied puffing snake\"", "question": "Name the trinidad for yellow-bellied puffing snake", "context": "CREATE TABLE table_1850282_7 (trinidad VARCHAR, common_name VARCHAR)"}, {"answer": "SELECT bocas_is FROM table_1850282_7 WHERE species = \"Chironius multiventris septentrionalis\"", "question": "Name the bocas for chironius multiventris septentrionalis", "context": "CREATE TABLE table_1850282_7 (bocas_is VARCHAR, species VARCHAR)"}, {"answer": "SELECT common_name FROM table_1850282_7 WHERE species = \"Chironius multiventris septentrionalis\"", "question": "Name the common name for chironius multiventris septentrionalis", "context": "CREATE TABLE table_1850282_7 (common_name VARCHAR, species VARCHAR)"}, {"answer": "SELECT contestant_name FROM table_18513028_3 WHERE date_premiered__2009_ = \"July 25\"", "question": "What contestant was premiered on July 25? ", "context": "CREATE TABLE table_18513028_3 (contestant_name VARCHAR, date_premiered__2009_ VARCHAR)"}, {"answer": "SELECT air_force___navy_score FROM table_1850339_2 WHERE season = 2018", "question": "What's the Air Force - Navy score in the 2018 season?", "context": "CREATE TABLE table_1850339_2 (air_force___navy_score VARCHAR, season VARCHAR)"}, {"answer": "SELECT air_force___navy_score FROM table_1850339_2 WHERE season = 1983", "question": "What was the Air Force - Navy score in the 1983 season?", "context": "CREATE TABLE table_1850339_2 (air_force___navy_score VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_1850339_2 WHERE army___navy_score = \"10 Dec. 2016 at Baltimore, MD (M&T Bank Stadium)\"", "question": "How many different season have an Army - Navy score of 10 dec. 2016 at Baltimore, MD (M&T Bank Stadium)?", "context": "CREATE TABLE table_1850339_2 (season VARCHAR, army___navy_score VARCHAR)"}, {"answer": "SELECT COUNT(tourism_receipts__2003___as__percentage_of_exports_) FROM table_18524_6 WHERE tourism_competitiveness__2011___ttci_ = \"3.26\"", "question": "Name the tourism receipts 2003 for tourism competitiveness 3.26", "context": "CREATE TABLE table_18524_6 (tourism_receipts__2003___as__percentage_of_exports_ VARCHAR, tourism_competitiveness__2011___ttci_ VARCHAR)"}, {"answer": "SELECT tourism_receipts__2003___as__percentage_of_gdp_ FROM table_18524_6 WHERE country = \"Colombia\"", "question": "Name the tourism receipts 2003 for colombia", "context": "CREATE TABLE table_18524_6 (tourism_receipts__2003___as__percentage_of_gdp_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(tourism_receipts__2011___us) AS $_per_capita_ FROM table_18524_6 WHERE tourism_receipts__2003___as__percentage_of_gdp_ = \"13.5\"", "question": "Name the total number of tourism receipts 2011 where tourism receipts 2003 13.5", "context": "CREATE TABLE table_18524_6 (tourism_receipts__2011___us VARCHAR, tourism_receipts__2003___as__percentage_of_gdp_ VARCHAR)"}, {"answer": "SELECT owner FROM table_18536769_1 WHERE branding = \"Classic Hits 102.1 CJCY\"", "question": "When classic hits 102.1 cjcy is the branding who is the owner?", "context": "CREATE TABLE table_18536769_1 (owner VARCHAR, branding VARCHAR)"}, {"answer": "SELECT call_sign FROM table_18536769_1 WHERE format = \"hot adult contemporary\"", "question": "When hot adult contemporary is the format what is the call sign?", "context": "CREATE TABLE table_18536769_1 (call_sign VARCHAR, format VARCHAR)"}, {"answer": "SELECT COUNT(call_sign) FROM table_18536769_1 WHERE owner = \"Vista Radio\"", "question": "When vista radio is the owner how many call signs are there?", "context": "CREATE TABLE table_18536769_1 (call_sign VARCHAR, owner VARCHAR)"}, {"answer": "SELECT COUNT(format) FROM table_18536769_1 WHERE frequency = \"FM 97.3\"", "question": "When fm 97.3 is the frequency how many formats are there?", "context": "CREATE TABLE table_18536769_1 (format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_18536769_1 WHERE owner = \"Vista Radio\"", "question": "When vista radio is the owner what is the frequency? ", "context": "CREATE TABLE table_18536769_1 (frequency VARCHAR, owner VARCHAR)"}, {"answer": "SELECT team FROM table_18522916_5 WHERE date_of_appointment = \"5 September 2008\" AND date_of_vacancy = \"30 August 2008\"", "question": "Name the team for 5 september 2008 for date of vacancy for 30 august 2008", "context": "CREATE TABLE table_18522916_5 (team VARCHAR, date_of_appointment VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_18522916_5 WHERE outgoing_manager = \"Daniel Uberti\"", "question": "Name the date of vacancy for daniel uberti", "context": "CREATE TABLE table_18522916_5 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_18522916_5 WHERE date_of_vacancy = \"25 August 2008\"", "question": "Name the manner of departure for date of vacancy 25 august 2008", "context": "CREATE TABLE table_18522916_5 (manner_of_departure VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_18522916_5 WHERE date_of_appointment = \"29 December 2008\"", "question": "Name the date of vacancy for 29 december 2008 being date of appointment", "context": "CREATE TABLE table_18522916_5 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_1854728_2 WHERE production_code = \"1008/1009\"", "question": "When 1008/1009 is the production code how many directors are there?", "context": "CREATE TABLE table_1854728_2 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_1854728_2 WHERE written_by = \"Arthur Heinemann\"", "question": "When arthur heinemann is the writer who is the director?", "context": "CREATE TABLE table_1854728_2 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT running_with__in_team_ FROM table_1855841_1 WHERE candidate = \"Elizabeth Falco\"", "question": "Name the running with for elizabeth falco", "context": "CREATE TABLE table_1855841_1 (running_with__in_team_ VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT office_running_for FROM table_1855841_1 WHERE candidate = \"Carol Marsh\"", "question": "Name the officing running for for carol marsh", "context": "CREATE TABLE table_1855841_1 (office_running_for VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT office_running_for FROM table_1855841_1 WHERE candidate = \"Anthony Mussara\"", "question": "Name the office running for for anthony mussara", "context": "CREATE TABLE table_1855841_1 (office_running_for VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT votes_given FROM table_1855841_1 WHERE running_with__in_team_ = \"Michael Russo, Genevy Dimitrion , Manny Ortega\"", "question": "Name the votes given for michael russo, genevy dimitrion , manny ortega", "context": "CREATE TABLE table_1855841_1 (votes_given VARCHAR, running_with__in_team_ VARCHAR)"}, {"answer": "SELECT position FROM table_1858574_3 WHERE sail_number = \"6606\"", "question": "Qhat was the position of sail 6606?", "context": "CREATE TABLE table_1858574_3 (position VARCHAR, sail_number VARCHAR)"}, {"answer": "SELECT yacht FROM table_1858574_3 WHERE sail_number = \"AUS70\"", "question": "On what yacht was the sail number aus70?", "context": "CREATE TABLE table_1858574_3 (yacht VARCHAR, sail_number VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_18590048_1 WHERE release_date = \"21 October 1992\"", "question": "How many titles were released on 21 October 1992?", "context": "CREATE TABLE table_18590048_1 (rank VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_18590048_1 WHERE title = \"Super Mario Land 2: 6 Golden Coins\"", "question": "What rank is Super Mario Land 2: 6 Golden Coins?", "context": "CREATE TABLE table_18590048_1 (rank INTEGER, title VARCHAR)"}, {"answer": "SELECT platform FROM table_18590048_1 WHERE units_sold__in_millions_ = \"11.18\"", "question": "What platform sold 11.18 million units?", "context": "CREATE TABLE table_18590048_1 (platform VARCHAR, units_sold__in_millions_ VARCHAR)"}, {"answer": "SELECT release_date FROM table_18590048_1 WHERE units_sold__in_millions_ = \"9.87\"", "question": "What day did the platform sell 9.87 million units?", "context": "CREATE TABLE table_18590048_1 (release_date VARCHAR, units_sold__in_millions_ VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_1859269_1 WHERE new_entries_this_round = \"65\"", "question": "If new entries this round is 65, what is the round?", "context": "CREATE TABLE table_1859269_1 (round VARCHAR, new_entries_this_round VARCHAR)"}, {"answer": "SELECT MAX(clubs_remaining) FROM table_1859269_1 WHERE leagues_entering_at_this_round = \"S\u00fcper Lig\"", "question": "If leagues entering this round is S\u00fcper Lig, what is the maximum amount of clubs remaining?", "context": "CREATE TABLE table_1859269_1 (clubs_remaining INTEGER, leagues_entering_at_this_round VARCHAR)"}, {"answer": "SELECT round FROM table_1859269_1 WHERE winners_from_previous_round = \"8\"", "question": "If the winners from the previous round is 8, what is the round?", "context": "CREATE TABLE table_1859269_1 (round VARCHAR, winners_from_previous_round VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_1859269_1 WHERE round = \"Semi-finals\"", "question": "If the round is the semi-finals, what are the new entries this round?", "context": "CREATE TABLE table_1859269_1 (new_entries_this_round VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_18594107_2 WHERE team = \"Atl. Colegiales\"", "question": "How many losses for the team atl. colegiales?", "context": "CREATE TABLE table_18594107_2 (losses INTEGER, team VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_18594107_2 WHERE scored = 14", "question": "How many points when the score is 14?", "context": "CREATE TABLE table_18594107_2 (points INTEGER, scored VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_18594107_2 WHERE scored = 13", "question": "How many draws are there when the score is 13?", "context": "CREATE TABLE table_18594107_2 (draws INTEGER, scored VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_18594107_2 WHERE conceded = 18", "question": "How many wins have conceded as 18?", "context": "CREATE TABLE table_18594107_2 (wins INTEGER, conceded VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_18594107_1 WHERE scored = 25", "question": "How many draws occurred when 25 points were scored? ", "context": "CREATE TABLE table_18594107_1 (draws VARCHAR, scored VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_18594107_1 WHERE team = \"San Lorenzo\"", "question": "What is the least number of poins for San Lorenzo? ", "context": "CREATE TABLE table_18594107_1 (points INTEGER, team VARCHAR)"}, {"answer": "SELECT draws FROM table_18594107_1 WHERE team = \"12 de Octubre\"", "question": "How many draws does 12 de Octubre  have? ", "context": "CREATE TABLE table_18594107_1 (draws VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(inaba) FROM table_18595004_7", "question": "What is Inaba's maximum score?", "context": "CREATE TABLE table_18595004_7 (inaba INTEGER)"}, {"answer": "SELECT COUNT(tonioli) FROM table_18595004_7 WHERE week__number = 3", "question": "How many sets of marks does Tonioli get in week 3?", "context": "CREATE TABLE table_18595004_7 (tonioli VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT MIN(age) FROM table_1859855_2 WHERE hometown = \"Columbia, South Carolina\"", "question": "When columbia, south carolina is the hometown what is the lowest age?", "context": "CREATE TABLE table_1859855_2 (age INTEGER, hometown VARCHAR)"}, {"answer": "SELECT MIN(age) FROM table_1859855_2 WHERE hometown = \"Austin, Texas\"", "question": "When austin, texas is the hometown what is the lowest age?", "context": "CREATE TABLE table_1859855_2 (age INTEGER, hometown VARCHAR)"}, {"answer": "SELECT result FROM table_1859855_2 WHERE candidate = \"Stacy Schneider\"", "question": "When stacy schneider is the candidate what are the results?", "context": "CREATE TABLE table_1859855_2 (result VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT township FROM table_18600760_15 WHERE land___sqmi__ = \"35.766\"", "question": "Which township is 35.766 sqmi?", "context": "CREATE TABLE table_18600760_15 (township VARCHAR, land___sqmi__ VARCHAR)"}, {"answer": "SELECT county FROM table_18600760_15 WHERE township = \"Osborn\"", "question": "What county is the township of Osborn in?", "context": "CREATE TABLE table_18600760_15 (county VARCHAR, township VARCHAR)"}, {"answer": "SELECT longitude FROM table_18600760_15 WHERE latitude = \"47.985154\"", "question": "What is the longitude with a latitude of 47.985154?", "context": "CREATE TABLE table_18600760_15 (longitude VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT water__sqmi_ FROM table_18600760_15 WHERE county = \"Ramsey\" AND geo_id > 3807159460.0", "question": "How many square miles of water is in Ramsey County with a geo id larger than 3807159460.0?", "context": "CREATE TABLE table_18600760_15 (water__sqmi_ VARCHAR, county VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT COUNT(latitude) FROM table_18600760_15 WHERE water__sqmi_ = \"0.081\"", "question": "how many latitudes have 0.081 (sqmi) of water?", "context": "CREATE TABLE table_18600760_15 (latitude VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT MIN(geo_id) FROM table_18600760_15", "question": "what is the lowest geo id?", "context": "CREATE TABLE table_18600760_15 (geo_id INTEGER)"}, {"answer": "SELECT MAX(geo_id) FROM table_18600760_10 WHERE water__sqmi_ = \"0.771\"", "question": "What is the geo ID for the township with 0.771 square miles of water?", "context": "CREATE TABLE table_18600760_10 (geo_id INTEGER, water__sqmi_ VARCHAR)"}, {"answer": "SELECT MAX(geo_id) FROM table_18600760_10 WHERE county = \"Logan\"", "question": "What is the geo id for Logan county?", "context": "CREATE TABLE table_18600760_10 (geo_id INTEGER, county VARCHAR)"}, {"answer": "SELECT land___sqmi__ FROM table_18600760_10 WHERE county = \"Grand Forks\"", "question": "How big is the land in square miles of Grand Forks county?", "context": "CREATE TABLE table_18600760_10 (land___sqmi__ VARCHAR, county VARCHAR)"}, {"answer": "SELECT MAX(geo_id) FROM table_18600760_10 WHERE township = \"Joliette\"", "question": "What is the geo id for Joliette?", "context": "CREATE TABLE table_18600760_10 (geo_id INTEGER, township VARCHAR)"}, {"answer": "SELECT latitude FROM table_18600760_10 WHERE water__sqmi_ = \"4.243\"", "question": "What was the lattitude for the area with 4.243 square miles of water?", "context": "CREATE TABLE table_18600760_10 (latitude VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT township FROM table_18600760_10 WHERE land___sqmi__ = \"28.597\"", "question": "What township is 28.597 square miles of land?", "context": "CREATE TABLE table_18600760_10 (township VARCHAR, land___sqmi__ VARCHAR)"}, {"answer": "SELECT township FROM table_18600760_12 WHERE longitude = \"-98.741656\"", "question": "Which township has a longitude of -98.741656?", "context": "CREATE TABLE table_18600760_12 (township VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT land___sqmi__ FROM table_18600760_12 WHERE township = \"Lansing\"", "question": "What is the land (sqmi) in lansing township?", "context": "CREATE TABLE table_18600760_12 (land___sqmi__ VARCHAR, township VARCHAR)"}, {"answer": "SELECT MIN(geo_id) FROM table_18600760_12 WHERE water__sqmi_ = \"0.457\"", "question": "What is the geo id when water is 0.457?", "context": "CREATE TABLE table_18600760_12 (geo_id INTEGER, water__sqmi_ VARCHAR)"}, {"answer": "SELECT MAX(geo_id) FROM table_18600760_12 WHERE land___sqmi__ = \"35.999\"", "question": "What is the geo id of the land at 35.999?", "context": "CREATE TABLE table_18600760_12 (geo_id INTEGER, land___sqmi__ VARCHAR)"}, {"answer": "SELECT land___sqmi__ FROM table_18600760_12 WHERE geo_id = 3801947380", "question": "What is the land (sqmi) at geo id 3801947380?", "context": "CREATE TABLE table_18600760_12 (land___sqmi__ VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT MAX(pop__2010_) FROM table_18600760_13 WHERE latitude = \"48.676125\"", "question": "What is the population associated with latitude 48.676125?", "context": "CREATE TABLE table_18600760_13 (pop__2010_ INTEGER, latitude VARCHAR)"}, {"answer": "SELECT COUNT(ansi_code) FROM table_18600760_13 WHERE latitude = \"48.247662\"", "question": "How many places associated with latitude 48.247662?", "context": "CREATE TABLE table_18600760_13 (ansi_code VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT longitude FROM table_18600760_13 WHERE water__sqmi_ = \"0.068\"", "question": "What longitudes associated with a water (sqmi) area of 0.068?", "context": "CREATE TABLE table_18600760_13 (longitude VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT MIN(ansi_code) FROM table_18600760_13", "question": "What is the smallest ansi code?", "context": "CREATE TABLE table_18600760_13 (ansi_code INTEGER)"}, {"answer": "SELECT county FROM table_18600760_13 WHERE ansi_code = 1759686", "question": "What county is associated with ansi code 1759686?", "context": "CREATE TABLE table_18600760_13 (county VARCHAR, ansi_code VARCHAR)"}, {"answer": "SELECT COUNT(geo_id) FROM table_18600760_13 WHERE township = \"Malcolm\"", "question": "What is the geo id for malcolm township?", "context": "CREATE TABLE table_18600760_13 (geo_id VARCHAR, township VARCHAR)"}, {"answer": "SELECT land___sqmi__ FROM table_18600760_18 WHERE township = \"Reed\"", "question": "What is the land area of Reed Township?", "context": "CREATE TABLE table_18600760_18 (land___sqmi__ VARCHAR, township VARCHAR)"}, {"answer": "SELECT township FROM table_18600760_18 WHERE longitude = \"-100.680772\"", "question": "What is the township at longitude -100.680772?", "context": "CREATE TABLE table_18600760_18 (township VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT MIN(ansi_code) FROM table_18600760_18 WHERE land___sqmi__ = \"35.737\"", "question": "What is the ANSI code of the township where the area is 35.737 square miles?", "context": "CREATE TABLE table_18600760_18 (ansi_code INTEGER, land___sqmi__ VARCHAR)"}, {"answer": "SELECT MAX(geo_id) FROM table_18600760_18 WHERE land___sqmi__ = \"32.532\"", "question": "What is the GEO ID of the township with area of 32.532 square miles?", "context": "CREATE TABLE table_18600760_18 (geo_id INTEGER, land___sqmi__ VARCHAR)"}, {"answer": "SELECT township FROM table_18600760_18 WHERE land___sqmi__ = \"34.781\"", "question": "What township is 34.781 square miles?", "context": "CREATE TABLE table_18600760_18 (township VARCHAR, land___sqmi__ VARCHAR)"}, {"answer": "SELECT longitude FROM table_18600760_20 WHERE township = \"Tatman\"", "question": "What longitude is tatman township?", "context": "CREATE TABLE table_18600760_20 (longitude VARCHAR, township VARCHAR)"}, {"answer": "SELECT land___sqmi__ FROM table_18600760_20 WHERE latitude = \"47.548602\"", "question": "What is the land area (sqmi) for the township at longtidue 47.548602?", "context": "CREATE TABLE table_18600760_20 (land___sqmi__ VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT COUNT(ansi_code) FROM table_18600760_20 WHERE latitude = \"46.415037\"", "question": "How many ansi codes are there for longitude 46.415037?", "context": "CREATE TABLE table_18600760_20 (ansi_code VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT water__sqmi_ FROM table_18600760_20 WHERE latitude = \"48.423224\"", "question": "What is the water area (sqmi) for the township at latitude 48.423224?", "context": "CREATE TABLE table_18600760_20 (water__sqmi_ VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT COUNT(ansi_code) FROM table_18600760_20 WHERE latitude = \"48.142938\"", "question": "How many ansi codes are there for latitude 48.142938?", "context": "CREATE TABLE table_18600760_20 (ansi_code VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT township FROM table_18600760_8 WHERE county = \"Kidder\"", "question": "Name the township for kidder", "context": "CREATE TABLE table_18600760_8 (township VARCHAR, county VARCHAR)"}, {"answer": "SELECT latitude FROM table_18600760_8 WHERE geo_id = 3810536900", "question": "Name the latitude for  3810536900", "context": "CREATE TABLE table_18600760_8 (latitude VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT latitude FROM table_18600760_8 WHERE geo_id = 3809935740", "question": "Name the latitude for 3809935740", "context": "CREATE TABLE table_18600760_8 (latitude VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT COUNT(county) FROM table_18600760_8 WHERE pop__2010_ = 90", "question": "Name the number of county for 90 population", "context": "CREATE TABLE table_18600760_8 (county VARCHAR, pop__2010_ VARCHAR)"}, {"answer": "SELECT final__bronze_medal_match FROM table_18602462_21 WHERE quarterfinals = \"Houdet ( FRA ) W 6-2, 6-1\"", "question": "When houdet ( fra ) w 6-2, 6-1 is the quarterfinals what is the final/bronze medal match?", "context": "CREATE TABLE table_18602462_21 (final__bronze_medal_match VARCHAR, quarterfinals VARCHAR)"}, {"answer": "SELECT round_of_32 FROM table_18602462_21 WHERE round_of_16 = \"Did not advance\"", "question": "When in round of 16 it was did not advance what was it in round of 32?", "context": "CREATE TABLE table_18602462_21 (round_of_32 VARCHAR, round_of_16 VARCHAR)"}, {"answer": "SELECT event FROM table_18602462_21 WHERE final__bronze_medal_match = \"Scheffers ( NED ) L 3-6, 1-6\"", "question": "When scheffers ( ned ) l 3-6, 1-6 is the final/ bronze medal match what was the event?", "context": "CREATE TABLE table_18602462_21 (event VARCHAR, final__bronze_medal_match VARCHAR)"}, {"answer": "SELECT final__bronze_medal_match FROM table_18602462_21 WHERE event = \"Mixed Quad Singles\"", "question": "When mixed quad singles is the event what is the final/bronze medal match?", "context": "CREATE TABLE table_18602462_21 (final__bronze_medal_match VARCHAR, event VARCHAR)"}, {"answer": "SELECT quarterfinals FROM table_18602462_21 WHERE athlete = \"Bas van Erp\"", "question": "When bas van erp was the athlete what was the quarterfinals?", "context": "CREATE TABLE table_18602462_21 (quarterfinals VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT semifinals FROM table_18602462_22 WHERE athlete = \"Dorrie Timmermans-Van Hall\"", "question": "What is the semifinal result for Dorrie Timmermans-Van Hall?", "context": "CREATE TABLE table_18602462_22 (semifinals VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT round_of_16 FROM table_18602462_22 WHERE athlete = \"Jiske Griffioen Esther Vergeer\"", "question": "What is the round of 16 result for Jiske Griffioen Esther Vergeer?", "context": "CREATE TABLE table_18602462_22 (round_of_16 VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT round_of_16 FROM table_18602462_22 WHERE semifinals = \"Vergeer ( NED ) L 0-6, 1-6\"", "question": "The semifinal score of vergeer ( ned ) l 0-6, 1-6 follows a round of 16 result of what?", "context": "CREATE TABLE table_18602462_22 (round_of_16 VARCHAR, semifinals VARCHAR)"}, {"answer": "SELECT COUNT(round_of_32) FROM table_18602462_22 WHERE round_of_16 = \"Polidori ( ITA ) W 6-1, 3-6, 6-3\"", "question": "How many round of 32 results are followed by Polidori ( Ita ) w 6-1, 3-6, 6-3 in the round of 16?", "context": "CREATE TABLE table_18602462_22 (round_of_32 VARCHAR, round_of_16 VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_18607260_6 WHERE team = \"Libertad\"", "question": "Name the maximum points for libertad", "context": "CREATE TABLE table_18607260_6 (points INTEGER, team VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_18607260_6 WHERE losses = 5", "question": "Name the least wins for 5 losses", "context": "CREATE TABLE table_18607260_6 (wins INTEGER, losses VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_18607260_6", "question": "Name the most draws", "context": "CREATE TABLE table_18607260_6 (draws INTEGER)"}, {"answer": "SELECT MIN(played) FROM table_18607260_6", "question": "Name the least played", "context": "CREATE TABLE table_18607260_6 (played INTEGER)"}, {"answer": "SELECT geographical_regions FROM table_18618707_1 WHERE contestant = \"Cristina Pe\u00f1a Garzon\"", "question": "When  cristina pe\u00f1a garzon is the contestant what is the geographical region?", "context": "CREATE TABLE table_18618707_1 (geographical_regions VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT geographical_regions FROM table_18618707_1 WHERE height = \"1.79\"", "question": "When  1.79 is the height what is the geographical region?", "context": "CREATE TABLE table_18618707_1 (geographical_regions VARCHAR, height VARCHAR)"}, {"answer": "SELECT COUNT(contestant) FROM table_18618707_1 WHERE height = \"1.67\"", "question": "When 1.67 is the height how many contestants are there?", "context": "CREATE TABLE table_18618707_1 (contestant VARCHAR, height VARCHAR)"}, {"answer": "SELECT contestant FROM table_18618707_1 WHERE height = \"1.80\" AND geographical_regions = \"El Cibao\"", "question": "When el cibao is the geographical region and the height is 1.80 who is the contestant?", "context": "CREATE TABLE table_18618707_1 (contestant VARCHAR, height VARCHAR, geographical_regions VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_18618707_1 WHERE hometown = \"Toronto\"", "question": "When toronto is the hometown how many height measurements are there?", "context": "CREATE TABLE table_18618707_1 (height VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT 3 AS rd_place_team FROM table_18618672_2 WHERE year = 1955", "question": "What is the 3rd place team for the year of 1955?", "context": "CREATE TABLE table_18618672_2 (year VARCHAR)"}, {"answer": "SELECT sanskrit AS gloss FROM table_186462_1 WHERE western_name = \"Sagittarius\"", "question": "When Sagittarius is the wester name what is the sanskrit gloss?", "context": "CREATE TABLE table_186462_1 (sanskrit VARCHAR, western_name VARCHAR)"}, {"answer": "SELECT COUNT(western_name) FROM table_186462_1 WHERE sanskrit = \"\u0927\u0928\u0941\u0937\"", "question": "When \u0927\u0928\u0941\u0937 is the sankrit how many western names are there?", "context": "CREATE TABLE table_186462_1 (western_name VARCHAR, sanskrit VARCHAR)"}, {"answer": "SELECT actor_actress FROM table_18638067_1 WHERE film_title_used_in_nomination = \"Mrs. Miniver\"", "question": "In the film Mrs. Miniver, what is the actresses name?", "context": "CREATE TABLE table_18638067_1 (actor_actress VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_18638067_1 WHERE actor_actress = \"Teresa Wright\" AND category = \"Best Supporting Actress\"", "question": "What year was Teresa Wright nominated best supporting actress?", "context": "CREATE TABLE table_18638067_1 (year__ceremony_ VARCHAR, actor_actress VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_18638067_1 WHERE film_title_used_in_nomination = \"Working Girl\"", "question": "What category was the movie Working Girl nominated?", "context": "CREATE TABLE table_18638067_1 (category VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT actor_actress FROM table_18638067_1 WHERE film_title_used_in_nomination = \"Going My Way\" AND category = \"Best Supporting Actor\"", "question": "Who was nominated for best supporting actor in the movie Going My Way?", "context": "CREATE TABLE table_18638067_1 (actor_actress VARCHAR, film_title_used_in_nomination VARCHAR, category VARCHAR)"}, {"answer": "SELECT series__number FROM table_18646432_1 WHERE original_air_date = \"November 11, 1996\"", "question": "Name the series number that aired on november 11, 1996", "context": "CREATE TABLE table_18646432_1 (series__number VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT written_by FROM table_18646432_4 WHERE original_air_date = \"September 29, 1999\"", "question": "Who wrote the episode originally aired on September 29, 1999?", "context": "CREATE TABLE table_18646432_4 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_18646432_4 WHERE original_air_date = \"September 29, 1999\"", "question": "What is the name of the episode originally aired on September 29, 1999?", "context": "CREATE TABLE table_18646432_4 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT horizontal_bar FROM table_18662026_1 WHERE rings = \"58.975\"", "question": "If the rings is 58.975, what is the number for the horizontal bar?", "context": "CREATE TABLE table_18662026_1 (horizontal_bar VARCHAR, rings VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_18662026_1 WHERE country = \"United States\"", "question": "How many positions was the United States in?", "context": "CREATE TABLE table_18662026_1 (position VARCHAR, country VARCHAR)"}, {"answer": "SELECT parallel_bars FROM table_18662026_1 WHERE rings = \"60.500\"", "question": "If the rings are 60.500, what is the parallel bars number?", "context": "CREATE TABLE table_18662026_1 (parallel_bars VARCHAR, rings VARCHAR)"}, {"answer": "SELECT COUNT(vault) FROM table_18662026_1 WHERE rings = \"60.000\"", "question": "If the rings number is 60.000, what is the number for the vault?", "context": "CREATE TABLE table_18662026_1 (vault VARCHAR, rings VARCHAR)"}, {"answer": "SELECT COUNT(floor) FROM table_18662026_1 WHERE parallel_bars = \"61.500\"", "question": "If the parallel bars numbers is 61.500, what is the total number for the flood?", "context": "CREATE TABLE table_18662026_1 (floor VARCHAR, parallel_bars VARCHAR)"}, {"answer": "SELECT most_recent_date FROM table_18676973_3 WHERE country = \"United Kingdom\"", "question": "When united kingdom is the country what is the most recent date?", "context": "CREATE TABLE table_18676973_3 (most_recent_date VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(combo) FROM table_18676973_3 WHERE rank = \"3\"", "question": "When 3 is the rank what is the highest combo?", "context": "CREATE TABLE table_18676973_3 (combo INTEGER, rank VARCHAR)"}, {"answer": "SELECT most_recent_cyclist FROM table_18676973_3 WHERE rank = \"12\"", "question": "When 12 is the rank who is the most recent cyclist?", "context": "CREATE TABLE table_18676973_3 (most_recent_cyclist VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(different_holders) FROM table_18676973_3 WHERE jerseys = 155", "question": "When 155 is the jersey what is the highest amount of different holders?", "context": "CREATE TABLE table_18676973_3 (different_holders INTEGER, jerseys VARCHAR)"}, {"answer": "SELECT upper_index_kcal__nm_3 FROM table_1868929_1 WHERE lower_index_mj__nm_3 = \"62.47\"", "question": " Name the upper index kcal/nm3 for 62.47", "context": "CREATE TABLE table_1868929_1 (upper_index_kcal__nm_3 VARCHAR, lower_index_mj__nm_3 VARCHAR)"}, {"answer": "SELECT fuel_gas FROM table_1868929_1 WHERE upper_index_mj__nm_3 = \"92.32\"", "question": "Name the fuel gas for upper index mj/nm3 for 92.32", "context": "CREATE TABLE table_1868929_1 (fuel_gas VARCHAR, upper_index_mj__nm_3 VARCHAR)"}, {"answer": "SELECT lower_index_kcal__nm_3 FROM table_1868929_1 WHERE upper_index_mj__nm_3 = \"61.32\"", "question": "Name the lower index kcal/ nm3 for 61.32", "context": "CREATE TABLE table_1868929_1 (lower_index_kcal__nm_3 VARCHAR, upper_index_mj__nm_3 VARCHAR)"}, {"answer": "SELECT qb_rating FROM table_18686317_1 WHERE comp__percentage = \"62.0\"", "question": "What is the Quarterback rating of the player who got a comp percentage of 62.0?", "context": "CREATE TABLE table_18686317_1 (qb_rating VARCHAR, comp__percentage VARCHAR)"}, {"answer": "SELECT rank FROM table_18686317_1 WHERE yardage = 58179", "question": "What is the rank of the player who got 58179 in yardage?", "context": "CREATE TABLE table_18686317_1 (rank VARCHAR, yardage VARCHAR)"}, {"answer": "SELECT leagues FROM table_18686317_1 WHERE comp__percentage = \"54.0\"", "question": "In which league would you find the player with a comp percentage of 54.0?", "context": "CREATE TABLE table_18686317_1 (leagues VARCHAR, comp__percentage VARCHAR)"}, {"answer": "SELECT nation FROM table_18666752_3 WHERE rider = \"Phillip Dutton\"", "question": "Which nation is where rider phillip dutton from?", "context": "CREATE TABLE table_18666752_3 (nation VARCHAR, rider VARCHAR)"}, {"answer": "SELECT nation FROM table_18666752_3 WHERE horse = \"Parkmore Ed\"", "question": "Which nation is where the horse parkmore ed is?", "context": "CREATE TABLE table_18666752_3 (nation VARCHAR, horse VARCHAR)"}, {"answer": "SELECT total_team_penalties FROM table_18666752_3 WHERE cross_country_penalties = \"30.40\"", "question": "How many total team penalties are there when cross country penalties is 30.40?", "context": "CREATE TABLE table_18666752_3 (total_team_penalties VARCHAR, cross_country_penalties VARCHAR)"}, {"answer": "SELECT rider FROM table_18666752_3 WHERE horse = \"Galan De Sauvagere\"", "question": "Who is the rider where the horse is galan de sauvagere?", "context": "CREATE TABLE table_18666752_3 (rider VARCHAR, horse VARCHAR)"}, {"answer": "SELECT COUNT(total_penalties) FROM table_18666752_3 WHERE rider = \"Eric Vigeanel\"", "question": "How many penalties are there when Eric Vigeanel is the rider?", "context": "CREATE TABLE table_18666752_3 (total_penalties VARCHAR, rider VARCHAR)"}, {"answer": "SELECT record_label FROM table_18710512_3 WHERE single = \"I Can't Stay\"", "question": "What record label corresponds to the single \"I can't stay\"?", "context": "CREATE TABLE table_18710512_3 (record_label VARCHAR, single VARCHAR)"}, {"answer": "SELECT format FROM table_18710512_3 WHERE other_details = \"2000 copies\"", "question": "What format for the release that had 2000 copies?", "context": "CREATE TABLE table_18710512_3 (format VARCHAR, other_details VARCHAR)"}, {"answer": "SELECT single FROM table_18710512_3 WHERE date = 2008 AND other_details = \"4000 copies\"", "question": "What single(s) released in 2008 and had 4000 copies?", "context": "CREATE TABLE table_18710512_3 (single VARCHAR, date VARCHAR, other_details VARCHAR)"}, {"answer": "SELECT other_details FROM table_18710512_3 WHERE single = \"My Love Will Follow Me\"", "question": "What were the \"other details\" (number released) for \"is my love will follow me\"?", "context": "CREATE TABLE table_18710512_3 (other_details VARCHAR, single VARCHAR)"}, {"answer": "SELECT date FROM table_18710512_3 WHERE single = \"Moped Girls\"", "question": "What year was \"moped girls\" released?", "context": "CREATE TABLE table_18710512_3 (date VARCHAR, single VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_18703133_1 WHERE points = 23", "question": "Name the least amount of losses for 23 points", "context": "CREATE TABLE table_18703133_1 (losses INTEGER, points VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_18703133_1 WHERE team = \"Sport Colombia\"", "question": "Name the most wins for sport colombia", "context": "CREATE TABLE table_18703133_1 (wins INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_18703133_1 WHERE losses = 5", "question": "Namr the total number of played for 5 losses", "context": "CREATE TABLE table_18703133_1 (played VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(scored) FROM table_18703133_6 WHERE position = 6", "question": "What is scored with the position of 6?", "context": "CREATE TABLE table_18703133_6 (scored INTEGER, position VARCHAR)"}, {"answer": "SELECT losses FROM table_18703133_6 WHERE team = \"Tembetary\"", "question": "How many losses are there for team tembetary?", "context": "CREATE TABLE table_18703133_6 (losses VARCHAR, team VARCHAR)"}, {"answer": "SELECT wins FROM table_18703133_6 WHERE points = 24", "question": "How many wins have 24 points?", "context": "CREATE TABLE table_18703133_6 (wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_18703133_6", "question": "How many wins?", "context": "CREATE TABLE table_18703133_6 (wins INTEGER)"}, {"answer": "SELECT original_air_date FROM table_18712423_3 WHERE directed_by = \"Ian Barry\" AND written_by = \"Philip Dalkin\"", "question": "What is the original air date of the episode directed by Ian Barry and written by Philip Dalkin?", "context": "CREATE TABLE table_18712423_3 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MIN(series_episode) FROM table_18712423_3 WHERE viewers__millions_ = \"1.215\"", "question": "What is the show episode number of the episode that reached 1.215 millions views?", "context": "CREATE TABLE table_18712423_3 (series_episode INTEGER, viewers__millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_18712423_3 WHERE written_by = \"Matt Ford\"", "question": "Who directed the episode written by Matt Ford?", "context": "CREATE TABLE table_18712423_3 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(players_left_after_round_1) FROM table_18733480_1 WHERE team_1 = \"Wykeham Wonderers\"", "question": "How many times was team 1 the wykeham wonderers?", "context": "CREATE TABLE table_18733480_1 (players_left_after_round_1 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT air_date FROM table_18733480_1 WHERE team_1 = \"Wykeham Wonderers\"", "question": "What is the original air date that had the wykeham wonderers as team 1?", "context": "CREATE TABLE table_18733480_1 (air_date VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_18733480_1 WHERE team_2 = \"Chalkheads\"", "question": "Who was team 1 when the chalkheads were team 2?", "context": "CREATE TABLE table_18733480_1 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT title FROM table_18734298_1 WHERE production_code = \"1ACX09\"", "question": "What is the title of the production code 1acx09?", "context": "CREATE TABLE table_18734298_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_18734298_1 WHERE directed_by = \"Rob Renzetti\"", "question": "How many series were directed by Rob Renzetti?", "context": "CREATE TABLE table_18734298_1 (no_in_series VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_18734298_1 WHERE no_in_series = 14", "question": "Who wrote the series number 14?", "context": "CREATE TABLE table_18734298_1 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(winnings) FROM table_1875157_1 WHERE starts = 32", "question": "Did this driver have any winnings the season he had 32 starts", "context": "CREATE TABLE table_1875157_1 (winnings VARCHAR, starts VARCHAR)"}, {"answer": "SELECT winnings FROM table_1875157_1 WHERE position = \"33rd\"", "question": "How many wins in the season he finished 33rd", "context": "CREATE TABLE table_1875157_1 (winnings VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(top_10) FROM table_1875157_1", "question": "What is the lowest number of top 10 finishes", "context": "CREATE TABLE table_1875157_1 (top_10 INTEGER)"}, {"answer": "SELECT MAX(poles) FROM table_1875157_1 WHERE year = 2000", "question": "How many poles in the year 2000", "context": "CREATE TABLE table_1875157_1 (poles INTEGER, year VARCHAR)"}, {"answer": "SELECT avg_finish FROM table_1875157_2 WHERE winnings = \"$1,400\"", "question": "What is the average finish for winnings of $1,400?", "context": "CREATE TABLE table_1875157_2 (avg_finish VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT MAX(starts) FROM table_1875157_2 WHERE avg_finish = \"16.5\"", "question": "What is the maximum starts that result in an average finish of 16.5?", "context": "CREATE TABLE table_1875157_2 (starts INTEGER, avg_finish VARCHAR)"}, {"answer": "SELECT MIN(starts) FROM table_1875157_2 WHERE winnings = \"$690,321\"", "question": "How many starts were there when the winnings are $690,321?", "context": "CREATE TABLE table_1875157_2 (starts INTEGER, winnings VARCHAR)"}, {"answer": "SELECT other_mozilla FROM table_1876262_10 WHERE safari = \"3.76%\"", "question": "If Safari is 3.76%, what is the other Mozilla amount?", "context": "CREATE TABLE table_1876262_10 (other_mozilla VARCHAR, safari VARCHAR)"}, {"answer": "SELECT other_mozilla FROM table_1876262_10 WHERE firefox = \"30.45%\"", "question": "If Firefox is 30.45%, what is the other Mozilla amount?", "context": "CREATE TABLE table_1876262_10 (other_mozilla VARCHAR, firefox VARCHAR)"}, {"answer": "SELECT safari FROM table_1876262_10 WHERE internet_explorer = \"47.22%\"", "question": "If Internet Explorer is 47.22%, what is the Safari total?", "context": "CREATE TABLE table_1876262_10 (safari VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT COUNT(other_mozilla) FROM table_1876262_10 WHERE period = \"September 2009\"", "question": "For period September 2009, what is the other Mozilla total number?", "context": "CREATE TABLE table_1876262_10 (other_mozilla VARCHAR, period VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_1876825_2 WHERE written_by = \"David Richardson\" AND directed_by = \"Todd Holland\"", "question": "Name the total number of production code by david richardson and todd holland", "context": "CREATE TABLE table_1876825_2 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_1876825_2 WHERE original_air_date = \"March 19, 2000\"", "question": "Name the total number of series for march 19, 2000", "context": "CREATE TABLE table_1876825_2 (no_in_series VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_1876825_3 WHERE original_air_date = \"February 25, 2001\"", "question": "What episode number in the series originally aired on February 25, 2001?", "context": "CREATE TABLE table_1876825_3 (no_in_series VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_1876825_3 WHERE production_code = \"06-00-218\"", "question": "What is the name of the episode with the production code of 06-00-218?", "context": "CREATE TABLE table_1876825_3 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT production_code FROM table_1876825_3 WHERE no_in_series = 26", "question": "What is the production code for episode 26 in the series?", "context": "CREATE TABLE table_1876825_3 (production_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT production_code FROM table_1876825_3 WHERE no_in_season = 6", "question": "What is the production code for episode 6 in the season?", "context": "CREATE TABLE table_1876825_3 (production_code VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT title FROM table_1876825_8 WHERE no_in_season = 2", "question": "what is the title no in season 2?", "context": "CREATE TABLE table_1876825_8 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_18788823_5 WHERE outgoing_manager = \"Micky Adams\"", "question": "What date did Micky Adams vacate his position?", "context": "CREATE TABLE table_18788823_5 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_18788823_5 WHERE date_of_vacancy = \"4 November 2008\"", "question": "Which vacancy happened on 4 November 2008?", "context": "CREATE TABLE table_18788823_5 (position_in_table VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT COUNT(position_in_table) FROM table_18788823_5 WHERE outgoing_manager = \"Keith Downing\"", "question": "How many times did Keith Downing depart a position?", "context": "CREATE TABLE table_18788823_5 (position_in_table VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT team FROM table_18788823_5 WHERE date_of_appointment = \"23 December 2008\"", "question": "Which team appointed a person on 23 December 2008?", "context": "CREATE TABLE table_18788823_5 (team VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_18788823_5 WHERE team = \"Milton Keynes Dons\"", "question": "What date did the Milton Keynes Dons appoint?", "context": "CREATE TABLE table_18788823_5 (date_of_appointment VARCHAR, team VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_18788823_5 WHERE date_of_vacancy = \"16 February 2009\"", "question": "Which vacancy occurred on 16 February 2009?", "context": "CREATE TABLE table_18788823_5 (position_in_table VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT title FROM table_1876825_5 WHERE production_code = \"06-02-407\"", "question": "What is title of episode 06-02-407?", "context": "CREATE TABLE table_1876825_5 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_1876825_5 WHERE production_code = \"06-02-406\"", "question": "What is title of episode 06-02-406?", "context": "CREATE TABLE table_1876825_5 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_1876825_5 WHERE original_air_date = \"March 2, 2003\"", "question": "What is title of episode aired on March 2, 2003?", "context": "CREATE TABLE table_1876825_5 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT written_by FROM table_1876825_5 WHERE no_in_series = 74", "question": "Who wrote episode 74?", "context": "CREATE TABLE table_1876825_5 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_18784280_3 WHERE team = \"Watford\"", "question": "Which position in the table is the team watford?", "context": "CREATE TABLE table_18784280_3 (position_in_table VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_1876825_7 WHERE production_code = \"06-04-621\"", "question": "Name the number of number in series for production code of 06-04-621", "context": "CREATE TABLE table_1876825_7 (no_in_series VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_1876825_7 WHERE original_air_date = \"May 8, 2005\"", "question": "Name the total number of written by for original air date for may 8, 2005", "context": "CREATE TABLE table_1876825_7 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_18813011_6 WHERE date = \"July 11\"", "question": "What was the place and how many people attended the game on July 11?", "context": "CREATE TABLE table_18813011_6 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_18813011_6 WHERE date = \"July 26\"", "question": "Who had the most assist and how many on July 26?", "context": "CREATE TABLE table_18813011_6 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_18813011_6 WHERE record = \"13-11\"", "question": "Who had the high assist in the game where the record is 13-11?", "context": "CREATE TABLE table_18813011_6 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_18795125_6 WHERE position_in_table = \"23rd\"", "question": "At what date did the 23rd manager vacate the position?", "context": "CREATE TABLE table_18795125_6 (date_of_vacancy VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_18795125_6 WHERE outgoing_manager = \"Simon Davies\"", "question": "What was the date of appointment for the manager that replaced Simon Davies? ", "context": "CREATE TABLE table_18795125_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_18795125_6 WHERE position_in_table = \"23rd\"", "question": "What was the date of appointment for the manager of the 23rd team?", "context": "CREATE TABLE table_18795125_6 (date_of_appointment VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT COUNT(replaced_by) FROM table_18795125_6 WHERE outgoing_manager = \"Alan Buckley\"", "question": "How many categories for, replaced by, exist when the outgoing manager is Alan Buckley? ", "context": "CREATE TABLE table_18795125_6 (replaced_by VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT driver FROM table_18811741_15 WHERE starts = 3", "question": "Which driver starts 3?", "context": "CREATE TABLE table_18811741_15 (driver VARCHAR, starts VARCHAR)"}, {"answer": "SELECT COUNT(podiums) FROM table_18811741_15 WHERE stage_wins = 18", "question": "How many podiums for the driver with 18 stage wins?", "context": "CREATE TABLE table_18811741_15 (podiums VARCHAR, stage_wins VARCHAR)"}, {"answer": "SELECT MAX(pos) FROM table_18811741_15 WHERE podiums = 1", "question": "What is the highest pos for a driver with 1 podium?", "context": "CREATE TABLE table_18811741_15 (pos INTEGER, podiums VARCHAR)"}, {"answer": "SELECT tv_network_s_ FROM table_18821196_1 WHERE weekly_schedule = \"Monday to Thursday @ 11:00 pm\"", "question": "What is every TV network with a weekly schedule of Monday to Thursday @ 11:00 pm?", "context": "CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, weekly_schedule VARCHAR)"}, {"answer": "SELECT country FROM table_18821196_1 WHERE tv_network_s_ = \"AXN India\"", "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 weekly_schedule FROM table_18821196_1 WHERE country = \"Norway\"", "question": "What is every weekly schedule in the country of Norway?", "context": "CREATE TABLE table_18821196_1 (weekly_schedule VARCHAR, country VARCHAR)"}, {"answer": "SELECT tv_network_s_ FROM table_18821196_1 WHERE country = \"Belgium\"", "question": "What is every TV network in Belgium?", "context": "CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT status FROM table_18821196_1 WHERE weekly_schedule = \"Monday to Thursday @ 11:00 pm\"", "question": "What is every status with a weekly schedule of Monday to Thursday @ 11:00 pm?", "context": "CREATE TABLE table_18821196_1 (status VARCHAR, weekly_schedule VARCHAR)"}, {"answer": "SELECT weekly_schedule FROM table_18821196_1 WHERE tv_network_s_ = \"Viasat 4\"", "question": "What is every weekly schedule of TV network Viasat 4?", "context": "CREATE TABLE table_18821196_1 (weekly_schedule VARCHAR, tv_network_s_ VARCHAR)"}, {"answer": "SELECT prize_fund FROM table_18828487_1 WHERE venue = \"RWE-Sporthalle, M\u00fclheim\"", "question": "How much was the prize money for  rwe-sporthalle, m\u00fclheim ?", "context": "CREATE TABLE table_18828487_1 (prize_fund VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(runner_up) FROM table_18828487_1 WHERE year = 2009", "question": "In 2009, how many were runner-up?", "context": "CREATE TABLE table_18828487_1 (runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT champion FROM table_18828487_1 WHERE venue = \"Stadthalle Dinslaken, Dinslaken\"", "question": "How much does the champion get for stadthalle dinslaken, dinslaken?", "context": "CREATE TABLE table_18828487_1 (champion VARCHAR, venue VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_18823880_10 WHERE release_date = \"September 2009\" AND part_number_s_ = \"BY80607002529AF\"", "question": "When by80607002529af is the part number and september 2009 is the release date what is the l2 cache?", "context": "CREATE TABLE table_18823880_10 (l2_cache VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT socket FROM table_18823880_10 WHERE part_number_s_ = \"BY80607002907AHBX80607I7720QM\"", "question": "When by80607002907ahbx80607i7720qm is the part number what is the socket?", "context": "CREATE TABLE table_18823880_10 (socket VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT mult FROM table_18823880_10 WHERE sspec_number = \"SLBLW(B1)\"", "question": "When slblw(b1) is the sspec number what is the mult.?", "context": "CREATE TABLE table_18823880_10 (mult VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_18823880_10 WHERE socket = \"socketG1\"", "question": "When socketg1 is the socket what is the release price in dollars?", "context": "CREATE TABLE table_18823880_10 (release_price___usd__ VARCHAR, socket VARCHAR)"}, {"answer": "SELECT MAX(opponents) FROM table_18847456_2 WHERE date = \"Dec. 19\"", "question": "How many points did the opposing team score on Dec. 19, 1982?", "context": "CREATE TABLE table_18847456_2 (opponents INTEGER, date VARCHAR)"}, {"answer": "SELECT bills_originally_cosponsored FROM table_18852984_2 WHERE all_amendments_cosponsored = 0", "question": "How many bills where originally cosponsored in those years where the total of all amendments cosponsored was 0?", "context": "CREATE TABLE table_18852984_2 (bills_originally_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR)"}, {"answer": "SELECT all_bills_cosponsored FROM table_18852984_2 WHERE bills_originally_cosponsored = 113", "question": "How many bill cosponsored during those years where bills originally cosponsored is 113?", "context": "CREATE TABLE table_18852984_2 (all_bills_cosponsored VARCHAR, bills_originally_cosponsored VARCHAR)"}, {"answer": "SELECT MAX(all_bills_sponsored) FROM table_18852984_2", "question": "What is the greatest number of bills sponsored in any year?", "context": "CREATE TABLE table_18852984_2 (all_bills_sponsored INTEGER)"}, {"answer": "SELECT MIN(cr_no) FROM table_1886270_1", "question": "What is the lowest cr number?", "context": "CREATE TABLE table_1886270_1 (cr_no INTEGER)"}, {"answer": "SELECT built FROM table_1886270_1 WHERE withdrawn = \"2/1939\"", "question": "When 2/1939 is the withdrawn when was it built?", "context": "CREATE TABLE table_1886270_1 (built VARCHAR, withdrawn VARCHAR)"}, {"answer": "SELECT hr_no FROM table_1886270_1 WHERE hr_name = \"River Ness\"", "question": "When river ness is the hr name what is the hr number?", "context": "CREATE TABLE table_1886270_1 (hr_no VARCHAR, hr_name VARCHAR)"}, {"answer": "SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = \"(River Garry)\"", "question": "When (river garry) is the hr name how many builts are there?", "context": "CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR)"}, {"answer": "SELECT MAX(cr_no) FROM table_1886270_1", "question": "What is the highest cr number?", "context": "CREATE TABLE table_1886270_1 (cr_no INTEGER)"}, {"answer": "SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = \"River Ness\"", "question": "When river ness is the hr name how many builts are there?", "context": "CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR)"}, {"answer": "SELECT MAX(opponents) FROM table_18847736_2 WHERE opponent = \"at Minnesota Vikings\"", "question": "How many opponents are at Minnesota Vikings?", "context": "CREATE TABLE table_18847736_2 (opponents INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_18847736_2 WHERE opponent = \"New England Patriots\"", "question": "What is the date when the opponent is the New England Patriots?", "context": "CREATE TABLE table_18847736_2 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_18847736_2 WHERE dolphins_points = 6", "question": "How many dates do the dolphins have 6 points?", "context": "CREATE TABLE table_18847736_2 (date VARCHAR, dolphins_points VARCHAR)"}, {"answer": "SELECT country FROM table_18862490_2 WHERE player = \"Robert Allenby\"", "question": "What country does robert allenby represent?", "context": "CREATE TABLE table_18862490_2 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_18862490_2 WHERE year = 1998", "question": "What score to par won in 1998?", "context": "CREATE TABLE table_18862490_2 (to_par VARCHAR, year VARCHAR)"}, {"answer": "SELECT player FROM table_18862490_2 WHERE score = 64 - 70 - 67 - 69 = 270", "question": "What player(s) had the score of 64-70-67-69=270?", "context": "CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_18862490_2 WHERE score = 64 - 71 - 67 - 67 = 269", "question": "What players had teh score of 64-71-67-67=269?", "context": "CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_18862490_2 WHERE score = 68 - 66 - 68 - 71 = 273", "question": "What is the first yar that someone won with a score of 68-66-68-71=273?", "context": "CREATE TABLE table_18862490_2 (year INTEGER, score VARCHAR)"}, {"answer": "SELECT COUNT(socialist) FROM table_1886589_1 WHERE lead = \"12.6%\"", "question": "How many socialist have a lead of 12.6%?", "context": "CREATE TABLE table_1886589_1 (socialist VARCHAR, lead VARCHAR)"}, {"answer": "SELECT MIN(SOl) FROM table_1888157_1", "question": "What is the lowest SOL?", "context": "CREATE TABLE table_1888157_1 (SOl INTEGER)"}, {"answer": "SELECT MAX(ga) FROM table_1888157_1 WHERE gf = 39", "question": "What is the highest GA when GF is 39?", "context": "CREATE TABLE table_1888157_1 (ga INTEGER, gf VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_18904831_5 WHERE score = \"W 70-66\"", "question": "How many different records were there in the games that ended in w 70-66?", "context": "CREATE TABLE table_18904831_5 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_18904831_5 WHERE high_rebounds = \"Dydek (10)\"", "question": "What was the record of the game in which Dydek (10) did the most high rebounds?", "context": "CREATE TABLE table_18904831_5 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_18904831_5 WHERE high_points = \"Sales (17)\"", "question": "Who did the most high rebounds in the game where Sales (17) did the high points?", "context": "CREATE TABLE table_18904831_5 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT total_footage_remaining_from_missing_episodes__mm AS :ss_ FROM table_1889619_5 WHERE story_no = \"018\" AND source = \"Private individual\"", "question": "When a private individual is the source and 018 is the story number what is the total footage remaining from missing episodes (mm:ss)?", "context": "CREATE TABLE table_1889619_5 (total_footage_remaining_from_missing_episodes__mm VARCHAR, story_no VARCHAR, source VARCHAR)"}, {"answer": "SELECT country_territory FROM table_1889619_5 WHERE story_no = \"032\" AND missing_episodes_with_recovered_footage = \"Episode 4\"", "question": "When episode 4 is the missing episode with recovered footage and the 032 is the story number what is the country/territory?", "context": "CREATE TABLE table_1889619_5 (country_territory VARCHAR, story_no VARCHAR, missing_episodes_with_recovered_footage VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_18894744_5 WHERE record = \"8-3\"", "question": "Name the least game for 8-3", "context": "CREATE TABLE table_18894744_5 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_18894744_5 WHERE record = \"10-4\"", "question": "Name the opponent for record 10-4", "context": "CREATE TABLE table_18894744_5 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_18894744_5 WHERE record = \"7-1\"", "question": "Name the high rebounds for record 7-1", "context": "CREATE TABLE table_18894744_5 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT game FROM table_18894744_5 WHERE date = \"June 16\"", "question": "Name the game for june 16", "context": "CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_18894744_5 WHERE date = \"June 7\"", "question": "Name the game for june 7", "context": "CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_18894744_6 WHERE record = \"19-6\"", "question": "Who did the high rebounds in the game with a 19-6 record?", "context": "CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_18894744_6 WHERE record = \"13-5\"", "question": "Where was the game with a 13-5 record played, and in front of how many people?", "context": "CREATE TABLE table_18894744_6 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_18894744_6 WHERE high_points = \"Douglas (28)\"", "question": "Who did the high rebounds in the game where Douglas (28) did the high points?", "context": "CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_18894744_6 WHERE date = \"July 1\"", "question": "What was the record on the game played on July 1?", "context": "CREATE TABLE table_18894744_6 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_18894744_6 WHERE record = \"17-6\"", "question": "How many opponents was a game with a record 17-6 played against?", "context": "CREATE TABLE table_18894744_6 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT career FROM table_18914438_1 WHERE matches = 60", "question": "What was the career duration of the bowler who played 60 matches?", "context": "CREATE TABLE table_18914438_1 (career VARCHAR, matches VARCHAR)"}, {"answer": "SELECT best FROM table_18914438_1 WHERE maidens = 547 AND overs = \"2755.1\"", "question": "What is the Best score if the Maidens is 547 and Overs is 2755.1?", "context": "CREATE TABLE table_18914438_1 (best VARCHAR, maidens VARCHAR, overs VARCHAR)"}, {"answer": "SELECT overs FROM table_18914438_1 WHERE career = \"1993-2007\"", "question": "What was the Overs score of the career played from 1993-2007?", "context": "CREATE TABLE table_18914438_1 (overs VARCHAR, career VARCHAR)"}, {"answer": "SELECT best FROM table_18914438_1 WHERE career = \"1971-1984\"", "question": "What was the Best score during the game played from 1971-1984?", "context": "CREATE TABLE table_18914438_1 (best VARCHAR, career VARCHAR)"}, {"answer": "SELECT date FROM table_18904831_6 WHERE high_rebounds = \"Dydek (11)\"", "question": "When dydek (11) has the highest rebounds what is the date?", "context": "CREATE TABLE table_18904831_6 (date VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_18904831_6 WHERE high_rebounds = \"McWilliams-Franklin (8)\"", "question": "When mcwilliams-franklin (8) has the highest rebounds what is the date?", "context": "CREATE TABLE table_18904831_6 (date VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_points FROM table_18904831_6 WHERE high_rebounds = \"Dydek (8)\"", "question": "When dydek (8) has the highest rebounds who has the highest amount of points?", "context": "CREATE TABLE table_18904831_6 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT location FROM table_18904831_6 WHERE score = \"W 73-70\"", "question": "When w 73-70 is the score what is the location?", "context": "CREATE TABLE table_18904831_6 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_18904831_7 WHERE record = \"25-8\"", "question": "What was the score in the game that had a record of 25-8?", "context": "CREATE TABLE table_18904831_7 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_18904831_7 WHERE date = \"August 20\"", "question": "What was # of the first game played on August 20?", "context": "CREATE TABLE table_18904831_7 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_18904831_7 WHERE location = \"MCI Center\"", "question": "What were the high points for the game played at the MCI Center?", "context": "CREATE TABLE table_18904831_7 (high_points VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_18904831_7 WHERE record = \"19-6\"", "question": "Where was the game played that had a record of 19-6?", "context": "CREATE TABLE table_18904831_7 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(col__m_) FROM table_18946749_2 WHERE peak = \"Barurumea Ridge\"", "question": "What is the col (m) of the Barurumea Ridge peak? ", "context": "CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR)"}, {"answer": "SELECT MAX(elevation__m_) FROM table_18946749_2 WHERE peak = \"Mount Wilhelm\"", "question": "What is the elevation (m) of the Mount Wilhelm peak? ", "context": "CREATE TABLE table_18946749_2 (elevation__m_ INTEGER, peak VARCHAR)"}, {"answer": "SELECT MIN(col__m_) FROM table_18946749_2 WHERE peak = \"Bewani Mountains High Point\"", "question": "What is the col (m) of the Bewani Mountains High Point peak? ", "context": "CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR)"}, {"answer": "SELECT island FROM table_18946749_1 WHERE peak = \"Mount Wondiwoi\"", "question": "When mount wondiwoi is the peak what is the island?", "context": "CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR)"}, {"answer": "SELECT island FROM table_18946749_1 WHERE peak = \"Mount Gauttier\"", "question": "When mount gauttier is the peak what is the island?", "context": "CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR)"}, {"answer": "SELECT MAX(elevation__m_) FROM table_18946749_1 WHERE peak = \"Mount Kobowre\"", "question": "When mount kobowre is the peak what is the highest elevation in meters?", "context": "CREATE TABLE table_18946749_1 (elevation__m_ INTEGER, peak VARCHAR)"}, {"answer": "SELECT MAX(prominence__m_) FROM table_18946749_1 WHERE peak = \"Mount Gauttier\"", "question": "When mount gauttier is the peak what is the highest prominence in meters?", "context": "CREATE TABLE table_18946749_1 (prominence__m_ INTEGER, peak VARCHAR)"}, {"answer": "SELECT country FROM table_18946749_1 WHERE col__m_ = 44", "question": "When 44 is the col in meters what is the country?", "context": "CREATE TABLE table_18946749_1 (country VARCHAR, col__m_ VARCHAR)"}, {"answer": "SELECT release_date FROM table_1893815_1 WHERE album_number = \"2nd\"", "question": "Name the release date for album # 2nd", "context": "CREATE TABLE table_1893815_1 (release_date VARCHAR, album_number VARCHAR)"}, {"answer": "SELECT label FROM table_1893815_1 WHERE english_title = \"Grown Up Overnight\"", "question": "Name the label for grown up overnight", "context": "CREATE TABLE table_1893815_1 (label VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT label FROM table_1893815_1 WHERE chinese__traditional_ = \"\u60c5\u6b4c\u6c92\u6709\u544a\u8a34\u4f60\"", "question": "Name the label for traditional chinese  \u60c5\u6b4c\u6c92\u6709\u544a\u8a34\u4f60", "context": "CREATE TABLE table_1893815_1 (label VARCHAR, chinese__traditional_ VARCHAR)"}, {"answer": "SELECT COUNT(chinese__traditional_) FROM table_1893815_1 WHERE album_number = \"6th\"", "question": "Name the number of traditional chinese for album number 6th", "context": "CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, album_number VARCHAR)"}, {"answer": "SELECT chinese__traditional_ FROM table_1893815_1 WHERE chinese__simplified_ = \"\u7f8e\u4e3d\u4eba\u751f\"", "question": "Name the chinese traditional for \u7f8e\u4e3d\u4eba\u751f", "context": "CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, chinese__simplified_ VARCHAR)"}, {"answer": "SELECT english_title FROM table_1893815_1 WHERE album_number = \"2nd\"", "question": "Name the english title for album # 2nd", "context": "CREATE TABLE table_1893815_1 (english_title VARCHAR, album_number VARCHAR)"}, {"answer": "SELECT COUNT(samples_taken) FROM table_18943444_1 WHERE product = \"\u5b30\u5e7c\u5152\u914d\u65b9\u4e73\u7c892\u6bb5\u57fa\u7c89\"", "question": "How many samples were taken of \u5b30\u5e7c\u5152\u914d\u65b9\u4e73\u7c892\u6bb5\u57fa\u7c89 ?", "context": "CREATE TABLE table_18943444_1 (samples_taken VARCHAR, product VARCHAR)"}, {"answer": "SELECT producer FROM table_18943444_1 WHERE product = \"\u78ca\u78ca\u724c\u5b30\u5e7c\u5152\u914d\u65b9\u4e73\u7c89\"", "question": "What are the producers of  \u78ca\u78ca\u724c\u5b30\u5e7c\u5152\u914d\u65b9\u4e73\u7c89 ?", "context": "CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR)"}, {"answer": "SELECT MIN(samples_taken) FROM table_18943444_1 WHERE product = \"\u8499\u725b\u724c\u5b30\u5e7c\u5152\u914d\u65b9\u4e73\u7c89\"", "question": "What is the smallest amount sampled of product \u8499\u725b\u724c\u5b30\u5e7c\u5152\u914d\u65b9\u4e73\u7c89 ?", "context": "CREATE TABLE table_18943444_1 (samples_taken INTEGER, product VARCHAR)"}, {"answer": "SELECT producer FROM table_18943444_1 WHERE product = \"\u91d1\u5fc5\u6c0f\u724c\u5b30\u5e7c\u5152\u914d\u65b9\u4e73\u7c89\"", "question": "Who is the producer of \u91d1\u5fc5\u6c0f\u724c\u5b30\u5e7c\u5152\u914d\u65b9\u4e73\u7c89 ?", "context": "CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR)"}, {"answer": "SELECT live_births_per_year FROM table_18950570_2 WHERE life_expectancy_females = \"73.3\"", "question": "How many live births per year are there in the period where the life expectancy for females is 73.3?", "context": "CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, life_expectancy_females VARCHAR)"}, {"answer": "SELECT live_births_per_year FROM table_18950570_2 WHERE deaths_per_year = \"998 000\"", "question": "How many births per year are there for the period with 998 000 deaths per year?", "context": "CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, deaths_per_year VARCHAR)"}, {"answer": "SELECT MAX(col__m_) FROM table_18946749_4 WHERE prominence__m_ = 3755", "question": "What is the highest value for col(m) when prominence(m) is 3755?", "context": "CREATE TABLE table_18946749_4 (col__m_ INTEGER, prominence__m_ VARCHAR)"}, {"answer": "SELECT MAX(col__m_) FROM table_18946749_4 WHERE island = \"North island\"", "question": "What is the highest value for col(m) at North Island?", "context": "CREATE TABLE table_18946749_4 (col__m_ INTEGER, island VARCHAR)"}, {"answer": "SELECT MIN(elevation__m_) FROM table_18946749_4 WHERE peak = \"Mount Taylor\"", "question": "What is the lowest elevation(m) for the peak Mount Taylor?", "context": "CREATE TABLE table_18946749_4 (elevation__m_ INTEGER, peak VARCHAR)"}, {"answer": "SELECT COUNT(prominence__m_) FROM table_18946749_4 WHERE rank = 5", "question": "How many values of prominence(m) occur at rank 5?", "context": "CREATE TABLE table_18946749_4 (prominence__m_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT brazil_100_percentage__percent_of_the_population_ FROM table_18950570_4 WHERE age_group = \"15-17\"", "question": "what ae all of the brazil 100% where the age group is 15-17?", "context": "CREATE TABLE table_18950570_4 (brazil_100_percentage__percent_of_the_population_ VARCHAR, age_group VARCHAR)"}, {"answer": "SELECT interval_name FROM table_18955077_1 WHERE size__cents_ = 560 AND just_ratio = \"11:8\"", "question": "If the just ratio is 11:8 and the cents size is 560, what is the interval name?", "context": "CREATE TABLE table_18955077_1 (interval_name VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR)"}, {"answer": "SELECT just_ratio FROM table_18955077_1 WHERE just__cents_ = \"84.46\"", "question": "If the just cents is 84.46, what is the just ratio?", "context": "CREATE TABLE table_18955077_1 (just_ratio VARCHAR, just__cents_ VARCHAR)"}, {"answer": "SELECT interval_name FROM table_18955077_1 WHERE just__cents_ = \"701.96\"", "question": "If the just cents is 701.96, what is the interval name?", "context": "CREATE TABLE table_18955077_1 (interval_name VARCHAR, just__cents_ VARCHAR)"}, {"answer": "SELECT MAX(asian_american_population__2010_) FROM table_18963843_1 WHERE combined_statistical_area = \"Kansas City-Overland Park-Kansas City, MO-KS CSA\"", "question": "Name the asian american population 2010 for kansas city-overland park-kansas city, mo-ks csa", "context": "CREATE TABLE table_18963843_1 (asian_american_population__2010_ INTEGER, combined_statistical_area VARCHAR)"}, {"answer": "SELECT _percentage_indian_american FROM table_18963843_1 WHERE asian_american_population__2010_ = 126965", "question": "Name the % indian american for asian population 126965", "context": "CREATE TABLE table_18963843_1 (_percentage_indian_american VARCHAR, asian_american_population__2010_ VARCHAR)"}, {"answer": "SELECT _percentage_asian_american FROM table_18963843_1 WHERE indian_american_population__2010_ = 23526", "question": "Name the % asian american for 23526", "context": "CREATE TABLE table_18963843_1 (_percentage_asian_american VARCHAR, indian_american_population__2010_ VARCHAR)"}, {"answer": "SELECT COUNT(population_density__per_km\u00b2_) FROM table_189598_7 WHERE name = \"Buffalo Narrows\"", "question": "When buffalo narrows is the name how many measurements of population density per kilometer squared are there?", "context": "CREATE TABLE table_189598_7 (population_density__per_km\u00b2_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT land_area__km\u00b2_ FROM table_189598_7 WHERE population__2011_ = 1233", "question": "When 1233 is the population of 2011 what is the land area in kilometers squared?", "context": "CREATE TABLE table_189598_7 (land_area__km\u00b2_ VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT MAX(population__2011_) FROM table_189598_7 WHERE land_area__km\u00b2_ = \"6.00\"", "question": "When 6.00 is the land area in kilometers squared what is the highest population of 2011?", "context": "CREATE TABLE table_189598_7 (population__2011_ INTEGER, land_area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT MIN(population__2011_) FROM table_189598_7 WHERE name = \"Beauval\"", "question": "When beauval is the name what is the lowest population of 2011?", "context": "CREATE TABLE table_189598_7 (population__2011_ INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_189598_7 WHERE change___percentage_ = \"4.5\"", "question": "When 4.5 is the percentage of change how many population counts were made for 2011?", "context": "CREATE TABLE table_189598_7 (population__2011_ VARCHAR, change___percentage_ VARCHAR)"}, {"answer": "SELECT name FROM table_189598_7 WHERE land_area__km\u00b2_ = \"14.85\"", "question": "When 14.85 kilometers squared is the land area what is the name?", "context": "CREATE TABLE table_189598_7 (name VARCHAR, land_area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT state_and_district_of_columbia FROM table_18958648_1 WHERE overweight__incl_obese__adults = \"60.0%\"", "question": "What is every state and District of Columbia with 60.0% overweight or obese adults?", "context": "CREATE TABLE table_18958648_1 (state_and_district_of_columbia VARCHAR, overweight__incl_obese__adults VARCHAR)"}, {"answer": "SELECT overweight__incl_obese__adults FROM table_18958648_1 WHERE obesity_rank = 21", "question": "What are all percentages of overweight or obese adults for obesity rank of 21?", "context": "CREATE TABLE table_18958648_1 (overweight__incl_obese__adults VARCHAR, obesity_rank VARCHAR)"}, {"answer": "SELECT MIN(obesity_rank) FROM table_18958648_1 WHERE state_and_district_of_columbia = \"Utah\"", "question": "What is the least obesity rank for the state of Utah?", "context": "CREATE TABLE table_18958648_1 (obesity_rank INTEGER, state_and_district_of_columbia VARCHAR)"}, {"answer": "SELECT COUNT(state_and_district_of_columbia) FROM table_18958648_1 WHERE overweight__incl_obese__adults = \"65.4%\"", "question": "How many states or District of Columbia have 65.4% overweight or obese adults?", "context": "CREATE TABLE table_18958648_1 (state_and_district_of_columbia VARCHAR, overweight__incl_obese__adults VARCHAR)"}, {"answer": "SELECT overweight__incl_obese__adults FROM table_18958648_1 WHERE obese_children_and_adolescents = \"12.4%\"", "question": "What is every percentage of overweight or obese adults when 12.4% of children and adolescents are obese?", "context": "CREATE TABLE table_18958648_1 (overweight__incl_obese__adults VARCHAR, obese_children_and_adolescents VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_18994724_1 WHERE film_title_used_in_nomination = \"Gomorra\"", "question": "Who directed the film Gomorra?", "context": "CREATE TABLE table_18994724_1 (director_s_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT language_s_ FROM table_18994724_1 WHERE film_title_used_in_nomination = \"Everlasting Moments\"", "question": "What language was spoken in Everlasting Moments?", "context": "CREATE TABLE table_18994724_1 (language_s_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT original_title FROM table_18994724_1 WHERE submitting_country = \"Greece\"", "question": "What is the original title of the film submitted by Greece?", "context": "CREATE TABLE table_18994724_1 (original_title VARCHAR, submitting_country VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_18994724_1 WHERE film_title_used_in_nomination = \"Nuits d'Arabie\"", "question": "Who directed the film Nuits d'arabie?", "context": "CREATE TABLE table_18994724_1 (director_s_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT population__2006_ FROM table_189893_1 WHERE mother_tongue = \"Romanian\"", "question": "What is every value for population (2006) with a Romanian mother tongue?", "context": "CREATE TABLE table_189893_1 (population__2006_ VARCHAR, mother_tongue VARCHAR)"}, {"answer": "SELECT MIN(population__2011_) FROM table_189893_1", "question": "What is the lowest population(2011)?", "context": "CREATE TABLE table_189893_1 (population__2011_ INTEGER)"}, {"answer": "SELECT MIN(population__2006_) FROM table_189893_1 WHERE percentage__2011_ = \"1.06%\"", "question": "What is the lowest population(2006) when there is a 1.06% in 2011?", "context": "CREATE TABLE table_189893_1 (population__2006_ INTEGER, percentage__2011_ VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_189893_1 WHERE percentage__2006_ = \"1.40%\"", "question": "How many values for population(2011) correspond to a 1.40% in 2006?", "context": "CREATE TABLE table_189893_1 (population__2011_ VARCHAR, percentage__2006_ VARCHAR)"}, {"answer": "SELECT percentage__2006_ FROM table_189893_1 WHERE mother_tongue = \"Polish\"", "question": "What is every value for percentage(2006) with a Polish mother tongue?", "context": "CREATE TABLE table_189893_1 (percentage__2006_ VARCHAR, mother_tongue VARCHAR)"}, {"answer": "SELECT club FROM table_18967450_2 WHERE goals = 48", "question": "Which team/s have 48 goals total?", "context": "CREATE TABLE table_18967450_2 (club VARCHAR, goals VARCHAR)"}, {"answer": "SELECT player FROM table_18974269_1 WHERE original_season = \"RW: Key West\" AND eliminated = \"Episode 8\"", "question": "Who was the contestant eliminated on episode 8 of RW: Key West season?", "context": "CREATE TABLE table_18974269_1 (player VARCHAR, original_season VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT player FROM table_18974269_1 WHERE original_season = \"Fresh Meat\" AND gender = \"Female\"", "question": "Who was the female contestant on the Original season of Fresh Meat?", "context": "CREATE TABLE table_18974269_1 (player VARCHAR, original_season VARCHAR, gender VARCHAR)"}, {"answer": "SELECT gender FROM table_18974269_1 WHERE original_season = \"RR: South Pacific\"", "question": "What was the gender of the contestant on RR: South Pacific season?", "context": "CREATE TABLE table_18974269_1 (gender VARCHAR, original_season VARCHAR)"}, {"answer": "SELECT original_season FROM table_18974269_1 WHERE player = \"Evelyn Smith\"", "question": "What was the season where Evelyn Smith was on?", "context": "CREATE TABLE table_18974269_1 (original_season VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(original_australian_performer) FROM table_1901751_1 WHERE original_west_end_performer = \"Jordan Dunne\"", "question": "How many original Australian performers are there when the Original West End Performer is Jordan Dunne?", "context": "CREATE TABLE table_1901751_1 (original_australian_performer VARCHAR, original_west_end_performer VARCHAR)"}, {"answer": "SELECT original_west_end_performer FROM table_1901751_1 WHERE character = \"Martha\"", "question": "Who is the Original west end performer for the character Martha?", "context": "CREATE TABLE table_1901751_1 (original_west_end_performer VARCHAR, character VARCHAR)"}, {"answer": "SELECT original_broadway_performer FROM table_1901751_1 WHERE character = \"Colin Craven\"", "question": "Who is the original broadway performer for the character Colin Craven?", "context": "CREATE TABLE table_1901751_1 (original_broadway_performer VARCHAR, character VARCHAR)"}, {"answer": "SELECT original_west_end_performer FROM table_1901751_1 WHERE character = \"Neville Craven\"", "question": "Who is the original west end performer for the character Neville Craven?", "context": "CREATE TABLE table_1901751_1 (original_west_end_performer VARCHAR, character VARCHAR)"}, {"answer": "SELECT 2005 AS _world_aids_day_benefit_dream_cast FROM table_1901751_1 WHERE original_australian_performer = \"Susan-Ann Walker\"", "question": "Who is the 2005 World AIDS Day Benefit \"Dream\" Cast when the Original Australian performer is Susan-Ann Walker?", "context": "CREATE TABLE table_1901751_1 (original_australian_performer VARCHAR)"}, {"answer": "SELECT original_australian_performer FROM table_1901751_1 WHERE original_west_end_performer = \"Linzi Hateley\"", "question": "Who is the Original Australian performer when the Original West End Performer is Linzi Hateley?", "context": "CREATE TABLE table_1901751_1 (original_australian_performer VARCHAR, original_west_end_performer VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_19001175_1", "question": "Name the minimum wins", "context": "CREATE TABLE table_19001175_1 (wins INTEGER)"}, {"answer": "SELECT country FROM table_19001175_1 WHERE name = \"Hideki Noda Category:Articles with hCards\"", "question": "Name the country for hideki noda category:articles with hcards", "context": "CREATE TABLE table_19001175_1 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(poles) FROM table_19001175_1 WHERE name = \"Stefano Livio Category:Articles with hCards\"", "question": "Name the number of poles for stefano livio category:articles with hcards", "context": "CREATE TABLE table_19001175_1 (poles VARCHAR, name VARCHAR)"}, {"answer": "SELECT points FROM table_19001175_1 WHERE name = \"Thierry Tassin Category:Articles with hCards\"", "question": "Name the points for thierry tassin category:articles with hcards", "context": "CREATE TABLE table_19001175_1 (points VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_19001175_1 WHERE name = \"Michele Rugolo Category:Articles with hCards\"", "question": "Name the number of wins for michele rugolo category:articles with hcards", "context": "CREATE TABLE table_19001175_1 (wins VARCHAR, name VARCHAR)"}, {"answer": "SELECT l_g FROM table_19018191_5 WHERE player = \"Ermengol\"", "question": "Name the lg for ermengol", "context": "CREATE TABLE table_19018191_5 (l_g VARCHAR, player VARCHAR)"}, {"answer": "SELECT nat FROM table_19018191_5 WHERE total_apps = 27", "question": "Name the nat for total apps for 27", "context": "CREATE TABLE table_19018191_5 (nat VARCHAR, total_apps VARCHAR)"}, {"answer": "SELECT COUNT(l_apps) FROM table_19018191_5 WHERE total_g = 8", "question": "Name the number of apps for total g is 8", "context": "CREATE TABLE table_19018191_5 (l_apps VARCHAR, total_g VARCHAR)"}, {"answer": "SELECT player FROM table_19018191_5 WHERE l_apps = 27", "question": "Name the player for l apps is 27", "context": "CREATE TABLE table_19018191_5 (player VARCHAR, l_apps VARCHAR)"}, {"answer": "SELECT country FROM table_19001916_2 WHERE entities = \"EBISA\"", "question": "What are all the countries where the electric company Ebisa has a presence?", "context": "CREATE TABLE table_19001916_2 (country VARCHAR, entities VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_19001916_2 WHERE supply_point = \"Itaipu\"", "question": "In how many countries is Itaipu a supply point for electricity?", "context": "CREATE TABLE table_19001916_2 (country VARCHAR, supply_point VARCHAR)"}, {"answer": "SELECT entities FROM table_19001916_2 WHERE supply_point = \"Itaipu\"", "question": "What are the electric companies drawing power from Itaipu?", "context": "CREATE TABLE table_19001916_2 (entities VARCHAR, supply_point VARCHAR)"}, {"answer": "SELECT asia FROM table_19017269_5 WHERE latin_america_caribbean = \"783 (7.5%)\"", "question": "what will the population of Asia be when Latin America/Caribbean is 783 (7.5%)?", "context": "CREATE TABLE table_19017269_5 (asia VARCHAR, latin_america_caribbean VARCHAR)"}, {"answer": "SELECT europe FROM table_19017269_5 WHERE northern_america = \"482 (4.7%)\"", "question": "what will be the population of Europe when  Northern America is 482 (4.7%)?", "context": "CREATE TABLE table_19017269_5 (europe VARCHAR, northern_america VARCHAR)"}, {"answer": "SELECT COUNT(latin_america_caribbean) FROM table_19017269_5 WHERE asia = \"4,894 (46.1%)\"", "question": "what row is the  population of Latin America/Caribbean when Asia is 4,894 (46.1%)?", "context": "CREATE TABLE table_19017269_5 (latin_america_caribbean VARCHAR, asia VARCHAR)"}, {"answer": "SELECT africa FROM table_19017269_5 WHERE oceania = \"67 (0.6%)\"", "question": "what will be the population of Africa when Oceania is 67 (0.6%)", "context": "CREATE TABLE table_19017269_5 (africa VARCHAR, oceania VARCHAR)"}, {"answer": "SELECT MIN(world) FROM table_19017269_5 WHERE latin_america_caribbean = \"788 (8.1%)\"", "question": "What is population in the world when 788 (8.1%)?", "context": "CREATE TABLE table_19017269_5 (world INTEGER, latin_america_caribbean VARCHAR)"}, {"answer": "SELECT MIN(world) FROM table_19017269_5", "question": "what is the worlds smallest population?", "context": "CREATE TABLE table_19017269_5 (world INTEGER)"}, {"answer": "SELECT MIN(year) FROM table_19047_2", "question": "What is the first year in the competition?", "context": "CREATE TABLE table_19047_2 (year INTEGER)"}, {"answer": "SELECT outcome FROM table_19047_2 WHERE opponent_in_the_final = \"Jennifer Capriati\"", "question": "What is the result in the final versos Jennifer Capriati?", "context": "CREATE TABLE table_19047_2 (outcome VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT championship FROM table_19047_2 WHERE score_in_the_final = \"4\u20136, 7\u20135, 6\u20132\"", "question": "What tournament did she win with a final score of 4\u20136, 7\u20135, 6\u20132?", "context": "CREATE TABLE table_19047_2 (championship VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(duration) FROM table_19061741_3 WHERE name = \"Joj Agpangan*\"", "question": "When joj agpangan* is the name how many duration's are there?", "context": "CREATE TABLE table_19061741_3 (duration VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(age) FROM table_19061741_3 WHERE edition = \"Clash 2010\" AND home_or_representative_town_or_province = \"Davao City\"", "question": "When davao city is the  home or representative town or province and clash 2010 is the edition how many ages are there?", "context": "CREATE TABLE table_19061741_3 (age VARCHAR, edition VARCHAR, home_or_representative_town_or_province VARCHAR)"}, {"answer": "SELECT edition FROM table_19061741_3 WHERE total_days_in_pbb_house = 77 AND status = \"Winner\"", "question": "When winner is the status and  77 is the total days in pbb house what is the edition?", "context": "CREATE TABLE table_19061741_3 (edition VARCHAR, total_days_in_pbb_house VARCHAR, status VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_19061741_3 WHERE duration = \"Days 1-86\"", "question": "When days 1-86 is the duration how many names are there?", "context": "CREATE TABLE table_19061741_3 (name VARCHAR, duration VARCHAR)"}, {"answer": "SELECT duration FROM table_19061741_3 WHERE name = \"Joaqui Mendoza\"", "question": "WHen joaqui mendoza is the name how long is the duration?", "context": "CREATE TABLE table_19061741_3 (duration VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_19061741_3 WHERE home_or_representative_town_or_province = \"Guiguinto, Bulacan\"", "question": "When guiguinto, bulacan is the  home or representative town or province how many names are there?", "context": "CREATE TABLE table_19061741_3 (name VARCHAR, home_or_representative_town_or_province VARCHAR)"}, {"answer": "SELECT written_by FROM table_19068566_1 WHERE production_code = \"3T7458\"", "question": "When 3t7458 is the production code who are the writers?", "context": "CREATE TABLE table_19068566_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT production_code FROM table_19068566_1 WHERE us_viewers__million_ = \"3.39\"", "question": "When there are  3.39 million u.s viewers what is the production code?", "context": "CREATE TABLE table_19068566_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_19068566_1 WHERE production_code = \"3T7461\"", "question": "When 3t7461 is the production code who is the director?", "context": "CREATE TABLE table_19068566_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT score FROM table_19072602_1 WHERE match_no = 4", "question": "What was the score at the end of the match number 4?", "context": "CREATE TABLE table_19072602_1 (score VARCHAR, match_no VARCHAR)"}, {"answer": "SELECT MIN(match_no) FROM table_19072602_1 WHERE team_usa = \"Bill Hoffman\"", "question": "What's the match number where Bill Hoffman plays for Team USA?", "context": "CREATE TABLE table_19072602_1 (match_no INTEGER, team_usa VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_19072602_1 WHERE team_europe = \"Mika Koivuniemi\"", "question": "How many different scores did Team Europe get when Mika Koivuniemi played for them?", "context": "CREATE TABLE table_19072602_1 (score VARCHAR, team_europe VARCHAR)"}, {"answer": "SELECT score FROM table_19072602_1 WHERE team_europe = \"Tore Torgersen\"", "question": "What was the score when Tore Torgersen played for Team Europe?", "context": "CREATE TABLE table_19072602_1 (score VARCHAR, team_europe VARCHAR)"}, {"answer": "SELECT launch_date FROM table_1906515_1 WHERE duration__days_ = \"174.14\"", "question": "Name the launch date for duration days 174.14", "context": "CREATE TABLE table_1906515_1 (launch_date VARCHAR, duration__days_ VARCHAR)"}, {"answer": "SELECT COUNT(3 AS rd_place) FROM table_1906920_1 WHERE host = \"University of Manitoba, Winnipeg, Manitoba\"", "question": "What is the total number of 3rd placed teams when the host is University of Manitoba, Winnipeg, Manitoba?", "context": "CREATE TABLE table_1906920_1 (host VARCHAR)"}, {"answer": "SELECT progressive_total FROM table_19072602_3 WHERE team_usa = \"Tim Mack\"", "question": "When tim mack is on team usa what is the progressive total?", "context": "CREATE TABLE table_19072602_3 (progressive_total VARCHAR, team_usa VARCHAR)"}, {"answer": "SELECT COUNT(team_usa) FROM table_19072602_3 WHERE match_no = 14", "question": "When 14 is the match number how many usa teams are there?", "context": "CREATE TABLE table_19072602_3 (team_usa VARCHAR, match_no VARCHAR)"}, {"answer": "SELECT COUNT(team_europe) FROM table_19072602_3 WHERE team_usa = \"Chris Barnes\"", "question": "When chris barnes is on team usa how many europe teams are there?", "context": "CREATE TABLE table_19072602_3 (team_europe VARCHAR, team_usa VARCHAR)"}, {"answer": "SELECT league FROM table_1908049_1 WHERE year = \"1998/99\"", "question": "in the year 1998/99 what was the league", "context": "CREATE TABLE table_1908049_1 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT reg_season FROM table_1908049_1 WHERE year = \"1995/96\"", "question": "in the year 1995/96 what was the reg. season", "context": "CREATE TABLE table_1908049_1 (reg_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_1908049_1 WHERE playoffs = \"Semifinals\"", "question": "in what playoffs the league was in the semifinals", "context": "CREATE TABLE table_1908049_1 (league VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT year FROM table_1908049_1 WHERE playoffs = \"Champions\"", "question": "what was the year where in the playoffs was champions", "context": "CREATE TABLE table_1908049_1 (year VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT playoffs FROM table_1908049_1 WHERE avg_attendance = 3416", "question": "what where the playoffs where the avg attendance of the team was 3416", "context": "CREATE TABLE table_1908049_1 (playoffs VARCHAR, avg_attendance VARCHAR)"}, {"answer": "SELECT last_top_division_title FROM table_1908877_2 WHERE club = \"Citizen\"", "question": "when did the club Citizen achieve its last top division title?", "context": "CREATE TABLE table_1908877_2 (last_top_division_title VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(top_division_titles) FROM table_1908877_2 WHERE position_in_2012_13 = \"5th\"", "question": "How many clubs achieved the 5th position in 2012-13?", "context": "CREATE TABLE table_1908877_2 (top_division_titles VARCHAR, position_in_2012_13 VARCHAR)"}, {"answer": "SELECT music_by FROM table_191105_3 WHERE episode_title = \"Interplanet Janet\"", "question": "When interplanet janet is the episode title who is the music by?", "context": "CREATE TABLE table_191105_3 (music_by VARCHAR, episode_title VARCHAR)"}, {"answer": "SELECT subject FROM table_191105_3 WHERE performed_by = \"Jaime Aff and Christine Langner\"", "question": "WHen jaime aff and christine langner are the performers what is the subject?", "context": "CREATE TABLE table_191105_3 (subject VARCHAR, performed_by VARCHAR)"}, {"answer": "SELECT first_aired FROM table_191105_3 WHERE subject = \"Skeletal system\"", "question": "If skeletal system is the subject when was it first aired?", "context": "CREATE TABLE table_191105_3 (first_aired VARCHAR, subject VARCHAR)"}, {"answer": "SELECT MIN(first_aired) FROM table_191105_3 WHERE performed_by = \"Zachary Sanders\"", "question": "When zachary sanders is the performer what is the lowerst first aired?", "context": "CREATE TABLE table_191105_3 (first_aired INTEGER, performed_by VARCHAR)"}, {"answer": "SELECT winnings FROM table_1909647_2 WHERE wins = 2", "question": "What's the amount of winnings (in $) in the year with 2 wins?", "context": "CREATE TABLE table_1909647_2 (winnings VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(starts) FROM table_1909647_2 WHERE avg_finish = \"19.3\"", "question": "What's the number of starts in the year with 19.3 average finish?", "context": "CREATE TABLE table_1909647_2 (starts INTEGER, avg_finish VARCHAR)"}, {"answer": "SELECT year FROM table_1909647_2 WHERE team_s_ = \"#14 FitzBradshaw Racing\"", "question": "In what year did the #14 FitzBradshaw Racing compete?", "context": "CREATE TABLE table_1909647_2 (year VARCHAR, team_s_ VARCHAR)"}, {"answer": "SELECT avg_finish FROM table_1909647_2 WHERE year = 2008", "question": "What's the average finish in 2008?", "context": "CREATE TABLE table_1909647_2 (avg_finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_1909647_2 WHERE team_s_ = \"#14 FitzBradshaw Racing\"", "question": "What's #14 FitzBradshaw Racing's top 5 result?", "context": "CREATE TABLE table_1909647_2 (top_5 INTEGER, team_s_ VARCHAR)"}, {"answer": "SELECT first_aired FROM table_191105_4 WHERE performed_by = \"Sue Manchester\"", "question": "What is the date for the episode performed by Sue Manchester?", "context": "CREATE TABLE table_191105_4 (first_aired VARCHAR, performed_by VARCHAR)"}, {"answer": "SELECT music_by FROM table_191105_4 WHERE episode_title = \"Elbow Room\"", "question": "Who is the music by for episode the Elbow Room?", "context": "CREATE TABLE table_191105_4 (music_by VARCHAR, episode_title VARCHAR)"}, {"answer": "SELECT episode_title FROM table_191105_4 WHERE performed_by = \"Essra Mohawk\"", "question": "What is the name of the episode performed by Essra Mohawk", "context": "CREATE TABLE table_191105_4 (episode_title VARCHAR, performed_by VARCHAR)"}, {"answer": "SELECT date_s__of_original_removal FROM table_19114172_11 WHERE new_channel_s_ = \"Five\"", "question": "When five is the new channel what is the date of original removal?", "context": "CREATE TABLE table_19114172_11 (date_s__of_original_removal VARCHAR, new_channel_s_ VARCHAR)"}, {"answer": "SELECT date_s__of_original_removal FROM table_19114172_11 WHERE original_channel = \"BBC Two\"", "question": "When bbc two is the original channel what is the date of original removal?", "context": "CREATE TABLE table_19114172_11 (date_s__of_original_removal VARCHAR, original_channel VARCHAR)"}, {"answer": "SELECT date_of_return FROM table_19114172_11 WHERE new_channel_s_ = \"BBC Two\"", "question": "When bbc two is the new channel what is the date of return?", "context": "CREATE TABLE table_19114172_11 (date_of_return VARCHAR, new_channel_s_ VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_19130829_4 WHERE team__number1 = \"Ilisiakos\"", "question": "What's team #2 in the round where team $1 is Ilisiakos?", "context": "CREATE TABLE table_19130829_4 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_19130829_4 WHERE team__number1 = \"Iraklis\"", "question": "What's the team #2 in the round where team #1 is Iraklis?", "context": "CREATE TABLE table_19130829_4 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_19130829_4 WHERE team__number1 = \"Iraklis\"", "question": "What's the 1st leg result in the round where team #1 is Iraklis?", "context": "CREATE TABLE table_19130829_4 (team__number1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_19130829_4 WHERE team__number2 = \"Panionios\"", "question": "What's the 2nd leg result in the round where Panionios is team #2?", "context": "CREATE TABLE table_19130829_4 (team__number2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_19130829_4 WHERE team__number1 = \"Iraklis\"", "question": "What's the 2nd leg result in the round where team #1 is Iraklis?", "context": "CREATE TABLE table_19130829_4 (team__number1 VARCHAR)"}, {"answer": "SELECT MIN(dma) FROM table_19131921_1 WHERE format = \"Rhythmic Contemporary\"", "question": "What is the dma when the format is rhythmic contemporary?", "context": "CREATE TABLE table_19131921_1 (dma INTEGER, format VARCHAR)"}, {"answer": "SELECT frequency FROM table_19131921_1 WHERE station = \"WLFV-FM\"", "question": "Which frequency is station wlfv-fm?", "context": "CREATE TABLE table_19131921_1 (frequency VARCHAR, station VARCHAR)"}, {"answer": "SELECT station FROM table_19131921_1 WHERE frequency = \"107.3\"", "question": "Which station has the frequency of 107.3?", "context": "CREATE TABLE table_19131921_1 (station VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT MIN(dma) FROM table_19131921_1", "question": "What is dma?", "context": "CREATE TABLE table_19131921_1 (dma INTEGER)"}, {"answer": "SELECT dma FROM table_19131921_1 WHERE branding = \"Big Oldies 107.3\" AND station = \"WARV-FM\"", "question": "What is the dma of branding is big oldies 107.3 with the station warv-fm?", "context": "CREATE TABLE table_19131921_1 (dma VARCHAR, branding VARCHAR, station VARCHAR)"}, {"answer": "SELECT branding FROM table_19131921_1 WHERE format = \"Southern Country\"", "question": "Which branding has the format of southern country?", "context": "CREATE TABLE table_19131921_1 (branding VARCHAR, format VARCHAR)"}, {"answer": "SELECT COUNT(\u65b9\u4f4d_direction) FROM table_1912713_2 WHERE \u6027\u60c5_personality = \"Gentle\"", "question": "What is the total number of gentle personalities?", "context": "CREATE TABLE table_1912713_2 (\u65b9\u4f4d_direction VARCHAR, \u6027\u60c5_personality VARCHAR)"}, {"answer": "SELECT \u610f\u7fa9_meaning FROM table_1912713_2 WHERE \u6027\u60c5_personality = \"Gentle\"", "question": "What is the meaning of a gentle personality?", "context": "CREATE TABLE table_1912713_2 (\u610f\u7fa9_meaning VARCHAR, \u6027\u60c5_personality VARCHAR)"}, {"answer": "SELECT \u5bb6\u65cf_family FROM table_1912713_2 WHERE \u6027\u60c5_personality = \"Gentle\"", "question": "Who in the family has a gentle personality?", "context": "CREATE TABLE table_1912713_2 (\u5bb6\u65cf_family VARCHAR, \u6027\u60c5_personality VARCHAR)"}, {"answer": "SELECT mission_no FROM table_191323_2 WHERE alt_name = \"1962-F01\"", "question": "Which mission number has alternate name 1962-f01", "context": "CREATE TABLE table_191323_2 (mission_no VARCHAR, alt_name VARCHAR)"}, {"answer": "SELECT notes FROM table_191323_2 WHERE nssdc_id_no = \"1959-002A\"", "question": "What are the notes of the satellite whose nssdc id number is 1959-002a?", "context": "CREATE TABLE table_191323_2 (notes VARCHAR, nssdc_id_no VARCHAR)"}, {"answer": "SELECT alt_name FROM table_191323_2 WHERE nssdc_id_no = \"1970-054A\"", "question": "What are the alternative name/s of those satellites whose nssdc id number is 1970-054a?", "context": "CREATE TABLE table_191323_2 (alt_name VARCHAR, nssdc_id_no VARCHAR)"}, {"answer": "SELECT alt_name FROM table_191323_2 WHERE notes = \"Mission failed. Guidance system failed. No orbit.\"", "question": "What are the alternative names of those satellites where the notes are: mission failed. guidance system failed. no orbit.", "context": "CREATE TABLE table_191323_2 (alt_name VARCHAR, notes VARCHAR)"}, {"answer": "SELECT name FROM table_1912276_2 WHERE __750m = \"46.436\"", "question": "If -750m is 46.436, what is the name of the cyclist? ", "context": "CREATE TABLE table_1912276_2 (name VARCHAR, __750m VARCHAR)"}, {"answer": "SELECT __500m FROM table_1912276_2 WHERE name = \"Theo Bos\"", "question": "What is the -500 number for Theo Bos?", "context": "CREATE TABLE table_1912276_2 (__500m VARCHAR, name VARCHAR)"}, {"answer": "SELECT __750m FROM table_1912276_2 WHERE __250m = \"18.852\"", "question": "If the -250m is 18.852, what is the ", "context": "CREATE TABLE table_1912276_2 (__750m VARCHAR, __250m VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_1912276_2 WHERE __750m = \"45.505\"", "question": "If -750 is 45.505, what is the maximum rank?", "context": "CREATE TABLE table_1912276_2 (rank INTEGER, __750m VARCHAR)"}, {"answer": "SELECT region_2 FROM table_191591_5 WHERE number_of_episodes = \"25\" AND dvd_title = \"Catfights and Brawls\"", "question": "Where are there 25 episodes in Catfights and Brawls?", "context": "CREATE TABLE table_191591_5 (region_2 VARCHAR, number_of_episodes VARCHAR, dvd_title VARCHAR)"}, {"answer": "SELECT missouri FROM table_19153842_1 WHERE year = 2002", "question": "Name the missouri for 2002", "context": "CREATE TABLE table_19153842_1 (missouri VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(bangladeshi_population) FROM table_19149550_9 WHERE rank = 7", "question": "How many Bangladeshi citizens are there in the borough ranked at number 7?", "context": "CREATE TABLE table_19149550_9 (bangladeshi_population INTEGER, rank VARCHAR)"}, {"answer": "SELECT london_borough FROM table_19149550_9 WHERE pakistani_population = 7797", "question": "What's the London borough with 7797 Pakistani citizens?", "context": "CREATE TABLE table_19149550_9 (london_borough VARCHAR, pakistani_population VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_19149550_9 WHERE total_asian_population = 33338", "question": "How many boroughs with different ranks have a total Asian population of 33338?", "context": "CREATE TABLE table_19149550_9 (rank VARCHAR, total_asian_population VARCHAR)"}, {"answer": "SELECT chinese_population FROM table_19149550_9 WHERE pakistani_population = 26347", "question": "What's the Chinese population in the borough with 26347 Pakistanis?", "context": "CREATE TABLE table_19149550_9 (chinese_population VARCHAR, pakistani_population VARCHAR)"}, {"answer": "SELECT MIN(total_asian_population) FROM table_19149550_9 WHERE chinese_population = 8109", "question": "How many Asians live in the borough with 8109 Chinese population?", "context": "CREATE TABLE table_19149550_9 (total_asian_population INTEGER, chinese_population VARCHAR)"}, {"answer": "SELECT MAX(bangladeshi_population) FROM table_19149550_9 WHERE rank = 14", "question": "How many Bangladeshi citizens live in the borough ranked at number 14?", "context": "CREATE TABLE table_19149550_9 (bangladeshi_population INTEGER, rank VARCHAR)"}, {"answer": "SELECT africa FROM table_1914090_2 WHERE australia = 94615", "question": "How many members did Africa have the year that Australia had 94615?", "context": "CREATE TABLE table_1914090_2 (africa VARCHAR, australia VARCHAR)"}, {"answer": "SELECT europe FROM table_1914090_2 WHERE america = 403892", "question": "How many members did Europe have the year that America had 403892?", "context": "CREATE TABLE table_1914090_2 (europe VARCHAR, america VARCHAR)"}, {"answer": "SELECT MIN(europe) FROM table_1914090_2 WHERE africa = 7375139", "question": "What is the minimum number of members Europe had at the time Africa had 7375139?", "context": "CREATE TABLE table_1914090_2 (europe INTEGER, africa VARCHAR)"}, {"answer": "SELECT MIN(africa) FROM table_1914090_2 WHERE year = 2001", "question": "What is the minimum number of members Africa had in 2001?", "context": "CREATE TABLE table_1914090_2 (africa INTEGER, year VARCHAR)"}, {"answer": "SELECT MAX(europe) FROM table_1914090_2 WHERE australia = 94615", "question": "What is the most members Europe had when Australia had 94615?", "context": "CREATE TABLE table_1914090_2 (europe INTEGER, australia VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_1914090_2 WHERE europe = 471895", "question": "What is the latest year that Europe had 471895?", "context": "CREATE TABLE table_1914090_2 (year INTEGER, europe VARCHAR)"}, {"answer": "SELECT COUNT(bus_width___bit__) FROM table_19161046_1 WHERE core___mhz__ = 650", "question": "What's the bus width (in bit) of the model whose core is 650 MHz?", "context": "CREATE TABLE table_19161046_1 (bus_width___bit__ VARCHAR, core___mhz__ VARCHAR)"}, {"answer": "SELECT directx FROM table_19161046_1 WHERE code_name = \"RV770 PRO\" AND core___mhz__ > 650.0", "question": "What's the directx of the model with code name RV770 PRO and a core bigger than 650.0 MHz?", "context": "CREATE TABLE table_19161046_1 (directx VARCHAR, code_name VARCHAR, core___mhz__ VARCHAR)"}, {"answer": "SELECT notes FROM table_19161046_1 WHERE model = \"HIS HD4850 (512MB)\"", "question": "What are the notes recorded for the model HIS HD4850 (512MB)?", "context": "CREATE TABLE table_19161046_1 (notes VARCHAR, model VARCHAR)"}, {"answer": "SELECT title FROM table_19161605_2 WHERE _number = 14", "question": "What is the title of episode number 14?", "context": "CREATE TABLE table_19161605_2 (title VARCHAR, _number VARCHAR)"}, {"answer": "SELECT current_ratio FROM table_19166421_1 WHERE net_worth_to_fixed_assets = 621", "question": "If the net worth of fixed assets is 621, what is the current ratio?", "context": "CREATE TABLE table_19166421_1 (current_ratio VARCHAR, net_worth_to_fixed_assets VARCHAR)"}, {"answer": "SELECT score FROM table_19169116_8 WHERE opponent = \"Cleveland\"", "question": "Name the score for opponent of cleveland", "context": "CREATE TABLE table_19169116_8 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_19179465_1 WHERE club = \"Featherstone Rovers\"", "question": "Featherstone Rovers club played a total of how many games?", "context": "CREATE TABLE table_19179465_1 (played VARCHAR, club VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_19179465_1 WHERE points = 34", "question": "How many games were lost when the club got 34 points", "context": "CREATE TABLE table_19179465_1 (lost INTEGER, points VARCHAR)"}, {"answer": "SELECT bp FROM table_19179465_1 WHERE club = \"Halifax\"", "question": "What was the B.P. of club Halifax?", "context": "CREATE TABLE table_19179465_1 (bp VARCHAR, club VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_1920271_2 WHERE championship = \"French Open\"", "question": "What is the first year she played in the french open?", "context": "CREATE TABLE table_1920271_2 (year INTEGER, championship VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_1920271_2 WHERE score = \"6\u20137(5), 6\u20132, 6\u20133\"", "question": "How many times was the score 6\u20137(5), 6\u20132, 6\u20133?", "context": "CREATE TABLE table_1920271_2 (opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT partner FROM table_1920271_3 WHERE championship = \"US Open\" AND outcome = \"Runner-up\"", "question": "Who was her partner at the US Open and they were runner-up?", "context": "CREATE TABLE table_1920271_3 (partner VARCHAR, championship VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT partner FROM table_1920271_3 WHERE outcome = \"Runner-up\" AND championship = \"US Open\"", "question": "Who was her partner at the US Open and they were runner-up?", "context": "CREATE TABLE table_1920271_3 (partner VARCHAR, outcome VARCHAR, championship VARCHAR)"}, {"answer": "SELECT partner FROM table_1920271_3 WHERE surface = \"Clay\"", "question": "Who did she play with on clay?", "context": "CREATE TABLE table_1920271_3 (partner VARCHAR, surface VARCHAR)"}, {"answer": "SELECT COUNT(surface) FROM table_1918850_2 WHERE championship = \"Australian Open\" AND score_in_the_final = \"6\u20133, 4\u20136, 11\u20139\"", "question": "state the number of surface where championship is australian open and score in the final is 6\u20133, 4\u20136, 11\u20139", "context": "CREATE TABLE table_1918850_2 (surface VARCHAR, championship VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT championship FROM table_1918850_2 WHERE opponents_in_the_final = \"Arantxa S\u00e1nchez Vicario Todd Woodbridge\"", "question": "which championship had arantxa s\u00e1nchez vicario todd woodbridge as opponents in the final ", "context": "CREATE TABLE table_1918850_2 (championship VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_1918850_2 WHERE score_in_the_final = \"6-2, 6-3\"", "question": "what is the surface of the final which had score 6-2, 6-3", "context": "CREATE TABLE table_1918850_2 (surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT year FROM table_1918850_2 WHERE opponents_in_the_final = \"Helena Sukov\u00e1 Todd Woodbridge\"", "question": "when were helena sukov\u00e1 todd woodbridge the opponents in the final", "context": "CREATE TABLE table_1918850_2 (year VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT championship FROM table_1918850_2 WHERE outcome = \"Winner\" AND surface = \"Hard\" AND partner = \"Nicole Provis\" AND opponents_in_the_final = \"Helena Sukov\u00e1 Tom Nijssen\"", "question": "which championship had helena sukov\u00e1 tom nijssen as opponents in the final and nicole provis as partner, the surface was hard and the outcome was winner", "context": "CREATE TABLE table_1918850_2 (championship VARCHAR, opponents_in_the_final VARCHAR, partner VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT last_performance FROM table_19189856_1 WHERE first_performance = \"11/15/1909\"", "question": "when was the last performance of the first performance on 11/15/1909", "context": "CREATE TABLE table_19189856_1 (last_performance VARCHAR, first_performance VARCHAR)"}, {"answer": "SELECT COUNT(first_performance) FROM table_19189856_1 WHERE performer = \"Wilfred Engelman category:Articles with hCards\"", "question": "how many first performances where performer is wilfred engelman category:articles with hcards", "context": "CREATE TABLE table_19189856_1 (first_performance VARCHAR, performer VARCHAR)"}, {"answer": "SELECT performer FROM table_19189856_1 WHERE last_performance = \"04/08/1963\"", "question": "who was the performer that did last performance on 04/08/1963", "context": "CREATE TABLE table_19189856_1 (performer VARCHAR, last_performance VARCHAR)"}, {"answer": "SELECT first_performance FROM table_19189856_1 WHERE last_performance = \"03/29/1957\"", "question": "what is the first performance of the last performance on 03/29/1957", "context": "CREATE TABLE table_19189856_1 (first_performance VARCHAR, last_performance VARCHAR)"}, {"answer": "SELECT last_performance FROM table_19189856_1 WHERE performer = \"Leon Varkas category:Articles with hCards\"", "question": "what is the last performance of leon varkas category:articles with hcards", "context": "CREATE TABLE table_19189856_1 (last_performance VARCHAR, performer VARCHAR)"}, {"answer": "SELECT COUNT(finale) FROM table_19210674_1 WHERE english_title = \"Beyond the Realm of Conscience\"", "question": "How many different finales had the English title \"Beyond the Realm of Conscience\"?", "context": "CREATE TABLE table_19210674_1 (finale VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_19210674_1 WHERE chinese_title = \"\u53e4\u9748\u7cbe\u63a2B\"", "question": "What was the maximum average of the episode with a Chinese title \u53e4\u9748\u7cbe\u63a2b?", "context": "CREATE TABLE table_19210674_1 (average INTEGER, chinese_title VARCHAR)"}, {"answer": "SELECT rank FROM table_19210674_1 WHERE hk_viewers = \"2.26 million\"", "question": "How was the episode seen by 2.26 million HK viewers ranked?", "context": "CREATE TABLE table_19210674_1 (rank VARCHAR, hk_viewers VARCHAR)"}, {"answer": "SELECT finale FROM table_19210674_1 WHERE rank = 7", "question": "What is the finale number ranked at number 7?", "context": "CREATE TABLE table_19210674_1 (finale VARCHAR, rank VARCHAR)"}, {"answer": "SELECT conflict FROM table_1921_1 WHERE location = \"Iraq\"", "question": "What is every conflict in Iraq?", "context": "CREATE TABLE table_1921_1 (conflict VARCHAR, location VARCHAR)"}, {"answer": "SELECT branches_involved FROM table_1921_1 WHERE location = \"Afghanistan\"", "question": "What is every branch involved in Afghanistan?", "context": "CREATE TABLE table_1921_1 (branches_involved VARCHAR, location VARCHAR)"}, {"answer": "SELECT conflict FROM table_1921_1 WHERE location = \"Yemen\"", "question": "Which conflicts took place in Yemen?", "context": "CREATE TABLE table_1921_1 (conflict VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(start_of_conflict) FROM table_1921_1 WHERE location = \"Afghanistan\"", "question": "How many conflicts started in Afghanistan?", "context": "CREATE TABLE table_1921_1 (start_of_conflict VARCHAR, location VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_19229713_6 WHERE _number = 16", "question": "How many u.s. viewers (million) have the number 16?", "context": "CREATE TABLE table_19229713_6 (us_viewers__million_ VARCHAR, _number VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_19229713_6 WHERE production_code = \"5.09\"", "question": "How many u.s. viewers  (million) have the production code of 5.09?", "context": "CREATE TABLE table_19229713_6 (us_viewers__million_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(of_which_currently_forests), _km\u00b2 FROM table_19242_5 WHERE land_formation = \"Middle Prut Valley\"", "question": "When middle prut valley is the land formation what is the highest of which currently forests, km\u00b2 ?", "context": "CREATE TABLE table_19242_5 (_km\u00b2 VARCHAR, of_which_currently_forests INTEGER, land_formation VARCHAR)"}, {"answer": "SELECT MIN(series_no) FROM table_19236587_4 WHERE season_no = 2", "question": "What's the series number of the episode with season number 2?", "context": "CREATE TABLE table_19236587_4 (series_no INTEGER, season_no VARCHAR)"}, {"answer": "SELECT series_no FROM table_19236587_4 WHERE uk_viewers__million_ = \"2.43\"", "question": "What's the series number of the episode seen by 2.43 million viewers in the UK?", "context": "CREATE TABLE table_19236587_4 (series_no VARCHAR, uk_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_19236587_4 WHERE series_no = 13", "question": "How many different original air dates does the episode with series number 13 have?", "context": "CREATE TABLE table_19236587_4 (original_air_date VARCHAR, series_no VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_19229713_4 WHERE us_viewers__million_ = \"1.87\"", "question": "Name the number for viewers being 1.87", "context": "CREATE TABLE table_19229713_4 (_number INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_19229713_4 WHERE us_viewers__million_ = \"1.69\"", "question": "Name the production code for viewers for 1.69", "context": "CREATE TABLE table_19229713_4 (production_code VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT launch_date__ddmmyyyy_ FROM table_19246_2 WHERE _up_ = \"5.76 Mbit/s\" AND carrier = \"Orange\"", "question": "whare are al of the launche dates where th carrier is orange and the up is 5.76 mbit/s", "context": "CREATE TABLE table_19246_2 (launch_date__ddmmyyyy_ VARCHAR, _up_ VARCHAR, carrier VARCHAR)"}, {"answer": "SELECT song FROM table_19249824_1 WHERE result = \"Out\" AND country = \"Sweden\"", "question": "With the country of Sweden and the result is out, what is the song?", "context": "CREATE TABLE table_19249824_1 (song VARCHAR, result VARCHAR, country VARCHAR)"}, {"answer": "SELECT language FROM table_19249824_1 WHERE english_translation = \"Hello girl\"", "question": "If the English translation is hello girl, what was the language?", "context": "CREATE TABLE table_19249824_1 (language VARCHAR, english_translation VARCHAR)"}, {"answer": "SELECT connection_speed FROM table_19246_1 WHERE launch_date__ddmmyyyy_ = \"07.06.2005\"", "question": "What was the connection speed when launched on 07.06.2005?", "context": "CREATE TABLE table_19246_1 (connection_speed VARCHAR, launch_date__ddmmyyyy_ VARCHAR)"}, {"answer": "SELECT frequency FROM table_19246_1 WHERE carrier = \"IDC\"", "question": "When the carrier is idc, what are the frequencies?", "context": "CREATE TABLE table_19246_1 (frequency VARCHAR, carrier VARCHAR)"}, {"answer": "SELECT COUNT(carrier) FROM table_19246_1 WHERE frequency = \"900MHz and 1800MHz\" AND launch_date__ddmmyyyy_ = \"14.09.2005\"", "question": "When the launch date is 14.09.2005, and the frequency is 900mhz and 1800mhz, how many carriers are there?", "context": "CREATE TABLE table_19246_1 (carrier VARCHAR, frequency VARCHAR, launch_date__ddmmyyyy_ VARCHAR)"}, {"answer": "SELECT COUNT(standard) FROM table_19246_1 WHERE launch_date__ddmmyyyy_ = \"17.04.2006\"", "question": "How many standards are there, when the launch date was 17.04.2006?", "context": "CREATE TABLE table_19246_1 (standard VARCHAR, launch_date__ddmmyyyy_ VARCHAR)"}, {"answer": "SELECT 2 AS _car_sets FROM table_19255192_2 WHERE total_vehicles = 622", "question": "Name the 2 car sets for 622 ", "context": "CREATE TABLE table_19255192_2 (total_vehicles VARCHAR)"}, {"answer": "SELECT MAX(3 AS _car_sets) FROM table_19255192_2", "question": "Name the most 3 car sets", "context": "CREATE TABLE table_19255192_2 (Id VARCHAR)"}, {"answer": "SELECT MIN(4 AS _car_sets) FROM table_19255192_2", "question": "Name the least 4 car sets", "context": "CREATE TABLE table_19255192_2 (Id VARCHAR)"}, {"answer": "SELECT _percentage FROM table_19260_1 WHERE _percentage_core_moldova = \"4.36_percentage\"", "question": "Name the % for core moldova being 4.36%", "context": "CREATE TABLE table_19260_1 (_percentage VARCHAR, _percentage_core_moldova VARCHAR)"}, {"answer": "SELECT _percentage FROM table_19260_1 WHERE total = 57613", "question": "Name the % for total being 57613", "context": "CREATE TABLE table_19260_1 (_percentage VARCHAR, total VARCHAR)"}, {"answer": "SELECT total FROM table_19260_1 WHERE _percentage_core_moldova = \"4.36_percentage\"", "question": "Name the total for % core moldova for 4.36%", "context": "CREATE TABLE table_19260_1 (total VARCHAR, _percentage_core_moldova VARCHAR)"}, {"answer": "SELECT waveform FROM table_1926240_1 WHERE bit_rate_[_mbit_s_] = \"6.203\"", "question": "What was the waveform of the encoding with a bit rate of 6.203?", "context": "CREATE TABLE table_1926240_1 (waveform VARCHAR, bit_rate_ VARCHAR, _mbit_s_ VARCHAR)"}, {"answer": "SELECT informational_cvbs_lines FROM table_1926240_1 WHERE max_characters__per_page_row_ = 32 AND standard = \"B (global)\"", "question": "What was the informational CVBS Lines of the encoding with max character of 32 and has B (global) standard?", "context": "CREATE TABLE table_1926240_1 (informational_cvbs_lines VARCHAR, max_characters__per_page_row_ VARCHAR, standard VARCHAR)"}, {"answer": "SELECT COUNT(color_system) FROM table_1926240_1 WHERE bit_rate_[_mbit_s_] = \"5.734\"", "question": "How many color systems has a bit rate of 5.734?", "context": "CREATE TABLE table_1926240_1 (color_system VARCHAR, bit_rate_ VARCHAR, _mbit_s_ VARCHAR)"}, {"answer": "SELECT MAX(max_characters__per_page_row_) FROM table_1926240_1 WHERE bit_rate_[_mbit_s_] = \"6.203\"", "question": "What was the max character (per page row) of the encoding with a bit rate of 6.203?", "context": "CREATE TABLE table_1926240_1 (max_characters__per_page_row_ INTEGER, bit_rate_ VARCHAR, _mbit_s_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_19266557_1 WHERE us_viewers__millions_ = \"9.32\"", "question": "With U.S. viewers of 9.32 million, what is the production code?", "context": "CREATE TABLE table_19266557_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_19266557_1 WHERE _number = 7", "question": "For episode number 7, what was the numbers of original air dates?", "context": "CREATE TABLE table_19266557_1 (original_air_date VARCHAR, _number VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_19266557_1 WHERE _number = 6", "question": "How many millions of viewers were there for number 6?", "context": "CREATE TABLE table_19266557_1 (us_viewers__millions_ VARCHAR, _number VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_1929755_1 WHERE winnings = \"$2,089,556\"", "question": "How many teams won $2,089,556?", "context": "CREATE TABLE table_1929755_1 (wins VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT COUNT(top_5) FROM table_1929755_1 WHERE avg_start = \"17.7\"", "question": "HOw many top 5 starts did the team with an average start of 17.7 have?", "context": "CREATE TABLE table_1929755_1 (top_5 VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT team_1 FROM table_19294812_2 WHERE team_2 = \"Koper\"", "question": "Who is team 1 when team 2 is koper?", "context": "CREATE TABLE table_19294812_2 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT MIN(tie_no) FROM table_19294812_2 WHERE team_2 = \"Koper\"", "question": "What is the tie when team 2 is koper?", "context": "CREATE TABLE table_19294812_2 (tie_no INTEGER, team_2 VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_leg) FROM table_19294812_2 WHERE team_1 = \"OFK Belgrade\"", "question": "How many 1st leg have team 1 ofk belgrade?", "context": "CREATE TABLE table_19294812_2 (team_1 VARCHAR)"}, {"answer": "SELECT tie_no FROM table_19294812_2 WHERE team_1 = \"Borac Banja Luka\"", "question": "How many tie no have team 1 as borac banja luka?", "context": "CREATE TABLE table_19294812_2 (tie_no VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT language FROM table_1930857_1 WHERE grades = \"4-12\"", "question": "What's the language in the school teaching grades 4-12?", "context": "CREATE TABLE table_1930857_1 (language VARCHAR, grades VARCHAR)"}, {"answer": "SELECT language FROM table_1930857_1 WHERE year_founded = \"1949\"", "question": "What's the language of the school founded in 1949?", "context": "CREATE TABLE table_1930857_1 (language VARCHAR, year_founded VARCHAR)"}, {"answer": "SELECT gender FROM table_1930857_1 WHERE year_founded = \"1894\"", "question": "What's the gender of the students taught in the school founded in 1894?", "context": "CREATE TABLE table_1930857_1 (gender VARCHAR, year_founded VARCHAR)"}, {"answer": "SELECT language FROM table_1930857_1 WHERE year_founded = \"1874\"", "question": "What's the language of classes in the school founded in 1874?", "context": "CREATE TABLE table_1930857_1 (language VARCHAR, year_founded VARCHAR)"}, {"answer": "SELECT MIN(current) FROM table_19312274_2", "question": "what is the least current", "context": "CREATE TABLE table_19312274_2 (current INTEGER)"}, {"answer": "SELECT COUNT(total) FROM table_19312274_2 WHERE last_current_driver_s_ = \"Narain Karthikeyan ( 2010 )\"", "question": "how many total where last/current driver(s) is narain karthikeyan ( 2010 )", "context": "CREATE TABLE table_19312274_2 (total VARCHAR, last_current_driver_s_ VARCHAR)"}, {"answer": "SELECT COUNT(qatari_female) FROM table_19309079_2 WHERE qatari_male = 97", "question": "How many numbers were recorded for Qatari female when Qatari male was 97?", "context": "CREATE TABLE table_19309079_2 (qatari_female VARCHAR, qatari_male VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_19309079_2 WHERE qatari_male = 97", "question": "How many years were there 97 qatari male births?", "context": "CREATE TABLE table_19309079_2 (year VARCHAR, qatari_male VARCHAR)"}, {"answer": "SELECT national_cup FROM table_19333752_1 WHERE championship = \"21 app / 6 goals\"", "question": "What is the national cup statistics when the Championship is 21 app / 6 goals?", "context": "CREATE TABLE table_19333752_1 (national_cup VARCHAR, championship VARCHAR)"}, {"answer": "SELECT 3 AS rd_placed FROM table_19317584_2 WHERE city_and_venue = \"Kr\u0161ko , Slovenia Matije Gubca Stadium\"", "question": "Who came in 3rd place in Kr\u0161ko , Slovenia Matije Gubca Stadium", "context": "CREATE TABLE table_19317584_2 (city_and_venue VARCHAR)"}, {"answer": "SELECT COUNT(4 AS th_placed) FROM table_19317584_2 WHERE date = \"April 25\"", "question": "How many placed 4th on April 25?", "context": "CREATE TABLE table_19317584_2 (date VARCHAR)"}, {"answer": "SELECT cause_of_destruction FROM table_19342760_1 WHERE name = \"Mausoleum at Halicarnassus\"", "question": "What caused the collapse of the Mausoleum at Halicarnassus?", "context": "CREATE TABLE table_19342760_1 (cause_of_destruction VARCHAR, name VARCHAR)"}, {"answer": "SELECT cause_of_destruction FROM table_19342760_1 WHERE name = \"Temple of Artemis at Ephesus\"", "question": "How was the Temple of Artemis at Ephesus destroyed?", "context": "CREATE TABLE table_19342760_1 (cause_of_destruction VARCHAR, name VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_19359427_6 WHERE team = \"Sheffield United\"", "question": "Who came as a replacement in Sheffield United?", "context": "CREATE TABLE table_19359427_6 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_19359427_6 WHERE position_in_table = \"21st\"", "question": "When was the new manager of the team on 21st position appointed?", "context": "CREATE TABLE table_19359427_6 (date_of_appointment VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_19359427_6 WHERE outgoing_manager = \"Gary Megson\"", "question": "What was Gary Megson's manner of departure?", "context": "CREATE TABLE table_19359427_6 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_19359427_6 WHERE team = \"Plymouth Argyle\"", "question": "When did the old manager vacate his position in Plymouth Argyle?", "context": "CREATE TABLE table_19359427_6 (date_of_vacancy VARCHAR, team VARCHAR)"}, {"answer": "SELECT class_1 - 200 FROM table_1936678_1 WHERE best_uk_team = \"University of Hertfordshire\" AND class_1a = \"University of Warwick\"", "question": "Name the class 1-200 for university of hertfordshire for university of warwick", "context": "CREATE TABLE table_1936678_1 (class_1 VARCHAR, best_uk_team VARCHAR, class_1a VARCHAR)"}, {"answer": "SELECT class_3 FROM table_1936678_1 WHERE location = \"Silverstone\" AND class_1 = \"RMIT University\"", "question": "Name the class 3 for silverstone rmit university", "context": "CREATE TABLE table_1936678_1 (class_3 VARCHAR, location VARCHAR, class_1 VARCHAR)"}, {"answer": "SELECT league FROM table_1939235_1 WHERE regular_season = \"4th, Great Lakes\"", "question": "When 4th, great lakes is the regular season what is the league?", "context": "CREATE TABLE table_1939235_1 (league VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT MAX(division) FROM table_1939235_1 WHERE regular_season = \"5th\"", "question": "When 5th is the regular season what is the highest season?", "context": "CREATE TABLE table_1939235_1 (division INTEGER, regular_season VARCHAR)"}, {"answer": "SELECT playoffs FROM table_1939235_1 WHERE open_cup = \"2nd Round\"", "question": "When it's the 2nd round of the open cup what is the playoffs?", "context": "CREATE TABLE table_1939235_1 (playoffs VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT league FROM table_1939202_2 WHERE avg_attendance = 1452", "question": "What league has an average attendance of 1452?", "context": "CREATE TABLE table_1939202_2 (league VARCHAR, avg_attendance VARCHAR)"}, {"answer": "SELECT year FROM table_1939202_2 WHERE league = \"USL Second division\" AND playoffs = \"Semifinals\" AND us_open_cup = \"Quarterfinals\"", "question": "What year at the US Open Cup quarterfinals, were the playoffs in the semifinals for the USL second division?", "context": "CREATE TABLE table_1939202_2 (year VARCHAR, us_open_cup VARCHAR, league VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_19396259_1 WHERE production_code = \"3T7501\"", "question": "Name the original air date for production code of 3t7501", "context": "CREATE TABLE table_19396259_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_19396259_1 WHERE directed_by = \"Charles Beeson\" AND written_by = \"Jeremy Carver\"", "question": "Name the title directed by charles beeson by jeremy carver", "context": "CREATE TABLE table_19396259_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_19396259_1 WHERE production_code = \"3T7509\"", "question": "Name the directed by for production code for 3t7509", "context": "CREATE TABLE table_19396259_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_19401346_1 WHERE original_air_date = \"October 14, 2008\"", "question": "What's the season number of the episode originally aired on October 14, 2008?", "context": "CREATE TABLE table_19401346_1 (no_in_season VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_19401346_1 WHERE original_air_date = \"September 23, 2008\"", "question": "What's the title of the episode originally aired on September 23, 2008?", "context": "CREATE TABLE table_19401346_1 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_19401346_1 WHERE us_viewers__millions_ = \"9.35\"", "question": "What's the series number of the episode seen by 9.35 million people in the US?", "context": "CREATE TABLE table_19401346_1 (no_in_series INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_19401346_1 WHERE production_code = 10018", "question": "What's the title of the episode with production code 10018?", "context": "CREATE TABLE table_19401346_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_19401346_1 WHERE no_in_season = 1", "question": "How many millions of people in the US saw the episode with season number 1?", "context": "CREATE TABLE table_19401346_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT change_since_2006 FROM table_1940144_1 WHERE urban_area = \"Clane\"", "question": "How many places has the rank changed since 2006, for Clane? ", "context": "CREATE TABLE table_1940144_1 (change_since_2006 VARCHAR, urban_area VARCHAR)"}, {"answer": "SELECT county FROM table_1940144_1 WHERE population_2011 = 17908", "question": "In what counties is the 2011 population 17908?", "context": "CREATE TABLE table_1940144_1 (county VARCHAR, population_2011 VARCHAR)"}, {"answer": "SELECT urban_area FROM table_1940144_1 WHERE population_2011 = 21561", "question": "In what urban area is the 2011 population 21561? ", "context": "CREATE TABLE table_1940144_1 (urban_area VARCHAR, population_2011 VARCHAR)"}, {"answer": "SELECT COUNT(change_since_2006) FROM table_1940144_1 WHERE county = \"county Leitrim\"", "question": "How many places did the rank change since 22006 for County Leitrim? ", "context": "CREATE TABLE table_1940144_1 (change_since_2006 VARCHAR, county VARCHAR)"}, {"answer": "SELECT urban_area FROM table_1940144_1 WHERE population_2011 = 5010", "question": "Which urban area has a 2011 population of 5010? ", "context": "CREATE TABLE table_1940144_1 (urban_area VARCHAR, population_2011 VARCHAR)"}, {"answer": "SELECT event FROM table_19398910_4 WHERE bout_2 = \"Zhang ( CHN ) L 0-5\"", "question": "wich were the events when bout 2 was zhang ( chn ) l 0-5?", "context": "CREATE TABLE table_19398910_4 (event VARCHAR, bout_2 VARCHAR)"}, {"answer": "SELECT bout_1 FROM table_19398910_4 WHERE bout_5 = \"Andreev ( RUS ) W 5-2\"", "question": "Which were the bout 1 when the bout 5 was andreev ( rus ) w 5-2?", "context": "CREATE TABLE table_19398910_4 (bout_1 VARCHAR, bout_5 VARCHAR)"}, {"answer": "SELECT class FROM table_19398910_4 WHERE bout_6 = \"Sanchez ( ESP ) W 5-0\"", "question": "when Sanchez ( esp ) w 5-0 were the bout 6, which were the class?", "context": "CREATE TABLE table_19398910_4 (class VARCHAR, bout_6 VARCHAR)"}, {"answer": "SELECT MIN(attempts) FROM table_19418696_3 WHERE name = \"Bobby Layne\"", "question": "How many attempts for Bobby Layne?", "context": "CREATE TABLE table_19418696_3 (attempts INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(interceptions) FROM table_19418696_3", "question": "What is the highest number of interceptions?", "context": "CREATE TABLE table_19418696_3 (interceptions INTEGER)"}, {"answer": "SELECT MAX(yards) FROM table_19418696_3 WHERE name = \"Bobby Layne\"", "question": "How many total yards for Bobby Layne?", "context": "CREATE TABLE table_19418696_3 (yards INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_19418696_3 WHERE qb_rating = \"72.3\"", "question": "Which QB had a rating of 72.3?", "context": "CREATE TABLE table_19418696_3 (name VARCHAR, qb_rating VARCHAR)"}, {"answer": "SELECT COUNT(qb_rating) FROM table_19418696_3 WHERE completions = 1069", "question": "How many QB ratings for the player with 1069 completions?", "context": "CREATE TABLE table_19418696_3 (qb_rating VARCHAR, completions VARCHAR)"}, {"answer": "SELECT COUNT(yards) FROM table_19418696_3 WHERE qb_rating = \"72.3\"", "question": "How many yardage figures for the player with 72.3 QB rating?", "context": "CREATE TABLE table_19418696_3 (yards VARCHAR, qb_rating VARCHAR)"}, {"answer": "SELECT COUNT(game_site) FROM table_1941183_2 WHERE opponent = \"Barcelona Dragons\"", "question": "In how many locations was the game against Barcelona Dragons played?", "context": "CREATE TABLE table_1941183_2 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(pos) FROM table_19412902_1 WHERE member_association = \"Saudi Arabia\"", "question": "how many posiitions did saudi arabia land on", "context": "CREATE TABLE table_19412902_1 (pos VARCHAR, member_association VARCHAR)"}, {"answer": "SELECT play_off FROM table_19412902_1 WHERE group_stage = 4 AND clubs = 12", "question": "what is the play-off in group stage 4 and clubs is 12", "context": "CREATE TABLE table_19412902_1 (play_off VARCHAR, group_stage VARCHAR, clubs VARCHAR)"}, {"answer": "SELECT COUNT(group_stage) FROM table_19412902_1 WHERE play_off = 0 AND clubs = 12", "question": "which group stage was there 0 play-offs and 12 clubs played in it", "context": "CREATE TABLE table_19412902_1 (group_stage VARCHAR, play_off VARCHAR, clubs VARCHAR)"}, {"answer": "SELECT clubs FROM table_19412902_1 WHERE group_stage = 4 AND member_association = \"Iran\"", "question": "which club in group stage 4 had member association iran", "context": "CREATE TABLE table_19412902_1 (clubs VARCHAR, group_stage VARCHAR, member_association VARCHAR)"}, {"answer": "SELECT written_by FROM table_19417244_2 WHERE us_viewers__millions_ = \"14.39\"", "question": "who write the episode that have 14.39 million viewers", "context": "CREATE TABLE table_19417244_2 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_19417244_2 WHERE us_viewers__millions_ = \"14.59\"", "question": "who directed the episode that have 14.59 million viewers", "context": "CREATE TABLE table_19417244_2 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_19417244_2 WHERE no_in_season = 5", "question": "who write the episode 5 in no. in season", "context": "CREATE TABLE table_19417244_2 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT clubs FROM table_19412902_2 WHERE member_association = \"Korea Republic\"", "question": "How many clubs are there in the Korea Republic?", "context": "CREATE TABLE table_19412902_2 (clubs VARCHAR, member_association VARCHAR)"}, {"answer": "SELECT MIN(pos) FROM table_19412902_2 WHERE points__total_500_ = 279", "question": "At what position is the association with 279 points?", "context": "CREATE TABLE table_19412902_2 (pos INTEGER, points__total_500_ VARCHAR)"}, {"answer": "SELECT MAX(pos) FROM table_19412902_2", "question": "What is the lowest position?", "context": "CREATE TABLE table_19412902_2 (pos INTEGER)"}, {"answer": "SELECT MIN(year_opened) FROM table_1942683_1", "question": "What is the earliest year a house opened?", "context": "CREATE TABLE table_1942683_1 (year_opened INTEGER)"}, {"answer": "SELECT COUNT(house_colour) FROM table_1942683_1 WHERE house_name = \"Hillary\"", "question": "How many house colours are associated with house names of Hillary?", "context": "CREATE TABLE table_1942683_1 (house_colour VARCHAR, house_name VARCHAR)"}, {"answer": "SELECT house_colour FROM table_1942683_1 WHERE house_name = \"Kupe\"", "question": "What is the house colour associated with the house name of Kupe?", "context": "CREATE TABLE table_1942683_1 (house_colour VARCHAR, house_name VARCHAR)"}, {"answer": "SELECT COUNT(house_mascot) FROM table_1942683_1 WHERE house_colour = \"Yellow\"", "question": "How many house mascots are associated with yellow house colours?", "context": "CREATE TABLE table_1942683_1 (house_mascot VARCHAR, house_colour VARCHAR)"}, {"answer": "SELECT title__french_____english_ FROM table_19485888_1 WHERE b_b_ = _corresponds_to_tf1s_broadcast_schedule = 20 / 16", "question": "what is the title of the episode where b b is 20/16", "context": "CREATE TABLE table_19485888_1 (title__french_____english_ VARCHAR, b_b_ VARCHAR, _corresponds_to_tf1s_broadcast_schedule VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_19451173_1 WHERE team = \"Kansas City Chiefs\"", "question": "What is the minimum losses for the Kansas City Chiefs?", "context": "CREATE TABLE table_19451173_1 (losses INTEGER, team VARCHAR)"}, {"answer": "SELECT division_titles FROM table_19451173_1 WHERE win_pct = \".558\"", "question": "How many division titles are there when the win pc is .558?", "context": "CREATE TABLE table_19451173_1 (division_titles VARCHAR, win_pct VARCHAR)"}, {"answer": "SELECT villages FROM table_19457_1 WHERE state_region = \"Magway Region\"", "question": "How many villages are there in the Magway region?", "context": "CREATE TABLE table_19457_1 (villages VARCHAR, state_region VARCHAR)"}, {"answer": "SELECT MAX(town_ships) FROM table_19457_1 WHERE no = 2", "question": "How many townships are there in region number 2?", "context": "CREATE TABLE table_19457_1 (town_ships INTEGER, no VARCHAR)"}, {"answer": "SELECT MAX(town_ships) FROM table_19457_1 WHERE village_groups = 376", "question": "How many townships are there in the region with 376 village groups?", "context": "CREATE TABLE table_19457_1 (town_ships INTEGER, village_groups VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_19487922_1 WHERE country = \"Netherlands\"", "question": "How many poles for the Netherlands?", "context": "CREATE TABLE table_19487922_1 (poles INTEGER, country VARCHAR)"}, {"answer": "SELECT seasons FROM table_19487922_1 WHERE country = \"Monaco\"", "question": "How many seasons for Monaco?", "context": "CREATE TABLE table_19487922_1 (seasons VARCHAR, country VARCHAR)"}, {"answer": "SELECT name FROM table_19487922_1 WHERE country = \"France\" AND race_entries__starts_ = \"10\"", "question": "Who is the competitor from France with 10 starts?", "context": "CREATE TABLE table_19487922_1 (name VARCHAR, country VARCHAR, race_entries__starts_ VARCHAR)"}, {"answer": "SELECT COUNT(call_sign) FROM table_1949746_1 WHERE frequency = \"1180 AM\"", "question": "When 1180 am is the frequency how many call signs are there?", "context": "CREATE TABLE table_1949746_1 (call_sign VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT licensee FROM table_1949746_1 WHERE city_of_license = \"Portsmouth\"", "question": "When portsmouth is the city of license who is the licensee?", "context": "CREATE TABLE table_1949746_1 (licensee VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT format FROM table_1949746_1 WHERE frequency = \"790 AM\"", "question": "When 790 am is the frequency what is the format?", "context": "CREATE TABLE table_1949746_1 (format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT licensee FROM table_1949746_1 WHERE frequency = \"90.7 FM\"", "question": "When 90.7 fm is the frequency who is the licensee?", "context": "CREATE TABLE table_1949746_1 (licensee VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT COUNT(total_drivers) FROM table_19487922_2 WHERE country = \"India\"", "question": "How many drivers does India have/", "context": "CREATE TABLE table_19487922_2 (total_drivers VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(championships) FROM table_19487922_2 WHERE country = \"Pakistan\"", "question": "How many championships does Pakistan have?", "context": "CREATE TABLE table_19487922_2 (championships VARCHAR, country VARCHAR)"}, {"answer": "SELECT current_march_20, _2010 FROM table_19487922_2 WHERE country = \"Denmark\"", "question": "How many current drivers, as of March 20, 2010 does Denmark have?", "context": "CREATE TABLE table_19487922_2 (current_march_20 VARCHAR, _2010 VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(championships) FROM table_19487922_2", "question": "What in the minimum number of championships won by a nation?", "context": "CREATE TABLE table_19487922_2 (championships INTEGER)"}, {"answer": "SELECT country FROM table_1949994_7 WHERE end_date = \"June 25\"", "question": "Where was the season that ended on June 25 located?", "context": "CREATE TABLE table_1949994_7 (country VARCHAR, end_date VARCHAR)"}, {"answer": "SELECT start_date FROM table_1949994_7 WHERE end_date = \"July ?\"", "question": "When did the season that end in July ? start?", "context": "CREATE TABLE table_1949994_7 (start_date VARCHAR, end_date VARCHAR)"}, {"answer": "SELECT premiere_air_dates FROM table_1949994_7 WHERE format = \"1 Team\"", "question": "When did the season with 1 team format premiere?", "context": "CREATE TABLE table_1949994_7 (premiere_air_dates VARCHAR, format VARCHAR)"}, {"answer": "SELECT format FROM table_1949994_7 WHERE end_date = \"June 25\"", "question": "What's the format of the season that ended on June 25?", "context": "CREATE TABLE table_1949994_7 (format VARCHAR, end_date VARCHAR)"}, {"answer": "SELECT premiere_air_dates FROM table_1949994_7 WHERE no = 3", "question": "What's season 3's premiere date?", "context": "CREATE TABLE table_1949994_7 (premiere_air_dates VARCHAR, no VARCHAR)"}, {"answer": "SELECT premiere_air_dates FROM table_1949994_7 WHERE country = \"The Netherlands\"", "question": "When did the season located in the Netherlands premier?", "context": "CREATE TABLE table_1949994_7 (premiere_air_dates VARCHAR, country VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_19501664_1 WHERE directed_by = \"Tony Phelan\"", "question": "Name the viewers for the episode directed by tony phelan", "context": "CREATE TABLE table_19501664_1 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_19501664_1 WHERE us_viewers__millions_ = \"15.74\"", "question": "Name the original air date for 15.74 viewers", "context": "CREATE TABLE table_19501664_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_19501664_1 WHERE us_viewers__millions_ = \"18.29\"", "question": "Name the title for us viewers being 18.29", "context": "CREATE TABLE table_19501664_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT platforms FROM table_19495707_1 WHERE application = \"CityEngine\"", "question": "Name the platforms for cityengine", "context": "CREATE TABLE table_19495707_1 (platforms VARCHAR, application VARCHAR)"}, {"answer": "SELECT license FROM table_19495707_1 WHERE application = \"E-on Vue\"", "question": "Name the license for e-on vue", "context": "CREATE TABLE table_19495707_1 (license VARCHAR, application VARCHAR)"}, {"answer": "SELECT COUNT(developed_by) FROM table_19495707_1 WHERE application = \"Solid Edge\"", "question": "Name the number of developed by for solid edge", "context": "CREATE TABLE table_19495707_1 (developed_by VARCHAR, application VARCHAR)"}, {"answer": "SELECT license FROM table_19495707_1 WHERE latest_release_date_and_version = \"2009-05-25 v 7.61\"", "question": "Name the license for 2009-05-25 v 7.61", "context": "CREATE TABLE table_19495707_1 (license VARCHAR, latest_release_date_and_version VARCHAR)"}, {"answer": "SELECT COUNT(application) FROM table_19495707_1 WHERE mainly_used_for = \"Modeling, Computer Aided Design, Animation\"", "question": "Name the number of application for modeling, computer aided design, animation", "context": "CREATE TABLE table_19495707_1 (application VARCHAR, mainly_used_for VARCHAR)"}, {"answer": "SELECT application FROM table_19495707_1 WHERE developed_by = \"Caligari Corporation\"", "question": "Name the application for caligari corporation", "context": "CREATE TABLE table_19495707_1 (application VARCHAR, developed_by VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_1949994_8 WHERE start_date = \"June 6\"", "question": "What series number started production on June 6?", "context": "CREATE TABLE table_1949994_8 (no INTEGER, start_date VARCHAR)"}, {"answer": "SELECT format FROM table_1949994_8 WHERE local_title = \"Fort Boyard: Ultimate Challenge\"", "question": "What was the production format for the series with the local title Fort Boyard: Ultimate Challenge?", "context": "CREATE TABLE table_1949994_8 (format VARCHAR, local_title VARCHAR)"}, {"answer": "SELECT premiere_air_dates FROM table_1949994_8 WHERE start_date = \"June 16\"", "question": "What were the television air dates for the series that had a production start date of June 16?", "context": "CREATE TABLE table_1949994_8 (premiere_air_dates VARCHAR, start_date VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_1949994_8 WHERE local_title = \"Fort Boyard\"", "question": "What series number had the local title of Fort Boyard?", "context": "CREATE TABLE table_1949994_8 (no INTEGER, local_title VARCHAR)"}, {"answer": "SELECT MIN(episodes) FROM table_1949994_8", "question": "What was the minimum number of episodes in any of the series? ", "context": "CREATE TABLE table_1949994_8 (episodes INTEGER)"}, {"answer": "SELECT week__number FROM table_19508635_1 WHERE theme = \"The Beatles\"", "question": "Name the week number for the beatles", "context": "CREATE TABLE table_19508635_1 (week__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT result FROM table_19508635_1 WHERE theme = \"1980s\"", "question": "Name the result for 1980s", "context": "CREATE TABLE table_19508635_1 (result VARCHAR, theme VARCHAR)"}, {"answer": "SELECT order__number FROM table_19508635_1 WHERE theme = \"1960s\"", "question": "Name the order number for 1960s", "context": "CREATE TABLE table_19508635_1 (order__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT result FROM table_19508635_1 WHERE original_artist = \"Dolly Parton\"", "question": "Name the result for dolly parton", "context": "CREATE TABLE table_19508635_1 (result VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT song_choice FROM table_19508635_1 WHERE original_artist = \"Michael Jackson\"", "question": "Name the song choice for michael jackson", "context": "CREATE TABLE table_19508635_1 (song_choice VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_19517621_4", "question": "What is the largest series number? ", "context": "CREATE TABLE table_19517621_4 (series__number INTEGER)"}, {"answer": "SELECT MAX(episode__number) FROM table_19517621_4 WHERE title = \"Jerusalem\"", "question": "What is the latest episode number with the title of Jerusalem? ", "context": "CREATE TABLE table_19517621_4 (episode__number INTEGER, title VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_19517621_4 WHERE written_by = \"Michelle Offen\"", "question": "What was the original air date of the episode written by Michelle Offen?", "context": "CREATE TABLE table_19517621_4 (original_airdate VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_19517621_4 WHERE written_by = \"Vanessa Bates\"", "question": "What is the title of the episode written by Vanessa Bates? ", "context": "CREATE TABLE table_19517621_4 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_19517621_4 WHERE title = \"The Transit of Venus\"", "question": "What was the original air date for the episode Calle, The Transit of Venus? ", "context": "CREATE TABLE table_19517621_4 (original_airdate VARCHAR, title VARCHAR)"}, {"answer": "SELECT completion_percentage FROM table_19517448_3 WHERE yards_per_attempt = \"Steve McNair : 2003\"", "question": "What is the completion percentage when yards per attempt was done by Steve McNair : 2003?", "context": "CREATE TABLE table_19517448_3 (completion_percentage VARCHAR, yards_per_attempt VARCHAR)"}, {"answer": "SELECT rank FROM table_19517448_3 WHERE rating = \"146.8\"", "question": "What rank has a rating of 146.8? ", "context": "CREATE TABLE table_19517448_3 (rank VARCHAR, rating VARCHAR)"}, {"answer": "SELECT yards_per_attempt FROM table_19517448_3 WHERE total_yards = \"513\"", "question": "How many yards per attempt were there when total yards were 513?", "context": "CREATE TABLE table_19517448_3 (yards_per_attempt VARCHAR, total_yards VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_19517621_3 WHERE written_by = \"Kristen Dunphy and David Ogilvy\"", "question": "What is the series number for the episode written by Kristen Dunphy and David Ogilvy?", "context": "CREATE TABLE table_19517621_3 (series__number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_19517621_3 WHERE title = \"The Lost Boy\"", "question": "If the title if the Lost Boy, how many directors were there?", "context": "CREATE TABLE table_19517621_3 (directed_by VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_19517621_3 WHERE written_by = \"Michael Miller\"", "question": "What is the title for the episode that written by Michael Miller?", "context": "CREATE TABLE table_19517621_3 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT afc_championships FROM table_1952057_5 WHERE playoff_berths = 17", "question": "If the playoff berth is 17, what is the AFC championship number?", "context": "CREATE TABLE table_1952057_5 (afc_championships VARCHAR, playoff_berths VARCHAR)"}, {"answer": "SELECT MIN(super_bowl_championships) FROM table_1952057_5 WHERE team = \"New England Patriots\"", "question": "If the team in the New England Patriots, what is the super bowl championship minimum number?", "context": "CREATE TABLE table_1952057_5 (super_bowl_championships INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(afc_championships) FROM table_1952057_5", "question": "What is the maximum number of AFC championships?", "context": "CREATE TABLE table_1952057_5 (afc_championships INTEGER)"}, {"answer": "SELECT COUNT(authors) FROM table_19523708_1 WHERE original = \"Carry On\"", "question": "How many authors are present when the original was Carry On?", "context": "CREATE TABLE table_19523708_1 (authors VARCHAR, original VARCHAR)"}, {"answer": "SELECT draw FROM table_19523708_1 WHERE language = \"English\" AND english_meaning = \"Eyes That Never Lie\"", "question": "What was the draw for the english meaning Eyes that Never Lie?", "context": "CREATE TABLE table_19523708_1 (draw VARCHAR, language VARCHAR, english_meaning VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_19523708_1", "question": "What is the highest draw represented?", "context": "CREATE TABLE table_19523708_1 (draw INTEGER)"}, {"answer": "SELECT artist FROM table_19523708_1 WHERE original = \"Shake It, Europe\"", "question": "Who was the artist for the origin Shake it, Europe?", "context": "CREATE TABLE table_19523708_1 (artist VARCHAR, original VARCHAR)"}, {"answer": "SELECT COUNT(arena__capacity_) FROM table_19526911_1 WHERE head_coach = \"Yuriy Korotkevich\"", "question": "What is the arena capacity of the arena in the town whose head coach is Yuriy Korotkevich?", "context": "CREATE TABLE table_19526911_1 (arena__capacity_ VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT arena__capacity_ FROM table_19526911_1 WHERE head_coach = \"Roberto Serniotti\"", "question": "What is the arena capacity of the arena in the town whose head coach is Roberto Serniotti?", "context": "CREATE TABLE table_19526911_1 (arena__capacity_ VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT foreign_players__max_2_ FROM table_19526911_1 WHERE town = \"Moscow\"", "question": "Who are the foreign players on team/s that play in Moscow?", "context": "CREATE TABLE table_19526911_1 (foreign_players__max_2_ VARCHAR, town VARCHAR)"}, {"answer": "SELECT previous_season_2007_2008 FROM table_19526911_1 WHERE website = \"www.novavolley.narod.ru\"", "question": "What are the previous season ranks of teams whose website is www.novavolley.narod.ru?", "context": "CREATE TABLE table_19526911_1 (previous_season_2007_2008 VARCHAR, website VARCHAR)"}, {"answer": "SELECT MIN(indoor) FROM table_19534874_2 WHERE inspection = 5", "question": "What are the minimum indoor results that have a 5 for inspection? ", "context": "CREATE TABLE table_19534874_2 (indoor INTEGER, inspection VARCHAR)"}, {"answer": "SELECT MAX(written) FROM table_19534874_2 WHERE standard = 2", "question": "What was the maximum number in written when the standard was 2? ", "context": "CREATE TABLE table_19534874_2 (written INTEGER, standard VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_19534874_2 WHERE mile_run = 3", "question": "How many point categories are there for the 3 mile run? ", "context": "CREATE TABLE table_19534874_2 (points VARCHAR, mile_run VARCHAR)"}, {"answer": "SELECT indoor FROM table_19534874_2 WHERE wing = \"NJ\"", "question": "What is the indoor number for the NJ wing/ ", "context": "CREATE TABLE table_19534874_2 (indoor VARCHAR, wing VARCHAR)"}, {"answer": "SELECT COUNT(indoor) FROM table_19534874_2 WHERE region = \"NER\"", "question": "What is the indoor number for the NER region? ", "context": "CREATE TABLE table_19534874_2 (indoor VARCHAR, region VARCHAR)"}, {"answer": "SELECT winning_span FROM table_1953516_1 WHERE name = \"Martin Kaymer\"", "question": "What is the winning span of the name martin kaymer?", "context": "CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR)"}, {"answer": "SELECT winning_span FROM table_1953516_1 WHERE country = \"England\" AND name = \"Paul Casey\"", "question": "What is the winning span in the country of England with the name of paul casey?", "context": "CREATE TABLE table_1953516_1 (winning_span VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT winning_span FROM table_1953516_1 WHERE name = \"Bernard Gallacher\"", "question": "What is the winning span for the name of bernard gallacher?", "context": "CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR)"}, {"answer": "SELECT winning_span FROM table_1953516_1 WHERE rank = \"5\"", "question": "What is the winning span with the rank of 5?", "context": "CREATE TABLE table_1953516_1 (winning_span VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(scorecard) FROM table_19576091_1 WHERE date = \"October 28\"", "question": "How many scorecards are there for the match on October 28? ", "context": "CREATE TABLE table_19576091_1 (scorecard VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(venue) FROM table_19576091_1 WHERE date = \"November 6\"", "question": "How many venues were there for the match on November 6? ", "context": "CREATE TABLE table_19576091_1 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_19576091_1 WHERE date = \"October 10\"", "question": "What was the venue for the match on October 10? ", "context": "CREATE TABLE table_19576091_1 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT man_of_the_match FROM table_19576091_1 WHERE result = \"Rockets won by 9 wickets\"", "question": "Who was the man of the match when the Rockets won by 9 wickets? ", "context": "CREATE TABLE table_19576091_1 (man_of_the_match VARCHAR, result VARCHAR)"}, {"answer": "SELECT vacator FROM table_1958768_3 WHERE district = \"Wisconsin 1st\"", "question": "Name the vacator for wisconsin 1st", "context": "CREATE TABLE table_1958768_3 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT successor FROM table_1958768_3 WHERE district = \"Pennsylvania 15th\"", "question": "Name the successor for pennsylvania 15th", "context": "CREATE TABLE table_1958768_3 (successor VARCHAR, district VARCHAR)"}, {"answer": "SELECT circuit FROM table_19598014_2 WHERE challenge_winning_team = \"#47 Orbit Racing\"", "question": "Name the circuit for #47 orbit racing ", "context": "CREATE TABLE table_19598014_2 (circuit VARCHAR, challenge_winning_team VARCHAR)"}, {"answer": "SELECT gt2_winning_team FROM table_19598014_2 WHERE lmp2_winning_team = \"Butch Leitzinger Marino Franchitti Ben Devlin\"", "question": "Name the gt2 winning team where lmp2 winning team and butch leitzinger marino franchitti ben devlin", "context": "CREATE TABLE table_19598014_2 (gt2_winning_team VARCHAR, lmp2_winning_team VARCHAR)"}, {"answer": "SELECT lmp1_winning_team FROM table_19598014_2 WHERE rnd = 2 AND lmp2_winning_team = \"Adrian Fern\u00e1ndez Luis D\u00edaz\"", "question": "Name the lmp 1 winning team for rnd being 2 and adrian fern\u00e1ndez luis d\u00edaz", "context": "CREATE TABLE table_19598014_2 (lmp1_winning_team VARCHAR, rnd VARCHAR, lmp2_winning_team VARCHAR)"}, {"answer": "SELECT capital FROM table_19605700_1 WHERE area_km\u00b2 = 377930", "question": "Which capitals have an area of exactly 377930 square km?", "context": "CREATE TABLE table_19605700_1 (capital VARCHAR, area_km\u00b2 VARCHAR)"}, {"answer": "SELECT COUNT(capital) FROM table_19605700_1 WHERE area_km\u00b2 = 1104", "question": "What is the total number of capitals that have an area of exactly 1104 square km?", "context": "CREATE TABLE table_19605700_1 (capital VARCHAR, area_km\u00b2 VARCHAR)"}, {"answer": "SELECT capital FROM table_19605700_1 WHERE population = 1339724852", "question": "What capital has a population of exactly 1339724852?", "context": "CREATE TABLE table_19605700_1 (capital VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_19605700_1 WHERE capital = \"Hong Kong\"", "question": "How many populations have a capital of Hong Kong?", "context": "CREATE TABLE table_19605700_1 (population VARCHAR, capital VARCHAR)"}, {"answer": "SELECT male_population_2001 FROM table_19589113_5 WHERE growth_rate_1991_01 = \"36.16\"", "question": "What are all values for the male population in 2001 with a growth rate in 1991-01 of 36.16?", "context": "CREATE TABLE table_19589113_5 (male_population_2001 VARCHAR, growth_rate_1991_01 VARCHAR)"}, {"answer": "SELECT MIN(total_population_2001) FROM table_19589113_5 WHERE growth_rate_1991_01 = \"33.08\"", "question": "What is the least value for total population in 2001 with a growth rate in 1991-01 of 33.08?", "context": "CREATE TABLE table_19589113_5 (total_population_2001 INTEGER, growth_rate_1991_01 VARCHAR)"}, {"answer": "SELECT male_population_2001 FROM table_19589113_5 WHERE sex_ratio_\u2021_1991 = 896", "question": "What are all values for male population in 2001 when sex ratio in 1991 is 896?", "context": "CREATE TABLE table_19589113_5 (male_population_2001 VARCHAR, sex_ratio_\u2021_1991 VARCHAR)"}, {"answer": "SELECT growth_rate_1991_01 FROM table_19589113_5 WHERE sex_ratio_\u2021_2001 = 937", "question": "What is every growth rate in 1991-2001 when sex ratio in 2001 is 937?", "context": "CREATE TABLE table_19589113_5 (growth_rate_1991_01 VARCHAR, sex_ratio_\u2021_2001 VARCHAR)"}, {"answer": "SELECT districts_of_bihar FROM table_19589113_5 WHERE sex_ratio_\u2021_1991 = 864", "question": "What districts of Bihar have a sex ratio in 1991 of 864?", "context": "CREATE TABLE table_19589113_5 (districts_of_bihar VARCHAR, sex_ratio_\u2021_1991 VARCHAR)"}, {"answer": "SELECT marriages_between_women FROM table_19614212_1 WHERE _percentage_same_sex_marriages = \"1.06\"", "question": "How many marriages between women have % same-sex marriages of 1.06?", "context": "CREATE TABLE table_19614212_1 (marriages_between_women VARCHAR, _percentage_same_sex_marriages VARCHAR)"}, {"answer": "SELECT _percentage_same_sex_marriages FROM table_19614212_1 WHERE year = \"2011\"", "question": "What is the % of same-sex marriages for the year of 2011?", "context": "CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(_percentage_same_sex_marriages) FROM table_19614212_1 WHERE year = \"2008\"", "question": "How many % same-sex marriages are there for the year 2008?", "context": "CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(_percentage_same_sex_marriages) FROM table_19614212_1 WHERE marriages_between_men = 923", "question": "How many % same-sex marriages are marriages between men for 923? ", "context": "CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, marriages_between_men VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_19632728_1 WHERE episode__number = 2", "question": "When was the episode number 2 originally aired?", "context": "CREATE TABLE table_19632728_1 (original_air_date VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_19632728_1", "question": "What was the highest season number?", "context": "CREATE TABLE table_19632728_1 (season__number INTEGER)"}, {"answer": "SELECT margin_of_victory FROM table_19630743_2 WHERE runner_s__up = \"Steve Stricker\"", "question": "What was the margin of victory of Steve Stricker as a runner up?", "context": "CREATE TABLE table_19630743_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT to_par FROM table_19630743_2 WHERE winning_score = 69 - 66 - 68 = 203", "question": "How many to par has the winning score of 69-66-68=203.", "context": "CREATE TABLE table_19630743_2 (to_par VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_19630743_2 WHERE tournament = \"BMW Championship\"", "question": "What is the minimum number of the bmw championship tournament.", "context": "CREATE TABLE table_19630743_2 (no INTEGER, tournament VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_19630743_2 WHERE runner_s__up = \"John Merrick\"", "question": "What is the total number of  John Merrick as a runner up?", "context": "CREATE TABLE table_19630743_2 (no VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT horse FROM table_19624708_1 WHERE owner = \"R. A. Scott\"", "question": "What horses does r. a. Scott own?", "context": "CREATE TABLE table_19624708_1 (horse VARCHAR, owner VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_19624708_1 WHERE sp = \"20/1\" AND finishing_position = \"Fence 19\"", "question": "How many numbers have sp of 20/1 and a finishing position of fence 19?", "context": "CREATE TABLE table_19624708_1 (number VARCHAR, sp VARCHAR, finishing_position VARCHAR)"}, {"answer": "SELECT handicap__st_lb_ FROM table_19624708_1 WHERE horse = \"Knowhere\"", "question": "Which handicap has the horse knowhere?", "context": "CREATE TABLE table_19624708_1 (handicap__st_lb_ VARCHAR, horse VARCHAR)"}, {"answer": "SELECT colours FROM table_19624708_1 WHERE owner = \"David Langdon\"", "question": "What colors does David Langdon use?", "context": "CREATE TABLE table_19624708_1 (colours VARCHAR, owner VARCHAR)"}, {"answer": "SELECT result FROM table_19625976_1 WHERE film_title_used_in_nomination = \"Baran\"", "question": "If the film title nominated is Baran, what was the result?", "context": "CREATE TABLE table_19625976_1 (result VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT result FROM table_19625976_1 WHERE persian_title = \"\u0645\u06cc\u0645 \u0645\u062b\u0644 \u0645\u0627\u062f\u0631\"", "question": "For the Persian Title \u0645\u06cc\u0645 \u0645\u062b\u0644 \u0645\u0627\u062f\u0631, what were the results?", "context": "CREATE TABLE table_19625976_1 (result VARCHAR, persian_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_19625976_1 WHERE persian_title = \"\u06af\u0628\u0647\"", "question": "For the Persian title \u06af\u0628\u0647, What was the film title used for the nomination?", "context": "CREATE TABLE table_19625976_1 (film_title_used_in_nomination VARCHAR, persian_title VARCHAR)"}, {"answer": "SELECT year FROM table_19643196_1 WHERE transmission = \"Allison B400R\" AND model = \"BRT\"", "question": "What year had an Allison B400R transmission and a model of BRT?", "context": "CREATE TABLE table_19643196_1 (year VARCHAR, transmission VARCHAR, model VARCHAR)"}, {"answer": "SELECT fleet__number FROM table_19643196_1 WHERE length__ft_ = 30", "question": "What is the fleet number when the length (ft) is 30?", "context": "CREATE TABLE table_19643196_1 (fleet__number VARCHAR, length__ft_ VARCHAR)"}, {"answer": "SELECT fleet__number FROM table_19643196_1 WHERE transmission = \"Voith D863.4\" AND engine = \"Cummins ISL\"", "question": "What is the fleet number when the transmission is Voith D863.4 and the engine is Cummins ISL?", "context": "CREATE TABLE table_19643196_1 (fleet__number VARCHAR, transmission VARCHAR, engine VARCHAR)"}, {"answer": "SELECT year FROM table_19643196_1 WHERE transmission = \"Voith D863.4\" AND engine = \"Cummins ISM\"", "question": "Which year had a transmission of Voith D863.4 and a Cummins ISM engine?", "context": "CREATE TABLE table_19643196_1 (year VARCHAR, transmission VARCHAR, engine VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1965650_1 WHERE player = \"Ian Turnbull\"", "question": "Name the college/junior club team for ian turnbull", "context": "CREATE TABLE table_1965650_1 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_1965650_3 WHERE nhl_team = \"Los Angeles Kings\"", "question": "Name the position for nhl team being los angeles kings", "context": "CREATE TABLE table_1965650_3 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1965650_3 WHERE player = \"Jeff Jacques\"", "question": "Name the nhl times for jeff jacques", "context": "CREATE TABLE table_1965650_3 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_1965650_3 WHERE player = \"John Campbell\"", "question": "Name the college/junior club team for john campbell", "context": "CREATE TABLE table_1965650_3 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_1965650_3 WHERE player = \"Doug Gibson\"", "question": "Name the least pick # for doug gibson", "context": "CREATE TABLE table_1965650_3 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_1965650_4 WHERE player = \"Tom Colley\"", "question": "How many nationalities does Tom Colley have?", "context": "CREATE TABLE table_1965650_4 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_1965650_4 WHERE college_junior_club_team = \"Sudbury Wolves (OHA)\"", "question": "What's the NHL team that drafted the player from Sudbury Wolves (OHA)?", "context": "CREATE TABLE table_1965650_4 (nhl_team VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_1965650_4 WHERE nhl_team = \"Minnesota North Stars\"", "question": "What's the number of positions of the player playing in Minnesota North Stars?", "context": "CREATE TABLE table_1965650_4 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_1965650_4 WHERE nhl_team = \"Minnesota North Stars\"", "question": "What's the smallest pick number of a player playing in Minnesota North Stars?", "context": "CREATE TABLE table_1965650_4 (pick__number INTEGER, nhl_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_1965650_4 WHERE college_junior_club_team = \"Edmonton Oil Kings (WCHL)\"", "question": "What's the nationality of the player coming from Edmonton Oil Kings (WCHL)?", "context": "CREATE TABLE table_1965650_4 (nationality VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_1965650_4 WHERE player = \"Steve Langdon\"", "question": "What's Steve Langdon's naitionality?", "context": "CREATE TABLE table_1965650_4 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_1965650_9 WHERE college_junior_club_team = \"Michigan Technological University (NCAA)\"", "question": "When michigan technological university (ncaa) is the  college, junior, or club team what is the nationality?", "context": "CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_1965650_9 WHERE college_junior_club_team = \"Kitchener Rangers (OHA)\"", "question": "When kitchener rangers (oha) is the  college, junior, or club team team who is the player?", "context": "CREATE TABLE table_1965650_9 (player VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_1965650_9 WHERE college_junior_club_team = \"Sault Ste. Marie Greyhounds (OHA)\"", "question": "When  sault ste. marie greyhounds (oha) is the  college, junior, or club team how many nationalities are there?", "context": "CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_1965650_9 WHERE college_junior_club_team = \"Kitchener Rangers (OHA)\"", "question": "When kitchener rangers (oha) is the college, junior, or club team what is the position?", "context": "CREATE TABLE table_1965650_9 (position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_1965650_6 WHERE player = \"Denis Patry\"", "question": "How many positions for denis patry?", "context": "CREATE TABLE table_1965650_6 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_1965650_6 WHERE player = \"Neil Korzack\"", "question": "What nationality for neil korzack?", "context": "CREATE TABLE table_1965650_6 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT institution FROM table_1969577_1 WHERE enrollment = 10000", "question": "Name the college that has 10000 enrolled", "context": "CREATE TABLE table_1969577_1 (institution VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT MAX(joined) FROM table_1969577_1 WHERE institution = \"Molloy College\"", "question": "Name the most joined for molloy college", "context": "CREATE TABLE table_1969577_1 (joined INTEGER, institution VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_19681738_1 WHERE hancock__number = 1394", "question": "how many times was total considered when hancock # was 1394", "context": "CREATE TABLE table_19681738_1 (total VARCHAR, hancock__number VARCHAR)"}, {"answer": "SELECT COUNT(hancock__percentage) FROM table_19681738_1 WHERE starky__percentage = \"20.96%\"", "question": "how many times was hancock % considered when starky % was 20.96%", "context": "CREATE TABLE table_19681738_1 (hancock__percentage VARCHAR, starky__percentage VARCHAR)"}, {"answer": "SELECT COUNT(county) FROM table_19681738_1 WHERE starky__percentage = \"20.96%\"", "question": "How many times was country considered when starky % was 20.96%", "context": "CREATE TABLE table_19681738_1 (county VARCHAR, starky__percentage VARCHAR)"}, {"answer": "SELECT county FROM table_19681738_1 WHERE starky__percentage = \"17.41%\"", "question": "which country did stary get 17.41%", "context": "CREATE TABLE table_19681738_1 (county VARCHAR, starky__percentage VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_19681738_1 WHERE county = \"Gila\"", "question": "what is the least total in gila", "context": "CREATE TABLE table_19681738_1 (total INTEGER, county VARCHAR)"}, {"answer": "SELECT county FROM table_19681738_1 WHERE hancock__percentage = \"3.09%\"", "question": "where did hancock get 3.09%", "context": "CREATE TABLE table_19681738_1 (county VARCHAR, hancock__percentage VARCHAR)"}, {"answer": "SELECT bbm FROM table_19662262_6 WHERE strike_rate = \"42.2\"", "question": "What is the BBM when the strike rate is 42.2?", "context": "CREATE TABLE table_19662262_6 (bbm VARCHAR, strike_rate VARCHAR)"}, {"answer": "SELECT economy_rate FROM table_19662262_6 WHERE strike_rate = \"54.0\"", "question": "What is the economy when the strike rate is 54.0?", "context": "CREATE TABLE table_19662262_6 (economy_rate VARCHAR, strike_rate VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_19662262_6 WHERE economy_rate = \"2.26\"", "question": "How many averages are there when the economy rate is 2.26?", "context": "CREATE TABLE table_19662262_6 (average VARCHAR, economy_rate VARCHAR)"}, {"answer": "SELECT COUNT(wickets) FROM table_19662262_6 WHERE strike_rate = \"54.0\"", "question": "How many figures for wickets when the strike rate is 54.0?", "context": "CREATE TABLE table_19662262_6 (wickets VARCHAR, strike_rate VARCHAR)"}, {"answer": "SELECT strike_rate FROM table_19662262_6 WHERE wickets = 17", "question": "What is the strike rate when there are 17 wickets?", "context": "CREATE TABLE table_19662262_6 (strike_rate VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT COUNT(area__km_2__) FROM table_1966992_1 WHERE census_2006_population = 151511", "question": "How many areas (km 2) have 151511 as the census 2006 population?", "context": "CREATE TABLE table_1966992_1 (area__km_2__ VARCHAR, census_2006_population VARCHAR)"}, {"answer": "SELECT lga_name FROM table_1966992_1 WHERE census_2006_population > 425208.9417698913 AND administrative_capital = \"Port Harcourt\"", "question": "What is the LGA name where the 2006 census population is bigger than 425208.9417698913 and administrative capital is port harcourt?", "context": "CREATE TABLE table_1966992_1 (lga_name VARCHAR, census_2006_population VARCHAR, administrative_capital VARCHAR)"}, {"answer": "SELECT administrative_capital FROM table_1966992_1 WHERE lga_name = \"Akuku-Toru\"", "question": "What is the administrative capital of LGA name Akuku-Toru?", "context": "CREATE TABLE table_1966992_1 (administrative_capital VARCHAR, lga_name VARCHAR)"}, {"answer": "SELECT administrative_capital FROM table_1966992_1 WHERE census_2006_population = 249425", "question": "What is the administrative capital that has a 2006 census population of 249425?", "context": "CREATE TABLE table_1966992_1 (administrative_capital VARCHAR, census_2006_population VARCHAR)"}, {"answer": "SELECT MAX(census_2006_population) FROM table_1966992_1 WHERE lga_name = \"Opobo/Nkoro\"", "question": "What is the maximum 2006 census population of LGA name Opobo/Nkoro?", "context": "CREATE TABLE table_1966992_1 (census_2006_population INTEGER, lga_name VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_1969577_3", "question": "What's the minimal enrollment of any of the schools?", "context": "CREATE TABLE table_1969577_3 (enrollment INTEGER)"}, {"answer": "SELECT MAX(founded) FROM table_1969577_3 WHERE nickname = \"Rams\"", "question": "When was the school whose students are nicknamed Rams founded?", "context": "CREATE TABLE table_1969577_3 (founded INTEGER, nickname VARCHAR)"}, {"answer": "SELECT type FROM table_1969577_3 WHERE nickname = \"Chargers\"", "question": "What's the type of the school whose students are nicknamed Chargers?", "context": "CREATE TABLE table_1969577_3 (type VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT founded FROM table_1969577_3 WHERE location = \"Philadelphia, Pennsylvania\"", "question": "When was the school in Philadelphia, Pennsylvania founded?", "context": "CREATE TABLE table_1969577_3 (founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(total_votes) FROM table_19698421_1 WHERE year = \"2005\"", "question": "What was the total number of votes in the 2005 elections?", "context": "CREATE TABLE table_19698421_1 (total_votes INTEGER, year VARCHAR)"}, {"answer": "SELECT COUNT(change__percentage_points_) FROM table_19698421_1 WHERE average_voters_per_candidate = 1423", "question": "How many elections had 1423 average voters per candidate?", "context": "CREATE TABLE table_19698421_1 (change__percentage_points_ VARCHAR, average_voters_per_candidate VARCHAR)"}, {"answer": "SELECT number_of_candidates FROM table_19698421_1 WHERE year = \"1987\"", "question": "How many candidates were there in the year of 1987?", "context": "CREATE TABLE table_19698421_1 (number_of_candidates VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(modified_torque__lb_ft_) FROM table_19704392_1 WHERE standard_hp = \"n/a\"", "question": "What is the modified torque (lb/ft) when the standard hp n/a?", "context": "CREATE TABLE table_19704392_1 (modified_torque__lb_ft_ VARCHAR, standard_hp VARCHAR)"}, {"answer": "SELECT MIN(rpm) FROM table_19704392_1 WHERE standard_speed__6th_gear_ = \"114\"", "question": "When the standard speed (6th gear) is 114, what is the minimum rpm?", "context": "CREATE TABLE table_19704392_1 (rpm INTEGER, standard_speed__6th_gear_ VARCHAR)"}, {"answer": "SELECT rpm FROM table_19704392_1 WHERE standard_speed__6th_gear_ = \"88\"", "question": "when standard speed (6th gear) is 88, what is the rpm?", "context": "CREATE TABLE table_19704392_1 (rpm VARCHAR, standard_speed__6th_gear_ VARCHAR)"}, {"answer": "SELECT modified_speed__6th_gear_ FROM table_19704392_1 WHERE standard_torque__lb_ft_ = \"10.3\" AND modified_torque__lb_ft_ = \"8.75\"", "question": "What is the modified speed (6th gear) when standard torque (lb/ft) is 10.3 and modified torque (lb/ft) is 8.75?", "context": "CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ VARCHAR, standard_torque__lb_ft_ VARCHAR, modified_torque__lb_ft_ VARCHAR)"}, {"answer": "SELECT MAX(modified_speed__6th_gear_) FROM table_19704392_1 WHERE standard_speed__6th_gear_ = \"98\"", "question": "when the max speed for modified speed (6th gear) where standard speed (6th gear) is 98", "context": "CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ INTEGER, standard_speed__6th_gear_ VARCHAR)"}, {"answer": "SELECT modified_hp FROM table_19704392_1 WHERE standard_torque__lb_ft_ = \"11.53\"", "question": "When the standard torque (lb/ft) is 11.53 how much does more is the modified hp?", "context": "CREATE TABLE table_19704392_1 (modified_hp VARCHAR, standard_torque__lb_ft_ VARCHAR)"}, {"answer": "SELECT assists FROM table_19722233_5 WHERE minutes = 195", "question": "how many assists did the player who played 195 minutes make", "context": "CREATE TABLE table_19722233_5 (assists VARCHAR, minutes VARCHAR)"}, {"answer": "SELECT MIN(blocks) FROM table_19722233_5", "question": "what is the lowest number of blocks", "context": "CREATE TABLE table_19722233_5 (blocks INTEGER)"}, {"answer": "SELECT MIN(points) FROM table_19722233_5 WHERE blocks = 21", "question": "what is the lowest points scored by a player who blocked 21 times", "context": "CREATE TABLE table_19722233_5 (points INTEGER, blocks VARCHAR)"}, {"answer": "SELECT blocks FROM table_19722233_5 WHERE player = \"Debbie Black\"", "question": "how many times did debbie black block", "context": "CREATE TABLE table_19722233_5 (blocks VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(field_goals) FROM table_19722233_5 WHERE assists = 27", "question": "what is the highest number of goals did the player with 27 asists score", "context": "CREATE TABLE table_19722233_5 (field_goals INTEGER, assists VARCHAR)"}, {"answer": "SELECT assists FROM table_19722233_5 WHERE points = 251", "question": "how many assists did the player who scored 251 points make", "context": "CREATE TABLE table_19722233_5 (assists VARCHAR, points VARCHAR)"}, {"answer": "SELECT prod__number FROM table_1971734_1 WHERE filmed = \"Aug/Sept 1968\"", "question": "What was the production number of the episode filmed in aug/sept 1968?", "context": "CREATE TABLE table_1971734_1 (prod__number VARCHAR, filmed VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_1971074_1", "question": "What's the highest enrollment among the schools?", "context": "CREATE TABLE table_1971074_1 (enrollment INTEGER)"}, {"answer": "SELECT joined FROM table_1971074_1 WHERE location = \"Logan Township, Pennsylvania\"", "question": "When did the school from Logan Township, Pennsylvania join the Conference?", "context": "CREATE TABLE table_1971074_1 (joined VARCHAR, location VARCHAR)"}, {"answer": "SELECT founded FROM table_1971074_1 WHERE type = \"Private/Non-sectarian\"", "question": "When was the private/non-sectarian school founded?", "context": "CREATE TABLE table_1971074_1 (founded VARCHAR, type VARCHAR)"}, {"answer": "SELECT location FROM table_1971074_1 WHERE nickname = \"Panthers\"", "question": "Where is the school whose students are nicknamed Panthers located?", "context": "CREATE TABLE table_1971074_1 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_1971074_1 WHERE nickname = \"Barons\"", "question": "How many different enrollment numbers are there for the school whose students are nicknamed Barons?", "context": "CREATE TABLE table_1971074_1 (enrollment VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT COUNT(joined) FROM table_1971074_1 WHERE location = \"Logan Township, Pennsylvania\"", "question": "In how many different years did schools located in Logan Township, Pennsylvania join the Conference?", "context": "CREATE TABLE table_1971074_1 (joined VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(isolation) FROM table_19716903_1 WHERE mountain_peak = \"Jack Mountain\"", "question": "How many different isolation numbers does the Jack Mountain peak have?", "context": "CREATE TABLE table_19716903_1 (isolation VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT steals FROM table_19722664_5 WHERE player = \"Nicole Levandusky\"", "question": "How many steals did Nicole Levandusky make?", "context": "CREATE TABLE table_19722664_5 (steals VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(rebounds) FROM table_19722664_5 WHERE player = \"Rhonda Mapp\"", "question": "How many rebounds did Rhonda Mapp make?", "context": "CREATE TABLE table_19722664_5 (rebounds INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(assists) FROM table_19722664_5 WHERE player = \"Nicole Levandusky\"", "question": "What is the largest amount of assists that Nicole Levandusky made?", "context": "CREATE TABLE table_19722664_5 (assists INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(blocks) FROM table_19722664_5 WHERE rebounds = 35", "question": "What is the maximum number of blocks where rebounds equal 35?", "context": "CREATE TABLE table_19722664_5 (blocks INTEGER, rebounds VARCHAR)"}, {"answer": "SELECT assists FROM table_19722664_5 WHERE player = \"DeLisha Milton-Jones\"", "question": "How many assists did Delisha Milton-Jones make?", "context": "CREATE TABLE table_19722664_5 (assists VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(total_apps) FROM table_19730892_1 WHERE name = \"Eddie Carr\"", "question": "Name the total apps for eddie carr", "context": "CREATE TABLE table_19730892_1 (total_apps INTEGER, name VARCHAR)"}, {"answer": "SELECT fa_cup_apps FROM table_19730892_1 WHERE name = \"Arthur Morton\"", "question": "Name the fa cup apps for arthur morton", "context": "CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_19730892_1 WHERE name = \"Billy Price\"", "question": "Name the position for billy price", "context": "CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_19730892_1 WHERE name = \"Don Clegg\"", "question": "Name the total number of position for don clegg", "context": "CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT nation FROM table_19730892_1 WHERE name = \"Jeff Barker\"", "question": "Name the nation where jeff barker is from", "context": "CREATE TABLE table_19730892_1 (nation VARCHAR, name VARCHAR)"}, {"answer": "SELECT fa_cup_apps FROM table_19730892_1 WHERE name = \"George Green\"", "question": "Name the fa cup apps for george green", "context": "CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR)"}, {"answer": "SELECT institution FROM table_1973648_1 WHERE founded = 1950", "question": "Name the school that was founded in 1950", "context": "CREATE TABLE table_1973648_1 (institution VARCHAR, founded VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_1973648_1 WHERE nickname = \"Sea Gulls\"", "question": "Name the most founded for sea gulls", "context": "CREATE TABLE table_1973648_1 (founded INTEGER, nickname VARCHAR)"}, {"answer": "SELECT location FROM table_1973648_1 WHERE nickname = \"Eagles\"", "question": "Name the location for eagles", "context": "CREATE TABLE table_1973648_1 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT enrollment FROM table_1973648_1 WHERE joined = \"2007-08\"", "question": "Name the enrollment for 2007-08", "context": "CREATE TABLE table_1973648_1 (enrollment VARCHAR, joined VARCHAR)"}, {"answer": "SELECT MIN(new_points) FROM table_1973321_5 WHERE player = \"Steffi Graf\"", "question": "Name the least new points for steffi graf", "context": "CREATE TABLE table_1973321_5 (new_points INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_1973321_5 WHERE status = \"Champion, won in the final against Am\u00e9lie Mauresmo\"", "question": "Name the most points for champion, won in the final against am\u00e9lie mauresmo", "context": "CREATE TABLE table_1973321_5 (points INTEGER, status VARCHAR)"}, {"answer": "SELECT further_cities FROM table_197286_4 WHERE country = \"Slovakia\" AND direction = \"West\"", "question": "Name the further cities for slovakia and west direction", "context": "CREATE TABLE table_197286_4 (further_cities VARCHAR, country VARCHAR, direction VARCHAR)"}, {"answer": "SELECT distance FROM table_197286_4 WHERE direction = \"North\"", "question": "Name the distance from north", "context": "CREATE TABLE table_197286_4 (distance VARCHAR, direction VARCHAR)"}, {"answer": "SELECT further_cities FROM table_197286_4 WHERE direction = \"East\" AND country = \"Romania\"", "question": "Name the further cities for east romania", "context": "CREATE TABLE table_197286_4 (further_cities VARCHAR, direction VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(direction) FROM table_197286_4 WHERE further_cities = \"Debrecen\"", "question": "Name the number of direction for debrecen", "context": "CREATE TABLE table_197286_4 (direction VARCHAR, further_cities VARCHAR)"}, {"answer": "SELECT nickname FROM table_1973816_1 WHERE founded = 1933", "question": "What's the nickname of the students of the school founded in 1933?", "context": "CREATE TABLE table_1973816_1 (nickname VARCHAR, founded VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_1973816_1 WHERE institution = \"Saint Joseph's College of Maine\"", "question": "On how many locations is the Saint Joseph's College of Maine located?", "context": "CREATE TABLE table_1973816_1 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(joined) FROM table_1973842_1 WHERE location = \"Chestnut Hill, Massachusetts\"", "question": "On how many different dates did schools from Chestnut Hill, Massachusetts join the conference?", "context": "CREATE TABLE table_1973842_1 (joined VARCHAR, location VARCHAR)"}, {"answer": "SELECT type FROM table_1973842_1 WHERE nickname = \"Tigers\"", "question": "What is the type of the school whose students' nickname is tigers?", "context": "CREATE TABLE table_1973842_1 (type VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT type FROM table_1973842_1 WHERE nickname = \"Spirits\"", "question": "What's the type of the school whose students' name is spirits?", "context": "CREATE TABLE table_1973842_1 (type VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT institution FROM table_1973842_1 WHERE location = \"Chestnut Hill, Massachusetts\"", "question": "What school is located in Chestnut Hill, Massachusetts?", "context": "CREATE TABLE table_1973842_1 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT type FROM table_1973842_1 WHERE location = \"Macon, Georgia\"", "question": "What type is the school located in Macon, Georgia?", "context": "CREATE TABLE table_1973842_1 (type VARCHAR, location VARCHAR)"}, {"answer": "SELECT nickname FROM table_1973842_2 WHERE location = \"Maryville, Tennessee\"", "question": "What's the nickname of the school in Maryville, Tennessee?", "context": "CREATE TABLE table_1973842_2 (nickname VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_1973842_2 WHERE nickname = \"Tigers\"", "question": "Where is the school with nickname Tigers located?", "context": "CREATE TABLE table_1973842_2 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_1973842_2 WHERE joined = 2010", "question": "What's the nickname of the students of the school that joined the Conference in 2010?", "context": "CREATE TABLE table_1973842_2 (nickname VARCHAR, joined VARCHAR)"}, {"answer": "SELECT founded FROM table_1973816_2 WHERE institution = \"Daniel Webster College\"", "question": "When was Daniel Webster College founded?", "context": "CREATE TABLE table_1973816_2 (founded VARCHAR, institution VARCHAR)"}, {"answer": "SELECT location FROM table_1973816_2 WHERE institution = \"Southern Vermont College\"", "question": "Where is Southern Vermont College located?", "context": "CREATE TABLE table_1973816_2 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT left FROM table_1973816_2 WHERE enrollment = 650", "question": "In what year did the school with enrollment of 650 leave?", "context": "CREATE TABLE table_1973816_2 (left VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT MIN(races) FROM table_19741316_1 WHERE position = \"14th\"", "question": "What was the number of races in the season in which the team placed on the 14th position?", "context": "CREATE TABLE table_19741316_1 (races INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_19741316_1", "question": "What is the lowest number of wins of a team?", "context": "CREATE TABLE table_19741316_1 (wins INTEGER)"}, {"answer": "SELECT institution FROM table_1974482_1 WHERE nickname = \"Statesmen\"", "question": "Name the institution for statesmen", "context": "CREATE TABLE table_1974482_1 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT institution FROM table_1974482_1 WHERE nickname = \"Yellowjackets\"", "question": "Name the institution for yellowjackets", "context": "CREATE TABLE table_1974482_1 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT type FROM table_1974482_1 WHERE institution = \"Hobart College\"", "question": "Name the type for hobart college", "context": "CREATE TABLE table_1974482_1 (type VARCHAR, institution VARCHAR)"}, {"answer": "SELECT location FROM table_1974482_1 WHERE founded = 1829", "question": "Name the location for 1829", "context": "CREATE TABLE table_1974482_1 (location VARCHAR, founded VARCHAR)"}, {"answer": "SELECT location FROM table_1974482_1 WHERE nickname = \"Statesmen\"", "question": "Name the location of statesmen", "context": "CREATE TABLE table_1974482_1 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT location FROM table_197446_1 WHERE term_ended = \"January 3, 2011\"", "question": "What location was the congressional service of which the term ended in January 3, 2011?", "context": "CREATE TABLE table_197446_1 (location VARCHAR, term_ended VARCHAR)"}, {"answer": "SELECT branch FROM table_197446_1 WHERE term_began = \"January 3, 1985\"", "question": "What branch was involved when the term began in January 3, 1985?", "context": "CREATE TABLE table_197446_1 (branch VARCHAR, term_began VARCHAR)"}, {"answer": "SELECT elected FROM table_197446_1 WHERE term_began = \"January 3, 1989\"", "question": "What year was the congressional service elected for a term beginning on January 3, 1989?", "context": "CREATE TABLE table_197446_1 (elected VARCHAR, term_began VARCHAR)"}, {"answer": "SELECT office FROM table_197446_1 WHERE term_ended = \"January 3, 1993\"", "question": "What group was in office when the term ended in January 3, 1993?", "context": "CREATE TABLE table_197446_1 (office VARCHAR, term_ended VARCHAR)"}, {"answer": "SELECT COUNT(term_began) FROM table_197446_1 WHERE term_ended = \"January 3, 1989\"", "question": "How many terms began when the term ended in January 3, 1989?", "context": "CREATE TABLE table_197446_1 (term_began VARCHAR, term_ended VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_19744915_22 WHERE rank = 5", "question": "How many different total points does the couple ranked at number 5 have?", "context": "CREATE TABLE table_19744915_22 (total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT couple FROM table_19744915_22 WHERE vote_percentage = \"21.843%\"", "question": "What couple had vote percentage of 21.843%?", "context": "CREATE TABLE table_19744915_22 (couple VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT MAX(judges) FROM table_19744915_22 WHERE rank = 5", "question": "How many judges points did the couple ranked at number 5 have?", "context": "CREATE TABLE table_19744915_22 (judges INTEGER, rank VARCHAR)"}, {"answer": "SELECT couple FROM table_19744915_22 WHERE public < 2.0", "question": "What couple had less than 2.0 points from the public?", "context": "CREATE TABLE table_19744915_22 (couple VARCHAR, public INTEGER)"}, {"answer": "SELECT COUNT(result) FROM table_19744915_17 WHERE couple = \"Ellery and Frankie\"", "question": "What was the total result for couple Ellery and Frankie?", "context": "CREATE TABLE table_19744915_17 (result VARCHAR, couple VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_19744915_17 WHERE vote_percentage = \"2.111%\"", "question": "If the vote percentage is 2.111%, what was the minimum rank?", "context": "CREATE TABLE table_19744915_17 (rank INTEGER, vote_percentage VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_19744915_17 WHERE total = 17", "question": "If the total is 17, what was the maximum rank amount?", "context": "CREATE TABLE table_19744915_17 (rank INTEGER, total VARCHAR)"}, {"answer": "SELECT vote_percentage FROM table_19744915_17 WHERE couple = \"Todd and Susie\"", "question": "For couple Todd and Susie, what was the vote percentage?", "context": "CREATE TABLE table_19744915_17 (vote_percentage VARCHAR, couple VARCHAR)"}, {"answer": "SELECT couple FROM table_19744915_18 WHERE rank = 9", "question": "When 9 is the rank who are the couple?", "context": "CREATE TABLE table_19744915_18 (couple VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_19744915_18 WHERE couple = \"Roxanne and Daniel\"", "question": "When roxanne and daniel are the couple what is the highest rank?", "context": "CREATE TABLE table_19744915_18 (rank INTEGER, couple VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_19744915_18 WHERE couple = \"Ellery and Frankie\"", "question": "When ellery and frankie are the couple what is the highest total?", "context": "CREATE TABLE table_19744915_18 (total INTEGER, couple VARCHAR)"}, {"answer": "SELECT result FROM table_19744915_18 WHERE public = 8", "question": "When 8 is the public what are the results?", "context": "CREATE TABLE table_19744915_18 (result VARCHAR, public VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_19744915_18 WHERE result = \"Safe\" AND public = 8", "question": "When 8 is the public and the result is safe what is the highest rank?", "context": "CREATE TABLE table_19744915_18 (rank INTEGER, result VARCHAR, public VARCHAR)"}, {"answer": "SELECT karen FROM table_19744915_4 WHERE nicky = \"2.5\"", "question": "Name the karen when nicky is 2.5", "context": "CREATE TABLE table_19744915_4 (karen VARCHAR, nicky VARCHAR)"}, {"answer": "SELECT capacity FROM table_1974545_3 WHERE baseball_stadium = \"Owl Athletic Complex\"", "question": "What is the capacity for the school that has the Owl Athletic Complex baseball stadium?", "context": "CREATE TABLE table_1974545_3 (capacity VARCHAR, baseball_stadium VARCHAR)"}, {"answer": "SELECT softball_stadium FROM table_1974545_3 WHERE baseball_stadium = \"Eastern Baseball Stadium\"", "question": "What is the name of the softball stadium for the school that has Eastern Baseball Stadium?", "context": "CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, baseball_stadium VARCHAR)"}, {"answer": "SELECT softball_stadium FROM table_1974545_3 WHERE school = \"UMass Boston\"", "question": "What is the name of UMass Boston's softball stadium?", "context": "CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, school VARCHAR)"}, {"answer": "SELECT softball_stadium FROM table_1974545_3 WHERE school = \"Rhode Island College\"", "question": "What is the name of Rhode Island College's softball stadium?", "context": "CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(basketball_arena) FROM table_1974545_3 WHERE capacity = \"3,000\"", "question": "How many basketball arenas are there that belong to a school with a capacity of 3,000?", "context": "CREATE TABLE table_1974545_3 (basketball_arena VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT baseball_stadium FROM table_1974545_3 WHERE basketball_arena = \"The Murray Center\"", "question": "What is the name of the baseball stadium for the school with the Murray Center basketball arena?", "context": "CREATE TABLE table_1974545_3 (baseball_stadium VARCHAR, basketball_arena VARCHAR)"}, {"answer": "SELECT location FROM table_1974545_2 WHERE institution = \"Westfield State University\"", "question": "Where is the Westfield State University located?", "context": "CREATE TABLE table_1974545_2 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT founded FROM table_1974545_2 WHERE location = \"Salem, Massachusetts\"", "question": "When was the school in Salem, Massachusetts located?", "context": "CREATE TABLE table_1974545_2 (founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT nickname FROM table_1974545_2 WHERE institution = \"Westfield State University\"", "question": "What's the nickname of Westfield State University's students?", "context": "CREATE TABLE table_1974545_2 (nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT lec_sport FROM table_1974545_2 WHERE institution = \"Fitchburg State University\"", "question": "What's Fitchburg State University's LEC sport?", "context": "CREATE TABLE table_1974545_2 (lec_sport VARCHAR, institution VARCHAR)"}, {"answer": "SELECT location FROM table_1974545_2 WHERE nickname = \"Falcons\"", "question": "Where is the school whose students are nicknamed falcons located?", "context": "CREATE TABLE table_1974545_2 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT primary_conference FROM table_1974545_2 WHERE institution = \"Salem State University\"", "question": "What's Salem State University's primary conference?", "context": "CREATE TABLE table_1974545_2 (primary_conference VARCHAR, institution VARCHAR)"}, {"answer": "SELECT incumbent FROM table_19753079_36 WHERE district = \"North Carolina 9\"", "question": "Name the incumbent for north carolina 9", "context": "CREATE TABLE table_19753079_36 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_19753079_36 WHERE district = \"North Carolina 7\"", "question": "Name the total party for north carolina 7", "context": "CREATE TABLE table_19753079_36 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_19753079_36 WHERE candidates = \"Sue Myrick (R) 69.0% Jeff Doctor (D) 31.0%\"", "question": "Name the incumbent for sue myrick (r) 69.0% jeff doctor (d) 31.0%", "context": "CREATE TABLE table_19753079_36 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_19753079_36 WHERE district = \"North Carolina 7\"", "question": "Name the result for north carolina 7", "context": "CREATE TABLE table_19753079_36 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_1974782_1 WHERE institution = \"Babson College\"", "question": "What's Babson College's enrollment?", "context": "CREATE TABLE table_1974782_1 (enrollment INTEGER, institution VARCHAR)"}, {"answer": "SELECT MAX(joined) FROM table_1974782_1 WHERE institution = \"Clark University\"", "question": "When has Clark University joined the Conference?", "context": "CREATE TABLE table_1974782_1 (joined INTEGER, institution VARCHAR)"}, {"answer": "SELECT type FROM table_1974782_1 WHERE location = \"New London, Connecticut\"", "question": "What's the type of the school in New London, Connecticut? ", "context": "CREATE TABLE table_1974782_1 (type VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_1974782_1 WHERE location = \"Springfield, Massachusetts\"", "question": "When was the school in Springfield, Massachusetts founded?", "context": "CREATE TABLE table_1974782_1 (founded INTEGER, location VARCHAR)"}, {"answer": "SELECT institution FROM table_1974782_1 WHERE location = \"Worcester, Massachusetts\"", "question": "What school is located in Worcester, Massachusetts?", "context": "CREATE TABLE table_1974782_1 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT candidates FROM table_19753079_12 WHERE district = \"Florida 13\"", "question": "Who are the candidates in Florida 13 district?", "context": "CREATE TABLE table_19753079_12 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_19753079_12 WHERE first_elected = 1988", "question": "How many different pairs of candidates were there for the district first elected in 1988?", "context": "CREATE TABLE table_19753079_12 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_19753079_12 WHERE district = \"Florida 10\"", "question": "Who were candidates in Florida 10 district?", "context": "CREATE TABLE table_19753079_12 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_19753079_12 WHERE district = \"Florida 9\"", "question": "What party got elected in Florida 9 district?", "context": "CREATE TABLE table_19753079_12 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(rnd) FROM table_19751479_4 WHERE fastest_lap = \"#67 The Racer's Group\"", "question": "What is the first round that had #67 the racer's group with the fastest lap?", "context": "CREATE TABLE table_19751479_4 (rnd INTEGER, fastest_lap VARCHAR)"}, {"answer": "SELECT COUNT(fastest_lap) FROM table_19751479_4 WHERE rnd = 10 AND pole_position = \"#99 GAINSCO/Bob Stallings Racing\"", "question": "How many races had #99 gainsco/bob stallings racing in round 10?", "context": "CREATE TABLE table_19751479_4 (fastest_lap VARCHAR, rnd VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT incumbent FROM table_19753079_8 WHERE first_elected = 2009", "question": "What incumbent was first elected in 2009?", "context": "CREATE TABLE table_19753079_8 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_19753079_8 WHERE district = \"California 7\"", "question": "How many were first elected in California 7?", "context": "CREATE TABLE table_19753079_8 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_19753079_8 WHERE incumbent = \"George Miller\"", "question": "What district did George Miller belong to?", "context": "CREATE TABLE table_19753079_8 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_19753079_41 WHERE candidates = \"Mark Critz (D) 50.8% Tim Burns (R) 49.2%\"", "question": "When mark critz (d) 50.8% tim burns (r) 49.2% are the candidates what is the party?", "context": "CREATE TABLE table_19753079_41 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_19753079_41 WHERE incumbent = \"Chris Carney\"", "question": "When chris carney is the incumbent what are the results?", "context": "CREATE TABLE table_19753079_41 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_19753079_41 WHERE first_elected = 1994", "question": "When 1994 is the first elected what is the district?", "context": "CREATE TABLE table_19753079_41 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_19753079_41 WHERE district = \"Pennsylvania 3\"", "question": "When pennsylvania 3 is the district who is the incumbent?", "context": "CREATE TABLE table_19753079_41 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_19753079_41 WHERE first_elected = 1984", "question": "When 1984 is the first elected who are the candidates?", "context": "CREATE TABLE table_19753079_41 (candidates VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT result FROM table_19763199_4 WHERE artist = \"Salva Ortega\"", "question": "What is Salva Ortega's result?", "context": "CREATE TABLE table_19763199_4 (result VARCHAR, artist VARCHAR)"}, {"answer": "SELECT televotes FROM table_19763199_4 WHERE jury_votes = 4", "question": "How many televotes are there where there is 4 jury votes?", "context": "CREATE TABLE table_19763199_4 (televotes VARCHAR, jury_votes VARCHAR)"}, {"answer": "SELECT jury_votes FROM table_19763199_4 WHERE televotes = 7", "question": "How many jury votes for the televote of 7?", "context": "CREATE TABLE table_19763199_4 (jury_votes VARCHAR, televotes VARCHAR)"}, {"answer": "SELECT result FROM table_19763199_3 WHERE artist = \"Normativa Vigente\"", "question": "What is the result for Normativa Vigente?", "context": "CREATE TABLE table_19763199_3 (result VARCHAR, artist VARCHAR)"}, {"answer": "SELECT song FROM table_19763199_3 WHERE total_votes = 24", "question": "What song has 24 votes?", "context": "CREATE TABLE table_19763199_3 (song VARCHAR, total_votes VARCHAR)"}, {"answer": "SELECT MIN(total_votes) FROM table_19763199_3", "question": "What is the least total votes?", "context": "CREATE TABLE table_19763199_3 (total_votes INTEGER)"}, {"answer": "SELECT total_votes FROM table_19763199_3 WHERE artist = \"Carlos Ferrer EAI\"", "question": "How many votes does Carlos Ferrer Eai have?", "context": "CREATE TABLE table_19763199_3 (total_votes VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_197638_6", "question": "How many players are on this list?", "context": "CREATE TABLE table_197638_6 (_number INTEGER)"}, {"answer": "SELECT player FROM table_197638_6 WHERE french_open = 1999", "question": "Who won the French Open in 1999?", "context": "CREATE TABLE table_197638_6 (player VARCHAR, french_open VARCHAR)"}, {"answer": "SELECT player FROM table_197638_6 WHERE us_open = 1937", "question": "Who won the US Open in 1937?", "context": "CREATE TABLE table_197638_6 (player VARCHAR, us_open VARCHAR)"}, {"answer": "SELECT COUNT(australian_open) FROM table_197638_6 WHERE player = \"Roy Emerson\"", "question": "How many times did Roy Emerson win the Australian Open?", "context": "CREATE TABLE table_197638_6 (australian_open VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(age) FROM table_197638_6 WHERE player = \"Roy Emerson\"", "question": "At what age did Roy Emerson complete the Grand Slam?", "context": "CREATE TABLE table_197638_6 (age INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_19764939_1 WHERE total = 2", "question": "Name the least rank for 2", "context": "CREATE TABLE table_19764939_1 (rank INTEGER, total VARCHAR)"}, {"answer": "SELECT total FROM table_19764939_1 WHERE player = \"Jamie Carragher\"", "question": "Name the total for jamie carragher", "context": "CREATE TABLE table_19764939_1 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(club_world_cup) FROM table_19764939_1 WHERE player = \"Djibril Cisse\"", "question": "Name the total number of club worl cup for djibril cisse", "context": "CREATE TABLE table_19764939_1 (club_world_cup VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(post_code) FROM table_1976898_1 WHERE chinese_name__simplified___traditional_ = \"\u6f5c\u5c71\u53bf / \u6f5b\u5c71\u7e23\"", "question": "What's the post code of the county with the Chinese name  \u6f5c\u5c71\u53bf / \u6f5b\u5c71\u7e23?", "context": "CREATE TABLE table_1976898_1 (post_code INTEGER, chinese_name__simplified___traditional_ VARCHAR)"}, {"answer": "SELECT english_name FROM table_1976898_1 WHERE chinese_name__simplified___traditional_ = \"\u592a\u6e56\u53bf / \u592a\u6e56\u7e23\"", "question": "What's the English name of the county called \u592a\u6e56\u53bf / \u592a\u6e56\u7e23 in Chinese?", "context": "CREATE TABLE table_1976898_1 (english_name VARCHAR, chinese_name__simplified___traditional_ VARCHAR)"}, {"answer": "SELECT english_name FROM table_1976898_1 WHERE post_code = 246400", "question": "What's the English name of the county with a postcode 246400?", "context": "CREATE TABLE table_1976898_1 (english_name VARCHAR, post_code VARCHAR)"}, {"answer": "SELECT chinese_name__simplified___traditional_ FROM table_1976898_1 WHERE english_name = \"Susong County\"", "question": "What's the Chinese (simplified/traditional) name of Susong County?", "context": "CREATE TABLE table_1976898_1 (chinese_name__simplified___traditional_ VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT pinyin FROM table_1976898_1 WHERE post_code = 246500", "question": "What's the Pinyin name of the county with a postcode 246500?", "context": "CREATE TABLE table_1976898_1 (pinyin VARCHAR, post_code VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_19778010_5 WHERE opponent = \"Houston\"", "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(high_assists) FROM table_19778010_5 WHERE high_rebounds = \"Sales (10)\"", "question": "How many different players did the high assists in games where the high rebounds were done by Sales (10)?", "context": "CREATE TABLE table_19778010_5 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_19778010_5 WHERE date = \"June 22\"", "question": "What's the number of the game played on June 22?", "context": "CREATE TABLE table_19778010_5 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_19778010_5 WHERE game = 8", "question": "Who was game number 8 played against?", "context": "CREATE TABLE table_19778010_5 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_19778010_5 WHERE high_assists = \"Five Players (3)\"", "question": "Who did the high rebounds in the game in which five players (3) did the high assists?", "context": "CREATE TABLE table_19778010_5 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT nosotros___nosotras FROM table_1977630_2 WHERE \u00e9l___ella___usted = \"piense\"", "question": "What are all  the conjugated forms of the verb where the el/ ella/usted verb is piense?", "context": "CREATE TABLE table_1977630_2 (nosotros___nosotras VARCHAR, \u00e9l___ella___usted VARCHAR)"}, {"answer": "SELECT yo FROM table_1977630_2 WHERE vosotros___vosotras = \"mol\u00e1is\"", "question": "What are all  the conjugated forms of the verb moler where the vosotros / vosotras is mol\u00e1is for the yo tense?", "context": "CREATE TABLE table_1977630_2 (yo VARCHAR, vosotros___vosotras VARCHAR)"}, {"answer": "SELECT COUNT(verbs) FROM table_1977630_2 WHERE yo = \"sienta\"", "question": "how many verbs have the yo form as sienta?", "context": "CREATE TABLE table_1977630_2 (verbs VARCHAR, yo VARCHAR)"}, {"answer": "SELECT \u00e9l___ella___usted FROM table_1977630_2 WHERE vos__ * _ = \"muelas / mol\u00e1s\"", "question": "What  us the conjucated form(s)  of  el/ella/ usted when the Vos (*) is muelas / mol\u00e1s?", "context": "CREATE TABLE table_1977630_2 (\u00e9l___ella___usted VARCHAR, vos__ VARCHAR, _ VARCHAR)"}, {"answer": "SELECT vos__ * _ FROM table_1977630_2 WHERE \u00e9l___ella___usted = \"muela\"", "question": "What are the forms of the conjucated vos(*) where \u00e9l / ella / usted is muela", "context": "CREATE TABLE table_1977630_2 (vos__ VARCHAR, _ VARCHAR, \u00e9l___ella___usted VARCHAR)"}, {"answer": "SELECT COUNT(till_mathura) FROM table_19787093_1 WHERE till_agra = 500", "question": "How many have the Till Agra of 500?", "context": "CREATE TABLE table_19787093_1 (till_mathura VARCHAR, till_agra VARCHAR)"}, {"answer": "SELECT vehicle_category FROM table_19787093_1 WHERE till_agra = 1050", "question": "What kind of vehicle is the agra 1050?", "context": "CREATE TABLE table_19787093_1 (vehicle_category VARCHAR, till_agra VARCHAR)"}, {"answer": "SELECT MAX(till_mathura) FROM table_19787093_1 WHERE till_aligarh = 150", "question": "If the till aligarh is 150, what the mac till mathura?", "context": "CREATE TABLE table_19787093_1 (till_mathura INTEGER, till_aligarh VARCHAR)"}, {"answer": "SELECT MAX(for_round_trip) FROM table_19787093_1 WHERE till_agra = 1050", "question": "If the till agra is 1050, what is the max round trip?", "context": "CREATE TABLE table_19787093_1 (for_round_trip INTEGER, till_agra VARCHAR)"}, {"answer": "SELECT MIN(till_aligarh) FROM table_19787093_1 WHERE vehicle_category = \"Multi-axle Vehicle\"", "question": "If the vehicle category is multi-axle vehicle, what is the till aligarh?", "context": "CREATE TABLE table_19787093_1 (till_aligarh INTEGER, vehicle_category VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_19789597_6 WHERE high_assists = \"S. Johnson (3)\"", "question": "What's the lowest  number of a game where S. Johnson (3) did the most high assists?", "context": "CREATE TABLE table_19789597_6 (game INTEGER, high_assists VARCHAR)"}, {"answer": "SELECT opponent FROM table_19789597_6 WHERE date = \"July 12\"", "question": "Who was the game on July 12 played against?", "context": "CREATE TABLE table_19789597_6 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_19789597_6 WHERE high_rebounds = \"McWilliams (8)\"", "question": "What was the record in the game where McWilliams (8) did the most high rebounds?", "context": "CREATE TABLE table_19789597_6 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT opponent FROM table_19789597_6 WHERE date = \"July 7\"", "question": "Who was the game on July 7 played against?", "context": "CREATE TABLE table_19789597_6 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT owner FROM table_1979203_1 WHERE callsign = \"WLIW\"", "question": "what is the owner of the callsign wliw", "context": "CREATE TABLE table_1979203_1 (owner VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT COUNT(callsign) FROM table_1979203_1 WHERE branding = \"Telemundo 47\"", "question": "how many callsigns are for the branding telemundo 47", "context": "CREATE TABLE table_1979203_1 (callsign VARCHAR, branding VARCHAR)"}, {"answer": "SELECT _virtual_ FROM table_1979203_1 WHERE callsign = \"WNET\"", "question": "what is the virtual callsign if is wnet", "context": "CREATE TABLE table_1979203_1 (_virtual_ VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT branding FROM table_1979203_1 WHERE _virtual_ = \"13.1\"", "question": "what is the name of the branding where the virtual is 13.1", "context": "CREATE TABLE table_1979203_1 (branding VARCHAR, _virtual_ VARCHAR)"}, {"answer": "SELECT MIN(district) FROM table_1979619_3 WHERE residence = \"Newtown Square\"", "question": "Name the district for newtown square", "context": "CREATE TABLE table_1979619_3 (district INTEGER, residence VARCHAR)"}, {"answer": "SELECT party FROM table_1979619_3 WHERE residence = \"Bensalem\"", "question": "Name the party for bensalem", "context": "CREATE TABLE table_1979619_3 (party VARCHAR, residence VARCHAR)"}, {"answer": "SELECT COUNT(term_ends) FROM table_1979619_3 WHERE residence = \"Bethlehem\"", "question": "Name the term ends for bethlehem", "context": "CREATE TABLE table_1979619_3 (term_ends VARCHAR, residence VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_1979619_3 WHERE representative = \"Rob Teplitz\"", "question": "Name the total number of districts for rob teplitz", "context": "CREATE TABLE table_1979619_3 (district VARCHAR, representative VARCHAR)"}, {"answer": "SELECT result FROM table_19810459_1 WHERE background = \"Business major\"", "question": "What was the result for the contestant whose background was as a business major?", "context": "CREATE TABLE table_19810459_1 (result VARCHAR, background VARCHAR)"}, {"answer": "SELECT background FROM table_19810459_1 WHERE result = \"11th place\"", "question": "What was the background of the contestant whose result was 11th place?", "context": "CREATE TABLE table_19810459_1 (background VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(contestant) FROM table_19810459_1 WHERE background = \"Internet dreamer\"", "question": "For how many contestants was the background internet dreamer? ", "context": "CREATE TABLE table_19810459_1 (contestant VARCHAR, background VARCHAR)"}, {"answer": "SELECT result FROM table_19810459_1 WHERE background = \"Small business owner\"", "question": "What was the result for the contestant who was a small business owner? ", "context": "CREATE TABLE table_19810459_1 (result VARCHAR, background VARCHAR)"}, {"answer": "SELECT original_team FROM table_19810459_1 WHERE result = \"10th place\"", "question": "What team was the contestant who finished in 10th place originally on? ", "context": "CREATE TABLE table_19810459_1 (original_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT hometown FROM table_19810459_1 WHERE background = \"Financial consultant\"", "question": "What is the hometown of the contestant whose background is as a financial consultant? ", "context": "CREATE TABLE table_19810459_1 (hometown VARCHAR, background VARCHAR)"}, {"answer": "SELECT COUNT(rating) FROM table_19805130_3 WHERE rating / SHARE(18 - 49) = 3.8 / 10", "question": "If the rating/share is 3.8/10, what is the total number of rating?", "context": "CREATE TABLE table_19805130_3 (rating VARCHAR)"}, {"answer": "SELECT COUNT(share) FROM table_19805130_3 WHERE rank__night_ = \"9\"", "question": "If the night rank is 9, what is the total share number?", "context": "CREATE TABLE table_19805130_3 (share VARCHAR, rank__night_ VARCHAR)"}, {"answer": "SELECT episode FROM table_19805130_3 WHERE rank__night_ = \"9\"", "question": "What is the name of the episode with a night rank of 9?", "context": "CREATE TABLE table_19805130_3 (episode VARCHAR, rank__night_ VARCHAR)"}, {"answer": "SELECT rating FROM table_19805130_3 WHERE rating / SHARE(18 - 49) = 2.0 / 6 AND viewers__millions_ = \"5.14\"", "question": "If the amount of viewers is 5.14 million and the rating/share is 2.0/6, what is the ranking?", "context": "CREATE TABLE table_19805130_3 (rating VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_19852975_3 WHERE arties_disguises = \"Swedish sailor\"", "question": "Name the writers for swedish sailor", "context": "CREATE TABLE table_19852975_3 (writer_s_ VARCHAR, arties_disguises VARCHAR)"}, {"answer": "SELECT MIN(season__number) FROM table_19852975_3 WHERE arties_disguises = \"Herr Ostropolyer, pastry chef\"", "question": "Name the season number for herr ostropolyer, pastry chef", "context": "CREATE TABLE table_19852975_3 (season__number INTEGER, arties_disguises VARCHAR)"}, {"answer": "SELECT principal FROM table_1984697_85 WHERE school = \"Northfield Junior-Senior High school\"", "question": "Name the principal of Northfield Junior-Senior High School.", "context": "CREATE TABLE table_1984697_85 (principal VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_1984697_85 WHERE city___town = \"North Manchester\"", "question": "What is the name of the school/s in North Manchester?", "context": "CREATE TABLE table_1984697_85 (school VARCHAR, city___town VARCHAR)"}, {"answer": "SELECT school FROM table_1984697_85 WHERE size = 604", "question": "Name the school/s with is size of 604.", "context": "CREATE TABLE table_1984697_85 (school VARCHAR, size VARCHAR)"}, {"answer": "SELECT idoe_profile FROM table_1984697_85 WHERE city___town = \"North Manchester\"", "question": "What is the IDOE Profile in North Manchester?", "context": "CREATE TABLE table_1984697_85 (idoe_profile VARCHAR, city___town VARCHAR)"}, {"answer": "SELECT grades FROM table_1984697_85 WHERE school = \"Manchester Junior-Senior High school\"", "question": "What are the grades served at Manchester Junior-Senior High School?", "context": "CREATE TABLE table_1984697_85 (grades VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_19852975_4 WHERE writer_s_ = \"Max Ehrlich\"", "question": "Writer Max Ehrlich, what is the minimum series number?", "context": "CREATE TABLE table_19852975_4 (series__number INTEGER, writer_s_ VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_19852975_4 WHERE writer_s_ = \"Denne Bart Petitclerc\"", "question": "From writer Denne Bart Petitclerc, what is the maximum season number?", "context": "CREATE TABLE table_19852975_4 (season__number INTEGER, writer_s_ VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_19852975_4 WHERE writer_s_ = \"Max Ehrlich\"", "question": "From writer Max Ehrlich, what is the total amount of series numbers?", "context": "CREATE TABLE table_19852975_4 (series__number VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_19850806_3 WHERE rd = \"3\"", "question": "Who is the winning driver when rd. is 3?", "context": "CREATE TABLE table_19850806_3 (winning_driver VARCHAR, rd VARCHAR)"}, {"answer": "SELECT COUNT(winning_driver) FROM table_19850806_3 WHERE winning_team = \"Bryan Herta Autosport\"", "question": "How many winning drivers are there when the winning team is Bryan herta autosport?", "context": "CREATE TABLE table_19850806_3 (winning_driver VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT report FROM table_19850806_3 WHERE rd = \"9\"", "question": "Which report is where rd. is 9?", "context": "CREATE TABLE table_19850806_3 (report VARCHAR, rd VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_19850806_3 WHERE race = \"Texas\" AND winning_driver = \"Dario Franchitti\"", "question": "Who held the fastest lap in the race in texas and dario franchitti is the winning driver?", "context": "CREATE TABLE table_19850806_3 (fastest_lap VARCHAR, race VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT COUNT(huckleberry_hound) FROM table_19860361_4 WHERE air_date = \"1960.09.18\"", "question": "How many Huckleberry Hound episodes were aired on 1960.09.18?", "context": "CREATE TABLE table_19860361_4 (huckleberry_hound VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT pixie_and_dixie FROM table_19860361_3 WHERE ep = 7", "question": "What is the Pixie and Dixie skit in episode 7?", "context": "CREATE TABLE table_19860361_3 (pixie_and_dixie VARCHAR, ep VARCHAR)"}, {"answer": "SELECT yogi_bear FROM table_19860361_3 WHERE air_date = \"1959.12.21\"", "question": "What is the Yogi Bear that aired on 1959.12.21?", "context": "CREATE TABLE table_19860361_3 (yogi_bear VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT frequency FROM table_19874169_3 WHERE branding = \"YES! FM 101.1\"", "question": "From brand Yes! FM 101.1, what was the frequency?", "context": "CREATE TABLE table_19874169_3 (frequency VARCHAR, branding VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_19874169_3 WHERE branding = \"YES! FM 91.1 Boracay\"", "question": "If the branding is Yes! FM 91.1 Boracay, what is the power?", "context": "CREATE TABLE table_19874169_3 (power__kw_ VARCHAR, branding VARCHAR)"}, {"answer": "SELECT branding FROM table_19874169_3 WHERE callsign = \"DXYR\"", "question": "If the call sign is DXYR, what is the branding?", "context": "CREATE TABLE table_19874169_3 (branding VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT year FROM table_1986692_1 WHERE playoffs = \"divisional Semifinals\"", "question": "When divisional semifinals are the playoffs what is the year?", "context": "CREATE TABLE table_1986692_1 (year VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT regular_season FROM table_1986692_1 WHERE playoffs = \"divisional Finals\"", "question": "When divisional finals are the playoffs what is the regular season?", "context": "CREATE TABLE table_1986692_1 (regular_season VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_1986692_1 WHERE year = \"1992\"", "question": "When 1992 is the year how many divisions are there?", "context": "CREATE TABLE table_1986692_1 (division VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_1986692_1 WHERE open_cup = \"Final\"", "question": "When final is the open cup what is the league?", "context": "CREATE TABLE table_1986692_1 (league VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT open_cup FROM table_1986692_1 WHERE year = \"1995\"", "question": "When 1995 is the year what is the open cup?", "context": "CREATE TABLE table_1986692_1 (open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_1986692_1 WHERE year = \"2008\"", "question": "When 2008 is the year how many divisions are there?", "context": "CREATE TABLE table_1986692_1 (division VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(stumped) FROM table_19870086_24 WHERE dismissals = 13", "question": "what is the least number of stumps in a game with 13 dismissals", "context": "CREATE TABLE table_19870086_24 (stumped INTEGER, dismissals VARCHAR)"}, {"answer": "SELECT COUNT(dismissals) FROM table_19870086_24 WHERE innings = 8", "question": "what is the highest number of dismissals in a match with 8 innings", "context": "CREATE TABLE table_19870086_24 (dismissals VARCHAR, innings VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_19870086_24 WHERE player = \"Adam Gilchrist\"", "question": "what is the rank of adam gilchrist", "context": "CREATE TABLE table_19870086_24 (rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT location FROM table_1987995_5 WHERE team = \"Twins\"", "question": "Where is the ballpark of the Twins?", "context": "CREATE TABLE table_1987995_5 (location VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_1987995_5 WHERE ballpark = \"Memorial Stadium\"", "question": "How many locations have been used for ballparks named Memorial Stadium?", "context": "CREATE TABLE table_1987995_5 (location VARCHAR, ballpark VARCHAR)"}, {"answer": "SELECT MIN(closed) FROM table_1987995_5 WHERE demod = 1994", "question": "When was the park demolished in 1994 closed?", "context": "CREATE TABLE table_1987995_5 (closed INTEGER, demod VARCHAR)"}, {"answer": "SELECT flag FROM table_19872699_1 WHERE builder = \"Green Marine\"", "question": "Which flag was on the Green Marine's boat?", "context": "CREATE TABLE table_19872699_1 (flag VARCHAR, builder VARCHAR)"}, {"answer": "SELECT builder FROM table_19872699_1 WHERE skipper = \"Ken Read\"", "question": "Who build the boat where Ken Read was the skipper?", "context": "CREATE TABLE table_19872699_1 (builder VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT COUNT(flag) FROM table_19872699_1 WHERE design_firm = \"Farr Yacht Design\"", "question": "Farr Yacht Design designed boats for how many country/flags?", "context": "CREATE TABLE table_19872699_1 (flag VARCHAR, design_firm VARCHAR)"}, {"answer": "SELECT builder FROM table_19872699_1 WHERE design_firm = \"Botin Carkeek\"", "question": "Who were the builders of the boat designed by Botin Carkeek?", "context": "CREATE TABLE table_19872699_1 (builder VARCHAR, design_firm VARCHAR)"}, {"answer": "SELECT COUNT(location_s_) FROM table_19897294_10 WHERE family_families = \"The Bailey Family\"", "question": "In how many locations was the episode with the Bailey family filmed?", "context": "CREATE TABLE table_19897294_10 (location_s_ VARCHAR, family_families VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_19897294_10 WHERE family_families = \"The Jeans Family\"", "question": "How many episodes with different season numbers had the Jeans family in them?", "context": "CREATE TABLE table_19897294_10 (no_in_season VARCHAR, family_families VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_19897294_10 WHERE family_families = \"The Ririe Family\"", "question": "When did the episode with the Ririe family air for the first time?", "context": "CREATE TABLE table_19897294_10 (original_air_date VARCHAR, family_families VARCHAR)"}, {"answer": "SELECT location_s_ FROM table_19897294_10 WHERE no_in_series = \"US9\"", "question": "Where was the episode with series number US9 filmed?", "context": "CREATE TABLE table_19897294_10 (location_s_ VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_19897294_10 WHERE no_in_series = \"US6\"", "question": "What's the season number of the episode with series number US6?", "context": "CREATE TABLE table_19897294_10 (no_in_season INTEGER, no_in_series VARCHAR)"}, {"answer": "SELECT family_families FROM table_19897294_11 WHERE no_in_series = \"US14\"", "question": "What family was featured in episode us14 of the series?", "context": "CREATE TABLE table_19897294_11 (family_families VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(location_s_) FROM table_19897294_11 WHERE family_families = \"The Webb Family\"", "question": "How many locations featured the Webb Family?", "context": "CREATE TABLE table_19897294_11 (location_s_ VARCHAR, family_families VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = \"US17\"", "question": "What episode in the season was episode us17 in the series?", "context": "CREATE TABLE table_19897294_11 (no_in_season VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = \"US18\"", "question": "What episode in the season was episode us18 in the series?", "context": "CREATE TABLE table_19897294_11 (no_in_season VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_19897294_11 WHERE family_families = \"The Amaral Family\"", "question": "What episode in the series was the Amaral family featured?", "context": "CREATE TABLE table_19897294_11 (no_in_series VARCHAR, family_families VARCHAR)"}, {"answer": "SELECT round_winner FROM table_19886463_1 WHERE entrant = \"Craven Mild Racing\"", "question": "Who is the round winner when entrant is craven mild racing?", "context": "CREATE TABLE table_19886463_1 (round_winner VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT round_winner FROM table_19886463_1 WHERE circuit = \"Wanneroo Park\"", "question": "Who is the round winner of the wanneroo park circuit?", "context": "CREATE TABLE table_19886463_1 (round_winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_19886463_1 WHERE format = \"Two heats\"", "question": "Which circuit has two heats as the format?", "context": "CREATE TABLE table_19886463_1 (circuit VARCHAR, format VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_19897294_16 WHERE family_families = \"The Potter Family\"", "question": "Name the original air date for the potter family", "context": "CREATE TABLE table_19897294_16 (original_air_date VARCHAR, family_families VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_19897294_9 WHERE family_families = \"The Ryder Family and The Schwartz Family\"", "question": "how many original air date where family/families is the ryder family and the schwartz family", "context": "CREATE TABLE table_19897294_9 (original_air_date VARCHAR, family_families VARCHAR)"}, {"answer": "SELECT location_s_ FROM table_19897294_9 WHERE family_families = \"The Abbas Family and The Pickering Family\"", "question": "where was the abbas family and the pickering family located", "context": "CREATE TABLE table_19897294_9 (location_s_ VARCHAR, family_families VARCHAR)"}, {"answer": "SELECT class FROM table_19897896_7 WHERE position = \"Forward\"", "question": "in which class is the position forward", "context": "CREATE TABLE table_19897896_7 (class VARCHAR, position VARCHAR)"}, {"answer": "SELECT season FROM table_19897896_7 WHERE position = \"Center\"", "question": "in which season the position was center", "context": "CREATE TABLE table_19897896_7 (season VARCHAR, position VARCHAR)"}, {"answer": "SELECT class FROM table_19897896_7 WHERE university = \"Ohio state\"", "question": "in which class was the ohio state university", "context": "CREATE TABLE table_19897896_7 (class VARCHAR, university VARCHAR)"}, {"answer": "SELECT COUNT(family_families) FROM table_19897294_8 WHERE no_overall = \"UK30\"", "question": "Name the number of families for uk30", "context": "CREATE TABLE table_19897294_8 (family_families VARCHAR, no_overall VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_19897294_8 WHERE family_families = \"The Ward Family and The Wren Family\"", "question": "Name the number in series for in the ward family and the wren family", "context": "CREATE TABLE table_19897294_8 (no_in_series INTEGER, family_families VARCHAR)"}, {"answer": "SELECT family_families FROM table_19897294_8 WHERE no_overall = \"UK31\"", "question": "Name the family for uk31", "context": "CREATE TABLE table_19897294_8 (family_families VARCHAR, no_overall VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_19897294_8", "question": "Name the least number in series", "context": "CREATE TABLE table_19897294_8 (no_in_series INTEGER)"}, {"answer": "SELECT COUNT(location_s_) FROM table_19897294_8 WHERE no_overall = \"UK32\"", "question": "Name the number of locations for uk32", "context": "CREATE TABLE table_19897294_8 (location_s_ VARCHAR, no_overall VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_19897294_5 WHERE no_overall = \"UK17\"", "question": "Name the air date for uk17", "context": "CREATE TABLE table_19897294_5 (original_air_date VARCHAR, no_overall VARCHAR)"}, {"answer": "SELECT family_families FROM table_19897294_5 WHERE no_overall = \"UK17\"", "question": "Name the family/families uk17", "context": "CREATE TABLE table_19897294_5 (family_families VARCHAR, no_overall VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_19908313_2 WHERE crew_chief = \"Billy Wilburn\"", "question": "What is the number of the truck that has the crew chief Billy Wilburn?", "context": "CREATE TABLE table_19908313_2 (_number INTEGER, crew_chief VARCHAR)"}, {"answer": "SELECT _number FROM table_19908313_2 WHERE listed_owner_s_ = \"Stephen Germain\"", "question": "What number truck is owned by Stephen Germain?", "context": "CREATE TABLE table_19908313_2 (_number VARCHAR, listed_owner_s_ VARCHAR)"}, {"answer": "SELECT team FROM table_19908313_2 WHERE primary_sponsor_s_ = \"D3 Outdoors\"", "question": "What team is sponsored by d3 Outdoors?", "context": "CREATE TABLE table_19908313_2 (team VARCHAR, primary_sponsor_s_ VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_19908313_2 WHERE listed_owner_s_ = \"Jeff Wyler\"", "question": "How many teams does Jeff Wyler own?", "context": "CREATE TABLE table_19908313_2 (team VARCHAR, listed_owner_s_ VARCHAR)"}, {"answer": "SELECT primary_sponsor_s_ FROM table_19908313_2 WHERE crew_chief = \"Rick Ren\"", "question": "Who is the primary sponsor for crew cheif Rick Ren's team?", "context": "CREATE TABLE table_19908313_2 (primary_sponsor_s_ VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT primary_sponsor_s_ FROM table_19908313_2 WHERE listed_owner_s_ = \"Bobby Dotter\"", "question": "Who sponsors owner Bobby Dotter's team?", "context": "CREATE TABLE table_19908313_2 (primary_sponsor_s_ VARCHAR, listed_owner_s_ VARCHAR)"}, {"answer": "SELECT price FROM table_19905183_1 WHERE captain = \"Sanath Jayasuriya\"", "question": "What's the price of the team whose captain is Sanath Jayasuriya?", "context": "CREATE TABLE table_19905183_1 (price VARCHAR, captain VARCHAR)"}, {"answer": "SELECT team FROM table_19905183_1 WHERE province = \"Eastern\"", "question": "What team is from the Eastern province?", "context": "CREATE TABLE table_19905183_1 (team VARCHAR, province VARCHAR)"}, {"answer": "SELECT head_coach FROM table_19905183_1 WHERE price = \"$3.22 million\"", "question": "Who's the head coach of the team with a price of $3.22 million?", "context": "CREATE TABLE table_19905183_1 (head_coach VARCHAR, price VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_19905183_1 WHERE head_coach = \"Waqar Younis\"", "question": "In how many teams is Waqar Younis the head coach?", "context": "CREATE TABLE table_19905183_1 (team VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT province FROM table_19905183_1 WHERE team = \"Ruhuna Royals\"", "question": "What province does the Ruhuna Royals team come from?", "context": "CREATE TABLE table_19905183_1 (province VARCHAR, team VARCHAR)"}, {"answer": "SELECT birth_date FROM table_19900792_1 WHERE player = \"Alexey Kuleshov\"", "question": "When was Alexey Kuleshov born?", "context": "CREATE TABLE table_19900792_1 (birth_date VARCHAR, player VARCHAR)"}, {"answer": "SELECT trigger_pack FROM table_19901_1 WHERE rear_sight_type = \"A1\" AND colt_model_no = \"602\"", "question": "What is the trigger pack on the Colt 602 with the a1 rear sight type? ", "context": "CREATE TABLE table_19901_1 (trigger_pack VARCHAR, rear_sight_type VARCHAR, colt_model_no VARCHAR)"}, {"answer": "SELECT rear_sight_type FROM table_19901_1 WHERE muzzle_device = \"ACR muzzle brake\"", "question": "What is the rear sight type on the model with the acr muzzle brake device? ", "context": "CREATE TABLE table_19901_1 (rear_sight_type VARCHAR, muzzle_device VARCHAR)"}, {"answer": "SELECT muzzle_device FROM table_19901_1 WHERE colt_model_no = \"603\"", "question": "Which muzzle devices are on the Colt 603? ", "context": "CREATE TABLE table_19901_1 (muzzle_device VARCHAR, colt_model_no VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_19925114_1 WHERE no_in_season = 8", "question": "How many millions of people in the US watched the episode with season number 8?", "context": "CREATE TABLE table_19925114_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_19925114_1 WHERE no_in_series = 38", "question": "How many episodes had the series number of 38?", "context": "CREATE TABLE table_19925114_1 (directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(us_viewers__millions_) FROM table_19925114_1 WHERE no_in_season = 8", "question": "How many different numbers of people in the US who'd seen the episode with a season number 8 are there?", "context": "CREATE TABLE table_19925114_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(rufus_guest) FROM table_19930660_1 WHERE first_broadcast = \"15 December 2008\"", "question": "Name the rufus guest for 15 december 2008", "context": "CREATE TABLE table_19930660_1 (rufus_guest VARCHAR, first_broadcast VARCHAR)"}, {"answer": "SELECT winner FROM table_19930660_1 WHERE marcus_guest = \"Jason Byrne\"", "question": "Name the winner for jason byrne", "context": "CREATE TABLE table_19930660_1 (winner VARCHAR, marcus_guest VARCHAR)"}, {"answer": "SELECT rufus_guest FROM table_19930660_1 WHERE episode = \"1x07\"", "question": "Name the rufus guest for episode 1x07", "context": "CREATE TABLE table_19930660_1 (rufus_guest VARCHAR, episode VARCHAR)"}, {"answer": "SELECT winner FROM table_19930660_1 WHERE first_broadcast = \"26 January 2009\"", "question": "Name the winner for 26 january 2009", "context": "CREATE TABLE table_19930660_1 (winner VARCHAR, first_broadcast VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_19930660_2 WHERE episode = \"2x11\"", "question": "When was episode 2x11 aired for the first time?", "context": "CREATE TABLE table_19930660_2 (first_broadcast VARCHAR, episode VARCHAR)"}, {"answer": "SELECT winner FROM table_19930660_2 WHERE rufus_guest = \"Sean Lock\"", "question": "Who won the episode in which Sean Lock was Rufus's guest?", "context": "CREATE TABLE table_19930660_2 (winner VARCHAR, rufus_guest VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_19930660_2 WHERE episode = \"2x10\"", "question": "When was the episode 2x10 aired for the first time?", "context": "CREATE TABLE table_19930660_2 (first_broadcast VARCHAR, episode VARCHAR)"}, {"answer": "SELECT marcus_guest FROM table_19930660_2 WHERE rufus_guest = \"Rory McGrath\"", "question": "Who was Marcus's guest in the episode when Rufus's guest was Rory McGrath?", "context": "CREATE TABLE table_19930660_2 (marcus_guest VARCHAR, rufus_guest VARCHAR)"}, {"answer": "SELECT COUNT(ranking_la__2_) FROM table_19948664_2 WHERE world_ranking__1_ = \"21st\"", "question": "How many items were under ranking l.a.(2) when the world ranking was 21st?", "context": "CREATE TABLE table_19948664_2 (ranking_la__2_ VARCHAR, world_ranking__1_ VARCHAR)"}, {"answer": "SELECT author___editor___source FROM table_19948664_2 WHERE ranking_la__2_ = \"1st\"", "question": "What was the author/editor/source when the l.a. ranking was 1st?", "context": "CREATE TABLE table_19948664_2 (author___editor___source VARCHAR, ranking_la__2_ VARCHAR)"}, {"answer": "SELECT COUNT(index__year_) FROM table_19948664_2 WHERE countries_sampled = 157", "question": "How many years were listed under index when there were 157 countries sampled?", "context": "CREATE TABLE table_19948664_2 (index__year_ VARCHAR, countries_sampled VARCHAR)"}, {"answer": "SELECT year_of_publication FROM table_19948664_2 WHERE ranking_la__2_ = \"1st\"", "question": "What was the publication year ranking l.a. is 1st?", "context": "CREATE TABLE table_19948664_2 (year_of_publication VARCHAR, ranking_la__2_ VARCHAR)"}, {"answer": "SELECT COUNT(index__year_) FROM table_19948664_2 WHERE world_ranking__1_ = \"21st\"", "question": "How many years were recorded when world ranking was 21st?", "context": "CREATE TABLE table_19948664_2 (index__year_ VARCHAR, world_ranking__1_ VARCHAR)"}, {"answer": "SELECT wireless_lan FROM table_199666_1 WHERE process_technology = \"90nm\" AND centrino = \"Carmel\"", "question": "What Wireless LAN had a process technology of 90nm and a Carmel centrino?", "context": "CREATE TABLE table_199666_1 (wireless_lan VARCHAR, process_technology VARCHAR, centrino VARCHAR)"}, {"answer": "SELECT chipset FROM table_199666_1 WHERE codename = \"Arrandale\" AND wireless_lan = \"Intel centrino Ultimate-N 6300\"", "question": "How many series had the chipset of the Intel Centrino Ultimate-N 6300 wireless LAN with the codename Arrandale?", "context": "CREATE TABLE table_199666_1 (chipset VARCHAR, codename VARCHAR, wireless_lan VARCHAR)"}, {"answer": "SELECT process_technology FROM table_199666_1 WHERE wireless_lan = \"Intel WiFi Link 5100\"", "question": "What's the process technology of the Intel WiFi Link 5100 wireless LAN?", "context": "CREATE TABLE table_199666_1 (process_technology VARCHAR, wireless_lan VARCHAR)"}, {"answer": "SELECT processor FROM table_199666_1 WHERE wireless_lan = \"Intel centrino Wireless-N 105\"", "question": "What type of processor does the Intel Centrino Wireless-N 105 wireless LAN have?", "context": "CREATE TABLE table_199666_1 (processor VARCHAR, wireless_lan VARCHAR)"}, {"answer": "SELECT codename FROM table_199666_1 WHERE centrino = \"Chief River\"", "question": "What's the code name of the wireless LAN with Chief River Centrino?", "context": "CREATE TABLE table_199666_1 (codename VARCHAR, centrino VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_1997759_1 WHERE last_flew = \"19 April 1985\"", "question": "on 19 april 1985 how many of number last flew", "context": "CREATE TABLE table_1997759_1 (number VARCHAR, last_flew VARCHAR)"}, {"answer": "SELECT registration FROM table_1997759_1 WHERE first_flew = \"31 January 1975\"", "question": "what is the registration located on 31 january 1975 where first flew?", "context": "CREATE TABLE table_1997759_1 (registration VARCHAR, first_flew VARCHAR)"}, {"answer": "SELECT location FROM table_1997759_1 WHERE last_flew = \"11 June 2000\"", "question": "at what location is the last flew on 11 june 2000", "context": "CREATE TABLE table_1997759_1 (location VARCHAR, last_flew VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_1997759_1 WHERE registration = \"F-BVFF\"", "question": "how many number is located at registration f-bvff?", "context": "CREATE TABLE table_1997759_1 (number VARCHAR, registration VARCHAR)"}, {"answer": "SELECT television_commentator FROM table_1998037_9 WHERE radio_commentator = \"Galyna Babiy\"", "question": "Who is the television commentator when the radio commentator is Galyna Babiy?", "context": "CREATE TABLE table_1998037_9 (television_commentator VARCHAR, radio_commentator VARCHAR)"}, {"answer": "SELECT television_commentator FROM table_1998037_9 WHERE spokesperson = \"Kateryna Osadcha\"", "question": "Who is the television commentator when the spokesperson is Kateryna Osadcha?", "context": "CREATE TABLE table_1998037_9 (television_commentator VARCHAR, spokesperson VARCHAR)"}, {"answer": "SELECT MIN(year_s_) FROM table_1998037_9 WHERE spokesperson = \"Ruslana\"", "question": "What is the year when the spoksperson is Ruslana?", "context": "CREATE TABLE table_1998037_9 (year_s_ INTEGER, spokesperson VARCHAR)"}, {"answer": "SELECT television_commentator FROM table_1998037_9 WHERE year_s_ = 2006", "question": "Who is the television commentator for the year 2006?", "context": "CREATE TABLE table_1998037_9 (television_commentator VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_19995378_1 WHERE us_viewers__millions_ = \"10.11\"", "question": "What is the season number of the episode seen by 10.11 million people in the US?", "context": "CREATE TABLE table_19995378_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_19995378_1 WHERE us_viewers__millions_ = \"8.69\"", "question": "How many episodes with different series numbers were seen by 8.69 people in the US?", "context": "CREATE TABLE table_19995378_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT san_antonio_de_lomer\u00edo_municipality___percentage_ FROM table_19998428_3 WHERE language = \"Only native\"", "question": "If the language is only native, what is the percentage of the San Antonio de Lomerio municipality?", "context": "CREATE TABLE table_19998428_3 (san_antonio_de_lomer\u00edo_municipality___percentage_ VARCHAR, language VARCHAR)"}, {"answer": "SELECT MAX(san_javier_municipality___percentage_) FROM table_19998428_3 WHERE language = \"Aymara simi\"", "question": "For language Aymara Simi, what was the maximum San Javier municipality percentage?", "context": "CREATE TABLE table_19998428_3 (san_javier_municipality___percentage_ INTEGER, language VARCHAR)"}, {"answer": "SELECT COUNT(san_juli\u00e1n_municipality___percentage_) FROM table_19998428_3 WHERE san_antonio_de_lomer\u00edo_municipality___percentage_ = \"5.480\"", "question": "If the San Antonio de Lomerio municipality percentage is 5.480, what is the total percentage for the San Julian municipality?", "context": "CREATE TABLE table_19998428_3 (san_juli\u00e1n_municipality___percentage_ VARCHAR, san_antonio_de_lomer\u00edo_municipality___percentage_ VARCHAR)"}, {"answer": "SELECT san_antonio_de_lomer\u00edo_municipality___percentage_ FROM table_19998428_3 WHERE san_javier_municipality___percentage_ = 31", "question": "What is the municipality percentage for San Antonio de Lomerio is San Javier municipality percentage is 31?", "context": "CREATE TABLE table_19998428_3 (san_antonio_de_lomer\u00edo_municipality___percentage_ VARCHAR, san_javier_municipality___percentage_ VARCHAR)"}, {"answer": "SELECT san_antonio_de_lomer\u00edo_municipality___percentage_ FROM table_19998428_3 WHERE cuatro_ca\u00f1adas_municipality___percentage_ = \"252\"", "question": "If the Cuatro Ca\u00f1adas municipality percentage is 252, what are all the San Antonio de Lomer\u00edo municipality percentage?", "context": "CREATE TABLE table_19998428_3 (san_antonio_de_lomer\u00edo_municipality___percentage_ VARCHAR, cuatro_ca\u00f1adas_municipality___percentage_ VARCHAR)"}, {"answer": "SELECT san_javier_municipality___percentage_ FROM table_19998428_3 WHERE cuatro_ca\u00f1adas_municipality___percentage_ = \"202\"", "question": "What is the San Javier municipality percentage if the Cuatro Ca\u00f1adas municipality percentage is 202?", "context": "CREATE TABLE table_19998428_3 (san_javier_municipality___percentage_ VARCHAR, cuatro_ca\u00f1adas_municipality___percentage_ VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_19982699_1 WHERE director = \"Robert Young\"", "question": "How many total number have robert young as the director?", "context": "CREATE TABLE table_19982699_1 (_number VARCHAR, director VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_19982699_1 WHERE producer = \"Charles Salmon\" AND television_premiere = \"January 27, 2007\"", "question": "How many numbers have Charles Salmon as the producer and January 27, 2007 was the television premiere?", "context": "CREATE TABLE table_19982699_1 (_number INTEGER, producer VARCHAR, television_premiere VARCHAR)"}, {"answer": "SELECT COUNT(dvd_release) FROM table_19982699_1 WHERE director = \"David DeCoteau\"", "question": "How many dvd releases where directed by david decoteau?", "context": "CREATE TABLE table_19982699_1 (dvd_release VARCHAR, director VARCHAR)"}, {"answer": "SELECT dvd_release FROM table_19982699_1 WHERE director = \"Billy O'Brien\"", "question": "When was the dvd release directed by Billy O'Brien?", "context": "CREATE TABLE table_19982699_1 (dvd_release VARCHAR, director VARCHAR)"}, {"answer": "SELECT record FROM table_20010140_9 WHERE game = 20", "question": "What was the record after game 20?", "context": "CREATE TABLE table_20010140_9 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_20010140_9 WHERE team = \"Iowa\"", "question": "For the game against Iowa, who had the most assists?", "context": "CREATE TABLE table_20010140_9 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_20010140_10 WHERE date = \"February 15\"", "question": "state high assists on february 15", "context": "CREATE TABLE table_20010140_10 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_20010140_10 WHERE date = \"February 19\"", "question": "how many high points where date is february 19", "context": "CREATE TABLE table_20010140_10 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_20010140_10 WHERE record = \"15\u201310 (5\u20137)\"", "question": "state the number of location attendance where record is 15\u201310 (5\u20137)", "context": "CREATE TABLE table_20010140_10 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_20010140_10 WHERE high_assists = \"Stu Douglass (5) \u2013 4\"", "question": "how many dates where high assists is stu douglass (5) \u2013 4", "context": "CREATE TABLE table_20010140_10 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_20010140_10 WHERE date = \"February 22\"", "question": "how many records were made on february 22", "context": "CREATE TABLE table_20010140_10 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(applications) FROM table_20007413_3 WHERE year = \"1986\"", "question": "Name the most applications for 1986", "context": "CREATE TABLE table_20007413_3 (applications INTEGER, year VARCHAR)"}, {"answer": "SELECT torque FROM table_20007413_3 WHERE year = \"1986\"", "question": "Name the torque for 1986", "context": "CREATE TABLE table_20007413_3 (torque VARCHAR, year VARCHAR)"}, {"answer": "SELECT network FROM table_20026849_1 WHERE destination = \"Australia\"", "question": "What network showed the season with Australia as the destination?", "context": "CREATE TABLE table_20026849_1 (network VARCHAR, destination VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_20026849_1 WHERE contestants = 20", "question": "What was the latest season with 20 contestants?", "context": "CREATE TABLE table_20026849_1 (season INTEGER, contestants VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_20026849_1 WHERE winner = \"Ashutosh Kaushik\"", "question": "What season was won by Ashutosh Kaushik?", "context": "CREATE TABLE table_20026849_1 (season INTEGER, winner VARCHAR)"}, {"answer": "SELECT destination FROM table_20026849_1 WHERE winner = \"Anwar Syed\"", "question": "What was the destination of the season won by Anwar Syed?", "context": "CREATE TABLE table_20026849_1 (destination VARCHAR, winner VARCHAR)"}, {"answer": "SELECT season FROM table_20026849_1 WHERE winner = \"Anthony Yeh\"", "question": "What season was won by Anthony Yeh?", "context": "CREATE TABLE table_20026849_1 (season VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_20026849_1 WHERE destination = \"Africa\"", "question": "Who won the season with Africa as its destination?", "context": "CREATE TABLE table_20026849_1 (winner VARCHAR, destination VARCHAR)"}, {"answer": "SELECT african_spoonbill FROM table_20042805_2 WHERE hadeda_ibis = \"Brown Snake Eagle\"", "question": "What is the African Spoonbill when the Hadeda Ibis is the Brown Snake Eagle?", "context": "CREATE TABLE table_20042805_2 (african_spoonbill VARCHAR, hadeda_ibis VARCHAR)"}, {"answer": "SELECT hadeda_ibis FROM table_20042805_2 WHERE ostrich = \"Dark Chanting Goshawk\"", "question": "What is the Hadeda Ibis when the Ostrich is Dark Chanting Goshawk?", "context": "CREATE TABLE table_20042805_2 (hadeda_ibis VARCHAR, ostrich VARCHAR)"}, {"answer": "SELECT african_spoonbill FROM table_20042805_2 WHERE hadeda_ibis = \"Flernecked Nightjar\"", "question": "What is the African Spoonbill when the Hadeda Ibis is Flernecked Nightjar?", "context": "CREATE TABLE table_20042805_2 (african_spoonbill VARCHAR, hadeda_ibis VARCHAR)"}, {"answer": "SELECT hadeda_ibis FROM table_20042805_2 WHERE knobbilled_duck = \"Pied Crow\"", "question": "What is the Hadeda Ibis when the Knobbilled Duck is Pied Crow?", "context": "CREATE TABLE table_20042805_2 (hadeda_ibis VARCHAR, knobbilled_duck VARCHAR)"}, {"answer": "SELECT african_spoonbill FROM table_20042805_2 WHERE ostrich = \"Brown-hooded Kingfisher\"", "question": "What is the African Spoonbill when the Ostrich is Brown-hooded Kingfisher?", "context": "CREATE TABLE table_20042805_2 (african_spoonbill VARCHAR, ostrich VARCHAR)"}, {"answer": "SELECT hadeda_ibis FROM table_20042805_2 WHERE whitefaced_duck = \"Blacksmith Plover\"", "question": "What is the Hadeda Ibis when the Whitefaced Duck is Blacksmith Plover?", "context": "CREATE TABLE table_20042805_2 (hadeda_ibis VARCHAR, whitefaced_duck VARCHAR)"}, {"answer": "SELECT winning_pilot FROM table_20036882_2 WHERE country = \"Hungary\"", "question": "Name the winning pilot for hungary", "context": "CREATE TABLE table_20036882_2 (winning_pilot VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_20036882_2 WHERE winning_pilot = \"Michael Goulian\"", "question": "Name the most round for michael goulian", "context": "CREATE TABLE table_20036882_2 (round INTEGER, winning_pilot VARCHAR)"}, {"answer": "SELECT country FROM table_20036882_2 WHERE winning_pilot = \"Hannes Arch\"", "question": "Name the country for hannes arch", "context": "CREATE TABLE table_20036882_2 (country VARCHAR, winning_pilot VARCHAR)"}, {"answer": "SELECT written_by FROM table_20046379_3 WHERE no_in_series = \"45\"", "question": "Who wrote the episode with series number 45?", "context": "CREATE TABLE table_20046379_3 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_20046379_3 WHERE production_code = \"214\"", "question": "How many millions of people in the US saw the episode with production code 214?", "context": "CREATE TABLE table_20046379_3 (us_viewers__millions_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_20046379_3 WHERE us_viewers__millions_ = \"3.8\"", "question": "What's the title of the episode seen by 3.8 million people in the US?", "context": "CREATE TABLE table_20046379_3 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_20046379_3 WHERE no_in_series = \"35\"", "question": "On how many different dates did the episode with series number 35 air for the first time?", "context": "CREATE TABLE table_20046379_3 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT date FROM table_2006661_1 WHERE value = \"55c\"", "question": "Name the date for value 55c", "context": "CREATE TABLE table_2006661_1 (date VARCHAR, value VARCHAR)"}, {"answer": "SELECT scott FROM table_2006661_1 WHERE species = \"Chloropsis hardwickii\"", "question": "Name the scott for chloropsis hardwickii", "context": "CREATE TABLE table_2006661_1 (scott VARCHAR, species VARCHAR)"}, {"answer": "SELECT MAX(population__2000_) FROM table_2004733_2 WHERE barangay = \"Bulac\"", "question": "How many people lived in bulac in the year 2000?", "context": "CREATE TABLE table_2004733_2 (population__2000_ INTEGER, barangay VARCHAR)"}, {"answer": "SELECT population__2010_ FROM table_2004733_2 WHERE population_density__2010_ = \"3,965.02\"", "question": "In 2010, how many people lived in cities with a population density of 3,965.02?", "context": "CREATE TABLE table_2004733_2 (population__2010_ VARCHAR, population_density__2010_ VARCHAR)"}, {"answer": "SELECT barangay FROM table_2004733_2 WHERE area__in_km_2__ = \"3.6787\"", "question": "What's the name of the barangay whose area is 3.6787 km\u00b2 ?", "context": "CREATE TABLE table_2004733_2 (barangay VARCHAR, area__in_km_2__ VARCHAR)"}, {"answer": "SELECT MAX(population__2000_) FROM table_2004733_2 WHERE area__in_km_2__ = \"1.2530\"", "question": "How many people lived in the city which has 1.2530 km\u00b2 in the year 2000?", "context": "CREATE TABLE table_2004733_2 (population__2000_ INTEGER, area__in_km_2__ VARCHAR)"}, {"answer": "SELECT COUNT(population__2000_) FROM table_2004733_2 WHERE barangay = \"San Gabriel\"", "question": "How many people lived in san gabriel in the year 2000?", "context": "CREATE TABLE table_2004733_2 (population__2000_ VARCHAR, barangay VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_20065425_1 WHERE termination_of_mission = \"August 5, 1984\"", "question": "How many different titles does the representative whose mission was terminated on August 5, 1984 have?", "context": "CREATE TABLE table_20065425_1 (title VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT state FROM table_20065425_1 WHERE termination_of_mission = \"November 29, 1973\"", "question": "What state does the representative whose mission was terminated on November 29, 1973 represent?", "context": "CREATE TABLE table_20065425_1 (state VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT training FROM table_20065425_1 WHERE presentation_of_credentials = \"February 24, 1950\"", "question": "Who trained the representative whose presentation of credentials happened on February 24, 1950?", "context": "CREATE TABLE table_20065425_1 (training VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_20061872_1 WHERE original_title = \"H\u00e4r har du ditt liv\"", "question": "When was the film H\u00e4r har du ditt liv used in nomination?", "context": "CREATE TABLE table_20061872_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT original_title FROM table_20061872_1 WHERE film_title_used_in_nomination = \"Zozo\"", "question": "What's the original title of the film Zozo?", "context": "CREATE TABLE table_20061872_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT original_title FROM table_20061872_1 WHERE film_title_used_in_nomination = \"The New Land\"", "question": "What's the original title of The New Land?", "context": "CREATE TABLE table_20061872_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT COUNT(championship) FROM table_2009095_2 WHERE outcome = \"Winner\" AND opponents = \"Judy Tegart Dalton Lesley Turner Bowrey\"", "question": "Name the championship for winner and judy tegart dalton lesley turner bowrey", "context": "CREATE TABLE table_2009095_2 (championship VARCHAR, outcome VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT outcome FROM table_2009095_2 WHERE championship = \"Wimbledon\"", "question": "Name the outcome for wimbledon", "context": "CREATE TABLE table_2009095_2 (outcome VARCHAR, championship VARCHAR)"}, {"answer": "SELECT opponents FROM table_2009095_2 WHERE score = \"6\u20134, 3\u20136, 6\u20132\"", "question": "Name the opponets for  6\u20134, 3\u20136, 6\u20132", "context": "CREATE TABLE table_2009095_2 (opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_2009095_2 WHERE opponents = \"Evonne Goolagong Helen Gourlay\"", "question": "Name the least year for evonne goolagong helen gourlay", "context": "CREATE TABLE table_2009095_2 (year INTEGER, opponents VARCHAR)"}, {"answer": "SELECT surface FROM table_2009095_2 WHERE championship = \"Australian Open\" AND outcome = \"Winner\"", "question": "Name the surface for australian open for winner", "context": "CREATE TABLE table_2009095_2 (surface VARCHAR, championship VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT highest_scoring_team FROM table_20079931_4 WHERE circuit_location = \"Ring Knutstorp\" AND winning_team = \"Polestar Racing\"", "question": "What's the highest scoring team in the round in Ring Knutstorp in which Polestar Racing is the winning team?", "context": "CREATE TABLE table_20079931_4 (highest_scoring_team VARCHAR, circuit_location VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_20079931_4 WHERE circuit_location = \"Karlskoga Motorstadion\" AND pole_position = \"Roger Eriksson\"", "question": "How many rounds were there in Karlskoga Motorstadion with Roger Eriksson at the pole position?", "context": "CREATE TABLE table_20079931_4 (round VARCHAR, circuit_location VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT first_leg FROM table_20086138_1 WHERE opposition = \"Norchi Dinamoeli\"", "question": "What was the first leg result in the round against Norchi Dinamoeli?", "context": "CREATE TABLE table_20086138_1 (first_leg VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT vehicle FROM table_20090682_4 WHERE best_time_of_day = \"1:17.17\"", "question": "which vehicles got best time of day 1:17.17", "context": "CREATE TABLE table_20090682_4 (vehicle VARCHAR, best_time_of_day VARCHAR)"}, {"answer": "SELECT COUNT(driver) FROM table_20090682_4 WHERE vehicle = \"Toyota Corolla\"", "question": "how many drivers driving toyota corolla", "context": "CREATE TABLE table_20090682_4 (driver VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT MAX(pos) FROM table_20090682_4 WHERE driver = \"Brendan Sole\"", "question": "what is the lowest position of brendan sole", "context": "CREATE TABLE table_20090682_4 (pos INTEGER, driver VARCHAR)"}, {"answer": "SELECT COUNT(vehicle) FROM table_20090682_4 WHERE top_13_time = \"1:18.72\"", "question": "how many vehicles where top 13 time is 1:18.72", "context": "CREATE TABLE table_20090682_4 (vehicle VARCHAR, top_13_time VARCHAR)"}, {"answer": "SELECT driver FROM table_20090682_4 WHERE best_time_of_day = \"1:16.93\"", "question": "which driver got best time of day 1:16.93", "context": "CREATE TABLE table_20090682_4 (driver VARCHAR, best_time_of_day VARCHAR)"}, {"answer": "SELECT assists FROM table_20107762_1 WHERE mins = \"744:27\"", "question": "What is the amount of assists when mins is 744:27?", "context": "CREATE TABLE table_20107762_1 (assists VARCHAR, mins VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_20107762_1 WHERE mins = \"385:33\"", "question": "What is the game number with 385:33 mins?", "context": "CREATE TABLE table_20107762_1 (games INTEGER, mins VARCHAR)"}, {"answer": "SELECT points FROM table_20107762_1 WHERE rebounds = \"4.4\"", "question": "What is the points number when rebounds is 4.4?", "context": "CREATE TABLE table_20107762_1 (points VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT team FROM table_20107762_1 WHERE ft_percentage = \"77.6\"", "question": "Who is the team with the ft% of 77.6?", "context": "CREATE TABLE table_20107762_1 (team VARCHAR, ft_percentage VARCHAR)"}, {"answer": "SELECT year FROM table_2011349_2 WHERE third_place = \"Austin Austin TX\"", "question": "When did Austin Austin TX get the third place?", "context": "CREATE TABLE table_2011349_2 (year VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT representative FROM table_20098199_2 WHERE religion = \"United Methodist\" AND prior_background = \"Congressional aide\"", "question": "Who has a religion of United Methodist and a prior background of a Congressional Aide?", "context": "CREATE TABLE table_20098199_2 (representative VARCHAR, religion VARCHAR, prior_background VARCHAR)"}, {"answer": "SELECT name FROM table_20095300_1 WHERE number = 25", "question": "What horse has the number 25?", "context": "CREATE TABLE table_20095300_1 (name VARCHAR, number VARCHAR)"}, {"answer": "SELECT weight__st, _lb_ FROM table_20095300_1 WHERE name = \"Point Barrow\"", "question": "How much does Point Barrow weight?", "context": "CREATE TABLE table_20095300_1 (weight__st VARCHAR, _lb_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT colours FROM table_20095300_1 WHERE jockey = \"Andrew McNamara\"", "question": "What are Andrew McNamara's colors?", "context": "CREATE TABLE table_20095300_1 (colours VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_20095300_1 WHERE trainer = \"Kim Bailey\"", "question": "What's the number of the horse whose trainer is Kim Bailey?", "context": "CREATE TABLE table_20095300_1 (number INTEGER, trainer VARCHAR)"}, {"answer": "SELECT written_by FROM table_20098479_1 WHERE no_in_series = 48", "question": "Who wrote episode number 48", "context": "CREATE TABLE table_20098479_1 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_20098479_1", "question": "What is the lowest production code", "context": "CREATE TABLE table_20098479_1 (production_code INTEGER)"}, {"answer": "SELECT original_title FROM table_20124413_3 WHERE production_code = \"3.19\"", "question": "What was the original title of 3.19?", "context": "CREATE TABLE table_20124413_3 (original_title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT _number FROM table_20124413_2 WHERE prod_code = \"2.6\"", "question": "How many numbers have the product code of 2.6?", "context": "CREATE TABLE table_20124413_2 (_number VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_20124413_2 WHERE prod_code = \"2.8\"", "question": "How many directed have the product code of 2.8?", "context": "CREATE TABLE table_20124413_2 (directed_by VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT original_title FROM table_20124413_1 WHERE prod_code = \"1.12\"", "question": "When 1.12 is the production code what is the original title?", "context": "CREATE TABLE table_20124413_1 (original_title VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT COUNT(original_airdate) FROM table_20124413_1 WHERE prod_code = \"1.17\"", "question": "When 1.17 is the production code how many air dates are there?", "context": "CREATE TABLE table_20124413_1 (original_airdate VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT winnings FROM table_2012187_1 WHERE poles = 0 AND team_s_ = \"Yates Racing Front Row Motorsports\"", "question": "state the winnings of yates racing front row motorsports where poles were 0", "context": "CREATE TABLE table_2012187_1 (winnings VARCHAR, poles VARCHAR, team_s_ VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_2012187_1 WHERE winnings = \"$2,605,05\"", "question": "which team(s) won $2,605,05", "context": "CREATE TABLE table_2012187_1 (team_s_ VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_2012187_1 WHERE top_10 = 2", "question": "state the wins of the team with 2 top 10", "context": "CREATE TABLE table_2012187_1 (wins VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT kannada_name_\u0c95\u0ca8\u0ccd\u0ca8\u0ca1 FROM table_201400_2 WHERE tamil_name_\u0ba4\u0bae\u0bbf\u0bb4\u0bcd = \"Anusham \u0b85\u0ba9\u0bc1\u0bb7\u0bae\u0bcd\"", "question": "what is kannada name \u0c95\u0ca8\u0ccd\u0ca8\u0ca1 of tamil name \u0ba4\u0bae\u0bbf\u0bb4\u0bcd anusham \u0b85\u0ba9\u0bc1\u0bb7\u0bae\u0bcd", "context": "CREATE TABLE table_201400_2 (kannada_name_\u0c95\u0ca8\u0ccd\u0ca8\u0ca1 VARCHAR, tamil_name_\u0ba4\u0bae\u0bbf\u0bb4\u0bcd VARCHAR)"}, {"answer": "SELECT malayalam_name_\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 FROM table_201400_2 WHERE tamil_name_\u0ba4\u0bae\u0bbf\u0bb4\u0bcd = \"Punarpoosam \u0baa\u0bc1\u0ba9\u0bb0\u0bcd\u0baa\u0bc2\u0b9a\u0bae\u0bcd\"", "question": "what is the malayalam name \u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 of tamil name \u0ba4\u0bae\u0bbf\u0bb4\u0bcd punarpoosam \u0baa\u0bc1\u0ba9\u0bb0\u0bcd\u0baa\u0bc2\u0b9a\u0bae\u0bcd", "context": "CREATE TABLE table_201400_2 (malayalam_name_\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 VARCHAR, tamil_name_\u0ba4\u0bae\u0bbf\u0bb4\u0bcd VARCHAR)"}, {"answer": "SELECT telugu_name_\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 FROM table_201400_2 WHERE kannada_name_\u0c95\u0ca8\u0ccd\u0ca8\u0ca1 = \"Utthara \u0c89\u0ca4\u0ccd\u0ca4\u0cb0\"", "question": "what is the telugu name \u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 of kannada name \u0c95\u0ca8\u0ccd\u0ca8\u0ca1 utthara \u0c89\u0ca4\u0ccd\u0ca4\u0cb0", "context": "CREATE TABLE table_201400_2 (telugu_name_\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 VARCHAR, kannada_name_\u0c95\u0ca8\u0ccd\u0ca8\u0ca1 VARCHAR)"}, {"answer": "SELECT sanskrit FROM table_201400_2 WHERE western_star_name = \"Arcturus\"", "question": "what is the sanskrit of western star name arcturus", "context": "CREATE TABLE table_201400_2 (sanskrit VARCHAR, western_star_name VARCHAR)"}, {"answer": "SELECT malayalam_name_\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 FROM table_201400_2 WHERE sanskrit = \"Uttar\u0101\u1e63\u0101\u1e0dha \u0909\u0924\u094d\u0924\u0930\u093e\u0937\u093e\u0922\u093e\"", "question": "what is the malayalam name \u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 of sanskrit uttar\u0101\u1e63\u0101\u1e0dha \u0909\u0924\u094d\u0924\u0930\u093e\u0937\u093e\u0922\u093e", "context": "CREATE TABLE table_201400_2 (malayalam_name_\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 VARCHAR, sanskrit VARCHAR)"}, {"answer": "SELECT traditional FROM table_2013618_1 WHERE area = 544", "question": "Name the traditional for area 544", "context": "CREATE TABLE table_2013618_1 (traditional VARCHAR, area VARCHAR)"}, {"answer": "SELECT foochow FROM table_2013618_1 WHERE english_name = \"Pingnan County\"", "question": "Name the foochow for pingnan county", "context": "CREATE TABLE table_2013618_1 (foochow VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT pinyin FROM table_2013618_1 WHERE foochow = \"Ci\u00e1-\u00ecng-g\u00e2ing\"", "question": "Name the pinyin for  ci\u00e1-\u00ecng-g\u00e2ing", "context": "CREATE TABLE table_2013618_1 (pinyin VARCHAR, foochow VARCHAR)"}, {"answer": "SELECT traditional FROM table_2013618_1 WHERE simplified = \"\u5c4f\u5357\u53bf\"", "question": "Name the traditional for  \u5c4f\u5357\u53bf", "context": "CREATE TABLE table_2013618_1 (traditional VARCHAR, simplified VARCHAR)"}, {"answer": "SELECT density FROM table_2013618_1 WHERE traditional = \"\u53e4\u7530\u7e23\"", "question": "Name the density for \u53e4\u7530\u7e23", "context": "CREATE TABLE table_2013618_1 (density VARCHAR, traditional VARCHAR)"}, {"answer": "SELECT english_name FROM table_2013618_1 WHERE traditional = \"\u798f\u9f0e\u5e02\"", "question": "Name the english name for  \u798f\u9f0e\u5e02", "context": "CREATE TABLE table_2013618_1 (english_name VARCHAR, traditional VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_20170644_1 WHERE player = \"Darcy Brown\"", "question": "What CFL team did Darcy Brown play for?", "context": "CREATE TABLE table_20170644_1 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_20170644_1 WHERE player = \"Simeon Rottier\"", "question": "What CFL team did simeon rottier play for?", "context": "CREATE TABLE table_20170644_1 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_20170644_1 WHERE player = \"\u00c9tienne L\u00e9gar\u00e9\"", "question": "What college did \u00e9tienne l\u00e9gar\u00e9 play for?", "context": "CREATE TABLE table_20170644_1 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_20170644_1 WHERE position = \"OL\"", "question": "What team was in position OL?", "context": "CREATE TABLE table_20170644_1 (cfl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_20170644_1 WHERE cfl_team = \"Hamilton Tiger-Cats (via BC via Saskatchewan )\"", "question": "Who was the player for the CFL team hamilton tiger-cats (via bc via saskatchewan )?", "context": "CREATE TABLE table_20170644_1 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_20170644_1 WHERE cfl_team = \"BC Lions (via Hamilton via Winnipeg )\"", "question": "What number pick did the CFL team bc lions (via hamilton via winnipeg ) have?", "context": "CREATE TABLE table_20170644_1 (pick__number INTEGER, cfl_team VARCHAR)"}, {"answer": "SELECT COUNT(release_date) FROM table_20174050_1 WHERE story__number = 7", "question": "How many different release dates are there for the audio book with a story number 7?", "context": "CREATE TABLE table_20174050_1 (release_date VARCHAR, story__number VARCHAR)"}, {"answer": "SELECT title FROM table_20174050_1 WHERE story__number = 91", "question": "What's the title of the audio book with story number 91?", "context": "CREATE TABLE table_20174050_1 (title VARCHAR, story__number VARCHAR)"}, {"answer": "SELECT release_date FROM table_20174050_1 WHERE target__number = \"069 69\"", "question": "When was the audio book with target number 069 69 released?", "context": "CREATE TABLE table_20174050_1 (release_date VARCHAR, target__number VARCHAR)"}, {"answer": "SELECT format FROM table_20174050_1 WHERE title = \"The Mind Robber\"", "question": "What's the format of the audio book titled The Mind Robber?", "context": "CREATE TABLE table_20174050_1 (format VARCHAR, title VARCHAR)"}, {"answer": "SELECT reader FROM table_20174050_24 WHERE author = \"Cole, Stephen Stephen Cole\" AND release_date = \"2008-11-13 13 November 2008\"", "question": "who is the reader of the audiobook authored by cole, stephen stephen cole and released on 2008-11-13 13 november 2008", "context": "CREATE TABLE table_20174050_24 (reader VARCHAR, author VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT COUNT(company) FROM table_20174050_24 WHERE title = \"Deadly Download\"", "question": "how many companies released an audiobook titled deadly download", "context": "CREATE TABLE table_20174050_24 (company VARCHAR, title VARCHAR)"}, {"answer": "SELECT company FROM table_20174050_24 WHERE release_date = \"2010-11-04 4 November 2010\"", "question": "which companies released on 2010-11-04 4 november 2010", "context": "CREATE TABLE table_20174050_24 (company VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT company FROM table_20174050_24 WHERE author = \"Day, Martin Martin Day\"", "question": "which company released audiobooks authored by day, martin martin day", "context": "CREATE TABLE table_20174050_24 (company VARCHAR, author VARCHAR)"}, {"answer": "SELECT COUNT(format) FROM table_20174050_24 WHERE author = \"Day, Martin Martin Day\"", "question": "how many formats of books authored by day, martin martin day", "context": "CREATE TABLE table_20174050_24 (format VARCHAR, author VARCHAR)"}, {"answer": "SELECT COUNT(cfl_team) FROM table_20170644_5 WHERE college = \"Laval\"", "question": "How many players were drafted from laval?", "context": "CREATE TABLE table_20170644_5 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_20170644_5 WHERE college = \"Montreal\"", "question": "What player went to montreal college?", "context": "CREATE TABLE table_20170644_5 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_20170644_5 WHERE cfl_team = \"Hamilton Tiger-Cats\"", "question": "What player(s) drafted by the hamilton tiger-cats?", "context": "CREATE TABLE table_20170644_5 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT position FROM table_20170644_5 WHERE cfl_team = \"Montreal Alouettes\"", "question": "What position(s) drafted by the montreal alouettes?", "context": "CREATE TABLE table_20170644_5 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT company FROM table_20174050_23 WHERE author = \"Pinborough, Sarah Sarah Pinborough\"", "question": "which company uses pinborough, sarah sarah pinborough?", "context": "CREATE TABLE table_20174050_23 (company VARCHAR, author VARCHAR)"}, {"answer": "SELECT reader FROM table_20174050_23 WHERE title = \"Department X\"", "question": "who the reader of title department x?", "context": "CREATE TABLE table_20174050_23 (reader VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(notes) FROM table_20174050_23 WHERE reader = \"Varma, Idria Indira Varma\"", "question": "how many notes were read by reader varma, idria indira varma?", "context": "CREATE TABLE table_20174050_23 (notes VARCHAR, reader VARCHAR)"}, {"answer": "SELECT reader FROM table_20174050_23 WHERE format = \"Download/CD\" AND author = \"Lidster, Joseph Joseph Lidster\"", "question": "who is the reader on the download/cd format of the title written by author lidster, joseph joseph lidster? ", "context": "CREATE TABLE table_20174050_23 (reader VARCHAR, format VARCHAR, author VARCHAR)"}, {"answer": "SELECT landesliga_mitte FROM table_20181270_3 WHERE landesliga_s\u00fcd = \"FC Gundelfingen\" AND landesliga_nord = \"VfL Frohnlach\"", "question": "Name the landesliga mitte for fc gundelfingen and vfl frohnlach", "context": "CREATE TABLE table_20181270_3 (landesliga_mitte VARCHAR, landesliga_s\u00fcd VARCHAR, landesliga_nord VARCHAR)"}, {"answer": "SELECT landesliga_nord FROM table_20181270_3 WHERE landesliga_mitte = \"Freier TuS Regensburg\"", "question": "Name the landesliga nord for  freier tus regensburg", "context": "CREATE TABLE table_20181270_3 (landesliga_nord VARCHAR, landesliga_mitte VARCHAR)"}, {"answer": "SELECT landesliga_nord FROM table_20181270_3 WHERE landesliga_mitte = \"ASV Neumarkt\"", "question": "Name the landesliga nord for asv neumarkt", "context": "CREATE TABLE table_20181270_3 (landesliga_nord VARCHAR, landesliga_mitte VARCHAR)"}, {"answer": "SELECT landesliga_mitte FROM table_20181270_3 WHERE bayernliga = \"SV T\u00fcrk G\u00fcc\u00fc M\u00fcnchen\"", "question": "Name the landesliga mitte sv t\u00fcrk g\u00fcc\u00fc m\u00fcnchen", "context": "CREATE TABLE table_20181270_3 (landesliga_mitte VARCHAR, bayernliga VARCHAR)"}, {"answer": "SELECT landesliga_s\u00fcd FROM table_20181270_3 WHERE bayernliga = \"SG Quelle F\u00fcrth\"", "question": "Name the landesliga sud for sg quelle f\u00fcrth", "context": "CREATE TABLE table_20181270_3 (landesliga_s\u00fcd VARCHAR, bayernliga VARCHAR)"}, {"answer": "SELECT oil_rig FROM table_20183474_1 WHERE place = \"7th\"", "question": "What's the oil rig of the song that ended on 7th place?", "context": "CREATE TABLE table_20183474_1 (oil_rig VARCHAR, place VARCHAR)"}, {"answer": "SELECT MIN(oil_rig) FROM table_20183474_1 WHERE draw = 9", "question": "What's the oil rig of the song with a draw number 9?", "context": "CREATE TABLE table_20183474_1 (oil_rig INTEGER, draw VARCHAR)"}, {"answer": "SELECT MIN(press_jury) FROM table_20183474_1 WHERE artist = \"Frank Aleksandersen\"", "question": "How many press jury points did the song by Frank Aleksandersen get?", "context": "CREATE TABLE table_20183474_1 (press_jury INTEGER, artist VARCHAR)"}, {"answer": "SELECT total_points FROM table_20183474_1 WHERE draw = 3", "question": "How many points did the song with a draw number 3 get?", "context": "CREATE TABLE table_20183474_1 (total_points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT notes FROM table_20174050_7 WHERE reader = \"Briggs, Nicholas Nicholas Briggs\" AND title = \"Paradox Lost\"", "question": "If the title is Paradox Lost and the reader is Briggs, Nicholas Nicholas Briggs, what are all of the notes?", "context": "CREATE TABLE table_20174050_7 (notes VARCHAR, reader VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_20174050_7 WHERE title = \"The Way Through the Woods\"", "question": "If the title is The Way Through The Woods, what is the release date?", "context": "CREATE TABLE table_20174050_7 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_20174050_7 WHERE reader = \"Syal, Meera Meera Syal\"", "question": "If the reader is Syal, Meera Meera Syal, what was the release date?", "context": "CREATE TABLE table_20174050_7 (release_date VARCHAR, reader VARCHAR)"}, {"answer": "SELECT MAX(divisional_titles) FROM table_20190834_1 WHERE enrollment = 30049", "question": "What is the most divisional titles won by a school with an enrollment of 30049?", "context": "CREATE TABLE table_20190834_1 (divisional_titles INTEGER, enrollment VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_20190834_1 WHERE team_name = \"Sooners\"", "question": "What is the maximum enrollment of the Sooners?", "context": "CREATE TABLE table_20190834_1 (enrollment INTEGER, team_name VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_20190834_1 WHERE team_name = \"Cyclones\"", "question": "What is the minimum enrollment of the cyclones?", "context": "CREATE TABLE table_20190834_1 (enrollment INTEGER, team_name VARCHAR)"}, {"answer": "SELECT result FROM table_20193855_2 WHERE book_title = \"Firelands\"", "question": "What is the result of the book title firelands?", "context": "CREATE TABLE table_20193855_2 (result VARCHAR, book_title VARCHAR)"}, {"answer": "SELECT year FROM table_20193855_2 WHERE book_title = \"The Ordinary\"", "question": "Which year is the book title the ordinary?", "context": "CREATE TABLE table_20193855_2 (year VARCHAR, book_title VARCHAR)"}, {"answer": "SELECT publisher FROM table_20193855_2 WHERE book_title = \"Daughters of an Emerald Dusk\"", "question": "Who is the publisher of the book titled daughters of an emerald dusk?", "context": "CREATE TABLE table_20193855_2 (publisher VARCHAR, book_title VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_20193855_2 WHERE author_s__or_editor_s_ = \"Delia Sherman\"", "question": "In which year were the authors or editors Delia Sherman?", "context": "CREATE TABLE table_20193855_2 (year INTEGER, author_s__or_editor_s_ VARCHAR)"}, {"answer": "SELECT COUNT(author_s__or_editor_s_) FROM table_20193855_2 WHERE book_title = \"Elf Child\"", "question": "How many authors or editors are there for the book title elf child?", "context": "CREATE TABLE table_20193855_2 (author_s__or_editor_s_ VARCHAR, book_title VARCHAR)"}, {"answer": "SELECT book_title FROM table_20193855_2 WHERE publisher = \"Black Car Publishing\"", "question": "What is the title of the book when the publisher is black car publishing?", "context": "CREATE TABLE table_20193855_2 (book_title VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT prize__eur_ FROM table_20195922_3 WHERE number_of_winning_tickets = 1", "question": "What are the prizes when 1 is the number of winning tickets?", "context": "CREATE TABLE table_20195922_3 (prize__eur_ VARCHAR, number_of_winning_tickets VARCHAR)"}, {"answer": "SELECT number_of_winning_tickets FROM table_20195922_3 WHERE prize__eur_ = \"180.00\"", "question": "What are the number of winning tickets that have 180.00 as the prize (eur)?", "context": "CREATE TABLE table_20195922_3 (number_of_winning_tickets VARCHAR, prize__eur_ VARCHAR)"}, {"answer": "SELECT odds_of_winning__1in_ FROM table_20195922_3 WHERE divisions = \"6th\"", "question": "How many odd of winning have 6th as the division?", "context": "CREATE TABLE table_20195922_3 (odds_of_winning__1in_ VARCHAR, divisions VARCHAR)"}, {"answer": "SELECT prize__eur_ FROM table_20195922_3 WHERE divisions = \"6th\"", "question": "What is the prize (eur) for the 6th division?", "context": "CREATE TABLE table_20195922_3 (prize__eur_ VARCHAR, divisions VARCHAR)"}, {"answer": "SELECT divisions FROM table_20195922_3 WHERE number_of_winning_tickets = 565", "question": "Which divisions have 565 as the number of winning tickets?", "context": "CREATE TABLE table_20195922_3 (divisions VARCHAR, number_of_winning_tickets VARCHAR)"}, {"answer": "SELECT \u0433\u04d9_\u0433\u04d9_[\u0261\u02b7] FROM table_202365_2 WHERE \u0495\u044c_\u0495\u044c_[\u0281\u02b2_\u0263\u02b2] = \"\u04ac\u04d9 \u04ad\u04d9 [t\u02b7\u02b0]\"", "question": "what is \u0433\u04d9 \u0433\u04d9 [\u0261\u02b7] when \u0495\u044c \u0495\u044c [\u0281\u02b2/\u0263\u02b2] is \u04ad\u04d9 \u04ad\u04d9 [t\u02b7\u02b0]?", "context": "CREATE TABLE table_202365_2 (\u0433\u04d9_\u0433\u04d9_ VARCHAR, \u0261\u02b7 VARCHAR, \u0495\u044c_\u0495\u044c_ VARCHAR, \u0281\u02b2_\u0263\u02b2 VARCHAR)"}, {"answer": "SELECT \u0433\u04d9_\u0433\u04d9_[\u0261\u02b7] FROM table_202365_2 WHERE \u0495_\u0495_[\u0281_\u0263] = \"\u04be \u04bf [t\u0361\u0282\u02bc]\"", "question": "What is \u0433\u04d9 \u0433\u04d9 [\u0261\u02b7] when \u0495 \u0495 [\u0281/\u0263] is \u04bf \u04bf [t\u0361\u0282\u02bc]?", "context": "CREATE TABLE table_202365_2 (\u0433\u04d9_\u0433\u04d9_ VARCHAR, \u0261\u02b7 VARCHAR, \u0495_\u0495_ VARCHAR, \u0281_\u0263 VARCHAR)"}, {"answer": "SELECT \u0433_\u0433_[\u0261] FROM table_202365_2 WHERE \u0430_\u0430_[a] = \"\u0494\u04d9 \u0495\u04d9 [\u0281\u02b7/\u0263\u02b7]\"", "question": "what is \u0433 \u0433 [\u0261] when \u0430 \u0430 [a] is \u0495\u04d9 \u0495\u04d9 [\u0281\u02b7/\u0263\u02b7]?", "context": "CREATE TABLE table_202365_2 (\u0433_\u0433_ VARCHAR, \u0261 VARCHAR, \u0430_\u0430_ VARCHAR, a VARCHAR)"}, {"answer": "SELECT \u0430_\u0430_[a] FROM table_202365_2 WHERE \u0495\u044c_\u0495\u044c_[\u0281\u02b2_\u0263\u02b2] = \"\u0428 \u0448 [\u0282\u0283]\"", "question": "what is \u0430 \u0430 [a] when \u0495\u044c \u0495\u044c [\u0281\u02b2/\u0263\u02b2] is \u0448 \u0448 [\u0282\u0283]?", "context": "CREATE TABLE table_202365_2 (\u0430_\u0430_ VARCHAR, a VARCHAR, \u0495\u044c_\u0495\u044c_ VARCHAR, \u0281\u02b2_\u0263\u02b2 VARCHAR)"}, {"answer": "SELECT \u0430_\u0430_[a] FROM table_202365_2 WHERE \u0433\u044c_\u0433\u044c_[\u0261\u02b2] = \"\u041b \u043b [l]\"", "question": "what is \u0430 \u0430 [a] when \u0433\u044c \u0433\u044c [\u0261\u02b2] is \u043b \u043b [l]?", "context": "CREATE TABLE table_202365_2 (\u0430_\u0430_ VARCHAR, a VARCHAR, \u0433\u044c_\u0433\u044c_ VARCHAR, \u0261\u02b2 VARCHAR)"}, {"answer": "SELECT \u0495\u044c_\u0495\u044c_[\u0281\u02b2_\u0263\u02b2] FROM table_202365_2 WHERE \u0433\u044c_\u0433\u044c_[\u0261\u02b2] = \"\u04b6 \u04b7 [t\u0361\u0283\u02bc]\"", "question": "what is \u0495\u044c \u0495\u044c [\u0281\u02b2/\u0263\u02b2] when \u0433\u044c \u0433\u044c [\u0261\u02b2] is \u04b7 \u04b7 [t\u0361\u0283\u02bc]?", "context": "CREATE TABLE table_202365_2 (\u0495\u044c_\u0495\u044c_ VARCHAR, \u0281\u02b2_\u0263\u02b2 VARCHAR, \u0433\u044c_\u0433\u044c_ VARCHAR, \u0261\u02b2 VARCHAR)"}, {"answer": "SELECT green FROM table_20217811_1 WHERE electorate = \"Otaki\"", "question": "Name the green for otaki", "context": "CREATE TABLE table_20217811_1 (green VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT national FROM table_20217811_1 WHERE electorate = \"Rimutaka\"", "question": "Name the national for rimutaka", "context": "CREATE TABLE table_20217811_1 (national VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT electorate FROM table_20217811_1 WHERE united_future = \"4.47%\"", "question": "Name the electoraate for united future being 4.47%", "context": "CREATE TABLE table_20217811_1 (electorate VARCHAR, united_future VARCHAR)"}, {"answer": "SELECT COUNT(popular_vote) FROM table_20246201_9 WHERE candidate = \"Rick Perry\"", "question": "How many different popular vote counts were there for the candidate Rick Perry?", "context": "CREATE TABLE table_20246201_9 (popular_vote VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT office FROM table_20246201_9 WHERE states___third_place = \"1 New Hampshire\"", "question": "Which office has 1 New Hampshire as a third place state?", "context": "CREATE TABLE table_20246201_9 (office VARCHAR, states___third_place VARCHAR)"}, {"answer": "SELECT office FROM table_20246201_9 WHERE candidate = \"Jon Huntsman\"", "question": "What office is Jon Huntsman a candidate for?", "context": "CREATE TABLE table_20246201_9 (office VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT COUNT(states___first_place) FROM table_20246201_9 WHERE office = \"Governor\"", "question": "How many states-first place are there for the office of Governor?", "context": "CREATE TABLE table_20246201_9 (states___first_place VARCHAR, office VARCHAR)"}, {"answer": "SELECT competition FROM table_20251343_4 WHERE head_to_head = \"Australia 13, New Zealand 40, Drawn 3\"", "question": "Name the competition for australia 13, new zealand 40, drawn 3", "context": "CREATE TABLE table_20251343_4 (competition VARCHAR, head_to_head VARCHAR)"}, {"answer": "SELECT explanation FROM table_2026548_1 WHERE rank_by_time_in_office = 10", "question": "Name the explanation by rank is 10", "context": "CREATE TABLE table_2026548_1 (explanation VARCHAR, rank_by_time_in_office VARCHAR)"}, {"answer": "SELECT order_in_office FROM table_2026548_1 WHERE vice_president = \"Spiro Agnew\"", "question": "Name the order in office for spiro agnew", "context": "CREATE TABLE table_2026548_1 (order_in_office VARCHAR, vice_president VARCHAR)"}, {"answer": "SELECT explanation FROM table_2026548_1 WHERE vice_president = \"Alben W. Barkley\"", "question": "Name the explanation for alben w. barkley", "context": "CREATE TABLE table_2026548_1 (explanation VARCHAR, vice_president VARCHAR)"}, {"answer": "SELECT obama__percentage FROM table_20278716_2 WHERE county = \"Burlington\"", "question": "What percentage of people voted for Obama in Burlington?", "context": "CREATE TABLE table_20278716_2 (obama__percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT mccain__percentage FROM table_20278716_2 WHERE county = \"Burlington\"", "question": "What percentage of voters choise McCain in Burlington?", "context": "CREATE TABLE table_20278716_2 (mccain__percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT others__percentage FROM table_20278716_2 WHERE others__number = 802", "question": "What percentage of voters voted for a third party in the county that had 802 third party voters?", "context": "CREATE TABLE table_20278716_2 (others__percentage VARCHAR, others__number VARCHAR)"}, {"answer": "SELECT mccain__percentage FROM table_20278716_2 WHERE others__percentage = \"1.1%\"", "question": "What percentage of voters chose McCain in the county where 1.1% of voters voted third party?", "context": "CREATE TABLE table_20278716_2 (mccain__percentage VARCHAR, others__percentage VARCHAR)"}, {"answer": "SELECT mccain__percentage FROM table_20278716_2 WHERE others__percentage = \"2.1%\"", "question": "What percentage of voters chose McCain in the county where 2.1% of voters voted third party?", "context": "CREATE TABLE table_20278716_2 (mccain__percentage VARCHAR, others__percentage VARCHAR)"}, {"answer": "SELECT county FROM table_20278716_2 WHERE others__number = 915", "question": "What county had 915 third party voters?", "context": "CREATE TABLE table_20278716_2 (county VARCHAR, others__number VARCHAR)"}, {"answer": "SELECT ply__uk, _nz, _au_ FROM table_20297668_1 WHERE yarn_type__us_ = \"Fingering\"", "question": "Name the ply (uk, nz, au) for fingering ", "context": "CREATE TABLE table_20297668_1 (ply__uk VARCHAR, _nz VARCHAR, _au_ VARCHAR, yarn_type__us_ VARCHAR)"}, {"answer": "SELECT wraps_per_inch__wpi_ FROM table_20297668_1 WHERE m_100g = \"120-240\"", "question": "Name the wraps per inch for 120-240", "context": "CREATE TABLE table_20297668_1 (wraps_per_inch__wpi_ VARCHAR, m_100g VARCHAR)"}, {"answer": "SELECT ply__uk, _nz, _au_ FROM table_20297668_1 WHERE wraps_per_inch__wpi_ = \"7 wpi\"", "question": "Name the ply uk, nz, au for wraps per inch 7 wpi", "context": "CREATE TABLE table_20297668_1 (ply__uk VARCHAR, _nz VARCHAR, _au_ VARCHAR, wraps_per_inch__wpi_ VARCHAR)"}, {"answer": "SELECT yarn_type__us_ FROM table_20297668_1 WHERE standard_yarn_weight_system = \"3 or Light\"", "question": "Name the yarn type for standard yarn weight system for 3 or light", "context": "CREATE TABLE table_20297668_1 (yarn_type__us_ VARCHAR, standard_yarn_weight_system VARCHAR)"}, {"answer": "SELECT standard_yarn_weight_system FROM table_20297668_1 WHERE wraps_per_inch__wpi_ = \"7 wpi\"", "question": "Name the standard yarn weight system for 7 wpi", "context": "CREATE TABLE table_20297668_1 (standard_yarn_weight_system VARCHAR, wraps_per_inch__wpi_ VARCHAR)"}, {"answer": "SELECT standard_yarn_weight_system FROM table_20297668_1 WHERE wraps_per_inch__wpi_ = \"9 wpi\"", "question": "Name the standard yarn weight system for 9 wpi", "context": "CREATE TABLE table_20297668_1 (standard_yarn_weight_system VARCHAR, wraps_per_inch__wpi_ VARCHAR)"}, {"answer": "SELECT date_motor_gear_fitted FROM table_2030453_1 WHERE lms_1946_no = 1901", "question": "When was the motor gear of the LMS 1946 no. 1901 model fitted?", "context": "CREATE TABLE table_2030453_1 (date_motor_gear_fitted VARCHAR, lms_1946_no VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_20301877_2 WHERE player = \"Wayne Mardle\"", "question": "how many matches did wayne mardle play", "context": "CREATE TABLE table_20301877_2 (played VARCHAR, player VARCHAR)"}, {"answer": "SELECT 3 AS _dart_average FROM table_20301877_2 WHERE player = \"Raymond van Barneveld\"", "question": "what is the 3-dart average of raymond van barneveld", "context": "CREATE TABLE table_20301877_2 (player VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_20319085_2 WHERE conference_record = \"4-3\"", "question": "How many different results are there for the season with a 4-3 conference record?", "context": "CREATE TABLE table_20319085_2 (result VARCHAR, conference_record VARCHAR)"}, {"answer": "SELECT coach FROM table_20319085_2 WHERE conference_record = \"6-1\"", "question": "Who coached the team in the season with a 6-1 conference record?", "context": "CREATE TABLE table_20319085_2 (coach VARCHAR, conference_record VARCHAR)"}, {"answer": "SELECT COUNT(conference_record) FROM table_20319085_2 WHERE season = 2006", "question": "How many different conference records are there for season 2006?", "context": "CREATE TABLE table_20319085_2 (conference_record VARCHAR, season VARCHAR)"}, {"answer": "SELECT result FROM table_20319085_2 WHERE conference_record = \"7-2\"", "question": "How did the season with 7-2 conference record ed?", "context": "CREATE TABLE table_20319085_2 (result VARCHAR, conference_record VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_20319085_2 WHERE conference_record = \"4-3\"", "question": "In what season was the conference record 4-3?", "context": "CREATE TABLE table_20319085_2 (season INTEGER, conference_record VARCHAR)"}, {"answer": "SELECT MAX(3 AS rd_runner_up) FROM table_20325360_2", "question": "What is the highest number of third place runners up held by any of the countries competing in the Mr. International competition?. ", "context": "CREATE TABLE table_20325360_2 (Id VARCHAR)"}, {"answer": "SELECT COUNT(2 AS nd_runner_up) FROM table_20325360_2 WHERE rank = 3", "question": "The country, competing in the Mr. International competition, that holds a rank of 3, has how many 2nd runners up?", "context": "CREATE TABLE table_20325360_2 (rank VARCHAR)"}, {"answer": "SELECT COUNT(2 AS nd_runner_up) FROM table_20325360_2 WHERE rank = 2", "question": "For the country that holds a rank of 2, in the Mr. International Competition, what is the total number of competitors listed as 2nd runner ups?", "context": "CREATE TABLE table_20325360_2 (rank VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_20325360_2 WHERE country_territory = \"Brazil\"", "question": "How many competitors in total, for the Mr. International competition, does Brazil have? ", "context": "CREATE TABLE table_20325360_2 (total INTEGER, country_territory VARCHAR)"}, {"answer": "SELECT high_checkout FROM table_20351295_2 WHERE player = \"Trina Gulliver\"", "question": "What's Trina Gulliver's high checkout?", "context": "CREATE TABLE table_20351295_2 (high_checkout VARCHAR, player VARCHAR)"}, {"answer": "SELECT legs_won FROM table_20351295_2 WHERE high_checkout = 80", "question": "How many legs has the player with high checkout of 80 won?", "context": "CREATE TABLE table_20351295_2 (legs_won VARCHAR, high_checkout VARCHAR)"}, {"answer": "SELECT sanskrit_word_and_meaning FROM table_20354_7 WHERE zodiac_sign = \"Aquarius\"", "question": "Name the sanskrit word and meaning for aquarius", "context": "CREATE TABLE table_20354_7 (sanskrit_word_and_meaning VARCHAR, zodiac_sign VARCHAR)"}, {"answer": "SELECT zodiac_sign FROM table_20354_7 WHERE malayalam_name = \"\u0d15\u0d28\u0d4d\u0d28\u0d3f\"", "question": "Name the zodiac for \u0d15\u0d28\u0d4d\u0d28\u0d3f", "context": "CREATE TABLE table_20354_7 (zodiac_sign VARCHAR, malayalam_name VARCHAR)"}, {"answer": "SELECT malayalam_name FROM table_20354_7 WHERE zodiac_sign = \"Leo\"", "question": "Name the malayalam name for leo", "context": "CREATE TABLE table_20354_7 (malayalam_name VARCHAR, zodiac_sign VARCHAR)"}, {"answer": "SELECT transliteration FROM table_20354_7 WHERE malayalam_name = \"\u0d1a\u0d3f\u0d19\u0d4d\u0d19\u0d02\"", "question": "Name the transliteration for \u0d1a\u0d3f\u0d19\u0d4d\u0d19\u0d02", "context": "CREATE TABLE table_20354_7 (transliteration VARCHAR, malayalam_name VARCHAR)"}, {"answer": "SELECT MAX(mccain_number) FROM table_20350118_1 WHERE obama_percentage = \"50.7%\"", "question": "How many votes did McCain get in the county where Obama got 50.7% of the votes?", "context": "CREATE TABLE table_20350118_1 (mccain_number INTEGER, obama_percentage VARCHAR)"}, {"answer": "SELECT county FROM table_20350118_1 WHERE mccain_number = 20226", "question": "Where did McCain get 20226 votes?", "context": "CREATE TABLE table_20350118_1 (county VARCHAR, mccain_number VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_20350118_1 WHERE county = \"Cabarrus\"", "question": "How many people voted in Cabarrus county?", "context": "CREATE TABLE table_20350118_1 (total INTEGER, county VARCHAR)"}, {"answer": "SELECT COUNT(obama_number) FROM table_20350118_1 WHERE obama_percentage = \"27.8%\"", "question": "How many different results were there for the number of votes fro Obama in the county where he got 27.8% of the votes?", "context": "CREATE TABLE table_20350118_1 (obama_number VARCHAR, obama_percentage VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_20360535_3 WHERE directed_by = \"Ben Jones\" AND written_by = \"Paul Dini\"", "question": "How many episodes directed by ben jones and written by paul dini?", "context": "CREATE TABLE table_20360535_3 (no VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_20360535_3 WHERE television_order = \"S02E01\"", "question": "What is the title of S02E01?", "context": "CREATE TABLE table_20360535_3 (title VARCHAR, television_order VARCHAR)"}, {"answer": "SELECT television_order FROM table_20360535_3 WHERE written_by = \"Gail Simone\"", "question": "What TV order is written by gail simone?", "context": "CREATE TABLE table_20360535_3 (television_order VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_20361783_1 WHERE womens_singles = \"Zhou Mi\"", "question": "who won mens doubles when zhou mi won womens singles", "context": "CREATE TABLE table_20361783_1 (mens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_20361783_1 WHERE womens_singles = \"Zhou Mi\"", "question": "who won mixed doubles when zhou mi won womens singles", "context": "CREATE TABLE table_20361783_1 (mixed_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_20361783_1 WHERE womens_singles = \"Li Xuerui\"", "question": "state the earliest year li xuerui won womens singles", "context": "CREATE TABLE table_20361783_1 (year INTEGER, womens_singles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_20361783_1 WHERE year = 2010", "question": "who won womens doubles in 2010", "context": "CREATE TABLE table_20361783_1 (womens_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_20361783_1 WHERE womens_singles = \"Wang Yihan\"", "question": "who won mixed doubles when wang yihan won womens singles", "context": "CREATE TABLE table_20361783_1 (mixed_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT MAX(county_councils___2011__) FROM table_203802_2 WHERE english_party_name = \"Communist Party of Norway\"", "question": "How many county councils for the communist party of norway", "context": "CREATE TABLE table_203802_2 (county_councils___2011__ INTEGER, english_party_name VARCHAR)"}, {"answer": "SELECT 2013 AS _parliamentary_election FROM table_203802_2 WHERE english_party_name = \"Pensioners Party\"", "question": "What percent of the parliamentary election did the pensioners party receive", "context": "CREATE TABLE table_203802_2 (english_party_name VARCHAR)"}, {"answer": "SELECT COUNT(2013 AS _parliamentary_election) FROM table_203802_2 WHERE english_party_name = \"Center Alliance\"", "question": "How many parties are named the Center Alliance", "context": "CREATE TABLE table_203802_2 (english_party_name VARCHAR)"}, {"answer": "SELECT MAX(withdrawn) FROM table_20391799_1 WHERE ltsr_no = 37", "question": "Name the most withdrawn for 37 lstr no.", "context": "CREATE TABLE table_20391799_1 (withdrawn INTEGER, ltsr_no VARCHAR)"}, {"answer": "SELECT won FROM table_20396710_1 WHERE points_for = \"83\"", "question": "how many won 83 points for?", "context": "CREATE TABLE table_20396710_1 (won VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT club FROM table_20396710_1 WHERE \"bonus_points\" = \"bonus_points\"", "question": "which club is listed when bonus points is bonus points", "context": "CREATE TABLE table_20396710_1 (club VARCHAR)"}, {"answer": "SELECT COUNT(points_difference) FROM table_20396710_1 WHERE points_for = \"139\"", "question": "when the points for is 139 is points difference?", "context": "CREATE TABLE table_20396710_1 (points_difference VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT drawn FROM table_20396710_1 WHERE \"points_against\" = \"points_against\"", "question": "when points against is points again, which are the drawn?", "context": "CREATE TABLE table_20396710_1 (drawn VARCHAR)"}, {"answer": "SELECT drawn FROM table_20396710_1 WHERE points_for = \"39\"", "question": "when points for is 39 what is the total number of drawn", "context": "CREATE TABLE table_20396710_1 (drawn VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT mccain__percentage FROM table_20424014_1 WHERE obama__percentage = \"19.3%\"", "question": "what is the mccain % where obama got 19.3%", "context": "CREATE TABLE table_20424014_1 (mccain__percentage VARCHAR, obama__percentage VARCHAR)"}, {"answer": "SELECT MAX(mccain__number) FROM table_20424014_1 WHERE obama__percentage = \"33.7%\"", "question": "what is the highest mccain # where obama got 33.7%", "context": "CREATE TABLE table_20424014_1 (mccain__number INTEGER, obama__percentage VARCHAR)"}, {"answer": "SELECT county FROM table_20424014_1 WHERE obama__percentage = \"39.8%\"", "question": "where did obama get 39.8%", "context": "CREATE TABLE table_20424014_1 (county VARCHAR, obama__percentage VARCHAR)"}, {"answer": "SELECT obama__number FROM table_20424014_1 WHERE county = \"Carson City\"", "question": "what is the obama # in carson city", "context": "CREATE TABLE table_20424014_1 (obama__number VARCHAR, county VARCHAR)"}, {"answer": "SELECT county FROM table_20424014_1 WHERE obama__percentage = \"41.3%\"", "question": "where did obama get 41.3%", "context": "CREATE TABLE table_20424014_1 (county VARCHAR, obama__percentage VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_20398823_1 WHERE team = \"team Bruichladdich\"", "question": "Name the number of season for team bruichladdich", "context": "CREATE TABLE table_20398823_1 (season VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(podiums) FROM table_20398823_1 WHERE points = \"49\"", "question": "Name the least podiums for 49 points", "context": "CREATE TABLE table_20398823_1 (podiums INTEGER, points VARCHAR)"}, {"answer": "SELECT MIN(f_laps) FROM table_20398823_1", "question": "Name the least f/laps", "context": "CREATE TABLE table_20398823_1 (f_laps INTEGER)"}, {"answer": "SELECT season FROM table_20398823_1 WHERE wins = 0 AND races = 20", "question": "Namet he season for wins being 0 and 20 races", "context": "CREATE TABLE table_20398823_1 (season VARCHAR, wins VARCHAR, races VARCHAR)"}, {"answer": "SELECT MIN(podiums) FROM table_20398823_1 WHERE wins = 0 AND season = 2005 AND points = \"321\"", "question": "Name the least podiums for 0 wins and 2005 season for 321 points", "context": "CREATE TABLE table_20398823_1 (podiums INTEGER, points VARCHAR, wins VARCHAR, season VARCHAR)"}, {"answer": "SELECT spanish_title FROM table_20404716_1 WHERE film_title_used_in_nomination = \"Ogu and Mampato in Rapa Nui\"", "question": "What is the Spanish title of the film whose title used in nomination was Ogu and Mampato in Rapa Nui? ", "context": "CREATE TABLE table_20404716_1 (spanish_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT director FROM table_20404716_1 WHERE result = \"Not Nominated\" AND spanish_title = \"Play\"", "question": "Who was the director of the film that was not nominated and had the Spanish title of play? ", "context": "CREATE TABLE table_20404716_1 (director VARCHAR, result VARCHAR, spanish_title VARCHAR)"}, {"answer": "SELECT COUNT(couple) FROM table_20424140_3 WHERE average = \"25.3\"", "question": "How many couples have an average of 25.3?", "context": "CREATE TABLE table_20424140_3 (couple VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(number_of_dances) FROM table_20424140_3 WHERE place = 6", "question": "How many different numbers of total dances are there for the couple ranked at number 6?", "context": "CREATE TABLE table_20424140_3 (number_of_dances VARCHAR, place VARCHAR)"}, {"answer": "SELECT couple FROM table_20424140_3 WHERE average = \"17.2\"", "question": "What couple has an average of 17.2?", "context": "CREATE TABLE table_20424140_3 (couple VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(number_of_dances) FROM table_20424140_3", "question": "What's the minimal number of dances a couple has danced?", "context": "CREATE TABLE table_20424140_3 (number_of_dances INTEGER)"}, {"answer": "SELECT MAX(place) FROM table_20424140_3", "question": "What's the highest number a couple has ranked at?", "context": "CREATE TABLE table_20424140_3 (place INTEGER)"}, {"answer": "SELECT crop_damaged__in_lakh_inr__ FROM table_20403667_2 WHERE public_property_damaged__in_lakh_inr__ = \"1,03,049.60\"", "question": "How many crops were damaged when the public property damage was 1,03,049.60?", "context": "CREATE TABLE table_20403667_2 (crop_damaged__in_lakh_inr__ VARCHAR, public_property_damaged__in_lakh_inr__ VARCHAR)"}, {"answer": "SELECT MAX(panchayat) FROM table_20403667_2 WHERE public_property_damaged__in_lakh_inr__ = \"1,03,049.60\"", "question": "What is the panchayat when the public property damage was 1,03,049.60", "context": "CREATE TABLE table_20403667_2 (panchayat INTEGER, public_property_damaged__in_lakh_inr__ VARCHAR)"}, {"answer": "SELECT MAX(village) FROM table_20403667_2 WHERE house_affected = 103279", "question": "What is the largest village that had 103279 houses affected? ", "context": "CREATE TABLE table_20403667_2 (village INTEGER, house_affected VARCHAR)"}, {"answer": "SELECT MIN(district) FROM table_20403667_2 WHERE animal__in_lakh__ = \"33.25\"", "question": "What is the smallest district that had 33.25 in animals", "context": "CREATE TABLE table_20403667_2 (district INTEGER, animal__in_lakh__ VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_20403667_2 WHERE crop_damaged__in_lakh_inr__ = \"1,164.50\"", "question": "How many districts had crib damage of 1,164.50?", "context": "CREATE TABLE table_20403667_2 (district VARCHAR, crop_damaged__in_lakh_inr__ VARCHAR)"}, {"answer": "SELECT county FROM table_20453681_1 WHERE obama_percentage = \"37.1%\"", "question": "Where did Obama get 37.1%?", "context": "CREATE TABLE table_20453681_1 (county VARCHAR, obama_percentage VARCHAR)"}, {"answer": "SELECT county FROM table_20453681_1 WHERE mccain_percentage = \"60.6%\" AND obama_percentage = \"37.3%\"", "question": "What's the county where McCain got 60.6% and Obama got 37.3%?", "context": "CREATE TABLE table_20453681_1 (county VARCHAR, mccain_percentage VARCHAR, obama_percentage VARCHAR)"}, {"answer": "SELECT MIN(mccain_number) FROM table_20453681_1 WHERE obama_percentage = \"35.7%\" AND others_percentage = \"1.9%\"", "question": "What's the number of McCain votes in the county where Obama got 35.7% and others got 1.9% of the votes?", "context": "CREATE TABLE table_20453681_1 (mccain_number INTEGER, obama_percentage VARCHAR, others_percentage VARCHAR)"}, {"answer": "SELECT obama_number FROM table_20453681_1 WHERE county = \"Geauga\"", "question": "How many votes did Obama get in Geauga?", "context": "CREATE TABLE table_20453681_1 (obama_number VARCHAR, county VARCHAR)"}, {"answer": "SELECT others FROM table_20453681_1 WHERE mccain_percentage = \"65.5%\"", "question": "How many people voted for others in the county where McCain got 65.5% of the votes?", "context": "CREATE TABLE table_20453681_1 (others VARCHAR, mccain_percentage VARCHAR)"}, {"answer": "SELECT 3 AS _dart_average FROM table_20463779_22 WHERE player = \"Phil Taylor\"", "question": "What is Phil Taylor's 3-dart average?", "context": "CREATE TABLE table_20463779_22 (player VARCHAR)"}, {"answer": "SELECT guest_3 FROM table_20466963_4 WHERE guest_4 = \"Jill Douglas\"", "question": "Who is the guest 3 in the show where guest 4 is Jill Douglas?", "context": "CREATE TABLE table_20466963_4 (guest_3 VARCHAR, guest_4 VARCHAR)"}, {"answer": "SELECT guest_2 FROM table_20466963_4 WHERE guest_4 = \"Iyare Igiehon\" AND guest_3 = \"John Oliver\"", "question": "Who is the guest 2 in the episode where guest 4 is Iyare Igiehon and guest 3 is John Oliver?", "context": "CREATE TABLE table_20466963_4 (guest_2 VARCHAR, guest_4 VARCHAR, guest_3 VARCHAR)"}, {"answer": "SELECT guest_1 FROM table_20466963_4 WHERE guest_4 = \"Jill Douglas\"", "question": "Who is the guest 1 in the episode where guest 4 is Jill Douglas?", "context": "CREATE TABLE table_20466963_4 (guest_1 VARCHAR, guest_4 VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_20466963_4 WHERE guest_4 = \"Jim Jeffries (debut)\"", "question": "How many dates are associated with a guest 4 being Jim Jeffries (debut)?", "context": "CREATE TABLE table_20466963_4 (date VARCHAR, guest_4 VARCHAR)"}, {"answer": "SELECT date FROM table_20466963_4 WHERE presenter = \"Johnny Vaughan\"", "question": "What is the date of the episode in which the presenter is Johnny Vaughan?", "context": "CREATE TABLE table_20466963_4 (date VARCHAR, presenter VARCHAR)"}, {"answer": "SELECT guest_4 FROM table_20466963_13 WHERE date = \"8 December\"", "question": "Name the guest 4 for 8 december", "context": "CREATE TABLE table_20466963_13 (guest_4 VARCHAR, date VARCHAR)"}, {"answer": "SELECT guest_4 FROM table_20466963_13 WHERE guest_2 = \"Steve Lamacq\"", "question": "Name the guest 4 for steve lamacq", "context": "CREATE TABLE table_20466963_13 (guest_4 VARCHAR, guest_2 VARCHAR)"}, {"answer": "SELECT COUNT(guest_2) FROM table_20466963_13 WHERE presenter = \"Colin Murray\" AND date = \"6 April\"", "question": "Name the guest 2 for colin murray 6 april", "context": "CREATE TABLE table_20466963_13 (guest_2 VARCHAR, presenter VARCHAR, date VARCHAR)"}, {"answer": "SELECT presenter FROM table_20466963_13 WHERE date = \"11 May\"", "question": "Name the presenter 11 may", "context": "CREATE TABLE table_20466963_13 (presenter VARCHAR, date VARCHAR)"}, {"answer": "SELECT guest_3 FROM table_20466963_13 WHERE guest_2 = \"Iyare Igiehon\"", "question": "Name the guest 3 for iyare igiehon", "context": "CREATE TABLE table_20466963_13 (guest_3 VARCHAR, guest_2 VARCHAR)"}, {"answer": "SELECT COUNT(penalties) FROM table_20505342_1 WHERE conversions = 29", "question": "How many seasons featured 29 conversions?", "context": "CREATE TABLE table_20505342_1 (penalties VARCHAR, conversions VARCHAR)"}, {"answer": "SELECT MIN(drop_goals) FROM table_20505342_1", "question": "Lowest number of drop goals?", "context": "CREATE TABLE table_20505342_1 (drop_goals INTEGER)"}, {"answer": "SELECT MIN(total_points) FROM table_20505342_1 WHERE drop_goals = 2", "question": "What is the point total for the season with 2 drop goals?", "context": "CREATE TABLE table_20505342_1 (total_points INTEGER, drop_goals VARCHAR)"}, {"answer": "SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_percentage = \"38.86%\"", "question": "Name the most obama number for mccain being 38.86%", "context": "CREATE TABLE table_20468206_1 (obama_number INTEGER, mccain_percentage VARCHAR)"}, {"answer": "SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_number = 29266", "question": "Name the most abama number for mccain being 29266", "context": "CREATE TABLE table_20468206_1 (obama_number INTEGER, mccain_number VARCHAR)"}, {"answer": "SELECT county FROM table_20468206_1 WHERE mccain_percentage = \"38.78%\"", "question": "Name the county for mccain being 38.78%", "context": "CREATE TABLE table_20468206_1 (county VARCHAR, mccain_percentage VARCHAR)"}, {"answer": "SELECT COUNT(county) FROM table_20524090_1 WHERE mccain_percentage = \"41.62%\"", "question": "In how many counties di McCain win 41.62% of the vote?", "context": "CREATE TABLE table_20524090_1 (county VARCHAR, mccain_percentage VARCHAR)"}, {"answer": "SELECT mccain_percentage FROM table_20524090_1 WHERE county = \"Waynesboro (city)\"", "question": "What percentage of the vote did McCain win in Waynesboro (city)?", "context": "CREATE TABLE table_20524090_1 (mccain_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT obama_percentage FROM table_20524090_1 WHERE mccain_percentage = \"55.46%\"", "question": "What was Obama's percentage in those places where McCain's percentage was 55.46%?", "context": "CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, mccain_percentage VARCHAR)"}, {"answer": "SELECT obama_percentage FROM table_20524090_1 WHERE county = \"Alleghany\"", "question": "What was Obama's percentage in the county of Alleghany?", "context": "CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT obama_percentage FROM table_20524090_1 WHERE county = \"Surry\"", "question": "What was Obama's percentage in the county of Surry?", "context": "CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT mccain_percentage FROM table_20539826_1 WHERE county = \"DeBaca\"", "question": "How many percent of the votes in Debaca did McCain get?", "context": "CREATE TABLE table_20539826_1 (mccain_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT obama_percentage FROM table_20539826_1 WHERE total = 3909", "question": "What percentage of the votes did Obama get in the county where 3909 people voted in total?", "context": "CREATE TABLE table_20539826_1 (obama_percentage VARCHAR, total VARCHAR)"}, {"answer": "SELECT obama_percentage FROM table_20539826_1 WHERE mccain_number = 3648", "question": "What percentage of the votes did Obama get in the county where McCain got 3648 votes?", "context": "CREATE TABLE table_20539826_1 (obama_percentage VARCHAR, mccain_number VARCHAR)"}, {"answer": "SELECT winner FROM table_20540006_6 WHERE sec_team = \"LSU\"", "question": "Who was the winner when the SEC team LSU played?", "context": "CREATE TABLE table_20540006_6 (winner VARCHAR, sec_team VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_20540006_6 WHERE challenge_leader = \"Big East (4-2)\"", "question": "What was the attendance for the game when the challenge leader was at Big East (4-2)?", "context": "CREATE TABLE table_20540006_6 (attendance INTEGER, challenge_leader VARCHAR)"}, {"answer": "SELECT summer_team FROM table_20589703_2 WHERE college = \"St. John's\" AND player = \"James Lomangino\"", "question": "What suumer team was James Lomangino from St. John's on?", "context": "CREATE TABLE table_20589703_2 (summer_team VARCHAR, college VARCHAR, player VARCHAR)"}, {"answer": "SELECT draft_round FROM table_20589703_2 WHERE college = \"Rio Hondo\" AND draft_year = 2012", "question": "In what draft round in 2012 did a player from Rio Hondo get drafted?", "context": "CREATE TABLE table_20589703_2 (draft_round VARCHAR, college VARCHAR, draft_year VARCHAR)"}, {"answer": "SELECT college FROM table_20589703_2 WHERE player = \"Aaron Slegers\"", "question": "What college did Aaron Slegers attend?", "context": "CREATE TABLE table_20589703_2 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT platelet_count FROM table_20592988_1 WHERE prothrombin_time = \"Unaffected\" AND partial_thromboplastin_time = \"Unaffected\"", "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 partial_thromboplastin_time FROM table_20592988_1 WHERE platelet_count = \"Decreased\"", "question": "What is the status of partial thromboplastin times for conditions where the platelet count is decreased? ", "context": "CREATE TABLE table_20592988_1 (partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)"}, {"answer": "SELECT condition FROM table_20592988_1 WHERE platelet_count = \"Unaffected\" AND prothrombin_time = \"Unaffected\"", "question": "In what conditions are both the platelet count and prothrombin time unaffected? ", "context": "CREATE TABLE table_20592988_1 (condition VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_20592988_1 WHERE condition = \"Thrombocytopenia\"", "question": "What is the status of bleeding time for thrombocytopenia? ", "context": "CREATE TABLE table_20592988_1 (bleeding_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT platelet_count FROM table_20592988_1 WHERE bleeding_time = \"Prolonged\" AND partial_thromboplastin_time = \"Unaffected\"", "question": "What is the status of platelet counts for conditions where bleeding time is prolonged and partial thromboplastin time is unaffected? ", "context": "CREATE TABLE table_20592988_1 (platelet_count VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR)"}, {"answer": "SELECT player FROM table_20590020_2 WHERE cuts_made = 8", "question": "Which players made exactly 8 cuts?", "context": "CREATE TABLE table_20590020_2 (player VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT COUNT(starts) FROM table_20590020_2 WHERE player = \"Leif Olson\"", "question": "What is the total number of entries for Leif Olson?", "context": "CREATE TABLE table_20590020_2 (starts VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(best_finish) FROM table_20590020_2 WHERE money_list_rank = 96", "question": "What is the total number of players who had a money list rank of 96?", "context": "CREATE TABLE table_20590020_2 (best_finish VARCHAR, money_list_rank VARCHAR)"}, {"answer": "SELECT name FROM table_20595642_2 WHERE br_no = 60501", "question": "what is the name for br no. 60501", "context": "CREATE TABLE table_20595642_2 (name VARCHAR, br_no VARCHAR)"}, {"answer": "SELECT dates_administered FROM table_20597634_3 WHERE scott_mcadams__d_ = \"23%\"", "question": "When 23% scott mcadams (d) what are the dates administered?", "context": "CREATE TABLE table_20597634_3 (dates_administered VARCHAR, scott_mcadams__d_ VARCHAR)"}, {"answer": "SELECT COUNT(poll_source) FROM table_20597634_3 WHERE scott_mcadams__d_ = \"30%\"", "question": "When 30% is scott mcadams (d) percentage how many poll sources are there?", "context": "CREATE TABLE table_20597634_3 (poll_source VARCHAR, scott_mcadams__d_ VARCHAR)"}, {"answer": "SELECT MAX(revenue__) AS \u20acmillion_ FROM table_20614109_1 WHERE earnings_per_share__\u20ac_ = \"1.19\"", "question": "Name the revenue for eps being 1.19", "context": "CREATE TABLE table_20614109_1 (revenue__ INTEGER, earnings_per_share__\u20ac_ VARCHAR)"}, {"answer": "SELECT net_profit__\u20acm_ FROM table_20614109_1 WHERE earnings_per_share__\u20ac_ = \"1.19\"", "question": "Name the net profit for eps beign 1.19", "context": "CREATE TABLE table_20614109_1 (net_profit__\u20acm_ VARCHAR, earnings_per_share__\u20ac_ VARCHAR)"}, {"answer": "SELECT earnings_before_interest_and_taxes__\u20acm_ FROM table_20614109_1 WHERE earnings_per_share__\u20ac_ = \"1.78\"", "question": "Name the ebit for eps being 1.78", "context": "CREATE TABLE table_20614109_1 (earnings_before_interest_and_taxes__\u20acm_ VARCHAR, earnings_per_share__\u20ac_ VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_20613292_1 WHERE directed_by = \"Dominic Polcino\"", "question": "How many different production codes does the episode directed by Dominic Polcino have?", "context": "CREATE TABLE table_20613292_1 (production_code VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT production_code FROM table_20613292_1 WHERE written_by = \"Kirker Butler\" AND directed_by = \"Dan Povenmire\"", "question": "What's the production code of the episode written by Kirker Butler and directed by Dan Povenmire?", "context": "CREATE TABLE table_20613292_1 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT weight__kg_ FROM table_2062148_2 WHERE jockey = \"B. York\"", "question": "What was the weight in kg when the jockey was B. York? ", "context": "CREATE TABLE table_2062148_2 (weight__kg_ VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT result FROM table_2062148_2 WHERE jockey = \"J. Marshall\"", "question": "What was the result of the race where the jockey was J. Marshall? ", "context": "CREATE TABLE table_2062148_2 (result VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT MAX(weight__kg_) FROM table_2062148_4", "question": "Name the most weight", "context": "CREATE TABLE table_2062148_4 (weight__kg_ INTEGER)"}, {"answer": "SELECT date FROM table_2062148_4 WHERE venue = \"Moonee Valley\"", "question": "Name the date for moonee valley", "context": "CREATE TABLE table_2062148_4 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT group FROM table_2062148_3 WHERE race = \"Hollindale Stakes\"", "question": "What group was the Hollindale Stakes in?", "context": "CREATE TABLE table_2062148_3 (group VARCHAR, race VARCHAR)"}, {"answer": "SELECT race FROM table_2062148_3 WHERE distance = \"1200 m\"", "question": "What race has a distance of 1200 m?", "context": "CREATE TABLE table_2062148_3 (race VARCHAR, distance VARCHAR)"}, {"answer": "SELECT result FROM table_20626467_1 WHERE time = \"1-26.21\"", "question": "What was the result for the time of 1-26.21?", "context": "CREATE TABLE table_20626467_1 (result VARCHAR, time VARCHAR)"}, {"answer": "SELECT jockey FROM table_20626467_1 WHERE class = \"Group 1\" AND venue = \"Randwick\" AND distance = \"1400m\"", "question": "Who was the jockey in group 1 at the 1400m distance at randwick?", "context": "CREATE TABLE table_20626467_1 (jockey VARCHAR, distance VARCHAR, class VARCHAR, venue VARCHAR)"}, {"answer": "SELECT class FROM table_20626467_1 WHERE winner_2nd = \"2nd - Portillo\"", "question": "What class was the 2nd - portillo?", "context": "CREATE TABLE table_20626467_1 (class VARCHAR, winner_2nd VARCHAR)"}, {"answer": "SELECT time FROM table_20626467_1 WHERE weight__kg_ = \"54.4kg\"", "question": "What time for the entrant weighing 54.4kg?", "context": "CREATE TABLE table_20626467_1 (time VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT epoch__utc_ FROM table_206217_2 WHERE periselene__km_ = \"5,454.925\"", "question": "What is every entry for epoch if periselene is 5,454.925?", "context": "CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, periselene__km_ VARCHAR)"}, {"answer": "SELECT epoch__utc_ FROM table_206217_2 WHERE periselene__km_ = \"2,291.250\"", "question": "What is every entry for epoch if periselene is 2,291.250?", "context": "CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, periselene__km_ VARCHAR)"}, {"answer": "SELECT period__h_ FROM table_206217_2 WHERE eccentricity = \"0.583085\"", "question": "What is every value of period when eccentricity is 0.583085?", "context": "CREATE TABLE table_206217_2 (period__h_ VARCHAR, eccentricity VARCHAR)"}, {"answer": "SELECT epoch__utc_ FROM table_206217_2 WHERE inclination__deg___to_moon_equator_ = \"90.063603\"", "question": "What is every value of epoch if inclination is 90.063603?", "context": "CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, inclination__deg___to_moon_equator_ VARCHAR)"}, {"answer": "SELECT periselene__km_ FROM table_206217_2 WHERE period__h_ = \"4.947432\"", "question": "What is every value for periselene if period is 4.947432?", "context": "CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, period__h_ VARCHAR)"}, {"answer": "SELECT COUNT(periselene__km_) FROM table_206217_2 WHERE epoch__utc_ = \"November 15, 2004, 17:47:12.1\"", "question": "How many values of periselene when epoch is November 15, 2004, 17:47:12.1?", "context": "CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, epoch__utc_ VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_20630665_1 WHERE opponent = \"Tennessee\"", "question": "How many times did the Bruins play Tennessee?", "context": "CREATE TABLE table_20630665_1 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT also_currently_known_as FROM table_20630462_1 WHERE tournament = \"Tampa\"", "question": "What is the current tournament name for the event in Tampa?", "context": "CREATE TABLE table_20630462_1 (also_currently_known_as VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tier_iv_in FROM table_20630462_1 WHERE tournament = \"Tampa\"", "question": "What is the tier IV year for the tournament held in Tampa?", "context": "CREATE TABLE table_20630462_1 (tier_iv_in VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MAX(years) FROM table_20630462_1 WHERE tournament = \"Rome\"", "question": "What is the most years that tournaments held in Rome have lasted?", "context": "CREATE TABLE table_20630462_1 (years INTEGER, tournament VARCHAR)"}, {"answer": "SELECT city_s_ FROM table_20630462_1 WHERE also_currently_known_as = \"Medibank International Sydney\"", "question": "What is the city location of the tournament currently known as the Medibank International Sydney?", "context": "CREATE TABLE table_20630462_1 (city_s_ VARCHAR, also_currently_known_as VARCHAR)"}, {"answer": "SELECT COUNT(shareholder_name) FROM table_206359_1 WHERE _percentage_of_capital = \"2.39\"", "question": "How many different shareholders have 2.39 % of capital?", "context": "CREATE TABLE table_206359_1 (shareholder_name VARCHAR, _percentage_of_capital VARCHAR)"}, {"answer": "SELECT shareholder_name FROM table_206359_1 WHERE a_shares = 0", "question": "What shareholders have 0 A shares?", "context": "CREATE TABLE table_206359_1 (shareholder_name VARCHAR, a_shares VARCHAR)"}, {"answer": "SELECT _percentage_of_votes FROM table_206359_1 WHERE _percentage_of_capital = \"78.19\"", "question": "What percentage of votes does the shareholder with 78.19% of capital have?", "context": "CREATE TABLE table_206359_1 (_percentage_of_votes VARCHAR, _percentage_of_capital VARCHAR)"}, {"answer": "SELECT COUNT(b_shares) FROM table_206359_1 WHERE shareholder_name = \"Handelsbanken fonder\"", "question": "How many different numbers of B shares does Handelsbanken fonder have?", "context": "CREATE TABLE table_206359_1 (b_shares VARCHAR, shareholder_name VARCHAR)"}, {"answer": "SELECT MIN(green__sw_) FROM table_2066296_5 WHERE interior_roof = \"Charcoal/white\"", "question": "What's the green (SW) of the model with charcoal/white interior/roof?", "context": "CREATE TABLE table_2066296_5 (green__sw_ INTEGER, interior_roof VARCHAR)"}, {"answer": "SELECT COUNT(red__e8_) FROM table_2066296_5 WHERE interior_roof = \"Parchment/saddle\"", "question": "How many different results for red (e8) does the model with parchment/saddle interior/roof have?", "context": "CREATE TABLE table_2066296_5 (red__e8_ VARCHAR, interior_roof VARCHAR)"}, {"answer": "SELECT COUNT(totals) FROM table_2066296_5 WHERE interior_roof = \"Parchment/black\"", "question": "How many different total results are there for the model with parchment/black interior/roof?", "context": "CREATE TABLE table_2066296_5 (totals VARCHAR, interior_roof VARCHAR)"}, {"answer": "SELECT college FROM table_20649850_1 WHERE player = \"Aaron Wagner\"", "question": "Where did aaron wagner go to college", "context": "CREATE TABLE table_20649850_1 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_20649850_1 WHERE position = \"OL\"", "question": "Where did the ol go to college?", "context": "CREATE TABLE table_20649850_1 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_20649850_1 WHERE college = \"New Mexico\"", "question": "Name the number for new mexico", "context": "CREATE TABLE table_20649850_1 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_20649850_1 WHERE position = \"DB\"", "question": "Name the number for db", "context": "CREATE TABLE table_20649850_1 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_20649850_1 WHERE position = \"OL\"", "question": "Name the player for ol", "context": "CREATE TABLE table_20649850_1 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT pick__number FROM table_20649850_1 WHERE position = \"DL\"", "question": "Name the number for dl", "context": "CREATE TABLE table_20649850_1 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT company FROM table_20667854_1 WHERE free_float = \"0.2726\"", "question": "Which companies have a free float of 0.2726?", "context": "CREATE TABLE table_20667854_1 (company VARCHAR, free_float VARCHAR)"}, {"answer": "SELECT bse_code FROM table_20667854_1 WHERE free_float = \"0.2726\"", "question": "What is every BSE code for a free float of 0.2726?", "context": "CREATE TABLE table_20667854_1 (bse_code VARCHAR, free_float VARCHAR)"}, {"answer": "SELECT gics_sector FROM table_20667854_1 WHERE free_float = \"0.3180\"", "question": "What is every GICS sector for free float of 0.3180?", "context": "CREATE TABLE table_20667854_1 (gics_sector VARCHAR, free_float VARCHAR)"}, {"answer": "SELECT company FROM table_20667854_1 WHERE index_weighting___percentage = \"1\" AND city = \"Dimitrovgrad\"", "question": "What is every company with an index weighting % of 1 and the city of Dimitrovgrad?", "context": "CREATE TABLE table_20667854_1 (company VARCHAR, index_weighting___percentage VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(gics_sector) FROM table_20667854_1 WHERE free_float = \"0.2391\"", "question": "How many GICS sectors have a free float of 0.2391?", "context": "CREATE TABLE table_20667854_1 (gics_sector VARCHAR, free_float VARCHAR)"}, {"answer": "SELECT COUNT(free_float) FROM table_20667854_1 WHERE bse_code = \"4EH\"", "question": "How many values of free float for the BSE code of 4EH?", "context": "CREATE TABLE table_20667854_1 (free_float VARCHAR, bse_code VARCHAR)"}, {"answer": "SELECT COUNT(date_of_opinion_poll) FROM table_20683381_2 WHERE undecided = \"25%\"", "question": "How many polls taken on different dates show an undecided percentage of 25%?", "context": "CREATE TABLE table_20683381_2 (date_of_opinion_poll VARCHAR, undecided VARCHAR)"}, {"answer": "SELECT date_of_opinion_poll FROM table_20683381_2 WHERE conductor = \"Quantum Research\"", "question": "When was Quantum Research's poll conducted?", "context": "CREATE TABLE table_20683381_2 (date_of_opinion_poll VARCHAR, conductor VARCHAR)"}, {"answer": "SELECT conductor FROM table_20683381_2 WHERE undecided = \"18%\" AND sample_size = 2000", "question": "Who conducted the poll with sample size of 2000 that shows 18% undecided?", "context": "CREATE TABLE table_20683381_2 (conductor VARCHAR, undecided VARCHAR, sample_size VARCHAR)"}, {"answer": "SELECT height__ft_ FROM table_20669355_2 WHERE country = \"Ecuador\"", "question": "How tall is the contestant from Ecuador?", "context": "CREATE TABLE table_20669355_2 (height__ft_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT height__ft_ FROM table_20669355_2 WHERE country = \"Aruba\"", "question": "How tall is the contestant from Aruba?", "context": "CREATE TABLE table_20669355_2 (height__ft_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_20669355_2 WHERE hometown = \"San Francisco de Yojoa\"", "question": "What country is the contestant from San Francisco de Yojoa from?", "context": "CREATE TABLE table_20669355_2 (country VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(height__ft_) FROM table_20669355_2 WHERE hometown = \"Warsaw\"", "question": "How many different heights are there for the contestants from Warsaw?", "context": "CREATE TABLE table_20669355_2 (height__ft_ VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(county) FROM table_20688030_1 WHERE obama_percentage = \"35.44%\"", "question": "What is the total of countys where Obama is popular by 35.44%?", "context": "CREATE TABLE table_20688030_1 (county VARCHAR, obama_percentage VARCHAR)"}, {"answer": "SELECT mccain_percentage FROM table_20688030_1 WHERE obama_percentage = \"36.47%\"", "question": "What are McCain's Percent when Obama has 36.47%?", "context": "CREATE TABLE table_20688030_1 (mccain_percentage VARCHAR, obama_percentage VARCHAR)"}, {"answer": "SELECT COUNT(mccain_number) FROM table_20688030_1 WHERE obama_percentage = \"39.13%\"", "question": "What is McCains percent when Obamas is 39.13%", "context": "CREATE TABLE table_20688030_1 (mccain_number VARCHAR, obama_percentage VARCHAR)"}, {"answer": "SELECT MAX(obama_number) FROM table_20688030_1 WHERE county = \"Wayne\"", "question": "What is the maximum Obama supporters in Wayne county?", "context": "CREATE TABLE table_20688030_1 (obama_number INTEGER, county VARCHAR)"}, {"answer": "SELECT population__may_1, _2000_ FROM table_2068761_1 WHERE barangay = \"General Terrero\"", "question": "Name th epopulation may for general terrero", "context": "CREATE TABLE table_2068761_1 (population__may_1 VARCHAR, _2000_ VARCHAR, barangay VARCHAR)"}, {"answer": "SELECT season__number FROM table_20704243_3 WHERE series__number = 23", "question": "What is the season number for Series #23, the Runway Job?", "context": "CREATE TABLE table_20704243_3 (season__number VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_20704243_3 WHERE directed_by = \"Mark Roskin\"", "question": "What series was directed by Mark Roskin?", "context": "CREATE TABLE table_20704243_3 (series__number INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_20704243_3 WHERE directed_by = \"Peter Winther\"", "question": "How many were written by Peter Winther?", "context": "CREATE TABLE table_20704243_3 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_20704243_3 WHERE season__number = 2", "question": "How many directors were in Season 2?", "context": "CREATE TABLE table_20704243_3 (directed_by VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_20704243_4 WHERE written_by = \"Albert Kim\"", "question": "When was the episode written by Albert Kim aired for the first time?", "context": "CREATE TABLE table_20704243_4 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT series__number FROM table_20704243_5 WHERE written_by = \"M. Scott Veach & Rebecca Kirsch\"", "question": "Name the series number for  m. scott veach & rebecca kirsch", "context": "CREATE TABLE table_20704243_5 (series__number VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT us_viewers__in_millions_ FROM table_20704243_5 WHERE series__number = 50", "question": "Name the number of viewers for series number 50", "context": "CREATE TABLE table_20704243_5 (us_viewers__in_millions_ VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT directed_by FROM table_20704243_5 WHERE season__number = 1", "question": "Name who directed season 1", "context": "CREATE TABLE table_20704243_5 (directed_by VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT COUNT(moment_of_inertia_in_torsion__j___cm_4__) FROM table_2071644_1 WHERE beam_height__mm_ = 120", "question": "What is the moment of intertia in torsion (j) Cm4) for the beam height (mm) 120??=", "context": "CREATE TABLE table_2071644_1 (moment_of_inertia_in_torsion__j___cm_4__ VARCHAR, beam_height__mm_ VARCHAR)"}, {"answer": "SELECT cross_section_area__cm_2__ FROM table_2071644_1 WHERE moment_of_inertia_in_torsion__j___cm_4__ = \"2.54\"", "question": "What is the cross section area (cm 2) for the moment of intertia in torsion (j) (cm 4) 2.54?", "context": "CREATE TABLE table_2071644_1 (cross_section_area__cm_2__ VARCHAR, moment_of_inertia_in_torsion__j___cm_4__ VARCHAR)"}, {"answer": "SELECT flange_thickness__mm_ FROM table_2071644_1 WHERE weight__kg_m_ = \"6.0\"", "question": "What is the flange thickness (mm) for the weight (kg/m) 6.0?Wg", "context": "CREATE TABLE table_2071644_1 (flange_thickness__mm_ VARCHAR, weight__kg_m_ VARCHAR)"}, {"answer": "SELECT COUNT(moment_of_inertia_in_torsion__j___cm_4__) FROM table_2071644_1 WHERE web_thickness__mm_ = \"4.7\"", "question": "What is the number for the moment of intertia in torsion (j) (cm 4) for the 4.7 web thickness (mm)?", "context": "CREATE TABLE table_2071644_1 (moment_of_inertia_in_torsion__j___cm_4__ VARCHAR, web_thickness__mm_ VARCHAR)"}, {"answer": "SELECT flange_thickness__mm_ FROM table_2071644_1 WHERE weight__kg_m_ = \"10.4\"", "question": "What is the flange thickness (mm) for the weight (kg/m) 10.4?", "context": "CREATE TABLE table_2071644_1 (flange_thickness__mm_ VARCHAR, weight__kg_m_ VARCHAR)"}, {"answer": "SELECT COUNT(flange_width__mm_) FROM table_2071644_1 WHERE cross_section_area__cm_2__ = \"16.4\"", "question": "What is the flange width (mm) for cross section area (cm 2) 16.4?", "context": "CREATE TABLE table_2071644_1 (flange_width__mm_ VARCHAR, cross_section_area__cm_2__ VARCHAR)"}, {"answer": "SELECT lyon__32_ FROM table_20711545_1 WHERE seed = 5", "question": "In what round was lyon (32) a 5 seed?", "context": "CREATE TABLE table_20711545_1 (lyon__32_ VARCHAR, seed VARCHAR)"}, {"answer": "SELECT COUNT(marseille__32_draw_) FROM table_20711545_1 WHERE seed = 2", "question": "How many items were recorded marseille (32 draw) was a 2 seed?", "context": "CREATE TABLE table_20711545_1 (marseille__32_draw_ VARCHAR, seed VARCHAR)"}, {"answer": "SELECT MAX(seed) FROM table_20711545_1 WHERE lyon__32_ = \"DNQ\"", "question": "What is the seed for lyon (32) was DNQ?", "context": "CREATE TABLE table_20711545_1 (seed INTEGER, lyon__32_ VARCHAR)"}, {"answer": "SELECT paris__48___byes_ FROM table_20711545_1 WHERE seed = 3", "question": "What was the result for Paris(48-byes) for 3 seed?", "context": "CREATE TABLE table_20711545_1 (paris__48___byes_ VARCHAR, seed VARCHAR)"}, {"answer": "SELECT mccain_percentage FROM table_20722805_1 WHERE obama_percentage = \"64.39%\"", "question": "What was McCain's percentage when Obama had 64.39% of the vote?", "context": "CREATE TABLE table_20722805_1 (mccain_percentage VARCHAR, obama_percentage VARCHAR)"}, {"answer": "SELECT MIN(mccain_number) FROM table_20722805_1 WHERE obama_percentage = \"48.35%\"", "question": "What was McCain's vote when Obama had 48.35%", "context": "CREATE TABLE table_20722805_1 (mccain_number INTEGER, obama_percentage VARCHAR)"}, {"answer": "SELECT MIN(obama_number) FROM table_20722805_1 WHERE obama_percentage = \"32.12%\"", "question": "How many votes did Obama have at 32.12%", "context": "CREATE TABLE table_20722805_1 (obama_number INTEGER, obama_percentage VARCHAR)"}, {"answer": "SELECT parish FROM table_20722805_1 WHERE mccain_percentage = \"45.37%\"", "question": "What parish did McCain have 45.37% of the votes?", "context": "CREATE TABLE table_20722805_1 (parish VARCHAR, mccain_percentage VARCHAR)"}, {"answer": "SELECT MAX(mccain_number) FROM table_20722805_1 WHERE parish = \"Webster\"", "question": "What is the total number of votes McCain had in Webster?", "context": "CREATE TABLE table_20722805_1 (mccain_number INTEGER, parish VARCHAR)"}, {"answer": "SELECT originalairdate FROM table_20726262_2 WHERE production_code = \"1WAB06\"", "question": "What was the original air date for the episode with production code 1wab06?", "context": "CREATE TABLE table_20726262_2 (originalairdate VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_20726262_2 WHERE directedby = \"Paris Barclay\"", "question": "What title episode did Paris Barclay direct?", "context": "CREATE TABLE table_20726262_2 (title VARCHAR, directedby VARCHAR)"}, {"answer": "SELECT production_code FROM table_20726262_2 WHERE no_in_series = 1", "question": "What was the production code for episode #1?", "context": "CREATE TABLE table_20726262_2 (production_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_20726262_2 WHERE writtenby = \"Kurt Sutter & Jack LoGiudice\"", "question": "What number episode was written by kurt sutter & jack logiudice?", "context": "CREATE TABLE table_20726262_2 (no_in_series INTEGER, writtenby VARCHAR)"}, {"answer": "SELECT production_code FROM table_20726262_3 WHERE usviewers__million_ = \"3.38\"", "question": "What was the production code for the episode with 3.38 million viewers?", "context": "CREATE TABLE table_20726262_3 (production_code VARCHAR, usviewers__million_ VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_20726262_3 WHERE production_code = \"2WAB12\"", "question": "What season number did production code  2wab12?", "context": "CREATE TABLE table_20726262_3 (no_in_season VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_20726262_3 WHERE writtenby = \"Brett Conrad & Liz Sagal\"", "question": "How many numbers in the season were written by  Brett Conrad & Liz Sagal?", "context": "CREATE TABLE table_20726262_3 (no_in_season VARCHAR, writtenby VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_20726262_4 WHERE production_code = \"3WAB07\"", "question": "what i the maximum number in the series where the production code is 3wab07?", "context": "CREATE TABLE table_20726262_4 (no_in_series INTEGER, production_code VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_20726262_4 WHERE usviewers__million_ = \"2.59\"", "question": "what is the maximum number in the season wher the us viewers is 2.59?", "context": "CREATE TABLE table_20726262_4 (no_in_season INTEGER, usviewers__million_ VARCHAR)"}, {"answer": "SELECT writtenby FROM table_20726262_4 WHERE production_code = \"3WAB03\"", "question": "what is the written by and production code is 3wab03?", "context": "CREATE TABLE table_20726262_4 (writtenby VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT seats_won FROM table_20728138_1 WHERE seats_contested = 48", "question": "How many seats were won, when the seats contested was 48?", "context": "CREATE TABLE table_20728138_1 (seats_won VARCHAR, seats_contested VARCHAR)"}, {"answer": "SELECT seats_contested FROM table_20728138_1 WHERE party = \"Independents\"", "question": "How many seats are contested for independents?", "context": "CREATE TABLE table_20728138_1 (seats_contested VARCHAR, party VARCHAR)"}, {"answer": "SELECT _percentage_in_seats_contested FROM table_20728138_1 WHERE party = \"Revolutionary Socialist party\"", "question": "What is the percentage seats contested for the revolutionary socialist party?", "context": "CREATE TABLE table_20728138_1 (_percentage_in_seats_contested VARCHAR, party VARCHAR)"}, {"answer": "SELECT MIN(2003 AS _seats) FROM table_20728138_1 WHERE _percentage_in_seats_contested = \"38.23%\"", "question": "What is the 2003 seat number, when seats contested was at 38.23%", "context": "CREATE TABLE table_20728138_1 (_percentage_in_seats_contested VARCHAR)"}, {"answer": "SELECT COUNT(seats_forfeited) FROM table_20728138_1 WHERE party = \"Revolutionary Socialist party\"", "question": "How many seats were forfeited in the revolutionary socialist party?", "context": "CREATE TABLE table_20728138_1 (seats_forfeited VARCHAR, party VARCHAR)"}, {"answer": "SELECT opponent FROM table_20745685_1 WHERE attendance = 16642", "question": "Who was the opponent when the attendance was exactly 16642?", "context": "CREATE TABLE table_20745685_1 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_20745685_1 WHERE _number = 7", "question": "What is the score for game #7?", "context": "CREATE TABLE table_20745685_1 (score VARCHAR, _number VARCHAR)"}, {"answer": "SELECT opponent FROM table_20745685_1 WHERE date = \"February 28, 1991\"", "question": "Who was the opponent on February 28, 1991", "context": "CREATE TABLE table_20745685_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_20745444_1 WHERE record = \"1-0\"", "question": "What was the date when the record was 1-0?", "context": "CREATE TABLE table_20745444_1 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(tar_heels_points) FROM table_20745444_1 WHERE result = \"Loss\"", "question": "How many results finished in a loss?", "context": "CREATE TABLE table_20745444_1 (tar_heels_points VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_20745444_1 WHERE opponent = \"Furman\"", "question": "How many games were against Furman?", "context": "CREATE TABLE table_20745444_1 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_20745444_1 WHERE opponent = \"Duke\"", "question": "How many times were Duke the opponents?", "context": "CREATE TABLE table_20745444_1 (opponents VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(opponents) FROM table_20745444_1 WHERE record = \"4-0\"", "question": "How many losses were there when the record was 4-0?", "context": "CREATE TABLE table_20745444_1 (opponents INTEGER, record VARCHAR)"}, {"answer": "SELECT at_vs FROM table_20745754_1 WHERE _number = \"7\"", "question": "What was the game #7, at or versus (home or at)?", "context": "CREATE TABLE table_20745754_1 (at_vs VARCHAR, _number VARCHAR)"}, {"answer": "SELECT opponent FROM table_20745754_1 WHERE _number = \"7\"", "question": "Who did they play against in game 7?", "context": "CREATE TABLE table_20745754_1 (opponent VARCHAR, _number VARCHAR)"}, {"answer": "SELECT _number FROM table_20745754_1 WHERE attendance = 2813", "question": "What game number had an attendance of 2813?", "context": "CREATE TABLE table_20745754_1 (_number VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_20746062_1 WHERE game = 9", "question": "What day did the play game number 9?", "context": "CREATE TABLE table_20746062_1 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT result FROM table_20746062_1 WHERE record = \"2-1\"", "question": "What was the result of the game when they were 2-1?", "context": "CREATE TABLE table_20746062_1 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_20760407_1 WHERE bruins_points = 41", "question": "What was the record when the Bruins had 41 points?", "context": "CREATE TABLE table_20760407_1 (record VARCHAR, bruins_points VARCHAR)"}, {"answer": "SELECT date FROM table_20760407_1 WHERE game = 9", "question": "What was the date for game 9?", "context": "CREATE TABLE table_20760407_1 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_20760407_1 WHERE bruins_points = 56", "question": "What game did the Bruins have 56 points?", "context": "CREATE TABLE table_20760407_1 (game INTEGER, bruins_points VARCHAR)"}, {"answer": "SELECT played FROM table_20760802_1 WHERE lost = \"4\" AND drawn = \"1\"", "question": "What is the total of played where lost equals 4 and drawn equals 1?", "context": "CREATE TABLE table_20760802_1 (played VARCHAR, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT drawn FROM table_20760802_1 WHERE club = \"New Ross\"", "question": "How many drawn are there where the Club is new ross?", "context": "CREATE TABLE table_20760802_1 (drawn VARCHAR, club VARCHAR)"}, {"answer": "SELECT drawn FROM table_20760802_1 WHERE points_against = \"129\"", "question": "How may drawn equal points against at 129?", "context": "CREATE TABLE table_20760802_1 (drawn VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_difference FROM table_20760802_1 WHERE points_for = \"134\"", "question": "How many points differ from 134?", "context": "CREATE TABLE table_20760802_1 (points_difference VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT points_difference FROM table_20760802_1 WHERE lost = \"10\"", "question": "How many of the points difference lost equal 10?", "context": "CREATE TABLE table_20760802_1 (points_difference VARCHAR, lost VARCHAR)"}, {"answer": "SELECT played FROM table_20760802_1 WHERE won = \"0\"", "question": "How many teams that played won 0 games?", "context": "CREATE TABLE table_20760802_1 (played VARCHAR, won VARCHAR)"}, {"answer": "SELECT location_s_ FROM table_2076595_1 WHERE control = \"Public\" AND type = \"Master's university\"", "question": "What are the public schools with a master's university?", "context": "CREATE TABLE table_2076595_1 (location_s_ VARCHAR, control VARCHAR, type VARCHAR)"}, {"answer": "SELECT MIN(enrollment__2009_) FROM table_2076595_1 WHERE location_s_ = \"Plainfield\"", "question": "What is the minimum enrollment for Plainfield?", "context": "CREATE TABLE table_2076595_1 (enrollment__2009_ INTEGER, location_s_ VARCHAR)"}, {"answer": "SELECT type FROM table_2076595_1 WHERE enrollment__2009_ = 224", "question": "What type of school had an enrollment in 2009 of 224?", "context": "CREATE TABLE table_2076595_1 (type VARCHAR, enrollment__2009_ VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_2076595_1 WHERE school = \"Southern Vermont College\"", "question": "When was Southern Vermont College founded?", "context": "CREATE TABLE table_2076595_1 (founded INTEGER, school VARCHAR)"}, {"answer": "SELECT control FROM table_2076595_1 WHERE type = \"Art school\"", "question": "Is art school public or private?", "context": "CREATE TABLE table_2076595_1 (control VARCHAR, type VARCHAR)"}, {"answer": "SELECT school FROM table_2076595_1 WHERE founded = 1791", "question": "What school was founded in 1791?", "context": "CREATE TABLE table_2076595_1 (school VARCHAR, founded VARCHAR)"}, {"answer": "SELECT COUNT(enrollment__spring_2012_) FROM table_2076557_2 WHERE school = \"Sioux Falls Seminary\"", "question": "Name the number of spring enrollment for sioux falls seminary", "context": "CREATE TABLE table_2076557_2 (enrollment__spring_2012_ VARCHAR, school VARCHAR)"}, {"answer": "SELECT accreditation FROM table_2076557_2 WHERE school = \"Southeast Technical Institute\"", "question": "Name the accrediatation for southeast technical institute", "context": "CREATE TABLE table_2076557_2 (accreditation VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_2076557_2 WHERE location_s_ = \"Yankton\"", "question": "Name the total number of founded for yankton", "context": "CREATE TABLE table_2076557_2 (founded VARCHAR, location_s_ VARCHAR)"}, {"answer": "SELECT italian FROM table_2077192_2 WHERE english = \"otter\"", "question": "What is the Italian word for the English word \"otter\"?", "context": "CREATE TABLE table_2077192_2 (italian VARCHAR, english VARCHAR)"}, {"answer": "SELECT COUNT(french) FROM table_2077192_2 WHERE central_southern_calabrian = \"zinnap\u00f2tamu\"", "question": "How many French words does zinnap\u00f2tamu in Central-Southern Calabrian translate to?", "context": "CREATE TABLE table_2077192_2 (french VARCHAR, central_southern_calabrian VARCHAR)"}, {"answer": "SELECT french FROM table_2077192_2 WHERE english = \"orange\"", "question": "What is the French translation for the English word \"orange\"?", "context": "CREATE TABLE table_2077192_2 (french VARCHAR, english VARCHAR)"}, {"answer": "SELECT italian FROM table_2077192_2 WHERE english = \"orange\"", "question": "What is the Italian word for \"orange\" in English?", "context": "CREATE TABLE table_2077192_2 (italian VARCHAR, english VARCHAR)"}, {"answer": "SELECT COUNT(phonetic_greek) FROM table_2077192_2 WHERE french = \"grenouille\"", "question": "How many Phonetic Greek words translate to grenouille in French?", "context": "CREATE TABLE table_2077192_2 (phonetic_greek VARCHAR, french VARCHAR)"}, {"answer": "SELECT italian FROM table_2077192_2 WHERE english = \"frog\"", "question": "What does the word \"frog\"in English translate to in Italian?", "context": "CREATE TABLE table_2077192_2 (italian VARCHAR, english VARCHAR)"}, {"answer": "SELECT enrollment FROM table_2076608_3 WHERE location_s_ = \"Alexandria\"", "question": "Where are the Alexandria enrollment locations?", "context": "CREATE TABLE table_2076608_3 (enrollment VARCHAR, location_s_ VARCHAR)"}, {"answer": "SELECT control FROM table_2076608_3 WHERE founded = \"1991\"", "question": "What is the control type which was founded in 1991?", "context": "CREATE TABLE table_2076608_3 (control VARCHAR, founded VARCHAR)"}, {"answer": "SELECT control FROM table_2076608_3 WHERE founded = \"1818\"", "question": "What is the control type which was founded in 1818?", "context": "CREATE TABLE table_2076608_3 (control VARCHAR, founded VARCHAR)"}, {"answer": "SELECT founded FROM table_2076608_3 WHERE school = \"Hartland College\"", "question": "What year was Hartland College founded?", "context": "CREATE TABLE table_2076608_3 (founded VARCHAR, school VARCHAR)"}, {"answer": "SELECT type FROM table_2076608_3 WHERE school = \"Cordoba University\"", "question": "What type of school is Cordoba University?", "context": "CREATE TABLE table_2076608_3 (type VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_2076608_3 WHERE location_s_ = \"Richmond\"", "question": "What school is in Richmond?", "context": "CREATE TABLE table_2076608_3 (school VARCHAR, location_s_ VARCHAR)"}, {"answer": "SELECT accreditation FROM table_2076608_1 WHERE school = \"Hollins University\"", "question": "What accreditation does Hollins University have?", "context": "CREATE TABLE table_2076608_1 (accreditation VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_2076608_1 WHERE enrollment = \"696\"", "question": "What was the largest founded year for schools having enrollment of exactly 696?", "context": "CREATE TABLE table_2076608_1 (founded INTEGER, enrollment VARCHAR)"}, {"answer": "SELECT control FROM table_2076608_1 WHERE school = \"Christopher Newport University\"", "question": "What is the control for Christopher Newport University?", "context": "CREATE TABLE table_2076608_1 (control VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_2076608_1 WHERE enrollment = \"5634\"", "question": "What is the total number of schools founded that have an enrollment of 5634?", "context": "CREATE TABLE table_2076608_1 (founded VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT type FROM table_2076608_1 WHERE school = \"Stratford University\"", "question": "What type of school is Stratford University?", "context": "CREATE TABLE table_2076608_1 (type VARCHAR, school VARCHAR)"}, {"answer": "SELECT type FROM table_2076608_1 WHERE school = \"Jefferson College of Health Sciences\"", "question": "What type of school is Jefferson College of Health Sciences?", "context": "CREATE TABLE table_2076608_1 (type VARCHAR, school VARCHAR)"}, {"answer": "SELECT nec_record FROM table_20774360_2 WHERE standing = \"11th\"", "question": "Name the nec record for 11th standing", "context": "CREATE TABLE table_20774360_2 (nec_record VARCHAR, standing VARCHAR)"}, {"answer": "SELECT year FROM table_20774360_2 WHERE standing = \"9th\"", "question": "Name the year for standing 9th", "context": "CREATE TABLE table_20774360_2 (year VARCHAR, standing VARCHAR)"}, {"answer": "SELECT year FROM table_20774360_2 WHERE standing = \"T-10th\"", "question": "Name the year for t-10th", "context": "CREATE TABLE table_20774360_2 (year VARCHAR, standing VARCHAR)"}, {"answer": "SELECT regular_season_record__w_l_ FROM table_20774360_2 WHERE standing = \"11th\"", "question": "Name the regular season record for standing 11th", "context": "CREATE TABLE table_20774360_2 (regular_season_record__w_l_ VARCHAR, standing VARCHAR)"}, {"answer": "SELECT MAX(previous_br_no) FROM table_2079664_3", "question": "Name the most previous br number", "context": "CREATE TABLE table_2079664_3 (previous_br_no INTEGER)"}, {"answer": "SELECT COUNT(previous_br_no) FROM table_2079664_3 WHERE number = \"21\"", "question": "Name the total number of previous br number for number 21", "context": "CREATE TABLE table_2079664_3 (previous_br_no VARCHAR, number VARCHAR)"}, {"answer": "SELECT country_region FROM table_20780285_1 WHERE title = \"Marele c\u00e2\u0219tig\u0103tor The Big Winner\"", "question": "What country uses the title Marele C\u00e2\u0219tig\u0103tor The Big Winner?", "context": "CREATE TABLE table_20780285_1 (country_region VARCHAR, title VARCHAR)"}, {"answer": "SELECT country_region FROM table_20780285_1 WHERE presenters = \"Silvio Santos\"", "question": "Silvio Santos is the presenter in what country?", "context": "CREATE TABLE table_20780285_1 (country_region VARCHAR, presenters VARCHAR)"}, {"answer": "SELECT home_town FROM table_20785990_2 WHERE name = \"David Noel\"", "question": "What is the home town of David Noel?", "context": "CREATE TABLE table_20785990_2 (home_town VARCHAR, name VARCHAR)"}, {"answer": "SELECT high_school FROM table_20785990_2 WHERE home_town = \"Blue Island, IL\"", "question": "What is the high school for the player who's hometown is Blue Island, Il?", "context": "CREATE TABLE table_20785990_2 (high_school VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT position FROM table_20785990_2 WHERE home_town = \"North Babylon, NY\"", "question": "What is the position of the player who's hometown is North Babylon, NY?", "context": "CREATE TABLE table_20785990_2 (position VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT position FROM table_20785990_2 WHERE home_town = \"Chapel Hill, NC\"", "question": "What position is the player from Chapel Hill, NC?", "context": "CREATE TABLE table_20785990_2 (position VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT height FROM table_20785990_2 WHERE home_town = \"Gulfport, MS\"", "question": "What is the height of the player from Gulfport, MS?", "context": "CREATE TABLE table_20785990_2 (height VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT county FROM table_20799905_1 WHERE mccain_percentage = \"57.8%\"", "question": "In what county did McCain get 57.8%?", "context": "CREATE TABLE table_20799905_1 (county VARCHAR, mccain_percentage VARCHAR)"}, {"answer": "SELECT COUNT(mccain_percentage) FROM table_20799905_1 WHERE county = \"DAVIDSON\"", "question": "How many figures are given for McCain's % in Davidson county?", "context": "CREATE TABLE table_20799905_1 (mccain_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT obama_percentage FROM table_20799905_1 WHERE county = \"RUTHERFORD\"", "question": "What percentage did Obama get in Rutherford county?", "context": "CREATE TABLE table_20799905_1 (obama_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT mccain_percentage FROM table_20799905_1 WHERE county = \"HAMILTON\"", "question": "What percentage did McCain get in Hamilton county?", "context": "CREATE TABLE table_20799905_1 (mccain_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT obama_percentage FROM table_20799905_1 WHERE mccain_percentage = \"52.8%\"", "question": "What percentage did Obama get when McCain got 52.8%?", "context": "CREATE TABLE table_20799905_1 (obama_percentage VARCHAR, mccain_percentage VARCHAR)"}, {"answer": "SELECT MIN(obama_number) FROM table_20799905_1 WHERE county = \"LAKE\"", "question": "How many votes did Obama get in Lake County?", "context": "CREATE TABLE table_20799905_1 (obama_number INTEGER, county VARCHAR)"}, {"answer": "SELECT COUNT(county) FROM table_20799587_1 WHERE mccain_percentage = \"65.72%\"", "question": "In how many counties did McCain get 65.72% of the votes?", "context": "CREATE TABLE table_20799587_1 (county VARCHAR, mccain_percentage VARCHAR)"}, {"answer": "SELECT MIN(obama_number) FROM table_20799587_1 WHERE mccain_percentage = \"72.75%\"", "question": "How many people voted for Obama in the county where McCain got 72.75% of the votes?", "context": "CREATE TABLE table_20799587_1 (obama_number INTEGER, mccain_percentage VARCHAR)"}, {"answer": "SELECT mccain_percentage FROM table_20799587_1 WHERE county = \"Hinds\"", "question": "What percentage of the votes did McCain get in Hinds?", "context": "CREATE TABLE table_20799587_1 (mccain_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT MIN(mccain_number) FROM table_20799587_1 WHERE county = \"Scott\"", "question": "How many votes did McCain get in Scott?", "context": "CREATE TABLE table_20799587_1 (mccain_number INTEGER, county VARCHAR)"}, {"answer": "SELECT obama_percentage FROM table_20799587_1 WHERE county = \"Tippah\"", "question": "What percentage of the votes in Tippah did Obama get?", "context": "CREATE TABLE table_20799587_1 (obama_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT mccain_percentage FROM table_20799587_1 WHERE county = \"Copiah\"", "question": "What percentage of the votes in Copiah did McCain get?", "context": "CREATE TABLE table_20799587_1 (mccain_percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT COUNT(type_of_fare) FROM table_20803241_1 WHERE 31 - day_pass = \"N/A\" AND cash_fare = \"N/A\"", "question": "When n/a is the cash fate and n/a is the 31-day pass how many types of fare are there?", "context": "CREATE TABLE table_20803241_1 (type_of_fare VARCHAR, cash_fare VARCHAR, day_pass VARCHAR)"}, {"answer": "SELECT 31 - day_pass FROM table_20803241_1 WHERE type_of_fare = \"Fixed Route\"", "question": "When fixed route is the type of fare how much is the 31-day pass?", "context": "CREATE TABLE table_20803241_1 (day_pass VARCHAR, type_of_fare VARCHAR)"}, {"answer": "SELECT cash_fare FROM table_20803241_1 WHERE type_of_fare = \"Mega Pass* (Senior/Disabled)\"", "question": "When mega pass* (senior/disabled) is the type of fare what is the cash fare?", "context": "CREATE TABLE table_20803241_1 (cash_fare VARCHAR, type_of_fare VARCHAR)"}, {"answer": "SELECT day_pass FROM table_20803241_1 WHERE type_of_fare = \"Mega Pass* (Senior/Disabled)\"", "question": "When mega pass* (senior/disabled) is the type of fare what is the day pass?", "context": "CREATE TABLE table_20803241_1 (day_pass VARCHAR, type_of_fare VARCHAR)"}, {"answer": "SELECT cash_fare FROM table_20803241_1 WHERE type_of_fare = \"Fort Irwin-Barstow/Victorville\"", "question": "When  fort irwin-barstow/victorville is the type of fare what is the cash fare?", "context": "CREATE TABLE table_20803241_1 (cash_fare VARCHAR, type_of_fare VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_20848569_9 WHERE total_goals = 1 AND total_apps = 33", "question": "Where total goals is 1 and total apps is 33, what is the smallest no.?", "context": "CREATE TABLE table_20848569_9 (no INTEGER, total_goals VARCHAR, total_apps VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_20854943_2 WHERE loa__metres_ = \"20.12\"", "question": "What position is the boat with 20.12 LOA (metres)?", "context": "CREATE TABLE table_20854943_2 (position INTEGER, loa__metres_ VARCHAR)"}, {"answer": "SELECT loa__metres_ FROM table_20854943_2 WHERE sail_number = \"M10\"", "question": "What are the LOA (metres) of boat with sail number M10?", "context": "CREATE TABLE table_20854943_2 (loa__metres_ VARCHAR, sail_number VARCHAR)"}, {"answer": "SELECT COUNT(loa__metres_) FROM table_20854943_2 WHERE yacht = \"Black Jack\"", "question": "How many LOA (metres) reported for Black Jack?", "context": "CREATE TABLE table_20854943_2 (loa__metres_ VARCHAR, yacht VARCHAR)"}, {"answer": "SELECT race_number FROM table_20854943_2 WHERE sail_number = \"AUS 98888\"", "question": "What race number had sail number AUS 98888?", "context": "CREATE TABLE table_20854943_2 (race_number VARCHAR, sail_number VARCHAR)"}, {"answer": "SELECT COUNT(sail_number) FROM table_20854943_2 WHERE skipper = \"Geoff Ross\"", "question": "How many sail numbers for boat skippered by Geoff Ross?", "context": "CREATE TABLE table_20854943_2 (sail_number VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT date FROM table_20850339_1 WHERE opponent = \"West Virginia\"", "question": "When did they play against West Virginia?", "context": "CREATE TABLE table_20850339_1 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT season FROM table_20833768_4 WHERE l__ot_so_ = \"22 (3/4)\"", "question": "When l (ot/so) is 22 (3/4), what is the season?", "context": "CREATE TABLE table_20833768_4 (season VARCHAR, l__ot_so_ VARCHAR)"}, {"answer": "SELECT w__ot_so_ FROM table_20833768_4 WHERE season = \"2008\u201309\"", "question": "In season is 2008\u201309, how many wins did they have?", "context": "CREATE TABLE table_20833768_4 (w__ot_so_ VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(weight) FROM table_20860739_1 WHERE player = \"Eben Britton\"", "question": "What is the weight of Eben Britton?", "context": "CREATE TABLE table_20860739_1 (weight INTEGER, player VARCHAR)"}, {"answer": "SELECT round FROM table_20860739_1 WHERE college = \"Virginia\"", "question": "How many rounds did Virginia have?", "context": "CREATE TABLE table_20860739_1 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT round FROM table_20860739_1 WHERE height = \"6'5\"", "question": "How many rounds were there a height of 6'5?", "context": "CREATE TABLE table_20860739_1 (round VARCHAR, height VARCHAR)"}, {"answer": "SELECT college FROM table_20860739_1 WHERE height = \"6'1\"", "question": "What college has a player that is 6'1?", "context": "CREATE TABLE table_20860739_1 (college VARCHAR, height VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_20860739_1 WHERE player = \"Mike Thomas\"", "question": "What is the number of Mike Thomas?", "context": "CREATE TABLE table_20860739_1 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_20861261_4 WHERE player = \"Terrance Taylor\"", "question": "What college did Terrance Taylor play for?", "context": "CREATE TABLE table_20861261_4 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_20861261_4 WHERE player = \"Curtis Painter\"", "question": "What's Curtis Painter's position?", "context": "CREATE TABLE table_20861261_4 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT weight FROM table_20861261_4 WHERE college = \"Southern California\"", "question": "How much does the player from Southern California weight?", "context": "CREATE TABLE table_20861261_4 (weight VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_20861261_4 WHERE weight = \"192lb (87kg)\"", "question": "In what round did the player who weights 192lb (87kg) play?", "context": "CREATE TABLE table_20861261_4 (round INTEGER, weight VARCHAR)"}, {"answer": "SELECT MIN(choice) FROM table_20861261_4 WHERE weight = \"303lb (137kg)\"", "question": "What's the choice score of the player who weights 303lb (137kg)?", "context": "CREATE TABLE table_20861261_4 (choice INTEGER, weight VARCHAR)"}, {"answer": "SELECT COUNT(engine) FROM table_20866024_2 WHERE model_designation = \"97G00\"", "question": "How many different engines are there for the model with model designation 97G00?", "context": "CREATE TABLE table_20866024_2 (engine VARCHAR, model_designation VARCHAR)"}, {"answer": "SELECT engine FROM table_20866024_2 WHERE gvw__kg_ton_ = \"2500/2.46\" AND model_designation = \"97G00\"", "question": "What's the engine for the model model designation 97G00 and GVW of 2500/2.46 kg/ton?", "context": "CREATE TABLE table_20866024_2 (engine VARCHAR, gvw__kg_ton_ VARCHAR, model_designation VARCHAR)"}, {"answer": "SELECT model_type FROM table_20866024_2 WHERE model_designation = \"97500\"", "question": "What model type has model designation 97500?", "context": "CREATE TABLE table_20866024_2 (model_type VARCHAR, model_designation VARCHAR)"}, {"answer": "SELECT axle_ratio FROM table_20866024_2 WHERE model_designation = \"97G00\"", "question": "What's the axle ratio of the model with model designation 97G00?", "context": "CREATE TABLE table_20866024_2 (axle_ratio VARCHAR, model_designation VARCHAR)"}, {"answer": "SELECT model_type FROM table_20866024_2 WHERE model_designation = \"97100\"", "question": "What model type has 97100 model designation?", "context": "CREATE TABLE table_20866024_2 (model_type VARCHAR, model_designation VARCHAR)"}, {"answer": "SELECT engine FROM table_20866024_3 WHERE model_designation = \"97100\"", "question": "What type of engine does the model with model designation 97100 have?", "context": "CREATE TABLE table_20866024_3 (engine VARCHAR, model_designation VARCHAR)"}, {"answer": "SELECT wheelbase__mm_inch_ FROM table_20866024_3 WHERE model_designation = \"97G00\"", "question": "What's the wheelbase (in mm/inch) of the model with model designation 97G00?", "context": "CREATE TABLE table_20866024_3 (wheelbase__mm_inch_ VARCHAR, model_designation VARCHAR)"}, {"answer": "SELECT engine FROM table_20866024_3 WHERE model_designation = \"97F00\"", "question": "What type of engine does the model with model designation 97F00 have?", "context": "CREATE TABLE table_20866024_3 (engine VARCHAR, model_designation VARCHAR)"}, {"answer": "SELECT model_designation FROM table_20866024_3 WHERE gvw__kg_ton_ = \"2828/2.78\" AND axle_ratio = \"9/47\"", "question": "What's the model designation of the model with GVW of 2828/2.78 kg/ton and axle ratio of 9/47?", "context": "CREATE TABLE table_20866024_3 (model_designation VARCHAR, gvw__kg_ton_ VARCHAR, axle_ratio VARCHAR)"}, {"answer": "SELECT player_name FROM table_20871703_1 WHERE college = \"Eastern Michigan\"", "question": "Who is the player name when eastern michigan is the college?", "context": "CREATE TABLE table_20871703_1 (player_name VARCHAR, college VARCHAR)"}, {"answer": "SELECT height FROM table_20871703_1 WHERE position = \"OT\"", "question": "What is the height if ot is the position?", "context": "CREATE TABLE table_20871703_1 (height VARCHAR, position VARCHAR)"}, {"answer": "SELECT player_name FROM table_20871703_1 WHERE college = \"South Carolina\"", "question": "Who is the player for south carolina college?", "context": "CREATE TABLE table_20871703_1 (player_name VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_20871703_1 WHERE position = \"DE\"", "question": "What is the height if de is the position?", "context": "CREATE TABLE table_20871703_1 (height VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_20871703_1 WHERE position = \"FB\"", "question": "Which college has fb as the position?", "context": "CREATE TABLE table_20871703_1 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT gvw__kg_ton_ FROM table_20866024_4 WHERE model_designation = \"97H00\"", "question": "What is the GVW for model 97H00?", "context": "CREATE TABLE table_20866024_4 (gvw__kg_ton_ VARCHAR, model_designation VARCHAR)"}, {"answer": "SELECT COUNT(engine) FROM table_20866024_4 WHERE model_designation = \"97H00\"", "question": "How many engines are there for model 97H00?", "context": "CREATE TABLE table_20866024_4 (engine VARCHAR, model_designation VARCHAR)"}, {"answer": "SELECT wheelbase__mm_inch_ FROM table_20866024_4 WHERE model_designation = \"97300\"", "question": "What is the Wheelbase for Model 97300?", "context": "CREATE TABLE table_20866024_4 (wheelbase__mm_inch_ VARCHAR, model_designation VARCHAR)"}, {"answer": "SELECT engine FROM table_20866024_4 WHERE model_type = \"CF350\"", "question": "Name the Engine for model CF350.", "context": "CREATE TABLE table_20866024_4 (engine VARCHAR, model_type VARCHAR)"}, {"answer": "SELECT report FROM table_20884160_1 WHERE race_title = \"Supercheap Auto Bathurst 1000\"", "question": "Was the result of the supercheap auto bathurst 1000 reported?", "context": "CREATE TABLE table_20884160_1 (report VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT winner FROM table_20884160_1 WHERE circuit = \"Barbagallo Raceway\"", "question": "Who was the winner of the race at barbagallo raceway?", "context": "CREATE TABLE table_20884160_1 (winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_20898602_1 WHERE status = \"Made 53-man roster at start of 2009 season\" AND position = \"Running back\"", "question": "how many players played running back where status is made 53-man roster at start of 2009 season", "context": "CREATE TABLE table_20898602_1 (player VARCHAR, status VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_20898602_1 WHERE player = \"Wallace, Mike Mike Wallace\"", "question": "howe many positions did wallace, mike mike wallace play for ", "context": "CREATE TABLE table_20898602_1 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT status FROM table_20898602_1 WHERE pick__number = 32", "question": "state the status of pick # 32", "context": "CREATE TABLE table_20898602_1 (status VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_20898602_1 WHERE position = \"Running back\"", "question": "which college had a running back player", "context": "CREATE TABLE table_20898602_1 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_20898602_1 WHERE height = \"ft0in (m)\"", "question": "what is the position of the player of height ft0in (m)", "context": "CREATE TABLE table_20898602_1 (position VARCHAR, height VARCHAR)"}, {"answer": "SELECT position FROM table_20898602_1 WHERE pick__number = 79", "question": "what's the position of pick # 79", "context": "CREATE TABLE table_20898602_1 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(touchdowns) FROM table_20906175_3 WHERE qb_rating = \"82.7\"", "question": "How many touchdowns were scored when QB rating was 82.7?", "context": "CREATE TABLE table_20906175_3 (touchdowns INTEGER, qb_rating VARCHAR)"}, {"answer": "SELECT qb_rating FROM table_20906175_3 WHERE name = \"Neil Lomax\"", "question": "What was the QB rating for Neil lomax?", "context": "CREATE TABLE table_20906175_3 (qb_rating VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(attempts) FROM table_20906175_3 WHERE name = \"Charley Johnson\"", "question": "How many attempts did Charley Johnson have?", "context": "CREATE TABLE table_20906175_3 (attempts VARCHAR, name VARCHAR)"}, {"answer": "SELECT touchdowns FROM table_20906175_3 WHERE qb_rating = \"66.6\"", "question": "How many touchdowns were there with QB rating of 66.6?", "context": "CREATE TABLE table_20906175_3 (touchdowns VARCHAR, qb_rating VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_20928661_1 WHERE result = \"Loss\"", "question": "Name the number opponent for loss result", "context": "CREATE TABLE table_20928661_1 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT game FROM table_20928661_1 WHERE record = \"3-0\"", "question": "Name the game for record being 3-0", "context": "CREATE TABLE table_20928661_1 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_20928649_1 WHERE game = 6", "question": "What was the date of game 6?", "context": "CREATE TABLE table_20928649_1 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_20928649_1 WHERE cardinals_points = 7", "question": "What was the record for the game where the cardinals scored 7 points?", "context": "CREATE TABLE table_20928649_1 (record VARCHAR, cardinals_points VARCHAR)"}, {"answer": "SELECT date FROM table_20928649_1 WHERE record = \"1-2\"", "question": "What game date had the record of 1-2?", "context": "CREATE TABLE table_20928649_1 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_20928649_1 WHERE opponent = \"North Carolina State\"", "question": "How many opponents were in North Carolina state game?", "context": "CREATE TABLE table_20928649_1 (opponents VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(125 AS cc_winner) FROM table_20935975_1 WHERE moto2_winner = \"Shoya Tomizawa\"", "question": "How many 125cc winners were in the same events as when the Moto2 winner was Shoya Tomizawa?", "context": "CREATE TABLE table_20935975_1 (moto2_winner VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_20928682_1 WHERE record = \"1-0-0\"", "question": "After how many opponents was the overall record 1-0-0?", "context": "CREATE TABLE table_20928682_1 (opponents VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_20928682_1 WHERE hurricanes_points = 24", "question": "What was the record after the game in which the Hurricanes scored 24 points?", "context": "CREATE TABLE table_20928682_1 (record VARCHAR, hurricanes_points VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_20928682_1 WHERE opponent = \"Georgia\"", "question": "Which game number was played against Georgia?", "context": "CREATE TABLE table_20928682_1 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_20928682_1 WHERE opponent = \"Tulane\"", "question": "How many games were played against Tulane?", "context": "CREATE TABLE table_20928682_1 (opponents VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT parking FROM table_2093995_1 WHERE city__neighborhood = \"Van Nuys\" AND stations = \"Sepulveda\"", "question": "How much parking is in Van Nuys at the Sepulveda station? ", "context": "CREATE TABLE table_2093995_1 (parking VARCHAR, city__neighborhood VARCHAR, stations VARCHAR)"}, {"answer": "SELECT stations FROM table_2093995_1 WHERE city__neighborhood = \"Tarzana\"", "question": "What are the stations in Tarzana? ", "context": "CREATE TABLE table_2093995_1 (stations VARCHAR, city__neighborhood VARCHAR)"}, {"answer": "SELECT COUNT(connections) FROM table_2093995_1 WHERE stations = \"Tampa\"", "question": "How many connection catagories are there for Tampa? ", "context": "CREATE TABLE table_2093995_1 (connections VARCHAR, stations VARCHAR)"}, {"answer": "SELECT stations FROM table_2093995_1 WHERE parking = \"Park & Ride Lot\"", "question": "Which station has park & ride lot parking? ", "context": "CREATE TABLE table_2093995_1 (stations VARCHAR, parking VARCHAR)"}, {"answer": "SELECT 3 AS _dart_average FROM table_20948329_1 WHERE high_checkout = 112", "question": "What is the 3-dart average with a high checkout of 112?", "context": "CREATE TABLE table_20948329_1 (high_checkout VARCHAR)"}, {"answer": "SELECT MAX(180 AS s) FROM table_20948329_1 WHERE legs_won = 45", "question": "How many 180s have legs won of 45?", "context": "CREATE TABLE table_20948329_1 (legs_won VARCHAR)"}, {"answer": "SELECT COUNT(touchdowns) FROM table_20938922_2 WHERE yards = 145", "question": "The player who had 145 yards had how many touchdowns?", "context": "CREATE TABLE table_20938922_2 (touchdowns VARCHAR, yards VARCHAR)"}, {"answer": "SELECT team FROM table_20938922_2 WHERE carries = 27", "question": "Which team did the player have who had 27 total carries?", "context": "CREATE TABLE table_20938922_2 (team VARCHAR, carries VARCHAR)"}, {"answer": "SELECT opponent FROM table_20938922_2 WHERE week = 12", "question": "What was the player's team's opponent for Week 12?", "context": "CREATE TABLE table_20938922_2 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT directed_by FROM table_20967430_4 WHERE original_air_date = \"March 18, 1988\"", "question": "Who directed the episode that originally aired on March 18, 1988?", "context": "CREATE TABLE table_20967430_4 (directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_20967430_4 WHERE original_air_date = \"March 11, 1988\"", "question": "What was the name of the episode that aired originally on March 11, 1988?", "context": "CREATE TABLE table_20967430_4 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT prod_code FROM table_20967430_4 WHERE written_by = \"Jack Carrerrow\"", "question": "What is the production code of the episode written by Jack Carrerrow?", "context": "CREATE TABLE table_20967430_4 (prod_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(ep) FROM table_20967430_4 WHERE prod_code = \"5M13\"", "question": "How many episodes had a production code of 5m13?", "context": "CREATE TABLE table_20967430_4 (ep VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT title FROM table_20967430_2 WHERE original_air_date = \"November 08, 1985\"", "question": "Name the title that aired for november 08, 1985", "context": "CREATE TABLE table_20967430_2 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT prod_code FROM table_20967430_2 WHERE original_air_date = \"November 08, 1985\"", "question": "Name the production code for november 08, 1985", "context": "CREATE TABLE table_20967430_2 (prod_code VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT written_by FROM table_20967430_2 WHERE prod_code = \"4G07\"", "question": "Name the written by for production code 4g07", "context": "CREATE TABLE table_20967430_2 (written_by VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT MIN(ep) FROM table_20967430_2 WHERE original_air_date = \"November 29, 1985\"", "question": "Name the least episode for november 29, 1985", "context": "CREATE TABLE table_20967430_2 (ep INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_20986710_1 WHERE runner_up = \"Tracy Austin\"", "question": "What was the final score when tracy austin was runner up?", "context": "CREATE TABLE table_20986710_1 (score_in_final VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT MAX(ep) FROM table_20967430_3 WHERE prod_code = \"5A06\"", "question": "When 5a06 is the production code what is the highest episode?", "context": "CREATE TABLE table_20967430_3 (ep INTEGER, prod_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_20967430_3 WHERE season = 10", "question": "When it is season 10 who are the writers?", "context": "CREATE TABLE table_20967430_3 (written_by VARCHAR, season VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_21001903_2 WHERE womens_singles = \"Wang Yihan\" AND tour = \"French Super Series\"", "question": "when womens singles is wang yihan and tour is french super series, what were the men's singles?", "context": "CREATE TABLE table_21001903_2 (mens_singles VARCHAR, womens_singles VARCHAR, tour VARCHAR)"}, {"answer": "SELECT tour FROM table_21001903_2 WHERE mixed_doubles = \"Zheng Bo Ma Jin\" AND womens_singles = \"Wang Yihan\"", "question": "when mixed doubles is zheng bo ma jin and womens singles is wang yihan, what was the tour?", "context": "CREATE TABLE table_21001903_2 (tour VARCHAR, mixed_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_21002034_4 WHERE director = \"Alex Chapple\"", "question": "How many titles were directed by Alex Chapple?", "context": "CREATE TABLE table_21002034_4 (title VARCHAR, director VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_21002034_7 WHERE air_date_netherlands_yyyy_mm_dd = \"2009/12/29\"", "question": "Name the most number for air date 2009/12/29", "context": "CREATE TABLE table_21002034_7 (_number INTEGER, air_date_netherlands_yyyy_mm_dd VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_2101431_1 WHERE run_time = \"23:25\"", "question": "How many millions viewers watched the episode that ran 23:25?", "context": "CREATE TABLE table_2101431_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_2101431_1 WHERE archive = \"16mm t/r\" AND run_time = \"23:25\"", "question": "What is the broadcast date of the episode on 16mm t/r that ran 23:25?", "context": "CREATE TABLE table_2101431_1 (broadcast_date VARCHAR, archive VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT episode FROM table_2101431_1 WHERE viewers__in_millions_ = \"7.2\"", "question": "Which episode was watched by 7.2 million viewers?", "context": "CREATE TABLE table_2101431_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT episode FROM table_2101431_1 WHERE run_time = \"24:18\"", "question": "What episode had a run time of 24:18?", "context": "CREATE TABLE table_2101431_1 (episode VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT MIN(valves) FROM table_21021796_1", "question": "What is the greatest number of valves?", "context": "CREATE TABLE table_21021796_1 (valves INTEGER)"}, {"answer": "SELECT stroke FROM table_21021796_1 WHERE applications = \"1999 W210 E-Class , 2000 W203 C-Class\"", "question": "For the 1999 w210 e-class , 2000 w203 c-class, what is the stroke?", "context": "CREATE TABLE table_21021796_1 (stroke VARCHAR, applications VARCHAR)"}, {"answer": "SELECT displacement FROM table_21021796_1 WHERE torque = \"N\u00b7m (lb\u00b7ft) @1500 rpm\"", "question": "What is the displacement for torque of  n\u00b7m (lb\u00b7ft) @1500 rpm?", "context": "CREATE TABLE table_21021796_1 (displacement VARCHAR, torque VARCHAR)"}, {"answer": "SELECT power FROM table_21021796_1 WHERE torque = \"N\u00b7m (lb\u00b7ft) @1600\u20132400 rpm\" AND applications = \"2000 W90x Sprinter\"", "question": "If torque is n\u00b7m (lb\u00b7ft) @1600\u20132400 rpm and applications is 2000 w90x sprinter, what is the power?", "context": "CREATE TABLE table_21021796_1 (power VARCHAR, torque VARCHAR, applications VARCHAR)"}, {"answer": "SELECT torque FROM table_21021796_1 WHERE stroke = \"88.4mm\"", "question": "List the torque possible when the stroke is 88.4mm?", "context": "CREATE TABLE table_21021796_1 (torque VARCHAR, stroke VARCHAR)"}, {"answer": "SELECT opponent FROM table_21007907_1 WHERE record = \"7-1-0\"", "question": "Name the opponent for 7-1-0", "context": "CREATE TABLE table_21007907_1 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT episode FROM table_2102782_1 WHERE run_time = \"25:05\"", "question": "Name the episode for run time 25:05", "context": "CREATE TABLE table_2102782_1 (episode VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_2102782_1 WHERE run_time = \"25:04\"", "question": "Name the broadcast date for run timke of 25:04", "context": "CREATE TABLE table_2102782_1 (broadcast_date VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT archive FROM table_2102782_1 WHERE run_time = \"23:55\"", "question": "Name the archive for run time of 23:55", "context": "CREATE TABLE table_2102782_1 (archive VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_2102782_1 WHERE viewers__in_millions_ = \"7.4\"", "question": "Name the broadcast date for 7.4 viewers", "context": "CREATE TABLE table_2102782_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_2102782_1 WHERE viewers__in_millions_ = \"6.0\"", "question": "Name the broadcast date for 6.0 viewers", "context": "CREATE TABLE table_2102782_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT COUNT(episode_no) FROM table_21025437_2 WHERE written_by = \"Kirstie Falkous & John Regier\"", "question": "How many episodes were written by Kirstie Falkous & John Regier?", "context": "CREATE TABLE table_21025437_2 (episode_no VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT episode FROM table_2102714_1 WHERE viewers__in_millions_ = \"9.7\"", "question": "What episode had 9.7 million viewers?", "context": "CREATE TABLE table_2102714_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_2102714_1 WHERE run_time = \"24:40\"", "question": "What date was an episode broadcasted on that had a run time of 24:40?", "context": "CREATE TABLE table_2102714_1 (broadcast_date VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT episode FROM table_2102714_1 WHERE run_time = \"24:53\"", "question": "What episode had a run time of 24:53?", "context": "CREATE TABLE table_2102714_1 (episode VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT archive FROM table_2102714_1 WHERE run_time = \"25:24\"", "question": "What was the archive for the episode with a run time of 25:24?", "context": "CREATE TABLE table_2102714_1 (archive VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT archive FROM table_2102714_1 WHERE run_time = \"24:05\"", "question": "What is he archive for the episode with a run time of 24:05?", "context": "CREATE TABLE table_2102714_1 (archive VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT directed_by FROM table_21025437_6 WHERE episode_no = 23", "question": "Who directed episode number 23?", "context": "CREATE TABLE table_21025437_6 (directed_by VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_21034801_1 WHERE record = \"4-0\"", "question": "What was the numer of the game when the record was 4-0?", "context": "CREATE TABLE table_21034801_1 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_21034801_1 WHERE record = \"7-0\"", "question": "How many opponents led to an exactly 7-0 record?", "context": "CREATE TABLE table_21034801_1 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT game FROM table_21034801_1 WHERE opponent = \"Kansas State\"", "question": "What number was the game against Kansas State?", "context": "CREATE TABLE table_21034801_1 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_2102898_1 WHERE run_time = \"24:33\"", "question": "How many episodes ran 24:33?", "context": "CREATE TABLE table_2102898_1 (episode VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_2102898_1 WHERE broadcast_date = \"25April1970\"", "question": "On broadcast date is 25april1970, how many people tuned in?", "context": "CREATE TABLE table_2102898_1 (viewers__in_millions_ VARCHAR, broadcast_date VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_2102898_1 WHERE broadcast_date = \"28March1970\"", "question": "On broadcast date is 28march1970, how many people tuned in?", "context": "CREATE TABLE table_2102898_1 (viewers__in_millions_ VARCHAR, broadcast_date VARCHAR)"}, {"answer": "SELECT COUNT(viewers__in_millions_) FROM table_2102898_1 WHERE broadcast_date = \"21March1970\"", "question": "On broadcast date is 21march1970, how many people tuned in?", "context": "CREATE TABLE table_2102898_1 (viewers__in_millions_ VARCHAR, broadcast_date VARCHAR)"}, {"answer": "SELECT archive FROM table_2102898_1 WHERE broadcast_date = \"18April1970\"", "question": "What is the archive of the show that aired on 18april1970?", "context": "CREATE TABLE table_2102898_1 (archive VARCHAR, broadcast_date VARCHAR)"}, {"answer": "SELECT MIN(golden_bears_points) FROM table_21035326_1 WHERE opponents = 15", "question": "What was the least amount of points scored by the golden bears when the opponent scored 15 points?", "context": "CREATE TABLE table_21035326_1 (golden_bears_points INTEGER, opponents VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_21035326_1 WHERE game = 4", "question": "What is the total number of opponents played against the bears in game 4?", "context": "CREATE TABLE table_21035326_1 (opponents VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_21035326_1 WHERE golden_bears_points = 3", "question": "What opponent was playing against the Golden Bears when they scored 3 points?", "context": "CREATE TABLE table_21035326_1 (opponent VARCHAR, golden_bears_points VARCHAR)"}, {"answer": "SELECT medal_of_honor FROM table_2104176_1 WHERE air_force_cross = \"Army Distinguished Service Medal\"", "question": "What is the Medal of Honor with Army Distinguished Service Medal?", "context": "CREATE TABLE table_2104176_1 (medal_of_honor VARCHAR, air_force_cross VARCHAR)"}, {"answer": "SELECT homeland_security_distinguished_service_medal FROM table_2104176_1 WHERE medal_of_honor = \"Coast Guard Medal\"", "question": "WHat is the Homeland security distinguished service medal when the medal of honor is Coast guard Medal?", "context": "CREATE TABLE table_2104176_1 (homeland_security_distinguished_service_medal VARCHAR, medal_of_honor VARCHAR)"}, {"answer": "SELECT distinguished_service_cross FROM table_2104176_1 WHERE navy_cross = \"Coast Guard Commendation Medal\"", "question": "What is the distinguished service cross when the navy cross is Coast Guard commendation medal?", "context": "CREATE TABLE table_2104176_1 (distinguished_service_cross VARCHAR, navy_cross VARCHAR)"}, {"answer": "SELECT air_force_cross FROM table_2104176_1 WHERE homeland_security_distinguished_service_medal = \"Aerial Achievement Medal\"", "question": "What is the air force cross when you recieve the Aerial achievement medal?", "context": "CREATE TABLE table_2104176_1 (air_force_cross VARCHAR, homeland_security_distinguished_service_medal VARCHAR)"}, {"answer": "SELECT coast_guard_cross FROM table_2104176_1 WHERE distinguished_service_cross = \"Navy Distinguished Service Medal\"", "question": "What is the coast guard cross when you recieve the navy distinguished service medal?", "context": "CREATE TABLE table_2104176_1 (coast_guard_cross VARCHAR, distinguished_service_cross VARCHAR)"}, {"answer": "SELECT COUNT(walker__percentage) FROM table_21046399_3 WHERE county = \"Kenosha\"", "question": "How many figures are given for Walker's percentage in Kenosha county?", "context": "CREATE TABLE table_21046399_3 (walker__percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT walker__percentage FROM table_21046399_3 WHERE county = \"Calumet\"", "question": "What percentage did Walker win in Calumet county?", "context": "CREATE TABLE table_21046399_3 (walker__percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT COUNT(won_by) FROM table_21046399_3 WHERE county = \"Milwaukee\"", "question": "How many total figures are given for Milwaukee county?", "context": "CREATE TABLE table_21046399_3 (won_by VARCHAR, county VARCHAR)"}, {"answer": "SELECT result FROM table_21058823_1 WHERE record = \"3-2-1\"", "question": "What did they do in the game when their record was 3-2-1?", "context": "CREATE TABLE table_21058823_1 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT result FROM table_21058823_1 WHERE opponent = \"Villanova\"", "question": "What did they do against Villanova?", "context": "CREATE TABLE table_21058823_1 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_21058823_1 WHERE opponent = \"Memphis\"", "question": "What did they do against Memphis?", "context": "CREATE TABLE table_21058823_1 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_21058823_1 WHERE record = \"0-2-0\"", "question": "How many games did they play when their record 0-2-0?", "context": "CREATE TABLE table_21058823_1 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT au_air_date FROM table_21055055_2 WHERE viewers__m_ = \"2.267\"", "question": "When did the episode seen by  is 2.267 million people get aired?", "context": "CREATE TABLE table_21055055_2 (au_air_date VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT episode FROM table_2105721_1 WHERE run_time = \"24:44\"", "question": "Name the episode for run time in 24:44", "context": "CREATE TABLE table_2105721_1 (episode VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_2105721_1 WHERE run_time = \"24:11\"", "question": "Name the total episode for runtime of 24:11", "context": "CREATE TABLE table_2105721_1 (episode VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT opponent FROM table_21063459_1 WHERE record = \"3-1, #16\"", "question": "Who did the team play against when a record of 3-1, #16 was achieved?", "context": "CREATE TABLE table_21063459_1 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT result FROM table_21063459_1 WHERE opponent = \"Mississippi State\"", "question": "What was the result of the game against Mississippi State?", "context": "CREATE TABLE table_21063459_1 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_21063459_1 WHERE result = \"Loss\"", "question": "Who did the team play against in the game that resulted with a loss?", "context": "CREATE TABLE table_21063459_1 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT game FROM table_21058836_1 WHERE opponent = \"Santa Clara\"", "question": "What game did the Bruins play Santa Clara?", "context": "CREATE TABLE table_21058836_1 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponents FROM table_21058836_1 WHERE opponent = \"Santa Clara\"", "question": "Santa Clara was played how many times?", "context": "CREATE TABLE table_21058836_1 (opponents VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_21058836_1 WHERE opponents = 26", "question": "The game the Bruins scored 26 ,what was the result?", "context": "CREATE TABLE table_21058836_1 (result VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT record FROM table_21058836_1 WHERE game = 9", "question": "What was the record for game 9?", "context": "CREATE TABLE table_21058836_1 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_21062353_1 WHERE game = 4", "question": "Who were the opponents of the Wildcats in game 4?", "context": "CREATE TABLE table_21062353_1 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_21062353_1 WHERE game = 8", "question": "Who were the the opponents of the Wildcats for game 8 of the season?", "context": "CREATE TABLE table_21062353_1 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_21062353_1 WHERE opponent = \"Florida\"", "question": "What was the record of the Wildcats after playing Florida?", "context": "CREATE TABLE table_21062353_1 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(wildcats_points) FROM table_21062353_1 WHERE game = 11", "question": "How many times did the Wildcats play a game 11 regardless of points scored?", "context": "CREATE TABLE table_21062353_1 (wildcats_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(black_knights_points) FROM table_21091145_1 WHERE game = 3", "question": "Name the number of black knights points for 3 game", "context": "CREATE TABLE table_21091145_1 (black_knights_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponents FROM table_21091145_1 WHERE game = 5", "question": "Name the opponents for game 5", "context": "CREATE TABLE table_21091145_1 (opponents VARCHAR, game VARCHAR)"}, {"answer": "SELECT result FROM table_21091145_1 WHERE black_knights_points = 19", "question": "Name the result for 19 black knights points", "context": "CREATE TABLE table_21091145_1 (result VARCHAR, black_knights_points VARCHAR)"}, {"answer": "SELECT opponent FROM table_21091145_1 WHERE black_knights_points = 27", "question": "Name the opponent for black knights points 27", "context": "CREATE TABLE table_21091145_1 (opponent VARCHAR, black_knights_points VARCHAR)"}, {"answer": "SELECT date FROM table_21091157_1 WHERE game = 8", "question": "Name the date for game 8", "context": "CREATE TABLE table_21091157_1 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_21091157_1 WHERE record = \"1-0\"", "question": "Name the number of date for 1-0 record", "context": "CREATE TABLE table_21091157_1 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT game FROM table_21091157_1 WHERE record = \"1-0\"", "question": "Name the game for record 1-0", "context": "CREATE TABLE table_21091157_1 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_21091157_1", "question": "Name the most game", "context": "CREATE TABLE table_21091157_1 (game INTEGER)"}, {"answer": "SELECT MAX(game) FROM table_21091162_1 WHERE record = \"3-4-0\"", "question": "How many games have a record of 3-4-0?", "context": "CREATE TABLE table_21091162_1 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_21091162_1 WHERE opponent = \"Boston College\"", "question": "How many dates have boston college as the opponent?", "context": "CREATE TABLE table_21091162_1 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_21091162_1 WHERE opponent = \"Air Force\"", "question": "How many games have Air Force as the opponent?", "context": "CREATE TABLE table_21091162_1 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_21091162_1 WHERE black_knights_points = 17", "question": "How many records have black knights points as 17?", "context": "CREATE TABLE table_21091162_1 (record VARCHAR, black_knights_points VARCHAR)"}, {"answer": "SELECT opponent FROM table_21091127_1 WHERE record = \"6-2\"", "question": "Which opponent has a record of 6-2?", "context": "CREATE TABLE table_21091127_1 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_21091127_1 WHERE game = 5", "question": "How many results have a game of 5?", "context": "CREATE TABLE table_21091127_1 (result VARCHAR, game VARCHAR)"}, {"answer": "SELECT run_time FROM table_2108684_1 WHERE viewers__in_millions_ = \"7.9\"", "question": "What is the run time for the episode with 7.9 million viewers?", "context": "CREATE TABLE table_2108684_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT episode FROM table_2108684_1 WHERE run_time = \"23:38\"", "question": "What episode had a run time of 23:38?", "context": "CREATE TABLE table_2108684_1 (episode VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_2108684_1 WHERE run_time = \"25:22\"", "question": "How many million viewers watched the episode with a run time of 25:22?", "context": "CREATE TABLE table_2108684_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT date FROM table_21092444_1 WHERE result = \"Loss\" AND opponent = \"Duke\"", "question": "Name the date for result loss for duke", "context": "CREATE TABLE table_21092444_1 (date VARCHAR, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponents FROM table_21092444_1 WHERE record = \"2-1\"", "question": "Name the opponents for record of 2-1", "context": "CREATE TABLE table_21092444_1 (opponents VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_21092444_1 WHERE black_knights_points = 54", "question": "Name the record for black knights points 54", "context": "CREATE TABLE table_21092444_1 (record VARCHAR, black_knights_points VARCHAR)"}, {"answer": "SELECT opponents FROM table_21092444_1 WHERE opponent = \"Stanford\"", "question": "Name the opponents stanford", "context": "CREATE TABLE table_21092444_1 (opponents VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_21094951_1 WHERE opponent = \"Ursinus College\"", "question": "Name the result for ursinus college", "context": "CREATE TABLE table_21094951_1 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(black_knights_points) FROM table_21094951_1 WHERE result = \"Loss\"", "question": "Name the black knights points for loss result", "context": "CREATE TABLE table_21094951_1 (black_knights_points INTEGER, result VARCHAR)"}, {"answer": "SELECT date FROM table_21094951_1 WHERE record = \"6-2\"", "question": "Name the date for 6-2 record", "context": "CREATE TABLE table_21094951_1 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(opponents) FROM table_21094951_1 WHERE record = \"2-0\"", "question": "Name the opponents for record being 2-0", "context": "CREATE TABLE table_21094951_1 (opponents INTEGER, record VARCHAR)"}, {"answer": "SELECT innings FROM table_21100348_10 WHERE average = \"41.43\"", "question": "How man innings were there during the period with a career average of 41.43?", "context": "CREATE TABLE table_21100348_10 (innings VARCHAR, average VARCHAR)"}, {"answer": "SELECT period FROM table_21100348_10 WHERE player = \"Ricky Ponting\"", "question": "During what period did Ricky Ponting play?", "context": "CREATE TABLE table_21100348_10 (period VARCHAR, player VARCHAR)"}, {"answer": "SELECT period FROM table_21100348_10 WHERE average = \"44.10\"", "question": "During what period was the career average 44.10?", "context": "CREATE TABLE table_21100348_10 (period VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_21100348_10 WHERE player = \"Michael Bevan\"", "question": "What was the smallest numbered rank for Michael Bevan?", "context": "CREATE TABLE table_21100348_10 (rank INTEGER, player VARCHAR)"}, {"answer": "SELECT period FROM table_21100348_10 WHERE average = \"48.15\"", "question": "What period was there a career average of 48.15?", "context": "CREATE TABLE table_21100348_10 (period VARCHAR, average VARCHAR)"}, {"answer": "SELECT commodity FROM table_21109892_1 WHERE value__int_$1000_ = 409566", "question": "when the value (int $1000) is 409566, what is the commodity?", "context": "CREATE TABLE table_21109892_1 (commodity VARCHAR, value__int_$1000_ VARCHAR)"}, {"answer": "SELECT MIN(value__int_) AS $1000_ FROM table_21109892_1 WHERE value_world_rank = \"23\"", "question": "When the value rank is 23, what is the value?", "context": "CREATE TABLE table_21109892_1 (value__int_ INTEGER, value_world_rank VARCHAR)"}, {"answer": "SELECT rank FROM table_21109892_1 WHERE value_world_rank = \"7\"", "question": "When the value world rank is 7, what is the rank?", "context": "CREATE TABLE table_21109892_1 (rank VARCHAR, value_world_rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_21109892_1 WHERE production__mt_ = 650000", "question": "When the production (mt) is 650000, what is the total number of rank?", "context": "CREATE TABLE table_21109892_1 (rank VARCHAR, production__mt_ VARCHAR)"}, {"answer": "SELECT value_world_rank FROM table_21109892_1 WHERE production__mt_ = 446424", "question": "When the production (mt) is 446424, what is the value world rank ?", "context": "CREATE TABLE table_21109892_1 (value_world_rank VARCHAR, production__mt_ VARCHAR)"}, {"answer": "SELECT quantity_world_rank FROM table_21109892_1 WHERE value_world_rank = \"12\"", "question": "where value world rank is 12, what is the quantity world rank?", "context": "CREATE TABLE table_21109892_1 (quantity_world_rank VARCHAR, value_world_rank VARCHAR)"}, {"answer": "SELECT rank FROM table_21100348_15 WHERE player = \"Tim Paine\"", "question": "What is the rank of Tim Paine?", "context": "CREATE TABLE table_21100348_15 (rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_21100348_15 WHERE player = \"Rodney Marsh\"", "question": "What rank does Rodney Marsh have?", "context": "CREATE TABLE table_21100348_15 (rank INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_21100348_11 WHERE strike_rate = \"91.67\"", "question": "What is the rank for a strike rate of 91.67?", "context": "CREATE TABLE table_21100348_11 (rank INTEGER, strike_rate VARCHAR)"}, {"answer": "SELECT player FROM table_21100348_11 WHERE runs = 477", "question": "What player has 477 runs?", "context": "CREATE TABLE table_21100348_11 (player VARCHAR, runs VARCHAR)"}, {"answer": "SELECT MAX(innings) FROM table_21100348_11 WHERE rank = 3", "question": "How many innings does rank 3 have?", "context": "CREATE TABLE table_21100348_11 (innings INTEGER, rank VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_2110959_1 WHERE pct__percentage = \"0.604\"", "question": "What was the goals for in the season that the pct % was 0.604?", "context": "CREATE TABLE table_2110959_1 (goals_for INTEGER, pct__percentage VARCHAR)"}, {"answer": "SELECT season FROM table_2110959_1 WHERE pct__percentage = \"0.552\"", "question": "In what season was the pct % 0.552? ", "context": "CREATE TABLE table_2110959_1 (season VARCHAR, pct__percentage VARCHAR)"}, {"answer": "SELECT standing FROM table_2110959_1 WHERE pct__percentage = \"0.769\"", "question": "What was the standing in the season that the pct% was 0.769? ", "context": "CREATE TABLE table_2110959_1 (standing VARCHAR, pct__percentage VARCHAR)"}, {"answer": "SELECT points FROM table_2110959_1 WHERE season = \"1958-59\"", "question": "What were the points in the 1958-59 season? ", "context": "CREATE TABLE table_2110959_1 (points VARCHAR, season VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_2112025_3 WHERE year = 1968", "question": "Who were D\u00fcrr's opponents in the final on year 1968?", "context": "CREATE TABLE table_2112025_3 (opponents_in_the_final VARCHAR, year VARCHAR)"}, {"answer": "SELECT surface FROM table_2112025_3 WHERE year = 1971", "question": "What was the court surface on year 1971?", "context": "CREATE TABLE table_2112025_3 (surface VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(top_10s) FROM table_2112220_6 WHERE best_finish = \"2\"", "question": "Name  the most top 10s for 2 best finish", "context": "CREATE TABLE table_2112220_6 (top_10s INTEGER, best_finish VARCHAR)"}, {"answer": "SELECT MIN(tournaments_played) FROM table_2112220_6 WHERE year = 2004", "question": "Name the tournaments played for 2004", "context": "CREATE TABLE table_2112220_6 (tournaments_played INTEGER, year VARCHAR)"}, {"answer": "SELECT MAX(submissions_of_the_night) FROM table_21114902_1 WHERE fighter = \"Matt Wiman\"", "question": "How many submission of the night occurred when the fighter was matt wiman?", "context": "CREATE TABLE table_21114902_1 (submissions_of_the_night INTEGER, fighter VARCHAR)"}, {"answer": "SELECT knockouts_of_the_night FROM table_21114902_1 WHERE fighter = \"Joe Lauzon\"", "question": "How many knockout of the night occurred when joe lauzon fought. ", "context": "CREATE TABLE table_21114902_1 (knockouts_of_the_night VARCHAR, fighter VARCHAR)"}, {"answer": "SELECT MIN(episodes) FROM table_2113721_7", "question": "What is the smallest number of episodes in a season?", "context": "CREATE TABLE table_2113721_7 (episodes INTEGER)"}, {"answer": "SELECT region_2 FROM table_2113721_7 WHERE dvd_name = \"Season Three\"", "question": "When was Season Three premiered in region 2?", "context": "CREATE TABLE table_2113721_7 (region_2 VARCHAR, dvd_name VARCHAR)"}, {"answer": "SELECT location FROM table_2112260_1 WHERE specialization = \"Textile engineering\"", "question": "Where is every location with specialization of textile engineering?", "context": "CREATE TABLE table_2112260_1 (location VARCHAR, specialization VARCHAR)"}, {"answer": "SELECT website FROM table_2112260_1 WHERE specialization = \"Engineering\" AND division = \"Dhaka division\"", "question": "What is every website with specialization of engineering and division of dhaka division?", "context": "CREATE TABLE table_2112260_1 (website VARCHAR, specialization VARCHAR, division VARCHAR)"}, {"answer": "SELECT location FROM table_2112260_1 WHERE nick = \"BRU\"", "question": "Where is every location where Nick is Bru?", "context": "CREATE TABLE table_2112260_1 (location VARCHAR, nick VARCHAR)"}, {"answer": "SELECT specialization FROM table_2112260_1 WHERE website = \"jstu.edu.bd\"", "question": "What is every specialization with the website Jstu.edu.bd", "context": "CREATE TABLE table_2112260_1 (specialization VARCHAR, website VARCHAR)"}, {"answer": "SELECT languages FROM table_21133193_1 WHERE member_countries = \"Cyprus\"", "question": "Name the languages for cyprus", "context": "CREATE TABLE table_21133193_1 (languages VARCHAR, member_countries VARCHAR)"}, {"answer": "SELECT languages FROM table_21133193_1 WHERE member_countries = \"Estonia\"", "question": "Name the languages for estonia", "context": "CREATE TABLE table_21133193_1 (languages VARCHAR, member_countries VARCHAR)"}, {"answer": "SELECT MAX(gdp_per_capita__us) AS $_ FROM table_21133193_1 WHERE languages = \"Latvian\"", "question": "Name the most gdp per capita latvian", "context": "CREATE TABLE table_21133193_1 (gdp_per_capita__us INTEGER, languages VARCHAR)"}, {"answer": "SELECT archive FROM table_2112766_1 WHERE run_time = \"24:34\"", "question": "how many archive were when run time is 24:34", "context": "CREATE TABLE table_2112766_1 (archive VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT COUNT(broadcast_date) FROM table_2112766_1 WHERE viewers__in_millions_ = \"8.4\"", "question": "what is all the  broadcast date when viewers were 8.4 millions", "context": "CREATE TABLE table_2112766_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_2112766_1 WHERE viewers__in_millions_ = \"8.4\"", "question": "how many episode have 8.4 millions  viewer.", "context": "CREATE TABLE table_2112766_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_21146729_6 WHERE season__number = 8", "question": "What was the title in season #8?", "context": "CREATE TABLE table_21146729_6 (title VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT director FROM table_21146729_6 WHERE writer_s_ = \"John W. Bloch\"", "question": "Who was the director when the writer(s) was John W. Bloch?", "context": "CREATE TABLE table_21146729_6 (director VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_21146729_6 WHERE original_airdate = \"October 23, 1967\"", "question": "What was the series# with the original airdate of october 23, 1967?", "context": "CREATE TABLE table_21146729_6 (series__number INTEGER, original_airdate VARCHAR)"}, {"answer": "SELECT title FROM table_21146729_6 WHERE writer_s_ = \"Jack Turley\"", "question": "what is the title when the  writer(s) is jack turley?", "context": "CREATE TABLE table_21146729_6 (title VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_21146729_6 WHERE original_airdate = \"September 25, 1967\"", "question": "How  many of the  series # when the original airdate is september 25, 1967?", "context": "CREATE TABLE table_21146729_6 (series__number VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT episode FROM table_2114308_1 WHERE run_time = \"22:50\"", "question": "Name the episode for run time of 22:50", "context": "CREATE TABLE table_2114308_1 (episode VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_2114308_1 WHERE viewers__in_millions_ = \"6.9\"", "question": "Name the broadcast date of 6.9 million viewers", "context": "CREATE TABLE table_2114308_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_2114308_1 WHERE run_time = \"24:14\"", "question": "Name the broadcast date of run time being 24:14", "context": "CREATE TABLE table_2114308_1 (broadcast_date VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT archive FROM table_2114238_1 WHERE run_time = \"23:48\"", "question": "Which archive has a run time of 23:48?", "context": "CREATE TABLE table_2114238_1 (archive VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_2114238_1 WHERE viewers__in_millions_ = \"6.8\"", "question": "Which broadcast date has 6.8 million viewers?", "context": "CREATE TABLE table_2114238_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT model FROM table_21154679_1 WHERE max_power = \"PS (kW; bhp)@5400-6500\"", "question": "What Petrol engine has total power of ps (kw; bhp)@5400-6500?", "context": "CREATE TABLE table_21154679_1 (model VARCHAR, max_power VARCHAR)"}, {"answer": "SELECT top_speed FROM table_21154679_1 WHERE max_power = \"PS (kW; bhp)@5250-6250\"", "question": "What is top speed of a petrol engine at ps (kw; bhp)@5250-6250?", "context": "CREATE TABLE table_21154679_1 (top_speed VARCHAR, max_power VARCHAR)"}, {"answer": "SELECT top_speed FROM table_21154679_1 WHERE max_power = \"PS (kW; bhp)\"", "question": "What is the maximum speed for total power of ps (kw; bhp)?", "context": "CREATE TABLE table_21154679_1 (top_speed VARCHAR, max_power VARCHAR)"}, {"answer": "SELECT torque FROM table_21154679_1 WHERE model = \"S7 4.0 TFSI quattro\"", "question": "What is the s7 4.0 tfsi quattro engine torque?", "context": "CREATE TABLE table_21154679_1 (torque VARCHAR, model VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_21165255_1 WHERE production_code = 4300062", "question": "Name the number in season for 4300062", "context": "CREATE TABLE table_21165255_1 (no_in_season INTEGER, production_code VARCHAR)"}, {"answer": "SELECT COUNT(cancelled) FROM table_211615_2 WHERE station = \"Turnham Green\"", "question": "Name the number of cancelled for turnham green", "context": "CREATE TABLE table_211615_2 (cancelled VARCHAR, station VARCHAR)"}, {"answer": "SELECT COUNT(details) FROM table_211615_2 WHERE station = \"Emlyn Road\"", "question": "Name the number of details for emlyn road", "context": "CREATE TABLE table_211615_2 (details VARCHAR, station VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_21164557_1 WHERE directed_by = \"John Behring\"", "question": "What episode number in the series was directed by John Behring?", "context": "CREATE TABLE table_21164557_1 (no_in_series INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_21164557_1 WHERE production_code = 4398016", "question": "How many original air dates were there for episodes with a production code of 4398016?", "context": "CREATE TABLE table_21164557_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT rank FROM table_211714_2 WHERE viewers__in_millions_ = \"14.80\"", "question": "Name the rank for 14.80 viewers", "context": "CREATE TABLE table_211714_2 (rank VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_211714_2 WHERE season = 6", "question": "Name the number of rank for season 6", "context": "CREATE TABLE table_211714_2 (rank VARCHAR, season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_21172539_1 WHERE production_code = 4301085", "question": "What date did the episode with a production code of 4301085 originally air?", "context": "CREATE TABLE table_21172539_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_21172539_1 WHERE no_in_season = 15", "question": "What date did episode 15 of the season originally air?", "context": "CREATE TABLE table_21172539_1 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT remarks FROM table_211791_1 WHERE nato_reporting_name = \"SAWHOUSE\"", "question": "Name the remarks for sawhouse", "context": "CREATE TABLE table_211791_1 (remarks VARCHAR, nato_reporting_name VARCHAR)"}, {"answer": "SELECT nato_us_dod_code FROM table_211791_1 WHERE nato_reporting_name = \"SABBOT\"", "question": "Name the nato/ us dod code for sabbot", "context": "CREATE TABLE table_211791_1 (nato_us_dod_code VARCHAR, nato_reporting_name VARCHAR)"}, {"answer": "SELECT report FROM table_21191496_1 WHERE circuit = \"Autodromo Nazionale Monza\"", "question": "When autodromo nazionale monza is the circuit what is the report?", "context": "CREATE TABLE table_21191496_1 (report VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_21191496_1 WHERE pole_position = \"Michele Pirro\"", "question": "When michele pirro is the pole position what is the date?", "context": "CREATE TABLE table_21191496_1 (date VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT report FROM table_21191496_1 WHERE country = \"Netherlands\"", "question": "When Netherlands is the country what is the report? ", "context": "CREATE TABLE table_21191496_1 (report VARCHAR, country VARCHAR)"}, {"answer": "SELECT winning_team FROM table_21191496_1 WHERE circuit = \"circuit Ricardo Tormo\"", "question": "When circuit ricardo tormo is the circuit who is the winning team?", "context": "CREATE TABLE table_21191496_1 (winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_21191496_1 WHERE circuit = \"circuit Ricardo Tormo\"", "question": "When circuit ricardo tormo is the circuit what is the round?", "context": "CREATE TABLE table_21191496_1 (round VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_21197135_1 WHERE record = \"6-0\"", "question": "How many opponents were there when the record was 6-0?", "context": "CREATE TABLE table_21197135_1 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_21197135_1 WHERE record = \"6-0\"", "question": "How many opponents were there when the record was 6-0?", "context": "CREATE TABLE table_21197135_1 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_21197135_1 WHERE opponent = \"@ Utah\"", "question": "What was the team record when the team played @ Utah?", "context": "CREATE TABLE table_21197135_1 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT cowboys_points FROM table_21197135_1 WHERE record = \"7-0\"", "question": "How many points did the Cowboys have when they had a 7-0 record?", "context": "CREATE TABLE table_21197135_1 (cowboys_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT scoreboard FROM table_21234111_6 WHERE total = \"23.5\"", "question": "Name the scoreboard for total being 23.5", "context": "CREATE TABLE table_21234111_6 (scoreboard VARCHAR, total VARCHAR)"}, {"answer": "SELECT jason FROM table_21234111_6 WHERE public_vote__percentage = \"19.20%\"", "question": "Name the jason for public vote being 19.20%", "context": "CREATE TABLE table_21234111_6 (jason VARCHAR, public_vote__percentage VARCHAR)"}, {"answer": "SELECT COUNT(song) FROM table_21234111_6 WHERE scoreboard = \"3rd\"", "question": "Name the number of song for scoreboard being 3rd", "context": "CREATE TABLE table_21234111_6 (song VARCHAR, scoreboard VARCHAR)"}, {"answer": "SELECT opponent FROM table_21256068_3 WHERE venue = \"Halliwell Jones Stadium\" AND competition = \"Super League XIV\"", "question": "state the opponent on halliwell jones stadium in super league xiv", "context": "CREATE TABLE table_21256068_3 (opponent VARCHAR, venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT COUNT(venue) FROM table_21256068_3 WHERE round = \"1\"", "question": "how many venues were played on in round 1", "context": "CREATE TABLE table_21256068_3 (venue VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_21256068_3 WHERE score = \"50-10\"", "question": "state the round that had a game score 50-10", "context": "CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR)"}, {"answer": "SELECT round FROM table_21256068_3 WHERE attendance = 9359", "question": "state the round that had a game attended attended by 9359 people", "context": "CREATE TABLE table_21256068_3 (round VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_21256068_3 WHERE score = \"44-22\"", "question": "how many rounds had the score 44-22", "context": "CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_21256068_3 WHERE opponent = \"Crusaders\"", "question": "what's the score against crusaders", "context": "CREATE TABLE table_21256068_3 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(small__100ha_) FROM table_21249915_1 WHERE medium__500ha_ = 17101", "question": "How many Small catagories are there for the department that has a medium of 17101? ", "context": "CREATE TABLE table_21249915_1 (small__100ha_ VARCHAR, medium__500ha_ VARCHAR)"}, {"answer": "SELECT total FROM table_21249915_1 WHERE department = \"Chuquisaca\"", "question": "What is the total for Chuquisaca?", "context": "CREATE TABLE table_21249915_1 (total VARCHAR, department VARCHAR)"}, {"answer": "SELECT department FROM table_21249915_1 WHERE small__100ha_ = 11370", "question": "Which department has a small of 11370? ", "context": "CREATE TABLE table_21249915_1 (department VARCHAR, small__100ha_ VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_21249915_1 WHERE department = \"La Paz\"", "question": "How many total catagories are there for La Paz? ", "context": "CREATE TABLE table_21249915_1 (total VARCHAR, department VARCHAR)"}, {"answer": "SELECT to_par FROM table_2126093_3 WHERE tournament = \"Miyagi TV Cup Dunlop Ladies Open\"", "question": "How many points under par was the winner of the Miyagi TV Cup Dunlop Ladies Open?", "context": "CREATE TABLE table_2126093_3 (to_par VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_2126093_3 WHERE tournament = \"Vernal Ladies\"", "question": "What was the winning score of the Vernal Ladies tournament?", "context": "CREATE TABLE table_2126093_3 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT athlete FROM table_21276428_21 WHERE place = 3", "question": "Name the athlete for 3", "context": "CREATE TABLE table_21276428_21 (athlete VARCHAR, place VARCHAR)"}, {"answer": "SELECT result FROM table_21269143_1 WHERE round = \"13\"", "question": "Name the result for round 13", "context": "CREATE TABLE table_21269143_1 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT attendance FROM table_21269143_1 WHERE result = \"Loss\" AND opponent = \"Salford City Reds\"", "question": "Name the attendance for loss result and salford city reds", "context": "CREATE TABLE table_21269143_1 (attendance VARCHAR, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_21269143_1 WHERE round = \"26\"", "question": "Name the total number of date for round 26", "context": "CREATE TABLE table_21269143_1 (date VARCHAR, round VARCHAR)"}, {"answer": "SELECT attendance FROM table_21269143_1 WHERE round = \"23\"", "question": "Name the attendace for 23 round", "context": "CREATE TABLE table_21269143_1 (attendance VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_21269143_1 WHERE date = \"05/09/2009\"", "question": "Name the total number of opponets for  05/09/2009", "context": "CREATE TABLE table_21269143_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_21284653_1 WHERE population_density = \"200\"", "question": "What is the only city name with a population density of 200?", "context": "CREATE TABLE table_21284653_1 (name VARCHAR, population_density VARCHAR)"}, {"answer": "SELECT census_division FROM table_21284653_1 WHERE name = \"Stratford\"", "question": "What is the census division for the name Stratford?", "context": "CREATE TABLE table_21284653_1 (census_division VARCHAR, name VARCHAR)"}, {"answer": "SELECT change___percentage_ FROM table_21284653_1 WHERE area__km\u00b2_ = \"247.21\"", "question": "What is the change (%) when the area size (km2) is 247.21?", "context": "CREATE TABLE table_21284653_1 (change___percentage_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT municipal_status FROM table_21284653_1 WHERE population_density = \"895.5\"", "question": "What is the municipal status where the population density is 895.5?", "context": "CREATE TABLE table_21284653_1 (municipal_status VARCHAR, population_density VARCHAR)"}, {"answer": "SELECT census_division FROM table_21284653_1 WHERE name = \"Kenora\"", "question": "What is the census division for the city named Kenora?", "context": "CREATE TABLE table_21284653_1 (census_division VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(area___ha__) FROM table_21302_1 WHERE no_of_villages = 18", "question": "If there are 18 villages, what is the minimum area ?", "context": "CREATE TABLE table_21302_1 (area___ha__ INTEGER, no_of_villages VARCHAR)"}, {"answer": "SELECT former_name FROM table_21302_1 WHERE population__2005_ = 572", "question": "With the population in 2005 of 572, what is the former name?", "context": "CREATE TABLE table_21302_1 (former_name VARCHAR, population__2005_ VARCHAR)"}, {"answer": "SELECT COUNT(no_of_villages) FROM table_21302_1 WHERE density_persons___ha = \"5.5\"", "question": "How many villages have a density persons/ha of 5.5?", "context": "CREATE TABLE table_21302_1 (no_of_villages VARCHAR, density_persons___ha VARCHAR)"}, {"answer": "SELECT score FROM table_2127933_3 WHERE opponents = \"Irving Wright Hazel Hotchkiss Wightman\"", "question": "What were the scores for matches with irving wright hazel hotchkiss wightman?", "context": "CREATE TABLE table_2127933_3 (score VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_2127933_3 WHERE score = \"10\u201312, 6\u20131, 6\u20133\"", "question": "How many years had scores of 10\u201312, 6\u20131, 6\u20133?", "context": "CREATE TABLE table_2127933_3 (year VARCHAR, score VARCHAR)"}, {"answer": "SELECT partner FROM table_2127933_3 WHERE opponents = \"Harry Johnson Hazel Hotchkiss Wightman\"", "question": "Who were the partners during times that harry johnson hazel hotchkiss wightman was the opponent?", "context": "CREATE TABLE table_2127933_3 (partner VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT outcome FROM table_2127933_3 WHERE opponents = \"Bill Tilden Florence Ballin\"", "question": "What were the outcomes of matches with bill tilden florence ballin as opponents?", "context": "CREATE TABLE table_2127933_3 (outcome VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_2127933_3", "question": "What is the earliest year?", "context": "CREATE TABLE table_2127933_3 (year INTEGER)"}, {"answer": "SELECT survivor_count FROM table_21304131_2 WHERE directed_by = \"Gwyneth Horder-Payton\"", "question": "What was the survivor count for the episode directed by Gwyneth Horder-Payton?", "context": "CREATE TABLE table_21304131_2 (survivor_count VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_21304131_2 WHERE no_in_series = 65", "question": "When did series number 65 originally air?", "context": "CREATE TABLE table_21304131_2 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT production_code FROM table_21304155_1 WHERE directed_by = \"David Solomon\"", "question": "What is the production code of the episode directed by David Solomon? ", "context": "CREATE TABLE table_21304155_1 (production_code VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_21304155_1 WHERE production_code = \"BN103\"", "question": "Who wrote the episode with the production code of BN103? ", "context": "CREATE TABLE table_21304155_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_21304155_1 WHERE us_viewers__millions_ = \"4.08\"", "question": "What was the original air date of the episode that had 4.08 million U.S. viewers? ", "context": "CREATE TABLE table_21304155_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__table_31_technology_and_soviet_energy_availability___november_1981___ntis_order__numberpb82_133455__for_ignalina_4_ FROM table_213088_1 WHERE net_capacity__mw_ = 950", "question": "List all the locations where net capacity is 950?", "context": "CREATE TABLE table_213088_1 (location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__table_31_technology_and_soviet_energy_availability___november_1981___ntis_order__numberpb82_133455__for_ignalina_4_ VARCHAR, net_capacity__mw_ VARCHAR)"}, {"answer": "SELECT location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__table_31_technology_and_soviet_energy_availability___november_1981___ntis_order__numberpb82_133455__for_ignalina_4_ FROM table_213088_1 WHERE reactor_type = \"RBMK-1000\"", "question": "List all the locations with a RBMK-1000 reactor.", "context": "CREATE TABLE table_213088_1 (location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__table_31_technology_and_soviet_energy_availability___november_1981___ntis_order__numberpb82_133455__for_ignalina_4_ VARCHAR, reactor_type VARCHAR)"}, {"answer": "SELECT MIN(gross_capacity__mw_) FROM table_213088_1 WHERE net_capacity__mw_ = 1380", "question": "What is the gross capacity where the net capacity is 1380?", "context": "CREATE TABLE table_213088_1 (gross_capacity__mw_ INTEGER, net_capacity__mw_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_21313498_1 WHERE us_viewers__millions_ = \"3.3\" AND written_by = \"Rob Wright\"", "question": "when was the premiere when a 3.3 millions of North American watched the episode whose writer was Rob Wright?", "context": "CREATE TABLE table_21313498_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_21313498_1 WHERE production_code = \"62015-08-162\"", "question": "what is the name of the episode which the production code is 62015-08-162", "context": "CREATE TABLE table_21313498_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_21313498_1 WHERE no_in_season = 11", "question": "in the number of episode in season is 11, who was the writer?", "context": "CREATE TABLE table_21313498_1 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_21312959_1 WHERE us_viewers__millions_ = \"5.0\"", "question": "How many episodes had the us viewers (millions) figure of 5.0?", "context": "CREATE TABLE table_21312959_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_21312959_1 WHERE no_in_series = 129", "question": "Who are the writers for the episode number in series 129?", "context": "CREATE TABLE table_21312959_1 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_21312845_1 WHERE directed_by = \"Chris Long\"", "question": "What is the latest episode in the season directed by Chris Long?", "context": "CREATE TABLE table_21312845_1 (no_in_season INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_21312845_1 WHERE directed_by = \"David Straiton\"", "question": "Who wrote the episodes directed by David Straiton?", "context": "CREATE TABLE table_21312845_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_21312845_1 WHERE production_code > 4301103.585233785 AND written_by = \"Curtis Kheel\"", "question": "Who directed the episode with a production code greater than 4301103.585233785 that was written by Curtis Kheel?", "context": "CREATE TABLE table_21312845_1 (directed_by VARCHAR, production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_21311525_1 WHERE date = \"19/06/2009\"", "question": "How many results were there on 19/06/2009?", "context": "CREATE TABLE table_21311525_1 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_21311525_1 WHERE date = \"19/06/2009\"", "question": "What is the round number for the date 19/06/2009?", "context": "CREATE TABLE table_21311525_1 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_21311525_1 WHERE venue = \"Stade de la M\u00e9diterran\u00e9e\"", "question": "What is the round number for the venue of Stade de la M\u00e9diterran\u00e9e?", "context": "CREATE TABLE table_21311525_1 (round VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_21311525_1 WHERE date = \"17/07/2009\"", "question": "What was the score when the date was 17/07/2009?", "context": "CREATE TABLE table_21311525_1 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT position FROM table_21321804_5 WHERE player = \"Marc Parenteau\"", "question": "What is Marc Parenteau's position? ", "context": "CREATE TABLE table_21321804_5 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_21321804_5 WHERE college = \"McGill\"", "question": "What is the smallest pick number for McGill?", "context": "CREATE TABLE table_21321804_5 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT college FROM table_21321804_5 WHERE player = \"Derik Fury\"", "question": "Derik Fury plays for which college? ", "context": "CREATE TABLE table_21321804_5 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(college) FROM table_21321804_5 WHERE player = \"David Kasouf\"", "question": "David Kasouf plays for how many colleges? ", "context": "CREATE TABLE table_21321804_5 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_21321804_5 WHERE cfl_team = \"Hamilton Tiger-Cats\"", "question": "What position was drafted by the Hamilton Tiger-Cats? ", "context": "CREATE TABLE table_21321804_5 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_21321935_2 WHERE fastest_lap = \"Jamie Green\"", "question": "Who won when Jamie Green had the best lap?", "context": "CREATE TABLE table_21321935_2 (winning_driver VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_21321935_2 WHERE circuit = \"Motorsport Arena Oschersleben\"", "question": "Who had the fasted lap in motorsport arena oschersleben?", "context": "CREATE TABLE table_21321935_2 (fastest_lap VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_21321935_2 WHERE pole_position = \"Oliver Jarvis\"", "question": "When did Oliver Jarvis have pole position?", "context": "CREATE TABLE table_21321935_2 (date VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT college FROM table_21321804_3 WHERE cfl_team = \"Hamilton Tiger-Cats\"", "question": "What college did the player for the Hamilton Tiger-Cats go to? ", "context": "CREATE TABLE table_21321804_3 (college VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_21321804_3 WHERE position = \"DT\"", "question": "How many players are at the DT position? ", "context": "CREATE TABLE table_21321804_3 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_21321804_3 WHERE college = \"Nebraska\"", "question": "What team does the player who went to Nebraska play for? ", "context": "CREATE TABLE table_21321804_3 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_21321804_3", "question": "What is the highest number any of the players were picked at? ", "context": "CREATE TABLE table_21321804_3 (pick__number INTEGER)"}, {"answer": "SELECT player FROM table_21321804_3 WHERE cfl_team = \"Winnipeg Blue Bombers\"", "question": "Which player plays for the Winnipeg Blue Bombers? ", "context": "CREATE TABLE table_21321804_3 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_21321804_1 WHERE player = \"Wes Lysack\"", "question": "What is the pick # for player wes lysack?", "context": "CREATE TABLE table_21321804_1 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(cfl_team) FROM table_21321804_1 WHERE pick__number = 5", "question": "How many clf teams have a pick # of 5?", "context": "CREATE TABLE table_21321804_1 (cfl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_21321804_1 WHERE college = \"Utah\"", "question": "How many total positions are there for utah college?", "context": "CREATE TABLE table_21321804_1 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_21321804_1 WHERE college = \"Manitoba\"", "question": "Which cfl team is manitoba college?", "context": "CREATE TABLE table_21321804_1 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_21321804_1 WHERE cfl_team = \"Edmonton Eskimos\" AND college = \"Weber State\"", "question": "Which position is cfl team edmonton eskimos for weber state college?", "context": "CREATE TABLE table_21321804_1 (position VARCHAR, cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_21321804_1 WHERE player = \"Wes Lysack\"", "question": "What is the pick # for player wes lysack?", "context": "CREATE TABLE table_21321804_1 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(length) FROM table_21326205_2 WHERE time = \"14:33.9\"", "question": "How many stages of the rally took 14:33.9 for the leader to finish?", "context": "CREATE TABLE table_21326205_2 (length VARCHAR, time VARCHAR)"}, {"answer": "SELECT stage FROM table_21326205_2 WHERE rally_leader = \"S\u00e9bastien Loeb\" AND name = \"Tempo 2\"", "question": "In which special stage named Tempo 2 was S\u00e9bastien Loeb the leader?", "context": "CREATE TABLE table_21326205_2 (stage VARCHAR, rally_leader VARCHAR, name VARCHAR)"}, {"answer": "SELECT winner FROM table_21326205_2 WHERE time__gmt_ = \"18:54\"", "question": "Which ralliers won the stages that were at 18:54 GMT?", "context": "CREATE TABLE table_21326205_2 (winner VARCHAR, time__gmt_ VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_21330550_2 WHERE big_ten_team = \"#12 Michigan State\"", "question": "How many locations have #12 Michigan State as the big ten team?", "context": "CREATE TABLE table_21330550_2 (location VARCHAR, big_ten_team VARCHAR)"}, {"answer": "SELECT winner FROM table_21330550_2 WHERE challenge_leader = \"BigTen (2-1)\"", "question": "Who is the winner when bigten (2-1) is the challenge leader?", "context": "CREATE TABLE table_21330550_2 (winner VARCHAR, challenge_leader VARCHAR)"}, {"answer": "SELECT winner FROM table_21330550_2 WHERE location = \"LJVM Coliseum \u2022 Winston-Salem, NC\"", "question": "Who is the winner in the location of ljvm coliseum \u2022 winston-salem, nc?", "context": "CREATE TABLE table_21330550_2 (winner VARCHAR, location VARCHAR)"}, {"answer": "SELECT time FROM table_21330550_2 WHERE acc_team = \"#17 Wake Forest\"", "question": "What time was the acc team #17 wake forest?", "context": "CREATE TABLE table_21330550_2 (time VARCHAR, acc_team VARCHAR)"}, {"answer": "SELECT location FROM table_21330550_2 WHERE time = \"9:30PM\"", "question": "Which location has a time of 9:30pm?", "context": "CREATE TABLE table_21330550_2 (location VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_21330550_2 WHERE big_ten_team = \"#10 Purdue\"", "question": "How many dates have a big ten team of #10 purdue?", "context": "CREATE TABLE table_21330550_2 (date VARCHAR, big_ten_team VARCHAR)"}, {"answer": "SELECT contestant FROM table_21346767_3 WHERE hometown = \"Villa Hermosa\"", "question": "Name the contestant for villa hermosa", "context": "CREATE TABLE table_21346767_3 (contestant VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT MIN(age) FROM table_21346767_3 WHERE geographical_regions = \"Cibao Central\" AND hometown = \"Santo Domingo\"", "question": "Name the least age for cibao central and santo domingo", "context": "CREATE TABLE table_21346767_3 (age INTEGER, geographical_regions VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(pop__2001_) FROM table_2134521_1 WHERE pop__1996_ = 880859", "question": "How many different results of the population count in 2001 are there for the census division whose population in 1996 is 880859?", "context": "CREATE TABLE table_2134521_1 (pop__2001_ VARCHAR, pop__1996_ VARCHAR)"}, {"answer": "SELECT pop__1996_ FROM table_2134521_1 WHERE area__km\u00b2_ = \"15767.99\"", "question": "How many people lived in the census division with an area of 15767.99 km2 in 1996?", "context": "CREATE TABLE table_2134521_1 (pop__1996_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT MAX(pop__2006_) FROM table_2134521_1", "question": "What is the largest population count in any of the census divisions in 2006?", "context": "CREATE TABLE table_2134521_1 (pop__2006_ INTEGER)"}, {"answer": "SELECT pop__1996_ FROM table_2134521_1 WHERE area__km\u00b2_ = \"9909.31\"", "question": "How many people lived in the census division spread out on 9909.31 km2 in 1996?", "context": "CREATE TABLE table_2134521_1 (pop__1996_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT result FROM table_21350934_2 WHERE round = \"QF\"", "question": "What is the result of the qf round?", "context": "CREATE TABLE table_21350934_2 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT venue FROM table_21350934_2 WHERE opponent = \"Bradford Bulls\" AND date = \"06/09/2009\"", "question": "Which venue has bradford bulls as the opponent on the date of 06/09/2009?", "context": "CREATE TABLE table_21350934_2 (venue VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_21350934_2 WHERE attendance = \"N/A\"", "question": "Who is the opponent when the attendance is n/a?", "context": "CREATE TABLE table_21350934_2 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT venue FROM table_21350934_2 WHERE score = \"34-18\"", "question": "What is the venue that has 34-18 as the score?", "context": "CREATE TABLE table_21350934_2 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_21350934_2 WHERE attendance = \"14,381\"", "question": "How many results have 14,381 as the attendance?", "context": "CREATE TABLE table_21350934_2 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT round FROM table_21350934_2 WHERE attendance = \"6,150\"", "question": "How many rounds have 6,150 as attendance?", "context": "CREATE TABLE table_21350934_2 (round VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_21378160_2 WHERE date = \"17/05/2009\"", "question": "How many opponents did they play on 17/05/2009?", "context": "CREATE TABLE table_21378160_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_21378160_2 WHERE round = \"3\"", "question": "What was the score of round 3?", "context": "CREATE TABLE table_21378160_2 (score VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(artist) FROM table_21378339_5 WHERE televote_points = 7", "question": "Name the artist for 7 points", "context": "CREATE TABLE table_21378339_5 (artist VARCHAR, televote_points VARCHAR)"}, {"answer": "SELECT COUNT(artist) FROM table_21378339_5 WHERE panel_points = 5", "question": "Name the number of artists for panel points being 5", "context": "CREATE TABLE table_21378339_5 (artist VARCHAR, panel_points VARCHAR)"}, {"answer": "SELECT COUNT(televote_points) FROM table_21378339_5 WHERE song = \"Cry on my shoulders\"", "question": "Name the total number of televote points for cry on my shoulders", "context": "CREATE TABLE table_21378339_5 (televote_points VARCHAR, song VARCHAR)"}, {"answer": "SELECT score FROM table_21378339_5 WHERE artist = \"Rebeka Dremelj\"", "question": "Name the score for rebeka dremelj", "context": "CREATE TABLE table_21378339_5 (score VARCHAR, artist VARCHAR)"}, {"answer": "SELECT artist FROM table_21378339_5 WHERE televotes = 1595", "question": "Name the artist for 1595 televotes", "context": "CREATE TABLE table_21378339_5 (artist VARCHAR, televotes VARCHAR)"}, {"answer": "SELECT outcome FROM table_2139023_2 WHERE surface = \"Grass\" AND year = 1955", "question": "What was the result of the match on grass in 1955?", "context": "CREATE TABLE table_2139023_2 (outcome VARCHAR, surface VARCHAR, year VARCHAR)"}, {"answer": "SELECT outcome FROM table_2139023_2 WHERE championship = \"Australian championships\"", "question": "What was the result of the Australian Championships?", "context": "CREATE TABLE table_2139023_2 (outcome VARCHAR, championship VARCHAR)"}, {"answer": "SELECT COUNT(external_link) FROM table_2140071_13 WHERE coach = \"Katie Kansas\"", "question": "What is the number of external links with a coach named Katie Kansas?", "context": "CREATE TABLE table_2140071_13 (external_link VARCHAR, coach VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_2140071_13", "question": "What is the minimum number of seasons?", "context": "CREATE TABLE table_2140071_13 (season INTEGER)"}, {"answer": "SELECT episode AS Summary FROM table_2140071_13 WHERE episode = 5", "question": "What is the episode summary for episode 5?", "context": "CREATE TABLE table_2140071_13 (episode VARCHAR)"}, {"answer": "SELECT episode AS Summary FROM table_2140071_13 WHERE coach = \"Rebecca Star\"", "question": "What is the summary for the episode with a coach named Rebecca Star?", "context": "CREATE TABLE table_2140071_13 (episode VARCHAR, coach VARCHAR)"}, {"answer": "SELECT episode FROM table_2140071_10 WHERE coach = \"Maritza Reveron\"", "question": "Name the episode with maritza reveron", "context": "CREATE TABLE table_2140071_10 (episode VARCHAR, coach VARCHAR)"}, {"answer": "SELECT season FROM table_2140071_10 WHERE premier_date = \"August 16, 2010\"", "question": "Name the season for august 16, 2010", "context": "CREATE TABLE table_2140071_10 (season VARCHAR, premier_date VARCHAR)"}, {"answer": "SELECT COUNT(episode) AS Summary FROM table_2140071_10 WHERE coach = \"Jesse Csincsak\"", "question": "Name the number of episode summary for jesse csincsak", "context": "CREATE TABLE table_2140071_10 (episode VARCHAR, coach VARCHAR)"}, {"answer": "SELECT coach FROM table_2140071_10 WHERE premier_date = \"May 20, 2010\"", "question": "Name the coach for may 20, 2010", "context": "CREATE TABLE table_2140071_10 (coach VARCHAR, premier_date VARCHAR)"}, {"answer": "SELECT team FROM table_2139390_2 WHERE date = \"June 20\"", "question": "Name the team for june 20", "context": "CREATE TABLE table_2139390_2 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT race_time FROM table_2139390_2 WHERE year = 2002", "question": "Name the race time for 2002", "context": "CREATE TABLE table_2139390_2 (race_time VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_2140071_5 WHERE premier_date = \"January 6, 2005\"", "question": "How many seasons have a premier date of January 6, 2005? ", "context": "CREATE TABLE table_2140071_5 (season VARCHAR, premier_date VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_2140071_5", "question": "What is the last season? ", "context": "CREATE TABLE table_2140071_5 (season INTEGER)"}, {"answer": "SELECT premier_date FROM table_2140071_5 WHERE coach = \"John O'Connell\"", "question": "What date did the episode, with John O'Connell as the coach, premier? ", "context": "CREATE TABLE table_2140071_5 (premier_date VARCHAR, coach VARCHAR)"}, {"answer": "SELECT result_games FROM table_21436373_11 WHERE type_of_record = \"Total attendance-Regular season\"", "question": "Name the result for total attendance-regular season", "context": "CREATE TABLE table_21436373_11 (result_games VARCHAR, type_of_record VARCHAR)"}, {"answer": "SELECT result_games FROM table_21436373_11 WHERE attendance = 52521", "question": "Name the result/games for 52521", "context": "CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result_games FROM table_21436373_11 WHERE attendance = 54530", "question": "Name the result/games for 54530", "context": "CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT stadium FROM table_21436373_11 WHERE type_of_record = \"Regular season game\"", "question": "Name the stadium for regular season game", "context": "CREATE TABLE table_21436373_11 (stadium VARCHAR, type_of_record VARCHAR)"}, {"answer": "SELECT result_games FROM table_21436373_11 WHERE attendance = 54741", "question": "Name the result/games for 54741", "context": "CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_21434618_1 WHERE team__number2 = \"Ilisiakos\"", "question": "give the 1st leg score against ilisiakos", "context": "CREATE TABLE table_21434618_1 (team__number2 VARCHAR)"}, {"answer": "SELECT team__number1 FROM table_21434618_1 WHERE team__number2 = \"Chalkida\"", "question": "which team #1 played again chalkida", "context": "CREATE TABLE table_21434618_1 (team__number1 VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_21434618_1 WHERE team__number1 = \"Poseidon Neoi Porroi\"", "question": "which team#2 played against poseidon neoi porroi", "context": "CREATE TABLE table_21434618_1 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT date_year FROM table_21436373_10 WHERE type_of_record = \"Pre-season game\"", "question": "When was the pre-season game record achieved?", "context": "CREATE TABLE table_21436373_10 (date_year VARCHAR, type_of_record VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_21436373_10", "question": "What is the maximal number of people that attended any of these games?", "context": "CREATE TABLE table_21436373_10 (attendance INTEGER)"}, {"answer": "SELECT attendance FROM table_21436373_12 WHERE date_year = \"2011\"", "question": "what is the attendance in 2011 records", "context": "CREATE TABLE table_21436373_12 (attendance VARCHAR, date_year VARCHAR)"}, {"answer": "SELECT type_of_record FROM table_21436373_12 WHERE result_games = \"10 games (29,606 avg.)\"", "question": "what type of record was made where result/games is 10 games (29,606 avg.)", "context": "CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR)"}, {"answer": "SELECT stadium FROM table_21436373_12 WHERE type_of_record = \"Total attendance-Regular season\"", "question": "where was the total attendance-regular season record made", "context": "CREATE TABLE table_21436373_12 (stadium VARCHAR, type_of_record VARCHAR)"}, {"answer": "SELECT stadium FROM table_21436373_12 WHERE date_year = \"Sun 09/12/93\"", "question": "where was sun 09/12/93 record made", "context": "CREATE TABLE table_21436373_12 (stadium VARCHAR, date_year VARCHAR)"}, {"answer": "SELECT COUNT(type_of_record) FROM table_21436373_12 WHERE result_games = \"10 games (29,606 avg.)\"", "question": "how many records had result/games: 10 games (29,606 avg.)", "context": "CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_21436373_12 WHERE type_of_record = \"Total attendance-Regular season\"", "question": "what is the highest attendance for a total attendance-regular season record", "context": "CREATE TABLE table_21436373_12 (attendance INTEGER, type_of_record VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_21436373_7 WHERE date_year = \"2005\"", "question": "When 2005 is the date/year how many measurements of attendance are there?", "context": "CREATE TABLE table_21436373_7 (attendance VARCHAR, date_year VARCHAR)"}, {"answer": "SELECT result_games FROM table_21436373_7 WHERE attendance = 27585", "question": "When 27585 is the attendance what are the results of the games?", "context": "CREATE TABLE table_21436373_7 (result_games VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date_year FROM table_21436373_7 WHERE result_games = \"9 games (28,002 avg.)\"", "question": "When  9 games (28,002 avg.) is the results of the games what is the date/year?", "context": "CREATE TABLE table_21436373_7 (date_year VARCHAR, result_games VARCHAR)"}, {"answer": "SELECT stadium FROM table_21436373_7 WHERE attendance = 255627", "question": "When 255627 is the attendance what is the stadium?", "context": "CREATE TABLE table_21436373_7 (stadium VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT type_of_record FROM table_21436373_8 WHERE date_year = \"Tue 11/02/75\"", "question": "What record was set on Tue 11/02/75?", "context": "CREATE TABLE table_21436373_8 (type_of_record VARCHAR, date_year VARCHAR)"}, {"answer": "SELECT type_of_record FROM table_21436373_8 WHERE result_games = \"9 games (28,595 avg.)\"", "question": "What record was set when the result/game was equal to 9 games (28,595 avg.)", "context": "CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR)"}, {"answer": "SELECT type_of_record FROM table_21436373_8 WHERE result_games = \"Montreal 20 @ Ottawa 10\"", "question": "What record was set when the result/game was montreal 20 @ ottawa 10?", "context": "CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR)"}, {"answer": "SELECT stadium FROM table_21436373_8 WHERE result_games = \"Montreal 20 @ Ottawa 10\"", "question": "Which stadium had the result/game montreal 20 @ ottawa 10?", "context": "CREATE TABLE table_21436373_8 (stadium VARCHAR, result_games VARCHAR)"}, {"answer": "SELECT date_year FROM table_21436373_5 WHERE type_of_record = \"Total attendance-Regular season\"", "question": "For what year is the type of record 'total attendance-regular season?", "context": "CREATE TABLE table_21436373_5 (date_year VARCHAR, type_of_record VARCHAR)"}, {"answer": "SELECT type_of_record FROM table_21436373_5 WHERE result_games = \"Montreal 31 @ Calgary 32\"", "question": "What type of record is the result of the game Montreal 31 @ Calgary 32?", "context": "CREATE TABLE table_21436373_5 (type_of_record VARCHAR, result_games VARCHAR)"}, {"answer": "SELECT date_year FROM table_21436373_5 WHERE attendance = 45010", "question": "On what date/s has attendance been 45010?", "context": "CREATE TABLE table_21436373_5 (date_year VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_21436373_6 WHERE type_of_record = \"Pre-season game\"", "question": "What is the number of attendance with the pre-season game as the type of record?", "context": "CREATE TABLE table_21436373_6 (attendance VARCHAR, type_of_record VARCHAR)"}, {"answer": "SELECT type_of_record FROM table_21436373_6 WHERE result_games = \"9 games (57,144 avg.)\"", "question": "Which type of record has result/games of 9 games (57,144 avg.)", "context": "CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR)"}, {"answer": "SELECT result_games FROM table_21436373_6 WHERE date_year = \"Sun 11/28/10\"", "question": "What is the result/games of Sun 11/28/10 as the date/year?", "context": "CREATE TABLE table_21436373_6 (result_games VARCHAR, date_year VARCHAR)"}, {"answer": "SELECT stadium FROM table_21436373_6 WHERE date_year = \"Fri 06/25/82\"", "question": "Which stadium has the date/year of Fri 06/25/82?", "context": "CREATE TABLE table_21436373_6 (stadium VARCHAR, date_year VARCHAR)"}, {"answer": "SELECT type_of_record FROM table_21436373_6 WHERE result_games = \"B.C. 16 @ Edmonton 22\"", "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 MIN(population__2000_) FROM table_2144436_1 WHERE barangay = \"Panlicsian\"", "question": "What was the populati in 2000 for Panlicsian? ", "context": "CREATE TABLE table_2144436_1 (population__2000_ INTEGER, barangay VARCHAR)"}, {"answer": "SELECT MAX(population__2010_) FROM table_2144436_1 WHERE barangay = \"Minane\"", "question": "What was the population in 2010 for Minane", "context": "CREATE TABLE table_2144436_1 (population__2010_ INTEGER, barangay VARCHAR)"}, {"answer": "SELECT population__2007_ FROM table_2144436_1 WHERE barangay = \"Corazon De Jesus\"", "question": "What is the 2007 population for Corazon de Jesus? ", "context": "CREATE TABLE table_2144436_1 (population__2007_ VARCHAR, barangay VARCHAR)"}, {"answer": "SELECT MAX(population__2010_) FROM table_2144436_1 WHERE population__2000_ = 5720", "question": "What is the 2010 population when the 2000 population is 5720? ", "context": "CREATE TABLE table_2144436_1 (population__2010_ INTEGER, population__2000_ VARCHAR)"}, {"answer": "SELECT r\u014dmaji FROM table_2144389_8 WHERE japanese_translation = \"By Your Side ~Hikari's Theme~ (PopUp.Version)\"", "question": "Name the romaji by your side ~hikari's theme~ (popup.version)", "context": "CREATE TABLE table_2144389_8 (r\u014dmaji VARCHAR, japanese_translation VARCHAR)"}, {"answer": "SELECT vocalist FROM table_2144389_8 WHERE r\u014dmaji = \"Kaze no Mess\u0113ji (PokaPoka-Version)\"", "question": "Name the vocalist for kaze no mess\u0113ji (pokapoka-version)", "context": "CREATE TABLE table_2144389_8 (vocalist VARCHAR, r\u014dmaji VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_2144389_8 WHERE japanese_title = \"\u541b\u306e\u305d\u3070\u3067\uff5e\u30d2\u30ab\u30ea\u306e\u30c6\u30fc\u30de\uff5e(PopUp.Version)\"", "question": "Name the least number for  \u541b\u306e\u305d\u3070\u3067\uff5e\u30d2\u30ab\u30ea\u306e\u30c6\u30fc\u30de\uff5e(popup.version)", "context": "CREATE TABLE table_2144389_8 (_number INTEGER, japanese_title VARCHAR)"}, {"answer": "SELECT COUNT(vocalist) FROM table_2144389_8 WHERE japanese_translation = \"Which One ~ Is It?\"", "question": "Name the number of vocalists for  which one ~ is it?", "context": "CREATE TABLE table_2144389_8 (vocalist VARCHAR, japanese_translation VARCHAR)"}, {"answer": "SELECT to_par FROM table_21469545_2 WHERE date = \"20 Feb 2005\"", "question": "Name the to par for 20 feb 2005", "context": "CREATE TABLE table_21469545_2 (to_par VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_21469545_2 WHERE margin_of_victory = \"3 strokes\"", "question": "Name the number for margin of victory being 3 strokes", "context": "CREATE TABLE table_21469545_2 (no VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT COUNT(winning_score) FROM table_21469545_2 WHERE date = \"8 Feb 2009\"", "question": "Name the winning score for 8 feb 2009", "context": "CREATE TABLE table_21469545_2 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT publisher FROM table_21458142_1 WHERE genre = \"Pet-raising simulator\"", "question": "Who published the title in the pet-raising simulator genre?", "context": "CREATE TABLE table_21458142_1 (publisher VARCHAR, genre VARCHAR)"}, {"answer": "SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = \"Nintendo\" AND title = \"Mario Kart DS\"", "question": "What's the sales breakdown for Nintendo's Mario Kart DS?", "context": "CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, title VARCHAR)"}, {"answer": "SELECT total_copies_sold FROM table_21458142_1 WHERE release_date = \"October 23, 2008\"", "question": "How many copies were sold of the game released on october 23, 2008?", "context": "CREATE TABLE table_21458142_1 (total_copies_sold VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = \"Nintendo\" AND release_date = \"May 15, 2006\"", "question": "What's the sales breakdown of the Nintendo game released on May 15, 2006?", "context": "CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT MAX(races) FROM table_21457754_2", "question": "Name the most races", "context": "CREATE TABLE table_21457754_2 (races INTEGER)"}, {"answer": "SELECT MAX(rr1_pts) FROM table_21457754_2", "question": "Name the most rr 1 pts", "context": "CREATE TABLE table_21457754_2 (rr1_pts INTEGER)"}, {"answer": "SELECT COUNT(total_pts) FROM table_21457754_2 WHERE team_name = \"GBR Challenge\"", "question": "Name the number of total pts for gbr challenge", "context": "CREATE TABLE table_21457754_2 (total_pts VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT COUNT(second_place) FROM table_2146364_2 WHERE city_ & _nation = \"Chicago, USA\"", "question": "What is the total number of second place finishes when the city & nation was Chicago, USA?", "context": "CREATE TABLE table_2146364_2 (second_place VARCHAR, city_ VARCHAR, _nation VARCHAR)"}, {"answer": "SELECT MIN(third_place) FROM table_2146364_2 WHERE city_ & _nation = \"Vancouver, Canada\"", "question": "What is the total number of third place finishes when the city & nation was Vancouver, Canada?", "context": "CREATE TABLE table_2146364_2 (third_place INTEGER, city_ VARCHAR, _nation VARCHAR)"}, {"answer": "SELECT MIN(third_place) FROM table_2146364_2", "question": "What is the smallest third place finish?", "context": "CREATE TABLE table_2146364_2 (third_place INTEGER)"}, {"answer": "SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = \"March 9, 1865\"", "question": "What change caused a change of staff in March 9, 1865?", "context": "CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT successor FROM table_2147588_3 WHERE vacator = \"New seat\"", "question": "Who was the successor for the new seat?", "context": "CREATE TABLE table_2147588_3 (successor VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = \"March 15, 1865\"", "question": "What was the reason for change in staff in formal installations on March 15, 1865?", "context": "CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT vacator FROM table_2147588_4 WHERE successor = \"Nathaniel G. Taylor (U)\"", "question": "When nathaniel g. taylor (u) is the successor what is the vacator?", "context": "CREATE TABLE table_2147588_4 (vacator VARCHAR, successor VARCHAR)"}, {"answer": "SELECT district FROM table_2147588_4 WHERE successor = \"William B. Campbell (U)\"", "question": "When william b. campbell (u) is the successor what is the district?", "context": "CREATE TABLE table_2147588_4 (district VARCHAR, successor VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_2147588_4 WHERE vacator = \"James Brooks (D)\"", "question": "When james brooks (d) is the vacator what is the date the successor was seated?", "context": "CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_2147588_4 WHERE successor = \"John W. Leftwich (UU)\"", "question": "When john w. leftwich (uu) is the successor what is the date the successor was seated?", "context": "CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, successor VARCHAR)"}, {"answer": "SELECT successor FROM table_2147588_4 WHERE district = \"New York 8th\"", "question": "When new york 8th is teh district who is the successor?", "context": "CREATE TABLE table_2147588_4 (successor VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(rr3_pts) FROM table_21489362_2 WHERE rr4_pts = \"20\"", "question": "When 20 is the rr4 points what is the lowest rr3 points?", "context": "CREATE TABLE table_21489362_2 (rr3_pts INTEGER, rr4_pts VARCHAR)"}, {"answer": "SELECT rr4_pts FROM table_21489362_2 WHERE total_pts = 70", "question": "When 70 is the total points what is the rr4 points?", "context": "CREATE TABLE table_21489362_2 (rr4_pts VARCHAR, total_pts VARCHAR)"}, {"answer": "SELECT won FROM table_21489362_2 WHERE rr1_pts = 3", "question": "When 3 is the rr1 points what is won score?", "context": "CREATE TABLE table_21489362_2 (won VARCHAR, rr1_pts VARCHAR)"}, {"answer": "SELECT rr1_pts FROM table_21489362_2 WHERE team_name = \"Spanish Challenge\"", "question": "When spanish challenge is the team name what are the rr1 points?", "context": "CREATE TABLE table_21489362_2 (rr1_pts VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT COUNT(innings) FROM table_21486890_1 WHERE runs_scored = 5088", "question": "Name the innings for 5088 runs scored", "context": "CREATE TABLE table_21486890_1 (innings VARCHAR, runs_scored VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_21486890_1 WHERE name = \"Mark Taylor Category:Articles with hCards\"", "question": "Name the matches for mark taylor category:articles with hcards", "context": "CREATE TABLE table_21486890_1 (matches INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(runs_scored) FROM table_21486890_1", "question": "Name the most runs scored", "context": "CREATE TABLE table_21486890_1 (runs_scored INTEGER)"}, {"answer": "SELECT MIN(matches) FROM table_21486890_1 WHERE not_out = 44", "question": "Name the least matches for not out being 44", "context": "CREATE TABLE table_21486890_1 (matches INTEGER, not_out VARCHAR)"}, {"answer": "SELECT nation FROM table_2150068_1 WHERE satellite = \"PAGEOS 1\"", "question": "What nation was Pageos 1 from?", "context": "CREATE TABLE table_2150068_1 (nation VARCHAR, satellite VARCHAR)"}, {"answer": "SELECT launch_date__utc_ FROM table_2150068_1 WHERE usage = \"ado\" AND mass_kg_ = \"4\" AND diameter_m_ = \"3\"", "question": "What was the launch date for the sattelite with ado that was 4 kg and 3 meters in diameter?", "context": "CREATE TABLE table_2150068_1 (launch_date__utc_ VARCHAR, diameter_m_ VARCHAR, usage VARCHAR, mass_kg_ VARCHAR)"}, {"answer": "SELECT decay FROM table_2150068_1 WHERE mass_kg_ = \"180\"", "question": "What was the decay for the sattelite that was 180 kg?", "context": "CREATE TABLE table_2150068_1 (decay VARCHAR, mass_kg_ VARCHAR)"}, {"answer": "SELECT nssdc_id FROM table_2150068_1 WHERE satellite = \"Echo 1\"", "question": "What is the nssdc id for Echo 1?", "context": "CREATE TABLE table_2150068_1 (nssdc_id VARCHAR, satellite VARCHAR)"}, {"answer": "SELECT launch_date__utc_ FROM table_2150068_1 WHERE nssdc_id = \"1960-009A\"", "question": "What is the launch date for the sattelite with a nssdc id of 1960-009a?", "context": "CREATE TABLE table_2150068_1 (launch_date__utc_ VARCHAR, nssdc_id VARCHAR)"}, {"answer": "SELECT decay FROM table_2150068_1 WHERE nssdc_id = \"1990-081C\"", "question": "What is the decay for the sattelite with an id that is 1990-081c?", "context": "CREATE TABLE table_2150068_1 (decay VARCHAR, nssdc_id VARCHAR)"}, {"answer": "SELECT COUNT(song_title) FROM table_21500850_1 WHERE artist = \"Ratt\"", "question": "How many song titles belong to the artist Ratt?", "context": "CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR)"}, {"answer": "SELECT original_game FROM table_21500850_1 WHERE artist = \"Lynyrd Skynyrd\"", "question": "What is every original game for the artist Lynyrd Skynyrd?", "context": "CREATE TABLE table_21500850_1 (original_game VARCHAR, artist VARCHAR)"}, {"answer": "SELECT song_title FROM table_21500850_1 WHERE genre = \"Rock\" AND original_game = \"Guitar Hero\" AND artist = \"Queens of the Stone Age\"", "question": "What is every song title for the rock genre and Guitar Hero as original game and the artist is Queens of the Stone Age?", "context": "CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR, genre VARCHAR, original_game VARCHAR)"}, {"answer": "SELECT song_title FROM table_21500850_1 WHERE year = 2007", "question": "What is every song title for 2007?", "context": "CREATE TABLE table_21500850_1 (song_title VARCHAR, year VARCHAR)"}, {"answer": "SELECT song_choice FROM table_21501511_1 WHERE week__number = \"Top 13\"", "question": "What was Lambert's song choice in the top 13?", "context": "CREATE TABLE table_21501511_1 (song_choice VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT order__number FROM table_21501511_1 WHERE week__number = \"Top 11\"", "question": "What order did Lambert perform in the top 11?", "context": "CREATE TABLE table_21501511_1 (order__number VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT week__number FROM table_21501511_1 WHERE theme = \"Disco\"", "question": "What week was themed disco?", "context": "CREATE TABLE table_21501511_1 (week__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT week__number FROM table_21501564_1 WHERE original_artist = \"Sara Bareilles\"", "question": "What week #(s featured sara bareilles as the original artist?", "context": "CREATE TABLE table_21501564_1 (week__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT week__number FROM table_21501564_1 WHERE theme = \"First Solo\"", "question": "What week # featured first solo as the theme?", "context": "CREATE TABLE table_21501564_1 (week__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(theme) FROM table_21501564_1 WHERE original_artist = \"Duffy\"", "question": "How many weeks featured duffy as the original artist?", "context": "CREATE TABLE table_21501564_1 (theme VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT original_artist FROM table_21501564_1 WHERE result = \"Selected\"", "question": "Who was the originally artist when Jasmine Murray was selected?", "context": "CREATE TABLE table_21501564_1 (original_artist VARCHAR, result VARCHAR)"}, {"answer": "SELECT song_choice FROM table_21501565_1 WHERE theme = \"Year They Were Born\"", "question": "With theme the Year They Were Born, what is the song of choice?", "context": "CREATE TABLE table_21501565_1 (song_choice VARCHAR, theme VARCHAR)"}, {"answer": "SELECT original_artist FROM table_21501565_1 WHERE order__number = \"7\" AND theme = \"Motown\"", "question": "With order number 7 and the theme is Motown, who were the original artists?", "context": "CREATE TABLE table_21501565_1 (original_artist VARCHAR, order__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(order__number) FROM table_21501565_1 WHERE original_artist = \"Bette Midler\"", "question": "With an original artist names Bette Midler, what is the order number?", "context": "CREATE TABLE table_21501565_1 (order__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT week__number FROM table_21501565_1 WHERE original_artist = \"Tina Turner\"", "question": "With original artist of Tina Turner, what is the week number?", "context": "CREATE TABLE table_21501565_1 (week__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT original_artist FROM table_21501565_1 WHERE theme = \"N/A\"", "question": "Who is the original artist with a theme of N/A?", "context": "CREATE TABLE table_21501565_1 (original_artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT team FROM table_2150776_1 WHERE date = \"June 16\" AND driver = \"Jeff Gordon\"", "question": "Name the team for june 16 jeff gordon", "context": "CREATE TABLE table_2150776_1 (team VARCHAR, date VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_2150776_1 WHERE laps = \"200\" AND year = \"1997\"", "question": "Name the driver for 200 laps 1997", "context": "CREATE TABLE table_2150776_1 (driver VARCHAR, laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_2150776_1 WHERE driver = \"Ricky Rudd\"", "question": "Name the team for ricky rudd", "context": "CREATE TABLE table_2150776_1 (team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT ranking FROM table_21515673_2 WHERE rr2_pts = 4", "question": "What is the rank when RR2 has 4 points?", "context": "CREATE TABLE table_21515673_2 (ranking VARCHAR, rr2_pts VARCHAR)"}, {"answer": "SELECT COUNT(rr1_pts) FROM table_21515673_2 WHERE team_name = \"Swedish America's Cup Challenge\"", "question": "How many points does Swedish America's Cup Challenge have for rr1?", "context": "CREATE TABLE table_21515673_2 (rr1_pts VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT senior_us_senator FROM table_21531764_2 WHERE governor = \"D. Patrick\"", "question": "Who was the senior US senator in the state whose governor was D. Patrick?", "context": "CREATE TABLE table_21531764_2 (senior_us_senator VARCHAR, governor VARCHAR)"}, {"answer": "SELECT lower_house_majority FROM table_21531764_2 WHERE senior_us_senator = \"J. Shaheen\"", "question": "What's the lower house majority in the state whose Senior senator is J. Shaheen?", "context": "CREATE TABLE table_21531764_2 (lower_house_majority VARCHAR, senior_us_senator VARCHAR)"}, {"answer": "SELECT name FROM table_21536557_2 WHERE time__cet_ = \"09:58\"", "question": "Who is every name for time(cet) of 09:58?", "context": "CREATE TABLE table_21536557_2 (name VARCHAR, time__cet_ VARCHAR)"}, {"answer": "SELECT time__cet_ FROM table_21536557_2 WHERE name = \"Lillehammer 2\"", "question": "What is every time(cet) for the name of Lillehammer 2?", "context": "CREATE TABLE table_21536557_2 (time__cet_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_21536557_2 WHERE time__cet_ = \"09:03\"", "question": "Who is every name for time(cet) of 09:03?", "context": "CREATE TABLE table_21536557_2 (name VARCHAR, time__cet_ VARCHAR)"}, {"answer": "SELECT day FROM table_21536557_2 WHERE stage = \"SS11\"", "question": "Which days have a stage of ss11?", "context": "CREATE TABLE table_21536557_2 (day VARCHAR, stage VARCHAR)"}, {"answer": "SELECT time__cet_ FROM table_21536557_2 WHERE time = \"5:04.8\"", "question": "What is every time(cet) for a time of 5:04.8?", "context": "CREATE TABLE table_21536557_2 (time__cet_ VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(caliber) FROM table_21538523_1 WHERE type = \"LB/RN\"", "question": "How many calibers require the type LB/RN?", "context": "CREATE TABLE table_21538523_1 (caliber VARCHAR, type VARCHAR)"}, {"answer": "SELECT class FROM table_21538523_1 WHERE type = \"FJ/RN/SC\"", "question": "Type FJ/RN/SC is associated with what class?", "context": "CREATE TABLE table_21538523_1 (class VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_21538523_1 WHERE caliber = \".44 Magnum\"", "question": "What type of glazing will stop a .44 magnum?", "context": "CREATE TABLE table_21538523_1 (type VARCHAR, caliber VARCHAR)"}, {"answer": "SELECT MIN(shots) FROM table_21538523_1", "question": "What is the fewest shots a glazing can handle?", "context": "CREATE TABLE table_21538523_1 (shots INTEGER)"}, {"answer": "SELECT range__m_ FROM table_21538523_1 WHERE type = \"FJ/PB/SCP\"", "question": "What range does type FJ/PB/SCP work at?", "context": "CREATE TABLE table_21538523_1 (range__m_ VARCHAR, type VARCHAR)"}, {"answer": "SELECT drivetrain FROM table_21530474_1 WHERE engine_code = \"2UR-FSE\"", "question": "Name the drivetrain for 2ur-fse", "context": "CREATE TABLE table_21530474_1 (drivetrain VARCHAR, engine_code VARCHAR)"}, {"answer": "SELECT region_s_ FROM table_21530474_1 WHERE chassis_code = \"USF45\"", "question": "Name the regions for usf45", "context": "CREATE TABLE table_21530474_1 (region_s_ VARCHAR, chassis_code VARCHAR)"}, {"answer": "SELECT model_no FROM table_21530474_1 WHERE chassis_code = \"USF46\"", "question": "Name the model number for usf46", "context": "CREATE TABLE table_21530474_1 (model_no VARCHAR, chassis_code VARCHAR)"}, {"answer": "SELECT drivetrain FROM table_21530474_1 WHERE engine_code = \"1UR-FSE\" AND chassis_code = \"USF41\"", "question": "Name the drivetrain for 1ur-fse for usf41", "context": "CREATE TABLE table_21530474_1 (drivetrain VARCHAR, engine_code VARCHAR, chassis_code VARCHAR)"}, {"answer": "SELECT october_2012 FROM table_21531764_1 WHERE october_2010 = \"9.1\"", "question": "For the area which was 9.1 in October 2010, what is the figure for October 2012?", "context": "CREATE TABLE table_21531764_1 (october_2012 VARCHAR, october_2010 VARCHAR)"}, {"answer": "SELECT employment_area FROM table_21531764_1 WHERE october_2010 = \"5.7\"", "question": "Where is the rate 5.7 in October 2010?", "context": "CREATE TABLE table_21531764_1 (employment_area VARCHAR, october_2010 VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_21550870_1 WHERE us_viewers__million_ = \"9.16\"", "question": "Name the original air date for 9.16 viewers", "context": "CREATE TABLE table_21550870_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_21550870_1 WHERE written_by = \"Steve Cohen & Andrew Dettman\"", "question": "Name the total number of production code for  episode by steve cohen & andrew dettman", "context": "CREATE TABLE table_21550870_1 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT population__millions, _2011_ FROM table_2155836_1 WHERE hdi__2011_ = \"0.453 (low)\"", "question": "What is the population in millions for 2011 where the HDI for 2011 is 0.453 (low)?", "context": "CREATE TABLE table_2155836_1 (population__millions VARCHAR, _2011_ VARCHAR, hdi__2011_ VARCHAR)"}, {"answer": "SELECT population__millions, _2011_ FROM table_2155836_1 WHERE gdp__nominal___billions_usd_ = \"4\"", "question": "What is the population in millions for 2011 where the GDP (nominal) (billions USD) is 4? ", "context": "CREATE TABLE table_2155836_1 (population__millions VARCHAR, _2011_ VARCHAR, gdp__nominal___billions_usd_ VARCHAR)"}, {"answer": "SELECT hdi__2011_ FROM table_2155836_1 WHERE country = \"Tunisia\"", "question": "What is the HDI for 2011 in Tunisia? ", "context": "CREATE TABLE table_2155836_1 (hdi__2011_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(gdp__ppp___usd), _per_capita_ FROM table_2155836_1 WHERE country = \"Algeria\"", "question": "What is the GDP (PPP) (USD, per capita) for Algeria? ", "context": "CREATE TABLE table_2155836_1 (_per_capita_ VARCHAR, gdp__ppp___usd INTEGER, country VARCHAR)"}, {"answer": "SELECT COUNT(cab_size) FROM table_2155350_2 WHERE category = \"4 Medium tanker\"", "question": "Name the number of cab size for 4 medium tanker", "context": "CREATE TABLE table_2155350_2 (cab_size VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_2155350_2 WHERE cab_size = \"Crew\" AND sub_category = \"Super tanker\"", "question": "Name the category for cab size crew and super tanker", "context": "CREATE TABLE table_2155350_2 (category VARCHAR, cab_size VARCHAR, sub_category VARCHAR)"}, {"answer": "SELECT capacity__litres_ FROM table_2155350_2 WHERE cab_size = \"Single\" AND category = \"2 Medium tanker\"", "question": "Name the capacity for single cab size 2 medium tanker", "context": "CREATE TABLE table_2155350_2 (capacity__litres_ VARCHAR, cab_size VARCHAR, category VARCHAR)"}, {"answer": "SELECT external_link FROM table_21563298_1 WHERE location = \"Brechin\"", "question": "What school is in Brechin?", "context": "CREATE TABLE table_21563298_1 (external_link VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(roll) FROM table_21563298_1 WHERE school = \"Brechin High school\"", "question": "How many kids go to Brechin High School?", "context": "CREATE TABLE table_21563298_1 (roll INTEGER, school VARCHAR)"}, {"answer": "SELECT MIN(began_in_st_louis) FROM table_21564794_3 WHERE league = \"Negro American league\"", "question": "What year did Negro American League join?", "context": "CREATE TABLE table_21564794_3 (began_in_st_louis INTEGER, league VARCHAR)"}, {"answer": "SELECT MIN(left_st_louis) FROM table_21564794_3 WHERE venue = \"Scottrade Center\"", "question": "What year did the team who played at the Scottrade Center leave the city?", "context": "CREATE TABLE table_21564794_3 (left_st_louis INTEGER, venue VARCHAR)"}, {"answer": "SELECT championships_in_st_louis FROM table_21564794_3 WHERE began_in_st_louis = 1950", "question": "How may championships were won by the team that started in 1950?", "context": "CREATE TABLE table_21564794_3 (championships_in_st_louis VARCHAR, began_in_st_louis VARCHAR)"}, {"answer": "SELECT championships_in_st_louis FROM table_21564794_3 WHERE sport = \"Arena Football\"", "question": "How many championships were won for arena football?", "context": "CREATE TABLE table_21564794_3 (championships_in_st_louis VARCHAR, sport VARCHAR)"}, {"answer": "SELECT COUNT(asian_team_classification) FROM table_21573750_2 WHERE asian_rider_classification = \"Samai Amari\"", "question": "When samai amari is the asian rider classification how many asian team classifications are there?", "context": "CREATE TABLE table_21573750_2 (asian_team_classification VARCHAR, asian_rider_classification VARCHAR)"}, {"answer": "SELECT general_classification FROM table_21573750_2 WHERE stage = 4", "question": "When 4 is the stage who is the general classification?", "context": "CREATE TABLE table_21573750_2 (general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_2156758_4 WHERE written_by = \"Chris Mitchell and Erik Wiese\"", "question": "What is the number in season for the episode written by Chris Mitchell and Erik Wiese?", "context": "CREATE TABLE table_2156758_4 (no_in_season VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_2156758_4 WHERE no_in_series = \"28\"", "question": "What is the title for episode number in series of 28?", "context": "CREATE TABLE table_2156758_4 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_2156758_4 WHERE written_by = \"Don Shank and Genndy Tartakovsky\"", "question": "How many titles were written by Don Shank and Genndy Tartakovsky?", "context": "CREATE TABLE table_2156758_4 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT mens_3rd_xi FROM table_21576644_2 WHERE ladies_1st_xi = \"3rd, Sedgemoor Division 1\"", "question": "When 3rd, sedgemoor division 1 is the ladies 1st xi what is the mens 3rd xi?", "context": "CREATE TABLE table_21576644_2 (mens_3rd_xi VARCHAR, ladies_1st_xi VARCHAR)"}, {"answer": "SELECT ladies_1st_xi FROM table_21576644_2 WHERE mens_2nd_xi = \"10th, South West District 1\"", "question": "When 10th, south west district 1 is the mens 2nd xi what is the ladies 1st xi?", "context": "CREATE TABLE table_21576644_2 (ladies_1st_xi VARCHAR, mens_2nd_xi VARCHAR)"}, {"answer": "SELECT season FROM table_21576644_2 WHERE mens_2nd_xi = \"5th, South Western District 2\"", "question": "When 5th, south western district 2 is the mens 2nd xi what is the season?", "context": "CREATE TABLE table_21576644_2 (season VARCHAR, mens_2nd_xi VARCHAR)"}, {"answer": "SELECT mens_2nd_xi FROM table_21576644_2 WHERE mens_1st_xi = \"6th, South Division 2\"", "question": "When 6th, south division 2 is the mens 1st xi what is the mens 2nd xi?", "context": "CREATE TABLE table_21576644_2 (mens_2nd_xi VARCHAR, mens_1st_xi VARCHAR)"}, {"answer": "SELECT stage FROM table_21578303_2 WHERE name = \"Kourdali\"", "question": "Which stage has kourdali as the name?", "context": "CREATE TABLE table_21578303_2 (stage VARCHAR, name VARCHAR)"}, {"answer": "SELECT stage FROM table_21578303_2 WHERE time__eet_ = \"15:17\"", "question": "Which stage has 15:17 as time?", "context": "CREATE TABLE table_21578303_2 (stage VARCHAR, time__eet_ VARCHAR)"}, {"answer": "SELECT time FROM table_21578303_2 WHERE time__eet_ = \"10:46\"", "question": "What is the time when time is 10:46?", "context": "CREATE TABLE table_21578303_2 (time VARCHAR, time__eet_ VARCHAR)"}, {"answer": "SELECT time FROM table_21578303_2 WHERE stage = \"SS12\"", "question": "What is the time when ss12 is stage?", "context": "CREATE TABLE table_21578303_2 (time VARCHAR, stage VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_2159506_3 WHERE reason_for_change = \"Resigned November 3, 1964\"", "question": "Name the state class for resigned november 3, 1964", "context": "CREATE TABLE table_2159506_3 (state__class_ VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT COUNT(champion) FROM table_21584646_10 WHERE runner_up = \"Stefan Edberg\"", "question": "How many champions are shown for the runner-up of stefan edberg?", "context": "CREATE TABLE table_21584646_10 (champion VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT week_of FROM table_21584646_10 WHERE semifinalists = \"Stefan Edberg Anders J\u00e4rryd\" AND champion = \"John McEnroe 7\u20136, 6\u20133\"", "question": "What week was stefan edberg anders j\u00e4rryd was semifinalist and champion is john mcenroe 7\u20136, 6\u20133?", "context": "CREATE TABLE table_21584646_10 (week_of VARCHAR, semifinalists VARCHAR, champion VARCHAR)"}, {"answer": "SELECT runner_up FROM table_21584646_10 WHERE champion = \"John McEnroe 6\u20132, 6\u20133\"", "question": "Who is the runner up for the champion of john mcenroe 6\u20132, 6\u20133?", "context": "CREATE TABLE table_21584646_10 (runner_up VARCHAR, champion VARCHAR)"}, {"answer": "SELECT quarterfinalists FROM table_21584646_10 WHERE runner_up = \"Mike De Palmer Gary Donnelly\"", "question": "Who were the  quarterfinalists for the runner-ups of mike de palmer gary donnelly?", "context": "CREATE TABLE table_21584646_10 (quarterfinalists VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT quarterfinalists FROM table_21584646_10 WHERE runner_up = \"Jimmy Connors\"", "question": "Who are the quarterfinalists for runner-up  jimmy connors?", "context": "CREATE TABLE table_21584646_10 (quarterfinalists VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT COUNT(week_of) FROM table_21584646_10 WHERE champion = \"John McEnroe 6\u20132, 6\u20133\"", "question": "How many weeks are shown for the champion of john mcenroe 6\u20132, 6\u20133?", "context": "CREATE TABLE table_21584646_10 (week_of VARCHAR, champion VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_2159571_1 WHERE date_of_successors_formal_installation = \"March 16, 1960\"", "question": "What is every reason for change for the date of successors installation is March 16, 1960?", "context": "CREATE TABLE table_2159571_1 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT vacator FROM table_2159571_1 WHERE date_of_successors_formal_installation = \"August 8, 1960\"", "question": "Who is every vacator if date of successors formal installation is August 8, 1960?", "context": "CREATE TABLE table_2159571_1 (vacator VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT successor FROM table_2159571_2 WHERE district = \"Washington 3rd\"", "question": "Who is every successor for the Washington 3rd District?", "context": "CREATE TABLE table_2159571_2 (successor VARCHAR, district VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_2159571_2 WHERE district = \"Washington 3rd\"", "question": "What is every reason for change for the Washington 3rd District?", "context": "CREATE TABLE table_2159571_2 (reason_for_change VARCHAR, district VARCHAR)"}, {"answer": "SELECT vacator FROM table_2159571_2 WHERE reason_for_change = \"Resigned December 31, 1959\"", "question": "Who is every vacator with reason for change as resigned December 31, 1959?", "context": "CREATE TABLE table_2159571_2 (vacator VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT district FROM table_2159537_3 WHERE date_successor_seated = \"August 31, 1943\"", "question": "In what district was the successor seated August 31, 1943?", "context": "CREATE TABLE table_2159537_3 (district VARCHAR, date_successor_seated VARCHAR)"}, {"answer": "SELECT successor FROM table_2159537_3 WHERE reason_for_change = \"Died January 16, 1944\"", "question": "Who was the successor for the reason for change being \"died January 16, 1944?", "context": "CREATE TABLE table_2159537_3 (successor VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT successor FROM table_2159537_3 WHERE district = \"New York 11th\"", "question": "Who was the successor in New York 11th district?", "context": "CREATE TABLE table_2159537_3 (successor VARCHAR, district VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_2159547_3 WHERE vacator = \"James P. Buchanan (D)\"", "question": "On what date was James P. Buchanan (d)'s successor seated?", "context": "CREATE TABLE table_2159547_3 (date_successor_seated VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT COUNT(vacator) FROM table_2159547_3 WHERE successor = \"Dave E. Satterfield, Jr. (D)\"", "question": "How many people vacated to successor Dave E. Satterfield, Jr. (d)?", "context": "CREATE TABLE table_2159547_3 (vacator VARCHAR, successor VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_2159547_3 WHERE vacator = \"Robert L. Bacon (R)\"", "question": "Why did Robert L. Bacon (r) vacate?", "context": "CREATE TABLE table_2159547_3 (reason_for_change VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT character FROM table_2160215_1 WHERE original_japanese = \"Makio Inoue\"", "question": "Makio Inoue dubbed on which character?", "context": "CREATE TABLE table_2160215_1 (character VARCHAR, original_japanese VARCHAR)"}, {"answer": "SELECT english___manga_uk__ FROM table_2160215_1 WHERE original_japanese = \"K\u014d Nishimura\"", "question": "Who was the cast on the English (Manga UK) version if K\u014d Nishimura acted on the original Japanese?", "context": "CREATE TABLE table_2160215_1 (english___manga_uk__ VARCHAR, original_japanese VARCHAR)"}, {"answer": "SELECT original_japanese FROM table_2160215_1 WHERE english___manga_uk__ = \"Sean Barrett\"", "question": "Who was the original Japanese cast if Sean Barrett acted on the English (Manga UK) version?", "context": "CREATE TABLE table_2160215_1 (original_japanese VARCHAR, english___manga_uk__ VARCHAR)"}, {"answer": "SELECT district FROM table_2160008_4 WHERE reason_for_change = \"Died July 4, 1939\"", "question": "Name the district for reason for change being died july 4, 1939", "context": "CREATE TABLE table_2160008_4 (district VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT COUNT(reason_for_change) FROM table_2160008_4 WHERE date_successor_seated = \"May 11, 1939\"", "question": "Name the number of reason for change on may 11, 1939", "context": "CREATE TABLE table_2160008_4 (reason_for_change VARCHAR, date_successor_seated VARCHAR)"}, {"answer": "SELECT wed_3_june FROM table_21607058_1 WHERE rank = 12", "question": "What were the time and speed for the rider ranked in 12 on Wed, June 3?", "context": "CREATE TABLE table_21607058_1 (wed_3_june VARCHAR, rank VARCHAR)"}, {"answer": "SELECT series__number FROM table_2161859_1 WHERE title = \"The Golden Frog\"", "question": "What is the series number for the Golden Frog?", "context": "CREATE TABLE table_2161859_1 (series__number VARCHAR, title VARCHAR)"}, {"answer": "SELECT artist FROM table_2161859_1 WHERE strip_numbers = \"3932-4031A\"", "question": "Who is the artist for strip numbers 3932-4031a?", "context": "CREATE TABLE table_2161859_1 (artist VARCHAR, strip_numbers VARCHAR)"}, {"answer": "SELECT champions FROM table_21632864_1 WHERE third_place = \"Ehime Shimanami\"", "question": "who got the first position when  Ehime Shimanami got the third position?", "context": "CREATE TABLE table_21632864_1 (champions VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT third_place FROM table_21632864_1 WHERE runners_up = \"Laranja Kyoto\"", "question": "who got the third position when laranja kyoto got the second position?", "context": "CREATE TABLE table_21632864_1 (third_place VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT COUNT(third_place) FROM table_21632864_1 WHERE fourth_place = \"Sanyo Electric Tokushima\"", "question": "how many persons got the third position whan sanyo electric tokushima got the fourth position?", "context": "CREATE TABLE table_21632864_1 (third_place VARCHAR, fourth_place VARCHAR)"}, {"answer": "SELECT COUNT(fourth_place) FROM table_21632864_1 WHERE regional = \"Shikoku\"", "question": "how many persons got the fourth position when the regional was shikoku?", "context": "CREATE TABLE table_21632864_1 (fourth_place VARCHAR, regional VARCHAR)"}, {"answer": "SELECT champions FROM table_21632864_1 WHERE regional = \"Hokushinetsu\"", "question": "who got the first place when the Japanese Regional Leagues was in hokushinetsu?", "context": "CREATE TABLE table_21632864_1 (champions VARCHAR, regional VARCHAR)"}, {"answer": "SELECT champions FROM table_21632864_1 WHERE fourth_place = \"Fujieda City Government\"", "question": "who got the first position when fujieda city government got the fourth position?", "context": "CREATE TABLE table_21632864_1 (champions VARCHAR, fourth_place VARCHAR)"}, {"answer": "SELECT civilians FROM table_21636599_2 WHERE security_forces = \"36\"", "question": "What are the civilian total when the security force total is 36?", "context": "CREATE TABLE table_21636599_2 (civilians VARCHAR, security_forces VARCHAR)"}, {"answer": "SELECT security_forces FROM table_21636599_2 WHERE civilians = \"202\"", "question": "What are the security forces when the civilians are 202?", "context": "CREATE TABLE table_21636599_2 (security_forces VARCHAR, civilians VARCHAR)"}, {"answer": "SELECT COUNT(security_forces) FROM table_21636599_2 WHERE period = 1998", "question": "How many figures are named for security forces in 1998?", "context": "CREATE TABLE table_21636599_2 (security_forces VARCHAR, period VARCHAR)"}, {"answer": "SELECT insurgents FROM table_21636599_2 WHERE total_per_period = 156", "question": "How many insurgents are there when the total per period is 156?", "context": "CREATE TABLE table_21636599_2 (insurgents VARCHAR, total_per_period VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_21634403_2 WHERE directed_by = \"Frank Waldeck\"", "question": "How many U.S. viewers watched the episode directed by Frank Waldeck?", "context": "CREATE TABLE table_21634403_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_21649285_2 WHERE tournament = \"Sime Darby LPGA Malaysia\"", "question": "How many tournaments were at sime darby lpga malaysia?", "context": "CREATE TABLE table_21649285_2 (no VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_21649285_2 WHERE no = 4", "question": "Margin of victory on no. 4 was?", "context": "CREATE TABLE table_21649285_2 (margin_of_victory VARCHAR, no VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_21649285_2 WHERE margin_of_victory = \"4 strokes\"", "question": "Who was the runner up when the won by 4 strokes?", "context": "CREATE TABLE table_21649285_2 (runner_s__up VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_21655290_1 WHERE year__ceremony_ = \"1990 (63rd)\"", "question": "Which film title used in nomination has the year (ceremony) 1990 (63rd)?", "context": "CREATE TABLE table_21655290_1 (film_title_used_in_nomination VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT director FROM table_21655290_1 WHERE original_title = \"Kon-Tiki\"", "question": "Who is the director of kon-tiki original title?", "context": "CREATE TABLE table_21655290_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_21655290_1 WHERE original_title = \"Vinterkyss\"", "question": "Which film title used in nomination has vinterkyss as the original title?", "context": "CREATE TABLE table_21655290_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT date FROM table_2167226_3 WHERE tournament = \"McDonald's WPGA Championship\"", "question": "What is the date for the tournament McDonald's wpga championship?", "context": "CREATE TABLE table_2167226_3 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_2167226_3 WHERE margin_of_victory = \"5 strokes\"", "question": "What is the winning score when 5 strokes is the margin of victory?", "context": "CREATE TABLE table_2167226_3 (winning_score VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT to_par FROM table_2167226_3 WHERE winning_score = 74 - 67 - 71 - 73 = 285", "question": "What is the to par with the winning score of 74-67-71-73=285?", "context": "CREATE TABLE table_2167226_3 (to_par VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_2167226_3 WHERE winning_score = 74 - 67 - 71 - 73 = 285", "question": "What is the date of the winning score 74-67-71-73=285?", "context": "CREATE TABLE table_2167226_3 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_21666472_1 WHERE written_by = \"Greg Haddrick\"", "question": "How many number in series's are written by Greg Haddrick?", "context": "CREATE TABLE table_21666472_1 (no_in_series VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT year FROM table_21676617_1 WHERE odds_of_winner = \"16.66\"", "question": "When were the odds of winner 16.66?", "context": "CREATE TABLE table_21676617_1 (year VARCHAR, odds_of_winner VARCHAR)"}, {"answer": "SELECT winning_time__km_rate_ FROM table_21676617_1 WHERE odds_of_winner = \"2.94\"", "question": "What was the winning time in the year when the odds of the winner were 2.94?", "context": "CREATE TABLE table_21676617_1 (winning_time__km_rate_ VARCHAR, odds_of_winner VARCHAR)"}, {"answer": "SELECT odds_of_winner FROM table_21676617_1 WHERE horse = \"Gentleman\"", "question": "What were Gentleman's odds of winner?", "context": "CREATE TABLE table_21676617_1 (odds_of_winner VARCHAR, horse VARCHAR)"}, {"answer": "SELECT COUNT(country_of_owner) FROM table_21676617_1 WHERE horse = \"Utah Bulwark\"", "question": "How many countries did Utah Bulwark's owner come from?", "context": "CREATE TABLE table_21676617_1 (country_of_owner VARCHAR, horse VARCHAR)"}, {"answer": "SELECT COUNT(horse) FROM table_21676617_1 WHERE year = 1985", "question": "How many horses are mentioned competing in 1985?", "context": "CREATE TABLE table_21676617_1 (horse VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(area__km\u00b2_) FROM table_2168295_1 WHERE headquarters = \"Bharatpur\"", "question": "If the headquarters is Bharatpur, what is the maximum area?", "context": "CREATE TABLE table_2168295_1 (area__km\u00b2_ INTEGER, headquarters VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_2168295_1 WHERE district = \"Chittorgarh\"", "question": "If the district is Chittorgarh, what is the area?", "context": "CREATE TABLE table_2168295_1 (area__km\u00b2_ VARCHAR, district VARCHAR)"}, {"answer": "SELECT headquarters FROM table_2168295_1 WHERE population__2011_ = 3685681", "question": "If the 2011 population is 3685681, what is the name of the headquarters?", "context": "CREATE TABLE table_2168295_1 (headquarters VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT MIN(area__km\u00b2_) FROM table_2168295_1 WHERE population__2011_ = 3067549", "question": "What is the minimum area id the 2011 population is 3067549?", "context": "CREATE TABLE table_2168295_1 (area__km\u00b2_ INTEGER, population__2011_ VARCHAR)"}, {"answer": "SELECT population__2011_ FROM table_2168295_1 WHERE headquarters = \"Chittorgarh\"", "question": "What is the 2011 population if the headquarters is Chittorgarh?", "context": "CREATE TABLE table_2168295_1 (population__2011_ VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT COUNT(municipal_mayor) FROM table_216776_2 WHERE area__km\u00b2_ = \"42.66\"", "question": "How many different municipal mayors were there in the municipality with an area of 42.66 km2?", "context": "CREATE TABLE table_216776_2 (municipal_mayor VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT municipality FROM table_216776_2 WHERE population__2010_ = 26839", "question": "What municipality had 26839 people living in it in 2010?", "context": "CREATE TABLE table_216776_2 (municipality VARCHAR, population__2010_ VARCHAR)"}, {"answer": "SELECT municipality FROM table_216776_2 WHERE pop_density__per_km\u00b2_ = \"757.5\"", "question": "In what municipality were there 757.5 people per km2?", "context": "CREATE TABLE table_216776_2 (municipality VARCHAR, pop_density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(population__2010_) FROM table_216776_2 WHERE municipality = \"Cavinti\"", "question": "How many different counts of the population in Cavinti in 2010 are there?", "context": "CREATE TABLE table_216776_2 (population__2010_ VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT pop_density__per_km\u00b2_ FROM table_216776_2 WHERE municipal_mayor = \"Boy Quiat\"", "question": "How many people per km2 are there in the municipality whose mayor is Boy Quiat?", "context": "CREATE TABLE table_216776_2 (pop_density__per_km\u00b2_ VARCHAR, municipal_mayor VARCHAR)"}, {"answer": "SELECT _number FROM table_21696800_1 WHERE us_viewers__million_ = \"2.24\"", "question": "What's the number of the episode seen by 2.24 million people in the US?", "context": "CREATE TABLE table_21696800_1 (_number VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_21696800_1 WHERE directed_by = \"Wayne Rose\"", "question": "How many different episode numbers are there for episodes directed by Wayne Rose?", "context": "CREATE TABLE table_21696800_1 (_number VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT wins FROM table_2169966_1 WHERE starts = 10", "question": "How many wins does he get when he starts at 10?", "context": "CREATE TABLE table_2169966_1 (wins VARCHAR, starts VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_2169966_1", "question": "How many wins does he have?", "context": "CREATE TABLE table_2169966_1 (wins INTEGER)"}, {"answer": "SELECT _percentage_cut FROM table_21690339_1 WHERE gas_storage = \"80% full\"", "question": "What wast the percent cut for the nation with an 80% full gas storage?", "context": "CREATE TABLE table_21690339_1 (_percentage_cut VARCHAR, gas_storage VARCHAR)"}, {"answer": "SELECT gas_storage FROM table_21690339_1 WHERE alternative_fuel = \"Yes\"", "question": "What was the gas storage status for the nation that had \"yes\" for alternative fuel?", "context": "CREATE TABLE table_21690339_1 (gas_storage VARCHAR, alternative_fuel VARCHAR)"}, {"answer": "SELECT _percentage_cut FROM table_21690339_1 WHERE alternative_fuel = \"Fuel oil stocks need only for industry\"", "question": "What was the percent cunt for the nation that had fuel oil stocks need only for industry as their fuel alternative?", "context": "CREATE TABLE table_21690339_1 (_percentage_cut VARCHAR, alternative_fuel VARCHAR)"}, {"answer": "SELECT country FROM table_21690339_1 WHERE _percentage_of_imports_from_russia = \"20%\"", "question": "What country had 20% imports from russia?", "context": "CREATE TABLE table_21690339_1 (country VARCHAR, _percentage_of_imports_from_russia VARCHAR)"}, {"answer": "SELECT country FROM table_21690339_1 WHERE _percentage_cut = \"100%\"", "question": "What country had a 100% cut?", "context": "CREATE TABLE table_21690339_1 (country VARCHAR, _percentage_cut VARCHAR)"}, {"answer": "SELECT network FROM table_2170969_2 WHERE viewers_in_millions = \"2.74\"", "question": "What network garnered 2.74 million viewers for Supernatural?", "context": "CREATE TABLE table_2170969_2 (network VARCHAR, viewers_in_millions VARCHAR)"}, {"answer": "SELECT tv_season FROM table_2170969_2 WHERE viewers_in_millions = \"2.52\"", "question": "What season had 2.52 million viewers?", "context": "CREATE TABLE table_2170969_2 (tv_season VARCHAR, viewers_in_millions VARCHAR)"}, {"answer": "SELECT category FROM table_21716139_1 WHERE train_no = \"16609/16610\"", "question": "What is the category for trains numbered 16609/16610?", "context": "CREATE TABLE table_21716139_1 (category VARCHAR, train_no VARCHAR)"}, {"answer": "SELECT train_name FROM table_21716139_1 WHERE category = \"Express\" AND frequency = \"Weekly\"", "question": "What trains have a category of express and a weekly frequency?", "context": "CREATE TABLE table_21716139_1 (train_name VARCHAR, category VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT train_name FROM table_21716139_1 WHERE destination = \"Tuticorin\"", "question": "What is the train name that has a destination of Tuticorin?", "context": "CREATE TABLE table_21716139_1 (train_name VARCHAR, destination VARCHAR)"}, {"answer": "SELECT frequency FROM table_21716139_1 WHERE train_no = \"12671/12672\"", "question": "What is the frequency of trains numbered 12671/12672?", "context": "CREATE TABLE table_21716139_1 (frequency VARCHAR, train_no VARCHAR)"}, {"answer": "SELECT COUNT(destination) FROM table_21716139_1 WHERE frequency = \"Weekly\" AND train_name = \"AC Express\"", "question": "How many destinations have a weekly frequency and are named AC Express?", "context": "CREATE TABLE table_21716139_1 (destination VARCHAR, frequency VARCHAR, train_name VARCHAR)"}, {"answer": "SELECT COUNT(frequency) FROM table_21716139_1 WHERE destination = \"Jaipur\"", "question": "What is the number of frequencies that have a destination of Jaipur?", "context": "CREATE TABLE table_21716139_1 (frequency VARCHAR, destination VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_21721351_18 WHERE player = \"David Grannis\"", "question": "What is the pick # for player david grannis?", "context": "CREATE TABLE table_21721351_18 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_21721351_18 WHERE college_junior_club_team = \"Deerfield Academy (Massachusetts)\"", "question": "Which player belongs to deerfield academy (Massachusetts) college/junior/club team?", "context": "CREATE TABLE table_21721351_18 (player VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_21721351_18 WHERE college_junior_club_team = \"Kitchener Rangers (OHL)\"", "question": "Which nationality is kitchener rangers (ohl) college/junior/club team?", "context": "CREATE TABLE table_21721351_18 (nationality VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_21721351_18 WHERE player = \"Brian Wilks\"", "question": "Which nationality is player Brian Wilks?", "context": "CREATE TABLE table_21721351_18 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_21721351_18 WHERE player = \"Tom Glavine\"", "question": "How many positions is player Tom Glavine?", "context": "CREATE TABLE table_21721351_18 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT directed_by FROM table_21726793_1 WHERE production_code = \"2T5710\"", "question": "who directed the production code 2t5710?", "context": "CREATE TABLE table_21726793_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_21726793_1 WHERE us_viewers__million_ = \"2.76\"", "question": "what is the total number o production code where us viewers is 2.76?", "context": "CREATE TABLE table_21726793_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_21726793_1 WHERE no = 2", "question": "who wrote the no 2?", "context": "CREATE TABLE table_21726793_1 (written_by VARCHAR, no VARCHAR)"}, {"answer": "SELECT maac FROM table_21756039_1 WHERE overall = \"26-8\"", "question": "What is the maac when the overall is 26-8?", "context": "CREATE TABLE table_21756039_1 (maac VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(maac) FROM table_21756039_1 WHERE ncaa_seed = \"14th\" AND overall = \"20-10\"", "question": "How many maac are there that have 14th as the ncaa and the overall is 20-10?", "context": "CREATE TABLE table_21756039_1 (maac VARCHAR, ncaa_seed VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_21756039_1 WHERE year = \"2010-2011\"", "question": "How many overall in the year 2010-2011?", "context": "CREATE TABLE table_21756039_1 (overall VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_21756039_1 WHERE overall = \"29-4\"", "question": "In which year is the overall 29-4?", "context": "CREATE TABLE table_21756039_1 (year VARCHAR, overall VARCHAR)"}, {"answer": "SELECT regular_season_results FROM table_21756039_1 WHERE year = \"2011-2012\"", "question": "What is the regular season results for the year 2011-2012?", "context": "CREATE TABLE table_21756039_1 (regular_season_results VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(driver) FROM table_2175858_1 WHERE race_time = \"3:09:45\"", "question": "How many drivers had a time of 3:09:45?", "context": "CREATE TABLE table_2175858_1 (driver VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT COUNT(driver) FROM table_2175858_1 WHERE laps = \"300\" AND average_speed__mph_ = \"103.594\"", "question": "How many drivers drove 300 laps at average speed of 103.594?", "context": "CREATE TABLE table_2175858_1 (driver VARCHAR, laps VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_2175858_1 WHERE average_speed__mph_ = \"102.003\"", "question": "How many dates had an average speed of 102.003?", "context": "CREATE TABLE table_2175858_1 (date VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT laps FROM table_2175858_1 WHERE year = 2009", "question": "How many laps were driven in 2009?", "context": "CREATE TABLE table_2175858_1 (laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT laps FROM table_2175858_1 WHERE race_time = \"3:03:50\"", "question": "How many laps were completed in the race with time of 3:03:50?", "context": "CREATE TABLE table_2175858_1 (laps VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT miles__km_ FROM table_2175858_1 WHERE average_speed__mph_ = \"116.81\"", "question": "How many miles were driven with the average speed at 116.81?", "context": "CREATE TABLE table_2175858_1 (miles__km_ VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT season_no FROM table_21781578_2 WHERE production_code = \"E2110\"", "question": "What was the season number for production code E2110?", "context": "CREATE TABLE table_21781578_2 (season_no VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_21781578_2 WHERE season_no = 2", "question": "What was the original air date for season number 2?", "context": "CREATE TABLE table_21781578_2 (original_air_date VARCHAR, season_no VARCHAR)"}, {"answer": "SELECT season_no FROM table_21781578_2 WHERE directed_by = \"John David Coles\"", "question": "What was the season number episode directed by John David Coles?", "context": "CREATE TABLE table_21781578_2 (season_no VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_21781578_2 WHERE directed_by = \"Steve Shill\" AND production_code = \"E2102\"", "question": "What was the number of US Viewers in the episode directed by Steve Shill and having a production code of E2102?", "context": "CREATE TABLE table_21781578_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(season_no) FROM table_21781578_2 WHERE us_viewers__millions_ = \"12.30\"", "question": "What was the number of season number entries that had US Viewers of 12.30 million?", "context": "CREATE TABLE table_21781578_2 (season_no VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT date FROM table_21761882_4 WHERE week = 3", "question": "What was the date of the game in week 3?", "context": "CREATE TABLE table_21761882_4 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT final_score FROM table_21761882_4 WHERE opponent = \"@ Roughriders\"", "question": "What was the final score when the game was @ roughriders?", "context": "CREATE TABLE table_21761882_4 (final_score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_21761882_4 WHERE location = \"Ivor Wynne Stadium\"", "question": "What was the total number of weeks where the game played Ivor Wynne Stadium?", "context": "CREATE TABLE table_21761882_4 (week VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_21761882_4 WHERE opponent = \"@ Roughriders\"", "question": "What was the location for when the opponent was @ roughriders?", "context": "CREATE TABLE table_21761882_4 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT final_score FROM table_21761882_4 WHERE attendance = 25598", "question": "What was the final score when the attendance was 25598?", "context": "CREATE TABLE table_21761882_4 (final_score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT location FROM table_21761882_4 WHERE date = \"October 6\"", "question": "What location was the game on October 6?", "context": "CREATE TABLE table_21761882_4 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(ranking) FROM table_217785_2 WHERE viewers__in_millions_of_households_ = \"11.2\"", "question": "What's the lowest rating with 11.2 million viewers?", "context": "CREATE TABLE table_217785_2 (ranking INTEGER, viewers__in_millions_of_households_ VARCHAR)"}, {"answer": "SELECT season AS finale FROM table_217785_2 WHERE ranking = 73", "question": "When did the season finale ranked at 73 first air?", "context": "CREATE TABLE table_217785_2 (season VARCHAR, ranking VARCHAR)"}, {"answer": "SELECT COUNT(tv_season) FROM table_217785_2 WHERE viewers__in_millions_of_households_ = \"10.2\"", "question": "Which season received 10.2 million viewers?", "context": "CREATE TABLE table_217785_2 (tv_season VARCHAR, viewers__in_millions_of_households_ VARCHAR)"}, {"answer": "SELECT name FROM table_21795986_1 WHERE withdrawn = \"19/05/2002\"", "question": "When 19/05/2002 is the date of withdrawn what is the name?", "context": "CREATE TABLE table_21795986_1 (name VARCHAR, withdrawn VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_21795986_1 WHERE original_number = \"2008 T\"", "question": "When 2008 t is the original number what is the lowest year?", "context": "CREATE TABLE table_21795986_1 (year INTEGER, original_number VARCHAR)"}, {"answer": "SELECT original_number FROM table_21795986_1 WHERE withdrawn = \"9/07/1999\"", "question": "When  9/07/1999 is the date of withdrawn what is the original number?", "context": "CREATE TABLE table_21795986_1 (original_number VARCHAR, withdrawn VARCHAR)"}, {"answer": "SELECT stage__winner_ FROM table_21804557_18 WHERE metas_volantes_classification = \"Michael Albasini\"", "question": "WHO WAS THE STAGE WINNER IN THE STAGE WHERE MICHAEL ALBASINI WON THE METAS VOLANTES CLASSIFICATION?", "context": "CREATE TABLE table_21804557_18 (stage__winner_ VARCHAR, metas_volantes_classification VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_21804557_18 WHERE metas_volantes_classification = \"Michael Albasini\"", "question": "Who got the mountains classification when Michael Albasini won the stage?", "context": "CREATE TABLE table_21804557_18 (mountains_classification VARCHAR, metas_volantes_classification VARCHAR)"}, {"answer": "SELECT attendance FROM table_21796261_4 WHERE date = \"July 10\"", "question": "How many people were present at the July 10 game?", "context": "CREATE TABLE table_21796261_4 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT final_score FROM table_21796261_4 WHERE date = \"July 10\"", "question": "What was the final score of the game played on July 10?", "context": "CREATE TABLE table_21796261_4 (final_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_21796261_4 WHERE location = \"BC Place Stadium\"", "question": "What's the record achieved in the gamed played at BC Place Stadium?", "context": "CREATE TABLE table_21796261_4 (record VARCHAR, location VARCHAR)"}, {"answer": "SELECT week FROM table_21796261_4 WHERE date = \"July 10\"", "question": "During what week was the July 10 game played?", "context": "CREATE TABLE table_21796261_4 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_21796261_4 WHERE location = \"Taylor Field\"", "question": "When was the game on Taylor Field played?", "context": "CREATE TABLE table_21796261_4 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT 4 AS th_placed FROM table_21808535_1 WHERE winner = \"Greg Hancock\"", "question": "Who placed fourth when the winner was Greg Hancock?", "context": "CREATE TABLE table_21808535_1 (winner VARCHAR)"}, {"answer": "SELECT runner_up FROM table_21808535_1 WHERE date = \"September 11\"", "question": "Who was the runner-up on September 11?", "context": "CREATE TABLE table_21808535_1 (runner_up VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_21808535_1 WHERE date = \"July 10\"", "question": "How many rounds were on July 10?", "context": "CREATE TABLE table_21808535_1 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_2181798_1 WHERE avg_finish = \"18.5\"", "question": "Name the number of years for 18.5", "context": "CREATE TABLE table_2181798_1 (year VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_2181798_1 WHERE avg_finish = \"27.6\"", "question": "Name the max top 5 for avg finish being 27.6", "context": "CREATE TABLE table_2181798_1 (top_5 INTEGER, avg_finish VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_2181798_1 WHERE starts = 30", "question": "Name the number of wins for 30 starts", "context": "CREATE TABLE table_2181798_1 (wins VARCHAR, starts VARCHAR)"}, {"answer": "SELECT year FROM table_2181798_1 WHERE team_s_ = \"Donlavey Racing Bill Davis Racing\"", "question": "Name the year for  donlavey racing bill davis racing", "context": "CREATE TABLE table_2181798_1 (year VARCHAR, team_s_ VARCHAR)"}, {"answer": "SELECT starts FROM table_2181798_1 WHERE avg_start = \"23.7\"", "question": "Name the starts for 23.7", "context": "CREATE TABLE table_2181798_1 (starts VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_2181798_1 WHERE avg_start = \"23.7\"", "question": "Name the position for 23.7 avg start", "context": "CREATE TABLE table_2181798_1 (position VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_2182170_1 WHERE car_s_ = \"Chevrolet Monte Carlo\" AND listed_owner_s_ = \"Teresa Earnhardt\" AND driver_s_ = \"Paul Menard\"", "question": "What is the car number for the Chevrolet Monte Carlo that Teresa Earnhardt owns and Paul Menard is her driver?", "context": "CREATE TABLE table_2182170_1 (_number INTEGER, driver_s_ VARCHAR, car_s_ VARCHAR, listed_owner_s_ VARCHAR)"}, {"answer": "SELECT car_s_ FROM table_2182170_1 WHERE driver_s_ = \"Jeff Fuller\"", "question": "What type of car does Jeff Fuller drive?", "context": "CREATE TABLE table_2182170_1 (car_s_ VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT COUNT(car_s_) FROM table_2182170_1 WHERE listed_owner_s_ = \"Gregg Mixon\"", "question": "How many cars does Gregg Mixon own?", "context": "CREATE TABLE table_2182170_1 (car_s_ VARCHAR, listed_owner_s_ VARCHAR)"}, {"answer": "SELECT crew_chief FROM table_2182170_1 WHERE listed_owner_s_ = \"Wayne Day\"", "question": "Who is Wayne Day's crew chief?", "context": "CREATE TABLE table_2182170_1 (crew_chief VARCHAR, listed_owner_s_ VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_2182170_1 WHERE driver_s_ = \"Geoffrey Bodine\"", "question": "What number is on the car that Geoffrey Bodine drives?", "context": "CREATE TABLE table_2182170_1 (_number INTEGER, driver_s_ VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_2182654_3 WHERE no_in_series = 24", "question": "What episode number in the season is episode 24 in the series?", "context": "CREATE TABLE table_2182654_3 (no_in_season VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_2182654_3 WHERE directed_by = \"Jeremy Podeswa\"", "question": "How many episodes in the season were directed by Jeremy Podeswa?", "context": "CREATE TABLE table_2182654_3 (no_in_season VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_2182654_3 WHERE directed_by = \"Miguel Arteta\"", "question": "What is the name of the episode directed by Miguel Arteta?", "context": "CREATE TABLE table_2182654_3 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_2182654_3 WHERE directed_by = \"Alan Taylor\"", "question": "How many episodes in the series were directed by Alan Taylor?", "context": "CREATE TABLE table_2182654_3 (no_in_series VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(team_s_) FROM table_2182562_2 WHERE avg_start = \"12.9\"", "question": "How many different teams had an average start of 12.9?", "context": "CREATE TABLE table_2182562_2 (team_s_ VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT winnings FROM table_2182562_2 WHERE starts = 15", "question": "How high was the amount of winnings (in $) in the year with 15 starts?", "context": "CREATE TABLE table_2182562_2 (winnings VARCHAR, starts VARCHAR)"}, {"answer": "SELECT COUNT(winnings) FROM table_2182562_2 WHERE avg_finish = \"17.4\"", "question": "How many different amounts of winnings were there for the year when the team had an average finish of 17.4?", "context": "CREATE TABLE table_2182562_2 (winnings VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT MIN(top_5) FROM table_2182562_2 WHERE avg_finish = \"8.2\"", "question": "What was the top 5 in the year with an average finish of 8.2?", "context": "CREATE TABLE table_2182562_2 (top_5 INTEGER, avg_finish VARCHAR)"}, {"answer": "SELECT position FROM table_2182562_2 WHERE avg_finish = \"21.5\"", "question": "What was the position of the team with an average finish of 21.5?", "context": "CREATE TABLE table_2182562_2 (position VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_2182562_1 WHERE position = \"97th\"", "question": "How many years was the position 97th?", "context": "CREATE TABLE table_2182562_1 (year VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_2182562_1 WHERE avg_start = \"29.0\"", "question": "How many wins when the average start is 29.0?", "context": "CREATE TABLE table_2182562_1 (wins VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT avg_finish FROM table_2182562_1 WHERE winnings = \"$71,200\"", "question": "What is the average finish when winnings equals $71,200?", "context": "CREATE TABLE table_2182562_1 (avg_finish VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT year FROM table_2182562_1 WHERE winnings = \"$281,945\"", "question": "What year did the winnings equal $281,945?", "context": "CREATE TABLE table_2182562_1 (year VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT top_5 FROM table_2182562_1 WHERE avg_finish = \"40.3\"", "question": "What are the top 5 average finishes equalling 40.3?", "context": "CREATE TABLE table_2182562_1 (top_5 VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT written_by FROM table_21831229_3 WHERE no_in_series = 31", "question": "Who wrote episode 31 in the series?", "context": "CREATE TABLE table_21831229_3 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_us_air_date FROM table_21831229_3 WHERE prod_code = 213", "question": "What was the date that the episode with a production code of 213 was originally aired?", "context": "CREATE TABLE table_21831229_3 (original_us_air_date VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT opponents FROM table_2186447_1 WHERE score = \"5\u20137, 6\u20137 (4\u20137)\"", "question": "Who was playing when the score was 5\u20137, 6\u20137 (4\u20137)?", "context": "CREATE TABLE table_2186447_1 (opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_2186447_1 WHERE score = \"5\u20137, 5\u20137\"", "question": "Who was playing when the score was 5\u20137, 5\u20137?", "context": "CREATE TABLE table_2186447_1 (opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(partner) FROM table_2186447_1 WHERE score = \"7\u20136 (7\u20134) , 6\u20133\"", "question": "How many partners were there when the score was 7\u20136 (7\u20134) , 6\u20133?", "context": "CREATE TABLE table_2186447_1 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_21839208_4 WHERE opponent = \"Stampeders\"", "question": "What was their record when they played the stampeders?", "context": "CREATE TABLE table_21839208_4 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_21839208_4 WHERE week = 11", "question": "What was their record in week 11?", "context": "CREATE TABLE table_21839208_4 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_2187333_1", "question": "Name the least wins", "context": "CREATE TABLE table_2187333_1 (wins INTEGER)"}, {"answer": "SELECT avg_start FROM table_2187333_1 WHERE avg_finish = \"18.3\"", "question": "Name the avg start for avg finish of 18.3", "context": "CREATE TABLE table_2187333_1 (avg_start VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT year FROM table_2187333_1 WHERE team_s_ = \"#16 Roush Racing\" AND poles < 1.0", "question": "Name the year for #16 roush racing for poles less than smaller 1.0", "context": "CREATE TABLE table_2187333_1 (year VARCHAR, team_s_ VARCHAR, poles VARCHAR)"}, {"answer": "SELECT listed_owner_s_ FROM table_2187178_1 WHERE primary_sponsor_s_ = \"RepairOne\"", "question": "Name the listen owners for repairone", "context": "CREATE TABLE table_2187178_1 (listed_owner_s_ VARCHAR, primary_sponsor_s_ VARCHAR)"}, {"answer": "SELECT truck_s_ FROM table_2187178_1 WHERE crew_chief = \"Scott Neal\"", "question": "Name the trucks for scott neal", "context": "CREATE TABLE table_2187178_1 (truck_s_ VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT listed_owner_s_ FROM table_2187178_1 WHERE team = \"Brevak Racing\"", "question": "Name the listed owners for brevak racing", "context": "CREATE TABLE table_2187178_1 (listed_owner_s_ VARCHAR, team VARCHAR)"}, {"answer": "SELECT crew_chief FROM table_2187178_1 WHERE driver_s_ = \"Ricky Craven\"", "question": "Name the crew chief for ricky craven", "context": "CREATE TABLE table_2187178_1 (crew_chief VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_2187178_1 WHERE primary_sponsor_s_ = \"Superchips\"", "question": "Name the drivers for superchips", "context": "CREATE TABLE table_2187178_1 (driver_s_ VARCHAR, primary_sponsor_s_ VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_21904740_1 WHERE spanish_title = \"Viva Cuba\"", "question": "When was Viva Cuba submitted?", "context": "CREATE TABLE table_21904740_1 (year__ceremony_ VARCHAR, spanish_title VARCHAR)"}, {"answer": "SELECT name_or_number FROM table_2189647_1 WHERE yield__megatons_ = \"15\"", "question": "Name the name for 15 yield", "context": "CREATE TABLE table_2189647_1 (name_or_number VARCHAR, yield__megatons_ VARCHAR)"}, {"answer": "SELECT COUNT(state_rank_by_revenue) FROM table_21926985_2 WHERE known_for = \"Retailing\"", "question": "What is the rank of the company known for retailing?", "context": "CREATE TABLE table_21926985_2 (state_rank_by_revenue VARCHAR, known_for VARCHAR)"}, {"answer": "SELECT state_rank_by_revenue FROM table_21926985_2 WHERE company_name = \"Murphy Oil\"", "question": "What is the rank for Murphy Oil?", "context": "CREATE TABLE table_21926985_2 (state_rank_by_revenue VARCHAR, company_name VARCHAR)"}, {"answer": "SELECT headquarters_city FROM table_21926985_2 WHERE revenue__$billions__2012_estimate = \"33.3\"", "question": "Where is the company with estimated revenue of 33.3 billion headquartered?", "context": "CREATE TABLE table_21926985_2 (headquarters_city VARCHAR, revenue__$billions__2012_estimate VARCHAR)"}, {"answer": "SELECT MIN(national_rank) FROM table_21926985_2 WHERE company_name = \"Windstream\"", "question": "What is the national rank of Windstream?", "context": "CREATE TABLE table_21926985_2 (national_rank INTEGER, company_name VARCHAR)"}, {"answer": "SELECT state_rank_by_revenue FROM table_21926985_2 WHERE revenue__$billions__2012_estimate = \"6.8\"", "question": "What is the state rank of the company with 6.8 billion in revenue?", "context": "CREATE TABLE table_21926985_2 (state_rank_by_revenue VARCHAR, revenue__$billions__2012_estimate VARCHAR)"}, {"answer": "SELECT entrant FROM table_21977704_1 WHERE driver = \"Benedicto Campos\"", "question": "Name the entrant for benedicto campos", "context": "CREATE TABLE table_21977704_1 (entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT no FROM table_21977704_1 WHERE entrant = \"Autom\u00f3vil Club Argentino\" AND driver = \"Juan Manuel Fangio\"", "question": "Name the number for  autom\u00f3vil club argentino for juan manuel fangio", "context": "CREATE TABLE table_21977704_1 (no VARCHAR, entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_21977704_1 WHERE entrant = \"Autom\u00f3vil Club Argentino\" AND driver = \"Benedicto Campos\"", "question": "Name the most number for autom\u00f3vil club argentino for benedicto campos", "context": "CREATE TABLE table_21977704_1 (no INTEGER, entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_21977704_1 WHERE engine = \"Talbot L6\"", "question": "Name the driver for talbot l6", "context": "CREATE TABLE table_21977704_1 (driver VARCHAR, engine VARCHAR)"}, {"answer": "SELECT constructor FROM table_21977704_1 WHERE driver = \"Alberto Ascari\"", "question": "Name the constructor for alberto ascari", "context": "CREATE TABLE table_21977704_1 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT chassis FROM table_21977704_1 WHERE constructor = \"Alta\"", "question": "Name the chassis for alta", "context": "CREATE TABLE table_21977704_1 (chassis VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_21977627_1 WHERE chassis = \"Maserati 4CL\"", "question": "The Maserati 4cl's minimum no was?", "context": "CREATE TABLE table_21977627_1 (no INTEGER, chassis VARCHAR)"}, {"answer": "SELECT COUNT(entrant) FROM table_21977627_1 WHERE driver = \"Yves Giraud-Cabantous\"", "question": "How many entrants was yves giraud-cabantous?", "context": "CREATE TABLE table_21977627_1 (entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT chassis FROM table_21977627_1 WHERE engine = \"Maserati L6s\"", "question": "What chasis did the maserati l6s have?", "context": "CREATE TABLE table_21977627_1 (chassis VARCHAR, engine VARCHAR)"}, {"answer": "SELECT COUNT(driver) FROM table_21977627_1 WHERE entrant = \"Bob Gerard Racing\"", "question": "How many drivers did Bob Gerard Racing have?", "context": "CREATE TABLE table_21977627_1 (driver VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT COUNT(pts_agst) FROM table_21991074_1 WHERE points = 7", "question": "For the team with 7 points, how many points were scored against this season?", "context": "CREATE TABLE table_21991074_1 (pts_agst VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(pts_agst) FROM table_21991074_1", "question": "What is the maximum number of points scored against?", "context": "CREATE TABLE table_21991074_1 (pts_agst INTEGER)"}, {"answer": "SELECT average FROM table_21991074_1 WHERE club = \"Chesterfield Spires\"", "question": "What is Chesterfield Spires average?", "context": "CREATE TABLE table_21991074_1 (average VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(january__) AS \u00b0c_ FROM table_21980_1 WHERE july__\u00b0c_ = \"22/13\"", "question": "What is the total number of January (\u00b0C) temperatures when the July (\u00b0C) temperatures were 22/13?", "context": "CREATE TABLE table_21980_1 (january__ VARCHAR, july__\u00b0c_ VARCHAR)"}, {"answer": "SELECT COUNT(january__) AS \u00b0c_ FROM table_21980_1 WHERE july__\u00b0c_ = \"23/15\"", "question": "What is the total number of January (\u00b0C) temperatures when the July (\u00b0C) temperatures were 23/15?", "context": "CREATE TABLE table_21980_1 (january__ VARCHAR, july__\u00b0c_ VARCHAR)"}, {"answer": "SELECT location FROM table_21980_1 WHERE january__\u00b0f_ = \"30/17\"", "question": "In what location were the January (\u00b0F) temperatures 30/17?", "context": "CREATE TABLE table_21980_1 (location VARCHAR, january__\u00b0f_ VARCHAR)"}, {"answer": "SELECT july__\u00b0c_ FROM table_21980_1 WHERE july__\u00b0f_ = \"71/55\"", "question": "What were the  July (\u00b0C) temperatures when the July (\u00b0F) temperatures were 71/55?", "context": "CREATE TABLE table_21980_1 (july__\u00b0c_ VARCHAR, july__\u00b0f_ VARCHAR)"}, {"answer": "SELECT january__\u00b0f_ FROM table_21980_1 WHERE location = \"Corner Brook\"", "question": "What were the  January (\u00b0F) temperatures in the Corner Brook location?", "context": "CREATE TABLE table_21980_1 (january__\u00b0f_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(pts_agst) FROM table_21991074_3", "question": "Name the most points agst", "context": "CREATE TABLE table_21991074_3 (pts_agst INTEGER)"}, {"answer": "SELECT MIN(lost) FROM table_21991074_3", "question": "Name the least lost", "context": "CREATE TABLE table_21991074_3 (lost INTEGER)"}, {"answer": "SELECT written_by FROM table_21979779_1 WHERE us_viewers__million_ = \"3.07\"", "question": "who are the writers of the episode that had 3.07 millions of North American spectators?", "context": "CREATE TABLE table_21979779_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_21979779_1 WHERE production_code = \"2T7211\"", "question": "what is the biggest series episode number whose production code is 2t7211?", "context": "CREATE TABLE table_21979779_1 (no INTEGER, production_code VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_21979779_1 WHERE production_code = \"2T7211\"", "question": "what is the smallest series episode number whose production code is 2t7211?", "context": "CREATE TABLE table_21979779_1 (no INTEGER, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_21979779_1 WHERE us_viewers__million_ = \"1.76\"", "question": "when was the premiere of the episode where the amount of North American spectators was 1.76 millions?", "context": "CREATE TABLE table_21979779_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_21994729_3 WHERE prod_code = \"2APX05\"", "question": "how many maximum series number have 2apx05 prod. code.", "context": "CREATE TABLE table_21994729_3 (series__number INTEGER, prod_code VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_21994729_3 WHERE directed_by = \"Reginald Hudlin\"", "question": "What are all the title directed by reginald hudlin", "context": "CREATE TABLE table_21994729_3 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_21994729_3 WHERE directed_by = \"Reginald Hudlin\"", "question": "reginald hudlin directed how many written by.", "context": "CREATE TABLE table_21994729_3 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_21994729_2 WHERE prod_code = \"1APX11\"", "question": "Who wore the episode with the production code of 1apx11?", "context": "CREATE TABLE table_21994729_2 (written_by VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT total FROM table_21995420_9 WHERE rank = 11", "question": "If the rank is 11, what is the total amount?", "context": "CREATE TABLE table_21995420_9 (total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT stunts FROM table_21995420_9 WHERE school = \"Central Colleges of the Philippines CCP Bobcats\"", "question": "If the school is Central Colleges of the Philippines CCP Bobcats, what is the stunts number?", "context": "CREATE TABLE table_21995420_9 (stunts VARCHAR, school VARCHAR)"}, {"answer": "SELECT 08 AS _pts FROM table_22011138_7 WHERE pos = 3", "question": "If the POS is 3, what is the 08 points?", "context": "CREATE TABLE table_22011138_7 (pos VARCHAR)"}, {"answer": "SELECT 08 AS _pts FROM table_22011138_7 WHERE team = \"Rubio \u00d1\u00fa\"", "question": "If the team is Rubio \u00f1\u00fa, what is the 08 points?", "context": "CREATE TABLE table_22011138_7 (team VARCHAR)"}, {"answer": "SELECT MAX(total_pts) FROM table_22011138_7 WHERE avg = \"1.2803\"", "question": "If the average is 1.2803, what is the total points maximum?", "context": "CREATE TABLE table_22011138_7 (total_pts INTEGER, avg VARCHAR)"}, {"answer": "SELECT total_pld FROM table_22011138_7 WHERE pos = 4", "question": "If the POS is 4, what is the total PLD?", "context": "CREATE TABLE table_22011138_7 (total_pld VARCHAR, pos VARCHAR)"}, {"answer": "SELECT team_name FROM table_22014431_3 WHERE total = \"243\"", "question": "What is the team name when 243 is the total?", "context": "CREATE TABLE table_22014431_3 (team_name VARCHAR, total VARCHAR)"}, {"answer": "SELECT team_name FROM table_22014431_3 WHERE tumbling = \"44.5\"", "question": "Which team names have 44.5 for tumbling?", "context": "CREATE TABLE table_22014431_3 (team_name VARCHAR, tumbling VARCHAR)"}, {"answer": "SELECT total FROM table_22014431_3 WHERE tosses_pyramids = \"44\"", "question": "What is the total if 44 is tosses/pyramids?", "context": "CREATE TABLE table_22014431_3 (total VARCHAR, tosses_pyramids VARCHAR)"}, {"answer": "SELECT deductions FROM table_22014431_3 WHERE tosses_pyramids = \"56.5\"", "question": "How many deductions have 56.5 as tosses/pyramids?", "context": "CREATE TABLE table_22014431_3 (deductions VARCHAR, tosses_pyramids VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_22014431_3 WHERE tumbling = \"36.5\"", "question": "What is the rank when 36.5 is tumbling?", "context": "CREATE TABLE table_22014431_3 (rank VARCHAR, tumbling VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_22014431_3 WHERE tosses_pyramids = \"64.5\"", "question": "What is the rank when 64.5 is tosses/pyramids?", "context": "CREATE TABLE table_22014431_3 (rank INTEGER, tosses_pyramids VARCHAR)"}, {"answer": "SELECT COUNT(outcome) FROM table_2201724_2 WHERE championship = \"French championships\"", "question": "How many different outcomes of the French Championships were there?", "context": "CREATE TABLE table_2201724_2 (outcome VARCHAR, championship VARCHAR)"}, {"answer": "SELECT COUNT(score_in_the_final) FROM table_2201724_2 WHERE year = 1963", "question": "How many different final scores were there in 1963?", "context": "CREATE TABLE table_2201724_2 (score_in_the_final VARCHAR, year VARCHAR)"}, {"answer": "SELECT director FROM table_22020724_1 WHERE film_title_used_in_nomination = \"Steam of Life\"", "question": "Who directed the film titled 'Steam of Life'?", "context": "CREATE TABLE table_22020724_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_22020724_1 WHERE title_in_the_original_language = \"Tummien perhosten koti\"", "question": "What year was the ceremony where the film 'Tummien Perhosten Koti' was submitted?", "context": "CREATE TABLE table_22020724_1 (year__ceremony_ VARCHAR, title_in_the_original_language VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_22020724_1 WHERE title_in_the_original_language = \"Joki\"", "question": "What are the results for the film titled 'Joki'?", "context": "CREATE TABLE table_22020724_1 (result VARCHAR, title_in_the_original_language VARCHAR)"}, {"answer": "SELECT domestic_box_office FROM table_2203760_4 WHERE foreign_box_office = \"$26,600,000\"", "question": "What was the domestic box office for the film that had a foreign box office of $26,600,000?", "context": "CREATE TABLE table_2203760_4 (domestic_box_office VARCHAR, foreign_box_office VARCHAR)"}, {"answer": "SELECT domestic_box_office FROM table_2203760_4 WHERE film = \"House on Haunted Hill\"", "question": "What was the domestic box office for \"House on Haunted Hill\"?", "context": "CREATE TABLE table_2203760_4 (domestic_box_office VARCHAR, film VARCHAR)"}, {"answer": "SELECT budget FROM table_2203760_4 WHERE film = \"Thirteen Ghosts\"", "question": "What was the budget for \"Thirteen Ghosts\"?", "context": "CREATE TABLE table_2203760_4 (budget VARCHAR, film VARCHAR)"}, {"answer": "SELECT school FROM table_22043925_1 WHERE location = \"Adelaide\"", "question": "What is every school for the Adelaide location?", "context": "CREATE TABLE table_22043925_1 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_22043925_1 WHERE enrolment = 850", "question": "How many values for founded when enrollment is 850?", "context": "CREATE TABLE table_22043925_1 (founded VARCHAR, enrolment VARCHAR)"}, {"answer": "SELECT denomination FROM table_22043925_1 WHERE school = \"Seymour College\"", "question": "What is every denomination for the school Seymour college?", "context": "CREATE TABLE table_22043925_1 (denomination VARCHAR, school VARCHAR)"}, {"answer": "SELECT date FROM table_22050544_3 WHERE event__number = \"38M\"", "question": "Event number 38m was held on which date? ", "context": "CREATE TABLE table_22050544_3 (date VARCHAR, event__number VARCHAR)"}, {"answer": "SELECT winner FROM table_22050544_3 WHERE event = \"$109 No Limit Hold'em w/rebuys [Turbo]\"", "question": "Who won the $109 no limit hold'em w/rebuys [turbo]?", "context": "CREATE TABLE table_22050544_3 (winner VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_22050544_3 WHERE entries = \"25,883\"", "question": "Which event had 25,883 entries? ", "context": "CREATE TABLE table_22050544_3 (event VARCHAR, entries VARCHAR)"}, {"answer": "SELECT COUNT(elapsed_time) FROM table_22050544_3 WHERE event = \"$16.50 Fixed-Limit Badugi\"", "question": "How many categories for elapsed time exist for the $16.50 fixed-limit badugi game?", "context": "CREATE TABLE table_22050544_3 (elapsed_time VARCHAR, event VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_22032599_1 WHERE director = \"Jaroslav Vojtek Category:Articles with hCards\"", "question": "What year did jaroslav vojtek category:articles with hcards Direct?", "context": "CREATE TABLE table_22032599_1 (year__ceremony_ VARCHAR, director VARCHAR)"}, {"answer": "SELECT result FROM table_22032599_1 WHERE film_title_used_in_nomination = \"Gypsy\"", "question": "What was the result for Gypsy?", "context": "CREATE TABLE table_22032599_1 (result VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT COUNT(film_title_used_in_nomination) FROM table_22032599_1 WHERE director = \"Martin Repka Category:Articles with hCards\"", "question": "HOw many films did martin repka category:articles with hcards direct?", "context": "CREATE TABLE table_22032599_1 (film_title_used_in_nomination VARCHAR, director VARCHAR)"}, {"answer": "SELECT result FROM table_22032599_1 WHERE film_title_used_in_nomination = \"City of the Sun\"", "question": "What was the result for City of the Sun?", "context": "CREATE TABLE table_22032599_1 (result VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT language_s_ FROM table_22034853_1 WHERE film_title_used_in_nomination = \"Late Bloomers\"", "question": "What was the language for the movie \"Late Bloomers\"?", "context": "CREATE TABLE table_22034853_1 (language_s_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT COUNT(original_title) FROM table_22034853_1 WHERE film_title_used_in_nomination = \"If the Sun Never Returns\"", "question": "How many original titles were listed as \"If the Sun Never Returns\"?", "context": "CREATE TABLE table_22034853_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT language_s_ FROM table_22034853_1 WHERE film_title_used_in_nomination = \"Mein Name Ist Bach\"", "question": "What was the language of \"Mein Name Ist Bach\"?", "context": "CREATE TABLE table_22034853_1 (language_s_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_22034853_1 WHERE original_title = \"Vitus\"", "question": "What was the year for the film \"Vitus\"?", "context": "CREATE TABLE table_22034853_1 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT COUNT(film_title_used_in_nomination) FROM table_22034853_1 WHERE original_title = \"Dans la ville blanche\"", "question": "How many films are titled \"Dans la Ville Blanche\"?", "context": "CREATE TABLE table_22034853_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_22053239_1 WHERE us_viewers__millions_ = \"5.35\"", "question": "How many of the writers had 5.35 viewers?", "context": "CREATE TABLE table_22053239_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT elapsed_time FROM table_22050544_4 WHERE prize = \"$9,377.42\"", "question": "What was the elapsed time for the championship that had $9,377.42 in prize money? ", "context": "CREATE TABLE table_22050544_4 (elapsed_time VARCHAR, prize VARCHAR)"}, {"answer": "SELECT prize AS Pool FROM table_22050544_4 WHERE event__number = \"27H\"", "question": "What was the prize pool for the event number 27H? ", "context": "CREATE TABLE table_22050544_4 (prize VARCHAR, event__number VARCHAR)"}, {"answer": "SELECT event FROM table_22050544_4 WHERE event__number = \"8M\"", "question": "What is the event name with the number 8M? ", "context": "CREATE TABLE table_22050544_4 (event VARCHAR, event__number VARCHAR)"}, {"answer": "SELECT COUNT(1980 AS __mil_) FROM table_22071705_6 WHERE country = \"Soviet Union\"", "question": "Name the total number 1980 mil for soviet union", "context": "CREATE TABLE table_22071705_6 (country VARCHAR)"}, {"answer": "SELECT COUNT(languages) FROM table_22073745_1 WHERE film_title_used_in_nomination = \"Elles\"", "question": "How many languages have elles as the film title used in nomination?", "context": "CREATE TABLE table_22073745_1 (languages VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT COUNT(languages) FROM table_22073745_1 WHERE film_title_used_in_nomination = \"Refractaire\"", "question": "How many languages is refractaire as the film title used in nomination?", "context": "CREATE TABLE table_22073745_1 (languages VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT COUNT(languages) FROM table_22073745_1 WHERE original_title = \"Le Roman de Renart\"", "question": "How many languages have le roman de renart as the original title?", "context": "CREATE TABLE table_22073745_1 (languages VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT director FROM table_22073745_1 WHERE original_title = \"Perl oder Pica\"", "question": "Who is the director of the original title perl oder pica?", "context": "CREATE TABLE table_22073745_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT result FROM table_22073745_1 WHERE year__ceremony_ = \"2005 (78th)\"", "question": "What is the result of the 2005 (78th) year ceremony?", "context": "CREATE TABLE table_22073745_1 (result VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT title FROM table_22078691_2 WHERE us_viewers__millions_ = \"14.59\"", "question": "What is the title that has 14.59 u.s. viewers (millions)?", "context": "CREATE TABLE table_22078691_2 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_22078691_2 WHERE us_viewers__millions_ = \"13.59\"", "question": "What is the title that had 13.59 u.s. viewers  (millions)?", "context": "CREATE TABLE table_22078691_2 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT money_list_rank FROM table_22081847_1 WHERE earnings__$_ = \"309,886\"", "question": "If the earning amount is $309,886, what is the money list ranking?", "context": "CREATE TABLE table_22081847_1 (money_list_rank VARCHAR, earnings__$_ VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_22081847_1", "question": "What was the maximum number of wins?", "context": "CREATE TABLE table_22081847_1 (wins INTEGER)"}, {"answer": "SELECT scoring_average FROM table_22081847_1 WHERE year = 2010", "question": "If the year is 2010, what was the average score?", "context": "CREATE TABLE table_22081847_1 (scoring_average VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(event) FROM table_22083044_2 WHERE fastest_lap = \"Tim Macrow\" AND pole_position = \"Joey Foster\"", "question": "How many times did Tim Macrow and Joey Foster both got the fastest lap and pole position respectively?", "context": "CREATE TABLE table_22083044_2 (event VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT winning_team FROM table_22083044_2 WHERE circuit = \"Queensland Raceway\" AND fastest_lap = \"Tim Macrow\"", "question": "What was the winning team where Tim Macrow won the fastest lap on Queensland Raceway circuit?", "context": "CREATE TABLE table_22083044_2 (winning_team VARCHAR, circuit VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_22078972_2 WHERE written_by = \"David North\"", "question": "What's the series number of the episode whose writer is David North?", "context": "CREATE TABLE table_22078972_2 (no_in_series INTEGER, written_by VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_22078972_2 WHERE us_viewers__millions_ = \"17.04\"", "question": "What's the series number of the episode seen by 17.04 million people in the US?", "context": "CREATE TABLE table_22078972_2 (no_in_series INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_22078972_2 WHERE us_viewers__millions_ = \"18.15\"", "question": "What's the title of the episode first seen by 18.15 million people in the US?", "context": "CREATE TABLE table_22078972_2 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_22078972_2 WHERE no_in_series = 103", "question": "How many millions of people in the US saw the episode with series number 103?", "context": "CREATE TABLE table_22078972_2 (us_viewers__millions_ VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_22078906_2 WHERE us_viewers__millions_ = \"15.89\"", "question": "What number episode in the series was watched by 15.89 million U.S. viewers? ", "context": "CREATE TABLE table_22078906_2 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_22078906_2 WHERE directed_by = \"William Webb\"", "question": "What is the title of the episode directed by William Webb? ", "context": "CREATE TABLE table_22078906_2 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT result FROM table_2208838_2 WHERE runner_up = \"River Plate\"", "question": "What was the final score when River Plate was the runner-up?", "context": "CREATE TABLE table_2208838_2 (result VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT spent_per_voter___php__ FROM table_22097588_9 WHERE amount_spent___php__ = \"210,280,000\"", "question": "What was spent per voter when total amount spent was 210,280,000?", "context": "CREATE TABLE table_22097588_9 (spent_per_voter___php__ VARCHAR, amount_spent___php__ VARCHAR)"}, {"answer": "SELECT spent_per_voter___php__ FROM table_22097588_9 WHERE spent_per_vote___php__ = \"20.07\"", "question": "What was spent per voter when the spent per vote was 20.07?", "context": "CREATE TABLE table_22097588_9 (spent_per_voter___php__ VARCHAR, spent_per_vote___php__ VARCHAR)"}, {"answer": "SELECT shows___sellout FROM table_22123920_4 WHERE sellout___percentage_ = \"75%\"", "question": "Between November 25\u201330, 2008 the sellout rate was at 75%, indicating that the ration between shows to sellout was what?", "context": "CREATE TABLE table_22123920_4 (shows___sellout VARCHAR, sellout___percentage_ VARCHAR)"}, {"answer": "SELECT tickets_sold___available FROM table_22123920_4 WHERE gross_sales = \"$2,628,457\"", "question": "During the period in which gross sales totals for \"The Show Girl Must Go On\" reached $2,628,457, what did the numbers show for tickets sold/ available at the box office? ", "context": "CREATE TABLE table_22123920_4 (tickets_sold___available VARCHAR, gross_sales VARCHAR)"}, {"answer": "SELECT dates__mdy_ FROM table_22123920_4 WHERE gross_sales = \"$2,877,906\"", "question": "Which specific dates encompass the time period when \"The Show Girl Must Go On\" showed a gross sales figure total of $2,877,906?", "context": "CREATE TABLE table_22123920_4 (dates__mdy_ VARCHAR, gross_sales VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_22102732_1 WHERE english_title = \"Time Out\"", "question": "What year and the corresponding ceremony was the english titled movie \"time out\" submitted?", "context": "CREATE TABLE table_22102732_1 (year__ceremony_ VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT COUNT(english_title) FROM table_22102732_1 WHERE director = \"Carlos Moreno\"", "question": "How many english titles were directed by carlos moreno?", "context": "CREATE TABLE table_22102732_1 (english_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT rank_number FROM table_22098274_1 WHERE winning_pitcher = \"Kelli Miller\"", "question": "What is the rank # of kelli miller the winning pitcher?", "context": "CREATE TABLE table_22098274_1 (rank_number VARCHAR, winning_pitcher VARCHAR)"}, {"answer": "SELECT COUNT(site) FROM table_22098274_1 WHERE date = \"May 1, 2004\"", "question": "How many number of site have May 1, 2004 as the date?", "context": "CREATE TABLE table_22098274_1 (site VARCHAR, date VARCHAR)"}, {"answer": "SELECT time FROM table_22098274_1 WHERE site = \"USF Softball Field \u2022 Tampa, FL\" AND result = \"W4-0\"", "question": "At what time is the site usf softball field \u2022 tampa, fl and w4-0 is the result?", "context": "CREATE TABLE table_22098274_1 (time VARCHAR, site VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_22118197_1 WHERE english_title = \"Morning Undersea\"", "question": "What was the result for the film with the English name of Morning Undersea? ", "context": "CREATE TABLE table_22118197_1 (result VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT result FROM table_22118197_1 WHERE portuguese_title = \"Um Filme Falado\"", "question": "What was the result of the film with the Portuguese title, Um Filme Falado? ", "context": "CREATE TABLE table_22118197_1 (result VARCHAR, portuguese_title VARCHAR)"}, {"answer": "SELECT portuguese_title FROM table_22118197_1 WHERE english_title = \"Belle Toujours\"", "question": "What is the Portuguese name of the film who's English title is, Belle Toujours? ", "context": "CREATE TABLE table_22118197_1 (portuguese_title VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT result FROM table_22128871_1 WHERE year__ceremony_ = \"2007 (80th)\"", "question": "What is every result for the ceremony year of 2007 (80th)?", "context": "CREATE TABLE table_22128871_1 (result VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT english_title FROM table_22128871_1 WHERE result = \"Nominee\"", "question": "What is every English title for the result of nominee?", "context": "CREATE TABLE table_22128871_1 (english_title VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_22128871_1 WHERE vietnamese_title = \"Gate, gate, paragate\"", "question": "How many directors have vietnamese titles of Gate, Gate, Paragate?", "context": "CREATE TABLE table_22128871_1 (director VARCHAR, vietnamese_title VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_22128871_1 WHERE result = \"Nominee\"", "question": "What is every ceremony year for the result of nominee?", "context": "CREATE TABLE table_22128871_1 (year__ceremony_ VARCHAR, result VARCHAR)"}, {"answer": "SELECT pilot FROM table_221315_3 WHERE max_altitude__miles_ = \"55.9\"", "question": "Who was the pilot of max altitude of 55.9 miles?", "context": "CREATE TABLE table_221315_3 (pilot VARCHAR, max_altitude__miles_ VARCHAR)"}, {"answer": "SELECT MAX(fai_space_flights) FROM table_221315_3 WHERE max_mach = \"5.65\"", "question": "What is the highest number of fai space flights when max mach is 5.65?", "context": "CREATE TABLE table_221315_3 (fai_space_flights INTEGER, max_mach VARCHAR)"}, {"answer": "SELECT max_altitude__miles_ FROM table_221315_3 WHERE pilot = \"Neil Armstrong\"", "question": "What was the maximum altitude for Neil Armstrong?", "context": "CREATE TABLE table_221315_3 (max_altitude__miles_ VARCHAR, pilot VARCHAR)"}, {"answer": "SELECT COUNT(max_speed__mph_) FROM table_221315_3 WHERE usaf_space_flights = 1 AND total_flights = 34", "question": "How many numbers were recorded under max speed for 1 USAF space flight and total flights 34?", "context": "CREATE TABLE table_221315_3 (max_speed__mph_ VARCHAR, usaf_space_flights VARCHAR, total_flights VARCHAR)"}, {"answer": "SELECT usaf_space_flights FROM table_221315_3 WHERE max_speed__mph_ = 3822", "question": "What were all USAF space flights when the aximum speed was 3822?", "context": "CREATE TABLE table_221315_3 (usaf_space_flights VARCHAR, max_speed__mph_ VARCHAR)"}, {"answer": "SELECT max_mach FROM table_221315_3 WHERE max_speed__mph_ = 3887", "question": "What was the max mach when the maximum speed was 3887?", "context": "CREATE TABLE table_221315_3 (max_mach VARCHAR, max_speed__mph_ VARCHAR)"}, {"answer": "SELECT away_leg FROM table_2214582_1 WHERE round = 1 AND aggregate = \"2-0\"", "question": "What is the record for the away leg in round 1 and aggregate 2-0?", "context": "CREATE TABLE table_2214582_1 (away_leg VARCHAR, round VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT COUNT(parishes) FROM table_221375_1 WHERE province_of_1936 = \"Beira Baixa Province\"", "question": "Name the parishes for  beira baixa province", "context": "CREATE TABLE table_221375_1 (parishes VARCHAR, province_of_1936 VARCHAR)"}, {"answer": "SELECT MAX(municipalities) FROM table_221375_1 WHERE province_of_1936 = \"Alto Alentejo Province (partly Ribatejo)\"", "question": "Name the most municipalities for alto alentejo province (partly ribatejo)", "context": "CREATE TABLE table_221375_1 (municipalities INTEGER, province_of_1936 VARCHAR)"}, {"answer": "SELECT province_of_1936 FROM table_221375_1 WHERE district = \"Viana do Castelo\"", "question": "Name province of 1936  viana do castelo", "context": "CREATE TABLE table_221375_1 (province_of_1936 VARCHAR, district VARCHAR)"}, {"answer": "SELECT score FROM table_2215159_2 WHERE partner = \"Rafael Osuna\"", "question": "What was the score when the partner is Rafael Osuna?", "context": "CREATE TABLE table_2215159_2 (score VARCHAR, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_2215159_2 WHERE partner = \"Rafael Osuna\"", "question": "What was the outcome of the game when the partner is Rafael Osuna?", "context": "CREATE TABLE table_2215159_2 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT surface FROM table_2215159_2 WHERE championship = \"French championships\"", "question": "What is the surface of the French Championships?", "context": "CREATE TABLE table_2215159_2 (surface VARCHAR, championship VARCHAR)"}, {"answer": "SELECT COUNT(outcome) FROM table_2215159_2 WHERE surface = \"Grass\" AND partner = \"Chuck McKinley\" AND year = 1962", "question": "How many outcomes were there for matches played with Chuck McKinley on grass in 1962?", "context": "CREATE TABLE table_2215159_2 (outcome VARCHAR, year VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT home_leg FROM table_2214582_3 WHERE opponents = \"Partizani Tirana\"", "question": "What was the home leg score against partizani tirana?", "context": "CREATE TABLE table_2214582_3 (home_leg VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_2214582_3 WHERE opponents = \"FC St. Gallen\"", "question": "What round did they face fc st. gallen?", "context": "CREATE TABLE table_2214582_3 (round VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT home_leg FROM table_2214582_3 WHERE opponents = \"FC Schalke 04\"", "question": "What was the home leg score against fc schalke 04?", "context": "CREATE TABLE table_2214582_3 (home_leg VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT COUNT(dfb_pokal) FROM table_22167196_1 WHERE player = \"Kevin-Prince Boateng\"", "question": "How many dfb-pokal did kevin-prince boateng have?", "context": "CREATE TABLE table_22167196_1 (dfb_pokal VARCHAR, player VARCHAR)"}, {"answer": "SELECT head_coach FROM table_22165661_3 WHERE championship_game_opponent = \"Miami University\"", "question": "Who is the head coach when Miami University is the championship game opponent?", "context": "CREATE TABLE table_22165661_3 (head_coach VARCHAR, championship_game_opponent VARCHAR)"}, {"answer": "SELECT location FROM table_22165661_3 WHERE score = \"2-1\"", "question": "What is the location when 2-1 is the score?", "context": "CREATE TABLE table_22165661_3 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT conference FROM table_22165661_3 WHERE championship_game_opponent = \"Ferris State\"", "question": "What is the conference when Ferris State is the championship game opponent?", "context": "CREATE TABLE table_22165661_3 (conference VARCHAR, championship_game_opponent VARCHAR)"}, {"answer": "SELECT location FROM table_22165661_3 WHERE tournament = 1999", "question": "What is the location of the 1999 tournament?", "context": "CREATE TABLE table_22165661_3 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_22165661_3 WHERE championship_game_opponent = \"Miami University\"", "question": "How many scores are there when the championship game opponent is Miami University?", "context": "CREATE TABLE table_22165661_3 (score VARCHAR, championship_game_opponent VARCHAR)"}, {"answer": "SELECT head_coach FROM table_22165661_3 WHERE score = \"4-3\"", "question": "Who is the head coach for the score of 4-3?", "context": "CREATE TABLE table_22165661_3 (head_coach VARCHAR, score VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_221653_1 WHERE platelet_count = \"Decreased or unaffected\"", "question": "What is the bleeding time when the  platelet count is decreased or unaffected?", "context": "CREATE TABLE table_221653_1 (bleeding_time VARCHAR, platelet_count VARCHAR)"}, {"answer": "SELECT partial_thromboplastin_time FROM table_221653_1 WHERE condition = \"Factor X deficiency as seen in amyloid purpura\"", "question": "What is the partial thromboplastin time when the condition  factor x deficiency as seen in amyloid purpura?", "context": "CREATE TABLE table_221653_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT COUNT(platelet_count) FROM table_221653_1 WHERE prothrombin_time = \"Prolonged\" AND bleeding_time = \"Prolonged\"", "question": "How many time does the platelet count occur when prothrombin time and bleeding time are prolonged?", "context": "CREATE TABLE table_221653_1 (platelet_count VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT COUNT(bleeding_time) FROM table_221653_1 WHERE condition = \"Disseminated intravascular coagulation\"", "question": "What is the bleeding time for the disseminated intravascular coagulation condition?", "context": "CREATE TABLE table_221653_1 (bleeding_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT partial_thromboplastin_time FROM table_221653_1 WHERE prothrombin_time = \"Prolonged\" AND bleeding_time = \"Prolonged\"", "question": "What is the result for partial thromboplastin time when prothrombin time and bleeding time are prolonged?", "context": "CREATE TABLE table_221653_1 (partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT platelet_count FROM table_221653_1 WHERE partial_thromboplastin_time = \"Unaffected\" AND bleeding_time = \"Unaffected\"", "question": "What is the platelet count when partial thromboplastin time and bleeding time are unaffected?", "context": "CREATE TABLE table_221653_1 (platelet_count VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT MIN(top_50_ranking) FROM table_22170495_7 WHERE title = \"The God-Why-Don't-You-Love-Me Blues\"", "question": "What is the lowest top 50 ranking that the episode titled \"the god-why-don't-you-love-me blues\" received?", "context": "CREATE TABLE table_22170495_7 (top_50_ranking INTEGER, title VARCHAR)"}, {"answer": "SELECT title FROM table_22170495_7 WHERE original_airing = \"April 19, 2010\"", "question": "Which episodes originally aired on April 19, 2010?", "context": "CREATE TABLE table_22170495_7 (title VARCHAR, original_airing VARCHAR)"}, {"answer": "SELECT MIN(scripted_show_ranking) FROM table_22170495_7 WHERE title = \"Epiphany\"", "question": "The episode titled \"Epiphany\" received what scripted show ranking?", "context": "CREATE TABLE table_22170495_7 (scripted_show_ranking INTEGER, title VARCHAR)"}, {"answer": "SELECT COUNT(top_50_ranking) FROM table_22170495_7 WHERE original_airing = \"June 28, 2010\"", "question": "How many of the episodes in the top 50 rankings were originally aired on June 28, 2010?", "context": "CREATE TABLE table_22170495_7 (top_50_ranking VARCHAR, original_airing VARCHAR)"}, {"answer": "SELECT athletic_nickname FROM table_22171978_1 WHERE location = \"Quezon City , Metro Manila\"", "question": "For the location of quezon city , metro manila what is the athletic nickname?", "context": "CREATE TABLE table_22171978_1 (athletic_nickname VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_22171978_1 WHERE athletic_nickname = \"Blue Crusaders\"", "question": "How many locations are there for the athletic nickname is blue crusaders?", "context": "CREATE TABLE table_22171978_1 (location VARCHAR, athletic_nickname VARCHAR)"}, {"answer": "SELECT COUNT(school_colors) FROM table_22171978_1 WHERE location = \"Naga , Camarines Sur\"", "question": "How many entries are shown for school colors for the location of naga , camarines sur?", "context": "CREATE TABLE table_22171978_1 (school_colors VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_22171978_1 WHERE athletic_nickname = \"Golden Knights\"", "question": "For the athletic nickname of golden knights how many entries are shown for enrollment?", "context": "CREATE TABLE table_22171978_1 (enrollment VARCHAR, athletic_nickname VARCHAR)"}, {"answer": "SELECT founded FROM table_22171978_1 WHERE institution = \"Ateneo de Manila University\"", "question": "What year was the ateneo de manila university founded?", "context": "CREATE TABLE table_22171978_1 (founded VARCHAR, institution VARCHAR)"}, {"answer": "SELECT founded FROM table_22171978_1 WHERE athletic_nickname = \"Blue Crusaders\"", "question": "What year was the athletic nickname blue crusaders founded?", "context": "CREATE TABLE table_22171978_1 (founded VARCHAR, athletic_nickname VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_22181917_2 WHERE season__number = 20", "question": "How many original airdates did season 20 have?", "context": "CREATE TABLE table_22181917_2 (original_air_date VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT directed_by FROM table_22181917_2 WHERE us_viewers__millions_ = \"6.62\"", "question": "Who directed the episode that was watched by 6.62 million U.S. viewers?", "context": "CREATE TABLE table_22181917_2 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_22181917_2 WHERE us_viewers__millions_ = \"8.56\"", "question": "What is the production code for the episode with 8.56 million U.S. viewers?", "context": "CREATE TABLE table_22181917_2 (production_code VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_22181917_2 WHERE us_viewers__millions_ = \"9.76\"", "question": "What is the title of the episode that had 9.76 million U.S. viewers?", "context": "CREATE TABLE table_22181917_2 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_22170495_6 WHERE original_airing_on_e4 = \"May 2, 2010\"", "question": "What is the title of the original airing on e4 May 2, 2010?", "context": "CREATE TABLE table_22170495_6 (title VARCHAR, original_airing_on_e4 VARCHAR)"}, {"answer": "SELECT COUNT(total_viewers) FROM table_22170495_6 WHERE original_airing_on_channel_4 = \"April 21, 2010\"", "question": "How many total viewers have April 21, 2010 as the original airing on channel 4?", "context": "CREATE TABLE table_22170495_6 (total_viewers VARCHAR, original_airing_on_channel_4 VARCHAR)"}, {"answer": "SELECT position_in_e4s_ratings_b FROM table_22170495_6 WHERE original_airing_on_channel_4 = \"June 30, 2010\"", "question": "What is the position in e4s ratings b when June 30, 2010 is the original airing on channel 4?", "context": "CREATE TABLE table_22170495_6 (position_in_e4s_ratings_b VARCHAR, original_airing_on_channel_4 VARCHAR)"}, {"answer": "SELECT original_airing_on_channel_4 FROM table_22170495_6 WHERE title = \"Being Alive\"", "question": "When is the original airing on channel 4 with being alive as the title?", "context": "CREATE TABLE table_22170495_6 (original_airing_on_channel_4 VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(position_in_channel_4s_ratings_a) FROM table_22170495_6 WHERE original_airing_on_channel_4 = \"February 24, 2010\"", "question": "How many position in channel 4s ratings a have February 24, 2010 as the original airing on channel 4?", "context": "CREATE TABLE table_22170495_6 (position_in_channel_4s_ratings_a VARCHAR, original_airing_on_channel_4 VARCHAR)"}, {"answer": "SELECT type FROM table_22180353_1 WHERE registration = \"HB-OPU\"", "question": "What are all types where registration is HB-OPU?", "context": "CREATE TABLE table_22180353_1 (type VARCHAR, registration VARCHAR)"}, {"answer": "SELECT registration FROM table_22180353_1 WHERE type = \"T 6 G\"", "question": "What is every registration for the type of T 6 G?", "context": "CREATE TABLE table_22180353_1 (registration VARCHAR, type VARCHAR)"}, {"answer": "SELECT construction AS date FROM table_22180353_1 WHERE registration = \"HB-HOS\"", "question": "What is every construction date for the registration of HB-HOS?", "context": "CREATE TABLE table_22180353_1 (construction VARCHAR, registration VARCHAR)"}, {"answer": "SELECT conformity_to_original_design FROM table_22180353_1 WHERE registration = \"HB-DAI\"", "question": "What is every conformity to original design if registration is HB-DAI?", "context": "CREATE TABLE table_22180353_1 (conformity_to_original_design VARCHAR, registration VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_2219961_2 WHERE director = \"Eric Tuchman\"", "question": "What is the latest season number that Eric Tuchman directed? ", "context": "CREATE TABLE table_2219961_2 (season__number INTEGER, director VARCHAR)"}, {"answer": "SELECT COUNT(season__number) FROM table_2219961_2 WHERE nbc_airdate = \"October 2, 2001\"", "question": "How man seasons have the air date of October 2, 2001? ", "context": "CREATE TABLE table_2219961_2 (season__number VARCHAR, nbc_airdate VARCHAR)"}, {"answer": "SELECT report FROM table_2220432_1 WHERE team = \"Roush Fenway Racing\"", "question": "What was the report in the race where the winning team was Roush Fenway Racing? ", "context": "CREATE TABLE table_2220432_1 (report VARCHAR, team VARCHAR)"}, {"answer": "SELECT miles__km_ FROM table_2220432_1 WHERE average_speed__mph_ = \"136.117\"", "question": "What was the miles (km) for the race that had an average speed of 136.117 MPH?", "context": "CREATE TABLE table_2220432_1 (miles__km_ VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT miles__km_ FROM table_2226343_1 WHERE date = \"February 25\"", "question": "What are the miles when February 25 is the date?", "context": "CREATE TABLE table_2226343_1 (miles__km_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT laps FROM table_2226343_1 WHERE average_speed__mph_ = \"141.911\"", "question": "How many laps have an average speed of 141.911?", "context": "CREATE TABLE table_2226343_1 (laps VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_2226343_1 WHERE average_speed__mph_ = \"150.088\"", "question": "Who is the manufacturer when 150.088 is the average speed (mph)?", "context": "CREATE TABLE table_2226343_1 (manufacturer VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_2226343_1 WHERE date = \"June 22\"", "question": "Who is the manufacturer for the date of June 22?", "context": "CREATE TABLE table_2226343_1 (manufacturer VARCHAR, date VARCHAR)"}, {"answer": "SELECT laps FROM table_2226343_1 WHERE race_time = \"3:31:24\"", "question": "How many laps have a race time of 3:31:24?", "context": "CREATE TABLE table_2226343_1 (laps VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT laps FROM table_2226343_1 WHERE average_speed__mph_ = \"140.22\"", "question": "How many laps have an average speed  (mph) of 140.22?", "context": "CREATE TABLE table_2226343_1 (laps VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT director FROM table_22265716_1 WHERE original_title = \"\u0422\u0440\u0438 \u043b\u0435\u0442\u045a\u0430 \u0434\u0430\u043d\u0430\"", "question": "Who directed the film with the original title of \u0442\u0440\u0438 \u043b\u0435\u0442\u045a\u0430 \u0434\u0430\u043d\u0430?", "context": "CREATE TABLE table_22265716_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT director FROM table_22265716_1 WHERE film_title_used_in_nomination = \"Three Summer Days\"", "question": "Who directed the film with the title three summer days?", "context": "CREATE TABLE table_22265716_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT director FROM table_22265716_1 WHERE original_title = \"\u041b\u0435\u043f\u0430 \u0441\u0435\u043b\u0430 \u043b\u0435\u043f\u043e \u0433\u043e\u0440\u0435\"", "question": "Who is the director of the film with the title \u043b\u0435\u043f\u0430 \u0441\u0435\u043b\u0430 \u043b\u0435\u043f\u043e \u0433\u043e\u0440\u0435?", "context": "CREATE TABLE table_22265716_1 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_22261877_1 WHERE production_code = \"6ACX16\"", "question": "How many viewers in millions watched the episode with the production code 6acx16?", "context": "CREATE TABLE table_22261877_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_22261877_1 WHERE production_code = \"6ACX19\"", "question": "What is the air date of the episode with the production code 6acx19? ", "context": "CREATE TABLE table_22261877_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2226817_2 WHERE production_code = \"1.12\"", "question": "What is the original air date for the production code of 1.12?", "context": "CREATE TABLE table_2226817_2 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_2226817_2 WHERE production_code = \"1.11\"", "question": "How many number of series have a production code of 1.11?", "context": "CREATE TABLE table_2226817_2 (no_in_series VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_2226817_2 WHERE production_code = \"1.11\"", "question": "How many number of series have the production code of 1.11?", "context": "CREATE TABLE table_2226817_2 (no_in_series INTEGER, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_2226817_2 WHERE original_air_date = \"April 5, 1987\"", "question": "Who wrote when the original airdate is April 5, 1987?", "context": "CREATE TABLE table_2226817_2 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2226817_2 WHERE production_code = \"1.02\"", "question": "Who directed when the production code is 1.02?", "context": "CREATE TABLE table_2226817_2 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT production_code FROM table_2226817_4 WHERE original_air_date = \"November 27, 1988\"", "question": "Name the production code for november 27, 1988", "context": "CREATE TABLE table_2226817_4 (production_code VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2226817_4 WHERE production_code = \"3.04\"", "question": "Name the original air date for 3.04 production code", "context": "CREATE TABLE table_2226817_4 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_2226817_4 WHERE original_air_date = \"April 9, 1989\"", "question": "Name who wrote the episode that aired april 9, 1989", "context": "CREATE TABLE table_2226817_4 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_2226817_4 WHERE production_code = \"3.09\"", "question": "Name the number of number in season for 3.09", "context": "CREATE TABLE table_2226817_4 (no_in_season VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_2226817_12 WHERE production_code = \"11.19\"", "question": "when was the episode premiere if the production code is 11.19? ", "context": "CREATE TABLE table_2226817_12 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_2226817_12 WHERE original_air_date = \"March 2, 1997\"", "question": "what is the name of the episode whose premiere was in march 2, 1997?", "context": "CREATE TABLE table_2226817_12 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_2226817_12 WHERE production_code = \"11.01\"", "question": "what is the name of the episode when the production code is 11.01?", "context": "CREATE TABLE table_2226817_12 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_2226817_12 WHERE production_code = \"11.12\"", "question": "what is the name of the episode if the production code is 11.12?", "context": "CREATE TABLE table_2226817_12 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_2226817_12 WHERE directed_by = \"Mark K. Samuels\"", "question": "how many episodes has been directed by Mark K. Samuels ?", "context": "CREATE TABLE table_2226817_12 (no_in_series VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2226817_3 WHERE written_by = \"Michael G. Moye & Ron Leavitt & J. Stanford Parker\"", "question": "Who directed what was written by Michael G. Moye & Ron Leavitt & J. Stanford Parker?", "context": "CREATE TABLE table_2226817_3 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT production_code FROM table_2226817_8 WHERE written_by = \"Michael G. Moye\"", "question": "What are all the production codes of episodes written by Michael G. Moye?", "context": "CREATE TABLE table_2226817_8 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_2226817_8 WHERE no_in_season = 13", "question": "Who is the writer of episode 13?", "context": "CREATE TABLE table_2226817_8 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_2226817_8 WHERE production_code = \"7.07\"", "question": "Which series number has the production code 7.07?", "context": "CREATE TABLE table_2226817_8 (no_in_series VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_2226817_8 WHERE production_code = \"7.01\"", "question": "How many seasons have the production code 7.01 for an episode? ", "context": "CREATE TABLE table_2226817_8 (no_in_season INTEGER, production_code VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_2226817_8 WHERE no_in_season = 12", "question": "How many episodes in the series are from season 12?", "context": "CREATE TABLE table_2226817_8 (no_in_series VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_2226817_9 WHERE no_in_series = 158", "question": "How many seasons had episode 158?", "context": "CREATE TABLE table_2226817_9 (no_in_season INTEGER, no_in_series VARCHAR)"}, {"answer": "SELECT production_code FROM table_2226817_9 WHERE written_by = \"Stacie Lipp\"", "question": "What is the production code of the episode directed by Stacie Lipp?", "context": "CREATE TABLE table_2226817_9 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_2226817_9 WHERE no_in_series = 165", "question": "What is the name of episode 165?", "context": "CREATE TABLE table_2226817_9 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_2226817_9 WHERE production_code = \"8.04\"", "question": "How many episodes have the production code 8.04", "context": "CREATE TABLE table_2226817_9 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT alpha_2_code FROM table_222771_1 WHERE alpha_3_code = \"TCA\"", "question": "What is the Alpha 2 code for the area also known as TCA?", "context": "CREATE TABLE table_222771_1 (alpha_2_code VARCHAR, alpha_3_code VARCHAR)"}, {"answer": "SELECT alpha_3_code FROM table_222771_1 WHERE alpha_2_code = \"FO\"", "question": "What is the Alpha 3 code for the area also known as FO?", "context": "CREATE TABLE table_222771_1 (alpha_3_code VARCHAR, alpha_2_code VARCHAR)"}, {"answer": "SELECT alpha_2_code FROM table_222771_1 WHERE alpha_3_code = \"NZL\"", "question": "What is the alpha 2  code for the area also known as NZL?", "context": "CREATE TABLE table_222771_1 (alpha_2_code VARCHAR, alpha_3_code VARCHAR)"}, {"answer": "SELECT iso_3166_2_codes FROM table_222771_1 WHERE english_short_name__upper_lower_case_ = \"South Sudan\"", "question": "What is the ISO for South Sudan?", "context": "CREATE TABLE table_222771_1 (iso_3166_2_codes VARCHAR, english_short_name__upper_lower_case_ VARCHAR)"}, {"answer": "SELECT alpha_2_code FROM table_222771_1 WHERE english_short_name__upper_lower_case_ = \"Papua New Guinea\"", "question": "What is the Alpha 2 code for Papua New Guinea?", "context": "CREATE TABLE table_222771_1 (alpha_2_code VARCHAR, english_short_name__upper_lower_case_ VARCHAR)"}, {"answer": "SELECT numeric_code FROM table_222771_1 WHERE alpha_3_code = \"LIE\"", "question": "What is the number reference for LIE?", "context": "CREATE TABLE table_222771_1 (numeric_code VARCHAR, alpha_3_code VARCHAR)"}, {"answer": "SELECT COUNT(launch_date) FROM table_22274142_1 WHERE transmission = \"Digital\"", "question": "How many launch dates are there for digital transmission?", "context": "CREATE TABLE table_22274142_1 (launch_date VARCHAR, transmission VARCHAR)"}, {"answer": "SELECT written_by FROM table_22269839_1 WHERE production_code = \"7ACX14\"", "question": "Who wrote the title with production code 7acx14?", "context": "CREATE TABLE table_22269839_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_22269839_1 WHERE written_by = \"Cherry Chevapravatdumrong\"", "question": "Who directed the title written by cherry chevapravatdumrong?", "context": "CREATE TABLE table_22269839_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_22269839_1 WHERE production_code = \"7ACX08\"", "question": "Who wrote the title with the production code is 7acx08?", "context": "CREATE TABLE table_22269839_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_22269839_1 WHERE written_by = \"Patrick Meighan\"", "question": "Who directed the episode written by patrick meighan?", "context": "CREATE TABLE table_22269839_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT dates FROM table_22282917_26 WHERE control_site_condition_owner = \"machine shop on Martin Dr.\"", "question": "When is every date that control site condition or owner is machine shop on Martin Dr.?", "context": "CREATE TABLE table_22282917_26 (dates VARCHAR, control_site_condition_owner VARCHAR)"}, {"answer": "SELECT missile_type FROM table_22282917_26 WHERE code_ & _location = \"M-20 Harbor Drive\"", "question": "What is every missile type with a code and location of M-20 Harbor Drive?", "context": "CREATE TABLE table_22282917_26 (missile_type VARCHAR, code_ VARCHAR, _location VARCHAR)"}, {"answer": "SELECT code_ & _location FROM table_22282917_26 WHERE launch_site_condition_owner = \"Obliterated\"", "question": "What is every code and location where the launch site condition and owner is obliterated?", "context": "CREATE TABLE table_22282917_26 (code_ VARCHAR, _location VARCHAR, launch_site_condition_owner VARCHAR)"}, {"answer": "SELECT control_site_condition_owner FROM table_22282917_26 WHERE launch_site_condition_owner = \"lakefront office buildings\"", "question": "What is every control site condition and owner if launch site condition and owner is Lakefront Office Buildings?", "context": "CREATE TABLE table_22282917_26 (control_site_condition_owner VARCHAR, launch_site_condition_owner VARCHAR)"}, {"answer": "SELECT team FROM table_22297140_3 WHERE outgoing_manager = \"Behtash Fariba\"", "question": "Which team had an outgoing manager of Behtash Fariba?", "context": "CREATE TABLE table_22297140_3 (team VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT team FROM table_22297140_3 WHERE replaced_by = \"Faraz Kamalvand\"", "question": "Which team had a manager who was replaced by Faraz Kamalvand?", "context": "CREATE TABLE table_22297140_3 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_22297140_3 WHERE replaced_by = \"Jafar Fatahi\"", "question": "Which outgoing manager was replaced by Jafar Fatahi?", "context": "CREATE TABLE table_22297140_3 (outgoing_manager VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT team FROM table_22297140_3 WHERE replaced_by = \"Ebrahim Talebi\"", "question": "Which team had a manager replaced by Ebrahim Talebi?", "context": "CREATE TABLE table_22297140_3 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_22297140_3 WHERE outgoing_manager = \"Behtash Fariba\"", "question": "What was the date in which Behtash Fariba left his team?", "context": "CREATE TABLE table_22297140_3 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_22297140_3 WHERE team = \"Gostaresh Foolad\"", "question": "What was the manner of leaving the team for the manager of Gostaresh Foolad?", "context": "CREATE TABLE table_22297140_3 (manner_of_departure VARCHAR, team VARCHAR)"}, {"answer": "SELECT in_county_tuition_per_credit_hour__fall_2009_ FROM table_22308881_2 WHERE college = \"Gloucester\"", "question": "How much was the cost of in-county tuition per credit hour at the Gloucester College by the fall of 2009?", "context": "CREATE TABLE table_22308881_2 (in_county_tuition_per_credit_hour__fall_2009_ VARCHAR, college VARCHAR)"}, {"answer": "SELECT in_county_tuition_per_credit_hour__fall_2009_ FROM table_22308881_2 WHERE college = \"Mercer\"", "question": "How much was the in-county tuition per credit hour at the Mercer College by the fall of 2009?", "context": "CREATE TABLE table_22308881_2 (in_county_tuition_per_credit_hour__fall_2009_ VARCHAR, college VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_22297198_3 WHERE date_of_vacancy = \"12 Dec 2009\"", "question": "Who was the replacement manager for the vacancy of 12 Dec 2009?", "context": "CREATE TABLE table_22297198_3 (replaced_by VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT team FROM table_22297198_3 WHERE outgoing_manager = \"Alireza Mansourian\"", "question": "What team did Alireza mansourian leave?", "context": "CREATE TABLE table_22297198_3 (team VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_22297198_3 WHERE outgoing_manager = \"Majid Bagherinia\"", "question": "Why did Majid bagherinia leave?", "context": "CREATE TABLE table_22297198_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT team FROM table_22297198_3 WHERE date_of_vacancy = \"12 Dec 2009\"", "question": "What team did a manager leave on 12 Dec 2009", "context": "CREATE TABLE table_22297198_3 (team VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_22297198_3 WHERE outgoing_manager = \"Farhad Kazemi\"", "question": "How many teams did Farhad Kazemi leave?", "context": "CREATE TABLE table_22297198_3 (team VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT team_name FROM table_22319599_1 WHERE school = \"Rend Lake College\"", "question": "If the school is Rend Lake College, what is the team name?", "context": "CREATE TABLE table_22319599_1 (team_name VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(njcaa_championships) FROM table_22319599_1", "question": "What is the minimum possible for the NJCAA championships?", "context": "CREATE TABLE table_22319599_1 (njcaa_championships INTEGER)"}, {"answer": "SELECT location FROM table_22319599_1 WHERE varsity_teams = 6", "question": "If the varsity team is 6, what is the location?", "context": "CREATE TABLE table_22319599_1 (location VARCHAR, varsity_teams VARCHAR)"}, {"answer": "SELECT colors FROM table_22319599_1 WHERE school = \"John A. Logan College\"", "question": "If the school is John A. Logan College, what are the colors?", "context": "CREATE TABLE table_22319599_1 (colors VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_22334183_3 WHERE circuit = \"Silverstone\"", "question": "On how many different dates was the race at the Silverstone circuit?", "context": "CREATE TABLE table_22334183_3 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_22334183_3 WHERE circuit = \"Donington Park\"", "question": "When was the circuit Donington Park?", "context": "CREATE TABLE table_22334183_3 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT weight FROM table_22344463_2 WHERE name = \"Stuart Craig\"", "question": "What is the weight is the name is Stuart Craig?", "context": "CREATE TABLE table_22344463_2 (weight VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(date_of_birth) FROM table_22344463_2 WHERE name = \"Timo Higgins\"", "question": "If the name is Timo Higgins, what is the total date of birth amount?", "context": "CREATE TABLE table_22344463_2 (date_of_birth VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_22344463_2 WHERE height = \"181cm\"", "question": "If the height is 181cm, what was the position?", "context": "CREATE TABLE table_22344463_2 (position VARCHAR, height VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_22344463_2 WHERE weight = \"78kg\" AND home_team = \"UMBC\"", "question": "If the home team is UMBC and the weight is 78kg, what the the name total number?", "context": "CREATE TABLE table_22344463_2 (name VARCHAR, weight VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_22344463_2 WHERE height = \"185cm\" AND home_team = \"Heaton Mersey\"", "question": "If the height is 185cm and the home team is Heaton Mersey, what is the date of birth?", "context": "CREATE TABLE table_22344463_2 (date_of_birth VARCHAR, height VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_22347090_4 WHERE no_in_season = 2", "question": "How many viewers tuned in for season 2?", "context": "CREATE TABLE table_22347090_4 (us_viewers__million_ VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT directed_by FROM table_22347090_4 WHERE production_code = \"3X6752\"", "question": "Who directed the episode that has 3x6752 listed as the production code?", "context": "CREATE TABLE table_22347090_4 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_22347090_4 WHERE us_viewers__million_ = \"1.98\"", "question": "Which series number had 1.98 million viewers?", "context": "CREATE TABLE table_22347090_4 (no_in_series INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_22347090_5 WHERE production_code = \"3X6704\"", "question": "Name the viewers for production code for 3x6704", "context": "CREATE TABLE table_22347090_5 (us_viewers__million_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_22347090_5 WHERE production_code = \"3X6706\"", "question": "Name the viewers for production code being 3x6706", "context": "CREATE TABLE table_22347090_5 (us_viewers__million_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_22347090_5 WHERE us_viewers__million_ = \"1.54\"", "question": "Name the title that got 1.54 viewers", "context": "CREATE TABLE table_22347090_5 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_22347090_5 WHERE no_in_series = 26", "question": "Name the number of number in season for 26", "context": "CREATE TABLE table_22347090_5 (no_in_season VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_22347090_6 WHERE production_code = \"3X7557\"", "question": "Who wrote the episode that has a production code 3x7557?", "context": "CREATE TABLE table_22347090_6 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_22347090_6 WHERE us_viewers__million_ = \"1.59\"", "question": "How many directors are there for the episode that had 1.59 million U.S. viewers?", "context": "CREATE TABLE table_22347090_6 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_22347090_6 WHERE us_viewers__million_ = \"1.32\"", "question": "What is the production code for the episode that had 1.32 million U.S. viewers?", "context": "CREATE TABLE table_22347090_6 (production_code VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_22347090_6 WHERE production_code = \"3X7554\"", "question": "What episode number in the series had a production code of 3x7554?", "context": "CREATE TABLE table_22347090_6 (no_in_series INTEGER, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_22347090_6 WHERE no_in_series = 41", "question": "What is the name of episode number 41 in the series?", "context": "CREATE TABLE table_22347090_6 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_22355_20", "question": "Who has the minimum number of silver?", "context": "CREATE TABLE table_22355_20 (silver INTEGER)"}, {"answer": "SELECT athlete FROM table_22355_20 WHERE rank = 8 AND olympics = \"1948\u20131952\"", "question": "Who is the athlete who's rank is 8 and competed in the olympics during 1948\u20131952?", "context": "CREATE TABLE table_22355_20 (athlete VARCHAR, rank VARCHAR, olympics VARCHAR)"}, {"answer": "SELECT nation FROM table_22355_20 WHERE olympics = \"1924\u20131928\" AND bronze = 1", "question": "What is the nation who won 1 bronze in the Olympics during  1924\u20131928?", "context": "CREATE TABLE table_22355_20 (nation VARCHAR, olympics VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT athlete FROM table_22355_20 WHERE nation = \"Ethiopia (ETH)\" AND rank > 7.0", "question": "Who is the athlete from the nation of Ethiopia (eth) who had a rank bigger than 7.0?", "context": "CREATE TABLE table_22355_20 (athlete VARCHAR, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_22355_26", "question": "What is the maximum number of golds?", "context": "CREATE TABLE table_22355_26 (gold INTEGER)"}, {"answer": "SELECT MIN(silver) FROM table_22355_29", "question": "What is the smallest amount of silver?", "context": "CREATE TABLE table_22355_29 (silver INTEGER)"}, {"answer": "SELECT nation FROM table_22355_44 WHERE athlete = \"Abdon Pamich Category:Articles with hCards\"", "question": "Name the nation for abdon pamich category:articles with hcards", "context": "CREATE TABLE table_22355_44 (nation VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_22355_44 WHERE athlete = \"Ronald Weigel Category:Articles with hCards\"", "question": "Name the silver for ronald weigel category:articles with hcards", "context": "CREATE TABLE table_22355_44 (silver INTEGER, athlete VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_22355_5", "question": "What's the minimal rank of a athlete shown in the chart?", "context": "CREATE TABLE table_22355_5 (rank INTEGER)"}, {"answer": "SELECT MIN(gold) FROM table_22355_35", "question": "which is the minimun amount of gold medals?", "context": "CREATE TABLE table_22355_35 (gold INTEGER)"}, {"answer": "SELECT MIN(silver) FROM table_22355_35", "question": "which is the minimun amount of silver medals?", "context": "CREATE TABLE table_22355_35 (silver INTEGER)"}, {"answer": "SELECT MIN(total_min_2_medals_) FROM table_22355_65", "question": "What is the lowest overall number for  total(min. 2 medals)?", "context": "CREATE TABLE table_22355_65 (total_min_2_medals_ INTEGER)"}, {"answer": "SELECT MAX(rank) FROM table_22355_62 WHERE gold = 4", "question": "What is the maximum rank of the nation that won 4 gold medals?", "context": "CREATE TABLE table_22355_62 (rank INTEGER, gold VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_22355_68", "question": "Name the most rank", "context": "CREATE TABLE table_22355_68 (rank INTEGER)"}, {"answer": "SELECT MIN(rank) FROM table_22355_68 WHERE gold = 2", "question": "Name the most rank for 2 gold", "context": "CREATE TABLE table_22355_68 (rank INTEGER, gold VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_22360_3", "question": "Name the most total ", "context": "CREATE TABLE table_22360_3 (total INTEGER)"}, {"answer": "SELECT MIN(silver) FROM table_22360_3 WHERE discipline = \"Baseball\"", "question": "Name the silver for baseball", "context": "CREATE TABLE table_22360_3 (silver INTEGER, discipline VARCHAR)"}, {"answer": "SELECT discipline FROM table_22360_3 WHERE bronze = 0", "question": "Name the discipline for bronze being 0", "context": "CREATE TABLE table_22360_3 (discipline VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(tier_1_capital), _\u20ac_million FROM table_22368322_2 WHERE institution = \"Irish Nationwide\"", "question": "Name the most tier 1 capital for irish nationwide", "context": "CREATE TABLE table_22368322_2 (_\u20ac_million VARCHAR, tier_1_capital INTEGER, institution VARCHAR)"}, {"answer": "SELECT tier_1_ratio FROM table_22368322_2 WHERE institution = \"Irish Life and Permanent\"", "question": "Name the tier 1 ratio for irish life and permanent", "context": "CREATE TABLE table_22368322_2 (tier_1_ratio VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(tier_1_capital), _\u20ac_million FROM table_22368322_2 WHERE institution = \"Allied Irish Banks\"", "question": "Name the total number of tier 1 capital for allied irish banks", "context": "CREATE TABLE table_22368322_2 (_\u20ac_million VARCHAR, tier_1_capital VARCHAR, institution VARCHAR)"}, {"answer": "SELECT date_of_report FROM table_22368322_2 WHERE tier_1_ratio = \"3.9%\"", "question": "Name the date of report for tier 1 ratio being 3.9%", "context": "CREATE TABLE table_22368322_2 (date_of_report VARCHAR, tier_1_ratio VARCHAR)"}, {"answer": "SELECT season FROM table_22383603_1 WHERE finish__incl_championship_ = \"April 18\"", "question": "What season ended on April 18?", "context": "CREATE TABLE table_22383603_1 (season VARCHAR, finish__incl_championship_ VARCHAR)"}, {"answer": "SELECT start__reg_season_ FROM table_22383603_1 WHERE top_record = \"Lindenwood (20\u20130\u20130)\"", "question": "When did the season start that ended with the top record of Lindenwood (20\u20130\u20130)?", "context": "CREATE TABLE table_22383603_1 (start__reg_season_ VARCHAR, top_record VARCHAR)"}, {"answer": "SELECT season FROM table_22383603_1 WHERE no = 4", "question": "What is the year range of season 4?", "context": "CREATE TABLE table_22383603_1 (season VARCHAR, no VARCHAR)"}, {"answer": "SELECT finish__incl_championship_ FROM table_22383603_1 WHERE start__reg_season_ = \"September 25\"", "question": "When is the finish of the season that started on September 25?", "context": "CREATE TABLE table_22383603_1 (finish__incl_championship_ VARCHAR, start__reg_season_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_22380270_1 WHERE us_viewers__millions_ = \"2.15\"", "question": "On what air date were there 2.15 million u.s. viewers?", "context": "CREATE TABLE table_22380270_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_22380270_1 WHERE us_viewers__millions_ = \"2.15\"", "question": "Who was the writer for the episode with 2.15 million u.s.viewers?", "context": "CREATE TABLE table_22380270_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT spacewalkers FROM table_22385461_1 WHERE spacecraft = \"STS-101 EVA 1\"", "question": "Who walked in space from STS-101 Eva 1?", "context": "CREATE TABLE table_22385461_1 (spacewalkers VARCHAR, spacecraft VARCHAR)"}, {"answer": "SELECT end__utc_ FROM table_22385461_8 WHERE duration = \"6 hours, 55 minutes\"", "question": "What is the end (UTC) if the duration is 6 hours, 55 minutes?", "context": "CREATE TABLE table_22385461_8 (end__utc_ VARCHAR, duration VARCHAR)"}, {"answer": "SELECT spacewalkers FROM table_22385461_8 WHERE end__utc_ = \"January 31, 2007 23:09\"", "question": "If the end (UTC) is January 31, 2007 23:09, what is the name of the spacewalkers?", "context": "CREATE TABLE table_22385461_8 (spacewalkers VARCHAR, end__utc_ VARCHAR)"}, {"answer": "SELECT spacewalkers FROM table_22385461_8 WHERE end__utc_ = \"October 30, 2007 15:53\"", "question": "What are the names of the spacewalkers for end (UTC) October 30, 2007 15:53?", "context": "CREATE TABLE table_22385461_8 (spacewalkers VARCHAR, end__utc_ VARCHAR)"}, {"answer": "SELECT position FROM table_22402438_7 WHERE player = \"Bernie Doan\"", "question": "Which position is player bernie doan?", "context": "CREATE TABLE table_22402438_7 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_22402438_7 WHERE position = \"Goaltender\"", "question": "How many pick # are there for the goaltender position?", "context": "CREATE TABLE table_22402438_7 (pick__number INTEGER, position VARCHAR)"}, {"answer": "SELECT COUNT(college_junior_club_team) FROM table_22402438_7 WHERE player = \"John Garrett\"", "question": "How many college/junior/clubteams have John garrett as the player?", "context": "CREATE TABLE table_22402438_7 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_22402438_7 WHERE pick__number = 80", "question": "Who is the player with the pick# 80?", "context": "CREATE TABLE table_22402438_7 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT nationality FROM table_22402438_7 WHERE player = \"John Garrett\"", "question": "Which nationality is player John Garrett?", "context": "CREATE TABLE table_22402438_7 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT team_classification FROM table_22410316_17 WHERE combativity_prize = \"Ricardo Serrano\"", "question": "what team had ricardo serrano for combativity prize?", "context": "CREATE TABLE table_22410316_17 (team_classification VARCHAR, combativity_prize VARCHAR)"}, {"answer": "SELECT COUNT(production_stagemanager) FROM table_22410780_1 WHERE male_rep = \"Gabriel Di Chiara\"", "question": "How many production stage managers worked with Gabriel di Chiara as the Male Rep?", "context": "CREATE TABLE table_22410780_1 (production_stagemanager VARCHAR, male_rep VARCHAR)"}, {"answer": "SELECT COUNT(production_stagemanager) FROM table_22410780_1 WHERE secretary = \"Rachel Hartmann\"", "question": "How many production stage managers worked with secretary Rachel Hartmann?", "context": "CREATE TABLE table_22410780_1 (production_stagemanager VARCHAR, secretary VARCHAR)"}, {"answer": "SELECT performance_liaison FROM table_22410780_1 WHERE dramaturge = \"Chrisena Ricci\"", "question": "Who were the performance liaisons for the dramaturge Chrisena Ricci?", "context": "CREATE TABLE table_22410780_1 (performance_liaison VARCHAR, dramaturge VARCHAR)"}, {"answer": "SELECT male_rep FROM table_22410780_1 WHERE artistic_director = \"Caroline Rhoads\"", "question": "Who was the male rep. when Caroline Rhoads was the artistic director?", "context": "CREATE TABLE table_22410780_1 (male_rep VARCHAR, artistic_director VARCHAR)"}, {"answer": "SELECT COUNT(driver) FROM table_2241101_1 WHERE manufacturer = \"Toyota\"", "question": "How many different drivers were there for the team when the manufacturer was Toyota?", "context": "CREATE TABLE table_2241101_1 (driver VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_2241101_1 WHERE date = \"February 27\"", "question": "In how many different years did the race happen on February 27?", "context": "CREATE TABLE table_2241101_1 (year VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_2241101_1 WHERE average_speed__mph_ = \"107.063\"", "question": "What team had average speed of 107.063 mph?", "context": "CREATE TABLE table_2241101_1 (team VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT report FROM table_2241101_1 WHERE year = 2010", "question": "What was the report for 2010?", "context": "CREATE TABLE table_2241101_1 (report VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(race_time) FROM table_2241259_1 WHERE driver = \"Kevin Harvick\"", "question": "Name the total number of race time for kevin harvick", "context": "CREATE TABLE table_2241259_1 (race_time VARCHAR, driver VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_2241841_1 WHERE year = \"2004\"", "question": "What manufacturer made the car that won in 2004?", "context": "CREATE TABLE table_2241841_1 (manufacturer VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(miles__km_) FROM table_2241841_1 WHERE manufacturer = \"Dodge\"", "question": "How many wins are with Dodge vehicles?", "context": "CREATE TABLE table_2241841_1 (miles__km_ VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_2241841_1 WHERE date = \"May 21\"", "question": "Who made the car that won the race on May 21?", "context": "CREATE TABLE table_2241841_1 (manufacturer VARCHAR, date VARCHAR)"}, {"answer": "SELECT laps FROM table_2241841_1 WHERE race_time = \"4:17:18\"", "question": "In the race with a winning time of 4:17:18, how many laps were run?", "context": "CREATE TABLE table_2241841_1 (laps VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT team FROM table_2241841_1 WHERE race_time = \"3:15:43\"", "question": "What team set a 3:15:43 winning time?", "context": "CREATE TABLE table_2241841_1 (team VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT COUNT(hometown) FROM table_22447251_2 WHERE height = \"1.80\"", "question": "How many different cities are represented by contestants whose height stands at 1.80?", "context": "CREATE TABLE table_22447251_2 (hometown VARCHAR, height VARCHAR)"}, {"answer": "SELECT height FROM table_22447251_2 WHERE contestant = \"Alexandra D\u00edaz Bello\"", "question": "How tall is contestant Alexandra D\u00edaz Bello?", "context": "CREATE TABLE table_22447251_2 (height VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT province, _community FROM table_22447251_2 WHERE hometown = \"Villa Bison\u00f3\"", "question": "Which province is Villa Bison\u00f3 in?", "context": "CREATE TABLE table_22447251_2 (province VARCHAR, _community VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT MAX(age) FROM table_22447251_2 WHERE contestant = \"Valerie Chardonnens Vargas\"", "question": "How old is contestant Valerie Chardonnens Vargas?", "context": "CREATE TABLE table_22447251_2 (age INTEGER, contestant VARCHAR)"}, {"answer": "SELECT original_south_korean_performer FROM table_22460085_1 WHERE original_manchester_performer = \"Adebayo Bolaji\"", "question": "Who was the origianal south korean performer when Adebayo Bolaji performed in Manchester?", "context": "CREATE TABLE table_22460085_1 (original_south_korean_performer VARCHAR, original_manchester_performer VARCHAR)"}, {"answer": "SELECT character FROM table_22460085_1 WHERE original_manchester_performer = \"Lisa Davina Phillip\"", "question": "What character did Lisa Davina Phillip portray?", "context": "CREATE TABLE table_22460085_1 (character VARCHAR, original_manchester_performer VARCHAR)"}, {"answer": "SELECT original_broadway_performer FROM table_22460085_1 WHERE original_west_end_performer = \"Sharon D. Clarke\"", "question": "Who was the Broadway equivalent of Sharon D. Clarke's character?", "context": "CREATE TABLE table_22460085_1 (original_broadway_performer VARCHAR, original_west_end_performer VARCHAR)"}, {"answer": "SELECT character FROM table_22460085_1 WHERE original_broadway_performer = \"Moya Angela\"", "question": "What character did Moya Angela portray?", "context": "CREATE TABLE table_22460085_1 (character VARCHAR, original_broadway_performer VARCHAR)"}, {"answer": "SELECT character FROM table_22460085_1 WHERE original_west_end_performer = \"Richard Fleeshman\"", "question": "What character did Richard Fleeshman portray?", "context": "CREATE TABLE table_22460085_1 (character VARCHAR, original_west_end_performer VARCHAR)"}, {"answer": "SELECT original_manchester_performer FROM table_22460085_1 WHERE original_west_end_performer = \"Lisa Davina Phillip\"", "question": "Who was the Manchester performer of Lisa Davina Phillip's character?", "context": "CREATE TABLE table_22460085_1 (original_manchester_performer VARCHAR, original_west_end_performer VARCHAR)"}, {"answer": "SELECT european_tier FROM table_22457674_1 WHERE artist = \"Rick Springfield\"", "question": "Name the european tier for rick springfield", "context": "CREATE TABLE table_22457674_1 (european_tier VARCHAR, artist VARCHAR)"}, {"answer": "SELECT song_title FROM table_22457674_1 WHERE artist = \"Europe\"", "question": "Name the song title for europe", "context": "CREATE TABLE table_22457674_1 (song_title VARCHAR, artist VARCHAR)"}, {"answer": "SELECT COUNT(master_recording) FROM table_22457674_1 WHERE artist = \"Doobie Brothers The Doobie Brothers\"", "question": "Name the number of master recording for doobie brothers the doobie brothers", "context": "CREATE TABLE table_22457674_1 (master_recording VARCHAR, artist VARCHAR)"}, {"answer": "SELECT master_recording FROM table_22457674_1 WHERE artist = \"Europe\"", "question": "Name the master recording for europe", "context": "CREATE TABLE table_22457674_1 (master_recording VARCHAR, artist VARCHAR)"}, {"answer": "SELECT date FROM table_22464685_1 WHERE georgian_name = \"\u10ea\u10ee\u10dd\u10d5\u10e0\u10d4\u10d1\u10d0 \u10d3\u10d0 \u10e3\u10ec\u10e7\u10d4\u10d1\u10d0 \u10d1\u10d0\u10d2\u10e0\u10d0\u10e2\u10dd\u10dc\u10d8\u10d0\u10dc\u10d7\u10d0\"", "question": "what is the date for when the georgian name is \u10ea\u10ee\u10dd\u10d5\u10e0\u10d4\u10d1\u10d0 \u10d3\u10d0 \u10e3\u10ec\u10e7\u10d4\u10d1\u10d0 \u10d1\u10d0\u10d2\u10e0\u10d0\u10e2\u10dd\u10dc\u10d8\u10d0\u10dc\u10d7\u10d0?", "context": "CREATE TABLE table_22464685_1 (date VARCHAR, georgian_name VARCHAR)"}, {"answer": "SELECT transliteration FROM table_22464685_1 WHERE period_covered = \"1125-1223\"", "question": "what is the transliteration during the period covered is 1125-1223?", "context": "CREATE TABLE table_22464685_1 (transliteration VARCHAR, period_covered VARCHAR)"}, {"answer": "SELECT author FROM table_22464685_1 WHERE english_name = \"Histories and Eulogies of the Sovereigns\"", "question": "Who is the auther when the english name was histories and eulogies of the sovereigns?", "context": "CREATE TABLE table_22464685_1 (author VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT author FROM table_22464685_1 WHERE transliteration = \"lasha-giorgis droindeli matiane\"", "question": "who is the auther when the transliteration is lasha-giorgis droindeli matiane?", "context": "CREATE TABLE table_22464685_1 (author VARCHAR, transliteration VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_224840_3 WHERE vacator = \"John Laurance (F)\"", "question": "in which state where John Laurance (f) as a vacator?", "context": "CREATE TABLE table_224840_3 (state__class_ VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_224840_3 WHERE vacator = \"Henry Latimer (F)\"", "question": "when the vacator was Henry Latimer (f), what were the causes for modification?", "context": "CREATE TABLE table_224840_3 (reason_for_change VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT COUNT(date_of_successors_formal_installation) FROM table_224840_3 WHERE successor = \"Aaron Ogden (F)\"", "question": "how many times has Aaron Ogden (f), been a successor and has had a formal installation? ", "context": "CREATE TABLE table_224840_3 (date_of_successors_formal_installation VARCHAR, successor VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_venue) FROM table_22482077_1 WHERE year = 2010", "question": "In 2010, how many 1st venue cities were there? ", "context": "CREATE TABLE table_22482077_1 (year VARCHAR)"}, {"answer": "SELECT COUNT(vacator) FROM table_224840_4 WHERE district = \"Massachusetts 3rd\"", "question": "How many seats became avaliable in Massachusetts 3rd district?", "context": "CREATE TABLE table_224840_4 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT vacator FROM table_224840_4 WHERE date_successor_seated = \"November 26, 1800\"", "question": "Who left office on November 26, 1800?", "context": "CREATE TABLE table_224840_4 (vacator VARCHAR, date_successor_seated VARCHAR)"}, {"answer": "SELECT successor FROM table_224840_4 WHERE district = \"Massachusetts 3rd\"", "question": "Who was the latest to take office in Massachusetts 3rd district?", "context": "CREATE TABLE table_224840_4 (successor VARCHAR, district VARCHAR)"}, {"answer": "SELECT builder FROM table_22481967_1 WHERE date = \"1930\"", "question": "List the builder from 1930.", "context": "CREATE TABLE table_22481967_1 (builder VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(builder) FROM table_22481967_1 WHERE withdrawn = \"1951\" AND number = \"42\"", "question": "List the number of builders where the withdrawn is 1951 and number is 42.", "context": "CREATE TABLE table_22481967_1 (builder VARCHAR, withdrawn VARCHAR, number VARCHAR)"}, {"answer": "SELECT date FROM table_22481967_1 WHERE number = \"1\"", "question": "List the date for number 1.", "context": "CREATE TABLE table_22481967_1 (date VARCHAR, number VARCHAR)"}, {"answer": "SELECT number FROM table_22481967_1 WHERE operator = \"Melbourne and Metropolitan Tramways Board\"", "question": "List the number for the operator melbourne and metropolitan tramways board.", "context": "CREATE TABLE table_22481967_1 (number VARCHAR, operator VARCHAR)"}, {"answer": "SELECT status FROM table_22481967_1 WHERE operator = \"Toronto Transit Commission\"", "question": "List the status for the operator Toronto transit commission.", "context": "CREATE TABLE table_22481967_1 (status VARCHAR, operator VARCHAR)"}, {"answer": "SELECT network FROM table_22485543_1 WHERE studio_host = \"Bob Costas\" AND ice_level_reporters = \"Darren Pang\"", "question": "Which network has bob costas as the studio host and darren pang as the ice level reporters?", "context": "CREATE TABLE table_22485543_1 (network VARCHAR, studio_host VARCHAR, ice_level_reporters VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_22485543_1 WHERE studio_analysts = \"Mike Milbury\" AND ice_level_reporters = \"Darren Pang\"", "question": "Which play-by-play has mike milbury as the studio analyst and darren pang as the ice level reporters?", "context": "CREATE TABLE table_22485543_1 (play_by_play VARCHAR, studio_analysts VARCHAR, ice_level_reporters VARCHAR)"}, {"answer": "SELECT color_commentator_s_ FROM table_22485543_1 WHERE ice_level_reporters = \"Brian Engblom\"", "question": "Who is the color commentator when brian engblom is ice level reporters?", "context": "CREATE TABLE table_22485543_1 (color_commentator_s_ VARCHAR, ice_level_reporters VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_22485543_1 WHERE network = \"NBC\" AND ice_level_reporters = \"Darren Pang\"", "question": "Who is the play-by-play when nbc is the network and darren pang is the ice level reporters?", "context": "CREATE TABLE table_22485543_1 (play_by_play VARCHAR, network VARCHAR, ice_level_reporters VARCHAR)"}, {"answer": "SELECT studio_host FROM table_22485543_1 WHERE year = \"2010\"", "question": "Who is the studio host for the year 2010?", "context": "CREATE TABLE table_22485543_1 (studio_host VARCHAR, year VARCHAR)"}, {"answer": "SELECT vacator FROM table_224844_4 WHERE district = \"Connecticut At-large\"", "question": "Who left a seat open for the district of connecticut at-large", "context": "CREATE TABLE table_224844_4 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_224844_4 WHERE district = \"Connecticut At-large\"", "question": "Why was a seat left open fo Connecticut at-large?", "context": "CREATE TABLE table_224844_4 (reason_for_change VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(rank_asia) FROM table_2248784_4", "question": "What is the smallest Asian rank?", "context": "CREATE TABLE table_2248784_4 (rank_asia INTEGER)"}, {"answer": "SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_4 WHERE country = \"Iraq\"", "question": "What 2011 GDP (PPP) billions of USD does Iraq have?", "context": "CREATE TABLE table_2248784_4 (country VARCHAR)"}, {"answer": "SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_4 WHERE country = \"Israel\"", "question": "What 2011 GDP (PPP) billions of USD does Israel have?", "context": "CREATE TABLE table_2248784_4 (country VARCHAR)"}, {"answer": "SELECT COUNT(rank_asia) FROM table_2248784_4 WHERE rank_mideast = 1", "question": "How many asian rank have 1 as a mideast rank?", "context": "CREATE TABLE table_2248784_4 (rank_asia VARCHAR, rank_mideast VARCHAR)"}, {"answer": "SELECT gdp_world_rank FROM table_2249029_1 WHERE asian_rank = 15", "question": "Name the gdp world rank for asian rank being 15", "context": "CREATE TABLE table_2249029_1 (gdp_world_rank VARCHAR, asian_rank VARCHAR)"}, {"answer": "SELECT gdp_per_capita FROM table_2249029_1 WHERE gdp_world_rank = \"131\"", "question": "Name the gdp per capita for world rank being 131", "context": "CREATE TABLE table_2249029_1 (gdp_per_capita VARCHAR, gdp_world_rank VARCHAR)"}, {"answer": "SELECT gdp_world_rank FROM table_2249029_1 WHERE asian_rank = 20", "question": "Name the gdp world rank for asian rank being 20", "context": "CREATE TABLE table_2249029_1 (gdp_world_rank VARCHAR, asian_rank VARCHAR)"}, {"answer": "SELECT MAX(world_rank) FROM table_2249029_1 WHERE asian_rank = 31", "question": "Name the most world rank for asian rank being 31", "context": "CREATE TABLE table_2249029_1 (world_rank INTEGER, asian_rank VARCHAR)"}, {"answer": "SELECT MIN(rank_subcontinent) FROM table_2248784_3 WHERE country = \"Bangladesh\"", "question": "Name the least rank subcontinent for bangladesh", "context": "CREATE TABLE table_2248784_3 (rank_subcontinent INTEGER, country VARCHAR)"}, {"answer": "SELECT rank_world FROM table_2248784_3 WHERE rank_subcontinent = 7", "question": "Name the rank world for 7 rank subcontinent", "context": "CREATE TABLE table_2248784_3 (rank_world VARCHAR, rank_subcontinent VARCHAR)"}, {"answer": "SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_3 WHERE country = \"Pakistan\"", "question": "Name the 2011 gdp for pakistan", "context": "CREATE TABLE table_2248784_3 (country VARCHAR)"}, {"answer": "SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_3 WHERE rank_world = 65", "question": "Name the 2011 gdp for 65 rank world", "context": "CREATE TABLE table_2248784_3 (rank_world VARCHAR)"}, {"answer": "SELECT COUNT(rank_world) FROM table_2248784_3 WHERE country = \"Bhutan\"", "question": "Name the number of rank world for bhutan", "context": "CREATE TABLE table_2248784_3 (rank_world VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(world_rank) FROM table_2248991_2 WHERE nation = \"Nigeria\"", "question": "How many items were listed under world rank under the nation of Nigeria?", "context": "CREATE TABLE table_2248991_2 (world_rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(gdp_per_capita) FROM table_2248991_2 WHERE nation = \"Burkina Faso\"", "question": "How many items are listed under gdp per capita under the nation of Burkina Faso?", "context": "CREATE TABLE table_2248991_2 (gdp_per_capita VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(total_gdp_world_rank) FROM table_2248991_2 WHERE gdp_per_capita = \"$1,163\"", "question": "What is the total gdp world rank when the gdp per capita was listed at $1,163?", "context": "CREATE TABLE table_2248991_2 (total_gdp_world_rank INTEGER, gdp_per_capita VARCHAR)"}, {"answer": "SELECT MIN(world_rank) FROM table_2249087_1 WHERE south_american_rank = 3", "question": "Name the least world rank for south american rank 3", "context": "CREATE TABLE table_2249087_1 (world_rank INTEGER, south_american_rank VARCHAR)"}, {"answer": "SELECT MIN(south_american_rank) FROM table_2249087_1 WHERE nation = \"Venezuela\"", "question": "Name the south american rank for venezuela", "context": "CREATE TABLE table_2249087_1 (south_american_rank INTEGER, nation VARCHAR)"}, {"answer": "SELECT COUNT(weight) FROM table_22496374_1 WHERE home_town = \"San Francisco, CA\"", "question": "How many weight stats are there for players from San Francisco, CA?", "context": "CREATE TABLE table_22496374_1 (weight VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_22496374_1 WHERE name = \"Rickie Winslow\"", "question": "What was rickie winslow's number?", "context": "CREATE TABLE table_22496374_1 (_number INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_22496374_1 WHERE home_town = \"Lagos, Nigeria\"", "question": "How many height entries are there for players from lagos, nigeria?", "context": "CREATE TABLE table_22496374_1 (height VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT home_town FROM table_22496374_1 WHERE high_school = \"Alvin\"", "question": "What is the hometown of the players from alvin high school?", "context": "CREATE TABLE table_22496374_1 (home_town VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_22496374_1 WHERE high_school = \"Bayside\"", "question": "How many height entries are there for players from bayside high school?", "context": "CREATE TABLE table_22496374_1 (height VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT COUNT(reason_for_change) FROM table_225095_4 WHERE successor = \"Edward Hempstead\"", "question": "How many reasons for change were listed when Edward Hempstead was the successor?", "context": "CREATE TABLE table_225095_4 (reason_for_change VARCHAR, successor VARCHAR)"}, {"answer": "SELECT COUNT(vacator) FROM table_225095_4 WHERE district = \"North Carolina 3rd\"", "question": "How many Vacators were listed when the district was North Carolina 3rd?", "context": "CREATE TABLE table_225095_4 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT vacator FROM table_225095_4 WHERE successor = \"Shadrach Bond\"", "question": "Who was the vacator when Shadrach Bond was the successor?", "context": "CREATE TABLE table_225095_4 (vacator VARCHAR, successor VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_225096_4 WHERE reason_for_change = \"Until August 2, 1813\"", "question": "When was the successor who got his seat because of \"until august 2, 1813\" seated?", "context": "CREATE TABLE table_225096_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_225098_4 WHERE district = \"Massachusetts 20th\"", "question": "The successor for the Massachusetts 20th district was seated on what date?", "context": "CREATE TABLE table_225098_4 (date_successor_seated VARCHAR, district VARCHAR)"}, {"answer": "SELECT vacator FROM table_225098_4 WHERE district = \"Pennsylvania 6th\"", "question": "Who vacated the Pennsylvania 6th district?", "context": "CREATE TABLE table_225098_4 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT successor FROM table_225099_3 WHERE state__class_ = \"Maine (2)\"", "question": "Who was the successor for the state of Maine (2) ?", "context": "CREATE TABLE table_225099_3 (successor VARCHAR, state__class_ VARCHAR)"}, {"answer": "SELECT date_of_successors_formal_installation FROM table_225099_3 WHERE reason_for_change = \"Resigned December 4, 1819\"", "question": "What is the date of successors formal installation when the reason for change is resigned december 4, 1819?", "context": "CREATE TABLE table_225099_3 (date_of_successors_formal_installation VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT COUNT(date_of_successors_formal_installation) FROM table_225099_3 WHERE successor = \"John W. Walker (DR)\"", "question": "How many entries are shown for date of successors formal installation where successor is john w. walker (dr)?", "context": "CREATE TABLE table_225099_3 (date_of_successors_formal_installation VARCHAR, successor VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_225099_3 WHERE reason_for_change = \"Resigned May 15, 1820\"", "question": "what is the state for reason for change is resigned may 15, 1820?", "context": "CREATE TABLE table_225099_3 (state__class_ VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT trophy_presentation FROM table_22514845_4 WHERE year = 1987", "question": "Who is the trophy presentation in the year 1987?", "context": "CREATE TABLE table_22514845_4 (trophy_presentation VARCHAR, year VARCHAR)"}, {"answer": "SELECT network FROM table_22514845_4 WHERE s_analyst = \"Eddie Arcaro\"", "question": "Which network has s analyst of eddie arcaro?", "context": "CREATE TABLE table_22514845_4 (network VARCHAR, s_analyst VARCHAR)"}, {"answer": "SELECT reporters FROM table_22514845_4 WHERE year = 1984", "question": "Who are the reporters for the year of 1984?", "context": "CREATE TABLE table_22514845_4 (reporters VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(trophy_presentation) FROM table_22514845_4 WHERE year = 1987", "question": "How many trophy presentations where in the year 1987?", "context": "CREATE TABLE table_22514845_4 (trophy_presentation VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_22514845_4 WHERE reporters = \"Howard Cosell and Jack Whitaker\" AND s_analyst = \"Bill Hartack\"", "question": "In which year were howard cosell and jack whitaker reporters and s analyst is bill hartack?", "context": "CREATE TABLE table_22514845_4 (year INTEGER, reporters VARCHAR, s_analyst VARCHAR)"}, {"answer": "SELECT race_caller FROM table_22514845_4 WHERE s_host = \"Jim McKay and Al Michaels\" AND year = 1987", "question": "Who is the race caller when jim mckay and al michaels were s hosts in the year 1987?", "context": "CREATE TABLE table_22514845_4 (race_caller VARCHAR, s_host VARCHAR, year VARCHAR)"}, {"answer": "SELECT s_host FROM table_22514845_5 WHERE s_analyst = \"John Rotz and Howard Cosell\"", "question": "Name the host for  john rotz and howard cosell", "context": "CREATE TABLE table_22514845_5 (s_host VARCHAR, s_analyst VARCHAR)"}, {"answer": "SELECT race_caller FROM table_22514845_5 WHERE s_host = \"Jim McKay\" AND reporters = \"Howard Cosell\"", "question": "Name the race caller for jim mckay and howard cosell", "context": "CREATE TABLE table_22514845_5 (race_caller VARCHAR, s_host VARCHAR, reporters VARCHAR)"}, {"answer": "SELECT race_caller FROM table_22514845_5 WHERE trophy_presentation = \"Jim McKay and Howard Cosell\" AND reporters = \"Howard Cosell\" AND s_analyst = \"Eddie Arcaro\"", "question": "Name the race caller for jim mckay and howard cosell and eddie arcaro", "context": "CREATE TABLE table_22514845_5 (race_caller VARCHAR, s_analyst VARCHAR, trophy_presentation VARCHAR, reporters VARCHAR)"}, {"answer": "SELECT reporters FROM table_22514845_5 WHERE race_caller = \"Dave Johnson\" AND s_analyst = \"Eddie Arcaro and Howard Cosell\"", "question": "Name the reporters for dave johnson for  eddie arcaro and howard cosell", "context": "CREATE TABLE table_22514845_5 (reporters VARCHAR, race_caller VARCHAR, s_analyst VARCHAR)"}, {"answer": "SELECT reporters FROM table_22514845_5 WHERE s_analyst = \"Howard Cosell\"", "question": "Name the reporters for howard cosell", "context": "CREATE TABLE table_22514845_5 (reporters VARCHAR, s_analyst VARCHAR)"}, {"answer": "SELECT COUNT(reporters) FROM table_22514845_5 WHERE s_analyst = \"Heywood Hale Broun\"", "question": "Name the number of reporters for  heywood hale broun", "context": "CREATE TABLE table_22514845_5 (reporters VARCHAR, s_analyst VARCHAR)"}, {"answer": "SELECT province FROM table_2251578_4 WHERE elevation__m_ = 4550", "question": "Which province has an elevation of 4550? ", "context": "CREATE TABLE table_2251578_4 (province VARCHAR, elevation__m_ VARCHAR)"}, {"answer": "SELECT province FROM table_2251578_4 WHERE district = \"San Antonio de Chuca\"", "question": "Which province is in the district of San Antonio de Chuca? ", "context": "CREATE TABLE table_2251578_4 (province VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(elevation__m_) FROM table_2251578_4 WHERE district = \"Paratia\"", "question": "How many elevations are listed for Paratia? ", "context": "CREATE TABLE table_2251578_4 (elevation__m_ VARCHAR, district VARCHAR)"}, {"answer": "SELECT province FROM table_2251578_4 WHERE district = \"Condoroma\"", "question": "What province is in the district of Condoroma? ", "context": "CREATE TABLE table_2251578_4 (province VARCHAR, district VARCHAR)"}, {"answer": "SELECT reporters FROM table_22514845_2 WHERE year = 2003", "question": "Name the reporters for 2003", "context": "CREATE TABLE table_22514845_2 (reporters VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(race_caller) FROM table_22514845_2 WHERE trophy_presentation = \"Bob Costas and Charlsie Cantey\"", "question": "Name the total number for race caller for bob costas and charlsie cantey", "context": "CREATE TABLE table_22514845_2 (race_caller VARCHAR, trophy_presentation VARCHAR)"}, {"answer": "SELECT race_caller FROM table_22514845_3 WHERE year = 1994", "question": "Who is the race caller for the year 1994?", "context": "CREATE TABLE table_22514845_3 (race_caller VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(reporters) FROM table_22514845_3 WHERE year = 1993", "question": "How many reporters for the year 1993?", "context": "CREATE TABLE table_22514845_3 (reporters VARCHAR, year VARCHAR)"}, {"answer": "SELECT starting_odds FROM table_22517564_3 WHERE opening_odds = \"2-1\"", "question": "What were the starting odds for the opening odds of 2-1?", "context": "CREATE TABLE table_22517564_3 (starting_odds VARCHAR, opening_odds VARCHAR)"}, {"answer": "SELECT jockey FROM table_22517564_3 WHERE opening_odds = \"4-1\"", "question": "Who was the jockey with opening odds of 4-1?", "context": "CREATE TABLE table_22517564_3 (jockey VARCHAR, opening_odds VARCHAR)"}, {"answer": "SELECT COUNT(jockey) FROM table_22517564_3 WHERE trainer = \"Eoin Harty\"", "question": "HOw many jockeys had eoin harty as a trainer", "context": "CREATE TABLE table_22517564_3 (jockey VARCHAR, trainer VARCHAR)"}, {"answer": "SELECT post FROM table_22517564_3 WHERE horse_name = \"Chocolate Candy\"", "question": "Which post had the horse named chocolate candy?", "context": "CREATE TABLE table_22517564_3 (post VARCHAR, horse_name VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_225199_4 WHERE district = \"Virginia 11th\"", "question": "What is every date successor seated for the Virginia 11th District?", "context": "CREATE TABLE table_225199_4 (date_successor_seated VARCHAR, district VARCHAR)"}, {"answer": "SELECT successor FROM table_225200_4 WHERE date_successor_seated = \"Not filled this congress\"", "question": "Name the successor for not filled this congress", "context": "CREATE TABLE table_225200_4 (successor VARCHAR, date_successor_seated VARCHAR)"}, {"answer": "SELECT district FROM table_225200_4 WHERE reason_for_change = \"Rep. Warren R. Davis died during previous congress\"", "question": "Name the district for  rep. warren r. davis died during previous congress", "context": "CREATE TABLE table_225200_4 (district VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT COUNT(reason_for_change) FROM table_225200_4 WHERE date_successor_seated = \"Not filled this congress\"", "question": "Name the total number of reason for change for not filled this congress", "context": "CREATE TABLE table_225200_4 (reason_for_change VARCHAR, date_successor_seated VARCHAR)"}, {"answer": "SELECT vacator FROM table_225200_4 WHERE reason_for_change = \"Resigned February 26, 1836 because of ill health\"", "question": "Name the vacator for resigned february 26, 1836 because of ill health", "context": "CREATE TABLE table_225200_4 (vacator VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT vacator FROM table_225205_3 WHERE reason_for_change = \"Failure to elect\"", "question": "Name the vacator for failure to elect", "context": "CREATE TABLE table_225205_3 (vacator VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_225205_3 WHERE reason_for_change = \"Iowa admitted to the Union December 28, 1846\"", "question": "Name the state class for  iowa admitted to the union december 28, 1846", "context": "CREATE TABLE table_225205_3 (state__class_ VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT vacator FROM table_225206_3 WHERE reason_for_change = \"Failure to elect\"", "question": "Who was the vacator when the reason for change was failure to elect?", "context": "CREATE TABLE table_225206_3 (vacator VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT COUNT(nat) FROM table_22542179_3 WHERE total_g = 6", "question": "Name the number of nat for total g of 6", "context": "CREATE TABLE table_22542179_3 (nat VARCHAR, total_g VARCHAR)"}, {"answer": "SELECT l_g FROM table_22542179_3 WHERE player = \"Rubio\"", "question": "Name the l g for rubio", "context": "CREATE TABLE table_22542179_3 (l_g VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(total_apps) FROM table_22542179_3 WHERE player = \"Txema\"", "question": "Name the least total apaps for txema", "context": "CREATE TABLE table_22542179_3 (total_apps INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(pop__km\u00b2) FROM table_2252745_1 WHERE administrative_centre = \"Egilssta\u00f0ir\"", "question": "when administrative centre is egilssta\u00f0ir, what is the pop./ km\u00b2?", "context": "CREATE TABLE table_2252745_1 (pop__km\u00b2 VARCHAR, administrative_centre VARCHAR)"}, {"answer": "SELECT pop__km\u00b2 FROM table_2252745_1 WHERE area__km\u00b2_ = 22721", "question": "when the area (km\u00b2) is 22721, what is the pop./ km\u00b2?", "context": "CREATE TABLE table_2252745_1 (pop__km\u00b2 VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT MAX(population_2008_07_01) FROM table_2252745_1 WHERE administrative_centre = \"Selfoss\"", "question": "What is the max pop of 2008 for selfoss?", "context": "CREATE TABLE table_2252745_1 (population_2008_07_01 INTEGER, administrative_centre VARCHAR)"}, {"answer": "SELECT pop__km\u00b2 FROM table_2252745_1 WHERE _number = 4", "question": "When the # is 4, what is the pop./ km\u00b2?", "context": "CREATE TABLE table_2252745_1 (pop__km\u00b2 VARCHAR, _number VARCHAR)"}, {"answer": "SELECT player FROM table_22538587_3 WHERE l_apps = 17", "question": "Name the player for l apps for 17", "context": "CREATE TABLE table_22538587_3 (player VARCHAR, l_apps VARCHAR)"}, {"answer": "SELECT MIN(total_apps) FROM table_22538587_3 WHERE player = \"Jaime\"", "question": "Name the least total apps for jaime", "context": "CREATE TABLE table_22538587_3 (total_apps INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(l_g) FROM table_22538587_3 WHERE c_g > 1.0 AND c_apps = 3", "question": "Name the total number of lg for cg is larger than 1.0 for c apps is 3", "context": "CREATE TABLE table_22538587_3 (l_g VARCHAR, c_g VARCHAR, c_apps VARCHAR)"}, {"answer": "SELECT result FROM table_22577693_1 WHERE runner_up = \"[[|]] 151/8 (50.0 overs)\"", "question": "If the runner-up is [[|]] 151/8 (50.0 overs), what were the results?", "context": "CREATE TABLE table_22577693_1 (result VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT host_nation_s_ FROM table_22577693_1 WHERE winner = \"Hong Kong 207/6 (47.1 overs)\"", "question": "What is the name of the host nations if the winner was Hong Kong 207/6 (47.1 overs)?", "context": "CREATE TABLE table_22577693_1 (host_nation_s_ VARCHAR, winner VARCHAR)"}, {"answer": "SELECT details FROM table_22577693_1 WHERE result = \"Kuwait won by 72 runs Scorecard\"", "question": "If the results are Kuwait won by 72 runs scorecard, what are the details?", "context": "CREATE TABLE table_22577693_1 (details VARCHAR, result VARCHAR)"}, {"answer": "SELECT winner FROM table_22577693_1 WHERE final_venue = \"Kowloon Cricket Club\"", "question": "Who was the winner if the final venue is Kowloon Cricket Club?", "context": "CREATE TABLE table_22577693_1 (winner VARCHAR, final_venue VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_22570439_1 WHERE series__number = 83", "question": "How many u.s. viewers (million) have a series # 83?", "context": "CREATE TABLE table_22570439_1 (us_viewers__millions_ VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_22570439_1 WHERE season__number = 5", "question": "How many u.s. viewers (millions) have 5 as the season #?", "context": "CREATE TABLE table_22570439_1 (us_viewers__millions_ VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_22570439_1 WHERE directed_by = \"Wendey Stanzler\"", "question": "How many written by have wendey stanzler as the director?", "context": "CREATE TABLE table_22570439_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_22570439_1 WHERE written_by = \"Tracy Poust & Jon Kinnally\"", "question": "What is the original air date where tracy poust & jon kinnally was written by?", "context": "CREATE TABLE table_22570439_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_22570439_1 WHERE directed_by = \"Mark Worthington\"", "question": "Who is the written by when mark worthington is the director?", "context": "CREATE TABLE table_22570439_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT reporters FROM table_22583466_5 WHERE year = 1976", "question": "In 1976, who was the reporter for the Belmont Stakes?", "context": "CREATE TABLE table_22583466_5 (reporters VARCHAR, year VARCHAR)"}, {"answer": "SELECT race_caller FROM table_22583466_5 WHERE year = 1978", "question": "Who called the race in 1978?", "context": "CREATE TABLE table_22583466_5 (race_caller VARCHAR, year VARCHAR)"}, {"answer": "SELECT s_host FROM table_22583466_5 WHERE race_caller = \"Marshall Cassidy\"", "question": "For the race called by Marshall Cassidy, who was the host?", "context": "CREATE TABLE table_22583466_5 (s_host VARCHAR, race_caller VARCHAR)"}, {"answer": "SELECT reporters FROM table_22583466_5 WHERE year = 1977", "question": "Who were the reporters for the 1977 Belmont Stakes?", "context": "CREATE TABLE table_22583466_5 (reporters VARCHAR, year VARCHAR)"}, {"answer": "SELECT race_caller FROM table_22583466_3 WHERE year = 1998", "question": "Who called the race in 1998? ", "context": "CREATE TABLE table_22583466_3 (race_caller VARCHAR, year VARCHAR)"}, {"answer": "SELECT 2007 AS _2008 FROM table_22591910_4 WHERE position = 3", "question": "who was position 3 in 2007-2008?", "context": "CREATE TABLE table_22591910_4 (position VARCHAR)"}, {"answer": "SELECT standing FROM table_2259285_1 WHERE goals_against = 279", "question": "What was the standing when goal against were 279? ", "context": "CREATE TABLE table_2259285_1 (standing VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT winning_pct__percentage FROM table_2259285_1 WHERE goals_for = 229", "question": "What is the winning pct % if the goal for are 229? ", "context": "CREATE TABLE table_2259285_1 (winning_pct__percentage VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT winning_pct__percentage FROM table_2259285_1 WHERE goals_for = 322", "question": "What was the winning % when there were 322 goals? ", "context": "CREATE TABLE table_2259285_1 (winning_pct__percentage VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT year FROM table_225880_1 WHERE runner_s__up = \"Willie Goggin\"", "question": "Name the year for willie goggin", "context": "CREATE TABLE table_225880_1 (year VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_225880_1 WHERE championship = \"PGA championship\"", "question": "Name the winning score for pga championship", "context": "CREATE TABLE table_225880_1 (winning_score VARCHAR, championship VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_225880_1 WHERE runner_s__up = \"Walter Hagen\"", "question": "Name the least year for walter hagen", "context": "CREATE TABLE table_225880_1 (year INTEGER, runner_s__up VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_22597626_17 WHERE opponents_in_the_final = \"Fitzgerald Vilas\"", "question": "What was the score in the final where one of the opponents in the final was fitzgerald vilas?", "context": "CREATE TABLE table_22597626_17 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_22597626_17 WHERE opponents_in_the_final = \"Fitzgerald Vilas\"", "question": "What was the surface for the  opponents in the final with fitzgerald vilas?", "context": "CREATE TABLE table_22597626_17 (surface VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_22597626_17 WHERE score_in_the_final = \"6\u20134, 7\u20136 2\"", "question": "Who were the opponents in the final where the score in the final is 6\u20134, 7\u20136 2?", "context": "CREATE TABLE table_22597626_17 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(partner) FROM table_22597626_17 WHERE opponents_in_the_final = \"Forget Leconte\"", "question": "What was the partner count when the opponents in the final was forget leconte?", "context": "CREATE TABLE table_22597626_17 (partner VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_22597626_17 WHERE opponents_in_the_final = \"Bahrami Leconte\" AND score_in_the_final = \"7\u20136 2 , 6\u20131\"", "question": "What was the year date when one of the opponents in the final was bahrami leconte and score in the final is 7\u20136 2 , 6\u20131?", "context": "CREATE TABLE table_22597626_17 (year INTEGER, opponents_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_22597626_6 WHERE score_in_the_final = \"6\u20133, 6\u20132, 6\u20134\"", "question": "Name the number of year for score being  6\u20133, 6\u20132, 6\u20134", "context": "CREATE TABLE table_22597626_6 (year VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_22597626_6 WHERE score_in_the_final = \"6\u20130, 6\u20133\"", "question": "Name the surface for 6\u20130, 6\u20133", "context": "CREATE TABLE table_22597626_6 (surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT championship FROM table_22597626_6 WHERE opponent_in_the_final = \"Peter McNamara\"", "question": "Name the championship for peter mcnamara", "context": "CREATE TABLE table_22597626_6 (championship VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT championship FROM table_22597626_6 WHERE year = 1980 AND surface = \"Hard\"", "question": "Name the championship for 1980 hard surface", "context": "CREATE TABLE table_22597626_6 (championship VARCHAR, year VARCHAR, surface VARCHAR)"}, {"answer": "SELECT race_time FROM table_2260452_1 WHERE team = \"Billy Ballew Motorsports\"", "question": "If the team is Billy Ballew Motorsports, what is the race time?", "context": "CREATE TABLE table_2260452_1 (race_time VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_2260452_1 WHERE driver = \"Robert Pressley\"", "question": "What was the date if the driver was Robert Pressley?", "context": "CREATE TABLE table_2260452_1 (date VARCHAR, driver VARCHAR)"}, {"answer": "SELECT average_speed__mph_ FROM table_2260452_1 WHERE race_time = \"2:00:33\"", "question": "If the race time is 2:00:33, what is the average speed?", "context": "CREATE TABLE table_2260452_1 (average_speed__mph_ VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT 1982 AS _83 FROM table_22606461_10 WHERE rank = 1", "question": "What is every entry for 1982-83 for rank 1?", "context": "CREATE TABLE table_22606461_10 (rank VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_22603701_1 WHERE position = \"WR\" AND name = \"Jesse Holley\"", "question": "How many heights are listed for Jesse Holley in the WR position? ", "context": "CREATE TABLE table_22603701_1 (height VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT result FROM table_22603701_1 WHERE college = \"Wisconsin\"", "question": "What is the result for Wisconsin? ", "context": "CREATE TABLE table_22603701_1 (result VARCHAR, college VARCHAR)"}, {"answer": "SELECT result FROM table_22603701_1 WHERE name = \"Steve Gonzalez\"", "question": "What is the result for Steve Gonzalez? ", "context": "CREATE TABLE table_22603701_1 (result VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_22603701_1 WHERE college = \"Menlo college\"", "question": "What are the positions for Menlo College? ", "context": "CREATE TABLE table_22603701_1 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT features FROM table_2263152_1 WHERE security_issues = \"98-004\" AND distribution_mechanism = \"Microsoft website\"", "question": "If the distribution mechanism is the Microsoft website and the security issues id 98-004, what are all of the features?", "context": "CREATE TABLE table_2263152_1 (features VARCHAR, security_issues VARCHAR, distribution_mechanism VARCHAR)"}, {"answer": "SELECT version FROM table_2263152_1 WHERE security_issues = \"98-004\" AND distribution_mechanism = \"Microsoft website\"", "question": "With the distribution mechanism of Microsoft website and the security issues of 98-004, what is the version?", "context": "CREATE TABLE table_2263152_1 (version VARCHAR, security_issues VARCHAR, distribution_mechanism VARCHAR)"}, {"answer": "SELECT COUNT(release_date) FROM table_2263152_1 WHERE security_issues = \"99-025\" AND distribution_mechanism = \"Microsoft website\"", "question": "If the security issues is 99-025 and the distribution mechanism is the Microsoft website, what is the release date total number?", "context": "CREATE TABLE table_2263152_1 (release_date VARCHAR, security_issues VARCHAR, distribution_mechanism VARCHAR)"}, {"answer": "SELECT release_date FROM table_2263152_1 WHERE version = \"1.5a\"", "question": "With the version of 1.5a, what is the release date?", "context": "CREATE TABLE table_2263152_1 (release_date VARCHAR, version VARCHAR)"}, {"answer": "SELECT version FROM table_2263152_1 WHERE features = \"Service release\" AND distribution_mechanism = \"Windows NT 4.0 Option Pack Microsoft Office 97\"", "question": "If the distribution mechanism is windows nt 4.0 option pack Microsoft office 97 and the features is service release, what is the version?", "context": "CREATE TABLE table_2263152_1 (version VARCHAR, features VARCHAR, distribution_mechanism VARCHAR)"}, {"answer": "SELECT distribution_mechanism FROM table_2263152_1 WHERE version = \"1.5b\"", "question": "If the version is 1.5b, what is the distribution mechanism?", "context": "CREATE TABLE table_2263152_1 (distribution_mechanism VARCHAR, version VARCHAR)"}, {"answer": "SELECT COUNT(tournament_venue__city_) FROM table_22645714_5 WHERE tournament_winner = \"Temple\"", "question": "How many locations are listed for the winner Temple?", "context": "CREATE TABLE table_22645714_5 (tournament_venue__city_ VARCHAR, tournament_winner VARCHAR)"}, {"answer": "SELECT COUNT(tournament_venue__city_) FROM table_22645714_5 WHERE conference = \"Big 12 conference\"", "question": "How many locations are listed for the Big 12 Conference?", "context": "CREATE TABLE table_22645714_5 (tournament_venue__city_ VARCHAR, conference VARCHAR)"}, {"answer": "SELECT regular_season_winner FROM table_22645714_5 WHERE tournament_winner = \"Arkansas-Pine Bluff\"", "question": "Who had the best regular season in the contest won by Arkansas-Pine Bluff?", "context": "CREATE TABLE table_22645714_5 (regular_season_winner VARCHAR, tournament_winner VARCHAR)"}, {"answer": "SELECT age_at_appointment FROM table_2263674_1 WHERE chinese_name = \"\u5b6b\u660e\u63da\"", "question": "How old was the official with Chinese name  \u5b6b\u660e\u63da?", "context": "CREATE TABLE table_2263674_1 (age_at_appointment VARCHAR, chinese_name VARCHAR)"}, {"answer": "SELECT romanised_name FROM table_2263674_1 WHERE chinese_name = \"\u6881\u611b\u8a69\"", "question": "What's \u6881\u611b\u8a69's romanised name?", "context": "CREATE TABLE table_2263674_1 (romanised_name VARCHAR, chinese_name VARCHAR)"}, {"answer": "SELECT romanised_name FROM table_2263674_1 WHERE portfolio = \"Secretary for Health, Welfare and Food\"", "question": "What's the romanised name of the official who was Secretary for health, welfare and food?", "context": "CREATE TABLE table_2263674_1 (romanised_name VARCHAR, portfolio VARCHAR)"}, {"answer": "SELECT portfolio FROM table_2263674_1 WHERE romanised_name = \"Anthony Leung Kam-chung\"", "question": "What was Anthony Leung Kam-Chung previous position?", "context": "CREATE TABLE table_2263674_1 (portfolio VARCHAR, romanised_name VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_22654073_13 WHERE date = \"May 11\"", "question": "List all high rebound entries from May 11.", "context": "CREATE TABLE table_22654073_13 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_22654073_13 WHERE date = \"May 1\"", "question": "How many games were there on May 1?", "context": "CREATE TABLE table_22654073_13 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_22654073_13 WHERE series = \"2-3\"", "question": "List all high assists in series 2-3.", "context": "CREATE TABLE table_22654073_13 (high_assists VARCHAR, series VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_22654073_13 WHERE date = \"May 11\"", "question": "How many games were played on May 11?", "context": "CREATE TABLE table_22654073_13 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_22654073_7 WHERE team = \"Chicago Bulls\"", "question": "Name the score for chicago bulls", "context": "CREATE TABLE table_22654073_7 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_22654073_7 WHERE record = \"22-8\"", "question": "Name the location attendance for 22-8", "context": "CREATE TABLE table_22654073_7 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_22654073_7 WHERE high_rebounds = \"Mo Williams , LeBron James , J.J. Hickson (6)\"", "question": "Name the high points for mo williams , lebron james , j.j. hickson (6)", "context": "CREATE TABLE table_22654073_7 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_assists FROM table_22654073_7 WHERE date = \"December 13\"", "question": "Name the high assists for december 13", "context": "CREATE TABLE table_22654073_7 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT august_21_22 FROM table_22651355_3 WHERE june_10_11 = \"June 11, 1983\"", "question": "What value can you find under the column \"august 21-22\" and the row of June 11, 1983?", "context": "CREATE TABLE table_22651355_3 (august_21_22 VARCHAR, june_10_11 VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_22654073_10 WHERE record = \"51-15\"", "question": "What was the location and attendance for the game against the team with a 51-15 record with the Cavaliers?", "context": "CREATE TABLE table_22654073_10 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_22654073_8 WHERE record = \"27-9\"", "question": "How many scores are associated with a record of 27-9?", "context": "CREATE TABLE table_22654073_8 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_22654073_8 WHERE record = \"29-10\"", "question": "How many games are associated with a record of 29-10?", "context": "CREATE TABLE table_22654073_8 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT team FROM table_22654073_6 WHERE record = \"3-2\"", "question": "Name the team for record 3-2", "context": "CREATE TABLE table_22654073_6 (team VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_22654073_6 WHERE high_points = \"LeBron James , Mo Williams (21)\"", "question": "Name the date for lebron james , mo williams (21)", "context": "CREATE TABLE table_22654073_6 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_points FROM table_22654073_6 WHERE record = \"9-4\"", "question": "Name the high points for record 9-4", "context": "CREATE TABLE table_22654073_6 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_22654073_6 WHERE score = \"L 85\u201386 (OT)\"", "question": "Name the total number of date for l 85\u201386 (ot)", "context": "CREATE TABLE table_22654073_6 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(network) FROM table_22654139_2 WHERE year = 2007", "question": "Name the network for 2007 total", "context": "CREATE TABLE table_22654139_2 (network VARCHAR, year VARCHAR)"}, {"answer": "SELECT s_analyst FROM table_22654139_2", "question": "Name the analysts", "context": "CREATE TABLE table_22654139_2 (s_analyst VARCHAR)"}, {"answer": "SELECT result FROM table_22656187_9 WHERE partnering = \"Frederica Piedade\"", "question": "What was the result for a partnering of Frederica Piedade?", "context": "CREATE TABLE table_22656187_9 (result VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT round FROM table_22656187_9 WHERE w_l = \"Loss\" AND edition = \"2012 Fed Cup Europe/Africa Group I\"", "question": "Which round has a win-loss result of loss and an edition of 2012 Fed Cup Europe/Africa Group I?", "context": "CREATE TABLE table_22656187_9 (round VARCHAR, w_l VARCHAR, edition VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_2266230_1 WHERE driver = \"Cale Yarborough\" AND year = \"1984\"", "question": "Name the manufacturer for cale yarborough for 1984", "context": "CREATE TABLE table_2266230_1 (manufacturer VARCHAR, driver VARCHAR, year VARCHAR)"}, {"answer": "SELECT report FROM table_2266230_1 WHERE year = \"2003\"", "question": "Name the report for 2003", "context": "CREATE TABLE table_2266230_1 (report VARCHAR, year VARCHAR)"}, {"answer": "SELECT date_opened FROM table_22665117_1 WHERE dist_id = 11901", "question": "What is the date opened if thedistrict ID is 11901?", "context": "CREATE TABLE table_22665117_1 (date_opened VARCHAR, dist_id VARCHAR)"}, {"answer": "SELECT authorizing_agency FROM table_22665117_1 WHERE district_name = \"Academy of Flint\"", "question": "If the district name is the Academy of Flint, what is the authorizing agency?", "context": "CREATE TABLE table_22665117_1 (authorizing_agency VARCHAR, district_name VARCHAR)"}, {"answer": "SELECT district_name FROM table_22665117_1 WHERE dist_id = 74907", "question": "If the district ID is 74907, what is the name of the district?", "context": "CREATE TABLE table_22665117_1 (district_name VARCHAR, dist_id VARCHAR)"}, {"answer": "SELECT county FROM table_22665117_1 WHERE district_name = \"Charyl Stockwell Academy\"", "question": "If the name of the district is the Charyl Stockwell Academy, what is the county name?", "context": "CREATE TABLE table_22665117_1 (county VARCHAR, district_name VARCHAR)"}, {"answer": "SELECT driver FROM table_2266976_1 WHERE year = \"1986\"", "question": "Who was the driver in 1986?", "context": "CREATE TABLE table_2266976_1 (driver VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_2266976_1 WHERE average_speed__mph_ = \"81.388\"", "question": "When was an average speed of 81.388 mph recorded?", "context": "CREATE TABLE table_2266976_1 (date VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_2266976_1 WHERE year = \"1990\"", "question": "Who was the manufacturer in 1990?", "context": "CREATE TABLE table_2266976_1 (manufacturer VARCHAR, year VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_2266976_1 WHERE race_time = \"2:30:28\"", "question": "Who was the manufacturer in the year when the race lasted 2:30:28?", "context": "CREATE TABLE table_2266976_1 (manufacturer VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT team FROM table_2266976_1 WHERE year = \"2003\"", "question": "What team competed in 2003?", "context": "CREATE TABLE table_2266976_1 (team VARCHAR, year VARCHAR)"}, {"answer": "SELECT miles__km_ FROM table_2266976_1 WHERE race_time = \"3:07:53\"", "question": "How long in miles (km) was the race that lasted 3:07:53?", "context": "CREATE TABLE table_2266976_1 (miles__km_ VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT race_name FROM table_22669375_1 WHERE date = \"June 6\"", "question": "Name the race name for june 6", "context": "CREATE TABLE table_22669375_1 (race_name VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_22669375_1 WHERE race_name = \"Trenton 300\"", "question": "Name the location for trenton 300", "context": "CREATE TABLE table_22669375_1 (location VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT race_name FROM table_22669375_1 WHERE rnd = 11", "question": "Name the race name for rnd being 11", "context": "CREATE TABLE table_22669375_1 (race_name VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT length FROM table_22669816_1 WHERE winning_driver = \"Roger McCluskey\"", "question": "What length was won by Roger McCluskey?", "context": "CREATE TABLE table_22669816_1 (length VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT rnd FROM table_22669816_1 WHERE track = \"Phoenix International Raceway\"", "question": "What rounds did Phoenix International Raceway host?", "context": "CREATE TABLE table_22669816_1 (rnd VARCHAR, track VARCHAR)"}, {"answer": "SELECT length FROM table_22669816_1 WHERE track = \"Pocono International Raceway\"", "question": "What are the lengths hosted by Pocono International Raceway?", "context": "CREATE TABLE table_22669816_1 (length VARCHAR, track VARCHAR)"}, {"answer": "SELECT length FROM table_22669816_1 WHERE track = \"Phoenix International Raceway\"", "question": "What lengths did Phoenix International Raceway host?", "context": "CREATE TABLE table_22669816_1 (length VARCHAR, track VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_22669044_7 WHERE score = \"L 83\u2013118 (OT)\"", "question": "Name the location attendance for score being l 83\u2013118 (ot)", "context": "CREATE TABLE table_22669044_7 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_22669044_7 WHERE date = \"December 9\"", "question": "Name the high assists for december 9", "context": "CREATE TABLE table_22669044_7 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(winner) FROM table_2267345_2 WHERE team_classification = \"Kelme-Costa Blanca\" AND combativity_award = \"Jacky Durand\"", "question": "What is the total number of winners when the team classification leader was Kelme-Costa Blanca and the combativity award was won by Jacky Durand?", "context": "CREATE TABLE table_2267345_2 (winner VARCHAR, team_classification VARCHAR, combativity_award VARCHAR)"}, {"answer": "SELECT general_classification FROM table_2267345_2 WHERE young_rider_classification = \"Salvatore Commesso\" AND winner = \"Erik Dekker\"", "question": "Who was the general classification leader when the young rider classification leader was Salvatore Commesso and the winner was Erik Dekker?", "context": "CREATE TABLE table_2267345_2 (general_classification VARCHAR, young_rider_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(team_classification) FROM table_2267345_2 WHERE young_rider_classification = \"Salvatore Commesso\" AND combativity_award = \"Jacky Durand\"", "question": "What is the total number of team classifications when the young rider classification leader was Salvatore Commesso and the combativity award winner was Jacky Durand?", "context": "CREATE TABLE table_2267345_2 (team_classification VARCHAR, young_rider_classification VARCHAR, combativity_award VARCHAR)"}, {"answer": "SELECT MIN(rnd) FROM table_22673872_1 WHERE winning_driver = \"Al Unser\" AND track = \"Wisconsin State Fair Park Speedway\"", "question": "In what round did Al Unser win at Wisconsin State Fair Park Speedway? ", "context": "CREATE TABLE table_22673872_1 (rnd INTEGER, winning_driver VARCHAR, track VARCHAR)"}, {"answer": "SELECT COUNT(race_name) FROM table_22673872_1 WHERE location = \"College Station, Texas\" AND winning_driver = \"Johnny Rutherford\"", "question": "How many races are in College Station, Texas and won by Johnny Rutherford? ", "context": "CREATE TABLE table_22673872_1 (race_name VARCHAR, location VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT race_name FROM table_22673872_1 WHERE pole_position = \"Al Unser\"", "question": "What was the name of the race that Al Unser had the pole position? ", "context": "CREATE TABLE table_22673872_1 (race_name VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT track FROM table_22673872_1 WHERE race_name = \"International 500 Mile Sweepstakes\"", "question": "What is the name of the track for the International 500 mile Sweepstakes race? ", "context": "CREATE TABLE table_22673872_1 (track VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT location FROM table_22673872_1 WHERE pole_position = \"Gordon Johncock\"", "question": "Which locations did Gordon Johncock hold the pole position? ", "context": "CREATE TABLE table_22673872_1 (location VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT classification FROM table_2266990_2 WHERE title = \"Fish Rap Live!\"", "question": "What classifications does Fish Rap live! has?", "context": "CREATE TABLE table_2266990_2 (classification VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(race_name) FROM table_22673956_1 WHERE date = \"October 1\"", "question": "How many races took place on October 1?", "context": "CREATE TABLE table_22673956_1 (race_name VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(type) FROM table_22673956_1 WHERE track = \"Phoenix International Raceway\"", "question": "How many types of tracks are there on the Phoenix International raceway?", "context": "CREATE TABLE table_22673956_1 (type VARCHAR, track VARCHAR)"}, {"answer": "SELECT MAX(rnd) FROM table_22673956_1 WHERE race_name = \"Daily Empress Indy Silverstone\"", "question": "Daily Empress Indy Silverstone took place on which round?", "context": "CREATE TABLE table_22673956_1 (rnd INTEGER, race_name VARCHAR)"}, {"answer": "SELECT COUNT(race_name) FROM table_22673956_1 WHERE track = \"Indianapolis Motor Speedway\"", "question": "How many races took place on the Indianapolis Motor Speedway track?", "context": "CREATE TABLE table_22673956_1 (race_name VARCHAR, track VARCHAR)"}, {"answer": "SELECT driver FROM table_2267465_1 WHERE race_time = \"3:50:12\"", "question": "What driver achieved a 3:50:12 race time?", "context": "CREATE TABLE table_2267465_1 (driver VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_2267465_1 WHERE team = \"Race Hill Farm team\"", "question": "Can you tell me the manufacturer behind Race Hill Farm Team?", "context": "CREATE TABLE table_2267465_1 (manufacturer VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_2267465_1 WHERE race_time = \"3:34:26\"", "question": "How many laps have a 3:34:26 race time?", "context": "CREATE TABLE table_2267465_1 (laps VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT average_speed__mph_ FROM table_2267465_1 WHERE year = \"1964\"", "question": "What's the average mph of 1964?", "context": "CREATE TABLE table_2267465_1 (average_speed__mph_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_2268216_1 WHERE team = \"Ranier-Lundy\"", "question": "Whose is the manufacturer for team Ranier-Lundy? ", "context": "CREATE TABLE table_2268216_1 (manufacturer VARCHAR, team VARCHAR)"}, {"answer": "SELECT year FROM table_2268216_1 WHERE average_speed__mph_ = \"92.68\"", "question": "In what year was the average speed 92.68?", "context": "CREATE TABLE table_2268216_1 (year VARCHAR, average_speed__mph_ VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_2268216_1 WHERE team = \"Joe Gibbs Racing\" AND manufacturer = \"Pontiac\"", "question": "How many years was Pontiac the manufacturer for Joe Gibbs Racing? ", "context": "CREATE TABLE table_2268216_1 (year VARCHAR, team VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT date FROM table_2268216_1 WHERE race_time = \"2:43:19\"", "question": "What is the date for the race that had the time of 2:43:19?", "context": "CREATE TABLE table_2268216_1 (date VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT COUNT(average_speed__mph_) FROM table_2268216_1 WHERE year = \"2003\"", "question": "How many average speeds are listed in the year 2003? ", "context": "CREATE TABLE table_2268216_1 (average_speed__mph_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_2268216_1 WHERE race_time = \"2:53:57\"", "question": "What team had a race time of 2:53:57?", "context": "CREATE TABLE table_2268216_1 (team VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT sprint_classification FROM table_22713796_14 WHERE winner = \"Alejandro Valverde\"", "question": "Name the sprint classification being alejandro valverde", "context": "CREATE TABLE table_22713796_14 (sprint_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT stage FROM table_22713796_14 WHERE mountains_classification = \"no award\"", "question": "Name the stage for no award", "context": "CREATE TABLE table_22713796_14 (stage VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT COUNT(stage) FROM table_22713796_14 WHERE mountains_classification = \"Lloyd Mondory\"", "question": "Name the total number of stage for lloyd mondory", "context": "CREATE TABLE table_22713796_14 (stage VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT MAX(stage) FROM table_22713796_14 WHERE general_classification = \"Alejandro Valverde\" AND team_classification = \"Astana\" AND winner = \"Greg Henderson\"", "question": "Name the most stage for alejandro valverde and astana greg henderson", "context": "CREATE TABLE table_22713796_14 (stage INTEGER, winner VARCHAR, general_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT tournament_winner FROM table_22733636_1 WHERE conference = \"Border conference\"", "question": "When the Border Conference was held, who was the tournament winner?", "context": "CREATE TABLE table_22733636_1 (tournament_winner VARCHAR, conference VARCHAR)"}, {"answer": "SELECT tournament_winner FROM table_22733636_1 WHERE regular_season_winner = \"Princeton\"", "question": "When Princeton was the regular season winner, who was the tournament winner?", "context": "CREATE TABLE table_22733636_1 (tournament_winner VARCHAR, regular_season_winner VARCHAR)"}, {"answer": "SELECT experience FROM table_22719663_3 WHERE name = \"Mel Daniels\"", "question": "How long has Mel Daniels been playing?", "context": "CREATE TABLE table_22719663_3 (experience VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_22719663_3 WHERE college = \"San Jose State\"", "question": "What position did the player from San Jose State play?", "context": "CREATE TABLE table_22719663_3 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT number FROM table_22719663_3 WHERE height = \"6-6\"", "question": "What was the number of the player that was 6-6?", "context": "CREATE TABLE table_22719663_3 (number VARCHAR, height VARCHAR)"}, {"answer": "SELECT result FROM table_22736523_1 WHERE order__number = \"10\" AND song_choice = \"Coba\"", "question": "If the song choice is Coba and the order number is 10, what is the result?", "context": "CREATE TABLE table_22736523_1 (result VARCHAR, order__number VARCHAR, song_choice VARCHAR)"}, {"answer": "SELECT result FROM table_22736523_1 WHERE song_choice = \"Coba\"", "question": "What is the result if Coba is the song choice?", "context": "CREATE TABLE table_22736523_1 (result VARCHAR, song_choice VARCHAR)"}, {"answer": "SELECT order__number FROM table_22736523_1 WHERE song_choice = \"Coba\"", "question": "If Coba is the song choice, what is the order number?", "context": "CREATE TABLE table_22736523_1 (order__number VARCHAR, song_choice VARCHAR)"}, {"answer": "SELECT theme FROM table_22736523_1 WHERE song_choice = \"Crazy In Love\"", "question": "If Crazy In Love is the song choice, what is the theme?", "context": "CREATE TABLE table_22736523_1 (theme VARCHAR, song_choice VARCHAR)"}, {"answer": "SELECT result FROM table_22736523_1 WHERE week__number = \"Top 40\"", "question": "For week number of the top 40, what was the results?", "context": "CREATE TABLE table_22736523_1 (result VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT result FROM table_22736523_1 WHERE week__number = \"Top 9\"", "question": "For week of top 9, what were the results?", "context": "CREATE TABLE table_22736523_1 (result VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT type FROM table_2273738_1 WHERE city = \"Birmingham\"", "question": "The city of Birmingham is what type of location?", "context": "CREATE TABLE table_2273738_1 (type VARCHAR, city VARCHAR)"}, {"answer": "SELECT type FROM table_2273738_1 WHERE local_authority = \"Leeds city Council\"", "question": "Leeds City Council is the local authority for what type of location?", "context": "CREATE TABLE table_2273738_1 (type VARCHAR, local_authority VARCHAR)"}, {"answer": "SELECT metropolitan_area FROM table_2273738_1 WHERE county = \"Tyne and Wear\"", "question": "Tyne and Wear County has what total membership for their metropolitan area?", "context": "CREATE TABLE table_2273738_1 (metropolitan_area VARCHAR, county VARCHAR)"}, {"answer": "SELECT MAX(metropolitan_area) FROM table_2273738_1 WHERE city = \"Manchester\"", "question": "What is the total membership for the metropolitan area in the city of Manchester?", "context": "CREATE TABLE table_2273738_1 (metropolitan_area INTEGER, city VARCHAR)"}, {"answer": "SELECT runner_up_a FROM table_22752982_5 WHERE winner = \"K. P. Ramalingam\"", "question": "Who was the runner-up (a) if K. P. Ramalingam won the election?", "context": "CREATE TABLE table_22752982_5 (runner_up_a VARCHAR, winner VARCHAR)"}, {"answer": "SELECT team_name FROM table_22737506_1 WHERE races = \"1 (5)\"", "question": "When 1 (5) is the races what is the team name?", "context": "CREATE TABLE table_22737506_1 (team_name VARCHAR, races VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_22737506_1 WHERE pos = \"19th\"", "question": "When 19th is the position what is the highest amount of poles?", "context": "CREATE TABLE table_22737506_1 (poles INTEGER, pos VARCHAR)"}, {"answer": "SELECT pos FROM table_22737506_1 WHERE points = 86", "question": "When 86  is the amount of points what is the position?", "context": "CREATE TABLE table_22737506_1 (pos VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(margin) FROM table_22754310_1 WHERE party = \"NCO\" AND winner = \"P. Ramachandran\"", "question": "Name the most margin for nco party and p. ramachandran won", "context": "CREATE TABLE table_22754310_1 (margin INTEGER, party VARCHAR, winner VARCHAR)"}, {"answer": "SELECT party AS a FROM table_22754310_1 WHERE runner_up_a = \"M. S. K. Sathiyendran\"", "question": "Name the party a for m. s. k. sathiyendran runner up", "context": "CREATE TABLE table_22754310_1 (party VARCHAR, runner_up_a VARCHAR)"}, {"answer": "SELECT party AS a FROM table_22754310_1 WHERE constituency = \"Sriperumbudur\"", "question": "Name the party a for  sriperumbudur", "context": "CREATE TABLE table_22754310_1 (party VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT COUNT(runner_up_a) FROM table_22754310_1 WHERE constituency = \"Perambalur\"", "question": "Name the total number of runner up a for  perambalur", "context": "CREATE TABLE table_22754310_1 (runner_up_a VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT constituency FROM table_22754310_1 WHERE margin = 175130", "question": "Name the constituency for 175130", "context": "CREATE TABLE table_22754310_1 (constituency VARCHAR, margin VARCHAR)"}, {"answer": "SELECT COUNT(margin) FROM table_22753439_1 WHERE winner = \"S. Singaravadivel\"", "question": "How many margins have a winner of S. Singaravadivel?", "context": "CREATE TABLE table_22753439_1 (margin VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(winner) FROM table_22753439_1 WHERE runner_up_a = \"A. Karthikeyan\"", "question": "How many winners have a runner-up of A. Karthikeyan?", "context": "CREATE TABLE table_22753439_1 (winner VARCHAR, runner_up_a VARCHAR)"}, {"answer": "SELECT party AS a FROM table_22753439_1 WHERE winner = \"P. Chidambaram\"", "question": "What is every party with a winner of P. Chidambaram?", "context": "CREATE TABLE table_22753439_1 (party VARCHAR, winner VARCHAR)"}, {"answer": "SELECT party AS a FROM table_22753439_1 WHERE constituency = \"Tiruchendur\"", "question": "What is every party A with a constituency of Tiruchendur?", "context": "CREATE TABLE table_22753439_1 (party VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT constituency FROM table_22753245_1 WHERE runner_up_a = \"D. Venugopal\"", "question": "Who is the constituency when the runner-up was d. Venugopal? ", "context": "CREATE TABLE table_22753245_1 (constituency VARCHAR, runner_up_a VARCHAR)"}, {"answer": "SELECT party FROM table_22753245_1 WHERE constituency = \"10. Tindivanam\"", "question": "What is the party where the constituency is 10. Tindivanam? ", "context": "CREATE TABLE table_22753245_1 (party VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT party FROM table_22753245_1 WHERE constituency = \"1. Chennai North\"", "question": "What is the party when the constituency is 1. Chennai North? ", "context": "CREATE TABLE table_22753245_1 (party VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT COUNT(margin) FROM table_22753245_1 WHERE party = \"Indian National Congress\" AND winner = \"L. Adaikalaraj c\"", "question": "How many margin results are listed in the election that was won by L. Adaikalaraj C and the party was the Indian national congress? ", "context": "CREATE TABLE table_22753245_1 (margin VARCHAR, party VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MAX(margin) FROM table_22754491_1 WHERE winner = \"K. Balathandayutham\"", "question": "What is the margin when k. balathandayutham is the winner?", "context": "CREATE TABLE table_22754491_1 (margin INTEGER, winner VARCHAR)"}, {"answer": "SELECT margin FROM table_22754491_1 WHERE constituency = \"Periyakulam\"", "question": "What is the margin when periyakulam is the constituency?", "context": "CREATE TABLE table_22754491_1 (margin VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT pole_position FROM table_22765887_1 WHERE date = \"August 15, 1981\"", "question": "Who had the pole position in the August 15, 1981 race? ", "context": "CREATE TABLE table_22765887_1 (pole_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT track FROM table_22765887_1 WHERE date = \"September 12, 1981\"", "question": "Which track was used on September 12, 1981? ", "context": "CREATE TABLE table_22765887_1 (track VARCHAR, date VARCHAR)"}, {"answer": "SELECT extension FROM table_22771048_3 WHERE city_neighborhood = \"University of Washington\"", "question": "Name the extension for university of washington", "context": "CREATE TABLE table_22771048_3 (extension VARCHAR, city_neighborhood VARCHAR)"}, {"answer": "SELECT MIN(projected_opening) FROM table_22771048_3", "question": "Name the least projected opening", "context": "CREATE TABLE table_22771048_3 (projected_opening INTEGER)"}, {"answer": "SELECT transit_connections FROM table_22771048_3 WHERE station = \"Capitol Hill U\"", "question": "Name the transit connections for capitol hill u", "context": "CREATE TABLE table_22771048_3 (transit_connections VARCHAR, station VARCHAR)"}, {"answer": "SELECT COUNT(city_neighborhood) FROM table_22771048_4 WHERE station = \"Hospital\"", "question": "How many neighborhoods have a station proposed at a Hospital?", "context": "CREATE TABLE table_22771048_4 (city_neighborhood VARCHAR, station VARCHAR)"}, {"answer": "SELECT transit_connections FROM table_22771048_2 WHERE station = \"Pioneer Square U\"", "question": "What are the transit connections from Pioneer Square U?", "context": "CREATE TABLE table_22771048_2 (transit_connections VARCHAR, station VARCHAR)"}, {"answer": "SELECT transit_connections FROM table_22771048_2 WHERE city_neighborhood = \"Columbia City, Seattle\"", "question": "What's the transit connection in Columbia City, Seattle?", "context": "CREATE TABLE table_22771048_2 (transit_connections VARCHAR, city_neighborhood VARCHAR)"}, {"answer": "SELECT pct_route_available FROM table_2279413_1 WHERE type_of_protection = \"small patent\"", "question": "For small patent type of protections, what type of PCT route is available?", "context": "CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, type_of_protection VARCHAR)"}, {"answer": "SELECT conversion_from_patent_application FROM table_2279413_1 WHERE country = \"Tonga\"", "question": "In Tonga, what is the conversion from patent application?", "context": "CREATE TABLE table_2279413_1 (conversion_from_patent_application VARCHAR, country VARCHAR)"}, {"answer": "SELECT pct_route_available FROM table_2279413_1 WHERE type_of_protection = \"short patent\"", "question": "For short patent type of protections, what type of PCT route is available?", "context": "CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, type_of_protection VARCHAR)"}, {"answer": "SELECT pct_route_available FROM table_2279413_1 WHERE country = \"Tangier Zone\"", "question": "In Tangier Zone, what is the PCT route availibility?", "context": "CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, country VARCHAR)"}, {"answer": "SELECT conversion_from_patent_application FROM table_2279413_1 WHERE maximum_term = \"10 years\" AND pct_route_available = \"Yes\"", "question": "When the PCT route available is yes and the maximum term is 10 years, what are the available conversions from patent applications?", "context": "CREATE TABLE table_2279413_1 (conversion_from_patent_application VARCHAR, maximum_term VARCHAR, pct_route_available VARCHAR)"}, {"answer": "SELECT result FROM table_22801331_1 WHERE record = \"6-2\"", "question": "What was the result against the team which the Cowboys have a 6-2 record against?", "context": "CREATE TABLE table_22801331_1 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(opponents) FROM table_22801331_1 WHERE cowboys_points = 36", "question": "What is the fewest points opponents have scored when the Cowboys score 36?", "context": "CREATE TABLE table_22801331_1 (opponents INTEGER, cowboys_points VARCHAR)"}, {"answer": "SELECT opponents FROM table_22801331_1 WHERE record = \"1-0\"", "question": "How many opponents have a 1-0 record against the Cowboys?", "context": "CREATE TABLE table_22801331_1 (opponents VARCHAR, record VARCHAR)"}, {"answer": "SELECT game FROM table_22801331_1 WHERE record = \"6-3\"", "question": "What game was held against a team with a 6-3 record against the Cowboys?", "context": "CREATE TABLE table_22801331_1 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUnT AS name FROM table_22810095_8 WHERE country = \"CIV\"", "question": "How many names have a country of civ?", "context": "CREATE TABLE table_22810095_8 (COUnT VARCHAR, country VARCHAR)"}, {"answer": "SELECT name FROM table_22810095_8 WHERE moving_from = \"northampton Town\"", "question": "Who moved from Northampton Town?", "context": "CREATE TABLE table_22810095_8 (name VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT moving_from FROM table_22810095_8 WHERE name = \"Kisnorbo\"", "question": "Where did Kisnorbo move from?", "context": "CREATE TABLE table_22810095_8 (moving_from VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_22810095_8 WHERE n = 28", "question": "What is the name of the player when n is 28?", "context": "CREATE TABLE table_22810095_8 (name VARCHAR, n VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_22810095_8 WHERE n = 2", "question": "How much was the transfer fee when n is 2?", "context": "CREATE TABLE table_22810095_8 (transfer_fee VARCHAR, n VARCHAR)"}, {"answer": "SELECT name FROM table_22810095_9 WHERE age = 24", "question": "What player is 24 years old? ", "context": "CREATE TABLE table_22810095_9 (name VARCHAR, age VARCHAR)"}, {"answer": "SELECT COUNT(bruce_coulter_award) FROM table_228149_1 WHERE game = \"9th\"", "question": "Nam the total number for bruce coulter award for 9th game", "context": "CREATE TABLE table_228149_1 (bruce_coulter_award VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(opponents) FROM table_22815265_1 WHERE opponent = \"Arizona State\"", "question": "How many opponents were there when the opponent was Arizona State?", "context": "CREATE TABLE table_22815265_1 (opponents INTEGER, opponent VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_22815265_1 WHERE opponent = \"Utah\"", "question": "How many records show Utah as the opponent?", "context": "CREATE TABLE table_22815265_1 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponents FROM table_22815265_1 WHERE cowboys_points = 10", "question": "How many opponents are there when cowboy points were 10?", "context": "CREATE TABLE table_22815265_1 (opponents VARCHAR, cowboys_points VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_22815265_1 WHERE opponents = 9", "question": "How many records were there when opponents were 9?", "context": "CREATE TABLE table_22815265_1 (record VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_22815259_1 WHERE cowboys_points = 12", "question": "Name the number of record for 12 cowboys points", "context": "CREATE TABLE table_22815259_1 (record VARCHAR, cowboys_points VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_22815259_1 WHERE record = \"4-0\"", "question": "Name the most game for record 4-0", "context": "CREATE TABLE table_22815259_1 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_22815259_1 WHERE cowboys_points = 23", "question": "Name the result for cowboys points being 23", "context": "CREATE TABLE table_22815259_1 (result VARCHAR, cowboys_points VARCHAR)"}, {"answer": "SELECT record FROM table_22815259_1 WHERE opponent = \"Arizona\"", "question": "Name the record for arizona", "context": "CREATE TABLE table_22815259_1 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(unemployment_rate) FROM table_22815568_12 WHERE population = 34024", "question": "Name the unemployment rate for 34024", "context": "CREATE TABLE table_22815568_12 (unemployment_rate VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_22815568_12 WHERE county = \"Craig\"", "question": "Name the total number of population for craig", "context": "CREATE TABLE table_22815568_12 (population VARCHAR, county VARCHAR)"}, {"answer": "SELECT unemployment_rate FROM table_22815568_12 WHERE county = \"Botetourt\"", "question": "Name the unemployment rate for botetourt", "context": "CREATE TABLE table_22815568_12 (unemployment_rate VARCHAR, county VARCHAR)"}, {"answer": "SELECT status FROM table_22815568_12 WHERE unemployment_rate = \"6.7%\"", "question": "Name the status for unemployment rate being 6.7%", "context": "CREATE TABLE table_22815568_12 (status VARCHAR, unemployment_rate VARCHAR)"}, {"answer": "SELECT status FROM table_22815568_1 WHERE poverty_rate = \"14.7%\"", "question": "What is the status of the county that has a 14.7% poverty rate?", "context": "CREATE TABLE table_22815568_1 (status VARCHAR, poverty_rate VARCHAR)"}, {"answer": "SELECT poverty_rate FROM table_22815568_1 WHERE market_income_per_capita = \"$16,420\"", "question": "What is the poverty rate in the county that has a market income per capita of $16,420?", "context": "CREATE TABLE table_22815568_1 (poverty_rate VARCHAR, market_income_per_capita VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_22815568_1 WHERE market_income_per_capita = \"$24,383\"", "question": "What is the lowest population in a county with market income per capita of $24,383?", "context": "CREATE TABLE table_22815568_1 (population INTEGER, market_income_per_capita VARCHAR)"}, {"answer": "SELECT poverty_rate FROM table_22815568_1 WHERE market_income_per_capita = \"$20,518\"", "question": "What is the povery rate of the county with market income per capita of $20,518?", "context": "CREATE TABLE table_22815568_1 (poverty_rate VARCHAR, market_income_per_capita VARCHAR)"}, {"answer": "SELECT market_income_per_capita FROM table_22815568_13 WHERE county = \"Hancock\"", "question": "what is the market income per capita where the county is hancock?", "context": "CREATE TABLE table_22815568_13 (market_income_per_capita VARCHAR, county VARCHAR)"}, {"answer": "SELECT county FROM table_22815568_13 WHERE market_income_per_capita = \"$25,006\"", "question": "what is the county where the market income per capita is $25,006?", "context": "CREATE TABLE table_22815568_13 (county VARCHAR, market_income_per_capita VARCHAR)"}, {"answer": "SELECT unemployment_rate FROM table_22815568_13 WHERE market_income_per_capita = \"$16,406\"", "question": "what is the unemployment rate where the market income per capita is $16,406?", "context": "CREATE TABLE table_22815568_13 (unemployment_rate VARCHAR, market_income_per_capita VARCHAR)"}, {"answer": "SELECT unemployment_rate FROM table_22815568_13 WHERE county = \"Wayne\"", "question": "what is the unemployment rate for wayne county?", "context": "CREATE TABLE table_22815568_13 (unemployment_rate VARCHAR, county VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_22815870_1 WHERE prod_code = 105", "question": "What is the original air date of the episode with a production code of 105? ", "context": "CREATE TABLE table_22815870_1 (original_air_date VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT COUNT(county) FROM table_22815568_3 WHERE population = 2266", "question": "How many counties have a population of 2266?", "context": "CREATE TABLE table_22815568_3 (county VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(status) FROM table_22815568_3 WHERE county = \"Wayne\"", "question": "How many statuses are listed for Wayne county? ", "context": "CREATE TABLE table_22815568_3 (status VARCHAR, county VARCHAR)"}, {"answer": "SELECT market_income_per_capita FROM table_22815568_3 WHERE status = \"Distressed\" AND unemployment_rate = \"10.5%\"", "question": "What is the market income per capita in a county where the status is distressed and the unemployment rate is at 10.5%? ", "context": "CREATE TABLE table_22815568_3 (market_income_per_capita VARCHAR, status VARCHAR, unemployment_rate VARCHAR)"}, {"answer": "SELECT status FROM table_22815568_3 WHERE poverty_rate = \"36.6%\"", "question": "What is the status for all the counties that have a poverty rate of 36.6%? ", "context": "CREATE TABLE table_22815568_3 (status VARCHAR, poverty_rate VARCHAR)"}, {"answer": "SELECT status FROM table_22815568_6 WHERE poverty_rate = \"11.4%\"", "question": "What is the status if the poverty rate is 11.4%?", "context": "CREATE TABLE table_22815568_6 (status VARCHAR, poverty_rate VARCHAR)"}, {"answer": "SELECT county FROM table_22815568_6 WHERE poverty_rate = \"12.9%\"", "question": "If the poverty rate is 12.9%, what is the county?", "context": "CREATE TABLE table_22815568_6 (county VARCHAR, poverty_rate VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_22815568_6", "question": "What is the population maximum?", "context": "CREATE TABLE table_22815568_6 (population INTEGER)"}, {"answer": "SELECT county FROM table_22815568_6 WHERE unemployment_rate = \"4.8%\"", "question": "What county is the unemployment rate 4.8%?", "context": "CREATE TABLE table_22815568_6 (county VARCHAR, unemployment_rate VARCHAR)"}, {"answer": "SELECT market_income_per_capita FROM table_22815568_6 WHERE poverty_rate = \"12.9%\"", "question": "If the poverty rate is 12.9%, what is the market income per capita?", "context": "CREATE TABLE table_22815568_6 (market_income_per_capita VARCHAR, poverty_rate VARCHAR)"}, {"answer": "SELECT viewers__millions_ FROM table_22822468_2 WHERE rating = \"2.1\"", "question": "Name the viewers for 2.1 rating", "context": "CREATE TABLE table_22822468_2 (viewers__millions_ VARCHAR, rating VARCHAR)"}, {"answer": "SELECT MAX(share) FROM table_22822468_2 WHERE viewers__millions_ = \"2.76\"", "question": "Name the most share for 2.76 million viewers ", "context": "CREATE TABLE table_22822468_2 (share INTEGER, viewers__millions_ VARCHAR)"}, {"answer": "SELECT viewers__millions_ FROM table_22822468_2 WHERE rating / SHARE(18 AS \u201349) = 1.2 / 4", "question": "Name the viewers for 1.2/4 rating", "context": "CREATE TABLE table_22822468_2 (viewers__millions_ VARCHAR, rating VARCHAR)"}, {"answer": "SELECT rating / SHARE(18 AS \u201349) FROM table_22822468_2 WHERE viewers__millions_ = \"3.79\"", "question": "Name the rating for 3.79 viewers", "context": "CREATE TABLE table_22822468_2 (rating VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN(europa_league) FROM table", "question": "Name the least europa league", "context": "CREATE TABLE table (europa_league INTEGER)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_22822559_4 WHERE date = \"November 27\"", "question": "What was the total number of rebounds on november 27?", "context": "CREATE TABLE table_22822559_4 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_22822559_4 WHERE team = \"@ Toronto\"", "question": "On what date did the Pistons play @ toronto?", "context": "CREATE TABLE table_22822559_4 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_22822559_4 WHERE game = 7", "question": "List the location and number of fans in attendance for game 7/", "context": "CREATE TABLE table_22822559_4 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT steals FROM table_22824302_3 WHERE games_played = 31", "question": "How many interceptions for the team who played 31 games?", "context": "CREATE TABLE table_22824302_3 (steals VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT MIN(steals) FROM table_22824302_3 WHERE rebounds = 121", "question": "How many steals for the player who had 121 rebounds?", "context": "CREATE TABLE table_22824302_3 (steals INTEGER, rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_22822559_8 WHERE record = \"23-47\"", "question": "What date was the Piston's record at 23-47?", "context": "CREATE TABLE table_22822559_8 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_22822559_8 WHERE record = \"23-47\"", "question": "Who had the highest rebounds during the game with a record of 23-47?", "context": "CREATE TABLE table_22822559_8 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(rebounds) FROM table_22824199_1 WHERE points = 147", "question": "How many rebound did the person who scored 147 points have?", "context": "CREATE TABLE table_22824199_1 (rebounds VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(three_pointers) FROM table_22824199_1 WHERE free_throws = 50", "question": "Of the players with 50 free throws, what is the lowest number of three pointers?", "context": "CREATE TABLE table_22824199_1 (three_pointers INTEGER, free_throws VARCHAR)"}, {"answer": "SELECT player FROM table_22824199_1 WHERE rebounds = 156", "question": "Who are all the players with 156 rebounds?", "context": "CREATE TABLE table_22824199_1 (player VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT MAX(games_played) FROM table_22824199_1 WHERE three_pointers = 5", "question": "Of the players who scored 5 three pointers, what is the highest number of games played?", "context": "CREATE TABLE table_22824199_1 (games_played INTEGER, three_pointers VARCHAR)"}, {"answer": "SELECT no FROM table_22824297_1 WHERE hometown = \"Canton, Illinois\"", "question": "What is every number for the hometown of Canton, Illinois?", "context": "CREATE TABLE table_22824297_1 (no VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT player FROM table_22824297_1 WHERE height = \"6-5\"", "question": "Who is every player with a height of 6-5?", "context": "CREATE TABLE table_22824297_1 (player VARCHAR, height VARCHAR)"}, {"answer": "SELECT player FROM table_22824297_1 WHERE hometown = \"Carbondale, Illinois\"", "question": "Who are all players from hometown of Carbondale, Illinois?", "context": "CREATE TABLE table_22824297_1 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT class FROM table_22824297_1 WHERE position = \"Guard\" AND player = \"Tal Brody\"", "question": "What is every class with a position of guard and Tal Brody as the player?", "context": "CREATE TABLE table_22824297_1 (class VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_22824297_1 WHERE hometown = \"Canton, Illinois\"", "question": "How many values for number occur with the hometown of Canton, Illinois?", "context": "CREATE TABLE table_22824297_1 (no VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT class FROM table_22824312_1 WHERE player = \"Ren Alde\"", "question": "What class was ren alde?", "context": "CREATE TABLE table_22824312_1 (class VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_22824312_1 WHERE weight = 170", "question": "Who are the player's who weighed 170?", "context": "CREATE TABLE table_22824312_1 (player VARCHAR, weight VARCHAR)"}, {"answer": "SELECT hometown FROM table_22824312_1 WHERE player = \"Jim Dutcher\"", "question": "What is jim dutcher's hometown?", "context": "CREATE TABLE table_22824312_1 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_22824319_3 WHERE points = 51", "question": "Name the total number of player for 51 points", "context": "CREATE TABLE table_22824319_3 (player VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(rebounds) FROM table_22824319_3 WHERE player = \"Larry Smith\"", "question": "Name the most rebounds for larry smith", "context": "CREATE TABLE table_22824319_3 (rebounds INTEGER, player VARCHAR)"}, {"answer": "SELECT steals FROM table_22824319_3 WHERE blocks = 5", "question": "Name the steals for 5 blocks", "context": "CREATE TABLE table_22824319_3 (steals VARCHAR, blocks VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_22824319_3", "question": "Name the least points", "context": "CREATE TABLE table_22824319_3 (points INTEGER)"}, {"answer": "SELECT h_ci__ka_m_ FROM table_2282444_1 WHERE b_r__t_ = \"0.6\u20131.4\"", "question": "When  0.6\u20131.4 is the b r (t) what is the h ci (ka/m)?", "context": "CREATE TABLE table_2282444_1 (h_ci__ka_m_ VARCHAR, b_r__t_ VARCHAR)"}, {"answer": "SELECT COUNT(t_c__) AS \u00b0c_ FROM table_2282444_1 WHERE magnet = \"Nd 2 Fe 14 B (bonded)\"", "question": "When nd 2 fe 14 b (bonded) is the magnet how many measurements of tc (\u00b0c)?", "context": "CREATE TABLE table_2282444_1 (t_c__ VARCHAR, magnet VARCHAR)"}, {"answer": "SELECT h_ci__ka_m_ FROM table_2282444_1 WHERE t_c__\u00b0c_ = \"720\"", "question": "When 720 is the t c (\u00b0c) what is the   h ci (ka/m)?", "context": "CREATE TABLE table_2282444_1 (h_ci__ka_m_ VARCHAR, t_c__\u00b0c_ VARCHAR)"}, {"answer": "SELECT sec_wins FROM table_22825679_1 WHERE percentage = \".357\" AND home_record = \"4-3\"", "question": "Name the sec wins for .357 percentage and 4-3 home record", "context": "CREATE TABLE table_22825679_1 (sec_wins VARCHAR, percentage VARCHAR, home_record VARCHAR)"}, {"answer": "SELECT percentage FROM table_22825679_1 WHERE team = \"Georgia\"", "question": "Name the percentage for georgia", "context": "CREATE TABLE table_22825679_1 (percentage VARCHAR, team VARCHAR)"}, {"answer": "SELECT overall_record FROM table_22825679_1 WHERE road_record = \"4-3\"", "question": "Name the overall record for road record being 4-3", "context": "CREATE TABLE table_22825679_1 (overall_record VARCHAR, road_record VARCHAR)"}, {"answer": "SELECT COUNT(road_record) FROM table_22825679_1 WHERE team = \"Ole Miss\"", "question": "Name the number of road record for team ole miss", "context": "CREATE TABLE table_22825679_1 (road_record VARCHAR, team VARCHAR)"}, {"answer": "SELECT percentage FROM table_22825679_1 WHERE team = \"Ole Miss\"", "question": "Name the percentage for ole miss", "context": "CREATE TABLE table_22825679_1 (percentage VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(blocks) FROM table_22824324_2 WHERE player = \"Kendall Gill\"", "question": "What is the most number of blocks kendall gill had?", "context": "CREATE TABLE table_22824324_2 (blocks INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(three_pointers) FROM table_22824324_2 WHERE rebounds = 178", "question": "What is the lowest number of three pointers in games where the number of rebounds was 178?", "context": "CREATE TABLE table_22824324_2 (three_pointers INTEGER, rebounds VARCHAR)"}, {"answer": "SELECT COUNT(steals) FROM table_22824324_2 WHERE player = \"Andy Kaufmann\"", "question": "How many steals were the in games that andy kaufmann played?", "context": "CREATE TABLE table_22824324_2 (steals VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(three_pointers) FROM table_22824324_2 WHERE player = \"Kendall Gill\"", "question": "What is the lowest number of three pointers in games that kendall gill played?", "context": "CREATE TABLE table_22824324_2 (three_pointers INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(three_pointers) FROM table_22824324_2 WHERE points = 581", "question": "How many games had three pointers where the number of points was 581?", "context": "CREATE TABLE table_22824324_2 (three_pointers VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(episodes) FROM table_22837363_1 WHERE viewers__in_millions_ = \"5.74\"", "question": "What was the highest amount of episodes for the season with 5.74 million viewers?", "context": "CREATE TABLE table_22837363_1 (episodes INTEGER, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT surface FROM table_22834834_3 WHERE score_in_the_final = \"6\u20131, 6\u20137 (2\u20137) , 7\u20136 (7\u20135) , 7\u20136 (10\u20138)\"", "question": "Which surfaces have the final score of 6\u20131, 6\u20137 (2\u20137) , 7\u20136 (7\u20135) , 7\u20136 (10\u20138)?", "context": "CREATE TABLE table_22834834_3 (surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(outcome) FROM table_22834834_3 WHERE score_in_the_final = \"7\u20136 (9\u20137) , 6\u20133\"", "question": "How many outcome have a score of 7\u20136 (9\u20137) , 6\u20133?", "context": "CREATE TABLE table_22834834_3 (outcome VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_22834834_3 WHERE score_in_the_final = \"6\u20133, 6\u20132\"", "question": "Which outcomes have a final score of 6\u20133, 6\u20132?", "context": "CREATE TABLE table_22834834_3 (outcome VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_22834834_3 WHERE opponent_in_the_final = \"Andre Agassi\"", "question": "What is the last year that Andre Agassi was the final opponent?", "context": "CREATE TABLE table_22834834_3 (year INTEGER, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_22834834_3 WHERE score_in_the_final = \"6\u20133, 6\u20132\"", "question": "How many years have a final score of 6\u20133, 6\u20132?", "context": "CREATE TABLE table_22834834_3 (year VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT championship FROM table_22834834_3 WHERE score_in_the_final = \"6\u20137 (9\u201311) , 6\u20134, 7\u20135, 4\u20136, 4\u20136\"", "question": "Which championship has a final score of 6\u20137 (9\u201311) , 6\u20134, 7\u20135, 4\u20136, 4\u20136?", "context": "CREATE TABLE table_22834834_3 (championship VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_22834834_12 WHERE earnings__$_ = 2254598", "question": "How many years had a total earnings amount of 2254598?", "context": "CREATE TABLE table_22834834_12 (year VARCHAR, earnings__$_ VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_22834834_12", "question": "What is the latest year that data is available for?", "context": "CREATE TABLE table_22834834_12 (year INTEGER)"}, {"answer": "SELECT score_in_the_final FROM table_22834834_2 WHERE year = 1994", "question": "What is the score in the final in the year 1994?", "context": "CREATE TABLE table_22834834_2 (score_in_the_final VARCHAR, year VARCHAR)"}, {"answer": "SELECT championship FROM table_22834834_2 WHERE year = 1993", "question": "Who is the championship for the year of 1993?", "context": "CREATE TABLE table_22834834_2 (championship VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_22834834_2 WHERE championship = \"Frankfurt\" AND year < 1993.0", "question": "Who is the opponent in the final when frankfurt is championship and the year is less than 1993.0?", "context": "CREATE TABLE table_22834834_2 (opponent_in_the_final VARCHAR, championship VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_22839669_12 WHERE money_list_rank = 3", "question": "In what year was his money list rank 3? ", "context": "CREATE TABLE table_22839669_12 (year INTEGER, money_list_rank VARCHAR)"}, {"answer": "SELECT MIN(money_list_rank) FROM table_22839669_12 WHERE year = 2001", "question": "What was his money list rank in 2001? ", "context": "CREATE TABLE table_22839669_12 (money_list_rank INTEGER, year VARCHAR)"}, {"answer": "SELECT MAX(atp_wins) FROM table_22839669_12 WHERE money_list_rank = 4", "question": "How many atp wins did he have when his money list rank was 4? ", "context": "CREATE TABLE table_22839669_12 (atp_wins INTEGER, money_list_rank VARCHAR)"}, {"answer": "SELECT MAX(total_wins) FROM table_22839669_12", "question": "What is the maximum total wins he had for any year? ", "context": "CREATE TABLE table_22839669_12 (total_wins INTEGER)"}, {"answer": "SELECT district FROM table_228439_4 WHERE successor = \"Samuel A. Bridges ( D )\"", "question": "What district is Samuel A. Bridges ( D ) assigned to as a successor?", "context": "CREATE TABLE table_228439_4 (district VARCHAR, successor VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_228439_4 WHERE successor = \"Richard K. Meade ( D )\"", "question": "what was the reason Richard K. Meade ( d ) became a successor?", "context": "CREATE TABLE table_228439_4 (reason_for_change VARCHAR, successor VARCHAR)"}, {"answer": "SELECT successor FROM table_228439_4 WHERE district = \"Massachusetts 8th\"", "question": "Who is the successor for massachusetts 8th?", "context": "CREATE TABLE table_228439_4 (successor VARCHAR, district VARCHAR)"}, {"answer": "SELECT opponent FROM table_22847880_2 WHERE record = \"11-1\"", "question": "Name the opponent for 11-1", "context": "CREATE TABLE table_22847880_2 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_22847880_2 WHERE opponent = \"Kentucky\"", "question": "Name the record for kentucky", "context": "CREATE TABLE table_22847880_2 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_22839669_1 WHERE score_in_the_final = \"3\u20136, 4\u20136, 7\u20135, 4\u20136\"", "question": "Who is the opponent in the match with final score 3\u20136, 4\u20136, 7\u20135, 4\u20136?", "context": "CREATE TABLE table_22839669_1 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_22839669_1 WHERE score_in_the_final = \"4\u20136, 3\u20136, 2\u20136\"", "question": "What was the outcome of the match with score 4\u20136, 3\u20136, 2\u20136?", "context": "CREATE TABLE table_22839669_1 (outcome VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_22839669_1 WHERE score_in_the_final = \"4\u20136, 3\u20136, 6\u20134, 5\u20137\"", "question": "What is the most recent year where the final score is 4\u20136, 3\u20136, 6\u20134, 5\u20137?", "context": "CREATE TABLE table_22839669_1 (year INTEGER, score_in_the_final VARCHAR)"}, {"answer": "SELECT championship FROM table_22839669_1 WHERE score_in_the_final = \"6\u20134, 6\u20132, 6\u20132\"", "question": "What championship had a final score of 6\u20134, 6\u20132, 6\u20132?", "context": "CREATE TABLE table_22839669_1 (championship VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT top_10s FROM table_22838521_3 WHERE year = 2007", "question": "If the year is 2007, what is the top ten?", "context": "CREATE TABLE table_22838521_3 (top_10s VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(money_list_rank) FROM table_22838521_3", "question": "What is the possible maximum money list rank?", "context": "CREATE TABLE table_22838521_3 (money_list_rank INTEGER)"}, {"answer": "SELECT best_finish FROM table_22838521_3 WHERE scoring_average = \"72.46\"", "question": "If the scoring average is 72.46, what is the best finish?", "context": "CREATE TABLE table_22838521_3 (best_finish VARCHAR, scoring_average VARCHAR)"}, {"answer": "SELECT result FROM table_22853654_9 WHERE opponent = \"Wesley Moodie\"", "question": "Name the result for wesley moodie", "context": "CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_22853654_9 WHERE against = \"Monaco\"", "question": "Name the surface against monaco", "context": "CREATE TABLE table_22853654_9 (surface VARCHAR, against VARCHAR)"}, {"answer": "SELECT result FROM table_22853654_9 WHERE opponent = \"Alexander Shvec\"", "question": "Name the result for alexander shvec", "context": "CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_22853654_9 WHERE result = \"3\u20136, 4\u20136, 6\u20131, 6\u20137 (7\u20139)\"", "question": "Name the opponent for 3\u20136, 4\u20136, 6\u20131, 6\u20137 (7\u20139)", "context": "CREATE TABLE table_22853654_9 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT average_annual_rainfall__mm_ FROM table_22854436_1 WHERE population__2002_census_data_ = 493984", "question": "Name the annual rainfail for 2002 population being 493984", "context": "CREATE TABLE table_22854436_1 (average_annual_rainfall__mm_ VARCHAR, population__2002_census_data_ VARCHAR)"}, {"answer": "SELECT MAX(population__2002_census_data_) FROM table_22854436_1", "question": "Name the most population 2002", "context": "CREATE TABLE table_22854436_1 (population__2002_census_data_ INTEGER)"}, {"answer": "SELECT COUNT(per_capita_average_annual_renewable_water_resources_m_3) FROM table_22854436_1 WHERE average_annual_rainfall__mm_ = \"650\"", "question": "Name the total water resources m3 for rainfall being 650", "context": "CREATE TABLE table_22854436_1 (per_capita_average_annual_renewable_water_resources_m_3 VARCHAR, average_annual_rainfall__mm_ VARCHAR)"}, {"answer": "SELECT carpet_w_l FROM table_22860698_8 WHERE year = 1993", "question": "What were the carpet w-l in 1993?", "context": "CREATE TABLE table_22860698_8 (carpet_w_l VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(score_in_final) FROM table_22858557_1 WHERE championship = \"US Open\" AND outcome = \"Runner-up\"", "question": "What is the amount of US open runner-up score?", "context": "CREATE TABLE table_22858557_1 (score_in_final VARCHAR, championship VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_22858557_1 WHERE outcome = \"Runner-up\"", "question": "What is the year where the runner-up outcome was at its basic minimum?", "context": "CREATE TABLE table_22858557_1 (year INTEGER, outcome VARCHAR)"}, {"answer": "SELECT championship FROM table_22858557_1 WHERE opponent_in_final = \"Steffi Graf\"", "question": "How many championships have there been with Steffi Graf?", "context": "CREATE TABLE table_22858557_1 (championship VARCHAR, opponent_in_final VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_22860698_2 WHERE championship = \"Wimbledon (2)\"", "question": "How many opponents have wimbledon (2) as the championship?", "context": "CREATE TABLE table_22860698_2 (opponents VARCHAR, championship VARCHAR)"}, {"answer": "SELECT surface FROM table_22860698_2 WHERE championship = \"US Open\" AND year = 1979", "question": "What is the surface when the us open is the championship in the year 1979?", "context": "CREATE TABLE table_22860698_2 (surface VARCHAR, championship VARCHAR, year VARCHAR)"}, {"answer": "SELECT _number FROM table_22871239_5 WHERE date = \"November 27\"", "question": "What is the game number that was on November 27? ", "context": "CREATE TABLE table_22871239_5 (_number VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_22871239_5 WHERE team = \"@ New Jersey\"", "question": "What was the score when the team was @ New Jersey? ", "context": "CREATE TABLE table_22871239_5 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_22871239_5 WHERE _number = 5", "question": "How many high rebound catagories are listed for game number 5? ", "context": "CREATE TABLE table_22871239_5 (high_rebounds VARCHAR, _number VARCHAR)"}, {"answer": "SELECT opponent FROM table_22862203_2 WHERE record = \"11-2\"", "question": "Who were the opponents when the record was 11-2?", "context": "CREATE TABLE table_22862203_2 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_22862203_2 WHERE opp_points = 50", "question": "What were the records when the opponents had 50 points?", "context": "CREATE TABLE table_22862203_2 (record VARCHAR, opp_points VARCHAR)"}, {"answer": "SELECT terps_points FROM table_22862203_2 WHERE date = \"Nov. 25/05\"", "question": "What are the terps points for the nov. 25/05 game?", "context": "CREATE TABLE table_22862203_2 (terps_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_22862203_2 WHERE record = \"9-1\"", "question": "Where were games played when the record was 9-1?", "context": "CREATE TABLE table_22862203_2 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(terps_points) FROM table_22862203_2 WHERE opp_points = 53", "question": "What is the highest number of terps points in games where the opponent made 53 points?", "context": "CREATE TABLE table_22862203_2 (terps_points INTEGER, opp_points VARCHAR)"}, {"answer": "SELECT location FROM table_22862203_2 WHERE date = \"Jan. 16/06\"", "question": "Where was the game on jan. 16/06 played?", "context": "CREATE TABLE table_22862203_2 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_22871239_9 WHERE record = \"21-45\"", "question": "Name the high points for 21-45 record", "context": "CREATE TABLE table_22871239_9 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_22871239_9 WHERE date = \"March 23\"", "question": "Name the visitor for march 23", "context": "CREATE TABLE table_22871239_9 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_22871239_9 WHERE arena_attendance = \"TD Garden 18,624\"", "question": "Name the high rebounds for td garden 18,624", "context": "CREATE TABLE table_22871239_9 (high_rebounds VARCHAR, arena_attendance VARCHAR)"}, {"answer": "SELECT record FROM table_22871239_9 WHERE date = \"March 16\"", "question": "Name the record for march 16", "context": "CREATE TABLE table_22871239_9 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_22871239_8 WHERE score = \"L 110-112\"", "question": "Name the total number for score  l 110-112", "context": "CREATE TABLE table_22871239_8 (_number VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_22871239_8 WHERE score = \"W 125-115\"", "question": "Name the team for  w 125-115 score", "context": "CREATE TABLE table_22871239_8 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_22871239_8 WHERE location_attendance = \"American Airlines Center 19,585\"", "question": "Name the high assists for american airlines center 19,585", "context": "CREATE TABLE table_22871239_8 (high_assists VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_points FROM table_22871316_11 WHERE series = \"3-2\"", "question": "Who has the high points when 3-2 is the series?", "context": "CREATE TABLE table_22871316_11 (high_points VARCHAR, series VARCHAR)"}, {"answer": "SELECT high_assists FROM table_22871316_11 WHERE series = \"0-1\"", "question": "Who has the high assists when 0-1 is the series?", "context": "CREATE TABLE table_22871316_11 (high_assists VARCHAR, series VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_22871316_11 WHERE series = \"3-3\"", "question": "How many high rebounds are in series 3-3?", "context": "CREATE TABLE table_22871316_11 (high_rebounds VARCHAR, series VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_22871316_11 WHERE date = \"April 30\"", "question": "How many games are on the date of April 30?", "context": "CREATE TABLE table_22871316_11 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_22871316_6 WHERE date = \"December 18\"", "question": "Who did the high points in the game played on December 18?", "context": "CREATE TABLE table_22871316_6 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_22871316_6 WHERE date = \"December 2\"", "question": "Who did the high points in the game played on December 2?", "context": "CREATE TABLE table_22871316_6 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_22871316_6 WHERE high_points = \"Carlos Delfino (17)\"", "question": "What's the record of the game in which Carlos Delfino (17) did the most high points?", "context": "CREATE TABLE table_22871316_6 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_22871316_6 WHERE high_assists = \"Brandon Jennings (8)\"", "question": "Who did the high rebounds in the game in which Brandon Jennings (8) did the high assists?", "context": "CREATE TABLE table_22871316_6 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT player FROM table_22875514_3 WHERE field_goals = \"18-50 .360\"", "question": "Which player has 18-50 .360 field goals?", "context": "CREATE TABLE table_22875514_3 (player VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT MAX(assists) FROM table_22875514_3 WHERE points = \"129-3.9\"", "question": "What is the most assists for points 129-3.9?", "context": "CREATE TABLE table_22875514_3 (assists INTEGER, points VARCHAR)"}, {"answer": "SELECT date FROM table_22875369_3 WHERE irish_points = 89", "question": "Name the date for irish points being 89", "context": "CREATE TABLE table_22875369_3 (date VARCHAR, irish_points VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_22875369_3 WHERE record = \"22-1\"", "question": "Name the number of location for 22-1", "context": "CREATE TABLE table_22875369_3 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_22875369_3 WHERE date = \"2-27-10\"", "question": "Name the opponent for 2-27-10", "context": "CREATE TABLE table_22875369_3 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(irish_points) FROM table_22875369_3 WHERE opponent = \"Eastern Michigan\"", "question": "Name the max irish points for eastern michigan", "context": "CREATE TABLE table_22875369_3 (irish_points INTEGER, opponent VARCHAR)"}, {"answer": "SELECT irish_points FROM table_22875369_3 WHERE record = \"23-1\"", "question": "Name the irish points for 23-1 record", "context": "CREATE TABLE table_22875369_3 (irish_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_22879262_14 WHERE score = \"L 92\u201396 (OT)\"", "question": "Name the number of high rebounds for l 92\u201396 (ot)", "context": "CREATE TABLE table_22879262_14 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_22879262_7 WHERE game = 29", "question": "what ist he date of game 29?", "context": "CREATE TABLE table_22879262_7 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_22879262_7 WHERE game = 27", "question": "what is the location attendance for game 27?", "context": "CREATE TABLE table_22879262_7 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_22879262_7 WHERE team = \"Minnesota\"", "question": "what is the total number of high rebounds for minnesota?", "context": "CREATE TABLE table_22879262_7 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_22879323_10 WHERE date = \"April 4\"", "question": "What were the high rebounds on April 4?", "context": "CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_22879323_10 WHERE game = 80", "question": "What was the score when the game was 80?", "context": "CREATE TABLE table_22879323_10 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_22879323_10 WHERE record = \"11-67\"", "question": "What date was the record 11-67?", "context": "CREATE TABLE table_22879323_10 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_22879323_10 WHERE date = \"April 7\"", "question": "How many high rebounds were there on April 7?", "context": "CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_22879323_10 WHERE high_rebounds = \"Terrence Williams (8)\"", "question": "What was the high points when rebounds were Terrence Williams (8)?", "context": "CREATE TABLE table_22879323_10 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_assists FROM table_22879323_6 WHERE record = \"2-29\"", "question": "When the record was 2-29 who had the most assists?", "context": "CREATE TABLE table_22879323_6 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_22879323_6 WHERE team = \"Houston\"", "question": "When we played Houston who had the most points?", "context": "CREATE TABLE table_22879323_6 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_22879323_9 WHERE location_attendance = \"Ford Center\"", "question": "Name the number of high points for ford center", "context": "CREATE TABLE table_22879323_9 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_22879323_9 WHERE location_attendance = \"American Airlines Center\"", "question": "Name the high rebounds for american airlines center", "context": "CREATE TABLE table_22879323_9 (high_rebounds VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT record FROM table_22879323_9 WHERE score = \"L 90\u2013100 (OT)\"", "question": "Name the record for  l 90\u2013100 (ot)", "context": "CREATE TABLE table_22879323_9 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_22879323_9 WHERE score = \"L 83\u2013106 (OT)\"", "question": "Name the location attendance for  l 83\u2013106 (ot)", "context": "CREATE TABLE table_22879323_9 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_22883210_10 WHERE record = \"49-31\"", "question": "Name the score for 49-31", "context": "CREATE TABLE table_22883210_10 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_22883210_10 WHERE team = \"Minnesota\"", "question": "Name the location attendance for minnesota", "context": "CREATE TABLE table_22883210_10 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_22883210_7 WHERE record = \"20-12\"", "question": "What location had a record of 20-12, and how many people attended?", "context": "CREATE TABLE table_22883210_7 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_22883210_7 WHERE date = \"January 18\"", "question": "What was the total score for january 18?", "context": "CREATE TABLE table_22883210_7 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_22883210_7 WHERE game = 41", "question": "Where was game 41 held, and how many people attended?", "context": "CREATE TABLE table_22883210_7 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_22883210_7 WHERE record = \"23-13\"", "question": "What was the date for the record 23-13?", "context": "CREATE TABLE table_22883210_7 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_22883210_7 WHERE date = \"January 20\"", "question": "What was the high point for January 20?", "context": "CREATE TABLE table_22883210_7 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_22883210_9 WHERE team = \"Golden State\"", "question": "What was the location and how many attended when Golden State played? ", "context": "CREATE TABLE table_22883210_9 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_22883210_9 WHERE team = \"Cleveland\"", "question": "What is the highest game number where the team was Cleveland? ", "context": "CREATE TABLE table_22883210_9 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(nightly_rank) FROM table_22892217_4", "question": "What is the highest numbered nightly rank for any episode? ", "context": "CREATE TABLE table_22892217_4 (nightly_rank INTEGER)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_22893781_5 WHERE date = \"December 2\"", "question": "How many attended on december 2?", "context": "CREATE TABLE table_22893781_5 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_22893781_5 WHERE date = \"December 11\"", "question": "Who was he opponent on december 11?", "context": "CREATE TABLE table_22893781_5 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_22893781_5 WHERE team = \"Houston\"", "question": "What was the score against houston?", "context": "CREATE TABLE table_22893781_5 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_22893781_7 WHERE team = \"@ Indiana\"", "question": "when did the @ indiana game take place?", "context": "CREATE TABLE table_22893781_7 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_22893781_6 WHERE location_attendance = \"Madison Square Garden 18,828\"", "question": "Name the score for madison square garden 18,828", "context": "CREATE TABLE table_22893781_6 (score VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_22893781_6 WHERE team = \"Dallas\"", "question": "Name the number of date for dallas", "context": "CREATE TABLE table_22893781_6 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_22893781_6 WHERE date = \"January 15\"", "question": "Name the high assists for january 15", "context": "CREATE TABLE table_22893781_6 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT title FROM table_228973_5 WHERE original_air_date = \"November 10, 1998\"", "question": "What is the name of the episode that aired originally on November 10, 1998?", "context": "CREATE TABLE table_228973_5 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_228973_5 WHERE original_air_date = \"April 27, 1999\"", "question": "What episode number in the series originally aired on April 27, 1999?", "context": "CREATE TABLE table_228973_5 (no_in_series INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_228973_5 WHERE no_in_series = 68", "question": "How many people wrote episode 68 in the series?", "context": "CREATE TABLE table_228973_5 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT directed_by FROM table_228973_5 WHERE original_air_date = \"February 16, 1999\"", "question": "Who directed the episode that originally aired on February 16, 1999?", "context": "CREATE TABLE table_228973_5 (directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_228973_11 WHERE original_air_date = \"February 11, 2005\"", "question": "The episode which originally aired on February 11, 2005 had which episode # of the season?", "context": "CREATE TABLE table_228973_11 (no_in_season VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT written_by FROM table_228973_11 WHERE original_air_date = \"December 17, 2004\"", "question": "The episode which originally aired on December 17, 2004  was written by whom?", "context": "CREATE TABLE table_228973_11 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_228973_11 WHERE directed_by = \"David James Elliott\"", "question": "David James Elliott directed which episode number within the series?", "context": "CREATE TABLE table_228973_11 (no_in_series VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_228973_11 WHERE original_air_date = \"February 4, 2005\"", "question": "Who directed the episode which originally aired February 4, 2005?", "context": "CREATE TABLE table_228973_11 (directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_228973_3 WHERE original_air_date = \"January 3, 1997\"", "question": "which is the number of the season episode whose premiere was in january 3, 1997?", "context": "CREATE TABLE table_228973_3 (no_in_season VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_228973_3 WHERE written_by = \"R. Scott Gemmill\" AND directed_by = \"Ray Austin\"", "question": "which is the number of the season episode whose writer is R. Scott Gemmill and the Director is Ray Austin?", "context": "CREATE TABLE table_228973_3 (no_in_season VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_228973_3 WHERE no_in_series = 31", "question": "what is the name of the episode whose number of the series episode was 31?", "context": "CREATE TABLE table_228973_3 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_228973_7 WHERE no_in_series = 129", "question": "When 129 is the number in the series who is the writer?", "context": "CREATE TABLE table_228973_7 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(prod__number) FROM table_2289806_1 WHERE episode__number = 1", "question": "How many product # have episode 1?", "context": "CREATE TABLE table_2289806_1 (prod__number INTEGER, episode__number VARCHAR)"}, {"answer": "SELECT windows_builders FROM table_22903426_1 WHERE name = \"Apache Gump\"", "question": "Name the windows builders for apache gump", "context": "CREATE TABLE table_22903426_1 (windows_builders VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(scm_system) FROM table_22903426_1 WHERE windows_builders = \"NAnt, Visual Studio\"", "question": "Name the number of scm system for nant, visual studio", "context": "CREATE TABLE table_22903426_1 (scm_system VARCHAR, windows_builders VARCHAR)"}, {"answer": "SELECT COUNT(other_builders) FROM table_22903426_1 WHERE windows_builders = \"NAnt, Visual Studio\"", "question": "Name the  number of other builders for nant, visual studio", "context": "CREATE TABLE table_22903426_1 (other_builders VARCHAR, windows_builders VARCHAR)"}, {"answer": "SELECT MIN(2 AS nd_runner_up) FROM table_2290097_4", "question": "What is the minimum for 2nd runner-up?", "context": "CREATE TABLE table_2290097_4 (Id VARCHAR)"}, {"answer": "SELECT title FROM table_228973_9 WHERE original_air_date = \"February 4, 2003\"", "question": "If the original air date is February 4, 2003, what is the episode title?", "context": "CREATE TABLE table_228973_9 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_228973_9 WHERE original_air_date = \"April 1, 2003\"", "question": "If the original air date is April 1, 2003, what number in the series is this episode?", "context": "CREATE TABLE table_228973_9 (no_in_series VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_228973_9 WHERE directed_by = \"Harvey S. Laidman\"", "question": "What is the maximum number in the series for the episode directed by Harvey S. Laidman?", "context": "CREATE TABLE table_228973_9 (no_in_series INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_22904752_1 WHERE written_by = \"Sean Whitesell\"", "question": "When is the original air date written by sean whitesell?", "context": "CREATE TABLE table_22904752_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_22904752_1 WHERE no = 79", "question": "Who is no. 79 directed by?", "context": "CREATE TABLE table_22904752_1 (directed_by VARCHAR, no VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_22904752_1 WHERE us_viewers__million_ = \"17.44\"", "question": "What is the # when u.s. viewers  (million) is 17.44?", "context": "CREATE TABLE table_22904752_1 (_number VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_22904752_1 WHERE written_by = \"David Hoselton\"", "question": "How many # were written by david hoselton?", "context": "CREATE TABLE table_22904752_1 (_number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(race_3_winner) FROM table_22905641_2 WHERE race_2_winner = \"Mitch Evans\"", "question": "How many race 3 winners were there when Mitch Evans won race 2?", "context": "CREATE TABLE table_22905641_2 (race_3_winner VARCHAR, race_2_winner VARCHAR)"}, {"answer": "SELECT date FROM table_22905641_2 WHERE circuit = \"Symmons Plains Raceway\"", "question": "What date was the race at the Symmons Plains Raceway?", "context": "CREATE TABLE table_22905641_2 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT race_1_winner FROM table_22905641_2 WHERE circuit = \"Winton Motor Raceway\"", "question": "Who was the race 1 winner at the race held at Winton Motor Raceway?", "context": "CREATE TABLE table_22905641_2 (race_1_winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT race_1_winner FROM table_22905641_2 WHERE circuit = \"Hidden Valley Raceway\"", "question": "Who was the race 1 winner of the race at Hidden Valley Raceway?", "context": "CREATE TABLE table_22905641_2 (race_1_winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_229059_2 WHERE champion = \"Pat Bradley\"", "question": "In how many years did Pat Bradley became the champion?", "context": "CREATE TABLE table_229059_2 (year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT dates FROM table_229059_2 WHERE tournament_location = \"Forest Lake country Club\"", "question": "When was the tournament in Forest Lake Country Club held?", "context": "CREATE TABLE table_229059_2 (dates VARCHAR, tournament_location VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_229059_2 WHERE champion = \"Se Ri Pak (2)\"", "question": "How many different countries did the champion Se Ri Pak (2) represent?", "context": "CREATE TABLE table_229059_2 (country VARCHAR, champion VARCHAR)"}, {"answer": "SELECT score FROM table_229059_2 WHERE year = 1978", "question": "What was the score in 1978?", "context": "CREATE TABLE table_229059_2 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(winners_share__) AS $_ FROM table_229059_2 WHERE champion = \"Se Ri Pak (2)\"", "question": "What was the winner share (in $) in the year when Se Ri Pak (2) was the champion?", "context": "CREATE TABLE table_229059_2 (winners_share__ INTEGER, champion VARCHAR)"}, {"answer": "SELECT score FROM table_229059_2 WHERE champion = \"Jan Stephenson\"", "question": "What was the score in the tournament won by Jan Stephenson?", "context": "CREATE TABLE table_229059_2 (score VARCHAR, champion VARCHAR)"}, {"answer": "SELECT MIN(opp_points) FROM table_22903773_2 WHERE location = \"Knoxville\"", "question": "How many points did the opponents score at the game in Knoxville?", "context": "CREATE TABLE table_22903773_2 (opp_points INTEGER, location VARCHAR)"}, {"answer": "SELECT date FROM table_22903773_2 WHERE record = \"17-7\"", "question": "What game date had a record of 17-7?", "context": "CREATE TABLE table_22903773_2 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(opp_points) FROM table_22903773_2 WHERE record = \"16-5\"", "question": "How many points did the opponents score on the game where Sooners' record was 16-5?", "context": "CREATE TABLE table_22903773_2 (opp_points INTEGER, record VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_22904780_1 WHERE us_viewers__million_ = \"12.04\"", "question": "List the number of shows that had 12.04 million viewers in the united states", "context": "CREATE TABLE table_22904780_1 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_22904780_1 WHERE rank__week_ = 5", "question": "List the original air date for week 5.", "context": "CREATE TABLE table_22904780_1 (original_air_date VARCHAR, rank__week_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_22904780_1 WHERE written_by = \"Russel Friend & Garrett Lerner\"", "question": "List the 1st air date for the show where the writers are russel friend & garrett lerner.", "context": "CREATE TABLE table_22904780_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT graphical FROM table_22915134_2 WHERE example = \"Shinya Nakano's Kawasaki Ninja ZX-RR\"", "question": "When shinya nakano's kawasaki ninja zx-rr is the example what is the graphical?", "context": "CREATE TABLE table_22915134_2 (graphical VARCHAR, example VARCHAR)"}, {"answer": "SELECT engine FROM table_22915134_2 WHERE example = \"1985-2007 Yamaha V-Max Honda VFR800\"", "question": "When 1985-2007 yamaha v-max honda vfr800 is the example what is the engine is it?", "context": "CREATE TABLE table_22915134_2 (engine VARCHAR, example VARCHAR)"}, {"answer": "SELECT engine FROM table_22915134_2 WHERE example = \"Shinya Nakano's Kawasaki Ninja ZX-RR\"", "question": "When shinya nakano's kawasaki ninja zx-rr is the example what is the engine type?", "context": "CREATE TABLE table_22915134_2 (engine VARCHAR, example VARCHAR)"}, {"answer": "SELECT COUNT(graphical) FROM table_22915134_2 WHERE ignition_timing = \"68-292-68-292\"", "question": "When 68-292-68-292 is the ignition timing how many graphicals is it?", "context": "CREATE TABLE table_22915134_2 (graphical VARCHAR, ignition_timing VARCHAR)"}, {"answer": "SELECT graphical FROM table_22915134_2 WHERE engine = \"I4\"", "question": "When i4 is the engine what is the graphical?", "context": "CREATE TABLE table_22915134_2 (graphical VARCHAR, engine VARCHAR)"}, {"answer": "SELECT COUNT(ignition_timing) FROM table_22915134_2 WHERE graphical = \"1-1-0-0-1-1-0-0-\"", "question": "When 1-1-0-0-1-1-0-0- is the graphical how many ignition timings are there?", "context": "CREATE TABLE table_22915134_2 (ignition_timing VARCHAR, graphical VARCHAR)"}, {"answer": "SELECT MAX(r) FROM table WHERE total = 6", "question": "If the total is 6, what is the maximum R?", "context": "CREATE TABLE table (r INTEGER, total VARCHAR)"}, {"answer": "SELECT MIN(r) FROM table WHERE player = Marcelo", "question": "If the player is Marcelo, what is the minimum R?", "context": "CREATE TABLE table (r INTEGER, player VARCHAR, Marcelo VARCHAR)"}, {"answer": "SELECT position FROM table WHERE player = Marcelo", "question": "If the player is Marcelo, what is the position?", "context": "CREATE TABLE table (position VARCHAR, player VARCHAR, Marcelo VARCHAR)"}, {"answer": "SELECT COUNT(r) FROM table WHERE position = AM AND league > 7.0", "question": "If the position is AM and the league is larger than 7.0, what is the total R number?", "context": "CREATE TABLE table (r VARCHAR, position VARCHAR, AM VARCHAR, league VARCHAR)"}, {"answer": "SELECT winner FROM table_22917458_15 WHERE stage = 1", "question": "Who was the Stage 1 winner?", "context": "CREATE TABLE table_22917458_15 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_22917458_15 WHERE stage = 7", "question": "Who won Stage 7?", "context": "CREATE TABLE table_22917458_15 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT mountains_classification_klasyfikacja_g\u00f3rska FROM table_22917458_15 WHERE winner = \"Alessandro Ballan\"", "question": "Who was the mountain classification winner in the stage won by Alessandro Ballan?", "context": "CREATE TABLE table_22917458_15 (mountains_classification_klasyfikacja_g\u00f3rska VARCHAR, winner VARCHAR)"}, {"answer": "SELECT population_density__people_per_mi_2__ FROM table_22916979_1 WHERE land_area__mi_2__ = \"135.09\"", "question": "For the city whose land area was 135.09, what was the total population density?", "context": "CREATE TABLE table_22916979_1 (population_density__people_per_mi_2__ VARCHAR, land_area__mi_2__ VARCHAR)"}, {"answer": "SELECT metropolitan_area FROM table_22916979_1 WHERE land_area__mi_2__ = \"23.80\"", "question": "Which major metropolitan area had a land area of 23.80?", "context": "CREATE TABLE table_22916979_1 (metropolitan_area VARCHAR, land_area__mi_2__ VARCHAR)"}, {"answer": "SELECT COUNT(state) FROM table_22916979_1 WHERE population_density__people_per_mi_2__ = \"10188.8\"", "question": "How many states had a population density of 10188.8?", "context": "CREATE TABLE table_22916979_1 (state VARCHAR, population_density__people_per_mi_2__ VARCHAR)"}, {"answer": "SELECT COUNT(left) FROM table_2293402_2 WHERE nickname = \"Cardinals\"", "question": "Name the number of left for cardinals", "context": "CREATE TABLE table_2293402_2 (left VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT institution FROM table_2293402_2 WHERE type = \"Private\"", "question": "Name the school that is private", "context": "CREATE TABLE table_2293402_2 (institution VARCHAR, type VARCHAR)"}, {"answer": "SELECT location FROM table_2293402_2 WHERE founded = 1798", "question": "Name the location that was founded 1798", "context": "CREATE TABLE table_2293402_2 (location VARCHAR, founded VARCHAR)"}, {"answer": "SELECT nickname FROM table_2293402_2 WHERE founded = 1798", "question": "Name the nickname that was founded 1798", "context": "CREATE TABLE table_2293402_2 (nickname VARCHAR, founded VARCHAR)"}, {"answer": "SELECT MIN(10), 000 + _places FROM table_22916979_5 WHERE principal_city = \"Louisville\"", "question": "Name the least 10,000+ places for louisville", "context": "CREATE TABLE table_22916979_5 (_places VARCHAR, principal_city VARCHAR)"}, {"answer": "SELECT density FROM table_22916979_5 WHERE densest_incorporated_place = \"Pennsbury Village\"", "question": "Name the density for pennsbury village", "context": "CREATE TABLE table_22916979_5 (density VARCHAR, densest_incorporated_place VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_22916979_5 WHERE densest_incorporated_place = \"Stone Park\"", "question": "Name the number of rank for stone park", "context": "CREATE TABLE table_22916979_5 (rank VARCHAR, densest_incorporated_place VARCHAR)"}, {"answer": "SELECT metropolitan_area FROM table_22916979_5 WHERE densest_incorporated_place = \"North Bay Village\"", "question": "Name the area for north bay village", "context": "CREATE TABLE table_22916979_5 (metropolitan_area VARCHAR, densest_incorporated_place VARCHAR)"}, {"answer": "SELECT region___nuts_2006_ FROM table_2293510_1 WHERE ppp__million_\u20ac_ = 23164", "question": "Where is the PPP 23164 million \u20ac?", "context": "CREATE TABLE table_2293510_1 (region___nuts_2006_ VARCHAR, ppp__million_\u20ac_ VARCHAR)"}, {"answer": "SELECT total__million_\u20ac__ FROM table_2293510_1 WHERE ppp__million_\u20ac_ = 21779", "question": "What's the total (in million \u20ac) in the region where PPP is 21779 million \u20ac?", "context": "CREATE TABLE table_2293510_1 (total__million_\u20ac__ VARCHAR, ppp__million_\u20ac_ VARCHAR)"}, {"answer": "SELECT _percentage_of_eu_average_gdp__ppp_ FROM table_2293510_1 WHERE \u20ac_per_capita__2005_ = 2519", "question": "What's the percentage of EU average GDP (PPP) in the region where \u20ac per capita is 2519", "context": "CREATE TABLE table_2293510_1 (_percentage_of_eu_average_gdp__ppp_ VARCHAR, \u20ac_per_capita__2005_ VARCHAR)"}, {"answer": "SELECT MAX(stage) FROM table_22941863_19 WHERE winner = \"Bernhard Eisel\"", "question": "If the winner is Bernhard Eisel, what is the stage maximum?", "context": "CREATE TABLE table_22941863_19 (stage INTEGER, winner VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_22941863_19 WHERE winner = \"Bernhard Eisel\"", "question": "What is the mountain classification name if the winner is Bernhard Eisel?", "context": "CREATE TABLE table_22941863_19 (mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT points_classification FROM table_22941863_19 WHERE stage = 3", "question": "If the stage is 3, what is the points classification name?", "context": "CREATE TABLE table_22941863_19 (points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT team_classification FROM table_22941863_19 WHERE stage = 9", "question": "If the stage is 9, what is the team classification name?", "context": "CREATE TABLE table_22941863_19 (team_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_22941863_19 WHERE winner = \"Michael Albasini\"", "question": "If the winner is Michael Albasini, what is the mountains classification name?", "context": "CREATE TABLE table_22941863_19 (mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_22941863_19 WHERE sprints_classification = \"no award\"", "question": "What is the name of the winner when the sprints classification is no award?", "context": "CREATE TABLE table_22941863_19 (winner VARCHAR, sprints_classification VARCHAR)"}, {"answer": "SELECT us_viewers__in_millions_ FROM table_22951088_3 WHERE written_by = \"Deidre Shaw\"", "question": "How many viewers (in millions) watched the episode written by deidre shaw?", "context": "CREATE TABLE table_22951088_3 (us_viewers__in_millions_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_22951088_3 WHERE no = 1", "question": "What was the original air date of episode number 1?", "context": "CREATE TABLE table_22951088_3 (original_air_date VARCHAR, no VARCHAR)"}, {"answer": "SELECT bowler FROM table_22962745_35 WHERE batsmen = \"Dwaraka Ravi Teja RP Singh Pragyan Ojha\"", "question": "Who was the bowler when the batsmen was dwaraka ravi teja rp singh pragyan ojha?", "context": "CREATE TABLE table_22962745_35 (bowler VARCHAR, batsmen VARCHAR)"}, {"answer": "SELECT COUNT(bowler) FROM table_22962745_35 WHERE batsmen = \"David Hussey Azhar Mahmood Gurkeerat Singh\"", "question": "How many bowlers were there when david hussey azhar mahmood gurkeerat singh was the batsmen?", "context": "CREATE TABLE table_22962745_35 (bowler VARCHAR, batsmen VARCHAR)"}, {"answer": "SELECT season FROM table_22962745_35 WHERE batsmen = \"Herschelle Gibbs Andrew Symonds Venugopal Rao\"", "question": "What season was herschelle gibbs andrew symonds venugopal rao batsmen?", "context": "CREATE TABLE table_22962745_35 (season VARCHAR, batsmen VARCHAR)"}, {"answer": "SELECT scorecard FROM table_22962745_35 WHERE batsmen = \"Robin Uthappa Mark Boucher Jacques Kallis\"", "question": "What was the scorecard when robin uthappa mark boucher jacques kallis was the batsmen?", "context": "CREATE TABLE table_22962745_35 (scorecard VARCHAR, batsmen VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_22962745_35 WHERE against = \"Rajasthan Royals\"", "question": "What is the number when against is rajasthan royals?", "context": "CREATE TABLE table_22962745_35 (no INTEGER, against VARCHAR)"}, {"answer": "SELECT COUNT(stellar_classification) FROM table_2296507_1 WHERE system = \"3 Neptune planets < 1 AU\"", "question": "Name number of stellar classification for 3 neptune planets < 1 au", "context": "CREATE TABLE table_2296507_1 (stellar_classification VARCHAR, system VARCHAR)"}, {"answer": "SELECT system FROM table_2296507_1 WHERE constellation = \"Aries\"", "question": "Name the system for aries", "context": "CREATE TABLE table_2296507_1 (system VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT stellar_age__myr_ FROM table_2296507_1 WHERE stellar_classification = \"F3V\"", "question": "Name the stellar age for f3v", "context": "CREATE TABLE table_2296507_1 (stellar_age__myr_ VARCHAR, stellar_classification VARCHAR)"}, {"answer": "SELECT dust__or_debris__location__au_ FROM table_2296507_1 WHERE star = \"HD 69830\"", "question": "Name the dust for star being hd 69830", "context": "CREATE TABLE table_2296507_1 (dust__or_debris__location__au_ VARCHAR, star VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_22977424_8 WHERE promoted_from_league = \"Exeter Chiefs\"", "question": "Name the number of names for exeter chiefs", "context": "CREATE TABLE table_22977424_8 (name VARCHAR, promoted_from_league VARCHAR)"}, {"answer": "SELECT name FROM table_22977424_8 WHERE promoted_to_league = \"Henley Manchester\"", "question": "Name the name for henley manchester", "context": "CREATE TABLE table_22977424_8 (name VARCHAR, promoted_to_league VARCHAR)"}, {"answer": "SELECT name FROM table_22977424_8 WHERE promoted_to_league = \"Doncaster Newbury\"", "question": "Name the name for doncaster newbury", "context": "CREATE TABLE table_22977424_8 (name VARCHAR, promoted_to_league VARCHAR)"}, {"answer": "SELECT season FROM table_22977424_8 WHERE promoted_from_league = \"Rotherham Titans\"", "question": "Name the season for rotherham titans", "context": "CREATE TABLE table_22977424_8 (season VARCHAR, promoted_from_league VARCHAR)"}, {"answer": "SELECT name FROM table_22977424_8 WHERE promoted_to_league = \"Plymouth Albion Orrell\"", "question": "Name the name for  plymouth albion orrell", "context": "CREATE TABLE table_22977424_8 (name VARCHAR, promoted_to_league VARCHAR)"}, {"answer": "SELECT tail_number FROM table_229917_2 WHERE brief_description = \"Crashed\"", "question": "What's the tail number of the airplane involved in the accident described as crashed?", "context": "CREATE TABLE table_229917_2 (tail_number VARCHAR, brief_description VARCHAR)"}, {"answer": "SELECT COUNT(brief_description) FROM table_229917_2 WHERE fatalities = \"0/161\"", "question": "How many different brief descriptions are there for crashes with 0/161 fatalities?", "context": "CREATE TABLE table_229917_2 (brief_description VARCHAR, fatalities VARCHAR)"}, {"answer": "SELECT date__ddmmyyyy_ FROM table_229917_2 WHERE tail_number = \"RA-85282\"", "question": "When did the airplane with tail number RA-85282 crash?", "context": "CREATE TABLE table_229917_2 (date__ddmmyyyy_ VARCHAR, tail_number VARCHAR)"}, {"answer": "SELECT fatalities FROM table_229917_2 WHERE brief_description = \"Ditched 300 m short of runway\"", "question": "How many fatalities were there in the crash described as ditched 300 m short of runway?", "context": "CREATE TABLE table_229917_2 (fatalities VARCHAR, brief_description VARCHAR)"}, {"answer": "SELECT fatalities FROM table_229917_2 WHERE brief_description = \"Crashed at take-off due to engine failure\"", "question": "How many fatalities were there in the crash described as crashed at take-off due to engine failure?", "context": "CREATE TABLE table_229917_2 (fatalities VARCHAR, brief_description VARCHAR)"}, {"answer": "SELECT MIN(class_year) FROM table_22982552_9 WHERE player = \"Vencie Glenn\"", "question": "What class year was Vencie Glenn from? ", "context": "CREATE TABLE table_22982552_9 (class_year INTEGER, player VARCHAR)"}, {"answer": "SELECT position FROM table_22982552_9 WHERE highlight_s_ = \"5 career INTs\"", "question": "What position did the player whose highlights were 5 career INTs play?", "context": "CREATE TABLE table_22982552_9 (position VARCHAR, highlight_s_ VARCHAR)"}, {"answer": "SELECT MIN(class_year) FROM table_22982552_9 WHERE highlight_s_ = \"35 career INTs\"", "question": "What class year was the player whose highlights were 35 career INTs from?", "context": "CREATE TABLE table_22982552_9 (class_year INTEGER, highlight_s_ VARCHAR)"}, {"answer": "SELECT MIN(class_year) FROM table_22982552_9 WHERE teams = \"Buffalo\"", "question": "What class year was the player who played for Buffalo from? ", "context": "CREATE TABLE table_22982552_9 (class_year INTEGER, teams VARCHAR)"}, {"answer": "SELECT MIN(gore__number) FROM table_23014476_1 WHERE others__number = \"6.6%\"", "question": "Name the gore number for others # 6.6%", "context": "CREATE TABLE table_23014476_1 (gore__number INTEGER, others__number VARCHAR)"}, {"answer": "SELECT others__percentage FROM table_23014476_1 WHERE bush__number = 1372", "question": "Name the others % for bush number 1372", "context": "CREATE TABLE table_23014476_1 (others__percentage VARCHAR, bush__number VARCHAR)"}, {"answer": "SELECT gore__number FROM table_23014476_1 WHERE others__percentage = \"5.3%\"", "question": "Name the gore number for others % being 5.3%", "context": "CREATE TABLE table_23014476_1 (gore__number VARCHAR, others__percentage VARCHAR)"}, {"answer": "SELECT county FROM table_23014476_1 WHERE others__percentage = \"5.8\"", "question": "Name the couty for others% 5.8", "context": "CREATE TABLE table_23014476_1 (county VARCHAR, others__percentage VARCHAR)"}, {"answer": "SELECT COUNT(bush__percentage) FROM table_23014476_1 WHERE county = \"Elko\"", "question": "Name the number of bush % for elko", "context": "CREATE TABLE table_23014476_1 (bush__percentage VARCHAR, county VARCHAR)"}, {"answer": "SELECT team FROM table_22998777_1 WHERE poles = 1 AND series = \"ADAC GT Masters\"", "question": "If the series is ADAC GT Masters and poles is 1, what is the name of the team?", "context": "CREATE TABLE table_22998777_1 (team VARCHAR, poles VARCHAR, series VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_22998777_1 WHERE position = \"26th\"", "question": "If the position of 26th what is the season total number?", "context": "CREATE TABLE table_22998777_1 (season VARCHAR, position VARCHAR)"}, {"answer": "SELECT season FROM table_22998777_1 WHERE points = \"41\"", "question": "If the points is 41, what is the season?", "context": "CREATE TABLE table_22998777_1 (season VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_23014923_1 WHERE primary__south__winners = \"Inter The Bloomfield\"", "question": "If the primary (South) winners is Inter The Bloomfield, what is the season total number?", "context": "CREATE TABLE table_23014923_1 (season VARCHAR, primary__south__winners VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_23014923_1 WHERE primary__south__winners = \"Ridings High 'A'\"", "question": "What is the season total number if the primary (South) winners is Ridings High 'A'?", "context": "CREATE TABLE table_23014923_1 (season VARCHAR, primary__south__winners VARCHAR)"}, {"answer": "SELECT season FROM table_23014923_1 WHERE intermediate__south__winners = \"Southmead Athletic\"", "question": "What is the year of the season if the intermediate (South) winners is Southmead Athletic?", "context": "CREATE TABLE table_23014923_1 (season VARCHAR, intermediate__south__winners VARCHAR)"}, {"answer": "SELECT season FROM table_23014923_1 WHERE minor__south__winners = \"Bristol Sanctuary XI\"", "question": "What is the season date if the minor (South) winners is Bristol Sanctuary XI?", "context": "CREATE TABLE table_23014923_1 (season VARCHAR, minor__south__winners VARCHAR)"}, {"answer": "SELECT COUNT(minor__south__winners) FROM table_23014923_1 WHERE primary__south__winners = \"Mendip Gate\"", "question": "What isthe minor (South) winners total number is the primary (South) winners is Mendip Gate?", "context": "CREATE TABLE table_23014923_1 (minor__south__winners VARCHAR, primary__south__winners VARCHAR)"}, {"answer": "SELECT area_damaged FROM table_23014685_1 WHERE target = \"King Khalid Military City\"", "question": "What area was damaged when King Khalid Military City was targeted?", "context": "CREATE TABLE table_23014685_1 (area_damaged VARCHAR, target VARCHAR)"}, {"answer": "SELECT place_ & _date FROM table_23014685_1 WHERE area_damaged = \"Apartments area\"", "question": "What was the place and date that the Apartments area was damaged?", "context": "CREATE TABLE table_23014685_1 (place_ VARCHAR, _date VARCHAR, area_damaged VARCHAR)"}, {"answer": "SELECT intercepted_by_patriot FROM table_23014685_1 WHERE area_damaged = \"Parking lot\"", "question": "Was the missile intercepted by patriot when the parking lot was damaged?", "context": "CREATE TABLE table_23014685_1 (intercepted_by_patriot VARCHAR, area_damaged VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_23014685_1 WHERE area_damaged = \"Islamic University campus\"", "question": "What number missile led to damage to the Islamic University campus?", "context": "CREATE TABLE table_23014685_1 (no INTEGER, area_damaged VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_23015396_1 WHERE driver = \"Mark Martin\"", "question": "Name the number of year for mark martin", "context": "CREATE TABLE table_23015396_1 (year VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_23015396_1 WHERE date = \"June 30\"", "question": "Name the number of year for june 30", "context": "CREATE TABLE table_23015396_1 (year VARCHAR, date VARCHAR)"}, {"answer": "SELECT model_number FROM table_23028629_2 WHERE part_number_s_ = \"CM80616003177ACBX80616I5660\"", "question": "What is the model number for part numbers of  cm80616003177acbx80616i5660?", "context": "CREATE TABLE table_23028629_2 (model_number VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_23028629_2 WHERE model_number = \"Core i5-650\"", "question": "What is every release price(USD) for model number core i5-650?", "context": "CREATE TABLE table_23028629_2 (release_price___usd__ VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT COUNT(frequency) FROM table_23028629_2 WHERE model_number = \"Core i5-655K\"", "question": "How many frequencies have a model number of core i5-655k?", "context": "CREATE TABLE table_23028629_2 (frequency VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_23028629_2 WHERE model_number = \"Core i5-670\"", "question": "What is every part number with model number core i5-670?", "context": "CREATE TABLE table_23028629_2 (part_number_s_ VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT winner FROM table_23058971_8 WHERE big_ten_team = \"#4 Purdue\"", "question": "What is the record for Big Ten Team #4 Purdue?", "context": "CREATE TABLE table_23058971_8 (winner VARCHAR, big_ten_team VARCHAR)"}, {"answer": "SELECT avg_start FROM table_2308381_1 WHERE avg_finish = \"24.2\"", "question": "Name the avg start for avg finish being 24.2", "context": "CREATE TABLE table_2308381_1 (avg_start VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT year FROM table_2308381_1 WHERE avg_start = \"22.4\"", "question": "Name the year for avg start being 22.4", "context": "CREATE TABLE table_2308381_1 (year VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT COUNT(kei) FROM table_23050383_1 WHERE economic_incentive_regime = \"2.56\"", "question": "How many KEI catagories are listed when the economic incentive regime is 2.56? ", "context": "CREATE TABLE table_23050383_1 (kei VARCHAR, economic_incentive_regime VARCHAR)"}, {"answer": "SELECT innovation FROM table_23050383_1 WHERE economic_incentive_regime = \"7.14\"", "question": "What is the innovation when the economic incentive grime is 7.14? ", "context": "CREATE TABLE table_23050383_1 (innovation VARCHAR, economic_incentive_regime VARCHAR)"}, {"answer": "SELECT education FROM table_23050383_1 WHERE country = \"Nepal\"", "question": "What is the education in Nepal? ", "context": "CREATE TABLE table_23050383_1 (education VARCHAR, country VARCHAR)"}, {"answer": "SELECT 2008 AS _rank FROM table_23050383_1 WHERE country = \"Djibouti\"", "question": "What is the 2008 rank of Djibouti? ", "context": "CREATE TABLE table_23050383_1 (country VARCHAR)"}, {"answer": "SELECT ict FROM table_23050383_1 WHERE education = \"1.73\" AND ki = \"1.99\"", "question": "What is the ICT when education is 1.73 and KI is ag 1.99? ", "context": "CREATE TABLE table_23050383_1 (ict VARCHAR, education VARCHAR, ki VARCHAR)"}, {"answer": "SELECT education FROM table_23050383_1 WHERE economic_incentive_regime = \"1.58\"", "question": "What is the education when the economic incentive regime is 1.58?", "context": "CREATE TABLE table_23050383_1 (education VARCHAR, economic_incentive_regime VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23114705_7 WHERE nz_viewers__thousand_ = \"456.58\"", "question": "What was the air date of the episod that had 456.58 thousand viewers?", "context": "CREATE TABLE table_23114705_7 (original_air_date VARCHAR, nz_viewers__thousand_ VARCHAR)"}, {"answer": "SELECT season FROM table_2311410_1 WHERE winning_profit___aud__ = \"$15,000\"", "question": "What season had a winning profit of $15,000?", "context": "CREATE TABLE table_2311410_1 (season VARCHAR, winning_profit___aud__ VARCHAR)"}, {"answer": "SELECT COUNT(series_premiere) FROM table_2311410_1 WHERE season = \"All-Stars\"", "question": "How many series premieres did the season \"All-stars\" have?", "context": "CREATE TABLE table_2311410_1 (series_premiere VARCHAR, season VARCHAR)"}, {"answer": "SELECT erin_and_jake FROM table_2311410_5 WHERE week = 4", "question": "Name the erin and jake for week 4", "context": "CREATE TABLE table_2311410_5 (erin_and_jake VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_23117208_3 WHERE viewers__millions_ = \"5.28\"", "question": "when the number of spectator are 5.28 millions, which is the smallest number of the episode in series? ", "context": "CREATE TABLE table_23117208_3 (no_in_series INTEGER, viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_23117208_3 WHERE no_in_series = 20", "question": "which is the biggest number of episode in the season, where the number of the episode in series is 20?", "context": "CREATE TABLE table_23117208_3 (no_in_season INTEGER, no_in_series VARCHAR)"}, {"answer": "SELECT title FROM table_23117208_3 WHERE viewers__millions_ = \"5.60\"", "question": "what is the name of the episode when the number of spectators was 5.60 millions?", "context": "CREATE TABLE table_23117208_3 (title VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT viewers__millions_ FROM table_23117208_3 WHERE prod_code = \"RP#213\"", "question": "how many millions of spectator did has the episode whose prod.code was rp#213?", "context": "CREATE TABLE table_23117208_3 (viewers__millions_ VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_23117208_3 WHERE directed_by = \"Constantine Makris\"", "question": "which is the biggest number of episode in the season, when the director of the episode was Constantine Makris?", "context": "CREATE TABLE table_23117208_3 (no_in_season INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_23117208_5 WHERE written_by = \"Michael Rauch\"", "question": "What is the name of the episode that was written by Michael Rauch?", "context": "CREATE TABLE table_23117208_5 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_23117208_5 WHERE directed_by = \"Matthew Penn\"", "question": "For the episode directed by Matthew Penn, what is the total number in the series?", "context": "CREATE TABLE table_23117208_5 (no_in_series VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT prod_code FROM table_23117208_4 WHERE viewers__millions_ = \"4.92\"", "question": "Name the production code for 4.92 million viewers", "context": "CREATE TABLE table_23117208_4 (prod_code VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_23117208_4 WHERE written_by = \"Jessica Ball\"", "question": "Name the least number in season for jessica ball", "context": "CREATE TABLE table_23117208_4 (no_in_season INTEGER, written_by VARCHAR)"}, {"answer": "SELECT MAX(flaps) FROM table_23128286_1 WHERE points = 109", "question": "How many flaps did he have when he had 109 points?", "context": "CREATE TABLE table_23128286_1 (flaps INTEGER, points VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_23128286_1 WHERE team_name = \"Carlin Motorsport\"", "question": "How many wins did he have with carlin motorsport?", "context": "CREATE TABLE table_23128286_1 (wins VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT MAX(races) FROM table_23128286_1", "question": "What was the most races he had in a season?", "context": "CREATE TABLE table_23128286_1 (races INTEGER)"}, {"answer": "SELECT sets_w_l FROM table_23133482_1 WHERE player = \"Ken Rosewall\"", "question": "What are Ken Rosewall's sets w-l?", "context": "CREATE TABLE table_23133482_1 (sets_w_l VARCHAR, player VARCHAR)"}, {"answer": "SELECT games_w_l FROM table_23133482_1 WHERE player = \"Arthur Ashe\"", "question": "What are Arthur Ashe's games w-l?", "context": "CREATE TABLE table_23133482_1 (games_w_l VARCHAR, player VARCHAR)"}, {"answer": "SELECT games_w_l FROM table_23145653_1 WHERE player = \"Cliff Richey\"", "question": "Name the games w-1 for cliff richey", "context": "CREATE TABLE table_23145653_1 (games_w_l VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(stage) FROM table_23157997_13 WHERE general_classification = \"Rory Sutherland\"", "question": "What stage number had the general classification Rory Sutherland?", "context": "CREATE TABLE table_23157997_13 (stage VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT youth_classification FROM table_23157997_13 WHERE mountains_classification = \"Kenneth Hanson\" AND winner = \"Lucas Sebastian Haedo\"", "question": "Who was the Youth Classification in the race with Kenneth Hanson as Mountains Classification and Lucas Sebastian Haedo as winner?", "context": "CREATE TABLE table_23157997_13 (youth_classification VARCHAR, mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_23157997_13 WHERE mountains_classification = \"Tom Zirbel\" AND points_classification = \"Thomas Soladay\"", "question": "Who won the race with Tom Zirbel as Mountains Classification and Thomas Soladay as Points Classification?", "context": "CREATE TABLE table_23157997_13 (winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_23157997_13 WHERE youth_classification = \"Nick Frey\" AND points_classification = \"Tom Zirbel\"", "question": "Who was Mountains Classification in the race with Nick Frey as Youth Classification and Tom Zirbel as Points Classification?", "context": "CREATE TABLE table_23157997_13 (mountains_classification VARCHAR, youth_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT COUNT(mountains_classification) FROM table_23157997_13 WHERE youth_classification = \"Mike Northey\"", "question": "How many Mountains Classifications were in the race with Mike Northey as Youth Classification?", "context": "CREATE TABLE table_23157997_13 (mountains_classification VARCHAR, youth_classification VARCHAR)"}, {"answer": "SELECT COUNT(foundation) FROM table_23143607_1 WHERE television_channels = \"Canal Nou Canal Nou Dos Canal Nou 24 TVVi\"", "question": "How many foundation dates were there when the  television channels is canal nou canal nou dos canal nou 24 tvvi?", "context": "CREATE TABLE table_23143607_1 (foundation VARCHAR, television_channels VARCHAR)"}, {"answer": "SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = \"Radio Nou Si Radio Radio Nou M\u00fasica\"", "question": "If the radio stations is radio nou si radio radio nou m\u00fasica; what were the total number of television channels?", "context": "CREATE TABLE table_23143607_1 (television_channels VARCHAR, radio_stations VARCHAR)"}, {"answer": "SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = \"Onda Madrid\"", "question": "What is the total number of television channels when one of the radio stations is onda madrid?", "context": "CREATE TABLE table_23143607_1 (television_channels VARCHAR, radio_stations VARCHAR)"}, {"answer": "SELECT radio_stations FROM table_23143607_1 WHERE organization = \"Ente P\u00fablico Radio Televisi\u00f3n Madrid (EPRTVM)\"", "question": "Which of the radio stations has the organization of ente p\u00fablico radio televisi\u00f3n madrid (eprtvm)?", "context": "CREATE TABLE table_23143607_1 (radio_stations VARCHAR, organization VARCHAR)"}, {"answer": "SELECT autonomous_community FROM table_23143607_1 WHERE television_channels = \"TPA TPA2 RTPA Internacional\"", "question": "What is the autonomous community with television channels  tpa tpa2 rtpa internacional?", "context": "CREATE TABLE table_23143607_1 (autonomous_community VARCHAR, television_channels VARCHAR)"}, {"answer": "SELECT COUNT(villains) FROM table_23170118_2 WHERE episode_number = \"3 (13)\"", "question": "How many villains were in episode 3 (13)?", "context": "CREATE TABLE table_23170118_2 (villains VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT title FROM table_23170118_2 WHERE villains = \"Reg Lacey (AKA Mr. B)\"", "question": "What was the title of the episode where reg lacey (aka mr. b) played the villain?", "context": "CREATE TABLE table_23170118_2 (title VARCHAR, villains VARCHAR)"}, {"answer": "SELECT MAX(three_pointers) FROM table_23183195_5 WHERE player = \"DeWanna Bonner\"", "question": "Name the most three pointers for dewanna bonner", "context": "CREATE TABLE table_23183195_5 (three_pointers INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(field_goals) FROM table_23183195_5 WHERE player = \"Chantel Hilliard\"", "question": "Name the least field goals for chantel hilliard", "context": "CREATE TABLE table_23183195_5 (field_goals INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(minutes) FROM table_23183195_5 WHERE player = \"Morgan Jennings\"", "question": "Name the most minutes for morgan jennings", "context": "CREATE TABLE table_23183195_5 (minutes INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(free_throws) FROM table_23183195_5 WHERE steals = 4", "question": "Name the most free throws for 4 steals", "context": "CREATE TABLE table_23183195_5 (free_throws INTEGER, steals VARCHAR)"}, {"answer": "SELECT road_record FROM table_23183195_2 WHERE overall_record = \"22-11\"", "question": "What is the road record for the team with an overall record of 22-11?", "context": "CREATE TABLE table_23183195_2 (road_record VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT COUNT(road_record) FROM table_23183195_2 WHERE team = \"Vanderbilt\"", "question": "What is the road record for Vanderbilt?", "context": "CREATE TABLE table_23183195_2 (road_record VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_23183195_2 WHERE overall_record = \"22-11\"", "question": "What team's overal record is 22-11?", "context": "CREATE TABLE table_23183195_2 (team VARCHAR, overall_record VARCHAR)"}, {"answer": "SELECT percentage FROM table_23183195_2 WHERE road_record = \"3-4\" AND home_record = \"7-0\"", "question": "What is the percentage for the team with a road record of 3-4 and a home record of 7-0?", "context": "CREATE TABLE table_23183195_2 (percentage VARCHAR, road_record VARCHAR, home_record VARCHAR)"}, {"answer": "SELECT COUNT(three_pointers) FROM table_23184448_4 WHERE points = 67", "question": "Name the number of three pointers for 67", "context": "CREATE TABLE table_23184448_4 (three_pointers VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(field_goals) FROM table_23184448_4 WHERE player = \"Alexis Yackley\"", "question": "Name the field goals for alexis yackley", "context": "CREATE TABLE table_23184448_4 (field_goals INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(assists) FROM table_23184448_4 WHERE minutes = 321", "question": "Name the number of assists for 321 minutes ", "context": "CREATE TABLE table_23184448_4 (assists VARCHAR, minutes VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_23184448_4 WHERE field_goals = 25 AND blocks = 6", "question": "Name the number of players for field goals being 25 and blocks is 6", "context": "CREATE TABLE table_23184448_4 (player VARCHAR, field_goals VARCHAR, blocks VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23186738_6 WHERE record = \"5-15\"", "question": "Name the location attendance of 5-15", "context": "CREATE TABLE table_23186738_6 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_23186738_6 WHERE team = \"Golden State\"", "question": "Name the record for golden state", "context": "CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_23186738_6 WHERE record = \"5-17\"", "question": "Name the number of high points for record 5-17", "context": "CREATE TABLE table_23186738_6 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_23186738_6 WHERE team = \"Houston\"", "question": "Name the record for houston", "context": "CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(cardinal_points) FROM table_23192661_3 WHERE record = \"19-4\"", "question": "Name the cardinal points for 19-4 record", "context": "CREATE TABLE table_23192661_3 (cardinal_points INTEGER, record VARCHAR)"}, {"answer": "SELECT location FROM table_23192661_3 WHERE record = \"2-1\"", "question": "Name the location for 2-1 record", "context": "CREATE TABLE table_23192661_3 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(step_6) FROM table_2319437_1 WHERE gs_grade = 11", "question": "Name the total number of step 6 for 11 gs grade", "context": "CREATE TABLE table_2319437_1 (step_6 VARCHAR, gs_grade VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_23197088_4 WHERE championship = \"Moscow\"", "question": "such as are entire the rating of closing where championship is moscow", "context": "CREATE TABLE table_23197088_4 (score_in_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT COUNT(score_in_final) FROM table_23197088_4 WHERE opponents_in_final = \"Alexandra Fusai Nathalie Tauziat\"", "question": "as is the quantity variety of score between ultimate the place opponents between remaining is alexandra fusai nathalie tauziat", "context": "CREATE TABLE table_23197088_4 (score_in_final VARCHAR, opponents_in_final VARCHAR)"}, {"answer": "SELECT opponents_in_final FROM table_23197088_4 WHERE championship = \"Z\u00fcrich\"", "question": "what are every one of the rivals in conclusive where title is z\u00fcrich", "context": "CREATE TABLE table_23197088_4 (opponents_in_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_23197088_4 WHERE championship = \"Rome\"", "question": "what are all the score in conclusive where title is rome", "context": "CREATE TABLE table_23197088_4 (score_in_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT MAX(10 AS _3_bbl_d__2008_) FROM table_23195_5 WHERE present_share = \"1.7%\"", "question": "Name the most 10 3 bbl/d (2008) for present share being 1.7%", "context": "CREATE TABLE table_23195_5 (present_share VARCHAR)"}, {"answer": "SELECT present_share FROM table_23195_5 WHERE producing_nation = \"Australia\"", "question": "Name the present share for australia", "context": "CREATE TABLE table_23195_5 (present_share VARCHAR, producing_nation VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23211041_10 WHERE team = \"Utah\"", "question": "Name the location attendance for utah", "context": "CREATE TABLE table_23211041_10 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_23211041_5 WHERE team = \"Houston\"", "question": "How many games were played against houston?", "context": "CREATE TABLE table_23211041_5 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_23211041_5 WHERE date = \"November 24\"", "question": "What team was played on november 24?", "context": "CREATE TABLE table_23211041_5 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_23211041_5 WHERE game = 4", "question": "Who had the most points in game 4?", "context": "CREATE TABLE table_23211041_5 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_23211041_5 WHERE team = \"New York\"", "question": "Who had the highest points against new york?", "context": "CREATE TABLE table_23211041_5 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT syrian_christians FROM table_23214055_2 WHERE district = \"Thiruvananthapuram\"", "question": "Name the syrian christians for  thiruvananthapuram", "context": "CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR)"}, {"answer": "SELECT ezhavas FROM table_23214055_2 WHERE muslims = \"5.4\"", "question": "Name the ezhavas for muslims being 5.4", "context": "CREATE TABLE table_23214055_2 (ezhavas VARCHAR, muslims VARCHAR)"}, {"answer": "SELECT ezhavas FROM table_23214055_2 WHERE syrian_christians = \"26.2\"", "question": "Name the ezhavas and syrian christians being 26.2", "context": "CREATE TABLE table_23214055_2 (ezhavas VARCHAR, syrian_christians VARCHAR)"}, {"answer": "SELECT syrian_christians FROM table_23214055_2 WHERE district = \"Kollam\"", "question": "Name the syrian christians for kollam", "context": "CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_23214055_2 WHERE others = \"18.3\"", "question": "Name the district for others being 18.3", "context": "CREATE TABLE table_23214055_2 (district VARCHAR, others VARCHAR)"}, {"answer": "SELECT district FROM table_23214055_2 WHERE nairs = \"8.2\"", "question": "Name the district for nairs 8.2", "context": "CREATE TABLE table_23214055_2 (district VARCHAR, nairs VARCHAR)"}, {"answer": "SELECT COUNT(2005 AS _06_points) FROM table_23215145_2 WHERE total_points = 5", "question": "If the total points is 5, what is the 2005-2006 points total number?", "context": "CREATE TABLE table_23215145_2 (total_points VARCHAR)"}, {"answer": "SELECT MIN(2006 AS _07_points) FROM table_23215145_2 WHERE team = \"Overmach Parma\"", "question": "What is the 2006-2007 points minimum is the team is Overmach Parma?", "context": "CREATE TABLE table_23215145_2 (team VARCHAR)"}, {"answer": "SELECT 2005 AS _06_points FROM table_23215145_2 WHERE team = \"Worcester\"", "question": "If the team is Worcester, what is the 2005-2006 points?", "context": "CREATE TABLE table_23215145_2 (team VARCHAR)"}, {"answer": "SELECT COUNT(2006 AS _07_points) FROM table_23215145_2 WHERE team = \"Saracens\"", "question": "What is the 2006-2007 points total number if the team is Saracens?", "context": "CREATE TABLE table_23215145_2 (team VARCHAR)"}, {"answer": "SELECT season FROM table_23224961_1 WHERE oberpfalz = \"SpVgg Vohenstrau\u00df\"", "question": "When spvgg vohenstrau\u00df is the oberpfalz what is the season?", "context": "CREATE TABLE table_23224961_1 (season VARCHAR, oberpfalz VARCHAR)"}, {"answer": "SELECT niederbayern FROM table_23224961_1 WHERE oberbayern_b = \"ESV Ingolstadt\"", "question": "When esv ingolstadt is the oberbayern b what is the  niederbayern?", "context": "CREATE TABLE table_23224961_1 (niederbayern VARCHAR, oberbayern_b VARCHAR)"}, {"answer": "SELECT schwaben FROM table_23224961_1 WHERE oberbayern_a = \"Wacker Burghausen\"", "question": "When wacker burghausen is the oberbayern a what is the schwaben?", "context": "CREATE TABLE table_23224961_1 (schwaben VARCHAR, oberbayern_a VARCHAR)"}, {"answer": "SELECT oberpfalz FROM table_23224961_1 WHERE oberbayern_a = \"FC Oberau\"", "question": "When fc oberau is the oberbayern a what is the oberpfalz?", "context": "CREATE TABLE table_23224961_1 (oberpfalz VARCHAR, oberbayern_a VARCHAR)"}, {"answer": "SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = \"TuS Rosenberg\"", "question": "When tus rosenberg is the oberpfalz what is the oberbayern b?", "context": "CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR)"}, {"answer": "SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = \"FC Schwandorf\"", "question": "When fc schwandorf is the oberpfalz what is the oberbayern b?", "context": "CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_23235546_1 WHERE outcome = \"Winner\" AND year = 1989", "question": "What was the score in the final when the outcome was winner in 1989?", "context": "CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, outcome VARCHAR, year VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_23235546_1 WHERE championship = \"Australian Open\" AND opponent_in_the_final = \"Mats Wilander\"", "question": "What was the score in the final when Mats Wilander was the opponent in the Australian Open?", "context": "CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, championship VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23225927_1 WHERE no_in_season = 22", "question": "If the number in the season is 22, what is the original air date?", "context": "CREATE TABLE table_23225927_1 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_23225927_1 WHERE written_by = \"Jonathan Greene\"", "question": "What is the maximum season number for the episode written by Jonathan Greene?", "context": "CREATE TABLE table_23225927_1 (no_in_season INTEGER, written_by VARCHAR)"}, {"answer": "SELECT original_air_dates FROM table_2322716_2 WHERE prod_code = 201", "question": "Name the original air date for prod code 201", "context": "CREATE TABLE table_2322716_2 (original_air_dates VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_2322716_2 WHERE prod_code = 206", "question": "Name the written by for prod code being 206", "context": "CREATE TABLE table_2322716_2 (written_by VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_23239946_3", "question": "How many positions are there in Canadian Nascar? ", "context": "CREATE TABLE table_23239946_3 (position INTEGER)"}, {"answer": "SELECT COUNT(driver) FROM table_23239946_3 WHERE points = 1942", "question": "How many drivers have 1942 points?", "context": "CREATE TABLE table_23239946_3 (driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(starts) FROM table_23239946_3", "question": "How many starts are there?", "context": "CREATE TABLE table_23239946_3 (starts INTEGER)"}, {"answer": "SELECT COUNT(wins) FROM table_23239946_3 WHERE driver = \"Andrew Ranger\"", "question": "How many wins did Andrew Ranger have?", "context": "CREATE TABLE table_23239946_3 (wins VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(winnings__) AS $_ FROM table_23239946_3 WHERE position = 7", "question": "What are the winnings for position 7?", "context": "CREATE TABLE table_23239946_3 (winnings__ INTEGER, position VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_23242958_1 WHERE written_by = \"David Zuckerman\"", "question": "What number episode in the series was written by David Zuckerman? ", "context": "CREATE TABLE table_23242958_1 (no_in_series VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23242958_1 WHERE written_by = \"David Zuckerman\"", "question": "What is the original air date of the episode written by David Zuckerman? ", "context": "CREATE TABLE table_23242958_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_23242958_1 WHERE directed_by = \"Rodney Clouden\"", "question": "What is the title of the episode directed by Rodney Clouden? ", "context": "CREATE TABLE table_23242958_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_23242958_1 WHERE production_code = \"3AJN01\"", "question": "How many millions of U.S. viewers watched the episode with the production code of 3AJN01?", "context": "CREATE TABLE table_23242958_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_23242968_1 WHERE us_viewers__millions_ = \"6.76\"", "question": "Who directed the episode that had 6.76 million U.S. viewers?", "context": "CREATE TABLE table_23242968_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_23242968_1 WHERE no_in_series = 75", "question": "What episode number of the season was also number 75 in the series?", "context": "CREATE TABLE table_23242968_1 (no_in_season INTEGER, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_23242968_1 WHERE production_code = \"3AJN20\"", "question": "Who wrote the episode that had a production code of 3ajn20?", "context": "CREATE TABLE table_23242968_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_23242968_1 WHERE written_by = \"Jonathan Fener\"", "question": "Who directed the episode that was written by Jonathan Fener?", "context": "CREATE TABLE table_23242968_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_23242968_1 WHERE production_code = \"3AJN20\"", "question": "What was the name of the episode with a production code of 3ajn20?", "context": "CREATE TABLE table_23242968_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_23242933_2 WHERE production_code = \"1AJN05\"", "question": "Who wrote the episode with production code 1AJN05?", "context": "CREATE TABLE table_23242933_2 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_23242933_2 WHERE us_viewers__millions_ = \"7.84\"", "question": "How many different series numbers are there for the episode seen by 7.84 million people in the US?", "context": "CREATE TABLE table_23242933_2 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_23242933_2 WHERE written_by = \"Dan Vebber\"", "question": "What's the series number of the episode written by Dan Vebber?", "context": "CREATE TABLE table_23242933_2 (no_in_series INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_23242933_2 WHERE us_viewers__millions_ = \"7.84\"", "question": "How many different titles are there of episodes that have been seen by 7.84 million people in the US/", "context": "CREATE TABLE table_23242933_2 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23242933_2 WHERE us_viewers__millions_ = \"6.09\"", "question": "When did 6.09 million people in the US see the original airing of an episode of the show?", "context": "CREATE TABLE table_23242933_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_23242950_1 WHERE us_viewers__millions_ = \"6.64\"", "question": "What's the season number of the episode originally seen by 6.64 million people in the US?", "context": "CREATE TABLE table_23242950_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_23242950_1 WHERE us_viewers__millions_ = \"7.49\"", "question": "What's the production code of the episode seen by 7.49 million people in the US?", "context": "CREATE TABLE table_23242950_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT opponent FROM table_23243769_4 WHERE opp_points = 44", "question": "What opponent got 44 points in their game?", "context": "CREATE TABLE table_23243769_4 (opponent VARCHAR, opp_points VARCHAR)"}, {"answer": "SELECT location FROM table_23243769_4 WHERE record = \"4-1\"", "question": "Where was the game with a 4-1 record played?", "context": "CREATE TABLE table_23243769_4 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23248869_6 WHERE high_points = \"Larry Hughes (21)\"", "question": "Who did the high rebounds in the game where Larry Hughes (21) did the high ponts?", "context": "CREATE TABLE table_23248869_6 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_23248869_6 WHERE date = \"December 11\"", "question": "How many different people did different scores of high assists during the December 11 game?", "context": "CREATE TABLE table_23248869_6 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_23248869_6 WHERE team = \"Portland\"", "question": "Who did the high assists in the game against Portland?", "context": "CREATE TABLE table_23248869_6 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_23248869_10 WHERE location_attendance = \"Madison Square Garden 19,763\" AND game < 80.0", "question": "What is every score for location attendance of Madison Square Garden 19,763 and game less than 80.0?", "context": "CREATE TABLE table_23248869_10 (score VARCHAR, location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_23248869_10 WHERE team = \"Boston\"", "question": "What is every record for the team Boston?", "context": "CREATE TABLE table_23248869_10 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_23248869_10 WHERE game = 81", "question": "How many values for high assists when the game is 81?", "context": "CREATE TABLE table_23248869_10 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_23248869_8 WHERE high_points = \"David Lee (30)\"", "question": "How many times was the high points david lee (30)", "context": "CREATE TABLE table_23248869_8 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_assists FROM table_23248869_8 WHERE score = \"L 85\u2013118 (OT)\"", "question": "Who had the high assists when the score was l 85\u2013118 (ot)", "context": "CREATE TABLE table_23248869_8 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_23248869_8 WHERE high_rebounds = \"David Lee (8)\"", "question": "What was the record when the high rebounds was david lee (8)", "context": "CREATE TABLE table_23248869_8 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_23248869_8 WHERE record = \"19\u201334\"", "question": "How many times was the record 19\u201334", "context": "CREATE TABLE table_23248869_8 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_23248869_8 WHERE record = \"19\u201335\"", "question": "What was the score when the record was 19\u201335", "context": "CREATE TABLE table_23248869_8 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_23248869_8 WHERE high_points = \"David Lee (30)\"", "question": "What was the game when high points was david lee (30)", "context": "CREATE TABLE table_23248869_8 (game INTEGER, high_points VARCHAR)"}, {"answer": "SELECT COUNT(population__2010_census_) FROM table_232458_1 WHERE pop_density__per_km\u00b2_ = \"7,447.32\"", "question": "If the population density is 7,447.32, what is the population total number?", "context": "CREATE TABLE table_232458_1 (population__2010_census_ VARCHAR, pop_density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT pop_density__per_km\u00b2_ FROM table_232458_1 WHERE no_of_barangays = 19", "question": "If the number of barangays is 19, what is the population density?", "context": "CREATE TABLE table_232458_1 (pop_density__per_km\u00b2_ VARCHAR, no_of_barangays VARCHAR)"}, {"answer": "SELECT MIN(population__2010_census_) FROM table_232458_1 WHERE area__km\u00b2_ = \"66.34\"", "question": "If the area is 66.34, what is the minimum (2010 census) population?", "context": "CREATE TABLE table_232458_1 (population__2010_census_ INTEGER, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT city___municipality FROM table_232458_1 WHERE pop_density__per_km\u00b2_ = \"1,388.88\"", "question": "What is the name of the city/municipality if the population is 1,388.88?", "context": "CREATE TABLE table_232458_1 (city___municipality VARCHAR, pop_density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_23248420_1 WHERE country = \"England\" AND county = \"Merseyside\" AND city_town = \"Birkenhead\"", "question": "When birkenhead is the city/town and merseyside is the county and england is the country how many ranks are there?", "context": "CREATE TABLE table_23248420_1 (rank VARCHAR, city_town VARCHAR, country VARCHAR, county VARCHAR)"}, {"answer": "SELECT city_town FROM table_23248420_1 WHERE rank = 2", "question": "When 2 is the rank what is the city/town?", "context": "CREATE TABLE table_23248420_1 (city_town VARCHAR, rank VARCHAR)"}, {"answer": "SELECT county FROM table_23248420_1 WHERE region_province = \"North West\" AND rank = 20", "question": "When 20 is the rank and north west is the region/province what is the county?", "context": "CREATE TABLE table_23248420_1 (county VARCHAR, region_province VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_23248420_1 WHERE city_town = \"Fleetwood\"", "question": "When fleetwood is the city/town how many sets of population are there?", "context": "CREATE TABLE table_23248420_1 (population VARCHAR, city_town VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_23248420_1 WHERE population = 142900", "question": "When 142900 is the population what is the highest rank?", "context": "CREATE TABLE table_23248420_1 (rank INTEGER, population VARCHAR)"}, {"answer": "SELECT county FROM table_23248420_1 WHERE population = 31901", "question": "When 31901 is the population what is the county?", "context": "CREATE TABLE table_23248420_1 (county VARCHAR, population VARCHAR)"}, {"answer": "SELECT score FROM table_23248910_5 WHERE record = \"11-3\"", "question": "What was the score against the team with an 11-3 record against the Hawks?", "context": "CREATE TABLE table_23248910_5 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23248910_5 WHERE record = \"5-2\"", "question": "Who had the most rebounds in the game against the team with a 5-2 record against the Hawks?", "context": "CREATE TABLE table_23248910_5 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23248910_6 WHERE team = \"Cavaliers\"", "question": "What location and it's attendance was the game against the cavaliers?", "context": "CREATE TABLE table_23248910_6 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_23248910_6 WHERE team = \"Raptors\"", "question": "Who scored the highest points and how much against the raptors?", "context": "CREATE TABLE table_23248910_6 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23248910_6 WHERE team = \"Nets\"", "question": "What location and it's attendance was the game against the Nets?", "context": "CREATE TABLE table_23248910_6 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_23248910_10 WHERE date = \"April 2\"", "question": "List all players with highest assists from April 2.", "context": "CREATE TABLE table_23248910_10 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_23248910_10 WHERE date = \"April 7\"", "question": "List high points from the April 7 game.", "context": "CREATE TABLE table_23248910_10 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_23248910_9 WHERE date = \"March 5\"", "question": "What is every team on March 5?", "context": "CREATE TABLE table_23248910_9 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_23248910_9 WHERE team = \"Pistons\"", "question": "Who is every high points for the Pistons team?", "context": "CREATE TABLE table_23248910_9 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_23248910_9 WHERE record = \"46-25\"", "question": "What is every score with a record of 46-25?", "context": "CREATE TABLE table_23248910_9 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_23248940_10 WHERE record = \"34-32\"", "question": "How many people had high rebounds during the game with a record of 34-32?", "context": "CREATE TABLE table_23248940_10 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_23248940_10 WHERE game = 71", "question": "How many people led in assists on game 71?", "context": "CREATE TABLE table_23248940_10 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23248940_10 WHERE team = \"Washington\"", "question": "What was the location and it's attendance when the Bobcats played against Washington?", "context": "CREATE TABLE table_23248940_10 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_23248940_7 WHERE team = \"Milwaukee\"", "question": "Name the record for milwaukee", "context": "CREATE TABLE table_23248940_7 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23248940_7 WHERE record = \"10-14\"", "question": "Name the location attendance for 10-14", "context": "CREATE TABLE table_23248940_7 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_23248940_7 WHERE date = \"December 8\"", "question": "Name the record for december 8", "context": "CREATE TABLE table_23248940_7 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_23248940_9 WHERE game = 50", "question": "How did the game number 50 end?", "context": "CREATE TABLE table_23248940_9 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_23248940_9 WHERE date = \"February 24\"", "question": "How many different high assists results are there for the game played on February 24?", "context": "CREATE TABLE table_23248940_9 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_23248940_9 WHERE date = \"February 6\"", "question": "Who did the most high assists during the game played on February 6?", "context": "CREATE TABLE table_23248940_9 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23248940_9 WHERE game = 55", "question": "Where was game number 55 played?", "context": "CREATE TABLE table_23248940_9 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_23248967_10 WHERE game = 78", "question": "What date was game 78 played on?", "context": "CREATE TABLE table_23248967_10 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_23248967_10 WHERE date = \"April 9\"", "question": "What is the final score of the game on April 9?", "context": "CREATE TABLE table_23248967_10 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_23248967_10 WHERE game = 78", "question": "Who scored the high points in game 78?", "context": "CREATE TABLE table_23248967_10 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_23249053_8 WHERE game > 29.0", "question": "What is the score when the game is bigger than 29.0?", "context": "CREATE TABLE table_23249053_8 (score VARCHAR, game INTEGER)"}, {"answer": "SELECT team FROM table_23249053_11 WHERE high_points = \"Rashard Lewis (24)\"", "question": "When rashard lewis (24) has the highest amount of points who is the team?", "context": "CREATE TABLE table_23249053_11 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_23249053_11 WHERE high_points = \"Vince Carter (24)\"", "question": "When vince carter (24) has the highest points how many teams are there? ", "context": "CREATE TABLE table_23249053_11 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT championship FROM table_23259077_1 WHERE opponent_in_the_final = \"Ken Rosewall\"", "question": "In which championship did John Newcombe play against Ken Rosewall in the final match?", "context": "CREATE TABLE table_23259077_1 (championship VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_23259077_1 WHERE outcome = \"Runner-up\" AND championship = \"Wimbledon\"", "question": "What were the scores of the Wimbledon final matches where Newcombe was the runner-up?", "context": "CREATE TABLE table_23259077_1 (score_in_the_final VARCHAR, outcome VARCHAR, championship VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_23259077_1 WHERE opponent_in_the_final = \"Clark Graebner\"", "question": "On what year did Newcombe first face Clark Graebner in a final match?", "context": "CREATE TABLE table_23259077_1 (year INTEGER, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_23259077_1 WHERE opponent_in_the_final = \"Jan Kode\u0161\"", "question": "What was the outcome for Newcombe in the matches he played against Jan Kode\u0161?", "context": "CREATE TABLE table_23259077_1 (outcome VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_23255941_1 WHERE directed_by = \"Charles Haid\"", "question": "How many writers were there in the episode directed by Charles Haid?", "context": "CREATE TABLE table_23255941_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_23255941_1 WHERE written_by = \"Mark Goffman\"", "question": "What was the title of the episode written by Mark Goffman?", "context": "CREATE TABLE table_23255941_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_23255941_1 WHERE episode__number = 12", "question": "How many original air dates did episode 12 have?h", "context": "CREATE TABLE table_23255941_1 (original_air_date VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_23255941_1 WHERE directed_by = \"Christine Moore\"", "question": "How many millions of viewers watched the episode directed by Christine Moore?", "context": "CREATE TABLE table_23255941_1 (viewers__in_millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_23274514_7 WHERE score = \"W 107\u201397 (OT)\"", "question": "Name the number of date for w 107\u201397 (ot)", "context": "CREATE TABLE table_23274514_7 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_23274514_7 WHERE record = \"17-32\"", "question": "Name the date for 17-32", "context": "CREATE TABLE table_23274514_7 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23274514_7 WHERE record = \"17-33\"", "question": "Name the high rebounds for 17-33", "context": "CREATE TABLE table_23274514_7 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT team FROM table_23274514_7 WHERE record = \"19-34\"", "question": "Name the team for 19-34", "context": "CREATE TABLE table_23274514_7 (team VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(model) FROM table_2326823_2 WHERE max_power_output = \"162kW (220 PS) at 6,300 rpm\"", "question": "How many models have maximum power output is 162kw (220 ps) at 6,300 rpm?", "context": "CREATE TABLE table_2326823_2 (model VARCHAR, max_power_output VARCHAR)"}, {"answer": "SELECT max_power_output FROM table_2326823_2 WHERE model = \"2.0 TS\" AND peak_torque = \"N\u00b7m (lb\u00b7ft) at 3,500 rpm\"", "question": "List the max power produced for model 2.0 ts with peak of n\u00b7m (lb\u00b7ft) at 3,500 rpm.", "context": "CREATE TABLE table_2326823_2 (max_power_output VARCHAR, model VARCHAR, peak_torque VARCHAR)"}, {"answer": "SELECT high_points FROM table_23274514_4 WHERE record = \"2-7\"", "question": "Who had the highest points during the game with a record of 2-7?", "context": "CREATE TABLE table_23274514_4 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT team FROM table_23274514_4 WHERE record = \"2-5\"", "question": "What team did the Wizards play against when their record was 2-5?", "context": "CREATE TABLE table_23274514_4 (team VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_23274514_4 WHERE team = \"Phoenix\"", "question": "Who tied in the highest point scorer when playing against Phoenix?", "context": "CREATE TABLE table_23274514_4 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(season__number) FROM table_23279434_1 WHERE production_code = \"AM10\"", "question": "Which season used production code \"am10\"?", "context": "CREATE TABLE table_23279434_1 (season__number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23279434_1 WHERE directed_by = \"Jeremy Kagan\"", "question": "When did Jeremy Kagan's episode first air?", "context": "CREATE TABLE table_23279434_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(season__number) FROM table_23279434_1 WHERE written_by = \"David E. Kelley\" AND series__number = 7", "question": "What seasons  in series 7 did David E. Kelley write ?", "context": "CREATE TABLE table_23279434_1 (season__number VARCHAR, written_by VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_23281862_10 WHERE score = \"L 106\u2013116 (OT)\"", "question": "Name the total number of date for score being  l 106\u2013116 (ot)", "context": "CREATE TABLE table_23281862_10 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_23281862_10 WHERE team = \"Charlotte\"", "question": "Name the record for charlotte", "context": "CREATE TABLE table_23281862_10 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_23281862_10 WHERE score = \"W 113\u201396 (OT)\"", "question": "Name the most game for w 113\u201396 (ot)", "context": "CREATE TABLE table_23281862_10 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT score FROM table_23274514_9 WHERE record = \"22-53\"", "question": "What was the score when the record was 22-53?", "context": "CREATE TABLE table_23274514_9 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_23274514_9 WHERE team = \"Golden State\"", "question": "What was the record when they played golden state?", "context": "CREATE TABLE table_23274514_9 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(percentage__2006_) FROM table_2328113_1 WHERE mother_tongue = \"French\"", "question": "How many percentages (2006) are there for the population whose mother tongue is French?", "context": "CREATE TABLE table_2328113_1 (percentage__2006_ VARCHAR, mother_tongue VARCHAR)"}, {"answer": "SELECT MIN(population__2011_) FROM table_2328113_1", "question": "What was the minimum population in 2011?", "context": "CREATE TABLE table_2328113_1 (population__2011_ INTEGER)"}, {"answer": "SELECT percentage__2006_ FROM table_2328113_1 WHERE mother_tongue = \"Polish\"", "question": "What was the percentage in 2006 whose natives is Polish?", "context": "CREATE TABLE table_2328113_1 (percentage__2006_ VARCHAR, mother_tongue VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23284271_11 WHERE high_points = \"Dirk Nowitzki , Caron Butler (17)\"", "question": "Name the location attendance for dirk nowitzki , caron butler (17)", "context": "CREATE TABLE table_23284271_11 (location_attendance VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23284271_11 WHERE game = 4", "question": "Name the location attendance for 4 game", "context": "CREATE TABLE table_23284271_11 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_23284271_11 WHERE score = \"L 89\u201392 (OT)\"", "question": "Name the date for  l 89\u201392 (ot)", "context": "CREATE TABLE table_23284271_11 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_23284271_11 WHERE series = \"1-2\"", "question": "Name the high assists for 1-2 series", "context": "CREATE TABLE table_23284271_11 (high_assists VARCHAR, series VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23284271_11 WHERE location_attendance = \"American Airlines Center 20,557\"", "question": "Name the high rebounds for american airlines center 20,557", "context": "CREATE TABLE table_23284271_11 (high_rebounds VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_23284271_6 WHERE date = \"December 27\"", "question": "Name the score for december 27", "context": "CREATE TABLE table_23284271_6 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_23284271_6 WHERE location_attendance = \"Pepsi Center 19,756\"", "question": "Name the total number of high points for pepsi center 19,756", "context": "CREATE TABLE table_23284271_6 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_23284597_3 WHERE score_in_the_final = \"3\u20136, 1\u20136\"", "question": "Name the opponent in the final for 3\u20136, 1\u20136", "context": "CREATE TABLE table_23284597_3 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT year FROM table_23284597_3 WHERE opponent_in_the_final = \"Guillermo Ca\u00f1as\"", "question": "Name the year for guillermo ca\u00f1as", "context": "CREATE TABLE table_23284597_3 (year VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_23285761_10 WHERE team = \"Houston\"", "question": "What was the score for the game against Houston?", "context": "CREATE TABLE table_23285761_10 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_23285805_5 WHERE game = 30", "question": "Name the number of records for 30 game", "context": "CREATE TABLE table_23285805_5 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_23285805_5 WHERE date = \"December 19\"", "question": "Name the team for december 19", "context": "CREATE TABLE table_23285805_5 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23285849_5 WHERE record = \"9-4\"", "question": "What location and how many people were in attendance where the record was 9-4 for the season?", "context": "CREATE TABLE table_23285849_5 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_23285849_5 WHERE record = \"3-0\"", "question": "How scored the most points where the record is 3-0 for the season?", "context": "CREATE TABLE table_23285849_5 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_23285849_10 WHERE high_assists = \"Chauncey Billups (7)\"", "question": "When chauncey billups (7) has the highest amount of assists what is the score?", "context": "CREATE TABLE table_23285849_10 (score VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT score FROM table_23285849_10 WHERE high_points = \"J.R. Smith (26)\"", "question": "When j.r. smith (26) has the highest amount of points what is the score?", "context": "CREATE TABLE table_23285849_10 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_23285849_10 WHERE team = \"Clippers\"", "question": "When the clippers are the team how many games are there?", "context": "CREATE TABLE table_23285849_10 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_23285849_10 WHERE high_rebounds = \"Aaron Afflalo (9)\"", "question": "When aaron afflalo (9) has the highest amount of rebounds what is the score?", "context": "CREATE TABLE table_23285849_10 (score VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_points FROM table_23285849_10 WHERE high_assists = \"Chauncey Billups (4)\"", "question": "When chauncey billups (4) has the highest amount of assists who has the highest amount of points?", "context": "CREATE TABLE table_23285849_10 (high_points VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23285849_11 WHERE high_points = \"Carmelo Anthony (39)\"", "question": "When carmelo anthony (39) has the highest amount of points where is the location and what is the attendance?", "context": "CREATE TABLE table_23285849_11 (location_attendance VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_23285849_11 WHERE high_points = \"Carmelo Anthony (42)\"", "question": "When carmelo anthony (42) has the highest amount of points how many measurements of highest rebounds are there?", "context": "CREATE TABLE table_23285849_11 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_23285849_8 WHERE score = \"L 106\u2013116 (OT)\"", "question": "Name the record for  l 106\u2013116 (ot)", "context": "CREATE TABLE table_23285849_8 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_points FROM table_23285849_8 WHERE location_attendance = \"Staples Center 18,997\"", "question": "Name the high points for the staples center 18,997", "context": "CREATE TABLE table_23285849_8 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_23285849_7 WHERE record = \"27-14\"", "question": "What was the date of the game when the record was 27-14?", "context": "CREATE TABLE table_23285849_7 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_23285849_7 WHERE score = \"W 97\u201392 (OT)\"", "question": "Who had the most points in the game where the score was w 97\u201392 (ot)?", "context": "CREATE TABLE table_23285849_7 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_23285849_7 WHERE team = \"Timberwolves\"", "question": "What was the record when the timberwolves were played?", "context": "CREATE TABLE table_23285849_7 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_23285849_6 WHERE team = \"Heat\"", "question": "How many players has the highest points in the game against the Heat?", "context": "CREATE TABLE table_23285849_6 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23285849_6 WHERE game = 29", "question": "Who tied for highest rebounds in game 29?", "context": "CREATE TABLE table_23285849_6 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_23286112_12 WHERE game = 5", "question": "Where was game number 5 played?", "context": "CREATE TABLE table_23286112_12 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_23286112_12 WHERE game = 2", "question": "Who had the highest rebounds in game 2?", "context": "CREATE TABLE table_23286112_12 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_23286112_12 WHERE series = \"0-2\"", "question": "What date was the series 0-2?", "context": "CREATE TABLE table_23286112_12 (date VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_23286112_12 WHERE date = \"April 18\"", "question": "Which series were played on April 18?", "context": "CREATE TABLE table_23286112_12 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_23286158_11 WHERE high_rebounds = \"Marcus Camby (11)\"", "question": "What series had high rebounds with Marcus Camby (11)?", "context": "CREATE TABLE table_23286158_11 (series VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT series FROM table_23286158_11 WHERE game = 5", "question": "What was the series where the game was 5?", "context": "CREATE TABLE table_23286158_11 (series VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_23286158_11 WHERE high_points = \"Andre Miller (31)\"", "question": "What is the score when high points were Andre Miller (31)?", "context": "CREATE TABLE table_23286158_11 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_23286158_11 WHERE game = 3", "question": "What is the score in game 3?", "context": "CREATE TABLE table_23286158_11 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_23286158_10 WHERE high_rebounds = \"Marcus Camby (15)\"", "question": "When marcus camby (15) has the highest amount of rebounds who has the highest amount of assists?", "context": "CREATE TABLE table_23286158_10 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_points FROM table_23286158_10 WHERE record = \"48-30\"", "question": "When 48-30 is the record who has the highest amount of points?", "context": "CREATE TABLE table_23286158_10 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_23286158_10 WHERE high_assists = \"Brandon Roy (6)\" AND game = 78", "question": "When 78 is the game and brandon roy (6) has the highest amount of assists how many locations/attendances are there?", "context": "CREATE TABLE table_23286158_10 (location_attendance VARCHAR, high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_23286158_10 WHERE high_rebounds = \"Marcus Camby (15)\"", "question": "When marcus camby (15) has the highest amount of rebounds what is the date?", "context": "CREATE TABLE table_23286158_10 (date VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_23286158_7 WHERE team = \"Cleveland\"", "question": "When did the Portland Trail Blazers play against Cleveland?", "context": "CREATE TABLE table_23286158_7 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_23287683_1 WHERE directed_by = \"Sarah Pia Anderson\"", "question": "How many episodes were directed by Sarah Pia Anderson?", "context": "CREATE TABLE table_23287683_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT season__number FROM table_23287683_1 WHERE production_code = \"5M21\"", "question": "List all season numbers with production codes of 5m21.", "context": "CREATE TABLE table_23287683_1 (season__number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_23287683_1 WHERE series__number = 95", "question": "How many episodes had a series number of 95?", "context": "CREATE TABLE table_23287683_1 (title VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT COUNT(season__number) FROM table_23286722_1 WHERE production_code = \"3M17\"", "question": "Name the total number of season for production code 3m17", "context": "CREATE TABLE table_23286722_1 (season__number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_23286722_1 WHERE season__number = 2", "question": "Name the directed by season # 2", "context": "CREATE TABLE table_23286722_1 (directed_by VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_23286722_1 WHERE written_by = \"David E. Kelley & Jill Goldsmith\"", "question": "Name least series number for writers david e. kelley & jill goldsmith", "context": "CREATE TABLE table_23286722_1 (series__number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(first_broadcast) FROM table_23292220_13 WHERE episode = \"12x03\"", "question": "How many episodes are numbered 12x03?", "context": "CREATE TABLE table_23292220_13 (first_broadcast VARCHAR, episode VARCHAR)"}, {"answer": "SELECT jons_team FROM table_23292220_13 WHERE seans_team = \"Matthew Crosby and Kimberly Wyatt\"", "question": "Who was on Jon's team when Sean's team had Matthew Crosby and Kimberly Wyatt?", "context": "CREATE TABLE table_23292220_13 (jons_team VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT episode FROM table_23292220_13 WHERE seans_team = \"Jack Dee and Stacey Solomon\"", "question": "What was the episode that had Jack Dee and Stacey Solomon on Sean's team?", "context": "CREATE TABLE table_23292220_13 (episode VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT scores FROM table_23292220_13 WHERE seans_team = \"Louie Spence and Joe Wilkinson\"", "question": "What was the score in the episode that had Louie Spence and Joe Wilkinson on Sean's team?", "context": "CREATE TABLE table_23292220_13 (scores VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT scores FROM table_23292220_13 WHERE seans_team = \"Russell Kane and Louise Redknapp\"", "question": "What was the score on the episode that had Russell Kane and Louise Redknapp on Sean's team?", "context": "CREATE TABLE table_23292220_13 (scores VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT episode FROM table_23292220_3 WHERE seans_team = \"Krishnan Guru-Murthy and Vic Reeves\"", "question": "In which episode is Sean's team made up of Krishnan Guru-Murthy and Vic Reeves?", "context": "CREATE TABLE table_23292220_3 (episode VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_23292220_3 WHERE daves_team = \"Dave Johns and Sally Lindsay\"", "question": "What is the first broadcast date of the episode in which Dave's team is made up of Dave Johns and Sally Lindsay?", "context": "CREATE TABLE table_23292220_3 (first_broadcast VARCHAR, daves_team VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_23292220_3 WHERE seans_team = \"Peter Serafinowicz and Johnny Vegas\"", "question": "What was the first broadcast date of the episode in which Sean's team is made up of Peter Serafinowicz and Johnny Vegas?", "context": "CREATE TABLE table_23292220_3 (first_broadcast VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_23292220_3 WHERE daves_team = \"David Walliams and Louis Walsh\"", "question": "In how many episodes was Dave's team made up of David Walliams and Louis Walsh?", "context": "CREATE TABLE table_23292220_3 (episode VARCHAR, daves_team VARCHAR)"}, {"answer": "SELECT episode FROM table_23292220_4 WHERE daves_team = \"Boy George and Lee Mack\"", "question": "Which episode has boy george and lee mack on dave's team?", "context": "CREATE TABLE table_23292220_4 (episode VARCHAR, daves_team VARCHAR)"}, {"answer": "SELECT COUNT(daves_team) FROM table_23292220_4 WHERE first_broadcast = \"27 October 2006\"", "question": "How many daves team entries are there on 27 october 2006?", "context": "CREATE TABLE table_23292220_4 (daves_team VARCHAR, first_broadcast VARCHAR)"}, {"answer": "SELECT episode FROM table_23292220_4 WHERE seans_team = \"Ulrika Jonsson and Michael McIntyre\"", "question": "Which episode has ulrika jonsson and michael mcintyre on sean's team?", "context": "CREATE TABLE table_23292220_4 (episode VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT scores FROM table_23292220_4 WHERE seans_team = \"John Barrowman and Vic Reeves\"", "question": "What was the score in the episode with john barrowman and vic reeves on sean's team?", "context": "CREATE TABLE table_23292220_4 (scores VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_23292220_4 WHERE episode = \"4x03\"", "question": "What was the first broadcast date of episode 4x03?", "context": "CREATE TABLE table_23292220_4 (first_broadcast VARCHAR, episode VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_23292220_5 WHERE jasons_team = \"Trisha Goddard and Glenn Wool\"", "question": "Name the first broadcast for trisha goddard and glenn wool", "context": "CREATE TABLE table_23292220_5 (first_broadcast VARCHAR, jasons_team VARCHAR)"}, {"answer": "SELECT COUNT(scores) FROM table_23292220_5 WHERE episode = \"5x06\"", "question": "Name the number of scores for 5x06", "context": "CREATE TABLE table_23292220_5 (scores VARCHAR, episode VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_23292220_17 WHERE seans_team = \"Tina Malone and Joe Wilkinson\"", "question": "Name the first broadcast for tina malone and joe wilkinson", "context": "CREATE TABLE table_23292220_17 (first_broadcast VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT COUNT(jons_team) FROM table_23292220_17 WHERE episode = \"15x10\"", "question": "Name the number of jons team for 15x10", "context": "CREATE TABLE table_23292220_17 (jons_team VARCHAR, episode VARCHAR)"}, {"answer": "SELECT scores FROM table_23292220_17 WHERE seans_team = \"Chris Ramsey and Carol Vorderman\"", "question": "Name the scores for  chris ramsey and carol vorderman", "context": "CREATE TABLE table_23292220_17 (scores VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT COUNT(jons_team) FROM table_23292220_17 WHERE episode = \"15x07\"", "question": "Name the total number of jons team for 15x07", "context": "CREATE TABLE table_23292220_17 (jons_team VARCHAR, episode VARCHAR)"}, {"answer": "SELECT jasons_team FROM table_23292220_6 WHERE episode = \"6x02\"", "question": "Name all of Jason's teams that appeared on episode 6x02?", "context": "CREATE TABLE table_23292220_6 (jasons_team VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_23292220_6 WHERE seans_team = \"Vanessa Feltz and Lee Mack\"", "question": "In how many episodes were Vanessa Feltz and Lee Mack the team for Sean? ", "context": "CREATE TABLE table_23292220_6 (episode VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT episode FROM table_23292220_6 WHERE jasons_team = \"Duncan James and Johnny Vegas\"", "question": "Name the episode(s) that featured Duncan James and Johnny Vegas as Jason's team.", "context": "CREATE TABLE table_23292220_6 (episode VARCHAR, jasons_team VARCHAR)"}, {"answer": "SELECT MAX(sf_round) FROM table_23293785_3 WHERE driver = \"Duncan Tappy\"", "question": "What round does Duncan Tappy drive in?", "context": "CREATE TABLE table_23293785_3 (sf_round INTEGER, driver VARCHAR)"}, {"answer": "SELECT MAX(race_total_pts_) FROM table_23293785_3 WHERE country = \"England\"", "question": "How many racing points did England get?", "context": "CREATE TABLE table_23293785_3 (race_total_pts_ INTEGER, country VARCHAR)"}, {"answer": "SELECT race_2_pts_ FROM table_23293785_3 WHERE race_1_pts_ = 12", "question": "How many are the Race 2 points when Race 1 was 12?", "context": "CREATE TABLE table_23293785_3 (race_2_pts_ VARCHAR, race_1_pts_ VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_23294081_11 WHERE no = 226", "question": "How many millions of people in the US saw the episode number 226?", "context": "CREATE TABLE table_23294081_11 (us_viewers__millions_ VARCHAR, no VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_23294081_11", "question": "What is the highest episode number?", "context": "CREATE TABLE table_23294081_11 (no INTEGER)"}, {"answer": "SELECT performer_1 FROM table_23294081_11 WHERE performer_2 = \"Heather Anne Campbell\" AND _number = 7", "question": "Who was performer 1 in the episode number 7 where Heather Anne Campbell was performer 2?", "context": "CREATE TABLE table_23294081_11 (performer_1 VARCHAR, performer_2 VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_23294081_11 WHERE performer_2 = \"Heather Anne Campbell\" AND us_viewers__millions_ = \"2.99\"", "question": "What's the number of the episode seen by 2.99 millions of people in the US, where performer 2 was Heather Anne Campbell?", "context": "CREATE TABLE table_23294081_11 (_number INTEGER, performer_2 VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT episode FROM table_23292220_7 WHERE seans_team = \"Vic Reeves and Claudia Winkleman\"", "question": "Name the episode for vic reeves and claudia winkleman", "context": "CREATE TABLE table_23292220_7 (episode VARCHAR, seans_team VARCHAR)"}, {"answer": "SELECT COUNT(scores) FROM table_23292220_7 WHERE episode = \"7x05\"", "question": "Name the number of scores for episode 7x05", "context": "CREATE TABLE table_23292220_7 (scores VARCHAR, episode VARCHAR)"}, {"answer": "SELECT seans_team FROM table_23292220_7 WHERE first_broadcast = \"13 November 2008\"", "question": "Name the seans team being 13 november 2008", "context": "CREATE TABLE table_23292220_7 (seans_team VARCHAR, first_broadcast VARCHAR)"}, {"answer": "SELECT COUNT(seans_team) FROM table_23292220_7 WHERE episode = \"7x04\"", "question": "Name the total number of seans team being 7x04", "context": "CREATE TABLE table_23292220_7 (seans_team VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(scores) FROM table_23292220_7 WHERE episode = \"7x10\"", "question": "Name the total number of scores for 7x10", "context": "CREATE TABLE table_23292220_7 (scores VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_23293785_2 WHERE race_total_pts_ = 180", "question": "How many dates have a total points for race of 180?", "context": "CREATE TABLE table_23293785_2 (date VARCHAR, race_total_pts_ VARCHAR)"}, {"answer": "SELECT race_1_pts_ FROM table_23293785_2 WHERE race_total_pts_ = 180", "question": "What is every points value for race 1 if the total race points is 180?", "context": "CREATE TABLE table_23293785_2 (race_1_pts_ VARCHAR, race_total_pts_ VARCHAR)"}, {"answer": "SELECT MIN(race_total_pts_) FROM table_23293785_2 WHERE country = \"Belgium\"", "question": "What is the lowest number of total race points for the country of Belgium?", "context": "CREATE TABLE table_23293785_2 (race_total_pts_ INTEGER, country VARCHAR)"}, {"answer": "SELECT driver FROM table_23293785_2 WHERE location = \"Estoril Circuit\"", "question": "Who is every driver for the location of Estoril Circuit?", "context": "CREATE TABLE table_23293785_2 (driver VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(sf_round) FROM table_23293785_2 WHERE country = \"England\"", "question": "What is the highest value for SF round for the country of England?", "context": "CREATE TABLE table_23293785_2 (sf_round INTEGER, country VARCHAR)"}, {"answer": "SELECT surface FROM table_23297_3 WHERE year = 2001", "question": "What is the surface for the year 2001?", "context": "CREATE TABLE table_23297_3 (surface VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_23308178_4 WHERE date = \"October 29\"", "question": "What was the score on October 29?", "context": "CREATE TABLE table_23308178_4 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_23308178_4 WHERE record = \"3-2-2\"", "question": "How many opponents were there with the record of 3-2-2?", "context": "CREATE TABLE table_23308178_4 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_23308178_4 WHERE date = \"October 17\"", "question": "What was the record on October 17?", "context": "CREATE TABLE table_23308178_4 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_23308178_4 WHERE opponent = \"New York Rangers\"", "question": "What date did they play agains the New York Rangers?", "context": "CREATE TABLE table_23308178_4 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_23308178_4 WHERE date = \"October 27\"", "question": "How many points were there scored on October 27?", "context": "CREATE TABLE table_23308178_4 (points INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_23308178_5 WHERE record = \"10-3-4\"", "question": "How many different scores are there for the game with 10-3-4 record?", "context": "CREATE TABLE table_23308178_5 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_23308178_5 WHERE record = \"13-5-6\"", "question": "When was the game with 13-5-6 record played?", "context": "CREATE TABLE table_23308178_5 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_23308178_5", "question": "What's the minimal number of points scored in any game?", "context": "CREATE TABLE table_23308178_5 (points INTEGER)"}, {"answer": "SELECT COUNT(game) FROM table_23308178_5 WHERE opponent = \"Florida Panthers\" AND location = \"Verizon Center\"", "question": "How many different games against Florida Panthers were played in Verizon Center?", "context": "CREATE TABLE table_23308178_5 (game VARCHAR, opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT record FROM table_23308178_5 WHERE date = \"November 7\"", "question": "What was the record in the November 7 game?", "context": "CREATE TABLE table_23308178_5 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_23308178_9 WHERE record = \"49-15-11\"", "question": "How many times was there a record of 49-15-11?", "context": "CREATE TABLE table_23308178_9 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_23308178_9 WHERE date = \"March 6\"", "question": "How many scores had a date of March 6?", "context": "CREATE TABLE table_23308178_9 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_23314951_4 WHERE date = \"7-21-2006\"", "question": "If the date is 7-21-2006, who was the opponent?", "context": "CREATE TABLE table_23314951_4 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT against FROM table_23314951_4 WHERE opponent = \"Kristian Pless\"", "question": "If the opponent is Kristian Pless, who was it against?", "context": "CREATE TABLE table_23314951_4 (against VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT winning_team FROM table_23315271_2 WHERE winning_driver = \"Max Busnelli\"", "question": "Who is the winning team when max busnelli is the winning driver?", "context": "CREATE TABLE table_23315271_2 (winning_team VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT location FROM table_23315271_2 WHERE circuit = \"ACI Vallelunga circuit\"", "question": "In which location is aci vallelunga circuit?", "context": "CREATE TABLE table_23315271_2 (location VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT pole_position FROM table_23315271_2 WHERE circuit = \"Misano World circuit\"", "question": "Who held the pole position in misano world circuit?", "context": "CREATE TABLE table_23315271_2 (pole_position VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT score FROM table_23308178_7 WHERE opponent = \"Detroit Red Wings\"", "question": "List the results for all games which involved the detroit red wings.", "context": "CREATE TABLE table_23308178_7 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_23308178_7 WHERE record = \"28-12-6\"", "question": "Calculate the highest points where the win,loss, tie ratio is  28-12-6", "context": "CREATE TABLE table_23308178_7 (points INTEGER, record VARCHAR)"}, {"answer": "SELECT record FROM table_23308178_7 WHERE opponent = \"Montreal Canadiens\"", "question": "what are the previous performance details for games involving the montreal canadiens?", "context": "CREATE TABLE table_23308178_7 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT year FROM table_2331549_1 WHERE third_place = \"Michigan State University\"", "question": "Which years did Michigan state university come in third place?", "context": "CREATE TABLE table_2331549_1 (year VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT champion FROM table_2331549_1 WHERE third_place = \"Michigan Technological University\"", "question": "Who were the champions in years where michigan technological university was in third place?", "context": "CREATE TABLE table_2331549_1 (champion VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT host_city FROM table_2331549_1 WHERE host_school = \"\u00c9cole de technologie sup\u00e9rieure\"", "question": "What was the host city in years where the host school was \u00e9cole de technologie sup\u00e9rieure?", "context": "CREATE TABLE table_2331549_1 (host_city VARCHAR, host_school VARCHAR)"}, {"answer": "SELECT second_place FROM table_2331549_1 WHERE champion = \"South Dakota School of Mines & Technology\"", "question": "Who came in second place when the champion was south dakota school of mines & technology?", "context": "CREATE TABLE table_2331549_1 (second_place VARCHAR, champion VARCHAR)"}, {"answer": "SELECT COUNT(innings) FROM table_23316034_16 WHERE average = \"45.65\"", "question": "If the average is 45.65, what is the total number of innings?", "context": "CREATE TABLE table_23316034_16 (innings VARCHAR, average VARCHAR)"}, {"answer": "SELECT player FROM table_23316034_16 WHERE innings = 82", "question": "What is the name of the player if the innings is 82?", "context": "CREATE TABLE table_23316034_16 (player VARCHAR, innings VARCHAR)"}, {"answer": "SELECT average FROM table_23316034_16 WHERE innings = 68", "question": "If the innings is 68, what is the average?", "context": "CREATE TABLE table_23316034_16 (average VARCHAR, innings VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_23316034_16 WHERE runs = 5028", "question": "If the runs is 5028, what is the matches maximum?", "context": "CREATE TABLE table_23316034_16 (matches INTEGER, runs VARCHAR)"}, {"answer": "SELECT MIN(dismissals) FROM table_23316034_23 WHERE player = \"Sammy Carter\"", "question": "Name the least dismissals for sammy carter", "context": "CREATE TABLE table_23316034_23 (dismissals INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(dismissals) FROM table_23316034_23 WHERE player = \"Adam Gilchrist\"", "question": "Name the number of dismissals for adam gilchrist", "context": "CREATE TABLE table_23316034_23 (dismissals VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(dismissals) FROM table_23316034_23 WHERE rank = 4", "question": "Name the least dismissals for 4 rank", "context": "CREATE TABLE table_23316034_23 (dismissals INTEGER, rank VARCHAR)"}, {"answer": "SELECT top_10 FROM table_2333416_2 WHERE winnings = \"$17,695\"", "question": "How many top 10 finishes did Ken Bouchard get in the year he won $17,695?", "context": "CREATE TABLE table_2333416_2 (top_10 VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT year FROM table_2333416_2 WHERE position = \"78th\"", "question": "What year did Ken Bouchard finish in 78th place?", "context": "CREATE TABLE table_2333416_2 (year VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_2333416_2 WHERE position = \"38th\"", "question": "How many seasons did Ken Bouchard finish in 38th place?", "context": "CREATE TABLE table_2333416_2 (year VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_2333416_2", "question": "What is the greatest number of wins Ken Bouchard had in a season?", "context": "CREATE TABLE table_2333416_2 (wins INTEGER)"}, {"answer": "SELECT COUNT(races) FROM table_23338693_1 WHERE season = 2012 AND podiums = 0", "question": "How many races in 2012 season have 0 podiums?", "context": "CREATE TABLE table_23338693_1 (races VARCHAR, season VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_23338693_1 WHERE team = \"Motopark\"", "question": "How many seasons have motopark team?", "context": "CREATE TABLE table_23338693_1 (season VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_23338693_1 WHERE position = \"NC\" AND season = 2010", "question": "Which team has nc position for 2010 season?", "context": "CREATE TABLE table_23338693_1 (team VARCHAR, position VARCHAR, season VARCHAR)"}, {"answer": "SELECT points FROM table_23338693_1 WHERE series = \"British Formula Renault 2.0 Winter Cup\" AND f_laps = 0", "question": "How many points have a series of british formula renault 2.0 winter cup and f/laps of 0?", "context": "CREATE TABLE table_23338693_1 (points VARCHAR, series VARCHAR, f_laps VARCHAR)"}, {"answer": "SELECT MAX(minutes) FROM table_23346303_5 WHERE rebounds = 0", "question": "If the amount of rebounds is 0, what is the maximum minutes?", "context": "CREATE TABLE table_23346303_5 (minutes INTEGER, rebounds VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_23346303_5 WHERE assists = 7", "question": "What is the points total number if the assists is 7?", "context": "CREATE TABLE table_23346303_5 (points VARCHAR, assists VARCHAR)"}, {"answer": "SELECT player FROM table_23346303_5 WHERE field_goals = 26", "question": "If the field goals is 26, what are the players names?", "context": "CREATE TABLE table_23346303_5 (player VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT MIN(steals) FROM table_23346303_5 WHERE player = \"Jasmine Wynne\"", "question": "If the player is Jasmine Wynne, what is the minimum number of steals?", "context": "CREATE TABLE table_23346303_5 (steals INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(blocks) FROM table_23346303_5 WHERE points = 4", "question": "What is the blocks total number if the points is 4?", "context": "CREATE TABLE table_23346303_5 (blocks VARCHAR, points VARCHAR)"}, {"answer": "SELECT steals FROM table_23346303_4 WHERE player = \"Jasmine Wynne\"", "question": "How many steals did jasmine wynne have?", "context": "CREATE TABLE table_23346303_4 (steals VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(games_played) FROM table_23346303_4 WHERE player = \"Janae Stokes\"", "question": "How many games did janae stokes play?", "context": "CREATE TABLE table_23346303_4 (games_played INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(rebounds) FROM table_23346303_4 WHERE player = \"Crystal Ayers\"", "question": "How many rebounds did crystal ayers have?", "context": "CREATE TABLE table_23346303_4 (rebounds VARCHAR, player VARCHAR)"}, {"answer": "SELECT record FROM table_23346983_1 WHERE game = 3", "question": "What was the Orangemen record during game 3?", "context": "CREATE TABLE table_23346983_1 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_23346983_1 WHERE opponent = \"Army\"", "question": "What was the record for the Orangemen when they played against Army?", "context": "CREATE TABLE table_23346983_1 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(orangemen_points) FROM table_23346983_1 WHERE game = 1", "question": "How many points did the Orangemen score in game 1?", "context": "CREATE TABLE table_23346983_1 (orangemen_points INTEGER, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_23346983_1 WHERE record = \"5-1\"", "question": "Who did the Orangemen play against when their record was 5-1?", "context": "CREATE TABLE table_23346983_1 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_23379776_6 WHERE year = 2007", "question": "Name the location for 2007", "context": "CREATE TABLE table_23379776_6 (location VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(mir_hossein_mousavi) FROM table_23390604_1 WHERE mohsen_rezaee = 44809", "question": "Display the lowest score for candidate Mir-Hossein Mousavi when candidate Mohsen Rezaee scored 44809 votes", "context": "CREATE TABLE table_23390604_1 (mir_hossein_mousavi INTEGER, mohsen_rezaee VARCHAR)"}, {"answer": "SELECT MAX(mohsen_rezaee) FROM table_23390604_1 WHERE mir_hossein_mousavi = 837858", "question": "What is the highest score for candidate Mohsen Rezaee when  candidate mir-hossein mousavi  scored 837858 votes?", "context": "CREATE TABLE table_23390604_1 (mohsen_rezaee INTEGER, mir_hossein_mousavi VARCHAR)"}, {"answer": "SELECT total_votes FROM table_23390604_1 WHERE spoiled_ballots = 3072", "question": "List all the total scores for the election which had 3072 invalid votes", "context": "CREATE TABLE table_23390604_1 (total_votes VARCHAR, spoiled_ballots VARCHAR)"}, {"answer": "SELECT MAX(mir_hossein_mousavi) FROM table_23390604_1 WHERE province = \"Azarbaijan, West\"", "question": "What was the highest score of candidate mir-hossein mousavi in the location known as azarbaijan, west?", "context": "CREATE TABLE table_23390604_1 (mir_hossein_mousavi INTEGER, province VARCHAR)"}, {"answer": "SELECT mahmoud_ahmadinejad FROM table_23390604_1 WHERE mir_hossein_mousavi = 218481", "question": "List all the results for mahmoud ahmadinejad when candidate mir-hossein mousavi obtained 218481 votes.", "context": "CREATE TABLE table_23390604_1 (mahmoud_ahmadinejad VARCHAR, mir_hossein_mousavi VARCHAR)"}, {"answer": "SELECT MAX(mir_hossein_mousavi) FROM table_23390604_1 WHERE spoiled_ballots = 5683", "question": "What was the highest number of votes for mir-hossein mousavi when the number of invalid votes is 5683", "context": "CREATE TABLE table_23390604_1 (mir_hossein_mousavi INTEGER, spoiled_ballots VARCHAR)"}, {"answer": "SELECT surface FROM table_23385853_1 WHERE round = 8", "question": "Name surface for 8 round", "context": "CREATE TABLE table_23385853_1 (surface VARCHAR, round VARCHAR)"}, {"answer": "SELECT rally_base FROM table_23385853_1 WHERE round = 5", "question": "Name the rally base for 5 round", "context": "CREATE TABLE table_23385853_1 (rally_base VARCHAR, round VARCHAR)"}, {"answer": "SELECT rally_base FROM table_23385853_1 WHERE rally_name = \"Rallye de France Alsace\"", "question": "Name the rally base for rallye de france alsace", "context": "CREATE TABLE table_23385853_1 (rally_base VARCHAR, rally_name VARCHAR)"}, {"answer": "SELECT MAX(pos) FROM table_23385853_19 WHERE points = 2", "question": "What is the lowest position for a driver with 2 points?", "context": "CREATE TABLE table_23385853_19 (pos INTEGER, points VARCHAR)"}, {"answer": "SELECT driver FROM table_23385853_19 WHERE stage_wins = 65", "question": "What driver(s) had over 65 stag wins?", "context": "CREATE TABLE table_23385853_19 (driver VARCHAR, stage_wins VARCHAR)"}, {"answer": "SELECT COUNT(power_stage_wins) FROM table_23385853_20 WHERE wins = 10", "question": "What is the power stage wins total number if the wins is 10?", "context": "CREATE TABLE table_23385853_20 (power_stage_wins VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(pos) FROM table_23385853_20 WHERE finishes = 10", "question": "If finishes is 10, what is the POS minimum?", "context": "CREATE TABLE table_23385853_20 (pos INTEGER, finishes VARCHAR)"}, {"answer": "SELECT MAX(finishes) FROM table_23385853_20", "question": "What is the finishes maximum number?", "context": "CREATE TABLE table_23385853_20 (finishes INTEGER)"}, {"answer": "SELECT branding FROM table_23394920_1 WHERE power_kw = \"5kW\" AND station_type = \"Relay\"", "question": "When relay is the station type and 5kw is the power kw what is the branding?", "context": "CREATE TABLE table_23394920_1 (branding VARCHAR, power_kw VARCHAR, station_type VARCHAR)"}, {"answer": "SELECT power_kw FROM table_23394920_1 WHERE callsign = \"DXRT-TV\"", "question": "When dxrt-tv is the callsign what is the power kw?", "context": "CREATE TABLE table_23394920_1 (power_kw VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT power_kw FROM table_23394920_1 WHERE callsign = \"DXZB-TV\"", "question": "When dxzb-tv is the call sign what is the power kw?", "context": "CREATE TABLE table_23394920_1 (power_kw VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT COUNT(station_type) FROM table_23394920_1 WHERE callsign = \"DXCC-TV\"", "question": "When dxcc-tv is the call sign how many station types are there?", "context": "CREATE TABLE table_23394920_1 (station_type VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT COUNT(station_type) FROM table_23394920_1 WHERE callsign = \"DWHR-TV\"", "question": "When dwhr-tv is the call sign how many station types are there?", "context": "CREATE TABLE table_23394920_1 (station_type VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT COUNT(original_airdate) FROM table_23392257_4 WHERE _number = 22", "question": "What date did Episode 22 originally air?", "context": "CREATE TABLE table_23392257_4 (original_airdate VARCHAR, _number VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_23392257_4 WHERE viewers__millions_ = \"0.680\"", "question": "What episode premier received 0.680 million viewers?", "context": "CREATE TABLE table_23392257_4 (original_airdate VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT timeslot FROM table_23392257_4 WHERE viewers__millions_ = \"0.673\"", "question": "What timeslot received 0.673 viewers?", "context": "CREATE TABLE table_23392257_4 (timeslot VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23399481_2 WHERE directed_by = \"David Paymer\"", "question": "What is the original air date of the episode that was directed by David Paymer?", "context": "CREATE TABLE table_23399481_2 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_23399481_2 WHERE us_viewers__in_millions_ = \"2.14\"", "question": "If the amount of U.S. viewers is 2.14 million, who was the episode directed by?", "context": "CREATE TABLE table_23399481_2 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_23399481_2 WHERE us_viewers__in_millions_ = \"2.05\"", "question": "If the amount of U.S. viewers is 2.05 milliom, who was the episode directed by?", "context": "CREATE TABLE table_23399481_2 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_23399481_2 WHERE us_viewers__in_millions_ = \"2.22\"", "question": "What is the director name is the U.S. viewers is 2.22 million?", "context": "CREATE TABLE table_23399481_2 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT viewers__millions_ FROM table_23397386_2 WHERE rating / SHARE(18 AS \u201349) = 2.6 / 7", "question": "How many million viewers watched the episode that had a 2.6/7 rating/share (18-49)", "context": "CREATE TABLE table_23397386_2 (viewers__millions_ VARCHAR, rating VARCHAR)"}, {"answer": "SELECT viewers__millions_ FROM table_23397386_2 WHERE airdate = \"March 28, 2010\"", "question": "How many million viewers watched the episode that aired on March 28, 2010?", "context": "CREATE TABLE table_23397386_2 (viewers__millions_ VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT COUNT(rank__timeslot_) FROM table_23397386_2 WHERE airdate = \"May 2, 2010\"", "question": "How many rankings (timeslot) were there for the episode that aired on May 2, 2010?", "context": "CREATE TABLE table_23397386_2 (rank__timeslot_ VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT series__number FROM table_23399481_3 WHERE us_viewers__in_millions_ = \"1.42\"", "question": "What episode had 1.42 million viewers?", "context": "CREATE TABLE table_23399481_3 (series__number VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23399481_3 WHERE season__number = 4", "question": "What is the original air date for episode 4? ", "context": "CREATE TABLE table_23399481_3 (original_air_date VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT team FROM table_23391714_1 WHERE chassis_engine = \"Lola T92/00/ Buick\"", "question": "Which team uses lola t92/00/ buick for their chassis/engine?", "context": "CREATE TABLE table_23391714_1 (team VARCHAR, chassis_engine VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_23391714_1 WHERE pos = 18", "question": "When the pos equals 18 what is the max amount of points?", "context": "CREATE TABLE table_23391714_1 (points INTEGER, pos VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_23391714_1 WHERE chassis_engine = \"Lola T92/00/ Buick\"", "question": "How many drivers  used lola t92/00/ buick for their chassis/engine?", "context": "CREATE TABLE table_23391714_1 (no VARCHAR, chassis_engine VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_23403578_3 WHERE written_by = \"Bernie Ancheta\" AND no_in_season = 5", "question": "What's the series number of the episode with a season number 5, written by Bernie Ancheta?", "context": "CREATE TABLE table_23403578_3 (no_in_series INTEGER, written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23403578_3 WHERE prod_code = \"213\"", "question": "When did the episode with production code 213 air for the first time?", "context": "CREATE TABLE table_23403578_3 (original_air_date VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_23403578_3 WHERE prod_code = \"208\"", "question": "Who directed the episode with production code 208?", "context": "CREATE TABLE table_23403578_3 (directed_by VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT COUNT(24 AS _mountains) FROM table_23406517_2 WHERE bearing___degrees = \"67.6 - 82.5 82.6 - 97.5 97.6 - 112.5\"", "question": "How many values for 24 mountains when the bearing or degrees is 67.6 - 82.5 82.6 - 97.5 97.6 - 112.5?", "context": "CREATE TABLE table_23406517_2 (bearing___degrees VARCHAR)"}, {"answer": "SELECT trigram FROM table_23406517_2 WHERE direction = \"Northwest\"", "question": "What is every trigram when direction is Northwest?", "context": "CREATE TABLE table_23406517_2 (trigram VARCHAR, direction VARCHAR)"}, {"answer": "SELECT 24 AS _mountains FROM table_23406517_2 WHERE direction = \"Northeast\"", "question": "What are all values for 24 mountains when direction is Northeast?", "context": "CREATE TABLE table_23406517_2 (direction VARCHAR)"}, {"answer": "SELECT total_career_titles FROM table_23408094_14 WHERE player = \"Roy Emerson\"", "question": "How many career titles does roy emerson have?", "context": "CREATE TABLE table_23408094_14 (total_career_titles VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(total_career_titles) FROM table_23408094_14 WHERE span_of_years_led = 5", "question": "What were the total career titles of the player who led for 5 years?", "context": "CREATE TABLE table_23408094_14 (total_career_titles VARCHAR, span_of_years_led VARCHAR)"}, {"answer": "SELECT MIN(span_of_years_led) FROM table_23408094_14 WHERE tournament_at_which_lead_began = \"Australian Championships\"", "question": "Of the players whose lead began at the australian championships, what was the shortest span of years led?", "context": "CREATE TABLE table_23408094_14 (span_of_years_led INTEGER, tournament_at_which_lead_began VARCHAR)"}, {"answer": "SELECT tournament_at_which_lead_began FROM table_23408094_14 WHERE player = \"William Renshaw\" AND titles_won_at_point_of_lead = 7", "question": "At which tournament did william renshaw begin his lead when he had won 7 titles?", "context": "CREATE TABLE table_23408094_14 (tournament_at_which_lead_began VARCHAR, player VARCHAR, titles_won_at_point_of_lead VARCHAR)"}, {"answer": "SELECT tournament_at_which_lead_began FROM table_23408094_14 WHERE player = \"Pete Sampras\"", "question": "At what tournament did pete sampras begin his lead?", "context": "CREATE TABLE table_23408094_14 (tournament_at_which_lead_began VARCHAR, player VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2342078_2 WHERE written_by = \"Sherwood Schwartz\"", "question": "Who are all directors when Sherwood Schwartz is the writer?", "context": "CREATE TABLE table_2342078_2 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(episode__number) FROM table_2342078_2 WHERE written_by = \"Paul West\"", "question": "What is the highest episode# with the writer Paul West?", "context": "CREATE TABLE table_2342078_2 (episode__number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT production_code__order_they_were_made___number FROM table_2342078_2 WHERE episode__number = 13", "question": "What is every production code for episode # 13?", "context": "CREATE TABLE table_2342078_2 (production_code__order_they_were_made___number VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT MAX(episode__number) FROM table_2342078_4 WHERE written_by = \"Harry Winkler\"", "question": "What is the highest episode number written by Harry Winkler?", "context": "CREATE TABLE table_2342078_4 (episode__number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2342078_4 WHERE written_by = \"Brad Radnitz\"", "question": "List all directors when Brad Radnitz was the writer?", "context": "CREATE TABLE table_2342078_4 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_2342078_6 WHERE written_by = \"Howard Ostroff\"", "question": "Name the airdate for the episode written by howard ostroff", "context": "CREATE TABLE table_2342078_6 (original_airdate VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(production_code__number) FROM table_2342078_6 WHERE episode__number = 109", "question": "Name the production code # for episode 109", "context": "CREATE TABLE table_2342078_6 (production_code__number VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2342078_6 WHERE written_by = \"George Tibbles\"", "question": "Name who drected the episode written by george tibbles", "context": "CREATE TABLE table_2342078_6 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_2342078_5 WHERE written_by = \"Harry Winkler\"", "question": "What's the title of the episode written by Harry Winkler?", "context": "CREATE TABLE table_2342078_5 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT act FROM table_23429629_4 WHERE place_came = \"1st Place (Won the Series)\"", "question": "During the 1st Place (Won the Series), who was the act?", "context": "CREATE TABLE table_23429629_4 (act VARCHAR, place_came VARCHAR)"}, {"answer": "SELECT semi_final FROM table_23429629_4 WHERE act = \"Playing on Glasses\"", "question": "During the act, Playing on Glasses, what was the semi-final?", "context": "CREATE TABLE table_23429629_4 (semi_final VARCHAR, act VARCHAR)"}, {"answer": "SELECT place_came FROM table_23429629_4 WHERE artist = \"Erlend Bratland\"", "question": "What was the final place came for the performance of Erlend Bratland?", "context": "CREATE TABLE table_23429629_4 (place_came VARCHAR, artist VARCHAR)"}, {"answer": "SELECT deaths_per_year FROM table_23423_2 WHERE life_expectancy_females = \"66.3\"", "question": "How many deaths per year have 66.3 as the life expectancy females?", "context": "CREATE TABLE table_23423_2 (deaths_per_year VARCHAR, life_expectancy_females VARCHAR)"}, {"answer": "SELECT leagues_entering_at_this_round FROM table_23449363_1 WHERE winners_from_previous_round = \"16\"", "question": "Which leagues entered in rounds where there were 16 winners from the previous round?", "context": "CREATE TABLE table_23449363_1 (leagues_entering_at_this_round VARCHAR, winners_from_previous_round VARCHAR)"}, {"answer": "SELECT round FROM table_23449363_1 WHERE clubs_involved = 32", "question": "Which rounds had 32 clubs involved?", "context": "CREATE TABLE table_23449363_1 (round VARCHAR, clubs_involved VARCHAR)"}, {"answer": "SELECT round FROM table_23449363_1 WHERE new_entries_this_round = \"24\"", "question": "Which round had 24 new entries?", "context": "CREATE TABLE table_23449363_1 (round VARCHAR, new_entries_this_round VARCHAR)"}, {"answer": "SELECT leagues_entering_at_this_round FROM table_23449363_1 WHERE round = \"Extra Preliminary round\"", "question": "Which leagues entered an extra preliminary round?", "context": "CREATE TABLE table_23449363_1 (leagues_entering_at_this_round VARCHAR, round VARCHAR)"}, {"answer": "SELECT location FROM table_23453931_5 WHERE opponent = \"Buffalo Sabres\"", "question": "Name the location of buffalo sabres", "context": "CREATE TABLE table_23453931_5 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game FROM table_23453931_5 WHERE record = \"13\u201317\u20139\"", "question": "Name the game for 13\u201317\u20139", "context": "CREATE TABLE table_23453931_5 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_23453931_5 WHERE date = \"December 19\"", "question": "Name the score for december 19", "context": "CREATE TABLE table_23453931_5 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_23453931_5 WHERE opponent = \"New York Islanders\"", "question": "Name the date for new york islanders", "context": "CREATE TABLE table_23453931_5 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_23453931_5 WHERE date = \"December 3\"", "question": "Name the opponents for december 3", "context": "CREATE TABLE table_23453931_5 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_23453931_8 WHERE opponent = \"Carolina Hurricanes\"", "question": "How many games did they play the carolina hurricanes?", "context": "CREATE TABLE table_23453931_8 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_23453931_8 WHERE points = 62", "question": "What was the score when they had 62 points?", "context": "CREATE TABLE table_23453931_8 (score VARCHAR, points VARCHAR)"}, {"answer": "SELECT opponent FROM table_23453931_4 WHERE points = 9", "question": "What team did the Maple Leafs score 9 points against?", "context": "CREATE TABLE table_23453931_4 (opponent VARCHAR, points VARCHAR)"}, {"answer": "SELECT sat_29_aug FROM table_23465864_4 WHERE tues_25_aug = \"23' 18.82 97.102mph\"", "question": "What time was achieved on Saturday 29th August by the rider who recorded 23' 18.82 97.102mph on Tuesday 25th August?", "context": "CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, tues_25_aug VARCHAR)"}, {"answer": "SELECT sat_29_aug FROM table_23465864_4 WHERE mon_24_aug = \"24' 17.26 93.208mph\"", "question": "What time was achieved on Saturday 29th August by the rider who recorded 24' 17.26 93.208mph on Monday 24th August?", "context": "CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, mon_24_aug VARCHAR)"}, {"answer": "SELECT sat_29_aug FROM table_23465864_4 WHERE tues_25_aug = \"22' 54.20 98.842mph\"", "question": "What time was achieved on Saturday 29th August by the rider who recorded 22' 54.20 98.842mph on Tuesday 25th August?", "context": "CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, tues_25_aug VARCHAR)"}, {"answer": "SELECT sat_29_aug FROM table_23465864_4 WHERE fri_28_aug = \"25' 01.89 90.438mph\"", "question": "What time was achieved on Saturday 29th August by the rider who recorded 25' 01.89 90.438mph on Friday 28th August?", "context": "CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, fri_28_aug VARCHAR)"}, {"answer": "SELECT wed_26_aug FROM table_23465864_6 WHERE rider = \"Andrew Farrell 400cc Kawasaki\"", "question": "What was the event on Wed 26 Aug where rider is Andrew Farrell 400cc Kawasaki?", "context": "CREATE TABLE table_23465864_6 (wed_26_aug VARCHAR, rider VARCHAR)"}, {"answer": "SELECT thurs_27_aug FROM table_23465864_6 WHERE tues_25_aug = \"23' 00.59 98.384mph\"", "question": "What was the event on Thurs 27 Aug when Tues 25 Aug was 23' 00.59 98.384mph?", "context": "CREATE TABLE table_23465864_6 (thurs_27_aug VARCHAR, tues_25_aug VARCHAR)"}, {"answer": "SELECT tues_25_aug FROM table_23465864_6 WHERE mon_24_aug = \"22' 24.56 101.021mph\"", "question": "What was the Tues 25 Aug time and speed when Mon 24 Aug was 22' 24.56 101.021mph?", "context": "CREATE TABLE table_23465864_6 (tues_25_aug VARCHAR, mon_24_aug VARCHAR)"}, {"answer": "SELECT rider FROM table_23465864_6 WHERE fri_28_aug = \"24' 23.36 92.820mph\"", "question": "Who was the rider when Fri 28 Aug was 24' 23.36 92.820mph?", "context": "CREATE TABLE table_23465864_6 (rider VARCHAR, fri_28_aug VARCHAR)"}, {"answer": "SELECT opponent FROM table_23466021_4 WHERE attendance = 32194", "question": "Which opponent has 32194 as the attendance?", "context": "CREATE TABLE table_23466021_4 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_23466021_4 WHERE attendance = 36102", "question": "Which opponent has 36102 is the attendance?", "context": "CREATE TABLE table_23466021_4 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_23466021_4", "question": "What is the attendance?", "context": "CREATE TABLE table_23466021_4 (attendance INTEGER)"}, {"answer": "SELECT hometown FROM table_23476629_2 WHERE province = \"Huesca\"", "question": "What is the hometown of contestants who are from the province of Huesca?", "context": "CREATE TABLE table_23476629_2 (hometown VARCHAR, province VARCHAR)"}, {"answer": "SELECT height__in_ FROM table_23476629_2 WHERE province = \"La Rioja\"", "question": "What is the height in inches of contestants who are from the province of La Rioja?", "context": "CREATE TABLE table_23476629_2 (height__in_ VARCHAR, province VARCHAR)"}, {"answer": "SELECT COUNT(age) FROM table_23476629_2 WHERE hometown = \"Andujar\"", "question": "How many contestants of whatever age are there whose hometown of Andujar?", "context": "CREATE TABLE table_23476629_2 (age VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT MAX(service) FROM table_23477312_1 WHERE train_name = \"Jammu Duronto\"", "question": "What's the service number of the Jammu Duronto train? ", "context": "CREATE TABLE table_23477312_1 (service INTEGER, train_name VARCHAR)"}, {"answer": "SELECT train_name FROM table_23477312_1 WHERE destination = \"Madurai Junction\"", "question": "What's the name of the train to Madurai Junction?", "context": "CREATE TABLE table_23477312_1 (train_name VARCHAR, destination VARCHAR)"}, {"answer": "SELECT service FROM table_23477312_1 WHERE train_name = \"Pune Duronto\" AND departure = \"21:35\"", "question": "What's the service number of the Pune Duronto train that departures at 21:35?", "context": "CREATE TABLE table_23477312_1 (service VARCHAR, train_name VARCHAR, departure VARCHAR)"}, {"answer": "SELECT train_name FROM table_23477312_1 WHERE destination = \"Bhubaneswar\"", "question": "What's the name of the train that goes to Bhubaneswar?", "context": "CREATE TABLE table_23477312_1 (train_name VARCHAR, destination VARCHAR)"}, {"answer": "SELECT record FROM table_23486853_6 WHERE opponent = \"Pittsburgh Penguins\"", "question": "What is the record when the opposing team was the Pittsburgh Penguins?", "context": "CREATE TABLE table_23486853_6 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_23486853_6 WHERE opponent = \"Buffalo Sabres\"", "question": "What was the game number when the opposing team was the Buffalo Sabres?", "context": "CREATE TABLE table_23486853_6 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT directed_by FROM table_234886_3 WHERE no_in_series = 44", "question": "Who directed episode no. 44 in the series?", "context": "CREATE TABLE table_234886_3 (directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_234886_3 WHERE prod_code = \"2-05\"", "question": "What is the number in the season of the episode with a production code of 2-05?", "context": "CREATE TABLE table_234886_3 (no_in_season VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT title FROM table_234886_3 WHERE prod_code = \"2-19\"", "question": "What is the title of the episode with the production code 2-19?", "context": "CREATE TABLE table_234886_3 (title VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_234886_3 WHERE no_in_series = 29", "question": "What is the total number of titles for the episode numbered 29 in the series?", "context": "CREATE TABLE table_234886_3 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT title FROM table_23492454_1 WHERE directed_by = \"Jessica Yu\"", "question": "What was the name of the episode directed by Jessica Yu?", "context": "CREATE TABLE table_23492454_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_23492454_1 WHERE written_by = \"Shonda Rhimes\"", "question": "who directed the episode written by Shonda Rhimes?", "context": "CREATE TABLE table_23492454_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_23492454_1 WHERE no_in_season = 18", "question": "How many episodes in the series are also episode 18 in the season?", "context": "CREATE TABLE table_23492454_1 (no_in_series VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT opponent FROM table_23486853_8 WHERE date = \"March 16\"", "question": "Who is every opponent on the date of March 16?", "context": "CREATE TABLE table_23486853_8 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_23486853_8 WHERE opponent = \"Atlanta Thrashers\"", "question": "What is every score for the opponent of Atlanta Thrashers?", "context": "CREATE TABLE table_23486853_8 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_23486853_8 WHERE date = \"March 20\"", "question": "What is every location for the date of March 20?", "context": "CREATE TABLE table_23486853_8 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_23486853_8 WHERE location = \"Verizon Center\" AND points = 68", "question": "What is every score at the location of Verizon Center and points of 68?", "context": "CREATE TABLE table_23486853_8 (score VARCHAR, location VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_23486853_8 WHERE record = \"30\u201334\u201312\"", "question": "What is every date with a record of 30\u201334\u201312?", "context": "CREATE TABLE table_23486853_8 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(officers_o_s) FROM table_23508196_2 WHERE total_usaaf = 2373882", "question": "How many officers o/s were there on the day when the number of USAAF was 2373882?", "context": "CREATE TABLE table_23508196_2 (officers_o_s INTEGER, total_usaaf VARCHAR)"}, {"answer": "SELECT COUNT(tot_enlisted) FROM table_23508196_2 WHERE enlisted_o_s = 801471", "question": "How many different numbers of Tot enlisted are there on the dates when the number of Enlisted o/s was 801471?", "context": "CREATE TABLE table_23508196_2 (tot_enlisted VARCHAR, enlisted_o_s VARCHAR)"}, {"answer": "SELECT tot_officers FROM table_23508196_2 WHERE tot_enlisted = 329640", "question": "How many tot officers were there on the date when the number of tot enlisted was 329640?", "context": "CREATE TABLE table_23508196_2 (tot_officers VARCHAR, tot_enlisted VARCHAR)"}, {"answer": "SELECT MAX(tot_enlisted) FROM table_23508196_2 WHERE total_usaaf = 2329534", "question": "How many Tot enlisted were there on the day when the number of total USAAF was 2329534?", "context": "CREATE TABLE table_23508196_2 (tot_enlisted INTEGER, total_usaaf VARCHAR)"}, {"answer": "SELECT COUNT(age) FROM table_23495048_2 WHERE represent = \"Mitteldeutschland\"", "question": "How many contestants where from mitteldeutschland?", "context": "CREATE TABLE table_23495048_2 (age VARCHAR, represent VARCHAR)"}, {"answer": "SELECT height__mtr_ FROM table_23495048_2 WHERE contestant = \"Ulrike Wolful\"", "question": "How many meters tall is Ulrike Wolful?", "context": "CREATE TABLE table_23495048_2 (height__mtr_ VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT represent FROM table_23495048_2 WHERE height__mtr_ = \"1.76\"", "question": "Which country had a contestant that was 1.76 meters tall?", "context": "CREATE TABLE table_23495048_2 (represent VARCHAR, height__mtr_ VARCHAR)"}, {"answer": "SELECT represent FROM table_23495048_2 WHERE height__mtr_ = \"1.70\"", "question": "What country had a contestant that was 1.70 meters tall?", "context": "CREATE TABLE table_23495048_2 (represent VARCHAR, height__mtr_ VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_23501776_18 WHERE seed = 2", "question": "If seed number is 2, what is the maximum amount of points?", "context": "CREATE TABLE table_23501776_18 (points INTEGER, seed VARCHAR)"}, {"answer": "SELECT status FROM table_23501776_18 WHERE new_points = 1720", "question": "If new points is 1720, what is the status?", "context": "CREATE TABLE table_23501776_18 (status VARCHAR, new_points VARCHAR)"}, {"answer": "SELECT winning_party_coalition FROM table_23512864_4 WHERE election_year = 1980", "question": "Who is the winning party/coalition name in election year 1980?", "context": "CREATE TABLE table_23512864_4 (winning_party_coalition VARCHAR, election_year VARCHAR)"}, {"answer": "SELECT MAX(election_year) FROM table_23512864_4 WHERE speaker = \"Munu Adhi (2) K. Rajaram\"", "question": "If the speaker is Munu Adhi (2) K. Rajaram, what is the election year maximum?", "context": "CREATE TABLE table_23512864_4 (election_year INTEGER, speaker VARCHAR)"}, {"answer": "SELECT MAX(election_year) FROM table_23512864_4 WHERE speaker = \"R. Muthiah\"", "question": "If the speaker is R. Muthiah, what is the election year maximum?", "context": "CREATE TABLE table_23512864_4 (election_year INTEGER, speaker VARCHAR)"}, {"answer": "SELECT speaker FROM table_23512864_4 WHERE chief_minister = \"M.G. Ramachandran\"", "question": "What is the name of the speaker if the chief minister is M.G. Ramachandran?", "context": "CREATE TABLE table_23512864_4 (speaker VARCHAR, chief_minister VARCHAR)"}, {"answer": "SELECT MAX(election_year) FROM table_23512864_4 WHERE assembly = \"Sixth assembly\"", "question": "If the assembly is the sixth assembly, what is the maximum election year?", "context": "CREATE TABLE table_23512864_4 (election_year INTEGER, assembly VARCHAR)"}, {"answer": "SELECT number_of_crews FROM table_23508196_5 WHERE type_of_unit = \"Light bombardment group\"", "question": "Name the number of crews for light bombardment group", "context": "CREATE TABLE table_23508196_5 (number_of_crews VARCHAR, type_of_unit VARCHAR)"}, {"answer": "SELECT type_of_aircraft FROM table_23508196_5 WHERE number_of_crews = \"21\"", "question": "What is the aircraft for 21 crews?", "context": "CREATE TABLE table_23508196_5 (type_of_aircraft VARCHAR, number_of_crews VARCHAR)"}, {"answer": "SELECT enlisted FROM table_23508196_5 WHERE type_of_unit = \"Troop carrier group\"", "question": "Nam ethe enlisted for troop carrier group", "context": "CREATE TABLE table_23508196_5 (enlisted VARCHAR, type_of_unit VARCHAR)"}, {"answer": "SELECT title FROM table_23513241_5 WHERE us_viewers__millions_ = \"1.121\"", "question": "What was the title when 1.121 million US people watched it?", "context": "CREATE TABLE table_23513241_5 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN(series_episode) FROM table_23513241_5 WHERE prod_code = 406", "question": "What is the lowest series episode with a production code of 406?", "context": "CREATE TABLE table_23513241_5 (series_episode INTEGER, prod_code VARCHAR)"}, {"answer": "SELECT title FROM table_23513241_5 WHERE series_episode = 38", "question": "List the title of series episode 38.", "context": "CREATE TABLE table_23513241_5 (title VARCHAR, series_episode VARCHAR)"}, {"answer": "SELECT formula FROM table_23548160_1 WHERE driver = \"Stirling Moss\"", "question": "What type of formula did Stirling Moss drive?", "context": "CREATE TABLE table_23548160_1 (formula VARCHAR, driver VARCHAR)"}, {"answer": "SELECT year FROM table_23548160_1 WHERE driver = \"Randy Lewis\"", "question": "What year did Randy Lewis drive?", "context": "CREATE TABLE table_23548160_1 (year VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_23548160_1 WHERE year = 1975", "question": "What was the constructor in 1975?", "context": "CREATE TABLE table_23548160_1 (constructor VARCHAR, year VARCHAR)"}, {"answer": "SELECT weight FROM table WHERE market_name = \"Xperia U\"", "question": "If the market name is Xperia U, what is the weight?", "context": "CREATE TABLE table (weight VARCHAR, market_name VARCHAR)"}, {"answer": "SELECT release_date FROM table WHERE code_name = \"Aoba\"", "question": "What is the release date if the code name is Aoba?", "context": "CREATE TABLE table (release_date VARCHAR, code_name VARCHAR)"}, {"answer": "SELECT battery___mah__ FROM table WHERE nfc = \"Yes\" AND weight = \"126g\"", "question": "If the weight is 126g and the NFC is yes, what is the battery (MAH)?", "context": "CREATE TABLE table (battery___mah__ VARCHAR, nfc VARCHAR, weight VARCHAR)"}, {"answer": "SELECT platform FROM table WHERE weight = \"131.5g\"", "question": "What is the platform if the weight is 131.5g?", "context": "CREATE TABLE table (platform VARCHAR, weight VARCHAR)"}, {"answer": "SELECT android_version FROM table WHERE code_name = \"Lotus\"", "question": "What is the Android version is the code name is Lotus?", "context": "CREATE TABLE table (android_version VARCHAR, code_name VARCHAR)"}, {"answer": "SELECT copper_age FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = \"Middle Assyrian Empire\"", "question": "When middle assyrian empire is the ubaid period in mesopotamia what is the copper age?", "context": "CREATE TABLE table_23537091_1 (copper_age VARCHAR, ubaid_period_in_mesopotamia VARCHAR)"}, {"answer": "SELECT copper_age FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = \"Hittite Old Kingdom , Minoan eruption\"", "question": "When hittite old kingdom , minoan eruption is the  ubaid period in mesopotamia what is the copper age?", "context": "CREATE TABLE table_23537091_1 (copper_age VARCHAR, ubaid_period_in_mesopotamia VARCHAR)"}, {"answer": "SELECT COUNT(early_chalcolithic) FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = \"Hittite Middle Kingdom , New Kingdom of Egypt\"", "question": "When hittite middle kingdom , new kingdom of egypt is the ubaid period in mesopotamia how many early chalcolithics are there?", "context": "CREATE TABLE table_23537091_1 (early_chalcolithic VARCHAR, ubaid_period_in_mesopotamia VARCHAR)"}, {"answer": "SELECT COUNT(early_chalcolithic) FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = \"Second Intermediate Period of Egypt\"", "question": "When the second intermediate period of egypt is the  ubaid period in mesopotamia how many early calcolithics are there?", "context": "CREATE TABLE table_23537091_1 (early_chalcolithic VARCHAR, ubaid_period_in_mesopotamia VARCHAR)"}, {"answer": "SELECT result FROM table_23563375_11 WHERE opponent = \"Loic Didavi\"", "question": "What was the score against Loic Didavi?", "context": "CREATE TABLE table_23563375_11 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT against FROM table_23563375_11 WHERE w_l = \"Loss\" AND round = \"GI PO\"", "question": "Who was played against when there was a loss and in the gi po round?", "context": "CREATE TABLE table_23563375_11 (against VARCHAR, w_l VARCHAR, round VARCHAR)"}, {"answer": "SELECT w_l FROM table_23563375_11 WHERE result = \"2\u20136, 5\u20137, 7\u20136 (11\u20139) , 1\u20136\"", "question": "What were the w/l when the final score was 2\u20136, 5\u20137, 7\u20136 (11\u20139) , 1\u20136?", "context": "CREATE TABLE table_23563375_11 (w_l VARCHAR, result VARCHAR)"}, {"answer": "SELECT playoffs FROM table_2357201_1 WHERE regular_season = \"2nd, Great Lakes\"", "question": "When Cleveland was 2nd, great lakes in the regular season what did they get to in the playoffs?", "context": "CREATE TABLE table_2357201_1 (playoffs VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT MIN(division) FROM table_2357201_1", "question": "What is the lowest numbered division Cleveland played in? ", "context": "CREATE TABLE table_2357201_1 (division INTEGER)"}, {"answer": "SELECT regular_season FROM table_2357201_1 WHERE year = 2006", "question": "How did Cleveland do in the regular season in 2006?", "context": "CREATE TABLE table_2357201_1 (regular_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT open_cup FROM table_2357201_1 WHERE year = 2009", "question": "How did Cleveland do in the Open Cup in 2009?", "context": "CREATE TABLE table_2357201_1 (open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT scores FROM table_23575917_6 WHERE lees_team = \"Victoria Coren and Rhod Gilbert\"", "question": "When victoria coren and rhod gilbert are both on the lees team what is the score?", "context": "CREATE TABLE table_23575917_6 (scores VARCHAR, lees_team VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_23575917_6 WHERE davids_team = \"David O'Doherty and Katherine Parkinson\"", "question": "When david o'doherty and katherine parkinson are both on the davids team when is the first broadcast?", "context": "CREATE TABLE table_23575917_6 (first_broadcast VARCHAR, davids_team VARCHAR)"}, {"answer": "SELECT episode FROM table_23575917_6 WHERE davids_team = \"Bill Oddie and Frank Skinner\"", "question": "When bill oddie and frank skinner are both on the davids team what is the episode?", "context": "CREATE TABLE table_23575917_6 (episode VARCHAR, davids_team VARCHAR)"}, {"answer": "SELECT scores FROM table_23575917_6 WHERE lees_team = \"Kevin Bridges and Katy Wix\"", "question": "When  kevin bridges and katy wix are both on the less team what is the score?", "context": "CREATE TABLE table_23575917_6 (scores VARCHAR, lees_team VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_23575917_8 WHERE davids_team = \"Vernon Kay and Dara \u00d3 Briain\"", "question": "How many shows did team David consist of vernon kay and dara \u00f3 briain", "context": "CREATE TABLE table_23575917_8 (episode VARCHAR, davids_team VARCHAR)"}, {"answer": "SELECT represented FROM table_23576576_2 WHERE hometown = \"Windhoek\"", "question": "If the hometown is Windhoek, what is the represented?", "context": "CREATE TABLE table_23576576_2 (represented VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT contestant FROM table_23576576_2 WHERE hometown = \"Omuthiya\"", "question": "If the hometown is Omuthiya, what is the contestant name?", "context": "CREATE TABLE table_23576576_2 (contestant VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT height__in_ FROM table_23576576_2 WHERE represented = \"Erongo\"", "question": "What is the height in inches if the represented is Erongo?", "context": "CREATE TABLE table_23576576_2 (height__in_ VARCHAR, represented VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_23601267_2 WHERE date = \"September 29\"", "question": "What week did September 29 fall in?", "context": "CREATE TABLE table_23601267_2 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT final_score FROM table_23601267_2 WHERE date = \"October 28\"", "question": "What was the score on the October 28 game?", "context": "CREATE TABLE table_23601267_2 (final_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT final_score FROM table_23601267_2 WHERE date = \"September 20\"", "question": "What was the score on September 20?", "context": "CREATE TABLE table_23601267_2 (final_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT main_artillery FROM table_23614702_1 WHERE warship = \"Blanco Encalada\"", "question": "What's Blanco Encalada's main artillery?", "context": "CREATE TABLE table_23614702_1 (main_artillery VARCHAR, warship VARCHAR)"}, {"answer": "SELECT COUNT(horse__power) FROM table_23614702_1 WHERE warship = \"Cochrane\"", "question": "How many different horse-powers does the Cochrane have?", "context": "CREATE TABLE table_23614702_1 (horse__power VARCHAR, warship VARCHAR)"}, {"answer": "SELECT warship FROM table_23614702_1 WHERE horse__power = 1500", "question": "What warship has horse-power of 1500?", "context": "CREATE TABLE table_23614702_1 (warship VARCHAR, horse__power VARCHAR)"}, {"answer": "SELECT MIN(tons___lton__) FROM table_23614702_1 WHERE warship = \"Independencia\"", "question": "How much does the Independencia weight?", "context": "CREATE TABLE table_23614702_1 (tons___lton__ INTEGER, warship VARCHAR)"}, {"answer": "SELECT COUNT(built_year) FROM table_23614702_1 WHERE tons___lton__ = 1130", "question": "In how many different years was the warship that weights 1130 tons built?", "context": "CREATE TABLE table_23614702_1 (built_year VARCHAR, tons___lton__ VARCHAR)"}, {"answer": "SELECT _percentage_20_39 FROM table_23606500_4 WHERE _percentage_60_74 = \"10,46%\"", "question": "What is every value for  % 20-39 if % 60-74 is 10,46%?", "context": "CREATE TABLE table_23606500_4 (_percentage_20_39 VARCHAR, _percentage_60_74 VARCHAR)"}, {"answer": "SELECT _percentage_40_59 FROM table_23606500_4 WHERE _percentage_60_74 = \"12,42%\"", "question": "What is every value for  % 40-59  if  % 60-74 is 12,42%?", "context": "CREATE TABLE table_23606500_4 (_percentage_40_59 VARCHAR, _percentage_60_74 VARCHAR)"}, {"answer": "SELECT _percentage_20_39 FROM table_23606500_4 WHERE _percentage_0_19 = \"21,11%\"", "question": "What is every value for % 20-39 if  % 0-19 is 21,11%?", "context": "CREATE TABLE table_23606500_4 (_percentage_20_39 VARCHAR, _percentage_0_19 VARCHAR)"}, {"answer": "SELECT _percentage_40_59 FROM table_23606500_4 WHERE _percentage_60_74 = \"12,40%\"", "question": "What is every value for  % 40-59 if  % 60-74 is 12,40%?", "context": "CREATE TABLE table_23606500_4 (_percentage_40_59 VARCHAR, _percentage_60_74 VARCHAR)"}, {"answer": "SELECT horse__power FROM table_23614702_2 WHERE warship = \"Covadonga\"", "question": "How man horse power did the ship covadonga have?", "context": "CREATE TABLE table_23614702_2 (horse__power VARCHAR, warship VARCHAR)"}, {"answer": "SELECT main_artillery FROM table_23614702_2 WHERE tons___lton__ = \"1,051\"", "question": "What is the primary artillery for the  1,051 ships?", "context": "CREATE TABLE table_23614702_2 (main_artillery VARCHAR, tons___lton__ VARCHAR)"}, {"answer": "SELECT speed___knots__ FROM table_23614702_2 WHERE tons___lton__ = \"1.150\"", "question": "List the maximum speed for the 1.150 ton ships?", "context": "CREATE TABLE table_23614702_2 (speed___knots__ VARCHAR, tons___lton__ VARCHAR)"}, {"answer": "SELECT warship FROM table_23614702_2 WHERE main_artillery = \"1x115-2x70-2x12-pounders\"", "question": "List the ship with 1x115-2x70-2x12-pounders for primary artillery.", "context": "CREATE TABLE table_23614702_2 (warship VARCHAR, main_artillery VARCHAR)"}, {"answer": "SELECT location FROM table_23612439_2 WHERE date = \"October 28\"", "question": "Which location has the date of October 28?", "context": "CREATE TABLE table_23612439_2 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT final_score FROM table_23612439_2 WHERE attendance = 22210", "question": "What is the final score when 22210 is the attendance?", "context": "CREATE TABLE table_23612439_2 (final_score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_23612439_2 WHERE date = \"July 22\"", "question": "Which opponents are on the date July 22?", "context": "CREATE TABLE table_23612439_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_23612439_2 WHERE date = \"September 5\"", "question": "Which opponents are on the date September 5?", "context": "CREATE TABLE table_23612439_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT final_score FROM table_23612439_2 WHERE date = \"July 16\"", "question": "What is the final score when July 16 is the date?", "context": "CREATE TABLE table_23612439_2 (final_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_23612439_2 WHERE location = \"Taylor Field\"", "question": "On which date is Taylor Field the location?", "context": "CREATE TABLE table_23612439_2 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(regular_season) FROM table_2361788_1 WHERE year = 2007", "question": "Name the number of regular season for 2007", "context": "CREATE TABLE table_2361788_1 (regular_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_2361788_1 WHERE playoffs = \"Conference Finals\"", "question": "Name the most year for conference finals", "context": "CREATE TABLE table_2361788_1 (year INTEGER, playoffs VARCHAR)"}, {"answer": "SELECT regular_season FROM table_2361911_2 WHERE playoffs = \"Final\"", "question": "Name the regular season for final playoffs", "context": "CREATE TABLE table_2361911_2 (regular_season VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT MIN(division) FROM table_2361911_2", "question": "Name the least division", "context": "CREATE TABLE table_2361911_2 (division INTEGER)"}, {"answer": "SELECT regular_season FROM table_2361911_2 WHERE league = \"USISL D-3 Pro league\" AND playoffs = \"Did not qualify\"", "question": "Name the regular season for usisl d-3 pro league did not qualify", "context": "CREATE TABLE table_2361911_2 (regular_season VARCHAR, league VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT position FROM table_23619005_3 WHERE cfl_team = \"Saskatchewan Roughriders\"", "question": "What was the position of the player from Saskatchewan Roughriders?", "context": "CREATE TABLE table_23619005_3 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_23619005_3 WHERE position = \"SB\"", "question": "What CFL team was the player playing on SB position drafted for?", "context": "CREATE TABLE table_23619005_3 (cfl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_23619005_3 WHERE player = \"Michael Shaver\"", "question": "What was Michael Shaver's position?", "context": "CREATE TABLE table_23619005_3 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_23619005_3 WHERE cfl_team = \"Ottawa Renegades\"", "question": "How many different players got drafted for the Ottawa Renegades?", "context": "CREATE TABLE table_23619005_3 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT position FROM table_23619005_3 WHERE player = \"Doug Borden\"", "question": "What's Doug Borden's position?", "context": "CREATE TABLE table_23619005_3 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT _percentage_of_all_immigrants_2007 FROM table_23619212_1 WHERE _percentage_of_all_immigrants_2008 = \"1.7%\"", "question": "What's the percentage of all immigrants in 2007 in the country with 1.7% of all immigrants in 2008?", "context": "CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2008 VARCHAR)"}, {"answer": "SELECT COUNT(_percentage_of_all_immigrants_2006) FROM table_23619212_1 WHERE country = \"Morocco\"", "question": "How many different percentages of immigrants in 2006 can there be for Morocco?", "context": "CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2006 VARCHAR, country VARCHAR)"}, {"answer": "SELECT _percentage_of_all_immigrants_2004 FROM table_23619212_1 WHERE _percentage_of_all_immigrants_2006 = \"2.1%\"", "question": "What's the percentage of immigrants in 2004 in the country with 2.1% of the immigrants in 2006?", "context": "CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2004 VARCHAR, _percentage_of_all_immigrants_2006 VARCHAR)"}, {"answer": "SELECT _percentage_of_all_immigrants_2007 FROM table_23619212_1 WHERE _percentage_of_all_immigrants_2006 = \"14.1%\"", "question": "What's the percentage of the immigrants in 2007 in the country with 14.1% of the immigrants in 2006?", "context": "CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2006 VARCHAR)"}, {"answer": "SELECT COUNT(_percentage_of_all_immigrants_2007) FROM table_23619212_1 WHERE _percentage_of_all_immigrants_2005 = \"1.2%\"", "question": "How many different percentages of immigrants are there for the year of 2007 in the countries with 1.2% of the immigrants in the year of 2005?", "context": "CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2005 VARCHAR)"}, {"answer": "SELECT outcome FROM table_2362486_1 WHERE score_in_the_final = \"6\u20137(1), 2\u20136, 6\u20134, 7\u20135, 6\u20137(2)\"", "question": "What was the outcome in the championship where the final score was 6\u20137(1), 2\u20136, 6\u20134, 7\u20135, 6\u20137(2)?", "context": "CREATE TABLE table_2362486_1 (outcome VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_2362486_1 WHERE score_in_the_final = \"6\u20134, 2\u20136, 6\u20134, 7\u20136(3)\"", "question": "Who were the opponents in the final where the score was 6\u20134, 2\u20136, 6\u20134, 7\u20136(3)?", "context": "CREATE TABLE table_2362486_1 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT championship FROM table_2362486_1 WHERE score_in_the_final = \"6\u20134, 2\u20136, 6\u20134, 7\u20136(3)\"", "question": "Which championship had a final score of 6\u20134, 2\u20136, 6\u20134, 7\u20136(3)?", "context": "CREATE TABLE table_2362486_1 (championship VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_2362606_1 WHERE year = 1988", "question": "What was the score in the final in 1988?", "context": "CREATE TABLE table_2362606_1 (score_in_final VARCHAR, year VARCHAR)"}, {"answer": "SELECT london_, _great_britain FROM table_23619492_3 WHERE world_record = \"Championship record\"", "question": "Name the london great britain for championship record", "context": "CREATE TABLE table_23619492_3 (london_ VARCHAR, _great_britain VARCHAR, world_record VARCHAR)"}, {"answer": "SELECT COUNT(paula_radcliffe___gbr__) FROM table_23619492_3 WHERE world_record = \"African record\"", "question": "Name the total number of african record", "context": "CREATE TABLE table_23619492_3 (paula_radcliffe___gbr__ VARCHAR, world_record VARCHAR)"}, {"answer": "SELECT mix_artist FROM table_23649244_1 WHERE artist_1 = \"Tears for Fears\" AND artist_2 = \"Eric Prydz\"", "question": "Who are thebmix artists when tears for fears is artist 1 and eric prydz is artist 2?", "context": "CREATE TABLE table_23649244_1 (mix_artist VARCHAR, artist_1 VARCHAR, artist_2 VARCHAR)"}, {"answer": "SELECT level FROM table_23649244_1 WHERE artist_1 = \"Marvin Gaye\" AND artist_2 = \"David Bowie\"", "question": "Which level has marvin gaye as artist 1 and david bowie as artist 2?", "context": "CREATE TABLE table_23649244_1 (level VARCHAR, artist_1 VARCHAR, artist_2 VARCHAR)"}, {"answer": "SELECT level FROM table_23649244_1 WHERE artist_1 = \"Grandmaster Flash\"", "question": "Which level has grandmaster flash as artist 1?", "context": "CREATE TABLE table_23649244_1 (level VARCHAR, artist_1 VARCHAR)"}, {"answer": "SELECT level FROM table_23649244_1 WHERE artist_1 = \"Wale\"", "question": "Which level has wale as artist 1?", "context": "CREATE TABLE table_23649244_1 (level VARCHAR, artist_1 VARCHAR)"}, {"answer": "SELECT mix_artist FROM table_23649244_1 WHERE artist_1 = \"Shlomo\"", "question": "Which mix artists have shlomo as artist 1?", "context": "CREATE TABLE table_23649244_1 (mix_artist VARCHAR, artist_1 VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_23647668_2 WHERE champion = \"Melgar\"", "question": "How many season had Melgar as a champion?", "context": "CREATE TABLE table_23647668_2 (season VARCHAR, champion VARCHAR)"}, {"answer": "SELECT third_place FROM table_23647668_2 WHERE season = 1980", "question": "Who was in third place in the 1980 season?", "context": "CREATE TABLE table_23647668_2 (third_place VARCHAR, season VARCHAR)"}, {"answer": "SELECT open_cup FROM table_2365150_1 WHERE league = \"USL PDL\" AND playoffs = \"Did not qualify\"", "question": "Name the open cup for usl pdl for did not qualify", "context": "CREATE TABLE table_2365150_1 (open_cup VARCHAR, league VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT COUNT(open_cup) FROM table_2365150_1 WHERE year = 1996", "question": "Name the total number of open cup for 1996", "context": "CREATE TABLE table_2365150_1 (open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT open_cup FROM table_2365150_1 WHERE playoffs = \"division Finals\"", "question": "Name the open cup for division finals", "context": "CREATE TABLE table_2365150_1 (open_cup VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT position FROM table_23670057_1 WHERE height__m_ = \"2.16\"", "question": "Name the position for 2.16", "context": "CREATE TABLE table_23670057_1 (position VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT no FROM table_23670057_1 WHERE height__m_ = \"1.96\"", "question": "Name the number for 1.96 height", "context": "CREATE TABLE table_23670057_1 (no VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT height__m_ FROM table_23670057_1 WHERE no = 7", "question": "Name the height for number 7", "context": "CREATE TABLE table_23670057_1 (height__m_ VARCHAR, no VARCHAR)"}, {"answer": "SELECT player FROM table_23670057_1 WHERE no = 5", "question": "name the player for number 5", "context": "CREATE TABLE table_23670057_1 (player VARCHAR, no VARCHAR)"}, {"answer": "SELECT height__f_ FROM table_23670057_4 WHERE position = \"Center\"", "question": "For all players playing at the center,  list the height in feet.", "context": "CREATE TABLE table_23670057_4 (height__f_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT no FROM table_23670057_4 WHERE position = \"Center\"", "question": "Display the serial numbers for the players who play at the center.", "context": "CREATE TABLE table_23670057_4 (no VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(year_born) FROM table_23670057_4 WHERE player = \"Ido Kozikaro\"", "question": "What is the date of birth for basket baller called ido kozikaro", "context": "CREATE TABLE table_23670057_4 (year_born INTEGER, player VARCHAR)"}, {"answer": "SELECT height__m_ FROM table_23670057_4 WHERE player = \"Lior Eliyahu\"", "question": "How tall is the basket ball player lior eliyahu in meters?", "context": "CREATE TABLE table_23670057_4 (height__m_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT average FROM table_23662356_3 WHERE number_of_dances = 4", "question": "What was the average score for the couple that had 4 dances?", "context": "CREATE TABLE table_23662356_3 (average VARCHAR, number_of_dances VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_23662356_3 WHERE number_of_dances = 12", "question": "How many averages were listed for the couple who had 12 dances?", "context": "CREATE TABLE table_23662356_3 (average VARCHAR, number_of_dances VARCHAR)"}, {"answer": "SELECT MAX(total_points_earned) FROM table_23662356_3 WHERE average = \"29.0\"", "question": "How many total points were earned from the couple that averaged 29.0 points?", "context": "CREATE TABLE table_23662356_3 (total_points_earned INTEGER, average VARCHAR)"}, {"answer": "SELECT album_s_ FROM table_23667534_1 WHERE song_s__title = \"It's Going So Badly\"", "question": "What album was the song It's going so badly on?", "context": "CREATE TABLE table_23667534_1 (album_s_ VARCHAR, song_s__title VARCHAR)"}, {"answer": "SELECT album_s_ FROM table_23667534_1 WHERE song_s__title = \"My Chariot\"", "question": "What album was the song My Chariot on?", "context": "CREATE TABLE table_23667534_1 (album_s_ VARCHAR, song_s__title VARCHAR)"}, {"answer": "SELECT singer_s_ FROM table_23667534_1 WHERE song_s__title = \"He's Bigfoot\"", "question": "Who sand He's Bigfoot?", "context": "CREATE TABLE table_23667534_1 (singer_s_ VARCHAR, song_s__title VARCHAR)"}, {"answer": "SELECT album_s_ FROM table_23667534_1 WHERE episode_title = \"Toy to the World\" AND song_s__title = \"Shimmy Jimmy\"", "question": "What album was the song Shimmy Jimmy from the episode titled Toy to the world on?", "context": "CREATE TABLE table_23667534_1 (album_s_ VARCHAR, episode_title VARCHAR, song_s__title VARCHAR)"}, {"answer": "SELECT player FROM table_23670057_5 WHERE height__m_ = \"2.07\"", "question": "which players have a height of 2.07m? ", "context": "CREATE TABLE table_23670057_5 (player VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT current_club FROM table_23670057_5 WHERE height__m_ = \"2.14\"", "question": "Which clubs have players with height 2.14m?", "context": "CREATE TABLE table_23670057_5 (current_club VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT player FROM table_23670057_5 WHERE year_born = 1983 AND position = \"Forward\"", "question": "Which players were born in 1983 and play as forward position?", "context": "CREATE TABLE table_23670057_5 (player VARCHAR, year_born VARCHAR, position VARCHAR)"}, {"answer": "SELECT current_club FROM table_23670057_7 WHERE player = \"Art\u016brs \u0160t\u0101lbergs\"", "question": "What is every current club for the player Art\u016brs \u0160t\u0101lbergs?", "context": "CREATE TABLE table_23670057_7 (current_club VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_23670057_7 WHERE height__m_ = \"2.07\"", "question": "How many players have a height of 2.07?", "context": "CREATE TABLE table_23670057_7 (player VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT MAX(year_born) FROM table_23670057_7 WHERE current_club = \"Barons LMT\"", "question": "What is the latest year born when the current club is Barons LMT?", "context": "CREATE TABLE table_23670057_7 (year_born INTEGER, current_club VARCHAR)"}, {"answer": "SELECT COUNT(current_club) FROM table_23670057_7 WHERE player = \"Aigars Vitols\"", "question": "How many current clubs have the player Aigars Vitols?", "context": "CREATE TABLE table_23670057_7 (current_club VARCHAR, player VARCHAR)"}, {"answer": "SELECT year_born FROM table_23670057_7 WHERE height__m_ = \"1.88\"", "question": "What is every year born for height of 1.88?", "context": "CREATE TABLE table_23670057_7 (year_born VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT no FROM table_23670057_7 WHERE player = \"Aigars Vitols\"", "question": "What is every number when the player is Aigars Vitols?", "context": "CREATE TABLE table_23670057_7 (no VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(high_schools) FROM table_2367847_2 WHERE district_wide = 31851", "question": "Name the most high schools for 31851", "context": "CREATE TABLE table_2367847_2 (high_schools INTEGER, district_wide VARCHAR)"}, {"answer": "SELECT MAX(district_wide) FROM table_2367847_2 WHERE other_programs_ & _adjustments = 1639", "question": "Name the most district wide for 1639 other programs", "context": "CREATE TABLE table_2367847_2 (district_wide INTEGER, other_programs_ VARCHAR, _adjustments VARCHAR)"}, {"answer": "SELECT COUNT(elementary_schools) FROM table_2367847_2 WHERE district_wide = 31851", "question": "Name the total number of elementary schools for 31851", "context": "CREATE TABLE table_2367847_2 (elementary_schools VARCHAR, district_wide VARCHAR)"}, {"answer": "SELECT MAX(middle_schools) FROM table_2367847_2 WHERE year = \"2005-2006\"", "question": "Name the most middle schools for 2005-2006", "context": "CREATE TABLE table_2367847_2 (middle_schools INTEGER, year VARCHAR)"}, {"answer": "SELECT may_2009 FROM table_23680576_2 WHERE jul_2009 = \"7.2%\"", "question": "If the polling average in July 2009 was 7.2%, what was it in May 2009?", "context": "CREATE TABLE table_23680576_2 (may_2009 VARCHAR, jul_2009 VARCHAR)"}, {"answer": "SELECT aug_2008 FROM table_23680576_2 WHERE sep_2008 = \"5.0%\"", "question": "What was the polling average in Aug 2009 when is was 5.0% in Sep 2009?", "context": "CREATE TABLE table_23680576_2 (aug_2008 VARCHAR, sep_2008 VARCHAR)"}, {"answer": "SELECT COUNT(oct_2008) FROM table_23680576_2 WHERE aug_2008 = \"30.8%\"", "question": "How many polling percentages were there in October 2008 when is was 30.8% in Aug 2008?", "context": "CREATE TABLE table_23680576_2 (oct_2008 VARCHAR, aug_2008 VARCHAR)"}, {"answer": "SELECT party FROM table_23680576_2 WHERE dec_2008 = \"6.3%\"", "question": "Name the party/s when the polling percentage was 6.3% in Dec 2008.", "context": "CREATE TABLE table_23680576_2 (party VARCHAR, dec_2008 VARCHAR)"}, {"answer": "SELECT nov_2008 FROM table_23680576_2 WHERE aug_2008 = \"1.7%\"", "question": "What was the polling percentage in Nov 2008 when it was 1.7% in Aug 2008?", "context": "CREATE TABLE table_23680576_2 (nov_2008 VARCHAR, aug_2008 VARCHAR)"}, {"answer": "SELECT week_32 FROM table_23680576_3 WHERE week_33 = \"31.9%\"", "question": "What is the week 32 result when week 33 is 31.9%?", "context": "CREATE TABLE table_23680576_3 (week_32 VARCHAR, week_33 VARCHAR)"}, {"answer": "SELECT week_37 FROM table_23680576_3 WHERE week_33 = \"14.3%\"", "question": "List all week 37 results when week 33 is 14.3%.", "context": "CREATE TABLE table_23680576_3 (week_37 VARCHAR, week_33 VARCHAR)"}, {"answer": "SELECT COUNT(week_36) FROM table_23680576_3 WHERE week_32 = \"13.2%\"", "question": "List the full amount of week 36 results when week 32 is 13.2%.", "context": "CREATE TABLE table_23680576_3 (week_36 VARCHAR, week_32 VARCHAR)"}, {"answer": "SELECT est FROM table_23685890_2 WHERE land_area__km\u00b2_ = \"4563\"", "question": "On what year was the local government area with a surface of 4563 square kilometers established?", "context": "CREATE TABLE table_23685890_2 (est VARCHAR, land_area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT major_town FROM table_23685890_2 WHERE local_government_area = \"Outback Areas Community Development Trust\"", "question": "Which major town is located within the Outback Areas Community Development Trust?", "context": "CREATE TABLE table_23685890_2 (major_town VARCHAR, local_government_area VARCHAR)"}, {"answer": "SELECT MIN(towns) FROM table_23685890_2 WHERE land_area__km\u00b2_ = \"110\"", "question": "How many towns exist on the government area with a surface of 110 square kilometers?", "context": "CREATE TABLE table_23685890_2 (towns INTEGER, land_area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT type FROM table_23685890_2 WHERE local_government_area = \"Yalata\"", "question": "What type of local government area is Yalata?", "context": "CREATE TABLE table_23685890_2 (type VARCHAR, local_government_area VARCHAR)"}, {"answer": "SELECT pop_2006 FROM table_23685890_2 WHERE major_town = \"Coober Pedy\"", "question": "What was the 2006 population count of the local government area where Coober Pedy is located?", "context": "CREATE TABLE table_23685890_2 (pop_2006 VARCHAR, major_town VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_23685152_2 WHERE attendance = 20114", "question": "During what week was the game attended by 20114 people?", "context": "CREATE TABLE table_23685152_2 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_23685152_2 WHERE date = \"July 28\"", "question": " What was the record in game played on July 28?", "context": "CREATE TABLE table_23685152_2 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_23685152_2 WHERE opponent = \"Eskimos\"", "question": "What was the record in the game against Eskimos?", "context": "CREATE TABLE table_23685152_2 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT name FROM table_23696862_6 WHERE wsop_earnings = \"$36,372\"", "question": "Whose WSOP earnings were $36,372? ", "context": "CREATE TABLE table_23696862_6 (name VARCHAR, wsop_earnings VARCHAR)"}, {"answer": "SELECT wsop_cashes FROM table_23696862_6 WHERE wsop_earnings = \"0\"", "question": "The person who had 0 WSOP earnings had how man WSOP cashes?", "context": "CREATE TABLE table_23696862_6 (wsop_cashes VARCHAR, wsop_earnings VARCHAR)"}, {"answer": "SELECT name FROM table_23696862_6 WHERE wsop_cashes = 2 AND final_place = \"6th\"", "question": "Who had 2 WSOP cashes and was 6th in final place?", "context": "CREATE TABLE table_23696862_6 (name VARCHAR, wsop_cashes VARCHAR, final_place VARCHAR)"}, {"answer": "SELECT MIN(wsop_bracelets) FROM table_23696862_6", "question": "What is the smallest amount of WSOP bracelets anyone had?", "context": "CREATE TABLE table_23696862_6 (wsop_bracelets INTEGER)"}, {"answer": "SELECT wsop_cashes FROM table_23696862_6 WHERE wsop_earnings = \"$126,796\"", "question": "The person who had $126,796 WSOP earnings had how many WSOP cashes? ", "context": "CREATE TABLE table_23696862_6 (wsop_cashes VARCHAR, wsop_earnings VARCHAR)"}, {"answer": "SELECT MAX(high_10_profile) FROM table_237036_2 WHERE high_profile = 80", "question": "What is the high 10 profile number when the high profile is 80?", "context": "CREATE TABLE table_237036_2 (high_10_profile INTEGER, high_profile VARCHAR)"}, {"answer": "SELECT MIN(baseline), _extended_and_main_profiles FROM table_237036_2 WHERE level = \"1.3\"", "question": "What is the baseline extended and main profiles when level is 1.3?", "context": "CREATE TABLE table_237036_2 (_extended_and_main_profiles VARCHAR, baseline INTEGER, level VARCHAR)"}, {"answer": "SELECT level FROM table_237036_2 WHERE macroblocks_s = 11880 AND high_10_profile = 6000", "question": "What level has 11880 macroblocks and high 10 profile is 6000?", "context": "CREATE TABLE table_237036_2 (level VARCHAR, macroblocks_s VARCHAR, high_10_profile VARCHAR)"}, {"answer": "SELECT luma_samples_s FROM table_237036_2 WHERE level = \"1.3\"", "question": "What are the luma samples at level 1.3?", "context": "CREATE TABLE table_237036_2 (luma_samples_s VARCHAR, level VARCHAR)"}, {"answer": "SELECT high_10_profile FROM table_237036_2 WHERE high_profile = 160", "question": "What is the high 10 profile when high profile is 160?", "context": "CREATE TABLE table_237036_2 (high_10_profile VARCHAR, high_profile VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23705843_1 WHERE ratings__millions_ = \"1.92\"", "question": "What is the original air date if the ratings is 1.92 million?", "context": "CREATE TABLE table_23705843_1 (original_air_date VARCHAR, ratings__millions_ VARCHAR)"}, {"answer": "SELECT writer FROM table_23705843_1 WHERE ratings__millions_ = \"2.61\"", "question": "What is the name of the writer when the ratings was 2.61 million?", "context": "CREATE TABLE table_23705843_1 (writer VARCHAR, ratings__millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2370579_1 WHERE written_by = \"Tony O'Grady (pseudonym of Brian Clemens)\"", "question": "Who directed the episode written by Tony O'Grady (pseudonym of brian clemens)?", "context": "CREATE TABLE table_2370579_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MIN(prod__number) FROM table_2370579_1 WHERE episode__number = 23", "question": "What is the production number for episode 23?", "context": "CREATE TABLE table_2370579_1 (prod__number INTEGER, episode__number VARCHAR)"}, {"answer": "SELECT romanian__colloquial_ FROM table_23710609_2 WHERE english = \"(s)he will sing\"", "question": "What is the colloquial translation of (s)he will sing? ", "context": "CREATE TABLE table_23710609_2 (romanian__colloquial_ VARCHAR, english VARCHAR)"}, {"answer": "SELECT date FROM table_23718905_6 WHERE city = \"El Paso, Texas\"", "question": "What was the date of the game played in El Paso, Texas?", "context": "CREATE TABLE table_23718905_6 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(matchup_results) FROM table_23718905_6 WHERE city = \"San Diego, California\"", "question": "How many different matchup/results appear in San Diego, California?", "context": "CREATE TABLE table_23718905_6 (matchup_results VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(television) FROM table_23718905_6 WHERE matchup_results = \"Iowa State 14, Minnesota 13\"", "question": "How many different items appear in the television column when the results where Iowa State 14, Minnesota 13?", "context": "CREATE TABLE table_23718905_6 (television VARCHAR, matchup_results VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_23718905_6 WHERE stadium = \"Sun Devil stadium\"", "question": "How many different items appear in he attendance column at Sun Devil Stadium?", "context": "CREATE TABLE table_23718905_6 (attendance VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT bowl_game FROM table_23718905_6 WHERE matchup_results = \"Oklahoma 31, Stanford 27\"", "question": "In what bowl game was the result Oklahoma 31, Stanford 27?", "context": "CREATE TABLE table_23718905_6 (bowl_game VARCHAR, matchup_results VARCHAR)"}, {"answer": "SELECT television FROM table_23718905_6 WHERE date = \"December 28, 2009\"", "question": "What was the television that was dated December 28, 2009?", "context": "CREATE TABLE table_23718905_6 (television VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_237199_1 WHERE company_name = \"Doosan Infracore\"", "question": "Which country has doosan infracore as then company name?", "context": "CREATE TABLE table_237199_1 (country VARCHAR, company_name VARCHAR)"}, {"answer": "SELECT COUNT(north_american_brands) FROM table_237199_1 WHERE world_headquarters = \"Sagamihara\"", "question": "How many north american brands have world headquarters in sagamihara?", "context": "CREATE TABLE table_237199_1 (north_american_brands VARCHAR, world_headquarters VARCHAR)"}, {"answer": "SELECT company_name FROM table_237199_1 WHERE world_headquarters = \"Nagaokakyo, Kyoto\"", "question": "Which company name has headquarters in nagaokakyo, kyoto?", "context": "CREATE TABLE table_237199_1 (company_name VARCHAR, world_headquarters VARCHAR)"}, {"answer": "SELECT bore__mm_ FROM table_23722304_2 WHERE vehicle_code = \"T214\"", "question": "what is the bore where the vehicle code is t214?", "context": "CREATE TABLE table_23722304_2 (bore__mm_ VARCHAR, vehicle_code VARCHAR)"}, {"answer": "SELECT compression_ratio FROM table_23722304_2 WHERE torque__n_m_ = 208", "question": "what is the compression ratio whre the torque is 208?", "context": "CREATE TABLE table_23722304_2 (compression_ratio VARCHAR, torque__n_m_ VARCHAR)"}, {"answer": "SELECT vehicle_code FROM table_23722304_2 WHERE bore__mm_ = \"79.4\"", "question": "what is the vehicle code where the bore is 79.4?", "context": "CREATE TABLE table_23722304_2 (vehicle_code VARCHAR, bore__mm_ VARCHAR)"}, {"answer": "SELECT stroke__mm_ FROM table_23722304_2 WHERE vehicle_code = \"T211\"", "question": "what is the stroke where the vehicle code is t211?", "context": "CREATE TABLE table_23722304_2 (stroke__mm_ VARCHAR, vehicle_code VARCHAR)"}, {"answer": "SELECT rating / SHARE(18 - 49) FROM table_23730973_5 WHERE viewers__millions_ = \"5.90\"", "question": "What was the rating/share for 18-49 for the episode that had 5.90 million viewers? ", "context": "CREATE TABLE table_23730973_5 (rating VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT episode FROM table_23730973_5 WHERE no = 3", "question": "What was the title of episode 3?", "context": "CREATE TABLE table_23730973_5 (episode VARCHAR, no VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_23730973_5 WHERE rating = \"4.7\"", "question": "What number episode had a rating of 4.7?", "context": "CREATE TABLE table_23730973_5 (no INTEGER, rating VARCHAR)"}, {"answer": "SELECT rating FROM table_23730973_5 WHERE viewers__millions_ = \"5.90\"", "question": "What was the rating for the episode that had 5.90 million viewers? ", "context": "CREATE TABLE table_23730973_5 (rating VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_23730973_5 WHERE rating = \"4.2\"", "question": "What number episode had a 4.2 rating? ", "context": "CREATE TABLE table_23730973_5 (no INTEGER, rating VARCHAR)"}, {"answer": "SELECT COUNT(winning_coach) FROM table_237757_3 WHERE top_team_in_regular_season__points_ = \"Kansas City Spurs (110 points)\"", "question": "What is the winning coach total number if the top team in regular season (points) is the Kansas City Spurs (110 points)?", "context": "CREATE TABLE table_237757_3 (winning_coach VARCHAR, top_team_in_regular_season__points_ VARCHAR)"}, {"answer": "SELECT winner__number_of_titles_ FROM table_237757_3 WHERE top_team_in_regular_season__points_ = \"New York Cosmos (200 points)\"", "question": "If the top team in regular season (points) is the New York Cosmos (200 points), what is the winner (number of titles)?", "context": "CREATE TABLE table_237757_3 (winner__number_of_titles_ VARCHAR, top_team_in_regular_season__points_ VARCHAR)"}, {"answer": "SELECT winner__number_of_titles_ FROM table_237757_3 WHERE runners_up = \"Fort Lauderdale Strikers\"", "question": "If the runner-up is the Fort Lauderdale Strikers, what is the winner (number of titles)?", "context": "CREATE TABLE table_237757_3 (winner__number_of_titles_ VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT COUNT(other) FROM table_23777640_1 WHERE gn_divisions = 95", "question": "How many figures for Other in the district where the GN division is 95?", "context": "CREATE TABLE table_23777640_1 (other VARCHAR, gn_divisions VARCHAR)"}, {"answer": "SELECT market_share FROM table_23801721_1 WHERE technology = \"CDMA EVDO GSM EDGE HSPA+\"", "question": "What was the market share of the operator whose technology is CDMA EVDO GSM EDGE HSPA+?", "context": "CREATE TABLE table_23801721_1 (market_share VARCHAR, technology VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_23801721_1 WHERE technology = \"CDMA EVDO\"", "question": "What was the rank of operator whose technology is CDMA EVDO?", "context": "CREATE TABLE table_23801721_1 (rank INTEGER, technology VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_23793770_1 WHERE directed_by = \"Michael Morris\"", "question": "What was the production code for the episode directed by Michael Morris?", "context": "CREATE TABLE table_23793770_1 (production_code INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_23793770_1 WHERE directed_by = \"Allison Liddi-Brown\"", "question": "What is the title the episode directed by Allison Liddi-Brown?", "context": "CREATE TABLE table_23793770_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_23793770_1 WHERE us_viewers__millions_ = \"16.10\"", "question": "What the production code for the episode with 16.10 U.S. viewers?", "context": "CREATE TABLE table_23793770_1 (production_code INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_23799417_2 WHERE original_airing = \"September 30, 2007\"", "question": "what is the episode title on original air date of September 30, 2007?", "context": "CREATE TABLE table_23799417_2 (title VARCHAR, original_airing VARCHAR)"}, {"answer": "SELECT rating FROM table_23799417_2 WHERE rating / SHARE(18 AS \u201349) = 3.6", "question": "What is the rating if the rating/share (18-49) is 3.6?", "context": "CREATE TABLE table_23799417_2 (rating VARCHAR)"}, {"answer": "SELECT COUNT(rating) / SHARE(18 AS \u201349) FROM table_23799417_2 WHERE total_viewers__in_millions_ = \"12.75\"", "question": "What is the rating/share total number if the total viewers is 12.75 million?", "context": "CREATE TABLE table_23799417_2 (rating VARCHAR, total_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT total_viewers__in_millions_ FROM table_23799417_2 WHERE rating = \"9.1\"", "question": "If the rating is 9.1, what was the total viewers?", "context": "CREATE TABLE table_23799417_2 (total_viewers__in_millions_ VARCHAR, rating VARCHAR)"}, {"answer": "SELECT rating / SHARE(18 AS \u201349) FROM table_23793770_2 WHERE total_viewers__in_millions_ = \"11.49\"", "question": "What was the reating share when the total viewers was 11.49 million?", "context": "CREATE TABLE table_23793770_2 (rating VARCHAR, total_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_23793770_2 WHERE total_viewers__in_millions_ = \"10.47\"", "question": "What was the name of the show that had 10.47 million total viewers?", "context": "CREATE TABLE table_23793770_2 (title VARCHAR, total_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_23793770_2 WHERE total_viewers__in_millions_ = \"12.46\"", "question": "How many shows had 12.46 total viewers?", "context": "CREATE TABLE table_23793770_2 (title VARCHAR, total_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT MAX(sales), _receipts, _or_shipments__$1, 000 AS _ FROM table_23802822_1 WHERE establishments = 49319", "question": "If the establishment is 49319, what is the sales, receipts or shipments maximum amount?", "context": "CREATE TABLE table_23802822_1 (_receipts VARCHAR, _or_shipments__$1 VARCHAR, sales INTEGER, establishments VARCHAR)"}, {"answer": "SELECT sector FROM table_23802822_1 WHERE establishments = 110313", "question": "What is the sector is the establishment is 110313?", "context": "CREATE TABLE table_23802822_1 (sector VARCHAR, establishments VARCHAR)"}, {"answer": "SELECT COUNT(league) FROM table_2380212_1 WHERE avg_attendance = 3589", "question": "How many different Leagues had average attendance of 3589?", "context": "CREATE TABLE table_2380212_1 (league VARCHAR, avg_attendance VARCHAR)"}, {"answer": "SELECT MIN(avg_attendance) FROM table_2380212_1 WHERE regular_season = \"3rd, Central\"", "question": "How many people saw the 3rd, Central regular season on average?", "context": "CREATE TABLE table_2380212_1 (avg_attendance INTEGER, regular_season VARCHAR)"}, {"answer": "SELECT league FROM table_2380212_1 WHERE year = 2007", "question": "What League was played in 2007?", "context": "CREATE TABLE table_2380212_1 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_2380212_1 WHERE avg_attendance = 789", "question": "When was the average attendance 789?", "context": "CREATE TABLE table_2380212_1 (year INTEGER, avg_attendance VARCHAR)"}, {"answer": "SELECT fg_fga FROM table_23817012_6 WHERE ft_fta = \"16-21\"", "question": "what is the score in fg-fga if in ft-fta is 16-21", "context": "CREATE TABLE table_23817012_6 (fg_fga VARCHAR, ft_fta VARCHAR)"}, {"answer": "SELECT COUNT(gp_gs) FROM table_23817012_6 WHERE ft_pct = \".667\"", "question": "in the ft pct .667 what is the number of gp-gs", "context": "CREATE TABLE table_23817012_6 (gp_gs VARCHAR, ft_pct VARCHAR)"}, {"answer": "SELECT team__number1 FROM table_23812628_1 WHERE team__number2 = \"San Lorenzo\"", "question": "Name the team number 1 for san lorenzo", "context": "CREATE TABLE table_23812628_1 (team__number1 VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_23812628_1 WHERE team__number1 = \"River Plate\"", "question": "Name the team #2 for river plate", "context": "CREATE TABLE table_23812628_1 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT points FROM table_23812628_1 WHERE team__number1 = \"Zamora\"", "question": "Name the points for zamora", "context": "CREATE TABLE table_23812628_1 (points VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_23812628_1 WHERE team__number1 = \"Boca Juniors\"", "question": "Name the 2nd leg for boca juniors", "context": "CREATE TABLE table_23812628_1 (team__number1 VARCHAR)"}, {"answer": "SELECT media_type FROM table_23829490_1 WHERE genre = \"Psychedelic Trance\"", "question": "What is every media type for the Psychedelic Trance genre?", "context": "CREATE TABLE table_23829490_1 (media_type VARCHAR, genre VARCHAR)"}, {"answer": "SELECT composer FROM table_23829490_1 WHERE name_of_the_media = \"Hall Of Dreams\"", "question": "Who is every composer for the media named Hall of Dreams?", "context": "CREATE TABLE table_23829490_1 (composer VARCHAR, name_of_the_media VARCHAR)"}, {"answer": "SELECT media_type FROM table_23829490_1 WHERE genre = \"Dub\"", "question": "What is every media type for the Dub genre?", "context": "CREATE TABLE table_23829490_1 (media_type VARCHAR, genre VARCHAR)"}, {"answer": "SELECT media_type FROM table_23829490_1 WHERE genre = \"World\"", "question": "What is every media type for the World genre?", "context": "CREATE TABLE table_23829490_1 (media_type VARCHAR, genre VARCHAR)"}, {"answer": "SELECT composition_name FROM table_23829490_1 WHERE music_library = \"Heart of Asia\" AND media_type = \"Album\" AND genre = \"Trance\"", "question": "What is every composition name when the music library is Heart of Asia and media type is album with the Trance genre?", "context": "CREATE TABLE table_23829490_1 (composition_name VARCHAR, genre VARCHAR, music_library VARCHAR, media_type VARCHAR)"}, {"answer": "SELECT brooklyn FROM table_23837321_4 WHERE manhattan = \"15.5_percentage\"", "question": "what percentage is brooklyn when manhattan is 15.5%?", "context": "CREATE TABLE table_23837321_4 (brooklyn VARCHAR, manhattan VARCHAR)"}, {"answer": "SELECT qld_cup_premierships FROM table_2383498_4 WHERE home_ground = \"Dairy Farmers Stadium\"", "question": "What is every entry in the QLD Cup Premierships when home ground is Dairy Farmers Stadium?", "context": "CREATE TABLE table_2383498_4 (qld_cup_premierships VARCHAR, home_ground VARCHAR)"}, {"answer": "SELECT first_year_in_qld_cup FROM table_2383498_4 WHERE home_ground = \"Corbett Park, Crosby Park, Lang Park, ANZ Stadium\"", "question": "What is every value for first year in QLD Cup if home ground is Corbett Park, Crosby Park, Lang Park, ANZ Stadium?", "context": "CREATE TABLE table_2383498_4 (first_year_in_qld_cup VARCHAR, home_ground VARCHAR)"}, {"answer": "SELECT home_ground FROM table_2383498_4 WHERE team = \"Sunshine Coast Falcons\"", "question": "What is the home ground if team is Sunshine Coast Falcons?", "context": "CREATE TABLE table_2383498_4 (home_ground VARCHAR, team VARCHAR)"}, {"answer": "SELECT qld_cup_premierships FROM table_2383498_4 WHERE team = \"Gold Coast Vikings\"", "question": "What is the QLD Cup Premierships if team is Gold Coast Vikings?", "context": "CREATE TABLE table_2383498_4 (qld_cup_premierships VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_2383498_4 WHERE location = \"Port Moresby\"", "question": "What is every team in the location of Port Moresby?", "context": "CREATE TABLE table_2383498_4 (team VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(last_year_in_qld_cup) FROM table_2383498_4 WHERE qld_cup_premierships = \"1996, 2001\"", "question": "How many values of last year in QLD Cup if QLD Cup Premierships is 1996, 2001?", "context": "CREATE TABLE table_2383498_4 (last_year_in_qld_cup VARCHAR, qld_cup_premierships VARCHAR)"}, {"answer": "SELECT undisclosed FROM table_23835213_2 WHERE adam_hinshelwood = \"Ricky Newman\"", "question": "What are the undisclosed when Adam Hinshelwood is Ricky Newman?", "context": "CREATE TABLE table_23835213_2 (undisclosed VARCHAR, adam_hinshelwood VARCHAR)"}, {"answer": "SELECT df FROM table_23835213_2 WHERE adam_hinshelwood = \"Junior Mendes\"", "question": "What is the df when Adam Hinshelwood is Junior Mendes?", "context": "CREATE TABLE table_23835213_2 (df VARCHAR, adam_hinshelwood VARCHAR)"}, {"answer": "SELECT undisclosed FROM table_23835213_2 WHERE \"aldershot_town\" = \"aldershot_town\" AND wycombe_wanderers = \"Oxford United\"", "question": "What is the undisclosed when Aldertown is Aldershot Town and Wycombe Wanderers is Oxford United?", "context": "CREATE TABLE table_23835213_2 (undisclosed VARCHAR, wycombe_wanderers VARCHAR)"}, {"answer": "SELECT undisclosed FROM table_23835213_2 WHERE wycombe_wanderers = \"Unattached\"", "question": "What is the undisclosed when Wycombe Wanderers is unattached?", "context": "CREATE TABLE table_23835213_2 (undisclosed VARCHAR, wycombe_wanderers VARCHAR)"}, {"answer": "SELECT head_coach FROM table_2384331_1 WHERE arena = \"Altrincham Ice Dome\"", "question": "Who is the head coach for the team that plays at Altrincham Ice Dome?", "context": "CREATE TABLE table_2384331_1 (head_coach VARCHAR, arena VARCHAR)"}, {"answer": "SELECT arena FROM table_2384331_1 WHERE captain = \"Michael Wales\"", "question": "What arena does the team play at that has Michael Wales as the captain?", "context": "CREATE TABLE table_2384331_1 (arena VARCHAR, captain VARCHAR)"}, {"answer": "SELECT theme FROM table_23871828_1 WHERE week__number = \"Top 9\"", "question": "List all themes from the top 9.", "context": "CREATE TABLE table_23871828_1 (theme VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT week__number FROM table_23871828_1 WHERE original_artist = \"Whitney Houston\"", "question": "In what week was the original singer Whitney Houston.", "context": "CREATE TABLE table_23871828_1 (week__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT song_choice FROM table_23871828_1 WHERE result = \"Safe\" AND order__number = 8", "question": "Name the song for safe result #8.", "context": "CREATE TABLE table_23871828_1 (song_choice VARCHAR, result VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT song_choice FROM table_23871828_1 WHERE theme = \"British Invasion\"", "question": "List the song chose for the British Invasion.", "context": "CREATE TABLE table_23871828_1 (song_choice VARCHAR, theme VARCHAR)"}, {"answer": "SELECT stops FROM table_2385460_1 WHERE stations = 36", "question": "Name the stops for stations 36", "context": "CREATE TABLE table_2385460_1 (stops VARCHAR, stations VARCHAR)"}, {"answer": "SELECT COUNT(lines) FROM table_2385460_1 WHERE route = \"Porta Nolana - Ottaviano- Sarno\"", "question": "Name the number of lines for porta nolana - ottaviano- sarno", "context": "CREATE TABLE table_2385460_1 (lines VARCHAR, route VARCHAR)"}, {"answer": "SELECT travel_time FROM table_2385460_1 WHERE route = \"Porta Nolana - Nola - Baiano\"", "question": "Name the travel time for porta nolana - nola - baiano", "context": "CREATE TABLE table_2385460_1 (travel_time VARCHAR, route VARCHAR)"}, {"answer": "SELECT COUNT(stations) FROM table_2385460_1 WHERE travel_time = \"15 minutes\"", "question": "Name the number of stations for 15 minutes travel time", "context": "CREATE TABLE table_2385460_1 (stations VARCHAR, travel_time VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_23887174_1 WHERE province__ashkharh_ = \"Persarmenia\"", "question": "How big (in km2) is Persarmenia?", "context": "CREATE TABLE table_23887174_1 (area__km\u00b2_ VARCHAR, province__ashkharh_ VARCHAR)"}, {"answer": "SELECT center FROM table_23887174_1 WHERE province__ashkharh_ = \"Artsakh\"", "question": "What's the center of the Artsakh province?", "context": "CREATE TABLE table_23887174_1 (center VARCHAR, province__ashkharh_ VARCHAR)"}, {"answer": "SELECT COUNT(province__ashkharh_) FROM table_23887174_1 WHERE center = \"Baghaberd\"", "question": "How many different provinces is Baghaberd the center of?", "context": "CREATE TABLE table_23887174_1 (province__ashkharh_ VARCHAR, center VARCHAR)"}, {"answer": "SELECT MIN(area__km\u00b2_) FROM table_23887174_1 WHERE armenian_name = \"\u0553\u0561\u0575\u057f\u0561\u056f\u0561\u0580\u0561\u0576\"", "question": "How big is the province with the Armenian name of \u0583\u0561\u0575\u057f\u0561\u056f\u0561\u0580\u0561\u0576?", "context": "CREATE TABLE table_23887174_1 (area__km\u00b2_ INTEGER, armenian_name VARCHAR)"}, {"answer": "SELECT center FROM table_23887174_1 WHERE area__km\u00b2_ = 23860", "question": "What's the center of the province that spreads out on 23860 km2?", "context": "CREATE TABLE table_23887174_1 (center VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(number_of_cantons__gavars_) FROM table_23887174_1 WHERE armenian_name = \"\u054e\u0561\u057d\u057a\u0578\u0582\u0580\u0561\u056f\u0561\u0576\"", "question": "How many different numbers of cantons does the province with the Armenian name \u057e\u0561\u057d\u057a\u0578\u0582\u0580\u0561\u056f\u0561\u0576 have?", "context": "CREATE TABLE table_23887174_1 (number_of_cantons__gavars_ VARCHAR, armenian_name VARCHAR)"}, {"answer": "SELECT seasons FROM table_23886181_1 WHERE no = \"3\"", "question": "what are the seasons for no 3?", "context": "CREATE TABLE table_23886181_1 (seasons VARCHAR, no VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_2387790_1 WHERE poles = 2", "question": "what are the maximum wins where the poles are 2?", "context": "CREATE TABLE table_2387790_1 (wins INTEGER, poles VARCHAR)"}, {"answer": "SELECT translation FROM table_23915_4 WHERE ipa___rio_de_janeiro__ = \"ki\u0325 mo\u031e\u0255\u02c8t\u027ea\u027e\u025c\u0303w\u0303 n\u0250 \u02c8t\u025b\u0281\u0259 t\u0255\u0129\u0291i\u02c8t\u025c\u0303n\u0259\"", "question": "What is the original of the ipa ( rio de janeiro )translation ki\u0325 mo\u031e\u0255\u02c8t\u027ea\u027e\u025c\u0303w\u0303 n\u0250 \u02c8t\u025b\u0281\u0259 t\u0255\u0129\u0291i\u02c8t\u025c\u0303n\u0259?", "context": "CREATE TABLE table_23915_4 (translation VARCHAR, ipa___rio_de_janeiro__ VARCHAR)"}, {"answer": "SELECT translation FROM table_23915_4 WHERE ipa___s\u00e3o_paulo__ = \"d\u0250\u0303\u02d0\u02c8t\u0255i\u0263\u0250 \u02c8t\u0250\u0303\u028a\u032f\u0303 \u0250\u0303\u02c8mad\u0250 \u02c8su\u0250 \u0266\u00f5\u031e\u02c8m\u0259n\u0259\"", "question": "What is the original of the  ipa ( s\u00e3o paulo ) translation d\u0250\u0303\u02d0\u02c8t\u0255i\u0263\u0250 \u02c8t\u0250\u0303\u028a\u032f\u0303 \u0250\u0303\u02c8mad\u0250 \u02c8su\u0250 \u0266\u00f5\u031e\u02c8m\u0259n\u0259?", "context": "CREATE TABLE table_23915_4 (translation VARCHAR, ipa___s\u00e3o_paulo__ VARCHAR)"}, {"answer": "SELECT frequency FROM table_23910822_1 WHERE callsign = \"DYMY\"", "question": "Which frequency is DYMY?", "context": "CREATE TABLE table_23910822_1 (frequency VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT frequency FROM table_23915973_1 WHERE branding = \"106.3 Energy FM Naga\"", "question": "What is the frequency when radio station branding is 106.3 energy fm naga?", "context": "CREATE TABLE table_23915973_1 (frequency VARCHAR, branding VARCHAR)"}, {"answer": "SELECT callsign FROM table_23915973_1 WHERE power_kw = \"25kW\"", "question": "What is the callsign when power kw is 25kw?", "context": "CREATE TABLE table_23915973_1 (callsign VARCHAR, power_kw VARCHAR)"}, {"answer": "SELECT frequency FROM table_23915973_1 WHERE callsign = \"DXRU-FM\"", "question": "What is the frequency when callsign is dxru-fm?", "context": "CREATE TABLE table_23915973_1 (frequency VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT branding FROM table_23915973_1 WHERE power_kw = \"5kW\"", "question": "What is the radio station branding when the power km is 5kw?", "context": "CREATE TABLE table_23915973_1 (branding VARCHAR, power_kw VARCHAR)"}, {"answer": "SELECT coverage FROM table_23915973_1 WHERE power_kw = \"25kW\"", "question": "What is the coverage when power kw is 25kw?", "context": "CREATE TABLE table_23915973_1 (coverage VARCHAR, power_kw VARCHAR)"}, {"answer": "SELECT COUNT(power_kw) FROM table_23915973_1 WHERE frequency = \"93.7 MHz\"", "question": "How many power kw have a frequency of 93.7 mhz?", "context": "CREATE TABLE table_23915973_1 (power_kw VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT written_by FROM table_23918997_1 WHERE us_viewers__million_ = \"0.97\"", "question": "Who were all the writers whose episodes had 0.97 million viewers?", "context": "CREATE TABLE table_23918997_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_23918997_1 WHERE written_by = \"Brent Fletcher & Miranda Kwok\"", "question": "How many directors worked on the episode written by Brent Fletcher & Miranda Kwok?", "context": "CREATE TABLE table_23918997_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_23918997_1 WHERE directed_by = \"Rowan Woods\"", "question": "What was the title of the episode directed by Rowan Woods?", "context": "CREATE TABLE table_23918997_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_23918997_1 WHERE us_viewers__million_ = \"1.29\"", "question": "How many episodes were viewed by 1.29 million people?", "context": "CREATE TABLE table_23918997_1 (no VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_23916272_6 WHERE original_air_date = \"March 1, 2004\"", "question": "Who was the writer for the episode originally airing on March 1, 2004?", "context": "CREATE TABLE table_23916272_6 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_23916272_6 WHERE season__number = 8", "question": "List the title for the season episode number of 8.", "context": "CREATE TABLE table_23916272_6 (title VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT directed_by FROM table_23916272_6 WHERE original_air_date = \"September 29, 2003\"", "question": "Who was the director for the episode originally airing September 29, 2003?", "context": "CREATE TABLE table_23916272_6 (directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_23937219_2 WHERE written_by = \"Harry Hannigan\" AND directed_by = \"Adam Weissman\"", "question": "Name the original air date for harry hannigan directed by adam weissman", "context": "CREATE TABLE table_23937219_2 (original_air_date VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_23937219_3 WHERE season__number = 7", "question": "How many people directed episode 7 In the season?", "context": "CREATE TABLE table_23937219_3 (directed_by VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_23937219_3 WHERE prod_code = 212", "question": "How many original air dates were there for the episode with production code 212?", "context": "CREATE TABLE table_23937219_3 (original_air_date VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT MIN(prod_code) FROM table_23937219_3 WHERE series__number = 31", "question": "What is the production code for episode 31 in the series?", "context": "CREATE TABLE table_23937219_3 (prod_code INTEGER, series__number VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_23927423_4 WHERE relegated_from_league = \"Barking Birmingham & Solihull Stourbridge\"", "question": "How many seasons did Barking Birmingham & Solihull Stourbridge were relegated from league?", "context": "CREATE TABLE table_23927423_4 (season VARCHAR, relegated_from_league VARCHAR)"}, {"answer": "SELECT relegated_to_league FROM table_23927423_4 WHERE relegated_from_league = \"Barking Birmingham & Solihull Stourbridge\"", "question": "Who was relegated to league if Barking Birmingham & Solihull Stourbridge were relegated from league?", "context": "CREATE TABLE table_23927423_4 (relegated_to_league VARCHAR, relegated_from_league VARCHAR)"}, {"answer": "SELECT MIN(teams) FROM table_23927423_4", "question": "How many were the minimum team that participated in the league?", "context": "CREATE TABLE table_23927423_4 (teams INTEGER)"}, {"answer": "SELECT MAX(teams) FROM table_23927423_4 WHERE relegated_to_league = \"Cornish All Blacks Pertemps Bees\"", "question": "How many teams participated (maximum) when Cornish All Blacks Pertemps Bees were relegated to the league?", "context": "CREATE TABLE table_23927423_4 (teams INTEGER, relegated_to_league VARCHAR)"}, {"answer": "SELECT promoted_to_league FROM table_23927423_4 WHERE relegated_to_league = \"Coventry\"", "question": "Who was promoted to the league when Coventry was relegated to the league?", "context": "CREATE TABLE table_23927423_4 (promoted_to_league VARCHAR, relegated_to_league VARCHAR)"}, {"answer": "SELECT COUNT(promoted_from_league) FROM table_23927423_4 WHERE relegated_to_league = \"Esher\"", "question": "How many were promoted from the league when Esher was relegated to the league?", "context": "CREATE TABLE table_23927423_4 (promoted_from_league VARCHAR, relegated_to_league VARCHAR)"}, {"answer": "SELECT MIN(08 AS _09_gp_jgp_2nd) FROM table_23938357_7 WHERE ws_points = 3197", "question": "What is the smallest 08-09 GP/JGP 2nd value when WS points equals 3197?", "context": "CREATE TABLE table_23938357_7 (ws_points VARCHAR)"}, {"answer": "SELECT MIN(07 AS _08_oi_best) FROM table_23938357_7", "question": "What is the smallest 07-08 oi best value?", "context": "CREATE TABLE table_23938357_7 (Id VARCHAR)"}, {"answer": "SELECT COUNT(partner) FROM table_23944006_4 WHERE score = \"5-7, 6-7 (5-7)\"", "question": "Name the number of partners for 5-7, 6-7 (5-7)", "context": "CREATE TABLE table_23944006_4 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_23944006_4 WHERE opponents = \"Cara Black Rennae Stubbs\"", "question": "Name the surface for cara black rennae stubbs", "context": "CREATE TABLE table_23944006_4 (surface VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT score FROM table_23944006_4 WHERE championship = \"San Diego\"", "question": "Name the score for san diego", "context": "CREATE TABLE table_23944006_4 (score VARCHAR, championship VARCHAR)"}, {"answer": "SELECT outcome FROM table_23944006_4 WHERE championship = \"Zurich\"", "question": "Name the outcome for zurich", "context": "CREATE TABLE table_23944006_4 (outcome VARCHAR, championship VARCHAR)"}, {"answer": "SELECT COUNT(surface) FROM table_23944006_4 WHERE score = \"4-6, 2-6\"", "question": "Name the number of surfaces for  4-6, 2-6", "context": "CREATE TABLE table_23944006_4 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(08 AS _09_i_o_best) FROM table_23938357_6", "question": "What is the least 08-09 i/o best?", "context": "CREATE TABLE table_23938357_6 (Id VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_23938357_6 WHERE name = \"Keauna McLaughlin / Rockne Brubaker\"", "question": "How many times is  keauna mclaughlin / rockne brubaker ranked?", "context": "CREATE TABLE table_23938357_6 (rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT sprint_classification FROM table_23944514_15 WHERE aggressive_rider = \"Michael Barry\"", "question": "Name the sprint classification for michael barry", "context": "CREATE TABLE table_23944514_15 (sprint_classification VARCHAR, aggressive_rider VARCHAR)"}, {"answer": "SELECT youth_classification FROM table_23944514_15 WHERE aggressive_rider = \"Michael Barry\"", "question": "Name the youth classification for michael barry", "context": "CREATE TABLE table_23944514_15 (youth_classification VARCHAR, aggressive_rider VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_23944514_15 WHERE aggressive_rider = \"Bradley White\"", "question": "Name the mountains classification for bradley white", "context": "CREATE TABLE table_23944514_15 (mountains_classification VARCHAR, aggressive_rider VARCHAR)"}, {"answer": "SELECT max_downstream_throughput___mbit_s__ FROM table_2394927_1 WHERE profile = \"8b\"", "question": "List all mbit/s with profiles of 8b.", "context": "CREATE TABLE table_2394927_1 (max_downstream_throughput___mbit_s__ VARCHAR, profile VARCHAR)"}, {"answer": "SELECT bandwidth___mhz__ FROM table_2394927_1 WHERE profile = \"8b\"", "question": "What are the mhz when the profile is 8b?", "context": "CREATE TABLE table_2394927_1 (bandwidth___mhz__ VARCHAR, profile VARCHAR)"}, {"answer": "SELECT max_downstream_throughput___mbit_s__ FROM table_2394927_1 WHERE power___dbm__ = \"+17.5\"", "question": "What are the highest mbit/s when the dbm is +17.5?", "context": "CREATE TABLE table_2394927_1 (max_downstream_throughput___mbit_s__ VARCHAR, power___dbm__ VARCHAR)"}, {"answer": "SELECT power___dbm__ FROM table_2394927_1 WHERE profile = \"8a\"", "question": "List all dbm's when profiles are 8a.", "context": "CREATE TABLE table_2394927_1 (power___dbm__ VARCHAR, profile VARCHAR)"}, {"answer": "SELECT MIN(number_of_carriers) FROM table_2394927_1", "question": "What is the lowest number of carriers?", "context": "CREATE TABLE table_2394927_1 (number_of_carriers INTEGER)"}, {"answer": "SELECT directed_by FROM table_23958944_5 WHERE no_by_season = 21", "question": "Who directed episode 21?", "context": "CREATE TABLE table_23958944_5 (directed_by VARCHAR, no_by_season VARCHAR)"}, {"answer": "SELECT MIN(no_by_season) FROM table_23958944_5 WHERE us_viewers__in_millions_ = \"10.81\"", "question": "What episode was watched by 10.81 million US viewers?", "context": "CREATE TABLE table_23958944_5 (no_by_season INTEGER, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_23958944_5 WHERE directed_by = \"Bryan Spicer\" AND written_by = \"Terence Paul Winter\"", "question": "What episode is directed by Bryan Spicer and written by Terence Paul Winter?", "context": "CREATE TABLE table_23958944_5 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT no_by_series FROM table_23958944_6 WHERE no_by_season = 19", "question": "Name the number of series for 19", "context": "CREATE TABLE table_23958944_6 (no_by_series VARCHAR, no_by_season VARCHAR)"}, {"answer": "SELECT us_viewers__in_millions_ FROM table_23958944_6 WHERE production_number = 520", "question": "Name the viewers for 520", "context": "CREATE TABLE table_23958944_6 (us_viewers__in_millions_ VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_23958944_2 WHERE no_by_series = 8", "question": "How many different writers have written the episode with series number 8?", "context": "CREATE TABLE table_23958944_2 (written_by VARCHAR, no_by_series VARCHAR)"}, {"answer": "SELECT title FROM table_23958944_2 WHERE production_number = 103", "question": "What's the title of the episode with production number 103?", "context": "CREATE TABLE table_23958944_2 (title VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT name FROM table_23963781_2 WHERE goals = 1 AND position = \"FW\"", "question": "who has the 1 goal and the position is fw?", "context": "CREATE TABLE table_23963781_2 (name VARCHAR, goals VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(release_date) FROM table_23981741_1 WHERE year = 1988 AND additional_rock_band_3_features = \"None\"", "question": "How many release dates are there for year of 1988 and additional rock band 3 features is none?", "context": "CREATE TABLE table_23981741_1 (release_date VARCHAR, year VARCHAR, additional_rock_band_3_features VARCHAR)"}, {"answer": "SELECT nationality FROM table_23963781_1 WHERE minutes = 0 AND position = \"MF\" AND athletica_career = \"2009\"", "question": "What is the nationality associated with 0 minutes, position of MF, and an Athletica career of 2009?", "context": "CREATE TABLE table_23963781_1 (nationality VARCHAR, athletica_career VARCHAR, minutes VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_23963781_3 WHERE nationality = \"United States\" AND minutes = 30", "question": "What is the position of the player who is from the United States and has 30 minutes? ", "context": "CREATE TABLE table_23963781_3 (position VARCHAR, nationality VARCHAR, minutes VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_23963781_3", "question": "What is the most amount of goals any of the players had? ", "context": "CREATE TABLE table_23963781_3 (goals INTEGER)"}, {"answer": "SELECT song_title FROM table_23981771_1 WHERE artist = \"Dixie Chicks\"", "question": "What is the song for Dixie Chicks?", "context": "CREATE TABLE table_23981771_1 (song_title VARCHAR, artist VARCHAR)"}, {"answer": "SELECT title FROM table_23981882_1 WHERE no_in_season = 7", "question": "What is the episode title for number 7 in the season?", "context": "CREATE TABLE table_23981882_1 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT special FROM table_23982399_12 WHERE challenger = \"Dominique Bouchet\"", "question": "What is the special when the challenger is dominique bouchet?", "context": "CREATE TABLE table_23982399_12 (special VARCHAR, challenger VARCHAR)"}, {"answer": "SELECT winner FROM table_23982399_12 WHERE iron_chef = \"Hiroyuki Sakai\"", "question": "Who was the winner when the iron chef is hiroyuki sakai?", "context": "CREATE TABLE table_23982399_12 (winner VARCHAR, iron_chef VARCHAR)"}, {"answer": "SELECT challenger FROM table_23982399_12 WHERE winner = \"Kimio Nonaga\"", "question": "Who was the challenger when winner was kimio nonaga?", "context": "CREATE TABLE table_23982399_12 (challenger VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MAX(overall_episode__number) FROM table_23982399_1 WHERE original_airdate = \"November 21, 1993\"", "question": "What episode number originally aired on November 21, 1993?", "context": "CREATE TABLE table_23982399_1 (overall_episode__number INTEGER, original_airdate VARCHAR)"}, {"answer": "SELECT challenger FROM table_23982399_1 WHERE overall_episode__number = 5", "question": "Who was the challenger on Episode 5?", "context": "CREATE TABLE table_23982399_1 (challenger VARCHAR, overall_episode__number VARCHAR)"}, {"answer": "SELECT qualifying_end_date FROM table_23995075_2 WHERE \"qualifying_start_date\" = \"qualifying_start_date\"", "question": "What is the qualifying end date when the qualifying start date is qualifying start date?", "context": "CREATE TABLE table_23995075_2 (qualifying_end_date VARCHAR)"}, {"answer": "SELECT teams_that_can_still_qualify FROM table_23995075_2 WHERE teams_that_have_secured_qualification = \"0\" AND teams_started = \"52\"", "question": "How many teams can still qualify when there are 0 teams that have secured qualification and 52 teams started?", "context": "CREATE TABLE table_23995075_2 (teams_that_can_still_qualify VARCHAR, teams_that_have_secured_qualification VARCHAR, teams_started VARCHAR)"}, {"answer": "SELECT teams_that_have_been_eliminated FROM table_23995075_2 WHERE teams_started = \"11\"", "question": "How many teams eliminated when 11 teams started?", "context": "CREATE TABLE table_23995075_2 (teams_that_have_been_eliminated VARCHAR, teams_started VARCHAR)"}, {"answer": "SELECT confederation FROM table_23995075_2 WHERE remaining_places_in_finals = \"4\"", "question": "What is the confederation when there are 4 places remaining in the finals?", "context": "CREATE TABLE table_23995075_2 (confederation VARCHAR, remaining_places_in_finals VARCHAR)"}, {"answer": "SELECT COUNT(qualifying_start_date) FROM table_23995075_2 WHERE confederation = \"CONCACAF\"", "question": "How many qualifying start dates for the Concacaf confederation?", "context": "CREATE TABLE table_23995075_2 (qualifying_start_date VARCHAR, confederation VARCHAR)"}, {"answer": "SELECT remaining_places_in_finals FROM table_23995075_2 WHERE teams_that_can_still_qualify = \"1\" AND teams_that_have_secured_qualification = \"0\"", "question": "How many remaining places in finals when 1 team can still qualify and 0 teams have secured qualification?", "context": "CREATE TABLE table_23995075_2 (remaining_places_in_finals VARCHAR, teams_that_can_still_qualify VARCHAR, teams_that_have_secured_qualification VARCHAR)"}, {"answer": "SELECT COUNT(3) AS :2600 FROM table_23987362_2 WHERE world_record = \"Championship record\"", "question": "How many of 3:26.00 have a championship record?", "context": "CREATE TABLE table_23987362_2 (world_record VARCHAR)"}, {"answer": "SELECT COUNT(3) AS :2600 FROM table_23987362_2 WHERE hicham_el_guerrouj___mar__ = \"Hudson de Souza ( BRA )\"", "question": "How many of 3:26.00 when hicham el guerrouj ( mar ) is hudson de souza ( bra )?", "context": "CREATE TABLE table_23987362_2 (hicham_el_guerrouj___mar__ VARCHAR)"}, {"answer": "SELECT world_record FROM table_23988726_2 WHERE \"saif_saaeed_shaheen___qat__\" = \"saif_saaeed_shaheen___qat__\"", "question": "When saif saaeed shaheen (qat) is the saif saaeed shaheen ( qat ) what is the world record?", "context": "CREATE TABLE table_23988726_2 (world_record VARCHAR)"}, {"answer": "SELECT 3 AS _september_2004 FROM table_23988726_2 WHERE saif_saaeed_shaheen___qat__ = \"Daniel Lincoln ( USA )\"", "question": "When daniel lincoln ( usa ) is the saif saaeed shaheen ( qat ) What is the date for September 3rd, 2004?", "context": "CREATE TABLE table_23988726_2 (saif_saaeed_shaheen___qat__ VARCHAR)"}, {"answer": "SELECT 3 AS _september_2004 FROM table_23988726_2 WHERE \"saif_saaeed_shaheen___qat__\" = \"saif_saaeed_shaheen___qat__\"", "question": "When  saif saaeed shaheen ( qat ) is the  saif saaeed shaheen ( qat ) what is the date on September 3rd, 2004?", "context": "CREATE TABLE table_23988726_2 (Id VARCHAR)"}, {"answer": "SELECT COUNT(1) AS :5328 FROM table_24001246_2 WHERE world_record = \"African record\"", "question": "If the world record is the African record, what is the 1:53.28 total number?", "context": "CREATE TABLE table_24001246_2 (world_record VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2400842_1 WHERE prod__number = 109", "question": "Who directed the epsiode with production number 109?", "context": "CREATE TABLE table_2400842_1 (directed_by VARCHAR, prod__number VARCHAR)"}, {"answer": "SELECT MIN(finish) FROM table_24004949_1 WHERE driver = \"Larry Dickson\"", "question": "Name the least finish for larry dickson", "context": "CREATE TABLE table_24004949_1 (finish INTEGER, driver VARCHAR)"}, {"answer": "SELECT 26 AS _august_2005 FROM table_24011830_2 WHERE world_record = \"Asian record\"", "question": "Name the 26 august 2005 asian record", "context": "CREATE TABLE table_24011830_2 (world_record VARCHAR)"}, {"answer": "SELECT COUNT(kenenisa_bekele___eth__) FROM table_24011830_2 WHERE world_record = \"African record\"", "question": "Name the total number of kenesia for african record", "context": "CREATE TABLE table_24011830_2 (kenenisa_bekele___eth__ VARCHAR, world_record VARCHAR)"}, {"answer": "SELECT COUNT(3 AS rd_runner_up) FROM table_24014744_1 WHERE putri_pariwisata_indonesia = \"Albertina Fransisca Mailoa\"", "question": "List the number of runners up when albertina fransisca mailoa won the putri pariwisata contest?", "context": "CREATE TABLE table_24014744_1 (putri_pariwisata_indonesia VARCHAR)"}, {"answer": "SELECT 1 AS st_runner_up FROM table_24014744_1 WHERE putri_pariwisata_indonesia = \"Albertina Fransisca Mailoa\"", "question": "Who won 2nd place when albertina fransisca mailoa was the winner of the putri pariwisata  contest?", "context": "CREATE TABLE table_24014744_1 (putri_pariwisata_indonesia VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_24018430_3 WHERE production_code = 216", "question": "what is the original air date for production code 216?", "context": "CREATE TABLE table_24018430_3 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_24018430_3 WHERE directed_by = \"Shannon Flynn\"", "question": "what is writtenand directed by shannon flynn?", "context": "CREATE TABLE table_24018430_3 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_24018430_3 WHERE no_in_season = 12", "question": "what number is us viewers in season 12?", "context": "CREATE TABLE table_24018430_3 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT population_density___km\u00b2_2011_ FROM table_24027047_1 WHERE area__km\u00b2__2011 * * = \"684.37\"", "question": "What was the population density in km2 for 2011 in the division where area in km2 was 684.37 in 2011? ", "context": "CREATE TABLE table_24027047_1 (population_density___km\u00b2_2011_ VARCHAR, area__km\u00b2__2011 VARCHAR)"}, {"answer": "SELECT administrative_division FROM table_24027047_1 WHERE population_density___km\u00b2_2011_ = \"8,552.4\"", "question": "What division had a population density of 8,552.4 km2 in 2011?", "context": "CREATE TABLE table_24027047_1 (administrative_division VARCHAR, population_density___km\u00b2_2011_ VARCHAR)"}, {"answer": "SELECT area__km\u00b2__2011 * * FROM table_24027047_1 WHERE administrative_division = \"Narsingdi District\"", "question": "What was the area in km2 in 2011 for the Narsingdi District?", "context": "CREATE TABLE table_24027047_1 (area__km\u00b2__2011 VARCHAR, administrative_division VARCHAR)"}, {"answer": "SELECT administrative_division FROM table_24027047_1 WHERE population_density___km\u00b2_2011_ = \"1,604.3\"", "question": "In what division was there a population density in km2 of 1,604.3 in 2011?", "context": "CREATE TABLE table_24027047_1 (administrative_division VARCHAR, population_density___km\u00b2_2011_ VARCHAR)"}, {"answer": "SELECT administrative_division FROM table_24027047_1 WHERE population_density___km\u00b2_2011_ = \"4,491.8\"", "question": "In what division was there a population density in km2 of 4,491.8 in 2011? ", "context": "CREATE TABLE table_24027047_1 (administrative_division VARCHAR, population_density___km\u00b2_2011_ VARCHAR)"}, {"answer": "SELECT area_coordinator FROM table_2402209_1 WHERE population__2010_ = 1715", "question": "What's the area coordinator for the municipality with 1715 people living in it in 2010?", "context": "CREATE TABLE table_2402209_1 (area_coordinator VARCHAR, population__2010_ VARCHAR)"}, {"answer": "SELECT COUNT(no_of_barangays) FROM table_2402209_1 WHERE population__2010_ = 13824", "question": "How many different counts of tue number of Barangays are there for the municipality with 13824 citizens in 2010?", "context": "CREATE TABLE table_2402209_1 (no_of_barangays VARCHAR, population__2010_ VARCHAR)"}, {"answer": "SELECT no_of_barangays FROM table_2402209_1 WHERE area_coordinator = \"110.95\"", "question": "How many Barangays lived in the municipality with area coordinator of 110.95?", "context": "CREATE TABLE table_2402209_1 (no_of_barangays VARCHAR, area_coordinator VARCHAR)"}, {"answer": "SELECT circuit FROM table_24037660_2 WHERE rnd = 3", "question": "What circuit had rnd 3?", "context": "CREATE TABLE table_24037660_2 (circuit VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT COUNT(circuit) FROM table_24037660_2 WHERE lmp_winning_team = \"#1 Patr\u00f3n Highcroft Racing\" AND gtc_winning_team = \"#81 Alex Job Racing\"", "question": "How many circuits had a winning team of #1 patr\u00f3n highcroft racing ang gtc winning team #81 alex job racing ?", "context": "CREATE TABLE table_24037660_2 (circuit VARCHAR, lmp_winning_team VARCHAR, gtc_winning_team VARCHAR)"}, {"answer": "SELECT lmpc_winning_team FROM table_24037660_2 WHERE rnd = 3", "question": "What was the winning team lmpc in rnd 3?", "context": "CREATE TABLE table_24037660_2 (lmpc_winning_team VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT gtc_winning_team FROM table_24037660_2 WHERE lmp_winning_team = \"#8 Drayson Racing\"", "question": "What was the gtc winning team when lmp winning team was #8 drayson racing?", "context": "CREATE TABLE table_24037660_2 (gtc_winning_team VARCHAR, lmp_winning_team VARCHAR)"}, {"answer": "SELECT captain FROM table_24039173_1 WHERE location = \"Chaguaramas\"", "question": "Who is the captain in Chaguaramas?", "context": "CREATE TABLE table_24039173_1 (captain VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_24039173_1 WHERE stadium = \"Sangre Grande Ground\"", "question": "What is the minimum capacity for Sangre Grande Ground?", "context": "CREATE TABLE table_24039173_1 (capacity INTEGER, stadium VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_24039173_1 WHERE team = \"North East Stars\"", "question": "What is the capacity for Sangre Grande Ground, home of the North East Stars?", "context": "CREATE TABLE table_24039173_1 (capacity VARCHAR, team VARCHAR)"}, {"answer": "SELECT stadium FROM table_24039173_1 WHERE team = \"San Juan Jabloteh\"", "question": "San Juan Jabloteh calls which stadium home?", "context": "CREATE TABLE table_24039173_1 (stadium VARCHAR, team VARCHAR)"}, {"answer": "SELECT innings FROM table_24039597_26 WHERE caught = 20", "question": "What was the innings when caught was 20?", "context": "CREATE TABLE table_24039597_26 (innings VARCHAR, caught VARCHAR)"}, {"answer": "SELECT matches FROM table_24039597_26 WHERE player = \"MS Dhoni\"", "question": "What ist he matches where the player is ms dhoni?", "context": "CREATE TABLE table_24039597_26 (matches VARCHAR, player VARCHAR)"}, {"answer": "SELECT stumped FROM table_24039597_26 WHERE innings = 143", "question": "What is stumped when inning is 143?", "context": "CREATE TABLE table_24039597_26 (stumped VARCHAR, innings VARCHAR)"}, {"answer": "SELECT COUNT(dismissals) FROM table_24039597_26 WHERE matches = 44", "question": "How many matches were 44?", "context": "CREATE TABLE table_24039597_26 (dismissals VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MIN(stumped) FROM table_24039597_26 WHERE matches = 14", "question": "What is stumped when matches is 14?", "context": "CREATE TABLE table_24039597_26 (stumped INTEGER, matches VARCHAR)"}, {"answer": "SELECT COUNT(monarch) FROM table_24046134_1 WHERE crowned = \"23 May 1059\"", "question": "Name the total number of monarchs for 23 may 1059 crowned", "context": "CREATE TABLE table_24046134_1 (monarch VARCHAR, crowned VARCHAR)"}, {"answer": "SELECT playoffs FROM table_2402864_1 WHERE open_cup = \"Did not qualify\" AND year = 1998", "question": "What was the playoff result where the league did not qualify in the Open Cup in 1998?", "context": "CREATE TABLE table_2402864_1 (playoffs VARCHAR, open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_2402864_1 WHERE regular_season = \"3rd, Southeast\" AND league = \"USL PDL\"", "question": "What was the earliest year where USL PDL played in 3rd, Southeast season?", "context": "CREATE TABLE table_2402864_1 (year INTEGER, regular_season VARCHAR, league VARCHAR)"}, {"answer": "SELECT open_cup FROM table_2402864_1 WHERE year = 2003", "question": "What was the Open Cup results for the year 2003?", "context": "CREATE TABLE table_2402864_1 (open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(total_evm_votes) FROM table_24051013_3", "question": "What is the highest total for evm votes", "context": "CREATE TABLE table_24051013_3 (total_evm_votes INTEGER)"}, {"answer": "SELECT episode FROM table_24051050_1 WHERE contest = \"Heat 1\"", "question": "In what episode did heat 1 take place?", "context": "CREATE TABLE table_24051050_1 (episode VARCHAR, contest VARCHAR)"}, {"answer": "SELECT events FROM table_24051050_1 WHERE episode = 12", "question": "What events took place in episode 12?", "context": "CREATE TABLE table_24051050_1 (events VARCHAR, episode VARCHAR)"}, {"answer": "SELECT challengers__female_ FROM table_24051050_1 WHERE episode = 28", "question": "Which female challengers featured in episode 28?", "context": "CREATE TABLE table_24051050_1 (challengers__female_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_24055352_1 WHERE hometown = \"Los Angeles\"", "question": "How many players came from Los Angeles?", "context": "CREATE TABLE table_24055352_1 (name VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT height FROM table_24055352_1 WHERE hometown = \"Los Angeles\"", "question": "What is the height when the player is from Los Angeles?", "context": "CREATE TABLE table_24055352_1 (height VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT height FROM table_24055352_1 WHERE name = \"Kammeon Holsey\"", "question": "What is Kammeon Holsey's height?", "context": "CREATE TABLE table_24055352_1 (height VARCHAR, name VARCHAR)"}, {"answer": "SELECT high_school FROM table_24055352_1 WHERE number = 5", "question": "What is the high school of the player number 5?", "context": "CREATE TABLE table_24055352_1 (high_school VARCHAR, number VARCHAR)"}, {"answer": "SELECT COUNT(world_record) FROM table_24062944_2 WHERE kenenisa_bekele___eth__ = \"Mar\u00edlson Gomes dos Santos ( BRA )\"", "question": "How many times is kenenisa bekele ( eth ) is mar\u00edlson gomes dos santos ( bra )?", "context": "CREATE TABLE table_24062944_2 (world_record VARCHAR, kenenisa_bekele___eth__ VARCHAR)"}, {"answer": "SELECT against FROM table_24074130_5 WHERE opponent = \"Andreas Vinciguerra\"", "question": "What is every entry for against with opponent Andreas Vinciguerra?", "context": "CREATE TABLE table_24074130_5 (against VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_24074130_5 WHERE against = \"Sweden\"", "question": "What is every surface against Sweden?", "context": "CREATE TABLE table_24074130_5 (surface VARCHAR, against VARCHAR)"}, {"answer": "SELECT win_lose FROM table_24074130_5 WHERE against = \"Sweden\"", "question": "What is every entry in the win/lose against Sweden?", "context": "CREATE TABLE table_24074130_5 (win_lose VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_2409041_3 WHERE original_air_date = \"November 16, 1990\"", "question": "How many production codes have an original airdate of November 16, 1990?", "context": "CREATE TABLE table_2409041_3 (production_code VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_2409041_3 WHERE original_air_date = \"March 1, 1991\"", "question": "What series number had an original airdate of March 1, 1991?", "context": "CREATE TABLE table_2409041_3 (no_in_series INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_2409041_3 WHERE no_in_series = 39", "question": "How many production codes were in series 39?", "context": "CREATE TABLE table_2409041_3 (production_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_2409041_3 WHERE no_in_season = 23", "question": "Who wrote season 23?", "context": "CREATE TABLE table_2409041_3 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_2409041_5 WHERE no_in_series = 86", "question": "What is the production code for episode number 86 in the series?", "context": "CREATE TABLE table_2409041_5 (production_code INTEGER, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_2409041_5 WHERE original_air_date = \"January 8, 1993\"", "question": "What is the production code for the episode that originally aired on January 8, 1993?", "context": "CREATE TABLE table_2409041_5 (production_code INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT written_by FROM table_2409041_5 WHERE original_air_date = \"January 15, 1993\"", "question": "Who wrote the episode that originally aired on January 15, 1993?", "context": "CREATE TABLE table_2409041_5 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_2409041_5 WHERE no_in_series = 77", "question": "What is the name of episode number 77 in the series?", "context": "CREATE TABLE table_2409041_5 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2409041_2 WHERE no_in_series = 17", "question": "When 17 is the number in series who is the director?", "context": "CREATE TABLE table_2409041_2 (directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2409041_2 WHERE no_in_series = 21", "question": "When 21 is the number in series what is the air date?", "context": "CREATE TABLE table_2409041_2 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_2409041_2 WHERE production_code = 446004", "question": "When 446004 is the production code who are the writers?", "context": "CREATE TABLE table_2409041_2 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_2409041_9 WHERE written_by = \"Gary M. Goodrich\"", "question": "What was the name of the epiode written by Gary M. Goodrich?", "context": "CREATE TABLE table_2409041_9 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2409041_9 WHERE no_in_series = 179", "question": "Who directed episode number 179 in the series?", "context": "CREATE TABLE table_2409041_9 (directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT voltage FROM table_24096813_15 WHERE part_number_s_ = \"TT80503300\"", "question": "What's  the voltage of the model with part number TT80503300?", "context": "CREATE TABLE table_24096813_15 (voltage VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT frequency FROM table_24096813_15 WHERE part_number_s_ = \"TT80503300\"", "question": "What's the frequency of the model with part number TT80503300?", "context": "CREATE TABLE table_24096813_15 (frequency VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_24096813_15 WHERE tdp = \"2.9 (Max.4.1~5.4) W\"", "question": "What's the part number of the model with TDP of 2.9 (max.4.1~5.4) w?", "context": "CREATE TABLE table_24096813_15 (part_number_s_ VARCHAR, tdp VARCHAR)"}, {"answer": "SELECT l1_cache FROM table_24096813_15 WHERE sspec_number = \"SL2Z3, SL28Q (myA0)\"", "question": "What's the l1 cache of the model with sspec number sl2z3, sl28q (mya0)?", "context": "CREATE TABLE table_24096813_15 (l1_cache VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT COUNT(region_4__australia_) FROM table_240936_2 WHERE region_2__uk_ = \"July 9, 2007\"", "question": "How many region 4 dates are associated with a region 2 date of July 9, 2007?", "context": "CREATE TABLE table_240936_2 (region_4__australia_ VARCHAR, region_2__uk_ VARCHAR)"}, {"answer": "SELECT region_1__can_ FROM table_240936_2 WHERE region_1__us_ = \"January 16, 2007\"", "question": "What is the region 1 (Canada) date associated with a region 1 (US) date of January 16, 2007?", "context": "CREATE TABLE table_240936_2 (region_1__can_ VARCHAR, region_1__us_ VARCHAR)"}, {"answer": "SELECT region_4__australia_ FROM table_240936_2 WHERE region_1__us_ = \"January 16, 2007\"", "question": "What is the region 4 (Aus) date associated with a region 1 (US) date of January 16, 2007?", "context": "CREATE TABLE table_240936_2 (region_4__australia_ VARCHAR, region_1__us_ VARCHAR)"}, {"answer": "SELECT region_2__uk_ FROM table_240936_2 WHERE region_4__australia_ = \"July 31, 2008\"", "question": "What is the region 2 (UK) date associated with a region 4 (Aus) date of July 31, 2008?", "context": "CREATE TABLE table_240936_2 (region_2__uk_ VARCHAR, region_4__australia_ VARCHAR)"}, {"answer": "SELECT region_1__can_ FROM table_240936_2 WHERE region_2__uk_ = \"May 18, 2009\"", "question": "What is the region 1 (Canada) date associated with a region 2 (UK) date of May 18, 2009?", "context": "CREATE TABLE table_240936_2 (region_1__can_ VARCHAR, region_2__uk_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2409041_6 WHERE original_air_date = \"September 24, 1993\"", "question": "Who was the director for the episode airing on September 24, 1993?", "context": "CREATE TABLE table_2409041_6 (directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_2409041_6 WHERE no_in_season = 18", "question": "In which series was season 18?", "context": "CREATE TABLE table_2409041_6 (no_in_series VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT title FROM table_2409041_6 WHERE no_in_season = 2", "question": "What is the title of season 2? ", "context": "CREATE TABLE table_2409041_6 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT brand_name FROM table_24099628_1 WHERE model__list_ = \"E4xxx\"", "question": "What is the brand name associated with a model name e4xxx?", "context": "CREATE TABLE table_24099628_1 (brand_name VARCHAR, model__list_ VARCHAR)"}, {"answer": "SELECT brand_name FROM table_24099628_1 WHERE model__list_ = \"4x0\"", "question": "What is the brand name associated with the model 4x0?", "context": "CREATE TABLE table_24099628_1 (brand_name VARCHAR, model__list_ VARCHAR)"}, {"answer": "SELECT cores FROM table_24099628_1 WHERE model__list_ = \"E2xxx\"", "question": "What is the number of cores associated with model name e2xxx?", "context": "CREATE TABLE table_24099628_1 (cores VARCHAR, model__list_ VARCHAR)"}, {"answer": "SELECT tdp FROM table_24099628_1 WHERE model__list_ = \"4x0\"", "question": "What is the wattage/TDP associated with model name 4x0?", "context": "CREATE TABLE table_24099628_1 (tdp VARCHAR, model__list_ VARCHAR)"}, {"answer": "SELECT tdp FROM table_24100843_1 WHERE socket = \"BGA956\" AND processor = \"Penryn-3M\"", "question": "When the socket is bga956 and processor is penryn-3m, what is the tdp?", "context": "CREATE TABLE table_24100843_1 (tdp VARCHAR, socket VARCHAR, processor VARCHAR)"}, {"answer": "SELECT processor FROM table_24100843_1 WHERE model__list_ = \"P9xxx\"", "question": "Whats the processor for p9xxx?", "context": "CREATE TABLE table_24100843_1 (processor VARCHAR, model__list_ VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_24099916_1 WHERE tdp = \"5.5-10 W\"", "question": "What's the l2 cache of the model with TDP of 5.5-10 w?", "context": "CREATE TABLE table_24099916_1 (l2_cache VARCHAR, tdp VARCHAR)"}, {"answer": "SELECT model__list_ FROM table_24099916_1 WHERE socket = \"BGA479\" AND tdp = \"5.5 W\"", "question": "What's the model of the processor with BGA479 socket and a 5.5 w TDP?", "context": "CREATE TABLE table_24099916_1 (model__list_ VARCHAR, socket VARCHAR, tdp VARCHAR)"}, {"answer": "SELECT model__list_ FROM table_24099916_1 WHERE tdp = \"5.5 W\"", "question": "What's the model of the processor with a 5.5 w TDP?", "context": "CREATE TABLE table_24099916_1 (model__list_ VARCHAR, tdp VARCHAR)"}, {"answer": "SELECT MIN(cores) FROM table_24099916_1", "question": "What's the smallest number for cores of any of the processor models?", "context": "CREATE TABLE table_24099916_1 (cores INTEGER)"}, {"answer": "SELECT model__list_ FROM table_24101118_1 WHERE processor = \"Yorkfield\" AND brand_name = \"Xeon\"", "question": "what is the model where the processor is yorkfield and the brand name is xeon?", "context": "CREATE TABLE table_24101118_1 (model__list_ VARCHAR, processor VARCHAR, brand_name VARCHAR)"}, {"answer": "SELECT socket FROM table_24101118_1 WHERE brand_name = \"Core 2 Extreme\"", "question": "what is the socket that has a brand name of core 2 extreme?", "context": "CREATE TABLE table_24101118_1 (socket VARCHAR, brand_name VARCHAR)"}, {"answer": "SELECT processor FROM table_24101118_1 WHERE model__list_ = \"X33x0\"", "question": "what is the name of the processor for model x33x0?", "context": "CREATE TABLE table_24101118_1 (processor VARCHAR, model__list_ VARCHAR)"}, {"answer": "SELECT MIN(before) FROM table_24108789_4", "question": "What is the earliest number in before?", "context": "CREATE TABLE table_24108789_4 (before INTEGER)"}, {"answer": "SELECT MAX(after) FROM table_24108789_4 WHERE player = \"Steve Stricker\"", "question": "What is the latest after when the player is Steve Stricker?", "context": "CREATE TABLE table_24108789_4 (after INTEGER, player VARCHAR)"}, {"answer": "SELECT before FROM table_24108789_4 WHERE player = \"Geoff Ogilvy\"", "question": "List all before numbers when Geoff Ogilvy was playing.", "context": "CREATE TABLE table_24108789_4 (before VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(events) FROM table_24108789_6 WHERE _number = 7", "question": "Name the least events for number 7", "context": "CREATE TABLE table_24108789_6 (events INTEGER, _number VARCHAR)"}, {"answer": "SELECT COUNT(events) FROM table_24108789_6 WHERE points = 3031", "question": "Name the number of events for 3031", "context": "CREATE TABLE table_24108789_6 (events VARCHAR, points VARCHAR)"}, {"answer": "SELECT player FROM table_24108789_6 WHERE events = 22", "question": "Name the player for 22 events", "context": "CREATE TABLE table_24108789_6 (player VARCHAR, events VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_24108789_6 WHERE _number = 6", "question": "Name the least points for number 6", "context": "CREATE TABLE table_24108789_6 (points INTEGER, _number VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_24108789_6 WHERE player = \"Steve Stricker\"", "question": "Name the most number for steve stricker", "context": "CREATE TABLE table_24108789_6 (_number INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_24108789_6 WHERE reset_points = 800", "question": "Name the total number of points for 800 reset", "context": "CREATE TABLE table_24108789_6 (points VARCHAR, reset_points VARCHAR)"}, {"answer": "SELECT kennedy__percentage FROM table_24115349_4 WHERE coakley__percentage = \"37.9%\"", "question": "What percentage did kennedy win while coakly won 37.9%", "context": "CREATE TABLE table_24115349_4 (kennedy__percentage VARCHAR, coakley__percentage VARCHAR)"}, {"answer": "SELECT MIN(kennedy_votes) FROM table_24115349_4 WHERE coakley__percentage = \"66.2%\"", "question": "How many votes did kennedy win when coakley won 66.2%", "context": "CREATE TABLE table_24115349_4 (kennedy_votes INTEGER, coakley__percentage VARCHAR)"}, {"answer": "SELECT coakley__percentage FROM table_24115349_4 WHERE kennedy__percentage = \"1.6%\"", "question": "What was the percentage of votes for coakley when kennedy won 1.6%", "context": "CREATE TABLE table_24115349_4 (coakley__percentage VARCHAR, kennedy__percentage VARCHAR)"}, {"answer": "SELECT COUNT(kennedy_votes) FROM table_24115349_4 WHERE coakley_votes = 2139", "question": "How many votes did kennedy win when coaklely won 2139 votes?", "context": "CREATE TABLE table_24115349_4 (kennedy_votes VARCHAR, coakley_votes VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_24123547_2 WHERE week = 7", "question": "How many locations did the team play at on week 7?", "context": "CREATE TABLE table_24123547_2 (location VARCHAR, week VARCHAR)"}, {"answer": "SELECT final_score FROM table_24123547_2 WHERE opponent = \"Lions\"", "question": "What was the result of the games VS the Lions?", "context": "CREATE TABLE table_24123547_2 (final_score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_24126518_2 WHERE opponent = \"Alouettes\"", "question": "Name the number of dates for alouettes", "context": "CREATE TABLE table_24126518_2 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_24126518_2 WHERE final_score = \"L 36\u20131\"", "question": "Name the least attendance for l 36\u20131", "context": "CREATE TABLE table_24126518_2 (attendance INTEGER, final_score VARCHAR)"}, {"answer": "SELECT final_score FROM table_24126518_2 WHERE location = \"Exhibition Stadium\" AND date = \"September 10\"", "question": "Name the final score for exhibition stadium for september 10", "context": "CREATE TABLE table_24126518_2 (final_score VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_24126518_2 WHERE week = 11", "question": "Name the number of record for week 11", "context": "CREATE TABLE table_24126518_2 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_24126606_2 WHERE week = 12", "question": "Name the opponent for week 12", "context": "CREATE TABLE table_24126606_2 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_24126606_2 WHERE date = \"October 3\"", "question": "Name the total number of opponent for october 3", "context": "CREATE TABLE table_24126606_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT final_score FROM table_24126606_2 WHERE week = 5", "question": "Name the final score for week 5", "context": "CREATE TABLE table_24126606_2 (final_score VARCHAR, week VARCHAR)"}, {"answer": "SELECT directed_by FROM table_24132054_1 WHERE no_in_series = 28", "question": "Who directed episode 28 in the series?", "context": "CREATE TABLE table_24132054_1 (directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_24132083_1 WHERE written_by = \"Lauren Gussis\"", "question": "What in the series number of the episode written by Lauren Gussis?", "context": "CREATE TABLE table_24132083_1 (no_in_series INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_24132083_1 WHERE directed_by = \"Marcos Siega\" AND written_by = \"Scott Buck\"", "question": "On how many different dates did the episode directed by Marcos Siega and written by Scott Buck air for the first time?", "context": "CREATE TABLE table_24132083_1 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_24132083_1 WHERE written_by = \"Tim Schlattmann\"", "question": "What's the series number of the episode written by Tim Schlattmann?", "context": "CREATE TABLE table_24132083_1 (no_in_series INTEGER, written_by VARCHAR)"}, {"answer": "SELECT semifinal_matches FROM table_2413292_1 WHERE commercial_name = \"Buick WCT Finals\"", "question": "Who played in the semi finals matches at the Buick WCT finals?", "context": "CREATE TABLE table_2413292_1 (semifinal_matches VARCHAR, commercial_name VARCHAR)"}, {"answer": "SELECT date FROM table_24138601_2 WHERE final_score = \"L 28\u201315\"", "question": "Name the date for  l 28\u201315 ", "context": "CREATE TABLE table_24138601_2 (date VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT location FROM table_24136365_2 WHERE opponent = \"Tiger-Cats\"", "question": "When tiger-cats is the opponent what is the location?", "context": "CREATE TABLE table_24136365_2 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_24136365_2 WHERE week = 4", "question": "When 4 is the week what is the location?", "context": "CREATE TABLE table_24136365_2 (location VARCHAR, week VARCHAR)"}, {"answer": "SELECT record FROM table_24136814_3 WHERE date = \"September 7\"", "question": "What was the record for the Argonauts on September 7?", "context": "CREATE TABLE table_24136814_3 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_24136814_3", "question": "What is he smallest numbered week?", "context": "CREATE TABLE table_24136814_3 (week INTEGER)"}, {"answer": "SELECT celli FROM table_2414_1 WHERE section_size = \"20 players\"", "question": "How many cellos are suggested in the reference with section size for 20 players?", "context": "CREATE TABLE table_2414_1 (celli VARCHAR, section_size VARCHAR)"}, {"answer": "SELECT reference FROM table_2414_1 WHERE violas = 2 AND author = \"Nelson Riddle\"", "question": "What reference, written by Nelson Riddle, suggests 2 violas?", "context": "CREATE TABLE table_2414_1 (reference VARCHAR, violas VARCHAR, author VARCHAR)"}, {"answer": "SELECT MAX(basses) FROM table_2414_1", "question": "What is the biggest number of basses suggested in either one of the references?", "context": "CREATE TABLE table_2414_1 (basses INTEGER)"}, {"answer": "SELECT current_marital_status FROM table_24143253_2 WHERE name = \"Stella Farentino\"", "question": "What is Stella Farentino's current relationship status?", "context": "CREATE TABLE table_24143253_2 (current_marital_status VARCHAR, name VARCHAR)"}, {"answer": "SELECT children_together FROM table_24143253_2 WHERE deceased_spouse = \"Dennis Hawley\"", "question": "How many children did Dennis Hawley have at his time of death?", "context": "CREATE TABLE table_24143253_2 (children_together VARCHAR, deceased_spouse VARCHAR)"}, {"answer": "SELECT cause_of_death FROM table_24143253_2 WHERE name = \"Stella Farentino\"", "question": "How did Stella Farentino die?", "context": "CREATE TABLE table_24143253_2 (cause_of_death VARCHAR, name VARCHAR)"}, {"answer": "SELECT cause_of_death FROM table_24143253_4 WHERE length_of_marriage = \"28 years\"", "question": "What was the cause of death in the marriage that lasted 28 years? ", "context": "CREATE TABLE table_24143253_4 (cause_of_death VARCHAR, length_of_marriage VARCHAR)"}, {"answer": "SELECT length_of_marriage FROM table_24143253_4 WHERE name = \"Ray Bradbury\"", "question": "How long were Ray Bradbury and his wife married?", "context": "CREATE TABLE table_24143253_4 (length_of_marriage VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_24143253_1 WHERE deceased_spouse = \"Louis Malle\"", "question": "Name the name for deceased spouse being louis malle", "context": "CREATE TABLE table_24143253_1 (name VARCHAR, deceased_spouse VARCHAR)"}, {"answer": "SELECT deceased_spouse FROM table_24143253_1 WHERE length_of_marriage = \"24 years\"", "question": "Name the deceased spouse for length of marriage being 24 years", "context": "CREATE TABLE table_24143253_1 (deceased_spouse VARCHAR, length_of_marriage VARCHAR)"}, {"answer": "SELECT deceased_spouse FROM table_24143253_1 WHERE name = \"Carol DeLuise\"", "question": "Name the decease spouse for carol deluise", "context": "CREATE TABLE table_24143253_1 (deceased_spouse VARCHAR, name VARCHAR)"}, {"answer": "SELECT children_together FROM table_24143253_1 WHERE length_of_marriage = \"9 years\"", "question": "Name the children together for 9 years of marriage", "context": "CREATE TABLE table_24143253_1 (children_together VARCHAR, length_of_marriage VARCHAR)"}, {"answer": "SELECT deceased_spouse FROM table_24143253_5 WHERE length_of_marriage = \"4 years\"", "question": "Who was the deceased spouse who was married for 4 years?", "context": "CREATE TABLE table_24143253_5 (deceased_spouse VARCHAR, length_of_marriage VARCHAR)"}, {"answer": "SELECT children_together FROM table_24143253_5 WHERE name = \"Benjamin Harrison\"", "question": "Who were the children of Benjamin Harrison?", "context": "CREATE TABLE table_24143253_5 (children_together VARCHAR, name VARCHAR)"}, {"answer": "SELECT segment_1 FROM table_24172078_2 WHERE episode__number = \"2/225\"", "question": "Name the segment 1 for episode # 2/225", "context": "CREATE TABLE table_24172078_2 (segment_1 VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT lessons_taught FROM table_24172078_2 WHERE episode__number = \"2/205\"", "question": "Name the lessons taught for episode # 2/205", "context": "CREATE TABLE table_24172078_2 (lessons_taught VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_2417308_3 WHERE successor = \"William Bigler (D)\"", "question": "What state had william bigler (d) as a successor)", "context": "CREATE TABLE table_2417308_3 (state__class_ VARCHAR, successor VARCHAR)"}, {"answer": "SELECT date_successor_seated FROM table_2417330_4 WHERE successor = \"Vacant\"", "question": "Name the date successor seated for successor being vacant", "context": "CREATE TABLE table_2417330_4 (date_successor_seated VARCHAR, successor VARCHAR)"}, {"answer": "SELECT vacator FROM table_2417330_4 WHERE district = \"Kentucky 2nd\"", "question": "Name the vacator for kentucky 2nd", "context": "CREATE TABLE table_2417330_4 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT successor FROM table_2417330_4 WHERE reason_for_change = \"Election was successfully contested July 30, 1861\"", "question": "Name the successor for election was successfully contested july 30, 1861", "context": "CREATE TABLE table_2417330_4 (successor VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT successor FROM table_2417330_4 WHERE reason_for_change = \"Vacant\" AND date_successor_seated = \"December 3, 1862\"", "question": "Name the successor for vacant and december 3, 1862", "context": "CREATE TABLE table_2417330_4 (successor VARCHAR, reason_for_change VARCHAR, date_successor_seated VARCHAR)"}, {"answer": "SELECT vacator FROM table_2417340_4 WHERE district = \"Georgia 2nd\"", "question": "What was the vacator for georgia 2nd?", "context": "CREATE TABLE table_2417340_4 (vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT successor FROM table_2417340_4 WHERE vacator = \"Vacant\" AND district = \"Alabama 3rd\"", "question": "What was the successor for vacant alabama 3rd?", "context": "CREATE TABLE table_2417340_4 (successor VARCHAR, vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT successor FROM table_2417340_4 WHERE vacator = \"Vacant\" AND district = \"Louisiana 5th\"", "question": "Who was the successor for vacant louisiana 5th", "context": "CREATE TABLE table_2417340_4 (successor VARCHAR, vacator VARCHAR, district VARCHAR)"}, {"answer": "SELECT successor FROM table_2417345_3 WHERE date_of_successors_formal_installation = \"February 23, 1870\"", "question": "Who were the successors when the date the successors were installed was February 23, 1870?", "context": "CREATE TABLE table_2417345_3 (successor VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT vacator FROM table_2417345_3 WHERE date_of_successors_formal_installation = \"February 1, 1871\"", "question": "Who was the vacator when the successor was formally installed on February 1, 1871?", "context": "CREATE TABLE table_2417345_3 (vacator VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT successor FROM table_2417345_3 WHERE date_of_successors_formal_installation = \"March 30, 1870\"", "question": "Who was the successor that was formally installed on March 30, 1870?", "context": "CREATE TABLE table_2417345_3 (successor VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT date_of_successors_formal_installation FROM table_2417330_3 WHERE successor = \"Orville H. Browning (R)\"", "question": "When did Orville H. Browning (r) succeed?", "context": "CREATE TABLE table_2417330_3 (date_of_successors_formal_installation VARCHAR, successor VARCHAR)"}, {"answer": "SELECT date_of_successors_formal_installation FROM table_2417330_3 WHERE state__class_ = \"Missouri (3)\"", "question": "List all dates of succession in the state class Missouri (3).", "context": "CREATE TABLE table_2417330_3 (date_of_successors_formal_installation VARCHAR, state__class_ VARCHAR)"}, {"answer": "SELECT COUNT(vacator) FROM table_2417340_3 WHERE date_of_successors_formal_installation = \"June 22, 1868\"", "question": "List the number of vacators when successors were formally installed on June 22, 1868.", "context": "CREATE TABLE table_2417340_3 (vacator VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_2417340_3 WHERE date_of_successors_formal_installation = \"June 22, 1868\"", "question": "List all state classes when successors were formally installed on June 22, 1868.", "context": "CREATE TABLE table_2417340_3 (state__class_ VARCHAR, date_of_successors_formal_installation VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_2417395_4 WHERE date_successor_seated = \"December 13, 1880\"", "question": "What was the reason for change to the successor that was seated on December 13, 1880?", "context": "CREATE TABLE table_2417395_4 (reason_for_change VARCHAR, date_successor_seated VARCHAR)"}, {"answer": "SELECT district FROM table_2417445_4 WHERE reason_for_vacancy = \"Died May 22, 1895\"", "question": "When the person died May 22, 1895 is the reason for vacancy what is the district?", "context": "CREATE TABLE table_2417445_4 (district VARCHAR, reason_for_vacancy VARCHAR)"}, {"answer": "SELECT reason_for_vacancy FROM table_2417445_4 WHERE vacator = \"Frederick Remann (R)\"", "question": "When frederick remann (r) is the vacator what is the reason for vacancy?", "context": "CREATE TABLE table_2417445_4 (reason_for_vacancy VARCHAR, vacator VARCHAR)"}, {"answer": "SELECT reason_for_vacancy FROM table_2417445_4 WHERE successor = \"Rudolph Kleberg (D)\"", "question": "When rudolph kleberg (d) is the successor is the reason for vacancy?", "context": "CREATE TABLE table_2417445_4 (reason_for_vacancy VARCHAR, successor VARCHAR)"}, {"answer": "SELECT reason_for_vacancy FROM table_2417445_4 WHERE district = \"Massachusetts 6th\"", "question": "When massachusetts 6th is the district what is the reason for vacancy?", "context": "CREATE TABLE table_2417445_4 (reason_for_vacancy VARCHAR, district VARCHAR)"}, {"answer": "SELECT date_of_successors_taking_office FROM table_2417445_4 WHERE successor = \"Rudolph Kleberg (D)\"", "question": "When rudolph kleberg (d) is the successor what is the date of successors taking office?", "context": "CREATE TABLE table_2417445_4 (date_of_successors_taking_office VARCHAR, successor VARCHAR)"}, {"answer": "SELECT geographical_regions FROM table_24192031_2 WHERE contestant = \"Laura Jim\u00e9nez Ynoa\"", "question": "What geographical region is contestant  laura jim\u00e9nez ynoa from?", "context": "CREATE TABLE table_24192031_2 (geographical_regions VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT COUNT(hometown) FROM table_24192031_2 WHERE height = \"m (ft 10 1\u20442 in)\"", "question": "How many hometowns have a  height of m (ft 10 1\u20442 in)?", "context": "CREATE TABLE table_24192031_2 (hometown VARCHAR, height VARCHAR)"}, {"answer": "SELECT age FROM table_24192031_2 WHERE height = \"m (ft 3\u20444 in)\"", "question": "How old is the person with the height of m (ft 3\u20444 in)?", "context": "CREATE TABLE table_24192031_2 (age VARCHAR, height VARCHAR)"}, {"answer": "SELECT viewers__millions_ FROM table_24212608_1 WHERE broadcast_date = 2010", "question": "What was the number of viewers in millions for the broadcast from 2010? ", "context": "CREATE TABLE table_24212608_1 (viewers__millions_ VARCHAR, broadcast_date VARCHAR)"}, {"answer": "SELECT starring FROM table_24212608_1 WHERE episode = 3", "question": "Who starred in episode 3? ", "context": "CREATE TABLE table_24212608_1 (starring VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_24212608_1 WHERE broadcast_date = 2010", "question": "How many episodes were broadcast in 2010?", "context": "CREATE TABLE table_24212608_1 (episode VARCHAR, broadcast_date VARCHAR)"}, {"answer": "SELECT radio_1_presenter FROM table_24212608_1 WHERE viewers__millions_ = \"9.73\"", "question": "Who was the radio 1 presenter for the broadcast that had 9.73 million viewers? ", "context": "CREATE TABLE table_24212608_1 (radio_1_presenter VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT powertrain__engine_transmission_ FROM table_24193494_3 WHERE division = \"KMD\" AND model = \"C40LF\"", "question": "Name the powertrain for kmd and c40lf", "context": "CREATE TABLE table_24193494_3 (powertrain__engine_transmission_ VARCHAR, division VARCHAR, model VARCHAR)"}, {"answer": "SELECT division FROM table_24193494_3 WHERE powertrain__engine_transmission_ = \"Detroit Diesel Series 50EGR Allison WB-400R\"", "question": "Name the division for  detroit diesel series 50egr allison wb-400r", "context": "CREATE TABLE table_24193494_3 (division VARCHAR, powertrain__engine_transmission_ VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_24193494_3 WHERE order_year = 2011", "question": "Name the manufacturer for 2011", "context": "CREATE TABLE table_24193494_3 (manufacturer VARCHAR, order_year VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_2419754_1 WHERE nickname = \"Billikens\"", "question": "List the number of locations for the team known as the billikens.", "context": "CREATE TABLE table_2419754_1 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_2419754_1 WHERE location = \"Milwaukee, Wisconsin\"", "question": "How many people are enrolled at the university in milwaukee, wisconsin", "context": "CREATE TABLE table_2419754_1 (enrollment INTEGER, location VARCHAR)"}, {"answer": "SELECT MAX(left) FROM table_2419754_1", "question": "In what year did the teams leave the conference?", "context": "CREATE TABLE table_2419754_1 (left INTEGER)"}, {"answer": "SELECT institution FROM table_2419754_1 WHERE nickname = \"Tigers\"", "question": "What university team is referred to as the tigers?", "context": "CREATE TABLE table_2419754_1 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT magnitude FROM table_24192190_1 WHERE latitude = \"43.048\u00b0 N\"", "question": "When 43.048\u00b0 n is the latitude what is the magnitude?", "context": "CREATE TABLE table_24192190_1 (magnitude VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT COUNT(latitude) FROM table_24192190_1 WHERE time__utc_ = \"9:47:38\"", "question": "When 9:47:38 is the time (utc) how many measurements of latitude are there?", "context": "CREATE TABLE table_24192190_1 (latitude VARCHAR, time__utc_ VARCHAR)"}, {"answer": "SELECT COUNT(longitude) FROM table_24192190_1 WHERE latitude = \"42.903\u00b0 N\"", "question": "When 42.903\u00b0 n is the latitude how many measurements of longitude are there?", "context": "CREATE TABLE table_24192190_1 (longitude VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT depth FROM table_24192190_1 WHERE time__utc_ = \"11:40:26\"", "question": "When 11:40:26 is the time (utc) what is the depth?", "context": "CREATE TABLE table_24192190_1 (depth VARCHAR, time__utc_ VARCHAR)"}, {"answer": "SELECT main_presenter FROM table_24224647_2 WHERE year_premiered = 2011", "question": "Who is every main presenter for the year 2011?", "context": "CREATE TABLE table_24224647_2 (main_presenter VARCHAR, year_premiered VARCHAR)"}, {"answer": "SELECT main_presenter FROM table_24224647_2 WHERE region_country = \"Estonia\"", "question": "Who is every main presenter for the Estonia region/country?", "context": "CREATE TABLE table_24224647_2 (main_presenter VARCHAR, region_country VARCHAR)"}, {"answer": "SELECT MAX(year_premiered) FROM table_24224647_2 WHERE network = \"TV2\" AND main_presenter = \"\u00d8yvind Mund\"", "question": "What is the highest year premiered for the TV2 network when main present is \u00f8yvind mund?", "context": "CREATE TABLE table_24224647_2 (year_premiered INTEGER, network VARCHAR, main_presenter VARCHAR)"}, {"answer": "SELECT COUNT(year_premiered) FROM table_24224647_2 WHERE main_presenter = \"Sa Beining\"", "question": "How many years premiered have Sa Beining as main presenter?", "context": "CREATE TABLE table_24224647_2 (year_premiered VARCHAR, main_presenter VARCHAR)"}, {"answer": "SELECT year_premiered FROM table_24224647_2 WHERE main_presenter = \"Behzat Uighur\"", "question": "What is every year premiered when Behzat Uighur is main presenter?", "context": "CREATE TABLE table_24224647_2 (year_premiered VARCHAR, main_presenter VARCHAR)"}, {"answer": "SELECT MAX(year_premiered) FROM table_24224647_2 WHERE main_presenter = \"Benjamin Castaldi\"", "question": "What is the highest year premiered when Benjamin Castaldi is main presenter?", "context": "CREATE TABLE table_24224647_2 (year_premiered INTEGER, main_presenter VARCHAR)"}, {"answer": "SELECT episode_number_production_number FROM table_24222929_4 WHERE title = \"Tasers and Mind Erasers\"", "question": "Name the episode number for tasers and mind erasers", "context": "CREATE TABLE table_24222929_4 (episode_number_production_number VARCHAR, title VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_24222929_4 WHERE episode_number_production_number = \"7 1-07\"", "question": "Name the original air date for 7 1-07", "context": "CREATE TABLE table_24222929_4 (original_airdate VARCHAR, episode_number_production_number VARCHAR)"}, {"answer": "SELECT total_viewers_on_hallmark + 1 FROM table_24222929_4 WHERE title = \"Pilot\"", "question": "Name the total viewers on hallmark for pilot", "context": "CREATE TABLE table_24222929_4 (total_viewers_on_hallmark VARCHAR, title VARCHAR)"}, {"answer": "SELECT rank_on_channel FROM table_24222929_4 WHERE title = \"Mooning and Crooning\"", "question": "Name the rank on channel mooning and crooning", "context": "CREATE TABLE table_24222929_4 (rank_on_channel VARCHAR, title VARCHAR)"}, {"answer": "SELECT rank_on_channel FROM table_24222929_4 WHERE title = \"Pilot\"", "question": "Name the rank on channel for pilot", "context": "CREATE TABLE table_24222929_4 (rank_on_channel VARCHAR, title VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_24231638_3 WHERE team = \"Racing Santander\"", "question": "What is the manner of departure for the team racing santander?", "context": "CREATE TABLE table_24231638_3 (manner_of_departure VARCHAR, team VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_24231638_3 WHERE date_of_appointment = \"2 November 2010\"", "question": "Who replaced on the date of appointment 2 november 2010?", "context": "CREATE TABLE table_24231638_3 (replaced_by VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT team FROM table_24231638_3 WHERE position_in_table = \"19th\"", "question": "What is the team for the position in table 19th?", "context": "CREATE TABLE table_24231638_3 (team VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT team FROM table_24231638_3 WHERE replaced_by = \"Miroslav \u0110uki\u0107\"", "question": "What is the team that the replaced by is miroslav \u0111uki\u0107?", "context": "CREATE TABLE table_24231638_3 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT COUNT(position_in_table) FROM table_24231638_3 WHERE date_of_vacancy = \"14 February 2011\"", "question": "How many times was the date of vacancy 14 february 2011?", "context": "CREATE TABLE table_24231638_3 (position_in_table VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_24231638_3 WHERE team = \"Osasuna\"", "question": "what is the date of appointment for the team osasuna?", "context": "CREATE TABLE table_24231638_3 (date_of_appointment VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(l) FROM table_24224991_2", "question": "What is the lowest amount of L in any season? ", "context": "CREATE TABLE table_24224991_2 (l INTEGER)"}, {"answer": "SELECT COUNT(vote) FROM table_24233848_2 WHERE finish = \"3rd voted Out Day 9\"", "question": "Name the total number of votes for 3rd voted out day 9", "context": "CREATE TABLE table_24233848_2 (vote VARCHAR, finish VARCHAR)"}, {"answer": "SELECT eliminated FROM table_24233848_2 WHERE finish = \"7th voted Out Day 21\"", "question": "Name the eliminated 7th voted out day 21", "context": "CREATE TABLE table_24233848_2 (eliminated VARCHAR, finish VARCHAR)"}, {"answer": "SELECT vote FROM table_24233848_2 WHERE eliminated = \"Thiago\"", "question": "Name the vote for thiago", "context": "CREATE TABLE table_24233848_2 (vote VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT vote FROM table_24233848_2 WHERE finish = \"9th voted Out Day 22\"", "question": "Name the vote for 9th voted out day 22", "context": "CREATE TABLE table_24233848_2 (vote VARCHAR, finish VARCHAR)"}, {"answer": "SELECT reward FROM table_24233848_2 WHERE eliminated = \"Hilca\"", "question": "Name the reward eliminated hilca", "context": "CREATE TABLE table_24233848_2 (reward VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT exports__us$_mil_ FROM table_24239748_2 WHERE county = \"Vest\"", "question": "When the country is vest, what were the exports?", "context": "CREATE TABLE table_24239748_2 (exports__us$_mil_ VARCHAR, county VARCHAR)"}, {"answer": "SELECT major_version FROM table_24257833_4 WHERE webkit_version = \"528.17\"", "question": "What was the major version when the webkit version was 528.17?", "context": "CREATE TABLE table_24257833_4 (major_version VARCHAR, webkit_version VARCHAR)"}, {"answer": "SELECT major_version FROM table_24257833_4 WHERE release_date = \"May 12, 2009\" AND minor_version = \"3.2.3\"", "question": "List major versions released on May 12, 2009, that had a minor version of 3.2.3.", "context": "CREATE TABLE table_24257833_4 (major_version VARCHAR, release_date VARCHAR, minor_version VARCHAR)"}, {"answer": "SELECT minor_version FROM table_24257833_4 WHERE release_date = \"April 16, 2008\"", "question": "What was the minor version released on April 16, 2008?", "context": "CREATE TABLE table_24257833_4 (minor_version VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT webkit_version FROM table_24257833_4 WHERE major_version = \"Safari 3\" AND minor_version = \"3.1.2\"", "question": "List all webkit versions when the major version was Safari 3, and the minor version was 3.1.2.", "context": "CREATE TABLE table_24257833_4 (webkit_version VARCHAR, major_version VARCHAR, minor_version VARCHAR)"}, {"answer": "SELECT operating_system FROM table_24257833_4 WHERE webkit_version = \"525.29.1\"", "question": "List all OS's with a webkit version of 525.29.1.", "context": "CREATE TABLE table_24257833_4 (operating_system VARCHAR, webkit_version VARCHAR)"}, {"answer": "SELECT webkit_version FROM table_24257833_4 WHERE minor_version = \"3.1.2\"", "question": "What is the webkit version when the minor version was 3.1.2.?", "context": "CREATE TABLE table_24257833_4 (webkit_version VARCHAR, minor_version VARCHAR)"}, {"answer": "SELECT main_legion_base FROM table_242785_3 WHERE notes = \"Primigenia goddess of Fate. XX in Batavi revolt\"", "question": "What was the main legion base for the Romans when the notes were \"primigenia goddess of fate. xx in batavi revolt\"?", "context": "CREATE TABLE table_242785_3 (main_legion_base VARCHAR, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_242785_3 WHERE date_founded__founder = \"57 BC Caesar\"", "question": "What are the notes during 57 bc caesar?", "context": "CREATE TABLE table_242785_3 (notes VARCHAR, date_founded__founder VARCHAR)"}, {"answer": "SELECT date_founded__founder FROM table_242785_3 WHERE emblem = \"Hercules\"", "question": "What is the date founded/founder when the emblem was Hercules?", "context": "CREATE TABLE table_242785_3 (date_founded__founder VARCHAR, emblem VARCHAR)"}, {"answer": "SELECT main_legion_base FROM table_242785_3 WHERE date_disband = \"70 XX\"", "question": "What is the main legion base that disbanded 70 xx?", "context": "CREATE TABLE table_242785_3 (main_legion_base VARCHAR, date_disband VARCHAR)"}, {"answer": "SELECT date_disband FROM table_242785_1 WHERE main_legionary_base = \"Svishtov , Bulgaria\"", "question": "When did svishtov , bulgaria disband?", "context": "CREATE TABLE table_242785_1 (date_disband VARCHAR, main_legionary_base VARCHAR)"}, {"answer": "SELECT date_founded__founder FROM table_242785_1 WHERE notes = \"prima Italica:raised for aborted Caucasus war\"", "question": "when notes are prima italica:raised for aborted caucasus war, when was that founded?", "context": "CREATE TABLE table_242785_1 (date_founded__founder VARCHAR, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_242785_1 WHERE main_legionary_base = \"Svishtov , Bulgaria\"", "question": "What are the notes for svishtov , bulgaria?", "context": "CREATE TABLE table_242785_1 (notes VARCHAR, main_legionary_base VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_242813_2 WHERE overall_rank = 4", "question": "Name the team ranked 4", "context": "CREATE TABLE table_242813_2 (team VARCHAR, overall_rank VARCHAR)"}, {"answer": "SELECT league FROM table_242813_2 WHERE strikeouts = 451", "question": "Name the league for strikeouts being 451", "context": "CREATE TABLE table_242813_2 (league VARCHAR, strikeouts VARCHAR)"}, {"answer": "SELECT MAX(overall_rank) FROM table_242813_2 WHERE league = \"NL/UA\"", "question": "Name the most overall rank for nl/ua league", "context": "CREATE TABLE table_242813_2 (overall_rank INTEGER, league VARCHAR)"}, {"answer": "SELECT COUNT(pitcher) FROM table_242813_2 WHERE overall_rank = 9", "question": "Name the total number of pitcher for 9 overall rank", "context": "CREATE TABLE table_242813_2 (pitcher VARCHAR, overall_rank VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_242813_2 WHERE pitcher = \"Old Hoss Radbourn\"", "question": "Name the most season for old hoss radbourn", "context": "CREATE TABLE table_242813_2 (season INTEGER, pitcher VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_24278858_2 WHERE opponent = \"Amsterdam Admirals\"", "question": "What week did they play the amsterdam admirals?", "context": "CREATE TABLE table_24278858_2 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_24278858_2 WHERE week = 8", "question": "What date did the team play on week 8?", "context": "CREATE TABLE table_24278858_2 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT country_or_region FROM table_24285393_1 WHERE highest_point = \"Northwestern peak of Rysy\"", "question": "What country has the most height in the northwestern peak of rysy?", "context": "CREATE TABLE table_24285393_1 (country_or_region VARCHAR, highest_point VARCHAR)"}, {"answer": "SELECT highest_point FROM table_24285393_1 WHERE country_or_region = \"Latvia\"", "question": "What are the highest point in latvia", "context": "CREATE TABLE table_24285393_1 (highest_point VARCHAR, country_or_region VARCHAR)"}, {"answer": "SELECT maximum_elevation FROM table_24285393_1 WHERE country_or_region = \"Netherlands\"", "question": "What is the maximum elevation in netherlands?", "context": "CREATE TABLE table_24285393_1 (maximum_elevation VARCHAR, country_or_region VARCHAR)"}, {"answer": "SELECT country_or_region FROM table_24285393_1 WHERE highest_point = \"Mont Sokbaro\"", "question": "In what country is mont sokbaro a highest point", "context": "CREATE TABLE table_24285393_1 (country_or_region VARCHAR, highest_point VARCHAR)"}, {"answer": "SELECT COUNT(club) FROM table_2429942_2 WHERE third_place = \"Drnovice\"", "question": "how many times was third place held by drnovice?", "context": "CREATE TABLE table_2429942_2 (club VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT top_goalscorer FROM table_2429942_2 WHERE season = \"2010-11\"", "question": "Who is the top goalscorer for the season 2010-11?", "context": "CREATE TABLE table_2429942_2 (top_goalscorer VARCHAR, season VARCHAR)"}, {"answer": "SELECT third_place FROM table_2429942_2 WHERE champions = \"Ban\u00edk Ostrava (1)\"", "question": "Who had third place when the champions is ban\u00edk ostrava (1)?", "context": "CREATE TABLE table_2429942_2 (third_place VARCHAR, champions VARCHAR)"}, {"answer": "SELECT top_goalscorer FROM table_2429942_2 WHERE season = \"2001-02\"", "question": "Who was the top goalscorer for season 2001-02?", "context": "CREATE TABLE table_2429942_2 (top_goalscorer VARCHAR, season VARCHAR)"}, {"answer": "SELECT runner_up FROM table_2429942_2 WHERE season = \"2008-09\"", "question": "Who is the runner-up for the season 2008-09?", "context": "CREATE TABLE table_2429942_2 (runner_up VARCHAR, season VARCHAR)"}, {"answer": "SELECT top_goalscorer FROM table_2429942_2 WHERE season = \"1998-99\"", "question": "Who is the top goalscorer for season 1998-99?", "context": "CREATE TABLE table_2429942_2 (top_goalscorer VARCHAR, season VARCHAR)"}, {"answer": "SELECT written_by FROM table_2430014_6 WHERE directed_by = \"John Trefor\"", "question": "Name the written by for john trefor", "context": "CREATE TABLE table_2430014_6 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_2430014_8 WHERE uk_ratings__bbc2_rank_ = \"2.27m (5)\"", "question": "How many directors worked on the episode with 2.27m (5) is the ratings?", "context": "CREATE TABLE table_2430014_8 (directed_by VARCHAR, uk_ratings__bbc2_rank_ VARCHAR)"}, {"answer": "SELECT title FROM table_2430014_8 WHERE episode_no = 2", "question": "What is the title of episode 2?", "context": "CREATE TABLE table_2430014_8 (title VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT written_by FROM table_2430014_8 WHERE uk_ratings__bbc2_rank_ = \"2.27m (5)\"", "question": "Who wrote the episode what had the rating 2.27m (5)?", "context": "CREATE TABLE table_2430014_8 (written_by VARCHAR, uk_ratings__bbc2_rank_ VARCHAR)"}, {"answer": "SELECT 2013 AS _profit__mil_usd__ FROM table_24307126_3 WHERE assets_2013__bil$_ = \"11.2\"", "question": "Name the 2013 profit for assets being 11.2", "context": "CREATE TABLE table_24307126_3 (assets_2013__bil$_ VARCHAR)"}, {"answer": "SELECT assets_2013__bil$_ FROM table_24307126_3 WHERE rank_2013 = 1435", "question": "Name the assets when the rank is 1435", "context": "CREATE TABLE table_24307126_3 (assets_2013__bil$_ VARCHAR, rank_2013 VARCHAR)"}, {"answer": "SELECT COUNT(april_2013_cum_rank) FROM table_24307126_3 WHERE rank_2012 = 225", "question": "Name the number of rank for april 2013 for 2012 ran kbeing 225", "context": "CREATE TABLE table_24307126_3 (april_2013_cum_rank VARCHAR, rank_2012 VARCHAR)"}, {"answer": "SELECT COUNT(assets_2013__bil) AS $_ FROM table_24307126_3 WHERE base = \"Australia\"", "question": "Name the number of assets for australia", "context": "CREATE TABLE table_24307126_3 (assets_2013__bil VARCHAR, base VARCHAR)"}, {"answer": "SELECT position FROM table_24302700_6 WHERE event_6_atlas_stones = \"6 (4 in 34.49s)\"", "question": "What is the position of the player who got 6 (4 in 34.49s) in the 6 atlas stones event?", "context": "CREATE TABLE table_24302700_6 (position VARCHAR, event_6_atlas_stones VARCHAR)"}, {"answer": "SELECT name FROM table_24302700_6 WHERE nationality = \"United States\"", "question": "Who are all the players from the united states?", "context": "CREATE TABLE table_24302700_6 (name VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(event_6_atlas_stones) FROM table_24302700_6 WHERE event_3_dead_lift = \"2 (6 in 30.89s)\"", "question": "What is the score in the 6 atlas stones event of the player who got 2 (6 in 30.89s) in the 3 dead lift event?", "context": "CREATE TABLE table_24302700_6 (event_6_atlas_stones VARCHAR, event_3_dead_lift VARCHAR)"}, {"answer": "SELECT position FROM table_24302700_6 WHERE event_6_atlas_stones = \"5 (4 in 32.66s)\"", "question": "What is the position of the player with a 5 (4 in 32.66s) in the 6 atlas stones event?", "context": "CREATE TABLE table_24302700_6 (position VARCHAR, event_6_atlas_stones VARCHAR)"}, {"answer": "SELECT event_2_truck_pull FROM table_24302700_6 WHERE event_4_fingals_fingers = \"1 (5 in 33.84s)\"", "question": "What is the score in the 2 truck pull of the player who got  1 (5 in 33.84s) in the 4 fingals fingers?", "context": "CREATE TABLE table_24302700_6 (event_2_truck_pull VARCHAR, event_4_fingals_fingers VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_24330912_1 WHERE top_10s = 0", "question": "When 0 is the top 10's what is the highest amount of cuts made?", "context": "CREATE TABLE table_24330912_1 (cuts_made INTEGER, top_10s VARCHAR)"}, {"answer": "SELECT MIN(3 AS rd) FROM table_24330912_1", "question": "What is the lowest overall amount of times they've been in 3rd?", "context": "CREATE TABLE table_24330912_1 (Id VARCHAR)"}, {"answer": "SELECT MIN(money_list_rank) FROM table_24330912_1 WHERE year = 2011", "question": "When 2011 is the year what is the lowest money list rank?", "context": "CREATE TABLE table_24330912_1 (money_list_rank INTEGER, year VARCHAR)"}, {"answer": "SELECT MIN(money_list_rank) FROM table_24330912_1", "question": "What is the lowest overall money list rank?", "context": "CREATE TABLE table_24330912_1 (money_list_rank INTEGER)"}, {"answer": "SELECT MIN(tournaments_played) FROM table_24330912_1 WHERE best_finish = \"T3\"", "question": "When t3 is the best finish what is the lowest amount of tournaments played?", "context": "CREATE TABLE table_24330912_1 (tournaments_played INTEGER, best_finish VARCHAR)"}, {"answer": "SELECT MAX(Winners) AS play_off_legs_won FROM table_24334163_1 WHERE total_money_won = \"\u00a32,350\"", "question": "What is the latest amount of won legs in the payoffs when the prize money was \u00a32,350?", "context": "CREATE TABLE table_24334163_1 (Winners INTEGER, total_money_won VARCHAR)"}, {"answer": "SELECT Winners AS group_legs_won FROM table_24334163_1 WHERE player = \"Mark Dudbridge\"", "question": "How many group legs were won with player Mark Dudbridge?", "context": "CREATE TABLE table_24334163_1 (Winners VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(Winners) AS group_legs_won FROM table_24334163_1 WHERE total_money_won = \"\u00a321,850\"", "question": "What is the highest amount of group legs won when the prize money was \u00a321,850?", "context": "CREATE TABLE table_24334163_1 (Winners INTEGER, total_money_won VARCHAR)"}, {"answer": "SELECT COUNT(Winners) AS play_off_legs_won FROM table_24334163_1 WHERE total_money_won = \"\u00a310,300\"", "question": "How many play-off legs were won when the prize money was \u00a310,300?", "context": "CREATE TABLE table_24334163_1 (Winners VARCHAR, total_money_won VARCHAR)"}, {"answer": "SELECT MIN(Winners) AS play_off_legs_won FROM table_24334163_1", "question": "What is the least amount of playoff legs won?", "context": "CREATE TABLE table_24334163_1 (Winners INTEGER)"}, {"answer": "SELECT directed_by FROM table_24319661_5 WHERE no_in_series = 53", "question": "Who directed episode 53 in the series?", "context": "CREATE TABLE table_24319661_5 (directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT production_code FROM table_24319661_5 WHERE directed_by = \"Robert Duncan McNeill\"", "question": "What as the production code for the episode directed by Robert Duncan McNeill?", "context": "CREATE TABLE table_24319661_5 (production_code VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_24319661_5 WHERE production_code = \"BCW410\"", "question": "What episode number of the season had BCW410 as a production code?", "context": "CREATE TABLE table_24319661_5 (no_in_season VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_24319661_5 WHERE us_viewers__million_ = \"2.77\"", "question": "What episode number in the series had 2.77 million U.S. viewers?", "context": "CREATE TABLE table_24319661_5 (no_in_series INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MAX(times_contested) FROM table_24329520_4 WHERE county = \"Montgomeryshire\"", "question": "Name the most times contested for montgomeryshire", "context": "CREATE TABLE table_24329520_4 (times_contested INTEGER, county VARCHAR)"}, {"answer": "SELECT fate_in_1832 FROM table_24329520_4 WHERE county = \"Pembrokeshire\"", "question": "Name the fate in 1832 for pembrokeshire", "context": "CREATE TABLE table_24329520_4 (fate_in_1832 VARCHAR, county VARCHAR)"}, {"answer": "SELECT MIN(podiums) FROM table_24330803_1 WHERE series = \"Formula BMW Americas\"", "question": "what is the least number of podiums for a formula BMW Americas series? ", "context": "CREATE TABLE table_24330803_1 (podiums INTEGER, series VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_24330803_1 WHERE series = \"Formula 3 Euro series\"", "question": "What is the maximum number of wins in the formula 3 euro series? ", "context": "CREATE TABLE table_24330803_1 (wins INTEGER, series VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_24330803_1 WHERE points = \"30\"", "question": "How many positions were given when 30 points were won? ", "context": "CREATE TABLE table_24330803_1 (position VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_24330803_1 WHERE season = 2011", "question": "How many pole positions were there for the 2011 season? ", "context": "CREATE TABLE table_24330803_1 (poles INTEGER, season VARCHAR)"}, {"answer": "SELECT conference AS Tournament FROM table_24348134_3 WHERE tournament_winner = \"Kent State\"", "question": "List the tournament that kent state won?", "context": "CREATE TABLE table_24348134_3 (conference VARCHAR, tournament_winner VARCHAR)"}, {"answer": "SELECT regular_season_winner FROM table_24348134_3 WHERE tournament_winner = \"Georgia State\"", "question": "What team won the regular season when georgia state won the tournament?", "context": "CREATE TABLE table_24348134_3 (regular_season_winner VARCHAR, tournament_winner VARCHAR)"}, {"answer": "SELECT tournament_venue__city_ FROM table_24348134_3 WHERE tournament_winner = \"Oklahoma\"", "question": "In what city did oklahoma win the tournament.", "context": "CREATE TABLE table_24348134_3 (tournament_venue__city_ VARCHAR, tournament_winner VARCHAR)"}, {"answer": "SELECT COUNT(tournament_winner) FROM table_24348134_3 WHERE regular_season_winner = \"Iona , Siena & Niagara\"", "question": "List the number of tournament winners when iona , siena & niagara won in the regular season.", "context": "CREATE TABLE table_24348134_3 (tournament_winner VARCHAR, regular_season_winner VARCHAR)"}, {"answer": "SELECT real_life_eventual_outcome FROM table_243664_1 WHERE currently\u00b9_part_of = \"Amtrak\"", "question": "Name the real life for eventual outcome is amtrak", "context": "CREATE TABLE table_243664_1 (real_life_eventual_outcome VARCHAR, currently\u00b9_part_of VARCHAR)"}, {"answer": "SELECT real_life_years_of_operation FROM table_243664_1 WHERE currently\u00b9_part_of = \"Amtrak\"", "question": "Name the real life years of operation for amtrak", "context": "CREATE TABLE table_243664_1 (real_life_years_of_operation VARCHAR, currently\u00b9_part_of VARCHAR)"}, {"answer": "SELECT game_cost FROM table_243664_1 WHERE railroad = \"Chicago and North Western\"", "question": "Name the game coast for chicago and north western", "context": "CREATE TABLE table_243664_1 (game_cost VARCHAR, railroad VARCHAR)"}, {"answer": "SELECT game_cost FROM table_243664_1 WHERE real_life_eventual_outcome = \"Merged with New York Central to form Penn Central\"", "question": "Name the game cost for  merged with new york central to form penn central", "context": "CREATE TABLE table_243664_1 (game_cost VARCHAR, real_life_eventual_outcome VARCHAR)"}, {"answer": "SELECT MIN(2007 AS __usd_) FROM table_24364690_1 WHERE federal_subjects = \"Kabardino-Balkaria\"", "question": "What is the minimum 2007 USD in Kabardino-Balkaria?", "context": "CREATE TABLE table_24364690_1 (federal_subjects VARCHAR)"}, {"answer": "SELECT weight_lost__kg_ FROM table_24370270_10 WHERE starting_weight__kg_ = \"97.4\"", "question": "What is every amount for weight lost if the starting weight is 97.4?", "context": "CREATE TABLE table_24370270_10 (weight_lost__kg_ VARCHAR, starting_weight__kg_ VARCHAR)"}, {"answer": "SELECT starting_weight__kg_ FROM table_24370270_10 WHERE weight_lost__kg_ = \"54.6\"", "question": "What is the starting weight if weight lost is 54.6?", "context": "CREATE TABLE table_24370270_10 (starting_weight__kg_ VARCHAR, weight_lost__kg_ VARCHAR)"}, {"answer": "SELECT final_weight__kg_ FROM table_24370270_10 WHERE contestant = \"Chris\"", "question": "What is the final weight for contestant Chris?", "context": "CREATE TABLE table_24370270_10 (final_weight__kg_ VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT COUNT(aux_in) FROM table_24384861_1 WHERE version = \"SoundDock series II\"", "question": "How many times did the sounddock series II aux in?", "context": "CREATE TABLE table_24384861_1 (aux_in VARCHAR, version VARCHAR)"}, {"answer": "SELECT iphone_certified FROM table_24384861_1 WHERE version = \"SoundDock series I v2\"", "question": "Was the sounddock series I v2 iphone certified?", "context": "CREATE TABLE table_24384861_1 (iphone_certified VARCHAR, version VARCHAR)"}, {"answer": "SELECT COUNT(aux_in) FROM table_24384861_1 WHERE dock_connection = \"FireWire\"", "question": "How many connections aux in using FIrewire?", "context": "CREATE TABLE table_24384861_1 (aux_in VARCHAR, dock_connection VARCHAR)"}, {"answer": "SELECT COUNT(video_out) FROM table_24384861_1 WHERE version = \"SoundDock Portable\"", "question": "how many video out connections does the sounddock portable have?", "context": "CREATE TABLE table_24384861_1 (video_out VARCHAR, version VARCHAR)"}, {"answer": "SELECT dual_voltage FROM table_24384861_1 WHERE version = \"SoundDock series I v2\"", "question": "Does the sounddock series I v2 have dual voltage?", "context": "CREATE TABLE table_24384861_1 (dual_voltage VARCHAR, version VARCHAR)"}, {"answer": "SELECT dock_connection FROM table_24384861_1 WHERE version = \"SoundDock series III\"", "question": "What type of dock connection does the sounddock series III have? ", "context": "CREATE TABLE table_24384861_1 (dock_connection VARCHAR, version VARCHAR)"}, {"answer": "SELECT game_site FROM table_24396664_2 WHERE kickoff = \"7:00 p.m.\"", "question": "Where was the game played that started at 7:00 p.m.?", "context": "CREATE TABLE table_24396664_2 (game_site VARCHAR, kickoff VARCHAR)"}, {"answer": "SELECT MAX(varsity_teams) FROM table_2439728_1 WHERE location = \"West Roxbury, MA\"", "question": "how many varsity teams are in west roxbury, ma?", "context": "CREATE TABLE table_2439728_1 (varsity_teams INTEGER, location VARCHAR)"}, {"answer": "SELECT mascot FROM table_2439728_1 WHERE school = \"St. Paul's school\"", "question": "what is the mascot of st. paul's school? ", "context": "CREATE TABLE table_2439728_1 (mascot VARCHAR, school VARCHAR)"}, {"answer": "SELECT location FROM table_2439728_1 WHERE mascot = \"Dragons\"", "question": "where are dragons used as mascots?", "context": "CREATE TABLE table_2439728_1 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_2439728_1 WHERE school = \"Lawrence Academy at Groton\"", "question": "when was lawrence academy at groton established? ", "context": "CREATE TABLE table_2439728_1 (founded INTEGER, school VARCHAR)"}, {"answer": "SELECT school FROM table_2439728_1 WHERE location = \"Milton, MA\"", "question": "name the school located at Milton, ma.", "context": "CREATE TABLE table_2439728_1 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_2439728_1 WHERE varsity_teams = 17", "question": "how many places have 17 varsity teams?", "context": "CREATE TABLE table_2439728_1 (location VARCHAR, varsity_teams VARCHAR)"}, {"answer": "SELECT COUNT(episode_no) FROM table_24399615_10 WHERE bbc_three_weekly_ranking = \"N/A\" AND cable_rank = \"N/A\"", "question": "Which episode had bbc ranking and canle ranking of n/a?", "context": "CREATE TABLE table_24399615_10 (episode_no VARCHAR, bbc_three_weekly_ranking VARCHAR, cable_rank VARCHAR)"}, {"answer": "SELECT bbc_three_weekly_ranking FROM table_24399615_10 WHERE cable_rank = \"6\"", "question": "List the number of bbc rankings with cable rankings of 6.", "context": "CREATE TABLE table_24399615_10 (bbc_three_weekly_ranking VARCHAR, cable_rank VARCHAR)"}, {"answer": "SELECT viewers FROM table_24399615_10 WHERE cable_rank = \"5\"", "question": "List the number of viewers when the cable rank for Russell Howard's Good New was 5.", "context": "CREATE TABLE table_24399615_10 (viewers VARCHAR, cable_rank VARCHAR)"}, {"answer": "SELECT COUNT(viewers) FROM table_24399615_10 WHERE bbc_three_weekly_ranking = \"6\"", "question": "How many individuals watched the show that had a bbc ranking of 6?", "context": "CREATE TABLE table_24399615_10 (viewers VARCHAR, bbc_three_weekly_ranking VARCHAR)"}, {"answer": "SELECT COUNT(cable_rank) FROM table_24399615_5 WHERE episode_no = 8", "question": "How many times did episode number 8 air?", "context": "CREATE TABLE table_24399615_5 (cable_rank VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT airdate FROM table_24399615_5 WHERE episode_no = 6", "question": "When did episode number 6 air?", "context": "CREATE TABLE table_24399615_5 (airdate VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT COUNT(viewers) FROM table_24399615_4 WHERE bbc_three_weekly_ranking = \"1\"", "question": "How many items are listed under viewers column when the bbd three weekly ranking was 1?", "context": "CREATE TABLE table_24399615_4 (viewers VARCHAR, bbc_three_weekly_ranking VARCHAR)"}, {"answer": "SELECT MIN(episode_no) FROM table_24399615_4 WHERE cable_rank = \"8\"", "question": "What episode number had a cable ranking of 8?", "context": "CREATE TABLE table_24399615_4 (episode_no INTEGER, cable_rank VARCHAR)"}, {"answer": "SELECT airdate FROM table_24399615_4 WHERE bbc_three_weekly_ranking = \"N/A\"", "question": "What date did the episode air that had n/a for it's bbc three weekly ranking?", "context": "CREATE TABLE table_24399615_4 (airdate VARCHAR, bbc_three_weekly_ranking VARCHAR)"}, {"answer": "SELECT airdate FROM table_24399615_4 WHERE cable_rank = \"17\"", "question": "What date did the episode air that had a ranking of 17 for cable?", "context": "CREATE TABLE table_24399615_4 (airdate VARCHAR, cable_rank VARCHAR)"}, {"answer": "SELECT airdate FROM table_24399615_8 WHERE bbc_three_weekly_ranking = \"3\"", "question": "When 3 is the bbc three weekly ranking what is the airdate?", "context": "CREATE TABLE table_24399615_8 (airdate VARCHAR, bbc_three_weekly_ranking VARCHAR)"}, {"answer": "SELECT airdate FROM table_24399615_8 WHERE cable_rank = \"N/A\" AND viewers = 656000", "question": "When 656000 is the amount of viewers and n/a is the cable rank what is the airdate?", "context": "CREATE TABLE table_24399615_8 (airdate VARCHAR, cable_rank VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT state_served FROM table_24415627_2 WHERE time_since_entry = \"49years, 29days\"", "question": "List the states that have entry times of 49years, 29days", "context": "CREATE TABLE table_24415627_2 (state_served VARCHAR, time_since_entry VARCHAR)"}, {"answer": "SELECT party FROM table_24415627_2 WHERE senator = \"Dick Clark\"", "question": "Of which part does congressman dick clark belong to?", "context": "CREATE TABLE table_24415627_2 (party VARCHAR, senator VARCHAR)"}, {"answer": "SELECT entered_senate FROM table_24415627_2 WHERE senator = \"Joseph Tydings\"", "question": "On what date did congressman joseph tydings enter take his seat?", "context": "CREATE TABLE table_24415627_2 (entered_senate VARCHAR, senator VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_24405773_1 WHERE poles = 0 AND races = 10", "question": "What are the lowest points when poles were 0 and races were 10?", "context": "CREATE TABLE table_24405773_1 (points INTEGER, poles VARCHAR, races VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_24405773_1 WHERE flaps = 0", "question": "What was the highest number of points when flaps were 0?", "context": "CREATE TABLE table_24405773_1 (points INTEGER, flaps VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_24425491_3 WHERE cover_model = \"Pamela Horton\"", "question": "Who played 20 questions during the issue in which Pamela Horton is on the cover?", "context": "CREATE TABLE table_24425491_3 (cover_model VARCHAR)"}, {"answer": "SELECT frequency FROM table_24418525_1 WHERE power_kw = \"5kW\"", "question": "When the power kw is 5kw, what is the frequency?", "context": "CREATE TABLE table_24418525_1 (frequency VARCHAR, power_kw VARCHAR)"}, {"answer": "SELECT callsign FROM table_24418525_1 WHERE coverage = \"Dumaguete Central Visayas Region\"", "question": "when coverage is dumaguete central visayas region, what is the callsign?", "context": "CREATE TABLE table_24418525_1 (callsign VARCHAR, coverage VARCHAR)"}, {"answer": "SELECT COUNT(power_kw) FROM table_24418525_1 WHERE coverage = \"Dumaguete Central Visayas Region\"", "question": "How much power covers dumaguete central visayas region?", "context": "CREATE TABLE table_24418525_1 (power_kw VARCHAR, coverage VARCHAR)"}, {"answer": "SELECT frequency FROM table_24418525_1 WHERE coverage = \"Mega Manila\"", "question": "What frequency is mega manila set to?", "context": "CREATE TABLE table_24418525_1 (frequency VARCHAR, coverage VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_24425976_2 WHERE production_code = \"108\"", "question": "What original air date was for the episode with production code of 108?", "context": "CREATE TABLE table_24425976_2 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_24425976_2 WHERE season = \"10\"", "question": "How many production codes are there for episode 10 in the season?", "context": "CREATE TABLE table_24425976_2 (production_code VARCHAR, season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_24425976_2 WHERE production_code = \"110\"", "question": "What date did the episode with code 110 originally air?", "context": "CREATE TABLE table_24425976_2 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT episode_title FROM table_24425976_2 WHERE production_code = \"107\"", "question": "What is the name of the episode with a production code of 107?", "context": "CREATE TABLE table_24425976_2 (episode_title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(series) FROM table_24425976_2 WHERE production_code = \"111\"", "question": "How many episodes in the series has a production code of 111?", "context": "CREATE TABLE table_24425976_2 (series VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(payout___us) AS $__ FROM table_24427210_1 WHERE date = \"December 28, 2009\"", "question": "Name the total number of payout for december 28, 2009", "context": "CREATE TABLE table_24427210_1 (payout___us VARCHAR, date VARCHAR)"}, {"answer": "SELECT payout___us$__ FROM table_24427210_1 WHERE tv = \"ESPN\" AND bowl_game = \"Music City Bowl\"", "question": "Name the payout for espn for music city bowl", "context": "CREATE TABLE table_24427210_1 (payout___us$__ VARCHAR, tv VARCHAR, bowl_game VARCHAR)"}, {"answer": "SELECT date FROM table_24427210_1 WHERE stadium = \"Raymond James stadium\"", "question": "Name the date for raymond james stadium", "context": "CREATE TABLE table_24427210_1 (date VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_24425976_7 WHERE season = 4", "question": "What date did episode 4 in the season originally air?", "context": "CREATE TABLE table_24425976_7 (original_air_date VARCHAR, season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_24425976_7 WHERE series = 115", "question": "What date did episode 115 in the series originally air?", "context": "CREATE TABLE table_24425976_7 (original_air_date VARCHAR, series VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_24426072_1 WHERE team__number1 = \"River Plate\"", "question": "What was the 2nd leg for team #1 River Plate?", "context": "CREATE TABLE table_24426072_1 (team__number1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_24426072_1 WHERE team__number2 = \"Fluminense\"", "question": "What was team number 2's Fluminense's 2nd leg?", "context": "CREATE TABLE table_24426072_1 (team__number2 VARCHAR)"}, {"answer": "SELECT MAX(seed) FROM table_24431264_16 WHERE player = \"David Ferrer\"", "question": "What was david ferrer seeded?", "context": "CREATE TABLE table_24431264_16 (seed INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_24431264_16 WHERE points = 1420", "question": "What player had 1420 points coming in?", "context": "CREATE TABLE table_24431264_16 (player VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) AS won FROM table_24431264_16 WHERE player = \"Victor H\u0103nescu\"", "question": "How many players named victor h\u0103nescu played?", "context": "CREATE TABLE table_24431264_16 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(kurdistan_democratic_party) FROM table_24440361_1 WHERE total_kurdistan_list = 10", "question": "Name the kurdistan democratic party for kurdistan list being 10", "context": "CREATE TABLE table_24440361_1 (kurdistan_democratic_party INTEGER, total_kurdistan_list VARCHAR)"}, {"answer": "SELECT MAX(total_kurdistan_list) FROM table_24440361_1 WHERE governorate = \"Diyala\"", "question": "Name the most kirdistan list for diyala", "context": "CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER, governorate VARCHAR)"}, {"answer": "SELECT MIN(total_kurdistan_list) FROM table_24440361_1", "question": "Name the least total kurdistan list", "context": "CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER)"}, {"answer": "SELECT 2 AS nd_runner_up FROM table_24430894_20 WHERE mutya_ng_pilipinas_asia_pacific = \"Rochelle Romero Ong\"", "question": "Who won 3rd place when the mutya ng pilipinas winner was  was rochelle romero ong?", "context": "CREATE TABLE table_24430894_20 (mutya_ng_pilipinas_asia_pacific VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_24430894_20 WHERE mutya_ng_pilipinas_asia_pacific = \"Ritchie Ocampo\"", "question": "List the number of years where ritchie ocampo was the mutya ng pilipinas winner.", "context": "CREATE TABLE table_24430894_20 (year VARCHAR, mutya_ng_pilipinas_asia_pacific VARCHAR)"}, {"answer": "SELECT COUNT(awardee_s_) FROM table_24446718_7 WHERE language = \"English and Hindi\"", "question": "Name the number of awardees for english and hindi", "context": "CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, language VARCHAR)"}, {"answer": "SELECT name_of_award FROM table_24446718_7 WHERE awardee_s_ = \"Zubeen Garg\"", "question": "Name the name of award for zubeen garg", "context": "CREATE TABLE table_24446718_7 (name_of_award VARCHAR, awardee_s_ VARCHAR)"}, {"answer": "SELECT awardee_s_ FROM table_24446718_7 WHERE name_of_award = \"Best Editing\"", "question": "Name the awardee for best editing", "context": "CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, name_of_award VARCHAR)"}, {"answer": "SELECT COUNT(awardee_s_) FROM table_24446718_7 WHERE name_of_award = \"Best Cinematography\"", "question": "Name the number of awardees for  best cinematography", "context": "CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, name_of_award VARCHAR)"}, {"answer": "SELECT MIN(flaps) FROM table_24466191_1", "question": "Name the least flaps", "context": "CREATE TABLE table_24466191_1 (flaps INTEGER)"}, {"answer": "SELECT MAX(poles) FROM table_24466191_1 WHERE series = \"Macau Grand Prix\"", "question": "Name th most poles for macau grand prix", "context": "CREATE TABLE table_24466191_1 (poles INTEGER, series VARCHAR)"}, {"answer": "SELECT COUNT(races) FROM table_24466191_1 WHERE position = \"15th\"", "question": "Name the total number of races for 15th position", "context": "CREATE TABLE table_24466191_1 (races VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(races) FROM table_24466191_1 WHERE flaps > 2.0", "question": "Name the most races for flaps larger than 2.0", "context": "CREATE TABLE table_24466191_1 (races INTEGER, flaps INTEGER)"}, {"answer": "SELECT COUNT(poles) FROM table_24466191_1 WHERE position = \"15th\"", "question": "Name the number of poles for 15th position", "context": "CREATE TABLE table_24466191_1 (poles VARCHAR, position VARCHAR)"}, {"answer": "SELECT team FROM table_24466191_1 WHERE season = 2010", "question": "Name the team for season 2010", "context": "CREATE TABLE table_24466191_1 (team VARCHAR, season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_24466855_1 WHERE written_by = \"Jay J. Demopoulos\"", "question": "Name the air date for  jay j. demopoulos", "context": "CREATE TABLE table_24466855_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT game_site FROM table_24481478_1 WHERE attendance = 29753", "question": "At which location did 29753 fans show up to watch the game?", "context": "CREATE TABLE table_24481478_1 (game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT team_record FROM table_24481478_1 WHERE week = 7", "question": "What was the game record during week 7?", "context": "CREATE TABLE table_24481478_1 (team_record VARCHAR, week VARCHAR)"}, {"answer": "SELECT kickoff FROM table_24481478_1 WHERE date = \"Saturday, April 20\"", "question": "What time did the game start on saturday, april 20?", "context": "CREATE TABLE table_24481478_1 (kickoff VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_24481478_1 WHERE team_record = \"7\u20132\"", "question": "In which week was the team record 7\u20132?", "context": "CREATE TABLE table_24481478_1 (week INTEGER, team_record VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_24481478_1 WHERE opponent = \"Raleigh-Durham Skyhawks\"", "question": "How man fans showed up to watch the game versus the raleigh-durham skyhawks?", "context": "CREATE TABLE table_24481478_1 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT disposable_usd_growth FROM table_24486462_1 WHERE rank = 26", "question": "If the rank is 26, what is the disposable USD growth?", "context": "CREATE TABLE table_24486462_1 (disposable_usd_growth VARCHAR, rank VARCHAR)"}, {"answer": "SELECT country FROM table_24486462_1 WHERE compulsory_deduction = \"29.3%\"", "question": "What country has a compulsory deduction of 29.3%?", "context": "CREATE TABLE table_24486462_1 (country VARCHAR, compulsory_deduction VARCHAR)"}, {"answer": "SELECT MAX(disposable_usd_growth) FROM table_24486462_1 WHERE country = \"Australia\"", "question": "What is Australia's Disposable USD growth?", "context": "CREATE TABLE table_24486462_1 (disposable_usd_growth INTEGER, country VARCHAR)"}, {"answer": "SELECT MIN(disposable_usd_2011) FROM table_24486462_1", "question": "What is the lowest disposable USD 2011?", "context": "CREATE TABLE table_24486462_1 (disposable_usd_2011 INTEGER)"}, {"answer": "SELECT MAX(minutes) FROM table_24477075_1 WHERE starts = 12", "question": "Name the most minutes and starts being 12", "context": "CREATE TABLE table_24477075_1 (minutes INTEGER, starts VARCHAR)"}, {"answer": "SELECT position FROM table_24477075_1 WHERE minutes = 132", "question": "Name the position for 132 minutes", "context": "CREATE TABLE table_24477075_1 (position VARCHAR, minutes VARCHAR)"}, {"answer": "SELECT rank FROM table_24489942_10 WHERE name = \"Thomas Morgenstern\"", "question": "Name the rank for thomas morgenstern", "context": "CREATE TABLE table_24489942_10 (rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_24489942_10 WHERE nationality = \"Switzerland\"", "question": "Name the rank for switzerland", "context": "CREATE TABLE table_24489942_10 (rank VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT points FROM table_24489942_10 WHERE nationality = \"Switzerland\"", "question": "Name the points for switzerland", "context": "CREATE TABLE table_24489942_10 (points VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT points FROM table_24489942_10 WHERE name = \"Thomas Morgenstern\"", "question": "Name the points for thomas morgenstern", "context": "CREATE TABLE table_24489942_10 (points VARCHAR, name VARCHAR)"}, {"answer": "SELECT appointed FROM table_24490665_1 WHERE name = \"Jack Watson\"", "question": "When was jack watson appointed?", "context": "CREATE TABLE table_24490665_1 (appointed VARCHAR, name VARCHAR)"}, {"answer": "SELECT launched FROM table_24496403_1 WHERE ship = \"Carysfort\"", "question": "When was the Carysfort launched?", "context": "CREATE TABLE table_24496403_1 (launched VARCHAR, ship VARCHAR)"}, {"answer": "SELECT launched FROM table_24496403_1 WHERE disposition = \"Stokers' training ship\"", "question": "When was the stokers' training ship launched?", "context": "CREATE TABLE table_24496403_1 (launched VARCHAR, disposition VARCHAR)"}, {"answer": "SELECT COUNT(completed) FROM table_24496403_1 WHERE ship = \"Carysfort\"", "question": "How many ships were named Carysfort?", "context": "CREATE TABLE table_24496403_1 (completed VARCHAR, ship VARCHAR)"}, {"answer": "SELECT background FROM table_24501530_1 WHERE result = \"Fired in week 5\"", "question": "What is the background of the person fired in week 5?", "context": "CREATE TABLE table_24501530_1 (background VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_24501530_1 WHERE hometown = \"Maylands, Western Australia\"", "question": "What was the result of the player from Maylands, Western Australia?", "context": "CREATE TABLE table_24501530_1 (result VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(age) FROM table_24501530_1 WHERE candidate = \"Amy Cato\"", "question": "How many ages for player Amy Cato?", "context": "CREATE TABLE table_24501530_1 (age VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT candidate FROM table_24501530_1 WHERE hometown = \"Maylands, Western Australia\"", "question": "What is the name of the player from Maylands, Western Australia?", "context": "CREATE TABLE table_24501530_1 (candidate VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(age) FROM table_24501530_1 WHERE result = \"Fired in week 6\"", "question": "How many age figures for the player fired in week 6?", "context": "CREATE TABLE table_24501530_1 (age VARCHAR, result VARCHAR)"}, {"answer": "SELECT latitude FROM table_24518475_1 WHERE time__utc_ = \"18:19:36\"", "question": "What was the latitude that had a UTC time of 18:19:36?", "context": "CREATE TABLE table_24518475_1 (latitude VARCHAR, time__utc_ VARCHAR)"}, {"answer": "SELECT depth FROM table_24518475_1 WHERE time__utc_ = \"18:00:22\"", "question": "What is the depth of the aftershock at 18:00:22?", "context": "CREATE TABLE table_24518475_1 (depth VARCHAR, time__utc_ VARCHAR)"}, {"answer": "SELECT team FROM table_24535095_2 WHERE listed_owner_s_ = \"Susan Bates\"", "question": "Name the team for susan bates", "context": "CREATE TABLE table_24535095_2 (team VARCHAR, listed_owner_s_ VARCHAR)"}, {"answer": "SELECT truck_s_ FROM table_24535095_2 WHERE crew_chief = \"Eric Phillips\"", "question": "Name the truck for eric phillips", "context": "CREATE TABLE table_24535095_2 (truck_s_ VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT listed_owner_s_ FROM table_24535095_2 WHERE crew_chief = \"Mike Garvey\"", "question": "Name the listed owner for mike garvey", "context": "CREATE TABLE table_24535095_2 (listed_owner_s_ VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_24535095_2 WHERE listed_owner_s_ = \"Pete Raymer\"", "question": "Name the least listed owner for pete raymer", "context": "CREATE TABLE table_24535095_2 (_number INTEGER, listed_owner_s_ VARCHAR)"}, {"answer": "SELECT crew_chief FROM table_24535095_2 WHERE listed_owner_s_ = \"Rhonda Thorson\"", "question": "Name the crew chief for rhonda thorson", "context": "CREATE TABLE table_24535095_2 (crew_chief VARCHAR, listed_owner_s_ VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_2453243_3 WHERE no_in_season = 3", "question": "What is the production code for episode 3 in the season?", "context": "CREATE TABLE table_2453243_3 (production_code INTEGER, no_in_season VARCHAR)"}, {"answer": "SELECT MIN(match2) FROM table_24538140_2", "question": "What is the lowest score of all games for match 2?", "context": "CREATE TABLE table_24538140_2 (match2 INTEGER)"}, {"answer": "SELECT MAX(match2) FROM table_24538140_2 WHERE match4 = 0 AND total = 5", "question": "What is the highest score for match 2 where the score for match 4 is 0 and the total score is 5?", "context": "CREATE TABLE table_24538140_2 (match2 INTEGER, match4 VARCHAR, total VARCHAR)"}, {"answer": "SELECT match1 FROM table_24538140_2 WHERE team = \"Eastern Tigers\"", "question": "What is the score for match 1 for the team Eastern Tigers?", "context": "CREATE TABLE table_24538140_2 (match1 VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(socket) FROM table_24538587_11 WHERE brand_name__list_ = \"Core i3-2xx7M\"", "question": "How many sockets are listed that have a brand name of \"Core i3-2xx7m\"?", "context": "CREATE TABLE table_24538587_11 (socket VARCHAR, brand_name__list_ VARCHAR)"}, {"answer": "SELECT i_o_bus FROM table_24538587_11 WHERE brand_name__list_ = \"Core i3-21xx\"", "question": "What is the i/o bus for the brand name Core i3-21xx?", "context": "CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR)"}, {"answer": "SELECT i_o_bus FROM table_24538587_11 WHERE brand_name__list_ = \"Core i3-21xxT\"", "question": "What i/o buses are associated with the brand name Core i3-21xxt?", "context": "CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR)"}, {"answer": "SELECT codename__main_article_ FROM table_24538587_11 WHERE brand_name__list_ = \"Core i3-32xxT\"", "question": "What is the codename for the Core i3-32xxt?", "context": "CREATE TABLE table_24538587_11 (codename__main_article_ VARCHAR, brand_name__list_ VARCHAR)"}, {"answer": "SELECT i_o_bus FROM table_24538587_11 WHERE socket = \"LGA 1155\" AND codename__main_article_ = \"Sandy Bridge (Desktop)\" AND brand_name__list_ = \"Core i3-21xx\"", "question": "What i/o buses are associated with the LGA 1155 socket, a code name of Sandy Bridge (desktop) and a brand name of Core i3-21xx?", "context": "CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR, socket VARCHAR, codename__main_article_ VARCHAR)"}, {"answer": "SELECT socket FROM table_24538587_11 WHERE brand_name__list_ = \"Core i3-3xx0M\"", "question": "What is the sockets associated with a brand name of Core i3-3xx0m?", "context": "CREATE TABLE table_24538587_11 (socket VARCHAR, brand_name__list_ VARCHAR)"}, {"answer": "SELECT player FROM table_24540893_6 WHERE cfl_team = \"Calgary Stampeders\"", "question": "Who was drafted by the calgary stampeders?", "context": "CREATE TABLE table_24540893_6 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_24540893_6 WHERE school = \"SE Missouri State\"", "question": "Where was the player from se missouri state drafted?", "context": "CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_24540893_6 WHERE school = \"Kent State\"", "question": "What position does the player from kent state play?", "context": "CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_24540893_6 WHERE position = \"RB\"", "question": "What school did the rb drafted attend?", "context": "CREATE TABLE table_24540893_6 (school VARCHAR, position VARCHAR)"}, {"answer": "SELECT pick__number FROM table_24540893_6 WHERE school = \"Western Ontario\" AND position = \"OL\"", "question": "What numbered pick attended western ontario and is an OL?", "context": "CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_24540893_6 WHERE school = \"SE Missouri State\"", "question": "How many players attended SE missouri state?", "context": "CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT pole_position FROM table_24547593_1 WHERE circuit = \"Knockhill\"", "question": "Who was in the pole position for knockhill?", "context": "CREATE TABLE table_24547593_1 (pole_position VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_24547593_1 WHERE circuit = \"Knockhill\"", "question": "How many dates was knockhill?", "context": "CREATE TABLE table_24547593_1 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT l3_cache FROM table_24538587_13 WHERE brand_name__list_ = \"Core i7-2xxxQE, i7-26xxQM, i7-27xxQM\"", "question": "Name the l3 cache for core i7-2xxxqe, i7-26xxqm, i7-27xxqm", "context": "CREATE TABLE table_24538587_13 (l3_cache VARCHAR, brand_name__list_ VARCHAR)"}, {"answer": "SELECT most_laps_led FROM table_2454550_1 WHERE track = \"Chicagoland Speedway\"", "question": "Who had most laps led at Chicagoland speedway? ", "context": "CREATE TABLE table_2454550_1 (most_laps_led VARCHAR, track VARCHAR)"}, {"answer": "SELECT race_name FROM table_2454550_1 WHERE fastest_lap = \"Buddy Rice\"", "question": "In what race did Buddy Rice hav fastest lap? ", "context": "CREATE TABLE table_2454550_1 (race_name VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT track FROM table_2454550_1 WHERE date = \"March 19\"", "question": "On what tra k was the march 19 race held? ", "context": "CREATE TABLE table_2454550_1 (track VARCHAR, date VARCHAR)"}, {"answer": "SELECT track FROM table_2454550_1 WHERE race_name = \"Argent Mortgage Indy 300\"", "question": "On what track is the Argent mortgage Indy 300 held? ", "context": "CREATE TABLE table_2454550_1 (track VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_2454550_1 WHERE location = \"Phoenix, Arizona\"", "question": "who held the fastes lap in Phoenix, Arizona? ", "context": "CREATE TABLE table_2454550_1 (fastest_lap VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_24549777_1 WHERE high_checkout = 84", "question": "How man players checked out at 84?", "context": "CREATE TABLE table_24549777_1 (player VARCHAR, high_checkout VARCHAR)"}, {"answer": "SELECT COUNT(3 AS _dart_average) FROM table_24549777_1 WHERE player = \"Gary Anderson\"", "question": "How man 3-dart averages did gary anderson have?", "context": "CREATE TABLE table_24549777_1 (player VARCHAR)"}, {"answer": "SELECT result FROM table_24561550_1 WHERE record = \"3-3\"", "question": "List all results from the 3-3 scoring game.", "context": "CREATE TABLE table_24561550_1 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_24561550_1 WHERE record = \"4-4\"", "question": "List all opponents from the 4-4 scoring game.", "context": "CREATE TABLE table_24561550_1 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_24561550_1 WHERE wildcats_points = 48", "question": "List the record from the game where Wildcats had 48 points.", "context": "CREATE TABLE table_24561550_1 (record VARCHAR, wildcats_points VARCHAR)"}, {"answer": "SELECT wildcats_points FROM table_24561550_1 WHERE opponent = \"Baylor\"", "question": "How many points did the Wildcats get when Baylor was an opponent?", "context": "CREATE TABLE table_24561550_1 (wildcats_points VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_24560733_1 WHERE date = \"Oct. 4\"", "question": "Who was the opponent on Oct. 4?", "context": "CREATE TABLE table_24560733_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(opponents) FROM table_24560733_1", "question": "What was the minimum number for opponents?", "context": "CREATE TABLE table_24560733_1 (opponents INTEGER)"}, {"answer": "SELECT MIN(opponents) FROM table_24560733_1 WHERE opponent = \"at Michigan State\"", "question": "What is the minimum number of opponents' points for the game at Michigan State?", "context": "CREATE TABLE table_24560733_1 (opponents INTEGER, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_24560733_1 WHERE record = \"5-2\"", "question": "Which opponent led to a 5-2 record?", "context": "CREATE TABLE table_24560733_1 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_24560733_1 WHERE opponent = \"at Ole Miss\"", "question": "How many opponents' points numbers are associated with the game at Ole Miss?", "context": "CREATE TABLE table_24560733_1 (opponents VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(period) FROM table_24565004_13 WHERE name = \"Yvon Le Roux\"", "question": "Name the total number of period for yvon le roux", "context": "CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR)"}, {"answer": "SELECT period FROM table_24565004_13 WHERE name = \"Michel Llodra\"", "question": "Name the period for michel llodra", "context": "CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_24565004_13 WHERE nationality\u00b2 = \"Democratic Republic of the Congo\"", "question": "Name the number of position for democratic republic of the congo", "context": "CREATE TABLE table_24565004_13 (position VARCHAR, nationality\u00b2 VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_24565004_14 WHERE appearances\u00b9 = 101", "question": "How many names correspond to the value 101 for appearances?", "context": "CREATE TABLE table_24565004_14 (name VARCHAR, appearances\u00b9 VARCHAR)"}, {"answer": "SELECT position FROM table_24565004_14 WHERE name = \"Thierry Morin\"", "question": "What positions correspond to the name Thierry Morin?", "context": "CREATE TABLE table_24565004_14 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT period FROM table_24565004_11 WHERE appearances\u00b9 = 219", "question": "What time period had appearances of 219?", "context": "CREATE TABLE table_24565004_11 (period VARCHAR, appearances\u00b9 VARCHAR)"}, {"answer": "SELECT COUNT(period) FROM table_24565004_11 WHERE goals\u00b9 = 15", "question": "How many periods had 15 goals?", "context": "CREATE TABLE table_24565004_11 (period VARCHAR, goals\u00b9 VARCHAR)"}, {"answer": "SELECT MIN(appearances\u00b9) FROM table_24565004_22 WHERE name = \"Pierre Vermeulen\"", "question": "at least how many times was Pierre Vermeulen at a game?", "context": "CREATE TABLE table_24565004_22 (appearances\u00b9 INTEGER, name VARCHAR)"}, {"answer": "SELECT nationality\u00b2 FROM table_24565004_22 WHERE name = \"Richard Vanquelef\"", "question": "What country is Richard Vanquelef from?", "context": "CREATE TABLE table_24565004_22 (nationality\u00b2 VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality\u00b2 FROM table_24565004_22 WHERE name = \"Pierre Vermeulen\"", "question": "What country is Pierre Vermeulen from?", "context": "CREATE TABLE table_24565004_22 (nationality\u00b2 VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(appearances\u00b9) FROM table_24565004_20 WHERE nationality\u00b2 = \"Yugoslavia\"", "question": "Name the number of appearances for yugoslavia", "context": "CREATE TABLE table_24565004_20 (appearances\u00b9 VARCHAR, nationality\u00b2 VARCHAR)"}, {"answer": "SELECT nationality\u00b2 FROM table_24565004_20 WHERE position = \"Defender\" AND appearances\u00b9 = 201", "question": "Name the nationality for defender 201", "context": "CREATE TABLE table_24565004_20 (nationality\u00b2 VARCHAR, position VARCHAR, appearances\u00b9 VARCHAR)"}, {"answer": "SELECT goals\u00b9 FROM table_24565004_20 WHERE name = \"Daniel Sanchez\"", "question": "Name the goals for daniel sanchez", "context": "CREATE TABLE table_24565004_20 (goals\u00b9 VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(goals\u00b9) FROM table_24565004_20 WHERE nationality\u00b2 = \"Algeria\"", "question": "Name the most goals for algeria", "context": "CREATE TABLE table_24565004_20 (goals\u00b9 INTEGER, nationality\u00b2 VARCHAR)"}, {"answer": "SELECT MIN(goals\u00b9) FROM table_24565004_21", "question": "What was the lowest score.", "context": "CREATE TABLE table_24565004_21 (goals\u00b9 INTEGER)"}, {"answer": "SELECT MIN(appearances\u00b9) FROM table_24565004_21 WHERE name = \"Sammy Traor\u00e9\"", "question": "List the minimum impressions for sammy traor\u00e9", "context": "CREATE TABLE table_24565004_21 (appearances\u00b9 INTEGER, name VARCHAR)"}, {"answer": "SELECT period FROM table_24565004_21 WHERE name = \"Nabatingue Toko\"", "question": "During what years did nabatingue toko play. ", "context": "CREATE TABLE table_24565004_21 (period VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(goals\u00b9) FROM table_24565004_17 WHERE name = \"Mauricio Pochettino\"", "question": "Name the number of goals for mauricio pochettino", "context": "CREATE TABLE table_24565004_17 (goals\u00b9 VARCHAR, name VARCHAR)"}, {"answer": "SELECT period FROM table_24565004_17 WHERE name = \"Michel Prost\"", "question": "Name the period for michel prost", "context": "CREATE TABLE table_24565004_17 (period VARCHAR, name VARCHAR)"}, {"answer": "SELECT goals\u00b9 FROM table_24565004_17 WHERE name = \"Mauricio Pochettino\"", "question": "Name the goals for mauricio pochettino", "context": "CREATE TABLE table_24565004_17 (goals\u00b9 VARCHAR, name VARCHAR)"}, {"answer": "SELECT period FROM table_24565004_2 WHERE appearances\u00b9 = 380", "question": "Name the period for appearances being 380", "context": "CREATE TABLE table_24565004_2 (period VARCHAR, appearances\u00b9 VARCHAR)"}, {"answer": "SELECT appearances\u00b9 FROM table_24565004_2 WHERE name = \"Bernard Allou\"", "question": "Name the appearances for bernard allou", "context": "CREATE TABLE table_24565004_2 (appearances\u00b9 VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(appearances\u00b9) FROM table_24565004_2 WHERE name = \"Bernard Allou\"", "question": "Name the most appearances for bernard allou", "context": "CREATE TABLE table_24565004_2 (appearances\u00b9 INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(goals\u00b9) FROM table_24565004_7", "question": "What is the highest number of goals scored", "context": "CREATE TABLE table_24565004_7 (goals\u00b9 INTEGER)"}, {"answer": "SELECT MIN(appearances\u00b9) FROM table_24565004_7", "question": "What is the lowest number of appearances a player had", "context": "CREATE TABLE table_24565004_7 (appearances\u00b9 INTEGER)"}, {"answer": "SELECT nationality\u00b2 FROM table_24565004_7 WHERE name = \"Louis Floch\"", "question": "What is the nationality of Louis floch", "context": "CREATE TABLE table_24565004_7 (nationality\u00b2 VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_24565004_7 WHERE appearances\u00b9 = 252", "question": "Which player had 252 appearances", "context": "CREATE TABLE table_24565004_7 (name VARCHAR, appearances\u00b9 VARCHAR)"}, {"answer": "SELECT nationality\u00b2 FROM table_24565004_7 WHERE goals\u00b9 = 13", "question": "What is the nationality of the player who scored 13 goals", "context": "CREATE TABLE table_24565004_7 (nationality\u00b2 VARCHAR, goals\u00b9 VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_245711_2 WHERE final_record = \"9\u201316\u20135\"", "question": "how many time is the final record is 9\u201316\u20135?", "context": "CREATE TABLE table_245711_2 (season VARCHAR, final_record VARCHAR)"}, {"answer": "SELECT flight_up FROM table_245800_2 WHERE launch_date = \"23 July 1980 18:33:03\"", "question": "What station was sent on flight up and was launched on 23 July 1980 18:33:03?", "context": "CREATE TABLE table_245800_2 (flight_up VARCHAR, launch_date VARCHAR)"}, {"answer": "SELECT crew FROM table_245800_2 WHERE flight_up = \"Soyuz T-3\"", "question": "Who were the crews on the flight up of Soyuz T-3?", "context": "CREATE TABLE table_245800_2 (crew VARCHAR, flight_up VARCHAR)"}, {"answer": "SELECT duration__days_ FROM table_245800_2 WHERE flight_down = \"Soyuz 35\"", "question": "How many days were the station of Soyuz 35 in flight down were in orbit?", "context": "CREATE TABLE table_245800_2 (duration__days_ VARCHAR, flight_down VARCHAR)"}, {"answer": "SELECT COUNT(gn_divisions) FROM table_24574438_1 WHERE ds_division = \"Mannar\"", "question": "Name the number of gn divisions for mannar", "context": "CREATE TABLE table_24574438_1 (gn_divisions VARCHAR, ds_division VARCHAR)"}, {"answer": "SELECT MAX(sinhalese) FROM table_24574438_1 WHERE ds_division = \"Manthai West\"", "question": "Name the sinhalese for manthai west", "context": "CREATE TABLE table_24574438_1 (sinhalese INTEGER, ds_division VARCHAR)"}, {"answer": "SELECT MIN(indian_tamil) FROM table_24574438_1 WHERE population_density___km_2__ = 240", "question": "Name the least indian tamil for population density being 240", "context": "CREATE TABLE table_24574438_1 (indian_tamil INTEGER, population_density___km_2__ VARCHAR)"}, {"answer": "SELECT population_density___km_2__ FROM table_24574438_1 WHERE ds_division = \"Manthai West\"", "question": "Name the popultion density being manthai west", "context": "CREATE TABLE table_24574438_1 (population_density___km_2__ VARCHAR, ds_division VARCHAR)"}, {"answer": "SELECT COUNT(sinhalese) FROM table_24574438_1 WHERE indian_tamil = 177", "question": "Name the total number of sinhalese for indian tamil being 177", "context": "CREATE TABLE table_24574438_1 (sinhalese VARCHAR, indian_tamil VARCHAR)"}, {"answer": "SELECT MIN(area__km_2__) FROM table_24574438_1", "question": "Name the least area ", "context": "CREATE TABLE table_24574438_1 (area__km_2__ INTEGER)"}, {"answer": "SELECT COUNT(division_five) FROM table_24575253_4 WHERE division_one = \"Westcott\"", "question": "When westcott is in division one how many leagues are in division 5?", "context": "CREATE TABLE table_24575253_4 (division_five VARCHAR, division_one VARCHAR)"}, {"answer": "SELECT division_four FROM table_24575253_4 WHERE division_five = \"Godstone\"", "question": "When godstone is in division five who is in division four?", "context": "CREATE TABLE table_24575253_4 (division_four VARCHAR, division_five VARCHAR)"}, {"answer": "SELECT season FROM table_24575253_4 WHERE division_four = \"Wallington New Foresters\"", "question": "When the wallington new foresters are in division four what is the season?", "context": "CREATE TABLE table_24575253_4 (season VARCHAR, division_four VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_24575253_4 WHERE division_two = \"Racing Epsom\"", "question": "When racing epsom is in division two how many seasons are there?", "context": "CREATE TABLE table_24575253_4 (season VARCHAR, division_two VARCHAR)"}, {"answer": "SELECT COUNT(division_three) FROM table_24575253_4 WHERE division_two = \"Westcott 1935\"", "question": "When westcott 1935 is in division two how many leagues are in division three?", "context": "CREATE TABLE table_24575253_4 (division_three VARCHAR, division_two VARCHAR)"}, {"answer": "SELECT division_one FROM table_24575253_4 WHERE division_four = \"Real Holmesdale Reserves\"", "question": "When real holmesdale reserves is division four who is in division one?", "context": "CREATE TABLE table_24575253_4 (division_one VARCHAR, division_four VARCHAR)"}, {"answer": "SELECT duration FROM table_245801_2 WHERE spacecraft = \"Salyut 7 \u2013 VE-4 \u2013 EVA 1\"", "question": "When salyut 7 \u2013 ve-4 \u2013 eva 1 is the spacecraft, what is the duration?", "context": "CREATE TABLE table_245801_2 (duration VARCHAR, spacecraft VARCHAR)"}, {"answer": "SELECT end___utc FROM table_245801_2 WHERE comments = \"First woman EVA\"", "question": "When first woman eva is the comment what is the end -utc?", "context": "CREATE TABLE table_245801_2 (end___utc VARCHAR, comments VARCHAR)"}, {"answer": "SELECT series FROM table_24585157_1 WHERE points = \"68\"", "question": "What series did the racer earn 68 points in?", "context": "CREATE TABLE table_24585157_1 (series VARCHAR, points VARCHAR)"}, {"answer": "SELECT duration__days_ FROM table_245801_1 WHERE crew = \"Georgi Grechko\"", "question": "Name the duration for georgi grechko", "context": "CREATE TABLE table_245801_1 (duration__days_ VARCHAR, crew VARCHAR)"}, {"answer": "SELECT flight_up FROM table_245801_1 WHERE landing_date = \"10 December 1982 19:02:36 UTC\"", "question": "Name the flight up for 10 december 1982 19:02:36 utc", "context": "CREATE TABLE table_245801_1 (flight_up VARCHAR, landing_date VARCHAR)"}, {"answer": "SELECT launch_date FROM table_245801_1 WHERE crew = \"Vladimir Lyakhov , Aleksandr Pavlovich Aleksandrov\"", "question": "Name the launch date for  vladimir lyakhov , aleksandr pavlovich aleksandrov", "context": "CREATE TABLE table_245801_1 (launch_date VARCHAR, crew VARCHAR)"}, {"answer": "SELECT flight_down FROM table_245801_1 WHERE crew = \"Vladimir Vasyutin , Alexander Volkov\"", "question": "Name the flight down for vladimir vasyutin , alexander volkov", "context": "CREATE TABLE table_245801_1 (flight_down VARCHAR, crew VARCHAR)"}, {"answer": "SELECT COUNT(duration__days_) FROM table_245801_1 WHERE crew = \"Vladimir Vasyutin , Alexander Volkov\"", "question": "Name the duration for  vladimir vasyutin , alexander volkov", "context": "CREATE TABLE table_245801_1 (duration__days_ VARCHAR, crew VARCHAR)"}, {"answer": "SELECT team FROM table_24584486_1 WHERE points = 38", "question": "What team was he on the year he had 38 points? ", "context": "CREATE TABLE table_24584486_1 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_24584486_1 WHERE poles = 10", "question": "What was the least amount of wins when he had 10 poles? ", "context": "CREATE TABLE table_24584486_1 (wins INTEGER, poles VARCHAR)"}, {"answer": "SELECT team FROM table_24587026_1 WHERE points = \"22\"", "question": "Name the team for 22 points", "context": "CREATE TABLE table_24587026_1 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT f_laps FROM table_24587026_1 WHERE series = \"GP2 series\"", "question": "Name the f/laps for gp2 series", "context": "CREATE TABLE table_24587026_1 (f_laps VARCHAR, series VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_24587026_1", "question": "Name the most wins", "context": "CREATE TABLE table_24587026_1 (wins INTEGER)"}, {"answer": "SELECT MIN(races) FROM table_24587026_1 WHERE team = \"Carlin\"", "question": "Name the least races for carlin", "context": "CREATE TABLE table_24587026_1 (races INTEGER, team VARCHAR)"}, {"answer": "SELECT position FROM table_24587026_1 WHERE podiums = 0 AND team = \"Carlin\"", "question": "Name the position for 0 podiums and carlin team", "context": "CREATE TABLE table_24587026_1 (position VARCHAR, podiums VARCHAR, team VARCHAR)"}, {"answer": "SELECT name_in_syriac FROM table_24613895_1 WHERE number_of_believers = 500", "question": "Name the name in syriac for 500 believers", "context": "CREATE TABLE table_24613895_1 (name_in_syriac VARCHAR, number_of_believers VARCHAR)"}, {"answer": "SELECT MIN(number_of_believers) FROM table_24613895_1", "question": "Name the least number of believers", "context": "CREATE TABLE table_24613895_1 (number_of_believers INTEGER)"}, {"answer": "SELECT MAX(number_of_believers) FROM table_24613895_1 WHERE name_in_syriac = \"\u0713\u0718\u071d\u0720\u0722\"", "question": "Name the most number of believers for \u0713\u0718\u071d\u0720\u0722", "context": "CREATE TABLE table_24613895_1 (number_of_believers INTEGER, name_in_syriac VARCHAR)"}, {"answer": "SELECT number_of_believers FROM table_24613895_1 WHERE name_of_village = \"Khosrowa\"", "question": "Name the number of believers for khosrowa", "context": "CREATE TABLE table_24613895_1 (number_of_believers VARCHAR, name_of_village VARCHAR)"}, {"answer": "SELECT COUNT(number_of_believers) FROM table_24613895_1 WHERE name_of_village = \"Patavur\"", "question": "Name the number of believers for patavur", "context": "CREATE TABLE table_24613895_1 (number_of_believers VARCHAR, name_of_village VARCHAR)"}, {"answer": "SELECT channel FROM table_24598274_20 WHERE local_title = \"Live to Dance\"", "question": "The local title \"Live to Dance\" was aired in which channel?", "context": "CREATE TABLE table_24598274_20 (channel VARCHAR, local_title VARCHAR)"}, {"answer": "SELECT country FROM table_24598274_20 WHERE presenter_s_ = \"Johanna Klum\"", "question": "Which country did Johanna Klum presented the show?", "context": "CREATE TABLE table_24598274_20 (country VARCHAR, presenter_s_ VARCHAR)"}, {"answer": "SELECT MAX(released) FROM table_24600706_1 WHERE song = \"The In Crowd\"", "question": "Name the most released for the in crowd", "context": "CREATE TABLE table_24600706_1 (released INTEGER, song VARCHAR)"}, {"answer": "SELECT MAX(released) FROM table_24600706_1 WHERE song = \"Apologize\"", "question": "Name the most released for apologize", "context": "CREATE TABLE table_24600706_1 (released INTEGER, song VARCHAR)"}, {"answer": "SELECT MAX(released) FROM table_24600706_1 WHERE song = \"Right Here, Right Now\"", "question": "Name the most released for right here, right now", "context": "CREATE TABLE table_24600706_1 (released INTEGER, song VARCHAR)"}, {"answer": "SELECT us_exclusive FROM table_24600706_1 WHERE artist_band = \"Miley Cyrus\"", "question": "Name the us exclusive for miley cyrus", "context": "CREATE TABLE table_24600706_1 (us_exclusive VARCHAR, artist_band VARCHAR)"}, {"answer": "SELECT COUNT(clean_electric_grid_california__san_francisco_) FROM table_24620684_2 WHERE vehicle = \"BMW ActiveE\"", "question": "When bmw activee is the vehicle type how many clean electric grid california (san francisco) measurements are there?", "context": "CREATE TABLE table_24620684_2 (clean_electric_grid_california__san_francisco_ VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT vehicle FROM table_24620684_2 WHERE epa_rated_combined_fuel_economy = \"102 mpg-e (33kW-hrs/100mi)\"", "question": "When 102 mpg-e (33kw-hrs/100mi) is the epa rated combined fuel economy what is the vehicle type? ", "context": "CREATE TABLE table_24620684_2 (vehicle VARCHAR, epa_rated_combined_fuel_economy VARCHAR)"}, {"answer": "SELECT COUNT(vehicle) FROM table_24620684_2 WHERE clean_electric_grid_california__san_francisco_ = \"100 g/mi (62 g/km)\"", "question": "When 100 g/mi (62 g/km) is the clean electric grid california (san francisco) how many vehicles are there?", "context": "CREATE TABLE table_24620684_2 (vehicle VARCHAR, clean_electric_grid_california__san_francisco_ VARCHAR)"}, {"answer": "SELECT us_national_average_electric_mix FROM table_24620684_2 WHERE dirty_electric_grid_rocky_mountains__denver_ = \"380 g/mi (236 g/km)\"", "question": "When 380 g/mi (236 g/km) is the dirty electric grid rocky mountains (denver) what is the u.s national average electric mix?", "context": "CREATE TABLE table_24620684_2 (us_national_average_electric_mix VARCHAR, dirty_electric_grid_rocky_mountains__denver_ VARCHAR)"}, {"answer": "SELECT us_national_average_electric_mix FROM table_24620684_2 WHERE vehicle = \"BMW ActiveE\"", "question": "When bmw activee is the vehicle type what is the u.s national average electric mix?", "context": "CREATE TABLE table_24620684_2 (us_national_average_electric_mix VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT COUNT(operating_mode) FROM table_24620684_2 WHERE epa_rated_combined_fuel_economy = \"87 mpg-e (39kW-hrs/100mi)\"", "question": "When  87 mpg-e (39kw-hrs/100mi) is the  epa rated combined fuel economy how many operating modes are there?", "context": "CREATE TABLE table_24620684_2 (operating_mode VARCHAR, epa_rated_combined_fuel_economy VARCHAR)"}, {"answer": "SELECT opponents FROM table_24638867_6 WHERE score = \"6\u20132, 3\u20136, 6\u20133\"", "question": "Name the opponents for 6\u20132, 3\u20136, 6\u20133", "context": "CREATE TABLE table_24638867_6 (opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT championship FROM table_24638867_6 WHERE outcome = \"Winner\" AND score = \"7\u20135, 4\u20136, 6\u20131\"", "question": "Name the championship for outcome being winner for  7\u20135, 4\u20136, 6\u20131", "context": "CREATE TABLE table_24638867_6 (championship VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_24638867_6 WHERE outcome = \"Winner\" AND opponents = \"Julie Halard-Decugis Ai Sugiyama\"", "question": "Name the score for winner and  julie halard-decugis ai sugiyama", "context": "CREATE TABLE table_24638867_6 (score VARCHAR, outcome VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT championship FROM table_24638867_6 WHERE score = \"7\u20135, 6\u20134\" AND surface = \"Hard\"", "question": "Name the championship for hard surface 7\u20135, 6\u20134 ", "context": "CREATE TABLE table_24638867_6 (championship VARCHAR, score VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_24638867_6 WHERE partner = \"Nathalie Tauziat\"", "question": "Name the surface for nathalie tauziat", "context": "CREATE TABLE table_24638867_6 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_24642706_1 WHERE money_list_rank = 74", "question": "Name the most year for money list rank is 74", "context": "CREATE TABLE table_24642706_1 (year INTEGER, money_list_rank VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_2463383_2 WHERE avg_start = \"20.5\"", "question": "Name the team for avg start being 20.5", "context": "CREATE TABLE table_2463383_2 (team_s_ VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_2463383_2 WHERE wins = 0 AND top_5 = 0 AND poles = 0 AND avg_start = \"37.0\"", "question": "Name the team for wins being 0 and top 5 is 0 and poles is 0 and avg start is 37.0", "context": "CREATE TABLE table_2463383_2 (team_s_ VARCHAR, avg_start VARCHAR, poles VARCHAR, wins VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT winnings FROM table_2463383_2 WHERE position = \"23rd\"", "question": "Name the winnings for 23rd position", "context": "CREATE TABLE table_2463383_2 (winnings VARCHAR, position VARCHAR)"}, {"answer": "SELECT winnings FROM table_2463383_2 WHERE year = 2004", "question": "Name the winnings for 2004", "context": "CREATE TABLE table_2463383_2 (winnings VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(top_10) FROM table_2463383_2 WHERE avg_start = \"37.3\"", "question": "Name the total number of top 10 for avg start being 37.3", "context": "CREATE TABLE table_2463383_2 (top_10 VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT method_of_elimination FROM table_24628683_2 WHERE time = \"24:02\"", "question": "What was the method of elimination in the chamber with a time of 24:02? ", "context": "CREATE TABLE table_24628683_2 (method_of_elimination VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(wrestler) FROM table_24628683_2 WHERE method_of_elimination = \"Pinned after being hit by a lead pipe\"", "question": "How many wrestlers are recorded for the chamber that's method of elimination was pinned after being hit by a lead pipe? ", "context": "CREATE TABLE table_24628683_2 (wrestler VARCHAR, method_of_elimination VARCHAR)"}, {"answer": "SELECT method_of_elimination FROM table_24628683_2 WHERE wrestler = \"Kofi Kingston\"", "question": "What was the method of elimination for Kofi Kingston/ ", "context": "CREATE TABLE table_24628683_2 (method_of_elimination VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT championship FROM table_24638867_4 WHERE surface = \"Clay\" AND opponent = \"Virginia Ruano Pascual Paola Su\u00e1rez\"", "question": "What championships were played on clay and the opponent was virginia ruano pascual paola su\u00e1rez?", "context": "CREATE TABLE table_24638867_4 (championship VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT championship FROM table_24638867_4 WHERE partner = \"Natasha Zvereva\"", "question": "What championships had a match where Natasha Zvereva played as partner?", "context": "CREATE TABLE table_24638867_4 (championship VARCHAR, partner VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_24648983_1 WHERE \u2116 = 4", "question": "What day did episode number 4 air originally?", "context": "CREATE TABLE table_24648983_1 (original_air_date VARCHAR, \u2116 VARCHAR)"}, {"answer": "SELECT written_by FROM table_24648983_1 WHERE us_viewers__million_ = \"8.61\"", "question": "Who wrote the episode with 8.61 million U.S. viewers?", "context": "CREATE TABLE table_24648983_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_24648983_1 WHERE us_viewers__million_ = \"8.61\"", "question": "What date did the episode with 8.61 million U.S. viewers originally air?", "context": "CREATE TABLE table_24648983_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_24648983_1 WHERE us_viewers__million_ = \"9.89\"", "question": "What is the name of the episode that had 9.89 million U.S. viewers?", "context": "CREATE TABLE table_24648983_1 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT model__list_ FROM table_2467150_2 WHERE processor = \"Kentsfield\" AND brand_name = \"Xeon\"", "question": "What is the value for model if processor is Kentsfield and brand name is Xeon?", "context": "CREATE TABLE table_2467150_2 (model__list_ VARCHAR, processor VARCHAR, brand_name VARCHAR)"}, {"answer": "SELECT tdp FROM table_2467150_2 WHERE model__list_ = \"X53xx\"", "question": "What is every value for TDP if model is x53xx?", "context": "CREATE TABLE table_2467150_2 (tdp VARCHAR, model__list_ VARCHAR)"}, {"answer": "SELECT cores FROM table_2467150_2 WHERE tdp = \"17 W\"", "question": "What is every value for cores if TDP is 17 W?", "context": "CREATE TABLE table_2467150_2 (cores VARCHAR, tdp VARCHAR)"}, {"answer": "SELECT production_code FROM table_24649082_1 WHERE written_by = \"J. H. Wyman & Jeff Pinkner\"", "question": "What is the production code for the episode written by  J. H. Wyman & Jeff Pinkner?", "context": "CREATE TABLE table_24649082_1 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_24649082_1 WHERE directed_by = \"Charles Beeson\"", "question": "What is the title of the episode directed by Charles Beeson?", "context": "CREATE TABLE table_24649082_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_24649082_1 WHERE written_by = \"David H. Goodman & Andrew Kreisberg\"", "question": "How many original air dates for the episode written by David H. Goodman & Andrew Kreisberg?", "context": "CREATE TABLE table_24649082_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_24649082_1 WHERE written_by = \"Matthew Pitts\"", "question": "What is the most recent episode number written by Matthew Pitts?", "context": "CREATE TABLE table_24649082_1 (_number INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(viewers__millions_) FROM table_24689168_5 WHERE episode = 8", "question": "How many records for number of viewers is listed for episode number 8? ", "context": "CREATE TABLE table_24689168_5 (viewers__millions_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT rating__18_49_ FROM table_24689168_5 WHERE viewers__millions_ = \"9.50\"", "question": "What was the 18 to 49 rating when 9.50 million watched?", "context": "CREATE TABLE table_24689168_5 (rating__18_49_ VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT episode FROM table_24689168_5 WHERE viewers__millions_ = \"11.73\"", "question": "what episode number had 11.73 million viewers? ", "context": "CREATE TABLE table_24689168_5 (episode VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_24689168_5 WHERE viewers__millions_ = \"11.47\"", "question": "How many episodes had 11.47 million viewers? ", "context": "CREATE TABLE table_24689168_5 (episode VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_2468961_4 WHERE original_air_date = \"April 29, 1994\"", "question": "Who wrote the episode that originally aired April 29, 1994?", "context": "CREATE TABLE table_2468961_4 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_2468961_4 WHERE original_air_date = \"October 1, 1993\"", "question": "What was the production code for the episode that debuted October 1, 1993?", "context": "CREATE TABLE table_2468961_4 (production_code INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_2468961_4 WHERE no_in_series = 56", "question": "What was the title of series number 56?", "context": "CREATE TABLE table_2468961_4 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT title FROM table_2468961_4 WHERE written_by = \"Julia Newton\" AND no_in_series = 48", "question": "What was the title of the episode written by Julia Newton in series 48?", "context": "CREATE TABLE table_2468961_4 (title VARCHAR, written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT callsign FROM table_24673888_1 WHERE station_type = \"Relay\" AND ch__number = \"TV-2\"", "question": "What is the callsign that has a station type of relay and a channel number of TV-2?", "context": "CREATE TABLE table_24673888_1 (callsign VARCHAR, station_type VARCHAR, ch__number VARCHAR)"}, {"answer": "SELECT station_type FROM table_24673888_1 WHERE callsign = \"DWZM-TV\"", "question": "What is the station type of DWZM-TV?", "context": "CREATE TABLE table_24673888_1 (station_type VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT power_kw FROM table_24673888_1 WHERE ch__number = \"TV-12\"", "question": "What is the power in kilowatts of TV-12?", "context": "CREATE TABLE table_24673888_1 (power_kw VARCHAR, ch__number VARCHAR)"}, {"answer": "SELECT power_kw FROM table_24673888_1 WHERE location__transmitter_site_ = \"Borongan\"", "question": "What is the power in KW of the transmitter situated in Borongan?", "context": "CREATE TABLE table_24673888_1 (power_kw VARCHAR, location__transmitter_site_ VARCHAR)"}, {"answer": "SELECT ch__number FROM table_24673888_1 WHERE branding = \"PTV 4 Laoag\"", "question": "What is the channel number that has a branding of PTV 4 Laoag?", "context": "CREATE TABLE table_24673888_1 (ch__number VARCHAR, branding VARCHAR)"}, {"answer": "SELECT power_kw FROM table_24673888_1 WHERE station_type = \"Relay\" AND callsign = \"DXCL-TV\"", "question": "What is the power in KW that has a station type of relay and a callsign of DXCL-TV?", "context": "CREATE TABLE table_24673888_1 (power_kw VARCHAR, station_type VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_2468961_7 WHERE no_in_season = 15", "question": "When 15 is the number in season what is the highest number in series?", "context": "CREATE TABLE table_2468961_7 (no_in_series INTEGER, no_in_season VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2468961_7 WHERE no_in_series = 123", "question": "When 123 is the number in series who is the director?", "context": "CREATE TABLE table_2468961_7 (directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_2468961_7 WHERE no_in_series = 120", "question": "When 120 is the number in series who is the writer?", "context": "CREATE TABLE table_2468961_7 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT production_code FROM table_2468961_7 WHERE no_in_series = 137", "question": "When 137 is the number in series what is the production code?", "context": "CREATE TABLE table_2468961_7 (production_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(victor) FROM table_24706337_1 WHERE name_of_the_war = \"War of 1730\u20131736 , first stage\"", "question": "How many victors where there in the War of 1730\u20131736 , first stage?", "context": "CREATE TABLE table_24706337_1 (victor VARCHAR, name_of_the_war VARCHAR)"}, {"answer": "SELECT ottoman_sultan FROM table_24706337_1 WHERE treaty_at_the_end_of_the_war = \"Treaty of Constantinople (1590)\"", "question": "Who was the Ottoman Sultan where the treaty at the end of the war was the Treaty of Constantinople (1590)?", "context": "CREATE TABLE table_24706337_1 (ottoman_sultan VARCHAR, treaty_at_the_end_of_the_war VARCHAR)"}, {"answer": "SELECT name_of_the_war FROM table_24706337_1 WHERE ottoman_sultan = \"Selim I\"", "question": "What is the name of the war where the Ottoman sultan was Selim I?", "context": "CREATE TABLE table_24706337_1 (name_of_the_war VARCHAR, ottoman_sultan VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2468961_6 WHERE no_in_series = 102", "question": "When 102 is the number in series who is the director?", "context": "CREATE TABLE table_2468961_6 (directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_2468961_8 WHERE directed_by = \"Patrick Duffy\" AND original_air_date = \"November 7, 1997\"", "question": "Name who wrote the episode directed by patrick duffy airing on november 7, 1997", "context": "CREATE TABLE table_2468961_8 (written_by VARCHAR, directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MAX(last_year) FROM table_2472711_31 WHERE lowest = 23578", "question": "What is the last year total for the team with a lowest of 23578?", "context": "CREATE TABLE table_2472711_31 (last_year INTEGER, lowest VARCHAR)"}, {"answer": "SELECT COUNT(highest) FROM table_2472711_31 WHERE lowest = 16415", "question": "How many highest figures for the team with lowest of 16415?", "context": "CREATE TABLE table_2472711_31 (highest VARCHAR, lowest VARCHAR)"}, {"answer": "SELECT team FROM table_2472711_31 WHERE up_down = \"+ 3479\"", "question": "Which team has an up/down of + 3479?", "context": "CREATE TABLE table_2472711_31 (team VARCHAR, up_down VARCHAR)"}, {"answer": "SELECT average FROM table_2472711_31 WHERE total = 243017", "question": "What is the average of the team where the total is 243017?", "context": "CREATE TABLE table_2472711_31 (average VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_24725951_1 WHERE celebrities = \"Frank Skinner and Lee Mack\"", "question": "How many episodes had celebrity guest stars Frank Skinner and Lee Mack?", "context": "CREATE TABLE table_24725951_1 (episode VARCHAR, celebrities VARCHAR)"}, {"answer": "SELECT episode FROM table_24725951_1 WHERE directed_and_produced_by = \"Karen Selway\"", "question": "List episode directed and produced by Karen Selway?", "context": "CREATE TABLE table_24725951_1 (episode VARCHAR, directed_and_produced_by VARCHAR)"}, {"answer": "SELECT episode FROM table_24725951_1 WHERE celebrities = \"Nick Hewer and Saira Khan\"", "question": "Which episode had celebrities Nick Hewer and Saira Khan in them?", "context": "CREATE TABLE table_24725951_1 (episode VARCHAR, celebrities VARCHAR)"}, {"answer": "SELECT directed_and_produced_by FROM table_24725951_1 WHERE celebrities = \"Nick Hewer and Saira Khan\"", "question": "List the director and producer when Nick Hewer and Saira Khan were starring.", "context": "CREATE TABLE table_24725951_1 (directed_and_produced_by VARCHAR, celebrities VARCHAR)"}, {"answer": "SELECT directed_and_produced_by FROM table_24725951_1 WHERE celebrities = \"Bill Turnbull and Louise Minchin\"", "question": "List directors and producers when the celebrities involved were Bill Turnbull and Louise Minchin.", "context": "CREATE TABLE table_24725951_1 (directed_and_produced_by VARCHAR, celebrities VARCHAR)"}, {"answer": "SELECT torque FROM table_24729_2 WHERE co2 = \"206g/km\"", "question": "whe, co2 is 206g/km, what is the torque?", "context": "CREATE TABLE table_24729_2 (torque VARCHAR, co2 VARCHAR)"}, {"answer": "SELECT power FROM table_24729_2 WHERE co2 = \"192g/km\"", "question": "when co2 is 192g/km, what is the power?", "context": "CREATE TABLE table_24729_2 (power VARCHAR, co2 VARCHAR)"}, {"answer": "SELECT circuit FROM table_24732149_2 WHERE round = 5", "question": "What is the circuit of round 5?", "context": "CREATE TABLE table_24732149_2 (circuit VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_24732149_2 WHERE fastest_lap = \"Mike Rockenfeller\"", "question": "What date did Mike Rockenfeller have the fastest lap?", "context": "CREATE TABLE table_24732149_2 (date VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT points FROM table_24735155_1 WHERE seasons = \"2006 \u2013 2007 , 2009\"", "question": "How many points for the driver who raced in seasons 2006 \u2013 2007 , 2009?", "context": "CREATE TABLE table_24735155_1 (points VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT competition FROM table_24765815_2 WHERE vote_percentage = \"N/A\" AND nationality = \"Brazil\"", "question": "What's the name of the competition where the nationality is Brazil and the voting percentage is n/a?", "context": "CREATE TABLE table_24765815_2 (competition VARCHAR, vote_percentage VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT player FROM table_24765815_2 WHERE nationality = \"Netherlands\" AND team = \"Netherlands\"", "question": "What's the player's name whose nationality and team are Netherlands?", "context": "CREATE TABLE table_24765815_2 (player VARCHAR, nationality VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_24765815_2 WHERE player = \"Samir Nasri\"", "question": "What was the score for the game in which Samir Nasri played?", "context": "CREATE TABLE table_24765815_2 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_24765815_2 WHERE competition = \"UEFA Euro 2012 qualifying Group A\"", "question": "Who is the player that played in the UEFA Euro 2012 qualifying Group A competition?", "context": "CREATE TABLE table_24765815_2 (player VARCHAR, competition VARCHAR)"}, {"answer": "SELECT rank FROM table_24765815_2 WHERE competition = \"UEFA Euro 2012 qualifying Group A\"", "question": "What is the ranking of the UEFA Euro 2012 qualifying Group A competition?", "context": "CREATE TABLE table_24765815_2 (rank VARCHAR, competition VARCHAR)"}, {"answer": "SELECT production FROM table_2477085_1 WHERE alpina_model = \"B10 4,6\"", "question": "Name the production for alpina model being b10 4,6", "context": "CREATE TABLE table_2477085_1 (production VARCHAR, alpina_model VARCHAR)"}, {"answer": "SELECT COUNT(final_score) FROM table_24776075_2 WHERE date = \"Sunday, May 12\"", "question": "How many final score datas are there on Sunday, May 12?", "context": "CREATE TABLE table_24776075_2 (final_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_24776075_2 WHERE date = \"Saturday, May 25\"", "question": "The game on Saturday, May 25 took place on which week?", "context": "CREATE TABLE table_24776075_2 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT final_score FROM table_24776075_2 WHERE date = \"Saturday, May 25\"", "question": "What was the final score on Saturday, May 25?", "context": "CREATE TABLE table_24776075_2 (final_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_24781886_2 WHERE _number = 10", "question": "When 10 is the number who is the writer?", "context": "CREATE TABLE table_24781886_2 (writer_s_ VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_24781886_2 WHERE viewers = \"6.66\"", "question": "When 6.66 is the amount of viewers what is the lowest production code?", "context": "CREATE TABLE table_24781886_2 (production_code INTEGER, viewers VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_24781886_2 WHERE viewers = \"7.55\"", "question": "When 7.55 is the amount of viewers what is the lowest number?", "context": "CREATE TABLE table_24781886_2 (_number INTEGER, viewers VARCHAR)"}, {"answer": "SELECT COUNT(new_democratic) FROM table_24778847_2 WHERE date_of_polling = \"May 11\u201331, 2010\"", "question": "How many figures are given for the New Democratic for the polling range May 11\u201331, 2010?", "context": "CREATE TABLE table_24778847_2 (new_democratic VARCHAR, date_of_polling VARCHAR)"}, {"answer": "SELECT link FROM table_24778847_2 WHERE date_of_polling = \"February 10\u201328, 2011\"", "question": "What format is the link for the polling data for February 10\u201328, 2011?", "context": "CREATE TABLE table_24778847_2 (link VARCHAR, date_of_polling VARCHAR)"}, {"answer": "SELECT title FROM table_24781886_3 WHERE _number = 9", "question": "When 9 is the number what is the title?", "context": "CREATE TABLE table_24781886_3 (title VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_24781886_3 WHERE _number = 3", "question": "When 3 is the number what is the highest total?", "context": "CREATE TABLE table_24781886_3 (total INTEGER, _number VARCHAR)"}, {"answer": "SELECT air_date FROM table_24781886_3 WHERE viewers = \"7.08\"", "question": "When 7.08 is the amount of viewers what is the air date?", "context": "CREATE TABLE table_24781886_3 (air_date VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_24781886_3 WHERE viewers = \"7.08\"", "question": "When 7.08 is the amount of viewers how many directors are there?", "context": "CREATE TABLE table_24781886_3 (director VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT location FROM table_24798489_2 WHERE original_airdate = \"August 26, 2009\"", "question": "What location did the episode that aired originally on August 26, 2009 take place at?", "context": "CREATE TABLE table_24798489_2 (location VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT COUNT(original_airdate) FROM table_24798489_2 WHERE location = \"Philadelphia, Pennsylvania\"", "question": "How many dates originally aired episodes located in Philadelphia, pennsylvania?", "context": "CREATE TABLE table_24798489_2 (original_airdate VARCHAR, location VARCHAR)"}, {"answer": "SELECT challenge FROM table_24798489_2 WHERE episode_number = 28", "question": "What was the challenge for episode 28?", "context": "CREATE TABLE table_24798489_2 (challenge VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT COUNT(original_airdate) FROM table_24798489_2 WHERE episode_number = 22", "question": "How many original air dates were there for episode 22?", "context": "CREATE TABLE table_24798489_2 (original_airdate VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_24807406_3", "question": "What was the lowest goals ever achieved?", "context": "CREATE TABLE table_24807406_3 (goals INTEGER)"}, {"answer": "SELECT afghan FROM table_24807774_1 WHERE arabic = \"Scottish\"", "question": "how many arabic scottish is afghan", "context": "CREATE TABLE table_24807774_1 (afghan VARCHAR, arabic VARCHAR)"}, {"answer": "SELECT COUNT(cook_islands) FROM table_24807774_1 WHERE bosnian = \"Macedonian\"", "question": "how many bosnian in  cook islands  is macedonian", "context": "CREATE TABLE table_24807774_1 (cook_islands VARCHAR, bosnian VARCHAR)"}, {"answer": "SELECT colombian FROM table_24807774_1 WHERE bangladeshi = \"Serbian\"", "question": "how many colombia in bangladesh is serbian", "context": "CREATE TABLE table_24807774_1 (colombian VARCHAR, bangladeshi VARCHAR)"}, {"answer": "SELECT arabic FROM table_24807774_1 WHERE colombian = \"Finnish\"", "question": "how many arabic in colobians is finnish", "context": "CREATE TABLE table_24807774_1 (arabic VARCHAR, colombian VARCHAR)"}, {"answer": "SELECT bosnian FROM table_24807774_1 WHERE cook_islands = \"Sri Lankan\"", "question": "how many bosnian in cook islands is sri lankan", "context": "CREATE TABLE table_24807774_1 (bosnian VARCHAR, cook_islands VARCHAR)"}, {"answer": "SELECT afghan FROM table_24807774_1 WHERE bangladeshi = \"Hungarian\"", "question": "how many afghan in banglash is hungarian", "context": "CREATE TABLE table_24807774_1 (afghan VARCHAR, bangladeshi VARCHAR)"}, {"answer": "SELECT name FROM table_24807406_1 WHERE position = \"FW\" AND appearances = 2", "question": "What is the name if the appearance is 2 and the position is FW?", "context": "CREATE TABLE table_24807406_1 (name VARCHAR, position VARCHAR, appearances VARCHAR)"}, {"answer": "SELECT COUNT(assists) FROM table_24807406_1 WHERE minutes = 1", "question": "What is the assists total number if the minutes is 1?", "context": "CREATE TABLE table_24807406_1 (assists VARCHAR, minutes VARCHAR)"}, {"answer": "SELECT MAX(appearances) FROM table_24807406_1 WHERE starts = 18", "question": "What is the appearance maximum if the starts is 18?", "context": "CREATE TABLE table_24807406_1 (appearances INTEGER, starts VARCHAR)"}, {"answer": "SELECT name FROM table_2482547_5 WHERE average = \"15.89\"", "question": "What are the names of all the players with an average of 15.89?", "context": "CREATE TABLE table_2482547_5 (name VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(wickets_taken) FROM table_2482547_5 WHERE name = \"Bill Lockwood\"", "question": "What's the maximum wickets taken by players named Bill Lockwood?", "context": "CREATE TABLE table_2482547_5 (wickets_taken INTEGER, name VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_2482547_5 WHERE average = \"15.89\"", "question": "What are all the teams with an average of 15.89?", "context": "CREATE TABLE table_2482547_5 (team_s_ VARCHAR, average VARCHAR)"}, {"answer": "SELECT name FROM table_2482547_5 WHERE balls_bowled = 4969", "question": "Who are all the players who've bowled more than 4969 balls?", "context": "CREATE TABLE table_2482547_5 (name VARCHAR, balls_bowled VARCHAR)"}, {"answer": "SELECT average FROM table_2482547_5 WHERE wickets_taken = 212", "question": "What are the averages for games with 212 wickets taken?", "context": "CREATE TABLE table_2482547_5 (average VARCHAR, wickets_taken VARCHAR)"}, {"answer": "SELECT turbine_manufacturer FROM table_24837750_1 WHERE county = \"Wheatland\"", "question": "Who was the turbine manufacturer for the Wheatland county?", "context": "CREATE TABLE table_24837750_1 (turbine_manufacturer VARCHAR, county VARCHAR)"}, {"answer": "SELECT COUNT(turbine_manufacturer) FROM table_24837750_1 WHERE installed_capacity__mw_ = \"189\"", "question": "How many turbine manufacturers installed a capacity of 189 MW?", "context": "CREATE TABLE table_24837750_1 (turbine_manufacturer VARCHAR, installed_capacity__mw_ VARCHAR)"}, {"answer": "SELECT installed_capacity__mw_ FROM table_24837750_1 WHERE county = \"Wheatland\"", "question": "How much capacity was installed in Wheatland?", "context": "CREATE TABLE table_24837750_1 (installed_capacity__mw_ VARCHAR, county VARCHAR)"}, {"answer": "SELECT turbine_manufacturer FROM table_24837750_1 WHERE date_in_service = \"2005\"", "question": "Who was the turbine manufacturer of the wind farm that started service on 2005?", "context": "CREATE TABLE table_24837750_1 (turbine_manufacturer VARCHAR, date_in_service VARCHAR)"}, {"answer": "SELECT date_in_service FROM table_24837750_1 WHERE installed_capacity__mw_ = \"135\"", "question": "When did this wind farm started service with a capacity of 135 MW?", "context": "CREATE TABLE table_24837750_1 (date_in_service VARCHAR, installed_capacity__mw_ VARCHAR)"}, {"answer": "SELECT date_in_service FROM table_24837750_1 WHERE county = \"Musselshell\"", "question": "When did the wind farm in Musselshell started service?", "context": "CREATE TABLE table_24837750_1 (date_in_service VARCHAR, county VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_24814477_2 WHERE game_site = \"Rheinstadion\"", "question": "What was the largest attendance at the Rheinstadion?", "context": "CREATE TABLE table_24814477_2 (attendance INTEGER, game_site VARCHAR)"}, {"answer": "SELECT week FROM table_24814477_2 WHERE opponent = \"Amsterdam Admirals\"", "question": "What week did the Galaxy play the Amsterdam Admirals?", "context": "CREATE TABLE table_24814477_2 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_24814477_2 WHERE week = 8", "question": "Who was the opponent in Week 8?", "context": "CREATE TABLE table_24814477_2 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT class_a_winner FROM table_24852622_1 WHERE class_c_winner = \"David Haynes\"", "question": "Who was the Class A winner when the Class C winner was David Haynes?", "context": "CREATE TABLE table_24852622_1 (class_a_winner VARCHAR, class_c_winner VARCHAR)"}, {"answer": "SELECT class_c_winner FROM table_24852622_1 WHERE round = \"8\"", "question": "Who was the Class C winner in round 8?", "context": "CREATE TABLE table_24852622_1 (class_c_winner VARCHAR, round VARCHAR)"}, {"answer": "SELECT class_d_winner FROM table_24852622_1 WHERE round = \"6\"", "question": "Who was the Class D winner in round 6?", "context": "CREATE TABLE table_24852622_1 (class_d_winner VARCHAR, round VARCHAR)"}, {"answer": "SELECT circuit FROM table_24852622_1 WHERE round = \"2\"", "question": "What was the circuit in round 2?", "context": "CREATE TABLE table_24852622_1 (circuit VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_24853015_1 WHERE class_d_winner = \"Roy Salvadori\" AND class_b_winner = \"Alan Hutcheson\"", "question": "In which round did Roy Salvadori won Class D and Alan Hutcheson won Class B?", "context": "CREATE TABLE table_24853015_1 (round VARCHAR, class_d_winner VARCHAR, class_b_winner VARCHAR)"}, {"answer": "SELECT date FROM table_24853015_1 WHERE class_b_winner = \"Alan Hutcheson\" AND round = 1", "question": "When did Alan Hutcheson won Class B on round 1?", "context": "CREATE TABLE table_24853015_1 (date VARCHAR, class_b_winner VARCHAR, round VARCHAR)"}, {"answer": "SELECT field_goals FROM table_24850487_5 WHERE player = \"Stacey Thomas\"", "question": "How many field goals did Stacey Thomas have? ", "context": "CREATE TABLE table_24850487_5 (field_goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(assists) FROM table_24850487_5 WHERE rebounds = 121", "question": "How many assists did the player who had 121 rebounds have? ", "context": "CREATE TABLE table_24850487_5 (assists INTEGER, rebounds VARCHAR)"}, {"answer": "SELECT MIN(field_goals) FROM table_24850487_5 WHERE blocks = 8", "question": "How many field goals did the player who had 8 blocks have? ", "context": "CREATE TABLE table_24850487_5 (field_goals INTEGER, blocks VARCHAR)"}, {"answer": "SELECT MIN(assists) FROM table_24850487_5 WHERE minutes = 863", "question": "How many assists did the player who had 863 minutes have? ", "context": "CREATE TABLE table_24850487_5 (assists INTEGER, minutes VARCHAR)"}, {"answer": "SELECT blocks FROM table_24850487_5 WHERE rebounds = 59", "question": "How many blocks did the player who had 59 rebounds have? ", "context": "CREATE TABLE table_24850487_5 (blocks VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT opponent FROM table_24852001_2 WHERE attendance = 16115", "question": "Who were the opponents that had an attendance of exactly 16115?", "context": "CREATE TABLE table_24852001_2 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT team_record FROM table_24852001_2 WHERE opponent = \"Frankfurt Galaxy\"", "question": "What was the team record after the Frankfurt Galaxy matchup?", "context": "CREATE TABLE table_24852001_2 (team_record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game_site FROM table_24852001_2 WHERE opponent = \"Frankfurt Galaxy\"", "question": "What was the game site for the matchup against the Frankfurt Galaxy?", "context": "CREATE TABLE table_24852001_2 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(results) FROM table_24865763_2 WHERE circuit = \"Algarve\" AND gt1_winning_team = \"No. 50 Larbre Comp\u00e9tition\"", "question": "How many results did the GT1 Winning Team No. 50 Larbre Comp\u00e9tition on the Algarve circuit?", "context": "CREATE TABLE table_24865763_2 (results VARCHAR, circuit VARCHAR, gt1_winning_team VARCHAR)"}, {"answer": "SELECT COUNT(lmp2_winning_team) FROM table_24865763_2 WHERE gt1_winning_team = \"Gabriele Gardel Patrice Goueslard Fernando Rees\" AND circuit = \"Algarve\"", "question": "How many winning teams are there on LMP2 if Gabriele Gardel Patrice Goueslard Fernando Rees was the GT1 Winning Team on the Algarve circuit?", "context": "CREATE TABLE table_24865763_2 (lmp2_winning_team VARCHAR, gt1_winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT gt2_winning_team FROM table_24865763_2 WHERE lmp1_winning_team = \"Greg Mansell Leo Mansell\"", "question": "Who was the GT2 Winning Team if Greg Mansell Leo Mansell was the LMP1 Winning Team?", "context": "CREATE TABLE table_24865763_2 (gt2_winning_team VARCHAR, lmp1_winning_team VARCHAR)"}, {"answer": "SELECT MAX(rnd) FROM table_24865763_2 WHERE gt2_winning_team = \"Marc Lieb Richard Lietz\"", "question": "What was the maximum round where Marc Lieb Richard Lietz was on the GT2 Winning Team?", "context": "CREATE TABLE table_24865763_2 (rnd INTEGER, gt2_winning_team VARCHAR)"}, {"answer": "SELECT COUNT(lmp1_winning_team) FROM table_24865763_2 WHERE rnd = 4 AND lmp2_winning_team = \"No. 42 Strakka Racing\"", "question": "How many won the LMP1 on round 4 if No. 42 Strakka Racing was the LMP2 Winning Team?", "context": "CREATE TABLE table_24865763_2 (lmp1_winning_team VARCHAR, rnd VARCHAR, lmp2_winning_team VARCHAR)"}, {"answer": "SELECT rnd FROM table_24865763_2 WHERE lmp2_winning_team = \"Mike Newton Thomas Erdos Ben Collins\"", "question": "In what round did Mike Newton Thomas Erdos Ben Collins won the LMP2?", "context": "CREATE TABLE table_24865763_2 (rnd VARCHAR, lmp2_winning_team VARCHAR)"}, {"answer": "SELECT MIN(blocks) FROM table_24856332_4 WHERE player = \"Tye'sha Fluker\"", "question": "How many blocks did tye'sha fluker have?", "context": "CREATE TABLE table_24856332_4 (blocks INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(steals) FROM table_24856332_4 WHERE minutes = 324", "question": "What is the highest number of steals for a player with 324 minutes?", "context": "CREATE TABLE table_24856332_4 (steals INTEGER, minutes VARCHAR)"}, {"answer": "SELECT MIN(minutes) FROM table_24856332_4 WHERE steals = 47", "question": "What is the lowest number of minutes for a player with 47 steals?", "context": "CREATE TABLE table_24856332_4 (minutes INTEGER, steals VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_2486023_1 WHERE year = 1991", "question": "Who played Mixed Doubles in 1991?", "context": "CREATE TABLE table_2486023_1 (mixed_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT home_team FROM table_24887326_8 WHERE away_team = \"Plymouth Argyle\"", "question": "Who was the home team who played plymouth argyle?", "context": "CREATE TABLE table_24887326_8 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score_1 FROM table_24887326_8 WHERE away_team = \"Norwich City\"", "question": "What was the score when the away team was norwich city?", "context": "CREATE TABLE table_24887326_8 (score_1 VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_24887326_8 WHERE home_team = \"Coventry City\"", "question": "Who played as the away team when coventry city was the home team?", "context": "CREATE TABLE table_24887326_8 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT final_score FROM table_24882796_2 WHERE opponent = \"Frankfurt Galaxy\"", "question": "What is the final score when they played Frankfurt Galaxy?", "context": "CREATE TABLE table_24882796_2 (final_score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT away_team FROM table_24887326_6 WHERE tie_no = 11", "question": "Who is the away team for tie no 11?", "context": "CREATE TABLE table_24887326_6 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_24887326_6 WHERE tie_no = 15", "question": "Who is the away team for tie no 15?", "context": "CREATE TABLE table_24887326_6 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT MAX(tie_no) FROM table_24887326_6 WHERE attendance = 19129", "question": "What is the highest tie that had 19129 attendance?", "context": "CREATE TABLE table_24887326_6 (tie_no INTEGER, attendance VARCHAR)"}, {"answer": "SELECT tie_no FROM table_24887326_6 WHERE home_team = \"Stoke City\"", "question": "What is the tie when the home team is Stoke City?", "context": "CREATE TABLE table_24887326_6 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_24887326_6 WHERE home_team = \"Orient\"", "question": "What tie has Orient as the home team?", "context": "CREATE TABLE table_24887326_6 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_24887326_6 WHERE tie_no = 12", "question": "How many dates are there for tie number 12?", "context": "CREATE TABLE table_24887326_6 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT COUNT(equipment) FROM table_24898185_4 WHERE points = 556", "question": "When 556 is the amount of points how much equipment is there?", "context": "CREATE TABLE table_24898185_4 (equipment VARCHAR, points VARCHAR)"}, {"answer": "SELECT championship FROM table_24901152_4 WHERE score = \"6\u20134, 5\u20137, 6\u20132\"", "question": "Which championship was the score 6\u20134, 5\u20137, 6\u20132?", "context": "CREATE TABLE table_24901152_4 (championship VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_24901152_4 WHERE championship = \"Rome\"", "question": "Who were the opponents in the Rome championship?", "context": "CREATE TABLE table_24901152_4 (opponents VARCHAR, championship VARCHAR)"}, {"answer": "SELECT MAX(minutes) FROM table_24908692_5 WHERE field_goals = 70", "question": "What is the maximum number of minutes associated with exactly 70 field goals?", "context": "CREATE TABLE table_24908692_5 (minutes INTEGER, field_goals VARCHAR)"}, {"answer": "SELECT MIN(field_goals) FROM table_24908692_5 WHERE assists = 84", "question": "What is the minimum number of field goals associated with exactly 84 assists?", "context": "CREATE TABLE table_24908692_5 (field_goals INTEGER, assists VARCHAR)"}, {"answer": "SELECT steals FROM table_24908692_5 WHERE player = \"Tamika Williams\"", "question": "How many steals did Tamika Williams have?", "context": "CREATE TABLE table_24908692_5 (steals VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(steals) FROM table_24906653_5 WHERE blocks = 1", "question": "List the number of takeaways with 1 rejection.", "context": "CREATE TABLE table_24906653_5 (steals VARCHAR, blocks VARCHAR)"}, {"answer": "SELECT COUNT(field_goals) FROM table_24906653_5 WHERE player = \"Tonya Edwards\"", "question": "How many long range shots did tonya edwards make.", "context": "CREATE TABLE table_24906653_5 (field_goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(field_goals) FROM table_24906653_5 WHERE points = 171", "question": "List the number of long range shors where the score is 171.", "context": "CREATE TABLE table_24906653_5 (field_goals VARCHAR, points VARCHAR)"}, {"answer": "SELECT amiga_demo FROM table_2490289_1 WHERE pc_demo = \"Tribes ( Pulse & Melon Dezign)\"", "question": "Who won best amiga demo when tribes ( pulse & melon dezign) won best pc demo?", "context": "CREATE TABLE table_2490289_1 (amiga_demo VARCHAR, pc_demo VARCHAR)"}, {"answer": "SELECT amiga_demo FROM table_2490289_1 WHERE pc_demo = \"Alto Knallo (Free Electric Band)\"", "question": "What won best amiga demo when alto knallo (free electric band) won best pc demo?", "context": "CREATE TABLE table_2490289_1 (amiga_demo VARCHAR, pc_demo VARCHAR)"}, {"answer": "SELECT pc_intro FROM table_2490289_1 WHERE amiga_demo = \"My Kingdom (Haujobb & Scoopex)\"", "question": "What won best pc intro when my kingdom (haujobb & scoopex) won best amiga demo?", "context": "CREATE TABLE table_2490289_1 (pc_intro VARCHAR, amiga_demo VARCHAR)"}, {"answer": "SELECT pc_intro FROM table_2490289_1 WHERE amiga_intro = \"4k0 (Polka Brothers)\"", "question": "What won est pc intro when 4k0 (polka brothers) won best amiga intro?", "context": "CREATE TABLE table_2490289_1 (pc_intro VARCHAR, amiga_intro VARCHAR)"}, {"answer": "SELECT pc_demo FROM table_2490289_1 WHERE c64_demo = \"Tower Power (Camelot)\"", "question": "What won best pc demo when tower power (camelot) won best c64 demo?", "context": "CREATE TABLE table_2490289_1 (pc_demo VARCHAR, c64_demo VARCHAR)"}, {"answer": "SELECT year FROM table_2490289_1 WHERE pc_intro = \"FR-08: The Product ( Farbrausch )\"", "question": "What year did fr-08: the product ( farbrausch ) win best pc intro?", "context": "CREATE TABLE table_2490289_1 (year VARCHAR, pc_intro VARCHAR)"}, {"answer": "SELECT title FROM table_24910737_1 WHERE us_viewers__millions_ = \"8.16\"", "question": "What is the episode title that had a US viewership of 8.16?", "context": "CREATE TABLE table_24910737_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_24910737_1 WHERE us_viewers__millions_ = \"7.14\"", "question": "Who wrote the episodes that had a viewership of 7.14?", "context": "CREATE TABLE table_24910737_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_24910733_2 WHERE rating = \"8.2\"", "question": "How many episodes received rating of 8.2?", "context": "CREATE TABLE table_24910733_2 (episode VARCHAR, rating VARCHAR)"}, {"answer": "SELECT COUNT(share) FROM table_24910733_2 WHERE air_date = \"October 17, 2007\"", "question": "How many share figures are there for the episode that aired on October 17, 2007?", "context": "CREATE TABLE table_24910733_2 (share VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_24910733_2 WHERE air_date = \"October 17, 2007\"", "question": "How many episodes aired on October 17, 2007?", "context": "CREATE TABLE table_24910733_2 (episode VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT COUNT(timeslot__est_) FROM table_24910733_2 WHERE rating = \"5.7\"", "question": "How many timeslots received a rating of 5.7?", "context": "CREATE TABLE table_24910733_2 (timeslot__est_ VARCHAR, rating VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_24910733_1 WHERE us_viewers__millions_ = \"11.21\"", "question": "How many writers are listed when the U.S viewers are 11.21 million?", "context": "CREATE TABLE table_24910733_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_24910733_1 WHERE us_viewers__millions_ = \"8.44\"", "question": "Who is the director when there is 8.44 million viewers?", "context": "CREATE TABLE table_24910733_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_24910733_1 WHERE written_by = \"Andrea Newman\"", "question": "Who is the director when the writter is Andrea Newman?", "context": "CREATE TABLE table_24910733_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_24910733_1 WHERE written_by = \"Emily Halpern\"", "question": "What is the title when the writer is Emily Halpern?", "context": "CREATE TABLE table_24910733_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_24910733_1 WHERE us_viewers__millions_ = \"11.21\"", "question": "Who is the director when there is 11.21 million viewers?", "context": "CREATE TABLE table_24910733_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_24910733_1 WHERE us_viewers__millions_ = \"8.44\"", "question": "How many titles are listed with 8.44 million viewers?", "context": "CREATE TABLE table_24910733_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(field_goals) FROM table_24915964_4 WHERE points = 597", "question": "How many field goals had 597 points?", "context": "CREATE TABLE table_24915964_4 (field_goals VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(minutes) FROM table_24915964_4 WHERE player = \"Sue Bird\"", "question": "How many minutes were played by Sue Bird?", "context": "CREATE TABLE table_24915964_4 (minutes INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(rebounds) FROM table_24913533_4 WHERE steals = 35", "question": "What is the maximum number of rebounds for players having exactly 35 steals?", "context": "CREATE TABLE table_24913533_4 (rebounds INTEGER, steals VARCHAR)"}, {"answer": "SELECT steals FROM table_24913533_4 WHERE blocks = 3", "question": "What are the numbers of steals associated with players having exactly 3 blocks?", "context": "CREATE TABLE table_24913533_4 (steals VARCHAR, blocks VARCHAR)"}, {"answer": "SELECT COUNT(rebounds) FROM table_24913533_4 WHERE points = 18", "question": "How many numbers of rebounds are associated with exactly 18 points?", "context": "CREATE TABLE table_24913533_4 (rebounds VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(assists) FROM table_24913533_4 WHERE player = \"Anastasia Kostaki\"", "question": "What is the maximum number of assists for players named Anastasia Kostaki?", "context": "CREATE TABLE table_24913533_4 (assists INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(steals) FROM table_24912693_4 WHERE player = \"Tiffani Johnson\"", "question": "What is Tiffani Johnson's maximum steals?", "context": "CREATE TABLE table_24912693_4 (steals INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_24912693_4 WHERE blocks = 17", "question": "Which player has 17 blocks?", "context": "CREATE TABLE table_24912693_4 (player VARCHAR, blocks VARCHAR)"}, {"answer": "SELECT MIN(field_goals) FROM table_24912693_4 WHERE rebounds = 84", "question": "How many field goals does the player with 84 rebounds have?", "context": "CREATE TABLE table_24912693_4 (field_goals INTEGER, rebounds VARCHAR)"}, {"answer": "SELECT blocks FROM table_24912693_4 WHERE minutes = 893", "question": "How many blocks does the player who played 893 minutes have?", "context": "CREATE TABLE table_24912693_4 (blocks VARCHAR, minutes VARCHAR)"}, {"answer": "SELECT points FROM table_24912693_4 WHERE steals = 2", "question": "How many points does the player with 2 steals have?", "context": "CREATE TABLE table_24912693_4 (points VARCHAR, steals VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_24924576_2", "question": "Name the most number", "context": "CREATE TABLE table_24924576_2 (number INTEGER)"}, {"answer": "SELECT titles FROM table_24924576_2 WHERE result = \"TKO 11/12\"", "question": "Name the titles for tko 11/12", "context": "CREATE TABLE table_24924576_2 (titles VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_24919137_2 WHERE result_margin = \"WON by 70\"", "question": "Where was the game played when the result/margin was won by 70?", "context": "CREATE TABLE table_24919137_2 (venue VARCHAR, result_margin VARCHAR)"}, {"answer": "SELECT result_margin FROM table_24919137_2 WHERE broadcaster = \"Fox Sports 1\" AND venue = \"MCG\"", "question": "What is the result/margin when fox sports 1 broadcast the game played at mcg?", "context": "CREATE TABLE table_24919137_2 (result_margin VARCHAR, broadcaster VARCHAR, venue VARCHAR)"}, {"answer": "SELECT broadcaster FROM table_24919137_2 WHERE opposition = \"Melbourne\"", "question": "Which network broadcast the game when the Western Bulldogs played melbourne?", "context": "CREATE TABLE table_24919137_2 (broadcaster VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT venue FROM table_24919137_2 WHERE score = \"14.16 (100)-12.12 (84)\"", "question": "Where was the game played when the score was 14.16 (100)-12.12 (84)?", "context": "CREATE TABLE table_24919137_2 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT ladder_position FROM table_24919137_2 WHERE score = \"15.9 (99)\u201314.6 (90)\"", "question": "What was the ladder position when the score was 15.9 (99)\u201314.6 (90)?", "context": "CREATE TABLE table_24919137_2 (ladder_position VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_24919137_2 WHERE ladder_position = \"8th\" AND opposition = \"Hawthorn\"", "question": "On what date was the game played when the Western Bulldogs were in 8th ladder position and hawthorn was the opposing team?", "context": "CREATE TABLE table_24919137_2 (date VARCHAR, ladder_position VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT school FROM table_24935743_2 WHERE nickname = \"Panthers\"", "question": "What school is nicknamed the panthers?", "context": "CREATE TABLE table_24935743_2 (school VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT location FROM table_24935743_2 WHERE school = \"Jeromesville\"", "question": "What school is in Jeromesville?", "context": "CREATE TABLE table_24935743_2 (location VARCHAR, school VARCHAR)"}, {"answer": "SELECT previous_school FROM table_24925945_3 WHERE height = \"ft7in (m)\"", "question": "What was the previous school of the ft7in (m) tall player?", "context": "CREATE TABLE table_24925945_3 (previous_school VARCHAR, height VARCHAR)"}, {"answer": "SELECT previous_school FROM table_24925945_3 WHERE _number = 22", "question": "What was the previous school of #22?", "context": "CREATE TABLE table_24925945_3 (previous_school VARCHAR, _number VARCHAR)"}, {"answer": "SELECT title FROM table_24938621_2 WHERE production_code = \"3X5402\"", "question": "What is the title of the episode with production code 3x5402?", "context": "CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_24938621_2 WHERE production_code = \"3X5405\"", "question": "What is the title of the episode with production code 3x5405?", "context": "CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT home_team FROM table_24949975_1 WHERE date = \"5 October 2011\"", "question": "Who as the home team for game on 5 october 2011?", "context": "CREATE TABLE table_24949975_1 (home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_24949975_1 WHERE home_team = \"Shamrock Rovers\" AND result = \"3\u20130\"", "question": "What was the stadium for the home team of shamrock rovers and result of 3\u20130?", "context": "CREATE TABLE table_24949975_1 (stadium VARCHAR, home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT away_team FROM table_24949975_1 WHERE result = \"2\u20131\" AND home_team = \"Bohemians\"", "question": "What was the away team when the result was 2\u20131 and home team was the bohemians?", "context": "CREATE TABLE table_24949975_1 (away_team VARCHAR, result VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_24949975_1 WHERE season = \"2013\" AND result = \"0\u20130\"", "question": "Who was the home team for the 2013 season and the result was 0\u20130?", "context": "CREATE TABLE table_24949975_1 (home_team VARCHAR, season VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_24949975_1 WHERE stadium = \"Tallaght stadium\" AND result = \"0\u20131\"", "question": "What is the date for the game at the tallaght stadium and result was 0\u20131?", "context": "CREATE TABLE table_24949975_1 (date VARCHAR, stadium VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_24951872_2 WHERE game_site = \"Waldstadion\"", "question": "What opponents played Waldstadion in a game?", "context": "CREATE TABLE table_24951872_2 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_24951872_2 WHERE attendance = 10738", "question": "What was the maximum week that had attendance of 10738?", "context": "CREATE TABLE table_24951872_2 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT production_code FROM table_24938621_3 WHERE written_by = \"Cathryn Humphris\"", "question": "What is the production code of the episode written by Cathryn Humphris?", "context": "CREATE TABLE table_24938621_3 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT production_code FROM table_24938621_3 WHERE us_viewers__million_ = \"5.43\"", "question": "What is the production code of the episode that had 5.43 million viewers?", "context": "CREATE TABLE table_24938621_3 (production_code VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_24938621_3 WHERE directed_by = \"Jesse Warn\"", "question": "What was the title of the episode directed by Jesse Warn?", "context": "CREATE TABLE table_24938621_3 (production_code VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT no FROM table_24938621_3 WHERE written_by = \"Gregg Hurwitz\"", "question": "What episode number was written by Gregg Hurwitz?", "context": "CREATE TABLE table_24938621_3 (no VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT drying_shrinkage___percentage_ FROM table_24969173_1 WHERE dry_density__kg_m3_ = 800", "question": "If the dry density is 800, what is the drying shrinkage %?", "context": "CREATE TABLE table_24969173_1 (drying_shrinkage___percentage_ VARCHAR, dry_density__kg_m3_ VARCHAR)"}, {"answer": "SELECT series__number FROM table_24961421_1 WHERE season__number = 7", "question": "What number in the series was episode 7 in the season?", "context": "CREATE TABLE table_24961421_1 (series__number VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT written_by FROM table_24961421_1 WHERE us_viewers__millions_ = \"12.15\"", "question": "Who wrote the episode that had 12.15 million viewers?", "context": "CREATE TABLE table_24961421_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT season__number FROM table_24961421_1 WHERE us_viewers__millions_ = \"12.23\"", "question": "What number in the season was the episode with 12.23 million viewers?", "context": "CREATE TABLE table_24961421_1 (season__number VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT date FROM table_24989925_2 WHERE game_site = \"Olympic Stadium\"", "question": "What is the date of the game at Olympic Stadium?", "context": "CREATE TABLE table_24989925_2 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_24989925_2", "question": "How many weeks total are there?", "context": "CREATE TABLE table_24989925_2 (week INTEGER)"}, {"answer": "SELECT team_record FROM table_24989925_2 WHERE game_site = \"RheinEnergieStadion\"", "question": "What was the team's record when they played at Rheinenergiestadion?", "context": "CREATE TABLE table_24989925_2 (team_record VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MIN(09 AS _10_oi_2nd) FROM table_24990183_6", "question": "What is the lowest overall number of  09-10 oi 2nd?", "context": "CREATE TABLE table_24990183_6 (Id VARCHAR)"}, {"answer": "SELECT MAX(09 AS _10_i_o_best) FROM table_24990183_4", "question": "What was the maximum 09-10 i/o best?", "context": "CREATE TABLE table_24990183_4 (Id VARCHAR)"}, {"answer": "SELECT name FROM table_24990183_7 WHERE rank = 17", "question": "If the rank is 17, what are the names?", "context": "CREATE TABLE table_24990183_7 (name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT 08 AS _09_gp_jgp_2nd FROM table_24990183_7 WHERE ws_points = 947", "question": "If the WS points is 947, what is the 08-09 gp/jgp 2nd ?", "context": "CREATE TABLE table_24990183_7 (ws_points VARCHAR)"}, {"answer": "SELECT points FROM table_24998088_1 WHERE position = \"34th\"", "question": "How many points did he have when he has in the 34th position? ", "context": "CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR)"}, {"answer": "SELECT wins FROM table_24998088_1 WHERE points = \"112\"", "question": "How many wins were listed when he had 112 points? ", "context": "CREATE TABLE table_24998088_1 (wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT series FROM table_24998088_1 WHERE position = \"7th\"", "question": "In what series did he have the 7th position? ", "context": "CREATE TABLE table_24998088_1 (series VARCHAR, position VARCHAR)"}, {"answer": "SELECT points FROM table_24998088_1 WHERE position = \"8th\"", "question": "what were his points when he was in 8th position? ", "context": "CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR)"}, {"answer": "SELECT vote FROM table_25016824_2 WHERE air_date = \"4 October 1997\"", "question": "What was the vote when the air date is 4 october 1997?", "context": "CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT eliminated FROM table_25016824_2 WHERE immunity = \"Kent (J\u00fcrgen)\"", "question": "Who was eliminated when immunity went to kent (j\u00fcrgen)?", "context": "CREATE TABLE table_25016824_2 (eliminated VARCHAR, immunity VARCHAR)"}, {"answer": "SELECT eliminated FROM table_25016824_2 WHERE vote = \"8-1\"", "question": "Who was eliminated when the vote was 8-1?", "context": "CREATE TABLE table_25016824_2 (eliminated VARCHAR, vote VARCHAR)"}, {"answer": "SELECT COUNT(vote) FROM table_25016824_2 WHERE air_date = \"15 November 1997\"", "question": "How many entries are there for vote when the air date was 15 november 1997?", "context": "CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT reward FROM table_25016824_2 WHERE immunity = \"Martin\" AND finish = \"13th voted Out 8th Jury Member Day 46\"", "question": "What was the  reward  when immunity went to martin and finish is 13th voted out 8th jury member day 46?", "context": "CREATE TABLE table_25016824_2 (reward VARCHAR, immunity VARCHAR, finish VARCHAR)"}, {"answer": "SELECT COUNT(macedonian) FROM table_25008327_8 WHERE slovianski = \"veliki\"", "question": "How many values for Macedonian correspond to Slovianski value of Veliki?", "context": "CREATE TABLE table_25008327_8 (macedonian VARCHAR, slovianski VARCHAR)"}, {"answer": "SELECT slovak FROM table_25008327_8 WHERE ukrainian = \"\u043f\u0435\u0441, \u0441\u043e\u0431\u0430\u043a\u0430\"", "question": "What area all values for Slovak when value for Ukranian is \u043f\u0435\u0441, \u0441\u043e\u0431\u0430\u043a\u0430?", "context": "CREATE TABLE table_25008327_8 (slovak VARCHAR, ukrainian VARCHAR)"}, {"answer": "SELECT croatian FROM table_25008327_8 WHERE english = \"dog\"", "question": "What is every value for Croatian when value for English is dog?", "context": "CREATE TABLE table_25008327_8 (croatian VARCHAR, english VARCHAR)"}, {"answer": "SELECT polish FROM table_25008327_8 WHERE belarusian = \"\u043d\u043e\u0447\"", "question": "What is every value for Polish when Balarusian is \u043d\u043e\u0447?", "context": "CREATE TABLE table_25008327_8 (polish VARCHAR, belarusian VARCHAR)"}, {"answer": "SELECT russian FROM table_25008327_8 WHERE bulgarian = \"\u043f\u0435\u0441, \u043a\u0443\u0447\u0435\"", "question": "What is every value for Russian when value for Bulgarian is \u043f\u0435\u0441, \u043a\u0443\u0447\u0435?", "context": "CREATE TABLE table_25008327_8 (russian VARCHAR, bulgarian VARCHAR)"}, {"answer": "SELECT \u0441\u043b\u043e\u0432\u0458\u0430\u043d\u0441\u043a\u0438 FROM table_25008327_8 WHERE polish = \"ksi\u0105\u017cka\"", "question": "What is every value for \u0441\u043b\u043e\u0432\u0458\u0430\u043d\u0441\u043a\u0438 if polish is ksi\u0105\u017cka?", "context": "CREATE TABLE table_25008327_8 (\u0441\u043b\u043e\u0432\u0458\u0430\u043d\u0441\u043a\u0438 VARCHAR, polish VARCHAR)"}, {"answer": "SELECT position FROM table_25017530_5 WHERE player = \"Christopher Smith\"", "question": "Name the position for christopher smith", "context": "CREATE TABLE table_25017530_5 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_25017530_5 WHERE player = \"Nate Binder\"", "question": "Name the college for nate binder", "context": "CREATE TABLE table_25017530_5 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_25017530_5 WHERE player = \"Steven Turner\"", "question": "Name the least pick number for steven turner", "context": "CREATE TABLE table_25017530_5 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_25017530_5 WHERE player = \"Steven Turner\"", "question": "Name the cfl team for steven turner", "context": "CREATE TABLE table_25017530_5 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_25017530_6 WHERE position = \"LB\"", "question": "Name the cfl team for lb position", "context": "CREATE TABLE table_25017530_6 (cfl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_25017530_6 WHERE college = \"Saskatchewan\"", "question": "Name the cfl team for saskatchewan", "context": "CREATE TABLE table_25017530_6 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_25017530_6 WHERE player = \"Michael Warner\"", "question": "Name the position for michael warner", "context": "CREATE TABLE table_25017530_6 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(production_count) FROM table_2501754_2 WHERE episode__number = 5", "question": "How many episodes were numbered 5?", "context": "CREATE TABLE table_2501754_2 (production_count VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_2501754_2 WHERE prod_code = \"IPEA343L\"", "question": "What are the original air date(s) for episodes with production code ipea343l?", "context": "CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_2501754_2 WHERE prod_code = \"IPEA345A\"", "question": "What are the original air date(s) for episodes with production code ipea345a?", "context": "CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_2501754_2 WHERE viewing_figures_millions = \"8.63\"", "question": "What are the original air date(s) for episodes with 8.63 million viewers?", "context": "CREATE TABLE table_2501754_2 (original_airdate VARCHAR, viewing_figures_millions VARCHAR)"}, {"answer": "SELECT power FROM table_250230_2 WHERE model = \"Type R\"", "question": "What is the power of the Type R?", "context": "CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR)"}, {"answer": "SELECT brakes FROM table_250230_2 WHERE wheels = \"16x8.0JJ (front) 16x8.0JJ (rear)\" AND tyres = \"225/50R16 92V(front) 225/50R16 92V(rear)\" AND model = \"Type RB 4AT\"", "question": "What kind of brakes for the model type rb 4at with 16x8.0jj (front) 16x8.0jj (rear) wheels and 225/50r16 92v(front) 225/50r16 92v(rear) tyres?", "context": "CREATE TABLE table_250230_2 (brakes VARCHAR, model VARCHAR, wheels VARCHAR, tyres VARCHAR)"}, {"answer": "SELECT brakes FROM table_250230_2 WHERE gearbox = \"4-speed automatic\"", "question": "What brakes for the 4-speed automatic gearbox?", "context": "CREATE TABLE table_250230_2 (brakes VARCHAR, gearbox VARCHAR)"}, {"answer": "SELECT power FROM table_250230_2 WHERE model = \"Spirit R (Type B)\"", "question": "What is the power for the Spirit R (Type B)?", "context": "CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR)"}, {"answer": "SELECT gearbox FROM table_250230_2 WHERE \"torque\" = \"torque\"", "question": "What is the gearbox when the torque is torque?", "context": "CREATE TABLE table_250230_2 (gearbox VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_25030512_4 WHERE district = \"Alabama 3\"", "question": "Name the first elected for alabama 3", "context": "CREATE TABLE table_25030512_4 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_25030512_4 WHERE incumbent = \"Spencer Bachus\"", "question": "Name the party for spencer bachus", "context": "CREATE TABLE table_25030512_4 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_25030512_4 WHERE incumbent = \"Mike Rogers\"", "question": "Name the district for mike rogers", "context": "CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_25030512_4 WHERE incumbent = \"Spencer Bachus\"", "question": "Name the district for spencer bachus", "context": "CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_25030512_26 WHERE incumbent = \"Keith Ellison\"", "question": "In what district was keith ellison the incumbent?", "context": "CREATE TABLE table_25030512_26 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT day_power___w__ FROM table_25034983_2 WHERE city = \"Moline\"", "question": "List the kilo watt hoours per day for moline.", "context": "CREATE TABLE table_25034983_2 (day_power___w__ VARCHAR, city VARCHAR)"}, {"answer": "SELECT start FROM table_25034983_2 WHERE nickname = \"Voice of Muscatine\"", "question": "In which year did the voice of muscatine show start?", "context": "CREATE TABLE table_25034983_2 (start VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT MIN(start) FROM table_25034983_2 WHERE owner = \"Cumulus\"", "question": "In what year was cumulus founded?", "context": "CREATE TABLE table_25034983_2 (start INTEGER, owner VARCHAR)"}, {"answer": "SELECT stereo FROM table_25034983_2 WHERE city = \"Moline\"", "question": "Does the city of moline have stereo?", "context": "CREATE TABLE table_25034983_2 (stereo VARCHAR, city VARCHAR)"}, {"answer": "SELECT company FROM table_250309_1 WHERE parent_company = \"Wrightbus\"", "question": "what is the company with the parent company wrightbus?", "context": "CREATE TABLE table_250309_1 (company VARCHAR, parent_company VARCHAR)"}, {"answer": "SELECT company FROM table_250309_1 WHERE plant = \"Burnaston\"", "question": "what is the name ofhte company where the plant is in burnaston?", "context": "CREATE TABLE table_250309_1 (company VARCHAR, plant VARCHAR)"}, {"answer": "SELECT models_produced FROM table_250309_1 WHERE plant = \"Scarborough\"", "question": "what models are produced where the plant is scarborough?", "context": "CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR)"}, {"answer": "SELECT COUNT(models_produced) FROM table_250309_1 WHERE plant = \"Castle Bromwich\"", "question": "how many models produced where the plant is castle bromwich?", "context": "CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR)"}, {"answer": "SELECT production__latest_figures_ FROM table_250309_1 WHERE parent_company = \"Ariel\"", "question": "what is the production where the parent company is ariel?", "context": "CREATE TABLE table_250309_1 (production__latest_figures_ VARCHAR, parent_company VARCHAR)"}, {"answer": "SELECT chassis FROM table_2503102_2 WHERE primary_sponsor = \"Angie's List\"", "question": "What kind of chassis on the angie's list sponsored car?", "context": "CREATE TABLE table_2503102_2 (chassis VARCHAR, primary_sponsor VARCHAR)"}, {"answer": "SELECT team FROM table_2503102_2 WHERE listed_owner_s_ = \"Chip Ganassi\"", "question": "What team owns the car owned by chip ganassi?", "context": "CREATE TABLE table_2503102_2 (team VARCHAR, listed_owner_s_ VARCHAR)"}, {"answer": "SELECT chassis FROM table_2503102_2 WHERE team = \"Rahal Letterman Lanigan Racing\"", "question": "What chassis is on the car repped by team rahal letterman lanigan racing?", "context": "CREATE TABLE table_2503102_2 (chassis VARCHAR, team VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_2503102_2 WHERE primary_sponsor = \"ABC Supply\"", "question": "Who drives the abc supply sponsored cor?", "context": "CREATE TABLE table_2503102_2 (driver_s_ VARCHAR, primary_sponsor VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = \"Tom Marino\"", "question": "Name the number of district for tom marino", "context": "CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_25030512_41 WHERE first_elected = 1994", "question": "Name the district for 1994", "context": "CREATE TABLE table_25030512_41 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_25030512_41 WHERE district = \"Pennsylvania 10\"", "question": "Name the party for pennsylvania 10", "context": "CREATE TABLE table_25030512_41 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_25030512_41 WHERE incumbent = \"Glenn Thompson\"", "question": "Name the result for glenn thompson", "context": "CREATE TABLE table_25030512_41 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = \"Bill Shuster\"", "question": "Name the number of district for bill shuster", "context": "CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(minutes) FROM table_25038931_1 WHERE starts = 11", "question": "List the total play time for 11 starts.", "context": "CREATE TABLE table_25038931_1 (minutes INTEGER, starts VARCHAR)"}, {"answer": "SELECT region FROM table_25042332_22 WHERE primary__6_13_years_ = \"94.40\"", "question": "In what region is the enrollment ratio in primary 94.40?", "context": "CREATE TABLE table_25042332_22 (region VARCHAR, primary__6_13_years_ VARCHAR)"}, {"answer": "SELECT preschool__0_5_years_ FROM table_25042332_22 WHERE tertiary__18_24_years_ = \"29.55\"", "question": "What is the enrollment ratio for preschool in the region where enrollment ratio for tertiary is 29.55?", "context": "CREATE TABLE table_25042332_22 (preschool__0_5_years_ VARCHAR, tertiary__18_24_years_ VARCHAR)"}, {"answer": "SELECT primary__6_13_years_ FROM table_25042332_22 WHERE preschool__0_5_years_ = \"38.14\"", "question": "What is the enrollment ratio in primary in the region where the enrollment ratio in preschool is 38.14?", "context": "CREATE TABLE table_25042332_22 (primary__6_13_years_ VARCHAR, preschool__0_5_years_ VARCHAR)"}, {"answer": "SELECT tertiary__18_24_years_ FROM table_25042332_22 WHERE secondary__14_17_years_ = \"71.43\"", "question": "What is the enrollment ratio in tertiary in the region where the enrollment ration in secondary is 71.43?", "context": "CREATE TABLE table_25042332_22 (tertiary__18_24_years_ VARCHAR, secondary__14_17_years_ VARCHAR)"}, {"answer": "SELECT preschool__0_5_years_ FROM table_25042332_22 WHERE primary__6_13_years_ = \"93.10\"", "question": "What is the  enrollment ratio in preschool in the region where the enrollment ratio in primary is 93.10?", "context": "CREATE TABLE table_25042332_22 (preschool__0_5_years_ VARCHAR, primary__6_13_years_ VARCHAR)"}, {"answer": "SELECT primary__6_13_years_ FROM table_25042332_22 WHERE preschool__0_5_years_ = \"50.23\"", "question": "What is the enrollment ration in primary in the region where the enrollment ratio in preschool is 50.23? ", "context": "CREATE TABLE table_25042332_22 (primary__6_13_years_ VARCHAR, preschool__0_5_years_ VARCHAR)"}, {"answer": "SELECT enrolled_women FROM table_25042332_30 WHERE e_vap_ratio_women = \"108.6%\"", "question": "what is the number of registered female voters where the percentage is 108.6%", "context": "CREATE TABLE table_25042332_30 (enrolled_women VARCHAR, e_vap_ratio_women VARCHAR)"}, {"answer": "SELECT e_vap_ratio_total FROM table_25042332_30 WHERE men_of_voting_age = 123726", "question": "what is the percentage of male voters where the level of maturity is 123726", "context": "CREATE TABLE table_25042332_30 (e_vap_ratio_total VARCHAR, men_of_voting_age VARCHAR)"}, {"answer": "SELECT COUNT(incarceration_rate_total) FROM table_25042332_31 WHERE prison_inmates_women = 153", "question": "How many regions had 153 women prison inmates?", "context": "CREATE TABLE table_25042332_31 (incarceration_rate_total VARCHAR, prison_inmates_women VARCHAR)"}, {"answer": "SELECT COUNT(incarceration_rate_total) FROM table_25042332_31 WHERE incarceration_rate_female = 63", "question": "How many regions had an incarceration rate for females of 63?", "context": "CREATE TABLE table_25042332_31 (incarceration_rate_total VARCHAR, incarceration_rate_female VARCHAR)"}, {"answer": "SELECT MAX(incarceration_rate_male) FROM table_25042332_31 WHERE region = \"Maule\"", "question": "What is the male incarceration rate of maule?", "context": "CREATE TABLE table_25042332_31 (incarceration_rate_male INTEGER, region VARCHAR)"}, {"answer": "SELECT region FROM table_25042332_27 WHERE automatic_washing_machine = \"60.9%\"", "question": "Name the region for automatic washing machine being 60.9%", "context": "CREATE TABLE table_25042332_27 (region VARCHAR, automatic_washing_machine VARCHAR)"}, {"answer": "SELECT fixed_telephone_line FROM table_25042332_27 WHERE vehicle = \"25.6%\"", "question": "Name the fixed telephone line for 25.6% vehicle", "context": "CREATE TABLE table_25042332_27 (fixed_telephone_line VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT region FROM table_25042332_27 WHERE vehicle = \"39.2%\"", "question": "Name the region for 39.2% vehicle", "context": "CREATE TABLE table_25042332_27 (region VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT region FROM table_25042332_26 WHERE solar_panel = \"0.3%\"", "question": "What region has 0.3% solar panel?", "context": "CREATE TABLE table_25042332_26 (region VARCHAR, solar_panel VARCHAR)"}, {"answer": "SELECT solar_panel FROM table_25042332_26 WHERE region = \"Atacama\"", "question": "What is atacama's percentage of solar panels?", "context": "CREATE TABLE table_25042332_26 (solar_panel VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_25042332_26 WHERE none = \"0.6%\"", "question": "Which region has 0.6% none?", "context": "CREATE TABLE table_25042332_26 (region VARCHAR, none VARCHAR)"}, {"answer": "SELECT public_network FROM table_25042332_26 WHERE other_source = \"0.1%\" AND solar_panel = \"0.0%\" AND region = \"Maule\"", "question": "What is the percentage of public network in the region that has 0.1% other sources, 0.0% solar, and is named maule?", "context": "CREATE TABLE table_25042332_26 (public_network VARCHAR, region VARCHAR, other_source VARCHAR, solar_panel VARCHAR)"}, {"answer": "SELECT COUNT(public_network) FROM table_25042332_26 WHERE solar_panel = \"0.5%\"", "question": "How many regions have 0.5% solar panels?", "context": "CREATE TABLE table_25042332_26 (public_network VARCHAR, solar_panel VARCHAR)"}, {"answer": "SELECT MAX(prod_no) FROM table_25046766_3 WHERE episode_no = \"3-04\"", "question": "What is the production number of 3-04?", "context": "CREATE TABLE table_25046766_3 (prod_no INTEGER, episode_no VARCHAR)"}, {"answer": "SELECT title FROM table_25046766_3 WHERE original_airdate_uk = \"October 7, 1965\"", "question": "What was the title of the episode that aired on October 7, 1965?", "context": "CREATE TABLE table_25046766_3 (title VARCHAR, original_airdate_uk VARCHAR)"}, {"answer": "SELECT COUNT(episode_no) FROM table_25046766_1 WHERE written_by = \"Don Inglis and Ralph Smart\"", "question": "When don inglis and ralph smart are the writers how many episode numbers are there?", "context": "CREATE TABLE table_25046766_1 (episode_no VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(2012 AS _13) FROM table_25057928_1 WHERE institute = \"University of Cambridge\"", "question": "Name the most 2012/13 for university of cambridge", "context": "CREATE TABLE table_25057928_1 (institute VARCHAR)"}, {"answer": "SELECT birth_date FROM table_25058562_2 WHERE player = \"Taavi Sadam\"", "question": "Name the birth date for taavi sadam", "context": "CREATE TABLE table_25058562_2 (birth_date VARCHAR, player VARCHAR)"}, {"answer": "SELECT height FROM table_25058562_2 WHERE player = \"Asko Esna\"", "question": "Name the height for asko esna", "context": "CREATE TABLE table_25058562_2 (height VARCHAR, player VARCHAR)"}, {"answer": "SELECT birth_date FROM table_25058562_2 WHERE nationality = \"Estonia\" AND position = \"Spiker\" AND height = 189", "question": "Name the birth date for estonia for spiker and height of 189", "context": "CREATE TABLE table_25058562_2 (birth_date VARCHAR, height VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_25058562_2 WHERE height = 199", "question": "Name the player for 199 height", "context": "CREATE TABLE table_25058562_2 (player VARCHAR, height VARCHAR)"}, {"answer": "SELECT written_by FROM table_25084227_1 WHERE us_viewers__in_millions_ = \"2.09\"", "question": "if the 2.09 million US viewers watched this episode, who was it written by", "context": "CREATE TABLE table_25084227_1 (written_by VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_25084227_1 WHERE directed_by = \"Michael Offer\"", "question": "If the episode was directed by Michael Offer, what was the episode number?", "context": "CREATE TABLE table_25084227_1 (no INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT us_viewers__in_millions_ FROM table_25084227_1 WHERE directed_by = \"Michael Offer\"", "question": "If the episode was directed by Michael Offer, how many US Viewers watched it?", "context": "CREATE TABLE table_25084227_1 (us_viewers__in_millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT pick__number FROM table_25085059_3 WHERE position = \"DL\"", "question": "What draft pick number was the player with the position DL?", "context": "CREATE TABLE table_25085059_3 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_25085059_3 WHERE cfl_team = \"Winnipeg Blue Bombers\"", "question": "How many draft picks were for Winnipeg blue bombers?", "context": "CREATE TABLE table_25085059_3 (pick__number VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT COUNT(college) FROM table_25085059_3 WHERE position = \"LB\"", "question": "How many colleges provided players with positions LB?", "context": "CREATE TABLE table_25085059_3 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_25085059_3 WHERE position = \"DL\"", "question": "What college did the player come from whose position is DL?", "context": "CREATE TABLE table_25085059_3 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_25085059_3 WHERE college = \"McGill\"", "question": "What team got a draft pick player from McGill?", "context": "CREATE TABLE table_25085059_3 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2508633_4 WHERE college = \"Oklahoma State\" AND player = \"Greg Hill\"", "question": "What number draft pick was Oklahoma State's Greg Hill in 1983?", "context": "CREATE TABLE table_2508633_4 (pick__number VARCHAR, college VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_2508633_4 WHERE player = \"Danny Walters\"", "question": "What number pick was Danny Walters in the 1983 NFL draft?", "context": "CREATE TABLE table_2508633_4 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_2508633_4 WHERE nfl_team = \"New Orleans Saints\"", "question": "What were the pick numbers of the defensive tackles chosen by the New Orleans Saints in the 1983 draft?", "context": "CREATE TABLE table_2508633_4 (position VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT position FROM table_2508633_4 WHERE player = \"Steve Maidlow\"", "question": "What number draft pick was linebacker Steve Maidlow in the 1983 NFL Draft?", "context": "CREATE TABLE table_2508633_4 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_2508633_11 WHERE nfl_team = \"New York Giants\" AND position = \"Defensive back\"", "question": "In which colleges is the NFL Team New York Giants and with the position defensive back?", "context": "CREATE TABLE table_2508633_11 (college VARCHAR, nfl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_2508633_11 WHERE position = \"Linebacker\" AND player = \"Danny Triplett\"", "question": "What NFL Team has the player Danny Triplett with the position linebacker?", "context": "CREATE TABLE table_2508633_11 (nfl_team VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_2508633_11 WHERE college = \"North Texas State\"", "question": "What are the NFL Teams in College North Texas State?", "context": "CREATE TABLE table_2508633_11 (nfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(college) FROM table_2508633_11 WHERE nfl_team = \"Buffalo Bills\"", "question": "How many colleges have the NFL Team Buffalo Bills?", "context": "CREATE TABLE table_2508633_11 (college VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT player FROM table_2508633_11 WHERE college = \"Clemson\" AND position = \"Guard\"", "question": "Who are the all the players whose position is guard in college Clemson?", "context": "CREATE TABLE table_2508633_11 (player VARCHAR, college VARCHAR, position VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_2508633_11 WHERE player = \"Aaron Williams\"", "question": "What NFL Teams have the player Aaron Williams?", "context": "CREATE TABLE table_2508633_11 (nfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_2508633_2 WHERE nfl_team = \"Denver Broncos\"", "question": "Name the least pick number for the denver broncos", "context": "CREATE TABLE table_2508633_2 (pick__number INTEGER, nfl_team VARCHAR)"}, {"answer": "SELECT position FROM table_2508633_2 WHERE pick__number = 39", "question": "Name the position for pick number 39", "context": "CREATE TABLE table_2508633_2 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_2508633_2 WHERE player = \"Henry Ellard\"", "question": "Name the total number of pick number being henry ellard", "context": "CREATE TABLE table_2508633_2 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_2508633_2 WHERE nfl_team = \"New Orleans Saints\"", "question": "Name the player for new orleans saints", "context": "CREATE TABLE table_2508633_2 (player VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_2508633_2 WHERE college = \"Georgia Tech\"", "question": "Name the number of players for georgia tech", "context": "CREATE TABLE table_2508633_2 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_2508633_2 WHERE position = \"Guard\" AND nfl_team = \"Kansas City Chiefs\"", "question": "Name the most pick number for guard and kansas city chiefs", "context": "CREATE TABLE table_2508633_2 (pick__number INTEGER, position VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_2508633_6 WHERE pick__number = 151", "question": "Name the nfl team for pick number 151", "context": "CREATE TABLE table_2508633_6 (nfl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_2508633_6 WHERE nfl_team = \"Houston Oilers\"", "question": "Name the college for houston oilers", "context": "CREATE TABLE table_2508633_6 (college VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_2508633_6 WHERE college = \"Illinois\"", "question": "Name the most pick number for illinois", "context": "CREATE TABLE table_2508633_6 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT COUNT(nfl_team) FROM table_2508633_6 WHERE player = \"Ellis Gardner\"", "question": "Name the total number for nfl team for ellis gardner", "context": "CREATE TABLE table_2508633_6 (nfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_2508633_6 WHERE college = \"Delaware\"", "question": "Name the position for delaware", "context": "CREATE TABLE table_2508633_6 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_2508633_6 WHERE player = \"Eric Williams\"", "question": "Name the nfl team for eric williams", "context": "CREATE TABLE table_2508633_6 (nfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_2508633_9 WHERE college = \"Jackson State\"", "question": "What NFL team picked a player from Jackson State?", "context": "CREATE TABLE table_2508633_9 (nfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_2508633_9 WHERE college = \"Langston\"", "question": "What position was the draft pick that came from Langston?", "context": "CREATE TABLE table_2508633_9 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_2508633_9 WHERE nfl_team = \"New England Patriots\" AND position = \"Running back\"", "question": "How many players were the running back draft pick for the New England Patriots?", "context": "CREATE TABLE table_2508633_9 (player VARCHAR, nfl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_2508633_9 WHERE nfl_team = \"Kansas City Chiefs\"", "question": "Who was the draft pick for Kansas City Chiefs?", "context": "CREATE TABLE table_2508633_9 (player VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT college FROM table_2508633_9 WHERE nfl_team = \"New England Patriots\" AND position = \"Tight end\"", "question": "What college did the tight end draft pick for New England Patriots come from?", "context": "CREATE TABLE table_2508633_9 (college VARCHAR, nfl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(cuchumuela_municipality) FROM table_2509112_3", "question": "What is the Cuchumela Municipality minimum?", "context": "CREATE TABLE table_2509112_3 (cuchumuela_municipality INTEGER)"}, {"answer": "SELECT language FROM table_2509112_3 WHERE villa_rivero_municipality = 7", "question": "If Villa Rivero Municipality if 7, what is the language?", "context": "CREATE TABLE table_2509112_3 (language VARCHAR, villa_rivero_municipality VARCHAR)"}, {"answer": "SELECT COUNT(language) FROM table_2509112_3 WHERE tacachi_municipality = 3", "question": "What is the language total number if the Tacachi Municipality is 3?", "context": "CREATE TABLE table_2509112_3 (language VARCHAR, tacachi_municipality VARCHAR)"}, {"answer": "SELECT COUNT(san_benito_municipality) FROM table_2509112_3 WHERE language = \"Another native\"", "question": "If the language is another native, what is the San Benito Municipality total number?", "context": "CREATE TABLE table_2509112_3 (san_benito_municipality VARCHAR, language VARCHAR)"}, {"answer": "SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE language = \"Spanish\"", "question": "If the language is Spanish, what is the Vinto Municipality minimum?", "context": "CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, language VARCHAR)"}, {"answer": "SELECT MAX(quillacollo_municipality) FROM table_2509113_2 WHERE vinto_municipality = 18630", "question": "If the Vinto Municipality is 18630, what is the Quillacollo Municipality?", "context": "CREATE TABLE table_2509113_2 (quillacollo_municipality INTEGER, vinto_municipality VARCHAR)"}, {"answer": "SELECT MIN(sipe_sipe_municipality) FROM table_2509113_2 WHERE language = \"Quechua\"", "question": "What is the Sipe Sipe Municipality minimum if the language is Quechua?", "context": "CREATE TABLE table_2509113_2 (sipe_sipe_municipality INTEGER, language VARCHAR)"}, {"answer": "SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE language = \"Native and Spanish\"", "question": "If the language is Native and Spanish, what is the Vinto Municipality minimum?", "context": "CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, language VARCHAR)"}, {"answer": "SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE quillacollo_municipality = 93131", "question": "If the Quillacollo Municipality is 93131, what is the Vinto Municipality minimum?", "context": "CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, quillacollo_municipality VARCHAR)"}, {"answer": "SELECT language FROM table_2509350_3 WHERE villa_alcal\u00e1_municipality = 1167", "question": "Name the language for villa 1167", "context": "CREATE TABLE table_2509350_3 (language VARCHAR, villa_alcal\u00e1_municipality VARCHAR)"}, {"answer": "SELECT MAX(padilla_municipality) FROM table_2509350_3 WHERE language = \"Quechua\"", "question": "Name the most padilla municipality for quechua", "context": "CREATE TABLE table_2509350_3 (padilla_municipality INTEGER, language VARCHAR)"}, {"answer": "SELECT language FROM table_2509350_3 WHERE sopachuy_municipality = 10", "question": "Name the language for sopachuy 10", "context": "CREATE TABLE table_2509350_3 (language VARCHAR, sopachuy_municipality VARCHAR)"}, {"answer": "SELECT COUNT(tomina_municipality) FROM table_2509350_3 WHERE villa_alcal\u00e1_municipality = 176", "question": "Name the number of tomina for villa alcala for 176", "context": "CREATE TABLE table_2509350_3 (tomina_municipality VARCHAR, villa_alcal\u00e1_municipality VARCHAR)"}, {"answer": "SELECT MIN(tomina_municipality) FROM table_2509350_3 WHERE el_villar_municipality = 4", "question": "Name the least tomina for el villar being 4", "context": "CREATE TABLE table_2509350_3 (tomina_municipality INTEGER, el_villar_municipality VARCHAR)"}, {"answer": "SELECT language FROM table_2509350_3 WHERE el_villar_municipality = 1264", "question": "Name the language for el villar 1264", "context": "CREATE TABLE table_2509350_3 (language VARCHAR, el_villar_municipality VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_2509505_1 WHERE goals_against = 352", "question": "Name the total number of games for goals against being 352", "context": "CREATE TABLE table_2509505_1 (games VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_2509505_1 WHERE lost = 41", "question": "Name the total number of games for lost being 41", "context": "CREATE TABLE table_2509505_1 (games VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_2509505_1 WHERE points = 56", "question": "Name the most goals for 56 points", "context": "CREATE TABLE table_2509505_1 (goals_for INTEGER, points VARCHAR)"}, {"answer": "SELECT COUNT(won) FROM table_2509505_1 WHERE goals_for = 274", "question": "Name the number of won for goals for being 274", "context": "CREATE TABLE table_2509505_1 (won VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT combaya_municipality FROM table_2509202_2 WHERE quiabaya_municipality = \"2\"", "question": "When the quiabaya municipality is 2 what is the combaya municipality?", "context": "CREATE TABLE table_2509202_2 (combaya_municipality VARCHAR, quiabaya_municipality VARCHAR)"}, {"answer": "SELECT guanay_municipality FROM table_2509202_2 WHERE tacacoma_municipality = \"4.321\"", "question": "What is the guanay municipality when the  tacacoma municipality is 4.321?", "context": "CREATE TABLE table_2509202_2 (guanay_municipality VARCHAR, tacacoma_municipality VARCHAR)"}, {"answer": "SELECT sorata_municipality FROM table_2509202_2 WHERE quiabaya_municipality = \"33\"", "question": "How many people in the sorata municipality when the quiabaya municipality has 33?", "context": "CREATE TABLE table_2509202_2 (sorata_municipality VARCHAR, quiabaya_municipality VARCHAR)"}, {"answer": "SELECT combaya_municipality FROM table_2509202_2 WHERE quiabaya_municipality = \"33\"", "question": "What is the number for combaya municipality when quiabaya municipality is 33?", "context": "CREATE TABLE table_2509202_2 (combaya_municipality VARCHAR, quiabaya_municipality VARCHAR)"}, {"answer": "SELECT tipuani_municipality FROM table_2509202_2 WHERE tacacoma_municipality = \"6\"", "question": " tipuani municipality when tacacoma municipality is 6?", "context": "CREATE TABLE table_2509202_2 (tipuani_municipality VARCHAR, tacacoma_municipality VARCHAR)"}, {"answer": "SELECT guanay_municipality FROM table_2509202_2 WHERE combaya_municipality = \"0\"", "question": "What is the number for the guanay municipality when combaya municipality is 0?", "context": "CREATE TABLE table_2509202_2 (guanay_municipality VARCHAR, combaya_municipality VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_251272_4 WHERE location = \"Martyrs' Mausoleum, Rangoon, Burma\"", "question": "What is the first year where the assassination attempt was at Martyrs' Mausoleum, Rangoon, Burma?", "context": "CREATE TABLE table_251272_4 (year INTEGER, location VARCHAR)"}, {"answer": "SELECT location FROM table_251272_4 WHERE title_at_the_time = \"Prime Minister of Sri Lanka\"", "question": "Where was the attempt on the Prime Minister of Sri Lanka's life made?", "context": "CREATE TABLE table_251272_4 (location VARCHAR, title_at_the_time VARCHAR)"}, {"answer": "SELECT original_language FROM table_2512935_8 WHERE book_series = \"Little House on the Prairie\"", "question": "What is every original language for book series Little House on the Prairie?", "context": "CREATE TABLE table_2512935_8 (original_language VARCHAR, book_series VARCHAR)"}, {"answer": "SELECT approximate_sales FROM table_2512935_8 WHERE author = \"Laura Ingalls Wilder\"", "question": "What are all approximate sales for the author Laura Ingalls Wilder?", "context": "CREATE TABLE table_2512935_8 (approximate_sales VARCHAR, author VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_25118909_3 WHERE former_school = \"Notre Dame Prep\"", "question": "Name the most number for notre dame prep", "context": "CREATE TABLE table_25118909_3 (_number INTEGER, former_school VARCHAR)"}, {"answer": "SELECT Ends AS won FROM table_25107064_2 WHERE blank_ends = 0", "question": "Name the ends won for blank ends for 0", "context": "CREATE TABLE table_25107064_2 (Ends VARCHAR, blank_ends VARCHAR)"}, {"answer": "SELECT MIN(stolen_ends) FROM table_25107064_2 WHERE country = Germany", "question": "Name the stolen ends for germany", "context": "CREATE TABLE table_25107064_2 (stolen_ends INTEGER, country VARCHAR, Germany VARCHAR)"}, {"answer": "SELECT MIN(Ends) AS won FROM table_25107064_2 WHERE pf = 78", "question": "Name the least ends won for pf being 78", "context": "CREATE TABLE table_25107064_2 (Ends INTEGER, pf VARCHAR)"}, {"answer": "SELECT stadium FROM table_25129482_1 WHERE location = \"Kuopio\"", "question": "What is the stadium in Kuopio?", "context": "CREATE TABLE table_25129482_1 (stadium VARCHAR, location VARCHAR)"}, {"answer": "SELECT kitmaker FROM table_25129482_1 WHERE club = \"TPS\"", "question": "Who is the kitmaker for TPS?", "context": "CREATE TABLE table_25129482_1 (kitmaker VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_25129482_1", "question": "What is the largest capacity for a stadium?", "context": "CREATE TABLE table_25129482_1 (capacity INTEGER)"}, {"answer": "SELECT stadium FROM table_25129482_1 WHERE manager = \"Kari Martonen\"", "question": "Which stadium is managed by Kari Martonen?", "context": "CREATE TABLE table_25129482_1 (stadium VARCHAR, manager VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_25129482_1 WHERE club = \"FF Jaro\"", "question": "How many capacities are given for FF Jaro club?", "context": "CREATE TABLE table_25129482_1 (capacity VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(manager) FROM table_25129482_1 WHERE kitmaker = \"Puma\" AND location = \"Turku\"", "question": "How many managers for club in Turku where kitmaker is Puma?", "context": "CREATE TABLE table_25129482_1 (manager VARCHAR, kitmaker VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(fox_int_channels_air_date) FROM table_25131572_2 WHERE series__number = 5", "question": "How many times was episode 5 in the series aired on Fox int.?", "context": "CREATE TABLE table_25131572_2 (fox_int_channels_air_date VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT score_qualifying FROM table_25143284_1 WHERE score_final = \"12.200\"", "question": "What was the qualifying score of the competition whose final score was 12.200?", "context": "CREATE TABLE table_25143284_1 (score_qualifying VARCHAR, score_final VARCHAR)"}, {"answer": "SELECT location FROM table_25143284_1 WHERE score_qualifying = \"58.425\"", "question": "Where was the competition with a qualifying score of 58.425?", "context": "CREATE TABLE table_25143284_1 (location VARCHAR, score_qualifying VARCHAR)"}, {"answer": "SELECT COUNT(competition_description) FROM table_25143284_1 WHERE score_final = \"15.650\"", "question": "How many competitions had a final score of 15.650?", "context": "CREATE TABLE table_25143284_1 (competition_description VARCHAR, score_final VARCHAR)"}, {"answer": "SELECT year FROM table_2516282_3 WHERE score = \"7\u20135, 7\u20136 (7\u20135)\"", "question": "In what year was the score 7\u20135, 7\u20136 (7\u20135)?", "context": "CREATE TABLE table_2516282_3 (year VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_2516282_3 WHERE opponents = \"Yan Zi Jie Zheng\"", "question": "When the opponent was Yan Zi Jie Zheng, what was the outcome?", "context": "CREATE TABLE table_2516282_3 (outcome VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT outcome FROM table_2516282_3 WHERE year = 2013", "question": "In the year 2013, what was the outcome?", "context": "CREATE TABLE table_2516282_3 (outcome VARCHAR, year VARCHAR)"}, {"answer": "SELECT partner FROM table_2516282_3 WHERE score = \"7\u20135, 7\u20136 (7\u20135)\"", "question": "Who was the partner when the score was 7\u20135, 7\u20136 (7\u20135)?", "context": "CREATE TABLE table_2516282_3 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_2516282_3 WHERE surface = \"Hard (i)\"", "question": "When the surface was Hard (i), what was the score?", "context": "CREATE TABLE table_2516282_3 (score VARCHAR, surface VARCHAR)"}, {"answer": "SELECT championship FROM table_2516282_3 WHERE partner = \"Jie Zheng\"", "question": "In which championship was the partner Jie Zheng?", "context": "CREATE TABLE table_2516282_3 (championship VARCHAR, partner VARCHAR)"}, {"answer": "SELECT COUNT(pf) FROM table_25176088_2 WHERE stolen_ends = 3", "question": "What are the number of points for associated with exactly 3 stolen ends?", "context": "CREATE TABLE table_25176088_2 (pf VARCHAR, stolen_ends VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_25177625_1 WHERE weight = 170", "question": "How many position did a player took while weighing 170?", "context": "CREATE TABLE table_25177625_1 (position VARCHAR, weight VARCHAR)"}, {"answer": "SELECT former_school FROM table_25177625_1 WHERE hometown = \"East Brunswick, NJ\"", "question": "What were the former schools of the player from East Brunswick, NJ?", "context": "CREATE TABLE table_25177625_1 (former_school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT height FROM table_25177625_1 WHERE position = \"Forward\" AND year = \"Freshman\"", "question": "What was the height of this Freshman with a forward position?", "context": "CREATE TABLE table_25177625_1 (height VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT start_date_of__first__term FROM table_25182437_1 WHERE date_of_birth = \"1961-08-09 9 August 1961\"", "question": "If the date of birth is 1961-08-09 9 august 1961, what is the start date of (first) term?", "context": "CREATE TABLE table_25182437_1 (start_date_of__first__term VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT end_date_of__final__term FROM table_25182437_1 WHERE prime_minister = \"Palmer, Geoffrey Geoffrey Palmer\"", "question": "If the prime minister is Palmer, Geoffrey Geoffrey Palmer, what is the end date of (final) term?", "context": "CREATE TABLE table_25182437_1 (end_date_of__final__term VARCHAR, prime_minister VARCHAR)"}, {"answer": "SELECT population FROM table_25200461_9 WHERE city = \"Gilroy\"", "question": "What is the population if the city is Gilroy?", "context": "CREATE TABLE table_25200461_9 (population VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_25200461_9 WHERE democratic = \"42.5%\"", "question": "If Democratic is 42.5%, what is the city?", "context": "CREATE TABLE table_25200461_9 (city VARCHAR, democratic VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_25200461_9 WHERE registered_voters = \"66.8%\"", "question": "If the registered voters is 66.8%, what is the minimum population?", "context": "CREATE TABLE table_25200461_9 (population INTEGER, registered_voters VARCHAR)"}, {"answer": "SELECT other FROM table_25200461_9 WHERE city = \"Los Gatos\"", "question": "What is the other is the city is Los Gatos?", "context": "CREATE TABLE table_25200461_9 (other VARCHAR, city VARCHAR)"}, {"answer": "SELECT d_r_spread FROM table_25200461_9 WHERE no_party_preference = \"31.8%\"", "question": "What is the d-r spread if the no party preference is 31.8%?", "context": "CREATE TABLE table_25200461_9 (d_r_spread VARCHAR, no_party_preference VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_25200461_9 WHERE city = \"Santa Clara\"", "question": "If the city is Santa Clara, what is the population total number?", "context": "CREATE TABLE table_25200461_9 (population VARCHAR, city VARCHAR)"}, {"answer": "SELECT prefecture FROM table_2518850_4 WHERE city_town = \"Susaki\"", "question": "In what prefecture is Susaki located?", "context": "CREATE TABLE table_2518850_4 (prefecture VARCHAR, city_town VARCHAR)"}, {"answer": "SELECT COUNT(year_of_previous_participation) FROM table_2518850_4 WHERE total_number_of_participation = 1 AND high_school_name = \"Maebashi Ikuei\"", "question": "How many previous years did Maebashi Ikuei high school have a total number of 1 participation?", "context": "CREATE TABLE table_2518850_4 (year_of_previous_participation VARCHAR, total_number_of_participation VARCHAR, high_school_name VARCHAR)"}, {"answer": "SELECT prefecture FROM table_2518850_4 WHERE high_school_name = \"Nihon Bunri\"", "question": "In what prefecture is Nihon Bunri located?", "context": "CREATE TABLE table_2518850_4 (prefecture VARCHAR, high_school_name VARCHAR)"}, {"answer": "SELECT prefecture FROM table_2518850_4 WHERE city_town = \"Daito\"", "question": "In what prefecture is Daito located?", "context": "CREATE TABLE table_2518850_4 (prefecture VARCHAR, city_town VARCHAR)"}, {"answer": "SELECT high_school_name FROM table_2518850_4 WHERE prefecture = \"Kyoto\"", "question": "Which high school is located in Kyoto?", "context": "CREATE TABLE table_2518850_4 (high_school_name VARCHAR, prefecture VARCHAR)"}, {"answer": "SELECT year_of_previous_participation FROM table_2518850_4 WHERE prefecture = \"Kagoshima\"", "question": "What was the year of previous participation for the school in the Kagoshima prefecture?", "context": "CREATE TABLE table_2518850_4 (year_of_previous_participation VARCHAR, prefecture VARCHAR)"}, {"answer": "SELECT january_15_16 FROM table_25216791_3 WHERE march_27_29 = \"March 29, 2006\"", "question": "What was the data on January 15-16 if March 27-29 is March 29, 2006?", "context": "CREATE TABLE table_25216791_3 (january_15_16 VARCHAR, march_27_29 VARCHAR)"}, {"answer": "SELECT november_3 FROM table_25216791_3 WHERE january_15_16 = \"January 15, 2010\"", "question": "What was the data on November 3, if the data on January 15-16 is January 15, 2010?", "context": "CREATE TABLE table_25216791_3 (november_3 VARCHAR, january_15_16 VARCHAR)"}, {"answer": "SELECT COUNT(january_15_16) FROM table_25216791_3 WHERE august_21_22 = \"155\"", "question": "How many datas were recorded on January 15-16 if August 21-22 is 155?", "context": "CREATE TABLE table_25216791_3 (january_15_16 VARCHAR, august_21_22 VARCHAR)"}, {"answer": "SELECT january_15_16 FROM table_25216791_3 WHERE june_10_11 = \"June 10, 1964\"", "question": "What was the data on January 15-16 if the data recorded June 10-11 is June 10, 1964?", "context": "CREATE TABLE table_25216791_3 (january_15_16 VARCHAR, june_10_11 VARCHAR)"}, {"answer": "SELECT COUNT(points_for) FROM table_25229283_4 WHERE percentage___percentage_ = \"94.29\"", "question": "How many data are on points for if the percentage is 94.29?", "context": "CREATE TABLE table_25229283_4 (points_for VARCHAR, percentage___percentage_ VARCHAR)"}, {"answer": "SELECT opponent FROM table_25229283_4 WHERE points_for = 177", "question": "Who was the opponent with a points for of 177?", "context": "CREATE TABLE table_25229283_4 (opponent VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT MIN(points_against) FROM table_25229283_4 WHERE opponent = \"Port Adelaide\"", "question": "What was the minimum points against if the opponent is Port Adelaide?", "context": "CREATE TABLE table_25229283_4 (points_against INTEGER, opponent VARCHAR)"}, {"answer": "SELECT rider FROM table_25220821_3 WHERE thurs_3_june = \"20' 27.93 110.615mph\"", "question": "If Thursday 3 June is 20' 27.93 110.615mph, what are the names of the riders?", "context": "CREATE TABLE table_25220821_3 (rider VARCHAR, thurs_3_june VARCHAR)"}, {"answer": "SELECT COUNT(tues_1_june) FROM table_25220821_3 WHERE mon_31_may = \"20' 15.35 111.761mph\"", "question": "What is the Tuesday 1 June total number if Monday 31 May is 20' 15.35 111.761mph?", "context": "CREATE TABLE table_25220821_3 (tues_1_june VARCHAR, mon_31_may VARCHAR)"}, {"answer": "SELECT fri_4_june FROM table_25220821_3 WHERE wed_2_june = \"20' 11.98 112.071mph\"", "question": "What is Friday 4 June if Wednesday 2 June is 20' 11.98 112.071mph?", "context": "CREATE TABLE table_25220821_3 (fri_4_june VARCHAR, wed_2_june VARCHAR)"}, {"answer": "SELECT COUNT(rider) FROM table_25220821_3 WHERE tues_1_june = \"21' 05.27 107.351mph\"", "question": "If Tuesday 1 June is 21' 05.27 107.351mph, what is the rider total number?", "context": "CREATE TABLE table_25220821_3 (rider VARCHAR, tues_1_june VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_25220821_3 WHERE tues_1_june = \"20' 59.60 107.834mph\"", "question": "If Tuesday 1 June is 20' 59.60 107.834mph, what is the rank maximum?", "context": "CREATE TABLE table_25220821_3 (rank INTEGER, tues_1_june VARCHAR)"}, {"answer": "SELECT fri_4_june FROM table_25220821_3 WHERE wed_2_june = \"20' 50.62 108.608mph\"", "question": "What is the Friday 4 June if the Wednesday 2 June is 20' 50.62 108.608mph?", "context": "CREATE TABLE table_25220821_3 (fri_4_june VARCHAR, wed_2_june VARCHAR)"}, {"answer": "SELECT wed_2_june FROM table_25220821_4 WHERE thurs_3_june = \"17' 48.58 127.111mph\"", "question": "What is the 2 June time for the rider with time of 17' 48.58 127.111mph on 3 June?", "context": "CREATE TABLE table_25220821_4 (wed_2_june VARCHAR, thurs_3_june VARCHAR)"}, {"answer": "SELECT COUNT(mon_31_may) FROM table_25220821_4 WHERE rank = 5", "question": "How many times are listed for 31 May for the rider ranked 5?", "context": "CREATE TABLE table_25220821_4 (mon_31_may VARCHAR, rank VARCHAR)"}, {"answer": "SELECT thurs_3_june FROM table_25220821_4 WHERE wed_2_june = \"17' 45.11 127.525mph\"", "question": "What is the 3 June time for the rider with 2 June time of 17' 45.11 127.525mph?", "context": "CREATE TABLE table_25220821_4 (thurs_3_june VARCHAR, wed_2_june VARCHAR)"}, {"answer": "SELECT rider FROM table_25220821_4 WHERE rank = 2", "question": "Who is ranked 2?", "context": "CREATE TABLE table_25220821_4 (rider VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(november_3) FROM table_25235489_2 WHERE january_15_16 = \"January 15, 1991\"", "question": "How many times does November 3rd occur when January 15, 1991 does?", "context": "CREATE TABLE table_25235489_2 (november_3 VARCHAR, january_15_16 VARCHAR)"}, {"answer": "SELECT march_27_29 FROM table_25235489_2 WHERE november_3 = \"153\"", "question": "When November is 153 what is the March number?", "context": "CREATE TABLE table_25235489_2 (march_27_29 VARCHAR, november_3 VARCHAR)"}, {"answer": "SELECT COUNT(june_10_11) FROM table_25235489_2 WHERE november_3 = \"november_3, 1975\"", "question": "How many times does an occurance happen in June when it happens on NOvember 3, 1975?", "context": "CREATE TABLE table_25235489_2 (june_10_11 VARCHAR, november_3 VARCHAR)"}, {"answer": "SELECT august_21_22 FROM table_25235489_2 WHERE march_27_29 = \"129\"", "question": "When march is 129 what is the August number?", "context": "CREATE TABLE table_25235489_2 (august_21_22 VARCHAR, march_27_29 VARCHAR)"}, {"answer": "SELECT COUNT(august_21_22) FROM table_25235489_2 WHERE march_27_29 = \"139\"", "question": "How many numbers are there for August when March is 139?", "context": "CREATE TABLE table_25235489_2 (august_21_22 VARCHAR, march_27_29 VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_2522473_1 WHERE seasons = 8", "question": "How many teams have been in Topperserien for 8 seasons? ", "context": "CREATE TABLE table_2522473_1 (team VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT MAX(seasons) FROM table_2522473_1", "question": "What is the maximum number of seasons for any team? ", "context": "CREATE TABLE table_2522473_1 (seasons INTEGER)"}, {"answer": "SELECT team FROM table_2522473_1 WHERE home_ground = \"Stemmemyren\"", "question": "Which teams homeeground is Stemmemyren? ", "context": "CREATE TABLE table_2522473_1 (team VARCHAR, home_ground VARCHAR)"}, {"answer": "SELECT home_ground FROM table_2522473_1 WHERE seasons = 27 AND home_city = \"Trondheim\"", "question": "What is the home ground for the team whose home city is Trondheim with 27 seasons? ", "context": "CREATE TABLE table_2522473_1 (home_ground VARCHAR, seasons VARCHAR, home_city VARCHAR)"}, {"answer": "SELECT home_city FROM table_2522473_1 WHERE home_ground = \"DnB Nor Arena\"", "question": "What is the home city for the team whose home ground is dnb nor arena? ", "context": "CREATE TABLE table_2522473_1 (home_city VARCHAR, home_ground VARCHAR)"}, {"answer": "SELECT home_city FROM table_2522473_1 WHERE home_ground = \"Klepp Stadion\"", "question": "What Home city has the home ground Klepp stadion? ", "context": "CREATE TABLE table_2522473_1 (home_city VARCHAR, home_ground VARCHAR)"}, {"answer": "SELECT COUNT(total_electricity__gw) AS \u00b7h_ FROM table_25244412_2 WHERE renewable_electricity_w_o_hydro__gw\u00b7h_ = 3601", "question": "How many data was given the total electricity in GW-h if the renewable electricity w/o hydro (GW-h) is 3601?", "context": "CREATE TABLE table_25244412_2 (total_electricity__gw VARCHAR, renewable_electricity_w_o_hydro__gw\u00b7h_ VARCHAR)"}, {"answer": "SELECT COUNT(total_electricity__gw) AS \u00b7h_ FROM table_25244412_2 WHERE _percentage_renewable = \"92.3%\"", "question": "How many data was given the total electricity in GW-h if % renewable is 92.3%?", "context": "CREATE TABLE table_25244412_2 (total_electricity__gw VARCHAR, _percentage_renewable VARCHAR)"}, {"answer": "SELECT MIN(renewable_electricity__gw) AS \u00b7h_ FROM table_25244412_2 WHERE rank = 36", "question": "How much was the minimum renewable electricity (GW-h) that is ranked 36?", "context": "CREATE TABLE table_25244412_2 (renewable_electricity__gw INTEGER, rank VARCHAR)"}, {"answer": "SELECT state FROM table_25244412_2 WHERE total_electricity__gw\u00b7h_ = 38380", "question": "What was the state with the total electricity generated is 38380 gw-h?", "context": "CREATE TABLE table_25244412_2 (state VARCHAR, total_electricity__gw\u00b7h_ VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_25246990_2 WHERE prod_code = \"111\"", "question": "What number episode in the series had a production code of 111?", "context": "CREATE TABLE table_25246990_2 (no_in_series VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_25246990_2 WHERE prod_code = \"110\"", "question": "What number episode in the series had a production code of 110?", "context": "CREATE TABLE table_25246990_2 (no_in_series VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_25246990_2 WHERE written_by = \"Jed Spingarn\" AND no_in_series = \"7\"", "question": "How many U.S. viewers in millions watched the number 7 episode in the series that was written by Jed Spingarn?", "context": "CREATE TABLE table_25246990_2 (us_viewers__millions_ VARCHAR, written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_us_air_date FROM table_25246990_5 WHERE directed_by = \"Julian Petrillo\"", "question": "What was the original U.S. air date of the episode directed by Julian Petrillo?", "context": "CREATE TABLE table_25246990_5 (original_us_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(original_us_air_date) FROM table_25246990_5 WHERE us_viewers__millions_ = \"2.5\"", "question": "How many different original U.S. air dates appear where the U.S. viewers were 2.5 million?", "context": "CREATE TABLE table_25246990_5 (original_us_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_25246990_5 WHERE written_by = \"Lazar Saric & Jed Spingarn\"", "question": "How many U.S. viewers were there for the episode written by Lazar Saric & Jed Spingarn?", "context": "CREATE TABLE table_25246990_5 (us_viewers__millions_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_25246990_5 WHERE no_in_season = 4", "question": "How many U.S. viewers were there for the number 4 episode in season?", "context": "CREATE TABLE table_25246990_5 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_2527063_3", "question": "Name the least rank", "context": "CREATE TABLE table_2527063_3 (rank INTEGER)"}, {"answer": "SELECT growth_rate FROM table_2527063_3 WHERE district = \"Hooghly\"", "question": "Name the growth rate for hooghly", "context": "CREATE TABLE table_2527063_3 (growth_rate VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_2527063_3 WHERE district = \"East Midnapore\"", "question": "Name the total number of rank for east midnapore", "context": "CREATE TABLE table_2527063_3 (rank VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_2527063_3 WHERE growth_rate = \"14.47\"", "question": "Name the total number of rank for growth raate for 14.47", "context": "CREATE TABLE table_2527063_3 (rank VARCHAR, growth_rate VARCHAR)"}, {"answer": "SELECT champion FROM table_2527617_1 WHERE season = 1994", "question": "Who is the champion of the 1994 season?", "context": "CREATE TABLE table_2527617_1 (champion VARCHAR, season VARCHAR)"}, {"answer": "SELECT best_player FROM table_2527617_1 WHERE season = 1998", "question": "Who is the best player in the 1998 season?", "context": "CREATE TABLE table_2527617_1 (best_player VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(index) FROM table_25271777_1 WHERE forcible_rape = 1084", "question": "What was the largest index the year/s forcible rapes numbered 1084? ", "context": "CREATE TABLE table_25271777_1 (index INTEGER, forcible_rape VARCHAR)"}, {"answer": "SELECT COUNT(violent) FROM table_25271777_1 WHERE forcible_rape = 1156", "question": "How many violent catagories are listed for the year forcible rapes were 1156? ", "context": "CREATE TABLE table_25271777_1 (violent VARCHAR, forcible_rape VARCHAR)"}, {"answer": "SELECT MAX(aggravated_assault) FROM table_25271777_1 WHERE robbery = 3811", "question": "What was the largest number of aggravated assaults when there were 3811 robberies? ", "context": "CREATE TABLE table_25271777_1 (aggravated_assault INTEGER, robbery VARCHAR)"}, {"answer": "SELECT murder FROM table_25271777_1 WHERE forcible_rape = 166", "question": "What was the number of murders the year forcible rapes were at 166? ", "context": "CREATE TABLE table_25271777_1 (murder VARCHAR, forcible_rape VARCHAR)"}, {"answer": "SELECT violent FROM table_25271777_1 WHERE index = 191037", "question": "How many violent crimes occurred the year that the index was 191037? ", "context": "CREATE TABLE table_25271777_1 (violent VARCHAR, index VARCHAR)"}, {"answer": "SELECT written_by FROM table_25277363_2 WHERE no_in_series = 149", "question": "Who wrote episode number 149 in the series?", "context": "CREATE TABLE table_25277363_2 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT title FROM table_25276528_2 WHERE directed_by = \"Bill Foster\"", "question": "What title did Bill Foster direct ?", "context": "CREATE TABLE table_25276528_2 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_25276528_2 WHERE written_by = \"Kim Weiskopf and Jeff Franklin\"", "question": "Kim Weiskopf and Jeff Franklin wrote all the no. in series.", "context": "CREATE TABLE table_25276528_2 (no_in_series VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT co_stars FROM table_2528382_2 WHERE music_director = \"Kalyanji-Anandji\" AND year = \"1963\"", "question": "Which co-stars did Kalyanji-anandji direct in 1963?", "context": "CREATE TABLE table_2528382_2 (co_stars VARCHAR, music_director VARCHAR, year VARCHAR)"}, {"answer": "SELECT Co - singers FROM table_2528382_2 WHERE movie_album = \"Pyaasa\"", "question": "Which co-singers appear in the movie Pyaasa?", "context": "CREATE TABLE table_2528382_2 (Co VARCHAR, singers VARCHAR, movie_album VARCHAR)"}, {"answer": "SELECT additional_info FROM table_2528382_2 WHERE song = \"Mera Yaar Bana Hai Dulha\"", "question": "What is the additional information in the song mera yaar bana hai dulha", "context": "CREATE TABLE table_2528382_2 (additional_info VARCHAR, song VARCHAR)"}, {"answer": "SELECT year FROM table_2528382_2 WHERE co_stars = \"Mala Sinha and Amitabh Bachchan\"", "question": "In which years are co-stars  mala sinha and amitabh bachchan?", "context": "CREATE TABLE table_2528382_2 (year VARCHAR, co_stars VARCHAR)"}, {"answer": "SELECT song FROM table_2528382_1 WHERE additional_info = \"Drunkard Groom\"", "question": "Which song has Drunkard Groom listed as additional information?", "context": "CREATE TABLE table_2528382_1 (song VARCHAR, additional_info VARCHAR)"}, {"answer": "SELECT lyricist FROM table_2528382_1 WHERE music_director = \"Madan Mohan Kohli\"", "question": "Who was the lyricist for the song  with music directed by madan mohan kohli?", "context": "CREATE TABLE table_2528382_1 (lyricist VARCHAR, music_director VARCHAR)"}, {"answer": "SELECT additional_info FROM table_2528382_1 WHERE music_director = \"Datta Naik\"", "question": "Which song directed by datta naik had the ending stranza written by Johnny Walker?", "context": "CREATE TABLE table_2528382_1 (additional_info VARCHAR, music_director VARCHAR)"}, {"answer": "SELECT movie_album FROM table_2528382_1 WHERE song = \"Dil De De Nahin Nahin Dil Le Le\"", "question": "In which album can Dil De De Nahin Nahin Dil Le Le be found?", "context": "CREATE TABLE table_2528382_1 (movie_album VARCHAR, song VARCHAR)"}, {"answer": "SELECT 2002 AS _2005 FROM table_25282151_1 WHERE supply_sector___percentage_of_gdp_in_current_prices_ = \"Construction\"", "question": "What was the GDP for 2002-2005 for the construction center? ", "context": "CREATE TABLE table_25282151_1 (supply_sector___percentage_of_gdp_in_current_prices_ VARCHAR)"}, {"answer": "SELECT november_3 FROM table_25284864_3 WHERE june_10_11 = \"147\"", "question": "What is the November 3 result when June 10-11 is 147?", "context": "CREATE TABLE table_25284864_3 (november_3 VARCHAR, june_10_11 VARCHAR)"}, {"answer": "SELECT november_3 FROM table_25284864_3 WHERE january_15_16 = \"141\"", "question": "What is the November 3 result when the result for January 15-16 is 141?", "context": "CREATE TABLE table_25284864_3 (november_3 VARCHAR, january_15_16 VARCHAR)"}, {"answer": "SELECT june_10_11 FROM table_25284864_3 WHERE march_27_29 = \"March 28, 1968\"", "question": "What June 10-11 is is that corresponds to March 28, 1968?", "context": "CREATE TABLE table_25284864_3 (june_10_11 VARCHAR, march_27_29 VARCHAR)"}, {"answer": "SELECT january_15_16 FROM table_25284864_3 WHERE november_3 = \"november_3, 2013\"", "question": "What January 15-16 is is that corresponds to November 3, 2013?", "context": "CREATE TABLE table_25284864_3 (january_15_16 VARCHAR, november_3 VARCHAR)"}, {"answer": "SELECT november_3 FROM table_25286976_2 WHERE june_10_11 = \"127\"", "question": "When 127 is on June 10th to 11th what is November 3rd?", "context": "CREATE TABLE table_25286976_2 (november_3 VARCHAR, june_10_11 VARCHAR)"}, {"answer": "SELECT june_10_11 FROM table_25286976_2 WHERE march_27_29 = \"129\"", "question": "When 129 is on March 27th to 29th what is June 10th to 11th?", "context": "CREATE TABLE table_25286976_2 (june_10_11 VARCHAR, march_27_29 VARCHAR)"}, {"answer": "SELECT august_21_22 FROM table_25286976_2 WHERE march_27_29 = \"139\"", "question": "When 139 is on March 27th to 29th what is August 21st to 22nd?", "context": "CREATE TABLE table_25286976_2 (august_21_22 VARCHAR, march_27_29 VARCHAR)"}, {"answer": "SELECT november_3 FROM table_25287007_2 WHERE august_21_22 = \"August 21, 2017\"", "question": "During November 3 where august 21-22 is august 21, 2017?", "context": "CREATE TABLE table_25287007_2 (november_3 VARCHAR, august_21_22 VARCHAR)"}, {"answer": "SELECT june_10_11 FROM table_25287007_2 WHERE november_3 = \"153\"", "question": "How many solar eclipse on June 10-11, while November 3 is 153?", "context": "CREATE TABLE table_25287007_2 (june_10_11 VARCHAR, november_3 VARCHAR)"}, {"answer": "SELECT COUNT(august_21_22) FROM table_25287007_2 WHERE june_10_11 = \"June 11, 1983\"", "question": "How many solar eclipse during August 21-22 where June 10-11 on June 11, 1983?", "context": "CREATE TABLE table_25287007_2 (august_21_22 VARCHAR, june_10_11 VARCHAR)"}, {"answer": "SELECT june_10_11 FROM table_25287007_2 WHERE march_27_29 = \"149\"", "question": "How many solar eclipse during June 10-11 and march 27-29 is 149?", "context": "CREATE TABLE table_25287007_2 (june_10_11 VARCHAR, march_27_29 VARCHAR)"}, {"answer": "SELECT august_21_22 FROM table_25287007_2 WHERE january_15_16 = \"141\"", "question": "How many solar eclipse during august 21-22 and January 15-16 is 141?", "context": "CREATE TABLE table_25287007_2 (august_21_22 VARCHAR, january_15_16 VARCHAR)"}, {"answer": "SELECT january_15_16 FROM table_25287007_2 WHERE august_21_22 = \"August 21, 2017\"", "question": "How many solar eclipse during  January 15-16 and august 21-22 on august 21, 2017?", "context": "CREATE TABLE table_25287007_2 (january_15_16 VARCHAR, august_21_22 VARCHAR)"}, {"answer": "SELECT COUNT(fastest_lap) FROM table_25322130_3 WHERE round = \"14\"", "question": "Name the fastest lap for round 14", "context": "CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, round VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_25322130_3 WHERE date = \"20 April\"", "question": "Name the winning driver for 20 april", "context": "CREATE TABLE table_25322130_3 (winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_25322130_3 WHERE date = \"13 July\"", "question": "Name the circuit for 13 july", "context": "CREATE TABLE table_25322130_3 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_25322130_3 WHERE round = \"3\"", "question": "Name the fastest lap for round 3", "context": "CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, round VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_25322130_3 WHERE winning_team = \"Piquet Sports\" AND circuit = \"Silverstone\"", "question": "Name the fastest lap for piquet sports and silverstone", "context": "CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(f_laps) FROM table_25318033_1 WHERE position = \"10th\" AND races < 9.0", "question": "How many laps where the position is 10th and the races is smaller than 9.0?", "context": "CREATE TABLE table_25318033_1 (f_laps VARCHAR, position VARCHAR, races VARCHAR)"}, {"answer": "SELECT MIN(races) FROM table_25318033_1", "question": "What is the lowest amount of races?", "context": "CREATE TABLE table_25318033_1 (races INTEGER)"}, {"answer": "SELECT races FROM table_25318033_1 WHERE points = \"137\"", "question": "Which races have 137 points?", "context": "CREATE TABLE table_25318033_1 (races VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_25318033_1 WHERE points = \"137\"", "question": "What team has 137 points?", "context": "CREATE TABLE table_25318033_1 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_25318033_1 WHERE podiums = 0 AND position = \"10th\"", "question": "How many points were scored when the podiums is 0 and position is 10th?", "context": "CREATE TABLE table_25318033_1 (points VARCHAR, podiums VARCHAR, position VARCHAR)"}, {"answer": "SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate_change___percentage_ = \"+40.4\"", "question": "What is the rate limit when the desired rate change (%) is +40.4?", "context": "CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, desired_rate_change___percentage_ VARCHAR)"}, {"answer": "SELECT rate_limit__p_ FROM table_25316812_1 WHERE budget_plans__\u00a3m_ = \"limit agreed\"", "question": "What is the rate limit when budget plans (\u00a3m) is limit agreed?", "context": "CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, budget_plans__\u00a3m_ VARCHAR)"}, {"answer": "SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate__p_ = \"162\"", "question": "What is the rate limit when the desired rate (p) is 162?", "context": "CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, desired_rate__p_ VARCHAR)"}, {"answer": "SELECT rate_change___percentage_ FROM table_25316812_1 WHERE rate_limit__p_ = \"82.86\"", "question": "What is the rate change % when the rate limit is 82.86?", "context": "CREATE TABLE table_25316812_1 (rate_change___percentage_ VARCHAR, rate_limit__p_ VARCHAR)"}, {"answer": "SELECT desired_rate__p_ FROM table_25316812_1 WHERE rate_limit__p_ = \"50.33\"", "question": "What is the desired rate when the rate limit (p) is 50.33?", "context": "CREATE TABLE table_25316812_1 (desired_rate__p_ VARCHAR, rate_limit__p_ VARCHAR)"}, {"answer": "SELECT authority FROM table_25316812_1 WHERE budget_limit__\u00a3m_ = \"900\"", "question": "What is the authority who set the budget limit (\u00a3m) at 900?", "context": "CREATE TABLE table_25316812_1 (authority VARCHAR, budget_limit__\u00a3m_ VARCHAR)"}, {"answer": "SELECT MAX(share) FROM table_25304789_1", "question": "What was the highest share?", "context": "CREATE TABLE table_25304789_1 (share INTEGER)"}, {"answer": "SELECT final_score FROM table_25331766_3 WHERE attendance = 7523", "question": "What was the final score of the game with 7523 in attendance?", "context": "CREATE TABLE table_25331766_3 (final_score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_25331766_3", "question": "What is the lowest attendance?", "context": "CREATE TABLE table_25331766_3 (attendance INTEGER)"}, {"answer": "SELECT steals FROM table_25342713_5 WHERE rebounds = 87", "question": "If the rebounds are at 87, what are the amount of steals?", "context": "CREATE TABLE table_25342713_5 (steals VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT COUNT(blocks) FROM table_25342713_5 WHERE points = 89", "question": "How many players 89 points?", "context": "CREATE TABLE table_25342713_5 (blocks VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(blocks) FROM table_25342713_5 WHERE steals = 20", "question": "If the Steals are 20, what are the blocks?", "context": "CREATE TABLE table_25342713_5 (blocks INTEGER, steals VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_25341765_1 WHERE directed_by = \"Jeffrey Blitz\"", "question": "How many millions of viewers did the episode directed by Jeffrey Blitz have?", "context": "CREATE TABLE table_25341765_1 (us_viewers__million_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25341765_1 WHERE us_viewers__million_ = \"5.92\"", "question": "Who directed the episode that had 5.92 million viewers?", "context": "CREATE TABLE table_25341765_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_25341765_1 WHERE written_by = \"Alan Yang\"", "question": "What was the name of the episode Alan Yang wrote?", "context": "CREATE TABLE table_25341765_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_25341765_1 WHERE directed_by = \"Michael McCullers\"", "question": "How many episodes were directed by Michael McCullers?", "context": "CREATE TABLE table_25341765_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_25352318_1 WHERE position = \"3rd\"", "question": "When 3rd is the position what is the lowest amount of points?", "context": "CREATE TABLE table_25352318_1 (points INTEGER, position VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_25352318_1 WHERE season = 2010 AND team = \"ART Grand Prix\"", "question": "When art grand prix is the team and 2010 is the season how many wins are there?", "context": "CREATE TABLE table_25352318_1 (wins VARCHAR, season VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_25352318_1 WHERE races = 15 AND position = \"7th\"", "question": "When 7th is the position and  15 is the race who is the team?", "context": "CREATE TABLE table_25352318_1 (team VARCHAR, races VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(poles) FROM table_25352318_1", "question": "What is the lowest overall amount of poles?", "context": "CREATE TABLE table_25352318_1 (poles INTEGER)"}, {"answer": "SELECT position FROM table_25352318_1 WHERE season = 2012 AND team = \"Racing Engineering\"", "question": "When racing engineering is the team and 2012 is the team what is the position?", "context": "CREATE TABLE table_25352318_1 (position VARCHAR, season VARCHAR, team VARCHAR)"}, {"answer": "SELECT Major AS facility FROM table_25346763_1 WHERE year_opened = \"1968\"", "question": "Is the facility opened in 1968 a major facility?", "context": "CREATE TABLE table_25346763_1 (Major VARCHAR, year_opened VARCHAR)"}, {"answer": "SELECT custody_level_s_ FROM table_25346763_1 WHERE location = \"Shelton\"", "question": "What is the custody level of the facility in Shelton?", "context": "CREATE TABLE table_25346763_1 (custody_level_s_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT Major AS facility FROM table_25346763_1 WHERE facility = \"Washington Corrections Center for Women (WCCW)\"", "question": "Is the Washington Corrections Center for Women (WCCW) a major facility?", "context": "CREATE TABLE table_25346763_1 (Major VARCHAR, facility VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_25346763_1 WHERE year_opened = \"1956\"", "question": "What is the capacity for a facility opened in 1956?", "context": "CREATE TABLE table_25346763_1 (capacity VARCHAR, year_opened VARCHAR)"}, {"answer": "SELECT facility FROM table_25346763_1 WHERE year_opened = \"1954\"", "question": "What facility opening in 1954?", "context": "CREATE TABLE table_25346763_1 (facility VARCHAR, year_opened VARCHAR)"}, {"answer": "SELECT player FROM table_25353861_5 WHERE assists = 6", "question": "Which player had 6 assists? ", "context": "CREATE TABLE table_25353861_5 (player VARCHAR, assists VARCHAR)"}, {"answer": "SELECT MIN(steals) FROM table_25353861_5", "question": "What is the fewest steals any player had?", "context": "CREATE TABLE table_25353861_5 (steals INTEGER)"}, {"answer": "SELECT MIN(steals) FROM table_25353861_5 WHERE player = \"Kelly Miller\"", "question": "How many steals did Kelly Miller have?", "context": "CREATE TABLE table_25353861_5 (steals INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_25353861_5 WHERE blocks = 9", "question": "Which player had 9 blocks?", "context": "CREATE TABLE table_25353861_5 (player VARCHAR, blocks VARCHAR)"}, {"answer": "SELECT rebounds FROM table_25353861_5 WHERE player = \"Tammy Sutton-Brown\"", "question": "How many rebounds did Tammy Sutton-Brown have?", "context": "CREATE TABLE table_25353861_5 (rebounds VARCHAR, player VARCHAR)"}, {"answer": "SELECT science FROM table_2534578_1 WHERE social_studies = \"93.56\"", "question": "What was the science score in the year there was a social studies score of 93.56?", "context": "CREATE TABLE table_2534578_1 (science VARCHAR, social_studies VARCHAR)"}, {"answer": "SELECT COUNT(science) FROM table_2534578_1 WHERE mathematics = \"98.02\"", "question": "How many years did the school have a mathetmatics score of 98.02?", "context": "CREATE TABLE table_2534578_1 (science VARCHAR, mathematics VARCHAR)"}, {"answer": "SELECT reading FROM table_2534578_1 WHERE science = \"96.13\"", "question": "What was the reading score in the year the science score was 96.13?", "context": "CREATE TABLE table_2534578_1 (reading VARCHAR, science VARCHAR)"}, {"answer": "SELECT language FROM table_2534578_1 WHERE reading = \"94.47\"", "question": "What was the language score when the reading score was 94.47?", "context": "CREATE TABLE table_2534578_1 (language VARCHAR, reading VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_25352324_5 WHERE player = \"Sophia Witherspoon\"", "question": "How many values for points have Sophia Witherspoon as the player?", "context": "CREATE TABLE table_25352324_5 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_25352324_5", "question": "What is the highest value for points?", "context": "CREATE TABLE table_25352324_5 (points INTEGER)"}, {"answer": "SELECT rebounds FROM table_25352324_5 WHERE steals = 19", "question": "What is every value for rebounds when steals is 19?", "context": "CREATE TABLE table_25352324_5 (rebounds VARCHAR, steals VARCHAR)"}, {"answer": "SELECT points FROM table_25352324_5 WHERE rebounds = 6 AND blocks = 0", "question": "What is every value for points if rebounds is 6 and blocks is 0?", "context": "CREATE TABLE table_25352324_5 (points VARCHAR, rebounds VARCHAR, blocks VARCHAR)"}, {"answer": "SELECT assists FROM table_25352324_5 WHERE player = \"Lynn Pride\"", "question": "What is every entry for assists if the player is Lynn Pride?", "context": "CREATE TABLE table_25352324_5 (assists VARCHAR, player VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_25356350_3 WHERE written_by = \"Itamar Moses\"", "question": "What is the air date of the episode written by Itamar Moses? ", "context": "CREATE TABLE table_25356350_3 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT june_10_11 FROM table_25355392_2 WHERE august_21_22 = \"August 21, 2017\"", "question": "What is the june 10-11 when august 21-22 is august 21, 2017?", "context": "CREATE TABLE table_25355392_2 (june_10_11 VARCHAR, august_21_22 VARCHAR)"}, {"answer": "SELECT COUNT(november_3) FROM table_25355392_2 WHERE march_27_29 = \"129\"", "question": "how many times is march 27-29 is 129?", "context": "CREATE TABLE table_25355392_2 (november_3 VARCHAR, march_27_29 VARCHAR)"}, {"answer": "SELECT june_10_11 FROM table_25355392_2 WHERE march_27_29 = \"149\"", "question": "what is june 10-11 when march 27-29 is 149?", "context": "CREATE TABLE table_25355392_2 (june_10_11 VARCHAR, march_27_29 VARCHAR)"}, {"answer": "SELECT november_3 FROM table_25355392_2 WHERE june_10_11 = \"June 10, 1964\"", "question": "what is november 3 when june 10-11 is june 10, 1964?", "context": "CREATE TABLE table_25355392_2 (november_3 VARCHAR, june_10_11 VARCHAR)"}, {"answer": "SELECT march_27_29 FROM table_25355392_2 WHERE november_3 = \"133\"", "question": "what is march 27-29 when november 3 is 133?", "context": "CREATE TABLE table_25355392_2 (march_27_29 VARCHAR, november_3 VARCHAR)"}, {"answer": "SELECT january_15_16 FROM table_25355392_2 WHERE november_3 = \"153\"", "question": "What is january 15-16 when november 3 is 153?", "context": "CREATE TABLE table_25355392_2 (january_15_16 VARCHAR, november_3 VARCHAR)"}, {"answer": "SELECT january_15_16 FROM table_25355501_2 WHERE august_21_22 = \"August 22, 1979\"", "question": " january 15-16 when august 21-22 is august 22, 1979?", "context": "CREATE TABLE table_25355501_2 (january_15_16 VARCHAR, august_21_22 VARCHAR)"}, {"answer": "SELECT COUNT(november_3) FROM table_25355501_2 WHERE january_15_16 = \"141\"", "question": "How many entries are shown for november 3 when january 15-16 is 141?", "context": "CREATE TABLE table_25355501_2 (november_3 VARCHAR, january_15_16 VARCHAR)"}, {"answer": "SELECT march_27_29 FROM table_25355501_2 WHERE june_10_11 = \"127\"", "question": "  march 27-29 where june 10-11 is 127?", "context": "CREATE TABLE table_25355501_2 (march_27_29 VARCHAR, june_10_11 VARCHAR)"}, {"answer": "SELECT june_10_11 FROM table_25355501_2 WHERE november_3 = \"133\"", "question": " june 10-11 when november 3 is 133?", "context": "CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, november_3 VARCHAR)"}, {"answer": "SELECT june_10_11 FROM table_25355501_2 WHERE january_15_16 = \"January 15, 1991\"", "question": " june 10-11 when january 15-16 is january 15, 1991?", "context": "CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, january_15_16 VARCHAR)"}, {"answer": "SELECT november_3 FROM table_25355501_2 WHERE august_21_22 = \"August 22, 1998\"", "question": "What is shown for november 3 when august 21-22 is august 22, 1998?", "context": "CREATE TABLE table_25355501_2 (november_3 VARCHAR, august_21_22 VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_25361570_2 WHERE position_in_table = \"11th\" AND date_of_appointment = \"September 10\"", "question": "Name the number of teams for 11th position september 10", "context": "CREATE TABLE table_25361570_2 (team VARCHAR, position_in_table VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_25361570_2 WHERE date_of_vacancy = \"August 9\" AND date_of_appointment = \"August 9\"", "question": "Name the replaced by for august 9 ", "context": "CREATE TABLE table_25361570_2 (replaced_by VARCHAR, date_of_vacancy VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_25360865_1 WHERE name = \"Charvez Davis\"", "question": "Name the most number for charvez davis", "context": "CREATE TABLE table_25360865_1 (_number INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(weight) FROM table_25360865_1", "question": "Name the most height", "context": "CREATE TABLE table_25360865_1 (weight INTEGER)"}, {"answer": "SELECT COUNT(home_town) FROM table_25360865_1 WHERE _number = 32", "question": "Name the number of home town for number being 32", "context": "CREATE TABLE table_25360865_1 (home_town VARCHAR, _number VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_25360865_1 WHERE _number = 32", "question": "Name the total number of height for number 32", "context": "CREATE TABLE table_25360865_1 (height VARCHAR, _number VARCHAR)"}, {"answer": "SELECT _number FROM table_25360865_1 WHERE last_school = \"Florida Air Academy\"", "question": "Name the number for florida air academy", "context": "CREATE TABLE table_25360865_1 (_number VARCHAR, last_school VARCHAR)"}, {"answer": "SELECT height FROM table_25360865_1 WHERE name = \"Demetrius Jemison\"", "question": "Name the height for demetrius jemison", "context": "CREATE TABLE table_25360865_1 (height VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(won) FROM table_25368177_1 WHERE team = \"Canterbury Wizards\"", "question": "How many wins did Canterbury Wizards have?", "context": "CREATE TABLE table_25368177_1 (won INTEGER, team VARCHAR)"}, {"answer": "SELECT team FROM table_25368177_1 WHERE net_run_rate = \"0.134\"", "question": "What team had a net run rate of 0.134?", "context": "CREATE TABLE table_25368177_1 (team VARCHAR, net_run_rate VARCHAR)"}, {"answer": "SELECT MAX(abandoned) FROM table_25368177_1", "question": "What's the largest number of abandoned games by any of the teams?", "context": "CREATE TABLE table_25368177_1 (abandoned INTEGER)"}, {"answer": "SELECT COUNT(net_run_rate) FROM table_25368177_1 WHERE total_points = 19", "question": "How many different net run rates did the team with 19 total points have?", "context": "CREATE TABLE table_25368177_1 (net_run_rate VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT team FROM table_25369796_1 WHERE points = \"56\"", "question": "What was the team that scored 56 points?Qh", "context": "CREATE TABLE table_25369796_1 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_25369796_1 WHERE position = \"29th\"", "question": "What was the earliest season where a team got a 29th position?", "context": "CREATE TABLE table_25369796_1 (season INTEGER, position VARCHAR)"}, {"answer": "SELECT f_laps FROM table_25369796_1 WHERE team = \"HBR Motorsport\"", "question": "What was the recorded flaps of HBR Motorsport team?", "context": "CREATE TABLE table_25369796_1 (f_laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT series FROM table_25369796_1 WHERE points = \"56\"", "question": "What was the series where a team scored 56 points?", "context": "CREATE TABLE table_25369796_1 (series VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_25369796_1 WHERE points = \"56\"", "question": "How many team position scored 56 points?", "context": "CREATE TABLE table_25369796_1 (position VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_25380472_2 WHERE final_score = \"L 14\u201324\"", "question": "On what dates was the final score of the game L 14\u201324?", "context": "CREATE TABLE table_25380472_2 (date VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT COUNT(game_site) FROM table_25380472_2 WHERE team_record = \"1\u20137\"", "question": "How many game sites are there where the team record is 1\u20137?", "context": "CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)"}, {"answer": "SELECT opponent FROM table_25380472_2 WHERE week = 7", "question": "On week 7, what were the opponents?", "context": "CREATE TABLE table_25380472_2 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT game_site FROM table_25380472_2 WHERE team_record = \"0\u20135\"", "question": "On what game sites are there where the team record is 0\u20135?", "context": "CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)"}, {"answer": "SELECT game_site FROM table_25380472_2 WHERE team_record = \"1\u20136\"", "question": "What game sites are where the team record is 1\u20136?", "context": "CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)"}, {"answer": "SELECT opponent FROM table_25380472_2 WHERE game_site = \"AOL Arena\"", "question": "In game site AOL Arena, who are all the opponents?", "context": "CREATE TABLE table_25380472_2 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT organization FROM table_2538117_12 WHERE founding_date = \"1998-11-08\"", "question": "What organization had the founding date of 1998-11-08? ", "context": "CREATE TABLE table_2538117_12 (organization VARCHAR, founding_date VARCHAR)"}, {"answer": "SELECT COUNT(letters) FROM table_2538117_12 WHERE founding_date = \"1997-12-12\"", "question": "How many letters were given to the organization with a founding date of 1997-12-12? ", "context": "CREATE TABLE table_2538117_12 (letters VARCHAR, founding_date VARCHAR)"}, {"answer": "SELECT COUNT(song_choice) FROM table_25374338_1 WHERE original_artist = \"Gino Paoli\"", "question": "What is the song choice where the original artist is Gino Paoli?", "context": "CREATE TABLE table_25374338_1 (song_choice VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT theme FROM table_25374338_1 WHERE original_artist = \"Noemi feat. Fiorella Mannoia\"", "question": "What is the theme where the original artist is Noemi feat. Fiorella Mannoia?", "context": "CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT song_choice FROM table_25374338_1 WHERE episode = \"Live Show 1\"", "question": "What is the song choice where the episode is Live Show 1?", "context": "CREATE TABLE table_25374338_1 (song_choice VARCHAR, episode VARCHAR)"}, {"answer": "SELECT result FROM table_25374338_1 WHERE original_artist = \"Prince and The Revolution\"", "question": "What is the result where the original artist is Prince and the Revolution?", "context": "CREATE TABLE table_25374338_1 (result VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT theme FROM table_25374338_1 WHERE original_artist = \"AC/DC\"", "question": "What is the theme where the original artist is AC/DC?", "context": "CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT type FROM table_2538117_2 WHERE organization = \"Sigma Phi Omega\"", "question": "what type of organization is sigma phi omega?", "context": "CREATE TABLE table_2538117_2 (type VARCHAR, organization VARCHAR)"}, {"answer": "SELECT COUNT(type) FROM table_2538117_2 WHERE founding_university = \"San Diego State University\"", "question": "how many types of organization were founded in san diego state university? ", "context": "CREATE TABLE table_2538117_2 (type VARCHAR, founding_university VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_25375093_1 WHERE position = \"4th\"", "question": "Name the season for position 4th", "context": "CREATE TABLE table_25375093_1 (season VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(f_laps) FROM table_25375093_1", "question": "Name the least f/laps", "context": "CREATE TABLE table_25375093_1 (f_laps INTEGER)"}, {"answer": "SELECT MIN(podiums) FROM table_25375093_1 WHERE position = \"9th\"", "question": "Name the least podiums for 9th position", "context": "CREATE TABLE table_25375093_1 (podiums INTEGER, position VARCHAR)"}, {"answer": "SELECT COUNT(shot_pct) FROM table_25381437_2 WHERE pa = 79", "question": "How many results are listed for shot PCT Where PA is 79?", "context": "CREATE TABLE table_25381437_2 (shot_pct VARCHAR, pa VARCHAR)"}, {"answer": "SELECT locale FROM table_25381437_2 WHERE stolen_ends = 15", "question": "Where were stolen ends recorded as 15?", "context": "CREATE TABLE table_25381437_2 (locale VARCHAR, stolen_ends VARCHAR)"}, {"answer": "SELECT slno FROM table_25383715_1 WHERE contact_person = \"SDE (P), Thiruppattur\"", "question": "What was the SlNo no of contact person SDE (P), Thiruppattur?", "context": "CREATE TABLE table_25383715_1 (slno VARCHAR, contact_person VARCHAR)"}, {"answer": "SELECT production_code FROM table_25390694_2 WHERE writer = \"Brendan Cowell\"", "question": "What was the production code of the episode written by Brendan Cowell?", "context": "CREATE TABLE table_25390694_2 (production_code VARCHAR, writer VARCHAR)"}, {"answer": "SELECT COUNT(f_laps) FROM table_25386974_1 WHERE position = \"20th\"", "question": "How many f/laps did Pedro Nunes have when he was in 20th position?", "context": "CREATE TABLE table_25386974_1 (f_laps VARCHAR, position VARCHAR)"}, {"answer": "SELECT f_laps FROM table_25386974_1 WHERE series = \"GP3 series\"", "question": "How many f/laps did Pedro Nunes have when he was at the gp3 series?", "context": "CREATE TABLE table_25386974_1 (f_laps VARCHAR, series VARCHAR)"}, {"answer": "SELECT MIN(races) FROM table_25386974_1", "question": "What is the fewest number of races Pedro Nunes completed in any series?", "context": "CREATE TABLE table_25386974_1 (races INTEGER)"}, {"answer": "SELECT MAX(podiums) FROM table_25386974_1 WHERE position = \"17th\"", "question": "What is the most podiums Pedro Nunes had when in 17th position?", "context": "CREATE TABLE table_25386974_1 (podiums INTEGER, position VARCHAR)"}, {"answer": "SELECT founding_university FROM table_2538117_5 WHERE organization = \"Tau Epsilon Phi 1\"", "question": "What was the founding university of the organization Tau Epsilon Phi 1?", "context": "CREATE TABLE table_2538117_5 (founding_university VARCHAR, organization VARCHAR)"}, {"answer": "SELECT type FROM table_2538117_5 WHERE letters = \"\u03a3\u0391\u0395\u03a0\"", "question": "What type is \u03c3\u03b1\u03b5\u03c0?", "context": "CREATE TABLE table_2538117_5 (type VARCHAR, letters VARCHAR)"}, {"answer": "SELECT founding_university FROM table_2538117_5 WHERE letters = \"\u0391\u0395\u03a6\"", "question": "What was the founding university of \u03b1\u03b5\u03c6?", "context": "CREATE TABLE table_2538117_5 (founding_university VARCHAR, letters VARCHAR)"}, {"answer": "SELECT type FROM table_2538117_7 WHERE organization = \"Gamma Rho Lambda 1\"", "question": "What is the type if the organization name is Gamma RHO Lambda 1?", "context": "CREATE TABLE table_2538117_7 (type VARCHAR, organization VARCHAR)"}, {"answer": "SELECT founding_date FROM table_2538117_7 WHERE letters = \"\u03a6\u0391\u039d\"", "question": "If the letters is \u03c6\u03b1\u03bd, what is the founding date?", "context": "CREATE TABLE table_2538117_7 (founding_date VARCHAR, letters VARCHAR)"}, {"answer": "SELECT nickname FROM table_2538117_7 WHERE founding_university = \"Charlotte, NC\"", "question": "If the founding university is in Charlotte, NC, what is the nickname?", "context": "CREATE TABLE table_2538117_7 (nickname VARCHAR, founding_university VARCHAR)"}, {"answer": "SELECT founding_date FROM table_2538117_7 WHERE letters = \"\u039a\u03a8\u039a\"", "question": "What is the founding date if the letters are \u03ba\u03c8\u03ba?", "context": "CREATE TABLE table_2538117_7 (founding_date VARCHAR, letters VARCHAR)"}, {"answer": "SELECT founding_date FROM table_2538117_7 WHERE founding_university = \"Washington, D.C.\"", "question": "If the founding university is in Washington, D.C., what was the founding date?", "context": "CREATE TABLE table_2538117_7 (founding_date VARCHAR, founding_university VARCHAR)"}, {"answer": "SELECT MIN(rank_by_average) FROM table_25391981_3 WHERE average = \"22.8\"", "question": "What is the rank by average for the team who averaged 22.8?", "context": "CREATE TABLE table_25391981_3 (rank_by_average INTEGER, average VARCHAR)"}, {"answer": "SELECT number_of_dances FROM table_25391981_3 WHERE average = \"20.6\"", "question": "What is the number of dances for the team that averages 20.6?", "context": "CREATE TABLE table_25391981_3 (number_of_dances VARCHAR, average VARCHAR)"}, {"answer": "SELECT couple FROM table_25391981_3 WHERE average = \"15.5\"", "question": "What couple averaged 15.5?", "context": "CREATE TABLE table_25391981_3 (couple VARCHAR, average VARCHAR)"}, {"answer": "SELECT italian FROM table_25401_15 WHERE english = \"part\"", "question": "What is every value for Italian when the part is English?", "context": "CREATE TABLE table_25401_15 (italian VARCHAR, english VARCHAR)"}, {"answer": "SELECT proto_italo_western_1 FROM table_25401_15 WHERE english = \"door\"", "question": "What is every entry for Proto-Italo-Western 1 when door is English?", "context": "CREATE TABLE table_25401_15 (proto_italo_western_1 VARCHAR, english VARCHAR)"}, {"answer": "SELECT COUNT(italian) FROM table_25401_15 WHERE conservative_central_italian_1 = \"unu\"", "question": "How many entries for Italian correspond to the Conservative Central Italian of Unu?", "context": "CREATE TABLE table_25401_15 (italian VARCHAR, conservative_central_italian_1 VARCHAR)"}, {"answer": "SELECT latin FROM table_25401_15 WHERE catalan = \"mar\"", "question": "What is every entry for Latin when Catalan is Mar?", "context": "CREATE TABLE table_25401_15 (latin VARCHAR, catalan VARCHAR)"}, {"answer": "SELECT date FROM table_25428629_1 WHERE stadium = \"Thuwunna stadium\"", "question": "If the stadium name is the Thuwunna Stadium, what is the date?", "context": "CREATE TABLE table_25428629_1 (date VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_25428629_1 WHERE location = \"Yangon, Myanmar\"", "question": "If the location is Yangon, Myanmar, what is the opponent total number?", "context": "CREATE TABLE table_25428629_1 (opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(iso_) AS \u2116 FROM table_254234_1 WHERE chinese_name = \"\u9752\u6d77\u7701 Q\u012bngh\u01cei Sh\u011bng\"", "question": "How many provinces are named \u9752\u6d77\u7701 q\u012bngh\u01cei sh\u011bng?", "context": "CREATE TABLE table_254234_1 (iso_ VARCHAR, chinese_name VARCHAR)"}, {"answer": "SELECT MAX(area\u00b3) FROM table_254234_1 WHERE density\u00b2 = \"533.59\"", "question": "What is the area of the province with a density of 533.59?", "context": "CREATE TABLE table_254234_1 (area\u00b3 INTEGER, density\u00b2 VARCHAR)"}, {"answer": "SELECT COUNT(iso_) AS \u2116 FROM table_254234_1 WHERE density\u00b2 = \"165.81\"", "question": "How many provinces have a density of 165.81?", "context": "CREATE TABLE table_254234_1 (iso_ VARCHAR, density\u00b2 VARCHAR)"}, {"answer": "SELECT abbreviation_symbol FROM table_254234_1 WHERE chinese_name = \"\u8fbd\u5b81\u7701 Li\u00e1on\u00edng Sh\u011bng\"", "question": "What is the abbreviation/symbol of \u8fbd\u5b81\u7701 li\u00e1on\u00edng sh\u011bng?", "context": "CREATE TABLE table_254234_1 (abbreviation_symbol VARCHAR, chinese_name VARCHAR)"}, {"answer": "SELECT COUNT(gb) FROM table_254234_1 WHERE iso_\u2116 = \"CN-65\"", "question": "How many gb's have an iso number of cn-65?", "context": "CREATE TABLE table_254234_1 (gb VARCHAR, iso_\u2116 VARCHAR)"}, {"answer": "SELECT chinese_name FROM table_254234_1 WHERE capital = \"Hangzhou\"", "question": "What is the chinese name of the province whose capital is hangzhou?", "context": "CREATE TABLE table_254234_1 (chinese_name VARCHAR, capital VARCHAR)"}, {"answer": "SELECT MIN(races) FROM table_25421463_1", "question": "What is the fewest amount of races in any season? ", "context": "CREATE TABLE table_25421463_1 (races INTEGER)"}, {"answer": "SELECT MIN(races) FROM table_25421463_1 WHERE points = \"38\"", "question": "How many races were there when Sigachev had 38 points?", "context": "CREATE TABLE table_25421463_1 (races INTEGER, points VARCHAR)"}, {"answer": "SELECT team_name FROM table_25421463_1 WHERE points = \"38\"", "question": "What team was Sigachev on when he had 38 points? ", "context": "CREATE TABLE table_25421463_1 (team_name VARCHAR, points VARCHAR)"}, {"answer": "SELECT season FROM table_25421463_1 WHERE final_placing = \"NC\u2020\" AND team_name = \"SL Formula Racing\"", "question": "In what season was the final placing NC\u2020 and the team SL Formula Racing? ", "context": "CREATE TABLE table_25421463_1 (season VARCHAR, final_placing VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT COUNT(distance) FROM table_25429986_1 WHERE position = \"7th\"", "question": "what is distance for the 7th position?", "context": "CREATE TABLE table_25429986_1 (distance VARCHAR, position VARCHAR)"}, {"answer": "SELECT jockey FROM table_25429986_1 WHERE position = \"10th\"", "question": "who isthe jockey in 10th position?", "context": "CREATE TABLE table_25429986_1 (jockey VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_25429986_1 WHERE number = 22", "question": "what position is number 22?", "context": "CREATE TABLE table_25429986_1 (position VARCHAR, number VARCHAR)"}, {"answer": "SELECT horse FROM table_25429986_1 WHERE position = \"6th\"", "question": "what horse is in the 6th position?", "context": "CREATE TABLE table_25429986_1 (horse VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_25429986_1 WHERE handicap = \"10-2\"", "question": "what position has a handicap of 10-2?", "context": "CREATE TABLE table_25429986_1 (position VARCHAR, handicap VARCHAR)"}, {"answer": "SELECT handicap FROM table_25429986_1 WHERE distance = \"9 lengths\"", "question": "what is the handicap where the distance is 9 lengths?", "context": "CREATE TABLE table_25429986_1 (handicap VARCHAR, distance VARCHAR)"}, {"answer": "SELECT indonesia_super_series_2008 FROM table_2544694_3 WHERE 780000 = \"5040.00\"", "question": "Which series occurred when the 7800 was 5040.00?", "context": "CREATE TABLE table_2544694_3 (indonesia_super_series_2008 VARCHAR)"}, {"answer": "SELECT indonesia_super_series_2008 FROM table_2544694_3 WHERE runner_up = \"Semi-Finalist\" AND 780000 = \"6420.00\"", "question": "Which series occurred in which the semi-finalist was runner-up and the 7800.00 was 6420.00?", "context": "CREATE TABLE table_2544694_3 (indonesia_super_series_2008 VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT road FROM table_25438110_5 WHERE county = \"Carson Valley\"", "question": "What road is associated with Carson Valley county?", "context": "CREATE TABLE table_25438110_5 (road VARCHAR, county VARCHAR)"}, {"answer": "SELECT county FROM table_25438110_5 WHERE casinos = 17", "question": "What county has exactly 17 casinos?", "context": "CREATE TABLE table_25438110_5 (county VARCHAR, casinos VARCHAR)"}, {"answer": "SELECT COUNT(casinos) FROM table_25438110_5 WHERE fy09_$millions = \"$279\"", "question": "How many casinos are associated with a FY2009 $mil value of exactly $279?", "context": "CREATE TABLE table_25438110_5 (casinos VARCHAR, fy09_$millions VARCHAR)"}, {"answer": "SELECT fy08_$millions FROM table_25438110_5 WHERE fy07_$millions = \"$120\"", "question": "What is the FY2008 $mil value associated with a FY2007 $mil value of exactly $120?", "context": "CREATE TABLE table_25438110_5 (fy08_$millions VARCHAR, fy07_$millions VARCHAR)"}, {"answer": "SELECT country FROM table_25461827_2 WHERE contestant = \"Danissa Zurek\"", "question": "What country was Danissa Zurek from?", "context": "CREATE TABLE table_25461827_2 (country VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT MIN(height__cm_) FROM table_25461827_2 WHERE country = \"Honduras\"", "question": "What is the smallest height associated with Honduras?", "context": "CREATE TABLE table_25461827_2 (height__cm_ INTEGER, country VARCHAR)"}, {"answer": "SELECT height__ft_ FROM table_25461827_2 WHERE country = \"Paraguay\"", "question": "What is the height associated with Paraguay?", "context": "CREATE TABLE table_25461827_2 (height__ft_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(contestant) FROM table_25461827_2 WHERE age = 18", "question": "What is the number of contestants who are aged exactly 18?", "context": "CREATE TABLE table_25461827_2 (contestant VARCHAR, age VARCHAR)"}, {"answer": "SELECT high_points FROM table_25461946_5 WHERE date = \"November 17\"", "question": "Who scored the most points on November 17?", "context": "CREATE TABLE table_25461946_5 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_25461946_5 WHERE team = \"Virginia Tech\"", "question": "What was the final score when the Temple Owls beat Virginia Tech?", "context": "CREATE TABLE table_25461946_5 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_25461946_5 WHERE date = \"November 27\"", "question": "How many games were played on november 27?", "context": "CREATE TABLE table_25461946_5 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT pole_position FROM table_25459168_2 WHERE supporting = \"USAC National Midget Series\"", "question": "Who got the pole position if the supporting is USAC National Midget Series?", "context": "CREATE TABLE table_25459168_2 (pole_position VARCHAR, supporting VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_25459168_2 WHERE pole_position = \"Anders Krohn\"", "question": "Who won the fastest lap if Anders Krohn won the pole position?", "context": "CREATE TABLE table_25459168_2 (fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_25459168_2 WHERE fastest_lap = \"Jo\u00e3o Victor Horto\"", "question": "How many rounds did Jo\u00e3o Victor Horto achieved the fastest lap?", "context": "CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT circuit FROM table_25459168_2 WHERE date = \"August 21\"", "question": "What circuit was used on August 21?", "context": "CREATE TABLE table_25459168_2 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_25459168_2 WHERE fastest_lap = \"Alex Ardoin\"", "question": "How many rounds did Alex Ardoin achieved a fastest lap?", "context": "CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT design FROM table_25468520_1 WHERE quantity = \"5,000,000\"", "question": "What is the design when quantity is 5,000,000?", "context": "CREATE TABLE table_25468520_1 (design VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT COUNT(printing_process) FROM table_25468520_1 WHERE theme = \"Rotary International : 100 Years in Canada\"", "question": "How many time is the theme rotary international : 100 years in canada?", "context": "CREATE TABLE table_25468520_1 (printing_process VARCHAR, theme VARCHAR)"}, {"answer": "SELECT paper_type FROM table_25468520_1 WHERE date_of_issue = \"July 8\"", "question": "What is the paper type for the date of issue July 8?", "context": "CREATE TABLE table_25468520_1 (paper_type VARCHAR, date_of_issue VARCHAR)"}, {"answer": "SELECT theme FROM table_25468520_1 WHERE printing_process = \"Litho in 3 cols and intaglio\"", "question": "What is the theme when the printing process is litho in 3 cols and intaglio?", "context": "CREATE TABLE table_25468520_1 (theme VARCHAR, printing_process VARCHAR)"}, {"answer": "SELECT COUNT(quantity) FROM table_25468520_1 WHERE theme = \"Roadside Attractions: Wawa Goose\"", "question": "How many times is the theme roadside attractions: wawa goose?", "context": "CREATE TABLE table_25468520_1 (quantity VARCHAR, theme VARCHAR)"}, {"answer": "SELECT theme FROM table_25468520_1 WHERE date_of_issue = \"11 January 2010\"", "question": "What is the theme when the date of issue is 11 january 2010?", "context": "CREATE TABLE table_25468520_1 (theme VARCHAR, date_of_issue VARCHAR)"}, {"answer": "SELECT date FROM table_25461946_8 WHERE team = \"Dayton\"", "question": "When did they play Dayton?", "context": "CREATE TABLE table_25461946_8 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT platform FROM table_25474825_1 WHERE software = \"GeWorkbench\"", "question": "What is the platform of Geworkbench?", "context": "CREATE TABLE table_25474825_1 (platform VARCHAR, software VARCHAR)"}, {"answer": "SELECT description FROM table_25474825_1 WHERE license = \"GNU GPL v2 or Ruby license\"", "question": "What is the description of the license for GNU GPL v2 or Ruby license?", "context": "CREATE TABLE table_25474825_1 (description VARCHAR, license VARCHAR)"}, {"answer": "SELECT license FROM table_25474825_1 WHERE description = \"Tool for designing and executing workflows\"", "question": "What is the license that is described as a tool for designing and executing workflows?", "context": "CREATE TABLE table_25474825_1 (license VARCHAR, description VARCHAR)"}, {"answer": "SELECT description FROM table_25474825_1 WHERE software = \"IntAct\"", "question": "What is the description of the intact software?", "context": "CREATE TABLE table_25474825_1 (description VARCHAR, software VARCHAR)"}, {"answer": "SELECT user FROM table_25479607_3 WHERE max_demand_charge___rs__kva_ = \"1,100\" AND unit__kwh__time_range = \"H-2: Off-peak (22:30-05:30)\"", "question": "What user had a max demand charge of 1,100 and a unit/time range of h-2: off-peak (22:30-05:30)?", "context": "CREATE TABLE table_25479607_3 (user VARCHAR, max_demand_charge___rs__kva_ VARCHAR, unit__kwh__time_range VARCHAR)"}, {"answer": "SELECT fixed_charge___rs__kwh_ FROM table_25479607_3 WHERE tariff___rs__kwh_ = \"11.30\"", "question": "What is the fixed charge for the user who had a tariff of 11.30?", "context": "CREATE TABLE table_25479607_3 (fixed_charge___rs__kwh_ VARCHAR, tariff___rs__kwh_ VARCHAR)"}, {"answer": "SELECT fixed_charge___rs__kwh_ FROM table_25479607_3 WHERE unit__kwh__time_range = \"I-2: Peak (18:30-22:30)\"", "question": "What is the fixed charge for the user with a unit/time range of i-2: peak (18:30-22:30)?", "context": "CREATE TABLE table_25479607_3 (fixed_charge___rs__kwh_ VARCHAR, unit__kwh__time_range VARCHAR)"}, {"answer": "SELECT max_demand_charge___rs__kva_ FROM table_25479607_3 WHERE tariff___rs__kwh_ = \"8.85\"", "question": "What was the max demand charge for the user with a tariff of 8.85?", "context": "CREATE TABLE table_25479607_3 (max_demand_charge___rs__kva_ VARCHAR, tariff___rs__kwh_ VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_25518547_2 WHERE affiliation = \"University of California NorCal Lamorinda United\"", "question": "How many picks are there with an affiliation is the University of California Norcal Lamorinda United?", "context": "CREATE TABLE table_25518547_2 (pick__number VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT mls_team FROM table_25518547_2 WHERE player = \"Seth Sinovic\"", "question": "What team does Seth Sinovic play for?", "context": "CREATE TABLE table_25518547_2 (mls_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_25518547_2 WHERE affiliation = \"University of Maryland\"", "question": "How many players have an affiliation with University of Maryland?", "context": "CREATE TABLE table_25518547_2 (player VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT round FROM table_25505246_8 WHERE against = \"South Africa\"", "question": "in what round types did the opponent come from south africa?", "context": "CREATE TABLE table_25505246_8 (round VARCHAR, against VARCHAR)"}, {"answer": "SELECT outcome FROM table_25505246_8 WHERE partner = \"Caroline Wozniacki\"", "question": "How did the match end when she played with caroline wozniacki?", "context": "CREATE TABLE table_25505246_8 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_255188_1 WHERE joined = 1978", "question": "When was the University founded that joined in 1978?", "context": "CREATE TABLE table_255188_1 (founded INTEGER, joined VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_255188_1 WHERE institution = \"Piedmont College\"", "question": "When was Piedmont College founded?", "context": "CREATE TABLE table_255188_1 (founded INTEGER, institution VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_255188_1 WHERE nickname = \"Avenging Angels\"", "question": "When were the Avenging Angels founded?", "context": "CREATE TABLE table_255188_1 (founded INTEGER, nickname VARCHAR)"}, {"answer": "SELECT institution FROM table_255188_1 WHERE joined = 1988", "question": "What institution joined in 1988?", "context": "CREATE TABLE table_255188_1 (institution VARCHAR, joined VARCHAR)"}, {"answer": "SELECT location FROM table_255188_3 WHERE nickname = \"49ers\"", "question": "What location is nicknamed the 49ers?", "context": "CREATE TABLE table_255188_3 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT location FROM table_255188_3 WHERE institution = \"University of North Carolina at Greensboro\"", "question": "Where is the University of North Carolina at Greensboro located?", "context": "CREATE TABLE table_255188_3 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT hypotenuse_0_c FROM table_25519358_1 WHERE vertices = \"\u6708\u5c71\u6cdb \u0394YMF\"", "question": "Name the hypotenuse for vertices \u6708\u5c71\u6cdb \u03b4ymf", "context": "CREATE TABLE table_25519358_1 (hypotenuse_0_c VARCHAR, vertices VARCHAR)"}, {"answer": "SELECT vertical_0_b FROM table_25519358_1 WHERE name = \"\u8fb9 BIAN\"", "question": "Name the vertical  for \u8fb9 bian", "context": "CREATE TABLE table_25519358_1 (vertical_0_b VARCHAR, name VARCHAR)"}, {"answer": "SELECT horizontal_0_a FROM table_25519358_1 WHERE name = \"\u901a TONG\"", "question": "Name the horizontal 0 for \u901a tong", "context": "CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, name VARCHAR)"}, {"answer": "SELECT horizontal_0_a FROM table_25519358_1 WHERE hypotenuse_0_c = \"\u660e\u5f26\uff08RY\u65e5\u6708\uff09\"", "question": "Name the horizontal 0 for  \u660e\u5f26\uff08ry\u65e5\u6708\uff09", "context": "CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, hypotenuse_0_c VARCHAR)"}, {"answer": "SELECT vertical_0_b FROM table_25519358_1 WHERE horizontal_0_a = \"\u660e\u52fe\uff08YS\u6708\u5357\uff09\"", "question": "Name the vertical for \u660e\u52fe\uff08ys\u6708\u5357\uff09", "context": "CREATE TABLE table_25519358_1 (vertical_0_b VARCHAR, horizontal_0_a VARCHAR)"}, {"answer": "SELECT COUNT(horizontal_0_a) FROM table_25519358_1 WHERE number = 10", "question": "Name the horizontal number for number 10", "context": "CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, number VARCHAR)"}, {"answer": "SELECT COUNT(mls_team) FROM table_25518547_3 WHERE affiliation = \"University of Maryland\"", "question": "How many teams drafted players from the University of Maryland?", "context": "CREATE TABLE table_25518547_3 (mls_team VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT mls_team FROM table_25518547_3 WHERE player = \"Samuel Appiah\"", "question": "What MLS team drafted samuel appiah?", "context": "CREATE TABLE table_25518547_3 (mls_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_25518547_3 WHERE mls_team = \"Philadelphia Union\"", "question": "What player was drafted by the philadelphia union?", "context": "CREATE TABLE table_25518547_3 (player VARCHAR, mls_team VARCHAR)"}, {"answer": "SELECT founded FROM table_255205_1 WHERE nickname = \"Fightin' Engineers\"", "question": "This institution nicknamed Fightin' engineers was founded on what year?", "context": "CREATE TABLE table_255205_1 (founded VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT COUNT(joined) FROM table_255205_1 WHERE location = \"Franklin, Indiana\"", "question": "How many inputs joined this institution located in Franklin, Indiana?", "context": "CREATE TABLE table_255205_1 (joined VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_255205_1 WHERE nickname = \"Beavers\"", "question": "How many times this institution was founded that was nicknamed Beavers?", "context": "CREATE TABLE table_255205_1 (founded VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT joined FROM table_255205_1 WHERE type = \"Private/Church of God\"", "question": "How many joined this Private/Church of God institution?", "context": "CREATE TABLE table_255205_1 (joined VARCHAR, type VARCHAR)"}, {"answer": "SELECT joined FROM table_255205_1 WHERE institution = \"Manchester University\"", "question": "How many joined Manchester University?", "context": "CREATE TABLE table_255205_1 (joined VARCHAR, institution VARCHAR)"}, {"answer": "SELECT circuit FROM table_25531112_2 WHERE event = \"Clipsal 500\"", "question": "What circuit was the Clipsal 500 on?", "context": "CREATE TABLE table_25531112_2 (circuit VARCHAR, event VARCHAR)"}, {"answer": "SELECT challenge FROM table_25531112_2 WHERE circuit = \"Albert Park Grand Prix circuit\"", "question": "Who made the challenge on the Albert Park Grand Prix Circuit?", "context": "CREATE TABLE table_25531112_2 (challenge VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT rd FROM table_25531112_2 WHERE circuit = \"Eastern Creek Raceway\"", "question": "In what round was the circuit Eastern Creek Raceway?", "context": "CREATE TABLE table_25531112_2 (rd VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT challenge FROM table_25531112_2 WHERE event = \"Australian Grand Prix\"", "question": "Who made the challenge in the Australian Grand Prix?", "context": "CREATE TABLE table_25531112_2 (challenge VARCHAR, event VARCHAR)"}, {"answer": "SELECT shirt_sponsor FROM table_25527255_2 WHERE average_squad_age = \"25.46\"", "question": "Who is the shirt sponsor of the team with an average squad age of 25.46?", "context": "CREATE TABLE table_25527255_2 (shirt_sponsor VARCHAR, average_squad_age VARCHAR)"}, {"answer": "SELECT shirt_sponsor FROM table_25527255_2 WHERE team = \"FC Bunyodkor\"", "question": "Who is the shirt sponsor for FC Bunyodkor?", "context": "CREATE TABLE table_25527255_2 (shirt_sponsor VARCHAR, team VARCHAR)"}, {"answer": "SELECT average_squad_age FROM table_25527255_2 WHERE shirt_sponsor = \"Sho'rtan Gaz Mahsulot\" AND kit_manufacturer = \"Adidas\"", "question": "What is the average squad age of the team whose shirt sponsor is Sho'rtan Gaz Mahsulot and whose kit manufacturer is Adidas? ", "context": "CREATE TABLE table_25527255_2 (average_squad_age VARCHAR, shirt_sponsor VARCHAR, kit_manufacturer VARCHAR)"}, {"answer": "SELECT captain FROM table_25527255_2 WHERE kit_manufacturer = \"Nike\"", "question": "Who is the captain of the team whose kit manufacturer is Nike? ", "context": "CREATE TABLE table_25527255_2 (captain VARCHAR, kit_manufacturer VARCHAR)"}, {"answer": "SELECT manager FROM table_25527255_2 WHERE team = \"FK Andijan\"", "question": "Who is the manager of FK Andijan? ", "context": "CREATE TABLE table_25527255_2 (manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_2553861_1 WHERE open_cup = \"Did not qualify\" AND playoffs = \"National Final\"", "question": "Name the year for open cup did not qualify and national final", "context": "CREATE TABLE table_2553861_1 (year VARCHAR, open_cup VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT league FROM table_2553861_1 WHERE year = 2000", "question": "Name the league for 2000", "context": "CREATE TABLE table_2553861_1 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_2553861_1 WHERE playoffs = \"Conference Finals\"", "question": "Name the league for conference finals", "context": "CREATE TABLE table_2553861_1 (league VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25547943_1 WHERE written_by = \"Bill Lawrence\"", "question": "Who directed the episode that was written by Bill Lawrence? ", "context": "CREATE TABLE table_25547943_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT series AS result FROM table_2554479_2 WHERE season = \"1998\"", "question": "Name the series result for season being 1998", "context": "CREATE TABLE table_2554479_2 (series VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(tests_won_by_australia) FROM table_2554479_2 WHERE series = 10", "question": "Name the total number of tests won by australia for series 10", "context": "CREATE TABLE table_2554479_2 (tests_won_by_australia VARCHAR, series VARCHAR)"}, {"answer": "SELECT COUNT(winner) FROM table_25551880_2 WHERE mountains_classification = \"not awarded\"", "question": "How many winners were there when the mountains classification was not awarded? ", "context": "CREATE TABLE table_25551880_2 (winner VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_25551880_2 WHERE winner = \"Mikel Nieve\"", "question": "Who was awarded mountains classifications when Mikel Nieve was the winner? ", "context": "CREATE TABLE table_25551880_2 (mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_25551880_2 WHERE winner = \"Alessandro Petacchi\"", "question": "Who was awarded mountains classification when Alessandro petacchi won? ", "context": "CREATE TABLE table_25551880_2 (mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_25548213_1 WHERE directed_by = \"Linda Mendoza\"", "question": "List the number of episodes directed by linda mendoza.", "context": "CREATE TABLE table_25548213_1 (production_code VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_25548213_1 WHERE written_by = \"Kevin Biegel & Aseem Batra\"", "question": "How many million viewers watch the episode that kevin biegel & aseem batra wrote?", "context": "CREATE TABLE table_25548213_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_25548213_1 WHERE us_viewers__million_ = \"5.31\"", "question": "What is the series number that had 5.31 million viewers?", "context": "CREATE TABLE table_25548213_1 (series__number INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_25548213_1 WHERE directed_by = \"Bill Lawrence\"", "question": "What was the name of the episode that bill lawrence directed?", "context": "CREATE TABLE table_25548213_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_25548213_1 WHERE us_viewers__million_ = \"4.65\"", "question": "What was the name of the episode that had 4.65 million viewers?", "context": "CREATE TABLE table_25548213_1 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_25548505_1 WHERE directed_by = \"Michael McDonald\"", "question": "What is the production code of the episode directed by Michael McDonald?", "context": "CREATE TABLE table_25548505_1 (production_code VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_25548505_1 WHERE us_viewers__millions_ = \"5.30\"", "question": "What was the original air date of the episode that had 5.30 million U.S. viewers? ", "context": "CREATE TABLE table_25548505_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_25548505_1 WHERE directed_by = \"Linda Mendoza\"", "question": "What is the title of the episode directed by Linda Mendoza?", "context": "CREATE TABLE table_25548505_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT type FROM table_255602_1 WHERE area__km\u00b2_ = \"155.77\"", "question": "What are all the political types where area is 155.77?", "context": "CREATE TABLE table_255602_1 (type VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT MIN(no_of_barangays) FROM table_255602_1 WHERE type = \"Component City\"", "question": "What is the minimum number of barangays where the type is component city?", "context": "CREATE TABLE table_255602_1 (no_of_barangays INTEGER, type VARCHAR)"}, {"answer": "SELECT city__municipality FROM table_255602_1 WHERE area__km\u00b2_ = \"176.40\"", "question": "What city/municipality has area of 176.40?", "context": "CREATE TABLE table_255602_1 (city__municipality VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_255602_1 WHERE population__2010_ = 38062", "question": "What is the area where population in 2010 is 38062?", "context": "CREATE TABLE table_255602_1 (area__km\u00b2_ VARCHAR, population__2010_ VARCHAR)"}, {"answer": "SELECT COUNT(pop_density__per_km\u00b2_) FROM table_255602_1 WHERE area__km\u00b2_ = \"48.67\"", "question": "What is the population density where area is 48.67?", "context": "CREATE TABLE table_255602_1 (pop_density__per_km\u00b2_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT couple FROM table_25557556_5 WHERE average = \"21.0\"", "question": "What couple averaged 21.0?", "context": "CREATE TABLE table_25557556_5 (couple VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(number_of_dances) FROM table_25557556_5 WHERE competition_finish = 3", "question": "What was the number of dances for the competition finish of 3?", "context": "CREATE TABLE table_25557556_5 (number_of_dances INTEGER, competition_finish VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_25557880_1", "question": "What was his minimum number wins in a single year?", "context": "CREATE TABLE table_25557880_1 (wins INTEGER)"}, {"answer": "SELECT series FROM table_25557880_1 WHERE position = \"NC\u2020\"", "question": "In which series was his position NC\u2020 ?", "context": "CREATE TABLE table_25557880_1 (series VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_25557880_1 WHERE points = \"38\"", "question": "What was his position when he garnered 38 points?", "context": "CREATE TABLE table_25557880_1 (position VARCHAR, points VARCHAR)"}, {"answer": "SELECT sail_number FROM table_25561560_3 WHERE yacht = \"Two True\"", "question": "What was the sail number of Two True?", "context": "CREATE TABLE table_25561560_3 (sail_number VARCHAR, yacht VARCHAR)"}, {"answer": "SELECT yacht FROM table_25561560_3 WHERE skipper = \"Andrew Saies\"", "question": "What yacht did Andrew Saies sail on?", "context": "CREATE TABLE table_25561560_3 (yacht VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT position FROM table_25561560_2 WHERE skipper = \"Mark Richards\"", "question": "In what position did skipper Mark Richards place? ", "context": "CREATE TABLE table_25561560_2 (position VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT yacht AS type FROM table_25561560_2 WHERE yacht = \"ICAP Leopard\"", "question": "What is the yacht type of Icap Leopard? ", "context": "CREATE TABLE table_25561560_2 (yacht VARCHAR)"}, {"answer": "SELECT skipper FROM table_25561560_2 WHERE sail_number = \"AUS60000\"", "question": "what skipper has the sail number aus60000? ", "context": "CREATE TABLE table_25561560_2 (skipper VARCHAR, sail_number VARCHAR)"}, {"answer": "SELECT aggressive_rider FROM table_25580292_13 WHERE winner = \"Luis Le\u00f3n S\u00e1nchez\"", "question": "Who was the aggressive rider when the winner was luis le\u00f3n s\u00e1nchez?", "context": "CREATE TABLE table_25580292_13 (aggressive_rider VARCHAR, winner VARCHAR)"}, {"answer": "SELECT aggressive_rider FROM table_25580292_13 WHERE sprint_classification = \"Andr\u00e9 Greipel\" AND mountains_classification = \"Timothy Roe\"", "question": "Who was the aggressive rider when the sprint classification was  andr\u00e9 greipel and mountains classification was timothy roe?", "context": "CREATE TABLE table_25580292_13 (aggressive_rider VARCHAR, sprint_classification VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT stage FROM table_25580292_13 WHERE winner = \"Luis Le\u00f3n S\u00e1nchez\"", "question": "What was the stage when the winner was luis le\u00f3n s\u00e1nchez?", "context": "CREATE TABLE table_25580292_13 (stage VARCHAR, winner VARCHAR)"}, {"answer": "SELECT young_rider_classification FROM table_25580292_13 WHERE winner = \"Manuel Cardoso\"", "question": "What was the young rider classification when manuel cardoso was the winner?", "context": "CREATE TABLE table_25580292_13 (young_rider_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(winner) FROM table_25580292_13 WHERE stage = 5", "question": "How many winners were there for stage 5?", "context": "CREATE TABLE table_25580292_13 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT COUNT(population__2007_) FROM table_255829_1 WHERE municipality = \"Gigmoto\"", "question": "What is the 2007 population of Gigmoto?", "context": "CREATE TABLE table_255829_1 (population__2007_ VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT population__2010_ FROM table_255829_1 WHERE no_of_barangays = 31", "question": "What is the 2010 population of the municipality with 31 barangays?", "context": "CREATE TABLE table_255829_1 (population__2010_ VARCHAR, no_of_barangays VARCHAR)"}, {"answer": "SELECT pop_density__per_km_2__ FROM table_255829_1 WHERE municipality = \"Caramoran\"", "question": "What is the population density of Caramoran?", "context": "CREATE TABLE table_255829_1 (pop_density__per_km_2__ VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT municipality FROM table_255829_1 WHERE pop_density__per_km_2__ = \"130.6\"", "question": "What municipality has a 130.6 pupulation density?", "context": "CREATE TABLE table_255829_1 (municipality VARCHAR, pop_density__per_km_2__ VARCHAR)"}, {"answer": "SELECT no_of_s_barangay FROM table_255885_1 WHERE municipality = \"Paracale\"", "question": "What is the number of S Barangay for Paracale?", "context": "CREATE TABLE table_255885_1 (no_of_s_barangay VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT municipality FROM table_255885_1 WHERE area__km\u00b2_ = \"199.35\"", "question": "What is the municipality that has an area of exactly 199.35 sq. km?", "context": "CREATE TABLE table_255885_1 (municipality VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT municipality FROM table_255885_1 WHERE area__km\u00b2_ = \"214.44\"", "question": "What is the municipality that has an area of exactly 214.44 sq. km?", "context": "CREATE TABLE table_255885_1 (municipality VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT winning_team FROM table_25572118_1 WHERE series = \"FR2.0 9\"", "question": "When fr2.0 9 is the series who is the winning team?", "context": "CREATE TABLE table_25572118_1 (winning_team VARCHAR, series VARCHAR)"}, {"answer": "SELECT date FROM table_25572118_1 WHERE winning_driver = \"Fairuz Fauzy\"", "question": "When fairuz fauzy is the winning driver what is the date?", "context": "CREATE TABLE table_25572118_1 (date VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT date FROM table_25572118_1 WHERE series = \"EMT 9\"", "question": "When emt 9 is the series what is the date?", "context": "CREATE TABLE table_25572118_1 (date VARCHAR, series VARCHAR)"}, {"answer": "SELECT state_country FROM table_25594271_1 WHERE race_number = \"36\"", "question": "what are all the state/nation where the race number is 36", "context": "CREATE TABLE table_25594271_1 (state_country VARCHAR, race_number VARCHAR)"}, {"answer": "SELECT state_country FROM table_25594888_1 WHERE skipper = \"Sean Langman\"", "question": "What State/Country is Sean Langman the skipper?", "context": "CREATE TABLE table_25594888_1 (state_country VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT yacht AS type FROM table_25594888_1 WHERE skipper = \"Bob Oatley\"", "question": "What yacht type is involved where Bob Oatley is the skipper?", "context": "CREATE TABLE table_25594888_1 (yacht VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT COUNT(race_number) FROM table_25594888_1 WHERE yacht = \"Loki\"", "question": "How many races was Loki in?", "context": "CREATE TABLE table_25594888_1 (race_number VARCHAR, yacht VARCHAR)"}, {"answer": "SELECT loa__metres_ FROM table_25595107_1 WHERE skipper = \"Jez Fanstone\"", "question": "What were the LOA (metres) for the yacht where the skipper was Jez Fanstone?", "context": "CREATE TABLE table_25595107_1 (loa__metres_ VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT state_country FROM table_25595107_1 WHERE loa__metres_ = \"15.79\"", "question": "What state/country was the yacht from that had 15.79 LOA (metres)? ", "context": "CREATE TABLE table_25595107_1 (state_country VARCHAR, loa__metres_ VARCHAR)"}, {"answer": "SELECT sail_number FROM table_25595209_1 WHERE skipper = \"Matt Allen\"", "question": "What is Matt Allen's sail number?", "context": "CREATE TABLE table_25595209_1 (sail_number VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT loa__metres_ FROM table_25595209_1 WHERE yacht = \"Brindabella\"", "question": "What is the LOA of Brindabella?", "context": "CREATE TABLE table_25595209_1 (loa__metres_ VARCHAR, yacht VARCHAR)"}, {"answer": "SELECT state_country FROM table_25595209_1 WHERE loa__metres_ = \"19.50\"", "question": "What the is the state that the boat is from with LOA of 19.50?", "context": "CREATE TABLE table_25595209_1 (state_country VARCHAR, loa__metres_ VARCHAR)"}, {"answer": "SELECT COUNT(state_country) FROM table_25595209_1 WHERE skipper = \"Grant Wharington\"", "question": "How many states is Grant Wharington from?", "context": "CREATE TABLE table_25595209_1 (state_country VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT COUNT(current_status) FROM table_25597136_1 WHERE date_first_lit = \"1853\"", "question": "The date first lit is 1853 total number of current status.", "context": "CREATE TABLE table_25597136_1 (current_status VARCHAR, date_first_lit VARCHAR)"}, {"answer": "SELECT focal_plane_in_ft__m_ FROM table_25597136_1 WHERE location = \"Naidi Hills, Basco\"", "question": "Location for focal plane in ft (m) is naidi hills, basco.", "context": "CREATE TABLE table_25597136_1 (focal_plane_in_ft__m_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT date_first_lit FROM table_25597136_1 WHERE focal_plane_in_ft__m_ = \"43ft (13.1m)\"", "question": "Focal plane in ft (m) is 43ft (13.1m) is the first date lit.", "context": "CREATE TABLE table_25597136_1 (date_first_lit VARCHAR, focal_plane_in_ft__m_ VARCHAR)"}, {"answer": "SELECT province_city FROM table_25597136_1 WHERE lighthouse = \"Corregidor Island (2)\"", "question": "The province/city corregidor island (2) is where the lighthouse is located. ", "context": "CREATE TABLE table_25597136_1 (province_city VARCHAR, lighthouse VARCHAR)"}, {"answer": "SELECT focal_plane_in_ft__m_ FROM table_25597136_1 WHERE tower_height_in_ft__m_ = \"46ft (14.0m)\"", "question": "Where tower height in ft (m) is 46ft (14.0m) the focal plane is ft (m).", "context": "CREATE TABLE table_25597136_1 (focal_plane_in_ft__m_ VARCHAR, tower_height_in_ft__m_ VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_25604014_6 WHERE directed_by = \"Win Phelps\" AND no_in_season = 11", "question": "What are the number in series of the pieces directed by Win Phelps and which number in season is 11?", "context": "CREATE TABLE table_25604014_6 (no_in_series VARCHAR, directed_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT title FROM table_25604014_6 WHERE no_in_season = 2", "question": "What are the titles of the pieces that are number 2 in season?", "context": "CREATE TABLE table_25604014_6 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT production_code FROM table_25604014_4 WHERE directed_by = \"Sam Weisman\"", "question": "What is the production code for the episode directed by Sam weisman?", "context": "CREATE TABLE table_25604014_4 (production_code VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_25604014_5 WHERE no_in_series = 81", "question": "Who wrote episode number 81 in the series?", "context": "CREATE TABLE table_25604014_5 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_25604014_5 WHERE directed_by = \"David Carson\"", "question": "How many episodes directed by david carson?", "context": "CREATE TABLE table_25604014_5 (no_in_season VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25604014_5 WHERE production_code = \"7D03\"", "question": "Who direcred the episode with production code 7d03?", "context": "CREATE TABLE table_25604014_5 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT settlement FROM table_2562572_19 WHERE population__2011_ = 1114", "question": "In what settlement is the population 1114?", "context": "CREATE TABLE table_2562572_19 (settlement VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT type FROM table_2562572_19 WHERE settlement = \"Lok\"", "question": "What type is the settlement of Lok? ", "context": "CREATE TABLE table_2562572_19 (type VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_2562572_12 WHERE settlement = \"Mladenovo\"", "question": "How many populations are listed for mladenovo? ", "context": "CREATE TABLE table_2562572_12 (population__2011_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_12 WHERE population__2011_ = 4831", "question": "What is the dominate religion in the location with a population of 4831? ", "context": "CREATE TABLE table_2562572_12 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT type FROM table_2562113_1 WHERE institution = \"San Diego Christian College\"", "question": "What type of institution is San Diego Christian college? ", "context": "CREATE TABLE table_2562113_1 (type VARCHAR, institution VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_2562113_1 WHERE nickname = \"Hawks\"", "question": "What is the enrollment for the hawks? ", "context": "CREATE TABLE table_2562113_1 (enrollment INTEGER, nickname VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_2562113_1 WHERE joined = 1987", "question": "What is the enrollment for the institution that joined in 1987? ", "context": "CREATE TABLE table_2562113_1 (enrollment INTEGER, joined VARCHAR)"}, {"answer": "SELECT location FROM table_2562113_1 WHERE nickname = \"Lions\"", "question": "What is the location of the institution nicknamed Lions? ", "context": "CREATE TABLE table_2562113_1 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_2562572_2 WHERE cyrillic_name = \"\u0424\u0443\u0442\u043e\u0433\"", "question": "How many 2011 populations have a Cyrillic name of \u0444\u0443\u0442\u043e\u0433?", "context": "CREATE TABLE table_2562572_2 (population__2011_ VARCHAR, cyrillic_name VARCHAR)"}, {"answer": "SELECT COUNT(population__2002_) FROM table_2562572_2 WHERE population__2011_ = 5399", "question": "What is the number of 2002 populations having a 2011 population of exactly 5399?", "context": "CREATE TABLE table_2562572_2 (population__2002_ VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT COUNT(population__1991_) FROM table_2562572_2 WHERE city___municipality = \"Be\u010dej\"", "question": "What is the number of 1991 populations named Be\u010dej?", "context": "CREATE TABLE table_2562572_2 (population__1991_ VARCHAR, city___municipality VARCHAR)"}, {"answer": "SELECT population__1991_ FROM table_2562572_2 WHERE urban_settlement = \"Ba\u010dki Jarak\"", "question": "What is the 1991 population for the urban settlement named Ba\u010dki Jarak?", "context": "CREATE TABLE table_2562572_2 (population__1991_ VARCHAR, urban_settlement VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_2562572_2 WHERE population__2002_ = 29449", "question": "What is the number of 2011 populations having a 2002 population of 29449?", "context": "CREATE TABLE table_2562572_2 (population__2011_ VARCHAR, population__2002_ VARCHAR)"}, {"answer": "SELECT COUNT(city___municipality) FROM table_2562572_2 WHERE urban_settlement = \"Srbobran\"", "question": "What is the number of cities/municipalities having an urban settlement of Srbobran?", "context": "CREATE TABLE table_2562572_2 (city___municipality VARCHAR, urban_settlement VARCHAR)"}, {"answer": "SELECT settlement FROM table_2562572_25 WHERE type = \"town\"", "question": "When town is the type what is the settlement?", "context": "CREATE TABLE table_2562572_25 (settlement VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_2562572_25 WHERE cyrillic_name_other_names = \"\u041e\u045f\u0430\u0446\u0438\"", "question": "When \u043e\u045f\u0430\u0446\u0438 is the cyrillic name other names what is the type?", "context": "CREATE TABLE table_2562572_25 (type VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_25 WHERE settlement = \"Ratkovo\"", "question": "When ratkovo is the settlement what is the cyrllic name other names?", "context": "CREATE TABLE table_2562572_25 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT settlement FROM table_2562572_25 WHERE dominant_religion__2002_ = \"Orthodox Christianity\" AND type = \"village\" AND cyrillic_name_other_names = \"\u0420\u0430\u0442\u043a\u043e\u0432\u043e\"", "question": "When  \u0440\u0430\u0442\u043a\u043e\u0432\u043e is cyrillic name other names and village is the type and orthodox Christianity is the dominant religion of  2002 what is the settlement? ", "context": "CREATE TABLE table_2562572_25 (settlement VARCHAR, cyrillic_name_other_names VARCHAR, dominant_religion__2002_ VARCHAR, type VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_25 WHERE cyrillic_name_other_names = \"\u0414\u0435\u0440\u043e\u045a\u0435\"", "question": "When \u0434\u0435\u0440\u043e\u045a\u0435 is the cyrillic name other names what is the largest ethnic group of 2002?", "context": "CREATE TABLE table_2562572_25 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_27 WHERE settlement = \"Gunaro\u0161\"", "question": "What are the largest ethnic groups in gunaro\u0161?", "context": "CREATE TABLE table_2562572_27 (largest_ethnic_group__2002_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_27 WHERE cyrillic_name_other_names = \"\u041f\u0430\u0447\u0438\u0440 (Hungarian: Pacs\u00e9r)\"", "question": "What are the largest ethnic groups where the cyrillic name and other names is \u043f\u0430\u0447\u0438\u0440 (hungarian: pacs\u00e9r)?", "context": "CREATE TABLE table_2562572_27 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT COUNT(settlement) FROM table_2562572_27 WHERE cyrillic_name_other_names = \"\u040a\u0435\u0433\u043e\u0448\u0435\u0432\u043e\"", "question": "How many places have as their cyrillic name and other names \u045a\u0435\u0433\u043e\u0448\u0435\u0432\u043e?", "context": "CREATE TABLE table_2562572_27 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_27 WHERE population__2011_ = \"83\"", "question": "What are the dominant religions in the place with a population of 83?", "context": "CREATE TABLE table_2562572_27 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT settlement FROM table_2562572_27 WHERE cyrillic_name_other_names = \"\u041f\u0430\u043d\u043e\u043d\u0438\u0458\u0430\"", "question": "How many settlements have as their cyrillic name and other names \u043f\u0430\u043d\u043e\u043d\u0438\u0458\u0430?", "context": "CREATE TABLE table_2562572_27 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_33 WHERE settlement = \"Martono\u0161\"", "question": "What is the other name for martono\u0161?", "context": "CREATE TABLE table_2562572_33 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT type FROM table_2562572_33 WHERE cyrillic_name_other_names = \"\u041e\u0440\u043e\u043c (Hungarian: Orom)\"", "question": "What type of settlement is \u043e\u0440\u043e\u043c (hungarian: orom)?", "context": "CREATE TABLE table_2562572_33 (type VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT settlement FROM table_2562572_33 WHERE cyrillic_name_other_names = \"\u041c\u0430\u0440\u0442\u043e\u043d\u043e\u0448 (Hungarian: Martonos)\"", "question": "What settlement is also called \u043c\u0430\u0440\u0442\u043e\u043d\u043e\u0448 (hungarian: martonos)?", "context": "CREATE TABLE table_2562572_33 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_33 WHERE cyrillic_name_other_names = \"\u041c\u0430\u043b\u0435 \u041f\u0438\u0458\u0430\u0446\u0435 (Hungarian: Kispiac)\"", "question": "What is the largest ethnic group in \u043c\u0430\u043b\u0435 \u043f\u0438\u0458\u0430\u0446\u0435 (hungarian: kispiac)?", "context": "CREATE TABLE table_2562572_33 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_33 WHERE settlement = \"Doline\"", "question": "What is the largest ethnic group in doline?", "context": "CREATE TABLE table_2562572_33 (largest_ethnic_group__2002_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_37 WHERE settlement = \"Srpska Crnja\"", "question": "Name the dominant religion of srpska crnja", "context": "CREATE TABLE table_2562572_37 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT settlement FROM table_2562572_37 WHERE cyrillic_name_other_names = \"\u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440\u043e\u0432\u043e\"", "question": "Name the settlement for \u0430\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440\u043e\u0432\u043e", "context": "CREATE TABLE table_2562572_37 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_37 WHERE population__2011_ = 518", "question": "Name the cyrillic name for 518", "context": "CREATE TABLE table_2562572_37 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_2562572_37 WHERE cyrillic_name_other_names = \"\u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440\u043e\u0432\u043e\"", "question": "Name the population for \u0430\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440\u043e\u0432\u043e", "context": "CREATE TABLE table_2562572_37 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT population__2011_ FROM table_2562572_37 WHERE cyrillic_name_other_names = \"\u0421\u0440\u043f\u0441\u043a\u0430 \u0426\u0440\u045a\u0430\"", "question": "Name the population for 2011 for \u0441\u0440\u043f\u0441\u043a\u0430 \u0446\u0440\u045a\u0430", "context": "CREATE TABLE table_2562572_37 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_43 WHERE population__2011_ = 200", "question": "What is the largest ethnic group in 2002 when the population is 200?", "context": "CREATE TABLE table_2562572_43 (largest_ethnic_group__2002_ VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT COUNT(type) FROM table_2562572_43 WHERE cyrillic_name_other_names = \"\u041f\u0430\u0434\u0438\u043d\u0430 (Slovak: Padina)\"", "question": "How many entries are there for type for the cyrillic name other names is \u043f\u0430\u0434\u0438\u043d\u0430 (slovak: padina)?", "context": "CREATE TABLE table_2562572_43 (type VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT type FROM table_2562572_43 WHERE population__2011_ = 1004", "question": "What is the type for the population in 2011 of 1004?", "context": "CREATE TABLE table_2562572_43 (type VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_43 WHERE largest_ethnic_group__2002_ = \"Slovaks\" AND type = \"village\"", "question": "What was the 2002 dominant religion when the largest ethnic group (2002) was slovaks and type is village?", "context": "CREATE TABLE table_2562572_43 (dominant_religion__2002_ VARCHAR, largest_ethnic_group__2002_ VARCHAR, type VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_43 WHERE settlement = \"Debelja\u010da\"", "question": "What is the cyrillic name other names for the settlement of debelja\u010da?", "context": "CREATE TABLE table_2562572_43 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT COUNT(cyrillic_name_other_names) FROM table_2562572_43 WHERE settlement = \"Idvor\"", "question": "How many entries are there for cyrillic name other names where settlement is idvor?", "context": "CREATE TABLE table_2562572_43 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_44 WHERE settlement = \"Lokve\"", "question": "What was the dominant religion in 2002 in lokve?", "context": "CREATE TABLE table_2562572_44 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_44 WHERE cyrillic_name_other_names = \"\u0411\u0430\u043d\u0430\u0442\u0441\u043a\u0438 \u041a\u0430\u0440\u043b\u043e\u0432\u0430\u0446\"", "question": "What was the largest ethnic group in in the settlement with the cyrillic name \u0431\u0430\u043d\u0430\u0442\u0441\u043a\u0438 \u043a\u0430\u0440\u043b\u043e\u0432\u0430\u0446?", "context": "CREATE TABLE table_2562572_44 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT COUNT(largest_ethnic_group__2002_) FROM table_2562572_44 WHERE population__2011_ = 5082", "question": "What is the largest ethnic group in the settlement with a 2011 population of 5082?", "context": "CREATE TABLE table_2562572_44 (largest_ethnic_group__2002_ VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT population__2011_ FROM table_2562572_44 WHERE settlement = \"Banatski Karlovac\"", "question": "What was the population in 2011 of banatski karlovac?", "context": "CREATE TABLE table_2562572_44 (population__2011_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT settlement FROM table_2562572_44 WHERE cyrillic_name_other_names = \"\u041b\u043e\u043a\u0432\u0435 (Romanian: Locve)\"", "question": "Which settlement has the cyrillic and other name of \u043b\u043e\u043a\u0432\u0435 (romanian: locve)?", "context": "CREATE TABLE table_2562572_44 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT MAX(population__2011_) FROM table_2562572_44 WHERE cyrillic_name_other_names = \"\u0414\u043e\u0431\u0440\u0438\u0446\u0430\"", "question": "What is the population of the settlement with the cyrillic name of \u0434\u043e\u0431\u0440\u0438\u0446\u0430?", "context": "CREATE TABLE table_2562572_44 (population__2011_ INTEGER, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT settlement FROM table_2562572_46 WHERE cyrillic_name_other_names = \"\u0412\u043e\u0458\u0432\u043e\u0434\u0438\u043d\u0446\u0438 (Romanian: Voivodin\u0163)\"", "question": "Which settlement has a cyrillic and other name of \u0432\u043e\u0458\u0432\u043e\u0434\u0438\u043d\u0446\u0438 (romanian: voivodin\u0163)?", "context": "CREATE TABLE table_2562572_46 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_46 WHERE cyrillic_name_other_names = \"\u0412\u043e\u0458\u0432\u043e\u0434\u0438\u043d\u0446\u0438 (Romanian: Voivodin\u0163)\"", "question": "What was the dominant religion in 2002 of the settlement with the cyrillic and other name of \u0432\u043e\u0458\u0432\u043e\u0434\u0438\u043d\u0446\u0438 (romanian: voivodin\u0163)?", "context": "CREATE TABLE table_2562572_46 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT MAX(population__2011_) FROM table_2562572_46 WHERE cyrillic_name_other_names = \"\u0412\u0430\u0442\u0438\u043d\"", "question": "What was the population in 2011 of the settlement with the cyrillic name of \u0432\u0430\u0442\u0438\u043d?", "context": "CREATE TABLE table_2562572_46 (population__2011_ INTEGER, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_46 WHERE settlement = \"So\u010dica\"", "question": "What was the largest ethnic group in so\u010dica?", "context": "CREATE TABLE table_2562572_46 (largest_ethnic_group__2002_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT population__2011_ FROM table_2562572_46 WHERE settlement = \"Pavli\u0161\"", "question": "What was the 2011 population of pavli\u0161?", "context": "CREATE TABLE table_2562572_46 (population__2011_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_46 WHERE cyrillic_name_other_names = \"\u0412\u0430\u0442\u0438\u043d\"", "question": "What was the largest ethnic group in 2002 of the settlement with the cyrillic name of \u0432\u0430\u0442\u0438\u043d?", "context": "CREATE TABLE table_2562572_46 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_50 WHERE settlement = \"Mala Remeta\"", "question": "What was the dominant religion (2002) of the Mala Remeta settlement?", "context": "CREATE TABLE table_2562572_50 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT type FROM table_2562572_50 WHERE settlement = \"Kru\u0161edol Selo\"", "question": "What type of settlemen is Kru\u0161edol Selo?", "context": "CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT COUNT(type) FROM table_2562572_50 WHERE settlement = \"Neradin\"", "question": "How many types of settlement if Neradin?", "context": "CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT type FROM table_2562572_50 WHERE settlement = \"Jazak\"", "question": "What type of settlement is Jazak?", "context": "CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT settlement FROM table_2562572_53 WHERE population__2011_ = 9443", "question": "What is the name of the settlement that had a population of 9443 in 2011?", "context": "CREATE TABLE table_2562572_53 (settlement VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT COUNT(type) FROM table_2562572_53 WHERE settlement = \"Nova Pazova\"", "question": "How many different types of settlements does Nova Pazova fall into?", "context": "CREATE TABLE table_2562572_53 (type VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_53 WHERE cyrillic_name = \"\u0421\u0443\u0440\u0434\u0443\u043a\"", "question": "What ethnic group had the largest population in \u0441\u0443\u0440\u0434\u0443\u043a in 2002?", "context": "CREATE TABLE table_2562572_53 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name VARCHAR)"}, {"answer": "SELECT COUNT(dominant_religion__2002_) FROM table_2562572_53 WHERE population__2011_ = 17105", "question": "How many dominant religions were in the settlement that had a population of 17105?", "context": "CREATE TABLE table_2562572_53 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_2562572_53 WHERE cyrillic_name = \"\u0421\u0443\u0440\u0434\u0443\u043a\"", "question": "What was the population of \u0441\u0443\u0440\u0434\u0443\u043a in 2011?", "context": "CREATE TABLE table_2562572_53 (population__2011_ VARCHAR, cyrillic_name VARCHAR)"}, {"answer": "SELECT MAX(meas_num) FROM table_256286_13 WHERE description = \"Extending Eminent Domain Over Roads and Ways\"", "question": "When extending eminent domain over roads and ways is the description what is the highest means number?", "context": "CREATE TABLE table_256286_13 (meas_num INTEGER, description VARCHAR)"}, {"answer": "SELECT COUNT(type) FROM table_256286_13 WHERE description = \"Restoring Capital Punishment\"", "question": "When restoring capital punishment is the description how many types are there?", "context": "CREATE TABLE table_256286_13 (type VARCHAR, description VARCHAR)"}, {"answer": "SELECT MIN(no_votes) FROM table_256286_13", "question": "What is the lowest overall amount of no votes?", "context": "CREATE TABLE table_256286_13 (no_votes INTEGER)"}, {"answer": "SELECT urban_settlement FROM table_2562572_7 WHERE city___municipality = \"Kovin\"", "question": "What was the urban settlement when the city / municipality was kovin?", "context": "CREATE TABLE table_2562572_7 (urban_settlement VARCHAR, city___municipality VARCHAR)"}, {"answer": "SELECT COUNT(population__1991_) FROM table_2562572_7 WHERE population__2002_ = 14250", "question": "What is the population (1991) where population (2002) was  14250?", "context": "CREATE TABLE table_2562572_7 (population__1991_ VARCHAR, population__2002_ VARCHAR)"}, {"answer": "SELECT MIN(population__1991_) FROM table_2562572_7 WHERE cyrillic_name = \"\u041f\u0430\u043d\u0447\u0435\u0432\u043e\"", "question": "What is the population (1991) when cyrillic name is \u043f\u0430\u043d\u0447\u0435\u0432\u043e?", "context": "CREATE TABLE table_2562572_7 (population__1991_ INTEGER, cyrillic_name VARCHAR)"}, {"answer": "SELECT settlement AS destiny FROM table_2562572_56 WHERE settlement = \"Aleksandrovo\"", "question": "What is the settlement destiny in Aleksandrovo? ", "context": "CREATE TABLE table_2562572_56 (settlement VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_56 WHERE settlement = \"Novi Vladimirovac\"", "question": "What is the Cyrillic name for Novi Vladimirovac? ", "context": "CREATE TABLE table_2562572_56 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_2562572_54 WHERE settlement = \"Kr\u010dedin\"", "question": "How many items appear in the population 2011 column for the kr\u010dedin settlement?", "context": "CREATE TABLE table_2562572_54 (population__2011_ VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_54 WHERE population__2011_ = 2337", "question": "What is the dominant religion in 2002 for the population of 2337 in 2011?", "context": "CREATE TABLE table_2562572_54 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT MIN(population__2011_) FROM table_2562572_54 WHERE settlement = \"\u010cortanovci\"", "question": "What is the lowest population in 2011 for the settlement of \u010dortanovci?", "context": "CREATE TABLE table_2562572_54 (population__2011_ INTEGER, settlement VARCHAR)"}, {"answer": "SELECT largest_ethnic_group__2002_ FROM table_2562572_54 WHERE cyrillic_name_other_names = \"\u0411\u0435\u0448\u043a\u0430\"", "question": "What is the largest ethnic group in 2002 for the cyrillic name, other name of \u0431\u0435\u0448\u043a\u0430?", "context": "CREATE TABLE table_2562572_54 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT MIN(population__2002_) FROM table_2562572_8 WHERE population__2011_ = 30076", "question": "What was the lowes population of 2002 when the 2011 population was 30076?", "context": "CREATE TABLE table_2562572_8 (population__2002_ INTEGER, population__2011_ VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_9 WHERE cyrillic_name_other_names = \"\u0421\u0442\u0435\u043f\u0430\u043d\u043e\u0432\u0438\u045b\u0435\u0432\u043e\"", "question": "What is the dominant religion in \u0441\u0442\u0435\u043f\u0430\u043d\u043e\u0432\u0438\u045b\u0435\u0432\u043e during 2002?", "context": "CREATE TABLE table_2562572_9 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE population__2011_ = 2125", "question": "What is the cyrillic name for the settlement with the population of 2125?", "context": "CREATE TABLE table_2562572_9 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT type FROM table_2562572_9 WHERE cyrillic_name_other_names = \"\u0424\u0443\u0442\u043e\u0433\"", "question": "What type of settlement is \u0444\u0443\u0442\u043e\u0433?", "context": "CREATE TABLE table_2562572_9 (type VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE population__2011_ = 5414", "question": "What is the cyrillic name for the settlement with the population of 5414?", "context": "CREATE TABLE table_2562572_9 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE settlement = \"Budisava\"", "question": "What is the cyrillic name for Budisava?", "context": "CREATE TABLE table_2562572_9 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)"}, {"answer": "SELECT dominant_religion__2002_ FROM table_2562572_9 WHERE cyrillic_name_other_names = \"\u041d\u043e\u0432\u0438 \u0421\u0430\u0434\"", "question": "What is the dominant religion for \u043d\u043e\u0432\u0438 \u0441\u0430\u0434 in 2002?", "context": "CREATE TABLE table_2562572_9 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)"}, {"answer": "SELECT MAX(yes_votes) FROM table_256286_19 WHERE no_votes = 61307", "question": "What is the largest number of yest votes for the measure with 61307 no votes?", "context": "CREATE TABLE table_256286_19 (yes_votes INTEGER, no_votes VARCHAR)"}, {"answer": "SELECT meas_num FROM table_256286_19 WHERE _percentage_yes = \"58.29%\"", "question": "What numbered measure had a 58.29% yes%?", "context": "CREATE TABLE table_256286_19 (meas_num VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT passed FROM table_256286_19 WHERE no_votes = 61307", "question": "What was the passing result for the measure with 61307 no votes?", "context": "CREATE TABLE table_256286_19 (passed VARCHAR, no_votes VARCHAR)"}, {"answer": "SELECT MIN(meas_num) FROM table_256286_19 WHERE _percentage_yes = \"33.57%\"", "question": "What is the lowest measure number for the measure with a 33.57% yes percentage?", "context": "CREATE TABLE table_256286_19 (meas_num INTEGER, _percentage_yes VARCHAR)"}, {"answer": "SELECT passed FROM table_256286_19 WHERE description = \"Bus and Truck Operating License Bill\"", "question": "What was the passing result for the measure with a description of  bus and truck operating license bill?", "context": "CREATE TABLE table_256286_19 (passed VARCHAR, description VARCHAR)"}, {"answer": "SELECT passed FROM table_256286_22 WHERE _percentage_yes = \"52.49%\"", "question": "What was the result of the ballot that had a 52.49% yes vote percentage?", "context": "CREATE TABLE table_256286_22 (passed VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT type FROM table_256286_21 WHERE meas_num = 3", "question": "What type of proposal is measure number 3?", "context": "CREATE TABLE table_256286_21 (type VARCHAR, meas_num VARCHAR)"}, {"answer": "SELECT yes_votes FROM table_256286_23 WHERE _percentage_yes = \"60.39%\"", "question": "How many yes votes did the measure that got 60.39% yes votes get?", "context": "CREATE TABLE table_256286_23 (yes_votes VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT description FROM table_256286_23 WHERE _percentage_yes = \"39.57%\"", "question": "What is the description of the measure that got 39.57% yes votes?", "context": "CREATE TABLE table_256286_23 (description VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT MIN(meas_num) FROM table_256286_23 WHERE description = \"Tax Supervising and Conservation Bill\"", "question": "What is the number of the tax supervising and conservation bill?", "context": "CREATE TABLE table_256286_23 (meas_num INTEGER, description VARCHAR)"}, {"answer": "SELECT COUNT(passed) FROM table_256286_39 WHERE _percentage_yes = \"52.11%\"", "question": "How many ballot measures had a percentage yes of 52.11%?", "context": "CREATE TABLE table_256286_39 (passed VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT description FROM table_256286_39 WHERE _percentage_yes = \"44.06%\"", "question": "What is the measure where the yes% is 44.06%?", "context": "CREATE TABLE table_256286_39 (description VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT COUNT(passed) FROM table_256286_39 WHERE yes_votes = 216545", "question": "How many measures had a yes vote of 216545?", "context": "CREATE TABLE table_256286_39 (passed VARCHAR, yes_votes VARCHAR)"}, {"answer": "SELECT MAX(meas_num) FROM table_256286_39", "question": "What is the highest measure number?", "context": "CREATE TABLE table_256286_39 (meas_num INTEGER)"}, {"answer": "SELECT _percentage_yes FROM table_256286_45 WHERE no_votes = 199174", "question": "What was the percentage of yes votes for the measure where the no votes number 199174?", "context": "CREATE TABLE table_256286_45 (_percentage_yes VARCHAR, no_votes VARCHAR)"}, {"answer": "SELECT COUNT(type) FROM table_256286_45 WHERE yes_votes = 312680", "question": "How many types are there for the measure where there were 312680 yes votes?", "context": "CREATE TABLE table_256286_45 (type VARCHAR, yes_votes VARCHAR)"}, {"answer": "SELECT COUNT(no_votes) FROM table_256286_45 WHERE description = \"Forest Rehabilitation Debt Limit Amendment\"", "question": "How many figures are there for No votes for the Forest Rehabilitation Debt Limit Amendment?", "context": "CREATE TABLE table_256286_45 (no_votes VARCHAR, description VARCHAR)"}, {"answer": "SELECT type FROM table_256286_45 WHERE description = \"Power Development Debt Limit Amendment\"", "question": "What is the type of measure that voted on the Power Development Debt Limit Amendment?", "context": "CREATE TABLE table_256286_45 (type VARCHAR, description VARCHAR)"}, {"answer": "SELECT passed FROM table_256286_40 WHERE description = \"Authorizing State Acceptance of Certain Gifts\"", "question": "What vote passed for the measure with the description, authorizing state acceptance of certain gifts? ", "context": "CREATE TABLE table_256286_40 (passed VARCHAR, description VARCHAR)"}, {"answer": "SELECT COUNT(passed) FROM table_256286_40 WHERE yes_votes = 390338", "question": "How many votes passed are listed on the measure that had 390338 yes votes? ", "context": "CREATE TABLE table_256286_40 (passed VARCHAR, yes_votes VARCHAR)"}, {"answer": "SELECT type FROM table_256286_40 WHERE yes_votes = 175932", "question": "What was the type when there were 175932 yes votes? ", "context": "CREATE TABLE table_256286_40 (type VARCHAR, yes_votes VARCHAR)"}, {"answer": "SELECT COUNT(yes_votes) FROM table_256286_41 WHERE no_votes < 299939.1619948521 AND _percentage_yes = \"66.49%\"", "question": "What is the aggregate number of yes votes where no votes is littler than 299939.1619948521 and % yes is 66.49%", "context": "CREATE TABLE table_256286_41 (yes_votes VARCHAR, no_votes VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT description FROM table_256286_55 WHERE _percentage_yes = \"78.27%\"", "question": "What is the description of the measure that got 78.27% yes votes?", "context": "CREATE TABLE table_256286_55 (description VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT MAX(meas_num) FROM table_256286_55", "question": "What is the highest measure number?", "context": "CREATE TABLE table_256286_55 (meas_num INTEGER)"}, {"answer": "SELECT COUNT(type) FROM table_256286_5 WHERE description = \"Calling Convention to revise State Constitution\"", "question": "How many type classifications are given to the measure with the description, calling convention to revise state constitution? ", "context": "CREATE TABLE table_256286_5 (type VARCHAR, description VARCHAR)"}, {"answer": "SELECT _percentage_yes FROM table_256286_5 WHERE yes_votes = 35270", "question": "What is the yes percentage in the measure that had 35270 yes votes? ", "context": "CREATE TABLE table_256286_5 (_percentage_yes VARCHAR, yes_votes VARCHAR)"}, {"answer": "SELECT MAX(meas_num) FROM table_256286_54 WHERE no_votes = 322682", "question": "When the no votes was 322682, what was the max meas. number?", "context": "CREATE TABLE table_256286_54 (meas_num INTEGER, no_votes VARCHAR)"}, {"answer": "SELECT MAX(yes_votes) FROM table_256286_60 WHERE meas_num = 4", "question": "How yes votes were there for measure 4? ", "context": "CREATE TABLE table_256286_60 (yes_votes INTEGER, meas_num VARCHAR)"}, {"answer": "SELECT MIN(meas_num) FROM table_256286_60", "question": "What was the lowest measure number? ", "context": "CREATE TABLE table_256286_60 (meas_num INTEGER)"}, {"answer": "SELECT type FROM table_256286_8 WHERE _percentage_yes = \"32.47%\"", "question": "What was the type of ballot measures if the % of yes vote is 32.47%?", "context": "CREATE TABLE table_256286_8 (type VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT type FROM table_256286_8 WHERE description = \"Department of Industry and Public Works Amendment\"", "question": "What was the type of ballot measure with the description of Department of Industry and Public Works Amendment?", "context": "CREATE TABLE table_256286_8 (type VARCHAR, description VARCHAR)"}, {"answer": "SELECT COUNT(no_votes) FROM table_256286_8 WHERE description = \"$1500 Tax Exemption Amendment\"", "question": "How many data are there under NO vote with a description of $1500 tax exemption amendment?", "context": "CREATE TABLE table_256286_8 (no_votes VARCHAR, description VARCHAR)"}, {"answer": "SELECT _percentage_yes FROM table_256286_61 WHERE yes_votes = 218846", "question": "What is the percentage of yes when there were 218846 yes votes", "context": "CREATE TABLE table_256286_61 (_percentage_yes VARCHAR, yes_votes VARCHAR)"}, {"answer": "SELECT COUNT(type) FROM table_256286_61 WHERE _percentage_yes = \"68.91%\"", "question": "How many type catagories are listed when the percentage of yes is 68.91%?", "context": "CREATE TABLE table_256286_61 (type VARCHAR, _percentage_yes VARCHAR)"}, {"answer": "SELECT type FROM table_256286_61 WHERE yes_votes = 546255", "question": "What is the type when yes votes are 546255? ", "context": "CREATE TABLE table_256286_61 (type VARCHAR, yes_votes VARCHAR)"}, {"answer": "SELECT meas_num FROM table_256286_61 WHERE description = \"Obscenity and sexual conduct bill\"", "question": "What is the measure number for the bill described as obscenity and sexual conduct bill? ", "context": "CREATE TABLE table_256286_61 (meas_num VARCHAR, description VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_25647137_2 WHERE player = \"Art Renner\"", "question": "How many points did art renner have?", "context": "CREATE TABLE table_25647137_2 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(touchdowns) FROM table_25647137_2 WHERE player = \"Bill Culligan\"", "question": "How many touchdowns did bill culligan have?", "context": "CREATE TABLE table_25647137_2 (touchdowns VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(touchdowns) FROM table_25647137_2", "question": "What was the highest number of touchdowns by a player?", "context": "CREATE TABLE table_25647137_2 (touchdowns INTEGER)"}, {"answer": "SELECT MIN(points) FROM table_25647137_2 WHERE player = \"Robert Stenberg\"", "question": "How many points did robert stenberg have?", "context": "CREATE TABLE table_25647137_2 (points INTEGER, player VARCHAR)"}, {"answer": "SELECT location FROM table_25643046_1 WHERE origin_time = \"14:07\"", "question": "Where was the quake that began at 14:07?", "context": "CREATE TABLE table_25643046_1 (location VARCHAR, origin_time VARCHAR)"}, {"answer": "SELECT epicentre__lat, _s_ FROM table_25643046_1 WHERE origin_time = \"17:09\"", "question": "What was the epicenter latitude for the quake that started at 17:09?", "context": "CREATE TABLE table_25643046_1 (epicentre__lat VARCHAR, _s_ VARCHAR, origin_time VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_25649467_2 WHERE season__number = 12", "question": "When 12 is the season number how many series numbers are there?", "context": "CREATE TABLE table_25649467_2 (series__number VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_25655781_17 WHERE winner = \"Borut Bo\u017ei\u010d\"", "question": "Who had the mountains classification when borut bo\u017ei\u010d was the winner?", "context": "CREATE TABLE table_25655781_17 (mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT team_classification FROM table_25655781_17 WHERE winner = \"Andr\u00e9 Greipel\" AND points_classification = \"Andr\u00e9 Greipel\"", "question": "What was the team classification where andr\u00e9 greipel was the winner and had the points classification?", "context": "CREATE TABLE table_25655781_17 (team_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT MAX(stage) FROM table_25655781_17", "question": "How many stages are there?", "context": "CREATE TABLE table_25655781_17 (stage INTEGER)"}, {"answer": "SELECT COUNT(sprint_classification) FROM table_25655781_17 WHERE winner = \"Marco Frapporti\"", "question": "How many sprint classifications are there where marco frapporti is the winner?", "context": "CREATE TABLE table_25655781_17 (sprint_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT second_couple FROM table_25664518_3 WHERE itv1_weekly_ranking = 29", "question": "Who was the second couple for the episode having an ITV1 ranking of 29?", "context": "CREATE TABLE table_25664518_3 (second_couple VARCHAR, itv1_weekly_ranking VARCHAR)"}, {"answer": "SELECT MAX(itv1_weekly_ranking) FROM table_25664518_3", "question": "What is the maximum ITV1 weekly ranking?", "context": "CREATE TABLE table_25664518_3 (itv1_weekly_ranking INTEGER)"}, {"answer": "SELECT viewers__millions_ FROM table_25664518_3 WHERE fourth_couple = \"Tony and Jamie\"", "question": "What was the number of viewers for the episode having a fourth couple of Tony and Jamie?", "context": "CREATE TABLE table_25664518_3 (viewers__millions_ VARCHAR, fourth_couple VARCHAR)"}, {"answer": "SELECT first_couple FROM table_25664518_3 WHERE fourth_couple = \"Sammy and Nat\"", "question": "Who was the first couple in the episode having a fourth couple of Sammy and Nat?", "context": "CREATE TABLE table_25664518_3 (first_couple VARCHAR, fourth_couple VARCHAR)"}, {"answer": "SELECT MIN(itv1_weekly_ranking) FROM table_25664518_3 WHERE viewers__millions_ = \"5.42\"", "question": "What is the minimum ITV1 ranking for the episode having viewership of 5.42 million?", "context": "CREATE TABLE table_25664518_3 (itv1_weekly_ranking INTEGER, viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_25668962_1 WHERE us_viewers__million_ = \"13.66\"", "question": "What episode number in the series was viewed by 13.66 million people in the U.S.?", "context": "CREATE TABLE table_25668962_1 (no_in_series INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_25668962_1 WHERE production_code = \"1ARC12\"", "question": "How many million U.S. viewers watched the epiode with a production code of 1arc12?", "context": "CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_25668962_1 WHERE production_code = \"1ARC03\"", "question": "How many million U.S. viewers watched the episode with a production code of 1arc03?", "context": "CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_25668962_1 WHERE no_in_series = 6", "question": "How many million U.S. viewers watched episode number 6 in the series?", "context": "CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25668962_1 WHERE no_in_series = 18", "question": "Who directed episode number 18 in the series?", "context": "CREATE TABLE table_25668962_1 (directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT 3 AS rd_couple FROM table_25664518_4 WHERE viewers__millions_ = \"4.89\"", "question": "Who were the 3rd couple that were viewed by 4.89 million viewers? ", "context": "CREATE TABLE table_25664518_4 (viewers__millions_ VARCHAR)"}, {"answer": "SELECT location FROM table_25668203_2 WHERE most_laps_led = \"Patrick McKenna\"", "question": "What location(s) did patrick mckenna lead the most laps?", "context": "CREATE TABLE table_25668203_2 (location VARCHAR, most_laps_led VARCHAR)"}, {"answer": "SELECT COUNT(fastest_lap) FROM table_25668203_2 WHERE rnd = \"10\"", "question": "How many races went for 10 rounds?", "context": "CREATE TABLE table_25668203_2 (fastest_lap VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT most_laps_led FROM table_25668203_2 WHERE location = \"Monterey, California\" AND winning_driver = \"Scott Rarick\"", "question": "Who had the most laps led in monterey, california when scott rarick won the race?", "context": "CREATE TABLE table_25668203_2 (most_laps_led VARCHAR, location VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_team FROM table_25668203_2 WHERE winning_driver = \"Mikhail Goikhberg\"", "question": "What was the winning team when mikhail goikhberg was the winning driver?", "context": "CREATE TABLE table_25668203_2 (winning_team VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25679312_2 WHERE prod_code = 10", "question": "Who directed the episode with the production code 10?", "context": "CREATE TABLE table_25679312_2 (directed_by VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_25679312_2 WHERE prod_code = 2", "question": "Who wrote the episode with production code 2?", "context": "CREATE TABLE table_25679312_2 (written_by VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_25679312_2 WHERE prod_code = 5", "question": "Who wrote the episode with production code 5?", "context": "CREATE TABLE table_25679312_2 (written_by VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT COUNT(finish) FROM table_256862_1 WHERE entries = \"15\" AND winning_yacht = \"L'Esprit d'Equipe\"", "question": "Name the number of finishes for 15 entries 15 and  l'esprit d'equipe", "context": "CREATE TABLE table_256862_1 (finish VARCHAR, entries VARCHAR, winning_yacht VARCHAR)"}, {"answer": "SELECT MAX(legs) FROM table_256862_1 WHERE winning_yacht = \"Steinlager 2\"", "question": "Name the most legs for steinlager 2", "context": "CREATE TABLE table_256862_1 (legs INTEGER, winning_yacht VARCHAR)"}, {"answer": "SELECT winning_yacht FROM table_256862_1 WHERE entries = \"14\"", "question": "Name the wininng yacht for 14 entries", "context": "CREATE TABLE table_256862_1 (winning_yacht VARCHAR, entries VARCHAR)"}, {"answer": "SELECT the_w\u00f8rd FROM table_25691838_2 WHERE original_airdate = \"February 11\"", "question": "What was the word for the episode that aired February 11? ", "context": "CREATE TABLE table_25691838_2 (the_w\u00f8rd VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT introductory_phrase FROM table_25691838_2 WHERE production_code = 6026", "question": "What was the introductory phrase for the episode with the production bode 6026?", "context": "CREATE TABLE table_25691838_2 (introductory_phrase VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT the_w\u00f8rd FROM table_25691838_2 WHERE episode__number = 673", "question": "What was the word on episode number 673? ", "context": "CREATE TABLE table_25691838_2 (the_w\u00f8rd VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT guest FROM table_25691838_2 WHERE production_code = 6021", "question": "Who were the guests in the episode with production code 6021? ", "context": "CREATE TABLE table_25691838_2 (guest VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT guest FROM table_25691838_12 WHERE production_code = 6152", "question": "Who were the guests on a show where the production code is 6152?", "context": "CREATE TABLE table_25691838_12 (guest VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT guest FROM table_25691838_12 WHERE original_airdate = \"December 07\"", "question": "Who were the guests for the episode with an original airdate of december 07?", "context": "CREATE TABLE table_25691838_12 (guest VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT the_w\u00f8rd FROM table_25691838_12 WHERE guest = \"Daniel Ellsberg , William Wegman , Julie Taymor\"", "question": "What is \"the w\u00f8rd\" when guests were daniel ellsberg , william wegman , julie taymor?", "context": "CREATE TABLE table_25691838_12 (the_w\u00f8rd VARCHAR, guest VARCHAR)"}, {"answer": "SELECT production_code FROM table_25691838_12 WHERE original_airdate = \"December 01\"", "question": "What is the production code of the episode with an original airdate of december 01?", "context": "CREATE TABLE table_25691838_12 (production_code VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT MIN(episode__number) FROM table_25691838_12 WHERE guest = \"Julie Nixon Eisenhower and David Eisenhower\"", "question": "What is the  episode # when the guests were julie nixon eisenhower and david eisenhower?", "context": "CREATE TABLE table_25691838_12 (episode__number INTEGER, guest VARCHAR)"}, {"answer": "SELECT guest FROM table_25691838_8 WHERE original_airdate = \"August 16\"", "question": "Who were the guests on the episode that first aired August 16?", "context": "CREATE TABLE table_25691838_8 (guest VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT introductory_phrase FROM table_25691838_8 WHERE production_code = 6101", "question": "What was the introductory phrase on the episode production code 6101?", "context": "CREATE TABLE table_25691838_8 (introductory_phrase VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_25691838_8 WHERE original_airdate = \"August 11\"", "question": "What was the smallest production code for August 11's original episode?", "context": "CREATE TABLE table_25691838_8 (production_code INTEGER, original_airdate VARCHAR)"}, {"answer": "SELECT COUNT(introductory_phrase) FROM table_25691838_8 WHERE guest = \"David Finkel\"", "question": "How many introductory phrases were there on David Finkel's guest episode?", "context": "CREATE TABLE table_25691838_8 (introductory_phrase VARCHAR, guest VARCHAR)"}, {"answer": "SELECT MIN(episode__number) FROM table_25691838_8 WHERE original_airdate = \"August 11\"", "question": "What was the minimum number of the episode that first aired August 11?", "context": "CREATE TABLE table_25691838_8 (episode__number INTEGER, original_airdate VARCHAR)"}, {"answer": "SELECT introductory_phrase FROM table_25691838_11 WHERE episode__number = 794", "question": "What was the introductory phrase for episode 794?", "context": "CREATE TABLE table_25691838_11 (introductory_phrase VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_25691838_11 WHERE guest = \"Salvatore Giunta\"", "question": "What date did the episode originally air on with salvatore giunta as a guest?", "context": "CREATE TABLE table_25691838_11 (original_airdate VARCHAR, guest VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_25691838_11 WHERE original_airdate = \"November 15\"", "question": "How many production codes were there for the episode that aired on November 15?", "context": "CREATE TABLE table_25691838_11 (production_code VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT cylinder_size FROM table_25695027_1 WHERE number_built = \"88\"", "question": "What was the cylinder size of this engine that was made with only 88 pieces?", "context": "CREATE TABLE table_25695027_1 (cylinder_size VARCHAR, number_built VARCHAR)"}, {"answer": "SELECT class FROM table_25695027_1 WHERE years_built = \"1906-08\"", "question": "What was the engine class that was built on 1906-08?", "context": "CREATE TABLE table_25695027_1 (class VARCHAR, years_built VARCHAR)"}, {"answer": "SELECT number_built FROM table_25695027_1 WHERE cylinder_size = \"20 \u00bd\u201d x 26\u201d\" AND firebox = \"Belpaire\" AND valve_gear = \"Stephenson\"", "question": "How many engines were built with a cylinder size of 20 \u00bd\u201d x 26\u201d, firebox is belpaire and valve gear is from Stephenson?", "context": "CREATE TABLE table_25695027_1 (number_built VARCHAR, valve_gear VARCHAR, cylinder_size VARCHAR, firebox VARCHAR)"}, {"answer": "SELECT years_built FROM table_25695027_1 WHERE cylinder_size = \"20 \u00bd\u201d x 26\u201d\" AND firebox = \"Radial-stay\"", "question": "This engine with a cylinder size of 20 \u00bd\u201d x 26\u201d and a firebox of radial-stay was built when?", "context": "CREATE TABLE table_25695027_1 (years_built VARCHAR, cylinder_size VARCHAR, firebox VARCHAR)"}, {"answer": "SELECT COUNT(valves) FROM table_25695027_1 WHERE years_built = \"1902-05\"", "question": "How many types of valves were used on this engine that was built on 1902-05?", "context": "CREATE TABLE table_25695027_1 (valves VARCHAR, years_built VARCHAR)"}, {"answer": "SELECT agency FROM table_25692955_1 WHERE south_west_terminal = \"Santa Rosa Avenue\"", "question": "Name the agency for santa rosa avenue", "context": "CREATE TABLE table_25692955_1 (agency VARCHAR, south_west_terminal VARCHAR)"}, {"answer": "SELECT route_number FROM table_25692955_1 WHERE south_west_terminal = \"Rincon Valley\"", "question": "Name the route number for rincon valley", "context": "CREATE TABLE table_25692955_1 (route_number VARCHAR, south_west_terminal VARCHAR)"}, {"answer": "SELECT route_number FROM table_25692955_1 WHERE north_east_terminal = \"Santa Rosa Avenue\"", "question": "Name the route number for santa rosa avenue", "context": "CREATE TABLE table_25692955_1 (route_number VARCHAR, north_east_terminal VARCHAR)"}, {"answer": "SELECT original_air_date__uk_ FROM table_2570269_3 WHERE episode_title = \"Another Happy Day\"", "question": "What is the original air date of the episode \"Another Happy Day\"?", "context": "CREATE TABLE table_2570269_3 (original_air_date__uk_ VARCHAR, episode_title VARCHAR)"}, {"answer": "SELECT episode_title FROM table_2570269_3 WHERE original_air_date__uk_ = \"13 August 1981\"", "question": "What is the title of the episode that aired on 13 august 1981?", "context": "CREATE TABLE table_2570269_3 (episode_title VARCHAR, original_air_date__uk_ VARCHAR)"}, {"answer": "SELECT original_air_date__uk_ FROM table_2570269_3 WHERE episode__number = \"3-02\"", "question": "What is the original air date of episode 3-02?", "context": "CREATE TABLE table_2570269_3 (original_air_date__uk_ VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT cast FROM table_2570269_3 WHERE episode__number = \"3-04\"", "question": "Who are the cast members of episode 3-04?", "context": "CREATE TABLE table_2570269_3 (cast VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT MAX(birth_2013) FROM table_25703_1 WHERE death_2012 = \"14,1\"", "question": "What is the highest birth/2013 when the death/2012 is 14,1?", "context": "CREATE TABLE table_25703_1 (birth_2013 INTEGER, death_2012 VARCHAR)"}, {"answer": "SELECT MAX(death_2013) FROM table_25703_1 WHERE death_2012 = \"12,7\"", "question": "What is the highest death/2013 when the death/2012 is 12,7?", "context": "CREATE TABLE table_25703_1 (death_2013 INTEGER, death_2012 VARCHAR)"}, {"answer": "SELECT death_2012 FROM table_25703_1 WHERE death_2013 = 140 AND january_september_2013 = \"Moscow Oblast\"", "question": "What are the death/2012 number when death/2013 is 140 and January\u2013September 2013 is Moscow Oblast?", "context": "CREATE TABLE table_25703_1 (death_2012 VARCHAR, death_2013 VARCHAR, january_september_2013 VARCHAR)"}, {"answer": "SELECT COUNT(birth_2013) FROM table_25703_1 WHERE january_september_2013 = \"Oryol Oblast\"", "question": "How many figures for birth/2013 when January-September is Oryol Oblast?", "context": "CREATE TABLE table_25703_1 (birth_2013 VARCHAR, january_september_2013 VARCHAR)"}, {"answer": "SELECT touchdowns FROM table_25711913_2 WHERE points = 25", "question": "How many touchdowns did the player took which gained 25 points?", "context": "CREATE TABLE table_25711913_2 (touchdowns VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_25711913_2 WHERE player = \"Curtis\"", "question": "How many maximum points did Curtis scored?", "context": "CREATE TABLE table_25711913_2 (points INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(touchdowns) FROM table_25711913_2 WHERE position = \"Left guard\"", "question": "How many touchdowns did the left guard took?", "context": "CREATE TABLE table_25711913_2 (touchdowns INTEGER, position VARCHAR)"}, {"answer": "SELECT COUNT(field_goals) FROM table_25711913_2 WHERE position = \"Left end\"", "question": "How many numbers were recorded on the fields goals of the Left End player?", "context": "CREATE TABLE table_25711913_2 (field_goals VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_25711913_2 WHERE position = \"Fullback\"", "question": "What was the minimum touchdowns of the Fullback player?", "context": "CREATE TABLE table_25711913_2 (touchdowns INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_25711913_8 WHERE position = \"Fullback\"", "question": "How many touchdowns did the fullback score?", "context": "CREATE TABLE table_25711913_8 (touchdowns INTEGER, position VARCHAR)"}, {"answer": "SELECT COUNT(field_goals) FROM table_25711913_8 WHERE player = \"Weeks\"", "question": "How many figures are provided for Weeks' field goals?", "context": "CREATE TABLE table_25711913_8 (field_goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_25711913_8 WHERE position = \"Right halfback\"", "question": "What is the most points recorded for a right halfback?", "context": "CREATE TABLE table_25711913_8 (points INTEGER, position VARCHAR)"}, {"answer": "SELECT starter FROM table_25711913_8 WHERE player = \"Magoffin\"", "question": "Was Magoffin a starting player?", "context": "CREATE TABLE table_25711913_8 (starter VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_25711913_8 WHERE position = \"Left tackle\"", "question": "Which player was at position left tackle?", "context": "CREATE TABLE table_25711913_8 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_25716399_1 WHERE written_by = \"Daniel Dratch\"", "question": "What is the original air date for the episode written by daniel dratch?", "context": "CREATE TABLE table_25716399_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_25716399_1 WHERE directed_by = \"Wendey Stanzler\"", "question": "What season was an episode directed by wendey stanzler?", "context": "CREATE TABLE table_25716399_1 (no_in_season INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_25716399_1 WHERE us_viewers__millions_ = \"5.60\"", "question": "What was the original air date where there were u.s. viewers (millions) is 5.60?", "context": "CREATE TABLE table_25716399_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_25716399_1 WHERE no_in_season = 14", "question": "Who was the writer for season 14?", "context": "CREATE TABLE table_25716399_1 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT written_by FROM table_25716399_1 WHERE original_air_date = \"July20,2007\"", "question": "Who wrote the episode where the original air date is july20,2007?", "context": "CREATE TABLE table_25716399_1 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_25716399_1 WHERE written_by = \"Jonathan Collier\"", "question": "what season was written by  jonathan collier?", "context": "CREATE TABLE table_25716399_1 (no_in_season INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_25716397_1 WHERE written_by = \"Tom Scharpling and Daniel Dratch\"", "question": "How many episodes were written by Tom Scharpling and Daniel Dratch?", "context": "CREATE TABLE table_25716397_1 (no_in_season VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_25716397_1 WHERE written_by = \"Joe Toplyn\"", "question": "How many people directed the episode that Joe Toplyn wrote?", "context": "CREATE TABLE table_25716397_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_25716397_1 WHERE written_by = \"Joe Toplyn\"", "question": "How many titles does the episode written by Joe Toplyn have?", "context": "CREATE TABLE table_25716397_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_25716397_1 WHERE series_no = 55", "question": "How many directors of episode 55?", "context": "CREATE TABLE table_25716397_1 (directed_by VARCHAR, series_no VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_25716401_1 WHERE written_by = \"Tom Scharpling\"", "question": "How many titles are there for the episode written by Tom Scharpling? ", "context": "CREATE TABLE table_25716401_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MIN(episode_no) FROM table_25721_3 WHERE airdate = \"18 October 2012\"", "question": "Which episode number aired on 18 october 2012?", "context": "CREATE TABLE table_25721_3 (episode_no INTEGER, airdate VARCHAR)"}, {"answer": "SELECT MIN(rank__cable_) FROM table_25721_3 WHERE total_viewers = 1464000", "question": "What is the lowest cable rank of an episode with 1464000 viewers?", "context": "CREATE TABLE table_25721_3 (rank__cable_ INTEGER, total_viewers VARCHAR)"}, {"answer": "SELECT MAX(dave_viewers) FROM table_25721_3 WHERE dave_ja_vu_viewers = 119000", "question": "What is the highest number of dave viewers of an episode with 119000 dave ja vu viewers?", "context": "CREATE TABLE table_25721_3 (dave_viewers INTEGER, dave_ja_vu_viewers VARCHAR)"}, {"answer": "SELECT COUNT(total_viewers) FROM table_25721_3 WHERE airdate = \"25 October 2012\"", "question": "How many episodes aired on 25 october 2012?", "context": "CREATE TABLE table_25721_3 (total_viewers VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT airdate FROM table_25721_3 WHERE dave_ja_vu_viewers = 106000", "question": "What was the airdate of the episode with 106000 dave ja vu viewers?", "context": "CREATE TABLE table_25721_3 (airdate VARCHAR, dave_ja_vu_viewers VARCHAR)"}, {"answer": "SELECT _number_of_discs FROM table_25721_4 WHERE release = \"The Complete Collection Series 1-8 with extras\"", "question": "How many DVDs where were in the complete collection series 1-8 with extras?", "context": "CREATE TABLE table_25721_4 (_number_of_discs VARCHAR, release VARCHAR)"}, {"answer": "SELECT release FROM table_25721_4 WHERE _number_of_discs = 6", "question": "Which release had 6 DVDs?", "context": "CREATE TABLE table_25721_4 (release VARCHAR, _number_of_discs VARCHAR)"}, {"answer": "SELECT COUNT(region_1) FROM table_25721_4 WHERE release = \"Back to Earth\"", "question": "How many region 1's did back to earth have?", "context": "CREATE TABLE table_25721_4 (region_1 VARCHAR, release VARCHAR)"}, {"answer": "SELECT MAX(field_goals) FROM table_25724294_2 WHERE player = \"Walter Rheinschild\"", "question": "How many field goals did Walter Rheinschild have? ", "context": "CREATE TABLE table_25724294_2 (field_goals INTEGER, player VARCHAR)"}, {"answer": "SELECT extra_points FROM table_25724294_2 WHERE player = \"Jack Loell\"", "question": "Jack Loell had how many extra points? ", "context": "CREATE TABLE table_25724294_2 (extra_points VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_25730209_2 WHERE player = \"Donald Green\"", "question": "How many points did Donald Green score?", "context": "CREATE TABLE table_25730209_2 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(field_goals) FROM table_25730209_2 WHERE player = \"Donald Green\"", "question": "How many field goals did Donald Green score?", "context": "CREATE TABLE table_25730209_2 (field_goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(extra_points) FROM table_25730209_2", "question": "What was the least amount of points scored?", "context": "CREATE TABLE table_25730209_2 (extra_points INTEGER)"}, {"answer": "SELECT COUNT(extra_points) FROM table_25730209_2 WHERE player = \"Stanfield Wells\"", "question": "How many extra points did Stanfield Wells make?", "context": "CREATE TABLE table_25730209_2 (extra_points VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_25730123_2", "question": "What are the most points listed?", "context": "CREATE TABLE table_25730123_2 (points INTEGER)"}, {"answer": "SELECT touchdowns FROM table_25730123_2 WHERE extra_points > 1.0", "question": "How many touchdowns were the when there was more than 1.0 extra point?", "context": "CREATE TABLE table_25730123_2 (touchdowns VARCHAR, extra_points INTEGER)"}, {"answer": "SELECT player FROM table_25730123_2 WHERE extra_points < 1.0 AND points = 20", "question": "Name the player/s when there were 20 points with less than 1.0 extra point .", "context": "CREATE TABLE table_25730123_2 (player VARCHAR, extra_points VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(field_goals) FROM table_25730123_2 WHERE player = \"Frederick L. Conklin\"", "question": "What were the least amount of field goals when Frederick L. Conklin played?", "context": "CREATE TABLE table_25730123_2 (field_goals INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(extra_points) FROM table_25730326_2", "question": "What is the least number of extra points? ", "context": "CREATE TABLE table_25730326_2 (extra_points INTEGER)"}, {"answer": "SELECT points FROM table_25730326_2 WHERE player = \"William Wasmund\"", "question": "How many points did William Wasmund have?", "context": "CREATE TABLE table_25730326_2 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_25730326_2 WHERE points = 10", "question": "How many touchdowns did the player with 10 points have?", "context": "CREATE TABLE table_25730326_2 (touchdowns INTEGER, points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_25730326_2 WHERE player = \"George M. Lawton\"", "question": "How many points does George M. Lawton have?", "context": "CREATE TABLE table_25730326_2 (points INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_25730460_2 WHERE touchdowns = 1", "question": "Name the player for 1 touchdowns", "context": "CREATE TABLE table_25730460_2 (player VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT MIN(extra_points) FROM table_25730460_2", "question": "Name the least extra points", "context": "CREATE TABLE table_25730460_2 (extra_points INTEGER)"}, {"answer": "SELECT director FROM table_25737761_3 WHERE no = 2", "question": "Who directed episode number 2?", "context": "CREATE TABLE table_25737761_3 (director VARCHAR, no VARCHAR)"}, {"answer": "SELECT no FROM table_25737761_3 WHERE viewing_figure = 797000", "question": "What was the episode number that had 797000 viewers?", "context": "CREATE TABLE table_25737761_3 (no VARCHAR, viewing_figure VARCHAR)"}, {"answer": "SELECT writer FROM table_25737761_3 WHERE director = \"Colin Teague\"", "question": "Who directed the episode directed by colin teague?", "context": "CREATE TABLE table_25737761_3 (writer VARCHAR, director VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_25740548_2 WHERE production_code = \"CA106\"", "question": "How many episodes with the production code CA106 are there?", "context": "CREATE TABLE table_25740548_2 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25740548_2 WHERE written_by = \"Matthew Lau\"", "question": "Who was the director for episodes that were written be Matthew Lau?", "context": "CREATE TABLE table_25740548_2 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_25740548_2 WHERE written_by = \"Brett Conrad\"", "question": "How many episode were written by Brett Conrad?", "context": "CREATE TABLE table_25740548_2 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_25740548_2 WHERE directed_by = \"Tim Matheson\"", "question": "How many episodes were directed by Tim Matheson?", "context": "CREATE TABLE table_25740548_2 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_25740548_2 WHERE directed_by = \"Rod Hardy\"", "question": "How many episodes were directed by Rod Hardy?", "context": "CREATE TABLE table_25740548_2 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_25740548_3 WHERE us_viewers__million_ = \"3.92\"", "question": "Who wrote the episode with 3.92 million US viewers?", "context": "CREATE TABLE table_25740548_3 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_25740548_3 WHERE production_code = \"CA210\"", "question": "How many original air dates are there for the episode with code CA210?", "context": "CREATE TABLE table_25740548_3 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(episode_number) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 0.7 / 2 AND rating = \"2.1\"", "question": "How many episodes had rating/share (18-49) of 0.7/2 and a rating of 2.1?", "context": "CREATE TABLE table_25751274_2 (episode_number VARCHAR, rating VARCHAR)"}, {"answer": "SELECT MIN(episode_number) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 1.1 / 3", "question": "What is the lowest episode number that had a ratings/share (18-49) of 1.1/3?", "context": "CREATE TABLE table_25751274_2 (episode_number INTEGER, rating VARCHAR)"}, {"answer": "SELECT rating FROM table_25751274_2 WHERE share = 4 AND rating / SHARE(18 - 49) = 0.7 / 2", "question": "What is the rating of the episode with a share of 4 and a rating/share (18-49) of 0.7/2?", "context": "CREATE TABLE table_25751274_2 (rating VARCHAR, share VARCHAR)"}, {"answer": "SELECT MIN(rank__night_) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 1.3 / 4", "question": "What is the lowest rank of an episode with a rating/share (18-49) of 1.3/4?", "context": "CREATE TABLE table_25751274_2 (rank__night_ INTEGER, rating VARCHAR)"}, {"answer": "SELECT single FROM table_25760427_2 WHERE artist = \"Travis\"", "question": "What is the song released by Travis?", "context": "CREATE TABLE table_25760427_2 (single VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MIN(weeks_at_number_1) FROM table_25760427_2", "question": "error (see notes)", "context": "CREATE TABLE table_25760427_2 (weeks_at_number_1 INTEGER)"}, {"answer": "SELECT single FROM table_25760427_2 WHERE artist = \"Panjabi MC\"", "question": "What is the song by the musician panjabi mc?", "context": "CREATE TABLE table_25760427_2 (single VARCHAR, artist VARCHAR)"}, {"answer": "SELECT location FROM table_25773116_2 WHERE round = 1", "question": "Where was the round 1 race?", "context": "CREATE TABLE table_25773116_2 (location VARCHAR, round VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_25773116_2 WHERE date = \"April 11\"", "question": "Who won the April 11 race?", "context": "CREATE TABLE table_25773116_2 (winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_25773116_2 WHERE pole_position = \"Daniel Erickson\" AND fastest_lap = \"Cole Morgan\"", "question": "Where was the race where Cole Morgan had the fastest lap and Daniel Erickson had pole position?", "context": "CREATE TABLE table_25773116_2 (location VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_25773116_2 WHERE date = \"May 8\"", "question": "How many rounds were played on May 8?", "context": "CREATE TABLE table_25773116_2 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT pole_position FROM table_25773116_2 WHERE fastest_lap = \"Victor Carbone\" AND location = \"Braselton, Georgia\"", "question": "Who had pole position for the races in Braselton, Georgia where Victor Carbone had fastest lap?", "context": "CREATE TABLE table_25773116_2 (pole_position VARCHAR, fastest_lap VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_25773116_2 WHERE winning_team = \"Audette Racing\"", "question": "Where did Audette Racing win?", "context": "CREATE TABLE table_25773116_2 (location VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_25764073_3 WHERE writer_s_ = \"Peter Gawler\"", "question": "Name the directors for peter gawler", "context": "CREATE TABLE table_25764073_3 (director_s_ VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT MIN(episode__number) FROM table_25764073_3 WHERE writer_s_ = \"Anne Brooksbank and Vicki Madden\"", "question": "Name the least episode number for  anne brooksbank and vicki madden", "context": "CREATE TABLE table_25764073_3 (episode__number INTEGER, writer_s_ VARCHAR)"}, {"answer": "SELECT title FROM table_25764073_3 WHERE season__number = 35", "question": "Name the title for season number 35", "context": "CREATE TABLE table_25764073_3 (title VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT points_per_game FROM table_25774493_3 WHERE rebounds_per_game = \"15.0\"", "question": "What were the points per game in the selection where the rebounds per game were 15.0?", "context": "CREATE TABLE table_25774493_3 (points_per_game VARCHAR, rebounds_per_game VARCHAR)"}, {"answer": "SELECT blocks_per_game FROM table_25774493_3 WHERE field_goal_percentage = \".594 (2nd)\"", "question": "What were the blocks per game in the selection where the field goal percentage was .594 (2nd)?", "context": "CREATE TABLE table_25774493_3 (blocks_per_game VARCHAR, field_goal_percentage VARCHAR)"}, {"answer": "SELECT name FROM table_25794010_1 WHERE company = \"company D\"", "question": "Name the name for company d", "context": "CREATE TABLE table_25794010_1 (name VARCHAR, company VARCHAR)"}, {"answer": "SELECT name FROM table_25794010_1 WHERE organization_date = \"Unknown\"", "question": "Name the name for organization date being unknown", "context": "CREATE TABLE table_25794010_1 (name VARCHAR, organization_date VARCHAR)"}, {"answer": "SELECT name FROM table_25794010_1 WHERE county = \"Desha\"", "question": "Name the name for desha", "context": "CREATE TABLE table_25794010_1 (name VARCHAR, county VARCHAR)"}, {"answer": "SELECT company FROM table_25794010_1 WHERE county = \"Desha\"", "question": "Name the company for desha county", "context": "CREATE TABLE table_25794010_1 (company VARCHAR, county VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_25800134_1 WHERE series__number = 56", "question": "Who wrote the episode with series number 56?", "context": "CREATE TABLE table_25800134_1 (writer_s_ VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_25800134_1 WHERE airdate = \"February 16, 1957\"", "question": "What is largest series number for the episode that aired February 16, 1957?", "context": "CREATE TABLE table_25800134_1 (series__number INTEGER, airdate VARCHAR)"}, {"answer": "SELECT director FROM table_25800134_1 WHERE airdate = \"December 15, 1956\"", "question": "Who directed the episodes that aired December 15, 1956? ", "context": "CREATE TABLE table_25800134_1 (director VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_25800134_1 WHERE airdate = \"December 1, 1956\"", "question": "Who wrote the episode that aired December 1, 1956? ", "context": "CREATE TABLE table_25800134_1 (writer_s_ VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_25800134_13 WHERE airdate = \"October 14, 1968\"", "question": "Who was the writer of the episode that originally aired on October 14, 1968?", "context": "CREATE TABLE table_25800134_13 (writer_s_ VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_25800134_14 WHERE airdate = \"February 2, 1970\"", "question": "What is the season # for the episode with air date february 2, 1970?", "context": "CREATE TABLE table_25800134_14 (season__number INTEGER, airdate VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_25800134_17 WHERE airdate = \"September 11, 1972\"", "question": "Who was the writer who wrote the episode that was aired on September 11, 1972?", "context": "CREATE TABLE table_25800134_17 (writer_s_ VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT director FROM table_25800134_19 WHERE series__number = 626", "question": "Who directed episode number 626 in the series?", "context": "CREATE TABLE table_25800134_19 (director VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_25800134_2 WHERE season__number = 24", "question": "Who are all the writers of episodes in season 24?", "context": "CREATE TABLE table_25800134_2 (writer_s_ VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT title FROM table_25800134_2 WHERE airdate = \"May 10, 1958\"", "question": "What is the title of the episode that aired on May 10, 1958?", "context": "CREATE TABLE table_25800134_2 (title VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_25800134_4 WHERE season__number = 15", "question": "Who was the writer of episode 15?", "context": "CREATE TABLE table_25800134_4 (writer_s_ VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT title FROM table_25800134_4 WHERE season__number = 33", "question": "What is the title of #33?", "context": "CREATE TABLE table_25800134_4 (title VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_25800134_4 WHERE series__number = 158", "question": "How many directors worked on #158?", "context": "CREATE TABLE table_25800134_4 (director VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT COUNT(writer_s_) FROM table_25800134_3 WHERE season__number = 1", "question": "How many writers were for season #1?", "context": "CREATE TABLE table_25800134_3 (writer_s_ VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT director FROM table_25800134_3 WHERE airdate = \"May 2, 1959\"", "question": "Who was the director for the episode on May 2, 1959?", "context": "CREATE TABLE table_25800134_3 (director VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_25810656_3 WHERE production_code = 204", "question": "Name the number in series for production code being 204", "context": "CREATE TABLE table_25810656_3 (no_in_series VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_25810656_3 WHERE no_in_series = 25", "question": "Name the number of title for number in series being 25", "context": "CREATE TABLE table_25810656_3 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(stage) FROM table_25802618_15 WHERE winner = \"Mikhail Ignatiev\"", "question": "What was the latest stage won by Mikhail Ignatiev? ", "context": "CREATE TABLE table_25802618_15 (stage INTEGER, winner VARCHAR)"}, {"answer": "SELECT race FROM table_2581397_4 WHERE weight__kg_ = \"55\" AND winner_2nd = \"1st - Jim And Tonic\"", "question": "In what race was the weight in kg 55 and the winner/2nd 1st - Jim and Tonic?", "context": "CREATE TABLE table_2581397_4 (race VARCHAR, weight__kg_ VARCHAR, winner_2nd VARCHAR)"}, {"answer": "SELECT distance FROM table_2581397_4 WHERE race = \"Manikato Stakes\"", "question": "What was the distance in the Manikato Stakes race?", "context": "CREATE TABLE table_2581397_4 (distance VARCHAR, race VARCHAR)"}, {"answer": "SELECT distance FROM table_2581397_4 WHERE weight__kg_ = \"56\" AND winner_2nd = \"2nd - Fritz\"", "question": "What was the distance in the race where the weight in kg was 56 and the winner/2nd was 2nd - Fritz?", "context": "CREATE TABLE table_2581397_4 (distance VARCHAR, weight__kg_ VARCHAR, winner_2nd VARCHAR)"}, {"answer": "SELECT date FROM table_2581397_5 WHERE race = \"Doncaster\"", "question": "What date was the Doncaster race? ", "context": "CREATE TABLE table_2581397_5 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT air_date FROM table_25816476_2 WHERE team_guest_captain = \"John Bishop\"", "question": "What was the air date when the team guest captain was john bishop?", "context": "CREATE TABLE table_25816476_2 (air_date VARCHAR, team_guest_captain VARCHAR)"}, {"answer": "SELECT team_guest_captain FROM table_25816476_2 WHERE episode = 2", "question": "Who was the team guest captain for episode 2?", "context": "CREATE TABLE table_25816476_2 (team_guest_captain VARCHAR, episode VARCHAR)"}, {"answer": "SELECT team_swash FROM table_25816476_2 WHERE team_guest_captain = \"Gail Porter\"", "question": "Who was the team swash when the team guest captain was gail porter?", "context": "CREATE TABLE table_25816476_2 (team_swash VARCHAR, team_guest_captain VARCHAR)"}, {"answer": "SELECT COUNT(team_coxy) FROM table_25816476_2 WHERE air_date = \"24 January 2010\" AND team_guest_captain = \"Gail Porter\"", "question": "How many entries are there for team coxy for the air date of 24 january 2010 and team guest captain of gail porter?", "context": "CREATE TABLE table_25816476_2 (team_coxy VARCHAR, air_date VARCHAR, team_guest_captain VARCHAR)"}, {"answer": "SELECT COUNT(air_date) FROM table_25816476_2 WHERE team_guest_captain = \"Stephen K Amos\"", "question": "How many entries are shown for an air date when the team guest captain was stephen k amos?", "context": "CREATE TABLE table_25816476_2 (air_date VARCHAR, team_guest_captain VARCHAR)"}, {"answer": "SELECT group FROM table_2581397_2 WHERE venue = \"Moonee Valley\"", "question": "What group was sunline in when he was at moonee valley?", "context": "CREATE TABLE table_2581397_2 (group VARCHAR, venue VARCHAR)"}, {"answer": "SELECT win_loss FROM table_25820786_2 WHERE nationality = \"Switzerland\"", "question": "What was the win-loss record for the player from Switzerland? ", "context": "CREATE TABLE table_25820786_2 (win_loss VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT win_loss FROM table_25820584_7 WHERE year_s_ = \"1969\"", "question": "What was the win loss record the lady who appeard in 1969?", "context": "CREATE TABLE table_25820584_7 (win_loss VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT player FROM table_25820584_7 WHERE year_s_ = \"1969\"", "question": "What player(s) appeared in 1969?", "context": "CREATE TABLE table_25820584_7 (player VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT name FROM table_25826954_7 WHERE nationality = \"Norway\"", "question": "Name the name for norway nationality", "context": "CREATE TABLE table_25826954_7 (name VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT written_by FROM table_25830834_2 WHERE production_code = \"2J5153\"", "question": "Who wrote the episode with the production code 2j5153?", "context": "CREATE TABLE table_25830834_2 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT filter FROM table_2583036_1 WHERE wavelength = \"222mm (K-band)\"", "question": "what is the filter when the wavelength is 222mm (k-band)?", "context": "CREATE TABLE table_2583036_1 (filter VARCHAR, wavelength VARCHAR)"}, {"answer": "SELECT COUNT(camera) FROM table_2583036_1 WHERE exposures = 53", "question": "how many times was the exposures 53?", "context": "CREATE TABLE table_2583036_1 (camera VARCHAR, exposures VARCHAR)"}, {"answer": "SELECT exposures FROM table_2583036_1 WHERE total_exposure_time = \"105,000s\"", "question": "how many exposures where there when the total exposure time is 105,000s?", "context": "CREATE TABLE table_2583036_1 (exposures VARCHAR, total_exposure_time VARCHAR)"}, {"answer": "SELECT camera FROM table_2583036_1 WHERE wavelength = \"814nm (I-band)\"", "question": "what is the camera used when the wavelength is 814nm (i-band)?", "context": "CREATE TABLE table_2583036_1 (camera VARCHAR, wavelength VARCHAR)"}, {"answer": "SELECT title FROM table_2582519_6 WHERE director = \"Paul Annett\"", "question": "What is the title of the show with director Paul Annett?", "context": "CREATE TABLE table_2582519_6 (title VARCHAR, director VARCHAR)"}, {"answer": "SELECT titles FROM table_25840200_1 WHERE notes = \"Undercard of Stevenson/Bellew\"", "question": "What was the title for the Undercard of Stevenson/Bellew?", "context": "CREATE TABLE table_25840200_1 (titles VARCHAR, notes VARCHAR)"}, {"answer": "SELECT titles FROM table_25840200_1 WHERE date = \"November 9\" AND division = \"Super Bantamweight\"", "question": "What are the titles for the November 9 Super Bantamweight division?", "context": "CREATE TABLE table_25840200_1 (titles VARCHAR, date VARCHAR, division VARCHAR)"}, {"answer": "SELECT COUNT(notes) FROM table_25840200_1 WHERE fight = \"Devon Alexander vs. Shawn Porter\"", "question": "How many notes are there for the Devon Alexander vs. Shawn Porter fight?", "context": "CREATE TABLE table_25840200_1 (notes VARCHAR, fight VARCHAR)"}, {"answer": "SELECT division FROM table_25840200_1 WHERE tv = \"HBO PPV\"", "question": "What division was on HBO PPV?", "context": "CREATE TABLE table_25840200_1 (division VARCHAR, tv VARCHAR)"}, {"answer": "SELECT location FROM table_25840200_1 WHERE notes = \"Undercard of Stevenson/Bellew\"", "question": "Where was the Undercard of Stevenson/Bellew?", "context": "CREATE TABLE table_25840200_1 (location VARCHAR, notes VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_25840200_1 WHERE location = \"Verona, USA\"", "question": "What was the division number for Verona, USA?", "context": "CREATE TABLE table_25840200_1 (division VARCHAR, location VARCHAR)"}, {"answer": "SELECT cvt_hd FROM table_25839957_5 WHERE market = \"Mobile\"", "question": "What mobile markets have cvt hd?", "context": "CREATE TABLE table_25839957_5 (cvt_hd VARCHAR, market VARCHAR)"}, {"answer": "SELECT COUNT(opengl) FROM table_25839957_5 WHERE code_name = \"Ironlake ( Clarkdale )\"", "question": "How many opengl have the ironlake ( clarkdale ) code name?", "context": "CREATE TABLE table_25839957_5 (opengl VARCHAR, code_name VARCHAR)"}, {"answer": "SELECT core_clock___mhz__ FROM table_25839957_5 WHERE memory_bandwidth___gb_s__ = \"21.3\"", "question": "What core clocks ( mhz ) have a 21.3 memory bandwidth ( gb/s )?", "context": "CREATE TABLE table_25839957_5 (core_clock___mhz__ VARCHAR, memory_bandwidth___gb_s__ VARCHAR)"}, {"answer": "SELECT MIN(execution_units) FROM table_25839957_5", "question": "What's the minimum number of execution units?", "context": "CREATE TABLE table_25839957_5 (execution_units INTEGER)"}, {"answer": "SELECT COUNT(shader_model) FROM table_25839957_5 WHERE core_clock___mhz__ = \"900\"", "question": "How many shader models have a 900 core clock ( mhz )?", "context": "CREATE TABLE table_25839957_5 (shader_model VARCHAR, core_clock___mhz__ VARCHAR)"}, {"answer": "SELECT MAX(population__2000_census__) FROM table_2588674_1 WHERE area_km\u00b2 = \"2.33\"", "question": "What is the population for the place with an area of 2.33 km2?", "context": "CREATE TABLE table_2588674_1 (population__2000_census__ INTEGER, area_km\u00b2 VARCHAR)"}, {"answer": "SELECT COUNT(region) FROM table_2588674_1 WHERE village = \"Asan-Maina\"", "question": "How many places named asan-maina?", "context": "CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR)"}, {"answer": "SELECT COUNT(region) FROM table_2588674_1 WHERE village = \"Mongmong-Toto-Maite\"", "question": "How many places named mongmong-toto-maite?", "context": "CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR)"}, {"answer": "SELECT MIN(pop_density) FROM table_2588674_1 WHERE village = \"Mongmong-Toto-Maite\"", "question": "What is the population density of mongmong-toto-maite?", "context": "CREATE TABLE table_2588674_1 (pop_density INTEGER, village VARCHAR)"}, {"answer": "SELECT village FROM table_2588674_1 WHERE area_km\u00b2 = \"27.19\"", "question": "What village has an area of 27.19 km2?", "context": "CREATE TABLE table_2588674_1 (village VARCHAR, area_km\u00b2 VARCHAR)"}, {"answer": "SELECT region FROM table_2588674_1 WHERE village = \"Inarajan\"", "question": "What region is inarajan in?", "context": "CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR)"}, {"answer": "SELECT MAX(pos) FROM table_25887826_17 WHERE avg = \"1.8529\"", "question": "How many POS when the average is 1.8529?", "context": "CREATE TABLE table_25887826_17 (pos INTEGER, avg VARCHAR)"}, {"answer": "SELECT MAX(07 AS _a_pts) FROM table_25887826_17 WHERE avg = \"1.4902\"", "question": "How many 07 A points for the team with 1.4902 average?", "context": "CREATE TABLE table_25887826_17 (avg VARCHAR)"}, {"answer": "SELECT COUNT(08 AS _a_pts) FROM table_25887826_17 WHERE avg = \"1.1863\"", "question": "How many figures for 08 A points for the team with 1.1863 average?", "context": "CREATE TABLE table_25887826_17 (avg VARCHAR)"}, {"answer": "SELECT MAX(10 AS _c_pts) FROM table_25887826_17 WHERE total_pts = 39", "question": "What is the largest number of 10 C points for a team with 39 total points?", "context": "CREATE TABLE table_25887826_17 (total_pts VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25851971_1 WHERE us_viewers__million_ = \"4.82\"", "question": "Who directed the episode with 4.82 million U.S. viewers?", "context": "CREATE TABLE table_25851971_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_25851971_1 WHERE production_code = \"2J5457\"", "question": "Who directed the episode that had a production code of 2j5457?", "context": "CREATE TABLE table_25851971_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_25851971_1 WHERE written_by = \"Anthony Sparks\"", "question": "What episode number was written by Anthony Sparks?", "context": "CREATE TABLE table_25851971_1 (no INTEGER, written_by VARCHAR)"}, {"answer": "SELECT production_code FROM table_25851971_1 WHERE written_by = \"Anthony Sparks\"", "question": "What was the production code of the episode written by Anthony Sparks?", "context": "CREATE TABLE table_25851971_1 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_25851971_1 WHERE written_by = \"Karin Gist\"", "question": "What episode number was written by Karin Gist?", "context": "CREATE TABLE table_25851971_1 (no INTEGER, written_by VARCHAR)"}, {"answer": "SELECT leader_battle FROM table_25920798_2 WHERE vote = \"4-3\"", "question": "Name the leader battle for 4-3 vote", "context": "CREATE TABLE table_25920798_2 (leader_battle VARCHAR, vote VARCHAR)"}, {"answer": "SELECT finish FROM table_25920798_2 WHERE vote = \"4-4\"", "question": "Name the finish for 4-4", "context": "CREATE TABLE table_25920798_2 (finish VARCHAR, vote VARCHAR)"}, {"answer": "SELECT eliminated FROM table_25920798_2 WHERE finish = \"Left Day 9\"", "question": "Name the left day 9 finish for eliminated", "context": "CREATE TABLE table_25920798_2 (eliminated VARCHAR, finish VARCHAR)"}, {"answer": "SELECT leader_battle FROM table_25920798_2 WHERE eliminated = \"Plamen\"", "question": "Name the leader battle for plamen", "context": "CREATE TABLE table_25920798_2 (leader_battle VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT institution FROM table_2589963_1 WHERE women = \"Lady Saints\"", "question": "What institution is represented by the lady saints?", "context": "CREATE TABLE table_2589963_1 (institution VARCHAR, women VARCHAR)"}, {"answer": "SELECT status FROM table_2589963_1 WHERE juniors = \"Baby Olympians\"", "question": "What status of school is the school represented by the baby olympians?", "context": "CREATE TABLE table_2589963_1 (status VARCHAR, juniors VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_2589963_1 WHERE color = \"Green and White\"", "question": "What year was the school with green and white colors founded?", "context": "CREATE TABLE table_2589963_1 (founded INTEGER, color VARCHAR)"}, {"answer": "SELECT status FROM table_2589963_1 WHERE institution = \"Informatics International College\"", "question": "What status of school is informatics international college?", "context": "CREATE TABLE table_2589963_1 (status VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(denominations__gold_weight_) FROM table_2592308_1 WHERE country = \"Austria\"", "question": "How many catagories for denominations does Austria have? ", "context": "CREATE TABLE table_2592308_1 (denominations__gold_weight_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT denominations__gold_weight_ FROM table_2592308_1 WHERE country = \"China\"", "question": "What are all the denominations for China?", "context": "CREATE TABLE table_2592308_1 (denominations__gold_weight_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT name_of_award FROM table_25926120_7 WHERE name_of_film = \"Sana Keithel\"", "question": "what is the name of award when the name of film is sana keithel?", "context": "CREATE TABLE table_25926120_7 (name_of_award VARCHAR, name_of_film VARCHAR)"}, {"answer": "SELECT name_of_award FROM table_25926120_7 WHERE awardee_s_ = \"Elangbam Natasha\"", "question": "what is the name of award when the awardee(s) is elangbam natasha?", "context": "CREATE TABLE table_25926120_7 (name_of_award VARCHAR, awardee_s_ VARCHAR)"}, {"answer": "SELECT COUNT(cash_prize) FROM table_25926120_7 WHERE name_of_film = \"Narmeen\"", "question": "how many times is the name of film narmeen?", "context": "CREATE TABLE table_25926120_7 (cash_prize VARCHAR, name_of_film VARCHAR)"}, {"answer": "SELECT language FROM table_25926120_7 WHERE name_of_award = \"Best Editing\"", "question": "what is the language when the name of award is best editing?", "context": "CREATE TABLE table_25926120_7 (language VARCHAR, name_of_award VARCHAR)"}, {"answer": "SELECT awardee_s_ FROM table_25926120_7 WHERE name_of_award = \"Best Agricultural Film\"", "question": "who are the awardees when the name of award is best agricultural film?", "context": "CREATE TABLE table_25926120_7 (awardee_s_ VARCHAR, name_of_award VARCHAR)"}, {"answer": "SELECT language FROM table_25926120_7 WHERE awardee_s_ = \"Re-recordist : Mateen Ahmad\"", "question": "what is the language when the awardee is re-recordist : mateen ahmad?", "context": "CREATE TABLE table_25926120_7 (language VARCHAR, awardee_s_ VARCHAR)"}, {"answer": "SELECT MAX(jews_and_others_1) FROM table_25947046_1", "question": "What is the highest Jews and others 1?", "context": "CREATE TABLE table_25947046_1 (jews_and_others_1 INTEGER)"}, {"answer": "SELECT MIN(jews_and_others_1) FROM table_25947046_1 WHERE localities = 11", "question": "What is the lowest jews and others 1 for the localities 11?", "context": "CREATE TABLE table_25947046_1 (jews_and_others_1 INTEGER, localities VARCHAR)"}, {"answer": "SELECT arabs FROM table_25947046_1 WHERE annual_population_growth_rate = \"1.7%\"", "question": "What is the arabs when the annual population growth rate is 1.7%?", "context": "CREATE TABLE table_25947046_1 (arabs VARCHAR, annual_population_growth_rate VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_25947046_1 WHERE arabs = 4000", "question": "What is the lowest total when arabs is 4000?", "context": "CREATE TABLE table_25947046_1 (total INTEGER, arabs VARCHAR)"}, {"answer": "SELECT awardee_s_ FROM table_25926120_3 WHERE name_of_award = \"Best Actress\"", "question": "Who won best actress?", "context": "CREATE TABLE table_25926120_3 (awardee_s_ VARCHAR, name_of_award VARCHAR)"}, {"answer": "SELECT COUNT(cash_prize) FROM table_25926120_3 WHERE language = \"Hindi\" AND name_of_film = \"Jodhaa Akbar\"", "question": "How many cash prizes were given for the hindi language film jodhaa akbar?", "context": "CREATE TABLE table_25926120_3 (cash_prize VARCHAR, language VARCHAR, name_of_film VARCHAR)"}, {"answer": "SELECT COUNT(name_of_film) FROM table_25926120_3 WHERE language = \"Hindi\"", "question": "How many films were in hindi?", "context": "CREATE TABLE table_25926120_3 (name_of_film VARCHAR, language VARCHAR)"}, {"answer": "SELECT COUNT(name_of_film) FROM table_25926120_3 WHERE language = \"Assamese\"", "question": "How many films were in assamese?", "context": "CREATE TABLE table_25926120_3 (name_of_film VARCHAR, language VARCHAR)"}, {"answer": "SELECT awardee_s_ FROM table_25926120_3 WHERE name_of_award = \"Best Actor\"", "question": "Who won best actor?", "context": "CREATE TABLE table_25926120_3 (awardee_s_ VARCHAR, name_of_award VARCHAR)"}, {"answer": "SELECT winner FROM table_25938117_1 WHERE date = \"Jan 24\"", "question": "Name the winner for jan 24", "context": "CREATE TABLE table_25938117_1 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_25938117_1 WHERE tournament = \"Toshiba Classic\"", "question": "Name the total number of dates for toshiba classic", "context": "CREATE TABLE table_25938117_1 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_25938117_1 WHERE location = \"Dominican Republic\"", "question": "Name the tournament for dominican republic", "context": "CREATE TABLE table_25938117_1 (tournament VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(winner) FROM table_25938117_1 WHERE tournament = \"Allianz Championship\"", "question": "Name the total number of winners for allianz championship", "context": "CREATE TABLE table_25938117_1 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT 1 AS st_prize___$__ FROM table_25938117_1 WHERE tournament = \"Senior PGA Championship\"", "question": "Name the 1st prize for senior pga championship", "context": "CREATE TABLE table_25938117_1 (tournament VARCHAR)"}, {"answer": "SELECT place FROM table_25931938_1 WHERE aggregate = 35", "question": "What was the place for the celebrity whose aggregate was 35? ", "context": "CREATE TABLE table_25931938_1 (place VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT MIN(dances) FROM table_25931938_1 WHERE celebrity = \"John Barnes\"", "question": "How many dances did John Barnes have? ", "context": "CREATE TABLE table_25931938_1 (dances INTEGER, celebrity VARCHAR)"}, {"answer": "SELECT MAX(age) FROM table_25931938_1 WHERE aggregate = 402", "question": "What is the age of the celebrity who had a 402 aggregate? ", "context": "CREATE TABLE table_25931938_1 (age INTEGER, aggregate VARCHAR)"}, {"answer": "SELECT MAX(aggregate) FROM table_25931938_1 WHERE celebrity = \"Ricky Groves\"", "question": "What was the aggregate for Ricky Groves?", "context": "CREATE TABLE table_25931938_1 (aggregate INTEGER, celebrity VARCHAR)"}, {"answer": "SELECT aggregate FROM table_25931938_1 WHERE dances = 7 AND known_for = \"Singer\"", "question": "What was the aggregate for the celebrity who was known for being a singer and had 7 dances?", "context": "CREATE TABLE table_25931938_1 (aggregate VARCHAR, dances VARCHAR, known_for VARCHAR)"}, {"answer": "SELECT conditions_of_access FROM table_25965003_3 WHERE access_using_a_croatian_identity_card = \"Yes\" AND length_of_stay_permitted = \"Freedom of movement\"", "question": "What are the conditions of access where access using a Croatian identity card is yes and the length of stay permitted is freedom of movement?", "context": "CREATE TABLE table_25965003_3 (conditions_of_access VARCHAR, access_using_a_croatian_identity_card VARCHAR, length_of_stay_permitted VARCHAR)"}, {"answer": "SELECT access_using_a_croatian_identity_card FROM table_25965003_3 WHERE countries_and_territories = \"Jersey\"", "question": "Can one access the Jersey territory using a Croatian identity card?", "context": "CREATE TABLE table_25965003_3 (access_using_a_croatian_identity_card VARCHAR, countries_and_territories VARCHAR)"}, {"answer": "SELECT fee__if_applicable_ FROM table_25965003_3 WHERE countries_and_territories = \"Norway\"", "question": "What is the fee (if applicable) for Norway?", "context": "CREATE TABLE table_25965003_3 (fee__if_applicable_ VARCHAR, countries_and_territories VARCHAR)"}, {"answer": "SELECT length_of_stay_permitted FROM table_25965003_3 WHERE countries_and_territories = \"Jersey\"", "question": "What is the permitted length of stay in the Jersey territory?", "context": "CREATE TABLE table_25965003_3 (length_of_stay_permitted VARCHAR, countries_and_territories VARCHAR)"}, {"answer": "SELECT access_using_a_croatian_identity_card FROM table_25965003_3 WHERE countries_and_territories = \"Faroe Islands\"", "question": "Can one access the Faroe Islands using a Croatian identity card?", "context": "CREATE TABLE table_25965003_3 (access_using_a_croatian_identity_card VARCHAR, countries_and_territories VARCHAR)"}, {"answer": "SELECT length_of_stay_permitted FROM table_25965003_3 WHERE countries_and_territories = \"European Union\"", "question": "What length of stay is permitted in the European Union?", "context": "CREATE TABLE table_25965003_3 (length_of_stay_permitted VARCHAR, countries_and_territories VARCHAR)"}, {"answer": "SELECT complement FROM table_2596811_12 WHERE killed = \"3 off 37 men\"", "question": "What was the complement for the unit that had 3 off 37 men killed?", "context": "CREATE TABLE table_2596811_12 (complement VARCHAR, killed VARCHAR)"}, {"answer": "SELECT COUNT(wounded) FROM table_2596811_12 WHERE complement = \"22 off 637 men\"", "question": "What is the number of wounded figures associated with a complement of 22 off 637 men?", "context": "CREATE TABLE table_2596811_12 (wounded VARCHAR, complement VARCHAR)"}, {"answer": "SELECT COUNT(commander) FROM table_2596811_12 WHERE killed = \"0 off 63 men\"", "question": "What is the number of commanders that had 0 off 63 men killed?", "context": "CREATE TABLE table_2596811_12 (commander VARCHAR, killed VARCHAR)"}, {"answer": "SELECT complement FROM table_2596811_12 WHERE killed = \"0 off 3 men\" AND wounded = \"0 off 2 men\"", "question": "What was the complement associated with 0 off 3 men killed and 0 off 2 men wounded?", "context": "CREATE TABLE table_2596811_12 (complement VARCHAR, killed VARCHAR, wounded VARCHAR)"}, {"answer": "SELECT COUNT(rainfall_by_depth__mm_year_) FROM table_25983027_1 WHERE infiltration__km_3__year_ = \"9.3\"", "question": "How many regions had rainfall infiltration (km 3/year) of 9.3?", "context": "CREATE TABLE table_25983027_1 (rainfall_by_depth__mm_year_ VARCHAR, infiltration__km_3__year_ VARCHAR)"}, {"answer": "SELECT rainfall_by_volume__km_3__year_ FROM table_25983027_1 WHERE rainfall_by_depth__mm_year_ = 3527", "question": "What was the rainfall by volume in Huetar Atlantico where the rainfall depth (mm/year) was 3527?", "context": "CREATE TABLE table_25983027_1 (rainfall_by_volume__km_3__year_ VARCHAR, rainfall_by_depth__mm_year_ VARCHAR)"}, {"answer": "SELECT rainfall_by_volume__km_3__year_ FROM table_25983027_1 WHERE rainfall_by_depth__mm_year_ = 2801", "question": "In Pacifico Central where the rainfall by depth (mm/year) was 2801 what was the rainfall by volume?", "context": "CREATE TABLE table_25983027_1 (rainfall_by_volume__km_3__year_ VARCHAR, rainfall_by_depth__mm_year_ VARCHAR)"}, {"answer": "SELECT evapotranspiration__km_3__year_ FROM table_25983027_1 WHERE rainfall_by_volume__km_3__year_ = \"13.2\"", "question": "In the region where the rainfall by volume (km 3 /year) was 13.2, what was the evapotranspiration (km 3 /year)?", "context": "CREATE TABLE table_25983027_1 (evapotranspiration__km_3__year_ VARCHAR, rainfall_by_volume__km_3__year_ VARCHAR)"}, {"answer": "SELECT infiltration__km_3__year_ FROM table_25983027_1 WHERE region = \"Central\"", "question": "In the Central region, what was the infiltration (km 3 /year)?", "context": "CREATE TABLE table_25983027_1 (infiltration__km_3__year_ VARCHAR, region VARCHAR)"}, {"answer": "SELECT rainfall_by_depth__mm_year_ FROM table_25983027_1 WHERE land_area__km_2__ = \"8,543.2\"", "question": "In the Central region, where the land area (km 2) is 8,543.2, what was the rainfall by depth (mm/year)?", "context": "CREATE TABLE table_25983027_1 (rainfall_by_depth__mm_year_ VARCHAR, land_area__km_2__ VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_2597876_1 WHERE winnings = \"$90,700\"", "question": "How many wins did Parsons have in the year where his winnings were $90,700? ", "context": "CREATE TABLE table_2597876_1 (wins INTEGER, winnings VARCHAR)"}, {"answer": "SELECT position FROM table_2597876_1 WHERE year = 1992", "question": "What position was Parsons in for 1992? ", "context": "CREATE TABLE table_2597876_1 (position VARCHAR, year VARCHAR)"}, {"answer": "SELECT young_rider_classification FROM table_25999087_2 WHERE winner = \"Jelle Vanendert\"", "question": "Who is every young rider classification when Jelle Vanendert is the winner?", "context": "CREATE TABLE table_25999087_2 (young_rider_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT young_rider_classification FROM table_25999087_2 WHERE combativity_award = \"Yannick Talabardon\"", "question": "Who is every young rider classification if combativity award is Yannick Talabardon?", "context": "CREATE TABLE table_25999087_2 (young_rider_classification VARCHAR, combativity_award VARCHAR)"}, {"answer": "SELECT COUNT(mountains_classification) FROM table_25999087_2 WHERE winner = \"Rui Costa\"", "question": "How many mountains classifications when Rui Costa is the winner?", "context": "CREATE TABLE table_25999087_2 (mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT team_classification FROM table_25999087_2 WHERE points_classification = \"Philippe Gilbert\" AND mountains_classification = \"Johnny Hoogerland\" AND stage < 9.0", "question": "What is every team classification when points classification is Philippe Gilbert if mountains classification is Johnny Hoogerland and stage is less than 9.0?", "context": "CREATE TABLE table_25999087_2 (team_classification VARCHAR, stage VARCHAR, points_classification VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_25997153_1 WHERE directed_by = \"Dan Lerner\"", "question": "how many million u.s. viewers watched the episode directed by dan lerner?", "context": "CREATE TABLE table_25997153_1 (us_viewers__million_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_25997153_1 WHERE us_viewers__million_ = \"16.17\"", "question": "what is the latest episode in the series that had 16.17 million u.s. viewers?", "context": "CREATE TABLE table_25997153_1 (no_in_series INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_25997153_1 WHERE production_code = \"3X5362\"", "question": "What is the title of the episode with the production code 3x5362?", "context": "CREATE TABLE table_25997153_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(nsg_nr) FROM table_26013618_1 WHERE date_established = \"19961220 20.12.1996\"", "question": "What Nature reserve number was established on 19961220 20.12.1996", "context": "CREATE TABLE table_26013618_1 (nsg_nr INTEGER, date_established VARCHAR)"}, {"answer": "SELECT COUNT(nsg_nr) FROM table_26013618_1 WHERE date_established = \"19740329 29.03.1974\"", "question": "How many reserves were established on 19740329 29.03.1974?", "context": "CREATE TABLE table_26013618_1 (nsg_nr VARCHAR, date_established VARCHAR)"}, {"answer": "SELECT date_established FROM table_26013618_1 WHERE name_of_the_nature_reserve = \"Stellbrookmoor\"", "question": "When was Stellbrookmoor established?", "context": "CREATE TABLE table_26013618_1 (date_established VARCHAR, name_of_the_nature_reserve VARCHAR)"}, {"answer": "SELECT district___town FROM table_26013618_1 WHERE area__ha_ = \"163,62\"", "question": "What town has the reserve with an area of 163,62?", "context": "CREATE TABLE table_26013618_1 (district___town VARCHAR, area__ha_ VARCHAR)"}, {"answer": "SELECT COUNT(nsg_nr) FROM table_26013618_1 WHERE district___town = \"Herzogtum Lauenburg\" AND area__ha_ = \"123,14\"", "question": "How many reserves are in Herzogtum Lauenburg with an area of 123,14?", "context": "CREATE TABLE table_26013618_1 (nsg_nr VARCHAR, district___town VARCHAR, area__ha_ VARCHAR)"}, {"answer": "SELECT COUNT(name_of_the_nature_reserve) FROM table_26013618_1 WHERE nsg_nr = 54", "question": "How many names does nature reserve 54 have?", "context": "CREATE TABLE table_26013618_1 (name_of_the_nature_reserve VARCHAR, nsg_nr VARCHAR)"}, {"answer": "SELECT title FROM table_25996938_1 WHERE us_viewers__million_ = \"18.74\"", "question": "Which episode did 18.74 million people tune in?", "context": "CREATE TABLE table_25996938_1 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_25996938_1 WHERE no_in_series = 11", "question": "Which prod code was series 11?", "context": "CREATE TABLE table_25996938_1 (production_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(localities) FROM table_26007767_1", "question": "What is the highest localities?", "context": "CREATE TABLE table_26007767_1 (localities INTEGER)"}, {"answer": "SELECT MIN(arabs) FROM table_26007767_1 WHERE metropolitan_ring = \"Inner Ring 3\"", "question": "What is the least arabs when the metropolitan ring is inner ring 3?", "context": "CREATE TABLE table_26007767_1 (arabs INTEGER, metropolitan_ring VARCHAR)"}, {"answer": "SELECT COUNT(localities) FROM table_26007767_1 WHERE population_density__per_km\u00b2_ = \"2.5\"", "question": "How many time is the population density (per km\u00b2) is 2.5?", "context": "CREATE TABLE table_26007767_1 (localities VARCHAR, population_density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(stage) FROM table_26010857_13 WHERE teams_classification = \"Cerv\u00e9lo TestTeam\"", "question": "What is the number of stages where the teams classification leader is Cerv\u00e9lo Testteam?", "context": "CREATE TABLE table_26010857_13 (stage VARCHAR, teams_classification VARCHAR)"}, {"answer": "SELECT MAX(stage) FROM table_26010857_13 WHERE teams_classification = \"Team Sky\"", "question": "How many stages did Team Sky lead the teams classification?", "context": "CREATE TABLE table_26010857_13 (stage INTEGER, teams_classification VARCHAR)"}, {"answer": "SELECT general_classification FROM table_26010857_13 WHERE stage = 3", "question": "Who leads the general classification in stage 3?", "context": "CREATE TABLE table_26010857_13 (general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT COUNT(prod_code) FROM table_2602958_4 WHERE no = 45", "question": "How many production codes are there for episode number 45?", "context": "CREATE TABLE table_2602958_4 (prod_code VARCHAR, no VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_2602958_4 WHERE _number = 6", "question": "Who wrote episode 6 in season 3?", "context": "CREATE TABLE table_2602958_4 (writer_s_ VARCHAR, _number VARCHAR)"}, {"answer": "SELECT _number FROM table_2602958_4 WHERE prod_code = 175020", "question": "Which episodein season 3 had 175020 for a production code?", "context": "CREATE TABLE table_2602958_4 (_number VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_2602958_4 WHERE no = 45", "question": "Who wrote episode number 45?", "context": "CREATE TABLE table_2602958_4 (writer_s_ VARCHAR, no VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_2602958_3 WHERE no = 38", "question": "How many viewers in millions for episode number 38?", "context": "CREATE TABLE table_2602958_3 (us_viewers__million_ VARCHAR, no VARCHAR)"}, {"answer": "SELECT director FROM table_2602958_3 WHERE prod_code = 227451", "question": "Who directed the episode with production code 227451?", "context": "CREATE TABLE table_2602958_3 (director VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2602958_3 WHERE director = \"Kevin Dowling\"", "question": "What is the original air date for the episode directed by kevin dowling?", "context": "CREATE TABLE table_2602958_3 (original_air_date VARCHAR, director VARCHAR)"}, {"answer": "SELECT ba___running_bear FROM table_2603017_2 WHERE b___bishop = \"RN - Running Stag\"", "question": "what is ba - running bear where b - bishop is rn - running stag?", "context": "CREATE TABLE table_2603017_2 (ba___running_bear VARCHAR, b___bishop VARCHAR)"}, {"answer": "SELECT b___bishop FROM table_2603017_2 WHERE ab___angry_boar = \"VW - Vertical Wolf\"", "question": "what is b - bishop where ab - angry boar is vw - vertical wolf?", "context": "CREATE TABLE table_2603017_2 (b___bishop VARCHAR, ab___angry_boar VARCHAR)"}, {"answer": "SELECT ba___running_bear FROM table_2603017_2 WHERE ab___angry_boar = \"OS - Ox Soldier\"", "question": "what is ba - running bear where ab - angry boar is os - ox soldier?", "context": "CREATE TABLE table_2603017_2 (ba___running_bear VARCHAR, ab___angry_boar VARCHAR)"}, {"answer": "SELECT b___bishop FROM table_2603017_2 WHERE bc___beast_cadet = \"GR - Great Dove\"", "question": "what is b - bishop where bc - beast cadet is gr - great dove?", "context": "CREATE TABLE table_2603017_2 (b___bishop VARCHAR, bc___beast_cadet VARCHAR)"}, {"answer": "SELECT bb___blind_bear FROM table_2603017_2 WHERE ba___running_bear = \"MF - Mountain Falcon\"", "question": "what is bb - blind bear where ba - running bear is mf - mountain falcon?", "context": "CREATE TABLE table_2603017_2 (bb___blind_bear VARCHAR, ba___running_bear VARCHAR)"}, {"answer": "SELECT bb___blind_bear FROM table_2603017_2 WHERE ba___running_bear = \"TC - Tile Chariot\"", "question": "what is bb - blind bear where ba - running bear is tc - tile chariot?", "context": "CREATE TABLE table_2603017_2 (bb___blind_bear VARCHAR, ba___running_bear VARCHAR)"}, {"answer": "SELECT MIN(die_size__mm_2__) FROM table_26040604_1 WHERE sm_count = 2", "question": "What is the minimum die size for an SM count of exactly 2?", "context": "CREATE TABLE table_26040604_1 (die_size__mm_2__ INTEGER, sm_count VARCHAR)"}, {"answer": "SELECT COUNT(die_size__mm_2__) FROM table_26040604_1 WHERE texture___gt__s_ = \"34\"", "question": "How many die sizes have a texture of exactly 34?", "context": "CREATE TABLE table_26040604_1 (die_size__mm_2__ VARCHAR, texture___gt__s_ VARCHAR)"}, {"answer": "SELECT model FROM table_26040604_1 WHERE launch = \"September 3, 2010\"", "question": "What model has a launch of September 3, 2010?", "context": "CREATE TABLE table_26040604_1 (model VARCHAR, launch VARCHAR)"}, {"answer": "SELECT dram_type FROM table_26040604_1 WHERE sm_count = 6", "question": "What was the DRAM type of an SM Count of 6?", "context": "CREATE TABLE table_26040604_1 (dram_type VARCHAR, sm_count VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_2602958_5 WHERE _number = 8", "question": "Who wrote the movie positioned at 8 on the list?", "context": "CREATE TABLE table_2602958_5 (writer_s_ VARCHAR, _number VARCHAR)"}, {"answer": "SELECT passes_through___district_s FROM table_26036389_1 WHERE mdr_no = 47", "question": "What district does the road with a MDR number of 47 pass through?", "context": "CREATE TABLE table_26036389_1 (passes_through___district_s VARCHAR, mdr_no VARCHAR)"}, {"answer": "SELECT MIN(mdr_no) FROM table_26036389_1 WHERE name_of_road = \"Rait Charhi Dharamshala\"", "question": "What is the MDR number of Rait Charhi Dharamshala?", "context": "CREATE TABLE table_26036389_1 (mdr_no INTEGER, name_of_road VARCHAR)"}, {"answer": "SELECT MAX(sr_no) FROM table_26036389_1 WHERE name_of_road = \"Banikhet Dalhouse Khajiar\"", "question": "What is the Sr. number of Banikhet Dalhouse Khajiar?", "context": "CREATE TABLE table_26036389_1 (sr_no INTEGER, name_of_road VARCHAR)"}, {"answer": "SELECT MIN(runs) FROM table_26041144_10", "question": "What is the smallest number of runs?", "context": "CREATE TABLE table_26041144_10 (runs INTEGER)"}, {"answer": "SELECT MIN(innings) FROM table_26041144_10 WHERE average = \"32.3\"", "question": "How many innings are there when the average is 32.3?", "context": "CREATE TABLE table_26041144_10 (innings INTEGER, average VARCHAR)"}, {"answer": "SELECT average FROM table_26041144_10 WHERE strike_rate = \"75.78\"", "question": "What was the average when the strike rate is 75.78?", "context": "CREATE TABLE table_26041144_10 (average VARCHAR, strike_rate VARCHAR)"}, {"answer": "SELECT MAX(catches) FROM table_26041144_16", "question": "What is the catches maximum number?", "context": "CREATE TABLE table_26041144_16 (catches INTEGER)"}, {"answer": "SELECT MIN(catches) FROM table_26041144_16 WHERE player = \"Hashan Tillakaratne\"", "question": "If the player is Hashan Tillakaratne, what is the catches minimum?", "context": "CREATE TABLE table_26041144_16 (catches INTEGER, player VARCHAR)"}, {"answer": "SELECT period FROM table_26041144_16 WHERE player = \"Hashan Tillakaratne\"", "question": "what is the period if the player is Hashan Tillakaratne?", "context": "CREATE TABLE table_26041144_16 (period VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_26041144_16 WHERE player = \"Hashan Tillakaratne\"", "question": "What is the ranktotal number if the Hashan Tillakaratne?", "context": "CREATE TABLE table_26041144_16 (rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_26041144_16 WHERE catches = 131", "question": "If the catches is 131, what is the rank total number?", "context": "CREATE TABLE table_26041144_16 (rank VARCHAR, catches VARCHAR)"}, {"answer": "SELECT MAX(burglary) FROM table_26060884_2 WHERE property_crimes = 168630", "question": "What was the maximum burglary statistics if the property crimes is 168630?", "context": "CREATE TABLE table_26060884_2 (burglary INTEGER, property_crimes VARCHAR)"}, {"answer": "SELECT burglary FROM table_26060884_2 WHERE forcible_rape = 1233", "question": "How many burglary crimes were committed if the forcible rapes were 1233?", "context": "CREATE TABLE table_26060884_2 (burglary VARCHAR, forcible_rape VARCHAR)"}, {"answer": "SELECT COUNT(vehicle_theft) FROM table_26060884_2 WHERE forcible_rape = 1232", "question": "How many vehicle thefts data were recorded if forcible rape is 1232?", "context": "CREATE TABLE table_26060884_2 (vehicle_theft VARCHAR, forcible_rape VARCHAR)"}, {"answer": "SELECT COUNT(vehicle_theft) FROM table_26060884_2 WHERE population = 4465430", "question": "How many vehicle theft data were recorded for a year with a population of 4465430?", "context": "CREATE TABLE table_26060884_2 (vehicle_theft VARCHAR, population VARCHAR)"}, {"answer": "SELECT MIN(property_crimes) FROM table_26060884_2 WHERE burglary = 45350", "question": "What was the minimum property crimes stats if the burglary committed was 45350?", "context": "CREATE TABLE table_26060884_2 (property_crimes INTEGER, burglary VARCHAR)"}, {"answer": "SELECT average FROM table_26041144_11 WHERE player = \"Kumar Sangakkara\"", "question": "What was kumar sangakkara's average?", "context": "CREATE TABLE table_26041144_11 (average VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_26041144_11 WHERE average = \"36.74\"", "question": "Who was the player with a 36.74 average?", "context": "CREATE TABLE table_26041144_11 (player VARCHAR, average VARCHAR)"}, {"answer": "SELECT rank FROM table_26041144_11 WHERE average = \"39.69\"", "question": "What is the rank of the player with the 39.69 average?", "context": "CREATE TABLE table_26041144_11 (rank VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(matches) FROM table_26041144_11", "question": "What is the lowest number of matches for a record holder?", "context": "CREATE TABLE table_26041144_11 (matches INTEGER)"}, {"answer": "SELECT h264 FROM table_26099252_1 WHERE theora = \"2.3\"", "question": "When theora is 2.3, how much is the h.264?", "context": "CREATE TABLE table_26099252_1 (h264 VARCHAR, theora VARCHAR)"}, {"answer": "SELECT vp9___webm__ FROM table_26099252_1 WHERE vp8___webm__ = \"6.0\"", "question": "When vp8 ( webm ) is 6.0, how much is the vp9 ( webm )?", "context": "CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, vp8___webm__ VARCHAR)"}, {"answer": "SELECT vp9___webm__ FROM table_26099252_1 WHERE vp8___webm__ = \"4.4\"", "question": "When vp8 ( webm ) is 4.4, how much is vp9 ( webm )", "context": "CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, vp8___webm__ VARCHAR)"}, {"answer": "SELECT latest_stable_release FROM table_26099252_1 WHERE vp9___webm__ = \"No\" AND h264 = \"3.0\"", "question": "What is the last stable version where the h.264 is 3.0 and vp9 (webm) is no.", "context": "CREATE TABLE table_26099252_1 (latest_stable_release VARCHAR, vp9___webm__ VARCHAR, h264 VARCHAR)"}, {"answer": "SELECT vp9___webm__ FROM table_26099252_1 WHERE h264 = \"9.0\"", "question": "When h.264 is 9.0, how much is vp9 ( webm )", "context": "CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, h264 VARCHAR)"}, {"answer": "SELECT peletier FROM table_260938_1 WHERE systematics = \"Million 1\"", "question": "Name the peletier for systematics being million 1", "context": "CREATE TABLE table_260938_1 (peletier VARCHAR, systematics VARCHAR)"}, {"answer": "SELECT si_prefix FROM table_260938_1 WHERE chuquet = \"thousand\"", "question": "Name the si prefix for thousand chuquet", "context": "CREATE TABLE table_260938_1 (si_prefix VARCHAR, chuquet VARCHAR)"}, {"answer": "SELECT base_10 FROM table_260938_1 WHERE peletier = \"Bi llion\"", "question": "Name the base 10 for peletier for bi llion", "context": "CREATE TABLE table_260938_1 (base_10 VARCHAR, peletier VARCHAR)"}, {"answer": "SELECT COUNT(peletier) FROM table_260938_1 WHERE shortscale_comparison = \"Billion\"", "question": "Name the total number of peletier for shortscale comparison billion", "context": "CREATE TABLE table_260938_1 (peletier VARCHAR, shortscale_comparison VARCHAR)"}, {"answer": "SELECT base_10 FROM table_260938_1 WHERE shortscale_comparison = \"Billion\"", "question": "Name the base 10 for shortscale comparison for billion", "context": "CREATE TABLE table_260938_1 (base_10 VARCHAR, shortscale_comparison VARCHAR)"}, {"answer": "SELECT branding FROM table_2610582_3 WHERE callsign = \"DWBA-TV\"", "question": "What is the branding of the callsign DWBA-TV?", "context": "CREATE TABLE table_2610582_3 (branding VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT station_type FROM table_2610582_3 WHERE callsign = \"DWMC-TV\"", "question": "What is the station type of DWMC-TV?", "context": "CREATE TABLE table_2610582_3 (station_type VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT location__transmitter_site_ FROM table_2610582_3 WHERE power_kw__erp_ = \"5kW (10kW ERP)\"", "question": "What is the location that has a power of 5kw (10kw ERP)?", "context": "CREATE TABLE table_2610582_3 (location__transmitter_site_ VARCHAR, power_kw__erp_ VARCHAR)"}, {"answer": "SELECT power_kw__erp_ FROM table_2610582_3 WHERE ch__number = \"TV-23\" AND callsign = \"DYCG-TV\"", "question": "What is the power, in kW, of channel TV-23, callsign DYCG-TV?", "context": "CREATE TABLE table_2610582_3 (power_kw__erp_ VARCHAR, ch__number VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_2610582_7 WHERE location = \"General Santos\"", "question": "What's the power for General Santos?", "context": "CREATE TABLE table_2610582_7 (power__kw_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT branding FROM table_2610582_7 WHERE callsign = \"DYTC-FM\"", "question": "What bran is the callsign dytc-fm?", "context": "CREATE TABLE table_2610582_7 (branding VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT frequency FROM table_2610582_7 WHERE callsign = \"DXEC-FM\"", "question": "What frequency is dxec-fm?", "context": "CREATE TABLE table_2610582_7 (frequency VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT opponent FROM table_26108103_2 WHERE rushing_yards = 117", "question": "Who was the opponent when there was 117 rushing yards?", "context": "CREATE TABLE table_26108103_2 (opponent VARCHAR, rushing_yards VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_26108103_2", "question": "What was the earliest year?", "context": "CREATE TABLE table_26108103_2 (year INTEGER)"}, {"answer": "SELECT opponent FROM table_26108103_2 WHERE rushing_yards = 81", "question": "Who was the opponent when there was 81 rushing yards?", "context": "CREATE TABLE table_26108103_2 (opponent VARCHAR, rushing_yards VARCHAR)"}, {"answer": "SELECT rushing_yards FROM table_26108103_2 WHERE opponent = \"Indiana\" AND passing_yards = 503", "question": "How many rushing yards where there when the opponent was Indiana and there was 503 passing yards?", "context": "CREATE TABLE table_26108103_2 (rushing_yards VARCHAR, opponent VARCHAR, passing_yards VARCHAR)"}, {"answer": "SELECT opponent FROM table_26108103_2 WHERE player = \"Devin Gardner\"", "question": "Who was the opponent when Devin Gardner was the player?", "context": "CREATE TABLE table_26108103_2 (opponent VARCHAR, player VARCHAR)"}, {"answer": "SELECT points FROM table_26124171_1 WHERE team = \"Pole Services\"", "question": "How many points were scored on pole services?", "context": "CREATE TABLE table_26124171_1 (points VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_26124171_1 WHERE series = \"Championnat de France Formula Renault 2.0\"", "question": "How many teams were in the series championnat de france formula renault 2.0?", "context": "CREATE TABLE table_26124171_1 (team VARCHAR, series VARCHAR)"}, {"answer": "SELECT area__km_2__ FROM table_261222_1 WHERE population__2010_ = 153085", "question": "What is the area (km2) for the place with a 2010 population of 153085?", "context": "CREATE TABLE table_261222_1 (area__km_2__ VARCHAR, population__2010_ VARCHAR)"}, {"answer": "SELECT COUNT(city___municipality) FROM table_261222_1 WHERE area__km_2__ = \"506.64\"", "question": "How many city/municipalties have an area (km2) of 506.64?", "context": "CREATE TABLE table_261222_1 (city___municipality VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT COUNT(population__2010_) FROM table_261222_1 WHERE area__km_2__ = \"409.41\"", "question": "How many places have an area of 409.41 (km2)?", "context": "CREATE TABLE table_261222_1 (population__2010_ VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT date_of_creation FROM table_261222_1 WHERE city___municipality = \"Kibawe\"", "question": "What day was kibawe created?", "context": "CREATE TABLE table_261222_1 (date_of_creation VARCHAR, city___municipality VARCHAR)"}, {"answer": "SELECT COUNT(area__km_2__) FROM table_261222_1 WHERE city___municipality = \"Manolo Fortich\"", "question": "How many places are named manolo fortich?", "context": "CREATE TABLE table_261222_1 (area__km_2__ VARCHAR, city___municipality VARCHAR)"}, {"answer": "SELECT position FROM table_26141160_2 WHERE team = \"Dallas Burn\"", "question": "Dallas Burn's draft pick was which position?", "context": "CREATE TABLE table_26141160_2 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT written_by FROM table_26136228_3 WHERE us_viewers__millions_ = \"1.08\"", "question": "Who wrote the episode that had 1.08 million U.S. viewers?", "context": "CREATE TABLE table_26136228_3 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_26136228_3 WHERE series_no = 11", "question": "Who directed episode 11 in the series?", "context": "CREATE TABLE table_26136228_3 (directed_by VARCHAR, series_no VARCHAR)"}, {"answer": "SELECT MAX(episode_no) FROM table_26136228_3 WHERE us_viewers__millions_ = \"1.05\"", "question": "What episode number in the season had 1.05 million U.S. viewers?", "context": "CREATE TABLE table_26136228_3 (episode_no INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_26139405_1 WHERE viewers__in_millions_ = \"8.51\"", "question": "What is the name of the episode that had 8.51 million viewers?", "context": "CREATE TABLE table_26139405_1 (title VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT writer FROM table_26139405_1 WHERE episode__number = 26", "question": "Who wrote episode 26 in the series?", "context": "CREATE TABLE table_26139405_1 (writer VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT g__\u03bcs_km_ FROM table_261642_3 WHERE frequency__hz_ = \"100k\"", "question": "What is the g (\u03bcs/km)when the frequency (hz) is 100k?", "context": "CREATE TABLE table_261642_3 (g__\u03bcs_km_ VARCHAR, frequency__hz_ VARCHAR)"}, {"answer": "SELECT r__\u03c9_km_ FROM table_261642_3 WHERE frequency__hz_ = \"10k\"", "question": "What is the r (\u03c9/km) when the frequency is 10k?", "context": "CREATE TABLE table_261642_3 (r__\u03c9_km_ VARCHAR, frequency__hz_ VARCHAR)"}, {"answer": "SELECT c__nf_km_ FROM table_261642_3 WHERE r__\u03c9_km_ = \"463.59\"", "question": "What is the c (nf/km) when the r (\u03c9/km) is 463.59?", "context": "CREATE TABLE table_261642_3 (c__nf_km_ VARCHAR, r__\u03c9_km_ VARCHAR)"}, {"answer": "SELECT c__nf_km_ FROM table_261642_3 WHERE l__mh_km_ = \"0.6099\"", "question": "what is the c (nf/km) when the l (mh/km) is 0.6099?", "context": "CREATE TABLE table_261642_3 (c__nf_km_ VARCHAR, l__mh_km_ VARCHAR)"}, {"answer": "SELECT frequency__hz_ FROM table_261642_3 WHERE g__\u03bcs_km_ = \"53.205\"", "question": "what is the frequency (hz) when the g (\u03bcs/km) is 53.205?", "context": "CREATE TABLE table_261642_3 (frequency__hz_ VARCHAR, g__\u03bcs_km_ VARCHAR)"}, {"answer": "SELECT imports FROM table_26160007_1 WHERE country = \"United Arab Emirates\"", "question": "In the country United Arab Emirates, what is the number of imports?", "context": "CREATE TABLE table_26160007_1 (imports VARCHAR, country VARCHAR)"}, {"answer": "SELECT total_trade FROM table_26160007_1 WHERE exports = \"6,099.06\"", "question": "Where the number of exports are 6,099.06, what is the total trade?", "context": "CREATE TABLE table_26160007_1 (total_trade VARCHAR, exports VARCHAR)"}, {"answer": "SELECT country FROM table_26160007_1 WHERE exports = \"1,278.13\"", "question": "In which country are there 1,278.13 exports?", "context": "CREATE TABLE table_26160007_1 (country VARCHAR, exports VARCHAR)"}, {"answer": "SELECT exports FROM table_26160007_1 WHERE total_trade = \"14,954.86\"", "question": "Where the total trade is 14,954.86, what are the exports?", "context": "CREATE TABLE table_26160007_1 (exports VARCHAR, total_trade VARCHAR)"}, {"answer": "SELECT total_trade FROM table_26160007_1 WHERE country = \"Switzerland\"", "question": "In the country Switzerland, what is the total trade?", "context": "CREATE TABLE table_26160007_1 (total_trade VARCHAR, country VARCHAR)"}, {"answer": "SELECT total_trade FROM table_26160007_1 WHERE exports = \"13,608.65\"", "question": "Where the exports is 13,608.65, what is the total trade?", "context": "CREATE TABLE table_26160007_1 (total_trade VARCHAR, exports VARCHAR)"}, {"answer": "SELECT location FROM table_26144632_1 WHERE dates = \"Jul 8-11\"", "question": "What is the location for tournament on Jul 8-11?", "context": "CREATE TABLE table_26144632_1 (location VARCHAR, dates VARCHAR)"}, {"answer": "SELECT dates FROM table_26144632_1 WHERE location = \"Hokkaid\u014d\" AND prize_fund___\uffe5__ = 150000000", "question": "What is the date of the tournament at Hokkaid\u014d with prize of \uffe5150000000?", "context": "CREATE TABLE table_26144632_1 (dates VARCHAR, location VARCHAR, prize_fund___\uffe5__ VARCHAR)"}, {"answer": "SELECT prize_fund___\uffe5__ FROM table_26144632_1 WHERE location = \"Ibaraki\"", "question": "What is the prize for the tournament at Ibaraki?", "context": "CREATE TABLE table_26144632_1 (prize_fund___\uffe5__ VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_26150013_1 WHERE original_air_date = \"April 3, 2012\"", "question": "How many titles are there for the original air date April 3, 2012?", "context": "CREATE TABLE table_26150013_1 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT location FROM table_26166836_2 WHERE distance = \"Marathon\" AND month_held = \"February\"", "question": "What are all of the area where distance is marathon and month held is february", "context": "CREATE TABLE table_26166836_2 (location VARCHAR, distance VARCHAR, month_held VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_26166836_2 WHERE road_race = \"Ottawa Marathon\"", "question": "What's the whole range of united states where road race is ottawa marathon", "context": "CREATE TABLE table_26166836_2 (country VARCHAR, road_race VARCHAR)"}, {"answer": "SELECT road_race FROM table_26166836_3 WHERE country = \"Germany\" AND month_held = \"May\"", "question": "What race is held in Germany in the month of May? ", "context": "CREATE TABLE table_26166836_3 (road_race VARCHAR, country VARCHAR, month_held VARCHAR)"}, {"answer": "SELECT COUNT(month_held) FROM table_26166836_3 WHERE distance = \"Marathon\" AND location = \"Brighton\"", "question": "How many times a year is the Brighton Marathon held?", "context": "CREATE TABLE table_26166836_3 (month_held VARCHAR, distance VARCHAR, location VARCHAR)"}, {"answer": "SELECT month_held FROM table_26166836_3 WHERE location = \"Paris\"", "question": "What month is the Paris 20k Road Race held?", "context": "CREATE TABLE table_26166836_3 (month_held VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(month_held) FROM table_26166836_3 WHERE road_race = \"Paris 20K\"", "question": "How many times a year is the Paris 20k road race held?", "context": "CREATE TABLE table_26166836_3 (month_held VARCHAR, road_race VARCHAR)"}, {"answer": "SELECT road_race FROM table_26166836_3 WHERE location = \"Omsk\"", "question": "What is the name of the road race held in Omsk, Russia?", "context": "CREATE TABLE table_26166836_3 (road_race VARCHAR, location VARCHAR)"}, {"answer": "SELECT amman FROM table_26173058_2 WHERE qadisiya = \"2-1\"", "question": "what is the place where the location is 2-1", "context": "CREATE TABLE table_26173058_2 (amman VARCHAR, qadisiya VARCHAR)"}, {"answer": "SELECT qadisiya FROM table_26173058_2 WHERE \u00d7 = \"ramtha\"", "question": "what is the capital where it is ramtha", "context": "CREATE TABLE table_26173058_2 (qadisiya VARCHAR, \u00d7 VARCHAR)"}, {"answer": "SELECT ahli FROM table_26173058_2 WHERE ramtha = \"1-0\"", "question": "what is the location where the record is 1-0", "context": "CREATE TABLE table_26173058_2 (ahli VARCHAR, ramtha VARCHAR)"}, {"answer": "SELECT ramtha FROM table_26173058_2 WHERE ahli = \"1-1\"", "question": "what is the score where the record is 1-1", "context": "CREATE TABLE table_26173058_2 (ramtha VARCHAR, ahli VARCHAR)"}, {"answer": "SELECT \u00d7 FROM table_26173058_2 WHERE jeel = \"1-1\" AND ramtha = \"1-1\"", "question": "what the team where the record is 1-1 and the player is 1-1", "context": "CREATE TABLE table_26173058_2 (\u00d7 VARCHAR, jeel VARCHAR, ramtha VARCHAR)"}, {"answer": "SELECT COUNT(amman) FROM table_26173058_2 WHERE wehdat = \"0-1\"", "question": "what is the number of teams where the record is 0-1", "context": "CREATE TABLE table_26173058_2 (amman VARCHAR, wehdat VARCHAR)"}, {"answer": "SELECT location FROM table_26166836_1 WHERE road_race = \"Istanbul Marathon\"", "question": "Where was the istanbul marathon?", "context": "CREATE TABLE table_26166836_1 (location VARCHAR, road_race VARCHAR)"}, {"answer": "SELECT distance FROM table_26166836_1 WHERE road_race = \"Great Manchester Run\"", "question": "How long was the great manchester run?", "context": "CREATE TABLE table_26166836_1 (distance VARCHAR, road_race VARCHAR)"}, {"answer": "SELECT country FROM table_26166836_1 WHERE road_race = \"Xiamen International Marathon\"", "question": "In which country was the xiamen international marathon?", "context": "CREATE TABLE table_26166836_1 (country VARCHAR, road_race VARCHAR)"}, {"answer": "SELECT location FROM table_26166836_1 WHERE road_race = \"Berlin Marathon\"", "question": "In which city was the berlin marathon?", "context": "CREATE TABLE table_26166836_1 (location VARCHAR, road_race VARCHAR)"}, {"answer": "SELECT COUNT(road_race) FROM table_26166836_1 WHERE country = \"Japan\" AND location = \"Fukuoka\"", "question": "How many races were in fukuoka, japan?", "context": "CREATE TABLE table_26166836_1 (road_race VARCHAR, country VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_26168687_3 WHERE vessel_operator = \"Canadian Coast Guard\"", "question": "How many times is the vessel operator canadian coast guard?", "context": "CREATE TABLE table_26168687_3 (no_in_series VARCHAR, vessel_operator VARCHAR)"}, {"answer": "SELECT vessel_type FROM table_26168687_3 WHERE vessel_operator = \"Jumbo Shipping\"", "question": "What is the vessel type for vessel operator Jumbo shipping?", "context": "CREATE TABLE table_26168687_3 (vessel_type VARCHAR, vessel_operator VARCHAR)"}, {"answer": "SELECT narrated_by FROM table_26168687_3 WHERE vessel_operator = \"De Beers\"", "question": "Who narrated when the vessel operator is de beers?", "context": "CREATE TABLE table_26168687_3 (narrated_by VARCHAR, vessel_operator VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_2618061_1 WHERE production_code = 66210", "question": "How many episodes had the production code 66210?", "context": "CREATE TABLE table_2618061_1 (no_in_series VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_2618061_1 WHERE directed_by = \"James Quinn\"", "question": "How many episodes were directed by james quinn?", "context": "CREATE TABLE table_2618061_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_2618061_1 WHERE directed_by = \"Daniel Sackheim\"", "question": "What is the title of the episode written by daniel sackheim?", "context": "CREATE TABLE table_2618061_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(brup) FROM table_26176081_29 WHERE long = 94", "question": "What is the lowest brup when long is 94?", "context": "CREATE TABLE table_26176081_29 (brup INTEGER, long VARCHAR)"}, {"answer": "SELECT MIN(gp) FROM table_26176081_29", "question": "What is the lowest gp?", "context": "CREATE TABLE table_26176081_29 (gp INTEGER)"}, {"answer": "SELECT MAX(ff) FROM table_26176081_29 WHERE solo = 56", "question": "What is the highest ff when solo is 56?", "context": "CREATE TABLE table_26176081_29 (ff INTEGER, solo VARCHAR)"}, {"answer": "SELECT name FROM table_26176081_29 WHERE tfl_yds = \"2-2\"", "question": "What is the name when tfl-yds is 2-2?", "context": "CREATE TABLE table_26176081_29 (name VARCHAR, tfl_yds VARCHAR)"}, {"answer": "SELECT no_yds FROM table_26176081_29 WHERE no_yds = \"1-13\"", "question": "What is no-yds when no.-yds is 1-13?", "context": "CREATE TABLE table_26176081_29 (no_yds VARCHAR)"}, {"answer": "SELECT MAX(f_laps) FROM table_26178824_1", "question": "what are the maximum f/laps?", "context": "CREATE TABLE table_26178824_1 (f_laps INTEGER)"}, {"answer": "SELECT wins FROM table_26178824_1 WHERE series = \"Formula Renault 2.0 NEC\" AND position = \"18th\"", "question": "how many wins had series formula renault 2.0 nec and the position is 18th?", "context": "CREATE TABLE table_26178824_1 (wins VARCHAR, series VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(poles) FROM table_26178824_1", "question": "what are the minimum poles?", "context": "CREATE TABLE table_26178824_1 (poles INTEGER)"}, {"answer": "SELECT original_air_date FROM table_2618072_1 WHERE written_by = \"Michael S. Chernuchin & Joe Morgenstern\"", "question": "When was the original air date written by michael s. chernuchin & joe morgenstern?", "context": "CREATE TABLE table_2618072_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2618072_1 WHERE production_code = 67425", "question": "Who is the directed by when the production code is 67425?", "context": "CREATE TABLE table_2618072_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_2618119_1 WHERE directed_by = \"Matthew Penn\" AND no_in_series = 143", "question": "How many titles have directors of matthew Penn and number in series of 143?", "context": "CREATE TABLE table_2618119_1 (title VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_2618119_1 WHERE no_in_season = 8", "question": "How many numbers in series were for the number in season of 8?", "context": "CREATE TABLE table_2618119_1 (no_in_series VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2618113_1 WHERE production_code = \"K0122\"", "question": "Who directed k0122?", "context": "CREATE TABLE table_2618113_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_2618113_1 WHERE production_code = \"K0104\"", "question": "Which season had k0104?", "context": "CREATE TABLE table_2618113_1 (no_in_season INTEGER, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2618113_1 WHERE production_code = \"K0120\"", "question": "What was the airdate of k0120?", "context": "CREATE TABLE table_2618113_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT institution FROM table_261927_1 WHERE nickname = \"Seahawks\"", "question": "What is the institution with the nickname seahawks?", "context": "CREATE TABLE table_261927_1 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT colors FROM table_261927_1 WHERE nickname = \"Engineers\"", "question": "What is the colors for the nickname engineers?", "context": "CREATE TABLE table_261927_1 (colors VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT COUNT(institution) FROM table_261927_1 WHERE colors = \"Blue & Gold\"", "question": "How many have the colors blue & gold?", "context": "CREATE TABLE table_261927_1 (institution VARCHAR, colors VARCHAR)"}, {"answer": "SELECT institution FROM table_261927_1 WHERE nickname = \"Engineers\"", "question": "What is the institution with the nickname engineers?", "context": "CREATE TABLE table_261927_1 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT enrollment FROM table_261927_1 WHERE colors = \"Green & Black\"", "question": "What is the enrollment for the colors green & black?", "context": "CREATE TABLE table_261927_1 (enrollment VARCHAR, colors VARCHAR)"}, {"answer": "SELECT institution FROM table_261906_2 WHERE location = \"Wilkes-Barre, Pennsylvania\"", "question": "What institution(s) are located in wilkes-barre, pennsylvania?", "context": "CREATE TABLE table_261906_2 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_261906_2 WHERE joined_mac = 1997", "question": "What is the highest enrollment schools that joined the mac in 1997?", "context": "CREATE TABLE table_261906_2 (enrollment INTEGER, joined_mac VARCHAR)"}, {"answer": "SELECT MAX(joined_mac) FROM table_261906_2 WHERE institution = \"Delaware Valley College\"", "question": "What is the enrollment at delaware valley college?", "context": "CREATE TABLE table_261906_2 (joined_mac INTEGER, institution VARCHAR)"}, {"answer": "SELECT MIN(joined_mac) FROM table_261906_2 WHERE nickname = \"Eagles\"", "question": "What year did the the school with the nickname eagles join the mac?", "context": "CREATE TABLE table_261906_2 (joined_mac INTEGER, nickname VARCHAR)"}, {"answer": "SELECT institution FROM table_261931_2 WHERE nickname = \"Bobcats\"", "question": "Which institution's nickname is the Bobcats? ", "context": "CREATE TABLE table_261931_2 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT enrollment FROM table_261931_2 WHERE location = \"New London, Connecticut\"", "question": "What is the enrollment at the institution in New London, Connecticut? ", "context": "CREATE TABLE table_261931_2 (enrollment VARCHAR, location VARCHAR)"}, {"answer": "SELECT joined FROM table_261931_2 WHERE location = \"Lewiston, Maine\"", "question": "When did the institution located in Lewiston, Maine join the conference? ", "context": "CREATE TABLE table_261931_2 (joined VARCHAR, location VARCHAR)"}, {"answer": "SELECT institution FROM table_261931_2 WHERE nickname = \"Polar Bears\"", "question": "Which institution's nickname is the Polar Bears?", "context": "CREATE TABLE table_261931_2 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_261941_1 WHERE institution = \"Linfield College\"", "question": "What is the nickname of Linfield College?", "context": "CREATE TABLE table_261941_1 (nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT founded FROM table_261941_1 WHERE type = \"Private/Baptist\"", "question": "When was the private/baptist school founded?", "context": "CREATE TABLE table_261941_1 (founded VARCHAR, type VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_261941_1 WHERE joined = \"1931, 1949 1\"", "question": "How many different items appear in the enrollment column that joined in 1931, 1949 1?", "context": "CREATE TABLE table_261941_1 (enrollment VARCHAR, joined VARCHAR)"}, {"answer": "SELECT location FROM table_261941_1 WHERE joined = \"1926, 1996 2\"", "question": "What is the location of the University that joined in 1926, 1996 2?", "context": "CREATE TABLE table_261941_1 (location VARCHAR, joined VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_261941_1", "question": "When was the earliest founded university?", "context": "CREATE TABLE table_261941_1 (founded INTEGER)"}, {"answer": "SELECT standing FROM table_2619469_1 WHERE goals_against = 130", "question": "What was the team standing if the won 130 goals against another team?", "context": "CREATE TABLE table_2619469_1 (standing VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT type FROM table_261954_1 WHERE location = \"Roanoke, Virginia\"", "question": "What is every type for the location of Roanoke, Virginia?", "context": "CREATE TABLE table_261954_1 (type VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(joined) FROM table_261954_1 WHERE institution = \"Guilford College\"", "question": "How many values for joined occur at Guilford College?", "context": "CREATE TABLE table_261954_1 (joined VARCHAR, institution VARCHAR)"}, {"answer": "SELECT institution FROM table_261954_1 WHERE nickname = \"Quakers\"", "question": "What is every institution with the nickname of Quakers?", "context": "CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT MIN(joined) FROM table_261954_1", "question": "What is the least value of joined?", "context": "CREATE TABLE table_261954_1 (joined INTEGER)"}, {"answer": "SELECT institution FROM table_261954_1 WHERE nickname = \"WildCats\"", "question": "What is every institution with the nickname of Wildcats?", "context": "CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT title FROM table_26199130_1 WHERE production_code = \"2ALF03\"", "question": "What is the title of the episode with production code 2alf03?", "context": "CREATE TABLE table_26199130_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT rank__week_ FROM table_26199130_1 WHERE no = 34", "question": "What was the rank (week) for episode number 34?", "context": "CREATE TABLE table_26199130_1 (rank__week_ VARCHAR, no VARCHAR)"}, {"answer": "SELECT MAX(no) FROM table_26199130_1 WHERE us_viewers__million_ = \"11.96\"", "question": "What numbered episode had 11.96 million US viewers?", "context": "CREATE TABLE table_26199130_1 (no INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT rank__week_ FROM table_26200084_1 WHERE _number = 19", "question": "What was the ranking of episode #19?", "context": "CREATE TABLE table_26200084_1 (rank__week_ VARCHAR, _number VARCHAR)"}, {"answer": "SELECT production_code FROM table_26200084_1 WHERE rank__week_ = \"28\"", "question": "What was the production code of the episode ranked 28?", "context": "CREATE TABLE table_26200084_1 (production_code VARCHAR, rank__week_ VARCHAR)"}, {"answer": "SELECT title FROM table_26200084_1 WHERE directed_by = \"David Mamet\"", "question": "What was the title of the episode directed by David Mamet?", "context": "CREATE TABLE table_26200084_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT production_code FROM table_26198709_1 WHERE us_viewers__million_ = \"18.07\"", "question": "What is the production code for the episode that had 18.07 million viewers? ", "context": "CREATE TABLE table_26198709_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MAX(rank__week_) FROM table_26198709_1 WHERE production_code = \"1ALF05\"", "question": "What is the weeks rank for the episode with the production code 1alf05? ", "context": "CREATE TABLE table_26198709_1 (rank__week_ INTEGER, production_code VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_26198709_1 WHERE us_viewers__million_ = \"15.50\"", "question": "How many air dates does the episode with 15.50 million viewers have? ", "context": "CREATE TABLE table_26198709_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_26198709_1 WHERE us_viewers__million_ = \"18.07\"", "question": "Who wrote the episode with 18.07 million viewers? ", "context": "CREATE TABLE table_26198709_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MAX(points_against) FROM table_26200568_16 WHERE club = \"Toronto Rebels\"", "question": "How many points were scored against the Toronto Rebels?", "context": "CREATE TABLE table_26200568_16 (points_against INTEGER, club VARCHAR)"}, {"answer": "SELECT MIN(points_for) FROM table_26200568_16 WHERE club = \"Toronto Downtown Dingos\"", "question": "How many points did the Toronto Downtown Dingos score?", "context": "CREATE TABLE table_26200568_16 (points_for INTEGER, club VARCHAR)"}, {"answer": "SELECT losses FROM table_26200568_16 WHERE club = \"Toronto Downtown Dingos\"", "question": "How many losses does Toronto Downtown Dingos have?", "context": "CREATE TABLE table_26200568_16 (losses VARCHAR, club VARCHAR)"}, {"answer": "SELECT percentage FROM table_26200568_16 WHERE points_for = 63", "question": "What is the percentage listed for the team who scored 63 points?", "context": "CREATE TABLE table_26200568_16 (percentage VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_26200568_16 WHERE club = \"Central Blues\"", "question": "How many losses does Central Blues have?", "context": "CREATE TABLE table_26200568_16 (losses INTEGER, club VARCHAR)"}, {"answer": "SELECT specimen_weight_size FROM table_26211058_1 WHERE calculated_activity___ci__ = \"4.96\u00d710 \u221211\"", "question": "If the calculated activity (CI) is  4.96\u00d710 \u221211, what is the specimen weight/size?", "context": "CREATE TABLE table_26211058_1 (specimen_weight_size VARCHAR, calculated_activity___ci__ VARCHAR)"}, {"answer": "SELECT COUNT(calculated_activity___bq__) FROM table_26211058_1 WHERE specimen_weight_size = \"1000 g / 8.79 cm\"", "question": "If the specimen weight/size is 1000 g / 8.79 cm, what is the calculated activity?", "context": "CREATE TABLE table_26211058_1 (calculated_activity___bq__ VARCHAR, specimen_weight_size VARCHAR)"}, {"answer": "SELECT rk FROM table_26218783_6 WHERE new_points = 5760", "question": "If the new points were 5760, what is the RK?", "context": "CREATE TABLE table_26218783_6 (rk VARCHAR, new_points VARCHAR)"}, {"answer": "SELECT COUNT(points) AS defending FROM table_26218783_6 WHERE player = \"Stanislas Wawrinka\"", "question": "How many times is player Stanislas Wawrinka on the list?", "context": "CREATE TABLE table_26218783_6 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(points) AS won FROM table_26218783_7 WHERE points = 6675", "question": "how many time was points 6675?", "context": "CREATE TABLE table_26218783_7 (points VARCHAR)"}, {"answer": "SELECT MIN(points) AS won FROM table_26218783_7 WHERE player = \"Victoria Azarenka\"", "question": "What is the lowest points won from player victoria azarenka?", "context": "CREATE TABLE table_26218783_7 (points INTEGER, player VARCHAR)"}, {"answer": "SELECT status FROM table_26218783_7 WHERE sd = 15", "question": "What is the status when sd is 15?", "context": "CREATE TABLE table_26218783_7 (status VARCHAR, sd VARCHAR)"}, {"answer": "SELECT MAX(sd) FROM table_26218783_7 WHERE status = \"Second round lost to Iveta Bene\u0161ov\u00e1\"", "question": "What is the highest sd when the status is second round lost to iveta bene\u0161ov\u00e1?", "context": "CREATE TABLE table_26218783_7 (sd INTEGER, status VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_26218124_1 WHERE stadium = \"Westfalenstadion\"", "question": "How many clubs were founded in the westfalenstadion stadium?", "context": "CREATE TABLE table_26218124_1 (founded VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT original_club FROM table_26218124_1 WHERE name = \"Hapoel Katamon Jerusalem F.C.\"", "question": "Which club was originally named hapoel katamon jerusalem f.c.?", "context": "CREATE TABLE table_26218124_1 (original_club VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_26218124_1 WHERE city = \"Belo Horizonte\"", "question": "How many clubs were founded in belo horizonte?", "context": "CREATE TABLE table_26218124_1 (founded VARCHAR, city VARCHAR)"}, {"answer": "SELECT original_club FROM table_26218124_1 WHERE name = \"Newcastle Falcons\"", "question": "Which club was originally named the newcastle falcons?", "context": "CREATE TABLE table_26218124_1 (original_club VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(f_laps) FROM table_26222468_1", "question": "What is the minimum number of f/laps?", "context": "CREATE TABLE table_26222468_1 (f_laps INTEGER)"}, {"answer": "SELECT COUNT(season) FROM table_26222468_1 WHERE points = \"N/A\"", "question": "How many seasons have points totals of N/A?", "context": "CREATE TABLE table_26222468_1 (season VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_26222468_1", "question": "What is the maximum number of wins?", "context": "CREATE TABLE table_26222468_1 (wins INTEGER)"}, {"answer": "SELECT COUNT(starts) FROM table_2622469_1 WHERE avg_finish = \"17.9\"", "question": "How many different starts had an average finish of 17.9?", "context": "CREATE TABLE table_2622469_1 (starts VARCHAR, avg_finish VARCHAR)"}, {"answer": "SELECT wins FROM table_2622469_1 WHERE year = 1983", "question": "What were the wins of 1983?", "context": "CREATE TABLE table_2622469_1 (wins VARCHAR, year VARCHAR)"}, {"answer": "SELECT Season AS episode__number FROM table_2623498_4 WHERE written_by = \"Mark Drop\"", "question": "Which episodes in season 3 were written by Mark Drop?", "context": "CREATE TABLE table_2623498_4 (Season VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT 54 AS _holes FROM table_262383_1 WHERE runner_s__up = \"Jimmy Demaret\"", "question": "what is the number where the player was jimmy demaret", "context": "CREATE TABLE table_262383_1 (runner_s__up VARCHAR)"}, {"answer": "SELECT margin FROM table_262383_1 WHERE runner_s__up = \"Mike Turnesa\"", "question": "what is the space where the next one was mike turnesa", "context": "CREATE TABLE table_262383_1 (margin VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin FROM table_262383_1 WHERE runner_s__up = \"Skee Riegel\"", "question": "what is the space where the next winner is skee riegel", "context": "CREATE TABLE table_262383_1 (margin VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT old_english_day_name FROM table_2624098_1 WHERE modern_english_day_name = \"Saturday\"", "question": "what is the old English name of Saturday? ", "context": "CREATE TABLE table_2624098_1 (old_english_day_name VARCHAR, modern_english_day_name VARCHAR)"}, {"answer": "SELECT COUNT(old_english_day_name) FROM table_2624098_1 WHERE glossed_from_latin_day_name = \"Dies Iovis\"", "question": "how mant different day names in old English were coined from the Latin day name \"dies iovis\"?", "context": "CREATE TABLE table_2624098_1 (old_english_day_name VARCHAR, glossed_from_latin_day_name VARCHAR)"}, {"answer": "SELECT COUNT(english_day_name_meaning) FROM table_2624098_1 WHERE modern_english_day_name = \"Wednesday\"", "question": "how many different meanings does Wednesday have?", "context": "CREATE TABLE table_2624098_1 (english_day_name_meaning VARCHAR, modern_english_day_name VARCHAR)"}, {"answer": "SELECT english_day_name_meaning FROM table_2624098_1 WHERE old_english_day_name = \"S\u00e6turnesd\u00e6g\"", "question": "what is the English meaning of the old English name \"s\u00e6turnesd\u00e6g\"?", "context": "CREATE TABLE table_2624098_1 (english_day_name_meaning VARCHAR, old_english_day_name VARCHAR)"}, {"answer": "SELECT latin_day_name_meaning FROM table_2624098_1 WHERE glossed_from_latin_day_name = \"Dies Saturni\"", "question": "what is the meaning of the latin day name \"dies saturni\"?", "context": "CREATE TABLE table_2624098_1 (latin_day_name_meaning VARCHAR, glossed_from_latin_day_name VARCHAR)"}, {"answer": "SELECT opponents_conference FROM table_26240481_1 WHERE result = \"L, 62-10\"", "question": "Which opponents conference has the result L, 62-10?", "context": "CREATE TABLE table_26240481_1 (opponents_conference VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponents_head_coach FROM table_26240481_1 WHERE result = \"L, 56-6\"", "question": "Who was the opponents head coach with the result L, 56-6?", "context": "CREATE TABLE table_26240481_1 (opponents_head_coach VARCHAR, result VARCHAR)"}, {"answer": "SELECT charleston_southerns_head_coach FROM table_26240481_1 WHERE result = \"L, 56-6\"", "question": "Who is Charleston Southerns head coach where the result is L, 56-6?-", "context": "CREATE TABLE table_26240481_1 (charleston_southerns_head_coach VARCHAR, result VARCHAR)"}, {"answer": "SELECT fbs_opponent FROM table_26240481_1 WHERE result = \"L, 62-3\"", "question": "Who played FBS where the result was L, 62-3?", "context": "CREATE TABLE table_26240481_1 (fbs_opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_262476_3 WHERE institution = \"Alfred University\"", "question": "When was alfred university founded?", "context": "CREATE TABLE table_262476_3 (founded INTEGER, institution VARCHAR)"}, {"answer": "SELECT location FROM table_262476_1 WHERE institution = \"Bethany College\"", "question": "Name where bethany college is", "context": "CREATE TABLE table_262476_1 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT location FROM table_262476_1 WHERE nickname = \"Golden Tornadoes\"", "question": "Name the location for golden tornadoes", "context": "CREATE TABLE table_262476_1 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_262476_1 WHERE institution = \"Geneva College\"", "question": "Name the number of locations for geneva college", "context": "CREATE TABLE table_262476_1 (location VARCHAR, institution VARCHAR)"}, {"answer": "SELECT enrollment FROM table_262476_1 WHERE nickname = \"Tomcats\"", "question": "Name the enrollment for tomcats", "context": "CREATE TABLE table_262476_1 (enrollment VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT MIN(season_4) FROM table_26240046_1 WHERE character = \"Mrs. Jennifer Knight\"", "question": "How many season 4 appearances are there by Mrs. Jennifer Knight?", "context": "CREATE TABLE table_26240046_1 (season_4 INTEGER, character VARCHAR)"}, {"answer": "SELECT MAX(season_3) FROM table_26240046_1 WHERE played_by = \"Morgan the Dog\"", "question": "How many season 3 appearances by Morgan the Dog?", "context": "CREATE TABLE table_26240046_1 (season_3 INTEGER, played_by VARCHAR)"}, {"answer": "SELECT first_appearance FROM table_26240046_1 WHERE season_4 = 7", "question": "What episode was the first appearance of the character who appears 7 times in season 4?", "context": "CREATE TABLE table_26240046_1 (first_appearance VARCHAR, season_4 VARCHAR)"}, {"answer": "SELECT MIN(season_3) FROM table_26240046_1 WHERE played_by = \"Stefan van Ray\"", "question": "How many season 3 appearances by the character played by Stefan Van Ray?", "context": "CREATE TABLE table_26240046_1 (season_3 INTEGER, played_by VARCHAR)"}, {"answer": "SELECT first_appearance FROM table_26240046_1 WHERE played_by = \"Obdul Reid\"", "question": "What is the first appearance of the character played by Obdul Reid?", "context": "CREATE TABLE table_26240046_1 (first_appearance VARCHAR, played_by VARCHAR)"}, {"answer": "SELECT primary_conference_when_joining_the_csfl FROM table_262501_1 WHERE founded = 1894", "question": "What was the primary conference when joining the cslf for the institution that was founded in 1894", "context": "CREATE TABLE table_262501_1 (primary_conference_when_joining_the_csfl VARCHAR, founded VARCHAR)"}, {"answer": "SELECT primary_conference_when_joining_the_csfl FROM table_262501_1 WHERE joined = \"2004-05\"", "question": "what was the primary conference when joining the csfl for the institution that joined in 2004-05? ", "context": "CREATE TABLE table_262501_1 (primary_conference_when_joining_the_csfl VARCHAR, joined VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_26250151_1 WHERE theme = \"Inspirational\"", "question": "How may results had the theme inspirational?", "context": "CREATE TABLE table_26250151_1 (result VARCHAR, theme VARCHAR)"}, {"answer": "SELECT episode FROM table_26250151_1 WHERE original_recording_artist = \"LaVern Baker\"", "question": "Which episode had Lavern Baker?", "context": "CREATE TABLE table_26250151_1 (episode VARCHAR, original_recording_artist VARCHAR)"}, {"answer": "SELECT order__number FROM table_26250151_1 WHERE original_recording_artist = \"Erma Franklin\"", "question": "What was the order # or Erma Franklin?", "context": "CREATE TABLE table_26250151_1 (order__number VARCHAR, original_recording_artist VARCHAR)"}, {"answer": "SELECT theme FROM table_26250145_1 WHERE original_artist = \"Alicia Keys\"", "question": "What is the theme for the original artist Alicia Keys?", "context": "CREATE TABLE table_26250145_1 (theme VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_26250145_1 WHERE original_artist = \"Alicia Keys\"", "question": "How many times is the original artist Alicia keys?", "context": "CREATE TABLE table_26250145_1 (result VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT order__number FROM table_26250145_1 WHERE original_artist = \"Sarah McLachlan\"", "question": "What is the order # for the original artist sarah mclachlan?", "context": "CREATE TABLE table_26250145_1 (order__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT theme FROM table_26250145_1 WHERE order__number = \"2\"", "question": "WHat is the them for the order #2?", "context": "CREATE TABLE table_26250145_1 (theme VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT type FROM table_262495_1 WHERE nickname = \"Pointers\"", "question": "When pointers are the nickname what is the type?", "context": "CREATE TABLE table_262495_1 (type VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT type FROM table_262495_1 WHERE nickname = \"Falcons\"", "question": "When falcons are the nickname what is the type?", "context": "CREATE TABLE table_262495_1 (type VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_262495_1 WHERE undergraduate_enrollment = 9386", "question": "When 9386 is the undergraduate enrollment what is the nickname?", "context": "CREATE TABLE table_262495_1 (nickname VARCHAR, undergraduate_enrollment VARCHAR)"}, {"answer": "SELECT song_choice FROM table_26250189_1 WHERE original_artist = \"Stevie Wonder\"", "question": "What was the choice of song where the original artist was Stevie Wonder?", "context": "CREATE TABLE table_26250189_1 (song_choice VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT order__number FROM table_26250189_1 WHERE theme = \"The Rolling Stones\"", "question": "What was Katie's order number when the theme was The Rolling Stones?", "context": "CREATE TABLE table_26250189_1 (order__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT original_artist FROM table_26250189_1 WHERE theme = \"The Rolling Stones\"", "question": "Who was the original artist of the chosen song when the theme was The Rolling Stones?", "context": "CREATE TABLE table_26250189_1 (original_artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT original_artist FROM table_26250155_1 WHERE theme = \"First Solo\"", "question": "Who was the original artist of the First solo theme?", "context": "CREATE TABLE table_26250155_1 (original_artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(song_choice) FROM table_26250155_1 WHERE original_artist = \"Bright Eyes\"", "question": "What is the number of song choices where the original artist was Bright Eyes?", "context": "CREATE TABLE table_26250155_1 (song_choice VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT original_artist FROM table_26250155_1 WHERE theme = \"Group Performance\"", "question": "Who was the original artist of the group performance theme?", "context": "CREATE TABLE table_26250155_1 (original_artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT order__number FROM table_26250155_1 WHERE theme = \"Billboard Hot 100 Hits\" AND original_artist = \"Sixpence None the Richer\"", "question": "What is the order number of the Billboard Hot 100 Hits theme and the original artist was Sixpence None the Richer?", "context": "CREATE TABLE table_26250155_1 (order__number VARCHAR, theme VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT COUNT(week__number) FROM table_26250155_1 WHERE theme = \"Billboard Hot 100 Hits\" AND order__number = \"3\" AND original_artist = \"Sixpence None the Richer\"", "question": "What was the number of weeks that had a Billboard Hot 100 Hits theme, an order number of 3, and an original artist of Sixpence None the Richer?", "context": "CREATE TABLE table_26250155_1 (week__number VARCHAR, original_artist VARCHAR, theme VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT COUNT(joined) FROM table_262508_1 WHERE nickname = \"Warriors\"", "question": "How many joined the Warriors?", "context": "CREATE TABLE table_262508_1 (joined VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT joined FROM table_262508_1 WHERE enrollment = 1150 AND location = \"Sioux City, Iowa\"", "question": "How many joined when the enrollment was 1150 in Sioux City, Iowa?", "context": "CREATE TABLE table_262508_1 (joined VARCHAR, enrollment VARCHAR, location VARCHAR)"}, {"answer": "SELECT nickname FROM table_262508_1 WHERE institution = \"Briar Cliff University\"", "question": "What is Briar Cliff University's nickname?", "context": "CREATE TABLE table_262508_1 (nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT nickname FROM table_262508_1 WHERE institution = \"Concordia University, Nebraska\"", "question": "What is the nickname of the institution from Concordia University, Nebraska?", "context": "CREATE TABLE table_262508_1 (nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT result FROM table_26250253_1 WHERE week__number = \"Top 12\"", "question": "Where the week # is Top 12, what is the result?", "context": "CREATE TABLE table_26250253_1 (result VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_26250253_1 WHERE theme = \"Group Round\"", "question": "How many results are there with the theme Group Round?", "context": "CREATE TABLE table_26250253_1 (result VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(theme) FROM table_26250253_1 WHERE order__number = \"9\"", "question": "How many themes are there where the order # is 9?", "context": "CREATE TABLE table_26250253_1 (theme VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT order__number FROM table_26250253_1 WHERE week__number = \"Top 10\"", "question": "The order # is what for the week # Top 10?", "context": "CREATE TABLE table_26250253_1 (order__number VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT week__number FROM table_26250253_1 WHERE original_artist = \"The Temptations\"", "question": "The original artist The Temptations has what week #?", "context": "CREATE TABLE table_26250253_1 (week__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_262505_1 WHERE type = \"Public\" AND enrollment = \"780\"", "question": "Name the total number of founded for public and 780 enrollment", "context": "CREATE TABLE table_262505_1 (founded VARCHAR, type VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT founded FROM table_262505_1 WHERE current_conference = \"school closed in 2005\"", "question": "Name the founded for school closed in 2005", "context": "CREATE TABLE table_262505_1 (founded VARCHAR, current_conference VARCHAR)"}, {"answer": "SELECT nickname FROM table_262527_1 WHERE joined = \"1902 1\"", "question": "what is the nickname that joined 1902 1?", "context": "CREATE TABLE table_262527_1 (nickname VARCHAR, joined VARCHAR)"}, {"answer": "SELECT type FROM table_262527_1 WHERE institution = \"Ottawa University\"", "question": "what type of institution is ottawa university?", "context": "CREATE TABLE table_262527_1 (type VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(nickname) FROM table_262527_1 WHERE institution = \"Southwestern College\"", "question": "what is the total number of nicknames for southwestern college?", "context": "CREATE TABLE table_262527_1 (nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT type FROM table_262527_1 WHERE joined = \"1902 5\"", "question": "what type was joined in 1902 5?", "context": "CREATE TABLE table_262527_1 (type VARCHAR, joined VARCHAR)"}, {"answer": "SELECT institution FROM table_262527_1 WHERE location = \"North Newton, Kansas\"", "question": "what is the institution located in north newton, kansas?", "context": "CREATE TABLE table_262527_1 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT institution FROM table_262560_1 WHERE founded = 1920", "question": "Name the place that was founded in 1920", "context": "CREATE TABLE table_262560_1 (institution VARCHAR, founded VARCHAR)"}, {"answer": "SELECT type FROM table_262560_1 WHERE joined = 2007", "question": "Name the type that joined 2007", "context": "CREATE TABLE table_262560_1 (type VARCHAR, joined VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_26259391_1 WHERE us_viewers__million_ = \"6.55\" AND directed_by = \"Pete Michels\"", "question": "how many series had 6.55 u.s. viewers (million) and were directed by pete michels", "context": "CREATE TABLE table_26259391_1 (no_in_series VARCHAR, us_viewers__million_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_26259391_1 WHERE production_code = \"8ACX05\"", "question": "how many series have production code 8acx05", "context": "CREATE TABLE table_26259391_1 (no_in_series VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(us_viewers__million_) FROM table_26259391_1 WHERE written_by = \"Chris Sheridan & Danny Smith\"", "question": "how many u.s. viewers (million) have seen a production written by chris sheridan & danny smith", "context": "CREATE TABLE table_26259391_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT production_code FROM table_26259391_1 WHERE written_by = \"Andrew Goldberg\"", "question": "which production codes were written by andrew goldberg", "context": "CREATE TABLE table_26259391_1 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT production_code FROM table_26259391_1 WHERE original_air_date = \"February20,2011\"", "question": "Which production code had original air dated february20,2011", "context": "CREATE TABLE table_26259391_1 (production_code VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT institution FROM table_262560_2 WHERE joined = \"1996-97\" AND left = \"2011-12\"", "question": "What school joined the conference in 1996-97 and left it in 2011-12?", "context": "CREATE TABLE table_262560_2 (institution VARCHAR, joined VARCHAR, left VARCHAR)"}, {"answer": "SELECT location FROM table_262560_2 WHERE enrollment = 850", "question": "What location has a school with enrollment of 850?", "context": "CREATE TABLE table_262560_2 (location VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_262560_2 WHERE left = \"2002-03\"", "question": "How many schools left in 2002-03?", "context": "CREATE TABLE table_262560_2 (location VARCHAR, left VARCHAR)"}, {"answer": "SELECT location FROM table_262560_2 WHERE nickname = \"Pioneers\"", "question": "Which city has a school where the nickname is Pioneers?", "context": "CREATE TABLE table_262560_2 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT type FROM table_262560_2 WHERE nickname = \"Oilers\"", "question": "What type of school has the nickname the Oilers?", "context": "CREATE TABLE table_262560_2 (type VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_262560_2 WHERE nickname = \"Panthers\"", "question": "How many locations have a school that is nicknamed the Panthers?", "context": "CREATE TABLE table_262560_2 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT COUNT(sprints_classification) FROM table_26257223_13 WHERE winner = \"Joaquin Rodriguez\"", "question": "How many sprints classifications were associated with an overall winner of Joaquin Rodriguez?", "context": "CREATE TABLE table_26257223_13 (sprints_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT team_classification FROM table_26257223_13 WHERE winner = \"Chris Horner\"", "question": "Who led team classification during the stage whose winner was Chris Horner?", "context": "CREATE TABLE table_26257223_13 (team_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT sprints_classification FROM table_26257223_13 WHERE general_classification = \"Chris Horner\"", "question": "Who led sprints classification when Chris Horner led general classification?", "context": "CREATE TABLE table_26257223_13 (sprints_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT report FROM table_26258348_4 WHERE grand_prix = \"Belgian grand_prix\"", "question": "What are all the report for the Belgian Grand Prix? ", "context": "CREATE TABLE table_26258348_4 (report VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT COUNT(winning_constructor) FROM table_26258348_4 WHERE fastest_lap = \"Mark Webber\"", "question": "How many winning constructor catagories are there when Mark Webber had the fastest lap? ", "context": "CREATE TABLE table_26258348_4 (winning_constructor VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT pole_position FROM table_26258348_4 WHERE grand_prix = \"Canadian grand_prix\"", "question": "Who had the pole position in the Canadian Grand Prix? ", "context": "CREATE TABLE table_26258348_4 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_262534_2 WHERE institution = \"St. Catharine College\"", "question": "What year was the institution of St. Catharine College founded?", "context": "CREATE TABLE table_262534_2 (founded INTEGER, institution VARCHAR)"}, {"answer": "SELECT enrollment FROM table_262534_2 WHERE location__population_ = \"Lebanon, Tennessee (20,235)\"", "question": "What is the enrollment for the institution that is located in Lebanon, Tennessee (20,235)?", "context": "CREATE TABLE table_262534_2 (enrollment VARCHAR, location__population_ VARCHAR)"}, {"answer": "SELECT location__population_ FROM table_262534_2 WHERE institution = \"Bluefield College\"", "question": "What is the location and population of the institution called Bluefield College?", "context": "CREATE TABLE table_262534_2 (location__population_ VARCHAR, institution VARCHAR)"}, {"answer": "SELECT COUNT(hometown) FROM table_26263322_1 WHERE result = \"Hired by Serepisos\"", "question": "How many times was the result is hired by serepisos?", "context": "CREATE TABLE table_26263322_1 (hometown VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(age) FROM table_26263322_1 WHERE result = \"Fired in week 8\"", "question": "What is the age when the result is fired in week 8", "context": "CREATE TABLE table_26263322_1 (age INTEGER, result VARCHAR)"}, {"answer": "SELECT background FROM table_26263322_1 WHERE candidate = \"Daniel Phillips\"", "question": "What is the background of the candidate daniel phillips?", "context": "CREATE TABLE table_26263322_1 (background VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT COUNT(candidate) FROM table_26263322_1 WHERE background = \"Self-employed - media agency\"", "question": "How many times was the background self-employed - media agency?", "context": "CREATE TABLE table_26263322_1 (candidate VARCHAR, background VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_26263322_1 WHERE background = \"University Student\"", "question": "How many times was the background university student?", "context": "CREATE TABLE table_26263322_1 (result VARCHAR, background VARCHAR)"}, {"answer": "SELECT candidate FROM table_26263322_1 WHERE age = 27", "question": "What is the candidate whose age is 27?", "context": "CREATE TABLE table_26263322_1 (candidate VARCHAR, age VARCHAR)"}, {"answer": "SELECT winning_team FROM table_26267607_2 WHERE round = \"6\"", "question": "In Round 6, who is the winning team?", "context": "CREATE TABLE table_26267607_2 (winning_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_26267607_2 WHERE winning_team = \"Abt Sportsline\" AND pole_position = \"Mattias Ekstr\u00f6m\" AND circuit = \"circuit Ricardo Tormo , Valencia\"", "question": "On what date is the winning team Abt Sportsline and pole position Mattias Ekstr\u00f6m in the Circuit Ricardo Tormo , Valencia?", "context": "CREATE TABLE table_26267607_2 (date VARCHAR, circuit VARCHAR, winning_team VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT circuit FROM table_26267607_2 WHERE round = \"1\"", "question": "Round 1 is in what circuit?", "context": "CREATE TABLE table_26267607_2 (circuit VARCHAR, round VARCHAR)"}, {"answer": "SELECT pole_position FROM table_26267607_2 WHERE winning_driver = \"Bruno Spengler\" AND circuit = \"Showevent Olympiastadion M\u00fcnchen\"", "question": "In the circuit Showevent Olympiastadion M\u00fcnchen, where the winning driver is Bruno Spengler, what is the pole position?", "context": "CREATE TABLE table_26267607_2 (pole_position VARCHAR, winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_26267607_2 WHERE fastest_lap = \"Mike Rockenfeller\"", "question": "Where the fastest lap is Mike Rockenfeller, who is the winning driver?", "context": "CREATE TABLE table_26267607_2 (winning_driver VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_26267607_2 WHERE round = \"3\"", "question": "How many dates are there in round 3?", "context": "CREATE TABLE table_26267607_2 (date VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_26261072_1 WHERE written_by = \"Brenda Hampton\" AND directed_by = \"Burt Brinckerhoff\"", "question": "Name the least series number written by brenda hampton and directed by  burt brinckerhoff", "context": "CREATE TABLE table_26261072_1 (series__number INTEGER, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_26261072_1 WHERE series__number = 15", "question": "Name the original air date for series number 15", "context": "CREATE TABLE table_26261072_1 (original_air_date VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_2626564_2 WHERE winnings = \"$5,200\"", "question": "What team was Pearson on when his winnings were $5,200?", "context": "CREATE TABLE table_2626564_2 (team_s_ VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT starts FROM table_2626564_2 WHERE winnings = \"$101,438\"", "question": "How many starts did Pearson have when his winnings were $101,438?", "context": "CREATE TABLE table_2626564_2 (starts VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT MIN(top_10) FROM table_2626564_2 WHERE position = \"8th\"", "question": "How many top 10's did Pearson have the year he was in 8th position? ", "context": "CREATE TABLE table_2626564_2 (top_10 INTEGER, position VARCHAR)"}, {"answer": "SELECT title FROM table_2626495_1 WHERE written_by = \"Daphne Field\"", "question": "what is the title of the episode daphne field wrote?", "context": "CREATE TABLE table_2626495_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2626495_1 WHERE written_by = \"James Clavell\"", "question": "who directed the episode james clavell wrote?", "context": "CREATE TABLE table_2626495_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(originalairdate) FROM table_2626495_1 WHERE directed_by = \"Maury Geraghty\"", "question": "how many times was the episode directed by maury geraghty originally aired? ", "context": "CREATE TABLE table_2626495_1 (originalairdate VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT film_festival FROM table_26282750_1 WHERE participants_recipients = \"Isao Tomita\"", "question": "What Film Festival had participants/recipients of Isao Tomita?", "context": "CREATE TABLE table_26282750_1 (film_festival VARCHAR, participants_recipients VARCHAR)"}, {"answer": "SELECT participants_recipients FROM table_26282750_1 WHERE category = \"Best Female Actor\"", "question": "Who was the participant or recipient for the Best Female Actor?", "context": "CREATE TABLE table_26282750_1 (participants_recipients VARCHAR, category VARCHAR)"}, {"answer": "SELECT date_of_ceremony FROM table_26282750_1 WHERE participants_recipients = \"Takakazu Watanabe\"", "question": "What date was the participant/recipient  takakazu watanabe?", "context": "CREATE TABLE table_26282750_1 (date_of_ceremony VARCHAR, participants_recipients VARCHAR)"}, {"answer": "SELECT film_festival FROM table_26282750_1 WHERE category = \"Best Male Actor\"", "question": "What film festival had the Best Male Actor?", "context": "CREATE TABLE table_26282750_1 (film_festival VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_26282750_1 WHERE participants_recipients = \"Ot\u014dto\"", "question": "What category was the the participant/recipient  ot\u014dto?", "context": "CREATE TABLE table_26282750_1 (category VARCHAR, participants_recipients VARCHAR)"}, {"answer": "SELECT performance_order FROM table_26267849_11 WHERE artist = \"Velasco Brothers\"", "question": "Name the performance order of the velasco brothers", "context": "CREATE TABLE table_26267849_11 (performance_order VARCHAR, artist VARCHAR)"}, {"answer": "SELECT COUNT(semi_finals_result) FROM table_26267849_11 WHERE performance_order = 12", "question": "Name the number of semi final results for 12 performance order", "context": "CREATE TABLE table_26267849_11 (semi_finals_result VARCHAR, performance_order VARCHAR)"}, {"answer": "SELECT performance_order FROM table_26267849_11 WHERE percentage_of_votes = \"2.15%\"", "question": "Name the performance order for 2.15%", "context": "CREATE TABLE table_26267849_11 (performance_order VARCHAR, percentage_of_votes VARCHAR)"}, {"answer": "SELECT percentage_of_votes FROM table_26267849_11 WHERE finished = \"3rd\"", "question": "Name the percentage of votes for 3rd finished", "context": "CREATE TABLE table_26267849_11 (percentage_of_votes VARCHAR, finished VARCHAR)"}, {"answer": "SELECT percentage_of_votes FROM table_26267849_11 WHERE act = \"Violinist\"", "question": "Name the percentage of votes for violinist", "context": "CREATE TABLE table_26267849_11 (percentage_of_votes VARCHAR, act VARCHAR)"}, {"answer": "SELECT hometown FROM table_26267849_2 WHERE age_s_ = \"16\"", "question": "what are all the hometown where the average age is 16", "context": "CREATE TABLE table_26267849_2 (hometown VARCHAR, age_s_ VARCHAR)"}, {"answer": "SELECT population__2011_ FROM table_26321719_1 WHERE name = \"Beaubassin East\"", "question": "What is the population in 2011 for the name Beaubassin East?", "context": "CREATE TABLE table_26321719_1 (population__2011_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT population_density FROM table_26321719_1 WHERE name = \"Beaubassin East\"", "question": "What is every population density if name is Beaubassin East?", "context": "CREATE TABLE table_26321719_1 (population_density VARCHAR, name VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_26321719_1 WHERE population_density = \"100.8\"", "question": "What is every value for area for population density of 100.8?", "context": "CREATE TABLE table_26321719_1 (area__km\u00b2_ VARCHAR, population_density VARCHAR)"}, {"answer": "SELECT change___percentage_ FROM table_26321719_1 WHERE area__km\u00b2_ = \"1835.01\"", "question": "What is every value for change% for area of 1835.01?", "context": "CREATE TABLE table_26321719_1 (change___percentage_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(name) FROM table_26321719_1 WHERE area__km\u00b2_ = \"8.12\"", "question": "How many names correspond to an area of 8.12?", "context": "CREATE TABLE table_26321719_1 (name VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_26321719_1 WHERE change___percentage_ = \"-3.6\"", "question": "What is every value for area if change% is -3.6?", "context": "CREATE TABLE table_26321719_1 (area__km\u00b2_ VARCHAR, change___percentage_ VARCHAR)"}, {"answer": "SELECT hdi_2012 FROM table_26313243_1 WHERE country = \"Dominica\"", "question": "Name the hdi 2012 for dominica", "context": "CREATE TABLE table_26313243_1 (hdi_2012 VARCHAR, country VARCHAR)"}, {"answer": "SELECT fsi_2012 FROM table_26313243_1 WHERE cpi_2012 = \"42.7\"", "question": "Name the fsi 2012 for 42.7 cpi", "context": "CREATE TABLE table_26313243_1 (fsi_2012 VARCHAR, cpi_2012 VARCHAR)"}, {"answer": "SELECT gdp__ppp__per_capita___intl_$___2011 FROM table_26313243_1 WHERE country = \"Haiti\"", "question": "Name the gdp per capita for haiti", "context": "CREATE TABLE table_26313243_1 (gdp__ppp__per_capita___intl_$___2011 VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(round_of_16) FROM table_26335424_86 WHERE round_of_32 = \"Lakpa Tashi Sherpa ( BHU ) W PTS 12-5\"", "question": "How many times was lakpa tashi sherpa ( bhu ) w pts 12-5 in round of 32?", "context": "CREATE TABLE table_26335424_86 (round_of_16 VARCHAR, round_of_32 VARCHAR)"}, {"answer": "SELECT athlete FROM table_26335424_86 WHERE quarterfinals = \"Nabil Talal ( JOR ) L PTS 3-3\"", "question": "If the quarterfinals was nabil talal ( jor ) l pts 3-3, who was the athlete?", "context": "CREATE TABLE table_26335424_86 (athlete VARCHAR, quarterfinals VARCHAR)"}, {"answer": "SELECT round_of_32 FROM table_26335424_86 WHERE quarterfinals = \"Did not advance\" AND event = \"Bantamweight (-63kg)\"", "question": "If the event was bantamweight (-63kg), and the quarterfinals did not advance, then who was in round of 32?", "context": "CREATE TABLE table_26335424_86 (round_of_32 VARCHAR, quarterfinals VARCHAR, event VARCHAR)"}, {"answer": "SELECT semifinals FROM table_26335424_86 WHERE round_of_16 = \"Yulius Fernando ( INA ) L PTS 5-6\"", "question": "If the round of 16 was  yulius fernando ( ina ) l pts 5-6, what was the semifinals?", "context": "CREATE TABLE table_26335424_86 (semifinals VARCHAR, round_of_16 VARCHAR)"}, {"answer": "SELECT event FROM table_26335424_86 WHERE round_of_32 = \"Sawatvilay Phimmasone ( LAO ) W PTS 9-7\"", "question": "If round of 32 is sawatvilay phimmasone ( lao ) w pts 9-7, what was the event?", "context": "CREATE TABLE table_26335424_86 (event VARCHAR, round_of_32 VARCHAR)"}, {"answer": "SELECT MAX(elected) FROM table_26336739_1 WHERE incumbent = \"Saxby Chambliss\"", "question": "What date was the district incumbent Saxby Chambliss elected? ", "context": "CREATE TABLE table_26336739_1 (elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT status FROM table_26336739_1 WHERE incumbent = \"Bob Barr\"", "question": "What is the status in the district with the incumbent Bob Barr? ", "context": "CREATE TABLE table_26336739_1 (status VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(elected) FROM table_26336739_1 WHERE incumbent = \"Saxby Chambliss\"", "question": "How many elected catagories are there for the district with Saxby Chambliss as the incumbent? ", "context": "CREATE TABLE table_26336739_1 (elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_26336739_1 WHERE elected = 1986", "question": "What was the result for the district with an election in 1986", "context": "CREATE TABLE table_26336739_1 (result VARCHAR, elected VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_26336739_1 WHERE incumbent = \"Mac Collins\"", "question": "how many party classifications are there for the incumbent Mac Collins? ", "context": "CREATE TABLE table_26336739_1 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT years_produced FROM table_26352332_4 WHERE engine_family = \"MaxxForce 11\"", "question": "For the engine family MaxxForce 11, what is the years produced?", "context": "CREATE TABLE table_26352332_4 (years_produced VARCHAR, engine_family VARCHAR)"}, {"answer": "SELECT years_produced FROM table_26352332_4 WHERE cylinder_layout = \"V8\"", "question": "The cylinder layout v8 is produced in what years?", "context": "CREATE TABLE table_26352332_4 (years_produced VARCHAR, cylinder_layout VARCHAR)"}, {"answer": "SELECT cylinder_layout FROM table_26352332_4 WHERE years_produced = \"2007-current\" AND engine_family = \"MaxxForce 5\"", "question": "The engine family MaxxForce 5\t in the years produced 2007-current, have what cylinder layout?", "context": "CREATE TABLE table_26352332_4 (cylinder_layout VARCHAR, years_produced VARCHAR, engine_family VARCHAR)"}, {"answer": "SELECT engine_family FROM table_26352332_4 WHERE displacement_s_ = \"10.5L\"", "question": "Where the displacement(s) is 10.5L is, what is the engine family?", "context": "CREATE TABLE table_26352332_4 (engine_family VARCHAR, displacement_s_ VARCHAR)"}, {"answer": "SELECT engine_family FROM table_26352332_4 WHERE displacement_s_ = \"466 cubic inches (7.6L)\"", "question": "The displacement(s) 466 cubic inches (7.6L), has what engine family?", "context": "CREATE TABLE table_26352332_4 (engine_family VARCHAR, displacement_s_ VARCHAR)"}, {"answer": "SELECT coinage_metal FROM table_26336060_19 WHERE km_number = \"S75\"", "question": "What is the coinage metal for a KM number of S75?", "context": "CREATE TABLE table_26336060_19 (coinage_metal VARCHAR, km_number VARCHAR)"}, {"answer": "SELECT MAX(date) FROM table_26336060_19 WHERE mintage = 150 AND km_number = \"S66\"", "question": "What is the maximum date for a mintage of 150 and a KM number of S66?", "context": "CREATE TABLE table_26336060_19 (date INTEGER, mintage VARCHAR, km_number VARCHAR)"}, {"answer": "SELECT mintage FROM table_26336060_19 WHERE location = \"Sion\" AND denomination = \"00500 500 francs\"", "question": "What is the mintage for a location of Sion and a denomination of 00500 500 Francs?", "context": "CREATE TABLE table_26336060_19 (mintage VARCHAR, location VARCHAR, denomination VARCHAR)"}, {"answer": "SELECT coinage_metal FROM table_26336060_19 WHERE km_number = \"S45\"", "question": "What is the coinage metal for KM numbers of S45?", "context": "CREATE TABLE table_26336060_19 (coinage_metal VARCHAR, km_number VARCHAR)"}, {"answer": "SELECT coinage_metal FROM table_26336060_19 WHERE location = \"Fribourg\" AND denomination = \"00005 5 francs\"", "question": "What is the coinage metal for a location of Fribourg and denomination of 00005 5 Francs?", "context": "CREATE TABLE table_26336060_19 (coinage_metal VARCHAR, location VARCHAR, denomination VARCHAR)"}, {"answer": "SELECT under_13 FROM table_26368963_1 WHERE under_17 = \"Antonio Glez\"", "question": "When the under-17 was Antonio Glez, who was the under-13?", "context": "CREATE TABLE table_26368963_1 (under_13 VARCHAR, under_17 VARCHAR)"}, {"answer": "SELECT under_13 FROM table_26368963_1 WHERE year = 2009", "question": "In the year 2009 who was the under-13?", "context": "CREATE TABLE table_26368963_1 (under_13 VARCHAR, year VARCHAR)"}, {"answer": "SELECT under_15 FROM table_26368963_1 WHERE under_19 = \"Julian Illingworth\"", "question": "When Julian Illingworth was the under-19, who was the under-15?", "context": "CREATE TABLE table_26368963_1 (under_15 VARCHAR, under_19 VARCHAR)"}, {"answer": "SELECT under_15 FROM table_26368963_1 WHERE under_17 = \"Moises Galvez\"", "question": "Who was the under-15 when Moises Galvez\twas the under-17?", "context": "CREATE TABLE table_26368963_1 (under_15 VARCHAR, under_17 VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_26368963_1 WHERE under_15 = \"Arturo Salazar Martinez\" AND under_19 = \"Moises Galvez\"", "question": "How many years are there where the the under-15 is Arturo Salazar Martinez and the under-19 is Moises Galvez?", "context": "CREATE TABLE table_26368963_1 (year VARCHAR, under_15 VARCHAR, under_19 VARCHAR)"}, {"answer": "SELECT under_13 FROM table_26368963_1 WHERE under_11 = \"Aly Abou El Einen\"", "question": "When the under-11 was Aly Abou El Einen, who was the under-13?", "context": "CREATE TABLE table_26368963_1 (under_13 VARCHAR, under_11 VARCHAR)"}, {"answer": "SELECT COUNT(election_date) FROM table_26362472_1 WHERE left_office = \"1850-11-15\"", "question": "What is the election date for those politicians who left office on 1850-11-15?", "context": "CREATE TABLE table_26362472_1 (election_date VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT election_date FROM table_26362472_1 WHERE province = \"Albacete\"", "question": "What are the election date for elections held in the province of Albacete?", "context": "CREATE TABLE table_26362472_1 (election_date VARCHAR, province VARCHAR)"}, {"answer": "SELECT left_office FROM table_26362472_1 WHERE election_number = 11", "question": "What is the date in which a politician who left office on 1840-10-11 for a politician whose election number was 11?", "context": "CREATE TABLE table_26362472_1 (left_office VARCHAR, election_number VARCHAR)"}, {"answer": "SELECT district FROM table_26362472_1 WHERE took_office = \"1844-10-14\"", "question": "In how many district has a politician took office on 1844-10-14?", "context": "CREATE TABLE table_26362472_1 (district VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT left_office FROM table_26362472_1 WHERE province = \"Seville\"", "question": "What are the dates of leaving office for politician from the province of Seville?", "context": "CREATE TABLE table_26362472_1 (left_office VARCHAR, province VARCHAR)"}, {"answer": "SELECT COUNT(fastest_qualifying) FROM table_26358264_2 WHERE country = \"United Arab Emirates\"", "question": "When united arab emirates is the country how many fastest qualifying are there?", "context": "CREATE TABLE table_26358264_2 (fastest_qualifying VARCHAR, country VARCHAR)"}, {"answer": "SELECT location FROM table_26358264_2 WHERE fastest_qualifying = \"Cancelled\"", "question": "When cancelled is the fastest qualifying where is the location?", "context": "CREATE TABLE table_26358264_2 (location VARCHAR, fastest_qualifying VARCHAR)"}, {"answer": "SELECT winning_aircraft FROM table_26358264_2 WHERE country = \"United Arab Emirates\"", "question": "When united arab emirates is the country what is the winning aircraft?", "context": "CREATE TABLE table_26358264_2 (winning_aircraft VARCHAR, country VARCHAR)"}, {"answer": "SELECT assists FROM table_26360571_2 WHERE opponent = \"Illinois-Chicago\"", "question": "List the number of assists against illinois-chicago.", "context": "CREATE TABLE table_26360571_2 (assists VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_26360571_2 WHERE date = \"February 15, 2003\"", "question": "List the opposing team on february 15, 2003.", "context": "CREATE TABLE table_26360571_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT rebounds FROM table_26360571_2 WHERE _number = 2", "question": "List the number of recovers for player #2.", "context": "CREATE TABLE table_26360571_2 (rebounds VARCHAR, _number VARCHAR)"}, {"answer": "SELECT opponent FROM table_26360571_2 WHERE date = \"February 22, 1983\"", "question": "List the opposing team from february 22, 1983.", "context": "CREATE TABLE table_26360571_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(assists) FROM table_26360571_2", "question": "List the lowest number of assists.", "context": "CREATE TABLE table_26360571_2 (assists INTEGER)"}, {"answer": "SELECT under_11 FROM table_26368963_2 WHERE under_17 = \"Salma Nassar\"", "question": "What is every value for Under-11 when value of under-17 is Salma Nassar?", "context": "CREATE TABLE table_26368963_2 (under_11 VARCHAR, under_17 VARCHAR)"}, {"answer": "SELECT under_13 FROM table_26368963_2 WHERE under_15 = \"Maria Elena Ubina\"", "question": "What is every value for Under-13 when value for Under-15 is Maria Elena Ubina?", "context": "CREATE TABLE table_26368963_2 (under_13 VARCHAR, under_15 VARCHAR)"}, {"answer": "SELECT under_17 FROM table_26368963_2 WHERE under_15 = \"Maria Elena Ubina\"", "question": "What is every value for Under-17 if Under-15 is Maria Elena Ubina?", "context": "CREATE TABLE table_26368963_2 (under_17 VARCHAR, under_15 VARCHAR)"}, {"answer": "SELECT under_11 FROM table_26368963_2 WHERE under_19 = \"Leong Siu Lynn\"", "question": "What is every value for Under-11 if Under-19 is Leong Siu Lynn?", "context": "CREATE TABLE table_26368963_2 (under_11 VARCHAR, under_19 VARCHAR)"}, {"answer": "SELECT under_15 FROM table_26368963_2 WHERE under_11 = \"Reeham Sedky\"", "question": "Who is every Under-15 if Under-11 is Reeham Sedky?", "context": "CREATE TABLE table_26368963_2 (under_15 VARCHAR, under_11 VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_26375386_16 WHERE vote_percentage = \"9.5%\"", "question": "How many couples had a vote percentage of 9.5%?", "context": "CREATE TABLE table_26375386_16 (rank VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT MIN(judges) FROM table_26375386_16 WHERE couple = \"Danny and Frankie\"", "question": "What was the lowest judge rank for danny and frankie?", "context": "CREATE TABLE table_26375386_16 (judges INTEGER, couple VARCHAR)"}, {"answer": "SELECT couple FROM table_26375386_16 WHERE total = 8", "question": "What couple had a total of 8?", "context": "CREATE TABLE table_26375386_16 (couple VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(change_in_population_since_1993) FROM table_2637317_1 WHERE _percentage_of_countrys_population = \"4.2\"", "question": "What is the change in population since 1993 in the region where the % of country's population was 4.2? ", "context": "CREATE TABLE table_2637317_1 (change_in_population_since_1993 VARCHAR, _percentage_of_countrys_population VARCHAR)"}, {"answer": "SELECT broadcast_area FROM table_2638104_1 WHERE channel = 1", "question": "What is the broadcast are for channel 1?", "context": "CREATE TABLE table_2638104_1 (broadcast_area VARCHAR, channel VARCHAR)"}, {"answer": "SELECT callsign FROM table_2638104_1 WHERE channel = 6", "question": "What is the call sign for channel 6?", "context": "CREATE TABLE table_2638104_1 (callsign VARCHAR, channel VARCHAR)"}, {"answer": "SELECT COUNT(channel) FROM table_2638104_1 WHERE broadcast_area = \"Greater Tokyo\"", "question": "How many channels are there in the Greater Tokyo area?", "context": "CREATE TABLE table_2638104_1 (channel VARCHAR, broadcast_area VARCHAR)"}, {"answer": "SELECT signal_power FROM table_2638104_1 WHERE callsign = \"JOAB-DTV\"", "question": "What is the signal power for JOAB-DTV?", "context": "CREATE TABLE table_2638104_1 (signal_power VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_26375386_20 WHERE vote_percentage = \"10.7%\"", "question": "How many times is the voting percentage 10.7%", "context": "CREATE TABLE table_26375386_20 (rank VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT vote_percentage FROM table_26375386_20 WHERE couple = \"Gary and Maria\"", "question": "What is the vote percentage for the couple gary and maria?", "context": "CREATE TABLE table_26375386_20 (vote_percentage VARCHAR, couple VARCHAR)"}, {"answer": "SELECT couple FROM table_26375386_20 WHERE vote_percentage = \"5.8%\"", "question": "what couple had a vote percentage of 5.8%?", "context": "CREATE TABLE table_26375386_20 (couple VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT public FROM table_26375386_20 WHERE vote_percentage = \"16.0%\"", "question": "What is the public when the vote percentage is 16.0%", "context": "CREATE TABLE table_26375386_20 (public VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT MIN(judges) FROM table_26375386_20 WHERE result = \"Safe\" AND vote_percentage = \"10.7%\"", "question": "How many judges were there when the result is safe with a vote percentage of 10.7%?", "context": "CREATE TABLE table_26375386_20 (judges INTEGER, result VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_26375386_20 WHERE vote_percentage = \"15.0%\"", "question": "How many times was the vote percentage 15.0%?", "context": "CREATE TABLE table_26375386_20 (total VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT MIN(place) FROM table_26375386_28 WHERE couple = \"Keiron & Brianne\"", "question": "What is the least place when the couple is Keiron & Brianne?", "context": "CREATE TABLE table_26375386_28 (place INTEGER, couple VARCHAR)"}, {"answer": "SELECT COUNT(number_of_dances) FROM table_26375386_28 WHERE place = 1", "question": "How many numbers of dances for place 1?", "context": "CREATE TABLE table_26375386_28 (number_of_dances VARCHAR, place VARCHAR)"}, {"answer": "SELECT COUNT(rank_by_average) FROM table_26375386_28 WHERE couple = \"Keiron & Brianne\"", "question": "How many ranks by average when Keiron & Brianne are the couple?", "context": "CREATE TABLE table_26375386_28 (rank_by_average VARCHAR, couple VARCHAR)"}, {"answer": "SELECT average FROM table_26375386_28 WHERE number_of_dances = 1", "question": "What is every average when number of dances is 1?", "context": "CREATE TABLE table_26375386_28 (average VARCHAR, number_of_dances VARCHAR)"}, {"answer": "SELECT COUNT(rank_by_average) FROM table_26375386_28 WHERE couple = \"Tana and Stuart\"", "question": "How many ranks by average for the couple Tana and Stuart?", "context": "CREATE TABLE table_26375386_28 (rank_by_average VARCHAR, couple VARCHAR)"}, {"answer": "SELECT rank FROM table_26375386_22 WHERE couple = \"Mikey and Melanie\"", "question": "Name the rank for mikey and melanie", "context": "CREATE TABLE table_26375386_22 (rank VARCHAR, couple VARCHAR)"}, {"answer": "SELECT public FROM table_26375386_22 WHERE couple = \"Mikey and Melanie\"", "question": "Name the public for mikey and melanie", "context": "CREATE TABLE table_26375386_22 (public VARCHAR, couple VARCHAR)"}, {"answer": "SELECT judges FROM table_26375386_22 WHERE public = 4", "question": "Name the judges for 4 public", "context": "CREATE TABLE table_26375386_22 (judges VARCHAR, public VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_26375386_22 WHERE public = 3", "question": "Name the total number for 3 public", "context": "CREATE TABLE table_26375386_22 (total VARCHAR, public VARCHAR)"}, {"answer": "SELECT COUNT(director) FROM table_26385848_1 WHERE film_title = \"Eldra\"", "question": "What is the number of directors for the film title Eldra?", "context": "CREATE TABLE table_26385848_1 (director VARCHAR, film_title VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_26385848_1 WHERE film_title = \"Eldra\"", "question": "What is the year (ceremony) for the film title Eldra?", "context": "CREATE TABLE table_26385848_1 (year__ceremony_ VARCHAR, film_title VARCHAR)"}, {"answer": "SELECT director FROM table_26385848_1 WHERE film_title = \"Eldra\"", "question": "Who is the director for the  film title Eldra?", "context": "CREATE TABLE table_26385848_1 (director VARCHAR, film_title VARCHAR)"}, {"answer": "SELECT main_language_s_ FROM table_26385848_1 WHERE year__ceremony_ = \"1998 (71st)\"", "question": "In the year (ceremony) 1998 (71st), what are all the main languages?", "context": "CREATE TABLE table_26385848_1 (main_language_s_ VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT director FROM table_26385848_1 WHERE year__ceremony_ = \"2009 (82nd)\"", "question": "In the year (ceremony) 2009 (82nd), who are all the directors?", "context": "CREATE TABLE table_26385848_1 (director VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT film_title FROM table_26385848_1 WHERE year__ceremony_ = \"1995 (68th)\"", "question": "In the year (ceremony) 1995 (68th), what is the film title?", "context": "CREATE TABLE table_26385848_1 (film_title VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT primary_user FROM table_26389588_1 WHERE country_of_origin = \"South Africa\"", "question": "If the country of Origin is South Africa, who is the primary user?", "context": "CREATE TABLE table_26389588_1 (primary_user VARCHAR, country_of_origin VARCHAR)"}, {"answer": "SELECT primary_cartridge FROM table_26389588_1 WHERE year_of_introduction = \"1962\" AND country_of_origin = \"Denmark\"", "question": "If the Country of Origin is Denmark and the year of introduction is 1962, what is the primary cartridge?", "context": "CREATE TABLE table_26389588_1 (primary_cartridge VARCHAR, year_of_introduction VARCHAR, country_of_origin VARCHAR)"}, {"answer": "SELECT COUNT(year_of_introduction) FROM table_26389588_1 WHERE name___designation = \"CETME\"", "question": "How many different years was the name/designation cetme?", "context": "CREATE TABLE table_26389588_1 (year_of_introduction VARCHAR, name___designation VARCHAR)"}, {"answer": "SELECT name___designation FROM table_26389588_1 WHERE country_of_origin = \"Switzerland\"", "question": "If the country of origin is switzerland, what is the name/ designation?", "context": "CREATE TABLE table_26389588_1 (name___designation VARCHAR, country_of_origin VARCHAR)"}, {"answer": "SELECT COUNT(single) FROM table_26400075_2 WHERE artist = \"Lisa Stansfield\"", "question": "How many singles does Lisa Stansfield have?", "context": "CREATE TABLE table_26400075_2 (single VARCHAR, artist VARCHAR)"}, {"answer": "SELECT weeks_in_top_10 FROM table_26400075_2 WHERE artist = \"Beats International\"", "question": "How many weeks in the top-10 did Beats International have?", "context": "CREATE TABLE table_26400075_2 (weeks_in_top_10 VARCHAR, artist VARCHAR)"}, {"answer": "SELECT final_score FROM table_26401898_2 WHERE opponent = \"Barcelona Dragons\"", "question": "Name the final score for barcelona dragons", "context": "CREATE TABLE table_26401898_2 (final_score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_26401898_2 WHERE final_score = \"L 26\u201342\"", "question": "Name the least week for  l 26\u201342", "context": "CREATE TABLE table_26401898_2 (week INTEGER, final_score VARCHAR)"}, {"answer": "SELECT game_site FROM table_26401898_2 WHERE final_score = \"L 26\u201342\"", "question": "Name the game site for  l 26\u201342", "context": "CREATE TABLE table_26401898_2 (game_site VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_26401898_2", "question": "Name the most attendance", "context": "CREATE TABLE table_26401898_2 (attendance INTEGER)"}, {"answer": "SELECT incumbent FROM table_26416704_1 WHERE elected = \"2004\" AND status = \"Re-elected\" AND party = \"Republican\"", "question": "Who is the incumbent when the elected year is 2004, the status is re-elected and the party is republican?", "context": "CREATE TABLE table_26416704_1 (incumbent VARCHAR, party VARCHAR, elected VARCHAR, status VARCHAR)"}, {"answer": "SELECT written_by FROM table_26409328_1 WHERE directed_by = \"Joe Daniello\" AND production_code = \"6AJN05\"", "question": "who wrote the episode having joe daniello as director with production code 6ajn05?", "context": "CREATE TABLE table_26409328_1 (written_by VARCHAR, directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_26409328_1 WHERE production_code = \"6AJN08\"", "question": "what title was given to the episode with production code 6ajn08?", "context": "CREATE TABLE table_26409328_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT production_code FROM table_26409328_1 WHERE us_viewers__millions_ = \"5.36\"", "question": "what is the production code of the episode viewed by 5.36 million u.s. people? ", "context": "CREATE TABLE table_26409328_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(hometown) FROM table_26419467_1 WHERE fresh_meat_partner = \"Sydney Walker\"", "question": "How many cast members had sydney walker as their fresh meat partner?", "context": "CREATE TABLE table_26419467_1 (hometown VARCHAR, fresh_meat_partner VARCHAR)"}, {"answer": "SELECT alumni FROM table_26419467_1 WHERE fresh_meat_partner = \"Noor Jehangir\"", "question": "What alumni had noor jehangir as their fresh meat partner?", "context": "CREATE TABLE table_26419467_1 (alumni VARCHAR, fresh_meat_partner VARCHAR)"}, {"answer": "SELECT alumni FROM table_26419467_1 WHERE original_season = \"RW: Cancun\"", "question": "What alumni were in rw: cancun as their original season?", "context": "CREATE TABLE table_26419467_1 (alumni VARCHAR, original_season VARCHAR)"}, {"answer": "SELECT COUNT(age) FROM table_26419467_1 WHERE hometown = \"Portland, OR\"", "question": "How many people were from portland, or?", "context": "CREATE TABLE table_26419467_1 (age VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT conference FROM table_26423157_2 WHERE school = \"Tennessee\"", "question": "What conference is Tennessee?", "context": "CREATE TABLE table_26423157_2 (conference VARCHAR, school VARCHAR)"}, {"answer": "SELECT seed FROM table_26423157_2 WHERE school = \"California\"", "question": "What seed was California?", "context": "CREATE TABLE table_26423157_2 (seed VARCHAR, school VARCHAR)"}, {"answer": "SELECT \u03b5__m_\u22121_cm_\u22121__ FROM table_26428602_1 WHERE color = \"red\"", "question": "What is the \u03b5 (m \u22121 cm \u22121 )  of the red dye?", "context": "CREATE TABLE table_26428602_1 (\u03b5__m_\u22121_cm_\u22121__ VARCHAR, color VARCHAR)"}, {"answer": "SELECT MIN(absorb__nm_) FROM table_26428602_1 WHERE color = \"orange\"", "question": "How much absorption in nm does the orange dye have?", "context": "CREATE TABLE table_26428602_1 (absorb__nm_ INTEGER, color VARCHAR)"}, {"answer": "SELECT \u03b5__m_\u22121_cm_\u22121__ FROM table_26428602_1 WHERE color = \"orange\"", "question": "What is the \u03b5 (m \u22121 cm \u22121 ) of the orange flourescent dye?", "context": "CREATE TABLE table_26428602_1 (\u03b5__m_\u22121_cm_\u22121__ VARCHAR, color VARCHAR)"}, {"answer": "SELECT MIN(absorb__nm_) FROM table_26428602_1", "question": "What is the lowest dye absoprtion in nm?", "context": "CREATE TABLE table_26428602_1 (absorb__nm_ INTEGER)"}, {"answer": "SELECT title FROM table_26429771_1 WHERE no_in_season = 8", "question": "What is the name of chapter 8 of season 4?", "context": "CREATE TABLE table_26429771_1 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_26429543_1 WHERE us_viewers__millions_ = \"4.69\"", "question": "How many different production codes are there for the episode with 4.69 million US viewers?", "context": "CREATE TABLE table_26429543_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT 2005 AS _film FROM table_26436_2 WHERE role = \"Mark Cohen\"", "question": "Who was in the 2005 film with the role mark cohen?", "context": "CREATE TABLE table_26436_2 (role VARCHAR)"}, {"answer": "SELECT 2005 AS _film FROM table_26436_2 WHERE original_broadway_cast = \"Jesse L. Martin\"", "question": "who was in the 2005 role when the original broadway cast was played by jesse l. martin?", "context": "CREATE TABLE table_26436_2 (original_broadway_cast VARCHAR)"}, {"answer": "SELECT written_by FROM table_26448179_3 WHERE production_code = \"202\"", "question": "Who wrote the episode that is production code 202?", "context": "CREATE TABLE table_26448179_3 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_26448179_3 WHERE us_viewers__millions_ = \"3.8\"", "question": "What title was watched by 3.8 million US viewers?", "context": "CREATE TABLE table_26448179_3 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_26448179_3 WHERE production_code = \"210\"", "question": "What season number in the season has production code 210?", "context": "CREATE TABLE table_26448179_3 (no_in_season INTEGER, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_26448179_2 WHERE production_code = \"102\"", "question": " He wrote production number 102? ", "context": "CREATE TABLE table_26448179_2 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_26448179_4 WHERE us_viewers__millions_ = \"3.2\"", "question": "What is the title of the episode watched by 3.2 million viewers?", "context": "CREATE TABLE table_26448179_4 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_26448179_4 WHERE production_code = 305", "question": "What is the title of the episode with production code 305?", "context": "CREATE TABLE table_26448179_4 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_26448179_4 WHERE us_viewers__millions_ = \"3.2\"", "question": "How many air dates had 3.2 million viewers?", "context": "CREATE TABLE table_26448179_4 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_26448179_4", "question": "What is the highest production code?", "context": "CREATE TABLE table_26448179_4 (production_code INTEGER)"}, {"answer": "SELECT points FROM table_26454128_9 WHERE athlete = \"Barney Berlinger\"", "question": "What are the point value(s) for when the athlete was Barney Berlinger?", "context": "CREATE TABLE table_26454128_9 (points VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_26454128_9 WHERE distance__metres_ = \"41.05\"", "question": "What is the total number of times points were listed when the distance was 41.05 metres?", "context": "CREATE TABLE table_26454128_9 (points VARCHAR, distance__metres_ VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_26454128_9 WHERE distance__metres_ = \"52.73\"", "question": "What is the highest rank where the distance is 52.73?", "context": "CREATE TABLE table_26454128_9 (rank INTEGER, distance__metres_ VARCHAR)"}, {"answer": "SELECT country FROM table_26454128_9 WHERE points = \"723.075\"", "question": "What is the country(s) where the points equal 723.075?", "context": "CREATE TABLE table_26454128_9 (country VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(Adjusted) AS points FROM table_26454128_4 WHERE country = \"Great Britain\"", "question": "What is the most adjusted points for Great Britain?", "context": "CREATE TABLE table_26454128_4 (Adjusted INTEGER, country VARCHAR)"}, {"answer": "SELECT country FROM table_26454128_4 WHERE athlete = \"Paavo Yrj\u00f6l\u00e4\"", "question": "What is the country of Paavo Yrj\u00f6l\u00e4?", "context": "CREATE TABLE table_26454128_4 (country VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT athlete FROM table_26454128_4 WHERE height = \"1.87\" AND country = \"Sweden\"", "question": "Which athlete has a height of 1.87 and is from Sweden?", "context": "CREATE TABLE table_26454128_4 (athlete VARCHAR, height VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_26454128_7 WHERE athlete = \"Ken Doherty\"", "question": "Name the country that has ken doherty", "context": "CREATE TABLE table_26454128_7 (country VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT athlete FROM table_26454128_7 WHERE rank = 7", "question": "Name the athlete for 7 rank", "context": "CREATE TABLE table_26454128_7 (athlete VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_26454128_7 WHERE athlete = \"Tom Churchill\"", "question": "Name the total number of rank for tom churchill", "context": "CREATE TABLE table_26454128_7 (rank VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT heir FROM table_26460435_5 WHERE monarch = \"Wareru\"", "question": "Who was the heir when the monarch was Wareru?", "context": "CREATE TABLE table_26460435_5 (heir VARCHAR, monarch VARCHAR)"}, {"answer": "SELECT COUNT(monarch) FROM table_26460435_5 WHERE heir = \"Yan Maw La Mon\"", "question": "What is the number of monarchs that had Yan Maw la Mon as the heir?", "context": "CREATE TABLE table_26460435_5 (monarch VARCHAR, heir VARCHAR)"}, {"answer": "SELECT status FROM table_26460435_7 WHERE monarch = \"Mingyinyo\"", "question": "What is the status for the monarch Mingyinyo?", "context": "CREATE TABLE table_26460435_7 (status VARCHAR, monarch VARCHAR)"}, {"answer": "SELECT monarch FROM table_26460435_8 WHERE heir = \"Thado Minsaw\"", "question": "Who is the monarch with the heir thado minsaw?", "context": "CREATE TABLE table_26460435_8 (monarch VARCHAR, heir VARCHAR)"}, {"answer": "SELECT written_by FROM table_26464364_1 WHERE directed_by = \"Justin Hartley\"", "question": "Who are the writers of the episodes directed by Justin Hartley?", "context": "CREATE TABLE table_26464364_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT us_air_date FROM table_26464364_1 WHERE _number = 18", "question": "On which date did episode # 18 air in the U.S.?", "context": "CREATE TABLE table_26464364_1 (us_air_date VARCHAR, _number VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_26464364_1 WHERE production_code = \"3X6004\"", "question": "How many million U.S. viewers watched the episode with the production code 3x6004?", "context": "CREATE TABLE table_26464364_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_26464364_1 WHERE written_by = \"Anne Cofell Saunders\"", "question": "List the titles of episodes written by Anne Cofell Saunders.", "context": "CREATE TABLE table_26464364_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_26464364_1 WHERE directed_by = \"Christopher Petry\" AND production_code = \"3X6006\"", "question": "What is the title of the episode directed by Christopher Petry with the production cod 3x6006?", "context": "CREATE TABLE table_26464364_1 (title VARCHAR, directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2646656_3 WHERE district = \"Ohio 10\"", "question": "Who was the incumbent in the Ohio 10 district?", "context": "CREATE TABLE table_2646656_3 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2646656_3 WHERE district = \"Ohio 5\"", "question": "Who was the incumbent in the Ohio 5 district?", "context": "CREATE TABLE table_2646656_3 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_2646656_3 WHERE result = \"Retired Republican hold\" AND incumbent = \"Philemon Bliss\"", "question": "Who were the candidates where the result was retired Republican hold and the incumbent was Philemon Bliss?", "context": "CREATE TABLE table_2646656_3 (candidates VARCHAR, result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(new_conference) FROM table_26476336_2 WHERE new_classification = \"NCLL Deep South Conference\"", "question": "How many new conferences are in the NCLL deep south conference?", "context": "CREATE TABLE table_26476336_2 (new_conference VARCHAR, new_classification VARCHAR)"}, {"answer": "SELECT team_nickname FROM table_26476336_2 WHERE institution = \"University of Nebraska at Omaha\"", "question": "What is the nickname at the University of Nebraska at Omaha?", "context": "CREATE TABLE table_26476336_2 (team_nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT location FROM table_26476336_2 WHERE years = \"2005-2010\"", "question": "What location is listed from 2005-2010?", "context": "CREATE TABLE table_26476336_2 (location VARCHAR, years VARCHAR)"}, {"answer": "SELECT location FROM table_26476336_2 WHERE team_nickname = \"Red Raiders\"", "question": "Where is the nickname the Red Raiders?", "context": "CREATE TABLE table_26476336_2 (location VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT institution FROM table_26476336_2 WHERE new_conference = \"SELC\"", "question": "What school has the new conference as SELC?", "context": "CREATE TABLE table_26476336_2 (institution VARCHAR, new_conference VARCHAR)"}, {"answer": "SELECT years FROM table_26476336_2 WHERE new_classification = \"MCLA Division I\"", "question": "What are the years that the new classification was MCLA division i?", "context": "CREATE TABLE table_26476336_2 (years VARCHAR, new_classification VARCHAR)"}, {"answer": "SELECT colors FROM table_26466528_1 WHERE location = \"North Canton\"", "question": "Name the colors for north canton", "context": "CREATE TABLE table_26466528_1 (colors VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(join_date) FROM table_26466528_1", "question": "Name the most join date", "context": "CREATE TABLE table_26466528_1 (join_date INTEGER)"}, {"answer": "SELECT MIN(join_date) FROM table_26466528_1", "question": "Name the least join date", "context": "CREATE TABLE table_26466528_1 (join_date INTEGER)"}, {"answer": "SELECT location FROM table_26466528_1 WHERE colors = \"Black, Orange\"", "question": "Name the location for black, orange", "context": "CREATE TABLE table_26466528_1 (location VARCHAR, colors VARCHAR)"}, {"answer": "SELECT join_date FROM table_26466528_1 WHERE location = \"North Canton\"", "question": "Name when north canton joined", "context": "CREATE TABLE table_26466528_1 (join_date VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(series) FROM table_26473176_1 WHERE position = \"12th\"", "question": "How many \"series\" were in the 12th \"position?", "context": "CREATE TABLE table_26473176_1 (series VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_26473176_1 WHERE points = 10", "question": "How many teams were at 10 points?", "context": "CREATE TABLE table_26473176_1 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT podiums FROM table_26473176_1 WHERE position = \"12th\"", "question": "What was the number of podiums in 12th position?", "context": "CREATE TABLE table_26473176_1 (podiums VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(finish) FROM table_2649597_1 WHERE start = \"21.6\"", "question": "Where did he finish when he started at 21.6?", "context": "CREATE TABLE table_2649597_1 (finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT team_s_ FROM table_2649597_1 WHERE start = \"39.1\"", "question": "What teams started at 39.1?", "context": "CREATE TABLE table_2649597_1 (team_s_ VARCHAR, start VARCHAR)"}, {"answer": "SELECT season_rank FROM table_2649597_1 WHERE winnings = \"$491,977\"", "question": "Where did they finish in the season when when they won $491,977?", "context": "CREATE TABLE table_2649597_1 (season_rank VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT COUNT(genre) FROM table_26488540_1 WHERE artist = \"The Jimi Hendrix Experience\"", "question": "How many different genres appear for the Jimi Hendrix Experience?", "context": "CREATE TABLE table_26488540_1 (genre VARCHAR, artist VARCHAR)"}, {"answer": "SELECT title FROM table_26493520_3 WHERE total_viewers_on_fx = \"483,000\"", "question": "Name the title for total viewers on fx+ being 483,000", "context": "CREATE TABLE table_26493520_3 (title VARCHAR, total_viewers_on_fx VARCHAR)"}, {"answer": "SELECT rank_on_channel FROM table_26493520_3 WHERE original_air_date = \"January 21, 2011\"", "question": "Name the rank on channel for january 21, 2011", "context": "CREATE TABLE table_26493520_3 (rank_on_channel VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_26493520_1 WHERE written_by = \"Alexander Woo\" AND directed_by = \"Scott Winant\"", "question": "How many episodes were written by Alexander Woo and directed by Scott Winant?", "context": "CREATE TABLE table_26493520_1 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_26533354_8 WHERE player = \"Jordan Cameron\"", "question": "Name the most round for jordan cameron", "context": "CREATE TABLE table_26533354_8 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT position FROM table_26533354_8 WHERE player = \"Jordan Cameron\"", "question": "Name the position for jordan cameron", "context": "CREATE TABLE table_26533354_8 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_26533354_8 WHERE player = \"Stanley Havili\"", "question": "Name the position for stanley havili", "context": "CREATE TABLE table_26533354_8 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_26533354_8 WHERE player = \"David Carter\"", "question": "Name the college for david carter", "context": "CREATE TABLE table_26533354_8 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT democratic_coalition FROM table_2651755_1 WHERE together_we_can_do_more = \"Sergio Castro ( PC )\"", "question": "What is the democratic coalation when together we can do more is sergio castro ( pc )?", "context": "CREATE TABLE table_2651755_1 (democratic_coalition VARCHAR, together_we_can_do_more VARCHAR)"}, {"answer": "SELECT independent_regional_force FROM table_2651755_1 WHERE alliance = \"(R) Iv\u00e1n Norambuena ( UDI )\"", "question": "What is the independent regional force when alliance is (r) iv\u00e1n norambuena ( udi )?", "context": "CREATE TABLE table_2651755_1 (independent_regional_force VARCHAR, alliance VARCHAR)"}, {"answer": "SELECT together_we_can_do_more FROM table_2651755_1 WHERE democratic_coalition = \"Ren\u00e9 Alinco ( PPD )\"", "question": "Who is the together we can do more when democratic coalition is ren\u00e9 alinco ( ppd )?", "context": "CREATE TABLE table_2651755_1 (together_we_can_do_more VARCHAR, democratic_coalition VARCHAR)"}, {"answer": "SELECT independent_regional_force FROM table_2651755_1 WHERE democratic_coalition = \"(R) Jorge Tarud ( PPD )\"", "question": "Who is the independent regional force when democratic coalition is (r) jorge tarud ( ppd )?", "context": "CREATE TABLE table_2651755_1 (independent_regional_force VARCHAR, democratic_coalition VARCHAR)"}, {"answer": "SELECT cons FROM table_2651755_2 WHERE together_we_can_do_more = \"Gloria Mujica ( PH )\"", "question": "where together we can do more is gloria mujica ( ph ) what are all the cons.", "context": "CREATE TABLE table_2651755_2 (cons VARCHAR, together_we_can_do_more VARCHAR)"}, {"answer": "SELECT alliance FROM table_2651755_2 WHERE democratic_coalition = \"Eduardo Frei ( PDC )\"", "question": "where democratic coalition is eduardo frei ( pdc ) what are all the alliance", "context": "CREATE TABLE table_2651755_2 (alliance VARCHAR, democratic_coalition VARCHAR)"}, {"answer": "SELECT episode_title FROM table_2655016_4 WHERE nick_prod__number = 342", "question": " What's the name of the episode associated with Nick production number 342? ", "context": "CREATE TABLE table_2655016_4 (episode_title VARCHAR, nick_prod__number VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2655016_4 WHERE season__number = 12", "question": " What date did season 12 premiere? ", "context": "CREATE TABLE table_2655016_4 (original_air_date VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT MIN(nick_prod__number) FROM table_2655016_4", "question": " What is the lowest Nick production number? ", "context": "CREATE TABLE table_2655016_4 (nick_prod__number INTEGER)"}, {"answer": "SELECT original_air_date FROM table_2655016_10 WHERE nick_prod__number = 945", "question": "When did the episode originally air with a nick production number of 945?", "context": "CREATE TABLE table_2655016_10 (original_air_date VARCHAR, nick_prod__number VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_2655016_10 WHERE nick_prod__number = 942", "question": "What was the latest season with a nick production number of 942?", "context": "CREATE TABLE table_2655016_10 (season__number INTEGER, nick_prod__number VARCHAR)"}, {"answer": "SELECT metrical_equivalence FROM table_26538461_2 WHERE portuguese_name = \"Linha\"", "question": "Name the metrical equivalence for linha", "context": "CREATE TABLE table_26538461_2 (metrical_equivalence VARCHAR, portuguese_name VARCHAR)"}, {"answer": "SELECT equivalence_in_varas FROM table_26538461_2 WHERE english_name = \"Geometrical pace\"", "question": "Name the equivalence for varas for geometrical pace", "context": "CREATE TABLE table_26538461_2 (equivalence_in_varas VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT subdivides_in FROM table_26538461_2 WHERE equivalence_in_varas = \"1/5\"", "question": "Name the subdivides in equivalence for varas 1/5", "context": "CREATE TABLE table_26538461_2 (subdivides_in VARCHAR, equivalence_in_varas VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_26555737_1 WHERE arabic_title = \"\u0645\u0648\u0633\u0645 \u0632\u064a\u062a\u0648\u0646\"", "question": "When \u0645\u0648\u0633\u0645 \u0632\u064a\u062a\u0648\u0646 is the arabic title when is the year (ceremony)?", "context": "CREATE TABLE table_26555737_1 (year__ceremony_ VARCHAR, arabic_title VARCHAR)"}, {"answer": "SELECT english_title FROM table_26555737_1 WHERE arabic_title = \"\u0645\u0644\u062d \u0647\u0630\u0627 \u0627\u0644\u0628\u062d\u0631\"", "question": "When \u0645\u0644\u062d \u0647\u0630\u0627 \u0627\u0644\u0628\u062d\u0631 is the arabic title what is the english title?", "context": "CREATE TABLE table_26555737_1 (english_title VARCHAR, arabic_title VARCHAR)"}, {"answer": "SELECT director FROM table_26555737_1 WHERE result = \"Nominee\"", "question": "When nominee is the result who is the director?", "context": "CREATE TABLE table_26555737_1 (director VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_26555737_1 WHERE director = \"Hany Abu-Assad Category:Articles with hCards\"", "question": "When  hany abu-assad category:articles with hcards is the director what is the result?", "context": "CREATE TABLE table_26555737_1 (result VARCHAR, director VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_26555737_1 WHERE year__ceremony_ = \"2012 (85th)\"", "question": "When 2012 (85th) is the year (ceremony) how many results?", "context": "CREATE TABLE table_26555737_1 (result VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT director FROM table_26555737_1 WHERE english_title = \"Salt of this Sea\"", "question": "When salt of this sea is the english title who is the director?", "context": "CREATE TABLE table_26555737_1 (director VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT record_low FROM table_26558_1 WHERE precip = \"1.71 in.\"", "question": "What was the record lowest temperature with a precipitation of 1.71 in.?", "context": "CREATE TABLE table_26558_1 (record_low VARCHAR, precip VARCHAR)"}, {"answer": "SELECT directed_by FROM table_26561498_1 WHERE production_code = 176452", "question": "who directed and produced 176452?", "context": "CREATE TABLE table_26561498_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_26561498_1 WHERE patient_portrayer = \"Julie Warner\"", "question": "what is the original air date for julie warner?", "context": "CREATE TABLE table_26561498_1 (original_air_date VARCHAR, patient_portrayer VARCHAR)"}, {"answer": "SELECT written_by FROM table_26561498_1 WHERE patient_portrayer = \"Alex Carter\"", "question": "what was written by alex carter?", "context": "CREATE TABLE table_26561498_1 (written_by VARCHAR, patient_portrayer VARCHAR)"}, {"answer": "SELECT patient_portrayer FROM table_26561509_1 WHERE production_code = \"3T5004\"", "question": "Who is the patient portrayer of the episode with the production code 3T5004?", "context": "CREATE TABLE table_26561509_1 (patient_portrayer VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_26561509_1 WHERE directed_by = \"Charles Haid\" AND no = 54", "question": "The episode with the no. 54, directed by Charles Haid, is written by who?", "context": "CREATE TABLE table_26561509_1 (written_by VARCHAR, directed_by VARCHAR, no VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_26561509_1 WHERE production_code = \"3T5009\"", "question": "How many are directed by episodes with the production code 3T5009?", "context": "CREATE TABLE table_26561509_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE episode = 9", "question": "When was the first UK broadcast for episode 9?", "context": "CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE official_tns_gallup_ratings = 1575000", "question": "When was the first UK broadcast for the episode with an official TNS Gallup rating of 1575000?", "context": "CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, official_tns_gallup_ratings VARCHAR)"}, {"answer": "SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE official_barb_ratings = 1085000", "question": "When was the first UK broadcast when the official Barb ratings was 1085000?", "context": "CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, official_barb_ratings VARCHAR)"}, {"answer": "SELECT writer FROM table_26591434_1 WHERE ratings__kanto_ = \"14.8\"", "question": "Who is the writer with the ratings 14.8?", "context": "CREATE TABLE table_26591434_1 (writer VARCHAR, ratings__kanto_ VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_26591434_1 WHERE writer = \"Tanaka Shinichi\"", "question": "What is the original air date for the writer tanaka shinichi?", "context": "CREATE TABLE table_26591434_1 (original_airdate VARCHAR, writer VARCHAR)"}, {"answer": "SELECT ratings__kansai_ FROM table_26591434_1 WHERE original_airdate = \"May 25, 2010 22.00 - 22.54\"", "question": "What is the ratings for the original air date may 25, 2010 22.00 - 22.54?", "context": "CREATE TABLE table_26591434_1 (ratings__kansai_ VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT ratings__kanto_ FROM table_26591434_1 WHERE episode = 11", "question": "What was the ratings for episode 11?", "context": "CREATE TABLE table_26591434_1 (ratings__kanto_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_26593762_3 WHERE incoming_manager = \"Dougie Freedman\"", "question": "Who was the outgoing manager of the team whose incoming manager was Dougie Freedman?", "context": "CREATE TABLE table_26593762_3 (outgoing_manager VARCHAR, incoming_manager VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_26593762_3 WHERE outgoing_manager = \"Brian Laws\"", "question": "What was the table position for the team whose outgoing manager was Brian Laws?", "context": "CREATE TABLE table_26593762_3 (position_in_table VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT COUNT(incoming_manager) FROM table_26593762_3 WHERE team = \"Burnley\"", "question": "How many incoming managers did Burnley have?", "context": "CREATE TABLE table_26593762_3 (incoming_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_26593762_3 WHERE incoming_manager = \"George Burley\"", "question": "What was the manner of departure for the team whose incoming manager was George Burley?", "context": "CREATE TABLE table_26593762_3 (manner_of_departure VARCHAR, incoming_manager VARCHAR)"}, {"answer": "SELECT galician___reintegrationist__ FROM table_26614365_5 WHERE galician___official__ = \"Bo d\u00eda / Bos d\u00edas\"", "question": "What is the Galician (reintegrationist) word of the Galician (Official) is bo d\u00eda / bos d\u00edas?", "context": "CREATE TABLE table_26614365_5 (galician___reintegrationist__ VARCHAR, galician___official__ VARCHAR)"}, {"answer": "SELECT galician___reintegrationist__ FROM table_26614365_5 WHERE galician___official__ = \"Adeus*\"", "question": "What is the Galician (reintegrationist) word of the Galician (Official) is adeus*?", "context": "CREATE TABLE table_26614365_5 (galician___reintegrationist__ VARCHAR, galician___official__ VARCHAR)"}, {"answer": "SELECT portuguese FROM table_26614365_5 WHERE english = \"Grandfather\"", "question": "What is the Portuguese word for the English word 'grandfather'?", "context": "CREATE TABLE table_26614365_5 (portuguese VARCHAR, english VARCHAR)"}, {"answer": "SELECT COUNT(spanish) FROM table_26614365_5 WHERE portuguese = \"Bem-vindo\"", "question": "How many Spanish word is there for the Portuguese bem-vindo?", "context": "CREATE TABLE table_26614365_5 (spanish VARCHAR, portuguese VARCHAR)"}, {"answer": "SELECT portuguese FROM table_26614365_5 WHERE english = \"Welcome\"", "question": "What is the Portuguese word for the English word 'welcome'?", "context": "CREATE TABLE table_26614365_5 (portuguese VARCHAR, english VARCHAR)"}, {"answer": "SELECT gender FROM table_26615633_3 WHERE species = \"Asian black bear\"", "question": "what gender has an asian black bear?", "context": "CREATE TABLE table_26615633_3 (gender VARCHAR, species VARCHAR)"}, {"answer": "SELECT sweet FROM table_26615633_3 WHERE voice_actor = \"Saki Fujita\"", "question": "what is the sweet for voice actor saki fujita?", "context": "CREATE TABLE table_26615633_3 (sweet VARCHAR, voice_actor VARCHAR)"}, {"answer": "SELECT gender FROM table_26615633_3 WHERE species = \"Holland Lop\"", "question": "whatis the gender wher ethe species is holland lop?", "context": "CREATE TABLE table_26615633_3 (gender VARCHAR, species VARCHAR)"}, {"answer": "SELECT media_debut FROM table_26615633_3 WHERE species = \"Asian black bear\"", "question": "what is the media debut for the asian black bear?", "context": "CREATE TABLE table_26615633_3 (media_debut VARCHAR, species VARCHAR)"}, {"answer": "SELECT spanish FROM table_26614365_1 WHERE central = \"cas [\u02c8kas]\"", "question": "What is the Spanish word for cas [\u02c8kas]?", "context": "CREATE TABLE table_26614365_1 (spanish VARCHAR, central VARCHAR)"}, {"answer": "SELECT eastern FROM table_26614365_1 WHERE english = \"light\"", "question": "What is the eastern word for \"light\"?", "context": "CREATE TABLE table_26614365_1 (eastern VARCHAR, english VARCHAR)"}, {"answer": "SELECT central FROM table_26614365_1 WHERE english = \"robbers\"", "question": "What is the central word for \"robbers\"?", "context": "CREATE TABLE table_26614365_1 (central VARCHAR, english VARCHAR)"}, {"answer": "SELECT latin FROM table_26614365_1 WHERE english = \"you sang\"", "question": "What is the Latin for \"you sang\"?", "context": "CREATE TABLE table_26614365_1 (latin VARCHAR, english VARCHAR)"}, {"answer": "SELECT western FROM table_26614365_1 WHERE latin = \"latrones\"", "question": "What is the western word for \"latrones\" in Latin?", "context": "CREATE TABLE table_26614365_1 (western VARCHAR, latin VARCHAR)"}, {"answer": "SELECT old_galician__13th_15th_c_ FROM table_26614365_1 WHERE portuguese = \"cantaste\"", "question": "What is the Old Galician for cantaste in Portuguese?", "context": "CREATE TABLE table_26614365_1 (old_galician__13th_15th_c_ VARCHAR, portuguese VARCHAR)"}, {"answer": "SELECT MIN(rainfall_totals__million_m_3__) FROM table_26609958_1", "question": "What is the lowest overall amount of rainfall totals (million m 3)?", "context": "CREATE TABLE table_26609958_1 (rainfall_totals__million_m_3__ INTEGER)"}, {"answer": "SELECT MIN(groundwater_discharge__million_m_3__) FROM table_26609958_1 WHERE hydrographic_basin = \"Cabarita River\"", "question": "When cabarita river is the hydrographic basin what is the lowest groundwater discharge (million m 3)?", "context": "CREATE TABLE table_26609958_1 (groundwater_discharge__million_m_3__ INTEGER, hydrographic_basin VARCHAR)"}, {"answer": "SELECT rainfall_totals__million_m_3__ FROM table_26609958_1 WHERE hydrographic_basin = \"Martha Brae, River\"", "question": "When martha brae, river is the hydrographic basin what is the rainfall totals (million m 3)?", "context": "CREATE TABLE table_26609958_1 (rainfall_totals__million_m_3__ VARCHAR, hydrographic_basin VARCHAR)"}, {"answer": "SELECT average FROM table_26611679_3 WHERE category = \"Assists per game\"", "question": "Name the average for assists per game", "context": "CREATE TABLE table_26611679_3 (average VARCHAR, category VARCHAR)"}, {"answer": "SELECT average FROM table_26611679_3 WHERE games_played = 23", "question": "Name the average for 23 games played", "context": "CREATE TABLE table_26611679_3 (average VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT category FROM table_26611679_3 WHERE totals = \"50\"", "question": "Name the category for 50 totals", "context": "CREATE TABLE table_26611679_3 (category VARCHAR, totals VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_26611679_3 WHERE category = \"Steals per game\"", "question": "Name the number of average for steals per game", "context": "CREATE TABLE table_26611679_3 (average VARCHAR, category VARCHAR)"}, {"answer": "SELECT voice_actor FROM table_26615633_1 WHERE species = \"Hedgehog\"", "question": "who was the voice actor when the species is hedgehog?", "context": "CREATE TABLE table_26615633_1 (voice_actor VARCHAR, species VARCHAR)"}, {"answer": "SELECT voice_actor FROM table_26615633_1 WHERE birthday = \"March 26\"", "question": "who is the voice actor with the birthday march 26?", "context": "CREATE TABLE table_26615633_1 (voice_actor VARCHAR, birthday VARCHAR)"}, {"answer": "SELECT jewel AS Power FROM table_26615633_1 WHERE media_debut = \"EP 17\"", "question": "what is the jewel power when the media debut is ep 17?", "context": "CREATE TABLE table_26615633_1 (jewel VARCHAR, media_debut VARCHAR)"}, {"answer": "SELECT COUNT(birthday) FROM table_26615633_1 WHERE jewel = \"Malachite\"", "question": "how many times is the jewel malachite?", "context": "CREATE TABLE table_26615633_1 (birthday VARCHAR, jewel VARCHAR)"}, {"answer": "SELECT species FROM table_26615633_1 WHERE jewel = \"Coal\"", "question": "What is the species when jewel is coal?", "context": "CREATE TABLE table_26615633_1 (species VARCHAR, jewel VARCHAR)"}, {"answer": "SELECT lites_2_race_two_winning_team FROM table_26638600_3 WHERE lites_1_race_one_winning_team = \"#13 Inspire Motorsports\"", "question": "Who was the lights 2 race two winning team when the lites 1 race one winning team was #13 Inspire Motorsports?", "context": "CREATE TABLE table_26638600_3 (lites_2_race_two_winning_team VARCHAR, lites_1_race_one_winning_team VARCHAR)"}, {"answer": "SELECT COUNT(lites_2_race_one_winning_team) FROM table_26638600_3 WHERE lites_1_race_two_winning_team = \"Gary Gibson\"", "question": "How many different circuits had Gary Gibson has the Lites 1 race two winning team?", "context": "CREATE TABLE table_26638600_3 (lites_2_race_one_winning_team VARCHAR, lites_1_race_two_winning_team VARCHAR)"}, {"answer": "SELECT lites_2_race_two_winning_team FROM table_26638600_3 WHERE lites_1_race_two_winning_team = \"#11 Performance Tech\"", "question": "Who is the lites 2 race two winning team when #11 Performance Tech is the lites 1 race two winning team?", "context": "CREATE TABLE table_26638600_3 (lites_2_race_two_winning_team VARCHAR, lites_1_race_two_winning_team VARCHAR)"}, {"answer": "SELECT circuit FROM table_26638600_3 WHERE lites_1_race_one_winning_team = \"#66 Gunnar Racing\"", "question": "On which circuit was the lites 1 race one winning team #66 Gunnar Racing?", "context": "CREATE TABLE table_26638600_3 (circuit VARCHAR, lites_1_race_one_winning_team VARCHAR)"}, {"answer": "SELECT circuit FROM table_26638600_3 WHERE lites_1_race_two_winning_team = \"#13 Inspire Motorsports\"", "question": "On which circuit was the lites race two winning team #13 Inspire Motorsports?", "context": "CREATE TABLE table_26638600_3 (circuit VARCHAR, lites_1_race_two_winning_team VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2667438_5 WHERE no_in_series = 32", "question": " What date did series number 32  premiere? ", "context": "CREATE TABLE table_2667438_5 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(difference) FROM table_26677836_1", "question": "WHat is the highest difference?", "context": "CREATE TABLE table_26677836_1 (difference INTEGER)"}, {"answer": "SELECT MAX(lost) FROM table_26677836_1", "question": "What is the highest lost?", "context": "CREATE TABLE table_26677836_1 (lost INTEGER)"}, {"answer": "SELECT nation FROM table_26677836_1 WHERE place = 2", "question": "What is the nation when the place is 2?", "context": "CREATE TABLE table_26677836_1 (nation VARCHAR, place VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_26677836_1 WHERE nation = \"[[|]] (19)\"", "question": "How many times is the nation [[|]] (19)?", "context": "CREATE TABLE table_26677836_1 (against VARCHAR, nation VARCHAR)"}, {"answer": "SELECT party FROM table_2668169_2 WHERE incumbent = \"Mathias Morris\"", "question": "Which party does the incumbent Mathias Morris belong to?", "context": "CREATE TABLE table_2668169_2 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_2668169_2 WHERE incumbent = \"Luther Reily\"", "question": "Which district does the incumbent Luther Reily represent?", "context": "CREATE TABLE table_2668169_2 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668169_2 WHERE district = \"Pennsylvania 11\"", "question": "Who are the candidates for the Pennsylvania 11 district?", "context": "CREATE TABLE table_2668169_2 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_2668169_2 WHERE district = \"Pennsylvania 11\"", "question": "How many people won the election in the Pennsylvania 11 district?", "context": "CREATE TABLE table_2668169_2 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_2668173_4 WHERE result = \"Lost re-election Anti-Masonic gain\"", "question": "How many times did the incumbent was first elected and then lost re-election anti-masonic gain?", "context": "CREATE TABLE table_2668173_4 (first_elected VARCHAR, result VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668173_4 WHERE incumbent = \"Henry Logan\"", "question": "Who were the candidates if the incumbent was Henry Logan?", "context": "CREATE TABLE table_2668173_4 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_2668173_4 WHERE incumbent = \"Mathias Morris\"", "question": "What was the district of the incumbent Mathias Morris?", "context": "CREATE TABLE table_2668173_4 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_2668173_4 WHERE party = \"Anti-Masonic\"", "question": "How many incumbents was first elected in the Anti-Masonic party?", "context": "CREATE TABLE table_2668173_4 (first_elected VARCHAR, party VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668243_17 WHERE candidates = \"Robert Monell (J) 63.6% Tilly Lynde 36.4%\"", "question": "Name the incumbent for robert monell (j) 63.6% tilly lynde 36.4%", "context": "CREATE TABLE table_2668243_17 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_2668243_17 WHERE candidates = \"Thomas Maxwell (J) 60.1% David Woodcock (AJ) 39.9%\"", "question": "Name the number of first elected for thomas maxwell (j) 60.1% david woodcock (aj) 39.9%", "context": "CREATE TABLE table_2668243_17 (first_elected VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668243_17 WHERE district = \"New York 21\"", "question": "Name the candidates for new york 21", "context": "CREATE TABLE table_2668243_17 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668243_17 WHERE incumbent = \"Selah R. Hobbie\"", "question": "Name the candidates for selah r. hobbie", "context": "CREATE TABLE table_2668243_17 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_2668243_17 WHERE candidates = \"James Lent (J) 52.3% Silas Wood (AJ) 47.7%\"", "question": "Name the result for  james lent (j) 52.3% silas wood (aj) 47.7%", "context": "CREATE TABLE table_2668243_17 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668199_2 WHERE district = \"Pennsylvania 12\"", "question": "Who were the candidates in districk Pennsylvania 12?", "context": "CREATE TABLE table_2668199_2 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_2668199_2 WHERE district = \"Pennsylvania 6\"", "question": "What is the result for district pennsylvania 6?", "context": "CREATE TABLE table_2668199_2 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668199_2 WHERE candidates = \"John Banks (AM) 52.2% Samuel Power (J) 47.8%\"", "question": "Who was the incumbent when the candidates were John banks (am) 52.2% samuel power (j) 47.8%?", "context": "CREATE TABLE table_2668199_2 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_2668199_2 WHERE result = \"Re-elected\" AND party = \"Anti-Masonic\" AND district = \"Pennsylvania 24\"", "question": "How many times was the result was re-elected and the party was anti-masonic in the district Pennsylvania 24?", "context": "CREATE TABLE table_2668199_2 (first_elected VARCHAR, district VARCHAR, result VARCHAR, party VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668199_2 WHERE result = \"Re-elected\" AND first_elected = \"1832\" AND party = \"Jacksonian\"", "question": "Who were all the candidates when the results were re-elected, first elected was 1832 and the party was jacksonian?", "context": "CREATE TABLE table_2668199_2 (candidates VARCHAR, party VARCHAR, result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT MAX(rank_qualifying) FROM table_26681728_1 WHERE location = \"Ghent\" AND year = 2011 AND score_qualifying = \"14.850\"", "question": "In Ghent in 2011, what was the rank-qualifying value when the score-qualifying value was 14.850", "context": "CREATE TABLE table_26681728_1 (rank_qualifying INTEGER, score_qualifying VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(rank_final) FROM table_26681728_1 WHERE apparatus = \"Floor Exercise\"", "question": "What was the maximum rank-final score on the floor exercise?", "context": "CREATE TABLE table_26681728_1 (rank_final INTEGER, apparatus VARCHAR)"}, {"answer": "SELECT MAX(rank_final) FROM table_26681728_1 WHERE score_final = \"14.975\"", "question": "What was the maximum rank-final value for a score of 14.975?", "context": "CREATE TABLE table_26681728_1 (rank_final INTEGER, score_final VARCHAR)"}, {"answer": "SELECT location FROM table_26681728_1 WHERE score_final = \"15.050\"", "question": "Where did the event with a final score of 15.050 occur?", "context": "CREATE TABLE table_26681728_1 (location VARCHAR, score_final VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_2668243_22 WHERE district = \"South Carolina 2\"", "question": "how many \"Party\" are in district south carolina 2?", "context": "CREATE TABLE table_2668243_22 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_2668243_22 WHERE result = \"Re-elected\" AND district = \"South Carolina 7\"", "question": "What \"party\" was re-elected in district South Carolina 7?", "context": "CREATE TABLE table_2668243_22 (party VARCHAR, result VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668243_22 WHERE district = \"South Carolina 6\"", "question": "who were the \"candidate\" of South Carolina 6?", "context": "CREATE TABLE table_2668243_22 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668243_22 WHERE district = \"South Carolina 7\"", "question": "Who was the \"incumbent\" of district south carolina 7?", "context": "CREATE TABLE table_2668243_22 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_2668243_25 WHERE incumbent = \"John Roane\"", "question": "How many people were first elected when john roane was the incumbent?", "context": "CREATE TABLE table_2668243_25 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_2668243_25 WHERE incumbent = \"John S. Barbour\"", "question": "What party did john s. barbour represent?", "context": "CREATE TABLE table_2668243_25 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_2668243_25 WHERE candidates = \"Andrew Stevenson (J) 100%\"", "question": "What was the result of the election featuring andrew stevenson (j) 100%?", "context": "CREATE TABLE table_2668243_25 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668243_25 WHERE incumbent = \"Nathaniel H. Claiborne\"", "question": "What candidate(s) ran for election when nathaniel h. claiborne was the incumbent?", "context": "CREATE TABLE table_2668243_25 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668254_17 WHERE first_elected = \"1818\"", "question": "Who was the ran as an incumbent leader first in 1818?", "context": "CREATE TABLE table_2668254_17 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668254_17 WHERE incumbent = \"Joshua Sands\"", "question": "Who were the running candidates when Joshua Sands was the incumbent?", "context": "CREATE TABLE table_2668254_17 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_2668264_17 WHERE party = \"Adams-Clay Federalist\" AND incumbent = \"Stephen Van Rensselaer\"", "question": "What was the result of the election where stephen van rensselaer was the incumbent and the party represented was the adams-clay federalist party?", "context": "CREATE TABLE table_2668264_17 (result VARCHAR, party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_2668254_25 WHERE first_elected = \"1811\"", "question": "How many district has a candidate that was first elected on 1811?", "context": "CREATE TABLE table_2668254_25 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_2668254_8 WHERE incumbent = \"Charles A. Wickliffe\"", "question": "In what district was the incumbent Charles A. Wickliffe? ", "context": "CREATE TABLE table_2668254_8 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_2668254_8 WHERE incumbent = \"Thomas P. Moore\"", "question": "What party did the incumbent Thomas P. Moore belong to?", "context": "CREATE TABLE table_2668254_8 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668254_8 WHERE district = \"Kentucky 9\"", "question": "Who were the candidates in the Kentucky 9 district? ", "context": "CREATE TABLE table_2668254_8 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668254_8 WHERE district = \"Kentucky 5\"", "question": "Who were the candidates in the Kentucky 5 district? ", "context": "CREATE TABLE table_2668254_8 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668254_22 WHERE candidates = \"William Drayton (J)\"", "question": "Who was the incumbent when the candidate was william drayton (j)?", "context": "CREATE TABLE table_2668254_22 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT party FROM table_2668254_22 WHERE candidates = \"George McDuffie (J)\"", "question": "What party did candidate george mcduffie (j) represent?", "context": "CREATE TABLE table_2668254_22 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT party FROM table_2668264_8 WHERE incumbent = \"Robert P. Letcher\"", "question": "What party did robert p. letcher represent?", "context": "CREATE TABLE table_2668264_8 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_2668264_8 WHERE incumbent = \"Henry Clay\"", "question": "What district(s) did henry clay represent?", "context": "CREATE TABLE table_2668264_8 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668264_8 WHERE result = \"Retired Jacksonian gain\"", "question": "Who were the candidates for election that had a result of a retired jacksonian gain?", "context": "CREATE TABLE table_2668264_8 (candidates VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_2668329_25 WHERE district = \"Virginia 22\"", "question": "What ended up happening in the district Virginia 22?", "context": "CREATE TABLE table_2668329_25 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_2668329_25 WHERE district = \"Virginia 4\"", "question": "What party won the Virginia 4 district?", "context": "CREATE TABLE table_2668329_25 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_2668329_25 WHERE district = \"Virginia 4\"", "question": "How many people won the election in the district of Virginia 4?", "context": "CREATE TABLE table_2668329_25 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668329_25 WHERE district = \"Virginia 6\"", "question": "Who is the incumbent in the Virginia 6 district?", "context": "CREATE TABLE table_2668329_25 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_2668329_11 WHERE incumbent = \"Samuel Smith\"", "question": "What is Samuel Smith's party?", "context": "CREATE TABLE table_2668329_11 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_2668329_11 WHERE incumbent = \"Peter Little\"", "question": "what is Peter Little's party?", "context": "CREATE TABLE table_2668329_11 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_2668329_11 WHERE incumbent = \"Samuel Smith\"", "question": "What was the result of Samuel Smith's race?", "context": "CREATE TABLE table_2668329_11 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_2668329_18 WHERE district = \"North Carolina 9\"", "question": "Name the result for north carolina 9", "context": "CREATE TABLE table_2668329_18 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_2668329_18 WHERE incumbent = \"Hutchins G. Burton\"", "question": "Name the party for hutchins g. burton", "context": "CREATE TABLE table_2668329_18 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_2668329_18 WHERE candidates = \"Thomas H. Hall (DR) 53.0% William Clarke (F) 47.0%\"", "question": "Name the result for thomas h. hall (dr) 53.0% william clarke (f) 47.0%", "context": "CREATE TABLE table_2668329_18 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668329_18 WHERE incumbent = \"Felix Walker\"", "question": "Name the candidates for felix walker", "context": "CREATE TABLE table_2668329_18 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668336_24 WHERE incumbent = \"John Pegram\"", "question": "Who are the candidates when the incumbent is john pegram?", "context": "CREATE TABLE table_2668336_24 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668336_24 WHERE district = \"Virginia 12\"", "question": "Who are the candidates for district virginia 12?", "context": "CREATE TABLE table_2668336_24 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_2668336_24 WHERE candidates = \"Alexander Smyth (DR) 100%\"", "question": "What is the result when the candidates are alexander smyth (dr) 100%", "context": "CREATE TABLE table_2668336_24 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_2668336_24 WHERE candidates = \"Charles F. Mercer (F) 100%\"", "question": "How many times is the candidates charles f. mercer (f) 100%?", "context": "CREATE TABLE table_2668336_24 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_2668347_14 WHERE incumbent = \"John B. Yates\"", "question": "how many times was the incumbent is john b. yates?", "context": "CREATE TABLE table_2668347_14 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_2668347_14 WHERE candidates = \"Thomas Lawyer (DR) 54.9% William Beekman (F) 45.1%\"", "question": "when was the first elected when the  candidates is thomas lawyer (dr) 54.9% william beekman (f) 45.1%?", "context": "CREATE TABLE table_2668347_14 (first_elected VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668347_14 WHERE district = \"New York 10\"", "question": "who are the candidates for district new york 10?", "context": "CREATE TABLE table_2668347_14 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_2668347_14 WHERE candidates = \"Thomas H. Hubbard (DR) 51.5% Simeon Ford (F) 48.4%\"", "question": "how many times were the candidates thomas h. hubbard (dr) 51.5% simeon ford (f) 48.4%?", "context": "CREATE TABLE table_2668347_14 (party VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_2668347_14 WHERE party = \"Federalist\" AND first_elected = \"1814\"", "question": "what is the district when the party is federalist and first elected is 1814?", "context": "CREATE TABLE table_2668347_14 (district VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668347_17 WHERE district = \"Pennsylvania 14\"", "question": "Name the candidates for pennsylvania 14", "context": "CREATE TABLE table_2668347_17 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668347_17 WHERE candidates = \"Jacob Spangler (DR) 67.1% Jacob Hay (F) 32.9%\"", "question": "Name the incumbent for jacob spangler (dr) 67.1% jacob hay (f) 32.9%", "context": "CREATE TABLE table_2668347_17 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_2668347_17", "question": "Name the most first elected", "context": "CREATE TABLE table_2668347_17 (first_elected INTEGER)"}, {"answer": "SELECT COUNT(candidates) FROM table_2668347_17 WHERE incumbent = \"Samuel D. Ingham\"", "question": "Name the number of candidates for  samuel d. ingham", "context": "CREATE TABLE table_2668347_17 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT district FROM table_2668347_22 WHERE candidates = \"William A. Burwell (DR)\"", "question": "Which district did William A. Burwell (Dr) belong to? ", "context": "CREATE TABLE table_2668347_22 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_2668367_13 WHERE incumbent = \"Thomas R. Gold\"", "question": "What was the result in the district represented by Thomas R. Gold?", "context": "CREATE TABLE table_2668367_13 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668352_5 WHERE district = \"Kentucky 2\"", "question": "Who is every incumbent when Kentucky 2 is the district?", "context": "CREATE TABLE table_2668352_5 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_2668352_5 WHERE district = \"Kentucky 6\"", "question": "Who is first elected when Kentucky 6 is the district?", "context": "CREATE TABLE table_2668352_5 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_2668352_5 WHERE incumbent = \"Joseph Desha\"", "question": "What is every district for incumbent Joseph Desha?", "context": "CREATE TABLE table_2668352_5 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_2668352_16 WHERE result = \"Lost re-election Democratic-Republican hold\"", "question": "Which party experienced a result of lost re-election democratic-republican hold?", "context": "CREATE TABLE table_2668352_16 (party VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_2668352_16 WHERE incumbent = \"John C. Calhoun\"", "question": "How many districts have John C. Calhoun as the incumbent?", "context": "CREATE TABLE table_2668352_16 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668367_7 WHERE district = \"Kentucky 8\"", "question": "Who was the incumbent in the Kentucky 8 district? ", "context": "CREATE TABLE table_2668367_7 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_2668367_7 WHERE district = \"Kentucky 8\"", "question": "What was the result in the election in the Kentucky 8 district? ", "context": "CREATE TABLE table_2668367_7 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_2668367_7 WHERE district = \"Kentucky 1\"", "question": "What was the result in the election in the Kentucky 1 district? ", "context": "CREATE TABLE table_2668367_7 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_2668374_13 WHERE incumbent = \"John Smilie\"", "question": "What district had an election with incumbent john smilie?", "context": "CREATE TABLE table_2668374_13 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_2668374_13 WHERE first_elected = \"1808\" AND incumbent = \"George Smith\"", "question": "How many districts first elected someone in 1808 and had george smith as the incumbent?", "context": "CREATE TABLE table_2668374_13 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668374_18 WHERE district = \"Virginia 3\"", "question": "Who was the incumbent in Virginia 3?", "context": "CREATE TABLE table_2668374_18 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668374_18 WHERE party = \"Federalist\" AND first_elected = \"1803\"", "question": "What incumbent was a federalist that was first elected in 1803?", "context": "CREATE TABLE table_2668374_18 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_2668374_18 WHERE first_elected = \"1805\"", "question": "How many parties were first elected in 1805?", "context": "CREATE TABLE table_2668374_18 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_2668374_18 WHERE incumbent = \"John Dawson\"", "question": "What district was John Dawson from?", "context": "CREATE TABLE table_2668374_18 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668374_10 WHERE incumbent = \"Samuel Riker\"", "question": "Who were the running candidates when Samuel Riker was the incumbent?", "context": "CREATE TABLE table_2668374_10 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668367_14 WHERE incumbent = \"Nathaniel Macon\"", "question": "Who were the candidates in the district where the incumbent was Nathaniel Macon?", "context": "CREATE TABLE table_2668367_14 (candidates VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_2668367_14 WHERE incumbent = \"Joseph Pearson\"", "question": "What party did the incumbent Joseph Pearson belong to?", "context": "CREATE TABLE table_2668367_14 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_2668401_12 WHERE district = \"Pennsylvania 5\"", "question": "How many incumbents are there in Pennsylvania 5?", "context": "CREATE TABLE table_2668401_12 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_2668401_12 WHERE district = \"Pennsylvania 8\"", "question": "What are the parties listed for Pennsylvania 8?", "context": "CREATE TABLE table_2668401_12 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668401_12 WHERE candidates = \"Joseph Hiester (DR) 83.2% Roswell Wells (F) 16.8%\"", "question": "Name the incumbent for candidates Joseph Hiester (dr) 83.2% Roswell Wells (f) 16.8%.", "context": "CREATE TABLE table_2668401_12 (incumbent VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT result FROM table_2668401_12 WHERE incumbent = \"Andrew Gregg\"", "question": "What was the result for Andrew Gregg?", "context": "CREATE TABLE table_2668401_12 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_2668401_12 WHERE district = \"Pennsylvania 8\"", "question": "What was the result for Pennsylvania 8?", "context": "CREATE TABLE table_2668401_12 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_2668401_17 WHERE result = \"Re-elected\" AND first_elected = \"1797\" AND district = \"Virginia 5\"", "question": "What party did the incumbent from the Virginia 5 district who was re-elected and was first elected in 1797 belong to?", "context": "CREATE TABLE table_2668401_17 (party VARCHAR, district VARCHAR, result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT first_elected FROM table_2668401_17 WHERE result = \"Democratic-Republican gain\"", "question": "When was the incumbent first elected in the district where the result was a democratic-republican gain? ", "context": "CREATE TABLE table_2668401_17 (first_elected VARCHAR, result VARCHAR)"}, {"answer": "SELECT district FROM table_2668401_17 WHERE incumbent = \"Edwin Gray\"", "question": "In what district was the incumbent Edwin Gray? ", "context": "CREATE TABLE table_2668401_17 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_2668401_17 WHERE district = \"Virginia 10\"", "question": "When was the incumbent from the Virginia 10 district first elected? ", "context": "CREATE TABLE table_2668401_17 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_2668387_18 WHERE candidates = \"Walter Jones (DR) 99.0% Henry Lee (F) 1.0%\"", "question": "Name the result for walter jones (dr) 99.0% henry lee (f) 1.0%", "context": "CREATE TABLE table_2668387_18 (result VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_2668387_18 WHERE incumbent = \"Matthew Clay\"", "question": "Name the district for matthew clay", "context": "CREATE TABLE table_2668387_18 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_2668387_18 WHERE incumbent = \"John Smith\"", "question": "Name the number of first elected for john smith", "context": "CREATE TABLE table_2668387_18 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668387_18 WHERE district = \"Virginia 18\"", "question": "Name the incumbent for virginia 18", "context": "CREATE TABLE table_2668387_18 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_2668387_18 WHERE candidates = \"John Randolph (DR)\"", "question": "Name the district for  john randolph (dr)", "context": "CREATE TABLE table_2668387_18 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668387_18 WHERE district = \"Virginia 4\"", "question": "Name the incumbent for virginia 4", "context": "CREATE TABLE table_2668387_18 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_2668420_17", "question": "When was the earliest person elected?", "context": "CREATE TABLE table_2668420_17 (first_elected INTEGER)"}, {"answer": "SELECT party FROM table_2668420_17 WHERE result = \"Re-elected\" AND district = \"Virginia 12\"", "question": "What party was re-elected to Virginia 12?", "context": "CREATE TABLE table_2668420_17 (party VARCHAR, result VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_2668405_17", "question": "What is the latest first elected?", "context": "CREATE TABLE table_2668405_17 (first_elected INTEGER)"}, {"answer": "SELECT COUNT(first_elected) FROM table_2668405_17 WHERE candidates = \"Leven Powell (F) 63.8% Roger West (DR) 36.4%\"", "question": "How many times were the candidates leven powell (f) 63.8% roger west (dr) 36.4%?", "context": "CREATE TABLE table_2668405_17 (first_elected VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_2668405_17 WHERE candidates = \"Leven Powell (F) 63.8% Roger West (DR) 36.4%\"", "question": "What is the district with the candidates leven powell (f) 63.8% roger west (dr) 36.4%?", "context": "CREATE TABLE table_2668405_17 (district VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT district FROM table_2668405_17 WHERE incumbent = \"John Nicholas\"", "question": "What is the district with the incumbent john nicholas?", "context": "CREATE TABLE table_2668405_17 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_2668405_17 WHERE district = \"Virginia 6\"", "question": "How many were in district virginia 6?", "context": "CREATE TABLE table_2668405_17 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_2668416_18 WHERE district = \"Virginia 8\"", "question": "If the district is Virginia 8, who is the Incumbent?", "context": "CREATE TABLE table_2668416_18 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT candidates FROM table_2668416_18 WHERE district = \"Virginia 17\"", "question": "If the district is Virginia 17, who are the candidates?", "context": "CREATE TABLE table_2668416_18 (candidates VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(party) FROM table_2668416_18 WHERE incumbent = \"Abraham B. Venable\"", "question": "In how many different parts was the incumbent Abraham B. Venable?", "context": "CREATE TABLE table_2668416_18 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT date FROM table_26686908_2 WHERE circuit = \"Mount Panorama circuit\"", "question": "What is the date for the mount panorama circuit?", "context": "CREATE TABLE table_26686908_2 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT city___state FROM table_26686908_2 WHERE date = \"7\u201310 October\"", "question": "What was the location for the date 7\u201310 october?", "context": "CREATE TABLE table_26686908_2 (city___state VARCHAR, date VARCHAR)"}, {"answer": "SELECT production FROM table_26686908_2 WHERE championship = \"David Wall\" AND challenge = \"Jordan Ormsby\"", "question": "Who handled production for the race when the championship went to david wall and challenge was jordan ormsby?", "context": "CREATE TABLE table_26686908_2 (production VARCHAR, championship VARCHAR, challenge VARCHAR)"}, {"answer": "SELECT city___state FROM table_26686908_2 WHERE circuit = \"Adelaide Street circuit\"", "question": "Which city and state hosted the adelaide street circuit?", "context": "CREATE TABLE table_26686908_2 (city___state VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_26686908_2 WHERE date = \"25\u201328 March\"", "question": "Which circuit was held on 25\u201328 march?", "context": "CREATE TABLE table_26686908_2 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(production) FROM table_26686908_2 WHERE rd = \"Rd 2\"", "question": "How many productions are shown for rd 2?", "context": "CREATE TABLE table_26686908_2 (production VARCHAR, rd VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_26702078_1 WHERE no_in_series = 46", "question": "Name the writers for 46 in series", "context": "CREATE TABLE table_26702078_1 (writer_s_ VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT production_code FROM table_26702078_1 WHERE no_in_series = 60", "question": "Name the production code for 60 number in series", "context": "CREATE TABLE table_26702078_1 (production_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT title FROM table_26701861_1 WHERE director = \"Pamela Fryman\" AND production_code = \"2ALH07\"", "question": "what is the title of the episode with the director pamela fryman and the production code 2alh07?", "context": "CREATE TABLE table_26701861_1 (title VARCHAR, director VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT occurrence FROM table_26708105_2 WHERE matrix_sim = \"0.925\"", "question": "Which occurence has the matrix sim marked as 0.925?", "context": "CREATE TABLE table_26708105_2 (occurrence VARCHAR, matrix_sim VARCHAR)"}, {"answer": "SELECT COUNT(detailed_family_information) FROM table_26708105_2 WHERE sequence = \"aAGTAct\"", "question": "What is the detailed family information where the sequence is aagtact?", "context": "CREATE TABLE table_26708105_2 (detailed_family_information VARCHAR, sequence VARCHAR)"}, {"answer": "SELECT MAX(occurrence) FROM table_26708105_2 WHERE matrix_sim = \"0.925\"", "question": "What occurence has 0.925 listed as the matrix sim?", "context": "CREATE TABLE table_26708105_2 (occurrence INTEGER, matrix_sim VARCHAR)"}, {"answer": "SELECT conserved_in_mus_musculus FROM table_26708105_2 WHERE sequence = \"aAGTAct\"", "question": "What is the conserved in mus musculus listing for sequence aagtact?", "context": "CREATE TABLE table_26708105_2 (conserved_in_mus_musculus VARCHAR, sequence VARCHAR)"}, {"answer": "SELECT nt_identity FROM table_26708105_5 WHERE species = \"Drosophilia melanogaster\"", "question": "What is the nt identity when the species is drosophilia melanogaster?", "context": "CREATE TABLE table_26708105_5 (nt_identity VARCHAR, species VARCHAR)"}, {"answer": "SELECT protein_name FROM table_26708105_5 WHERE aa_length = \"202 aa\"", "question": "What is the protein name when aa length is 202 aa?", "context": "CREATE TABLE table_26708105_5 (protein_name VARCHAR, aa_length VARCHAR)"}, {"answer": "SELECT protein_name FROM table_26708105_5 WHERE e_value = \"2.50E-41\"", "question": "What is the protein name when the e-value is 2.50e-41?", "context": "CREATE TABLE table_26708105_5 (protein_name VARCHAR, e_value VARCHAR)"}, {"answer": "SELECT aa_length FROM table_26708105_5 WHERE protein_name = \"C11orf73\"", "question": "What is the aa length when the protein name is c11orf73?", "context": "CREATE TABLE table_26708105_5 (aa_length VARCHAR, protein_name VARCHAR)"}, {"answer": "SELECT COUNT(common_name) FROM table_26708105_5 WHERE accession_number = \"XP_001843282\"", "question": "How many times is the accession number xp_001843282?", "context": "CREATE TABLE table_26708105_5 (common_name VARCHAR, accession_number VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_26736040_1 WHERE us_viewers__millions_ = \"1.66\"", "question": "How many titles have U.S. viewers 1.66 million.", "context": "CREATE TABLE table_26736040_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_26736040_1 WHERE us_viewers__millions_ = \"1.04\"", "question": "What is every title when U.S. viewers is 1.04 million.", "context": "CREATE TABLE table_26736040_1 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_26736040_1 WHERE directed_by = \"Phil Abraham\"", "question": "What is the highest number in series with director as Phil Abraham?", "context": "CREATE TABLE table_26736040_1 (no_in_series INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_26736040_1 WHERE directed_by = \"Bryan Cranston\"", "question": "How many entries for number in series when director is Bryan Cranston?", "context": "CREATE TABLE table_26736040_1 (no_in_series VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_26736342_1 WHERE us_viewers__millions_ = \"1.32\"", "question": "What is the earliest episode that was watched by 1.32 million viewers?", "context": "CREATE TABLE table_26736342_1 (no_in_series INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_26736342_1 WHERE written_by = \"John Shiban & Thomas Schnauz\"", "question": "What is the latest episode written by  John Shiban & Thomas Schnauz?", "context": "CREATE TABLE table_26736342_1 (no_in_series INTEGER, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_26736342_1 WHERE us_viewers__millions_ = \"1.95\"", "question": "Who directed the eposide that was watched by 1.95 million US viewers?", "context": "CREATE TABLE table_26736342_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(episode_number) FROM table_26733129_1 WHERE three_darts_challenge = \"Sharon Osbourne\"", "question": "How many episodes are there for the three darts challenge with Sharon Osbourne?", "context": "CREATE TABLE table_26733129_1 (episode_number INTEGER, three_darts_challenge VARCHAR)"}, {"answer": "SELECT musical_performance FROM table_26733129_1 WHERE air_date = \"5 April 2010\"", "question": "What musical performances aired on 5 April 2010?", "context": "CREATE TABLE table_26733129_1 (musical_performance VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT guests FROM table_26733129_1 WHERE air_date = \"7 June 2010\"", "question": "What were the guests that aired on 7 June 2010?", "context": "CREATE TABLE table_26733129_1 (guests VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT three_darts_challenge FROM table_26733129_1 WHERE air_date = \"10 May 2010\"", "question": "Who was in the three darts challenge that aired on 10 may 2010?", "context": "CREATE TABLE table_26733129_1 (three_darts_challenge VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT Ends AS lost FROM table_26745426_2 WHERE country = Canada", "question": "Name the ends lost for canada", "context": "CREATE TABLE table_26745426_2 (Ends VARCHAR, country VARCHAR, Canada VARCHAR)"}, {"answer": "SELECT COUNT(Ends) AS lost FROM table_26745426_2 WHERE stolen_ends = 6", "question": "Name the number of ends lost for 6 stolen ends", "context": "CREATE TABLE table_26745426_2 (Ends VARCHAR, stolen_ends VARCHAR)"}, {"answer": "SELECT proto_slavic FROM table_26757_4 WHERE polish = \"gniazdo\"", "question": "When gniazdo is polish what is proto-slavic?", "context": "CREATE TABLE table_26757_4 (proto_slavic VARCHAR, polish VARCHAR)"}, {"answer": "SELECT macedonian FROM table_26757_4 WHERE serbo_croatian = \"\u0440\u0443\u043a\u0430 / ruka\"", "question": "When \u0440\u0443\u043a\u0430 / ruka is the serbo-croatian what is the macedonian?", "context": "CREATE TABLE table_26757_4 (macedonian VARCHAR, serbo_croatian VARCHAR)"}, {"answer": "SELECT proto_slavic FROM table_26757_4 WHERE macedonian = \"\u0440\u0438\u0431\u0430 (r\u00edba)\"", "question": "When \u0440\u0438\u0431\u0430 (r\u00edba) is the macedonian what is the proto-slavic?", "context": "CREATE TABLE table_26757_4 (proto_slavic VARCHAR, macedonian VARCHAR)"}, {"answer": "SELECT COUNT(proto_slavic) FROM table_26757_4 WHERE serbo_croatian = \"\u0433\u043d(\u0438\u0458)\u0435\u0437\u0434\u043e / gn(ij)ezdo\"", "question": "When  \u0433\u043d(\u0438\u0458)\u0435\u0437\u0434\u043e / gn(ij)ezdo is the serbo-croatian how many proto-slavics are there?", "context": "CREATE TABLE table_26757_4 (proto_slavic VARCHAR, serbo_croatian VARCHAR)"}, {"answer": "SELECT COUNT(slovene) FROM table_26757_4 WHERE belarusian = \"\u0440\u044b\u0431\u0430 (r\u00fdba)\"", "question": "When  \u0440\u044b\u0431\u0430 (r\u00fdba) is the belarusian how many slovenes are there?", "context": "CREATE TABLE table_26757_4 (slovene VARCHAR, belarusian VARCHAR)"}, {"answer": "SELECT COUNT(slovak) FROM table_26757_4 WHERE belarusian = \"\u0432\u0443\u0445\u0430 (v\u00fakha)\"", "question": "When \u0432\u0443\u0445\u0430 (v\u00fakha) is the belarusian how many slovaks are there?", "context": "CREATE TABLE table_26757_4 (slovak VARCHAR, belarusian VARCHAR)"}, {"answer": "SELECT vivek_express__15905_15906 FROM table_26745820_5 WHERE kanyakumari = \"Bhavnagar\"", "question": "What is the name of the only route that runs to bhavnagar?", "context": "CREATE TABLE table_26745820_5 (vivek_express__15905_15906 VARCHAR, kanyakumari VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_26748314_1 WHERE no_in_season = 7", "question": "What is every original air date for the number in season of 7?", "context": "CREATE TABLE table_26748314_1 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(participating_parties) FROM table_2676980_4 WHERE registered_voters = 643629", "question": "What is the number of participating parties when registered voters totaled 643629?", "context": "CREATE TABLE table_2676980_4 (participating_parties VARCHAR, registered_voters VARCHAR)"}, {"answer": "SELECT electoral_district FROM table_2676980_4 WHERE total_candidates = 35", "question": "What is the electoral district when total candidates were 35?", "context": "CREATE TABLE table_2676980_4 (electoral_district VARCHAR, total_candidates VARCHAR)"}, {"answer": "SELECT COUNT(seats_in_congress) FROM table_2676980_4 WHERE electoral_district = \"Ucayali\"", "question": "What is the number of seats in congress when the electoral district is Ucayali?", "context": "CREATE TABLE table_2676980_4 (seats_in_congress VARCHAR, electoral_district VARCHAR)"}, {"answer": "SELECT COUNT(seats_in_congress) FROM table_2676980_4 WHERE candidates_per_party = 6", "question": "What is the number of seats in congress when the candidates per party is 6?", "context": "CREATE TABLE table_2676980_4 (seats_in_congress VARCHAR, candidates_per_party VARCHAR)"}, {"answer": "SELECT total_candidates FROM table_2676980_4 WHERE registered_voters = 47742", "question": "What is the number of total candidates when registered voters is 47742?", "context": "CREATE TABLE table_2676980_4 (total_candidates VARCHAR, registered_voters VARCHAR)"}, {"answer": "SELECT judges_residence FROM table_26758262_1 WHERE municipalities_served = \"Beacon Falls , Naugatuck , Middlebury , Prospect\"", "question": "Where does the judge who serves Beacon Falls , Naugatuck , Middlebury , Prospect reside?", "context": "CREATE TABLE table_26758262_1 (judges_residence VARCHAR, municipalities_served VARCHAR)"}, {"answer": "SELECT MAX(district) FROM table_26758262_1 WHERE location_of_court = \"Tolland\"", "question": "What district is the court located in Tolland?", "context": "CREATE TABLE table_26758262_1 (district INTEGER, location_of_court VARCHAR)"}, {"answer": "SELECT judges_residence FROM table_26758262_1 WHERE location_of_court = \"Groton\"", "question": "Where does the judge whose court is in Groton reside?", "context": "CREATE TABLE table_26758262_1 (judges_residence VARCHAR, location_of_court VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2679061_1 WHERE player = \"John MacLean\"", "question": "what is the nhl team for the player john maclean?", "context": "CREATE TABLE table_2679061_1 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_2679061_1 WHERE position = \"Defence\" AND college_junior_club_team = \"Ottawa 67's (OHL)\"", "question": "who is the player for the position defence and the college/junior/club team is ottawa 67's (ohl)?", "context": "CREATE TABLE table_2679061_1 (player VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2679061_1 WHERE player = \"Alfie Turcotte\"", "question": "what is the college/junior/club team for the player alfie turcotte?", "context": "CREATE TABLE table_2679061_1 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2679061_10 WHERE nhl_team = \"Buffalo Sabres\"", "question": "What is the name of the college/junior/club team of the Buffalo Sabres?", "context": "CREATE TABLE table_2679061_10 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_2679061_10 WHERE player = \"Reine Karlsson\"", "question": "What is Reine Karlsson's nationality?", "context": "CREATE TABLE table_2679061_10 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_2679061_11 WHERE nhl_team = \"Philadelphia Flyers\"", "question": "How many players were drafted by the Philadelphia Flyers?", "context": "CREATE TABLE table_2679061_11 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_2679061_11 WHERE nhl_team = \"Chicago Black Hawks\"", "question": "How many picks did the Chicago Black Hawks get?", "context": "CREATE TABLE table_2679061_11 (pick__number VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2679061_11 WHERE pick__number = 203", "question": "What team had pick 203?", "context": "CREATE TABLE table_2679061_11 (nhl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2679061_12 WHERE player = \"Harold Duvall\"", "question": "Which school did harold duvall attend?", "context": "CREATE TABLE table_2679061_12 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_2679061_12 WHERE nhl_team = \"Boston Bruins\"", "question": "List the position  for the boston bruins.", "context": "CREATE TABLE table_2679061_12 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_2679061_12 WHERE college_junior_club_team = \"Litvinov (Czechoslovakia)\"", "question": "Who was drafted to litvinov (czechoslovakia)?", "context": "CREATE TABLE table_2679061_12 (player VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_2679061_12 WHERE player = \"Peter McGeough\"", "question": "What position does peter mcgeough cover?", "context": "CREATE TABLE table_2679061_12 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_2679061_4 WHERE nhl_team = \"Minnesota North Stars\"", "question": "Which player was drafted by the Minnesota North Stars? ", "context": "CREATE TABLE table_2679061_4 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_2679061_4 WHERE player = \"Bob Essensa\"", "question": "What is the nationality of Bob Essensa?", "context": "CREATE TABLE table_2679061_4 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_2679061_4 WHERE college_junior_club_team = \"Regina Pats (WHL)\"", "question": "What position is the player from the Regina Pats (WHL)?", "context": "CREATE TABLE table_2679061_4 (position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2679061_4 WHERE college_junior_club_team = \"HIFK Helsinki (Finland)\"", "question": "What number pick was the player from HIFK Helsinki (Finland)?", "context": "CREATE TABLE table_2679061_4 (pick__number VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2679061_4 WHERE player = \"Esa Tikkanen\"", "question": "Which team drafted Esa Tikkanen? ", "context": "CREATE TABLE table_2679061_4 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_2679061_9 WHERE pick__number = 168", "question": "What was the nationality of player picked no. 168?", "context": "CREATE TABLE table_2679061_9 (nationality VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT nationality FROM table_2679061_9 WHERE pick__number = 179", "question": "What was the nationality of player picked no. 179?", "context": "CREATE TABLE table_2679061_9 (nationality VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT player FROM table_2679061_9 WHERE nhl_team = \"Hartford Whalers\"", "question": "Who was the player who played for Hartford Whalers NHL Team?", "context": "CREATE TABLE table_2679061_9 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_2679061_9 WHERE nhl_team = \"New York Islanders\"", "question": "What was the position of the player who played for New York Islanders NHL Team?", "context": "CREATE TABLE table_2679061_9 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_2679061_9 WHERE player = \"Cliff Abrecht\"", "question": "What was the nationality of player Cliff Abrecht?", "context": "CREATE TABLE table_2679061_9 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_26794530_1", "question": "What is the highest number of poles?", "context": "CREATE TABLE table_26794530_1 (poles INTEGER)"}, {"answer": "SELECT COUNT(f_laps) FROM table_26794530_1 WHERE points = \"170\"", "question": "How many f/laps were there when he scored 170 points?", "context": "CREATE TABLE table_26794530_1 (f_laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_26794530_1 WHERE final_placing = \"13th\" AND races = 30", "question": "When there were 30 races and the final placing was 13th, how many points were scored?", "context": "CREATE TABLE table_26794530_1 (points VARCHAR, final_placing VARCHAR, races VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2679061_8 WHERE pick__number = 155", "question": " What club is associated with draft number 155? ", "context": "CREATE TABLE table_2679061_8 (nhl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT production_code FROM table_26801821_1 WHERE no_in_series = 5", "question": "What is the production code for the number 5 series ? ", "context": "CREATE TABLE table_26801821_1 (production_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_26801821_1 WHERE written_by = \"Teresa Lin\"", "question": "What is the number  of the series written by Teresa Lin? ", "context": "CREATE TABLE table_26801821_1 (no_in_series VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_26808178_3 WHERE us_viewers__millions_ = \"0.852\"", "question": "Which series # had 0.852 U.S. viewers(millions)?", "context": "CREATE TABLE table_26808178_3 (series__number INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_26808178_3 WHERE us_viewers__millions_ = \"0.871\"", "question": "Which original air date had 0.871 U.S. viewers (millions)?", "context": "CREATE TABLE table_26808178_3 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_26808178_3 WHERE us_viewers__millions_ = \"0.645\"", "question": "Which series # had 0.645 U.S. viewers(millions)?", "context": "CREATE TABLE table_26808178_3 (series__number INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT wins FROM table_26815674_1 WHERE final_placing = \"12th\"", "question": "When 12th is the final placing what is the wins?", "context": "CREATE TABLE table_26815674_1 (wins VARCHAR, final_placing VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_26815674_1 WHERE final_placing = \"24th\"", "question": "When 24th is the final placing how many wins are there?", "context": "CREATE TABLE table_26815674_1 (wins VARCHAR, final_placing VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_26815674_1", "question": "What is the lowest overall amount of wins?", "context": "CREATE TABLE table_26815674_1 (wins INTEGER)"}, {"answer": "SELECT original_air_date FROM table_26824484_1 WHERE production_code = \"3AKY05\"", "question": "What date did the episode with production code 3aky05 air?", "context": "CREATE TABLE table_26824484_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_26824484_1 WHERE directed_by = \"Jeff Woolnough\" AND written_by = \"Christopher Ambrose\"", "question": "Which episode was directed by Jeff Woolnough and written by Christopher Ambrose?", "context": "CREATE TABLE table_26824484_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_26824484_1 WHERE directed_by = \"Jessica Landaw\"", "question": "What was the original air date of the episode that was directed by Jessica Landaw?", "context": "CREATE TABLE table_26824484_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_26825349_1 WHERE production_code = \"4AKY14\"", "question": "What is the episode number of the episode with a production code of 4aky14?", "context": "CREATE TABLE table_26825349_1 (no_in_season VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_26825349_1 WHERE us_viewers__millions_ = \"8.62\"", "question": "The episode that had 8.62 million US viewers originally aired on which date?", "context": "CREATE TABLE table_26825349_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT result FROM table_26842217_12 WHERE broadcast = \"Big East Network\"", "question": "What was the result in the game broadcast on the Big East Network? ", "context": "CREATE TABLE table_26842217_12 (result VARCHAR, broadcast VARCHAR)"}, {"answer": "SELECT result FROM table_26842217_12 WHERE visiting_team = \"Louisiana-Monroe\"", "question": "What was the result in the game where the visiting team was Louisiana-Monroe?", "context": "CREATE TABLE table_26842217_12 (result VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_26842217_12 WHERE broadcast = \"Big East Network\"", "question": "Who was the home team in the game broadcast on the Big East Network? ", "context": "CREATE TABLE table_26842217_12 (home_team VARCHAR, broadcast VARCHAR)"}, {"answer": "SELECT result FROM table_26842217_12 WHERE broadcast = \"SEC Network\"", "question": "What was the result in the game broadcast on the SEC Network? ", "context": "CREATE TABLE table_26842217_12 (result VARCHAR, broadcast VARCHAR)"}, {"answer": "SELECT E / vap FROM table_2683116_1 WHERE turnout = \"85.7%\"", "question": "What is the e/vap value for a turnout of exactly 85.7%?", "context": "CREATE TABLE table_2683116_1 (E VARCHAR, vap VARCHAR, turnout VARCHAR)"}, {"answer": "SELECT communes FROM table_2683116_1 WHERE enrolled = 174946", "question": "What communes have enrolled values of 174946?", "context": "CREATE TABLE table_2683116_1 (communes VARCHAR, enrolled VARCHAR)"}, {"answer": "SELECT COUNT(vap) FROM table_2683116_1 WHERE valid_votes = 140469", "question": "How many vap values are associated with 140469 valid votes?", "context": "CREATE TABLE table_2683116_1 (vap VARCHAR, valid_votes VARCHAR)"}, {"answer": "SELECT time FROM table_26842217_10 WHERE visiting_team = \"Georgia\"", "question": "Name the time for georgia", "context": "CREATE TABLE table_26842217_10 (time VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT time FROM table_26842217_10 WHERE visiting_team = \"#1 Alabama\"", "question": "Name the time for #1 alabama", "context": "CREATE TABLE table_26842217_10 (time VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT time FROM table_26842217_18 WHERE result = \"MSST 29\u201324\"", "question": "Name the time for result  msst 29\u201324", "context": "CREATE TABLE table_26842217_18 (time VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_26842217_18 WHERE visiting_team = \"UAB\"", "question": "Name the number of time for uab", "context": "CREATE TABLE table_26842217_18 (time VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT date FROM table_26842217_18 WHERE broadcast = \"FSN\"", "question": "Name the date for broadcast fsn", "context": "CREATE TABLE table_26842217_18 (date VARCHAR, broadcast VARCHAR)"}, {"answer": "SELECT broadcast FROM table_26842217_18 WHERE time = \"7:00pm\" AND home_team = \"Mississippi State\"", "question": "Name the broadcast for 7:00pm and mississippi state", "context": "CREATE TABLE table_26842217_18 (broadcast VARCHAR, time VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_26842217_18 WHERE broadcast = \"ESPN\"", "question": "Name the date for espn", "context": "CREATE TABLE table_26842217_18 (date VARCHAR, broadcast VARCHAR)"}, {"answer": "SELECT broadcast FROM table_26842217_18 WHERE site = \"Davis-Wade Stadium \u2022 Starkville MS\"", "question": "Name the broadcast for  davis-wade stadium \u2022 starkville ms", "context": "CREATE TABLE table_26842217_18 (broadcast VARCHAR, site VARCHAR)"}, {"answer": "SELECT broadcast FROM table_26842217_16 WHERE home_team = \"Kentucky\"", "question": " On what network was the Kentucky game broadcast? ", "context": "CREATE TABLE table_26842217_16 (broadcast VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT site FROM table_26842217_4 WHERE visiting_team = \"Louisiana-Lafayette\"", "question": "Where's the louisiana-lafayette as a visiting team?", "context": "CREATE TABLE table_26842217_4 (site VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT result FROM table_26842217_4 WHERE visiting_team = \"Tennessee Tech\"", "question": "What were the results of the  tennessee tech as a visiting team?", "context": "CREATE TABLE table_26842217_4 (result VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_26842217_4 WHERE visiting_team = \"San Jose State\"", "question": "What is the home team where the San Jose state is the visiting team?", "context": "CREATE TABLE table_26842217_4 (home_team VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT result FROM table_26842217_4 WHERE site = \"Bryant-Denny Stadium \u2022 Tuscaloosa, AL\"", "question": "What were the results in the bryant-denny stadium \u2022 tuscaloosa, al?", "context": "CREATE TABLE table_26842217_4 (result VARCHAR, site VARCHAR)"}, {"answer": "SELECT home_team FROM table_26842217_4 WHERE time = \"7:30pm\" AND broadcast = \"ESPN\"", "question": "What home team is at  7:30pm in ESPN?", "context": "CREATE TABLE table_26842217_4 (home_team VARCHAR, time VARCHAR, broadcast VARCHAR)"}, {"answer": "SELECT time FROM table_26842217_8 WHERE visiting_team = \"Clemson\"", "question": "If the visiting team is Clemson, when was the time?", "context": "CREATE TABLE table_26842217_8 (time VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_26842217_8 WHERE site = \"Wallace Wade Stadium \u2022 Durham, NC\"", "question": "How many times was the site wallace wade stadium \u2022 durham, nc?", "context": "CREATE TABLE table_26842217_8 (attendance VARCHAR, site VARCHAR)"}, {"answer": "SELECT result FROM table_26842217_8 WHERE site = \"Wallace Wade Stadium \u2022 Durham, NC\"", "question": "If the site was wallace wade stadium \u2022 durham, nc, what was the result?", "context": "CREATE TABLE table_26842217_8 (result VARCHAR, site VARCHAR)"}, {"answer": "SELECT date FROM table_26842217_8 WHERE site = \"Sanford Stadium \u2022 Athens, GA\"", "question": "If the site is sanford stadium \u2022 athens, ga, what is the date?", "context": "CREATE TABLE table_26842217_8 (date VARCHAR, site VARCHAR)"}, {"answer": "SELECT production_code FROM table_26845668_1 WHERE us_viewers__millions_ = \"4.32\"", "question": "What is the production code for the movie with 4.32 million U.S. viewers?", "context": "CREATE TABLE table_26845668_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_26842217_6 WHERE visiting_team = \"Louisiana-Monroe\"", "question": "How many times was Louisiana-Monroe a visiting team?", "context": "CREATE TABLE table_26842217_6 (time VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT date FROM table_26842217_6 WHERE visiting_team = \"South Florida\"", "question": "List all dates where South Florida was a visiting team.", "context": "CREATE TABLE table_26842217_6 (date VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT time FROM table_26842217_6 WHERE visiting_team = \"#7 Oregon\"", "question": "How many times was #7 Oregon a visiting team?", "context": "CREATE TABLE table_26842217_6 (time VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_26842217_6 WHERE visiting_team = \"Western Kentucky\"", "question": "List all home teams when Western Kentucky was the visiting team.", "context": "CREATE TABLE table_26842217_6 (home_team VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT time FROM table_26842217_6 WHERE home_team = \"Kentucky\"", "question": "List all times with Kentucky as the home team.", "context": "CREATE TABLE table_26842217_6 (time VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_26847237_3 WHERE opposition = \"Mid Canterbury\"", "question": "What is the score when the opposition is mid canterbury?", "context": "CREATE TABLE table_26847237_3 (score VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT home_team FROM table_26847237_3 WHERE opposition = \"East Coast\"", "question": "what is the home team when the opposition is east coast?", "context": "CREATE TABLE table_26847237_3 (home_team VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT home_team FROM table_26847237_3 WHERE opposition = \"Wairarapa Bush\"", "question": "What is the home team when the opposition is wairarapa bush?", "context": "CREATE TABLE table_26847237_3 (home_team VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT home_team FROM table_26847237_3 WHERE round__number = \"Round 1\"", "question": "what is the home team when the round # is round 1?", "context": "CREATE TABLE table_26847237_3 (home_team VARCHAR, round__number VARCHAR)"}, {"answer": "SELECT opposition FROM table_26847237_3 WHERE score = \"37 - 28\"", "question": "Who is the opposition when the score is 37 - 28?", "context": "CREATE TABLE table_26847237_3 (opposition VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_26847237_3 WHERE opposition = \"Mid Canterbury\"", "question": "What is the location when the opposition is mid canterbury?", "context": "CREATE TABLE table_26847237_3 (location VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT score FROM table_26847237_1 WHERE round__number = \"Round 7\"", "question": "What was the score in round 7?", "context": "CREATE TABLE table_26847237_1 (score VARCHAR, round__number VARCHAR)"}, {"answer": "SELECT home_team FROM table_26847237_1 WHERE opposition = \"Buller\"", "question": "Who was the home team when the opposition was Buller?", "context": "CREATE TABLE table_26847237_1 (home_team VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT win_loss FROM table_26847237_1 WHERE round__number = \"Round 3\"", "question": "Was it a win or loss for Wanganui in round 3?", "context": "CREATE TABLE table_26847237_1 (win_loss VARCHAR, round__number VARCHAR)"}, {"answer": "SELECT location FROM table_26847237_1 WHERE opposition = \"East Coast\"", "question": "What was the location when the opposition was East Coast?", "context": "CREATE TABLE table_26847237_1 (location VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT score FROM table_26847237_1 WHERE opposition = \"West Coast\" AND location = \"Wanganui\"", "question": "What was the score when the opposition was West Coast in Wanganui?", "context": "CREATE TABLE table_26847237_1 (score VARCHAR, opposition VARCHAR, location VARCHAR)"}, {"answer": "SELECT win_loss FROM table_26847237_1 WHERE location = \"Paeroa\"", "question": "Was it a win or a loss for Wanganui in Paeroa?", "context": "CREATE TABLE table_26847237_1 (win_loss VARCHAR, location VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_26866205_1 WHERE series__number = 26", "question": "What is every original air date for series# of 26?", "context": "CREATE TABLE table_26866205_1 (original_airdate VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT director FROM table_26866233_1 WHERE series__number = 54", "question": "Who are the directors of the episode in series # 54?", "context": "CREATE TABLE table_26866233_1 (director VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT writer FROM table_26866233_1 WHERE director = \"Gene Reynolds\"", "question": "The episode where the director is Gene Reynolds has who as the writer?", "context": "CREATE TABLE table_26866233_1 (writer VARCHAR, director VARCHAR)"}, {"answer": "SELECT title FROM table_26866233_1 WHERE original_airdate = \"December22,1996\"", "question": "The episode with the original airdate December22,1996 has what title? ", "context": "CREATE TABLE table_26866233_1 (title VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_26866299_1 WHERE writer = \"Michael Glassberg\"", "question": "What was the original air date of the episode written by michael glassberg?", "context": "CREATE TABLE table_26866299_1 (original_airdate VARCHAR, writer VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_26866299_1 WHERE series__number = 96", "question": "What was the original air date for episode number 96 in the series?", "context": "CREATE TABLE table_26866299_1 (original_airdate VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT writer FROM table_26866434_1 WHERE series__number = 122", "question": "Who wrote episode 122 in the series?", "context": "CREATE TABLE table_26866434_1 (writer VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT director FROM table_26866519_1 WHERE series__number = 201", "question": "Who directed series episode number 201?", "context": "CREATE TABLE table_26866519_1 (director VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_26866519_1 WHERE season__number = 20", "question": "What are the original air date(s) for season episode 20?", "context": "CREATE TABLE table_26866519_1 (original_airdate VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT COUNT(season__number) FROM table_26866519_1 WHERE director = \"Ricardo Mendez Matta\"", "question": "How many episodes are directed by ricardo mendez matta?", "context": "CREATE TABLE table_26866519_1 (season__number VARCHAR, director VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_26882866_1 WHERE standing = \"5th\"", "question": "Name the leaast points for standing 5th", "context": "CREATE TABLE table_26882866_1 (points INTEGER, standing VARCHAR)"}, {"answer": "SELECT MIN(camper) FROM table_26894949_2 WHERE puma = \"12\"", "question": "If puma is 12, what is camper?", "context": "CREATE TABLE table_26894949_2 (camper INTEGER, puma VARCHAR)"}, {"answer": "SELECT COUNT(event) FROM table_26894949_2 WHERE puma = \"20\" AND abu_dhabi = \"30\"", "question": "In how many events was Puma 20 and abu dhabi 30?", "context": "CREATE TABLE table_26894949_2 (event VARCHAR, puma VARCHAR, abu_dhabi VARCHAR)"}, {"answer": "SELECT COUNT(sanya) FROM table_26894949_2 WHERE distance = \"abu_dhabi\"", "question": "How many time was the distance Abu Dhabi?", "context": "CREATE TABLE table_26894949_2 (sanya VARCHAR, distance VARCHAR)"}, {"answer": "SELECT MAX(Ends) AS lost FROM table_26912584_2", "question": "What is the largest amount of ends lost?", "context": "CREATE TABLE table_26912584_2 (Ends INTEGER)"}, {"answer": "SELECT skip FROM table_26912584_2 WHERE country = Sweden", "question": "When sweden is the country who is the skip?", "context": "CREATE TABLE table_26912584_2 (skip VARCHAR, country VARCHAR, Sweden VARCHAR)"}, {"answer": "SELECT story_by FROM table_26914076_3 WHERE us_viewers__millions_ = \"0.53\"", "question": "Who wrote the story viewed by 0.53 million viewers?", "context": "CREATE TABLE table_26914076_3 (story_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_26914076_3 WHERE story_by = \"David Simon & Mari Kornhauser\"", "question": "How many viewers watched the episode with a story by david simon & mari kornhauser?", "context": "CREATE TABLE table_26914076_3 (us_viewers__millions_ VARCHAR, story_by VARCHAR)"}, {"answer": "SELECT COUNT(us_viewers__millions_) FROM table_26914076_3 WHERE directed_by = \"Rob Bailey\"", "question": "How many entries are there for u.s. viewers (millions) for the episode directed by rob bailey?", "context": "CREATE TABLE table_26914076_3 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_26914076_3 WHERE directed_by = \"Rob Bailey\"", "question": "What is the date the episode directed by rob bailey aired?", "context": "CREATE TABLE table_26914076_3 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT team FROM table_26914759_3 WHERE incoming_manager = \"Dave Penney\"", "question": "WHich team had dave penney as an incoming manager", "context": "CREATE TABLE table_26914759_3 (team VARCHAR, incoming_manager VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_26914759_3 WHERE team = \"Notts County\" AND incoming_manager = \"Martin Allen\"", "question": "What was the manner of departure for notts county with an incoming manager of martin allen", "context": "CREATE TABLE table_26914759_3 (manner_of_departure VARCHAR, team VARCHAR, incoming_manager VARCHAR)"}, {"answer": "SELECT COUNT(position_in_table) FROM table_26914759_3 WHERE incoming_manager = \"Gary Megson\"", "question": "How many teams had gary megson as an incoming manager", "context": "CREATE TABLE table_26914759_3 (position_in_table VARCHAR, incoming_manager VARCHAR)"}, {"answer": "SELECT incoming_manager FROM table_26914759_3 WHERE position_in_table = \"12th\"", "question": "who was the incoming manager for the 12th position in the table", "context": "CREATE TABLE table_26914759_3 (incoming_manager VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT height FROM table_26916717_1 WHERE home_town = \"Farmington, KY\"", "question": "How tall is the player from farmington, ky?", "context": "CREATE TABLE table_26916717_1 (height VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT team_school FROM table_26916717_1 WHERE name = \"Adrian Smith\"", "question": "Where did adrian smith go to college?", "context": "CREATE TABLE table_26916717_1 (team_school VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_26916717_1 WHERE team_school = \"California\"", "question": "What player attended california university?", "context": "CREATE TABLE table_26916717_1 (name VARCHAR, team_school VARCHAR)"}, {"answer": "SELECT name FROM table_26916717_1 WHERE home_town = \"Purcell, OK\"", "question": "What is the name of the player from purcell, ok?", "context": "CREATE TABLE table_26916717_1 (name VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT hebrew FROM table_26919_6 WHERE arabic = \"tis\u0295-\"", "question": "Name the hebrew for  tis\u0295-", "context": "CREATE TABLE table_26919_6 (hebrew VARCHAR, arabic VARCHAR)"}, {"answer": "SELECT COUNT(tigrinya) FROM table_26919_6 WHERE arabic = \"\u03c7ams-\"", "question": "Name the tigrinya for \u03c7ams-", "context": "CREATE TABLE table_26919_6 (tigrinya VARCHAR, arabic VARCHAR)"}, {"answer": "SELECT hebrew FROM table_26919_6 WHERE proto_semitic = \"*ti\u0161\u02bb-\"", "question": "Name the hebrew for *ti\u0161\u02bb-", "context": "CREATE TABLE table_26919_6 (hebrew VARCHAR, proto_semitic VARCHAR)"}, {"answer": "SELECT arabic FROM table_26919_6 WHERE tigrinya = \"\u0127amu\u0283te\"", "question": "Name the arabic for  \u0127amu\u0283te", "context": "CREATE TABLE table_26919_6 (arabic VARCHAR, tigrinya VARCHAR)"}, {"answer": "SELECT sabaean FROM table_26919_6 WHERE arabic = \"sab\u0295-\"", "question": "Name the sabaean for sab\u0295-", "context": "CREATE TABLE table_26919_6 (sabaean VARCHAR, arabic VARCHAR)"}, {"answer": "SELECT incoming_manager FROM table_26914854_3 WHERE date_of_vacancy = \"21 March 2011\"", "question": "Who is the incoming manager when the date of vacancy was 21 march 2011?", "context": "CREATE TABLE table_26914854_3 (incoming_manager VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_26914854_3 WHERE date_of_vacancy = \"4 January 2011\"", "question": "What is the position in table when the date of vacancy was 4 january 2011?", "context": "CREATE TABLE table_26914854_3 (position_in_table VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT team FROM table_26914854_3 WHERE incoming_manager = \"Martin Allen\"", "question": "What is the team when the incoming manager is martin allen?", "context": "CREATE TABLE table_26914854_3 (team VARCHAR, incoming_manager VARCHAR)"}, {"answer": "SELECT incoming_manager FROM table_26914854_3 WHERE date_of_appointment = \"9 March 2011\"", "question": "Who is the incoming manager when the date of appointment is 9 march 2011?", "context": "CREATE TABLE table_26914854_3 (incoming_manager VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT team FROM table_26914854_3 WHERE date_of_appointment = \"23 March 2011\"", "question": "What is the team when the date of appointment is 23 march 2011?", "context": "CREATE TABLE table_26914854_3 (team VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT team FROM table_26914854_3 WHERE date_of_appointment = \"11 June 2010\"", "question": "what is the date of appointment  11 june 2010?", "context": "CREATE TABLE table_26914854_3 (team VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT depth FROM table_26950408_1 WHERE time___utc__ = \"12:19:36\"", "question": "What is the depth at the UTC time of 12:19:36?", "context": "CREATE TABLE table_26950408_1 (depth VARCHAR, time___utc__ VARCHAR)"}, {"answer": "SELECT date__yyyy_mm_dd_ FROM table_26950408_1 WHERE time___utc__ = \"03:15:46\"", "question": "What is the date for the UTC time of 03:15:46?", "context": "CREATE TABLE table_26950408_1 (date__yyyy_mm_dd_ VARCHAR, time___utc__ VARCHAR)"}, {"answer": "SELECT title FROM table_26952212_1 WHERE no_in_total = \"30\"", "question": "What is the title for episode number 30?", "context": "CREATE TABLE table_26952212_1 (title VARCHAR, no_in_total VARCHAR)"}, {"answer": "SELECT MAX(_percentage_identity_to_c7orf38) FROM table_26957063_3 WHERE genus_ & _species = \"Mus musculus\"", "question": "What is the % identity to C7orf38 of the animal whose genus & species is Mus Musculus?", "context": "CREATE TABLE table_26957063_3 (_percentage_identity_to_c7orf38 INTEGER, genus_ VARCHAR, _species VARCHAR)"}, {"answer": "SELECT MIN(length__aa_) FROM table_26957063_3 WHERE ncbi_accession_number = \"CAM15594.1\"", "question": "What is the length (AA) of the animal whose NCBI accession number is CAM15594.1?", "context": "CREATE TABLE table_26957063_3 (length__aa_ INTEGER, ncbi_accession_number VARCHAR)"}, {"answer": "SELECT MAX(_percentage_similarity_to_c7orf38) FROM table_26957063_3 WHERE _percentage_identity_to_c7orf38 = 81", "question": "What is the % similarity to C7orf38 of the animal whose % identity to C7orf38 is 81?", "context": "CREATE TABLE table_26957063_3 (_percentage_similarity_to_c7orf38 INTEGER, _percentage_identity_to_c7orf38 VARCHAR)"}, {"answer": "SELECT common_name FROM table_26957063_3 WHERE length__aa_ = 1323", "question": "What is the common name of the animal whose length (AA) is 1323?", "context": "CREATE TABLE table_26957063_3 (common_name VARCHAR, length__aa_ VARCHAR)"}, {"answer": "SELECT MIN(_percentage_identity_to_c7orf38) FROM table_26957063_3 WHERE common_name = \"Rat\"", "question": "What is the % identity to C7orf38 of the animal whose common name is rat?", "context": "CREATE TABLE table_26957063_3 (_percentage_identity_to_c7orf38 INTEGER, common_name VARCHAR)"}, {"answer": "SELECT genus_ & _species FROM table_26957063_3 WHERE ncbi_accession_number = \"XP_002439156.1\"", "question": "What is the genus & species of the animal whose accession number is XP_002439156.1?", "context": "CREATE TABLE table_26957063_3 (genus_ VARCHAR, _species VARCHAR, ncbi_accession_number VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_26961951_4 WHERE written_by = \"Alison McDonald\"", "question": "How many episodes were written by Alison McDonald?", "context": "CREATE TABLE table_26961951_4 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_26961951_4 WHERE written_by = \"Alison McDonald\"", "question": "How many viewers in millions did the Alison McDonald episode get?", "context": "CREATE TABLE table_26961951_4 (us_viewers__million_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MIN(p_max___bar__) FROM table_26967904_2 WHERE f_bolt___kgf__ = 6876", "question": "What is the p max ( bar ) for the 6876 f bolt ( kgf )?", "context": "CREATE TABLE table_26967904_2 (p_max___bar__ INTEGER, f_bolt___kgf__ VARCHAR)"}, {"answer": "SELECT p1_diameter__mm_ FROM table_26967904_2 WHERE chambering = \".300 Lapua Magnum\"", "question": "What is the  p1 diameter (mm) when .300 lapua magnum is the chambering?", "context": "CREATE TABLE table_26967904_2 (p1_diameter__mm_ VARCHAR, chambering VARCHAR)"}, {"answer": "SELECT chambering FROM table_26967904_2 WHERE f_bolt___kgf__ = 8339", "question": "What is the chambering for the 8339 f bolt ( kgf )?", "context": "CREATE TABLE table_26967904_2 (chambering VARCHAR, f_bolt___kgf__ VARCHAR)"}, {"answer": "SELECT f_bolt FROM table_26967904_2 WHERE p1_diameter__mm_ = \"11.35\"", "question": "What is the f bolt  for 11.35  p1 diameter (mm)?", "context": "CREATE TABLE table_26967904_2 (f_bolt VARCHAR, p1_diameter__mm_ VARCHAR)"}, {"answer": "SELECT COUNT(a_external__cm_2__) FROM table_26967904_2 WHERE chambering = \".338 Lapua Magnum\"", "question": "How many  external (cm 2 ) are there for the .338 lapua magnum chambering?", "context": "CREATE TABLE table_26967904_2 (a_external__cm_2__ VARCHAR, chambering VARCHAR)"}, {"answer": "SELECT chambering FROM table_26967904_1 WHERE f_bolt = \"N (lbf)\" AND p_max___bar__ = 3900", "question": "With what type of chambering is the F bolt n (lbf) and the P max (bar) 3900?", "context": "CREATE TABLE table_26967904_1 (chambering VARCHAR, f_bolt VARCHAR, p_max___bar__ VARCHAR)"}, {"answer": "SELECT p_max___bar__ FROM table_26967904_1 WHERE p1_diameter__mm_ = \"9.70\"", "question": "What is the p max (bar) of the pistol with a P1 diameter of 9.70 mm?", "context": "CREATE TABLE table_26967904_1 (p_max___bar__ VARCHAR, p1_diameter__mm_ VARCHAR)"}, {"answer": "SELECT MAX(p_max___bar__) FROM table_26967904_1 WHERE chambering = \".45 ACP\"", "question": "What is the p max (bar) in the pistol where the chambering is .45 ACP?", "context": "CREATE TABLE table_26967904_1 (p_max___bar__ INTEGER, chambering VARCHAR)"}, {"answer": "SELECT p_max___bar__ FROM table_26967904_1 WHERE p1_diameter__mm_ = \"12.09\"", "question": "What is the P max (bar) of the pistol with a P1 diameter of 12.09 mm?", "context": "CREATE TABLE table_26967904_1 (p_max___bar__ VARCHAR, p1_diameter__mm_ VARCHAR)"}, {"answer": "SELECT incoming_manager FROM table_26976615_3 WHERE date_of_appointment = \"15 January 2011\"", "question": "Who was the  incoming manager for the date of appointment of 15 january 2011?", "context": "CREATE TABLE table_26976615_3 (incoming_manager VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_26976615_3 WHERE date_of_vacancy = \"22 August 2010\"", "question": "What is the date of appointment for the date of vacancy of 22 august 2010?", "context": "CREATE TABLE table_26976615_3 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_26976615_3 WHERE team = \"T\u00e2rgu Mure\u015f\"", "question": "Who was the outgoing manager for the team of t\u00e2rgu mure\u015f?", "context": "CREATE TABLE table_26976615_3 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(date_of_appointment) FROM table_26976615_3 WHERE date_of_vacancy = \"2 October 2010\"", "question": "How many date of appointments are there when the date of vacancy was 2 october 2010?", "context": "CREATE TABLE table_26976615_3 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_26976615_3 WHERE incoming_manager = \"Lauren\u0163iu Reghecampf\"", "question": "Who was the outgoing manager when the incoming manager was lauren\u0163iu reghecampf?", "context": "CREATE TABLE table_26976615_3 (outgoing_manager VARCHAR, incoming_manager VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_26976615_3 WHERE outgoing_manager = \"Andrea Mandorlini\"", "question": "What was the manner of departure when the outgoing manager was andrea mandorlini?", "context": "CREATE TABLE table_26976615_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT capacity FROM table_26980923_2 WHERE team = \"Dundee United\"", "question": "What is the capacity for dundee united?", "context": "CREATE TABLE table_26980923_2 (capacity VARCHAR, team VARCHAR)"}, {"answer": "SELECT total FROM table_26980923_2 WHERE stadium = \"Rugby Park\"", "question": "What was the total attendance at rugby park?", "context": "CREATE TABLE table_26980923_2 (total VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_26980923_2 WHERE team = \"Kilmarnock\"", "question": "What is the total attended for kilmarnock?", "context": "CREATE TABLE table_26980923_2 (total INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(mon_23_aug) FROM table_26986076_1 WHERE fri_27_aug = \"19' 38.87 115.219mph\"", "question": "How many times was the time 19' 38.87 115.219mph on Fri Aug 27?", "context": "CREATE TABLE table_26986076_1 (mon_23_aug VARCHAR, fri_27_aug VARCHAR)"}, {"answer": "SELECT fri_27_aug FROM table_26986076_1 WHERE tues_24_aug = \"20' 49.46 108.709mph\"", "question": "If the time on Tues Aug 24 is 20' 49.46 108.709mph, what is the time on Fri Aug 27?", "context": "CREATE TABLE table_26986076_1 (fri_27_aug VARCHAR, tues_24_aug VARCHAR)"}, {"answer": "SELECT sat_21_aug FROM table_26986076_1 WHERE wed_25_aug = \"\u2014\u2014 No Time\"", "question": "If Wed Aug 25 is \u2014\u2014 no time, what is Sat aug 21?", "context": "CREATE TABLE table_26986076_1 (sat_21_aug VARCHAR, wed_25_aug VARCHAR)"}, {"answer": "SELECT sat_28_aug FROM table_26986076_1 WHERE rank = 10", "question": "If the Rank is 10, what was the time on Sat aug 28?", "context": "CREATE TABLE table_26986076_1 (sat_28_aug VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(sat_21_aug) FROM table_26986076_1 WHERE thurs_26_aug = \"20' 05.19 112.703mph\"", "question": "How many times was the time 20' 05.19 112.703mph on Thurs Aug 26th?", "context": "CREATE TABLE table_26986076_1 (sat_21_aug VARCHAR, thurs_26_aug VARCHAR)"}, {"answer": "SELECT sat_28_aug FROM table_26986076_1 WHERE wed_25_aug = \"20' 09.25 112.324mph\"", "question": "If the time on Wed aug 25 was 20' 09.25 112.324mph, what was the time on sat Aug 28?", "context": "CREATE TABLE table_26986076_1 (sat_28_aug VARCHAR, wed_25_aug VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_26986076_2 WHERE tues_24_aug = \"19' 19.83 117.110mph\"", "question": "How many times was tues 24 aug 19' 19.83 117.110mph?", "context": "CREATE TABLE table_26986076_2 (rank VARCHAR, tues_24_aug VARCHAR)"}, {"answer": "SELECT COUNT(sat_29_aug) FROM table_26986076_2 WHERE fri_27_aug = \"19' 38.87 115.219mph\"", "question": "how many time is fri 27 aug 19' 38.87 115.219mph?", "context": "CREATE TABLE table_26986076_2 (sat_29_aug VARCHAR, fri_27_aug VARCHAR)"}, {"answer": "SELECT wed_25_aug FROM table_26986076_2 WHERE mon_23_aug = \"26' 57.82 89.957mph\"", "question": "what is wed 25 aug when mon 23 aug is 26' 57.82 89.957mph?", "context": "CREATE TABLE table_26986076_2 (wed_25_aug VARCHAR, mon_23_aug VARCHAR)"}, {"answer": "SELECT thurs_26_aug FROM table_26986076_2 WHERE wed_25_aug = \"19' 59.98 113.192mph\"", "question": "What is thurs 26 aug when wed 25 aug is 19' 59.98 113.192mph?", "context": "CREATE TABLE table_26986076_2 (thurs_26_aug VARCHAR, wed_25_aug VARCHAR)"}, {"answer": "SELECT mon_23_aug FROM table_26986076_2 WHERE fri_27_aug = \"18' 59.25 119.226mph\"", "question": "what is mon 23 aug when fri 27 aug is 18' 59.25 119.226mph?", "context": "CREATE TABLE table_26986076_2 (mon_23_aug VARCHAR, fri_27_aug VARCHAR)"}, {"answer": "SELECT sat_21_aug FROM table_26986076_5 WHERE rank = 8", "question": "When 8 is the rank what is the Saturday August 21st?", "context": "CREATE TABLE table_26986076_5 (sat_21_aug VARCHAR, rank VARCHAR)"}, {"answer": "SELECT tues_24_aug FROM table_26986076_5 WHERE fri_27_aug = \"20' 58.50 107.929mph\"", "question": "When 20' 58.50 107.929mph is Friday August 27th What is Tuesday 24th August?", "context": "CREATE TABLE table_26986076_5 (tues_24_aug VARCHAR, fri_27_aug VARCHAR)"}, {"answer": "SELECT mon_23_aug FROM table_26986076_5 WHERE tues_24_aug = \"21' 18.87 106.209mph\"", "question": "When 21' 18.87 106.209mph is Tuesday August 24th what is Monday August 23rd?", "context": "CREATE TABLE table_26986076_5 (mon_23_aug VARCHAR, tues_24_aug VARCHAR)"}, {"answer": "SELECT sat_29_aug FROM table_26986076_5 WHERE tues_24_aug = \"21' 10.25 106.930mph\"", "question": "When 21' 10.25 106.930mph is Tuesday August 24th what is Saturday August 29th?", "context": "CREATE TABLE table_26986076_5 (sat_29_aug VARCHAR, tues_24_aug VARCHAR)"}, {"answer": "SELECT fri_27_aug FROM table_26986076_5 WHERE wed_25_aug = \"21' 05.83 107.304mph\"", "question": "When  21' 05.83 107.304mph is Wednesday August 25th what is Friday August 27th?", "context": "CREATE TABLE table_26986076_5 (fri_27_aug VARCHAR, wed_25_aug VARCHAR)"}, {"answer": "SELECT mon_23_aug FROM table_26986076_5 WHERE rider = \"Tom Snow 250cc Honda\"", "question": "When tom snow 250cc honda is the rider what is Monday August 23rd?", "context": "CREATE TABLE table_26986076_5 (mon_23_aug VARCHAR, rider VARCHAR)"}, {"answer": "SELECT directed_by FROM table_26982362_2 WHERE original_airdate = \"October 8, 2010\"", "question": "The episode with the original airdate October 8, 2010, is directed by who?", "context": "CREATE TABLE table_26982362_2 (directed_by VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT directed_by FROM table_26982362_2 WHERE production_code = \"693-004\"", "question": "Who directed the episode with production code 693-004?", "context": "CREATE TABLE table_26982362_2 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(original_airdate) FROM table_26982362_2 WHERE production_code = \"693-002\"", "question": "The episode with production code 693-002, has how many original airdates?", "context": "CREATE TABLE table_26982362_2 (original_airdate VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_26982362_2 WHERE original_airdate = \"April 23, 2010\"", "question": "What is the title of the episode whose original airdate is April 23, 2010?", "context": "CREATE TABLE table_26982362_2 (title VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT rider FROM table_26986076_7 WHERE tues_24_aug = \"22' 09.44 93.840mph\"", "question": "Who had the time of 22' 09.44 93.840mph on Tuesday August 24th?", "context": "CREATE TABLE table_26986076_7 (rider VARCHAR, tues_24_aug VARCHAR)"}, {"answer": "SELECT l3_cache__mb_ FROM table_269920_16 WHERE speed__ghz_ = \"2.93\"", "question": "What is the L3 cache for the processor having a speed of 2.93 GHz?", "context": "CREATE TABLE table_269920_16 (l3_cache__mb_ VARCHAR, speed__ghz_ VARCHAR)"}, {"answer": "SELECT COUNT(cores) FROM table_269920_16 WHERE speed__ghz_ = \"2.53\"", "question": "How many entries have a speed of exactly 2.53 GHz?", "context": "CREATE TABLE table_269920_16 (cores VARCHAR, speed__ghz_ VARCHAR)"}, {"answer": "SELECT speed__ghz_ FROM table_269920_16 WHERE model = \"W3540\"", "question": "What is the speed of the model whose number is W3540?", "context": "CREATE TABLE table_269920_16 (speed__ghz_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT wed_25_aug FROM table_26986076_6 WHERE fri_27_aug = \"22' 23.97 101.065mph\"", "question": "What was the Weds 25 Aug time for the driver whose Aug 27 time was 22' 23.97 101.065mph?", "context": "CREATE TABLE table_26986076_6 (wed_25_aug VARCHAR, fri_27_aug VARCHAR)"}, {"answer": "SELECT sat_21_aug FROM table_26986076_6 WHERE thurs_26_aug = \"20' 56.01 108.143mph\"", "question": "What was the Sat 21 Aug time for the driver whose Thurs 26 Aug time was 20' 56.01 108.143mph?", "context": "CREATE TABLE table_26986076_6 (sat_21_aug VARCHAR, thurs_26_aug VARCHAR)"}, {"answer": "SELECT sat_21_aug FROM table_26986076_6 WHERE tues_24_aug = \"20' 38.40 109.680mph\"", "question": "What was the Sat 21 Aug time for the rider whose Tues 24 Aug time was 20' 38.40 109.680mph?", "context": "CREATE TABLE table_26986076_6 (sat_21_aug VARCHAR, tues_24_aug VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_269888_1 WHERE population__2010_ = 53542", "question": "Name the area for population of 53542", "context": "CREATE TABLE table_269888_1 (area__km\u00b2_ VARCHAR, population__2010_ VARCHAR)"}, {"answer": "SELECT no_of_s_barangay FROM table_269888_1 WHERE pop_density__per_km\u00b2_ = \"205.4\"", "question": "Name the number of barangay for 205.4 density", "context": "CREATE TABLE table_269888_1 (no_of_s_barangay VARCHAR, pop_density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(fsb__mhz_) FROM table_269920_3 WHERE model = \"7140N\"", "question": "How many different FSB are there for the 7140N model?", "context": "CREATE TABLE table_269920_3 (fsb__mhz_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT COUNT(l2_cache__mb_) FROM table_269920_3 WHERE model = \"7130M\"", "question": "How many different L2 cache numbers are there for the 7130M model?", "context": "CREATE TABLE table_269920_3 (l2_cache__mb_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT MAX(l2_cache__mb_) FROM table_269920_3", "question": "What's the maximal L3 cache for any of the models given?", "context": "CREATE TABLE table_269920_3 (l2_cache__mb_ INTEGER)"}, {"answer": "SELECT MIN(tdp__w_) FROM table_269920_3 WHERE model = \"7130N\"", "question": "What's the TDP for the 7130N model?", "context": "CREATE TABLE table_269920_3 (tdp__w_ INTEGER, model VARCHAR)"}, {"answer": "SELECT l2_cache__mb_ FROM table_269920_3 WHERE model = \"7140N\"", "question": "What's the L2 cache for the 7140N model?", "context": "CREATE TABLE table_269920_3 (l2_cache__mb_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT COUNT(cfl_team) FROM table_26996293_4 WHERE college = \"Waterloo\"", "question": "what is the cfl team where college is waterloo?", "context": "CREATE TABLE table_26996293_4 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_26996293_1 WHERE player = \"Jim Bennett\"", "question": "What college did Jim Bennett attend?", "context": "CREATE TABLE table_26996293_1 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_26996293_1 WHERE player = \"Barry Jamieson\"", "question": "What CFL Team was Barry Jamieson a part of?", "context": "CREATE TABLE table_26996293_1 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_26996293_1 WHERE position = \"DE\"", "question": "What college did the player who played DE go to?", "context": "CREATE TABLE table_26996293_1 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_26996293_1 WHERE player = \"Barry Jamieson\"", "question": "What was Barry Jamieson's pick number?", "context": "CREATE TABLE table_26996293_1 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT college FROM table_26996293_1 WHERE player = \"Bob LaRose\"", "question": "What college did Bob Larose attend?", "context": "CREATE TABLE table_26996293_1 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_26996293_2 WHERE college = \"British Columbia\"", "question": "where college is british columbia  what are all the player", "context": "CREATE TABLE table_26996293_2 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT pick__number FROM table_26996293_2 WHERE college = \"St. Francis Xavier\"", "question": " where college is st. francis xavier what are all the pick #", "context": "CREATE TABLE table_26996293_2 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_26996293_2 WHERE player = \"Jim Henshall\"", "question": "player is jim henshall what are all the position", "context": "CREATE TABLE table_26996293_2 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_26996293_2 WHERE cfl_team = \"Edmonton (2)\"", "question": "where cfl team is edmonton (2) what are all the position", "context": "CREATE TABLE table_26996293_2 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT player FROM table_26996293_2 WHERE cfl_team = \"Winnipeg (3) via Hamilton\"", "question": "where cfl team is winnipeg (3) via hamilton what are all the player", "context": "CREATE TABLE table_26996293_2 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT COUNT(cfl_team) FROM table_26996293_3 WHERE college = \"Mount Allison\"", "question": "How many CFL teams drafted someone from mount allison college?", "context": "CREATE TABLE table_26996293_3 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_26996293_3 WHERE position = \"OG\"", "question": "What player drafted was an OG?", "context": "CREATE TABLE table_26996293_3 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_26996293_7 WHERE player = \"Bill Simmons\"", "question": "What is the position of the player bill simmons?", "context": "CREATE TABLE table_26996293_7 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_26996293_7 WHERE cfl_team = \"Saskatchewan (7)\"", "question": "What is the position of cfl team saskatchewan (7)?", "context": "CREATE TABLE table_26996293_7 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_26996293_7 WHERE player = \"Brian Currie\"", "question": "How many times was player brian currie picked?", "context": "CREATE TABLE table_26996293_7 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_26996293_7 WHERE pick__number = 54", "question": "What position was pick # 54?", "context": "CREATE TABLE table_26996293_7 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT pick__number FROM table_26996293_7 WHERE cfl_team = \"BC Lions (7)\"", "question": "What is the pick # of cfl team bc lions (7)", "context": "CREATE TABLE table_26996293_7 (pick__number VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT college FROM table_26996293_7 WHERE player = \"Terry Moss\"", "question": "What is the college where player terry moss attended?", "context": "CREATE TABLE table_26996293_7 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_26998135_2 WHERE team = \"Kas\u0131mpa\u015fa\"", "question": "What is the outgoing manager for the team kas\u0131mpa\u015fa?", "context": "CREATE TABLE table_26998135_2 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_26998135_2 WHERE date_of_vacancy = \"27 December 2010\"", "question": "Who is the replaced by when the date of vacancy is 27 december 2010?", "context": "CREATE TABLE table_26998135_2 (replaced_by VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_26998135_2 WHERE date_of_appointment = \"24 May 2010\"", "question": "What is the manner of departure for the date of appointment 24 may 2010?", "context": "CREATE TABLE table_26998135_2 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_26998135_2 WHERE outgoing_manager = \"Mustafa Denizli\"", "question": "What is the date of appointment when the outgoing manager was mustafa denizli?", "context": "CREATE TABLE table_26998135_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_26998135_2 WHERE date_of_vacancy = \"15 March 2011\"", "question": "What is the date of appointment when the date of vacancy is 15 march 2011?", "context": "CREATE TABLE table_26998135_2 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_27003223_4 WHERE democratic = \"28.0%\"", "question": "What is the lowest population in which 28.0% are democrat?", "context": "CREATE TABLE table_27003223_4 (population INTEGER, democratic VARCHAR)"}, {"answer": "SELECT democratic FROM table_27003223_4 WHERE registered_voters = \"67.8%\"", "question": "what is the percentage of democratic voters in which the registered voters is 67.8%?", "context": "CREATE TABLE table_27003223_4 (democratic VARCHAR, registered_voters VARCHAR)"}, {"answer": "SELECT registered_voters FROM table_27003223_4 WHERE d_r_spread = \"+10.4%\"", "question": "What is the percentage of registered voters in which the d-r spread is +10.4%?", "context": "CREATE TABLE table_27003223_4 (registered_voters VARCHAR, d_r_spread VARCHAR)"}, {"answer": "SELECT registered_voters FROM table_27003223_4 WHERE d_r_spread = \"+14.3%\"", "question": "What is the percentage of registered voters in which the d-r spread is +14.3%?", "context": "CREATE TABLE table_27003223_4 (registered_voters VARCHAR, d_r_spread VARCHAR)"}, {"answer": "SELECT republican FROM table_27003223_4 WHERE d_r_spread = \"-14.1%\"", "question": "What is the percentage of republican voters in which the d-r spread is -14.1%?", "context": "CREATE TABLE table_27003223_4 (republican VARCHAR, d_r_spread VARCHAR)"}, {"answer": "SELECT no_party_preference FROM table_27003223_4 WHERE democratic = \"24.8%\"", "question": "What is the percentage of \"no party preference\" where the democratic percentage is 24.8%?", "context": "CREATE TABLE table_27003223_4 (no_party_preference VARCHAR, democratic VARCHAR)"}, {"answer": "SELECT COUNT(train_no) FROM table_27011761_2 WHERE departure = \"17:30\"", "question": "How many trains depart at 17:30?", "context": "CREATE TABLE table_27011761_2 (train_no VARCHAR, departure VARCHAR)"}, {"answer": "SELECT COUNT(train_no) FROM table_27011761_2 WHERE arrival = \"11:00\"", "question": "How many trains arrive at 11:00?", "context": "CREATE TABLE table_27011761_2 (train_no VARCHAR, arrival VARCHAR)"}, {"answer": "SELECT no_party_preference FROM table_27003186_3 WHERE city = \"Murrieta\"", "question": "What is the no party preference when the city is murrieta?", "context": "CREATE TABLE table_27003186_3 (no_party_preference VARCHAR, city VARCHAR)"}, {"answer": "SELECT no_party_preference FROM table_27003186_3 WHERE other = \"10.1%\"", "question": "What is the no party preference when other is 10.1%?", "context": "CREATE TABLE table_27003186_3 (no_party_preference VARCHAR, other VARCHAR)"}, {"answer": "SELECT no_party_preference FROM table_27003186_3 WHERE republican = \"45.3%\"", "question": "What is the no party preference when republican is 45.3%?", "context": "CREATE TABLE table_27003186_3 (no_party_preference VARCHAR, republican VARCHAR)"}, {"answer": "SELECT other FROM table_27003186_3 WHERE no_party_preference = \"19.1%\"", "question": "What is other when no party preference is 19.1%?", "context": "CREATE TABLE table_27003186_3 (other VARCHAR, no_party_preference VARCHAR)"}, {"answer": "SELECT other FROM table_27003186_3 WHERE registered_voters = \"50.7%\"", "question": "What is other when registered voters is 50.7%?", "context": "CREATE TABLE table_27003186_3 (other VARCHAR, registered_voters VARCHAR)"}, {"answer": "SELECT district FROM table_27021001_1 WHERE incumbent = \"Charlie Norwood\"", "question": "What is the district with the incumbent Charlie Norwood?", "context": "CREATE TABLE table_27021001_1 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT elected FROM table_27021001_1 WHERE incumbent = \"Cynthia McKinney\"", "question": "What is the year elected for incumbent Cynthia Mckinney?", "context": "CREATE TABLE table_27021001_1 (elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(incumbent) FROM table_27021001_1 WHERE result = \"Sanford Bishop (D) 57% Joseph McCormick (R) 43%\"", "question": "How many incumbents were the result of sanford bishop (d) 57% joseph mccormick (r) 43%?", "context": "CREATE TABLE table_27021001_1 (incumbent VARCHAR, result VARCHAR)"}, {"answer": "SELECT status FROM table_27021001_1 WHERE district = \"Georgia's 10th\"", "question": "What is the status for district georgia's 10th?", "context": "CREATE TABLE table_27021001_1 (status VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_27021001_1 WHERE district = \"Georgia's 1st\"", "question": "What is the result of districk georgia's 1st?", "context": "CREATE TABLE table_27021001_1 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_27021001_1 WHERE result = \"Mac Collins (R) unopposed\"", "question": "What is the district with the result mac collins (r) unopposed?", "context": "CREATE TABLE table_27021001_1 (district VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_2701851_3 WHERE production_code = \"201a\"", "question": "how many times is the production code is 201a?", "context": "CREATE TABLE table_2701851_3 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(overall_rank) FROM table_2701625_1 WHERE country = \"Czech Republic\"", "question": "Name the most overall rank for czech republic", "context": "CREATE TABLE table_2701625_1 (overall_rank INTEGER, country VARCHAR)"}, {"answer": "SELECT COUNT(male_rank) FROM table_2701625_1 WHERE country = \"Fiji\"", "question": "Name the total number of male rank for fiji", "context": "CREATE TABLE table_2701625_1 (male_rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(female_life_expectancy) FROM table_2701625_1 WHERE country = \"Djibouti\"", "question": "Name the most female life expectancy for djibouti", "context": "CREATE TABLE table_2701625_1 (female_life_expectancy INTEGER, country VARCHAR)"}, {"answer": "SELECT MAX(female_life_expectancy) FROM table_2701625_1 WHERE overall_rank = 61", "question": "Name the most female life expectancy for overall rank of 61", "context": "CREATE TABLE table_2701625_1 (female_life_expectancy INTEGER, overall_rank VARCHAR)"}, {"answer": "SELECT MAX(male_life_expectancy) FROM table_2701625_1 WHERE country = \"Pakistan\"", "question": "Name the most male life expectancy for pakistan", "context": "CREATE TABLE table_2701625_1 (male_life_expectancy INTEGER, country VARCHAR)"}, {"answer": "SELECT title FROM table_2701851_2 WHERE no_in_series = \"10a\"", "question": "What is the name of episode # 10a?", "context": "CREATE TABLE table_2701851_2 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT title FROM table_2701851_2 WHERE written_by = \"Michael Price\"", "question": "What is the name of the episode written by Michael Price?", "context": "CREATE TABLE table_2701851_2 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_2701851_5 WHERE production_code = \"404a\"", "question": "What was the title for the episode with the production code 404a?", "context": "CREATE TABLE table_2701851_5 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT production_code FROM table_2701851_5 WHERE written_by = \"Kat Likkel & Denise Downer\"", "question": "What is the production code for the episode written by Kat Likkel & Denise Downer?", "context": "CREATE TABLE table_2701851_5 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2701851_5 WHERE no_in_season = \"10a\"", "question": "Who was the director for the Episode number in season 10a?", "context": "CREATE TABLE table_2701851_5 (directed_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT written_by FROM table_2701851_5 WHERE no_in_series = \"46b\"", "question": "Who wrote the episode in the series 46b?", "context": "CREATE TABLE table_2701851_5 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_2701851_5 WHERE no_in_series = \"46b\"", "question": "How many production codes did the episode number in series 46b have?", "context": "CREATE TABLE table_2701851_5 (production_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_27047554_1 WHERE us_viewers__in_millions_ = \"2.48\"", "question": "How many directors directed an episode that reached 2.48 million viewers?", "context": "CREATE TABLE table_27047554_1 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT delegate FROM table_27050732_7 WHERE district = \"41\"", "question": " Who represents district 41? ", "context": "CREATE TABLE table_27050732_7 (delegate VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_27050336_7 WHERE delegate = \"McDonough, Patrick L. Pat McDonough\"", "question": "For delegate is mcdonough, patrick l. pat mcdonough, specify all the district.", "context": "CREATE TABLE table_27050336_7 (district VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT delegate FROM table_27050336_7 WHERE committee = \"Environmental Matters\" AND district = \"36\"", "question": "where committee is environmental matters and district is 36 please specify all the delegate name", "context": "CREATE TABLE table_27050336_7 (delegate VARCHAR, committee VARCHAR, district VARCHAR)"}, {"answer": "SELECT delegate FROM table_27050336_7 WHERE committee = \"Judiciary\" AND party = \"Democratic\" AND counties_represented = \"Montgomery\"", "question": "For democratic party, countries represented is montgomery and where committee is judiciary mention all the delegate name.", "context": "CREATE TABLE table_27050336_7 (delegate VARCHAR, counties_represented VARCHAR, committee VARCHAR, party VARCHAR)"}, {"answer": "SELECT party FROM table_27050336_7 WHERE delegate = \"Feldman, Brian J. Brian J. Feldman\"", "question": "Where delegate is feldman, brian j. brian j. feldman, please specify all the party", "context": "CREATE TABLE table_27050336_7 (party VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT party FROM table_27050336_7 WHERE delegate = \"Gaines, Tawanna P. Tawanna Gaines\"", "question": "For delegate is gaines, tawanna p. tawanna gaines, please specify all the party.", "context": "CREATE TABLE table_27050336_7 (party VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT height FROM table_27067379_1 WHERE number_of_floors = 70", "question": "If the number of floors is 70, what is the height?", "context": "CREATE TABLE table_27067379_1 (height VARCHAR, number_of_floors VARCHAR)"}, {"answer": "SELECT MIN(number_of_floors) FROM table_27067379_1 WHERE completion = 2010", "question": "if the completed is 2010, what is the number of floors?", "context": "CREATE TABLE table_27067379_1 (number_of_floors INTEGER, completion VARCHAR)"}, {"answer": "SELECT height FROM table_27067379_1 WHERE building = \"Costanera Center Torre 1\"", "question": "If the building is Costanera Center Torre 1, what is the height?", "context": "CREATE TABLE table_27067379_1 (height VARCHAR, building VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_27067379_1 WHERE building = \"Costanera Center Torre 1\"", "question": "How many positions does building Costanera Center Torre 1 have?", "context": "CREATE TABLE table_27067379_1 (position VARCHAR, building VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_27057070_3 WHERE team = \"Simurq PFC\"", "question": "Who is the outgoing manager when the team is simurq pfc?", "context": "CREATE TABLE table_27057070_3 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(date_of_appointment) FROM table_27057070_3 WHERE team = \"Khazar Lankaran\"", "question": "How many date of appointment entries are there when the team is khazar lankaran?", "context": "CREATE TABLE table_27057070_3 (date_of_appointment VARCHAR, team VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_27057070_3 WHERE replaced_by = \"Bahman Hasanov\"", "question": "What is the manner of departure when the replaced by is bahman hasanov?", "context": "CREATE TABLE table_27057070_3 (manner_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT overall FROM table_27069503_2 WHERE season = \"2003-04\"", "question": "What was the overall record for the Pandas in the 2003-04 season? ", "context": "CREATE TABLE table_27069503_2 (overall VARCHAR, season VARCHAR)"}, {"answer": "SELECT conf_record FROM table_27069503_2 WHERE overall = \"33-4-1\"", "question": "What was the conference record in the season where the Pandas had an overall record of 33-4-1?", "context": "CREATE TABLE table_27069503_2 (conf_record VARCHAR, overall VARCHAR)"}, {"answer": "SELECT coach FROM table_27069503_2 WHERE overall = \"20-6-2\"", "question": "Who was the coach of the Pandas when their overall record was 20-6-2?", "context": "CREATE TABLE table_27069503_2 (coach VARCHAR, overall VARCHAR)"}, {"answer": "SELECT conf_record FROM table_27069503_2 WHERE standings = \"First\" AND season = \"2003-04\"", "question": "What was the conference record for the Pandas when they were first in the standings in the 2003-04 season? ", "context": "CREATE TABLE table_27069503_2 (conf_record VARCHAR, standings VARCHAR, season VARCHAR)"}, {"answer": "SELECT overall FROM table_27069503_2 WHERE conf_record = \"4-1-1\"", "question": "What was the overall record for the Pandas when their conference record was 4-1-1? ", "context": "CREATE TABLE table_27069503_2 (overall VARCHAR, conf_record VARCHAR)"}, {"answer": "SELECT season FROM table_27069503_2 WHERE conf_record = \"15-1-1\"", "question": "In what season was the conference record for the Pandas 15-1-1? ", "context": "CREATE TABLE table_27069503_2 (season VARCHAR, conf_record VARCHAR)"}, {"answer": "SELECT COUNT(original_artist) FROM table_27075510_1 WHERE week__number = \"Audition\"", "question": "how many times is the week # is audition?", "context": "CREATE TABLE table_27075510_1 (original_artist VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_27081956_1 WHERE series_no = 14", "question": "How many episodes are numbered 14 in the series?", "context": "CREATE TABLE table_27081956_1 (episode VARCHAR, series_no VARCHAR)"}, {"answer": "SELECT format FROM table_2709_4 WHERE frequency = \"105.5 FM\"", "question": "What is the format of 105.5 fm?", "context": "CREATE TABLE table_2709_4 (format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT target_city__market FROM table_2709_4 WHERE call_sign = \"KLRJ\"", "question": "What is the market for KLRJ?", "context": "CREATE TABLE table_2709_4 (target_city__market VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT format FROM table_2709_4 WHERE owner = \"Dakota Broadcasting\"", "question": "What is the format for the station owned by Dakota Broadcasting?", "context": "CREATE TABLE table_2709_4 (format VARCHAR, owner VARCHAR)"}, {"answer": "SELECT team FROM table_27091128_2 WHERE replaced_by = \"Ercan Ertem\u00e7\u00f6z\"", "question": "What team's manager was replaced by Ercan Ertem\u00e7\u00f6z?", "context": "CREATE TABLE table_27091128_2 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_27091128_2 WHERE outgoing_manager = \"Kadir \u00d6zcan\"", "question": "What was the date of appointment for the manager replacing Kadir \u00d6zcan?", "context": "CREATE TABLE table_27091128_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_27091128_2 WHERE date_of_appointment = \"08.06.2010\"", "question": "Which manager was appointed on 08.06.2010?", "context": "CREATE TABLE table_27091128_2 (replaced_by VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_27091128_2 WHERE team = \"Altay\"", "question": "Who replaced the previous manager of Altay?", "context": "CREATE TABLE table_27091128_2 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_27091128_2 WHERE replaced_by = \"Erg\u00fcn Penbe\"", "question": "What was date of appointment for Erg\u00fcn Penbe? ", "context": "CREATE TABLE table_27091128_2 (date_of_appointment VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT MIN(overall_total) FROM table_27094070_4 WHERE team = \"Omaha Nighthawks\"", "question": "What is the overall total for the Omaha Nighthawks?", "context": "CREATE TABLE table_27094070_4 (overall_total INTEGER, team VARCHAR)"}, {"answer": "SELECT team FROM table_27094070_4 WHERE home_avg = 18125", "question": "Which team has the home average of 18125?", "context": "CREATE TABLE table_27094070_4 (team VARCHAR, home_avg VARCHAR)"}, {"answer": "SELECT MAX(home_total) FROM table_27094070_4", "question": "What was the highest home total?", "context": "CREATE TABLE table_27094070_4 (home_total INTEGER)"}, {"answer": "SELECT COUNT(overall_gms) FROM table_27094070_4 WHERE overall_avg = 12796", "question": "How many games had an average of 12796?", "context": "CREATE TABLE table_27094070_4 (overall_gms VARCHAR, overall_avg VARCHAR)"}, {"answer": "SELECT stage AS winner FROM table_27112708_2 WHERE team_classification = \"LeTua Cycling Team\" AND stage = 2", "question": "Who was the stage winner of the letua cycling team on stage 2? ", "context": "CREATE TABLE table_27112708_2 (stage VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_27112708_2 WHERE stage = 3", "question": "Which mountains classification is listed under stage 3?", "context": "CREATE TABLE table_27112708_2 (mountains_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT general_classification FROM table_27112708_2 WHERE stage = 4", "question": "Who is listed under general classification on stage 4?", "context": "CREATE TABLE table_27112708_2 (general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT written_by FROM table_27117365_1 WHERE us_viewers__million_ = \"7.70\"", "question": "Who wrote the episodes with 7.70 u.s. viewers (million) ?", "context": "CREATE TABLE table_27117365_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27117365_1 WHERE us_viewers__million_ = \"5.85\"", "question": "What original air date has 5.85 u.s. viewers (million)?", "context": "CREATE TABLE table_27117365_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_27117365_1 WHERE no_in_season = 10", "question": "What's the title in the number 10 in the season?", "context": "CREATE TABLE table_27117365_1 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_27133147_3 WHERE manner_of_departure = \"Resigned\" AND position_in_table = \"10th\"", "question": "If the position in table is 10th, and the manner of departure was resigned, what was the date of vacancy?", "context": "CREATE TABLE table_27133147_3 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_27133147_3 WHERE incoming_head_coach = \"Carlos Azenha\"", "question": "If the incoming head coach is Carlos Azenha, what is the date of vacancy?", "context": "CREATE TABLE table_27133147_3 (date_of_vacancy VARCHAR, incoming_head_coach VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_27133147_3 WHERE team = \"Uni\u00e3o de Leiria\"", "question": "If the team is uni\u00e3o de leiria, what is the date of appointment?", "context": "CREATE TABLE table_27133147_3 (date_of_appointment VARCHAR, team VARCHAR)"}, {"answer": "SELECT 2003 FROM table_27146868_1 WHERE 1999 = \"2.1\"", "question": "What is 2003 when 1999 is 2.1?", "context": "CREATE TABLE table_27146868_1 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_27146868_1 WHERE 2003 = \"5.6\"", "question": "What is 2010 when 2003 is 5.6?", "context": "CREATE TABLE table_27146868_1 (Id VARCHAR)"}, {"answer": "SELECT greek_national_account FROM table_27146868_1 WHERE 1997 = \"6.1\"", "question": "What is the greek national account when 1997 is 6.1?", "context": "CREATE TABLE table_27146868_1 (greek_national_account VARCHAR)"}, {"answer": "SELECT 2006 FROM table_27146868_1 WHERE 1997 = \"6.8\"", "question": "What is 2006 when 1997 is 6.8?", "context": "CREATE TABLE table_27146868_1 (Id VARCHAR)"}, {"answer": "SELECT 2002 FROM table_27146868_1 WHERE 2009 = \"54.0\"", "question": "What is 2002 when 2009 is 54.0?", "context": "CREATE TABLE table_27146868_1 (Id VARCHAR)"}, {"answer": "SELECT pro_team FROM table_27132791_3 WHERE position = \"DT\" AND nfl_team = \"Houston Oilers\"", "question": "If the NFL team is the Houston Oilers and the position is DT, who is the Pro team?", "context": "CREATE TABLE table_27132791_3 (pro_team VARCHAR, position VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_27132791_3 WHERE nfl_team = \"Washington Redskins\"", "question": "How many different players does the Washington Redskins have?", "context": "CREATE TABLE table_27132791_3 (player VARCHAR, nfl_team VARCHAR)"}, {"answer": "SELECT position FROM table_27132791_3 WHERE college = \"Vanderbilt\"", "question": "If the college is Vanderbilt, what is the position?", "context": "CREATE TABLE table_27132791_3 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_27132791_3 WHERE pro_team = \"Jacksonville Bulls\"", "question": "If the proteam is Jacksonville bulls, what is the position?", "context": "CREATE TABLE table_27132791_3 (position VARCHAR, pro_team VARCHAR)"}, {"answer": "SELECT position FROM table_27132791_3 WHERE college = \"SMU\"", "question": "If the college is SMU, what is the position?", "context": "CREATE TABLE table_27132791_3 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT written_by FROM table_27116696_1 WHERE production_code = \"3T7255\"", "question": "Who wrote the episode with the production code of 3t7255?", "context": "CREATE TABLE table_27116696_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_27116696_1 WHERE directed_by = \"Allison Liddi-Brown\"", "question": "How many U.S. viewers (million) watched the episode directed by Allison Liddi-Brown?", "context": "CREATE TABLE table_27116696_1 (us_viewers__million_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_27116696_1 WHERE written_by = \"Matthew Lau\"", "question": "What is the total number of production code listings of episodes written by Matthew Lau?", "context": "CREATE TABLE table_27116696_1 (production_code VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT total_prize_pool FROM table_2715355_1 WHERE location = \"New Orleans\"", "question": "What was the prize pool in New Orleans?", "context": "CREATE TABLE table_2715355_1 (total_prize_pool VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(winners) AS Prize FROM table_2715355_1 WHERE entrants = 696", "question": "How many prizes were available in the competition where 696 people entered?", "context": "CREATE TABLE table_2715355_1 (winners VARCHAR, entrants VARCHAR)"}, {"answer": "SELECT accession_number FROM table_27155678_2 WHERE genus_species = \"Rhodopseudomonas palustris\"", "question": "Name the accession number for  rhodopseudomonas palustris", "context": "CREATE TABLE table_27155678_2 (accession_number VARCHAR, genus_species VARCHAR)"}, {"answer": "SELECT genus_species FROM table_27155678_2 WHERE accession_number = \"BX897699.1\"", "question": "Name the genus/species of accession number bx897699.1", "context": "CREATE TABLE table_27155678_2 (genus_species VARCHAR, accession_number VARCHAR)"}, {"answer": "SELECT accession_number FROM table_27155678_2 WHERE sequence_similarity = 54", "question": "Name the accession number for sequence similarity being 54", "context": "CREATE TABLE table_27155678_2 (accession_number VARCHAR, sequence_similarity VARCHAR)"}, {"answer": "SELECT gene_name FROM table_27155678_2 WHERE genus_species = \"Methylobacterium nodulans\"", "question": "Name the gene name for methylobacterium nodulans", "context": "CREATE TABLE table_27155678_2 (gene_name VARCHAR, genus_species VARCHAR)"}, {"answer": "SELECT gene_name FROM table_27155678_2 WHERE accession_number = \"BX897700.1\"", "question": "Name the gene name for accession number bx897700.1", "context": "CREATE TABLE table_27155678_2 (gene_name VARCHAR, accession_number VARCHAR)"}, {"answer": "SELECT MIN(_percentage_funded) FROM table_27155990_1 WHERE closing_date = \"2012-05-18\"", "question": "What was the minimum % funded of the project that was closed on 2012-05-18?", "context": "CREATE TABLE table_27155990_1 (_percentage_funded INTEGER, closing_date VARCHAR)"}, {"answer": "SELECT MAX(total_usd) FROM table_27155990_1 WHERE creator = \"Pebble Technology\"", "question": "What was the maximum total USD collected by Pebble Technology?", "context": "CREATE TABLE table_27155990_1 (total_usd INTEGER, creator VARCHAR)"}, {"answer": "SELECT category FROM table_27155990_1 WHERE project_name = \"Mighty No. 9\"", "question": "What was the category of the project name Mighty No. 9?", "context": "CREATE TABLE table_27155990_1 (category VARCHAR, project_name VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_27155990_1 WHERE project_name = \"Pebble: E-Paper Watch for iPhone and Android\"", "question": "Project Name Pebble: E-Paper Watch for Iphone and Android was ranked how many times?", "context": "CREATE TABLE table_27155990_1 (rank VARCHAR, project_name VARCHAR)"}, {"answer": "SELECT league_apps FROM table_27170987_5 WHERE total_goals = 11", "question": "How many league apps did the player with 11 team goals have?", "context": "CREATE TABLE table_27170987_5 (league_apps VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT MIN(total_goals) FROM table_27170987_5 WHERE league_goals = 6", "question": "What is the lowest number of total goals for a player with 6 league goals?", "context": "CREATE TABLE table_27170987_5 (total_goals INTEGER, league_goals VARCHAR)"}, {"answer": "SELECT MIN(fa_cup_goals) FROM table_27170987_5", "question": "What is the lowest number of fa cup goals by a player?", "context": "CREATE TABLE table_27170987_5 (fa_cup_goals INTEGER)"}, {"answer": "SELECT written_by FROM table_27169029_1 WHERE original_air_date = \"September 26, 2010\"", "question": "Who wrote the episode that aired on September 26, 2010?", "context": "CREATE TABLE table_27169029_1 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT asia FROM table_27184837_1 WHERE programs = \"Radio Stations\"", "question": "How many radio stations were built in Asia?", "context": "CREATE TABLE table_27184837_1 (asia VARCHAR, programs VARCHAR)"}, {"answer": "SELECT COUNT(asia) FROM table_27184837_1 WHERE americas = 14", "question": "How many program data on Asia was written if the organization launched 14 programs iin the Americas?", "context": "CREATE TABLE table_27184837_1 (asia VARCHAR, americas VARCHAR)"}, {"answer": "SELECT COUNT(australasia) FROM table_27184837_1 WHERE americas = 115", "question": "How many times did Australasia received a program if the Americas received 115 program?", "context": "CREATE TABLE table_27184837_1 (australasia VARCHAR, americas VARCHAR)"}, {"answer": "SELECT episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series, _whereas_series_no_refers_to_the_episodes_number_in_this_particular_series FROM table_27208311_1 WHERE series_no = 3", "question": "What is every episode number for the series number 3?", "context": "CREATE TABLE table_27208311_1 (episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series VARCHAR, _whereas_series_no_refers_to_the_episodes_number_in_this_particular_series VARCHAR, series_no VARCHAR)"}, {"answer": "SELECT episode FROM table_27208311_1 WHERE writer = \"Barry Purchese\"", "question": "What is every episode with Barry Purchese as the writer?", "context": "CREATE TABLE table_27208311_1 (episode VARCHAR, writer VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_27208817_1 WHERE writer = \"Sam Snape\"", "question": "Name the number of episodes for sam snape", "context": "CREATE TABLE table_27208817_1 (episode VARCHAR, writer VARCHAR)"}, {"answer": "SELECT aspect_ratio FROM table_272313_1 WHERE vertical = 480 AND pixel_aspect_ratio = \"1:1\"", "question": "What was the aspect ratio if the vertical pixel is 480 and pixel aspect ratio is 1:1?", "context": "CREATE TABLE table_272313_1 (aspect_ratio VARCHAR, vertical VARCHAR, pixel_aspect_ratio VARCHAR)"}, {"answer": "SELECT MIN(vertical) FROM table_272313_1 WHERE aspect_ratio = \"16:9\" AND scanning = \"interlaced\"", "question": "What was the minimum vertical measurement if the aspect ratio is 16:9 and scanning is interlaced?", "context": "CREATE TABLE table_272313_1 (vertical INTEGER, aspect_ratio VARCHAR, scanning VARCHAR)"}, {"answer": "SELECT MAX(vertical) FROM table_272313_1 WHERE horizontal = 640", "question": "What was the maximum vertical measurement if the horizon measurement is 640?", "context": "CREATE TABLE table_272313_1 (vertical INTEGER, horizontal VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_27225944_3 WHERE manner_of_departure = \"Mutual consent\" AND position_in_table = \"16th\"", "question": "Name the outgoing manager for mutual consent and position 16th", "context": "CREATE TABLE table_27225944_3 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_27225944_3 WHERE team = \"Slaven Belupo\"", "question": "Name the replaced by for slaven belupo", "context": "CREATE TABLE table_27225944_3 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(outgoing_manager) FROM table_27225944_3 WHERE team = \"Rijeka\"", "question": "Name the number of outgoing manager for rijeka", "context": "CREATE TABLE table_27225944_3 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(horizontal) FROM table_272313_2 WHERE pixel_aspect_ratio = \"SMPTE 259M three quarters\"", "question": "Name the least horizontal for smpte 259m three quarters", "context": "CREATE TABLE table_272313_2 (horizontal INTEGER, pixel_aspect_ratio VARCHAR)"}, {"answer": "SELECT aspect_ratio FROM table_272313_2 WHERE pixel_aspect_ratio = \"SMPTE 259M\" AND scanning = \"interlaced\"", "question": "Name the aspect ratio for smpte 259m and interlaced scanning", "context": "CREATE TABLE table_272313_2 (aspect_ratio VARCHAR, pixel_aspect_ratio VARCHAR, scanning VARCHAR)"}, {"answer": "SELECT originalairdate FROM table_27218002_2 WHERE written_by = \"Fintan Ryan\"", "question": "What date did the episode that was written by Fintan Ryan originally air?", "context": "CREATE TABLE table_27218002_2 (originalairdate VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT originalairdate FROM table_27218002_2 WHERE ratings = \"1.37 Million\"", "question": "What date did the epiode that had 1.37 million as the rating originally air?", "context": "CREATE TABLE table_27218002_2 (originalairdate VARCHAR, ratings VARCHAR)"}, {"answer": "SELECT title FROM table_27250813_1 WHERE no_in_season = 16", "question": "What is the title of the episode no. 16 by season?", "context": "CREATE TABLE table_27250813_1 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_27250813_1 WHERE production_code = 12003", "question": "How many times did an episode with a production code of 12003 was aired?", "context": "CREATE TABLE table_27250813_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT color_analyst_s_ FROM table_2724704_5 WHERE studio_analyst_s_ = \"Terry Bowden\" AND tv_rating = \"17.2\"", "question": "Name the color analyst for terry bowden and 17.2", "context": "CREATE TABLE table_2724704_5 (color_analyst_s_ VARCHAR, studio_analyst_s_ VARCHAR, tv_rating VARCHAR)"}, {"answer": "SELECT COUNT(bowl) FROM table_2724704_5 WHERE studio_analyst_s_ = \"Lee Corso, Gene Chizik and Chip Kelly\"", "question": "Name the number of bowl for lee corso, gene chizik and chip kelly", "context": "CREATE TABLE table_2724704_5 (bowl VARCHAR, studio_analyst_s_ VARCHAR)"}, {"answer": "SELECT studio_analyst_s_ FROM table_2724704_5 WHERE network_s_ = \"ESPN\" AND sideline_reporter_s_ = \"Erin Andrews and Tom Rinaldi\"", "question": "Name the studio analysts for espn with erin andrews and tom rinaldi", "context": "CREATE TABLE table_2724704_5 (studio_analyst_s_ VARCHAR, network_s_ VARCHAR, sideline_reporter_s_ VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_27255755_1 WHERE us_viewers__millions_ = \"9.17\"", "question": "What is the highest series number with 9.17 million US viewers?", "context": "CREATE TABLE table_27255755_1 (no_in_series INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT podiums FROM table_2725949_6 WHERE starts = 22", "question": "name the podiums for start of 22", "context": "CREATE TABLE table_2725949_6 (podiums VARCHAR, starts VARCHAR)"}, {"answer": "SELECT COUNT(poles) FROM table_2725949_6 WHERE fastest_laps = 6", "question": "Name the number of poles for fastest laps being 6", "context": "CREATE TABLE table_2725949_6 (poles VARCHAR, fastest_laps VARCHAR)"}, {"answer": "SELECT MIN(podiums) FROM table_2725949_6 WHERE season = 2009", "question": "Name the least podiums for 2009", "context": "CREATE TABLE table_2725949_6 (podiums INTEGER, season VARCHAR)"}, {"answer": "SELECT starts FROM table_2725949_6 WHERE season = 2009", "question": "Name the starts for 2009", "context": "CREATE TABLE table_2725949_6 (starts VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(starts) FROM table_2725949_6 WHERE wins = 6", "question": "Name the most starts for 6 wins", "context": "CREATE TABLE table_2725949_6 (starts INTEGER, wins VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_27268238_5 WHERE wickets = 16", "question": "How many matches were wickets 16?", "context": "CREATE TABLE table_27268238_5 (matches VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT MIN(wickets) FROM table_27268238_5", "question": "What is the lowest wickets?", "context": "CREATE TABLE table_27268238_5 (wickets INTEGER)"}, {"answer": "SELECT 4 AS wi FROM table_27268238_5 WHERE economy = \"7.82\"", "question": "What is the 4wi when the economy is 7.82?", "context": "CREATE TABLE table_27268238_5 (economy VARCHAR)"}, {"answer": "SELECT player FROM table_27268238_5 WHERE bbi = \"5/27\"", "question": "Who is the player when the bbi is 5/27?", "context": "CREATE TABLE table_27268238_5 (player VARCHAR, bbi VARCHAR)"}, {"answer": "SELECT team FROM table_27268238_5 WHERE economy = \"5.73\"", "question": "What is the team when the economy is 5.73?", "context": "CREATE TABLE table_27268238_5 (team VARCHAR, economy VARCHAR)"}, {"answer": "SELECT COUNT(valid_votes) FROM table_27274222_2 WHERE province = \"Denizli\"", "question": "When Denizli was the province, what was the total number of valid votes?", "context": "CREATE TABLE table_27274222_2 (valid_votes VARCHAR, province VARCHAR)"}, {"answer": "SELECT province FROM table_27274222_2 WHERE turnout___percentage_ = \"54.09\"", "question": "What province had a turnout of 54.09%?", "context": "CREATE TABLE table_27274222_2 (province VARCHAR, turnout___percentage_ VARCHAR)"}, {"answer": "SELECT model_number FROM table_27277284_28 WHERE order_part_number = \"TMRM75DAM22GG\"", "question": "What is the model number for the order part numbered tmrm75dam22gg?", "context": "CREATE TABLE table_27277284_28 (model_number VARCHAR, order_part_number VARCHAR)"}, {"answer": "SELECT order_part_number FROM table_27277284_28 WHERE mult_1 = \"10x\"", "question": "What is the oder part number for the model with 10x mult. 1?", "context": "CREATE TABLE table_27277284_28 (order_part_number VARCHAR, mult_1 VARCHAR)"}, {"answer": "SELECT ht FROM table_27277284_28 WHERE mult_1 = \"10x\"", "question": "How much ht does the model with 10x mult. 1 have?", "context": "CREATE TABLE table_27277284_28 (ht VARCHAR, mult_1 VARCHAR)"}, {"answer": "SELECT ht FROM table_27277284_28 WHERE release_date = \"June 4, 2008\"", "question": "What's the ht for the model released on June 4, 2008?", "context": "CREATE TABLE table_27277284_28 (ht VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT COUNT(poles) FROM table_27279050_1 WHERE points = \"0\" AND nation = \"Mexico\"", "question": "How many pole position achieved 0 points from Mexico?", "context": "CREATE TABLE table_27279050_1 (poles VARCHAR, points VARCHAR, nation VARCHAR)"}, {"answer": "SELECT v_core FROM table_27277284_8 WHERE mult_1 = \"11x\"", "question": "Name the vcore for multi 11x", "context": "CREATE TABLE table_27277284_8 (v_core VARCHAR, mult_1 VARCHAR)"}, {"answer": "SELECT COUNT(v_core) FROM table_27277284_8 WHERE model_number = \"Mobile Athlon 64 3000+\"", "question": "Name the number of v core for model number mobile athlon 64 3000+", "context": "CREATE TABLE table_27277284_8 (v_core VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT COUNT(points_for) FROM table_27293285_4 WHERE \"played\" = \"played\"", "question": "Name the total number of points for for played", "context": "CREATE TABLE table_27293285_4 (points_for VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_27293285_4 WHERE tries_for = \"46\"", "question": "Name the total number of points for 46 tries for", "context": "CREATE TABLE table_27293285_4 (points VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT COUNT(club) FROM table_27293285_4 WHERE lost = \"16\"", "question": "Name the total number of club for lost being 16", "context": "CREATE TABLE table_27293285_4 (club VARCHAR, lost VARCHAR)"}, {"answer": "SELECT drawn FROM table_27293285_4 WHERE lost = \"5\" AND tries_for = \"89\"", "question": "Name the drawn for lost being 5 and tries for 89", "context": "CREATE TABLE table_27293285_4 (drawn VARCHAR, lost VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT won FROM table_27293285_4 WHERE played = \"22\" AND lost = \"15\" AND points_against = \"511\"", "question": "Name the won for played being 22 and points against 511 and lost being 15", "context": "CREATE TABLE table_27293285_4 (won VARCHAR, points_against VARCHAR, played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT aorist FROM table_27298240_26 WHERE present = \"bude\"", "question": "What aorist has bude in present tense?", "context": "CREATE TABLE table_27298240_26 (aorist VARCHAR, present VARCHAR)"}, {"answer": "SELECT aorist FROM table_27298240_26 WHERE imperfect = \"bijasmo / bejasmo / besmo\"", "question": "Which aorist has imperfect form of bijasmo / bejasmo / besmo?", "context": "CREATE TABLE table_27298240_26 (aorist VARCHAR, imperfect VARCHAR)"}, {"answer": "SELECT pluperfect FROM table_27298240_26 WHERE perfect = \"si bio/la; bio/la si\"", "question": "What is the pluperfect for the perfect si bio/la; bio/la si?", "context": "CREATE TABLE table_27298240_26 (pluperfect VARCHAR, perfect VARCHAR)"}, {"answer": "SELECT event FROM table_27294107_11 WHERE round_of_32 = \"Su\u00e1rez ( TRI ) W 16\u20136\"", "question": "What was the event when su\u00e1rez ( tri ) w 16\u20136 was round of 32?", "context": "CREATE TABLE table_27294107_11 (event VARCHAR, round_of_32 VARCHAR)"}, {"answer": "SELECT semifinals FROM table_27294107_11 WHERE event = \"Light flyweight\"", "question": "What is the semifinals for the light flyweight event?", "context": "CREATE TABLE table_27294107_11 (semifinals VARCHAR, event VARCHAR)"}, {"answer": "SELECT COUNT(semifinals) FROM table_27294107_11 WHERE athlete = \"Ferhat Pehlivan\"", "question": "How many semifinals did ferhat pehlivan attend?", "context": "CREATE TABLE table_27294107_11 (semifinals VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT round_of_32 FROM table_27294107_11 WHERE round_of_16 = \"Drenovak ( SRB ) W 20\u201311\"", "question": "What is the round of 32 if the round of 16 is drenovak ( srb ) w 20\u201311?", "context": "CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, round_of_16 VARCHAR)"}, {"answer": "SELECT round_of_32 FROM table_27294107_11 WHERE athlete = \"Yakup \u015eener\"", "question": "When yakup \u015fener is the athlete what is the round of 32?", "context": "CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT round_of_32 FROM table_27294107_11 WHERE athlete = \"Fatih Kele\u015f\"", "question": "What is the round of 32 for fatih kele\u015f?", "context": "CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT 1 AS st FROM table_27298240_28 WHERE present = \"mogu\"", "question": "What is in 1st place when present is mogu?", "context": "CREATE TABLE table_27298240_28 (present VARCHAR)"}, {"answer": "SELECT 2 AS nd FROM table_27298240_28 WHERE pronoun = \"vi (you pl.)\"", "question": "what is 2nd when the pronoun is vi (you pl.)?", "context": "CREATE TABLE table_27298240_28 (pronoun VARCHAR)"}, {"answer": "SELECT r FROM table WHERE total = 1 AND position = \"FW\"", "question": "What is the R when the total is 1 and the position is fw?", "context": "CREATE TABLE table (r VARCHAR, total VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(league_cup) FROM table", "question": "What is the lowest league cup?", "context": "CREATE TABLE table (league_cup INTEGER)"}, {"answer": "SELECT position FROM table WHERE player = Becchio", "question": "What is the position for the player becchio?", "context": "CREATE TABLE table (position VARCHAR, player VARCHAR, Becchio VARCHAR)"}, {"answer": "SELECT COUNT(league_cup) FROM table WHERE r = 4", "question": "How many times was the r 4?", "context": "CREATE TABLE table (league_cup VARCHAR, r VARCHAR)"}, {"answer": "SELECT parent FROM table_2731431_1 WHERE peak = \"Cima Tosa\"", "question": "What is the parent for peak cima tosa?", "context": "CREATE TABLE table_2731431_1 (parent VARCHAR, peak VARCHAR)"}, {"answer": "SELECT MIN(elevation__m_) FROM table_2731431_1 WHERE location = \"Austria\" AND peak = \"Wildspitze\"", "question": "What is the elevation for the peak wildspitze in Austria?", "context": "CREATE TABLE table_2731431_1 (elevation__m_ INTEGER, location VARCHAR, peak VARCHAR)"}, {"answer": "SELECT MAX(elevation__m_) FROM table_2731431_1 WHERE no = 39", "question": "What is the elevation for number 39?", "context": "CREATE TABLE table_2731431_1 (elevation__m_ INTEGER, no VARCHAR)"}, {"answer": "SELECT col_location FROM table_2731431_1 WHERE location = \"France / Italy\"", "question": "What is the col location for the location of france / italy?", "context": "CREATE TABLE table_2731431_1 (col_location VARCHAR, location VARCHAR)"}, {"answer": "SELECT col_location FROM table_2731431_1 WHERE col_height__m_ = 1107", "question": "What is the col location with a col height (m) of 1107?", "context": "CREATE TABLE table_2731431_1 (col_location VARCHAR, col_height__m_ VARCHAR)"}, {"answer": "SELECT location FROM table_2731431_1 WHERE elevation__m_ = 3798", "question": "Which location has an elevation of 3798?", "context": "CREATE TABLE table_2731431_1 (location VARCHAR, elevation__m_ VARCHAR)"}, {"answer": "SELECT title FROM table_27303975_3 WHERE catalog_number = \"CAL01 / 0091037137319\"", "question": "What is the title when the catalog number is cal01 / 0091037137319?", "context": "CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT COUNT(studio) FROM table_27303975_3 WHERE title = \"AM/PM Callanetics\"", "question": "How many times is the title am/pm callanetics?", "context": "CREATE TABLE table_27303975_3 (studio VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = \"CAL04 / 0091037553546\"", "question": "How many times was the catalog number cal04 / 0091037553546?", "context": "CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = \"CAL04 / 0091037553546\"", "question": "how many times was the catalog number cal04 / 0091037553546?", "context": "CREATE TABLE table_27303975_3 (copyright_information VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = \"CAL01 / 0091037137319\"", "question": "how many times was the catalog number cal01 / 0091037137319?", "context": "CREATE TABLE table_27303975_3 (copyright_information VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = \"CAL05 / 0091037137357\"", "question": "how many times was the catalog number cal05 / 0091037137357?", "context": "CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27332038_1 WHERE written_by = \"Elaine Ko\"", "question": "who directed the episode that elaine ko wrote?", "context": "CREATE TABLE table_27332038_1 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27332038_1 WHERE production_code = \"2ARG01\"", "question": "when was the episode with production code \"2arg01\" originally aired?", "context": "CREATE TABLE table_27332038_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_27332038_1 WHERE production_code = \"2ARG09\"", "question": "what is the title of the episode with production code \"2arg09\"?", "context": "CREATE TABLE table_27332038_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27332038_1 WHERE production_code = \"2ARG24\"", "question": "when was the episode with production code \"2arg24\" originally aired?", "context": "CREATE TABLE table_27332038_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT episode FROM table_27319183_7 WHERE share___percentage_ = \"41.5\"", "question": "What episode had a share percentage of 41.5%?", "context": "CREATE TABLE table_27319183_7 (episode VARCHAR, share___percentage_ VARCHAR)"}, {"answer": "SELECT date FROM table_27319183_7 WHERE weekly_rank = 12", "question": "What date was the show's weekly ranking 12?", "context": "CREATE TABLE table_27319183_7 (date VARCHAR, weekly_rank VARCHAR)"}, {"answer": "SELECT total_itv_viewers__millions_ FROM table_27319183_7 WHERE official_itv_rating__millions_ = \"10.24\"", "question": "How many total itv viewers were there for the episode with official itv ratings of 10.24 million?", "context": "CREATE TABLE table_27319183_7 (total_itv_viewers__millions_ VARCHAR, official_itv_rating__millions_ VARCHAR)"}, {"answer": "SELECT total_itv_viewers__millions_ FROM table_27319183_7 WHERE official_itv_hd_rating__millions_ = \"1.12\"", "question": "How many total itv viewers were there for the episode with official itv hd ratings of 1.12 million?", "context": "CREATE TABLE table_27319183_7 (total_itv_viewers__millions_ VARCHAR, official_itv_hd_rating__millions_ VARCHAR)"}, {"answer": "SELECT official_itv_rating__millions_ FROM table_27319183_7 WHERE total_itv_viewers__millions_ = \"8.53\"", "question": "What were the official itv ratings in millions for the episode with a total of 8.53 million itv viewers", "context": "CREATE TABLE table_27319183_7 (official_itv_rating__millions_ VARCHAR, total_itv_viewers__millions_ VARCHAR)"}, {"answer": "SELECT official_itv_rating__millions_ FROM table_27319183_7 WHERE episode = \"Semi-final 5\"", "question": "What were the official itv ratings in millions for semi-final 5?", "context": "CREATE TABLE table_27319183_7 (official_itv_rating__millions_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT club FROM table_27374004_2 WHERE chairman = \"Roger Lambrecht\"", "question": "What is the club when the chairman is roger lambrecht?", "context": "CREATE TABLE table_27374004_2 (club VARCHAR, chairman VARCHAR)"}, {"answer": "SELECT team_captain FROM table_27374004_2 WHERE shirt_sponsor = \"Quick\"", "question": "What is the team captain when the shirt sponser is quick?", "context": "CREATE TABLE table_27374004_2 (team_captain VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT chairman FROM table_27374004_2 WHERE current_manager = \"Bob Peeters\"", "question": "Who is the chairman when the current manager is bob peeters?", "context": "CREATE TABLE table_27374004_2 (chairman VARCHAR, current_manager VARCHAR)"}, {"answer": "SELECT club FROM table_27374004_2 WHERE shirt_sponsor = \"e-lotto.be\"", "question": "What is the club when the shirt sponsor is e-lotto.be?", "context": "CREATE TABLE table_27374004_2 (club VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT team_captain FROM table_27374004_2 WHERE club = \"K.F.C. Germinal Beerschot\"", "question": "Who is the team captain when the club is k.f.c. germinal beerschot?", "context": "CREATE TABLE table_27374004_2 (team_captain VARCHAR, club VARCHAR)"}, {"answer": "SELECT varsity_name FROM table_27369069_4 WHERE university = \"McGill university\"", "question": "What is the varsity name of the university of mcgill university?", "context": "CREATE TABLE table_27369069_4 (varsity_name VARCHAR, university VARCHAR)"}, {"answer": "SELECT soccer_stadium FROM table_27369069_4 WHERE varsity_name = \"Citadins\"", "question": "What is the soccer stadium with the varsity name is citadins?", "context": "CREATE TABLE table_27369069_4 (soccer_stadium VARCHAR, varsity_name VARCHAR)"}, {"answer": "SELECT province FROM table_27369069_4 WHERE soccer_stadium = \"terrain #2 of Complexe sportif Claude-Robillard\"", "question": "What is the province where the soccer statium is terrain #2 of complexe sportif claude-robillard?", "context": "CREATE TABLE table_27369069_4 (province VARCHAR, soccer_stadium VARCHAR)"}, {"answer": "SELECT province FROM table_27369069_4 WHERE stadium_capacity = 5100", "question": "What is the province for with the stadium capacity of 5100?", "context": "CREATE TABLE table_27369069_4 (province VARCHAR, stadium_capacity VARCHAR)"}, {"answer": "SELECT university FROM table_27369069_4 WHERE soccer_stadium = \"terrain #2 of Complexe sportif Claude-Robillard\"", "question": "What is the university where the soccer stadium is terrain #2 of complexe sportif claude-robillard?", "context": "CREATE TABLE table_27369069_4 (university VARCHAR, soccer_stadium VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_27374004_4 WHERE replaced_by = \"Hugo Broos\"", "question": "When was the date of appointment by Hugo Broos?", "context": "CREATE TABLE table_27374004_4 (date_of_appointment VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT COUNT(date_of_vacancy) FROM table_27374004_4 WHERE outgoing_manager = \"Bart De Roover\"", "question": "How many times did outgoing manager Bart de Roover vacated a position?", "context": "CREATE TABLE table_27374004_4 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_27374004_4 WHERE manner_of_departure = \"Sacked\" AND position_in_table = \"15th\"", "question": "Who was the outgoing manager of the team in 15th position that was sacked?", "context": "CREATE TABLE table_27374004_4 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_27374004_4 WHERE outgoing_manager = \"Danny Ost\"", "question": "What was the team's position in table when Danny OST was the outgoing manager?", "context": "CREATE TABLE table_27374004_4 (position_in_table VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_27374740_2 WHERE viewers__m_ = \"8.01\"", "question": "how many maximum # when viewers (m) is 8.01", "context": "CREATE TABLE table_27374740_2 (_number INTEGER, viewers__m_ VARCHAR)"}, {"answer": "SELECT COUNT(outgoing_manager) FROM table_27374004_3 WHERE replaced_by = \"Bob Peeters\"", "question": "How many outgoing managers were replaced by Bob Peeters?", "context": "CREATE TABLE table_27374004_3 (outgoing_manager VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_27374004_3 WHERE outgoing_manager = \"Michel Preud'homme\"", "question": "Who replaced Michel Preud'homme?", "context": "CREATE TABLE table_27374004_3 (replaced_by VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_27374004_3 WHERE team = \"Cercle Brugge\"", "question": "What was the manner of departure for the manager of Cercle Brugge?", "context": "CREATE TABLE table_27374004_3 (manner_of_departure VARCHAR, team VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_27374004_3 WHERE team = \"Charleroi\"", "question": "Who was the outgoing manager of Charleroi?", "context": "CREATE TABLE table_27374004_3 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT shirt_sponsor FROM table_27383390_2 WHERE head_coach = \"Samad Marfavi\"", "question": "What sponsor has the head coach Samad Marfavi?", "context": "CREATE TABLE table_27383390_2 (shirt_sponsor VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT team FROM table_27383390_2 WHERE head_coach = \"Ali Daei\"", "question": "Which team has Ali Daei as head coach?", "context": "CREATE TABLE table_27383390_2 (team VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT kit_maker FROM table_27383390_2 WHERE team = \"Foolad\"", "question": "What is the kit maker for team foolad?", "context": "CREATE TABLE table_27383390_2 (kit_maker VARCHAR, team VARCHAR)"}, {"answer": "SELECT outgoing_head_coach FROM table_27383390_4 WHERE incoming_head_coach = \"Abdollah Veysi\"", "question": "Who is the outgoing head coach when the incoming head coach is abdollah veysi?", "context": "CREATE TABLE table_27383390_4 (outgoing_head_coach VARCHAR, incoming_head_coach VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_27383390_4 WHERE position_in_table = 16", "question": "When is the date of appointment when the position in table is 16?", "context": "CREATE TABLE table_27383390_4 (date_of_appointment VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_27383390_4 WHERE incoming_head_coach = \"Abdollah Veysi\"", "question": "How many times is the incoming head coach abdollah veysi?", "context": "CREATE TABLE table_27383390_4 (team VARCHAR, incoming_head_coach VARCHAR)"}, {"answer": "SELECT team FROM table_27383390_4 WHERE date_of_vacancy = \"8 Dec 2010\"", "question": "What is the team with the date of vacancy 8 dec 2010?", "context": "CREATE TABLE table_27383390_4 (team VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_27383390_4 WHERE incoming_head_coach = \"Mohammad Khakpour\"", "question": "What is the manner of departure when the incoming head coach is mohammad khakpour?", "context": "CREATE TABLE table_27383390_4 (manner_of_departure VARCHAR, incoming_head_coach VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27389024_2 WHERE written_by = \"Rama Stagner\"", "question": "What is the original air date of the episode that was written by Rama Stagner? ", "context": "CREATE TABLE table_27389024_2 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(pos) FROM table_27396005_2 WHERE car = 19", "question": "For the #19 car, what was their finish position?", "context": "CREATE TABLE table_27396005_2 (pos INTEGER, car VARCHAR)"}, {"answer": "SELECT COUNT(constructor) FROM table_27396005_2 WHERE grid = 13", "question": "How many constructors had a grid of 13?", "context": "CREATE TABLE table_27396005_2 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(pos) FROM table_27396005_2 WHERE constructor = \"Joe Gibbs Racing\" AND driver = \"Denny Hamlin\"", "question": "What was the maximum finish position of the car whose constructor was Joe Gibbs Racing, driven by Denny Hamlin?", "context": "CREATE TABLE table_27396005_2 (pos INTEGER, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT title FROM table_27397948_2 WHERE no_in_series = 57", "question": "List all titles with a 57 series number.", "context": "CREATE TABLE table_27397948_2 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_27397948_2 WHERE no_in_series = 47", "question": "What's the highest season number with a series number of 47?", "context": "CREATE TABLE table_27397948_2 (no_in_season INTEGER, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_27397948_2 WHERE no_in_season = 7", "question": "Who was the writer for season episode 7?", "context": "CREATE TABLE table_27397948_2 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27401228_1 WHERE us_viewers__million_ = \"5.86\"", "question": "Name who directed when the viewers is 5.86", "context": "CREATE TABLE table_27401228_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT location FROM table_27409644_1 WHERE club = \"Lootos P\u00f5lva\"", "question": "Where is lootos p\u00f5lva from?", "context": "CREATE TABLE table_27409644_1 (location VARCHAR, club VARCHAR)"}, {"answer": "SELECT manager FROM table_27409644_1 WHERE club = \"Lootos P\u00f5lva\"", "question": "Who is the manager for lootos p\u00f5lva?", "context": "CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR)"}, {"answer": "SELECT location FROM table_27409644_1 WHERE ground = \"Lootospark\"", "question": "Where is  lootospark from?", "context": "CREATE TABLE table_27409644_1 (location VARCHAR, ground VARCHAR)"}, {"answer": "SELECT manager FROM table_27409644_1 WHERE club = \"P\u00e4rnu\"", "question": "Who is the  p\u00e4rnu manager?", "context": "CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR)"}, {"answer": "SELECT location FROM table_27409644_1 WHERE manager = \"Richard Barnwell\"", "question": "Where is the team that is managed by richard barnwell from?", "context": "CREATE TABLE table_27409644_1 (location VARCHAR, manager VARCHAR)"}, {"answer": "SELECT ground FROM table_27409644_1 WHERE club = \"Flora Tallinn\"", "question": "What is the home location for team flora tallinn?", "context": "CREATE TABLE table_27409644_1 (ground VARCHAR, club VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_27403436_1 WHERE written_by = \"Shana Goldberg-Meehan & Greg Malins\"", "question": "How many viewers watched the episode written by shana goldberg-meehan & greg malins? ", "context": "CREATE TABLE table_27403436_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT no FROM table_27403436_1 WHERE production_code = \"2J5809\"", "question": "which number lists the production code as 2j5809", "context": "CREATE TABLE table_27403436_1 (no VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT position FROM table_274117_5 WHERE player = \"Bob Lilly\"", "question": "What position was Bob Lilly?", "context": "CREATE TABLE table_274117_5 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT seasons_by_team FROM table_274117_5 WHERE position = \"OL\" AND number = 11", "question": "What are seasons by team for Pro Bowl appearances of the player who was an OL and had 11 appearances? ", "context": "CREATE TABLE table_274117_5 (seasons_by_team VARCHAR, position VARCHAR, number VARCHAR)"}, {"answer": "SELECT position FROM table_274117_5 WHERE year_of_induction_into_pro_football_hall_of_fame = \"1980\"", "question": "What position was the player who was inducted into the Pro Football Hall of Fame in 1980? ", "context": "CREATE TABLE table_274117_5 (position VARCHAR, year_of_induction_into_pro_football_hall_of_fame VARCHAR)"}, {"answer": "SELECT year_of_induction_into_pro_football_hall_of_fame FROM table_274117_5 WHERE player = \"Will Shields\"", "question": "When was Will Shields inducted into the Pro Football Hall of Fame?", "context": "CREATE TABLE table_274117_5 (year_of_induction_into_pro_football_hall_of_fame VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(number) FROM table_274117_5", "question": "What is the fewest amount of Pro Bowl appearances any of the players had? ", "context": "CREATE TABLE table_274117_5 (number INTEGER)"}, {"answer": "SELECT live_births_per_year FROM table_27434_2 WHERE life_expectancy_total = \"65.1\"", "question": "How many live births per year do people with a life expectancy of 65.1 have?", "context": "CREATE TABLE table_27434_2 (live_births_per_year VARCHAR, life_expectancy_total VARCHAR)"}, {"answer": "SELECT period FROM table_27434_2 WHERE life_expectancy_total = \"62.4\"", "question": "What period was the life expectancy at 62.4?", "context": "CREATE TABLE table_27434_2 (period VARCHAR, life_expectancy_total VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_27435931_1 WHERE continent = \"Australia/Oceania\"", "question": "In what year is australia/oceania listed? ", "context": "CREATE TABLE table_27435931_1 (year VARCHAR, continent VARCHAR)"}, {"answer": "SELECT elevation_m FROM table_27435931_1 WHERE year = \"September 2009\"", "question": "what was the elevation in september 2009?", "context": "CREATE TABLE table_27435931_1 (elevation_m VARCHAR, year VARCHAR)"}, {"answer": "SELECT continent FROM table_27435931_1 WHERE country = \"Russia\"", "question": "what is the continent in which the country russia is listed?", "context": "CREATE TABLE table_27435931_1 (continent VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(elevation_ft) FROM table_27435931_1 WHERE year = \"April 2006\"", "question": "what was the lowest elevation in april 2006?", "context": "CREATE TABLE table_27435931_1 (elevation_ft INTEGER, year VARCHAR)"}, {"answer": "SELECT COUNT(elevation_ft) FROM table_27435931_1 WHERE country = \"Tanzania\"", "question": "what is elevation of tanzania?", "context": "CREATE TABLE table_27435931_1 (elevation_ft VARCHAR, country VARCHAR)"}, {"answer": "SELECT elevation_ft FROM table_27435931_1 WHERE continent = \"South America\"", "question": "what is the elevation of south america? ", "context": "CREATE TABLE table_27435931_1 (elevation_ft VARCHAR, continent VARCHAR)"}, {"answer": "SELECT no_in_season FROM table_27437601_2 WHERE directed_by = \"Brad Tanenbaum\" AND no_in_series > 241.0", "question": "List the season above 241.0 that was handled by brad tanenbaum.", "context": "CREATE TABLE table_27437601_2 (no_in_season VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27437601_2 WHERE no_in_season = 12", "question": "List the 1st air date for season 12.", "context": "CREATE TABLE table_27437601_2 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_27437601_2 WHERE no_in_season = 12", "question": "List the series number for season 12.", "context": "CREATE TABLE table_27437601_2 (no_in_series VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_27441210_13 WHERE country = \"Belgium\"", "question": "How many years was the country Belgium?", "context": "CREATE TABLE table_27441210_13 (year VARCHAR, country VARCHAR)"}, {"answer": "SELECT number_one_single_s_ FROM table_27441210_17 WHERE artist = \"Pep's\"", "question": "What number-one single is performed by artist Pep's?", "context": "CREATE TABLE table_27441210_17 (number_one_single_s_ VARCHAR, artist VARCHAR)"}, {"answer": "SELECT audition_city FROM table_27455867_1 WHERE episode_air_date = \"January 27, 2011\"", "question": "Where were the auditions held in the episode that aired on january 27, 2011?", "context": "CREATE TABLE table_27455867_1 (audition_city VARCHAR, episode_air_date VARCHAR)"}, {"answer": "SELECT COUNT(audition_city) FROM table_27455867_1 WHERE audition_venue = \"Bridgestone Arena\"", "question": "In how many different audition cities were the Bridgestone arena auditions held?", "context": "CREATE TABLE table_27455867_1 (audition_city VARCHAR, audition_venue VARCHAR)"}, {"answer": "SELECT callback_audition_date FROM table_27455867_1 WHERE episode_air_date = \"February 2, 2011\"", "question": "When was the callback audition date for the audition city from the episode aired on February 2, 2011?", "context": "CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, episode_air_date VARCHAR)"}, {"answer": "SELECT callback_audition_date FROM table_27455867_1 WHERE callback_venue = \"Hilton Riverside Hotel\"", "question": "When were the callback auditions at Hilton Riverside Hotel held?", "context": "CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, callback_venue VARCHAR)"}, {"answer": "SELECT callback_venue FROM table_27455867_1 WHERE episode_air_date = \"January 20, 2011\"", "question": "What was the callback venue for the audition city in the episode aired on January 20, 2011?", "context": "CREATE TABLE table_27455867_1 (callback_venue VARCHAR, episode_air_date VARCHAR)"}, {"answer": "SELECT callback_audition_date FROM table_27455867_1 WHERE episode_air_date = \"February 9, 2011\"", "question": "When were the callback auditions for the audition city in the episode aired on February 9, 2011?", "context": "CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, episode_air_date VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_27462177_1 WHERE written_by = \"Eve Weston\"", "question": "How many episodes did Eve Weston write?", "context": "CREATE TABLE table_27462177_1 (no_in_series VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_27462177_1 WHERE written_by = \"Jack Sanderson\"", "question": "How many millions of US viewers watched the episode written by Jack Sanderson?", "context": "CREATE TABLE table_27462177_1 (us_viewers__millions_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_27462209_1 WHERE prod_code = 322", "question": "Name who wrote the production code 322", "context": "CREATE TABLE table_27462209_1 (written_by VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT television_network FROM table_27469019_2 WHERE television_channel = \"Astro Pelangi & Astro Bintang\"", "question": "What is the television network with the television channel of Astro Pelangi & Astro Bintang?", "context": "CREATE TABLE table_27469019_2 (television_network VARCHAR, television_channel VARCHAR)"}, {"answer": "SELECT status FROM table_27469019_2 WHERE television_channel = \"MediaCorp TV12 Suria\"", "question": "What was the status of the series that was run by tv channel Mediacorp tv12 Suria?", "context": "CREATE TABLE table_27469019_2 (status VARCHAR, television_channel VARCHAR)"}, {"answer": "SELECT world_rank_by_qs_, _2013 FROM table_27484208_1 WHERE members = \"University of Otago\"", "question": "What was the world rank by QS in 2013 for the University of Otago?", "context": "CREATE TABLE table_27484208_1 (world_rank_by_qs_ VARCHAR, _2013 VARCHAR, members VARCHAR)"}, {"answer": "SELECT world_rank_by_arwu_, _2013 FROM table_27484208_1 WHERE members = \"University of T\u00fcbingen\"", "question": "What was the world rank by ARWU in 2013 of the University of T\u00fcbingen?", "context": "CREATE TABLE table_27484208_1 (world_rank_by_arwu_ VARCHAR, _2013 VARCHAR, members VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_27481781_2 WHERE viewers__millions_ = \"18.73\"", "question": "How many episodes have 18.73 million viewers?", "context": "CREATE TABLE table_27481781_2 (no_in_series VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT result FROM table_27487712_1 WHERE district = \"Georgia's 3rd\"", "question": "What was the result of the election for georgia's 3rd district?", "context": "CREATE TABLE table_27487712_1 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_27487712_1 WHERE district = \"Georgia's 8th\"", "question": "Who was the incumbent from georgia's 8th district?", "context": "CREATE TABLE table_27487712_1 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_27487712_1 WHERE incumbent = \"Bob Barr\"", "question": "What was the result of the election with incumbent bob barr?", "context": "CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_27487712_1 WHERE incumbent = \"John Lewis\"", "question": "What was the result of the election with incumbent john lewis?", "context": "CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_27487712_1 WHERE elected = 1978", "question": "Who was the incumbent for the election in 1978?", "context": "CREATE TABLE table_27487712_1 (incumbent VARCHAR, elected VARCHAR)"}, {"answer": "SELECT judges FROM table_27487310_5 WHERE country = \"Netherlands\" AND air_dates = \"28 November 2011 \u2013 24 December 2011\"", "question": "Who are the judges in the Netherlands for the season airing 28 November 2011 \u2013 24 December 2011?", "context": "CREATE TABLE table_27487310_5 (judges VARCHAR, country VARCHAR, air_dates VARCHAR)"}, {"answer": "SELECT name FROM table_27487310_5 WHERE network = \"SBS 6\"", "question": "What is the version aired on SBS 6 called?", "context": "CREATE TABLE table_27487310_5 (name VARCHAR, network VARCHAR)"}, {"answer": "SELECT air_dates FROM table_27487310_5 WHERE network = \"ABS-CBN\"", "question": "What are the air dates of the show in ABS-CBN?", "context": "CREATE TABLE table_27487310_5 (air_dates VARCHAR, network VARCHAR)"}, {"answer": "SELECT host_s_ FROM table_27487310_5 WHERE air_dates = \"18 January 2012\"", "question": "Who is the host on the series aired on 18 January 2012?", "context": "CREATE TABLE table_27487310_5 (host_s_ VARCHAR, air_dates VARCHAR)"}, {"answer": "SELECT name FROM table_27487310_5 WHERE host_s_ = \"unknown\"", "question": "What is the name of the series with the unknown host?", "context": "CREATE TABLE table_27487310_5 (name VARCHAR, host_s_ VARCHAR)"}, {"answer": "SELECT points_per_game FROM table_27487336_1 WHERE passing_yards_per_game = \"179.6\"", "question": "What is every value for points per game if passing yards per game is 179.6?", "context": "CREATE TABLE table_27487336_1 (points_per_game VARCHAR, passing_yards_per_game VARCHAR)"}, {"answer": "SELECT sacks FROM table_27487336_1 WHERE interceptions = \"19\"", "question": "What is every value for sacks if interceptions is 19?", "context": "CREATE TABLE table_27487336_1 (sacks VARCHAR, interceptions VARCHAR)"}, {"answer": "SELECT passing_yards_per_game FROM table_27487336_1 WHERE rushing_yards_per_game = \"113.6\"", "question": "What is every value for passing yards per game if rushing yards per game is 113.6?", "context": "CREATE TABLE table_27487336_1 (passing_yards_per_game VARCHAR, rushing_yards_per_game VARCHAR)"}, {"answer": "SELECT rushing_yards_per_game FROM table_27487336_1 WHERE sacks = \"25\"", "question": "What is every value for rushing yards per game if sacks if 25?", "context": "CREATE TABLE table_27487336_1 (rushing_yards_per_game VARCHAR, sacks VARCHAR)"}, {"answer": "SELECT rushing_yards_per_game FROM table_27487336_1 WHERE season = \"1984\"", "question": "What is every value for rushing yards per game if the season is 1984?", "context": "CREATE TABLE table_27487336_1 (rushing_yards_per_game VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_27487336_1 WHERE sacks = \"39\"", "question": "How many seasons have a sacks of 39?", "context": "CREATE TABLE table_27487336_1 (season VARCHAR, sacks VARCHAR)"}, {"answer": "SELECT average FROM table_27496841_3 WHERE rank_by_average = 3", "question": "Name the average for rank of 3", "context": "CREATE TABLE table_27496841_3 (average VARCHAR, rank_by_average VARCHAR)"}, {"answer": "SELECT total_points FROM table_27496841_3 WHERE place = 2", "question": "Name the total points for 2", "context": "CREATE TABLE table_27496841_3 (total_points VARCHAR, place VARCHAR)"}, {"answer": "SELECT decision FROM table_27501030_7 WHERE opponent = \"Atlanta Thrashers\"", "question": "What is the decision when the opponents are atlanta thrashers?", "context": "CREATE TABLE table_27501030_7 (decision VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_27501030_7 WHERE points = 57", "question": "How many game entries are there when the points are 57?", "context": "CREATE TABLE table_27501030_7 (game VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(a\u00f1o) FROM table_27501971_2", "question": "What is the smallest a\u00f1o?", "context": "CREATE TABLE table_27501971_2 (a\u00f1o INTEGER)"}, {"answer": "SELECT COUNT(premio) FROM table_27501971_2 WHERE categor\u00eda = \"Artist of the Year\"", "question": "How many premio are there when \"Artist of the Year\" was the categoria?", "context": "CREATE TABLE table_27501971_2 (premio VARCHAR, categor\u00eda VARCHAR)"}, {"answer": "SELECT resultado FROM table_27501971_2 WHERE country = \"E.E.U.U\"", "question": "What was the resultado when E.E.U.U was the country?", "context": "CREATE TABLE table_27501971_2 (resultado VARCHAR, country VARCHAR)"}, {"answer": "SELECT categor\u00eda FROM table_27501971_2 WHERE country = \"E.E.U.U\"", "question": "What was the categoria when E.E.U.U was the country?", "context": "CREATE TABLE table_27501971_2 (categor\u00eda VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_27501971_2 WHERE a\u00f1o = 2012", "question": "When the a\u00f1o was 2012, who was the county?", "context": "CREATE TABLE table_27501971_2 (country VARCHAR, a\u00f1o VARCHAR)"}, {"answer": "SELECT written_by FROM table_27504682_1 WHERE directed_by = \"Lawrence Trilling\"", "question": "Name who wrote the episode by lawrence trilling", "context": "CREATE TABLE table_27504682_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27504682_1 WHERE written_by = \"Alex Taub\"", "question": "Name the air date for alex taub", "context": "CREATE TABLE table_27504682_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_27501030_8 WHERE game = 69", "question": "How many games were numbered 69?", "context": "CREATE TABLE table_27501030_8 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(march) FROM table_27501030_8 WHERE opponent = \"Pittsburgh Penguins\"", "question": "How many times did they play the pittsburgh penguins?", "context": "CREATE TABLE table_27501030_8 (march VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE genre = \"Dancing\" AND age_s_ = \"32\"", "question": "What is the earliest quarterfinal week when the genre is dancing and the act is 32?", "context": "CREATE TABLE table_27529608_21 (qtr_final__week_ INTEGER, genre VARCHAR, age_s_ VARCHAR)"}, {"answer": "SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE name_name_of_act = \"Austin Anderson\"", "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 genre FROM table_27529608_21 WHERE age_s_ = \"29-30\"", "question": "What is the genre for the group with ages 29-30?", "context": "CREATE TABLE table_27529608_21 (genre VARCHAR, age_s_ VARCHAR)"}, {"answer": "SELECT age_s_ FROM table_27529608_21 WHERE act = \"Rapper\"", "question": "What is the age of the act who is a rapper?", "context": "CREATE TABLE table_27529608_21 (age_s_ VARCHAR, act VARCHAR)"}, {"answer": "SELECT hometown FROM table_27529608_21 WHERE name_name_of_act = \"PLUtonic\"", "question": "What is the hometown of Plutonic?", "context": "CREATE TABLE table_27529608_21 (hometown VARCHAR, name_name_of_act VARCHAR)"}, {"answer": "SELECT COUNT(semi_final__week_) FROM table_27529608_21 WHERE hometown = \"Pittsburgh, Pennsylvania\"", "question": "How many semi-final weeks are there for acts from Pittsburgh, Pennsylvania?", "context": "CREATE TABLE table_27529608_21 (semi_final__week_ VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_275162_1 WHERE location = \"Lake Forest, Illinois\"", "question": "What was the margin of victory for the event in lake forest, illinois?", "context": "CREATE TABLE table_275162_1 (margin_of_victory VARCHAR, location VARCHAR)"}, {"answer": "SELECT to_par FROM table_275162_1 WHERE player = \"Zach Johnson\"", "question": "What was zach johnson's score to par?", "context": "CREATE TABLE table_275162_1 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_275162_1 WHERE course = \"Bellerive country Club\"", "question": "What was the winning score at bellerive country club?", "context": "CREATE TABLE table_275162_1 (score VARCHAR, course VARCHAR)"}, {"answer": "SELECT COUNT(course) FROM table_275162_1 WHERE location = \"Carmel, Indiana\"", "question": "How many courses are located in carmel, indiana?", "context": "CREATE TABLE table_275162_1 (course VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(status) FROM table_27514362_7 WHERE entrant = \"James Finch\"", "question": "How many status figures does James Finch have?", "context": "CREATE TABLE table_27514362_7 (status VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT car_make FROM table_27514362_7 WHERE driver = \"Sterling Marlin\"", "question": "What is the car make for Sterling Marlin?", "context": "CREATE TABLE table_27514362_7 (car_make VARCHAR, driver VARCHAR)"}, {"answer": "SELECT pos FROM table_27514362_7 WHERE car_make = \"Pontiac\" AND driver = \"Bobby Hamilton\"", "question": "What is the finish position for cars by Pontiac driven by Bobby Hamilton?", "context": "CREATE TABLE table_27514362_7 (pos VARCHAR, car_make VARCHAR, driver VARCHAR)"}, {"answer": "SELECT contestant FROM table_27515452_3 WHERE sizes = \"33-23-36\"", "question": "who are the participants that wear clothing in 33-23-36", "context": "CREATE TABLE table_27515452_3 (contestant VARCHAR, sizes VARCHAR)"}, {"answer": "SELECT MAX(age) FROM table_27515452_3 WHERE hometown = \"Veraguas\"", "question": "what is the oldest and lives in veraguas", "context": "CREATE TABLE table_27515452_3 (age INTEGER, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_27515452_3 WHERE contestant = \"Marelissa Him\"", "question": "where is the participant marelissa him from", "context": "CREATE TABLE table_27515452_3 (hometown VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT agency FROM table_27515452_3 WHERE sizes = \"33-23-36\"", "question": "which company has a person that can wear clothing in 33-23-36", "context": "CREATE TABLE table_27515452_3 (agency VARCHAR, sizes VARCHAR)"}, {"answer": "SELECT height FROM table_27515452_3 WHERE sizes = \"33-24-35\"", "question": "how tall is someone who is able to wear 33-24-35", "context": "CREATE TABLE table_27515452_3 (height VARCHAR, sizes VARCHAR)"}, {"answer": "SELECT MIN(total_points) FROM table_27533947_1 WHERE best_winning_average = \"7.3-71\"", "question": "If the best winning average is 7.3-71, what are the total points?", "context": "CREATE TABLE table_27533947_1 (total_points INTEGER, best_winning_average VARCHAR)"}, {"answer": "SELECT games_lost FROM table_27533947_1 WHERE best_run = 138", "question": "if the best run was 138, what is the amount of games lost?", "context": "CREATE TABLE table_27533947_1 (games_lost VARCHAR, best_run VARCHAR)"}, {"answer": "SELECT best_winning_average FROM table_27533947_1 WHERE games_won = 5", "question": "If the games won are 5, what is the best winning average?", "context": "CREATE TABLE table_27533947_1 (best_winning_average VARCHAR, games_won VARCHAR)"}, {"answer": "SELECT MIN(total_points) FROM table_27533947_1 WHERE players = \"William Jakes\"", "question": "If the player is William Jakes, what are the total points?", "context": "CREATE TABLE table_27533947_1 (total_points INTEGER, players VARCHAR)"}, {"answer": "SELECT players FROM table_27533947_1 WHERE grand_average = \"12.76-202\"", "question": "If the grand average is 12.76-202, who is the player?", "context": "CREATE TABLE table_27533947_1 (players VARCHAR, grand_average VARCHAR)"}, {"answer": "SELECT COUNT(games_won) FROM table_27533947_1 WHERE best_winning_average = \"20\"", "question": "How many players had a best winning average of 20?", "context": "CREATE TABLE table_27533947_1 (games_won VARCHAR, best_winning_average VARCHAR)"}, {"answer": "SELECT record FROM table_27537518_4 WHERE date = \"October 22\"", "question": "What was the October 22 record?", "context": "CREATE TABLE table_27537518_4 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_27537518_4 WHERE score = \"6-4\"", "question": "What was the 6-4 score's maximum attendance?", "context": "CREATE TABLE table_27537518_4 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT score FROM table_27537518_4 WHERE game = 1", "question": "What was the score for game #1?", "context": "CREATE TABLE table_27537518_4 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_27537518_4 WHERE date = \"October 16\"", "question": "What was the record for the October 16 game?", "context": "CREATE TABLE table_27537518_4 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_27537518_6 WHERE first_star = \"J. Oduya\"", "question": "What was the record in the game whose first star was J. Oduya?", "context": "CREATE TABLE table_27537518_6 (record VARCHAR, first_star VARCHAR)"}, {"answer": "SELECT score FROM table_27537518_6 WHERE first_star = \"O. Pavelec\"", "question": "What was the score of the game whose first star was O. Pavelec?", "context": "CREATE TABLE table_27537518_6 (score VARCHAR, first_star VARCHAR)"}, {"answer": "SELECT decision FROM table_27537518_6 WHERE date = \"December 26\"", "question": "Who made the decision in the game played on December 26?", "context": "CREATE TABLE table_27537518_6 (decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_27537518_6 WHERE attendance = 10056", "question": "Where was the game seen by 10056 people played?", "context": "CREATE TABLE table_27537518_6 (location VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT first_star FROM table_27537518_6 WHERE record = \"17-11-5\"", "question": "Who was the first star of the game with record of 17-11-5?", "context": "CREATE TABLE table_27537518_6 (first_star VARCHAR, record VARCHAR)"}, {"answer": "SELECT decision FROM table_27537518_6 WHERE first_star = \"V. Lecavalier\"", "question": "Who made the decisions in the game whose first star was V. Lecavalier?", "context": "CREATE TABLE table_27537518_6 (decision VARCHAR, first_star VARCHAR)"}, {"answer": "SELECT score FROM table_27537518_7 WHERE record = \"22-16-6\"", "question": "What was the final score the game where the Thrashers over-all record went to 22-16-6?", "context": "CREATE TABLE table_27537518_7 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT decision FROM table_27537518_7 WHERE score = \"1-7\"", "question": "Who got the decision in the game, when the final score was 1-7?", "context": "CREATE TABLE table_27537518_7 (decision VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_27537518_7 WHERE first_star = \"M. Grabovski\"", "question": "What date was M. Grabovski the first start of the game?", "context": "CREATE TABLE table_27537518_7 (date VARCHAR, first_star VARCHAR)"}, {"answer": "SELECT record FROM table_27537518_9 WHERE opponent = \"Carolina Hurricanes\"", "question": "What was the record for the game where the opponent was the Carolina Hurricanes?", "context": "CREATE TABLE table_27537518_9 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_27537518_9 WHERE record = \"27-28-11\"", "question": "On which date was the record of 27-28-11 set?", "context": "CREATE TABLE table_27537518_9 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT decision FROM table_27537518_9 WHERE record = \"29-28-12\"", "question": "Who made the decision on the game where the record was 29-28-12?", "context": "CREATE TABLE table_27537518_9 (decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT decision FROM table_27537518_9 WHERE record = \"27-28-11\"", "question": "Who made the decision on the game where the record was 27-28-11?", "context": "CREATE TABLE table_27537518_9 (decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_27539272_4 WHERE game = 5", "question": "Name the score for game 5", "context": "CREATE TABLE table_27539272_4 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_27539272_4 WHERE record = \"1-3-1\"", "question": "Name the most points for 1-3-1 record", "context": "CREATE TABLE table_27539272_4 (points INTEGER, record VARCHAR)"}, {"answer": "SELECT record FROM table_27539272_4 WHERE location_attendance = \"Prudential Center - 12,880\"", "question": "Name the record for prudential center - 12,880", "context": "CREATE TABLE table_27539272_4 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_27539272_4 WHERE location_attendance = \"HP Pavilion - 17,562\"", "question": "Name the number of record for  hp pavilion - 17,562", "context": "CREATE TABLE table_27539272_4 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(october) FROM table_27537870_3 WHERE score = \"6-1\"", "question": "On how many days in October was the score 6-1?", "context": "CREATE TABLE table_27537870_3 (october VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27537870_3 WHERE record = \"3-5-1\"", "question": "What is the location and what was the attendance on those days when the score was 3-5-1?", "context": "CREATE TABLE table_27537870_3 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_27537870_3 WHERE record = \"2-5-1\"", "question": "How many times was the sabres record 2-5-1?", "context": "CREATE TABLE table_27537870_3 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27539272_7 WHERE game = 41", "question": "What was the location and attendance for game 41?", "context": "CREATE TABLE table_27539272_7 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(january) FROM table_27539272_7 WHERE record = \"10-29-2\"", "question": "On what day of January was the record 10-29-2?", "context": "CREATE TABLE table_27539272_7 (january INTEGER, record VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_27539272_7 WHERE score = \"1-2\"", "question": "What are the most points scored in a game where the score was 1-2?", "context": "CREATE TABLE table_27539272_7 (points INTEGER, score VARCHAR)"}, {"answer": "SELECT MAX(january) FROM table_27539272_7 WHERE record = \"15-29-3\"", "question": "On what day in January was the record 15-29-3?", "context": "CREATE TABLE table_27539272_7 (january INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_27539535_5 WHERE record = \"5-18-5\"", "question": "Against what team did the Islanders have a 5-18-5 record?", "context": "CREATE TABLE table_27539535_5 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_27539535_5 WHERE score = \"5-4\"", "question": "Against what opponent did the game end 5-4?", "context": "CREATE TABLE table_27539535_5 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(december) FROM table_27539535_5 WHERE record = \"9-19-6\"", "question": "How many games were played against a team with a 9-19-6 record against the Islanders?", "context": "CREATE TABLE table_27539535_5 (december VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_27539808_3 WHERE october = 9", "question": "How many games did they play on october 9?", "context": "CREATE TABLE table_27539808_3 (opponent VARCHAR, october VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_27539808_5 WHERE game = 32", "question": "What is the lowest number of points for game 32?", "context": "CREATE TABLE table_27539808_5 (points INTEGER, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27539808_5 WHERE december = 1", "question": "What is the location and attendance total from the game on December 1?", "context": "CREATE TABLE table_27539808_5 (location_attendance VARCHAR, december VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27547668_3 WHERE viewers = 899000", "question": "Who directed the episode with 899000 viewers?", "context": "CREATE TABLE table_27547668_3 (directed_by VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_27547668_3", "question": "What is the smallest numbered episode in the series listed?", "context": "CREATE TABLE table_27547668_3 (_number INTEGER)"}, {"answer": "SELECT viewers FROM table_27547668_3 WHERE _number = 13", "question": "How many people watched episode number 13?", "context": "CREATE TABLE table_27547668_3 (viewers VARCHAR, _number VARCHAR)"}, {"answer": "SELECT no FROM table_27547668_3 WHERE written_by = \"Greg Nelson\" AND directed_by = \"Keith Samples\"", "question": "What episode number in the season was written by Greg nelson and directed by Keith samples?", "context": "CREATE TABLE table_27547668_3 (no VARCHAR, written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_27547668_2 WHERE prod_code = 102", "question": "What is the title of the episode with production code 102?", "context": "CREATE TABLE table_27547668_2 (title VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_27547668_2 WHERE _number = 6", "question": "What is the original air date of # 6?", "context": "CREATE TABLE table_27547668_2 (original_airdate VARCHAR, _number VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_27547668_2 WHERE viewers = 908000", "question": "What is the original air date of the episode with 908000 viewers?", "context": "CREATE TABLE table_27547668_2 (original_airdate VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT COUNT(season) AS premiere FROM table_27553627_2 WHERE viewers__in_millions_ = \"15.27\"", "question": "How many season premieres had 15.27 million viewers?", "context": "CREATE TABLE table_27553627_2 (season VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT season AS finale FROM table_27553627_2 WHERE rank = \"20th\"", "question": "When was the season finale that ranked 20th?", "context": "CREATE TABLE table_27553627_2 (season VARCHAR, rank VARCHAR)"}, {"answer": "SELECT tv_season FROM table_27553627_2 WHERE viewers__in_millions_ = \"14.54\"", "question": "What tv season year had 14.54 million viewers?", "context": "CREATE TABLE table_27553627_2 (tv_season VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT MAX(episodes) FROM table_27553627_2 WHERE viewers__in_millions_ = \"14.41\"", "question": "What episode number had 14.41 million viewers?", "context": "CREATE TABLE table_27553627_2 (episodes INTEGER, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT MIN(rnd) FROM table_27561505_2 WHERE circuit = \"Laguna Seca\"", "question": "What is the minimum rnd at Laguna Seca?", "context": "CREATE TABLE table_27561505_2 (rnd INTEGER, circuit VARCHAR)"}, {"answer": "SELECT COUNT(gt_20_winning_team) FROM table_27561503_2 WHERE sports_20_winning_team = \"#16 Trans Ocean Motors\" AND circuit = \"Castle Rock\"", "question": "Name the gt 2.0 winning team for sports 2.0 winning team for #16 trans ocean motors for castle rock", "context": "CREATE TABLE table_27561503_2 (gt_20_winning_team VARCHAR, sports_20_winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(results) FROM table_27561503_2 WHERE sports_20_winning_team = \"#23 Lotus\"", "question": "Name the results for #23 lotus", "context": "CREATE TABLE table_27561503_2 (results VARCHAR, sports_20_winning_team VARCHAR)"}, {"answer": "SELECT results FROM table_27561503_2 WHERE gt_20_winning_team = \"Herb Wetanson\"", "question": "Name results for herb wetanson", "context": "CREATE TABLE table_27561503_2 (results VARCHAR, gt_20_winning_team VARCHAR)"}, {"answer": "SELECT province FROM table_27592654_2 WHERE electorate = \"Collingwood\"", "question": "What was the province if the electorate was Collingwood?", "context": "CREATE TABLE table_27592654_2 (province VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT province FROM table_27592654_2 WHERE election_date = \"5 Cannot handle non-empty timestamp argument! 1861\"", "question": "What was the province with an election date of 5 cannot handle non-empty timestamp argument! 1861?", "context": "CREATE TABLE table_27592654_2 (province VARCHAR, election_date VARCHAR)"}, {"answer": "SELECT races FROM table_27582888_1 WHERE final_placing = \"5th\"", "question": "Name the races for final placing being 5th", "context": "CREATE TABLE table_27582888_1 (races VARCHAR, final_placing VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_27582888_1 WHERE podiums = 4", "question": "Name the post poles for 4 podiums", "context": "CREATE TABLE table_27582888_1 (poles INTEGER, podiums VARCHAR)"}, {"answer": "SELECT song_choice FROM table_27614571_1 WHERE theme = \"Samba\"", "question": "What was Barreto's song choice when the theme was samba?", "context": "CREATE TABLE table_27614571_1 (song_choice VARCHAR, theme VARCHAR)"}, {"answer": "SELECT song_choice FROM table_27614571_1 WHERE original_artist = \"Patricia Marx\"", "question": "What was Barreto's song choice where the original artist was Patricia Marx?", "context": "CREATE TABLE table_27614571_1 (song_choice VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT week__number FROM table_27614571_1 WHERE original_artist = \"Leila Pinheiro\"", "question": "In which week # was the original artist of Barreto's song choice was Leila Pinheiro?", "context": "CREATE TABLE table_27614571_1 (week__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_27611593_5", "question": "When did the earliest tournament happened?", "context": "CREATE TABLE table_27611593_5 (year INTEGER)"}, {"answer": "SELECT partner FROM table_27611593_5 WHERE score = \"6\u20132, 3\u20136, 6\u20137 (7-9)\"", "question": "Who was Petrova's partner where she scored 6\u20132, 3\u20136, 6\u20137 (7-9)?", "context": "CREATE TABLE table_27611593_5 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_27611593_5 WHERE partner = \"Vania King\"", "question": "Who were Petrova's opponents with Vania King?", "context": "CREATE TABLE table_27611593_5 (opponents VARCHAR, partner VARCHAR)"}, {"answer": "SELECT written_by FROM table_27610775_1 WHERE prod_code = 211", "question": "Who wrote the episode with the production code 211?", "context": "CREATE TABLE table_27610775_1 (written_by VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT MAX(prod_code) FROM table_27610775_1 WHERE directed_by = \"Sean McNamara\"", "question": "What is the maximum production code of the episode directed by Sean McNamara?", "context": "CREATE TABLE table_27610775_1 (prod_code INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(audition_city) FROM table_27615445_1 WHERE episode_air_date = \"June 24, 2010\"", "question": "How many audition city's are there with an episode air date of June 24, 2010?", "context": "CREATE TABLE table_27615445_1 (audition_city VARCHAR, episode_air_date VARCHAR)"}, {"answer": "SELECT episode_air_date FROM table_27615445_1 WHERE audition_venue = \"Nego Quirido Sambadrome\"", "question": "List all episode air dates that auditioned at Nego Quirido Sambadrome?", "context": "CREATE TABLE table_27615445_1 (episode_air_date VARCHAR, audition_venue VARCHAR)"}, {"answer": "SELECT episode_air_date FROM table_27615445_1 WHERE guest_fourth_judge = \"Luiza Possi\"", "question": "List all episode air dates where Luiza Possi was the guest fourth judge?", "context": "CREATE TABLE table_27615445_1 (episode_air_date VARCHAR, guest_fourth_judge VARCHAR)"}, {"answer": "SELECT COUNT(episode_air_date) FROM table_27615445_1 WHERE audition_city = \"Rio de Janeiro\"", "question": "How many episode air dates are there for auditioning city Rio De Janeiro?", "context": "CREATE TABLE table_27615445_1 (episode_air_date VARCHAR, audition_city VARCHAR)"}, {"answer": "SELECT audition_venue FROM table_27615445_1 WHERE guest_fourth_judge = \"Peninha\"", "question": "Where was the audition venue where Peninha was the guest fourth judge?", "context": "CREATE TABLE table_27615445_1 (audition_venue VARCHAR, guest_fourth_judge VARCHAR)"}, {"answer": "SELECT song_choice FROM table_27616663_1 WHERE original_artist = \"Marisa Monte\"", "question": "Which song was picked that was originally performed by Marisa Monte?", "context": "CREATE TABLE table_27616663_1 (song_choice VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT result FROM table_27616663_1 WHERE original_artist = \"Caetano Veloso\"", "question": "What was the result of the performance of the song by Caetano Veloso?", "context": "CREATE TABLE table_27616663_1 (result VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT order__number FROM table_27616663_1 WHERE theme = \"Male Singers\"", "question": "What was the order # of the theme Male Singers?", "context": "CREATE TABLE table_27616663_1 (order__number VARCHAR, theme VARCHAR)"}, {"answer": "SELECT theme FROM table_27616663_1 WHERE original_artist = \"Rosana\"", "question": "What was the theme when original artist Rosana's song was performed?", "context": "CREATE TABLE table_27616663_1 (theme VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT COUNT(week__number) FROM table_27614707_1 WHERE theme = \"Judge's Choice\" AND order__number = \"4\"", "question": "How many different weeks are there in order number 4 that were judge's choice?", "context": "CREATE TABLE table_27614707_1 (week__number VARCHAR, theme VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT song_choice FROM table_27614707_1 WHERE week__number = \"Top 5\" AND original_artist = \"Marisa Monte\"", "question": "What Marisa Monte song choice was song during top 5?", "context": "CREATE TABLE table_27614707_1 (song_choice VARCHAR, week__number VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT original_artist FROM table_27614707_1 WHERE theme = \"Top 12 Men\"", "question": "Who was the original artist of the Top 12 Men theme?", "context": "CREATE TABLE table_27614707_1 (original_artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT result FROM table_27614707_1 WHERE theme = \"Top 12 Men\"", "question": "What was the result of the Top 12 Men theme?", "context": "CREATE TABLE table_27614707_1 (result VARCHAR, theme VARCHAR)"}, {"answer": "SELECT week__number FROM table_27614707_1 WHERE result = \"Bottom 3\"", "question": "What week number was the result bottom 3?", "context": "CREATE TABLE table_27614707_1 (week__number VARCHAR, result VARCHAR)"}, {"answer": "SELECT points_per_game FROM table_2761641_1 WHERE assists_per_game = \"1.5\"", "question": "How many points per game did he have when he had 1.5 assists per game?", "context": "CREATE TABLE table_2761641_1 (points_per_game VARCHAR, assists_per_game VARCHAR)"}, {"answer": "SELECT rebounds_per_game FROM table_2761641_1 WHERE tournament = \"2006 FIBA World Championship\"", "question": "How many rebounds per game did he have at the 2006 fiba world championship?", "context": "CREATE TABLE table_2761641_1 (rebounds_per_game VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT rebounds_per_game FROM table_2761641_1 WHERE tournament = \"2003 EuroBasket\"", "question": "How many rebounds per game did he have at the 2003 eurobasket?", "context": "CREATE TABLE table_2761641_1 (rebounds_per_game VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT assists_per_game FROM table_2761641_1 WHERE points_per_game = \"6.8\"", "question": "How many assists per game did he have when he had 6.8 points per game?", "context": "CREATE TABLE table_2761641_1 (assists_per_game VARCHAR, points_per_game VARCHAR)"}, {"answer": "SELECT prod_code FROM table_27622417_1 WHERE no_in_series = 87", "question": "which is the production code when the number of the episode in series is 87? ", "context": "CREATE TABLE table_27622417_1 (prod_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_27622417_1 WHERE prod_code = \"405\"", "question": "what is the number of the episode in the series whose production code is 405?", "context": "CREATE TABLE table_27622417_1 (no_in_series VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT original_us_air_date FROM table_27622417_1 WHERE prod_code = \"415\"", "question": "when was the premiere of the episode whose production code is 415? ", "context": "CREATE TABLE table_27622417_1 (original_us_air_date VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_27622417_1 WHERE prod_code = \"411\"", "question": "who were the writers in the episode whose production code was 411? ", "context": "CREATE TABLE table_27622417_1 (written_by VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27622417_1 WHERE no_in_season = 17", "question": "who were the director of the episode whose number in the season is 17? ", "context": "CREATE TABLE table_27622417_1 (directed_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT currency FROM table_2764267_2 WHERE negotiable_debt_at_mid_2005___us_dollar_bn_equivalent_ = 1300", "question": "Name the currency for negotiable debt being 1300", "context": "CREATE TABLE table_2764267_2 (currency VARCHAR, negotiable_debt_at_mid_2005___us_dollar_bn_equivalent_ VARCHAR)"}, {"answer": "SELECT country FROM table_2764267_2 WHERE currency = \"Yen\"", "question": "Name the country that has the yen", "context": "CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_2764267_2 WHERE currency = \"US dollar\"", "question": "Name the number of countries that have the us dollar", "context": "CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR)"}, {"answer": "SELECT country FROM table_2764267_2 WHERE currency = \"US dollar\"", "question": "Name the country for the us dollar", "context": "CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_27631756_2 WHERE head_coach = \"Mahdi Ali\"", "question": "How many teams have a head coach named mahdi ali?", "context": "CREATE TABLE table_27631756_2 (team VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT COUNT(captain) FROM table_27631756_2 WHERE kitmaker = \"N/A\"", "question": "How many captains have the kitmaker as n/a?", "context": "CREATE TABLE table_27631756_2 (captain VARCHAR, kitmaker VARCHAR)"}, {"answer": "SELECT COUNT(kitmaker) FROM table_27631756_2 WHERE team = \"Ittihad Kalba\"", "question": "How many kitmaker correspond to team ittihad kalba?", "context": "CREATE TABLE table_27631756_2 (kitmaker VARCHAR, team VARCHAR)"}, {"answer": "SELECT captain FROM table_27631756_2 WHERE shirt_sponsor = \"N/A\"", "question": "What is the name of the captain when teh shirt sponsor is n/a?", "context": "CREATE TABLE table_27631756_2 (captain VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT COUNT(captain) FROM table_27631756_2 WHERE shirt_sponsor = \"Toshiba\"", "question": "How many captains when the shirt sponsor is toshiba?", "context": "CREATE TABLE table_27631756_2 (captain VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT chairman FROM table_27631756_2 WHERE captain = \"Fawzi Bashir\"", "question": "Who is the chairman when teh captain is fawzi bashir?", "context": "CREATE TABLE table_27631756_2 (chairman VARCHAR, captain VARCHAR)"}, {"answer": "SELECT season FROM table_27631002_1 WHERE f_laps = 0 AND races = 2", "question": "Which season had f/laps is 0 and races is 2?", "context": "CREATE TABLE table_27631002_1 (season VARCHAR, f_laps VARCHAR, races VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_27631002_1 WHERE position = \"6th\"", "question": "How many entries are there for points for the 6th position?", "context": "CREATE TABLE table_27631002_1 (points VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_27631002_1 WHERE position = \"2nd\"", "question": "How many season are shown for the 2nd position?", "context": "CREATE TABLE table_27631002_1 (season VARCHAR, position VARCHAR)"}, {"answer": "SELECT wins FROM table_27631002_1 WHERE position = \"7th\"", "question": "What are the wins for the 7th position?", "context": "CREATE TABLE table_27631002_1 (wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_27631002_1 WHERE series = \"Austria Formel 3 Cup\"", "question": "What is the position for the austria formel 3 cup series?", "context": "CREATE TABLE table_27631002_1 (position VARCHAR, series VARCHAR)"}, {"answer": "SELECT COUNT(ppi__pixels_per_inch__) FROM table_27653752_1 WHERE ppcm__pixels_per_cm__ = 87", "question": "How many different PPI does the model with ppcm of 87 have?", "context": "CREATE TABLE table_27653752_1 (ppi__pixels_per_inch__ VARCHAR, ppcm__pixels_per_cm__ VARCHAR)"}, {"answer": "SELECT resolution FROM table_27653752_1 WHERE pixels_per_degree__ppd_ = 69", "question": "What's the resolution of the model with a PPD of 69?", "context": "CREATE TABLE table_27653752_1 (resolution VARCHAR, pixels_per_degree__ppd_ VARCHAR)"}, {"answer": "SELECT ihsa_music_class FROM table_27653955_1 WHERE mascot = \"Lancers\"", "question": "What is the IHSA music class for the mascot that is the lancers?", "context": "CREATE TABLE table_27653955_1 (ihsa_music_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT ihsa_cheerleading_class FROM table_27653955_1 WHERE enrollment = 2600", "question": "What is the IHSA cheerleading class for the enrollment of 2600?", "context": "CREATE TABLE table_27653955_1 (ihsa_cheerleading_class VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT colors FROM table_27653955_1 WHERE enrollment = 2020", "question": "What are the colors for the enrollment of 2020?", "context": "CREATE TABLE table_27653955_1 (colors VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT MIN(old_membership_total) FROM table_27671835_3", "question": "What is the smallest number for old membership total?", "context": "CREATE TABLE table_27671835_3 (old_membership_total INTEGER)"}, {"answer": "SELECT MIN(members_lost) FROM table_27671835_3 WHERE net_change = \"\u22121\"", "question": "What is the lowest number of members lost when the  net change is \u22121?", "context": "CREATE TABLE table_27671835_3 (members_lost INTEGER, net_change VARCHAR)"}, {"answer": "SELECT MAX(new_membership_total) FROM table_27671835_3 WHERE members_lost > 1.0", "question": "What is the new membership total if the members lost is bigger than 1.0?", "context": "CREATE TABLE table_27671835_3 (new_membership_total INTEGER, members_lost INTEGER)"}, {"answer": "SELECT members_added FROM table_27671835_3 WHERE conference = \"NCHC (men only)\"", "question": "How many members were added at the nchc (men only) conference?", "context": "CREATE TABLE table_27671835_3 (members_added VARCHAR, conference VARCHAR)"}, {"answer": "SELECT new_membership_total FROM table_27671835_3 WHERE conference = \"NCHC (men only)\"", "question": "What was the new membership total at the nchc (men only) conference?", "context": "CREATE TABLE table_27671835_3 (new_membership_total VARCHAR, conference VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_27683516_3 WHERE incoming_manager = \"\u0160tefan Tarkovi\u010d\"", "question": "What is the outgoing manager when the incoming manager is \u0161tefan tarkovi\u010d?", "context": "CREATE TABLE table_27683516_3 (outgoing_manager VARCHAR, incoming_manager VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_27683516_3 WHERE date_of_vacancy = \"30 October 2010\"", "question": "How many dates of vacancy were on 30 october 2010?", "context": "CREATE TABLE table_27683516_3 (team VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_27683516_3 WHERE date_of_vacancy = \"28 September 2010\"", "question": "What is the manner of departure when the date of vacancy is 28 september 2010?", "context": "CREATE TABLE table_27683516_3 (manner_of_departure VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_27683516_3 WHERE date_of_vacancy = \"24 November 2010\"", "question": "What is the date of appointment when the date of vacancy is 24 november 2010?", "context": "CREATE TABLE table_27683516_3 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_27683516_3 WHERE date_of_vacancy = \"10 October 2010\"", "question": "What is the outgoing manager when the date of vacancy is 10 october 2010?", "context": "CREATE TABLE table_27683516_3 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT table FROM table_27683516_3 WHERE team = \"Slovan Bratislava\"", "question": "What is the table when the team is slovan bratislava?", "context": "CREATE TABLE table_27683516_3 (table VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(visitors__total_) FROM table_27685921_1 WHERE exhibitors__total_ = 1654", "question": "how many people come to visit when the 1654 exhibitions", "context": "CREATE TABLE table_27685921_1 (visitors__total_ VARCHAR, exhibitors__total_ VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_27685921_1 WHERE exhibitors__total_ = 1701", "question": "what is the most time where exhibitions is 1701", "context": "CREATE TABLE table_27685921_1 (year INTEGER, exhibitors__total_ VARCHAR)"}, {"answer": "SELECT high_points FROM table_27700375_10 WHERE date = \"March 14\"", "question": "who had high points on march 14?", "context": "CREATE TABLE table_27700375_10 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27700375_10 WHERE game = 69", "question": "who had high rebounds at game 69?", "context": "CREATE TABLE table_27700375_10 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_27698941_8 WHERE date = \"January 17\"", "question": "Who were the 76ers opponents on January 17?", "context": "CREATE TABLE table_27698941_8 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_27698941_8 WHERE game = 34", "question": "How many players held the high point records for game 34?", "context": "CREATE TABLE table_27698941_8 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_27698941_8 WHERE date = \"January 7\"", "question": "What the win - loss recored for January 7?", "context": "CREATE TABLE table_27698941_8 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_27698941_2 WHERE date = \"October 5\"", "question": "How many people led in points during the game on October 5?", "context": "CREATE TABLE table_27698941_2 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_27700375_11 WHERE location_attendance = \"The Palace of Auburn Hills 14,554\"", "question": "Name the date for the palace of auburn hills 14,554", "context": "CREATE TABLE table_27700375_11 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_27700375_11 WHERE score = \"L 109\u2013116 (OT)\"", "question": "Name the least game for  l 109\u2013116 (ot)", "context": "CREATE TABLE table_27700375_11 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27700375_11 WHERE team = \"Charlotte\"", "question": "Name the high rebounds for charlotte", "context": "CREATE TABLE table_27700375_11 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27700375_11 WHERE location_attendance = \"Wells Fargo Center 16,695\"", "question": "Name the high rebounds for wells fargo center 16,695", "context": "CREATE TABLE table_27700375_11 (high_rebounds VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27700375_8 WHERE high_points = \"Brook Lopez (15)\"", "question": "Who got the high rebounds if Brook Lopez (15) earned the high points?", "context": "CREATE TABLE table_27700375_8 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27700375_8 WHERE team = \"@ Indiana\"", "question": "Who got high assists for team @ Indiana?", "context": "CREATE TABLE table_27700375_8 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_27700375_8 WHERE high_assists = \"Devin Harris (6)\"", "question": "How many record data were written when Devin Harris (6) was High Assists?", "context": "CREATE TABLE table_27700375_8 (record VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_27700375_8 WHERE date = \"January 5\"", "question": "How many games were held on January 5?", "context": "CREATE TABLE table_27700375_8 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27700530_11 WHERE team = \"Houston\"", "question": "Who had highest assists at the game against Houston?", "context": "CREATE TABLE table_27700530_11 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_27700375_7 WHERE game = 23", "question": "what is the date of the game 23?", "context": "CREATE TABLE table_27700375_7 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_27700375_6 WHERE high_points = \"Anthony Morrow (24)\"", "question": "If the high points were by Anthony Morrow (24), what was the team?", "context": "CREATE TABLE table_27700375_6 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_27700375_6 WHERE high_rebounds = \"Derrick Favors (8)\"", "question": "In how many games were the high rebounds made by Derrick Favors (8)?", "context": "CREATE TABLE table_27700375_6 (game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27700375_6 WHERE location_attendance = \"Quicken Loans Arena 20,562\"", "question": "If the location attendance was Quicken Loans Arena 20,562, who had the High Assists?", "context": "CREATE TABLE table_27700375_6 (high_assists VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_27700375_6 WHERE location_attendance = \"Prudential Center 15,086\"", "question": "Which game number was located in Prudential Center 15,086?", "context": "CREATE TABLE table_27700375_6 (game INTEGER, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_27700375_6 WHERE high_assists = \"Terrence Williams (9)\"", "question": "In how many games did Terrence Williams (9) have High assists?", "context": "CREATE TABLE table_27700375_6 (score VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27700530_10 WHERE high_assists = \"Gilbert Arenas (9)\"", "question": "What is the location and attendance of the game when gilbert arenas (9) had the high assists?", "context": "CREATE TABLE table_27700530_10 (location_attendance VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT date FROM table_27700530_10 WHERE record = \"18\u201312\"", "question": "What is the date where the record was 18\u201312?", "context": "CREATE TABLE table_27700530_10 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_27700530_10 WHERE high_assists = \"Jameer Nelson (10)\"", "question": "What is the date when  jameer nelson (10) had the high assists?", "context": "CREATE TABLE table_27700530_10 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT record FROM table_27700530_10 WHERE high_points = \"Jameer Nelson (19)\"", "question": "What is the record when jameer nelson (19) had the  high points?", "context": "CREATE TABLE table_27700530_10 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27700530_13 WHERE date = \"March 9\"", "question": "What was the location and attendance on March 9?", "context": "CREATE TABLE table_27700530_13 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_27700530_9 WHERE game = 13", "question": "How many games were numbered 13?", "context": "CREATE TABLE table_27700530_9 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_27700530_9 WHERE team = \"Minnesota\"", "question": "What was the team's record when they played minnesota?", "context": "CREATE TABLE table_27700530_9 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_27700530_9 WHERE date = \"November 10\"", "question": "What was the team's record on november 10?", "context": "CREATE TABLE table_27700530_9 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27704187_10 WHERE date = \"March 26\"", "question": "Who had the high assists on March 26?", "context": "CREATE TABLE table_27704187_10 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_27704187_10 WHERE team = \"Milwaukee\"", "question": "What was the season record when the team played against Milwaukee?", "context": "CREATE TABLE table_27704187_10 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_27703902_9 WHERE game = 81", "question": "Who had the high points in game is 81?", "context": "CREATE TABLE table_27703902_9 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_27704187_11 WHERE date = \"April 8\"", "question": "What game number was played on april 8?", "context": "CREATE TABLE table_27704187_11 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27704187_11 WHERE date = \"April 8\"", "question": "Who had the high rebounds on april 8?", "context": "CREATE TABLE table_27704187_11 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27704187_11 WHERE game = 75", "question": "Where did they play and how many attended game number 75?", "context": "CREATE TABLE table_27704187_11 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27704187_7 WHERE team = \"Boston\"", "question": "Who did the high rebounds in the game against Boston?", "context": "CREATE TABLE table_27704187_7 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27704187_7 WHERE team = \"Detroit\"", "question": "Where was the game against Detroit played?", "context": "CREATE TABLE table_27704187_7 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_27712180_13 WHERE game = 3", "question": "What was the date of game #3?", "context": "CREATE TABLE table_27712180_13 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_27712180_13 WHERE date = \"May 6\"", "question": "What was the name of the opposing team on the May 6 game?", "context": "CREATE TABLE table_27712180_13 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(2010 AS _11) FROM table_27712_2 WHERE country = \"Brazil\"", "question": "How many data were given on 2010/2011 in Brazil?", "context": "CREATE TABLE table_27712_2 (country VARCHAR)"}, {"answer": "SELECT MAX(overall_goals_scored) FROM table_27708484_3 WHERE stadium = \"Moses Mabhida stadium\"", "question": "how many overall goals were scored at moses mabhida stadium?", "context": "CREATE TABLE table_27708484_3 (overall_goals_scored INTEGER, stadium VARCHAR)"}, {"answer": "SELECT COUNT(matches_played) FROM table_27708484_3 WHERE average_goals_scored_per_match = \"1.25\"", "question": "how many matches were played that average goals scored 1.25?", "context": "CREATE TABLE table_27708484_3 (matches_played VARCHAR, average_goals_scored_per_match VARCHAR)"}, {"answer": "SELECT MIN(overall_attendance) FROM table_27708484_3 WHERE overall_goals_scored = 19", "question": "what is the minimum overall attendance where the goals scored were 19?", "context": "CREATE TABLE table_27708484_3 (overall_attendance INTEGER, overall_goals_scored VARCHAR)"}, {"answer": "SELECT elevation FROM table_27708484_3 WHERE city = \"Port Elizabeth\"", "question": "what is the elevation for port elizabeth?", "context": "CREATE TABLE table_27708484_3 (elevation VARCHAR, city VARCHAR)"}, {"answer": "SELECT average_attendance_per_match FROM table_27708484_3 WHERE elevation = \"1500 m\"", "question": "what is the average attendance per match wheree the elevation is 1500 m?", "context": "CREATE TABLE table_27708484_3 (average_attendance_per_match VARCHAR, elevation VARCHAR)"}, {"answer": "SELECT record FROM table_27712180_6 WHERE date = \"November 19\"", "question": "What is the record for the date november 19?", "context": "CREATE TABLE table_27712180_6 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_27712180_7 WHERE score = \"W 90\u201377 (OT)\"", "question": "Name the high points for w 90\u201377 (ot)", "context": "CREATE TABLE table_27712180_7 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_27712180_7 WHERE date = \"December 18\"", "question": "Name the team for december 18", "context": "CREATE TABLE table_27712180_7 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27712702_11 WHERE team = \"Detroit\"", "question": "Who had the high assists against detroit?", "context": "CREATE TABLE table_27712702_11 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_27712702_11 WHERE date = \"March 27\"", "question": "Who was the other team on march 27?", "context": "CREATE TABLE table_27712702_11 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_27712702_11 WHERE record = \"46\u201324\"", "question": "what was the game number where the record was 46\u201324?", "context": "CREATE TABLE table_27712702_11 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_27712702_11 WHERE date = \"March 27\"", "question": "What was the game number on march 27?", "context": "CREATE TABLE table_27712702_11 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_27712702_11", "question": "What is the largest game number?", "context": "CREATE TABLE table_27712702_11 (game INTEGER)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_27712451_6 WHERE date = \"December 8\"", "question": "How many high rebounds took place on December 8?", "context": "CREATE TABLE table_27712451_6 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_27712451_6 WHERE date = \"December 10\"", "question": "What are December 10's high points?", "context": "CREATE TABLE table_27712451_6 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_27713030_11 WHERE location_attendance = \"Philips Arena 20,024\"", "question": "How many entries are shown for high rebounds for the philips arena 20,024 game?", "context": "CREATE TABLE table_27713030_11 (high_rebounds VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_27713030_11 WHERE score = \"W 94\u201388 (OT)\"", "question": "Who was the opponent for the game with a score of w 94\u201388 (ot)?", "context": "CREATE TABLE table_27713030_11 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_27713030_11 WHERE location_attendance = \"American Airlines Arena 19,825\"", "question": "What was the record for the location and attendance of american airlines arena 19,825?", "context": "CREATE TABLE table_27713030_11 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_points FROM table_27713030_12 WHERE date = \"April 8\"", "question": "What were the high points on April 8?", "context": "CREATE TABLE table_27713030_12 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_27713030_12 WHERE game = 80", "question": "How many different items appear in the high rebounds column in game 80?", "context": "CREATE TABLE table_27713030_12 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_27713030_12 WHERE team = \"Boston\"", "question": "What was the date when Boston was the team?", "context": "CREATE TABLE table_27713030_12 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_27713030_3 WHERE date = \"October 13\"", "question": "Which game was played on October 13?", "context": "CREATE TABLE table_27713030_3 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27713030_3 WHERE date = \"October 18\"", "question": "What is the location and attendance on October 18?", "context": "CREATE TABLE table_27713030_3 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_27713030_3 WHERE game = 6", "question": "Who was the opposing team in game 6?", "context": "CREATE TABLE table_27713030_3 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_27713030_7", "question": "What game in the season does this list start?", "context": "CREATE TABLE table_27713030_7 (game INTEGER)"}, {"answer": "SELECT score FROM table_27713030_8 WHERE team = \"Detroit\"", "question": "What was the team's score against detroit?", "context": "CREATE TABLE table_27713030_8 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_27715173_10 WHERE date = \"March 12\"", "question": "How many games were held on March 12?", "context": "CREATE TABLE table_27715173_10 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_27715173_10 WHERE high_rebounds = \"Tim Duncan (12)\"", "question": "What was the team score when Tim Duncan (12) got the high rebounds?", "context": "CREATE TABLE table_27715173_10 (score VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27715173_12 WHERE game = 1", "question": "Who was the high rebounder on game 1?", "context": "CREATE TABLE table_27715173_12 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_27715173_12 WHERE series = \"2\u20133\"", "question": "What was the score for series 2\u20133?", "context": "CREATE TABLE table_27715173_12 (score VARCHAR, series VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27714573_1 WHERE us_viewers__millions_ = \"20.5\"", "question": "who are the directors of the episode that had 20.5 millions of north american viewers? ", "context": "CREATE TABLE table_27714573_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_27714573_1 WHERE directed_by = \"Michael Lembeck\"", "question": "how many millions of north american viewers had the episode whose director was Michael Lembeck? ", "context": "CREATE TABLE table_27714573_1 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_27714573_1 WHERE production_code_s_ = 225560", "question": "who are the writers of the episode whose production code(s) is 225560? ", "context": "CREATE TABLE table_27714573_1 (written_by VARCHAR, production_code_s_ VARCHAR)"}, {"answer": "SELECT MAX(no_s__in_series) FROM table_27714985_1 WHERE written_by = \"Gregory S. Malins\"", "question": "What is the last episode in the series written by Gregory S. Malins?", "context": "CREATE TABLE table_27714985_1 (no_s__in_series INTEGER, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27714985_1 WHERE us_viewers__millions_ = \"23.2\"", "question": "What was the broadcast date of episodes that were watched by 23.2 million viewers?", "context": "CREATE TABLE table_27714985_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(production_code_s_) FROM table_27714985_1 WHERE written_by = \"Patty Lin\"", "question": "What is the maximum production code of an episode written by Patty Lin?", "context": "CREATE TABLE table_27714985_1 (production_code_s_ INTEGER, written_by VARCHAR)"}, {"answer": "SELECT MIN(no_s__in_season) FROM table_27714985_1 WHERE production_code_s_ = 226407", "question": "What is the episode number of the episode whose production code is 226407?", "context": "CREATE TABLE table_27714985_1 (no_s__in_season INTEGER, production_code_s_ VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_27713890_1 WHERE us_viewers__millions_ = \"24.8\"", "question": "Wha episode number in the series had 24.8 million u.s. viewers?", "context": "CREATE TABLE table_27713890_1 (no_in_series INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_27713890_1 WHERE us_viewers__millions_ = \"24.8\"", "question": "What is the production code that had 24.8 million u.s. viewers?", "context": "CREATE TABLE table_27713890_1 (production_code INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT production_code FROM table_27713890_1 WHERE us_viewers__millions_ = \"23.9\"", "question": "What is the production code for the episode that had 23.9 million u.s. viewers?", "context": "CREATE TABLE table_27713890_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27715173_6 WHERE record = \"10-1\"", "question": "Where was the game played where the record was 10-1?", "context": "CREATE TABLE table_27715173_6 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_27715173_6 WHERE game = 3", "question": "What was the score for game 3?", "context": "CREATE TABLE table_27715173_6 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_27715173_6 WHERE date = \"November 24\"", "question": "How many records are there for the game on november 24?", "context": "CREATE TABLE table_27715173_6 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_27715173_6 WHERE score = \"W 116\u201393 (OT)\"", "question": "What date was the game with a score of w 116\u201393 (ot)?", "context": "CREATE TABLE table_27715173_6 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27715173_6 WHERE score = \"W 107\u201395 (OT)\"", "question": "Who had the high assists when the score was w 107\u201395 (ot)?", "context": "CREATE TABLE table_27715173_6 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27716091_1 WHERE production_code = 227412", "question": "who put on the show where the numbers were 227412", "context": "CREATE TABLE table_27716091_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27716091_1 WHERE production_code = 227424", "question": "who put on the show where the numbers were 227424", "context": "CREATE TABLE table_27716091_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27721131_10 WHERE team = \"@ Detroit\"", "question": "Who was the high rebounds of team @ Detroit?", "context": "CREATE TABLE table_27721131_10 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27721131_10 WHERE high_rebounds = \"Andray Blatche (9)\"", "question": "What was the location attendance when Andray Blatche (9) got high rebounds?", "context": "CREATE TABLE table_27721131_10 (location_attendance VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT record FROM table_27721131_10 WHERE date = \"March 6\"", "question": "What was the game record on March 6?", "context": "CREATE TABLE table_27721131_10 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27721131_10 WHERE high_points = \"Jordan Crawford (27)\"", "question": "Who got high rebounds when Jordan Crawford (27) got high points?", "context": "CREATE TABLE table_27721131_10 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27721131_2 WHERE score = \"W 97\u201394 (OT)\"", "question": "Who's in the high assists with a w 97\u201394 (ot) score?", "context": "CREATE TABLE table_27721131_2 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_27721131_2 WHERE high_rebounds = \"JaVale McGee (5)\"", "question": "What's the maximum game in the  javale mcgee (5) high rebounds?", "context": "CREATE TABLE table_27721131_2 (game INTEGER, high_rebounds VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_27721131_2 WHERE high_points = \"Andray Blatche (17)\"", "question": "What's the score in andray blatche (17) high points?", "context": "CREATE TABLE table_27721131_2 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27721131_2 WHERE location_attendance = \"Verizon Center 9,263\"", "question": "Who's in the high rebounds in the  verizon center 9,263 location attendance?", "context": "CREATE TABLE table_27721131_2 (high_rebounds VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27721131_2 WHERE team = \"Milwaukee\"", "question": "What's the location attendance of the milwaukee team?", "context": "CREATE TABLE table_27721131_2 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_27721131_2 WHERE high_assists = \"John Wall (9)\" AND score = \"W 97\u201383 (OT)\"", "question": "What's the team number with John Wall (9) in high assists and a w 97\u201383 (ot) score?", "context": "CREATE TABLE table_27721131_2 (team VARCHAR, high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27721131_11 WHERE game = 78", "question": "Who had the highest assists during game 78?", "context": "CREATE TABLE table_27721131_11 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_27721131_6 WHERE high_assists = \"John Wall (11)\"", "question": "What is the date where  john wall (11) had the high assists?", "context": "CREATE TABLE table_27721131_6 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT team FROM table_27721131_6 WHERE date = \"November 25\"", "question": "What is the team they played on november 25?", "context": "CREATE TABLE table_27721131_6 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_27721131_6 WHERE date = \"November 25\"", "question": "What is the record for the game on november 25?", "context": "CREATE TABLE table_27721131_6 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_27721131_6 WHERE high_points = \"Andray Blatche , JaVale McGee (20)\"", "question": "Which team played them when andray blatche , javale mcgee (20) had the high points?", "context": "CREATE TABLE table_27721131_6 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_27721131_6 WHERE high_points = \"Andray Blatche , Al Thornton (20)\"", "question": "What was the score when andray blatche , al thornton (20) had the high points?", "context": "CREATE TABLE table_27721131_6 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_27721131_6 WHERE team = \"Houston\"", "question": "How many games are shown against Houston?", "context": "CREATE TABLE table_27721131_6 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_27721131_8 WHERE game = 45", "question": "How many teams listed for game 45?", "context": "CREATE TABLE table_27721131_8 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_27722408_11 WHERE team = \"Washington\"", "question": "What was the score when the Celtics played Washington at home?", "context": "CREATE TABLE table_27722408_11 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27722408_11 WHERE date = \"April 8\"", "question": "Who had the most assists and how many did they have on April 8?", "context": "CREATE TABLE table_27722408_11 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_27722408_10 WHERE game = 61", "question": "Name the total number of record for 61", "context": "CREATE TABLE table_27722408_10 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27722408_8 WHERE team = \"San Antonio\"", "question": "What was location and attendance for the game where the Celtics played San Antonio? ", "context": "CREATE TABLE table_27722408_8 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_27722734_11 WHERE team = \"Denver\"", "question": "Name the score for denver", "context": "CREATE TABLE table_27722734_11 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_27722734_11 WHERE date = \"April 8\"", "question": "Name the high points for april 8", "context": "CREATE TABLE table_27722734_11 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27722734_10 WHERE team = \"Charlotte\"", "question": "what was the location for charlotte?", "context": "CREATE TABLE table_27722734_10 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_27722734_10 WHERE date = \"March 27\"", "question": "who had high points on march 27?", "context": "CREATE TABLE table_27722734_10 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_27722734_12", "question": "What number was the first game?", "context": "CREATE TABLE table_27722734_12 (game INTEGER)"}, {"answer": "SELECT record FROM table_27723228_12 WHERE score = \"W 101\u201393 (OT)\"", "question": "Name the record for w 101\u201393 (ot)", "context": "CREATE TABLE table_27723228_12 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27723228_12 WHERE game = 81", "question": "Name the high rebounds for 81 game", "context": "CREATE TABLE table_27723228_12 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_27723228_12 WHERE team = \"Indiana\"", "question": "Name the score for indiana", "context": "CREATE TABLE table_27723228_12 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27723228_11 WHERE team = \"Dallas\"", "question": "What was the location and attendance of the game against Dallas?", "context": "CREATE TABLE table_27723228_11 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27723228_8 WHERE record = \"14\u20137\"", "question": "Who had the high rebounds when the record was 14\u20137?", "context": "CREATE TABLE table_27723228_8 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_27723228_8 WHERE game = 30", "question": "How many people are listed for high rebounds on game 30?", "context": "CREATE TABLE table_27723228_8 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_27723228_8 WHERE high_points = \"Chris Paul (16)\"", "question": "What was the record when chris paul (16) had the high points?", "context": "CREATE TABLE table_27723228_8 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_27723228_8 WHERE score = \"L 84\u201396 (OT)\"", "question": "What is the record when the score was l 84\u201396 (ot)?", "context": "CREATE TABLE table_27723228_8 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27723228_8 WHERE record = \"16\u201311\"", "question": "Where was the game played when the record was 16\u201311?", "context": "CREATE TABLE table_27723228_8 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_27723228_7 WHERE team = \"Miami\"", "question": "Name the score for miami", "context": "CREATE TABLE table_27723228_7 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27723228_7 WHERE score = \"W 107\u201399 (OT)\"", "question": "Name the high assists for w 107\u201399 (ot)", "context": "CREATE TABLE table_27723228_7 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT predecessor FROM table_27730_9 WHERE ekavian = \"vreme\"", "question": "What's the predecessor of the Ekavian word vreme?", "context": "CREATE TABLE table_27730_9 (predecessor VARCHAR, ekavian VARCHAR)"}, {"answer": "SELECT ikavian FROM table_27730_9 WHERE ijekavian = \"lijep\"", "question": "What's the Ikavian translation of the Ijekavian word lijep?", "context": "CREATE TABLE table_27730_9 (ikavian VARCHAR, ijekavian VARCHAR)"}, {"answer": "SELECT ijekavian FROM table_27730_9 WHERE ikavian = \"grijati\"", "question": "What's the ijekavian translation of the ikavian word grijati?", "context": "CREATE TABLE table_27730_9 (ijekavian VARCHAR, ikavian VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_27723526_9 WHERE date = \"December 21\"", "question": "Who had highest assists at game on December 21?", "context": "CREATE TABLE table_27723526_9 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27723526_9 WHERE team = \"Milwaukee\"", "question": "What location did the Mavericks play against Milwaukee?", "context": "CREATE TABLE table_27723526_9 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27723526_17 WHERE date = \"June 9\"", "question": "What is the high rebound for June 9?", "context": "CREATE TABLE table_27723526_17 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27723526_17 WHERE game = 5", "question": "Who is the high rebound where game is 5?", "context": "CREATE TABLE table_27723526_17 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_27733258_11 WHERE date = \"April 1\"", "question": "What company plays on april 1?", "context": "CREATE TABLE table_27733258_11 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_27733258_6 WHERE score = \"L 110\u2013112 (OT)\"", "question": "Name the high points for l 110\u2013112 (ot)", "context": "CREATE TABLE table_27733258_6 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27733258_6 WHERE score = \"L 105\u2013123 (OT)\"", "question": "Name the location attendance for  l 105\u2013123 (ot)", "context": "CREATE TABLE table_27733258_6 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_27733258_7 WHERE game = 29", "question": "what date was game 29?", "context": "CREATE TABLE table_27733258_7 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_27733258_8 WHERE date = \"January 9\"", "question": "Who did the team play on january 9?", "context": "CREATE TABLE table_27733258_8 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27733909_10 WHERE game = 75", "question": "Who had the highest assists in game 75?", "context": "CREATE TABLE table_27733909_10 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_27733909_10 WHERE date = \"April 8\"", "question": "How many locations did the game that was on April 8 take place at?", "context": "CREATE TABLE table_27733909_10 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_27733909_1 WHERE date = \"October 6\"", "question": "what is the overall number of times when the calendar showed october 6", "context": "CREATE TABLE table_27733909_1 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_27733909_1 WHERE date = \"October 20\"", "question": "what is the most number where the calendar shows october 20", "context": "CREATE TABLE table_27733909_1 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_27733909_1 WHERE game = 5", "question": "what are the times where the play is 5", "context": "CREATE TABLE table_27733909_1 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_27733909_5 WHERE date = \"November 21\"", "question": "What was the score in the game on November 21? ", "context": "CREATE TABLE table_27733909_5 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_27733909_5 WHERE game = 11", "question": "Who had the most points and how many did they have in game 11?", "context": "CREATE TABLE table_27733909_5 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_27734286_6 WHERE game = 29", "question": "List records for game 29.", "context": "CREATE TABLE table_27734286_6 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_27734286_1 WHERE high_points = \"C. J. Miles (20)\"", "question": "What record has  c. j. miles (20) in the high points?", "context": "CREATE TABLE table_27734286_1 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27734286_1 WHERE location_attendance = \"Honda Center 15,625\"", "question": "Who in the high rebounds is in the honda center 15,625  location attendance?", "context": "CREATE TABLE table_27734286_1 (high_rebounds VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_points FROM table_27734286_1 WHERE team = \"@ L.A. Clippers\"", "question": "Who is in the high points in the  @ l.a. clippers team?", "context": "CREATE TABLE table_27734286_1 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_27734286_1 WHERE high_points = \"Al Jefferson (24)\"", "question": "What's the score in  al jefferson (24) high points?", "context": "CREATE TABLE table_27734286_1 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_27734286_1 WHERE date = \"October 7\"", "question": "What`s the score in October 7.", "context": "CREATE TABLE table_27734286_1 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27734286_1 WHERE team = \"@ Portland\"", "question": "What's the location attendance of the  @ portland team?", "context": "CREATE TABLE table_27734286_1 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27734286_7 WHERE date = \"January 8\"", "question": "Who had the high assist total on january 8?", "context": "CREATE TABLE table_27734286_7 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27734286_7 WHERE game = 38", "question": "Who had the high assists for game number 38?", "context": "CREATE TABLE table_27734286_7 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_27734286_7 WHERE date = \"January 7\"", "question": "How many games did they play on january 7?", "context": "CREATE TABLE table_27734286_7 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_27734577_11 WHERE team = \"Boston\"", "question": "What date did the Hawks play against Boston?", "context": "CREATE TABLE table_27734577_11 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_27734577_2 WHERE high_rebounds = \"Zaza Pachulia (6)\"", "question": "List the highest number of assists when zaza pachulia (6) had the most rebounds. ", "context": "CREATE TABLE table_27734577_2 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT team FROM table_27734577_2 WHERE date = \"October 21\"", "question": "Which team was the opponent on october 21?", "context": "CREATE TABLE table_27734577_2 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_27734577_2 WHERE score = \"L 85\u201394 (OT)\"", "question": "Who corned the most points for the game that ended with a score of l 85\u201394 (ot)?", "context": "CREATE TABLE table_27734577_2 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_27734577_2 WHERE high_points = \"Josh Powell (13)\"", "question": "what was the final score of the game where josh powell (13) scored the most points?", "context": "CREATE TABLE table_27734577_2 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_27734577_8 WHERE team = \"@ Miami\"", "question": "What's the record of the @ miami team?", "context": "CREATE TABLE table_27734577_8 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(record) FROM table_27734577_8 WHERE date = \"January 2\"", "question": "How many records where in January 2?", "context": "CREATE TABLE table_27734577_8 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27734577_8 WHERE high_points = \"Jamal Crawford (20)\"", "question": "What are the high rebounds in the  jamal crawford (20) high points?", "context": "CREATE TABLE table_27734577_8 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27734577_8 WHERE game = 45", "question": "What are the high rebounds in the 45 game?", "context": "CREATE TABLE table_27734577_8 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_27734577_8 WHERE team = \"New Orleans\"", "question": "What's the date of the new orleans team ?", "context": "CREATE TABLE table_27734577_8 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_27734577_8 WHERE score = \"W 110\u201387 (OT)\"", "question": "What team has a score of  w 110\u201387 (ot)?", "context": "CREATE TABLE table_27734577_8 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_27734769_9 WHERE high_rebounds = \"Marcus Camby (13)\"", "question": "What was the game record if Marcus Camby (13) got the high rebounds?", "context": "CREATE TABLE table_27734769_9 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27734769_9 WHERE team = \"Minnesota\"", "question": "Who did the high rebounds for the team Minnesota?", "context": "CREATE TABLE table_27734769_9 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_27734769_9 WHERE date = \"January 19\"", "question": "How many scores where achieved on January 19?", "context": "CREATE TABLE table_27734769_9 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT lmp2_winning_driver FROM table_27743641_2 WHERE lmp1_winning_team = \"No. 20 Oryx Dyson Racing\"", "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 gt_winning_team FROM table_27743641_2 WHERE gtc_winning_team = \"No. 54 Black Swan Racing\"", "question": "Who were the GT winning team when the GTC winning team was No. 54 Black Swan Racing?", "context": "CREATE TABLE table_27743641_2 (gt_winning_team VARCHAR, gtc_winning_team VARCHAR)"}, {"answer": "SELECT gt_winning_team FROM table_27743641_2 WHERE results = \"Report\"", "question": "Who were the GT winning team when the results were \"report\"?", "context": "CREATE TABLE table_27743641_2 (gt_winning_team VARCHAR, results VARCHAR)"}, {"answer": "SELECT date FROM table_27734769_8 WHERE high_assists = \"Andre Miller (7)\"", "question": "what is the date the high assists was andre miller (7)?", "context": "CREATE TABLE table_27734769_8 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT date FROM table_27734769_8 WHERE high_points = \"LaMarcus Aldridge (36)\"", "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 score FROM table_27734769_8 WHERE team = \"Milwaukee\"", "question": "What is the score when the team is milwaukee?", "context": "CREATE TABLE table_27734769_8 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_27734769_8 WHERE high_assists = \"Andre Miller (7)\"", "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_rebounds = \"Marcus Camby (18)\"", "question": "How many times was the high rebounds by marcus camby (18)?", "context": "CREATE TABLE table_27734769_8 (date VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_27734769_8 WHERE high_rebounds = \"LaMarcus Aldridge (6)\"", "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 high_assists FROM table_27744844_7 WHERE game = 35", "question": "Who had the most assists and how many did they have in game 35?", "context": "CREATE TABLE table_27744844_7 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27744844_7 WHERE date = \"January 19\"", "question": "Who had the most rebounds and how many did they have on January 19? ", "context": "CREATE TABLE table_27744844_7 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_27744976_11 WHERE date = \"April 9\"", "question": "Which team played on April 9?", "context": "CREATE TABLE table_27744976_11 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_27744844_5 WHERE date = \"November 6\"", "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_assists FROM table_27744976_6 WHERE date = \"November 17\"", "question": "Who had the high assists on November 17?", "context": "CREATE TABLE table_27744976_6 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27744976_10 WHERE date = \"March 12\"", "question": "Who had highest rebounds during game on March 12?", "context": "CREATE TABLE table_27744976_10 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_27744976_10 WHERE team = \"Indiana\"", "question": "What was the rocket's record when they played against Indiana?", "context": "CREATE TABLE table_27744976_10 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_27755040_1 WHERE production_code = 175255", "question": "How many episodes in the season had production code of 175255?", "context": "CREATE TABLE table_27755040_1 (no_in_season VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT high_points FROM table_27755603_10 WHERE date = \"March 25\"", "question": "What were the high points on March 25?", "context": "CREATE TABLE table_27755603_10 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_27755603_10 WHERE date = \"March 18\"", "question": "Who was the team on March 18?", "context": "CREATE TABLE table_27755603_10 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_27755603_10 WHERE team = \"Washington\"", "question": "What was the high points when the team was Washington?", "context": "CREATE TABLE table_27755603_10 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_27755603_10 WHERE location_attendance = \"The Palace of Auburn Hills 15,166\"", "question": "What was the game number when the location attendance was the Palace of Auburn Hills 15,166?", "context": "CREATE TABLE table_27755603_10 (game INTEGER, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_27755603_11 WHERE date = \"April 6\"", "question": "What team did they play on april 6?", "context": "CREATE TABLE table_27755603_11 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_27755603_11 WHERE date = \"April 5\"", "question": "What numbered game did they play on april 5?", "context": "CREATE TABLE table_27755603_11 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT game FROM table_27755603_11 WHERE team = \"Chicago\"", "question": "What numbered game did they play chicago?", "context": "CREATE TABLE table_27755603_11 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27755603_7 WHERE team = \"New Orleans\"", "question": "Who had the most assists agains New Orleans?", "context": "CREATE TABLE table_27755603_7 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_27755603_7 WHERE date = \"December 19\"", "question": "For how many games on December 19 is there information on who scored the most rebounds?", "context": "CREATE TABLE table_27755603_7 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_27755603_2 WHERE high_rebounds = \"Greg Monroe (8)\"", "question": "What's the record in the game where Greg Monroe (8) did the high rebounds?", "context": "CREATE TABLE table_27755603_2 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27755603_2 WHERE high_points = \"Rodney Stuckey (16)\"", "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 team FROM table_27755603_2 WHERE high_points = \"Austin Daye (16)\"", "question": "Who was the opponent in the game in which Austin Daye (16) did the most high points?", "context": "CREATE TABLE table_27755603_2 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27755603_2 WHERE high_assists = \"Will Bynum (5)\"", "question": "Where was the game in which Will Bynum (5) did the high assists played?", "context": "CREATE TABLE table_27755603_2 (location_attendance VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT team FROM table_27755784_10 WHERE high_assists = \"Stephen Curry (7)\" AND high_points = \"Monta Ellis (27)\"", "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 MAX(game) FROM table_27755784_10", "question": "What is the highest game number?", "context": "CREATE TABLE table_27755784_10 (game INTEGER)"}, {"answer": "SELECT score FROM table_27755784_10 WHERE team = \"@ Dallas\"", "question": "What is the score when the team is @ dallas?", "context": "CREATE TABLE table_27755784_10 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27755603_8 WHERE date = \"January 14\"", "question": "Name the high rebounds for january 14", "context": "CREATE TABLE table_27755603_8 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_27755603_8 WHERE date = \"January 12\"", "question": "Name the number of score for january 12", "context": "CREATE TABLE table_27755603_8 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27755603_8 WHERE high_points = \"Austin Daye , Tracy McGrady , Tayshaun Prince (20)\"", "question": "Name the location attendance for  austin daye , tracy mcgrady , tayshaun prince (20)", "context": "CREATE TABLE table_27755603_8 (location_attendance VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_27755784_11 WHERE high_points = \"Stephen Curry , Dorell Wright (27)\"", "question": "Name the number of date for stephen curry , dorell wright (27)", "context": "CREATE TABLE table_27755784_11 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_27755784_11 WHERE game = 77", "question": "Name the high rebounds for 77 game", "context": "CREATE TABLE table_27755784_11 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_27755784_6 WHERE date = \"November 10\"", "question": "What was the record after the game on November 10?", "context": "CREATE TABLE table_27755784_6 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_27755784_8 WHERE high_points = \"Monta Ellis (29)\"", "question": "What is the score when the hight points is  Monta Ellis (29)?", "context": "CREATE TABLE table_27755784_8 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_27755784_8 WHERE high_points = \"David Lee (31)\"", "question": "How many teams have hight points listed as David Lee (31)?", "context": "CREATE TABLE table_27755784_8 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_27755784_8 WHERE high_points = \"Stephen Curry (32)\"", "question": "What is the record when the high points is listed as Stephen Curry (32)?", "context": "CREATE TABLE table_27755784_8 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_27755784_8 WHERE date = \"January 7\"", "question": "What is the record when the date is January 7?", "context": "CREATE TABLE table_27755784_8 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_27755784_8 WHERE team = \"New Orleans\"", "question": "What is the date when the team is listed as New Orleans?", "context": "CREATE TABLE table_27755784_8 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_27756164_11 WHERE high_assists = \"Darren Collison (7)\"", "question": "What was the team where Darren Collison (7) scored high assists?", "context": "CREATE TABLE table_27756164_11 (team VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT date FROM table_27756164_2 WHERE high_points = \"Roy Hibbert (27)\"", "question": "When did the Roy Hibbert (27) did the high points?", "context": "CREATE TABLE table_27756164_2 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_27756164_2 WHERE high_rebounds = \"Roy Hibbert (16)\"", "question": "In how many different games did Roy Hibbert (16) did the most high rebounds?", "context": "CREATE TABLE table_27756164_2 (game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_27756164_2 WHERE high_points = \"Danny Granger (30)\"", "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 high_points FROM table_27756014_6 WHERE team = \"Houston\"", "question": "Who scored the most points when the Bucks played against Houston?", "context": "CREATE TABLE table_27756014_6 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_27756014_6 WHERE game = 22", "question": "What date was game number 22 on?", "context": "CREATE TABLE table_27756014_6 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_27756014_6 WHERE date = \"December 10\"", "question": "How many people scored the most points during the game on December 10?", "context": "CREATE TABLE table_27756014_6 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27756164_8 WHERE team = \"Chicago\"", "question": "When the team is chicago what is the location attendence?", "context": "CREATE TABLE table_27756164_8 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_27756164_8 WHERE team = \"Orlando\"", "question": "What is the score when the team is Orlando?", "context": "CREATE TABLE table_27756164_8 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_27756572_10 WHERE date = \"March 26\"", "question": "What was the score in the game on March 26?", "context": "CREATE TABLE table_27756572_10 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_27756572_10 WHERE team = \"Philadelphia\"", "question": "What was the record when the Clippers played Philadelphia? ", "context": "CREATE TABLE table_27756572_10 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27756474_2 WHERE game = 5", "question": "What location and attendance were there for game 5?", "context": "CREATE TABLE table_27756474_2 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_27756474_2 WHERE high_points = \"Rudy Gay (12)\"", "question": "Which game did rudy gay (12) have the highest points?", "context": "CREATE TABLE table_27756474_2 (game VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_27756474_2 WHERE team = \"Caja Laboral\"", "question": "How many high assists where there for the team of caja laboral?", "context": "CREATE TABLE table_27756474_2 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT game FROM table_27756474_2 WHERE high_rebounds = \"Marc Gasol (10)\"", "question": "Which game did marc gasol (10) have the high rebounds?", "context": "CREATE TABLE table_27756474_2 (game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_assists FROM table_27756474_2 WHERE date = \"October 6\"", "question": "Who had the high assists on october 6?", "context": "CREATE TABLE table_27756474_2 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_27756474_6 WHERE location_attendance = \"FedExForum 11,283\"", "question": "Name the total number of high assists for  fedexforum 11,283", "context": "CREATE TABLE table_27756474_6 (high_assists VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_27756474_6 WHERE location_attendance = \"US Airways Center 16,470\"", "question": "Name the most game for  us airways center 16,470", "context": "CREATE TABLE table_27756474_6 (game INTEGER, location_attendance VARCHAR)"}, {"answer": "SELECT high_points FROM table_27756572_6 WHERE team = \"Detroit\"", "question": "Who and what were the high points player for the game against Detroit?", "context": "CREATE TABLE table_27756572_6 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(game_site) FROM table_27764201_2 WHERE opponent = \"Rhein Fire\"", "question": "How many times did the Centurions play the Rhein Fire?", "context": "CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game_site FROM table_27764201_2 WHERE opponent = \"Hamburg Sea Devils\"", "question": "Where did the Centurions play the Hamburg Sea Devils?", "context": "CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT kickoff FROM table_27764201_2 WHERE opponent = \"Frankfurt Galaxy\"", "question": "What time was the kickoff against the Frankfurt Galaxy?", "context": "CREATE TABLE table_27764201_2 (kickoff VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(catches) FROM table_27770426_1 WHERE no = 46", "question": "How many total catches did the player with no. 46 have?", "context": "CREATE TABLE table_27770426_1 (catches VARCHAR, no VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_27782699_3 WHERE replaced_by = \"Jakob Michelsen\"", "question": "How did the manager who was replaced by Jakob Michelsen depart?", "context": "CREATE TABLE table_27782699_3 (manner_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_27782699_3 WHERE team = \"AB\"", "question": "What was the AB team's position in table?", "context": "CREATE TABLE table_27782699_3 (position_in_table VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_27782699_3 WHERE replaced_by = \"Kim Fogh\"", "question": "On what date did Kim Fogh replace the previous manager?", "context": "CREATE TABLE table_27782699_3 (date_of_appointment VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_27782699_3 WHERE outgoing_manager = \"Thomas Thomasberg\"", "question": "What was the vacancy date for Thomas Thomasberg?", "context": "CREATE TABLE table_27782699_3 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_27782699_3 WHERE replaced_by = \"Thomas Thomasberg\"", "question": "Which manager was replaced by Thomas Thomasberg?", "context": "CREATE TABLE table_27782699_3 (outgoing_manager VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT MAX(total_dismissals) FROM table_27771406_1 WHERE club = \"Guyana\"", "question": "How many total dismissals did the player for Guyana have?", "context": "CREATE TABLE table_27771406_1 (total_dismissals INTEGER, club VARCHAR)"}, {"answer": "SELECT club FROM table_27771406_1 WHERE tests = 2", "question": "The player for what club had 2 tests?", "context": "CREATE TABLE table_27771406_1 (club VARCHAR, tests VARCHAR)"}, {"answer": "SELECT MAX(stumpings) FROM table_27771406_1", "question": "What is the most amount of stumpings any player had? ", "context": "CREATE TABLE table_27771406_1 (stumpings INTEGER)"}, {"answer": "SELECT club FROM table_27771406_1 WHERE player = \"Cyril Christiani\"", "question": "What club did Cyril Christiani play for? ", "context": "CREATE TABLE table_27771406_1 (club VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(catches) FROM table_27771406_1 WHERE player = \"Clifford McWatt\"", "question": "How many catches did Clifford McWatt have? ", "context": "CREATE TABLE table_27771406_1 (catches INTEGER, player VARCHAR)"}, {"answer": "SELECT points__margin_ FROM table_27786562_1 WHERE top_tens = 24 AND owner = \"David Pearson\"", "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 starts FROM table_27786562_1 WHERE driver = \"Bobby Labonte\"", "question": "Name the starts for bobby labonte", "context": "CREATE TABLE table_27786562_1 (starts VARCHAR, driver VARCHAR)"}, {"answer": "SELECT poles FROM table_27786562_1 WHERE season = 2006", "question": "Name the poles for season 2006", "context": "CREATE TABLE table_27786562_1 (poles VARCHAR, season VARCHAR)"}, {"answer": "SELECT production_code FROM table_27776266_1 WHERE no_in_series = 55", "question": "What was the production code of the episode no. 55 in the series?", "context": "CREATE TABLE table_27776266_1 (production_code VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT production_code FROM table_27776266_1 WHERE us_viewers__million_ = \"14.79\"", "question": "What was the production code of the episode with an audience of 14.79 million in the US?", "context": "CREATE TABLE table_27776266_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27776266_1 WHERE us_viewers__million_ = \"14.11\"", "question": "Who directed the episode with an audience of 14.11 million?", "context": "CREATE TABLE table_27776266_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_27776266_1 WHERE production_code = \"3X6404\"", "question": "What was the title of the episode with a production code of 3x6404?", "context": "CREATE TABLE table_27776266_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2781227_10 WHERE pick = 255", "question": "Which school players have a number of 255", "context": "CREATE TABLE table_2781227_10 (college_junior_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2781227_10 WHERE player = \"Wes Swinson\"", "question": "what educational institute does wes swinson attend", "context": "CREATE TABLE table_2781227_10 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_2781227_10 WHERE player = \"Rick Schuhwerk\"", "question": "which part on the team does rick schuhwerk play", "context": "CREATE TABLE table_2781227_10 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_2781227_4 WHERE college_junior_club_team = \"Brandon Wheat Kings (WHL)\"", "question": "For college/junior/club team is brandon wheat kings (whl) mention all the player name", "context": "CREATE TABLE table_2781227_4 (player VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_2781227_4 WHERE player = \"Jamal Mayers\"", "question": "For player is jamal mayers mention the minimum pick", "context": "CREATE TABLE table_2781227_4 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_2781227_4 WHERE player = \"John Jakopin\"", "question": "For player is john jakopin mention the total number of position ", "context": "CREATE TABLE table_2781227_4 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2781227_4 WHERE nhl_team = \"San Jose Sharks\"", "question": "For nhl team is san jose sharks mention all the college/junior/club team ", "context": "CREATE TABLE table_2781227_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2781227_4 WHERE player = \"Adam Wiesel\"", "question": "For player is adam wiesel mention all the college/junior/club team ", "context": "CREATE TABLE table_2781227_4 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_2781227_2 WHERE player = \"Vlastimil Kroupa\"", "question": "How many values are displayed under pick for Vlastimil Kroupa?", "context": "CREATE TABLE table_2781227_2 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_2781227_2 WHERE player = \"Janne Niinimaa\"", "question": "How many positions does Janne Niinimaa play?", "context": "CREATE TABLE table_2781227_2 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(college_junior_club_team) FROM table_2781227_2 WHERE player = \"Lee Sorochan\"", "question": "How many teams does Lee Sorochan play for?", "context": "CREATE TABLE table_2781227_2 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_2781227_2 WHERE nhl_team = \"Chicago Blackhawks\"", "question": "What player belongs to the Chicago Blackhawks?", "context": "CREATE TABLE table_2781227_2 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(nhl_team) FROM table_2781227_2 WHERE player = \"Maxim Bets\"", "question": "How many teams does Maxim Bets play for?", "context": "CREATE TABLE table_2781227_2 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_2781227_11 WHERE nhl_team = \"Florida Panthers\"", "question": "What was the minimum pick by the Florida Panthers?", "context": "CREATE TABLE table_2781227_11 (pick INTEGER, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2781227_7 WHERE player = \"Ryan Meade\"", "question": "What NHL team picked Ryan Meade for the draft?", "context": "CREATE TABLE table_2781227_7 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2781227_7 WHERE player = \"Ryan Golden\"", "question": "What college team did Ryan Golden come from?", "context": "CREATE TABLE table_2781227_7 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_2781227_7 WHERE pick = 179", "question": "How many different nationalities is pick number 179?", "context": "CREATE TABLE table_2781227_7 (nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2781227_7 WHERE nhl_team = \"Pittsburgh Penguins\"", "question": "What college  team did the pick for Pittsburgh Penguins come from?", "context": "CREATE TABLE table_2781227_7 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2781227_7 WHERE player = \"Tom White\"", "question": "What NHL team picked Tom White?", "context": "CREATE TABLE table_2781227_7 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(weeks_in_top_10) FROM table_27813010_2 WHERE artist = \"Peter Kay\"", "question": "How many weeks in the top 10 was spent by a song performed by Peter Kay?", "context": "CREATE TABLE table_27813010_2 (weeks_in_top_10 INTEGER, artist VARCHAR)"}, {"answer": "SELECT MAX(weeks_in_top_10) FROM table_27813010_2", "question": "How long has the longest song spent in the top 10?", "context": "CREATE TABLE table_27813010_2 (weeks_in_top_10 INTEGER)"}, {"answer": "SELECT college_junior_club_team FROM table_2781227_9 WHERE player = \"Dmitri Gorenko\"", "question": "What college/junior/club team did dmitri gorenko play for?", "context": "CREATE TABLE table_2781227_9 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_2781227_9 WHERE college_junior_club_team = \"Krylja Sovetov (Russia)\"", "question": "What position does krylja sovetov (russia) play?", "context": "CREATE TABLE table_2781227_9 (position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_2781227_9 WHERE player = \"Barrie Moore\"", "question": "What position(s) does barrie moore play?", "context": "CREATE TABLE table_2781227_9 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pac_12_sports) FROM table_27816698_2 WHERE institution = \"California Polytechnic State University\"", "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 founded FROM table_27816698_2 WHERE location = \"Boise, Idaho\"", "question": "When was the institution in boise, idaho founded?", "context": "CREATE TABLE table_27816698_2 (founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT current_conference FROM table_27816698_2 WHERE institution = \"Boise State University\"", "question": "Which conference did  boise state university play at?", "context": "CREATE TABLE table_27816698_2 (current_conference VARCHAR, institution VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_27816698_2 WHERE nickname = \"Titans\"", "question": "When was the Titans founded?", "context": "CREATE TABLE table_27816698_2 (founded INTEGER, nickname VARCHAR)"}, {"answer": "SELECT institution FROM table_27816698_2 WHERE founded = 1932", "question": "Which institution was founded in 1932?", "context": "CREATE TABLE table_27816698_2 (institution VARCHAR, founded VARCHAR)"}, {"answer": "SELECT institution FROM table_27816698_2 WHERE location = \"Bakersfield, California\"", "question": "Which  institution was located in bakersfield, california?", "context": "CREATE TABLE table_27816698_2 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(games_played) FROM table_27816332_2 WHERE total_points = 6", "question": "Name the least games played for 6 points", "context": "CREATE TABLE table_27816332_2 (games_played INTEGER, total_points VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_27821519_1 WHERE no = 50", "question": "who is the manufacturer is no.50?", "context": "CREATE TABLE table_27821519_1 (manufacturer VARCHAR, no VARCHAR)"}, {"answer": "SELECT title FROM table_27823058_1 WHERE written_by = \"Katie Palmer\"", "question": "Which episodes did Katie Palmer write? ", "context": "CREATE TABLE table_27823058_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_27823058_1", "question": "What's the highest series number ? ", "context": "CREATE TABLE table_27823058_1 (series__number INTEGER)"}, {"answer": "SELECT commandery AS capital FROM table_278229_1 WHERE commandery = \"Changsha \u9577\u6c99\"", "question": "when changsha \u9577\u6c99 is the commandery what is the commandery capital?", "context": "CREATE TABLE table_278229_1 (commandery VARCHAR)"}, {"answer": "SELECT MIN(no_of_counties) FROM table_278229_1 WHERE commandery = \"Yidu \u5b9c\u90fd\"", "question": "When yidu \u5b9c\u90fd is the commandery what is the lowest number of countries?", "context": "CREATE TABLE table_278229_1 (no_of_counties INTEGER, commandery VARCHAR)"}, {"answer": "SELECT commandery AS capital FROM table_278229_1 WHERE commandery = \"Nanhai \u5357\u6d77\"", "question": "When nanhai \u5357\u6d77 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 \u9ad8\u6dbc\"", "question": "When gaoliang \u9ad8\u6dbc is the commandery what is the commandery capital?", "context": "CREATE TABLE table_278229_1 (commandery VARCHAR)"}, {"answer": "SELECT title FROM table_27832075_2 WHERE episode__number = \"9-10\"", "question": "What is the title of episode number 9-10?", "context": "CREATE TABLE table_27832075_2 (title VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_27832075_2 WHERE series__number = 69", "question": "How many million U.S. viewers wtched episode 69 of the series?", "context": "CREATE TABLE table_27832075_2 (us_viewers__millions_ VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27832075_2 WHERE episode__number = \"23\"", "question": "Who directed episode number 23 in the season?", "context": "CREATE TABLE table_27832075_2 (directed_by VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT title FROM table_27832075_2 WHERE episode__number = \"12\"", "question": "What is the name of episode number 12 of the season?", "context": "CREATE TABLE table_27832075_2 (title VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT rider_names FROM table_27833186_1 WHERE best_conditioned_horse = \"Basia\"", "question": "What are all the Riders whose best-conditioned horse is Basia?", "context": "CREATE TABLE table_27833186_1 (rider_names VARCHAR, best_conditioned_horse VARCHAR)"}, {"answer": "SELECT distance__miles_ FROM table_27833186_1 WHERE horse_name = \"Koona\"", "question": "What was the distance (in miles) of the championship were the winning horse was Koona?", "context": "CREATE TABLE table_27833186_1 (distance__miles_ VARCHAR, horse_name VARCHAR)"}, {"answer": "SELECT rider_names FROM table_27833186_1 WHERE location = \"Euer Valley, CA\" AND horse_name = \"Magic Sirocco\"", "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 COUNT(rider_names) FROM table_27833186_1 WHERE horse_name = \"OMR Tsunami\"", "question": "How many different riders are there that won riding Omr Tsunami?", "context": "CREATE TABLE table_27833186_1 (rider_names VARCHAR, horse_name VARCHAR)"}, {"answer": "SELECT distance__miles_ FROM table_27833186_1 WHERE best_conditioned_horse = \"Freedom\"", "question": "What was the total distance (in miles) of the championship where the best conditioned horse was Freedom?", "context": "CREATE TABLE table_27833186_1 (distance__miles_ VARCHAR, best_conditioned_horse VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_27833469_1 WHERE us_viewers__millions_ = \"15.8\"", "question": "How many series numbers are there when there were 15.8 u.s. viewers (millions)?", "context": "CREATE TABLE table_27833469_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_27833469_1 WHERE season__number = \"11\"", "question": "What is the title of the episode number 11 of the season?", "context": "CREATE TABLE table_27833469_1 (title VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT series__number FROM table_27833469_1 WHERE season__number = \"10\"", "question": "What is the series number for the episode number 10 of the season?", "context": "CREATE TABLE table_27833469_1 (series__number VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT approximate_translation FROM table_2784232_1 WHERE morphological_category = \"1st. plur. perfect\"", "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 = \"masc. sing. active participle\"", "question": "What are the approximate translations when the morphological category is masc. sing. active participle?", "context": "CREATE TABLE table_2784232_1 (approximate_translation VARCHAR, morphological_category VARCHAR)"}, {"answer": "SELECT COUNT(hebrew_form) FROM table_2784232_1 WHERE arabic_form = \"yuktibu \u064a\u0643\u062a\u0628\"", "question": "How many hebrew forms are there for the arabic form  yuktibu \u064a\u0643\u062a\u0628?", "context": "CREATE TABLE table_2784232_1 (hebrew_form VARCHAR, arabic_form VARCHAR)"}, {"answer": "SELECT COUNT(arabic_form) FROM table_2784232_1 WHERE morphological_category = \"1st. plur. perfect\"", "question": "How many Arabic forms are there for the 1st. plur. perfect category?", "context": "CREATE TABLE table_2784232_1 (arabic_form VARCHAR, morphological_category VARCHAR)"}, {"answer": "SELECT viewers__millions_ FROM table_27847088_1 WHERE series_no = 45", "question": "How many were the viewers (in millions) of the series no. 45?", "context": "CREATE TABLE table_27847088_1 (viewers__millions_ VARCHAR, series_no VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_27862483_4 WHERE score = \"7-6\"", "question": "How many games did UCLA's baseball team win with a score 7-6 during May of 2010?", "context": "CREATE TABLE table_27862483_4 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT total_wins FROM table_27864661_6 WHERE first_title = 2004", "question": "How many wins are listed when the first title is 2004?", "context": "CREATE TABLE table_27864661_6 (total_wins VARCHAR, first_title VARCHAR)"}, {"answer": "SELECT network FROM table_27871460_2 WHERE state_or_territory = \"Illinois\"", "question": "Which network was located in Illinois?", "context": "CREATE TABLE table_27871460_2 (network VARCHAR, state_or_territory VARCHAR)"}, {"answer": "SELECT MAX(channel_number) FROM table_27871460_2", "question": "What is the highest channel number?", "context": "CREATE TABLE table_27871460_2 (channel_number INTEGER)"}, {"answer": "SELECT state_or_territory FROM table_27871460_2 WHERE channel_number = 7", "question": "Which state or territory had a channel number of exactly 7?", "context": "CREATE TABLE table_27871460_2 (state_or_territory VARCHAR, channel_number VARCHAR)"}, {"answer": "SELECT date FROM table_27882867_4 WHERE location_attendance = \"Omni Coliseum 10,330\"", "question": "Name the date for omni coliseum 10,330", "context": "CREATE TABLE table_27882867_4 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27882867_4 WHERE game = 3", "question": "Name the location attendance for 3 game", "context": "CREATE TABLE table_27882867_4 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_27882867_4 WHERE score = \"L 93-105\"", "question": "Name the location attendance for l 93-105", "context": "CREATE TABLE table_27882867_4 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_27882867_4 WHERE location_attendance = \"Oakland-Alameda County Coliseum Arena 15,025\"", "question": "Name the record for  oakland-alameda county coliseum arena 15,025", "context": "CREATE TABLE table_27882867_4 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_27882867_4 WHERE score = \"W 112-94\"", "question": "Name the total number of games for w 112-94", "context": "CREATE TABLE table_27882867_4 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT clubs FROM table_27876486_2 WHERE round = \"Sixth round proper\"", "question": "what is the club in the sixth round proper", "context": "CREATE TABLE table_27876486_2 (clubs VARCHAR, round VARCHAR)"}, {"answer": "SELECT surface FROM table_27877656_7 WHERE score = \"6\u20134, 6\u20131\" AND edition = \"2011 Europe/Africa Group IIIB\"", "question": "For edition is 2011 europe/africa group iiib and surface where score is 6\u20134, 6\u20131 please specify all the surface", "context": "CREATE TABLE table_27877656_7 (surface VARCHAR, score VARCHAR, edition VARCHAR)"}, {"answer": "SELECT opponent_team FROM table_27877656_7 WHERE edition = \"2009 Europe/Africa Group IIIB\" AND outcome = \"Winner\" AND opponent = \"Sandra Kristj\u00e1nsd\u00f3ttir\"", "question": "For opponent is sandra kristj\u00e1nsd\u00f3ttir, 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 COUNT(outcome) FROM table_27877656_7 WHERE score = \"7\u20136 (7\u20133) , 6\u20134\"", "question": "For score 7\u20136 (7\u20133) , 6\u20134 please mention total number of outcome", "context": "CREATE TABLE table_27877656_7 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_27877656_7 WHERE edition = \"2009 Europe/Africa Group IIIB\" AND opponent_team = \"Armenia\"", "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 edition FROM table_27877656_7 WHERE outcome = \"Loser\" AND score = \"6\u20132, 6\u20133\"", "question": "For score 6\u20132, 6\u20133 and outcome is loser mention all the edition.", "context": "CREATE TABLE table_27877656_7 (edition VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT winner FROM table_27887723_1 WHERE uci_rating = \"CN\"", "question": "who was the winner of uci rating cn?", "context": "CREATE TABLE table_27887723_1 (winner VARCHAR, uci_rating VARCHAR)"}, {"answer": "SELECT race_name FROM table_27887723_1 WHERE uci_rating = \"CN\"", "question": "what race name had a uci rating of cn?", "context": "CREATE TABLE table_27887723_1 (race_name VARCHAR, uci_rating VARCHAR)"}, {"answer": "SELECT location FROM table_27887723_1 WHERE team = \"Trek-Livestrong\"", "question": "what location has team trek-livestrong?", "context": "CREATE TABLE table_27887723_1 (location VARCHAR, team VARCHAR)"}, {"answer": "SELECT winner FROM table_27887723_1 WHERE location = \"Souderton, PA\"", "question": "who was the winner for souderton, pa?", "context": "CREATE TABLE table_27887723_1 (winner VARCHAR, location VARCHAR)"}, {"answer": "SELECT title FROM table_27892955_1 WHERE directed_by = \"Mike Rohl\" AND no_in_series = 120", "question": "What is the name of episode 120 in the series that Mike Rohl directed?", "context": "CREATE TABLE table_27892955_1 (title VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_27892955_1 WHERE us_viewers__million_ = \"1.97\"", "question": "Who wrote episode that had 1.97 million u.s. viewers?", "context": "CREATE TABLE table_27892955_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT title FROM table_27892955_1 WHERE us_viewers__million_ = \"2.02\"", "question": "What is the name of the episode that had 2.02 million u.s. viewers?", "context": "CREATE TABLE table_27892955_1 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_27882867_6 WHERE date = \"January 11\"", "question": "How many games did they play on january 11?", "context": "CREATE TABLE table_27882867_6 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_27902171_5 WHERE record = \"9-7\"", "question": "What is every team with a record of 9-7?", "context": "CREATE TABLE table_27902171_5 (team VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_27902171_5 WHERE location_attendance = \"Seattle Center Coliseum 14,180\"", "question": "How many people are high assists when location attendance is Seattle Center Coliseum 14,180?", "context": "CREATE TABLE table_27902171_5 (high_assists VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_27902171_5 WHERE game = 23", "question": "What is every date with game 23?", "context": "CREATE TABLE table_27902171_5 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_27902171_5 WHERE location_attendance = \"Seattle Center Coliseum 14,180\"", "question": "What is every team with location attendance of Seattle Center Coliseum 14,180?", "context": "CREATE TABLE table_27902171_5 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_27902171_5 WHERE location_attendance = \"ARCO Arena 17,014\"", "question": "What is every team with location attendance of Arco Arena 17,014?", "context": "CREATE TABLE table_27902171_5 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_27893892_2 WHERE game_site = \"Waldstadion\" AND week = 6", "question": "what was the opposition where the field is waldstadion during time 6", "context": "CREATE TABLE table_27893892_2 (opponent VARCHAR, game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT game_site FROM table_27893892_2 WHERE date = \"Saturday, April 21\"", "question": "what is the location for saturday, april 21", "context": "CREATE TABLE table_27893892_2 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_27893892_2 WHERE date = \"Saturday, May 12\"", "question": "what was the participation for saturday, may 12", "context": "CREATE TABLE table_27893892_2 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT team_record FROM table_27893892_2 WHERE opponent = \"at Scottish Claymores\"", "question": "what was the achievement for the rival at scottish claymores", "context": "CREATE TABLE table_27893892_2 (team_record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(legs_lost) FROM table_27906667_2 WHERE high_checkout = 101", "question": "How many legs were lost when the high checkout was 101?", "context": "CREATE TABLE table_27906667_2 (legs_lost VARCHAR, high_checkout VARCHAR)"}, {"answer": "SELECT MAX(legs_won) FROM table_27906667_2 WHERE player = \"Alan Tabern\"", "question": "How many legs were own by alan tabern?", "context": "CREATE TABLE table_27906667_2 (legs_won INTEGER, player VARCHAR)"}, {"answer": "SELECT team FROM table_27902171_8 WHERE record = \"36-29\"", "question": "name the team for 36-29 record", "context": "CREATE TABLE table_27902171_8 (team VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(high_assists) FROM table_27902171_8 WHERE record = \"34-27\"", "question": "Name the total number of high asists for 34-27", "context": "CREATE TABLE table_27902171_8 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_27902171_8 WHERE score = \"W 112-91\"", "question": "Name the date for score of w 112-91", "context": "CREATE TABLE table_27902171_8 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(location_attendance) FROM table_27902171_8 WHERE record = \"36-29\"", "question": "Name the number of location attendance for 36-29 record", "context": "CREATE TABLE table_27902171_8 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT written_by FROM table_27905664_1 WHERE us_viewers__million_ = \"3.74\"", "question": "Who wrote the episode having a US viewership of 3.74 million?", "context": "CREATE TABLE table_27905664_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27905664_1 WHERE production_code = \"3X6116\"", "question": "Who directed production code 3x6116?", "context": "CREATE TABLE table_27905664_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT AS \u2116 FROM table_27905664_1 WHERE us_viewers__million_ = \"4.26\"", "question": "How many episode numbers had US viewership of 4.26 million?", "context": "CREATE TABLE table_27905664_1 (COUNT VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT \u2116 FROM table_27905664_1 WHERE us_viewers__million_ = \"4.87\"", "question": "What episode number had US viewership of 4.87 million?", "context": "CREATE TABLE table_27905664_1 (\u2116 VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_27905664_1 WHERE directed_by = \"Ken Fink\"", "question": "How many episodes were directed by Ken Fink?", "context": "CREATE TABLE table_27905664_1 (_number VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27910411_1 WHERE us_viewers__millions_ = \"8.28\"", "question": "What date did the episode with 8.28 million u.s. viewers originally air?", "context": "CREATE TABLE table_27910411_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(us_viewers__millions_) FROM table_27910411_1 WHERE no_in_series = 5", "question": "How many items are listed for U.S. viewers for episode number 5 in the series?", "context": "CREATE TABLE table_27910411_1 (us_viewers__millions_ VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27910411_1 WHERE no_in_series = 10", "question": "What date did episode 10 in the series originally air?", "context": "CREATE TABLE table_27910411_1 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT COUNT(season__number) FROM table_27911342_1 WHERE written_by = \"Kari Lizer\"", "question": "What is the season number of the show written by both Kari Lizer and Jeff Astrof?", "context": "CREATE TABLE table_27911342_1 (season__number VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_27911342_1 WHERE season__number = 5", "question": "What is the title of the Series 40 Season 5 show?", "context": "CREATE TABLE table_27911342_1 (title VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT callsign FROM table_27914076_1 WHERE coverage = \"Davao Mindanao Region\"", "question": "Name the callsign for davao mindanao region", "context": "CREATE TABLE table_27914076_1 (callsign VARCHAR, coverage VARCHAR)"}, {"answer": "SELECT power_kw FROM table_27914076_1 WHERE callsign = \"DYMD-FM\"", "question": "Name the power for dymd-fm", "context": "CREATE TABLE table_27914076_1 (power_kw VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT frequency FROM table_27914076_1 WHERE branding = \"103.7 Energy FM Dipolog*\"", "question": "Name the frequency for 103.7 energy fm dipolog*", "context": "CREATE TABLE table_27914076_1 (frequency VARCHAR, branding VARCHAR)"}, {"answer": "SELECT COUNT(coverage) FROM table_27914076_1 WHERE branding = \"106.7 Energy FM\"", "question": "Name the number of coverage for  106.7 energy fm", "context": "CREATE TABLE table_27914076_1 (coverage VARCHAR, branding VARCHAR)"}, {"answer": "SELECT season__number FROM table_27914606_1 WHERE us_viewers__millions_ = \"7.19\"", "question": "what is the number of the episode in the season that had 7.19 millions of north american viewers? ", "context": "CREATE TABLE table_27914606_1 (season__number VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_27914606_1 WHERE written_by = \"Jeff Astrof & Matt Goldman\"", "question": "what is the name of the episode whose writers were jeff astrof & matt goldman? ", "context": "CREATE TABLE table_27914606_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_27914606_1 WHERE us_viewers__millions_ = \"5.56\"", "question": "who were the writers of the episode that had 5.56 millions of north american viewers? ", "context": "CREATE TABLE table_27914606_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT average FROM table_27922491_11 WHERE runs = 313", "question": "What is the average for the player with 313 runs?", "context": "CREATE TABLE table_27922491_11 (average VARCHAR, runs VARCHAR)"}, {"answer": "SELECT MIN(runs) FROM table_27922491_11 WHERE average = \"97.00\"", "question": "How few runs does the 97.00 average have?", "context": "CREATE TABLE table_27922491_11 (runs INTEGER, average VARCHAR)"}, {"answer": "SELECT MIN(50 AS s) FROM table_27922491_24", "question": "What is the minimum number of 50s scored?", "context": "CREATE TABLE table_27922491_24 (Id VARCHAR)"}, {"answer": "SELECT 4 AS wi FROM table_27922491_20 WHERE economy = \"4.17\"", "question": "How many 4wi were recorded by the player with an economy of 4.17?", "context": "CREATE TABLE table_27922491_20 (economy VARCHAR)"}, {"answer": "SELECT MIN(wickets) FROM table_27922491_20", "question": "What is the fewest number of wickets recorded?", "context": "CREATE TABLE table_27922491_20 (wickets INTEGER)"}, {"answer": "SELECT bbi FROM table_27922491_20 WHERE average = \"24.50\"", "question": "What was the BBI for the bowler whose average is 24.50?", "context": "CREATE TABLE table_27922491_20 (bbi VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(wickets) FROM table_27922491_8", "question": "What is the least amount of wickets?", "context": "CREATE TABLE table_27922491_8 (wickets INTEGER)"}, {"answer": "SELECT MIN(matches) FROM table_27922491_8", "question": "What is the least amount of matches?", "context": "CREATE TABLE table_27922491_8 (matches INTEGER)"}, {"answer": "SELECT COUNT(player) FROM table_27922491_8 WHERE wickets = 12", "question": "How many players had 12 wickets?", "context": "CREATE TABLE table_27922491_8 (player VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT MIN(innings) FROM table_27922491_8 WHERE average = \"30.03\"", "question": "How many innings for the player with an average of 30.03?", "context": "CREATE TABLE table_27922491_8 (innings INTEGER, average VARCHAR)"}, {"answer": "SELECT average FROM table_27922491_8 WHERE bbm = \"5/85\"", "question": "What is the average for the player with BBM 5/85?", "context": "CREATE TABLE table_27922491_8 (average VARCHAR, bbm VARCHAR)"}, {"answer": "SELECT MIN(episode__number) FROM table_27927185_1 WHERE viewers__millions_ = \"4.03\"", "question": "What is the lowest episode number that had 4.03 million viewers?", "context": "CREATE TABLE table_27927185_1 (episode__number INTEGER, viewers__millions_ VARCHAR)"}, {"answer": "SELECT viewers__millions_ FROM table_27927185_1 WHERE episode__number < 2.0", "question": "How many million viewers watched episodes prior to episode 2.0?", "context": "CREATE TABLE table_27927185_1 (viewers__millions_ VARCHAR, episode__number INTEGER)"}, {"answer": "SELECT originalairdate FROM table_27927185_1 WHERE viewers__millions_ = \"4.77\"", "question": "What was the original air-date that had 4.77 million viewers?", "context": "CREATE TABLE table_27927185_1 (originalairdate VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27927185_1 WHERE viewers__millions_ = \"6.37\"", "question": "Who directed the episode with 6.37 million viewers?", "context": "CREATE TABLE table_27927185_1 (directed_by VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT MAX(release_date) FROM table_27932399_1 WHERE catalogue_number = \"DW023\"", "question": "What is the release date of catalogue number DW023?", "context": "CREATE TABLE table_27932399_1 (release_date INTEGER, catalogue_number VARCHAR)"}, {"answer": "SELECT release_date FROM table_27932399_1 WHERE release_title = \"New Worlds For Old\"", "question": "What is the release date of \"New Worlds for Old\"?", "context": "CREATE TABLE table_27932399_1 (release_date VARCHAR, release_title VARCHAR)"}, {"answer": "SELECT catalogue_number FROM table_27932399_1 WHERE release_title = \"Waves In The Air\"", "question": "What is the catalogue number for \"Waves in the Air\"?", "context": "CREATE TABLE table_27932399_1 (catalogue_number VARCHAR, release_title VARCHAR)"}, {"answer": "SELECT catalogue_number FROM table_27932399_1 WHERE release_date = 2005 AND artist = \"The Clear Spots\"", "question": "What is the catalogue number for release dates of exactly 2005 and released by The Clear Spots?", "context": "CREATE TABLE table_27932399_1 (catalogue_number VARCHAR, release_date VARCHAR, artist VARCHAR)"}, {"answer": "SELECT artist FROM table_27932399_1 WHERE release_title = \"HH\"", "question": "Which artist had a release title of HH?", "context": "CREATE TABLE table_27932399_1 (artist VARCHAR, release_title VARCHAR)"}, {"answer": "SELECT release_title FROM table_27932399_1 WHERE artist = \"Heavy Winged\"", "question": "What was the name of the album released by Heavy Winged?", "context": "CREATE TABLE table_27932399_1 (release_title VARCHAR, artist VARCHAR)"}, {"answer": "SELECT Dual AS television_commentator FROM table_2794180_11 WHERE year_s_ = 1990", "question": "Who was the dual television commentator in 1990?", "context": "CREATE TABLE table_2794180_11 (Dual VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT radio_commentator FROM table_2794180_11 WHERE television_commentator = \"Jan Gabrielsson\"", "question": "Who made the comments for radio broadcast when Jan Gabrielsson made them for television broadcast?", "context": "CREATE TABLE table_2794180_11 (radio_commentator VARCHAR, television_commentator VARCHAR)"}, {"answer": "SELECT COUNT(moto2_winner) FROM table_27948565_1 WHERE circuit = \"Laguna Seca\"", "question": "Name the total number of moto2 winners for laguna seca", "context": "CREATE TABLE table_27948565_1 (moto2_winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_27948565_1 WHERE grand_prix = \"Hertz British grand_prix\"", "question": "Name the circuit for hertz british grand prix", "context": "CREATE TABLE table_27948565_1 (circuit VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_27948565_1 WHERE circuit = \"Brno\"", "question": "Name the number of rounds for brno", "context": "CREATE TABLE table_27948565_1 (round VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT motogp_winner FROM table_27948565_1 WHERE date = \"6 May\"", "question": "Name the motogp winner for 6 may", "context": "CREATE TABLE table_27948565_1 (motogp_winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT b_winning_car FROM table_27965906_2 WHERE a_winning_car = \"#88 Team Mitsubishi 88 Mitsubishi Starion\"", "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 gt_winning_car FROM table_27965906_2 WHERE a_winning_car = \"#88 Team Mitsubishi 88 Mitsubishi Starion\"", "question": "Name the gt winning car for  #88 team mitsubishi 88 mitsubishi starion", "context": "CREATE TABLE table_27965906_2 (gt_winning_car VARCHAR, a_winning_car VARCHAR)"}, {"answer": "SELECT ss_winning_car FROM table_27965906_2 WHERE circuit = \"Road Atlanta\" AND b_winning_car = \"#35 Quantum Engineering #35 Honda CRX-Si\"", "question": "Name the ss winning car for road atlanta and #35 quantum engineering #35 honda crx-si", "context": "CREATE TABLE table_27965906_2 (ss_winning_car VARCHAR, circuit VARCHAR, b_winning_car VARCHAR)"}, {"answer": "SELECT COUNT(rnd) FROM table_27965906_2 WHERE ss_winning_car = \"Kim Baker, Bobby Archer, Tommy Archer\"", "question": "Name the total number of rnd for kim baker, bobby archer, tommy archer", "context": "CREATE TABLE table_27965906_2 (rnd VARCHAR, ss_winning_car VARCHAR)"}, {"answer": "SELECT COUNT(b_winning_car) FROM table_27965906_2 WHERE ss_winning_car = \"Bobby Archer, Tommy Archer\"", "question": "Name the total number of b winning car and bobby archer, tommy archer", "context": "CREATE TABLE table_27965906_2 (b_winning_car VARCHAR, ss_winning_car VARCHAR)"}, {"answer": "SELECT COUNT(institution) FROM table_27961684_1 WHERE team_name = \"Spartans\"", "question": "How many institutes have the team name Spartans?", "context": "CREATE TABLE table_27961684_1 (institution VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT COUNT(state) FROM table_27961684_1 WHERE enrollment = 2789", "question": "How many states were there when there was an enrollment of 2789?", "context": "CREATE TABLE table_27961684_1 (state VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT affiliation FROM table_27961684_1 WHERE state = \"Indiana\"", "question": "What kind of institute is in Indiana?", "context": "CREATE TABLE table_27961684_1 (affiliation VARCHAR, state VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_27961684_1 WHERE team_name = \"Pioneers\"", "question": "How many people enrolled for the institute with the Pioneers?", "context": "CREATE TABLE table_27961684_1 (enrollment INTEGER, team_name VARCHAR)"}, {"answer": "SELECT team_name FROM table_27961684_1 WHERE city = \"Rock Island\"", "question": "What team is in the city of Rock Island?", "context": "CREATE TABLE table_27961684_1 (team_name VARCHAR, city VARCHAR)"}, {"answer": "SELECT title FROM table_27969432_2 WHERE written_by = \"Alison Cross\"", "question": "What is the name of the episode written by alison cross?", "context": "CREATE TABLE table_27969432_2 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27969432_2 WHERE written_by = \"Karina Csolty\"", "question": "Who directed the episode written by karina csolty", "context": "CREATE TABLE table_27969432_2 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_27969432_2 WHERE written_by = \"Karina Csolty\"", "question": "What is the name of the episode written by karina csolty?", "context": "CREATE TABLE table_27969432_2 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27969432_4 WHERE production = \"2M5901\"", "question": "Who directed the episode whose production code is 2m5901?", "context": "CREATE TABLE table_27969432_4 (directed_by VARCHAR, production VARCHAR)"}, {"answer": "SELECT COUNT(us_viewers__in_millions_) FROM table_27969432_4 WHERE no_in_season = 4", "question": "How many viewers in millions were there for episode 4 of this season?", "context": "CREATE TABLE table_27969432_4 (us_viewers__in_millions_ VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT COUNT(national_rank) FROM table_27956_3 WHERE percentage_change_yoy = \"13.1%\"", "question": "Name the total number of rank for percentage change yoy 13.1%", "context": "CREATE TABLE table_27956_3 (national_rank VARCHAR, percentage_change_yoy VARCHAR)"}, {"answer": "SELECT percentage_change_yoy FROM table_27956_3 WHERE institution = \"Presbyterian College\"", "question": "Name the percentage change yoy for presbyterian college", "context": "CREATE TABLE table_27956_3 (percentage_change_yoy VARCHAR, institution VARCHAR)"}, {"answer": "SELECT national_rank FROM table_27956_3 WHERE institution = \"Medical University of South Carolina\"", "question": "Name the national rank for medical university of south carolina", "context": "CREATE TABLE table_27956_3 (national_rank VARCHAR, institution VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_27969432_3", "question": "What is the lowest numbered episode in the series?", "context": "CREATE TABLE table_27969432_3 (no_in_series INTEGER)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_27969432_3 WHERE written_by = \"David J. North & Janet Tamaro\"", "question": "How many episodes were written by david j. north & janet tamaro?", "context": "CREATE TABLE table_27969432_3 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27969432_3 WHERE directed_by = \"Fred Toye\"", "question": "What are the original air dates for episodes directed by fred toye?", "context": "CREATE TABLE table_27969432_3 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT aggregate_score FROM table_27986200_3 WHERE proceed_to_quarter_final = \"Montauban\"", "question": "What was the aggregate score for Montauban?", "context": "CREATE TABLE table_27986200_3 (aggregate_score VARCHAR, proceed_to_quarter_final VARCHAR)"}, {"answer": "SELECT proceed_to_quarter_final FROM table_27986200_3 WHERE points_margin = 21", "question": "Who proceeded to the quarter finals with a points margin of 21?", "context": "CREATE TABLE table_27986200_3 (proceed_to_quarter_final VARCHAR, points_margin VARCHAR)"}, {"answer": "SELECT match_points FROM table_27986200_3 WHERE eliminated_from_competition = \"Bordeaux-B\u00e8gles\"", "question": "What were the match points when Bordeaux-B\u00e8gles was eliminated from competition? ", "context": "CREATE TABLE table_27986200_3 (match_points VARCHAR, eliminated_from_competition VARCHAR)"}, {"answer": "SELECT us_viewers__in_million_ FROM table_27987623_1 WHERE written_by = \"Kevin Biegel & Bill Lawrence\"", "question": "How many viewers saw the episode written by kevin biegel & bill lawrence?", "context": "CREATE TABLE table_27987623_1 (us_viewers__in_million_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MAX(series_episode) FROM table_27987623_1 WHERE us_viewers__in_million_ = \"7.43\"", "question": "What was the episode number veiwed by 7.43 million viewers?", "context": "CREATE TABLE table_27987623_1 (series_episode INTEGER, us_viewers__in_million_ VARCHAR)"}, {"answer": "SELECT title FROM table_27987623_1 WHERE us_viewers__in_million_ = \"5.03\"", "question": "What was the title of the episode viewed by 5.03 million viewers?", "context": "CREATE TABLE table_27987623_1 (title VARCHAR, us_viewers__in_million_ VARCHAR)"}, {"answer": "SELECT season_episode FROM table_27987623_1 WHERE us_viewers__in_million_ = \"5.68\"", "question": "What was the episode number for the episode viewed by 5.68 million viewers?", "context": "CREATE TABLE table_27987623_1 (season_episode VARCHAR, us_viewers__in_million_ VARCHAR)"}, {"answer": "SELECT COUNT(number_of_fixtures) FROM table_27973624_1 WHERE new_entries_this_round = \"none\"", "question": "How many times is the new entries this round is none?", "context": "CREATE TABLE table_27973624_1 (number_of_fixtures VARCHAR, new_entries_this_round VARCHAR)"}, {"answer": "SELECT prize_money FROM table_27973624_1 WHERE clubs = \"392 \u2192 276\"", "question": "What is the prize money when the clubs is 392 \u2192 276?", "context": "CREATE TABLE table_27973624_1 (prize_money VARCHAR, clubs VARCHAR)"}, {"answer": "SELECT MIN(number_of_fixtures) FROM table_27973624_1", "question": "What is the lowest number of fixtures?", "context": "CREATE TABLE table_27973624_1 (number_of_fixtures INTEGER)"}, {"answer": "SELECT main_date FROM table_27973624_1 WHERE round = \"Third round Qualifying\"", "question": "What is the main date when the round is third round qualifying?", "context": "CREATE TABLE table_27973624_1 (main_date VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_27973624_1 WHERE prize_money = \"\u00a37,500\"", "question": "What is the round when the prize money is \u00a37,500?", "context": "CREATE TABLE table_27973624_1 (round VARCHAR, prize_money VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_27987768_1 WHERE written_by = \"Eric Gilliland\"", "question": "What number in series was the episode written by Eric Gilliland?", "context": "CREATE TABLE table_27987768_1 (no_in_series INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(points_margin) FROM table_27987767_2 WHERE winners = \"Brive\"", "question": "how many total number of points margin when brive is the winners", "context": "CREATE TABLE table_27987767_2 (points_margin VARCHAR, winners VARCHAR)"}, {"answer": "SELECT match_points FROM table_27987767_2 WHERE losers = \"Gran Parma\"", "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 = \"Rotherham\"", "question": "how many match points rotherham lose", "context": "CREATE TABLE table_27987767_2 (match_points VARCHAR, losers VARCHAR)"}, {"answer": "SELECT COUNT(eliminated_from_competition) FROM table_27987767_3 WHERE proceed_to_quarter_final = \"Brive\"", "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 proceed_to_quarter_final FROM table_27987767_3 WHERE eliminated_from_competition = \"London Irish\"", "question": "When london irish was eliminated from competition who proceeded to quarter final?", "context": "CREATE TABLE table_27987767_3 (proceed_to_quarter_final VARCHAR, eliminated_from_competition VARCHAR)"}, {"answer": "SELECT match_points FROM table_27987767_3 WHERE proceed_to_quarter_final = \"Brive\"", "question": "When brive proceeded to quarter final what were the match points?", "context": "CREATE TABLE table_27987767_3 (match_points VARCHAR, proceed_to_quarter_final VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_27988281_1 WHERE written_by = \"Jeff Filgo\"", "question": "What is the production code of the episode written by Jeff Filgo?", "context": "CREATE TABLE table_27988281_1 (production_code INTEGER, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27988408_1 WHERE written_by = \"Bryan Moore & Chris Peterson\"", "question": "Name the original air date for bryan moore & chris peterson", "context": "CREATE TABLE table_27988408_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_27988408_1 WHERE written_by = \"Bryan Moore & Chris Peterson\"", "question": "Name the least production code for  bryan moore & chris peterson", "context": "CREATE TABLE table_27988408_1 (production_code INTEGER, written_by VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_27988559_1 WHERE production_code = 804", "question": "How many dates did the episode with a production code of 804 originally air on?", "context": "CREATE TABLE table_27988559_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_27988559_1 WHERE no_in_season = 2", "question": "Who directed episode 2 of the season?", "context": "CREATE TABLE table_27988559_1 (directed_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_27988559_1 WHERE no_in_series = 195", "question": "What dat did episode 195 in the series originally air?", "context": "CREATE TABLE table_27988559_1 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT title FROM table_27988540_1 WHERE no_in_season = 5", "question": "What is the name of episode 5 in the season?", "context": "CREATE TABLE table_27988540_1 (title VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT title FROM table_27988540_1 WHERE no_in_series = 155", "question": "What is the title of episode 155 in the series?", "context": "CREATE TABLE table_27988540_1 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT MAX(sponsorship) AS Ended FROM table_28005160_2", "question": "What is the last year a sponsorship ended?", "context": "CREATE TABLE table_28005160_2 (sponsorship INTEGER)"}, {"answer": "SELECT COUNT(country) FROM table_28005160_2 WHERE city = \"Ljungskile\"", "question": "How many countries played in the city of ljungskile?", "context": "CREATE TABLE table_28005160_2 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_28005160_2 WHERE country = \"Sweden\"", "question": "What cities are in sweden on this list?", "context": "CREATE TABLE table_28005160_2 (city VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_28005160_2 WHERE city = \"New Orleans\"", "question": "What country is new orleans in?", "context": "CREATE TABLE table_28005160_2 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT country FROM table_28005160_2 WHERE sponsored_name = \"New Orleans Shell Shockers\"", "question": "What country are the new orleans shell shockers from?", "context": "CREATE TABLE table_28005160_2 (country VARCHAR, sponsored_name VARCHAR)"}, {"answer": "SELECT arrangement FROM table_28005100_1 WHERE title = \"Bets3ab 3alia Nafsy\"", "question": "What is the arrangement for bets3ab 3alia nafsy?", "context": "CREATE TABLE table_28005100_1 (arrangement VARCHAR, title VARCHAR)"}, {"answer": "SELECT composer FROM table_28005100_1 WHERE title = \"Ain Shams\"", "question": "Who was the composer of ain shams?", "context": "CREATE TABLE table_28005100_1 (composer VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_28005100_1 WHERE title = \"Kam Wa7ed Fina\"", "question": "How many numbers are there for kam wa7ed fina?", "context": "CREATE TABLE table_28005100_1 (no VARCHAR, title VARCHAR)"}, {"answer": "SELECT composer FROM table_28005100_1 WHERE title = \"Te3rafy\"", "question": "Who was the composer of te3rafy?", "context": "CREATE TABLE table_28005100_1 (composer VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(sound_engineer) FROM table_28005100_1 WHERE title = \"Law Hakon '3er Leek\"", "question": "How many sound engineers were there for law hakon '3er leek?", "context": "CREATE TABLE table_28005100_1 (sound_engineer VARCHAR, title VARCHAR)"}, {"answer": "SELECT no FROM table_28005100_1 WHERE lyricist = \"Ahmed Metwally\"", "question": "Which number was the lyricist  ahmed metwally?", "context": "CREATE TABLE table_28005100_1 (no VARCHAR, lyricist VARCHAR)"}, {"answer": "SELECT site_stadium FROM table_28001186_8 WHERE score = \"11-4\"", "question": "What was the site of the game that had an 11-4 score?", "context": "CREATE TABLE table_28001186_8 (site_stadium VARCHAR, score VARCHAR)"}, {"answer": "SELECT ncaat_record FROM table_28001186_8 WHERE date = \"June 26\"", "question": "What was the NCAA Tournament record after the June 26 game?", "context": "CREATE TABLE table_28001186_8 (ncaat_record VARCHAR, date VARCHAR)"}, {"answer": "SELECT save FROM table_28001186_8 WHERE loss = \"Duke (3-2)\"", "question": "Who had the save in the game in which Duke (3-2) took the loss?", "context": "CREATE TABLE table_28001186_8 (save VARCHAR, loss VARCHAR)"}, {"answer": "SELECT COUNT(event_date) FROM table_28003469_1 WHERE event_details = \"Women's Sabre\"", "question": "How many event dates occurred when event details were women's sabre?", "context": "CREATE TABLE table_28003469_1 (event_date VARCHAR, event_details VARCHAR)"}, {"answer": "SELECT approx_duration FROM table_28003469_1 WHERE event_details = \"Women's Foil\"", "question": "What is every value for approximate duration when event details is women's foil?", "context": "CREATE TABLE table_28003469_1 (approx_duration VARCHAR, event_details VARCHAR)"}, {"answer": "SELECT event_date FROM table_28003469_1 WHERE event_day = \"Sunday\" AND starting_time = \"9:30 am\"", "question": "What is every event date on Sunday with a starting time of 9:30 am?", "context": "CREATE TABLE table_28003469_1 (event_date VARCHAR, event_day VARCHAR, starting_time VARCHAR)"}, {"answer": "SELECT COUNT(viewers) FROM table_27994983_8 WHERE draw = 2", "question": "How many items appear in the viewers column when the draw is 2?", "context": "CREATE TABLE table_27994983_8 (viewers VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MAX(viewers) FROM table_27994983_8 WHERE draw = 3", "question": "How many viewers are the when the draw is 3?", "context": "CREATE TABLE table_27994983_8 (viewers INTEGER, draw VARCHAR)"}, {"answer": "SELECT MAX(juries) FROM table_27994983_8 WHERE draw = 3", "question": "How many juries are there when the draw is 3?", "context": "CREATE TABLE table_27994983_8 (juries INTEGER, draw VARCHAR)"}, {"answer": "SELECT MAX(juries) FROM table_27994983_8 WHERE artist = \"Brolle\"", "question": "How many juries are there for Brolle?", "context": "CREATE TABLE table_27994983_8 (juries INTEGER, artist VARCHAR)"}, {"answer": "SELECT former_county FROM table_2801185_2 WHERE district = \"Great Grimsby\"", "question": "What are the former counties of the Great Grimsby district?", "context": "CREATE TABLE table_2801185_2 (former_county VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(status) FROM table_2801185_2 WHERE district = \"Durham\"", "question": "How many statuses are there for the Durham district?", "context": "CREATE TABLE table_2801185_2 (status VARCHAR, district VARCHAR)"}, {"answer": "SELECT status FROM table_2801185_2 WHERE successor = \"Wiltshire\"", "question": "What are the statuses of the districts whose successor is Wiltshire?", "context": "CREATE TABLE table_2801185_2 (status VARCHAR, successor VARCHAR)"}, {"answer": "SELECT MAX(sdlp) FROM table_28005809_2 WHERE council = \"Belfast\"", "question": "What is the SDLP of Belfast?", "context": "CREATE TABLE table_28005809_2 (sdlp INTEGER, council VARCHAR)"}, {"answer": "SELECT MIN(alliance) FROM table_28005809_2 WHERE total = 25", "question": "What is the smallest Alliance where the total is 25?", "context": "CREATE TABLE table_28005809_2 (alliance INTEGER, total VARCHAR)"}, {"answer": "SELECT written_by FROM table_28019988_2 WHERE us_viewers__million_ = \"2.93\"", "question": "Who wrote the episode that 2.93 million viewers?", "context": "CREATE TABLE table_28019988_2 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_28019988_2 WHERE production_code = \"BDF101\"", "question": "What series number is the episode with production code bdf101?", "context": "CREATE TABLE table_28019988_2 (series__number INTEGER, production_code VARCHAR)"}, {"answer": "SELECT series__number FROM table_28019988_2 WHERE production_code = \"BDF109\"", "question": "What is the series number for the episode with production code bdf109?", "context": "CREATE TABLE table_28019988_2 (series__number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_28027307_1 WHERE production_code = \"6AKY11\"", "question": "Who directed the episode with the production code of 6AKY11?", "context": "CREATE TABLE table_28027307_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_28027307_1 WHERE production_code = \"6AKY07\"", "question": "How many millions of U.S. viewers watched the episode with the production code of 6AKY07?", "context": "CREATE TABLE table_28027307_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_28027307_1 WHERE us_viewers__millions_ = \"10.96\"", "question": "What number episode in the series was watched by 10.96 million U.S. viewers? ", "context": "CREATE TABLE table_28027307_1 (no_in_series INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT dance_song FROM table_2803106_1 WHERE total = \"31\"", "question": "What dance had a score total of 31?", "context": "CREATE TABLE table_2803106_1 (dance_song VARCHAR, total VARCHAR)"}, {"answer": "SELECT result FROM table_2803106_1 WHERE tonioli = \"8\" AND horwood = \"6\"", "question": "What was the result for the dance that tonioli's scored an 8 and horwood scored a 6?", "context": "CREATE TABLE table_2803106_1 (result VARCHAR, tonioli VARCHAR, horwood VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_2803106_1 WHERE tonioli = \"9\" AND horwood = \"6\"", "question": "How many times did tonioli score a 9 when horwood scored a 6?", "context": "CREATE TABLE table_2803106_1 (total VARCHAR, tonioli VARCHAR, horwood VARCHAR)"}, {"answer": "SELECT tonioli FROM table_2803106_1 WHERE week__number = 11 AND dixon = \"8\"", "question": "On week 11 when Dixon scored an 8, what was tonioli's score?", "context": "CREATE TABLE table_2803106_1 (tonioli VARCHAR, week__number VARCHAR, dixon VARCHAR)"}, {"answer": "SELECT winners_from_previous_round FROM table_28039032_1 WHERE round = \"Semi finals\"", "question": "How many winners from previous round were there in the semi finals?", "context": "CREATE TABLE table_28039032_1 (winners_from_previous_round VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_28039032_1 WHERE winners_from_previous_round = \"32\"", "question": "What was the round that had 32 winners from previous round?", "context": "CREATE TABLE table_28039032_1 (round VARCHAR, winners_from_previous_round VARCHAR)"}, {"answer": "SELECT clubs_remaining FROM table_28039032_1 WHERE round = \"Preliminary round\"", "question": "How many clubs were remaining in the preliminary round?", "context": "CREATE TABLE table_28039032_1 (clubs_remaining VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_28039032_1 WHERE winners_from_previous_round = \"16\"", "question": "What was the round when there were 16 winners from the previous round?", "context": "CREATE TABLE table_28039032_1 (round VARCHAR, winners_from_previous_round VARCHAR)"}, {"answer": "SELECT clubs_involved FROM table_28039032_1 WHERE round = \"Second round\"", "question": "How many clubs were involved in the second round?", "context": "CREATE TABLE table_28039032_1 (clubs_involved VARCHAR, round VARCHAR)"}, {"answer": "SELECT town FROM table_2803662_3 WHERE tournament = \"Grand Prix De SAR La Princesse Lalla Meryem\"", "question": "When  grand prix de sar la princesse lalla meryem is the tournament what is the town?", "context": "CREATE TABLE table_2803662_3 (town VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT type FROM table_2803662_3 WHERE town = \"Stuttgart\"", "question": "When stuttgart is the town what is the type?", "context": "CREATE TABLE table_2803662_3 (type VARCHAR, town VARCHAR)"}, {"answer": "SELECT driver FROM table_28046929_2 WHERE entrant = \"Belgian VW Club\" AND co_driver = \"Fr\u00e9d\u00e9ric Miclotte\"", "question": "who is the person that is part of the belgian vw club that works with fr\u00e9d\u00e9ric miclotte", "context": "CREATE TABLE table_28046929_2 (driver VARCHAR, entrant VARCHAR, co_driver VARCHAR)"}, {"answer": "SELECT car FROM table_28046929_2 WHERE driver = \"Mark Higgins\"", "question": "what is the type of vehicle driven by mark higgins", "context": "CREATE TABLE table_28046929_2 (car VARCHAR, driver VARCHAR)"}, {"answer": "SELECT entrant FROM table_28046929_2 WHERE co_driver = \"Zden\u011bk Hr\u016fza\"", "question": "what is the entry where the other person is zden\u011bk hr\u016fza", "context": "CREATE TABLE table_28046929_2 (entrant VARCHAR, co_driver VARCHAR)"}, {"answer": "SELECT driver FROM table_28046929_2 WHERE co_driver = \"Paulo Babo\"", "question": "who is the other person where the assistant is paulo babo", "context": "CREATE TABLE table_28046929_2 (driver VARCHAR, co_driver VARCHAR)"}, {"answer": "SELECT driver FROM table_28046929_2 WHERE entrant = \"Peugeot Sport Polska\"", "question": "what are all the people where the entries is peugeot sport polska", "context": "CREATE TABLE table_28046929_2 (driver VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT written_by FROM table_28037619_2 WHERE us_viewers__million_ = \"6.05\"", "question": "Who wrote the episode that had 6.05 million U.s. viewers?", "context": "CREATE TABLE table_28037619_2 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_28037619_2 WHERE us_viewers__million_ = \"4.36\"", "question": "How many production codes are there for the episode that had 4.36 million u.s. viewers?", "context": "CREATE TABLE table_28037619_2 (production_code VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_28037619_2 WHERE us_viewers__million_ = \"7.26\"", "question": "How many people wrote the episode that had 7.26 million u.s. viewers?", "context": "CREATE TABLE table_28037619_2 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_28037619_2 WHERE directed_by = \"Roger Young\" AND written_by = \"Debra J. Fisher\"", "question": "How many million u.s. viewers saw the episode that was directed by roger young and written by debra j. fisher?", "context": "CREATE TABLE table_28037619_2 (us_viewers__million_ VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT title FROM table_28037619_2 WHERE written_by = \"David Matthews\"", "question": "What is the name of the episode written by David Matthews?", "context": "CREATE TABLE table_28037619_2 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT colors FROM table_28051859_3 WHERE school = \"Hudson\"", "question": "What are the colors of the Hudson school?", "context": "CREATE TABLE table_28051859_3 (colors VARCHAR, school VARCHAR)"}, {"answer": "SELECT tenure FROM table_28051859_3 WHERE school = \"Field\"", "question": "When were the members tenured in the Field school?", "context": "CREATE TABLE table_28051859_3 (tenure VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_28059992_1 WHERE cfl_team = \"Toronto Argonauts\"", "question": "How many pick# for CFL team of Toronto Argonauts?", "context": "CREATE TABLE table_28059992_1 (pick__number VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_28059992_1 WHERE college = \"Calgary\"", "question": "What is every CFL team from the Calgary college?", "context": "CREATE TABLE table_28059992_1 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_28059992_1 WHERE cfl_team = \"Edmonton\"", "question": "What is every position for the CFL Edmonton?", "context": "CREATE TABLE table_28059992_1 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_28059992_1 WHERE pick__number = 1", "question": "What is every CFL team with pick#1?", "context": "CREATE TABLE table_28059992_1 (cfl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_28059992_1 WHERE player = \"Mark Farraway\"", "question": "What is every CFL team with the player Mark Farraway?", "context": "CREATE TABLE table_28059992_1 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_28059992_5 WHERE player = \"Andy Brereton\"", "question": "What draft pick number was Andy Brereton?", "context": "CREATE TABLE table_28059992_5 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT pick__number FROM table_28059992_5 WHERE cfl_team = \"Edmonton\"", "question": "What pick number was the player that was picked by Edmonton?", "context": "CREATE TABLE table_28059992_5 (pick__number VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT position FROM table_28059992_5 WHERE cfl_team = \"Saskatchewan\"", "question": "What position did the draft pick going to saskatchewan play?", "context": "CREATE TABLE table_28059992_5 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_28059992_5", "question": "What is the highest numbered draft pick?", "context": "CREATE TABLE table_28059992_5 (pick__number INTEGER)"}, {"answer": "SELECT cfl_team FROM table_28059992_5 WHERE college = \"York\"", "question": "What CFL team got the player from york?", "context": "CREATE TABLE table_28059992_5 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_28059992_5 WHERE player = \"Trent Bagnail\"", "question": "How many positions does Trent Bagnail play?", "context": "CREATE TABLE table_28059992_5 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_28059992_6 WHERE cfl_team = \"Edmonton\"", "question": "What position was the player who was drafted by Edmonton?", "context": "CREATE TABLE table_28059992_6 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT college FROM table_28059992_6 WHERE position = \"RB\"", "question": "What college did the player whose position was RB go to? ", "context": "CREATE TABLE table_28059992_6 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_28059992_6 WHERE player = \"Francis Bellefroid\"", "question": "What college did Francis Bellefroid go to? ", "context": "CREATE TABLE table_28059992_6 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_28059992_6 WHERE cfl_team = \"Winnipeg\"", "question": "Which player was drafted by Winnipeg? ", "context": "CREATE TABLE table_28059992_6 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT college FROM table_28059992_6 WHERE cfl_team = \"Calgary\"", "question": "What college did the player who was drafted by Calgary go to?", "context": "CREATE TABLE table_28059992_6 (college VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT height FROM table_28062822_3 WHERE represent = 1", "question": "What was the height of representative #1?", "context": "CREATE TABLE table_28062822_3 (height VARCHAR, represent VARCHAR)"}, {"answer": "SELECT contestant FROM table_28062822_3 WHERE sponsor = \"Yogurt Vita Slim\"", "question": "Which contestant was sponsored by Yogurt Vita Slim?", "context": "CREATE TABLE table_28062822_3 (contestant VARCHAR, sponsor VARCHAR)"}, {"answer": "SELECT height FROM table_28062822_3 WHERE represent = 6", "question": "What was the height of representative #6?", "context": "CREATE TABLE table_28062822_3 (height VARCHAR, represent VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_28081876_4 WHERE directed_by = \"Rob Schrab\"", "question": "how many people wrote the episode directed by rob schrab?", "context": "CREATE TABLE table_28081876_4 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_28081876_4 WHERE production_code = 201", "question": "name the title of the episode with production code 201", "context": "CREATE TABLE table_28081876_4 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_28081876_6 WHERE original_air_date = \"August 10, 2012\"", "question": "Who were the authors of the episode first broadcast on August 10, 2012?", "context": "CREATE TABLE table_28081876_6 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28081876_6 WHERE us_viewers__millions_ = \"1.57\"", "question": "When was originally aired the episode with an audience of 1.57 million us viewers?", "context": "CREATE TABLE table_28081876_6 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT season_no FROM table_28081876_6 WHERE production_code = 401", "question": "What season number was assigned to the episode identified with the production code 401? ", "context": "CREATE TABLE table_28081876_6 (season_no VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_28068645_8 WHERE position = \"DF\"", "question": "List the number of assists for the DF.", "context": "CREATE TABLE table_28068645_8 (total INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(super_league) FROM table_28068645_8 WHERE champions_league = 0", "question": "List the lowest super league for a 0 champion league.", "context": "CREATE TABLE table_28068645_8 (super_league INTEGER, champions_league VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_28068645_8", "question": "What is the minimum sum?", "context": "CREATE TABLE table_28068645_8 (total INTEGER)"}, {"answer": "SELECT intermediate_sprints_classification_klasyfikacja_najaktywniejszych FROM table_28092844_16 WHERE winner = \"Daniel Martin\"", "question": "What was the intermediate sprint classification for the race whose winner was Daniel Martin?", "context": "CREATE TABLE table_28092844_16 (intermediate_sprints_classification_klasyfikacja_najaktywniejszych VARCHAR, winner VARCHAR)"}, {"answer": "SELECT teams_classification FROM table_28092844_16 WHERE general_classification_\u017c\u00f3\u0142ta_koszulka = \"Allan Davis\"", "question": "Which teams classification winners had a general classification winner of Allan Davis?", "context": "CREATE TABLE table_28092844_16 (teams_classification VARCHAR, general_classification_\u017c\u00f3\u0142ta_koszulka VARCHAR)"}, {"answer": "SELECT points_classification_klasyfikacja_punktowa FROM table_28092844_16 WHERE teams_classification = \"Lampre-Farnese\"", "question": "Who won the points classification when the teams classification winner was Lampre-Farnese?", "context": "CREATE TABLE table_28092844_16 (points_classification_klasyfikacja_punktowa VARCHAR, teams_classification VARCHAR)"}, {"answer": "SELECT english_word FROM table_28136_15 WHERE ukrainian = \"\u0414\u044f\u043a\u0443\u044e (diakuju)\"", "question": "How do you say the ukrainian word \u0434\u044f\u043a\u0443\u044e (diakuju) in English?", "context": "CREATE TABLE table_28136_15 (english_word VARCHAR, ukrainian VARCHAR)"}, {"answer": "SELECT COUNT(rusyn) FROM table_28136_15 WHERE bulgarian = \"\u043a\u0443\u043f\u0443\u0432\u0430 (kupuva)\"", "question": "How many words are there in rusyn for the bulgarian word \u043a\u0443\u043f\u0443\u0432\u0430 (kupuva)?", "context": "CREATE TABLE table_28136_15 (rusyn VARCHAR, bulgarian VARCHAR)"}, {"answer": "SELECT new_adherents_per_year FROM table_28137918_5 WHERE religion = \"Buddhism\"", "question": "Name the new adherents per year for buddhism", "context": "CREATE TABLE table_28137918_5 (new_adherents_per_year VARCHAR, religion VARCHAR)"}, {"answer": "SELECT COUNT(new_adherents_per_year) FROM table_28137918_5 WHERE religion = \"Confucianism\"", "question": "Name the  number of new adherents per year for confucianism", "context": "CREATE TABLE table_28137918_5 (new_adherents_per_year VARCHAR, religion VARCHAR)"}, {"answer": "SELECT MIN(births) FROM table_28137918_5 WHERE conversions = \"26,333\"", "question": "Name the least births for conversion being 26,333", "context": "CREATE TABLE table_28137918_5 (births INTEGER, conversions VARCHAR)"}, {"answer": "SELECT MIN(new_adherents_per_year) FROM table_28137918_5", "question": "Name the least amount of new adherents per year", "context": "CREATE TABLE table_28137918_5 (new_adherents_per_year INTEGER)"}, {"answer": "SELECT religion FROM table_28137918_5 WHERE growth_rate = \"1.56%\"", "question": "Name the religion that has a growth rate of 1.56%", "context": "CREATE TABLE table_28137918_5 (religion VARCHAR, growth_rate VARCHAR)"}, {"answer": "SELECT length FROM table_28132970_5 WHERE propulsion = \"Controllable pitch propeller\"", "question": "What is the length when the propulsion is controllable pitch propeller?", "context": "CREATE TABLE table_28132970_5 (length VARCHAR, propulsion VARCHAR)"}, {"answer": "SELECT max_speed FROM table_28132970_5 WHERE vessel = \"Gallion\"", "question": "What is the max speed when the vessel is gallion?", "context": "CREATE TABLE table_28132970_5 (max_speed VARCHAR, vessel VARCHAR)"}, {"answer": "SELECT COUNT(breadth) FROM table_28132970_5 WHERE vessel = \"Marianarray\"", "question": "How many breadth entries are there when the vessel is marianarray?", "context": "CREATE TABLE table_28132970_5 (breadth VARCHAR, vessel VARCHAR)"}, {"answer": "SELECT propulsion FROM table_28132970_5 WHERE vessel = \"Marianarray\"", "question": "What is the propulsion when the vessel is marianarray?", "context": "CREATE TABLE table_28132970_5 (propulsion VARCHAR, vessel VARCHAR)"}, {"answer": "SELECT COUNT(breadth) FROM table_28132970_5 WHERE propulsion = \"Jet\"", "question": "How many breadth entries are there when propulsion is jet?", "context": "CREATE TABLE table_28132970_5 (breadth VARCHAR, propulsion VARCHAR)"}, {"answer": "SELECT title FROM table_28116528_1 WHERE production_code = \"3X6306\"", "question": "What episode title had a production code of 3x6306?", "context": "CREATE TABLE table_28116528_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28116528_1 WHERE production_code = \"3X6316\"", "question": "What date did the episode with a production code of 3x6316 originally air?", "context": "CREATE TABLE table_28116528_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_28138035_26 WHERE womens_singles = \"Wu Yang\"", "question": "Who won the mens doubles when wu yang won the womens singles?", "context": "CREATE TABLE table_28138035_26 (mens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT year_location FROM table_28138035_26 WHERE womens_singles = \"Fan Ying\"", "question": "What year and where was the tournament when fan ying won the womens singles?", "context": "CREATE TABLE table_28138035_26 (year_location VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_28138035_26 WHERE womens_singles = \"Lau Sui Fei\"", "question": "Who won the mens singles when lau sui fei won the womens singles?", "context": "CREATE TABLE table_28138035_26 (mens_singles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_28138035_26 WHERE mens_singles = \"Wang Hao\"", "question": "Who won the mens doubles when wang hao won the mens singles?", "context": "CREATE TABLE table_28138035_26 (mens_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_28138035_13 WHERE womens_singles = \"Yoshie Takada\"", "question": "Who won in the men singles group in the year when Yoshie Takada won in the women singles?", "context": "CREATE TABLE table_28138035_13 (mens_singles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT year_location FROM table_28138035_13 WHERE mens_singles = \"Chen Qi\"", "question": "When and where did Chen Qi win in men singles?", "context": "CREATE TABLE table_28138035_13 (year_location VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_28138035_27 WHERE womens_doubles = \"Wang Nan Zhang Yining\"", "question": "Who is listed under mens singles when womens has wang nan zhang yining?", "context": "CREATE TABLE table_28138035_27 (mens_singles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT COUNT(womens_singles) FROM table_28138035_27 WHERE womens_doubles = \"Li Xiaodan Wen Jia\"", "question": "How many womens singles entries are there when womens doubles is li xiaodan wen jia?", "context": "CREATE TABLE table_28138035_27 (womens_singles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_28138035_27 WHERE year_location = \"1998 Doha\"", "question": "Who is listed under womens singles when year location is 1998 doha?", "context": "CREATE TABLE table_28138035_27 (womens_singles VARCHAR, year_location VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_28138035_27 WHERE year_location = \"2009 Doha\"", "question": "Who is listed under mens singles when the year location is 2009 doha?", "context": "CREATE TABLE table_28138035_27 (mens_singles VARCHAR, year_location VARCHAR)"}, {"answer": "SELECT COUNT(year_location) FROM table_28138035_20 WHERE womens_doubles = \"Jing Junhong Li Jiawei\"", "question": "How many  year locations are there for the womens doubles in jing junhong li jiawei?", "context": "CREATE TABLE table_28138035_20 (year_location VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT COUNT(mens_singles) FROM table_28138035_20 WHERE mens_doubles = \"Chen Qi Ma Lin\"", "question": "How many players are there for mens singles when chen qi ma lin played mens doubles?", "context": "CREATE TABLE table_28138035_20 (mens_singles VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_28138035_20 WHERE year_location = \"1999 Kobe\"", "question": "Who played mens doubles for the 1999 kobe tour?", "context": "CREATE TABLE table_28138035_20 (mens_doubles VARCHAR, year_location VARCHAR)"}, {"answer": "SELECT year_location FROM table_28138035_20 WHERE womens_doubles = \"Jing Junhong Li Jiawei\"", "question": "Where was the tour when  jing junhong li jiawei played womens doubles?", "context": "CREATE TABLE table_28138035_20 (year_location VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT COUNT(year_location) FROM table_28138035_20 WHERE mens_doubles = \"Lin Gaoyuan Wu Jiaji\"", "question": "How many years did lin gaoyuan wu jiaji play  mens doubles?", "context": "CREATE TABLE table_28138035_20 (year_location VARCHAR, mens_doubles VARCHAR)"}, {"answer": "SELECT COUNT(mens_doubles) FROM table_28138035_20 WHERE womens_singles = \"Guo Yue\"", "question": "How many people are shown for mens doubles when guo yue played womens singles?", "context": "CREATE TABLE table_28138035_20 (mens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT womens_singles FROM table_28138035_35 WHERE mens_singles = \"Jean-Michel Saive\"", "question": "Who won the Womens Singles in the year the Jean-Michel Saive won the Mens Singles?", "context": "CREATE TABLE table_28138035_35 (womens_singles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT year_location FROM table_28138035_35 WHERE mens_singles = \"Liu Guozheng\"", "question": "In what year and location did Liu Guozheng win the Mens Singles?", "context": "CREATE TABLE table_28138035_35 (year_location VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT year_location FROM table_28138035_35 WHERE mens_singles = \"Wang Liqin\"", "question": "In what year and location did Wang Liqin win the Mens Singles?", "context": "CREATE TABLE table_28138035_35 (year_location VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_28138035_6 WHERE year_location = \"2006 Guangzhou\"", "question": "Who won the mens doubles at the 2006 guangzhou event?", "context": "CREATE TABLE table_28138035_6 (mens_doubles VARCHAR, year_location VARCHAR)"}, {"answer": "SELECT COUNT(mens_singles) FROM table_28138035_6 WHERE womens_doubles = \"China\"", "question": "How many times was the womens doubles in china?", "context": "CREATE TABLE table_28138035_6 (mens_singles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT COUNT(womens_doubles) FROM table_28138035_6 WHERE womens_singles = \"Li Ju\" AND mens_singles = \"Wang Liqin\"", "question": "How many times did  li ju win the womens singles and wang liqin win the mens singles?", "context": "CREATE TABLE table_28138035_6 (womens_doubles VARCHAR, womens_singles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mens_singles FROM table_28138035_4 WHERE womens_doubles = \"Lee Eun-Sil Moon Hyun-Jung\"", "question": "Name the mens singles for lee eun-sil moon hyun-jung", "context": "CREATE TABLE table_28138035_4 (mens_singles VARCHAR, womens_doubles VARCHAR)"}, {"answer": "SELECT COUNT(womens_doubles) FROM table_28138035_4 WHERE year_location = \"2011 Rio de Janeiro\"", "question": "Name the number of womens doubles for 2011 rio de janeiro", "context": "CREATE TABLE table_28138035_4 (womens_doubles VARCHAR, year_location VARCHAR)"}, {"answer": "SELECT year_location FROM table_28138035_4 WHERE womens_singles = \"Haruna Fukuoka\"", "question": "Name the year location for  haruna fukuoka", "context": "CREATE TABLE table_28138035_4 (year_location VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_28138035_4 WHERE mens_singles = \"Dimitrij Ovtcharov\"", "question": "Name the mens doubles for dimitrij ovtcharov", "context": "CREATE TABLE table_28138035_4 (mens_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT COUNT(womens_singles) FROM table_28138035_4 WHERE year_location = \"1999 Rio de Janeiro\"", "question": "Name the number of womens singles for 1999 rio de janeiro", "context": "CREATE TABLE table_28138035_4 (womens_singles VARCHAR, year_location VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_28138035_4 WHERE mens_singles = \"Werner Schlager\"", "question": "Name the womens doubles for werner schlager", "context": "CREATE TABLE table_28138035_4 (womens_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT womens_doubles FROM table_28138035_32 WHERE womens_singles = \"Ding Ning\"", "question": "Who was the womens double winner when the womens singles winner was Ding Ning?", "context": "CREATE TABLE table_28138035_32 (womens_doubles VARCHAR, womens_singles VARCHAR)"}, {"answer": "SELECT written_by FROM table_28140578_1 WHERE no_in_series = 19", "question": "Who wrote episode number 19 in the series?", "context": "CREATE TABLE table_28140578_1 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT marks FROM table_2814720_1 WHERE tackles = 3", "question": "How many marks are there when tackles are 3?", "context": "CREATE TABLE table_2814720_1 (marks VARCHAR, tackles VARCHAR)"}, {"answer": "SELECT goal_accuracy__percentage FROM table_2814720_1 WHERE total_disposals = 481", "question": "What was the goal accuracy % when the total disposals are 481?", "context": "CREATE TABLE table_2814720_1 (goal_accuracy__percentage VARCHAR, total_disposals VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28140590_1 WHERE production_code = 60072", "question": "What date did the episode with a production code of 60072 originally air?", "context": "CREATE TABLE table_28140590_1 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_28146944_2 WHERE no_in_series = 36", "question": "What's the title of the episode with series number 36?", "context": "CREATE TABLE table_28146944_2 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_28164986_4 WHERE manner_of_departure = \"fired\" AND team = \"Niger Tornadoes\"", "question": "when was the next coach appointed after niger tornadoes fired their coach?", "context": "CREATE TABLE table_28164986_4 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(outgoing_manager) FROM table_28164986_4 WHERE team = \"Sunshine Stars\"", "question": "how many managers left sunshine stars?", "context": "CREATE TABLE table_28164986_4 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(incoming_manager) FROM table_28164986_4 WHERE manner_of_departure = \"Resigned\"", "question": "how many new managers replaced  manager(s) who resigned? ", "context": "CREATE TABLE table_28164986_4 (incoming_manager VARCHAR, manner_of_departure VARCHAR)"}, {"answer": "SELECT COUNT(date_of_vacancy) FROM table_28164986_4 WHERE outgoing_manager = \"Tunde Abdulrahman\"", "question": "how many times did tunde abdulrahman leave the team?", "context": "CREATE TABLE table_28164986_4 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT COUNT(platform) FROM table_28178595_2 WHERE mystic_arte = \"Celsius Calibur\"", "question": "How many platforms have celsius calibur as mystic arte?", "context": "CREATE TABLE table_28178595_2 (platform VARCHAR, mystic_arte VARCHAR)"}, {"answer": "SELECT COUNT(mystic_arte) FROM table_28178595_2 WHERE character = \"Hisui (Jadeite) Hearts 1\"", "question": "How many mystic arte have hisui (jadeite) hearts 1 as the character?", "context": "CREATE TABLE table_28178595_2 (mystic_arte VARCHAR, character VARCHAR)"}, {"answer": "SELECT COUNT(platform) FROM table_28178595_2 WHERE character = \"Nanaly Fletch\"", "question": "How many platforms have nanaly fletch as the character?", "context": "CREATE TABLE table_28178595_2 (platform VARCHAR, character VARCHAR)"}, {"answer": "SELECT status FROM table_28178595_2 WHERE character = \"Keel (Keele) Zeibel\"", "question": "What is the status of the character keel (keele) zeibel?", "context": "CREATE TABLE table_28178595_2 (status VARCHAR, character VARCHAR)"}, {"answer": "SELECT season FROM table_2817196_1 WHERE goals_against = 254", "question": "What sesaon(s) did they have 254 goals against?", "context": "CREATE TABLE table_2817196_1 (season VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_2817196_1", "question": "What is the largest number of points in a season?", "context": "CREATE TABLE table_2817196_1 (points INTEGER)"}, {"answer": "SELECT late_middle_english FROM table_28177800_5 WHERE late_old_english__anglian_ = \"\u00e6g, \u01e3g\"", "question": "What is the Late Middle English equivalent of the Anglian \u00e6g, \u01e3g?", "context": "CREATE TABLE table_28177800_5 (late_middle_english VARCHAR, late_old_english__anglian_ VARCHAR)"}, {"answer": "SELECT example FROM table_28177800_5 WHERE early_modern_english = \"( [x] \u2192 /f/) /\u0254f/\"", "question": "What is the example of the Early Modern English ( [x] \u2192 /f/) /\u0254f/?", "context": "CREATE TABLE table_28177800_5 (example VARCHAR, early_modern_english VARCHAR)"}, {"answer": "SELECT miles__km_ FROM table_28178756_1 WHERE year = 2010", "question": "List the numer of miles for 2010.", "context": "CREATE TABLE table_28178756_1 (miles__km_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_28178756_1 WHERE driver = \"Tommy Ellis\"", "question": "On what day did tommy ellis drive?", "context": "CREATE TABLE table_28178756_1 (date VARCHAR, driver VARCHAR)"}, {"answer": "SELECT date FROM table_28178756_1 WHERE team = \"Joe Gibbs Racing\" AND race_time = \"1:53:26\"", "question": "On what day did joe gibbs racing record a time of 1:53:26?", "context": "CREATE TABLE table_28178756_1 (date VARCHAR, team VARCHAR, race_time VARCHAR)"}, {"answer": "SELECT average_speed__mph_ FROM table_28178756_1 WHERE team = \"FILMAR Racing\"", "question": "What is the average speed for filmar racing?", "context": "CREATE TABLE table_28178756_1 (average_speed__mph_ VARCHAR, team VARCHAR)"}, {"answer": "SELECT race_time FROM table_28178756_1 WHERE date = \"May 11\"", "question": "List the race time for may 11.", "context": "CREATE TABLE table_28178756_1 (race_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(act) FROM table_28180840_15 WHERE name_name_of_act = \"Modern Grannies\"", "question": "What is the total number of modern grannies performed?", "context": "CREATE TABLE table_28180840_15 (act VARCHAR, name_name_of_act VARCHAR)"}, {"answer": "SELECT act FROM table_28180840_15 WHERE name_name_of_act = \"Zhu Xiaoming\"", "question": "What is the name of the performance zhu xiaoming performed?", "context": "CREATE TABLE table_28180840_15 (act VARCHAR, name_name_of_act VARCHAR)"}, {"answer": "SELECT semifinal__week_ FROM table_28180840_15 WHERE age_s_ = \"29\"", "question": "How many performers are 29 that made it to the semi finals?", "context": "CREATE TABLE table_28180840_15 (semifinal__week_ VARCHAR, age_s_ VARCHAR)"}, {"answer": "SELECT hometown FROM table_28180840_15 WHERE name_name_of_act = \"Zhou Jinsong\"", "question": "What is the name of the zhou jinsong's hometown?", "context": "CREATE TABLE table_28180840_15 (hometown VARCHAR, name_name_of_act VARCHAR)"}, {"answer": "SELECT COUNT(production_code) FROM table_2818164_2 WHERE original_air_date = \"October 18, 1984\"", "question": "How many different production codes does the episode originally aired on October 18, 1984 have?", "context": "CREATE TABLE table_2818164_2 (production_code VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_2818164_2 WHERE production_code = 104", "question": "What's the title of the episode with production code 104?", "context": "CREATE TABLE table_2818164_2 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_2818164_2 WHERE original_air_date = \"September 27, 1984\"", "question": "How many different titles does the episode originally aired on September 27, 1984 have?", "context": "CREATE TABLE table_2818164_2 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_2818164_2 WHERE original_air_date = \"February 21, 1985\"", "question": "What's the production code of the episode originally aired on February 21, 1985?", "context": "CREATE TABLE table_2818164_2 (production_code INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT round FROM table_28181401_4 WHERE scorers = \"Roberts 86'\"", "question": "when roberts 86' is the scorer what is the round?", "context": "CREATE TABLE table_28181401_4 (round VARCHAR, scorers VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_28181401_4 WHERE round = \"Semi Final (2nd leg)\"", "question": "When semi final (2nd leg) is the round what is the highest attendance?", "context": "CREATE TABLE table_28181401_4 (attendance INTEGER, round VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_28181347_6 WHERE replaced_by = \"Mark Stimson\"", "question": "When Mark Stimson started his job in 2007-08 what posiiton was the team on the table", "context": "CREATE TABLE table_28181347_6 (position_in_table VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_28181347_6 WHERE date_of_vacancy = \"8 October 2007\"", "question": "In football league one, what coach was hired as a replacement on 8 October 2007", "context": "CREATE TABLE table_28181347_6 (replaced_by VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_28181347_6 WHERE date_of_appointment = \"6 November 2007\"", "question": "One 6 November 2007 what was the manner of departure for the coach release in football league one?", "context": "CREATE TABLE table_28181347_6 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_2818164_4 WHERE written_by = \"Janet Leahy\"", "question": "What is the series number for the episode written by janet leahy?", "context": "CREATE TABLE table_2818164_4 (no_in_series INTEGER, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_2818164_4 WHERE production_code = 322", "question": "What was the air date of the episode with the production code of 322?", "context": "CREATE TABLE table_2818164_4 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_2818164_4 WHERE directed_by = \"Jay Sandrich\" AND original_air_date = \"October 23, 1986\"", "question": "What is the series number for the episode directed by  jay sandrich that aired October 23, 1986?", "context": "CREATE TABLE table_2818164_4 (no_in_series INTEGER, directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_28195971_1 WHERE directed_by = \"David Solomon\" AND written_by = \"Marti Noxon\"", "question": "What are the title(s) of episodes directed by david solomon and written by marti noxon?", "context": "CREATE TABLE table_28195971_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(_number) FROM table_28196105_1 WHERE production_code = \"7ABB21\"", "question": "What was the number of episodes whose production code is 7ABB21?", "context": "CREATE TABLE table_28196105_1 (_number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_28196105_1 WHERE _number = 18", "question": "Who wrote episode number 18?", "context": "CREATE TABLE table_28196105_1 (written_by VARCHAR, _number VARCHAR)"}, {"answer": "SELECT tries_for FROM table_28204447_3 WHERE l < 2.0", "question": "Name the tries for when L is less than 2.0", "context": "CREATE TABLE table_28204447_3 (tries_for VARCHAR, l INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_2820584_2", "question": "What is the most recent year shown for Betty Stove?", "context": "CREATE TABLE table_2820584_2 (year INTEGER)"}, {"answer": "SELECT partner FROM table_2820584_2 WHERE surface = \"Hard\"", "question": "Who was Betty's partner when the surface is hard?", "context": "CREATE TABLE table_2820584_2 (partner VARCHAR, surface VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_28201906_1", "question": "What is the lowest number of drawn games by a team?", "context": "CREATE TABLE table_28201906_1 (drawn INTEGER)"}, {"answer": "SELECT pts_for FROM table_28201906_1 WHERE won = 5", "question": "How many points did the team that won 5 games make?", "context": "CREATE TABLE table_28201906_1 (pts_for VARCHAR, won VARCHAR)"}, {"answer": "SELECT points FROM table_28201906_1 WHERE pts_agst = 45", "question": "How many points does the club that had 45 points against it have?", "context": "CREATE TABLE table_28201906_1 (points VARCHAR, pts_agst VARCHAR)"}, {"answer": "SELECT COUNT(institution) FROM table_28211213_2 WHERE team_nickname = \"Gray Wolves\"", "question": "When gray wolves is the team nickname how many institutions are there?", "context": "CREATE TABLE table_28211213_2 (institution VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT team_nickname FROM table_28211213_2 WHERE location = \"Sylvania, OH\"", "question": "When sylvania, oh is the location what is the team nickname?", "context": "CREATE TABLE table_28211213_2 (team_nickname VARCHAR, location VARCHAR)"}, {"answer": "SELECT institution FROM table_28211213_2 WHERE location = \"Indianapolis, Indiana\"", "question": "When indianapolis, indiana is the location what is the institution?", "context": "CREATE TABLE table_28211213_2 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT team_nickname FROM table_28211213_2 WHERE affiliation = \"Private/ Nonsectarian\"", "question": "When private/ nonsectarian is the the affiliation what is the team nickname?", "context": "CREATE TABLE table_28211213_2 (team_nickname VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT team_nickname FROM table_28211213_2 WHERE enrollment = 4512", "question": "4512 is the enrollment what is the team nickname?", "context": "CREATE TABLE table_28211213_2 (team_nickname VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT championship FROM table_2820584_3 WHERE partner = \"Allan Stone\"", "question": "What championship was played with Allan Stone as a partner?", "context": "CREATE TABLE table_2820584_3 (championship VARCHAR, partner VARCHAR)"}, {"answer": "SELECT COUNT(partner) FROM table_2820584_3 WHERE year = 1973", "question": "How many different partners played in the finale in 1973?", "context": "CREATE TABLE table_2820584_3 (partner VARCHAR, year VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_2820584_3 WHERE partner = \"Fred McNair\"", "question": "What was the score in the final played with Fred McNair as partner?", "context": "CREATE TABLE table_2820584_3 (score_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28210383_1 WHERE prod_code = \"2ACX12\"", "question": "What was the orginal air date for episodes with production code 2acx12?", "context": "CREATE TABLE table_28210383_1 (original_air_date VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_28210383_1 WHERE prod_code = \"2ACX12\"", "question": "Who wrote the episode with production code 2acx12?", "context": "CREATE TABLE table_28210383_1 (written_by VARCHAR, prod_code VARCHAR)"}, {"answer": "SELECT no__episode__number_ FROM table_28210383_1 WHERE directed_by = \"Greg Colton\" AND written_by = \"Patrick Meighan\"", "question": "What numbered episode was directed by greg colton and written by patrick meighan?", "context": "CREATE TABLE table_28210383_1 (no__episode__number_ VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_28210383_1 WHERE _number__season__number_ = \"1 ( 2 )\"", "question": "Who directed # (season #) is 1 ( 2 )?", "context": "CREATE TABLE table_28210383_1 (directed_by VARCHAR, _number__season__number_ VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = \"Ma Wenge\"", "question": "Who is everyone on the men's doubles when men's singles is Ma Wenge?", "context": "CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = \"Jean-Michel Saive\"", "question": "Who are all men's doubles when men's singles is Jean-Michel Saive?", "context": "CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT host FROM table_28211988_1 WHERE mens_singles = \"Ma Wenge\"", "question": "Who are all hosts when men's singles is Ma Wenge?", "context": "CREATE TABLE table_28211988_1 (host VARCHAR, mens_singles VARCHAR)"}, {"answer": "SELECT COUNT(womens_singles) FROM table_28211988_1 WHERE season = \"2000/01\"", "question": "How many people are women's singles in the season of 2000/01?", "context": "CREATE TABLE table_28211988_1 (womens_singles VARCHAR, season VARCHAR)"}, {"answer": "SELECT mens_doubles FROM table_28211988_4 WHERE season = \"1963/64\"", "question": "Name the winners of the mens doubles in the season of 1963/64.", "context": "CREATE TABLE table_28211988_4 (mens_doubles VARCHAR, season VARCHAR)"}, {"answer": "SELECT directed_by FROM table_28212888_2 WHERE no_in_series = 116", "question": "Who was the director of the episode with series number 116?", "context": "CREATE TABLE table_28212888_2 (directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT title FROM table_28212888_2 WHERE us_viewers__millions_ = \"12.85\"", "question": "What's the title of the episode seen by 12.85 millions of people in the US?", "context": "CREATE TABLE table_28212888_2 (title VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_28215780_4 WHERE us_viewers__millions_ = \"11.86\"", "question": "How many episodes had 11.86 million US viewers?", "context": "CREATE TABLE table_28215780_4 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_28215780_4 WHERE written_by = \"Aron Eli Coleite\"", "question": "What is the title(s) of episodes written by aron eli coleite?", "context": "CREATE TABLE table_28215780_4 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28215780_4 WHERE written_by = \"Aron Eli Coleite\"", "question": "What are the original air date(s) for episodes written by aron eli coleite?", "context": "CREATE TABLE table_28215780_4 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(producer__s_) FROM table_28232443_1 WHERE song__s_ = \"Calling Out to Marlboro\"", "question": "how many producers are responsible for the song 'calling out to marlboro?", "context": "CREATE TABLE table_28232443_1 (producer__s_ VARCHAR, song__s_ VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_28232443_1 WHERE artist = \"Kid Creole and the Coconuts\"", "question": "what was the first year that kid creole and the coconuts recorded with I Too Have Seen The Woods / Sire Records?", "context": "CREATE TABLE table_28232443_1 (year INTEGER, artist VARCHAR)"}, {"answer": "SELECT COUNT(seasons) FROM table_2822193_1 WHERE series = \"Formula Holden\"", "question": "How many seasons are there with Formula Holden?", "context": "CREATE TABLE table_2822193_1 (seasons VARCHAR, series VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_2822193_1 WHERE races = 2", "question": "How many poles are there with 2 races?", "context": "CREATE TABLE table_2822193_1 (poles INTEGER, races VARCHAR)"}, {"answer": "SELECT MAX(point_finishes__non_podium_) FROM table_2822193_1 WHERE series = \"V8Supercar\"", "question": "What's the most amount of point finishes for v8supercar?", "context": "CREATE TABLE table_2822193_1 (point_finishes__non_podium_ INTEGER, series VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_28220778_21 WHERE game = 14", "question": "How many people had high rebounds in game 14?", "context": "CREATE TABLE table_28220778_21 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_28220778_21 WHERE date = \"January 2\"", "question": "What is every score when the date is January 2?", "context": "CREATE TABLE table_28220778_21 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_28243691_1 WHERE institution = \"University of North Texas\"", "question": "What was the highest number of students in attendance for the university of north texas?", "context": "CREATE TABLE table_28243691_1 (enrollment INTEGER, institution VARCHAR)"}, {"answer": "SELECT team_nickname FROM table_28243691_1 WHERE institution = \"Texas Tech University\"", "question": "What is the mascot for texas tech university?", "context": "CREATE TABLE table_28243691_1 (team_nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT enrollment FROM table_28243691_1 WHERE affiliation = \"Private/ Disciples of Christ\"", "question": "What is the total enrollment for private/ disciples of christ?", "context": "CREATE TABLE table_28243691_1 (enrollment VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT COUNT(team_nickname) FROM table_28243691_1 WHERE location = \"College Station, Texas\"", "question": "How many mascotts are there for college station, texas", "context": "CREATE TABLE table_28243691_1 (team_nickname VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_28243691_1 WHERE founded = 1923", "question": "List the highest number of students in attendance for the institution that started in 1923.", "context": "CREATE TABLE table_28243691_1 (enrollment INTEGER, founded VARCHAR)"}, {"answer": "SELECT COUNT(next_in_line) FROM table_28241890_2 WHERE heir = \"Archduke Karl\"", "question": "How many next in lines had heirs of Archduke Karl?", "context": "CREATE TABLE table_28241890_2 (next_in_line VARCHAR, heir VARCHAR)"}, {"answer": "SELECT club_name FROM table_28243323_1 WHERE writer_composer = \"Larry Spokes\"", "question": "Name the team that has a song writer named larry spokes.", "context": "CREATE TABLE table_28243323_1 (club_name VARCHAR, writer_composer VARCHAR)"}, {"answer": "SELECT COUNT(name_of_team_song) FROM table_28243323_1 WHERE writer_composer = \"Harry Angus\"", "question": "How man teams have a writer named harry angus?", "context": "CREATE TABLE table_28243323_1 (name_of_team_song VARCHAR, writer_composer VARCHAR)"}, {"answer": "SELECT name_of_team_song FROM table_28243323_1 WHERE writer_composer = \"Quentin Eyers and Les Kaczmarek\"", "question": "Name the team anthem that was written by quentin eyers and les kaczmarek.", "context": "CREATE TABLE table_28243323_1 (name_of_team_song VARCHAR, writer_composer VARCHAR)"}, {"answer": "SELECT COUNT(basis_for_team_song) FROM table_28243323_1 WHERE club_name = \"Fremantle\"", "question": "How many team songs does fremantle have?", "context": "CREATE TABLE table_28243323_1 (basis_for_team_song VARCHAR, club_name VARCHAR)"}, {"answer": "SELECT basis_for_team_song FROM table_28243323_1 WHERE writer_composer = \"Ken Walther\"", "question": "What is the name of the team song written by ken walther?", "context": "CREATE TABLE table_28243323_1 (basis_for_team_song VARCHAR, writer_composer VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_28243691_2 WHERE team_nickname = \"Comets\"", "question": "In how many different years was the team nicknamed Comets founded?", "context": "CREATE TABLE table_28243691_2 (founded VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT team_nickname FROM table_28243691_2 WHERE enrollment = 40747", "question": "What's the nickname of the team with enrollment of 40747?", "context": "CREATE TABLE table_28243691_2 (team_nickname VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT institution FROM table_28243691_2 WHERE location = \"Huntsville, Texas\"", "question": "What school is located in Huntsville, Texas?", "context": "CREATE TABLE table_28243691_2 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT enrollment FROM table_28243691_2 WHERE team_nickname = \"Comets\"", "question": "How many students are enrolled in the team nicknamed Comets?", "context": "CREATE TABLE table_28243691_2 (enrollment VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT COUNT(tenant) FROM table_28281704_1 WHERE country = \"Russia\" AND stadium = \"Saransk stadium\"", "question": "Name the number of tenants for russia at the saransk stadium", "context": "CREATE TABLE table_28281704_1 (tenant VARCHAR, country VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT country FROM table_28281704_1 WHERE stadium = \"Lusail National stadium\"", "question": "Name the country for lusail national stadium", "context": "CREATE TABLE table_28281704_1 (country VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT city FROM table_28281704_1 WHERE stadium = \"Los Angeles stadium\"", "question": "Name the city for los angeles stadium", "context": "CREATE TABLE table_28281704_1 (city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT stadium FROM table_28281704_1 WHERE city = \"Nizhny Novgorod\"", "question": "Name the stadium for nizhny novgorod", "context": "CREATE TABLE table_28281704_1 (stadium VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_28281704_1 WHERE city = \"Athens\"", "question": "Name the country for athens", "context": "CREATE TABLE table_28281704_1 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT date_aired FROM table_28283535_4 WHERE episode = \"1.13\"", "question": "When did the episode 1.13 air for the first time?", "context": "CREATE TABLE table_28283535_4 (date_aired VARCHAR, episode VARCHAR)"}, {"answer": "SELECT weekly_rank FROM table_28283535_4 WHERE episode = \"1.03\"", "question": "What's the weekly rank of episode 1.03?", "context": "CREATE TABLE table_28283535_4 (weekly_rank VARCHAR, episode VARCHAR)"}, {"answer": "SELECT rating FROM table_28283535_4 WHERE episode = \"1.04\"", "question": "What is the rating of episode 1.04?", "context": "CREATE TABLE table_28283535_4 (rating VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(cap_s_) FROM table_28286776_12 WHERE club_s_ = \"Burnley\"", "question": "How many items are listed under caps when burnley is the club team?", "context": "CREATE TABLE table_28286776_12 (cap_s_ VARCHAR, club_s_ VARCHAR)"}, {"answer": "SELECT club_s_ FROM table_28286776_12 WHERE goal_s_ = 10", "question": "What club did the championship player come from who had 10 goals?", "context": "CREATE TABLE table_28286776_12 (club_s_ VARCHAR, goal_s_ VARCHAR)"}, {"answer": "SELECT MIN(goal_s_) FROM table_28286776_12 WHERE club_s_ = \"Ipswich Town\"", "question": "How many goals did the player from Ipswich town score?", "context": "CREATE TABLE table_28286776_12 (goal_s_ INTEGER, club_s_ VARCHAR)"}, {"answer": "SELECT player FROM table_28286776_50 WHERE cap_s_ = 16", "question": "When 16 is the cap who is the player?", "context": "CREATE TABLE table_28286776_50 (player VARCHAR, cap_s_ VARCHAR)"}, {"answer": "SELECT club_s_ FROM table_28286776_50 WHERE international_debut = \"2010 v Australia\"", "question": "When 2010 v australia is the interantional debut what is the club?", "context": "CREATE TABLE table_28286776_50 (club_s_ VARCHAR, international_debut VARCHAR)"}, {"answer": "SELECT club_s_ FROM table_28286776_50 WHERE player = \"Winston Reid Category:Articles with hCards\"", "question": "When winston reid category:articles with hcards is the player what is the club?", "context": "CREATE TABLE table_28286776_50 (club_s_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(cap_s_) FROM table_28286776_50 WHERE goal_s_ = 1 AND player = \"Tommy Smith Category:Articles with hCards\"", "question": "When tommy smith category:articles with hcards is the player and 1 is the goal how many cap(s) are there?", "context": "CREATE TABLE table_28286776_50 (cap_s_ VARCHAR, goal_s_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT international_debut FROM table_28286776_50 WHERE player = \"Rory Fallon Category:Articles with hCards\"", "question": "When  rory fallon category:articles with hcards is the player when is the international debut?", "context": "CREATE TABLE table_28286776_50 (international_debut VARCHAR, player VARCHAR)"}, {"answer": "SELECT title FROM table_2828803_1 WHERE written_by = \"Nick Thiel\"", "question": "What is th title of the episode written by Nick Thiel?", "context": "CREATE TABLE table_2828803_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_2828803_1 WHERE production_code = \"2T7004\"", "question": "How many million u.s. viewers watched the episode with a production code of 2t7004?", "context": "CREATE TABLE table_2828803_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_2828803_1 WHERE directed_by = \"Dennis Smith\"", "question": "What is the name of the episode that was directed by Dennis Smith?", "context": "CREATE TABLE table_2828803_1 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(site) FROM table_28298589_2 WHERE time = \"3:30pm\" AND visiting_team = \"Coastal Carolina\"", "question": "How many site entries are there at 3:30pm and the visiting team is coastal carolina?", "context": "CREATE TABLE table_28298589_2 (site VARCHAR, time VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT result FROM table_28298589_2 WHERE visiting_team = \"Syracuse\"", "question": "What is the result when the visiting team is syracuse?", "context": "CREATE TABLE table_28298589_2 (result VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT MAX(stage) FROM table_28298471_14 WHERE winner = \"Svein Tuft\"", "question": "When svein tuft is the winner what is the highest stage?", "context": "CREATE TABLE table_28298471_14 (stage INTEGER, winner VARCHAR)"}, {"answer": "SELECT COUNT(stage) FROM table_28298471_14 WHERE winner = \"Svein Tuft\"", "question": "when svein tuft is the winner how many stages are there?", "context": "CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR)"}, {"answer": "SELECT team_classification FROM table_28298471_14 WHERE winner = \"Hayden Roulston\"", "question": "when hayden roulston is the winner what is the team classification?", "context": "CREATE TABLE table_28298471_14 (team_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT stage FROM table_28298471_14 WHERE mountains_classification = \"Michael Reihs\"", "question": "When michael reihs is the mountains classification what is the stage?", "context": "CREATE TABLE table_28298471_14 (stage VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT team_classification FROM table_28298471_14 WHERE points_classification = \"Michael Van Stayen\"", "question": "When michael van stayen is the points classification what is the team classification?", "context": "CREATE TABLE table_28298471_14 (team_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT stage FROM table_28298471_14 WHERE winner = \"Hayden Roulston\"", "question": "When hayden roulston is the winner what is the stage?", "context": "CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_28298589_4 WHERE visiting_team = \"Texas Southern\"", "question": "What date was the game where Texas Southern was the visiting team?", "context": "CREATE TABLE table_28298589_4 (date VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT COUNT(broadcast) FROM table_28298589_4 WHERE home_team = \"Connecticut\"", "question": "How many Connecticut home games were broadcast?", "context": "CREATE TABLE table_28298589_4 (broadcast VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT site FROM table_28298589_4 WHERE home_team = \"Pittsburgh\"", "question": "In what facility was Pittsburgh's home game played?", "context": "CREATE TABLE table_28298589_4 (site VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT result FROM table_28298589_4 WHERE home_team = \"Washington\"", "question": "What was the final score of Washington's home game?", "context": "CREATE TABLE table_28298589_4 (result VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT location FROM table_283203_1 WHERE capacity = \"10,517 5,006\"", "question": "Where is the team that has a stadium capable of a capacity of 10,517 5,006 located?", "context": "CREATE TABLE table_283203_1 (location VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT home_venue FROM table_283203_1 WHERE founded = 1993", "question": "Where is the home venue of the team founded in 1993?", "context": "CREATE TABLE table_283203_1 (home_venue VARCHAR, founded VARCHAR)"}, {"answer": "SELECT years_active FROM table_283203_1 WHERE home_venue = \"North Shore Events Centre Vector Arena\"", "question": "How long has the team who owns North Shore Events Centre Vector Arena been active?", "context": "CREATE TABLE table_283203_1 (years_active VARCHAR, home_venue VARCHAR)"}, {"answer": "SELECT capacity FROM table_283203_1 WHERE club = \"New Zealand Breakers\"", "question": "What is the capacity for the Home Venue of the New Zealand Breakers club?", "context": "CREATE TABLE table_283203_1 (capacity VARCHAR, club VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_28334498_3 WHERE directed_by = \"Jeff Melman\" AND us_viewers__millions_ = \"1.21\"", "question": "How many episodes were directed by Jeff Melman and 1.21million viewers?", "context": "CREATE TABLE table_28334498_3 (no_in_season INTEGER, directed_by VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28334498_3 WHERE us_viewers__millions_ = \"1.01\"", "question": "What air date had 1.01 million U.S. viewers?", "context": "CREATE TABLE table_28334498_3 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT aircraft_type FROM table_28342423_1 WHERE geschwader_base = \"Furstenau/Vorden\"", "question": "Name the aircraft type for  furstenau/vorden", "context": "CREATE TABLE table_28342423_1 (aircraft_type VARCHAR, geschwader_base VARCHAR)"}, {"answer": "SELECT parent_unit FROM table_28342423_1 WHERE commanding_officer = \"Ludwig Franzisket\"", "question": "Name the parent unit for ludwig franzisket", "context": "CREATE TABLE table_28342423_1 (parent_unit VARCHAR, commanding_officer VARCHAR)"}, {"answer": "SELECT aircraft_type FROM table_28342423_1 WHERE parent_unit = \"Jagdgeschwader 6\"", "question": "Name the aircraft type for jagdgeschwader 6", "context": "CREATE TABLE table_28342423_1 (aircraft_type VARCHAR, parent_unit VARCHAR)"}, {"answer": "SELECT aircraft_type FROM table_28342423_1 WHERE parent_unit = \"Jagdgeschwader 26\"", "question": "Name the aircraft type for  jagdgeschwader 26", "context": "CREATE TABLE table_28342423_1 (aircraft_type VARCHAR, parent_unit VARCHAR)"}, {"answer": "SELECT parent_unit FROM table_28342423_1 WHERE commanding_officer = \"Josef Priller\"", "question": "Name the parent unit for josef priller", "context": "CREATE TABLE table_28342423_1 (parent_unit VARCHAR, commanding_officer VARCHAR)"}, {"answer": "SELECT production_code FROM table_28348757_3 WHERE _number = 8", "question": "Name the production code for number 8", "context": "CREATE TABLE table_28348757_3 (production_code VARCHAR, _number VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_28348757_3 WHERE production_code = \"XLE02007\"", "question": "Name the least number for xle02007", "context": "CREATE TABLE table_28348757_3 (no INTEGER, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_28348757_6 WHERE production_code = \"XLE05012\"", "question": "Who wrote the episode with the code xle05012?", "context": "CREATE TABLE table_28348757_6 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT _number FROM table_28348757_6 WHERE us_viewers__million_ = \"0.79\"", "question": "what are the numbers of episodes that had 0.79 million US views?", "context": "CREATE TABLE table_28348757_6 (_number VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT female_saber FROM table_28372291_1 WHERE average_fencers_rank = \"3.5\"", "question": "What female fenced with a saber on the team that had an average fencer rank of 3.5?", "context": "CREATE TABLE table_28372291_1 (female_saber VARCHAR, average_fencers_rank VARCHAR)"}, {"answer": "SELECT team FROM table_28372291_1 WHERE average_fencers_rank = \"1.33\"", "question": "What team had an average fencer rank of 1.33?", "context": "CREATE TABLE table_28372291_1 (team VARCHAR, average_fencers_rank VARCHAR)"}, {"answer": "SELECT corporate_name FROM table_28367242_1 WHERE incorporation_date__city_ = \"October 15, 1955\"", "question": "What is the name of the corporation that incorporated on october 15, 1955?", "context": "CREATE TABLE table_28367242_1 (corporate_name VARCHAR, incorporation_date__city_ VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_28367242_1 WHERE corporate_name = \"Powell River, The Corporation of the City of\"", "question": "What is the area of the corporation named the powell river, the corporation of the city of?", "context": "CREATE TABLE table_28367242_1 (area__km\u00b2_ VARCHAR, corporate_name VARCHAR)"}, {"answer": "SELECT COUNT(area__km\u00b2_) FROM table_28367242_1 WHERE name = \"Armstrong\"", "question": "How many Area's are there for Armstrong?", "context": "CREATE TABLE table_28367242_1 (area__km\u00b2_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_28367242_1 WHERE incorporation_date__city_ = \"July 16, 1860\"", "question": "What is the name of the city which incorporated on july 16, 1860?", "context": "CREATE TABLE table_28367242_1 (name VARCHAR, incorporation_date__city_ VARCHAR)"}, {"answer": "SELECT corporate_name FROM table_28367242_1 WHERE area__km\u00b2_ = \"15.63\"", "question": "What is the name of the corporation with an area of 15.63 km?", "context": "CREATE TABLE table_28367242_1 (corporate_name VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(area__km\u00b2_) FROM table_28367242_1 WHERE corporate_name = \"Fort St. John, City of\"", "question": "How many areas are there for the corporation named fort st. john, city of?", "context": "CREATE TABLE table_28367242_1 (area__km\u00b2_ VARCHAR, corporate_name VARCHAR)"}, {"answer": "SELECT emma_bunton FROM table_28352386_1 WHERE total = \"22\"", "question": "What was Emma Bunton's score for the performance with a total score of 22?", "context": "CREATE TABLE table_28352386_1 (emma_bunton VARCHAR, total VARCHAR)"}, {"answer": "SELECT total FROM table_28352386_1 WHERE guest_judge = \"10\"", "question": "What was the total score when the guest judge gave a score of 10?", "context": "CREATE TABLE table_28352386_1 (total VARCHAR, guest_judge VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_28358487_3 WHERE production_code = 101", "question": "what is the number of  the episode in the season whose production code is 101? ", "context": "CREATE TABLE table_28358487_3 (no VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT conference FROM table_28365816_2 WHERE tournament_winner = \"North Carolina\"", "question": "During what conference is North Carolina listed as the tournament winner?", "context": "CREATE TABLE table_28365816_2 (conference VARCHAR, tournament_winner VARCHAR)"}, {"answer": "SELECT regular_season_winner FROM table_28365816_2 WHERE conference = \"Big Seven conference\"", "question": "During the Big Seven Conference which team was the regular season winner?", "context": "CREATE TABLE table_28365816_2 (regular_season_winner VARCHAR, conference VARCHAR)"}, {"answer": "SELECT tournament_venue__city_ FROM table_28365816_2 WHERE conference = \"Missouri Valley conference\"", "question": "What tournament venue is listed during the Missouri Valley Conference?", "context": "CREATE TABLE table_28365816_2 (tournament_venue__city_ VARCHAR, conference VARCHAR)"}, {"answer": "SELECT tournament_winner FROM table_28365816_2 WHERE conference = \"Mid-American conference\"", "question": "During the Mid-American Conference who is listed as the tournament winner?", "context": "CREATE TABLE table_28365816_2 (tournament_winner VARCHAR, conference VARCHAR)"}, {"answer": "SELECT tournament_venue__city_ FROM table_28365816_2 WHERE regular_season_winner = \"Yale\"", "question": "When Yale is listed as the regular season winner, what tournament venue is given?", "context": "CREATE TABLE table_28365816_2 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR)"}, {"answer": "SELECT COUNT(conference) AS Tournament FROM table_28365816_2 WHERE regular_season_winner = \"Texas Western\"", "question": "How many entries for conference tournament are listed when Texas Western is the regular season winner?", "context": "CREATE TABLE table_28365816_2 (conference VARCHAR, regular_season_winner VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2840500_5 WHERE college_junior_club_team = \"HC Lada Togliatti (Russia)\"", "question": "Which team drafted the player from the HC Lada Togliatti (Russia)?", "context": "CREATE TABLE table_2840500_5 (nhl_team VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_2840500_3 WHERE position = \"Left Wing\" AND nationality = \"Canada\" AND nhl_team = \"St. Louis Blues\"", "question": "who is the person that plays left wing and is from canada that plays on the st. louis blues", "context": "CREATE TABLE table_2840500_3 (player VARCHAR, nhl_team VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_2840500_3 WHERE player = \"Scott Parker\"", "question": "what is the overall number of chosen ideas where the person is scott parker", "context": "CREATE TABLE table_2840500_3 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_2840500_3 WHERE college_junior_club_team = \"HC Dukla Tren\u010d\u00edn (Slovakia)\"", "question": "what is the number of the chosen club where the hc dukla tren\u010d\u00edn (slovakia) is from", "context": "CREATE TABLE table_2840500_3 (pick VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_2840500_2 WHERE nhl_team = \"Edmonton Oilers\"", "question": "How many players were drafted by the Edmonton Oilers?", "context": "CREATE TABLE table_2840500_2 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_2840500_2 WHERE nhl_team = \"Washington Capitals\"", "question": "Who was drafted by the Washington Capitals?", "context": "CREATE TABLE table_2840500_2 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2840500_2 WHERE player = \"Travis Brigley\"", "question": "Which team drafted Travis Brigley?", "context": "CREATE TABLE table_2840500_2 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_2840500_2 WHERE position = \"Centre\" AND nationality = \"Czech Republic\"", "question": "What is the minimum pick of a centre from the Czech Republic?", "context": "CREATE TABLE table_2840500_2 (pick INTEGER, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT player FROM table_28461589_2 WHERE passes = 223", "question": "Which player made exactly 223 passes?", "context": "CREATE TABLE table_28461589_2 (player VARCHAR, passes VARCHAR)"}, {"answer": "SELECT MIN(mins_played) FROM table_28461589_2 WHERE good_passes = 638", "question": "What is the fewest minutes played for the player with exactly 638 good passes?", "context": "CREATE TABLE table_28461589_2 (mins_played INTEGER, good_passes VARCHAR)"}, {"answer": "SELECT MAX(assists) FROM table_28461589_2 WHERE games_played = 25", "question": "What is the most number of assists for players with exactly 25 games played?", "context": "CREATE TABLE table_28461589_2 (assists INTEGER, games_played VARCHAR)"}, {"answer": "SELECT MAX(passes) FROM table_28461589_2 WHERE starting = 34", "question": "What is the largest number of passes for players starting exactly 34 games?", "context": "CREATE TABLE table_28461589_2 (passes INTEGER, starting VARCHAR)"}, {"answer": "SELECT nickname FROM table_28436909_4 WHERE letters = \"\u039a\u0391\u0398\"", "question": "When \u03ba\u03b1\u03b8 are the letters what is the nickname?", "context": "CREATE TABLE table_28436909_4 (nickname VARCHAR, letters VARCHAR)"}, {"answer": "SELECT COUNT(organization) FROM table_28436909_4 WHERE founding_date = \"1873-12-25\"", "question": "When 1873-12-25 is the founding date how many organizations are there?", "context": "CREATE TABLE table_28436909_4 (organization VARCHAR, founding_date VARCHAR)"}, {"answer": "SELECT canadian_chapters FROM table_28436909_4 WHERE founding_date = \"1872-10-10\"", "question": "When 1872-10-10 is the founding date what are the canadian chapters?", "context": "CREATE TABLE table_28436909_4 (canadian_chapters VARCHAR, founding_date VARCHAR)"}, {"answer": "SELECT COUNT(founding_date) FROM table_28436909_4 WHERE canadian_chapters = \"1 Active, 1 Inactive\"", "question": "When 1 active, 1 inactive is the canadian chapters how many founding dates are there?", "context": "CREATE TABLE table_28436909_4 (founding_date VARCHAR, canadian_chapters VARCHAR)"}, {"answer": "SELECT last_meeting FROM table_2846320_4 WHERE name_of_rivalry = \"Iron Bowl\"", "question": "when was the ending time where the enemy met in the iron bowl", "context": "CREATE TABLE table_2846320_4 (last_meeting VARCHAR, name_of_rivalry VARCHAR)"}, {"answer": "SELECT MIN(au_won) FROM table_2846320_4 WHERE games_played = 92", "question": "what was the lowest number that auburn triumphed where the activities took part was 92", "context": "CREATE TABLE table_2846320_4 (au_won INTEGER, games_played VARCHAR)"}, {"answer": "SELECT rival FROM table_2846320_4 WHERE first_meeting = 1899", "question": "what are all the adversary where the beginning is 1899", "context": "CREATE TABLE table_2846320_4 (rival VARCHAR, first_meeting VARCHAR)"}, {"answer": "SELECT streak FROM table_2846320_4 WHERE last_meeting = 2009", "question": "what is the length where the time is 2009", "context": "CREATE TABLE table_2846320_4 (streak VARCHAR, last_meeting VARCHAR)"}, {"answer": "SELECT distance FROM table_28490105_1 WHERE supporting = \"Champ Car World Series ( Grand Prix of Cleveland )\" AND tc_winning_car = \"Pierre Kleinubing\"", "question": "What was the distance in the round where the supporter was champ car world series ( grand prix of cleveland ) and the tc winning car was pierre kleinubing?", "context": "CREATE TABLE table_28490105_1 (distance VARCHAR, supporting VARCHAR, tc_winning_car VARCHAR)"}, {"answer": "SELECT MIN(rnd) FROM table_28490105_1 WHERE gt_winning_car = \"Max Angelelli\"", "question": "What is the earliest round where the gt winning car is max angelelli?", "context": "CREATE TABLE table_28490105_1 (rnd INTEGER, gt_winning_car VARCHAR)"}, {"answer": "SELECT supporting FROM table_28490105_1 WHERE gt_winning_car = \"Dodge Viper\" AND rnd = 1", "question": "Who was supporting in round 1 where the gt winning car was dodge viper?", "context": "CREATE TABLE table_28490105_1 (supporting VARCHAR, gt_winning_car VARCHAR, rnd VARCHAR)"}, {"answer": "SELECT supporting FROM table_28490105_1 WHERE gt_winning_car = \"Dino Crescentini\"", "question": "Who was supporting in the round when the gt winning car was dino crescentini?", "context": "CREATE TABLE table_28490105_1 (supporting VARCHAR, gt_winning_car VARCHAR)"}, {"answer": "SELECT written_by FROM table_28466323_2 WHERE production_code = \"2J5568\"", "question": "Who wrote the episode with production code 2j5568?", "context": "CREATE TABLE table_28466323_2 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_28466323_2 WHERE us_viewers__million_ = \"2.01\"", "question": "Who directed the episode watched by 2.01 million US viewers?", "context": "CREATE TABLE table_28466323_2 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT _number_of_divisions FROM table_2849652_1 WHERE sport = \"Bowling\"", "question": "How many divisions in bowling ? ", "context": "CREATE TABLE table_2849652_1 (_number_of_divisions VARCHAR, sport VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_tournament) FROM table_2849652_2 WHERE season = \"Winter\" AND _number_of_divisions = 1", "question": "How many first tournaments were winter sports with exactly 1 division?", "context": "CREATE TABLE table_2849652_2 (season VARCHAR, _number_of_divisions VARCHAR)"}, {"answer": "SELECT 2011 AS _2012_state_tournament_location FROM table_2849652_2 WHERE sport = \"Soccer\"", "question": "Where was the 2011-2012 soccer state tournament held?", "context": "CREATE TABLE table_2849652_2 (sport VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_tournament) FROM table_2849652_2 WHERE sport = \"Bowling\"", "question": "How many first tournaments are associated with bowling?", "context": "CREATE TABLE table_2849652_2 (sport VARCHAR)"}, {"answer": "SELECT COUNT(before) FROM table_28498999_3 WHERE player = \"Vaughn Taylor\"", "question": "How many times is the player vaughn taylor listed?", "context": "CREATE TABLE table_28498999_3 (before VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(after) FROM table_28498999_3 WHERE player = \"Adam Scott\"", "question": "What is the lowest after when the player is adam scott?", "context": "CREATE TABLE table_28498999_3 (after INTEGER, player VARCHAR)"}, {"answer": "SELECT country FROM table_28498999_3 WHERE score = 72 - 63 - 71 - 68 = 274", "question": "What is the country for the score 72-63-71-68=274?", "context": "CREATE TABLE table_28498999_3 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT after FROM table_28498999_3 WHERE player = \"Kevin Streelman\"", "question": "What is the after for the player kevin streelman?", "context": "CREATE TABLE table_28498999_3 (after VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_28498999_3 WHERE after = 33", "question": "What is the to par when the after is 33?", "context": "CREATE TABLE table_28498999_3 (to_par VARCHAR, after VARCHAR)"}, {"answer": "SELECT country FROM table_28498999_4 WHERE player = \"Charley Hoffman\"", "question": "What country is charley hoffman from?", "context": "CREATE TABLE table_28498999_4 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(before) FROM table_28498999_4 WHERE score = 63 - 67 - 66 - 71 = 267", "question": "What is the before for the score of 63-67-66-71=267?", "context": "CREATE TABLE table_28498999_4 (before INTEGER, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_28498999_4 WHERE winnings__$_ = 232500", "question": "What is the to par for the winnings of 232500?", "context": "CREATE TABLE table_28498999_4 (to_par VARCHAR, winnings__$_ VARCHAR)"}, {"answer": "SELECT winnings__$_ FROM table_28498999_4 WHERE score = 66 - 64 - 67 - 71 = 268", "question": "What were the winnings for the score of 66-64-67-71=268?", "context": "CREATE TABLE table_28498999_4 (winnings__$_ VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(after) FROM table_28498999_4 WHERE player = \"Geoff Ogilvy\"", "question": "What is the after for geoff ogilvy?", "context": "CREATE TABLE table_28498999_4 (after INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(reset_points) FROM table_28498999_6 WHERE player = \"Luke Donald\"", "question": "what is the most number where the person is luke donald", "context": "CREATE TABLE table_28498999_6 (reset_points INTEGER, player VARCHAR)"}, {"answer": "SELECT country FROM table_28498999_6 WHERE player = \"Luke Donald\"", "question": "what is the place where the person is luke donald", "context": "CREATE TABLE table_28498999_6 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_28498999_6 WHERE points = 2343", "question": "what is the person there the numbers is 2343", "context": "CREATE TABLE table_28498999_6 (player VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(reset_points) FROM table_28498999_6 WHERE player = \"Charley Hoffman\"", "question": "what is the number of pieces where the person is charley hoffman", "context": "CREATE TABLE table_28498999_6 (reset_points VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_28498999_6 WHERE points = 3015", "question": "what is the number of people where the pieces is 3015", "context": "CREATE TABLE table_28498999_6 (player VARCHAR, points VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2850912_10 WHERE player = \"Ron Annear\"", "question": "Which team drafted Ron Annear? ", "context": "CREATE TABLE table_2850912_10 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2850912_10 WHERE player = \"Joakim Persson\"", "question": "Which team drafted Joakim Persson?", "context": "CREATE TABLE table_2850912_10 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2850912_10 WHERE college_junior_club_team = \"HC Slavia Praha (Czechoslovakia)\"", "question": "Which team drafted a player from HC Slavia Praha (Czechoslovakia)? ", "context": "CREATE TABLE table_2850912_10 (nhl_team VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_2850912_10 WHERE nhl_team = \"New York Rangers\"", "question": "Which player was drafted by the New York Rangers? ", "context": "CREATE TABLE table_2850912_10 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2850912_10 WHERE player = \"Michael Orn\"", "question": "Which team drafted Michael Orn?", "context": "CREATE TABLE table_2850912_10 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_2850912_10 WHERE nhl_team = \"Washington Capitals\"", "question": "What position was the player who was drafted by the Washington Capitals? ", "context": "CREATE TABLE table_2850912_10 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_2850912_5 WHERE player = \"Timo Lehkonen\"", "question": "What is Timo Lehkonen's highest pick number?", "context": "CREATE TABLE table_2850912_5 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2850912_5 WHERE position = \"Right Wing\" AND nhl_team = \"Chicago Black Hawks\"", "question": "What college/junior/club team played right wing position with NHL team Chicago Black Hawks?", "context": "CREATE TABLE table_2850912_5 (college_junior_club_team VARCHAR, position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(college_junior_club_team) FROM table_2850912_5 WHERE nationality = \"Sweden\"", "question": "How many college/junior/club teams are from Sweden?", "context": "CREATE TABLE table_2850912_5 (college_junior_club_team VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT nationality FROM table_2850912_3 WHERE player = \"Robert Dirk\"", "question": "What is Robert Dirk's nationality?", "context": "CREATE TABLE table_2850912_3 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_2850912_3 WHERE player = \"Trent Yawney\"", "question": "What country is Trent Yawney from?", "context": "CREATE TABLE table_2850912_3 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_2850912_3 WHERE player = \"Michal Pivonka\"", "question": "What is Michal Pivonka's pick number?", "context": "CREATE TABLE table_2850912_3 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2850912_3 WHERE player = \"David McLay\"", "question": "Which team did David McLay play for?", "context": "CREATE TABLE table_2850912_3 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2850912_3 WHERE player = \"Robert Dirk\"", "question": "What is Robert Dirk's team?", "context": "CREATE TABLE table_2850912_3 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_2850912_3 WHERE player = \"Graeme Bonar\"", "question": "What is Graeme Bonar's lowest pick number?", "context": "CREATE TABLE table_2850912_3 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2850912_8 WHERE player = \"Glenn Greenough\"", "question": "where did glenn greenough come from", "context": "CREATE TABLE table_2850912_8 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_2850912_8 WHERE nhl_team = \"Detroit Red Wings\" AND player = \"Urban Nordin\"", "question": "how many parts does detroit red wings person urban nordin play", "context": "CREATE TABLE table_2850912_8 (position VARCHAR, nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT gender FROM table_28523_3 WHERE religious_affiliation = \"Roman Catholic\" AND location = \"AL4\"", "question": "What is the gender of the Roman Catholic school is AL4?", "context": "CREATE TABLE table_28523_3 (gender VARCHAR, religious_affiliation VARCHAR, location VARCHAR)"}, {"answer": "SELECT school AS website FROM table_28523_3 WHERE religious_affiliation = \"Church of England\"", "question": "What is the website of the school affiliated with the Church of England?", "context": "CREATE TABLE table_28523_3 (school VARCHAR, religious_affiliation VARCHAR)"}, {"answer": "SELECT nationality FROM table_2850912_7 WHERE college_junior_club_team = \"Oshawa Generals (OHL)\"", "question": "What nationality is listed when the college/junior/club team is oshawa generals (ohl)?", "context": "CREATE TABLE table_2850912_7 (nationality VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_2850912_7 WHERE college_junior_club_team = \"New Westminster Bruins (WHL)\"", "question": "What is the name of the player when the college/junior/club team is new westminster bruins (whl)?", "context": "CREATE TABLE table_2850912_7 (player VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT COUNT(college_junior_club_team) FROM table_2850912_7 WHERE nhl_team = \"Edmonton Oilers\"", "question": "How many college/junior/club teams are ther when nhl team is edmonton oilers?", "context": "CREATE TABLE table_2850912_7 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_2850912_7 WHERE nhl_team = \"Los Angeles Kings\"", "question": "What is the postion when the nhl team is los angeles kings?", "context": "CREATE TABLE table_2850912_7 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(nhl_team) FROM table_2850912_7 WHERE college_junior_club_team = \"Newton North High School (USHS-MA)\"", "question": "How many nhl teams are listed when college/junior/club team is listed as newton north high school (ushs-ma)?", "context": "CREATE TABLE table_2850912_7 (nhl_team VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT original_air_date__us_ FROM table_28511558_2 WHERE directed_by = \"Victor Cook\" AND written_by = \"Brat Jennett\"", "question": "What date did the episode directed by Victor Cook and Written by Brat Jennett air in the U.S.?", "context": "CREATE TABLE table_28511558_2 (original_air_date__us_ VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_air_date__us_ FROM table_28511558_2 WHERE directed_by = \"Curt Geda\" AND written_by = \"Mitch Watson\"", "question": "What date did the episode written by Mitch Watson and directed by Curt Geda originally air in the U.S.?", "context": "CREATE TABLE table_28511558_2 (original_air_date__us_ VARCHAR, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_28538368_2 WHERE general_classification = \"Alberto Contador Kanstantsin Sivtsov\" AND points_classification = \"Alessandro Petacchi\" AND winner = \"Mark Cavendish\"", "question": "When Alberto Contador Kanstantsin Sivtsov was the general classification and Alessandro Petacchi was the points classification at the same time while Mark Cavendish is the winner, who was the mountain classification?", "context": "CREATE TABLE table_28538368_2 (mountains_classification VARCHAR, winner VARCHAR, general_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT young_rider_classification FROM table_28538368_2 WHERE winner = \"Alessandro Petacchi\"", "question": "Who was the young rider classification when Alessandro Petacchi won?", "context": "CREATE TABLE table_28538368_2 (young_rider_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(young_rider_classification) FROM table_28538368_2 WHERE winner = \"Diego Ulissi\"", "question": "Who was the young rider classification when Diego Ulissi won? ", "context": "CREATE TABLE table_28538368_2 (young_rider_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT young_rider_classification FROM table_28538368_2 WHERE winner = \"Paolo Tiralongo\"", "question": "What is the name of the young rider classification when Paolo Tiralongo won?", "context": "CREATE TABLE table_28538368_2 (young_rider_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT version FROM table_28540539_2 WHERE release = \"1.0.4\"", "question": "What's the version in the 1.0.4 release?", "context": "CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)"}, {"answer": "SELECT release AS date FROM table_28540539_2 WHERE release = \"1.1.10\"", "question": "What's the release date in the 1.1.10 release?", "context": "CREATE TABLE table_28540539_2 (release VARCHAR)"}, {"answer": "SELECT version FROM table_28540539_2 WHERE release = \"1.0.12\"", "question": "What's the version of the 1.0.12 release?", "context": "CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)"}, {"answer": "SELECT COUNT(version) FROM table_28540539_2 WHERE release = \"1.0.9\"", "question": "What's the number of the 1.0.9 release version?", "context": "CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)"}, {"answer": "SELECT COUNT(version) FROM table_28540539_2 WHERE release = \"1.0.12\"", "question": "What's the number of the 1.0.12 release version?", "context": "CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)"}, {"answer": "SELECT no_in_series FROM table_28561455_1 WHERE us_viewers__million_ = \"11.84\"", "question": "For how many series were there 11.84 million watchers?", "context": "CREATE TABLE table_28561455_1 (no_in_series VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_28561455_1", "question": "What's the smallest season number?", "context": "CREATE TABLE table_28561455_1 (no_in_season INTEGER)"}, {"answer": "SELECT written_by FROM table_28561455_1 WHERE directed_by = \"Peter O'Fallon\"", "question": "Who wrote the episodes that were directed by Peter O'Fallon?", "context": "CREATE TABLE table_28561455_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_28561455_1 WHERE written_by = \"Meredith Averill\"", "question": "What was the latest episode number that Meredith Averill wrote?", "context": "CREATE TABLE table_28561455_1 (no_in_series INTEGER, written_by VARCHAR)"}, {"answer": "SELECT MAX(no_in_series) FROM table_28561455_1 WHERE directed_by = \"Tom DiCillo\"", "question": "What is the latest episode number that was directed by Tom Dicillo?", "context": "CREATE TABLE table_28561455_1 (no_in_series INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(germany) FROM table_28562675_3 WHERE italy = \"Naples LL Naples\" AND england = \"London Area Youth London\"", "question": "How many years did Germany participate, when the team from Italy was Naples LL Naples and the team from England was London Area Youth London?", "context": "CREATE TABLE table_28562675_3 (germany VARCHAR, italy VARCHAR, england VARCHAR)"}, {"answer": "SELECT austria FROM table_28562675_3 WHERE netherlands = \"Brunssum/Schinnen LL Brunssum\" AND belgium = \"SHAPE and Waterloo LL Brussels\"", "question": "What was the team from Austria when the Netherlands sent Brunssum/Schinnen LL Brunssum and Belgium sent Shape and Waterloo LL Brussels?", "context": "CREATE TABLE table_28562675_3 (austria VARCHAR, netherlands VARCHAR, belgium VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_28547332_4", "question": "What is the maximum number of matches in a game?", "context": "CREATE TABLE table_28547332_4 (matches INTEGER)"}, {"answer": "SELECT MIN(highest_score) FROM table_28547332_4 WHERE average = \"9.88\"", "question": "What is the highest score in those games where the average is 9.88?", "context": "CREATE TABLE table_28547332_4 (highest_score INTEGER, average VARCHAR)"}, {"answer": "SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = \"23.2\"", "question": "What digital channel corresponds to virtual channel 23.2?", "context": "CREATE TABLE table_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR)"}, {"answer": "SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = \"5.2\"", "question": "What digital channel corresponds to virtual channel 5.2?", "context": "CREATE TABLE table_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR)"}, {"answer": "SELECT network FROM table_2857352_3 WHERE virtual_channel = \"23.1\"", "question": "What network airs on virtual channel 23.1?", "context": "CREATE TABLE table_2857352_3 (network VARCHAR, virtual_channel VARCHAR)"}, {"answer": "SELECT COUNT(network) FROM table_2857352_3 WHERE virtual_channel = \"23.4\"", "question": "How many networks run on virtual channel 23.4?", "context": "CREATE TABLE table_2857352_3 (network VARCHAR, virtual_channel VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_2857352_3 WHERE virtual_channel = \"8.2\"", "question": "What city licensed the broadcast on virtual channel 8.2?", "context": "CREATE TABLE table_2857352_3 (city_of_license VARCHAR, virtual_channel VARCHAR)"}, {"answer": "SELECT title FROM table_28582091_2 WHERE production_code = \"2J5515\"", "question": "What was the title of the episode with production code 2J5515?", "context": "CREATE TABLE table_28582091_2 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT chassis FROM table_28578594_1 WHERE driver = \"Ludwig Fischer\"", "question": "Name the chassis for ludwig fischer", "context": "CREATE TABLE table_28578594_1 (chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT entrant FROM table_28578594_1 WHERE driver = \"Bruno Sterzi\"", "question": "Name the entrant for bruno sterzi", "context": "CREATE TABLE table_28578594_1 (entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_28578594_1 WHERE driver = \"Nello Pagani\"", "question": "Name the least number for nello pagani", "context": "CREATE TABLE table_28578594_1 (no INTEGER, driver VARCHAR)"}, {"answer": "SELECT MAX(consecutive_starts) FROM table_28606933_7 WHERE player = \"Jason Gildon\"", "question": "What is the largest number of consecutive starts for jason gildon?", "context": "CREATE TABLE table_28606933_7 (consecutive_starts INTEGER, player VARCHAR)"}, {"answer": "SELECT teams FROM table_28606933_7 WHERE consecutive_starts = 120", "question": "What team(s) had 120 consecutive starts?", "context": "CREATE TABLE table_28606933_7 (teams VARCHAR, consecutive_starts VARCHAR)"}, {"answer": "SELECT period FROM table_28606933_7 WHERE position = \"Left inside linebacker\"", "question": "What period(s) featured a left inside linebacker?", "context": "CREATE TABLE table_28606933_7 (period VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_28606933_7 WHERE period = \"9/21/1975 \u2013 12/16/1984\"", "question": "How many consecutive starts for the linebacker who played from 9/21/1975 \u2013 12/16/1984?", "context": "CREATE TABLE table_28606933_7 (total INTEGER, period VARCHAR)"}, {"answer": "SELECT title FROM table_28611413_2 WHERE written_by = \"Frank Military\"", "question": "What is the title of the episode written by Frank Military?", "context": "CREATE TABLE table_28611413_2 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_28611413_2 WHERE viewers__millions_ = \"16.15\"", "question": "How many seasons had 16.15 million viewers?", "context": "CREATE TABLE table_28611413_2 (no_in_series VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28611413_2 WHERE directed_by = \"John P. Kousakis\"", "question": "What is air date of the episode directed by John P. Kousakis?", "context": "CREATE TABLE table_28611413_2 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT player FROM table_28628309_6 WHERE totals = \"105-161\"", "question": "Who was the player when totals were 105-161?", "context": "CREATE TABLE table_28628309_6 (player VARCHAR, totals VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_28628309_6 WHERE totals = \"105-161\"", "question": "How many items appear in the average column when the totals were 105-161?", "context": "CREATE TABLE table_28628309_6 (average VARCHAR, totals VARCHAR)"}, {"answer": "SELECT totals FROM table_28628309_6 WHERE average = \"6.25\"", "question": "What were the totals when the average is 6.25?", "context": "CREATE TABLE table_28628309_6 (totals VARCHAR, average VARCHAR)"}, {"answer": "SELECT team FROM table_28628309_6 WHERE category = \"Field goal percentage\"", "question": "Who was the team when the category is field goal percentage?", "context": "CREATE TABLE table_28628309_6 (team VARCHAR, category VARCHAR)"}, {"answer": "SELECT election FROM table_286271_1 WHERE _percentage_of_popular_vote = \"4.48%\"", "question": "Name the election for the percent of popular vote being 4.48%", "context": "CREATE TABLE table_286271_1 (election VARCHAR, _percentage_of_popular_vote VARCHAR)"}, {"answer": "SELECT MAX(3 AS rd_runner_up) FROM table_28634206_1 WHERE country = \"Taiwan\"", "question": "How many times was taiwan 3rd runner-up?", "context": "CREATE TABLE table_28634206_1 (country VARCHAR)"}, {"answer": "SELECT COUNT(miss_universe) FROM table_28634206_1 WHERE country = \"South Africa\"", "question": "How many miss universes did south africa have?", "context": "CREATE TABLE table_28634206_1 (miss_universe VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_28634206_1 WHERE country = \"Russia\"", "question": "How many placements in total does russia have?", "context": "CREATE TABLE table_28634206_1 (total INTEGER, country VARCHAR)"}, {"answer": "SELECT country FROM table_28634206_1 WHERE miss_universe = \"6\"", "question": "Which country has had 6 miss universe's?", "context": "CREATE TABLE table_28634206_1 (country VARCHAR, miss_universe VARCHAR)"}, {"answer": "SELECT country FROM table_28634206_1 WHERE miss_universe = \"8\"", "question": "Which country has had 8 miss universes?", "context": "CREATE TABLE table_28634206_1 (country VARCHAR, miss_universe VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_2865020_5 WHERE average = \"1.412\"", "question": "What is the minimum number of points for teams averaging 1.412?", "context": "CREATE TABLE table_2865020_5 (points INTEGER, average VARCHAR)"}, {"answer": "SELECT 2003 AS _04 FROM table_2865020_5 WHERE average = \"1.377\"", "question": "What 2003-2004 values are associated with an average of 1.377?", "context": "CREATE TABLE table_2865020_5 (average VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_2866503_1 WHERE written_by = \"Matthew Okumura\"", "question": "How many millions of viewers are listed where the writer is Matthew Okumura?", "context": "CREATE TABLE table_2866503_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT us_air_date FROM table_2866503_1 WHERE us_viewers__million_ = \"7.5\"", "question": "What is the U.S. air date when the U.S. viewers are 7.5 million?", "context": "CREATE TABLE table_2866503_1 (us_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_2866456_1 WHERE _number = 6", "question": "How many u.s. viewers  (million) have 6 as the #?", "context": "CREATE TABLE table_2866456_1 (us_viewers__million_ VARCHAR, _number VARCHAR)"}, {"answer": "SELECT directed_by FROM table_2866456_1 WHERE production_code = \"2T6404\"", "question": "Who is the directed by when 2t6404 is the production code?", "context": "CREATE TABLE table_2866456_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT no FROM table_2866509_1 WHERE us_viewers__million_ = \"5.60\"", "question": "what is the number of the episode in the season that had 5.60 millions of north american spectors?", "context": "CREATE TABLE table_2866509_1 (no VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_2866509_1 WHERE production_code = 176206", "question": "who are the writers of the episode whose production code is 176206? ", "context": "CREATE TABLE table_2866509_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT stadium FROM table_28668784_1 WHERE home_team = \"FK Rudar\"", "question": "What stadium does FK Rudar play in?", "context": "CREATE TABLE table_28668784_1 (stadium VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT city___town FROM table_28668784_1 WHERE stadium = \"Stadion Zlatica\"", "question": "What town holds Stadion Zlatica?", "context": "CREATE TABLE table_28668784_1 (city___town VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT stadium FROM table_28668784_1 WHERE home_team = \"FK Jedinstvo\"", "question": "What stadium does FK Jedinstvo play in?", "context": "CREATE TABLE table_28668784_1 (stadium VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(tor_fl\u00f8ysvik) FROM table_28677723_10 WHERE karianne_gulliksen = 6", "question": "What is listed in tor floysvik when karianne gulliksen is 6?", "context": "CREATE TABLE table_28677723_10 (tor_fl\u00f8ysvik INTEGER, karianne_gulliksen VARCHAR)"}, {"answer": "SELECT COUNT(music) FROM table_28677723_10 WHERE tor_fl\u00f8ysvik = 3", "question": "How many music entries are there when tor floysvik is 3?", "context": "CREATE TABLE table_28677723_10 (music VARCHAR, tor_fl\u00f8ysvik VARCHAR)"}, {"answer": "SELECT MIN(christer_tornell) FROM table_28677723_10 WHERE karianne_gulliksen = 7", "question": "What is listed under chister tornell when karianne gulliksen is 7?", "context": "CREATE TABLE table_28677723_10 (christer_tornell INTEGER, karianne_gulliksen VARCHAR)"}, {"answer": "SELECT MIN(tor_fl\u00f8ysvik) FROM table_28677723_10 WHERE couple = \"Maria & Asmund\"", "question": "What is listed under tor floysvik when couple is maria & asmund?", "context": "CREATE TABLE table_28677723_10 (tor_fl\u00f8ysvik INTEGER, couple VARCHAR)"}, {"answer": "SELECT COUNT(date_of_commissioning) FROM table_28672269_1 WHERE unit_number = 2", "question": "What are Unit 2's dates of commissioning?", "context": "CREATE TABLE table_28672269_1 (date_of_commissioning VARCHAR, unit_number VARCHAR)"}, {"answer": "SELECT boiler_provider FROM table_28672269_1 WHERE tg_set_provider = \"BHEL, India\"", "question": "What is the boiler provider for Bhel, India's TG Set provider?", "context": "CREATE TABLE table_28672269_1 (boiler_provider VARCHAR, tg_set_provider VARCHAR)"}, {"answer": "SELECT MIN(trine_dehli_cleve) FROM table_28677723_14 WHERE style = \"English Waltz\"", "question": "Name the trine dehli cleve for english waltz", "context": "CREATE TABLE table_28677723_14 (trine_dehli_cleve INTEGER, style VARCHAR)"}, {"answer": "SELECT style FROM table_28677723_14 WHERE total = 39", "question": "Name the style for 39 ", "context": "CREATE TABLE table_28677723_14 (style VARCHAR, total VARCHAR)"}, {"answer": "SELECT style FROM table_28677723_14 WHERE total = 27", "question": "Name the style for 27", "context": "CREATE TABLE table_28677723_14 (style VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(tor_fl\u00f8ysvik) FROM table_28677723_14 WHERE karianne_gulliksen = 8", "question": "Name the most for fl\u00f8ysvik for 8", "context": "CREATE TABLE table_28677723_14 (tor_fl\u00f8ysvik INTEGER, karianne_gulliksen VARCHAR)"}, {"answer": "SELECT COUNT(tor_fl\u00f8ysvik) FROM table_28677723_11 WHERE christer_tornell = 7", "question": "how many for floysvik and christer tornell is 7?", "context": "CREATE TABLE table_28677723_11 (tor_fl\u00f8ysvik VARCHAR, christer_tornell VARCHAR)"}, {"answer": "SELECT COUNT(christer_tornell) FROM table_28677723_11 WHERE total = 30", "question": "how many for christer tornell where the total is 30?", "context": "CREATE TABLE table_28677723_11 (christer_tornell VARCHAR, total VARCHAR)"}, {"answer": "SELECT couple FROM table_28677723_16 WHERE total = 38", "question": "What is the couple that received a total score of 38?", "context": "CREATE TABLE table_28677723_16 (couple VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_28677723_16 WHERE couple = \"Aylar & Egor\" AND karianne_gulliksen = 8", "question": "What is the greatest total score received by aylar & egor when karianne Gulliksen gave an 8?", "context": "CREATE TABLE table_28677723_16 (total INTEGER, couple VARCHAR, karianne_gulliksen VARCHAR)"}, {"answer": "SELECT MAX(trine_dehli_cleve) FROM table_28677723_5", "question": "What is the largest number for trine dehli cleve?", "context": "CREATE TABLE table_28677723_5 (trine_dehli_cleve INTEGER)"}, {"answer": "SELECT MAX(karianne_gulliksen) FROM table_28677723_5", "question": "What is the largest number for karianne gulliksen?", "context": "CREATE TABLE table_28677723_5 (karianne_gulliksen INTEGER)"}, {"answer": "SELECT COUNT(style) FROM table_28677723_9 WHERE total = 33", "question": "How many styles had a total score of exactly 33?", "context": "CREATE TABLE table_28677723_9 (style VARCHAR, total VARCHAR)"}, {"answer": "SELECT style FROM table_28677723_9 WHERE tor_fl\u00f8ysvik = 8", "question": "Which style led to a score given by Tor Floysvik of 8?", "context": "CREATE TABLE table_28677723_9 (style VARCHAR, tor_fl\u00f8ysvik VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_28677723_9 WHERE style = \"Pasodoble\"", "question": "What is the smallest total score for the Pasodoble style?", "context": "CREATE TABLE table_28677723_9 (total INTEGER, style VARCHAR)"}, {"answer": "SELECT title FROM table_28680377_2 WHERE us_viewers__million_ = \"0.88\"", "question": "What is the title of the episode watched by 0.88 million U.S. viewers?", "context": "CREATE TABLE table_28680377_2 (title VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28680377_2 WHERE us_viewers__million_ = \"0.88\"", "question": "What is the original air date of the episode that was watched by 0.88 million U.S. viewers? ", "context": "CREATE TABLE table_28680377_2 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_28697228_4 WHERE passing_yards = 208", "question": "How may players have a passing yard score of 208?", "context": "CREATE TABLE table_28697228_4 (player VARCHAR, passing_yards VARCHAR)"}, {"answer": "SELECT player FROM table_28697228_4 WHERE total_offense = 454", "question": "What is the name of the player with total offense of 454?", "context": "CREATE TABLE table_28697228_4 (player VARCHAR, total_offense VARCHAR)"}, {"answer": "SELECT MAX(rushing_yards) FROM table_28697228_4 WHERE opponent = \"Indiana\" AND player = \"Denard Robinson\"", "question": "What is the number of rushing yards when the opponentis Indiana and the player is Denard Robinson?", "context": "CREATE TABLE table_28697228_4 (rushing_yards INTEGER, opponent VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(total_offense) FROM table_28697228_4 WHERE opponent = \"Penn State\"", "question": "What is the number of total offense when the opponentis Penn State?", "context": "CREATE TABLE table_28697228_4 (total_offense INTEGER, opponent VARCHAR)"}, {"answer": "SELECT rushing_yards FROM table_28697228_4 WHERE passing_yards = 244", "question": "How many rushing yards are listed when the passing yards are 244?", "context": "CREATE TABLE table_28697228_4 (rushing_yards VARCHAR, passing_yards VARCHAR)"}, {"answer": "SELECT volume__hm\u00b3_ FROM table_28702208_1 WHERE reservoir = \"Tanes\"", "question": "What is the volume when the resrvoir is Tanes?", "context": "CREATE TABLE table_28702208_1 (volume__hm\u00b3_ VARCHAR, reservoir VARCHAR)"}, {"answer": "SELECT bi_tone FROM table_2869843_1 WHERE olive_drab = \"No\" AND caliber = \"9\u00d719mm Parabellum\" AND model = \"XDM 5.25 Competition\"", "question": "are there bi-tone is there's no olive drab and the caliber is 9\u00d719mm parabellum and model is xdm 5.25 competition", "context": "CREATE TABLE table_2869843_1 (bi_tone VARCHAR, model VARCHAR, olive_drab VARCHAR, caliber VARCHAR)"}, {"answer": "SELECT family FROM table_287159_1 WHERE genitive = \"Lyncis /\u02c8l\u026ans\u0268s/\"", "question": "What is the family of the constellation that has lyncis /\u02c8l\u026ans\u0268s/ as genitive?", "context": "CREATE TABLE table_287159_1 (family VARCHAR, genitive VARCHAR)"}, {"answer": "SELECT origin FROM table_287159_1 WHERE other_abbreviation = \"Tele\"", "question": "What is the origin of the constellation that can be abbreviated to tele?", "context": "CREATE TABLE table_287159_1 (origin VARCHAR, other_abbreviation VARCHAR)"}, {"answer": "SELECT other_abbreviation FROM table_287159_1 WHERE brightest_star = \"\u03b2 Trianguli\"", "question": "What is the other abbreviation of the constellation that has \u03b2 trianguli as its brightest star?", "context": "CREATE TABLE table_287159_1 (other_abbreviation VARCHAR, brightest_star VARCHAR)"}, {"answer": "SELECT brightest_star FROM table_287159_1 WHERE meaning = \"archer\"", "question": "What is the brightest star of the constellation that means archer?", "context": "CREATE TABLE table_287159_1 (brightest_star VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT other_abbreviation FROM table_287159_1 WHERE genitive = \"Hydrae /\u02c8ha\u026adri\u02d0/\"", "question": "What is the other abbreviation of the constellation that has hydrae /\u02c8ha\u026adri\u02d0/ as genitive?", "context": "CREATE TABLE table_287159_1 (other_abbreviation VARCHAR, genitive VARCHAR)"}, {"answer": "SELECT meaning FROM table_287159_1 WHERE genitive = \"Puppis /\u02c8p\u028cp\u0268s/\"", "question": "What is the meaning of the constellation that has puppis /\u02c8p\u028cp\u0268s/ as genitive?", "context": "CREATE TABLE table_287159_1 (meaning VARCHAR, genitive VARCHAR)"}, {"answer": "SELECT COUNT(track_no) FROM table_28715942_3 WHERE track = \"Song 2\"", "question": "How many track numbers were called song 2?", "context": "CREATE TABLE table_28715942_3 (track_no VARCHAR, track VARCHAR)"}, {"answer": "SELECT vocal_percussionist FROM table_28715942_3 WHERE original_artist = \"Stevie Wonder\"", "question": "Who was the vocal percussionist when stevie wonder was the original artist?", "context": "CREATE TABLE table_28715942_3 (vocal_percussionist VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT track FROM table_28715942_3 WHERE soloist_s_ = \"Terry Tamm\"", "question": "What track name had Terry Tamm as the soloist?", "context": "CREATE TABLE table_28715942_3 (track VARCHAR, soloist_s_ VARCHAR)"}, {"answer": "SELECT date FROM table_28719193_19 WHERE matchups_results = \"Army 16, SMU 14\"", "question": "What was the date of the game that had a result of Army 16, SMU 14?", "context": "CREATE TABLE table_28719193_19 (date VARCHAR, matchups_results VARCHAR)"}, {"answer": "SELECT city FROM table_28719193_19 WHERE stadium = \"Gerald J. Ford stadium\"", "question": "What was the city whose stadium is Gerald J. Ford Stadium?", "context": "CREATE TABLE table_28719193_19 (city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT category_wise FROM table_28723146_2 WHERE multi_lane = 677", "question": "What is every category wise when the multi lane is 677?", "context": "CREATE TABLE table_28723146_2 (category_wise VARCHAR, multi_lane VARCHAR)"}, {"answer": "SELECT MAX(multi_lane) FROM table_28723146_2 WHERE category_wise = \"Major district roads\"", "question": "What is the highest value for multi lane if category wise is major district roads?", "context": "CREATE TABLE table_28723146_2 (multi_lane INTEGER, category_wise VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_28723146_2", "question": "What is the least total?", "context": "CREATE TABLE table_28723146_2 (total INTEGER)"}, {"answer": "SELECT tebe_career FROM table_28730459_3 WHERE league_matches = 163", "question": "What are the years of TeBe career for the players whose league matches are exactly 163?", "context": "CREATE TABLE table_28730459_3 (tebe_career VARCHAR, league_matches VARCHAR)"}, {"answer": "SELECT league_goals FROM table_28730459_3 WHERE league_matches = 10 AND tebe_career = \"2003\"", "question": "What is the number of league goals for players with 10 league matches and a TeBe career of 2003?", "context": "CREATE TABLE table_28730459_3 (league_goals VARCHAR, league_matches VARCHAR, tebe_career VARCHAR)"}, {"answer": "SELECT eliminated FROM table_28742659_2 WHERE finish = \"15th voted Out 9th Jury Member Day 46\"", "question": "What is listed in eliminated when the finish is 15th voted out 9th jury Member Day 46?", "context": "CREATE TABLE table_28742659_2 (eliminated VARCHAR, finish VARCHAR)"}, {"answer": "SELECT reward FROM table_28742659_2 WHERE finish = \"13th voted Out 6th Jury Member Day 43\"", "question": "What is listed in reward when the finish is listed at 13th voted out 6th jury Member Day 43?", "context": "CREATE TABLE table_28742659_2 (reward VARCHAR, finish VARCHAR)"}, {"answer": "SELECT immunity FROM table_28742659_2 WHERE finish = \"3rd voted Out Day 9\"", "question": "What is the name of immunity when the finish is 3rd voted out day 9?", "context": "CREATE TABLE table_28742659_2 (immunity VARCHAR, finish VARCHAR)"}, {"answer": "SELECT vote FROM table_28742659_2 WHERE immunity = \"David\" AND reward = \"None\"", "question": "What is the vote number when immunity listed as David and reward is listed as none?", "context": "CREATE TABLE table_28742659_2 (vote VARCHAR, immunity VARCHAR, reward VARCHAR)"}, {"answer": "SELECT united_fc FROM table_28759261_5 WHERE pifa_colaba_fc_u_17 = \"Maratha United\"", "question": "what is the united fc wehre pifa colaba is maratha united?", "context": "CREATE TABLE table_28759261_5 (united_fc VARCHAR, pifa_colaba_fc_u_17 VARCHAR)"}, {"answer": "SELECT united_fc FROM table_28759261_5 WHERE pifa_colaba_fc_u_17 = \"Sporting Options\"", "question": "what is the united fc where pifa colaba is sporting options?", "context": "CREATE TABLE table_28759261_5 (united_fc VARCHAR, pifa_colaba_fc_u_17 VARCHAR)"}, {"answer": "SELECT dadar_xi_\u2018b\u2019 FROM table_28759261_5 WHERE pifa_colaba_fc_u_17 = \"Sporting Options\"", "question": "what is the dadar xi b where pifa colaba is sporting options?", "context": "CREATE TABLE table_28759261_5 (dadar_xi_\u2018b\u2019 VARCHAR, pifa_colaba_fc_u_17 VARCHAR)"}, {"answer": "SELECT athens_xi FROM table_28759261_5 WHERE dadar_xi_\u2018b\u2019 = \"Strikers FC\"", "question": "what is the athens xi where dada xi b is strikers fc?", "context": "CREATE TABLE table_28759261_5 (athens_xi VARCHAR, dadar_xi_\u2018b\u2019 VARCHAR)"}, {"answer": "SELECT dadar_xi_\u2018b\u2019 FROM table_28759261_5 WHERE good_shepherd = \"Sea Liner FC\"", "question": "what is the dadar xi b where the good shepherd is sea liner fc?", "context": "CREATE TABLE table_28759261_5 (dadar_xi_\u2018b\u2019 VARCHAR, good_shepherd VARCHAR)"}, {"answer": "SELECT record_at_school FROM table_28744929_2 WHERE head_coach = \"Tom O'Brien\"", "question": "What is the Record at School of Tom O'Brien's team?", "context": "CREATE TABLE table_28744929_2 (record_at_school VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT COUNT(years_at_school) FROM table_28744929_2 WHERE team = \"Maryland\"", "question": "How many values were used to express the years at school of the Maryland team?", "context": "CREATE TABLE table_28744929_2 (years_at_school VARCHAR, team VARCHAR)"}, {"answer": "SELECT acc_record FROM table_28744929_2 WHERE team = \"Miami\"", "question": "What is the record in the atlantic coast conference for the Miami team?", "context": "CREATE TABLE table_28744929_2 (acc_record VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(overall_record) FROM table_28744929_2 WHERE head_coach = \"Frank Beamer\"", "question": "How many values reflect the overall record of the team coached by Frank Beamer?", "context": "CREATE TABLE table_28744929_2 (overall_record VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT school_type FROM table_28744929_1 WHERE institution = \"Clemson\"", "question": "what type over school is Clemson?", "context": "CREATE TABLE table_28744929_1 (school_type VARCHAR, institution VARCHAR)"}, {"answer": "SELECT MAX(joined_acc) FROM table_28744929_1 WHERE institution = \"North Carolina\"", "question": "what year did north carolina institution join the acc?", "context": "CREATE TABLE table_28744929_1 (joined_acc INTEGER, institution VARCHAR)"}, {"answer": "SELECT acc_football_titles FROM table_28744929_1 WHERE nickname = \"Tar Heels\"", "question": "how many acc football titles have been won by the institution nicknamed tar heels?", "context": "CREATE TABLE table_28744929_1 (acc_football_titles VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT school_type FROM table_28744929_1 WHERE nickname = \"Seminoles\"", "question": "what type of school is the institution nicknamed seminoles?", "context": "CREATE TABLE table_28744929_1 (school_type VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT joined_acc FROM table_28744929_1 WHERE location = \"Chapel Hill, North Carolina\"", "question": "when did the institution at chapel hill, North carolina join acc?", "context": "CREATE TABLE table_28744929_1 (joined_acc VARCHAR, location VARCHAR)"}, {"answer": "SELECT record FROM table_28768469_5 WHERE game = 2", "question": "What were the supersonics record at game 2?", "context": "CREATE TABLE table_28768469_5 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_28768469_5", "question": "What is the most amount of games played this season?", "context": "CREATE TABLE table_28768469_5 (game INTEGER)"}, {"answer": "SELECT high_assists FROM table_28768469_5 WHERE team = \"Utah\"", "question": "Who had highest assists in game against Utah?", "context": "CREATE TABLE table_28768469_5 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT regional_page__number FROM table_287659_2 WHERE region_name = \"North Central\"", "question": "In the North Central region, what are the regional page #'s?", "context": "CREATE TABLE table_287659_2 (regional_page__number VARCHAR, region_name VARCHAR)"}, {"answer": "SELECT state_name FROM table_287659_2 WHERE regional_page__number = \"1, 5-7, 9-11, 13-15\"", "question": "What states have a regional page # of 1, 5-7, 9-11, 13-15?", "context": "CREATE TABLE table_287659_2 (state_name VARCHAR, regional_page__number VARCHAR)"}, {"answer": "SELECT region_name FROM table_287659_2 WHERE regional_page__number = \"1-3, 5-7, 9-11, 13-15\"", "question": "Which region has a regional page # of 1-3, 5-7, 9-11, 13-15?", "context": "CREATE TABLE table_287659_2 (region_name VARCHAR, regional_page__number VARCHAR)"}, {"answer": "SELECT regional_page__number FROM table_287659_2 WHERE state_name = \"CA/NV\"", "question": "In Ca/Nv, what are all of the regional page #s?", "context": "CREATE TABLE table_287659_2 (regional_page__number VARCHAR, state_name VARCHAR)"}, {"answer": "SELECT MAX(second_place) FROM table_2876467_3 WHERE region_represented = \"Tajikistan\"", "question": "What is the maximum number of 2nd places for Tajikistan?", "context": "CREATE TABLE table_2876467_3 (second_place INTEGER, region_represented VARCHAR)"}, {"answer": "SELECT MAX(first_place) FROM table_2876467_3 WHERE third_place = 1", "question": "What is the maximum number of 1st places for the country with exactly 1 third place?", "context": "CREATE TABLE table_2876467_3 (first_place INTEGER, third_place VARCHAR)"}, {"answer": "SELECT COUNT(total_top_3_placements) FROM table_2876467_3 WHERE region_represented = \"Taiwan\"", "question": "How many values of total top 3 placements does Taiwan have?", "context": "CREATE TABLE table_2876467_3 (total_top_3_placements VARCHAR, region_represented VARCHAR)"}, {"answer": "SELECT country FROM table_2879165_1 WHERE ioc_code = \"MAS\"", "question": "What is the name of the country when the ioc code is mas?", "context": "CREATE TABLE table_2879165_1 (country VARCHAR, ioc_code VARCHAR)"}, {"answer": "SELECT ioc_code FROM table_2879165_1 WHERE country = \"Singapore\"", "question": "What is the ioc code when the country is listed as Singapore?", "context": "CREATE TABLE table_2879165_1 (ioc_code VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(network_station) FROM table_2879165_1 WHERE country = \"Brunei\"", "question": "What is listed in Network station when the country is Brunei?", "context": "CREATE TABLE table_2879165_1 (network_station VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(television_station) FROM table_2879165_1 WHERE radio_station = \"Lao National Radio\"", "question": "How many television station listing have a radio station as lao national radio?", "context": "CREATE TABLE table_2879165_1 (television_station VARCHAR, radio_station VARCHAR)"}, {"answer": "SELECT COUNT(television_station) FROM table_2879165_1 WHERE ioc_code = \"MAS\"", "question": "How many television station listings have a ioc code as mas?", "context": "CREATE TABLE table_2879165_1 (television_station VARCHAR, ioc_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_28768925_1 WHERE directed_by = \"Wendey Stanzler\" AND no_in_series = 27", "question": "Who wrote episode 27 in the series that was directed by Wendey Stanzler?", "context": "CREATE TABLE table_28768925_1 (written_by VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT title FROM table_28768925_1 WHERE no_in_series = 43", "question": "What is the name of episode 43 in the series?", "context": "CREATE TABLE table_28768925_1 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28768925_1 WHERE us_viewers__million_ = \"8.84\"", "question": "What date did the episode that had 8.84 million u.s. viewers originally air?", "context": "CREATE TABLE table_28768925_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_28768469_7 WHERE high_assists = \"Earl Watson (11)\" AND location_attendance = \"KeyArena 16,841\"", "question": "How many games have high assists as earl watson (11) and location attendance as Keyarena 16,841?", "context": "CREATE TABLE table_28768469_7 (game VARCHAR, high_assists VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT record FROM table_28768469_7 WHERE high_assists = \"Earl Watson (6)\"", "question": "What is the record listed when the high assists is earl watson (6)?", "context": "CREATE TABLE table_28768469_7 (record VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_28768469_7 WHERE date = \"January 9\"", "question": "Where is the location  attendance when the date is January 9?", "context": "CREATE TABLE table_28768469_7 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_28768469_7 WHERE high_rebounds = \"Nick Collison (10)\"", "question": "What is listed in hight points when the high rebounds is listed as Nick Collison (10)?", "context": "CREATE TABLE table_28768469_7 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_28768469_7 WHERE location_attendance = \"KeyArena 16,841\"", "question": "What is listed in game when the location attendance is listed as Keyarena 16,841?", "context": "CREATE TABLE table_28768469_7 (game INTEGER, location_attendance VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28787871_3 WHERE production_code = 214", "question": "What was the airdate of the episode of production code 214?", "context": "CREATE TABLE table_28787871_3 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_28787871_3 WHERE original_air_date = \"June 3, 2012\"", "question": "How many numbers in the season have an air date of June 3, 2012?", "context": "CREATE TABLE table_28787871_3 (no_in_season VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_28787871_3 WHERE us_viewers__millions_ = \"2.3\"", "question": "What is the highest production code of the episodes having a US viewership of exactly 2.3?", "context": "CREATE TABLE table_28787871_3 (production_code INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT economy FROM table_28797906_3 WHERE wickets = 29", "question": "When the number of wickets is 29, what was the economy?", "context": "CREATE TABLE table_28797906_3 (economy VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT wickets FROM table_28797906_3 WHERE economy = \"3.64\"", "question": "How many wickets was there when the economy was 3.64?", "context": "CREATE TABLE table_28797906_3 (wickets VARCHAR, economy VARCHAR)"}, {"answer": "SELECT average FROM table_28797906_3 WHERE wickets = 27", "question": "What is the average of all the wickets that were 27?", "context": "CREATE TABLE table_28797906_3 (average VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT branding FROM table_28794440_1 WHERE callsign = \"DXGH\"", "question": "Which branding has the callsign of DXGH?", "context": "CREATE TABLE table_28794440_1 (branding VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT station_type FROM table_28794440_1 WHERE frequency = \"972kHz\"", "question": "What type of station is within the 972khz frequency?", "context": "CREATE TABLE table_28794440_1 (station_type VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT station_type FROM table_28794440_1 WHERE location = \"Cebu\"", "question": "What types of stations are located in Cebu?", "context": "CREATE TABLE table_28794440_1 (station_type VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_28794440_1 WHERE frequency = \"1485kHz\"", "question": "Where are all the 1485khz frequency located?", "context": "CREATE TABLE table_28794440_1 (location VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT COUNT(location) FROM table_28794440_1 WHERE callsign = \"DXGH\"", "question": "How many locations have the callsign DXGH?", "context": "CREATE TABLE table_28794440_1 (location VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT location FROM table_28794440_1 WHERE callsign = \"DWRH\"", "question": "Where are the broadcasting companys with the callsign DWRH located?", "context": "CREATE TABLE table_28794440_1 (location VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT audition_city FROM table_28793672_1 WHERE venue = \"UPI Convention Center\"", "question": "Where is the audition city when the venue is upi convention center?", "context": "CREATE TABLE table_28793672_1 (audition_city VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(golden_tickets) FROM table_28793672_1 WHERE callback_venue = \"RCTI Studio, Jakarta\"", "question": "How many times is there a golden tickets entry when the callback venue is rcti studio, jakarta?", "context": "CREATE TABLE table_28793672_1 (golden_tickets VARCHAR, callback_venue VARCHAR)"}, {"answer": "SELECT year FROM table_28819393_1 WHERE average__percentage_of_vote_per_candidate = \"1.35\"", "question": "In what year was 1.35% the average vote per candidate?", "context": "CREATE TABLE table_28819393_1 (year VARCHAR, average__percentage_of_vote_per_candidate VARCHAR)"}, {"answer": "SELECT MIN(average_votes_per_candidate) FROM table_28819393_1 WHERE average__percentage_of_vote_per_candidate = \"3.29\"", "question": "When 3.29% was the average per candidate, what was the number of average votes per candidate?", "context": "CREATE TABLE table_28819393_1 (average_votes_per_candidate INTEGER, average__percentage_of_vote_per_candidate VARCHAR)"}, {"answer": "SELECT _percentage_of_total_vote FROM table_28819393_1 WHERE year = \"1997\"", "question": "What was the percentage of total votes in 1997?", "context": "CREATE TABLE table_28819393_1 (_percentage_of_total_vote VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(launched) FROM table_28803803_1 WHERE original_channel = \"CBS (2002)\"", "question": "How many shows were launched on CBS (2002)?", "context": "CREATE TABLE table_28803803_1 (launched VARCHAR, original_channel VARCHAR)"}, {"answer": "SELECT COUNT(irst) FROM table_28803803_1 WHERE original_channel = \"Canale 5 (2006)\"", "question": "How many IRST figures for the show that premiered on Canale 5 (2006)?", "context": "CREATE TABLE table_28803803_1 (irst VARCHAR, original_channel VARCHAR)"}, {"answer": "SELECT date FROM table_28803803_1 WHERE name = \"Falling Angel\"", "question": "What are the dates that Falling Angel aired?", "context": "CREATE TABLE table_28803803_1 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(economy) FROM table_28846752_13 WHERE bbi = \"2/19\"", "question": "How many economy stats for the player with 2/19 BBI?", "context": "CREATE TABLE table_28846752_13 (economy VARCHAR, bbi VARCHAR)"}, {"answer": "SELECT player FROM table_28846752_13 WHERE average = \"35.42\"", "question": "Who is the player with an average of 35.42?", "context": "CREATE TABLE table_28846752_13 (player VARCHAR, average VARCHAR)"}, {"answer": "SELECT economy FROM table_28846752_13 WHERE bbi = \"3/33\"", "question": "What is the economy of the player with BBI of 3/33?", "context": "CREATE TABLE table_28846752_13 (economy VARCHAR, bbi VARCHAR)"}, {"answer": "SELECT average FROM table_28846752_4 WHERE highest_score = \"151\"", "question": "What is the average when the highest score is 151?", "context": "CREATE TABLE table_28846752_4 (average VARCHAR, highest_score VARCHAR)"}, {"answer": "SELECT player FROM table_28846752_4 WHERE highest_score = \"84\"", "question": "Who is the player when the highest score is 84?", "context": "CREATE TABLE table_28846752_4 (player VARCHAR, highest_score VARCHAR)"}, {"answer": "SELECT MIN(runs) FROM table_28846752_4 WHERE highest_score = \"228*\"", "question": "How many runs are there when the highest score is 228*?", "context": "CREATE TABLE table_28846752_4 (runs INTEGER, highest_score VARCHAR)"}, {"answer": "SELECT MAX(innings) FROM table_28846752_4 WHERE highest_score = \"72\"", "question": "What is the innings when the highest score is 72?", "context": "CREATE TABLE table_28846752_4 (innings INTEGER, highest_score VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_28846752_8", "question": "What is the highest number listed for matches?", "context": "CREATE TABLE table_28846752_8 (matches INTEGER)"}, {"answer": "SELECT 50 AS s FROM table_28846752_8 WHERE average = \"39.60\"", "question": "How many entries is under 50s column when the average is 39.60?", "context": "CREATE TABLE table_28846752_8 (average VARCHAR)"}, {"answer": "SELECT player FROM table_28846752_8 WHERE average = \"69.66\"", "question": "Who is the player when the average is 69.66?", "context": "CREATE TABLE table_28846752_8 (player VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(5 AS wi) FROM table_28846752_5", "question": "what is the minimumfor 5wi?", "context": "CREATE TABLE table_28846752_5 (Id VARCHAR)"}, {"answer": "SELECT COUNT(10 AS wi) FROM table_28846752_5 WHERE bbi = \"6/101\"", "question": "how many 10wi and bbi is 6/101", "context": "CREATE TABLE table_28846752_5 (bbi VARCHAR)"}, {"answer": "SELECT innings FROM table_28846752_5 WHERE bbi = \"4/26\"", "question": "how many innings had bbi 4/26?", "context": "CREATE TABLE table_28846752_5 (innings VARCHAR, bbi VARCHAR)"}, {"answer": "SELECT COUNT(5 AS wi) FROM table_28846752_5 WHERE average = \"33.13\"", "question": "how many 5wi with an average of 33.13?", "context": "CREATE TABLE table_28846752_5 (average VARCHAR)"}, {"answer": "SELECT innings FROM table_28846752_5 WHERE average = \"19.60\"", "question": "how many innings have an average of 19.60?", "context": "CREATE TABLE table_28846752_5 (innings VARCHAR, average VARCHAR)"}, {"answer": "SELECT average FROM table_28846752_9 WHERE bbi = \"3/27\"", "question": "What is the average when the BBI is 3/27?", "context": "CREATE TABLE table_28846752_9 (average VARCHAR, bbi VARCHAR)"}, {"answer": "SELECT player FROM table_28846752_9 WHERE economy = \"6.14\"", "question": "Who is the player when the economy is 6.14?", "context": "CREATE TABLE table_28846752_9 (player VARCHAR, economy VARCHAR)"}, {"answer": "SELECT player FROM table_28846752_9 WHERE economy = \"5.29\"", "question": "Who is the player when the economy is 5.29?", "context": "CREATE TABLE table_28846752_9 (player VARCHAR, economy VARCHAR)"}, {"answer": "SELECT MIN(matches) FROM table_28846752_9 WHERE bbi = \"3/27\"", "question": "What the number of matches when the BBI is 3/27?", "context": "CREATE TABLE table_28846752_9 (matches INTEGER, bbi VARCHAR)"}, {"answer": "SELECT bbi FROM table_28846752_9 WHERE economy = \"5.68\"", "question": "What is the BBI whent the economy is 5.68?", "context": "CREATE TABLE table_28846752_9 (bbi VARCHAR, economy VARCHAR)"}, {"answer": "SELECT year FROM table_28848697_4 WHERE tied = 11", "question": "What is the year listed when tied is listed as 11?", "context": "CREATE TABLE table_28848697_4 (year VARCHAR, tied VARCHAR)"}, {"answer": "SELECT goals_against FROM table_28848697_4 WHERE goals_scored = 30", "question": "What is the goals against listed when the goals scored is 30?", "context": "CREATE TABLE table_28848697_4 (goals_against VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT COUNT(goals_scored) FROM table_28848697_4 WHERE year = \"Verano 2001\"", "question": "How many goals scored entries are listed when the year is verano 2001?", "context": "CREATE TABLE table_28848697_4 (goals_scored VARCHAR, year VARCHAR)"}, {"answer": "SELECT goals_scored FROM table_28848697_4 WHERE position = 17 AND tied = 5", "question": "What are goals scored when postition is 17 and tied is 5?", "context": "CREATE TABLE table_28848697_4 (goals_scored VARCHAR, position VARCHAR, tied VARCHAR)"}, {"answer": "SELECT winner FROM table_28853064_15 WHERE mountains_classification = \"Jaime Vergara\" AND team_classification = \"Col es Pasion Caf\u00e9 De Colombia 472\"", "question": "Who was the winner if the Mountains Classification award was given to Jaime Vergara and the Team Classification award is given to Col es Pasion Caf\u00e9 De Colombia 472?", "context": "CREATE TABLE table_28853064_15 (winner VARCHAR, mountains_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT general_classification FROM table_28853064_15 WHERE winner = \"Sergio Luis Henao\" AND points_classification = \"Sergio Luis Henao\"", "question": "Who was the General Classification awardee if Sergio Luis Henao was the winner and the Points Classification award was given to Sergio Luis Henao?", "context": "CREATE TABLE table_28853064_15 (general_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT winner FROM table_28853064_15 WHERE mountains_classification = \"Oscar Solis\" AND team_classification = \"EPM-UNE\"", "question": "Who were the winners if the Mountain Classification award was given to Oscar Solis and Team Classification was given to EPM-Une?", "context": "CREATE TABLE table_28853064_15 (winner VARCHAR, mountains_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT stage FROM table_28853064_15 WHERE team_classification = \"EPM-UNE\" AND mountains_classification = \"Oscar Solis\" AND winner = \"Jaime Vergara\"", "question": "In what stage did Jaime Vergara won, Team Classification was given to EPM-Une and Mountain Classification winner was Oscar Solis?", "context": "CREATE TABLE table_28853064_15 (stage VARCHAR, winner VARCHAR, team_classification VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT directed_by FROM table_28859177_2 WHERE original_air_date = \"November 21, 2003\"", "question": "Who directed the episode that aired November 21, 2003?", "context": "CREATE TABLE table_28859177_2 (directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_28859177_2 WHERE series__number = 4", "question": "How many episode titles have series number 4?", "context": "CREATE TABLE table_28859177_2 (title VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT COUNT(college_junior_club_team) FROM table_2886617_5 WHERE nhl_team = \"Colorado Avalanche\"", "question": "How may college/junior/club team has a the nhl team listed as Colorado Avalanche?", "context": "CREATE TABLE table_2886617_5 (college_junior_club_team VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_2886617_2 WHERE nhl_team = \"New York Rangers\"", "question": "What player was picked by the New York Rangers?", "context": "CREATE TABLE table_2886617_2 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_2886617_8 WHERE nhl_team = \"Toronto Maple Leafs\"", "question": "What position did the draft pick for Toronto Maple Leafs play?", "context": "CREATE TABLE table_2886617_8 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_2886617_8 WHERE nhl_team = \"Edmonton Oilers\"", "question": "Who did Edmonton Oilers get for their draft pick?", "context": "CREATE TABLE table_2886617_8 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2886617_8 WHERE player = \"Milan Kostolny\"", "question": "What college team did Milan Kostolny play for?", "context": "CREATE TABLE table_2886617_8 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_2886617_8 WHERE nhl_team = \"Buffalo Sabres\"", "question": "What player was picked for Buffalo Sabres?", "context": "CREATE TABLE table_2886617_8 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2886617_8 WHERE player = \"Sergei Luchinkin\"", "question": "What NHL team picked Sergei Luchinkin?", "context": "CREATE TABLE table_2886617_8 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(motogp_500cc) FROM table_2889810_1", "question": "What is the minimum MotoGP/500cc ranking?", "context": "CREATE TABLE table_2889810_1 (motogp_500cc INTEGER)"}, {"answer": "SELECT tournament_winner FROM table_28884880_4 WHERE conference = \"Southwestern Athletic conference\"", "question": "Who was the tournament winner in the Southwestern Athletic Conference?", "context": "CREATE TABLE table_28884880_4 (tournament_winner VARCHAR, conference VARCHAR)"}, {"answer": "SELECT crashandride_cymbalpads FROM table_2889300_6 WHERE drumset_name = \"TD-9K2\"", "question": "what is the crashandride cymbalpads for the drumset name td-9k2", "context": "CREATE TABLE table_2889300_6 (crashandride_cymbalpads VARCHAR, drumset_name VARCHAR)"}, {"answer": "SELECT COUNT(drumset_name) FROM table_2889300_6 WHERE drumstand__oftenoptional_ = \"HD-1/3Stand\" AND tom_tom_pads = \"3xCloth-Head\"", "question": "how many drumsets of drumstand (oftenoptional) with hd-1/3stand and tom-tom pads is 3xcloth-head are", "context": "CREATE TABLE table_2889300_6 (drumset_name VARCHAR, drumstand__oftenoptional_ VARCHAR, tom_tom_pads VARCHAR)"}, {"answer": "SELECT years_available FROM table_2889300_6 WHERE kickdrum_pad = \"Rubber\"", "question": "in which year was available the  rubber as kickdrum pad", "context": "CREATE TABLE table_2889300_6 (years_available VARCHAR, kickdrum_pad VARCHAR)"}, {"answer": "SELECT tom_tom_pads FROM table_2889300_6 WHERE drum_module = \"TD-5\"", "question": "in the drum module td-5 what are the tom-tom pads", "context": "CREATE TABLE table_2889300_6 (tom_tom_pads VARCHAR, drum_module VARCHAR)"}, {"answer": "SELECT COUNT(snare_pad) FROM table_2889300_6 WHERE drumset_name = \"TD-15K\"", "question": "for the drumset name td-15k how many snare pads are", "context": "CREATE TABLE table_2889300_6 (snare_pad VARCHAR, drumset_name VARCHAR)"}, {"answer": "SELECT race_winner FROM table_28925058_1 WHERE date = \"June 26\"", "question": "Who won the race on June 26?", "context": "CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT race_winner FROM table_28925058_1 WHERE date = \"August 15\"", "question": "Who won the race on August 15?", "context": "CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_28925058_1 WHERE grand_prix = \"Italian grand_prix\"", "question": "What is the date of the Italian Grand Prix?", "context": "CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_28925058_1 WHERE grand_prix = \"Spanish grand_prix\" AND race_winner = \"Daniel Ruiz\"", "question": "How many dates did Daniel Ruiz win the Spanish Grand Prix?", "context": "CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR, race_winner VARCHAR)"}, {"answer": "SELECT race_winner FROM table_28925058_1 WHERE date = \"May 1\"", "question": "Who won the race on May 1?", "context": "CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_28898974_3 WHERE incumbent = \"James Rutherford\"", "question": "When james rutherford is the incumbent how many dates are there?", "context": "CREATE TABLE table_28898974_3 (date VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT date FROM table_28898974_3 WHERE winner = \"Edward Shaw\"", "question": "When edward shaw is the winner what is the date?", "context": "CREATE TABLE table_28898974_3 (date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT reason FROM table_28898974_3 WHERE electorate = \"Peninsula\"", "question": "When peninsula is the electorate what is the reason?", "context": "CREATE TABLE table_28898974_3 (reason VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT reason FROM table_28898974_3 WHERE incumbent = \"James Seaton\"", "question": "When james seaton is the incumbent what is the reason?", "context": "CREATE TABLE table_28898974_3 (reason VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT handicap FROM table_2896329_1 WHERE prize_money = \"120s\"", "question": "What was the handicap when the prize money was 120s?", "context": "CREATE TABLE table_2896329_1 (handicap VARCHAR, prize_money VARCHAR)"}, {"answer": "SELECT date FROM table_2896329_1 WHERE handicap = \"8 st 12 lb\"", "question": "On what date was the handicap 8 st 12 lb?", "context": "CREATE TABLE table_2896329_1 (date VARCHAR, handicap VARCHAR)"}, {"answer": "SELECT date FROM table_2896329_1 WHERE track = \"Ballarat\"", "question": "On what date was the track Ballarat? ", "context": "CREATE TABLE table_2896329_1 (date VARCHAR, track VARCHAR)"}, {"answer": "SELECT MAX(Literate) AS male FROM table_28939145_2 WHERE taluka_name = \"Nevasa\"", "question": "How many literate males are there in the taluka name nevasa?", "context": "CREATE TABLE table_28939145_2 (Literate INTEGER, taluka_name VARCHAR)"}, {"answer": "SELECT Literate AS male FROM table_28939145_2 WHERE _percentage_of_district_population = \"6.65\"", "question": "how many literate males are there that has a district population of 6.65?", "context": "CREATE TABLE table_28939145_2 (Literate VARCHAR, _percentage_of_district_population VARCHAR)"}, {"answer": "SELECT male FROM table_28939145_2 WHERE female = 139361", "question": "How many males are in the group that has an amount of 139361", "context": "CREATE TABLE table_28939145_2 (male VARCHAR, female VARCHAR)"}, {"answer": "SELECT runners_up FROM table_28962227_1 WHERE finale = \"16 October 2012\"", "question": "List all the runners-up on 16 October 2012?", "context": "CREATE TABLE table_28962227_1 (runners_up VARCHAR, finale VARCHAR)"}, {"answer": "SELECT finale FROM table_28962227_1 WHERE runners_up = \"Miranda Gore Browne\"", "question": "What is the date when Miranda Gore Browne was runner-up?", "context": "CREATE TABLE table_28962227_1 (finale VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT finale FROM table_28962227_1 WHERE runners_up = \"Holly Bell\"", "question": "What is the date of the finale where Holly Bell was runner-up?", "context": "CREATE TABLE table_28962227_1 (finale VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT premiere FROM table_28962227_1 WHERE runners_up = \"Holly Bell\"", "question": "What is the premiere of the season where Holly Bell was the runner-up?", "context": "CREATE TABLE table_28962227_1 (premiere VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT COUNT(runners_up) FROM table_28962227_1 WHERE winner = \"Joanne Wheatley\"", "question": "How many runners-up were there when Joanne Wheatley won?", "context": "CREATE TABLE table_28962227_1 (runners_up VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_28962227_1 WHERE runners_up = \"Brendan Lynch\"", "question": "Who won the season for which Brendan Lynch is the runner-up?", "context": "CREATE TABLE table_28962227_1 (winner VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2897457_3 WHERE nhl_team = \"New Jersey Devils\"", "question": "What is the pick # when the new jersey devils is the nhl team?", "context": "CREATE TABLE table_2897457_3 (pick__number VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2897457_3 WHERE position = \"Defence\" AND nationality = \"Canada\" AND pick__number < 61.0", "question": "Which college/junior/team has defence as the position with canada as the nationality and the pick # is less than 61.0?", "context": "CREATE TABLE table_2897457_3 (college_junior_club_team VARCHAR, pick__number VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_2897457_3 WHERE player = \"Kris Draper\"", "question": "Which nhl team has kris draper as the player?", "context": "CREATE TABLE table_2897457_3 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_2897457_3 WHERE nhl_team = \"New Jersey Devils\"", "question": "Which position has new Jersey Devils as the nhl team?", "context": "CREATE TABLE table_2897457_3 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_2897457_3 WHERE player = \"Jim Mathieson\"", "question": "Which college/junior/club team has jim mathieson as the player?", "context": "CREATE TABLE table_2897457_3 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT production_code FROM table_28967275_2 WHERE series__number = 8", "question": "What is the production code of the episode with series #8?", "context": "CREATE TABLE table_28967275_2 (production_code VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT episode_title FROM table_28967275_2 WHERE series__number = 14", "question": "What is the title of the episode with series number 14?", "context": "CREATE TABLE table_28967275_2 (episode_title VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_28967275_2 WHERE episode__number = 31", "question": "What is the original airdate of episode #31?", "context": "CREATE TABLE table_28967275_2 (original_air_date VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT player FROM table_2897457_8 WHERE nhl_team = \"Vancouver Canucks\"", "question": "Who was drafted to the Vancouver Canucks?", "context": "CREATE TABLE table_2897457_8 (player VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(nhl_team) FROM table_2897457_8 WHERE position = \"Center\"", "question": "How many figures are provided for the team when the position drafted is center?", "context": "CREATE TABLE table_2897457_8 (nhl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_2897457_8 WHERE player = \"Paul Krake\"", "question": "What was the pick number when Paul Krake was selected?", "context": "CREATE TABLE table_2897457_8 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2897457_8 WHERE nhl_team = \"New York Rangers\"", "question": "What pick number did the New York Rangers have?", "context": "CREATE TABLE table_2897457_8 (pick__number VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2897457_8 WHERE position = \"Defence\" AND nhl_team = \"Boston Bruins\"", "question": "What pick number was the Boston Bruins selection for defence?", "context": "CREATE TABLE table_2897457_8 (pick__number VARCHAR, position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT player FROM table_2897457_4 WHERE pick__number = 64", "question": "Which player is pick 64?", "context": "CREATE TABLE table_2897457_4 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT player FROM table_2897457_4 WHERE position = \"Centre\" AND nhl_team = \"Detroit Red Wings\"", "question": "Which player is the centre for the Detroit Red Wings?", "context": "CREATE TABLE table_2897457_4 (player VARCHAR, position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_2897457_4 WHERE nhl_team = \"Minnesota North Stars\"", "question": "How many positions drafted for the Minnesota North Stars?", "context": "CREATE TABLE table_2897457_4 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_2897457_7 WHERE college_junior_club_team = \"Roseau High School (USHS-MN)\"", "question": "What position did Roseau High School (USHS-MN) play?", "context": "CREATE TABLE table_2897457_7 (position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_2897457_7 WHERE player = \"Scott Zygulski\"", "question": "What are Scott Zygulski's pick numbers?", "context": "CREATE TABLE table_2897457_7 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_2897457_7 WHERE pick__number = 136", "question": "Which country is pick# 136 from?", "context": "CREATE TABLE table_2897457_7 (nationality VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(nationality) FROM table_2897457_7 WHERE player = \"Alex Nikolic\"", "question": "How many nationalities does Alex Nikolic come from?", "context": "CREATE TABLE table_2897457_7 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(nhl_team) FROM table_2897457_7 WHERE pick__number = 128", "question": "How many NHL teams have a pick number of 128?", "context": "CREATE TABLE table_2897457_7 (nhl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_28979895_4 WHERE partner = \"Anabel Medina Garrigues\"", "question": "Name the opponents for  anabel medina garrigues", "context": "CREATE TABLE table_28979895_4 (opponents VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_28979895_4 WHERE score = \"w/o\"", "question": "Name the parter for w/o", "context": "CREATE TABLE table_28979895_4 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT network FROM table_2899987_2 WHERE origin = \"Xalapa\"", "question": "Which of the networks originate in Xalapa?", "context": "CREATE TABLE table_2899987_2 (network VARCHAR, origin VARCHAR)"}, {"answer": "SELECT programming FROM table_2899987_2 WHERE network = \"Soy Guerrero\"", "question": "What are all the programs on the Soy Guerrero network?", "context": "CREATE TABLE table_2899987_2 (programming VARCHAR, network VARCHAR)"}, {"answer": "SELECT owner FROM table_2899987_2 WHERE origin = \"Mexico City\"", "question": "Which owners originate in Mexico City?", "context": "CREATE TABLE table_2899987_2 (owner VARCHAR, origin VARCHAR)"}, {"answer": "SELECT network FROM table_2899987_2 WHERE region = \"Guerrero\"", "question": "Which network serves the Guerrero region", "context": "CREATE TABLE table_2899987_2 (network VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_2899987_2 WHERE owner = \"Estado de Tabasco\"", "question": "Which regions are owned by estado de tabasco?", "context": "CREATE TABLE table_2899987_2 (region VARCHAR, owner VARCHAR)"}, {"answer": "SELECT subdivision_name___ru____bgn_pcgn_ FROM table_290017_1 WHERE code = \"BY-HR\"", "question": "What subdivision names (RU) have a code of by-hr?", "context": "CREATE TABLE table_290017_1 (subdivision_name___ru____bgn_pcgn_ VARCHAR, code VARCHAR)"}, {"answer": "SELECT code FROM table_290017_1 WHERE subdivision_name___ru____bgn_pcgn_ = \"Grodnenskaya oblast'\"", "question": "What cods have a subdivision name (RU) of Grodnenskaya Oblast'?", "context": "CREATE TABLE table_290017_1 (code VARCHAR, subdivision_name___ru____bgn_pcgn_ VARCHAR)"}, {"answer": "SELECT subdivision_name___ru____gost_ FROM table_290017_1 WHERE subdivision_name___be____bgn_pcgn_ = \"Hrodzenskaya voblasts'\"", "question": "What are the subdivision names (RU) where the subdivision name (BE) is Hrodzenskaya Voblasts'?", "context": "CREATE TABLE table_290017_1 (subdivision_name___ru____gost_ VARCHAR, subdivision_name___be____bgn_pcgn_ VARCHAR)"}, {"answer": "SELECT subdivision_name___be____bgn_pcgn_ FROM table_290017_1 WHERE subdivision_name___ru____bgn_pcgn_ = \"Grodnenskaya oblast'\"", "question": "What is the subdivision name (BE) where subdivision name (RU) (BGN) is Grodnenskaya Oblast'?", "context": "CREATE TABLE table_290017_1 (subdivision_name___be____bgn_pcgn_ VARCHAR, subdivision_name___ru____bgn_pcgn_ VARCHAR)"}, {"answer": "SELECT code FROM table_290017_1 WHERE subdivision_name___be____bgn_pcgn_ = \"Homyel'skaya voblasts'\"", "question": "Which codes have subdivision names (BE) (BGN) of Homyel'skaya Voblasts'?", "context": "CREATE TABLE table_290017_1 (code VARCHAR, subdivision_name___be____bgn_pcgn_ VARCHAR)"}, {"answer": "SELECT into_service FROM table_29002641_1 WHERE number = \"DH1\"", "question": "Name the into service for dh1", "context": "CREATE TABLE table_29002641_1 (into_service VARCHAR, number VARCHAR)"}, {"answer": "SELECT into_service FROM table_29002641_1 WHERE number = \"DH2\"", "question": "Name the into service for dh2", "context": "CREATE TABLE table_29002641_1 (into_service VARCHAR, number VARCHAR)"}, {"answer": "SELECT MAX(Serial) AS number FROM table_29002641_1 WHERE scrapped = \"Feb 1994\"", "question": "Name the most serial number for feb 1994", "context": "CREATE TABLE table_29002641_1 (Serial INTEGER, scrapped VARCHAR)"}, {"answer": "SELECT number FROM table_29002641_1 WHERE scrapped = \"2004\"", "question": "Name the number for 2004 scapped", "context": "CREATE TABLE table_29002641_1 (number VARCHAR, scrapped VARCHAR)"}, {"answer": "SELECT COUNT(month_name) FROM table_28985631_1 WHERE numbered_month = \"Tenth\"", "question": "How many month names are there for the tenth numbered month?", "context": "CREATE TABLE table_28985631_1 (month_name VARCHAR, numbered_month VARCHAR)"}, {"answer": "SELECT defective_year FROM table_28985631_1 WHERE numbered_month = \"Eighth\"", "question": "What is the defective year for the eighth numbered month?", "context": "CREATE TABLE table_28985631_1 (defective_year VARCHAR, numbered_month VARCHAR)"}, {"answer": "SELECT MIN(month_sequence) FROM table_28985631_1 WHERE month_name = \"Av\"", "question": "What is the month sequence for the month name of av?", "context": "CREATE TABLE table_28985631_1 (month_sequence INTEGER, month_name VARCHAR)"}, {"answer": "SELECT MAX(defective_year) FROM table_28985631_1 WHERE regular_year = \"29 days\" AND month_sequence = 2", "question": "What is the defective year for the regular year of 29 days and month sequence of 2?", "context": "CREATE TABLE table_28985631_1 (defective_year INTEGER, regular_year VARCHAR, month_sequence VARCHAR)"}, {"answer": "SELECT first_air_date FROM table_28980706_4 WHERE rating__18_49_ = \"4.5\"", "question": "When 4.5 is the rating (18-49) what is the air date?", "context": "CREATE TABLE table_28980706_4 (first_air_date VARCHAR, rating__18_49_ VARCHAR)"}, {"answer": "SELECT rank__timeslot_ FROM table_28980706_4 WHERE share__18_49_ = 13", "question": "When 13 is the share (18-49) what is the rank (timeslot)?", "context": "CREATE TABLE table_28980706_4 (rank__timeslot_ VARCHAR, share__18_49_ VARCHAR)"}, {"answer": "SELECT first_air_date FROM table_28980706_4 WHERE episode = 11", "question": "When 11 is the episode what is the air date?", "context": "CREATE TABLE table_28980706_4 (first_air_date VARCHAR, episode VARCHAR)"}, {"answer": "SELECT rating__18_49_ FROM table_28980706_4 WHERE viewers__millions_ = \"10.02\"", "question": "When there are  10.02 million viewers what is the rating (18-49)?", "context": "CREATE TABLE table_28980706_4 (rating__18_49_ VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT share__18_49_ FROM table_28980706_4 WHERE viewers__millions_ = \"9.28\"", "question": "When there are 9.28 million viewers what is the share (18-49)?", "context": "CREATE TABLE table_28980706_4 (share__18_49_ VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT first_air_date FROM table_28980706_4 WHERE episode = 4", "question": "When 4 is the episode what is the air date?", "context": "CREATE TABLE table_28980706_4 (first_air_date VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_29026564_9 WHERE score = \"6\u20137 (2\u20137) , 6\u20132, 7\u20136 (7\u20133)\"", "question": "How many different results were there for the scores 6\u20137 (2\u20137) , 6\u20132, 7\u20136 (7\u20133)?", "context": "CREATE TABLE table_29026564_9 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT writer FROM table_29039942_1 WHERE episode = 3", "question": "Who was the writer for episode 3?", "context": "CREATE TABLE table_29039942_1 (writer VARCHAR, episode VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_29039942_1 WHERE writer = \"Daisuke Habara\" AND director = \"Akimitsu Sasaki\"", "question": "What was the original airdate for the episode written by daisuke habara and directed by akimitsu sasaki", "context": "CREATE TABLE table_29039942_1 (original_airdate VARCHAR, writer VARCHAR, director VARCHAR)"}, {"answer": "SELECT title FROM table_29039942_1 WHERE director = \"Tomoyuki Furumaya\"", "question": "What episode did tomoyuki furumaya", "context": "CREATE TABLE table_29039942_1 (title VARCHAR, director VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_29033869_3 WHERE result__includes_margin_ = \"Lost by 36 points\"", "question": "What is the earliest round where collingswood lost by 36 points?", "context": "CREATE TABLE table_29033869_3 (round INTEGER, result__includes_margin_ VARCHAR)"}, {"answer": "SELECT score__collingwoods_score_is_in_bold_ FROM table_29033869_3 WHERE date = \"Saturday, 26 June 7:10pm\"", "question": "What was the score on saturday, 26 june 7:10pm?", "context": "CREATE TABLE table_29033869_3 (score__collingwoods_score_is_in_bold_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_29033869_3 WHERE opponent = \"Melbourne\" AND date = \"Saturday, 4 April 2:10pm\"", "question": "What is the round number of the round against melbourne on saturday, 4 april 2:10pm?", "context": "CREATE TABLE table_29033869_3 (round INTEGER, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_29033869_3 WHERE opponent = \"Essendon\" AND position_on_ladder = \"3rd\"", "question": "Which venue did collingsworth play essendon in when they had the 3rd position on the ladder?", "context": "CREATE TABLE table_29033869_3 (venue VARCHAR, opponent VARCHAR, position_on_ladder VARCHAR)"}, {"answer": "SELECT home_away FROM table_29033869_3 WHERE position_on_ladder = \"6th\"", "question": "Was the round where they were in 6th at home or away?", "context": "CREATE TABLE table_29033869_3 (home_away VARCHAR, position_on_ladder VARCHAR)"}, {"answer": "SELECT previous_school FROM table_29050051_3 WHERE height = \"ft5in (m)\" AND position = \"Forward\"", "question": "What was the previous school for the forward with a height of  ft5in (m)?", "context": "CREATE TABLE table_29050051_3 (previous_school VARCHAR, height VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(_number) FROM table_29050051_3", "question": "What is the lowest listed number for a player?", "context": "CREATE TABLE table_29050051_3 (_number INTEGER)"}, {"answer": "SELECT name FROM table_29050051_3 WHERE previous_school = \"South Kent School / Brentwood HS\"", "question": "Who previously attended south kent school / brentwood hs?", "context": "CREATE TABLE table_29050051_3 (name VARCHAR, previous_school VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_29050051_3 WHERE position = \"Guard\" AND previous_school = \"Brophy College Prep\"", "question": "What is the highest number a guard from brophy college prep wore?", "context": "CREATE TABLE table_29050051_3 (_number INTEGER, position VARCHAR, previous_school VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_29063233_1 WHERE uk_viewers__million_ = \"6.16\"", "question": "How many directed by entries have UK viewership over 6.16 million?", "context": "CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_29063233_1 WHERE uk_viewers__million_ = \"5.77\"", "question": "Who directed the episode with a UK viewership of exactly 5.77 million?", "context": "CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_29063233_1 WHERE uk_viewers__million_ = \"6.02\"", "question": "What was the airdate of the episode with a UK viewership of 6.02 million?", "context": "CREATE TABLE table_29063233_1 (original_air_date VARCHAR, uk_viewers__million_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_29063233_1 WHERE uk_viewers__million_ = \"6.09\"", "question": "Who directed the episode with UK viewership of 6.09 million?", "context": "CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR)"}, {"answer": "SELECT general_classification FROM table_29077342_19 WHERE winner = \"Mauricio Soler\"", "question": "Name the general classification for mauricio soler", "context": "CREATE TABLE table_29077342_19 (general_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT general_classification FROM table_29077342_19 WHERE winner = \"Steven Kruijswijk\"", "question": "Name the general classification for steven kruijswijk", "context": "CREATE TABLE table_29077342_19 (general_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT points_classification FROM table_29077342_19 WHERE general_classification = \"Levi Leipheimer\"", "question": "Name the points classification for levi leipheimer", "context": "CREATE TABLE table_29077342_19 (points_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_29077342_19 WHERE team_classification = \"Rabobank\" AND general_classification = \"Damiano Cunego\"", "question": "Name the mountains classification for rabobank and damiano cunego", "context": "CREATE TABLE table_29077342_19 (mountains_classification VARCHAR, team_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT team_classification FROM table_29077342_19 WHERE winner = \"Thomas De Gendt\"", "question": "Name the team classification for thomas de gendt", "context": "CREATE TABLE table_29077342_19 (team_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT built_for FROM table_29071587_1 WHERE original_no = \"24D\"", "question": "What is listed in built for when the original number is 24d?", "context": "CREATE TABLE table_29071587_1 (built_for VARCHAR, original_no VARCHAR)"}, {"answer": "SELECT MAX(season__number) FROM table_29102612_1 WHERE us_viewers__millions_ = \"5.3\"", "question": "What is the season # when ther are 5.3 million U.S viewers?", "context": "CREATE TABLE table_29102612_1 (season__number INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT title FROM table_29087004_3 WHERE written_by = \"Eric Trueheart\"", "question": "What are the titles of episodes written by Eric Trueheart?", "context": "CREATE TABLE table_29087004_3 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_29087004_3 WHERE united_states_original_airdate = \"June 9, 2012\"", "question": "Who were the writers of episode/s first aired in the US on June 9, 2012?", "context": "CREATE TABLE table_29087004_3 (written_by VARCHAR, united_states_original_airdate VARCHAR)"}, {"answer": "SELECT written_by FROM table_29087004_3 WHERE directed_by = \"Greg Sullivan\" AND united_states_original_airdate = \"July 21, 2012\"", "question": "Who were the writers of the episodes directed by Greg Sullivan and which first aired on July 21, 2012?", "context": "CREATE TABLE table_29087004_3 (written_by VARCHAR, directed_by VARCHAR, united_states_original_airdate VARCHAR)"}, {"answer": "SELECT series__number FROM table_29087004_3 WHERE written_by = \"Evan Gore\"", "question": "Which episode/s were written by Evan Gore?", "context": "CREATE TABLE table_29087004_3 (series__number VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT away_team FROM table_29090919_1 WHERE home_team = \"Essendon\"", "question": "Which team was the away team when home team was essendon?", "context": "CREATE TABLE table_29090919_1 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(home_team) AS score FROM table_29090919_1 WHERE away_team = \"Fitzroy\"", "question": "How many scores were there for the home team when the  away team was fitzroy?", "context": "CREATE TABLE table_29090919_1 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_29090919_1 WHERE home_team = \"North Melbourne\"", "question": "Which team was the away team when the home team was north melbourne?", "context": "CREATE TABLE table_29090919_1 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_29090919_1 WHERE home_team = \"Melbourne\"", "question": "What is the date of the game when the home team is melbourne?", "context": "CREATE TABLE table_29090919_1 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT singer_s_ FROM table_29135051_2 WHERE ratings = \"1.45m\"", "question": "Name the singer for 1.45m", "context": "CREATE TABLE table_29135051_2 (singer_s_ VARCHAR, ratings VARCHAR)"}, {"answer": "SELECT singer_s_ FROM table_29135051_2 WHERE comedian = \"Joe Wilkinson\"", "question": "Name the singer for joe wilkinson", "context": "CREATE TABLE table_29135051_2 (singer_s_ VARCHAR, comedian VARCHAR)"}, {"answer": "SELECT singer_s_ FROM table_29135051_2 WHERE guest_s_ = \"Bruce Forsyth\"", "question": "Name the singer for bruce forsyth", "context": "CREATE TABLE table_29135051_2 (singer_s_ VARCHAR, guest_s_ VARCHAR)"}, {"answer": "SELECT COUNT(ratings) FROM table_29135051_2 WHERE guest_s_ = \"Bruce Forsyth\"", "question": "Name the number of ratings for bruce forsyth", "context": "CREATE TABLE table_29135051_2 (ratings VARCHAR, guest_s_ VARCHAR)"}, {"answer": "SELECT guest_s_ FROM table_29135051_2 WHERE ratings = \"1.64m\"", "question": "Name the guest for 1.64m ratings", "context": "CREATE TABLE table_29135051_2 (guest_s_ VARCHAR, ratings VARCHAR)"}, {"answer": "SELECT constructor FROM table_2911781_3 WHERE grand_prix = \"Belgian grand_prix\"", "question": "What was the constructor in the Belgian Grand Prix round?", "context": "CREATE TABLE table_2911781_3 (constructor VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_2911781_3 WHERE rd = 15", "question": "Who had the fastest lap in round 15?", "context": "CREATE TABLE table_2911781_3 (fastest_lap VARCHAR, rd VARCHAR)"}, {"answer": "SELECT date FROM table_29126507_1 WHERE home_team = \"Essendon\"", "question": "When was the home team Essendon? ", "context": "CREATE TABLE table_29126507_1 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT ground FROM table_29126507_1 WHERE away_team = \"Richmond\"", "question": "When Richmond played as the away team, what was the ground?", "context": "CREATE TABLE table_29126507_1 (ground VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_29126507_1 WHERE home_team = \"Fitzroy\"", "question": "When did Fitzroy play as the home team?", "context": "CREATE TABLE table_29126507_1 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT scores FROM table_29141354_1 WHERE episode = \"01x06\"", "question": "what was the result on 01x06", "context": "CREATE TABLE table_29141354_1 (scores VARCHAR, episode VARCHAR)"}, {"answer": "SELECT episode FROM table_29141354_1 WHERE jamie_and_johns_guest = \"Tom Daley\"", "question": "what was the size when tom daley appeared", "context": "CREATE TABLE table_29141354_1 (episode VARCHAR, jamie_and_johns_guest VARCHAR)"}, {"answer": "SELECT COUNT(scores) FROM table_29141354_3 WHERE episode = \"03x06\"", "question": "How many scores had an episode of 03x06?", "context": "CREATE TABLE table_29141354_3 (scores VARCHAR, episode VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_29141354_4 WHERE jamie_and_johns_guest = \"Mark Webber\"", "question": "When id the episode broadcast with Mark Webber as Jamie and John's guest?", "context": "CREATE TABLE table_29141354_4 (first_broadcast VARCHAR, jamie_and_johns_guest VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_29141354_4 WHERE jamie_and_johns_guest = \"Andy Murray\"", "question": "What date did the episode with Andy Murray as Jamie and John's guest first broadcast?", "context": "CREATE TABLE table_29141354_4 (first_broadcast VARCHAR, jamie_and_johns_guest VARCHAR)"}, {"answer": "SELECT COUNT(andrew_and_georgies_guest_lee_mack_replaced_andrew_flintoff_as_team_captain_for_one_week_in_series_4), _episode_2 FROM table_29141354_4 WHERE episode = \"04x04\"", "question": "How many items are listed under 'andrew and georgies guest lee mack replaced andrew flint as team captain for one week' for episode 04x04?", "context": "CREATE TABLE table_29141354_4 (_episode_2 VARCHAR, andrew_and_georgies_guest_lee_mack_replaced_andrew_flintoff_as_team_captain_for_one_week_in_series_4 VARCHAR, episode VARCHAR)"}, {"answer": "SELECT guest_s_ FROM table_29135051_3 WHERE ratings = \"1.44m\"", "question": "who guest starred on the episode with a 1.44m rating", "context": "CREATE TABLE table_29135051_3 (guest_s_ VARCHAR, ratings VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_29135051_3 WHERE guest_s_ = \"Barbara Windsor and Heston Blumenthal\"", "question": "when was the episode on which barbara windsor and heston blumenthal guest starred broadcasted", "context": "CREATE TABLE table_29135051_3 (broadcast_date VARCHAR, guest_s_ VARCHAR)"}, {"answer": "SELECT COUNT(broadcast_date) FROM table_29135051_3 WHERE singer_s_ = \"The Overtones\"", "question": "how many broadcaste dates features the overtones", "context": "CREATE TABLE table_29135051_3 (broadcast_date VARCHAR, singer_s_ VARCHAR)"}, {"answer": "SELECT COUNT(guest_s_) FROM table_29135051_3 WHERE broadcast_date = \"11September2012\"", "question": "how many guest stars did the episode that was broadcasted 11september2012 have", "context": "CREATE TABLE table_29135051_3 (guest_s_ VARCHAR, broadcast_date VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_29135051_3 WHERE guest_s_ = \"Michael McIntyre and Alex James\"", "question": "when was the episode guest starring michael mcintyre and alex james broadcasted", "context": "CREATE TABLE table_29135051_3 (broadcast_date VARCHAR, guest_s_ VARCHAR)"}, {"answer": "SELECT MIN(episode) FROM table_29135051_3 WHERE guest_s_ = \"Sarah Millican and Grayson Perry\"", "question": "which episode did sarah millican and grayson perry appear in", "context": "CREATE TABLE table_29135051_3 (episode INTEGER, guest_s_ VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_29141354_5 WHERE andrew_and_jacks_guest = \"Jessica Ennis\"", "question": "When were episodes first broadcast with jessica ennis as andrew and jacks guest?", "context": "CREATE TABLE table_29141354_5 (first_broadcast VARCHAR, andrew_and_jacks_guest VARCHAR)"}, {"answer": "SELECT directed_by FROM table_29152820_1 WHERE written_by = \"Eli Attie\" AND production_code = \"2T5018\"", "question": "Who directed the episode that is written by Eli Attie and production code is 2t5018?", "context": "CREATE TABLE table_29152820_1 (directed_by VARCHAR, written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_29152820_1 WHERE no_in_series = 122", "question": "How many episodes are 122 in the series?", "context": "CREATE TABLE table_29152820_1 (no_in_season VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT scores FROM table_29141354_7 WHERE andrew_and_jacks_guest = \"Matt Smith\"", "question": "What was the score for the episode with Matt Smith as Andrew and Jack's guest?", "context": "CREATE TABLE table_29141354_7 (scores VARCHAR, andrew_and_jacks_guest VARCHAR)"}, {"answer": "SELECT first_broadcast FROM table_29141354_7 WHERE andrew_and_jacks_guest = \"Amy Williams\"", "question": "When was the episode with Amy Williams as Andrew and Jack's guest broadcast?", "context": "CREATE TABLE table_29141354_7 (first_broadcast VARCHAR, andrew_and_jacks_guest VARCHAR)"}, {"answer": "SELECT MIN(season_no) FROM table_29154676_1 WHERE us_viewers__millions_ = \"3.91\"", "question": "What is the last episode in the season that had 3.91 million viewers in the US?", "context": "CREATE TABLE table_29154676_1 (season_no INTEGER, us_viewers__millions_ VARCHAR)"}, {"answer": "SELECT COUNT(season_no) FROM table_29154676_1 WHERE written_by = \"Warren Leight\"", "question": "How many episodes were written by Warren Leight?", "context": "CREATE TABLE table_29154676_1 (season_no VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(championship) FROM table_29163303_4 WHERE score = \"4\u20136, 7\u20136 (7\u20135) , [5\u201310]\"", "question": "How many championships were there where the score was  4\u20136, 7\u20136 (7\u20135) , [5\u201310]?", "context": "CREATE TABLE table_29163303_4 (championship VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_29163303_4 WHERE score = \"6\u20131, 4\u20136, [12\u201310]\"", "question": "On what surface was it the year when the score was 6\u20131, 4\u20136, [12\u201310]?", "context": "CREATE TABLE table_29163303_4 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(opponent) FROM table_29163303_4 WHERE score = \"6\u20134, 3\u20136, [11\u201313]\"", "question": "How many times has the score been 6\u20134, 3\u20136, [11\u201313]?", "context": "CREATE TABLE table_29163303_4 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT outgoing_head_coach FROM table_29171931_3 WHERE manner_of_departure = \"Gardening leave 1\"", "question": "Who are the outgoing head coaches whose manner of departure is Gardening Leave 1?", "context": "CREATE TABLE table_29171931_3 (outgoing_head_coach VARCHAR, manner_of_departure VARCHAR)"}, {"answer": "SELECT incoming_head_coach FROM table_29171931_3 WHERE outgoing_head_coach = \"Wan Jamak Wan Hassan\"", "question": "Who was the incoming head coach after Wan Jamak Wan Hassan quit the coaching job?", "context": "CREATE TABLE table_29171931_3 (incoming_head_coach VARCHAR, outgoing_head_coach VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_29162856_1 WHERE round = 1", "question": "Who had the fastest lap in round 1?", "context": "CREATE TABLE table_29162856_1 (fastest_lap VARCHAR, round VARCHAR)"}, {"answer": "SELECT pole_position FROM table_29162856_1 WHERE fastest_lap = \"Matt Davies\"", "question": "Who had the pole position when matt davies had the fastest lap?", "context": "CREATE TABLE table_29162856_1 (pole_position VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT pole_position FROM table_29162856_1 WHERE winning_rider = \"Rob Guiver\" AND fastest_lap = \"Kyle Ryde\"", "question": "Who had the pole position(s) when rob guiver won and kyle ryde had the fastest lap?", "context": "CREATE TABLE table_29162856_1 (pole_position VARCHAR, winning_rider VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_29163303_2 WHERE championship = \"US Open (2)\"", "question": "What is the earliest year in which the result is championship US Open (2)?", "context": "CREATE TABLE table_29163303_2 (year INTEGER, championship VARCHAR)"}, {"answer": "SELECT partner FROM table_29163303_2 WHERE championship = \"US Open (2)\"", "question": "Who was Bob Bryan's partner in the Championship where the result is US Open (2)?", "context": "CREATE TABLE table_29163303_2 (partner VARCHAR, championship VARCHAR)"}, {"answer": "SELECT score FROM table_29163303_2 WHERE championship = \"French Open\"", "question": "What are the results of those matches where the championship is French Open?", "context": "CREATE TABLE table_29163303_2 (score VARCHAR, championship VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_29196086_4 WHERE written_by = \"Harold Hayes Jr. & Craig S. Phillips\"", "question": "on how many days did the episode written by harold hayes jr. & craig s. phillips originally air", "context": "CREATE TABLE table_29196086_4 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_29196086_4 WHERE original_air_date = \"January19,2013\"", "question": "how many episodes originally aired january19,2013", "context": "CREATE TABLE table_29196086_4 (no_in_series VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_29196086_4 WHERE original_air_date = \"October20,2012\"", "question": "which episode of the season aired on october20,2012", "context": "CREATE TABLE table_29196086_4 (no_in_season INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT team FROM table_29181479_3 WHERE game = 5", "question": "Which team was the opponent in game 5?", "context": "CREATE TABLE table_29181479_3 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT series FROM table_29181479_5 WHERE game = 5", "question": "Lis the series for game 5.", "context": "CREATE TABLE table_29181479_5 (series VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_29181479_5 WHERE high_points = \"Boris Diaw (34)\"", "question": "What was the final in the game that boris diaw (34) scored the most points?", "context": "CREATE TABLE table_29181479_5 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT december_28 FROM table_29217650_1 WHERE movies = \"Ang Tanging Ina Mo (Last na 'To!)\"", "question": "What is the figure for December 28 for ang tanging ina mo (last na 'to!)?", "context": "CREATE TABLE table_29217650_1 (december_28 VARCHAR, movies VARCHAR)"}, {"answer": "SELECT december_27 FROM table_29217650_1 WHERE movies = \"Ang Tanging Ina Mo (Last na 'To!)\"", "question": "What is the figure for December 27 for ang tanging ina mo (last na 'to!)?", "context": "CREATE TABLE table_29217650_1 (december_27 VARCHAR, movies VARCHAR)"}, {"answer": "SELECT COUNT(december_28) FROM table_29217650_1 WHERE movies = \"Rosario\"", "question": "How many figures are provided for December 28 for Rosario?", "context": "CREATE TABLE table_29217650_1 (december_28 VARCHAR, movies VARCHAR)"}, {"answer": "SELECT movies FROM table_29217650_1 WHERE december_25 = \"P3.2 million\"", "question": "What film earmed p3.2 million on December 25?", "context": "CREATE TABLE table_29217650_1 (movies VARCHAR, december_25 VARCHAR)"}, {"answer": "SELECT fri_3_june FROM table_29218221_3 WHERE thurs_2_june = \"20' 50.45 108.623mph\"", "question": "What was the Friday June 3 practice time of the rider who did 20' 50.45 108.623mph on Thursday, June 2?", "context": "CREATE TABLE table_29218221_3 (fri_3_june VARCHAR, thurs_2_june VARCHAR)"}, {"answer": "SELECT wed_1_june FROM table_29218221_3 WHERE thurs_2_june = \"21' 05.87 107.300mph\"", "question": "What's the Wednesday, June 1 practice time for the rider that did 21' 05.87 107.300mph on Thursday, June 2?", "context": "CREATE TABLE table_29218221_3 (wed_1_june VARCHAR, thurs_2_june VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_29219286_1 WHERE directed_by = \"Ernest Dickerson\" AND no_in_season = 9", "question": "How many people wrote episode 9 in the season that was directed by Ernest Dickerson?", "context": "CREATE TABLE table_29219286_1 (written_by VARCHAR, directed_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT written_by FROM table_29219286_1 WHERE directed_by = \"Milan Cheylov\"", "question": "Who wrote the episode that was directed by Milan Cheylov?", "context": "CREATE TABLE table_29219286_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT ep_winning_team FROM table_29225103_2 WHERE cp_winning_team = \"Dave Clark\" AND gm_winning_team = \"Stuart Northrup\"", "question": "Who was the EP winning team when the CP winning team was Dave Clark and the GM winning team was Stuart Northrup?", "context": "CREATE TABLE table_29225103_2 (ep_winning_team VARCHAR, cp_winning_team VARCHAR, gm_winning_team VARCHAR)"}, {"answer": "SELECT cm_winning_team FROM table_29225103_2 WHERE fm_winning_team = \"#17 Elva - Ford\"", "question": "Who was the CM winning team when the FM winning team was #17 Elva - Ford?", "context": "CREATE TABLE table_29225103_2 (cm_winning_team VARCHAR, fm_winning_team VARCHAR)"}, {"answer": "SELECT gm_winning_team FROM table_29225103_2 WHERE ep_winning_team = \"#37 Porsche\"", "question": "Who the GM winning team when the EP winning team was #37 Porsche? ", "context": "CREATE TABLE table_29225103_2 (gm_winning_team VARCHAR, ep_winning_team VARCHAR)"}, {"answer": "SELECT ep_winning_team FROM table_29225103_2 WHERE fm_winning_team = \"Brabham - Ford\" AND hm_winning_team = \"Osca\"", "question": "Who was the EP winning team when the FM winning team was Brabham - Ford and the HM winning team was Osca?", "context": "CREATE TABLE table_29225103_2 (ep_winning_team VARCHAR, fm_winning_team VARCHAR, hm_winning_team VARCHAR)"}, {"answer": "SELECT hp_winning_team FROM table_29225103_2 WHERE ep_winning_team = \"Hans Zereis\" AND gm_winning_team = \"Charles Gibson\"", "question": "Who was the HP winning team when the EP winning team was Hans Zereis and the GM winning team was Charles Gibson? ", "context": "CREATE TABLE table_29225103_2 (hp_winning_team VARCHAR, ep_winning_team VARCHAR, gm_winning_team VARCHAR)"}, {"answer": "SELECT team FROM table_29261823_10 WHERE opponent = \"Elfsborg\"", "question": "what was the name of the team opponent to elfsborg", "context": "CREATE TABLE table_29261823_10 (team VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT team FROM table_29261823_10 WHERE aggregate_score = \"L 1\u20132\"", "question": "what is the name of the team which aggregate score is l 1\u20132", "context": "CREATE TABLE table_29261823_10 (team VARCHAR, aggregate_score VARCHAR)"}, {"answer": "SELECT aggregate_score FROM table_29261823_10 WHERE contest_and_round = \"Europa League Play Off Round\"", "question": "what is the aggregate score for the europa league play off round contest and round", "context": "CREATE TABLE table_29261823_10 (aggregate_score VARCHAR, contest_and_round VARCHAR)"}, {"answer": "SELECT sydney FROM table_2923917_4 WHERE distance = \"10km\"", "question": "How many dollars is listed under Sydney when the distance is 10km?", "context": "CREATE TABLE table_2923917_4 (sydney VARCHAR, distance VARCHAR)"}, {"answer": "SELECT COUNT(distance) FROM table_2923917_4 WHERE brisbane = \"$3.80\"", "question": "How many distance places have brisbane at $3.80?", "context": "CREATE TABLE table_2923917_4 (distance VARCHAR, brisbane VARCHAR)"}, {"answer": "SELECT COUNT(melbourne) FROM table_2923917_4 WHERE distance = \"15km\"", "question": "How many listings under Melbourne has a distance at 15km?", "context": "CREATE TABLE table_2923917_4 (melbourne VARCHAR, distance VARCHAR)"}, {"answer": "SELECT distance FROM table_2923917_4 WHERE brisbane = \"$4.80\"", "question": "What is the distance when brisbane is $4.80?", "context": "CREATE TABLE table_2923917_4 (distance VARCHAR, brisbane VARCHAR)"}, {"answer": "SELECT distance FROM table_2923917_4 WHERE brisbane = \"$5.20\"", "question": "What is the distance when brisbane is $5.20?", "context": "CREATE TABLE table_2923917_4 (distance VARCHAR, brisbane VARCHAR)"}, {"answer": "SELECT COUNT(helen_sildna) FROM table_29261215_4 WHERE iiris_vesik = 3", "question": "How many scores did Helen Sildna give when Iiris Vesik gave a 3?", "context": "CREATE TABLE table_29261215_4 (helen_sildna VARCHAR, iiris_vesik VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_29261215_4 WHERE peeter_v\u00e4hi = 9", "question": "What is the maximum points received when Peeter V\u00e4hl gave a 9?", "context": "CREATE TABLE table_29261215_4 (points INTEGER, peeter_v\u00e4hi VARCHAR)"}, {"answer": "SELECT manager FROM table_29250534_1 WHERE club = \"FC Inter\"", "question": "Who is the manager for the fc inter club?", "context": "CREATE TABLE table_29250534_1 (manager VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_29250534_1 WHERE location = \"Kuopio\"", "question": "Which club is at the location of kuopio?", "context": "CREATE TABLE table_29250534_1 (club VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(stadium) FROM table_29250534_1 WHERE club = \"Haka\"", "question": "How many stadiums have haka as the club?", "context": "CREATE TABLE table_29250534_1 (stadium VARCHAR, club VARCHAR)"}, {"answer": "SELECT artist_2 FROM table_29264319_1 WHERE artist_1 = \"Sparfunk & D-Code\"", "question": "Who is the artist 2 on the setlist where the artist 1 is Sparfunk & D-Code?", "context": "CREATE TABLE table_29264319_1 (artist_2 VARCHAR, artist_1 VARCHAR)"}, {"answer": "SELECT mix_artist FROM table_29264319_1 WHERE setlist = \"Closing Party\" AND artist_1 = \"Dillinja and Skibadee\"", "question": "Who is the mix artist for the closing party setlist where artist 1 is Dillinja and Skibadee?", "context": "CREATE TABLE table_29264319_1 (mix_artist VARCHAR, setlist VARCHAR, artist_1 VARCHAR)"}, {"answer": "SELECT COUNT(original_air_date) FROM table_29273115_1 WHERE written_by = \"Charlie Day\"", "question": "On how many different dates was the episode written by Charlie Day aired for the first time?", "context": "CREATE TABLE table_29273115_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_29273115_1 WHERE production_code = \"IP02009\"", "question": "Who are the writers of the episode with production code IP02009?", "context": "CREATE TABLE table_29273115_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_29273115_1 WHERE production_code = \"IP02003\"", "question": "How many different titles does the episode with production code IP02003 have?", "context": "CREATE TABLE table_29273115_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_29273182_1 WHERE production_code = \"IP03007\"", "question": "Who wrote the episode with a production code of ip03007?", "context": "CREATE TABLE table_29273182_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_29273182_1 WHERE no_in_series = 29", "question": "What is the name of episode number 29 in the series?", "context": "CREATE TABLE table_29273182_1 (title VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT written_by FROM table_29273182_1 WHERE production_code = \"IP03012\"", "question": "Who wrote the episode with ip03012 as the production code?", "context": "CREATE TABLE table_29273182_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_29273182_1 WHERE production_code = \"IP03010\"", "question": "Who directed the episode with production code ip03010?", "context": "CREATE TABLE table_29273182_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(no_in_season) FROM table_29273390_1", "question": "What is the least amount in each season? ", "context": "CREATE TABLE table_29273390_1 (no_in_season INTEGER)"}, {"answer": "SELECT directed_by FROM table_29273390_1 WHERE us_viewers__million_ = \"1.19\"", "question": "Who directed an episode with 1.19 million? ", "context": "CREATE TABLE table_29273390_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT location FROM table_29285076_2 WHERE date = \"March 17\"", "question": "At what location was the March 17 race held?", "context": "CREATE TABLE table_29285076_2 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_29285076_2 WHERE fastest_lap = \"Zach Veach\"", "question": "What location did Zach Veach have the fastest lap?", "context": "CREATE TABLE table_29285076_2 (location VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT location FROM table_29285076_2 WHERE fastest_lap = \"Luke Ellery\" AND winning_driver = \"Wayne Boyd\"", "question": "Where was the race with Luke Ellery as fastest lap and Wayne Boyd as winning driver?", "context": "CREATE TABLE table_29285076_2 (location VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_29289372_1 WHERE income_classification = \"1st Class\" AND population__2010_ = 318676", "question": "When 318676 is the population of 2010 and 1st class is the income classification what is the area in kilometers squared?", "context": "CREATE TABLE table_29289372_1 (area__km\u00b2_ VARCHAR, income_classification VARCHAR, population__2010_ VARCHAR)"}, {"answer": "SELECT COUNT(population__2010_) FROM table_29289372_1 WHERE income_classification = \"1st Class\" AND city_municipality = \"Itogon, Benguet\"", "question": "When itogon, benguet is the city/municipality and 1st class is the income classification how many measurements of population in 2010?", "context": "CREATE TABLE table_29289372_1 (population__2010_ VARCHAR, income_classification VARCHAR, city_municipality VARCHAR)"}, {"answer": "SELECT pop_density__per_km\u00b2_ FROM table_29289372_1 WHERE area__km\u00b2_ = \"82.74\"", "question": "When 82.74 is the area in kilometers squared what is the pop.density (per km2)?", "context": "CREATE TABLE table_29289372_1 (pop_density__per_km\u00b2_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT city_municipality FROM table_29289372_1 WHERE area__km\u00b2_ = \"106\"", "question": "When 106 is the area in kilometers squared what is the city/municipality?", "context": "CREATE TABLE table_29289372_1 (city_municipality VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_29273243_1 WHERE production_code = \"IP04004\"", "question": "How many episodes have the production code ip04004?", "context": "CREATE TABLE table_29273243_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_29273243_1 WHERE no_in_season = 11", "question": "Who wrote episode number 11?", "context": "CREATE TABLE table_29273243_1 (written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT challenger FROM table_29281529_2 WHERE iron_chef = \"Guillaume Brahimi\"", "question": "Who was the challenger when guillaume brahimi was the iron chef?", "context": "CREATE TABLE table_29281529_2 (challenger VARCHAR, iron_chef VARCHAR)"}, {"answer": "SELECT iron_chef FROM table_29281529_2 WHERE challenger = \"Herb Faust\"", "question": "Who was the iron chef when herb Faust was the challenger?", "context": "CREATE TABLE table_29281529_2 (iron_chef VARCHAR, challenger VARCHAR)"}, {"answer": "SELECT airdate FROM table_29281529_2 WHERE winner = \"Guy Grossi\"", "question": "What date did the episode air when guy grossi won?", "context": "CREATE TABLE table_29281529_2 (airdate VARCHAR, winner VARCHAR)"}, {"answer": "SELECT australian_cast, _2012 FROM table_29289213_1 WHERE character = \"Lily Cahill\"", "question": "Who played Lily Cahill in the Australian 2012 production?", "context": "CREATE TABLE table_29289213_1 (australian_cast VARCHAR, _2012 VARCHAR, character VARCHAR)"}, {"answer": "SELECT tournament FROM table_29296103_10 WHERE champion = \"Nick Saviano Florin Seg\u0103rceanu 6\u20133, 6\u20134\"", "question": "which tournament was the champion nick saviano florin seg\u0103rceanu 6\u20133, 6\u20134?", "context": "CREATE TABLE table_29296103_10 (tournament VARCHAR, champion VARCHAR)"}, {"answer": "SELECT tournament FROM table_29296103_10 WHERE runner_up = \"Paul Annacone Eric Korita\"", "question": "Which tournament was runner-up  paul annacone eric korita?", "context": "CREATE TABLE table_29296103_10 (tournament VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_29296103_10 WHERE runner_up = \"Sammy Giammalva\"", "question": "Who were the semifinalists when sammy giammalva was  runner-up?", "context": "CREATE TABLE table_29296103_10 (semifinalists VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT tournament FROM table_29296103_10 WHERE champion = \"Pat Cash 4\u20136, 6\u20134, 6\u20133\"", "question": "which tournament was the champion pat cash 4\u20136, 6\u20134, 6\u20133?", "context": "CREATE TABLE table_29296103_10 (tournament VARCHAR, champion VARCHAR)"}, {"answer": "SELECT tournament FROM table_29296103_10 WHERE week_of = \"24 October\" AND champion = \"Matt Doyle 1\u20136, 6\u20131, 6\u20132\"", "question": "Which tournament was on the week of  24 october and champion is matt doyle 1\u20136, 6\u20131, 6\u20132?", "context": "CREATE TABLE table_29296103_10 (tournament VARCHAR, week_of VARCHAR, champion VARCHAR)"}, {"answer": "SELECT COUNT(runner_up) FROM table_29296103_10 WHERE tournament = \"Cologne , Germany Carpet \u2013 $75,000 \u2013 S32/D16\" AND champion = \"Matt Doyle 1\u20136, 6\u20131, 6\u20132\"", "question": "How many runner ups were there for the cologne , germany carpet \u2013 $75,000 \u2013 s32/d16 when the champion was matt doyle 1\u20136, 6\u20131, 6\u20132?", "context": "CREATE TABLE table_29296103_10 (runner_up VARCHAR, tournament VARCHAR, champion VARCHAR)"}, {"answer": "SELECT train_number FROM table_29301050_1 WHERE departure_pune = \"13:00\"", "question": "which train number departs pune at 13:00", "context": "CREATE TABLE table_29301050_1 (train_number VARCHAR, departure_pune VARCHAR)"}, {"answer": "SELECT train_number FROM table_29301050_1 WHERE arrival_lonavla = \"17:45\"", "question": "which train number arrives in lonavla at 17:45", "context": "CREATE TABLE table_29301050_1 (train_number VARCHAR, arrival_lonavla VARCHAR)"}, {"answer": "SELECT train_name FROM table_29301050_1 WHERE arrival_lonavla = \"17:45\"", "question": "which train name arrives in lonavla at 17:45", "context": "CREATE TABLE table_29301050_1 (train_name VARCHAR, arrival_lonavla VARCHAR)"}, {"answer": "SELECT COUNT(train_number) FROM table_29301050_1 WHERE frequency = \"Daily\" AND arrival_lonavla = \"12:25\"", "question": "how many trains run daily to lonavla and arrive at 12:25", "context": "CREATE TABLE table_29301050_1 (train_number VARCHAR, frequency VARCHAR, arrival_lonavla VARCHAR)"}, {"answer": "SELECT COUNT(train_name) FROM table_29301050_1 WHERE train_number = 99808", "question": "how many trains have the number 99808", "context": "CREATE TABLE table_29301050_1 (train_name VARCHAR, train_number VARCHAR)"}, {"answer": "SELECT departure_pune FROM table_29301050_1 WHERE arrival_lonavla = \"22:22\"", "question": "what time does the train that arrives in lonavla at 22:22 depart pune", "context": "CREATE TABLE table_29301050_1 (departure_pune VARCHAR, arrival_lonavla VARCHAR)"}, {"answer": "SELECT champion FROM table_29295463_9 WHERE runner_up = \"Marty Davis\"", "question": "Who became the champion for the 1984 Grand Prix where Marty Davis was the runner-up?", "context": "CREATE TABLE table_29295463_9 (champion VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT quarterfinalists FROM table_29295463_9 WHERE champion = \"Terry Moor 3-6, 7-6, 6-2\"", "question": "Who were the quarter-finalists in the event where the champion was Terry Moor 3-6, 7-6, 6-2?", "context": "CREATE TABLE table_29295463_9 (quarterfinalists VARCHAR, champion VARCHAR)"}, {"answer": "SELECT champion FROM table_29295463_9 WHERE runner_up = \"Scott Davis Chris Dunk\"", "question": "Who was the champion in the tournament where Scott Davis Chris Dunk was the runner up?", "context": "CREATE TABLE table_29295463_9 (champion VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_29295463_9 WHERE champion = \"Mats Wilander 7-6, 6-3\"", "question": "Who were the semifinalists in the tournament where Mats Wilander 7-6, 6-3 was declared the champion?", "context": "CREATE TABLE table_29295463_9 (semifinalists VARCHAR, champion VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_2930244_2 WHERE number_of_hurricanes = 3 AND strongest_storm = \"Three\"", "question": "How many years saw 3 hurricanes wherein the strongest storm was level three?", "context": "CREATE TABLE table_2930244_2 (year VARCHAR, number_of_hurricanes VARCHAR, strongest_storm VARCHAR)"}, {"answer": "SELECT MAX(number_of_major_hurricanes) FROM table_2930244_3", "question": "What is the largest overall number of major hurricanes?", "context": "CREATE TABLE table_2930244_3 (number_of_major_hurricanes INTEGER)"}, {"answer": "SELECT COUNT(number_of_major_hurricanes) FROM table_2930244_3 WHERE deaths = \"None\"", "question": "When the death is none what is the number of major hurricanes?", "context": "CREATE TABLE table_2930244_3 (number_of_major_hurricanes VARCHAR, deaths VARCHAR)"}, {"answer": "SELECT MIN(number_of_hurricanes) FROM table_2930244_3", "question": "What is the lowest overall number of hurricanes?", "context": "CREATE TABLE table_2930244_3 (number_of_hurricanes INTEGER)"}, {"answer": "SELECT country FROM table_29302711_13 WHERE prize_money__usd_ = 66400", "question": "What country offered a prize of 66400 US dollars?", "context": "CREATE TABLE table_29302711_13 (country VARCHAR, prize_money__usd_ VARCHAR)"}, {"answer": "SELECT country FROM table_29302711_13 WHERE name = \"Mark Cox\"", "question": "What country does the player named Mark Cox play for?", "context": "CREATE TABLE table_29302711_13 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(deaths) FROM table_2930244_4 WHERE number_of_hurricanes = 6", "question": "How many deaths did the eyar with exactly 6 hurricanes have?", "context": "CREATE TABLE table_2930244_4 (deaths VARCHAR, number_of_hurricanes VARCHAR)"}, {"answer": "SELECT MAX(number_of_tropical_storms) FROM table_2930244_4 WHERE deaths = \"34\"", "question": "What is the maximum number of tropical storms in the year that had exactly 34 deaths?", "context": "CREATE TABLE table_2930244_4 (number_of_tropical_storms INTEGER, deaths VARCHAR)"}, {"answer": "SELECT deaths FROM table_2930244_4 WHERE number_of_hurricanes = 10 AND number_of_major_hurricanes = 1", "question": "How many deaths did the year with 10 hurricanes and exactly 1 major hurricane have?", "context": "CREATE TABLE table_2930244_4 (deaths VARCHAR, number_of_hurricanes VARCHAR, number_of_major_hurricanes VARCHAR)"}, {"answer": "SELECT COUNT(no) FROM table_29329432_1 WHERE written_by = \"Jim Barnes\" AND us_viewers__million_ = \"1.82\"", "question": "Name the number of episodes that jim barnes wrote for 1.82 million viewers", "context": "CREATE TABLE table_29329432_1 (no VARCHAR, written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MIN(no) FROM table_29329432_1 WHERE production_code = \"3X6266\"", "question": "Name the least number for production code 3x6266", "context": "CREATE TABLE table_29329432_1 (no INTEGER, production_code VARCHAR)"}, {"answer": "SELECT COUNT(status) FROM table_2933761_1 WHERE played_by = \"Maurice Dean Wint\"", "question": "How many characters does Maurice Dean Wint play in the movie Cube?", "context": "CREATE TABLE table_2933761_1 (status VARCHAR, played_by VARCHAR)"}, {"answer": "SELECT occupation FROM table_2933761_1 WHERE name = \"Joan Leaven\"", "question": "What is Joan Leaven's occupation?", "context": "CREATE TABLE table_2933761_1 (occupation VARCHAR, name VARCHAR)"}, {"answer": "SELECT gender FROM table_2933761_1 WHERE name = \"Quentin\"", "question": "What gender is Quentin?", "context": "CREATE TABLE table_2933761_1 (gender VARCHAR, name VARCHAR)"}, {"answer": "SELECT played_by FROM table_2933761_1 WHERE occupation = \"Mathematics Student\"", "question": "Who played the mathematics student?", "context": "CREATE TABLE table_2933761_1 (played_by VARCHAR, occupation VARCHAR)"}, {"answer": "SELECT COUNT(prison_connection) FROM table_2933761_1 WHERE name = \"Joan Leaven\"", "question": "How many prisons is Joan Leaven connected with?", "context": "CREATE TABLE table_2933761_1 (prison_connection VARCHAR, name VARCHAR)"}, {"answer": "SELECT team_classification FROM table_29332810_14 WHERE aggressive_rider = \"Richie Porte\"", "question": "What is aggressive rider Richie Porte's team classifaction?", "context": "CREATE TABLE table_29332810_14 (team_classification VARCHAR, aggressive_rider VARCHAR)"}, {"answer": "SELECT MAX(stage) FROM table_29332810_14 WHERE aggressive_rider = \"Thomas De Gendt\"", "question": "Thomas de Gendt performed on what stage as aggressive rider?", "context": "CREATE TABLE table_29332810_14 (stage INTEGER, aggressive_rider VARCHAR)"}, {"answer": "SELECT young_rider_classification FROM table_29332810_14 WHERE aggressive_rider = \"Luke Durbridge\"", "question": "Where Luke Durbridge is the aggressive rider who is listed as the young rider classification?", "context": "CREATE TABLE table_29332810_14 (young_rider_classification VARCHAR, aggressive_rider VARCHAR)"}, {"answer": "SELECT general_classification FROM table_29332810_14 WHERE winner = \"Ben Swift\" AND young_rider_classification = \"Cameron Meyer\"", "question": "Who is listed under the general classifcation where Ben Swift won and Cameron Meyer was listed under the young rider?", "context": "CREATE TABLE table_29332810_14 (general_classification VARCHAR, winner VARCHAR, young_rider_classification VARCHAR)"}, {"answer": "SELECT sprint_classification FROM table_29332810_14 WHERE winner = \"Francisco Ventoso\"", "question": "Who is the sprint classification where Francisco Ventoso wins?", "context": "CREATE TABLE table_29332810_14 (sprint_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT week_of FROM table_29302781_12 WHERE runner_up = \"Pat Du Pr\u00e9\"", "question": "In the week of what was the runner-up Pat Du Pr\u00e9?", "context": "CREATE TABLE table_29302781_12 (week_of VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_29302781_12 WHERE runner_up = \"Peter Feigl\"", "question": "Who were the semifinalists when the runner-up was Peter Feigl?", "context": "CREATE TABLE table_29302781_12 (semifinalists VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_29302781_12 WHERE runner_up = \"Pat Du Pr\u00e9\"", "question": "Who were the semifinalists when the runner-up was Pat Du Pr\u00e9?", "context": "CREATE TABLE table_29302781_12 (semifinalists VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_29302781_12 WHERE week_of = \"13 November\" AND runner_up = \"Pat Du Pr\u00e9\"", "question": "Who were the semifinalists in the week of 13 November when the runner-up was Pat Du Pr\u00e9?", "context": "CREATE TABLE table_29302781_12 (semifinalists VARCHAR, week_of VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT quarterfinalists FROM table_29302816_8 WHERE runner_up = \"Andrew Pattison\"", "question": "What are the quarterfinalists when the runner up is andrew pattison?", "context": "CREATE TABLE table_29302816_8 (quarterfinalists VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT rank_2010 FROM table_293465_1 WHERE country = \"Indonesia\"", "question": "When indonesia is the country what is the rank of  2010?", "context": "CREATE TABLE table_293465_1 (rank_2010 VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_293465_1 WHERE rank_2011 = 5", "question": "When 5 is the rank of 2011 what is the country?", "context": "CREATE TABLE table_293465_1 (country VARCHAR, rank_2011 VARCHAR)"}, {"answer": "SELECT MAX(production_in_2010__1), 000 AS _ton_ FROM table_293465_1 WHERE country = \"Sweden\"", "question": "When sweden is the country what is the highest production in 2010 (1,000 ton)?", "context": "CREATE TABLE table_293465_1 (production_in_2010__1 INTEGER, country VARCHAR)"}, {"answer": "SELECT circuit FROM table_29361707_2 WHERE pole_position = \"Valmir Benavides\"", "question": "Valmir Benavides won pole position at which circuit?", "context": "CREATE TABLE table_29361707_2 (circuit VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_29361707_2 WHERE pole_position = \"Roberval Andrade\" AND fastest_lap = \"Felipe Giaffone\" AND winning_team = \"RVR Corinthians Motorsport\"", "question": "Who was the winner at the track where Roberval Andrade won pole, Felipe Giaffone had the fastest lap, and RVR Corinthians Motorsport was the winning team?", "context": "CREATE TABLE table_29361707_2 (winning_driver VARCHAR, winning_team VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT MIN(subscribers__2005___thousands_) FROM table_29395291_2 WHERE provider = \"Vodafone\"", "question": "What is the fewest number of 2005 subscribers for Vodafone?", "context": "CREATE TABLE table_29395291_2 (subscribers__2005___thousands_ INTEGER, provider VARCHAR)"}, {"answer": "SELECT MAX(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = \"Glo Mobile\"", "question": "What is the maximum number of 2006 subscribers for Glo Mobile?", "context": "CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ INTEGER, provider VARCHAR)"}, {"answer": "SELECT MAX(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = \"Mobilis\"", "question": "What is the maximum number of 2006 subscribers for Mobilis?", "context": "CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ INTEGER, provider VARCHAR)"}, {"answer": "SELECT subscribers__2006___thousands_ FROM table_29395291_2 WHERE provider = \"Glo Mobile\"", "question": "How many subscribers, in 2006, does Glo Mobile have?", "context": "CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ VARCHAR, provider VARCHAR)"}, {"answer": "SELECT COUNT(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = \"Vodafone\"", "question": "How many 2006 subscribers are named Vodafone?", "context": "CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ VARCHAR, provider VARCHAR)"}, {"answer": "SELECT COUNT(captain) FROM table_29398373_2 WHERE team = \"Barcelona\"", "question": "Name the number of captains for barcelona", "context": "CREATE TABLE table_29398373_2 (captain VARCHAR, team VARCHAR)"}, {"answer": "SELECT chairman FROM table_29398373_2 WHERE captain = \"Iker Casillas\"", "question": "Name the chairman for iker casillas", "context": "CREATE TABLE table_29398373_2 (chairman VARCHAR, captain VARCHAR)"}, {"answer": "SELECT team FROM table_29398373_2 WHERE head_coach = \"Javier Clemente\"", "question": "Name the team for javier clemente", "context": "CREATE TABLE table_29398373_2 (team VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT season__number FROM table_29391888_1 WHERE production_code = \"3.89\"", "question": "What is the season # for the production code 3.89?", "context": "CREATE TABLE table_29391888_1 (season__number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_29391888_1 WHERE directed_by = \"Kevin Inch\"", "question": "Who wrote the episode that was directed by Kevin Inch?", "context": "CREATE TABLE table_29391888_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_29391888_1 WHERE season__number = 2", "question": "What is the original air date for the season# 2?", "context": "CREATE TABLE table_29391888_1 (original_air_date VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT production_code FROM table_29391888_1 WHERE original_air_date = \"May15,2000\"", "question": "What is the production code for the episode whose original air date was May15,2000?", "context": "CREATE TABLE table_29391888_1 (production_code VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT former_school FROM table_29418619_1 WHERE hometown = \"Detroit, MI\"", "question": "What is the former school of the player from Detroit, MI?", "context": "CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_29418619_1 WHERE name = \"Jarrid Famous\"", "question": "What is the hometown of Jarrid Famous?", "context": "CREATE TABLE table_29418619_1 (hometown VARCHAR, name VARCHAR)"}, {"answer": "SELECT _number FROM table_29418619_1 WHERE hometown = \"Tampa, FL\"", "question": "What number is the player whose hometown is Tampa, FL?", "context": "CREATE TABLE table_29418619_1 (_number VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT year FROM table_29418619_1 WHERE _number = 31", "question": "What year is the player whose number is 31?", "context": "CREATE TABLE table_29418619_1 (year VARCHAR, _number VARCHAR)"}, {"answer": "SELECT height FROM table_29418619_1 WHERE name = \"Anthony Crater\"", "question": "What is the height of Anthony Crater? ", "context": "CREATE TABLE table_29418619_1 (height VARCHAR, name VARCHAR)"}, {"answer": "SELECT former_school FROM table_29418619_1 WHERE hometown = \"North Port, FL\"", "question": "What is the former school of the player from North Port, FL? ", "context": "CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_2941963_1 WHERE remittances_2008 = \"9.07\"", "question": "how many countries have remittances in 2008 of 9.07?", "context": "CREATE TABLE table_2941963_1 (country VARCHAR, remittances_2008 VARCHAR)"}, {"answer": "SELECT COUNT(remittances_2010) FROM table_2941963_1 WHERE remittances_2009 = \"19.73\"", "question": "how many remittances in 2010 where the remittances is 19.73?", "context": "CREATE TABLE table_2941963_1 (remittances_2010 VARCHAR, remittances_2009 VARCHAR)"}, {"answer": "SELECT remittances_2010 FROM table_2941963_1 WHERE country = \"Nigeria\"", "question": "how many remittances in 2010 for nigeria?", "context": "CREATE TABLE table_2941963_1 (remittances_2010 VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(country) FROM table_2941963_1 WHERE remittances_2009 = \"6.02\"", "question": "how many countiers had 2009 remittances of 6.02?", "context": "CREATE TABLE table_2941963_1 (country VARCHAR, remittances_2009 VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_2941848_2 WHERE s_field_reporter = \"Steve Lyons\"", "question": "What is the highest year with field reporter Steve Lyons?", "context": "CREATE TABLE table_2941848_2 (year INTEGER, s_field_reporter VARCHAR)"}, {"answer": "SELECT pregame_analysts FROM table_2941848_2 WHERE trophy_presentation = \"Chris Rose\"", "question": "What is every pregame analyst with Chris Rose as trophy presenter?", "context": "CREATE TABLE table_2941848_2 (pregame_analysts VARCHAR, trophy_presentation VARCHAR)"}, {"answer": "SELECT play_by_play_announcer FROM table_2941848_2 WHERE trophy_presentation = \"Chris Rose\"", "question": "Who is every play-by-play announcer when Chris Rose is the trophy presenter?", "context": "CREATE TABLE table_2941848_2 (play_by_play_announcer VARCHAR, trophy_presentation VARCHAR)"}, {"answer": "SELECT COUNT(fourth_place) FROM table_29446183_2 WHERE winner = \"Otsuka Pharmaceuticals\"", "question": "How many teams came in fourth when Otsuka Pharmaceuticals won?", "context": "CREATE TABLE table_29446183_2 (fourth_place VARCHAR, winner VARCHAR)"}, {"answer": "SELECT runner_up FROM table_29446183_2 WHERE fourth_place = \"Sagawa Express\"", "question": "Who was the runner up the season that Sagawa Express came in fourth?", "context": "CREATE TABLE table_29446183_2 (runner_up VARCHAR, fourth_place VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_29446183_2 WHERE third_place = \"Otsuka Pharmaceuticals\"", "question": "How many seasons did Otsuka Pharmaceuticals come in third?", "context": "CREATE TABLE table_29446183_2 (season VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT COUNT(no_in_series) FROM table_29436238_1 WHERE written_by = \"Gregg Mettler\"", "question": "How many episodes were written by Gregg Mettler?", "context": "CREATE TABLE table_29436238_1 (no_in_series VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_29436238_1 WHERE no_in_season = 4", "question": "What date did episode 4 in the season originally air?", "context": "CREATE TABLE table_29436238_1 (original_air_date VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT major_users FROM table_29474407_11 WHERE name__designation = \"Gordon Close-Support Weapon System\"", "question": "Who are all the major users of the Gordon Close-Support Weapon System?", "context": "CREATE TABLE table_29474407_11 (major_users VARCHAR, name__designation VARCHAR)"}, {"answer": "SELECT country_of_origin FROM table_29474407_11 WHERE name__designation = \"Flieger-Doppelpistole 1919\"", "question": "What country made the Flieger-Doppelpistole 1919?", "context": "CREATE TABLE table_29474407_11 (country_of_origin VARCHAR, name__designation VARCHAR)"}, {"answer": "SELECT COUNT(year_of_intro) FROM table_29474407_11 WHERE name__designation = \"Neal submachine gun\"", "question": "How many years of introduction does the Neal Submachine Gun have?", "context": "CREATE TABLE table_29474407_11 (year_of_intro VARCHAR, name__designation VARCHAR)"}, {"answer": "SELECT major_users FROM table_29474407_11 WHERE country_of_origin = \"Australia\"", "question": "Who are the major users from Australia?", "context": "CREATE TABLE table_29474407_11 (major_users VARCHAR, country_of_origin VARCHAR)"}, {"answer": "SELECT major_users FROM table_29474407_11 WHERE name__designation = \"Saturn machine pistol\"", "question": "Who are all the major users of the Saturn Machine Pistol?", "context": "CREATE TABLE table_29474407_11 (major_users VARCHAR, name__designation VARCHAR)"}, {"answer": "SELECT COUNT(colonel) FROM table_29458735_5 WHERE county = \"Pope\"", "question": "in how many of the arkansas colomel the county was pope", "context": "CREATE TABLE table_29458735_5 (colonel VARCHAR, county VARCHAR)"}, {"answer": "SELECT colonel FROM table_29458735_5 WHERE regiment = \"35th regiment\"", "question": "what is the name of the coloneo of the 35th regiment ", "context": "CREATE TABLE table_29458735_5 (colonel VARCHAR, regiment VARCHAR)"}, {"answer": "SELECT regiment FROM table_29458735_5 WHERE county = \"Fulton\"", "question": "which regiment was in the Fulton County", "context": "CREATE TABLE table_29458735_5 (regiment VARCHAR, county VARCHAR)"}, {"answer": "SELECT county FROM table_29458735_5 WHERE division = \"2nd division\" AND regiment = \"41st regiment\"", "question": "what is he name of the county where the 2nd division and the 41st regiment was", "context": "CREATE TABLE table_29458735_5 (county VARCHAR, division VARCHAR, regiment VARCHAR)"}, {"answer": "SELECT regiment FROM table_29458735_5 WHERE county = \"Arkansas\"", "question": "which regimen was in the arkansas county", "context": "CREATE TABLE table_29458735_5 (regiment VARCHAR, county VARCHAR)"}, {"answer": "SELECT director FROM table_29475589_3 WHERE writer_s_ = \"Nicole Dubuc Duane Capizzi\"", "question": "When nicole dubuc duane capizzi is the writer who is the director?", "context": "CREATE TABLE table_29475589_3 (director VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT episode_title FROM table_29475589_3 WHERE no = 22", "question": "When 22 is the number what is the episode title?", "context": "CREATE TABLE table_29475589_3 (episode_title VARCHAR, no VARCHAR)"}, {"answer": "SELECT us_original_airdate FROM table_29475589_5 WHERE _number = 9", "question": "When the # is 9 what is the U.S original airdate?", "context": "CREATE TABLE table_29475589_5 (us_original_airdate VARCHAR, _number VARCHAR)"}, {"answer": "SELECT COUNT(representative) FROM table_29486189_4 WHERE first_elected = \"2008\" AND residence = \"Hanover Twp\"", "question": "how many representatives from hanover twp were first elected in 2008", "context": "CREATE TABLE table_29486189_4 (representative VARCHAR, first_elected VARCHAR, residence VARCHAR)"}, {"answer": "SELECT first_elected FROM table_29486189_4 WHERE representative = \"Al Landis\"", "question": "when was al landis first elected", "context": "CREATE TABLE table_29486189_4 (first_elected VARCHAR, representative VARCHAR)"}, {"answer": "SELECT representative FROM table_29486189_4 WHERE residence = \"Willowick\"", "question": "which representative is from willowick", "context": "CREATE TABLE table_29486189_4 (representative VARCHAR, residence VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_29486189_4 WHERE representative = \"Andy Thompson\"", "question": "which district does andy thompson represent", "context": "CREATE TABLE table_29486189_4 (district VARCHAR, representative VARCHAR)"}, {"answer": "SELECT party FROM table_29486189_4 WHERE residence = \"Newark\"", "question": "which party is the newark representative from", "context": "CREATE TABLE table_29486189_4 (party VARCHAR, residence VARCHAR)"}, {"answer": "SELECT representative FROM table_29486189_4 WHERE residence = \"Beavercreek\"", "question": "who is beavercreek's representative", "context": "CREATE TABLE table_29486189_4 (representative VARCHAR, residence VARCHAR)"}, {"answer": "SELECT MAX(rolex_ranking) FROM table_29506171_2 WHERE money_list_rank = \"3\"", "question": "What was Reid's rolex ranking in the year that her money list rank was 3?", "context": "CREATE TABLE table_29506171_2 (rolex_ranking INTEGER, money_list_rank VARCHAR)"}, {"answer": "SELECT money_list_rank FROM table_29506171_2 WHERE top_10s = 0", "question": "What was the money list rank for Reid in the year that she had 0 top 10s?", "context": "CREATE TABLE table_29506171_2 (money_list_rank VARCHAR, top_10s VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_29506171_2 WHERE earnings___\u20ac__ = \"n/a\"", "question": "How many cuts did Reid make in the year when her earnings were n/a?", "context": "CREATE TABLE table_29506171_2 (cuts_made INTEGER, earnings___\u20ac__ VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_29506171_2 WHERE earnings___\u20ac__ = \"4,050 1\"", "question": "In what year were Reid's earnings \u20ac4,050 1?", "context": "CREATE TABLE table_29506171_2 (year INTEGER, earnings___\u20ac__ VARCHAR)"}, {"answer": "SELECT best_finish FROM table_29504351_2 WHERE earnings__$_ = 421050", "question": "What is the best finish for the player whose earnings was $421050?", "context": "CREATE TABLE table_29504351_2 (best_finish VARCHAR, earnings__$_ VARCHAR)"}, {"answer": "SELECT MAX(starts) FROM table_29504351_2 WHERE player = \"Jeff Brehaut\"", "question": "What is the maximum start record for player of Jeff Brehaut?", "context": "CREATE TABLE table_29504351_2 (starts INTEGER, player VARCHAR)"}, {"answer": "SELECT best_finish FROM table_29504351_2 WHERE player = \"Carl Paulson\"", "question": "What is the best finish record for Carl Paulson?", "context": "CREATE TABLE table_29504351_2 (best_finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT best_finish FROM table_29504351_2 WHERE player = \"Sean O'Hair\"", "question": "What is the best finish record for Sean O'hair?", "context": "CREATE TABLE table_29504351_2 (best_finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(money_list_rank) FROM table_29504351_2 WHERE player = \"Doug Barron\"", "question": "What is the money list rank for player Doug Barron?", "context": "CREATE TABLE table_29504351_2 (money_list_rank INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(quarterfinals) FROM table_29521180_35 WHERE athlete = \"Federico Muller\"", "question": "How many athletes were named federico muller?", "context": "CREATE TABLE table_29521180_35 (quarterfinals VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT round_of_16 FROM table_29521180_35 WHERE athlete = \"Felipe Saucedo\"", "question": "What was the round of 16 result for felipe saucedo?", "context": "CREATE TABLE table_29521180_35 (round_of_16 VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT isbn FROM table_2950964_5 WHERE title = \"The Ring Of Steel\"", "question": "The Ring of Steel possesses what ISBN?", "context": "CREATE TABLE table_2950964_5 (isbn VARCHAR, title VARCHAR)"}, {"answer": "SELECT read_by FROM table_2950964_5 WHERE isbn = \"isbn 978-1-4084-6879-1\"", "question": "THe audio book with ISBN 978-1-4084-6879-1 is read by whom?", "context": "CREATE TABLE table_2950964_5 (read_by VARCHAR, isbn VARCHAR)"}, {"answer": "SELECT _number FROM table_2950964_5 WHERE title = \"The Empty House\"", "question": "The Empty House audiobook has what #?", "context": "CREATE TABLE table_2950964_5 (_number VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(directed_by) FROM table_29545336_2 WHERE no = 2", "question": "How many people directed episode 2?", "context": "CREATE TABLE table_29545336_2 (directed_by VARCHAR, no VARCHAR)"}, {"answer": "SELECT title FROM table_29545336_2 WHERE featured_character_s_ = \"Abbud Siddiqui\"", "question": "What is the title of the episode that featured Abbud Siddiqui?", "context": "CREATE TABLE table_29545336_2 (title VARCHAR, featured_character_s_ VARCHAR)"}, {"answer": "SELECT us_viewers__millions_ FROM table_29545336_2 WHERE written_by = \"Matt Pelfrey\"", "question": "How many million U.S. viewers was written by Matt Pelfrey?", "context": "CREATE TABLE table_29545336_2 (us_viewers__millions_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(tonnes_of_co2_saved) FROM table_29538735_1 WHERE _percentage_electricity_reduction = \"8.9%\"", "question": "When 8.9% is the electricity reduction percentage how many sets of tonnes of co2 saved is there?", "context": "CREATE TABLE table_29538735_1 (tonnes_of_co2_saved VARCHAR, _percentage_electricity_reduction VARCHAR)"}, {"answer": "SELECT year FROM table_29538735_1 WHERE tonnes_of_co2_saved = 1522", "question": "When 1522 is the tonnes of co2 saved what is the year?", "context": "CREATE TABLE table_29538735_1 (year VARCHAR, tonnes_of_co2_saved VARCHAR)"}, {"answer": "SELECT _percentage_electricity_reduction FROM table_29538735_1 WHERE \u00a3_saved = \"\u00a3337,000\"", "question": "When \u00a3337,000 is \u00a3 saved what is the percentage of electricity reduction?", "context": "CREATE TABLE table_29538735_1 (_percentage_electricity_reduction VARCHAR, \u00a3_saved VARCHAR)"}, {"answer": "SELECT \u00a3_saved FROM table_29538735_1 WHERE _percentage_electricity_reduction = \"8.9%\"", "question": "When 8.9% is the electricity reduction percentage what is the \u00a3 saved?", "context": "CREATE TABLE table_29538735_1 (\u00a3_saved VARCHAR, _percentage_electricity_reduction VARCHAR)"}, {"answer": "SELECT COUNT(universities) FROM table_29538735_1 WHERE _percentage_electricity_reduction = \"10%\"", "question": "When 10% is the percentage of electricity reduction how many sets of universities are there?", "context": "CREATE TABLE table_29538735_1 (universities VARCHAR, _percentage_electricity_reduction VARCHAR)"}, {"answer": "SELECT MAX(l) FROM table_29545993_3 WHERE pa = 47", "question": "What is maximum loss record when the pa record is 47?", "context": "CREATE TABLE table_29545993_3 (l INTEGER, pa VARCHAR)"}, {"answer": "SELECT MIN(Ends) AS lost FROM table_29545993_3 WHERE stolen_ends = 6 AND l > 5.0", "question": "What is the minimum ends lost record when the stolen ends records is 6 and the loss record is bigger than 5.0?", "context": "CREATE TABLE table_29545993_3 (Ends INTEGER, stolen_ends VARCHAR, l VARCHAR)"}, {"answer": "SELECT MIN(stolen_ends) FROM table_29545993_3 WHERE pa = 40", "question": "What is the minimum stolen ends record where the pa record is 40?", "context": "CREATE TABLE table_29545993_3 (stolen_ends INTEGER, pa VARCHAR)"}, {"answer": "SELECT MIN(w) FROM table_29542269_2", "question": "What is the lowest overall amount of w's?", "context": "CREATE TABLE table_29542269_2 (w INTEGER)"}, {"answer": "SELECT MAX(l) FROM table_29542147_2", "question": "What is the highest L of the tournament?", "context": "CREATE TABLE table_29542147_2 (l INTEGER)"}, {"answer": "SELECT MAX(w) FROM table_29542147_2 WHERE l = 0", "question": "What is the highest W of the 0 L?", "context": "CREATE TABLE table_29542147_2 (w INTEGER, l VARCHAR)"}, {"answer": "SELECT MIN(pa) FROM table_29546142_2 WHERE w = 2", "question": "Name the least pa for w being 2", "context": "CREATE TABLE table_29546142_2 (pa INTEGER, w VARCHAR)"}, {"answer": "SELECT skip__club_ FROM table_29546030_2 WHERE pa = 28", "question": "Which skip (club) had 28 PA?", "context": "CREATE TABLE table_29546030_2 (skip__club_ VARCHAR, pa VARCHAR)"}, {"answer": "SELECT MAX(stolen_ends) FROM table_29546030_2 WHERE w = 1", "question": "What is the most amount of stolen ends for a skip with 1 W?", "context": "CREATE TABLE table_29546030_2 (stolen_ends INTEGER, w VARCHAR)"}, {"answer": "SELECT skip__club_ FROM table_29546030_2 WHERE pa = 31 AND blank_ends = 9", "question": "Which skip (club) had 31 PA and 9 blank ends?", "context": "CREATE TABLE table_29546030_2 (skip__club_ VARCHAR, pa VARCHAR, blank_ends VARCHAR)"}, {"answer": "SELECT MIN(blank_ends) FROM table_29546030_2 WHERE pf = 44", "question": "What is the least amount of blank ends for a skip who has 44 PF? ", "context": "CREATE TABLE table_29546030_2 (blank_ends INTEGER, pf VARCHAR)"}, {"answer": "SELECT COUNT(high_points) FROM table_29556461_9 WHERE team = \"UMass\"", "question": "How many high points occur with the team Umass?", "context": "CREATE TABLE table_29556461_9 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_29556461_8 WHERE team = \"La Salle\"", "question": "When la salle is the team who has the highest amount of points?", "context": "CREATE TABLE table_29556461_8 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_29556461_8 WHERE high_assists = \"Allen/Moore/Wyatt \u2013 4\"", "question": "When allen/moore/wyatt \u2013 4 have the highest amount of assists what is the highest game?", "context": "CREATE TABLE table_29556461_8 (game INTEGER, high_assists VARCHAR)"}, {"answer": "SELECT record FROM table_29556461_8 WHERE team = \"Dayton\"", "question": "When dayton is the team what is the record?", "context": "CREATE TABLE table_29556461_8 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT song_title FROM table_29547777_1 WHERE result__placement_ = \"to the Live Shows\"", "question": "What the title of the song when the result is to the live shows?", "context": "CREATE TABLE table_29547777_1 (song_title VARCHAR, result__placement_ VARCHAR)"}, {"answer": "SELECT episode FROM table_29547777_1 WHERE original_performer = \"Diana Ross\"", "question": "What is the episode when the original performaer is diana ross?", "context": "CREATE TABLE table_29547777_1 (episode VARCHAR, original_performer VARCHAR)"}, {"answer": "SELECT original_performer FROM table_29547777_1 WHERE episode = \"Casting\"", "question": "Who is the original performer when the episode is casting?", "context": "CREATE TABLE table_29547777_1 (original_performer VARCHAR, episode VARCHAR)"}, {"answer": "SELECT COUNT(skip__club_) FROM table_29546218_3 WHERE pf = 40", "question": "What is the total mumber of skip (club) entries when the pf is 40?", "context": "CREATE TABLE table_29546218_3 (skip__club_ VARCHAR, pf VARCHAR)"}, {"answer": "SELECT name FROM table_29562161_1 WHERE starting_price = \"66/1\"", "question": "What horse had a starting price of 66/1?", "context": "CREATE TABLE table_29562161_1 (name VARCHAR, starting_price VARCHAR)"}, {"answer": "SELECT MIN(l) FROM table_29565120_2 WHERE w = 4", "question": "What is the L when the W is 4?", "context": "CREATE TABLE table_29565120_2 (l INTEGER, w VARCHAR)"}, {"answer": "SELECT MAX(l) FROM table_29565601_2", "question": "What is the largest number in L?", "context": "CREATE TABLE table_29565601_2 (l INTEGER)"}, {"answer": "SELECT MIN(pa) FROM table_29565601_2 WHERE pf = 73", "question": "What is the PA when the PF is 73?", "context": "CREATE TABLE table_29565601_2 (pa INTEGER, pf VARCHAR)"}, {"answer": "SELECT blank_ends FROM table_29565673_2 WHERE w > 6.0", "question": "What is the blank ends record when the win record is higher than 6.0?", "context": "CREATE TABLE table_29565673_2 (blank_ends VARCHAR, w INTEGER)"}, {"answer": "SELECT w FROM table_29565673_2 WHERE pa = 62", "question": "What is the win record where the pa record is 62?", "context": "CREATE TABLE table_29565673_2 (w VARCHAR, pa VARCHAR)"}, {"answer": "SELECT l FROM table_29565858_2 WHERE stolen_ends = 1", "question": "What is listed under L when the stolen ends is 1?", "context": "CREATE TABLE table_29565858_2 (l VARCHAR, stolen_ends VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_29572583_19 WHERE new_points = 1155", "question": "How many rank entries are there when new points are 1155?", "context": "CREATE TABLE table_29572583_19 (rank VARCHAR, new_points VARCHAR)"}, {"answer": "SELECT MIN(new_points) FROM table_29572583_19 WHERE status = \"Second round lost to Xavier Malisse\"", "question": "What is listed in new points when status is second round lost to xavier malisse?", "context": "CREATE TABLE table_29572583_19 (new_points INTEGER, status VARCHAR)"}, {"answer": "SELECT status FROM table_29572583_19 WHERE points = 4595", "question": "What is the status when points is 4595?", "context": "CREATE TABLE table_29572583_19 (status VARCHAR, points VARCHAR)"}, {"answer": "SELECT status FROM table_29572583_19 WHERE rank = 2", "question": "What is the status when the rank is 2?", "context": "CREATE TABLE table_29572583_19 (status VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_29572583_19 WHERE rank = 17", "question": "How many points are listed when the rank is 17?", "context": "CREATE TABLE table_29572583_19 (points INTEGER, rank VARCHAR)"}, {"answer": "SELECT COUNT(seed) FROM table_29572583_19 WHERE points = 2175", "question": "How many seed entries are there when points are 2175?", "context": "CREATE TABLE table_29572583_19 (seed VARCHAR, points VARCHAR)"}, {"answer": "SELECT clubs_remaining FROM table_29566686_1 WHERE winners_from_previous_round = 4", "question": "How many clubs remained when there were 4 winners from the previous round?", "context": "CREATE TABLE table_29566686_1 (clubs_remaining VARCHAR, winners_from_previous_round VARCHAR)"}, {"answer": "SELECT MIN(clubs_remaining) FROM table_29566686_1 WHERE leagues_entering_at_this_round = \"Allsvenskan\"", "question": "What is the maximum number of clubs remaining when the league entering at this round was allsvenskan?", "context": "CREATE TABLE table_29566686_1 (clubs_remaining INTEGER, leagues_entering_at_this_round VARCHAR)"}, {"answer": "SELECT COUNT(clubs_involved) FROM table_29566686_1 WHERE leagues_entering_at_this_round = \"Allsvenskan\"", "question": "How many different values of clubs involved were there when the league entering at this round was allsvenskan?", "context": "CREATE TABLE table_29566686_1 (clubs_involved VARCHAR, leagues_entering_at_this_round VARCHAR)"}, {"answer": "SELECT programme FROM table_29566606_11 WHERE original_channel_s_ = \"CITV\"", "question": "Which programs were originally broadcast on CITV?", "context": "CREATE TABLE table_29566606_11 (programme VARCHAR, original_channel_s_ VARCHAR)"}, {"answer": "SELECT date_of_return FROM table_29566606_11 WHERE programme = \"Big Brother\"", "question": "What is the date of return for the program for the program \"Big Brother\"?", "context": "CREATE TABLE table_29566606_11 (date_of_return VARCHAR, programme VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_29574579_1 WHERE directed_by = \"Jamie Payne\"", "question": "How many episodes are directed by Jamie Payne?", "context": "CREATE TABLE table_29574579_1 (episode VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT uk_viewers__million_ FROM table_29574579_1 WHERE share___percentage_ = \"10.8\"", "question": "How many millions of viewers are listed when the share is 10.8?", "context": "CREATE TABLE table_29574579_1 (uk_viewers__million_ VARCHAR, share___percentage_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_29574579_1 WHERE uk_viewers__million_ = \"2.70\"", "question": "Who is the director when there are 2.70 million viewers?", "context": "CREATE TABLE table_29574579_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR)"}, {"answer": "SELECT episode FROM table_29574579_1 WHERE uk_viewers__million_ = \"4.50\"", "question": "How many episodes hve 4.50 million viewers?", "context": "CREATE TABLE table_29574579_1 (episode VARCHAR, uk_viewers__million_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_29574579_1 WHERE share___percentage_ = \"11.8\"", "question": "Who is the director when the share is 11.8?", "context": "CREATE TABLE table_29574579_1 (directed_by VARCHAR, share___percentage_ VARCHAR)"}, {"answer": "SELECT written_by FROM table_29583441_1 WHERE production_code = 57376", "question": "Who wrote the episode with production code 57376?", "context": "CREATE TABLE table_29583441_1 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(production_code) FROM table_29583441_1", "question": "What is the smallest numbered production code listed?", "context": "CREATE TABLE table_29583441_1 (production_code INTEGER)"}, {"answer": "SELECT original_air_date FROM table_29583441_1 WHERE directed_by = \"Christian I. Nyby II\"", "question": "What date did the episode that was directed by Christian i. nyby ii originally air on?", "context": "CREATE TABLE table_29583441_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_29584044_1 WHERE no_in_series = 31", "question": "What is the original air date of the episode that was number 31 in the series? ", "context": "CREATE TABLE table_29584044_1 (original_air_date VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_29584044_1 WHERE directed_by = \"Bruce Seth Green\"", "question": "What is the original air date of the episode that was directed by Bruce Seth Green?", "context": "CREATE TABLE table_29584044_1 (original_air_date VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_29583818_3 WHERE couple = \"Kerry & Daniel\"", "question": "How many times is the couple kerry & daniel?", "context": "CREATE TABLE table_29583818_3 (place VARCHAR, couple VARCHAR)"}, {"answer": "SELECT COUNT(couple) FROM table_29583818_3 WHERE total_points = \"128.0\"", "question": "how many times is the total points 128.0?", "context": "CREATE TABLE table_29583818_3 (couple VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_29583818_3 WHERE couple = \"Laura and Colin\"", "question": "How many times is the couple laura and colin?", "context": "CREATE TABLE table_29583818_3 (place VARCHAR, couple VARCHAR)"}, {"answer": "SELECT average FROM table_29583818_3 WHERE place = 16", "question": "what is the average when the place is 16?", "context": "CREATE TABLE table_29583818_3 (average VARCHAR, place VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_29583818_3 WHERE rank_by_average = 4", "question": "How many times is the rank by average 4?", "context": "CREATE TABLE table_29583818_3 (place VARCHAR, rank_by_average VARCHAR)"}, {"answer": "SELECT COUNT(written_by) FROM table_29584601_1 WHERE no_in_series = 56", "question": "How many different pairs of writers wrote the episode with series number 56?", "context": "CREATE TABLE table_29584601_1 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT last_school_college FROM table_29598261_1 WHERE name = \"Chris McNamara\"", "question": "what is the school for chris mcnamara?", "context": "CREATE TABLE table_29598261_1 (last_school_college VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(hometown) FROM table_29598261_1 WHERE name = \"Faisal Aden\"", "question": "how many hometowns for faisal aden?", "context": "CREATE TABLE table_29598261_1 (hometown VARCHAR, name VARCHAR)"}, {"answer": "SELECT year FROM table_29598261_1 WHERE name = \"Chris McNamara\"", "question": "what year is chris mcnamara?", "context": "CREATE TABLE table_29598261_1 (year VARCHAR, name VARCHAR)"}, {"answer": "SELECT height FROM table_29598261_1 WHERE last_school_college = \"Columbia River HS\"", "question": "what is the height of columbia river hs?", "context": "CREATE TABLE table_29598261_1 (height VARCHAR, last_school_college VARCHAR)"}, {"answer": "SELECT hometown FROM table_29598261_1 WHERE name = \"Mike Ladd\"", "question": "what is the hometown for mike ladd?", "context": "CREATE TABLE table_29598261_1 (hometown VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_29619494_2 WHERE apocalypstix = \"2nd\"", "question": "How many seasons did Apocalypstix place 2nd?", "context": "CREATE TABLE table_29619494_2 (season VARCHAR, apocalypstix VARCHAR)"}, {"answer": "SELECT season FROM table_29619494_2 WHERE sake_tuyas = \"1st\"", "question": "What season did the Sake Tuyas come in 1st place?", "context": "CREATE TABLE table_29619494_2 (season VARCHAR, sake_tuyas VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_29619494_2 WHERE denim_demons = \"3rd\"", "question": "What is the most recent season where the Denim Demons placed 3rd?", "context": "CREATE TABLE table_29619494_2 (season INTEGER, denim_demons VARCHAR)"}, {"answer": "SELECT sake_tuyas FROM table_29619494_2 WHERE denim_demons = \"4th\"", "question": "What place did the Sake Tuyas come in when the Denim Demons were 4th?", "context": "CREATE TABLE table_29619494_2 (sake_tuyas VARCHAR, denim_demons VARCHAR)"}, {"answer": "SELECT apocalypstix FROM table_29619494_2 WHERE denim_demons = \"2nd\"", "question": "List all the places that the Apocalypstix occupied when the Denim Demons were 2nd.", "context": "CREATE TABLE table_29619494_2 (apocalypstix VARCHAR, denim_demons VARCHAR)"}, {"answer": "SELECT mls_team FROM table_29626583_3 WHERE position = \"Midfielder\" AND player = \"Konrad Warzycha\"", "question": "Which team has a midfielder of konrad warzycha?", "context": "CREATE TABLE table_29626583_3 (mls_team VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_29626583_3 WHERE mls_team = \"Toronto FC\" AND affiliation = \"LDU Quito\"", "question": "What is the pick number for the team toronto fc and affiliation is ldu quito?", "context": "CREATE TABLE table_29626583_3 (pick__number INTEGER, mls_team VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT mls_team FROM table_29626583_3 WHERE player = \"Jason Herrick\"", "question": "Which MLS team picked player Jason Herrick?", "context": "CREATE TABLE table_29626583_3 (mls_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_29626583_3 WHERE mls_team = \"New York Red Bulls\"", "question": "What position did the team new york red bulls pick?", "context": "CREATE TABLE table_29626583_3 (position VARCHAR, mls_team VARCHAR)"}, {"answer": "SELECT position FROM table_29626583_3 WHERE affiliation = \"LDU Quito\"", "question": "What was the position when the affiliation is ldu quito?", "context": "CREATE TABLE table_29626583_3 (position VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT COUNT(peak) FROM table_29633639_1 WHERE chinese_title = \"\u842c\u51f0\u4e4b\u738b\"", "question": "how many peaks where for the chinese episode named \u842c\u51f0\u4e4b\u738b", "context": "CREATE TABLE table_29633639_1 (peak VARCHAR, chinese_title VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_29633639_1 WHERE chinese_title = \"\u9b5a\u8e8d\u5728\u82b1\u898b\"", "question": "what is the number of the average of the drama titled  \u9b5a\u8e8d\u5728\u82b1\u898b", "context": "CREATE TABLE table_29633639_1 (average INTEGER, chinese_title VARCHAR)"}, {"answer": "SELECT hk_viewers FROM table_29633639_1 WHERE english_title = \"A Great Way to Care\"", "question": "how many milion of viewers where in the episode called in english \"is a great way to care\"", "context": "CREATE TABLE table_29633639_1 (hk_viewers VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT premiere FROM table_29633639_1 WHERE peak = 34", "question": "what is the number of the premiere for the 34 peak", "context": "CREATE TABLE table_29633639_1 (premiere VARCHAR, peak VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_29679510_2", "question": "In what week was the first game played?", "context": "CREATE TABLE table_29679510_2 (week INTEGER)"}, {"answer": "SELECT COUNT(object_date) FROM table_29635868_1 WHERE origin = \"Samoa\"", "question": "How many object dates have origin in Samoa?", "context": "CREATE TABLE table_29635868_1 (object_date VARCHAR, origin VARCHAR)"}, {"answer": "SELECT COUNT(origin) FROM table_29635868_1 WHERE title_ & _link_to_episode_on_youtube = \"Samoan Cricket Bats\"", "question": "How many origins have titles of Samoan cricket bats?", "context": "CREATE TABLE table_29635868_1 (origin VARCHAR, title_ VARCHAR, _link_to_episode_on_youtube VARCHAR)"}, {"answer": "SELECT COUNT(object_date) FROM table_29635868_1 WHERE episode_number = 16", "question": "How many object dates does episode #16 have?", "context": "CREATE TABLE table_29635868_1 (object_date VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT participants_recipients FROM table_29644931_1 WHERE film_festival = \"61st Berlin International film_festival\"", "question": "Which films participated in the 61st Berlin international film festival?", "context": "CREATE TABLE table_29644931_1 (participants_recipients VARCHAR, film_festival VARCHAR)"}, {"answer": "SELECT result FROM table_29644931_1 WHERE category = \"Opening Night Film\"", "question": "What was the result when competing in the Opening NIght Film category?", "context": "CREATE TABLE table_29644931_1 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT participants_recipients FROM table_29644931_1 WHERE film_festival = \"30th Hawaii International film_festival\"", "question": "Which films participated in the 30th Hawaii International Film Festival?", "context": "CREATE TABLE table_29644931_1 (participants_recipients VARCHAR, film_festival VARCHAR)"}, {"answer": "SELECT participants_recipients FROM table_29644931_1 WHERE category = \"Best Newcomer\"", "question": "Which films participated when the category was Best Newcomer?", "context": "CREATE TABLE table_29644931_1 (participants_recipients VARCHAR, category VARCHAR)"}, {"answer": "SELECT season FROM table_29697744_1 WHERE position = \"5th\"", "question": "in which year the season was in 5th position", "context": "CREATE TABLE table_29697744_1 (season VARCHAR, position VARCHAR)"}, {"answer": "SELECT movements FROM table_29697744_1 WHERE position = \"7th\"", "question": "what is the name of the movement in the 7th position", "context": "CREATE TABLE table_29697744_1 (movements VARCHAR, position VARCHAR)"}, {"answer": "SELECT level FROM table_29697744_1 WHERE position = \"7th\"", "question": "what is the name of the level for the 7th position", "context": "CREATE TABLE table_29697744_1 (level VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(section) FROM table_29697744_1 WHERE season = \"2008\"", "question": "how many sections are for the season of 2008", "context": "CREATE TABLE table_29697744_1 (section VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_29697744_1 WHERE position = \"9th\"", "question": "in what year the position was the 9th", "context": "CREATE TABLE table_29697744_1 (season VARCHAR, position VARCHAR)"}, {"answer": "SELECT eliminated AS by FROM table_29692554_2 WHERE time = \"18:48\"", "question": "Who was eliminated a person at 18:48?", "context": "CREATE TABLE table_29692554_2 (eliminated VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(entered) FROM table_29692554_2 WHERE time = \"21:09\"", "question": "How many entries are shown for entered at 21:09?", "context": "CREATE TABLE table_29692554_2 (entered VARCHAR, time VARCHAR)"}, {"answer": "SELECT wrestler FROM table_29692554_2 WHERE method_of_elimination = \"Pinned after a spear\" AND time = \"22:50\"", "question": "Who was eliminated by being pinned after a spear at  22:50?", "context": "CREATE TABLE table_29692554_2 (wrestler VARCHAR, method_of_elimination VARCHAR, time VARCHAR)"}, {"answer": "SELECT eliminated FROM table_29692554_2 WHERE time = \"22:50\"", "question": "What number was the person eliminated at 22:50?", "context": "CREATE TABLE table_29692554_2 (eliminated VARCHAR, time VARCHAR)"}, {"answer": "SELECT circuit FROM table_29686983_1 WHERE fastest_lap = \"Sam Lowes\" AND winning_rider = \"Luca Scassa\"", "question": "what is the circuit where the fastest lap is sam lowes and the winning rider is luca scassa?", "context": "CREATE TABLE table_29686983_1 (circuit VARCHAR, fastest_lap VARCHAR, winning_rider VARCHAR)"}, {"answer": "SELECT round FROM table_29686983_1 WHERE fastest_lap = \"Fabien Foret\" AND pole_position = \"David Salom\"", "question": "what is the round wher the fabien foret had the fastest lap and david salom was the pole position?", "context": "CREATE TABLE table_29686983_1 (round VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_29686983_1 WHERE round = 1", "question": "who had the fastest lap for round 1?", "context": "CREATE TABLE table_29686983_1 (fastest_lap VARCHAR, round VARCHAR)"}, {"answer": "SELECT pole_position FROM table_29686983_1 WHERE country = \"France\"", "question": "what is the pole position for france?", "context": "CREATE TABLE table_29686983_1 (pole_position VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_29686983_1 WHERE pole_position = \"Fabien Foret\"", "question": "what is the maximum round and fabien foret had the pole position?", "context": "CREATE TABLE table_29686983_1 (round INTEGER, pole_position VARCHAR)"}, {"answer": "SELECT COUNT(ave_attendance) FROM table_2970978_1 WHERE ___ave_on_prev_season = \"+645\"", "question": "How many values of attendance occur when ave. on previous season is +645?", "context": "CREATE TABLE table_2970978_1 (ave_attendance VARCHAR, ___ave_on_prev_season VARCHAR)"}, {"answer": "SELECT MIN(ave_attendance) FROM table_2970978_1 WHERE ___ave_on_prev_season = \"-459\"", "question": "What is the lowest value of average attendance when average on previous season is -459?", "context": "CREATE TABLE table_2970978_1 (ave_attendance INTEGER, ___ave_on_prev_season VARCHAR)"}, {"answer": "SELECT MIN(ave_attendance) FROM table_2970978_1 WHERE ___ave_on_prev_season = \"+644\"", "question": "What is the least value for average attendance when average on previous season is +644?", "context": "CREATE TABLE table_2970978_1 (ave_attendance INTEGER, ___ave_on_prev_season VARCHAR)"}, {"answer": "SELECT ___ave_on_prev_season FROM table_2970978_1 WHERE competition = \"League Two\"", "question": "What is every value for average on previous season if the competition is league two?", "context": "CREATE TABLE table_2970978_1 (___ave_on_prev_season VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MIN(w) FROM table_29704430_1", "question": "What is the least w?", "context": "CREATE TABLE table_29704430_1 (w INTEGER)"}, {"answer": "SELECT MAX(stolen_ends) FROM table_29704430_1", "question": "What is the most stolen ends?", "context": "CREATE TABLE table_29704430_1 (stolen_ends INTEGER)"}, {"answer": "SELECT MIN(total_appearances) FROM table_29701419_2 WHERE total_goals = 289", "question": "What is the total appearances when the total goals is 289?", "context": "CREATE TABLE table_29701419_2 (total_appearances INTEGER, total_goals VARCHAR)"}, {"answer": "SELECT MAX(league_goals) FROM table_29701419_2 WHERE total_goals = 179", "question": "What is the league goals when the total goals is 179?", "context": "CREATE TABLE table_29701419_2 (league_goals INTEGER, total_goals VARCHAR)"}, {"answer": "SELECT COUNT(total_appearances) FROM table_29701419_2 WHERE league_appearances = 192", "question": "How many  total appearances are there when the league appearances is 192?", "context": "CREATE TABLE table_29701419_2 (total_appearances VARCHAR, league_appearances VARCHAR)"}, {"answer": "SELECT away_team FROM table_29728596_2 WHERE competition = \"1st ``Republic of Srpska Football Day``\" AND home_team = \"U 14 Republic of Srpska\"", "question": "Who were the away teams when the competition was the 1st ``republic of srpska football day`` and the home team was u 14 republic of srpska?", "context": "CREATE TABLE table_29728596_2 (away_team VARCHAR, competition VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT competition FROM table_29728596_2 WHERE away_team = \"FK Kozara Gradiska\"", "question": "What were the competitions when the away team was fk kozara gradiska?", "context": "CREATE TABLE table_29728596_2 (competition VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT name FROM table_29743928_3 WHERE country = \"DR Congo\"", "question": "What are the names of players from the dr congo?", "context": "CREATE TABLE table_29743928_3 (name VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(assists) FROM table_29743928_3 WHERE country = \"Panama\"", "question": "How many is the high assist total for players from panama?", "context": "CREATE TABLE table_29743928_3 (assists INTEGER, country VARCHAR)"}, {"answer": "SELECT result FROM table_29728596_1 WHERE away_team = \"FK Rudar Ugljevik\"", "question": "What was the result of the home match against FK Rudar Ugljevik?", "context": "CREATE TABLE table_29728596_1 (result VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT location FROM table_29728596_1 WHERE away_team = \"FK Rudar Ugljevik\"", "question": "Where was the home match against FK Rudar Ugljevik played?", "context": "CREATE TABLE table_29728596_1 (location VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT la_roche FROM table_29728787_1 WHERE year = \"1971\"", "question": "When 1971 is the year what is the la roche?", "context": "CREATE TABLE table_29728787_1 (la_roche VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(clairon) FROM table_29728787_1 WHERE label = \"Deutsche Grammophon\"", "question": "When deutsche grammophon is the label how many clairons are there?", "context": "CREATE TABLE table_29728787_1 (clairon VARCHAR, label VARCHAR)"}, {"answer": "SELECT conductor FROM table_29728787_1 WHERE count = \"Hermann Uhde\"", "question": "When hermann uhde is the count who is the conductor?", "context": "CREATE TABLE table_29728787_1 (conductor VARCHAR, count VARCHAR)"}, {"answer": "SELECT conductor FROM table_29728787_1 WHERE olivier = \"Dietrich Fischer-Dieskau\"", "question": "When dietrich fischer-dieskau is the olivier who is the conductor?", "context": "CREATE TABLE table_29728787_1 (conductor VARCHAR, olivier VARCHAR)"}, {"answer": "SELECT olivier FROM table_29728787_1 WHERE la_roche = \"Karl Ridderbusch\"", "question": "When karl ridderbusch is the la roche who is the olivier?", "context": "CREATE TABLE table_29728787_1 (olivier VARCHAR, la_roche VARCHAR)"}, {"answer": "SELECT year FROM table_29753553_1 WHERE sar_no = 874", "question": "For what year is the SAR no. 874?", "context": "CREATE TABLE table_29753553_1 (year VARCHAR, sar_no VARCHAR)"}, {"answer": "SELECT written_by FROM table_29747178_2 WHERE directed_by = \"Bob Berlinger\"", "question": "Who is the writer when the director is bob berlinger?", "context": "CREATE TABLE table_29747178_2 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_29747178_2 WHERE directed_by = \"Andy Wolk\"", "question": "How many millions of U.S viewers are there when the director is andy wolk?", "context": "CREATE TABLE table_29747178_2 (us_viewers__million_ VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT series__number FROM table_29747178_2 WHERE directed_by = \"John Showalter\"", "question": "What is the series # when the director is john showalter?", "context": "CREATE TABLE table_29747178_2 (series__number VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_29747178_2 WHERE series__number = 7", "question": "What is the title when the series # is 7?", "context": "CREATE TABLE table_29747178_2 (title VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT MAX(episode) FROM table_29773532_21 WHERE share_16_39 = \"23,22%\"", "question": "Which episode had a share 16-19 of 23,22%?", "context": "CREATE TABLE table_29773532_21 (episode INTEGER, share_16_39 VARCHAR)"}, {"answer": "SELECT official_rating_16_39 FROM table_29773532_21 WHERE episode = 9", "question": "What was the official rating 16-39 of episode 9?", "context": "CREATE TABLE table_29773532_21 (official_rating_16_39 VARCHAR, episode VARCHAR)"}, {"answer": "SELECT intro_date FROM table_29778616_1 WHERE interface = \"PCI\"", "question": "What is the intro date for the interface that equals pci?", "context": "CREATE TABLE table_29778616_1 (intro_date VARCHAR, interface VARCHAR)"}, {"answer": "SELECT intro_date FROM table_29778616_1 WHERE throughput = \"16 Mbit/s\"", "question": "What is the intro date for the throughput of 16 mbit/s?", "context": "CREATE TABLE table_29778616_1 (intro_date VARCHAR, throughput VARCHAR)"}, {"answer": "SELECT COUNT(intro_date) FROM table_29778616_1 WHERE price = \"686\u20ac\"", "question": "How many intro dates have the price of 686\u20ac?", "context": "CREATE TABLE table_29778616_1 (intro_date VARCHAR, price VARCHAR)"}, {"answer": "SELECT price FROM table_29778616_1 WHERE manufacturer = \"LETech\"", "question": "What is the price for the manufacturer LETech?", "context": "CREATE TABLE table_29778616_1 (price VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT MIN(price__usd_) FROM table_29778616_1 WHERE model = \"PQ32MU\"", "question": "What is the price (usd) for the model pq32mu?", "context": "CREATE TABLE table_29778616_1 (price__usd_ INTEGER, model VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_29778616_1 WHERE intro_date = \"2006\" AND throughput = \"4 Mbit/s\"", "question": "Who is the manufacturer whose intro date is 2006 and their throughput is 4 mbit/s?", "context": "CREATE TABLE table_29778616_1 (manufacturer VARCHAR, intro_date VARCHAR, throughput VARCHAR)"}, {"answer": "SELECT lok_sabha FROM table_29785324_5 WHERE vidhan_sabha_constituency = \"Karakat (Vidhan Sabha constituency)\"", "question": "What was the Lok Sabha in Karakat (Vidhan Sabha Constituency)?", "context": "CREATE TABLE table_29785324_5 (lok_sabha VARCHAR, vidhan_sabha_constituency VARCHAR)"}, {"answer": "SELECT MIN(constituency_no) FROM table_29785324_5 WHERE vidhan_sabha_constituency = \"Kargahar (Vidhan Sabha constituency)\"", "question": "How many were in the Kargahar (vidhan sabha constituency)?", "context": "CREATE TABLE table_29785324_5 (constituency_no INTEGER, vidhan_sabha_constituency VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_29785324_5 WHERE constituency_no = 213", "question": "What district has 213 constituents?", "context": "CREATE TABLE table_29785324_5 (district VARCHAR, constituency_no VARCHAR)"}, {"answer": "SELECT lok_sabha FROM table_29785324_5 WHERE constituency_no = 216", "question": "How many Lok Sabha are in the one with 216 constituents?", "context": "CREATE TABLE table_29785324_5 (lok_sabha VARCHAR, constituency_no VARCHAR)"}, {"answer": "SELECT MAX(rank_2012) FROM table_29789_3 WHERE international_tourism_expenditure_2011 = \"$51.0 billion\"", "question": "How many countries spent at least $51.0 billion in international tourism in 2012?", "context": "CREATE TABLE table_29789_3 (rank_2012 INTEGER, international_tourism_expenditure_2011 VARCHAR)"}, {"answer": "SELECT COUNT(_percentage_change) FROM table_29789_3 WHERE international_tourism_expenditure_2012 = \"$83.7 billion\"", "question": "How many countries spent $83.7 billion on international tourism in 2012?", "context": "CREATE TABLE table_29789_3 (_percentage_change VARCHAR, international_tourism_expenditure_2012 VARCHAR)"}, {"answer": "SELECT _percentage_change FROM table_29789_3 WHERE international_tourism_expenditure_2011 = \"$85.9 billion\"", "question": "What was the percentage increase in spending on international tourism from 2011 to 2012 of the country that spent $85.9 billion in 2011?", "context": "CREATE TABLE table_29789_3 (_percentage_change VARCHAR, international_tourism_expenditure_2011 VARCHAR)"}, {"answer": "SELECT country FROM table_29789_3 WHERE _percentage_change = \"5.7\"", "question": "Which country saw a 5.7% increase in spending on international tourism between 2011 and 2012?", "context": "CREATE TABLE table_29789_3 (country VARCHAR, _percentage_change VARCHAR)"}, {"answer": "SELECT MAX(other_apps) FROM table_2979789_1 WHERE league_goals = 1", "question": "Name the most other apps for league goals being 1", "context": "CREATE TABLE table_2979789_1 (other_apps INTEGER, league_goals VARCHAR)"}, {"answer": "SELECT MAX(fa_cup_apps) FROM table_2979789_1 WHERE league_apps = 27", "question": "Name the most fa cup apps for league apps being 27", "context": "CREATE TABLE table_2979789_1 (fa_cup_apps INTEGER, league_apps VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_2979789_1 WHERE fa_cup_apps = 9", "question": "Name the total number of division for fa cups being 9", "context": "CREATE TABLE table_2979789_1 (division VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT international_tourist_arrivals__2012_ FROM table_29789_1 WHERE country = \"Russia\"", "question": "How many international tourists visited Russia in 2012?", "context": "CREATE TABLE table_29789_1 (international_tourist_arrivals__2012_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT series_premiere FROM table_29799700_2 WHERE alternante_title = \"Mi\u0142o\u015b\u0107 i przeznaczenie\"", "question": "What was the premiere date for the episode whose alternate title was mi\u0142o\u015b\u0107 i przeznaczenie?", "context": "CREATE TABLE table_29799700_2 (series_premiere VARCHAR, alternante_title VARCHAR)"}, {"answer": "SELECT tv_network_s_ FROM table_29799700_2 WHERE series_finale = \"May 7, 2012\"", "question": "Which TV network had its series finale on May 7, 2012?", "context": "CREATE TABLE table_29799700_2 (tv_network_s_ VARCHAR, series_finale VARCHAR)"}, {"answer": "SELECT series_premiere FROM table_29799700_2 WHERE tv_network_s_ = \"TV3\"", "question": "What was the date of the series premiere whose TV network was TV3?", "context": "CREATE TABLE table_29799700_2 (series_premiere VARCHAR, tv_network_s_ VARCHAR)"}, {"answer": "SELECT tv_network_s_ FROM table_29799700_2 WHERE country = \"Iran\"", "question": "Which TV network has a country of origin of Iran?", "context": "CREATE TABLE table_29799700_2 (tv_network_s_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT series_finale FROM table_29799700_2 WHERE country = \"Peru\"", "question": "What was the date of the series finale for Peru?", "context": "CREATE TABLE table_29799700_2 (series_finale VARCHAR, country VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_29803475_2 WHERE us_viewers__million_ = \"0.23\"", "question": "What is every original air date with U.S. viewers of 0.23 million?", "context": "CREATE TABLE table_29803475_2 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT MIN(no_in_series) FROM table_29803475_2 WHERE us_viewers__million_ = \"0.23\"", "question": "What is the lowest number in series when U.S. viewers is 0.23 million?", "context": "CREATE TABLE table_29803475_2 (no_in_series INTEGER, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT total_apps FROM table_2980024_1 WHERE league_goals = 0", "question": "What were the total apps for Dunne in season where he had 0 league goals? ", "context": "CREATE TABLE table_2980024_1 (total_apps VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT league_goals FROM table_2980024_1 WHERE league_apps = 2", "question": "How many league goals did Dunne have in the season where he had 2 league apps?", "context": "CREATE TABLE table_2980024_1 (league_goals VARCHAR, league_apps VARCHAR)"}, {"answer": "SELECT other_goals FROM table_2980024_1 WHERE league_goals = 1", "question": "How many other goals did Dunne have in the season where he had 1 league goal?", "context": "CREATE TABLE table_2980024_1 (other_goals VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT record FROM table_29846807_5 WHERE team = \"Boston University\"", "question": "When boston university is the team what is the record?", "context": "CREATE TABLE table_29846807_5 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT subject FROM table_29842201_1 WHERE highest_mark = 79", "question": "What is the subject when the highest mark is 79?", "context": "CREATE TABLE table_29842201_1 (subject VARCHAR, highest_mark VARCHAR)"}, {"answer": "SELECT COUNT(lowest_mark) FROM table_29842201_1 WHERE _percentage_pass = 76", "question": "How many lowest mark entries are there when % passed is 76?", "context": "CREATE TABLE table_29842201_1 (lowest_mark VARCHAR, _percentage_pass VARCHAR)"}, {"answer": "SELECT lmp2_winning_team FROM table_29826467_2 WHERE flm_winning_team = \"No. 99 JMB Racing\"", "question": "if the flm winning team is no. 99 jmb racing what is the name of the  lmp2 winning team ", "context": "CREATE TABLE table_29826467_2 (lmp2_winning_team VARCHAR, flm_winning_team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_29846807_4 WHERE team = \"Mount St. Mary's\"", "question": "Who is every high rebound when the team is Mount St. Mary's?", "context": "CREATE TABLE table_29846807_4 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT position FROM table_29857115_4 WHERE singer = \"Serena Abrami\"", "question": "What position was serena abrami in?", "context": "CREATE TABLE table_29857115_4 (position VARCHAR, singer VARCHAR)"}, {"answer": "SELECT 5 AS th_evening FROM table_29857115_4 WHERE singer = \"Gabriella Ferrone\"", "question": "What was gabriella ferrone's result on the 5th evening?", "context": "CREATE TABLE table_29857115_4 (singer VARCHAR)"}, {"answer": "SELECT MAX(_number) FROM table_2985714_2", "question": "What is the maximum overall number?", "context": "CREATE TABLE table_2985714_2 (_number INTEGER)"}, {"answer": "SELECT MIN(al_wehdat_wins) FROM table_2985714_2 WHERE _number = 2", "question": "When the number is 2 what is the lowest amount of al-wedhat wins?", "context": "CREATE TABLE table_2985714_2 (al_wehdat_wins INTEGER, _number VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_2985714_2 WHERE tournament = \"Jordan FA Cup\"", "question": "When jordan fa cup is the tournament how many draws?", "context": "CREATE TABLE table_2985714_2 (draws VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MAX(area__km\u00b2_) FROM table_298550_1 WHERE capital = \"San Juan\"", "question": "What is the highest value of area when capital is San Juan?", "context": "CREATE TABLE table_298550_1 (area__km\u00b2_ INTEGER, capital VARCHAR)"}, {"answer": "SELECT COUNT(area__km\u00b2_) FROM table_298550_1 WHERE population_density__per_km\u00b2_ = \"207.9\"", "question": "How many entries for area correspond to a population density of 207.9?", "context": "CREATE TABLE table_298550_1 (area__km\u00b2_ VARCHAR, population_density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_298550_1 WHERE capital = \"Port-au-Prince\"", "question": "What is every entry for area if capital is Port-au-Prince?", "context": "CREATE TABLE table_298550_1 (area__km\u00b2_ VARCHAR, capital VARCHAR)"}, {"answer": "SELECT country_with_flag FROM table_298550_1 WHERE population__1_july_2005_est_ = 11346670", "question": "What is every country with a flag with population of 11346670?", "context": "CREATE TABLE table_298550_1 (country_with_flag VARCHAR, population__1_july_2005_est_ VARCHAR)"}, {"answer": "SELECT MAX(population__1_july_2005_est_) FROM table_298550_1 WHERE area__km\u00b2_ = 9104", "question": "What is the highest value for population when area is 9104?", "context": "CREATE TABLE table_298550_1 (population__1_july_2005_est_ INTEGER, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_2985987_2 WHERE race = \"Victoria Derby\"", "question": "What many times was the victoria derby raced?", "context": "CREATE TABLE table_2985987_2 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT weight__kg_ FROM table_2985987_2 WHERE race = \"Autumn Classic\"", "question": "What is the autumn classic weight?", "context": "CREATE TABLE table_2985987_2 (weight__kg_ VARCHAR, race VARCHAR)"}, {"answer": "SELECT directed_by FROM table_29897962_1 WHERE us_viewers__million_ = \"3.55\"", "question": "Who directed the episode that had 3.55 million viewers?", "context": "CREATE TABLE table_29897962_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT dimensions FROM table_298883_5 WHERE value = \"\u20a9200\"", "question": "What are the dimensions of the coin worth \u20a9200?", "context": "CREATE TABLE table_298883_5 (dimensions VARCHAR, value VARCHAR)"}, {"answer": "SELECT COUNT(date_of_issue) FROM table_298883_5 WHERE obverse = \"Kumsusan Memorial Palace\"", "question": "How many different dates of issue are the for the coin with kumsusan memorial palace on the obverse?", "context": "CREATE TABLE table_298883_5 (date_of_issue VARCHAR, obverse VARCHAR)"}, {"answer": "SELECT dimensions FROM table_298883_5 WHERE obverse = \"Kim Il-sung\" AND date_of_issue = \"1992\"", "question": "What are the dimensions of the coin issued in 1992 with kim il-sung on the obverse?", "context": "CREATE TABLE table_298883_5 (dimensions VARCHAR, obverse VARCHAR, date_of_issue VARCHAR)"}, {"answer": "SELECT reverse FROM table_298883_5 WHERE value = \"\u20a9500\"", "question": "What is on the reverse side of the \u20a9500 coin?", "context": "CREATE TABLE table_298883_5 (reverse VARCHAR, value VARCHAR)"}, {"answer": "SELECT reverse FROM table_298883_5 WHERE value = \"\u20a9100\"", "question": "What is on the reverse side of the \u20a9100 coin?", "context": "CREATE TABLE table_298883_5 (reverse VARCHAR, value VARCHAR)"}, {"answer": "SELECT dimensions FROM table_298883_5 WHERE reverse = \"Western sea barrage and locks at Taedong Gang\"", "question": "What are the dimensions of the coin with western sea barrage and locks at taedong gang on the reverse side?", "context": "CREATE TABLE table_298883_5 (dimensions VARCHAR, reverse VARCHAR)"}, {"answer": "SELECT name__namesake_ FROM table_29860752_11", "question": "What are all the name(namesakes) for the entire chart?", "context": "CREATE TABLE table_29860752_11 (name__namesake_ VARCHAR)"}, {"answer": "SELECT tv_season FROM table_299121_2 WHERE season = \"1st\"", "question": "What TV season was the 1st season?", "context": "CREATE TABLE table_299121_2 (tv_season VARCHAR, season VARCHAR)"}, {"answer": "SELECT season AS premiere FROM table_299121_2 WHERE season = \"3rd\"", "question": "When was the 3rd season premiere originally aired?", "context": "CREATE TABLE table_299121_2 (season VARCHAR)"}, {"answer": "SELECT ranking FROM table_299121_2 WHERE season = \"2nd\"", "question": "What was the 2nd's season's ranking?", "context": "CREATE TABLE table_299121_2 (ranking VARCHAR, season VARCHAR)"}, {"answer": "SELECT season AS premiere FROM table_299121_2 WHERE viewers__in_millions_ = \"8.4\"", "question": "When did the season premiere that saw 8.4 million viewers first air?", "context": "CREATE TABLE table_299121_2 (season VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT directed_by FROM table_29920800_1 WHERE us_viewers__million_ = \"2.97\"", "question": "Who directed the episode that was watched by 2.97 million U.S. viewers? ", "context": "CREATE TABLE table_29920800_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_29920800_1 WHERE written_by = \"Liz Feldman\"", "question": "What is the original air date of the episode written by Liz Feldman?", "context": "CREATE TABLE table_29920800_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT written_by FROM table_29920800_1 WHERE us_viewers__million_ = \"2.97\"", "question": "Who wrote the episode that was watched by 2.97 million U.S. viewers? ", "context": "CREATE TABLE table_29920800_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)"}, {"answer": "SELECT us_viewers__million_ FROM table_29920800_1 WHERE written_by = \"Liz Feldman\"", "question": "How many millions of U.S viewers watched the episode written by Liz Feldman? ", "context": "CREATE TABLE table_29920800_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT attendance FROM table_299271_2 WHERE competition = \"UEFA Champions League\"", "question": "How many people attended the uefa champions league competition?", "context": "CREATE TABLE table_299271_2 (attendance VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MIN(miss_international) FROM table_29942205_1 WHERE rank = 1", "question": "How many women has reached the title of Miss International representing the country ranked as number 1?", "context": "CREATE TABLE table_29942205_1 (miss_international INTEGER, rank VARCHAR)"}, {"answer": "SELECT 1 AS st_runner_up FROM table_29942205_1 WHERE country_territory = \"Philippines\"", "question": "How many women has got the first runner-up position in representation of Philippines?", "context": "CREATE TABLE table_29942205_1 (country_territory VARCHAR)"}, {"answer": "SELECT MIN(miss_international) FROM table_29942205_1", "question": "What is the lowest value in the miss international column?", "context": "CREATE TABLE table_29942205_1 (miss_international INTEGER)"}, {"answer": "SELECT MIN(1 AS st_runner_up) FROM table_29942205_1", "question": "What is the smallest quantity displayed under the title \"first runner-up\"?", "context": "CREATE TABLE table_29942205_1 (Id VARCHAR)"}, {"answer": "SELECT MAX(3 AS rd_runner_up) FROM table_29942205_1 WHERE country_territory = \"Uruguay\"", "question": "How many women from Uruguay has become third runner-up in this pageant?", "context": "CREATE TABLE table_29942205_1 (country_territory VARCHAR)"}, {"answer": "SELECT year FROM table_29970488_2 WHERE _number = 10", "question": "What year was player number 10?", "context": "CREATE TABLE table_29970488_2 (year VARCHAR, _number VARCHAR)"}, {"answer": "SELECT COUNT(hometown) FROM table_29970488_2 WHERE previous_school = \"Charis Prep\"", "question": "How many hometowns are there when Charis Prep was the previous school?", "context": "CREATE TABLE table_29970488_2 (hometown VARCHAR, previous_school VARCHAR)"}, {"answer": "SELECT COUNT(weight___lb__) FROM table_29970488_2 WHERE hometown = \"Pittsburgh, PA\"", "question": "How many different items appear in the weight column when Pittsburgh, PA is the hometown?", "context": "CREATE TABLE table_29970488_2 (weight___lb__ VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT episode FROM table_29960651_5 WHERE no_for_season = 3", "question": "Which episode is number 3 in the season?", "context": "CREATE TABLE table_29960651_5 (episode VARCHAR, no_for_season VARCHAR)"}, {"answer": "SELECT episode FROM table_29960651_5 WHERE no_for_series = 45", "question": "What is the episode name for series number 45?", "context": "CREATE TABLE table_29960651_5 (episode VARCHAR, no_for_series VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_30008638_1", "question": "What is the highest total for any country/territory? ", "context": "CREATE TABLE table_30008638_1 (total INTEGER)"}, {"answer": "SELECT semifinalists FROM table_30008638_1 WHERE country_territory = \"Romania\"", "question": "How many semifinalists has Romania had? ", "context": "CREATE TABLE table_30008638_1 (semifinalists VARCHAR, country_territory VARCHAR)"}, {"answer": "SELECT MAX(miss_water) FROM table_30008638_1 WHERE country_territory = \"Canada\"", "question": "How many Miss Waters has Canada had?", "context": "CREATE TABLE table_30008638_1 (miss_water INTEGER, country_territory VARCHAR)"}, {"answer": "SELECT MAX(miss_fire) FROM table_30008638_1", "question": "What is the most Miss Fires any country has had?", "context": "CREATE TABLE table_30008638_1 (miss_fire INTEGER)"}, {"answer": "SELECT MIN(miss_air) FROM table_30008638_1", "question": "What is the least amount of Miss Airs any country has had?", "context": "CREATE TABLE table_30008638_1 (miss_air INTEGER)"}, {"answer": "SELECT high_assists FROM table_29982187_4 WHERE date = \"January 29\"", "question": "what re the high assists for january 29?", "context": "CREATE TABLE table_29982187_4 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_29997127_4 WHERE date = \"April 21\"", "question": "What team did the suns play on April 21? ", "context": "CREATE TABLE table_29997127_4 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_29997127_4 WHERE location_attendance = \"America West Arena 18,756\"", "question": "In what game was the attendance at the America West Arena 18,756?", "context": "CREATE TABLE table_29997127_4 (game INTEGER, location_attendance VARCHAR)"}, {"answer": "SELECT official_name FROM table_300283_1 WHERE name_in_basque = \"Bilar\"", "question": "What is the official name of the municipality whose name in Basque is Bilar?", "context": "CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_basque VARCHAR)"}, {"answer": "SELECT official_name FROM table_300283_1 WHERE name_in_spanish = \"Crip\u00e1n\"", "question": "What is the official name of the municipality whose name in Spanish is Crip\u00e1n?", "context": "CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_spanish VARCHAR)"}, {"answer": "SELECT official_name FROM table_300283_1 WHERE name_in_spanish = \"Vitoria\"", "question": "What is the official name of the municipality whose name in Spanish is Vitoria? ", "context": "CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_spanish VARCHAR)"}, {"answer": "SELECT name_in_basque FROM table_300283_1 WHERE official_name = \"Kuartango\"", "question": "What is the name in Basque of the municipality whose official name is Kuartango? ", "context": "CREATE TABLE table_300283_1 (name_in_basque VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT MAX(ine_code) FROM table_300283_1 WHERE official_name = \"Berantevilla\"", "question": "What is the INE code of the municipality whose official name is Berantevilla? ", "context": "CREATE TABLE table_300283_1 (ine_code INTEGER, official_name VARCHAR)"}, {"answer": "SELECT reference FROM table_30011_2 WHERE type_and_usage = \"Germanium small-signal RF transistor\"", "question": "What is every reference for type and usage of Germanium small-signal RF transistor?", "context": "CREATE TABLE table_30011_2 (reference VARCHAR, type_and_usage VARCHAR)"}, {"answer": "SELECT equivalent FROM table_30011_2 WHERE example = \"ASY28\"", "question": "What is every equivalent for the example of asy28?", "context": "CREATE TABLE table_30011_2 (equivalent VARCHAR, example VARCHAR)"}, {"answer": "SELECT reference FROM table_30011_2 WHERE example = \"AF117\"", "question": "What is every reference for the example of AF117?", "context": "CREATE TABLE table_30011_2 (reference VARCHAR, example VARCHAR)"}, {"answer": "SELECT prefix_class FROM table_30011_2 WHERE equivalent = \"NTE160\"", "question": "What is every prefix class for the equivalent of NTE160?", "context": "CREATE TABLE table_30011_2 (prefix_class VARCHAR, equivalent VARCHAR)"}, {"answer": "SELECT prefix_class FROM table_30011_2 WHERE equivalent = \"NTE101\"", "question": "What is every prefix class for the equivalent of NTE101?", "context": "CREATE TABLE table_30011_2 (prefix_class VARCHAR, equivalent VARCHAR)"}, {"answer": "SELECT example FROM table_30011_2 WHERE equivalent = \"NTE160\"", "question": "What is every example for the equivalent of NTE160?", "context": "CREATE TABLE table_30011_2 (example VARCHAR, equivalent VARCHAR)"}, {"answer": "SELECT manhunt_international FROM table_30018460_1 WHERE country_territory = \"France\"", "question": "How many manhunt beauty contets have been held in france?", "context": "CREATE TABLE table_30018460_1 (manhunt_international VARCHAR, country_territory VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_30018460_1 WHERE country_territory = \"Peru\"", "question": "How many semifinalists where from peru?", "context": "CREATE TABLE table_30018460_1 (semifinalists VARCHAR, country_territory VARCHAR)"}, {"answer": "SELECT 3 AS rd_runner_up FROM table_30018460_1 WHERE country_territory = \"Croatia\"", "question": "How many first place participants where from croatia?", "context": "CREATE TABLE table_30018460_1 (country_territory VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_30018460_1", "question": "What is the minimum sum?", "context": "CREATE TABLE table_30018460_1 (total INTEGER)"}, {"answer": "SELECT MIN(manhunt_international) FROM table_30018460_1", "question": "What is the minimum manhunt beauty  contest?", "context": "CREATE TABLE table_30018460_1 (manhunt_international INTEGER)"}, {"answer": "SELECT COUNT(written_by) FROM table_30030227_1 WHERE directed_by = \"Arvin Brown\"", "question": "How many people wrote the episode directed by Arvin Brown?", "context": "CREATE TABLE table_30030227_1 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT sonnet FROM table_3002894_4 WHERE model = \"Included RAM (MiB)\"", "question": "When included ram (mib) is the model what is the sonnet?", "context": "CREATE TABLE table_3002894_4 (sonnet VARCHAR, model VARCHAR)"}, {"answer": "SELECT apple FROM table_3002894_4 WHERE sonnet = \"4 MB\"", "question": "When 4 mb is the sonnet what is the apple?", "context": "CREATE TABLE table_3002894_4 (apple VARCHAR, sonnet VARCHAR)"}, {"answer": "SELECT sonnet FROM table_3002894_4 WHERE nupowr_117 = \"0,4, or 8 MB\"", "question": "When 0,4, or 8 mb is the nupowr 117 what is the sonnet?", "context": "CREATE TABLE table_3002894_4 (sonnet VARCHAR, nupowr_117 VARCHAR)"}, {"answer": "SELECT nupowr_167 FROM table_3002894_4 WHERE model = \"Maker\"", "question": "When maker is the model what is the nupowr 167?", "context": "CREATE TABLE table_3002894_4 (nupowr_167 VARCHAR, model VARCHAR)"}, {"answer": "SELECT nupowr_183 FROM table_3002894_4 WHERE nupowr_117 = \"0,4, or 8 MB\"", "question": "When 0,4, or 8 mb is the nupowr 117 what is the nupowr 183?", "context": "CREATE TABLE table_3002894_4 (nupowr_183 VARCHAR, nupowr_117 VARCHAR)"}, {"answer": "SELECT title FROM table_30030477_1 WHERE written_by = \"Glen Mazzara\"", "question": "What is the name of the episode written by glen mazzara?", "context": "CREATE TABLE table_30030477_1 (title VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(title) FROM table_30030477_1 WHERE original_air_date = \"August3,2010\"", "question": "How many titles are there with the original air date of august3,2010?", "context": "CREATE TABLE table_30030477_1 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT directed_by FROM table_30030477_1 WHERE viewers__million_ = \"3.24\"", "question": "Who directed the episdoe veiwed by 3.24  million viewers?", "context": "CREATE TABLE table_30030477_1 (directed_by VARCHAR, viewers__million_ VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_30030477_1 WHERE written_by = \"Adam E. Fierro & Glen Mazzara\"", "question": "What dated the episode written by is adam e. fierro & glen mazzara air?", "context": "CREATE TABLE table_30030477_1 (original_air_date VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT date FROM table_30047613_12 WHERE streak = \"W 2\"", "question": "in which date the strea was w 2", "context": "CREATE TABLE table_30047613_12 (date VARCHAR, streak VARCHAR)"}, {"answer": "SELECT streak FROM table_30047613_12 WHERE date = \"April 13\"", "question": "in april 13 what was the streak", "context": "CREATE TABLE table_30047613_12 (streak VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_30047613_12 WHERE date = \"April 13\"", "question": "in april 13 who made the high rebounds", "context": "CREATE TABLE table_30047613_12 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_30049462_8 WHERE score = \"L 111\u2013126\"", "question": "Name the game for  l 111\u2013126", "context": "CREATE TABLE table_30049462_8 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_30049462_8 WHERE date = \"March 8\"", "question": "Name the score for march 8", "context": "CREATE TABLE table_30049462_8 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_30049462_5 WHERE team = \"Detroit\"", "question": "in the detroit team who made the high points", "context": "CREATE TABLE table_30049462_5 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_30049462_5 WHERE team = \"Philadelphia\"", "question": "what is the score in the philadelphia team ", "context": "CREATE TABLE table_30049462_5 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_30049462_5 WHERE date = \"December 7\"", "question": "in december 7 who made the high points", "context": "CREATE TABLE table_30049462_5 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_30049462_3 WHERE game = 2", "question": "in how many dates the game was 2", "context": "CREATE TABLE table_30049462_3 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_30049462_3 WHERE team = \"Milwaukee\"", "question": "in the milwaukee team who made the high points", "context": "CREATE TABLE table_30049462_3 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_30049462_4 WHERE team = \"Los Angeles\"", "question": "What was the location and it's corresponding attendance during the game against Los Angeles?", "context": "CREATE TABLE table_30049462_4 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT km_from_wellington FROM table_3005450_1 WHERE metlink_code = \"MAST\"", "question": "what is the km from wellington where the metlink code is mast?", "context": "CREATE TABLE table_3005450_1 (km_from_wellington VARCHAR, metlink_code VARCHAR)"}, {"answer": "SELECT station FROM table_3005450_1 WHERE metlink_code = \"MATA\"", "question": "what is the name of the station where the metlink code is mata?", "context": "CREATE TABLE table_3005450_1 (station VARCHAR, metlink_code VARCHAR)"}, {"answer": "SELECT metlink_code FROM table_3005450_1 WHERE opened = \"1908\"", "question": "what is the metlink code that opened in 1908?", "context": "CREATE TABLE table_3005450_1 (metlink_code VARCHAR, opened VARCHAR)"}, {"answer": "SELECT COUNT(team) FROM table_30054758_3 WHERE high_assists = \"Inge \u2013 6\"", "question": "How many teams did inge \u2013 6 have the high assists with?", "context": "CREATE TABLE table_30054758_3 (team VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT record FROM table_30054758_3 WHERE date = \"December 3\"", "question": "What is the record for december 3?", "context": "CREATE TABLE table_30054758_3 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(high_rebounds) FROM table_30054758_3 WHERE high_points = \"Inge \u2013 19\"", "question": "How many entries are there for  high rebounds when high points is inge \u2013 19?", "context": "CREATE TABLE table_30054758_3 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_30054758_3 WHERE location_attendance = \"Phog Allen Fieldhouse , Lawrence, KS (16,300)\"", "question": "How many games are shown when the is  location attendance is phog allen fieldhouse , lawrence, ks (16,300)?", "context": "CREATE TABLE table_30054758_3 (game VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_assists FROM table_30054758_5 WHERE date = \"February 5\"", "question": "how many high assits have a date of february 5?", "context": "CREATE TABLE table_30054758_5 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT fri_26_aug FROM table_30058355_2 WHERE mon_22_aug = \"\u2014\u2014 No Time\"", "question": "What is shown for fri 26 aug when mon 22 aug is \u2014\u2014 no time?", "context": "CREATE TABLE table_30058355_2 (fri_26_aug VARCHAR, mon_22_aug VARCHAR)"}, {"answer": "SELECT sat_20_aug FROM table_30058355_2 WHERE fri_26_aug = \"19' 30.70 116.023mph\"", "question": "What shows for sat 20 aug when fri 26 aug is 19' 30.70 116.023mph?", "context": "CREATE TABLE table_30058355_2 (sat_20_aug VARCHAR, fri_26_aug VARCHAR)"}, {"answer": "SELECT mon_22_aug FROM table_30058355_2 WHERE wed_24_aug = \"19' 56.16 113.553mph\"", "question": "What shows for mon 22 aug whenwed 24 aug is 19' 56.16 113.553mph?", "context": "CREATE TABLE table_30058355_2 (mon_22_aug VARCHAR, wed_24_aug VARCHAR)"}, {"answer": "SELECT thurs_25_aug FROM table_30058355_2 WHERE wed_24_aug = \"19' 59.73 113.216mph\"", "question": "What is the thurs 25 aug when wed 24 aug is 19' 59.73 113.216mph?", "context": "CREATE TABLE table_30058355_2 (thurs_25_aug VARCHAR, wed_24_aug VARCHAR)"}, {"answer": "SELECT thurs_25_aug FROM table_30058355_2 WHERE fri_26_aug = \"19' 30.70 116.023mph\"", "question": "What shows for thurs 25 aug when fri 26 aug is 19' 30.70 116.023mph?", "context": "CREATE TABLE table_30058355_2 (thurs_25_aug VARCHAR, fri_26_aug VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_30058355_5", "question": "What's the best rank possible?", "context": "CREATE TABLE table_30058355_5 (rank INTEGER)"}, {"answer": "SELECT gt4_cup_winner FROM table_30060356_3 WHERE circuit = \"Spa-Francorchamps Report\"", "question": "List all GT4 Cup winners played on the Spa-Francorchamps Report.", "context": "CREATE TABLE table_30060356_3 (gt4_cup_winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT gt3_pro___am_cup_winner FROM table_30060356_3 WHERE gt3_pro_cup_winner = \"No. 1 Vita4One\"", "question": "Who are the gt3 pro / am cup winners when the gt3 pro cup winner was no. 1 vita4one?", "context": "CREATE TABLE table_30060356_3 (gt3_pro___am_cup_winner VARCHAR, gt3_pro_cup_winner VARCHAR)"}, {"answer": "SELECT MAX(event) FROM table_30060356_3", "question": "What is the highest numbered event?", "context": "CREATE TABLE table_30060356_3 (event INTEGER)"}, {"answer": "SELECT tues_23_aug FROM table_30058355_7 WHERE wed_24_aug = \"22' 23.29 101.116mph\"", "question": "What is every entry for Tuesday August 23 if the entry for Wednesday August 24 is 22' 23.29 101.116mph?", "context": "CREATE TABLE table_30058355_7 (tues_23_aug VARCHAR, wed_24_aug VARCHAR)"}, {"answer": "SELECT sat_27_aug FROM table_30058355_7 WHERE thurs_25_aug = \"23' 56.90 94.528mph\"", "question": "What is every entry for Saturday August 27 when the entry for Thursday August 25 is 23' 56.90 94.528mph?", "context": "CREATE TABLE table_30058355_7 (sat_27_aug VARCHAR, thurs_25_aug VARCHAR)"}, {"answer": "SELECT fri_26_aug FROM table_30058355_7 WHERE wed_24_aug = \"23' 52.67 94.807mph\"", "question": "What is every entry for Friday August 26 when the entry for Wednesday August 24 is 23' 52.67 94.807mph?", "context": "CREATE TABLE table_30058355_7 (fri_26_aug VARCHAR, wed_24_aug VARCHAR)"}, {"answer": "SELECT length FROM table_30062172_3 WHERE round = 1 AND gt3_winner = \"David Ashburn Richard Westbrook\"", "question": "When  david ashburn richard westbrook is the gt3 winner and 1 is the round what is the length?", "context": "CREATE TABLE table_30062172_3 (length VARCHAR, round VARCHAR, gt3_winner VARCHAR)"}, {"answer": "SELECT gt4_winner FROM table_30062172_3 WHERE circuit = \"Donington Park\" AND gt3_winner = \"Charles Bateman Michael Lyons\"", "question": "When charles bateman michael lyons is the gt3 winner and donington park is the circuit who is the gt4 winner?", "context": "CREATE TABLE table_30062172_3 (gt4_winner VARCHAR, circuit VARCHAR, gt3_winner VARCHAR)"}, {"answer": "SELECT gt4_winner FROM table_30062172_3 WHERE round = 9 AND gt3_winner = \"Charles Bateman Michael Lyons\"", "question": "When charles bateman michael lyons is the gt3 winner and 9 is the round who is the gt4 winner?", "context": "CREATE TABLE table_30062172_3 (gt4_winner VARCHAR, round VARCHAR, gt3_winner VARCHAR)"}, {"answer": "SELECT gt3_winner FROM table_30062172_3 WHERE pole_position = \"Tim Bridgman Gregor Fisken\"", "question": "When  tim bridgman gregor fisken is the pole position who is the gt3 winner?", "context": "CREATE TABLE table_30062172_3 (gt3_winner VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT jockey FROM table_30098144_2 WHERE race = \"Doncaster Handicap\"", "question": "List the rider for the doncaster handicap compeition.", "context": "CREATE TABLE table_30098144_2 (jockey VARCHAR, race VARCHAR)"}, {"answer": "SELECT COUNT(number_of_troops) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = \"2.45\"", "question": "Name the number of troops for troops per $1 billion being 2.45", "context": "CREATE TABLE table_30108346_1 (number_of_troops VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR)"}, {"answer": "SELECT COUNT(troops_per_one_million_population) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = \"2.76\"", "question": "Name the total number of troops per one million being 2.76", "context": "CREATE TABLE table_30108346_1 (troops_per_one_million_population VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR)"}, {"answer": "SELECT country FROM table_30108346_1 WHERE troops_per_one_million_population = \"54.9\"", "question": "Name the country for troops per one million being 54.9", "context": "CREATE TABLE table_30108346_1 (country VARCHAR, troops_per_one_million_population VARCHAR)"}, {"answer": "SELECT player FROM table_30108930_6 WHERE college = \"Howard\"", "question": "Which player(s) played at Howard college?", "context": "CREATE TABLE table_30108930_6 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_30108930_6 WHERE pick__number = 35", "question": "Which CFL team was pick #35?", "context": "CREATE TABLE table_30108930_6 (cfl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_30108930_6 WHERE pick__number = 34", "question": "Which CFL team got pick 34?", "context": "CREATE TABLE table_30108930_6 (cfl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT position FROM table_30108930_6 WHERE player = \"Tyrell Francisco\"", "question": "What is Tyrell Francisco's player position?", "context": "CREATE TABLE table_30108930_6 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT barony FROM table_30120547_1 WHERE townland = \"Gurraghy\"", "question": "What is the barony of the Gurraghy townland?", "context": "CREATE TABLE table_30120547_1 (barony VARCHAR, townland VARCHAR)"}, {"answer": "SELECT civil_parish FROM table_30120547_1 WHERE townland = \"Cappanaboul\"", "question": "What is the civil parish of the cappanaboul townland?", "context": "CREATE TABLE table_30120547_1 (civil_parish VARCHAR, townland VARCHAR)"}, {"answer": "SELECT civil_parish FROM table_30120547_1 WHERE area__acres__ = 119", "question": "What are the civil parishes of the townlands with an area of 119 acres?", "context": "CREATE TABLE table_30120547_1 (civil_parish VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT civil_parish FROM table_30120556_1 WHERE townland = \"Ballynamona\" AND area__acres__ = 126", "question": "What civil paris appears when Ballynamona is the townland with 126 acres?", "context": "CREATE TABLE table_30120556_1 (civil_parish VARCHAR, townland VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT area__acres__ FROM table_30120556_1 WHERE civil_parish = \"Kilworth\" AND townland = \"Monadrishane\"", "question": "What is the area of the civil parish kilworth and townland monadrishane?", "context": "CREATE TABLE table_30120556_1 (area__acres__ VARCHAR, civil_parish VARCHAR, townland VARCHAR)"}, {"answer": "SELECT COUNT(barony) FROM table_30120556_1 WHERE townland = \"Ballyvadona\"", "question": "How many barony's appear when Ballyvadona is the townland.", "context": "CREATE TABLE table_30120556_1 (barony VARCHAR, townland VARCHAR)"}, {"answer": "SELECT COUNT(area__acres__) FROM table_30120556_1 WHERE townland = \"Glasvaunta\"", "question": "How many items appear in the area column when Glasvaunta is the townland?", "context": "CREATE TABLE table_30120556_1 (area__acres__ VARCHAR, townland VARCHAR)"}, {"answer": "SELECT MIN(area__acres__) FROM table_30120556_1 WHERE townland = \"Derrynanool\"", "question": "What is the fewest area in Derrynanool townland?", "context": "CREATE TABLE table_30120556_1 (area__acres__ INTEGER, townland VARCHAR)"}, {"answer": "SELECT poor_law_union FROM table_30120566_1 WHERE townland = \"Lisladeen\"", "question": "What is Lisladeen poor law union?", "context": "CREATE TABLE table_30120566_1 (poor_law_union VARCHAR, townland VARCHAR)"}, {"answer": "SELECT barony FROM table_30120566_1 WHERE townland = \"Dawstown\" AND civil_parish = \"Matehy\"", "question": "In what barony are both the townland Dawstown and the civil parish Matehy located?", "context": "CREATE TABLE table_30120566_1 (barony VARCHAR, townland VARCHAR, civil_parish VARCHAR)"}, {"answer": "SELECT barony FROM table_30120566_1 WHERE townland = \"Ballycunningham\"", "question": "What barony is Ballycunningham in?", "context": "CREATE TABLE table_30120566_1 (barony VARCHAR, townland VARCHAR)"}, {"answer": "SELECT COUNT(area__acres__) FROM table_30120566_1 WHERE townland = \"Rathcoola East\"", "question": "How many different sizes (in acres) are noted for Rathcoola East?", "context": "CREATE TABLE table_30120566_1 (area__acres__ VARCHAR, townland VARCHAR)"}, {"answer": "SELECT COUNT(area__acres__) FROM table_30120560_1 WHERE townland = \"Kilgilky North\"", "question": "how many areas have townland as kilgilky north?", "context": "CREATE TABLE table_30120560_1 (area__acres__ VARCHAR, townland VARCHAR)"}, {"answer": "SELECT civil_parish FROM table_30120560_1 WHERE area__acres__ = 405", "question": "which cilvil parishes have areas of 405?", "context": "CREATE TABLE table_30120560_1 (civil_parish VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT barony FROM table_30120560_1 WHERE area__acres__ = 560", "question": "what is the barony and an area of 560?", "context": "CREATE TABLE table_30120560_1 (barony VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT COUNT(area__acres__) FROM table_30120560_1 WHERE townland = \"Brittas\"", "question": "what is the number of areas where the townland is brittas?", "context": "CREATE TABLE table_30120560_1 (area__acres__ VARCHAR, townland VARCHAR)"}, {"answer": "SELECT poor_law_union FROM table_30120633_1 WHERE townland = \"Coolkirky\"", "question": "What is the Poor Law Union for Coolkirky?", "context": "CREATE TABLE table_30120633_1 (poor_law_union VARCHAR, townland VARCHAR)"}, {"answer": "SELECT MIN(area__acres__) FROM table_30120633_1 WHERE townland = \"Clashroe\"", "question": "How few acres is the area of Clashroe?", "context": "CREATE TABLE table_30120633_1 (area__acres__ INTEGER, townland VARCHAR)"}, {"answer": "SELECT townland FROM table_30120633_1 WHERE area__acres__ = 213", "question": "Which townland has a 213 acre area?", "context": "CREATE TABLE table_30120633_1 (townland VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT area__acres__ FROM table_30120633_1 WHERE poor_law_union = \"Bandon\" AND townland = \"Lissagroom\"", "question": "How many acres does the area of Lissagroom with Bandon as its poor law union cover?", "context": "CREATE TABLE table_30120633_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR)"}, {"answer": "SELECT civil_parish FROM table_30120633_1 WHERE townland = \"Ballymurphy North\"", "question": "What is Ballymurphy North's civil parish?", "context": "CREATE TABLE table_30120633_1 (civil_parish VARCHAR, townland VARCHAR)"}, {"answer": "SELECT COUNT(area__acres__) FROM table_30120761_1 WHERE townland = \"Coomroe\"", "question": "How many acres in the townland of Coomroe?", "context": "CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, townland VARCHAR)"}, {"answer": "SELECT area__acres__ FROM table_30120761_1 WHERE poor_law_union = \"Macroom\" AND civil_parish = \"Macroom\"", "question": "What are all the acreages of the townlands in the Macroom poor law union and Macroom civil parish?", "context": "CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, civil_parish VARCHAR)"}, {"answer": "SELECT COUNT(barony) FROM table_30120761_1 WHERE townland = \"Maulnagrough\"", "question": "How many baronies is Maulnagrough a part of?", "context": "CREATE TABLE table_30120761_1 (barony VARCHAR, townland VARCHAR)"}, {"answer": "SELECT townland FROM table_30120761_1 WHERE area__acres__ = 131", "question": "What are all of the townlands that have exactly 131 acres.", "context": "CREATE TABLE table_30120761_1 (townland VARCHAR, area__acres__ VARCHAR)"}, {"answer": "SELECT COUNT(area__acres__) FROM table_30120761_1 WHERE civil_parish = \"Macroom\" AND townland = \"Maghereen\"", "question": "What is the acreage of the Maghereen in the civil parish of Macroom?", "context": "CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, civil_parish VARCHAR, townland VARCHAR)"}, {"answer": "SELECT poor_law_union FROM table_30121075_1 WHERE townland = \"Bohonagh\"", "question": "What is the poor law union when the townland is bohonagh?", "context": "CREATE TABLE table_30121075_1 (poor_law_union VARCHAR, townland VARCHAR)"}, {"answer": "SELECT COUNT(barony) FROM table_30121075_1 WHERE townland = \"Derrigra\"", "question": "How many entries are in barony when the townland is derrigra?", "context": "CREATE TABLE table_30121075_1 (barony VARCHAR, townland VARCHAR)"}, {"answer": "SELECT COUNT(poor_law_union) FROM table_30121075_1 WHERE townland = \"Dromidiclogh\"", "question": "How many entries are listed in poor law union when townland is dromidiclogh?", "context": "CREATE TABLE table_30121075_1 (poor_law_union VARCHAR, townland VARCHAR)"}, {"answer": "SELECT area__acres__ FROM table_30121075_1 WHERE poor_law_union = \"Skibbereen\" AND townland = \"Knockmore\"", "question": "What is the area when the poor law union is skibbereen and the townland is knockmore?", "context": "CREATE TABLE table_30121075_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR)"}, {"answer": "SELECT circuit FROM table_30134667_2 WHERE location = \"Baltimore , Maryland\"", "question": "What is the circuit located in baltimore , maryland?", "context": "CREATE TABLE table_30134667_2 (circuit VARCHAR, location VARCHAR)"}, {"answer": "SELECT circuit FROM table_30134667_2 WHERE location = \"St. Petersburg, Florida\"", "question": "Which circuit was located in st. petersburg, florida?", "context": "CREATE TABLE table_30134667_2 (circuit VARCHAR, location VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_30134667_2 WHERE location = \"Bowmanville, Ontario\"", "question": "Who had the fastest lap in bowmanville, ontario?", "context": "CREATE TABLE table_30134667_2 (fastest_lap VARCHAR, location VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_30134667_2 WHERE date = \"September 4\"", "question": "Who had the fastest lap on september 4?", "context": "CREATE TABLE table_30134667_2 (fastest_lap VARCHAR, date VARCHAR)"}, {"answer": "SELECT 1985 FROM table_30133_3 WHERE gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ = \"369.38\"", "question": "What is the 1985 value for the year when GDP as of 2012 after PPP was 369.38?", "context": "CREATE TABLE table_30133_3 (gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ VARCHAR)"}, {"answer": "SELECT gap_from_thailand_as_of_2012__times_ FROM table_30133_3 WHERE economy = \"China\"", "question": "What was the gap from Thailand as of 2012 for China?", "context": "CREATE TABLE table_30133_3 (gap_from_thailand_as_of_2012__times_ VARCHAR, economy VARCHAR)"}, {"answer": "SELECT MAX(2010) FROM table_30133_3 WHERE economy = \"China\"", "question": "What is the maximum 2010 value for China?", "context": "CREATE TABLE table_30133_3 (economy VARCHAR)"}, {"answer": "SELECT gap_from_thailand_as_of_2012__times_ FROM table_30133_3 WHERE gap_from_thailand_as_of_1980__times_ = \"0.29\"", "question": "What is the gap from Thailand as of 2012 for the country whose 1980 gap was 0.29?", "context": "CREATE TABLE table_30133_3 (gap_from_thailand_as_of_2012__times_ VARCHAR, gap_from_thailand_as_of_1980__times_ VARCHAR)"}, {"answer": "SELECT COUNT(gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_) FROM table_30133_3 WHERE 2012 = 23113", "question": "How many GDPs as of 2012 after PPP values are associated with a 2012 value of 23113?", "context": "CREATE TABLE table_30133_3 (gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ VARCHAR)"}, {"answer": "SELECT MAX(2010) FROM table_30133_3 WHERE gap_from_thailand_as_of_1980__times_ = \"2.43\"", "question": "What is the max 2010 value for a 1980 gap value is 2.43?", "context": "CREATE TABLE table_30133_3 (gap_from_thailand_as_of_1980__times_ VARCHAR)"}, {"answer": "SELECT uk_total_viewers FROM table_30139175_3 WHERE episode_no = 50", "question": "How many viewers in the UK did episode 50 have?", "context": "CREATE TABLE table_30139175_3 (uk_total_viewers VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT doubles_w_l FROM table_name_91 WHERE player = \"laurynas grigelis\"", "question": "Tell me the doubles W-L for player of laurynas grigelis", "context": "CREATE TABLE table_name_91 (doubles_w_l VARCHAR, player VARCHAR)"}, {"answer": "SELECT most_recent_cap FROM table_name_64 WHERE goals > 17 AND name = \"brian turner\"", "question": "What is the newest Cap with a Goals stat larger than 17 and which was done by Brian Turner?", "context": "CREATE TABLE table_name_64 (most_recent_cap VARCHAR, goals VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_65 WHERE school_club_team = \"barton cc (ks)\"", "question": "What is the nationality of school/club team of barton cc (ks)?", "context": "CREATE TABLE table_name_65 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_66 WHERE player = \"shawn respert\"", "question": "Shawn Respert play for what school/club team?", "context": "CREATE TABLE table_name_66 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_88 WHERE years_in_toronto = \"1996-97\"", "question": "Who has position in year 1996-97 in Toronto?", "context": "CREATE TABLE table_name_88 (position VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_38 WHERE player = \"roy rogers\"", "question": "Roy Rogers play for what school/club team?", "context": "CREATE TABLE table_name_38 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_in_toronto FROM table_name_87 WHERE nationality = \"united states\" AND school_club_team = \"arkansas\"", "question": "What year is United States school/club team from Arkansas play in Toronto", "context": "CREATE TABLE table_name_87 (years_in_toronto VARCHAR, nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_8 WHERE nationality = \"united states\" AND years_in_toronto = \"2003-06\"", "question": "Who is the player from United States who play in year 2003-06 in Toronto?", "context": "CREATE TABLE table_name_8 (player VARCHAR, nationality VARCHAR, years_in_toronto VARCHAR)"}, {"answer": "SELECT AVG(units_sold) FROM table_name_46 WHERE publisher = \"square enix\"", "question": "Tell me the average units sold for square enix", "context": "CREATE TABLE table_name_46 (units_sold INTEGER, publisher VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE partnering = \"nicolas pereira\"", "question": "Tell me the date for nicolas pereira", "context": "CREATE TABLE table_name_60 (date VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE year = 1986", "question": "what is the date in 1986?", "context": "CREATE TABLE table_name_14 (date VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_15 WHERE venue = \"ponce, puerto rico\"", "question": "What is the average year for Ponce, Puerto Rico events?", "context": "CREATE TABLE table_name_15 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT year FROM table_name_9 WHERE event = \"junior race\" AND position = \"8th\"", "question": "What year did she place 8th in the junior race?", "context": "CREATE TABLE table_name_9 (year VARCHAR, event VARCHAR, position VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_69 WHERE player = \"ryan johnson\"", "question": "Tell me the NHL team for ryan johnson", "context": "CREATE TABLE table_name_69 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_68 WHERE pick = \"47\"", "question": "Tell me the position for pick of 47", "context": "CREATE TABLE table_name_68 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_12 WHERE nhl_team = \"pittsburgh penguins\"", "question": "Tell me the pick for pittsburgh penguins", "context": "CREATE TABLE table_name_12 (pick VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_51 WHERE player = \"rudolf vercik\"", "question": "Tell me the nationality for rudolf vercik", "context": "CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_85 WHERE nationality = \"canada\" AND pick = \"43\"", "question": "Tell me the player for nationality of canada for pick of 43", "context": "CREATE TABLE table_name_85 (player VARCHAR, nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_2 WHERE player = \"jason holland\"", "question": "Tell me the college for jason holland", "context": "CREATE TABLE table_name_2 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE winning_driver = \"rudolf caracciola\" AND name = \"avusrennen\"", "question": "Tell me the date for rudolf caracciola for avusrennen", "context": "CREATE TABLE table_name_91 (date VARCHAR, winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_79 WHERE date = \"10 may\" AND name = \"targa florio\"", "question": "Tell me the circuit for 10 may for targa florio", "context": "CREATE TABLE table_name_79 (circuit VARCHAR, date VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE tournament = \"washington\"", "question": "What was the score of the Washington tournament?", "context": "CREATE TABLE table_name_20 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE opponent = \"patty fendick\"", "question": "On what date was Patty Fendick an opponent?", "context": "CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE venue = \"vasil levski national stadium, sofia\"", "question": "What score does Vasil Levski National Stadium, Sofia earn?", "context": "CREATE TABLE table_name_62 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE competition = \"friendly\" AND venue = \"vasil levski national stadium, sofia\"", "question": "What score did vasil levski national stadium, sofia, which was friendly during competition, earn?", "context": "CREATE TABLE table_name_96 (score VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_68 WHERE nhl_team = \"washington capitals\"", "question": "What is the nationality of the Washington Capitals?", "context": "CREATE TABLE table_name_68 (nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_57 WHERE player = \"roman vopat\"", "question": "On what NHL team does Roman Vopat play for?", "context": "CREATE TABLE table_name_57 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_1 WHERE nationality = \"ukraine\"", "question": "What is the position of the player from the Ukraine?", "context": "CREATE TABLE table_name_1 (position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_58 WHERE result = \"12th\"", "question": "What Tournament did he place 12th in?", "context": "CREATE TABLE table_name_58 (tournament VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_9 WHERE result = \"12th\"", "question": "What was the first year he placed 12th", "context": "CREATE TABLE table_name_9 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_5 WHERE winning_constructor = \"alfa romeo\" AND name = \"swedish ice race\"", "question": "Tell me the circuit for alfa romeo swedish ice race", "context": "CREATE TABLE table_name_5 (circuit VARCHAR, winning_constructor VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE winning_constructor = \"bugatti\" AND winning_driver = \"stanislas czaykowski\"", "question": "Tell me the date for bugatti fpr stanislas czaykowski", "context": "CREATE TABLE table_name_60 (date VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_99 WHERE date = \"20 august\"", "question": "Tell me the circuit for 20 august", "context": "CREATE TABLE table_name_99 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_70 WHERE name = \"avusrennen\"", "question": "Tell me the winning driver for avusrennen", "context": "CREATE TABLE table_name_70 (winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT report FROM table_name_96 WHERE winning_constructor = \"bugatti\" AND circuit = \"brooklands\"", "question": "Tell me the report for bugatti and brooklands", "context": "CREATE TABLE table_name_96 (report VARCHAR, winning_constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_78 WHERE location = \"helsinki\"", "question": "How many years has there been a competition in Helsinki?", "context": "CREATE TABLE table_name_78 (year VARCHAR, location VARCHAR)"}, {"answer": "SELECT competition FROM table_name_96 WHERE year < 1982 AND score = \"2:3\"", "question": "Which competition before 1982 had a score of 2:3?", "context": "CREATE TABLE table_name_96 (competition VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_51 WHERE year > 1980 AND score = \"0:5\" AND location = \"jerusalem\"", "question": "Which competition occurred after 1980 with a score of 0:5 in Jerusalem?", "context": "CREATE TABLE table_name_51 (competition VARCHAR, location VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE attendance = \"51,342\"", "question": "When was there an attendance of 51,342?", "context": "CREATE TABLE table_name_6 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_88 WHERE week = 7", "question": "What was the attendance during week 7?", "context": "CREATE TABLE table_name_88 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_12 WHERE week = 16", "question": "What was the score during week 16?", "context": "CREATE TABLE table_name_12 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT minister FROM table_name_58 WHERE left_office = \"1960\"", "question": "Who is the mInister who left office during 1960?", "context": "CREATE TABLE table_name_58 (minister VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT government FROM table_name_63 WHERE number = 6", "question": "Which government is number 6?", "context": "CREATE TABLE table_name_63 (government VARCHAR, number VARCHAR)"}, {"answer": "SELECT rider FROM table_name_59 WHERE speed = \"90.57mph\"", "question": "Which rider had a speed of 90.57mph?", "context": "CREATE TABLE table_name_59 (rider VARCHAR, speed VARCHAR)"}, {"answer": "SELECT country FROM table_name_63 WHERE place < 8 AND points < 5", "question": "Which country has a place smaller than 8 and points smaller than 5?", "context": "CREATE TABLE table_name_63 (country VARCHAR, place VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_38 WHERE wins < 4 AND ties = 2 AND place = 5", "question": "What is the lowest number of Losses when the number of Wins is less than 4, the number of Tie is 2, and the Place is 5?", "context": "CREATE TABLE table_name_38 (losses INTEGER, place VARCHAR, wins VARCHAR, ties VARCHAR)"}, {"answer": "SELECT post_season_record_[e_] FROM table_name_55 WHERE mlb_affiliate = \"kansas city\"", "question": "Tell me the post-season record for kansas city", "context": "CREATE TABLE table_name_55 (post_season_record_ VARCHAR, e_ VARCHAR, mlb_affiliate VARCHAR)"}, {"answer": "SELECT venue FROM table_name_14 WHERE date = \"29 april 2007\"", "question": "Tell me the venue of 29 april 2007", "context": "CREATE TABLE table_name_14 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_87 WHERE date = \"20 august 2008\"", "question": "Tell me the competition of 20 august 2008", "context": "CREATE TABLE table_name_87 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE venue = \"stade des martyrs, dr congo\"", "question": "Tell me the date of stade des martyrs, dr congo", "context": "CREATE TABLE table_name_89 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT amount__millions_ FROM table_name_92 WHERE payee = \"infotalent\"", "question": "How much money, in millions, is paid to Infotalent?", "context": "CREATE TABLE table_name_92 (amount__millions_ VARCHAR, payee VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_52 WHERE payee = \"euromarine\"", "question": "What is the purpose of Euromarine?", "context": "CREATE TABLE table_name_52 (purpose VARCHAR, payee VARCHAR)"}, {"answer": "SELECT signatories FROM table_name_71 WHERE purpose = \"police security\" AND payee = \"infotalent\"", "question": "What signatory has a purpose of police security and Infotalent payee?", "context": "CREATE TABLE table_name_71 (signatories VARCHAR, purpose VARCHAR, payee VARCHAR)"}, {"answer": "SELECT MAX(launched) FROM table_name_1 WHERE name = \"trn\"", "question": "Tell me the highest launced for trn", "context": "CREATE TABLE table_name_1 (launched INTEGER, name VARCHAR)"}, {"answer": "SELECT period FROM table_name_25 WHERE place = \"red rock\"", "question": "Tell me the period for red rock", "context": "CREATE TABLE table_name_25 (period VARCHAR, place VARCHAR)"}, {"answer": "SELECT province FROM table_name_15 WHERE location = \"260km ese of calgary\"", "question": "Tell me the province for 260km ese of calgary", "context": "CREATE TABLE table_name_15 (province VARCHAR, location VARCHAR)"}, {"answer": "SELECT province FROM table_name_49 WHERE period = \"1941-1946\"", "question": "Tell me the province of 1941-1946", "context": "CREATE TABLE table_name_49 (province VARCHAR, period VARCHAR)"}, {"answer": "SELECT degree FROM table_name_90 WHERE award_year = 1965 AND award = \"chemistry\"", "question": "Tell me the degree for chemistry 1965", "context": "CREATE TABLE table_name_90 (degree VARCHAR, award_year VARCHAR, award VARCHAR)"}, {"answer": "SELECT election_date FROM table_name_49 WHERE member = \"william richmond category:articles with hcards\"", "question": "What is the Election date for Member william richmond category:articles with hcards?", "context": "CREATE TABLE table_name_49 (election_date VARCHAR, member VARCHAR)"}, {"answer": "SELECT election_date FROM table_name_16 WHERE electorate = \"city of auckland category:articles with hcards\"", "question": "What is the election date for the city of auckland category:articles with hcards?", "context": "CREATE TABLE table_name_16 (election_date VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT electorate FROM table_name_37 WHERE member = \"dingley brittin category:articles with hcards\"", "question": "What electorate does Member dingley brittin category:articles with hcards represent?", "context": "CREATE TABLE table_name_37 (electorate VARCHAR, member VARCHAR)"}, {"answer": "SELECT election_date FROM table_name_94 WHERE member = \"charles brown category:articles with hcards\"", "question": "What is the election date for the electorate of member charles brown category:articles with hcards?", "context": "CREATE TABLE table_name_94 (election_date VARCHAR, member VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE acts = \"6 bands\" AND year > 1981 AND event = \"monsters of rock\"", "question": "Tell me the date for acts of 6 bands and year larger than 1981 for monsters of rock", "context": "CREATE TABLE table_name_4 (date VARCHAR, event VARCHAR, acts VARCHAR, year VARCHAR)"}, {"answer": "SELECT stages FROM table_name_42 WHERE year = 1981", "question": "Tell me the stages for 1981", "context": "CREATE TABLE table_name_42 (stages VARCHAR, year VARCHAR)"}, {"answer": "SELECT event FROM table_name_74 WHERE acts = \"6 bands\"", "question": "Tell me the event for 6 bands", "context": "CREATE TABLE table_name_74 (event VARCHAR, acts VARCHAR)"}, {"answer": "SELECT lightweight FROM table_name_79 WHERE information_model = \"no\" AND flexible = \"unknown\"", "question": "What is the lightweight value with no information model and the flexible value is unknown?", "context": "CREATE TABLE table_name_79 (lightweight VARCHAR, information_model VARCHAR, flexible VARCHAR)"}, {"answer": "SELECT bore FROM table_name_8 WHERE cyl = \"9-cyl radial\" AND name = \"9 ad\"", "question": "What is the bore for a 9-cyl radial on a 9 AD?", "context": "CREATE TABLE table_name_8 (bore VARCHAR, cyl VARCHAR, name VARCHAR)"}, {"answer": "SELECT bore FROM table_name_9 WHERE name = \"18 ab\"", "question": "What bore goes with an 18 AB?", "context": "CREATE TABLE table_name_9 (bore VARCHAR, name VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE notes = \"10.93 secs\"", "question": "Tell me the venue for notes of 10.93 secs", "context": "CREATE TABLE table_name_45 (venue VARCHAR, notes VARCHAR)"}, {"answer": "SELECT venue FROM table_name_81 WHERE year < 2003", "question": "Tell me the venue for year less than 2003", "context": "CREATE TABLE table_name_81 (venue VARCHAR, year INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_56 WHERE team_chassis = \"alfa romeo 184t\"", "question": "What is the total number of points team Alfa Romeo 184T won?", "context": "CREATE TABLE table_name_56 (points INTEGER, team_chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_87 WHERE year > 1984", "question": "What engine was used after 1984?", "context": "CREATE TABLE table_name_87 (engine VARCHAR, year INTEGER)"}, {"answer": "SELECT year FROM table_name_72 WHERE points > 0", "question": "In which year were the points more than 0?", "context": "CREATE TABLE table_name_72 (year VARCHAR, points INTEGER)"}, {"answer": "SELECT tyres FROM table_name_22 WHERE year > 1984", "question": "What were the Tyres after 1984?", "context": "CREATE TABLE table_name_22 (tyres VARCHAR, year INTEGER)"}, {"answer": "SELECT bp_comp_2__\u02dac_ FROM table_name_32 WHERE _percentage_wt_comp_1 = 76", "question": "Tell me the bp comp 2 for % wt comp 1 of 76", "context": "CREATE TABLE table_name_32 (bp_comp_2__\u02dac_ VARCHAR, _percentage_wt_comp_1 VARCHAR)"}, {"answer": "SELECT COUNT(_percentage_wt_comp_1) FROM table_name_1 WHERE _percentage_wt_comp_2 = 27", "question": "Tell me the total number of % wt comp 1 foR % wt comp 2 or 27", "context": "CREATE TABLE table_name_1 (_percentage_wt_comp_1 VARCHAR, _percentage_wt_comp_2 VARCHAR)"}, {"answer": "SELECT _percentage_of_popular_vote FROM table_name_53 WHERE _number_of_seats_available = 90", "question": "What is the percentage of the popular vote when there were 90 seats available?", "context": "CREATE TABLE table_name_53 (_percentage_of_popular_vote VARCHAR, _number_of_seats_available VARCHAR)"}, {"answer": "SELECT gold FROM table_name_56 WHERE silver = 39", "question": "Name the gold for silver of 39", "context": "CREATE TABLE table_name_56 (gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT compression_ratio FROM table_name_41 WHERE engine = \"302-2v windsor v8\"", "question": "What is the compression ratio for the 302-2v Windsor v8 engine?", "context": "CREATE TABLE table_name_41 (compression_ratio VARCHAR, engine VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_21 WHERE rushes = 41 AND yards < 197", "question": "How many games had 41 rushes and were than 197 yards?", "context": "CREATE TABLE table_name_21 (games VARCHAR, rushes VARCHAR, yards VARCHAR)"}, {"answer": "SELECT MAX(yards) FROM table_name_48 WHERE rushes < 51 AND games > 12", "question": "What was the highest number of yards in years where there were fewer than 51 rushes and more than 12 games?", "context": "CREATE TABLE table_name_48 (yards INTEGER, rushes VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_93 WHERE player = \"dimelon westfield\"", "question": "What is the pick # for Dimelon Westfield?", "context": "CREATE TABLE table_name_93 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT result FROM table_name_64 WHERE date = \"november 8, 2001\"", "question": "What was the final score of the November 8, 2001 game?", "context": "CREATE TABLE table_name_64 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT bullet_tip_color FROM table_name_54 WHERE headstamp_id = \"h1z\"", "question": "Tell me the bullet tip color of headstamp id of h1z", "context": "CREATE TABLE table_name_54 (bullet_tip_color VARCHAR, headstamp_id VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_2 WHERE bronze > 0 AND rank = \"total\" AND \"total\" > 100", "question": "Tell me the total number of gold for bronze more than 0 and total more than 100", "context": "CREATE TABLE table_name_2 (gold VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_17 WHERE total < 6 AND rank = \"8\"", "question": "Tell me the least silver for total less than 6 and rank of 8", "context": "CREATE TABLE table_name_17 (silver INTEGER, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_85 WHERE team_1 = \"marseille\"", "question": "What is the first leg score in that match where Marseille was the first team?", "context": "CREATE TABLE table_name_85 (team_1 VARCHAR)"}, {"answer": "SELECT discovery___publication_of_name FROM table_name_55 WHERE fossil_record = \"still living\"", "question": "Tell me the discovery/publication for still living", "context": "CREATE TABLE table_name_55 (discovery___publication_of_name VARCHAR, fossil_record VARCHAR)"}, {"answer": "SELECT discovery___publication_of_name FROM table_name_69 WHERE species = \"red deer cave people\"", "question": "Tell me the discovery/publication for red deer cave people", "context": "CREATE TABLE table_name_69 (discovery___publication_of_name VARCHAR, species VARCHAR)"}, {"answer": "SELECT discovery___publication_of_name FROM table_name_78 WHERE species = \"h.heidelbergensis\"", "question": "Tell me the discovery/publicatio of name for h.heidelbergensis", "context": "CREATE TABLE table_name_78 (discovery___publication_of_name VARCHAR, species VARCHAR)"}, {"answer": "SELECT fossil_record FROM table_name_33 WHERE discovery___publication_of_name = \"1994/2003\"", "question": "Tell me the fossil record for name of 1994/2003", "context": "CREATE TABLE table_name_33 (fossil_record VARCHAR, discovery___publication_of_name VARCHAR)"}, {"answer": "SELECT lived_when___mya__ FROM table_name_99 WHERE discovery___publication_of_name = \"1994/2003\"", "question": "Tell me lived for name of 1994/2003", "context": "CREATE TABLE table_name_99 (lived_when___mya__ VARCHAR, discovery___publication_of_name VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE circuit = \"monza\"", "question": "When was the Monza circuit?", "context": "CREATE TABLE table_name_68 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT win__percentage FROM table_name_4 WHERE conference = \"metro\"", "question": "What is Metro's win percentage?", "context": "CREATE TABLE table_name_4 (win__percentage VARCHAR, conference VARCHAR)"}, {"answer": "SELECT elite_eight FROM table_name_67 WHERE conference = \"atlantic 10\"", "question": "How many elite eight teams came from the Atlantic 10?", "context": "CREATE TABLE table_name_67 (elite_eight VARCHAR, conference VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_24 WHERE attendance = \"55,527\"", "question": "Tell me the opponent for attendance of 55,527", "context": "CREATE TABLE table_name_24 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT aircraft FROM table_name_57 WHERE in_service = \"2\" AND origin = \"united states\" AND versions = \"b-58\"", "question": "Which version B-58 aircraft model originated in the United States has 2 in service?", "context": "CREATE TABLE table_name_57 (aircraft VARCHAR, versions VARCHAR, in_service VARCHAR, origin VARCHAR)"}, {"answer": "SELECT type FROM table_name_45 WHERE aircraft = \"casa c-212 aviocar\"", "question": "What aircraft type is the Casa C-212 Aviocar?", "context": "CREATE TABLE table_name_45 (type VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT in_service FROM table_name_64 WHERE versions = \"t-260 eu\"", "question": "How many T-260 EU aircrafts are currently in service?", "context": "CREATE TABLE table_name_64 (in_service VARCHAR, versions VARCHAR)"}, {"answer": "SELECT in_service FROM table_name_12 WHERE origin = \"brazil\" AND versions = \"c-95\"", "question": "How many C-95 aircrafts originating in Brazil are currently in service?", "context": "CREATE TABLE table_name_12 (in_service VARCHAR, origin VARCHAR, versions VARCHAR)"}, {"answer": "SELECT MIN(other) FROM table_name_47 WHERE albanians > 8793 AND roma < 1030", "question": "Tell me the lowest other for albanians more than 8793 and Roma less than 1030", "context": "CREATE TABLE table_name_47 (other INTEGER, albanians VARCHAR, roma VARCHAR)"}, {"answer": "SELECT MAX(bosniaks) FROM table_name_8 WHERE census_year > 2002", "question": "Tell me the highest bosniaks for year more than 2002", "context": "CREATE TABLE table_name_8 (bosniaks INTEGER, census_year INTEGER)"}, {"answer": "SELECT MIN(erp_w) FROM table_name_21 WHERE frequency_mhz < 103.1", "question": "Name the lowest ERP W with a frequency mhz less than 103.1", "context": "CREATE TABLE table_name_21 (erp_w INTEGER, frequency_mhz INTEGER)"}, {"answer": "SELECT city_of_license FROM table_name_92 WHERE frequency_mhz = 103.1 AND erp_w < 80", "question": "Name the city with 103.1 frequency and ERP W less than 80", "context": "CREATE TABLE table_name_92 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_33 WHERE pick__number < 59 AND position = \"gk\"", "question": "Tell me the affiliation for pick number less than 59 and position of gk", "context": "CREATE TABLE table_name_33 (affiliation VARCHAR, pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_97 WHERE tournament = \"canada\"", "question": "What Tournament of canada happened in 1998?", "context": "CREATE TABLE table_name_97 (tournament VARCHAR)"}, {"answer": "SELECT 1993 FROM table_name_67 WHERE 1990 = \"2\u20132\"", "question": "Who had 1990 of 2\u20132 in 1993?", "context": "CREATE TABLE table_name_67 (Id VARCHAR)"}, {"answer": "SELECT 1996 FROM table_name_45 WHERE 1987 = \"nme\" AND tournament = \"monte carlo\"", "question": "What Tournament of monte carlo had 1996 and a 1987 of nme?", "context": "CREATE TABLE table_name_45 (tournament VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_58 WHERE 1998 = \"2r\" AND tournament = \"french open\"", "question": "What Tournament of the french open had 2004 that has a 1998 of 2r?", "context": "CREATE TABLE table_name_58 (tournament VARCHAR)"}, {"answer": "SELECT margin FROM table_name_18 WHERE championship = \"nabisco championship\"", "question": "What is the margin at the Nabisco Championship?", "context": "CREATE TABLE table_name_18 (margin VARCHAR, championship VARCHAR)"}, {"answer": "SELECT margin FROM table_name_88 WHERE year = 2001 AND championship = \"mcdonald's lpga championship\"", "question": "What was the margin in 2001 at the McDonald's LPGA Championship?", "context": "CREATE TABLE table_name_88 (margin VARCHAR, year VARCHAR, championship VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE goal = 5", "question": "Tell me the date of goal 5", "context": "CREATE TABLE table_name_5 (date VARCHAR, goal VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE goal = 5", "question": "Tell me the date for goal of 5", "context": "CREATE TABLE table_name_17 (date VARCHAR, goal VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE location = \"sopot (pol)\"", "question": "What was the result of Sopot (pol)?", "context": "CREATE TABLE table_name_33 (result VARCHAR, location VARCHAR)"}, {"answer": "SELECT division FROM table_name_39 WHERE open_cup = \"2nd round\"", "question": "Which division was the Rampage in when they were in the 2nd round in the Open Cup?", "context": "CREATE TABLE table_name_39 (division VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT reg_season FROM table_name_12 WHERE year = 1997", "question": "What was the Rampage's regular season in 1997?", "context": "CREATE TABLE table_name_12 (reg_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT open_cup FROM table_name_98 WHERE playoffs = \"2nd round\"", "question": "What was the Rampage's status in the Open Cup in the year that they made it to the 2nd round of the playoffs?", "context": "CREATE TABLE table_name_98 (open_cup VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_38 WHERE reg_season = \"4th, central\"", "question": "What was the Rampage's result in the playoffs in the year that their regular season resulted in 4th, central?", "context": "CREATE TABLE table_name_38 (playoffs VARCHAR, reg_season VARCHAR)"}, {"answer": "SELECT method FROM table_name_77 WHERE result = \"win\" AND opponent = \"ed mahone\"", "question": "Which method resulting in a win against Ed Mahone?", "context": "CREATE TABLE table_name_77 (method VARCHAR, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE method = \"technical knockout\" AND opponent = \"fatu tuimanono\"", "question": "When did  the technical knockout against Fatu Tuimanono happen?", "context": "CREATE TABLE table_name_24 (date VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE method = \"knockout\" AND round > 2 AND opponent = \"barry prior\"", "question": "When did the opponent knockout Barry Prior in more than 2 rounds?", "context": "CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR, method VARCHAR, round VARCHAR)"}, {"answer": "SELECT result FROM table_name_19 WHERE round > 4 AND opponent = \"ed mahone\"", "question": "What resulted after 4 rounds with Ed Mahone?", "context": "CREATE TABLE table_name_19 (result VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT region FROM table_name_8 WHERE state = \"georgia\"", "question": "Tell me the region for georgia", "context": "CREATE TABLE table_name_8 (region VARCHAR, state VARCHAR)"}, {"answer": "SELECT host FROM table_name_85 WHERE region = \"midwest\" AND venue = \"thomas assembly center\"", "question": "Tell me the host for midwest thomas assembly center", "context": "CREATE TABLE table_name_85 (host VARCHAR, region VARCHAR, venue VARCHAR)"}, {"answer": "SELECT region FROM table_name_10 WHERE venue = \"frank erwin center\"", "question": "Tell me the region for frank erwin center", "context": "CREATE TABLE table_name_10 (region VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE competition = \"vfl reserves\" AND venue = \"mcg\" AND year = \"1971\"", "question": "In 1971 at MCG, what was the score of the VFL Reserves?", "context": "CREATE TABLE table_name_35 (score VARCHAR, year VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_45 WHERE opponent = \"richmond\"", "question": "What was the score when Richmond was the opponent?", "context": "CREATE TABLE table_name_45 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_62 WHERE score = \"18.6 (114) - 21.14 (140)\"", "question": "Where was the match with a score of 18.6 (114) - 21.14 (140)?", "context": "CREATE TABLE table_name_62 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE competition = \"vfl reserves\" AND score = \"18.6 (114) - 21.14 (140)\"", "question": "At the VFL Reserves, who was the opponent when the score was 18.6 (114) - 21.14 (140)?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_51 WHERE score = \"4.10 (34) - 8.12 (60)\"", "question": "Where was the match with a score of 4.10 (34) - 8.12 (60)?", "context": "CREATE TABLE table_name_51 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT bbc_two_total_viewing FROM table_name_57 WHERE year = \"1999\"", "question": "How much is the total BBC 2 viewing in 1999?", "context": "CREATE TABLE table_name_57 (bbc_two_total_viewing VARCHAR, year VARCHAR)"}, {"answer": "SELECT bbc_two_rank FROM table_name_53 WHERE year = \"2005\"", "question": "What was the rank of BBC 2 in 2005?", "context": "CREATE TABLE table_name_53 (bbc_two_rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT bbc_two_rank FROM table_name_2 WHERE bbc_one_rank = \"1st\" AND bbc_one_total_viewing = \"9,840,000\"", "question": "What is the BBC 2 rank when BBC 1 is 1st rank and the total viewing is 9,840,000?", "context": "CREATE TABLE table_name_2 (bbc_two_rank VARCHAR, bbc_one_rank VARCHAR, bbc_one_total_viewing VARCHAR)"}, {"answer": "SELECT year FROM table_name_51 WHERE bbc_two_rank = \"13th\"", "question": "In what year was BBC 2 13th in rank?", "context": "CREATE TABLE table_name_51 (year VARCHAR, bbc_two_rank VARCHAR)"}, {"answer": "SELECT goals FROM table_name_13 WHERE caps > 8 AND player = \"stein huysegems\"", "question": "How many goals occurred for Stein Huysegems when the caps value is more than 8?", "context": "CREATE TABLE table_name_13 (goals VARCHAR, caps VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(caps) FROM table_name_50 WHERE player = \"glen moss\"", "question": "What is the largest caps value for Glen Moss?", "context": "CREATE TABLE table_name_50 (caps INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(year_of_recording) FROM table_name_63 WHERE orchestra = \"royal philharmonic orchestra\" AND record_company = \"decca records\"", "question": "What is the oldest year that the Royal Philharmonic Orchestra released a record with Decca Records?", "context": "CREATE TABLE table_name_63 (year_of_recording INTEGER, orchestra VARCHAR, record_company VARCHAR)"}, {"answer": "SELECT format FROM table_name_34 WHERE conductor = \"erich leinsdorf\"", "question": "What format was conductor Erich Leinsdorf's album released on?", "context": "CREATE TABLE table_name_34 (format VARCHAR, conductor VARCHAR)"}, {"answer": "SELECT record_company FROM table_name_48 WHERE year_of_recording = 1964 AND format = \"cd\"", "question": "What record company released a CD in 1964?", "context": "CREATE TABLE table_name_48 (record_company VARCHAR, year_of_recording VARCHAR, format VARCHAR)"}, {"answer": "SELECT division FROM table_name_73 WHERE playoffs = \"finalist\" AND open_cup = \"3rd round\"", "question": "What division has finalist playoffs and was 3rd round Open Cup?", "context": "CREATE TABLE table_name_73 (division VARCHAR, playoffs VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT year FROM table_name_21 WHERE reg_season = \"8th\" AND open_cup = \"3rd round\"", "question": "What year was the team 8th in the season and made it to the 3rd round in Open Cup?", "context": "CREATE TABLE table_name_21 (year VARCHAR, reg_season VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT launch_date_time__utc_ FROM table_name_57 WHERE payload = \"gsat-4\"", "question": "Tell me the launch date/time for payload of gsat-4", "context": "CREATE TABLE table_name_57 (launch_date_time__utc_ VARCHAR, payload VARCHAR)"}, {"answer": "SELECT launch_pad FROM table_name_16 WHERE launch_date_time__utc_ = \"25 december 2010 10:34\"", "question": "Tell me the launch pad for 25 december 2010 10:34", "context": "CREATE TABLE table_name_16 (launch_pad VARCHAR, launch_date_time__utc_ VARCHAR)"}, {"answer": "SELECT name FROM table_name_16 WHERE rank > 48 AND last = 2005", "question": "Who had a rank more than 48, and a last in 2005?", "context": "CREATE TABLE table_name_16 (name VARCHAR, rank VARCHAR, last VARCHAR)"}, {"answer": "SELECT name FROM table_name_32 WHERE rank > 17 AND confederation = \"uefa\" AND caps = 114", "question": "Which UEFA confederation member had a rank more than 17 and caps of 114?", "context": "CREATE TABLE table_name_32 (name VARCHAR, caps VARCHAR, rank VARCHAR, confederation VARCHAR)"}, {"answer": "SELECT result FROM table_name_68 WHERE date = \"july 16, 2000\"", "question": "Tell me the result of july 16, 2000", "context": "CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(caps) FROM table_name_5 WHERE goals = 0 AND rank = 15", "question": "What is the maximum cap number where 0 goals were scored with a rank of 15?", "context": "CREATE TABLE table_name_5 (caps INTEGER, goals VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(guns) FROM table_name_32 WHERE class = \"frigate\" AND year = \"1815\"", "question": "What were the fewest amount of guns possessed by a frigate that served in 1815?", "context": "CREATE TABLE table_name_32 (guns INTEGER, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(place) FROM table_name_86 WHERE units_sold_in_the_uk = \"321,000\"", "question": "Of the games that sold 321,000 units in the UK, what is their average place?", "context": "CREATE TABLE table_name_86 (place INTEGER, units_sold_in_the_uk VARCHAR)"}, {"answer": "SELECT units_sold_in_the_us FROM table_name_72 WHERE units_sold_in_japan = \"346,000\"", "question": "How many units were sold in the US of the game that sold 346,000 units in japan?", "context": "CREATE TABLE table_name_72 (units_sold_in_the_us VARCHAR, units_sold_in_japan VARCHAR)"}, {"answer": "SELECT player FROM table_name_64 WHERE mls_team = \"dallas burn\"", "question": "Tell me the player from dallas burn", "context": "CREATE TABLE table_name_64 (player VARCHAR, mls_team VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_40 WHERE player = \"kenny arena\"", "question": "Tell me the sum of pick number for kenny arena", "context": "CREATE TABLE table_name_40 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT city FROM table_name_7 WHERE host = \"northeast louisiana university\"", "question": "What city is the Northeast Louisiana University located in?", "context": "CREATE TABLE table_name_7 (city VARCHAR, host VARCHAR)"}, {"answer": "SELECT region FROM table_name_16 WHERE city = \"philadelphia\"", "question": "What region is the city of Philadelphia located in?", "context": "CREATE TABLE table_name_16 (region VARCHAR, city VARCHAR)"}, {"answer": "SELECT venue FROM table_name_73 WHERE city = \"long beach\"", "question": "What venue is in Long Beach?", "context": "CREATE TABLE table_name_73 (venue VARCHAR, city VARCHAR)"}, {"answer": "SELECT state FROM table_name_76 WHERE region = \"mideast\" AND city = \"knoxville\"", "question": "What state is Knoxville and the mideast region located in?", "context": "CREATE TABLE table_name_76 (state VARCHAR, region VARCHAR, city VARCHAR)"}, {"answer": "SELECT host FROM table_name_51 WHERE state = \"georgia\"", "question": "What is the host in Georgia?", "context": "CREATE TABLE table_name_51 (host VARCHAR, state VARCHAR)"}, {"answer": "SELECT state FROM table_name_91 WHERE host = \"university of tennessee\"", "question": "What state is the University of Tennessee located in?", "context": "CREATE TABLE table_name_91 (state VARCHAR, host VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE week > 3 AND result = \"w 28-27\"", "question": "Tell me the date that has a week larger than 3 and a result of w 28-27", "context": "CREATE TABLE table_name_26 (date VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_64 WHERE result = \"w 12-3\" AND week > 12", "question": "Tell me the sum of attendane for a result of w 12-3 and week more than 12", "context": "CREATE TABLE table_name_64 (attendance INTEGER, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_3 WHERE result = \"l 18-6\"", "question": "Tell me the total number of attendance for result of l 18-6", "context": "CREATE TABLE table_name_3 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_12 WHERE week = 16", "question": "Tell me the total number of attendance for week of 16", "context": "CREATE TABLE table_name_12 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_37 WHERE total = 4 AND silver < 3", "question": "How many bronzes were held by those with a total of 4 and less than 3 silvers.", "context": "CREATE TABLE table_name_37 (bronze INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_4 WHERE event = \"ifl: oakland\"", "question": "How many rounds did the IFL: Oakland event have?", "context": "CREATE TABLE table_name_4 (round INTEGER, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_83 WHERE record = \"3-0\"", "question": "Which opponent has a record of 3-0?", "context": "CREATE TABLE table_name_83 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_10 WHERE driver = \"david coulthard\"", "question": "Tell me the constructor for david coulthard", "context": "CREATE TABLE table_name_10 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT pos FROM table_name_75 WHERE driver = \"adrian sutil\"", "question": "Tell me the pos for adrian sutil", "context": "CREATE TABLE table_name_75 (pos VARCHAR, driver VARCHAR)"}, {"answer": "SELECT part_1 FROM table_name_60 WHERE grid = \"1\"", "question": "Tell me the part 1 of grid of 1", "context": "CREATE TABLE table_name_60 (part_1 VARCHAR, grid VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_7 WHERE call_sign = \"k215es\"", "question": "Name the city of license for call sign of k215es", "context": "CREATE TABLE table_name_7 (city_of_license VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_51 WHERE call_sign = \"k208eq\"", "question": "Name the FCC info for call sign of k208eq", "context": "CREATE TABLE table_name_51 (fcc_info VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_name_94 WHERE surface = \"carpet\"", "question": "Tell me the total number of date for carpet", "context": "CREATE TABLE table_name_94 (date VARCHAR, surface VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_29 WHERE score_in_the_final = \"6\u20132, 3\u20136, 4\u20136\"", "question": "Tell me the opponent for 6\u20132, 3\u20136, 4\u20136", "context": "CREATE TABLE table_name_29 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_62 WHERE player = \"martin lewis\"", "question": "What is the nationality of Martin Lewis?", "context": "CREATE TABLE table_name_62 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_59 WHERE week = 14", "question": "Tell me the opponent of week 14", "context": "CREATE TABLE table_name_59 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_58 WHERE week = 11", "question": "Tell me the average attendance for week of 11", "context": "CREATE TABLE table_name_58 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_96 WHERE result = \"w 33-31\"", "question": "Tell me opponent for result of w 33-31", "context": "CREATE TABLE table_name_96 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE route_of_administration = \"oral or iv\" AND investigation = \"thyroid imaging thyroid metastases imaging\"", "question": "What Name is administered by oral or iv, and is being investigated for thyroid imaging thyroid metastases imaging?", "context": "CREATE TABLE table_name_61 (name VARCHAR, route_of_administration VARCHAR, investigation VARCHAR)"}, {"answer": "SELECT owner FROM table_name_5 WHERE call_sign = \"cjgx\"", "question": "Who is the owner with a call sign of cjgx?", "context": "CREATE TABLE table_name_5 (owner VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT owner FROM table_name_78 WHERE branding = \"gx94\"", "question": "Who is the owner of the branding gx94?", "context": "CREATE TABLE table_name_78 (owner VARCHAR, branding VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_28 WHERE call_sign = \"cjjc-fm\"", "question": "What is the call frequency sign of cjjc-fm?", "context": "CREATE TABLE table_name_28 (frequency VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT owner FROM table_name_48 WHERE branding = \"fox fm\"", "question": "Who is the owner with the branding fox fm?", "context": "CREATE TABLE table_name_48 (owner VARCHAR, branding VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_74 WHERE branding = \"cbc radio 2\"", "question": "What is the branding frequency of cbc radio 2?", "context": "CREATE TABLE table_name_74 (frequency VARCHAR, branding VARCHAR)"}, {"answer": "SELECT location FROM table_name_31 WHERE altitude__metres_ < 6102", "question": "Tell me the location for altitude being less thaan 6102", "context": "CREATE TABLE table_name_31 (location VARCHAR, altitude__metres_ INTEGER)"}, {"answer": "SELECT region FROM table_name_97 WHERE altitude__metres_ = 6854", "question": "Say the region for 6854 altitudes", "context": "CREATE TABLE table_name_97 (region VARCHAR, altitude__metres_ VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_59 WHERE number = 161", "question": "What is the frequency of number 161?", "context": "CREATE TABLE table_name_59 (frequency VARCHAR, number VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_33 WHERE origin = \"bus station\" AND number = 3", "question": "What is the frequency of number 3 with a bus station origin?", "context": "CREATE TABLE table_name_33 (frequency VARCHAR, origin VARCHAR, number VARCHAR)"}, {"answer": "SELECT origin FROM table_name_66 WHERE number > 161", "question": "What is the origin of the one with a number larger than 161?", "context": "CREATE TABLE table_name_66 (origin VARCHAR, number INTEGER)"}, {"answer": "SELECT origin FROM table_name_15 WHERE final_destination = \"brandholmen\"", "question": "What is the origin of the one whose final destination is Brandholmen?", "context": "CREATE TABLE table_name_15 (origin VARCHAR, final_destination VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_70 WHERE time = \"1:19.02.8\"", "question": "What is the highest rank of a rider whose time was 1:19.02.8?", "context": "CREATE TABLE table_name_70 (place INTEGER, time VARCHAR)"}, {"answer": "SELECT revised FROM table_name_48 WHERE mccune_reischauer = \"y\u014fn (s) ry\u014fn (n)\"", "question": "Tell me the revised of mccune reischauer of y\u014fn (s) ry\u014fn (n)", "context": "CREATE TABLE table_name_48 (revised VARCHAR, mccune_reischauer VARCHAR)"}, {"answer": "SELECT hanja FROM table_name_77 WHERE hangul = \"\uc8fc\"", "question": "Name the hanja for hangul of \uc8fc", "context": "CREATE TABLE table_name_77 (hanja VARCHAR, hangul VARCHAR)"}, {"answer": "SELECT hanja FROM table_name_85 WHERE revised = \"eum\"", "question": "Tell me the hanja of eum", "context": "CREATE TABLE table_name_85 (hanja VARCHAR, revised VARCHAR)"}, {"answer": "SELECT model FROM table_name_89 WHERE released = 2005", "question": "What model was released in 2005?", "context": "CREATE TABLE table_name_89 (model VARCHAR, released VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE date = \"9 may 2001\"", "question": "Tell me the score for 9 may 2001", "context": "CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_43 WHERE date = \"25 march 2001\"", "question": "Tell me the competition for 25 march 2001", "context": "CREATE TABLE table_name_43 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT race_winner FROM table_name_48 WHERE event_name = \"southern illinois 100\"", "question": "Who was the Race Winner of the Southern Illinois 100?", "context": "CREATE TABLE table_name_48 (race_winner VARCHAR, event_name VARCHAR)"}, {"answer": "SELECT track FROM table_name_64 WHERE event_name = \"daytona arca 200\"", "question": "At which track did the event Daytona Arca 200 take place?", "context": "CREATE TABLE table_name_64 (track VARCHAR, event_name VARCHAR)"}, {"answer": "SELECT event_name FROM table_name_38 WHERE race_winner = \"ken schrader\" AND track = \"toledo speedway\"", "question": "At which event was Ken Schrader the Race Winner at the Toledo Speedway?", "context": "CREATE TABLE table_name_38 (event_name VARCHAR, race_winner VARCHAR, track VARCHAR)"}, {"answer": "SELECT track FROM table_name_80 WHERE pole_winner = \"frank kimmel\" AND event_name = \"pennsylvania 200\"", "question": "At which track was Frank Kimmel the Pole Winner of the Pennsylvania 200?", "context": "CREATE TABLE table_name_80 (track VARCHAR, pole_winner VARCHAR, event_name VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE race_winner = \"steve wallace\" AND track = \"kentucky speedway\"", "question": "Steve Wallace was a Race Winner at the Kentucky Speedway on what date?", "context": "CREATE TABLE table_name_75 (date VARCHAR, race_winner VARCHAR, track VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_41 WHERE rank < 1", "question": "What is the lowest number of silver owned by a nation that is not ranked number 1?", "context": "CREATE TABLE table_name_41 (silver INTEGER, rank INTEGER)"}, {"answer": "SELECT grid FROM table_name_83 WHERE driver = \"kimi r\u00e4ikk\u00f6nen\"", "question": "What is Driver Kimi R\u00e4ikk\u00f6nen's number on the grid?", "context": "CREATE TABLE table_name_83 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_56 WHERE part_1 = \"1:13.306\"", "question": "Which driver had a Part 1 time of 1:13.306?", "context": "CREATE TABLE table_name_56 (driver VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT current_name FROM table_name_91 WHERE year_first_opened > 2011", "question": "What ride opened after 2011?", "context": "CREATE TABLE table_name_91 (current_name VARCHAR, year_first_opened INTEGER)"}, {"answer": "SELECT result FROM table_name_97 WHERE attendance = \"63,443\"", "question": "Which stadium can hold 63,443 people?", "context": "CREATE TABLE table_name_97 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_5 WHERE date = \"bye\"", "question": "Tell me the number of weeks for bye", "context": "CREATE TABLE table_name_5 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_83 WHERE date = \"december 5, 2005\"", "question": "Tell me the number of weeks for december 5, 2005", "context": "CREATE TABLE table_name_83 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT start_time FROM table_name_48 WHERE date = \"december 24, 2005\"", "question": "Tell me the start time for december 24, 2005", "context": "CREATE TABLE table_name_48 (start_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_90 WHERE venue = \"lincoln financial field\" AND date = \"december 11, 2005\"", "question": "Tell me the result for lincoln financial field december 11, 2005", "context": "CREATE TABLE table_name_90 (result VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_4 WHERE wins < 2 AND class = \"50cc\" AND points = 15", "question": "Tell me the total number of years for wins less than 2 and class of 50cc with points of 15", "context": "CREATE TABLE table_name_4 (year VARCHAR, points VARCHAR, wins VARCHAR, class VARCHAR)"}, {"answer": "SELECT year FROM table_name_55 WHERE class = \"125cc\"", "question": "Tell me the year for class of 125cc", "context": "CREATE TABLE table_name_55 (year VARCHAR, class VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_47 WHERE class = \"50cc\" AND rank = \"8th\"", "question": "Tell me the average wins for class of 50cc and rank of 8th", "context": "CREATE TABLE table_name_47 (wins INTEGER, class VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_9 WHERE class = \"50cc\" AND team = \"tomos\" AND year < 1969", "question": "Tell me the lowest wins for class of 50cc and team of tomos for year less than 1969", "context": "CREATE TABLE table_name_9 (wins INTEGER, year VARCHAR, class VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_65 WHERE silver > 41", "question": "Which country has the highest bronze amount and a silver amount bigger than 41?", "context": "CREATE TABLE table_name_65 (bronze INTEGER, silver INTEGER)"}, {"answer": "SELECT MIN(total) FROM table_name_89 WHERE silver > 2 AND nation = \"russia\" AND gold < 4", "question": "What is the lowest amount of medals Russia has if they have more than 2 silver medals and less than 4 gold medals?", "context": "CREATE TABLE table_name_89 (total INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT points FROM table_name_90 WHERE year = 2005", "question": "How many points did the 2005 1st place team receive?", "context": "CREATE TABLE table_name_90 (points VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_45 WHERE chassis = \"lola b02/00\" AND rank = \"1st\"", "question": "What engine was used by the teams that used a Lola b02/00 chassis and ranked 1st?", "context": "CREATE TABLE table_name_45 (engine VARCHAR, chassis VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_86 WHERE team = \"newman/haas racing\" AND rank = \"1st\"", "question": "How many years did Team Newman/Haas Racing receive a 1st place ranking?", "context": "CREATE TABLE table_name_86 (year VARCHAR, team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(place) FROM table_name_52 WHERE points = 35", "question": "What is the aggregate of place for points being 35?", "context": "CREATE TABLE table_name_52 (place INTEGER, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_86 WHERE place = 5", "question": "Name the fewest points of 5 place", "context": "CREATE TABLE table_name_86 (points INTEGER, place VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_72 WHERE artist = \"vicky gordon\" AND points > 23", "question": "Name the total number of places for vicky gordon and points more than 23", "context": "CREATE TABLE table_name_72 (place VARCHAR, artist VARCHAR, points VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_74 WHERE attendance = \"68,264\"", "question": "Tell me the opponent for attendance of 68,264", "context": "CREATE TABLE table_name_74 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_15 WHERE result = \"l 24\u201321\"", "question": "Tell me the sum of week for result of l 24\u201321", "context": "CREATE TABLE table_name_15 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_32 WHERE attendance = \"54,462\"", "question": "Tell me the result for attendance of 54,462", "context": "CREATE TABLE table_name_32 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_49 WHERE attendance = \"53,899\"", "question": "Tell me the opponent for attendance of 53,899", "context": "CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT pts_[b_] FROM table_name_82 WHERE reb_[b_] > 636 AND no_[a_] = \"50\"", "question": "What is the points that is more than 636 and has a value of 50?", "context": "CREATE TABLE table_name_82 (pts_ VARCHAR, b_ VARCHAR, reb_ VARCHAR, no_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT AVG(reb_)[b_] FROM table_name_64 WHERE no_[a_] = \"8\" AND ast_[b_] < 57", "question": "Which rebound was 8 and has and ast that was less than 57?", "context": "CREATE TABLE table_name_64 (b_ VARCHAR, reb_ INTEGER, no_ VARCHAR, a_ VARCHAR, ast_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_84 WHERE icao = \"tjig\"", "question": "Tell me the country for ICAO of tjig", "context": "CREATE TABLE table_name_84 (country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT country FROM table_name_62 WHERE city = \"san juan\"", "question": "Tell me the country for san juan", "context": "CREATE TABLE table_name_62 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT country FROM table_name_14 WHERE icao = \"tjvq\"", "question": "Tell me the country for ICAO tjvq", "context": "CREATE TABLE table_name_14 (country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT iata FROM table_name_2 WHERE icao = \"tjrv\"", "question": "Tell me the iata for icao of tjrv", "context": "CREATE TABLE table_name_2 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT icao FROM table_name_76 WHERE city = \"isla grande\"", "question": "Tell me the icao of isla grande", "context": "CREATE TABLE table_name_76 (icao VARCHAR, city VARCHAR)"}, {"answer": "SELECT position FROM table_name_35 WHERE mls_team = \"colorado rapids\" AND pick__number > 15", "question": "What position does the Colorado Rapids pick after 15 play?", "context": "CREATE TABLE table_name_35 (position VARCHAR, mls_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT event FROM table_name_16 WHERE acts = \"106 bands\"", "question": "I want to know the events for 106 bands", "context": "CREATE TABLE table_name_16 (event VARCHAR, acts VARCHAR)"}, {"answer": "SELECT nomination FROM table_name_17 WHERE country = \"ukraine\"", "question": "Tell me the nomination for ukraine", "context": "CREATE TABLE table_name_17 (nomination VARCHAR, country VARCHAR)"}, {"answer": "SELECT nomination FROM table_name_12 WHERE director = \"goran paskaljevic\"", "question": "Tell me the nomination for goran paskaljevic", "context": "CREATE TABLE table_name_12 (nomination VARCHAR, director VARCHAR)"}, {"answer": "SELECT AVG(fa_cup_apps) FROM table_name_47 WHERE league_goals = 1 AND total_goals < 1", "question": "Which FA Cup apps has league goals of 1 with total goals less than 1?", "context": "CREATE TABLE table_name_47 (fa_cup_apps INTEGER, league_goals VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT MAX(total_apps) FROM table_name_41 WHERE fa_cup_apps = 26 AND total_goals > 9", "question": "What is the highest apps total with FA cup apps of 26 with total number of goals larger than 9?", "context": "CREATE TABLE table_name_41 (total_apps INTEGER, fa_cup_apps VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT league_goals FROM table_name_39 WHERE fa_cup_apps = 2", "question": "Which league goals has FA cup apps of 2?", "context": "CREATE TABLE table_name_39 (league_goals VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT COUNT(fa_cup_apps) FROM table_name_50 WHERE total_apps > 12 AND league_apps > 38 AND fa_cup_goals > 1", "question": "What FA cup apps has a total larger than 12 and league apps larger than 38, and FA Cup goals larger than 1?", "context": "CREATE TABLE table_name_50 (fa_cup_apps VARCHAR, fa_cup_goals VARCHAR, total_apps VARCHAR, league_apps VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_41 WHERE date = \"december 14, 1975\" AND week > 13", "question": "What was the total attendance on December 14, 1975 after week 13?", "context": "CREATE TABLE table_name_41 (attendance VARCHAR, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_11 WHERE rank > 6 AND gold > 0 AND silver = 2", "question": "What is the sum of all totals with a rank greater than 6, gold greater than 0, and silver greater than 2?", "context": "CREATE TABLE table_name_11 (total INTEGER, silver VARCHAR, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_70 WHERE gold < 1 AND rank = 13 AND bronze > 2", "question": "How many values for silver occur when gold is less than 1, the rank is 13, and bronze is greater than 2?", "context": "CREATE TABLE table_name_70 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_18 WHERE silver = 0 AND total < 1", "question": "What is the average value of Bronze when silver is 0 and the total is less than 1?", "context": "CREATE TABLE table_name_18 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_56 WHERE total = 3 AND silver > 1 AND gold < 1", "question": "What is the lowest value for bronze with a total of 3 and a value for silver greater than 1 while the value of gold is smaller than 1?", "context": "CREATE TABLE table_name_56 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_9 WHERE gold < 1 AND rank > 15 AND total > 1", "question": "How man values for bronze occur when gold is less than 1, rank is greater than 15, and total is greater than 1?", "context": "CREATE TABLE table_name_9 (bronze VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT position FROM table_name_67 WHERE pick = \"234\"", "question": "Name the position of pick 234", "context": "CREATE TABLE table_name_67 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_97 WHERE player = \"vitali yeremeyev\"", "question": "Name the team of vitali yeremeyev", "context": "CREATE TABLE table_name_97 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT result FROM table_name_98 WHERE date = \"2007-09-29\"", "question": "Tell me the result for 2007-09-29", "context": "CREATE TABLE table_name_98 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_40 WHERE attendance = \"64,116\"", "question": "How many weeks have an attendance of 64,116?", "context": "CREATE TABLE table_name_40 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE week > 14", "question": "Which date has a week larger than 14?", "context": "CREATE TABLE table_name_42 (date VARCHAR, week INTEGER)"}, {"answer": "SELECT venue FROM table_name_29 WHERE week < 2", "question": "Which venue has a week smaller than 2?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, week INTEGER)"}, {"answer": "SELECT date FROM table_name_28 WHERE event = \"metallica: escape from the studio\"", "question": "When was the Metallica: Escape from the Studio show?", "context": "CREATE TABLE table_name_28 (date VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE event = \"monsters of rock\" AND acts = \"12 bands\"", "question": "When is the Monsters of Rock show with 12 bands?", "context": "CREATE TABLE table_name_74 (date VARCHAR, event VARCHAR, acts VARCHAR)"}, {"answer": "SELECT result FROM table_name_22 WHERE date = \"15 july\"", "question": "Tell me the result for 15 july", "context": "CREATE TABLE table_name_22 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT no_range FROM table_name_58 WHERE year_built__converted * _ = \"1965-66\"", "question": "Tell me the number range for 1965-66", "context": "CREATE TABLE table_name_58 (no_range VARCHAR, year_built__converted VARCHAR, _ VARCHAR)"}, {"answer": "SELECT year_built__converted * _ FROM table_name_19 WHERE withdrawn = 1983", "question": "Tell me the year built for withdrawn of 1983", "context": "CREATE TABLE table_name_19 (year_built__converted VARCHAR, _ VARCHAR, withdrawn VARCHAR)"}, {"answer": "SELECT year_built__converted * _ FROM table_name_14 WHERE no_built__converted * _ = \"10\"", "question": "Tell me the year built for number built of 10", "context": "CREATE TABLE table_name_14 (year_built__converted VARCHAR, _ VARCHAR, no_built__converted VARCHAR)"}, {"answer": "SELECT result FROM table_name_61 WHERE date = \"2008-12-23\"", "question": "Tell me the result for 2008-12-23", "context": "CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT director FROM table_name_73 WHERE nomination = \"best actor in a leading role\"", "question": "Tell me the director nominated for best actor in a leading role", "context": "CREATE TABLE table_name_73 (director VARCHAR, nomination VARCHAR)"}, {"answer": "SELECT nomination FROM table_name_41 WHERE film_name = \"peresohla zemlia\"", "question": "Tell me the nomination for peresohla zemlia", "context": "CREATE TABLE table_name_41 (nomination VARCHAR, film_name VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_45 WHERE class = \"gt\"", "question": "What are the average laps driven in the GT class?", "context": "CREATE TABLE table_name_45 (laps INTEGER, class VARCHAR)"}, {"answer": "SELECT tsongas__d_ FROM table_name_45 WHERE date = \"may 22, 2007\"", "question": "I want the tsongas of may 22, 2007", "context": "CREATE TABLE table_name_45 (tsongas__d_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_7 WHERE winner = \"nevada\" AND year > 2004", "question": "Tell me the venue for winner of nevada and year more than 2004", "context": "CREATE TABLE table_name_7 (venue VARCHAR, winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE time___et__ = \"1:00 pm\" AND game_site = \"arrowhead stadium\"", "question": "What date is the 1:00 pm game at arrowhead stadium?", "context": "CREATE TABLE table_name_37 (date VARCHAR, time___et__ VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_2 WHERE time___et__ = \"7:00 pm\"", "question": "Where will the game at (ET) of 7:00 pm be at?", "context": "CREATE TABLE table_name_2 (game_site VARCHAR, time___et__ VARCHAR)"}, {"answer": "SELECT driver FROM table_name_15 WHERE laps < 498 AND points < 58 AND car__number > 22 AND winnings = \"$93,514\"", "question": "Who is the Driver that has a Laps smaller than 498,  less than 58 points, a car number bigger than 22 and who has won $93,514?", "context": "CREATE TABLE table_name_15 (driver VARCHAR, winnings VARCHAR, car__number VARCHAR, laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT location FROM table_name_98 WHERE result = \"loss\" AND date = \"20 jan\"", "question": "At what location was there a loss on 20 jan?", "context": "CREATE TABLE table_name_98 (location VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_39 WHERE record = \"2-7\"", "question": "Tell me the venue for record of 2-7", "context": "CREATE TABLE table_name_39 (venue VARCHAR, record VARCHAR)"}, {"answer": "SELECT result FROM table_name_77 WHERE opponent = \"green bay packers\"", "question": "Tell me the result for green bay packers", "context": "CREATE TABLE table_name_77 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE result = \"w 31-21\"", "question": "Tell mem the opponent for result of w 31-21", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT speed FROM table_name_44 WHERE rider = \"peter williams\"", "question": "What is the average speed of rider Peter Williams?", "context": "CREATE TABLE table_name_44 (speed VARCHAR, rider VARCHAR)"}, {"answer": "SELECT time FROM table_name_44 WHERE team = \"triumph\" AND rank < 4", "question": "What is the time/s of team Triumph in those races in which Triumph ranked higher than 4?", "context": "CREATE TABLE table_name_44 (time VARCHAR, team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE year = \"1969\"", "question": "What was the score in 1969?", "context": "CREATE TABLE table_name_9 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT final_round FROM table_name_1 WHERE year = \"1975\"", "question": "In 1975, what was the final round?", "context": "CREATE TABLE table_name_1 (final_round VARCHAR, year VARCHAR)"}, {"answer": "SELECT event_place FROM table_name_61 WHERE time = \"61:32\"", "question": "Where did someone run a 61:32", "context": "CREATE TABLE table_name_61 (event_place VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_95 WHERE name = \"derek graham\"", "question": "What was Derek Graham's time?", "context": "CREATE TABLE table_name_95 (time VARCHAR, name VARCHAR)"}, {"answer": "SELECT event_place FROM table_name_25 WHERE time = \"58:33\"", "question": "Where did someone run a 58:33?", "context": "CREATE TABLE table_name_25 (event_place VARCHAR, time VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE pick__number < 29 AND mls_team = \"chicago fire\"", "question": "Tell me the player for pick number less than 29 and mls team of chicago fire", "context": "CREATE TABLE table_name_97 (player VARCHAR, pick__number VARCHAR, mls_team VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_21 WHERE partner = \"yvonne meusburger\"", "question": "Tell me the opponents for partner of yvonne meusburger", "context": "CREATE TABLE table_name_21 (opponents VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE opponents = \"raffaella bindi biljana pawlowa-dimitrova\"", "question": "Tell me the date for opponents of raffaella bindi biljana pawlowa-dimitrova", "context": "CREATE TABLE table_name_46 (date VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT MAX(time) FROM table_name_48 WHERE heat_rank = 8 AND lane > 2", "question": "Tell me the highest time for heat rank of 8 and lane more than 2", "context": "CREATE TABLE table_name_48 (time INTEGER, heat_rank VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(time) FROM table_name_63 WHERE swimmer = \"apostolos tsagkarakis\" AND lane < 6", "question": "Tell me the least time for apostolos tsagkarakis for lane less than 6", "context": "CREATE TABLE table_name_63 (time INTEGER, swimmer VARCHAR, lane VARCHAR)"}, {"answer": "SELECT method FROM table_name_28 WHERE event = \"pride 33\"", "question": "Tell me the method for pride 33", "context": "CREATE TABLE table_name_28 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_97 WHERE event = \"total combat 15\"", "question": "Tell me the lowest round for total combat 15", "context": "CREATE TABLE table_name_97 (round INTEGER, event VARCHAR)"}, {"answer": "SELECT week FROM table_name_34 WHERE opponent = \"pittsburgh steelers\"", "question": "Tell me the week for pittsburgh steelers opponent", "context": "CREATE TABLE table_name_34 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT week FROM table_name_19 WHERE record = \"0-1\"", "question": "Tell me the week for record of 0-1", "context": "CREATE TABLE table_name_19 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT time FROM table_name_9 WHERE opponent = \"buffalo bills\"", "question": "Tell me the time for buffalo bills", "context": "CREATE TABLE table_name_9 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_87 WHERE week = \"hf\"", "question": "Tell me thee record for week of hf", "context": "CREATE TABLE table_name_87 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_98 WHERE week = \"1\"", "question": "Tell me the game site for week of 1", "context": "CREATE TABLE table_name_98 (game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_55 WHERE competition = \"1990 world cup qualifying\"", "question": "What was the result of the 1990 world cup qualifying competition?", "context": "CREATE TABLE table_name_55 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE venue = \"torrance, california\"", "question": "What was the Score of the match in Torrance, California?", "context": "CREATE TABLE table_name_92 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE type = \"international friendly\" AND date = \"17 august 2013\"", "question": "Tell me the score for international friendly 17 august 2013", "context": "CREATE TABLE table_name_70 (score VARCHAR, type VARCHAR, date VARCHAR)"}, {"answer": "SELECT position FROM table_name_84 WHERE mls_team = \"metrostars\"", "question": "What position did the MLS team metrostars pick?", "context": "CREATE TABLE table_name_84 (position VARCHAR, mls_team VARCHAR)"}, {"answer": "SELECT mls_team FROM table_name_97 WHERE affiliation = \"yale university\"", "question": "What MLS team is affiliated with yale university?", "context": "CREATE TABLE table_name_97 (mls_team VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_28 WHERE pick__number < 32", "question": "What affiliations have Pick #s under 32?", "context": "CREATE TABLE table_name_28 (affiliation VARCHAR, pick__number INTEGER)"}, {"answer": "SELECT player FROM table_name_2 WHERE position = \"f\"", "question": "What players have a position of F?", "context": "CREATE TABLE table_name_2 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT goals FROM table_name_63 WHERE caps = \"73\"", "question": "How many goals were scored when there were 73 caps?", "context": "CREATE TABLE table_name_63 (goals VARCHAR, caps VARCHAR)"}, {"answer": "SELECT build_year FROM table_name_44 WHERE total_production = 150", "question": "Tell me the build year for total production of 150", "context": "CREATE TABLE table_name_44 (build_year VARCHAR, total_production VARCHAR)"}, {"answer": "SELECT power_output_\uff08kw\uff09 FROM table_name_38 WHERE total_production = 100", "question": "Tell me the power output for total production of 100", "context": "CREATE TABLE table_name_38 (power_output_\uff08kw\uff09 VARCHAR, total_production VARCHAR)"}, {"answer": "SELECT total_production FROM table_name_72 WHERE model = \"nd5\"", "question": "Name the total production for model nd5", "context": "CREATE TABLE table_name_72 (total_production VARCHAR, model VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_85 WHERE position_s_ = \"guard\" AND season_s_ = \"2006\"", "question": "What is the nationality of the player who played guard in 2006?", "context": "CREATE TABLE table_name_85 (nationality VARCHAR, position_s_ VARCHAR, season_s_ VARCHAR)"}, {"answer": "SELECT SUM(bp_2nd_comp__) AS \u02dac_ FROM table_name_33 WHERE bp_azeo__\u02dac_ = 57.5", "question": "Tell me the sum of bp 2nd comp with bp azeo of 57.5", "context": "CREATE TABLE table_name_33 (bp_2nd_comp__ INTEGER, bp_azeo__\u02dac_ VARCHAR)"}, {"answer": "SELECT rider FROM table_name_24 WHERE laps = 18 AND time = \"+25.165\"", "question": "Which rider went 18 laps ending +25.165 behind the leader?", "context": "CREATE TABLE table_name_24 (rider VARCHAR, laps VARCHAR, time VARCHAR)"}, {"answer": "SELECT result FROM table_name_1 WHERE year > 2002", "question": "What is the result for a year later than 2002?", "context": "CREATE TABLE table_name_1 (result VARCHAR, year INTEGER)"}, {"answer": "SELECT result FROM table_name_56 WHERE year = 1999", "question": "What is the result for the year 1999?", "context": "CREATE TABLE table_name_56 (result VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_88 WHERE team = \"dhg tom's racing\"", "question": "Tell me the engine for dhg tom's racing", "context": "CREATE TABLE table_name_88 (engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_21 WHERE driver = \"toshihiro kaneishi\"", "question": "Name the team for toshihiro kaneishi", "context": "CREATE TABLE table_name_21 (team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_14 WHERE chinese_title = \"\u6557\u72ac\u5973\u738b\"", "question": "I want the average year of \u6557\u72ac\u5973\u738b", "context": "CREATE TABLE table_name_14 (year INTEGER, chinese_title VARCHAR)"}, {"answer": "SELECT role FROM table_name_38 WHERE year = 2005", "question": "Tell me the role for 2005", "context": "CREATE TABLE table_name_38 (role VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_65 WHERE english_title = \"my queen\"", "question": "Tell me the average year for my queen", "context": "CREATE TABLE table_name_65 (year INTEGER, english_title VARCHAR)"}, {"answer": "SELECT singles_w_l FROM table_name_7 WHERE years_played > 1 AND highest_singles_ranking = \"1346\"", "question": "Tell me singles W-L that has years larger than 1 and highest singles ranking of 1346", "context": "CREATE TABLE table_name_7 (singles_w_l VARCHAR, years_played VARCHAR, highest_singles_ranking VARCHAR)"}, {"answer": "SELECT best_finish FROM table_name_10 WHERE top_10s > 0 AND scoring_average = 73.04", "question": "When the Top 10s is larger than 0 and the scoring average 73.04, what is the best finish?", "context": "CREATE TABLE table_name_10 (best_finish VARCHAR, top_10s VARCHAR, scoring_average VARCHAR)"}, {"answer": "SELECT result FROM table_name_54 WHERE venue = \"praterstadion, vienna\" AND competition = \"euro 1980 qualifier\"", "question": "Tell me the score of praterstadion, vienna, and competition of euro 1980 qualifier", "context": "CREATE TABLE table_name_54 (result VARCHAR, venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE date = \"28 march 1979\"", "question": "I want the score for 28 march 1979", "context": "CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE date = \"30 april 1977\"", "question": "I want the score for 30 april 1977", "context": "CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT event FROM table_name_38 WHERE competition = \"world championships\" AND year < 2011", "question": "What competition was the World Championships before 2011?", "context": "CREATE TABLE table_name_38 (event VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT event FROM table_name_56 WHERE venue = \"erfurt, germany\"", "question": "What event took place in Erfurt, Germany?", "context": "CREATE TABLE table_name_56 (event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT team_nickname FROM table_name_21 WHERE enrollment > 42 OFFSET 326", "question": "Name the team nickname for enrollment more than 42,326", "context": "CREATE TABLE table_name_21 (team_nickname VARCHAR, enrollment INTEGER)"}, {"answer": "SELECT points_against FROM table_name_9 WHERE lost = \"3\"", "question": "With the lost of 3, how many points?", "context": "CREATE TABLE table_name_9 (points_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_38 WHERE matches = \"16\"", "question": "How many against points for 16 matches?", "context": "CREATE TABLE table_name_38 (points_against VARCHAR, matches VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_36 WHERE points_against = \"51\"", "question": "The 51 points against, how many are for?", "context": "CREATE TABLE table_name_36 (points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_36 WHERE played_in = \"total\"", "question": "For the played in, what are the total points?", "context": "CREATE TABLE table_name_36 (points_for VARCHAR, played_in VARCHAR)"}, {"answer": "SELECT country FROM table_name_69 WHERE team = \"eurasia astana\"", "question": "What country is the Eurasia Astana team from?", "context": "CREATE TABLE table_name_69 (country VARCHAR, team VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_38 WHERE 2012 = \"4r\" AND 2009 = \"a\"", "question": "Tell me the 2008 for 2012 of 4r and 2009 of a", "context": "CREATE TABLE table_name_38 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_69 WHERE 2011 = \"olympic games\"", "question": "Tell me the 2008 of 2001 olympic games", "context": "CREATE TABLE table_name_69 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_26 WHERE 2009 = \"atp masters series\"", "question": "Tell me the tournament of 2009 of atp masters series", "context": "CREATE TABLE table_name_26 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_73 WHERE tournament = \"monte carlo masters\"", "question": "Tell me the 2011 tournament of monte carlo masters", "context": "CREATE TABLE table_name_73 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_40 WHERE 2012 = \"2r\" AND 2010 = \"2r\" AND 2009 = \"2r\"", "question": "Tell me the 2011 with 2012 of 2r", "context": "CREATE TABLE table_name_40 (Id VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_55 WHERE position = \"running back\" AND college = \"california\"", "question": "What was the latest round with a running back from a California college?", "context": "CREATE TABLE table_name_55 (round INTEGER, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT result FROM table_name_36 WHERE date = \"november 25, 1973\"", "question": "What were the results for november 25, 1973?", "context": "CREATE TABLE table_name_36 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_60 WHERE week = 14", "question": "Which Opponent had a week of 14?", "context": "CREATE TABLE table_name_60 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE opponent = \"new orleans saints\"", "question": "Tell me the date for new orleans saints", "context": "CREATE TABLE table_name_22 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_46 WHERE week = 4", "question": "Tell me the result for week of 4", "context": "CREATE TABLE table_name_46 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_50 WHERE result = \"w 10-3\"", "question": "Tell me the lowest week for w 10-3", "context": "CREATE TABLE table_name_50 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT AVG(heat_rank) FROM table_name_48 WHERE lane = 2 AND time < 27.66", "question": "Tell me the average heat rank with a lane of 2 and time less than 27.66", "context": "CREATE TABLE table_name_48 (heat_rank INTEGER, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(overall_rank) FROM table_name_37 WHERE lane < 8 AND time < 27.16", "question": "Tell me the highest overall rank for lane less than 8 and time less than 27.16", "context": "CREATE TABLE table_name_37 (overall_rank INTEGER, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_68 WHERE swimmer = \"luke hall\" AND overall_rank > 105", "question": "Tell me the total number of time for luke hall overall rank being larger than 105", "context": "CREATE TABLE table_name_68 (time VARCHAR, swimmer VARCHAR, overall_rank VARCHAR)"}, {"answer": "SELECT left_team FROM table_name_60 WHERE name = \"josh vanlandingham\"", "question": "Tell me the left team for josh vanlandingham", "context": "CREATE TABLE table_name_60 (left_team VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_86 WHERE goals < 7 AND rank < 7 AND appearances > 8", "question": "Who had less than 7 goals, was ranked under 7, and had more than 8 appearances?", "context": "CREATE TABLE table_name_86 (name VARCHAR, appearances VARCHAR, goals VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_5 WHERE name = \"fernando cavenaghi\" AND appearances < 7", "question": "What was the sum of ranks of those called Fernando Cavenaghi who appeared less than 7.", "context": "CREATE TABLE table_name_5 (rank INTEGER, name VARCHAR, appearances VARCHAR)"}, {"answer": "SELECT COUNT(appearances) FROM table_name_95 WHERE goals = 5 AND rank < 7", "question": "How many appearances were made by people that had 5 goals and less than 7 rank?", "context": "CREATE TABLE table_name_95 (appearances VARCHAR, goals VARCHAR, rank VARCHAR)"}, {"answer": "SELECT surface FROM table_name_85 WHERE partner = \"vania king\"", "question": "What was the surface for the game that had a partner of vania king?", "context": "CREATE TABLE table_name_85 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_80 WHERE date = \"october 20, 2013\"", "question": "Who was the partner for the game on October 20, 2013?", "context": "CREATE TABLE table_name_80 (partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_29 WHERE round = \"e\"", "question": "Tell me the name for round of e", "context": "CREATE TABLE table_name_29 (name VARCHAR, round VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_74 WHERE name = \"preliminary final\"", "question": "Name the team one for preliminary final", "context": "CREATE TABLE table_name_74 (team_1 VARCHAR, name VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_64 WHERE round = \"3\"", "question": "Name the team 1 for round 3", "context": "CREATE TABLE table_name_64 (team_1 VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_36 WHERE match = \"2nd elimination final\"", "question": "Name the round for 2nd elimination final", "context": "CREATE TABLE table_name_36 (round VARCHAR, match VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_32 WHERE driver = \"alexander wurz\" AND laps < 58", "question": "In less than 58 laps, what is the highest grid for Alexander Wurz?", "context": "CREATE TABLE table_name_32 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_24 WHERE grid = 19", "question": "What is the total laps for grid 19?", "context": "CREATE TABLE table_name_24 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_98 WHERE winning_team = \"mobilecast impul\" AND circuit = \"twin ring motegi\"", "question": "Name the winning driver for mobilecast impul and twin ring motegi", "context": "CREATE TABLE table_name_98 (winning_driver VARCHAR, winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_24 WHERE round = 7", "question": "Name the winning driver for round 7", "context": "CREATE TABLE table_name_24 (winning_driver VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_25 WHERE gold = 3 AND rank < 3", "question": "Name the number of total for 3 gold and rank less than 3", "context": "CREATE TABLE table_name_25 (total VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT name FROM table_name_19 WHERE investigation = \"thrombus imaging\"", "question": "Tell me the naame of Investigation of thrombus imaging", "context": "CREATE TABLE table_name_19 (name VARCHAR, investigation VARCHAR)"}, {"answer": "SELECT name FROM table_name_68 WHERE route_of_administration = \"iv\" AND investigation = \"thrombus imaging\"", "question": "Tell me the name for Investigation of thrombus imaging and Route of administration of iv", "context": "CREATE TABLE table_name_68 (name VARCHAR, route_of_administration VARCHAR, investigation VARCHAR)"}, {"answer": "SELECT in_vitro___in_vivo FROM table_name_96 WHERE route_of_administration = \"iv\" AND investigation = \"somatostatin receptor imaging\"", "question": "Tell me the in-vitro for Route of administration of iv and Investigation of somatostatin receptor imaging", "context": "CREATE TABLE table_name_96 (in_vitro___in_vivo VARCHAR, route_of_administration VARCHAR, investigation VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_37 WHERE position = \"d\" AND player = \"tim regan\"", "question": "The player is Tim Regan and the pick # is position of d, what's the sum?", "context": "CREATE TABLE table_name_37 (pick__number INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_66 WHERE pick__number = 16", "question": "The position that has a pick # of 16 is what?", "context": "CREATE TABLE table_name_66 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_39 WHERE player = \"damani ralph\"", "question": "Damani Ralph is associated with which lowest pick #?", "context": "CREATE TABLE table_name_39 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_5 WHERE mls_team = \"chicago fire\"", "question": "Chicago fire has a total of a total of how many #s?", "context": "CREATE TABLE table_name_5 (pick__number VARCHAR, mls_team VARCHAR)"}, {"answer": "SELECT score__l__ = _score_in_legs, __s__ = _score_in_sets FROM table_name_51 WHERE year < 2012", "question": "Tell me the score for score in legs and year less than 2012", "context": "CREATE TABLE table_name_51 (score__l__ VARCHAR, _score_in_legs VARCHAR, __s__ VARCHAR, _score_in_sets VARCHAR, year INTEGER)"}, {"answer": "SELECT championship FROM table_name_30 WHERE outcome = \"runner-up\" AND year = 2010", "question": "Tell me the championship for runner-up outcome of 2010", "context": "CREATE TABLE table_name_30 (championship VARCHAR, outcome VARCHAR, year VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_12 WHERE championship = \"premier league darts\"", "question": "Tell me the outcome for premier league darts", "context": "CREATE TABLE table_name_12 (outcome VARCHAR, championship VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_41 WHERE outcome = \"runner-up\" AND championship = \"world darts championship\"", "question": "Tell me the sum of Year for outcome of runner-up for world darts championship", "context": "CREATE TABLE table_name_41 (year INTEGER, outcome VARCHAR, championship VARCHAR)"}, {"answer": "SELECT COUNT(points_won) FROM table_name_74 WHERE year = \"2007\" AND total_matches > 5", "question": "In 2007, how many points were won when more than 5 matches were played?", "context": "CREATE TABLE table_name_74 (points_won VARCHAR, year VARCHAR, total_matches VARCHAR)"}, {"answer": "SELECT AVG(total_matches) FROM table_name_73 WHERE points__percentage > 33.3 AND year = \"2007\"", "question": "In 2007, what is the average total matches with points % larger than 33.3?", "context": "CREATE TABLE table_name_73 (total_matches INTEGER, points__percentage VARCHAR, year VARCHAR)"}, {"answer": "SELECT player FROM table_name_74 WHERE school_club_team = \"georgia tech\"", "question": "Which player attended school at Georgia Tech?", "context": "CREATE TABLE table_name_74 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_87 WHERE player = \"ed stokes\"", "question": "What position does Ed Stokes hold?", "context": "CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_93 WHERE player = \"michael stewart\"", "question": "What is Michael Stewart's school or club team?", "context": "CREATE TABLE table_name_93 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_8 WHERE date = \"may 29, 2010\"", "question": "What tournament was played on May 29, 2010?", "context": "CREATE TABLE table_name_8 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_50 WHERE partner = \"paula ormaechea\"", "question": "What was the surface made of in the contest where Paula Ormaechea was the partner?", "context": "CREATE TABLE table_name_50 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT method FROM table_name_1 WHERE record = \"4-2\"", "question": "Tell me the method with a record of 4-2", "context": "CREATE TABLE table_name_1 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_78 WHERE opponent = \"yukiya naito\"", "question": "Tell me the record for yukiya naito", "context": "CREATE TABLE table_name_78 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_25 WHERE opponent = \"kazuhiro nakamura\"", "question": "Tell me the record for kazuhiro nakamura", "context": "CREATE TABLE table_name_25 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_60 WHERE opponent = \"stanislav nuschik\"", "question": "Tell me the method for stanislav nuschik", "context": "CREATE TABLE table_name_60 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT res FROM table_name_88 WHERE event = \"ifl: los angeles\"", "question": "What was the Result of IFL: Los Angeles?", "context": "CREATE TABLE table_name_88 (res VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_4 WHERE res = \"win\" AND opponent = \"shane ott\"", "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 crystal_structure FROM table_name_67 WHERE no_of_cu_o_planes_in_unit_cell = 3 AND t_c__k_ = 110", "question": "Which crystal structures has a Tc(K) of 110 and the number of Cu-O planes in the unit cell is 3?", "context": "CREATE TABLE table_name_67 (crystal_structure VARCHAR, no_of_cu_o_planes_in_unit_cell VARCHAR, t_c__k_ VARCHAR)"}, {"answer": "SELECT gold FROM table_name_46 WHERE total > 33", "question": "Name the gold with total larger than 33", "context": "CREATE TABLE table_name_46 (gold VARCHAR, total INTEGER)"}, {"answer": "SELECT MIN(gold) FROM table_name_54 WHERE nation = \"tanzania\" AND bronze < 0", "question": "Name the fewest gold for tanzania with bronze less than 0", "context": "CREATE TABLE table_name_54 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_17 WHERE week = 10", "question": "Who is the opponent for week 10?", "context": "CREATE TABLE table_name_17 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_81 WHERE total > 32", "question": "For countries that won more than 32 gold medals, what was the highest number of golds?", "context": "CREATE TABLE table_name_81 (gold INTEGER, total INTEGER)"}, {"answer": "SELECT fourth_place FROM table_name_36 WHERE year = 2010", "question": "Tell me fourth place for year of 2010", "context": "CREATE TABLE table_name_36 (fourth_place VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_81 WHERE competition = \"2010 fifa world cup qualification\"", "question": "Tell me the result for 2010 fifa world cup qualification", "context": "CREATE TABLE table_name_81 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE competition = \"2010 fifa world cup qualification\"", "question": "Tell me the date for 2010 fifa world cup qualification", "context": "CREATE TABLE table_name_85 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT surface FROM table_name_34 WHERE date = \"november 28, 2010\"", "question": "Tell me the surface for november 28, 2010", "context": "CREATE TABLE table_name_34 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_99 WHERE surface = \"hard\" AND score = \"6\u20131, 6\u20132\"", "question": "Tell me the tournament with a hard surface for 6\u20131, 6\u20132", "context": "CREATE TABLE table_name_99 (tournament VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE score = \"6\u20133, 6\u20132\"", "question": "Tell me the date for 6\u20133, 6\u20132", "context": "CREATE TABLE table_name_87 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE opponent_in_the_final = \"johanna konta\"", "question": "Tell me the date for johanna konta", "context": "CREATE TABLE table_name_8 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT time FROM table_name_42 WHERE rank > 3 AND rider = \"brian finch\"", "question": "What is the time value for the rider Brian Finch and a rank greater than 3?", "context": "CREATE TABLE table_name_42 (time VARCHAR, rank VARCHAR, rider VARCHAR)"}, {"answer": "SELECT result FROM table_name_40 WHERE director = \"sergio leone\" AND project = \"once upon a time in the west\"", "question": "What result does the project Once Upon A Time In The West, directed by Sergio Leone have?", "context": "CREATE TABLE table_name_40 (result VARCHAR, director VARCHAR, project VARCHAR)"}, {"answer": "SELECT year FROM table_name_92 WHERE project = \"bulworth\"", "question": "What year was Bulworth nominated?", "context": "CREATE TABLE table_name_92 (year VARCHAR, project VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_16 WHERE project = \"the untouchables\"", "question": "What is the average Year for the project The Untouchables?", "context": "CREATE TABLE table_name_16 (year INTEGER, project VARCHAR)"}, {"answer": "SELECT section FROM table_name_29 WHERE position = \"8th\" AND season = \"2003\"", "question": "Tell me the section for position of 8th and season of 2003", "context": "CREATE TABLE table_name_29 (section VARCHAR, position VARCHAR, season VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE week = 17", "question": "What is the date of week 17?", "context": "CREATE TABLE table_name_35 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_29 WHERE opponent = \"tampa bay buccaneers\"", "question": "What was the latest week that the Tampa Bay Buccaneers were an opponent?", "context": "CREATE TABLE table_name_29 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT MIN(tries) FROM table_name_6 WHERE club = \"leicester tigers\" AND points < 207", "question": "Name the fewest tries for leicester tigers with points less than 207", "context": "CREATE TABLE table_name_6 (tries INTEGER, club VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE opponent = \"st albans city\" AND result = \"drew 0-0\"", "question": "Name the date of st albans city for result of drew 0-0", "context": "CREATE TABLE table_name_73 (date VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE date = \"15 august 2006\"", "question": "Name the venue for 15 august 2006", "context": "CREATE TABLE table_name_89 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_4 WHERE opponent = \"tamworth\" AND venue = \"home\"", "question": "Name the most attendance for tamworth with home venue", "context": "CREATE TABLE table_name_4 (attendance INTEGER, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_82 WHERE date = \"10 october 2006\"", "question": "Name the least attendance for 10 october 2006", "context": "CREATE TABLE table_name_82 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_12 WHERE total = 19 AND silver = 8 AND rank = \"31\"", "question": "I want the average bronze for total of 19 and silver of 8 with rank of 31", "context": "CREATE TABLE table_name_12 (bronze INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_41 WHERE rank = \"43\" AND total < 11", "question": "Tell me the average bronze for rank of 43 and total less than 11", "context": "CREATE TABLE table_name_41 (bronze INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT format FROM table_name_31 WHERE frequency = \"1290 khz\"", "question": "Say the frequency of 1290 khz", "context": "CREATE TABLE table_name_31 (format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT timeslot FROM table_name_21 WHERE calls = \"wrko\"", "question": "Tell me the timeslot of calls of wrko", "context": "CREATE TABLE table_name_21 (timeslot VARCHAR, calls VARCHAR)"}, {"answer": "SELECT format FROM table_name_56 WHERE calls = \"wrko\"", "question": "Tell me the format for calls of wrko", "context": "CREATE TABLE table_name_56 (format VARCHAR, calls VARCHAR)"}, {"answer": "SELECT calls FROM table_name_88 WHERE frequency = \"1290 khz\"", "question": "Tell me the calls for frequency of 1290 khz", "context": "CREATE TABLE table_name_88 (calls VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT branding FROM table_name_88 WHERE frequency = \"680 khz\"", "question": "Tell me the branding for frequency of 680 khz", "context": "CREATE TABLE table_name_88 (branding VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT timeslot FROM table_name_74 WHERE calls = \"whyn\"", "question": "Tell me the timeslot for calls of whyn", "context": "CREATE TABLE table_name_74 (timeslot VARCHAR, calls VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_56 WHERE country = \"bolivia\" AND lane > 6", "question": "For how long did Bolivia have a lane greater than 6?", "context": "CREATE TABLE table_name_56 (time VARCHAR, country VARCHAR, lane VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_48 WHERE heat_rank = 7", "question": "In heat rank 7, what is the sum of lanes?", "context": "CREATE TABLE table_name_48 (lane INTEGER, heat_rank VARCHAR)"}, {"answer": "SELECT country FROM table_name_72 WHERE heat_rank < 8 AND overall_rank = \"56\"", "question": "Which country is ranked 56 overall and has a heat rank smaller than 8?", "context": "CREATE TABLE table_name_72 (country VARCHAR, heat_rank VARCHAR, overall_rank VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_24 WHERE overall_rank = \"79\" AND time > 26.1", "question": "What is the greatest lane with an overall rank of 79 and a time larger than 26.1?", "context": "CREATE TABLE table_name_24 (lane INTEGER, overall_rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_80 WHERE venue = \"metropolitan stadium\" AND attendance > 47 OFFSET 644", "question": "Tell me the highest week for metropolitan stadium for attendance more than 47,644", "context": "CREATE TABLE table_name_80 (week INTEGER, venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_25 WHERE manager = \"serik berdalin\" AND drawn > 4", "question": "Name the sum of played for serik berdalin and drawn more than 4", "context": "CREATE TABLE table_name_25 (played INTEGER, manager VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(total_seats) FROM table_name_28 WHERE pr_seats = 48 AND district_seats > 73", "question": "Who had the highest total PR seats of 48 with a District seat larger than than 73?", "context": "CREATE TABLE table_name_28 (total_seats INTEGER, pr_seats VARCHAR, district_seats VARCHAR)"}, {"answer": "SELECT party FROM table_name_97 WHERE year = \"1955\" AND candidate = \"thomas mitchell\"", "question": "In 1955 which party did Thomas Mitchell belong to?", "context": "CREATE TABLE table_name_97 (party VARCHAR, year VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT days FROM table_name_79 WHERE party = \"ulster unionist\" AND constituency = \"fermanagh and south tyrone\"", "question": "What are the number of days did the ulster unionist Party have the constituate fermanagh and south tyrone?", "context": "CREATE TABLE table_name_79 (days VARCHAR, party VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT days FROM table_name_18 WHERE year = \"1945\" AND constituency = \"heywood and radcliffe\"", "question": "What are the number of days in 1945 where the constituent was heywood and radcliffe?", "context": "CREATE TABLE table_name_18 (days VARCHAR, year VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT year FROM table_name_15 WHERE party = \"liberal\" AND constituency = \"hazel grove\"", "question": "What year was Hazel Grove the constituent for the liberal party?", "context": "CREATE TABLE table_name_15 (year VARCHAR, party VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_74 WHERE grid > 12 AND bike = \"ducati 999rs\" AND rider = \"dean ellison\"", "question": "Tell me the average Laps for grid larger than 12 and bikes of ducati 999rs for dean ellison", "context": "CREATE TABLE table_name_74 (laps INTEGER, rider VARCHAR, grid VARCHAR, bike VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_40 WHERE grid < 22 AND rider = \"ruben xaus\"", "question": "Tell me the highest Laps for grid less than 22 and riderS of ruben xaus", "context": "CREATE TABLE table_name_40 (laps INTEGER, grid VARCHAR, rider VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_14 WHERE rider = \"james toseland\"", "question": "Tell me the total number of grid for rider of james toseland", "context": "CREATE TABLE table_name_14 (grid VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_45 WHERE time = \"35:26.734\" AND grid > 2", "question": "Tell me the least Laps for grid larger than 2 with 35:26.734", "context": "CREATE TABLE table_name_45 (laps INTEGER, time VARCHAR, grid VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE week = 13", "question": "Tell me the date with week of 13", "context": "CREATE TABLE table_name_21 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_74 WHERE attendance = \"48,113\"", "question": "Tell me the average week for attendance of 48,113", "context": "CREATE TABLE table_name_74 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT album FROM table_name_94 WHERE year < 2005 AND label = \"ministry of sound\"", "question": "Which Album had a year less than 2005 with a Label by Ministry of Sound?", "context": "CREATE TABLE table_name_94 (album VARCHAR, year VARCHAR, label VARCHAR)"}, {"answer": "SELECT album FROM table_name_32 WHERE year > 2005 AND country = \"australia\"", "question": "Which Album had a bigger year than 2005 and whose country was Australia?", "context": "CREATE TABLE table_name_32 (album VARCHAR, year VARCHAR, country VARCHAR)"}, {"answer": "SELECT song FROM table_name_33 WHERE label = \"central station\" AND album = \"various - wild nights 4\"", "question": "Which song had Central Station as a label and whose album was Various - Wild Nights 4?", "context": "CREATE TABLE table_name_33 (song VARCHAR, label VARCHAR, album VARCHAR)"}, {"answer": "SELECT venue FROM table_name_63 WHERE opponent = \"zimbabwe\"", "question": "Where did Zimbabwe play?", "context": "CREATE TABLE table_name_63 (venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE opponent = \"canada\"", "question": "What is the date when Canada played?", "context": "CREATE TABLE table_name_68 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_26 WHERE rank = 9 AND bronze < 2", "question": "Tell me the lowest silver for rank of 9 and bronze less than 2", "context": "CREATE TABLE table_name_26 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT report FROM table_name_66 WHERE winning_driver = \"raymond sommer\"", "question": "Name the report for raymond sommer", "context": "CREATE TABLE table_name_66 (report VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_41 WHERE name = \"monaco grand prix\"", "question": "Name the winning driver for monaco grand prix", "context": "CREATE TABLE table_name_41 (winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_95 WHERE winning_driver = \"marcel lehoux\"", "question": "Name the circuit for marcel lehoux", "context": "CREATE TABLE table_name_95 (circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT report FROM table_name_48 WHERE winning_driver = \"per-viktor widengren\" AND winning_constructor = \"alfa romeo\"", "question": "Name the report for per-viktor widengren and alfa romeo", "context": "CREATE TABLE table_name_48 (report VARCHAR, winning_driver VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE location = \"warsaw\" AND year = 1929", "question": "Tell me the date for warsaw 1929", "context": "CREATE TABLE table_name_50 (date VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_8 WHERE location = \"warsaw\" AND year = 1929", "question": "Tell me the result for warsaw 1929", "context": "CREATE TABLE table_name_8 (result VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_34 WHERE location = \"harrogate\"", "question": "Tell me the result for harrogate", "context": "CREATE TABLE table_name_34 (result VARCHAR, location VARCHAR)"}, {"answer": "SELECT overall_rank FROM table_name_50 WHERE swimmer = \"roland schoeman\"", "question": "Tell me the overall rank for roland schoeman", "context": "CREATE TABLE table_name_50 (overall_rank VARCHAR, swimmer VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_45 WHERE rank > 1 AND gold = 4", "question": "How many Silver medals did nation who is ranked greater than 1 and has 4 Gold medals have?", "context": "CREATE TABLE table_name_45 (silver INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_59 WHERE silver > 6 AND gold < 8", "question": "Which nation has more than 6 Silver medals and fewer than 8 Gold medals?", "context": "CREATE TABLE table_name_59 (total INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_51 WHERE total < 24 AND gold > 7", "question": "What is the rank of the Nation that has fewer than 24 total medals are more than 7 Gold medals?", "context": "CREATE TABLE table_name_51 (rank INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_75 WHERE bronze > 1 AND gold < 4", "question": "What is the rank of the nation that has more than 1 Bronze medals and fewer than 4 Gold medals?", "context": "CREATE TABLE table_name_75 (rank INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_92 WHERE gold = 4 AND nation = \"belarus (blr)\" AND bronze > 4", "question": "How many silver medals does Belarus (blr) along with 4 gold and 4 bronze?", "context": "CREATE TABLE table_name_92 (silver INTEGER, bronze VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_44 WHERE nation = \"belarus (blr)\" AND total < 15", "question": "What rank is Belarus (BLR), which earned 15 medals total?", "context": "CREATE TABLE table_name_44 (rank INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT name FROM table_name_37 WHERE date = \"24 september\"", "question": "What was the name of the race on 24 September?", "context": "CREATE TABLE table_name_37 (name VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_72 WHERE date = \"9 july\"", "question": "What is the name of the race on 9 July?", "context": "CREATE TABLE table_name_72 (name VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_67 WHERE winning_constructor = \"maserati\" AND winning_drivers = \"giuseppe campari\"", "question": "What was the race that was won by a Maserati being driven by Giuseppe Campari?", "context": "CREATE TABLE table_name_67 (circuit VARCHAR, winning_constructor VARCHAR, winning_drivers VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE winning_drivers = \"louis chiron\"", "question": "What date was the race won by Louis Chiron?", "context": "CREATE TABLE table_name_81 (date VARCHAR, winning_drivers VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_81 WHERE winning_drivers = \"tazio nuvolari\"", "question": "What brand of vehicle won a race driven by Tazio Nuvolari?", "context": "CREATE TABLE table_name_81 (winning_constructor VARCHAR, winning_drivers VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE winning_drivers = \"tazio nuvolari\"", "question": "What race was won by Tazio Nuvolari?", "context": "CREATE TABLE table_name_63 (name VARCHAR, winning_drivers VARCHAR)"}, {"answer": "SELECT result FROM table_name_46 WHERE week < 4 AND date = \"september 7, 1986\"", "question": "Tell me the result for week less than 4 and september 7, 1986", "context": "CREATE TABLE table_name_46 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE week = 3", "question": "Tell me the result for week of 3", "context": "CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_77 WHERE attendance < 32 OFFSET 738", "question": "Tell me the lowest week for attedance less thaan 32,738", "context": "CREATE TABLE table_name_77 (week INTEGER, attendance INTEGER)"}, {"answer": "SELECT ship FROM table_name_52 WHERE captain = \"lieutenant montagu verling\"", "question": "Tell me the ship for lieutenant montagu verling", "context": "CREATE TABLE table_name_52 (ship VARCHAR, captain VARCHAR)"}, {"answer": "SELECT class FROM table_name_35 WHERE rank = \"admiral\" AND ship = \"hms frobisher\"", "question": "Tell me the class for admiral and hms frobisher", "context": "CREATE TABLE table_name_35 (class VARCHAR, rank VARCHAR, ship VARCHAR)"}, {"answer": "SELECT guns FROM table_name_63 WHERE class = \"third-rate ship of the line\" AND rank = \"vice-admiral\" AND year = \"1802\"", "question": "Tell me the guns for third-rate ship of the line and rank of vice-admiral with year of 1802", "context": "CREATE TABLE table_name_63 (guns VARCHAR, year VARCHAR, class VARCHAR, rank VARCHAR)"}, {"answer": "SELECT captain FROM table_name_23 WHERE year = \"1774\" AND guns = \"14\"", "question": "Tell me the captain for 1774 and guns of 14", "context": "CREATE TABLE table_name_23 (captain VARCHAR, year VARCHAR, guns VARCHAR)"}, {"answer": "SELECT captain FROM table_name_15 WHERE guns = \"28\"", "question": "Tell me the captain for guns of 28", "context": "CREATE TABLE table_name_15 (captain VARCHAR, guns VARCHAR)"}, {"answer": "SELECT status FROM table_name_15 WHERE eliminated = \"anton dela paz\"", "question": "Tell me the status of eliminated of anton dela paz", "context": "CREATE TABLE table_name_15 (status VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT finalists FROM table_name_40 WHERE week__number < 2", "question": "Tell me the finalists for week # less than 2", "context": "CREATE TABLE table_name_40 (finalists VARCHAR, week__number INTEGER)"}, {"answer": "SELECT eliminated FROM table_name_83 WHERE week__number > 4", "question": "Tell me the eliminated for week # larger than 4", "context": "CREATE TABLE table_name_83 (eliminated VARCHAR, week__number INTEGER)"}, {"answer": "SELECT AVG(round) FROM table_name_32 WHERE time = \"5:00\" AND event = \"ufc 78\"", "question": "At the UFC 78, what is the average round when the time is 5:00?", "context": "CREATE TABLE table_name_32 (round INTEGER, time VARCHAR, event VARCHAR)"}, {"answer": "SELECT time FROM table_name_43 WHERE res = \"draw\"", "question": "When there was a draw, what was the time?", "context": "CREATE TABLE table_name_43 (time VARCHAR, res VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_8 WHERE year = 2010 AND races > 14 AND fl < 0", "question": "What is the sum of points in 2010 when the driver had more than 14 races and an F.L. of less than 0?", "context": "CREATE TABLE table_name_8 (points INTEGER, fl VARCHAR, year VARCHAR, races VARCHAR)"}, {"answer": "SELECT result FROM table_name_67 WHERE week < 2", "question": "What was the outcome of the game that had a week number of less than 2?", "context": "CREATE TABLE table_name_67 (result VARCHAR, week INTEGER)"}, {"answer": "SELECT heat_ & _lane FROM table_name_25 WHERE name = \"thi hue pham\"", "question": "What heat and what lane is thi hue pham in?", "context": "CREATE TABLE table_name_25 (heat_ VARCHAR, _lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT heat_ & _lane FROM table_name_72 WHERE time = \"1:01.12\"", "question": "What Heat & Lane is the person who has a time of 1:01.12?", "context": "CREATE TABLE table_name_72 (heat_ VARCHAR, _lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT laps FROM table_name_3 WHERE driver = \"fernando alonso\"", "question": "How many laps did Fernando Alonso do?", "context": "CREATE TABLE table_name_3 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_13 WHERE driver = \"jenson button\"", "question": "What was Jenson Button's constructor?", "context": "CREATE TABLE table_name_13 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT package FROM table_name_17 WHERE eeprom < 128", "question": "Tell me the package for EEPROM less than 128", "context": "CREATE TABLE table_name_17 (package VARCHAR, eeprom INTEGER)"}, {"answer": "SELECT chip FROM table_name_63 WHERE frequency_[mhz] > 10", "question": "Tell me the chip with frequency larger than 10", "context": "CREATE TABLE table_name_63 (chip VARCHAR, frequency_ VARCHAR, mhz VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_95 WHERE constructor = \"toyota\" AND driver = \"jarno trulli\"", "question": "I want the highest Grid for Toyota and jarno trulli", "context": "CREATE TABLE table_name_95 (grid INTEGER, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_39 WHERE grid > 22", "question": "Tell me the average Laps for grid larger than 22", "context": "CREATE TABLE table_name_39 (laps INTEGER, grid INTEGER)"}, {"answer": "SELECT constructor FROM table_name_9 WHERE grid = 17", "question": "Tell me the constructor for grid of 17", "context": "CREATE TABLE table_name_9 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT ukraine_career FROM table_name_26 WHERE lost > 1 AND drawn > 11", "question": "What years had a manager who lost more than 1 and drawn more than 11?", "context": "CREATE TABLE table_name_26 (ukraine_career VARCHAR, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT COUNT(win__percentage) FROM table_name_43 WHERE manager = \"viktor prokopenko\" AND lost < 2", "question": "what is the total win % of manager viktor prokopenko, when he lost fewer than 2?", "context": "CREATE TABLE table_name_43 (win__percentage VARCHAR, manager VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(fixtures) FROM table_name_3 WHERE clubs_involved = 4", "question": "When 4 clubs are involved, what is the average number of fixtures?", "context": "CREATE TABLE table_name_3 (fixtures INTEGER, clubs_involved VARCHAR)"}, {"answer": "SELECT SUM(fixtures) FROM table_name_67 WHERE round = \"sixth round\" AND clubs_involved > 15", "question": "In the sixth round, what is the sum of fixtures when there were more than 15 clubs involved?", "context": "CREATE TABLE table_name_67 (fixtures INTEGER, round VARCHAR, clubs_involved VARCHAR)"}, {"answer": "SELECT league FROM table_name_3 WHERE year = \"1915/16\"", "question": "Tell me the league for year of 1915/16", "context": "CREATE TABLE table_name_3 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_26 WHERE laps = 54", "question": "What is the make of the car that drove 54 laps?", "context": "CREATE TABLE table_name_26 (constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT name FROM table_name_9 WHERE caps = 59", "question": "Who has a 59 cap?", "context": "CREATE TABLE table_name_9 (name VARCHAR, caps VARCHAR)"}, {"answer": "SELECT SUM(frequency_mhz) FROM table_name_43 WHERE erp_w < 1", "question": "Tell me the sum of frequency for ERP W less than 1", "context": "CREATE TABLE table_name_43 (frequency_mhz INTEGER, erp_w INTEGER)"}, {"answer": "SELECT MIN(ties_played) FROM table_name_15 WHERE debut = 1936", "question": "Tell me the lowest ties played with a debut of 1936", "context": "CREATE TABLE table_name_15 (ties_played INTEGER, debut VARCHAR)"}, {"answer": "SELECT venue FROM table_name_47 WHERE competition = \"paris marathon\"", "question": "Where did the Paris Marathon occur?", "context": "CREATE TABLE table_name_47 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_15 WHERE stadium = \"city park stadium\"", "question": "Tell me the capacity for city park stadium", "context": "CREATE TABLE table_name_15 (capacity VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_53 WHERE opponents_in_the_final = \"andrei pavel rogier wassen\"", "question": "Tell me the tournament for opponents of andrei pavel rogier wassen", "context": "CREATE TABLE table_name_53 (tournament VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_20 WHERE score_in_the_final = \"1\u20136, 3\u20136\"", "question": "Tell me the tournament for score in the final of 1\u20136, 3\u20136", "context": "CREATE TABLE table_name_20 (tournament VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_68 WHERE score_in_the_final = \"1\u20136, 2\u20136\"", "question": "Tell me the opponents for score in the final of 1\u20136, 2\u20136", "context": "CREATE TABLE table_name_68 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_72 WHERE date = \"16 april 2007\"", "question": "Tell me the surface for 16 april 2007", "context": "CREATE TABLE table_name_72 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(pages) FROM table_name_77 WHERE isbn = \"978-0-9766580-5-4\"", "question": "I want the average pages for  ISBN of 978-0-9766580-5-4", "context": "CREATE TABLE table_name_77 (pages INTEGER, isbn VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_84 WHERE pages = 244", "question": "Tell me the sum of year for 244 pages", "context": "CREATE TABLE table_name_84 (year INTEGER, pages VARCHAR)"}, {"answer": "SELECT title FROM table_name_99 WHERE pages = 96", "question": "Tell me the title for pages of 96", "context": "CREATE TABLE table_name_99 (title VARCHAR, pages VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_80 WHERE party = \"republican\" AND house_term = \"1863-1865\"", "question": "What was the date of birth of a republican member of the United States House of Representatives who held the term of 1863-1865?", "context": "CREATE TABLE table_name_80 (date_of_birth VARCHAR, party VARCHAR, house_term VARCHAR)"}, {"answer": "SELECT age__years, _days_ FROM table_name_66 WHERE begin_date = \"may 7, 1886\"", "question": "What was the age of the member of the United States House of Representatives that began their term on May 7, 1886?", "context": "CREATE TABLE table_name_66 (age__years VARCHAR, _days_ VARCHAR, begin_date VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_66 WHERE begin_date = \"april 24, 1902\"", "question": "What was the date of birth of the member of the United States House of Representatives that began their term on April 24, 1902?", "context": "CREATE TABLE table_name_66 (date_of_birth VARCHAR, begin_date VARCHAR)"}, {"answer": "SELECT representative FROM table_name_72 WHERE begin_date = \"january 4, 1997\"", "question": "Which member of the United States House of Representatives began their term on January 4, 1997?", "context": "CREATE TABLE table_name_72 (representative VARCHAR, begin_date VARCHAR)"}, {"answer": "SELECT state_served FROM table_name_27 WHERE party = \"federalist\" AND representative = \"samuel thatcher\"", "question": "Which state did Samuel Thatcher of the Federalist party represent?", "context": "CREATE TABLE table_name_27 (state_served VARCHAR, party VARCHAR, representative VARCHAR)"}, {"answer": "SELECT position FROM table_name_93 WHERE player = \"hedo t\u00fcrko\u011flu\"", "question": "What position does Hedo T\u00fcrko\u011flu play?", "context": "CREATE TABLE table_name_93 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_in_toronto FROM table_name_83 WHERE player = \"sebastian telfair\"", "question": "How long has Sebastian Telfair played for Toronto?", "context": "CREATE TABLE table_name_83 (years_in_toronto VARCHAR, player VARCHAR)"}, {"answer": "SELECT title FROM table_name_30 WHERE japan = \"august 23, 2012\"", "question": "Tell me the title for japan august 23, 2012", "context": "CREATE TABLE table_name_30 (title VARCHAR, japan VARCHAR)"}, {"answer": "SELECT title FROM table_name_57 WHERE japan = \"august 23, 2012\"", "question": "Tell me the title for japan august 23, 2012", "context": "CREATE TABLE table_name_57 (title VARCHAR, japan VARCHAR)"}, {"answer": "SELECT australia FROM table_name_84 WHERE japan = \"march 17, 2005\"", "question": "Tell me the Australia march 17, 2005", "context": "CREATE TABLE table_name_84 (australia VARCHAR, japan VARCHAR)"}, {"answer": "SELECT europe FROM table_name_79 WHERE title = \"z.h.p. unlosing ranger vs darkdeath evilman\"", "question": "Tell me the Europe for z.h.p. unlosing ranger vs darkdeath evilman", "context": "CREATE TABLE table_name_79 (europe VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_35 WHERE place = 4 AND ties < 0", "question": "Name the total losses for 4 place and ties less than 0", "context": "CREATE TABLE table_name_35 (losses VARCHAR, place VARCHAR, ties VARCHAR)"}, {"answer": "SELECT AVG(place) FROM table_name_70 WHERE ties < 1 AND points = \"6 qc\" AND losses > 3", "question": "Name the average place for ties less than 1 and losess more than 3 with points of 6 qc", "context": "CREATE TABLE table_name_70 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_4 WHERE losses > \"2\" AND points = \"2\" AND place > 7", "question": "Name the most wins for losses more than 2 and points of two with place larger than 7", "context": "CREATE TABLE table_name_4 (wins INTEGER, place VARCHAR, losses VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(place) FROM table_name_58 WHERE ties > 0 AND points = \"7 qc\" AND losses > 2", "question": "Name the sum of place with ties larger than 0 and point sof 7 qc and losses more than 2", "context": "CREATE TABLE table_name_58 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR)"}, {"answer": "SELECT no_range FROM table_name_36 WHERE type = \"4vip\"", "question": "Tell me the number range for 4vip", "context": "CREATE TABLE table_name_36 (no_range VARCHAR, type VARCHAR)"}, {"answer": "SELECT heat_rank FROM table_name_22 WHERE country = \"senegal\"", "question": "Name the heat rank for senegal", "context": "CREATE TABLE table_name_22 (heat_rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_95 WHERE 2012 = \"q2\"", "question": "What is the value for 2010 when the 2012 value is Q2?", "context": "CREATE TABLE table_name_95 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_59 WHERE 2006 = \"a\" AND 2009 = \"1r\"", "question": "What is the value for 2010 when the value for 2006 is A and the value for 2009 is 1R?", "context": "CREATE TABLE table_name_59 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_51 WHERE 2009 = \"1r\" AND 2007 = \"2r\"", "question": "What is the value for 2012 when the value for 2009 is 1R and the vale for 2007 is 2R?", "context": "CREATE TABLE table_name_51 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_84 WHERE tournament = \"us open\"", "question": "What is the value for 2008 for the US Open Tournament?", "context": "CREATE TABLE table_name_84 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_87 WHERE 2011 = \"138\"", "question": "What is the value for 2009 when the value for 2011 is 138?", "context": "CREATE TABLE table_name_87 (Id VARCHAR)"}, {"answer": "SELECT MAX(series__number) FROM table_name_53 WHERE original_air_date = \"september 22, 1976\"", "question": "Tell me the highest series # for september 22, 1976", "context": "CREATE TABLE table_name_53 (series__number INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT screen_size, pixels FROM table_name_7 WHERE dimensions_w\u00d7h\u00d7d__mm_ = \"115.5\u00d783.7\u00d7102.5\"", "question": "What is the screen size and pixel value when the dimensions are 115.5\u00d783.7\u00d7102.5?", "context": "CREATE TABLE table_name_7 (screen_size VARCHAR, pixels VARCHAR, dimensions_w\u00d7h\u00d7d__mm_ VARCHAR)"}, {"answer": "SELECT screen_size, pixels FROM table_name_28 WHERE dimensions_w\u00d7h\u00d7d__mm_ = \"98\u00d764.5\u00d741\" AND model = \"p5000\"", "question": "What is the screen size and pixel amount of model p5000 when the dimensions are 98\u00d764.5\u00d741?", "context": "CREATE TABLE table_name_28 (screen_size VARCHAR, pixels VARCHAR, dimensions_w\u00d7h\u00d7d__mm_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT championship_game FROM table_name_29 WHERE conference = \"big eight\"", "question": "Tell me the championship game for big eight", "context": "CREATE TABLE table_name_29 (championship_game VARCHAR, conference VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_20 WHERE rank = 13 AND bronze < 1", "question": "Name the lowest total for rank of 13 with bronze less than 1", "context": "CREATE TABLE table_name_20 (total INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(original_week) FROM table_name_51 WHERE date = \"september 16, 1982\"", "question": "Tell me the sum of original week for september 16, 1982", "context": "CREATE TABLE table_name_51 (original_week INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(original_week) FROM table_name_18 WHERE venue = \"soldier field\"", "question": "Tell me the average original week for soldier field", "context": "CREATE TABLE table_name_18 (original_week INTEGER, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE original_week < 16 AND result = \"l 23\u201322\"", "question": "Tell me the date for original week less than 16 and result of l 23\u201322", "context": "CREATE TABLE table_name_81 (date VARCHAR, original_week VARCHAR, result VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_67 WHERE frequency = \"0 97.3 fm\"", "question": "Tell me the call sign for frequency of 0 97.3 fm", "context": "CREATE TABLE table_name_67 (call_sign VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT owner FROM table_name_81 WHERE format = \"classical\"", "question": "Tell me the owner for classical", "context": "CREATE TABLE table_name_81 (owner VARCHAR, format VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_1 WHERE frequency = \"0 106.9 fm\"", "question": "Tell me the city of license for 0 106.9 fm", "context": "CREATE TABLE table_name_1 (city_of_license VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT years_in_toronto FROM table_name_33 WHERE player = \"hakeem olajuwon\"", "question": "What year(s) did Hakeem Olajuwon play Center for Toronto?", "context": "CREATE TABLE table_name_33 (years_in_toronto VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_75 WHERE nationality = \"united states\" AND player = \"jimmy oliver\"", "question": "What position did Jimmy Oliver of the United States play?", "context": "CREATE TABLE table_name_75 (position VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(crest_length__meters_) FROM table_name_87 WHERE year_of_construction > 1957 AND name = \"mattmark\"", "question": "Tell me the total number of crest length for year construction larger than 1957 for mattmark", "context": "CREATE TABLE table_name_87 (crest_length__meters_ VARCHAR, year_of_construction VARCHAR, name VARCHAR)"}, {"answer": "SELECT _percentage_wt_2nd FROM table_name_77 WHERE bp_3rd_comp__\u02dac_ = \"98.4\"", "question": "Tell me the % of wt 2nd for bp 3rd comp of 98.4", "context": "CREATE TABLE table_name_77 (_percentage_wt_2nd VARCHAR, bp_3rd_comp__\u02dac_ VARCHAR)"}, {"answer": "SELECT 3 AS rd_component FROM table_name_49 WHERE bp_azeo__\u02dac_ = \"62.1\"", "question": "Tell me the 3rd component for bp azeo of 62.1", "context": "CREATE TABLE table_name_49 (bp_azeo__\u02dac_ VARCHAR)"}, {"answer": "SELECT name FROM table_name_64 WHERE county = \"s\u00f8r-tr\u00f8ndelag\"", "question": "Tell me the name with s\u00f8r-tr\u00f8ndelag", "context": "CREATE TABLE table_name_64 (name VARCHAR, county VARCHAR)"}, {"answer": "SELECT elevation FROM table_name_20 WHERE county = \"oslo\"", "question": "Tell me the elevation for oslo", "context": "CREATE TABLE table_name_20 (elevation VARCHAR, county VARCHAR)"}, {"answer": "SELECT result FROM table_name_46 WHERE opponent = \"pat lawlor\"", "question": "What was the result of the match against Pat Lawlor?", "context": "CREATE TABLE table_name_46 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(cars_per_set) FROM table_name_3 WHERE operator = \"london midland\"", "question": "Tell me the sum of cars per set for operator of london midland", "context": "CREATE TABLE table_name_3 (cars_per_set INTEGER, operator VARCHAR)"}, {"answer": "SELECT title FROM table_name_74 WHERE japan = \"january 31, 2008\"", "question": "Tell me the title of japan january 31, 2008", "context": "CREATE TABLE table_name_74 (title VARCHAR, japan VARCHAR)"}, {"answer": "SELECT japan FROM table_name_14 WHERE title = \"jigsaw land: japan graffiti\"", "question": "Tell me japan for jigsaw land: japan graffiti", "context": "CREATE TABLE table_name_14 (japan VARCHAR, title VARCHAR)"}, {"answer": "SELECT north_america FROM table_name_83 WHERE japan = \"january 23, 2013\"", "question": "Tell me north america for january 23, 2013", "context": "CREATE TABLE table_name_83 (north_america VARCHAR, japan VARCHAR)"}, {"answer": "SELECT north_america FROM table_name_64 WHERE europe = \"september 18, 2009\"", "question": "Tell me the north america for september 18, 2009", "context": "CREATE TABLE table_name_64 (north_america VARCHAR, europe VARCHAR)"}, {"answer": "SELECT europe FROM table_name_72 WHERE japan = \"january 28, 2010\"", "question": "Tell me europe for japan of january 28, 2010", "context": "CREATE TABLE table_name_72 (europe VARCHAR, japan VARCHAR)"}, {"answer": "SELECT north_america FROM table_name_74 WHERE title = \"phantom brave\"", "question": "Tell me the north america for phantom brave", "context": "CREATE TABLE table_name_74 (north_america VARCHAR, title VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_83 WHERE city = \"belgrade\" AND average_attendance > 26 OFFSET 222", "question": "What is the average played value in Belgrade with attendance greater than 26,222?", "context": "CREATE TABLE table_name_83 (played INTEGER, city VARCHAR, average_attendance VARCHAR)"}, {"answer": "SELECT role FROM table_name_35 WHERE theatre = \"festival theatre\"", "question": "Tell me the role of festival theatre", "context": "CREATE TABLE table_name_35 (role VARCHAR, theatre VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_72 WHERE theatre = \"shubert theatre\"", "question": "Tell me the lowest year for shubert theatre", "context": "CREATE TABLE table_name_72 (year INTEGER, theatre VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_51 WHERE role = \"lady cecily waynflete\" AND theatre = \"opera house, kennedy center\"", "question": "Tell me the total number of years for lady cecily waynflete and opera house, kennedy center", "context": "CREATE TABLE table_name_51 (year VARCHAR, role VARCHAR, theatre VARCHAR)"}, {"answer": "SELECT role FROM table_name_83 WHERE play = \"tea and sympathy\"", "question": "Tell me the role for tea and sympathy", "context": "CREATE TABLE table_name_83 (role VARCHAR, play VARCHAR)"}, {"answer": "SELECT MIN(beatified) FROM table_name_12 WHERE place = \"korea\" AND canonised < 1984", "question": "When was the first beatification in Korea that was canonised before 1984?", "context": "CREATE TABLE table_name_12 (beatified INTEGER, place VARCHAR, canonised VARCHAR)"}, {"answer": "SELECT MAX(martyred) FROM table_name_65 WHERE beatified > 1909 AND name = \"laurent-marie-joseph imbert / st. imbert\" AND canonised > 1984", "question": "When was Laurent-Marie-Joseph Imbert / St. Imbert, who was beatified after 1909 and canonised after 1984, martyred?", "context": "CREATE TABLE table_name_65 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR)"}, {"answer": "SELECT beatified FROM table_name_17 WHERE canonised < 1988", "question": "When was the person(s) who were canonised before 1988 beatified?", "context": "CREATE TABLE table_name_17 (beatified VARCHAR, canonised INTEGER)"}, {"answer": "SELECT MAX(martyred) FROM table_name_64 WHERE beatified = 1909 AND name = \"john hoan trinh doan / st. john hoan\" AND canonised > 1988", "question": "When was John Hoan Trinh Doan / St. John Hoan, who was beatified in 1909 and canonised after 1988, martyred?", "context": "CREATE TABLE table_name_64 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_37 WHERE local_host_s_ = \"sai\"", "question": "What is the sum of year with the local host Sai?", "context": "CREATE TABLE table_name_37 (year INTEGER, local_host_s_ VARCHAR)"}, {"answer": "SELECT local_host_s_ FROM table_name_86 WHERE country = \"united states\" AND year < 2007", "question": "Who are the local hosts for the United States in years earlier than 2007?", "context": "CREATE TABLE table_name_86 (local_host_s_ VARCHAR, country VARCHAR, year VARCHAR)"}, {"answer": "SELECT city FROM table_name_70 WHERE year < 2009 AND conference = \"lcc2\"", "question": "Which city has a conference of LCC2 and a year earlier than 2009?", "context": "CREATE TABLE table_name_70 (city VARCHAR, year VARCHAR, conference VARCHAR)"}, {"answer": "SELECT class FROM table_name_12 WHERE rank = \"89th\"", "question": "Tell me the class with rank of 89th", "context": "CREATE TABLE table_name_12 (class VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_30 WHERE points = 3", "question": "Tell me the most year for 3 points", "context": "CREATE TABLE table_name_30 (year INTEGER, points VARCHAR)"}, {"answer": "SELECT lane FROM table_name_37 WHERE swimmer = \"goksu bicer\"", "question": "Which lane is Goksu Bicer in?", "context": "CREATE TABLE table_name_37 (lane VARCHAR, swimmer VARCHAR)"}, {"answer": "SELECT driver FROM table_name_59 WHERE grid < 9 AND time_retired = \"2:06:26.358\"", "question": "Which Driver that has a Grid less than 9 and a Time/Retired of 2:06:26.358?", "context": "CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_78 WHERE constructor = \"ferrari\" AND grid < 3", "question": "Which driver drove a Ferrari in the 2007 European Grand Prix with a grid less than 3?", "context": "CREATE TABLE table_name_78 (driver VARCHAR, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT location FROM table_name_51 WHERE event = \"ufc 98\"", "question": "Name the location of ufc 98", "context": "CREATE TABLE table_name_51 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_25 WHERE tournament = \"totals\" AND top_25 > 3", "question": "What is the smallest number of wins for the Totals Tournament with a Top-25 value greater than 3?", "context": "CREATE TABLE table_name_25 (wins INTEGER, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT SUM(top_5) FROM table_name_35 WHERE events < 2", "question": "What is the sum of Top-5 values with events values less than 2?", "context": "CREATE TABLE table_name_35 (top_5 INTEGER, events INTEGER)"}, {"answer": "SELECT MIN(wins) FROM table_name_51 WHERE cuts_made > 4 AND top_5 < 1", "question": "What is the smallest value for Wins when the number of cuts is greater than 4 and the Top-5 value is less than 1?", "context": "CREATE TABLE table_name_51 (wins INTEGER, cuts_made VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT competition FROM table_name_23 WHERE position = \"2nd\" AND year > 2005", "question": "Tell me the competition for 2nd position with year more than 2005", "context": "CREATE TABLE table_name_23 (competition VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_40 WHERE position = \"2nd\" AND event = \"junior race\"", "question": "Name the sum of year for 2nd position for junior race", "context": "CREATE TABLE table_name_40 (year INTEGER, position VARCHAR, event VARCHAR)"}, {"answer": "SELECT venue FROM table_name_83 WHERE year < 2008 AND position = \"2nd\"", "question": "Name the venue for 2nd position of year before 2008", "context": "CREATE TABLE table_name_83 (venue VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_17 WHERE winning_driver = \"raymond mays\"", "question": "Which circuit did Raymond Mays win?", "context": "CREATE TABLE table_name_17 (circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_3 WHERE winning_driver = \"johnny wakefield\"", "question": "Which Circuit did Johnny Wakefield win?", "context": "CREATE TABLE table_name_3 (circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_84 WHERE nation = \"panama\" AND total > 8", "question": "Tell me the lowest bronze for panama and total larger than 8", "context": "CREATE TABLE table_name_84 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_32 WHERE nation = \"guatemala\" AND bronze < 2", "question": "Tell me the average total for guatemala and bronze less than 2", "context": "CREATE TABLE table_name_32 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_54 WHERE silver = 0 AND total < 1", "question": "Tell me the number of bronze for silver of 0 and total less than 1", "context": "CREATE TABLE table_name_54 (bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_35 WHERE rank = 1", "question": "Tell me the sum of total for rank of 1", "context": "CREATE TABLE table_name_35 (total INTEGER, rank VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_82 WHERE nation = \"costa rica\" AND rank > 8", "question": "Tell me the total number for costa rica and rank more than 8", "context": "CREATE TABLE table_name_82 (total VARCHAR, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT career FROM table_name_94 WHERE average > 0.361 AND player = \"tymerlan huseynov\"", "question": "What years did Tymerlan Huseynov, whose average is larger than 0.361, play?", "context": "CREATE TABLE table_name_94 (career VARCHAR, average VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_42 WHERE goals > 8 AND caps > 75 AND average = 0.432", "question": "Who scored more than 8 goals, had more than 75 caps, and averaged 0.432?", "context": "CREATE TABLE table_name_42 (player VARCHAR, average VARCHAR, goals VARCHAR, caps VARCHAR)"}, {"answer": "SELECT SUM(average) FROM table_name_16 WHERE caps = 68 AND goals < 9", "question": "What is the sum of the averages when there are 68 caps and less than 9 goals?", "context": "CREATE TABLE table_name_16 (average INTEGER, caps VARCHAR, goals VARCHAR)"}, {"answer": "SELECT 1968 FROM table_name_76 WHERE 1967 = \"1r\"", "question": "Tell me the 1968 for 1r", "context": "CREATE TABLE table_name_76 (Id VARCHAR)"}, {"answer": "SELECT round_of_32 FROM table_name_62 WHERE conference = \"southland\"", "question": "Tell me the round of 32 for conference of southland", "context": "CREATE TABLE table_name_62 (round_of_32 VARCHAR, conference VARCHAR)"}, {"answer": "SELECT MIN(_number_of_bids) FROM table_name_38 WHERE win__percentage = \".667\"", "question": "Tell me the lowest # of bids for win percent of .667", "context": "CREATE TABLE table_name_38 (_number_of_bids INTEGER, win__percentage VARCHAR)"}, {"answer": "SELECT SUM(cap_hour) FROM table_name_8 WHERE type = \"double chair\" AND vertical < 479", "question": "Tell me the sum of cap/hor for double chair and vertical less than 479", "context": "CREATE TABLE table_name_8 (cap_hour INTEGER, type VARCHAR, vertical VARCHAR)"}, {"answer": "SELECT \"c\" AS ompression_ratio FROM table_name_38 WHERE vin_code = \"c\"", "question": "What's the compression ratio when the vin code is c?", "context": "CREATE TABLE table_name_38 (vin_code VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_31 WHERE extra = \"junior team competition\"", "question": "Tell me the sum of year for extra of junior team competition", "context": "CREATE TABLE table_name_31 (year INTEGER, extra VARCHAR)"}, {"answer": "SELECT lens_35mmequiv__zoom, _aperture FROM table_name_39 WHERE model = \"s2600\"", "question": "Tell me the lens zoom for aperture of model s2600", "context": "CREATE TABLE table_name_39 (lens_35mmequiv__zoom VARCHAR, _aperture VARCHAR, model VARCHAR)"}, {"answer": "SELECT screen_size, pixels FROM table_name_69 WHERE model = \"s6400\"", "question": "Tell me the screen size for pixels of model s6400", "context": "CREATE TABLE table_name_69 (screen_size VARCHAR, pixels VARCHAR, model VARCHAR)"}, {"answer": "SELECT sensor_res, _size FROM table_name_74 WHERE model = \"s9200\"", "question": "Name the sensor res for model of s9200", "context": "CREATE TABLE table_name_74 (sensor_res VARCHAR, _size VARCHAR, model VARCHAR)"}, {"answer": "SELECT nation FROM table_name_62 WHERE bronze > 0 AND total > 8 AND gold = 4", "question": "Tell me the nation for bronze more than 0 and total more than 8 with gold of 4", "context": "CREATE TABLE table_name_62 (nation VARCHAR, gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT rider FROM table_name_44 WHERE rank > 6 AND team = \"suzuki\"", "question": "Who is Team Suzuki's rider and ranks higher than 6?", "context": "CREATE TABLE table_name_44 (rider VARCHAR, rank VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(division) FROM table_name_11 WHERE reg_season = \"7th\"", "question": "Who was the lowest division in the 7th season?", "context": "CREATE TABLE table_name_11 (division INTEGER, reg_season VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_27 WHERE year = \"1924/25\"", "question": "In 1924/25, who was in the playoffs?", "context": "CREATE TABLE table_name_27 (playoffs VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(division) FROM table_name_74 WHERE playoffs = \"no playoff\" AND reg_season = \"12th\"", "question": "Which division has no playoff but has a 12th game in their season?", "context": "CREATE TABLE table_name_74 (division INTEGER, playoffs VARCHAR, reg_season VARCHAR)"}, {"answer": "SELECT venue FROM table_name_68 WHERE position = \"1st\" AND year = 2011", "question": "What was the venue of the competition that held the 1st position in 2011?", "context": "CREATE TABLE table_name_68 (venue VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT position FROM table_name_68 WHERE competition = \"olympic games\" AND year = 2008", "question": "What was the position of the Olympic Games in the year 2008?", "context": "CREATE TABLE table_name_68 (position VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT competition FROM table_name_89 WHERE position = \"1st\" AND year = 2009", "question": "Which competition held the 1st position in 2009?", "context": "CREATE TABLE table_name_89 (competition VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_28 WHERE year > 2006 AND notes = \"3000 m s'chase\" AND position = \"2nd\" AND competition = \"african championships\"", "question": "Which venue did the African Championships have after 2006 with a position of 2nd and 3000 m s'chase in notes?", "context": "CREATE TABLE table_name_28 (venue VARCHAR, competition VARCHAR, position VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT label FROM table_name_2 WHERE region = \"us\" AND catalog = \"10008-2\"", "question": "Tell me the label for US region and catalog of 10008-2", "context": "CREATE TABLE table_name_2 (label VARCHAR, region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE format = \"cd/dvd\"", "question": "Tell me the date for format of cd/dvd", "context": "CREATE TABLE table_name_88 (date VARCHAR, format VARCHAR)"}, {"answer": "SELECT format FROM table_name_99 WHERE region = \"european union\"", "question": "Tell me the format for european union", "context": "CREATE TABLE table_name_99 (format VARCHAR, region VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_72 WHERE date > 2004", "question": "Tell me the catalog for date larger than 2004", "context": "CREATE TABLE table_name_72 (catalog VARCHAR, date INTEGER)"}, {"answer": "SELECT MIN(date) FROM table_name_87 WHERE catalog = \"6561910008-1\"", "question": "I want the lowest date for catalog of 6561910008-1", "context": "CREATE TABLE table_name_87 (date INTEGER, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE crowd > 30 OFFSET 343", "question": "What date was there a crowd larger than 30,343?", "context": "CREATE TABLE table_name_97 (date VARCHAR, crowd INTEGER)"}, {"answer": "SELECT MIN(crowd) FROM table_name_35 WHERE away_team = \"essendon\"", "question": "What was the lowest Crowd total from a game in which Essendon was the Away team?", "context": "CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_47 WHERE home_team = \"geelong\"", "question": "Which Venue was used when the Home team was geelong?", "context": "CREATE TABLE table_name_47 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(scored) FROM table_name_66 WHERE competition = \"2010 east asian football championship\"", "question": "What is the highest scored in the 2010 east asian football championship?", "context": "CREATE TABLE table_name_66 (scored INTEGER, competition VARCHAR)"}, {"answer": "SELECT country FROM table_name_48 WHERE city = \"wellington\"", "question": "Which country is Wellington located in?", "context": "CREATE TABLE table_name_48 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT label FROM table_name_42 WHERE region = \"united states\" AND format = \"download\"", "question": "What label is in download format in the United States?", "context": "CREATE TABLE table_name_42 (label VARCHAR, region VARCHAR, format VARCHAR)"}, {"answer": "SELECT label FROM table_name_88 WHERE region = \"united states\" AND format = \"download\"", "question": "What label is in download format in the United States?", "context": "CREATE TABLE table_name_88 (label VARCHAR, region VARCHAR, format VARCHAR)"}, {"answer": "SELECT label FROM table_name_90 WHERE catalogue = \"rtradlp 346\"", "question": "What label has RTRADLP 346 as catalogue?", "context": "CREATE TABLE table_name_90 (label VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT label FROM table_name_8 WHERE date = \"22 january 2008\"", "question": "What label has 22 January 2008 date?", "context": "CREATE TABLE table_name_8 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_93 WHERE catalogue = \"rt-346-5\"", "question": "What is the label for catalogue of RT-346-5?", "context": "CREATE TABLE table_name_93 (label VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT position FROM table_name_34 WHERE school_club_team = \"rice\"", "question": "What position is mentioned for Rice school?", "context": "CREATE TABLE table_name_34 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_87 WHERE overall > 238 AND position = \"defensive end\" AND school_club_team = \"wisconsin\"", "question": "What is the average round for Wisconsin when the overall is larger than 238 and there is a defensive end?", "context": "CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_49 WHERE position = \"defensive back\" AND overall < 199", "question": "What is the average round when there is a defensive back and an overall smaller than 199?", "context": "CREATE TABLE table_name_49 (round INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE score = \"42-6\"", "question": "What was the date of game with a score of 42-6?", "context": "CREATE TABLE table_name_23 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_43 WHERE result = \"hunter mariners def. sheffield eagles\"", "question": "What stadium was the game played at when the result was hunter mariners def. sheffield eagles?", "context": "CREATE TABLE table_name_43 (stadium VARCHAR, result VARCHAR)"}, {"answer": "SELECT city FROM table_name_22 WHERE result = \"brisbane broncos def. halifax blue sox\"", "question": "What city has a Result of brisbane broncos def. halifax blue sox?", "context": "CREATE TABLE table_name_22 (city VARCHAR, result VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE round > 9 AND overall = 464", "question": "Which player was drafted after round 9 and number 464 overall?", "context": "CREATE TABLE table_name_83 (player VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_90 WHERE player = \"james reed\"", "question": "What was James Reed's draft round number?", "context": "CREATE TABLE table_name_90 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_28 WHERE position = \"wide receiver\" AND player = \"tom fleming\"", "question": "What was the overall draft number of Tom Fleming, a wide receiver?", "context": "CREATE TABLE table_name_28 (overall VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE school_club_team = \"dartmouth\"", "question": "Which player is from Dartmouth?", "context": "CREATE TABLE table_name_41 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_17 WHERE school_country = \"tulsa\"", "question": "What position does the player from tulsa play?", "context": "CREATE TABLE table_name_17 (position VARCHAR, school_country VARCHAR)"}, {"answer": "SELECT SUM(magnitude) FROM table_name_44 WHERE date = \"february 12, 1953\"", "question": "What is the sum of Magnitude on february 12, 1953?", "context": "CREATE TABLE table_name_44 (magnitude INTEGER, date VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_41 WHERE sport = \"baseball\" AND year < 2005", "question": "What was the final score of a baseball game that happened before 2005?", "context": "CREATE TABLE table_name_41 (final_score VARCHAR, sport VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE away_team = \"richmond\"", "question": "What venue did Richmond play as the away team?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_92 WHERE home_team = \"essendon\"", "question": "What is the team of Essendon's score in the game where they were the home team?", "context": "CREATE TABLE table_name_92 (home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_59 WHERE home_team = \"st kilda\"", "question": "Who is the away side when st kilda is the home side?", "context": "CREATE TABLE table_name_59 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_38 WHERE home_team = \"footscray\"", "question": "What is the away side score when footscray is the home side?", "context": "CREATE TABLE table_name_38 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_85 WHERE venue = \"kardinia park\"", "question": "What is the home team's score at kardinia park?", "context": "CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_57 WHERE away_team = \"richmond\"", "question": "What was the lowest crowd seen at a game that Richmond was the Away team in?", "context": "CREATE TABLE table_name_57 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_48 WHERE venue = \"windy hill\"", "question": "What was the highest crowd count seen in the Windy Hill venue?", "context": "CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_10 WHERE home_team = \"fitzroy\"", "question": "What was the score of the Away team that played against the Home team of Fitzroy?", "context": "CREATE TABLE table_name_10 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_78 WHERE school_club_team = \"wisconsin\"", "question": "Which was the lowest overall that Wisconsin's team managed?", "context": "CREATE TABLE table_name_78 (overall INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_20 WHERE player = \"roy de walt\"", "question": "Which team was Roy de Walt a player on?", "context": "CREATE TABLE table_name_20 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_22 WHERE player = \"paul mcdonald\" AND overall > 109", "question": "In which round did Paul McDonald have an overall greater than 109?", "context": "CREATE TABLE table_name_22 (round INTEGER, player VARCHAR, overall VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_2 WHERE player = \"charles white\" AND round < 1", "question": "What is the total overall in round 1, in which Charles White was a player?", "context": "CREATE TABLE table_name_2 (overall INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_4 WHERE round < 3 AND position = \"running back\"", "question": "What is the name of a running back in a round before round 3?", "context": "CREATE TABLE table_name_4 (player VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT w_l__percentage FROM table_name_77 WHERE wins = 63 AND losses < 76", "question": "What is the win/loss percentage with wins of 63 and losses smaller than 76?", "context": "CREATE TABLE table_name_77 (w_l__percentage VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_25 WHERE home_team = \"geelong\"", "question": "What is the away team score when the home team is Geelong?", "context": "CREATE TABLE table_name_25 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(order) FROM table_name_55 WHERE weeks < 15 AND majors < 1", "question": "What was the highest order amount in weeks prier to 15 and a major less than 1?", "context": "CREATE TABLE table_name_55 (order INTEGER, weeks VARCHAR, majors VARCHAR)"}, {"answer": "SELECT position FROM table_name_7 WHERE school_country = \"temple\"", "question": "What is the position of the player from Temple?", "context": "CREATE TABLE table_name_7 (position VARCHAR, school_country VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE school_country = \"temple\"", "question": "Which player is associated with Temple?", "context": "CREATE TABLE table_name_22 (player VARCHAR, school_country VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_72 WHERE school_country = \"temple\"", "question": "Which nationality is associated with Temple?", "context": "CREATE TABLE table_name_72 (nationality VARCHAR, school_country VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_71 WHERE current_club = \"chievo\" AND debut_year < 2002", "question": "How many goals were achieved when Chievo was the club and the debut year was before 2002?", "context": "CREATE TABLE table_name_71 (goals VARCHAR, current_club VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_40 WHERE name = \"diego milito\" AND debut_year > 2008", "question": "How many goals occurred with Diego Milito in a debut year later than 2008?", "context": "CREATE TABLE table_name_40 (goals VARCHAR, name VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_99 WHERE venue = \"punt road oval\"", "question": "Who is the home team at the Punt Road Oval?", "context": "CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_69 WHERE venue = \"windy hill\"", "question": "Who is the away team at Windy Hill?", "context": "CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE crowd > 25 OFFSET 000", "question": "What is the date of the game that had a crowd larger than 25,000?", "context": "CREATE TABLE table_name_3 (date VARCHAR, crowd INTEGER)"}, {"answer": "SELECT home_team AS score FROM table_name_19 WHERE home_team = \"south melbourne\"", "question": "What was South Melbourne's score as the home team?", "context": "CREATE TABLE table_name_19 (home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_52 WHERE away_team = \"collingwood\"", "question": "What was the largest crowd of a game where Collingwood was the away team?", "context": "CREATE TABLE table_name_52 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_21 WHERE method = \"decision (unanimous)\" AND opponent = \"john howard\"", "question": "What's the lowest round with the opponent John Howard that had a method of Decision (unanimous)?", "context": "CREATE TABLE table_name_21 (round INTEGER, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_74 WHERE record = \"2-0\"", "question": "What's the time for the match with a record of 2-0?", "context": "CREATE TABLE table_name_74 (time VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_92 WHERE method = \"submission (standing guillotine choke)\"", "question": "Where was the match with a method of submission (standing guillotine choke)?", "context": "CREATE TABLE table_name_92 (location VARCHAR, method VARCHAR)"}, {"answer": "SELECT language FROM table_name_87 WHERE genre = \"movies\" AND service = \"sky\" AND network = \"ump movies\"", "question": "What language is the moviein that is on UMP movies network through Sky service?", "context": "CREATE TABLE table_name_87 (language VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR)"}, {"answer": "SELECT language FROM table_name_97 WHERE network = \"sab\" AND service = \"sky\"", "question": "What language is the movie in that is on SAB network through Sky service?", "context": "CREATE TABLE table_name_97 (language VARCHAR, network VARCHAR, service VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_4 WHERE position = \"guard\" AND round < 9", "question": "What was the overall pick for the player who was a guard and had a round less than 9?", "context": "CREATE TABLE table_name_4 (overall INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_9 WHERE overall = 92", "question": "What was the lowest round number that had an overall pick up 92?", "context": "CREATE TABLE table_name_9 (round INTEGER, overall VARCHAR)"}, {"answer": "SELECT open_source_movie FROM table_name_90 WHERE cc_license = \"by-nc-sa 1.0\"", "question": "What open source movie has a CC License of by-nc-sa 1.0?", "context": "CREATE TABLE table_name_90 (open_source_movie VARCHAR, cc_license VARCHAR)"}, {"answer": "SELECT venue FROM table_name_50 WHERE result = \"7-1\"", "question": "Which venue had the result 7-1?", "context": "CREATE TABLE table_name_50 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE competition = \"rothmans cup\"", "question": "What date was the Competition of rothmans cup?", "context": "CREATE TABLE table_name_67 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_61 WHERE competition = \"friendly\"", "question": "What was the result of the Competition of friendly?", "context": "CREATE TABLE table_name_61 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_90 WHERE date = \"8 june 2005\"", "question": "Which competition was played on 8 June 2005?", "context": "CREATE TABLE table_name_90 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_4 WHERE score = \"1-0\"", "question": "Which competition had the score 1-0?", "context": "CREATE TABLE table_name_4 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_32 WHERE stadium = \"timsah arena\"", "question": "Timsah arena is in what country?", "context": "CREATE TABLE table_name_32 (country VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT country FROM table_name_83 WHERE team = \"relax-gam\"", "question": "What country is Relax-Gam from?", "context": "CREATE TABLE table_name_83 (country VARCHAR, team VARCHAR)"}, {"answer": "SELECT cyclist FROM table_name_89 WHERE team = \"gerolsteiner\"", "question": "Who is Gerolsteiner's cyclist?", "context": "CREATE TABLE table_name_89 (cyclist VARCHAR, team VARCHAR)"}, {"answer": "SELECT uci_protour_points FROM table_name_33 WHERE cyclist = \"davide rebellin\"", "question": "What is Davide Rebellin' UCI ProTour Points?", "context": "CREATE TABLE table_name_33 (uci_protour_points VARCHAR, cyclist VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_22 WHERE home_team = \"north melbourne\"", "question": "What was North Melbourne's score when they were the home team?", "context": "CREATE TABLE table_name_22 (home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_76 WHERE away_team = \"footscray\"", "question": "Where did Footscray play as the away team?", "context": "CREATE TABLE table_name_76 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_77 WHERE venue = \"lake oval\"", "question": "What was the away team's score in the match at Lake Oval?", "context": "CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_81 WHERE away_team = \"fitzroy\"", "question": "What was the sum of the crowds that watched Fitzroy play as the away team?", "context": "CREATE TABLE table_name_81 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_15 WHERE years = \"1996\u20132012\" AND apps > 340", "question": "What is the sum of rank with years  1996\u20132012 and apps greater than 340?", "context": "CREATE TABLE table_name_15 (rank INTEGER, years VARCHAR, apps VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_6 WHERE home_team = \"carlton\"", "question": "What was the away team that faced Carlton?", "context": "CREATE TABLE table_name_6 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_17 WHERE away_team = \"geelong\"", "question": "What is the total crowd size that saw Geelong play as the away team?", "context": "CREATE TABLE table_name_17 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT wins FROM table_name_89 WHERE poles = \"0\" AND final_placing = \"15th\"", "question": "How many wins did Hobbs had a 15th finish at poles 0?", "context": "CREATE TABLE table_name_89 (wins VARCHAR, poles VARCHAR, final_placing VARCHAR)"}, {"answer": "SELECT points FROM table_name_92 WHERE series = \"gp3 series\" AND podiums = \"2\"", "question": "What are the points for the GP3 series with 2 podiums?", "context": "CREATE TABLE table_name_92 (points VARCHAR, series VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT races FROM table_name_6 WHERE podiums = \"2\"", "question": "Which races have #2 podiums?", "context": "CREATE TABLE table_name_6 (races VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT final_placing FROM table_name_17 WHERE season = 2009", "question": "What was the 2009 final placing?", "context": "CREATE TABLE table_name_17 (final_placing VARCHAR, season VARCHAR)"}, {"answer": "SELECT points FROM table_name_34 WHERE races = \"7\"", "question": "What was the points with 7 races?", "context": "CREATE TABLE table_name_34 (points VARCHAR, races VARCHAR)"}, {"answer": "SELECT venue FROM table_name_90 WHERE home_team = \"south melbourne\"", "question": "What venue had south melbourne as the home team?", "context": "CREATE TABLE table_name_90 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_14 WHERE away_team = \"collingwood\"", "question": "What venue had collingwood as the away team?", "context": "CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_49 WHERE home_team = \"south melbourne\"", "question": "What was the home team score when south melbourne was the home team?", "context": "CREATE TABLE table_name_49 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE away_team = \"melbourne\"", "question": "What day was south melbourne the away squad?", "context": "CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_71 WHERE year > 1998 AND notes = \"2:31:40\"", "question": "What position did he finish after 1998 and a note time of 2:31:40?", "context": "CREATE TABLE table_name_71 (position VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT venue FROM table_name_63 WHERE notes = \"2:38:44\"", "question": "What venue featured a notes of 2:38:44?", "context": "CREATE TABLE table_name_63 (venue VARCHAR, notes VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_32 WHERE week > 6 AND result = \"l 30\u201324\"", "question": "Who did they play against in a week after 6 and the result was l 30\u201324?", "context": "CREATE TABLE table_name_32 (opponent VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE result = \"w 31\u20130\"", "question": "What opponent has a Result of w 31\u20130?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_7 WHERE position = \"cornerback\"", "question": "During which round was the final cornerback drafted for the New England Patriots in 2005?", "context": "CREATE TABLE table_name_7 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(best_score) FROM table_name_9 WHERE worst_dancer = \"leeza gibbons\" AND worst_score < 15", "question": "What dance was Leeza Gibbons the worst dancer for, receiving a score lower than 15?", "context": "CREATE TABLE table_name_9 (best_score INTEGER, worst_dancer VARCHAR, worst_score VARCHAR)"}, {"answer": "SELECT SUM(worst_score) FROM table_name_23 WHERE best_dancer = \"apolo anton ohno\" AND best_score > 30", "question": "What is the worst score for the dance that has Apolo Anton Ohno as the best dancer, and where his best score is larger than 30?", "context": "CREATE TABLE table_name_23 (worst_score INTEGER, best_dancer VARCHAR, best_score VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_48 WHERE away_team = \"carlton\"", "question": "What is the biggest crowd when carlton is the away squad?", "context": "CREATE TABLE table_name_48 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_44 WHERE away_team = \"richmond\"", "question": "What is the sum of crowd(s) when richmond is the away squad?", "context": "CREATE TABLE table_name_44 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_40 WHERE venue = \"glenferrie oval\"", "question": "What is the home team's score in the game played at glenferrie oval?", "context": "CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT res FROM table_name_57 WHERE opponent = \"nate mohr\"", "question": "What was the result of the event against Nate Mohr?", "context": "CREATE TABLE table_name_57 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_45 WHERE venue = \"junction oval\"", "question": "When the VFL played Junction Oval what was the home team score?", "context": "CREATE TABLE table_name_45 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_6 WHERE away_team = \"geelong\"", "question": "What was away team Geelong's crowd numbers?", "context": "CREATE TABLE table_name_6 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE away_team = \"fitzroy\"", "question": "What is the date they played against fitzroy?", "context": "CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_56 WHERE venue = \"princes park\"", "question": "How large was the crowd when they played at princes park?", "context": "CREATE TABLE table_name_56 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_74 WHERE venue = \"junction oval\"", "question": "Who is the away team at junction oval?", "context": "CREATE TABLE table_name_74 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_49 WHERE venue = \"princes park\"", "question": "What is the away team's score at princes park?", "context": "CREATE TABLE table_name_49 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(_percentage_internet_users) FROM table_name_51 WHERE _percentage_growth__2000_2008_ = 1622", "question": "What was the highest percentage of internet users a nation with a 1622% growth in 2000-2008 had?", "context": "CREATE TABLE table_name_51 (_percentage_internet_users INTEGER, _percentage_growth__2000_2008_ VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_50 WHERE away_team = \"footscray\"", "question": "Who was the home team when Footscray was the away team?", "context": "CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE opponent = \"buffalo bills\"", "question": "What day did the team play the buffalo bills?", "context": "CREATE TABLE table_name_28 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT bb_pop FROM table_name_8 WHERE riaa = \"g\" AND year < 1961", "question": "What is the BB Pop for the song with RIAA of G that was in a year earlier than 1961?", "context": "CREATE TABLE table_name_8 (bb_pop VARCHAR, riaa VARCHAR, year VARCHAR)"}, {"answer": "SELECT name FROM table_name_7 WHERE other = \"3 (15)\"", "question": "Which player has an Other of 3 (15)?", "context": "CREATE TABLE table_name_7 (name VARCHAR, other VARCHAR)"}, {"answer": "SELECT name FROM table_name_14 WHERE time = \"01:17:01\"", "question": "What Name has a Time of 01:17:01?", "context": "CREATE TABLE table_name_14 (name VARCHAR, time VARCHAR)"}, {"answer": "SELECT magnitude FROM table_name_49 WHERE date = \"may 28, 2004\"", "question": "What is the Magnitude on the Date May 28, 2004?", "context": "CREATE TABLE table_name_49 (magnitude VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_46 WHERE time = \"01:56:52\"", "question": "What Name has a Time of 01:56:52?", "context": "CREATE TABLE table_name_46 (name VARCHAR, time VARCHAR)"}, {"answer": "SELECT fatalities FROM table_name_79 WHERE epicenter = \"m\u0101zandar\u0101n\"", "question": "What number of Fatalities did the Epicenter M\u0101zandar\u0101n have?", "context": "CREATE TABLE table_name_79 (fatalities VARCHAR, epicenter VARCHAR)"}, {"answer": "SELECT fatalities FROM table_name_78 WHERE time = \"12:38:46\"", "question": "What number of Fatalties is associated with the Time of 12:38:46?", "context": "CREATE TABLE table_name_78 (fatalities VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_94 WHERE epicenter = \"bam\"", "question": "What is the Time when the Epicenter was Bam?", "context": "CREATE TABLE table_name_94 (time VARCHAR, epicenter VARCHAR)"}, {"answer": "SELECT chief_judge FROM table_name_2 WHERE appointed_by = \"clinton\"", "question": "Who did Clinton appoint as a Chief Judge?", "context": "CREATE TABLE table_name_2 (chief_judge VARCHAR, appointed_by VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_14 WHERE away_team = \"carlton\"", "question": "What was the smallest crowd for a Carlton away game?", "context": "CREATE TABLE table_name_14 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT res FROM table_name_11 WHERE time = \"1:13\"", "question": "What is the result when the time is 1:13?", "context": "CREATE TABLE table_name_11 (res VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE time = \"1:47\"", "question": "Who was the opponent when the time was 1:47?", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT venue FROM table_name_61 WHERE away_team = \"south melbourne\"", "question": "What venue did South Melbourne play as the away team?", "context": "CREATE TABLE table_name_61 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_77 WHERE venue = \"victoria park\"", "question": "What was the away team's score in the match at Victoria Park?", "context": "CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_34 WHERE round = 7 AND college = \"kansas state\"", "question": "Which position has a Round of 7, and a College of kansas state?", "context": "CREATE TABLE table_name_34 (position VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_66 WHERE overall > 17 AND position = \"quarterback\"", "question": "How many rounds have an Overall larger than 17, and a Position of quarterback?", "context": "CREATE TABLE table_name_66 (round VARCHAR, overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_80 WHERE round = 1 AND position = \"center\"", "question": "Which average overall has a Round of 1, and a Position of center?", "context": "CREATE TABLE table_name_80 (overall INTEGER, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_37 WHERE home_team = \"north melbourne\"", "question": "Where did North Melbourne play as the home team?", "context": "CREATE TABLE table_name_37 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_11 WHERE venue = \"mcg\"", "question": "What was the attendance when VFL played MCG?", "context": "CREATE TABLE table_name_11 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_98 WHERE venue = \"windy hill\"", "question": "What was the score of the away team when they played at Windy Hill?", "context": "CREATE TABLE table_name_98 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_77 WHERE away_team = \"melbourne\"", "question": "How large was the crowd when the away team was melbourne?", "context": "CREATE TABLE table_name_77 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_58 WHERE venue = \"glenferrie oval\"", "question": "How many people watched a Glenferrie Oval?", "context": "CREATE TABLE table_name_58 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_52 WHERE home_team = \"geelong\"", "question": "How faced Geelong at home?", "context": "CREATE TABLE table_name_52 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_77 WHERE away_team = \"essendon\"", "question": "How many people watch Essendon as an away team?", "context": "CREATE TABLE table_name_77 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_98 WHERE away_team = \"south melbourne\"", "question": "Where did South Melbourne go to play a team at home?", "context": "CREATE TABLE table_name_98 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_1 WHERE away_team = \"essendon\"", "question": "What is essendon's away team score?", "context": "CREATE TABLE table_name_1 (away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE away_team = \"geelong\"", "question": "What is the date with geelong as Away team?", "context": "CREATE TABLE table_name_63 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_7 WHERE venue = \"arden street oval\"", "question": "What is the highest crowd at arden street oval?", "context": "CREATE TABLE table_name_7 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_13 WHERE away_team = \"geelong\"", "question": "What is geelong's aberage crowd as Away Team?", "context": "CREATE TABLE table_name_13 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE away_team = \"north melbourne\"", "question": "What was the date of the game when North Melbourne was the away team?", "context": "CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT team FROM table_name_10 WHERE grid = 9", "question": "What is the team with grid 9?", "context": "CREATE TABLE table_name_10 (team VARCHAR, grid VARCHAR)"}, {"answer": "SELECT team FROM table_name_14 WHERE name = \"garth tander\"", "question": "What team features garth tander?", "context": "CREATE TABLE table_name_14 (team VARCHAR, name VARCHAR)"}, {"answer": "SELECT stages FROM table_name_11 WHERE distance = \"2,192 km\"", "question": "How many stages are in a distance of 2,192 km?", "context": "CREATE TABLE table_name_11 (stages VARCHAR, distance VARCHAR)"}, {"answer": "SELECT distance FROM table_name_38 WHERE stages = \"16\" AND year = \"1997\"", "question": "How long was the 16 staged event in 1997?", "context": "CREATE TABLE table_name_38 (distance VARCHAR, stages VARCHAR, year VARCHAR)"}, {"answer": "SELECT time FROM table_name_99 WHERE year = \"1984\"", "question": "What was the winning time in 1984?", "context": "CREATE TABLE table_name_99 (time VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner FROM table_name_83 WHERE stages = \"17\" AND year = \"1987\"", "question": "Who won the 17 staged event in 1987?", "context": "CREATE TABLE table_name_83 (winner VARCHAR, stages VARCHAR, year VARCHAR)"}, {"answer": "SELECT name FROM table_name_91 WHERE year = \"1988\"", "question": "Which event happened in 1988?", "context": "CREATE TABLE table_name_91 (name VARCHAR, year VARCHAR)"}, {"answer": "SELECT city_location FROM table_name_70 WHERE pole_position = \"rick mears\" AND winning_driver = \"rick mears\"", "question": "Where did Rick Mears win, after starting in Pole Position?", "context": "CREATE TABLE table_name_70 (city_location VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT city_location FROM table_name_48 WHERE race_name = \"budweiser/g. i. joe's 200\"", "question": "Where is the budweiser/g. i. joe's 200?", "context": "CREATE TABLE table_name_48 (city_location VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT city_location FROM table_name_60 WHERE pole_position = \"emerson fittipaldi\"", "question": "Where is Emerson Fittipaldi starting in Pole position?", "context": "CREATE TABLE table_name_60 (city_location VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_56 WHERE date = \"july 24\"", "question": "Which Circuit is on July 24?", "context": "CREATE TABLE table_name_56 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE winning_constructor = \"delage\"", "question": "What date did Delage win?", "context": "CREATE TABLE table_name_34 (date VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_58 WHERE winning_driver = \"luigi villoresi\" AND name = \"lausanne grand prix\"", "question": "What circuit did Luigi Villoresi win the Lausanne Grand Prix?", "context": "CREATE TABLE table_name_58 (circuit VARCHAR, winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_2 WHERE winning_driver = \"nello pagani\"", "question": "Which Grand Prix did Nello Pagani win?", "context": "CREATE TABLE table_name_2 (name VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_8 WHERE away_team = \"fitzroy\"", "question": "What did the home team score when playing Fitzroy as the away team?", "context": "CREATE TABLE table_name_8 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_41 WHERE venue = \"western oval\"", "question": "What did the home team score when playing at Western Oval?", "context": "CREATE TABLE table_name_41 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_20 WHERE home_team = \"collingwood\"", "question": "What away team played Collingwood?", "context": "CREATE TABLE table_name_20 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE home_team = \"collingwood\"", "question": "On what date did Collingwood play at home?", "context": "CREATE TABLE table_name_20 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_28 WHERE overall < 187 AND player = \"dave stachelski\"", "question": "Name the average round where Dave Stachelski was picked smaller than 187.", "context": "CREATE TABLE table_name_28 (round INTEGER, overall VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_79 WHERE overall > 187 AND player = \"david nugent\"", "question": "Which position did David Nugent play with an overall small than 187?", "context": "CREATE TABLE table_name_79 (position VARCHAR, overall VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_46 WHERE overall > 187 AND round < 7 AND position = \"defensive end\"", "question": "Name the college that has an overall larger than 187 and a round smaller than 7 for the defensive end position.", "context": "CREATE TABLE table_name_46 (college VARCHAR, position VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_74 WHERE games < 201 AND rank = 2 AND years = \"2007-2012\"", "question": "Which player has less than 201 games, is ranked 2, and played between 2007-2012?", "context": "CREATE TABLE table_name_74 (player VARCHAR, years VARCHAR, games VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_99 WHERE player = \"nick rimando\"", "question": "How many average games did Nick Rimando have?", "context": "CREATE TABLE table_name_99 (games INTEGER, player VARCHAR)"}, {"answer": "SELECT party FROM table_name_47 WHERE left_office = \"january 12, 1857\"", "question": "What is the party of the politician who left office on January 12, 1857", "context": "CREATE TABLE table_name_47 (party VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT governor FROM table_name_4 WHERE name = \"hugh thomas miller\"", "question": "What is the party of the governor under Hugh Thomas Miller.", "context": "CREATE TABLE table_name_4 (governor VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_32 WHERE left_office = \"january 9, 1893\"", "question": "Who left office on January 9, 1893", "context": "CREATE TABLE table_name_32 (name VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT took_office FROM table_name_8 WHERE governor = \"matthew e. welsh\"", "question": "Who took office under the government of Matthew E. Welsh?", "context": "CREATE TABLE table_name_8 (took_office VARCHAR, governor VARCHAR)"}, {"answer": "SELECT governor FROM table_name_4 WHERE took_office = \"january 13, 1877\"", "question": "Which governor took office on January 13, 1877", "context": "CREATE TABLE table_name_4 (governor VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_18 WHERE away_team = \"geelong\"", "question": "What is the score of the Geelong away team?", "context": "CREATE TABLE table_name_18 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_85 WHERE venue = \"lake oval\"", "question": "What is the score of the team that plays in lake oval?", "context": "CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE venue = \"princes park\"", "question": "What the date of the game of the team that plays in princes park?", "context": "CREATE TABLE table_name_25 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_60 WHERE home_team = \"carlton\"", "question": "What was the score of the home team of carlton?", "context": "CREATE TABLE table_name_60 (home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_63 WHERE away_team = \"geelong\"", "question": "How many people watched the away team of Geelong?", "context": "CREATE TABLE table_name_63 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_99 WHERE venue = \"brunswick street oval\"", "question": "Which home team has the Brunswick Street Oval venue?", "context": "CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_8 WHERE venue = \"brunswick street oval\"", "question": "Which home team has the Brunswick Street Oval venue?", "context": "CREATE TABLE table_name_8 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_26 WHERE new_south_wales = 42 AND victoria < 68", "question": "Which is the lowest crop total with New South Wales at 42 kilotonnes and Victorian at less than 68 kilotonnes?", "context": "CREATE TABLE table_name_26 (total INTEGER, new_south_wales VARCHAR, victoria VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_43 WHERE best = \"1:01.704\"", "question": "Who had a qual 1 best of 1:01.704?", "context": "CREATE TABLE table_name_43 (qual_1 VARCHAR, best VARCHAR)"}, {"answer": "SELECT team FROM table_name_78 WHERE qual_1 = \"1:02.755\"", "question": "What team had a qual 1 of 1:02.755?", "context": "CREATE TABLE table_name_78 (team VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_87 WHERE team = \"rusport\" AND best = \"58.665\"", "question": "What is the qual 1 for rusport and had a best of 58.665?", "context": "CREATE TABLE table_name_87 (qual_1 VARCHAR, team VARCHAR, best VARCHAR)"}, {"answer": "SELECT team FROM table_name_72 WHERE qual_1 = \"59.895\"", "question": "What team had a qual 1 of 59.895?", "context": "CREATE TABLE table_name_72 (team VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT name FROM table_name_98 WHERE qual_1 = \"1:01.461\"", "question": "Who had a qual 1 of 1:01.461?", "context": "CREATE TABLE table_name_98 (name VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT lfn_support FROM table_name_74 WHERE architecture = \"32-bit\" AND name = \"windows home server\"", "question": "What is the LFN support with 32-bit architecture on Windows Home Server?", "context": "CREATE TABLE table_name_74 (lfn_support VARCHAR, architecture VARCHAR, name VARCHAR)"}, {"answer": "SELECT lfn_support FROM table_name_68 WHERE name = \"windows nt 3.1\"", "question": "What is the LFN support on Windows NT 3.1?", "context": "CREATE TABLE table_name_68 (lfn_support VARCHAR, name VARCHAR)"}, {"answer": "SELECT venue FROM table_name_64 WHERE away_team = \"hawthorn\"", "question": "What venue features hawthorn as the away team?", "context": "CREATE TABLE table_name_64 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(cup_apps) FROM table_name_48 WHERE league_apps < 12", "question": "How many cop apps in the season with fewer than 12 league apps?", "context": "CREATE TABLE table_name_48 (cup_apps INTEGER, league_apps INTEGER)"}, {"answer": "SELECT season FROM table_name_87 WHERE cup_apps = 6 AND cup_goals = 5", "question": "What season saw 6 cup apps and 5 cup goals?", "context": "CREATE TABLE table_name_87 (season VARCHAR, cup_apps VARCHAR, cup_goals VARCHAR)"}, {"answer": "SELECT SUM(league_apps) FROM table_name_22 WHERE cup_goals > 2 AND cup_apps > 6", "question": "How many league apps in the season with more than 2 cup goals and more than 6 cup apps?", "context": "CREATE TABLE table_name_22 (league_apps INTEGER, cup_goals VARCHAR, cup_apps VARCHAR)"}, {"answer": "SELECT AVG(cup_goals) FROM table_name_9 WHERE league_apps > 34", "question": "How many cup goals for the season with more than 34 league apps?", "context": "CREATE TABLE table_name_9 (cup_goals INTEGER, league_apps INTEGER)"}, {"answer": "SELECT SUM(cup_goals) FROM table_name_78 WHERE league_apps > 5 AND cup_apps = 1 AND league_goals < 4", "question": "How many cup goals in the season with more than 5 league apps, 1 cup apps and fewer than 4 league goals?", "context": "CREATE TABLE table_name_78 (cup_goals INTEGER, league_goals VARCHAR, league_apps VARCHAR, cup_apps VARCHAR)"}, {"answer": "SELECT cup_apps FROM table_name_17 WHERE league_goals > 10 AND league_apps = 23", "question": "How many cup apps for the season where there are more than 10 league goals and 23 league apps?", "context": "CREATE TABLE table_name_17 (cup_apps VARCHAR, league_goals VARCHAR, league_apps VARCHAR)"}, {"answer": "SELECT route FROM table_name_12 WHERE date = \"2 july\"", "question": "Which route has a Date of 2 july?", "context": "CREATE TABLE table_name_12 (route VARCHAR, date VARCHAR)"}, {"answer": "SELECT length FROM table_name_37 WHERE stage = \"9\"", "question": "Which length has a Stage of 9?", "context": "CREATE TABLE table_name_37 (length VARCHAR, stage VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE terrain = \"plain stage\" AND stage = \"4\"", "question": "Which date has a Terrain of plain stage, and a Stage of 4?", "context": "CREATE TABLE table_name_34 (date VARCHAR, terrain VARCHAR, stage VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_53 WHERE home_team = \"fitzroy\"", "question": "What is the score for Fitzroy when they are the home team?", "context": "CREATE TABLE table_name_53 (home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_38 WHERE home_team = \"melbourne\"", "question": "What is the smallest crowd for a game when Melbourne is the home team?", "context": "CREATE TABLE table_name_38 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT drafting_team FROM table_name_44 WHERE graduated > 2010 AND college_prior = \"michigan\"", "question": "Who drafted the player from Michigan after 2010?", "context": "CREATE TABLE table_name_44 (drafting_team VARCHAR, graduated VARCHAR, college_prior VARCHAR)"}, {"answer": "SELECT home_town FROM table_name_32 WHERE graduated > 2010 AND college_prior = \"michigan\"", "question": "Where was the player from who graduated from Michigan after 2010?", "context": "CREATE TABLE table_name_32 (home_town VARCHAR, graduated VARCHAR, college_prior VARCHAR)"}, {"answer": "SELECT home_town FROM table_name_7 WHERE player = \"steve zakuani\"", "question": "From what town was Steve Zakuani?", "context": "CREATE TABLE table_name_7 (home_town VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(graduated) FROM table_name_94 WHERE player = \"omar gonzalez\"", "question": "What year did Omar Gonzalez graduate?", "context": "CREATE TABLE table_name_94 (graduated INTEGER, player VARCHAR)"}, {"answer": "SELECT host FROM table_name_12 WHERE city = \"long beach\"", "question": "Which university hosted in Long Beach?", "context": "CREATE TABLE table_name_12 (host VARCHAR, city VARCHAR)"}, {"answer": "SELECT venue FROM table_name_38 WHERE host = \"saint joseph's university\"", "question": "What is the venue that Saint Joseph's University hosted at?", "context": "CREATE TABLE table_name_38 (venue VARCHAR, host VARCHAR)"}, {"answer": "SELECT city FROM table_name_84 WHERE venue = \"hayman hall (tom gola arena)\"", "question": "In which city is Hayman Hall (Tom Gola Arena) located?", "context": "CREATE TABLE table_name_84 (city VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_3 WHERE city = \"villanova\"", "question": "Which venue is in the city of Villanova?", "context": "CREATE TABLE table_name_3 (venue VARCHAR, city VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE team = \"clare\" AND player = \"ger loughnane\"", "question": "On which date did Ger Loughnane from Team Clare have a match?", "context": "CREATE TABLE table_name_88 (date VARCHAR, team VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_98 WHERE opposition = \"tipperary\" AND game = \"munster final\"", "question": "What team opposed Tipperary in the Munster Final game?", "context": "CREATE TABLE table_name_98 (team VARCHAR, opposition VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE opposition = \"limerick\" AND game = \"all-ireland final\"", "question": "On what date did Limerick play in the All-Ireland Final game?", "context": "CREATE TABLE table_name_38 (date VARCHAR, opposition VARCHAR, game VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_22 WHERE date = \"july 29\"", "question": "Who was the opposition in the game on July 29?", "context": "CREATE TABLE table_name_22 (opposition VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE week = 13", "question": "What day did the team play week 13?", "context": "CREATE TABLE table_name_87 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_85 WHERE opponent = \"bye\"", "question": "What was Bye's opponent's attendance?", "context": "CREATE TABLE table_name_85 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE week < 10 AND attendance = \"63,672\"", "question": "Which opponent, before Week 10, had an attendance of 63,672?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_27 WHERE attendance = \"70,225\"", "question": "Which week had an attendance of 70,225", "context": "CREATE TABLE table_name_27 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MAX(injured) FROM table_name_84 WHERE place = \"rohtas, bihar\" AND killed < 13", "question": "What was the highest number of people injured at incidents located at Rohtas, Bihar where fewer than 13 were killed?", "context": "CREATE TABLE table_name_84 (injured INTEGER, place VARCHAR, killed VARCHAR)"}, {"answer": "SELECT MAX(injured) FROM table_name_14 WHERE place = \"vaishali, bihar\"", "question": "What was the highest number of people injured in incidents in Vaishali, Bihar?", "context": "CREATE TABLE table_name_14 (injured INTEGER, place VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_97 WHERE venue = \"victoria park\"", "question": "How many people were in the crowd at Victoria Park?", "context": "CREATE TABLE table_name_97 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_40 WHERE away_team = \"melbourne\"", "question": "How many points did the away team from Melbourne score?", "context": "CREATE TABLE table_name_40 (away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE home_team = \"carlton\"", "question": "What date did the home team from Carlton play on?", "context": "CREATE TABLE table_name_11 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT manager FROM table_name_53 WHERE club = \"st. johnstone\"", "question": "Who is the manager of the St. Johnstone club?", "context": "CREATE TABLE table_name_53 (manager VARCHAR, club VARCHAR)"}, {"answer": "SELECT manager FROM table_name_16 WHERE club = \"stenhousemuir\"", "question": "Who is the manager of the Stenhousemuir club?", "context": "CREATE TABLE table_name_16 (manager VARCHAR, club VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_88 WHERE away_team = \"south melbourne\"", "question": "What team was home team when south Melbourne was the away team?", "context": "CREATE TABLE table_name_88 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_94 WHERE home_team = \"carlton\"", "question": "What was the away team score when the home team was Carlton?", "context": "CREATE TABLE table_name_94 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE attendance = \"bye\" AND week = 11", "question": "What was date of the bye week 11?", "context": "CREATE TABLE table_name_38 (date VARCHAR, attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT venue FROM table_name_9 WHERE away_team = \"essendon\"", "question": "Where did Essendon play as the away team?", "context": "CREATE TABLE table_name_9 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_22 WHERE engine = \"ferrari\" AND driver = \"fernando alonso\" AND podiums > 13", "question": "What is the most recent season when Fernando Alonso had more than 13 podiums in a car with a Ferrari engine?", "context": "CREATE TABLE table_name_22 (season INTEGER, podiums VARCHAR, engine VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine FROM table_name_3 WHERE team = \"bettenhausen motorsports\"", "question": "What is the engine for the Bettenhausen Motorsports team?", "context": "CREATE TABLE table_name_3 (engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT engine FROM table_name_49 WHERE chassis = \"march\" AND drivers = \"steve chassey\"", "question": "What engine does Steve Chassey drive with a march chassis?", "context": "CREATE TABLE table_name_49 (engine VARCHAR, chassis VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT engine FROM table_name_49 WHERE team = \"arciero racing\"", "question": "What is the engine for the Arciero Racing team?", "context": "CREATE TABLE table_name_49 (engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_82 WHERE engine = \"cosworth\" AND drivers = \"scott pruett\" AND team = \"dick simon racing\"", "question": "What chassis belongs with the Cosworth Engine driven by Scott Pruett on the Dick Simon Racing team?", "context": "CREATE TABLE table_name_82 (chassis VARCHAR, team VARCHAR, engine VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT engine FROM table_name_19 WHERE team = \"alex morales motorsports\"", "question": "What is the engine for the team of Alex Morales Motorsports?", "context": "CREATE TABLE table_name_19 (engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT engine FROM table_name_79 WHERE team = \"machinists union racing\"", "question": "What is the engine for the Machinists Union Racing team?", "context": "CREATE TABLE table_name_79 (engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_48 WHERE week = 1", "question": "What was the attendance for Week 1?", "context": "CREATE TABLE table_name_48 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_48 WHERE attendance = \"73,369\"", "question": "Which team did the Patriots play when there was a game attendance of 73,369?", "context": "CREATE TABLE table_name_48 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE week = 3", "question": "What date was the Week 3 game played?", "context": "CREATE TABLE table_name_18 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_38 WHERE venue = \"windy hill\"", "question": "What was the highest attendance of the matches that took place at Windy Hill?", "context": "CREATE TABLE table_name_38 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_48 WHERE venue = \"glenferrie oval\"", "question": "Which team has a home field at Glenferrie Oval?", "context": "CREATE TABLE table_name_48 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE away_team = \"footscray\"", "question": "On what date is Footscray the away team?", "context": "CREATE TABLE table_name_59 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_64 WHERE away_team = \"footscray\"", "question": "What was the crowd population for Footscray as an away team?", "context": "CREATE TABLE table_name_64 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT SUM(_number_of_bids) FROM table_name_7 WHERE win__percentage = \".500\" AND conference = \"ohio valley\"", "question": "How many bids were there for the .500 win percentage in the Ohio Valley conference?", "context": "CREATE TABLE table_name_7 (_number_of_bids INTEGER, win__percentage VARCHAR, conference VARCHAR)"}, {"answer": "SELECT championship_game FROM table_name_29 WHERE final_four = \"1\" AND conference = \"american south\"", "question": "What is the Championship Game when the Final Four is 1 and the conference is American South?", "context": "CREATE TABLE table_name_29 (championship_game VARCHAR, final_four VARCHAR, conference VARCHAR)"}, {"answer": "SELECT final_four FROM table_name_32 WHERE win__percentage = \".750\"", "question": "What is the Final Four with a win percentage of .750?", "context": "CREATE TABLE table_name_32 (final_four VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE venue = \"arden street oval\"", "question": "What is the date of the game at the Arden Street Oval?", "context": "CREATE TABLE table_name_49 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE venue = \"kardinia park\"", "question": "What is the date of the game when the venue is Kardinia Park?", "context": "CREATE TABLE table_name_13 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_66 WHERE home_team = \"st kilda\"", "question": "Which away team played against the home team of St Kilda?", "context": "CREATE TABLE table_name_66 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_56 WHERE away_team = \"melbourne\"", "question": "Which home team competed against the away team of Melbourne?", "context": "CREATE TABLE table_name_56 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_31 WHERE week = \"1\" AND opponent = \"bye\"", "question": "What was the result of week 1 and the opponent was bye?", "context": "CREATE TABLE table_name_31 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_35 WHERE record = \"6-2\"", "question": "What is the site of the game with a Record of 6-2?", "context": "CREATE TABLE table_name_35 (game_site VARCHAR, record VARCHAR)"}, {"answer": "SELECT week FROM table_name_99 WHERE record = \"12-2\"", "question": "What week has a Record of 12-2?", "context": "CREATE TABLE table_name_99 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT city FROM table_name_35 WHERE name = \"sky tower\"", "question": "What city has Sky Tower?", "context": "CREATE TABLE table_name_35 (city VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_96 WHERE year_built < 1973 AND city = \"courbevoie\"", "question": "What is the name of a building in Courbevoie built before 1973?", "context": "CREATE TABLE table_name_96 (name VARCHAR, year_built VARCHAR, city VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_36 WHERE venue = \"lake oval\"", "question": "Who was the away team at Lake Oval?", "context": "CREATE TABLE table_name_36 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_83 WHERE home_team = \"hawthorn\"", "question": "What was the home team score for the game where Hawthorn is the home team?", "context": "CREATE TABLE table_name_83 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE away_team = \"essendon\"", "question": "What is the date of the game where Essendon is the away team?", "context": "CREATE TABLE table_name_36 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_12 WHERE away_team = \"south melbourne\"", "question": "What is the home team's score when the away team is south melbourne?", "context": "CREATE TABLE table_name_12 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_67 WHERE home_team = \"st kilda\"", "question": "What venue featured the home side of st kilda?", "context": "CREATE TABLE table_name_67 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT metres FROM table_name_21 WHERE feet > 850", "question": "How many metres tall is the building that is larger than 850 feet tall?", "context": "CREATE TABLE table_name_21 (metres VARCHAR, feet INTEGER)"}, {"answer": "SELECT home_team AS score FROM table_name_9 WHERE home_team = \"geelong\"", "question": "What was Geelong's score when they were the home team?", "context": "CREATE TABLE table_name_9 (home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_19 WHERE away_team = \"collingwood\"", "question": "Where was the game when Collingwood was the home team?", "context": "CREATE TABLE table_name_19 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(total_rebounds) FROM table_name_59 WHERE player = \"peter woolfolk\"", "question": "What was Peter Woolfolk's Total Rebound average?", "context": "CREATE TABLE table_name_59 (total_rebounds INTEGER, player VARCHAR)"}, {"answer": "SELECT result FROM table_name_79 WHERE week = 3", "question": "What was week 3 score?", "context": "CREATE TABLE table_name_79 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_41 WHERE stadium = \"odsal stadium\"", "question": "What is the result of the game at Odsal Stadium?", "context": "CREATE TABLE table_name_41 (result VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT championship FROM table_name_43 WHERE margin = \"10 strokes\"", "question": "Which championship had a margin of 10 strokes?", "context": "CREATE TABLE table_name_43 (championship VARCHAR, margin VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_48 WHERE margin = \"10 strokes\"", "question": "Which runner-up player(s) had a margin of 10 strokes?", "context": "CREATE TABLE table_name_48 (runner_s__up VARCHAR, margin VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_12 WHERE runner_s__up = \"kathy ahern\"", "question": "What was the most recent year that Kathy Ahern was a runner-up?", "context": "CREATE TABLE table_name_12 (year INTEGER, runner_s__up VARCHAR)"}, {"answer": "SELECT rtm_build FROM table_name_74 WHERE name = \"windows home server 2011\"", "question": "What is the RTM build of the Windows Home Server 2011?", "context": "CREATE TABLE table_name_74 (rtm_build VARCHAR, name VARCHAR)"}, {"answer": "SELECT current_version FROM table_name_14 WHERE rtm_build = \"9200\" AND name = \"windows 8\"", "question": "What is the current version of windows 8 with an RTM build of 9200?", "context": "CREATE TABLE table_name_14 (current_version VARCHAR, rtm_build VARCHAR, name VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_44 WHERE away_team = \"geelong\"", "question": "What was the home team's score that played Geelong?", "context": "CREATE TABLE table_name_44 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_54 WHERE opponent = \"kevin roddy\"", "question": "How many rounds were fought with opponent Kevin Roddy?", "context": "CREATE TABLE table_name_54 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_2 WHERE attendance = \"19,887\"", "question": "What was the score when attendance was 19,887?", "context": "CREATE TABLE table_name_2 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT week FROM table_name_20 WHERE attendance = \"bye\"", "question": "What week was the Bye attendance week?", "context": "CREATE TABLE table_name_20 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_38 WHERE opponent = \"denver broncos\"", "question": "Who won when the Patriots played the Denver Broncos?", "context": "CREATE TABLE table_name_38 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_52 WHERE attendance = \"8,000\"", "question": "Who won when the attendance was 8,000?", "context": "CREATE TABLE table_name_52 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT programming FROM table_name_1 WHERE operator = \"ivptc\"", "question": "What channel has an operator of ivptc?", "context": "CREATE TABLE table_name_1 (programming VARCHAR, operator VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_83 WHERE home_team = \"richmond\"", "question": "What was the score when Richmond payed as the home team?", "context": "CREATE TABLE table_name_83 (home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_62 WHERE away_team = \"carlton\"", "question": "Who played against Carlton as the home team?", "context": "CREATE TABLE table_name_62 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_88 WHERE away_team = \"south melbourne\"", "question": "What was the attendance when South Melbourne was the away team?", "context": "CREATE TABLE table_name_88 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_27 WHERE venue = \"kardinia park\"", "question": "Who was the home team when the VFL played Kardinia Park?", "context": "CREATE TABLE table_name_27 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT silver FROM table_name_61 WHERE bronze = 32", "question": "How many silver medals did the nation who received 32 bronze medals receive?", "context": "CREATE TABLE table_name_61 (silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_91 WHERE time_retired = \"52:52.1881\"", "question": "What is the highest numbered grid with a time or retired time of 52:52.1881?", "context": "CREATE TABLE table_name_91 (grid INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT name FROM table_name_1 WHERE time_retired = \"52:56.4653\"", "question": "Who recorded a time or retired time of 52:56.4653?", "context": "CREATE TABLE table_name_1 (name VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_40 WHERE team = \"paul cruickshank racing\" AND laps < 27", "question": "What is the average grid number for paul cruickshank racing with less than 27 laps?", "context": "CREATE TABLE table_name_40 (grid INTEGER, team VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_77 WHERE silver > 6 AND bronze = 6 AND gold < 16", "question": "What is the lowest total metals of a team with more than 6 silver, 6 bronze, and fewer than 16 gold medals?", "context": "CREATE TABLE table_name_77 (total INTEGER, gold VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_61 WHERE venue = \"brunswick street oval\"", "question": "What is the crowd size of the game at Brunswick Street Oval?", "context": "CREATE TABLE table_name_61 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_52 WHERE away_team = \"footscray\"", "question": "Who was the home team of the game where Footscray is the away team?", "context": "CREATE TABLE table_name_52 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_98 WHERE date = \"september 3, 2000\"", "question": "What week has a date of September 3, 2000?", "context": "CREATE TABLE table_name_98 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_61 WHERE away_team = \"hawthorn\"", "question": "Who was the home team when Hawthorn was the away team?", "context": "CREATE TABLE table_name_61 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_18 WHERE away_team = \"fitzroy\"", "question": "What was Fitzroy's score when they were the away team?", "context": "CREATE TABLE table_name_18 (away_team VARCHAR)"}, {"answer": "SELECT speed FROM table_name_27 WHERE team = \"bmw\" AND rank = 7", "question": "What was #7 BMW's speed?", "context": "CREATE TABLE table_name_27 (speed VARCHAR, team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_28 WHERE home_team = \"south melbourne\"", "question": "What was the crowd size in the match South Melbourne played at home?", "context": "CREATE TABLE table_name_28 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_75 WHERE venue = \"western oval\"", "question": "What was the away team's score at Western Oval?", "context": "CREATE TABLE table_name_75 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_79 WHERE away_team = \"essendon\"", "question": "What was the crowd size when Essendon was the away team?", "context": "CREATE TABLE table_name_79 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE time = \"16:24.12\"", "question": "On what date was the time of 16:24.12 achieved?", "context": "CREATE TABLE table_name_36 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_54 WHERE team = \"capital city giants\" AND score = \"8-0\"", "question": "What year did the Capital City Giants have a game with the final score of 8-0?", "context": "CREATE TABLE table_name_54 (year INTEGER, team VARCHAR, score VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_37 WHERE score = \"6-0\"", "question": "What team lost a game by a score of 6-0?", "context": "CREATE TABLE table_name_37 (runner_up VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_31 WHERE game = \"capital bowl iv\"", "question": "What teams played in Capital Bowl IV?", "context": "CREATE TABLE table_name_31 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_name_11 WHERE runner_up = \"capital city giants\"", "question": "What team defeated the Capital City Giants?", "context": "CREATE TABLE table_name_11 (team VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT total_tenure_rank FROM table_name_6 WHERE uninterrupted_time = \"49 years, 349 days\"", "question": "What is the total tenure rank of the person with an uninterrupted time of 49 years, 349 days?", "context": "CREATE TABLE table_name_6 (total_tenure_rank VARCHAR, uninterrupted_time VARCHAR)"}, {"answer": "SELECT total_tenure_time FROM table_name_31 WHERE uninterrupted_rank > 4 AND total_tenure_rank > 9 AND name = \"warren magnuson\"", "question": "What is the total tenure time of Warren Magnuson, who had an uninterrupted rank larger than 4 and a total tenure rank larger than 9?", "context": "CREATE TABLE table_name_31 (total_tenure_time VARCHAR, name VARCHAR, uninterrupted_rank VARCHAR, total_tenure_rank VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_94 WHERE overall = 63", "question": "What round was the overall 63 drafted?", "context": "CREATE TABLE table_name_94 (round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT in_swedish FROM table_name_77 WHERE in_english = \"south karelia\"", "question": "What is the Swedish name for South Karelia?", "context": "CREATE TABLE table_name_77 (in_swedish VARCHAR, in_english VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_72 WHERE venue = \"arden street oval\"", "question": "What home team plays at Arden Street Oval?", "context": "CREATE TABLE table_name_72 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT jump_3 FROM table_name_80 WHERE jump_2 = \"7.06\"", "question": "Who has a Jump 2 of 7.06, and what is this person's Jump 3?", "context": "CREATE TABLE table_name_80 (jump_3 VARCHAR, jump_2 VARCHAR)"}, {"answer": "SELECT best_jump FROM table_name_48 WHERE jump_1 = \"x\" AND jump_2 = \"7.28\"", "question": "Who has an x under Jump 1, a Jump 2 of 7.28, and what is this person's Best Jump?", "context": "CREATE TABLE table_name_48 (best_jump VARCHAR, jump_1 VARCHAR, jump_2 VARCHAR)"}, {"answer": "SELECT jump_2 FROM table_name_62 WHERE jump_3 = \"7.77\"", "question": "What is the Jump 2 of the person that has a Jump 3 of 7.77?", "context": "CREATE TABLE table_name_62 (jump_2 VARCHAR, jump_3 VARCHAR)"}, {"answer": "SELECT jump_2 FROM table_name_58 WHERE jump_1 = \"7.14\"", "question": "What is the Jump 2 of the person that has a Jump 1 of 7.14", "context": "CREATE TABLE table_name_58 (jump_2 VARCHAR, jump_1 VARCHAR)"}, {"answer": "SELECT champion FROM table_name_58 WHERE city = \"tucson, arizona\"", "question": "Which player from Tucson, Arizona won the Championship?", "context": "CREATE TABLE table_name_58 (champion VARCHAR, city VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE city = \"inglewood, california\"", "question": "What was the final score of the player from Inglewood, California?", "context": "CREATE TABLE table_name_14 (score VARCHAR, city VARCHAR)"}, {"answer": "SELECT name FROM table_name_14 WHERE date = \"cancelled\"", "question": "What tour was cancelled?", "context": "CREATE TABLE table_name_14 (name VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_76 WHERE name = \"fedex tour of calabarzon\"", "question": "Who won the Fedex tour of Calabarzon?", "context": "CREATE TABLE table_name_76 (winner VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_16 WHERE time = \"55:29:20\"", "question": "What year has the time of 55:29:20?", "context": "CREATE TABLE table_name_16 (year VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE partner = \"lorenzo manta\"", "question": "What was the score when Mark parterned with lorenzo manta?", "context": "CREATE TABLE table_name_19 (score VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_22 WHERE surface = \"carpet\"", "question": "Who was his partner when he played on carpet?", "context": "CREATE TABLE table_name_22 (partner VARCHAR, surface VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE partner = \"peter nyborg\"", "question": "When did he play with peter nyborg?", "context": "CREATE TABLE table_name_76 (date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE surface = \"hard\" AND partner = \"tom mercer\"", "question": "What day did he play on hard with tom mercer?", "context": "CREATE TABLE table_name_69 (date VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT record FROM table_name_92 WHERE week = \"2\"", "question": "What was the week 2's record?", "context": "CREATE TABLE table_name_92 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE week = \"12\"", "question": "What was week 12's record?", "context": "CREATE TABLE table_name_57 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_25 WHERE record = \"bye\"", "question": "What was the Bye week attendance?", "context": "CREATE TABLE table_name_25 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT kickoff FROM table_name_93 WHERE week = \"sb xxxvi\"", "question": "When was the kickoff time of the SB XXXVI?", "context": "CREATE TABLE table_name_93 (kickoff VARCHAR, week VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_3 WHERE venue = \"princes park\"", "question": "What was the home team score for the game played at Princes Park?", "context": "CREATE TABLE table_name_3 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT event FROM table_name_42 WHERE time = \"6:37.73\"", "question": "What event had a time of 6:37.73?", "context": "CREATE TABLE table_name_42 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_34 WHERE event = \"50m breaststroke\"", "question": "What is the time for the 50m breaststroke?", "context": "CREATE TABLE table_name_34 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT age_group FROM table_name_75 WHERE event = \"200m breaststroke\" AND time = \"6:37.73\"", "question": "What age group has a time of 6:37.73 at the 200m breaststroke?", "context": "CREATE TABLE table_name_75 (age_group VARCHAR, event VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE age_group = \"90-94\" AND pool = \"lc\" AND time = \"1:25.91\"", "question": "What date did the 90-94 year old have a tie of 1:25.91 at the LC pool?", "context": "CREATE TABLE table_name_25 (date VARCHAR, time VARCHAR, age_group VARCHAR, pool VARCHAR)"}, {"answer": "SELECT COUNT(total_points) FROM table_name_48 WHERE rank > 9 AND ppg_avg > 13.4", "question": "How many point totals are there that rank higher than 9 and have a PPG avg higher than 13.4?", "context": "CREATE TABLE table_name_48 (total_points VARCHAR, rank VARCHAR, ppg_avg VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_16 WHERE games > 125 AND player = \"david gonzalvez\"", "question": "How many players played over 125 games and were named david gonzalvez?", "context": "CREATE TABLE table_name_16 (rank VARCHAR, games VARCHAR, player VARCHAR)"}, {"answer": "SELECT host FROM table_name_40 WHERE city = \"missoula\"", "question": "Which host university is based in Missoula?", "context": "CREATE TABLE table_name_40 (host VARCHAR, city VARCHAR)"}, {"answer": "SELECT state FROM table_name_13 WHERE city = \"ruston\"", "question": "What state is the city of Ruston in?", "context": "CREATE TABLE table_name_13 (state VARCHAR, city VARCHAR)"}, {"answer": "SELECT state FROM table_name_53 WHERE region = \"mideast\" AND city = \"seattle\"", "question": "Which mideast regional state contains the city of Seattle?", "context": "CREATE TABLE table_name_53 (state VARCHAR, region VARCHAR, city VARCHAR)"}, {"answer": "SELECT region FROM table_name_33 WHERE host = \"old dominion university\"", "question": "Which region does Old Dominion University represent?", "context": "CREATE TABLE table_name_33 (region VARCHAR, host VARCHAR)"}, {"answer": "SELECT state FROM table_name_27 WHERE host = \"university of tennessee\"", "question": "Which state is University of Tennessee based in?", "context": "CREATE TABLE table_name_27 (state VARCHAR, host VARCHAR)"}, {"answer": "SELECT grid FROM table_name_45 WHERE team = \"dale coyne racing\" AND driver = \"bruno junqueira\"", "question": "What was the grid for Bruno Junqueira for Dale Coyne Racing?", "context": "CREATE TABLE table_name_45 (grid VARCHAR, team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_86 WHERE grid = 5 AND laps < 78", "question": "What were the highest points for less than 78 laps and on grid 5?", "context": "CREATE TABLE table_name_86 (points INTEGER, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_15 WHERE venue = \"junction oval\"", "question": "How many were in the crowd at the Junction Oval venue?", "context": "CREATE TABLE table_name_15 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_31 WHERE venue = \"arden street oval\"", "question": "What was the away team score in the game at Arden Street Oval?", "context": "CREATE TABLE table_name_31 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE venue = \"arden street oval\"", "question": "What was the date of the Arden Street Oval game?", "context": "CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_13 WHERE crowd > 29 OFFSET 840", "question": "What venue saw a crowd larger than 29,840?", "context": "CREATE TABLE table_name_13 (venue VARCHAR, crowd INTEGER)"}, {"answer": "SELECT date FROM table_name_25 WHERE week = \"11\"", "question": "When does week 11 start?", "context": "CREATE TABLE table_name_25 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT week FROM table_name_1 WHERE date = \"december 28, 1997\"", "question": "Which week starts on December 28, 1997?", "context": "CREATE TABLE table_name_1 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE week = \"1\"", "question": "When does week 1 start?", "context": "CREATE TABLE table_name_54 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_59 WHERE opponent = \"tampa bay buccaneers\"", "question": "Who one in the Tampa Bay Buccaneers?", "context": "CREATE TABLE table_name_59 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT week FROM table_name_55 WHERE date = \"november 23, 1997\"", "question": "Which week starts on November 23, 1997?", "context": "CREATE TABLE table_name_55 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_55 WHERE home_team = \"fitzroy\"", "question": "Who is the away team when the home team was Fitzroy?", "context": "CREATE TABLE table_name_55 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_37 WHERE home_team = \"melbourne\"", "question": "What was Melbourne's score when they were the home team?", "context": "CREATE TABLE table_name_37 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE home_team = \"collingwood\"", "question": "What is the date of the game where Collingwood was the home team?", "context": "CREATE TABLE table_name_31 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_14 WHERE away_team = \"north melbourne\"", "question": "Who watches North Melbourne when they are away?", "context": "CREATE TABLE table_name_14 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_27 WHERE home_team = \"carlton\"", "question": "What Away team is visiting Carlton?", "context": "CREATE TABLE table_name_27 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_47 WHERE venue = \"windy hill\"", "question": "What team has Windy Hill as their home venue", "context": "CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_8 WHERE away_team = \"richmond\"", "question": "When richmond played away, what was the largest number of people who watched?", "context": "CREATE TABLE table_name_8 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT country FROM table_name_10 WHERE rank > 68 AND capacity = \"32,000\" AND city = \"santa fe\"", "question": "Which country is ranked higher than 68, with a city named Santa Fe and a stadium that has a capacity of 32,000?", "context": "CREATE TABLE table_name_10 (country VARCHAR, city VARCHAR, rank VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_97 WHERE rank < 31 AND city = \"bel\u00e9m\"", "question": "What is the capacity of the stadium with a rank lower than 31 located in the city of Bel\u00e9m ?", "context": "CREATE TABLE table_name_97 (capacity VARCHAR, rank VARCHAR, city VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_77 WHERE attendance = 30 OFFSET 751", "question": "What is the sum of week(s) with an attendance of 30,751?", "context": "CREATE TABLE table_name_77 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE home_team = \"essendon\"", "question": "On what date did the home team Essendon play?", "context": "CREATE TABLE table_name_50 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_90 WHERE home_team = \"south melbourne\"", "question": "What was South Melbourne's home team score?", "context": "CREATE TABLE table_name_90 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE venue = \"glenferrie oval\"", "question": "On what date was the venue of Glenferrie Oval?", "context": "CREATE TABLE table_name_12 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_57 WHERE home_team = \"collingwood\"", "question": "What was the score for the away team when they played collingwood?", "context": "CREATE TABLE table_name_57 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_75 WHERE home_team = \"essendon\"", "question": "What was the score when essendon was the home team?", "context": "CREATE TABLE table_name_75 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE away_team = \"richmond\"", "question": "What is the date of the game where Richmond was the away team?", "context": "CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_97 WHERE away_team = \"carlton\"", "question": "Who was the home team when Carlton was the away team?", "context": "CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_49 WHERE away_team = \"hawthorn\"", "question": "Which home team played against Hawthorn?", "context": "CREATE TABLE table_name_49 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE home_team = \"geelong\"", "question": "What date did the Geelong team play on as a home team?", "context": "CREATE TABLE table_name_12 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_38 WHERE round > 13 AND overall = 384", "question": "What school/club team did the player who was drafted after round 13 with an overall rank of 384 play for?", "context": "CREATE TABLE table_name_38 (school_club_team VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_22 WHERE position = \"center\" AND round < 10", "question": "What is the largest overall rank for a center drafted before round 10?", "context": "CREATE TABLE table_name_22 (overall INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_70 WHERE overall < 306 AND round < 11 AND school_club_team = \"texas state\"", "question": "What position does the player from Texas State who was drafted before round 11 with an overall rank lower than 306 play?", "context": "CREATE TABLE table_name_70 (position VARCHAR, school_club_team VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_49 WHERE school_club_team = \"duke\" AND round > 9", "question": "What is the average overall rank of all players drafted from Duke after round 9?", "context": "CREATE TABLE table_name_49 (overall INTEGER, school_club_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_95 WHERE school_club_team = \"tennessee state\" AND overall < 261", "question": "What is the sum of all rounds where a Tennessee State player with an overall rank less than 261 was drafted?", "context": "CREATE TABLE table_name_95 (round VARCHAR, school_club_team VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_48 WHERE school_club_team = \"tennessee state\" AND round < 10", "question": "What is the highest overall rank of any Tennessee State player drafted before round 10?", "context": "CREATE TABLE table_name_48 (overall INTEGER, school_club_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_12 WHERE position = \"linebacker\" AND player = \"blane smith\"", "question": "How many rounds did Blane Smith play linebacker?", "context": "CREATE TABLE table_name_12 (round VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_86 WHERE school_club_team = \"arizona\" AND round > 11", "question": "How many times was Arizona the team and the round was bigger than 11?", "context": "CREATE TABLE table_name_86 (overall VARCHAR, school_club_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT result FROM table_name_52 WHERE week > 5 AND opponent = \"st. louis rams\"", "question": "What is the result of the game after week 5 against the st. louis rams?", "context": "CREATE TABLE table_name_52 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE week = 4", "question": "What day did they play on week 4?", "context": "CREATE TABLE table_name_56 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_88 WHERE venue = \"princes park\"", "question": "What is the largest crowd at princes park?", "context": "CREATE TABLE table_name_88 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE away_team = \"north melbourne\"", "question": "What day is north melbourne the away side?", "context": "CREATE TABLE table_name_51 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE home_team = \"essendon\"", "question": "What day is essendon the home team?", "context": "CREATE TABLE table_name_69 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_54 WHERE assist > 54", "question": "How many games had an assist number greater than 54?", "context": "CREATE TABLE table_name_54 (games INTEGER, assist INTEGER)"}, {"answer": "SELECT years FROM table_name_47 WHERE assist < 26 AND rank < 6 AND nation = \"usa\"", "question": "Which years did the USA have a rank lower than 6 and an assist number less than 26?", "context": "CREATE TABLE table_name_47 (years VARCHAR, nation VARCHAR, assist VARCHAR, rank VARCHAR)"}, {"answer": "SELECT years FROM table_name_40 WHERE assist < 17 AND games = 174", "question": "Which year or years did a team win 174 games and had an assist number less than 17?", "context": "CREATE TABLE table_name_40 (years VARCHAR, assist VARCHAR, games VARCHAR)"}, {"answer": "SELECT party FROM table_name_85 WHERE name = \"claudette tardif\"", "question": "Which party does Claudette Tardif belong to?", "context": "CREATE TABLE table_name_85 (party VARCHAR, name VARCHAR)"}, {"answer": "SELECT appointed_by FROM table_name_61 WHERE party = \"conservative\" AND province__division_ = \"ontario\" AND date_appointed = \"june 18, 1993\"", "question": "Who appointed the conservative from Ontario on June 18, 1993?", "context": "CREATE TABLE table_name_61 (appointed_by VARCHAR, date_appointed VARCHAR, party VARCHAR, province__division_ VARCHAR)"}, {"answer": "SELECT competition_, _federation_, _or_league FROM table_name_7 WHERE team = \"tennessee titans\"", "question": "What competition, federation, or league are the Tennessee Titans a member of?", "context": "CREATE TABLE table_name_7 (competition_ VARCHAR, _federation_ VARCHAR, _or_league VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE home_team = \"south melbourne\"", "question": "What day is south melbourne at home?", "context": "CREATE TABLE table_name_71 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_20 WHERE venue = \"corio oval\"", "question": "What is the lowest crowd at corio oval?", "context": "CREATE TABLE table_name_20 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_34 WHERE away_team = \"carlton\"", "question": "What venue features carlton as an away team?", "context": "CREATE TABLE table_name_34 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE venue = \"western oval\"", "question": "What day does the team play at western oval?", "context": "CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_4 WHERE home_team = \"collingwood\"", "question": "What venue features collingwood as the home side?", "context": "CREATE TABLE table_name_4 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_92 WHERE week = 1", "question": "What is the attendance of week 1", "context": "CREATE TABLE table_name_92 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_48 WHERE couple = \"kelly & alec\" AND score = \"22 (8, 7, 7)\"", "question": "What is the Result for Couple Kelly & Alec when they have a Score of 22 (8, 7, 7)?", "context": "CREATE TABLE table_name_48 (result VARCHAR, couple VARCHAR, score VARCHAR)"}, {"answer": "SELECT music FROM table_name_2 WHERE score = \"25 (9, 8, 8)\" AND result = \"bottom 2\"", "question": "What is the Music for the Dance that Scored 25 (9, 8, 8) and a Result of bottom 2?", "context": "CREATE TABLE table_name_2 (music VARCHAR, score VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_53 WHERE average < 8 AND matches < 4", "question": "How many totals are there for players with an average under 8 and less than 4 matches?", "context": "CREATE TABLE table_name_53 (total VARCHAR, average VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_44 WHERE player = \"christy heffernan\" AND matches > 4", "question": "What is the highest rank for championships with christy heffernan with over 4 matches?", "context": "CREATE TABLE table_name_44 (rank INTEGER, player VARCHAR, matches VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE venue = \"junction oval\"", "question": "What is the date of the game at Junction Oval?", "context": "CREATE TABLE table_name_55 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_25 WHERE venue = \"windy hill\"", "question": "What was the away team score at Windy Hill?", "context": "CREATE TABLE table_name_25 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_50 WHERE away_team = \"st kilda\"", "question": "Where did St Kilda play as the away team?", "context": "CREATE TABLE table_name_50 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_34 WHERE venue = \"glenferrie oval\"", "question": "What away team played at Glenferrie Oval?", "context": "CREATE TABLE table_name_34 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_76 WHERE venue = \"lake oval\"", "question": "How many people attended the game at Lake Oval?", "context": "CREATE TABLE table_name_76 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_1 WHERE venue = \"lake oval\"", "question": "What home team played at Lake Oval?", "context": "CREATE TABLE table_name_1 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT terrain FROM table_name_69 WHERE stage = \"10\"", "question": "What was the terrain for stage 10 of the tour?", "context": "CREATE TABLE table_name_69 (terrain VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_90 WHERE route = \"boulogne-billancourt\"", "question": "Which stage took the tour through Boulogne-Billancourt?", "context": "CREATE TABLE table_name_90 (stage VARCHAR, route VARCHAR)"}, {"answer": "SELECT winner FROM table_name_85 WHERE stage = \"22\"", "question": "Who won at stage 22?", "context": "CREATE TABLE table_name_85 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_name_76 WHERE stage = \"12\"", "question": "Who was the winner of stage 12?", "context": "CREATE TABLE table_name_76 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_66 WHERE member = \"hon ian causley\"", "question": "When was the Hon Ian Causley first elected?", "context": "CREATE TABLE table_name_66 (first_elected VARCHAR, member VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_6 WHERE party = \"labor\" AND member = \"jill hall\"", "question": "When was Jill Hall of the Labor Party first elected?", "context": "CREATE TABLE table_name_6 (first_elected VARCHAR, party VARCHAR, member VARCHAR)"}, {"answer": "SELECT state FROM table_name_15 WHERE member = \"tanya plibersek\"", "question": "What state is Tanya Plibersek from?", "context": "CREATE TABLE table_name_15 (state VARCHAR, member VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_98 WHERE years = \"2008-present\" AND player = \"tony beltran\" AND rank > 7", "question": "What is the smallest number of goals for the player from 2008-present named tony beltran, ranked lower than 7?", "context": "CREATE TABLE table_name_98 (goals INTEGER, rank VARCHAR, years VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_92 WHERE player = \"andy williams\"", "question": "What is the smallest number of goals for andy williams?", "context": "CREATE TABLE table_name_92 (goals INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_37 WHERE player = \"robbie findley\" AND rank < 10", "question": "What is the highest number of goals for robbie findley ranked above 10?", "context": "CREATE TABLE table_name_37 (goals INTEGER, player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT ntfs FROM table_name_20 WHERE fat32 = \"yes\" AND refs = \"no\"", "question": "Which NTFS has a yes for FAT32 and a no for ReFS?", "context": "CREATE TABLE table_name_20 (ntfs VARCHAR, fat32 VARCHAR, refs VARCHAR)"}, {"answer": "SELECT hpfs FROM table_name_51 WHERE refs = \"no\"", "question": "Which HPFS has a no for ReFS?", "context": "CREATE TABLE table_name_51 (hpfs VARCHAR, refs VARCHAR)"}, {"answer": "SELECT fat32 FROM table_name_31 WHERE ntfs = \"yes v1.0/v1.1\"", "question": "Which FAT32 has yes v1.0/v1.1 for NTFS?", "context": "CREATE TABLE table_name_31 (fat32 VARCHAR, ntfs VARCHAR)"}, {"answer": "SELECT fat32 FROM table_name_54 WHERE hpfs = \"no\" AND refs = \"no\" AND ntfs = \"yes v3.0\"", "question": "Which FAT32 has a no for HPFS, a no for ReFS, and a yes v3.0 fir NTFS?", "context": "CREATE TABLE table_name_54 (fat32 VARCHAR, ntfs VARCHAR, hpfs VARCHAR, refs VARCHAR)"}, {"answer": "SELECT refs FROM table_name_43 WHERE ntfs = \"yes v3.0\"", "question": "Which ReFS has yes v3.0 for NTFS?", "context": "CREATE TABLE table_name_43 (refs VARCHAR, ntfs VARCHAR)"}, {"answer": "SELECT ntfs FROM table_name_50 WHERE refs = \"no\" AND hpfs = \"yes\"", "question": "Which NTFS has a no for ReFS and a yes for HPFS?", "context": "CREATE TABLE table_name_50 (ntfs VARCHAR, refs VARCHAR, hpfs VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_5 WHERE venue = \"glenferrie oval\"", "question": "What home team plays at glenferrie oval?", "context": "CREATE TABLE table_name_5 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_12 WHERE venue = \"lake oval\"", "question": "What is the away side that playes at lake oval?", "context": "CREATE TABLE table_name_12 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_84 WHERE venue = \"western oval\"", "question": "Who is the away team at western oval?", "context": "CREATE TABLE table_name_84 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT icelandic_title FROM table_name_28 WHERE norwegian_title = \"galgeblomsten\"", "question": "What is the Icelandic title for the Norweigan titled galgeblomsten?", "context": "CREATE TABLE table_name_28 (icelandic_title VARCHAR, norwegian_title VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE venue = \"lake oval\"", "question": "When is the event at lake oval?", "context": "CREATE TABLE table_name_79 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_73 WHERE venue = \"western oval\"", "question": "What is the away team's score at western oval?", "context": "CREATE TABLE table_name_73 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_89 WHERE venue = \"lake oval\"", "question": "What's the home team's score at lake oval?", "context": "CREATE TABLE table_name_89 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE venue = \"mcg\"", "question": "What date did VFL play MCG?", "context": "CREATE TABLE table_name_87 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_15 WHERE away_team = \"st kilda\"", "question": "How many times is st kilda the away team?", "context": "CREATE TABLE table_name_15 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_87 WHERE crowd > 20 OFFSET 915", "question": "When the crowd was larger than 20,915 what did the Away team score?", "context": "CREATE TABLE table_name_87 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT away_team AS score FROM table_name_64 WHERE venue = \"victoria park\"", "question": "What did the Away team score in their game at Victoria Park?", "context": "CREATE TABLE table_name_64 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_25 WHERE venue = \"mcg\"", "question": "What did the Home team score when they were in MCG?", "context": "CREATE TABLE table_name_25 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_48 WHERE game_site = \"foxboro stadium\"", "question": "What was the attendance for each game held at Foxboro Stadium?", "context": "CREATE TABLE table_name_48 (attendance VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE opponent = \"indianapolis colts\"", "question": "When was the game against the Indianapolis Colts?", "context": "CREATE TABLE table_name_40 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_72 WHERE opponent = \"pittsburgh steelers\"", "question": "How many weeks total did the New York Jets face the Pittsburgh Steelers?", "context": "CREATE TABLE table_name_72 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_13 WHERE game_site = \"the meadowlands\" AND attendance = \"78,161\"", "question": "What week did the Jets play in the meadowlands with and attendance of 78,161?", "context": "CREATE TABLE table_name_13 (week INTEGER, game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE game_site = \"the meadowlands\" AND week = 14", "question": "Who did the Jets play in the Meadowlands on week 14?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_21 WHERE week = 17", "question": "What was the Jets week 17 attendance?", "context": "CREATE TABLE table_name_21 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT opening_date FROM table_name_80 WHERE hotel_rooms = 727", "question": "When did the hotel with 727 rooms open?", "context": "CREATE TABLE table_name_80 (opening_date VARCHAR, hotel_rooms VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_16 WHERE round > 4 AND position = \"wide receiver\"", "question": "Which school(s) had a wide receiver drafted in round 4?", "context": "CREATE TABLE table_name_16 (school_club_team VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_19 WHERE week < 6 AND game_site = \"cleveland municipal stadium\"", "question": "Who was the opponent before week 6 at cleveland municipal stadium?", "context": "CREATE TABLE table_name_19 (opponent VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE away_team = \"richmond\"", "question": "What date was Richmond the away team?", "context": "CREATE TABLE table_name_28 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT county FROM table_name_82 WHERE _percentage__2040_ > 1.8 AND _percentage__2000_ < 4.1 AND _percentage__1960_ < 3.2 AND rank = \"13\"", "question": "Which county has a % (2040) larger than 1.8, a % (2000) smaller than 4.1, a % (1960) smaller than 3.2, and is ranked 13?", "context": "CREATE TABLE table_name_82 (county VARCHAR, rank VARCHAR, _percentage__1960_ VARCHAR, _percentage__2040_ VARCHAR, _percentage__2000_ VARCHAR)"}, {"answer": "SELECT SUM(_percentage__1960_) FROM table_name_48 WHERE _percentage__2040_ < 100 AND _percentage__2000_ < 4.7 AND county = \"troms\"", "question": "What is the % (1960) of Troms, which has a % (2040) smaller than 100 and a % (2000) smaller than 4.7?", "context": "CREATE TABLE table_name_48 (_percentage__1960_ INTEGER, county VARCHAR, _percentage__2040_ VARCHAR, _percentage__2000_ VARCHAR)"}, {"answer": "SELECT COUNT(_percentage__1960_) FROM table_name_98 WHERE _percentage__2040_ = 3.4", "question": "What is the % (1960) of the county with a % (2040) of 3.4?", "context": "CREATE TABLE table_name_98 (_percentage__1960_ VARCHAR, _percentage__2040_ VARCHAR)"}, {"answer": "SELECT record_company FROM table_name_32 WHERE conductor = \"robert craft\"", "question": "What record company has robert craft conducting?", "context": "CREATE TABLE table_name_32 (record_company VARCHAR, conductor VARCHAR)"}, {"answer": "SELECT conductor FROM table_name_3 WHERE orchestra = \"chicago symphony orchestra\"", "question": "Who is the conductor when the chicago symphony orchestra is featured?", "context": "CREATE TABLE table_name_3 (conductor VARCHAR, orchestra VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_58 WHERE date = \"november 11, 1979\" AND week > 11", "question": "How many people attended the Cleveland Browns game on November 11, 1979?", "context": "CREATE TABLE table_name_58 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_89 WHERE date = \"september 2, 1979\"", "question": "The game on September 2, 1979 was during which week of the season?", "context": "CREATE TABLE table_name_89 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_19 WHERE away_team = \"richmond\"", "question": "What was the home team's score at the game where Richmond was the away team?", "context": "CREATE TABLE table_name_19 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_40 WHERE away_team = \"essendon\"", "question": "What was the size of the crowd when Essendon was the away team?", "context": "CREATE TABLE table_name_40 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT whenbuilt FROM table_name_67 WHERE builder = \"brighton\" AND withdrawn = \"september 1964\" AND name = \"blandford forum\"", "question": "What is the whenbuilt of the Brighton built Blandford Forum with a withdrawn of september 1964?", "context": "CREATE TABLE table_name_67 (whenbuilt VARCHAR, name VARCHAR, builder VARCHAR, withdrawn VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_71 WHERE home_team = \"north melbourne\"", "question": "What was the listed attendance when north melbourne was the home team?", "context": "CREATE TABLE table_name_71 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE home_team = \"geelong\"", "question": "What day was geelong the home team?", "context": "CREATE TABLE table_name_81 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_21 WHERE crowd > 30 OFFSET 080", "question": "Who played as the home team when the attendance was more than 30,080?", "context": "CREATE TABLE table_name_21 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT MAX(crowd) FROM table_name_90 WHERE venue = \"junction oval\"", "question": "What was the highest attendance at Junction Oval?", "context": "CREATE TABLE table_name_90 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_5 WHERE home_team = \"hawthorn\"", "question": "What was the away teams score when Hawthorn played as the home team?", "context": "CREATE TABLE table_name_5 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT _number_of_bids FROM table_name_98 WHERE conference = \"atlantic 10\"", "question": "How many bids does Atlantic 10 have?", "context": "CREATE TABLE table_name_98 (_number_of_bids VARCHAR, conference VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_35 WHERE home_team = \"north melbourne\"", "question": "What was the away team's score in the game against North Melbourne?", "context": "CREATE TABLE table_name_35 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_63 WHERE away_team = \"south melbourne\"", "question": "What was the average crowd size when the away team was South Melbourne?", "context": "CREATE TABLE table_name_63 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_19 WHERE away_team = \"fitzroy\"", "question": "At what venue was the away team Fitzroy?", "context": "CREATE TABLE table_name_19 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT year FROM table_name_52 WHERE distance = \"1,870.23 km\"", "question": "In what year saw a total distance of 1,870.23 km?", "context": "CREATE TABLE table_name_52 (year VARCHAR, distance VARCHAR)"}, {"answer": "SELECT winner FROM table_name_42 WHERE year = \"1965\"", "question": "Who won in 1965?", "context": "CREATE TABLE table_name_42 (winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT stages FROM table_name_59 WHERE distance = \"1,648 km\"", "question": "What stage was 1,648 km achieved?", "context": "CREATE TABLE table_name_59 (stages VARCHAR, distance VARCHAR)"}, {"answer": "SELECT year FROM table_name_54 WHERE stages = \"8\"", "question": "What year was stage 8 reached?", "context": "CREATE TABLE table_name_54 (year VARCHAR, stages VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_91 WHERE rank > 13", "question": "What is the lowest number of bronze medals for teams ranked below 13?", "context": "CREATE TABLE table_name_91 (bronze INTEGER, rank INTEGER)"}, {"answer": "SELECT COUNT(gold) FROM table_name_79 WHERE bronze = 3 AND rank > 7 AND total < 5", "question": "How many golds for teams ranking below 7 with 3 bronze and less than 5 total medals?", "context": "CREATE TABLE table_name_79 (gold VARCHAR, total VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(highest_score) FROM table_name_92 WHERE worst_dancer_s_ = \"master p\" AND best_dancer_s_ = \"drew lachey\" AND lowest_score < 8", "question": "What is the lowest score in the Highest score column when Master P was the Worst dancer(s), Drew Lachey was the Best dancer(s), and the Lowest score was under 8?", "context": "CREATE TABLE table_name_92 (highest_score INTEGER, lowest_score VARCHAR, worst_dancer_s_ VARCHAR, best_dancer_s_ VARCHAR)"}, {"answer": "SELECT worst_dancer_s_ FROM table_name_43 WHERE lowest_score = 14", "question": "Which of the Worst dancer(s) has the Lowest score of 14?", "context": "CREATE TABLE table_name_43 (worst_dancer_s_ VARCHAR, lowest_score VARCHAR)"}, {"answer": "SELECT dance FROM table_name_10 WHERE highest_score < 30 AND best_dancer_s_ = \"stacy keibler\"", "question": "What is the Dance with the Highest score under 30 and Stacy Keibler as the Best dancer(s)?", "context": "CREATE TABLE table_name_10 (dance VARCHAR, highest_score VARCHAR, best_dancer_s_ VARCHAR)"}, {"answer": "SELECT MIN(highest_score) FROM table_name_72 WHERE dance = \"quickstep\" AND lowest_score < 16", "question": "What is the lowest of the Highest score for the Quickstep Dance and the Lowest score under 16?", "context": "CREATE TABLE table_name_72 (highest_score INTEGER, dance VARCHAR, lowest_score VARCHAR)"}, {"answer": "SELECT record FROM table_name_20 WHERE event = \"ufc 67\"", "question": "What is his record at ufc 67?", "context": "CREATE TABLE table_name_20 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_14 WHERE event = \"ufc 115\"", "question": "What is his record at ufc 115?", "context": "CREATE TABLE table_name_14 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_48 WHERE attendance = \"40,070\"", "question": "Which opponent had an attendance of 40,070?", "context": "CREATE TABLE table_name_48 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_4 WHERE week > 2 AND date = \"december 27, 2004\"", "question": "What's the result for the game held on December 27, 2004 with a week greater than 2?", "context": "CREATE TABLE table_name_4 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_40 WHERE week = 6", "question": "Who was the opponent for week 6?", "context": "CREATE TABLE table_name_40 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_64 WHERE result = \"w 24-14\"", "question": "Which opponent had the result of W 24-14?", "context": "CREATE TABLE table_name_64 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_28 WHERE date = \"january 2, 2005\"", "question": "What's the attendance for the game held on January 2, 2005?", "context": "CREATE TABLE table_name_28 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE attendance > 33 OFFSET 435", "question": "Which had an attendance of larger than 33,435?", "context": "CREATE TABLE table_name_26 (result VARCHAR, attendance INTEGER)"}, {"answer": "SELECT team FROM table_name_18 WHERE result = \"lost\" AND interim_head_coach = \"dewayne walker\"", "question": "Which team lost under interim head coach, Dewayne Walker?", "context": "CREATE TABLE table_name_18 (team VARCHAR, result VARCHAR, interim_head_coach VARCHAR)"}, {"answer": "SELECT result FROM table_name_62 WHERE interim_head_coach = \"gary darnell\"", "question": "What was the result under interim head coach, Gary Darnell?", "context": "CREATE TABLE table_name_62 (result VARCHAR, interim_head_coach VARCHAR)"}, {"answer": "SELECT team FROM table_name_21 WHERE bowl = \"humanitarian\"", "question": "What team has a bowl of humanitarian?", "context": "CREATE TABLE table_name_21 (team VARCHAR, bowl VARCHAR)"}, {"answer": "SELECT result FROM table_name_29 WHERE season_coach = \"rich rodriguez\"", "question": "What is the result under the season coach Rich Rodriguez?", "context": "CREATE TABLE table_name_29 (result VARCHAR, season_coach VARCHAR)"}, {"answer": "SELECT 2008 AS _head_coach FROM table_name_7 WHERE team = \"ucla\"", "question": "Who is the 2008 head coach of UCLA?", "context": "CREATE TABLE table_name_7 (team VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE opponent_in_the_final = \"marcos daniel\"", "question": "In what score did the match against Marcos Daniel end?", "context": "CREATE TABLE table_name_43 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE surface = \"clay\" AND date = \"june 6, 2005\"", "question": "What was the score of the game played on a clay surface on June 6, 2005?", "context": "CREATE TABLE table_name_23 (score VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE surface = \"clay\" AND opponent_in_the_final = \"flavio cipolla\"", "question": "On what date did the match against Flavio Cipolla, played on a clay surface, occur?", "context": "CREATE TABLE table_name_58 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_16 WHERE home_team = \"fitzroy\"", "question": "What was Fitzroy's score when they were the home team?", "context": "CREATE TABLE table_name_16 (home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_43 WHERE away_team = \"hawthorn\"", "question": "Where was the Hawthorn game played?", "context": "CREATE TABLE table_name_43 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_27 WHERE venue = \"princes park\"", "question": "What was the away teams score at Princes Park?", "context": "CREATE TABLE table_name_27 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT rider FROM table_name_39 WHERE speed = \"81.91mph\"", "question": "Which Rider finished with a speed of 81.91mph?", "context": "CREATE TABLE table_name_39 (rider VARCHAR, speed VARCHAR)"}, {"answer": "SELECT rider FROM table_name_61 WHERE speed = \"80.18mph\"", "question": "Which Rider finished with a speed of 80.18mph?", "context": "CREATE TABLE table_name_61 (rider VARCHAR, speed VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_85 WHERE venue = \"princes park\"", "question": "What is the home team's score at princes park?", "context": "CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_66 WHERE home_team = \"footscray\"", "question": "What is the venue for the Footscray home team?", "context": "CREATE TABLE table_name_66 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_86 WHERE venue = \"windy hill\"", "question": "Which home team's venue is Windy Hill?", "context": "CREATE TABLE table_name_86 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_7 WHERE away_team = \"hawthorn\"", "question": "What is the score for Hawthorn as an away team?", "context": "CREATE TABLE table_name_7 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_12 WHERE home_team = \"essendon\"", "question": "What is the score of the away team when the home team is Essendon?", "context": "CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE home_team = \"fitzroy\"", "question": "What date was the Home team fitzroy?", "context": "CREATE TABLE table_name_18 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_60 WHERE away_team = \"st kilda\"", "question": "What is the largest crowd when st kilda was the away team?", "context": "CREATE TABLE table_name_60 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_15 WHERE away_team = \"essendon\"", "question": "What was the score of essendon when they were the away team?", "context": "CREATE TABLE table_name_15 (away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_93 WHERE venue = \"western oval\"", "question": "What home team played at the western oval?", "context": "CREATE TABLE table_name_93 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT high_hill_zone FROM table_name_87 WHERE mid_hill_zone = \"slightly warm temperature\"", "question": "Which mid-hill zone has a slightly warm temperature?", "context": "CREATE TABLE table_name_87 (high_hill_zone VARCHAR, mid_hill_zone VARCHAR)"}, {"answer": "SELECT result FROM table_name_60 WHERE date = \"december 3, 1995\"", "question": "Which one took place on December 3, 1995?", "context": "CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_79 WHERE opponent = \"new orleans saints\"", "question": "Who was the opponent of the New Orleans Saints?", "context": "CREATE TABLE table_name_79 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT grid FROM table_name_1 WHERE laps = 23 AND rider = \"josh brookes\"", "question": "What grid has 23 laps done by Josh Brookes?", "context": "CREATE TABLE table_name_1 (grid VARCHAR, laps VARCHAR, rider VARCHAR)"}, {"answer": "SELECT time FROM table_name_69 WHERE rider = \"noriyuki haga\"", "question": "What is noriyuki haga's time?", "context": "CREATE TABLE table_name_69 (time VARCHAR, rider VARCHAR)"}, {"answer": "SELECT laps FROM table_name_37 WHERE time = \"+28.778\"", "question": "What laps have a Time of +28.778?", "context": "CREATE TABLE table_name_37 (laps VARCHAR, time VARCHAR)"}, {"answer": "SELECT venue FROM table_name_46 WHERE away_team = \"hawthorn\"", "question": "Where was the game held where Hawthorn was the away team?", "context": "CREATE TABLE table_name_46 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE home_team = \"richmond\"", "question": "What was the date of the game when Richmond was the home team?", "context": "CREATE TABLE table_name_42 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_44 WHERE venue = \"kardinia park\"", "question": "Who was the home team at the game played at Kardinia Park?", "context": "CREATE TABLE table_name_44 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE venue = \"mcg\"", "question": "What is the date of the game when the venue is MCG?", "context": "CREATE TABLE table_name_31 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_77 WHERE away_team = \"essendon\"", "question": "What is the home team score when the away team is Essendon?", "context": "CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_73 WHERE venue = \"kardinia park\"", "question": "What is the name of the away team whose venue is Kardinia Park?", "context": "CREATE TABLE table_name_73 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE stadium = \"bye week\"", "question": "What was the result when they were on a bye week?", "context": "CREATE TABLE table_name_33 (result VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT result FROM table_name_99 WHERE attendance = \"25,418\"", "question": "What was the result when the attendance was 25,418?", "context": "CREATE TABLE table_name_99 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT latest_version FROM table_name_24 WHERE release_date = \"1987-12-09\"", "question": "Which of the Latest version was released on Release date 1987-12-09?", "context": "CREATE TABLE table_name_24 (latest_version VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT source_model FROM table_name_27 WHERE architecture = \"16-bit*\"", "question": "Which Source model has a 16-bit* Architecture?", "context": "CREATE TABLE table_name_27 (source_model VARCHAR, architecture VARCHAR)"}, {"answer": "SELECT latest_version FROM table_name_29 WHERE architecture = \"16-bit\" AND release_date = \"1985-11-20\"", "question": "Which of the Latest version had a 16-bit Architecture and was released on Release date 1985-11-20?", "context": "CREATE TABLE table_name_29 (latest_version VARCHAR, architecture VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT architecture FROM table_name_69 WHERE release_date = \"1988-05-27\"", "question": "Which Architecture was released on Release date 1988-05-27?", "context": "CREATE TABLE table_name_69 (architecture VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT source_model FROM table_name_97 WHERE release_date = \"1992-04-06\"", "question": "Which Source model has a Release date of 1992-04-06?", "context": "CREATE TABLE table_name_97 (source_model VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_34 WHERE home_team = \"collingwood\"", "question": "Who is the away side when collingwood is at home?", "context": "CREATE TABLE table_name_34 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_63 WHERE venue = \"arden street oval\"", "question": "Who is the home team at arden street oval?", "context": "CREATE TABLE table_name_63 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(freq) FROM table_name_55 WHERE owner = \"wpw\" AND day_power___w__ > 250", "question": "What is the WPW freq with a day power of 250?", "context": "CREATE TABLE table_name_55 (freq INTEGER, owner VARCHAR, day_power___w__ VARCHAR)"}, {"answer": "SELECT stereo FROM table_name_37 WHERE call = \"wpeo\"", "question": "Is WPEO in stereo?", "context": "CREATE TABLE table_name_37 (stereo VARCHAR, call VARCHAR)"}, {"answer": "SELECT time FROM table_name_3 WHERE name = \"park tae-hwan\"", "question": "What is Park Tae-Hwan's final time?", "context": "CREATE TABLE table_name_3 (time VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_54 WHERE away_team = \"carlton\"", "question": "What was the largest crowd for an away Carlton game?", "context": "CREATE TABLE table_name_54 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_20 WHERE venue = \"corio oval\"", "question": "Who was the home team for the game played at Corio Oval?", "context": "CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT college FROM table_name_62 WHERE position = \"safety\"", "question": "The safety position is represented in the draft by which colleges?", "context": "CREATE TABLE table_name_62 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_94 WHERE college = \"georgia\"", "question": "In how many rounds of the draft was there a college from Georgia involved?", "context": "CREATE TABLE table_name_94 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_44 WHERE driver = \"jan heylen (r)\"", "question": "What is the Time of Driver Jan Heylen (r)?", "context": "CREATE TABLE table_name_44 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT grid FROM table_name_10 WHERE driver = \"cristiano da matta\"", "question": "What Grid has Driver Cristiano da Matta?", "context": "CREATE TABLE table_name_10 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_68 WHERE laps < 84 AND points > 9 AND team = \"rocketsports racing\"", "question": "Which Driver has less than 84 laps, more than 9 points and is on Rocketsports Racing Team?", "context": "CREATE TABLE table_name_68 (driver VARCHAR, team VARCHAR, laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_name_56 WHERE laps < 73 AND time_retired = \"gearbox\"", "question": "Which team has less than 73 laps and a gearbox time?", "context": "CREATE TABLE table_name_56 (team VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MIN(extinct) FROM table_name_21 WHERE nbr_class = 32", "question": "What is the car with the lowest extinct year that has a NBR class of 32?", "context": "CREATE TABLE table_name_21 (extinct INTEGER, nbr_class VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_54 WHERE venue = \"corio oval\"", "question": "What is the home team that played at Corio Oval?", "context": "CREATE TABLE table_name_54 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE home_team = \"st kilda\"", "question": "On which date was St Kilda the home team?", "context": "CREATE TABLE table_name_2 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT at_austin FROM table_name_21 WHERE texas_vs = \"kansas state\"", "question": "What is the Austin record of Kansas State?", "context": "CREATE TABLE table_name_21 (at_austin VARCHAR, texas_vs VARCHAR)"}, {"answer": "SELECT last_5_meetings FROM table_name_85 WHERE current_streak = \"l 1\"", "question": "What was the result of the last 5 meetings for a team with an L 1 streak?", "context": "CREATE TABLE table_name_85 (last_5_meetings VARCHAR, current_streak VARCHAR)"}, {"answer": "SELECT partner FROM table_name_33 WHERE date > 1971 AND outcome = \"runner-up\" AND score_in_the_final = \"3\u20136, 3\u20136\"", "question": "Who is the partner on a date later than 1971 who is the runner-up with a score of 3\u20136, 3\u20136?", "context": "CREATE TABLE table_name_33 (partner VARCHAR, score_in_the_final VARCHAR, date VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_21 WHERE country = \"canada\" AND position = \"center\" AND player = \"mario lemieux\"", "question": "What is the first year that Mario Lemieux from Canada won playing center?", "context": "CREATE TABLE table_name_21 (year INTEGER, player VARCHAR, country VARCHAR, position VARCHAR)"}, {"answer": "SELECT country FROM table_name_17 WHERE player = \"mario lemieux\" AND year = 1994", "question": "What country did mario lemieux play for in 1994?", "context": "CREATE TABLE table_name_17 (country VARCHAR, player VARCHAR, year VARCHAR)"}, {"answer": "SELECT player FROM table_name_9 WHERE position = \"center\" AND year = 2010", "question": "What player played center in 2010?", "context": "CREATE TABLE table_name_9 (player VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT player FROM table_name_63 WHERE venue = \"esher\"", "question": "Who is the player associated with the Esher venue?", "context": "CREATE TABLE table_name_63 (player VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_70 WHERE pens = \"0\" AND tries = \"1\"", "question": "In which venue did 0 pens and 1 try occur?", "context": "CREATE TABLE table_name_70 (venue VARCHAR, pens VARCHAR, tries VARCHAR)"}, {"answer": "SELECT result FROM table_name_82 WHERE opponent = \"st. louis cardinals\"", "question": "What was the score of the game against the St. Louis Cardinals?", "context": "CREATE TABLE table_name_82 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT model FROM table_name_52 WHERE cpu_speed = \"133mhz\"", "question": "Which model has a CPU speed of 133mhz?", "context": "CREATE TABLE table_name_52 (model VARCHAR, cpu_speed VARCHAR)"}, {"answer": "SELECT MAX(model) FROM table_name_92 WHERE maximum_memory = \"512 mb\"", "question": "Which model has a maximum memory of 512 mb?", "context": "CREATE TABLE table_name_92 (model INTEGER, maximum_memory VARCHAR)"}, {"answer": "SELECT maximum_memory FROM table_name_10 WHERE standard_memory = \"16 mb\"", "question": "What is the maximum memory of the model that has a standard memory of 16 mb?", "context": "CREATE TABLE table_name_10 (maximum_memory VARCHAR, standard_memory VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_35 WHERE away_team = \"melbourne\"", "question": "What is the largest crowd for a Melbourne away team?", "context": "CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_80 WHERE home_team = \"essendon\"", "question": "What is the home team score when the home team is Essendon?", "context": "CREATE TABLE table_name_80 (home_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_63 WHERE date = \"december 20, 1998\"", "question": "Which opponent was playing on December 20, 1998?", "context": "CREATE TABLE table_name_63 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE venue = \"princes park\"", "question": "When was the game that was held at the Princes Park?", "context": "CREATE TABLE table_name_85 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_93 WHERE home_team = \"footscray\"", "question": "What was the smallest crowd size at a home game for Footscray?", "context": "CREATE TABLE table_name_93 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_91 WHERE home_team = \"melbourne\"", "question": "What was Melbourne's score as the home team?", "context": "CREATE TABLE table_name_91 (home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_96 WHERE home_team = \"fitzroy\"", "question": "What was the away team that played Fitzroy?", "context": "CREATE TABLE table_name_96 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_65 WHERE venue = \"western oval\"", "question": "What was the sum of the crowds at Western Oval?", "context": "CREATE TABLE table_name_65 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT country FROM table_name_55 WHERE year = 1907", "question": "What country had a winner in 1907?", "context": "CREATE TABLE table_name_55 (country VARCHAR, year VARCHAR)"}, {"answer": "SELECT velodrome FROM table_name_6 WHERE year < 1950 AND country = \"france\" AND pacing = \"tandem paced\" AND distance = \"951.750 km\"", "question": "What velodrome took place earlier than 1950 with a winner from France in tandem paced over a distance of 951.750\u2009km?", "context": "CREATE TABLE table_name_6 (velodrome VARCHAR, distance VARCHAR, pacing VARCHAR, year VARCHAR, country VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_48 WHERE kickoff = \"12:00 p.m.\" AND record = \"8-5\"", "question": "Where was the game played when they kickoff was 12:00 p.m., and a Record of 8-5?", "context": "CREATE TABLE table_name_48 (game_site VARCHAR, kickoff VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE game_site = \"bye\"", "question": "What date has a Game site of bye?", "context": "CREATE TABLE table_name_77 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT record FROM table_name_75 WHERE \"kickoff\" = \"kickoff\"", "question": "What is the record which shows Kickoff as kickoff?", "context": "CREATE TABLE table_name_75 (record VARCHAR)"}, {"answer": "SELECT record FROM table_name_46 WHERE game_site = \"raymond james stadium\"", "question": "What is the record when the game was played at raymond james stadium?", "context": "CREATE TABLE table_name_46 (record VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT kickoff FROM table_name_30 WHERE date = \"october 22, 2000\"", "question": "What is the kickoff for the game on october 22, 2000?", "context": "CREATE TABLE table_name_30 (kickoff VARCHAR, date VARCHAR)"}, {"answer": "SELECT network FROM table_name_93 WHERE service = \"dish\" AND language = \"hindi\" AND origin_of_programming = \"india\" AND genre = \"general\"", "question": "Which Hindi network is based in India and uses dish service and shows general programming?", "context": "CREATE TABLE table_name_93 (network VARCHAR, genre VARCHAR, origin_of_programming VARCHAR, service VARCHAR, language VARCHAR)"}, {"answer": "SELECT language FROM table_name_43 WHERE service = \"optimum tv\" AND origin_of_programming = \"united states\" AND genre = \"cricket\"", "question": "Which language is used by the optimum TV service that shows cricket and is based in the United States?", "context": "CREATE TABLE table_name_43 (language VARCHAR, genre VARCHAR, service VARCHAR, origin_of_programming VARCHAR)"}, {"answer": "SELECT origin_of_programming FROM table_name_11 WHERE service = \"dish\" AND language = \"malayalam\" AND genre = \"general\" AND network = \"asianet plus\"", "question": "What is the origin of the Malayalam Dish Service that shows general programming on the Asianet Plus network?", "context": "CREATE TABLE table_name_11 (origin_of_programming VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR, language VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_10 WHERE constructor = \"ferrari\" AND time_retired = \"1:32:35.101\"", "question": "What is the average grid number with a ferrari and a time or retired time of 1:32:35.101?", "context": "CREATE TABLE table_name_10 (grid INTEGER, constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT week FROM table_name_74 WHERE date = \"november 24, 1957\"", "question": "What week of the season was November 24, 1957?", "context": "CREATE TABLE table_name_74 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_41 WHERE opponent = \"san diego chargers\"", "question": "What was the score of the game against the San Diego Chargers?", "context": "CREATE TABLE table_name_41 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_40 WHERE date = \"november 5, 1995\"", "question": "What is the latest week with the date of november 5, 1995?", "context": "CREATE TABLE table_name_40 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_30 WHERE tournament = \"buenos aires\"", "question": "What was the outcome of the Tournament in Buenos Aires?", "context": "CREATE TABLE table_name_30 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE outcome = \"winner\" AND partner = \"andres molteni\"", "question": "In the match played with partner Andres Molteni, with the outcome of winner, who was the opponent?", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT player FROM table_name_8 WHERE span = \"1998-2009\"", "question": "What is the player with a Span of 1998-2009?", "context": "CREATE TABLE table_name_8 (player VARCHAR, span VARCHAR)"}, {"answer": "SELECT draw FROM table_name_85 WHERE span = \"1987-1999\"", "question": "What draw has a Span of 1987-1999?", "context": "CREATE TABLE table_name_85 (draw VARCHAR, span VARCHAR)"}, {"answer": "SELECT player FROM table_name_54 WHERE span = \"1997-2009\"", "question": "What player has a span of 1997-2009?", "context": "CREATE TABLE table_name_54 (player VARCHAR, span VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_14 WHERE opponent = \"yoko hattori\"", "question": "What round did Takayo Hashi face Yoko Hattori?", "context": "CREATE TABLE table_name_14 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_51 WHERE venue = \"princes park\"", "question": "What was the away team that played at Princes Park?", "context": "CREATE TABLE table_name_51 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE away_team = \"footscray\"", "question": "What was the date when Footscray was the away team?", "context": "CREATE TABLE table_name_5 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_6 WHERE venue = \"victoria park\"", "question": "What was the home team's score in the match at Victoria Park?", "context": "CREATE TABLE table_name_6 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE away_team = \"south melbourne\"", "question": "On what date was South Melbourne the away team?", "context": "CREATE TABLE table_name_61 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_77 WHERE home_team = \"carlton\"", "question": "What away team did Carlton play?", "context": "CREATE TABLE table_name_77 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_45 WHERE silver > 3", "question": "What is the sum of bronze when silver is greater than 3?", "context": "CREATE TABLE table_name_45 (bronze INTEGER, silver INTEGER)"}, {"answer": "SELECT AVG(total) FROM table_name_54 WHERE gold = 0 AND bronze = 0 AND silver < 1", "question": "What is the average total when gold is 0, bronze is 0, and silver is smaller than 1?", "context": "CREATE TABLE table_name_54 (total INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_96 WHERE week = 8", "question": "What was the total attendance in week 8?", "context": "CREATE TABLE table_name_96 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT winner FROM table_name_49 WHERE date = 2007", "question": "Who was the winner in 2007?", "context": "CREATE TABLE table_name_49 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT sport FROM table_name_93 WHERE date < 2006 AND loser = \"france b\"", "question": "What sport was played before 2006 with a loser of france b?", "context": "CREATE TABLE table_name_93 (sport VARCHAR, date VARCHAR, loser VARCHAR)"}, {"answer": "SELECT winner FROM table_name_66 WHERE loser = \"russia-2\"", "question": "Who was the winner with the loser being russia-2?", "context": "CREATE TABLE table_name_66 (winner VARCHAR, loser VARCHAR)"}, {"answer": "SELECT loser FROM table_name_55 WHERE sport = \"football\" AND winner = \"england b\" AND date > 1992", "question": "Who was the loser playing football with england b as a winner after 1992?", "context": "CREATE TABLE table_name_55 (loser VARCHAR, date VARCHAR, sport VARCHAR, winner VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_36 WHERE sanctioning = \"cart\" AND city_location = \"brooklyn, michigan\"", "question": "What was the name of the race that occurred in Brooklyn, Michigan with a sanctioning of cart?", "context": "CREATE TABLE table_name_36 (race_name VARCHAR, sanctioning VARCHAR, city_location VARCHAR)"}, {"answer": "SELECT city_location FROM table_name_38 WHERE race_name = \"gould rex mays classic 150\"", "question": "Where did the Gould Rex Mays Classic 150 occur?", "context": "CREATE TABLE table_name_38 (city_location VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE circuit = \"milwaukee mile\" AND sanctioning = \"cart\"", "question": "What is the date for the race that has a circuit of Milwaukee Mile and the sanctioning of cart?", "context": "CREATE TABLE table_name_10 (date VARCHAR, circuit VARCHAR, sanctioning VARCHAR)"}, {"answer": "SELECT year FROM table_name_25 WHERE uk_albums = \"15\"", "question": "15 albums were released in the UK during which year?", "context": "CREATE TABLE table_name_25 (year VARCHAR, uk_albums VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE home_team = \"collingwood\"", "question": "What is the venue where Collingwood played as the home team?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_59 WHERE home_team = \"footscray\"", "question": "What is the size of the crowd for the game with Footscray as the home team?", "context": "CREATE TABLE table_name_59 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_9 WHERE home_team = \"footscray\"", "question": "What is the largest crowd for any game where Footscray is the home team?", "context": "CREATE TABLE table_name_9 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_86 WHERE diff < 186 AND points < 12 AND played < 6", "question": "What is the maximum number of draws when the diff is smaller than 186, points are fewer than 12 and games played fewer than 6?", "context": "CREATE TABLE table_name_86 (drawn INTEGER, played VARCHAR, diff VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(diff) FROM table_name_84 WHERE played > 6", "question": "What is the average diff when games played are more than 6?", "context": "CREATE TABLE table_name_84 (diff INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(drawn) FROM table_name_92 WHERE against = 54 AND played > 6", "question": "What is the highest draws when more than 6 are played and the points against are 54?", "context": "CREATE TABLE table_name_92 (drawn INTEGER, against VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_18 WHERE lost > 0 AND played < 6", "question": "What is the maximum number of points against when the team has more than 0 losses and plays fewer than 6 games?", "context": "CREATE TABLE table_name_18 (against INTEGER, lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_59 WHERE points = 12 AND against < 52", "question": "What is the number of games played for the team with 12 points and an against smaller than 52?", "context": "CREATE TABLE table_name_59 (played INTEGER, points VARCHAR, against VARCHAR)"}, {"answer": "SELECT MIN(average_parish_size) FROM table_name_25 WHERE _percentage_of_adherents = \"47.2%\" AND regular_attendees > 4 OFFSET 936", "question": "What is the lowest average parish size with 47.2% of adherents and 4,936 regular attendees?", "context": "CREATE TABLE table_name_25 (average_parish_size INTEGER, _percentage_of_adherents VARCHAR, regular_attendees VARCHAR)"}, {"answer": "SELECT AVG(regular_attendees) FROM table_name_36 WHERE parishes = 79", "question": "What is the average regular number of attendees that has 79 parishes?", "context": "CREATE TABLE table_name_36 (regular_attendees INTEGER, parishes VARCHAR)"}, {"answer": "SELECT name FROM table_name_20 WHERE circuit = \"lille\"", "question": "Which Grand Prix has the Circuit of Lille?", "context": "CREATE TABLE table_name_20 (name VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_53 WHERE winning_constructor = \"alfa romeo\" AND name = \"roussillon grand prix\"", "question": "Which winning driver of the Roussillon Grand Prix had an Alfa Romeo?", "context": "CREATE TABLE table_name_53 (winning_driver VARCHAR, winning_constructor VARCHAR, name VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_95 WHERE name = \"roussillon grand prix\"", "question": "Which Constructor won the Roussillon Grand Prix?", "context": "CREATE TABLE table_name_95 (winning_constructor VARCHAR, name VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_13 WHERE circuit = \"rio de janeiro\"", "question": "Which Driver won the Circuit of Rio de Janeiro?", "context": "CREATE TABLE table_name_13 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE venue = \"mcg\"", "question": "What day did the VFL pay MCG?", "context": "CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_64 WHERE date = \"november 4, 1973\"", "question": "What was November 4, 1973 attendance?", "context": "CREATE TABLE table_name_64 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT laps FROM table_name_73 WHERE constructor = \"renault\" AND driver = \"jacques villeneuve\"", "question": "What is the number of laps with a Constructor of renault, and a driver of jacques villeneuve?", "context": "CREATE TABLE table_name_73 (laps VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_19 WHERE grid = 3", "question": "What is the time/retired for grid 3?", "context": "CREATE TABLE table_name_19 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_95 WHERE grid = 8", "question": "What is the time/retired for grid 8?", "context": "CREATE TABLE table_name_95 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_32 WHERE grid > 11 AND laps > 41 AND driver = \"nick heidfeld\"", "question": "What is the time/retired for a grid larger than 11, laps larger than 41, and nick heidfeld?", "context": "CREATE TABLE table_name_32 (time_retired VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_3 WHERE laps < 53 AND grid > 17 AND time_retired = \"spin\"", "question": "Who was the driver with less than 53 laps, Grid larger than 17, and a Time/Retired of spin?", "context": "CREATE TABLE table_name_3 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_97 WHERE winnings = \"$98,860\"", "question": "Who has won $98,860?", "context": "CREATE TABLE table_name_97 (driver VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_17 WHERE home_team = \"hawthorn\"", "question": "What team is travelling to play Hawthorn?", "context": "CREATE TABLE table_name_17 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_94 WHERE venue = \"victoria park\"", "question": "What is the smallest crowd at the Victoria Park Venue?", "context": "CREATE TABLE table_name_94 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_37 WHERE home_team = \"geelong\"", "question": "What is the score given by the Home team Geelong?", "context": "CREATE TABLE table_name_37 (home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_87 WHERE venue = \"arden street oval\"", "question": "What is the largest crowd at arden street oval?", "context": "CREATE TABLE table_name_87 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_23 WHERE venue = \"western oval\"", "question": "What is the home side's score at western oval?", "context": "CREATE TABLE table_name_23 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_90 WHERE state = \"connecticut\"", "question": "What venue is in the state of Connecticut?", "context": "CREATE TABLE table_name_90 (venue VARCHAR, state VARCHAR)"}, {"answer": "SELECT venue FROM table_name_95 WHERE city = \"durham\"", "question": "What venue is in the city of Durham?", "context": "CREATE TABLE table_name_95 (venue VARCHAR, city VARCHAR)"}, {"answer": "SELECT state FROM table_name_5 WHERE venue = \"thomas assembly center\"", "question": "In what state is the Thomas Assembly Center located?", "context": "CREATE TABLE table_name_5 (state VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_54 WHERE state = \"indiana\" AND host = \"purdue university\"", "question": "What venue is located in Indiana and hosted at Purdue University?", "context": "CREATE TABLE table_name_54 (venue VARCHAR, state VARCHAR, host VARCHAR)"}, {"answer": "SELECT city FROM table_name_67 WHERE state = \"oklahoma\"", "question": "What city is located in Oklahoma?", "context": "CREATE TABLE table_name_67 (city VARCHAR, state VARCHAR)"}, {"answer": "SELECT city FROM table_name_20 WHERE venue = \"united spirit arena\"", "question": "In what city is the United Spirit Arena located?", "context": "CREATE TABLE table_name_20 (city VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_84 WHERE date = \"bye\"", "question": "What was the result when they had their bye week?", "context": "CREATE TABLE table_name_84 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_78 WHERE date = \"september 7, 1953\"", "question": "What was the attendance of the Browns' September 7, 1953 game?", "context": "CREATE TABLE table_name_78 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE attendance > 36 OFFSET 796", "question": "When was the Browns' game that over 36,796 attended?", "context": "CREATE TABLE table_name_74 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT young_rider_classification FROM table_name_3 WHERE stage = \"18\"", "question": "What Young rider classification has a Stage of 18?", "context": "CREATE TABLE table_name_3 (young_rider_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_name_80 WHERE team_classification = \"la vie claire\" AND general_classification = \"greg lemond\" AND stage = \"20\"", "question": "Who has a Team classification of la vie claire, a stage of 20, a General classification of greg lemond?", "context": "CREATE TABLE table_name_80 (winner VARCHAR, stage VARCHAR, team_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_62 WHERE team_classification = \"la vie claire\" AND stage = \"12\"", "question": "What is the classification with a Team classification of la vie claire and a Stage of 12?", "context": "CREATE TABLE table_name_62 (general_classification VARCHAR, team_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_51 WHERE winner = \"guido bontempi\" AND stage = \"6\"", "question": "What is guido bontempi's general classification when he has a stage of 6?", "context": "CREATE TABLE table_name_51 (general_classification VARCHAR, winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT team_classification FROM table_name_74 WHERE winner = \"ludo peeters\"", "question": "What is Ludo Peeters' team classification?", "context": "CREATE TABLE table_name_74 (team_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE goals < 3 AND result = \"(w) 2-0\"", "question": "Which date had less than 3 goals and a result of (w) 2-0?", "context": "CREATE TABLE table_name_23 (date VARCHAR, goals VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE venue = \"mcg\"", "question": "On what date was a match held at MCG?", "context": "CREATE TABLE table_name_50 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_65 WHERE away_team = \"fitzroy\"", "question": "When Fitzroy are the away team, what is the average crowd size?", "context": "CREATE TABLE table_name_65 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_66 WHERE home_team = \"footscray\"", "question": "What is footscray's away team score?", "context": "CREATE TABLE table_name_66 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_37 WHERE opponent = \"jeremija sanders\"", "question": "What is the record of Jeremija Sanders' opponent?", "context": "CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(tries) FROM table_name_22 WHERE start > 32 AND player = \"seremaia bai\" AND conv > 47", "question": "What is the average number of tries that has a start larger than 32, is a player of seremaia bai that also has a conversion score larger than 47?", "context": "CREATE TABLE table_name_22 (tries INTEGER, conv VARCHAR, start VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(start) FROM table_name_71 WHERE player = \"fero lasagavibau\"", "question": "For the player fero lasagavibau who has the lowest start?", "context": "CREATE TABLE table_name_71 (start INTEGER, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_11 WHERE record = \"4-0\"", "question": "Who was the opponent when Raphael was 4-0?", "context": "CREATE TABLE table_name_11 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_18 WHERE record = \"3-0\"", "question": "What was the average round when he had a 3-0 record?", "context": "CREATE TABLE table_name_18 (round INTEGER, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_41 WHERE record = \"2-0\"", "question": "What was the location when he had a 2-0 record?", "context": "CREATE TABLE table_name_41 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT res FROM table_name_4 WHERE round = 1 AND opponent = \"jeremy beck\"", "question": "What was the result when he went 1 round against jeremy beck?", "context": "CREATE TABLE table_name_4 (res VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_34 WHERE city = \"halifax\"", "question": "What was the result of the game in halifax?", "context": "CREATE TABLE table_name_34 (result VARCHAR, city VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_48 WHERE city = \"halifax\"", "question": "What stadium is located in Halifax?", "context": "CREATE TABLE table_name_48 (stadium VARCHAR, city VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE city = \"salford\"", "question": "What day did they play in salford?", "context": "CREATE TABLE table_name_56 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_12 WHERE opponent = \"chicago cardinals\" AND attendance < 25 OFFSET 312", "question": "What was the earliest week the team played the chicago cardinals in front of less than 25,312?", "context": "CREATE TABLE table_name_12 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE week = 4", "question": "What day did they play on week 4?", "context": "CREATE TABLE table_name_25 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_2 WHERE week = 1", "question": "What was the attendance during the week 1 match?", "context": "CREATE TABLE table_name_2 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_37 WHERE date = \"november 10, 1963\"", "question": "During what week was the match on November 10, 1963?", "context": "CREATE TABLE table_name_37 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_43 WHERE date = \"december 1, 1963\"", "question": "What was the result of the match on December 1, 1963?", "context": "CREATE TABLE table_name_43 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE away_team = \"hawthorn\"", "question": "What day is hawthorn the away side?", "context": "CREATE TABLE table_name_23 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_22 WHERE away_team = \"north melbourne\"", "question": "What is the average crowd size for games with north melbourne as the away side?", "context": "CREATE TABLE table_name_22 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT COUNT(form) FROM table_name_72 WHERE pages < 18", "question": "How many forms have less than 18 pages?", "context": "CREATE TABLE table_name_72 (form VARCHAR, pages INTEGER)"}, {"answer": "SELECT SUM(form) FROM table_name_70 WHERE pages > 17 AND total_assets = \"$1,801,154\"", "question": "What is the sum of forms with greater than 17 pages and a total of $1,801,154?", "context": "CREATE TABLE table_name_70 (form INTEGER, pages VARCHAR, total_assets VARCHAR)"}, {"answer": "SELECT venue FROM table_name_50 WHERE away_team = \"south melbourne\"", "question": "Which venue hosted South Melbourne?", "context": "CREATE TABLE table_name_50 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_83 WHERE home_team = \"richmond\"", "question": "What was the scored of the Away team that played against Richmond?", "context": "CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_44 WHERE week = 6", "question": "What is the result week 6?", "context": "CREATE TABLE table_name_44 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT goals FROM table_name_98 WHERE name = \"sture m\u00e5rtensson\"", "question": "How many goals did sture m\u00e5rtensson score?", "context": "CREATE TABLE table_name_98 (goals VARCHAR, name VARCHAR)"}, {"answer": "SELECT goals FROM table_name_47 WHERE caps = 2 AND club = \"degerfors if\"", "question": "How many goals for the player with 2 caps at degerfors if?", "context": "CREATE TABLE table_name_47 (goals VARCHAR, caps VARCHAR, club VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_23 WHERE year > 2000", "question": "What catalog came out after 2000?", "context": "CREATE TABLE table_name_23 (catalog VARCHAR, year INTEGER)"}, {"answer": "SELECT attendance FROM table_name_26 WHERE week = 7", "question": "What was the attendance on week 7?", "context": "CREATE TABLE table_name_26 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_19 WHERE result = \"bye\" AND week < 14", "question": "What opponent did they have a bye result against before week 14?", "context": "CREATE TABLE table_name_19 (opponent VARCHAR, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_73 WHERE away_team = \"fitzroy\"", "question": "Which home team has an Away team of fitzroy?", "context": "CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_82 WHERE home_team = \"north melbourne\"", "question": "What was North Melbourne's score when they were the home team?", "context": "CREATE TABLE table_name_82 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_38 WHERE home_team = \"richmond\"", "question": "What was Richmond's score as the home team?", "context": "CREATE TABLE table_name_38 (home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_56 WHERE home_team = \"richmond\"", "question": "Who was the opponent when Richmond played as the home team?", "context": "CREATE TABLE table_name_56 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_25 WHERE venue = \"kardinia park\"", "question": "What was the attendance at the Kardinia Park game?", "context": "CREATE TABLE table_name_25 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_75 WHERE home_team = \"north melbourne\"", "question": "What was the score of the team North Melbourne played at Arden Street Oval?", "context": "CREATE TABLE table_name_75 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE venue = \"arden street oval\"", "question": "What date did the game at Arden Street Oval take place?", "context": "CREATE TABLE table_name_12 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE crowd > 36 OFFSET 766", "question": "What is the date of the game with 36,766 fans?", "context": "CREATE TABLE table_name_98 (date VARCHAR, crowd INTEGER)"}, {"answer": "SELECT MIN(total) FROM table_name_41 WHERE institution = \"higher secondary school\" AND aided > 14", "question": "Which higher secondary school listing has the lowest total and an Aided amount larger than 14?", "context": "CREATE TABLE table_name_41 (total INTEGER, institution VARCHAR, aided VARCHAR)"}, {"answer": "SELECT institution FROM table_name_99 WHERE total < 13 AND government = 1 AND aided = 0", "question": "Which Institution has a Total smaller than 13, a Government amount of 1, and an Aided amount of 0?", "context": "CREATE TABLE table_name_99 (institution VARCHAR, aided VARCHAR, total VARCHAR, government VARCHAR)"}, {"answer": "SELECT iata FROM table_name_59 WHERE country = \"china\" AND icao = \"zspd\"", "question": "Which IATA is associated with China and an ICAO of ZSPD?", "context": "CREATE TABLE table_name_59 (iata VARCHAR, country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_71 WHERE city = \"macau\"", "question": "Which airport is associated with Macau?", "context": "CREATE TABLE table_name_71 (airport VARCHAR, city VARCHAR)"}, {"answer": "SELECT iata FROM table_name_85 WHERE city = \"nanjing\"", "question": "What is the IATA for Nanjing?", "context": "CREATE TABLE table_name_85 (iata VARCHAR, city VARCHAR)"}, {"answer": "SELECT airport FROM table_name_81 WHERE icao = \"rckh\"", "question": "Which airport has an ICAO of RCKH?", "context": "CREATE TABLE table_name_81 (airport VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_52 WHERE iata = \"tyn\"", "question": "Which airport has an IATA of TYN?", "context": "CREATE TABLE table_name_52 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT country FROM table_name_41 WHERE airport = \"shanghai pudong international airport\"", "question": "Which country contains the Shanghai Pudong International airport?", "context": "CREATE TABLE table_name_41 (country VARCHAR, airport VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_2 WHERE home_team = \"footscray\"", "question": "What was Footscray's score when it played as the home team?", "context": "CREATE TABLE table_name_2 (home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_83 WHERE away_team = \"hawthorn\"", "question": "hat was Hawthorn's score as the away team?", "context": "CREATE TABLE table_name_83 (away_team VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_41 WHERE opponent_in_the_final = \"carlos kirmayr\"", "question": "What was the Outcome against Opponent in the Final Carlos Kirmayr?", "context": "CREATE TABLE table_name_41 (outcome VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_35 WHERE date < 1978 AND opponent_in_the_final = \"manuel orantes\"", "question": "What was the Score in the Final against Opponent in the Final Manuel Orantes, prior to 1978?", "context": "CREATE TABLE table_name_35 (score_in_the_final VARCHAR, date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT championship FROM table_name_89 WHERE outcome = \"runner-up\" AND surface = \"clay\" AND opponent_in_the_final = \"ivan lendl\"", "question": "Against Opponent in the Final Ivan Lendl, on a Surface of clay, with an Outcome of runner-up, where was the Championship?", "context": "CREATE TABLE table_name_89 (championship VARCHAR, opponent_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_15 WHERE surface = \"clay\" AND championship = \"linz, austria\"", "question": "What is the earliest Date on a Surface of clay in a Championship in Linz, Austria?", "context": "CREATE TABLE table_name_15 (date INTEGER, surface VARCHAR, championship VARCHAR)"}, {"answer": "SELECT sportsperson FROM table_name_36 WHERE sport = \"athletics\"", "question": "Who playes the sport of athletics?", "context": "CREATE TABLE table_name_36 (sportsperson VARCHAR, sport VARCHAR)"}, {"answer": "SELECT team FROM table_name_75 WHERE year = 2008", "question": "What team has a year listed of 2008?", "context": "CREATE TABLE table_name_75 (team VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_42 WHERE away_team = \"fitzroy\"", "question": "What venue was the game played in when the away team was fitzroy?", "context": "CREATE TABLE table_name_42 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT type FROM table_name_35 WHERE name = \"sanctuary\"", "question": "What is the film type for the movie Sanctuary?", "context": "CREATE TABLE table_name_35 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_25 WHERE cc_license = \"by-nc-sa 2.5\"", "question": "What different types are there with a CC License of by-nc-sa 2.5?", "context": "CREATE TABLE table_name_25 (type VARCHAR, cc_license VARCHAR)"}, {"answer": "SELECT open_source_movie FROM table_name_67 WHERE planned_release = \"2013\"", "question": "What are the open source movies with planned releases in 2013?", "context": "CREATE TABLE table_name_67 (open_source_movie VARCHAR, planned_release VARCHAR)"}, {"answer": "SELECT MIN(rank_by_average) FROM table_name_99 WHERE average = 23 AND total = 115", "question": "What was the lowest rank by average of a couple who had an average of 23 and a total of 115?", "context": "CREATE TABLE table_name_99 (rank_by_average INTEGER, average VARCHAR, total VARCHAR)"}, {"answer": "SELECT colonized FROM table_name_92 WHERE state = \"michigan\"", "question": "What is the colonized date for Michigan?", "context": "CREATE TABLE table_name_92 (colonized VARCHAR, state VARCHAR)"}, {"answer": "SELECT colonized FROM table_name_83 WHERE chartered = \"1958\"", "question": "What is the colonized year for the chartered year 1958?", "context": "CREATE TABLE table_name_83 (colonized VARCHAR, chartered VARCHAR)"}, {"answer": "SELECT colonized FROM table_name_56 WHERE school = \"shippensburg university\"", "question": "When was shippensburg university Colonized?", "context": "CREATE TABLE table_name_56 (colonized VARCHAR, school VARCHAR)"}, {"answer": "SELECT colonized FROM table_name_61 WHERE charter_range = \"n/a\" AND school = \"appalachian state\"", "question": "What is the colonized date for the n/a charter range for appalachian state?", "context": "CREATE TABLE table_name_61 (colonized VARCHAR, charter_range VARCHAR, school VARCHAR)"}, {"answer": "SELECT state FROM table_name_71 WHERE status = \"colony\" AND school = \"shippensburg university\"", "question": "What state has colony as a status and shippensburg university as the school?", "context": "CREATE TABLE table_name_71 (state VARCHAR, status VARCHAR, school VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_63 WHERE venue = \"windy hill\"", "question": "What was the Home Team Score for the Windy Hill Venue?", "context": "CREATE TABLE table_name_63 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_61 WHERE home_team = \"essendon\"", "question": "What is the Essendon Home Team's venue?", "context": "CREATE TABLE table_name_61 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_15 WHERE away_team = \"fitzroy\"", "question": "How large a crowd did the Fitzroy Away team draw?", "context": "CREATE TABLE table_name_15 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_84 WHERE player = \"van waiters\"", "question": "What is Van Waiters position?", "context": "CREATE TABLE table_name_84 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_95 WHERE country = \"usa\" AND city = \"tucson\"", "question": "What is the capacity of the team in tucson, USA?", "context": "CREATE TABLE table_name_95 (capacity VARCHAR, country VARCHAR, city VARCHAR)"}, {"answer": "SELECT podcast_date FROM table_name_21 WHERE episode_number = 103", "question": "What is the date for the podcast episode number 103?", "context": "CREATE TABLE table_name_21 (podcast_date VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT title FROM table_name_87 WHERE podcast_date = \"november 21, 2004\"", "question": "What is the name of the podcast on November 21, 2004?", "context": "CREATE TABLE table_name_87 (title VARCHAR, podcast_date VARCHAR)"}, {"answer": "SELECT tonnage FROM table_name_26 WHERE nationality = \"great britain\" AND ship = \"batna\"", "question": "What was the tonnage of the Great Britain ship Batna?", "context": "CREATE TABLE table_name_26 (tonnage VARCHAR, nationality VARCHAR, ship VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_26 WHERE gold = 4 AND total = 22", "question": "How many silver medals were won when there were 4 gold and 22 in total?", "context": "CREATE TABLE table_name_26 (silver INTEGER, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT car__number FROM table_name_58 WHERE points = 130", "question": "What car number has 130 points?", "context": "CREATE TABLE table_name_58 (car__number VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_49 WHERE points > 96 AND car__number < 24 AND driver = \"ryan newman\"", "question": "What is the lowest number of laps for ryan newman with over 96 points, a cur number under 24,", "context": "CREATE TABLE table_name_49 (laps INTEGER, driver VARCHAR, points VARCHAR, car__number VARCHAR)"}, {"answer": "SELECT SUM(car__number) FROM table_name_30 WHERE points < 126 AND laps = 147", "question": "What is the sum of car numbers with less than 126 points and 147 laps?", "context": "CREATE TABLE table_name_30 (car__number INTEGER, points VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_53 WHERE winnings = \"$116,033\" AND car__number < 18", "question": "How many total laps for the driver with Winnings of $116,033, and a Car # smaller than 18?", "context": "CREATE TABLE table_name_53 (laps VARCHAR, winnings VARCHAR, car__number VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_7 WHERE venue = \"kardinia park\"", "question": "What was the home team's score at kardinia park?", "context": "CREATE TABLE table_name_7 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_25 WHERE away_team = \"melbourne\"", "question": "What is the venue when melbourne is the away team?", "context": "CREATE TABLE table_name_25 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_49 WHERE away_team = \"footscray\"", "question": "What is the smallest crowd that Footscray had as the away team?", "context": "CREATE TABLE table_name_49 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT city FROM table_name_87 WHERE venue = \"mackey arena\"", "question": "Where is the Mackey Arena located?", "context": "CREATE TABLE table_name_87 (city VARCHAR, venue VARCHAR)"}, {"answer": "SELECT state FROM table_name_67 WHERE host = \"university of california, los angeles\"", "question": "What state has the University of California, Los Angeles?", "context": "CREATE TABLE table_name_67 (state VARCHAR, host VARCHAR)"}, {"answer": "SELECT region FROM table_name_37 WHERE state = \"california\" AND host = \"university of california, los angeles\"", "question": "What region does the University of California, Los Angeles play in?", "context": "CREATE TABLE table_name_37 (region VARCHAR, state VARCHAR, host VARCHAR)"}, {"answer": "SELECT venue FROM table_name_58 WHERE state = \"california\" AND city = \"santa barbara\"", "question": "What venue is in Santa Barbara, California?", "context": "CREATE TABLE table_name_58 (venue VARCHAR, state VARCHAR, city VARCHAR)"}, {"answer": "SELECT venue FROM table_name_19 WHERE state = \"colorado\"", "question": "What Venue is in Colorado?", "context": "CREATE TABLE table_name_19 (venue VARCHAR, state VARCHAR)"}, {"answer": "SELECT city FROM table_name_46 WHERE venue = \"mackey arena\"", "question": "What city is Mackey Arena in?", "context": "CREATE TABLE table_name_46 (city VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_80 WHERE heat = 1 AND name = \"david carry\"", "question": "What lane is David Carry in heat 1?", "context": "CREATE TABLE table_name_80 (lane VARCHAR, heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_29 WHERE week > 9 AND game_site = \"rich stadium\"", "question": "Who is the opponent after week 9 at rich stadium?", "context": "CREATE TABLE table_name_29 (opponent VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_54 WHERE date = \"1997-12-14\"", "question": "What was the attendance on 1997-12-14?", "context": "CREATE TABLE table_name_54 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_93 WHERE opponent = \"minnesota vikings\" AND attendance < 68 OFFSET 431", "question": "For the 1967 Cleveland Browns season what is the total number of times they played the Minnesota Vikings and had an atttendance smaller than 68,431?", "context": "CREATE TABLE table_name_93 (week VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_37 WHERE week < 10 AND date = \"november 12, 1967\"", "question": "What is the lowest attendance for a game before 10 weeks on November 12, 1967", "context": "CREATE TABLE table_name_37 (attendance INTEGER, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(injured) FROM table_name_49 WHERE place = \"mayurbhanj, odisha\" AND killed < 1", "question": "What is the smallest number of injured in mayurbhanj, odisha and less than 1 killed?", "context": "CREATE TABLE table_name_49 (injured INTEGER, place VARCHAR, killed VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_96 WHERE home_team = \"carlton\"", "question": "Which Away team has Carlton for it's Home team?", "context": "CREATE TABLE table_name_96 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_3 WHERE home_team = \"footscray\"", "question": "Which Venue has Footscray as it's Home team?", "context": "CREATE TABLE table_name_3 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_69 WHERE away_team = \"richmond\"", "question": "What home team has Richmond listed as their Away team?", "context": "CREATE TABLE table_name_69 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_18 WHERE home_team = \"south melbourne\"", "question": "What is the number of the crowd for the home team of South Melbourne?", "context": "CREATE TABLE table_name_18 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_16 WHERE home_team = \"footscray\"", "question": "What is the away team score for the home team listed as Footscray?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_26 WHERE crowd > 33 OFFSET 642", "question": "Which venue exceeded a crowd size of 33,642?", "context": "CREATE TABLE table_name_26 (venue VARCHAR, crowd INTEGER)"}, {"answer": "SELECT attendance FROM table_name_63 WHERE game_site = \"the meadowlands\" AND opponent = \"new england patriots\"", "question": "What was the attendance at the Meadowlands against the New England Patriots?", "context": "CREATE TABLE table_name_63 (attendance VARCHAR, game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_8 WHERE attendance = \"78,722\"", "question": "What game did Jets have an attendance of 78,722?", "context": "CREATE TABLE table_name_8 (game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_22 WHERE date = \"october 2, 2005\"", "question": "Who played the Rams on October 2, 2005?", "context": "CREATE TABLE table_name_22 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_82 WHERE date = \"december 11, 2005\"", "question": "What was the attendance of the game on December 11, 2005?", "context": "CREATE TABLE table_name_82 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_19 WHERE attendance = \"65,473\"", "question": "What was the result of the game played in front of 65,473?", "context": "CREATE TABLE table_name_19 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_10 WHERE home_team = \"carlton\"", "question": "How large was the crowd at Carlton's home game?", "context": "CREATE TABLE table_name_10 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_59 WHERE home_team = \"st kilda\"", "question": "What was the score when St Kilda played as the home team?", "context": "CREATE TABLE table_name_59 (home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_49 WHERE venue = \"windy hill\"", "question": "What was the crowd when the VFL played Windy Hill?", "context": "CREATE TABLE table_name_49 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_86 WHERE away_team = \"carlton\"", "question": "What was Carlton's score when they were the away team?", "context": "CREATE TABLE table_name_86 (away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_9 WHERE venue = \"corio oval\"", "question": "What was the away team that played at Corio Oval?", "context": "CREATE TABLE table_name_9 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_9 WHERE away_team = \"hawthorn\"", "question": "Which Home team faced the Away team, Hawthorn?", "context": "CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_95 WHERE venue = \"mcg\"", "question": "What was the Home team's score when the Venue was mcg?", "context": "CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_name_9 WHERE fa_cup = \"round of 16\" AND season > 2012", "question": "What is the division in the season more recent than 2012 when the round of 16 was reached in the FA Cup?", "context": "CREATE TABLE table_name_9 (division VARCHAR, fa_cup VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_name_36 WHERE tms = 13 AND pos < 8", "question": "What is the division in the season with 13 tms and pos smaller than 8?", "context": "CREATE TABLE table_name_36 (division VARCHAR, tms VARCHAR, pos VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE week < 3 AND attendance > 65 OFFSET 904", "question": "Of the games before week 3 which had attendance great than 65,904?", "context": "CREATE TABLE table_name_88 (date VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_31 WHERE attendance = 65 OFFSET 866", "question": "What was the first week to have attendance of 65,866?", "context": "CREATE TABLE table_name_31 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT location FROM table_name_23 WHERE current_conference = \"ssac\" AND institution = \"belhaven college\"", "question": "Where is the Belhaven College SSAC conference location?", "context": "CREATE TABLE table_name_23 (location VARCHAR, current_conference VARCHAR, institution VARCHAR)"}, {"answer": "SELECT institution FROM table_name_87 WHERE founded > 1883 AND current_conference = \"american southwest\"", "question": "What American Southwest Conference school was founded in 1883?", "context": "CREATE TABLE table_name_87 (institution VARCHAR, founded VARCHAR, current_conference VARCHAR)"}, {"answer": "SELECT league FROM table_name_20 WHERE attendance_average = \"7,975\"", "question": "Which League showed 7,975 for an average attendance?", "context": "CREATE TABLE table_name_20 (league VARCHAR, attendance_average VARCHAR)"}, {"answer": "SELECT attendance_average FROM table_name_68 WHERE reg_season = \"2nd aisa, 24-16\"", "question": "What is the average attendance of the team that had a regular season result of 2nd aisa, 24-16?", "context": "CREATE TABLE table_name_68 (attendance_average VARCHAR, reg_season VARCHAR)"}, {"answer": "SELECT group_vI FROM table_name_75 WHERE group_i = \"deportivo\" AND group_iV = sevilla AND group_iII = valencia", "question": "Who won Group VI, when Group 1 was won by deportivo, group IV by sevilla, and group III by Valencia?", "context": "CREATE TABLE table_name_75 (group_vI VARCHAR, group_iII VARCHAR, valencia VARCHAR, group_i VARCHAR, group_iV VARCHAR, sevilla VARCHAR)"}, {"answer": "SELECT group_iII FROM table_name_99 WHERE group_i = \"racing club\"", "question": "Who won group III when group 1 was of the racing club?", "context": "CREATE TABLE table_name_99 (group_iII VARCHAR, group_i VARCHAR)"}, {"answer": "SELECT team FROM table_name_7 WHERE rider = \"john williams\"", "question": "Which team is John Williams a rider for?", "context": "CREATE TABLE table_name_7 (team VARCHAR, rider VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_96 WHERE home_team = \"geelong\"", "question": "How big was the crowd when Geelong was the home team?", "context": "CREATE TABLE table_name_96 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_23 WHERE home_team = \"hawthorn\"", "question": "Who was the away team when Hawthorn was the home team?", "context": "CREATE TABLE table_name_23 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_96 WHERE lecturers = 6 AND professors < 48", "question": "What is the total in the case where theere are 6 lecturers and fewer than 48 professors?", "context": "CREATE TABLE table_name_96 (total INTEGER, lecturers VARCHAR, professors VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_33 WHERE associate_professors > 4 AND lecturers = 5 AND professors < 40", "question": "What is the total in the case when there are more than 4 associate professors, 5 lecturers and fewer professors than 40?", "context": "CREATE TABLE table_name_33 (total VARCHAR, professors VARCHAR, associate_professors VARCHAR, lecturers VARCHAR)"}, {"answer": "SELECT COUNT(lecturers) FROM table_name_71 WHERE assistant_professors > 8 AND professors > 14 AND associate_professors < 35 AND total > 81", "question": "How may lecturers are there in the case when there are more than 8 assistant professors, fewer than 35 associate professors, more than 14 professors and total of more than 81?", "context": "CREATE TABLE table_name_71 (lecturers VARCHAR, total VARCHAR, associate_professors VARCHAR, assistant_professors VARCHAR, professors VARCHAR)"}, {"answer": "SELECT MAX(associate_professors) FROM table_name_29 WHERE assistant_professors > 5 AND professors < 14", "question": "What is the maximum number of associate professors when there are more than 5 assistant professors and fewer than 14 professors?", "context": "CREATE TABLE table_name_29 (associate_professors INTEGER, assistant_professors VARCHAR, professors VARCHAR)"}, {"answer": "SELECT origin_of_programming FROM table_name_85 WHERE network = \"banglavision\"", "question": "Which country has the banglavision Network?", "context": "CREATE TABLE table_name_85 (origin_of_programming VARCHAR, network VARCHAR)"}, {"answer": "SELECT service FROM table_name_96 WHERE origin_of_programming = \"india\" AND genre = \"general\" AND network = \"zee variasi\"", "question": "Which general service in India is a part of the zee variasi network?", "context": "CREATE TABLE table_name_96 (service VARCHAR, network VARCHAR, origin_of_programming VARCHAR, genre VARCHAR)"}, {"answer": "SELECT sliding_tackle FROM table_name_3 WHERE dump_tackle = \"no\" AND shoulder_charge = \"restricted\"", "question": "Which sliding tackle has no dump tackle and a restricted shoulder charge?", "context": "CREATE TABLE table_name_3 (sliding_tackle VARCHAR, dump_tackle VARCHAR, shoulder_charge VARCHAR)"}, {"answer": "SELECT bumping_blocking FROM table_name_49 WHERE ankle_tap = \"yes\" AND steal_intercept_ball = \"yes\"", "question": "Which bumping/blocking has a yes for both the ankle tap and steal/intercept ball?", "context": "CREATE TABLE table_name_49 (bumping_blocking VARCHAR, ankle_tap VARCHAR, steal_intercept_ball VARCHAR)"}, {"answer": "SELECT body_tackle FROM table_name_56 WHERE diving_tackle = \"yes\" AND sliding_tackle = \"classified as a trip\"", "question": "Which body tackle has yes for the diving tackle and the sliding tackle classified as a trip?", "context": "CREATE TABLE table_name_56 (body_tackle VARCHAR, diving_tackle VARCHAR, sliding_tackle VARCHAR)"}, {"answer": "SELECT chicken_wing FROM table_name_76 WHERE steal_intercept_ball = \"no\"", "question": "Which Chicken wing has no steal/intercept ball?", "context": "CREATE TABLE table_name_76 (chicken_wing VARCHAR, steal_intercept_ball VARCHAR)"}, {"answer": "SELECT steal_intercept_ball FROM table_name_37 WHERE sliding_tackle = \"no\" AND dump_tackle = \"no\"", "question": "Which steal/intercept ball has no for both the sliding tackle and dump tackle?", "context": "CREATE TABLE table_name_37 (steal_intercept_ball VARCHAR, sliding_tackle VARCHAR, dump_tackle VARCHAR)"}, {"answer": "SELECT shoulder_charge FROM table_name_45 WHERE body_tackle = \"restricted\"", "question": "Which shoulder charge has restricted as the body tackle?", "context": "CREATE TABLE table_name_45 (shoulder_charge VARCHAR, body_tackle VARCHAR)"}, {"answer": "SELECT player FROM table_name_11 WHERE school_country = \"west virginia\"", "question": "Which player has West Virginia listed as their school/country?", "context": "CREATE TABLE table_name_11 (player VARCHAR, school_country VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_41 WHERE home_team = \"fitzroy\"", "question": "What is the average crowd size when fitzroy plays at home?", "context": "CREATE TABLE table_name_41 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT results FROM table_name_89 WHERE total_votes > 3 OFFSET 871", "question": "What is the result of the election with 3,871 total votes?", "context": "CREATE TABLE table_name_89 (results VARCHAR, total_votes INTEGER)"}, {"answer": "SELECT MIN(_number_of_bids) FROM table_name_47 WHERE conference = \"missouri valley\"", "question": "What is the lowest number of bids in the Missouri Valley conference?", "context": "CREATE TABLE table_name_47 (_number_of_bids INTEGER, conference VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_3 WHERE date = \"bye\"", "question": "What was the attendance on the bye week?", "context": "CREATE TABLE table_name_3 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_58 WHERE result = \"bye\"", "question": "What was the last week when the team had a bye week?", "context": "CREATE TABLE table_name_58 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE away_team = \"north melbourne\"", "question": "Where was the game held where North Melbourne was the away team?", "context": "CREATE TABLE table_name_89 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_47 WHERE home_team = \"richmond\"", "question": "What was the smallest crowd size for a home game for Richmond?", "context": "CREATE TABLE table_name_47 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE opponent = \"green bay packers\"", "question": "When did the 1966 Cleveland Browns play the Green Bay Packers?", "context": "CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_26 WHERE home_team = \"south melbourne\"", "question": "How many points did South Melbourne score as the home team?", "context": "CREATE TABLE table_name_26 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE home_team = \"footscray\"", "question": "On what date was the home team Footscray?", "context": "CREATE TABLE table_name_49 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_99 WHERE goal_difference = 8 AND losses < 12", "question": "What is the average amount of goals that have a goal difference or 8 and the losses are smaller than 12?", "context": "CREATE TABLE table_name_99 (goals_for INTEGER, goal_difference VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_80 WHERE club = \"lokomotiv plovdiv\" AND goals_against > 58", "question": "How many goals have a Lokomotiv Plovdiv club and goals against larger than 58?", "context": "CREATE TABLE table_name_80 (goals_for VARCHAR, club VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT AVG(goal_difference) FROM table_name_8 WHERE club = \"slavia sofia\"", "question": "What is the average goal difference using slavia sofia club?", "context": "CREATE TABLE table_name_8 (goal_difference INTEGER, club VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_43 WHERE club = \"botev plovdiv\" AND wins > 11", "question": "What is the played average that has botev plovdiv as the club and wins larger than 11?", "context": "CREATE TABLE table_name_43 (played INTEGER, club VARCHAR, wins VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_83 WHERE record = \"bye\"", "question": "Where did they play on their bye week?", "context": "CREATE TABLE table_name_83 (game_site VARCHAR, record VARCHAR)"}, {"answer": "SELECT kickoff FROM table_name_53 WHERE nflcom_recap = \"recap\" AND week < 17 AND game_site = \"arrowhead stadium\"", "question": "What is the kickoff that has a NFL.com recap, is played before week 17, and is played at arrowhead stadium?", "context": "CREATE TABLE table_name_53 (kickoff VARCHAR, game_site VARCHAR, nflcom_recap VARCHAR, week VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_17 WHERE venue = \"brunswick street oval\"", "question": "Who is the home team at brunswick street oval?", "context": "CREATE TABLE table_name_17 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_82 WHERE venue = \"brunswick street oval\"", "question": "What is the home team's score at brunswick street oval?", "context": "CREATE TABLE table_name_82 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_43 WHERE away_team = \"north melbourne\"", "question": "Which match had the largest crowd size where the away team was North Melbourne?", "context": "CREATE TABLE table_name_43 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_66 WHERE away_team = \"north melbourne\"", "question": "What was North Melbourne's score as an away team?", "context": "CREATE TABLE table_name_66 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_9 WHERE home_team = \"hawthorn\"", "question": "What was the away team's score against Hawthorn?", "context": "CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_49 WHERE home_team = \"geelong\"", "question": "What was the away team that played the home team of Geelong?", "context": "CREATE TABLE table_name_49 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_52 WHERE opponent = \"green bay packers\"", "question": "Which week with Green Bay Packers as an opponent is the highest?", "context": "CREATE TABLE table_name_52 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(start) FROM table_name_11 WHERE lost < 22 AND tries > 4", "question": "What is the number of starts for the player who lost fewer than 22 and has more than 4 tries?", "context": "CREATE TABLE table_name_11 (start INTEGER, lost VARCHAR, tries VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_19 WHERE pens < 51 AND tries = 3 AND start = 45", "question": "What is the total losses for the player with fewer than 51 pens, 3 tries and 45 starts?", "context": "CREATE TABLE table_name_19 (lost VARCHAR, start VARCHAR, pens VARCHAR, tries VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_16 WHERE venue = \"glenferrie oval\"", "question": "What is the average crowd size at glenferrie oval?", "context": "CREATE TABLE table_name_16 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_16 WHERE away_team = \"geelong\"", "question": "What is the away team's score when the away team is geelong?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_98 WHERE home_team = \"melbourne\"", "question": "What is the largest crowd when melbourne plays at home?", "context": "CREATE TABLE table_name_98 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT championship_game FROM table_name_63 WHERE conference = \"southwest\"", "question": "What was the championship game for the Southwest conference?", "context": "CREATE TABLE table_name_63 (championship_game VARCHAR, conference VARCHAR)"}, {"answer": "SELECT manager FROM table_name_29 WHERE captain = \"sol campbell\"", "question": "Which manager has Sol Campbell as captain?", "context": "CREATE TABLE table_name_29 (manager VARCHAR, captain VARCHAR)"}, {"answer": "SELECT team FROM table_name_52 WHERE shirt_sponsor = \"carlsberg\"", "question": "What team does Carlsberg sponsor?", "context": "CREATE TABLE table_name_52 (team VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT shirt_sponsor FROM table_name_74 WHERE team = \"middlesbrough\"", "question": "Who sponsors Middlesbrough?", "context": "CREATE TABLE table_name_74 (shirt_sponsor VARCHAR, team VARCHAR)"}, {"answer": "SELECT shirt_sponsor FROM table_name_23 WHERE manager = \"mark hughes\"", "question": "Which sponsor has Mark Hughes as manager?", "context": "CREATE TABLE table_name_23 (shirt_sponsor VARCHAR, manager VARCHAR)"}, {"answer": "SELECT kit_maker FROM table_name_42 WHERE team = \"aston villa\"", "question": "Which kit maker does Aston Villa use?", "context": "CREATE TABLE table_name_42 (kit_maker VARCHAR, team VARCHAR)"}, {"answer": "SELECT captain FROM table_name_9 WHERE team = \"portsmouth\"", "question": "Who captains Portsmouth?", "context": "CREATE TABLE table_name_9 (captain VARCHAR, team VARCHAR)"}, {"answer": "SELECT event FROM table_name_98 WHERE location = \"brighton, uk\"", "question": "What bombing happened in Brighton, UK?", "context": "CREATE TABLE table_name_98 (event VARCHAR, location VARCHAR)"}, {"answer": "SELECT result FROM table_name_50 WHERE score = \"3\u20130\"", "question": "What result had a score of 3\u20130?", "context": "CREATE TABLE table_name_50 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_74 WHERE venue = \"suwon world cup stadium , suwon , south korea\" AND score = \"3\u20130\"", "question": "For the venue of suwon world cup stadium , suwon , south korea and a Score of 3\u20130 what is the result?", "context": "CREATE TABLE table_name_74 (result VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(goal) FROM table_name_39 WHERE result = \"2\u20133\"", "question": "What is the top goal for the result of 2\u20133?", "context": "CREATE TABLE table_name_39 (goal INTEGER, result VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_7 WHERE time = \"12:49:08\"", "question": "When was the time of 12:49:08 first set?", "context": "CREATE TABLE table_name_7 (year INTEGER, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE attendance = \"77,918\"", "question": "What was the date when the attendance was 77,918?", "context": "CREATE TABLE table_name_90 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_6 WHERE game_site = \"georgia dome\"", "question": "What was the attendance of the game played in the Georgia Dome?", "context": "CREATE TABLE table_name_6 (attendance VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE attendance = \"73,529\"", "question": "What was the date when the attendance was 73,529?", "context": "CREATE TABLE table_name_89 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_75 WHERE venue = \"western oval\"", "question": "What away team played at Western Oval?", "context": "CREATE TABLE table_name_75 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_95 WHERE home_team = \"footscray\"", "question": "What was the smallest crowd when Footscray played at home?", "context": "CREATE TABLE table_name_95 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_39 WHERE partner = \"mashona washington\"", "question": "What was the outcome when she partnered with mashona washington?", "context": "CREATE TABLE table_name_39 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_54 WHERE venue = \"junction oval\"", "question": "What is the listed crowd at junction oval?", "context": "CREATE TABLE table_name_54 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_92 WHERE away_team = \"north melbourne\"", "question": "What is the sum of crowd(s) when north melbourne is away?", "context": "CREATE TABLE table_name_92 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_19 WHERE away_team = \"south melbourne\"", "question": "What day is south melbourne away?", "context": "CREATE TABLE table_name_19 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE date = \"23 november 2003\"", "question": "What was the score of the competition on 23 November 2003?", "context": "CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_70 WHERE away_team = \"richmond\"", "question": "Where did Richmond play as an away team?", "context": "CREATE TABLE table_name_70 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE home_team = \"south melbourne\"", "question": "When did South Melbourne play at home?", "context": "CREATE TABLE table_name_3 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(election) FROM table_name_31 WHERE party = \"liga veneta\" AND province = \"vicenza\"", "question": "What is the average election for vicenza province with the liga veneta party?", "context": "CREATE TABLE table_name_31 (election INTEGER, party VARCHAR, province VARCHAR)"}, {"answer": "SELECT SUM(election) FROM table_name_1 WHERE province = \"vicenza\"", "question": "What is the sum of elections in vicenza?", "context": "CREATE TABLE table_name_1 (election INTEGER, province VARCHAR)"}, {"answer": "SELECT province FROM table_name_55 WHERE election > 2009", "question": "What province has an election after 2009?", "context": "CREATE TABLE table_name_55 (province VARCHAR, election INTEGER)"}, {"answer": "SELECT format FROM table_name_34 WHERE country = \"japan\"", "question": "What format does Japan use?", "context": "CREATE TABLE table_name_34 (format VARCHAR, country VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE catalogue = \"540 3622\"", "question": "What date has a catalogue of 540 3622?", "context": "CREATE TABLE table_name_82 (date VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT format FROM table_name_81 WHERE catalogue = \"asw 40362\"", "question": "What format has a catalogue of asw 40362?", "context": "CREATE TABLE table_name_81 (format VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE catalogue = \"asw 40362\"", "question": "What date has a catalogue of asw 40362?", "context": "CREATE TABLE table_name_90 (date VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE crowd > 17 OFFSET 000", "question": "On what Date is the Crowd larger than 17,000?", "context": "CREATE TABLE table_name_8 (date VARCHAR, crowd INTEGER)"}, {"answer": "SELECT away_team FROM table_name_2 WHERE home_team = \"carlton\"", "question": "Which Away team has the Home team of Carlton?", "context": "CREATE TABLE table_name_2 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE partner = \"jeff tarango\"", "question": "What was the score of the Jeff Tarango game?", "context": "CREATE TABLE table_name_12 (score VARCHAR, partner VARCHAR)"}, {"answer": "SELECT venue FROM table_name_57 WHERE away_team = \"collingwood\"", "question": "Where did Collingwood play ae the away team?", "context": "CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_73 WHERE crowd > 27 OFFSET 000", "question": "What was the score when there was more than 27,000 in attendance?", "context": "CREATE TABLE table_name_73 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT venue FROM table_name_41 WHERE home_team = \"hawthorn\"", "question": "Where did Hawthorn play as the home team?", "context": "CREATE TABLE table_name_41 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(start) FROM table_name_93 WHERE span = \"1990-2005\" AND conv < 2", "question": "In 1990-2005 what is the lowest Start with Convs smaller than 2?", "context": "CREATE TABLE table_name_93 (start INTEGER, span VARCHAR, conv VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_60 WHERE home_team = \"footscray\"", "question": "What is the total of the crowd when the home team is footscray?", "context": "CREATE TABLE table_name_60 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_16 WHERE away_team = \"essendon\"", "question": "What is the away team score when the away team is Essendon?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_85 WHERE result = \"l 20-10\"", "question": "How many weeks ended in a result of L 20-10?", "context": "CREATE TABLE table_name_85 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_13 WHERE week = 6", "question": "What was the attendance in week 6?", "context": "CREATE TABLE table_name_13 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_30 WHERE attendance = \"60,066\"", "question": "Who was the opponent in the game that had an attendance of 60,066?", "context": "CREATE TABLE table_name_30 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT material_or_non_material FROM table_name_36 WHERE positional_or_automatic = \"either\" AND count_rectified = \"no\" AND opponents = \"either\"", "question": "What is the designation of material or non-material for either positional or automatic with no rectified count and either opponent?", "context": "CREATE TABLE table_name_36 (material_or_non_material VARCHAR, opponents VARCHAR, positional_or_automatic VARCHAR, count_rectified VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_92 WHERE positional_or_automatic = \"positional\" AND material_or_non_material = \"no\" AND suits = \"3\"", "question": "What is the value for positional opponents with no material or non-material, and 3 suits?", "context": "CREATE TABLE table_name_92 (opponents VARCHAR, suits VARCHAR, positional_or_automatic VARCHAR, material_or_non_material VARCHAR)"}, {"answer": "SELECT material_or_non_material FROM table_name_63 WHERE suits = \"2\" AND opponents = \"either\"", "question": "Is it material or non-material when there are 2 suits for either opponent?", "context": "CREATE TABLE table_name_63 (material_or_non_material VARCHAR, suits VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT count_rectified FROM table_name_78 WHERE opponents = \"single\" AND positional_or_automatic = \"either\" AND material_or_non_material = \"no\"", "question": "Is the count rectified for single opponents, either positional or automatic, and no material or non-material?", "context": "CREATE TABLE table_name_78 (count_rectified VARCHAR, material_or_non_material VARCHAR, opponents VARCHAR, positional_or_automatic VARCHAR)"}, {"answer": "SELECT COUNT(point) FROM table_name_89 WHERE team = \"happy valley\" AND game < 14", "question": "How many points did Happy Valley score before game 14?", "context": "CREATE TABLE table_name_89 (point VARCHAR, team VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_45 WHERE goal_gain = 17 AND game > 14", "question": "How many draws did the game after game 14 with goal gain 17 have?", "context": "CREATE TABLE table_name_45 (draw INTEGER, goal_gain VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_21 WHERE loss < 8 AND point > 30 AND goal_diff > 26", "question": "How many total draws were there with a less than 8 loss, more than 30 points, and a goal diff larger than 26?", "context": "CREATE TABLE table_name_21 (draw VARCHAR, goal_diff VARCHAR, loss VARCHAR, point VARCHAR)"}, {"answer": "SELECT MAX(loss) FROM table_name_31 WHERE game < 14", "question": "What is the highest loss before game 14?", "context": "CREATE TABLE table_name_31 (loss INTEGER, game INTEGER)"}, {"answer": "SELECT AVG(points) FROM table_name_8 WHERE time_retired = \"+16.789\" AND laps > 68", "question": "How many average points did the player with a time/retired of +16.789 and have more laps than 68 have?", "context": "CREATE TABLE table_name_8 (points INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_21 WHERE team = \"minardi team usa\" AND grid = 3 AND laps > 68", "question": "How many average points did the team Minardi Team USA have when there was a grid 3 and more laps than 68?", "context": "CREATE TABLE table_name_21 (points INTEGER, laps VARCHAR, team VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_6 WHERE away_team = \"richmond\"", "question": "Which was the highest crowd drawn by an Away team in Richmond?", "context": "CREATE TABLE table_name_6 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_94 WHERE venue = \"arden street oval\"", "question": "Which home team has a venue of Arden Street Oval?", "context": "CREATE TABLE table_name_94 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_76 WHERE venue = \"arden street oval\"", "question": "Which away team has a venue of Arden Street Oval?", "context": "CREATE TABLE table_name_76 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_32 WHERE 2007 = \"1r\"", "question": "What is the value for 2011 corresponding to a 2007 value of 1r?", "context": "CREATE TABLE table_name_32 (Id VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_38 WHERE 2012 = \"grand slam tournaments\"", "question": "What value in 2013 corresponds to Grand Slam Tournaments in 2012?", "context": "CREATE TABLE table_name_38 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_28 WHERE 2011 = \"1r\" AND 2007 = \"1r\"", "question": "What is the 2012 value when the 2011 and 2007 values are 1R?", "context": "CREATE TABLE table_name_28 (Id VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_55 WHERE tournament = \"us open\"", "question": "What value for 2013 corresponds to the US Open Tournament?", "context": "CREATE TABLE table_name_55 (tournament VARCHAR)"}, {"answer": "SELECT SUM(enrollment) FROM table_name_5 WHERE team_nickname = \"wildcats\"", "question": "The school nicknamed the wildcats has what sum of enrollment?", "context": "CREATE TABLE table_name_5 (enrollment INTEGER, team_nickname VARCHAR)"}, {"answer": "SELECT founded FROM table_name_99 WHERE location = \"paul smiths, new york\"", "question": "What is the Founded year of the school located in Paul Smiths, New York?", "context": "CREATE TABLE table_name_99 (founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_59 WHERE away_team = \"fitzroy\"", "question": "What was fitzroy's away side score?", "context": "CREATE TABLE table_name_59 (away_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_53 WHERE college = \"uab\"", "question": "What player attended UAB college?", "context": "CREATE TABLE table_name_53 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE stadium = \"rich stadium\"", "question": "What was the score of the game at RIch Stadium?", "context": "CREATE TABLE table_name_14 (result VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT name FROM table_name_21 WHERE best = \"1:32.269\"", "question": "Who had the best time of 1:32.269?", "context": "CREATE TABLE table_name_21 (name VARCHAR, best VARCHAR)"}, {"answer": "SELECT best FROM table_name_4 WHERE team = \"conquest racing\" AND qual_1 = \"1:34.748\"", "question": "Who from Conquest Racing had the best time of 1:34.748 in Qual 1?", "context": "CREATE TABLE table_name_4 (best VARCHAR, team VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_5 WHERE best = \"1:31.327\"", "question": "Who in Qual 2 had the best time of 1:31.327?", "context": "CREATE TABLE table_name_5 (qual_2 VARCHAR, best VARCHAR)"}, {"answer": "SELECT best FROM table_name_63 WHERE name = \"dan selznick\"", "question": "What was Dan Selznick best time?", "context": "CREATE TABLE table_name_63 (best VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_55 WHERE qual_2 = \"1:34.578\"", "question": "What team had 1:34.578 in Qual 2?", "context": "CREATE TABLE table_name_55 (team VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT team FROM table_name_87 WHERE name = \"jiang tengyi\"", "question": "Jiang Tengyi is on which team?", "context": "CREATE TABLE table_name_87 (team VARCHAR, name VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_74 WHERE away_team = \"footscray\"", "question": "What is the away team's score when footscray is the away team?", "context": "CREATE TABLE table_name_74 (away_team VARCHAR)"}, {"answer": "SELECT rank FROM table_name_42 WHERE bronze = 1 AND nation = \"czechoslovakia\"", "question": "What was the rank for czechoslovakia with 1 bronze?", "context": "CREATE TABLE table_name_42 (rank VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_8 WHERE gold > 9", "question": "How many bronze medals for the nation with over 9 golds?", "context": "CREATE TABLE table_name_8 (bronze VARCHAR, gold INTEGER)"}, {"answer": "SELECT AVG(goals) FROM table_name_53 WHERE venue = \"hong kong stadium, hong kong\"", "question": "What is the average number of goals that occurred in Hong Kong Stadium, Hong Kong?", "context": "CREATE TABLE table_name_53 (goals INTEGER, venue VARCHAR)"}, {"answer": "SELECT country FROM table_name_66 WHERE value_in_usd > 1.33 AND currency = \"pound sterling\"", "question": "Which country uses pound sterling with a value higher than 1.33 USD?", "context": "CREATE TABLE table_name_66 (country VARCHAR, value_in_usd VARCHAR, currency VARCHAR)"}, {"answer": "SELECT venue FROM table_name_88 WHERE home_team = \"carlton\"", "question": "What venue features carlton at home?", "context": "CREATE TABLE table_name_88 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_66 WHERE away_team = \"fitzroy\"", "question": "What venue features fitzroy as the away side?", "context": "CREATE TABLE table_name_66 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_18 WHERE home_team = \"melbourne\"", "question": "What was the smallest crowd that Melbourne played for at home?", "context": "CREATE TABLE table_name_18 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_75 WHERE away_team = \"richmond\"", "question": "What home team played the away team of Richmond?", "context": "CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(high_score) FROM table_name_52 WHERE stump = 0 AND catches = 4 AND average < 56.1 AND inns > 14", "question": "What is the high score for the player with 0 stumps, 4 catches, more than 14 inns and an average smaller than 56.1?", "context": "CREATE TABLE table_name_52 (high_score INTEGER, inns VARCHAR, average VARCHAR, stump VARCHAR, catches VARCHAR)"}, {"answer": "SELECT COUNT(runs) FROM table_name_82 WHERE inns < 9", "question": "What is the total number of runs for the player with fewer than 9 Inns?", "context": "CREATE TABLE table_name_82 (runs VARCHAR, inns INTEGER)"}, {"answer": "SELECT MIN(average) FROM table_name_82 WHERE matches = 13 AND catches < 7", "question": "What is the smallest average for the player with 13 matches and fewer than 7 catches?", "context": "CREATE TABLE table_name_82 (average INTEGER, matches VARCHAR, catches VARCHAR)"}, {"answer": "SELECT city FROM table_name_1 WHERE host = \"university of texas\"", "question": "Which city is the host of the University of Texas?", "context": "CREATE TABLE table_name_1 (city VARCHAR, host VARCHAR)"}, {"answer": "SELECT region FROM table_name_16 WHERE venue = \"thompson-boling arena\"", "question": "In which region is the Thompson-Boling arena located?", "context": "CREATE TABLE table_name_16 (region VARCHAR, venue VARCHAR)"}, {"answer": "SELECT host FROM table_name_61 WHERE city = \"philadelphia\"", "question": "Who is the host in the city of Philadelphia?", "context": "CREATE TABLE table_name_61 (host VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_39 WHERE region = \"mideast\" AND host = \"temple university\"", "question": "Which city in the mideast region is the hot of Temple University?", "context": "CREATE TABLE table_name_39 (city VARCHAR, region VARCHAR, host VARCHAR)"}, {"answer": "SELECT city FROM table_name_80 WHERE host = \"university of montana\"", "question": "Which city is the University of Montana located in?", "context": "CREATE TABLE table_name_80 (city VARCHAR, host VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_26 WHERE home_team = \"hawthorn\"", "question": "What was the away team score at Hawthorn?", "context": "CREATE TABLE table_name_26 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_61 WHERE home_team = \"geelong\"", "question": "Who went to Geelong to play?", "context": "CREATE TABLE table_name_61 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_89 WHERE away_team = \"collingwood\"", "question": "Who did Collingwood play at home?", "context": "CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_1 WHERE density = 20.3 AND area__km\u00b2_ > 50 OFFSET 350", "question": "Which population is the greatest, has a density of 20.3, and an area (km\u00b2) larger than 50,350?", "context": "CREATE TABLE table_name_1 (population INTEGER, density VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_73 WHERE venue = \"junction oval\"", "question": "Who was the home team at the game held at the Junction Oval?", "context": "CREATE TABLE table_name_73 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_24 WHERE away_team = \"fitzroy\"", "question": "Where was the game held when Fitzroy was the away team?", "context": "CREATE TABLE table_name_24 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_86 WHERE opponent = \"kansas city chiefs\"", "question": "How many people attended the Rams game against the Kansas City Chiefs?", "context": "CREATE TABLE table_name_86 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT iata FROM table_name_58 WHERE country = \"china\"", "question": "What is China's IATA?", "context": "CREATE TABLE table_name_58 (iata VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_59 WHERE city = \"douala\"", "question": "Where is the City of Douala?", "context": "CREATE TABLE table_name_59 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT airport FROM table_name_44 WHERE country = \"south africa\" AND icao = \"fajs\"", "question": "Which airport is in South Africa and has a ICAO fajs?", "context": "CREATE TABLE table_name_44 (airport VARCHAR, country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT icao FROM table_name_63 WHERE country = \"cuba\"", "question": "What is Cuba's ICAO?", "context": "CREATE TABLE table_name_63 (icao VARCHAR, country VARCHAR)"}, {"answer": "SELECT airport FROM table_name_75 WHERE country = \"angola\" AND icao = \"fnsa\"", "question": "What is Angola's airport and ICAO of fnsa?", "context": "CREATE TABLE table_name_75 (airport VARCHAR, country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_28 WHERE venue = \"windy hill\"", "question": "What team plays at home at Windy Hill?", "context": "CREATE TABLE table_name_28 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_45 WHERE away_team = \"footscray\"", "question": "What was Footscray's score as an away team?", "context": "CREATE TABLE table_name_45 (away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE away_team = \"richmond\"", "question": "What day is richmond the away side?", "context": "CREATE TABLE table_name_71 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_95 WHERE away_team = \"hawthorn\"", "question": "Who is the home team when hawthorn is the away team?", "context": "CREATE TABLE table_name_95 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT game_name FROM table_name_92 WHERE odds_of_winning = \"1 in 4.23\" AND top_prize = \"$15,000\"", "question": "What is the name of the game with odds of winning 1 in 4.23 with a top prize of $15,000?", "context": "CREATE TABLE table_name_92 (game_name VARCHAR, odds_of_winning VARCHAR, top_prize VARCHAR)"}, {"answer": "SELECT launch_date FROM table_name_30 WHERE odds_of_winning = \"1 in 4.23\" AND top_prize = \"$15,000\"", "question": "What is the launch date odds of winning 1 in 4.23 with a top prize of $15,000?", "context": "CREATE TABLE table_name_30 (launch_date VARCHAR, odds_of_winning VARCHAR, top_prize VARCHAR)"}, {"answer": "SELECT launch_date FROM table_name_2 WHERE odds_of_winning = \"1 in 4.54\"", "question": "What is the launch date odds of winning 1 in 4.54?", "context": "CREATE TABLE table_name_2 (launch_date VARCHAR, odds_of_winning VARCHAR)"}, {"answer": "SELECT launch_date FROM table_name_92 WHERE odds_of_winning = \"1 in 4.44\"", "question": "What is the launch date odds of winning 1 in 4.44?", "context": "CREATE TABLE table_name_92 (launch_date VARCHAR, odds_of_winning VARCHAR)"}, {"answer": "SELECT game_name FROM table_name_55 WHERE top_prize = \"$888\"", "question": "What is the name of the game with a top prize of $888?", "context": "CREATE TABLE table_name_55 (game_name VARCHAR, top_prize VARCHAR)"}, {"answer": "SELECT top_prize FROM table_name_3 WHERE price = \"$1\" AND launch_date = \"february 12, 2008\"", "question": "What is the top price of $1 with a launch date on February 12, 2008?", "context": "CREATE TABLE table_name_3 (top_prize VARCHAR, price VARCHAR, launch_date VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_49 WHERE points < 5 AND team = \"garry rogers motorsport\" AND grid < 23", "question": "What is the highest number of laps when there are less than 5 points for team garry rogers motorsport and the grid number is under 23?", "context": "CREATE TABLE table_name_49 (laps INTEGER, grid VARCHAR, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT name FROM table_name_81 WHERE laps = 46 AND points < 9 AND grid < 12", "question": "What is the name of the driver who went 46 laps had less than 9 points and had a grid number under 12?", "context": "CREATE TABLE table_name_81 (name VARCHAR, grid VARCHAR, laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT finals_venue__surface_ FROM table_name_12 WHERE year = 1966", "question": "Where was the 1966 final played?", "context": "CREATE TABLE table_name_12 (finals_venue__surface_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(worst_score) FROM table_name_81 WHERE best_dancer = \"mario lopez\" AND dance = \"tango\"", "question": "What is the average Worst score for Mario Lopez as the Best dancer and Tango as the Dance?", "context": "CREATE TABLE table_name_81 (worst_score INTEGER, best_dancer VARCHAR, dance VARCHAR)"}, {"answer": "SELECT MAX(best_score) FROM table_name_47 WHERE dance = \"mambo\"", "question": "What is the highest Best score for the Dance Mambo?", "context": "CREATE TABLE table_name_47 (best_score INTEGER, dance VARCHAR)"}, {"answer": "SELECT best_dancer FROM table_name_47 WHERE worst_dancer = \"jerry springer\" AND best_score = 29 AND dance = \"quickstep\"", "question": "Who is the Best dancer with the Worst dancer of Jerry Springer, a Best score of 29, and the Dance was the Quickstep?", "context": "CREATE TABLE table_name_47 (best_dancer VARCHAR, dance VARCHAR, worst_dancer VARCHAR, best_score VARCHAR)"}, {"answer": "SELECT number_of_dances FROM table_name_69 WHERE place > 1 AND total_points = 40", "question": "How many dances placed below 1 with a point total of 40?", "context": "CREATE TABLE table_name_69 (number_of_dances VARCHAR, place VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT MIN(number_of_dances) FROM table_name_93 WHERE rank_by_average > 4 AND place = 8", "question": "What is the lowest number of dances with a rank larger than 4 and a place of 8?", "context": "CREATE TABLE table_name_93 (number_of_dances INTEGER, rank_by_average VARCHAR, place VARCHAR)"}, {"answer": "SELECT MIN(number_of_dances) FROM table_name_83 WHERE place < 2 AND average < 27.5", "question": "What is the lowest number of dances with a less than 2 place and an average smaller than 27.5?", "context": "CREATE TABLE table_name_83 (number_of_dances INTEGER, place VARCHAR, average VARCHAR)"}, {"answer": "SELECT SUM(diff) FROM table_name_38 WHERE played < 6", "question": "What is the total difference for teams that played less than 6 games?", "context": "CREATE TABLE table_name_38 (diff INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(played) FROM table_name_52 WHERE lost > 5 AND against = 228", "question": "What is the highest number of games played for teams that lost over 5 games and had an against total of 228?", "context": "CREATE TABLE table_name_52 (played INTEGER, lost VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_65 WHERE points < 4 AND against > 340", "question": "How many games lost for team(s) with less than 4 paints and against total of over 340?", "context": "CREATE TABLE table_name_65 (lost VARCHAR, points VARCHAR, against VARCHAR)"}, {"answer": "SELECT week FROM table_name_34 WHERE attendance = \"24,242\"", "question": "What week was the game that had an attendance of 24,242?", "context": "CREATE TABLE table_name_34 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_8 WHERE result = \"l 35\u201314\"", "question": "What was the attendance of the game that had a score of l 35\u201314?", "context": "CREATE TABLE table_name_8 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE week < 10 AND attendance = \"38,865\"", "question": "When was the pre-Week 10 game that had an attendance of over 38,865?", "context": "CREATE TABLE table_name_98 (date VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT location FROM table_name_26 WHERE ppv_buyrate = \"775,000\"", "question": "Which Location has a PPV Buyrate of 775,000?", "context": "CREATE TABLE table_name_26 (location VARCHAR, ppv_buyrate VARCHAR)"}, {"answer": "SELECT venue FROM table_name_62 WHERE away_team = \"geelong\"", "question": "Where did Geelong play as the away team?", "context": "CREATE TABLE table_name_62 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_23 WHERE away_team = \"hawthorn\"", "question": "What was the away team's score against Hawthorn?", "context": "CREATE TABLE table_name_23 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_33 WHERE home_team = \"fitzroy\"", "question": "When Fitzroy was the home team, what was the away team's score?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_73 WHERE venue = \"arden street oval\"", "question": "How big was the largest crowd recorded at the Arden Street Oval venue?", "context": "CREATE TABLE table_name_73 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_76 WHERE week = 1", "question": "What is the smallest attendance in week 1?", "context": "CREATE TABLE table_name_76 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_14 WHERE date = \"august 9, 1968\" AND attendance < 64 OFFSET 020", "question": "What is the larges week for the date  august 9, 1968 and less than 64,020 in attendance?", "context": "CREATE TABLE table_name_14 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_45 WHERE date = \"august 9, 1968\"", "question": "What is the smallest attendance number for august 9, 1968?", "context": "CREATE TABLE table_name_45 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_69 WHERE date = \"august 30, 1968\"", "question": "What was the result of the game on august 30, 1968?", "context": "CREATE TABLE table_name_69 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT class FROM table_name_13 WHERE call_sign = \"w267an\"", "question": "What is the class of the w267an call sign?", "context": "CREATE TABLE table_name_13 (class VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT MIN(erp_w) FROM table_name_54 WHERE facility_id = 67829", "question": "What is the lowest ERP W of the 67829 Facility ID?", "context": "CREATE TABLE table_name_54 (erp_w INTEGER, facility_id VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_52 WHERE frequency_mhz = 101.3 AND erp_w > 10 AND facility_id < 87027", "question": "What is the FCC info for the call sign with a frequency MHz of 101.3, a ERP W over 10, and a Facility ID smaller than 87027?", "context": "CREATE TABLE table_name_52 (fcc_info VARCHAR, facility_id VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT AVG(off_reb) FROM table_name_29 WHERE ftm_fta = \"16-17\" AND steals < 8", "question": "What was the average of the Off Reb with steals less than 8 and FTM-FTA of 16-17?", "context": "CREATE TABLE table_name_29 (off_reb INTEGER, ftm_fta VARCHAR, steals VARCHAR)"}, {"answer": "SELECT song FROM table_name_86 WHERE release_info = \"heavenly (hvn152)\"", "question": "Which song released on heavenly (hvn152)?", "context": "CREATE TABLE table_name_86 (song VARCHAR, release_info VARCHAR)"}, {"answer": "SELECT album FROM table_name_56 WHERE release_info = \"heavenly (hvn95)\"", "question": "Which album had a release of heavenly (hvn95)?", "context": "CREATE TABLE table_name_56 (album VARCHAR, release_info VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_8 WHERE college = \"florida state\"", "question": "What is the sum of all the rounds when a Florida State player was drafted?", "context": "CREATE TABLE table_name_8 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_41 WHERE position = \"safety\" AND overall > 89", "question": "What is the average round in which a Safety with an overall rank higher than 89 was drafted?", "context": "CREATE TABLE table_name_41 (round INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT venue FROM table_name_18 WHERE silver = \"united states\" AND year = 2010", "question": "Where was 2010 tournament where the United States received the silver?", "context": "CREATE TABLE table_name_18 (venue VARCHAR, silver VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_22 WHERE bronze = \"finland\" AND silver = \"united states\"", "question": "Where was the tournament where Finland received the bronze and the United States received the silver?", "context": "CREATE TABLE table_name_22 (venue VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT gold FROM table_name_58 WHERE silver = \"czech republic\" AND venue = \"bratislava\"", "question": "Who received the gold at the tournament at bratislava where the Czech Republic received the silver?", "context": "CREATE TABLE table_name_58 (gold VARCHAR, silver VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_40 WHERE year > 1991 AND bronze = \"czech republic\" AND silver = \"russia\"", "question": "Where was the post 1991 tournament where the Czech Republic received the bronze and Russia received the silver?", "context": "CREATE TABLE table_name_40 (venue VARCHAR, silver VARCHAR, year VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_99 WHERE venue = \"kardinia park\"", "question": "Who was the away team at the game at Kardinia Park?", "context": "CREATE TABLE table_name_99 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_83 WHERE away_team = \"melbourne\"", "question": "What was the smallest crowd for a Melbourne away game?", "context": "CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE week = 8", "question": "What day did the team play on week 8?", "context": "CREATE TABLE table_name_55 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_28 WHERE venue = \"corio oval\"", "question": "What was the average size of the crowd for matches held at Corio Oval?", "context": "CREATE TABLE table_name_28 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_68 WHERE away_team = \"st kilda\"", "question": "What home team played against St Kilda?", "context": "CREATE TABLE table_name_68 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_87 WHERE home_team = \"south melbourne\"", "question": "At what venue was South Melbourne the home team?", "context": "CREATE TABLE table_name_87 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_24 WHERE home_team = \"hawthorn\"", "question": "What was Hawthorn's score when they were the home team?", "context": "CREATE TABLE table_name_24 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_96 WHERE venue = \"lake oval\"", "question": "What was the home team's score when they played at Lake Oval?", "context": "CREATE TABLE table_name_96 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT income_inequality_1994_2011__latest_available_ FROM table_name_91 WHERE population_2011 = \"21,315,135\"", "question": "What is the latest available income inequality for the country with a population of 21,315,135?", "context": "CREATE TABLE table_name_91 (income_inequality_1994_2011__latest_available_ VARCHAR, population_2011 VARCHAR)"}, {"answer": "SELECT ief_2011 FROM table_name_96 WHERE fsi_2012 = \"99.2\"", "question": "What is the IEF 2011 of the country with an FSI 2012 of 99.2?", "context": "CREATE TABLE table_name_96 (ief_2011 VARCHAR, fsi_2012 VARCHAR)"}, {"answer": "SELECT income_inequality_1994_2011__latest_available_ FROM table_name_15 WHERE country = \"seychelles\"", "question": "What is the current income inequality for the country of Seychelles?", "context": "CREATE TABLE table_name_15 (income_inequality_1994_2011__latest_available_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT hdi_2011 FROM table_name_54 WHERE di_2011 = \"7.63\"", "question": "What is the HDI 2011 of the country with a DI 2011 of 7.63?", "context": "CREATE TABLE table_name_54 (hdi_2011 VARCHAR, di_2011 VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE ief_2011 = \"45.3\"", "question": "What country has an IEF 2011 of 45.3?", "context": "CREATE TABLE table_name_46 (country VARCHAR, ief_2011 VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE away_team = \"south melbourne\"", "question": "What date did South Melbourne play as the Away team?", "context": "CREATE TABLE table_name_79 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_95 WHERE home_team = \"essendon\"", "question": "Where did Essendon play as the home team?", "context": "CREATE TABLE table_name_95 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_54 WHERE school_country = \"arkansas\"", "question": "What position does the player from arkansas play?", "context": "CREATE TABLE table_name_54 (position VARCHAR, school_country VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_90 WHERE venue = \"glenferrie oval\"", "question": "Who is the away side at glenferrie oval?", "context": "CREATE TABLE table_name_90 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_3 WHERE home_team = \"richmond\"", "question": "What is the away side's score when richmond is at home?", "context": "CREATE TABLE table_name_3 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_43 WHERE home_team = \"collingwood\"", "question": "What was the crowd size at Collingwood's match?", "context": "CREATE TABLE table_name_43 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_51 WHERE venue = \"arden street oval\"", "question": "What was the crowd size at Arden Street Oval?", "context": "CREATE TABLE table_name_51 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT status_of_match FROM table_name_70 WHERE fixture = \"scotland v northern ireland\"", "question": "What is the status of the match between Scotland v Northern Ireland?", "context": "CREATE TABLE table_name_70 (status_of_match VARCHAR, fixture VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_54 WHERE date = \"august 10, 1956\"", "question": "In what week was the game on August 10, 1956 played?", "context": "CREATE TABLE table_name_54 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_9 WHERE week = 6", "question": "What was the attendance of the game in week 6?", "context": "CREATE TABLE table_name_9 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_10 WHERE date = \"august 24, 1956\" AND attendance > 40 OFFSET 175", "question": "In what week was the game on August 24, 1956 played in front of 40,175 fans?", "context": "CREATE TABLE table_name_10 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT signal_quality FROM table_name_96 WHERE station_call_letters = \"kcal-dt\"", "question": "What signal quality does the KCAL-DT channel have?", "context": "CREATE TABLE table_name_96 (signal_quality VARCHAR, station_call_letters VARCHAR)"}, {"answer": "SELECT original_channel FROM table_name_39 WHERE b_mountain_channel = \"9\"", "question": "What original channel is associated with B Mountain Channel 9?", "context": "CREATE TABLE table_name_39 (original_channel VARCHAR, b_mountain_channel VARCHAR)"}, {"answer": "SELECT b_mountain_channel FROM table_name_75 WHERE station_call_letters = \"k41go\"", "question": "What B Mountain Channel has station call letters of k41go?", "context": "CREATE TABLE table_name_75 (b_mountain_channel VARCHAR, station_call_letters VARCHAR)"}, {"answer": "SELECT laurel_mountain_channel FROM table_name_51 WHERE b_mountain_channel = \"7\"", "question": "What Laurel Mountain Channel is associated with B Mountain Channel of 7?", "context": "CREATE TABLE table_name_51 (laurel_mountain_channel VARCHAR, b_mountain_channel VARCHAR)"}, {"answer": "SELECT translator_call_letters FROM table_name_94 WHERE station_call_letters = \"kcop-dt\"", "question": "What are the translator call letters for station call letters of KCOP-DT?", "context": "CREATE TABLE table_name_94 (translator_call_letters VARCHAR, station_call_letters VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE home_team = \"fitzroy\"", "question": "What date was fitzroy the home team?", "context": "CREATE TABLE table_name_2 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_75 WHERE home_team = \"richmond\"", "question": "What was the score for the away team when the home team was richmond?", "context": "CREATE TABLE table_name_75 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_57 WHERE home_team = \"footscray\"", "question": "What is the venue where the home team is Footscray?", "context": "CREATE TABLE table_name_57 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_96 WHERE date = \"1 june 1929\" AND away_team = \"richmond\"", "question": "What is the venue for the game on 1 June 1929 where Richmond was the away team?", "context": "CREATE TABLE table_name_96 (venue VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT speed FROM table_name_24 WHERE points = 1", "question": "What was the speed of the rider that earned 1 point?", "context": "CREATE TABLE table_name_24 (speed VARCHAR, points VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_22 WHERE venue = \"brunswick street oval\"", "question": "What away team is playing at the Brunswick Street Oval Venue?", "context": "CREATE TABLE table_name_22 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE home_team = \"richmond\"", "question": "What date does the Home team of Richmond have?", "context": "CREATE TABLE table_name_32 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_62 WHERE date = \"20 april 1957\" AND venue = \"victoria park\"", "question": "Who is the home team at Victoria Park on 20 April 1957?", "context": "CREATE TABLE table_name_62 (home_team VARCHAR, date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT municipality FROM table_name_58 WHERE station = \"harmon cove\"", "question": "What municipality is the Harmon Cove station located in?", "context": "CREATE TABLE table_name_58 (municipality VARCHAR, station VARCHAR)"}, {"answer": "SELECT municipality FROM table_name_53 WHERE station = \"benson street\"", "question": "What municipality is the Benson Street station located in?", "context": "CREATE TABLE table_name_53 (municipality VARCHAR, station VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE partner = \"corrado barazzutti\"", "question": "What date shows corrado barazzutti's partner?", "context": "CREATE TABLE table_name_99 (date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE outcome = \"runner-up\" AND opponents_in_the_final = \"tom gullikson butch walts\"", "question": "Which date has the tom gullikson butch walts final, and who was the runner-up?", "context": "CREATE TABLE table_name_74 (date VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_96 WHERE away_team = \"essendon\"", "question": "Who is the home team of the game against Essendon?", "context": "CREATE TABLE table_name_96 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT color_commentator_s_ FROM table_name_70 WHERE network = \"espn\"", "question": "Who is the color commentator for ESPN from 1990 to 1992?", "context": "CREATE TABLE table_name_70 (color_commentator_s_ VARCHAR, network VARCHAR)"}, {"answer": "SELECT sideline_reporter_s_ FROM table_name_8 WHERE year < 1993", "question": "Who was the sideline reporter prior to 1993?", "context": "CREATE TABLE table_name_8 (sideline_reporter_s_ VARCHAR, year INTEGER)"}, {"answer": "SELECT play_by_play FROM table_name_61 WHERE network = \"abc\" AND year > 1998", "question": "Who was the play by play commentator for ABC after 1998?", "context": "CREATE TABLE table_name_61 (play_by_play VARCHAR, network VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_99 WHERE play_by_play = \"al michaels\" AND sideline_reporter_s_ = \"lesley visser and dan fouts\"", "question": "What's the earliest year that Al Michaels was the play-by-play commentator, in which Lesley Visser and Dan Fouts were also sideline reporters?", "context": "CREATE TABLE table_name_99 (year INTEGER, play_by_play VARCHAR, sideline_reporter_s_ VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_61 WHERE color_commentator_s_ = \"frank gifford and dan dierdorf\"", "question": "For how many years combined were Frank Gifford and Dan Dierdorf color commentators?", "context": "CREATE TABLE table_name_61 (year VARCHAR, color_commentator_s_ VARCHAR)"}, {"answer": "SELECT sideline_reporter_s_ FROM table_name_17 WHERE color_commentator_s_ = \"frank gifford and dan dierdorf\"", "question": "Which sideline reporters worked alongside Frank Gifford and Dan Dierdorf?", "context": "CREATE TABLE table_name_17 (sideline_reporter_s_ VARCHAR, color_commentator_s_ VARCHAR)"}, {"answer": "SELECT withdrawn FROM table_name_49 WHERE name = \"lundy\"", "question": "When was the Lundy withdrawn?", "context": "CREATE TABLE table_name_49 (withdrawn VARCHAR, name VARCHAR)"}, {"answer": "SELECT whenbuilt FROM table_name_28 WHERE name = \"fighter command\"", "question": "When was the locomotive named fighter command built?", "context": "CREATE TABLE table_name_28 (whenbuilt VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_42 WHERE rank = \"2\" AND silver < 6", "question": "Which country has a rand of 2 and a silver less than 6?", "context": "CREATE TABLE table_name_42 (total INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_46 WHERE gold = 3 AND silver < 3", "question": "What is the lowest total of medals that has a gold of 3 and a silver less than 3?", "context": "CREATE TABLE table_name_46 (total INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_61 WHERE venue = \"mcg\"", "question": "What was the home team score for the game played at MCG?", "context": "CREATE TABLE table_name_61 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_4 WHERE venue = \"windy hill\"", "question": "For the game played at Windy Hill, who was the away team?", "context": "CREATE TABLE table_name_4 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_7 WHERE away_team = \"north melbourne\"", "question": "For the game where the away team was North Melbourne, what was the venue?", "context": "CREATE TABLE table_name_7 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT weight FROM table_name_45 WHERE name = \"billy miller category:articles with hcards\"", "question": "What is the Weight for the Name Billy Miller Category:Articles with hcards?", "context": "CREATE TABLE table_name_45 (weight VARCHAR, name VARCHAR)"}, {"answer": "SELECT 2012 AS _club FROM table_name_55 WHERE name = \"billy miller category:articles with hcards\"", "question": "What is the 2012 club for the Billy Miller Category:Articles with hcards (Name)?", "context": "CREATE TABLE table_name_55 (name VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_87 WHERE nation = \"china\"", "question": "How many medals did China receive?", "context": "CREATE TABLE table_name_87 (total INTEGER, nation VARCHAR)"}, {"answer": "SELECT AVG(_number_of_candidates) FROM table_name_36 WHERE _percentage_of_popular_vote = \"41.37%\"", "question": "What is the # of candidates that have a popular vote of 41.37%?", "context": "CREATE TABLE table_name_36 (_number_of_candidates INTEGER, _percentage_of_popular_vote VARCHAR)"}, {"answer": "SELECT AVG(_number_of_candidates) FROM table_name_81 WHERE result = \"liberal majority\" AND _number_of_seats_won = 51 AND general_election > 2008", "question": "What is the # of candidates of liberal majority with 51 wins and larger number of 2008 in general elections?", "context": "CREATE TABLE table_name_81 (_number_of_candidates INTEGER, general_election VARCHAR, result VARCHAR, _number_of_seats_won VARCHAR)"}, {"answer": "SELECT COUNT(general_election) FROM table_name_95 WHERE _number_of_seats_won < 23 AND _number_of_candidates > 108", "question": "How many general elections that have won smaller than 23 with candidates larger than 108?", "context": "CREATE TABLE table_name_95 (general_election VARCHAR, _number_of_seats_won VARCHAR, _number_of_candidates VARCHAR)"}, {"answer": "SELECT venue FROM table_name_52 WHERE away_team = \"melbourne\"", "question": "What venue did melbourne play at as the away team?", "context": "CREATE TABLE table_name_52 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_25 WHERE home_team = \"essendon\"", "question": "What was the essendon score when they were at home?", "context": "CREATE TABLE table_name_25 (home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE away_team = \"melbourne\"", "question": "What venue did melbourne play at as the away team?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT years FROM table_name_24 WHERE goals = 82", "question": "What Years have a Goal of 82?", "context": "CREATE TABLE table_name_24 (years VARCHAR, goals VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_26 WHERE position = \"safety\" AND round > 1", "question": "What is the total of overall values with a safety position in a round greater than 1?", "context": "CREATE TABLE table_name_26 (overall VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_32 WHERE round < 4 AND college = \"georgia\"", "question": "What is the average overall value for a round less than 4 associated with the College of Georgia?", "context": "CREATE TABLE table_name_32 (overall INTEGER, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_58 WHERE week > 16", "question": "What was the average attendance in weeks after 16?", "context": "CREATE TABLE table_name_58 (attendance INTEGER, week INTEGER)"}, {"answer": "SELECT MAX(killed) FROM table_name_48 WHERE incident_no = \"14\"", "question": "What is the highest number killed in incident #14?", "context": "CREATE TABLE table_name_48 (killed INTEGER, incident_no VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_85 WHERE venue = \"arden street oval\"", "question": "What was the largest crowd at Arden Street Oval?", "context": "CREATE TABLE table_name_85 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_50 WHERE venue = \"arden street oval\"", "question": "What was the home teams score at Arden Street Oval?", "context": "CREATE TABLE table_name_50 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_13 WHERE total > 44", "question": "What was the gold medal total for a total of 44 medals?", "context": "CREATE TABLE table_name_13 (gold INTEGER, total INTEGER)"}, {"answer": "SELECT AVG(silver) FROM table_name_49 WHERE total < 3 AND rank > 9", "question": "How many silver medals were won with a total medal of 3 and a rank above 9?", "context": "CREATE TABLE table_name_49 (silver INTEGER, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_74 WHERE attendance > 68 OFFSET 000", "question": "How many weeks had an attendance of over 68,000?", "context": "CREATE TABLE table_name_74 (week VARCHAR, attendance INTEGER)"}, {"answer": "SELECT engine FROM table_name_82 WHERE finish = \"2nd\"", "question": "What engine was used by the team the finished 2nd?", "context": "CREATE TABLE table_name_82 (engine VARCHAR, finish VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_70 WHERE engine = \"chevrolet\" AND year = 1991", "question": "What chassis was used with the Chevrolet engine in 1991?", "context": "CREATE TABLE table_name_70 (chassis VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_35 WHERE start = \"1st\" AND chassis = \"g-force\"", "question": "What was the most recent year when a g-force chassis started in 1st?", "context": "CREATE TABLE table_name_35 (year INTEGER, start VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT start FROM table_name_33 WHERE year < 1986", "question": "What was the starting position in the year before 1986?", "context": "CREATE TABLE table_name_33 (start VARCHAR, year INTEGER)"}, {"answer": "SELECT vessel_name FROM table_name_56 WHERE flag = \"malta\" AND type = \"panamax\" AND class = \"gl\" AND built > 2010", "question": "What is the name of the Malta vessel built after 2010 that is a GL class Panamax vessel?", "context": "CREATE TABLE table_name_56 (vessel_name VARCHAR, built VARCHAR, class VARCHAR, flag VARCHAR, type VARCHAR)"}, {"answer": "SELECT SUM(built) FROM table_name_54 WHERE class = \"dnv\" AND type = \"panamax\" AND vessel_name = \"deva\"", "question": "Which year was the vessel Deva built as a Panamax DNV class ship?", "context": "CREATE TABLE table_name_54 (built INTEGER, vessel_name VARCHAR, class VARCHAR, type VARCHAR)"}, {"answer": "SELECT class FROM table_name_85 WHERE vessel_name = \"hyundai smart\"", "question": "What is the class of vessel of the ship Hyundai Smart?", "context": "CREATE TABLE table_name_85 (class VARCHAR, vessel_name VARCHAR)"}, {"answer": "SELECT class FROM table_name_77 WHERE vessel_name = \"hyundai tenacity\"", "question": "In which class would the vessel Hyundai Tenacity be placed?", "context": "CREATE TABLE table_name_77 (class VARCHAR, vessel_name VARCHAR)"}, {"answer": "SELECT result FROM table_name_29 WHERE week = 14", "question": "What was the result for week 14?", "context": "CREATE TABLE table_name_29 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_10 WHERE reb_avg > 9 AND total_rebounds = 920 AND games > 79", "question": "Which lowest rank(player) has a rebound average larger than 9, out of 920 rebounds, and who played more than 79 games?", "context": "CREATE TABLE table_name_10 (rank INTEGER, games VARCHAR, reb_avg VARCHAR, total_rebounds VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_27 WHERE reb_avg < 6.1", "question": "How many ranks have a rebound average smaller than 6.1?", "context": "CREATE TABLE table_name_27 (rank VARCHAR, reb_avg INTEGER)"}, {"answer": "SELECT player FROM table_name_15 WHERE overall < 374 AND school_club_team = \"stephen f. austin\"", "question": "Which player was drafted higher than 374 and went to the school Stephen F. Austin?", "context": "CREATE TABLE table_name_15 (player VARCHAR, overall VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_89 WHERE school_club_team = \"trinity\" AND overall < 21", "question": "What is the lowest round Trinity school was drafted with an overall higher than 21?", "context": "CREATE TABLE table_name_89 (round INTEGER, school_club_team VARCHAR, overall VARCHAR)"}, {"answer": "SELECT swimmer FROM table_name_41 WHERE time = \"7:52.04\"", "question": "Who got the time of 7:52.04?", "context": "CREATE TABLE table_name_41 (swimmer VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_32 WHERE box_scores = \"bye\"", "question": "Which of the opponents has bye as their box score?", "context": "CREATE TABLE table_name_32 (opponent VARCHAR, box_scores VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_21 WHERE opponent = \"pittsburgh steelers\"", "question": "How many people attended the game against the pittsburgh steelers?", "context": "CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_51 WHERE box_scores = \"box\" AND date = \"september 25\"", "question": "What was the result of the game on September 25 with a box score of box?", "context": "CREATE TABLE table_name_51 (result VARCHAR, box_scores VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE week > 13 AND attendance = \"41,862\"", "question": "What is the date of the game later than week 13 and 41,862 people attended?", "context": "CREATE TABLE table_name_62 (date VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(caps) FROM table_name_83 WHERE goals < 9 AND rank > 8", "question": "What is the sum of caps for players with less than 9 goals ranked below 8?", "context": "CREATE TABLE table_name_83 (caps INTEGER, goals VARCHAR, rank VARCHAR)"}, {"answer": "SELECT senior_status FROM table_name_53 WHERE active_service = \"1972\u20131995\"", "question": "What were the years of senior status for active service in 1972\u20131995?", "context": "CREATE TABLE table_name_53 (senior_status VARCHAR, active_service VARCHAR)"}, {"answer": "SELECT born_died FROM table_name_54 WHERE active_service = \"1972\u20131995\"", "question": "What were the birth and death years when active service was 1972\u20131995?", "context": "CREATE TABLE table_name_54 (born_died VARCHAR, active_service VARCHAR)"}, {"answer": "SELECT active_service FROM table_name_72 WHERE reason_for_termination = \"death\" AND senior_status = \"1972\u20132005\"", "question": "Which active services years ended in death and had senior status in 1972\u20132005?", "context": "CREATE TABLE table_name_72 (active_service VARCHAR, reason_for_termination VARCHAR, senior_status VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE opponent = \"boston patriots\"", "question": "Which date featured the Boston Patriots as the opponent?", "context": "CREATE TABLE table_name_96 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_67 WHERE week = 8", "question": "Who was the opponent during week 8?", "context": "CREATE TABLE table_name_67 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_76 WHERE week < 8 AND attendance = \"12,508\"", "question": "What opponent had an attendance of 12,508 during weeks 1 through 8?", "context": "CREATE TABLE table_name_76 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_25 WHERE attendance = \"14,381\"", "question": "What week had an attendance of 14,381?", "context": "CREATE TABLE table_name_25 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_43 WHERE player = \"dave yovanovits\"", "question": "Which round was Dave Yovanovits picked?", "context": "CREATE TABLE table_name_43 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_6 WHERE position = \"linebacker\"", "question": "Where did the player picked for the linebacker position play in college?", "context": "CREATE TABLE table_name_6 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_91 WHERE week = 12", "question": "Who did the Browns play week 12?", "context": "CREATE TABLE table_name_91 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_15 WHERE opponent = \"detroit lions\"", "question": "What was the attendance in the game against the Detroit Lions?", "context": "CREATE TABLE table_name_15 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_73 WHERE venue = \"brunswick street oval\"", "question": "Who played as the away team when they played at Brunswick Street Oval?", "context": "CREATE TABLE table_name_73 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_6 WHERE venue = \"arden street oval\"", "question": "Who was the home team when the VFL played Arden Street Oval?", "context": "CREATE TABLE table_name_6 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_1 WHERE venue = \"junction oval\"", "question": "Who is the away side at junction oval?", "context": "CREATE TABLE table_name_1 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_78 WHERE name = \"kraco car stereo 150\"", "question": "Who was the winning driver of the Kraco Car Stereo 150?", "context": "CREATE TABLE table_name_78 (winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_74 WHERE name = \"stoh's 200\"", "question": "What time was the fastest lap during Stoh's 200 in 1982?", "context": "CREATE TABLE table_name_74 (fastest_lap VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE d\u00e9but > 1972 AND opposition = \"limerick\"", "question": "What is the date for the player who debuted later than 1972 against Limerick?", "context": "CREATE TABLE table_name_32 (date VARCHAR, d\u00e9but VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT player FROM table_name_18 WHERE opposition = \"limerick\" AND last_game = \"munster semi-final\" AND d\u00e9but = 1973", "question": "Which player debuted in 1973 against Limerick and played his last game at the Munster semi-final?", "context": "CREATE TABLE table_name_18 (player VARCHAR, d\u00e9but VARCHAR, opposition VARCHAR, last_game VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE week > 7 AND result = \"l 23\u201317\"", "question": "What date had a Result of l 23\u201317 in a week later than 7?", "context": "CREATE TABLE table_name_78 (date VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_15 WHERE opponent = \"cincinnati bengals\"", "question": "How many people attended the game against the cincinnati bengals?", "context": "CREATE TABLE table_name_15 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_76 WHERE time = \"3:31\"", "question": "What was the attendance for the game played at 3:31?", "context": "CREATE TABLE table_name_76 (attendance VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_56 WHERE game = 4", "question": "What was the time for game 4?", "context": "CREATE TABLE table_name_56 (time VARCHAR, game VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_14 WHERE venue = \"western oval\"", "question": "What was the away team's score at western oval?", "context": "CREATE TABLE table_name_14 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_10 WHERE points = \"48\" AND year < 2007", "question": "Before 2007, how many wins were there when the point total was 48?", "context": "CREATE TABLE table_name_10 (wins INTEGER, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_2 WHERE year = 2011 AND drivers = \"michael meadows\"", "question": "In 2011, how many wins did Michael Meadows have?", "context": "CREATE TABLE table_name_2 (wins INTEGER, year VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT service FROM table_name_22 WHERE origin_of_programming = \"india\" AND network = \"set max\"", "question": "What is the service of the network Set Max from India?", "context": "CREATE TABLE table_name_22 (service VARCHAR, origin_of_programming VARCHAR, network VARCHAR)"}, {"answer": "SELECT network FROM table_name_8 WHERE genre = \"music\"", "question": "Which network's genre is music?", "context": "CREATE TABLE table_name_8 (network VARCHAR, genre VARCHAR)"}, {"answer": "SELECT genre FROM table_name_50 WHERE origin_of_programming = \"india\" AND network = \"star plus\"", "question": "What genre is Star Plus from India?", "context": "CREATE TABLE table_name_50 (genre VARCHAR, origin_of_programming VARCHAR, network VARCHAR)"}, {"answer": "SELECT origin_of_programming FROM table_name_25 WHERE genre = \"cricket\" AND network = \"star cricket\"", "question": "Where does the network Star Cricket originate?", "context": "CREATE TABLE table_name_25 (origin_of_programming VARCHAR, genre VARCHAR, network VARCHAR)"}, {"answer": "SELECT genre FROM table_name_85 WHERE language = \"hindi\" AND network = \"set max\"", "question": "What genre is Set Max's Hindi programming?", "context": "CREATE TABLE table_name_85 (genre VARCHAR, language VARCHAR, network VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_49 WHERE home_team = \"fitzroy\"", "question": "What is fitzroy's score as the home team?", "context": "CREATE TABLE table_name_49 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_93 WHERE home_team = \"richmond\"", "question": "What is richmond's score as the home team?", "context": "CREATE TABLE table_name_93 (home_team VARCHAR)"}, {"answer": "SELECT color_commentator_s_ FROM table_name_42 WHERE sideline_reporter_s_ = \"eric dickerson and melissa stark\" AND year = 2001", "question": "Who was the color commentator for Eric Dickerson and Melissa Stark in 2001?", "context": "CREATE TABLE table_name_42 (color_commentator_s_ VARCHAR, sideline_reporter_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT network FROM table_name_71 WHERE play_by_play = \"al michaels\" AND color_commentator_s_ = \"dan fouts and dennis miller\" AND year < 2002", "question": "What network hosted Al Michaels, Dan Fouts and Dennis Miller in 2002?", "context": "CREATE TABLE table_name_71 (network VARCHAR, year VARCHAR, play_by_play VARCHAR, color_commentator_s_ VARCHAR)"}, {"answer": "SELECT color_commentator_s_ FROM table_name_82 WHERE year = 2004", "question": "Who was the 2004 color commentator?", "context": "CREATE TABLE table_name_82 (color_commentator_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT color_commentator_s_ FROM table_name_22 WHERE sideline_reporter_s_ = \"andrea kremer and tiki barber\"", "question": "Who was the color commentator for Andrea Kremer and Tiki Barber?", "context": "CREATE TABLE table_name_22 (color_commentator_s_ VARCHAR, sideline_reporter_s_ VARCHAR)"}, {"answer": "SELECT color_commentator_s_ FROM table_name_69 WHERE play_by_play = \"al michaels\" AND year > 2003", "question": "Who was Al Michaels' color commentator in 2003?", "context": "CREATE TABLE table_name_69 (color_commentator_s_ VARCHAR, play_by_play VARCHAR, year VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_76 WHERE away_team = \"geelong\"", "question": "Who was the home team when Geelong was the away team?", "context": "CREATE TABLE table_name_76 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_8 WHERE college = \"southern mississippi\" AND round < 6", "question": "What is the highest overall pick from the College of Southern Mississippi that was selected before round 6?", "context": "CREATE TABLE table_name_8 (overall INTEGER, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT coach FROM table_name_2 WHERE actual_adjusted_record = \"0\u201319\"", "question": "Who, was the coach with an actual adjusted record of 0\u201319?", "context": "CREATE TABLE table_name_2 (coach VARCHAR, actual_adjusted_record VARCHAR)"}, {"answer": "SELECT AVG(season) FROM table_name_45 WHERE coach = \"fisher\" AND actual_adjusted_record = \"0\u201311\"", "question": "What is the average Season for coach Fisher, and an actual adjusted record of 0\u201311?", "context": "CREATE TABLE table_name_45 (season INTEGER, coach VARCHAR, actual_adjusted_record VARCHAR)"}, {"answer": "SELECT regular_season_vacated FROM table_name_14 WHERE record_as_played = \"12\u201319\"", "question": "What is the regular season vacated for the Record as played of 12\u201319?", "context": "CREATE TABLE table_name_14 (regular_season_vacated VARCHAR, record_as_played VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_5 WHERE coach = \"steve fisher\"", "question": "How many seasons did coach steve fisher have?", "context": "CREATE TABLE table_name_5 (season VARCHAR, coach VARCHAR)"}, {"answer": "SELECT record_as_played FROM table_name_19 WHERE regular_season_vacated = \"24\u20130\" AND season > 1997", "question": "What is shown for Record as played with a Regular season Vacated of 24\u20130 later than 1997?", "context": "CREATE TABLE table_name_19 (record_as_played VARCHAR, regular_season_vacated VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_13 WHERE actual_adjusted_record = \"0\u201319\"", "question": "How many seasons have an Actual adjusted record of 0\u201319?", "context": "CREATE TABLE table_name_13 (season VARCHAR, actual_adjusted_record VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_26 WHERE total = 14 AND bronze > 6", "question": "How many gold(s) for teams with a total of 14, and over 6 bronze medals?", "context": "CREATE TABLE table_name_26 (gold INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_19 WHERE rank = \"7\" AND bronze < 3", "question": "What is the highest number of gold medals for the team ranked 7 with less than 3 bronze?", "context": "CREATE TABLE table_name_19 (gold INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_51 WHERE silver < 2 AND nation = \"uzbekistan\" AND bronze < 4", "question": "What is the average number of golds for nations with less than 2 silver, named uzbekistan, and less than 4 bronze?", "context": "CREATE TABLE table_name_51 (gold INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_39 WHERE venue = \"punt road oval\"", "question": "What was the away team for the match at Punt Road Oval?", "context": "CREATE TABLE table_name_39 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_84 WHERE venue = \"junction oval\"", "question": "What was the smallest crowd size for the match played at Junction Oval?", "context": "CREATE TABLE table_name_84 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_73 WHERE away_team = \"collingwood\"", "question": "What was the home team that played Collingwood?", "context": "CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT province FROM table_name_39 WHERE name = \"michael kirby\"", "question": "Which province has Michael Kirby?", "context": "CREATE TABLE table_name_39 (province VARCHAR, name VARCHAR)"}, {"answer": "SELECT party FROM table_name_94 WHERE name = \"madeleine plamondon\"", "question": "Which party is Madeleine Plamondon a member of?", "context": "CREATE TABLE table_name_94 (party VARCHAR, name VARCHAR)"}, {"answer": "SELECT details FROM table_name_55 WHERE name = \"marisa ferretti barth\"", "question": "What are the details for Marisa Ferretti Barth?", "context": "CREATE TABLE table_name_55 (details VARCHAR, name VARCHAR)"}, {"answer": "SELECT party FROM table_name_95 WHERE date = \"august 26, 2008\"", "question": "Which party had a member on August 26, 2008?", "context": "CREATE TABLE table_name_95 (party VARCHAR, date VARCHAR)"}, {"answer": "SELECT details FROM table_name_71 WHERE name = \"john buchanan\"", "question": "What are the details for John Buchanan?", "context": "CREATE TABLE table_name_71 (details VARCHAR, name VARCHAR)"}, {"answer": "SELECT province FROM table_name_38 WHERE party = \"liberal\" AND date = \"december 31, 2006\"", "question": "Which province had a liberal party member on December 31, 2006?", "context": "CREATE TABLE table_name_38 (province VARCHAR, party VARCHAR, date VARCHAR)"}, {"answer": "SELECT dance_styles FROM table_name_54 WHERE draw < 15 AND points = 18", "question": "Which dance style had a draw smaller than 15 and 18 points?", "context": "CREATE TABLE table_name_54 (dance_styles VARCHAR, draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_89 WHERE venue = \"victoria park\"", "question": "What was the away team's score for the match played at Victoria Park?", "context": "CREATE TABLE table_name_89 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE home_team = \"collingwood\"", "question": "What is Collingwood's home venue?", "context": "CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_19 WHERE home_team = \"carlton\"", "question": "What was the away teams score when they played Carlton?", "context": "CREATE TABLE table_name_19 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_47 WHERE player = \"candace parker\"", "question": "What is the latest year featuring candace parker?", "context": "CREATE TABLE table_name_47 (year INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_94 WHERE home_team = \"north melbourne\"", "question": "What is the largest crowd when north melbourne is the home side?", "context": "CREATE TABLE table_name_94 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_22 WHERE venue = \"victoria park\"", "question": "What is the smallest crowd at victoria park?", "context": "CREATE TABLE table_name_22 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE away_team = \"geelong\"", "question": "What day was geelong the away side?", "context": "CREATE TABLE table_name_96 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_17 WHERE city = \"brisbane\"", "question": "What is the name of the stadium in Brisbane?", "context": "CREATE TABLE table_name_17 (stadium VARCHAR, city VARCHAR)"}, {"answer": "SELECT result FROM table_name_92 WHERE score = \"58-6\"", "question": "What was the result of the match that had a score of 58-6?", "context": "CREATE TABLE table_name_92 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE result = \"hunter mariners def. castleford tigers\"", "question": "What was the score for the match that had the result of Hunter Mariners def. Castleford Tigers?", "context": "CREATE TABLE table_name_12 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_92 WHERE score = \"66-20\"", "question": "For the match ending in a score of 66-20, what was the stadium?", "context": "CREATE TABLE table_name_92 (stadium VARCHAR, score VARCHAR)"}, {"answer": "SELECT city FROM table_name_61 WHERE stadium = \"don valley stadium\"", "question": "In what city is the Don Valley Stadium located?", "context": "CREATE TABLE table_name_61 (city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT meet FROM table_name_22 WHERE event = \"100m backstroke\"", "question": "Which championship was the 100m backstroke performed?", "context": "CREATE TABLE table_name_22 (meet VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_62 WHERE time = \"7:45.67\"", "question": "What event has a time of 7:45.67?", "context": "CREATE TABLE table_name_62 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_32 WHERE year > 2009 AND position = \"power forward\"", "question": "What nationality has a year larger than 2009 with a position of power forward?", "context": "CREATE TABLE table_name_32 (nationality VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_92 WHERE team = \"chicago bulls\"", "question": "Who plays for the chicago bulls?", "context": "CREATE TABLE table_name_92 (player VARCHAR, team VARCHAR)"}, {"answer": "SELECT main_places FROM table_name_91 WHERE regions = \"streymoy\" AND area > 6.1", "question": "What are the main places for the streymoy region with an area of larger than 6.1?", "context": "CREATE TABLE table_name_91 (main_places VARCHAR, regions VARCHAR, area VARCHAR)"}, {"answer": "SELECT SUM(people_per_km\u00b2) FROM table_name_41 WHERE regions = \"sandoy\" AND area = 112.1", "question": "What is the sum of people per km2 for the sandoy region with an area of 112.1?", "context": "CREATE TABLE table_name_41 (people_per_km\u00b2 INTEGER, regions VARCHAR, area VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_62 WHERE attendance = 41 OFFSET 604", "question": "what is the week there were 41,604 people in attendance?", "context": "CREATE TABLE table_name_62 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_8 WHERE home_team = \"hawthorn\"", "question": "What is the average crowd size for games with hawthorn as the home side?", "context": "CREATE TABLE table_name_8 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_66 WHERE venue = \"glenferrie oval\"", "question": "What is the home team's score at glenferrie oval?", "context": "CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(best) FROM table_name_13 WHERE qual_2 = \"49.887\"", "question": "Who had the lowest Best time that also had a Qual 2 of 49.887?", "context": "CREATE TABLE table_name_13 (best INTEGER, qual_2 VARCHAR)"}, {"answer": "SELECT best FROM table_name_77 WHERE team = \"cte racing-hvm\" AND qual_2 = \"50.312\"", "question": "What was CTE Racing-hvm's Best with a Qual 2 of 50.312?", "context": "CREATE TABLE table_name_77 (best VARCHAR, team VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_51 WHERE away_team = \"essendon\"", "question": "What was the home team score when essendon was the away team?", "context": "CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_37 WHERE away_team = \"richmond\"", "question": "When richmond was the Away team what was the score of the home team?", "context": "CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT service FROM table_name_74 WHERE network = \"atn urdu\"", "question": "Which service does the network of atn urdu offer?", "context": "CREATE TABLE table_name_74 (service VARCHAR, network VARCHAR)"}, {"answer": "SELECT origin_of_programming FROM table_name_12 WHERE genre = \"general\" AND network = \"ntv bangla\" AND service = \"cogeco cable\"", "question": "Whose origin of Programming offers a general genre, a network of ntv bangla and a service of cogeco cable?", "context": "CREATE TABLE table_name_12 (origin_of_programming VARCHAR, service VARCHAR, genre VARCHAR, network VARCHAR)"}, {"answer": "SELECT service FROM table_name_95 WHERE language = \"hindi\" AND genre = \"general\" AND network = \"zee tv\"", "question": "Which service has a hindi language, general genre and zee tv network?", "context": "CREATE TABLE table_name_95 (service VARCHAR, network VARCHAR, language VARCHAR, genre VARCHAR)"}, {"answer": "SELECT network FROM table_name_9 WHERE origin_of_programming = \"india\" AND genre = \"general\" AND service = \"bell fibe tv\" AND language = \"tamil\"", "question": "Which network has an origina of Programming in India, a general genre, a service of bell fibe tv, and tamil as its language?", "context": "CREATE TABLE table_name_9 (network VARCHAR, language VARCHAR, service VARCHAR, origin_of_programming VARCHAR, genre VARCHAR)"}, {"answer": "SELECT language FROM table_name_80 WHERE origin_of_programming = \"india\" AND genre = \"general\" AND network = \"ptc punjabi\" AND service = \"bell fibe tv\"", "question": "Which language has Programming from India, general genre, a network of ptc punjabi and bell fibe tv service?", "context": "CREATE TABLE table_name_80 (language VARCHAR, service VARCHAR, network VARCHAR, origin_of_programming VARCHAR, genre VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_94 WHERE rank < 11 AND nation = \"trinidad and tobago\" AND total < 1", "question": "What is the average number of bronzes when the rank is below 11 for trinidad and tobago with less than 1 total medal?", "context": "CREATE TABLE table_name_94 (bronze INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_86 WHERE silver = 1 AND bronze < 2 AND total = 1 AND rank < 10", "question": "What is the sum of gold medal totals for nations with 1 silver, less than 2 bronze, and ranked below 10?", "context": "CREATE TABLE table_name_86 (gold INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT allegiance FROM table_name_28 WHERE name = \"winfield scott\"", "question": "Who did Winfield Scott have an allegiance with?", "context": "CREATE TABLE table_name_28 (allegiance VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(2013 AS _population__july_est_) FROM table_name_10 WHERE population_density___km_2__ > 14.1", "question": "What was the July 2013 population estimate of the location which had a population density larger than 14.1?", "context": "CREATE TABLE table_name_10 (population_density___km_2__ INTEGER)"}, {"answer": "SELECT MAX(rank) FROM table_name_45 WHERE population_density___km_2__ > 5.7 AND _percentage_growth__2006_11_ = \"5.7%\"", "question": "What was the highest rank of an area with a population density larger than 5.7 and a 2006\u20132011 percentage growth of 5.7%?", "context": "CREATE TABLE table_name_45 (rank INTEGER, population_density___km_2__ VARCHAR, _percentage_growth__2006_11_ VARCHAR)"}, {"answer": "SELECT MIN(population___2011_census__) FROM table_name_38 WHERE land_area__km\u00b2_ > 908 OFFSET 607.67", "question": "What was the lowest 2011 Census population of an area with a land area larger than 908,607.67 km\u00b2?", "context": "CREATE TABLE table_name_38 (population___2011_census__ INTEGER, land_area__km\u00b2_ INTEGER)"}, {"answer": "SELECT rider FROM table_name_78 WHERE speed = \"86.15mph\"", "question": "Which rider from the 1971 Isle of Man Junior TT 250cc final standings had a speed equal to 86.15mph?", "context": "CREATE TABLE table_name_78 (rider VARCHAR, speed VARCHAR)"}, {"answer": "SELECT rider FROM table_name_60 WHERE points = 10", "question": "Which rider had a points score equal to 10?", "context": "CREATE TABLE table_name_60 (rider VARCHAR, points VARCHAR)"}, {"answer": "SELECT start FROM table_name_54 WHERE conv = \"0\" AND pens = \"0\" AND tries = \"8\"", "question": "Which Start has a 0 Conv, 0 Pens and 8 Tries?", "context": "CREATE TABLE table_name_54 (start VARCHAR, tries VARCHAR, conv VARCHAR, pens VARCHAR)"}, {"answer": "SELECT player FROM table_name_42 WHERE pens = \"0\" AND start = \"12\"", "question": "Which Player has 0 Pens and 12 Starts?", "context": "CREATE TABLE table_name_42 (player VARCHAR, pens VARCHAR, start VARCHAR)"}, {"answer": "SELECT start FROM table_name_58 WHERE tries = \"8\" AND conv = \"0\"", "question": "Which Start has 8 Tries and 0 Convs?", "context": "CREATE TABLE table_name_58 (start VARCHAR, tries VARCHAR, conv VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_47 WHERE venue = \"victoria park\"", "question": "Who was the away team for the game at Victoria Park?", "context": "CREATE TABLE table_name_47 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_72 WHERE round = 7", "question": "What was round 7's lowest overall?", "context": "CREATE TABLE table_name_72 (overall INTEGER, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_51 WHERE overall < 22", "question": "Who had the smallest overall under 22?", "context": "CREATE TABLE table_name_51 (player VARCHAR, overall INTEGER)"}, {"answer": "SELECT position FROM table_name_77 WHERE overall > 22 AND school_club_team = \"cal state-los angeles\"", "question": "What was Cal State-Los Angeles' position with an Overall above 22?", "context": "CREATE TABLE table_name_77 (position VARCHAR, overall VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_47 WHERE school_club_team = \"memphis state\"", "question": "Who played for Memphis State?", "context": "CREATE TABLE table_name_47 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_26 WHERE away_team = \"st kilda\"", "question": "What is the largest crowd for the St Kilda as the away team?", "context": "CREATE TABLE table_name_26 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_98 WHERE home_team = \"essendon\"", "question": "What was the crowd size when Essendon was the home team?", "context": "CREATE TABLE table_name_98 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_68 WHERE crowd > 20 OFFSET 000", "question": "Which venue had a crowd larger than 20,000?", "context": "CREATE TABLE table_name_68 (venue VARCHAR, crowd INTEGER)"}, {"answer": "SELECT away_team FROM table_name_50 WHERE venue = \"lake oval\"", "question": "Which away team played at Lake Oval?", "context": "CREATE TABLE table_name_50 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_28 WHERE venue = \"glenferrie oval\"", "question": "What is the total number of the crowd at Glenferrie Oval?", "context": "CREATE TABLE table_name_28 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE venue = \"western oval\"", "question": "The Western Oval venue has what date?", "context": "CREATE TABLE table_name_37 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT kickoff FROM table_name_81 WHERE opponent = \"miami dolphins\"", "question": "What is the kickoff time for the Miami Dolphins?", "context": "CREATE TABLE table_name_81 (kickoff VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_66 WHERE opponent = \"new england patriots\"", "question": "What was the final of the New England Patriots game?", "context": "CREATE TABLE table_name_66 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_75 WHERE date = \"august 10, 1963\" AND week > 1", "question": "What is the largest attendance on august 10, 1963, and a week larger than 1?", "context": "CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_79 WHERE home_team = \"south melbourne\"", "question": "What was the score of the away team when the home team was south melbourne?", "context": "CREATE TABLE table_name_79 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_57 WHERE venue = \"princes park\"", "question": "What is the smallest crowd at princes park?", "context": "CREATE TABLE table_name_57 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_53 WHERE silver = 15 AND total < 47", "question": "What is the highest ranked nation with 15 silver medals and no more than 47 total?", "context": "CREATE TABLE table_name_53 (rank INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(rank_by_average) FROM table_name_27 WHERE average = 25.3 AND number_of_dances > 10", "question": "What was the highest rank by average of a couple who had an average of 25.3 and had more than 10 dances?", "context": "CREATE TABLE table_name_27 (rank_by_average INTEGER, average VARCHAR, number_of_dances VARCHAR)"}, {"answer": "SELECT example FROM table_name_56 WHERE type = \"associative\"", "question": "What is the example with the associative type?", "context": "CREATE TABLE table_name_56 (example VARCHAR, type VARCHAR)"}, {"answer": "SELECT suffix FROM table_name_21 WHERE valency_change = \"0\" AND type = \"intensive\"", "question": "What is the Suffix of the intensive and valency change of 0?", "context": "CREATE TABLE table_name_21 (suffix VARCHAR, valency_change VARCHAR, type VARCHAR)"}, {"answer": "SELECT valency_change FROM table_name_1 WHERE type = \"associative\"", "question": "WHat is the Valency change of associative type?", "context": "CREATE TABLE table_name_1 (valency_change VARCHAR, type VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_66 WHERE away_team = \"hawthorn\"", "question": "Who is the home team when hawthorn is the away side?", "context": "CREATE TABLE table_name_66 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_29 WHERE venue = \"windy hill\"", "question": "What was the away team that played at Windy Hill?", "context": "CREATE TABLE table_name_29 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_3 WHERE crowd > 30 OFFSET 000", "question": "What was the away team at the match where the crowd was larger than 30,000?", "context": "CREATE TABLE table_name_3 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT MIN(crowd) FROM table_name_44 WHERE away_team = \"richmond\"", "question": "What is the smallest crowd when richmond is away?", "context": "CREATE TABLE table_name_44 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_48 WHERE home_team = \"melbourne\"", "question": "What is melbourne's home team score?", "context": "CREATE TABLE table_name_48 (home_team VARCHAR)"}, {"answer": "SELECT color_commentator_s_ FROM table_name_16 WHERE year = 2008", "question": "Who is the color commentator in 2008?", "context": "CREATE TABLE table_name_16 (color_commentator_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT member FROM table_name_6 WHERE party = \"national\" AND electorate = \"hinkler\"", "question": "Which member of the National Party is from the Hinkler electorate?", "context": "CREATE TABLE table_name_6 (member VARCHAR, party VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT member FROM table_name_74 WHERE state = \"sa\" AND electorate = \"grey\"", "question": "Which member is from the state of SA and the grey electorate?", "context": "CREATE TABLE table_name_74 (member VARCHAR, state VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT state FROM table_name_39 WHERE electorate = \"petrie\"", "question": "In which state is the Petrie electorate?", "context": "CREATE TABLE table_name_39 (state VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_68 WHERE position = \"tight end\" AND overall > 21", "question": "What round was the draft pick of tight end with an Overall larger than 21?", "context": "CREATE TABLE table_name_68 (round VARCHAR, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT player FROM table_name_77 WHERE position = \"wide receiver\" AND round = 7", "question": "Which player is a wide receiver picked in round 7?", "context": "CREATE TABLE table_name_77 (player VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_3 WHERE position = \"running back\"", "question": "What is the name of the running back pick?", "context": "CREATE TABLE table_name_3 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE venue = \"victoria park\"", "question": "When did the VFL pay at Victoria Park?", "context": "CREATE TABLE table_name_17 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE away_team = \"south melbourne\"", "question": "When did South Melbourne play as the away team?", "context": "CREATE TABLE table_name_45 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_9 WHERE home_team = \"essendon\"", "question": "What was home team Essendon's opponents score?", "context": "CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT year FROM table_name_2 WHERE title = \"the love eterne\"", "question": "When was The Love Eterne released?", "context": "CREATE TABLE table_name_2 (year VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_18 WHERE lane = 5 AND rank > 110 AND nationality = \"honduras\"", "question": "How many heats had 5 lanes and a rank less than 110 for the nationality of Honduras?", "context": "CREATE TABLE table_name_18 (heat VARCHAR, nationality VARCHAR, lane VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_48 WHERE lane = 2 AND rank > 75 AND nationality = \"madagascar\"", "question": "How many heats had 2 lanes, a rank above 75, and nationality of Madagascar?", "context": "CREATE TABLE table_name_48 (heat VARCHAR, nationality VARCHAR, lane VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(heat) FROM table_name_13 WHERE nationality = \"macedonia\" AND rank < 114", "question": "What is the sum of every heat for the nationality of Macedonia with a rank less than 114?", "context": "CREATE TABLE table_name_13 (heat INTEGER, nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(heat) FROM table_name_88 WHERE nationality = \"germany\" AND lane > 8", "question": "What was the least number of heats with more than 8 lanes for the Nationality of Germany?", "context": "CREATE TABLE table_name_88 (heat INTEGER, nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_11 WHERE venue = \"victoria park\"", "question": "When the VFL played Victoria Park what was the home team score?", "context": "CREATE TABLE table_name_11 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT driver FROM table_name_65 WHERE points > 19 AND grid > 2", "question": "What driver has over 19 points and a grid of over 2?", "context": "CREATE TABLE table_name_65 (driver VARCHAR, points VARCHAR, grid VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_4 WHERE home_team = \"geelong\"", "question": "What was the score for the away team when geelong was the home team?", "context": "CREATE TABLE table_name_4 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_8 WHERE away_team = \"footscray\"", "question": "What was the score of the home team when they played footscray?", "context": "CREATE TABLE table_name_8 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_45 WHERE home_team = \"essendon\"", "question": "What was the score for the home team of essendon?", "context": "CREATE TABLE table_name_45 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_31 WHERE home_team = \"essendon\"", "question": "What was the score for the Essendon home team?", "context": "CREATE TABLE table_name_31 (home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_56 WHERE home_team = \"richmond\"", "question": "What was the smallest crowd for the Richmond home team?", "context": "CREATE TABLE table_name_56 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_75 WHERE venue = \"brunswick street oval\"", "question": "What was the largest crowd at the Brunswick Street Oval?", "context": "CREATE TABLE table_name_75 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_16 WHERE venue = \"windy hill\"", "question": "Who was the home team when VFL played at Windy Hill?", "context": "CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_82 WHERE venue = \"glenferrie oval\"", "question": "What was the attendance when the VFL played Glenferrie Oval?", "context": "CREATE TABLE table_name_82 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_77 WHERE away_team = \"north melbourne\"", "question": "What was the attendance when North Melbourne was the away team?", "context": "CREATE TABLE table_name_77 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE home_team = \"essendon\"", "question": "When did Essendon play as the home team?", "context": "CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT approximate_age FROM table_name_47 WHERE virtues = \"wisdom\"", "question": "Can you give me the age of the Virtues of Wisdom?", "context": "CREATE TABLE table_name_47 (approximate_age VARCHAR, virtues VARCHAR)"}, {"answer": "SELECT virtues FROM table_name_48 WHERE psycho_social_crisis = \"intimacy vs. isolation\"", "question": "What Virtue looks at the intimacy vs. isolation crisis?", "context": "CREATE TABLE table_name_48 (virtues VARCHAR, psycho_social_crisis VARCHAR)"}, {"answer": "SELECT approximate_age FROM table_name_41 WHERE significant_relationship = \"family\"", "question": "Can you give me the age of the Significant Relationship of Family?", "context": "CREATE TABLE table_name_41 (approximate_age VARCHAR, significant_relationship VARCHAR)"}, {"answer": "SELECT virtues FROM table_name_84 WHERE significant_relationship = \"parents\"", "question": "The Significant Relationship of Parents belongs with what Virtue?", "context": "CREATE TABLE table_name_84 (virtues VARCHAR, significant_relationship VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_35 WHERE venue = \"windy hill\"", "question": "Who is the away side at windy hill?", "context": "CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_42 WHERE player = \"fred hoaglin\"", "question": "How many drafts featured fred hoaglin?", "context": "CREATE TABLE table_name_42 (overall VARCHAR, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_84 WHERE school_club_team = \"delta st.\"", "question": "What round did the player from delta st. get picked?", "context": "CREATE TABLE table_name_84 (round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_51 WHERE round = 16", "question": "What is the highest overall number for someone from round 16?", "context": "CREATE TABLE table_name_51 (overall INTEGER, round VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_9 WHERE home_team = \"melbourne\"", "question": "What was the average crowd size when Melbourne was the home team?", "context": "CREATE TABLE table_name_9 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_52 WHERE away_team = \"north melbourne\"", "question": "What was North Melbourne's score when they were the home team?", "context": "CREATE TABLE table_name_52 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_96 WHERE away_team = \"hawthorn\"", "question": "What was Hawthorn's score as the away team?", "context": "CREATE TABLE table_name_96 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_57 WHERE venue = \"lake oval\"", "question": "Who was the away team at the game at Lake Oval?", "context": "CREATE TABLE table_name_57 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_21 WHERE attendance = \"65,677\"", "question": "Which stadium held the game that 65,677 people attended?", "context": "CREATE TABLE table_name_21 (stadium VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_41 WHERE date = \"october 17, 2004\"", "question": "What was the attendance of the game on October 17, 2004?", "context": "CREATE TABLE table_name_41 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_76 WHERE date = \"october 17, 2004\"", "question": "Which week was the October 17, 2004 game played?", "context": "CREATE TABLE table_name_76 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_41 WHERE stadium = \"paul brown stadium\"", "question": "What was the Browns record after they played the game at the Paul Brown stadium?", "context": "CREATE TABLE table_name_41 (record VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT player FROM table_name_80 WHERE school_country = \"gonzaga\"", "question": "Which player went to Gonzaga?", "context": "CREATE TABLE table_name_80 (player VARCHAR, school_country VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_87 WHERE record = \"2-3\"", "question": "Which Rams opponent had a record of 2-3?", "context": "CREATE TABLE table_name_87 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT podiums FROM table_name_97 WHERE races_\u2020 = \"13/15\"", "question": "What is the number of podiums for the races of 13/15?", "context": "CREATE TABLE table_name_97 (podiums VARCHAR, races_\u2020 VARCHAR)"}, {"answer": "SELECT wins FROM table_name_36 WHERE races_\u2020 = \"12/12\"", "question": "How many wins are there for the Races of 12/12?", "context": "CREATE TABLE table_name_36 (wins VARCHAR, races_\u2020 VARCHAR)"}, {"answer": "SELECT fastest_laps FROM table_name_99 WHERE season < 1979", "question": "What is the fastest lap for a season smaller than 1979?", "context": "CREATE TABLE table_name_99 (fastest_laps VARCHAR, season INTEGER)"}, {"answer": "SELECT fastest_laps FROM table_name_95 WHERE races_\u2020 = \"12/12\"", "question": "For the 12/12 races, what is the fastest lap?", "context": "CREATE TABLE table_name_95 (fastest_laps VARCHAR, races_\u2020 VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_64 WHERE away_team = \"carlton\"", "question": "What was the largest crowd where Carlton was the away team?", "context": "CREATE TABLE table_name_64 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_56 WHERE venue = \"arden street oval\"", "question": "Which team's home is the Arden Street Oval?", "context": "CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_68 WHERE home_team = \"fitzroy\"", "question": "What was the lowest attendance at a Fitzroy match?", "context": "CREATE TABLE table_name_68 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT current_club FROM table_name_51 WHERE apps > 368 AND debut_year < 1994", "question": "What is the current club with more than 368 apps and a debut year earlier than 1994?", "context": "CREATE TABLE table_name_51 (current_club VARCHAR, apps VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT -time AS rank FROM table_name_55 WHERE rank < 9 AND debut_year = 1994", "question": "What is the all-time rank associated with a rank less than 9 and a debut in 1994?", "context": "CREATE TABLE table_name_55 (time VARCHAR, rank VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_52 WHERE surface = \"clay\" AND score = \"4\u20136, 6\u20131, 6\u20134\"", "question": "Which tournament was played on clay and there was a score of 4\u20136, 6\u20131, 6\u20134?", "context": "CREATE TABLE table_name_52 (tournament VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE partner = \"albert monta\u00f1\u00e9s\"", "question": "What is the score for the match where albert monta\u00f1\u00e9s was the partner?", "context": "CREATE TABLE table_name_60 (score VARCHAR, partner VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE opponents_in_the_final = \"james cerretani todd perry\"", "question": "What is the score for the match where the opponent in the final was james cerretani todd perry?", "context": "CREATE TABLE table_name_5 (score VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE opponents_in_the_final = \"gast\u00f3n etlis mart\u00edn rodr\u00edguez\"", "question": "What is the date when the opponent in the final is gast\u00f3n etlis mart\u00edn rodr\u00edguez?", "context": "CREATE TABLE table_name_22 (date VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE opponents_in_the_final = \"james cerretani todd perry\"", "question": "What was the score for the match were the opponent in the final was james cerretani todd perry?", "context": "CREATE TABLE table_name_95 (score VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_12 WHERE team = \"birmingham city\"", "question": "Who is Birmingham City's outgoing manager?", "context": "CREATE TABLE table_name_12 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_2 WHERE team = \"bolton wanderers\"", "question": "What is the name of the replacement manager for the Bolton Wanderers?", "context": "CREATE TABLE table_name_2 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_name_49 WHERE outgoing_manager = \"sammy lee\"", "question": "How was Sammy Lee's team doing on the table before being replaced?", "context": "CREATE TABLE table_name_49 (position_in_table VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT team FROM table_name_63 WHERE replaced_by = \"gary megson\"", "question": "Which team hired Gary Megson as the replacement manager?", "context": "CREATE TABLE table_name_63 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE venue = \"mcg\"", "question": "What was the date of the match played at MCG?", "context": "CREATE TABLE table_name_86 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_65 WHERE home_team = \"carlton\"", "question": "What was Carlton's score as the home team?", "context": "CREATE TABLE table_name_65 (home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_62 WHERE venue = \"princes park\"", "question": "What home team plays at Princes Park?", "context": "CREATE TABLE table_name_62 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_21 WHERE away_team = \"collingwood\"", "question": "WHAT WAS COLLINGWOOD'S LOWEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM?", "context": "CREATE TABLE table_name_21 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_85 WHERE away_team = \"essendon\"", "question": "WHAT WAS ESSENDON'S HIGHEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM?", "context": "CREATE TABLE table_name_85 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_50 WHERE away_team = \"hawthorn\"", "question": "WHAT DID HAWTHORN SCORE AT ITS AWAY GAME?", "context": "CREATE TABLE table_name_50 (away_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE date = \"november 26, 1989\"", "question": "Who was the opponent on November 26, 1989?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_41 WHERE date = \"october 29, 1989\"", "question": "What was the result on October 29, 1989?", "context": "CREATE TABLE table_name_41 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_15 WHERE date = \"october 1, 1989\"", "question": "What was the result on October 1, 1989?", "context": "CREATE TABLE table_name_15 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_6 WHERE away = \"1-6\" AND wins > 4", "question": "What is the highest number of losses that a team who had an away record of 1-6 and more than 4 wins had?", "context": "CREATE TABLE table_name_6 (losses INTEGER, away VARCHAR, wins VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_66 WHERE venue = \"corio oval\"", "question": "What is the home team's score at corio oval?", "context": "CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT service FROM table_name_88 WHERE language = \"bengali\"", "question": "What network is in the language of Bengali?", "context": "CREATE TABLE table_name_88 (service VARCHAR, language VARCHAR)"}, {"answer": "SELECT network FROM table_name_20 WHERE origin_of_programming = \"india\" AND genre = \"general\" AND language = \"bengali\"", "question": "What network has an origin in India, a genre of general, and broadcasts in Bengali?", "context": "CREATE TABLE table_name_20 (network VARCHAR, language VARCHAR, origin_of_programming VARCHAR, genre VARCHAR)"}, {"answer": "SELECT language FROM table_name_98 WHERE network = \"ary digital\"", "question": "What language does the Ary Digital network broadcast in?", "context": "CREATE TABLE table_name_98 (language VARCHAR, network VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_59 WHERE away_team = \"carlton\"", "question": "What is the average crowd for Carlton?", "context": "CREATE TABLE table_name_59 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_41 WHERE away_team = \"carlton\"", "question": "How many points did Carlton score?", "context": "CREATE TABLE table_name_41 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_98 WHERE home_team = \"north melbourne\"", "question": "What was the largest crowd for North Melbourne", "context": "CREATE TABLE table_name_98 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_6 WHERE away_team = \"footscray\"", "question": "What is the score for Footscray?", "context": "CREATE TABLE table_name_6 (away_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE week = 5", "question": "What is the result of week 5?", "context": "CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT name FROM table_name_45 WHERE shoulder = \"10.688 (.420)\"", "question": "What is the name of the gun with a shoulder that measures 10.688 (.420)?", "context": "CREATE TABLE table_name_45 (name VARCHAR, shoulder VARCHAR)"}, {"answer": "SELECT shoulder FROM table_name_36 WHERE length = \"57.85 (2.278)\"", "question": "What is the shoulder measurement of the gun with a length of 57.85 (2.278)?", "context": "CREATE TABLE table_name_36 (shoulder VARCHAR, length VARCHAR)"}, {"answer": "SELECT neck FROM table_name_16 WHERE shoulder = \"10.688 (.420)\"", "question": "What is the neck measurement of the gun with a shoulder measurement of 10.688 (.420)?", "context": "CREATE TABLE table_name_16 (neck VARCHAR, shoulder VARCHAR)"}, {"answer": "SELECT length FROM table_name_35 WHERE shoulder = \"12.18 (.480)\"", "question": "What is the length of the gun that has a shoulder measurement of 12.18 (.480)?", "context": "CREATE TABLE table_name_35 (length VARCHAR, shoulder VARCHAR)"}, {"answer": "SELECT bullet FROM table_name_51 WHERE shoulder = \"12.5 (.491)\"", "question": "What bullet does the gun with a shoulder measurement of 12.5 (.491)?", "context": "CREATE TABLE table_name_51 (bullet VARCHAR, shoulder VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_25 WHERE week < 5 AND date = \"september 18, 1994\"", "question": "What was the attendance for the game held on September 18, 1994, with a week less than 5?", "context": "CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_34 WHERE week > 6 AND opponent = \"at philadelphia eagles\"", "question": "What was the average attendance when the opponent was at Philadelphia Eagles and the week was later than week 6?", "context": "CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_54 WHERE week > 2 AND date = \"october 30, 1994\"", "question": "What was the attendance for the game on October 30, 1994 for a week after week 2?", "context": "CREATE TABLE table_name_54 (attendance VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT title FROM table_name_23 WHERE podcast_date = \"september 25, 2005\"", "question": "What is the title of the episode that aired on September 25, 2005?", "context": "CREATE TABLE table_name_23 (title VARCHAR, podcast_date VARCHAR)"}, {"answer": "SELECT run_time FROM table_name_66 WHERE podcast_date = \"september 4, 2005\"", "question": "What is the run time of the episode that aired on September 4, 2005?", "context": "CREATE TABLE table_name_66 (run_time VARCHAR, podcast_date VARCHAR)"}, {"answer": "SELECT historical_references FROM table_name_38 WHERE podcast_date = \"october 23, 2005\"", "question": "What is the historical reference of the episode that aired on October 23, 2005?", "context": "CREATE TABLE table_name_38 (historical_references VARCHAR, podcast_date VARCHAR)"}, {"answer": "SELECT podcast_date FROM table_name_92 WHERE episode_number < 307 AND historical_references = \"p.t. barnum\" AND run_time = \"5:48\"", "question": "What is the date of the episode that is before 307, run time equals 5:48 and has P.T. Barnum as the topic?", "context": "CREATE TABLE table_name_92 (podcast_date VARCHAR, run_time VARCHAR, episode_number VARCHAR, historical_references VARCHAR)"}, {"answer": "SELECT historical_references FROM table_name_7 WHERE run_time = \"6:07\"", "question": "What is the topic of the episode that runs 6:07?", "context": "CREATE TABLE table_name_7 (historical_references VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT episode_number FROM table_name_17 WHERE podcast_date = \"august 8, 2005\"", "question": "What is the episode number of the episode that aired on August 8, 2005?", "context": "CREATE TABLE table_name_17 (episode_number VARCHAR, podcast_date VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE away_team = \"south melbourne\"", "question": "What day is south melbourne the away side?", "context": "CREATE TABLE table_name_21 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT res FROM table_name_62 WHERE opponent = \"ryo takigawa\"", "question": "Did the fighter beat Ryo Takigawa?", "context": "CREATE TABLE table_name_62 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT incident_no FROM table_name_8 WHERE place = \"dantewada, chattisgarh\"", "question": "What is the incident number of the incident that occurred in Dantewada, Chattisgarh?", "context": "CREATE TABLE table_name_8 (incident_no VARCHAR, place VARCHAR)"}, {"answer": "SELECT province FROM table_name_12 WHERE iata = \"uyn\"", "question": "WHich province has an IATA of UYN?", "context": "CREATE TABLE table_name_12 (province VARCHAR, iata VARCHAR)"}, {"answer": "SELECT city FROM table_name_61 WHERE icao = \"zsxz\"", "question": "Which city has an ICAO of ZSXZ?", "context": "CREATE TABLE table_name_61 (city VARCHAR, icao VARCHAR)"}, {"answer": "SELECT province FROM table_name_63 WHERE airport = \"luogang international airport\"", "question": "Which province is Luogang International Airport located in?", "context": "CREATE TABLE table_name_63 (province VARCHAR, airport VARCHAR)"}, {"answer": "SELECT province FROM table_name_7 WHERE iata = \"wnz\"", "question": "WHich province has an IATA of WNZ?", "context": "CREATE TABLE table_name_7 (province VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_33 WHERE airport = \"korla airport\"", "question": "What is the IATA for Korla Airport.", "context": "CREATE TABLE table_name_33 (iata VARCHAR, airport VARCHAR)"}, {"answer": "SELECT division FROM table_name_27 WHERE position = \"4th\"", "question": "In what division did they place 4th?", "context": "CREATE TABLE table_name_27 (division VARCHAR, position VARCHAR)"}, {"answer": "SELECT top_scorer FROM table_name_31 WHERE season = \"1890-91\"", "question": "What was the top scorer in the 1890-91 season?", "context": "CREATE TABLE table_name_31 (top_scorer VARCHAR, season VARCHAR)"}, {"answer": "SELECT position FROM table_name_95 WHERE school_club_team = \"arizona state\"", "question": "Which position has a player at Arizona state?", "context": "CREATE TABLE table_name_95 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_25 WHERE pick < 196 AND round > 5 AND player = \"blake miller\"", "question": "Which school/club has a pick smaller than 196, a round higher than 5 and has Blake Miller?", "context": "CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_56 WHERE position = \"tight end\" AND player = \"randy bethel\"", "question": "What is the average round at which is the position of Tight End and Randy Bethel?", "context": "CREATE TABLE table_name_56 (round INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE opponent = \"new orleans saints\"", "question": "What day did they play the New Orleans Saints?", "context": "CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT overall_win_percentage FROM table_name_5 WHERE coach = \"dick bennett\"", "question": "What was coach Dick Bennett's overall win percentage?", "context": "CREATE TABLE table_name_5 (overall_win_percentage VARCHAR, coach VARCHAR)"}, {"answer": "SELECT notes FROM table_name_57 WHERE shirt_printing = \"pavv\" AND year < 2005", "question": "What are the notes for the shirt that said Pavv before 2005?", "context": "CREATE TABLE table_name_57 (notes VARCHAR, shirt_printing VARCHAR, year VARCHAR)"}, {"answer": "SELECT notes FROM table_name_31 WHERE shirt_printing = \"pavv\" AND year > 2007", "question": "What are the notes for the shirt that said Pavv after 2007?", "context": "CREATE TABLE table_name_31 (notes VARCHAR, shirt_printing VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_36 WHERE notes = \"electronics brand\"", "question": "What is the average of all the years when the notes are \u201celectronics brand?\u201d", "context": "CREATE TABLE table_name_36 (year INTEGER, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_name_85 WHERE kit_supplier = \"rapido\" AND shirt_printing = \"\u540d\u54c1+1\"", "question": "What are the notes for the shirt that says \u540d\u54c1+1 in the kit supplied by Rapido?", "context": "CREATE TABLE table_name_85 (notes VARCHAR, kit_supplier VARCHAR, shirt_printing VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_52 WHERE venue = \"lake oval\"", "question": "What is the largest crowd at Lake Oval?", "context": "CREATE TABLE table_name_52 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_70 WHERE crowd > 25 OFFSET 000", "question": "What was the home team for the game with more than 25,000 crowd?", "context": "CREATE TABLE table_name_70 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT away_team AS score FROM table_name_66 WHERE away_team = \"footscray\"", "question": "What was the score for Footscray when they were the away team?", "context": "CREATE TABLE table_name_66 (away_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE date = \"march 14, 2007\"", "question": "What is the result from March 14, 2007?", "context": "CREATE TABLE table_name_26 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_48 WHERE result = \"0-1\" AND date = \"march 28, 2007\"", "question": "How many goals have a result of 0-1 on march 28, 2007?", "context": "CREATE TABLE table_name_48 (goals VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_73 WHERE result = \"3-0\"", "question": "What venue has a Result of 3-0?", "context": "CREATE TABLE table_name_73 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_54 WHERE home_team = \"collingwood\"", "question": "What was Collingwood's score as the home team?", "context": "CREATE TABLE table_name_54 (home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_40 WHERE home_team = \"carlton\"", "question": "What venue features carlton as the home side?", "context": "CREATE TABLE table_name_40 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE home_team = \"collingwood\"", "question": "What day is collingwood the home side?", "context": "CREATE TABLE table_name_79 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT event FROM table_name_71 WHERE record = \"1-0\"", "question": "The event that has a record of 1-0 is none of the above.", "context": "CREATE TABLE table_name_71 (event VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_81 WHERE name = \"leon blevins\"", "question": "What year was Leon Blevins picked?", "context": "CREATE TABLE table_name_81 (year INTEGER, name VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_70 WHERE overall_pick = \"8\" AND name = \"jordan hill\"", "question": "What year was Jordan Hill picked overall number 8?", "context": "CREATE TABLE table_name_70 (year INTEGER, overall_pick VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_8 WHERE year = 1981 AND overall_pick = \"148\"", "question": "In 1981 which team picked overall 148?", "context": "CREATE TABLE table_name_8 (team VARCHAR, year VARCHAR, overall_pick VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_69 WHERE date = \"december 2, 1951\"", "question": "How many people attended the game on December 2, 1951?", "context": "CREATE TABLE table_name_69 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_30 WHERE away_team = \"st kilda\"", "question": "What venue does st kilda play at as the away team?", "context": "CREATE TABLE table_name_30 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_97 WHERE home_team = \"melbourne\"", "question": "What is melbourne's home team score?", "context": "CREATE TABLE table_name_97 (home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_4 WHERE home_team = \"collingwood\"", "question": "How many games is collingwood the home side?", "context": "CREATE TABLE table_name_4 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_41 WHERE date = \"november 29, 1970\" AND attendance < 31 OFFSET 427", "question": "Who was the opponent on the date of November 29, 1970 and the attendance was less than 31,427?", "context": "CREATE TABLE table_name_41 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE week > 4 AND opponent = \"new york giants\"", "question": "On what date was the game where is was later than Week 4 of the season and the opponent was the New York Giants?", "context": "CREATE TABLE table_name_54 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_34 WHERE date = \"december 13, 1970\" AND week > 13", "question": "What was the attendance of the game on December 13, 1970?", "context": "CREATE TABLE table_name_34 (attendance VARCHAR, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE week < 13 AND opponent = \"miami dolphins\"", "question": "What is the date before week 13 and Miami Dolphins as an opponent?", "context": "CREATE TABLE table_name_48 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_59 WHERE week = 11", "question": "What is the attendance for week 11?", "context": "CREATE TABLE table_name_59 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_57 WHERE home_team = \"north melbourne\"", "question": "What is the home team's score for north melbourne?", "context": "CREATE TABLE table_name_57 (home_team VARCHAR)"}, {"answer": "SELECT sponsor_s_ FROM table_name_60 WHERE rounds = \"all\" AND driver_s_ = \"josele garza\"", "question": "Who sponsors Josele Garza in all rounds?", "context": "CREATE TABLE table_name_60 (sponsor_s_ VARCHAR, rounds VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_77 WHERE team = \"walther\"", "question": "Which rounds did the team Walther participate in?", "context": "CREATE TABLE table_name_77 (rounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_8 WHERE driver_s_ = \"tom sneva\" AND rounds = \"1-9\"", "question": "What team was Tom Sneva on in rounds 1-9?", "context": "CREATE TABLE table_name_8 (team VARCHAR, driver_s_ VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_7 WHERE sponsor_s_ = \"arciero wines\" AND chassis = \"march 85c\"", "question": "Which rounds do Arciero Wines sponsor a March 85c chassis?", "context": "CREATE TABLE table_name_7 (rounds VARCHAR, sponsor_s_ VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT charter_range FROM table_name_15 WHERE status = \"inactive\" AND state = \"north carolina\"", "question": "What years were the inactive North Carolina chapter active?", "context": "CREATE TABLE table_name_15 (charter_range VARCHAR, status VARCHAR, state VARCHAR)"}, {"answer": "SELECT charter_range FROM table_name_99 WHERE status = \"inactive\" AND state = \"idaho\"", "question": "What years were the inactive Idaho chapter active?", "context": "CREATE TABLE table_name_99 (charter_range VARCHAR, status VARCHAR, state VARCHAR)"}, {"answer": "SELECT chapter FROM table_name_5 WHERE charter_range = \"1906-1991\"", "question": "Which chapter was active from 1906-1991?", "context": "CREATE TABLE table_name_5 (chapter VARCHAR, charter_range VARCHAR)"}, {"answer": "SELECT charter_range FROM table_name_85 WHERE school = \"montana state university\"", "question": "What are the active dates for the Montana State University chapter?", "context": "CREATE TABLE table_name_85 (charter_range VARCHAR, school VARCHAR)"}, {"answer": "SELECT state FROM table_name_36 WHERE charter_range = \"1906-1991\"", "question": "What state had an active chapter from 1906-1991?", "context": "CREATE TABLE table_name_36 (state VARCHAR, charter_range VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_50 WHERE record = \"6-1\"", "question": "How many people were at the game with a record of 6-1?", "context": "CREATE TABLE table_name_50 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE opponent = \"indianapolis colts\"", "question": "When was there a game against the Indianapolis colts?", "context": "CREATE TABLE table_name_72 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_91 WHERE venue = \"mcg\"", "question": "What is the lowest crowd size at MCG?", "context": "CREATE TABLE table_name_91 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_36 WHERE home_team = \"north melbourne\"", "question": "What is the average crowd size when the home team is North Melbourne?", "context": "CREATE TABLE table_name_36 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_52 WHERE home_team = \"north melbourne\"", "question": "What is the away team score when the home team is North Melbourne?", "context": "CREATE TABLE table_name_52 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_47 WHERE race_name = \"marlboro challenge\"", "question": "What is the pole position for marlboro challenge?", "context": "CREATE TABLE table_name_47 (pole_position VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_76 WHERE fastest_lap = \"unknown\" AND date = \"july 19\"", "question": "What circut has an unknown fastest lap on July 19?", "context": "CREATE TABLE table_name_76 (circuit VARCHAR, fastest_lap VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_67 WHERE winning_team = \"marlboro team penske\" AND fastest_lap = \"unknown\"", "question": "What circuit did marlboro team penske win with an unknown fastest lap?", "context": "CREATE TABLE table_name_67 (circuit VARCHAR, winning_team VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_9 WHERE pole_position = \"mario andretti\"", "question": "What team does mario andretti play pole position for?", "context": "CREATE TABLE table_name_9 (winning_team VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_3 WHERE away_team = \"carlton\"", "question": "What was the venue where Carlton was the away team?", "context": "CREATE TABLE table_name_3 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_28 WHERE away_team = \"carlton\"", "question": "What was the venue when Carlton was the away team?", "context": "CREATE TABLE table_name_28 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(heat) FROM table_name_48 WHERE time > 48.87 AND nationality = \"sweden\"", "question": "What was the highest heat with a time slower than 48.87 from sweden?", "context": "CREATE TABLE table_name_48 (heat INTEGER, time VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_62 WHERE rank > 4 AND heat > 1 AND nationality = \"australia\" AND name = \"ashley callus\"", "question": "How many lanes featured a swimmer ranked above 4, in a heat later than 1, from australia, named ashley callus?", "context": "CREATE TABLE table_name_62 (lane VARCHAR, name VARCHAR, nationality VARCHAR, rank VARCHAR, heat VARCHAR)"}, {"answer": "SELECT eurozone FROM table_name_24 WHERE population_m__luz_ = 3.08", "question": "What is the Eurozone result for Population M (LUZ) of 3.08?", "context": "CREATE TABLE table_name_24 (eurozone VARCHAR, population_m__luz_ VARCHAR)"}, {"answer": "SELECT gdp_in_$id_b FROM table_name_42 WHERE city = \"istanbul\"", "question": "What is the GDP $IDB in Istanbul?", "context": "CREATE TABLE table_name_42 (gdp_in_$id_b VARCHAR, city VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_name_94 WHERE joined = \"2011\"", "question": "What is the most recently founded school that joined in 2011?", "context": "CREATE TABLE table_name_94 (founded INTEGER, joined VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_43 WHERE away_team = \"geelong\"", "question": "What was the home team that played Geelong?", "context": "CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_13 WHERE away_team = \"richmond\"", "question": "What was the home team's score when they played Richmond?", "context": "CREATE TABLE table_name_13 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_74 WHERE home_team = \"melbourne\"", "question": "What is Melbourne's home venue?", "context": "CREATE TABLE table_name_74 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT overall FROM table_name_72 WHERE position = \"tight end\"", "question": "What was the overall draft pick for the player selected for the tight end position?", "context": "CREATE TABLE table_name_72 (overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE home_team = \"hawthorn\"", "question": "On what date is Hawthorn the home team?", "context": "CREATE TABLE table_name_10 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE away_team = \"st kilda\"", "question": "On what date is St Kilda the away team?", "context": "CREATE TABLE table_name_31 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE date = \"october 13, 1968\"", "question": "Who did the Browns play on October 13, 1968?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT games FROM table_name_70 WHERE name = \"tsegay kebede category:articles with hcards\"", "question": "Which game is named tsegay kebede category:articles with hcards?", "context": "CREATE TABLE table_name_70 (games VARCHAR, name VARCHAR)"}, {"answer": "SELECT event FROM table_name_73 WHERE games = \"2000 sydney\" AND name = \"gete wami category:articles with hcards\"", "question": "Which event in the 2000 Sydney games was in the category gete wami category:articles with hcards?", "context": "CREATE TABLE table_name_73 (event VARCHAR, games VARCHAR, name VARCHAR)"}, {"answer": "SELECT event FROM table_name_34 WHERE games = \"2008 beijing\" AND medal = \"bronze\"", "question": "Which event in the 2008 Beijing Games had a bronze medal?", "context": "CREATE TABLE table_name_34 (event VARCHAR, games VARCHAR, medal VARCHAR)"}, {"answer": "SELECT medal FROM table_name_73 WHERE name = \"fatuma roba category:articles with hcards\"", "question": "What is the medal named fatuma roba category:articles with hcards for?", "context": "CREATE TABLE table_name_73 (medal VARCHAR, name VARCHAR)"}, {"answer": "SELECT games FROM table_name_15 WHERE name = \"derartu tulu category:articles with hcards\"", "question": "What is the game named derartu tulu category:articles with hcards?", "context": "CREATE TABLE table_name_15 (games VARCHAR, name VARCHAR)"}, {"answer": "SELECT time FROM table_name_40 WHERE race = \"kentucky derby\"", "question": "What is the fastest time for the Kentucky Derby race?", "context": "CREATE TABLE table_name_40 (time VARCHAR, race VARCHAR)"}, {"answer": "SELECT track FROM table_name_72 WHERE race = \"woodward stakes\"", "question": "Which track does the Woodward Stakes race take place on?", "context": "CREATE TABLE table_name_72 (track VARCHAR, race VARCHAR)"}, {"answer": "SELECT grade FROM table_name_78 WHERE jockey = \"robby albarado\" AND runner_up_winner = \"ravens pass\"", "question": "What grade did jockey Robby Albarado get when racing with Ravens Pass?", "context": "CREATE TABLE table_name_78 (grade VARCHAR, jockey VARCHAR, runner_up_winner VARCHAR)"}, {"answer": "SELECT age_category FROM table_name_44 WHERE name = \"marco manenti\"", "question": "In which Age Category is Marco Manenti?", "context": "CREATE TABLE table_name_44 (age_category VARCHAR, name VARCHAR)"}, {"answer": "SELECT year FROM table_name_50 WHERE time = \"13:23:43\"", "question": "Which year has a Time of 13:23:43?", "context": "CREATE TABLE table_name_50 (year VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE record = \"3-7\"", "question": "What score has 3-7 as the record?", "context": "CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_82 WHERE att = \"16,458\"", "question": "What loss has 16,458 as an Att.?", "context": "CREATE TABLE table_name_82 (loss VARCHAR, att VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE score = \"5-3\" AND loss = \"holt (1-1)\"", "question": "What date has 5-3 as the score, and holt (1-1) as a loss?", "context": "CREATE TABLE table_name_95 (date VARCHAR, score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT sector FROM table_name_64 WHERE incorporated < 1983", "question": "What is the sector of the company with an incorporated date before 1983?", "context": "CREATE TABLE table_name_64 (sector VARCHAR, incorporated INTEGER)"}, {"answer": "SELECT AVG(incorporated) FROM table_name_25 WHERE company = \"air india charters\"", "question": "What is the average incorporataed year of the Air India Charters company?", "context": "CREATE TABLE table_name_25 (incorporated INTEGER, company VARCHAR)"}, {"answer": "SELECT SUM(votes) FROM table_name_66 WHERE date = \"1956\" AND _percentage_of_national_vote > 11.47", "question": "How many votes were tallied in 1956 with a % of national vote larger than 11.47?", "context": "CREATE TABLE table_name_66 (votes INTEGER, date VARCHAR, _percentage_of_national_vote VARCHAR)"}, {"answer": "SELECT SUM(candidates_nominated) FROM table_name_51 WHERE date = \"1952\" AND votes < 305 OFFSET 133", "question": "How many candidates were nominated in 1952 with under 305,133 votes?", "context": "CREATE TABLE table_name_51 (candidates_nominated INTEGER, date VARCHAR, votes VARCHAR)"}, {"answer": "SELECT COUNT(votes) FROM table_name_72 WHERE _percentage_of_national_vote = 13.11 AND candidates_nominated > 39", "question": "How many votes were tallied with a % of national vote of 13.11, and over 39 candidates nominated?", "context": "CREATE TABLE table_name_72 (votes VARCHAR, _percentage_of_national_vote VARCHAR, candidates_nominated VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_54 WHERE record = \"14\u201317\u20135\"", "question": "Who is the visitor with a record of 14\u201317\u20135?", "context": "CREATE TABLE table_name_54 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_98 WHERE home = \"penguins\" AND record = \"14\u201319\u20136\" AND points < 34", "question": "How many in attendance when Penguins were home with a record of 14\u201319\u20136 with less than 34 points?", "context": "CREATE TABLE table_name_98 (attendance VARCHAR, points VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT format FROM table_name_81 WHERE catalog = \"561 445-1\"", "question": "Which Format has a Catalog of 561 445-1?", "context": "CREATE TABLE table_name_81 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_67 WHERE date = \"early september 1999\"", "question": "Which Region has a Date of early september 1999?", "context": "CREATE TABLE table_name_67 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT region FROM table_name_15 WHERE date = \"early september 1999\"", "question": "Which Region has a Date of early september 1999?", "context": "CREATE TABLE table_name_15 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE loss = \"white (4-5)\"", "question": "What was the date of the game with a loss of White (4-5)?", "context": "CREATE TABLE table_name_34 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE location_attendance = \"montreal forum\" AND date = \"may 10\"", "question": "what score has a location and attendance of montreal forum and the date of may 10?", "context": "CREATE TABLE table_name_49 (score VARCHAR, location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(interview) FROM table_name_75 WHERE province = \"monte cristi\" AND swimsuit > 7.27", "question": "Which Interview has a Province of monte cristi and a Swimsuit larger than 7.27", "context": "CREATE TABLE table_name_75 (interview INTEGER, province VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT AVG(evening_gown) FROM table_name_21 WHERE swimsuit < 7.99 AND interview > 7.98", "question": "WHich Evening Gown has a Swimsuit smaller than 7.99 and a Interview larger than 7.98?", "context": "CREATE TABLE table_name_21 (evening_gown INTEGER, swimsuit VARCHAR, interview VARCHAR)"}, {"answer": "SELECT SUM(interview) FROM table_name_11 WHERE swimsuit > 7.6 AND province = \"la vega\" AND average < 8.38", "question": "Which Interview has a Swimsuit larger than 7.6, and a Province of la vega, and an Average smaller than 8.38?", "context": "CREATE TABLE table_name_11 (interview INTEGER, average VARCHAR, swimsuit VARCHAR, province VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_34 WHERE segment_d = \"marble sculptures\"", "question": "Which items in segment A have a segment D of marble sculptures?", "context": "CREATE TABLE table_name_34 (segment_a VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_57 WHERE segment_d = \"kitchen shears\"", "question": "Which segment A also has a segment D of kitchen shears?", "context": "CREATE TABLE table_name_57 (segment_a VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT segment_c FROM table_name_30 WHERE episode = 160", "question": "Which items in segment C is episode 160?", "context": "CREATE TABLE table_name_30 (segment_c VARCHAR, episode VARCHAR)"}, {"answer": "SELECT season FROM table_name_77 WHERE last_airdate = \"may 6, 1987\"", "question": "Which season last aired on May 6, 1987?", "context": "CREATE TABLE table_name_77 (season VARCHAR, last_airdate VARCHAR)"}, {"answer": "SELECT nielsen_ranking FROM table_name_99 WHERE season = \"season 8\"", "question": "What is the Nielsen ranking for Season 8?", "context": "CREATE TABLE table_name_99 (nielsen_ranking VARCHAR, season VARCHAR)"}, {"answer": "SELECT first_airdate FROM table_name_68 WHERE episodes < 24 AND nielsen_ranking = \"#38\"", "question": "What was the first airdate or the season that had less than 24 episodes and a Nielsen ranking of #38?", "context": "CREATE TABLE table_name_68 (first_airdate VARCHAR, episodes VARCHAR, nielsen_ranking VARCHAR)"}, {"answer": "SELECT episodes FROM table_name_98 WHERE first_airdate = \"september 22, 1989\"", "question": "How many episodes were in the season that first aired on September 22, 1989?", "context": "CREATE TABLE table_name_98 (episodes VARCHAR, first_airdate VARCHAR)"}, {"answer": "SELECT AVG(episodes) FROM table_name_65 WHERE last_airdate = \"april 29, 1986\"", "question": "How many episodes were in the season that ended on April 29, 1986?", "context": "CREATE TABLE table_name_65 (episodes INTEGER, last_airdate VARCHAR)"}, {"answer": "SELECT built_as FROM table_name_28 WHERE ship = \"dahlgren\"", "question": "Where the ship is Dahlgren what is the build as?", "context": "CREATE TABLE table_name_28 (built_as VARCHAR, ship VARCHAR)"}, {"answer": "SELECT reclassified_as FROM table_name_35 WHERE nvr_link = \"cgn38\"", "question": "Where the NRV link is CGN38, what is the reclassified as?", "context": "CREATE TABLE table_name_35 (reclassified_as VARCHAR, nvr_link VARCHAR)"}, {"answer": "SELECT class FROM table_name_98 WHERE built_as = \"dlg-23\"", "question": "Where the built as is DLG-23, what is the class?", "context": "CREATE TABLE table_name_98 (class VARCHAR, built_as VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_56 WHERE rank = \"6\" AND bronze < 2", "question": "What is the Total medals won by the nation in Rank 6 with less than 2 Bronze medals?", "context": "CREATE TABLE table_name_56 (total INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_56 WHERE bronze > 12 AND total < 124", "question": "How many Gold medals were won by the Nation that had more than 12 Bronze medals and less than 124 Total medals?", "context": "CREATE TABLE table_name_56 (gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE december < 21 AND opponent = \"buffalo sabres\"", "question": "December smaller than 21, and a Opponent of buffalo sabres had what score?", "context": "CREATE TABLE table_name_68 (score VARCHAR, december VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT december FROM table_name_27 WHERE score = \"8 - 1\"", "question": "Score of 8 - 1 happened on what day in December?", "context": "CREATE TABLE table_name_27 (december VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_30 WHERE december > 21 AND opponent = \"pittsburgh penguins\"", "question": "December larger than 21, and a Opponent of Pittsburgh penguins had what average game?", "context": "CREATE TABLE table_name_30 (game INTEGER, december VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE december < 14 AND game < 28 AND score = \"6 - 6\"", "question": "December smaller than 14, and a Game smaller than 28, and a Score of 6 - 6 involved what opponent?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, score VARCHAR, december VARCHAR, game VARCHAR)"}, {"answer": "SELECT laid_down FROM table_name_95 WHERE launched = \"1899-04-25\"", "question": "What is the date that the item was laid down if it was launched on 1899-04-25?", "context": "CREATE TABLE table_name_95 (laid_down VARCHAR, launched VARCHAR)"}, {"answer": "SELECT builder FROM table_name_98 WHERE kanji = \"\u66d9\"", "question": "Which builder has the the kanji of \u66d9?", "context": "CREATE TABLE table_name_98 (builder VARCHAR, kanji VARCHAR)"}, {"answer": "SELECT MIN(density_per_km\u00b2) FROM table_name_21 WHERE number__map_ < 13 AND area_in_km\u00b2 = 11.1", "question": "Which Density per km\u00b2 is the lowest one that has a Number (map) smaller than 13, and an Area in km\u00b2 of 11.1?", "context": "CREATE TABLE table_name_21 (density_per_km\u00b2 INTEGER, number__map_ VARCHAR, area_in_km\u00b2 VARCHAR)"}, {"answer": "SELECT COUNT(number__map_) FROM table_name_3 WHERE area_in_km\u00b2 > 13.5 AND population_canada_2011_census = 134 OFFSET 038", "question": "How much #s have an Area in km\u00b2 larger than 13.5, and a Population Canada 2011 Census of 134,038?", "context": "CREATE TABLE table_name_3 (number__map_ VARCHAR, area_in_km\u00b2 VARCHAR, population_canada_2011_census VARCHAR)"}, {"answer": "SELECT MIN(number__map_) FROM table_name_71 WHERE area_in_km\u00b2 = 9.7 AND population_canada_2011_census > 66 OFFSET 158", "question": "Which Number (map) is the lowest one that has a Area in km\u00b2 of 9.7, and a Population Canada 2011 Census larger than 66,158?", "context": "CREATE TABLE table_name_71 (number__map_ INTEGER, area_in_km\u00b2 VARCHAR, population_canada_2011_census VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_80 WHERE attendance = \"19,741\"", "question": "Attendance of 19,741 had what average week?", "context": "CREATE TABLE table_name_80 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE attendance = \"29,000\"", "question": "Attendance of 29,000 occurred on what date?", "context": "CREATE TABLE table_name_80 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_38 WHERE opponent = \"philadelphia eagles\"", "question": "Opponent of Philadelphia eagles had what attendance?", "context": "CREATE TABLE table_name_38 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT exited FROM table_name_26 WHERE celebrity = \"alex best\"", "question": "What day did Alex Best exit?", "context": "CREATE TABLE table_name_26 (exited VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT finished FROM table_name_39 WHERE famous_for = \"athlete\"", "question": "What place did the celebrity who is famous for being an athlete finish?", "context": "CREATE TABLE table_name_39 (finished VARCHAR, famous_for VARCHAR)"}, {"answer": "SELECT finished FROM table_name_91 WHERE famous_for = \"singer in atomic kitten\"", "question": "What place did the singer in atomic kitten finish?", "context": "CREATE TABLE table_name_91 (finished VARCHAR, famous_for VARCHAR)"}, {"answer": "SELECT celebrity FROM table_name_35 WHERE exited = \"day 13\"", "question": "Who was the celebrity who exited on day 13?", "context": "CREATE TABLE table_name_35 (celebrity VARCHAR, exited VARCHAR)"}, {"answer": "SELECT celebrity FROM table_name_91 WHERE finished = \"7th\"", "question": "Who was the celebrity who finished in 7th place?", "context": "CREATE TABLE table_name_91 (celebrity VARCHAR, finished VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_18 WHERE name = \"gilmar\" AND caps < 94", "question": "Name of gilmar, and a Caps smaller than 94 had how many highest goals?", "context": "CREATE TABLE table_name_18 (goals INTEGER, name VARCHAR, caps VARCHAR)"}, {"answer": "SELECT goals FROM table_name_94 WHERE caps = 93", "question": "Caps of 93 had how many goals?", "context": "CREATE TABLE table_name_94 (goals VARCHAR, caps VARCHAR)"}, {"answer": "SELECT goals FROM table_name_39 WHERE latest_cap = \"september 5, 2011\"", "question": "Latest cap of september 5, 2011 had how many goals?", "context": "CREATE TABLE table_name_39 (goals VARCHAR, latest_cap VARCHAR)"}, {"answer": "SELECT MAX(caps) FROM table_name_65 WHERE name = \"rivelino\"", "question": "Name of rivelino had how many highest caps?", "context": "CREATE TABLE table_name_65 (caps INTEGER, name VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_32 WHERE venue = \"birmingham\"", "question": "Which athlete played at the Birmingham venue?", "context": "CREATE TABLE table_name_32 (athlete VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(frequency) FROM table_name_31 WHERE webcast = \"\u2022\" AND callsign = \"xemr\"", "question": "Which Frequency has a Webcast of \u2022, and a Callsign of xemr?", "context": "CREATE TABLE table_name_31 (frequency INTEGER, webcast VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT website FROM table_name_85 WHERE frequency < 760 AND callsign = \"kkyx\"", "question": "Which Website has a Frequency smaller than 760 and a Callsign of kkyx?", "context": "CREATE TABLE table_name_85 (website VARCHAR, frequency VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT webcast FROM table_name_91 WHERE callsign = \"kgbt\"", "question": "Which Webcast has a Callsign of kgbt?", "context": "CREATE TABLE table_name_91 (webcast VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT AVG(frequency) FROM table_name_44 WHERE website = \"\u2022\" AND webcast = \"\u2022\" AND city_of_license = \"san antonio\"", "question": "Which Frequency has a Website of \u2022, and a Webcast of \u2022in san antonio?", "context": "CREATE TABLE table_name_44 (frequency INTEGER, city_of_license VARCHAR, website VARCHAR, webcast VARCHAR)"}, {"answer": "SELECT years FROM table_name_56 WHERE points = \"78\" AND goals = \"22\"", "question": "What years did the player play when he scored 78 points and 22 goals?", "context": "CREATE TABLE table_name_56 (years VARCHAR, points VARCHAR, goals VARCHAR)"}, {"answer": "SELECT goals FROM table_name_78 WHERE assists = \"15\" AND player = \"joey worthen\"", "question": "How many goals did Joey Worthen have when he had 15 assists?", "context": "CREATE TABLE table_name_78 (goals VARCHAR, assists VARCHAR, player VARCHAR)"}, {"answer": "SELECT goals FROM table_name_45 WHERE points = \"158\"", "question": "How many goals were scored when 158 points were collected?", "context": "CREATE TABLE table_name_45 (goals VARCHAR, points VARCHAR)"}, {"answer": "SELECT years FROM table_name_51 WHERE goals = \"36\"", "question": "What years had players who scored 36 goals?", "context": "CREATE TABLE table_name_51 (years VARCHAR, goals VARCHAR)"}, {"answer": "SELECT rank FROM table_name_14 WHERE assists = \"13\"", "question": "What was the rank of the player who had 13 assists?", "context": "CREATE TABLE table_name_14 (rank VARCHAR, assists VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_97 WHERE opponent = \"houston oilers\" AND attendance > 54 OFFSET 582", "question": "What is the sum of the weeks during which the Redskins played against the Houston Oilers and had more than 54,582 fans in attendance?", "context": "CREATE TABLE table_name_97 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_63 WHERE week < 1", "question": "What is the highest attendance for week 1?", "context": "CREATE TABLE table_name_63 (attendance INTEGER, week INTEGER)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_49 WHERE week > 8 AND date = \"november 25, 1979\"", "question": "What is the total number in attendance for the game after week 8 that was on November 25, 1979?", "context": "CREATE TABLE table_name_49 (attendance VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_13 WHERE score = \"2009 wta tour\"", "question": "Which Surface has a Score of 2009 wta tour?", "context": "CREATE TABLE table_name_13 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT round FROM table_name_31 WHERE ranking = \"2008 wta tour\"", "question": "Which Round has a Ranking of 2008 wta tour?", "context": "CREATE TABLE table_name_31 (round VARCHAR, ranking VARCHAR)"}, {"answer": "SELECT surface FROM table_name_57 WHERE round = \"4th round\" AND player = \"maria sharapova\"", "question": "Which Surface has a Round of 4th round, and a Player of maria sharapova?", "context": "CREATE TABLE table_name_57 (surface VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE score = \"6\u20134, 7\u20136 (7\u20135)\"", "question": "Which Player has a Score of 6\u20134, 7\u20136 (7\u20135)?", "context": "CREATE TABLE table_name_97 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT round FROM table_name_23 WHERE player = \"anna chakvetadze\"", "question": "Which Round has a Player of anna chakvetadze?", "context": "CREATE TABLE table_name_23 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT loss FROM table_name_16 WHERE record = \"89-67\"", "question": "Record of 89-67 had what loss?", "context": "CREATE TABLE table_name_16 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_93 WHERE score = \"3 - 2\"", "question": "Score of 3 - 2 had what record?", "context": "CREATE TABLE table_name_93 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_60 WHERE opponent = \"@ blue jays\" AND loss = \"lyon (5-4)\"", "question": "Opponent of @ blue jays, and a Loss of lyon (5-4) had what opponent?", "context": "CREATE TABLE table_name_60 (record VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE loss = \"lyon (5-4)\"", "question": "Loss of lyon (5-4) had what score?", "context": "CREATE TABLE table_name_17 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_99 WHERE loss = \"finley (8-7)\"", "question": "Loss of finley (8-7) had what record?", "context": "CREATE TABLE table_name_99 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE opponent = \"@ blue jays\" AND date = \"october 6\"", "question": "Opponent of @ blue jays, and a Date of october 6 had what score?", "context": "CREATE TABLE table_name_19 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE game = 5", "question": "What is the score for game 5?", "context": "CREATE TABLE table_name_82 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE game > 3 AND opponent = \"buffalo sabres\"", "question": "What is the score that has a game greater than 3, with buffalo sabres as the opponent?", "context": "CREATE TABLE table_name_77 (score VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_26 WHERE date = \"may 9\"", "question": "What score has may 9 as the date?", "context": "CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE date = \"october 16, 1983\"", "question": "What was the score on October 16, 1983?", "context": "CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE outcome = \"runner-up\"", "question": "What was the score when she was a runner-up?", "context": "CREATE TABLE table_name_38 (score VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_86 WHERE date = \"august 11, 1984\"", "question": "What tournament was being played on August 11, 1984?", "context": "CREATE TABLE table_name_86 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_9 WHERE date = \"june 8, 2005\"", "question": "What was the Venue on June 8, 2005?", "context": "CREATE TABLE table_name_9 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE venue = \"los angeles\"", "question": "On what Date was the Venue Los Angeles?", "context": "CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE date = \"september 29, 2003\"", "question": "What was the Score on September 29, 2003?", "context": "CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE venue = \"carson\"", "question": "On what Date was the Venue in Carson?", "context": "CREATE TABLE table_name_10 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_83 WHERE date = \"october 21, 2003\"", "question": "What was the competition on October 21, 2003?", "context": "CREATE TABLE table_name_83 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_15 WHERE date = \"september 29, 2003\"", "question": "What was the Competition on September 29, 2003?", "context": "CREATE TABLE table_name_15 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_88 WHERE name = \"chunkath, mohan verghese\"", "question": "What country has chunkath, mohan verghese as the name?", "context": "CREATE TABLE table_name_88 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_96 WHERE spread > -319 AND country = \"united states\" AND win_loss = \"11-13\" AND name = \"gabriel, marty\"", "question": "What position has a spread greater than -319, and United States as the country, a win loss of 11-13, and gabriel, marty as the name?", "context": "CREATE TABLE table_name_96 (position VARCHAR, name VARCHAR, win_loss VARCHAR, spread VARCHAR, country VARCHAR)"}, {"answer": "SELECT name FROM table_name_96 WHERE spread = 69", "question": "What name has a spread of 69?", "context": "CREATE TABLE table_name_96 (name VARCHAR, spread VARCHAR)"}, {"answer": "SELECT performer_2 FROM table_name_26 WHERE episode = 5", "question": "Which Performer 2 has an Episode of 5?", "context": "CREATE TABLE table_name_26 (performer_2 VARCHAR, episode VARCHAR)"}, {"answer": "SELECT weight FROM table_name_88 WHERE denomination = \"one rupee\"", "question": "What weight has one rupee as the denomination?", "context": "CREATE TABLE table_name_88 (weight VARCHAR, denomination VARCHAR)"}, {"answer": "SELECT size FROM table_name_46 WHERE metal = \"nickel\" AND denomination = \"one rupee\"", "question": "What is the size that has nickel as the metal, and one rupee as the denomination?", "context": "CREATE TABLE table_name_46 (size VARCHAR, metal VARCHAR, denomination VARCHAR)"}, {"answer": "SELECT metal FROM table_name_83 WHERE denomination = \"one rupee\"", "question": "What metal has one rupee as the denomination?", "context": "CREATE TABLE table_name_83 (metal VARCHAR, denomination VARCHAR)"}, {"answer": "SELECT shape FROM table_name_78 WHERE metal = \"nickel\" AND denomination = \"one rupee\"", "question": "What shape has nickel as the metal, and one rupee as the denomination?", "context": "CREATE TABLE table_name_78 (shape VARCHAR, metal VARCHAR, denomination VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_18 WHERE 2010 = \"a\" AND 2006 = \"lq\"", "question": "Which 2007 has a 2010 of A, and a 2006 of lq?", "context": "CREATE TABLE table_name_18 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_51 WHERE 2007 = \"1r\"", "question": "Which 2012 has a 2007 of 1r?", "context": "CREATE TABLE table_name_51 (Id VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_37 WHERE 2013 = \"2\u20134\"", "question": "Which 2002 has a 2013 of 2\u20134?", "context": "CREATE TABLE table_name_37 (Id VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_98 WHERE 2010 = \"1r\"", "question": "Which 2013 has a 2010 of 1r?", "context": "CREATE TABLE table_name_98 (Id VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_52 WHERE tournament = \"grand slam tournaments\"", "question": "Which 2005 has a Tournament of grand slam tournaments?", "context": "CREATE TABLE table_name_52 (tournament VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_53 WHERE 2008 = \"1r\" AND tournament = \"wimbledon\"", "question": "Which 2007 has a 2008 of 1r, and a Tournament of wimbledon?", "context": "CREATE TABLE table_name_53 (tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE home = \"minnesota\"", "question": "Which Date has a Home of minnesota?", "context": "CREATE TABLE table_name_25 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_32 WHERE decision = \"myre\" AND record = \"44\u20137\u201315\"", "question": "Which Visitor has a Decision of myre, and a Record of 44\u20137\u201315?", "context": "CREATE TABLE table_name_32 (visitor VARCHAR, decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT championship FROM table_name_31 WHERE winning_score = \"6 & 5\"", "question": "What Championship had a Winning score of 6 & 5?", "context": "CREATE TABLE table_name_31 (championship VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_96 WHERE runner_s__up = \"betsy rawls\"", "question": "What was the Winning Score when Betsy Rawls was the Runner(s)-up?", "context": "CREATE TABLE table_name_96 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_60 WHERE championship = \"women's western open\" AND year = 1946", "question": "In 1946, what is the Runner(s)-up of the Women's Western Open Championship?", "context": "CREATE TABLE table_name_60 (runner_s__up VARCHAR, championship VARCHAR, year VARCHAR)"}, {"answer": "SELECT margin FROM table_name_29 WHERE runner_s__up = \"patty berg\" AND year = 1953", "question": "What is the Margin in 1953 when Patty Berg was Runner(s)-up?", "context": "CREATE TABLE table_name_29 (margin VARCHAR, runner_s__up VARCHAR, year VARCHAR)"}, {"answer": "SELECT name FROM table_name_74 WHERE type = \"primary\" AND dcsf_number > 2337 AND ofsted_number < 135339", "question": "What is the name of the primary with a DCSF number larger than 2337 and an Ofsted number smaller than 135339?", "context": "CREATE TABLE table_name_74 (name VARCHAR, ofsted_number VARCHAR, type VARCHAR, dcsf_number VARCHAR)"}, {"answer": "SELECT name FROM table_name_95 WHERE dcsf_number > 2448 AND ofsted_number = 131319", "question": "What name that has a DCSF number bigger than 2448 and an Ofsted number of 131319?", "context": "CREATE TABLE table_name_95 (name VARCHAR, dcsf_number VARCHAR, ofsted_number VARCHAR)"}, {"answer": "SELECT faith FROM table_name_44 WHERE dcsf_number > 2448 AND name = \"holtsmere end\"", "question": "What faith has a DCSF number bigger than 2448 in Holtsmere End?", "context": "CREATE TABLE table_name_44 (faith VARCHAR, dcsf_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(dcsf_number) FROM table_name_77 WHERE name = \"aycliffe drive\" AND ofsted_number < 117335", "question": "What's the lowest DCSF number in Aycliffe Drive but an Ofsted number smaller than 117335?", "context": "CREATE TABLE table_name_77 (dcsf_number INTEGER, name VARCHAR, ofsted_number VARCHAR)"}, {"answer": "SELECT city FROM table_name_42 WHERE airport = \"toamasina airport\"", "question": "what city is the toamasina airport in?", "context": "CREATE TABLE table_name_42 (city VARCHAR, airport VARCHAR)"}, {"answer": "SELECT country FROM table_name_99 WHERE city = \"sydney\"", "question": "What country has the city, Sydney?", "context": "CREATE TABLE table_name_99 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_63 WHERE country = \"mayotte\"", "question": "What city is in the country of Mayotte?", "context": "CREATE TABLE table_name_63 (city VARCHAR, country VARCHAR)"}, {"answer": "SELECT iata FROM table_name_96 WHERE airport = \"chennai international airport\"", "question": "What is the IATA for the chennai international airport?", "context": "CREATE TABLE table_name_96 (iata VARCHAR, airport VARCHAR)"}, {"answer": "SELECT airport FROM table_name_78 WHERE iata = \"nos\"", "question": "What is the airport name that has nos listed as the IATA?", "context": "CREATE TABLE table_name_78 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_name_89 WHERE model_number = \"athlon x2 4850e\"", "question": "What is the part number of athlon x2 4850e?", "context": "CREATE TABLE table_name_89 (part_number_s_ VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_28 WHERE multi_1 = \"7.5\u00d7\"", "question": "What's the frequency of the device that has a Multi 1 of 7.5\u00d7?", "context": "CREATE TABLE table_name_28 (frequency VARCHAR, multi_1 VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_78 WHERE frequency = \"1500mhz\"", "question": "What's amount of L2 Cache on a device that has a Frequency of 1500mhz?", "context": "CREATE TABLE table_name_78 (l2_cache VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_88 WHERE frequency = \"2300mhz\"", "question": "When is the release date for a chip that has a Frequency of 2300mhz?", "context": "CREATE TABLE table_name_88 (release_date VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_72 WHERE multi_1 = \"10.5\u00d7\"", "question": "When was the release date for technology that has a Multi 1 of 10.5\u00d7?", "context": "CREATE TABLE table_name_72 (release_date VARCHAR, multi_1 VARCHAR)"}, {"answer": "SELECT stepping FROM table_name_61 WHERE part_number_s_ = \"adh4450iaa5do\"", "question": "What's the stepping amount for adh4450iaa5do?", "context": "CREATE TABLE table_name_61 (stepping VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_40 WHERE year > 1996 AND championship_finish = \"1st\" AND points < 168", "question": "Which Wins is the highest one that has a Year larger than 1996, and a Championship Finish of 1st, and Points smaller than 168?", "context": "CREATE TABLE table_name_40 (wins INTEGER, points VARCHAR, year VARCHAR, championship_finish VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_58 WHERE team = \"walker racing\" AND wins > 1", "question": "Which Year is the highest that has a Team of walker racing, and Wins larger than 1?", "context": "CREATE TABLE table_name_58 (year INTEGER, team VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_79 WHERE year > 1998 AND wins = 1", "question": "Which Points have a Year larger than 1998, and Wins of 1?", "context": "CREATE TABLE table_name_79 (points INTEGER, year VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_35 WHERE silver = 2 AND total = 8", "question": "What is the lowest bronze number when silver shows 2, and the total is 8?", "context": "CREATE TABLE table_name_35 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_54 WHERE gold > 4 AND total < 24", "question": "What is the silver number when gold is more than 4, and the total is less than 24?", "context": "CREATE TABLE table_name_54 (silver INTEGER, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_19 WHERE total = 8 AND bronze > 4", "question": "What is the gold number when the total is 8 and bronze is more than 4?", "context": "CREATE TABLE table_name_19 (gold INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_11 WHERE gold = 0 AND silver < 2 AND rank = \"6\"", "question": "What is the sum of Total for 0 gold and less than 2, silver with a rank of 6?", "context": "CREATE TABLE table_name_11 (total INTEGER, rank VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_59 WHERE silver > 2 AND bronze > 1", "question": "What is the average Gold when silver is more than 2, and bronze is more than 1", "context": "CREATE TABLE table_name_59 (gold INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_62 WHERE silver > \"2\" AND rank = \"2\" AND gold > 2", "question": "What is the average Bronze when silver is more than 2, and rank is 2, and gold more than 2", "context": "CREATE TABLE table_name_62 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT city FROM table_name_77 WHERE state = \"svalbard\" AND longitude = \"15\u00b039\u2032e\"", "question": "What city in Svalbard has a longitude of 15\u00b039\u2032e?", "context": "CREATE TABLE table_name_77 (city VARCHAR, state VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT longitude FROM table_name_27 WHERE latitude = \"77\u00b028\u2032n\"", "question": "If the latitude is 77\u00b028\u2032n, what is the longitude?", "context": "CREATE TABLE table_name_27 (longitude VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT longitude FROM table_name_52 WHERE latitude = \"76\u00b025\u2032n\"", "question": "If the latitude is 76\u00b025\u2032n, what is the longitude?", "context": "CREATE TABLE table_name_52 (longitude VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT longitude FROM table_name_98 WHERE latitude = \"71\u00b018\u2032n\"", "question": "If the latitude is 71\u00b018\u2032n, what is the longitude?", "context": "CREATE TABLE table_name_98 (longitude VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT partner FROM table_name_95 WHERE opponents_in_the_final = \"florian mayer & alexander waske\"", "question": "Who is the partner facing the opponents florian Mayer & alexander waske in the final?", "context": "CREATE TABLE table_name_95 (partner VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_19 WHERE surface = \"hard\" AND opponents_in_the_final = \"rohan bopanna & mustafa ghouse\"", "question": "Which tournament has a hard surface and final opponents rohan bopanna & mustafa ghouse?", "context": "CREATE TABLE table_name_19 (tournament VARCHAR, surface VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE surface = \"clay\"", "question": "On which date did the tournament final with the clay surface take place?", "context": "CREATE TABLE table_name_94 (date VARCHAR, surface VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_93 WHERE partner = \"julian knowle\"", "question": "Which tournament features the partner julian knowle?", "context": "CREATE TABLE table_name_93 (tournament VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE opponents_in_the_final = \"michael berrer & kenneth carlsen\"", "question": "On which date is the tournament final with the opponents michael berrer & kenneth carlsen?", "context": "CREATE TABLE table_name_98 (date VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE february > 4 AND game = 61", "question": "What was the score after february 4 in the game 61?", "context": "CREATE TABLE table_name_30 (score VARCHAR, february VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_96 WHERE college = \"arkansas state\" AND overall < 242", "question": "What is Arkansas State's total pick number with an overal lower than 242?", "context": "CREATE TABLE table_name_96 (pick__number VARCHAR, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT name FROM table_name_38 WHERE college = \"cincinnati\"", "question": "Who is from the College of Cincinnati?", "context": "CREATE TABLE table_name_38 (name VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_84 WHERE position = \"kicker\" AND pick__number < 6", "question": "What is the overall number for a kicker with a pick of less than 6?", "context": "CREATE TABLE table_name_84 (overall VARCHAR, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_name_84 WHERE round > 6 AND position = \"defensive end\"", "question": "Which college has a defensive end with a round less than 6?", "context": "CREATE TABLE table_name_84 (college VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT record FROM table_name_56 WHERE score = \"111-96\"", "question": "What record has a score of 111-96?", "context": "CREATE TABLE table_name_56 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE game > 34 AND record = \"31-11\"", "question": "What is the score for a game after 34 with a record of 31-11?", "context": "CREATE TABLE table_name_53 (score VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE score = \"130-100\"", "question": "What was the date with a resulted score of 130-100?", "context": "CREATE TABLE table_name_16 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT water FROM table_name_72 WHERE metal = \"contracting\"", "question": "Which Water has a Metal of contracting?", "context": "CREATE TABLE table_name_72 (water VARCHAR, metal VARCHAR)"}, {"answer": "SELECT metal FROM table_name_84 WHERE element = \"heavenly stems\"", "question": "Which Metal has an Element of heavenly stems?", "context": "CREATE TABLE table_name_84 (metal VARCHAR, element VARCHAR)"}, {"answer": "SELECT water FROM table_name_50 WHERE wood = \"green\"", "question": "Which water has green wood?", "context": "CREATE TABLE table_name_50 (water VARCHAR, wood VARCHAR)"}, {"answer": "SELECT earth FROM table_name_10 WHERE metal = \"west\"", "question": "Which earth has west metal?", "context": "CREATE TABLE table_name_10 (earth VARCHAR, metal VARCHAR)"}, {"answer": "SELECT wood FROM table_name_50 WHERE earth = \"stabilizing\"", "question": "Which wood has stabilizing earth?", "context": "CREATE TABLE table_name_50 (wood VARCHAR, earth VARCHAR)"}, {"answer": "SELECT fire FROM table_name_24 WHERE metal = \"dry\"", "question": "Which fire has dry metal?", "context": "CREATE TABLE table_name_24 (fire VARCHAR, metal VARCHAR)"}, {"answer": "SELECT name FROM table_name_87 WHERE rank = \"lieutenant colonel\" AND begin_date = \"1904-02-22 22 february 1904\"", "question": "what name has a Rank of lieutenant colonel, and a Begin Date of 1904-02-22 22 february 1904?", "context": "CREATE TABLE table_name_87 (name VARCHAR, rank VARCHAR, begin_date VARCHAR)"}, {"answer": "SELECT position FROM table_name_26 WHERE school_club_team = \"oklahoma state\"", "question": "Oklahoma State produced a player in which position in the draft?", "context": "CREATE TABLE table_name_26 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_53 WHERE position = \"back\" AND player = \"ed cody\"", "question": "What is the highest round where a back named Ed Cody can be found?", "context": "CREATE TABLE table_name_53 (round INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_75 WHERE season < 1920 AND draws > 0", "question": "Which Losses is the lowest one that has a Season smaller than 1920, and Draws larger than 0?", "context": "CREATE TABLE table_name_75 (losses INTEGER, season VARCHAR, draws VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_53 WHERE losses > 16 AND season > 1966", "question": "Which Draws have Losses larger than 16, and a Season larger than 1966?", "context": "CREATE TABLE table_name_53 (draws INTEGER, losses VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_58 WHERE team = \"annandale\" AND losses < 13", "question": "Which Draws have a Team of annandale, and Losses smaller than 13?", "context": "CREATE TABLE table_name_58 (draws INTEGER, team VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_38 WHERE losses < 16 AND team = \"university\" AND wins > 0", "question": "Which Draws have Losses smaller than 16, and a Team of university, and Wins larger than 0?", "context": "CREATE TABLE table_name_38 (draws INTEGER, wins VARCHAR, losses VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_99 WHERE season < 1920 AND losses < 14", "question": "Which Wins is the lowest one that has a Season smaller than 1920, and Losses smaller than 14?", "context": "CREATE TABLE table_name_99 (wins INTEGER, season VARCHAR, losses VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE sport = \"academics\"", "question": "Which date had a sport of Academics?", "context": "CREATE TABLE table_name_70 (date VARCHAR, sport VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE site = \"n/a\"", "question": "Which date had a site of N/A?", "context": "CREATE TABLE table_name_9 (date VARCHAR, site VARCHAR)"}, {"answer": "SELECT builder FROM table_name_22 WHERE year_built = \"1929\"", "question": "what was the builder in 1929", "context": "CREATE TABLE table_name_22 (builder VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_55 WHERE points = 53 AND date = \"march 6\"", "question": "What was the attendance for the March 6 game, where one of the teams had 53 points.", "context": "CREATE TABLE table_name_55 (attendance VARCHAR, points VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_16 WHERE attendance = 6 OFFSET 126", "question": "For the game with 6,126 in attendance, how many points did both teams have in the standings?", "context": "CREATE TABLE table_name_16 (points VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_18 WHERE home = \"st. louis\"", "question": "What is the record of the team with a St. Louis home?", "context": "CREATE TABLE table_name_18 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT country FROM table_name_28 WHERE territory = \"french guiana\"", "question": "What country has a territory of French Guiana?", "context": "CREATE TABLE table_name_28 (country VARCHAR, territory VARCHAR)"}, {"answer": "SELECT 2008 AS _12 FROM table_name_77 WHERE 2013 = \"a\" AND tournament = \"wimbledon\"", "question": "Which 2008-12 has a 2013 of A, and a Tournament of wimbledon?", "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_49 WHERE 2007 = \"a\" AND tournament = \"french open\"", "question": "Which 2013 has a 2007 of A, and a Tournament of french open?", "context": "CREATE TABLE table_name_49 (tournament VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_64 WHERE 2006 = \"grand slam tournaments\"", "question": "Which 2013 has a 2006 of grand slam tournaments?", "context": "CREATE TABLE table_name_64 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_98 WHERE 2007 = \"a\"", "question": "Which 2006 has a 2007 of A?", "context": "CREATE TABLE table_name_98 (Id VARCHAR)"}, {"answer": "SELECT 2008 AS _12 FROM table_name_80 WHERE 2007 = \"a\" AND tournament = \"us open\"", "question": "Which 2008-12 has a 2007 of A, and a Tournament of us open?", "context": "CREATE TABLE table_name_80 (tournament VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE date = \"april 1\"", "question": "What was the record on April 1?", "context": "CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE date = \"april 9\"", "question": "What's the score on April 9?", "context": "CREATE TABLE table_name_62 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_71 WHERE date = \"april 3\"", "question": "Where was home on April 3?", "context": "CREATE TABLE table_name_71 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE date = \"april 9\"", "question": "What's the score on April 9?", "context": "CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_72 WHERE played > 18", "question": "What is the average number of points of the team with more than 18 played?", "context": "CREATE TABLE table_name_72 (points INTEGER, played INTEGER)"}, {"answer": "SELECT MIN(scored) FROM table_name_82 WHERE points = 19 AND played < 18", "question": "What is the lowest score of the team with 19 points and less than 18 played?", "context": "CREATE TABLE table_name_82 (scored INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_31 WHERE points < 17 AND wins < 4", "question": "What is the average number of draws of the team with less than 17 points and less than 4 wins?", "context": "CREATE TABLE table_name_31 (draws INTEGER, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT title FROM table_name_46 WHERE artist = \"tangorodrim\" AND cat__number = \"fsr006\"", "question": "What is the title of the record with an artist of Tangorodrim, category number FSR006?", "context": "CREATE TABLE table_name_46 (title VARCHAR, artist VARCHAR, cat__number VARCHAR)"}, {"answer": "SELECT format FROM table_name_31 WHERE artist = \"triumfall\"", "question": "What was the format of the release by Triumfall?", "context": "CREATE TABLE table_name_31 (format VARCHAR, artist VARCHAR)"}, {"answer": "SELECT cat__number FROM table_name_85 WHERE release_date = \"november 2007\"", "question": "What is the category number that was released in November 2007?", "context": "CREATE TABLE table_name_85 (cat__number VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_86 WHERE pick__number = 12 AND position = \"linebacker\"", "question": "Which is the lowest round to have a pick of 12 and position of linebacker?", "context": "CREATE TABLE table_name_86 (round INTEGER, pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT name FROM table_name_76 WHERE pick__number < 13 AND round = 15", "question": "Which player was picked in round 15 with a pick smaller than 13?", "context": "CREATE TABLE table_name_76 (name VARCHAR, pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_34 WHERE college = \"lamar\"", "question": "How many picks were from Lamar College?", "context": "CREATE TABLE table_name_34 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_97 WHERE college = \"notre dame\" AND round > 2", "question": "How many overall values have a college of Notre Dame and rounds over 2?", "context": "CREATE TABLE table_name_97 (overall VARCHAR, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_90 WHERE venue = \"albion\"", "question": "What player was at Albion?", "context": "CREATE TABLE table_name_90 (player VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE runs = \"274\"", "question": "Where was the venue that had 274 runs?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, runs VARCHAR)"}, {"answer": "SELECT player FROM table_name_17 WHERE opponent = \"queensland\"", "question": "which athlete played against Queensland?", "context": "CREATE TABLE table_name_17 (player VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_71 WHERE runs = \"245\"", "question": "Where is the venue with more than 245 runs?", "context": "CREATE TABLE table_name_71 (venue VARCHAR, runs VARCHAR)"}, {"answer": "SELECT venue FROM table_name_22 WHERE player = \"jack badcock\"", "question": "Where did Jack Badcock play?", "context": "CREATE TABLE table_name_22 (venue VARCHAR, player VARCHAR)"}, {"answer": "SELECT surface FROM table_name_73 WHERE date = \"16 november 2007\"", "question": "Which Surface has a Date of 16 november 2007?", "context": "CREATE TABLE table_name_73 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE competition = \"2004 afc asian cup qualifier\"", "question": "Name the date for 2004 afc asian cup qualifier", "context": "CREATE TABLE table_name_23 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_88 WHERE date = \"23 january 2009\"", "question": "Name the venue for 23 january 2009", "context": "CREATE TABLE table_name_88 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_54 WHERE venue = \"khartoum\"", "question": "Name the competition for khartoum", "context": "CREATE TABLE table_name_54 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_25 WHERE games < 7", "question": "What is the fewest ties the team had with fewer than 7 games?", "context": "CREATE TABLE table_name_25 (drawn INTEGER, games INTEGER)"}, {"answer": "SELECT population FROM table_name_25 WHERE median_household_income = \"$69,760\"", "question": "What is the population for a county that has a median income of $69,760?", "context": "CREATE TABLE table_name_25 (population VARCHAR, median_household_income VARCHAR)"}, {"answer": "SELECT county FROM table_name_37 WHERE per_capita_income = \"$51,456\"", "question": "What county has $51,456 income per capita?", "context": "CREATE TABLE table_name_37 (county VARCHAR, per_capita_income VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_87 WHERE attendance = \"60,355\"", "question": "Who was the opponent when attendance was 60,355?", "context": "CREATE TABLE table_name_87 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(net_profit_loss__sek_) FROM table_name_87 WHERE basic_eps__sek_ = -6.58 AND employees__average_year_ > 31 OFFSET 035", "question": "Which Net profit/loss (SEK) has a Basic eps (SEK) of -6.58, and Employees (Average/Year) larger than 31,035?", "context": "CREATE TABLE table_name_87 (net_profit_loss__sek_ INTEGER, basic_eps__sek_ VARCHAR, employees__average_year_ VARCHAR)"}, {"answer": "SELECT result FROM table_name_64 WHERE week = 13", "question": "What is the result when 13 is the week?", "context": "CREATE TABLE table_name_64 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_11 WHERE game_site = \"shea stadium\" AND date = \"1979-12-09\"", "question": "What average week has shea stadium as the game site, and 1979-12-09 as the date?", "context": "CREATE TABLE table_name_11 (week INTEGER, game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_18 WHERE country = \"united states\" AND wins < 1", "question": "Name the most rank for the United States with wins less than 1", "context": "CREATE TABLE table_name_18 (rank INTEGER, country VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_58 WHERE events = 26 AND wins > 0", "question": "Name the most rank for wins more than 0 and events of 26", "context": "CREATE TABLE table_name_58 (rank INTEGER, events VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(earnings___) AS $__ FROM table_name_34 WHERE rank = 3 AND wins < 3", "question": "Name the average earnings for rank of 3 and wins less than 3", "context": "CREATE TABLE table_name_34 (earnings___ INTEGER, rank VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(area__km_2__) FROM table_name_14 WHERE density__inhabitants_km_2__ < 206.2 AND altitude__mslm_ < 85", "question": "What is the average area of the city that has a density less than than 206.2 and an altitude of less than 85?", "context": "CREATE TABLE table_name_14 (area__km_2__ INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR)"}, {"answer": "SELECT MIN(density__inhabitants_km_2__) FROM table_name_39 WHERE area__km_2__ > 16.02 AND altitude__mslm_ < 116 AND city = \"alessandria\"", "question": "What is the lowest density of alessandria where the area is bigger than 16.02 and altitude is less than 116?", "context": "CREATE TABLE table_name_39 (density__inhabitants_km_2__ INTEGER, city VARCHAR, area__km_2__ VARCHAR, altitude__mslm_ VARCHAR)"}, {"answer": "SELECT MIN(density__inhabitants_km_2__) FROM table_name_87 WHERE city = \"serravalle scrivia\"", "question": "What is the lowest density of serravalle scrivia?", "context": "CREATE TABLE table_name_87 (density__inhabitants_km_2__ INTEGER, city VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_37 WHERE altitude__mslm_ < 197 AND city = \"alessandria\" AND density__inhabitants_km_2__ < 461.8", "question": "What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8?", "context": "CREATE TABLE table_name_37 (population INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR, city VARCHAR)"}, {"answer": "SELECT AVG(myspace) FROM table_name_62 WHERE site = \"linkedin\" AND orkut > 3", "question": "What myspace has linkedin as the site, with an orkit greater than 3?", "context": "CREATE TABLE table_name_62 (myspace INTEGER, site VARCHAR, orkut VARCHAR)"}, {"answer": "SELECT COUNT(linkedin) FROM table_name_79 WHERE site = \"facebook\" AND myspace < 64", "question": "How many linkedin have Facebook as the site, with a myspace less than 64?", "context": "CREATE TABLE table_name_79 (linkedin VARCHAR, site VARCHAR, myspace VARCHAR)"}, {"answer": "SELECT MAX(ning) FROM table_name_40 WHERE bebo < 4 AND orkut < 100 AND plaxo > 0", "question": "What is the highest Ning that has a bebo less than 4, an orkut less than 100, with a plaxo greater than 0?", "context": "CREATE TABLE table_name_40 (ning INTEGER, plaxo VARCHAR, bebo VARCHAR, orkut VARCHAR)"}, {"answer": "SELECT AVG(plaxo) FROM table_name_63 WHERE myspace > 64 AND bebo > 3 AND friendster = 4", "question": "What is the average plaxo that has a myspace greater than 64, a bebo greater than 3, with 4 as the friendster?", "context": "CREATE TABLE table_name_63 (plaxo INTEGER, friendster VARCHAR, myspace VARCHAR, bebo VARCHAR)"}, {"answer": "SELECT album FROM table_name_18 WHERE label = \"warp records / paper bag records\" AND title = \"i need a life\"", "question": "What album has the title I Need A Life with the label of warp records / paper bag records?", "context": "CREATE TABLE table_name_18 (album VARCHAR, label VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_39 WHERE label = \"warp records / paper bag records\"", "question": "What title has a Label of warp records / paper bag records?", "context": "CREATE TABLE table_name_39 (title VARCHAR, label VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_84 WHERE team = \"san mart\u00edn de tucum\u00e1n\" AND played < 38", "question": "What's the lowest Points for the Team of San Mart\u00edn De Tucum\u00e1n, and a Played that's smaller than 38?", "context": "CREATE TABLE table_name_84 (points INTEGER, team VARCHAR, played VARCHAR)"}, {"answer": "SELECT nation FROM table_name_29 WHERE total > 3 AND bronze > 5 AND silver < 4", "question": "What nation has a total more than 3, with more than 5 for bronze, and less than 4 for the silver?", "context": "CREATE TABLE table_name_29 (nation VARCHAR, silver VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_61 WHERE rank = \"19\"", "question": "What is the largest number for bronze with a rank of 19?", "context": "CREATE TABLE table_name_61 (bronze INTEGER, rank VARCHAR)"}, {"answer": "SELECT season FROM table_name_4 WHERE score = \"1:0\"", "question": "what season had a score of 1:0", "context": "CREATE TABLE table_name_4 (season VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_70 WHERE indoor_year = \"1978\"", "question": "indoor year is 1978, what is the record?", "context": "CREATE TABLE table_name_70 (record VARCHAR, indoor_year VARCHAR)"}, {"answer": "SELECT SUM(game__number) FROM table_name_57 WHERE record = \"11-10-3\"", "question": "Record of 11-10-3 is what sum of game #?", "context": "CREATE TABLE table_name_57 (game__number INTEGER, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_51 WHERE points = 31 AND score = \"1 - 5\"", "question": "Points of 31, and a Score of 1 - 5 is what home?", "context": "CREATE TABLE table_name_51 (home VARCHAR, points VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_30 WHERE visitor = \"calgary\"", "question": "Visitor of calgary has what record?", "context": "CREATE TABLE table_name_30 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT points FROM table_name_47 WHERE score = \"2 - 2\"", "question": "Score of 2 - 2 had what points?", "context": "CREATE TABLE table_name_47 (points VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_20 WHERE opponents = \"lincoln city\" AND h___a = \"a\"", "question": "What was the Attendance when Lincoln City was the Opponents with H/A of A?", "context": "CREATE TABLE table_name_20 (attendance VARCHAR, opponents VARCHAR, h___a VARCHAR)"}, {"answer": "SELECT area_served FROM table_name_94 WHERE frequency = \"100.3\" AND on_air_id = \"yass fm\"", "question": "what Area has the frequency of 100.3 and an On-air ID of yass fm?", "context": "CREATE TABLE table_name_94 (area_served VARCHAR, frequency VARCHAR, on_air_id VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_8 WHERE area_served = \"tamworth\" AND frequency = \"0 88.9\"", "question": "What is the Callsign with an Area of tamworth and frequency of 0 88.9?", "context": "CREATE TABLE table_name_8 (callsign VARCHAR, area_served VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_62 WHERE area_served = \"braidwood\"", "question": "What is the Purpose of the Area Braidwood?", "context": "CREATE TABLE table_name_62 (purpose VARCHAR, area_served VARCHAR)"}, {"answer": "SELECT band FROM table_name_34 WHERE frequency = \"0 99.7\" AND area_served = \"newcastle\"", "question": "What Band has a Frequency of 0 99.7 in the Area of Newcastle?", "context": "CREATE TABLE table_name_34 (band VARCHAR, frequency VARCHAR, area_served VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_5 WHERE area_served = \"gosford\" AND callsign = \"2cfm\"", "question": "What is the Frequency of Gosford when the Callsign of 2cfm?", "context": "CREATE TABLE table_name_5 (frequency VARCHAR, area_served VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT on_air_id FROM table_name_24 WHERE frequency = \"105.9\" AND purpose = \"commercial\"", "question": "What is the On-air ID with the frequency of 105.9, and purpose of commercial?", "context": "CREATE TABLE table_name_24 (on_air_id VARCHAR, frequency VARCHAR, purpose VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_48 WHERE points < 11 AND laps = 74", "question": "What Time/Retired has a Points that's smaller than 11 and has a Laps of 74?", "context": "CREATE TABLE table_name_48 (time_retired VARCHAR, points VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_73 WHERE laps = 86 AND team = \"hvm racing\"", "question": "What Time/Retired has a Laps of 86 and the Team of HVM Racing?", "context": "CREATE TABLE table_name_73 (time_retired VARCHAR, laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_19 WHERE region = \"france\"", "question": "What is the Catalog number in France?", "context": "CREATE TABLE table_name_19 (catalog VARCHAR, region VARCHAR)"}, {"answer": "SELECT format FROM table_name_99 WHERE catalog = \"f4 87199\"", "question": "What is the Format o Catalog F4 87199?", "context": "CREATE TABLE table_name_99 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_74 WHERE catalog = \"885 973-4\"", "question": "What is the Region of Catalog 885 973-4?", "context": "CREATE TABLE table_name_74 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_42 WHERE region = \"france\"", "question": "What is the Catalog number in the Region of France?", "context": "CREATE TABLE table_name_42 (catalog VARCHAR, region VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_37 WHERE date = \"1 november 1997\"", "question": "How many people in total attended the game on 1 november 1997?", "context": "CREATE TABLE table_name_37 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(loses) FROM table_name_75 WHERE wins = 3 AND pos > 3", "question": "Wins of 3, and a Pos. larger than 3 is what average loses?", "context": "CREATE TABLE table_name_75 (loses INTEGER, wins VARCHAR, pos VARCHAR)"}, {"answer": "SELECT SUM(pos) FROM table_name_67 WHERE matches > 5", "question": "Matches larger than 5 is the sum of what position?", "context": "CREATE TABLE table_name_67 (pos INTEGER, matches INTEGER)"}, {"answer": "SELECT years FROM table_name_11 WHERE pct < 0.389 AND lost < 12 AND name = \"dwane morrison\"", "question": "What years did Dwane Morrison had a pct less than 0.389 and losses less than 12?", "context": "CREATE TABLE table_name_11 (years VARCHAR, name VARCHAR, pct VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(seasons) FROM table_name_56 WHERE name = \"charles c. farrell\"", "question": "How many seasons did Charles C. Farrell coach?", "context": "CREATE TABLE table_name_56 (seasons VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(pct) FROM table_name_4 WHERE lost > 7 AND name = \"george felton\"", "question": "What's the average pct for George Felton when he had losses greater than 7?", "context": "CREATE TABLE table_name_4 (pct INTEGER, lost VARCHAR, name VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_38 WHERE runner_s__up = \"jos\u00e9 maria ca\u00f1izares\"", "question": "Which Margin of victory has a Runner(s)-up of jos\u00e9 maria ca\u00f1izares?", "context": "CREATE TABLE table_name_38 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_49 WHERE runner_s__up = \"bob charles\"", "question": "Which Tournament has a Runner(s)-up of bob charles?", "context": "CREATE TABLE table_name_49 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_4 WHERE date = \"7 jun 1976\"", "question": "What was the winning score on 7 jun 1976?", "context": "CREATE TABLE table_name_4 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_19 WHERE margin_of_victory = \"1 stroke\" AND date = \"21 jun 1981\"", "question": "Which Winning score has a Margin of victory of 1 stroke, and a Date of 21 jun 1981?", "context": "CREATE TABLE table_name_19 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE winning_score = \u20135(70 - 65 - 69 - 75 = 279)", "question": "On which date was the Winning score \u20135 (70-65-69-75=279)?", "context": "CREATE TABLE table_name_92 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_71 WHERE winning_score = \u20139(71 - 68 - 72 - 68 = 279)", "question": "Which Runner(s)-up has a Winning score of \u20139 (71-68-72-68=279)?", "context": "CREATE TABLE table_name_71 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_97 WHERE attendance = \"14,096\"", "question": "What is the leading scorer of the game with an attendance of 14,096?", "context": "CREATE TABLE table_name_97 (leading_scorer VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_59 WHERE visitor = \"celtics\"", "question": "What is the leading scorer of the game with the Celtics as the visiting team?", "context": "CREATE TABLE table_name_59 (leading_scorer VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE attendance = \"19,183\"", "question": "What is the date of the game with an attendance of 19,183?", "context": "CREATE TABLE table_name_7 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT time FROM table_name_58 WHERE track_number < 4 AND song_title = \"you're my everything\"", "question": "Name the time with track number less than 4 for you're my everything", "context": "CREATE TABLE table_name_58 (time VARCHAR, track_number VARCHAR, song_title VARCHAR)"}, {"answer": "SELECT orchestra FROM table_name_41 WHERE songwriter_s_ = \"ted varnick\"", "question": "Name the orchestra for ted varnick", "context": "CREATE TABLE table_name_41 (orchestra VARCHAR, songwriter_s_ VARCHAR)"}, {"answer": "SELECT songwriter_s_ FROM table_name_60 WHERE track_number = 12", "question": "Name the songwriter for track number 12", "context": "CREATE TABLE table_name_60 (songwriter_s_ VARCHAR, track_number VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_59 WHERE player = \"dan federman\" AND pick > 114", "question": "Player of dan federman, and a Pick larger than 114 involves which highest round?", "context": "CREATE TABLE table_name_59 (round INTEGER, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT round FROM table_name_65 WHERE college = \"villanova\"", "question": "College of villanova has what round?", "context": "CREATE TABLE table_name_65 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT pick FROM table_name_61 WHERE college = \"boston college\"", "question": "College of boston college has what pick?", "context": "CREATE TABLE table_name_61 (pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(finalists) FROM table_name_47 WHERE years_won = \"2008\" AND _percentage_won > 33", "question": "How many finalists were there when the years won was 2008 and the won % was greater than 33?", "context": "CREATE TABLE table_name_47 (finalists INTEGER, years_won VARCHAR, _percentage_won VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_37 WHERE record = \"2-2\"", "question": "Where was the game site for the game that had a packers record of 2-2?", "context": "CREATE TABLE table_name_37 (game_site VARCHAR, record VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_42 WHERE game_site = \"raymond james stadium\"", "question": "What is the final score of the game that was at raymond james stadium?", "context": "CREATE TABLE table_name_42 (final_score VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT match_report FROM table_name_12 WHERE opponent = \"houston\"", "question": "What is the match report for the game that was against Houston?", "context": "CREATE TABLE table_name_12 (match_report VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_29 WHERE record = \"2-3\"", "question": "Where is the game site for the game that had a packers record of 2-3?", "context": "CREATE TABLE table_name_29 (game_site VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_10 WHERE score = \"118\u2013105\"", "question": "What was the Record of the game with a Score of 118\u2013105?", "context": "CREATE TABLE table_name_10 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_85 WHERE score = \"107\u2013108\"", "question": "What is the Record of the game with a Score of 107\u2013108?", "context": "CREATE TABLE table_name_85 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_16 WHERE score = \"113\u2013103\"", "question": "What was the Record during the game with a Score of 113\u2013103?", "context": "CREATE TABLE table_name_16 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_92 WHERE percentage_of_possible_points = \"67.22%\"", "question": "How many points have a percentage of possible points of 67.22%?", "context": "CREATE TABLE table_name_92 (points INTEGER, percentage_of_possible_points VARCHAR)"}, {"answer": "SELECT races FROM table_name_77 WHERE points > 123 AND driver = \"fernando alonso\" AND percentage_of_possible_points = \"74.44%\"", "question": "Which races have points greater than 123, fernando alonso as the driver and a percentage of possible points of 74.44%?", "context": "CREATE TABLE table_name_77 (races VARCHAR, percentage_of_possible_points VARCHAR, points VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(season) FROM table_name_31 WHERE driver = \"fernando alonso\" AND percentage_of_possible_points = \"64.12%\" AND points < 109", "question": "How many seasons have fernando alonso as the driver, and a percentage of possible points of 64.12% and points less than 109?", "context": "CREATE TABLE table_name_31 (season INTEGER, points VARCHAR, driver VARCHAR, percentage_of_possible_points VARCHAR)"}, {"answer": "SELECT remixed_by FROM table_name_97 WHERE year > 1999", "question": "Who remixed the version after 1999?", "context": "CREATE TABLE table_name_97 (remixed_by VARCHAR, year INTEGER)"}, {"answer": "SELECT remixed_by FROM table_name_74 WHERE length = \"3:58\"", "question": "Who remixed the version with a length of 3:58?", "context": "CREATE TABLE table_name_74 (remixed_by VARCHAR, length VARCHAR)"}, {"answer": "SELECT album FROM table_name_20 WHERE remixed_by = \"royal garden sound\" AND version = \"royal g's club mix\"", "question": "Which album is the royal g's club mix version, which is remixed by royal garden sound, from?", "context": "CREATE TABLE table_name_20 (album VARCHAR, remixed_by VARCHAR, version VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_81 WHERE week < 4 AND record = \"2\u20131\"", "question": "How many were in attendance in a week less than 4 with a record of 2\u20131?", "context": "CREATE TABLE table_name_81 (attendance VARCHAR, week VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_78 WHERE game_site = \"griffith stadium\" AND opponent = \"philadelphia eagles\"", "question": "How many were in attendance at Griffith Stadium with Philadelphia Eagles as an opponent?", "context": "CREATE TABLE table_name_78 (attendance VARCHAR, game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT week FROM table_name_92 WHERE attendance = \"25,000\"", "question": "In what week was the attendance 25,000?", "context": "CREATE TABLE table_name_92 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_27 WHERE result = \"l 21\u201313\"", "question": "What game site had a result at l 21\u201313?", "context": "CREATE TABLE table_name_27 (game_site VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE record = \"34-19-6\"", "question": "What score has 34-19-6 as the record?", "context": "CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(february) FROM table_name_77 WHERE game = 56", "question": "What is the average February that has 56 as the game?", "context": "CREATE TABLE table_name_77 (february INTEGER, game VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_64 WHERE team = \"team impul\" AND date = \"8 july\"", "question": "What is the sum of team impul with the date of 8 july", "context": "CREATE TABLE table_name_64 (round INTEGER, team VARCHAR, date VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_4 WHERE round = 9", "question": "what is the pole position of Round 9", "context": "CREATE TABLE table_name_4 (pole_position VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_22 WHERE pole_position = \"satoshi motoyama\"", "question": "what is the lowest round pole position of satoshi motoyama", "context": "CREATE TABLE table_name_22 (round INTEGER, pole_position VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_73 WHERE away_team = \"rushden & diamonds\"", "question": "What was the home team with the away team of rushden & diamonds?", "context": "CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_5 WHERE attendance = \"2 january 1999\" AND home_team = \"plymouth argyle\"", "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 MIN(lost) FROM table_name_8 WHERE drawn > 1 AND games < 7", "question": "Which Lost has a Drawn larger than 1, and Games smaller than 7?", "context": "CREATE TABLE table_name_8 (lost INTEGER, drawn VARCHAR, games VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_41 WHERE games < 7", "question": "Which Drawn has Games smaller than 7?", "context": "CREATE TABLE table_name_41 (drawn INTEGER, games INTEGER)"}, {"answer": "SELECT COUNT(games) FROM table_name_5 WHERE drawn < 1 AND lost > 4", "question": "How many Games have a Drawn smaller than 1, and a Lost larger than 4?", "context": "CREATE TABLE table_name_5 (games VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_19 WHERE circuit = \"taunus\"", "question": "what is the winning driver in taunus", "context": "CREATE TABLE table_name_19 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT record FROM table_name_49 WHERE home = \"montreal canadiens\" AND date = \"april 22\"", "question": "Which Record has a Home of Montreal Canadiens and a Date of April 22?", "context": "CREATE TABLE table_name_49 (record VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE home = \"montreal canadiens\" AND date = \"april 22\"", "question": "What Score has a Home of Montreal Canadiens and a Date of April 22?", "context": "CREATE TABLE table_name_74 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_68 WHERE gold < 0", "question": "What is the lowest number of bronze medals received by a nation with fewer than 0 gold medals?", "context": "CREATE TABLE table_name_68 (bronze INTEGER, gold INTEGER)"}, {"answer": "SELECT MIN(silver) FROM table_name_1 WHERE total < 1", "question": "What is the lowest number of silver medals for a nation with fewer than 1 total medals?", "context": "CREATE TABLE table_name_1 (silver INTEGER, total INTEGER)"}, {"answer": "SELECT rank FROM table_name_94 WHERE total > 17 AND silver < 13", "question": "Which Rank has a Total larger than 17, and a Silver smaller than 13?", "context": "CREATE TABLE table_name_94 (rank VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_29 WHERE gold = 1 AND nation = \"czechoslovakia\"", "question": "Which Total is the highest one that has a Gold of 1, and a Nation of czechoslovakia?", "context": "CREATE TABLE table_name_29 (total INTEGER, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_38 WHERE silver < 0", "question": "How much Total has a Silver smaller than 0?", "context": "CREATE TABLE table_name_38 (total VARCHAR, silver INTEGER)"}, {"answer": "SELECT AVG(total) FROM table_name_36 WHERE rank = \"4\" AND silver < 4", "question": "Which Total has a Rank of 4, and a Silver smaller than 4?", "context": "CREATE TABLE table_name_36 (total INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_56 WHERE bronze < 1 AND gold > 0", "question": "Which Silver is the lowest one that has a Bronze smaller than 1, and a Gold larger than 0?", "context": "CREATE TABLE table_name_56 (silver INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_5 WHERE music_director_s_ = \"anu malik\"", "question": "WHich Year has a Music director(s) of anu malik?", "context": "CREATE TABLE table_name_5 (year INTEGER, music_director_s_ VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_32 WHERE film = \"baazigar\"", "question": "Which Year has a Film of baazigar?", "context": "CREATE TABLE table_name_32 (year INTEGER, film VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_10 WHERE streak = \"lost 1\" AND date = \"april 30\"", "question": "Which Opponent has a Streak of lost 1, and a Date of april 30?", "context": "CREATE TABLE table_name_10 (opponent VARCHAR, streak VARCHAR, date VARCHAR)"}, {"answer": "SELECT number_of_sequences_number_of_sequences AS :_ FROM table_name_72 WHERE name = \"alifoldz\"", "question": "What is the number of sequences for the name Alifoldz?", "context": "CREATE TABLE table_name_72 (number_of_sequences_number_of_sequences VARCHAR, name VARCHAR)"}, {"answer": "SELECT alignment_alignment AS :_predicts_an_alignment_, _ FROM table_name_27 WHERE link = \"linuxbinary\"", "question": "What is the alignment that predicts an alignment of the linuxbinary link?", "context": "CREATE TABLE table_name_27 (_ VARCHAR, alignment_alignment VARCHAR, link VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_83 WHERE year < 2012 AND open_cup = \"did not enter\"", "question": "Which Playoffs have a Year smaller than 2012, and an Open Cup of did not enter?", "context": "CREATE TABLE table_name_83 (playoffs VARCHAR, year VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_12 WHERE regular_season = \"5th, atlantic\" AND division > 4", "question": "Which Year is the lowest one that has a Regular Season of 5th, atlantic, and a Division larger than 4?", "context": "CREATE TABLE table_name_12 (year INTEGER, regular_season VARCHAR, division VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_94 WHERE playoffs = \"did not qualify\"", "question": "Which Year has Playoffs which did not qualify?", "context": "CREATE TABLE table_name_94 (year INTEGER, playoffs VARCHAR)"}, {"answer": "SELECT gold FROM table_name_39 WHERE silver = \"south korea\" AND year = 1986", "question": "Can you tell me the Gold that has the Silver of south korea, and the Year of 1986?", "context": "CREATE TABLE table_name_39 (gold VARCHAR, silver VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_35 WHERE director = \"lee phillips\"", "question": "When was Lee Phillips the director?", "context": "CREATE TABLE table_name_35 (year VARCHAR, director VARCHAR)"}, {"answer": "SELECT title FROM table_name_97 WHERE director = \"paul schneider\"", "question": "What is the movie that Paul Schneider directed?", "context": "CREATE TABLE table_name_97 (title VARCHAR, director VARCHAR)"}, {"answer": "SELECT year FROM table_name_18 WHERE box_office = \"$961,147\"", "question": "The box office was $961,147 in what year?", "context": "CREATE TABLE table_name_18 (year VARCHAR, box_office VARCHAR)"}, {"answer": "SELECT year FROM table_name_12 WHERE distributor_s_ = \"touchstone pictures\" AND title = \"three men and a little lady\"", "question": "Three Men and a Little Lady from Touchstone Pictures was from what year?", "context": "CREATE TABLE table_name_12 (year VARCHAR, distributor_s_ VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_99 WHERE year = \"1997\" AND distributor_s_ = \"hbo pictures\"", "question": "What is the name of the movie from 1997 distributed from HBO Pictures?", "context": "CREATE TABLE table_name_99 (title VARCHAR, year VARCHAR, distributor_s_ VARCHAR)"}, {"answer": "SELECT title FROM table_name_29 WHERE box_office = \"$1,659,542\"", "question": "What movie earned $1,659,542 at the box office?", "context": "CREATE TABLE table_name_29 (title VARCHAR, box_office VARCHAR)"}, {"answer": "SELECT accession_number FROM table_name_29 WHERE protein_name = \"ccdc165\" AND divergence_from_human_lineage__mya_ < 296", "question": "Which accession number has a protein name of ccdc165, and a divergence from human lineage (MYA) smaller than 296?", "context": "CREATE TABLE table_name_29 (accession_number VARCHAR, protein_name VARCHAR, divergence_from_human_lineage__mya_ VARCHAR)"}, {"answer": "SELECT sequence_identity_to_human_protein FROM table_name_51 WHERE divergence_from_human_lineage__mya_ > 8.8 AND sequence_length__aa_ > 1587 AND protein_name = \"soga2\"", "question": "Which sequence identity to human protein has a divergence from human lineage (MYA) larger than 8.8, and a sequence length (aa) larger than 1587, and a protein name of soga2?", "context": "CREATE TABLE table_name_51 (sequence_identity_to_human_protein VARCHAR, protein_name VARCHAR, divergence_from_human_lineage__mya_ VARCHAR, sequence_length__aa_ VARCHAR)"}, {"answer": "SELECT record FROM table_name_56 WHERE opponent = \"cleveland browns\"", "question": "What's the record of the team who played the Cleveland Browns?", "context": "CREATE TABLE table_name_56 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_17 WHERE position = \"pr\"", "question": "What is the hometown of the player who plays pr?", "context": "CREATE TABLE table_name_17 (hometown VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_name_87 WHERE overall > 158 AND name = \"travian robertson\"", "question": "Which college's overall number is more than 158 when Travian Robertson is the name?", "context": "CREATE TABLE table_name_87 (college VARCHAR, overall VARCHAR, name VARCHAR)"}, {"answer": "SELECT round FROM table_name_40 WHERE name = \"jonathan massaquoi\"", "question": "Which round's name is Jonathan Massaquoi?", "context": "CREATE TABLE table_name_40 (round VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_39 WHERE position = \"center\" AND pick__number < 23", "question": "What is the mean round number for center position when the pick number is less than 23?", "context": "CREATE TABLE table_name_39 (round INTEGER, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT SUM(altitude__mslm_) FROM table_name_85 WHERE density__inhabitants_km_2__ < 1233 AND rank = \"9th\"", "question": "Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1233, and a Rank of 9th?", "context": "CREATE TABLE table_name_85 (altitude__mslm_ INTEGER, density__inhabitants_km_2__ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(altitude__mslm_) FROM table_name_89 WHERE density__inhabitants_km_2__ < 1467.5 AND common_of = \"moncalieri\"", "question": "Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1467.5, and a Common of moncalieri?", "context": "CREATE TABLE table_name_89 (altitude__mslm_ INTEGER, density__inhabitants_km_2__ VARCHAR, common_of VARCHAR)"}, {"answer": "SELECT COUNT(area__km_2__) FROM table_name_60 WHERE common_of = \"collegno\" AND population < 50137", "question": "How much Area (km 2) has a Common of collegno, and a Population smaller than 50137?", "context": "CREATE TABLE table_name_60 (area__km_2__ VARCHAR, common_of VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_name_41 WHERE altitude__mslm_ > 302 AND area__km_2__ = 29.2", "question": "How many people have an Altitude (mslm) larger than 302, and an Area (km 2) of 29.2?", "context": "CREATE TABLE table_name_41 (population VARCHAR, altitude__mslm_ VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_19 WHERE altitude__mslm_ < 229 AND area__km_2__ > 32.7", "question": "Which Population is the highest one that has an Altitude (mslm) smaller than 229, and an Area (km 2) larger than 32.7?", "context": "CREATE TABLE table_name_19 (population INTEGER, altitude__mslm_ VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT builder FROM table_name_75 WHERE launched = \"20 jun 1953\"", "question": "what builder launched 20 jun 1953?", "context": "CREATE TABLE table_name_75 (builder VARCHAR, launched VARCHAR)"}, {"answer": "SELECT commissioned FROM table_name_8 WHERE laid_down = \"17 dec 1951\"", "question": "what is the commissioned date with laid down of 17 dec 1951?", "context": "CREATE TABLE table_name_8 (commissioned VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT round FROM table_name_51 WHERE player = \"matt brait\"", "question": "What round was matt brait?", "context": "CREATE TABLE table_name_51 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_88 WHERE round = \"2\" AND position = \"center\"", "question": "Which player is in position center for round 2?", "context": "CREATE TABLE table_name_88 (player VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_55 WHERE nationality = \"sweden\" AND round = \"2\"", "question": "What position is Sweden in round 2?", "context": "CREATE TABLE table_name_55 (position VARCHAR, nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT height FROM table_name_80 WHERE number = 52", "question": "What is the height of number 52?", "context": "CREATE TABLE table_name_80 (height VARCHAR, number VARCHAR)"}, {"answer": "SELECT number FROM table_name_22 WHERE name = \"tony dixon\"", "question": "What number is Tony Dixon?", "context": "CREATE TABLE table_name_22 (number VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_99 WHERE language = \"swedish\" AND points < 10", "question": "What is the average Draw for the artist(s), whose language is Swedish, and scored less than 10 points?", "context": "CREATE TABLE table_name_99 (draw INTEGER, language VARCHAR, points VARCHAR)"}, {"answer": "SELECT economic_class FROM table_name_77 WHERE barangay = \"imelda bliss village\"", "question": "Which Economic Class has a Barangay of imelda bliss village?", "context": "CREATE TABLE table_name_77 (economic_class VARCHAR, barangay VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_23 WHERE 1999 = \"grand slams\"", "question": "What 1997 has grand slams for the 1999?", "context": "CREATE TABLE table_name_23 (Id VARCHAR)"}, {"answer": "SELECT 1992 FROM table_name_50 WHERE 1995 = \"atp masters series\"", "question": "What 1992 has atp masters series for the 1995?", "context": "CREATE TABLE table_name_50 (Id VARCHAR)"}, {"answer": "SELECT 1995 FROM table_name_48 WHERE 1999 = \"1r\" AND 1998 = \"4r\"", "question": "What 1995 has 1r as the 1999, and a 1998 of 4r?", "context": "CREATE TABLE table_name_48 (Id VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_46 WHERE 1993 = \"2r\" AND 1990 = \"1r\"", "question": "What 1998 has 2r as a 1993, and 1r as a 1990?", "context": "CREATE TABLE table_name_46 (Id VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_6 WHERE 1994 = \"qf\" AND 1999 = \"1r\"", "question": "What 1997, has qf as a 1994, and 1r as a 1999?", "context": "CREATE TABLE table_name_6 (Id VARCHAR)"}, {"answer": "SELECT 1993 FROM table_name_18 WHERE 1994 = \"2r\" AND 1995 = \"1r\"", "question": "What 1993 has 2r as a 1994, and 1r as a 1995?", "context": "CREATE TABLE table_name_18 (Id VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_name_26 WHERE sponsor_s_ = \"pdvsa\"", "question": "Which Driver has a Sponsor of pdvsa?", "context": "CREATE TABLE table_name_26 (driver_s_ VARCHAR, sponsor_s_ VARCHAR)"}, {"answer": "SELECT colours FROM table_name_26 WHERE head_coach = \"benedikt gu\u00f0mundsson\"", "question": "What are the colours of the team with benedikt gu\u00f0mundsson as head coach?", "context": "CREATE TABLE table_name_26 (colours VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT city, _region FROM table_name_35 WHERE arena = \"dalh\u00fas\"", "question": "What is the city and region of the team in the dalh\u00fas arena?", "context": "CREATE TABLE table_name_35 (city VARCHAR, _region VARCHAR, arena VARCHAR)"}, {"answer": "SELECT team FROM table_name_42 WHERE arena = \"toyota h\u00f6llin\"", "question": "What team is in the toyota h\u00f6llin arena?", "context": "CREATE TABLE table_name_42 (team VARCHAR, arena VARCHAR)"}, {"answer": "SELECT team FROM table_name_5 WHERE arena = \"dhl-h\u00f6llin\"", "question": "What team is in the dhl-h\u00f6llin arena?", "context": "CREATE TABLE table_name_5 (team VARCHAR, arena VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_19 WHERE tries_against = \"49\" AND lost = \"14\"", "question": "What is the number of points for the team with 49 tries against and 14 lost?", "context": "CREATE TABLE table_name_19 (points_against VARCHAR, tries_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_35 WHERE tries_against = \"33\" AND lost = \"5\"", "question": "What is the losing bonus for the team that has 33 tries against and 5 lost?", "context": "CREATE TABLE table_name_35 (losing_bonus VARCHAR, tries_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_48 WHERE losing_bonus = \"losing bonus\"", "question": "What is the tries against for the team that has a losing bonus?", "context": "CREATE TABLE table_name_48 (tries_against VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_22 WHERE played = \"22\" AND tries_against = \"33\" AND points = \"60\"", "question": "What is the number of tries for the team that has 22 plays with 33 tries against and 60 points?", "context": "CREATE TABLE table_name_22 (tries_for VARCHAR, points VARCHAR, played VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_9 WHERE played = \"22\" AND points_against = \"428\"", "question": "What is the losing bonus of the team with 22 pays and 428 points against?", "context": "CREATE TABLE table_name_9 (losing_bonus VARCHAR, played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT years FROM table_name_31 WHERE nationality = \"spain\" AND goals = 215", "question": "Name the years for spain with 215 goals", "context": "CREATE TABLE table_name_31 (years VARCHAR, nationality VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_8 WHERE name = \"josep samitier\"", "question": "Name the most goals for josep samitier", "context": "CREATE TABLE table_name_8 (goals INTEGER, name VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE december < 22 AND score = \"4\u20133\"", "question": "Which Record has a December smaller than 22 and a Score of 4\u20133?", "context": "CREATE TABLE table_name_58 (record VARCHAR, december VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE record = \"15\u201312\u20132\"", "question": "Which Score has a Record of 15\u201312\u20132?", "context": "CREATE TABLE table_name_28 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(december) FROM table_name_35 WHERE game = 37 AND points < 47", "question": "Which December has a Game of 37 and Points smaller than 47?", "context": "CREATE TABLE table_name_35 (december INTEGER, game VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_1 WHERE december < 6 AND score = \"1\u20131 ot\" AND game < 28", "question": "Which Points have a December smaller than 6, and a Score of 1\u20131 ot, and a Game smaller than 28?", "context": "CREATE TABLE table_name_1 (points INTEGER, game VARCHAR, december VARCHAR, score VARCHAR)"}, {"answer": "SELECT game FROM table_name_3 WHERE score = \"4\u20130\" AND points = 44", "question": "Which Game has a Score of 4\u20130 and Points of 44?", "context": "CREATE TABLE table_name_3 (game VARCHAR, score VARCHAR, points VARCHAR)"}, {"answer": "SELECT previous_conference FROM table_name_23 WHERE year_joined < 1976 AND ihsaa_class = \"a\"", "question": "Which Previous conference has a Year joined smaller than 1976, and an IHSAA Class of A?", "context": "CREATE TABLE table_name_23 (previous_conference VARCHAR, year_joined VARCHAR, ihsaa_class VARCHAR)"}, {"answer": "SELECT SUM(enrollment) FROM table_name_5 WHERE mascot = \"norsemen\"", "question": "Which Enrollment has a Mascot of norsemen?", "context": "CREATE TABLE table_name_5 (enrollment INTEGER, mascot VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_38 WHERE previous_conference = \"independents\" AND location = \"akron\"", "question": "Which Mascot has a Previous conference of independents, and a Location of akron?", "context": "CREATE TABLE table_name_38 (mascot VARCHAR, previous_conference VARCHAR, location VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_2 WHERE mascot = \"wildcats\"", "question": "Which IHSAA Class has a Mascot of wildcats?", "context": "CREATE TABLE table_name_2 (ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT school FROM table_name_96 WHERE location = \"wabash\" AND mascot = \"knights\"", "question": "Which School in Wabash has a Mascot of knights?", "context": "CREATE TABLE table_name_96 (school VARCHAR, location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT SUM(win_percentage) FROM table_name_55 WHERE name = \"red kelly\"", "question": "Which Win percentage has a Name of red kelly?", "context": "CREATE TABLE table_name_55 (win_percentage INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_53 WHERE games = 105", "question": "Which Name has Games of 105?", "context": "CREATE TABLE table_name_53 (name VARCHAR, games VARCHAR)"}, {"answer": "SELECT AVG(win_percentage) FROM table_name_79 WHERE points < 472 AND record__w_l_t___otl_ = \"140\u2013220\u201340\"", "question": "Which Win percentage has Points smaller than 472, and a Record (W\u2013L\u2013T/OTL) of 140\u2013220\u201340?", "context": "CREATE TABLE table_name_79 (win_percentage INTEGER, points VARCHAR, record__w_l_t___otl_ VARCHAR)"}, {"answer": "SELECT round FROM table_name_72 WHERE h___a = \"a\" AND opponents = \"notts county\"", "question": "Which round has an H/A of A with Notts County as opponents?", "context": "CREATE TABLE table_name_72 (round VARCHAR, h___a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT premiership_years FROM table_name_65 WHERE years_in_competition = \"1983-1992\"", "question": "What was the Premiership Years that had in the Competition of 1983-1992?", "context": "CREATE TABLE table_name_65 (premiership_years VARCHAR, years_in_competition VARCHAR)"}, {"answer": "SELECT years_in_competition FROM table_name_2 WHERE premiership_years = \"1982, 1984, 1999, 2002-03, 2008-09-10\"", "question": "What was the Years in competition that had a Premiership of 1982, 1984, 1999, 2002-03, 2008-09-10?", "context": "CREATE TABLE table_name_2 (years_in_competition VARCHAR, premiership_years VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_76 WHERE years_in_competition = \"1982-1994\"", "question": "What is the Nickname in the Competition of 1982-1994?", "context": "CREATE TABLE table_name_76 (nickname VARCHAR, years_in_competition VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_26 WHERE no_of_premierships = 0 AND years_in_competition = \"1982-2003\"", "question": "What was the Nickname that had a No. 0, and Years in Competition of 1982-2003?", "context": "CREATE TABLE table_name_26 (nickname VARCHAR, no_of_premierships VARCHAR, years_in_competition VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_49 WHERE score = \"1\u20131 ot\"", "question": "Which highest Points has a Score of 1\u20131 ot?", "context": "CREATE TABLE table_name_49 (points INTEGER, score VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_13 WHERE round = 6", "question": "Which College/Junior/Club team has a Round of 6?", "context": "CREATE TABLE table_name_13 (college_junior_club_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT record FROM table_name_41 WHERE date = \"april 16\"", "question": "What was the record on April 16?", "context": "CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_53 WHERE date = \"april 8\"", "question": "What was the record on April 8?", "context": "CREATE TABLE table_name_53 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE visitor = \"chicago black hawks\" AND record = \"1-1\"", "question": "What date was the visitor chicago black hawks, and a Record of 1-1?", "context": "CREATE TABLE table_name_12 (date VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_name_80 WHERE studio_host = \"jimmy myers\"", "question": "Studio host of jimmy myers had what play by play?", "context": "CREATE TABLE table_name_80 (play_by_play VARCHAR, studio_host VARCHAR)"}, {"answer": "SELECT studio_host FROM table_name_47 WHERE play_by_play = \"sean grande\" AND year = \"2004-05\"", "question": "Play-by-play of sean grande, and a Year of 2004-05 had what studio host?", "context": "CREATE TABLE table_name_47 (studio_host VARCHAR, play_by_play VARCHAR, year VARCHAR)"}, {"answer": "SELECT studio_host FROM table_name_10 WHERE year = \"2006-07\"", "question": "Year of 2006-07 had what studio host?", "context": "CREATE TABLE table_name_10 (studio_host VARCHAR, year VARCHAR)"}, {"answer": "SELECT studio_host FROM table_name_1 WHERE play_by_play = \"sean grande\" AND flagship_station = \"wrko\" AND year = \"2005-06\"", "question": "Play-by-play of sean grande, and a Flagship Station of wrko, and a Year of 2005-06 had what studio host?", "context": "CREATE TABLE table_name_1 (studio_host VARCHAR, year VARCHAR, play_by_play VARCHAR, flagship_station VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_name_38 WHERE studio_host = \"john ryder\" AND year = \"2007-08\"", "question": "Studio host of john ryder, and a Year of 2007-08 had what play by play?", "context": "CREATE TABLE table_name_38 (play_by_play VARCHAR, studio_host VARCHAR, year VARCHAR)"}, {"answer": "SELECT color_commentator_s_ FROM table_name_99 WHERE play_by_play = \"sean grande\" AND flagship_station = \"wrko\"", "question": "Play-by-play of sean grande, and a Flagship Station of wrko involved what color commentator?", "context": "CREATE TABLE table_name_99 (color_commentator_s_ VARCHAR, play_by_play VARCHAR, flagship_station VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_95 WHERE country = \"united states\"", "question": "What was the value in 2011 for United States?", "context": "CREATE TABLE table_name_95 (country VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_45 WHERE 2009 = \"82,003\"", "question": "What was the value in 2011 when value in 2009 was 82,003?", "context": "CREATE TABLE table_name_45 (Id VARCHAR)"}, {"answer": "SELECT country FROM table_name_68 WHERE rank = \"1\"", "question": "What country was rank 1?", "context": "CREATE TABLE table_name_68 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT country FROM table_name_43 WHERE rank = \"4\"", "question": "What country was rank 4?", "context": "CREATE TABLE table_name_43 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_79 WHERE games_started = \"4\"", "question": "Games started of 4 is in what hometown?", "context": "CREATE TABLE table_name_79 (hometown VARCHAR, games_started VARCHAR)"}, {"answer": "SELECT previous_experience FROM table_name_41 WHERE weight > 180 AND player = \"charles b. carter\"", "question": "Weight larger than 180, and a Player of charles b. carter is what previous experience?", "context": "CREATE TABLE table_name_41 (previous_experience VARCHAR, weight VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_24 WHERE player = \"herbert s. graver\"", "question": "Player of herbert s. graver has what position?", "context": "CREATE TABLE table_name_24 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(weight) FROM table_name_33 WHERE position = \"fullback\"", "question": "Position of fullback has what highest weight?", "context": "CREATE TABLE table_name_33 (weight INTEGER, position VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_9 WHERE on_air_id = \"7bu\"", "question": "what is the callsign whtat uses 7bu?", "context": "CREATE TABLE table_name_9 (callsign VARCHAR, on_air_id VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_65 WHERE player = \"ben crenshaw\" AND wins > 14", "question": "What is the highest rank for ben crenshaw after winning more than 14 times?", "context": "CREATE TABLE table_name_65 (rank INTEGER, player VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_87 WHERE player = \"ben crenshaw\"", "question": "What is the lowest number of wins for ben crenshaw?", "context": "CREATE TABLE table_name_87 (wins INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE wins = 14", "question": "What player has 14 wins?", "context": "CREATE TABLE table_name_83 (player VARCHAR, wins VARCHAR)"}, {"answer": "SELECT 1995 FROM table_name_15 WHERE 1993 = \"atp masters series\"", "question": "What is the 1995 value with of the 1993 ATP Masters Series?", "context": "CREATE TABLE table_name_15 (Id VARCHAR)"}, {"answer": "SELECT 1993 FROM table_name_49 WHERE 1997 = \"grand slams\"", "question": "What is the 1993 value of the 1997 Grand Slams?", "context": "CREATE TABLE table_name_49 (Id VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_4 WHERE 1995 = \"a\" AND 1993 = \"a\" AND 1996 = \"1r\"", "question": "What is the 1998 value with A in 1995, A in 1993, and 1r in 1996?", "context": "CREATE TABLE table_name_4 (Id VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_18 WHERE team = \"czechoslovakia\" AND drawn > 0", "question": "How many games does team Czechoslovakia have that had a drawn greater than 0?", "context": "CREATE TABLE table_name_18 (games INTEGER, team VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT Prime AS minister FROM table_name_68 WHERE term_in_office = \"344 days\"", "question": "Which Prime Minister's served a term of 344 days?", "context": "CREATE TABLE table_name_68 (Prime VARCHAR, term_in_office VARCHAR)"}, {"answer": "SELECT minister FROM table_name_46 WHERE term_in_office = \"307 days\"", "question": "Who was the Minister that served for 307 days?", "context": "CREATE TABLE table_name_46 (minister VARCHAR, term_in_office VARCHAR)"}, {"answer": "SELECT ceremony FROM table_name_35 WHERE work = \"big titty milfs\"", "question": "what ceremony did big titty milfs work in", "context": "CREATE TABLE table_name_35 (ceremony VARCHAR, work VARCHAR)"}, {"answer": "SELECT result FROM table_name_52 WHERE date = \"28 february 2001\"", "question": "What was the end result for 28 February 2001?", "context": "CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(yards) FROM table_name_62 WHERE player = \"davin meggett\" AND rec > 9", "question": "How many yards did Davin Meggett have with more than 9 Rec.?", "context": "CREATE TABLE table_name_62 (yards INTEGER, player VARCHAR, rec VARCHAR)"}, {"answer": "SELECT COUNT(avg) FROM table_name_89 WHERE yards > 20 AND player = \"darrius heyward-bey\" AND long < 80", "question": "What is Darrius Heyward-Bey's average with more than 20 yards and less than 80 long?", "context": "CREATE TABLE table_name_89 (avg VARCHAR, long VARCHAR, yards VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_77 WHERE time_retired = \"+10.131 secs\"", "question": "How many points are associated with a Time/Retired of +10.131 secs?", "context": "CREATE TABLE table_name_77 (points VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_80 WHERE time_retired = \"+8.180 secs\" AND laps < 47", "question": "What is the grid associated witha Time/Retired of +8.180 secs, and under 47 laps?", "context": "CREATE TABLE table_name_80 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_81 WHERE points_for > 545", "question": "What is the highest drawn for points over 545?", "context": "CREATE TABLE table_name_81 (drawn INTEGER, points_for INTEGER)"}, {"answer": "SELECT AVG(lost) FROM table_name_32 WHERE points_for = 545", "question": "What's the average loss when the points were 545?", "context": "CREATE TABLE table_name_32 (lost INTEGER, points_for VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_66 WHERE order = \"2nd\" AND played > 13", "question": "How many games were lost when the order was 2nd and the play was more than 13", "context": "CREATE TABLE table_name_66 (lost VARCHAR, order VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_27 WHERE bronze = 2 AND gold > 0 AND nation = \"ynys m\u00f4n/anglesey\" AND total > 8", "question": "Name the least rank with bronze of 2, gold more than 0 and nation of ynys m\u00f4n/anglesey with total more than 8", "context": "CREATE TABLE table_name_27 (rank INTEGER, total VARCHAR, nation VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_54 WHERE rank < 7 AND gold > 16 AND bronze < 29", "question": "Name the least total with rank less than 7, gold more than 16 and bronze less than 29", "context": "CREATE TABLE table_name_54 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_57 WHERE silver = 6 AND bronze > 5 AND gold < 4", "question": "Name the total number of total with silver of 6, bronze more than 5 and gold less than 4", "context": "CREATE TABLE table_name_57 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE game > 11 AND october = 30", "question": "What score has a game greater than 11 on October 30?", "context": "CREATE TABLE table_name_1 (score VARCHAR, game VARCHAR, october VARCHAR)"}, {"answer": "SELECT october FROM table_name_13 WHERE record = \"0-2-2\"", "question": "What October has 0-2-2 as the record?", "context": "CREATE TABLE table_name_13 (october VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_17 WHERE opponent = \"@ florida panthers\" AND record = \"0-1-2\" AND october > 8", "question": "What average game has @ florida panthers as the opponent, 0-1-2 as the record, with an october greater than 8?", "context": "CREATE TABLE table_name_17 (game INTEGER, october VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_99 WHERE games = 64 AND champs < 0", "question": "Which Lost has Games of 64, and Champs smaller than 0?", "context": "CREATE TABLE table_name_99 (lost INTEGER, games VARCHAR, champs VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_name_40 WHERE champs < 0", "question": "Which Draw is the lowest one that has Champs smaller than 0?", "context": "CREATE TABLE table_name_40 (draw INTEGER, champs INTEGER)"}, {"answer": "SELECT win_lose_percentage FROM table_name_92 WHERE champs > 0 AND draw > 3", "question": "Which Win/Lose Percentage has Champs larger than 0, and a Draw larger than 3?", "context": "CREATE TABLE table_name_92 (win_lose_percentage VARCHAR, champs VARCHAR, draw VARCHAR)"}, {"answer": "SELECT AVG(champs) FROM table_name_16 WHERE draw > 2 AND games < 60", "question": "Which Champs is the average one that has a Draw larger than 2, and Games smaller than 60?", "context": "CREATE TABLE table_name_16 (champs INTEGER, draw VARCHAR, games VARCHAR)"}, {"answer": "SELECT launched FROM table_name_55 WHERE name = \"ushio dd-54\"", "question": "What is the launch date for the Ushio dd-54?", "context": "CREATE TABLE table_name_55 (launched VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_77 WHERE kanji = \"\u6727\"", "question": "Which name has a Kanji of \u6727?", "context": "CREATE TABLE table_name_77 (name VARCHAR, kanji VARCHAR)"}, {"answer": "SELECT kanji FROM table_name_84 WHERE name = \"ayanami dd-45\"", "question": "What is the Kanji for the Ayanami dd-45?", "context": "CREATE TABLE table_name_84 (kanji VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(size__steps_) FROM table_name_44 WHERE size__cents_ = 58.54 AND just_ratio = \"28:27\" AND just__cents_ > 62.96", "question": "size (steps) that has a size (cents) of 58.54, and a just ratio of 28:27, and a just (cents) larger than 62.96 is what total number?", "context": "CREATE TABLE table_name_44 (size__steps_ VARCHAR, just__cents_ VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR)"}, {"answer": "SELECT MAX(size__cents_) FROM table_name_26 WHERE size__steps_ = 15 AND just__cents_ > 435.08", "question": "size (steps) of 15, and a just (cents) larger than 435.08 is what highest size (cents)?", "context": "CREATE TABLE table_name_26 (size__cents_ INTEGER, size__steps_ VARCHAR, just__cents_ VARCHAR)"}, {"answer": "SELECT MAX(size__steps_) FROM table_name_38 WHERE just_ratio = \"16:13\"", "question": "ratio of 16:13 has how many highest size (steps)?", "context": "CREATE TABLE table_name_38 (size__steps_ INTEGER, just_ratio VARCHAR)"}, {"answer": "SELECT AVG(size__cents_) FROM table_name_40 WHERE just_ratio = \"15:14\" AND just__cents_ > 119.44", "question": "ratio of 15:14, and a just (cents) larger than 119.44 is what average size (cents)?", "context": "CREATE TABLE table_name_40 (size__cents_ INTEGER, just_ratio VARCHAR, just__cents_ VARCHAR)"}, {"answer": "SELECT home FROM table_name_77 WHERE venue = \"stadion pod vrmcem\"", "question": "Who was the home team for the match at Stadion pod Vrmcem?", "context": "CREATE TABLE table_name_77 (home VARCHAR, venue VARCHAR)"}, {"answer": "SELECT guest FROM table_name_76 WHERE score__first_match_ = \"3:0 (0:2)\"", "question": "Who were the guest team wehn the match score was 3:0 (0:2)?", "context": "CREATE TABLE table_name_76 (guest VARCHAR, score__first_match_ VARCHAR)"}, {"answer": "SELECT picture_coding_types FROM table_name_57 WHERE chroma_format = \"4:2:2 or 4:2:0\" AND name = \"4:2:2 profile\"", "question": "What Picture Coding Types have Chroma Format of 4:2:2 or 4:2:0 and the Name of 4:2:2 profile?", "context": "CREATE TABLE table_name_57 (picture_coding_types VARCHAR, chroma_format VARCHAR, name VARCHAR)"}, {"answer": "SELECT intra_dc_precision FROM table_name_59 WHERE name = \"main profile\"", "question": "Name the Intra DC Precision that has the Name main profile?", "context": "CREATE TABLE table_name_59 (intra_dc_precision VARCHAR, name VARCHAR)"}, {"answer": "SELECT chroma_format FROM table_name_69 WHERE picture_coding_types = \"i, p, b\" AND name = \"main profile\"", "question": "What Chroma Format that has both Picture Coding Types of i, p, b, and the Name of main profile?", "context": "CREATE TABLE table_name_69 (chroma_format VARCHAR, picture_coding_types VARCHAR, name VARCHAR)"}, {"answer": "SELECT player FROM table_name_21 WHERE division = \"west\" AND team = \"special teams\" AND school = \"toledo western michigan\"", "question": "What Player is from the west Division and the Team of special teams and is from the School Toledo Western Michigan?", "context": "CREATE TABLE table_name_21 (player VARCHAR, school VARCHAR, division VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_45 WHERE country = \"australia\"", "question": "What are the lowest wins for Australia?", "context": "CREATE TABLE table_name_45 (wins INTEGER, country VARCHAR)"}, {"answer": "SELECT winners FROM table_name_47 WHERE third_place = \"0\" AND team = \"minas\"", "question": "How many winners did Minas, which has 0 third places, have?", "context": "CREATE TABLE table_name_47 (winners VARCHAR, third_place VARCHAR, team VARCHAR)"}, {"answer": "SELECT winners FROM table_name_83 WHERE team = \"halcones uv xalapa\"", "question": "How many winners did Halcones uv xalapa have?", "context": "CREATE TABLE table_name_83 (winners VARCHAR, team VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_84 WHERE team = \"espartanos de margarita\"", "question": "How many runners-up did Espartanos de Margarita have?", "context": "CREATE TABLE table_name_84 (runners_up VARCHAR, team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_34 WHERE attendance = \"60,594\"", "question": "Which Opponent has Attendances of 60,594?", "context": "CREATE TABLE table_name_34 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE result = \"l 27-7\" AND opponent = \"at minnesota vikings\"", "question": "When has a Result of l 27-7 and an Opponent of at minnesota vikings?", "context": "CREATE TABLE table_name_57 (date VARCHAR, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE week = 9", "question": "When has  a Week of 9?", "context": "CREATE TABLE table_name_60 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE opponent = \"new york jets\"", "question": "What date did the Steelers play against the New York Jets?", "context": "CREATE TABLE table_name_39 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time___et__ FROM table_name_9 WHERE week = 1", "question": "What time did the game start during week 1?", "context": "CREATE TABLE table_name_9 (time___et__ VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_21 WHERE team = \"mi-jack conquest racing\" AND time_retired = \"off course\"", "question": "How many laps for mi-jack conquest racing when they went off course?", "context": "CREATE TABLE table_name_21 (laps INTEGER, team VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_29 WHERE grid > 8 AND points < 11 AND driver = \"will power\"", "question": "How many laps are associated with a grid greater than 8, under 11 points, and will power?", "context": "CREATE TABLE table_name_29 (laps VARCHAR, driver VARCHAR, grid VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_52 WHERE gold > 1 AND total = 14 AND silver > 3", "question": "Name the average Bronze when silver is more than 3, gold is more than 1 and the total is 14", "context": "CREATE TABLE table_name_52 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_68 WHERE rank = \"7\" AND bronze < 1", "question": "Name the total number of total for rank of 7 and bronze less than 1", "context": "CREATE TABLE table_name_68 (total VARCHAR, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_46 WHERE bronze > 1 AND total < 7 AND gold > 1", "question": "Name the most silver with bronze more than 1 and gold more than 1 with total less than 7", "context": "CREATE TABLE table_name_46 (silver INTEGER, gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_56 WHERE gold < 1 AND bronze = 3", "question": "Name the sum of total for gold less than 1 and bronze of 3", "context": "CREATE TABLE table_name_56 (total INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_39 WHERE rank = \"5\" AND silver > 1", "question": "Name the total number of bronze with rank of 5 and silver more than 1", "context": "CREATE TABLE table_name_39 (bronze VARCHAR, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(population_2000_census) FROM table_name_58 WHERE area__km\u00b2_ = 464.5 AND population_density_2010___km\u00b2_ > 1840", "question": "What is the total population from the 2000 census for the municipality that has a 464.5 square km area and a population density in 2010 larger than 1840?", "context": "CREATE TABLE table_name_58 (population_2000_census VARCHAR, area__km\u00b2_ VARCHAR, population_density_2010___km\u00b2_ VARCHAR)"}, {"answer": "SELECT SUM(population__2010_census_) FROM table_name_16 WHERE administrative_division = \"japeri\" AND area__km\u00b2_ < 82.9", "question": "What was the sum of the population in 2010 for the division of japeri with an area of 82.9 squared km?", "context": "CREATE TABLE table_name_16 (population__2010_census_ INTEGER, administrative_division VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE visitor = \"atlanta\"", "question": "What was the score for the game against Atlanta?", "context": "CREATE TABLE table_name_6 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE competition = \"1936 summer olympics\" AND score = \"6-1\"", "question": "In the 1936 summer Olympics what was the date of a match that ended with a score of 6-1?", "context": "CREATE TABLE table_name_33 (date VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE result = \"5-2\"", "question": "What was the score for the game that had an end result of 5-2?", "context": "CREATE TABLE table_name_68 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_31 WHERE drawn = 1 AND games > 7", "question": "What is the total number of losses that have 1 draw and games over 7?", "context": "CREATE TABLE table_name_31 (lost VARCHAR, drawn VARCHAR, games VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_73 WHERE pick__number > 10 AND college = \"appalachian state\"", "question": "How many rounds had a pick number of more than 10 and Appalachian State as a college?", "context": "CREATE TABLE table_name_73 (round VARCHAR, pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_32 WHERE position = \"linebacker\" AND pick__number > 9", "question": "What is the largest overall where the position was linebacker and the pick number was more than 9?", "context": "CREATE TABLE table_name_32 (overall INTEGER, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT score FROM table_name_41 WHERE game < 69 AND record = \"4\u201356\"", "question": "What is the Score of the game earlier than 69 with a record of 4\u201356?", "context": "CREATE TABLE table_name_41 (score VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_31 WHERE score = \"116\u2013138\"", "question": "What is the game number with a score of 116\u2013138?", "context": "CREATE TABLE table_name_31 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE opponent = \"boston celtics\"", "question": "What is the Score of the game against the boston celtics?", "context": "CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game FROM table_name_17 WHERE date = \"february 9\"", "question": "What is the Game held on february 9?", "context": "CREATE TABLE table_name_17 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE game > 57 AND record = \"4\u201355\"", "question": "What is the Score of the game larger than 57 with a Record of 4\u201355?", "context": "CREATE TABLE table_name_15 (score VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT region FROM table_name_82 WHERE village = \"chassagne-montrachet\"", "question": "Which Reigon has a Village of Chassagne-Montrachet?", "context": "CREATE TABLE table_name_82 (region VARCHAR, village VARCHAR)"}, {"answer": "SELECT village FROM table_name_57 WHERE region = \"c\u00f4te de nuits\" AND wine_style = \"red wine\" AND grand_cru = \"latrici\u00e8res-chambertin\"", "question": "Which Village has a Region of C\u00f4te De Nuits, Wine Styles of Red Wine, and a Grand Cru of Latrici\u00e8res-Chambertin?", "context": "CREATE TABLE table_name_57 (village VARCHAR, grand_cru VARCHAR, region VARCHAR, wine_style VARCHAR)"}, {"answer": "SELECT vineyard_surface__2010_ FROM table_name_94 WHERE village = \"gevrey-chambertin\" AND grand_cru = \"latrici\u00e8res-chambertin\"", "question": "What is the Vineyeard surface (2010) with a Village of Gevrey-Chambertin, and Grand Cru of Latrici\u00e8res-Chambertin?", "context": "CREATE TABLE table_name_94 (vineyard_surface__2010_ VARCHAR, village VARCHAR, grand_cru VARCHAR)"}, {"answer": "SELECT grand_cru FROM table_name_33 WHERE wine_style = \"red wine\" AND village = \"gevrey-chambertin\"", "question": "What is the Grand Cru with a Wine Style of Red Wine and Village of Gevrey-Chambertin?", "context": "CREATE TABLE table_name_33 (grand_cru VARCHAR, wine_style VARCHAR, village VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_97 WHERE school_club_team = \"pennsylvania\"", "question": "What is the average pick number of Pennsylvania?", "context": "CREATE TABLE table_name_97 (pick INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_26 WHERE pick > 83", "question": "What is the school/club team of the player with a pick larger than 83?", "context": "CREATE TABLE table_name_26 (school_club_team VARCHAR, pick INTEGER)"}, {"answer": "SELECT school_club_team FROM table_name_92 WHERE round = 3", "question": "What is the schoo/club team of the player in round 3?", "context": "CREATE TABLE table_name_92 (school_club_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_87 WHERE school_club_team = \"ucla\"", "question": "What is the lowest round of the player from UCLA?", "context": "CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE winning_score = \u201316(62 - 71 - 71 - 68 = 272)", "question": "When was \u201316 (62-71-71-68=272) the winning score?", "context": "CREATE TABLE table_name_20 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_3 WHERE date = \"jun 17, 1973\"", "question": "What was the name of the tournament played on Jun 17, 1973?", "context": "CREATE TABLE table_name_3 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_14 WHERE runner_s__up = \"howard twitty\"", "question": "Howard Twitty was the runner-up of what tournament?", "context": "CREATE TABLE table_name_14 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_58 WHERE position = \"defence\" AND nationality = \"czechoslovakia\"", "question": "Can you tell me the College/Junior/Club Team that has the Position of defence, and the Nationality of czechoslovakia?", "context": "CREATE TABLE table_name_58 (college_junior_club_team VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT position FROM table_name_81 WHERE college_junior_club_team = \"hull olympiques (qmjhl)\"", "question": "Can you tell me the Position that has the College/Junior/Club Team of hull olympiques (qmjhl)?", "context": "CREATE TABLE table_name_81 (position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_86 WHERE round < 6 AND college_junior_club_team = \"hull olympiques (qmjhl)\"", "question": "Can you tell me the Player that has the Round smaller than 6, and the College/Junior/Club Team of hull olympiques (qmjhl)?", "context": "CREATE TABLE table_name_86 (player VARCHAR, round VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT name FROM table_name_84 WHERE position = \"center\"", "question": "What is the Name of the Center?", "context": "CREATE TABLE table_name_84 (name VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_48 WHERE college_hall_of_fame = \"no\"", "question": "What Position has no College Hall of Fame?", "context": "CREATE TABLE table_name_48 (position VARCHAR, college_hall_of_fame VARCHAR)"}, {"answer": "SELECT school FROM table_name_96 WHERE unanimous = \"no no no\"", "question": "What School has no no no Unanimously?", "context": "CREATE TABLE table_name_96 (school VARCHAR, unanimous VARCHAR)"}, {"answer": "SELECT school FROM table_name_43 WHERE position = \"quarterback\"", "question": "What is the School of the quarterback?", "context": "CREATE TABLE table_name_43 (school VARCHAR, position VARCHAR)"}, {"answer": "SELECT school FROM table_name_97 WHERE position = \"center\"", "question": "What School is the Center from?", "context": "CREATE TABLE table_name_97 (school VARCHAR, position VARCHAR)"}, {"answer": "SELECT unanimous FROM table_name_93 WHERE school = \"minnesota southern california\"", "question": "What is the Unanimous of the Minnesota Southern California School?", "context": "CREATE TABLE table_name_93 (unanimous VARCHAR, school VARCHAR)"}, {"answer": "SELECT cache FROM table_name_59 WHERE capacity = \"600 gb\"", "question": "What is the Cache with a Capacity that is 600 gb?", "context": "CREATE TABLE table_name_59 (cache VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT position FROM table_name_11 WHERE college_junior_club_team__league_ = \"estevan bruins (wchl)\" AND round = 3", "question": "Which Position has a College/Junior/Club Team (League) of estevan bruins (wchl), and a Round of 3?", "context": "CREATE TABLE table_name_11 (position VARCHAR, college_junior_club_team__league_ VARCHAR, round VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_86 WHERE player = \"larry wright\"", "question": "Which Nationality has a Player of larry wright?", "context": "CREATE TABLE table_name_86 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE date = \"august 25\"", "question": "What score has august 25 as the date?", "context": "CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_name_78 WHERE performer_1 = \"jim sweeney\" AND performer_2 = \"steve steen\"", "question": "What is the total number of episodes where jim sweeney was the 1st performer and steve steen was the 2nd performer?", "context": "CREATE TABLE table_name_78 (episode VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR)"}, {"answer": "SELECT SUM(episode) FROM table_name_37 WHERE performer_4 = \"chip esten\" AND performer_2 = \"christopher smith\"", "question": "What is the sum of the episode numbers where chip esten is the 4th performer and christopher smith was the 2nd performer?", "context": "CREATE TABLE table_name_37 (episode INTEGER, performer_4 VARCHAR, performer_2 VARCHAR)"}, {"answer": "SELECT SUM(episode) FROM table_name_96 WHERE performer_4 = \"chip esten\" AND performer_1 = \"jim meskimen\"", "question": "What is the sum of the episodes where chip esten was the 4th performer and jim meskimen was the 1st performer?", "context": "CREATE TABLE table_name_96 (episode INTEGER, performer_4 VARCHAR, performer_1 VARCHAR)"}, {"answer": "SELECT performer_3 FROM table_name_19 WHERE performer_2 = \"christopher smith\"", "question": "Who was the 3rd performer when christopher smith was the 2nd performer?", "context": "CREATE TABLE table_name_19 (performer_3 VARCHAR, performer_2 VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE time = \"4:50\"", "question": "Which Record has a Time of 4:50?", "context": "CREATE TABLE table_name_58 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT event FROM table_name_56 WHERE res = \"loss\" AND record = \"12\u20132\"", "question": "Which Event has a Resolution of loss, and a Record of 12\u20132?", "context": "CREATE TABLE table_name_56 (event VARCHAR, res VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_58 WHERE difference = \"14\"", "question": "Which Drawn has a Difference of 14?", "context": "CREATE TABLE table_name_58 (drawn INTEGER, difference VARCHAR)"}, {"answer": "SELECT played FROM table_name_4 WHERE lost > 2 AND team = \"am\u00e9rica\"", "question": "Which Played has a Lost larger than 2, and a Team of am\u00e9rica?", "context": "CREATE TABLE table_name_4 (played VARCHAR, lost VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(touchdowns) FROM table_name_31 WHERE field_goals = 0 AND player = \"joe maddock\" AND points < 5", "question": "What's the number of touchdowns that there are 0 field goals, less than 5 points, and had Joe Maddock playing?", "context": "CREATE TABLE table_name_31 (touchdowns INTEGER, points VARCHAR, field_goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT class FROM table_name_90 WHERE call_sign = \"w269ax\"", "question": "what is the class of w269ax", "context": "CREATE TABLE table_name_90 (class VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT match_report FROM table_name_12 WHERE date = \"20 august\"", "question": "What is the match report of the match on 20 August?", "context": "CREATE TABLE table_name_12 (match_report VARCHAR, date VARCHAR)"}, {"answer": "SELECT origin FROM table_name_71 WHERE launch = 2010", "question": "What is the origin for the launch taking place in 2010?", "context": "CREATE TABLE table_name_71 (origin VARCHAR, launch VARCHAR)"}, {"answer": "SELECT origin FROM table_name_82 WHERE owner = \"hunan broadcasting system (hbs)\"", "question": "What is the origin for the item with an owner of Hunan Broadcasting System (HBS)?", "context": "CREATE TABLE table_name_82 (origin VARCHAR, owner VARCHAR)"}, {"answer": "SELECT position FROM table_name_40 WHERE college = \"trinity\"", "question": "If the college is Trinity, what position is listed?", "context": "CREATE TABLE table_name_40 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_67 WHERE college = \"usc\"", "question": "How many picks did the College of USC wind up getting?", "context": "CREATE TABLE table_name_67 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT round FROM table_name_41 WHERE pick__number = 323", "question": "For Pick #323, which round is it?", "context": "CREATE TABLE table_name_41 (round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE venue = \"amblecote\"", "question": "What score has amblecote as the venue?", "context": "CREATE TABLE table_name_97 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT city FROM table_name_16 WHERE venue = \"riverside ground\" AND year < 1998", "question": "What city has riverside ground as the venue, with a year prior to 1998?", "context": "CREATE TABLE table_name_16 (city VARCHAR, venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_49 WHERE city = \"chester-le-street\" AND score = \"345 runs\"", "question": "What is the lowest year that has chester-le-street as the city, with 345 runs as the score?", "context": "CREATE TABLE table_name_49 (year INTEGER, city VARCHAR, score VARCHAR)"}, {"answer": "SELECT year FROM table_name_38 WHERE score = \"385 runs\"", "question": "What year has 385 runs as the score?", "context": "CREATE TABLE table_name_38 (year VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE year = 1998", "question": "What score has 1998 as the year?", "context": "CREATE TABLE table_name_82 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(2 AS nd__m_) FROM table_name_5 WHERE name = \"gregor schlierenzauer\"", "question": "What is the 2nd (m) value for Gregor Schlierenzauer?", "context": "CREATE TABLE table_name_5 (name VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE score = \"199 (\u201317)\"", "question": "What is the Date of the tournament with a score of 199 (\u201317)?", "context": "CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(1 AS st_prize___) AS $__ FROM table_name_95 WHERE winner = \"paul azinger (9)\"", "question": "What was the amount of the 1st prize when paul azinger (9) was the winner?", "context": "CREATE TABLE table_name_95 (winner VARCHAR)"}, {"answer": "SELECT winner FROM table_name_73 WHERE tournament = \"the tour championship\"", "question": "What is the name of the winner of the tour championship tournament?", "context": "CREATE TABLE table_name_73 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE tournament = \"at&t pebble beach national pro-am\"", "question": "What is the Date of the at&t pebble beach national pro-am Tournament?", "context": "CREATE TABLE table_name_91 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT site FROM table_name_38 WHERE sport = \"w swimming\"", "question": "Which Site has a Sport of w swimming?", "context": "CREATE TABLE table_name_38 (site VARCHAR, sport VARCHAR)"}, {"answer": "SELECT series FROM table_name_53 WHERE date = \"september 15, 2007\"", "question": "Which Series are on september 15, 2007?", "context": "CREATE TABLE table_name_53 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT position FROM table_name_5 WHERE nationality = \"usa\" AND team = \"\u00edr\" AND season = \"2010-11\"", "question": "What position did the 2010-11 USA \u00edr player have?", "context": "CREATE TABLE table_name_5 (position VARCHAR, season VARCHAR, nationality VARCHAR, team VARCHAR)"}, {"answer": "SELECT position FROM table_name_15 WHERE team = \"kr\"", "question": "What position did the kr team player play?", "context": "CREATE TABLE table_name_15 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_57 WHERE position = \"guard / forward\" AND player = \"steinar kaldal\"", "question": "What team has Steinar Kaldal, a guard / forward?", "context": "CREATE TABLE table_name_57 (team VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_68 WHERE season = \"2003-04\"", "question": "What team did the 2003-04 winner play for?", "context": "CREATE TABLE table_name_68 (team VARCHAR, season VARCHAR)"}, {"answer": "SELECT region FROM table_name_23 WHERE label = \"eyeball\" AND catalogue = \"7200222\"", "question": "Which region has and eyeball label and catalogue 7200222?", "context": "CREATE TABLE table_name_23 (region VARCHAR, label VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_31 WHERE region = \"japan\"", "question": "Which catalogue is from Japan?", "context": "CREATE TABLE table_name_31 (catalogue VARCHAR, region VARCHAR)"}, {"answer": "SELECT format FROM table_name_84 WHERE region = \"united states\" AND date = \"july 23, 2002\"", "question": "What is the format for the United States dated July 23, 2002?", "context": "CREATE TABLE table_name_84 (format VARCHAR, region VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_77 WHERE catalogue = \"7200222\"", "question": "What is the label for catalogue 7200222?", "context": "CREATE TABLE table_name_77 (label VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT surname FROM table_name_38 WHERE first = \"marc\"", "question": "What is Marc's Surname?", "context": "CREATE TABLE table_name_38 (surname VARCHAR, first VARCHAR)"}, {"answer": "SELECT MAX(uni_number) FROM table_name_32 WHERE first = \"todd\"", "question": "What is the highest uni# of the person with the first name Todd?", "context": "CREATE TABLE table_name_32 (uni_number INTEGER, first VARCHAR)"}, {"answer": "SELECT position FROM table_name_2 WHERE uni_number = 14", "question": "Which position does #14 play?", "context": "CREATE TABLE table_name_2 (position VARCHAR, uni_number VARCHAR)"}, {"answer": "SELECT bats FROM table_name_9 WHERE position = \"lhp\" AND first = \"lachlan\"", "question": "Which does the lhp player with the first name lachlan bat?", "context": "CREATE TABLE table_name_9 (bats VARCHAR, position VARCHAR, first VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_14 WHERE date = \"december 11, 1954\"", "question": "How many were in Attendance on December 11, 1954?", "context": "CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_62 WHERE week = 3", "question": "What was the Result on Week 3?", "context": "CREATE TABLE table_name_62 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT week FROM table_name_66 WHERE opponent = \"detroit lions\"", "question": "On what Week was the Detroit Lions the Opponent?", "context": "CREATE TABLE table_name_66 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_44 WHERE game = 14", "question": "What was the rangers' record on Game 14?", "context": "CREATE TABLE table_name_44 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_44 WHERE record = \"11-11-1\" AND november > 29", "question": "What is the highest game number when the rangers had a record of 11-11-1 and the date was after November 29?", "context": "CREATE TABLE table_name_44 (game INTEGER, record VARCHAR, november VARCHAR)"}, {"answer": "SELECT position FROM table_name_83 WHERE name = \"francis harris\"", "question": "What's Francis Harris' position?", "context": "CREATE TABLE table_name_83 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT place FROM table_name_99 WHERE area__km_2__ > 34.42", "question": "Which place has more area (km 2) than 34.42?", "context": "CREATE TABLE table_name_99 (place VARCHAR, area__km_2__ INTEGER)"}, {"answer": "SELECT MIN(4 AS _hoops), _2_clubs FROM table_name_66 WHERE total = 38.25", "question": "What is the lowest 4 hoops, 2 clubs of the nation with a total of 38.25?", "context": "CREATE TABLE table_name_66 (_2_clubs VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_32 WHERE nation = \"greece\" AND place > 8", "question": "What is the total of Greece, which is placed below 8?", "context": "CREATE TABLE table_name_32 (total VARCHAR, nation VARCHAR, place VARCHAR)"}, {"answer": "SELECT MAX(4 AS _hoops), _2_clubs FROM table_name_14 WHERE nation = \"belarus\" AND total < 38.25", "question": "What is the highest 4 hoops, 2 clubs of Belarus, which has a total less than 38.25?", "context": "CREATE TABLE table_name_14 (_2_clubs VARCHAR, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_33 WHERE name = \"janne happonen\"", "question": "Which Nationality has a Name of janne happonen?", "context": "CREATE TABLE table_name_33 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_71 WHERE rank > 3 AND name = \"tom hilde\"", "question": "Which Nationality has a Rank larger than 3, and a Name of tom hilde?", "context": "CREATE TABLE table_name_71 (nationality VARCHAR, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_99 WHERE nationality = \"nor\" AND points = 136", "question": "Which Name has a Nationality of nor, and Points of 136?", "context": "CREATE TABLE table_name_99 (name VARCHAR, nationality VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_56 WHERE name = \"wolfgang schwarz\" AND places > 13", "question": "What was the average rank of Wolfgang Schwarz with greater than 13 places?", "context": "CREATE TABLE table_name_56 (rank INTEGER, name VARCHAR, places VARCHAR)"}, {"answer": "SELECT nation FROM table_name_35 WHERE points = 1399.3", "question": "What nation had 1399.3 points?", "context": "CREATE TABLE table_name_35 (nation VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_12 WHERE time = \"1:09\"", "question": "What is the lowest round number for the fight that had a time of 1:09?", "context": "CREATE TABLE table_name_12 (round INTEGER, time VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_13 WHERE pick__number < 20 AND round < 6", "question": "How much Overall has a Pick # smaller than 20, and a Round smaller than 6?", "context": "CREATE TABLE table_name_13 (overall INTEGER, pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_43 WHERE pick__number > 20 AND college = \"virginia\" AND overall > 127", "question": "Which average Round has a Pick # larger than 20, and a College of virginia, and an Overall larger than 127?", "context": "CREATE TABLE table_name_43 (round INTEGER, overall VARCHAR, pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_47 WHERE name = \"chad owens\"", "question": "How many picks does chad owens have?", "context": "CREATE TABLE table_name_47 (pick__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(april) FROM table_name_90 WHERE opponent = \"new york rangers\" AND game < 82", "question": "What is the lowest value in April with New York Rangers as opponent for a game less than 82?", "context": "CREATE TABLE table_name_90 (april INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(april) FROM table_name_99 WHERE record = \"35\u201337\u201311\" AND points > 81", "question": "What is the highest value in April with a record of 35\u201337\u201311 and more than 81 points?", "context": "CREATE TABLE table_name_99 (april INTEGER, record VARCHAR, points VARCHAR)"}, {"answer": "SELECT winner FROM table_name_40 WHERE score = \"274 (\u201314)\" AND location = \"tennessee\"", "question": "What is the name of the winner when the Score was 274 (\u201314) in tennessee?", "context": "CREATE TABLE table_name_40 (winner VARCHAR, score VARCHAR, location VARCHAR)"}, {"answer": "SELECT winner FROM table_name_23 WHERE tournament = \"western open\"", "question": "What is the winners name at the western open?", "context": "CREATE TABLE table_name_23 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE tournament = \"danny thomas memphis classic\"", "question": "What is the score of the Tournament named danny thomas memphis classic?", "context": "CREATE TABLE table_name_23 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winner FROM table_name_71 WHERE location = \"north carolina\" AND tournament = \"greater greensboro open\"", "question": "What is the name of the Winner in north carolina at the greater greensboro open?", "context": "CREATE TABLE table_name_71 (winner VARCHAR, location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT location FROM table_name_94 WHERE tournament = \"byron nelson golf classic\"", "question": "What is the Location of the byron nelson golf classic?", "context": "CREATE TABLE table_name_94 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT position FROM table_name_59 WHERE player = \"tiffany garofano (2)\"", "question": "What is the position of player Tiffany Garofano (2)?", "context": "CREATE TABLE table_name_59 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT week FROM table_name_19 WHERE school = \"ball state\"", "question": "What is the week with a school that is ball state?", "context": "CREATE TABLE table_name_19 (week VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(Last) AS runners_up FROM table_name_42 WHERE last_win = \"1999\" AND runners_up > 1", "question": "What number last Runners-up where there when the Last win was 1999 and the Runners-up was bigger than 1?", "context": "CREATE TABLE table_name_42 (Last VARCHAR, last_win VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT SUM(Last) AS runners_up FROM table_name_63 WHERE club = \"dempo sc\"", "question": "What is the number of Last Runners-up that has the club name of dempo sc?", "context": "CREATE TABLE table_name_63 (Last INTEGER, club VARCHAR)"}, {"answer": "SELECT position FROM table_name_97 WHERE round > 6 AND player = \"neil pilon\"", "question": "Which Position has a Round larger than 6, and a Player of neil pilon?", "context": "CREATE TABLE table_name_97 (position VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_51 WHERE player = \"rudy poeschek\"", "question": "Which Nationality has a Player of rudy poeschek?", "context": "CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_94 WHERE player = \"steve nemeth\"", "question": "Which Position has a Player of steve nemeth?", "context": "CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_81 WHERE nationality = \"canada\" AND player = \"pat janostin\"", "question": "Which Position has a Nationality of canada, and a Player of pat janostin?", "context": "CREATE TABLE table_name_81 (position VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE date = \"april 23, 2007\"", "question": "What was the score of the match on April 23, 2007?", "context": "CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE game_site = \"shea stadium\" AND week = 5", "question": "Which Date has a Game site of shea stadium, and a Week of 5?", "context": "CREATE TABLE table_name_18 (date VARCHAR, game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_27 WHERE week < 9 AND result = \"l 24\u201323\"", "question": "Which Attendance is the highest one that has a Week smaller than 9, and a Result of l 24\u201323?", "context": "CREATE TABLE table_name_27 (attendance INTEGER, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_65 WHERE opponent = \"baltimore colts\" AND attendance < 55 OFFSET 137", "question": "Which Week has an Opponent of baltimore colts, and an Attendance smaller than 55,137?", "context": "CREATE TABLE table_name_65 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_6 WHERE points = 53 AND opponent = \"@ minnesota north stars\" AND december > 30", "question": "Which Game has Points of 53, and an Opponent of @ minnesota north stars, and a December larger than 30?", "context": "CREATE TABLE table_name_6 (game INTEGER, december VARCHAR, points VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(december) FROM table_name_59 WHERE record = \"21\u20136\u20135\"", "question": "Which December has a Record of 21\u20136\u20135?", "context": "CREATE TABLE table_name_59 (december INTEGER, record VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_86 WHERE opponent = \"@ pittsburgh penguins\"", "question": "Which Points have an Opponent of @ pittsburgh penguins?", "context": "CREATE TABLE table_name_86 (points INTEGER, opponent VARCHAR)"}, {"answer": "SELECT year_startup FROM table_name_51 WHERE project_name = \"taq taq ph 2\"", "question": "What year was the startup for the Project Named of taq taq ph 2?", "context": "CREATE TABLE table_name_51 (year_startup VARCHAR, project_name VARCHAR)"}, {"answer": "SELECT operator FROM table_name_89 WHERE peak = \"90\" AND year_startup = \"2010\" AND project_name = \"aosp expansion 1 (jackpine ph 1a)\"", "question": "What is the operator for peak 90, in startup year 2010 for the project named Aosp expansion 1 (jackpine ph 1a)?", "context": "CREATE TABLE table_name_89 (operator VARCHAR, project_name VARCHAR, peak VARCHAR, year_startup VARCHAR)"}, {"answer": "SELECT country FROM table_name_56 WHERE peak = \"20\" AND project_name = \"jarn yabhour; ramhan\"", "question": "What country has peak 20 and a project named jarn yabhour; ramhan?", "context": "CREATE TABLE table_name_56 (country VARCHAR, peak VARCHAR, project_name VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_90 WHERE opponent = \"swindon wildcats\"", "question": "How much Attendance has an Opponent of swindon wildcats?", "context": "CREATE TABLE table_name_90 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_64 WHERE venue = \"away\" AND date = 19", "question": "Which Attendance is the lowest one that has a Venue of away, and a Date of 19?", "context": "CREATE TABLE table_name_64 (attendance INTEGER, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_65 WHERE result = \"won 5-4\"", "question": "Which Venue has a Result of won 5-4?", "context": "CREATE TABLE table_name_65 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT country FROM table_name_89 WHERE town = \"dubai\"", "question": "what country has dubai", "context": "CREATE TABLE table_name_89 (country VARCHAR, town VARCHAR)"}, {"answer": "SELECT country FROM table_name_50 WHERE town = \"dubai\"", "question": "what country is dubai in", "context": "CREATE TABLE table_name_50 (country VARCHAR, town VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_87 WHERE date = \"june 22\"", "question": "What home team has june 22 as the date?", "context": "CREATE TABLE table_name_87 (home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_67 WHERE result = \"86-84\"", "question": "What road team has 86-84 as the result?", "context": "CREATE TABLE table_name_67 (road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_86 WHERE result = \"91-82\"", "question": "What road team has 91-82 as the result?", "context": "CREATE TABLE table_name_86 (road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT game FROM table_name_26 WHERE road_team = \"houston\" AND date = \"june 15\"", "question": "Which game has houston as the road team, and june 15 as the date?", "context": "CREATE TABLE table_name_26 (game VARCHAR, road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT occupation FROM table_name_71 WHERE hometown = \"santa monica, california\"", "question": "What is listed under occupation for someone from Santa Monica, California?", "context": "CREATE TABLE table_name_71 (occupation VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT education FROM table_name_47 WHERE hometown = \"st. louis, missouri\"", "question": "For natives of St. Louis, Missouri, what was listed under education?", "context": "CREATE TABLE table_name_47 (education VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT game_status FROM table_name_21 WHERE occupation = \"utility worker on-air talent\"", "question": "When the occupation was utility worker on-air talent, what was the game status?", "context": "CREATE TABLE table_name_21 (game_status VARCHAR, occupation VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_3 WHERE 2004 = \"3\u20132\"", "question": "Which 2005 has a 2004 of 3\u20132?", "context": "CREATE TABLE table_name_3 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_66 WHERE 2009 = \"15\u20132\"", "question": "Which 2011 has a 2009 of 15\u20132?", "context": "CREATE TABLE table_name_66 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_51 WHERE 2006 = \"w\"", "question": "Which 2010 has a 2006 of w?", "context": "CREATE TABLE table_name_51 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_48 WHERE 2005 = \"13\u20133\"", "question": "Which 2008 has a 2005 of 13\u20133?", "context": "CREATE TABLE table_name_48 (Id VARCHAR)"}, {"answer": "SELECT time FROM table_name_4 WHERE ground = \"ghantoot racing and polo club\"", "question": "What is the time of the Ghantoot Racing and Polo Club?", "context": "CREATE TABLE table_name_4 (time VARCHAR, ground VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_90 WHERE away_team = \"adelaide\"", "question": "What is the home team score of the game with Adelaide as the away team?", "context": "CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT time FROM table_name_81 WHERE home_team = \"essendon\"", "question": "What is the time of the Essendon home team game?", "context": "CREATE TABLE table_name_81 (time VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_25 WHERE ground = \"ghantoot racing and polo club\"", "question": "What is the home team score of the Ghantoot Racing and Polo Club Ground?", "context": "CREATE TABLE table_name_25 (home_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT region FROM table_name_29 WHERE date = \"february 2006\"", "question": "What shows for region when the date is february 2006?", "context": "CREATE TABLE table_name_29 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_61 WHERE catalog = \"11 135\"", "question": "What shows as the format for catalog 11 135?", "context": "CREATE TABLE table_name_61 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_63 WHERE catalog = \"885 380-1\"", "question": "In what Region is Catalog number 885 380-1?", "context": "CREATE TABLE table_name_63 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT sampling_memory_upgrade_able FROM table_name_66 WHERE sampling_rate = \"16-bit 44.1khz\"", "question": "Which Sampling Memory/Upgrade-able has a rate of 16-bit 44.1khz?", "context": "CREATE TABLE table_name_66 (sampling_memory_upgrade_able VARCHAR, sampling_rate VARCHAR)"}, {"answer": "SELECT SUM(release_date) FROM table_name_63 WHERE sampling_rate = \"12-bit 40khz\"", "question": "Around what time frame release a Sampling Rate of 12-bit 40khz?", "context": "CREATE TABLE table_name_63 (release_date INTEGER, sampling_rate VARCHAR)"}, {"answer": "SELECT price FROM table_name_65 WHERE sampling_rate = \"12-bit 40khz\"", "question": "How much is a product with a Sampling Rate of 12-bit 40khz?", "context": "CREATE TABLE table_name_65 (price VARCHAR, sampling_rate VARCHAR)"}, {"answer": "SELECT record FROM table_name_65 WHERE date = \"december 19\"", "question": "what team scored on december 19", "context": "CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_71 WHERE record = \"5\u20135\u20131\u20131\"", "question": "what team scored 5\u20135\u20131\u20131?", "context": "CREATE TABLE table_name_71 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_65 WHERE date = \"november 7\"", "question": "what team scored on november 7", "context": "CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_24 WHERE rank = 1", "question": "Which player has rank 1?", "context": "CREATE TABLE table_name_24 (player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_91 WHERE rank > 5", "question": "What's the mean number of wins with a rank that's more than 5?", "context": "CREATE TABLE table_name_91 (wins INTEGER, rank INTEGER)"}, {"answer": "SELECT earnings___$__ FROM table_name_40 WHERE player = \"tiger woods\"", "question": "What amount of earnings does Tiger Woods have?", "context": "CREATE TABLE table_name_40 (earnings___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_99 WHERE points > 24 AND w_l_d = \"8-5-3\"", "question": "What is the position number of the club with more than 24 points and a w-l-d of 8-5-3?", "context": "CREATE TABLE table_name_99 (position VARCHAR, points VARCHAR, w_l_d VARCHAR)"}, {"answer": "SELECT goals_for_against FROM table_name_94 WHERE points = 17", "question": "What is the goals for/against of the club with 17 points?", "context": "CREATE TABLE table_name_94 (goals_for_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(games_played) FROM table_name_85 WHERE position < 4 AND goals_for_against = \"29-24\"", "question": "What is the highest number of games played of the club with a position number less than 4 and a 29-24 goals for/against?", "context": "CREATE TABLE table_name_85 (games_played INTEGER, position VARCHAR, goals_for_against VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE attendance > 35 OFFSET 540", "question": "Which date's attendance was more than 35,540?", "context": "CREATE TABLE table_name_3 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT MIN(attendance) FROM table_name_39 WHERE date = \"december 3, 1944\"", "question": "What is the smallest attendance number for December 3, 1944?", "context": "CREATE TABLE table_name_39 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT treaty_of_cession FROM table_name_60 WHERE colony = \"karikal\"", "question": "When was the Treaty of Cession for Karikal Colony?", "context": "CREATE TABLE table_name_60 (treaty_of_cession VARCHAR, colony VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE opponent = \"argentina\"", "question": "what day was the game in argentina", "context": "CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT city FROM table_name_78 WHERE results\u00b9 = \"0:0\"", "question": "what city scored 0:0", "context": "CREATE TABLE table_name_78 (city VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT type_of_game FROM table_name_27 WHERE date = \"june 14\"", "question": "what game was played on june 14", "context": "CREATE TABLE table_name_27 (type_of_game VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE date = \"april 28\"", "question": "What score has april 28 as the date?", "context": "CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE leading_scorer = \"tim duncan (27)\"", "question": "What score has tim duncan (27) as the leading scorer?", "context": "CREATE TABLE table_name_96 (score VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_18 WHERE leading_scorer = \"tim duncan (16)\"", "question": "What visitor has tim duncan (16) as the leading scorer?", "context": "CREATE TABLE table_name_18 (visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_89 WHERE name = \"will rackley\"", "question": "What were Will Rackley's total rounds?", "context": "CREATE TABLE table_name_89 (round VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_30 WHERE position = \"cornerback\" AND pick__number < 16", "question": "Which cornerback has the lowest overall and a pick number smaller than 16?", "context": "CREATE TABLE table_name_30 (overall INTEGER, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_97 WHERE position = \"cornerback\"", "question": "Which cornerback has the highest round?", "context": "CREATE TABLE table_name_97 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_99 WHERE date = \"25 october 2004\"", "question": "What was the outcome on 25 october 2004?", "context": "CREATE TABLE table_name_99 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_6 WHERE outcome = \"runner-up\" AND date = \"2 march 1998\"", "question": "Which opponent was a runner-up on 2 march 1998?", "context": "CREATE TABLE table_name_6 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT championship FROM table_name_8 WHERE opponent_in_the_final = \"mario an\u010di\u0107\"", "question": "Which championship had an oppenent of mario an\u010di\u0107 in the final?", "context": "CREATE TABLE table_name_8 (championship VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT change FROM table_name_71 WHERE share = \"2.9%\"", "question": "Name the change with share of 2.9%", "context": "CREATE TABLE table_name_71 (change VARCHAR, share VARCHAR)"}, {"answer": "SELECT change FROM table_name_78 WHERE party = \"english democrats\"", "question": "Name the change for english democrats", "context": "CREATE TABLE table_name_78 (change VARCHAR, party VARCHAR)"}, {"answer": "SELECT AVG(votes) FROM table_name_22 WHERE party = \"one london\"", "question": "Name the average votes for one london", "context": "CREATE TABLE table_name_22 (votes INTEGER, party VARCHAR)"}, {"answer": "SELECT country FROM table_name_77 WHERE rank = 5", "question": "Which Country has a Rank of 5?", "context": "CREATE TABLE table_name_77 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(earnings___) AS $__ FROM table_name_60 WHERE rank = 1 AND events < 22", "question": "Which Earnings ($) is the lowest one that has a Rank of 1, and Events smaller than 22?", "context": "CREATE TABLE table_name_60 (earnings___ INTEGER, rank VARCHAR, events VARCHAR)"}, {"answer": "SELECT SUM(earnings___) AS $__ FROM table_name_70 WHERE wins > 3", "question": "How many earnings have Wins larger than 3?", "context": "CREATE TABLE table_name_70 (earnings___ INTEGER, wins INTEGER)"}, {"answer": "SELECT player FROM table_name_49 WHERE wins = 4", "question": "Which Player has 4 Wins?", "context": "CREATE TABLE table_name_49 (player VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(poles) FROM table_name_92 WHERE bike = \"honda rc212v\" AND podiums < 0", "question": "How many Poles have a Bike of honda rc212v, and Podiums smaller than 0?", "context": "CREATE TABLE table_name_92 (poles VARCHAR, bike VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_3 WHERE pos = \"2nd\" AND poles > 2", "question": "Which Wins is the highest one that has a Pos of 2nd, and Poles larger than 2?", "context": "CREATE TABLE table_name_3 (wins INTEGER, pos VARCHAR, poles VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_55 WHERE place = \"8th\" AND draw > 8", "question": "What is the average of points for 8th place with draw more than 8?", "context": "CREATE TABLE table_name_55 (points INTEGER, place VARCHAR, draw VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_73 WHERE game < 8 AND record = \"1\u20130\u20130\"", "question": "Which Points have a Game smaller than 8, and a Record of 1\u20130\u20130?", "context": "CREATE TABLE table_name_73 (points INTEGER, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_80 WHERE record = \"5\u20133\u20131\" AND october < 29", "question": "Which Game has a Record of 5\u20133\u20131, and an October smaller than 29?", "context": "CREATE TABLE table_name_80 (game INTEGER, record VARCHAR, october VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_76 WHERE score = \"3\u20134\"", "question": "Which Game has a Score of 3\u20134?", "context": "CREATE TABLE table_name_76 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_19 WHERE record = \"4\u20132\u20131\" AND points > 9", "question": "Which Game has a Record of 4\u20132\u20131, and Points larger than 9?", "context": "CREATE TABLE table_name_19 (game INTEGER, record VARCHAR, points VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_51 WHERE position = \"defense\" AND player = \"nikita korovkin\"", "question": "Which Nationality has a Position of defense, and a Player of nikita korovkin?", "context": "CREATE TABLE table_name_51 (nationality VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_99 WHERE position = \"left wing\"", "question": "Which Nationality has a Position of left wing?", "context": "CREATE TABLE table_name_99 (nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_18 WHERE position = \"forward\"", "question": "Which Player has a Position of forward?", "context": "CREATE TABLE table_name_18 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT week_3_sept_14 FROM table_name_87 WHERE week_6_oct_5 = \"kansas (4-1)\"", "question": "Which Week 3 Sept 14 has a Week 6 Oct 5 of kansas (4-1)?", "context": "CREATE TABLE table_name_87 (week_3_sept_14 VARCHAR, week_6_oct_5 VARCHAR)"}, {"answer": "SELECT week_2_sept_7 FROM table_name_84 WHERE week_6_oct_5 = \"wake forest (3-1)\"", "question": "Which Week 2 Sept 7 has a Week 6 Oct 5 of wake forest (3-1)?", "context": "CREATE TABLE table_name_84 (week_2_sept_7 VARCHAR, week_6_oct_5 VARCHAR)"}, {"answer": "SELECT week_1_sept_2 FROM table_name_72 WHERE week_3_sept_14 = \"south florida (3-0)\"", "question": "Which Week 1 Sept 2 has a Week 3 Sept 14 of south florida (3-0)?", "context": "CREATE TABLE table_name_72 (week_1_sept_2 VARCHAR, week_3_sept_14 VARCHAR)"}, {"answer": "SELECT week_7_oct_12 FROM table_name_23 WHERE week_6_oct_5 = \"boise state (4-0)\"", "question": "Which Week 7 Oct 12 has a Week 6 Oct 5 of boise state (4-0)?", "context": "CREATE TABLE table_name_23 (week_7_oct_12 VARCHAR, week_6_oct_5 VARCHAR)"}, {"answer": "SELECT week_2_sept_7 FROM table_name_8 WHERE week_7_oct_12 = \"ball state (7-0)\"", "question": "Which Week 2 Sept 7 has a Week 7 Oct 12 of ball state (7-0)?", "context": "CREATE TABLE table_name_8 (week_2_sept_7 VARCHAR, week_7_oct_12 VARCHAR)"}, {"answer": "SELECT week_6_oct_5 FROM table_name_37 WHERE week_14_nov_30 = \"texas (11-1)\"", "question": "Which Week 6 Oct 5 has a Week 14 Nov 30 of texas (11-1)?", "context": "CREATE TABLE table_name_37 (week_6_oct_5 VARCHAR, week_14_nov_30 VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_27 WHERE player = \"tommy allman\" AND pick < 40", "question": "What is the highest round of Tommy Allman, who had a pick less than 40?", "context": "CREATE TABLE table_name_27 (round INTEGER, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE pick < 183 AND position = \"back\" AND round > 12", "question": "Who was the back player with a pick less than 183 from the round greater than 12?", "context": "CREATE TABLE table_name_41 (player VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_21 WHERE pick > 303 AND position = \"end\"", "question": "What is the total number of rounds of the end player with a pick number greater than 303?", "context": "CREATE TABLE table_name_21 (round VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_42 WHERE position = \"back\" AND round = 28", "question": "What is the highest pick of the back player from round 28?", "context": "CREATE TABLE table_name_42 (pick INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_51 WHERE pick > 315 AND round = 30", "question": "What is position of the player with a pick number greater than 315 and a round of 30?", "context": "CREATE TABLE table_name_51 (position VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_4 WHERE result = \"w 17-14\"", "question": "On what Week was the Result W 17-14?", "context": "CREATE TABLE table_name_4 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_27 WHERE week > 4 AND date = \"november 3, 1968\"", "question": "What was the Result after the Week 4 on November 3, 1968?", "context": "CREATE TABLE table_name_27 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_57 WHERE week = 4", "question": "What is the attendance in week 4?", "context": "CREATE TABLE table_name_57 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE record = \"17\u201325\"", "question": "What was the date of the game with a record of 17\u201325?", "context": "CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_47 WHERE score = \"6\u20135 (10)\"", "question": "Who was the opponent at the game with a score of 6\u20135 (10)?", "context": "CREATE TABLE table_name_47 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT res FROM table_name_1 WHERE record = \"4-4\"", "question": "What was the result of the bout that led to a 4-4 record?", "context": "CREATE TABLE table_name_1 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_19 WHERE record = \"4-3\"", "question": "Which location held the bout that led to a 4-3 record?", "context": "CREATE TABLE table_name_19 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT discs FROM table_name_90 WHERE region_1_release = \"january 22, 2008\"", "question": "What discs has a region 1 release date of January 22, 2008?", "context": "CREATE TABLE table_name_90 (discs VARCHAR, region_1_release VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_67 WHERE name = \"citigroup\"", "question": "What is the lowest rank of Citigroup?", "context": "CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(market_value___usd_million_) FROM table_name_10 WHERE industry = \"automotive\"", "question": "What is the market value of the automotive industry?", "context": "CREATE TABLE table_name_10 (market_value___usd_million_ VARCHAR, industry VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_92 WHERE result = \"t 14-14\"", "question": "Name the attendance with result of t 14-14", "context": "CREATE TABLE table_name_92 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_43 WHERE date = \"october 20, 1946\" AND week < 4", "question": "Name the total number of attendance for october 20, 1946 with week less than 4", "context": "CREATE TABLE table_name_43 (attendance VARCHAR, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_21 WHERE date = \"november 17, 1946\" AND week > 8", "question": "Name the most attendance for november 17, 1946 and week more than 8", "context": "CREATE TABLE table_name_21 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_92 WHERE rank = \"61t\"", "question": "What is the sum of the points for the player who was a rank of 61t?", "context": "CREATE TABLE table_name_92 (points INTEGER, rank VARCHAR)"}, {"answer": "SELECT player FROM table_name_87 WHERE points > 1 OFFSET 052", "question": "Who is the player who had more than 1,052 points?", "context": "CREATE TABLE table_name_87 (player VARCHAR, points INTEGER)"}, {"answer": "SELECT MAX(points) FROM table_name_96 WHERE player = \"emmitt smith\"", "question": "What are the highest points that Emmitt Smith had?", "context": "CREATE TABLE table_name_96 (points INTEGER, player VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_33 WHERE record = \"6\u20138\"", "question": "Record of 6\u20138 had what attendance?", "context": "CREATE TABLE table_name_33 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_31 WHERE result = \"l 17\u201320\"", "question": "Result of l 17\u201320 had what attendance?", "context": "CREATE TABLE table_name_31 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_29 WHERE game_site = \"hoosier dome\" AND result = \"l 7\u201331\"", "question": "Game Site of hoosier dome, and a Result of l 7\u201331 involved what attendance?", "context": "CREATE TABLE table_name_29 (attendance VARCHAR, game_site VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_48 WHERE venue = \"blackwolf run, composite course\" AND score = \"281\"", "question": "Which Year is the highest one that has a Venue of blackwolf run, composite course, and a Score of 281?", "context": "CREATE TABLE table_name_48 (year INTEGER, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT champion FROM table_name_35 WHERE venue = \"old waverly golf club\"", "question": "Which Champion has a Venue of old waverly golf club?", "context": "CREATE TABLE table_name_35 (champion VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(world_ranking) FROM table_name_80 WHERE date = \"aug 5\" AND year > 1980", "question": "How many world rankings are after Aug 5, 1980 ?", "context": "CREATE TABLE table_name_80 (world_ranking INTEGER, date VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE performance = \"8.22.72\"", "question": "On which date is there a performance of more than 8.22.72?", "context": "CREATE TABLE table_name_9 (date VARCHAR, performance VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE venue = \"rome\"", "question": "The venue of Rome has which date?", "context": "CREATE TABLE table_name_84 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_11 WHERE agg = \"4-3\"", "question": "What was the 1st leg of the match that had an aggregate of 4-3?", "context": "CREATE TABLE table_name_11 (agg VARCHAR)"}, {"answer": "SELECT last_final_lost FROM table_name_49 WHERE wins = \"7\"", "question": "When was the last final lost of the club with 7 wins?", "context": "CREATE TABLE table_name_49 (last_final_lost VARCHAR, wins VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_39 WHERE last_final_lost = \"1985\"", "question": "How many runners-up did the club with the last final lost in 1985 have?", "context": "CREATE TABLE table_name_39 (runners_up VARCHAR, last_final_lost VARCHAR)"}, {"answer": "SELECT last_final_lost FROM table_name_70 WHERE last_win = \"1959\"", "question": "When was the last final lost of the club with a last win in 1959?", "context": "CREATE TABLE table_name_70 (last_final_lost VARCHAR, last_win VARCHAR)"}, {"answer": "SELECT last_win FROM table_name_89 WHERE club = \"celtic\"", "question": "When was the last win of Celtic?", "context": "CREATE TABLE table_name_89 (last_win VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_27 WHERE runners_up = \"13\"", "question": "Which club had 13 runners-up?", "context": "CREATE TABLE table_name_27 (club VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_41 WHERE home = \"philadelphia\" AND date = \"march 6\"", "question": "Who is the visitor in Philadelphia on March 6?", "context": "CREATE TABLE table_name_41 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE away_team = \"hawthorn\"", "question": "what date were they playing in hawthorn", "context": "CREATE TABLE table_name_17 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT report FROM table_name_48 WHERE home_team = \"geelong\"", "question": "what report was in geelong", "context": "CREATE TABLE table_name_48 (report VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT town_city FROM table_name_45 WHERE name = \"nana museum of the arctic\"", "question": "In what Town/City is Nana Museum of The Arctic located?", "context": "CREATE TABLE table_name_45 (town_city VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_54 WHERE town_city = \"anchorage\" AND type = \"multiple\"", "question": "What is the Name of the Multiple Type museum in Anchorage?", "context": "CREATE TABLE table_name_54 (name VARCHAR, town_city VARCHAR, type VARCHAR)"}, {"answer": "SELECT name FROM table_name_31 WHERE borough = \"anchorage\" AND type = \"natural history\"", "question": "In what Borough is the Anchorage museum of Natural History?", "context": "CREATE TABLE table_name_31 (name VARCHAR, borough VARCHAR, type VARCHAR)"}, {"answer": "SELECT region FROM table_name_8 WHERE type = \"native american\" AND town_city = \"anchorage\"", "question": "In what Region is the Native American museum in Anchorage?", "context": "CREATE TABLE table_name_8 (region VARCHAR, type VARCHAR, town_city VARCHAR)"}, {"answer": "SELECT type FROM table_name_73 WHERE name = \"valdez museum\"", "question": "What Type of museum is the Valdez museum?", "context": "CREATE TABLE table_name_73 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT borough FROM table_name_82 WHERE type = \"history\" AND name = \"fairbanks community museum\"", "question": "In what Borough is the History Type Fairbanks Community Museum?", "context": "CREATE TABLE table_name_82 (borough VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT zip_code_prefix_es_ FROM table_name_39 WHERE county_seat = \"boonville\"", "question": "what is the zip code of boonville", "context": "CREATE TABLE table_name_39 (zip_code_prefix_es_ VARCHAR, county_seat VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_57 WHERE date = \"9 jun 2002\"", "question": "Which tournament was held on 9 Jun 2002?", "context": "CREATE TABLE table_name_57 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_93 WHERE margin_of_victory = \"4 strokes\" AND tournament = \"nec invitational\"", "question": "What is the winning score with a margin of victory of 4 strokes for the NEC Invitational tournament?", "context": "CREATE TABLE table_name_93 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_45 WHERE winning_score = \u20138(71 - 69 - 67 - 73 = 280)", "question": "Who is the runner-up where the winning score is \u20138 (71-69-67-73=280)?", "context": "CREATE TABLE table_name_45 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_67 WHERE margin_of_victory = \"1 stroke\" AND tournament = \"linde german masters\"", "question": "What is the winning score for Tournament of linde german masters with a margin of victory of 1 stroke?", "context": "CREATE TABLE table_name_67 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_19 WHERE margin_of_victory = \"3 strokes\" AND winning_score = \u20136(65 - 70 - 70 - 69 = 274)", "question": "Who is runner-up where the winning score is \u20136 (65-70-70-69=274) and the margin of victory is 3 strokes?", "context": "CREATE TABLE table_name_19 (runner_s__up VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_27 WHERE margin_of_victory = \"1 stroke\" AND runner_s__up = \"robert-jan derksen\"", "question": "What is the winning score where the runner-up is Robert-Jan Derksen and the margin of victory is 1 stroke?", "context": "CREATE TABLE table_name_27 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_17 WHERE team = \"@ charlotte\"", "question": "What are the high rebounds of team @ Charlotte?", "context": "CREATE TABLE table_name_17 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_46 WHERE game = 68", "question": "What is the high rebounds of game 68?", "context": "CREATE TABLE table_name_46 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE game < 61 AND team = \"new york\"", "question": "What is the score of New York team before game 61?", "context": "CREATE TABLE table_name_63 (score VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT tier FROM table_name_59 WHERE opponent_in_the_final = \"david mcnamara\"", "question": "When David McNamara was the opponent in the final, what was the tier?", "context": "CREATE TABLE table_name_59 (tier VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT international_tourist_arrivals__2011_ FROM table_name_6 WHERE international_tourist_arrivals__2012_ = \"23.4 million\"", "question": "In 2011, how many tourists visited the country that had 23.4 million tourists in 2012?", "context": "CREATE TABLE table_name_6 (international_tourist_arrivals__2011_ VARCHAR, international_tourist_arrivals__2012_ VARCHAR)"}, {"answer": "SELECT international_tourist_arrivals__2012_ FROM table_name_38 WHERE international_tourist_arrivals__2011_ = \"2.5 million\"", "question": "How many tourists visited the country that had 2.5 million tourists in 2011?", "context": "CREATE TABLE table_name_38 (international_tourist_arrivals__2012_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)"}, {"answer": "SELECT distance FROM table_name_6 WHERE venue = \"seoul, south korea\"", "question": "How far Venue of seoul, south korea is?", "context": "CREATE TABLE table_name_6 (distance VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_33 WHERE tournament = \"olympic games\" AND result = \"4th\"", "question": "Which Venue has a Tournament of olympic games with a Result of 4th?", "context": "CREATE TABLE table_name_33 (venue VARCHAR, tournament VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_54 WHERE venue = \"edmonton, canada\"", "question": "What is the Result of Venue of edmonton, canada?", "context": "CREATE TABLE table_name_54 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_21 WHERE team_2 = \"psv eindhoven\"", "question": "What is the 1st leg of Team 2 PSV Eindhoven?", "context": "CREATE TABLE table_name_21 (team_2 VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_76 WHERE game_site = \"forbes field\" AND week > 4", "question": "Which opponent was played at Forbes Field after week 4?", "context": "CREATE TABLE table_name_76 (opponent VARCHAR, game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE week = 9", "question": "Which opponent was played on week 9?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE game_site = \"fenway park\"", "question": "What was the date of the game played at Fenway Park?", "context": "CREATE TABLE table_name_28 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_23 WHERE year = \"1998\u201399\" AND team = \"aston villa\"", "question": "Which Opponents have a Year of 1998\u201399, and a Team of aston villa?", "context": "CREATE TABLE table_name_23 (opponents VARCHAR, year VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE opponents = \"valencia\" AND year = \"2011\u201312\"", "question": "Which Score has Opponents of valencia, and a Year of 2011\u201312?", "context": "CREATE TABLE table_name_21 (score VARCHAR, opponents VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_49 WHERE team = \"arsenal\" AND year = \"1963\u201364\"", "question": "Which Opponents have a Team of arsenal, and a Year of 1963\u201364?", "context": "CREATE TABLE table_name_49 (opponents VARCHAR, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_78 WHERE year = \"1999\u20132000\" AND team = \"leeds united\"", "question": "Which Opponents have a Year of 1999\u20132000, and a Team of leeds united?", "context": "CREATE TABLE table_name_78 (opponents VARCHAR, year VARCHAR, team VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_82 WHERE score = \"1\u20132\" AND team = \"arsenal\" AND progress = \"first round\"", "question": "Which Opponents have a Score of 1\u20132, and a Team of arsenal, and Progress of first round?", "context": "CREATE TABLE table_name_82 (opponents VARCHAR, progress VARCHAR, score VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_11 WHERE points > 282.5", "question": "How much Rank has Points larger than 282.5?", "context": "CREATE TABLE table_name_11 (rank VARCHAR, points INTEGER)"}, {"answer": "SELECT MAX(rank) FROM table_name_98 WHERE points < 256.6", "question": "Which Rank is the highest one that has Points smaller than 256.6?", "context": "CREATE TABLE table_name_98 (rank INTEGER, points INTEGER)"}, {"answer": "SELECT MAX(2 AS nd__m_) FROM table_name_78 WHERE nationality = \"sui\" AND rank < 3", "question": "Which 2nd (m) is the highest one that has a Nationality of sui, and a Rank smaller than 3?", "context": "CREATE TABLE table_name_78 (nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT uk_broadcast_date FROM table_name_72 WHERE presenter = \"chris bonington\"", "question": "What is the UK broadcast date of the episode where Chris Bonington was the presenter?", "context": "CREATE TABLE table_name_72 (uk_broadcast_date VARCHAR, presenter VARCHAR)"}, {"answer": "SELECT episode_title FROM table_name_74 WHERE presenter = \"ben okri\"", "question": "What is the episode title of the episode with Ben Okri as the presenter?", "context": "CREATE TABLE table_name_74 (episode_title VARCHAR, presenter VARCHAR)"}, {"answer": "SELECT presenter FROM table_name_45 WHERE uk_broadcast_date = \"1996-09-25\"", "question": "Who is the presenter of the episode broadcast in the UK on 1996-09-25?", "context": "CREATE TABLE table_name_45 (presenter VARCHAR, uk_broadcast_date VARCHAR)"}, {"answer": "SELECT uk_broadcast_date FROM table_name_87 WHERE presenter = \"ben okri\"", "question": "What is the UK broadcast date of the episode with Ben Okri as the presenter?", "context": "CREATE TABLE table_name_87 (uk_broadcast_date VARCHAR, presenter VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE home = \"bobcats\"", "question": "What was the score when the team played at the bobcats?", "context": "CREATE TABLE table_name_92 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE record = \"43-13\"", "question": "What was the score when the Spurs' record was 43-13?", "context": "CREATE TABLE table_name_72 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT country_name FROM table_name_63 WHERE numeric_code < 246 AND latin_3_letter_code = \"slv\"", "question": "What is the country's name with a numeric code less than 246 and a Latin 3-letter code of slv?", "context": "CREATE TABLE table_name_63 (country_name VARCHAR, numeric_code VARCHAR, latin_3_letter_code VARCHAR)"}, {"answer": "SELECT russian_name FROM table_name_86 WHERE latin_3_letter_code = \"lbr\"", "question": "What is the Russian name with lbr as the Latin 3-letter code?", "context": "CREATE TABLE table_name_86 (russian_name VARCHAR, latin_3_letter_code VARCHAR)"}, {"answer": "SELECT country_name FROM table_name_4 WHERE numeric_code < 580 AND latin_2_letter_code = \"dk\"", "question": "What is the country name with a numeric code less than 580 and a dk Latin 2-letter code?", "context": "CREATE TABLE table_name_4 (country_name VARCHAR, numeric_code VARCHAR, latin_2_letter_code VARCHAR)"}, {"answer": "SELECT cyrillic_code FROM table_name_68 WHERE latin_2_letter_code = \"cu\"", "question": "What is the Cyrillic code with a cu Latin 2-letter code?", "context": "CREATE TABLE table_name_68 (cyrillic_code VARCHAR, latin_2_letter_code VARCHAR)"}, {"answer": "SELECT MIN(place) FROM table_name_47 WHERE draw > 3 AND points = 8", "question": "Name the least place for draw more than 3 and points of 8", "context": "CREATE TABLE table_name_47 (place INTEGER, draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT song FROM table_name_99 WHERE points < 16 AND draw < 3", "question": "Name the song for points less than 16 and draw less than 3", "context": "CREATE TABLE table_name_99 (song VARCHAR, points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT single FROM table_name_67 WHERE artist = \"queen\"", "question": "what is the single of the queen", "context": "CREATE TABLE table_name_67 (single VARCHAR, artist VARCHAR)"}, {"answer": "SELECT artist FROM table_name_41 WHERE year = \"1953\"", "question": "what artist won in 1953", "context": "CREATE TABLE table_name_41 (artist VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_14 WHERE artist = \"david whitfield\"", "question": "what year did david whitfield win", "context": "CREATE TABLE table_name_14 (year VARCHAR, artist VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_41 WHERE points < 274.4 AND name = \"roman koudelka\"", "question": "What is the average rank of Roman Koudelka, who has less than 274.4 points?", "context": "CREATE TABLE table_name_41 (rank INTEGER, points VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_82 WHERE game < 14", "question": "How many points was before game 14?", "context": "CREATE TABLE table_name_82 (points INTEGER, game INTEGER)"}, {"answer": "SELECT AVG(points) FROM table_name_8 WHERE november = 6", "question": "What is the average points on November 6?", "context": "CREATE TABLE table_name_8 (points INTEGER, november VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_34 WHERE difference = \"2\" AND lost = 5", "question": "Which average's against score has 2 as a difference and a lost of 5?", "context": "CREATE TABLE table_name_34 (against INTEGER, difference VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_75 WHERE difference = \"- 4\" AND against < 24", "question": "How many positions had a difference of - 4 and an against of less than 24?", "context": "CREATE TABLE table_name_75 (position VARCHAR, difference VARCHAR, against VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_85 WHERE position > 6 AND drawn = 7 AND points < 15", "question": "What is the smallest lost when position is larger than 6, drawn is 7, and the points stat is less than 15?", "context": "CREATE TABLE table_name_85 (lost INTEGER, points VARCHAR, position VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_42 WHERE difference = \"- 8\" AND position > 8", "question": "What is the largest played number when the difference is - 8 and position is more than 8?", "context": "CREATE TABLE table_name_42 (played INTEGER, difference VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_34 WHERE difference = \"0\" AND against > 31", "question": "What is the mean drawn when the difference is 0 and the against stat is more than 31?", "context": "CREATE TABLE table_name_34 (drawn INTEGER, difference VARCHAR, against VARCHAR)"}, {"answer": "SELECT owner FROM table_name_35 WHERE winner = \"meridiana\"", "question": "what is the winner of meridiana", "context": "CREATE TABLE table_name_35 (owner VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MAX(weight) FROM table_name_44 WHERE number = 13", "question": "Number of 13 that has what highest weight?", "context": "CREATE TABLE table_name_44 (weight INTEGER, number VARCHAR)"}, {"answer": "SELECT class FROM table_name_5 WHERE weight = 220", "question": "Weight of 220 has what class?", "context": "CREATE TABLE table_name_5 (class VARCHAR, weight VARCHAR)"}, {"answer": "SELECT AVG(number) FROM table_name_63 WHERE name = \"byron geis\" AND weight < 195", "question": "Name of byron geis, and a Weight smaller than 195 involves what average number?", "context": "CREATE TABLE table_name_63 (number INTEGER, name VARCHAR, weight VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE date = \"march 22\"", "question": "What was the record on March 22?", "context": "CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(february) FROM table_name_96 WHERE game = 53", "question": "What day in february was game 53?", "context": "CREATE TABLE table_name_96 (february INTEGER, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_29 WHERE february = 23", "question": "What is the team's record on februrary 23?", "context": "CREATE TABLE table_name_29 (record VARCHAR, february VARCHAR)"}, {"answer": "SELECT MIN(place) FROM table_name_94 WHERE total < 24 AND draw > 7", "question": "Which Place is the lowest one that has a Total smaller than 24, and a Draw larger than 7?", "context": "CREATE TABLE table_name_94 (place INTEGER, total VARCHAR, draw VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_87 WHERE points < 7 AND chassis = \"lola t86/50\"", "question": "with lola t86/50 chassis and less than 7 points what is the entrant?", "context": "CREATE TABLE table_name_87 (entrant VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_69 WHERE entrant = \"first racing\" AND year > 1987", "question": "after 1987 and entrant of first racing what is the highest points?", "context": "CREATE TABLE table_name_69 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_62 WHERE year > 1988", "question": "with year greater than 1988 what is the total number of points?", "context": "CREATE TABLE table_name_62 (points VARCHAR, year INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_49 WHERE entrant = \"forti corse\"", "question": "what is the points total for forti corse?", "context": "CREATE TABLE table_name_49 (points INTEGER, entrant VARCHAR)"}, {"answer": "SELECT parts_per_example FROM table_name_75 WHERE value_of_quantity = \"2\u00d710 \u22126\"", "question": "What is the Parts-per example of 2\u00d710 \u22126?", "context": "CREATE TABLE table_name_75 (parts_per_example VARCHAR, value_of_quantity VARCHAR)"}, {"answer": "SELECT coefficient FROM table_name_16 WHERE parts_per_example = \"2 ppt\"", "question": "What is the Coefficient of 2 ppt?", "context": "CREATE TABLE table_name_16 (coefficient VARCHAR, parts_per_example VARCHAR)"}, {"answer": "SELECT format FROM table_name_25 WHERE catalog = \"865 821-1\"", "question": "what is the format of catalog 865 821-1?", "context": "CREATE TABLE table_name_25 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT season FROM table_name_62 WHERE winner = \"kanto gakuin university\" AND attendance = \"n/a\" AND title = \"37th\"", "question": "What season had Kanto Gakuin University as the winner, with an attendance of n/a, and a title of 37th?", "context": "CREATE TABLE table_name_62 (season VARCHAR, title VARCHAR, winner VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT title FROM table_name_91 WHERE attendance = \"n/a\" AND runner_up = \"waseda\" AND season = \"1995-6 details\"", "question": "What was the title for the game with an attendance of n/a with the runner-up being Waseda, and a season of 1995-6 details?", "context": "CREATE TABLE table_name_91 (title VARCHAR, season VARCHAR, attendance VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT season FROM table_name_25 WHERE runner_up = \"waseda\" AND title = \"47th\"", "question": "What season has a runner-up of waseda, and a title of 47th?", "context": "CREATE TABLE table_name_25 (season VARCHAR, runner_up VARCHAR, title VARCHAR)"}, {"answer": "SELECT winner FROM table_name_94 WHERE runner_up = \"teikyo\"", "question": "Who was the winner in the game that had Teikyo as the runner-up?", "context": "CREATE TABLE table_name_94 (winner VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT winner FROM table_name_56 WHERE runner_up = \"waseda\" AND title = \"32nd\"", "question": "Who was the winner in the game that had a title of 32nd, and Waseda as the runner-up?", "context": "CREATE TABLE table_name_56 (winner VARCHAR, runner_up VARCHAR, title VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE week = 6", "question": "what is the date on week 6", "context": "CREATE TABLE table_name_97 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT city FROM table_name_41 WHERE erp__analog__digital_ = \"600kw 500kw\"", "question": "Which City has 600kw 500kw ERP (Analog/ Digital)?", "context": "CREATE TABLE table_name_41 (city VARCHAR, erp__analog__digital_ VARCHAR)"}, {"answer": "SELECT region_served FROM table_name_43 WHERE haat__analog__digital__1 = \"1176 m 1190 m\"", "question": "Which Region served has  of 1176 m 1190 m HAAT (Analog/ Digital) 1?", "context": "CREATE TABLE table_name_43 (region_served VARCHAR, haat__analog__digital__1 VARCHAR)"}, {"answer": "SELECT city FROM table_name_86 WHERE erp__analog__digital_ = \"600kw 500kw\"", "question": "Which City has 600kw 500kw ERP ?", "context": "CREATE TABLE table_name_86 (city VARCHAR, erp__analog__digital_ VARCHAR)"}, {"answer": "SELECT city FROM table_name_32 WHERE erp__analog__digital_ = \"360kw 90kw\"", "question": "Which City has a 360kw 90kw ERP?", "context": "CREATE TABLE table_name_32 (city VARCHAR, erp__analog__digital_ VARCHAR)"}, {"answer": "SELECT series FROM table_name_2 WHERE game > 4", "question": "What was the series standing for games over 4?", "context": "CREATE TABLE table_name_2 (series VARCHAR, game INTEGER)"}, {"answer": "SELECT AVG(game) FROM table_name_52 WHERE date = \"may 20\"", "question": "What is the game number held on May 20?", "context": "CREATE TABLE table_name_52 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE record = \"55-51\"", "question": "What was the score of the game when the Indians ended up with a record of 55-51?", "context": "CREATE TABLE table_name_33 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE record = \"67-58\"", "question": "On which date did the Indians have a record of 67-58", "context": "CREATE TABLE table_name_92 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT work FROM table_name_36 WHERE result = \"nominated\" AND award = \"contigo award\" AND year < 2002", "question": "Which Work has a Result of nominated, and an Award of contigo award, and a Year smaller than 2002?", "context": "CREATE TABLE table_name_36 (work VARCHAR, year VARCHAR, result VARCHAR, award VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_47 WHERE award = \"press award\"", "question": "How many years have an Award of press award?", "context": "CREATE TABLE table_name_47 (year VARCHAR, award VARCHAR)"}, {"answer": "SELECT award FROM table_name_45 WHERE year < 2004 AND work = \"the clone\" AND result = \"won\" AND category = \"favourite actress\"", "question": "Which Award has a Year smaller than 2004, and a Work of the clone, and a Result of won, and a Category of favourite actress?", "context": "CREATE TABLE table_name_45 (award VARCHAR, category VARCHAR, result VARCHAR, year VARCHAR, work VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_8 WHERE work = \"the clone\" AND award = \"contigo award\"", "question": "Which Year is the highest one that has a Work of the clone, and an Award of contigo award?", "context": "CREATE TABLE table_name_8 (year INTEGER, work VARCHAR, award VARCHAR)"}, {"answer": "SELECT time_elapsed FROM table_name_11 WHERE destination = \"jupiter\" AND closest_approach = \"4 february 2004\"", "question": "With the Destination of Jupiter and the Closest approach of 4 February 2004, what is the Time elapsed?", "context": "CREATE TABLE table_name_11 (time_elapsed VARCHAR, destination VARCHAR, closest_approach VARCHAR)"}, {"answer": "SELECT time_elapsed FROM table_name_52 WHERE launched = \"15 october 1997\" AND closest_approach = \"24 june 1999\"", "question": "What Time elapsed has both the Launched of 15 October 1997 and the Closest approach of 24 June 1999?", "context": "CREATE TABLE table_name_52 (time_elapsed VARCHAR, launched VARCHAR, closest_approach VARCHAR)"}, {"answer": "SELECT time_elapsed FROM table_name_11 WHERE closest_approach = \"14 february 2011\"", "question": "What Time elapsed has 14 February 2011 as the Closest approach?", "context": "CREATE TABLE table_name_11 (time_elapsed VARCHAR, closest_approach VARCHAR)"}, {"answer": "SELECT launched FROM table_name_31 WHERE time_elapsed = \"1991 days (5 yr, 5 mo, 12 d)\"", "question": "What Launched has Time elapsed of 1991 days (5 yr, 5 mo, 12 d)?", "context": "CREATE TABLE table_name_31 (launched VARCHAR, time_elapsed VARCHAR)"}, {"answer": "SELECT closest_approach FROM table_name_54 WHERE launched = \"3 july 1998\"", "question": "With a Launched of 3 July 1998 what is the Closest approach?", "context": "CREATE TABLE table_name_54 (closest_approach VARCHAR, launched VARCHAR)"}, {"answer": "SELECT launched FROM table_name_56 WHERE spacecraft = \"ulysses\" AND time_elapsed = \"491 days (1 yr, 4 mo, 3 d)\"", "question": "What Launched has both a Spacecraft of Ulysses and 491 days (1 yr, 4 mo, 3 d) as Time elapsed?", "context": "CREATE TABLE table_name_56 (launched VARCHAR, spacecraft VARCHAR, time_elapsed VARCHAR)"}, {"answer": "SELECT karen_handel FROM table_name_45 WHERE eric_johnson = \"13%\" AND undecided = \"22%\"", "question": "What percentage is Karen Handel at in the poll in which Eric Johnson is 13% and undecided is 22%?", "context": "CREATE TABLE table_name_45 (karen_handel VARCHAR, eric_johnson VARCHAR, undecided VARCHAR)"}, {"answer": "SELECT poll_source FROM table_name_49 WHERE nathan_deal = \"13%\" AND john_oxendine = \"28%\"", "question": "In what poll is Nathan Deal at 13% and John Oxendine at 28%?", "context": "CREATE TABLE table_name_49 (poll_source VARCHAR, nathan_deal VARCHAR, john_oxendine VARCHAR)"}, {"answer": "SELECT eric_johnson FROM table_name_38 WHERE karen_handel = \"12%\"", "question": "What is Eric Johnson at in the poll where Karen Handel is at 12%?", "context": "CREATE TABLE table_name_38 (eric_johnson VARCHAR, karen_handel VARCHAR)"}, {"answer": "SELECT poll_source FROM table_name_67 WHERE john_oxendine = \"32%\"", "question": "In what poll is John Oxendine at 32%?", "context": "CREATE TABLE table_name_67 (poll_source VARCHAR, john_oxendine VARCHAR)"}, {"answer": "SELECT john_oxendine FROM table_name_75 WHERE karen_handel = \"38%\"", "question": "What is John Oxendine at in the poll where Karen Handel is at 38%?", "context": "CREATE TABLE table_name_75 (john_oxendine VARCHAR, karen_handel VARCHAR)"}, {"answer": "SELECT karen_handel FROM table_name_78 WHERE poll_source = \"insideradvantage\" AND john_oxendine = \"15%\"", "question": "What is Karen Handel polling at in the Insideradvantage poll where John Oxendine is at 15%?", "context": "CREATE TABLE table_name_78 (karen_handel VARCHAR, poll_source VARCHAR, john_oxendine VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE year = \"1991\"", "question": "What was the 1991 score?", "context": "CREATE TABLE table_name_6 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_18 WHERE winner = \"gary cowan\" AND year = \"1966\"", "question": "Where was the 1966 competition with a winner of Gary Cowan held?", "context": "CREATE TABLE table_name_18 (venue VARCHAR, winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_55 WHERE venue = \"minikahda club\"", "question": "Who was the runner-up of the competition played at Minikahda Club?", "context": "CREATE TABLE table_name_55 (runner_up VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_16 WHERE next_highest_spender = \"aarp\" AND us_cham_spending = \"$39,805,000\" AND us_cham_rank > 1", "question": "Which Year is the highest one that has a Next Highest Spender of aarp, and a US Cham Spending of $39,805,000, and a US Cham Rank larger than 1?", "context": "CREATE TABLE table_name_16 (year INTEGER, us_cham_rank VARCHAR, next_highest_spender VARCHAR, us_cham_spending VARCHAR)"}, {"answer": "SELECT MIN(us_cham_rank) FROM table_name_94 WHERE next_highest_spender = \"national assn of realtors\" AND year < 2012", "question": "Which US Cham Rank is the lowest one that has a Next Highest Spender of national assn of realtors, and a Year smaller than 2012?", "context": "CREATE TABLE table_name_94 (us_cham_rank INTEGER, next_highest_spender VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_16 WHERE us_cham_rank < 1", "question": "Which Year is the lowest one that has a US Cham Rank smaller than 1?", "context": "CREATE TABLE table_name_16 (year INTEGER, us_cham_rank INTEGER)"}, {"answer": "SELECT score_in_final FROM table_name_21 WHERE tournament_name = \"eckerd open\"", "question": "What was the Score in Final of the Eckerd Open Tournament?", "context": "CREATE TABLE table_name_21 (score_in_final VARCHAR, tournament_name VARCHAR)"}, {"answer": "SELECT partner FROM table_name_62 WHERE tournament_name = \"united airlines tournament (1)\"", "question": "Who was the Partner in the United Airlines Tournament (1)?", "context": "CREATE TABLE table_name_62 (partner VARCHAR, tournament_name VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_name_59 WHERE date = \"february 19, 1989\"", "question": "What was the Score in Final on February 19, 1989?", "context": "CREATE TABLE table_name_59 (score_in_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT points FROM table_name_91 WHERE place = 9", "question": "What are the Points when the Place is 9?", "context": "CREATE TABLE table_name_91 (points VARCHAR, place VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_88 WHERE singer = \"mariza ikonomi\" AND points > 20", "question": "What is the total for the place when the singer is Mariza Ikonomi when points are larger than 20?", "context": "CREATE TABLE table_name_88 (place VARCHAR, singer VARCHAR, points VARCHAR)"}, {"answer": "SELECT Double AS non_suited_match FROM table_name_74 WHERE suited_match = \"13:1\"", "question": "With a Suited Match of 13:1, what is the Double Non-Suited Match?", "context": "CREATE TABLE table_name_74 (Double VARCHAR, suited_match VARCHAR)"}, {"answer": "SELECT suited_match FROM table_name_44 WHERE house_edge = \"2.99%\"", "question": "What's the Suited Match with a 2.99% House Edge?", "context": "CREATE TABLE table_name_44 (suited_match VARCHAR, house_edge VARCHAR)"}, {"answer": "SELECT Double AS non_suited_match FROM table_name_99 WHERE non_suited_match = \"3:1\" AND house_edge = \"3.53%\"", "question": "With a house edge of 3.53% and a Non-Suited Matched of 3:1, name the Double Non-Suited Match.", "context": "CREATE TABLE table_name_99 (Double VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR)"}, {"answer": "SELECT non_suited_match FROM table_name_60 WHERE number_of_decks > 6", "question": "Name the Non-Suited Match that has greater than 6 Number of Decks.", "context": "CREATE TABLE table_name_60 (non_suited_match VARCHAR, number_of_decks INTEGER)"}, {"answer": "SELECT Suited + non_suited_match FROM table_name_80 WHERE house_edge = \"2.99%\"", "question": "Name the Suited & Non-Suited Match with a 2.99% for House Edge.", "context": "CREATE TABLE table_name_80 (Suited VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR)"}, {"answer": "SELECT Double AS non_suited_match FROM table_name_1 WHERE non_suited_match = \"4:1\" AND house_edge = \"3.63%\"", "question": "With a House Edge of 3.63% and a Non-Suited Match of 4:1, what is the Double Non-Suited Match?", "context": "CREATE TABLE table_name_1 (Double VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_16 WHERE wins < 0", "question": "Wins smaller than 0 had what sum of year?", "context": "CREATE TABLE table_name_16 (year INTEGER, wins INTEGER)"}, {"answer": "SELECT MIN(wins) FROM table_name_95 WHERE class = \"125cc\" AND year < 1966", "question": "Class of 125cc, and a Year smaller than 1966 had what lowest wins?", "context": "CREATE TABLE table_name_95 (wins INTEGER, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_75 WHERE class = \"500cc\" AND wins < 0", "question": "Class of 500cc, and a Wins smaller than 0 had what average year?", "context": "CREATE TABLE table_name_75 (year INTEGER, class VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_58 WHERE driver = \"kazuki nakajima\" AND grid > 19", "question": "What are the highest laps Kazuki Nakajima did with a Grid larger than 19?", "context": "CREATE TABLE table_name_58 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_87 WHERE grid = 17", "question": "Which Constructor has a Grid of 17?", "context": "CREATE TABLE table_name_87 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_37 WHERE grid > 2 AND constructor = \"bmw sauber\" AND time_retired = \"+15.037\"", "question": "Who drives a BMW Sauber with a Grid larger than 2 and a Time/Retired of +15.037?", "context": "CREATE TABLE table_name_37 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_11 WHERE participation_as = \"actor, film editor\"", "question": "Participation as of actor, film editor has what average year?", "context": "CREATE TABLE table_name_11 (year INTEGER, participation_as VARCHAR)"}, {"answer": "SELECT odds FROM table_name_14 WHERE finish = \"1/4h\"", "question": "What were the odds for the finish of 1/4h?", "context": "CREATE TABLE table_name_14 (odds VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MIN(last_1_4) FROM table_name_30 WHERE time = \"1:53.2\" AND odds = \"*1.30\"", "question": "What is the lowest last quarter with a time of 1:53.2 and odds of *1.30?", "context": "CREATE TABLE table_name_30 (last_1_4 INTEGER, time VARCHAR, odds VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_3 WHERE total = 11 AND silver > 2", "question": "What is the average number of Gold when the total is 11 with more than 2 silver?", "context": "CREATE TABLE table_name_3 (gold INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_88 WHERE total < 2 AND silver > 0", "question": "What is the total rank with more than 0 silver and less than 2 medals total?", "context": "CREATE TABLE table_name_88 (rank VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_91 WHERE total < 2", "question": "What is the value of bronze with less than 2 in total?", "context": "CREATE TABLE table_name_91 (bronze VARCHAR, total INTEGER)"}, {"answer": "SELECT COUNT(rank) FROM table_name_26 WHERE total > 2 AND bronze < 4", "question": "What number of rank has more than 2 medals in total with less than 4 bronze?", "context": "CREATE TABLE table_name_26 (rank VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT building FROM table_name_22 WHERE status = \"proposed\" AND floors = 32", "question": "what is a building that is proposed and will have 32 floors?", "context": "CREATE TABLE table_name_22 (building VARCHAR, status VARCHAR, floors VARCHAR)"}, {"answer": "SELECT AVG(best) FROM table_name_21 WHERE name = \"marcus marshall\"", "question": "What is the best time for marcus marshall?", "context": "CREATE TABLE table_name_21 (best INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(best) FROM table_name_58 WHERE team = \"rusport\" AND qual_2 = \"1:10.166\"", "question": "What is the best time for a rusport driver with a qual 2 time of 1:10.166?", "context": "CREATE TABLE table_name_58 (best INTEGER, team VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT team FROM table_name_92 WHERE qual_2 = \"58.385\"", "question": "What team had a qual 2 time of 58.385?", "context": "CREATE TABLE table_name_92 (team VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT COUNT(university_of_dublin) FROM table_name_94 WHERE agricultural_panel = 0 AND nominated_by_the_taoiseach > 0 AND industrial_and_commercial_panel < 0", "question": "What is the total for University of Dublin, having a panel of 0 for agricultural, was nominated by Taoiseach more than 0, and an industrial and commercial panel less than 0?", "context": "CREATE TABLE table_name_94 (university_of_dublin VARCHAR, industrial_and_commercial_panel VARCHAR, agricultural_panel VARCHAR, nominated_by_the_taoiseach VARCHAR)"}, {"answer": "SELECT AVG(agricultural_panel) FROM table_name_16 WHERE national_university_of_ireland < 0", "question": "What is the average for the agricultural panel that has a National University of Ireland less than 0?", "context": "CREATE TABLE table_name_16 (agricultural_panel INTEGER, national_university_of_ireland INTEGER)"}, {"answer": "SELECT MIN(university_of_dublin) FROM table_name_93 WHERE administrative_panel = 3 AND cultural_and_educational_panel < 2", "question": "What is the lowest number for the University of Dublin, having and administrative panel of 3, and a Cultural and Educational panel less than 2?", "context": "CREATE TABLE table_name_93 (university_of_dublin INTEGER, administrative_panel VARCHAR, cultural_and_educational_panel VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE game_site = \"memorial stadium\" AND date = \"september 19, 1965\"", "question": "What was the record at Memorial Stadium on September 19, 1965?", "context": "CREATE TABLE table_name_59 (record VARCHAR, game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_51 WHERE game_site = \"memorial stadium\" AND date = \"december 12, 1965\"", "question": "What is the largest attendance at Memorial Stadium on December 12, 1965?", "context": "CREATE TABLE table_name_51 (attendance INTEGER, game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(extra_points) FROM table_name_97 WHERE player = \"herman everhardus\" AND field_goals > 0", "question": "Which Extra points is the highest one that has a Player of herman everhardus, and a Field goals larger than 0?", "context": "CREATE TABLE table_name_97 (extra_points INTEGER, player VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT SUM(extra_points) FROM table_name_45 WHERE points < 12 AND player = \"chuck bernard\" AND touchdowns > 1", "question": "Which Extra points has Points smaller than 12, and a Player of chuck bernard, and Touchdowns larger than 1?", "context": "CREATE TABLE table_name_45 (extra_points INTEGER, touchdowns VARCHAR, points VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(field_goals) FROM table_name_45 WHERE touchdowns < 3 AND player = \"willis ward\" AND extra_points < 0", "question": "How many Field goals have Touchdowns smaller than 3, and a Player of willis ward, and an Extra points smaller than 0?", "context": "CREATE TABLE table_name_45 (field_goals INTEGER, extra_points VARCHAR, touchdowns VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(extra_points) FROM table_name_35 WHERE points < 6", "question": "Whicih Extra points are the average ones that have Points smaller than 6?", "context": "CREATE TABLE table_name_35 (extra_points INTEGER, points INTEGER)"}, {"answer": "SELECT position FROM table_name_27 WHERE round = 7", "question": "Which position is round 7?", "context": "CREATE TABLE table_name_27 (position VARCHAR, round VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_92 WHERE position = \"goaltender\"", "question": "Which college has a position of goaltender?", "context": "CREATE TABLE table_name_92 (college_junior_club_team__league_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_91 WHERE player = \"darryl fedorak\"", "question": "What is Darryl Fedorak's highest round?", "context": "CREATE TABLE table_name_91 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_86 WHERE round > 8", "question": "What nationality has a higher round than 8?", "context": "CREATE TABLE table_name_86 (nationality VARCHAR, round INTEGER)"}, {"answer": "SELECT connection_with_australia FROM table_name_74 WHERE connection_with_america = \"born in the u.s.; mother is u.s. citizen\"", "question": "What is the connection with Australia when the connection with America shows born in the u.s.; mother is u.s. citizen?", "context": "CREATE TABLE table_name_74 (connection_with_australia VARCHAR, connection_with_america VARCHAR)"}, {"answer": "SELECT notable_for FROM table_name_23 WHERE connection_with_australia = \"born in australia\" AND name = \"rick springfield\"", "question": "What is the person born in Australia, rick springfield notable for?", "context": "CREATE TABLE table_name_23 (notable_for VARCHAR, connection_with_australia VARCHAR, name VARCHAR)"}, {"answer": "SELECT born___died FROM table_name_93 WHERE connection_with_australia = \"family moved to australia at age 6\"", "question": "What is the Born\u2013Died for the person whose family moved to Australia at age 6?", "context": "CREATE TABLE table_name_93 (born___died VARCHAR, connection_with_australia VARCHAR)"}, {"answer": "SELECT MAX(date) FROM table_name_64 WHERE cores_per_die___dies_per_module = \"2 / 1\" AND clock = \"1.4-1.6ghz\"", "question": "What is the latest date with Cores per die / Dies per module of 2 / 1, and a Clock of 1.4-1.6ghz?", "context": "CREATE TABLE table_name_64 (date INTEGER, cores_per_die___dies_per_module VARCHAR, clock VARCHAR)"}, {"answer": "SELECT process FROM table_name_61 WHERE date > 2000 AND clock = \"1.4-1.6ghz\"", "question": "Which process has a date later than 2000 and a Clock of 1.4-1.6ghz?", "context": "CREATE TABLE table_name_61 (process VARCHAR, date VARCHAR, clock VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE clock = \"0.8-1.6ghz\"", "question": "Which date has a Clock of 0.8-1.6ghz?", "context": "CREATE TABLE table_name_61 (date VARCHAR, clock VARCHAR)"}, {"answer": "SELECT record FROM table_name_15 WHERE date = \"may 21\"", "question": "What was the record on May 21?", "context": "CREATE TABLE table_name_15 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE attendance = \"24,976\"", "question": "On what date was the attendance 24,976?", "context": "CREATE TABLE table_name_98 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE record = \"21-26\"", "question": "On what date was the record 21-26?", "context": "CREATE TABLE table_name_79 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_21 WHERE loss = \"prokopec (2-7)\"", "question": "How many were in attendance with a loss of Prokopec (2-7)?", "context": "CREATE TABLE table_name_21 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_74 WHERE date = \"may 20\"", "question": "Who was the opponent on May 20?", "context": "CREATE TABLE table_name_74 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_13 WHERE date = \"apr 6\"", "question": "What is the tournament on Apr 6?", "context": "CREATE TABLE table_name_13 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT 1 AS st_prize___$__ FROM table_name_95 WHERE location = \"scotland\"", "question": "What is the 1st prize of the tournament in Scotland?", "context": "CREATE TABLE table_name_95 (location VARCHAR)"}, {"answer": "SELECT location FROM table_name_68 WHERE tournament = \"sea pines heritage classic\"", "question": "What is the location of the Sea Pines Heritage Classic tournament?", "context": "CREATE TABLE table_name_68 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_16 WHERE tournament = \"tournament players championship\"", "question": "What is the score of the Tournament Players Championship?", "context": "CREATE TABLE table_name_16 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT 1 AS st_prize___$__ FROM table_name_69 WHERE tournament = \"u.s. open\"", "question": "What is the 1st prize at the U.S. Open?", "context": "CREATE TABLE table_name_69 (tournament VARCHAR)"}, {"answer": "SELECT AVG(1 AS st_prize___) AS $__ FROM table_name_47 WHERE score = \"279 (\u20139)\"", "question": "What is the average first prize of the tournament with a score of 279 (\u20139)?", "context": "CREATE TABLE table_name_47 (score VARCHAR)"}, {"answer": "SELECT MIN(1 AS st_prize___) AS $__ FROM table_name_18 WHERE location = \"california\" AND tournament = \"mercedes championships\"", "question": "What is the lowest first prize of the Mercedes Championships tournament in California?", "context": "CREATE TABLE table_name_18 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_29 WHERE team = \"kommunalnik\"", "question": "What is the average capacity for the venue where the team kommunalnik played?", "context": "CREATE TABLE table_name_29 (capacity INTEGER, team VARCHAR)"}, {"answer": "SELECT position_in_1999 FROM table_name_71 WHERE venue = \"central, gomel\"", "question": "What is the position of the team that played at the venue, Central, Gomel?", "context": "CREATE TABLE table_name_71 (position_in_1999 VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position_in_1999 FROM table_name_70 WHERE capacity > 6 OFFSET 500", "question": "What is the position of the team that played at the venue with more than 6,500 capacity?", "context": "CREATE TABLE table_name_70 (position_in_1999 VARCHAR, capacity INTEGER)"}, {"answer": "SELECT MIN(assists) FROM table_name_71 WHERE pims = 70 AND goals < 19", "question": "What is the smallest number of assists with 70 Pims and less than 19 goals?", "context": "CREATE TABLE table_name_71 (assists INTEGER, pims VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MIN(assists) FROM table_name_17 WHERE name = \"ben duggan\" AND points < 7", "question": "What is the smallest number of assists for Ben Duggan with less than 7 points?", "context": "CREATE TABLE table_name_17 (assists INTEGER, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT year FROM table_name_77 WHERE national_champion = \"rhode island\"", "question": "In what Year was Rhode Island the National Champion?", "context": "CREATE TABLE table_name_77 (year VARCHAR, national_champion VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_59 WHERE host = \"monroe county sports commission\"", "question": "What was the Runner-up in the Monroe County Sports Commission?", "context": "CREATE TABLE table_name_59 (runner_up VARCHAR, host VARCHAR)"}, {"answer": "SELECT location FROM table_name_3 WHERE runner_up = \"tbd\"", "question": "At what Location was the Runner-up TBD?", "context": "CREATE TABLE table_name_3 (location VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT location FROM table_name_71 WHERE host = \"robert morris university (illinois)\" AND national_champion = \"lindenwood\"", "question": "At what Location did Robert Morris University (Illinois) Host the Lindenwood National Chamption?", "context": "CREATE TABLE table_name_71 (location VARCHAR, host VARCHAR, national_champion VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_53 WHERE national_champion = \"ohio\" AND location = \"tucson, az\"", "question": "What was the Runner-up with Ohio as the National Champion in Tucson, AZ?", "context": "CREATE TABLE table_name_53 (runner_up VARCHAR, national_champion VARCHAR, location VARCHAR)"}, {"answer": "SELECT graphics FROM table_name_43 WHERE vram = \"512mb\"", "question": "Which graphics spec has a VRAM spec of 512MB?", "context": "CREATE TABLE table_name_43 (graphics VARCHAR, vram VARCHAR)"}, {"answer": "SELECT msrp FROM table_name_2 WHERE storage = \"128-512 gb ssd\"", "question": "What is the MSRP for the laptop with storage of 128-512 GB SSD?", "context": "CREATE TABLE table_name_2 (msrp VARCHAR, storage VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE game = 5", "question": "Name the opponent for game 5", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT status FROM table_name_17 WHERE name = \"cadeby\"", "question": "What status is shown for Cadeby?", "context": "CREATE TABLE table_name_17 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT former_local_authority FROM table_name_96 WHERE name = \"ecclesfield\"", "question": "What is the Former local authority for Ecclesfield?", "context": "CREATE TABLE table_name_96 (former_local_authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT status FROM table_name_83 WHERE name = \"mexborough\"", "question": "What is the Status of Mexborough?", "context": "CREATE TABLE table_name_83 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE date = \"december 1\"", "question": "What is the score on December 1?", "context": "CREATE TABLE table_name_36 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT skip FROM table_name_63 WHERE second = \"oliver dupont\"", "question": "Which skip has Oliver Dupont as a second?", "context": "CREATE TABLE table_name_63 (skip VARCHAR, second VARCHAR)"}, {"answer": "SELECT second FROM table_name_91 WHERE third = \"jean-michel arsenault\"", "question": "Which second's third is Jean-Michel Arsenault?", "context": "CREATE TABLE table_name_91 (second VARCHAR, third VARCHAR)"}, {"answer": "SELECT skip FROM table_name_1 WHERE third = \"steffen walstad\"", "question": "Which skip's third is Steffen Walstad?", "context": "CREATE TABLE table_name_1 (skip VARCHAR, third VARCHAR)"}, {"answer": "SELECT skip FROM table_name_51 WHERE second = \"martin hejhal\"", "question": "Which skip's second is Martin Hejhal?", "context": "CREATE TABLE table_name_51 (skip VARCHAR, second VARCHAR)"}, {"answer": "SELECT skip FROM table_name_17 WHERE lead = \"gordon mcdougall\"", "question": "Which skip's lead is Gordon McDougall?", "context": "CREATE TABLE table_name_17 (skip VARCHAR, lead VARCHAR)"}, {"answer": "SELECT second FROM table_name_10 WHERE skip = \"chris plys\"", "question": "Which second's skip is Chris Plys?", "context": "CREATE TABLE table_name_10 (second VARCHAR, skip VARCHAR)"}, {"answer": "SELECT SUM(poles) FROM table_name_39 WHERE class = \"125cc\" AND team = \"matteoni racing team\" AND points > 3", "question": "How many Poles have a Class of 125cc, and a Team of matteoni racing team, and Points larger than 3?", "context": "CREATE TABLE table_name_39 (poles INTEGER, points VARCHAR, class VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(podiums) FROM table_name_18 WHERE class = \"250cc\" AND f_laps = 0", "question": "How many Podiums have a Class of 250cc, and an F laps of 0?", "context": "CREATE TABLE table_name_18 (podiums INTEGER, class VARCHAR, f_laps VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_20 WHERE team = \"elgin city\" AND highest < 537", "question": "Team of elgin city, and a Highest smaller than 537 had what total number of average?", "context": "CREATE TABLE table_name_20 (average VARCHAR, team VARCHAR, highest VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_name_61 WHERE lowest > 288 AND team = \"east stirlingshire\"", "question": "Lowest larger than 288, and a Team of east stirlingshire has what lowest average?", "context": "CREATE TABLE table_name_61 (average INTEGER, lowest VARCHAR, team VARCHAR)"}, {"answer": "SELECT owner FROM table_name_2 WHERE locomotive = \"c501\"", "question": "what is the owner of the c501", "context": "CREATE TABLE table_name_2 (owner VARCHAR, locomotive VARCHAR)"}, {"answer": "SELECT record FROM table_name_34 WHERE game > 32 AND december < 21", "question": "Which Record has a Game larger than 32, and a December smaller than 21?", "context": "CREATE TABLE table_name_34 (record VARCHAR, game VARCHAR, december VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE points > 46 AND game < 35 AND december = 21", "question": "Which Score has Points larger than 46, and a Game smaller than 35, and a December of 21?", "context": "CREATE TABLE table_name_35 (score VARCHAR, december VARCHAR, points VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(december) FROM table_name_96 WHERE points = 52", "question": "Which December is the lowest one that has Points of 52?", "context": "CREATE TABLE table_name_96 (december INTEGER, points VARCHAR)"}, {"answer": "SELECT SUM(december) FROM table_name_77 WHERE points = 48 AND game > 33", "question": "Which December has Points of 48, and a Game larger than 33?", "context": "CREATE TABLE table_name_77 (december INTEGER, points VARCHAR, game VARCHAR)"}, {"answer": "SELECT regular_season_champion_s_ FROM table_name_70 WHERE year = \"1943\u201344\"", "question": "WHich Regular Season Champions has a Year of 1943\u201344?", "context": "CREATE TABLE table_name_70 (regular_season_champion_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT tournament_venue FROM table_name_33 WHERE tournament_champion = \"duke\" AND record = \"15\u20131\"", "question": "WHich Tournament venue has a Tournament Champion of duke and a Record of 15\u20131?", "context": "CREATE TABLE table_name_33 (tournament_venue VARCHAR, tournament_champion VARCHAR, record VARCHAR)"}, {"answer": "SELECT year FROM table_name_45 WHERE tournament_venue = \"richmond arena\" AND record = \"12\u20131\" AND regular_season_champion_s_ = \"virginia tech\"", "question": "When has a Tournament venue of richmond arena, and a Record of 12\u20131, and a Regular Season Champion(s) of virginia tech?", "context": "CREATE TABLE table_name_45 (year VARCHAR, regular_season_champion_s_ VARCHAR, tournament_venue VARCHAR, record VARCHAR)"}, {"answer": "SELECT year FROM table_name_50 WHERE record = \"9\u20131\" AND tournament_champion = \"duke\"", "question": "When has a Record of 9\u20131, and a Tournament Champion of duke?", "context": "CREATE TABLE table_name_50 (year VARCHAR, record VARCHAR, tournament_champion VARCHAR)"}, {"answer": "SELECT regular_season_champion_s_ FROM table_name_4 WHERE tournament_champion = \"west virginia\" AND year = \"1955\u201356\"", "question": "Which Regular Season Champion(s) has a Tournament Champion of west virginia in 1955\u201356?", "context": "CREATE TABLE table_name_4 (regular_season_champion_s_ VARCHAR, tournament_champion VARCHAR, year VARCHAR)"}, {"answer": "SELECT regular_season_champion_s_ FROM table_name_16 WHERE record = \"9\u20130\" AND tournament_champion = \"north carolina\"", "question": "Which Regular Season Champion(s) has a Record of 9\u20130, and a Tournament Champion of north carolina?", "context": "CREATE TABLE table_name_16 (regular_season_champion_s_ VARCHAR, record VARCHAR, tournament_champion VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_64 WHERE college_junior_club_team__league_ = \"new hampshire\"", "question": "What is the lowest round for a player selected from a college of New Hampshire?", "context": "CREATE TABLE table_name_64 (round INTEGER, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_79 WHERE player = \"rod langway\"", "question": "What nationality is Rod Langway?", "context": "CREATE TABLE table_name_79 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_81 WHERE round > 3", "question": "What position is the player selected that has a round value over 3?", "context": "CREATE TABLE table_name_81 (position VARCHAR, round INTEGER)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_59 WHERE round > 3", "question": "What college did the player selected in rounds over 3 play for?", "context": "CREATE TABLE table_name_59 (college_junior_club_team__league_ VARCHAR, round INTEGER)"}, {"answer": "SELECT MAX(round) FROM table_name_15 WHERE college_junior_club_team__league_ = \"clarkson university\"", "question": "What is the highest round that has a player selected from Clarkson University?", "context": "CREATE TABLE table_name_15 (round INTEGER, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_85 WHERE name = \"deutsche telekom\" AND market_value___usd_million_ > 209 OFFSET 628", "question": "What is the lowest rank of Deutsche Telekom with a market value over 209,628?", "context": "CREATE TABLE table_name_85 (rank INTEGER, name VARCHAR, market_value___usd_million_ VARCHAR)"}, {"answer": "SELECT COUNT(market_value___usd_million_) FROM table_name_51 WHERE headquarters = \"germany\"", "question": "What is the total market value of all corporations headquartered in Germany?", "context": "CREATE TABLE table_name_51 (market_value___usd_million_ VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT MIN(earnings___) AS $__ FROM table_name_34 WHERE player = \"vijay singh\" AND wins > 24", "question": "What is the lowest earnings of Vijay Singh who had more than 24 wins?", "context": "CREATE TABLE table_name_34 (earnings___ INTEGER, player VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_2 WHERE change < 44 AND centre = \"buenos aires\" AND rating > 628", "question": "Which Rank is the highest one that has a Change smaller than 44, and a Centre of buenos aires, and a Rating larger than 628?", "context": "CREATE TABLE table_name_2 (rank INTEGER, rating VARCHAR, change VARCHAR, centre VARCHAR)"}, {"answer": "SELECT centre FROM table_name_34 WHERE rank = 42", "question": "Which Centre has a Rank of 42?", "context": "CREATE TABLE table_name_34 (centre VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(rating) FROM table_name_88 WHERE centre = \"helsinki\"", "question": "Which Rating has a Centre of helsinki?", "context": "CREATE TABLE table_name_88 (rating INTEGER, centre VARCHAR)"}, {"answer": "SELECT AVG(change) FROM table_name_31 WHERE centre = \"buenos aires\" AND rank < 46", "question": "Which Change is the average one that has a Centre of buenos aires, and a Rank smaller than 46?", "context": "CREATE TABLE table_name_31 (change INTEGER, centre VARCHAR, rank VARCHAR)"}, {"answer": "SELECT fibonacci FROM table_name_18 WHERE operation = \"find-min\"", "question": "Operation of find-min has what Fibonacci?", "context": "CREATE TABLE table_name_18 (fibonacci VARCHAR, operation VARCHAR)"}, {"answer": "SELECT pairing FROM table_name_68 WHERE binomial = \"\u03b8(1)\"", "question": "Binomial of \u03b8(1) has what pairing?", "context": "CREATE TABLE table_name_68 (pairing VARCHAR, binomial VARCHAR)"}, {"answer": "SELECT binary FROM table_name_82 WHERE pairing = \"\u03b8(1)\" AND binomial = \"\u03b8(1)\"", "question": "Pairing of \u03b8(1), and a Binomial of \u03b8(1) is what binary?", "context": "CREATE TABLE table_name_82 (binary VARCHAR, pairing VARCHAR, binomial VARCHAR)"}, {"answer": "SELECT binary FROM table_name_98 WHERE operation = \"find-min\"", "question": "Operation of find-min has what binary?", "context": "CREATE TABLE table_name_98 (binary VARCHAR, operation VARCHAR)"}, {"answer": "SELECT binomial FROM table_name_7 WHERE binary = \"\u03b8(log n)\" AND fibonacci = \"\u03b8(1)\"", "question": "Binary of \u03b8(log n), and a Fibonacci of \u03b8(1) has what binomial?", "context": "CREATE TABLE table_name_7 (binomial VARCHAR, binary VARCHAR, fibonacci VARCHAR)"}, {"answer": "SELECT title FROM table_name_81 WHERE duration = \"4:57\"", "question": "Which of the titles have a duration time of 4:57?", "context": "CREATE TABLE table_name_81 (title VARCHAR, duration VARCHAR)"}, {"answer": "SELECT composer FROM table_name_8 WHERE duration = \"3:31\"", "question": "What composer has a duration time of 3:31?", "context": "CREATE TABLE table_name_8 (composer VARCHAR, duration VARCHAR)"}, {"answer": "SELECT duration FROM table_name_73 WHERE translation = \"1000 lies\"", "question": "Which one of the duration has a translation of 1000 lies?", "context": "CREATE TABLE table_name_73 (duration VARCHAR, translation VARCHAR)"}, {"answer": "SELECT title FROM table_name_76 WHERE translation = \"i know\"", "question": "Which title has a translation of I know in it?", "context": "CREATE TABLE table_name_76 (title VARCHAR, translation VARCHAR)"}, {"answer": "SELECT title FROM table_name_32 WHERE translation = \"1000 lies\"", "question": "Which title has a translation in it of 1000 lies?", "context": "CREATE TABLE table_name_32 (title VARCHAR, translation VARCHAR)"}, {"answer": "SELECT gold FROM table_name_48 WHERE silver = \"bertil ahlin sweden\"", "question": "Who won the gold when Bertil Ahlin Sweden won the silver?", "context": "CREATE TABLE table_name_48 (gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT gold FROM table_name_13 WHERE bronze = \"jules van dyk belgium\"", "question": "Who won the gold when Jules van Dyk Belgium won bronze?", "context": "CREATE TABLE table_name_13 (gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT second FROM table_name_48 WHERE alternate = \"margarita fomina\"", "question": "Who is the second for the curling team which has alternate Margarita Fomina?", "context": "CREATE TABLE table_name_48 (second VARCHAR, alternate VARCHAR)"}, {"answer": "SELECT second FROM table_name_12 WHERE alternate = \"margarita fomina\"", "question": "Who is the second for the team with alternate Margarita Fomina?", "context": "CREATE TABLE table_name_12 (second VARCHAR, alternate VARCHAR)"}, {"answer": "SELECT alternate FROM table_name_60 WHERE third = \"monika wagner\"", "question": "Who is the alternate for the team for which Monika Wagner is the third?", "context": "CREATE TABLE table_name_60 (alternate VARCHAR, third VARCHAR)"}, {"answer": "SELECT lead FROM table_name_59 WHERE second = \"nkeiruka ezekh\"", "question": "Who is the lead for the team with Nkeiruka Ezekh as second?", "context": "CREATE TABLE table_name_59 (lead VARCHAR, second VARCHAR)"}, {"answer": "SELECT lead FROM table_name_86 WHERE alternate = \"christina haller\"", "question": "Who is the lead for the team with Christina Haller as alternate?", "context": "CREATE TABLE table_name_86 (lead VARCHAR, alternate VARCHAR)"}, {"answer": "SELECT latitude FROM table_name_83 WHERE year_built = 1901", "question": "What is the Latitude of the monument built in 1901?", "context": "CREATE TABLE table_name_83 (latitude VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT city_or_town FROM table_name_71 WHERE longitude = \"89\u00b011\u2032w\"", "question": "What is the City or Town of the monument with a Longitude of 89\u00b011\u2032w?", "context": "CREATE TABLE table_name_71 (city_or_town VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT monument_name FROM table_name_95 WHERE year_built > 1887 AND county = \"warren\"", "question": "What Monument was built after 1887 in Warren County?", "context": "CREATE TABLE table_name_95 (monument_name VARCHAR, year_built VARCHAR, county VARCHAR)"}, {"answer": "SELECT county FROM table_name_47 WHERE longitude = \"85\u00b045\u203243\u2033w\"", "question": "What County has a Longitude of 85\u00b045\u203243\u2033w?", "context": "CREATE TABLE table_name_47 (county VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_83 WHERE partner = \"jorgelina cravero\"", "question": "What is the Opponent from the final with a Partner named jorgelina cravero?", "context": "CREATE TABLE table_name_83 (opponent_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_45 WHERE tournament = \"leipzig\" AND score = \"w/o\"", "question": "What was the outcome for the match at the leipzig tournament with a score w/o?", "context": "CREATE TABLE table_name_45 (outcome VARCHAR, tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE tournament = \"leipzig\"", "question": "Who was the opponent that anke huber played against in the leipzig tournament?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_73 WHERE opponent = \"magdalena maleeva\"", "question": "What was the outcome of the match against Magdalena Maleeva?", "context": "CREATE TABLE table_name_73 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT player FROM table_name_8 WHERE pick__number = \"15\"", "question": "What is the name of the player that was Pick 15?", "context": "CREATE TABLE table_name_8 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_19 WHERE pick__number = \"12\"", "question": "To which college/junior/club team did the player that was Pick 12 belong?", "context": "CREATE TABLE table_name_19 (college_junior_club_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_81 WHERE position = \"left wing\" AND college_junior_club_team = \"toronto marlboros (omjhl)\"", "question": "What NHL team has a player in the position of Left Wing that came from the Toronto Marlboros (omjhl)?", "context": "CREATE TABLE table_name_81 (nhl_team VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_6 WHERE pick__number = \"16\"", "question": "To which college/junior/club team did the player that was Pick 16 belong?", "context": "CREATE TABLE table_name_6 (college_junior_club_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT company FROM table_name_14 WHERE director = \"simon stone\" AND year < 2011", "question": "What company does Simon Stone direct earlier than 2011?", "context": "CREATE TABLE table_name_14 (company VARCHAR, director VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_85 WHERE competition = \"world cup qualifying\" AND date = \"march 21, 1954\"", "question": "Which Result has a Competition of world cup qualifying, and a Date of march 21, 1954?", "context": "CREATE TABLE table_name_85 (result VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_50 WHERE result = \"w\" AND score = \"2-0\" AND date = \"may 9, 1954\"", "question": "Which Competition has a Result of w, and a Score of 2-0, and a Date of may 9, 1954?", "context": "CREATE TABLE table_name_50 (competition VARCHAR, date VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_89 WHERE score = \"4-1\" AND competition = \"world cup qualifying\"", "question": "Which Result has a Score of 4-1, and a Competition of world cup qualifying?", "context": "CREATE TABLE table_name_89 (result VARCHAR, score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE competition = \"world cup qualifying\" AND brazil_scorers = \"baltazar\" AND date = \"march 14, 1954\"", "question": "Which Score has a Competition of world cup qualifying, and a Brazil scorers of baltazar, and a Date of march 14, 1954?", "context": "CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR, competition VARCHAR, brazil_scorers VARCHAR)"}, {"answer": "SELECT brazil_scorers FROM table_name_5 WHERE result = \"w\" AND competition = \"world cup qualifying\" AND date = \"february 28, 1954\"", "question": "Which Brazil scorers have a Result of w, and a Competition of world cup qualifying, and a Date of february 28, 1954?", "context": "CREATE TABLE table_name_5 (brazil_scorers VARCHAR, date VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT district FROM table_name_4 WHERE first_elected = \"1900\"", "question": "when first elected was 1900 what was the district?", "context": "CREATE TABLE table_name_4 (district VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_name_9 WHERE first_elected = \"1898\"", "question": "when first elected was 1898 what was the party?", "context": "CREATE TABLE table_name_9 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_31 WHERE lost = 6 AND points < 7", "question": "How many Games have a Lost of 6, and Points smaller than 7?", "context": "CREATE TABLE table_name_31 (games INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(number) FROM table_name_23 WHERE player = \"larry centers\" AND yards < 600", "question": "What is Larry Centers' average number when there were less than 600 yards?", "context": "CREATE TABLE table_name_23 (number INTEGER, player VARCHAR, yards VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_name_81 WHERE long > 50 AND yards < 762", "question": "What is the highest number when there were more than 50 long and less than 762 yards?", "context": "CREATE TABLE table_name_81 (number INTEGER, long VARCHAR, yards VARCHAR)"}, {"answer": "SELECT MAX(yards) FROM table_name_12 WHERE average = 9.5", "question": "What is the highest amount of yards when the average is 9.5?", "context": "CREATE TABLE table_name_12 (yards INTEGER, average VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_67 WHERE date = \"5 aug 1990\"", "question": "Who was the runner-up on 5 aug 1990?", "context": "CREATE TABLE table_name_67 (runner_up VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_18 WHERE winning_score = \u221214(65 - 69 - 72 - 68 = 274)", "question": "Which Tournament has a Winning score of \u221214 (65-69-72-68=274)?", "context": "CREATE TABLE table_name_18 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_69 WHERE winning_score = \u221220(70 - 69 - 64 - 65 = 268)", "question": "Which Runner-up has a Winning score of \u221220 (70-69-64-65=268)?", "context": "CREATE TABLE table_name_69 (runner_up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE winning_score = \u221215(71 - 69 - 68 - 65 = 273)", "question": "Which Date has a Winning score of \u221215 (71-69-68-65=273)?", "context": "CREATE TABLE table_name_98 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_15 WHERE runner_up = \"vijay singh\"", "question": "In which tournament was vijay singh a runner-up?", "context": "CREATE TABLE table_name_15 (tournament VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_20 WHERE runner_up = \"vijay singh\"", "question": "In which tournament was vijay singh a runner-up?", "context": "CREATE TABLE table_name_20 (tournament VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT description FROM table_name_67 WHERE year_of_issue = 1983 AND weight = \"3.50grams\"", "question": "Which Description has a Year of Issue of 1983, and a Weight of 3.50grams?", "context": "CREATE TABLE table_name_67 (description VARCHAR, year_of_issue VARCHAR, weight VARCHAR)"}, {"answer": "SELECT thickness FROM table_name_35 WHERE year_of_issue < 1983", "question": "Which Thickness has a Year of Issue smaller than 1983?", "context": "CREATE TABLE table_name_35 (thickness VARCHAR, year_of_issue INTEGER)"}, {"answer": "SELECT description FROM table_name_8 WHERE year_of_issue = 1983 AND thickness = \"1.7mm\" AND weight = \"3.50grams\"", "question": "Which Description has a Year of Issue of 1983, and a Thickness of 1.7mm, and a Weight of 3.50grams?", "context": "CREATE TABLE table_name_8 (description VARCHAR, weight VARCHAR, year_of_issue VARCHAR, thickness VARCHAR)"}, {"answer": "SELECT thickness FROM table_name_3 WHERE weight = \"3.50grams\"", "question": "Which Thickness has a Weight of 3.50grams?", "context": "CREATE TABLE table_name_3 (thickness VARCHAR, weight VARCHAR)"}, {"answer": "SELECT thickness FROM table_name_56 WHERE diameter = \"21.9mm\"", "question": "Which Thickness has a Diameter of 21.9mm?", "context": "CREATE TABLE table_name_56 (thickness VARCHAR, diameter VARCHAR)"}, {"answer": "SELECT socialist_labor_ticket FROM table_name_65 WHERE liberal_ticket = \"w. averell harriman\"", "question": "Who was on the Socialist Labor ticket in the race against W. Averell Harriman?", "context": "CREATE TABLE table_name_65 (socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_65 WHERE democratic_ticket = \"arthur levitt\"", "question": "Who was the Republican candidate against the Democratic candidate Arthur Levitt?", "context": "CREATE TABLE table_name_65 (republican_ticket VARCHAR, democratic_ticket VARCHAR)"}, {"answer": "SELECT independent_socialist_ticket FROM table_name_35 WHERE office = \"comptroller\"", "question": "Who was the Independent Socialist candidate for the office of comptroller?", "context": "CREATE TABLE table_name_35 (independent_socialist_ticket VARCHAR, office VARCHAR)"}, {"answer": "SELECT independent_socialist_ticket FROM table_name_75 WHERE liberal_ticket = \"edward goodell\"", "question": "Who was the Independent Socialist candidate who ran against the Liberal candidate Edward Goodell?", "context": "CREATE TABLE table_name_75 (independent_socialist_ticket VARCHAR, liberal_ticket VARCHAR)"}, {"answer": "SELECT att FROM table_name_75 WHERE time = \"2:14\"", "question": "Which Att has a Time of 2:14?", "context": "CREATE TABLE table_name_75 (att VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_31 WHERE record = \"66-95\"", "question": "when is Record of 66-95?", "context": "CREATE TABLE table_name_31 (time VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_12 WHERE record = \"65-95\"", "question": "Which Opponent has a Record of 65-95?", "context": "CREATE TABLE table_name_12 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_43 WHERE player = \"ernie els\"", "question": "What is the to par that has ernie els as the player?", "context": "CREATE TABLE table_name_43 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_99 WHERE money___\u00a3__ = \"159,500\" AND country = \"france\"", "question": "What player has money of (\u00a3) 159,500, and france is the country?", "context": "CREATE TABLE table_name_99 (player VARCHAR, money___\u00a3__ VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_52 WHERE score = 69 - 70 - 68 - 73 = 280", "question": "What player has 69-70-68-73=280 as the score?", "context": "CREATE TABLE table_name_52 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_30 WHERE wins < 1 AND team = \"yamaha\" AND points > 2", "question": "What is the average year that has a win less than 1, yamaha as the team, with points greater than 2?", "context": "CREATE TABLE table_name_30 (year INTEGER, points VARCHAR, wins VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_7 WHERE class = \"350cc\" AND team = \"yamaha\" AND points < 37 AND year > 1979", "question": "What is the highest wins that has 350cc as the class, yamaha for the team, with points less than 37, and a year after 1979?", "context": "CREATE TABLE table_name_7 (wins INTEGER, year VARCHAR, points VARCHAR, class VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_77 WHERE class = \"500cc\" AND wins > 0 AND year > 1974", "question": "How many points have 500cc for the class, a win greater than 0, with a year after 1974?", "context": "CREATE TABLE table_name_77 (points INTEGER, year VARCHAR, class VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_21 WHERE year > 1976 AND class = \"350cc\"", "question": "How many wins have a year after 1976, and 350cc as the class?", "context": "CREATE TABLE table_name_21 (wins INTEGER, year VARCHAR, class VARCHAR)"}, {"answer": "SELECT COUNT(san_jose_wins) FROM table_name_43 WHERE la_goals > 6 AND la_wins < 21", "question": "How many San Jose wins have an LA goals larger than 6, and an LA wins smaller than 21?", "context": "CREATE TABLE table_name_43 (san_jose_wins VARCHAR, la_goals VARCHAR, la_wins VARCHAR)"}, {"answer": "SELECT MIN(san_jose_goals) FROM table_name_28 WHERE san_jose_wins < 0", "question": "Which San Jose goals have a San Jose wins smaller than 0?", "context": "CREATE TABLE table_name_28 (san_jose_goals INTEGER, san_jose_wins INTEGER)"}, {"answer": "SELECT MAX(april) FROM table_name_19 WHERE record = \"38-33-10\"", "question": "Name the most april with record of 38-33-10", "context": "CREATE TABLE table_name_19 (april INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE record = \"38-34-10\"", "question": "Name the opponent with record of 38-34-10", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(april) FROM table_name_46 WHERE record = \"38-33-10\" AND game > 81", "question": "Name the total number of April for game more than 81 and reord of 38-33-10", "context": "CREATE TABLE table_name_46 (april VARCHAR, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT series FROM table_name_53 WHERE date = \"may 14\"", "question": "what series was on may 14", "context": "CREATE TABLE table_name_53 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_95 WHERE country = \"england\" AND score = 66", "question": "What is the to par that has england as the country, with 66 as a score?", "context": "CREATE TABLE table_name_95 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_95 WHERE score < 68 AND player = \"paul casey\"", "question": "What country has a score less than 68, and paul casey as the player?", "context": "CREATE TABLE table_name_95 (country VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_28 WHERE player = \"alastair forsyth\"", "question": "What is the lowest score that has alastair forsyth as the player?", "context": "CREATE TABLE table_name_28 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_name_87 WHERE player = \"paul casey\"", "question": "How many scores have paul casey as a player?", "context": "CREATE TABLE table_name_87 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT owner FROM table_name_42 WHERE re_entered_service__p_ = \"11 september 1985\" AND pre_conversion = \"t326\"", "question": "Who owns the item that was a T326 before conversion and re-entered service on 11 September 1985?", "context": "CREATE TABLE table_name_42 (owner VARCHAR, re_entered_service__p_ VARCHAR, pre_conversion VARCHAR)"}, {"answer": "SELECT re_entered_service__p_ FROM table_name_22 WHERE entered_service__t_ = \"18 june 1956\" AND pre_conversion = \"t328\"", "question": "What date did the T328 that entered service on 18 June 1956 re-enter service?", "context": "CREATE TABLE table_name_22 (re_entered_service__p_ VARCHAR, entered_service__t_ VARCHAR, pre_conversion VARCHAR)"}, {"answer": "SELECT pre_conversion FROM table_name_16 WHERE owner = \"v/line passenger\" AND re_entered_service__p_ = \"23 november 1984\"", "question": "Which of V/Line Passenger's pre-conversions re-entered service on 23 November 1984?", "context": "CREATE TABLE table_name_16 (pre_conversion VARCHAR, owner VARCHAR, re_entered_service__p_ VARCHAR)"}, {"answer": "SELECT owner FROM table_name_80 WHERE entered_service__t_ = \"30 october 1956\"", "question": "Who owns the locomotive that entered service on 30 October 1956?", "context": "CREATE TABLE table_name_80 (owner VARCHAR, entered_service__t_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE record = \"50-85\"", "question": "What was the score of the game when the record was 50-85?", "context": "CREATE TABLE table_name_73 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_65 WHERE record = \"46-84\"", "question": "What was the loss of the game when the record was 46-84?", "context": "CREATE TABLE table_name_65 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_61 WHERE loss = \"cook (14\u20137)\"", "question": "What was the record at the game with a loss of Cook (14\u20137)?", "context": "CREATE TABLE table_name_61 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT album FROM table_name_74 WHERE length = \"4:53\"", "question": "What album is 4:53 long?", "context": "CREATE TABLE table_name_74 (album VARCHAR, length VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_42 WHERE 1986 = \"99\"", "question": "Which 1989 has a 1986 of 99?", "context": "CREATE TABLE table_name_42 (Id VARCHAR)"}, {"answer": "SELECT 1983 FROM table_name_2 WHERE tournament = \"wimbledon\"", "question": "Which 1983 has a Tournament of wimbledon?", "context": "CREATE TABLE table_name_2 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_11 WHERE 1987 = \"a\"", "question": "Which Tournament has A in 1987?", "context": "CREATE TABLE table_name_11 (tournament VARCHAR)"}, {"answer": "SELECT 1988 FROM table_name_54 WHERE 1985 = \"2r\"", "question": "Which 1988 has a 1985 of 2r?", "context": "CREATE TABLE table_name_54 (Id VARCHAR)"}, {"answer": "SELECT 1988 FROM table_name_46 WHERE 1982 = \"104\"", "question": "Which 1988 has a 1982 of 104?", "context": "CREATE TABLE table_name_46 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_26 WHERE 1984 = \"1r\"", "question": "Which Tournament has a 1984 of 1r?", "context": "CREATE TABLE table_name_26 (tournament VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_name_69 WHERE release_date = \"2008 q3\"", "question": "Release date of 2008 q3 has what release price?", "context": "CREATE TABLE table_name_69 (release_price___usd__ VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT socket FROM table_name_91 WHERE frequency = \"1.2 ghz\" AND release_price___usd__ = \"$70\"", "question": "Frequency of 1.2 ghz, and a Release price ( USD ) of $70 is what socket?", "context": "CREATE TABLE table_name_91 (socket VARCHAR, frequency VARCHAR, release_price___usd__ VARCHAR)"}, {"answer": "SELECT mult FROM table_name_3 WHERE socket = \"fcbga1088\" AND voltage = \"1v\" AND part_number_s_ = \"nu80579ez600cnu80579ez600ct\"", "question": "Socket of fcbga1088, and a Voltage of 1v, and a Part number(s) of nu80579ez600cnu80579ez600ct is what mult?", "context": "CREATE TABLE table_name_3 (mult VARCHAR, part_number_s_ VARCHAR, socket VARCHAR, voltage VARCHAR)"}, {"answer": "SELECT mult FROM table_name_85 WHERE sspec_number = \"slj6d(b1)slj6f(b1)\"", "question": "Spec number of slj6d(b1)slj6f(b1) has what mult.?", "context": "CREATE TABLE table_name_85 (mult VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_name_63 WHERE socket = \"without quickassist\"", "question": "Socket of without quickassist has what release price?", "context": "CREATE TABLE table_name_63 (release_price___usd__ VARCHAR, socket VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_name_3 WHERE release_date = \"2008 q3\" AND part_number_s_ = \"nu80579ez009c\"", "question": "Release date of 2008 q3, and a Part number(s) of nu80579ez009c has what Release price ( USD )?", "context": "CREATE TABLE table_name_3 (release_price___usd__ VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT MIN(hong_kong) FROM table_name_52 WHERE brisbane = 0 AND kuala_lumpur > 0", "question": "What is the lowest Hong Kong value with a 0 Brisbane value and a greater than 0 Kuala Lumpur value?", "context": "CREATE TABLE table_name_52 (hong_kong INTEGER, brisbane VARCHAR, kuala_lumpur VARCHAR)"}, {"answer": "SELECT MAX(kuala_lumpur) FROM table_name_82 WHERE durban < 1 AND mar_del_plata > 0", "question": "What is the highest Kuala Lumpur value with a Durban value less than 1 and a Mar Del Plata value greater than 0?", "context": "CREATE TABLE table_name_82 (kuala_lumpur INTEGER, durban VARCHAR, mar_del_plata VARCHAR)"}, {"answer": "SELECT MAX(new_zealand) FROM table_name_47 WHERE hong_kong < 0", "question": "What is the highest New Zealand value with a Hong Kong value less than 0?", "context": "CREATE TABLE table_name_47 (new_zealand INTEGER, hong_kong INTEGER)"}, {"answer": "SELECT AVG(singapore) FROM table_name_80 WHERE london < 0", "question": "What is the average Singapore value with a London value less than 0?", "context": "CREATE TABLE table_name_80 (singapore INTEGER, london INTEGER)"}, {"answer": "SELECT position FROM table_name_61 WHERE country = \"canada\" AND pick = \"8\"", "question": "What position was picked for Canada on Pick 8?", "context": "CREATE TABLE table_name_61 (position VARCHAR, country VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_41 WHERE year = 2011", "question": "What is the position that is shown for 2011?", "context": "CREATE TABLE table_name_41 (position VARCHAR, year VARCHAR)"}, {"answer": "SELECT language FROM table_name_27 WHERE film_name = \"seethaiah\"", "question": "what language is seethaiah in", "context": "CREATE TABLE table_name_27 (language VARCHAR, film_name VARCHAR)"}, {"answer": "SELECT producer FROM table_name_74 WHERE role = \"rizzette\"", "question": "Which Producer has a Role of rizzette?", "context": "CREATE TABLE table_name_74 (producer VARCHAR, role VARCHAR)"}, {"answer": "SELECT title FROM table_name_39 WHERE director = \"rowell santiago\"", "question": "Which Title has a Director of rowell santiago?", "context": "CREATE TABLE table_name_39 (title VARCHAR, director VARCHAR)"}, {"answer": "SELECT year FROM table_name_41 WHERE producer = \"viva films\" AND title = \"magkapatid\"", "question": "Which Year has a Producer of viva films, and a Title of magkapatid?", "context": "CREATE TABLE table_name_41 (year VARCHAR, producer VARCHAR, title VARCHAR)"}, {"answer": "SELECT director FROM table_name_80 WHERE role = \"melissa\"", "question": "Which Director has a Role of melissa?", "context": "CREATE TABLE table_name_80 (director VARCHAR, role VARCHAR)"}, {"answer": "SELECT 1990 AS _91 FROM table_name_34 WHERE average = 1.035", "question": "Which 1990-91 has an average number of 1.035?", "context": "CREATE TABLE table_name_34 (average VARCHAR)"}, {"answer": "SELECT result FROM table_name_90 WHERE week > 13", "question": "What results has a week larger than 13?", "context": "CREATE TABLE table_name_90 (result VARCHAR, week INTEGER)"}, {"answer": "SELECT result FROM table_name_79 WHERE week < 2", "question": "What results has a week smaller than 2?", "context": "CREATE TABLE table_name_79 (result VARCHAR, week INTEGER)"}, {"answer": "SELECT score FROM table_name_71 WHERE game = 30", "question": "What was the score for game number 30?", "context": "CREATE TABLE table_name_71 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_91 WHERE score = \"103\u2013126\"", "question": "What is the sum for the game with a score of 103\u2013126?", "context": "CREATE TABLE table_name_91 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_93 WHERE record = \"3\u201333\"", "question": "What is the lowest game number that has a Record of 3\u201333?", "context": "CREATE TABLE table_name_93 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE february = 21", "question": "what score was on february 21", "context": "CREATE TABLE table_name_18 (score VARCHAR, february VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_20 WHERE college_junior_club_team__league_ = \"ohio state university (ncaa)\"", "question": "What is the nationality of the player from the Ohio State University (NCAA) Team?", "context": "CREATE TABLE table_name_20 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_97 WHERE college_junior_club_team__league_ = \"kitchener rangers (oha)\"", "question": "What is the lowest round of the Kitchener Rangers (OHA)?", "context": "CREATE TABLE table_name_97 (round INTEGER, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_58 WHERE player = \"pierre daigneault\"", "question": "What is the position of Pierre Daigneault?", "context": "CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(2006) FROM table_name_26 WHERE 2010 = 417.9 AND 2011 > 426.7", "question": "What is the average 2006 value with a 2010 value of 417.9 and a 2011 value greater than 426.7?", "context": "CREATE TABLE table_name_26 (Id VARCHAR)"}, {"answer": "SELECT COUNT(2011) FROM table_name_45 WHERE 2008 > 346.5 AND 2009 = 392 AND 2010 > 354.6", "question": "What is the 2011 total with a 2008 value greater than 346.5, a 2009 value of 392, and a 2010 value bigger than 354.6?", "context": "CREATE TABLE table_name_45 (Id VARCHAR)"}, {"answer": "SELECT COUNT(2008) FROM table_name_53 WHERE 2006 > 322.7 AND 2011 = 353.9 AND 2009 < 392", "question": "What is the total 2008 value with a 2006 value greater than 322.7, a 353.9 in 2011, and a 2009 less than 392?", "context": "CREATE TABLE table_name_53 (Id VARCHAR)"}, {"answer": "SELECT MAX(2009) FROM table_name_10 WHERE 2006 < 280.4 AND 2007 < 2.2 AND 2010 < 3.5", "question": "What is the highest 2009 value with a 2006 value smaller than 280.4, a 2007 less than 2.2, and a 2011 less than 3.5?", "context": "CREATE TABLE table_name_10 (Id VARCHAR)"}, {"answer": "SELECT AVG(2007) FROM table_name_19 WHERE 2009 > 2.8 AND 2010 = 4.9 AND 2006 < 2.5", "question": "What is the average 2007 value with a 2009 value greater than 2.8, a 4.9 in 2010, and a 2006 less than 2.5?", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT COUNT(2006) FROM table_name_95 WHERE 2010 > 417.9", "question": "What is the 2006 total with a 2010 value greater than 417.9?", "context": "CREATE TABLE table_name_95 (Id VARCHAR)"}, {"answer": "SELECT date FROM table_name_19 WHERE opponent = \"@ philadelphia phillies\" AND attendance = \"20,072\"", "question": "when has an Opponent of @ philadelphia phillies and an Attendance of 20,072?", "context": "CREATE TABLE table_name_19 (date VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_19 WHERE date = \"april 28\"", "question": "Which Opponent is on april 28?", "context": "CREATE TABLE table_name_19 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_62 WHERE attendance = \"24,597\"", "question": "Which Record has an Attendance of 24,597?", "context": "CREATE TABLE table_name_62 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_44 WHERE loss = \"o'connor (0-1)\"", "question": "Which Record has a Loss of o'connor (0-1)?", "context": "CREATE TABLE table_name_44 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_24 WHERE loss = \"drese (0-2)\"", "question": "which attendance has a Loss of drese (0-2)?", "context": "CREATE TABLE table_name_24 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(2 AS nd__m_) FROM table_name_14 WHERE rank > 2 AND points > 249.3", "question": "What is the highest 2nd in (m) that has a Rank more than 2 and Points more than 249.3", "context": "CREATE TABLE table_name_14 (rank VARCHAR, points VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_45 WHERE result = \"re-elected\" AND district = \"south carolina 1\"", "question": "What is the first date of election for the incumbent that was re-elected in the South Carolina 1 district?", "context": "CREATE TABLE table_name_45 (first_elected VARCHAR, result VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_43 WHERE first_elected = \"1876\"", "question": "Who was the incumbent who was first elected in 1876?", "context": "CREATE TABLE table_name_43 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_84 WHERE party = \"democratic\" AND district = \"south carolina 5\"", "question": "Who was the Democratic incumbent in the South Carolina 5 District?", "context": "CREATE TABLE table_name_84 (incumbent VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_98 WHERE district = \"south carolina 4\"", "question": "What is the first elected date for the incumbent in the South Carolina 4 district?", "context": "CREATE TABLE table_name_98 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT area__km_2__ FROM table_name_1 WHERE telephone__052_ = \"3862279\"", "question": "Which area has a telephone of (052) of 3862279?", "context": "CREATE TABLE table_name_1 (area__km_2__ VARCHAR, telephone__052_ VARCHAR)"}, {"answer": "SELECT driver FROM table_name_40 WHERE points > 252 AND season = \"2012\" AND percentage_of_possible_points = \"55.60%\"", "question": "Which driver had points over 252 in the season of 2012 with a percentage of possible points at 55.60%?", "context": "CREATE TABLE table_name_40 (driver VARCHAR, percentage_of_possible_points VARCHAR, points VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(races) FROM table_name_28 WHERE points = 257", "question": "What is the number of races that took place with points of 257?", "context": "CREATE TABLE table_name_28 (races INTEGER, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_72 WHERE races = 20 AND driver = \"fernando alonso\"", "question": "What is the number of points that driver fernando alonso has in the season he had 20 races?", "context": "CREATE TABLE table_name_72 (points INTEGER, races VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_15 WHERE driver = \"fernando alonso\" AND percentage_of_possible_points = \"53.05%\"", "question": "What was the average Points of the season driver Fernando Alonso had a percentage of possible points of 53.05%?", "context": "CREATE TABLE table_name_15 (points INTEGER, driver VARCHAR, percentage_of_possible_points VARCHAR)"}, {"answer": "SELECT position FROM table_name_93 WHERE pick = 217", "question": "What position has 217 as the pick?", "context": "CREATE TABLE table_name_93 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE record = \"18-21-7\"", "question": "Which score has a record of 18-21-7?", "context": "CREATE TABLE table_name_36 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(apps) FROM table_name_86 WHERE season = \"2009\" AND division < 1", "question": "What is the lowest value for apps in 2009 season in a division less than 1?", "context": "CREATE TABLE table_name_86 (apps INTEGER, season VARCHAR, division VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_48 WHERE team = \"torpedo moscow\" AND division = 1 AND apps < 29", "question": "What is the sum of goals for Torpedo Moscow in division 1 with an apps value less than 29?", "context": "CREATE TABLE table_name_48 (goals INTEGER, apps VARCHAR, team VARCHAR, division VARCHAR)"}, {"answer": "SELECT remixed_by FROM table_name_80 WHERE version = \"album version\" AND album = \"les mots\"", "question": "Which Remixed by has a Version of album version, and an Album of les mots?", "context": "CREATE TABLE table_name_80 (remixed_by VARCHAR, version VARCHAR, album VARCHAR)"}, {"answer": "SELECT length FROM table_name_74 WHERE year = 1986 AND version = \"instrumental\"", "question": "How long was the instrumental version in 1986?", "context": "CREATE TABLE table_name_74 (length VARCHAR, year VARCHAR, version VARCHAR)"}, {"answer": "SELECT remixed_by FROM table_name_51 WHERE year = 1986 AND version = \"long version\"", "question": "Which long version was remixed in 1986?", "context": "CREATE TABLE table_name_51 (remixed_by VARCHAR, year VARCHAR, version VARCHAR)"}, {"answer": "SELECT lead FROM table_name_76 WHERE country = \"canada\"", "question": "Who was Canada's lead?", "context": "CREATE TABLE table_name_76 (lead VARCHAR, country VARCHAR)"}, {"answer": "SELECT skip FROM table_name_68 WHERE country = \"canada\"", "question": "What was Canada's skip?", "context": "CREATE TABLE table_name_68 (skip VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_50 WHERE lead = \"sarah wazney\"", "question": "Which country has a Lead of sarah wazney?", "context": "CREATE TABLE table_name_50 (country VARCHAR, lead VARCHAR)"}, {"answer": "SELECT lead FROM table_name_56 WHERE third = \"jeanne ellegaard\"", "question": "Which Lead has a Third of jeanne ellegaard?", "context": "CREATE TABLE table_name_56 (lead VARCHAR, third VARCHAR)"}, {"answer": "SELECT skip FROM table_name_39 WHERE third = \"sara carlsson\"", "question": "Which Skip has a Third of sara carlsson?", "context": "CREATE TABLE table_name_39 (skip VARCHAR, third VARCHAR)"}, {"answer": "SELECT skip FROM table_name_21 WHERE second = \"vicki adams\"", "question": "Which Skip has a Second of vicki adams?", "context": "CREATE TABLE table_name_21 (skip VARCHAR, second VARCHAR)"}, {"answer": "SELECT SUM(enrollment) FROM table_name_72 WHERE school = \"south central (union mills)\"", "question": "Enrollment that has a School of south central (union mills) has what sum?", "context": "CREATE TABLE table_name_72 (enrollment INTEGER, school VARCHAR)"}, {"answer": "SELECT city FROM table_name_17 WHERE mascot = \"blazers\"", "question": "Mascot of blazers involves what city?", "context": "CREATE TABLE table_name_17 (city VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT school FROM table_name_83 WHERE county = \"46 laporte\"", "question": "County of 46 laporte is what school?", "context": "CREATE TABLE table_name_83 (school VARCHAR, county VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_56 WHERE time = \"spun off\"", "question": "What is the average Laps that shows spun off for time?", "context": "CREATE TABLE table_name_56 (laps INTEGER, time VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_76 WHERE grid > 1 AND team = \"mexico\"", "question": "What is the average Laps for the Mexico team with a grid number of more than 1?", "context": "CREATE TABLE table_name_76 (laps INTEGER, grid VARCHAR, team VARCHAR)"}, {"answer": "SELECT driver FROM table_name_85 WHERE time = \"+13.315\"", "question": "What is name of the drive with a Time of +13.315?", "context": "CREATE TABLE table_name_85 (driver VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_6 WHERE laps = 14 AND time = \"+29.483\"", "question": "What is the total grid number that has 14 laps and a time of +29.483?", "context": "CREATE TABLE table_name_6 (grid VARCHAR, laps VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_39 WHERE time = \"collision\" AND team = \"switzerland\" AND grid < 11", "question": "What is the total number of Laps when collision shows for time for Switzerland and less than 11 for grid?", "context": "CREATE TABLE table_name_39 (laps VARCHAR, grid VARCHAR, time VARCHAR, team VARCHAR)"}, {"answer": "SELECT time___et__ FROM table_name_67 WHERE week > 4 AND opponent = \"baltimore ravens\"", "question": "What is the time of the game after week 4 against the Baltimore Ravens?", "context": "CREATE TABLE table_name_67 (time___et__ VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT nominated_work FROM table_name_24 WHERE award = \"seattle international film festival\"", "question": "What nominated work has seattle international film festival as the award?", "context": "CREATE TABLE table_name_24 (nominated_work VARCHAR, award VARCHAR)"}, {"answer": "SELECT award FROM table_name_52 WHERE category = \"breakthrough performance\"", "question": "What award has breakthrough performance as the category?", "context": "CREATE TABLE table_name_52 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_name_9 WHERE award = \"showest award\"", "question": "What category has showest award for the category awards?", "context": "CREATE TABLE table_name_9 (category VARCHAR, award VARCHAR)"}, {"answer": "SELECT category FROM table_name_33 WHERE year > 2004", "question": "What category has a year after 2004?", "context": "CREATE TABLE table_name_33 (category VARCHAR, year INTEGER)"}, {"answer": "SELECT opponent FROM table_name_67 WHERE score = \"6-3, 6-2\"", "question": "Which Opponent had a Score of 6-3, 6-2?", "context": "CREATE TABLE table_name_67 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE opponent = \"chris evert-lloyd\"", "question": "Which Score had an Opponent of chris evert-lloyd?", "context": "CREATE TABLE table_name_53 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_45 WHERE opponent = \"chris evert-lloyd\"", "question": "Which Surface had an Opponent of chris evert-lloyd?", "context": "CREATE TABLE table_name_45 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_14 WHERE date = \"june 13, 1983\"", "question": "Which Surface had a Date of june 13, 1983?", "context": "CREATE TABLE table_name_14 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_25 WHERE home_team = \"geelong\"", "question": "What was the highest attendance for a game where Geelong was the home team?", "context": "CREATE TABLE table_name_25 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_83 WHERE home_team = \"brisbane lions\"", "question": "What was the away team score when the home team was the Brisbane Lions?", "context": "CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_30 WHERE ground = \"telstra dome\" AND home_team = \"western bulldogs\"", "question": "What was the largest attendance at the Telstra Dome, when the home team was the Western Bulldogs?", "context": "CREATE TABLE table_name_30 (crowd INTEGER, ground VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(total_cargo__metric_tonnes_) FROM table_name_13 WHERE code__iata_icao_ = \"pvg/zspd\" AND rank < 3", "question": "What is the full amount of Total Cargo (in Metric Tonnes) where the Code (IATA/ICAO) is pvg/zspd, and the rank is less than 3?", "context": "CREATE TABLE table_name_13 (total_cargo__metric_tonnes_ INTEGER, code__iata_icao_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE site = \"memorial stadium \u2022 minneapolis, mn\" AND attendance = \"20,000\" AND result = \"w52-0\"", "question": "What is the Date at memorial stadium \u2022 minneapolis, mn with an Attendance of 20,000, and a Result of w52-0?", "context": "CREATE TABLE table_name_7 (date VARCHAR, result VARCHAR, site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent_number FROM table_name_25 WHERE site = \"memorial stadium \u2022 minneapolis, mn\" AND date = \"10/20/1928\"", "question": "What is the Opponent name at memorial stadium \u2022 minneapolis, mn on 10/20/1928?", "context": "CREATE TABLE table_name_25 (opponent_number VARCHAR, site VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_15 WHERE opponent_number = \"purdue\"", "question": "What is the Attendance number when the Opponent was purdue?", "context": "CREATE TABLE table_name_15 (attendance VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT site FROM table_name_92 WHERE result = \"w52-0\"", "question": "What is the Site when the Result was w52-0?", "context": "CREATE TABLE table_name_92 (site VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_42 WHERE date = \"11/10/1928\"", "question": "What is the Attendance on 11/10/1928?", "context": "CREATE TABLE table_name_42 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_74 WHERE venue = \"campbelltown sports stadium\"", "question": "Who was the Winner at Campbelltown Sports Stadium?", "context": "CREATE TABLE table_name_74 (winner VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_74 WHERE winner = \"sydney roosters\" AND crowd > 7 OFFSET 426", "question": "When Sydney Roosters won with a Crown of more than 7,426, what was the Venue?", "context": "CREATE TABLE table_name_74 (venue VARCHAR, winner VARCHAR, crowd VARCHAR)"}, {"answer": "SELECT second_leg FROM table_name_35 WHERE phase = \"group stage\" AND round = \"matchday 5\"", "question": "What was the second leg score from the group stage on matchday 5?", "context": "CREATE TABLE table_name_35 (second_leg VARCHAR, phase VARCHAR, round VARCHAR)"}, {"answer": "SELECT year_erected FROM table_name_51 WHERE artist = \"enrique alciati\"", "question": "what year did enrique alciati make a statue", "context": "CREATE TABLE table_name_51 (year_erected VARCHAR, artist VARCHAR)"}, {"answer": "SELECT artist FROM table_name_81 WHERE country = \"uruguay\"", "question": "what artist cam from uruguay", "context": "CREATE TABLE table_name_81 (artist VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_55 WHERE mixed_doubles = \"mika heinonen susanna dahlberg\"", "question": "When did mika heinonen susanna dahlberg win mixed doubles?", "context": "CREATE TABLE table_name_55 (year INTEGER, mixed_doubles VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_32 WHERE score = \"0\u20133 (11\u201321, 14\u201321)\"", "question": "Score of 0\u20133 (11\u201321, 14\u201321) had what outcome?", "context": "CREATE TABLE table_name_32 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE venue = \"thessaloniki (without participation)\"", "question": "Venue of thessaloniki (without participation) had what score?", "context": "CREATE TABLE table_name_99 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_51 WHERE outcome = \"13\" AND year = \"2007\"", "question": "Outcome of 13, and a Year of 2007 happened in what venue?", "context": "CREATE TABLE table_name_51 (venue VARCHAR, outcome VARCHAR, year VARCHAR)"}, {"answer": "SELECT eruptions FROM table_name_51 WHERE location = \"pacific ring of fire\" AND volcanic_explosivity_index = \"6\" AND country = \"peru\"", "question": "Which Eruptions have a Location of pacific ring of fire, and a Volcanic Explosivity Index of 6, and a Country of peru?", "context": "CREATE TABLE table_name_51 (eruptions VARCHAR, country VARCHAR, location VARCHAR, volcanic_explosivity_index VARCHAR)"}, {"answer": "SELECT fatalities FROM table_name_50 WHERE country = \"italy\"", "question": "How many fatalities does Italy have?", "context": "CREATE TABLE table_name_50 (fatalities VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_22 WHERE location = \"pacific ring of fire\" AND eruptions = \"pinatubo\"", "question": "How many years have a Location of pacific ring of fire, and Eruptions of pinatubo?", "context": "CREATE TABLE table_name_22 (year INTEGER, location VARCHAR, eruptions VARCHAR)"}, {"answer": "SELECT standings FROM table_name_28 WHERE champions = \"eintracht braunschweig\"", "question": "What is the Standings of Eintracht Braunschweig?", "context": "CREATE TABLE table_name_28 (standings VARCHAR, champions VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_92 WHERE year > 2001", "question": "Year larger than 2001 has what average points?", "context": "CREATE TABLE table_name_92 (points INTEGER, year INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_name_69 WHERE team = \"honda\" AND points = 238", "question": "Team of Honda and a point total of 238 is what highest year?", "context": "CREATE TABLE table_name_69 (year INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_name_96 WHERE wins = 0", "question": "Wins of 0 involves what team?", "context": "CREATE TABLE table_name_96 (team VARCHAR, wins VARCHAR)"}, {"answer": "SELECT player FROM table_name_75 WHERE pick = 5", "question": "what player has a pick of 5", "context": "CREATE TABLE table_name_75 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT district FROM table_name_2 WHERE first_elected = 1858 AND result = \"retired republican gain\" AND incumbent = \"william millward\"", "question": "Which District has a First elected of 1858, and a Result of retired republican gain, and an Incumbent of william millward?", "context": "CREATE TABLE table_name_2 (district VARCHAR, incumbent VARCHAR, first_elected VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_5 WHERE district = \"pennsylvania 13\"", "question": "Which Result has a District of pennsylvania 13?", "context": "CREATE TABLE table_name_5 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_name_9 WHERE incumbent = \"william stewart\"", "question": "Which First elected is the lowest one that has an Incumbent of william stewart?", "context": "CREATE TABLE table_name_9 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT player FROM table_name_24 WHERE college_junior_club_team__league_ = \"regina pats (whl)\"", "question": "Who was the Player when College/Junior/Club Team (League) was regina pats (whl)?", "context": "CREATE TABLE table_name_24 (player VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE attendance > 62 OFFSET 491", "question": "What is the date of the game with an attendance larger than 62,491?", "context": "CREATE TABLE table_name_55 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT attendance FROM table_name_10 WHERE week = 4", "question": "What is the attendance of the game on week 4?", "context": "CREATE TABLE table_name_10 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(extra_points) FROM table_name_35 WHERE touchdowns < 2 AND player = \"herrnstein\" AND field_goals < 0", "question": "How many extra points are there that Herrnstein had with less than 2 touchdowns and less than 0 field goals?", "context": "CREATE TABLE table_name_35 (extra_points INTEGER, field_goals VARCHAR, touchdowns VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(touchdowns) FROM table_name_53 WHERE extra_points = 0 AND field_goals < 0", "question": "How many touchdowns are there that has field goals less than 0 and 0 extra points?", "context": "CREATE TABLE table_name_53 (touchdowns INTEGER, extra_points VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT SUM(field_goals) FROM table_name_91 WHERE touchdowns = 8 AND points > 49", "question": "How many field goals are there that have 8 touchdowns and more than 49 points?", "context": "CREATE TABLE table_name_91 (field_goals INTEGER, touchdowns VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_name_66 WHERE points > 5 AND field_goals = 0 AND player = \"snow\" AND extra_points > 0", "question": "What's the number of touchdowns that Snow made that had 0 field goals, more than 5 points, and more than 0 extra points?", "context": "CREATE TABLE table_name_66 (touchdowns INTEGER, extra_points VARCHAR, player VARCHAR, points VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT icao FROM table_name_21 WHERE iata = \"mle\"", "question": "For an IATA of MLE, what is the ICAO?", "context": "CREATE TABLE table_name_21 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_66 WHERE icao = \"vcct\"", "question": "For an ICAO of VCCT, what is the IATA?", "context": "CREATE TABLE table_name_66 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT city FROM table_name_96 WHERE icao = \"vccj\"", "question": "Which city has an ICAO of VCCJ?", "context": "CREATE TABLE table_name_96 (city VARCHAR, icao VARCHAR)"}, {"answer": "SELECT icao FROM table_name_97 WHERE city = \"vavuniya\"", "question": "Which ICAO is found in Vavuniya?", "context": "CREATE TABLE table_name_97 (icao VARCHAR, city VARCHAR)"}, {"answer": "SELECT country FROM table_name_76 WHERE airport = \"weerawila airport\"", "question": "Which country has Weerawila Airport?", "context": "CREATE TABLE table_name_76 (country VARCHAR, airport VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_39 WHERE date = \"april 1\"", "question": "Which opponent has april 1 as the date?", "context": "CREATE TABLE table_name_39 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_24 WHERE loss = \"tomko (1-1)\"", "question": "What opponent has tomko (1-1) as a loss?", "context": "CREATE TABLE table_name_24 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_76 WHERE record = \"8-10\"", "question": "What opponent has 8-10 as the record?", "context": "CREATE TABLE table_name_76 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT class_aAA FROM table_name_85 WHERE school_year = \"2006-07\"", "question": "Whcih was the Class AAA in school year 2006-07?", "context": "CREATE TABLE table_name_85 (class_aAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aA FROM table_name_52 WHERE school_year = \"1994-95\"", "question": "What team was class AA in years 1994-95?", "context": "CREATE TABLE table_name_52 (class_aA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aA FROM table_name_26 WHERE school_year = \"1994-95\"", "question": "Who was Class AA in School Year 1994-95?", "context": "CREATE TABLE table_name_26 (class_aA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE visitor = \"bulls\"", "question": "What's the date of the game that has the Bulls as a visiting team?", "context": "CREATE TABLE table_name_48 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_3 WHERE february > 13 AND opponent = \"toronto maple leafs\" AND points > 47", "question": "What is the average game number that took place after February 13 against the Toronto Maple Leafs and more than 47 points were scored?", "context": "CREATE TABLE table_name_3 (game INTEGER, points VARCHAR, february VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_30 WHERE week < 11 AND game_site = \"sullivan stadium\"", "question": "Who was the opponent at the game at Sullivan Stadium before week 11?", "context": "CREATE TABLE table_name_30 (opponent VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT years FROM table_name_25 WHERE pct = 0.667 AND lost = 380", "question": "What is the years coached by the person with a win percentage of 0.667 and 380 losses?", "context": "CREATE TABLE table_name_25 (years VARCHAR, pct VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(pct) FROM table_name_97 WHERE years = \"1905\" AND lost > 7", "question": "What is the average percent for the coach from 1905 and more than 7 losses?", "context": "CREATE TABLE table_name_97 (pct INTEGER, years VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(pct) FROM table_name_17 WHERE lost = 20 AND seasons > 1", "question": "How many percentages have 20 losses and more than 1 season?", "context": "CREATE TABLE table_name_17 (pct VARCHAR, lost VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT home FROM table_name_67 WHERE date = \"february 10\"", "question": "What home has February 10 as the date?", "context": "CREATE TABLE table_name_67 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE visitor = \"ny islanders\"", "question": "What date has ny islanders as the visitor?", "context": "CREATE TABLE table_name_66 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE date = \"february 10\"", "question": "What score has February 10 as the date?", "context": "CREATE TABLE table_name_57 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT course FROM table_name_29 WHERE date = \"24 july\"", "question": "Name the course for 24 july", "context": "CREATE TABLE table_name_29 (course VARCHAR, date VARCHAR)"}, {"answer": "SELECT course FROM table_name_58 WHERE type = \"team time trial\"", "question": "Name the course for team time trial", "context": "CREATE TABLE table_name_58 (course VARCHAR, type VARCHAR)"}, {"answer": "SELECT winner FROM table_name_98 WHERE course = \"rest day\" AND date = \"13 july\"", "question": "Name the winner for rest day for 13 july", "context": "CREATE TABLE table_name_98 (winner VARCHAR, course VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(entered) FROM table_name_86 WHERE wrestler = \"shawn michaels\"", "question": "Shawn Michaels entered the elimination chamber in what position?", "context": "CREATE TABLE table_name_86 (entered INTEGER, wrestler VARCHAR)"}, {"answer": "SELECT eliminated_by FROM table_name_49 WHERE wrestler = \"kurt angle\"", "question": "Who Eliminated Kurt Angle?", "context": "CREATE TABLE table_name_49 (eliminated_by VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT eliminated_by FROM table_name_63 WHERE wrestler = \"kane\"", "question": "Who Eliminated Kane?", "context": "CREATE TABLE table_name_63 (eliminated_by VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_98 WHERE nation = \"algeria\" AND total < 3", "question": "What is the sum of all gold medals for Algeria when total medals is less than 3?", "context": "CREATE TABLE table_name_98 (gold INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(population) FROM table_name_56 WHERE country = \"spain\" AND urban_area = \"valencia\"", "question": "what is the population of Valencia, Spain?", "context": "CREATE TABLE table_name_56 (population INTEGER, country VARCHAR, urban_area VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_89 WHERE rank = \"2\"", "question": "which year holds rank 2?", "context": "CREATE TABLE table_name_89 (year INTEGER, rank VARCHAR)"}, {"answer": "SELECT AVG(floors) FROM table_name_19 WHERE name = \"meridian condominiums\"", "question": "with name meridian condominiums what is number of floors?", "context": "CREATE TABLE table_name_19 (floors INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_48 WHERE rank = \"31\"", "question": "with rank of 31 what is the year?", "context": "CREATE TABLE table_name_48 (year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE visitor = \"toronto\"", "question": "What was the date of the match against the visiting team, Toronto?", "context": "CREATE TABLE table_name_78 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT home FROM table_name_56 WHERE date = \"january 6\"", "question": "Who played the home team during the game on January 6?", "context": "CREATE TABLE table_name_56 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_88 WHERE visitor = \"boston\"", "question": "What was the cougars record during the game where Boston were the visitors?", "context": "CREATE TABLE table_name_88 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_1 WHERE lost < 0", "question": "What's the lowest Drawn that has a Lost that's less than 0?", "context": "CREATE TABLE table_name_1 (drawn INTEGER, lost INTEGER)"}, {"answer": "SELECT SUM(lost) FROM table_name_23 WHERE games < 4", "question": "What's the total Lost with Games that's less than 4?", "context": "CREATE TABLE table_name_23 (lost INTEGER, games INTEGER)"}, {"answer": "SELECT SUM(games) FROM table_name_75 WHERE lost > 2 AND points < 0", "question": "What's the total of Games with a Lost that's larger than 2, and has Points that's smaller than 0?", "context": "CREATE TABLE table_name_75 (games INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_19 WHERE drawn < 0", "question": "What's the Lost average that has a Drawn less than 0?", "context": "CREATE TABLE table_name_19 (lost INTEGER, drawn INTEGER)"}, {"answer": "SELECT record FROM table_name_93 WHERE opponent = \"@ ottawa senators\"", "question": "What record has @ ottawa senators as the opponent?", "context": "CREATE TABLE table_name_93 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game FROM table_name_50 WHERE points = 28 AND opponent = \"tampa bay lightning\"", "question": "What game has 28 points, and tampa bay lightning as the opponent?", "context": "CREATE TABLE table_name_50 (game VARCHAR, points VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_17 WHERE december < 6 AND game > 26", "question": "What is the average points that have a December less than 6, with a game greater than 26?", "context": "CREATE TABLE table_name_17 (points INTEGER, december VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_36 WHERE loss = \"sele (0-1)\"", "question": "Who was the opponent at the game with a loss of Sele (0-1)?", "context": "CREATE TABLE table_name_36 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_95 WHERE record = \"42\u201316\u20138\" AND march > 5", "question": "Record of 42\u201316\u20138, and a March larger than 5 has what average points?", "context": "CREATE TABLE table_name_95 (points INTEGER, record VARCHAR, march VARCHAR)"}, {"answer": "SELECT game FROM table_name_30 WHERE points < 96 AND record = \"43\u201316\u20138\"", "question": "Points smaller than 96, and a Record of 43\u201316\u20138 belongs to what game?", "context": "CREATE TABLE table_name_30 (game VARCHAR, points VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_39 WHERE game < 70 AND record = \"43\u201316\u20138\"", "question": "Game smaller than 70, and a Record of 43\u201316\u20138 is what opponent?", "context": "CREATE TABLE table_name_39 (opponent VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE record = \"44\u201318\u20138\"", "question": "Record of 44\u201318\u20138 involves which score?", "context": "CREATE TABLE table_name_95 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT college FROM table_name_44 WHERE player = \"kellen davis\"", "question": "Which college is Kellen Davis from?", "context": "CREATE TABLE table_name_44 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_30 WHERE position = \"according to official website\"", "question": "Which round's position is according to official website?", "context": "CREATE TABLE table_name_30 (round VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_29 WHERE round = \"3\" AND pick = \"70\"", "question": "Which position's round was 3 when pick was 70?", "context": "CREATE TABLE table_name_29 (position VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_40 WHERE round = \"5\" AND player = \"kellen davis\"", "question": "Which pick's round was 5 when Kellen Davis was a player?", "context": "CREATE TABLE table_name_40 (pick VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_86 WHERE pick = \"14\"", "question": "Which college's pick was 14?", "context": "CREATE TABLE table_name_86 (college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT SUM(rec) FROM table_name_95 WHERE average < 32 AND s_touchdown < 3 AND opponent = \"oregon state\"", "question": "Which Rec has an Average smaller than 32, and a Touchdown smaller than 3, and an Opponent of oregon state?", "context": "CREATE TABLE table_name_95 (rec INTEGER, opponent VARCHAR, average VARCHAR, s_touchdown VARCHAR)"}, {"answer": "SELECT AVG(rec) FROM table_name_52 WHERE yards = 192 AND s_touchdown < 1", "question": "Which rec has Yards of 192, and a Touchdown smaller than 1?", "context": "CREATE TABLE table_name_52 (rec INTEGER, yards VARCHAR, s_touchdown VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_95 WHERE yards < 197 AND average < 32 AND year = 1966", "question": "Which Opponent has Yards smaller than 197, and an Average smaller than 32, and a Year of 1966?", "context": "CREATE TABLE table_name_95 (opponent VARCHAR, year VARCHAR, yards VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(s_touchdown) FROM table_name_57 WHERE rec = 10 AND opponent = \"oregon state\" AND average < 19.7", "question": "How many Touchdowns have a rec of 10, and an Opponent of oregon state, and an Average smaller than 19.7?", "context": "CREATE TABLE table_name_57 (s_touchdown VARCHAR, average VARCHAR, rec VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_2 WHERE opponent = \"@ atlanta thrashers\" AND game < 28", "question": "Which Points have an Opponent of @ atlanta thrashers, and a Game smaller than 28?", "context": "CREATE TABLE table_name_2 (points INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_98 WHERE game < 37 AND score = \"2\u20133\" AND december = 13", "question": "How many Points have a Game smaller than 37, and a Score of 2\u20133, and a December of 13?", "context": "CREATE TABLE table_name_98 (points VARCHAR, december VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_92 WHERE score = \"3\u20132\"", "question": "Which Game is the highest one that has a Score of 3\u20132?", "context": "CREATE TABLE table_name_92 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT spans FROM table_name_73 WHERE built = \"1896\"", "question": "What spans were built in 1896?", "context": "CREATE TABLE table_name_73 (spans VARCHAR, built VARCHAR)"}, {"answer": "SELECT name FROM table_name_21 WHERE length__ft_ = 71", "question": "Who has a length of 71 ft?", "context": "CREATE TABLE table_name_21 (name VARCHAR, length__ft_ VARCHAR)"}, {"answer": "SELECT location FROM table_name_98 WHERE county = \"rockingham\"", "question": "Where was the county of rockingham?", "context": "CREATE TABLE table_name_98 (location VARCHAR, county VARCHAR)"}, {"answer": "SELECT propulsion FROM table_name_79 WHERE year < 1962 AND name = \"rb 04\"", "question": "What is the propulsion for the RB 04 earlier than 1962?", "context": "CREATE TABLE table_name_79 (propulsion VARCHAR, year VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_96 WHERE propulsion = \"turbojet\" AND year > 1985 AND launched_by = \"surface, sub\"", "question": "What is the name of the anti-ship missile that had a turbojet propulsion that was launched by a surface, sub after 1985?", "context": "CREATE TABLE table_name_96 (name VARCHAR, launched_by VARCHAR, propulsion VARCHAR, year VARCHAR)"}, {"answer": "SELECT country FROM table_name_96 WHERE propulsion = \"solid rocket\"", "question": "What country had an anti-ship missile that had a solid rocket propulsion?", "context": "CREATE TABLE table_name_96 (country VARCHAR, propulsion VARCHAR)"}, {"answer": "SELECT COUNT(number_of_seats) FROM table_name_17 WHERE year = \"2001\" AND quantity > 4", "question": "How many seats in 2001 with a quantity greater than 4?", "context": "CREATE TABLE table_name_17 (number_of_seats VARCHAR, year VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT make_and_model FROM table_name_67 WHERE fuel_propulsion = \"diesel\" AND floor_type = \"high\" AND bicycle_capacity\u2020 < 3 AND quantity = 4", "question": "What make and model of the diesel vehicle with a high floor type, bike capacity less than 3, and a quantity of 4?", "context": "CREATE TABLE table_name_67 (make_and_model VARCHAR, quantity VARCHAR, bicycle_capacity\u2020 VARCHAR, fuel_propulsion VARCHAR, floor_type VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE opponent = \"nashville predators\"", "question": "What score has nashville predators as the opponent?", "context": "CREATE TABLE table_name_91 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_36 WHERE december = 27", "question": "What are the average points that have december 27?", "context": "CREATE TABLE table_name_36 (points INTEGER, december VARCHAR)"}, {"answer": "SELECT record FROM table_name_1 WHERE points > 39 AND game = 38", "question": "What record has points greater than 39, with 38 as the game?", "context": "CREATE TABLE table_name_1 (record VARCHAR, points VARCHAR, game VARCHAR)"}, {"answer": "SELECT stuffit FROM table_name_75 WHERE gzip = \"yes\" AND iso_cd_image = \"no\" AND lha_lzh = \"no\"", "question": "What is the Stuffit ability that has a gzip of yes, ISO/CD images of no and LHA/LZH of no?", "context": "CREATE TABLE table_name_75 (stuffit VARCHAR, lha_lzh VARCHAR, gzip VARCHAR, iso_cd_image VARCHAR)"}, {"answer": "SELECT gzip FROM table_name_90 WHERE stuffit = \"no\" AND bzip2 = \"no\" AND lha_lzh = \"no\"", "question": "What is the gzip value associated with a stuffit of no, bzip2 of no, and LHA.LZH of no?", "context": "CREATE TABLE table_name_90 (gzip VARCHAR, lha_lzh VARCHAR, stuffit VARCHAR, bzip2 VARCHAR)"}, {"answer": "SELECT stuffit AS X FROM table_name_26 WHERE stuffit = \"unknown\" AND lha_lzh = \"yes\" AND iso_cd_image = \"unknown\"", "question": "What is the StuffitX value that has a Stuffit of unknown, LHA/LZH of yes, and unknown ISO/CD image?", "context": "CREATE TABLE table_name_26 (stuffit VARCHAR, iso_cd_image VARCHAR, lha_lzh VARCHAR)"}, {"answer": "SELECT stuffit FROM table_name_99 WHERE bzip2 = \"no\" AND lha_lzh = \"no\"", "question": "What is the stuffit that has bzip and LHA/LZH of no?", "context": "CREATE TABLE table_name_99 (stuffit VARCHAR, bzip2 VARCHAR, lha_lzh VARCHAR)"}, {"answer": "SELECT round FROM table_name_43 WHERE player = \"robert deciantis\"", "question": "Which round was Robert Deciantis taken in?", "context": "CREATE TABLE table_name_43 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_15 WHERE player = \"brian elder\"", "question": "Which round was Brian Elder taken in?", "context": "CREATE TABLE table_name_15 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE tournament = \"michalovce\"", "question": "what is the date of the tournament in michalovce", "context": "CREATE TABLE table_name_74 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_99 WHERE tournament = \"valero texas open\"", "question": "What was the winning score of the Valero Texas Open?", "context": "CREATE TABLE table_name_99 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE winning_score = \u201312(69 - 66 - 72 - 65 = 272)", "question": "When was the winning score \u201312 (69-66-72-65=272)?", "context": "CREATE TABLE table_name_72 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_81 WHERE winning_score = \u201328(66 - 67 - 68 - 64 - 67 = 332)", "question": "Who was the runner-up when the winning score was \u201328 (66-67-68-64-67=332)?", "context": "CREATE TABLE table_name_81 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT party FROM table_name_97 WHERE result = \"retired democratic hold\"", "question": "Which party had a Retired Democratic hold?", "context": "CREATE TABLE table_name_97 (party VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(first_elected) FROM table_name_92 WHERE result = \"re-elected\" AND incumbent = \"charles n. felton\"", "question": "What's the average year Charles N. Felton was re-elected?", "context": "CREATE TABLE table_name_92 (first_elected INTEGER, result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_name_77 WHERE incumbent = \"barclay henley\"", "question": "What year was Barclay Henley first elected?", "context": "CREATE TABLE table_name_77 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT team FROM table_name_12 WHERE sponsor = \"motorola\"", "question": "what is the sponsor of motorola", "context": "CREATE TABLE table_name_12 (team VARCHAR, sponsor VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE event = \"sengoku 1\"", "question": "Which Opponent has the Event of Sengoku 1?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_22 WHERE event = \"pride shockwave 2004\"", "question": "What Record has an Event of Pride Shockwave 2004?", "context": "CREATE TABLE table_name_22 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT AVG(pole_positions) FROM table_name_33 WHERE percentage = \"44.81%\"", "question": "What's the average pole position for the driver that has a percentage of 44.81%?", "context": "CREATE TABLE table_name_33 (pole_positions INTEGER, percentage VARCHAR)"}, {"answer": "SELECT AVG(front_row_starts) FROM table_name_85 WHERE pole_positions < 68 AND entries < 52", "question": "What's the average front row starts for drivers with less than 68 pole positions and entries lower than 52?", "context": "CREATE TABLE table_name_85 (front_row_starts INTEGER, pole_positions VARCHAR, entries VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_9 WHERE attendance = 60 OFFSET 671", "question": "Attendance of 60,671 had what average week?", "context": "CREATE TABLE table_name_9 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_57 WHERE week = 7", "question": "Week of 7 had what average attendance?", "context": "CREATE TABLE table_name_57 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT COUNT(legs_lost) FROM table_name_11 WHERE player = \"trina gulliver\" AND played > 3", "question": "How many legs were lost for Trina Gulliver with more than 3 played?", "context": "CREATE TABLE table_name_11 (legs_lost VARCHAR, player VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(sets_won) FROM table_name_25 WHERE legs_won < 1", "question": "What is the most sets won with less than 1 legs won?", "context": "CREATE TABLE table_name_25 (sets_won INTEGER, legs_won INTEGER)"}, {"answer": "SELECT kicker FROM table_name_92 WHERE yards = 45 AND date = \"november 8, 1971\"", "question": "Yards of 45, and a Date of november 8, 1971 is what kicker?", "context": "CREATE TABLE table_name_92 (kicker VARCHAR, yards VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(yards) FROM table_name_2 WHERE game_time = \"2nd quarter (0:00)\" AND date = \"november 8, 1971\"", "question": "Game time of 2nd quarter (0:00), and a Date of november 8, 1971 has how many average yards?", "context": "CREATE TABLE table_name_2 (yards INTEGER, game_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT kicker FROM table_name_36 WHERE opponent = \"new york giants\" AND yards < 68", "question": "Opponent of new york giants, and a Yards smaller than 68 is what kicker?", "context": "CREATE TABLE table_name_36 (kicker VARCHAR, opponent VARCHAR, yards VARCHAR)"}, {"answer": "SELECT kicker FROM table_name_5 WHERE yards > 52 AND opponent = \"san francisco 49ers\"", "question": "Yards larger than 52, and a Opponent of san francisco 49ers is what kicker?", "context": "CREATE TABLE table_name_5 (kicker VARCHAR, yards VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE result = \"missed*\" AND game_time = \"2nd quarter (0:00)\" AND kicker = \"mason crosby\"", "question": "Result of missed*, and a Game time of 2nd quarter (0:00), and a Kicker of mason crosby involves what date?", "context": "CREATE TABLE table_name_3 (date VARCHAR, kicker VARCHAR, result VARCHAR, game_time VARCHAR)"}, {"answer": "SELECT result FROM table_name_2 WHERE opponent = \"houston texans\"", "question": "Opponent of houston texans had what result?", "context": "CREATE TABLE table_name_2 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_30 WHERE position = \"left wing\"", "question": "Which Nationality of the person has a Position on left wing?", "context": "CREATE TABLE table_name_30 (nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_92 WHERE nationality = \"sweden\"", "question": "Which College/Junior/Club Team (League) are from sweden?", "context": "CREATE TABLE table_name_92 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT position FROM table_name_39 WHERE nationality = \"russia\"", "question": "WHich Position is from russia?", "context": "CREATE TABLE table_name_39 (position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT venue FROM table_name_12 WHERE nationality = \"ukraine\"", "question": "Which venue is with Ukraine?", "context": "CREATE TABLE table_name_12 (venue VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT venue FROM table_name_44 WHERE nationality = \"belgium\"", "question": "Which venue had a nationality of Belgium?", "context": "CREATE TABLE table_name_44 (venue VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT best_actor FROM table_name_93 WHERE best_film = \"mystery\"", "question": "Which Best Actor has a Best Film of mystery?", "context": "CREATE TABLE table_name_93 (best_actor VARCHAR, best_film VARCHAR)"}, {"answer": "SELECT year FROM table_name_80 WHERE best_film = \"mystery\"", "question": "Which Year has a Best Film of mystery?", "context": "CREATE TABLE table_name_80 (year VARCHAR, best_film VARCHAR)"}, {"answer": "SELECT best_actress FROM table_name_12 WHERE year = \"2012 6th\"", "question": "Which Best Actress has a Year of 2012 6th?", "context": "CREATE TABLE table_name_12 (best_actress VARCHAR, year VARCHAR)"}, {"answer": "SELECT best_actor FROM table_name_44 WHERE best_director = \"takeshi kitano for outrage beyond\"", "question": "Which Best Actor has a Best Director of takeshi kitano for outrage beyond?", "context": "CREATE TABLE table_name_44 (best_actor VARCHAR, best_director VARCHAR)"}, {"answer": "SELECT best_film FROM table_name_42 WHERE best_supporting_actress = \"shamaine buencamino for ni\u00f1o\"", "question": "Which Best Film has a Best Supporting Actress of shamaine buencamino for ni\u00f1o?", "context": "CREATE TABLE table_name_42 (best_film VARCHAR, best_supporting_actress VARCHAR)"}, {"answer": "SELECT result FROM table_name_11 WHERE score = \"0\u20130\" AND date = \"02-jan-64\"", "question": "Score of 0\u20130, and a Date of 02-jan-64 had what result?", "context": "CREATE TABLE table_name_11 (result VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE result = \"l\" AND competition = \"1966 asian games\" AND score = \"0\u20131\"", "question": "Result of l, and a Competition of 1966 asian games, and a Score of 0\u20131 had what date?", "context": "CREATE TABLE table_name_44 (date VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE competition = \"friendly\" AND date = \"03-jun-62\"", "question": "Competition of friendly, and a Date of 03-jun-62 had what score?", "context": "CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE result = \"w\" AND competition = \"1968 asian cup\"", "question": "Result of w, and a Competition of 1968 asian cup happened on what date?", "context": "CREATE TABLE table_name_5 (date VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_45 WHERE result = \"l\" AND date = \"15-oct-64\"", "question": "Result of l, and a Date of 15-oct-64 had what score?", "context": "CREATE TABLE table_name_45 (score VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_85 WHERE result = \"re-elected\" AND district = \"california 3\"", "question": "What incumbent was re-elected in the district in california 3?", "context": "CREATE TABLE table_name_85 (incumbent VARCHAR, result VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_name_37 WHERE incumbent = \"thomas larkin thompson\"", "question": "What is the district of the incumbent Thomas Larkin Thompson?", "context": "CREATE TABLE table_name_37 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_15 WHERE result = \"re-elected\" AND first_elected > 1884", "question": "What incumbent has a re-elected result and first elected larger than 1884?", "context": "CREATE TABLE table_name_15 (incumbent VARCHAR, result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT telugu_\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 FROM table_name_87 WHERE kannada_\u0c95\u0ca8\u0ccd\u0ca8\u0ca1 = \"chitra \u0c9a\u0cbf\u0ca4\u0ccd\u0ca4\"", "question": "Which Telugu \u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 has a Kannada \u0c95\u0ca8\u0ccd\u0ca8\u0ca1 of chitra \u0c9a\u0cbf\u0ca4\u0ccd\u0ca4?", "context": "CREATE TABLE table_name_87 (telugu_\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 VARCHAR, kannada_\u0c95\u0ca8\u0ccd\u0ca8\u0ca1 VARCHAR)"}, {"answer": "SELECT telugu_\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 FROM table_name_68 WHERE tamil_\u0ba4\u0bae\u0bbf\u0bb4\u0bcd = \"p\u016br\u0101\u1e6dam \u0baa\u0bc2\u0bb0\u0bbe\u0b9f\u0bae\u0bcd\"", "question": "Which Telugu \u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 has a Tamil \u0ba4\u0bae\u0bbf\u0bb4\u0bcd of p\u016br\u0101\u1e6dam \u0baa\u0bc2\u0bb0\u0bbe\u0b9f\u0bae\u0bcd?", "context": "CREATE TABLE table_name_68 (telugu_\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 VARCHAR, tamil_\u0ba4\u0bae\u0bbf\u0bb4\u0bcd VARCHAR)"}, {"answer": "SELECT telugu_\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 FROM table_name_52 WHERE tamil_\u0ba4\u0bae\u0bbf\u0bb4\u0bcd = \"p\u016bsam \u0baa\u0bc2\u0b9a\u0bae\u0bcd\"", "question": "Which Telugu \u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 has a Tamil \u0ba4\u0bae\u0bbf\u0bb4\u0bcd of p\u016bsam \u0baa\u0bc2\u0b9a\u0bae\u0bcd?", "context": "CREATE TABLE table_name_52 (telugu_\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41 VARCHAR, tamil_\u0ba4\u0bae\u0bbf\u0bb4\u0bcd VARCHAR)"}, {"answer": "SELECT mongolian FROM table_name_78 WHERE tamil_\u0ba4\u0bae\u0bbf\u0bb4\u0bcd = \"p\u016br\u0101\u1e6dam \u0baa\u0bc2\u0bb0\u0bbe\u0b9f\u0bae\u0bcd\"", "question": "Which Mongolian has a Tamil \u0ba4\u0bae\u0bbf\u0bb4\u0bcd of p\u016br\u0101\u1e6dam \u0baa\u0bc2\u0bb0\u0bbe\u0b9f\u0bae\u0bcd?", "context": "CREATE TABLE table_name_78 (mongolian VARCHAR, tamil_\u0ba4\u0bae\u0bbf\u0bb4\u0bcd VARCHAR)"}, {"answer": "SELECT sanskrit_\u0938\u0902\u0938\u094d\u0915\u0943\u0924\u092e\u094d FROM table_name_95 WHERE kannada_\u0c95\u0ca8\u0ccd\u0ca8\u0ca1 = \"uttara \u0c89\u0ca4\u0ccd\u0ca4\u0cb0\u0cbe\"", "question": "What kind of Sanskrit \u0938\u0902\u0938\u094d\u0915\u0943\u0924\u092e\u094d has a Kannada \u0c95\u0ca8\u0ccd\u0ca8\u0ca1 of uttara \u0c89\u0ca4\u0ccd\u0ca4\u0cb0\u0cbe?", "context": "CREATE TABLE table_name_95 (sanskrit_\u0938\u0902\u0938\u094d\u0915\u0943\u0924\u092e\u094d VARCHAR, kannada_\u0c95\u0ca8\u0ccd\u0ca8\u0ca1 VARCHAR)"}, {"answer": "SELECT sanskrit_\u0938\u0902\u0938\u094d\u0915\u0943\u0924\u092e\u094d FROM table_name_23 WHERE tamil_\u0ba4\u0bae\u0bbf\u0bb4\u0bcd = \"r\u014dki\u1e47i \u0bb0\u0bcb\u0b95\u0bbf\u0ba3\u0bbf\"", "question": "What kind of Sanskrit \u0938\u0902\u0938\u094d\u0915\u0943\u0924\u092e\u094d has a Tamil \u0ba4\u0bae\u0bbf\u0bb4\u0bcd of r\u014dki\u1e47i \u0bb0\u0bcb\u0b95\u0bbf\u0ba3\u0bbf?", "context": "CREATE TABLE table_name_23 (sanskrit_\u0938\u0902\u0938\u094d\u0915\u0943\u0924\u092e\u094d VARCHAR, tamil_\u0ba4\u0bae\u0bbf\u0bb4\u0bcd VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_99 WHERE area_served = \"katherine\"", "question": "What is the frequency for katherine?", "context": "CREATE TABLE table_name_99 (frequency VARCHAR, area_served VARCHAR)"}, {"answer": "SELECT band FROM table_name_80 WHERE freq_currently = \"8tab (hpon)\"", "question": "Which band has a current freq of 8tab (hpon)?", "context": "CREATE TABLE table_name_80 (band VARCHAR, freq_currently VARCHAR)"}, {"answer": "SELECT freq_currently FROM table_name_86 WHERE frequency = \"0 657\"", "question": "Which freq currently has 0 657?", "context": "CREATE TABLE table_name_86 (freq_currently VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_50 WHERE freq_currently = \"8rn\" AND area_served = \"katherine\"", "question": "What is the purpose for the katherine freq of 8rn?", "context": "CREATE TABLE table_name_50 (purpose VARCHAR, freq_currently VARCHAR, area_served VARCHAR)"}, {"answer": "SELECT freq_currently FROM table_name_7 WHERE frequency = \"0 684\"", "question": "Which freq currently has 0 684?", "context": "CREATE TABLE table_name_7 (freq_currently VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT band FROM table_name_61 WHERE area_served = \"darwin\" AND purpose = \"commercial\"", "question": "Which band serves darwin for commercial purpose?", "context": "CREATE TABLE table_name_61 (band VARCHAR, area_served VARCHAR, purpose VARCHAR)"}, {"answer": "SELECT points_difference FROM table_name_30 WHERE lost < 6 AND points < 11", "question": "What is the points difference for a loss less than 6, and points less than 11?", "context": "CREATE TABLE table_name_30 (points_difference VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_17 WHERE loss = \"b\u00e1ez (5-5)\"", "question": "Which Opponent has a Loss of b\u00e1ez (5-5)?", "context": "CREATE TABLE table_name_17 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE opponent = \"@ rockies\" AND record = \"33-35\"", "question": "Which Score has an Opponent of @ rockies, and a Record of 33-35?", "context": "CREATE TABLE table_name_75 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_34 WHERE opponent = \"phillies\" AND record = \"30-33\"", "question": "Which Attendance has an Opponent of phillies, and a Record of 30-33?", "context": "CREATE TABLE table_name_34 (attendance INTEGER, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_3 WHERE loss = \"batista (4-5)\"", "question": "Which Attendance is the highest one that has a Loss of batista (4-5)?", "context": "CREATE TABLE table_name_3 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT AVG(frequency_mhz) FROM table_name_55 WHERE erp_w > 250", "question": "What is the frequency MHz of the ERP W's greater than 250?", "context": "CREATE TABLE table_name_55 (frequency_mhz INTEGER, erp_w INTEGER)"}, {"answer": "SELECT call_sign FROM table_name_35 WHERE frequency_mhz < 94.9 AND erp_w = 170", "question": "What is the call sign of the MHz Frequency less than 94.9 and an ERP W of 170?", "context": "CREATE TABLE table_name_35 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_74 WHERE city_of_license = \"tribune, kansas\"", "question": "What is the FCC info for the city of Tribune, Kansas?", "context": "CREATE TABLE table_name_74 (fcc_info VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_15 WHERE erp_w < 170", "question": "What is the city of license with an ERP W less than 170?", "context": "CREATE TABLE table_name_15 (city_of_license VARCHAR, erp_w INTEGER)"}, {"answer": "SELECT MIN(erp_w) FROM table_name_26 WHERE frequency_mhz = 94.9", "question": "What is the smallest ERP W with a frequency MHz of 94.9?", "context": "CREATE TABLE table_name_26 (erp_w INTEGER, frequency_mhz VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_68 WHERE frequency_mhz > 89.5 AND city_of_license = \"washburn, texas\"", "question": "What is the ERP W of a Frequency MHz greater than 89.5 in the city of Washburn, Texas?", "context": "CREATE TABLE table_name_68 (erp_w VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_45 WHERE nation = \"u.s. virgin islands\" AND gold < 0", "question": "What is the total number of bronze medals the U.S. Virgin Islands, which has less than 0 golds, has?", "context": "CREATE TABLE table_name_45 (bronze VARCHAR, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_95 WHERE total = 11 AND silver > 4", "question": "What is the rank of the team with 11 total medals and more than 4 silver medals has?", "context": "CREATE TABLE table_name_95 (rank INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_97 WHERE bronze > 0 AND silver = 6 AND rank < 3", "question": "What is the lowest total medals the team with more than 0 bronze, 6 silver, and a rank higher than 3 has?", "context": "CREATE TABLE table_name_97 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_54 WHERE nation = \"venezuela\" AND bronze > 9", "question": "What is the highest rank of Venezuela, which has more than 9 bronze medals?", "context": "CREATE TABLE table_name_54 (rank INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_69 WHERE bronze = 0 AND silver = 1 AND gold > 0", "question": "What is the lowest rank of the team with 0 bronze, 1 silver, and more than 0 gold?", "context": "CREATE TABLE table_name_69 (rank INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT round FROM table_name_29 WHERE player = \"mathieu garon\"", "question": "What round has mathieu garon as the player?", "context": "CREATE TABLE table_name_29 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_75 WHERE position = \"left wing\" AND round > 4 AND player = \"mattia baldi\"", "question": "What nationality has a position of left wing, and a round greater than 4, with mattia baldi as the player?", "context": "CREATE TABLE table_name_75 (nationality VARCHAR, player VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_26 WHERE position = \"goalie\"", "question": "How many rounds have goalie as the position?", "context": "CREATE TABLE table_name_26 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT competition FROM table_name_12 WHERE date = \"may 2, 1993\"", "question": "Which Competition has a Date of may 2, 1993?", "context": "CREATE TABLE table_name_12 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_1 WHERE goal > 6 AND score = \"1\u20130\" AND competition = \"friendly\" AND date = \"may 31, 1998\"", "question": "Which Result has a Goal larger than 6, and a Score of 1\u20130, and a Competition of friendly, and a Date of may 31, 1998?", "context": "CREATE TABLE table_name_1 (result VARCHAR, date VARCHAR, competition VARCHAR, goal VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE date = \"april 4, 1993\"", "question": "What was the score on april 4, 1993?", "context": "CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT 1 AS _credit FROM table_name_86 WHERE hand = \"theoretical return\"", "question": "What's the 1 credit with a Hand of Theoretical Return?", "context": "CREATE TABLE table_name_86 (hand VARCHAR)"}, {"answer": "SELECT COUNT(games) AS \u2191 FROM table_name_58 WHERE position = \"wr\" AND number > 17", "question": "What is the games number when the Position was wr, and a Number larger than 17?", "context": "CREATE TABLE table_name_58 (games VARCHAR, position VARCHAR, number VARCHAR)"}, {"answer": "SELECT class FROM table_name_4 WHERE position = \"lg\"", "question": "What is the class for the position of lg?", "context": "CREATE TABLE table_name_4 (class VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(weight__kg_) FROM table_name_67 WHERE race = \"farnley stakes\"", "question": "What is the highest weight for the Farnley Stakes race?", "context": "CREATE TABLE table_name_67 (weight__kg_ INTEGER, race VARCHAR)"}, {"answer": "SELECT time FROM table_name_44 WHERE location = \"tokyo, japan\" AND round = 3 AND res = \"draw\"", "question": "What time is associated with the event that happened in Tokyo, Japan, ending in a draw, with 3 rounds?", "context": "CREATE TABLE table_name_44 (time VARCHAR, res VARCHAR, location VARCHAR, round VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_8 WHERE 2007 = \"0 / 4\"", "question": "Which 2012 has a 2007 of 0 / 4?", "context": "CREATE TABLE table_name_8 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_65 WHERE career_win_loss = \"7\u201310\"", "question": "Which 2011 has a Career Win-Loss of 7\u201310?", "context": "CREATE TABLE table_name_65 (career_win_loss VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_65 WHERE 2002 = \"2\u20134\"", "question": "Which 1998 has a 2002 of 2\u20134?", "context": "CREATE TABLE table_name_65 (Id VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_79 WHERE 2008 = \"3\u20133\"", "question": "Which 2002 has a 2008 of 3\u20133?", "context": "CREATE TABLE table_name_79 (Id VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_42 WHERE 2012 = \"1r\" AND 2008 = \"1r\"", "question": "Which 2003 has a 2012 of 1r, and a 2008 of 1r?", "context": "CREATE TABLE table_name_42 (Id VARCHAR)"}, {"answer": "SELECT nfl_club FROM table_name_51 WHERE player = \"robert gallery\"", "question": "What club is robert gallery a part of", "context": "CREATE TABLE table_name_51 (nfl_club VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_34 WHERE games > 15 AND sellouts > 8 AND season = \"2011-12\"", "question": "How many attendance numbers had more than 15 games, and sellouts of more than 8 in the 2011-12 season?", "context": "CREATE TABLE table_name_34 (attendance VARCHAR, season VARCHAR, games VARCHAR, sellouts VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_24 WHERE record = \"12-4\" AND average < 10 OFFSET 027", "question": "What's the mean attendance number when the record is 12-4 and the average is less than 10,027?", "context": "CREATE TABLE table_name_24 (attendance INTEGER, record VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_73 WHERE sellouts < 14 AND season = \"2011-12\" AND attendance < 162 OFFSET 474", "question": "What is the full amount of averages when the sellouts are less than 14, the season is 2011-12, and attendance is less than 162,474?", "context": "CREATE TABLE table_name_73 (average VARCHAR, attendance VARCHAR, sellouts VARCHAR, season VARCHAR)"}, {"answer": "SELECT medal FROM table_name_69 WHERE event = \"men's freestyle 52 kg\"", "question": "What medal was awarded in the men's freestyle 52 kg?", "context": "CREATE TABLE table_name_69 (medal VARCHAR, event VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_65 WHERE events < 1", "question": "Events smaller than 1 had what highest cuts made?", "context": "CREATE TABLE table_name_65 (cuts_made INTEGER, events INTEGER)"}, {"answer": "SELECT AVG(position) FROM table_name_48 WHERE difference = \"- 5\" AND played > 14", "question": "What position was played with a Difference of - 5, and a Played larger than 14?", "context": "CREATE TABLE table_name_48 (position INTEGER, difference VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_66 WHERE played < 14", "question": "How many games lost associated with under 14 played?", "context": "CREATE TABLE table_name_66 (lost VARCHAR, played INTEGER)"}, {"answer": "SELECT SUM(against) FROM table_name_84 WHERE team = \"guarani\" AND drawn < 3", "question": "How many games against for team guarani with under 3 draws?", "context": "CREATE TABLE table_name_84 (against INTEGER, team VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT congress FROM table_name_92 WHERE _number_of_cosponsors < 23 AND date_introduced = \"june 30, 2005\"", "question": "What Congress had less than 23 cosponsors and had June 30, 2005 as the date of introduction of the bill?", "context": "CREATE TABLE table_name_92 (congress VARCHAR, _number_of_cosponsors VARCHAR, date_introduced VARCHAR)"}, {"answer": "SELECT sponsor_s_ FROM table_name_77 WHERE date_introduced = \"june 9, 2011\"", "question": "Who sponsored the bill introduced on June 9, 2011?", "context": "CREATE TABLE table_name_77 (sponsor_s_ VARCHAR, date_introduced VARCHAR)"}, {"answer": "SELECT sponsor_s_ FROM table_name_55 WHERE date_introduced = \"june 2, 2009\"", "question": "Who sponsored the bill that was introduced on June 2, 2009?", "context": "CREATE TABLE table_name_55 (sponsor_s_ VARCHAR, date_introduced VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_48 WHERE tournament = \"melbourne\"", "question": "What is the Outcome of the Melbourne Tournament?", "context": "CREATE TABLE table_name_48 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_18 WHERE partner = \"janet young\"", "question": "In what Tournament was Janet Young a Partner?", "context": "CREATE TABLE table_name_18 (tournament VARCHAR, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_57 WHERE score = \"w/o\"", "question": "What was the Outcome of the match with a Score of w/o?", "context": "CREATE TABLE table_name_57 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_60 WHERE pick = 139", "question": "Which school or club team has a pick of 139?", "context": "CREATE TABLE table_name_60 (school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_97 WHERE position = \"tackle\" AND round < 15", "question": "What is the pick number for the player playing tackle position, and a round less than 15?", "context": "CREATE TABLE table_name_97 (pick INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_83 WHERE pick = 46", "question": "Which school of club team has a pick of 46?", "context": "CREATE TABLE table_name_83 (school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT name FROM table_name_15 WHERE qual_2 = \"59.486\"", "question": "Who got 59.486 for Qual 2?", "context": "CREATE TABLE table_name_15 (name VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT name FROM table_name_79 WHERE qual_1 = \"59.578\"", "question": "Who got 59.578 for Qual 1?", "context": "CREATE TABLE table_name_79 (name VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT team FROM table_name_78 WHERE name = \"andrew ranger\"", "question": "What team was Andrew Ranger in?", "context": "CREATE TABLE table_name_78 (team VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_37 WHERE qual_1 = \"59.372\"", "question": "What team has 59.372 for qual 1?", "context": "CREATE TABLE table_name_37 (team VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_93 WHERE name = \"alex tagliani\"", "question": "What did Alex Tagliani get for Qual 1?", "context": "CREATE TABLE table_name_93 (qual_1 VARCHAR, name VARCHAR)"}, {"answer": "SELECT result FROM table_name_9 WHERE date = \"november 7, 1999\"", "question": "What was the result of the game on November 7, 1999?", "context": "CREATE TABLE table_name_9 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE week < 15 AND result = \"bye\"", "question": "When was the game before week 15 with the result of bye?", "context": "CREATE TABLE table_name_26 (date VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT writer FROM table_name_15 WHERE year < 2008 AND notes = \"short film\" AND title = \"wallace & gromit: a close shave\"", "question": "Who is the writer of Wallace & Gromit: A Close Shave, a short film from before 2008?", "context": "CREATE TABLE table_name_15 (writer VARCHAR, title VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_name_31 WHERE title = \"creature comforts\"", "question": "What notes did the creature comforts film have?", "context": "CREATE TABLE table_name_31 (notes VARCHAR, title VARCHAR)"}, {"answer": "SELECT director FROM table_name_99 WHERE title = \"wallace & gromit: the curse of the were-rabbit\"", "question": "Who is the director of Wallace & Gromit: The Curse of the Were-Rabbit?", "context": "CREATE TABLE table_name_99 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_13 WHERE title = \"wallace & gromit: the curse of the were-rabbit\"", "question": "What is the earliest year of Wallace & Gromit: The Curse of the Were-Rabbit?", "context": "CREATE TABLE table_name_13 (year INTEGER, title VARCHAR)"}, {"answer": "SELECT length FROM table_name_10 WHERE date = \"may 19\"", "question": "what was the length of the game on may 19", "context": "CREATE TABLE table_name_10 (length VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_24 WHERE march = 26", "question": "March of 26 has what lowest game?", "context": "CREATE TABLE table_name_24 (game INTEGER, march VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_40 WHERE march = 29", "question": "March of 29 involves what highest scoring game?", "context": "CREATE TABLE table_name_40 (game INTEGER, march VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE game > 76 AND march > 26", "question": "Game larger than 76, and a March larger than 26 involves what score?", "context": "CREATE TABLE table_name_60 (score VARCHAR, game VARCHAR, march VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_62 WHERE laps < 66 AND grid = 15", "question": "What was the time when the laps were smaller than 66 and the grid was 15?", "context": "CREATE TABLE table_name_62 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_86 WHERE driver = \"anthony davidson\" AND laps < 8", "question": "What was the grid for anthony davidson when the laps were less than 8?", "context": "CREATE TABLE table_name_86 (grid VARCHAR, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT team FROM table_name_69 WHERE points < 21 AND year = 1983", "question": "What team did carlos cardus drive for in 1983 when he got less than 21 points?", "context": "CREATE TABLE table_name_69 (team VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_93 WHERE team = \"repsol honda\" AND rank = \"8th\"", "question": "What is the sum of the points when Carlos drove for repsol honda in 8th place?", "context": "CREATE TABLE table_name_93 (points INTEGER, team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_5 WHERE wins < 0", "question": "What is the average points won when Carlos had 0 wins?", "context": "CREATE TABLE table_name_5 (points INTEGER, wins INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_name_56 WHERE team = \"repsol honda\" AND wins < 4 AND points < 162", "question": "What is the highest year that Carlos drove for repsol honda and had less than 4 wins and less than 162 points?", "context": "CREATE TABLE table_name_56 (year INTEGER, points VARCHAR, team VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_46 WHERE tries = 24 AND points > 96", "question": "What is the total number of goals from 24 tries and 96 or greater points?", "context": "CREATE TABLE table_name_46 (goals INTEGER, tries VARCHAR, points VARCHAR)"}, {"answer": "SELECT year FROM table_name_38 WHERE tries < 24 AND points = 0", "question": "What year has tries less than 24 and 0 points?", "context": "CREATE TABLE table_name_38 (year VARCHAR, tries VARCHAR, points VARCHAR)"}, {"answer": "SELECT game FROM table_name_91 WHERE location = \"philadelphia spectrum\" AND opponent = \"new york knicks\"", "question": "What Game has a Location of Philadelphia Spectrum and an Opponent of New York Knicks?", "context": "CREATE TABLE table_name_91 (game VARCHAR, location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game FROM table_name_80 WHERE location = \"philadelphia spectrum\" AND date = \"april 1\"", "question": "What Game has a Location of Philadelphia Spectrum and a Date of April 1?", "context": "CREATE TABLE table_name_80 (game VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_94 WHERE netflix = \"s08e04\"", "question": "What is the segment for Netflix episode S08E04?", "context": "CREATE TABLE table_name_94 (segment_a VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT netflix FROM table_name_64 WHERE series_ep = \"15-01\"", "question": "What is the Netflix episode for series episode 15-01?", "context": "CREATE TABLE table_name_64 (netflix VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_10 WHERE segment_d = \"children's ride-on cars\"", "question": "What is the segment A for the episode with Children's Ride-on Cars for segment D?", "context": "CREATE TABLE table_name_10 (segment_a VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_12 WHERE wins < 5 AND points = 89", "question": "What is the earliest year with fewer than 5 wins and 89 points?", "context": "CREATE TABLE table_name_12 (year INTEGER, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_69 WHERE points > 27 AND wins > 5", "question": "When is the most recent year with more than 27 points and more than 5 wins?", "context": "CREATE TABLE table_name_69 (year INTEGER, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_85 WHERE wins = 0 AND year = 1989", "question": "What are the sum of points in 1989 with 0 wins?", "context": "CREATE TABLE table_name_85 (points INTEGER, wins VARCHAR, year VARCHAR)"}, {"answer": "SELECT class FROM table_name_48 WHERE points < 89 AND team = \"honda\" AND year > 1987", "question": "Which class has fewer than 89 points and the Honda team later than 1987?", "context": "CREATE TABLE table_name_48 (class VARCHAR, year VARCHAR, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_12 WHERE year > 1992", "question": "How many points are there later than 1992?", "context": "CREATE TABLE table_name_12 (points VARCHAR, year INTEGER)"}, {"answer": "SELECT location FROM table_name_12 WHERE date = \"june 10\"", "question": "Where was the event on June 10?", "context": "CREATE TABLE table_name_12 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT event FROM table_name_55 WHERE location = \"new orleans, louisiana, usa\"", "question": "What event was in New Orleans, Louisiana, USA?", "context": "CREATE TABLE table_name_55 (event VARCHAR, location VARCHAR)"}, {"answer": "SELECT ppv_buyrate FROM table_name_77 WHERE date = \"september 10\" AND event = \"strikeforce: heavyweight grand prix semifinals\"", "question": "On September 10 during Strikeforce: Heavyweight Grand Prix Semifinals, what was the PPV buyrate?", "context": "CREATE TABLE table_name_77 (ppv_buyrate VARCHAR, date VARCHAR, event VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_94 WHERE november = 7", "question": "How many points are there on november 7?", "context": "CREATE TABLE table_name_94 (points INTEGER, november VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE home = \"blazers\"", "question": "What was the score in the game where the Blazers were the home team?", "context": "CREATE TABLE table_name_95 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_47 WHERE visitor = \"clippers\"", "question": "How many people attended the game that had the Clippers as visiting team?", "context": "CREATE TABLE table_name_47 (attendance VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT team FROM table_name_1 WHERE car__number < 99 AND make = \"toyota\" AND driver = \"mike skinner\"", "question": "Which team has a car # before 99, a Toyota, and is driven by Mike Skinner?", "context": "CREATE TABLE table_name_1 (team VARCHAR, driver VARCHAR, car__number VARCHAR, make VARCHAR)"}, {"answer": "SELECT MIN(pos) FROM table_name_94 WHERE driver = \"kyle busch\"", "question": "What is the lowest position for driver Kyle Busch?", "context": "CREATE TABLE table_name_94 (pos INTEGER, driver VARCHAR)"}, {"answer": "SELECT team FROM table_name_90 WHERE make = \"chevrolet\" AND pos < 7 AND car__number = 88", "question": "Who is the team of the Chevrolet, and has a position less than 7, for car # 88?", "context": "CREATE TABLE table_name_90 (team VARCHAR, car__number VARCHAR, make VARCHAR, pos VARCHAR)"}, {"answer": "SELECT film FROM table_name_67 WHERE result = \"nominated\" AND year = 2001", "question": "Which Film has a Result of nominated, and a Year of 2001?", "context": "CREATE TABLE table_name_67 (film VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT award FROM table_name_39 WHERE group = \"c\u00e9sar awards\" AND result = \"nominated\" AND year > 2001 AND film = \"8 women (8 femmes)\"", "question": "Which Award has a Group of c\u00e9sar awards, and a Result of nominated, and a Year larger than 2001, and a Film of 8 women (8 femmes)?", "context": "CREATE TABLE table_name_39 (award VARCHAR, film VARCHAR, year VARCHAR, group VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_41 WHERE group = \"c\u00e9sar awards\" AND result = \"nominated\" AND award = \"best actress\" AND film = \"8 women (8 femmes)\"", "question": "Which Year has a Group of c\u00e9sar awards, and a Result of nominated, and an Award of the best actress, and a Film of 8 women (8 femmes)?", "context": "CREATE TABLE table_name_41 (year INTEGER, film VARCHAR, award VARCHAR, group VARCHAR, result VARCHAR)"}, {"answer": "SELECT award FROM table_name_85 WHERE result = \"nominated\" AND year = 2003", "question": "Which Award has a Result of nominated, and a Year of 2003?", "context": "CREATE TABLE table_name_85 (award VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_32 WHERE year > 2003 AND award = \"best supporting actress\"", "question": "Which Result has a Year larger than 2003, and an Award of best supporting actress?", "context": "CREATE TABLE table_name_32 (result VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT COUNT(valid_poll) FROM table_name_67 WHERE seats > 4 AND candidates > 9", "question": "Name the total number of valid poll with seats more than 4 and candidates more than 9", "context": "CREATE TABLE table_name_67 (valid_poll VARCHAR, seats VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT MIN(valid_poll) FROM table_name_50 WHERE constituency = \"munster\"", "question": "Name the least valid poll for munster", "context": "CREATE TABLE table_name_50 (valid_poll INTEGER, constituency VARCHAR)"}, {"answer": "SELECT AVG(valid_poll) FROM table_name_45 WHERE seats < 3", "question": "Name the average valid poll for seats less than 3", "context": "CREATE TABLE table_name_45 (valid_poll INTEGER, seats INTEGER)"}, {"answer": "SELECT label FROM table_name_12 WHERE region = \"canada\"", "question": "Which Label has a Region of canada?", "context": "CREATE TABLE table_name_12 (label VARCHAR, region VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE catalog = \"887 195-2\" AND format = \"cd maxi\"", "question": "Which Date has a Catalog of 887 195-2, and a Format of cd maxi?", "context": "CREATE TABLE table_name_63 (date VARCHAR, catalog VARCHAR, format VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE region = \"france\"", "question": "Which Date has a Region of france?", "context": "CREATE TABLE table_name_90 (date VARCHAR, region VARCHAR)"}, {"answer": "SELECT time FROM table_name_39 WHERE opponent = \"shamil abdurahimov\"", "question": "Which Time has an Opponent of shamil abdurahimov?", "context": "CREATE TABLE table_name_39 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_35 WHERE event = \"cage rage 23\"", "question": "Which Record has an Event of cage rage 23?", "context": "CREATE TABLE table_name_35 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT AVG(date) FROM table_name_29 WHERE record = \"30-31-9\" AND game > 70", "question": "What was the average date with a record of 30-31-9 in a game over 70?", "context": "CREATE TABLE table_name_29 (date INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(date) FROM table_name_88 WHERE location_attendance = \"los angeles\" AND game < 62", "question": "What is the latest date at Los Angeles with a game less than 62?", "context": "CREATE TABLE table_name_88 (date INTEGER, location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(date) FROM table_name_49 WHERE game > 69 AND opponent = \"st. louis blues\"", "question": "What is the latest date for a game over 69 with a St. Louis Blues opponent?", "context": "CREATE TABLE table_name_49 (date INTEGER, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_26 WHERE opponent = \"oakland seals\" AND record = \"27-30-6\" AND date > 7", "question": "What is the highest game with Oakland Seals opponent and a record of 27-30-6 on a date more than 7?", "context": "CREATE TABLE table_name_26 (game INTEGER, date VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_3 WHERE date = \"october 5\"", "question": "What is the total attendance for the date of october 5?", "context": "CREATE TABLE table_name_3 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE date = \"september 21\"", "question": "What record has September 21 as the date?", "context": "CREATE TABLE table_name_59 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE date = \"december 19, 2009\"", "question": "What was the score of the match on December 19, 2009?", "context": "CREATE TABLE table_name_63 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_16 WHERE opponent = \"new york rangers\" AND points > 55", "question": "What's the highest game against the New York Rangers with more than 55 points?", "context": "CREATE TABLE table_name_16 (game INTEGER, opponent VARCHAR, points VARCHAR)"}, {"answer": "SELECT record FROM table_name_25 WHERE points > 54 AND game > 44 AND opponent = \"dallas stars\"", "question": "What's the record for a game past 44 against the Dallas Stars with more than 54 points?", "context": "CREATE TABLE table_name_25 (record VARCHAR, opponent VARCHAR, points VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(fiscal_year) FROM table_name_95 WHERE revenues = \"$4.3 billion\" AND employees > 85 OFFSET 335", "question": "What is the latest Fiscal Year with Revenues of $4.3 billion, and more than 85,335 employees?", "context": "CREATE TABLE table_name_95 (fiscal_year INTEGER, revenues VARCHAR, employees VARCHAR)"}, {"answer": "SELECT AVG(fiscal_year) FROM table_name_55 WHERE headquarters = \"noida\" AND employees < 85 OFFSET 335", "question": "What is the average Fiscal Year of the firm Headquartered in noida, with less than 85,335 employees?", "context": "CREATE TABLE table_name_55 (fiscal_year INTEGER, headquarters VARCHAR, employees VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_49 WHERE year > 1991", "question": "What are the Points after 1991?", "context": "CREATE TABLE table_name_49 (points VARCHAR, year INTEGER)"}, {"answer": "SELECT class FROM table_name_68 WHERE points = 36", "question": "What Class has 36 Points?", "context": "CREATE TABLE table_name_68 (class VARCHAR, points VARCHAR)"}, {"answer": "SELECT class FROM table_name_13 WHERE year > 1986", "question": "What is the Class after 1986?", "context": "CREATE TABLE table_name_13 (class VARCHAR, year INTEGER)"}, {"answer": "SELECT SUM(attendance) FROM table_name_11 WHERE opponent = \"detroit lions\"", "question": "How many attendances had the Detroit Lions as opponents?", "context": "CREATE TABLE table_name_11 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_26 WHERE distance = \"500m\" AND year < 2012 AND record = \"1:37.071s\"", "question": "Which nationality's distance was 500m before 2012, when the record was 1:37.071s?", "context": "CREATE TABLE table_name_26 (nationality VARCHAR, record VARCHAR, distance VARCHAR, year VARCHAR)"}, {"answer": "SELECT location FROM table_name_33 WHERE year = 2001 AND record = \"3:52.983s\"", "question": "Which location's year was 2001 when the record was 3:52.983s?", "context": "CREATE TABLE table_name_33 (location VARCHAR, year VARCHAR, record VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_10 WHERE distance = \"200m\" AND year > 1994 AND record = \"33.778s\"", "question": "Which nationality's distance was 200m and had a year more recent than 1994 when the record was 33.778s?", "context": "CREATE TABLE table_name_10 (nationality VARCHAR, record VARCHAR, distance VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_71 WHERE bronze = 1 AND rank = \"8\" AND silver > 1", "question": "How many Total medals for the team with a Rank of 8, 1 Bronze and more than 1 Silver?", "context": "CREATE TABLE table_name_71 (total INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_45 WHERE rank = \"12\" AND total < 2", "question": "How many Gold does the Nation in Rank 12 with less than 2 Total medals have?", "context": "CREATE TABLE table_name_45 (gold INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_49 WHERE pick__number = \"89\"", "question": "Which NHL team got pick 89?", "context": "CREATE TABLE table_name_49 (nhl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE position = \"goaltender\" AND nhl_team = \"vancouver canucks\"", "question": "Who plays goaltender for the Vancouver Canucks?", "context": "CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT _percentage_change FROM table_name_68 WHERE airport = \"london heathrow airport\"", "question": "What is the % Change at London Heathrow airport?", "context": "CREATE TABLE table_name_68 (_percentage_change VARCHAR, airport VARCHAR)"}, {"answer": "SELECT 2003 AS rank FROM table_name_60 WHERE code__iata_ = \"sin\"", "question": "What 2003 rank does the airport IATA code SIN have?", "context": "CREATE TABLE table_name_60 (code__iata_ VARCHAR)"}, {"answer": "SELECT airport FROM table_name_73 WHERE code__iata_ = \"ams\"", "question": "Which airport has an IATA code of AMS?", "context": "CREATE TABLE table_name_73 (airport VARCHAR, code__iata_ VARCHAR)"}, {"answer": "SELECT code__iata_ FROM table_name_20 WHERE total_cargo__metric_tonnes_ = \"1,838,894\"", "question": "What is the IATA code of the airport that has a Total Cargo of 1,838,894 Metric Tonnes?", "context": "CREATE TABLE table_name_20 (code__iata_ VARCHAR, total_cargo__metric_tonnes_ VARCHAR)"}, {"answer": "SELECT 2003 AS rank FROM table_name_17 WHERE airport = \"los angeles international airport\"", "question": "What is the 2003 rank for Los Angeles International airport?", "context": "CREATE TABLE table_name_17 (airport VARCHAR)"}, {"answer": "SELECT district FROM table_name_19 WHERE incumbent = \"wyatt aiken\"", "question": "What district is Wyatt Aiken in?", "context": "CREATE TABLE table_name_19 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_51 WHERE silver > 0 AND total < 3 AND nation = \"bulgaria\" AND bronze < 0", "question": "Silver larger than 0, and a Total smaller than 3, and a Nation of bulgaria, and a Bronze smaller than 0 had what sum of gold?", "context": "CREATE TABLE table_name_51 (gold INTEGER, bronze VARCHAR, nation VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_36 WHERE nation = \"total\"", "question": "Nation of total has what sum of gold?", "context": "CREATE TABLE table_name_36 (gold INTEGER, nation VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_27 WHERE total = 3 AND gold > 0 AND nation = \"belarus\" AND silver > 2", "question": "Total of 3, and a Gold larger than 0, and a Nation of belarus, and a Silver larger than 2 has what sum of bronze?", "context": "CREATE TABLE table_name_27 (bronze INTEGER, silver VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_99 WHERE bronze = 22", "question": "Bronze of 22 has what average silver?", "context": "CREATE TABLE table_name_99 (silver INTEGER, bronze VARCHAR)"}, {"answer": "SELECT position FROM table_name_63 WHERE games_played = 5 AND w_l_d = \"1-2-2\"", "question": "Which position had 5 games played and a record of 1-2-2?", "context": "CREATE TABLE table_name_63 (position VARCHAR, games_played VARCHAR, w_l_d VARCHAR)"}, {"answer": "SELECT name FROM table_name_49 WHERE term_end = \"2013\"", "question": "What was the name of the leader whose term ended in 2013?", "context": "CREATE TABLE table_name_49 (name VARCHAR, term_end VARCHAR)"}, {"answer": "SELECT term_start FROM table_name_12 WHERE term_end = \"1919\" AND date_of_birth = \"january 8, 1859\"", "question": "When was the start of the leader's term who was born on January 8, 1859 and whose term ended in 1919?", "context": "CREATE TABLE table_name_12 (term_start VARCHAR, term_end VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT name FROM table_name_50 WHERE term_start < 1984 AND date_of_birth = \"december 17, 1874\"", "question": "Which leader born on December 17, 1874 started their term before 1984?", "context": "CREATE TABLE table_name_50 (name VARCHAR, term_start VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE outcome = \"winner\" AND opponents_in_the_final = \"nikola fra\u0148kov\u00e1 carmen klaschka\"", "question": "What date shows the Outcome of winner against nikola fra\u0148kov\u00e1 carmen klaschka?", "context": "CREATE TABLE table_name_54 (date VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_73 WHERE tournament = \"jounieh\"", "question": "What is the Outcome of the jounieh tournament?", "context": "CREATE TABLE table_name_73 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE score = \"6\u20133 6\u20134\"", "question": "What date was the score of 6\u20133 6\u20134?", "context": "CREATE TABLE table_name_53 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE opponent = \"indiana pacers\"", "question": "when indiana pacers were the opponent what was the date?", "context": "CREATE TABLE table_name_89 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_80 WHERE tries_against = \"55\"", "question": "tries against is 55, what is the try bonus?", "context": "CREATE TABLE table_name_80 (try_bonus VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_97 WHERE tries_against = \"29\"", "question": "tries against is 29, what is the points against?", "context": "CREATE TABLE table_name_97 (points_against VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_54 WHERE tries_against = \"correct as of 2007-10-15\"", "question": "tries against correct as of 2007-10-15 has what tries for?", "context": "CREATE TABLE table_name_54 (tries_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_31 WHERE tries_against = \"correct as of 2007-10-15\"", "question": "tries against correct as of 2007-10-15 has what tries for?", "context": "CREATE TABLE table_name_31 (tries_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT lost FROM table_name_57 WHERE played = \"22\" AND tries_against = \"88\"", "question": "tries against is 88, played is 22, what is the lost?", "context": "CREATE TABLE table_name_57 (lost VARCHAR, played VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT silver FROM table_name_21 WHERE year < 2010 AND gold = \"chan ming shu\"", "question": "Who won silver in the year before 2010, the year Chan Ming Shu won gold?", "context": "CREATE TABLE table_name_21 (silver VARCHAR, year VARCHAR, gold VARCHAR)"}, {"answer": "SELECT location FROM table_name_67 WHERE year < 2010 AND silver = \"hei zhi hong\"", "question": "What is the location for the year under 2010 and the year Hei Zhi Hong won silver?", "context": "CREATE TABLE table_name_67 (location VARCHAR, year VARCHAR, silver VARCHAR)"}, {"answer": "SELECT location FROM table_name_68 WHERE year > 2006", "question": "Which location had a year over 2006?", "context": "CREATE TABLE table_name_68 (location VARCHAR, year INTEGER)"}, {"answer": "SELECT date FROM table_name_49 WHERE score_f_a = \"2\u20130\" AND opponents = \"walsall\"", "question": "Score F\u2013A of 2\u20130, and a Opponents of walsall has what date?", "context": "CREATE TABLE table_name_49 (date VARCHAR, score_f_a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_13 WHERE score_f_a = \"3\u20130\" AND date = \"31 july 2007\"", "question": "Score F\u2013A of 3\u20130, and a Date of 31 july 2007 had what opponents?", "context": "CREATE TABLE table_name_13 (opponents VARCHAR, score_f_a VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE opponents = \"sheffield wednesday\"", "question": "Opponents of sheffield wednesday had what date?", "context": "CREATE TABLE table_name_81 (date VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE opponents = \"sheffield wednesday\"", "question": "Opponents of sheffield wednesday had what date?", "context": "CREATE TABLE table_name_63 (date VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_17 WHERE date = \"4 august 2007\"", "question": "Date of 4 august 2007 had what opponents?", "context": "CREATE TABLE table_name_17 (opponents VARCHAR, date VARCHAR)"}, {"answer": "SELECT position FROM table_name_50 WHERE player = \"david laliberte\"", "question": "WHich Position has a Player of david laliberte?", "context": "CREATE TABLE table_name_50 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_13 WHERE player = \"gino pisellini\"", "question": "Which Position has a Player of gino pisellini?", "context": "CREATE TABLE table_name_13 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_46 WHERE tournament = \"standard register ping\" AND runner_s__up = \"kelly robbins\"", "question": "What is the winning score of standard register ping tournament, which has Kelly Robbins as the runner-up?", "context": "CREATE TABLE table_name_46 (winning_score VARCHAR, tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_20 WHERE date = \"16 may 1993\"", "question": "What is the winning score of the tournament on 16 May 1993?", "context": "CREATE TABLE table_name_20 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_75 WHERE date = \"5 jun 1988\"", "question": "What is the margin of victory of the tournament on 5 Jun 1988?", "context": "CREATE TABLE table_name_75 (margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_88 WHERE runner_s__up = \"robin walton\"", "question": "What is the winning scor of the tournament with Robin Walton as the runner-up?", "context": "CREATE TABLE table_name_88 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_63 WHERE college_junior_club_team__league_ = \"shattuck-saint mary's school (midget major aaa)\"", "question": "which NHL team has a College/Junior/Club Team (League) of shattuck-saint mary's school (midget major aaa)?", "context": "CREATE TABLE table_name_63 (nhl_team VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_66 WHERE nationality = \"canada\" AND college_junior_club_team__league_ = \"fort mcmurray oil barons (ajhl)\"", "question": "How many Rounds have a Nationality of canada, and a College/Junior/Club Team (League) of fort mcmurray oil barons (ajhl)?", "context": "CREATE TABLE table_name_66 (round VARCHAR, nationality VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_12 WHERE nhl_team = \"edmonton oilers\" AND player = \"vyacheslav trukhno\"", "question": "Which Round has a NHL team of edmonton oilers and a Player of vyacheslav trukhno?", "context": "CREATE TABLE table_name_12 (round INTEGER, nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_19 WHERE nationality = \"united states\" AND college_junior_club_team__league_ = \"breck school (ushs)\"", "question": "Which Round has a Nationality of united states, and a College/Junior/Club Team (League) of breck school (ushs)?", "context": "CREATE TABLE table_name_19 (round INTEGER, nationality VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT max_1_min_wind_mph__km_h_ FROM table_name_57 WHERE min_press___mbar__ = \"997\"", "question": "What is the max 1-min wind mph when the minimum press is 997?", "context": "CREATE TABLE table_name_57 (max_1_min_wind_mph__km_h_ VARCHAR, min_press___mbar__ VARCHAR)"}, {"answer": "SELECT deaths FROM table_name_64 WHERE storm_name = \"darby\"", "question": "How many deaths occurred during Darby?", "context": "CREATE TABLE table_name_64 (deaths VARCHAR, storm_name VARCHAR)"}, {"answer": "SELECT distance_from_jaffa FROM table_name_1 WHERE name_location = \"jerusalem\"", "question": "What is the distance from Jaffa of Jerusalem station?", "context": "CREATE TABLE table_name_1 (distance_from_jaffa VARCHAR, name_location VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_37 WHERE date = \"february 11\"", "question": "What visitor has February 11 as the date?", "context": "CREATE TABLE table_name_37 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_7 WHERE competition = \"friendly match\"", "question": "Which venue is the friendly match in?", "context": "CREATE TABLE table_name_7 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_47 WHERE competition = \"friendly match\" AND venue = \"seoul\"", "question": "What is the result of the friendly match in Seoul?", "context": "CREATE TABLE table_name_47 (result VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_19 WHERE competition = \"2007 afc asian cup\"", "question": "What is the result of the 2007 AFC asian cup?", "context": "CREATE TABLE table_name_19 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_34 WHERE margin_of_victory = \"1 stroke\" AND tournament = \"world seniors invitational\"", "question": "Which Runner(s)-up has a Margin of victory of 1 stroke, and a Tournament of world seniors invitational?", "context": "CREATE TABLE table_name_34 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_65 WHERE tournament = \"general foods pga seniors' championship\"", "question": "Which Runner(s)-up has a Tournament of general foods pga seniors' championship?", "context": "CREATE TABLE table_name_65 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_10 WHERE margin_of_victory = \"2 strokes\" AND winning_score = \u221214(68 - 66 - 68 = 202)", "question": "Which Tournament has a Margin of victory of 2 strokes, and a Winning score of \u221214 (68-66-68=202)?", "context": "CREATE TABLE table_name_10 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_19 WHERE winning_score = \u22129(70 - 64 - 70 = 203)", "question": "Which Date has a Winning score of \u22129 (70-64-70=203)?", "context": "CREATE TABLE table_name_19 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_55 WHERE date = \"february 11\"", "question": "What was the High points when date was February 11?", "context": "CREATE TABLE table_name_55 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_86 WHERE high_rebounds = \"popeye jones (14)\" AND record = \"16-28\"", "question": "What was the team that has a High rebounds of popeye jones (14), and when the Record was 16-28?", "context": "CREATE TABLE table_name_86 (team VARCHAR, high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_83 WHERE date = \"february 27\"", "question": "What is the Location Attendance when the Date was February 27?", "context": "CREATE TABLE table_name_83 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_27 WHERE record = \"17-29\"", "question": "What is the score of the scores when Game had a Record of 17-29?", "context": "CREATE TABLE table_name_27 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT skip FROM table_name_80 WHERE lead = \"lisa weagle\"", "question": "Who has the lead on Lisa Weagle?", "context": "CREATE TABLE table_name_80 (skip VARCHAR, lead VARCHAR)"}, {"answer": "SELECT event FROM table_name_24 WHERE skip = \"john morris\" AND second = \"matt st. louis\"", "question": "Which event shows Matt St. Louis in second and a skip of John Morris?", "context": "CREATE TABLE table_name_24 (event VARCHAR, skip VARCHAR, second VARCHAR)"}, {"answer": "SELECT MAX(attempts) FROM table_name_53 WHERE net_yards < 631 AND touchdowns = 2", "question": "What are the highest attempts that have net yards less than 631, and 2 for the touchdowns?", "context": "CREATE TABLE table_name_53 (attempts INTEGER, net_yards VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT AVG(net_yards) FROM table_name_87 WHERE touchdowns = 9 AND attempts = 145 AND yards_per_attempt > 4.8", "question": "What are the average net yards that have 9 as the touchdowns, 145 as the attempts, and yards per attempt greater than 4.8?", "context": "CREATE TABLE table_name_87 (net_yards INTEGER, yards_per_attempt VARCHAR, touchdowns VARCHAR, attempts VARCHAR)"}, {"answer": "SELECT SUM(yards_per_attempt) FROM table_name_17 WHERE net_yards > 631", "question": "How many yards per attempt have net yards greater than 631?", "context": "CREATE TABLE table_name_17 (yards_per_attempt INTEGER, net_yards INTEGER)"}, {"answer": "SELECT MAX(touchdowns) FROM table_name_34 WHERE net_yards > 631 AND attempts < 145", "question": "What are the highest touchdowns that have net yards greater than 631, with attempts less than 145?", "context": "CREATE TABLE table_name_34 (touchdowns INTEGER, net_yards VARCHAR, attempts VARCHAR)"}, {"answer": "SELECT slalom FROM table_name_90 WHERE season > 1994 AND overall > 22", "question": "What is the value for Slalom in seasons later than 1994 and overall value greater than 22?", "context": "CREATE TABLE table_name_90 (slalom VARCHAR, season VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_61 WHERE super_g = \"2\" AND overall = 3", "question": "How many seasons had a Super G of 2 and overall of 3?", "context": "CREATE TABLE table_name_61 (season VARCHAR, super_g VARCHAR, overall VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_50 WHERE tournament = \"auckland, new zealand\"", "question": "Who was the Opponent in the Auckland, New Zealand Tournament?", "context": "CREATE TABLE table_name_50 (opponent VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE opponent = \"rafael nadal\"", "question": "On what Date was Rafael Nadal the Opponent?", "context": "CREATE TABLE table_name_37 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_5 WHERE surface = \"hard (i)\"", "question": "Who was the Opponent on a Hard (i) Surface?", "context": "CREATE TABLE table_name_5 (opponent VARCHAR, surface VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE tournament = \"auckland, new zealand\"", "question": "What was the Score at the Auckland, New Zealand Tournament?", "context": "CREATE TABLE table_name_7 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT team FROM table_name_97 WHERE venue = \"dinamo, brest\"", "question": "What team plays in Dinamo, Brest?", "context": "CREATE TABLE table_name_97 (team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT team FROM table_name_26 WHERE venue = \"spartak, mogilev\"", "question": "What team plays at Spartak, Mogilev?", "context": "CREATE TABLE table_name_26 (team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT producer_director FROM table_name_40 WHERE film = \"fear beneath\"", "question": "Who was the Producer/Director of Fear Beneath?", "context": "CREATE TABLE table_name_40 (producer_director VARCHAR, film VARCHAR)"}, {"answer": "SELECT film FROM table_name_76 WHERE year = 1996", "question": "What film was released in 1996?", "context": "CREATE TABLE table_name_76 (film VARCHAR, year VARCHAR)"}, {"answer": "SELECT producer_director FROM table_name_67 WHERE film = \"political engagement\"", "question": "Who is the Producer/Director of Political Engagement?", "context": "CREATE TABLE table_name_67 (producer_director VARCHAR, film VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_name_5 WHERE writer_s_ = \"sidney slon\" AND episode = \"7-17 (195)\"", "question": "What is the original airdate for episode 7-17 (195) from writer Sidney Slon?", "context": "CREATE TABLE table_name_5 (original_airdate VARCHAR, writer_s_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE tournament = \"madrid, spain\"", "question": "What is the date of the tournament played in Madrid, Spain?", "context": "CREATE TABLE table_name_90 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_34 WHERE round = \"final\"", "question": "What opponent has final as the round?", "context": "CREATE TABLE table_name_34 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_50 WHERE opponent = \"hereford united\"", "question": "What round has hereford united as the opponent?", "context": "CREATE TABLE table_name_50 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location___state FROM table_name_67 WHERE winner = \"craig lowndes\" AND date = \"29\u201331 may\"", "question": "Which Location /State has a Winner of craig lowndes, and a Date of 29\u201331 may?", "context": "CREATE TABLE table_name_67 (location___state VARCHAR, winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_69 WHERE winner = \"craig lowndes\" AND circuit = \"phillip island grand prix circuit\"", "question": "Which Team has a Winner of craig lowndes, and a Circuit of phillip island grand prix circuit?", "context": "CREATE TABLE table_name_69 (team VARCHAR, winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT location___state FROM table_name_36 WHERE date = \"29\u201331 may\"", "question": "Which Location/ State has a Date of 29\u201331 may?", "context": "CREATE TABLE table_name_36 (location___state VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_89 WHERE circuit = \"lakeside international raceway\"", "question": "Who won at the Circuit of lakeside international raceway?", "context": "CREATE TABLE table_name_89 (winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT service_charge FROM table_name_38 WHERE number_made = 456", "question": "What is the service charge of the boat howitzers with 456 made?", "context": "CREATE TABLE table_name_38 (service_charge VARCHAR, number_made VARCHAR)"}, {"answer": "SELECT service_charge FROM table_name_42 WHERE designation = \"12-pdr light\"", "question": "What is the service chage of the boat howitzers with a 12-pdr light destination?", "context": "CREATE TABLE table_name_42 (service_charge VARCHAR, designation VARCHAR)"}, {"answer": "SELECT service_charge FROM table_name_9 WHERE number_made = 1009", "question": "What is the service charge of the boat howitzers with 1009 made?", "context": "CREATE TABLE table_name_9 (service_charge VARCHAR, number_made VARCHAR)"}, {"answer": "SELECT bore FROM table_name_8 WHERE designation = \"12-pdr heavy\"", "question": "What is the bore of the boat howitzers with a 12-pdr heavy designation?", "context": "CREATE TABLE table_name_8 (bore VARCHAR, designation VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_43 WHERE tie_no = 9", "question": "Which attendance has 9 as the tie no.?", "context": "CREATE TABLE table_name_43 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_22 WHERE position = \"defensive end\" AND overall < 33", "question": "How many Picks have a Position of defensive end, and an Overall smaller than 33?", "context": "CREATE TABLE table_name_22 (pick__number VARCHAR, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_9 WHERE name = \"gregory spann\" AND pick__number > 19", "question": "Which Overall is the highest one that has a Name of gregory spann, and a Pick # larger than 19?", "context": "CREATE TABLE table_name_9 (overall INTEGER, name VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_67 WHERE round > 5 AND position = \"wide receiver\" AND name = \"gregory spann\" AND overall > 228", "question": "Which Pick # has a Round larger than 5, and a Position of wide receiver, and a Name of gregory spann, and an Overall larger than 228?", "context": "CREATE TABLE table_name_67 (pick__number INTEGER, overall VARCHAR, name VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE record = \"21-27\"", "question": "What is the score from the 21-27 Record?", "context": "CREATE TABLE table_name_96 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_99 WHERE date = \"may 28\"", "question": "How many people attended the May 28 game?", "context": "CREATE TABLE table_name_99 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_76 WHERE points < 70 AND played < 46", "question": "What is the average drawn number of the team with less than 70 points and less than 46 played?", "context": "CREATE TABLE table_name_76 (drawn INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_62 WHERE lost = 24 AND drawn > 9", "question": "What is the highest position of the team with 24 lost and a drawn greater than 9?", "context": "CREATE TABLE table_name_62 (position INTEGER, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_11 WHERE game = 82 AND april > 10", "question": "How many Points has a Game of 82 and a April larger than 10?", "context": "CREATE TABLE table_name_11 (points INTEGER, game VARCHAR, april VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_98 WHERE score = \"3\u20133 ot\"", "question": "How many Games have a Score of 3\u20133 ot?", "context": "CREATE TABLE table_name_98 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(april) FROM table_name_54 WHERE game = 84", "question": "Which April has a Game of 84", "context": "CREATE TABLE table_name_54 (april INTEGER, game VARCHAR)"}, {"answer": "SELECT played FROM table_name_88 WHERE club = \"banwen rfc\"", "question": "what's the played status when the club was banwen rfc?", "context": "CREATE TABLE table_name_88 (played VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_8 WHERE points_against = \"points against\"", "question": "what's the points total when points against was points against?", "context": "CREATE TABLE table_name_8 (points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT lost FROM table_name_58 WHERE points = \"36\" AND points_against = \"489\"", "question": "when points were 36 and points against 489 what is the lost?", "context": "CREATE TABLE table_name_58 (lost VARCHAR, points VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT lost FROM table_name_8 WHERE points_against = \"387\"", "question": "when points against was 387 what was the lost?", "context": "CREATE TABLE table_name_8 (lost VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points FROM table_name_86 WHERE points_for = \"points for\"", "question": "when points for was points for what was the points?", "context": "CREATE TABLE table_name_86 (points VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT pick FROM table_name_72 WHERE year = 1948", "question": "What was 1948's pick?", "context": "CREATE TABLE table_name_72 (pick VARCHAR, year VARCHAR)"}, {"answer": "SELECT pick FROM table_name_24 WHERE year = 2004", "question": "What was the pick in 2004?", "context": "CREATE TABLE table_name_24 (pick VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_20 WHERE pick = \"12\" AND position = \"dt\" AND college = \"penn state\"", "question": "How many years have a Pick of 12, and a Position of dt, and a College of penn state?", "context": "CREATE TABLE table_name_20 (year VARCHAR, college VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(scoring_average) FROM table_name_56 WHERE wins < 0", "question": "What is the scoring average where the wins are 0?", "context": "CREATE TABLE table_name_56 (scoring_average VARCHAR, wins INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_name_25 WHERE earnings__$_ = \"557,158\"", "question": "What year has earnings of $557,158?", "context": "CREATE TABLE table_name_25 (year INTEGER, earnings__$_ VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_17 WHERE opponent = \"@ florida panthers\" AND game > 58", "question": "Which Points have an Opponent of @ florida panthers, and a Game larger than 58?", "context": "CREATE TABLE table_name_17 (points INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(february) FROM table_name_77 WHERE game = 64", "question": "Which February has a Game of 64?", "context": "CREATE TABLE table_name_77 (february INTEGER, game VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_99 WHERE game < 60 AND score = \"2\u20130\" AND february > 1", "question": "Which Points have a Game smaller than 60, and a Score of 2\u20130, and a February larger than 1?", "context": "CREATE TABLE table_name_99 (points INTEGER, february VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_96 WHERE february = 25", "question": "Which Game is the highest one that has a February of 25?", "context": "CREATE TABLE table_name_96 (game INTEGER, february VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_96 WHERE score = \"3\u20134 ot\" AND points > 75", "question": "Which Game is the highest one that has a Score of 3\u20134 ot, and Points larger than 75?", "context": "CREATE TABLE table_name_96 (game INTEGER, score VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(february) FROM table_name_44 WHERE score = \"5\u20132\" AND points = 70", "question": "How much February has a Score of 5\u20132, and Points of 70?", "context": "CREATE TABLE table_name_44 (february VARCHAR, score VARCHAR, points VARCHAR)"}, {"answer": "SELECT result FROM table_name_98 WHERE week > 2 AND date = \"november 30, 1958\"", "question": "Which result happened more recently than week 2, and had a date of November 30, 1958?", "context": "CREATE TABLE table_name_98 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT album FROM table_name_95 WHERE length = \"4:30\"", "question": "what album is 4:30 long", "context": "CREATE TABLE table_name_95 (album VARCHAR, length VARCHAR)"}, {"answer": "SELECT head_coach FROM table_name_43 WHERE town = \"novy urengoy\"", "question": "What is the Head Coach of Novy Urengoy?", "context": "CREATE TABLE table_name_43 (head_coach VARCHAR, town VARCHAR)"}, {"answer": "SELECT arena__capacity_ FROM table_name_19 WHERE town = \"kazan\"", "question": "What is the Arena o Kazan?", "context": "CREATE TABLE table_name_19 (arena__capacity_ VARCHAR, town VARCHAR)"}, {"answer": "SELECT website FROM table_name_49 WHERE head_coach = \"yuriy korotkevich\"", "question": "What is the Website of Head Coach Yuriy Korotkevich?", "context": "CREATE TABLE table_name_49 (website VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT surface FROM table_name_71 WHERE opponents = \"sebasti\u00e1n decoud santiago giraldo\"", "question": "Opponents of sebasti\u00e1n decoud santiago giraldo had what surface?", "context": "CREATE TABLE table_name_71 (surface VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_20 WHERE partnering = \"franco ferreiro\"", "question": "Partnering of franco ferreiro had what tournament?", "context": "CREATE TABLE table_name_20 (tournament VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT surface FROM table_name_51 WHERE date = \"april 10, 2006\"", "question": "Date of april 10, 2006 had what surface?", "context": "CREATE TABLE table_name_51 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE surface = \"clay\" AND partnering = \"j\u00falio silva\"", "question": "Surface of clay, and a Partnering of j\u00falio silva had what score?", "context": "CREATE TABLE table_name_69 (score VARCHAR, surface VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE date = \"november 3, 2008\"", "question": "Date of november 3, 2008 had what score?", "context": "CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_69 WHERE name = \"denis kornilov\"", "question": "Which Points have a Name of denis kornilov?", "context": "CREATE TABLE table_name_69 (points INTEGER, name VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_29 WHERE name = \"thomas morgenstern\" AND points > 288.7", "question": "Which Rank that a Name of thomas morgenstern, and Points larger than 288.7?", "context": "CREATE TABLE table_name_29 (rank INTEGER, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_59 WHERE college = \"louisiana tech\" AND pick__number > 10", "question": "What is the overall number for Louisiana Tech college, and a pick more than 10?", "context": "CREATE TABLE table_name_59 (overall INTEGER, college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_66 WHERE name = \"deji karim\" AND round < 6", "question": "What was the pick number for Deji Karim, in a round lower than 6?", "context": "CREATE TABLE table_name_66 (pick__number INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT college FROM table_name_39 WHERE overall > 180", "question": "Which college had an overall number more than 180?", "context": "CREATE TABLE table_name_39 (college VARCHAR, overall INTEGER)"}, {"answer": "SELECT SUM(overall) FROM table_name_99 WHERE pick__number = 10 AND college = \"louisiana tech\" AND round > 3", "question": "What is the overall number for a pick of #10, from Louisiana Tech, and a round bigger than 3?", "context": "CREATE TABLE table_name_99 (overall INTEGER, round VARCHAR, pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_22 WHERE school_club_team = \"alabama\" AND round < 9", "question": "What's the Pick average that has a School/Club Team of Alabama, with a Round that's smaller than 9?", "context": "CREATE TABLE table_name_22 (pick INTEGER, school_club_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_47 WHERE player = \"robert ingalls\"", "question": "What's the sum of the Pick that has the Player of Robert Ingalls?", "context": "CREATE TABLE table_name_47 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_69 WHERE position = \"tackle\" AND player = \"woody adams\" AND round > 22", "question": "What's the sum of the Pick that has the Position of Tackle, the Player Woody Adams, and a Round that's larger than 22?", "context": "CREATE TABLE table_name_69 (pick VARCHAR, round VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_86 WHERE round > 21", "question": "What Position has a Round that's larger than 21?", "context": "CREATE TABLE table_name_86 (position VARCHAR, round INTEGER)"}, {"answer": "SELECT SUM(europe) FROM table_name_72 WHERE others = 0 AND league < 328 AND position = \"mf\"", "question": "What is the sum of the Europe totals for players with other appearances of 0, league appearances under 328, and a position of MF?", "context": "CREATE TABLE table_name_72 (europe INTEGER, position VARCHAR, others VARCHAR, league VARCHAR)"}, {"answer": "SELECT investment_income FROM table_name_39 WHERE occupational_pensions = \"7%\" AND working_tax_credit = \"2%\" AND other_social_security_benefits = \"6%\"", "question": "Occupational pensions of 7%, and a Working tax credit of 2%, and a Other social security benefits of 6% has what investment income?", "context": "CREATE TABLE table_name_39 (investment_income VARCHAR, other_social_security_benefits VARCHAR, occupational_pensions VARCHAR, working_tax_credit VARCHAR)"}, {"answer": "SELECT investment_income FROM table_name_30 WHERE region = \"eastern england\"", "question": "Region of eastern england has what investment income?", "context": "CREATE TABLE table_name_30 (investment_income VARCHAR, region VARCHAR)"}, {"answer": "SELECT investment_income FROM table_name_67 WHERE state_pensions = \"7%\" AND self_employed = \"7%\" AND other_income_sources = \"2%\"", "question": "State pensions of 7%, and a Self employed of 7%, and a Other income sources of 2% has what investment income?", "context": "CREATE TABLE table_name_67 (investment_income VARCHAR, other_income_sources VARCHAR, state_pensions VARCHAR, self_employed VARCHAR)"}, {"answer": "SELECT occupational_pensions FROM table_name_34 WHERE other_income_sources = \"2%\" AND state_pensions = \"7%\" AND working_tax_credit = \"2%\" AND employment___salaries_ & _wages_ = \"66%\"", "question": "Other income sources of 2%, and a State pensions of 7%, and a Working tax credit of 2%, and a Employment ( salaries & wages) of 66% has what occupational pensions?", "context": "CREATE TABLE table_name_34 (occupational_pensions VARCHAR, working_tax_credit VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR, other_income_sources VARCHAR, state_pensions VARCHAR)"}, {"answer": "SELECT self_employed FROM table_name_15 WHERE investment_income = \"2%\" AND other_income_sources = \"3%\" AND employment___salaries_ & _wages_ = \"71%\"", "question": "Investment income of 2%, and an other income sources of 3%, and an employment (salaries & wages) of 71% involves which self employed?", "context": "CREATE TABLE table_name_15 (self_employed VARCHAR, investment_income VARCHAR, other_income_sources VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR)"}, {"answer": "SELECT working_tax_credit FROM table_name_20 WHERE employment___salaries_ & _wages_ = \"64%\" AND occupational_pensions = \"6%\"", "question": "Employment ( salaries & wages) of 64%, and a Occupational pensions of 6% has what working tax credit?", "context": "CREATE TABLE table_name_20 (working_tax_credit VARCHAR, occupational_pensions VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_61 WHERE games < 6", "question": "How many Drawn is which has a Games smaller than 6?", "context": "CREATE TABLE table_name_61 (drawn INTEGER, games INTEGER)"}, {"answer": "SELECT AVG(points) FROM table_name_80 WHERE points_difference = \"61 - 15\" AND drawn > 1", "question": "What is the Points that has  61 - 15 Point difference and a Drawn larger than 1?", "context": "CREATE TABLE table_name_80 (points INTEGER, points_difference VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_32 WHERE games > 6", "question": "How many Drawn has a Games larger than 6?", "context": "CREATE TABLE table_name_32 (drawn INTEGER, games INTEGER)"}, {"answer": "SELECT MIN(electorate) FROM table_name_45 WHERE quota = \"78,076\" AND candidates < 13", "question": "What is the smallest electorate with 78,076 quota and less than 13 candidates?", "context": "CREATE TABLE table_name_45 (electorate INTEGER, quota VARCHAR, candidates VARCHAR)"}, {"answer": "SELECT turnout FROM table_name_81 WHERE candidates = 15 AND valid_poll > 377 OFFSET 591", "question": "What is the turnout with 15 candidates and more than 377,591 valid poll?", "context": "CREATE TABLE table_name_81 (turnout VARCHAR, candidates VARCHAR, valid_poll VARCHAR)"}, {"answer": "SELECT country FROM table_name_19 WHERE rank = 79", "question": "What country is ranked 79?", "context": "CREATE TABLE table_name_19 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_67 WHERE year > 1999 AND accolade = \"the 100 greatest indie rock albums of all time\"", "question": "What is the lowest rank for an album after 1999 and an Accolade of the 100 greatest indie rock albums of all time?", "context": "CREATE TABLE table_name_67 (rank INTEGER, year VARCHAR, accolade VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_32 WHERE date = \"sunday november 28\"", "question": "Which Week is on sunday november 28?", "context": "CREATE TABLE table_name_32 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_81 WHERE opponent = \"at new york giants\"", "question": "How many weeks have an Opponent of at new york giants?", "context": "CREATE TABLE table_name_81 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time___et__ FROM table_name_3 WHERE opponent = \"new england patriots\"", "question": "When is the Opponent of new england patriots?", "context": "CREATE TABLE table_name_3 (time___et__ VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT week FROM table_name_79 WHERE result = \"w 23\u20136\"", "question": "Which week has a Result of w 23\u20136?", "context": "CREATE TABLE table_name_79 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(innhabitants) FROM table_name_87 WHERE mayor = \"olav martin vik\"", "question": "How many people did Mayor Olav Martin Vik preside over?", "context": "CREATE TABLE table_name_87 (innhabitants INTEGER, mayor VARCHAR)"}, {"answer": "SELECT SUM(area) FROM table_name_34 WHERE name = \"ask\u00f8y\" AND municipal_code < 1247", "question": "What's the area of ask\u00f8y, with a Municipal code less than 1247?", "context": "CREATE TABLE table_name_34 (area INTEGER, name VARCHAR, municipal_code VARCHAR)"}, {"answer": "SELECT mayor FROM table_name_97 WHERE party = \"krf\"", "question": "What Mayor is from the KRF Party?", "context": "CREATE TABLE table_name_97 (mayor VARCHAR, party VARCHAR)"}, {"answer": "SELECT SUM(municipal_code) FROM table_name_35 WHERE party = \"frp\" AND area = 100", "question": "What's the Municipal code of the FRP Party with an area of 100?", "context": "CREATE TABLE table_name_35 (municipal_code INTEGER, party VARCHAR, area VARCHAR)"}, {"answer": "SELECT AVG(innhabitants) FROM table_name_51 WHERE party = \"krf\"", "question": "How many people does the KRF Party preside over?", "context": "CREATE TABLE table_name_51 (innhabitants INTEGER, party VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_63 WHERE position = \"c\" AND round > 9", "question": "What is the total number of overall draft picks for player whose position is C and was picked after round 9?", "context": "CREATE TABLE table_name_63 (overall VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_87 WHERE round > 1 AND player = \"jafus white\"", "question": "What position was Jafus White who was picked after round 1?", "context": "CREATE TABLE table_name_87 (position VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_37 WHERE player = \"fred nixon\"", "question": "What is the total number of overall draft picks for Fred Nixon?", "context": "CREATE TABLE table_name_37 (overall VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_23 WHERE round < 9 AND overall > 143 AND position = \"db\"", "question": "Who is the athlete who was picked before round 9, had an overall draft pick after number 143 and plays the position of db?", "context": "CREATE TABLE table_name_23 (player VARCHAR, position VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_38 WHERE overall = 152", "question": "What is the highest round of the player with an overall of 152?", "context": "CREATE TABLE table_name_38 (round INTEGER, overall VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_87 WHERE pick__number > 5 AND position = \"defensive back\" AND overall < 152", "question": "What is the average round of the defensive back player with a pick # greater than 5 and an overall less than 152?", "context": "CREATE TABLE table_name_87 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_38 WHERE name = \"john ayres\" AND pick__number > 4", "question": "What is the average overall of John Ayres, who had a pick # greater than 4?", "context": "CREATE TABLE table_name_38 (overall INTEGER, name VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT name FROM table_name_17 WHERE pick__number < 5 AND overall = 284", "question": "What is the name of the player with a pick # less than 5 and an overall of 284?", "context": "CREATE TABLE table_name_17 (name VARCHAR, pick__number VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_77 WHERE pick__number = 5 AND name = \"ken whisenhunt\"", "question": "What is the average overall of Ken Whisenhunt, who has a pick # of 5?", "context": "CREATE TABLE table_name_77 (overall INTEGER, pick__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_15 WHERE name = \"john ayres\"", "question": "What is the lowest pick # of John Ayres?", "context": "CREATE TABLE table_name_15 (pick__number INTEGER, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_47 WHERE last_match = \"palmeiras 4-2 portuguesa\"", "question": "What is the name of team with Palmeiras 4-2 portuguesa as the last match?", "context": "CREATE TABLE table_name_47 (team VARCHAR, last_match VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_34 WHERE replaced_by = \"tita\"", "question": "What was the manner of departure replaced by tita?", "context": "CREATE TABLE table_name_34 (manner_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT last_match FROM table_name_8 WHERE manner_of_departure = \"sacked\" AND outgoing_manager = \"geninho\"", "question": "What is the name of the last match that had a sacked manner of departure and a geninho outgoing manner?", "context": "CREATE TABLE table_name_8 (last_match VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT last_match FROM table_name_26 WHERE date_of_vacancy = \"round 2\" AND outgoing_manager = \"ney franco\"", "question": "What is the last match with a vacancy date of round 2 and Ney Franco as outgoing manager?", "context": "CREATE TABLE table_name_26 (last_match VARCHAR, date_of_vacancy VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT last_match FROM table_name_96 WHERE manner_of_departure = \"resigned\" AND date_of_vacancy = \"round 1\"", "question": "What is the last match with a resigned manner of departure and a round 1 date of vacancy?", "context": "CREATE TABLE table_name_96 (last_match VARCHAR, manner_of_departure VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT MAX(effic) FROM table_name_68 WHERE avg_g = 91.9", "question": "What is the highest effic with an avg/g of 91.9?", "context": "CREATE TABLE table_name_68 (effic INTEGER, avg_g VARCHAR)"}, {"answer": "SELECT att_cmp_int FROM table_name_73 WHERE effic < 117.88 AND gp_gs = \"10-0\"", "question": "What is the att-cmp-int with an effic smaller than 117.88 and a gp-gs of 10-0?", "context": "CREATE TABLE table_name_73 (att_cmp_int VARCHAR, effic VARCHAR, gp_gs VARCHAR)"}, {"answer": "SELECT SUM(avg_g) FROM table_name_61 WHERE effic = 858.4", "question": "What is the sum avg/g with an effic of 858.4?", "context": "CREATE TABLE table_name_61 (avg_g INTEGER, effic VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_11 WHERE county = \"32 hendricks\"", "question": "What is the mascot for the school in 32 Hendricks County?", "context": "CREATE TABLE table_name_11 (mascot VARCHAR, county VARCHAR)"}, {"answer": "SELECT location FROM table_name_26 WHERE county = \"79 tippecanoe\" AND school = \"lafayette t. jefferson\"", "question": "Where is Lafayette T. Jefferson School in 79 Tippecanoe county?", "context": "CREATE TABLE table_name_26 (location VARCHAR, county VARCHAR, school VARCHAR)"}, {"answer": "SELECT location FROM table_name_15 WHERE mascot = \"royals\"", "question": "Where is the school with Royals as their mascot?", "context": "CREATE TABLE table_name_15 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE date = \"february 12\"", "question": "What was the score for the game on February 12?", "context": "CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE date = \"february 29\"", "question": "What was the score for the game on February 29?", "context": "CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_64 WHERE visitor = \"chicago\"", "question": "Where was the home team in the game played against Chicago?", "context": "CREATE TABLE table_name_64 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_29 WHERE game = \"fcs midwest region\" AND score = \"40-33\"", "question": "Which Season has a Game of fcs midwest region, and a Score of 40-33?", "context": "CREATE TABLE table_name_29 (season INTEGER, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT game FROM table_name_37 WHERE result = \"win\" AND opponent = \"new hampshire\" AND season < 2008", "question": "Which Game has a Result of win, and an Opponent of new hampshire, and a Season smaller than 2008?", "context": "CREATE TABLE table_name_37 (game VARCHAR, season VARCHAR, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_26 WHERE score = \"39-27\"", "question": "Which Season has a Score of 39-27?", "context": "CREATE TABLE table_name_26 (season INTEGER, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_80 WHERE goal = 5", "question": "What result has a goal of 5?", "context": "CREATE TABLE table_name_80 (result VARCHAR, goal VARCHAR)"}, {"answer": "SELECT record FROM table_name_42 WHERE date = \"may 25\"", "question": "What's the record on May 25?", "context": "CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_89 WHERE date = \"may 7\"", "question": "What's greatest attendance on May 7?", "context": "CREATE TABLE table_name_89 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT january FROM table_name_17 WHERE record = \"28\u201314\u20138\"", "question": "Which January has a Record of 28\u201314\u20138?", "context": "CREATE TABLE table_name_17 (january VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_64 WHERE game < 43 AND january > 8", "question": "Which Points is the highest one that has a Game smaller than 43, and a January larger than 8?", "context": "CREATE TABLE table_name_64 (points INTEGER, game VARCHAR, january VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_8 WHERE team = \"norton\" AND year = 1966 AND points = 8", "question": "What is the mean number of wins for the norton team in 1966, when there are 8 points?", "context": "CREATE TABLE table_name_8 (wins INTEGER, points VARCHAR, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_57 WHERE team = \"ajs\" AND wins < 0", "question": "What is the most recent year for the ajs team when there are fewer than 0 wins?", "context": "CREATE TABLE table_name_57 (year INTEGER, team VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_91 WHERE year < 1958 AND class = \"350cc\"", "question": "What is the smallest point amount for years prior to 1958 when the class is 350cc?", "context": "CREATE TABLE table_name_91 (points INTEGER, year VARCHAR, class VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_1 WHERE points < 5 AND class = \"500cc\" AND team = \"norton\" AND year > 1955", "question": "What is the largest amount of wins when there are less than 5 points, the class is 500cc, the team is norton, and the year is more recent than 1955?", "context": "CREATE TABLE table_name_1 (wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR, class VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE first_prize = \"$161,480\"", "question": "When was the game that had a first prize of $161,480?", "context": "CREATE TABLE table_name_64 (date VARCHAR, first_prize VARCHAR)"}, {"answer": "SELECT winner FROM table_name_76 WHERE date = \"may 2011\"", "question": "Who won on May 2011?", "context": "CREATE TABLE table_name_76 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_63 WHERE stage = \"13\"", "question": "What is the general classification with a 13 stage?", "context": "CREATE TABLE table_name_63 (general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_36 WHERE points_classification = \"daniele bennati\" AND general_classification = \"giovanni visconti\"", "question": "What is teh stage with Daniele Bennati as the points classification and Giovanni VIsconti as the general classification?", "context": "CREATE TABLE table_name_36 (stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_21 WHERE points_classification = \"daniele bennati\" AND young_rider_classification = \"morris possoni\" AND stage = \"3\"", "question": "What is the general classification of the stage 3 with Daniele Bennati as the points classification and Morris Possoni as the young rider classification.", "context": "CREATE TABLE table_name_21 (general_classification VARCHAR, stage VARCHAR, points_classification VARCHAR, young_rider_classification VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_37 WHERE young_rider_classification = \"riccardo ricc\u00f2\"", "question": "What is the general classification with riccardo ricc\u00f2 as the young rider classification?", "context": "CREATE TABLE table_name_37 (general_classification VARCHAR, young_rider_classification VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_93 WHERE young_rider_classification = \"chris anker s\u00f8rensen\" AND general_classification = \"christian vande velde\"", "question": "What is the point classification with chris anker s\u00f8rensen as the young rider classification and Christian vande velde as the general classification?", "context": "CREATE TABLE table_name_93 (points_classification VARCHAR, young_rider_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_92 WHERE stage = \"15\"", "question": "What is the point classification of stage 15?", "context": "CREATE TABLE table_name_92 (points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_53 WHERE game_site = \"memorial stadium\"", "question": "what week number was at memorial stadium?", "context": "CREATE TABLE table_name_53 (week INTEGER, game_site VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_22 WHERE date = \"1983-11-21\" AND week < 12", "question": "before week 12 what was the attendance on 1983-11-21?", "context": "CREATE TABLE table_name_22 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_34 WHERE week = 16", "question": "on week 16, what was the lowest attendance?", "context": "CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT venue FROM table_name_82 WHERE margin_of_victory = \"7 strokes\"", "question": "At what venue is the margin of victory 7 strokes?", "context": "CREATE TABLE table_name_82 (venue VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT COUNT(purse___) AS $__ FROM table_name_41 WHERE champion = \"sherri steinhauer\" AND venue = \"woburn golf and country club\"", "question": "What was the purse when Sherri Steinhauer was champion at Woburn Golf and Country Club?", "context": "CREATE TABLE table_name_41 (purse___ VARCHAR, champion VARCHAR, venue VARCHAR)"}, {"answer": "SELECT exit_date FROM table_name_9 WHERE to_club = \"cardiff city\"", "question": "What is the exit date of the player who transferred to Cardiff City?", "context": "CREATE TABLE table_name_9 (exit_date VARCHAR, to_club VARCHAR)"}, {"answer": "SELECT exit_date FROM table_name_58 WHERE to_club = \"portsmouth\"", "question": "What is the exit date of the player who transferred to Portsmouth?", "context": "CREATE TABLE table_name_58 (exit_date VARCHAR, to_club VARCHAR)"}, {"answer": "SELECT player FROM table_name_25 WHERE pos = \"fw\"", "question": "Which player has a position of FW?", "context": "CREATE TABLE table_name_25 (player VARCHAR, pos VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_name_92 WHERE erp_w > 4 AND call_sign = \"w218ap\"", "question": "Which Frequency MHz has an ERP W larger than 4, and a Call sign of w218ap?", "context": "CREATE TABLE table_name_92 (frequency_mhz VARCHAR, erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_42 WHERE frequency_mhz = \"91.5 fm\"", "question": "Which City of license has a Frequency MHz of 91.5 fm?", "context": "CREATE TABLE table_name_42 (city_of_license VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_64 WHERE call_sign = \"w220ba\"", "question": "Which City of license has a Call sign of w220ba?", "context": "CREATE TABLE table_name_64 (city_of_license VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT MAX(erp_w) FROM table_name_98 WHERE frequency_mhz = \"89.3 fm\"", "question": "Which ERP W has a Frequency MHz of 89.3 fm?", "context": "CREATE TABLE table_name_98 (erp_w INTEGER, frequency_mhz VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_15 WHERE player = \"greg norman\"", "question": "How many wins does Greg Norman have?", "context": "CREATE TABLE table_name_15 (wins INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_89 WHERE position = 6 AND drawn < 1", "question": "What is the lowest number played with a position of 6 and less than 1 draw?", "context": "CREATE TABLE table_name_89 (played INTEGER, position VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_86 WHERE team = \"palmeiras\" AND position < 4", "question": "What is the highest against value for Palmeiras and position less than 4?", "context": "CREATE TABLE table_name_86 (against INTEGER, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_69 WHERE lost > 2 AND team = \"palmeiras\" AND drawn < 1", "question": "What is the highest number played with more than 2 lost for Palmeiras and less than 1 draw?", "context": "CREATE TABLE table_name_69 (played INTEGER, drawn VARCHAR, lost VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_86 WHERE against < 5", "question": "What is the average number lost when the against value is less than 5?", "context": "CREATE TABLE table_name_86 (lost INTEGER, against INTEGER)"}, {"answer": "SELECT COUNT(won_by_2_or_more_goals_difference) FROM table_name_3 WHERE difference = \"2\" AND points > 9 AND team = \"america-rj\" AND played > 7", "question": "How many values for a win by 2 or more goals correspond to a difference of 2, more than 9 points, and the America-RJ team when more than 7 are played?", "context": "CREATE TABLE table_name_3 (won_by_2_or_more_goals_difference VARCHAR, played VARCHAR, team VARCHAR, difference VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_90 WHERE year_of_census > 1971 AND serbs = \"10,412 (32.88%)\"", "question": "What is the average total of the census after 1971 with 10,412 (32.88%) Serbs?", "context": "CREATE TABLE table_name_90 (total INTEGER, year_of_census VARCHAR, serbs VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_57 WHERE player = \"jim goodman\"", "question": "what is the school that hosts jim goodman", "context": "CREATE TABLE table_name_57 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT surface FROM table_name_68 WHERE date = \"january 2, 2006\"", "question": "Which Surface has a Date of january 2, 2006?", "context": "CREATE TABLE table_name_68 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_78 WHERE date = \"september 25, 2006\"", "question": "Which tournament happened on september 25, 2006?", "context": "CREATE TABLE table_name_78 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE opponen = \"jo\u00e3o souza\"", "question": "When did jo\u00e3o souza play?", "context": "CREATE TABLE table_name_11 (date VARCHAR, opponen VARCHAR)"}, {"answer": "SELECT surface FROM table_name_17 WHERE score = \"7\u20135, 6\u20134\"", "question": "Which Surface has a Score of 7\u20135, 6\u20134?", "context": "CREATE TABLE table_name_17 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(nfl_draft) FROM table_name_47 WHERE player = \"jeff robinson\" AND overall_pick < 98", "question": "What is the highest NFL Draft that has jeff robinson as the player, with an overall pick less than 98?", "context": "CREATE TABLE table_name_47 (nfl_draft INTEGER, player VARCHAR, overall_pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_55 WHERE nfl_draft = 1958 AND player = \"jerry kramer\"", "question": "What position has 1958 as the NFL Draft, and jerry kramer as the player?", "context": "CREATE TABLE table_name_55 (position VARCHAR, nfl_draft VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(overall_pick) FROM table_name_27 WHERE position = \"c\" AND nfl_draft > 1977", "question": "What is the highest overall pick that has c as the position, with an NFL Draft greater than 1977?", "context": "CREATE TABLE table_name_27 (overall_pick INTEGER, position VARCHAR, nfl_draft VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE home_team = \"san jose\" AND venue = \"spartan stadium\"", "question": "What was the score at Spartan Stadium when San Jose was the Home team?", "context": "CREATE TABLE table_name_18 (score VARCHAR, home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_95 WHERE date = \"september 11, 2004\"", "question": "Where was the game on September 11, 2004?", "context": "CREATE TABLE table_name_95 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_39 WHERE venue = \"spartan stadium\" AND date = \"september 20, 1998\"", "question": "Who was the home team on September 20, 1998 at Spartan Stadium?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT method FROM table_name_5 WHERE round < 3 AND time = \"3:36\"", "question": "What method has a round less than 3, and 3:36 as the time?", "context": "CREATE TABLE table_name_5 (method VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT method FROM table_name_15 WHERE opponent = \"randy couture\"", "question": "What method has randy couture as the opponent?", "context": "CREATE TABLE table_name_15 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT median_household_income FROM table_name_27 WHERE per_capita_income = \"$28,789\"", "question": "What is the median household income where the per capita is $28,789?", "context": "CREATE TABLE table_name_27 (median_household_income VARCHAR, per_capita_income VARCHAR)"}, {"answer": "SELECT median_family_income FROM table_name_14 WHERE per_capita_income = \"$18,296\"", "question": "What is the median income for a family whose per capita income is $18,296?", "context": "CREATE TABLE table_name_14 (median_family_income VARCHAR, per_capita_income VARCHAR)"}, {"answer": "SELECT resolution FROM table_name_96 WHERE network = \"canal de las estrellas\"", "question": "What is the resolution of the network Canal de las Estrellas?", "context": "CREATE TABLE table_name_96 (resolution VARCHAR, network VARCHAR)"}, {"answer": "SELECT resolution FROM table_name_47 WHERE network = \"carismatv\"", "question": "What is the resolution of the network Carismatv?", "context": "CREATE TABLE table_name_47 (resolution VARCHAR, network VARCHAR)"}, {"answer": "SELECT dish FROM table_name_46 WHERE official_website = \"ksat.com\"", "question": "Which dish belongs to the network that has the official website of ksat.com?", "context": "CREATE TABLE table_name_46 (dish VARCHAR, official_website VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_93 WHERE network = \"latv\"", "question": "In which city is the network latv licensed?", "context": "CREATE TABLE table_name_93 (city_of_license VARCHAR, network VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_71 WHERE callsign = \"kgns-dt3\"", "question": "In which city is the network with the callsign kgns-dt3 licensed?", "context": "CREATE TABLE table_name_71 (city_of_license VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT SUM(introduced) FROM table_name_94 WHERE manufacturer = \"fokker\" AND quantity = 5 AND retired > 1999", "question": "How many in the introduced section had Fokker as a manufacturer, a quantity of 5, and retired later than 1999?", "context": "CREATE TABLE table_name_94 (introduced INTEGER, retired VARCHAR, manufacturer VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT SUM(quantity) FROM table_name_30 WHERE introduced = 1984", "question": "What is the total number of quantity when the introductory year was 1984?", "context": "CREATE TABLE table_name_30 (quantity INTEGER, introduced VARCHAR)"}, {"answer": "SELECT COUNT(introduced) FROM table_name_80 WHERE retired > 1994 AND manufacturer = \"fokker\"", "question": "How many in the introduced segment retired later than 1994 and had Fokker as a manufacturer?", "context": "CREATE TABLE table_name_80 (introduced VARCHAR, retired VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT COUNT(quantity) FROM table_name_68 WHERE manufacturer = \"fokker\" AND retired > 1999", "question": "How many in the quantity section had Fokker as a manufacturer and retired later than 1999?", "context": "CREATE TABLE table_name_68 (quantity VARCHAR, manufacturer VARCHAR, retired VARCHAR)"}, {"answer": "SELECT champion FROM table_name_74 WHERE scoreboard = \"22-14\"", "question": "Which Championship has a Scoreboard that is 22-14?", "context": "CREATE TABLE table_name_74 (champion VARCHAR, scoreboard VARCHAR)"}, {"answer": "SELECT MAX(year_completed) FROM table_name_81 WHERE rank < 3 AND height_ft__m_ = \"274 (84)\"", "question": "What year was the building with a top 3 rank and a height of 274 (84) ft (m) completed?", "context": "CREATE TABLE table_name_81 (year_completed INTEGER, rank VARCHAR, height_ft__m_ VARCHAR)"}, {"answer": "SELECT AVG(floors__stories_) FROM table_name_99 WHERE height_ft__m_ = \"274 (84)\" AND rank > 1", "question": "How many floors are in the 274 (84) ft (m) building that is ranked number 1?", "context": "CREATE TABLE table_name_99 (floors__stories_ INTEGER, height_ft__m_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_45 WHERE floors__stories_ > 15", "question": "Which is the highest ranked building with more than 15 floors?", "context": "CREATE TABLE table_name_45 (rank INTEGER, floors__stories_ INTEGER)"}, {"answer": "SELECT MAX(scored) FROM table_name_99 WHERE position > 5 AND wins < 4 AND draws > 8", "question": "What is the highest points scored for the team with a position larger than 5, who had less than 4 wins and more than 8 draws?", "context": "CREATE TABLE table_name_99 (scored INTEGER, draws VARCHAR, position VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(conceded) FROM table_name_65 WHERE points < 19 AND position < 10 AND played > 18", "question": "What is the average number conceded for hte team that had less than 19 points, played more than 18 games and had a position less than 10?", "context": "CREATE TABLE table_name_65 (conceded INTEGER, played VARCHAR, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_19 WHERE position < 4 AND wins = 11 AND points < 38", "question": "What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4?", "context": "CREATE TABLE table_name_19 (draws INTEGER, points VARCHAR, position VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_78 WHERE position = 7 AND scored > 14", "question": "What was the lowest number of wins for the team that scored more than 14 points and had a position of 7?", "context": "CREATE TABLE table_name_78 (wins INTEGER, position VARCHAR, scored VARCHAR)"}, {"answer": "SELECT COUNT(scored) FROM table_name_48 WHERE position > 4 AND points = 19", "question": "What is the total number scored for the team that had 19 points and a position larger than 4?", "context": "CREATE TABLE table_name_48 (scored VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(conceded) FROM table_name_77 WHERE wins < 8 AND scored = 21 AND points < 23", "question": "What is the lowest number conceded for the team that had less than 8 wins, scored 21, and had less than 23 points?", "context": "CREATE TABLE table_name_77 (conceded INTEGER, points VARCHAR, wins VARCHAR, scored VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE result = \"l 14\u201313\"", "question": "Which Date has a Result of l 14\u201313?", "context": "CREATE TABLE table_name_88 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE result = \"w 13\u20136\"", "question": "Which Date has a Result of w 13\u20136?", "context": "CREATE TABLE table_name_84 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_94 WHERE week > 3 AND date = \"1971-11-07\"", "question": "What is the Result of Week larger than 3 on 1971-11-07?", "context": "CREATE TABLE table_name_94 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT pos FROM table_name_20 WHERE tier > 1 AND cup_competitions = \"pokal slovenije 1. round\"", "question": "What is the pos with more than 1 tier during Pokal Slovenije 1. round?", "context": "CREATE TABLE table_name_20 (pos VARCHAR, tier VARCHAR, cup_competitions VARCHAR)"}, {"answer": "SELECT cubic_inches__exact_ FROM table_name_9 WHERE metric_value = \"104.955 l\"", "question": "What are the exact Cubic inches of the Metric value of 104.955 L?", "context": "CREATE TABLE table_name_9 (cubic_inches__exact_ VARCHAR, metric_value VARCHAR)"}, {"answer": "SELECT translation FROM table_name_47 WHERE us_customary = \"0.263 pt\"", "question": "What is the Translation of the US Customary value 0.263 pt?", "context": "CREATE TABLE table_name_47 (translation VARCHAR, us_customary VARCHAR)"}, {"answer": "SELECT metric_value FROM table_name_19 WHERE russian = \"\u0447\u0435\u0301\u0442\u0432\u0435\u0440\u0442\u044c\"", "question": "What is the Metric value of Russian \u0447\u0435\u0301\u0442\u0432\u0435\u0440\u0442\u044c?", "context": "CREATE TABLE table_name_19 (metric_value VARCHAR, russian VARCHAR)"}, {"answer": "SELECT cubic_inches__exact_ FROM table_name_86 WHERE unit = \"kruzhka\"", "question": "What are the exact Cubic inches of the Unit of kruzhka?", "context": "CREATE TABLE table_name_86 (cubic_inches__exact_ VARCHAR, unit VARCHAR)"}, {"answer": "SELECT id_code_of_his_zero_fighter FROM table_name_1 WHERE count = \"10\"", "question": "Which Zero Fighter has a count of 10?", "context": "CREATE TABLE table_name_1 (id_code_of_his_zero_fighter VARCHAR, count VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE sub_total = \"9:30\"", "question": "On which day were the subtotal hours 9:30?", "context": "CREATE TABLE table_name_9 (date VARCHAR, sub_total VARCHAR)"}, {"answer": "SELECT count FROM table_name_5 WHERE flight_hours = \"2:00\"", "question": "What is the count for the Zero Fighter with hours of 2:00?", "context": "CREATE TABLE table_name_5 (count VARCHAR, flight_hours VARCHAR)"}, {"answer": "SELECT record FROM table_name_51 WHERE opponent = \"katsuomi inagaki\"", "question": "Which record has Katsuomi Inagaki as an opponent?", "context": "CREATE TABLE table_name_51 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_63 WHERE time = \"1:46\"", "question": "Which method has a 1:46 time?", "context": "CREATE TABLE table_name_63 (method VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_65 WHERE pick__number > 3 AND name = \"henri crockett\"", "question": "What is Henri Crockett's highest overall with more than 3 picks?", "context": "CREATE TABLE table_name_65 (overall INTEGER, pick__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT college FROM table_name_7 WHERE round < 2", "question": "Which college has fewer than 2 rounds?", "context": "CREATE TABLE table_name_7 (college VARCHAR, round INTEGER)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_66 WHERE position = \"guard\" AND round < 6", "question": "What are the total number of picks for a guard with fewer than 6 rounds?", "context": "CREATE TABLE table_name_66 (pick__number VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_88 WHERE position = \"quarterback\" AND round < 7", "question": "What is the lowest overall for a quarterback with fewer than 7 rounds?", "context": "CREATE TABLE table_name_88 (overall INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_83 WHERE open_cup = \"3rd round\"", "question": "What Playoffs had an Open Cup of 3rd round?", "context": "CREATE TABLE table_name_83 (playoffs VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT segment_d FROM table_name_25 WHERE episode = 60", "question": "What was the D segment for episode 60?", "context": "CREATE TABLE table_name_25 (segment_d VARCHAR, episode VARCHAR)"}, {"answer": "SELECT segment_b FROM table_name_54 WHERE netflix = \"s03e01\"", "question": "What was the B segmint for Netlix S03E01?", "context": "CREATE TABLE table_name_54 (segment_b VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT segment_d FROM table_name_51 WHERE episode = 60", "question": "What was the D segment for episode 60?", "context": "CREATE TABLE table_name_51 (segment_d VARCHAR, episode VARCHAR)"}, {"answer": "SELECT supercopa_1996 FROM table_name_14 WHERE team = \"racing club\"", "question": "What racing club team made supercopa 1996?", "context": "CREATE TABLE table_name_14 (supercopa_1996 VARCHAR, team VARCHAR)"}, {"answer": "SELECT _number___county FROM table_name_54 WHERE school = \"new palestine\"", "question": "Name the # country for new palestine", "context": "CREATE TABLE table_name_54 (_number___county VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_47 WHERE _number___county = \"48 madison\"", "question": "Name the number of enrollment for county of 48 madison", "context": "CREATE TABLE table_name_47 (enrollment VARCHAR, _number___county VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_82 WHERE _number___county = \"18 delaware\" AND mascot = \"tigers\"", "question": "Name the IHSAA class with county 18 delaware and tigers mascot", "context": "CREATE TABLE table_name_82 (ihsaa_class VARCHAR, _number___county VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_33 WHERE school = \"shelbyville\"", "question": "Name the mascot for shelbyville", "context": "CREATE TABLE table_name_33 (mascot VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_37 WHERE stadium = \"hampden park\" AND highest > 1 OFFSET 763", "question": "What's the capacity that has the highest greater than 1,763 and is at Hampden Park?", "context": "CREATE TABLE table_name_37 (capacity INTEGER, stadium VARCHAR, highest VARCHAR)"}, {"answer": "SELECT MAX(highest) FROM table_name_20 WHERE average = 615 AND capacity > 4 OFFSET 000", "question": "What's the highest with a capacity of greater than 4,000 and an average of 615?", "context": "CREATE TABLE table_name_20 (highest INTEGER, average VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_77 WHERE stadium = \"balmoor\" AND lowest > 400", "question": "At Balmoor Stadium, what's the total average having a greater than 400 lowest?", "context": "CREATE TABLE table_name_77 (average VARCHAR, stadium VARCHAR, lowest VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE location = \"georgia\" AND winner = \"tommy aaron (2)\"", "question": "What was the score of Tommy Aaron (2) when the tournament was in georgia?", "context": "CREATE TABLE table_name_38 (score VARCHAR, location VARCHAR, winner VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE winner = \"ken still (3)\"", "question": "What was the score of Ken Still (3) when he won first place?", "context": "CREATE TABLE table_name_14 (score VARCHAR, winner VARCHAR)"}, {"answer": "SELECT beat_by FROM table_name_9 WHERE distance = \"8fm\"", "question": "Who beat Chic by 8fm?", "context": "CREATE TABLE table_name_9 (beat_by VARCHAR, distance VARCHAR)"}, {"answer": "SELECT placing FROM table_name_58 WHERE beat_by = \"won\" AND distance = \"8gf\"", "question": "What was the placing of the race in which Chic won by 8gf?", "context": "CREATE TABLE table_name_58 (placing VARCHAR, beat_by VARCHAR, distance VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE beat_by = \"won\" AND location = \"chs\"", "question": "What was the date in which Chic won at CHS?", "context": "CREATE TABLE table_name_50 (date VARCHAR, beat_by VARCHAR, location VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_26 WHERE location_attendance = \"los angeles\" AND date < 18 AND game = 54", "question": "Who is the opponent of game 54, which was in Los Angeles and was before day 18?", "context": "CREATE TABLE table_name_26 (opponent VARCHAR, game VARCHAR, location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_14 WHERE score = \"2-2\"", "question": "What is the earliest date of the game with a score of 2-2?", "context": "CREATE TABLE table_name_14 (date INTEGER, score VARCHAR)"}, {"answer": "SELECT AVG(date) FROM table_name_19 WHERE opponent = \"detroit red wings\"", "question": "What is the average date of the game with the Detroit Red Wings as the opponent?", "context": "CREATE TABLE table_name_19 (date INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE score = \"4-2\"", "question": "What is the date of the game with a score of 4-2?", "context": "CREATE TABLE table_name_51 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT loss FROM table_name_41 WHERE record = \"3-3\"", "question": "What was the loss of the game that had a record of 3-3?", "context": "CREATE TABLE table_name_41 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE loss = \"mercedes (0-1)\"", "question": "What was the score of the game with a loss of Mercedes (0-1)?", "context": "CREATE TABLE table_name_47 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_71 WHERE loss = \"weaver (1-2)\"", "question": "Who was the opponent at the game with a loss of Weaver (1-2)?", "context": "CREATE TABLE table_name_71 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT remixed_by FROM table_name_47 WHERE version = \"strings for soul's mix\"", "question": "What's the Remixed by with a Version of Strings for Soul's Mix?", "context": "CREATE TABLE table_name_47 (remixed_by VARCHAR, version VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_38 WHERE remixed_by = \"laurent boutonnat\"", "question": "What the highest Year with a Remixed by Laurent Boutonnat?", "context": "CREATE TABLE table_name_38 (year INTEGER, remixed_by VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_36 WHERE length = \"4:45\" AND album = \"les mots\"", "question": "What's the total Year with a Length of 4:45 an has an Album of Les Mots?", "context": "CREATE TABLE table_name_36 (year INTEGER, length VARCHAR, album VARCHAR)"}, {"answer": "SELECT length FROM table_name_60 WHERE version = \"album version\"", "question": "What's the Length with the Version of Album Version?", "context": "CREATE TABLE table_name_60 (length VARCHAR, version VARCHAR)"}, {"answer": "SELECT album FROM table_name_39 WHERE year > 2001", "question": "What Album has a Year that's larger than 2001?", "context": "CREATE TABLE table_name_39 (album VARCHAR, year INTEGER)"}, {"answer": "SELECT MIN(position) FROM table_name_6 WHERE pilot = \"bruce taylor\"", "question": "What is the lowest position for bruce taylor?", "context": "CREATE TABLE table_name_6 (position INTEGER, pilot VARCHAR)"}, {"answer": "SELECT pilot FROM table_name_98 WHERE position > 5 AND speed = \"118.8km/h\"", "question": "Which pilot has a position above 5 and a speed of 118.8km/h?", "context": "CREATE TABLE table_name_98 (pilot VARCHAR, position VARCHAR, speed VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_18 WHERE pilot = \"erwin sommer\"", "question": "What is Erwin Sommer's average position?", "context": "CREATE TABLE table_name_18 (position INTEGER, pilot VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_27 WHERE gross = \"$38,916\" AND screens > 6", "question": "What is the highest rank of the day with a gross of $38,916 and more than 6 screens?", "context": "CREATE TABLE table_name_27 (rank INTEGER, gross VARCHAR, screens VARCHAR)"}, {"answer": "SELECT gross FROM table_name_33 WHERE territory = \"united kingdom\"", "question": "What is the gross in the United Kingdom?", "context": "CREATE TABLE table_name_33 (gross VARCHAR, territory VARCHAR)"}, {"answer": "SELECT territory FROM table_name_91 WHERE screens = 17", "question": "What is the territory with 17 screens?", "context": "CREATE TABLE table_name_91 (territory VARCHAR, screens VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_1 WHERE participants < 14 AND rank = 1 AND total > 1", "question": "What is the lowest number of Golds that has Participants smaller than 14, and Rank of 1, and Total larger than 1?", "context": "CREATE TABLE table_name_1 (gold INTEGER, total VARCHAR, participants VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE record = \"39\u201354\"", "question": "On what date was the record 39\u201354?", "context": "CREATE TABLE table_name_69 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE date = \"july 1\"", "question": "What was the record on July 1?", "context": "CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_13 WHERE wins < 1 AND pos > 8", "question": "How many total matches with less than 1 win and a position higher than 8?", "context": "CREATE TABLE table_name_13 (matches INTEGER, wins VARCHAR, pos VARCHAR)"}, {"answer": "SELECT liberal_leader FROM table_name_86 WHERE seats_won < 100 AND seats_in_house = 215 AND _percentage_of_popular_vote = \"43.1%\"", "question": "Which Liberal leader has Seats won smaller than 100, and Seats in House of 215, and a % of popular vote of 43.1%?", "context": "CREATE TABLE table_name_86 (liberal_leader VARCHAR, _percentage_of_popular_vote VARCHAR, seats_won VARCHAR, seats_in_house VARCHAR)"}, {"answer": "SELECT AVG(popular_vote) FROM table_name_32 WHERE liberal_leader = \"king\" AND seats_won > 116 AND year = \"1921\"", "question": "Which Popular vote has a Liberal leader of king, and Seats won larger than 116, and a Year of 1921?", "context": "CREATE TABLE table_name_32 (popular_vote INTEGER, year VARCHAR, liberal_leader VARCHAR, seats_won VARCHAR)"}, {"answer": "SELECT COUNT(liberal_candidates) FROM table_name_94 WHERE liberal_leader = \"pearson\" AND _percentage_of_popular_vote = \"40.2%\" AND seats_won < 131", "question": "How many Liberal candidates have a Liberal leader of pearson, and a % of popular vote of 40.2%, and Seats won smaller than 131?", "context": "CREATE TABLE table_name_94 (liberal_candidates VARCHAR, seats_won VARCHAR, liberal_leader VARCHAR, _percentage_of_popular_vote VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE year = \"2006-2007\"", "question": "What is the score during the 2006-2007 year?", "context": "CREATE TABLE table_name_81 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT winners FROM table_name_4 WHERE year = \"2010-2011\"", "question": "Who were the winners in 2010-2011?", "context": "CREATE TABLE table_name_4 (winners VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE runner_up = \"utc\" AND winners = \"saint-gaudens bears\"", "question": "What is the score of the match with UTC as the runner-up and Saint-Gaudens Bears as the winners?", "context": "CREATE TABLE table_name_77 (score VARCHAR, runner_up VARCHAR, winners VARCHAR)"}, {"answer": "SELECT year FROM table_name_3 WHERE runner_up = \"utc\" AND winners = \"saint-gaudens bears\"", "question": "Which year had UTC as the runner-up and Saint-Gaudens Bears as the winners?", "context": "CREATE TABLE table_name_3 (year VARCHAR, runner_up VARCHAR, winners VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE score = \"33-22\"", "question": "What is the venue of the match with a score of 33-22?", "context": "CREATE TABLE table_name_45 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_28 WHERE date = \"february 22\"", "question": "Who had the highest assists during the game on February 22?", "context": "CREATE TABLE table_name_28 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_55 WHERE location_attendance = \"td waterhouse centre\"", "question": "What team did the Heat play against at the TD Waterhouse Centre?", "context": "CREATE TABLE table_name_55 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE game > 53 AND team = \"toronto\"", "question": "What date was the game against Toronto which had a game number higher than 53?", "context": "CREATE TABLE table_name_68 (date VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE home_team = \"baltimore colts\"", "question": "What is the date of the that was played with the Baltimore Colts at home?", "context": "CREATE TABLE table_name_94 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT length_of_game FROM table_name_31 WHERE home_team = \"houston oilers\"", "question": "How long did the game go that was played with the Houston Oilers at home?", "context": "CREATE TABLE table_name_31 (length_of_game VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE length_of_game = \"75:43\"", "question": "What was the date of the game that lasted 75:43?", "context": "CREATE TABLE table_name_93 (date VARCHAR, length_of_game VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_78 WHERE date = \"december 24, 1977\"", "question": "Who is the away team for the game played on December 24, 1977?", "context": "CREATE TABLE table_name_78 (away_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT length_of_game FROM table_name_95 WHERE home_team = \"baltimore colts\"", "question": "What was the length of the game where the Baltimore Colts were at home?", "context": "CREATE TABLE table_name_95 (length_of_game VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_36 WHERE grid = 16", "question": "What's the number of laps for 16 grids?", "context": "CREATE TABLE table_name_36 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_71 WHERE laps < 23 AND grid > 21 AND time_retired = \"+1 lap\"", "question": "Who was the rider for laps less than 23 with grid greater than 21 that had a time of +1 lap?", "context": "CREATE TABLE table_name_71 (rider VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_26 WHERE time_retired = \"+44.831\"", "question": "What's the total grid for someone with a time/retire of +44.831", "context": "CREATE TABLE table_name_26 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_52 WHERE time_retired = \"+22.687\"", "question": "What's the smallest grid for Time/Retired of +22.687?", "context": "CREATE TABLE table_name_52 (grid INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT recopa_sudamericana_1996 FROM table_name_10 WHERE copa_conmebol_1996 = \"did not qualify\" AND team = \"flamengo\"", "question": "What is the recoupa sudaamericana 1996 result of team flamengo, which did not qualify for the copa conmebol 1996?", "context": "CREATE TABLE table_name_10 (recopa_sudamericana_1996 VARCHAR, copa_conmebol_1996 VARCHAR, team VARCHAR)"}, {"answer": "SELECT copa_libertadores_1996 FROM table_name_84 WHERE copa_conmebol_1996 = \"quarterfinals\"", "question": "What is the copa libertadores 1996 result of the team with a copa conmebol 1996 result of quarterfinals?", "context": "CREATE TABLE table_name_84 (copa_libertadores_1996 VARCHAR, copa_conmebol_1996 VARCHAR)"}, {"answer": "SELECT copa_libertadores_1996 FROM table_name_32 WHERE team = \"corinthians\"", "question": "What is the copa libertadores 1996 of team corinthians?", "context": "CREATE TABLE table_name_32 (copa_libertadores_1996 VARCHAR, team VARCHAR)"}, {"answer": "SELECT copa_conmebol_1996 FROM table_name_49 WHERE recopa_sudamericana_1996 = \"champions\"", "question": "What is the copa conmebol 1996 result of the team with a recopa sudamericana 1996 result of champions?", "context": "CREATE TABLE table_name_49 (copa_conmebol_1996 VARCHAR, recopa_sudamericana_1996 VARCHAR)"}, {"answer": "SELECT recopa_sudamericana_1996 FROM table_name_64 WHERE copa_libertadores_1996 = \"round of 16\"", "question": "What is the recoupa sudamericana 1996 of the team with a copa libertadores 1996 result of the round of 16?", "context": "CREATE TABLE table_name_64 (recopa_sudamericana_1996 VARCHAR, copa_libertadores_1996 VARCHAR)"}, {"answer": "SELECT recopa_sudamericana_1996 FROM table_name_7 WHERE team = \"corinthians\"", "question": "What is the recoupa sudamericana 1996 result of team corinthians?", "context": "CREATE TABLE table_name_7 (recopa_sudamericana_1996 VARCHAR, team VARCHAR)"}, {"answer": "SELECT season FROM table_name_90 WHERE margin = \"195 runs\"", "question": "What season has 195 runs as a margin?", "context": "CREATE TABLE table_name_90 (season VARCHAR, margin VARCHAR)"}, {"answer": "SELECT season FROM table_name_18 WHERE rank = \"2\"", "question": "What season has 2 as a rank?", "context": "CREATE TABLE table_name_18 (season VARCHAR, rank VARCHAR)"}, {"answer": "SELECT venue FROM table_name_75 WHERE rank = \"2\"", "question": "What venue has 2 as the rank?", "context": "CREATE TABLE table_name_75 (venue VARCHAR, rank VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_79 WHERE season = \"2011/12\"", "question": "What opponent has 2011/12 as the season?", "context": "CREATE TABLE table_name_79 (opponent VARCHAR, season VARCHAR)"}, {"answer": "SELECT length FROM table_name_3 WHERE year = 2003", "question": "What is the length of the version from 2003?", "context": "CREATE TABLE table_name_3 (length VARCHAR, year VARCHAR)"}, {"answer": "SELECT remixed_by FROM table_name_67 WHERE length = \"4:22\"", "question": "Who remixed the version with a length of 4:22?", "context": "CREATE TABLE table_name_67 (remixed_by VARCHAR, length VARCHAR)"}, {"answer": "SELECT length FROM table_name_68 WHERE version = \"uk remix\"", "question": "What is the length of the UK remix version?", "context": "CREATE TABLE table_name_68 (length VARCHAR, version VARCHAR)"}, {"answer": "SELECT year FROM table_name_76 WHERE album = \"remixes\"", "question": "What year was the version with a remixes album?", "context": "CREATE TABLE table_name_76 (year VARCHAR, album VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_85 WHERE team = \"sturt\" AND wins > 0", "question": "How many losses did the team, Sturt, have when they had more than 0 wins?", "context": "CREATE TABLE table_name_85 (losses VARCHAR, team VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_13 WHERE wins > 0", "question": "What is the average number of draws for the team that had more than 0 wins?", "context": "CREATE TABLE table_name_13 (draws INTEGER, wins INTEGER)"}, {"answer": "SELECT MIN(losses) FROM table_name_13 WHERE draws > 0 AND season < 1926", "question": "What is the least amount of losses for the team that had more than 0 draws during the seasons earlier than 1926?", "context": "CREATE TABLE table_name_13 (losses INTEGER, draws VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_63 WHERE season < 1995 AND team = \"central district\" AND draws < 0", "question": "What is the highest number of wins for the team, Central District, who had less than 0 draws and took place during a season before 1995?", "context": "CREATE TABLE table_name_63 (wins INTEGER, draws VARCHAR, season VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_72 WHERE season < 1906 AND draws < 0", "question": "What is the average number of wins before the season in 1906 where there were 0 draws?", "context": "CREATE TABLE table_name_72 (wins INTEGER, season VARCHAR, draws VARCHAR)"}, {"answer": "SELECT opposing_pitcher FROM table_name_37 WHERE team = \"phillies\" AND location = \"pittsburgh\" AND inning = \"8th\"", "question": "Who is the Opposing Pitcher when Team is phillies, Location is pittsburgh, and Inning is 8th?", "context": "CREATE TABLE table_name_37 (opposing_pitcher VARCHAR, inning VARCHAR, team VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_14 WHERE inning = \"6th\" AND opposing_pitcher = \"cliff curtis\"", "question": "What is the lowest Game where Inning is 6th, and the Opposing Pitcher is cliff curtis?", "context": "CREATE TABLE table_name_14 (game INTEGER, inning VARCHAR, opposing_pitcher VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE triple < 26 AND game = 25", "question": "What is was Date that where Triple was smaller than 26, and Game was 25?", "context": "CREATE TABLE table_name_84 (date VARCHAR, triple VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_47 WHERE bronze = 14 AND total > 42", "question": "Which Gold is the lowest one that has a Bronze of 14, and a Total larger than 42?", "context": "CREATE TABLE table_name_47 (gold INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_38 WHERE nation = \"total\" AND gold < 14", "question": "Which Bronze is the lowest one that has a Nation of total, and a Gold smaller than 14?", "context": "CREATE TABLE table_name_38 (bronze INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_16 WHERE nation = \"kazakhstan (kaz)\" AND gold > 0", "question": "How much Total has a Nation of kazakhstan (kaz), and a Gold larger than 0?", "context": "CREATE TABLE table_name_16 (total VARCHAR, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_24 WHERE rank = \"1\" AND gold > 11", "question": "Which Total is the highest one that has a Rank of 1, and a Gold larger than 11?", "context": "CREATE TABLE table_name_24 (total INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT third FROM table_name_74 WHERE venue = \"oslo\"", "question": "Who finished 3rd in Oslo?", "context": "CREATE TABLE table_name_74 (third VARCHAR, venue VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_99 WHERE type_of_game = \"friendly\" AND date = \"november 22\"", "question": "On November 22, what were the results of the friendly type game?", "context": "CREATE TABLE table_name_99 (results\u00b9 VARCHAR, type_of_game VARCHAR, date VARCHAR)"}, {"answer": "SELECT city FROM table_name_82 WHERE date = \"october 8\"", "question": "On October 8, what city was the game played?", "context": "CREATE TABLE table_name_82 (city VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_96 WHERE date = \"june 29\"", "question": "On June 29, who was the opponent?", "context": "CREATE TABLE table_name_96 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE type_of_game = \"friendly\" AND opponent = \"sweden\"", "question": "What date had an opponent of Sweden and a friendly type game?", "context": "CREATE TABLE table_name_44 (date VARCHAR, type_of_game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_31 WHERE date = \"september 7\"", "question": "What were the results on September 7?", "context": "CREATE TABLE table_name_31 (results\u00b9 VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_35 WHERE date = \"january 28, 2006\"", "question": "What is the Winning team on january 28, 2006?", "context": "CREATE TABLE table_name_35 (winning_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_name_54 WHERE winning_team = \"iowa state\" AND sport = \"w basketball\"", "question": "Which Series has a Winning team of iowa state and a Sport of w basketball?", "context": "CREATE TABLE table_name_54 (series VARCHAR, winning_team VARCHAR, sport VARCHAR)"}, {"answer": "SELECT series FROM table_name_90 WHERE site = \"ames\" AND date = \"september 10, 2005\"", "question": "Which Series has a Site of ames on september 10, 2005?", "context": "CREATE TABLE table_name_90 (series VARCHAR, site VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_name_13 WHERE site = \"ames\" AND sport = \"w gymnastics\"", "question": "Which Series has a Site of ames and a Sport of w gymnastics?", "context": "CREATE TABLE table_name_13 (series VARCHAR, site VARCHAR, sport VARCHAR)"}, {"answer": "SELECT sport FROM table_name_70 WHERE date = \"march 17, 2006\" AND winning_team = \"iowa state\"", "question": "WHich port is on march 17, 2006 and has a Winning team of iowa state?", "context": "CREATE TABLE table_name_70 (sport VARCHAR, date VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT site FROM table_name_40 WHERE date = \"march 17, 2006\" AND winning_team = \"iowa state\"", "question": "Which Site has a Date of march 17, 2006 and an iowa state Winning team?", "context": "CREATE TABLE table_name_40 (site VARCHAR, date VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE week < 11 AND date = \"october 31, 1976\"", "question": "Who was the opponent of the game before week 11 on October 31, 1976?", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_68 WHERE week = 9", "question": "What is the highest attendance of the game on week 9?", "context": "CREATE TABLE table_name_68 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT last_air_date FROM table_name_2 WHERE season = 3", "question": "When is the last episode air date for season 3?", "context": "CREATE TABLE table_name_2 (last_air_date VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_43 WHERE last_air_date = \"march 11, 2001\"", "question": "Which season had its last episode air on March 11, 2001?", "context": "CREATE TABLE table_name_43 (season VARCHAR, last_air_date VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_22 WHERE drawn > 1", "question": "What games have more than 1 draw?", "context": "CREATE TABLE table_name_22 (games INTEGER, drawn INTEGER)"}, {"answer": "SELECT MIN(games) FROM table_name_43 WHERE drawn = 1 AND points < 7", "question": "What game is the lowest with 1 draw and less than 7 points?", "context": "CREATE TABLE table_name_43 (games INTEGER, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_86 WHERE manager = \"art griggs\"", "question": "Manager of art griggs had what lowest year?", "context": "CREATE TABLE table_name_86 (year INTEGER, manager VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_78 WHERE manager = \"spencer abbott\" AND year = 1919", "question": "Manager of spencer abbott, and a Year of 1919 involves what playoffs?", "context": "CREATE TABLE table_name_78 (playoffs VARCHAR, manager VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_91 WHERE manager = \"marty berghammer / nick allen\"", "question": "Manager of marty berghammer / nick allen is what year?", "context": "CREATE TABLE table_name_91 (year VARCHAR, manager VARCHAR)"}, {"answer": "SELECT league FROM table_name_59 WHERE manager = \"lyman lamb / marty berghammer\"", "question": "Manager of lyman lamb / marty berghammer is in what league?", "context": "CREATE TABLE table_name_59 (league VARCHAR, manager VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_59 WHERE manager = \"marty berghammer\" AND finish = \"1st\"", "question": "Manager of marty berghammer, and a Finish of 1st involved what lowest year?", "context": "CREATE TABLE table_name_59 (year INTEGER, manager VARCHAR, finish VARCHAR)"}, {"answer": "SELECT league FROM table_name_63 WHERE playoffs = \"league champs\" AND record = \"77-63\"", "question": "Playoffs of league champs, and a Record of 77-63 is in what league?", "context": "CREATE TABLE table_name_63 (league VARCHAR, playoffs VARCHAR, record VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_16 WHERE 2007 = \"sf\"", "question": "Name the 2005 with 2007 of sf", "context": "CREATE TABLE table_name_16 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_22 WHERE 2008 = \"1r\" AND 2004 = \"1r\"", "question": "Name the 2006 with 2008 of 1r and 2004 of 1r", "context": "CREATE TABLE table_name_22 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_9 WHERE 2002 = \"1r\" AND 2009 = \"a\"", "question": "Name the 2011 with 2002 of 1r and 2009 of a", "context": "CREATE TABLE table_name_9 (Id VARCHAR)"}, {"answer": "SELECT 1999 FROM table_name_3 WHERE 2011 = \"2r\"", "question": "Name the 1999 with 2011 of 2r", "context": "CREATE TABLE table_name_3 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_88 WHERE 1998 = \"a\" AND 2002 = \"1r\" AND 2004 = \"2r\"", "question": "Name the 2008 with 1998 of a and 2002 of 1r with 2004 of 2r", "context": "CREATE TABLE table_name_88 (Id VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_2 WHERE 2007 = \"sf\"", "question": "Name the 2001 with 2007 of sf", "context": "CREATE TABLE table_name_2 (Id VARCHAR)"}, {"answer": "SELECT school_year FROM table_name_73 WHERE class_aAA = dalhart AND class_aAAAA = edinburg", "question": "Which school year was the Class AAA dalhart and the class AAAAA edinburg?", "context": "CREATE TABLE table_name_73 (school_year VARCHAR, class_aAA VARCHAR, dalhart VARCHAR, class_aAAAA VARCHAR, edinburg VARCHAR)"}, {"answer": "SELECT class_a FROM table_name_24 WHERE school_year = \"1987-88\"", "question": "For what Class A is the school year 1987-88?", "context": "CREATE TABLE table_name_24 (class_a VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aAAA FROM table_name_28 WHERE class_aAA = gonzales", "question": "What is the Class AAAAA when the Class AAA is Gonzales?", "context": "CREATE TABLE table_name_28 (class_aAAA VARCHAR, class_aAA VARCHAR, gonzales VARCHAR)"}, {"answer": "SELECT team FROM table_name_78 WHERE points < 35", "question": "Which team scored less than 35 points?", "context": "CREATE TABLE table_name_78 (team VARCHAR, points INTEGER)"}, {"answer": "SELECT AVG(position) FROM table_name_80 WHERE team = \"crici\u00fama\" AND drawn > 8", "question": "Which Position has a Team of crici\u00fama, and a Drawn larger than 8?", "context": "CREATE TABLE table_name_80 (position INTEGER, team VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_7 WHERE points < 46 AND position < 20 AND lost < 19 AND against = 56", "question": "Which Drawn has Points smaller than 46, and a Position smaller than 20, and a Lost smaller than 19, and an Against of 56?", "context": "CREATE TABLE table_name_7 (drawn VARCHAR, against VARCHAR, lost VARCHAR, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_97 WHERE lost > 14 AND drawn = 10 AND points > 46", "question": "Which Played has a Lost larger than 14, and a Drawn of 10, and Points larger than 46?", "context": "CREATE TABLE table_name_97 (played INTEGER, points VARCHAR, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE leading_scorer = \"devin brown (24)\"", "question": "What score has devin brown (24) as the leading scorer?", "context": "CREATE TABLE table_name_36 (score VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT height_ft___m__ FROM table_name_93 WHERE floors = 36", "question": "Which height, in meters, has 36 floors?", "context": "CREATE TABLE table_name_93 (height_ft___m__ VARCHAR, floors VARCHAR)"}, {"answer": "SELECT MAX(floors) FROM table_name_84 WHERE name = \"one indiana square\"", "question": "Which Floors is the highest one that has a Name of one indiana square?", "context": "CREATE TABLE table_name_84 (floors INTEGER, name VARCHAR)"}, {"answer": "SELECT height_ft___m__ FROM table_name_10 WHERE street_address = \"07.0 200 east washington street\"", "question": "How tall is the Street address of 07.0 200 east washington street?", "context": "CREATE TABLE table_name_10 (height_ft___m__ VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE record = \"37-44\"", "question": "What was the date of the game where the indians record was 37-44?", "context": "CREATE TABLE table_name_95 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT town_city FROM table_name_39 WHERE name = \"garfield county museum\"", "question": "What city is Garfield County Museum located in?", "context": "CREATE TABLE table_name_39 (town_city VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_52 WHERE town_city = \"rudyard\"", "question": "What is the museum name located in Rudyard?", "context": "CREATE TABLE table_name_52 (name VARCHAR, town_city VARCHAR)"}, {"answer": "SELECT region FROM table_name_43 WHERE name = \"blaine county museum\"", "question": "What is the region that the Blaine County Museum is located in?", "context": "CREATE TABLE table_name_43 (region VARCHAR, name VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_13 WHERE score = \"6\u20133, 2\u20136, 6\u20133\"", "question": "What Tournament had a Score of 6\u20133, 2\u20136, 6\u20133?", "context": "CREATE TABLE table_name_13 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT partner FROM table_name_31 WHERE score = \"6\u20133, 2\u20136, 6\u20133\"", "question": "What Partner had a Score of 6\u20133, 2\u20136, 6\u20133?", "context": "CREATE TABLE table_name_31 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_6 WHERE outcome = \"runner-up\" AND surface = \"hard\" AND partner = \"catherine suire\"", "question": "Who were the Opponents in the match on a Hard Surface with Catherine Suire as Partner and Outcome of runner-up?", "context": "CREATE TABLE table_name_6 (opponents VARCHAR, partner VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_4 WHERE record = \"6\u201312\u20135\u20131\"", "question": "Who was the visiting team when the record was 6\u201312\u20135\u20131?", "context": "CREATE TABLE table_name_4 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_56 WHERE record = \"21\u201345\u20138\u20135\"", "question": "Who was the home team when the record was 21\u201345\u20138\u20135?", "context": "CREATE TABLE table_name_56 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT attribute FROM table_name_15 WHERE cancelable = \"yes\" AND bubbles = \"yes\"", "question": "Which of the attributes has is cancelable and an answer of yes for bubbles?", "context": "CREATE TABLE table_name_15 (attribute VARCHAR, cancelable VARCHAR, bubbles VARCHAR)"}, {"answer": "SELECT bubbles FROM table_name_87 WHERE attribute = \"onlostpointercapture\"", "question": "Which bubbles has an atribute of onlostpointercapture?", "context": "CREATE TABLE table_name_87 (bubbles VARCHAR, attribute VARCHAR)"}, {"answer": "SELECT cancelable FROM table_name_75 WHERE attribute = \"onpointerout\"", "question": "For the attribute of onpointerout, what is the cancelable?", "context": "CREATE TABLE table_name_75 (cancelable VARCHAR, attribute VARCHAR)"}, {"answer": "SELECT bubbles FROM table_name_58 WHERE cancelable = \"yes\" AND attribute = \"onpointerdown\"", "question": "Which bubble have a cancelable of yes and an attribute of onpointerdown?", "context": "CREATE TABLE table_name_58 (bubbles VARCHAR, cancelable VARCHAR, attribute VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_91 WHERE driver = \"ronnie bremer\" AND points > 18", "question": "What's the highest grid of Ronnie Bremer, who had more than 18 points?", "context": "CREATE TABLE table_name_91 (grid INTEGER, driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_71 WHERE laps = 70 AND grid > 16", "question": "What are the most points Lap 70 had with a grid larger than 16?", "context": "CREATE TABLE table_name_71 (points INTEGER, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT track FROM table_name_2 WHERE city = \"holland\"", "question": "What is the name of the track in Holland?", "context": "CREATE TABLE table_name_2 (track VARCHAR, city VARCHAR)"}, {"answer": "SELECT track FROM table_name_83 WHERE state = \"washington\"", "question": "What is the track in Washington state?", "context": "CREATE TABLE table_name_83 (track VARCHAR, state VARCHAR)"}, {"answer": "SELECT city FROM table_name_89 WHERE track = \"manzanita speedway\"", "question": "What is the city the track of manzanita speedway is in?", "context": "CREATE TABLE table_name_89 (city VARCHAR, track VARCHAR)"}, {"answer": "SELECT surface FROM table_name_2 WHERE track = \"indianapolis speedrome\"", "question": "What is the surface of the track at the indianapolis speedrome?", "context": "CREATE TABLE table_name_2 (surface VARCHAR, track VARCHAR)"}, {"answer": "SELECT surface FROM table_name_84 WHERE track = \"riverhead raceway\"", "question": "What is the surface for the riverhead raceway?", "context": "CREATE TABLE table_name_84 (surface VARCHAR, track VARCHAR)"}, {"answer": "SELECT city FROM table_name_21 WHERE track = \"indianapolis speedrome\"", "question": "What city is the indianapolis speedrome in?", "context": "CREATE TABLE table_name_21 (city VARCHAR, track VARCHAR)"}, {"answer": "SELECT iupac_name FROM table_name_44 WHERE common_name = \"chloroform\"", "question": "What is the IUPAC name for chloroform?", "context": "CREATE TABLE table_name_44 (iupac_name VARCHAR, common_name VARCHAR)"}, {"answer": "SELECT szdsz FROM table_name_8 WHERE mszp = \"25%\" AND date = \"25/2/2009\"", "question": "What is the SZDSZ percentage with an MSZP of 25% on 25/2/2009?", "context": "CREATE TABLE table_name_8 (szdsz VARCHAR, mszp VARCHAR, date VARCHAR)"}, {"answer": "SELECT others FROM table_name_10 WHERE szdsz = \"4%\" AND fidesz = \"60%\"", "question": "What percentage of others have an SZDSZ of 4% and a Fidesz of 60%?", "context": "CREATE TABLE table_name_10 (others VARCHAR, szdsz VARCHAR, fidesz VARCHAR)"}, {"answer": "SELECT others FROM table_name_93 WHERE fidesz = \"62%\" AND jobbik = \"4%\"", "question": "What is the percentage of others with a Fidesz of 62% and a Jobbik of 4%?", "context": "CREATE TABLE table_name_93 (others VARCHAR, fidesz VARCHAR, jobbik VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE others = \"5%\" AND szdsz = \"5%\"", "question": "On what date do others have 5% with an SZDSZ of 5%?", "context": "CREATE TABLE table_name_14 (date VARCHAR, others VARCHAR, szdsz VARCHAR)"}, {"answer": "SELECT szdsz FROM table_name_60 WHERE jobbik = \"5%\" AND fidesz = \"68%\"", "question": "What is the SZDSZ percentage with a Jobbik of 5% and a Fidesz of 68%?", "context": "CREATE TABLE table_name_60 (szdsz VARCHAR, jobbik VARCHAR, fidesz VARCHAR)"}, {"answer": "SELECT jobbik FROM table_name_41 WHERE fidesz = \"61%\" AND others = \"2%\"", "question": "What is the Jobbik percentage with a Fidesz of 61% and others of 2%?", "context": "CREATE TABLE table_name_41 (jobbik VARCHAR, fidesz VARCHAR, others VARCHAR)"}, {"answer": "SELECT turnout__percentage FROM table_name_11 WHERE ngilu = \"3,429\"", "question": "What's listed for the Turnout % with a Ngilu of 3,429?", "context": "CREATE TABLE table_name_11 (turnout__percentage VARCHAR, ngilu VARCHAR)"}, {"answer": "SELECT turnout__percentage FROM table_name_70 WHERE raila = \"519,180\"", "question": "What's listed for the Turnout % with a Raila of 519,180?", "context": "CREATE TABLE table_name_70 (turnout__percentage VARCHAR, raila VARCHAR)"}, {"answer": "SELECT turnout__percentage FROM table_name_32 WHERE ngilu = \"30,535\"", "question": "What's listed for the Turnout % with a Ngilu of 30,535?", "context": "CREATE TABLE table_name_32 (turnout__percentage VARCHAR, ngilu VARCHAR)"}, {"answer": "SELECT registered_voters FROM table_name_68 WHERE ngilu = \"3,429\"", "question": "What's listed for the Registered Voters with a Ngilu of 3,429?", "context": "CREATE TABLE table_name_68 (registered_voters VARCHAR, ngilu VARCHAR)"}, {"answer": "SELECT province FROM table_name_82 WHERE wamalwa = \"4,431\"", "question": "What is listed for the Province with a Wamalwa of 4,431?", "context": "CREATE TABLE table_name_82 (province VARCHAR, wamalwa VARCHAR)"}, {"answer": "SELECT wamalwa FROM table_name_32 WHERE turnout__percentage = \"55.9%\"", "question": "What's listed for the Wamalwa that has a Turnout % of 55.9%?", "context": "CREATE TABLE table_name_32 (wamalwa VARCHAR, turnout__percentage VARCHAR)"}, {"answer": "SELECT AVG(partial_failures) FROM table_name_87 WHERE rocket = \"ariane 5\"", "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(launches) FROM table_name_3 WHERE failures = 0 AND rocket = \"soyuz\" AND successes < 12", "question": "What are average launches with 0 failures, rocket of Soyuz, and less than 12 successes?", "context": "CREATE TABLE table_name_3 (launches INTEGER, successes VARCHAR, failures VARCHAR, rocket VARCHAR)"}, {"answer": "SELECT SUM(launches) FROM table_name_4 WHERE rocket = \"long march 3\" AND failures > 0", "question": "What is the sum of launches with Long March 3 and 0 failures?", "context": "CREATE TABLE table_name_4 (launches INTEGER, rocket VARCHAR, failures VARCHAR)"}, {"answer": "SELECT MIN(failures) FROM table_name_28 WHERE launches = 1 AND partial_failures < 0", "question": "What is the least amount of failures with 1 launch and 0 partial failures?", "context": "CREATE TABLE table_name_28 (failures INTEGER, launches VARCHAR, partial_failures VARCHAR)"}, {"answer": "SELECT AVG(launches) FROM table_name_63 WHERE rocket = \"ariane 5\" AND partial_failures < 0", "question": "What were the average launches for Ariane 5 and 0 partial failures?", "context": "CREATE TABLE table_name_63 (launches INTEGER, rocket VARCHAR, partial_failures VARCHAR)"}, {"answer": "SELECT race FROM table_name_15 WHERE group = \"na\" AND result = \"4th\"", "question": "What was the race of the jockey in na group in 4th place?", "context": "CREATE TABLE table_name_15 (race VARCHAR, group VARCHAR, result VARCHAR)"}, {"answer": "SELECT distance FROM table_name_67 WHERE jockey = \"p. carbery\" AND result = \"2nd\"", "question": "How far did p. carbery run to get 2nd?", "context": "CREATE TABLE table_name_67 (distance VARCHAR, jockey VARCHAR, result VARCHAR)"}, {"answer": "SELECT transmission FROM table_name_32 WHERE trim = \"xe (2009)\"", "question": "What is the Removal that has a Trim of xe (2009)?", "context": "CREATE TABLE table_name_32 (transmission VARCHAR, trim VARCHAR)"}, {"answer": "SELECT torque FROM table_name_18 WHERE power = \"hp (kw)\" AND trim = \"xr (2009)\"", "question": "What is the Torque that has a Power of hp (kw), and a Trim of xr (2009)? Question 6", "context": "CREATE TABLE table_name_18 (torque VARCHAR, power VARCHAR, trim VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_83 WHERE college_junior_club_team__league_ = \"oshawa generals (oha)\" AND player = \"bob kelly\"", "question": "Which Round is the lowest one that has a College/Junior/Club Team (League) of oshawa generals (oha), and a Player of bob kelly?", "context": "CREATE TABLE table_name_83 (round INTEGER, college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT surface FROM table_name_76 WHERE partner = \"remi tezuka\"", "question": "What surface was used when she played with Remi Tezuka?", "context": "CREATE TABLE table_name_76 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT results FROM table_name_94 WHERE record = \"28-12\"", "question": "What Results has the Record of 28-12?", "context": "CREATE TABLE table_name_94 (results VARCHAR, record VARCHAR)"}, {"answer": "SELECT results FROM table_name_36 WHERE seed = \"#12\" AND year < 1996", "question": "What Results has a Seed #12 and a Year that's smaller than 1996", "context": "CREATE TABLE table_name_36 (results VARCHAR, seed VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_23 WHERE record = \"18-12\"", "question": "What's the highest Year with the Record of 18-12?", "context": "CREATE TABLE table_name_23 (year INTEGER, record VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_11 WHERE region = \"southeast\"", "question": "What's the highest Year with the Region of Southeast?", "context": "CREATE TABLE table_name_11 (year INTEGER, region VARCHAR)"}, {"answer": "SELECT record FROM table_name_11 WHERE year > 2012", "question": "What Record has a Year that's larger than 2012?", "context": "CREATE TABLE table_name_11 (record VARCHAR, year INTEGER)"}, {"answer": "SELECT record FROM table_name_84 WHERE opponent = \"kansas city kings\"", "question": "What is the Laker's record when they played against Kansas City Kings?", "context": "CREATE TABLE table_name_84 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT pronunciation_a FROM table_name_83 WHERE word = \"\u50b3\"", "question": "Name the pronunciation for \u50b3", "context": "CREATE TABLE table_name_83 (pronunciation_a VARCHAR, word VARCHAR)"}, {"answer": "SELECT pronunciation_a FROM table_name_85 WHERE meaning_a = \"king\"", "question": "Name the pronunciation for meaning of king", "context": "CREATE TABLE table_name_85 (pronunciation_a VARCHAR, meaning_a VARCHAR)"}, {"answer": "SELECT word FROM table_name_55 WHERE pronunciation_b = \"*s\u0268ks\"", "question": "Name the word with pronunciation b of *s\u0268ks", "context": "CREATE TABLE table_name_55 (word VARCHAR, pronunciation_b VARCHAR)"}, {"answer": "SELECT pronunciation_b FROM table_name_64 WHERE meaning_b = \"border, frontier\"", "question": "Name the pronunciation for meaning b of border, frontier", "context": "CREATE TABLE table_name_64 (pronunciation_b VARCHAR, meaning_b VARCHAR)"}, {"answer": "SELECT pronunciation_b FROM table_name_56 WHERE meaning_a = \"grind\"", "question": "Name the pronunciation b for meaning of grind", "context": "CREATE TABLE table_name_56 (pronunciation_b VARCHAR, meaning_a VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_87 WHERE 2006 = \"2nd\"", "question": "What is the 2008 value that was 2nd in 2006?", "context": "CREATE TABLE table_name_87 (Id VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_8 WHERE 2010 = \"1st\"", "question": "What is the average total that is 1st in 2010?", "context": "CREATE TABLE table_name_8 (total INTEGER)"}, {"answer": "SELECT 2008 FROM table_name_94 WHERE 2010 = \"7\"", "question": "What is the 2008 value with a 7 in 2010?", "context": "CREATE TABLE table_name_94 (Id VARCHAR)"}, {"answer": "SELECT location FROM table_name_12 WHERE name = \"woodburn dragstrip\"", "question": "What is the Location for the woodburn dragstrip?", "context": "CREATE TABLE table_name_12 (location VARCHAR, name VARCHAR)"}, {"answer": "SELECT state FROM table_name_28 WHERE opened__closing_date_if_defunct_ = \"1960\"", "question": "What State has an Opened (closing date if defunct) that shows 1960?", "context": "CREATE TABLE table_name_28 (state VARCHAR, opened__closing_date_if_defunct_ VARCHAR)"}, {"answer": "SELECT location FROM table_name_70 WHERE name = \"route 66 raceway\"", "question": "What is the Location for the route 66 raceway?", "context": "CREATE TABLE table_name_70 (location VARCHAR, name VARCHAR)"}, {"answer": "SELECT location FROM table_name_6 WHERE name = \"newington international airport\"", "question": "What is the Location for the newington international airport?", "context": "CREATE TABLE table_name_6 (location VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_9 WHERE opened__closing_date_if_defunct_ = \"1995\" AND length = \"miles (m)\" AND state = \"illinois\"", "question": "What is the Name with an Opened (closing date if defunct) of 1995 and has a Length of miles (m), in Illinois?", "context": "CREATE TABLE table_name_9 (name VARCHAR, state VARCHAR, opened__closing_date_if_defunct_ VARCHAR, length VARCHAR)"}, {"answer": "SELECT score FROM table_name_45 WHERE opponents = \"amanda brown brenda remilton\"", "question": "What is the Score with an Opponent that is amanda brown brenda remilton?", "context": "CREATE TABLE table_name_45 (score VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE outcome = \"runner-up\" AND partner = \"elizabeth little\"", "question": "What is the Score with an Outcome of runner-up, and a Partner that is elizabeth little?", "context": "CREATE TABLE table_name_1 (score VARCHAR, outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT pitcher FROM table_name_88 WHERE date = \"june 8, 1961\"", "question": "Who was the pitcher on June 8, 1961?", "context": "CREATE TABLE table_name_88 (pitcher VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_54 WHERE inn = \"9th\"", "question": "What team had the record asscoiated with the 9th inning?", "context": "CREATE TABLE table_name_54 (team VARCHAR, inn VARCHAR)"}, {"answer": "SELECT venue FROM table_name_49 WHERE team = \"boston red sox\"", "question": "In what venue did the Boston Red Sox play in?", "context": "CREATE TABLE table_name_49 (venue VARCHAR, team VARCHAR)"}, {"answer": "SELECT pitcher FROM table_name_55 WHERE inn = \"7th\"", "question": "Who was the pitcher with the record recorded in the 7th inning?", "context": "CREATE TABLE table_name_55 (pitcher VARCHAR, inn VARCHAR)"}, {"answer": "SELECT result FROM table_name_8 WHERE incumbent = \"david e. finley\"", "question": "When David E. Finley was the incumbent what was the result?", "context": "CREATE TABLE table_name_8 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_name_53 WHERE first_elected = \"1898\"", "question": "When someone was first elected in 1898 what was the result?", "context": "CREATE TABLE table_name_53 (result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_name_86 WHERE incumbent = \"stanyarne wilson\"", "question": "What party has an incumbent of Stanyarne Wilson?", "context": "CREATE TABLE table_name_86 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_name_75 WHERE incumbent = \"william elliott\"", "question": "When the incumbent was William Elliott, what was the result?", "context": "CREATE TABLE table_name_75 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_84 WHERE score = \"2-1\" AND competition = \"pl\" AND date = \"december 22, 2006\"", "question": "Score of 2-1, and a Competition of pl, and a Date of december 22, 2006 had what opponents?", "context": "CREATE TABLE table_name_84 (opponents VARCHAR, date VARCHAR, score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE date = \"april 3, 2007\"", "question": "Date of april 3, 2007 had what score?", "context": "CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE competition = \"pl\" AND score = \"1-1\" AND opponents = \"kelantan\"", "question": "Competition of pl, and a Score of 1-1, and a Opponents of kelantan had what date?", "context": "CREATE TABLE table_name_5 (date VARCHAR, opponents VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_71 WHERE venue = \"klfa stadium, cheras\" AND score = \"3-3\"", "question": "Venue of klfa stadium, cheras, and a Score of 3-3 had what competition?", "context": "CREATE TABLE table_name_71 (competition VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE opponents = \"police\" AND venue = \"selayang municipal council stadium\"", "question": "Opponents of police, and a Venue of selayang municipal council stadium had what date?", "context": "CREATE TABLE table_name_35 (date VARCHAR, opponents VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_69 WHERE competition = \"fa cup rd 1\"", "question": "Competition of fa cup rd 1 had what venue?", "context": "CREATE TABLE table_name_69 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_24 WHERE date = \"january 27\"", "question": "Who was the visiting team on January 27?", "context": "CREATE TABLE table_name_24 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_43 WHERE date = \"february 25\"", "question": "What is the home team that played on February 25?", "context": "CREATE TABLE table_name_43 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE visitor = \"chicago\"", "question": "Name the date with chicago visiting", "context": "CREATE TABLE table_name_64 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT home FROM table_name_76 WHERE visitor = \"chicago\"", "question": "Name the home with chicago visiting", "context": "CREATE TABLE table_name_76 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT MAX(apps) FROM table_name_55 WHERE goals > 63 AND avge = 0.45", "question": "What is the highest number of apps of the player with more than 63 goals and an avge of 0.45?", "context": "CREATE TABLE table_name_55 (apps INTEGER, goals VARCHAR, avge VARCHAR)"}, {"answer": "SELECT COUNT(avge) FROM table_name_25 WHERE name = \"john hall\" AND goals < 63", "question": "What is the total avge of John Hall, who has less than 63 goals?", "context": "CREATE TABLE table_name_25 (avge VARCHAR, name VARCHAR, goals VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_87 WHERE score = \"278\" AND champion = \"kim thompson\"", "question": "When did Kim Thompson win with 278 score?", "context": "CREATE TABLE table_name_87 (year INTEGER, score VARCHAR, champion VARCHAR)"}, {"answer": "SELECT venue FROM table_name_26 WHERE champion = \"steve gotsche\"", "question": "Where did Steve Gotsche win?", "context": "CREATE TABLE table_name_26 (venue VARCHAR, champion VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_39 WHERE built < 2007 AND building = \"howard johnson hotel bucharest\"", "question": "What is the sum of Rank with a build year earlier than 2007 for the howard johnson hotel bucharest?", "context": "CREATE TABLE table_name_39 (rank INTEGER, built VARCHAR, building VARCHAR)"}, {"answer": "SELECT height__m_ft_ FROM table_name_47 WHERE city = \"bucharest\" AND built = 2009 AND rank = 13", "question": "What is the Height (m/ft) for bucharest Built in 2009, and a Rank of 13?", "context": "CREATE TABLE table_name_47 (height__m_ft_ VARCHAR, rank VARCHAR, city VARCHAR, built VARCHAR)"}, {"answer": "SELECT city FROM table_name_47 WHERE building = \"bucharest tower center (btc)\"", "question": "What city is the bucharest tower center (btc) located in?", "context": "CREATE TABLE table_name_47 (city VARCHAR, building VARCHAR)"}, {"answer": "SELECT building FROM table_name_90 WHERE city = \"bucharest\" AND rank < 12", "question": "What is the name of the building in Bucharest with a rank of less than 12?", "context": "CREATE TABLE table_name_90 (building VARCHAR, city VARCHAR, rank VARCHAR)"}, {"answer": "SELECT city FROM table_name_93 WHERE built = 1988", "question": "What city was the building built in 1988?", "context": "CREATE TABLE table_name_93 (city VARCHAR, built VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE home = \"boston bruins\" AND date = \"april 11\"", "question": "What is the score of the Boston Bruins game from April 11?", "context": "CREATE TABLE table_name_39 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_7 WHERE home = \"hartford whalers\" AND date = \"april 13\"", "question": "What is the record of the Hartford Whalers home team with the April 13 game date?", "context": "CREATE TABLE table_name_7 (record VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE visitor = \"hartford whalers\" AND date = \"april 11\"", "question": "What is the score of the visiting Hartford Whalers game from April 11?", "context": "CREATE TABLE table_name_8 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT passengers FROM table_name_65 WHERE carriers = \"air canada\"", "question": "Which Passengers have Carriers of air canada?", "context": "CREATE TABLE table_name_65 (passengers VARCHAR, carriers VARCHAR)"}, {"answer": "SELECT metropolitan_area FROM table_name_94 WHERE airport = \"toronto pearson international airport\"", "question": "Which Metropolitan area has an Airport of toronto pearson international airport?", "context": "CREATE TABLE table_name_94 (metropolitan_area VARCHAR, airport VARCHAR)"}, {"answer": "SELECT link FROM table_name_64 WHERE date_of_polling = \"january 31 \u2013 february 3, 2011\"", "question": "What is the link for january 31 \u2013 february 3, 2011?", "context": "CREATE TABLE table_name_64 (link VARCHAR, date_of_polling VARCHAR)"}, {"answer": "SELECT date_of_polling FROM table_name_2 WHERE polling_firm = \"forum research\" AND green = 7 AND liberal < 30", "question": "On what date of polling was the Polling Firm forum research with 7 green and less than 30 liberals?", "context": "CREATE TABLE table_name_2 (date_of_polling VARCHAR, liberal VARCHAR, polling_firm VARCHAR, green VARCHAR)"}, {"answer": "SELECT polling_firm FROM table_name_96 WHERE link = \"html\" AND liberal < 36 AND green < 8 AND date_of_polling = \"september 26\u201328, 2011\"", "question": "Which september 26\u201328, 2011 polling firm had a Link of html, less than 36 liberals,  and less than 8 green?", "context": "CREATE TABLE table_name_96 (polling_firm VARCHAR, date_of_polling VARCHAR, green VARCHAR, link VARCHAR, liberal VARCHAR)"}, {"answer": "SELECT polling_firm FROM table_name_89 WHERE green < 13 AND date_of_polling = \"june 21\u201322, 2011\"", "question": "What june 21\u201322, 2011 polling has green smaller than 13?", "context": "CREATE TABLE table_name_89 (polling_firm VARCHAR, green VARCHAR, date_of_polling VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_83 WHERE floors = 31", "question": "What is listed under the Years as tallest, that has Floors of 31?", "context": "CREATE TABLE table_name_83 (years_as_tallest VARCHAR, floors VARCHAR)"}, {"answer": "SELECT MIN(floors) FROM table_name_29 WHERE feet > 262 AND name = \"standard bank building\" AND metres > 138.8", "question": "What's the lowest Floors with Feet that's larger htan 262, has a Name of Standard Bank Building, and Metres that's larger htan 138.8?", "context": "CREATE TABLE table_name_29 (floors INTEGER, metres VARCHAR, feet VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(metres) FROM table_name_51 WHERE feet < 196", "question": "What is the sum of Metres wiht a Feet that's smaller than 196?", "context": "CREATE TABLE table_name_51 (metres VARCHAR, feet INTEGER)"}, {"answer": "SELECT MAX(weight__kg_) FROM table_name_24 WHERE position = \"scrum half\"", "question": "What is the highest weight of the position scrum half?", "context": "CREATE TABLE table_name_24 (weight__kg_ INTEGER, position VARCHAR)"}, {"answer": "SELECT power FROM table_name_15 WHERE torque = \"n\u00b7m (lb\u00b7ft) at1,500rpm\"", "question": "What is the power of the engine with a torque of n\u00b7m (lb\u00b7ft) at1,500rpm?", "context": "CREATE TABLE table_name_15 (power VARCHAR, torque VARCHAR)"}, {"answer": "SELECT torque FROM table_name_86 WHERE engine = \"1.3 16v multijet\"", "question": "Which torque value is associated with the 1.3 16V multijet engine?", "context": "CREATE TABLE table_name_86 (torque VARCHAR, engine VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_17 WHERE drawn < 2 AND points = 10 AND lost < 4", "question": "What is the lowest against value with less than 2 draws, 10 points, and less than 4 lost?", "context": "CREATE TABLE table_name_17 (against INTEGER, lost VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_76 WHERE against < 11", "question": "What is the average position with an against value less than 11?", "context": "CREATE TABLE table_name_76 (position INTEGER, against INTEGER)"}, {"answer": "SELECT MAX(lost) FROM table_name_89 WHERE position > 10", "question": "What is the largest value for lost with a position greater than 10?", "context": "CREATE TABLE table_name_89 (lost INTEGER, position INTEGER)"}, {"answer": "SELECT COUNT(against) FROM table_name_4 WHERE team = \"corinthians\" AND lost < 3", "question": "What is the total of all against values for the Corinthians with less than 3 lost?", "context": "CREATE TABLE table_name_4 (against VARCHAR, team VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_29 WHERE points < 9 AND lost > 6", "question": "What is the lowest against value with less than 9 points and more than 6 lost?", "context": "CREATE TABLE table_name_29 (against INTEGER, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_83 WHERE date = \"nov 5\" AND location = \"mississippi\"", "question": "What tournament located is mississippi was nov 5", "context": "CREATE TABLE table_name_83 (tournament VARCHAR, date VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(1 AS st_prize___) AS $__ FROM table_name_19 WHERE date = \"may 21\"", "question": "what is the 1st prize for may 21", "context": "CREATE TABLE table_name_19 (date VARCHAR)"}, {"answer": "SELECT director FROM table_name_41 WHERE producer = \"hiroshi sato\" AND platform_s_ = \"gba\"", "question": "Who is the director of the game with HIroshi Sato as the producer on the GBA platform?", "context": "CREATE TABLE table_name_41 (director VARCHAR, producer VARCHAR, platform_s_ VARCHAR)"}, {"answer": "SELECT director FROM table_name_93 WHERE title = \"last window: the secret of cape west 3\"", "question": "Who is the director of Last Window: The Secret of Cape West 3?", "context": "CREATE TABLE table_name_93 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_5 WHERE year = 2010 AND director = \"shuichiro nishiya\"", "question": "What is the platform of the 2010 game with Shuichiro Nishiya as director?", "context": "CREATE TABLE table_name_5 (platform_s_ VARCHAR, year VARCHAR, director VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_66 WHERE october = 29", "question": "Which Opponent is on October of 29?", "context": "CREATE TABLE table_name_66 (opponent VARCHAR, october VARCHAR)"}, {"answer": "SELECT MIN(october) FROM table_name_50 WHERE record = \"1\u20130\u20130\"", "question": "WHich October has a Record of 1\u20130\u20130?", "context": "CREATE TABLE table_name_50 (october INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_42 WHERE october > 20 AND score = \"2\u20132\"", "question": "Which Opponent has a October larger than 20 with a Score of 2\u20132?", "context": "CREATE TABLE table_name_42 (opponent VARCHAR, october VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_34 WHERE score = 269", "question": "What year was the score 269?", "context": "CREATE TABLE table_name_34 (year VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_96 WHERE class = \"250cc\" AND wins < 0", "question": "What is the average number of points for a team in the 250cc class with fewer than 0 wins?", "context": "CREATE TABLE table_name_96 (points INTEGER, class VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_15 WHERE year = 1981", "question": "What is the smallest number of points for a 1981 team?", "context": "CREATE TABLE table_name_15 (points INTEGER, year VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_75 WHERE points < 32 AND class = \"350cc\" AND rank = \"8th\"", "question": "What is the fewest number of wins for a team ranked 8th with fewer than 32 points in the 350cc class?", "context": "CREATE TABLE table_name_75 (wins INTEGER, rank VARCHAR, points VARCHAR, class VARCHAR)"}, {"answer": "SELECT rank FROM table_name_51 WHERE class = \"250cc\" AND year = 1983", "question": "What was the rank of the 1983 team in the 250cc class?", "context": "CREATE TABLE table_name_51 (rank VARCHAR, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT district FROM table_name_61 WHERE incumbent = \"joseph t. johnson\"", "question": "Which district has joseph t. johnson as an incumbent?", "context": "CREATE TABLE table_name_61 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_name_40 WHERE first_elected = \"1904\" AND incumbent = \"james o'h. patterson\"", "question": "What was the result for james o'h. patterson when first elected in 1904?", "context": "CREATE TABLE table_name_40 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_name_2 WHERE result = \"re-elected\" AND district = \"south carolina 5\"", "question": "Which party was re-elected in south carolina 5 district?", "context": "CREATE TABLE table_name_2 (party VARCHAR, result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_name_86 WHERE incumbent = \"joseph t. johnson\"", "question": "Which party was joseph t. johnson in?", "context": "CREATE TABLE table_name_86 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_name_19 WHERE first_elected = \"1898\"", "question": "Which party was first elected in 1898?", "context": "CREATE TABLE table_name_19 (party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT AVG(earnings___) AS $__ FROM table_name_49 WHERE player = \"greg norman\"", "question": "What is the average earnings made by Greg Norman?", "context": "CREATE TABLE table_name_49 (earnings___ INTEGER, player VARCHAR)"}, {"answer": "SELECT city FROM table_name_42 WHERE type_of_game = \"friendly\" AND opponent = \"tunisia\"", "question": "what city has a game of friendly and an opponent of tunisia?", "context": "CREATE TABLE table_name_42 (city VARCHAR, type_of_game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_78 WHERE opponent = \"spain\"", "question": "what are the results of the opponent of spain?", "context": "CREATE TABLE table_name_78 (results\u00b9 VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_49 WHERE date = \"december 19\"", "question": "what results are dated december 19?", "context": "CREATE TABLE table_name_49 (results\u00b9 VARCHAR, date VARCHAR)"}, {"answer": "SELECT city FROM table_name_41 WHERE results\u00b9 = \"4:2\"", "question": "what city has the results of 4:2?", "context": "CREATE TABLE table_name_41 (city VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT type_of_game FROM table_name_78 WHERE results\u00b9 = \"1:0\"", "question": "what type of game has the resuts of 1:0?", "context": "CREATE TABLE table_name_78 (type_of_game VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_52 WHERE years = \"1965\u20131981\" AND ranking > 4", "question": "What is the average Games for 1965\u20131981, and a Ranking larger than 4?", "context": "CREATE TABLE table_name_52 (games INTEGER, years VARCHAR, ranking VARCHAR)"}, {"answer": "SELECT years FROM table_name_93 WHERE games = 550", "question": "What is the Years when games shows 550?", "context": "CREATE TABLE table_name_93 (years VARCHAR, games VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_57 WHERE ranking = 4", "question": "What is the Nationality that shows 4 as the ranking?", "context": "CREATE TABLE table_name_57 (nationality VARCHAR, ranking VARCHAR)"}, {"answer": "SELECT location FROM table_name_68 WHERE copies_per_particle = \"0\" AND protein = \"nsp3\"", "question": "Which location has a copies per particle of 0 and a protein of nsp3?", "context": "CREATE TABLE table_name_68 (location VARCHAR, copies_per_particle VARCHAR, protein VARCHAR)"}, {"answer": "SELECT copies_per_particle FROM table_name_46 WHERE protein = \"nsp2\"", "question": "How many copies per particle does the protein nsp2 have?", "context": "CREATE TABLE table_name_46 (copies_per_particle VARCHAR, protein VARCHAR)"}, {"answer": "SELECT MAX(rna_segment__gene_) FROM table_name_20 WHERE protein = \"vp2\" AND size___s_base_pair__ > 2690", "question": "What is the highest RNA segment having a protein of vp2 and a base pair size over 2690?", "context": "CREATE TABLE table_name_20 (rna_segment__gene_ INTEGER, protein VARCHAR, size___s_base_pair__ VARCHAR)"}, {"answer": "SELECT copies_per_particle FROM table_name_88 WHERE location = \"nonstructural\" AND rna_segment__gene_ > 5 AND size___s_base_pair__ < 751", "question": "What is the number of copies per particle having a nonstructural location, an RNA segment over 5 and a base pair size under 751?", "context": "CREATE TABLE table_name_88 (copies_per_particle VARCHAR, size___s_base_pair__ VARCHAR, location VARCHAR, rna_segment__gene_ VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_90 WHERE location = \"hiroshima\"", "question": "Who won the bronze medal in Hiroshima?", "context": "CREATE TABLE table_name_90 (bronze VARCHAR, location VARCHAR)"}, {"answer": "SELECT silver FROM table_name_5 WHERE bronze = \"hong chia-yuh\"", "question": "Who won the silver medal in the games where Hong Chia-yuh took home bronze?", "context": "CREATE TABLE table_name_5 (silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT location FROM table_name_29 WHERE bronze = \"michael eric bibat\"", "question": "Where did Michael Eric Bibat win bronze?", "context": "CREATE TABLE table_name_29 (location VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT gold FROM table_name_76 WHERE silver = \"pan cheng-tsung\"", "question": "Who won gold in the games where Pan Cheng-Tsung won silver?", "context": "CREATE TABLE table_name_76 (gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_22 WHERE silver = 0 AND gold = 0 AND nation = \"denmark\" AND total > 1", "question": "How many Bronzes that has a Silver of 0, and a Gold of 0, and a Nation of denmark, and a Total larger than 1?", "context": "CREATE TABLE table_name_22 (bronze INTEGER, total VARCHAR, nation VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_75 WHERE nation = \"italy\"", "question": "How many Bronzes that has a Nation of italy?", "context": "CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_70 WHERE gold < 1 AND rank = \"9\" AND total < 1", "question": "How many Silvers that has a Gold smaller than 1, and a Rank of 9, and a Total smaller than 1?", "context": "CREATE TABLE table_name_70 (silver INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_99 WHERE nation = \"spain\"", "question": "Which Bronze has a Nation of spain?", "context": "CREATE TABLE table_name_99 (bronze INTEGER, nation VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_20 WHERE venue = \"jeonju\"", "question": "Who was the opponent at the competition held at Jeonju?", "context": "CREATE TABLE table_name_20 (opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(january) FROM table_name_14 WHERE record = \"22-15-6\"", "question": "How many Januarys had records of 22-15-6?", "context": "CREATE TABLE table_name_14 (january VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE event_circuit = \"barbagallo raceway\"", "question": "what is the date of barbagallo raceway?", "context": "CREATE TABLE table_name_69 (date VARCHAR, event_circuit VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_79 WHERE event_circuit = \"hidden valley raceway\"", "question": "What city is the hidden valley raceway in?", "context": "CREATE TABLE table_name_79 (city___state VARCHAR, event_circuit VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE game__number = 81", "question": "What was the score in game 81?", "context": "CREATE TABLE table_name_60 (score VARCHAR, game__number VARCHAR)"}, {"answer": "SELECT record FROM table_name_27 WHERE game__number = 79", "question": "What was the record after game 79?", "context": "CREATE TABLE table_name_27 (record VARCHAR, game__number VARCHAR)"}, {"answer": "SELECT home FROM table_name_91 WHERE date = \"april 15\"", "question": "Who was the home team on April 15?", "context": "CREATE TABLE table_name_91 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT hanyu_pinyin FROM table_name_53 WHERE hanzi = \"\u4f9d\u5170\u53bf\"", "question": "What is the Pinyin for \u4f9d\u5170\u53bf?", "context": "CREATE TABLE table_name_53 (hanyu_pinyin VARCHAR, hanzi VARCHAR)"}, {"answer": "SELECT hanyu_pinyin FROM table_name_65 WHERE density___km\u00b2_ = \"77\"", "question": "What is the Pinyin for the item that has a density of 77?", "context": "CREATE TABLE table_name_65 (hanyu_pinyin VARCHAR, density___km\u00b2_ VARCHAR)"}, {"answer": "SELECT population__2010_11_01_ FROM table_name_30 WHERE hanzi = \"\u5ef6\u5bff\u53bf\"", "question": "What is the population for the area that has a Hanzi of \u5ef6\u5bff\u53bf?", "context": "CREATE TABLE table_name_30 (population__2010_11_01_ VARCHAR, hanzi VARCHAR)"}, {"answer": "SELECT population__2010_11_01_ FROM table_name_50 WHERE name = \"bayan county\"", "question": "What is the population as of 11-01-2010 for Bayan County?", "context": "CREATE TABLE table_name_50 (population__2010_11_01_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT hanzi FROM table_name_4 WHERE hanyu_pinyin = \"p\u00edngf\u00e1ng q\u016b\"", "question": "What is the Hanzi for p\u00edngf\u00e1ng q\u016b?", "context": "CREATE TABLE table_name_4 (hanzi VARCHAR, hanyu_pinyin VARCHAR)"}, {"answer": "SELECT slalom FROM table_name_32 WHERE overall = \"25\" AND season = 2009", "question": "Which Slalom has an overall of 25 in the 2009 season?", "context": "CREATE TABLE table_name_32 (slalom VARCHAR, overall VARCHAR, season VARCHAR)"}, {"answer": "SELECT combined FROM table_name_80 WHERE overall = \"8\"", "question": "Which combined score has an overall of 8?", "context": "CREATE TABLE table_name_80 (combined VARCHAR, overall VARCHAR)"}, {"answer": "SELECT super_g FROM table_name_50 WHERE overall = \"missed season due to injury\"", "question": "Which Super Ghas a missed season due to injury?", "context": "CREATE TABLE table_name_50 (super_g VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(events) FROM table_name_92 WHERE cuts_made > 6 AND top_25 > 30", "question": "Name the most events with cuts made more than 6 and top 25 more than 30", "context": "CREATE TABLE table_name_92 (events INTEGER, cuts_made VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT top_10 FROM table_name_53 WHERE top_5 < 1", "question": "Name the top-10 with top-5 less than 1", "context": "CREATE TABLE table_name_53 (top_10 VARCHAR, top_5 INTEGER)"}, {"answer": "SELECT AVG(top_25) FROM table_name_31 WHERE events < 0", "question": "Name the averae top 25 with events less than 0", "context": "CREATE TABLE table_name_31 (top_25 INTEGER, events INTEGER)"}, {"answer": "SELECT COUNT(top_10) FROM table_name_75 WHERE top_25 < 2 AND top_5 > 0", "question": "Name the total number of top 10 with top 25 less than 2 and top 5 more than 0", "context": "CREATE TABLE table_name_75 (top_10 VARCHAR, top_25 VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT year FROM table_name_22 WHERE gauge = \"2 ft 6 in\"", "question": "In what Year is the Gauge 2 ft 6 in?", "context": "CREATE TABLE table_name_22 (year VARCHAR, gauge VARCHAR)"}, {"answer": "SELECT year FROM table_name_80 WHERE works_no = \"2040-2049\"", "question": "In what Year is the Works No. 2040-2049?", "context": "CREATE TABLE table_name_80 (year VARCHAR, works_no VARCHAR)"}, {"answer": "SELECT year FROM table_name_86 WHERE works_no = \"2040-2049\"", "question": "In what Year is the Works no. 2040-2049?", "context": "CREATE TABLE table_name_86 (year VARCHAR, works_no VARCHAR)"}, {"answer": "SELECT gauge FROM table_name_9 WHERE builder = \"beyer, peacock\"", "question": "What is the Gauge of Builder Beyer, Peacock?", "context": "CREATE TABLE table_name_9 (gauge VARCHAR, builder VARCHAR)"}, {"answer": "SELECT round FROM table_name_18 WHERE record = \"5-0\"", "question": "Which round has the record of 5-0?", "context": "CREATE TABLE table_name_18 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_4 WHERE record = \"11-1\"", "question": "Which method has the record of 11-1?", "context": "CREATE TABLE table_name_4 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_98 WHERE event = \"ufc 44\"", "question": "The UFC 44 event has what method?", "context": "CREATE TABLE table_name_98 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_43 WHERE record = \"12-1\"", "question": "Which event has 12-1 as a record?", "context": "CREATE TABLE table_name_43 (event VARCHAR, record VARCHAR)"}, {"answer": "SELECT round FROM table_name_22 WHERE res = \"loss\" AND record = \"12-3\"", "question": "What round was a loss with a record of 12-3?", "context": "CREATE TABLE table_name_22 (round VARCHAR, res VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_35 WHERE record = \"11-1\"", "question": "The record of 11-1 used what method?", "context": "CREATE TABLE table_name_35 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT surface FROM table_name_82 WHERE date = \"november 6, 1982\"", "question": "What surface was the match on November 6, 1982 played on?", "context": "CREATE TABLE table_name_82 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(placing) FROM table_name_26 WHERE team = \"russia\"", "question": "What place did russia finish in?", "context": "CREATE TABLE table_name_26 (placing VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(wchmp) FROM table_name_35 WHERE race > 42 AND pole > 11", "question": "What's the WChmp of the race greater than 42 and pole greater than 11?", "context": "CREATE TABLE table_name_35 (wchmp VARCHAR, race VARCHAR, pole VARCHAR)"}, {"answer": "SELECT MIN(wchmp) FROM table_name_49 WHERE podiums = 26", "question": "If podiums are 26, what's the lowest WChmp?", "context": "CREATE TABLE table_name_49 (wchmp INTEGER, podiums VARCHAR)"}, {"answer": "SELECT COUNT(podiums) FROM table_name_93 WHERE class = \"total\"", "question": "If the class is total, what is the total number of podiums?", "context": "CREATE TABLE table_name_93 (podiums VARCHAR, class VARCHAR)"}, {"answer": "SELECT MAX(podiums) FROM table_name_78 WHERE race = 14", "question": "During race 14, what's the podiums?", "context": "CREATE TABLE table_name_78 (podiums INTEGER, race VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_95 WHERE city_of_license = \"higgston, ga\"", "question": "What Call sign has a City of license of higgston, ga?", "context": "CREATE TABLE table_name_95 (call_sign VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_67 WHERE erp_w = \"2,000\"", "question": "What City of license has a ERP W of 2,000?", "context": "CREATE TABLE table_name_67 (city_of_license VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT class FROM table_name_84 WHERE city_of_license = \"lake oconee, ga\"", "question": "What is the Class where City of license is lake oconee, ga?", "context": "CREATE TABLE table_name_84 (class VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_3 WHERE year = 2012", "question": "What chassis has 2012 as the year?", "context": "CREATE TABLE table_name_3 (chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_19 WHERE start < 7 AND finish = 23", "question": "What engine has a start less than 7, and 23 as a finish?", "context": "CREATE TABLE table_name_19 (engine VARCHAR, start VARCHAR, finish VARCHAR)"}, {"answer": "SELECT AVG(finish) FROM table_name_35 WHERE start > 3 AND engine = \"honda\" AND year = 2011", "question": "What is the average finish that has a start greater than 3, with honda as the engine, and 2011 as the year?", "context": "CREATE TABLE table_name_35 (finish INTEGER, year VARCHAR, start VARCHAR, engine VARCHAR)"}, {"answer": "SELECT SUM(start) FROM table_name_35 WHERE year < 2012 AND team = \"team penske\" AND finish > 27", "question": "How many starts have a year prior to 2012, and team penske as the team, with a finish greater than 27?", "context": "CREATE TABLE table_name_35 (start INTEGER, finish VARCHAR, year VARCHAR, team VARCHAR)"}, {"answer": "SELECT start FROM table_name_17 WHERE year > 2010 AND team = \"chip ganassi racing\"", "question": "What start has a year later than 2010, and chip ganassi racing as the team?", "context": "CREATE TABLE table_name_17 (start VARCHAR, year VARCHAR, team VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_84 WHERE competition = \"football league trophy\"", "question": "Who was the opponent at the Football League Trophy competition?", "context": "CREATE TABLE table_name_84 (opponents VARCHAR, competition VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_8 WHERE venue = \"home\" AND competition = \"league play offs\"", "question": "What was the opponent at the League Play Offs at home?", "context": "CREATE TABLE table_name_8 (opponents VARCHAR, venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_32 WHERE opponents = \"queens park rangers\"", "question": "What venue held that game against the Queens Park Rangers?", "context": "CREATE TABLE table_name_32 (venue VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_67 WHERE venue = \"away\" AND score = \"5-4\"", "question": "Who was the opponent at the away game with a score of 5-4?", "context": "CREATE TABLE table_name_67 (opponents VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_91 WHERE competition = \"league cup\" AND score = \"3-1\"", "question": "Who was the opponent at the League Cup competition with a score of 3-1?", "context": "CREATE TABLE table_name_91 (opponents VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT team_classification FROM table_name_92 WHERE stage = \"20\"", "question": "Name the team classification for stage of 20", "context": "CREATE TABLE table_name_92 (team_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_name_5 WHERE mountains_classification = \"franco pellizotti\" AND combativity_award = \"martijn maaskant\"", "question": "Name the winner with mountains classification of franco pellizotti and combativity award of martijn maaskant", "context": "CREATE TABLE table_name_5 (winner VARCHAR, mountains_classification VARCHAR, combativity_award VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_97 WHERE young_rider_classification = \"roman kreuziger\" AND points_classification = \"fabian cancellara\"", "question": "Name the general classification with roman kreuziger and points classification of fabian cancellara", "context": "CREATE TABLE table_name_97 (general_classification VARCHAR, young_rider_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT combativity_award FROM table_name_13 WHERE winner = \"luis le\u00f3n s\u00e1nchez\"", "question": "Name the combativity award with winner of luis le\u00f3n s\u00e1nchez", "context": "CREATE TABLE table_name_13 (combativity_award VARCHAR, winner VARCHAR)"}, {"answer": "SELECT SUM(18 AS _49) FROM table_name_51 WHERE air_date = \"june 25, 2009\" AND order > 29", "question": "What is the sum of numbers listed in 18-49 for the episode that aired on June 25, 2009 with an order larger than 29?", "context": "CREATE TABLE table_name_51 (air_date VARCHAR, order VARCHAR)"}, {"answer": "SELECT COUNT(18 AS _49) FROM table_name_1 WHERE air_date = \"july 2, 2009\" AND viewers > 3.5", "question": "What is the total 18-49 for the episode that aired on July 2, 2009 with more than 3.5 viewers?", "context": "CREATE TABLE table_name_1 (air_date VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT AVG(18 AS _49) FROM table_name_44 WHERE viewers < 3.5 AND order > 35", "question": "What is the average 18-49 for the episode that had an order number higher than 35 and less than 3.5 viewers?", "context": "CREATE TABLE table_name_44 (viewers VARCHAR, order VARCHAR)"}, {"answer": "SELECT episode FROM table_name_45 WHERE air_date = \"july 23, 2009\" AND viewers > 3.31", "question": "What is the episode name that aired on July 23, 2009 with more than 3.31 viewers?", "context": "CREATE TABLE table_name_45 (episode VARCHAR, air_date VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_19 WHERE copies_sold = \"1,695,900+\" AND oricon_position > 1", "question": "What year sold 1,695,900+ copies with an Oricon position larger than 1?", "context": "CREATE TABLE table_name_19 (year INTEGER, copies_sold VARCHAR, oricon_position VARCHAR)"}, {"answer": "SELECT copies_sold FROM table_name_85 WHERE oricon_position > 1 AND year = 1988", "question": "How many copies were sold where the position is lager than 1 in 1988?", "context": "CREATE TABLE table_name_85 (copies_sold VARCHAR, oricon_position VARCHAR, year VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_2 WHERE date = \"may 29, 1977\"", "question": "What was the Winning Score on May 29, 1977?", "context": "CREATE TABLE table_name_2 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE runner_s__up = \"patty sheehan\"", "question": "On what Date was Patty Sheehan Runner(s)-up?", "context": "CREATE TABLE table_name_62 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE runner_s__up = \"judy rankin\"", "question": "On what Date was Judy Rankin Runner(s)-up?", "context": "CREATE TABLE table_name_64 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE winning_score = \u20138(69 - 72 - 70 - 69 = 280)", "question": "On what Date was the Winning score \u20138 (69-72-70-69=280)?", "context": "CREATE TABLE table_name_95 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE margin_of_victory = \"1 stroke\" AND runner_s__up = \"carole charbonnier\"", "question": "On what Date was Carole Charbonnier a Runner(s)-up with a 1 stroke Margin of victory?", "context": "CREATE TABLE table_name_6 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE home = \"toronto\"", "question": "What date did the team play home in Toronto?", "context": "CREATE TABLE table_name_64 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_6 WHERE visitor = \"cleveland\" AND leading_scorer = \"larry hughes(33)\"", "question": "How many people attended the game when Larry Hughes(33) was the leading scorer and cleveland was visiting?", "context": "CREATE TABLE table_name_6 (attendance INTEGER, visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE home = \"utah\"", "question": "When did they play Utah at home?", "context": "CREATE TABLE table_name_38 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_4 WHERE stadium = \"balboa stadium\"", "question": "What opponent has balboa stadium as the opponent?", "context": "CREATE TABLE table_name_4 (opponent VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_83 WHERE opponent = \"oakland raiders\" AND week > 9", "question": "What is the highest attendance that has oakland raiders as the opponent, with a week greater than 9?", "context": "CREATE TABLE table_name_83 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT headquarters FROM table_name_42 WHERE primary_industry = \"conglomerate\"", "question": "Where is the headquarter of the conglomerate industry?", "context": "CREATE TABLE table_name_42 (headquarters VARCHAR, primary_industry VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE venue = \"hrazdan stadium, yerevan, armenia\"", "question": "What date was the game played at the venue of Hrazdan Stadium, Yerevan, Armenia?", "context": "CREATE TABLE table_name_70 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_81 WHERE location = \"busan\"", "question": "Who was the bronze medal when the Asian Games were held in Busan?", "context": "CREATE TABLE table_name_81 (bronze VARCHAR, location VARCHAR)"}, {"answer": "SELECT gold FROM table_name_97 WHERE bronze = \"kim hyang-mi\"", "question": "Who won the gold when Kim Hyang-Mi won the bronze?", "context": "CREATE TABLE table_name_97 (gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_16 WHERE gold = \"park jung-ah\"", "question": "What was the earliest year that Park Jung-Ah won the gold?", "context": "CREATE TABLE table_name_16 (year INTEGER, gold VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_70 WHERE location = \"doha\"", "question": "Who won the bronze when the Asian Games were in Doha?", "context": "CREATE TABLE table_name_70 (bronze VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_56 WHERE date = \"november 29, 1953\"", "question": "What was the Attendance on November 29, 1953?", "context": "CREATE TABLE table_name_56 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_name_30 WHERE player = \"patrick collins\"", "question": "Which NFL team picked Patrick Collins?", "context": "CREATE TABLE table_name_30 (nfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_name_19 WHERE position = \"wide receiver\"", "question": "Which NFL team picked a player for the Wide Receiver position?", "context": "CREATE TABLE table_name_19 (nfl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT result FROM table_name_35 WHERE year > 2002", "question": "What result has a year after 2002?", "context": "CREATE TABLE table_name_35 (result VARCHAR, year INTEGER)"}, {"answer": "SELECT tournament FROM table_name_26 WHERE year < 2001", "question": "What tournament has a year prior to 2001?", "context": "CREATE TABLE table_name_26 (tournament VARCHAR, year INTEGER)"}, {"answer": "SELECT date FROM table_name_34 WHERE points > 47 AND visitor = \"minnesota\"", "question": "On what date does visiting team Minnesota score higher than 47 points?", "context": "CREATE TABLE table_name_34 (date VARCHAR, points VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE visitor = \"toronto\" AND points < 49 AND record = \"18-17-7\"", "question": "What date does visitor team Toronto score less than 49 points and has record of 18-17-7?", "context": "CREATE TABLE table_name_73 (date VARCHAR, record VARCHAR, visitor VARCHAR, points VARCHAR)"}, {"answer": "SELECT fleet_number FROM table_name_95 WHERE model = \"gillig phantom 3096tb\"", "question": "What is the fleet number for the model of Gillig Phantom 3096TB?", "context": "CREATE TABLE table_name_95 (fleet_number VARCHAR, model VARCHAR)"}, {"answer": "SELECT width FROM table_name_38 WHERE year = \"1970\"", "question": "What is the width for the year of the 1970?", "context": "CREATE TABLE table_name_38 (width VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_22 WHERE fleet_number = \"603\"", "question": "Which year has a fleet number of 603?", "context": "CREATE TABLE table_name_22 (year VARCHAR, fleet_number VARCHAR)"}, {"answer": "SELECT length FROM table_name_62 WHERE fleet_number = \"501-506\"", "question": "What is the length of fleet number 501-506?", "context": "CREATE TABLE table_name_62 (length VARCHAR, fleet_number VARCHAR)"}, {"answer": "SELECT fleet_number FROM table_name_62 WHERE year = \"19xx\"", "question": "What is fleet number for the year of 19xx?", "context": "CREATE TABLE table_name_62 (fleet_number VARCHAR, year VARCHAR)"}, {"answer": "SELECT fleet_number FROM table_name_23 WHERE model = \"orion 01.507\"", "question": "What is the fleet number of Model Orion 01.507?", "context": "CREATE TABLE table_name_23 (fleet_number VARCHAR, model VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_78 WHERE pick < 261 AND position = \"halfback\" AND player = \"ed smith\"", "question": "What is the highest round of Ed Smith, who had a pick higher than 261 and played halfback?", "context": "CREATE TABLE table_name_78 (round INTEGER, player VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_29 WHERE player = \"ed smith\" AND pick > 19", "question": "What is the lowest round of Ed Smith, who had a pick lower than 19?", "context": "CREATE TABLE table_name_29 (round INTEGER, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_4 WHERE round = 27", "question": "Which player had a round of 27?", "context": "CREATE TABLE table_name_4 (player VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_17 WHERE round < 20 AND school_club_team = \"washington\"", "question": "What is the position of the player with a round less than 20 from the school/club Washington?", "context": "CREATE TABLE table_name_17 (position VARCHAR, round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_43 WHERE location = \"hemisfair arena\"", "question": "Location of hemisfair arena had what record?", "context": "CREATE TABLE table_name_43 (record VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_44 WHERE record = \"20\u20134\"", "question": "Record of 20\u20134 involved what highest game?", "context": "CREATE TABLE table_name_44 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_52 WHERE opponent = \"@ phoenix suns\"", "question": "Opponent of @ phoenix suns had what sum of game?", "context": "CREATE TABLE table_name_52 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_68 WHERE score = \"122\u2013105\"", "question": "Score of 122\u2013105 had what record?", "context": "CREATE TABLE table_name_68 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_9 WHERE partner = \"simon aspelin\"", "question": "In the final, who are the opponents of partner Simon Aspelin?", "context": "CREATE TABLE table_name_9 (opponents_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT surface FROM table_name_35 WHERE date = \"26 february 2006\"", "question": "For the tournament played on 26 February 2006, what surface was used?", "context": "CREATE TABLE table_name_35 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE record = \"58\u201310\"", "question": "Which Date has a Record of 58\u201310?", "context": "CREATE TABLE table_name_78 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE score = \"106\u2013112\"", "question": "Which Date has a Score of 106\u2013112?", "context": "CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT second FROM table_name_86 WHERE skip = \"martynas norkus\"", "question": "Who was second when Martynas Norkus was the skip?", "context": "CREATE TABLE table_name_86 (second VARCHAR, skip VARCHAR)"}, {"answer": "SELECT second FROM table_name_2 WHERE lead = \"ilian kirilov\"", "question": "Who was the second when Ilian Kirilov was the lead?", "context": "CREATE TABLE table_name_2 (second VARCHAR, lead VARCHAR)"}, {"answer": "SELECT lead FROM table_name_11 WHERE skip = \"jamie meikle\"", "question": "Who was the lead when Jamie Meikle was the skip?", "context": "CREATE TABLE table_name_11 (lead VARCHAR, skip VARCHAR)"}, {"answer": "SELECT lead FROM table_name_10 WHERE skip = \"ritvars gulbis\"", "question": "Who was the lead when Ritvars Gulbis was the skip?", "context": "CREATE TABLE table_name_10 (lead VARCHAR, skip VARCHAR)"}, {"answer": "SELECT third FROM table_name_60 WHERE nation = \"england\"", "question": "Who came in third in England?", "context": "CREATE TABLE table_name_60 (third VARCHAR, nation VARCHAR)"}, {"answer": "SELECT nation FROM table_name_19 WHERE third = \"darko sovran\"", "question": "In what nation did Darko Sovran place third?", "context": "CREATE TABLE table_name_19 (nation VARCHAR, third VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_62 WHERE score = \"w/o\" AND date = \"november 5, 2007\"", "question": "What is the tournament with a w/o score on November 5, 2007?", "context": "CREATE TABLE table_name_62 (tournament VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_94 WHERE tournament = \"eckental\" AND score = \"w/o\"", "question": "What is the surface of eckental tournament with a w/o score?", "context": "CREATE TABLE table_name_94 (surface VARCHAR, tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_64 WHERE surface = \"hard\" AND opponent = \"ruben de kleijn\"", "question": "What is the tournament with a hard surface and Ruben de Kleijn as the opponent?", "context": "CREATE TABLE table_name_64 (tournament VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_90 WHERE surface = \"carpet\" AND date = \"november 5, 2007\"", "question": "What is the score of the tournament on November 5, 2007 with a carpet surface?", "context": "CREATE TABLE table_name_90 (score VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_37 WHERE opponent = \"sascha kloer\"", "question": "What is the surface of the tournament with Sascha Kloer as the opponent?", "context": "CREATE TABLE table_name_37 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT team FROM table_name_10 WHERE location = \"gomel\"", "question": "what team scored in gomel", "context": "CREATE TABLE table_name_10 (team VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(conceded) FROM table_name_68 WHERE position > 8 AND wins > 2", "question": "What is the average conceded number of the team with a position lower than 8 and more than 2 wins?", "context": "CREATE TABLE table_name_68 (conceded INTEGER, position VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(scored) FROM table_name_30 WHERE draws < 6 AND team = \"guaran\u00ed\" AND losses < 5", "question": "What is the averaged scored number of team guaran\u00ed, which has less than 6 draws and less than 5 losses?", "context": "CREATE TABLE table_name_30 (scored INTEGER, losses VARCHAR, draws VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(scored) FROM table_name_72 WHERE position > 10", "question": "What is the total number scored of the team positioned lower than 10?", "context": "CREATE TABLE table_name_72 (scored VARCHAR, position INTEGER)"}, {"answer": "SELECT MIN(wins) FROM table_name_32 WHERE scored < 24 AND conceded = 27 AND played > 18", "question": "What is the lowest number of wins of the team with less than 24 scored, 27 conceded, and more than 18 played?", "context": "CREATE TABLE table_name_32 (wins INTEGER, played VARCHAR, scored VARCHAR, conceded VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_73 WHERE losses = 2 AND position > 1", "question": "What is the lowest number of points of the team with 2 losses and a lower than 1 position?", "context": "CREATE TABLE table_name_73 (points INTEGER, losses VARCHAR, position VARCHAR)"}, {"answer": "SELECT intercontinental_cup_1993 FROM table_name_23 WHERE supercopa_sudamericana_1993 = \"round of 16\"", "question": "What is the Intercontinental Cup 1993 result for a Supercopa Sudamericana 1993 result of round of 16?", "context": "CREATE TABLE table_name_23 (intercontinental_cup_1993 VARCHAR, supercopa_sudamericana_1993 VARCHAR)"}, {"answer": "SELECT MIN(november) FROM table_name_69 WHERE game > 22 AND opponent = \"toronto maple leafs\"", "question": "What is the earliest game in November with more than 22 Games and Toronto Maple Leafs as the Opponent?", "context": "CREATE TABLE table_name_69 (november INTEGER, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT family_friendly FROM table_name_8 WHERE decade = \"1970s\" AND genre = \"punk\"", "question": "What is the family friendly status of the punk genre song from the 1970s?", "context": "CREATE TABLE table_name_8 (family_friendly VARCHAR, decade VARCHAR, genre VARCHAR)"}, {"answer": "SELECT artist FROM table_name_7 WHERE genre = \"rock\"", "question": "Who is the artist of the rock song?", "context": "CREATE TABLE table_name_7 (artist VARCHAR, genre VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_46 WHERE gold < 0", "question": "What is the highest number of bronze medals for nations with under 0 golds?", "context": "CREATE TABLE table_name_46 (bronze INTEGER, gold INTEGER)"}, {"answer": "SELECT MIN(points) FROM table_name_53 WHERE player = \"stuart\" AND extra_points < 0", "question": "How many points did Stuart have when he had 0 extra points?", "context": "CREATE TABLE table_name_53 (points INTEGER, player VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT MIN(field_goals) FROM table_name_68 WHERE points = 10 AND touchdowns > 2", "question": "Who had the lowest field goals but had 10 points and more than 2 touchdowns?", "context": "CREATE TABLE table_name_68 (field_goals INTEGER, points VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_80 WHERE player = \"stuart\" AND touchdowns < 1", "question": "How many points did Stuart have when he had less than 1 touchdown?", "context": "CREATE TABLE table_name_80 (points INTEGER, player VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_33 WHERE extra_points = 0 AND field_goals > 0", "question": "Who had a points average with 0 extra points and 0 field goals?", "context": "CREATE TABLE table_name_33 (points INTEGER, extra_points VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT result FROM table_name_38 WHERE event = \"golden reel awards\"", "question": "What was the result in the Golden Reel Awards?", "context": "CREATE TABLE table_name_38 (result VARCHAR, event VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_32 WHERE record = \"16\u201329\"", "question": "Record of 16\u201329 is how many attendance?", "context": "CREATE TABLE table_name_32 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE loss = \"peavy (4\u20133)\"", "question": "Loss of peavy (4\u20133) is what score?", "context": "CREATE TABLE table_name_5 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_21 WHERE score = \"3\u20132\" AND opponent = \"reds\"", "question": "Score of 3\u20132, and a Opponent of reds had what sum of attendance?", "context": "CREATE TABLE table_name_21 (attendance INTEGER, score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_96 WHERE score = \"6\u20134\" AND opponent = \"@ marlins\"", "question": "Score of 6\u20134, and a Opponent of @ marlins had what record?", "context": "CREATE TABLE table_name_96 (record VARCHAR, score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_25 WHERE tournament = \"totals\" AND wins < 11", "question": "Which Cuts made has a Tournament of totals, and Wins smaller than 11?", "context": "CREATE TABLE table_name_25 (cuts_made INTEGER, tournament VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(top_25) FROM table_name_3 WHERE top_5 < 0", "question": "Which Top-25 has a Top-5 smaller than 0?", "context": "CREATE TABLE table_name_3 (top_25 INTEGER, top_5 INTEGER)"}, {"answer": "SELECT SUM(top_25) FROM table_name_71 WHERE top_5 > 9 AND wins < 11", "question": "Which Top-25 has a Top-5 larger than 9, and Wins smaller than 11?", "context": "CREATE TABLE table_name_71 (top_25 INTEGER, top_5 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_name_47 WHERE wins = 0 AND events > 6", "question": "Which Top-5 is the highest one that has Wins of 0, and Events larger than 6?", "context": "CREATE TABLE table_name_47 (top_5 INTEGER, wins VARCHAR, events VARCHAR)"}, {"answer": "SELECT MIN(top_5) FROM table_name_88 WHERE cuts_made = 10 AND events > 10", "question": "Which Top-5 is the lowest one that has Cuts made of 10, and Events larger than 10?", "context": "CREATE TABLE table_name_88 (top_5 INTEGER, cuts_made VARCHAR, events VARCHAR)"}, {"answer": "SELECT MAX(events) FROM table_name_39 WHERE top_10 > 7 AND wins < 2", "question": "Which Events is the highest one that has a Top-10 larger than 7, and Wins smaller than 2?", "context": "CREATE TABLE table_name_39 (events INTEGER, top_10 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE surface = \"clay\" AND tournament = \"barcelona\"", "question": "When the surface is clay, and the tournament of barcelona what is the score?", "context": "CREATE TABLE table_name_29 (score VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_51 WHERE outcome = \"winner\" AND opponent = \"judith wiesner\"", "question": "What was the surface when the opponent was judith wiesner, and the outcome was winner?", "context": "CREATE TABLE table_name_51 (surface VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_22 WHERE tournament = \"rio de janeiro\"", "question": "What is the opponent for the tournament of rio de janeiro?", "context": "CREATE TABLE table_name_22 (opponent VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE outcome = \"runner-up\" AND date = \"19 september 1994\"", "question": "What is the opponent with the outcome of runner-up with a date of 19 september 1994?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE tournament = \"taranto\"", "question": "What was the opponent for the tournament of taranto?", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_45 WHERE race_winner = \"joan lascorz\"", "question": "Who had the fastest lap where Joan Lascorz was the winner?", "context": "CREATE TABLE table_name_45 (fastest_lap VARCHAR, race_winner VARCHAR)"}, {"answer": "SELECT race_winner FROM table_name_1 WHERE round = \"europe\"", "question": "Who won the round in Europe?", "context": "CREATE TABLE table_name_1 (race_winner VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_16 WHERE score = \"3\u20130\" AND january > 12", "question": "How many games have a Score of 3\u20130, and a January larger than 12?", "context": "CREATE TABLE table_name_16 (game VARCHAR, score VARCHAR, january VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_77 WHERE january > 8 AND game < 48 AND score = \"5\u20133\"", "question": "Which Opponent has a January larger than 8, and a Game smaller than 48, and a Score of 5\u20133?", "context": "CREATE TABLE table_name_77 (opponent VARCHAR, score VARCHAR, january VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_51 WHERE january = 28", "question": "Which Game is the highest that has a January of 28?", "context": "CREATE TABLE table_name_51 (game INTEGER, january VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE game > 47 AND january < 25", "question": "Which Score has a Game larger than 47, and a January smaller than 25?", "context": "CREATE TABLE table_name_19 (score VARCHAR, game VARCHAR, january VARCHAR)"}, {"answer": "SELECT stroke FROM table_name_39 WHERE max_power = \"109 ps(80kw)@4000 rpm\"", "question": "What stroke has a max power of 109 ps(80kw)@4000 rpm?", "context": "CREATE TABLE table_name_39 (stroke VARCHAR, max_power VARCHAR)"}, {"answer": "SELECT cr FROM table_name_60 WHERE vehicle = \"nissan primera p12 nissan almera n16\"", "question": "The nissan primera p12 nissan almera n16 has what C.R.?", "context": "CREATE TABLE table_name_60 (cr VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_22 WHERE code = \"yd22ddt\"", "question": "What displacement has the code yd22ddt?", "context": "CREATE TABLE table_name_22 (displacement VARCHAR, code VARCHAR)"}, {"answer": "SELECT code FROM table_name_97 WHERE cr = \"16.7:1\"", "question": "What code has a C.R of 16.7:1?", "context": "CREATE TABLE table_name_97 (code VARCHAR, cr VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_61 WHERE date = \"20 november 2011\"", "question": "What Outcome happened on a Date that was 20 november 2011?", "context": "CREATE TABLE table_name_61 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_4 WHERE score = \"0\u20133\"", "question": "Which Away team has a Score of 0\u20133?", "context": "CREATE TABLE table_name_4 (away_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_63 WHERE tie_no = \"5\"", "question": "Which Attendance has a Tie number of 5?", "context": "CREATE TABLE table_name_63 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE attendance = \"23 january 1999\" AND tie_no = \"6\"", "question": "Which Score has an Attendance of 23 january 1999, and a Tie # of 6?", "context": "CREATE TABLE table_name_74 (score VARCHAR, attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_16 WHERE attendance = \"54,591\"", "question": "Which Tie #has an Attendance of 54,591?", "context": "CREATE TABLE table_name_16 (tie_no VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_68 WHERE score = \"1\u20131\" AND away_team = \"tottenham hotspur\"", "question": "Which Home team has a Score of 1\u20131, and an Away team of tottenham hotspur?", "context": "CREATE TABLE table_name_68 (home_team VARCHAR, score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_25 WHERE tie_no = \"15\"", "question": "Which Attendance has a Tie # of 15?", "context": "CREATE TABLE table_name_25 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_80 WHERE position = \"11th\"", "question": "In what Year was the Position 11th?", "context": "CREATE TABLE table_name_80 (year VARCHAR, position VARCHAR)"}, {"answer": "SELECT competition FROM table_name_46 WHERE venue = \"rome, italy\"", "question": "What was the name of the Competition in Rome, Italy?", "context": "CREATE TABLE table_name_46 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT notes FROM table_name_64 WHERE year > 1983 AND position = \"18th\"", "question": "What Notes after 1983 have a Position of 18th?", "context": "CREATE TABLE table_name_64 (notes VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_92 WHERE year > 1983 AND venue = \"seoul, south korea\"", "question": "After 1983, what was the Position in Seoul, South Korea?", "context": "CREATE TABLE table_name_92 (position VARCHAR, year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_57 WHERE rank = \"1\" AND total < 2", "question": "How many Gold medals for the country with a Rank of 1 and less than 2 Total medals?", "context": "CREATE TABLE table_name_57 (gold VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_11 WHERE silver = 2 AND bronze > 2", "question": "How many Gold medals does the country with 2 Silver and more than 2 Bronze have?", "context": "CREATE TABLE table_name_11 (gold VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT age_as_of_1_february_2014 FROM table_name_18 WHERE name = \"dorothy peel\"", "question": "What is the Age of dorothy Peel as of 1 February 2014 ?", "context": "CREATE TABLE table_name_18 (age_as_of_1_february_2014 VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_86 WHERE age_as_of_1_february_2014 = \"111years, 358days\"", "question": "Who is 111years, 358days Age as of 1 February 2014?", "context": "CREATE TABLE table_name_86 (name VARCHAR, age_as_of_1_february_2014 VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_85 WHERE city = \"london\" AND stadium = \"queen's club\"", "question": "Which Capacity has a City of london, and a Stadium of queen's club?", "context": "CREATE TABLE table_name_85 (capacity INTEGER, city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_38 WHERE name = \"thomas morgenstern\" AND points > 368.9", "question": "Which Rank has a Name of thomas morgenstern, and Points larger than 368.9?", "context": "CREATE TABLE table_name_38 (rank INTEGER, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_64 WHERE bronze > 1 AND gold > 8 AND silver < 10", "question": "What is the lowest total for bronzes over 1, golds over 8, and fewer than 10 silvers?", "context": "CREATE TABLE table_name_64 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_88 WHERE rank > 7", "question": "What is the highest number of silvers for ranks over 7?", "context": "CREATE TABLE table_name_88 (silver INTEGER, rank INTEGER)"}, {"answer": "SELECT opponent FROM table_name_51 WHERE record = \"64-78\"", "question": "Who was the opponent when the record recorded was 64-78?", "context": "CREATE TABLE table_name_51 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE record = \"67-82\"", "question": "When the record was 67-82, what was the final score recorded?", "context": "CREATE TABLE table_name_55 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_38 WHERE attendance = \"54,136\"", "question": "Who was the opponent for the game played with 54,136 people in attendance?", "context": "CREATE TABLE table_name_38 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT position FROM table_name_19 WHERE player = \"bert coan\"", "question": "Which position does bert coan play?", "context": "CREATE TABLE table_name_19 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_13 WHERE round = 1", "question": "What is round 1's position?", "context": "CREATE TABLE table_name_13 (position VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_14 WHERE position = \"running back\"", "question": "Which Round is the highest one that has a Position of running back?", "context": "CREATE TABLE table_name_14 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_85 WHERE pick < 29 AND school_club_team = \"arizona\"", "question": "Which Position has a Pick smaller than 29, and a School/Club Team of arizona?", "context": "CREATE TABLE table_name_85 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_87 WHERE school_club_team = \"alabama\" AND pick > 43", "question": "Which Round is the lowest one that has a School/Club Team of alabama, and a Pick larger than 43?", "context": "CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT venue FROM table_name_94 WHERE team = \"belshina\"", "question": "what is the venue of belshina", "context": "CREATE TABLE table_name_94 (venue VARCHAR, team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_23 WHERE team = \"neman\"", "question": "what is the venue of neman", "context": "CREATE TABLE table_name_23 (venue VARCHAR, team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_47 WHERE team = \"neman\"", "question": "what is the venue of neman", "context": "CREATE TABLE table_name_47 (venue VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_46 WHERE round < 6 AND overall = 102", "question": "Name the total number of pick with round less than 6 and overall of 102", "context": "CREATE TABLE table_name_46 (pick__number VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_30 WHERE score = \"4\u20136 3\u20136\"", "question": "Which Outcome has a Score of 4\u20136 3\u20136?", "context": "CREATE TABLE table_name_30 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_43 WHERE score = \"3\u20136 6\u20134 4\u20136\"", "question": "Which Tournament has a Score of 3\u20136 6\u20134 4\u20136?", "context": "CREATE TABLE table_name_43 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE score = \"6\u20131 7\u20136 (8\u20136)\"", "question": "Which Date has a Score of 6\u20131 7\u20136 (8\u20136)?", "context": "CREATE TABLE table_name_11 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE date = \"26 september 2004\"", "question": "Which Score has a Date of 26 september 2004?", "context": "CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_90 WHERE score = \"3\u20136 2\u20136\"", "question": "Which Outcome has a Score of 3\u20136 2\u20136?", "context": "CREATE TABLE table_name_90 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_5 WHERE opponent_in_the_final = \"daniella dominikovic\"", "question": "Which Surface has an Opponent in the final of daniella dominikovic?", "context": "CREATE TABLE table_name_5 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(time_to_ft__m__at_40) AS \u00b0__seconds_ FROM table_name_80 WHERE shell__lb_ = 16 AND max_height__ft_ < 22 OFFSET 000", "question": "What is the amount of time (sum) at 40\u00b0 that it takes a 16 lb shell to reach a maximum of no more than 22,000 ft?", "context": "CREATE TABLE table_name_80 (time_to_ft__m__at_40 VARCHAR, shell__lb_ VARCHAR, max_height__ft_ VARCHAR)"}, {"answer": "SELECT AVG(max_height__ft_) FROM table_name_19 WHERE time_to_ft__m__at_55\u00b0__seconds_ > 16.3 AND m_v_ft_s = 2200", "question": "What is the average maximum height of a shell that travels for more than 16.3 seconds at 55\u00b0 and has a maximum velocity of 2200 ft/s?", "context": "CREATE TABLE table_name_19 (max_height__ft_ INTEGER, time_to_ft__m__at_55\u00b0__seconds_ VARCHAR, m_v_ft_s VARCHAR)"}, {"answer": "SELECT MAX(time_to_ft__m__at_55) AS \u00b0__seconds_ FROM table_name_47 WHERE time_to_ft__m__at_40\u00b0__seconds_ < 9.6", "question": "What is the maximum amount of time a shell travels at 55\u00b0 when it traveled less than 9.6 seconds at 40\u00b0?", "context": "CREATE TABLE table_name_47 (time_to_ft__m__at_55 INTEGER, time_to_ft__m__at_40\u00b0__seconds_ INTEGER)"}, {"answer": "SELECT shell__lb_ FROM table_name_6 WHERE time_to_ft__m__at_40\u00b0__seconds_ = 12.6", "question": "What is the weight of the shell that reached its maximum height at 40\u00b0 in 12.6 seconds?", "context": "CREATE TABLE table_name_6 (shell__lb_ VARCHAR, time_to_ft__m__at_40\u00b0__seconds_ VARCHAR)"}, {"answer": "SELECT AVG(max_height__ft_) FROM table_name_24 WHERE time_to_ft__m__at_25\u00b0__seconds_ = \"10.1\" AND shell__lb_ < 12.5", "question": "What is the average maximum height of the shell smaller than 12.5 lb that reached its maximum height at 25\u00b0 in 10.1 seconds?", "context": "CREATE TABLE table_name_24 (max_height__ft_ INTEGER, time_to_ft__m__at_25\u00b0__seconds_ VARCHAR, shell__lb_ VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_74 WHERE date = \"october 22, 1967\" AND week < 6", "question": "What is the highest attendance for the game that was before week 6 on October 22, 1967?", "context": "CREATE TABLE table_name_74 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT state FROM table_name_63 WHERE talent = \"classical piano\" AND hometown = \"lancaster, ny\"", "question": "What is the state having a contestant with a talent of classical piano and a hometown from Lancaster, NY?", "context": "CREATE TABLE table_name_63 (state VARCHAR, talent VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT name FROM table_name_56 WHERE talent = \"ballet en pointe\"", "question": "Whose talent was ballet en pointe?", "context": "CREATE TABLE table_name_56 (name VARCHAR, talent VARCHAR)"}, {"answer": "SELECT state FROM table_name_43 WHERE hometown = \"mesa, az\"", "question": "What is the state represented by the contestant from Mesa, AZ?", "context": "CREATE TABLE table_name_43 (state VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT talent FROM table_name_82 WHERE hometown = \"lexington, sc\"", "question": "What is the talent of the contestant from Lexington, SC?", "context": "CREATE TABLE table_name_82 (talent VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT age_1 FROM table_name_55 WHERE hometown = \"reno, nv\"", "question": "What is the age of the contestant from Reno, NV?", "context": "CREATE TABLE table_name_55 (age_1 VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_name_29 WHERE episode = \"18-09 (652)\"", "question": "Which writer wrote episode 18-09 (652)?", "context": "CREATE TABLE table_name_29 (writer_s_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT episode FROM table_name_97 WHERE writer_s_ = \"jonathan lewis\"", "question": "What episode was written by jonathan lewis?", "context": "CREATE TABLE table_name_97 (episode VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_81 WHERE school_club_team = \"maryland\" AND round = 3", "question": "What position does Maryland have a player for Round 3?", "context": "CREATE TABLE table_name_81 (position VARCHAR, school_club_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_23 WHERE position = \"defensive back\" AND round > 11", "question": "How many picks are there for defensive back for rounds larger than 11?", "context": "CREATE TABLE table_name_23 (pick VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_64 WHERE date = \"april 21\"", "question": "What is the highest game that has april 21 as the date?", "context": "CREATE TABLE table_name_64 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE game < 4 AND date = \"april 19\"", "question": "What score has a game less than 4, and april 19 as the date?", "context": "CREATE TABLE table_name_2 (score VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_4 WHERE game < 6 AND date = \"april 17\"", "question": "What opponent has a game less than 6, and april 17 as the date?", "context": "CREATE TABLE table_name_4 (opponent VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_18 WHERE away_team = \"derby county\"", "question": "What is the home team that played Derby County as the away team?", "context": "CREATE TABLE table_name_18 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_87 WHERE tie_no = \"7\"", "question": "Which home team is ranked no. 7 by tie no.?", "context": "CREATE TABLE table_name_87 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE home_team = \"manchester united\"", "question": "What is the score for the game in which Manchester United was the home team?", "context": "CREATE TABLE table_name_85 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_62 WHERE bronze < 5 AND silver > 1 AND rank > 8", "question": "How many golds does the nation having a rank of 8, fewer than 5 bronzes and more than 1 silver have?", "context": "CREATE TABLE table_name_62 (gold VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT country FROM table_name_99 WHERE language_s_ = \"english\" AND literary_tradition = \"canadian literature\"", "question": "What nation was the film from that was in english and had a Literary tradition of canadian literature?", "context": "CREATE TABLE table_name_99 (country VARCHAR, language_s_ VARCHAR, literary_tradition VARCHAR)"}, {"answer": "SELECT literary_tradition FROM table_name_74 WHERE language_s_ = \"english\" AND year = 2011", "question": "What is the literary traidtion for the film in english in 2011?", "context": "CREATE TABLE table_name_74 (literary_tradition VARCHAR, language_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT country FROM table_name_10 WHERE year > 2011", "question": "What country was the film made in that was made after 2011?", "context": "CREATE TABLE table_name_10 (country VARCHAR, year INTEGER)"}, {"answer": "SELECT team FROM table_name_62 WHERE rebounds = 48", "question": "Which team has 48 rebounds?", "context": "CREATE TABLE table_name_62 (team VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_1 WHERE games = 12 AND rebounds < 48", "question": "What's the lowest amount of 12 games and less than 48 rebounds?", "context": "CREATE TABLE table_name_1 (rank INTEGER, games VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT SUM(rebounds) FROM table_name_21 WHERE name = \"fedor likholitov\" AND rank > 8", "question": "How many rebounds does Fedor likholitov have with a rank greater than 8?", "context": "CREATE TABLE table_name_21 (rebounds INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_76 WHERE rank > 3 AND rebounds = 112", "question": "Which game has more than 112 rebounds and a rank greater than 3?", "context": "CREATE TABLE table_name_76 (games INTEGER, rank VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE place = \"t5\" AND nation = \"united states\"", "question": "What was the score in a place of t5 in the United States?", "context": "CREATE TABLE table_name_25 (score VARCHAR, place VARCHAR, nation VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE player = \"sophie gustafson\"", "question": "What was the score for a match where Sophie Gustafson played?", "context": "CREATE TABLE table_name_44 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(rebounds) FROM table_name_12 WHERE games > 22", "question": "with games more than 22 what is the rebound total?", "context": "CREATE TABLE table_name_12 (rebounds INTEGER, games INTEGER)"}, {"answer": "SELECT location FROM table_name_81 WHERE tournament = \"b.c. open\"", "question": "What is the location of the b.c. open?", "context": "CREATE TABLE table_name_81 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT location FROM table_name_83 WHERE score = \"269 (\u201319)\" AND tournament = \"tallahassee open\"", "question": "What is the location of the tallahassee open, with a Score of 269 (\u201319)?", "context": "CREATE TABLE table_name_83 (location VARCHAR, score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE winner = \"lanny wadkins (6)\"", "question": "What date did Lanny Wadkins (6) win?", "context": "CREATE TABLE table_name_12 (date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT location FROM table_name_40 WHERE tournament = \"buick-goodwrench open\"", "question": "What is the Location for the buick-goodwrench open?", "context": "CREATE TABLE table_name_40 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT netflix FROM table_name_98 WHERE series_ep = \"6-02\"", "question": "What is the Netflix episode that has a series episode of 6-02?", "context": "CREATE TABLE table_name_98 (netflix VARCHAR, series_ep VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_80 WHERE segment_d = \"wigs\"", "question": "Which segment A item that has a Segment D of wigs?", "context": "CREATE TABLE table_name_80 (segment_a VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT series_ep FROM table_name_55 WHERE netflix = \"s03e16\"", "question": "Which series episode has a Netflix episode of S03E16?", "context": "CREATE TABLE table_name_55 (series_ep VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT netflix FROM table_name_92 WHERE episode < 69 AND segment_d = \"s trombone\"", "question": "Which Netflix episode has an overall episode number under 69 and a Segment D of S Trombone?", "context": "CREATE TABLE table_name_92 (netflix VARCHAR, episode VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT species_specific FROM table_name_29 WHERE comparative = \"no\" AND intra_molecular_structure = \"no\" AND link = \"sourcecode\"", "question": "Which Species Specific has a Comparative of no, and an Intra-molecular structure of no, and a Link of sourcecode?", "context": "CREATE TABLE table_name_29 (species_specific VARCHAR, link VARCHAR, comparative VARCHAR, intra_molecular_structure VARCHAR)"}, {"answer": "SELECT intra_molecular_structure FROM table_name_76 WHERE comparative = \"no\" AND name = \"mitarget\"", "question": "Which Intra-molecular structure has a Comparative of no, and a Name of mitarget?", "context": "CREATE TABLE table_name_76 (intra_molecular_structure VARCHAR, comparative VARCHAR, name VARCHAR)"}, {"answer": "SELECT comparative FROM table_name_71 WHERE name = \"pictar\"", "question": "Which Comparative has a Name of pictar?", "context": "CREATE TABLE table_name_71 (comparative VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE intra_molecular_structure = \"no\" AND link = \"webserver\" AND comparative = \"no\"", "question": "Which Name has an Intra-molecular structure of no, and a Link of webserver, and a Comparative of no?", "context": "CREATE TABLE table_name_63 (name VARCHAR, comparative VARCHAR, intra_molecular_structure VARCHAR, link VARCHAR)"}, {"answer": "SELECT comparative FROM table_name_43 WHERE link = \"sourcecode webserver\"", "question": "Which Comparative has a Link of sourcecode webserver?", "context": "CREATE TABLE table_name_43 (comparative VARCHAR, link VARCHAR)"}, {"answer": "SELECT species_specific FROM table_name_53 WHERE link = \"server/sourcecode\"", "question": "Which Species Specific has a Link of server/sourcecode?", "context": "CREATE TABLE table_name_53 (species_specific VARCHAR, link VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_45 WHERE home__2nd_leg_ = \"instituto\"", "question": "What is the 1st leg for Instituto?", "context": "CREATE TABLE table_name_45 (home__2nd_leg_ VARCHAR)"}, {"answer": "SELECT home__2nd_leg_ FROM table_name_87 WHERE aggregate = \"3-4\"", "question": "What is the home of aggregate's 3-4?", "context": "CREATE TABLE table_name_87 (home__2nd_leg_ VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT round FROM table_name_74 WHERE opponent = \"sofia bagherdai\"", "question": "What round did the fight against Sofia Bagherdai go to?", "context": "CREATE TABLE table_name_74 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_4 WHERE event = \"mars: attack 1\"", "question": "What was the method of fight completion for the Mars: Attack 1 event?", "context": "CREATE TABLE table_name_4 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT country FROM table_name_88 WHERE score = 70 - 71 - 68 - 72 = 281", "question": "what had a score of 70-71-68-72=281?", "context": "CREATE TABLE table_name_88 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE player = \"roberto devicenzo\"", "question": "what had a score like roberto devicenzo", "context": "CREATE TABLE table_name_97 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_98 WHERE week = 11", "question": "What was the total number who attended during week 11?", "context": "CREATE TABLE table_name_98 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_33 WHERE result = \"l 31-21\"", "question": "What was the total number of weeks with a result of l 31-21?", "context": "CREATE TABLE table_name_33 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_24 WHERE 2012 = \"1\u20134\"", "question": "Which 2003 has a 2012 of 1\u20134?", "context": "CREATE TABLE table_name_24 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_90 WHERE 2008 = \"0 / 4\"", "question": "Which 2007 has a 2008 of 0 / 4?", "context": "CREATE TABLE table_name_90 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_7 WHERE 2003 = \"2r\" AND 2004 = \"1r\"", "question": "Which 2007 has a 2003 of 2r, and a 2004 of 1r?", "context": "CREATE TABLE table_name_7 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_86 WHERE 2009 = \"0 / 4\"", "question": "Which 2010 has a 2009 of 0 / 4?", "context": "CREATE TABLE table_name_86 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_96 WHERE 1999 = \"a\" AND 2004 = \"2r\" AND career_sr = \"0 / 10\"", "question": "Which 2011 has a 1999 of A, and a 2004 of 2r, and a Career SR of 0 / 10?", "context": "CREATE TABLE table_name_96 (career_sr VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_37 WHERE 1999 = \"0\u20130\"", "question": "Which 2005 has a 1999 of 0\u20130?", "context": "CREATE TABLE table_name_37 (Id VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE week = 7", "question": "what is the date of week 7", "context": "CREATE TABLE table_name_92 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_96 WHERE record = \"39-20-6\"", "question": "Who was the visitor in the game that led to a 39-20-6 record?", "context": "CREATE TABLE table_name_96 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE record = \"48-21-6\"", "question": "What was the date of the game that led to a 48-21-6 record?", "context": "CREATE TABLE table_name_33 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_50 WHERE date = \"june 11\"", "question": "Name the average attendance from june 11", "context": "CREATE TABLE table_name_50 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_29 WHERE country = \"south africa\"", "question": "What is south africa's margin of victory?", "context": "CREATE TABLE table_name_29 (margin_of_victory VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE year > 1980 AND margin_of_victory = \"2 strokes\" AND country = \"united states\" AND player = \"jim furyk\"", "question": "Which Score has a Year larger than 1980, and a Margin of victory of 2 strokes, and a Country of united states, and a Player of jim furyk?", "context": "CREATE TABLE table_name_68 (score VARCHAR, player VARCHAR, country VARCHAR, year VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT founded FROM table_name_95 WHERE suburb = \"beaudesert\"", "question": "What year was the Beaudesert suburb club founded", "context": "CREATE TABLE table_name_95 (founded VARCHAR, suburb VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_name_96 WHERE suburb = \"nerang\"", "question": "What year did the Nerang Suburb get founded?", "context": "CREATE TABLE table_name_96 (founded VARCHAR, suburb VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_77 WHERE date = \"april 28\"", "question": "Who was the opponent when the Phillies played on April 28?", "context": "CREATE TABLE table_name_77 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(run_rate) FROM table_name_61 WHERE rank = 4", "question": "What is the run rate for rank 4?", "context": "CREATE TABLE table_name_61 (run_rate INTEGER, rank VARCHAR)"}, {"answer": "SELECT released FROM table_name_44 WHERE chinese_title = \"\u53cd\u6b63 \u5353\u6587\u8431\"", "question": "Chinese title of \u53cd\u6b63 \u5353\u6587\u8431 had what released?", "context": "CREATE TABLE table_name_44 (released VARCHAR, chinese_title VARCHAR)"}, {"answer": "SELECT chinese_title FROM table_name_94 WHERE album_number = \"5th\"", "question": "Album # of 5th is what chinese title?", "context": "CREATE TABLE table_name_94 (chinese_title VARCHAR, album_number VARCHAR)"}, {"answer": "SELECT released FROM table_name_6 WHERE album_number = \"1st\"", "question": "Album # of 1st was released on what date?", "context": "CREATE TABLE table_name_6 (released VARCHAR, album_number VARCHAR)"}, {"answer": "SELECT chinese_title FROM table_name_57 WHERE album_number = \"3rd\"", "question": "Album # of 3rd is what chinese title?", "context": "CREATE TABLE table_name_57 (chinese_title VARCHAR, album_number VARCHAR)"}, {"answer": "SELECT released FROM table_name_41 WHERE english_title = \"oxygenie of happiness\"", "question": "English title of oxygenie of happiness has what release date?", "context": "CREATE TABLE table_name_41 (released VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE home = \"quebec nordiques\" AND date = \"april 16\"", "question": "Which Score has a Home of quebec nordiques on april 16?", "context": "CREATE TABLE table_name_83 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_37 WHERE visitor = \"quebec nordiques\" AND score = \"7\u20135\"", "question": "WHich Record has a Visitor of quebec nordiques with a Score of 7\u20135?", "context": "CREATE TABLE table_name_37 (record VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_94 WHERE date = \"april 8\"", "question": "Who is the Visitor on april 8?", "context": "CREATE TABLE table_name_94 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE score = \"4\u20135\" AND visitor = \"quebec nordiques\"", "question": "When has Score of 4\u20135 and quebec nordiques as Visitor?", "context": "CREATE TABLE table_name_92 (date VARCHAR, score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_78 WHERE date = \"april 14\"", "question": "WHo is the Visitor on april 14?", "context": "CREATE TABLE table_name_78 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE visitor = \"quebec nordiques\" AND score = \"4\u20135\"", "question": "Which Record has a Visitor of quebec nordiques with a Score of 4\u20135?", "context": "CREATE TABLE table_name_58 (record VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(december) FROM table_name_61 WHERE game > 27 AND opponent = \"pittsburgh penguins\" AND points < 41", "question": "What's the highest December against the Pittsburgh Penguins in a game larger than 27, with less than 41 points?", "context": "CREATE TABLE table_name_61 (december INTEGER, points VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE december = 30", "question": "What's the score for December of 30?", "context": "CREATE TABLE table_name_48 (score VARCHAR, december VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_80 WHERE points = 6 AND lost < 2", "question": "What is the average number of games associated with 6 points and under 2 losses?", "context": "CREATE TABLE table_name_80 (games INTEGER, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_56 WHERE games > 5", "question": "What is the low point total when there are over 5 games?", "context": "CREATE TABLE table_name_56 (points INTEGER, games INTEGER)"}, {"answer": "SELECT share_of_votes FROM table_name_95 WHERE electors > 56 AND year > 1950", "question": "What was the share of votes when there were more than 56 electors and the year was more recent than 1950?", "context": "CREATE TABLE table_name_95 (share_of_votes VARCHAR, electors VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(electors) FROM table_name_70 WHERE share_of_votes = \"11,0%\"", "question": "What is the total of electors when the share of votes was 11,0%?", "context": "CREATE TABLE table_name_70 (electors INTEGER, share_of_votes VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_54 WHERE games > 7", "question": "Which Lost has Games larger than 7?", "context": "CREATE TABLE table_name_54 (lost INTEGER, games INTEGER)"}, {"answer": "SELECT MAX(points) FROM table_name_81 WHERE lost < 1 AND games > 7", "question": "Which Points have a Lost smaller than 1, and Games larger than 7?", "context": "CREATE TABLE table_name_81 (points INTEGER, lost VARCHAR, games VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_91 WHERE points > 13", "question": "Which Lost has Points larger than 13?", "context": "CREATE TABLE table_name_91 (lost INTEGER, points INTEGER)"}, {"answer": "SELECT AVG(points) FROM table_name_98 WHERE drawn > 1", "question": "Which Points have a Drawn larger than 1?", "context": "CREATE TABLE table_name_98 (points INTEGER, drawn INTEGER)"}, {"answer": "SELECT diameter FROM table_name_28 WHERE year_of_issue = 1977", "question": "Which Diameter has a Year of Issue of 1977?", "context": "CREATE TABLE table_name_28 (diameter VARCHAR, year_of_issue VARCHAR)"}, {"answer": "SELECT MAX(year_of_issue) FROM table_name_52 WHERE thickness = \"1.42mm\"", "question": "Which Year of Issue has a Thickness of 1.42mm?", "context": "CREATE TABLE table_name_52 (year_of_issue INTEGER, thickness VARCHAR)"}, {"answer": "SELECT diameter FROM table_name_93 WHERE thickness = \"1.3mm\"", "question": "Which Diameter has a Thickness of 1.3mm?", "context": "CREATE TABLE table_name_93 (diameter VARCHAR, thickness VARCHAR)"}, {"answer": "SELECT party FROM table_name_36 WHERE candidate = \"grech louis grech\"", "question": "Which party's candidate is Grech Louis Grech?", "context": "CREATE TABLE table_name_36 (party VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT sport FROM table_name_17 WHERE site = \"iowa city\" AND date = \"february 14, 2009\"", "question": "What is the sport played in Iowa City on February 14, 2009?", "context": "CREATE TABLE table_name_17 (sport VARCHAR, site VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_name_24 WHERE winning_team = \"iowa\" AND sport = \"softball\"", "question": "What is the series of the winning team in Iowa, for softball?", "context": "CREATE TABLE table_name_24 (series VARCHAR, winning_team VARCHAR, sport VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_25 WHERE opponent_in_the_final = \"alberto berasategui\"", "question": "What is the score of the match that was against alberto berasategui?", "context": "CREATE TABLE table_name_25 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(rebounds) FROM table_name_89 WHERE name = \"ann wauters\"", "question": "How many rebounds does Ann Wauters have?", "context": "CREATE TABLE table_name_89 (rebounds VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_56 WHERE games = 10", "question": "Who played 10 games?", "context": "CREATE TABLE table_name_56 (name VARCHAR, games VARCHAR)"}, {"answer": "SELECT COUNT(rebounds) FROM table_name_56 WHERE name = \"ann wauters\"", "question": "What is the total number of rebounds values for Ann Wauters?", "context": "CREATE TABLE table_name_56 (rebounds VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_8 WHERE date = \"september 25, 1966\"", "question": "Who did the Colts play against on September 25, 1966?", "context": "CREATE TABLE table_name_8 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE attendance = \"40,005\"", "question": "What is the date of the game with 40,005 in attendance?", "context": "CREATE TABLE table_name_61 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_18 WHERE game_site = \"milwaukee county stadium\"", "question": "What is the lowest week number for the game that was at milwaukee county stadium?", "context": "CREATE TABLE table_name_18 (week INTEGER, game_site VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE week > 11 AND date = \"december 13, 1964\"", "question": "After week 11, what was the Result on December 13, 1964?", "context": "CREATE TABLE table_name_49 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_43 WHERE date = \"november 1, 1964\" AND week > 8", "question": "After week 8, what was the Attendance on November 1, 1964?", "context": "CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT alternate FROM table_name_19 WHERE second = \"piotras gerasimovici\"", "question": "What is the alternate of the nation with Piotras Gerasimovici as the second?", "context": "CREATE TABLE table_name_19 (alternate VARCHAR, second VARCHAR)"}, {"answer": "SELECT alternate FROM table_name_97 WHERE second = \"hubert gr\u00fcndhammer\"", "question": "What is the alternate of the nation with hubert gr\u00fcndhammer as the second?", "context": "CREATE TABLE table_name_97 (alternate VARCHAR, second VARCHAR)"}, {"answer": "SELECT alternate FROM table_name_55 WHERE skip = \"erkki lill\"", "question": "What is the alternate of the nation with Erkki Lill as the skip?", "context": "CREATE TABLE table_name_55 (alternate VARCHAR, skip VARCHAR)"}, {"answer": "SELECT skip FROM table_name_74 WHERE alternate = \"laurens van der windt\"", "question": "Who is the skip of the nation with Laurens van der Windt as the alternate?", "context": "CREATE TABLE table_name_74 (skip VARCHAR, alternate VARCHAR)"}, {"answer": "SELECT lead FROM table_name_46 WHERE alternate = \"juha pekaristo\"", "question": "Who is the lead of the nation with Juha Pekaristo as the alternate?", "context": "CREATE TABLE table_name_46 (lead VARCHAR, alternate VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_24 WHERE position = \"center\"", "question": "What is the highest round in which a player was picked for the Center position?", "context": "CREATE TABLE table_name_24 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_10 WHERE player = \"john flatters\"", "question": "What is John Flatters' nationality?", "context": "CREATE TABLE table_name_10 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_67 WHERE player = \"jeremy duchesne\"", "question": "What is Jeremy Duchesne's position?", "context": "CREATE TABLE table_name_67 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_51 WHERE attendance = \"1,034\"", "question": "When was the attendance 1,034?", "context": "CREATE TABLE table_name_51 (date INTEGER, attendance VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_51 WHERE date = \"26 october 1889\"", "question": "what was the opponent on 26 october 1889?", "context": "CREATE TABLE table_name_51 (opponents VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(1996)[2] FROM table_name_80 WHERE 1950 > 80 AND 1960 = 196 AND 1990 > 131", "question": "1950 larger than 80, and a 1960 of 196, and a 1990 larger than 131 what is the lowest 1996[2]?", "context": "CREATE TABLE table_name_80 (Id VARCHAR)"}, {"answer": "SELECT MAX(1950) FROM table_name_13 WHERE 1960 > 196 AND 1996[2] < 726 AND 1980 > 125 AND 1990 > 848", "question": "1960 larger than 196, and a 1996[2] smaller than 726, and a 1980 larger than 125, and a 1990 larger than 848, what is the highest 1950?", "context": "CREATE TABLE table_name_13 (Id VARCHAR)"}, {"answer": "SELECT MAX(1990) FROM table_name_94 WHERE 1980 < 719 AND 1960 < 205 AND 1996[2] < 364 AND 1970 > 251", "question": "1980 smaller than 719, and a 1960 smaller than 205, and a 1996[2] smaller than 364, and a 1970 larger than 251 is what 1990 highest?", "context": "CREATE TABLE table_name_94 (Id VARCHAR)"}, {"answer": "SELECT SUM(1980) FROM table_name_6 WHERE 1996[2] > 68 AND 1990 < 352 AND 1970 > 105 AND 1950 = 119", "question": "1996[2] larger than 68, and a 1990 smaller than 352, and a 1970 larger than 105, and a 1950 of 119 is the sum of what 1980?", "context": "CREATE TABLE table_name_6 (Id VARCHAR)"}, {"answer": "SELECT SUM(1980) FROM table_name_89 WHERE 1996[2] = 127 AND 1990 < 120", "question": "1996[2] of 127, and a 1990 smaller than 120 is the sum of 1990?", "context": "CREATE TABLE table_name_89 (Id VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_60 WHERE result = \"w 14\u20136\"", "question": "Who was the opponent at the game with a result of w 14\u20136?", "context": "CREATE TABLE table_name_60 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_38 WHERE week < 8 AND record = \"2\u20133\u20132\"", "question": "What was the result of the game with a record of 2\u20133\u20132 before week 8?", "context": "CREATE TABLE table_name_38 (result VARCHAR, week VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_78 WHERE game_site = \"braves field\" AND date = \"october 2, 1932\"", "question": "What was the earliest week with a game at the Braves Field on October 2, 1932?", "context": "CREATE TABLE table_name_78 (week INTEGER, game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_38 WHERE date = \"november 13, 1932\"", "question": "What was the record at the game on November 13, 1932?", "context": "CREATE TABLE table_name_38 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT role FROM table_name_18 WHERE actor = \"kevin bishop\"", "question": "What role is Kevin Bishop the actor?", "context": "CREATE TABLE table_name_18 (role VARCHAR, actor VARCHAR)"}, {"answer": "SELECT duration FROM table_name_47 WHERE actor = \"mike walling\"", "question": "What is the duration for mike walling as the actor?", "context": "CREATE TABLE table_name_47 (duration VARCHAR, actor VARCHAR)"}, {"answer": "SELECT duration FROM table_name_20 WHERE appearances = \"3\" AND character = \"james garret\"", "question": "What is the duration that has 3 for appearances, and james garret as the character?", "context": "CREATE TABLE table_name_20 (duration VARCHAR, appearances VARCHAR, character VARCHAR)"}, {"answer": "SELECT duration FROM table_name_36 WHERE actor = \"nickolas grace\"", "question": "What is the duration for nickolas grace as the actor?", "context": "CREATE TABLE table_name_36 (duration VARCHAR, actor VARCHAR)"}, {"answer": "SELECT record FROM table_name_67 WHERE time___et__ = \"1:00pm\" AND result = \"w 34\u201314\"", "question": "Time ( ET ) of 1:00pm, and a Result of w 34\u201314 has what record?", "context": "CREATE TABLE table_name_67 (record VARCHAR, time___et__ VARCHAR, result VARCHAR)"}, {"answer": "SELECT location FROM table_name_29 WHERE date = \"sun. oct. 1\"", "question": "Date of sun. oct. 1 has what location?", "context": "CREATE TABLE table_name_29 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_83 WHERE record = \"3\u20133\"", "question": "Record of 3\u20133 has what result?", "context": "CREATE TABLE table_name_83 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT time___et__ FROM table_name_65 WHERE date = \"sun. oct. 29\"", "question": "Date of sun. oct. 29 has what time (et)?", "context": "CREATE TABLE table_name_65 (time___et__ VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_13 WHERE points = 10 AND drawn > 2", "question": "How many games have more than 10 points and more than 2 draws?", "context": "CREATE TABLE table_name_13 (games VARCHAR, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_86 WHERE points = 11 AND drawn > 1", "question": "What is the sum of losses that have points of 11 and more than 1 draw?", "context": "CREATE TABLE table_name_86 (lost INTEGER, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_67 WHERE drawn < 2 AND lost = 2", "question": "What is the greatest points value that have draws under 2 and 2 losses?", "context": "CREATE TABLE table_name_67 (points INTEGER, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_36 WHERE drawn < 1", "question": "How many losses have draw values under 1?", "context": "CREATE TABLE table_name_36 (lost VARCHAR, drawn INTEGER)"}, {"answer": "SELECT MIN(february) FROM table_name_32 WHERE points < 57", "question": "What's the lowest February for less than 57 points?", "context": "CREATE TABLE table_name_32 (february INTEGER, points INTEGER)"}, {"answer": "SELECT SUM(february) FROM table_name_88 WHERE opponent = \"montreal canadiens\"", "question": "What's the February for the game against the Montreal Canadiens?", "context": "CREATE TABLE table_name_88 (february INTEGER, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_22 WHERE game = 58", "question": "What's the record for Game 58?", "context": "CREATE TABLE table_name_22 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT winner FROM table_name_15 WHERE season = \"2005\u201306\"", "question": "Which Winner has a Season of 2005\u201306?", "context": "CREATE TABLE table_name_15 (winner VARCHAR, season VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_72 WHERE season = \"2000\u201301\"", "question": "Which Runner-up played in the Season of 2000\u201301?", "context": "CREATE TABLE table_name_72 (runner_up VARCHAR, season VARCHAR)"}, {"answer": "SELECT venue FROM table_name_88 WHERE season = \"2010\u201311\"", "question": "What was the venue during the Season of 2010\u201311?", "context": "CREATE TABLE table_name_88 (venue VARCHAR, season VARCHAR)"}, {"answer": "SELECT winner FROM table_name_13 WHERE runner_up = \"larne\" AND season = \"2003\u201304\"", "question": "Which Winner has a Runner-up of larne, and a Season of 2003\u201304?", "context": "CREATE TABLE table_name_13 (winner VARCHAR, runner_up VARCHAR, season VARCHAR)"}, {"answer": "SELECT winner FROM table_name_30 WHERE score = \"1 \u2013 0\" AND season = \"2011\u201312\"", "question": "Which Winner has a Score of 1 \u2013 0, and a Season of 2011\u201312?", "context": "CREATE TABLE table_name_30 (winner VARCHAR, score VARCHAR, season VARCHAR)"}, {"answer": "SELECT position FROM table_name_78 WHERE name = \"martin rucker\"", "question": "What position does Martin Rucker play?", "context": "CREATE TABLE table_name_78 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_21 WHERE name = \"paul hubbard\"", "question": "What was the lowest round for Paul Hubbard?", "context": "CREATE TABLE table_name_21 (round INTEGER, name VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_94 WHERE position = \"tight end\"", "question": "What was the lowest round for a tight end position?", "context": "CREATE TABLE table_name_94 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT years FROM table_name_5 WHERE ties > 31", "question": "What years did the person coach who had more than 31 ties?", "context": "CREATE TABLE table_name_5 (years VARCHAR, ties INTEGER)"}, {"answer": "SELECT AVG(wins) FROM table_name_70 WHERE losses < 174 AND years = \"1951 to 1956\" AND ties < 6", "question": "What is the average number of wins for the person who coached from 1951 to 1956 and had less than 174 losses and less than 6 ties?", "context": "CREATE TABLE table_name_70 (wins INTEGER, ties VARCHAR, losses VARCHAR, years VARCHAR)"}, {"answer": "SELECT coach FROM table_name_33 WHERE losses = 215", "question": "Who was the coach who had 215 losses?", "context": "CREATE TABLE table_name_33 (coach VARCHAR, losses VARCHAR)"}, {"answer": "SELECT years FROM table_name_30 WHERE ties > 1 AND wins < 311 AND losses = 174", "question": "What years did the person coach who had more than 1 tie, mess than 311 wins and 174 losses?", "context": "CREATE TABLE table_name_30 (years VARCHAR, losses VARCHAR, ties VARCHAR, wins VARCHAR)"}, {"answer": "SELECT years FROM table_name_99 WHERE wins < 82 AND losses > 24", "question": "What years did the person coach who had less than 82 wins and more than 24 losses?", "context": "CREATE TABLE table_name_99 (years VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_75 WHERE game > 25 AND opponent = \"dallas stars\"", "question": "Which Points have a Game larger than 25, and an Opponent of dallas stars?", "context": "CREATE TABLE table_name_75 (points INTEGER, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_53 WHERE december < 28 AND points < 38 AND game < 26 AND score = \"0\u20131 ot\"", "question": "Which Record has a December smaller than 28, and Points smaller than 38, and a Game smaller than 26, and a Score of 0\u20131 ot?", "context": "CREATE TABLE table_name_53 (record VARCHAR, score VARCHAR, game VARCHAR, december VARCHAR, points VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_56 WHERE game = 31", "question": "Which Opponent has a Game of 31?", "context": "CREATE TABLE table_name_56 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_49 WHERE points < 40 AND game > 25 AND score = \"2\u20130\"", "question": "Which Record has Points smaller than 40, and a Game larger than 25, and a Score of 2\u20130?", "context": "CREATE TABLE table_name_49 (record VARCHAR, score VARCHAR, points VARCHAR, game VARCHAR)"}, {"answer": "SELECT performer_3 FROM table_name_82 WHERE episode = 9", "question": "Episode of 9 in which performer 3 had?", "context": "CREATE TABLE table_name_82 (performer_3 VARCHAR, episode VARCHAR)"}, {"answer": "SELECT performer_1 FROM table_name_31 WHERE date = \"8 july 1994\"", "question": "Date of 8 july 1994 involves which performer 1?", "context": "CREATE TABLE table_name_31 (performer_1 VARCHAR, date VARCHAR)"}, {"answer": "SELECT performer_3 FROM table_name_56 WHERE date = \"15 july 1994\"", "question": "Date of 15 july 1994 involves which performer 3?", "context": "CREATE TABLE table_name_56 (performer_3 VARCHAR, date VARCHAR)"}, {"answer": "SELECT performer_3 FROM table_name_40 WHERE performer_2 = \"chip esten\"", "question": "Performer 2 of chip esten has what performer 3?", "context": "CREATE TABLE table_name_40 (performer_3 VARCHAR, performer_2 VARCHAR)"}, {"answer": "SELECT name FROM table_name_56 WHERE pennant_number = \"f82\"", "question": "Which Name has a Pennant number of f82?", "context": "CREATE TABLE table_name_56 (name VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT launched FROM table_name_31 WHERE date_of_commission = \"3 may 2001\"", "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 homeport__as_of_july_2013_ FROM table_name_73 WHERE laid_down = \"14 december 1985\"", "question": "What is the Homeport that has a Laid down on 14 december 1985?", "context": "CREATE TABLE table_name_73 (homeport__as_of_july_2013_ VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT launched FROM table_name_65 WHERE homeport__as_of_july_2013_ = \"sold to chile\" AND pennant_number = \"f80\"", "question": "What kind of Launched has a Homeport (as of July 2013) of sold to chile, and a Pennant number of f80?", "context": "CREATE TABLE table_name_65 (launched VARCHAR, homeport__as_of_july_2013_ VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT player FROM table_name_60 WHERE events > 25", "question": "Which player had more than 25 events?", "context": "CREATE TABLE table_name_60 (player VARCHAR, events INTEGER)"}, {"answer": "SELECT prize_money___$__ FROM table_name_94 WHERE rank < 7 AND events > 6 AND country = \"fiji\"", "question": "What amount of prize money was there when the rank was less than 7, there were more than 6 events, and the country was Fiji?", "context": "CREATE TABLE table_name_94 (prize_money___$__ VARCHAR, country VARCHAR, rank VARCHAR, events VARCHAR)"}, {"answer": "SELECT MIN(prize_money___) AS $__ FROM table_name_96 WHERE events = 21", "question": "What is the least amount of prize money when there are 21 events?", "context": "CREATE TABLE table_name_96 (prize_money___ INTEGER, events VARCHAR)"}, {"answer": "SELECT series_ep FROM table_name_45 WHERE netflix = \"s04e21\"", "question": "Which series episode has a netflix figure of s04e21?", "context": "CREATE TABLE table_name_45 (series_ep VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_77 WHERE netflix = \"s04e24\"", "question": "Which segment a's netflix figure is s04e24?", "context": "CREATE TABLE table_name_77 (segment_a VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_name_53 WHERE segment_d = \"goalie masks (part 2)\"", "question": "How many episodes have a segment d that is goalie masks (part 2)?", "context": "CREATE TABLE table_name_53 (episode VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT episode FROM table_name_67 WHERE segment_b = \"s hacksaw\"", "question": "Which episode's segment b is s hacksaw?", "context": "CREATE TABLE table_name_67 (episode VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT dob FROM table_name_47 WHERE surname = \"dale\" AND first = \"lachlan\"", "question": "When was Lachlan Dale born?", "context": "CREATE TABLE table_name_47 (dob VARCHAR, surname VARCHAR, first VARCHAR)"}, {"answer": "SELECT bats FROM table_name_12 WHERE position = \"p\" AND dob = \"18 april 1984\"", "question": "Which batter played P and was born 18 April 1984?", "context": "CREATE TABLE table_name_12 (bats VARCHAR, position VARCHAR, dob VARCHAR)"}, {"answer": "SELECT surname FROM table_name_73 WHERE bats = \"r\" AND position = \"p\" AND dob = \"20 may 1989\"", "question": "Which Surname has Bats of r, and a Position of p, and a DOB of 20 may 1989?", "context": "CREATE TABLE table_name_73 (surname VARCHAR, dob VARCHAR, bats VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_59 WHERE throws = \"r\" AND dob = \"12 february 1983\"", "question": "Which Position has Throws of r, and a DOB of 12 february 1983?", "context": "CREATE TABLE table_name_59 (position VARCHAR, throws VARCHAR, dob VARCHAR)"}, {"answer": "SELECT throws FROM table_name_10 WHERE surname = \"needle\"", "question": "How many throws did Needle have?", "context": "CREATE TABLE table_name_10 (throws VARCHAR, surname VARCHAR)"}, {"answer": "SELECT dob FROM table_name_8 WHERE bats = \"s\" AND position = \"inf\"", "question": "Which DOB has Bats of s, and a Position of inf?", "context": "CREATE TABLE table_name_8 (dob VARCHAR, bats VARCHAR, position VARCHAR)"}, {"answer": "SELECT lap_length FROM table_name_50 WHERE category = \"grand prix fia\"", "question": "What is the Lap Length of the race with a Grand Prix Fia Category?", "context": "CREATE TABLE table_name_50 (lap_length VARCHAR, category VARCHAR)"}, {"answer": "SELECT race FROM table_name_47 WHERE category = \"formula 2 fia, non-championship\" AND date = \"july 30, 1950\"", "question": "What is the Race on July 30, 1950 with a Formula 2 Fia, non-championship?", "context": "CREATE TABLE table_name_47 (race VARCHAR, category VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_62 WHERE time = \"3:05\"", "question": "What was his record when the match went for 3:05?", "context": "CREATE TABLE table_name_62 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_62 WHERE event = \"bellator 72\"", "question": "How many rounds did the match go for the Bellator 72 event?", "context": "CREATE TABLE table_name_62 (round INTEGER, event VARCHAR)"}, {"answer": "SELECT SUM(viewers_)[live] AS __m_ FROM table_name_77 WHERE share > 5", "question": "What is the sum of the live viewers for episodes with share over 5?", "context": "CREATE TABLE table_name_77 (live VARCHAR, share INTEGER, viewers_ INTEGER)"}, {"answer": "SELECT callsign FROM table_name_97 WHERE webcast = \"listen live\" AND frequency < 1210 AND brand = \"newsradio 740 ktrh\"", "question": "Which Callsign includes a frequency under 1210, Newsradio 740 KTRH, and webcasts with listen live?", "context": "CREATE TABLE table_name_97 (callsign VARCHAR, brand VARCHAR, webcast VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT website FROM table_name_64 WHERE city_of_license = \"monterrey\" AND webcast = \"listen live\" AND frequency < 1050", "question": "Which website includes a webcast of listen live, a frequency under 1050, and is licensed in the city of Monterrey?", "context": "CREATE TABLE table_name_64 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR)"}, {"answer": "SELECT webcast FROM table_name_54 WHERE website = \"ktrh.com\"", "question": "The KTRH.com website includes which type of webcast?", "context": "CREATE TABLE table_name_54 (webcast VARCHAR, website VARCHAR)"}, {"answer": "SELECT website FROM table_name_53 WHERE city_of_license = \"san antonio\" AND webcast = \"listen live\" AND frequency = 680", "question": "Which website includes a webcast of listen live, a frequency under 680, and was licensed in the city of San Antonio.", "context": "CREATE TABLE table_name_53 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR)"}, {"answer": "SELECT MIN(frequency) FROM table_name_2 WHERE webcast = \"listen live\" AND city_of_license = \"monterrey\" AND callsign = \"xet\"", "question": "Which long range AM station has the lowest frequency and includes a webcast of listen live, was licensed in the city of Monterrey, and uses the Callsign of xet?", "context": "CREATE TABLE table_name_2 (frequency INTEGER, callsign VARCHAR, webcast VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_26 WHERE drawn < 0", "question": "Which Games is the highest one that has a Drawn smaller than 0?", "context": "CREATE TABLE table_name_26 (games INTEGER, drawn INTEGER)"}, {"answer": "SELECT score FROM table_name_11 WHERE game = 6", "question": "What is the score for game 6?", "context": "CREATE TABLE table_name_11 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(capacity) FROM table_name_38 WHERE location = \"mogilev\"", "question": "Which Capacity has a Location of mogilev?", "context": "CREATE TABLE table_name_38 (capacity INTEGER, location VARCHAR)"}, {"answer": "SELECT result FROM table_name_93 WHERE district = \"california 2\"", "question": "What was the District of California 2 result?", "context": "CREATE TABLE table_name_93 (result VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_name_74 WHERE first_elected < 1906 AND incumbent = \"julius kahn\"", "question": "What was the district Incumbent Julius Kahn was in that was smaller than 1906?", "context": "CREATE TABLE table_name_74 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_name_47 WHERE result = \"re-elected\" AND incumbent = \"sylvester c. smith\"", "question": "What was the lowest re-elected result for Sylvester C. Smith?", "context": "CREATE TABLE table_name_47 (first_elected INTEGER, result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT result FROM table_name_6 WHERE first_elected = 1898 AND incumbent = \"julius kahn\"", "question": "What was the result for Julius Kahn's first election of 1898?", "context": "CREATE TABLE table_name_6 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_name_32 WHERE result = \"retired democratic hold\" AND first_elected < 1884 AND incumbent = \"samuel dibble\"", "question": "Which party had a result of retired democratic hold and a first elected earlier than 1884 with an incumbent of samuel dibble?", "context": "CREATE TABLE table_name_32 (party VARCHAR, incumbent VARCHAR, result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_name_7 WHERE first_elected = 1882 AND result = \"re-elected\"", "question": "Which district had a first elected in 1882 with a result of re-elected?", "context": "CREATE TABLE table_name_7 (district VARCHAR, first_elected VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_name_38 WHERE total < 134 AND number_of_dances < 3 AND rank_by_average < 12", "question": "Which Average is the lowest one that has a Total smaller than 134, and a Number of dances smaller than 3, and a Rank by average smaller than 12?", "context": "CREATE TABLE table_name_38 (average INTEGER, rank_by_average VARCHAR, total VARCHAR, number_of_dances VARCHAR)"}, {"answer": "SELECT couple FROM table_name_20 WHERE rank_by_average > 3 AND average > 16.5 AND total < 195 AND number_of_dances > 3", "question": "Which Couple has a Rank by average larger than 3, and an Average larger than 16.5, and a Total smaller than 195, and a Number of dances larger than 3?", "context": "CREATE TABLE table_name_20 (couple VARCHAR, number_of_dances VARCHAR, total VARCHAR, rank_by_average VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(rank_by_average) FROM table_name_54 WHERE total = 425 AND place > 1", "question": "Which Rank by average is the lowest one that has a Total of 425, and a Place larger than 1?", "context": "CREATE TABLE table_name_54 (rank_by_average INTEGER, total VARCHAR, place VARCHAR)"}, {"answer": "SELECT nation FROM table_name_64 WHERE name = \"carolina hermann / daniel hermann\"", "question": "What nation are carolina hermann / daniel hermann from?", "context": "CREATE TABLE table_name_64 (nation VARCHAR, name VARCHAR)"}, {"answer": "SELECT rank FROM table_name_71 WHERE points = 141.48", "question": "What is the rank associated with 141.48 points?", "context": "CREATE TABLE table_name_71 (rank VARCHAR, points VARCHAR)"}, {"answer": "SELECT name FROM table_name_88 WHERE points = 124.51", "question": "What competitors are scored 124.51 points?", "context": "CREATE TABLE table_name_88 (name VARCHAR, points VARCHAR)"}, {"answer": "SELECT pat_robertson FROM table_name_64 WHERE george_hw_bush = \"76%\"", "question": "At what percent was Pat Robertson when George H.W. Bush had 76%?", "context": "CREATE TABLE table_name_64 (pat_robertson VARCHAR, george_hw_bush VARCHAR)"}, {"answer": "SELECT bob_dole FROM table_name_67 WHERE george_hw_bush = \"81%\" AND pat_robertson = \"9%\"", "question": "When George H.W. Bush had 81%, and Pat Robertson had 9%, what did Bob Dole have?", "context": "CREATE TABLE table_name_67 (bob_dole VARCHAR, george_hw_bush VARCHAR, pat_robertson VARCHAR)"}, {"answer": "SELECT pete_du_pont FROM table_name_13 WHERE pat_robertson = \"16%\"", "question": "When Pat Robertson was at 16%, what did Pete du Pont have?", "context": "CREATE TABLE table_name_13 (pete_du_pont VARCHAR, pat_robertson VARCHAR)"}, {"answer": "SELECT pat_robertson FROM table_name_12 WHERE bob_dole = \"26%\" AND george_hw_bush = \"47%\"", "question": "When Bob Dole had 26%, and George H.W. Bush had 47%, what did Pat Robertson have?", "context": "CREATE TABLE table_name_12 (pat_robertson VARCHAR, bob_dole VARCHAR, george_hw_bush VARCHAR)"}, {"answer": "SELECT pat_robertson FROM table_name_43 WHERE bob_dole = \"26%\" AND pete_du_pont = \"0%\"", "question": "When Bob Dole had 26%, and Pete du Pont had 0%, what did Pat Robertson have?", "context": "CREATE TABLE table_name_43 (pat_robertson VARCHAR, bob_dole VARCHAR, pete_du_pont VARCHAR)"}, {"answer": "SELECT george_hw_bush FROM table_name_43 WHERE pat_robertson = \"19%\" AND bob_dole = \"26%\"", "question": "When Pat Robertson had 19%, and Bob Dole had 26%, what did George H.W. Bush have?", "context": "CREATE TABLE table_name_43 (george_hw_bush VARCHAR, pat_robertson VARCHAR, bob_dole VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_59 WHERE date = \"october 10, 1965\"", "question": "Date of october 10, 1965 had what lowest attendance?", "context": "CREATE TABLE table_name_59 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE opponent = \"chicago bears\"", "question": "Opponent of chicago bears involved what date?", "context": "CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT performer_1 FROM table_name_91 WHERE performer_2 = \"compilation 2\"", "question": "Performer 2 of compilation 2 is what performer 1?", "context": "CREATE TABLE table_name_91 (performer_1 VARCHAR, performer_2 VARCHAR)"}, {"answer": "SELECT performer_4 FROM table_name_76 WHERE performer_1 = \"greg proops\" AND date = \"25 august 1995\"", "question": "Performer 1 of greg proops, and a Date of 25 august 1995 is what performer 4?", "context": "CREATE TABLE table_name_76 (performer_4 VARCHAR, performer_1 VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(episode) FROM table_name_74 WHERE performer_1 = \"greg proops\" AND performer_3 = \"ryan stiles\" AND date = \"25 august 1995\"", "question": "Performer 1 of greg proops, and a Performer 3 of ryan stiles, and a Date of 25 august 1995 is which average episode?", "context": "CREATE TABLE table_name_74 (episode INTEGER, date VARCHAR, performer_1 VARCHAR, performer_3 VARCHAR)"}, {"answer": "SELECT performer_3 FROM table_name_79 WHERE performer_1 = \"stephen frost\" AND performer_2 = \"josie lawrence\" AND date = \"15 september 1995\"", "question": "Performer 1 of Stephen Frost, and a Performer 2 of Josie Lawrence, and a Date of 15 September 1995 is what performer 3?", "context": "CREATE TABLE table_name_79 (performer_3 VARCHAR, date VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_99 WHERE asian_team_classification = \"seoul cycling team\" AND winner = \"alexandre usov\"", "question": "WHich Mountains classification has an Asian team classification of seoul cycling team, and a Winner of alexandre usov?", "context": "CREATE TABLE table_name_99 (mountains_classification VARCHAR, asian_team_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT asian_rider_classification FROM table_name_43 WHERE general_classification = \"ruslan ivanov\" AND stage = \"9\"", "question": "WHo is the Asian rider classification that has ruslan ivanov on the Stage of 9?", "context": "CREATE TABLE table_name_43 (asian_rider_classification VARCHAR, general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_1 WHERE asian_rider_classification = \"shinichi fukushima\" AND winner = \"jeremy hunt\"", "question": "WHich General classification has an Asian rider classification of shinichi fukushima, and a Winner of jeremy hunt?", "context": "CREATE TABLE table_name_1 (general_classification VARCHAR, asian_rider_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT stage FROM table_name_79 WHERE mountains_classification = \"filippo savini\"", "question": "Which Stage has a Mountains classification of filippo savini?", "context": "CREATE TABLE table_name_79 (stage VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT stage FROM table_name_21 WHERE winner = \"jeremy hunt\"", "question": "Which Stage has a Winner of jeremy hunt?", "context": "CREATE TABLE table_name_21 (stage VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_42 WHERE site = \"iowa city\" AND date = \"december 3, 2006\"", "question": "Which winning team has Iowa city as the site, and december 3, 2006 as the date?", "context": "CREATE TABLE table_name_42 (winning_team VARCHAR, site VARCHAR, date VARCHAR)"}, {"answer": "SELECT site FROM table_name_25 WHERE date = \"november 30, 2006\"", "question": "What site has november 30, 2006 as the date?", "context": "CREATE TABLE table_name_25 (site VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_91 WHERE sport = \"volleyball\"", "question": "What winning team has volleyball as the sport?", "context": "CREATE TABLE table_name_91 (winning_team VARCHAR, sport VARCHAR)"}, {"answer": "SELECT COUNT(january) FROM table_name_83 WHERE opponent = \"st. louis blues\" AND game < 42", "question": "What is the total number in January when the St. Louis Blues had a game smaller than 42?", "context": "CREATE TABLE table_name_83 (january VARCHAR, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(january) FROM table_name_70 WHERE record = \"17-20-2\" AND game < 39", "question": "What is the January sum with the record of 17-20-2 with a game smaller than 39?", "context": "CREATE TABLE table_name_70 (january INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_51 WHERE location = \"boston garden\" AND opponent = \"new york knicks\"", "question": "What was the record when the New York Knicks played at the Boston Garden?", "context": "CREATE TABLE table_name_51 (record VARCHAR, location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE record = \"7-2\"", "question": "When the record was 7-2, what was the score for the game?", "context": "CREATE TABLE table_name_94 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE record = \"4-2\"", "question": "On what date was the record 4-2?", "context": "CREATE TABLE table_name_66 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(females_rank) FROM table_name_2 WHERE females___percentage_ > 53 AND hiv_awareness__males_percentage_ < 89 AND state = \"odisha\"", "question": "Which Females Rank is the highest one that has Females (%) larger than 53, and an HIV awareness (males%) smaller than 89, and a State of odisha?", "context": "CREATE TABLE table_name_2 (females_rank INTEGER, state VARCHAR, females___percentage_ VARCHAR, hiv_awareness__males_percentage_ VARCHAR)"}, {"answer": "SELECT COUNT(females___percentage_) FROM table_name_1 WHERE females_rank < 21 AND state = \"kerala\" AND males_rank > 1", "question": "How many Females (%) have Females Rank smaller than 21, and a State of kerala, and Males Rank larger than 1?", "context": "CREATE TABLE table_name_1 (females___percentage_ VARCHAR, males_rank VARCHAR, females_rank VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(females___percentage_) FROM table_name_45 WHERE state = \"karnataka\" AND males_rank > 16", "question": "How many Females (%) have a State of karnataka, and Males Rank larger than 16?", "context": "CREATE TABLE table_name_45 (females___percentage_ VARCHAR, state VARCHAR, males_rank VARCHAR)"}, {"answer": "SELECT MAX(males_rank) FROM table_name_93 WHERE females___percentage_ < 40 AND females_rank < 22", "question": "Which Males Rank is the highest one that has Females (%) smaller than 40, and Females Rank smaller than 22?", "context": "CREATE TABLE table_name_93 (males_rank INTEGER, females___percentage_ VARCHAR, females_rank VARCHAR)"}, {"answer": "SELECT SUM(females___percentage_) FROM table_name_71 WHERE hiv_awareness__males_percentage_ > 92 AND females_rank > 2 AND males_rank < 3", "question": "Which Females (%) has an HIV awareness (males%) larger than 92, and Females Rank larger than 2, and Males Rank smaller than 3?", "context": "CREATE TABLE table_name_71 (females___percentage_ INTEGER, males_rank VARCHAR, hiv_awareness__males_percentage_ VARCHAR, females_rank VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_31 WHERE league_cup < 0", "question": "League Cup smaller than 0 is what sum of the total?", "context": "CREATE TABLE table_name_31 (total INTEGER, league_cup INTEGER)"}, {"answer": "SELECT MAX(league_cup) FROM table_name_27 WHERE championship > 3 AND fa_cup < 3 AND total < 6", "question": "Championship larger than 3, and a FA Cup smaller than 3, and a Total smaller than 6 involves what highest league cup?", "context": "CREATE TABLE table_name_27 (league_cup INTEGER, total VARCHAR, championship VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE surface = \"hard\" AND date = \"28 august 1993\"", "question": "Which Opponent has a Surface of hard on 28 august 1993?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_70 WHERE date = \"18 july 1993\"", "question": "WHICH Outcome IS ON 18 july 1993?", "context": "CREATE TABLE table_name_70 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_68 WHERE opponent = \"pascale paradis-mangon\"", "question": "WHICH Outcome has aN Opponent of pascale paradis-mangon?", "context": "CREATE TABLE table_name_68 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE outcome = \"winner\" AND date = \"4 november 1990\"", "question": "Which Score has aN Outcome of winner on 4 november 1990?", "context": "CREATE TABLE table_name_66 (score VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_18 WHERE opponent = \"susan sloane\"", "question": "Which Tournament has an Opponent of susan sloane?", "context": "CREATE TABLE table_name_18 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_92 WHERE opponent = \"meike babel\"", "question": "Which Tournament has an Opponent of meike babel?", "context": "CREATE TABLE table_name_92 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_63 WHERE november = 29", "question": "Which Game has a November of 29?", "context": "CREATE TABLE table_name_63 (game INTEGER, november VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_40 WHERE record = \"12\u20132\u20134\u20131\" AND november > 22", "question": "Which Points have a Record of 12\u20132\u20134\u20131, and a November larger than 22?", "context": "CREATE TABLE table_name_40 (points INTEGER, record VARCHAR, november VARCHAR)"}, {"answer": "SELECT record FROM table_name_78 WHERE game = 19", "question": "Which Record has a Game of 19?", "context": "CREATE TABLE table_name_78 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(november) FROM table_name_50 WHERE game > 14 AND opponent = \"minnesota wild\"", "question": "How many Novembers have a Game larger than 14, and an Opponent of minnesota wild?", "context": "CREATE TABLE table_name_50 (november VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(november) FROM table_name_56 WHERE record = \"12\u20132\u20134\u20131\"", "question": "Which November is the lowest one that has a Record of 12\u20132\u20134\u20131?", "context": "CREATE TABLE table_name_56 (november INTEGER, record VARCHAR)"}, {"answer": "SELECT AVG(march) FROM table_name_70 WHERE record = \"25\u201330\u201313\" AND points < 63", "question": "What day has a record of 25\u201330\u201313 and less than 63 points?", "context": "CREATE TABLE table_name_70 (march INTEGER, record VARCHAR, points VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_98 WHERE points = 63", "question": "Which opponent has 63 points?", "context": "CREATE TABLE table_name_98 (opponent VARCHAR, points VARCHAR)"}, {"answer": "SELECT alpha FROM table_name_34 WHERE ia64 = \"discontinued 3.5-3.8 4.1-4.7\"", "question": "Which Alpha contains ia64 with discontinued 3.5-3.8 4.1-4.7?", "context": "CREATE TABLE table_name_34 (alpha VARCHAR, ia64 VARCHAR)"}, {"answer": "SELECT s390x FROM table_name_21 WHERE ia64 = \"yes\" AND alpha = \"no\"", "question": "Which s390x contains a yes ia64 and a no for alpha?", "context": "CREATE TABLE table_name_21 (s390x VARCHAR, ia64 VARCHAR, alpha VARCHAR)"}, {"answer": "SELECT hppa FROM table_name_72 WHERE mips = \"no\" AND alpha = \"no\" AND ppc64 = \"yes 3+\"", "question": "Which hppa contains a ppc64 of yes 3+, no for mips and no for alpha?", "context": "CREATE TABLE table_name_72 (hppa VARCHAR, ppc64 VARCHAR, mips VARCHAR, alpha VARCHAR)"}, {"answer": "SELECT 1991 FROM table_name_77 WHERE 1993 = \"a\"", "question": "Which 1991 has an A 1993 ?", "context": "CREATE TABLE table_name_77 (Id VARCHAR)"}, {"answer": "SELECT 1992 FROM table_name_13 WHERE 1989 = \"1\u20132\"", "question": "Which 992 has a  1\u20132 of 1989 ?", "context": "CREATE TABLE table_name_13 (Id VARCHAR)"}, {"answer": "SELECT 1990 FROM table_name_3 WHERE 1993 = \"1r\"", "question": "WHICH 1990 has a 1993 of 1r?", "context": "CREATE TABLE table_name_3 (Id VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_35 WHERE 1998 = \"0\u20131\"", "question": "Which 1994 has a 1998 of 0\u20131?", "context": "CREATE TABLE table_name_35 (Id VARCHAR)"}, {"answer": "SELECT 1995 FROM table_name_86 WHERE 1993 = \"3r\"", "question": "Which 1995 has a 1993 of 3r?", "context": "CREATE TABLE table_name_86 (Id VARCHAR)"}, {"answer": "SELECT 1992 FROM table_name_59 WHERE 1996 = \"sf\" AND 1993 = \"a\"", "question": "Which 1992 has a 1996 of sf and a 1993 of a?", "context": "CREATE TABLE table_name_59 (Id VARCHAR)"}, {"answer": "SELECT school FROM table_name_20 WHERE pick > 89 AND position = \"back\" AND round = 16", "question": "Which school picked a back in round 16, after pick 89?", "context": "CREATE TABLE table_name_20 (school VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_29 WHERE home = \"ottawa\"", "question": "Who was the visitor in the game that had Ottawa as the home team?", "context": "CREATE TABLE table_name_29 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_90 WHERE decision = \"niittymaki\" AND home = \"carolina\"", "question": "What was the score in the game where Carolina was the home team and Niittymaki received the decision?", "context": "CREATE TABLE table_name_90 (score VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE loss = \"johnson (9-8)\"", "question": "What was the date of the game that had a loss of Johnson (9-8)?", "context": "CREATE TABLE table_name_30 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_23 WHERE run_1 < 51.96 AND run_2 > 51.13 AND run_3 = 52.53", "question": "Who had a Run 1 smaller than 51.96, a Run 2 larger than 51.13, and a Run 3 of 52.53?", "context": "CREATE TABLE table_name_23 (athlete VARCHAR, run_3 VARCHAR, run_1 VARCHAR, run_2 VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_67 WHERE run_2 = 50.67", "question": "Who had a run 2 of 50.67?", "context": "CREATE TABLE table_name_67 (athlete VARCHAR, run_2 VARCHAR)"}, {"answer": "SELECT MAX(run_2) FROM table_name_21 WHERE run_1 > 52.25 AND athlete = \"john farrow\"", "question": "What was john farrow's run 2 associated with a run 1 of greater than 52.25?", "context": "CREATE TABLE table_name_21 (run_2 INTEGER, run_1 VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE opponent = \"buffalo sabres\"", "question": "What was the Score in the game against the Buffalo Sabres?", "context": "CREATE TABLE table_name_83 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_9 WHERE rank < 4 AND name = \"dalma iv\u00e1nyi\"", "question": "Rank smaller than 4, and a Name of dalma iv\u00e1nyi involved which lowest game?", "context": "CREATE TABLE table_name_9 (games INTEGER, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_27 WHERE name = \"sue bird\"", "question": "Name of sue bird that involves what team?", "context": "CREATE TABLE table_name_27 (team VARCHAR, name VARCHAR)"}, {"answer": "SELECT episode FROM table_name_16 WHERE season < 25 AND directed_by = \"bob anderson\" AND production_code = \"kabf16\"", "question": "Which episode was directed by Bob Anderson with a production code of KABF16 and a season before than 25?", "context": "CREATE TABLE table_name_16 (episode VARCHAR, production_code VARCHAR, season VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_name_77 WHERE season > 8 AND episode = \"xvi\"", "question": "Who was the director of the episode with a season after 8 and an episode of XVI?", "context": "CREATE TABLE table_name_77 (directed_by VARCHAR, season VARCHAR, episode VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_68 WHERE date = \"7 september 1996\"", "question": "Date of 7 september 1996 includes which highest rank athlete?", "context": "CREATE TABLE table_name_68 (rank INTEGER, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_84 WHERE time = 10.82", "question": "Time of 10.82 has what location?", "context": "CREATE TABLE table_name_84 (location VARCHAR, time VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_92 WHERE date = \"10 july 2009\"", "question": "Date of 10 july 2009 includes what athlete?", "context": "CREATE TABLE table_name_92 (athlete VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_37 WHERE rank < 5 AND time > 10.7 AND date = \"10 july 2009\"", "question": "Rank smaller than 5, and a Time larger than 10.7, and a Date of 10 july 2009 has what location?", "context": "CREATE TABLE table_name_37 (location VARCHAR, date VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(dcsf_number) FROM table_name_22 WHERE faith = \"rc\" AND opened > 1966", "question": "Faith of rc, and a Opened larger than 1966 which has the highest DCSF number?", "context": "CREATE TABLE table_name_22 (dcsf_number INTEGER, faith VARCHAR, opened VARCHAR)"}, {"answer": "SELECT type FROM table_name_79 WHERE faith = \"\u2013\" AND name = \"greenway\"", "question": "Faith of \u2013, and a Name of greenway has what type?", "context": "CREATE TABLE table_name_79 (type VARCHAR, faith VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_47 WHERE venue = \"launceston cricket club ground, launceston\" AND season = \"1853/54\"", "question": "Who was the opponent that played at Launceston Cricket Club Ground, launceston during the season of 1853/54?", "context": "CREATE TABLE table_name_47 (opponent VARCHAR, venue VARCHAR, season VARCHAR)"}, {"answer": "SELECT rank FROM table_name_92 WHERE season = \"2006/07\"", "question": "What was the rank of the team during season 2006/07?", "context": "CREATE TABLE table_name_92 (rank VARCHAR, season VARCHAR)"}, {"answer": "SELECT venue FROM table_name_12 WHERE runs = \"55\"", "question": "What was the venue where there were 55 runs?", "context": "CREATE TABLE table_name_12 (venue VARCHAR, runs VARCHAR)"}, {"answer": "SELECT venue FROM table_name_97 WHERE runs = \"62\"", "question": "What was the venue where there were 62 runs?", "context": "CREATE TABLE table_name_97 (venue VARCHAR, runs VARCHAR)"}, {"answer": "SELECT driver FROM table_name_82 WHERE laps < 53 AND time_retired = \"accident\"", "question": "Which driver had an accident and laps smaller than 53?", "context": "CREATE TABLE table_name_82 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT language FROM table_name_85 WHERE publication_range = \"1955\u20131999\"", "question": "What language has a publication range from 1955\u20131999?", "context": "CREATE TABLE table_name_85 (language VARCHAR, publication_range VARCHAR)"}, {"answer": "SELECT status FROM table_name_62 WHERE issn = \"0149-1830\"", "question": "What is the status for a journal with the ISSN of 0149-1830?", "context": "CREATE TABLE table_name_62 (status VARCHAR, issn VARCHAR)"}, {"answer": "SELECT language FROM table_name_65 WHERE country = \"france\" AND publication_range = \"1992\u20132003\"", "question": "What is the language with a France publication range of 1992\u20132003?", "context": "CREATE TABLE table_name_65 (language VARCHAR, country VARCHAR, publication_range VARCHAR)"}, {"answer": "SELECT issn FROM table_name_36 WHERE publication_range = \"1984-\"", "question": "What is the ISSN number of a publication range of 1984-?", "context": "CREATE TABLE table_name_36 (issn VARCHAR, publication_range VARCHAR)"}, {"answer": "SELECT language FROM table_name_43 WHERE frequency = \"3 times per year\" AND issn = \"1136-7385\"", "question": "What is the language for a journal that has a frequency of 3 times per year and has an ISSN number of 1136-7385?", "context": "CREATE TABLE table_name_43 (language VARCHAR, frequency VARCHAR, issn VARCHAR)"}, {"answer": "SELECT region_4_release FROM table_name_99 WHERE region_2_release = \"july 20, 2009\"", "question": "What is the region 4 release that has july 20, 2009 as the region 2?", "context": "CREATE TABLE table_name_99 (region_4_release VARCHAR, region_2_release VARCHAR)"}, {"answer": "SELECT region_1_release FROM table_name_39 WHERE region_2_release = \"july 20, 2009\"", "question": "What is the region 1 release that has july 20, 2009 as the region 2?", "context": "CREATE TABLE table_name_39 (region_1_release VARCHAR, region_2_release VARCHAR)"}, {"answer": "SELECT AVG(episodes) FROM table_name_70 WHERE region_1_release = \"september 11, 2007\"", "question": "What is the average episode that has September 11, 2007 as a region 1?", "context": "CREATE TABLE table_name_70 (episodes INTEGER, region_1_release VARCHAR)"}, {"answer": "SELECT scheduled FROM table_name_13 WHERE capacity__mw_ < 32.5 AND type = \"nordex n90 2.5mw\" AND wind_farm = \"glenough extension\"", "question": "What is the scheduled value for the farm having a capacity under 32.5MW, type of Nordex n90 2.5MW, and a farm of Glenough Extension?", "context": "CREATE TABLE table_name_13 (scheduled VARCHAR, wind_farm VARCHAR, capacity__mw_ VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_65 WHERE turbines < 17 AND location = \"county laois\"", "question": "What is the type of turbine having fewer than 17 units and located in County Laois?", "context": "CREATE TABLE table_name_65 (type VARCHAR, turbines VARCHAR, location VARCHAR)"}, {"answer": "SELECT scheduled FROM table_name_96 WHERE turbines = 17", "question": "When is the scheduled date for the farm having 17 turbines?", "context": "CREATE TABLE table_name_96 (scheduled VARCHAR, turbines VARCHAR)"}, {"answer": "SELECT AVG(capacity__mw_) FROM table_name_84 WHERE wind_farm = \"gortahile\" AND turbines > 8", "question": "What is the average capacity for the farm at Gortahile having more than 8 turbines?", "context": "CREATE TABLE table_name_84 (capacity__mw_ INTEGER, wind_farm VARCHAR, turbines VARCHAR)"}, {"answer": "SELECT title FROM table_name_64 WHERE left_office = \"982\" AND entered_office = \"949\"", "question": "What is the title of the king who left office in 982 and entered office in 949?", "context": "CREATE TABLE table_name_64 (title VARCHAR, left_office VARCHAR, entered_office VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_34 WHERE entered_office = \"1012\"", "question": "When did the king who entered office in 1012 leave office?", "context": "CREATE TABLE table_name_34 (left_office VARCHAR, entered_office VARCHAR)"}, {"answer": "SELECT family_relations FROM table_name_20 WHERE throne_name = \"303\"", "question": "What are the family relations of the king with the throne name 303?", "context": "CREATE TABLE table_name_20 (family_relations VARCHAR, throne_name VARCHAR)"}, {"answer": "SELECT born_died FROM table_name_74 WHERE left_office = \"1021\" AND throne_name = \"315\"", "question": "What is teh born-died dates of the king with a throne name 315 and left office in 1021?", "context": "CREATE TABLE table_name_74 (born_died VARCHAR, left_office VARCHAR, throne_name VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_15 WHERE partner = \"irina-camelia begu\" AND surface = \"hard\"", "question": "Which Opponents have a Partner of irina-camelia begu, and a Surface of hard?", "context": "CREATE TABLE table_name_15 (opponents VARCHAR, partner VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_45 WHERE partner = \"galina voskoboeva\"", "question": "Which Surface has a Partner of galina voskoboeva?", "context": "CREATE TABLE table_name_45 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_80 WHERE surface = \"hard\" AND outcome = \"runner-up\" AND partner = \"jarmila gajdo\u0161ov\u00e1\"", "question": "Which Opponents have a Surface of hard, and an Outcome of runner-up, and a Partner of jarmila gajdo\u0161ov\u00e1?", "context": "CREATE TABLE table_name_80 (opponents VARCHAR, partner VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT partner FROM table_name_18 WHERE date = \"12 july 2009\"", "question": "Which Partner has a Date of 12 july 2009?", "context": "CREATE TABLE table_name_18 (partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_93 WHERE partner = \"sorana c\u00eerstea\"", "question": "Which Surface has a Partner of sorana c\u00eerstea?", "context": "CREATE TABLE table_name_93 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_56 WHERE pick__number > 27", "question": "Name the least overall with pick number more than 27", "context": "CREATE TABLE table_name_56 (overall INTEGER, pick__number INTEGER)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_56 WHERE team__number2 = \"gran canaria\"", "question": "what's the first leg with gran canaria as team #2?", "context": "CREATE TABLE table_name_56 (team__number2 VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_name_67 WHERE team__number1 = \"lukoil academic\"", "question": "with team #1 as lukoil academic what is team #2?", "context": "CREATE TABLE table_name_67 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT team__number1 FROM table_name_12 WHERE team__number2 = \"akasvayu girona\"", "question": "with team #2 as akasvayu girona what is team #1?", "context": "CREATE TABLE table_name_12 (team__number1 VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT virtue FROM table_name_13 WHERE (latin) = acedia", "question": "Which virtue is acedia(Latin)?", "context": "CREATE TABLE table_name_13 (virtue VARCHAR, acedia VARCHAR, latin VARCHAR)"}, {"answer": "SELECT virtue FROM table_name_31 WHERE _vice_ = \"lust\"", "question": "Which Virtue has a (vice) of lust?", "context": "CREATE TABLE table_name_31 (virtue VARCHAR, _vice_ VARCHAR)"}, {"answer": "SELECT virtue FROM table_name_20 WHERE (latin) = invidia", "question": "Which virtue is Invidia(Latin)?", "context": "CREATE TABLE table_name_20 (virtue VARCHAR, invidia VARCHAR, latin VARCHAR)"}, {"answer": "SELECT gloss FROM table_name_79 WHERE latin = \"castitas\"", "question": "What's the gloss with Castitas(Latin)?", "context": "CREATE TABLE table_name_79 (gloss VARCHAR, latin VARCHAR)"}, {"answer": "SELECT gloss FROM table_name_22 WHERE virtue = \"diligence\"", "question": "What is the Diligence Virtues Gloss?", "context": "CREATE TABLE table_name_22 (gloss VARCHAR, virtue VARCHAR)"}, {"answer": "SELECT latin FROM table_name_64 WHERE virtue = \"temperance\"", "question": "What is the Virtue of Temperance in Latin?", "context": "CREATE TABLE table_name_64 (latin VARCHAR, virtue VARCHAR)"}, {"answer": "SELECT year FROM table_name_14 WHERE silver = \"south korea\"", "question": "In what year(s) did South Korea win silver?", "context": "CREATE TABLE table_name_14 (year VARCHAR, silver VARCHAR)"}, {"answer": "SELECT silver FROM table_name_51 WHERE location = \"doha\"", "question": "Which nation(s) won silver in Doha?", "context": "CREATE TABLE table_name_51 (silver VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_74 WHERE gold = \"south korea\" AND bronze = \"malaysia\"", "question": "What was the first year that South Korea won gold and Malaysia won bronze?", "context": "CREATE TABLE table_name_74 (year INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT gold FROM table_name_50 WHERE bronze = \"chinese taipei\"", "question": "What country won gold in the year(s) that Chinese Taipei won bronze?", "context": "CREATE TABLE table_name_50 (gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT european_competitions FROM table_name_85 WHERE pos = 6", "question": "Which European competitions have a Pos of 6?", "context": "CREATE TABLE table_name_85 (european_competitions VARCHAR, pos VARCHAR)"}, {"answer": "SELECT AVG(pos) FROM table_name_1 WHERE dutch_cup = \"winner\" AND tier > 1", "question": "Which Pos has a Dutch Cup of winner, and a Tier larger than 1?", "context": "CREATE TABLE table_name_1 (pos INTEGER, dutch_cup VARCHAR, tier VARCHAR)"}, {"answer": "SELECT AVG(frequency_mhz) FROM table_name_72 WHERE city_of_license = \"farwell, texas\"", "question": "What is the average Frequency MHz that is on farwell, texas?", "context": "CREATE TABLE table_name_72 (frequency_mhz INTEGER, city_of_license VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_42 WHERE fcc_info = \"fcc\" AND erp_w = \"10,000 horizontal 3,000 vertical\"", "question": "WHich City of license has a FCC info of fcc, and 10,000 horizontal 3,000 vertical ERP W", "context": "CREATE TABLE table_name_42 (city_of_license VARCHAR, fcc_info VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_22 WHERE erp_w = \"3,000\"", "question": "WHich FCC info has 3,000 ERP W?", "context": "CREATE TABLE table_name_22 (fcc_info VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_22 WHERE points = 19 AND opponent = \"new jersey devils\"", "question": "What's the average game against the New Jersey Devils with 19 points?", "context": "CREATE TABLE table_name_22 (game INTEGER, points VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_54 WHERE opponent = \"at boston patriots\" AND week > 3", "question": "Opponent of at boston patriots, and a Week larger than 3 had what average attendance?", "context": "CREATE TABLE table_name_54 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(fall_07) FROM table_name_34 WHERE fall_06 > 219", "question": "Name the average fall 07 for fall 07 more than 219", "context": "CREATE TABLE table_name_34 (fall_07 INTEGER, fall_06 INTEGER)"}, {"answer": "SELECT player FROM table_name_69 WHERE pick__number < 3 AND mls_team = \"fc dallas\"", "question": "Name the player for fc dallas pick number less than 3", "context": "CREATE TABLE table_name_69 (player VARCHAR, pick__number VARCHAR, mls_team VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_63 WHERE mls_team = \"real salt lake\" AND affiliation = \"ucla los angeles storm\"", "question": "Name the most pick number for real salt lake and affiliation of ucla los angeles storm", "context": "CREATE TABLE table_name_63 (pick__number INTEGER, mls_team VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT player FROM table_name_63 WHERE pick__number = 7", "question": "Name the player with pick number of 7", "context": "CREATE TABLE table_name_63 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_10 WHERE march < 12 AND score = \"10\u20131\"", "question": "Which Game has a March smaller than 12, and a Score of 10\u20131?", "context": "CREATE TABLE table_name_10 (game INTEGER, march VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE points = 88 AND record = \"38\u201322\u201312\"", "question": "Which Score has Points of 88, and a Record of 38\u201322\u201312?", "context": "CREATE TABLE table_name_84 (score VARCHAR, points VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_13 WHERE opponent = \"detroit red wings\" AND march < 12", "question": "Which Game has an Opponent of detroit red wings, and a March smaller than 12?", "context": "CREATE TABLE table_name_13 (game VARCHAR, opponent VARCHAR, march VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_85 WHERE game < 70 AND score = \"4\u20138\"", "question": "Which Points have a Game smaller than 70, and a Score of 4\u20138?", "context": "CREATE TABLE table_name_85 (points INTEGER, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_86 WHERE netflix = \"s05e22\"", "question": "Which segment a's Netflix is S05E22?", "context": "CREATE TABLE table_name_86 (segment_a VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT series_ep FROM table_name_59 WHERE segment_c = \"electric pole s transformer\"", "question": "Which series episode has a segment c that is Electric pole s transformer?", "context": "CREATE TABLE table_name_59 (series_ep VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT MAX(episode) FROM table_name_23 WHERE netflix = \"s05e23\"", "question": "What largest episode number's Netflix is S05E23?", "context": "CREATE TABLE table_name_23 (episode INTEGER, netflix VARCHAR)"}, {"answer": "SELECT segment_c FROM table_name_58 WHERE segment_b = \"refrigerators\"", "question": "Which segment c's segment b is refrigerators?", "context": "CREATE TABLE table_name_58 (segment_c VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT races FROM table_name_38 WHERE points = \"125\"", "question": "Which races did they accumulate at least 125 points?", "context": "CREATE TABLE table_name_38 (races VARCHAR, points VARCHAR)"}, {"answer": "SELECT series FROM table_name_63 WHERE score = \"3 \u2013 8\"", "question": "Which Series has a Score of 3 \u2013 8?", "context": "CREATE TABLE table_name_63 (series VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE decision = \"myre\"", "question": "Which Date has a Decision of myre?", "context": "CREATE TABLE table_name_48 (date VARCHAR, decision VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_75 WHERE date = \"may 24\"", "question": "How many Attendances on may 24?", "context": "CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT series FROM table_name_86 WHERE date = \"may 18\"", "question": "Which Series are on may 18?", "context": "CREATE TABLE table_name_86 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_48 WHERE visitor = \"philadelphia\" AND date = \"may 20\"", "question": "How many Attendances that has a Visitor of philadelphia on may 20?", "context": "CREATE TABLE table_name_48 (attendance INTEGER, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_33 WHERE series = \"series tied 2\u20132\"", "question": "who is the Visitor that has a Series of series tied 2\u20132?", "context": "CREATE TABLE table_name_33 (visitor VARCHAR, series VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_88 WHERE score = \"4 \u2013 5\"", "question": "How many Attendances have a Score of 4 \u2013 5? Question 4", "context": "CREATE TABLE table_name_88 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_54 WHERE home = \"philadelphia\" AND series = \"flyers lead 1\u20130\"", "question": "WHo has a Home of philadelphia and a Series of flyers lead 1\u20130?", "context": "CREATE TABLE table_name_54 (visitor VARCHAR, home VARCHAR, series VARCHAR)"}, {"answer": "SELECT class FROM table_name_76 WHERE race = \"charlotte camel gt 500\"", "question": "What is the class of the Charlotte Camel gt 500 race?", "context": "CREATE TABLE table_name_76 (class VARCHAR, race VARCHAR)"}, {"answer": "SELECT race FROM table_name_20 WHERE length = \"12 hours\"", "question": "What is the race 12 hours in length?", "context": "CREATE TABLE table_name_20 (race VARCHAR, length VARCHAR)"}, {"answer": "SELECT class FROM table_name_35 WHERE race = \"coca-cola classic 12 hours of sebring\"", "question": "What is the class of the Coca-cola classic 12 hours of sebring race?", "context": "CREATE TABLE table_name_35 (class VARCHAR, race VARCHAR)"}, {"answer": "SELECT class FROM table_name_13 WHERE race = \"budweiser grand prix of miami\" AND length = \"3 hours\"", "question": "What is the class of the Budweiser Grand Prix of Miami race with a length of 3 hours?", "context": "CREATE TABLE table_name_13 (class VARCHAR, race VARCHAR, length VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE circuit = \"daytona international speedway\" AND race = \"paul revere 250\"", "question": "What is the date of the Paul Revere 250 race in the Daytona International Speedway circuit?", "context": "CREATE TABLE table_name_66 (date VARCHAR, circuit VARCHAR, race VARCHAR)"}, {"answer": "SELECT race FROM table_name_52 WHERE length = \"12 hours\"", "question": "What race is 12 hours in length?", "context": "CREATE TABLE table_name_52 (race VARCHAR, length VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_55 WHERE nationality = \"finland\"", "question": "What is the highest round for the pick from Finland?", "context": "CREATE TABLE table_name_55 (round INTEGER, nationality VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_34 WHERE player = \"joe barnes\"", "question": "What is the total number of rounds that Joe Barnes was picked?", "context": "CREATE TABLE table_name_34 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT order FROM table_name_9 WHERE olympic_games = \"tokyo\"", "question": "What was the order of the Tokyo olympic games?", "context": "CREATE TABLE table_name_9 (order VARCHAR, olympic_games VARCHAR)"}, {"answer": "SELECT club FROM table_name_46 WHERE year = 2012 AND order = \"15th\"", "question": "What was the 15th club in 2012?", "context": "CREATE TABLE table_name_46 (club VARCHAR, year VARCHAR, order VARCHAR)"}, {"answer": "SELECT medal FROM table_name_48 WHERE weight = \"fly\" AND boxer = \"michael conlon\"", "question": "What medal did Michael Conlon, with a weight of fly, win?", "context": "CREATE TABLE table_name_48 (medal VARCHAR, weight VARCHAR, boxer VARCHAR)"}, {"answer": "SELECT loss FROM table_name_50 WHERE attendance > 45 OFFSET 036", "question": "How many losses have more than 45,036 attendance?", "context": "CREATE TABLE table_name_50 (loss VARCHAR, attendance INTEGER)"}, {"answer": "SELECT SUM(attendance) FROM table_name_68 WHERE date = \"april 29\"", "question": "on april 29, what was the attendance?", "context": "CREATE TABLE table_name_68 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_40 WHERE date = \"april 9\"", "question": "on april 9 what was the attendance?", "context": "CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE score = \"postponed (rain) rescheduled for august 7\"", "question": "What date has postponed (rain) rescheduled for august 7 as the score?", "context": "CREATE TABLE table_name_27 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(partial_failures) FROM table_name_64 WHERE failures > 0 AND successes = 1", "question": "Failures larger than 0, and a Successes of 1 has what lowest partial failures?", "context": "CREATE TABLE table_name_64 (partial_failures INTEGER, failures VARCHAR, successes VARCHAR)"}, {"answer": "SELECT SUM(partial_failures) FROM table_name_35 WHERE successes < 6 AND launches > 1 AND failures = 2", "question": "Successes smaller than 6, and Launches larger than 1, and a Failures of 2 is what sum of the partial failures?", "context": "CREATE TABLE table_name_35 (partial_failures INTEGER, failures VARCHAR, successes VARCHAR, launches VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE location = \"pontiac silverdome\"", "question": "Who was the opposing team during a game in the Pontiac Silverdome?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE date = \"january 23\"", "question": "What was the final score for the January 23 game?", "context": "CREATE TABLE table_name_23 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(february) FROM table_name_43 WHERE opponent = \"philadelphia flyers\" AND game > 63", "question": "What is the highest Feb value having an opponent of the Philadelphia Flyers and is after game 63?", "context": "CREATE TABLE table_name_43 (february INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_47 WHERE game > 58 AND february > 16 AND record = \"40-20-4\"", "question": "Who was the opponent in games over 58, after Feb 16, and having a record of 40-20-4?", "context": "CREATE TABLE table_name_47 (opponent VARCHAR, record VARCHAR, game VARCHAR, february VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_3 WHERE genre = \"rock (track)\"", "question": "Which Year has a Genre of rock (track)?", "context": "CREATE TABLE table_name_3 (year INTEGER, genre VARCHAR)"}, {"answer": "SELECT MAX(year) AS Inducted FROM table_name_28 WHERE year < 1965", "question": "Which Year Inducted is the highest one that has a Year smaller than 1965?", "context": "CREATE TABLE table_name_28 (year INTEGER)"}, {"answer": "SELECT MAX(overall) FROM table_name_3 WHERE pick__number < 9 AND name = \"mike pearson\"", "question": "Which Overall is the highest one that has a Pick # smaller than 9, and a Name of mike pearson?", "context": "CREATE TABLE table_name_3 (overall INTEGER, pick__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_34 WHERE position = \"wide receiver\" AND overall < 222", "question": "Which Round is the lowest one that has a Position of wide receiver, and an Overall smaller than 222?", "context": "CREATE TABLE table_name_34 (round INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT record FROM table_name_78 WHERE date = \"september 21\"", "question": "What was the Record on September 21?", "context": "CREATE TABLE table_name_78 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_10 WHERE save = \"david weathers (15)\"", "question": "What was the record the day David Weathers (15) had a save?", "context": "CREATE TABLE table_name_10 (record VARCHAR, save VARCHAR)"}, {"answer": "SELECT save FROM table_name_49 WHERE date = \"september 2\"", "question": "Who had a save on September 2?", "context": "CREATE TABLE table_name_49 (save VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_16 WHERE date = \"september 2\"", "question": "What was the loss on September 2?", "context": "CREATE TABLE table_name_16 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(byes) FROM table_name_70 WHERE draws = 1 AND wins = 5 AND losses < 12", "question": "What is the total number of byes that are associated with 1 draw, 5 wins, and fewer than 12 losses?", "context": "CREATE TABLE table_name_70 (byes INTEGER, losses VARCHAR, draws VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_67 WHERE draws < 1 AND wins < 8", "question": "What is the total number of byes associated with fewer than 8 wins and fewer than 1 draw?", "context": "CREATE TABLE table_name_67 (byes VARCHAR, draws VARCHAR, wins VARCHAR)"}, {"answer": "SELECT ntfa_div_1 FROM table_name_30 WHERE draws < 1 AND wins = 15", "question": "What is the NTFA Div 1 team that has 15 wins and less than 1 draw?", "context": "CREATE TABLE table_name_30 (ntfa_div_1 VARCHAR, draws VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_78 WHERE draws = 0 AND byes < 0", "question": "What is the average number of losses for teams with 0 draws and 0 byes?", "context": "CREATE TABLE table_name_78 (losses INTEGER, draws VARCHAR, byes VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_65 WHERE wins = 5 AND against < 1607", "question": "What is the most number of losses for teams with 5 wins and an against value under 1607?", "context": "CREATE TABLE table_name_65 (losses INTEGER, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(race) FROM table_name_72 WHERE podium > 1 AND season = \"1982\" AND flap < 1", "question": "Race that has a Podium larger than 1, and a Season of 1982, and a flap smaller than 1 had how many number of races?", "context": "CREATE TABLE table_name_72 (race VARCHAR, flap VARCHAR, podium VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(podium) FROM table_name_92 WHERE pole < 0", "question": "Pole smaller than 0 had what lowest podium?", "context": "CREATE TABLE table_name_92 (podium INTEGER, pole INTEGER)"}, {"answer": "SELECT AVG(podium) FROM table_name_10 WHERE flap = 0 AND race < 2 AND season = \"1989\" AND pole < 0", "question": "Flap of 0, and a Race smaller than 2, and a Season of 1989, and a Pole smaller than 0 had what average podium?", "context": "CREATE TABLE table_name_10 (podium INTEGER, pole VARCHAR, season VARCHAR, flap VARCHAR, race VARCHAR)"}, {"answer": "SELECT record FROM table_name_73 WHERE date = \"august 24\"", "question": "What was the record on august 24?", "context": "CREATE TABLE table_name_73 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT route FROM table_name_85 WHERE elevation = \"11,158 feet 3401 m\"", "question": "Elevation of 11,158 feet 3401 m had what route?", "context": "CREATE TABLE table_name_85 (route VARCHAR, elevation VARCHAR)"}, {"answer": "SELECT elevation FROM table_name_24 WHERE route > 24 AND highway = \"trail ridge road\"", "question": "Route larger than 24, and a Highway of trail ridge road had what elevation?", "context": "CREATE TABLE table_name_24 (elevation VARCHAR, route VARCHAR, highway VARCHAR)"}, {"answer": "SELECT AVG(route) FROM table_name_12 WHERE elevation = \"12,183 feet 3713 m\"", "question": "Elevation of 12,183 feet 3713 m is what average route?", "context": "CREATE TABLE table_name_12 (route INTEGER, elevation VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_28 WHERE results\u00b9 = \"1:3\"", "question": "What Opponent has a Results\u00b9 of 1:3?", "context": "CREATE TABLE table_name_28 (opponent VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE results\u00b9 = \"1:2\"", "question": "On what Date was the Results\u00b9 1:2?", "context": "CREATE TABLE table_name_76 (date VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT city FROM table_name_39 WHERE results\u00b9 = \"1:2\"", "question": "What City had Results\u00b9 of 1:2?", "context": "CREATE TABLE table_name_39 (city VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE opponent = \"wales\"", "question": "On what Date was Wales the Opponent?", "context": "CREATE TABLE table_name_76 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT city FROM table_name_6 WHERE results\u00b9 = \"1:0\" AND opponent = \"bulgaria\"", "question": "In what City was Bulgaria the Opponent with Results\u00b9 of 1:0?", "context": "CREATE TABLE table_name_6 (city VARCHAR, results\u00b9 VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_60 WHERE opponent = \"vancouver canucks\" AND november < 4", "question": "What Vancouver canucks game was on a date closest to November 4?", "context": "CREATE TABLE table_name_60 (game INTEGER, opponent VARCHAR, november VARCHAR)"}, {"answer": "SELECT year FROM table_name_26 WHERE color_commentator_s_ = \"jerry sichting\"", "question": "Name the year for jerry sichting", "context": "CREATE TABLE table_name_26 (year VARCHAR, color_commentator_s_ VARCHAR)"}, {"answer": "SELECT studio_host FROM table_name_91 WHERE play_by_play = \"glenn ordway\" AND color_commentator_s_ = \"jerry sichting\" AND year = \"1993-94\"", "question": "Name the studio host for glenn ordway and jerry sichting with year of 1993-94", "context": "CREATE TABLE table_name_91 (studio_host VARCHAR, year VARCHAR, play_by_play VARCHAR, color_commentator_s_ VARCHAR)"}, {"answer": "SELECT flagship_station FROM table_name_74 WHERE color_commentator_s_ = \"cedric maxwell\" AND year = \"1995-96\"", "question": "Name the flagship station for cedric maxwell and year of 1995-96", "context": "CREATE TABLE table_name_74 (flagship_station VARCHAR, color_commentator_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT architect FROM table_name_68 WHERE height_[m] = 42 AND floors = 10", "question": "Who was the architect of the 10 floor building with a height of 42 M?", "context": "CREATE TABLE table_name_68 (architect VARCHAR, floors VARCHAR, height_ VARCHAR, m VARCHAR)"}, {"answer": "SELECT height_[m] FROM table_name_27 WHERE architect = \"ross and macfarlane\"", "question": "What is the height of the building built by architects Ross and Macfarlane?", "context": "CREATE TABLE table_name_27 (height_ VARCHAR, m VARCHAR, architect VARCHAR)"}, {"answer": "SELECT architect FROM table_name_43 WHERE built < 1915 AND building = \"electric railway chambers\"", "question": "Who was the architect that built the Electric Railway Chambers before 1915?", "context": "CREATE TABLE table_name_43 (architect VARCHAR, built VARCHAR, building VARCHAR)"}, {"answer": "SELECT time FROM table_name_34 WHERE date = \"july 18\" AND loss = \"lilly (3-3)\"", "question": "What is the Time on july 18 that has a Loss of lilly (3-3)?", "context": "CREATE TABLE table_name_34 (time VARCHAR, date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_75 WHERE record = \"43-56\"", "question": "Which Opponent has a Record of 43-56?", "context": "CREATE TABLE table_name_75 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE date = \"july 18\" AND record = \"41-51\"", "question": "What is the Score on July 18 that has Record of 41-51?", "context": "CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_23 WHERE date = \"july 31\"", "question": "Which Record is on july 31?", "context": "CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_18 WHERE loss = \"weaver (9-9)\"", "question": "Which Opponent has a Loss of weaver (9-9)?", "context": "CREATE TABLE table_name_18 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT season FROM table_name_27 WHERE poles > 14", "question": "Which Season was the Poles greater than 14?", "context": "CREATE TABLE table_name_27 (season VARCHAR, poles INTEGER)"}, {"answer": "SELECT MAX(season) FROM table_name_7 WHERE percentage = \"67%\" AND driver = \"alberto ascari\"", "question": "Which is the highest Season with a Percentage of 67% and Alberto Ascari as a Driver?", "context": "CREATE TABLE table_name_7 (season INTEGER, percentage VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_16 WHERE races > 16", "question": "Name the Driver that has Races greater than 16?", "context": "CREATE TABLE table_name_16 (driver VARCHAR, races INTEGER)"}, {"answer": "SELECT AVG(long) FROM table_name_34 WHERE gp_gs < 14 AND avg_g < 0.8 AND gain < 3 AND loss > 8", "question": "What is the average Long that has a GP-GS less than 14, a AVg/G less than 0.8 and a Gain less than 3 and a Loss greater than 8?", "context": "CREATE TABLE table_name_34 (long INTEGER, loss VARCHAR, gain VARCHAR, gp_gs VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT MIN(avg_g) FROM table_name_99 WHERE long < 0", "question": "What is the lowest Avg/G with a Long less than 0?", "context": "CREATE TABLE table_name_99 (avg_g INTEGER, long INTEGER)"}, {"answer": "SELECT SUM(avg_g) FROM table_name_79 WHERE name = \"blaine gabbert\" AND long > 30", "question": "What is the amount of Avg/G with a Name of blaine gabbert and a Long greater than 30?", "context": "CREATE TABLE table_name_79 (avg_g INTEGER, name VARCHAR, long VARCHAR)"}, {"answer": "SELECT COUNT(long) FROM table_name_3 WHERE loss > 0 AND avg_g = 124.9", "question": "What is the total number of Long with a Av/g of 124.9 but Loss greater than 0?", "context": "CREATE TABLE table_name_3 (long VARCHAR, loss VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE label = \"parlophone\" AND format = \"lp\"", "question": "What date has parlophone as the label, and lp as a format?", "context": "CREATE TABLE table_name_17 (date VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT school FROM table_name_37 WHERE state = \"oregon\" AND city = \"ashland\"", "question": "What school has oregon as the state, and ashland as the city?", "context": "CREATE TABLE table_name_37 (school VARCHAR, state VARCHAR, city VARCHAR)"}, {"answer": "SELECT conference FROM table_name_71 WHERE school = \"mayville state\"", "question": "What conference has mayville state as the school?", "context": "CREATE TABLE table_name_71 (conference VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_37 WHERE city = \"belleville\"", "question": "What school has belleville as the city?", "context": "CREATE TABLE table_name_37 (school VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_43 WHERE team = \"trojans\" AND school = \"taylor\"", "question": "What city has trojans as the team, and taylor as the school?", "context": "CREATE TABLE table_name_43 (city VARCHAR, team VARCHAR, school VARCHAR)"}, {"answer": "SELECT team FROM table_name_58 WHERE conference = \"great plains\" AND school = \"concordia (ne)\"", "question": "What team has great plains as the conference, and concordia (ne) as the school?", "context": "CREATE TABLE table_name_58 (team VARCHAR, conference VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_53 WHERE city = \"hillsboro\"", "question": "What school is in hillsboro city?", "context": "CREATE TABLE table_name_53 (school VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_92 WHERE february > 11 AND record = \"23-7-8\"", "question": "How many games have a February larger than 11, and a Record of 23-7-8?", "context": "CREATE TABLE table_name_92 (game VARCHAR, february VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(february) FROM table_name_95 WHERE game > 37 AND opponent = \"chicago black hawks\"", "question": "How much February has a Game larger than 37, and an Opponent of chicago black hawks?", "context": "CREATE TABLE table_name_95 (february VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT february FROM table_name_91 WHERE game = 40", "question": "Which February has a Game of 40?", "context": "CREATE TABLE table_name_91 (february VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_51 WHERE february < 8 AND opponent = \"montreal canadiens\"", "question": "Which Record has a February smaller than 8, and an Opponent of montreal canadiens?", "context": "CREATE TABLE table_name_51 (record VARCHAR, february VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE game > 40 AND record = \"25-10-8\"", "question": "Which Score has a Game larger than 40, and a Record of 25-10-8?", "context": "CREATE TABLE table_name_81 (score VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT team_performance FROM table_name_28 WHERE year = 1977", "question": "What was the team performance in 1977?", "context": "CREATE TABLE table_name_28 (team_performance VARCHAR, year VARCHAR)"}, {"answer": "SELECT position FROM table_name_47 WHERE team_defense_rank > 3 AND year < 1992 AND team_performance = \"lost super bowl xxv\"", "question": "What was the position of the player whose team lost super bowl xxv before 1992, with a team defense rank larger than 3?", "context": "CREATE TABLE table_name_47 (position VARCHAR, team_performance VARCHAR, team_defense_rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT round FROM table_name_94 WHERE pick > 68 AND player = \"joe patton\"", "question": "What round was Joe Patton selected with a pick over 68?", "context": "CREATE TABLE table_name_94 (round VARCHAR, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT sail_number FROM table_name_47 WHERE position < 2", "question": "Which Sail number has a Position smaller than 2?", "context": "CREATE TABLE table_name_47 (sail_number VARCHAR, position INTEGER)"}, {"answer": "SELECT state_country FROM table_name_43 WHERE skipper = \"ray roberts\"", "question": "WHICH State/country that has ray roberts?", "context": "CREATE TABLE table_name_43 (state_country VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT surface FROM table_name_30 WHERE tournament = \"kuwait\"", "question": "What surface did Smeets play on during the Kuwait tournament?", "context": "CREATE TABLE table_name_30 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_11 WHERE opponent_in_the_final = \"mark nielsen\"", "question": "What tournament did Smeets play against Mark nielsen?", "context": "CREATE TABLE table_name_11 (tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_91 WHERE tournament = \"kuwait\"", "question": "Who was the opponent during the tournament in Kuwait?", "context": "CREATE TABLE table_name_91 (opponent_in_the_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT weight FROM table_name_42 WHERE club = \"vk primorac kotor\"", "question": "What is the weight of the player from the vk primorac kotor club?", "context": "CREATE TABLE table_name_42 (weight VARCHAR, club VARCHAR)"}, {"answer": "SELECT weight FROM table_name_96 WHERE club = \"pvk jadran\"", "question": "What is the weight of the player from pvk jadran club?", "context": "CREATE TABLE table_name_96 (weight VARCHAR, club VARCHAR)"}, {"answer": "SELECT name_v_t_e FROM table_name_87 WHERE club = \"pro recco\"", "question": "What is the name of the player from club pro recco?", "context": "CREATE TABLE table_name_87 (name_v_t_e VARCHAR, club VARCHAR)"}, {"answer": "SELECT height FROM table_name_96 WHERE pos = \"gk\" AND club = \"vk primorac kotor\"", "question": "What is the height of the player from club vk primorac kotor who plays gk?", "context": "CREATE TABLE table_name_96 (height VARCHAR, pos VARCHAR, club VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_23 WHERE team_2 = \"gombe united f.c.\"", "question": "What is Team 1 where Team 2 is gombe united f.c.?", "context": "CREATE TABLE table_name_23 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_13 WHERE team_2 = \"al tahrir\"", "question": "What is Team 1 where Team 2 is al tahrir?", "context": "CREATE TABLE table_name_13 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_9 WHERE team_2 = \"fc 105 libreville\"", "question": "What is the 2nd leg where Team 2 is fc 105 libreville?", "context": "CREATE TABLE table_name_9 (team_2 VARCHAR)"}, {"answer": "SELECT course FROM table_name_68 WHERE edition = \"117th\"", "question": "What was the course called that had an Edition of 117th?", "context": "CREATE TABLE table_name_68 (course VARCHAR, edition VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_78 WHERE location = \"brookline, massachusetts\"", "question": "What was the earliest year that had a location of Brookline, Massachusetts?", "context": "CREATE TABLE table_name_78 (year INTEGER, location VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_21 WHERE edition = \"115th\"", "question": "What year had an edition of 115th?", "context": "CREATE TABLE table_name_21 (year INTEGER, edition VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_73 WHERE class = \"350cc\" AND rank = \"5th\"", "question": "How many points did ginger have when she was ranked 5th on a 350cc class bike?", "context": "CREATE TABLE table_name_73 (points VARCHAR, class VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_29 WHERE rank = \"16th\" AND points > 12", "question": "What year was she ranked 16th with over 12 points?", "context": "CREATE TABLE table_name_29 (year VARCHAR, rank VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_85 WHERE class = \"350cc\" AND rank = \"16th\" AND wins > 0", "question": "What year was she on a 350cc class bike, ranked 16th, with over 0 wins?", "context": "CREATE TABLE table_name_85 (year INTEGER, wins VARCHAR, class VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_40 WHERE team = \"bultaco\" AND rank = \"6th\"", "question": "How many points did she have with team bultaco, ranked 6th?", "context": "CREATE TABLE table_name_40 (points INTEGER, team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT kashmiri FROM table_name_90 WHERE indonesian = \"senin\"", "question": "What is the Kashmiri word for the Indonesian word senin?", "context": "CREATE TABLE table_name_90 (kashmiri VARCHAR, indonesian VARCHAR)"}, {"answer": "SELECT turkish FROM table_name_51 WHERE bangla = \"shombar \u09b8\u09cb\u09ae\u09ac\u09be\u09b0\"", "question": "What is the Turkish word for the Bangla word shombar \u09b8\u09cb\u09ae\u09ac\u09be\u09b0?", "context": "CREATE TABLE table_name_51 (turkish VARCHAR, bangla VARCHAR)"}, {"answer": "SELECT pashto FROM table_name_24 WHERE somali = \"talaado\"", "question": "What is the Pashto word for the Somali word talaado?", "context": "CREATE TABLE table_name_24 (pashto VARCHAR, somali VARCHAR)"}, {"answer": "SELECT punjabi__pakistan_ FROM table_name_58 WHERE kurdish = \"\u06cc\u0640\u0640\u0640\u06d5\u06a9 \u0634\u0640\u06d5\u0645\u0640\u0645\u0640\u06d5 yak sham\"", "question": "What is the Punjabi (Pakistan) word for the Kurdish word \u06cc\u0640\u0640\u0640\u06d5\u06a9 \u0634\u0640\u06d5\u0645\u0640\u0645\u0640\u06d5 yak sham?", "context": "CREATE TABLE table_name_58 (punjabi__pakistan_ VARCHAR, kurdish VARCHAR)"}, {"answer": "SELECT maltese FROM table_name_6 WHERE malay = \"rabu\"", "question": "What is the Maltese word for the Malay word rabu?", "context": "CREATE TABLE table_name_6 (maltese VARCHAR, malay VARCHAR)"}, {"answer": "SELECT pashto FROM table_name_76 WHERE malayalam = \"\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d02 vyazham\"", "question": "What is the Pashto word for the Malayalam word \u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d02 vyazham?", "context": "CREATE TABLE table_name_76 (pashto VARCHAR, malayalam VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE date = \"june 22\"", "question": "Which Score has a Date of june 22?", "context": "CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_34 WHERE opponent = \"rockies\" AND record = \"32-30\"", "question": "How much Attendance has an Opponent of rockies, and a Record of 32-30?", "context": "CREATE TABLE table_name_34 (attendance INTEGER, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_71 WHERE round = 2", "question": "Who was the opponent in which the bout ended in round 2?", "context": "CREATE TABLE table_name_71 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT method FROM table_name_82 WHERE time = \"4:15\"", "question": "What was the method of the bout lasting 4:15?", "context": "CREATE TABLE table_name_82 (method VARCHAR, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE time = \"4:15\"", "question": "What was the record after the bout lasting 4:15?", "context": "CREATE TABLE table_name_57 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_64 WHERE round < 13 AND position = \"fullback\"", "question": "How many Pick has a Round smaller than 13, and a Position of fullback?", "context": "CREATE TABLE table_name_64 (pick VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE position = \"end\" AND school_club_team = \"oregon state\"", "question": "WHo has a Position of end and a School/Club Team of oregon state?", "context": "CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_38 WHERE player = \"brunel christensen\" AND pick < 293", "question": "Which Round has a Player of brunel christensen and a Pick smaller than 293?", "context": "CREATE TABLE table_name_38 (round INTEGER, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT score FROM table_name_26 WHERE date = \"july 25\"", "question": "What score was on July 25?", "context": "CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT rules FROM table_name_2 WHERE event = \"n/a\" AND result = \"loss\" AND location = \"winsford england\"", "question": "Which rule has The Event of n/a, The Result of loss, and The Location of winsford england?", "context": "CREATE TABLE table_name_2 (rules VARCHAR, location VARCHAR, event VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE round = \"4\" AND rules = \"thai boxing\"", "question": "Which Opponent has a Round of 4, and a Rules of thai boxing?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, round VARCHAR, rules VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_38 WHERE round = \"3\" AND time = \"n/a\" AND rules = \"n/a\"", "question": "Which Opponent has a Round of 3, a Time of n/a, and a Rules of n/a?", "context": "CREATE TABLE table_name_38 (opponent VARCHAR, rules VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_99 WHERE rules = \"thai boxing\" AND round = \"n/a\" AND opponent = \"everton crawford\"", "question": "Where has a Rules of thai boxing, and a Round of n/a, and an Opponent of everton crawford?", "context": "CREATE TABLE table_name_99 (location VARCHAR, opponent VARCHAR, rules VARCHAR, round VARCHAR)"}, {"answer": "SELECT rules FROM table_name_26 WHERE method = \"ko (punch)\"", "question": "WHich Rules has a Method of ko (punch)?", "context": "CREATE TABLE table_name_26 (rules VARCHAR, method VARCHAR)"}, {"answer": "SELECT torque FROM table_name_63 WHERE capacity = \"1905 cc\"", "question": "What torque does a 1905 cc capacity have?", "context": "CREATE TABLE table_name_63 (torque VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT torque FROM table_name_30 WHERE name = \"1.9 diesel\" AND capacity = \"1905 cc\"", "question": "What torque does 1.9 diesel with 1905 cc have?", "context": "CREATE TABLE table_name_30 (torque VARCHAR, name VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT torque FROM table_name_18 WHERE type = \"daewoo\"", "question": "What torque does daewoo have?", "context": "CREATE TABLE table_name_18 (torque VARCHAR, type VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE score = \"3\u20134\" AND attendance > 34 OFFSET 609", "question": "Score of 3\u20134, and a Attendance larger than 34,609 happened on what date?", "context": "CREATE TABLE table_name_39 (date VARCHAR, score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE record = \"12\u201315\"", "question": "Record of 12\u201315 happened on what date?", "context": "CREATE TABLE table_name_85 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE date = \"april 9\"", "question": "Date of april 9 had what score?", "context": "CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_10 WHERE record = \"11\u201312\"", "question": "Record of 11\u201312 involved what average attendance figures?", "context": "CREATE TABLE table_name_10 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT predecessor FROM table_name_54 WHERE district < 11 AND congress = \"68th\" AND date = \"may 1, 1923\"", "question": "What predecessor has a district less than 11, 68th as the Congress, and may 1, 1923 as the date?", "context": "CREATE TABLE table_name_54 (predecessor VARCHAR, date VARCHAR, district VARCHAR, congress VARCHAR)"}, {"answer": "SELECT hypertransport_version FROM table_name_51 WHERE max_aggregate_bandwidth__bi_directional_ = \"22.4 gb/s\"", "question": "What Hyper Transport version has 22.4 gb/s of Max. Aggregate bandwidth?", "context": "CREATE TABLE table_name_51 (hypertransport_version VARCHAR, max_aggregate_bandwidth__bi_directional_ VARCHAR)"}, {"answer": "SELECT max_aggregate_bandwidth__bi_directional_ FROM table_name_17 WHERE hypertransport_version = 2", "question": "What is the Max Aggregate bandwidth with a HyperTransport of 2?", "context": "CREATE TABLE table_name_17 (max_aggregate_bandwidth__bi_directional_ VARCHAR, hypertransport_version VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_80 WHERE city = \"zagreb\"", "question": "Who was the opposing team during the game in Zagreb?", "context": "CREATE TABLE table_name_80 (opponent VARCHAR, city VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE record = \"35-31\"", "question": "The record of 35-31 has what score?", "context": "CREATE TABLE table_name_52 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_69 WHERE laps = 1 AND time_retired = \"accident\"", "question": "Which Manufacturer has 1 lap and had an accident?", "context": "CREATE TABLE table_name_69 (manufacturer VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT rider FROM table_name_23 WHERE manufacturer = \"honda\" AND time_retired = \"+44.814\"", "question": "Which rider has a Manufacturer of honda with a time of +44.814?", "context": "CREATE TABLE table_name_23 (rider VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_39 WHERE time_retired = \"+1:21.239\" AND laps > 25", "question": "How many grids have a time of +1:21.239 and more than 25 laps?", "context": "CREATE TABLE table_name_39 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(episode) FROM table_name_29 WHERE performer_1 = \"jim sweeney\" AND date = \"19 march 1993\"", "question": "What is the average episode number on 19 March 1993 with Jim Sweeney as performer 1?", "context": "CREATE TABLE table_name_29 (episode INTEGER, performer_1 VARCHAR, date VARCHAR)"}, {"answer": "SELECT performer_2 FROM table_name_83 WHERE performer_4 = \"josie lawrence\" AND date = \"9 april 1993\"", "question": "Who is performer 2 of the episode on 9 April 1993 with Josie Lawrence as performer 4?", "context": "CREATE TABLE table_name_83 (performer_2 VARCHAR, performer_4 VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE performer_2 = \"ryan stiles\" AND performer_3 = \"colin mochrie\" AND performer_4 = \"tony slattery\"", "question": "What is the date of the episode with Ryan Stiles as performer 2, Colin Mochrie as performer 3, and Tony Slattery as performer 4?", "context": "CREATE TABLE table_name_26 (date VARCHAR, performer_4 VARCHAR, performer_2 VARCHAR, performer_3 VARCHAR)"}, {"answer": "SELECT performer_4 FROM table_name_86 WHERE performer_1 = \"jim sweeney\" AND episode = 3", "question": "Who is performer 4 on episode 3, where Jim Sweeney was performer 1?", "context": "CREATE TABLE table_name_86 (performer_4 VARCHAR, performer_1 VARCHAR, episode VARCHAR)"}, {"answer": "SELECT SUM(episode) FROM table_name_25 WHERE performer_1 = \"jim sweeney\" AND performer_4 = \"mike mcshane\"", "question": "What is the episode number where Jim Sweeney was performer 1 and Mike Mcshane was performer 4?", "context": "CREATE TABLE table_name_25 (episode INTEGER, performer_1 VARCHAR, performer_4 VARCHAR)"}, {"answer": "SELECT wrestler FROM table_name_23 WHERE entered = 5 AND pinned = \"mvp\"", "question": "Which Wrestler has an Entered of 5, and a Pinned of mvp?", "context": "CREATE TABLE table_name_23 (wrestler VARCHAR, entered VARCHAR, pinned VARCHAR)"}, {"answer": "SELECT MIN(stations_served) FROM table_name_39 WHERE line_color = \"brown\"", "question": "What route with the line color brown has the lowest number of stations served?", "context": "CREATE TABLE table_name_39 (stations_served INTEGER, line_color VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_10 WHERE college_junior_club_team__league_ = \"torpedo yaroslavl (rus)\"", "question": "Which Round is the highest one that has a College/Junior/Club Team (League) of torpedo yaroslavl (rus)?", "context": "CREATE TABLE table_name_10 (round INTEGER, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_28 WHERE player = \"todd fedoruk\"", "question": "Which Round has a Player of todd fedoruk?", "context": "CREATE TABLE table_name_28 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_89 WHERE time_retired = \"+1 lap\" AND driver = \"s\u00e9bastien bourdais\" AND laps > 70", "question": "How much Grid has a Time/Retired of +1 lap, and a Driver of s\u00e9bastien bourdais, and Laps larger than 70?", "context": "CREATE TABLE table_name_89 (grid VARCHAR, laps VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_70 WHERE driver = \"david coulthard\" AND grid < 14", "question": "How many Laps have a Driver of david coulthard, and a Grid smaller than 14?", "context": "CREATE TABLE table_name_70 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_52 WHERE grid = 15", "question": "How many Laps have a Grid of 15?", "context": "CREATE TABLE table_name_52 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT catalogno FROM table_name_31 WHERE remark = \"#160 us\"", "question": "Which Catalogno was #160 us?", "context": "CREATE TABLE table_name_31 (catalogno VARCHAR, remark VARCHAR)"}, {"answer": "SELECT title FROM table_name_54 WHERE year = 1971", "question": "What title was released in 1971?", "context": "CREATE TABLE table_name_54 (title VARCHAR, year VARCHAR)"}, {"answer": "SELECT format FROM table_name_26 WHERE catalogno = \"st 491\"", "question": "Whati s the format for the catalogno of st 491?", "context": "CREATE TABLE table_name_26 (format VARCHAR, catalogno VARCHAR)"}, {"answer": "SELECT year FROM table_name_58 WHERE remark = \"#104 us\"", "question": "What year was remark #104 us?", "context": "CREATE TABLE table_name_58 (year VARCHAR, remark VARCHAR)"}, {"answer": "SELECT title FROM table_name_61 WHERE remark = \"#21 us [riaa certified gold january 3, 1990]\"", "question": "What title had a remark of #21 us [riaa certified gold january 3, 1990]?", "context": "CREATE TABLE table_name_61 (title VARCHAR, remark VARCHAR)"}, {"answer": "SELECT catalogno FROM table_name_31 WHERE year = 1971 AND remark = \"#27 us\"", "question": "What catalogno was in 1971 and had a remark of #27 us?", "context": "CREATE TABLE table_name_31 (catalogno VARCHAR, year VARCHAR, remark VARCHAR)"}, {"answer": "SELECT class_aAAAA FROM table_name_56 WHERE school_year = \"1990-91\"", "question": "what AAAAA class has the school year of 1990-91?", "context": "CREATE TABLE table_name_56 (class_aAAAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aAA FROM table_name_50 WHERE school_year = \"1989-90\"", "question": "what AAA class has a school year of 1989-90?", "context": "CREATE TABLE table_name_50 (class_aAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aA FROM table_name_46 WHERE class_aAA = commerce", "question": "what AA class has a AAA class of commerce?", "context": "CREATE TABLE table_name_46 (class_aA VARCHAR, class_aAA VARCHAR, commerce VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_12 WHERE opponent = \"baltimore colts\" AND attendance < 41 OFFSET 062", "question": "What is the average week for the game against baltimore colts with less than 41,062 in attendance?", "context": "CREATE TABLE table_name_12 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_14 WHERE opponent = \"philadelphia eagles\" AND attendance < 31 OFFSET 066", "question": "What was the average week for the gaime against the philadelphia eagles with less than 31,066 in attendance?", "context": "CREATE TABLE table_name_14 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_27 WHERE week > 1 AND date = \"november 12, 1961\"", "question": "What is the highest attendance for the game after week 1 on November 12, 1961?", "context": "CREATE TABLE table_name_27 (attendance INTEGER, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_37 WHERE week = 4", "question": "What was the result of the game on week 4?", "context": "CREATE TABLE table_name_37 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_79 WHERE player = \"joe patterson\"", "question": "What is the lowest Round of joe patterson?", "context": "CREATE TABLE table_name_79 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_16 WHERE round > 16", "question": "Which School/Club Team has a Round larger than 16?", "context": "CREATE TABLE table_name_16 (school_club_team VARCHAR, round INTEGER)"}, {"answer": "SELECT MAX(points) FROM table_name_64 WHERE position < 1", "question": "What is listed as the highest Points that's got a Position that's smaller than 1?", "context": "CREATE TABLE table_name_64 (points INTEGER, position INTEGER)"}, {"answer": "SELECT AVG(draws) FROM table_name_46 WHERE played < 18", "question": "What is the Draws average that has a Played that's smaller than 18?", "context": "CREATE TABLE table_name_46 (draws INTEGER, played INTEGER)"}, {"answer": "SELECT MIN(wins) FROM table_name_21 WHERE team = \"olimpia\" AND draws < 4", "question": "What is the lowest Wins that has the Team of Olimpia and Draws that's smaller than 4?", "context": "CREATE TABLE table_name_21 (wins INTEGER, team VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_59 WHERE team = \"cerro porte\u00f1o\" AND position > 1", "question": "What is the highest Played that's for the Team of Cerro Porte\u00f1o, with a Position that's larger than 1?", "context": "CREATE TABLE table_name_59 (played INTEGER, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_74 WHERE opponent = \"marinko matosevic\"", "question": "Which tournament included an opponent of Marinko Matosevic?", "context": "CREATE TABLE table_name_74 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE score = \"6-3, 6-3\"", "question": "Who was the opponent when the score was 6-3, 6-3?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE home = \"ny islanders\"", "question": "Can you tell me the Record that has the Home of ny islanders?", "context": "CREATE TABLE table_name_26 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_42 WHERE date = \"december 15\"", "question": "Can you tell me the Record that has the Date of december 15?", "context": "CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE home = \"detroit\" AND visitor = \"phoenix\"", "question": "Can you tell me the Record that has the Home of detroit, and the Visitor of phoenix?", "context": "CREATE TABLE table_name_59 (record VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE visitor = \"florida\"", "question": "Can you tell me the Date that has the Visitor of florida?", "context": "CREATE TABLE table_name_84 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT position FROM table_name_39 WHERE f_laps = \"test driver\"", "question": "Which position had f/laps that was test driver?", "context": "CREATE TABLE table_name_39 (position VARCHAR, f_laps VARCHAR)"}, {"answer": "SELECT poles FROM table_name_47 WHERE position = \"8th\"", "question": "Which poles were there for the 8th position?", "context": "CREATE TABLE table_name_47 (poles VARCHAR, position VARCHAR)"}, {"answer": "SELECT races FROM table_name_40 WHERE series = \"formula one\" AND poles = \"test driver\"", "question": "What race was there in the formula one series when there was a test driver?", "context": "CREATE TABLE table_name_40 (races VARCHAR, series VARCHAR, poles VARCHAR)"}, {"answer": "SELECT AVG(extra_points_1_point) FROM table_name_22 WHERE total_points < 30 AND touchdowns__5_points_ = 5", "question": "Which Extra points 1 point has a Total Points smaller than 30, and Touchdowns (5 points) of 5?", "context": "CREATE TABLE table_name_22 (extra_points_1_point INTEGER, total_points VARCHAR, touchdowns__5_points_ VARCHAR)"}, {"answer": "SELECT COUNT(touchdowns__5_points_) FROM table_name_50 WHERE extra_points_1_point = 0 AND field_goals__5_points_ > 0", "question": "How many Touchdowns (5 points) have an Extra points 1 point of 0, and a Field goals (5 points) larger than 0?", "context": "CREATE TABLE table_name_50 (touchdowns__5_points_ VARCHAR, extra_points_1_point VARCHAR, field_goals__5_points_ VARCHAR)"}, {"answer": "SELECT MAX(extra_points_1_point) FROM table_name_59 WHERE total_points < 8", "question": "Which Extra points 1 point is the highest one that has a Total Points smaller than 8?", "context": "CREATE TABLE table_name_59 (extra_points_1_point INTEGER, total_points INTEGER)"}, {"answer": "SELECT MIN(extra_points_1_point) FROM table_name_95 WHERE player = \"walter shaw\"", "question": "Which Extra points 1 point is the lowest one that has a Player of walter shaw?", "context": "CREATE TABLE table_name_95 (extra_points_1_point INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(field_goals__5_points_) FROM table_name_59 WHERE total_points = 123 AND touchdowns__5_points_ > 13", "question": "How many Field goals (5 points) have a Total Points of 123, and Touchdowns (5 points) larger than 13?", "context": "CREATE TABLE table_name_59 (field_goals__5_points_ VARCHAR, total_points VARCHAR, touchdowns__5_points_ VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_52 WHERE decision = \"parent\" AND record = \"42\u201318\u201310\"", "question": "How many people attended the game with parent recording the decision and a Record of 42\u201318\u201310?", "context": "CREATE TABLE table_name_52 (attendance INTEGER, decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_8 WHERE home = \"vancouver\"", "question": "What is the team's record when vancouver was at home?", "context": "CREATE TABLE table_name_8 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_6 WHERE date = \"november 22, 1942\"", "question": "Name the opponent on november 22, 1942", "context": "CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE visitor = \"green bay packers\"", "question": "What score did the Green Bay Packers get as visitor?", "context": "CREATE TABLE table_name_8 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT home FROM table_name_56 WHERE date = \"october 31\"", "question": "On October 31 what team played at home?", "context": "CREATE TABLE table_name_56 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_20 WHERE date = \"december 5\"", "question": "On December 5 what team played their home game?", "context": "CREATE TABLE table_name_20 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_40 WHERE date = \"october 31\"", "question": "How many people attended the game on October 31?", "context": "CREATE TABLE table_name_40 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_19 WHERE player = \"rob nicholson\"", "question": "What nationality is Rob Nicholson?", "context": "CREATE TABLE table_name_19 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_48 WHERE player = \"steve jones\"", "question": "What college or club team did Steve Jones play for?", "context": "CREATE TABLE table_name_48 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_6 WHERE player = \"barry duench\"", "question": "What nationality is Barry Duench?", "context": "CREATE TABLE table_name_6 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE home_team = \"saskatoon accelerators\" AND date = \"january 6, 2008\"", "question": "What was Saskatoon Accelerators score on January 6, 2008?", "context": "CREATE TABLE table_name_66 (score VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE date = \"april 6, 2008\"", "question": "What was the score on April 6, 2008?", "context": "CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_61 WHERE date = \"april 5, 2008\"", "question": "Which home team played on April 5, 2008?", "context": "CREATE TABLE table_name_61 (home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_79 WHERE date = \"january 5, 2008\"", "question": "Which home team played on January 5, 2008?", "context": "CREATE TABLE table_name_79 (home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE stadium = \"cn centre\" AND date = \"april 5, 2008\"", "question": "What was the score at CN Centre on April 5, 2008?", "context": "CREATE TABLE table_name_99 (score VARCHAR, stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE visiting_team = \"edmonton drillers\" AND date = \"january 6, 2008\"", "question": "What was the score for Edmonton Drillers on January 6, 2008?", "context": "CREATE TABLE table_name_88 (score VARCHAR, visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_47 WHERE nation = \"mexico\" AND total > 1", "question": "How much Silver has a Nation of mexico, and a Total larger than 1?", "context": "CREATE TABLE table_name_47 (silver INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_88 WHERE gold > 0 AND total < 1", "question": "How much Bronze has a Gold larger than 0, and a Total smaller than 1?", "context": "CREATE TABLE table_name_88 (bronze VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_58 WHERE nation = \"mexico\" AND total > 1", "question": "How much Bronze has a Nation of mexico, and a Total larger than 1?", "context": "CREATE TABLE table_name_58 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT district FROM table_name_12 WHERE party = \"democrat\" AND elected > 1998", "question": "In which District(s) has a Democrat held office since 1998?", "context": "CREATE TABLE table_name_12 (district VARCHAR, party VARCHAR, elected VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_94 WHERE country = \"soviet union\" AND total < 19", "question": "Which Rank is the Country of soviet union with a Total smaller than 19?", "context": "CREATE TABLE table_name_94 (rank INTEGER, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_2 WHERE country = \"denmark\" AND total < 1", "question": "What is the lowest Rank of Denmark County with a Total smaller than 1?", "context": "CREATE TABLE table_name_2 (rank INTEGER, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT loser FROM table_name_10 WHERE weight_division = \"heavyweight\" AND time = \"2:24\"", "question": "Who was the loser of the heavyweight division fight that lasted a time of 2:24?", "context": "CREATE TABLE table_name_10 (loser VARCHAR, weight_division VARCHAR, time VARCHAR)"}, {"answer": "SELECT weight_division FROM table_name_55 WHERE method = \"tko (strikes)\"", "question": "What was the weight division for the fight that ended in a TKO (strikes)?", "context": "CREATE TABLE table_name_55 (weight_division VARCHAR, method VARCHAR)"}, {"answer": "SELECT loser FROM table_name_87 WHERE winner = \"antonio silva\"", "question": "Who was the loser of the fight against antonio silva?", "context": "CREATE TABLE table_name_87 (loser VARCHAR, winner VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_66 WHERE loser = \"tank abbott\"", "question": "What was the average number of rounds in the fight where Tank Abbott lost?", "context": "CREATE TABLE table_name_66 (round INTEGER, loser VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_1 WHERE position = \"defensive tackle\" AND pick__number < 19", "question": "In what Round was a Defensive Tackle Pick # less than 19?", "context": "CREATE TABLE table_name_1 (round VARCHAR, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_22 WHERE overall = 19", "question": "What is the Pick # with an Overall of 19?", "context": "CREATE TABLE table_name_22 (pick__number INTEGER, overall VARCHAR)"}, {"answer": "SELECT event FROM table_name_71 WHERE athlete = \"ali ekranpour\"", "question": "What is the event result for athlete Ali Ekranpour?", "context": "CREATE TABLE table_name_71 (event VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT final FROM table_name_73 WHERE event = \"63.5 kg\"", "question": "What is the final result for the 63.5 kg?", "context": "CREATE TABLE table_name_73 (final VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE score = \"270 (\u201318)\" AND location = \"scotland\"", "question": "What was the date of the tournament in Scotland with a score of 270 (\u201318)?", "context": "CREATE TABLE table_name_71 (date VARCHAR, score VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_93 WHERE winner = \"hale irwin (19)\"", "question": "Where was the tournament won by Hale Irwin (19)?", "context": "CREATE TABLE table_name_93 (location VARCHAR, winner VARCHAR)"}, {"answer": "SELECT vinculum FROM table_name_72 WHERE parentheses = \"0.(81)\"", "question": "How much is vinculum when the parentheses are 0.(81)?", "context": "CREATE TABLE table_name_72 (vinculum VARCHAR, parentheses VARCHAR)"}, {"answer": "SELECT fraction FROM table_name_85 WHERE dots = \"0.\\dot{3}\"", "question": "What fraction has a value for dots of 0.\\dot{3}?", "context": "CREATE TABLE table_name_85 (fraction VARCHAR, dots VARCHAR)"}, {"answer": "SELECT dots FROM table_name_29 WHERE ellipsis = \"0.012345679\u2026\"", "question": "What is the dot value when the ellipsis is 0.012345679\u2026?", "context": "CREATE TABLE table_name_29 (dots VARCHAR, ellipsis VARCHAR)"}, {"answer": "SELECT fraction FROM table_name_58 WHERE parentheses = \"0.(3)\"", "question": "What fraction has parentheses of 0.(3)?", "context": "CREATE TABLE table_name_58 (fraction VARCHAR, parentheses VARCHAR)"}, {"answer": "SELECT parentheses FROM table_name_91 WHERE dots = \"0.\\dot{6}\"", "question": "What is the value for parentheses with a dots value of 0.\\dot{6}?", "context": "CREATE TABLE table_name_91 (parentheses VARCHAR, dots VARCHAR)"}, {"answer": "SELECT vinculum FROM table_name_13 WHERE parentheses = \"0.(6)\"", "question": "What is the value of vinculum for parentheses of 0.(6)?", "context": "CREATE TABLE table_name_13 (vinculum VARCHAR, parentheses VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE score = \"7-1\"", "question": "When was the score 7-1?", "context": "CREATE TABLE table_name_73 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT loss FROM table_name_26 WHERE score = \"7-1\"", "question": "What was the loss when the score was 7-1?", "context": "CREATE TABLE table_name_26 (loss VARCHAR, score VARCHAR)"}, {"answer": "SELECT loss FROM table_name_71 WHERE record = \"46-59\"", "question": "What was the loss when the record was 46-59?", "context": "CREATE TABLE table_name_71 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE opponent = \"@ giants\" AND record = \"8\u201312\"", "question": "Opponent of @ giants, and a Record of 8\u201312 had what score?", "context": "CREATE TABLE table_name_48 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_71 WHERE score = \"4\u20130\"", "question": "Score of 4\u20130 had what attendance number?", "context": "CREATE TABLE table_name_71 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_12 WHERE try_bonus = \"3\" AND tries_for = \"47\"", "question": "What was the losing bonus for the team with a try bonus of 3 and 47 tries for?", "context": "CREATE TABLE table_name_12 (losing_bonus VARCHAR, try_bonus VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_13 WHERE points_against = \"263\"", "question": "How many tries for does the team with 263 points against have?", "context": "CREATE TABLE table_name_13 (tries_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_98 WHERE points_for = \"385\"", "question": "How many draws does the team with 385 points for have?", "context": "CREATE TABLE table_name_98 (drawn VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT lost FROM table_name_49 WHERE drawn = \"1\" AND tries_against = \"34\"", "question": "What is the number of losses for the team with 1 draw and 34 tries against?", "context": "CREATE TABLE table_name_49 (lost VARCHAR, drawn VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_33 WHERE points = \"35\" AND try_bonus = \"1\"", "question": "How many tries for does the team with a try bonus of 1 and 35 points earned?", "context": "CREATE TABLE table_name_33 (tries_for VARCHAR, points VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT points FROM table_name_52 WHERE lost = \"3\"", "question": "How many points does the team with 3 losses have?", "context": "CREATE TABLE table_name_52 (points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE record = \"10-9-7\"", "question": "What was the score in the game where the record was 10-9-7?", "context": "CREATE TABLE table_name_94 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(december) FROM table_name_76 WHERE opponent = \"colorado avalanche\"", "question": "What was the first time in December they played the Colorado Avalanche?", "context": "CREATE TABLE table_name_76 (december INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE winner = \"new york jets\" AND result = \"30\u201328\"", "question": "What date was the winner the new york jets and a Result of 30\u201328?", "context": "CREATE TABLE table_name_67 (date VARCHAR, winner VARCHAR, result VARCHAR)"}, {"answer": "SELECT location FROM table_name_26 WHERE result = \"21\u201316\"", "question": "What is the name of the location of the game with a Result of 21\u201316?", "context": "CREATE TABLE table_name_26 (location VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_35 WHERE winner = \"new york jets\" AND location = \"harvard stadium\"", "question": "What is the earliest year the new york jets won at harvard stadium?", "context": "CREATE TABLE table_name_35 (year INTEGER, winner VARCHAR, location VARCHAR)"}, {"answer": "SELECT loser FROM table_name_89 WHERE location = \"schaefer stadium\" AND winner = \"new england patriots\" AND date = \"october 18\"", "question": "Who lost at schaefer stadium when the Winner was new england patriots, and a Date of october 18?", "context": "CREATE TABLE table_name_89 (loser VARCHAR, date VARCHAR, location VARCHAR, winner VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_44 WHERE losing_bonus = \"2\" AND points_against = \"300\"", "question": "How many points did the club with a losing bonus of 2 and 300 points against have?", "context": "CREATE TABLE table_name_44 (points_for VARCHAR, losing_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_12 WHERE losing_bonus = \"3\" AND points = \"45\"", "question": "How many tries for did the club with a 3 losing bonus and 45 points have?", "context": "CREATE TABLE table_name_12 (tries_for VARCHAR, losing_bonus VARCHAR, points VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_87 WHERE \"played\" = \"played\"", "question": "What is the try bonus of the club with played?", "context": "CREATE TABLE table_name_87 (try_bonus VARCHAR)"}, {"answer": "SELECT \"points\" AS _against FROM table_name_21 WHERE \"points\" = \"points\"", "question": "How many points against did the club with points have?", "context": "CREATE TABLE table_name_21 (Id VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_79 WHERE points_against = \"542\"", "question": "What is the drawn by the club with 542 points against?", "context": "CREATE TABLE table_name_79 (drawn VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT lost FROM table_name_1 WHERE played = \"22\" AND points_against = \"334\"", "question": "How many losses did the club with 22 played and 334 points against have?", "context": "CREATE TABLE table_name_1 (lost VARCHAR, played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_46 WHERE record = \"1-6\"", "question": "What attendance does 1-6 record have?", "context": "CREATE TABLE table_name_46 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_69 WHERE opponent = \"tampa bay buccaneers\"", "question": "What is the record of Tampa Bay Buccaneers?", "context": "CREATE TABLE table_name_69 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_79 WHERE position = \"right wing\" AND pick__number = \"20\"", "question": "What Nationality has a Position of right wing, with a #20 pick?", "context": "CREATE TABLE table_name_79 (nationality VARCHAR, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_31 WHERE position = \"centre\" AND pick__number = \"22\"", "question": "What College/junior/club team has a Position of centre, and pick is #22?", "context": "CREATE TABLE table_name_31 (college_junior_club_team VARCHAR, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_72 WHERE pick__number = \"32\"", "question": "What is the NHL team that had pick number 32?", "context": "CREATE TABLE table_name_72 (nhl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_49 WHERE college_junior_club_team = \"edmonton oil kings (wchl)\" AND position = \"defence\"", "question": "What is the Pick # for the College/junior/club team of edmonton oil kings (wchl), and the position if defence?", "context": "CREATE TABLE table_name_49 (pick__number VARCHAR, college_junior_club_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE nhl_team = \"new york rangers\" AND pick__number = \"31\"", "question": "What is the name of the Player that shows the NHL team of new york rangers, and a Pick # of 31?", "context": "CREATE TABLE table_name_22 (player VARCHAR, nhl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT SUM(seasons_in_league) FROM table_name_82 WHERE best_position = \"5th (2007)\"", "question": "Which sum of Seasons in league has a Best Position of 5th (2007)?", "context": "CREATE TABLE table_name_82 (seasons_in_league INTEGER, best_position VARCHAR)"}, {"answer": "SELECT city FROM table_name_99 WHERE seasons_in_league = 17 AND club = \"shakhter\"", "question": "Which City has Seasons in league of 17, and a Club of shakhter?", "context": "CREATE TABLE table_name_99 (city VARCHAR, seasons_in_league VARCHAR, club VARCHAR)"}, {"answer": "SELECT team FROM table_name_9 WHERE season > 2008", "question": "What team won after 2008?", "context": "CREATE TABLE table_name_9 (team VARCHAR, season INTEGER)"}, {"answer": "SELECT team FROM table_name_66 WHERE points < 203", "question": "What team has fewer than 203 points?", "context": "CREATE TABLE table_name_66 (team VARCHAR, points INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_69 WHERE season = 2007", "question": "What is total amount of points for the 2007 season?", "context": "CREATE TABLE table_name_69 (points INTEGER, season VARCHAR)"}, {"answer": "SELECT driver FROM table_name_66 WHERE team = \"coll\u00e9 racing\" AND points > 206", "question": "Who is the driver for team Coll\u00e9 Racing with more than 206 points?", "context": "CREATE TABLE table_name_66 (driver VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT result FROM table_name_97 WHERE couple = \"steve & anna\"", "question": "What was the result when the couple was steve & anna?", "context": "CREATE TABLE table_name_97 (result VARCHAR, couple VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE couple = \"shannon & derek\"", "question": "What was the score when the couple was shannon & derek?", "context": "CREATE TABLE table_name_72 (score VARCHAR, couple VARCHAR)"}, {"answer": "SELECT music FROM table_name_30 WHERE couple = \"mario & karina\"", "question": "What music did Mario & Karina perform?", "context": "CREATE TABLE table_name_30 (music VARCHAR, couple VARCHAR)"}, {"answer": "SELECT result FROM table_name_80 WHERE score = \"21 (7, 7, 7)\" AND couple = \"steve & anna\"", "question": "What was the result for Steve & Anna when the score was 21 (7, 7, 7)?", "context": "CREATE TABLE table_name_80 (result VARCHAR, score VARCHAR, couple VARCHAR)"}, {"answer": "SELECT result FROM table_name_28 WHERE score = \"21 (7, 6, 8)\"", "question": "What was the result when the score was 21 (7, 6, 8)?", "context": "CREATE TABLE table_name_28 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT points FROM table_name_4 WHERE score = \"3\u20133\" AND date = \"november 11\"", "question": "Which Points have a Score of 3\u20133, and a Date of november 11?", "context": "CREATE TABLE table_name_4 (points VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE home = \"pittsburgh\" AND record = \"3\u20136\u20135\"", "question": "Which Date has a Home of pittsburgh, and a Record of 3\u20136\u20135?", "context": "CREATE TABLE table_name_22 (date VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_91 WHERE score = \"4\u20134\" AND points = 17", "question": "Which Record has a Score of 4\u20134, and Points of 17?", "context": "CREATE TABLE table_name_91 (record VARCHAR, score VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(loses) FROM table_name_90 WHERE wins > 3 AND pos > 3", "question": "What's the highest Loses, with Wins that's larger than 3 and a Pos. Larger than 3?", "context": "CREATE TABLE table_name_90 (loses INTEGER, wins VARCHAR, pos VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_6 WHERE bronze > 1 AND silver > 0 AND nation = \"norway (host nation)\" AND total > 16", "question": "Which Rank has a Bronze larger than 1, and a Silver larger than 0, and a Nation of norway (host nation), and a Total larger than 16?", "context": "CREATE TABLE table_name_6 (rank VARCHAR, total VARCHAR, nation VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_59 WHERE total = 11 AND silver < 6", "question": "Which Bronze has a Total of 11, and a Silver smaller than 6?", "context": "CREATE TABLE table_name_59 (bronze INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_5 WHERE nation = \"canada\" AND rank < 6", "question": "Which Bronze has a Nation of canada, and a Rank smaller than 6?", "context": "CREATE TABLE table_name_5 (bronze INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_34 WHERE bronze > 6", "question": "Which Gold has a Bronze larger than 6?", "context": "CREATE TABLE table_name_34 (gold INTEGER, bronze INTEGER)"}, {"answer": "SELECT SUM(gold) FROM table_name_25 WHERE rank > 6 AND nation = \"netherlands\" AND bronze < 0", "question": "Which Gold has a Rank larger than 6, and a Nation of netherlands, and a Bronze smaller than 0?", "context": "CREATE TABLE table_name_25 (gold INTEGER, bronze VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT torque FROM table_name_49 WHERE name = \"1.6 petrol\" AND power = \"daewoo\"", "question": "What is the torque of the 1.6 petrol with daewoo power?", "context": "CREATE TABLE table_name_49 (torque VARCHAR, name VARCHAR, power VARCHAR)"}, {"answer": "SELECT torque FROM table_name_49 WHERE name = \"1.2 petrol\"", "question": "What is the torque of 1.2 petrol?", "context": "CREATE TABLE table_name_49 (torque VARCHAR, name VARCHAR)"}, {"answer": "SELECT power FROM table_name_66 WHERE name = \"1.9 diesel\"", "question": "What is the power of 1.9 diesel?", "context": "CREATE TABLE table_name_66 (power VARCHAR, name VARCHAR)"}, {"answer": "SELECT current_map FROM table_name_25 WHERE namesake = \"derain crater\"", "question": "What is the current map designation of the feature for which derain crater was the namesake?", "context": "CREATE TABLE table_name_25 (current_map VARCHAR, namesake VARCHAR)"}, {"answer": "SELECT albedo_feature_name FROM table_name_65 WHERE name = \"neruda\"", "question": "What is the Albedo name for Neruda?", "context": "CREATE TABLE table_name_65 (albedo_feature_name VARCHAR, name VARCHAR)"}, {"answer": "SELECT number FROM table_name_28 WHERE name = \"kuiper\"", "question": "What number is Kuiper?", "context": "CREATE TABLE table_name_28 (number VARCHAR, name VARCHAR)"}, {"answer": "SELECT current_map FROM table_name_63 WHERE namesake = \"discovery rupes\"", "question": "What is the current map designation of the feature which was named for discovery rupes?", "context": "CREATE TABLE table_name_63 (current_map VARCHAR, namesake VARCHAR)"}, {"answer": "SELECT current_map FROM table_name_24 WHERE name = \"debussy\"", "question": "What is the current map designation for Debussy?", "context": "CREATE TABLE table_name_24 (current_map VARCHAR, name VARCHAR)"}, {"answer": "SELECT current_map FROM table_name_72 WHERE name = \"beethoven\"", "question": "What is the current map designation for Beethoven?", "context": "CREATE TABLE table_name_72 (current_map VARCHAR, name VARCHAR)"}, {"answer": "SELECT overall_fht_points FROM table_name_90 WHERE name = \"denis kornilov\"", "question": "What is the overall FHT points for Denis Kornilov?", "context": "CREATE TABLE table_name_90 (overall_fht_points VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(2 AS nd__m_) FROM table_name_99 WHERE points > 251.6", "question": "What is the lowest 2nd (m) when the points were larger than 251.6?", "context": "CREATE TABLE table_name_99 (points INTEGER)"}, {"answer": "SELECT city FROM table_name_20 WHERE rank = 7", "question": "What city ranked 7?", "context": "CREATE TABLE table_name_20 (city VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(floors) FROM table_name_3 WHERE height * _m__ft_ = \"300 / 985\" AND rank < 3", "question": "How many floors were there with a building rank of less than 3 and a height of 300 / 985 m (ft)?", "context": "CREATE TABLE table_name_3 (floors VARCHAR, rank VARCHAR, height VARCHAR, _m__ft_ VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_90 WHERE floors < 62 AND name = \"etihad tower 5\"", "question": "What is the rank of Etihad Tower 5, with less than 62 floors?", "context": "CREATE TABLE table_name_90 (rank INTEGER, floors VARCHAR, name VARCHAR)"}, {"answer": "SELECT city FROM table_name_45 WHERE rank > 15 AND floors > 43", "question": "What city has a building ranked greater than 15 with floors greater than 43?", "context": "CREATE TABLE table_name_45 (city VARCHAR, rank VARCHAR, floors VARCHAR)"}, {"answer": "SELECT league FROM table_name_31 WHERE sport = \"baseball\" AND club = \"laredo apaches\"", "question": "Which league is for baseball with Laredo Apaches?", "context": "CREATE TABLE table_name_31 (league VARCHAR, sport VARCHAR, club VARCHAR)"}, {"answer": "SELECT league FROM table_name_70 WHERE sport = \"arena football\" AND club = \"laredo lobos\"", "question": "Which league has arena football in the club Laredo Lobos?", "context": "CREATE TABLE table_name_70 (league VARCHAR, sport VARCHAR, club VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_14 WHERE game = \"game 3\"", "question": "Which was the home team for game 3?", "context": "CREATE TABLE table_name_14 (home_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_66 WHERE road_team = \"phoenix\" AND date = \"june 18\"", "question": "What was the TV time for Chicago's road game against Phoenix on June 18?", "context": "CREATE TABLE table_name_66 (tv_time VARCHAR, road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_30 WHERE home_team = \"phoenix\" AND result = \"98-99\"", "question": "What was the TV time for the road game against Phoenix where the score was 98-99?", "context": "CREATE TABLE table_name_30 (tv_time VARCHAR, home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_90 WHERE date = \"june 9\"", "question": "Who was the home team on June 9?", "context": "CREATE TABLE table_name_90 (home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_29 WHERE date = \"june 9\"", "question": "What was the TV time for the game on June 9?", "context": "CREATE TABLE table_name_29 (tv_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT conference FROM table_name_94 WHERE division = \"east\" AND home_stadium = \"fedexfield\"", "question": "At which Conference was the Division in the East, and the Home Stadium named fedexfield?", "context": "CREATE TABLE table_name_94 (conference VARCHAR, division VARCHAR, home_stadium VARCHAR)"}, {"answer": "SELECT home_stadium FROM table_name_64 WHERE division = \"south\" AND conference = \"national\" AND city = \"charlotte, north carolina\"", "question": "What is the name of the Home Stadium in which the Division is in the south, and Conference is national, as well as being in the city named charlotte, North Carolina?", "context": "CREATE TABLE table_name_64 (home_stadium VARCHAR, city VARCHAR, division VARCHAR, conference VARCHAR)"}, {"answer": "SELECT home_stadium FROM table_name_25 WHERE conference = \"american\" AND city = \"nashville, tennessee\"", "question": "Which Home Stadium has American as its Conference as well as nashville, tennessee as the city?", "context": "CREATE TABLE table_name_25 (home_stadium VARCHAR, conference VARCHAR, city VARCHAR)"}, {"answer": "SELECT conference FROM table_name_69 WHERE division = \"south\" AND home_stadium = \"georgia dome\"", "question": "What is the name of the Conference which Division is south, and the Home Stadium is georgia dome?", "context": "CREATE TABLE table_name_69 (conference VARCHAR, division VARCHAR, home_stadium VARCHAR)"}, {"answer": "SELECT division FROM table_name_14 WHERE city = \"jacksonville, florida\"", "question": "Which Division does the City being jacksonville, florida belong to?", "context": "CREATE TABLE table_name_14 (division VARCHAR, city VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE date = \"1/22\"", "question": "What score has 1/22 as the date?", "context": "CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE date = \"12/1\"", "question": "What score has 12/1 as the date?", "context": "CREATE TABLE table_name_86 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT open_source FROM table_name_48 WHERE cost___us$__ = \"free\" AND activity = \"some\" AND editor = \"markitup\"", "question": "Which source has a Cost free, and an Activity of some, and an Editor of markitup?", "context": "CREATE TABLE table_name_48 (open_source VARCHAR, editor VARCHAR, cost___us$__ VARCHAR, activity VARCHAR)"}, {"answer": "SELECT site FROM table_name_46 WHERE cost___us$__ = \"free\" AND editor = \"jsvi\"", "question": "Which site has a Cost free and a Editor of jsvi?", "context": "CREATE TABLE table_name_46 (site VARCHAR, cost___us$__ VARCHAR, editor VARCHAR)"}, {"answer": "SELECT cost___us$__ FROM table_name_66 WHERE open_source = \"no\"", "question": "What is the cost of an Open Source that is no?", "context": "CREATE TABLE table_name_66 (cost___us$__ VARCHAR, open_source VARCHAR)"}, {"answer": "SELECT venue FROM table_name_64 WHERE weight__kg_ > 55 AND result = \"won\"", "question": "What venue has a weight (kg) greater than 55, and won as the result?", "context": "CREATE TABLE table_name_64 (venue VARCHAR, weight__kg_ VARCHAR, result VARCHAR)"}, {"answer": "SELECT group FROM table_name_18 WHERE weight__kg_ < 55", "question": "Which group has a weight (kg) less than 55?", "context": "CREATE TABLE table_name_18 (group VARCHAR, weight__kg_ INTEGER)"}, {"answer": "SELECT position FROM table_name_54 WHERE pick__number = 45", "question": "Which position has 45 picks?", "context": "CREATE TABLE table_name_54 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT record FROM table_name_54 WHERE week < 5 AND game_site = \"bye\"", "question": "What is the record of the game before week 5 and a bye game site?", "context": "CREATE TABLE table_name_54 (record VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT seasons FROM table_name_28 WHERE entries > 52 AND poles = 33", "question": "Which Seasons have Entries larger than 52, and Poles of 33?", "context": "CREATE TABLE table_name_28 (seasons VARCHAR, entries VARCHAR, poles VARCHAR)"}, {"answer": "SELECT seasons FROM table_name_66 WHERE poles > 29 AND entries > 191", "question": "Which Seasons have a Poles larger than 29, and Entries larger than 191?", "context": "CREATE TABLE table_name_66 (seasons VARCHAR, poles VARCHAR, entries VARCHAR)"}, {"answer": "SELECT away_leg FROM table_name_60 WHERE opposition = \"aarhus gymnastik forening\"", "question": "What ist the Away Leg with an Opposition that is aarhus gymnastik forening?", "context": "CREATE TABLE table_name_60 (away_leg VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_70 WHERE 2006 = \"236\"", "question": "What 2007 has 236 for 2006?", "context": "CREATE TABLE table_name_70 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_72 WHERE 2010 = \"2r\" AND 2008 = \"a\"", "question": "What 2011 has 2r as 2010, and a 2008 of A?", "context": "CREATE TABLE table_name_72 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_4 WHERE tournament = \"tournament played\"", "question": "What is the 2012 that has tournament played as the tournament?", "context": "CREATE TABLE table_name_4 (tournament VARCHAR)"}, {"answer": "SELECT artist FROM table_name_51 WHERE place > 1 AND points = 229", "question": "Which artist had a place larger than 1 with 229 points?", "context": "CREATE TABLE table_name_51 (artist VARCHAR, place VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(january) FROM table_name_13 WHERE opponent = \"florida panthers\" AND points < 59", "question": "Which January is the lowest one that has an Opponent of florida panthers, and Points smaller than 59?", "context": "CREATE TABLE table_name_13 (january INTEGER, opponent VARCHAR, points VARCHAR)"}, {"answer": "SELECT record FROM table_name_97 WHERE game = 41", "question": "Which Record has a Game of 41?", "context": "CREATE TABLE table_name_97 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE january > 21 AND points = 63", "question": "Which Score has a January larger than 21, and Points of 63?", "context": "CREATE TABLE table_name_18 (score VARCHAR, january VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_21 WHERE record = \"25\u201310\u201311\" AND january > 28", "question": "How many Points have a Record of 25\u201310\u201311, and a January larger than 28?", "context": "CREATE TABLE table_name_21 (points VARCHAR, record VARCHAR, january VARCHAR)"}, {"answer": "SELECT province FROM table_name_72 WHERE established = 1870", "question": "what province was established in 1870", "context": "CREATE TABLE table_name_72 (province VARCHAR, established VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_3 WHERE district = \"ohio 13\"", "question": "Who is the Incumbent that has a District of ohio 13 in Democratic Party?", "context": "CREATE TABLE table_name_3 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE champion = \"ken rosewall\" AND year = \"1957\"", "question": "What is the score of champion Ken Rosewall in 1957?", "context": "CREATE TABLE table_name_39 (score VARCHAR, champion VARCHAR, year VARCHAR)"}, {"answer": "SELECT surface FROM table_name_47 WHERE runner_up = \"brian gottfried\"", "question": "What is the surface of the match with Brian Gottfried as the runner-up?", "context": "CREATE TABLE table_name_47 (surface VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE runner_up = \"anders j\u00e4rryd\"", "question": "What is the score of the match with anders j\u00e4rryd as the runner-up?", "context": "CREATE TABLE table_name_93 (score VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_66 WHERE total = 4 AND gold < 1", "question": "What is the low bronze total for the team with 4 total and under 1 gold?", "context": "CREATE TABLE table_name_66 (bronze INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_33 WHERE bronze > 3 AND gold > 8", "question": "What is the average total for teams with over 3 bronzes and over 8 golds?", "context": "CREATE TABLE table_name_33 (total INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_99 WHERE total < 1", "question": "What is the low silver total associated with under 1 total?", "context": "CREATE TABLE table_name_99 (silver INTEGER, total INTEGER)"}, {"answer": "SELECT points FROM table_name_92 WHERE highest_position < 9 AND position = 22", "question": "What is the number of points associated with the highest position under 9 and a current position of 22?", "context": "CREATE TABLE table_name_92 (points VARCHAR, highest_position VARCHAR, position VARCHAR)"}, {"answer": "SELECT performer_1 FROM table_name_93 WHERE performer_3 = \"paul merton\" AND performer_4 = \"sandi toksvig\"", "question": "Performer 3 of paul merton, and a Performer 4 of sandi toksvig is which performer 1?", "context": "CREATE TABLE table_name_93 (performer_1 VARCHAR, performer_3 VARCHAR, performer_4 VARCHAR)"}, {"answer": "SELECT performer_1 FROM table_name_64 WHERE episode = 16", "question": "Episode of 16 involves which performer 1?", "context": "CREATE TABLE table_name_64 (performer_1 VARCHAR, episode VARCHAR)"}, {"answer": "SELECT performer_1 FROM table_name_55 WHERE performer_2 = \"compilation 1\"", "question": "Performer 2 of compilation 1 had what performer 1?", "context": "CREATE TABLE table_name_55 (performer_1 VARCHAR, performer_2 VARCHAR)"}, {"answer": "SELECT schwaben FROM table_name_98 WHERE oberbayern = \"fc ingolstadt 04\" AND mittelfranken = \"sv seligenporten\"", "question": "Which Schwaben has an Oberbayern of fc ingolstadt 04 and a Mittelfranken of sv seligenporten", "context": "CREATE TABLE table_name_98 (schwaben VARCHAR, oberbayern VARCHAR, mittelfranken VARCHAR)"}, {"answer": "SELECT schwaben FROM table_name_15 WHERE oberbayern = \"fc bayern munich ii\" AND mittelfranken = \"1. fc nuremberg ii\"", "question": "Which Schwaben has a Oberbayern of fc bayern munich ii and a Mittelfranken of 1. fc nuremberg ii?", "context": "CREATE TABLE table_name_15 (schwaben VARCHAR, oberbayern VARCHAR, mittelfranken VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_64 WHERE district = \"south carolina 3\"", "question": "Who was the incumbent for south carolina 3 district?", "context": "CREATE TABLE table_name_64 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_56 WHERE district = \"south carolina 1\"", "question": "When was the incumbent from the south carolina 1 district first elected?", "context": "CREATE TABLE table_name_56 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_96 WHERE first_elected = \"1892\" AND result = \"retired to run for the senate democratic hold\"", "question": "Who was the incumbent that was first elected in 1892 and retired to run for the senate democratic hold?", "context": "CREATE TABLE table_name_96 (incumbent VARCHAR, first_elected VARCHAR, result VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_82 WHERE result = \"retired to run for the senate democratic hold\"", "question": "Who was the incumbent that retired to run for the senate democratic hold?", "context": "CREATE TABLE table_name_82 (incumbent VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_83 WHERE first_elected = \"1892\" AND incumbent = \"w. jasper talbert\"", "question": "What was the result of W. Jasper Talbert who was first elected in 1892?", "context": "CREATE TABLE table_name_83 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_35 WHERE 224 = \"xo\" AND 220 = \"xo\"", "question": "Which Nationality has a 2.24 of xo, and a 2.20 of xo?", "context": "CREATE TABLE table_name_35 (nationality VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_8 WHERE 224 = \"xo\" AND 220 = \"o\" AND 215 = \"o\"", "question": "Which Athlete has a 2.24 of xo, and a 2.20 of o, and a 2.15 of o?", "context": "CREATE TABLE table_name_8 (athlete VARCHAR)"}, {"answer": "SELECT MIN(election) FROM table_name_69 WHERE _number_of_candidates_nominated > 7 AND _percentage_of_popular_vote = \"2.75%\" AND _number_of_seats_won < 0", "question": "What is the earliest election with more than 7 candidates nominated, a percentage of the popular vote of 2.75%, and 0 seats won?", "context": "CREATE TABLE table_name_69 (election INTEGER, _number_of_seats_won VARCHAR, _number_of_candidates_nominated VARCHAR, _percentage_of_popular_vote VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_22 WHERE lost > 14 AND drawn = 8 AND team = \"ipatinga\"", "question": "How much Played has a Lost larger than 14, and Drawn of 8, and a Team of ipatinga?", "context": "CREATE TABLE table_name_22 (played INTEGER, team VARCHAR, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_55 WHERE difference = \"3\" AND points < 52", "question": "How many Drawn have a Difference of 3, and Points smaller than 52?", "context": "CREATE TABLE table_name_55 (drawn VARCHAR, difference VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_80 WHERE position < 4 AND team = \"s\u00e3o paulo\" AND drawn > 12", "question": "Which Points is the highest one that has a Position smaller than 4, and a Team of s\u00e3o paulo, and Drawn larger than 12?", "context": "CREATE TABLE table_name_80 (points INTEGER, drawn VARCHAR, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_18 WHERE points > 40 AND position = 11 AND played < 38", "question": "How many Lost have Points larger than 40, and a Position of 11, and a Played smaller than 38?", "context": "CREATE TABLE table_name_18 (lost INTEGER, played VARCHAR, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_3 WHERE points_difference = \"40 - 17\" AND games > 6", "question": "What is the lowest number of games loss with a Points difference of 40 - 17, and over 6 games?", "context": "CREATE TABLE table_name_3 (lost INTEGER, points_difference VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_46 WHERE games > 6", "question": "How many games lost for teams with over 6 games?", "context": "CREATE TABLE table_name_46 (lost INTEGER, games INTEGER)"}, {"answer": "SELECT MAX(drawn) FROM table_name_80 WHERE games < 6", "question": "What are the highest number of games drawn for games numbered under 6?", "context": "CREATE TABLE table_name_80 (drawn INTEGER, games INTEGER)"}, {"answer": "SELECT SUM(drawn) FROM table_name_41 WHERE points_difference = \"31 - 33\" AND lost < 4", "question": "How many games drawn with a Points difference of 31 - 33, and under 4 games lost?", "context": "CREATE TABLE table_name_41 (drawn INTEGER, points_difference VARCHAR, lost VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_78 WHERE surface = \"hard (i)\" AND date = \"28 january 2003\"", "question": "Which Outcome has a Surface of hard (i), and a Date of 28 january 2003?", "context": "CREATE TABLE table_name_78 (outcome VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_4 WHERE outcome = \"winner\" AND surface = \"hard (i)\"", "question": "Which Tournament has an Outcome of winner, and a Surface of hard (i)?", "context": "CREATE TABLE table_name_4 (tournament VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE score = \"6\u20131, 6\u20132\"", "question": "Which Date has a Score of 6\u20131, 6\u20132?", "context": "CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_99 WHERE opponent = \"oleksandra kravets\"", "question": "Which Surface has an Opponent of oleksandra kravets?", "context": "CREATE TABLE table_name_99 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_60 WHERE date = \"3 october 2003\"", "question": "Which Surface has a Date of 3 october 2003?", "context": "CREATE TABLE table_name_60 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_65 WHERE score = \"6\u20134, 6\u20132\"", "question": "Which Surface has a Score of 6\u20134, 6\u20132?", "context": "CREATE TABLE table_name_65 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_29 WHERE code__iata_icao_ = \"ord/kord\"", "question": "How many ranks have a Code (IATA/ICAO) of ord/kord?", "context": "CREATE TABLE table_name_29 (rank VARCHAR, code__iata_icao_ VARCHAR)"}, {"answer": "SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_66 WHERE rank < 4 AND airport = \"shanghai pudong international airport\"", "question": "Which Total Cargo (Metric Tonnes) is the highest one that has a Rank smaller than 4, and an Airport of shanghai pudong international airport?", "context": "CREATE TABLE table_name_66 (total_cargo__metric_tonnes_ INTEGER, rank VARCHAR, airport VARCHAR)"}, {"answer": "SELECT per_capita_income FROM table_name_7 WHERE median_family_income = \"$72,288\"", "question": "What is the Per capita income where Median family income is $72,288?", "context": "CREATE TABLE table_name_7 (per_capita_income VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_44 WHERE time_retired = \"+2.2 secs\"", "question": "What is the average grid for the +2.2 secs time/retired?", "context": "CREATE TABLE table_name_44 (grid INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT MAX(facility_id) FROM table_name_15 WHERE city_of_license = \"springfield, ma\" AND erp___power_w < 230", "question": "Which Facility ID has a City of license of springfield, ma, and a ERP / Power W smaller than 230?", "context": "CREATE TABLE table_name_15 (facility_id INTEGER, city_of_license VARCHAR, erp___power_w VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_33 WHERE facility_id = 13598", "question": "Which Frequency has a Facility ID of 13598?", "context": "CREATE TABLE table_name_33 (frequency VARCHAR, facility_id VARCHAR)"}, {"answer": "SELECT AVG(facility_id) FROM table_name_64 WHERE call_sign = \"wnpr\"", "question": "WHich Facility ID has a Call sign of wnpr?", "context": "CREATE TABLE table_name_64 (facility_id INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_71 WHERE facility_id = 13598", "question": "Which Frequency has a Facility ID of 13598?", "context": "CREATE TABLE table_name_71 (frequency VARCHAR, facility_id VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st__m_) FROM table_name_81 WHERE name = \"martin schmitt\" AND points < 235.7", "question": "What is the total number of 1sts that Martin Schmitt had where he less than 235.7 points?", "context": "CREATE TABLE table_name_81 (name VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_83 WHERE home = \"buffalo\"", "question": "What is the total number of attendance for games where buffalo was the home team?", "context": "CREATE TABLE table_name_83 (attendance VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE visitor = \"buffalo\" AND date = \"april 28\"", "question": "What was the score of the game on April 28 where Buffalo were the visiting team?", "context": "CREATE TABLE table_name_64 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE visitor = \"philadelphia\"", "question": "What date was the game where the visiting team was philadelphia?", "context": "CREATE TABLE table_name_10 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT gold FROM table_name_53 WHERE year < 2002 AND location = \"seoul\"", "question": "Who got the gold in seoul before 2002?", "context": "CREATE TABLE table_name_53 (gold VARCHAR, year VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_14 WHERE silver = \"sohn bong-gak\"", "question": "Where did sohn bong-gak win silver?", "context": "CREATE TABLE table_name_14 (location VARCHAR, silver VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_99 WHERE gold = \"jin kanno\"", "question": "Who won the bronze when jin kanno won the gold?", "context": "CREATE TABLE table_name_99 (bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE outcome = \"runner-up\" AND tournament = \"johannesburg\"", "question": "Which Score has an Outcome of runner-up, and a Tournament of johannesburg?", "context": "CREATE TABLE table_name_69 (score VARCHAR, outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_53 WHERE opponent = \"kerry melville reid\" AND score = \"6\u20133, 2\u20136, 3\u20136\"", "question": "Which Surface has an Opponent of kerry melville reid, and a Score of 6\u20133, 2\u20136, 3\u20136?", "context": "CREATE TABLE table_name_53 (surface VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_54 WHERE opponent = \"wendy turnbull\" AND surface = \"grass\"", "question": "Which Outcome has an Opponent of wendy turnbull, and a Surface of grass?", "context": "CREATE TABLE table_name_54 (outcome VARCHAR, opponent VARCHAR, surface VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_6 WHERE date = \"22 january 1979\"", "question": "Which Tournament has a Date of 22 january 1979?", "context": "CREATE TABLE table_name_6 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_86 WHERE score = \"6\u20134, 2\u20136, 6\u20133\"", "question": "Which Outcome has a Score of 6\u20134, 2\u20136, 6\u20133?", "context": "CREATE TABLE table_name_86 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT nation FROM table_name_69 WHERE total < 63 AND silver < 2 AND bronze > 2 AND rank = \"8\"", "question": "Which nation has total medals under 63, less than 2 silver, more than 2 bronze, and a rank of 8?", "context": "CREATE TABLE table_name_69 (nation VARCHAR, rank VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_65 WHERE bronze = 4 AND silver > 2", "question": "How many golds have bronze values of 4 and silver values over 2?", "context": "CREATE TABLE table_name_65 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_52 WHERE bronze < 4 AND rank = \"3\" AND gold > 2", "question": "What is the sum of silver values that have bronze values under 4, golds over 2, and a rank of 3?", "context": "CREATE TABLE table_name_52 (silver INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_34 WHERE bronze > 0 AND total < 2", "question": "What is the sum of gold values that have bronze values over 0 and totals under 2?", "context": "CREATE TABLE table_name_34 (gold INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_51 WHERE total > 15 AND bronze < 31", "question": "What is the smallest gold value that has a total over 15 and bronze values under 31?", "context": "CREATE TABLE table_name_51 (gold INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT equatorial_diameter FROM table_name_24 WHERE body = \"mars\"", "question": "What is the Equatorial diameter of the Body: Mars?", "context": "CREATE TABLE table_name_24 (equatorial_diameter VARCHAR, body VARCHAR)"}, {"answer": "SELECT equatorial_diameter FROM table_name_33 WHERE body = \"ceres\"", "question": "What is the Equatorial diameter of the Body: ceres?", "context": "CREATE TABLE table_name_33 (equatorial_diameter VARCHAR, body VARCHAR)"}, {"answer": "SELECT flattening_ratio FROM table_name_79 WHERE equatorial_diameter = \"49,528km\"", "question": "What is the Flattening ratio associated with the Equatorial diameter of 49,528km?", "context": "CREATE TABLE table_name_79 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR)"}, {"answer": "SELECT equatorial_bulge FROM table_name_74 WHERE body = \"earth\"", "question": "What is the Equatorial bulge of the Body: Earth?", "context": "CREATE TABLE table_name_74 (equatorial_bulge VARCHAR, body VARCHAR)"}, {"answer": "SELECT flattening_ratio FROM table_name_75 WHERE equatorial_diameter = \"120,536km\"", "question": "What is the Flattening ratio associated with the Equatorial diameter of 120,536km?", "context": "CREATE TABLE table_name_75 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR)"}, {"answer": "SELECT flattening_ratio FROM table_name_27 WHERE equatorial_diameter = \"12,756.28km\"", "question": "What is the Flattening ratio associated with the Equatorial diameter of 12,756.28km?", "context": "CREATE TABLE table_name_27 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR)"}, {"answer": "SELECT AVG(yards) FROM table_name_53 WHERE average < 4 AND long = 12 AND attempts < 29", "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 MIN(yards) FROM table_name_65 WHERE average < 2.6", "question": "What is the least amount of yards when the average is less than 2.6?", "context": "CREATE TABLE table_name_65 (yards INTEGER, average INTEGER)"}, {"answer": "SELECT MIN(touchdowns) FROM table_name_41 WHERE yards = 1318", "question": "What is the lease amount of touchdowns with 1318 yards?", "context": "CREATE TABLE table_name_41 (touchdowns INTEGER, yards VARCHAR)"}, {"answer": "SELECT COUNT(touchdowns) FROM table_name_80 WHERE average < 2.6", "question": "What is the number of touchdowns with the average is less than 2.6?", "context": "CREATE TABLE table_name_80 (touchdowns VARCHAR, average INTEGER)"}, {"answer": "SELECT COUNT(long) FROM table_name_52 WHERE attempts = 19", "question": "What is the total number for long when there are 19 attempts?", "context": "CREATE TABLE table_name_52 (long VARCHAR, attempts VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_78 WHERE tournament = \"german masters\"", "question": "What was the margin of victory for Olazabal in the German Masters?", "context": "CREATE TABLE table_name_78 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_90 WHERE runner_s__up = \"phillip price\"", "question": "What was Olazabal's winning score in the event in which Phillip Price finished 2nd?", "context": "CREATE TABLE table_name_90 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_62 WHERE tournament = \"german masters\"", "question": "What was Olazabal's winning score in the German Masters?", "context": "CREATE TABLE table_name_62 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_6 WHERE tournament = \"ebel european masters swiss open\"", "question": "What was Olazabal's margin of victory int he Ebel European Masters Swiss Open?", "context": "CREATE TABLE table_name_6 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT series_ep FROM table_name_83 WHERE netflix = \"s08e18\"", "question": "Which Series Ep has a Netflix of s08e18?", "context": "CREATE TABLE table_name_83 (series_ep VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT segment_b FROM table_name_92 WHERE segment_d = \"stone wool insulation\"", "question": "Which Segment B has a Segment D of stone wool insulation?", "context": "CREATE TABLE table_name_92 (segment_b VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_70 WHERE segment_c = \"poster restoration\"", "question": "Which Segment A has a Segment C of poster restoration?", "context": "CREATE TABLE table_name_70 (segment_a VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT segment_c FROM table_name_54 WHERE segment_b = \"fish food\"", "question": "Which Segment C has a Segment B of fish food?", "context": "CREATE TABLE table_name_54 (segment_c VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_c FROM table_name_43 WHERE netflix = \"s08e16\"", "question": "Which Segment C has a Netflix of s08e16?", "context": "CREATE TABLE table_name_43 (segment_c VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT competition FROM table_name_26 WHERE opponent = \"peterborough phantoms\" AND date = 2", "question": "What was the name of the competition that had Peterborough Phantoms as an opponent and a date of 2?", "context": "CREATE TABLE table_name_26 (competition VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT tally FROM table_name_36 WHERE county = \"kerry\"", "question": "What is the Tally in Kerry County?", "context": "CREATE TABLE table_name_36 (tally VARCHAR, county VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_name_31 WHERE player = \"ian ryan\" AND total < 29", "question": "With a Total of less than 29, what is Ian Ryan's most Matches?", "context": "CREATE TABLE table_name_31 (matches INTEGER, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT lema_sublema FROM table_name_22 WHERE votes < 218656 AND ch_of_deputies = \"0\"", "question": "Which LEMA/SUBLEMA that has Votes smaller than 218656, and a Ch of Deputies of 0?", "context": "CREATE TABLE table_name_22 (lema_sublema VARCHAR, votes VARCHAR, ch_of_deputies VARCHAR)"}, {"answer": "SELECT lema_sublema FROM table_name_4 WHERE ch_of_senators = \"2\"", "question": "Which LEMA/SUBLEMA has a Ch of Senators of 2?", "context": "CREATE TABLE table_name_4 (lema_sublema VARCHAR, ch_of_senators VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_22 WHERE score_in_the_final = \"6\u20137, 6\u20132, 6\u20134\"", "question": "what tornament had the scores 6\u20137, 6\u20132, 6\u20134?", "context": "CREATE TABLE table_name_22 (tournament VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT partner FROM table_name_19 WHERE score_in_the_final = \"6\u20134, 6\u20131\"", "question": "what partner made the scores 6\u20134, 6\u20131?", "context": "CREATE TABLE table_name_19 (partner VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT year FROM table_name_60 WHERE notes = \"6.62 m\"", "question": "What year had 6.62 m in the notes?", "context": "CREATE TABLE table_name_60 (year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT competition FROM table_name_1 WHERE position = \"8th\" AND venue = \"budapest, hungary\"", "question": "Which competition in Budapest, Hungary gave a result of 8th?", "context": "CREATE TABLE table_name_1 (competition VARCHAR, position VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_12 WHERE competition = \"world indoor championships\" AND position = \"3rd\"", "question": "Which year did the World indoor championships gave a position of 3rd?", "context": "CREATE TABLE table_name_12 (year INTEGER, competition VARCHAR, position VARCHAR)"}, {"answer": "SELECT notes FROM table_name_32 WHERE venue = \"toronto, canada\"", "question": "What were the notes in Toronto, Canada?", "context": "CREATE TABLE table_name_32 (notes VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_65 WHERE class = \"125cc\" AND team = \"mv agusta\" AND year > 1957", "question": "Name the most points for class of 125cc and team of mv agusta with year more than 1957", "context": "CREATE TABLE table_name_65 (points INTEGER, year VARCHAR, class VARCHAR, team VARCHAR)"}, {"answer": "SELECT zx_spectrum FROM table_name_92 WHERE year > 1984 AND genre = \"arcade/strategy\"", "question": "Which ZX Spectrum has a Year larger than 1984, and a Genre of arcade/strategy?", "context": "CREATE TABLE table_name_92 (zx_spectrum VARCHAR, year VARCHAR, genre VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_16 WHERE title = \"kriegspiel\"", "question": "How many years have a Title of kriegspiel?", "context": "CREATE TABLE table_name_16 (year VARCHAR, title VARCHAR)"}, {"answer": "SELECT zx_spectrum FROM table_name_7 WHERE c = 64 = c64 AND title = \"ankh\"", "question": "Which ZX Spectrum has a C=64 of c64, and a Title of ankh?", "context": "CREATE TABLE table_name_7 (zx_spectrum VARCHAR, c64 VARCHAR, title VARCHAR, c VARCHAR)"}, {"answer": "SELECT title FROM table_name_22 WHERE others = \"amstrad cpc\" AND genre = \"arcade\"", "question": "Which Title has Others of amstrad cpc, and a Genre of arcade?", "context": "CREATE TABLE table_name_22 (title VARCHAR, others VARCHAR, genre VARCHAR)"}, {"answer": "SELECT result FROM table_name_77 WHERE attendance = \"12,000\"", "question": "What was the result when the attendance was 12,000?", "context": "CREATE TABLE table_name_77 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_21 WHERE week < 5 AND date = \"no game scheduled\"", "question": "What was the attendance for weeks prior to 5 when there was no game scheduled?", "context": "CREATE TABLE table_name_21 (attendance VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_37 WHERE venue = \"lakeside park\"", "question": "What was the attendance number for the venue of Lakeside Park?", "context": "CREATE TABLE table_name_37 (attendance VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_63 WHERE venue = \"league park\" AND date = \"november 25, 1920\"", "question": "What is the largest week number for the venue of League Park for the date of November 25, 1920?", "context": "CREATE TABLE table_name_63 (week INTEGER, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT surname FROM table_name_16 WHERE first = \"michael\"", "question": "What is Michael's surname?", "context": "CREATE TABLE table_name_16 (surname VARCHAR, first VARCHAR)"}, {"answer": "SELECT first FROM table_name_86 WHERE bats = \"r\" AND throws = \"l\" AND dob = \"12 october 1977\"", "question": "Which First has Bats of r, and Throws of l, and a DOB of 12 october 1977?", "context": "CREATE TABLE table_name_86 (first VARCHAR, dob VARCHAR, bats VARCHAR, throws VARCHAR)"}, {"answer": "SELECT dob FROM table_name_44 WHERE surname = \"maat\"", "question": "When was Maat born?", "context": "CREATE TABLE table_name_44 (dob VARCHAR, surname VARCHAR)"}, {"answer": "SELECT bats FROM table_name_88 WHERE first = \"todd\"", "question": "How many bats does Todd have?", "context": "CREATE TABLE table_name_88 (bats VARCHAR, first VARCHAR)"}, {"answer": "SELECT position FROM table_name_21 WHERE dob = \"13 may 1987\"", "question": "Which Position has a DOB of 13 may 1987?", "context": "CREATE TABLE table_name_21 (position VARCHAR, dob VARCHAR)"}, {"answer": "SELECT bats FROM table_name_49 WHERE throws = \"r\" AND dob = \"22 may 1973\"", "question": "Which Bats have Throws of r, and a DOB of 22 may 1973?", "context": "CREATE TABLE table_name_49 (bats VARCHAR, throws VARCHAR, dob VARCHAR)"}, {"answer": "SELECT croatia FROM table_name_53 WHERE friendly = \"world cup 2006 qualifier\" AND 149 = 152", "question": "Which Croatia has a Friendly of world cup 2006 qualifier, and a 149 of 152?", "context": "CREATE TABLE table_name_53 (croatia VARCHAR, friendly VARCHAR)"}, {"answer": "SELECT production_company FROM table_name_61 WHERE producer_s_ = \"sam mccarthy\"", "question": "For which production company did Sam Mccarthy produce?", "context": "CREATE TABLE table_name_61 (production_company VARCHAR, producer_s_ VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_44 WHERE writer_s_ = \"dana dorian\"", "question": "Who was the director that worked with Dana Dorian as the writer?", "context": "CREATE TABLE table_name_44 (director_s_ VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT film FROM table_name_40 WHERE rank = \"nominated\" AND director_s_ = \"dana dorian\"", "question": "Which film, directed by Dana Dorian, was nominated?", "context": "CREATE TABLE table_name_40 (film VARCHAR, rank VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT SUM(december) FROM table_name_59 WHERE opponent = \"vancouver canucks\" AND game < 33", "question": "What is the sum for December against the vancouver canucks earlier than game 33?", "context": "CREATE TABLE table_name_59 (december INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(december) FROM table_name_56 WHERE record = \"22-12-5\"", "question": "What is the sum for December when the record was 22-12-5?", "context": "CREATE TABLE table_name_56 (december INTEGER, record VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_12 WHERE team = \"norton\" AND wins < 0", "question": "When is the earliest year associated with team norton and 0 wins?", "context": "CREATE TABLE table_name_12 (year INTEGER, team VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_42 WHERE wins = 0 AND team = \"ajs\" AND points < 12", "question": "What is the year that there were 0 wins, team AJS, and under 12 points?", "context": "CREATE TABLE table_name_42 (year VARCHAR, points VARCHAR, wins VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_96 WHERE award_ceremony = \"drama desk award\" AND category = \"outstanding featured actress in a musical\"", "question": "What year is associated with a drama desk award ceremony and a Category of outstanding featured actress in a musical?", "context": "CREATE TABLE table_name_96 (year INTEGER, award_ceremony VARCHAR, category VARCHAR)"}, {"answer": "SELECT AVG(loss) FROM table_name_26 WHERE long > 12 AND name = \"opponents\" AND gain > 1751", "question": "What is the average Loss for the long of more than 12 with a name of opponents with a Gain larger than 1751?", "context": "CREATE TABLE table_name_26 (loss INTEGER, gain VARCHAR, long VARCHAR, name VARCHAR)"}, {"answer": "SELECT winner_2nd FROM table_name_18 WHERE race = \"caulfield guineas\"", "question": "Who was the winner/2nd place finisher in the Caulfield Guineas?", "context": "CREATE TABLE table_name_18 (winner_2nd VARCHAR, race VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_76 WHERE group = \"g3\"", "question": "Which jockey had a group of G3?", "context": "CREATE TABLE table_name_76 (jockey VARCHAR, group VARCHAR)"}, {"answer": "SELECT time FROM table_name_62 WHERE group = \"g2\" AND race = \"hobartville stakes\"", "question": "What was the time for the G2 group at the Hobartville Stakes?", "context": "CREATE TABLE table_name_62 (time VARCHAR, group VARCHAR, race VARCHAR)"}, {"answer": "SELECT airport FROM table_name_39 WHERE city = \"perth\"", "question": "Which airport has perth as the city?", "context": "CREATE TABLE table_name_39 (airport VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_24 WHERE state_territory = \"tasmania\" AND icao = \"ymhb\"", "question": "Which city has tasmania as the state/territory and a ICAO of ymhb?", "context": "CREATE TABLE table_name_24 (city VARCHAR, state_territory VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_11 WHERE icao = \"ybcg\"", "question": "Which airport has an ICAO of ybcg?", "context": "CREATE TABLE table_name_11 (airport VARCHAR, icao VARCHAR)"}, {"answer": "SELECT iata FROM table_name_1 WHERE state_territory = \"new south wales\" AND begin = \"july 2009\"", "question": "What is the IATA that has new south wales as the state/territory beginning on july 2009?", "context": "CREATE TABLE table_name_1 (iata VARCHAR, state_territory VARCHAR, begin VARCHAR)"}, {"answer": "SELECT iata FROM table_name_30 WHERE state_territory = \"queensland\" AND icao = \"ybrk\"", "question": "What IATA has queensland as the state/territory and an ICAO of ybrk?", "context": "CREATE TABLE table_name_30 (iata VARCHAR, state_territory VARCHAR, icao VARCHAR)"}, {"answer": "SELECT begin FROM table_name_18 WHERE state_territory = \"victoria\" AND icao = \"ymml\"", "question": "What begin has victoria as the state/territory and a ICA0 of ymml?", "context": "CREATE TABLE table_name_18 (begin VARCHAR, state_territory VARCHAR, icao VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_59 WHERE date = \"march 27\"", "question": "Who was the visitor on March 27?", "context": "CREATE TABLE table_name_59 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_30 WHERE date = \"march 14\"", "question": "What was the record on March 14?", "context": "CREATE TABLE table_name_30 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_14 WHERE frequency = \"99.5 fm\"", "question": "What format is at frequency 99.5 FM?", "context": "CREATE TABLE table_name_14 (format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT format FROM table_name_42 WHERE call_sign = \"dzfe\"", "question": "What format has the call sign DZFE?", "context": "CREATE TABLE table_name_42 (format VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT covered_location FROM table_name_32 WHERE frequency = \"90.7 fm\"", "question": "What covered location has a frequency of 90.7 FM", "context": "CREATE TABLE table_name_32 (covered_location VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_95 WHERE name = \"104.3 business radio\"", "question": "What is the frequency of 104.3 business radio?", "context": "CREATE TABLE table_name_95 (frequency VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_40 WHERE call_sign = \"dwys\"", "question": "What name has the call sign DWYS?", "context": "CREATE TABLE table_name_40 (name VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT name FROM table_name_19 WHERE dcsf_number = 3373", "question": "Who has a DCSF number of 3373?", "context": "CREATE TABLE table_name_19 (name VARCHAR, dcsf_number VARCHAR)"}, {"answer": "SELECT AVG(intake) FROM table_name_62 WHERE type = \"primary\" AND ofsted_number = 117433 AND dcsf_number > 3335", "question": "What is the average primary intake with an Ofsted number of 117433 and a DCSF number greater than 3335?", "context": "CREATE TABLE table_name_62 (intake INTEGER, dcsf_number VARCHAR, type VARCHAR, ofsted_number VARCHAR)"}, {"answer": "SELECT MIN(ofsted_number) FROM table_name_72 WHERE type = \"primary\" AND faith = \"ce\" AND intake = 30 AND dcsf_number < 3349", "question": "What is the lowest Ofsted number for a primary with a CE faith, intake of 30 and a DCSF number lower than 3349?", "context": "CREATE TABLE table_name_72 (ofsted_number INTEGER, dcsf_number VARCHAR, intake VARCHAR, type VARCHAR, faith VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE result = \"w 37-14\"", "question": "Can you tell me the Opponent that has the Result of w 37-14?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_62 WHERE date = \"october 11, 1953\"", "question": "Can you tell me the Opponent that has the Date of october 11, 1953?", "context": "CREATE TABLE table_name_62 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT established FROM table_name_32 WHERE championships > 0 AND league = \"west coast league\"", "question": "What year was the West Coast League established than the championships are greater than 0?", "context": "CREATE TABLE table_name_32 (established VARCHAR, championships VARCHAR, league VARCHAR)"}, {"answer": "SELECT MAX(established) FROM table_name_65 WHERE championships = 0 AND venue = \"apple bowl\"", "question": "During the Apple Bowl having 0 championships, what was the established year?", "context": "CREATE TABLE table_name_65 (established INTEGER, championships VARCHAR, venue VARCHAR)"}, {"answer": "SELECT sport FROM table_name_3 WHERE venue = \"wildcat stadium\"", "question": "What sport happened at Wildcat Stadium?", "context": "CREATE TABLE table_name_3 (sport VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(championships) FROM table_name_48 WHERE league = \"evergreen premier league\"", "question": "How many championships does Evergreen Premier League have?", "context": "CREATE TABLE table_name_48 (championships INTEGER, league VARCHAR)"}, {"answer": "SELECT position FROM table_name_36 WHERE round > 10 AND name = \"shawn mccarthy\"", "question": "Which Position has a Round larger than 10, and a Name of shawn mccarthy?", "context": "CREATE TABLE table_name_36 (position VARCHAR, round VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_96 WHERE name = \"tory epps\" AND round > 8", "question": "How many Pick #s have a Name of tory epps, and a Round larger than 8?", "context": "CREATE TABLE table_name_96 (pick__number VARCHAR, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_41 WHERE record = \"5-2-0\"", "question": "Which team was the visitor with a record of 5-2-0?", "context": "CREATE TABLE table_name_41 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE date = \"november 3\"", "question": "What is the score for the November 3 game?", "context": "CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT others FROM table_name_33 WHERE martin = \"9%\" AND source = \"ogm/news\"", "question": "What percent of others did ogm/news count when MARTIN had 9%?", "context": "CREATE TABLE table_name_33 (others VARCHAR, martin VARCHAR, source VARCHAR)"}, {"answer": "SELECT undecided FROM table_name_70 WHERE others = \"4%\"", "question": "What is the Undecided the others was 4%?", "context": "CREATE TABLE table_name_70 (undecided VARCHAR, others VARCHAR)"}, {"answer": "SELECT undecided FROM table_name_66 WHERE date = \"2009-05-24\"", "question": "What is the Undecided on 2009-05-24?", "context": "CREATE TABLE table_name_66 (undecided VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE undecided = \"\u2013\" AND martin = \"7\u20139%\"", "question": "What is the Date that has MARTIN of 7\u20139% and no Undecided?", "context": "CREATE TABLE table_name_93 (date VARCHAR, undecided VARCHAR, martin VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE martin = \"8%\"", "question": "What is the Date when MARTIN had 8%?", "context": "CREATE TABLE table_name_21 (date VARCHAR, martin VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_49 WHERE game < 3 AND date = \"october 31\"", "question": "Which Attendance has a Game smaller than 3, and a Date of october 31?", "context": "CREATE TABLE table_name_49 (attendance VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank FROM table_name_2 WHERE player = \"charles eady\" AND bowling = \"12/63\"", "question": "What is rank of player Charles Eady and a Bowling of 12/63?", "context": "CREATE TABLE table_name_2 (rank VARCHAR, player VARCHAR, bowling VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_18 WHERE surface = \"hard\" AND outcome = \"winner\" AND partnering = \"jordan kerr\"", "question": "Who was the Opponent partnering with Jordan Kerr, on a hard surface that was the winner?", "context": "CREATE TABLE table_name_18 (opponent VARCHAR, partnering VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_25 WHERE power = \"bhp (kw)\" AND trim = \"ls/2lt\"", "question": "What's the Year Average that has a Power of BHP (KW) and Trim of LS/2LT?", "context": "CREATE TABLE table_name_25 (year INTEGER, power VARCHAR, trim VARCHAR)"}, {"answer": "SELECT engine FROM table_name_8 WHERE year > 2006 AND power = \"bhp (kw)\"", "question": "Which Engine has a Year that's Larger than 2006 and Power of BHP (KW)?", "context": "CREATE TABLE table_name_8 (engine VARCHAR, year VARCHAR, power VARCHAR)"}, {"answer": "SELECT torque FROM table_name_21 WHERE power = \"hp (kw)\"", "question": "What Torque has a Power of HP (KW)?", "context": "CREATE TABLE table_name_21 (torque VARCHAR, power VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_51 WHERE trim = \"ls/lt\" AND power = \"hp (kw)\"", "question": "What's the Year average that's got Trim of LS/LT and Power of HP (KW)?", "context": "CREATE TABLE table_name_51 (year INTEGER, trim VARCHAR, power VARCHAR)"}, {"answer": "SELECT college FROM table_name_65 WHERE overall = 17", "question": "Name the college with overall of 17", "context": "CREATE TABLE table_name_65 (college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_15 WHERE name = \"tony baker\"", "question": "Name the least overall for tony baker", "context": "CREATE TABLE table_name_15 (overall INTEGER, name VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_33 WHERE home = \"winnipeg\"", "question": "Who was the visiting team when Winnipeg was the home team?", "context": "CREATE TABLE table_name_33 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE decision = \"peeters\" AND record = \"29\u20133\u201311\"", "question": "What was the score of the game with a decision of Peeters and a record of 29\u20133\u201311?", "context": "CREATE TABLE table_name_25 (score VARCHAR, decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT label FROM table_name_14 WHERE country = \"united kingdom\" AND catalogue__number = \"hvnlp26cd\"", "question": "What is the Label of Catalogue # HVNLP26CD from United Kingdom?", "context": "CREATE TABLE table_name_14 (label VARCHAR, country VARCHAR, catalogue__number VARCHAR)"}, {"answer": "SELECT country FROM table_name_77 WHERE catalogue__number = \"asw 50248 (724385024825)\"", "question": "What Country is Catalogue # ASW 50248 (724385024825) from?", "context": "CREATE TABLE table_name_77 (country VARCHAR, catalogue__number VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_22 WHERE name = \"south pacific trophy\"", "question": "Who is the winning team of the South Pacific Trophy?", "context": "CREATE TABLE table_name_22 (winning_team VARCHAR, name VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_32 WHERE loss = \"gonz\u00e1lez (0\u20133)\"", "question": "Loss of gonz\u00e1lez (0\u20133) had what attendance?", "context": "CREATE TABLE table_name_32 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE record = \"92\u201370\"", "question": "Record of 92\u201370 had what date?", "context": "CREATE TABLE table_name_70 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_54 WHERE loss = \"kendrick (11\u20138)\"", "question": "Loss of kendrick (11\u20138) had what record?", "context": "CREATE TABLE table_name_54 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_12 WHERE date = \"september 28\"", "question": "Date of september 28 had what record?", "context": "CREATE TABLE table_name_12 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_49 WHERE attendance = \"23,150\"", "question": "Attendance of 23,150 had what opponent?", "context": "CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE attendance = \"36,796\"", "question": "Attendance of 36,796 had what score?", "context": "CREATE TABLE table_name_46 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(long) FROM table_name_30 WHERE name = \"derrick locke\"", "question": "What is the sum of Long for derrick locke?", "context": "CREATE TABLE table_name_30 (long INTEGER, name VARCHAR)"}, {"answer": "SELECT MIN(loss) FROM table_name_10 WHERE name = \"derrick locke\" AND gain > 319", "question": "What is the lowest Loss with Gain larger than 319 for derrick locke?", "context": "CREATE TABLE table_name_10 (loss INTEGER, name VARCHAR, gain VARCHAR)"}, {"answer": "SELECT club FROM table_name_96 WHERE head_coach = \"wojciech kami\u0144ski\"", "question": "Head Coach of wojciech kami\u0144ski is what club?", "context": "CREATE TABLE table_name_96 (club VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT league FROM table_name_20 WHERE sport = \"football\" AND venue = \"stadion polonii\"", "question": "Sport of football, and a Venue of stadion polonii is what league?", "context": "CREATE TABLE table_name_20 (league VARCHAR, sport VARCHAR, venue VARCHAR)"}, {"answer": "SELECT league FROM table_name_8 WHERE sport = \"gaelic football and hurling\"", "question": "Sport of gaelic football and hurling is what league?", "context": "CREATE TABLE table_name_8 (league VARCHAR, sport VARCHAR)"}, {"answer": "SELECT club FROM table_name_34 WHERE venue = \"pepsi arena\"", "question": "Venue of Pepsi arena involved what club?", "context": "CREATE TABLE table_name_34 (club VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(earnings___) AS $__ FROM table_name_26 WHERE player = \"tom watson\" AND rank > 2", "question": "What is the highest earnings for Tom watson who had a ranking larger than 2?", "context": "CREATE TABLE table_name_26 (earnings___ INTEGER, player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(earnings___) AS $__ FROM table_name_60 WHERE player = \"curtis strange\"", "question": "What is the highest earnings for curtis strange?", "context": "CREATE TABLE table_name_60 (earnings___ INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_89 WHERE avg_start < 6.3 AND wins < 0", "question": "What is the average year with an average start smaller than 6.3 and fewer than 0 wins?", "context": "CREATE TABLE table_name_89 (year INTEGER, avg_start VARCHAR, wins VARCHAR)"}, {"answer": "SELECT second FROM table_name_27 WHERE skip = \"barbora vojtusova\"", "question": "Which Second has a Skip of barbora vojtusova?", "context": "CREATE TABLE table_name_27 (second VARCHAR, skip VARCHAR)"}, {"answer": "SELECT skip FROM table_name_22 WHERE lead = \"marju velga\"", "question": "Which Skip did marju velga lead?", "context": "CREATE TABLE table_name_22 (skip VARCHAR, lead VARCHAR)"}, {"answer": "SELECT lead FROM table_name_23 WHERE second = \"katrin kuusk\"", "question": "Which Lead has a Second of katrin kuusk?", "context": "CREATE TABLE table_name_23 (lead VARCHAR, second VARCHAR)"}, {"answer": "SELECT third FROM table_name_58 WHERE skip = \"ellen vogt\"", "question": "Which Third has a Skip of ellen vogt?", "context": "CREATE TABLE table_name_58 (third VARCHAR, skip VARCHAR)"}, {"answer": "SELECT third FROM table_name_11 WHERE second = \"agnieszka ogrodniczek\"", "question": "Which Third has a Second of agnieszka ogrodniczek?", "context": "CREATE TABLE table_name_11 (third VARCHAR, second VARCHAR)"}, {"answer": "SELECT skip FROM table_name_92 WHERE nation = \"spain\"", "question": "What is Spain's skip?", "context": "CREATE TABLE table_name_92 (skip VARCHAR, nation VARCHAR)"}, {"answer": "SELECT per_capita_income FROM table_name_49 WHERE median_household_income = \"$55,800\"", "question": "What is the Per capita income associated with a Median household income of $55,800?", "context": "CREATE TABLE table_name_49 (per_capita_income VARCHAR, median_household_income VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_44 WHERE tournament = \"texas international open\"", "question": "What was the margin of victory at the Texas International Open?", "context": "CREATE TABLE table_name_44 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_60 WHERE winning_score = \u22123(74 - 68 - 72 - 71 = 285)", "question": "What was the margin of victory in the tournament with a winning score of \u22123 (74-68-72-71=285)?", "context": "CREATE TABLE table_name_60 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT SUM(avg_g) FROM table_name_63 WHERE effic > 129.73 AND cmp_att_int = \"333-500-13\"", "question": "Which Avg/G has an Effic larger than 129.73, and a Cmp-Att-Int of 333-500-13?", "context": "CREATE TABLE table_name_63 (avg_g INTEGER, effic VARCHAR, cmp_att_int VARCHAR)"}, {"answer": "SELECT MAX(effic) FROM table_name_56 WHERE avg_g < 305.6 AND gp_gs = \"13-13\"", "question": "Which Effic is the highest one that has an Avg/G smaller than 305.6, and a GP-GS of 13-13?", "context": "CREATE TABLE table_name_56 (effic INTEGER, avg_g VARCHAR, gp_gs VARCHAR)"}, {"answer": "SELECT SUM(avg_g) FROM table_name_69 WHERE name = \"opponents\" AND effic < 129.73", "question": "Which Avg/G that has a Name of opponents, and an Effic smaller than 129.73?", "context": "CREATE TABLE table_name_69 (avg_g INTEGER, name VARCHAR, effic VARCHAR)"}, {"answer": "SELECT cmp_att_int FROM table_name_61 WHERE gp_gs = \"3-0\"", "question": "Which Cmp-Att-Int has a GP-GS of 3-0?", "context": "CREATE TABLE table_name_61 (cmp_att_int VARCHAR, gp_gs VARCHAR)"}, {"answer": "SELECT AVG(effic) FROM table_name_9 WHERE avg_g > 3.7 AND gp_gs = \"13\" AND cmp_att_int = \"318-521-15\"", "question": "Which Effic is the average one that has an Avg/G larger than 3.7, and a GP-GS of 13, and a Cmp-Att-Int of 318-521-15?", "context": "CREATE TABLE table_name_9 (effic INTEGER, cmp_att_int VARCHAR, avg_g VARCHAR, gp_gs VARCHAR)"}, {"answer": "SELECT home FROM table_name_87 WHERE date = \"january 13\"", "question": "Which home team was playing on January 13?", "context": "CREATE TABLE table_name_87 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(runs) FROM table_name_34 WHERE high_score = 55 AND innings > 12", "question": "How many runs were there when the high score was 55 and there were more than 12 innings?", "context": "CREATE TABLE table_name_34 (runs INTEGER, high_score VARCHAR, innings VARCHAR)"}, {"answer": "SELECT SUM(runs) FROM table_name_1 WHERE matches = 1 AND average < 86", "question": "How many runs were there when there was 1 match and les than 86 average?", "context": "CREATE TABLE table_name_1 (runs INTEGER, matches VARCHAR, average VARCHAR)"}, {"answer": "SELECT station FROM table_name_78 WHERE programming = \"me-tv\"", "question": "Which station has programming of Me-TV?", "context": "CREATE TABLE table_name_78 (station VARCHAR, programming VARCHAR)"}, {"answer": "SELECT station FROM table_name_33 WHERE programming = \"me-tv\"", "question": "Which station has programming of Me-TV?", "context": "CREATE TABLE table_name_33 (station VARCHAR, programming VARCHAR)"}, {"answer": "SELECT psip_short_name FROM table_name_19 WHERE video = \"720p\" AND programming = \"main kstc-tv programming\"", "question": "What is the short name having video of 720p and programming of Main KSTC-TV programming?", "context": "CREATE TABLE table_name_19 (psip_short_name VARCHAR, video VARCHAR, programming VARCHAR)"}, {"answer": "SELECT video FROM table_name_36 WHERE psip_short_name = \"kstcdt2\"", "question": "What is the video associated with a short name of KSTCDT2?", "context": "CREATE TABLE table_name_36 (video VARCHAR, psip_short_name VARCHAR)"}, {"answer": "SELECT psip_short_name FROM table_name_95 WHERE station = \"kstc-tv\" AND channel = 5.5", "question": "What is the short name of channel 5.5, KSTC-TV?", "context": "CREATE TABLE table_name_95 (psip_short_name VARCHAR, station VARCHAR, channel VARCHAR)"}, {"answer": "SELECT psip_short_name FROM table_name_2 WHERE channel < 5.2", "question": "What is the short name of the channel under 5.2?", "context": "CREATE TABLE table_name_2 (psip_short_name VARCHAR, channel INTEGER)"}, {"answer": "SELECT prefecture FROM table_name_94 WHERE province = \"hubei\" AND county = \"enshi\"", "question": "Which prefecture is in Hubei province and Enshi county?", "context": "CREATE TABLE table_name_94 (prefecture VARCHAR, province VARCHAR, county VARCHAR)"}, {"answer": "SELECT SUM(tujia_population) FROM table_name_20 WHERE prefecture = \"zhangjiajie\" AND county = \"sangzhi\"", "question": "What is the sum of Tujia population with the Zhangjiajie prefecture in Sangzhi county?", "context": "CREATE TABLE table_name_20 (tujia_population INTEGER, prefecture VARCHAR, county VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_99 WHERE points > 40 AND home = \"detroit\"", "question": "What is the total number of attendence has points greater than 40, and detroit as the home?", "context": "CREATE TABLE table_name_99 (attendance VARCHAR, points VARCHAR, home VARCHAR)"}, {"answer": "SELECT MAX(tropical_lows) FROM table_name_13 WHERE season = \"1990\u201391\" AND tropical_cyclones > 10", "question": "What is the largest number for tropical Lows for the 1990\u201391 season with more than 10 tropical cyclones?", "context": "CREATE TABLE table_name_13 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VARCHAR)"}, {"answer": "SELECT MIN(Severe) AS tropical_cyclones FROM table_name_88 WHERE strongest_storm = \"tiffany\" AND tropical_lows > 10", "question": "What is the least number of tropical cyclones when the strongest storm was Tiffany and less than 10 tropical lows.", "context": "CREATE TABLE table_name_88 (Severe INTEGER, strongest_storm VARCHAR, tropical_lows VARCHAR)"}, {"answer": "SELECT MIN(Severe) AS tropical_cyclones FROM table_name_61 WHERE season = \"1992\u201393\" AND tropical_lows < 6", "question": "What is the least amount of severe tropical cyclones for the 1992\u201393 season and the tropical Lows smaller than 6?", "context": "CREATE TABLE table_name_61 (Severe INTEGER, season VARCHAR, tropical_lows VARCHAR)"}, {"answer": "SELECT MIN(tropical_lows) FROM table_name_41 WHERE season = \"1993\u201394\" AND tropical_cyclones < 11", "question": "What is the least amount of tropical lows for the 1993\u201394 season with less than 11 tropical cyclones", "context": "CREATE TABLE table_name_41 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_22 WHERE date = \"september 8, 1980\" AND attendance > 55 OFFSET 045", "question": "How many Weeks are on september 8, 1980 and Attendances larger than 55,045? Question 4", "context": "CREATE TABLE table_name_22 (week VARCHAR, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT round FROM table_name_31 WHERE college = \"stanford\"", "question": "Which Round has a College of stanford?", "context": "CREATE TABLE table_name_31 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT round FROM table_name_47 WHERE pick = 174", "question": "Which Round has a Pick of 174?", "context": "CREATE TABLE table_name_47 (round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_66 WHERE pick = 174", "question": "Which Position has a Pick of 174?", "context": "CREATE TABLE table_name_66 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT event FROM table_name_39 WHERE year = 1964", "question": "that was held in 1964?", "context": "CREATE TABLE table_name_39 (event VARCHAR, year VARCHAR)"}, {"answer": "SELECT event FROM table_name_62 WHERE venue = \"toronto, canada\"", "question": "What is the name of the Event with a venue that was in toronto, canada?", "context": "CREATE TABLE table_name_62 (event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_98 WHERE competition = \"british empire and commonwealth games\"", "question": "What is the Year the competition the british empire and commonwealth games were held?", "context": "CREATE TABLE table_name_98 (year INTEGER, competition VARCHAR)"}, {"answer": "SELECT position FROM table_name_98 WHERE competition = \"commonwealth games\"", "question": "What is the position of the commonwealth games?", "context": "CREATE TABLE table_name_98 (position VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_15 WHERE year = 1964", "question": "What is the venue with a competition in 1964?", "context": "CREATE TABLE table_name_15 (venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE surface = \"clay\" AND location = \"santos, brazil\"", "question": "Name the date for clay surface and location of santos, brazil", "context": "CREATE TABLE table_name_84 (date VARCHAR, surface VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE outcome = \"winner\" AND score = \"4\u20136 6\u20132 7\u20136 (7\u20134)\"", "question": "Name the date with outcome of winner and score of 4\u20136 6\u20132 7\u20136 (7\u20134)", "context": "CREATE TABLE table_name_25 (date VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_81 WHERE position_in_2004 = \"5\"", "question": "What's the highest capacity for a position of 5 in 2004?", "context": "CREATE TABLE table_name_81 (capacity INTEGER, position_in_2004 VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE position_in_2004 = \"9\"", "question": "Which venue was number 9 for 2004?", "context": "CREATE TABLE table_name_45 (venue VARCHAR, position_in_2004 VARCHAR)"}, {"answer": "SELECT city FROM table_name_99 WHERE founded = 1857", "question": "What city was founded in 1857?", "context": "CREATE TABLE table_name_99 (city VARCHAR, founded VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_42 WHERE time = \"2:31\"", "question": "Which Opponent has a Time of 2:31?", "context": "CREATE TABLE table_name_42 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT method FROM table_name_98 WHERE round = 1 AND time = \"0:28\"", "question": "Which Method has a Round of 1, and a Time of 0:28?", "context": "CREATE TABLE table_name_98 (method VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_15 WHERE event = \"call to arms i\"", "question": "Which Time has an Event of call to arms i?", "context": "CREATE TABLE table_name_15 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_58 WHERE date = \"april 9\"", "question": "what team played on april 9", "context": "CREATE TABLE table_name_58 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(frequency__khz_) FROM table_name_61 WHERE licensed_location = \"longview\"", "question": "What is the smallest frequency (kHz) that is in the location of Longview?", "context": "CREATE TABLE table_name_61 (frequency__khz_ INTEGER, licensed_location VARCHAR)"}, {"answer": "SELECT licensed_location FROM table_name_44 WHERE frequency__khz_ > 1370", "question": "What is the location with a frequency (kHz) greater than 1370?", "context": "CREATE TABLE table_name_44 (licensed_location VARCHAR, frequency__khz_ INTEGER)"}, {"answer": "SELECT COUNT(capacity) FROM table_name_27 WHERE venue = \"yunost\"", "question": "What is the capacity number for Yunost?", "context": "CREATE TABLE table_name_27 (capacity VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(1 AS st_prize___) AS $__ FROM table_name_68 WHERE tournament = \"canadian open\"", "question": "What is the total number of first prizes in USD for the Canadian Open?", "context": "CREATE TABLE table_name_68 (tournament VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_61 WHERE lost = \"19\"", "question": "Which Drawn has a Lost of 19?", "context": "CREATE TABLE table_name_61 (drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT played FROM table_name_94 WHERE \"club\" = \"club\"", "question": "Which Played has a Club of club?", "context": "CREATE TABLE table_name_94 (played VARCHAR)"}, {"answer": "SELECT club FROM table_name_18 WHERE losing_bonus = \"1\"", "question": "Which Club has 1 Losing bonus?", "context": "CREATE TABLE table_name_18 (club VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_65 WHERE points_for = \"571\"", "question": "What is the Losing bonus of 571 Points ?", "context": "CREATE TABLE table_name_65 (losing_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT lost FROM table_name_78 WHERE tries_for = \"75\"", "question": "Which Lost has a Tries for of 75?", "context": "CREATE TABLE table_name_78 (lost VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_24 WHERE date = \"19 february 2006\"", "question": "Who is the opponent in the final of the match on 19 February 2006?", "context": "CREATE TABLE table_name_24 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_49 WHERE date = \"26 march 2006\"", "question": "Who is the opponent in the final of the match on 26 March 2006?", "context": "CREATE TABLE table_name_49 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_54 WHERE college = \"utah\" AND pick__number < 7", "question": "What is the overall number of the player from Utah with a pick # higher than 7?", "context": "CREATE TABLE table_name_54 (overall INTEGER, college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_83 WHERE pick__number > 34", "question": "What is the highest round of the player with a pick number lower than 34?", "context": "CREATE TABLE table_name_83 (round INTEGER, pick__number INTEGER)"}, {"answer": "SELECT SUM(round) FROM table_name_50 WHERE name = \"mitch davis\" AND overall < 118", "question": "What round did Mitch Davis, with an overall higher than 118, have?", "context": "CREATE TABLE table_name_50 (round INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_54 WHERE college = \"georgia\"", "question": "What is the highest overall of the player from Georgia?", "context": "CREATE TABLE table_name_54 (overall INTEGER, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_70 WHERE overall = 45", "question": "What is the position of the player with an overall of 45?", "context": "CREATE TABLE table_name_70 (position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_54 WHERE team = \"nsu\" AND points > 2", "question": "How many wins for team nsu and over 2 points?", "context": "CREATE TABLE table_name_54 (wins INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_55 WHERE wins < 0", "question": "What is the earliest year associated with under 0 wins?", "context": "CREATE TABLE table_name_55 (year INTEGER, wins INTEGER)"}, {"answer": "SELECT SUM(wins) FROM table_name_59 WHERE team = \"mv agusta\" AND points > 10 AND year > 1957", "question": "How many wins for team mv agusta, over 10 points, and after 1957?", "context": "CREATE TABLE table_name_59 (wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_32 WHERE round = 3", "question": "What College/Junior/Club Team (League) has a round of 3?", "context": "CREATE TABLE table_name_32 (college_junior_club_team__league_ VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_6 WHERE round > 1 AND nationality = \"austria\"", "question": "What player has a round larger than 1 in Austria?", "context": "CREATE TABLE table_name_6 (player VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE nationality = \"sweden\"", "question": "Which player's nationality is from Sweden?", "context": "CREATE TABLE table_name_83 (player VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_52 WHERE nationality = \"canada\" AND round < 3", "question": "What College/Junior/Club Team (League) from Canada has a round smaller than 3?", "context": "CREATE TABLE table_name_52 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT distance FROM table_name_71 WHERE year = 1997", "question": "What was the distance in 1997?", "context": "CREATE TABLE table_name_71 (distance VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_19 WHERE surface = \"hard\" AND date = \"january 5, 2003\"", "question": "Who was the opponents in the final on January 5, 2003, on a hard surface?", "context": "CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_46 WHERE date = \"february 19, 2012\"", "question": "What was the final score on the February 19, 2012 final?", "context": "CREATE TABLE table_name_46 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(attendance__away_) FROM table_name_99 WHERE venue = \"away\" AND date = \"24 august 2007\"", "question": "Name the least attendance with venue of away on 24 august 2007", "context": "CREATE TABLE table_name_99 (attendance__away_ INTEGER, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance__away_) FROM table_name_82 WHERE result = \"won 2-0\" AND date = \"2 november 2007\"", "question": "Name the average attendance with result of won 2-0 on 2 november 2007", "context": "CREATE TABLE table_name_82 (attendance__away_ INTEGER, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(uni_number) FROM table_name_25 WHERE surname = \"wiltshire\"", "question": "What is the uniform number of the player whose last name is Wiltshire?", "context": "CREATE TABLE table_name_25 (uni_number INTEGER, surname VARCHAR)"}, {"answer": "SELECT fourth_quarter FROM table_name_86 WHERE rank > 3 AND second_quarter = \"johnson & johnson 156,515.9\"", "question": "When the rank is larger than 3 with a second quarter of johnson & johnson 156,515.9, what is the fourth quarter?", "context": "CREATE TABLE table_name_86 (fourth_quarter VARCHAR, rank VARCHAR, second_quarter VARCHAR)"}, {"answer": "SELECT second_quarter FROM table_name_69 WHERE rank = 2", "question": "With a rank of 2 what is the second quarter?", "context": "CREATE TABLE table_name_69 (second_quarter VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_45 WHERE third_quarter = \"china mobile 195,680.4\"", "question": "When the third quarter is China Mobile 195,680.4, what is the rank?", "context": "CREATE TABLE table_name_45 (rank VARCHAR, third_quarter VARCHAR)"}, {"answer": "SELECT rank FROM table_name_15 WHERE first_quarter = \"procter & gamble 138,013\"", "question": "When the first quarter is procter & gamble 138,013, what is the rank?", "context": "CREATE TABLE table_name_15 (rank VARCHAR, first_quarter VARCHAR)"}, {"answer": "SELECT fourth_quarter FROM table_name_27 WHERE rank < 4 AND second_quarter = \"exxon mobil 341,140.3\"", "question": "When the rank is less than 4, and has a second quarter of exxon mobil 341,140.3, what is the fourth quarter?", "context": "CREATE TABLE table_name_27 (fourth_quarter VARCHAR, rank VARCHAR, second_quarter VARCHAR)"}, {"answer": "SELECT term_end FROM table_name_74 WHERE party = \"united australia\" AND term_in_office = \"184 days\"", "question": "What is the Term end that has a Party of united australia and 184 days in office?", "context": "CREATE TABLE table_name_74 (term_end VARCHAR, party VARCHAR, term_in_office VARCHAR)"}, {"answer": "SELECT SUM(average) FROM table_name_5 WHERE yards = 23", "question": "What is the sum of average values for 23 yards?", "context": "CREATE TABLE table_name_5 (average INTEGER, yards VARCHAR)"}, {"answer": "SELECT MAX(yards) FROM table_name_27 WHERE sacks = 2 AND average > 0", "question": "What are the most yards for 2 sacks and an average greater than 0?", "context": "CREATE TABLE table_name_27 (yards INTEGER, sacks VARCHAR, average VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_6 WHERE location = \"bangkok\" AND year = 1978", "question": "What is listed for the Bronze, with the Location of Bangkok, and the Year of 1978?", "context": "CREATE TABLE table_name_6 (bronze VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_51 WHERE silver = \"kim kyung-ho\"", "question": "What's listed for the lowest Year that a Silver of Kim Kyung-Ho?", "context": "CREATE TABLE table_name_51 (year INTEGER, silver VARCHAR)"}, {"answer": "SELECT gold FROM table_name_61 WHERE bronze = \"kim sun-bin\"", "question": "What's the Gold that also has Bronze of Kim Sun-Bin?", "context": "CREATE TABLE table_name_61 (gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_75 WHERE gold = \"kim woo-jin\"", "question": "What's the Bronze that's also got a Godl of Kim Woo-Jin?", "context": "CREATE TABLE table_name_75 (bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_1 WHERE bronze = \"wataru haraguchi\"", "question": "What is listed as the highest Year that's also got a Bronze of Wataru Haraguchi?", "context": "CREATE TABLE table_name_1 (year INTEGER, bronze VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE record = \"35\u201323\u201315\"", "question": "What was the score when their record was 35\u201323\u201315?", "context": "CREATE TABLE table_name_58 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_90 WHERE score = \"5 \u2013 6\"", "question": "Which home team has a score of 5 \u2013 6?", "context": "CREATE TABLE table_name_90 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT county FROM table_name_17 WHERE school = \"merrillville\"", "question": "In what county is the school of Merrillville?", "context": "CREATE TABLE table_name_17 (county VARCHAR, school VARCHAR)"}, {"answer": "SELECT previous_conference FROM table_name_41 WHERE school = \"portage\"", "question": "The school of Portage was in what conference previous?", "context": "CREATE TABLE table_name_41 (previous_conference VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_37 WHERE location = \"valparaiso\"", "question": "What is the name of the school that is in Valparaiso?", "context": "CREATE TABLE table_name_37 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(fa_cup) FROM table_name_25 WHERE malaysia_cup = 0 AND player = \"ahmad fouzee masuri\" AND total > 0", "question": "Which FA Cup is the highest one that has a Malaysia Cup of 0, and a Player of ahmad fouzee masuri, and a Total larger than 0?", "context": "CREATE TABLE table_name_25 (fa_cup INTEGER, total VARCHAR, malaysia_cup VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_37 WHERE player = \"ahmad fouzee masuri\" AND fa_cup > 0", "question": "How many totals have a Player of ahmad fouzee masuri, and an FA Cup larger than 0?", "context": "CREATE TABLE table_name_37 (total VARCHAR, player VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT AVG(fa_cup) FROM table_name_62 WHERE player = \"khairan ezuan razali\" AND total < 0", "question": "Which FA Cup has a Player of khairan ezuan razali, and a Total smaller than 0?", "context": "CREATE TABLE table_name_62 (fa_cup INTEGER, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(malaysia_cup) FROM table_name_8 WHERE total > 3 AND player = \"ivan yusoff\" AND league < 2", "question": "How many Malaysia Cups have a Total larger than 3, and a Player of ivan yusoff, and a League smaller than 2?", "context": "CREATE TABLE table_name_8 (malaysia_cup VARCHAR, league VARCHAR, total VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(fa_cup) FROM table_name_44 WHERE malaysia_cup > 0 AND total = 8", "question": "Which FA Cup has a Malaysia Cup larger than 0, and a Total of 8?", "context": "CREATE TABLE table_name_44 (fa_cup INTEGER, malaysia_cup VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_50 WHERE venue = \"edmonton, canada\"", "question": "Which Year is the highest one that has a Venue of edmonton, canada?", "context": "CREATE TABLE table_name_50 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_27 WHERE competition = \"world championships\" AND year > 1997", "question": "Which Position has a Competition of world championships, and a Year larger than 1997?", "context": "CREATE TABLE table_name_27 (position VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_20 WHERE notes = \"heptathlon\" AND year = 1991", "question": "Which Venue has a Notes of heptathlon, and a Year of 1991?", "context": "CREATE TABLE table_name_20 (venue VARCHAR, notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT days_held FROM table_name_95 WHERE wrestler = \"noiz\"", "question": "What days held has noiz as the wrestler?", "context": "CREATE TABLE table_name_95 (days_held VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT location FROM table_name_14 WHERE wrestler = \"tatsuhito takaiwa\"", "question": "What location has tatsuhito takaiwa as the wrestler?", "context": "CREATE TABLE table_name_14 (location VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT event FROM table_name_33 WHERE days_held = \"8\"", "question": "What event has 8 as the days held?", "context": "CREATE TABLE table_name_33 (event VARCHAR, days_held VARCHAR)"}, {"answer": "SELECT event FROM table_name_98 WHERE days_held = \"unknown\"", "question": "What event has unknown as the days held.?", "context": "CREATE TABLE table_name_98 (event VARCHAR, days_held VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_87 WHERE engine = \"iveco f1ce3481e\"", "question": "What is the Displacement of the Iveco F1CE3481E Engine?", "context": "CREATE TABLE table_name_87 (displacement VARCHAR, engine VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_68 WHERE model = \"180 multijet power/3.0 hdi\"", "question": "What is the Displacement of the 180 Multijet Power/3.0 HDI Model?", "context": "CREATE TABLE table_name_68 (displacement VARCHAR, model VARCHAR)"}, {"answer": "SELECT valvetrain FROM table_name_12 WHERE model = \"diesel engines\"", "question": "What is the Valvetrain of the Diesel Engines Model?", "context": "CREATE TABLE table_name_12 (valvetrain VARCHAR, model VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_6 WHERE year_s__won = \"1994 , 1997\"", "question": "Year(s) won of 1994 , 1997 has what average total?", "context": "CREATE TABLE table_name_6 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_41 WHERE player = \"corey pavin\" AND to_par > 5", "question": "Player of corey pavin, and a To par larger than 5 has what average total?", "context": "CREATE TABLE table_name_41 (total INTEGER, player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_29 WHERE total < 285 AND to_par > 1", "question": "Total smaller than 285, and a To par larger than 1 belongs to what player?", "context": "CREATE TABLE table_name_29 (player VARCHAR, total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE total > 285 AND finish = \"t30\"", "question": "Total larger than 285, and a Finish of t30 belongs to what player?", "context": "CREATE TABLE table_name_83 (player VARCHAR, total VARCHAR, finish VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_38 WHERE record = \"18-20\"", "question": "Which player for a team with an 18-20 record had the most rebounds in a game?", "context": "CREATE TABLE table_name_38 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(frequency_mhz) FROM table_name_54 WHERE class = \"d\" AND call_sign = \"k201bm\" AND erp_w < 74", "question": "Name the total number of frequency Mhz with class of d and call sign of k201bm and ERP W less than 74", "context": "CREATE TABLE table_name_54 (frequency_mhz VARCHAR, erp_w VARCHAR, class VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT MIN(frequency_mhz) FROM table_name_24 WHERE call_sign = \"k202ag\"", "question": "Name the least frequency Mhz with call sign of k202ag", "context": "CREATE TABLE table_name_24 (frequency_mhz INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT class FROM table_name_2 WHERE call_sign = \"k220cp\"", "question": "Name the class with call sign of k220cp", "context": "CREATE TABLE table_name_2 (class VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT record FROM table_name_51 WHERE opponent = \"winnipeg jets\"", "question": "What is the Winnipeg Jets record?", "context": "CREATE TABLE table_name_51 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home FROM table_name_26 WHERE date = \"november 8\"", "question": "What's the stadium on November 8?", "context": "CREATE TABLE table_name_26 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_53 WHERE date = \"march 17\"", "question": "Who was the visitor on March 17?", "context": "CREATE TABLE table_name_53 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE home = \"toronto maple leafs\" AND date = \"november 10\"", "question": "What's the score for Toronto Maple Leafs on November 10?", "context": "CREATE TABLE table_name_49 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_75 WHERE date = \"october 31\"", "question": "Who was the visitor on October 31?", "context": "CREATE TABLE table_name_75 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank FROM table_name_42 WHERE wins = 0 AND class = \"350cc\"", "question": "What is the rank associated with 0 wins and a 350cc class?", "context": "CREATE TABLE table_name_42 (rank VARCHAR, wins VARCHAR, class VARCHAR)"}, {"answer": "SELECT run_2 FROM table_name_73 WHERE country = \"australia\" AND run_1 < 53.75", "question": "What is the run 2 of the athlete from Australia with a run 1 less than 53.75?", "context": "CREATE TABLE table_name_73 (run_2 VARCHAR, country VARCHAR, run_1 VARCHAR)"}, {"answer": "SELECT SUM(run_2) FROM table_name_24 WHERE country = \"russia\" AND athlete = \"maria orlova\"", "question": "What is the run 2 of athlete Maria Orlova from Russia?", "context": "CREATE TABLE table_name_24 (run_2 INTEGER, country VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT SUM(run_3) FROM table_name_5 WHERE run_1 > 53.75 AND run_2 < 52.91", "question": "What is the run 3 of the athlete with a run 1 more than 53.75 and a run 2 less than 52.91?", "context": "CREATE TABLE table_name_5 (run_3 INTEGER, run_1 VARCHAR, run_2 VARCHAR)"}, {"answer": "SELECT MIN(run_3) FROM table_name_30 WHERE run_2 < 53.72 AND run_1 = 53.1", "question": "What is the lowest run 3 an athlete with a run 2 less than 53.72 and a run 1 of 53.1 has?", "context": "CREATE TABLE table_name_30 (run_3 INTEGER, run_2 VARCHAR, run_1 VARCHAR)"}, {"answer": "SELECT MIN(run_2) FROM table_name_90 WHERE run_1 = 52.44 AND run_3 < 52.35", "question": "What is the lowest run 2 of the athlete with a run 1 of 52.44 and a run 3 less than 52.35?", "context": "CREATE TABLE table_name_90 (run_2 INTEGER, run_1 VARCHAR, run_3 VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_39 WHERE poles < 0", "question": "How many points are associated with 0 poles?", "context": "CREATE TABLE table_name_39 (points VARCHAR, poles INTEGER)"}, {"answer": "SELECT MIN(game__number) FROM table_name_93 WHERE home = \"detroit\"", "question": "What is the first game that has a home team of Detroit?", "context": "CREATE TABLE table_name_93 (game__number INTEGER, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_14 WHERE points > 92", "question": "Which home team has higher than 92 points?", "context": "CREATE TABLE table_name_14 (home VARCHAR, points INTEGER)"}, {"answer": "SELECT team FROM table_name_42 WHERE score = \"101\"", "question": "what team's score is 101?", "context": "CREATE TABLE table_name_42 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_11 WHERE year = 1999 AND versus = \"zimbabwe\"", "question": "what team played against zimbabwe in 1999?", "context": "CREATE TABLE table_name_11 (team VARCHAR, year VARCHAR, versus VARCHAR)"}, {"answer": "SELECT team FROM table_name_70 WHERE year = 2006", "question": "what is the team that played in 2006?", "context": "CREATE TABLE table_name_70 (team VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_49 WHERE driver = \"romain grosjean\" AND average_pre_2010 < 0", "question": "What is the lowest amount of points driver Romain Grosjean, who has an average pre-2010 less than 0, has?", "context": "CREATE TABLE table_name_49 (points INTEGER, driver VARCHAR, average_pre_2010 VARCHAR)"}, {"answer": "SELECT AVG(entries) FROM table_name_27 WHERE driver = \"mark webber\" AND points > 1014.5", "question": "What is the average number of entries driver Mark Webber, who has more than 1014.5 points, has?", "context": "CREATE TABLE table_name_27 (entries INTEGER, driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(average_points_per_race_entered) FROM table_name_75 WHERE points < 969 AND average_pre_2010 < 0", "question": "What is the highest average points per race of the driver with less than 969 points and an average pre-2010 less than 0?", "context": "CREATE TABLE table_name_75 (average_points_per_race_entered INTEGER, points VARCHAR, average_pre_2010 VARCHAR)"}, {"answer": "SELECT MIN(average_points_per_race_entered) FROM table_name_3 WHERE driver = \"kimi r\u00e4ikk\u00f6nen\" AND entries > 194", "question": "What is the lowest average points per race entered of driver kimi r\u00e4ikk\u00f6nen, who has more than 194 entries?", "context": "CREATE TABLE table_name_3 (average_points_per_race_entered INTEGER, driver VARCHAR, entries VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_92 WHERE opponent = \"chicago black hawks\"", "question": "What is the first game played against the Chicago Black Hawks?", "context": "CREATE TABLE table_name_92 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_19 WHERE date = \"9 november 1991\"", "question": "Name the opponent for 9 november 1991", "context": "CREATE TABLE table_name_19 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_92 WHERE wins < 0", "question": "Which Losses is the lowest one that has Wins smaller than 0?", "context": "CREATE TABLE table_name_92 (losses INTEGER, wins INTEGER)"}, {"answer": "SELECT losses FROM table_name_95 WHERE season > 1941 AND team = \"hamilton wildcats\" AND ties = 0", "question": "Which Losses have a Season larger than 1941, and a Team of hamilton wildcats, and Ties of 0?", "context": "CREATE TABLE table_name_95 (losses VARCHAR, ties VARCHAR, season VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(season) FROM table_name_42 WHERE ties < 1 AND team = \"vancouver grizzlies\" AND wins < 1", "question": "Which Season has Ties smaller than 1, and a Team of vancouver grizzlies, and Wins smaller than 1?", "context": "CREATE TABLE table_name_42 (season INTEGER, wins VARCHAR, ties VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(ties) FROM table_name_41 WHERE wins < 1 AND games = 6 AND losses = 6 AND season > 1941", "question": "How many Ties have Wins smaller than 1, and Games of 6, and Losses of 6, and a Season larger than 1941?", "context": "CREATE TABLE table_name_41 (ties VARCHAR, season VARCHAR, losses VARCHAR, wins VARCHAR, games VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_56 WHERE team = \"winnipeg blue bombers\" AND season > 1964", "question": "Which Wins have a Team of winnipeg blue bombers, and a Season larger than 1964?", "context": "CREATE TABLE table_name_56 (wins INTEGER, team VARCHAR, season VARCHAR)"}, {"answer": "SELECT class FROM table_name_44 WHERE year > 1985 AND wins > 0", "question": "What engine class is associated with a year after 1985 and over 0 wins?", "context": "CREATE TABLE table_name_44 (class VARCHAR, year VARCHAR, wins VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE loss = \"trout (7-4)\"", "question": "Which opponent has a loss of trout (7-4)?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_65 WHERE save = \"smith (22)\"", "question": "Which opponent has a save of smith (22)?", "context": "CREATE TABLE table_name_65 (opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_38 WHERE bronze > 1 AND silver > 2", "question": "How much Gold has a Bronze larger than 1, and a Silver larger than 2?", "context": "CREATE TABLE table_name_38 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_85 WHERE nation = \"japan (jpn)\" AND silver < 1", "question": "Which Total has a Nation of japan (jpn), and a Silver smaller than 1?", "context": "CREATE TABLE table_name_85 (total INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_98 WHERE tournament = \"wgc-accenture match play championship\"", "question": "What is the margin of victory in WGC-Accenture Match Play Championship?", "context": "CREATE TABLE table_name_98 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE runner_s__up = \"nick price\"", "question": "On what date was Nick Price the runner-up?", "context": "CREATE TABLE table_name_7 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_52 WHERE runner_s__up = \"nick price\"", "question": "What is the margin of victory for Nick Price as a runner-up?", "context": "CREATE TABLE table_name_52 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_25 WHERE tournament = \"pga championship\"", "question": "What is the margin of victory for PGA Championship?", "context": "CREATE TABLE table_name_25 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE winning_score = \u201320(68 - 67 - 65 - 64 = 264)", "question": "On what date was the winning score \u201320 (68-67-65-64=264)?", "context": "CREATE TABLE table_name_46 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT player FROM table_name_88 WHERE position = \"d\" AND round > 3", "question": "Which player was D past Round 3?", "context": "CREATE TABLE table_name_88 (player VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_5 WHERE position = \"f\"", "question": "Which Round was F picked?", "context": "CREATE TABLE table_name_5 (round VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_6 WHERE player = \"ryan russell\"", "question": "What Position is Ryan Russell?", "context": "CREATE TABLE table_name_6 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_12 WHERE round = 4", "question": "What country does Round 4 come from?", "context": "CREATE TABLE table_name_12 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_17 WHERE date = \"april 14\"", "question": "Which opponent was present on April 14?", "context": "CREATE TABLE table_name_17 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_60 WHERE date = \"april 15\"", "question": "what team lost on april 15", "context": "CREATE TABLE table_name_60 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_93 WHERE date = \"april 21\"", "question": "what team played on april 21", "context": "CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE date = \"april 10\"", "question": "what team scored on april 10", "context": "CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT loser FROM table_name_44 WHERE time = \"0:58\"", "question": "Who lost with a time of 0:58?", "context": "CREATE TABLE table_name_44 (loser VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_37 WHERE winner = \"rafael cavalcante\"", "question": "What is the average number of rounds for winner Rafael Cavalcante?", "context": "CREATE TABLE table_name_37 (round INTEGER, winner VARCHAR)"}, {"answer": "SELECT method FROM table_name_71 WHERE time = \"2:32\"", "question": "What win method has a time of 2:32?", "context": "CREATE TABLE table_name_71 (method VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_67 WHERE lost = 0 AND games > 8", "question": "What is the sum of points values that are associated with 0 losses and more than 8 games?", "context": "CREATE TABLE table_name_67 (points INTEGER, lost VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_25 WHERE points > 13 AND games < 8", "question": "What is the fewest losses associated with more than 13 points and fewer than 8 games?", "context": "CREATE TABLE table_name_25 (lost INTEGER, points VARCHAR, games VARCHAR)"}, {"answer": "SELECT points_difference FROM table_name_97 WHERE points > 2 AND lost < 3 AND drawn < 1", "question": "What is the difference associated with more than 2 points, fewer than 3 losses, and fewer than 1 draw?", "context": "CREATE TABLE table_name_97 (points_difference VARCHAR, drawn VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_95 WHERE games > 8", "question": "What is the fewest number of points associated with more than 8 games?", "context": "CREATE TABLE table_name_95 (points INTEGER, games INTEGER)"}, {"answer": "SELECT title FROM table_name_33 WHERE role = \"richard kolner\"", "question": "Which title did richard kolner play?", "context": "CREATE TABLE table_name_33 (title VARCHAR, role VARCHAR)"}, {"answer": "SELECT title FROM table_name_93 WHERE dance_partner = \"adele astaire\" AND lyrics = \"ira gershwin\" AND director = \"felix edwardes\"", "question": "Which Title has a Dance Partner of adele astaire, and Lyrics of ira gershwin, and a Director of felix edwardes?", "context": "CREATE TABLE table_name_93 (title VARCHAR, director VARCHAR, dance_partner VARCHAR, lyrics VARCHAR)"}, {"answer": "SELECT role FROM table_name_61 WHERE theatre = \"globe\" AND music = \"jerome kern\"", "question": "Which Role has a Theatre of globe, and a Music of jerome kern?", "context": "CREATE TABLE table_name_61 (role VARCHAR, theatre VARCHAR, music VARCHAR)"}, {"answer": "SELECT name FROM table_name_22 WHERE year * __est_ = \"2012\"", "question": "what name was on the year 2012", "context": "CREATE TABLE table_name_22 (name VARCHAR, year VARCHAR, __est_ VARCHAR)"}, {"answer": "SELECT name FROM table_name_40 WHERE spouse = \"charles ii\"", "question": "Which member of house of Habsburg-Lorraine had the spouse Charles II?", "context": "CREATE TABLE table_name_40 (name VARCHAR, spouse VARCHAR)"}, {"answer": "SELECT marriage FROM table_name_67 WHERE death = \"29 december 1829\"", "question": "What is the marriage date for the Habsburg-Lorraine house member who died 29 December 1829?", "context": "CREATE TABLE table_name_67 (marriage VARCHAR, death VARCHAR)"}, {"answer": "SELECT ceased_to_be_duchess FROM table_name_5 WHERE became_duchess = \"7/8 april 1766\"", "question": "When did the duchess who became duchess on 7/8 April 1766 cease to be duchess?", "context": "CREATE TABLE table_name_5 (ceased_to_be_duchess VARCHAR, became_duchess VARCHAR)"}, {"answer": "SELECT death FROM table_name_2 WHERE birth = \"30 october 1797\"", "question": "What is the date of death of the duchess born on 30 October 1797?", "context": "CREATE TABLE table_name_2 (death VARCHAR, birth VARCHAR)"}, {"answer": "SELECT birth FROM table_name_16 WHERE marriage = \"1 may 1844\"", "question": "What is the birth date of the duchess who married on 1 May 1844?", "context": "CREATE TABLE table_name_16 (birth VARCHAR, marriage VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_67 WHERE round = 7", "question": "What is the highest numbered pick from round 7?", "context": "CREATE TABLE table_name_67 (pick INTEGER, round VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_57 WHERE against > 11 AND team = \"botafogo\" AND position < 2", "question": "How much Played has an Against larger than 11, and a Team of botafogo, and a Position smaller than 2?", "context": "CREATE TABLE table_name_57 (played VARCHAR, position VARCHAR, against VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_56 WHERE points < 14 AND lost < 4 AND played > 9", "question": "Which average Drawn has Points smaller than 14, and a Lost smaller than 4, and a Played larger than 9?", "context": "CREATE TABLE table_name_56 (drawn INTEGER, played VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_54 WHERE team = \"vasco da gama\" AND against < 11", "question": "Which Played is the lowest one that has a Team of vasco da gama, and an Against smaller than 11?", "context": "CREATE TABLE table_name_54 (played INTEGER, team VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_4 WHERE lost > 4 AND team = \"am\u00e9rica\" AND points < 5", "question": "Which Played has a Lost larger than 4, and a Team of am\u00e9rica, and Points smaller than 5?", "context": "CREATE TABLE table_name_4 (played INTEGER, points VARCHAR, lost VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_76 WHERE position = 3 AND drawn > 3", "question": "Which Lost has a Position of 3, and a Drawn larger than 3?", "context": "CREATE TABLE table_name_76 (lost INTEGER, position VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_61 WHERE drawn > 1 AND points < 14 AND against > 10", "question": "How much Lost has a Drawn larger than 1, and Points smaller than 14, and an Against larger than 10?", "context": "CREATE TABLE table_name_61 (lost VARCHAR, against VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_5 WHERE opponent = \"yvonne vermaak\"", "question": "What tournament has yvonne vermaak as the opponent?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_79 WHERE opponent = \"yvonne vermaak\"", "question": "What outcome has yvonne vermaak as the opponent?", "context": "CREATE TABLE table_name_79 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_1 WHERE tournament = \"hershey\"", "question": "What is the outcome for the Hershey tournament?", "context": "CREATE TABLE table_name_1 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_4 WHERE save = \"ni fu-deh\"", "question": "Who played against Save Of Ni Fu-Deh?", "context": "CREATE TABLE table_name_4 (opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT loss FROM table_name_56 WHERE opponent = \"chinatrust whales\" AND save = \"miguel saladin\"", "question": "What's the loss of who has a Save of Miguel Saladin and played against Chinatrust Whales?", "context": "CREATE TABLE table_name_56 (loss VARCHAR, opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_80 WHERE loss = \"diegomar markwell\"", "question": "Who's the opponent when Diegomar Markwell is the loss?", "context": "CREATE TABLE table_name_80 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_8 WHERE record = \"86-71\"", "question": "what game had a score of 86-71", "context": "CREATE TABLE table_name_8 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_34 WHERE date = \"september 14\"", "question": "what game took place on september 14", "context": "CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_70 WHERE attendance = \"21,629\"", "question": "what game had an attendance of 21,629", "context": "CREATE TABLE table_name_70 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(s_no) FROM table_name_10 WHERE opponent = \"sri lanka\"", "question": "what is the number of people in sri lanka", "context": "CREATE TABLE table_name_10 (s_no INTEGER, opponent VARCHAR)"}, {"answer": "SELECT position_in_1998 FROM table_name_10 WHERE team = \"slavia\"", "question": "What was the position of the Slavia team in 1998?", "context": "CREATE TABLE table_name_10 (position_in_1998 VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_91 WHERE location = \"lida\"", "question": "Which team is located in Lida?", "context": "CREATE TABLE table_name_91 (team VARCHAR, location VARCHAR)"}, {"answer": "SELECT episode_no FROM table_name_56 WHERE countries_visited = \"india\"", "question": "Which episode number visited India?", "context": "CREATE TABLE table_name_56 (episode_no VARCHAR, countries_visited VARCHAR)"}, {"answer": "SELECT episode_title FROM table_name_26 WHERE countries_visited = \"cuba\"", "question": "Which episode title featured a visit to the country of Cuba?", "context": "CREATE TABLE table_name_26 (episode_title VARCHAR, countries_visited VARCHAR)"}, {"answer": "SELECT position FROM table_name_83 WHERE player = \"jesse boulerice\"", "question": "Which position does Jesse Boulerice play?", "context": "CREATE TABLE table_name_83 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_1 WHERE driver = \"ayrton senna\"", "question": "What is the fewest number of wins in the chart for Ayrton Senna?", "context": "CREATE TABLE table_name_1 (wins INTEGER, driver VARCHAR)"}, {"answer": "SELECT entries FROM table_name_51 WHERE wins > 11", "question": "What is the number of entries associated with more than 11 wins?", "context": "CREATE TABLE table_name_51 (entries VARCHAR, wins INTEGER)"}, {"answer": "SELECT MAX(points) FROM table_name_96 WHERE lost > 1 AND games < 5", "question": "Name the most points with lost more than 1 and games less than 5", "context": "CREATE TABLE table_name_96 (points INTEGER, lost VARCHAR, games VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_13 WHERE lost > 1 AND games < 5", "question": "Name the sum of drawn with lost more than 1 and games less than 5", "context": "CREATE TABLE table_name_13 (drawn INTEGER, lost VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_4 WHERE points > 6 AND games < 5", "question": "Name the least lost with points more than 6 and games less than 5", "context": "CREATE TABLE table_name_4 (lost INTEGER, points VARCHAR, games VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_25 WHERE games < 5", "question": "Name the sum of points with games less than 5", "context": "CREATE TABLE table_name_25 (points INTEGER, games INTEGER)"}, {"answer": "SELECT location FROM table_name_17 WHERE time = \"5:00\" AND record = \"6-2-1\"", "question": "What was the location of the bout that lasted 5:00 and led to a 6-2-1 record?", "context": "CREATE TABLE table_name_17 (location VARCHAR, time VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_79 WHERE opponent = \"alexis vila\"", "question": "What was the record after the bout with Alexis Vila?", "context": "CREATE TABLE table_name_79 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT player_name FROM table_name_93 WHERE position = \"defensive end\" AND college = \"california\"", "question": "Who was a defensive end at California?", "context": "CREATE TABLE table_name_93 (player_name VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT player_name FROM table_name_53 WHERE year_[a_] > 2011", "question": "Which players were selected after 2011?", "context": "CREATE TABLE table_name_53 (player_name VARCHAR, year_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT player_name FROM table_name_64 WHERE position = \"linebacker\" AND college = \"tennessee\"", "question": "Who was a linebacker at Tennessee?", "context": "CREATE TABLE table_name_64 (player_name VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_70 WHERE events > 30", "question": "Which Wins is the lowest one that has Events larger than 30?", "context": "CREATE TABLE table_name_70 (wins INTEGER, events INTEGER)"}, {"answer": "SELECT date FROM table_name_67 WHERE results\u00b9 = \"3:0\"", "question": "What day were the results 3:0?", "context": "CREATE TABLE table_name_67 (date VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT city FROM table_name_32 WHERE date = \"april 29\"", "question": "What city played on april 29?", "context": "CREATE TABLE table_name_32 (city VARCHAR, date VARCHAR)"}, {"answer": "SELECT city FROM table_name_99 WHERE opponent = \"england\"", "question": "Which city has an opponent of England?", "context": "CREATE TABLE table_name_99 (city VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE opponent = \"austria\"", "question": "What day was the opponent Austria?", "context": "CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_8 WHERE country_territory_entity = \"seychelles\" AND rank < 13", "question": "Name the most population for seychelles and rank less than 13", "context": "CREATE TABLE table_name_8 (population INTEGER, country_territory_entity VARCHAR, rank VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_49 WHERE owner = \"canadian broadcasting corporation\" AND branding = \"cbc radio one\"", "question": "What is the frequency of the station owned by the Canadian Broadcasting Corporation and branded as CBC Radio One?", "context": "CREATE TABLE table_name_49 (frequency VARCHAR, owner VARCHAR, branding VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_14 WHERE format = \"soft adult contemporary\"", "question": "What is the frequency of the soft adult contemporary stations?", "context": "CREATE TABLE table_name_14 (frequency VARCHAR, format VARCHAR)"}, {"answer": "SELECT owner FROM table_name_65 WHERE frequency = \"fm 92.1\"", "question": "Who owns the station with the frequency FM 92.1?", "context": "CREATE TABLE table_name_65 (owner VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT branding FROM table_name_80 WHERE owner = \"canadian broadcasting corporation\" AND frequency = \"fm 97.7\"", "question": "What is the branding of the FM 97.7 station owned by the Canadian Broadcasting Corporation?", "context": "CREATE TABLE table_name_80 (branding VARCHAR, owner VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT f_laps FROM table_name_98 WHERE podiums = \"1\" AND season = 2000 AND final_placing = \"nc\"", "question": "Which F/Laps has Podiums of 1, and a Season of 2000, and a Final Placing of nc?", "context": "CREATE TABLE table_name_98 (f_laps VARCHAR, final_placing VARCHAR, podiums VARCHAR, season VARCHAR)"}, {"answer": "SELECT series FROM table_name_72 WHERE poles = \"0\" AND races = \"17\"", "question": "Which Series has Poles of 0, and Races of 17?", "context": "CREATE TABLE table_name_72 (series VARCHAR, poles VARCHAR, races VARCHAR)"}, {"answer": "SELECT team_name FROM table_name_25 WHERE poles = \"0\" AND final_placing = \"29th\"", "question": "Which Team Name has Poles of 0, and a Final Placing of 29th?", "context": "CREATE TABLE table_name_25 (team_name VARCHAR, poles VARCHAR, final_placing VARCHAR)"}, {"answer": "SELECT series FROM table_name_31 WHERE final_placing = \"9th\" AND podiums = \"2\"", "question": "Which Series has a Final Placing of 9th, and Podiums of 2?", "context": "CREATE TABLE table_name_31 (series VARCHAR, final_placing VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT series FROM table_name_34 WHERE team_name = \"sunred engineering\"", "question": "Which Series has a Team Name of sunred engineering?", "context": "CREATE TABLE table_name_34 (series VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT points FROM table_name_38 WHERE wins = \"0\" AND final_placing = \"21st\"", "question": "Which Points have Wins of 0, and a Final Placing of 21st?", "context": "CREATE TABLE table_name_38 (points VARCHAR, wins VARCHAR, final_placing VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_46 WHERE place = \"lahti\"", "question": "Name the bronze for lahti", "context": "CREATE TABLE table_name_46 (bronze VARCHAR, place VARCHAR)"}, {"answer": "SELECT rank FROM table_name_35 WHERE goals > 10 AND scorer = \"choi sang-kuk\"", "question": "Which Rank has Goals larger than 10, and a Scorer of choi sang-kuk?", "context": "CREATE TABLE table_name_35 (rank VARCHAR, goals VARCHAR, scorer VARCHAR)"}, {"answer": "SELECT rank FROM table_name_69 WHERE scorer = \"lee sang-cheol\"", "question": "Which Rank has a Scorer of lee sang-cheol?", "context": "CREATE TABLE table_name_69 (rank VARCHAR, scorer VARCHAR)"}, {"answer": "SELECT club FROM table_name_40 WHERE rank = \"5\"", "question": "Which Club has a Rank of 5?", "context": "CREATE TABLE table_name_40 (club VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(original_amendments_cosponsored) FROM table_name_50 WHERE all_bills_sponsored < 64 AND bill_support_withdrawn < 0", "question": "How many original bills amendments cosponsored lower than 64,with the bill support withdrawn lower than 0?", "context": "CREATE TABLE table_name_50 (original_amendments_cosponsored INTEGER, all_bills_sponsored VARCHAR, bill_support_withdrawn VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_55 WHERE status = \"re-elected\" AND party = \"democratic\"", "question": "Who is the democratic incumbent that was re-elected?", "context": "CREATE TABLE table_name_55 (incumbent VARCHAR, status VARCHAR, party VARCHAR)"}, {"answer": "SELECT elected FROM table_name_92 WHERE party = \"republican\" AND status = \"re-elected\" AND incumbent = \"john all barham\"", "question": "What year was republican, re-elected incumbent John all barham elected?", "context": "CREATE TABLE table_name_92 (elected VARCHAR, incumbent VARCHAR, party VARCHAR, status VARCHAR)"}, {"answer": "SELECT COUNT(october) FROM table_name_18 WHERE game = 4 AND points < 3", "question": "What day in october was game number 4 with under 3 points?", "context": "CREATE TABLE table_name_18 (october VARCHAR, game VARCHAR, points VARCHAR)"}, {"answer": "SELECT school FROM table_name_27 WHERE pick > 181", "question": "Which school was the drafted player from in a pick larger than 181?", "context": "CREATE TABLE table_name_27 (school VARCHAR, pick INTEGER)"}, {"answer": "SELECT points_against FROM table_name_61 WHERE lost = \"17\"", "question": "Which points against has 17 as the lost?", "context": "CREATE TABLE table_name_61 (points_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT lost FROM table_name_78 WHERE points_for = \"528\"", "question": "What lost has 528 as the points?", "context": "CREATE TABLE table_name_78 (lost VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_31 WHERE try_bonus = \"16\"", "question": "What is the drawn that has 16 as the trys bonus?", "context": "CREATE TABLE table_name_31 (drawn VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT club FROM table_name_64 WHERE tries_for = \"tries for\"", "question": "What club has tries for in the category tries for?", "context": "CREATE TABLE table_name_64 (club VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_96 WHERE played = \"22\" AND points = \"96\"", "question": "What is the drawn that has 22 for played, and 96 for points?", "context": "CREATE TABLE table_name_96 (drawn VARCHAR, played VARCHAR, points VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_22 WHERE drawn = \"1\" AND try_bonus = \"16\"", "question": "What points have 1 for drawn, and 16 as a try bonus?", "context": "CREATE TABLE table_name_22 (points_for VARCHAR, drawn VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT team__number1 FROM table_name_45 WHERE round = \"group h\"", "question": "What is team 1 in group h?", "context": "CREATE TABLE table_name_45 (team__number1 VARCHAR, round VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE date = \"15 march 2006\"", "question": "What was the score on 15 march 2006?", "context": "CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_46 WHERE winning_pitcher = \"chris young\" AND location = \"arlington\"", "question": "Which winning team has a winning pitcher of Chris Young and was played in Arlington?", "context": "CREATE TABLE table_name_46 (winning_team VARCHAR, winning_pitcher VARCHAR, location VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_31 WHERE losing_pitcher = \"juan dominguez\"", "question": "What winning team has a losing pitcher of Juan Dominguez?", "context": "CREATE TABLE table_name_31 (winning_team VARCHAR, losing_pitcher VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_91 WHERE date = \"august 14\"", "question": "Who was the opponent on August 14?", "context": "CREATE TABLE table_name_91 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_7 WHERE record = \"79-49\"", "question": "Which loss had a record of 79-49?", "context": "CREATE TABLE table_name_7 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT semi_final_dual_television_commentator FROM table_name_96 WHERE grand_final_television_commentator = \"pierre tchernia\" AND spokesperson = \"unknown\"", "question": "What is the semi-final dual television commentator status of the year with Pierre Tchernia as the grand final television commentator and an unknown spokesperson?", "context": "CREATE TABLE table_name_96 (semi_final_dual_television_commentator VARCHAR, grand_final_television_commentator VARCHAR, spokesperson VARCHAR)"}, {"answer": "SELECT semi_final_television_commentator FROM table_name_54 WHERE spokesperson = \"unknown\" AND year_s_ = 1962", "question": "What is the semi-final television commentator status in 1962 with an unknown spokesperson?", "context": "CREATE TABLE table_name_54 (semi_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR)"}, {"answer": "SELECT grand_final_television_commentator FROM table_name_20 WHERE year_s_ > 1959 AND grand_final_dual_television_commentator = \"dave\" AND spokesperson = \"marie myriam\"", "question": "What is the grand final television commentator status after 1959 when Dave was the grand final dual television commentator and Marie Myriam was the spokesperson?", "context": "CREATE TABLE table_name_20 (grand_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR, grand_final_dual_television_commentator VARCHAR)"}, {"answer": "SELECT grand_final_dual_television_commentator FROM table_name_52 WHERE spokesperson = \"amaury vassili\"", "question": "What is the grand final dual television commentator status of the year when Amaury Vassili was the spokesperson?", "context": "CREATE TABLE table_name_52 (grand_final_dual_television_commentator VARCHAR, spokesperson VARCHAR)"}, {"answer": "SELECT state FROM table_name_73 WHERE hometown = \"lincoln, de\"", "question": "What state has lincoln, de as the hometown?", "context": "CREATE TABLE table_name_73 (state VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT ship FROM table_name_89 WHERE hull_no = \"aor-6\"", "question": "Name the ship with hull number of aor-6", "context": "CREATE TABLE table_name_89 (ship VARCHAR, hull_no VARCHAR)"}, {"answer": "SELECT hull_no FROM table_name_29 WHERE commissioned__decommissioned = \"1973\u20131996\"", "question": "Name the hull number of Commissioned\u2013 Decommissioned of 1973\u20131996", "context": "CREATE TABLE table_name_29 (hull_no VARCHAR, commissioned__decommissioned VARCHAR)"}, {"answer": "SELECT commissioned__decommissioned FROM table_name_62 WHERE home_port = \"oakland\" AND nvr_page = \"aor-1\"", "question": "Name the commissioned-decommissioned for oakland and NVR page of aor-1", "context": "CREATE TABLE table_name_62 (commissioned__decommissioned VARCHAR, home_port VARCHAR, nvr_page VARCHAR)"}, {"answer": "SELECT home_port FROM table_name_15 WHERE ship = \"kansas city\"", "question": "Name the home port for kansas city", "context": "CREATE TABLE table_name_15 (home_port VARCHAR, ship VARCHAR)"}, {"answer": "SELECT commissioned__decommissioned FROM table_name_17 WHERE nvr_page = \"aor-7\"", "question": "Name the commissioned-decommissioned for NVR page of aor-7", "context": "CREATE TABLE table_name_17 (commissioned__decommissioned VARCHAR, nvr_page VARCHAR)"}, {"answer": "SELECT ship FROM table_name_28 WHERE home_port = \"oakland\" AND nvr_page = \"aor-3\"", "question": "Name the ship for oakland home port and NVR page of aor-3", "context": "CREATE TABLE table_name_28 (ship VARCHAR, home_port VARCHAR, nvr_page VARCHAR)"}, {"answer": "SELECT name FROM table_name_43 WHERE location = \"gulf of mexico\" AND type = \"ship\" AND entered_service = \"1999\"", "question": "What is the name of the location and ship type in the Gulf of Mexico that entered service in 1999?", "context": "CREATE TABLE table_name_43 (name VARCHAR, entered_service VARCHAR, location VARCHAR, type VARCHAR)"}, {"answer": "SELECT water_depth FROM table_name_11 WHERE entered_service = \"2001\" AND name = \"cajun express\"", "question": "What was the water depth that entered service in 2001 named Cajun Express?", "context": "CREATE TABLE table_name_11 (water_depth VARCHAR, entered_service VARCHAR, name VARCHAR)"}, {"answer": "SELECT water_depth FROM table_name_87 WHERE location = \"gulf of mexico\" AND name = \"discoverer clear leader\"", "question": "What was the water depth in the Gulf of Mexico named Discoverer Clear Leader?", "context": "CREATE TABLE table_name_87 (water_depth VARCHAR, location VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_28 WHERE location = \"nigeria\"", "question": "What is the name of a location in Nigeria?", "context": "CREATE TABLE table_name_28 (name VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_5 WHERE entered_service = \"1999\" AND customer = \"anadarko\"", "question": "What location entered service in 1999 and had a customer of Anadarko?", "context": "CREATE TABLE table_name_5 (location VARCHAR, entered_service VARCHAR, customer VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE date = \"january 30\"", "question": "What was the Score on January 30?", "context": "CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_11 WHERE home = \"toronto maple leafs\" AND date = \"december 22\"", "question": "Who were the Visitor of the Toronto Maple Leafs Home game on December 22?", "context": "CREATE TABLE table_name_11 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE record = \"9\u20136\u20134\"", "question": "On what Date was the Record 9\u20136\u20134?", "context": "CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE date = \"march 1\"", "question": "What was the Score on March 1?", "context": "CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT primary_conference FROM table_name_58 WHERE founded < 1866 AND affiliation = \"private/catholic\"", "question": "What is the primary conference that was founded before 1866 and has an affiliation of private/catholic?", "context": "CREATE TABLE table_name_58 (primary_conference VARCHAR, founded VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_43 WHERE affiliation = \"public\" AND founded < 1866", "question": "What is the total enrollment for an affiliation of public, and was founded before 1866?", "context": "CREATE TABLE table_name_43 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_37 WHERE location = \"towson, md\"", "question": "What is the affiliation for towson, md?", "context": "CREATE TABLE table_name_37 (affiliation VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_1 WHERE affiliation = \"private/catholic\" AND founded > 1842", "question": "What is the total enrollment for a private/catholic affiliation and founded after 1842?", "context": "CREATE TABLE table_name_1 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_name_68 WHERE nickname = \"mountain hawks\"", "question": "What is the number founded for the nickname mountain hawks?", "context": "CREATE TABLE table_name_68 (founded VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE host_city = \"k\u0117dainiai\"", "question": "What is the score of the season in the host city k\u0117dainiai?", "context": "CREATE TABLE table_name_59 (score VARCHAR, host_city VARCHAR)"}, {"answer": "SELECT winner FROM table_name_39 WHERE finalist = \"lietuvos rytas\" AND season < 2010", "question": "Who was the winner of the season before 2010 with Lietuvos Rytas as a finalist?", "context": "CREATE TABLE table_name_39 (winner VARCHAR, finalist VARCHAR, season VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_57 WHERE host_city = \"tartu\" AND season = 2010", "question": "Who was the finalist in the 2010 season in the host city tartu?", "context": "CREATE TABLE table_name_57 (finalist VARCHAR, host_city VARCHAR, season VARCHAR)"}, {"answer": "SELECT winner FROM table_name_42 WHERE season = 2009", "question": "Who was the winner during the 2009 season?", "context": "CREATE TABLE table_name_42 (winner VARCHAR, season VARCHAR)"}, {"answer": "SELECT host_city FROM table_name_47 WHERE season = 2012", "question": "What is the host city during the 2012 season?", "context": "CREATE TABLE table_name_47 (host_city VARCHAR, season VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_54 WHERE score = \"4\u20136, 6\u20133, 7\u20136(10)\"", "question": "what game had a score of 4\u20136, 6\u20133, 7\u20136(10)?", "context": "CREATE TABLE table_name_54 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT became_duchess FROM table_name_77 WHERE name = \"eleonor magdalene of the palatinate-neuburg\"", "question": "When did eleonor magdalene of the palatinate-neuburg become duchess?", "context": "CREATE TABLE table_name_77 (became_duchess VARCHAR, name VARCHAR)"}, {"answer": "SELECT marriage FROM table_name_68 WHERE became_duchess = \"12 december 1666\"", "question": "Which Marriage has a Became Duchess of 12 december 1666?", "context": "CREATE TABLE table_name_68 (marriage VARCHAR, became_duchess VARCHAR)"}, {"answer": "SELECT death FROM table_name_3 WHERE birth = \"18 november 1630\"", "question": "When did the person die who was born on 18 november 1630?", "context": "CREATE TABLE table_name_3 (death VARCHAR, birth VARCHAR)"}, {"answer": "SELECT birth FROM table_name_65 WHERE became_duchess = \"17 april 1711 husband's ascension\"", "question": "Which Birth has a Became Duchess of 17 april 1711 husband's ascension?", "context": "CREATE TABLE table_name_65 (birth VARCHAR, became_duchess VARCHAR)"}, {"answer": "SELECT spouse FROM table_name_38 WHERE birth = \"30 may 1653\"", "question": "Which Spouse has a Birth of 30 may 1653?", "context": "CREATE TABLE table_name_38 (spouse VARCHAR, birth VARCHAR)"}, {"answer": "SELECT death FROM table_name_34 WHERE birth = \"6 january 1655\"", "question": "When did the person born on 6 january 1655 die?", "context": "CREATE TABLE table_name_34 (death VARCHAR, birth VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_88 WHERE caps > 15 AND player = \"chris cusiter\"", "question": "Which Club or province has a caps larger than 15 and has Chris Cusiter playing for them?", "context": "CREATE TABLE table_name_88 (club_province VARCHAR, caps VARCHAR, player VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_26 WHERE club_province = \"ulster\" AND position = \"centre\"", "question": "What is the date of birth for the player from Ulster and plays at Centre position?", "context": "CREATE TABLE table_name_26 (date_of_birth__age_ VARCHAR, club_province VARCHAR, position VARCHAR)"}, {"answer": "SELECT type FROM table_name_62 WHERE location = \"nova scotia\" AND disaster = \"rms atlantic\"", "question": "What type of disaster is rms atlantic categorized in that was located in Nova Scotia?", "context": "CREATE TABLE table_name_62 (type VARCHAR, location VARCHAR, disaster VARCHAR)"}, {"answer": "SELECT type FROM table_name_55 WHERE disaster = \"arrow air flight 1285\"", "question": "What is the type of disaster that the Arrow Air Flight 1285 categorized in?", "context": "CREATE TABLE table_name_55 (type VARCHAR, disaster VARCHAR)"}, {"answer": "SELECT disaster FROM table_name_39 WHERE location = \"ontario\" AND deaths = \"223\"", "question": "What is the disaster that was located in Ontario with 223 deaths?", "context": "CREATE TABLE table_name_39 (disaster VARCHAR, location VARCHAR, deaths VARCHAR)"}, {"answer": "SELECT deaths FROM table_name_56 WHERE type = \"shipwreck\" AND date = \"1873\"", "question": "How many deaths were there during the shipwreck in 1873?", "context": "CREATE TABLE table_name_56 (deaths VARCHAR, type VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_49 WHERE date = \"1916\"", "question": "Where was the disaster located that took place on 1916?", "context": "CREATE TABLE table_name_49 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_52 WHERE time_retired = \"+3.370 secs\"", "question": "Which Laps is the highest one that has a Time/Retired of +3.370 secs?", "context": "CREATE TABLE table_name_52 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_62 WHERE team = \"rusport\" AND laps > 221", "question": "Which Grid has a Team of rusport, and Laps larger than 221?", "context": "CREATE TABLE table_name_62 (grid INTEGER, team VARCHAR, laps VARCHAR)"}, {"answer": "SELECT title FROM table_name_18 WHERE producer = \"maq\" AND role = \"anna\"", "question": "What title has a producer of MAQ and Anna as a role?", "context": "CREATE TABLE table_name_18 (title VARCHAR, producer VARCHAR, role VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_94 WHERE producer = \"star cinema\" AND director = \"rory quintos\" AND title = \"kay tagal kang hinintay\"", "question": "How many years was Kay Tagal Kang Hinintay directed by Rory Quintos and produced by Star Cinema?", "context": "CREATE TABLE table_name_94 (year VARCHAR, title VARCHAR, producer VARCHAR, director VARCHAR)"}, {"answer": "SELECT title FROM table_name_76 WHERE director = \"joyce bernal\"", "question": "Which title was directed by Joyce Bernal?", "context": "CREATE TABLE table_name_76 (title VARCHAR, director VARCHAR)"}, {"answer": "SELECT song FROM table_name_46 WHERE points > 38 AND artist = \"morena camilleri\"", "question": "What song is it that artist morena camilleri does and has more than 38 points", "context": "CREATE TABLE table_name_46 (song VARCHAR, points VARCHAR, artist VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_15 WHERE lyricist = \"ray agius\"", "question": "What is the total number of points for ray agius", "context": "CREATE TABLE table_name_15 (points INTEGER, lyricist VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_99 WHERE name = \"henry s. uber / betty uber (eng)\"", "question": "What play did henry s. uber / betty uber (eng) finish in?", "context": "CREATE TABLE table_name_99 (place VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_name_37 WHERE counties_represented = \"baltimore county, howard\" AND committee = \"environmental matters (vice-chair)\"", "question": "When Baltimore County, Howard are represented, what's the first elected when the committee is environmental matters (vice-chair)?", "context": "CREATE TABLE table_name_37 (first_elected INTEGER, counties_represented VARCHAR, committee VARCHAR)"}, {"answer": "SELECT party FROM table_name_50 WHERE counties_represented = \"howard\" AND delegate = \"turner, frank s. frank s. turner\"", "question": "What party is the delegate of Turner, Frank S. Frank S. Turner of Howard County?", "context": "CREATE TABLE table_name_50 (party VARCHAR, counties_represented VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT damage__millions_usd__ FROM table_name_58 WHERE storm_name = \"three\"", "question": "What is the damage of storm three?", "context": "CREATE TABLE table_name_58 (damage__millions_usd__ VARCHAR, storm_name VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_18 WHERE circuit = \"donington\"", "question": "Which Round is the lowest one that has a Circuit of donington?", "context": "CREATE TABLE table_name_18 (round INTEGER, circuit VARCHAR)"}, {"answer": "SELECT 250 AS cc_winner FROM table_name_5 WHERE round > 6 AND date = \"26 july\"", "question": "Which 250cc winner has a Round larger than 6, and a Date of 26 july?", "context": "CREATE TABLE table_name_5 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_30 WHERE attendance = 48 OFFSET 510", "question": "Attendance of 48,510 had what highest week?", "context": "CREATE TABLE table_name_30 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_43 WHERE opponent = \"at san francisco 49ers\"", "question": "Opponent of at san francisco 49ers had what lowest week?", "context": "CREATE TABLE table_name_43 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE opponent = \"minnesota vikings\"", "question": "On what Date is the Minnesota Vikings the Opponent?", "context": "CREATE TABLE table_name_71 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE week = 5", "question": "What is the Date of Week 5?", "context": "CREATE TABLE table_name_3 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE week = 2", "question": "What is the Date of Week 2?", "context": "CREATE TABLE table_name_47 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE loss = \"lary (10-12)\"", "question": "What was the score when the game has a loss of Lary (10-12)?", "context": "CREATE TABLE table_name_18 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT result FROM table_name_37 WHERE competition = \"friendly\"", "question": "What is the result of the friendly match?", "context": "CREATE TABLE table_name_37 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE date = \"june 4, 2008\"", "question": "What is the score of the match on June 4, 2008?", "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_17 WHERE length = \"3:50\"", "question": "Which Year is the lowest one that has a Length of 3:50?", "context": "CREATE TABLE table_name_17 (year INTEGER, length VARCHAR)"}, {"answer": "SELECT length FROM table_name_13 WHERE year = 2000", "question": "Which Length has a Year of 2000?", "context": "CREATE TABLE table_name_13 (length VARCHAR, year VARCHAR)"}, {"answer": "SELECT place FROM table_name_7 WHERE draw > 2 AND points < 139 AND artist = \"midnight band\"", "question": "In what place is the artist Midnight Band with a draw larger than 2 and less than 139 points.", "context": "CREATE TABLE table_name_7 (place VARCHAR, artist VARCHAR, draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT player FROM table_name_78 WHERE matches = \"9\"", "question": "what player matched up with 9", "context": "CREATE TABLE table_name_78 (player VARCHAR, matches VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_48 WHERE team_1 = \"internacional\"", "question": "What is the 2nd leg of the Internacional Team 1?", "context": "CREATE TABLE table_name_48 (team_1 VARCHAR)"}, {"answer": "SELECT city FROM table_name_57 WHERE country = \"spain\" AND stadium = \"palacio de deportes de santander\"", "question": "Which City has a Country of spain, and a Stadium of palacio de deportes de santander?", "context": "CREATE TABLE table_name_57 (city VARCHAR, country VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_76 WHERE rank < 15 AND city = \"belgrade\"", "question": "Which Capacity is the lowest one that has a Rank smaller than 15, and a City of belgrade?", "context": "CREATE TABLE table_name_76 (capacity INTEGER, rank VARCHAR, city VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_96 WHERE city = \"brisbane\" AND rank < 1", "question": "Which Capacity is the lowest one that has a City of brisbane, and a Rank smaller than 1?", "context": "CREATE TABLE table_name_96 (capacity INTEGER, city VARCHAR, rank VARCHAR)"}, {"answer": "SELECT total_points FROM table_name_29 WHERE games = \"30\" AND bonus_points = \"9\" AND match_points = \"68\"", "question": "What are the total points that had 68 match points, 9 bonus points and 30 games?", "context": "CREATE TABLE table_name_29 (total_points VARCHAR, match_points VARCHAR, games VARCHAR, bonus_points VARCHAR)"}, {"answer": "SELECT MIN(length__km_) FROM table_name_38 WHERE name = \"north klondike highway\" AND length__mi_ < 326", "question": "What's the shortest length from north klondike highway that has a length less than 326?", "context": "CREATE TABLE table_name_38 (length__km_ INTEGER, name VARCHAR, length__mi_ VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_92 WHERE score = \"2-1\"", "question": "what team had a score of 2-1", "context": "CREATE TABLE table_name_92 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_1 WHERE date = \"may 11\"", "question": "what team played on may 11", "context": "CREATE TABLE table_name_1 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT away FROM table_name_76 WHERE club = \"sevilla\"", "question": "what place has the club of sevilla", "context": "CREATE TABLE table_name_76 (away VARCHAR, club VARCHAR)"}, {"answer": "SELECT new_conference FROM table_name_64 WHERE location = \"greentown\"", "question": "Which new conference is located in Greentown?", "context": "CREATE TABLE table_name_64 (new_conference VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(year_joined) FROM table_name_35 WHERE previous_conference = \"mid-indiana\" AND location = \"converse\"", "question": "What is the most current year with a previous conference of Mid-Indiana in Converse?", "context": "CREATE TABLE table_name_35 (year_joined INTEGER, previous_conference VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(year_left) FROM table_name_71 WHERE location = \"culver\"", "question": "What year did Culver leave?", "context": "CREATE TABLE table_name_71 (year_left INTEGER, location VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_41 WHERE _number___county = \"34 howard\"", "question": "What is the mascot with a #/County of 34 Howard?", "context": "CREATE TABLE table_name_41 (mascot VARCHAR, _number___county VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE type_of_game = \"friendly\" AND results\u00b9 = \"2:3\"", "question": "What day was a friendly game held that had a score of 2:3?", "context": "CREATE TABLE table_name_87 (date VARCHAR, type_of_game VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT type_of_game FROM table_name_57 WHERE date = \"december 22\"", "question": "What type of game was held on December 22?", "context": "CREATE TABLE table_name_57 (type_of_game VARCHAR, date VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_name_92 WHERE year = 1979", "question": "what game had a doubles round in 1979", "context": "CREATE TABLE table_name_92 (mixed_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_74 WHERE goals < 72 AND assists > 40", "question": "Where were less than 72 goals made and more than 40 assists made?", "context": "CREATE TABLE table_name_74 (venue VARCHAR, goals VARCHAR, assists VARCHAR)"}, {"answer": "SELECT name FROM table_name_58 WHERE opponent = \"pohang steelers\"", "question": "Which opponent plays against the Pohang Steelers?", "context": "CREATE TABLE table_name_58 (name VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT competition FROM table_name_19 WHERE assists > 40", "question": "What competition had more than 40 assists?", "context": "CREATE TABLE table_name_19 (competition VARCHAR, assists INTEGER)"}, {"answer": "SELECT nation FROM table_name_22 WHERE places = 122.5", "question": "What Nation Placed 122.5?", "context": "CREATE TABLE table_name_22 (nation VARCHAR, places VARCHAR)"}, {"answer": "SELECT AVG(places) FROM table_name_71 WHERE nation = \"united states\" AND rank = 8", "question": "What is the Places amount of the United States Ranking 8?", "context": "CREATE TABLE table_name_71 (places INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(episode) FROM table_name_35 WHERE performer_4 = \"jimmy mulville\"", "question": "What is the average episode number where jimmy mulville was the 4th performer?", "context": "CREATE TABLE table_name_35 (episode INTEGER, performer_4 VARCHAR)"}, {"answer": "SELECT COUNT(episode) FROM table_name_70 WHERE performer_3 = \"hugh laurie\"", "question": "What is the total number of episodes where hugh laurie was the 3rd performer?", "context": "CREATE TABLE table_name_70 (episode VARCHAR, performer_3 VARCHAR)"}, {"answer": "SELECT MIN(episode) FROM table_name_48 WHERE performer_4 = \"john bird\"", "question": "What is the lowest episode number where john bird was the 4th performer?", "context": "CREATE TABLE table_name_48 (episode INTEGER, performer_4 VARCHAR)"}, {"answer": "SELECT performer_3 FROM table_name_11 WHERE performer_4 = \"rory bremner\"", "question": "Who was the 3rd performer when Rory Bremner was the 4th performer?", "context": "CREATE TABLE table_name_11 (performer_3 VARCHAR, performer_4 VARCHAR)"}, {"answer": "SELECT time___et__ FROM table_name_38 WHERE location = \"three rivers stadium\" AND opponent = \"detroit lions\"", "question": "What time did the game featuring the Detroit Lions at Three Rivers Stadium occur?", "context": "CREATE TABLE table_name_38 (time___et__ VARCHAR, location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(successes) FROM table_name_36 WHERE launches > 1 AND failures < 0", "question": "What is the highest number of successful launches associated with over 1 launch and under 0 fails?", "context": "CREATE TABLE table_name_36 (successes INTEGER, launches VARCHAR, failures VARCHAR)"}, {"answer": "SELECT locomotive_type FROM table_name_93 WHERE name = \"winston churchill\"", "question": "What kind of locomotive is Winston Churchill?", "context": "CREATE TABLE table_name_93 (locomotive_type VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_49 WHERE points < 23 AND lost = 6 AND against > 21", "question": "How many draws were there when there were points less than 23, 6 losses, and more than 21 against?", "context": "CREATE TABLE table_name_49 (drawn VARCHAR, against VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_38 WHERE position < 7 AND against = 19", "question": "What is the smallest amount of draws when the position is less than 7 and the against is 19?", "context": "CREATE TABLE table_name_38 (drawn INTEGER, position VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_97 WHERE team = \"fluminense\"", "question": "What is the highest amount of plays for fluminense?", "context": "CREATE TABLE table_name_97 (played INTEGER, team VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_43 WHERE lost < 4 AND against < 16", "question": "What is the least amount of points when there were less than 4 losses and less than 16 against?", "context": "CREATE TABLE table_name_43 (points INTEGER, lost VARCHAR, against VARCHAR)"}, {"answer": "SELECT developer FROM table_name_97 WHERE publisher = \"rockstar games\"", "question": "Who does Rockstar Games use as a developer?", "context": "CREATE TABLE table_name_97 (developer VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_18 WHERE publisher = \"microsoft game studios\" AND title = \"amped: freestyle snowboarding\"", "question": "When Did Microsoft Game Studios release Amped: Freestyle Snowboarding?", "context": "CREATE TABLE table_name_18 (release_date VARCHAR, publisher VARCHAR, title VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE home = \"quebec nordiques\" AND visitor = \"vancouver blazers\" AND date = \"february 28\"", "question": "Which Score has a Home of quebec nordiques, and a Visitor of vancouver blazers on february 28?", "context": "CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE visitor = \"new england whalers\" AND record = \"9\u20139\u20131\"", "question": "When has a Visitor of new england whalers, and a Record of 9\u20139\u20131? Question 2", "context": "CREATE TABLE table_name_5 (date VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_62 WHERE visitor = \"quebec nordiques\" AND score = \"3\u20134\" AND record = \"8\u20138\u20131\"", "question": "Which Home has a Visitor of quebec nordiques, and a Score of 3\u20134, and a Record of 8\u20138\u20131?", "context": "CREATE TABLE table_name_62 (home VARCHAR, record VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_16 WHERE record = \"31\u201328\u20133\"", "question": "WHich Score has a Record of 31\u201328\u20133?", "context": "CREATE TABLE table_name_16 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE score = \"4\u20135\" AND record = \"21\u201321\u20133\"", "question": "When has Score of 4\u20135, and a Record of 21\u201321\u20133?", "context": "CREATE TABLE table_name_94 (date VARCHAR, score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE record = \"24\u201323\u20133\"", "question": "What is the Score of a Record 24\u201323\u20133?", "context": "CREATE TABLE table_name_69 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT games FROM table_name_24 WHERE event = \"men's 5000 m\" AND medal = \"gold\"", "question": "During which games did Tunisia win gold in the men's 5000 m?", "context": "CREATE TABLE table_name_24 (games VARCHAR, event VARCHAR, medal VARCHAR)"}, {"answer": "SELECT medal FROM table_name_68 WHERE event = \"men's light welterweight\" AND games = \"1996 atlanta\"", "question": "What medal was won in the men's light welterweight event at the 1996 Atlanta games?", "context": "CREATE TABLE table_name_68 (medal VARCHAR, event VARCHAR, games VARCHAR)"}, {"answer": "SELECT games FROM table_name_59 WHERE medal = \"bronze\" AND event = \"men's 1500 m freestyle\"", "question": "At which games did Tunisia win a bronze in the men's 1500 m freestyle?", "context": "CREATE TABLE table_name_59 (games VARCHAR, medal VARCHAR, event VARCHAR)"}, {"answer": "SELECT medal FROM table_name_53 WHERE event = \"men's 5000 m\"", "question": "What medal was won in the men's 5000 m event?", "context": "CREATE TABLE table_name_53 (medal VARCHAR, event VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_9 WHERE artist = \"jan johansen\" AND points < 107", "question": "What is the draw with less than 107 points by the artist Jan Johansen?", "context": "CREATE TABLE table_name_9 (draw VARCHAR, artist VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_81 WHERE class = \"350cc\" AND team = \"norton\" AND points < 0", "question": "In what Year did the Norton Team have 0 Points and 350cc Class?", "context": "CREATE TABLE table_name_81 (year INTEGER, points VARCHAR, class VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_47 WHERE year < 1960 AND points < 2", "question": "What is the Wins before 1960 with less than 2 Points?", "context": "CREATE TABLE table_name_47 (wins INTEGER, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_86 WHERE wins > 0 AND team = \"linto\" AND points < 15", "question": "What was the earliest Year the Linto Team had less than 15 Points with more than 0 Wins?", "context": "CREATE TABLE table_name_86 (year INTEGER, points VARCHAR, wins VARCHAR, team VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_52 WHERE points_against = \"414\"", "question": "What were the points for a team that 414 points against?", "context": "CREATE TABLE table_name_52 (points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT played FROM table_name_76 WHERE drawn = \"1\" AND tries_for = \"20\"", "question": "Who was the player that had drawn 1 and tried for 20?", "context": "CREATE TABLE table_name_76 (played VARCHAR, drawn VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_78 WHERE points_against = \"678\"", "question": "What were the points for that had a game where there was 678 against?", "context": "CREATE TABLE table_name_78 (points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_99 WHERE played = \"correct as of 2009-05-16\"", "question": "What were the points against in a game that was played correct as of 2009-05-16?", "context": "CREATE TABLE table_name_99 (points_against VARCHAR, played VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_35 WHERE club = \"llanishen rfc\"", "question": "What was the tries again llanishen rfc?", "context": "CREATE TABLE table_name_35 (tries_against VARCHAR, club VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_56 WHERE club = \"llanishen rfc\"", "question": "What was drawn for llanishen rfc?", "context": "CREATE TABLE table_name_56 (drawn VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(district) FROM table_name_25 WHERE republican = \"dan mansell\"", "question": "Which District has a Republican of dan mansell?", "context": "CREATE TABLE table_name_25 (district INTEGER, republican VARCHAR)"}, {"answer": "SELECT republican FROM table_name_26 WHERE district = 10", "question": "Which Republican has a District of 10?", "context": "CREATE TABLE table_name_26 (republican VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_73 WHERE republican = \"dan mansell\"", "question": "Which Incumbent has a Republican of dan mansell?", "context": "CREATE TABLE table_name_73 (incumbent VARCHAR, republican VARCHAR)"}, {"answer": "SELECT democratic FROM table_name_99 WHERE district < 7 AND republican = \"dan mansell\"", "question": "Which Democratic has a District smaller than 7, and a Republican of dan mansell?", "context": "CREATE TABLE table_name_99 (democratic VARCHAR, district VARCHAR, republican VARCHAR)"}, {"answer": "SELECT record FROM table_name_7 WHERE score = \"135\u2013134\"", "question": "Which record has a score of 135\u2013134?", "context": "CREATE TABLE table_name_7 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT position FROM table_name_80 WHERE date_of_birth__age_ = \"2 november 1987\"", "question": "Name the position for the player born 2 november 1987", "context": "CREATE TABLE table_name_80 (position VARCHAR, date_of_birth__age_ VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_51 WHERE player = \"steve borthwick\"", "question": "Name the club/province for steve borthwick", "context": "CREATE TABLE table_name_51 (club_province VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(ratio) FROM table_name_85 WHERE ordinary_value = \"84 zolotnik\"", "question": "What is the largest ration with an ordinary value of 84 zolotnik?", "context": "CREATE TABLE table_name_85 (ratio INTEGER, ordinary_value VARCHAR)"}, {"answer": "SELECT unit FROM table_name_9 WHERE avoirdupois_value = \"57.602 gr.\"", "question": "What unit has an Avoirdupois value of 57.602 gr.?", "context": "CREATE TABLE table_name_9 (unit VARCHAR, avoirdupois_value VARCHAR)"}, {"answer": "SELECT translation FROM table_name_10 WHERE unit = \"uncia\"", "question": "Which translation had a unit of Uncia?", "context": "CREATE TABLE table_name_10 (translation VARCHAR, unit VARCHAR)"}, {"answer": "SELECT ordinary_value FROM table_name_56 WHERE metric_value = \"29.861 g\"", "question": "What ordinary value has a metric value of 29.861 g?", "context": "CREATE TABLE table_name_56 (ordinary_value VARCHAR, metric_value VARCHAR)"}, {"answer": "SELECT ordinary_value FROM table_name_64 WHERE russian = \"\u0443\u043d\u0446\u0438\u044f\"", "question": "Which ordinary value has a Russian value of \u0443\u043d\u0446\u0438\u044f?", "context": "CREATE TABLE table_name_64 (ordinary_value VARCHAR, russian VARCHAR)"}, {"answer": "SELECT avoirdupois_value FROM table_name_76 WHERE translation = \"grain\"", "question": "Which Avoirdupois value is translated to grain?", "context": "CREATE TABLE table_name_76 (avoirdupois_value VARCHAR, translation VARCHAR)"}, {"answer": "SELECT turns FROM table_name_35 WHERE city = \"san antonio\"", "question": "What is the number of turns for the City of san antonio?", "context": "CREATE TABLE table_name_35 (turns VARCHAR, city VARCHAR)"}, {"answer": "SELECT state FROM table_name_23 WHERE major_series = \"imsa gt\" AND track = \"new orleans\"", "question": "What is the State with the imsa gt as the Major Series and a track in new orleans?", "context": "CREATE TABLE table_name_23 (state VARCHAR, major_series VARCHAR, track VARCHAR)"}, {"answer": "SELECT track FROM table_name_34 WHERE turns = \"18\"", "question": "Where is the track located with 18 turns?", "context": "CREATE TABLE table_name_34 (track VARCHAR, turns VARCHAR)"}, {"answer": "SELECT state FROM table_name_38 WHERE major_series = \"trans-am\" AND city = \"grand rapids\"", "question": "What is the State with the trans-am Major Series in Grand Rapids?", "context": "CREATE TABLE table_name_38 (state VARCHAR, major_series VARCHAR, city VARCHAR)"}, {"answer": "SELECT track FROM table_name_34 WHERE opened = \"1992\"", "question": "Where is the track located that opened in 1992?", "context": "CREATE TABLE table_name_34 (track VARCHAR, opened VARCHAR)"}, {"answer": "SELECT opened FROM table_name_84 WHERE major_series = \"nascar\"", "question": "What shows for opened for the Nascar Major Series?", "context": "CREATE TABLE table_name_84 (opened VARCHAR, major_series VARCHAR)"}, {"answer": "SELECT MIN(fa_cup) FROM table_name_69 WHERE malaysia_cup < 0", "question": "What is the lowest number of FA cups associated with 0 malaysia cups?", "context": "CREATE TABLE table_name_69 (fa_cup INTEGER, malaysia_cup INTEGER)"}, {"answer": "SELECT SUM(league) FROM table_name_96 WHERE player = \"m patrick maria\" AND total < 0", "question": "How many league cups for m patrick maria with 0 total?", "context": "CREATE TABLE table_name_96 (league INTEGER, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(malaysia_cup) FROM table_name_16 WHERE league > 0 AND fa_cup < 0", "question": "What is the highest number of Malaysia Cups for a player with over 0 leagues and under 0 FA cups?", "context": "CREATE TABLE table_name_16 (malaysia_cup INTEGER, league VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_5 WHERE host = \"sk brann\" AND date = \"july 29\"", "question": "What is the tournament on July 29 hosted by SK Brann?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR, host VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_13 WHERE date = \"july 29\"", "question": "Who is the visitor of the match on July 29?", "context": "CREATE TABLE table_name_13 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_72 WHERE opponent = \"phoenix suns\"", "question": "What is the game that has the phoenix suns as the opponent played against?", "context": "CREATE TABLE table_name_72 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_4 WHERE visitor = \"warriors\" AND date = \"2007-04-07\"", "question": "What is the attendance of the game on 2007-04-07 with the Warriors as the visitor team?", "context": "CREATE TABLE table_name_4 (attendance VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE record = \"13-15\"", "question": "What day is their record 13-15?", "context": "CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_83 WHERE loss = \"dickey (0-1)\"", "question": "Who did they play when dickey (0-1) recorded the loss?", "context": "CREATE TABLE table_name_83 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE game_site = \"heinz field\" AND record = \"2-5\"", "question": "What is the result of the game of heinz field with a record of 2-5?", "context": "CREATE TABLE table_name_14 (result VARCHAR, game_site VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_27 WHERE record = \"6-9\"", "question": "What opponent has a record of 6-9?", "context": "CREATE TABLE table_name_27 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_56 WHERE record = \"2-1\"", "question": "What is the week with a record of 2-1?", "context": "CREATE TABLE table_name_56 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_43 WHERE frequency_mhz < 95.9 AND call_sign = \"w223au\"", "question": "What City of license has a Frequency MHz smaller than 95.9 with w223au as the call sign?", "context": "CREATE TABLE table_name_43 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_75 WHERE erp_w = 19", "question": "What is the Call sign for the ERP W 19?", "context": "CREATE TABLE table_name_75 (call_sign VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_96 WHERE erp_w = 2", "question": "What FCC info is listed for the ERP W of 2?", "context": "CREATE TABLE table_name_96 (fcc_info VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_93 WHERE erp_w = 80", "question": "What Call sign shows an ERP W of 80?", "context": "CREATE TABLE table_name_93 (call_sign VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT class FROM table_name_50 WHERE erp_w > 2 AND call_sign = \"w223au\"", "question": "What is the Class for the ERP W of more than 2 and the call sign of w223au?", "context": "CREATE TABLE table_name_50 (class VARCHAR, erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT loss FROM table_name_23 WHERE date = \"july 30\"", "question": "what team lost on july 30", "context": "CREATE TABLE table_name_23 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT sport FROM table_name_21 WHERE date = \"february 25, 2011\"", "question": "What sport was played on February 25, 2011?", "context": "CREATE TABLE table_name_21 (sport VARCHAR, date VARCHAR)"}, {"answer": "SELECT site FROM table_name_55 WHERE date = \"september 10, 2010\"", "question": "Where was the sport played on September 10, 2010?", "context": "CREATE TABLE table_name_55 (site VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_88 WHERE partner = \"julie halard-decugis\" AND date = \"october 8, 2000\"", "question": "What type of surface was played on when julie halard-decugis was the partner on October 8, 2000?", "context": "CREATE TABLE table_name_88 (surface VARCHAR, partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_84 WHERE _percentage_win = \"50.00%\" AND losses = 1 AND wins < 1", "question": "How many Played has a % Win of 50.00%, and Losses of 1, and Wins smaller than 1?", "context": "CREATE TABLE table_name_84 (played VARCHAR, wins VARCHAR, _percentage_win VARCHAR, losses VARCHAR)"}, {"answer": "SELECT no_result FROM table_name_2 WHERE wins < 2 AND losses > 1", "question": "WHAT kind of No Result has Wins smaller than 2, and Losses larger than 1?", "context": "CREATE TABLE table_name_2 (no_result VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_61 WHERE losses = 6 AND wins > 33", "question": "How many Played that has Losses of 6, and Wins larger than 33?", "context": "CREATE TABLE table_name_61 (played INTEGER, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(no_result) FROM table_name_50 WHERE _percentage_win = \"100.00%\" AND played > 4 AND year = \"2012\"", "question": "What  kind of No Result  has a % Win of 100.00% and a Played larger than 4 in 2012?", "context": "CREATE TABLE table_name_50 (no_result INTEGER, year VARCHAR, _percentage_win VARCHAR, played VARCHAR)"}, {"answer": "SELECT loss FROM table_name_20 WHERE score = \"6\u20135\"", "question": "Which Loss has a Score of 6\u20135?", "context": "CREATE TABLE table_name_20 (loss VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_1 WHERE date = \"wed. nov. 13\"", "question": "Date of wed. nov. 13 had how many number of games?", "context": "CREATE TABLE table_name_1 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_16 WHERE record = \"6\u20131\"", "question": "Record of 6\u20131 had what score?", "context": "CREATE TABLE table_name_16 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_64 WHERE score = \"118\u2013114\" AND record = \"8\u20131\"", "question": "Score of 118\u2013114, and a Record of 8\u20131 is what lowest game?", "context": "CREATE TABLE table_name_64 (game INTEGER, score VARCHAR, record VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_85 WHERE feature_winner = \"ireland\" AND country = \"great britain\"", "question": "Which circuit was in Great Britain with Ireland as the winner?", "context": "CREATE TABLE table_name_85 (circuit VARCHAR, feature_winner VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_43 WHERE league_position = \"16th\" AND score_f_a = \"0\u20133\"", "question": "How many were in attendance when the league position was 16th and the score was F\u2013A of 0\u20133?", "context": "CREATE TABLE table_name_43 (attendance VARCHAR, league_position VARCHAR, score_f_a VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_40 WHERE result = \"d\" AND venue = \"h\" AND opponents = \"arsenal\"", "question": "How many were in attendance for a result of D, at H venue, and Arsenal as an opponent?", "context": "CREATE TABLE table_name_40 (attendance VARCHAR, opponents VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_40 WHERE venue = \"h\" AND result = \"d\" AND opponents = \"liverpool\"", "question": "What is the largest number in attendance at H venue opposing Liverpool with a result of D?", "context": "CREATE TABLE table_name_40 (attendance INTEGER, opponents VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_name_31 WHERE name = \"justin jeffries\"", "question": "What is the number of Justin Jeffries?", "context": "CREATE TABLE table_name_31 (number VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(games) AS \u2191 FROM table_name_29 WHERE number = 61", "question": "How many games has number 61 played in?", "context": "CREATE TABLE table_name_29 (games INTEGER, number VARCHAR)"}, {"answer": "SELECT name FROM table_name_83 WHERE position = \"wr\" AND weight = 197", "question": "What is the name of the player who is a wr and has a weight of 197?", "context": "CREATE TABLE table_name_83 (name VARCHAR, position VARCHAR, weight VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_44 WHERE number = 40", "question": "What is the hometown of number 40?", "context": "CREATE TABLE table_name_44 (hometown VARCHAR, number VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE visitor = \"ottawa\"", "question": "What date is the visitor Ottawa?", "context": "CREATE TABLE table_name_91 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_99 WHERE state = \"rhode island\"", "question": "what is the sum of the year in rhode island", "context": "CREATE TABLE table_name_99 (year INTEGER, state VARCHAR)"}, {"answer": "SELECT senator FROM table_name_72 WHERE state = \"kentucky\"", "question": "what is the senator in kentucky", "context": "CREATE TABLE table_name_72 (senator VARCHAR, state VARCHAR)"}, {"answer": "SELECT destination FROM table_name_76 WHERE origin = \"dhanbad\"", "question": "What is the destination of the rail with Dhanbad as the origin?", "context": "CREATE TABLE table_name_76 (destination VARCHAR, origin VARCHAR)"}, {"answer": "SELECT destination FROM table_name_87 WHERE train_name = \"garib nwaz exp\"", "question": "What is the destination of the Garib nwaz exp train?", "context": "CREATE TABLE table_name_87 (destination VARCHAR, train_name VARCHAR)"}, {"answer": "SELECT train_name FROM table_name_44 WHERE frequency__inbound_outbound_ = \"daily\" AND destination = \"rajgir\"", "question": "What is the train name of the rail with a daily frequency and a destination of Rajgir?", "context": "CREATE TABLE table_name_44 (train_name VARCHAR, frequency__inbound_outbound_ VARCHAR, destination VARCHAR)"}, {"answer": "SELECT train_name FROM table_name_61 WHERE frequency__inbound_outbound_ = \"daily\" AND destination = \"jammutawi\"", "question": "What is the train name of the rail with a daily frequency and Jammutawi as the destination?", "context": "CREATE TABLE table_name_61 (train_name VARCHAR, frequency__inbound_outbound_ VARCHAR, destination VARCHAR)"}, {"answer": "SELECT frequency__inbound_outbound_ FROM table_name_72 WHERE origin = \"ranchi\"", "question": "What is the frequency of the rail with an origin of Ranchi?", "context": "CREATE TABLE table_name_72 (frequency__inbound_outbound_ VARCHAR, origin VARCHAR)"}, {"answer": "SELECT frequency__inbound_outbound_ FROM table_name_10 WHERE train_name = \"garib nwaz exp\"", "question": "What is the frequency of the train named Garib nwaz exp?", "context": "CREATE TABLE table_name_10 (frequency__inbound_outbound_ VARCHAR, train_name VARCHAR)"}, {"answer": "SELECT segment_c FROM table_name_63 WHERE episode < 179 AND segment_b = \"s sticker\"", "question": "Name the segment c with episode less than 179 and segment b of s sticker", "context": "CREATE TABLE table_name_63 (segment_c VARCHAR, episode VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_c FROM table_name_78 WHERE segment_a = \"ski goggles\"", "question": "Name the segment c for ski goggles", "context": "CREATE TABLE table_name_78 (segment_c VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT position FROM table_name_26 WHERE first = \"steve\"", "question": "In which position did Steve play first?", "context": "CREATE TABLE table_name_26 (position VARCHAR, first VARCHAR)"}, {"answer": "SELECT bats FROM table_name_23 WHERE first = \"mitchell\"", "question": "Which bats did mitchell play first?", "context": "CREATE TABLE table_name_23 (bats VARCHAR, first VARCHAR)"}, {"answer": "SELECT dob FROM table_name_19 WHERE surname = \"ryan\"", "question": "When is mr. ryan's DOB?", "context": "CREATE TABLE table_name_19 (dob VARCHAR, surname VARCHAR)"}, {"answer": "SELECT throws FROM table_name_1 WHERE position = \"3b/rhp\"", "question": "Which Throws have a Position of 3b/rhp?", "context": "CREATE TABLE table_name_1 (throws VARCHAR, position VARCHAR)"}, {"answer": "SELECT dob FROM table_name_22 WHERE surname = \"collins\"", "question": "When is Collins' DOB?", "context": "CREATE TABLE table_name_22 (dob VARCHAR, surname VARCHAR)"}, {"answer": "SELECT position FROM table_name_78 WHERE dob = \"3 june 1989\"", "question": "Which Position has a D.O.B. of 3 june 1989?", "context": "CREATE TABLE table_name_78 (position VARCHAR, dob VARCHAR)"}, {"answer": "SELECT architecture FROM table_name_15 WHERE vehicle_name = \"saturn vue\"", "question": "What type of architecture does the Saturn Vue have?", "context": "CREATE TABLE table_name_15 (architecture VARCHAR, vehicle_name VARCHAR)"}, {"answer": "SELECT architecture FROM table_name_73 WHERE original_vehicle = \"ford escort wagon\"", "question": "What architecture type does the Ford Escort Wagon have?", "context": "CREATE TABLE table_name_73 (architecture VARCHAR, original_vehicle VARCHAR)"}, {"answer": "SELECT original_vehicle FROM table_name_76 WHERE architecture = \"uwhvt homepage\"", "question": "What original vehicle has uwhvt homepage architecture?", "context": "CREATE TABLE table_name_76 (original_vehicle VARCHAR, architecture VARCHAR)"}, {"answer": "SELECT winner FROM table_name_4 WHERE last_16 = \"\u00a3400\"", "question": "Which Winner has a Last 16 of \u00a3400?", "context": "CREATE TABLE table_name_4 (winner VARCHAR, last_16 VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_44 WHERE total = \"\u00a331,200\"", "question": "Which Runner-Up has a Total of \u00a331,200?", "context": "CREATE TABLE table_name_44 (runner_up VARCHAR, total VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_52 WHERE last_16 = \"\u00a3300\"", "question": "Which Runner-Up has a Last 16 of \u00a3300?", "context": "CREATE TABLE table_name_52 (runner_up VARCHAR, last_16 VARCHAR)"}, {"answer": "SELECT last_64 FROM table_name_65 WHERE total = \"\u00a334,600\"", "question": "Which Last 64 has a Total of \u00a334,600?", "context": "CREATE TABLE table_name_65 (last_64 VARCHAR, total VARCHAR)"}, {"answer": "SELECT winner FROM table_name_71 WHERE semi_finalists = \"\u00a32,000\"", "question": "Which Winner has Semi-Finalists of \u00a32,000?", "context": "CREATE TABLE table_name_71 (winner VARCHAR, semi_finalists VARCHAR)"}, {"answer": "SELECT year FROM table_name_16 WHERE quarter_finalists = \"\u00a31,000\" AND semi_finalists = \"\u00a31,500\"", "question": "Which Year has a Quarter-Finalists of \u00a31,000, and Semi-Finalists of \u00a31,500?", "context": "CREATE TABLE table_name_16 (year VARCHAR, quarter_finalists VARCHAR, semi_finalists VARCHAR)"}, {"answer": "SELECT height FROM table_name_69 WHERE name = \"dylan postl\"", "question": "How tall is Dylan Postl?", "context": "CREATE TABLE table_name_69 (height VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_3 WHERE points < 0", "question": "What is the largest amount of goals when the points are less than 0?", "context": "CREATE TABLE table_name_3 (goals INTEGER, points INTEGER)"}, {"answer": "SELECT player FROM table_name_5 WHERE goals > 0 AND tries < 12", "question": "Which player has more than 0 goals and less than 12 tries?", "context": "CREATE TABLE table_name_5 (player VARCHAR, goals VARCHAR, tries VARCHAR)"}, {"answer": "SELECT MIN(tries) FROM table_name_84 WHERE player = \"matt diskin\" AND points > 16", "question": "What is the smallest number of tries when Matt Diskin is the player and there are more than 16 points?", "context": "CREATE TABLE table_name_84 (tries INTEGER, player VARCHAR, points VARCHAR)"}, {"answer": "SELECT position FROM table_name_58 WHERE points > 4 AND tries < 12 AND squad_no > 1 AND player = \"ali lauitiiti\"", "question": "Which position has more than 4 points, less than 12 tries, a squad number of more than 1, and where Ali Lauitiiti is a player?", "context": "CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR, squad_no VARCHAR, points VARCHAR, tries VARCHAR)"}, {"answer": "SELECT SUM(squad_no) FROM table_name_23 WHERE points > 8 AND player = \"danny mcguire\" AND goals > 0", "question": "What is the total number of squad no when there are more than 8 points, Danny Mcguire is a player, and there are more than 0 goals?", "context": "CREATE TABLE table_name_23 (squad_no INTEGER, goals VARCHAR, points VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_18 WHERE drawn > 1", "question": "What is the lowest lost from drawn of 1 or greater?", "context": "CREATE TABLE table_name_18 (lost INTEGER, drawn INTEGER)"}, {"answer": "SELECT MAX(games) FROM table_name_58 WHERE points < 4 AND drawn = 1 AND lost < 6", "question": "What is the highest games from a game with points less than 4, drawn of 1 and a lost less than 6?", "context": "CREATE TABLE table_name_58 (games INTEGER, lost VARCHAR, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE date = \"january 18\"", "question": "What is the score of the game on January 18?", "context": "CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE date = \"january 10\"", "question": "What is the score of the game on January 10?", "context": "CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE visitor = \"chicago black hawks\" AND date = \"november 12\"", "question": "What is the score of the game on November 12 with the Chicago Black Hawks as the visitor team?", "context": "CREATE TABLE table_name_24 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_name_55 WHERE date = \"may 6\"", "question": "What is the series score of the game on May 6?", "context": "CREATE TABLE table_name_55 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT builder FROM table_name_49 WHERE ship = \"zeehond\"", "question": "The Zeehond was built by whom?", "context": "CREATE TABLE table_name_49 (builder VARCHAR, ship VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_90 WHERE player = \"victor ignatjev\"", "question": "What college, junior, or club team did Victor Ignatjev play for?", "context": "CREATE TABLE table_name_90 (college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_47 WHERE nationality = \"sweden\"", "question": "Which player is from Sweden?", "context": "CREATE TABLE table_name_47 (player VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE date = \"april 22\"", "question": "What was the score on April 22?", "context": "CREATE TABLE table_name_17 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_70 WHERE score = \"1-3\"", "question": "What opponent has a score of 1-3?", "context": "CREATE TABLE table_name_70 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_42 WHERE date = \"april 21\"", "question": "What is the record for April 21?", "context": "CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_52 WHERE round > 5 AND school_club_team = \"bethune-cookman\"", "question": "Which Player has a Round larger than 5, and a School/Club Team of bethune-cookman?", "context": "CREATE TABLE table_name_52 (player VARCHAR, round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_92 WHERE pick < 152 AND round < 3", "question": "Which Position has a Pick smaller than 152, and a Round smaller than 3?", "context": "CREATE TABLE table_name_92 (position VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_61 WHERE position = \"defensive back\"", "question": "How many Picks have a Position of defensive back?", "context": "CREATE TABLE table_name_61 (pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_10 WHERE round < 11 AND pick < 152 AND position = \"guard\"", "question": "Which Player has a Round smaller than 11, and a Pick smaller than 152, and a Position of guard?", "context": "CREATE TABLE table_name_10 (player VARCHAR, position VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT name FROM table_name_57 WHERE medal = \"silver\" AND event = \"men's doubles\"", "question": "Which participants won the silver medal for the Men's Doubles?", "context": "CREATE TABLE table_name_57 (name VARCHAR, medal VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_8 WHERE name = \"rashid sidek\"", "question": "What event did Rashid Sidek participate in?", "context": "CREATE TABLE table_name_8 (event VARCHAR, name VARCHAR)"}, {"answer": "SELECT games FROM table_name_33 WHERE event = \"men's singles\" AND medal = \"silver\"", "question": "Which Olympic Games had a silver medal for the Men's Singles?", "context": "CREATE TABLE table_name_33 (games VARCHAR, event VARCHAR, medal VARCHAR)"}, {"answer": "SELECT sport FROM table_name_92 WHERE games = \"1992 barcelona\"", "question": "Which sport was in the 1992 Barcelona games?", "context": "CREATE TABLE table_name_92 (sport VARCHAR, games VARCHAR)"}, {"answer": "SELECT event FROM table_name_81 WHERE games = \"2008 beijing\"", "question": "What event was in the 2008 Beijing games?", "context": "CREATE TABLE table_name_81 (event VARCHAR, games VARCHAR)"}, {"answer": "SELECT round FROM table_name_32 WHERE position = \"defense\" AND nationality = \"united states\"", "question": "What is the round of the defense player from the United States?", "context": "CREATE TABLE table_name_32 (round VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT position FROM table_name_67 WHERE player = \"dale craigwell\"", "question": "What is the position of Dale Craigwell?", "context": "CREATE TABLE table_name_67 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_93 WHERE nationality = \"sweden\"", "question": "What is the position of the player from Sweden?", "context": "CREATE TABLE table_name_93 (position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT player FROM table_name_94 WHERE round > 5 AND college_junior_club_team = \"leningrad ska (russia)\"", "question": "Who is the player from a round larger than 5 and the college/junior/club team of Leningrad SKA (russia)?", "context": "CREATE TABLE table_name_94 (player VARCHAR, round VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_15 WHERE player = \"mikhail kravets\"", "question": "What position does Mikhail Kravets play?", "context": "CREATE TABLE table_name_15 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE circuit = \"laguna seca raceway\" AND class = \"gtx/gto\"", "question": "Which date was held at Laguna Seca Raceway, in class GTX/GTO?", "context": "CREATE TABLE table_name_94 (date VARCHAR, circuit VARCHAR, class VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_24 WHERE date = \"may 7\" AND length = \"1 hour\"", "question": "Which circuit was held on May 7 for 1 hour?", "context": "CREATE TABLE table_name_24 (circuit VARCHAR, date VARCHAR, length VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_78 WHERE length = \"45 minutes\" AND date = \"august 6\"", "question": "Which circuit has a length of 45 minutes and is held on August 6?", "context": "CREATE TABLE table_name_78 (circuit VARCHAR, length VARCHAR, date VARCHAR)"}, {"answer": "SELECT length FROM table_name_82 WHERE race = \"6 hours of talladega\"", "question": "What is the length of the 6 Hours of Talladega?", "context": "CREATE TABLE table_name_82 (length VARCHAR, race VARCHAR)"}, {"answer": "SELECT class_aA FROM table_name_52 WHERE class_a = \"rule\" AND school_year = \"1995-96\"", "question": "Name the class AA with class A of rule and school year of 1995-96", "context": "CREATE TABLE table_name_52 (class_aA VARCHAR, class_a VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_a FROM table_name_59 WHERE school_year = \"2004-05\"", "question": "Name the class A with school year of 2004-05", "context": "CREATE TABLE table_name_59 (class_a VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aAAA FROM table_name_76 WHERE school_year = \"2000-01\"", "question": "Name the clas AAAA of school year 2000-01", "context": "CREATE TABLE table_name_76 (class_aAAA VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT school FROM table_name_32 WHERE county = \"45 lake\" AND location = \"merrillville\"", "question": "What school is from 45 Lake county and is located in Merrillville?", "context": "CREATE TABLE table_name_32 (school VARCHAR, county VARCHAR, location VARCHAR)"}, {"answer": "SELECT school FROM table_name_37 WHERE location = \"michigan city\"", "question": "What school is located in Michigan City?", "context": "CREATE TABLE table_name_37 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_49 WHERE school = \"chesterton\"", "question": "What is the IHSAA class for Chesterton?", "context": "CREATE TABLE table_name_49 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_69 WHERE school = \"portage\"", "question": "What is the IHSAA class for Portage?", "context": "CREATE TABLE table_name_69 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_98 WHERE school = \"crown point\"", "question": "What is the IHSAA class for Crown Point?", "context": "CREATE TABLE table_name_98 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_79 WHERE driver = \"christian vietoris\" AND laps < 12", "question": "What is the average grid of driver Christian Vietoris who has less than 12 laps?", "context": "CREATE TABLE table_name_79 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_75 WHERE driver = \"jo\u00e3o urbano\"", "question": "What is the grid of driver jo\u00e3o urbano?", "context": "CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_92 WHERE grid < 22 AND time = \"+35.268\"", "question": "What is the lowest laps a grid less than 22 with a time of +35.268 has?", "context": "CREATE TABLE table_name_92 (laps INTEGER, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_62 WHERE driver = \"christian vietoris\" AND grid < 6", "question": "What is the lowest laps driver Christian Vietoris with a grid smaller than 6 has?", "context": "CREATE TABLE table_name_62 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT primary_sponsor_s_ FROM table_name_78 WHERE driver_s_ = \"mark martin\"", "question": "What is the primary sponsor of driver Mark Martin?", "context": "CREATE TABLE table_name_78 (primary_sponsor_s_ VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT crew_chief FROM table_name_81 WHERE car_s_ = \"chevrolet monte carlo\" AND team = \"joe gibbs racing\" AND primary_sponsor_s_ = \"fedex\"", "question": "Who is the crew chief of team Joe Gibbs Racing, which has a Chevrolet Monte Carlo and Fedex as the primary sponsor?", "context": "CREATE TABLE table_name_81 (crew_chief VARCHAR, primary_sponsor_s_ VARCHAR, car_s_ VARCHAR, team VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_name_16 WHERE crew_chief = \"derrick finley\"", "question": "Who is the driver of the team with the crew chief Derrick Finley?", "context": "CREATE TABLE table_name_16 (driver_s_ VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT crew_chief FROM table_name_10 WHERE team = \"chip ganassi racing with felix sabates\" AND driver_s_ = \"casey mears\"", "question": "Who is the crew chief of team Chip Ganassi Racing with Felix Sabates, which has Casey Mears as the driver?", "context": "CREATE TABLE table_name_10 (crew_chief VARCHAR, team VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT team FROM table_name_87 WHERE primary_sponsor_s_ = \"peak fitness\"", "question": "Which team has Peak Fitness as the primary sponsor?", "context": "CREATE TABLE table_name_87 (team VARCHAR, primary_sponsor_s_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE result = \"w 20-17\" AND record = \"1-0\"", "question": "What date has w 20-17 as the result, and 1-0 as the record?", "context": "CREATE TABLE table_name_32 (date VARCHAR, result VARCHAR, record VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_58 WHERE date = \"december 24, 2000\"", "question": "What game site has december 24, 2000 as a date?", "context": "CREATE TABLE table_name_58 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE opponent = \"dallas cowboys\"", "question": "What date has dallas cowboys as the opponent?", "context": "CREATE TABLE table_name_91 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_24 WHERE game_site = \"fedex field\" AND week = 3", "question": "What is the attendance that has fedex field as the game site with 3 as the week?", "context": "CREATE TABLE table_name_24 (attendance VARCHAR, game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT record FROM table_name_25 WHERE date = \"april 22\"", "question": "What is the record for April 22?", "context": "CREATE TABLE table_name_25 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE visitor = \"quebec nordiques\" AND date = \"april 22\"", "question": "What is the record when the visiting team was the Quebec Nordiques on April 22?", "context": "CREATE TABLE table_name_26 (record VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT longitude_\u1021\u1004\u103a\u1039\u101e\u102c FROM table_name_98 WHERE latin = \"taurus\"", "question": "What is the longitude of Taurus?", "context": "CREATE TABLE table_name_98 (longitude_\u1021\u1004\u103a\u1039\u101e\u102c VARCHAR, latin VARCHAR)"}, {"answer": "SELECT location FROM table_name_99 WHERE team = \"belshina\"", "question": "What is the Location for Belshina?", "context": "CREATE TABLE table_name_99 (location VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_name_28 WHERE venue = \"city stadium, borisov\"", "question": "What is the total number for Capacity at city stadium, borisov?", "context": "CREATE TABLE table_name_28 (capacity VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(viewers__millions_) FROM table_name_11 WHERE weekly_rank = \"#3\" AND share = 9 AND rating > 5", "question": "Which rating larger than 5 have the lowest amount of views in #3 rank with a share of 9?", "context": "CREATE TABLE table_name_11 (viewers__millions_ INTEGER, rating VARCHAR, weekly_rank VARCHAR, share VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_60 WHERE drawn < 9 AND difference = \"36\" AND lost > 7", "question": "What is the highest played that has a drawn less than 9, 36 as the difference, with a lost greater than 7?", "context": "CREATE TABLE table_name_60 (played INTEGER, lost VARCHAR, drawn VARCHAR, difference VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_39 WHERE team = \"figueirense\" AND played > 38", "question": "How many positions have figueirense as the team, with a played greater than 38?", "context": "CREATE TABLE table_name_39 (position VARCHAR, team VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_8 WHERE played < 38", "question": "What is the largest drawn that has a played less than 38?", "context": "CREATE TABLE table_name_8 (drawn INTEGER, played INTEGER)"}, {"answer": "SELECT COUNT(position) FROM table_name_9 WHERE drawn = 9 AND difference = \"5\" AND lost < 14", "question": "How many positions have 9 as a drawn, 5 as a difference, with a lost less than 14?", "context": "CREATE TABLE table_name_9 (position VARCHAR, lost VARCHAR, drawn VARCHAR, difference VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_name_56 WHERE episode = \"2-01 (42)\"", "question": "What date did Episode 2-01 (42) air?", "context": "CREATE TABLE table_name_56 (original_airdate VARCHAR, episode VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_name_51 WHERE episode = \"2-15 (56)\"", "question": "Who wrote Episode 2-15 (56)?", "context": "CREATE TABLE table_name_51 (writer_s_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_9 WHERE lost = 1 AND points < 18", "question": "What is the highest number of games with 1 loss and points less than 18?", "context": "CREATE TABLE table_name_9 (games INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT city FROM table_name_91 WHERE result = \"w\" AND competition = \"international friendly (unofficial match)\" AND score = \"1-0\"", "question": "Which City has a Result of w, and a Competition of international friendly (unofficial match), and a Score of 1-0?", "context": "CREATE TABLE table_name_91 (city VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE result = \"w\" AND score = \"3-0\"", "question": "Which Date has a Result of w, and a Score of 3-0?", "context": "CREATE TABLE table_name_94 (date VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT city FROM table_name_39 WHERE date = \"june 9, 1976\"", "question": "Which City has a Date of june 9, 1976?", "context": "CREATE TABLE table_name_39 (city VARCHAR, date VARCHAR)"}, {"answer": "SELECT city FROM table_name_23 WHERE date = \"may 19, 1976\"", "question": "Which City has a Date of may 19, 1976?", "context": "CREATE TABLE table_name_23 (city VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_63 WHERE driver = \"tom bridger\"", "question": "What are the total number of laps for Tom Bridger?", "context": "CREATE TABLE table_name_63 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_68 WHERE driver = \"graham hill\"", "question": "What are the lowest laps of Graham Hill?", "context": "CREATE TABLE table_name_68 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_69 WHERE grid = 17", "question": "What are the lowest laps of grid 17?", "context": "CREATE TABLE table_name_69 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT SUM(avg_g) FROM table_name_91 WHERE gain = 16 AND name = \"barnes, freddie\" AND loss < 2", "question": "Which Avg/G has a Gain of 16, and a Name of barnes, freddie, and a Loss smaller than 2?", "context": "CREATE TABLE table_name_91 (avg_g INTEGER, loss VARCHAR, gain VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(long) FROM table_name_51 WHERE gain < 16 AND loss < 6", "question": "Which average Long has a Gain smaller than 16, and a Loss smaller than 6?", "context": "CREATE TABLE table_name_51 (long INTEGER, gain VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MIN(gain) FROM table_name_84 WHERE loss > 2 AND avg_g > -6 AND name = \"sheehan, tyler\" AND long > 11", "question": "Which Gain is the lowest one that has a Loss larger than 2, and an Avg/G larger than -6, and a Name of sheehan, tyler, and a Long larger than 11?", "context": "CREATE TABLE table_name_84 (gain INTEGER, long VARCHAR, name VARCHAR, loss VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT MIN(avg_g) FROM table_name_52 WHERE long > 8 AND loss < 34 AND gain > 16 AND name = \"bullock, chris\"", "question": "Which Avg/G is the lowest one that has a Long larger than 8, and a Loss smaller than 34, and a Gain larger than 16, and a Name of bullock, chris?", "context": "CREATE TABLE table_name_52 (avg_g INTEGER, name VARCHAR, gain VARCHAR, long VARCHAR, loss VARCHAR)"}, {"answer": "SELECT SUM(loss) FROM table_name_72 WHERE name = \"bullock, chris\" AND long < 36", "question": "Which Loss has a Name of bullock, chris, and a Long smaller than 36?", "context": "CREATE TABLE table_name_72 (loss INTEGER, name VARCHAR, long VARCHAR)"}, {"answer": "SELECT SUM(long) FROM table_name_58 WHERE loss > 2 AND gain = 157 AND avg_g < 129", "question": "How much Long has a Loss larger than 2, and a Gain of 157, and an Avg/G smaller than 129?", "context": "CREATE TABLE table_name_58 (long INTEGER, avg_g VARCHAR, loss VARCHAR, gain VARCHAR)"}, {"answer": "SELECT MIN(places) FROM table_name_11 WHERE nation = \"norway\" AND points < 1524.9", "question": "What is the fewest number of places for a skater from Norway with fewer than 1524.9 points?", "context": "CREATE TABLE table_name_11 (places INTEGER, nation VARCHAR, points VARCHAR)"}, {"answer": "SELECT home FROM table_name_1 WHERE visitor = \"philadelphia\" AND date = \"december 4\"", "question": "What home has Philadelphia as the visitor, and december 4 as the date?", "context": "CREATE TABLE table_name_1 (home VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_81 WHERE decision = \"parent\" AND home = \"philadelphia\" AND date = \"december 12\"", "question": "What record has a decision of parent, Philadelphia as the home, with december 12 as the date?", "context": "CREATE TABLE table_name_81 (record VARCHAR, date VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_62 WHERE score = \"6\u20134, 6\u20132\"", "question": "Which Tournament has a Score of 6\u20134, 6\u20132?", "context": "CREATE TABLE table_name_62 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE opponent_in_the_final = \"mehdi tahiri\"", "question": "Which Score has an Opponent in the final of mehdi tahiri?", "context": "CREATE TABLE table_name_96 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT SUM(date) FROM table_name_3 WHERE score = \"6\u20133, 7\u20136\"", "question": "Which Date has a Score of 6\u20133, 7\u20136?", "context": "CREATE TABLE table_name_3 (date INTEGER, score VARCHAR)"}, {"answer": "SELECT SUM(date) FROM table_name_68 WHERE score = \"7\u20136(3), 4\u20136, 6\u20132\"", "question": "Which Date has a Score of 7\u20136(3), 4\u20136, 6\u20132?", "context": "CREATE TABLE table_name_68 (date INTEGER, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_62 WHERE tournament = \"olbia\"", "question": "Which Surface has a Tournament of olbia?", "context": "CREATE TABLE table_name_62 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_43 WHERE week = 7", "question": "What was the attendance at the week 7 game?", "context": "CREATE TABLE table_name_43 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_94 WHERE week > 3 AND opponent = \"new york giants\"", "question": "What was the result of the game after week 3 against the New York Giants?", "context": "CREATE TABLE table_name_94 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE week = 6", "question": "Who was the opponent at the week 6 game?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(loss) FROM table_name_80 WHERE name = \"jarius wright\" AND gain > 1", "question": "What is the lowest loss that Jarius Wright has had where he also has had a gain bigger than 1.", "context": "CREATE TABLE table_name_80 (loss INTEGER, name VARCHAR, gain VARCHAR)"}, {"answer": "SELECT 1 AS st_prize___$__ FROM table_name_80 WHERE location = \"ohio\" AND tournament = \"american golf classic\"", "question": "How much was the first place prize for the American golf classic located in Ohio?", "context": "CREATE TABLE table_name_80 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE location = \"florida\" AND tournament = \"monsanto open\"", "question": "What date was the Monsanto open located in Florida?", "context": "CREATE TABLE table_name_58 (date VARCHAR, location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE winner = \"johnny miller (7)\"", "question": "What was the score of Johnny Miller (7)?", "context": "CREATE TABLE table_name_80 (score VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_62 WHERE division > 4", "question": "What is the total number of years that have divisions greater than 4?", "context": "CREATE TABLE table_name_62 (year VARCHAR, division INTEGER)"}, {"answer": "SELECT MAX(division) FROM table_name_27 WHERE year < 2011", "question": "What is the highest division for years earlier than 2011?", "context": "CREATE TABLE table_name_27 (division INTEGER, year INTEGER)"}, {"answer": "SELECT COUNT(week) FROM table_name_64 WHERE date = \"november 30, 1958\" AND attendance > 33 OFFSET 240", "question": "What is the Week number on November 30, 1958 with more than 33,240 in Attendance?", "context": "CREATE TABLE table_name_64 (week VARCHAR, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_77 WHERE date = \"november 9, 1958\"", "question": "What was the Result on November 9, 1958?", "context": "CREATE TABLE table_name_77 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_70 WHERE week = 8", "question": "What was the Attendance on Week 8?", "context": "CREATE TABLE table_name_70 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT season FROM table_name_70 WHERE against = \"did not qualify for uefa competitions\"", "question": "Which season did not qualify for UEFA competitions?", "context": "CREATE TABLE table_name_70 (season VARCHAR, against VARCHAR)"}, {"answer": "SELECT lost FROM table_name_15 WHERE goals_against = \"5\"", "question": "How many games were lost that had goals against of 5?", "context": "CREATE TABLE table_name_15 (lost VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT drew FROM table_name_56 WHERE goals_against = \"did not qualify for uefa competitions\"", "question": "How many draws were there with goals against that did not qualify for UEFA competitions?", "context": "CREATE TABLE table_name_56 (drew VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT competition FROM table_name_67 WHERE lost = \"did not qualify for uefa competitions\" AND season = \"1970-71\"", "question": "Which competition did not qualify for UEFA competitions in the 1970-71 season?", "context": "CREATE TABLE table_name_67 (competition VARCHAR, lost VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_86 WHERE venue = \"texas stadium\"", "question": "What is the attendance in texas stadium?", "context": "CREATE TABLE table_name_86 (attendance INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_98 WHERE ground = \"telstra dome\"", "question": "What is the home team score for the team that has a home field of the Telstra Dome?", "context": "CREATE TABLE table_name_98 (home_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_36 WHERE away_team = \"brisbane lions\"", "question": "Which home team had an away team of the Brisbane Lions?", "context": "CREATE TABLE table_name_36 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT sensor FROM table_name_53 WHERE sensor_resolution = \"355x288\" AND camera = \"naturalpoint trackir 3\"", "question": "What was the sensor with a resolution of 355x288 for a Naturalpoint Trackir 3?", "context": "CREATE TABLE table_name_53 (sensor VARCHAR, sensor_resolution VARCHAR, camera VARCHAR)"}, {"answer": "SELECT sensor_resolution FROM table_name_39 WHERE cpu_usage = \"minimal\" AND camera = \"naturalpoint trackir 3 pro\"", "question": "What was the sensor resolution with a minimal CPU usage for a naturalpoint trackir 3 pro?", "context": "CREATE TABLE table_name_39 (sensor_resolution VARCHAR, cpu_usage VARCHAR, camera VARCHAR)"}, {"answer": "SELECT output FROM table_name_90 WHERE ir_leds = \"no\"", "question": "What was the output with no IR LEDs?", "context": "CREATE TABLE table_name_90 (output VARCHAR, ir_leds VARCHAR)"}, {"answer": "SELECT sensor FROM table_name_21 WHERE sensor_resolution = \"640x480\" AND cpu_usage = \"small\" AND output = \"jpeg compressed\" AND camera = \"sony playstation eyetoy\"", "question": "What sensor has a resolution of 640x480 with small CPU usage, jpeg compressed output and a camera of sony playstation eyetoy?", "context": "CREATE TABLE table_name_21 (sensor VARCHAR, camera VARCHAR, output VARCHAR, sensor_resolution VARCHAR, cpu_usage VARCHAR)"}, {"answer": "SELECT SUM(max_speed__km_h_) FROM table_name_22 WHERE quantity_built = \"8+4\" AND year_built < 1971", "question": "What is the max speed of the unit with an 8+4 quantity built before 1971?", "context": "CREATE TABLE table_name_22 (max_speed__km_h_ INTEGER, quantity_built VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT numbers FROM table_name_49 WHERE power__horsepower_ > 220 AND type = \"thn\"", "question": "What is the numbers of the thn unit with a power greater than 220?", "context": "CREATE TABLE table_name_49 (numbers VARCHAR, power__horsepower_ VARCHAR, type VARCHAR)"}, {"answer": "SELECT SUM(power__horsepower_) FROM table_name_71 WHERE year_built > 1995", "question": "What is the power of the unit built after 1995?", "context": "CREATE TABLE table_name_71 (power__horsepower_ INTEGER, year_built INTEGER)"}, {"answer": "SELECT result FROM table_name_5 WHERE week > 6 AND date = \"november 22, 1959\"", "question": "Week larger than 6, and a Date of november 22, 1959 had what result?", "context": "CREATE TABLE table_name_5 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_96 WHERE result = \"w 21\u20137\"", "question": "Result of w 21\u20137 had what average week?", "context": "CREATE TABLE table_name_96 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_7 WHERE date = \"november 29, 1959\"", "question": "Date of november 29, 1959 had what lowest attendance?", "context": "CREATE TABLE table_name_7 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_4 WHERE date = \"december 5, 1959\"", "question": "Week that has a Date of december 5, 1959 had what week?", "context": "CREATE TABLE table_name_4 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_94 WHERE opponent = \"@ carolina hurricanes\"", "question": "Which Game has an Opponent of @ carolina hurricanes?", "context": "CREATE TABLE table_name_94 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_10 WHERE november = 10", "question": "How many games have a November of 10?", "context": "CREATE TABLE table_name_10 (game VARCHAR, november VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_32 WHERE november = 22", "question": "Which Game has a November of 22?", "context": "CREATE TABLE table_name_32 (game INTEGER, november VARCHAR)"}, {"answer": "SELECT AVG(year_of_marriage) FROM table_name_6 WHERE her_age > 19 AND his_age = 30", "question": "What is the mean year of marriage when her age was more than 19 and his age was 30?", "context": "CREATE TABLE table_name_6 (year_of_marriage INTEGER, her_age VARCHAR, his_age VARCHAR)"}, {"answer": "SELECT MIN(her_age) FROM table_name_60 WHERE year_of_marriage < 1853 AND _number_of_children < 8 AND name = \"eliza maria partridge\"", "question": "What is the lowest figure for her age when the year of marriage is before 1853, the number of children is less than 8, and the bride was Eliza Maria Partridge?", "context": "CREATE TABLE table_name_60 (her_age INTEGER, name VARCHAR, year_of_marriage VARCHAR, _number_of_children VARCHAR)"}, {"answer": "SELECT SUM(her_age) FROM table_name_84 WHERE his_age < 33 AND name = \"diontha walker\" AND _number_of_children < 0", "question": "What is the total number of her age figures where his age is less than 33, the bride was diontha walker, and the number of children was less than 0?", "context": "CREATE TABLE table_name_84 (her_age INTEGER, _number_of_children VARCHAR, his_age VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_67 WHERE against > 19 AND drawn < 1", "question": "How much Lost has an Against larger than 19, and a Drawn smaller than 1?", "context": "CREATE TABLE table_name_67 (lost INTEGER, against VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_63 WHERE lost = 3 AND against = 23", "question": "Which Played has a Lost of 3, and an Against of 23?", "context": "CREATE TABLE table_name_63 (played INTEGER, lost VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_92 WHERE against < 18 AND points < 10", "question": "Which Played is the highest one that has an Against smaller than 18, and Points smaller than 10?", "context": "CREATE TABLE table_name_92 (played INTEGER, against VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_31 WHERE drawn > 1 AND team = \"corinthians\" AND played < 7", "question": "Which Against is the highest one that has a Drawn larger than 1, and a Team of corinthians, and a Played smaller than 7?", "context": "CREATE TABLE table_name_31 (against INTEGER, played VARCHAR, drawn VARCHAR, team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_13 WHERE october < 20 AND points = 8", "question": "What opponent has october less than 20, and 8 for points?", "context": "CREATE TABLE table_name_13 (opponent VARCHAR, october VARCHAR, points VARCHAR)"}, {"answer": "SELECT position FROM table_name_1 WHERE player = \"drew callander\"", "question": "What position does Drew Callander play?", "context": "CREATE TABLE table_name_1 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_2 WHERE player = \"ray kurpis\"", "question": "What round did Ray Kurpis play?", "context": "CREATE TABLE table_name_2 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT built_by FROM table_name_44 WHERE name = \"northern jaeger\"", "question": "Which Built by has a Name of northern jaeger?", "context": "CREATE TABLE table_name_44 (built_by VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(horsepowers) FROM table_name_51 WHERE year < 1974 AND tonnage = 4437", "question": "How many Horsepowers have a Year smaller than 1974, and a Tonnage of 4437?", "context": "CREATE TABLE table_name_51 (horsepowers INTEGER, year VARCHAR, tonnage VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE competition = \"2014 fifa world cup qualification\"", "question": "When was the 2014 fifa world cup qualification?", "context": "CREATE TABLE table_name_96 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE venue = \"tokyo\"", "question": "When was the date of an event at Tokyo venue?", "context": "CREATE TABLE table_name_86 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT city FROM table_name_58 WHERE opponent = \"poland\"", "question": "What city did Yugoslavia play against Poland in?", "context": "CREATE TABLE table_name_58 (city VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE opponent = \"luxembourg\"", "question": "What day did Yugoslavia play Luxembourg?", "context": "CREATE TABLE table_name_56 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT type_of_game FROM table_name_97 WHERE city = \"ljubljana\"", "question": "What type of game was played in Ljubljana?", "context": "CREATE TABLE table_name_97 (type_of_game VARCHAR, city VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_70 WHERE city = \"belgrade\"", "question": "What's the result of the game played in Belgrade?", "context": "CREATE TABLE table_name_70 (results\u00b9 VARCHAR, city VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE date = \"march 23\"", "question": "What was the score on March 23?", "context": "CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_6 WHERE score = \"4-2\" AND visitor = \"vancouver canucks\"", "question": "When the Vancouver Canucks were visiting, what was the record when the score was 4-2?", "context": "CREATE TABLE table_name_6 (record VARCHAR, score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT partner FROM table_name_79 WHERE score = \"6\u20137, 7\u20136, 6\u20137\"", "question": "Which Partner has a Score of 6\u20137, 7\u20136, 6\u20137?", "context": "CREATE TABLE table_name_79 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE date = \"13 april 1997\"", "question": "Which Score has a Date of 13 april 1997?", "context": "CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT partner FROM table_name_38 WHERE score = \"7\u20136, 6\u20133\"", "question": "Which Partner has a Score of 7\u20136, 6\u20133?", "context": "CREATE TABLE table_name_38 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE tournament = \"bmw open\"", "question": "Which Date has a Tournament of bmw open?", "context": "CREATE TABLE table_name_63 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT partner FROM table_name_13 WHERE tournament = \"catella swedish open\"", "question": "Which Partner has a Tournament of catella swedish open?", "context": "CREATE TABLE table_name_13 (partner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE surface = \"clay\" AND score = \"6\u20133, 5\u20137, 2\u20136\"", "question": "Which Date has a Surface of clay, and a Score of 6\u20133, 5\u20137, 2\u20136?", "context": "CREATE TABLE table_name_89 (date VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT winner FROM table_name_60 WHERE race_name = \"tre valli varesine\"", "question": "Who was the winner of the tre valli varesine race?", "context": "CREATE TABLE table_name_60 (winner VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE uci_rating = \"1.1\" AND race_name = \"omloop van de vlaamse scheldeboorden\"", "question": "What is the date of the omloop van de vlaamse scheldeboorden race with a UCI rating of 1.1?", "context": "CREATE TABLE table_name_22 (date VARCHAR, uci_rating VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE race_name = \"gp citt\u00e0 di camaiore\"", "question": "What is the date of the gp citt\u00e0 di camaiore race?", "context": "CREATE TABLE table_name_54 (date VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT uci_rating FROM table_name_81 WHERE location = \"italy\" AND team = \"progetto ciclismo alplast\"", "question": "What is the UCI rating of the race in Italy with the progetto ciclismo alplast team?", "context": "CREATE TABLE table_name_81 (uci_rating VARCHAR, location VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE game_site = \"schaeffer stadium\"", "question": "What is the date of the game being played at Schaeffer Stadium?", "context": "CREATE TABLE table_name_52 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_78 WHERE year > 1966 AND wins > 1", "question": "Which Points have a Year larger than 1966, and Wins larger than 1?", "context": "CREATE TABLE table_name_78 (points INTEGER, year VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_47 WHERE wins < 0", "question": "Which Year is the lowest one that has Wins smaller than 0?", "context": "CREATE TABLE table_name_47 (year INTEGER, wins INTEGER)"}, {"answer": "SELECT AVG(points) FROM table_name_15 WHERE wins > 1", "question": "Which Points have Wins larger than 1?", "context": "CREATE TABLE table_name_15 (points INTEGER, wins INTEGER)"}, {"answer": "SELECT AVG(wins) FROM table_name_54 WHERE year = 1963 AND class = \"50cc\"", "question": "Which Wins have a Year of 1963, and a Class of 50cc?", "context": "CREATE TABLE table_name_54 (wins INTEGER, year VARCHAR, class VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_63 WHERE wins > 16 AND country = \"australia\"", "question": "What is the player from Australia's rank with more than 16 wins?", "context": "CREATE TABLE table_name_63 (rank VARCHAR, wins VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(earnings___) AS $__ FROM table_name_16 WHERE wins > 19", "question": "What is the highest earnings of a player with more than 19 wins?", "context": "CREATE TABLE table_name_16 (earnings___ INTEGER, wins INTEGER)"}, {"answer": "SELECT AVG(opened) FROM table_name_19 WHERE manufacturer = \"vekoma\"", "question": "Which average Opened has a Manufacturer of vekoma?", "context": "CREATE TABLE table_name_19 (opened INTEGER, manufacturer VARCHAR)"}, {"answer": "SELECT MAX(opened) FROM table_name_76 WHERE themed_area = \"aerial park\" AND manufacturer = \"zamperla\"", "question": "Which Opened is the highest one that has a Themed Area of aerial park, and a Manufacturer of zamperla?", "context": "CREATE TABLE table_name_76 (opened INTEGER, themed_area VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT themed_area FROM table_name_12 WHERE name = \"troublesome trucks runaway coaster\"", "question": "Which Themed Area has a Name of troublesome trucks runaway coaster?", "context": "CREATE TABLE table_name_12 (themed_area VARCHAR, name VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_31 WHERE style = \"steel sit down\" AND opened > 2008", "question": "Which Manufacturer has a Style of steel sit down, and an Opened larger than 2008?", "context": "CREATE TABLE table_name_31 (manufacturer VARCHAR, style VARCHAR, opened VARCHAR)"}, {"answer": "SELECT position FROM table_name_44 WHERE pick < 25 AND school = \"university of california\"", "question": "What position has a pick less than 25 for the university of california?", "context": "CREATE TABLE table_name_44 (position VARCHAR, pick VARCHAR, school VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_23 WHERE school = \"tulane university\"", "question": "What is the pick number for tulane university?", "context": "CREATE TABLE table_name_23 (pick INTEGER, school VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_12 WHERE team = \"kansas city royals\"", "question": "What is the pick number for the kansas city royals?", "context": "CREATE TABLE table_name_12 (pick INTEGER, team VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_87 WHERE school = \"pasco, wa\"", "question": "What is the average Pick for the Pasco, Wa school?", "context": "CREATE TABLE table_name_87 (pick INTEGER, school VARCHAR)"}, {"answer": "SELECT label FROM table_name_5 WHERE format = \"cd single\" AND date = \"1993\"", "question": "What Label released a CD single in 1993?", "context": "CREATE TABLE table_name_5 (label VARCHAR, format VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_77 WHERE record = \"7\u20135\u20132\"", "question": "Where was home with a record of 7\u20135\u20132?", "context": "CREATE TABLE table_name_77 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE record = \"8\u20136\u20133\"", "question": "On what date was the record 8\u20136\u20133?", "context": "CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE visitor = \"pittsburgh\"", "question": "What was the score when Pittsburgh was the visitor?", "context": "CREATE TABLE table_name_42 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE home = \"ny rangers\"", "question": "On what date were the NY Rangers home?", "context": "CREATE TABLE table_name_98 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_49 WHERE record = \"7\u20135\u20133\"", "question": "Which visitor had a record of 7\u20135\u20133?", "context": "CREATE TABLE table_name_49 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_89 WHERE visitor = \"detroit\" AND score = \"4 \u2013 1\"", "question": "Who was home when Detroit was visiting with a score of 4 \u2013 1?", "context": "CREATE TABLE table_name_89 (home VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_92 WHERE label = \"great expectations\" AND format = \"lp\"", "question": "What is the earliest date with Great Expectations label with LP format?", "context": "CREATE TABLE table_name_92 (date INTEGER, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT format FROM table_name_21 WHERE catalog = \"mobil 1\"", "question": "What format was used for Mobil 1?", "context": "CREATE TABLE table_name_21 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT result FROM table_name_98 WHERE competition = \"friendly match\"", "question": "what team won the friendly match", "context": "CREATE TABLE table_name_98 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT COUNT(runner_up) FROM table_name_71 WHERE last_win < 1998 AND wins = 1 AND rank > 13", "question": "Which Runner-up has a Last win smaller than 1998, and Wins of 1, and a Rank larger than 13?", "context": "CREATE TABLE table_name_71 (runner_up VARCHAR, rank VARCHAR, last_win VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(last_win) FROM table_name_42 WHERE club = \"mansfield town\" AND wins < 1", "question": "How many Last wins have a Club of mansfield town, and Wins smaller than 1?", "context": "CREATE TABLE table_name_42 (last_win VARCHAR, club VARCHAR, wins VARCHAR)"}, {"answer": "SELECT driver FROM table_name_8 WHERE date = \"16th september 1951\" AND race = \"dns\"", "question": "Which Driver has a Date of 16th september 1951, and a Race of dns?", "context": "CREATE TABLE table_name_8 (driver VARCHAR, date VARCHAR, race VARCHAR)"}, {"answer": "SELECT race FROM table_name_47 WHERE event = \"goodwood trophy\" AND driver = \"reg parnell\"", "question": "At which race did reg parnell win the goodwood trophy?", "context": "CREATE TABLE table_name_47 (race VARCHAR, event VARCHAR, driver VARCHAR)"}, {"answer": "SELECT race FROM table_name_20 WHERE date = \"31st may 1953\" AND event = \"grand prix de l'albigeois final\"", "question": "Which Race has a Date of 31st may 1953, and an Event of grand prix de l'albigeois final?", "context": "CREATE TABLE table_name_20 (race VARCHAR, date VARCHAR, event VARCHAR)"}, {"answer": "SELECT AVG(total_cargo__metric_tonnes_) FROM table_name_97 WHERE _percentage_change = \"11.8%\"", "question": "What's the average total cargo in metric tonnes that has an 11.8% Change?", "context": "CREATE TABLE table_name_97 (total_cargo__metric_tonnes_ INTEGER, _percentage_change VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_72 WHERE airport = \"tokyo international airport\"", "question": "What is the highest rank of Tokyo International Airport?", "context": "CREATE TABLE table_name_72 (rank INTEGER, airport VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_92 WHERE points = 6 AND games < 5", "question": "Where the games are smaller than 5 and the points are 6, what is the average lost?", "context": "CREATE TABLE table_name_92 (lost INTEGER, points VARCHAR, games VARCHAR)"}, {"answer": "SELECT SUM(order) FROM table_name_89 WHERE built = \"5/69-6/69\"", "question": "with build 5/69-6/69 what's the order?", "context": "CREATE TABLE table_name_89 (order INTEGER, built VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_20 WHERE score = \"6\u20132, 6\u20132\"", "question": "Which Outcome has a Score of 6\u20132, 6\u20132?", "context": "CREATE TABLE table_name_20 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE outcome = \"winner\" AND score = \"7\u20135, 6\u20134\"", "question": "Which Date has an Outcome of winner, and a Score of 7\u20135, 6\u20134?", "context": "CREATE TABLE table_name_69 (date VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_23 WHERE outcome = \"winner\" AND surface = \"clay\" AND score = \"6\u20134, 6\u20131\"", "question": "Which Tournament has an Outcome of winner, and a Surface of clay, and a Score of 6\u20134, 6\u20131?", "context": "CREATE TABLE table_name_23 (tournament VARCHAR, score VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_41 WHERE opponent = \"mari andersson\"", "question": "What was the outcome in mari andersson's tournament?", "context": "CREATE TABLE table_name_41 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT loss FROM table_name_69 WHERE opponent = \"nationals\" AND score = \"7-1\"", "question": "What's the loss of the game with the opponent of the Nationals with a score of 7-1?", "context": "CREATE TABLE table_name_69 (loss VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_77 WHERE record = \"70-52\"", "question": "Which opponent has a record of 70-52?", "context": "CREATE TABLE table_name_77 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_42 WHERE opponent = \"nationals\" AND record = \"68-51\"", "question": "What is the attendance of the game that has the opponent of The Nationals with a record of 68-51?", "context": "CREATE TABLE table_name_42 (attendance INTEGER, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_52 WHERE score = \"5-4\"", "question": "What's the attendance of the game with a score of 5-4?", "context": "CREATE TABLE table_name_52 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_60 WHERE record = \"64-51\"", "question": "Who's the opponent of the game with the record 64-51?", "context": "CREATE TABLE table_name_60 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_41 WHERE game < 54", "question": "Who were the opponents in games before number 54?", "context": "CREATE TABLE table_name_41 (opponent VARCHAR, game INTEGER)"}, {"answer": "SELECT score FROM table_name_83 WHERE player = \"bert yancey\"", "question": "what was the score of bert yancey", "context": "CREATE TABLE table_name_83 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT length_fuel FROM table_name_22 WHERE quantity = 30", "question": "What is the Length/Fuel of the bus with a Quantity of 30?", "context": "CREATE TABLE table_name_22 (length_fuel VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT length_fuel FROM table_name_91 WHERE floor_styling = \"high\" AND year_built = \"2000-2003\"", "question": "What is the Length/Fuel of the bus built between 2000-2003 with a high Floor Styling?", "context": "CREATE TABLE table_name_91 (length_fuel VARCHAR, floor_styling VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE competition = \"friendly\" AND goal = 1", "question": "In what Venue was the game with a Friendly Competition and 1 Goal played?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, competition VARCHAR, goal VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS $__ FROM table_name_28 WHERE to_par = \"+5\" AND score = 76 - 69 - 70 - 70 = 285", "question": "What is the amount of money that a +5 to par with a score of 76-69-70-70=285?", "context": "CREATE TABLE table_name_28 (money___ VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE score = 71 - 69 - 71 - 69 = 280", "question": "What is the name of the player with a 71-69-71-69=280 score?", "context": "CREATE TABLE table_name_79 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(game__number) FROM table_name_95 WHERE home = \"san jose\" AND points < 71", "question": "Which average Game # has a Home of san jose, and Points smaller than 71?", "context": "CREATE TABLE table_name_95 (game__number INTEGER, home VARCHAR, points VARCHAR)"}, {"answer": "SELECT home FROM table_name_27 WHERE game__number = 59", "question": "Which Home has a Game # of 59?", "context": "CREATE TABLE table_name_27 (home VARCHAR, game__number VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_99 WHERE game__number > 62 AND date = \"february 25\"", "question": "Which Visitor has a Game # larger than 62, and a Date of february 25?", "context": "CREATE TABLE table_name_99 (visitor VARCHAR, game__number VARCHAR, date VARCHAR)"}, {"answer": "SELECT owns FROM table_name_93 WHERE delivery_date = \"2001 2001\"", "question": "with delivery date of 2001 2001 what is the owns?", "context": "CREATE TABLE table_name_93 (owns VARCHAR, delivery_date VARCHAR)"}, {"answer": "SELECT AVG(gross_tonnage) FROM table_name_35 WHERE delivery_date = \"2001 2001\"", "question": "with delivery date of 2001 2001 what is gross tonnage?", "context": "CREATE TABLE table_name_35 (gross_tonnage INTEGER, delivery_date VARCHAR)"}, {"answer": "SELECT owns FROM table_name_65 WHERE delivery_date = \"1997 1997\"", "question": "with delivery date 1997 1997 what is the owns?", "context": "CREATE TABLE table_name_65 (owns VARCHAR, delivery_date VARCHAR)"}, {"answer": "SELECT present_conference FROM table_name_5 WHERE location = \"gainesville, florida\"", "question": "Which conference does the school from Gainesville, Florida, play in?", "context": "CREATE TABLE table_name_5 (present_conference VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_23 WHERE nickname = \"buccaneers\" AND founded < 1911", "question": "What is the number of enrollments for teams named the Buccaneers founded before 1911?", "context": "CREATE TABLE table_name_23 (enrollment VARCHAR, nickname VARCHAR, founded VARCHAR)"}, {"answer": "SELECT MAX(chart_no) FROM table_name_17 WHERE title = \"yardbirds aka roger the engineer\"", "question": "What is the highest chart number for the song Yardbirds aka Roger the Engineer?", "context": "CREATE TABLE table_name_17 (chart_no INTEGER, title VARCHAR)"}, {"answer": "SELECT AVG(chart_no) FROM table_name_97 WHERE date = \"11/1965\"", "question": "What is the average chart number for 11/1965?", "context": "CREATE TABLE table_name_97 (chart_no INTEGER, date VARCHAR)"}, {"answer": "SELECT origin FROM table_name_84 WHERE chart_no = 52", "question": "What is origin country for a title that charted at 52?", "context": "CREATE TABLE table_name_84 (origin VARCHAR, chart_no VARCHAR)"}, {"answer": "SELECT record FROM table_name_5 WHERE game > 40 AND opponent = \"new york rangers\"", "question": "What is the Record of the Game after 40 with New York Rangers as Opponent?", "context": "CREATE TABLE table_name_5 (record VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE opponent_in_the_final = \"adam thompson\"", "question": "When did Adam Thompson play in the final?", "context": "CREATE TABLE table_name_47 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE tournament = \"lagos\"", "question": "When was the Lagos tournament?", "context": "CREATE TABLE table_name_84 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE opponent = \"phillies\" AND date = \"may 24\"", "question": "What was the score against the phillies on may 24?", "context": "CREATE TABLE table_name_28 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_13 WHERE opponent = \"new england patriots\"", "question": "Opponent of new england patriots had what attendance?", "context": "CREATE TABLE table_name_13 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_58 WHERE attendance = \"55,340\"", "question": "Attendance of 55,340 had what opponent?", "context": "CREATE TABLE table_name_58 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE week < 4 AND game_site = \"rca dome\" AND opponent = \"new england patriots\"", "question": "Week smaller than 4, and a Game Site of rca dome, and a Opponent of new england patriots involves what date?", "context": "CREATE TABLE table_name_12 (date VARCHAR, opponent VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE record = \"0\u20138\"", "question": "Record of 0\u20138 had what result?", "context": "CREATE TABLE table_name_33 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_25 WHERE record = \"0\u20138\"", "question": "Record of 0\u20138 had what lowest week?", "context": "CREATE TABLE table_name_25 (week INTEGER, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_51 WHERE visitor = \"pittsburgh\"", "question": "What was the score when the visitor was pittsburgh?", "context": "CREATE TABLE table_name_51 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT decision FROM table_name_18 WHERE date = \"november 26\"", "question": "What was the decision on November 26?", "context": "CREATE TABLE table_name_18 (decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(usn_2013) FROM table_name_63 WHERE bw_2013 < 1000 AND forbes_2011 > 17 AND cnn_2011 < 13", "question": "What is the USN 2013 ranking with a BW 2013 ranking less than 1000, a Forbes 2011 ranking larger than 17, and a CNN 2011 ranking less than 13?", "context": "CREATE TABLE table_name_63 (usn_2013 INTEGER, cnn_2011 VARCHAR, bw_2013 VARCHAR, forbes_2011 VARCHAR)"}, {"answer": "SELECT AVG(ae_2011) FROM table_name_21 WHERE forbes_2011 = 24 AND ft_2011 < 44", "question": "What is the average AE 2011 ranking with a Forbes 2011 ranking of 24 and a FT 2011 ranking less than 44?", "context": "CREATE TABLE table_name_21 (ae_2011 INTEGER, forbes_2011 VARCHAR, ft_2011 VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_88 WHERE week > 14 AND game_site = \"lincoln financial field\" AND time__et_ = \"8:30\"", "question": "Who did they play at lincoln financial field at 8:30 (ET) after week 14?", "context": "CREATE TABLE table_name_88 (opponent VARCHAR, time__et_ VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_86 WHERE gold < 0", "question": "What is the average rank for nations with fewer than 0 gold medals?", "context": "CREATE TABLE table_name_86 (rank INTEGER, gold INTEGER)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_8 WHERE total > 1 AND silver < 1", "question": "What is the total number of bronze medals with more than 1 medal total and fewer than 1 silver medal?", "context": "CREATE TABLE table_name_8 (bronze VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_43 WHERE silver < 0", "question": "What is the highest rank of a nation with fewer than 0 silver medals?", "context": "CREATE TABLE table_name_43 (rank INTEGER, silver INTEGER)"}, {"answer": "SELECT bats FROM table_name_90 WHERE first = \"josh\" AND throws = \"r\" AND surname = \"cakebread\"", "question": "Which Bats have a First of josh, and Throws of r, and a Surname of cakebread?", "context": "CREATE TABLE table_name_90 (bats VARCHAR, surname VARCHAR, first VARCHAR, throws VARCHAR)"}, {"answer": "SELECT dob FROM table_name_25 WHERE throws = \"r\" AND position = \"c\" AND first = \"torey\"", "question": "Which DOB has Throws of r, and a Position of c, and a First of torey?", "context": "CREATE TABLE table_name_25 (dob VARCHAR, first VARCHAR, throws VARCHAR, position VARCHAR)"}, {"answer": "SELECT dob FROM table_name_40 WHERE surname = \"cresswell\"", "question": "Which DOB has a Surname of cresswell?", "context": "CREATE TABLE table_name_40 (dob VARCHAR, surname VARCHAR)"}, {"answer": "SELECT dob FROM table_name_58 WHERE bats = \"r\" AND throws = \"r\" AND position = \"rhp\" AND first = \"john\"", "question": "Which DOB has Bats of r, and Throws of r, and a Position of rhp, and a First of john?", "context": "CREATE TABLE table_name_58 (dob VARCHAR, first VARCHAR, position VARCHAR, bats VARCHAR, throws VARCHAR)"}, {"answer": "SELECT position FROM table_name_30 WHERE surname = \"ruzic\"", "question": "Which Position did Ruzic play?", "context": "CREATE TABLE table_name_30 (position VARCHAR, surname VARCHAR)"}, {"answer": "SELECT throws FROM table_name_77 WHERE first = \"torey\"", "question": "How many throws did Torey have?", "context": "CREATE TABLE table_name_77 (throws VARCHAR, first VARCHAR)"}, {"answer": "SELECT MAX(ties) FROM table_name_65 WHERE losses < 9 AND starts = 26 AND wins < 21", "question": "Which Ties is the highest one that has Losses smaller than 9, and Starts of 26, and Wins smaller than 21?", "context": "CREATE TABLE table_name_65 (ties INTEGER, wins VARCHAR, losses VARCHAR, starts VARCHAR)"}, {"answer": "SELECT COUNT(win__percentage) FROM table_name_73 WHERE name = \"tony rice\" AND wins < 28", "question": "Which Win % has a Name of tony rice, and Wins smaller than 28?", "context": "CREATE TABLE table_name_73 (win__percentage VARCHAR, name VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_17 WHERE win__percentage < 0.8270000000000001 AND name = \"rick mirer\" AND ties < 1", "question": "Which Wins have a Win % smaller than 0.8270000000000001, and a Name of rick mirer, and Ties smaller than 1?", "context": "CREATE TABLE table_name_17 (wins INTEGER, ties VARCHAR, win__percentage VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_45 WHERE name = \"blair kiel\"", "question": "How many Losses have a Name of blair kiel?", "context": "CREATE TABLE table_name_45 (losses VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_39 WHERE name = \"jimmy clausen\"", "question": "Which Losses have a Name of jimmy clausen?", "context": "CREATE TABLE table_name_39 (losses INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_8 WHERE date = \"june 24\"", "question": "what is the number of attendance on june 24", "context": "CREATE TABLE table_name_8 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE home = \"dallas\"", "question": "Home of dallas happened on what date?", "context": "CREATE TABLE table_name_95 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE home = \"buffalo\"", "question": "Home of buffalo happened on what date?", "context": "CREATE TABLE table_name_39 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_16 WHERE visitor = \"dallas\" AND date = \"june 12\"", "question": "Visitor of dallas, and a Date of june 12 had what highest attendance?", "context": "CREATE TABLE table_name_16 (attendance INTEGER, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE pos < 4 AND venue = \"piraeus\"", "question": "On which date was the position less than 4 at Piraeus?", "context": "CREATE TABLE table_name_27 (date VARCHAR, pos VARCHAR, venue VARCHAR)"}, {"answer": "SELECT team FROM table_name_39 WHERE laps = 64 AND points = 13", "question": "Which team had 64 laps and 13 points?", "context": "CREATE TABLE table_name_39 (team VARCHAR, laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_90 WHERE time_retired = \"+1.906\"", "question": "How many laps did the team with a time/retired of +1.906 have?", "context": "CREATE TABLE table_name_90 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_62 WHERE grid = 14", "question": "What is the time/retired of the team with a grid of 14?", "context": "CREATE TABLE table_name_62 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_28 WHERE team = \"pkv racing\" AND points = 13 AND laps < 64", "question": "What is the lowest grid of pkv racing, which had 13 points and less than 64 laps?", "context": "CREATE TABLE table_name_28 (grid INTEGER, laps VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_53 WHERE time_retired = \"+7.346\"", "question": "What is the total grid of the team with a time/retired of +7.346?", "context": "CREATE TABLE table_name_53 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_56 WHERE team = \"pkv racing\" AND driver = \"oriol servi\u00e0\"", "question": "What is the grid of pkv racing with the driver oriol servi\u00e0?", "context": "CREATE TABLE table_name_56 (grid INTEGER, team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT attribute FROM table_name_52 WHERE cancelable = \"yes\" AND bubbles = \"yes\" AND category = \"keyboard\"", "question": "When Cancelable of yes, bubble of yes and a Category of keyboard, what was the Attribute?", "context": "CREATE TABLE table_name_52 (attribute VARCHAR, category VARCHAR, cancelable VARCHAR, bubbles VARCHAR)"}, {"answer": "SELECT cancelable FROM table_name_97 WHERE bubbles = \"no\" AND category = \"miscellaneous\" AND type = \"propertychange\"", "question": "When Bubbles of no, and a Category of miscellaneous, and a Type of propertychange, what was the Cancelable?", "context": "CREATE TABLE table_name_97 (cancelable VARCHAR, type VARCHAR, bubbles VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_name_88 WHERE type = \"rowexit\"", "question": "When Type was rowexit what was the Category?", "context": "CREATE TABLE table_name_88 (category VARCHAR, type VARCHAR)"}, {"answer": "SELECT category FROM table_name_72 WHERE cancelable = \"yes\" AND type = \"drag\"", "question": "When Cancelable of yes, and a Type of drag, what was the Category?", "context": "CREATE TABLE table_name_72 (category VARCHAR, cancelable VARCHAR, type VARCHAR)"}, {"answer": "SELECT attribute FROM table_name_41 WHERE bubbles = \"yes\" AND cancelable = \"yes\" AND category = \"mouse\" AND type = \"contextmenu\"", "question": "When Event has Bubbles of yes, Cancelable of yes, Category of mouse, and a Type of contextmenu what is the Attribute?", "context": "CREATE TABLE table_name_41 (attribute VARCHAR, type VARCHAR, category VARCHAR, bubbles VARCHAR, cancelable VARCHAR)"}, {"answer": "SELECT attribute FROM table_name_62 WHERE type = \"datasetcomplete\"", "question": "Let's say Type is of datasetcomplete, what is the Attribute?", "context": "CREATE TABLE table_name_62 (attribute VARCHAR, type VARCHAR)"}, {"answer": "SELECT name FROM table_name_71 WHERE former_local_authority = \"st neots urban district\"", "question": "What is the name of the parish that has a former local authority of St Neots urban district?", "context": "CREATE TABLE table_name_71 (name VARCHAR, former_local_authority VARCHAR)"}, {"answer": "SELECT district FROM table_name_71 WHERE former_local_authority = \"south cambridgeshire rural district\"", "question": "What district is the parish who had the South Cambridgeshire rural district as the former local authority?", "context": "CREATE TABLE table_name_71 (district VARCHAR, former_local_authority VARCHAR)"}, {"answer": "SELECT district FROM table_name_73 WHERE population < 75 AND name = \"st martin's without\"", "question": "What district is St Martin's Without parish in with a population less than 75?", "context": "CREATE TABLE table_name_73 (district VARCHAR, population VARCHAR, name VARCHAR)"}, {"answer": "SELECT home FROM table_name_84 WHERE guest = \"fk kom\"", "question": "Who was the home team when FK kom were the guests?", "context": "CREATE TABLE table_name_84 (home VARCHAR, guest VARCHAR)"}, {"answer": "SELECT venue FROM table_name_65 WHERE guest = \"fk ibar\"", "question": "What venue was the match against the guest team, FK ibar, played at?", "context": "CREATE TABLE table_name_65 (venue VARCHAR, guest VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE home = \"scotland\" AND date = \"24 february\"", "question": "What's the Score with a Home of Scotland and Date of 24 February?", "context": "CREATE TABLE table_name_12 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_11 WHERE position = \"tackle\" AND player = \"john sutro\" AND pick < 79", "question": "What round was john sutro, tackle, drafter with a pick lower than 79?", "context": "CREATE TABLE table_name_11 (round INTEGER, pick VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick FROM table_name_26 WHERE player = \"roger holdinsky\"", "question": "What pick was roger holdinsky?", "context": "CREATE TABLE table_name_26 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_51 WHERE position = \"back\" AND player = \"chuck morris\"", "question": "When was chuck morris, back, drafted?", "context": "CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_5 WHERE school = \"xavier\"", "question": "What wss the average round drafted for xavier players?", "context": "CREATE TABLE table_name_5 (round INTEGER, school VARCHAR)"}, {"answer": "SELECT urban_sub_area FROM table_name_70 WHERE council_area = \"east dunbartonshire\" AND population = \"19,020\"", "question": "What is the urban sub-area with an East Dunbartonshire council area and a population of 19,020?", "context": "CREATE TABLE table_name_70 (urban_sub_area VARCHAR, council_area VARCHAR, population VARCHAR)"}, {"answer": "SELECT council_area FROM table_name_51 WHERE urban_sub_area = \"larkhall\"", "question": "What is the council area for the Larkhall urban sub-area?", "context": "CREATE TABLE table_name_51 (council_area VARCHAR, urban_sub_area VARCHAR)"}, {"answer": "SELECT population FROM table_name_61 WHERE urban_sub_area = \"east kilbride\"", "question": "What is the population of the East Kilbride urban sub-area?", "context": "CREATE TABLE table_name_61 (population VARCHAR, urban_sub_area VARCHAR)"}, {"answer": "SELECT urban_sub_area FROM table_name_58 WHERE population = \"16,140\"", "question": "Which urban sub-area has a population of 16,140?", "context": "CREATE TABLE table_name_58 (urban_sub_area VARCHAR, population VARCHAR)"}, {"answer": "SELECT record FROM table_name_41 WHERE date = \"july 19\"", "question": "What is the record of the cubs on July 19?", "context": "CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_44 WHERE college_junior_club_team__league_ = \"northwood school (n.y.)\"", "question": "What nationality is Northwood School (N.Y.)?", "context": "CREATE TABLE table_name_44 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT result FROM table_name_81 WHERE incumbent = \"william vandever\"", "question": "What are incumbent William Vandever's results?", "context": "CREATE TABLE table_name_81 (result VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_73 WHERE result = \"democratic gain\"", "question": "Who was the first person elected from Democratic GAIN?", "context": "CREATE TABLE table_name_73 (first_elected VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_77 WHERE first_elected = \"1884\" AND incumbent = \"joseph mckenna\"", "question": "What was the result for incumbent Joseph McKenna who was first elected in 1884?", "context": "CREATE TABLE table_name_77 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_28 WHERE party = \"republican\" AND incumbent = \"joseph mckenna\"", "question": "When was republican incumbent Joseph McKenna first elected?", "context": "CREATE TABLE table_name_28 (first_elected VARCHAR, party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_79 WHERE location = \"grodno\"", "question": "what is the lowest capacity in grodno", "context": "CREATE TABLE table_name_79 (capacity INTEGER, location VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE january > 18 AND record = \"35\u201315\u20131\"", "question": "Which Score has January larger than 18 and a Record of 35\u201315\u20131?", "context": "CREATE TABLE table_name_79 (score VARCHAR, january VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(start) FROM table_name_17 WHERE engine = \"oldsmobile\" AND finish = 21 AND year < 2001", "question": "How many starts are associated with an oldsmobile engine, 21 finishes and before 2001?", "context": "CREATE TABLE table_name_17 (start INTEGER, year VARCHAR, engine VARCHAR, finish VARCHAR)"}, {"answer": "SELECT AVG(finish) FROM table_name_19 WHERE start < 11 AND engine = \"honda\" AND year < 2003", "question": "What was the finish associated with under 11 starts, a honda engine, before 2003?", "context": "CREATE TABLE table_name_19 (finish INTEGER, year VARCHAR, start VARCHAR, engine VARCHAR)"}, {"answer": "SELECT director FROM table_name_23 WHERE original_title = \"la ronde\"", "question": "what is the director of la ronde", "context": "CREATE TABLE table_name_23 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_27 WHERE visitor = \"colorado\" AND date = \"may 30\"", "question": "What is the lowest number of people attending the game on May 30 with Colorado as the visitors?", "context": "CREATE TABLE table_name_27 (attendance INTEGER, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_67 WHERE home = \"colorado\"", "question": "What is the lowest number of people attending the game where Colorado was the home team?", "context": "CREATE TABLE table_name_67 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE date = \"may 26\"", "question": "What was the score of the game on May 26?", "context": "CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_9 WHERE player = \"adam wiesel\"", "question": "What is the lowest round that Adam Wiesel was picked?", "context": "CREATE TABLE table_name_9 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_81 WHERE position = \"defence\" AND player = \"rory fitzpatrick\"", "question": "What college, junior, or club team did defence player Rory Fitzpatrick play for?", "context": "CREATE TABLE table_name_81 (college_junior_club_team VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE year = 1911", "question": "What was the score for 1911?", "context": "CREATE TABLE table_name_10 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT country FROM table_name_47 WHERE player = \"tiger woods\"", "question": "what country has tiger woods", "context": "CREATE TABLE table_name_47 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_63 WHERE score = 69 - 70 - 72 = 211", "question": "what country has a score of 69-70-72=211?", "context": "CREATE TABLE table_name_63 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_66 WHERE score = 69 - 72 - 68 = 209", "question": "what player scored 69-72-68=209?", "context": "CREATE TABLE table_name_66 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(earnings___) AS $__ FROM table_name_59 WHERE player = \"tom watson\" AND rank > 2", "question": "What is the largest number for earnings for tom watson when ranked more than 2?", "context": "CREATE TABLE table_name_59 (earnings___ INTEGER, player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(1 AS st__m_) FROM table_name_28 WHERE nationality = \"aut\" AND points > 273.5", "question": "Which 1st (m) is the lowest one that has a Nationality of aut, and Points larger than 273.5?", "context": "CREATE TABLE table_name_28 (nationality VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_36 WHERE poles < 0", "question": "What is the highest number of wins associated with under 0 poles?", "context": "CREATE TABLE table_name_36 (wins INTEGER, poles INTEGER)"}, {"answer": "SELECT poles FROM table_name_57 WHERE season = \"2006\" AND wins < 2", "question": "How many poles did he have in 2006 with under 2 wins?", "context": "CREATE TABLE table_name_57 (poles VARCHAR, season VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_51 WHERE poles = 3 AND season = \"2010\"", "question": "What is the fewest number of wins when he has 3 poles in 2010?", "context": "CREATE TABLE table_name_51 (wins INTEGER, poles VARCHAR, season VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_88 WHERE 2011 = \"7.7%\" AND 2008 = \"7.9%\"", "question": "What's listed for the 2012 that has a 2011 of 7.7% with a 2008 of 7.9%?", "context": "CREATE TABLE table_name_88 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_8 WHERE 2005 = \"4.2%\"", "question": "What is listed for the 2011 that has a 2005 of 4.2%?", "context": "CREATE TABLE table_name_8 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_86 WHERE 2011 = \"28.9%\"", "question": "What is listed for the 2012 that has a 2011 of 28.9%?", "context": "CREATE TABLE table_name_86 (Id VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_35 WHERE 2012 = \"4.2%\"", "question": "What is listed for the 2005 that has a 2012 of 4.2%?", "context": "CREATE TABLE table_name_35 (Id VARCHAR)"}, {"answer": "SELECT favorite_professional_sport FROM table_name_91 WHERE 2005 = \"17.1%\"", "question": "What is listed the Favorite Professional Sport that's got a 2005 of 17.1%?", "context": "CREATE TABLE table_name_91 (favorite_professional_sport VARCHAR)"}, {"answer": "SELECT favorite_professional_sport FROM table_name_87 WHERE 2008 = \"8.9%\"", "question": "What is listed as the Favorite Professional Sport that has a 2008 of 8.9%?", "context": "CREATE TABLE table_name_87 (favorite_professional_sport VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE record = \"79-77\"", "question": "What was the score of the game that led to a 79-77 record?", "context": "CREATE TABLE table_name_64 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_95 WHERE loss = \"rosales (1-1)\"", "question": "What was the record after the game in which Rosales (1-1) took the loss?", "context": "CREATE TABLE table_name_95 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT name FROM table_name_52 WHERE province_or_country_of_birth = \"manitoba\"", "question": "Which supercentenarians were born in Manitoba?", "context": "CREATE TABLE table_name_52 (name VARCHAR, province_or_country_of_birth VARCHAR)"}, {"answer": "SELECT age_as_of_1_february_2014 FROM table_name_23 WHERE province_or_country_of_birth = \"united states\"", "question": "What is the average age as of February 1, 2014 for the supercentenarians born in the United States?", "context": "CREATE TABLE table_name_23 (age_as_of_1_february_2014 VARCHAR, province_or_country_of_birth VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_36 WHERE 2001 = \"grand slam tournaments\"", "question": "Which 2010 Tournament has a 2001 of grand slam tournaments?", "context": "CREATE TABLE table_name_36 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_15 WHERE 2004 = \"a\" AND 2002 = \"not tier i\"", "question": "Which 2006 Tournament has a 2004, and a 2002 of not tier i?", "context": "CREATE TABLE table_name_15 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_46 WHERE 2007 = \"a\" AND 2010 = \"qf\"", "question": "Which 2008 Tournament has a 2007 of a and a 2010 of qf?", "context": "CREATE TABLE table_name_46 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_82 WHERE 2002 = \"grand slam tournaments\"", "question": "Which Tournament has a 2002 of grand slam tournaments?", "context": "CREATE TABLE table_name_82 (tournament VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_57 WHERE 2002 = \"not tier i\" AND 2006 = \"2r\"", "question": "Which 2000 Tournament has a 2002 of not tier i, and a 2006 of 2r?", "context": "CREATE TABLE table_name_57 (Id VARCHAR)"}, {"answer": "SELECT language FROM table_name_7 WHERE launch = 2006 AND hanzi = \"\u9752\u6d77\u7535\u89c6\u53f0\u85cf\u8bed\u7efc\u5408\u9891\u9053\"", "question": "Which language's launch was in 2006 when then hanzi was \u9752\u6d77\u7535\u89c6\u53f0\u85cf\u8bed\u7efc\u5408\u9891\u9053?", "context": "CREATE TABLE table_name_7 (language VARCHAR, launch VARCHAR, hanzi VARCHAR)"}, {"answer": "SELECT hanzi FROM table_name_84 WHERE name = \"nmtv mongolian satellite television\"", "question": "Which hanzi's name is nmtv mongolian satellite television?", "context": "CREATE TABLE table_name_84 (hanzi VARCHAR, name VARCHAR)"}, {"answer": "SELECT hanzi FROM table_name_71 WHERE launch < 2009 AND language = \"tibetan\" AND name = \"qinghai tibetian general channel\"", "question": "Which hanzi's launch is before 2009, when the language was tibetan, and the name was qinghai tibetian general channel?", "context": "CREATE TABLE table_name_71 (hanzi VARCHAR, name VARCHAR, launch VARCHAR, language VARCHAR)"}, {"answer": "SELECT team FROM table_name_60 WHERE qual_2 = \"1:24.365\"", "question": "What Team had a 1:24.365 Qual 2?", "context": "CREATE TABLE table_name_60 (team VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT team FROM table_name_51 WHERE best = \"1:24.152\"", "question": "What Team had a 1:24.152 Best?", "context": "CREATE TABLE table_name_51 (team VARCHAR, best VARCHAR)"}, {"answer": "SELECT best FROM table_name_47 WHERE name = \"robert doornbos\"", "question": "What was Robert Doornbos' Best?", "context": "CREATE TABLE table_name_47 (best VARCHAR, name VARCHAR)"}, {"answer": "SELECT best FROM table_name_47 WHERE name = \"alex figge\"", "question": "What was Alex Figge's Best?", "context": "CREATE TABLE table_name_47 (best VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_41 WHERE best = \"1:25.602\"", "question": "What Team had a 1:25.602 Best?", "context": "CREATE TABLE table_name_41 (team VARCHAR, best VARCHAR)"}, {"answer": "SELECT name FROM table_name_59 WHERE qual_1 = \"1:26.056\"", "question": "What was the Name of the person with a Qual 1 of 1:26.056?", "context": "CREATE TABLE table_name_59 (name VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_31 WHERE school_club_team = \"bentley\"", "question": "How many picks were there for the Bentley team?", "context": "CREATE TABLE table_name_31 (pick VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_87 WHERE player = \"dan connor\"", "question": "What is the largest round number for Dan Connor, the player?", "context": "CREATE TABLE table_name_87 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_54 WHERE position = \"dt\" AND pick > 181", "question": "What is the largest round number for the dt position when the pick number is bigger than 181?", "context": "CREATE TABLE table_name_54 (round INTEGER, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_25 WHERE round = \"italy\"", "question": "what circuit is in italy", "context": "CREATE TABLE table_name_25 (circuit VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_59 WHERE player = \"clarence mason\"", "question": "What is the average pick for clarence mason?", "context": "CREATE TABLE table_name_59 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(frequency_mhz) FROM table_name_37 WHERE city_of_license = \"lamar, colorado\"", "question": "What is the frequency for the city of Lamar, Colorado?", "context": "CREATE TABLE table_name_37 (frequency_mhz INTEGER, city_of_license VARCHAR)"}, {"answer": "SELECT AVG(erp_w) FROM table_name_97 WHERE call_sign = \"k207bk\"", "question": "What is the average ERP W for callsign K207BK?", "context": "CREATE TABLE table_name_97 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_15 WHERE frequency_mhz > 88.7 AND erp_w = 99", "question": "Which callsign has ERP W of 99 and a frequency of greater than 88.7MHz?", "context": "CREATE TABLE table_name_15 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_20 WHERE erp_w < 14 AND frequency_mhz > 93.7", "question": "Which city has ERP W under 14 and a frequency over 93.7MHz?", "context": "CREATE TABLE table_name_20 (city_of_license VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT COUNT(field_goals) FROM table_name_80 WHERE touchdowns = 0 AND extra_points = 2", "question": "What were the total number of field goals when there were 0 touchdowns and 2 extra points?", "context": "CREATE TABLE table_name_80 (field_goals VARCHAR, touchdowns VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT SUM(field_goals) FROM table_name_14 WHERE player = \"carter\" AND extra_points < 0", "question": "How many field goals did Carter get when he had 0 extra points?", "context": "CREATE TABLE table_name_14 (field_goals INTEGER, player VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT MAX(extra_points) FROM table_name_20 WHERE points = 28 AND field_goals < 0", "question": "What is the highest amount of extra points someone got when they scored 28 points but had 0 field goals?", "context": "CREATE TABLE table_name_20 (extra_points INTEGER, points VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT AVG(field_goals) FROM table_name_80 WHERE extra_points > 0 AND touchdowns > 5", "question": "What is the average field goal someone has when they have 0 extra points but more than 5 touch downs?", "context": "CREATE TABLE table_name_80 (field_goals INTEGER, extra_points VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_80 WHERE points > 113 AND rank = \"4th\"", "question": "What is the lowest number of wins with more than 113 points in 4th rank?", "context": "CREATE TABLE table_name_80 (wins INTEGER, points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT wins FROM table_name_44 WHERE points < 91 AND rank = \"25th\"", "question": "How many wins had less than 91 points in 25th rank?", "context": "CREATE TABLE table_name_44 (wins VARCHAR, points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT wins FROM table_name_52 WHERE year = 1992", "question": "How many wins in 1992?", "context": "CREATE TABLE table_name_52 (wins VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_31 WHERE rank = \"6th\"", "question": "How many wins occurred for 6th rank?", "context": "CREATE TABLE table_name_31 (wins VARCHAR, rank VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_39 WHERE driver = \"heikki kovalainen\"", "question": "Who was the constructor of the car driven by Heikki Kovalainen?", "context": "CREATE TABLE table_name_39 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT reg_season FROM table_name_31 WHERE division = 2", "question": "Which Reg Season has a Division of 2?", "context": "CREATE TABLE table_name_31 (reg_season VARCHAR, division VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_30 WHERE reg_season = \"3rd, western\" AND division > 2", "question": "Which Year is the highest one that has a Reg Season of 3rd, western, and a Division larger than 2?", "context": "CREATE TABLE table_name_30 (year INTEGER, reg_season VARCHAR, division VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_93 WHERE playoffs = \"did not qualify\"", "question": "Which year is the lowest one when the playoffs did not qualify?", "context": "CREATE TABLE table_name_93 (year INTEGER, playoffs VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_9 WHERE reg_season = \"3rd, western\"", "question": "Which Year has a Reg Season of 3rd, western?", "context": "CREATE TABLE table_name_9 (year INTEGER, reg_season VARCHAR)"}, {"answer": "SELECT AVG(division) FROM table_name_36 WHERE reg_season = \"1st, western\" AND playoffs = \"champions\" AND year < 2013", "question": "Which Division that has a Reg Season of 1st, western, and Playoffs of champions, and a Year smaller than 2013?", "context": "CREATE TABLE table_name_36 (division INTEGER, year VARCHAR, reg_season VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_80 WHERE attendance > 31 OFFSET 891", "question": "Who was the opponent during the game that had more than 31,891 people in attendance?", "context": "CREATE TABLE table_name_80 (opponent VARCHAR, attendance INTEGER)"}, {"answer": "SELECT AVG(attendance) FROM table_name_97 WHERE date = \"october 16, 1955\" AND week < 4", "question": "What is the average attendance for the game before week 4 that was on october 16, 1955?", "context": "CREATE TABLE table_name_97 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_35 WHERE date = \"november 20, 1955\"", "question": "Who was the opponent for the game on November 20, 1955?", "context": "CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(successful_defenses) FROM table_name_13 WHERE location = \"brandon, florida\" AND reign < 1", "question": "What is the highest number of successful defenses in brandon, florida and a reign less than 1?", "context": "CREATE TABLE table_name_13 (successful_defenses INTEGER, location VARCHAR, reign VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE opponent = \"norway\" AND results\u00b9 = \"1:1\"", "question": "What was the date of the game against Norway with a 1:1 result?", "context": "CREATE TABLE table_name_31 (date VARCHAR, opponent VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT type_of_game FROM table_name_17 WHERE results\u00b9 = \"0:0\"", "question": "What type of game had a 0:0 result?", "context": "CREATE TABLE table_name_17 (type_of_game VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT city FROM table_name_5 WHERE results\u00b9 = \"5:2\"", "question": "What city held that game with a 5:2 result?", "context": "CREATE TABLE table_name_5 (city VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE record = \"1-2-1\"", "question": "What is the score of the game that has a record of 1-2-1?", "context": "CREATE TABLE table_name_29 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_52 WHERE opponent = \"hartford whalers\"", "question": "What is the team's record in games against the Hartford Whalers?", "context": "CREATE TABLE table_name_52 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_97 WHERE game_site = \"hoosier dome\" AND week = 13", "question": "What was the Record on Week 13 at the Hoosier Dome?", "context": "CREATE TABLE table_name_97 (record VARCHAR, game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_3 WHERE date = \"october 18, 1992\"", "question": "What was the Week on October 18, 1992?", "context": "CREATE TABLE table_name_3 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_25 WHERE record = \"16-6\"", "question": "What loss has 16-6 as the record?", "context": "CREATE TABLE table_name_25 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_73 WHERE record = \"4-2\"", "question": "What loss has 4-2 as the record?", "context": "CREATE TABLE table_name_73 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_69 WHERE opponent = \"astros\" AND date = \"april 29\"", "question": "What attendance has astros as the opponent, and april 29 as the date?", "context": "CREATE TABLE table_name_69 (attendance INTEGER, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT operator FROM table_name_13 WHERE width = \"2.65 m\" AND type_designation = \"m5000\"", "question": "Which Operator has a Width of 2.65 m, and a Type designation of m5000?", "context": "CREATE TABLE table_name_13 (operator VARCHAR, width VARCHAR, type_designation VARCHAR)"}, {"answer": "SELECT width FROM table_name_88 WHERE number_of_vehicles > 15 AND type_designation = \"k5000\"", "question": "Which Width has a Number of vehicles larger than 15, and a Type designation of k5000?", "context": "CREATE TABLE table_name_88 (width VARCHAR, number_of_vehicles VARCHAR, type_designation VARCHAR)"}, {"answer": "SELECT number_of_vehicles FROM table_name_76 WHERE type_designation = \"u5-25 (bi-directional)\"", "question": "Which Number of vehicles has a Type designation of u5-25 (bi-directional)?", "context": "CREATE TABLE table_name_76 (number_of_vehicles VARCHAR, type_designation VARCHAR)"}, {"answer": "SELECT irish_name FROM table_name_65 WHERE province = \"leinster\" AND county = \"fingal\"", "question": "Province of leinster, and a County of fingal has which irish name?", "context": "CREATE TABLE table_name_65 (irish_name VARCHAR, province VARCHAR, county VARCHAR)"}, {"answer": "SELECT county AS town FROM table_name_34 WHERE irish_name = \"an d\u00fan (contae an d\u00fain)\"", "question": "Irish name of an d\u00fan (contae an d\u00fain) has what county town?", "context": "CREATE TABLE table_name_34 (county VARCHAR, irish_name VARCHAR)"}, {"answer": "SELECT region FROM table_name_8 WHERE most_populous_city_town = \"clonmel\" AND irish_name = \"tiobraid \u00e1rann (contae thiobraid \u00e1rann)\"", "question": "Most populous city/town of clonmel, and a Irish name of tiobraid \u00e1rann (contae thiobraid \u00e1rann) is which region?", "context": "CREATE TABLE table_name_8 (region VARCHAR, most_populous_city_town VARCHAR, irish_name VARCHAR)"}, {"answer": "SELECT most_populous_city_town FROM table_name_46 WHERE irish_name = \"d\u00fan na ngall (contae dh\u00fan na ngall)\"", "question": "Irish name of d\u00fan na ngall (contae dh\u00fan na ngall) has the most populous city/town?", "context": "CREATE TABLE table_name_46 (most_populous_city_town VARCHAR, irish_name VARCHAR)"}, {"answer": "SELECT games FROM table_name_66 WHERE name = \"rub\u00e9n limardo\"", "question": "Name the games for rub\u00e9n limardo", "context": "CREATE TABLE table_name_66 (games VARCHAR, name VARCHAR)"}, {"answer": "SELECT sport FROM table_name_75 WHERE medal = \"gold\" AND event = \"men's light flyweight\"", "question": "Name the sport for men's light flyweight with medal of gold", "context": "CREATE TABLE table_name_75 (sport VARCHAR, medal VARCHAR, event VARCHAR)"}, {"answer": "SELECT name FROM table_name_71 WHERE event = \"men's featherweight\" AND sport = \"weightlifting\"", "question": "Tell me the name for men's featherweight and sport of weightlifting", "context": "CREATE TABLE table_name_71 (name VARCHAR, event VARCHAR, sport VARCHAR)"}, {"answer": "SELECT details_of_journey FROM table_name_48 WHERE narrator = \"simon hoggart\"", "question": "Which details of journey had simon hoggart as a narrator?", "context": "CREATE TABLE table_name_48 (details_of_journey VARCHAR, narrator VARCHAR)"}, {"answer": "SELECT countries_visited FROM table_name_26 WHERE episode_no < 7 AND writer = \"ray gosling\"", "question": "Which countries visited had an episode number of less than 7 when Ray Gosling was the writer?", "context": "CREATE TABLE table_name_26 (countries_visited VARCHAR, episode_no VARCHAR, writer VARCHAR)"}, {"answer": "SELECT height FROM table_name_30 WHERE name = \"zipp duncan\"", "question": "How tall is Zipp Duncan?", "context": "CREATE TABLE table_name_30 (height VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(games) AS \u2191 FROM table_name_51 WHERE name = \"tony dixon\"", "question": "What is the average games of Tony Dixon?", "context": "CREATE TABLE table_name_51 (games INTEGER, name VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_55 WHERE top_25 = 6 AND top_10 > 2 AND events < 19", "question": "What is the total of wins where the top 25 is 6, top 10 is more than 2, and the event number is less than 19?", "context": "CREATE TABLE table_name_55 (wins INTEGER, events VARCHAR, top_25 VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT SUM(cuts_made) FROM table_name_90 WHERE top_25 < 6 AND top_5 > 0", "question": "What is the total of cuts made where the top 25 is less than 6 and the top-5 is more than 0?", "context": "CREATE TABLE table_name_90 (cuts_made INTEGER, top_25 VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT COUNT(top_10) FROM table_name_61 WHERE top_25 > 6 AND wins < 2", "question": "How many top-10 numbers had a top 25 of more than 6 with less than 2 wins?", "context": "CREATE TABLE table_name_61 (top_10 VARCHAR, top_25 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_35 WHERE 2010 = \"1r\" AND 2012 = \"sf\"", "question": "Name the 2011 with 2010 of 1r and 2012 of sf", "context": "CREATE TABLE table_name_35 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_39 WHERE 2012 = \"2r\" AND 2006 = \"2r\"", "question": "Name the 2008 with 2012 of 2r and 2006 of 2r", "context": "CREATE TABLE table_name_39 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_41 WHERE 2012 = \"sf\"", "question": "Name the 2008 for 2012 of sf", "context": "CREATE TABLE table_name_41 (Id VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_9 WHERE 2011 = \"1r\"", "question": "Name the 2013 for 2011 of 1r", "context": "CREATE TABLE table_name_9 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_22 WHERE 2006 = \"2r\" AND 2008 = \"2r\"", "question": "Name the 2011 with 2006 of 2r and 2008 of 2r", "context": "CREATE TABLE table_name_22 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_69 WHERE 2013 = \"2r\" AND 2009 = \"3r\"", "question": "Name the 2012 with 2013 of 2r and 2009 of 3r", "context": "CREATE TABLE table_name_69 (Id VARCHAR)"}, {"answer": "SELECT COUNT(field_goals) FROM table_name_33 WHERE points > 5 AND touchdowns > 2 AND extra_points < 0", "question": "How many Field goals have Points larger than 5, and Touchdowns larger than 2, and an Extra points smaller than 0?", "context": "CREATE TABLE table_name_33 (field_goals VARCHAR, extra_points VARCHAR, points VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT COUNT(touchdowns) FROM table_name_84 WHERE extra_points > 0 AND points = 48", "question": "How many Touchdowns have Extra points larger than 0, and Points of 48?", "context": "CREATE TABLE table_name_84 (touchdowns VARCHAR, extra_points VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(touchdowns) FROM table_name_8 WHERE extra_points < 5 AND player = \"clark\" AND field_goals > 0", "question": "Which Touchdowns have an Extra points smaller than 5, and a Player of clark, and Field goals larger than 0?", "context": "CREATE TABLE table_name_8 (touchdowns INTEGER, field_goals VARCHAR, extra_points VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_70 WHERE touchdowns > 0 AND extra_points < 0", "question": "Which Points have Touchdowns larger than 0, and an Extra points smaller than 0?", "context": "CREATE TABLE table_name_70 (points INTEGER, touchdowns VARCHAR, extra_points VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_86 WHERE champions = \"michael chang 6-0 6-4\"", "question": "Which Semifinalists has a Champions of michael chang 6-0 6-4?", "context": "CREATE TABLE table_name_86 (semifinalists VARCHAR, champions VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_68 WHERE semifinalists = \"guillermo p\u00e9rez-rold\u00e1n andrea gaudenzi\"", "question": "Whose Runner-up has a Semifinalist of guillermo p\u00e9rez-rold\u00e1n andrea gaudenzi?", "context": "CREATE TABLE table_name_68 (runners_up VARCHAR, semifinalists VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_5 WHERE level < 1", "question": "Tell me the least season with level less than 1", "context": "CREATE TABLE table_name_5 (season INTEGER, level INTEGER)"}, {"answer": "SELECT attendance FROM table_name_49 WHERE date = \"september 11, 1983\"", "question": "What was the Attendance on September 11, 1983?", "context": "CREATE TABLE table_name_49 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_73 WHERE result = \"w 37-21\"", "question": "What was the Opponent during the game with a Result of W 37-21?", "context": "CREATE TABLE table_name_73 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_50 WHERE week = 8", "question": "What was the Result on Week 8?", "context": "CREATE TABLE table_name_50 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_12 WHERE lost < 1", "question": "What is the lowest number of games with less than 1 loss?", "context": "CREATE TABLE table_name_12 (games INTEGER, lost INTEGER)"}, {"answer": "SELECT nation FROM table_name_52 WHERE points = 108.8", "question": "What was the nationality of the skater with 108.8 points?", "context": "CREATE TABLE table_name_52 (nation VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_43 WHERE club = \"btsc\"", "question": "How many points for the skater from club btsc?", "context": "CREATE TABLE table_name_43 (points VARCHAR, club VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_78 WHERE year = 1983 AND country = \"italy\"", "question": "Which Original title has a Year of 1983, and a Country of italy?", "context": "CREATE TABLE table_name_78 (original_title VARCHAR, year VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_87 WHERE original_title = \"\u0438\u0432\u0430\u043d\u043e\u0432\u043e \u0434\u0435\u0442\u0441\u0442\u0432\u043e\"", "question": "How many years have an Original title of \u0438\u0432\u0430\u043d\u043e\u0432\u043e \u0434\u0435\u0442\u0441\u0442\u0432\u043e?", "context": "CREATE TABLE table_name_87 (year VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT length FROM table_name_52 WHERE country = \"soviet union\" AND year > 1975", "question": "Which Length has a Country of soviet union, and a Year larger than 1975?", "context": "CREATE TABLE table_name_52 (length VARCHAR, country VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_25 WHERE wins < 0", "question": "What is listed as the lowest Year with a Wins that's smaller than 0?", "context": "CREATE TABLE table_name_25 (year INTEGER, wins INTEGER)"}, {"answer": "SELECT wins FROM table_name_84 WHERE year = 1989", "question": "What is listed for the Wins with a Year of 1989?", "context": "CREATE TABLE table_name_84 (wins VARCHAR, year VARCHAR)"}, {"answer": "SELECT class FROM table_name_17 WHERE team = \"cagiva\" AND points = 4", "question": "What is listed for the Class that's got a Team of Cagiva and Points of 4?", "context": "CREATE TABLE table_name_17 (class VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(population_2001_census) FROM table_name_10 WHERE population_1991_census = 476 OFFSET 815", "question": "What is the number of Population 2001 Census that has 476,815 in Population 1991 Census?", "context": "CREATE TABLE table_name_10 (population_2001_census INTEGER, population_1991_census VARCHAR)"}, {"answer": "SELECT played FROM table_name_91 WHERE losing_bonus = \"3\"", "question": "What played has 3 as the losing bonus?", "context": "CREATE TABLE table_name_91 (played VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_22 WHERE club = \"llangefni rfc\"", "question": "What is the try bonus that has llangefni rfc as the club?", "context": "CREATE TABLE table_name_22 (try_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT played FROM table_name_63 WHERE points_for = \"247\"", "question": "What played has 247 as the points?", "context": "CREATE TABLE table_name_63 (played VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_17 WHERE tries_against = \"19\"", "question": "What try bonus has 19 as the tries against?", "context": "CREATE TABLE table_name_17 (try_bonus VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_31 WHERE played = \"18\" AND club = \"bala rfc\"", "question": "What points has 18 for the played and bala rfc as the club?", "context": "CREATE TABLE table_name_31 (points_for VARCHAR, played VARCHAR, club VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_83 WHERE played = \"18\" AND points_for = \"204\"", "question": "What try bonus has 18 as the played of and 204 as the points?", "context": "CREATE TABLE table_name_83 (try_bonus VARCHAR, played VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT record FROM table_name_4 WHERE visitor = \"montreal\" AND date = \"february 2\"", "question": "What record has montreal as the visitor, and february 2 as the date?", "context": "CREATE TABLE table_name_4 (record VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_7 WHERE date = \"february 25\"", "question": "What record has February 25 as the date?", "context": "CREATE TABLE table_name_7 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE visitor = \"boston\"", "question": "What date has boston as the visitor?", "context": "CREATE TABLE table_name_21 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE home = \"vancouver\" AND date = \"february 16\"", "question": "What score has vancouver as the home, and february 16 as the date?", "context": "CREATE TABLE table_name_81 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_80 WHERE team = \"corinthians\" AND lost > 15", "question": "Team of corinthians, and a Lost larger than 15 has which highest drawn?", "context": "CREATE TABLE table_name_80 (drawn INTEGER, team VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_47 WHERE difference = \"- 20\" AND position < 17", "question": "Difference of - 20, and a Position smaller than 17 is the highest against?", "context": "CREATE TABLE table_name_47 (against INTEGER, difference VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_88 WHERE against < 53 AND drawn < 10 AND played < 38", "question": "Against smaller than 53, and a Drawn smaller than 10, and a Played smaller than 38 has what average points?", "context": "CREATE TABLE table_name_88 (points INTEGER, played VARCHAR, against VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE home = \"toronto maple leafs\" AND date = \"november 12\"", "question": "Which score was for Toronto Maple Leafs at home on November 12?", "context": "CREATE TABLE table_name_66 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_87 WHERE visitor = \"chicago black hawks\" AND score = \"2\u20133\"", "question": "Which home team had a visitor of Chicago Black Hawks with a score of 2\u20133?", "context": "CREATE TABLE table_name_87 (home VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_73 WHERE date = \"november 26\"", "question": "Who was home on November 26?", "context": "CREATE TABLE table_name_73 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_10 WHERE record = \"5\u20138\u20134\"", "question": "What was the visitor with a record of 5\u20138\u20134?", "context": "CREATE TABLE table_name_10 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_66 WHERE point > 52 AND draw < 10 AND goal_loss < 44 AND lose < 15", "question": "What was the average rank of a player with more than 52 points, fewer than 10 draws, a goal loss under 44, and a loss under 15?", "context": "CREATE TABLE table_name_66 (rank INTEGER, lose VARCHAR, goal_loss VARCHAR, point VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MAX(lose) FROM table_name_88 WHERE name = \"santos\" AND point > 45", "question": "What was the highest number of lose for a player named Santos with more than 45 points?", "context": "CREATE TABLE table_name_88 (lose INTEGER, name VARCHAR, point VARCHAR)"}, {"answer": "SELECT report FROM table_name_49 WHERE score = \"0-0\" AND away_team = \"sydney fc\"", "question": "What report has a score of 0-0 with Sydney FC?", "context": "CREATE TABLE table_name_49 (report VARCHAR, score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE score = \"0-0\"", "question": "On what date was the score 0-0?", "context": "CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_6 WHERE score = \"1-3\"", "question": "Which home team had the score 1-3?", "context": "CREATE TABLE table_name_6 (home_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_71 WHERE away_team = \"round 2\"", "question": "Where did the away team have round 2?", "context": "CREATE TABLE table_name_71 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE venue = \"round 3\"", "question": "When did the venue of round 3 happen?", "context": "CREATE TABLE table_name_23 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(density) FROM table_name_74 WHERE population_2011_census = 13 OFFSET 708", "question": "What is the lowest density of a town with a 13,708 2011 population census ?", "context": "CREATE TABLE table_name_74 (density INTEGER, population_2011_census VARCHAR)"}, {"answer": "SELECT orbit FROM table_name_14 WHERE specific_orbital_energy = \"\u221229.8 mj/kg\"", "question": "specific orbital energy of \u221229.8 mj/kg has what orbit?", "context": "CREATE TABLE table_name_14 (orbit VARCHAR, specific_orbital_energy VARCHAR)"}, {"answer": "SELECT specific_orbital_energy FROM table_name_73 WHERE orbital_period = \"89 to 128 min\"", "question": "Orbital period of 89 to 128 min has what specific orbital energy?", "context": "CREATE TABLE table_name_73 (specific_orbital_energy VARCHAR, orbital_period VARCHAR)"}, {"answer": "SELECT orbital_period FROM table_name_69 WHERE center_to_center_distance = \"6,900 to 46,300 km\"", "question": "center-to-center distance of 6,900 to 46,300 km involves which orbital period?", "context": "CREATE TABLE table_name_69 (orbital_period VARCHAR, center_to_center_distance VARCHAR)"}, {"answer": "SELECT MIN(fa_cup) FROM table_name_64 WHERE malaysia_cup < 0", "question": "What was the lowest FA Cup for a Malaysia Cup of 0?", "context": "CREATE TABLE table_name_64 (fa_cup INTEGER, malaysia_cup INTEGER)"}, {"answer": "SELECT MIN(malaysia_cup) FROM table_name_74 WHERE player = \"zamri hassan\" AND fa_cup < 0", "question": "What is Zamri Hassan's lowest Malaysia Cup when there were an FA Cup of 0?", "context": "CREATE TABLE table_name_74 (malaysia_cup INTEGER, player VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT MIN(league) FROM table_name_98 WHERE malaysia_cup > 0", "question": "What is the lowest league for the Malaysia Cup when it was larger than 0?", "context": "CREATE TABLE table_name_98 (league INTEGER, malaysia_cup INTEGER)"}, {"answer": "SELECT MIN(bronze) FROM table_name_75 WHERE nation = \"switzerland\" AND silver < 3", "question": "How many Bronze medals did Switzerland with less than 3 Silver medals receive?", "context": "CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_39 WHERE bronze > 3", "question": "What is the least amount of Silver medals that have more than 3 Bronze?", "context": "CREATE TABLE table_name_39 (silver INTEGER, bronze INTEGER)"}, {"answer": "SELECT AVG(game) FROM table_name_23 WHERE points < 84 AND march = 8", "question": "What is the average game for March 8 with less than 84 points?", "context": "CREATE TABLE table_name_23 (game INTEGER, points VARCHAR, march VARCHAR)"}, {"answer": "SELECT MAX(march) FROM table_name_34 WHERE record = \"35\u201316\u20136\u20133\"", "question": "What is the latest in March when the record of 35\u201316\u20136\u20133?", "context": "CREATE TABLE table_name_34 (march INTEGER, record VARCHAR)"}, {"answer": "SELECT competition FROM table_name_42 WHERE score = \"3-0\"", "question": "Name the competition for score of 3-0", "context": "CREATE TABLE table_name_42 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_21 WHERE date = \"september 10, 2008\"", "question": "Name the competition for september 10, 2008", "context": "CREATE TABLE table_name_21 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE competition = \"world cup qualifying\" AND date = \"october 15, 2008\"", "question": "Name the sscore for world cup qualifying october 15, 2008", "context": "CREATE TABLE table_name_49 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_82 WHERE date = \"november 19, 2008\"", "question": "Name the competition for november 19, 2008", "context": "CREATE TABLE table_name_82 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE city = \"rio de janeiro\"", "question": "Name the date for rio de janeiro", "context": "CREATE TABLE table_name_55 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(fall_08) FROM table_name_52 WHERE fall_06 = 57 AND fall_05 < 74", "question": "What number is Fall 08 from the state with 57 in Fall 06 and 74 or less in Fall 05?", "context": "CREATE TABLE table_name_52 (fall_08 VARCHAR, fall_06 VARCHAR, fall_05 VARCHAR)"}, {"answer": "SELECT AVG(fall_06) FROM table_name_92 WHERE fall_08 < 79 AND fall_07 > 36 AND fall_05 > 74", "question": "What number is Fall 06 from the state with 79 or less in Fall 08, 36 or greater in Fall 07 and greater than 74 in Fall 05?", "context": "CREATE TABLE table_name_92 (fall_06 INTEGER, fall_05 VARCHAR, fall_08 VARCHAR, fall_07 VARCHAR)"}, {"answer": "SELECT AVG(fall_06) FROM table_name_97 WHERE fall_09 = 34", "question": "What number is Fall 06 from the state with 34 for Fall 09?", "context": "CREATE TABLE table_name_97 (fall_06 INTEGER, fall_09 VARCHAR)"}, {"answer": "SELECT record FROM table_name_67 WHERE visitor = \"toronto maple leafs\" AND score = \"3\u201310\"", "question": "What was the record when the visitor was toronto maple leafs and the score was 3\u201310?", "context": "CREATE TABLE table_name_67 (record VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE visitor = \"toronto maple leafs\" AND date = \"march 22\"", "question": "What was the score when the visitor was toronto maple leafs on march 22?", "context": "CREATE TABLE table_name_53 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_63 WHERE home = \"toronto maple leafs\" AND score = \"4\u20131\"", "question": "What was the Visitor when the home was toronto maple leafs and the score was 4\u20131?", "context": "CREATE TABLE table_name_63 (visitor VARCHAR, home VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(episode_count) FROM table_name_86 WHERE viewers__in_millions_ = 7.79", "question": "How many total episodes aired over all seasons with 7.79 million viewers?", "context": "CREATE TABLE table_name_86 (episode_count VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT h___a FROM table_name_53 WHERE round = \"semi-final\"", "question": "Was the semi-final round held at home or away?", "context": "CREATE TABLE table_name_53 (h___a VARCHAR, round VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_33 WHERE round = \"final\"", "question": "Which opponent made it to the final round?", "context": "CREATE TABLE table_name_33 (opponents VARCHAR, round VARCHAR)"}, {"answer": "SELECT result_f___a FROM table_name_39 WHERE h___a = \"hurst\"", "question": "What was the result of the game played in hurst?", "context": "CREATE TABLE table_name_39 (result_f___a VARCHAR, h___a VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE h___a = \"whalley range\"", "question": "When did the game in whalley range take place?", "context": "CREATE TABLE table_name_87 (date VARCHAR, h___a VARCHAR)"}, {"answer": "SELECT MIN(erp_w) FROM table_name_58 WHERE frequency_mhz = 91.3", "question": "Which ERP W is the lowest one that has a Frequency MHz of 91.3?", "context": "CREATE TABLE table_name_58 (erp_w INTEGER, frequency_mhz VARCHAR)"}, {"answer": "SELECT class FROM table_name_76 WHERE frequency_mhz = 107.5", "question": "Which Class has a Frequency MHz of 107.5?", "context": "CREATE TABLE table_name_76 (class VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT MAX(frequency_mhz) FROM table_name_38 WHERE city_of_license = \"byron, ga\"", "question": "Which Frequency MHz is the highest one that has a City of license of byron, ga?", "context": "CREATE TABLE table_name_38 (frequency_mhz INTEGER, city_of_license VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_75 WHERE call_sign = \"wsja\"", "question": "Which FCC info has a Call sign of wsja?", "context": "CREATE TABLE table_name_75 (fcc_info VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT district FROM table_name_82 WHERE party = \"republican\" AND result = \"lost re-election democratic gain\"", "question": "Which District has a Party of republican and a Result of lost re-election democratic gain?", "context": "CREATE TABLE table_name_82 (district VARCHAR, party VARCHAR, result VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_61 WHERE party = \"republican\" AND result = \"retired democratic gain\"", "question": "What is First elected that has republican Party and a Result of retired democratic gain?", "context": "CREATE TABLE table_name_61 (first_elected VARCHAR, party VARCHAR, result VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_55 WHERE district = \"california 3\"", "question": "What is the First elected of california 3?", "context": "CREATE TABLE table_name_55 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_35 WHERE result = \"retired democratic gain\"", "question": "Which Incumbent has a Result of retired democratic gain?", "context": "CREATE TABLE table_name_35 (incumbent VARCHAR, result VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_15 WHERE incumbent = \"none (new seat)\"", "question": "Which First elected has a Incumbent of none (new seat)?", "context": "CREATE TABLE table_name_15 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_4 WHERE party = \"republican\" AND district = \"california 4\"", "question": "What is the First elected that has a republican party and california 4?", "context": "CREATE TABLE table_name_4 (first_elected VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_name_74 WHERE opponent = \"dundee\"", "question": "What was the result when Dundee was the opponent?", "context": "CREATE TABLE table_name_74 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT celebrity FROM table_name_94 WHERE entered = \"day 1\" AND exited = \"day 20\"", "question": "Who entered on day 1 and exited on day 20?", "context": "CREATE TABLE table_name_94 (celebrity VARCHAR, entered VARCHAR, exited VARCHAR)"}, {"answer": "SELECT exited FROM table_name_18 WHERE celebrity = \"lucy benjamin\"", "question": "When did lucy benjamin exit?", "context": "CREATE TABLE table_name_18 (exited VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT finished FROM table_name_84 WHERE celebrity = \"camilla dallerup\"", "question": "When did camilla dallerup finish?", "context": "CREATE TABLE table_name_84 (finished VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT entered FROM table_name_92 WHERE celebrity = \"kim woodburn\"", "question": "When did kim woodburn enter?", "context": "CREATE TABLE table_name_92 (entered VARCHAR, celebrity VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE record = \"37\u201326\u20139\"", "question": "What was the score of the game with a record of 37\u201326\u20139?", "context": "CREATE TABLE table_name_5 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE record = \"33\u201325\u20139\"", "question": "What was the score of the game with a record of 33\u201325\u20139?", "context": "CREATE TABLE table_name_13 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_45 WHERE loss = \"francis (4\u20139)\"", "question": "Loss of francis (4\u20139) has what highest attendance figure?", "context": "CREATE TABLE table_name_45 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_97 WHERE loss = \"de la rosa (8\u20138)\"", "question": "Loss of de la rosa (8\u20138) has what average attendance?", "context": "CREATE TABLE table_name_97 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE loss = \"francis (4\u201310)\"", "question": "Loss of francis (4\u201310) happened on what date?", "context": "CREATE TABLE table_name_71 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE date = \"8 september 1999\"", "question": "What was the score on 8 September 1999?", "context": "CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_34 WHERE date = \"16 november 2003\"", "question": "What was the result on 16 November 2003?", "context": "CREATE TABLE table_name_34 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_77 WHERE set_2 = \"26\u201324\"", "question": "Which Set 1 has a Set 2 of 26\u201324?", "context": "CREATE TABLE table_name_77 (set_1 VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_45 WHERE date = \"25 may\" AND set_3 = \"21\u201325\"", "question": "Which Set 2 has a Date of 25 may, and a Set 3 of 21\u201325?", "context": "CREATE TABLE table_name_45 (set_2 VARCHAR, date VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE set_3 = \"21\u201325\"", "question": "Which Date has a Set 3 of 21\u201325?", "context": "CREATE TABLE table_name_55 (date VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_37 WHERE date = \"24 may\" AND total = \"57\u201375\"", "question": "Which Set 1 has a Date of 24 may, and a Total of 57\u201375?", "context": "CREATE TABLE table_name_37 (set_1 VARCHAR, date VARCHAR, total VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_41 WHERE set_1 = \"25\u201315\" AND score = \"3\u20130\"", "question": "Which Set 2 has a Set 1 of 25\u201315, and a Score of 3\u20130?", "context": "CREATE TABLE table_name_41 (set_2 VARCHAR, set_1 VARCHAR, score VARCHAR)"}, {"answer": "SELECT total FROM table_name_12 WHERE set_1 = \"25\u201322\"", "question": "Which Total has a Set 1 of 25\u201322?", "context": "CREATE TABLE table_name_12 (total VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT segment_b FROM table_name_34 WHERE netflix = \"s01e21\"", "question": "What was the segment b for Netflix s01e21?", "context": "CREATE TABLE table_name_34 (segment_b VARCHAR, netflix VARCHAR)"}, {"answer": "SELECT segment_d FROM table_name_33 WHERE episode > 16 AND segment_c = \"laser eye surgery\"", "question": "What segment d is associated with an episode number above 16 and a segment c of laser eye surgery?", "context": "CREATE TABLE table_name_33 (segment_d VARCHAR, episode VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_67 WHERE gold > 21 AND bronze = 76 AND total < 291", "question": "What team had less than 291 total points whole having 76 bronze and over 21 gold?", "context": "CREATE TABLE table_name_67 (silver INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_26 WHERE total > 73 AND gold > 44 AND bronze > 76", "question": "What was the average rank for team with more than 44 gold, more and 76 bronze and a higher total than 73?", "context": "CREATE TABLE table_name_26 (rank INTEGER, bronze VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE record = \"61-66\"", "question": "On what date was the team's record 61-66?", "context": "CREATE TABLE table_name_28 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT time FROM table_name_81 WHERE opponent = \"white sox\" AND record = \"63-70\"", "question": "At what time was the game when they played the White Sox and had a record of 63-70?", "context": "CREATE TABLE table_name_81 (time VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT gold FROM table_name_28 WHERE bronze = 1", "question": "What shows for gold when bronze is 1?", "context": "CREATE TABLE table_name_28 (gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_40 WHERE total < 8 AND silver < 1 AND rank > 7", "question": "What is the gold number when the total is less than 8, silver less than 1 and the rank is more than 7?", "context": "CREATE TABLE table_name_40 (gold VARCHAR, rank VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_36 WHERE rank = 6 AND silver < 0", "question": "What is the average Total for the Rank of 6, when Silver is smaller than 0?", "context": "CREATE TABLE table_name_36 (total INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(team_wins) FROM table_name_60 WHERE individual_winners < 1 AND total_wins > 1", "question": "Which Team wins has an Individual winner smaller than 1 and Total win larger than 1?", "context": "CREATE TABLE table_name_60 (team_wins INTEGER, individual_winners VARCHAR, total_wins VARCHAR)"}, {"answer": "SELECT MAX(team_wins) FROM table_name_48 WHERE nation = \"sweden\" AND individual_wins < 1", "question": "Which Team Win is from sweden and has a Individual win smaller than 1", "context": "CREATE TABLE table_name_48 (team_wins INTEGER, nation VARCHAR, individual_wins VARCHAR)"}, {"answer": "SELECT original_channel FROM table_name_19 WHERE programme = \"going for gold\"", "question": "Which channel did Going for Gold air on?", "context": "CREATE TABLE table_name_19 (original_channel VARCHAR, programme VARCHAR)"}, {"answer": "SELECT new_channel_s_ FROM table_name_19 WHERE programme = \"gladiators\"", "question": "What channel is Gladiators on?", "context": "CREATE TABLE table_name_19 (new_channel_s_ VARCHAR, programme VARCHAR)"}, {"answer": "SELECT date_s__of_return FROM table_name_67 WHERE original_channel = \"bbc one\" AND programme = \"going for gold\"", "question": "When did Going for Gold return in BBC One?", "context": "CREATE TABLE table_name_67 (date_s__of_return VARCHAR, original_channel VARCHAR, programme VARCHAR)"}, {"answer": "SELECT faith FROM table_name_40 WHERE name = \"belswains\"", "question": "Which faith has a name of Belswains?", "context": "CREATE TABLE table_name_40 (faith VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_62 WHERE type = \"primary\" AND dcsf_number = 2045", "question": "Which school is a primary school with DCSF number 2045?", "context": "CREATE TABLE table_name_62 (name VARCHAR, type VARCHAR, dcsf_number VARCHAR)"}, {"answer": "SELECT position FROM table_name_96 WHERE round < 3 AND overall < 48", "question": "Which position had fewer rounds than 3, and an overall of less than 48?", "context": "CREATE TABLE table_name_96 (position VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_2 WHERE name = \"adam podlesh\" AND overall < 101", "question": "Which highest pick number's name was Adam Podlesh, when the overall was less than 101?", "context": "CREATE TABLE table_name_2 (pick__number INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_97 WHERE city = \"batesville\"", "question": "What is the IHSAA class in Batesville?", "context": "CREATE TABLE table_name_97 (ihsaa_class VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_84 WHERE ihsaa_football_class = \"aaa\" AND enrollment < 676 AND school = \"lawrenceburg\"", "question": "Which city is Lawrenceburg school, with an IHSAA football class of aaa and less than 676 enrollments, located in?", "context": "CREATE TABLE table_name_84 (city VARCHAR, school VARCHAR, ihsaa_football_class VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT school FROM table_name_34 WHERE city = \"brookville\"", "question": "What school is in Brookville?", "context": "CREATE TABLE table_name_34 (school VARCHAR, city VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE record = \"36\u201361\"", "question": "Which Score has a Record of 36\u201361?", "context": "CREATE TABLE table_name_29 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_63 WHERE record = \"34\u201351\"", "question": "Which Attendance has a Record of 34\u201351?", "context": "CREATE TABLE table_name_63 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_71 WHERE date = \"july 2\"", "question": "Which Loss has a Date of july 2?", "context": "CREATE TABLE table_name_71 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_4 WHERE 2001 = \"a\" AND 2008 = \"a\" AND 2010 = \"qf\"", "question": "Which tournament's 2001 and 2008 were a when 2010 was qf?", "context": "CREATE TABLE table_name_4 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_25 WHERE 2001 = \"a\" AND 2006 = \"a\"", "question": "Which tournament's 2001 and 2006s were a?", "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_60 WHERE 2009 = \"qf\" AND 2000 = \"a\"", "question": "Which 2007 had a 2009 taht was qf when its 2000 was a?", "context": "CREATE TABLE table_name_60 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_16 WHERE 1998 = \"a\" AND 2009 = \"sf\" AND 2006 = \"a\"", "question": "Which 2008 had a 1998 and 2006 that were a when 2009 was sf?", "context": "CREATE TABLE table_name_16 (Id VARCHAR)"}, {"answer": "SELECT AVG(floors) FROM table_name_10 WHERE name = \"citic square\"", "question": "What is the number of floors for the Citic Square?", "context": "CREATE TABLE table_name_10 (floors INTEGER, name VARCHAR)"}, {"answer": "SELECT height_m___ft FROM table_name_26 WHERE name = \"shanghai world plaza\"", "question": "What is the height for the Shanghai World Plaza?", "context": "CREATE TABLE table_name_26 (height_m___ft VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_76 WHERE attendance < 51 OFFSET 423", "question": "What week had a lower attendance than 51,423 but was still higher than the other weeks?", "context": "CREATE TABLE table_name_76 (week INTEGER, attendance INTEGER)"}, {"answer": "SELECT MAX(vertices) FROM table_name_28 WHERE dual_archimedean_solid = \"truncated dodecahedron\"", "question": "Which Vertices have a Dual Archimedean solid of truncated dodecahedron?", "context": "CREATE TABLE table_name_28 (vertices INTEGER, dual_archimedean_solid VARCHAR)"}, {"answer": "SELECT MIN(edges) FROM table_name_29 WHERE dual_archimedean_solid = \"truncated icosidodecahedron\" AND vertices > 62", "question": "Which Edges have a Dual Archimedean solid of truncated icosidodecahedron, and Vertices larger than 62?", "context": "CREATE TABLE table_name_29 (edges INTEGER, dual_archimedean_solid VARCHAR, vertices VARCHAR)"}, {"answer": "SELECT AVG(faces) FROM table_name_39 WHERE dual_archimedean_solid = \"truncated icosahedron\" AND vertices > 32", "question": "Which Faces have a Dual Archimedean solid of truncated icosahedron, and Vertices larger than 32?", "context": "CREATE TABLE table_name_39 (faces INTEGER, dual_archimedean_solid VARCHAR, vertices VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_70 WHERE set_3 = \"20\u201325\"", "question": "Which Set 2 has a Set 3 of 20\u201325?", "context": "CREATE TABLE table_name_70 (set_2 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT total FROM table_name_26 WHERE set_2 = \"20\u201325\" AND score = \"1\u20133\"", "question": "Which Total has a Set 2 of 20\u201325, and a Score of 1\u20133?", "context": "CREATE TABLE table_name_26 (total VARCHAR, set_2 VARCHAR, score VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_86 WHERE score = \"3\u20132\" AND set_2 = \"25\u201323\" AND time = \"19:00\"", "question": "Which Set 3 has a Score of 3\u20132, and a Set 2 of 25\u201323, and a Time of 19:00?", "context": "CREATE TABLE table_name_86 (set_3 VARCHAR, time VARCHAR, score VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT total FROM table_name_9 WHERE score = \"1\u20133\" AND set_1 = \"29\u201331\"", "question": "Which Total has a Score of 1\u20133, and a Set 1 of 29\u201331?", "context": "CREATE TABLE table_name_9 (total VARCHAR, score VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE time = \"11:00\" AND set_3 = \"25\u201318\"", "question": "Which Date has a Time of 11:00, and a Set 3 of 25\u201318?", "context": "CREATE TABLE table_name_62 (date VARCHAR, time VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT total FROM table_name_53 WHERE set_3 = \"13\u201325\"", "question": "Which Total has a Set 3 of 13\u201325?", "context": "CREATE TABLE table_name_53 (total VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT result FROM table_name_98 WHERE category = \"best musical revival\"", "question": "What was the result for the best musical revival category?", "context": "CREATE TABLE table_name_98 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT area_served FROM table_name_46 WHERE on_air_id = \"abc canberra\"", "question": "Name the area served for on-air ID of abc canberra", "context": "CREATE TABLE table_name_46 (area_served VARCHAR, on_air_id VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_18 WHERE on_air_id = \"1way fm\"", "question": "Name the frequency with on-air ID of 1way fm", "context": "CREATE TABLE table_name_18 (frequency VARCHAR, on_air_id VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_13 WHERE on_air_id = \"2xx\"", "question": "Name the purpose for on-air ID of 2xx", "context": "CREATE TABLE table_name_13 (purpose VARCHAR, on_air_id VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_79 WHERE purpose = \"community\" AND callsign = \"1vfm\"", "question": "Name the frequency for community purpose and callsign of 1vfm", "context": "CREATE TABLE table_name_79 (frequency VARCHAR, purpose VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT band FROM table_name_88 WHERE frequency = \"102.3\"", "question": "Name the band with frequency of 102.3", "context": "CREATE TABLE table_name_88 (band VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT loss FROM table_name_4 WHERE opponent = \"la new bears\" AND save = \"mac suzuki\"", "question": "What was the loss of the game against with LA New Bears with a save of Mac Suzuki?", "context": "CREATE TABLE table_name_4 (loss VARCHAR, opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE save = \"||3,073\"", "question": "What was the date of the game with a save of ||3,073?", "context": "CREATE TABLE table_name_74 (date VARCHAR, save VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_41 WHERE tournament = \"french open\"", "question": "Which 2004 has a Tournament of french open?", "context": "CREATE TABLE table_name_41 (tournament VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_99 WHERE 2013 = \"1r\" AND 2007 = \"2r\"", "question": "Which 2003 has a 2013 of 1r, and a 2007 of 2r?", "context": "CREATE TABLE table_name_99 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_32 WHERE tournament = \"grand slam sr\"", "question": "Which 2007 has a Tournament of grand slam sr?", "context": "CREATE TABLE table_name_32 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_54 WHERE career_win_loss = \"25\u201340\"", "question": "Which 2008 has a Career Win-Loss of 25\u201340?", "context": "CREATE TABLE table_name_54 (career_win_loss VARCHAR)"}, {"answer": "SELECT career_win_loss FROM table_name_76 WHERE 2001 = \"1\u20131\"", "question": "Which Career Win-Loss has a 2001 of 1\u20131?", "context": "CREATE TABLE table_name_76 (career_win_loss VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_75 WHERE 2007 = \"1r\" AND 2008 = \"1r\" AND 2013 = \"2r\"", "question": "Which 2012 has a 2007 of 1r, and a 2008 of 1r, and a 2013 of 2r?", "context": "CREATE TABLE table_name_75 (Id VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_11 WHERE round = 9 AND nationality = \"canada\"", "question": "What college or club did the round 9 draft pick from Canada come from?", "context": "CREATE TABLE table_name_11 (college_junior_club_team__league_ VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE round > 5 AND college_junior_club_team__league_ = \"dynamo-2 moscow (rus)\"", "question": "Who is the player who was from Dynamo-2 moscow (rus) and was picked after round 5?", "context": "CREATE TABLE table_name_43 (player VARCHAR, round VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_72 WHERE nationality = \"finland\"", "question": "What position does the draft pick from Finland play?", "context": "CREATE TABLE table_name_72 (position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_43 WHERE player = \"ian forbes\"", "question": "What is the lowest round number that Ian Forbes was picked in the draft?", "context": "CREATE TABLE table_name_43 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT coach FROM table_name_19 WHERE year = \"1953\"", "question": "Who was the coach in 1953?", "context": "CREATE TABLE table_name_19 (coach VARCHAR, year VARCHAR)"}, {"answer": "SELECT time FROM table_name_82 WHERE nfl_recap = \"recap\" AND game_site = \"arrowhead stadium\"", "question": "What is the Time of the game at Arrowhead Stadium with an NFL Recap of recap?", "context": "CREATE TABLE table_name_82 (time VARCHAR, nfl_recap VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE game_site = \"arrowhead stadium\"", "question": "What was the Opponent at Arrowhead Stadium?", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT result FROM table_name_88 WHERE week > 4 AND time = \"5:15 p.m.\" AND record = \"4\u20137\"", "question": "What was the Result of the game after Week 4 with a Time of 5:15 p.m. and a Record of 4\u20137?", "context": "CREATE TABLE table_name_88 (result VARCHAR, record VARCHAR, week VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(november) FROM table_name_80 WHERE record = \"11-7-3\" AND game > 21", "question": "When in November were they 11-7-3 with over 21 games?", "context": "CREATE TABLE table_name_80 (november INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT school FROM table_name_54 WHERE team_name = \"trojans\"", "question": "What school had a team name of the Trojans?", "context": "CREATE TABLE table_name_54 (school VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE site = \"michigan stadium \u2022 ann arbor, mi\"", "question": "What date was the Site michigan stadium \u2022 ann arbor, mi?", "context": "CREATE TABLE table_name_50 (date VARCHAR, site VARCHAR)"}, {"answer": "SELECT site FROM table_name_34 WHERE result = \"l7-33\"", "question": "What is the site of the game with a Result of l7-33?", "context": "CREATE TABLE table_name_34 (site VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_6 WHERE result = \"w48-0\"", "question": "What is the name of the Opponent when the Result was w48-0?", "context": "CREATE TABLE table_name_6 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE site = \"memorial stadium \u2022 minneapolis, mn\" AND opponent = \"northwestern\"", "question": "What is the Date at memorial stadium \u2022 minneapolis, mn, and an Opponent of northwestern?", "context": "CREATE TABLE table_name_45 (date VARCHAR, site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_63 WHERE date = \"10/11/1930\"", "question": "What is the Result of the game on 10/11/1930?", "context": "CREATE TABLE table_name_63 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_65 WHERE opponent = \"buffalo sabres\"", "question": "What is the total number of games played against the Buffalo Sabres?", "context": "CREATE TABLE table_name_65 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(april) FROM table_name_50 WHERE points = 95 AND record = \"41\u201325\u201310\u20133\" AND game < 79", "question": "Which April has Points of 95, and a Record of 41\u201325\u201310\u20133, and a Game smaller than 79?", "context": "CREATE TABLE table_name_50 (april INTEGER, game VARCHAR, points VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_49 WHERE score = \"1\u20133\" AND game > 82", "question": "How many Points have a Score of 1\u20133, and a Game larger than 82?", "context": "CREATE TABLE table_name_49 (points VARCHAR, score VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_14 WHERE points < 92", "question": "Which Game is the lowest one that has Points smaller than 92?", "context": "CREATE TABLE table_name_14 (game INTEGER, points INTEGER)"}, {"answer": "SELECT MAX(april) FROM table_name_4 WHERE score = \"2\u20134\" AND game < 76", "question": "Which April is the smallest one that has a Score of 2\u20134, and a Game smaller than 76?", "context": "CREATE TABLE table_name_4 (april INTEGER, score VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_88 WHERE difference = \"1\" AND drawn = 0", "question": "What is the high point total associated with a difference of 1 and 0 draws?", "context": "CREATE TABLE table_name_88 (points INTEGER, difference VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_83 WHERE difference = \"- 6\" AND lost = 3 AND drawn > 4", "question": "What position did the team finish in with a Difference of - 6, 3 losses, and over 4 draws?", "context": "CREATE TABLE table_name_83 (position VARCHAR, drawn VARCHAR, difference VARCHAR, lost VARCHAR)"}, {"answer": "SELECT round FROM table_name_56 WHERE scorers = \"di matteo\"", "question": "Which round has the scorer of Di Matteo?", "context": "CREATE TABLE table_name_56 (round VARCHAR, scorers VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_59 WHERE result = \"2-0\"", "question": "What is the lowest attendance of a game that has the result of 2-0?", "context": "CREATE TABLE table_name_59 (attendance INTEGER, result VARCHAR)"}, {"answer": "SELECT metric_value FROM table_name_4 WHERE unit = \"dolia\"", "question": "What Metric value has a Unit of dolia?", "context": "CREATE TABLE table_name_4 (metric_value VARCHAR, unit VARCHAR)"}, {"answer": "SELECT russian FROM table_name_60 WHERE ratio = \"40\"", "question": "What Russian has a Ratio of 40?", "context": "CREATE TABLE table_name_60 (russian VARCHAR, ratio VARCHAR)"}, {"answer": "SELECT avoirdupois_value FROM table_name_37 WHERE russian = \"\u0431\u0435\u0440\u043a\u043e\u0432\u0435\u0446\"", "question": "What Avoirdupois value has a Russian of \u0431\u0435\u0440\u043a\u043e\u0432\u0435\u0446?", "context": "CREATE TABLE table_name_37 (avoirdupois_value VARCHAR, russian VARCHAR)"}, {"answer": "SELECT russian FROM table_name_16 WHERE avoirdupois_value = \"0.686 gr\"", "question": "What Russian has an Avoirdupois value of 0.686 gr?", "context": "CREATE TABLE table_name_16 (russian VARCHAR, avoirdupois_value VARCHAR)"}, {"answer": "SELECT unit FROM table_name_55 WHERE ratio = \"1/32\"", "question": "What Unit has a Ratio of 1/32?", "context": "CREATE TABLE table_name_55 (unit VARCHAR, ratio VARCHAR)"}, {"answer": "SELECT ratio FROM table_name_57 WHERE unit = \"zolotnik\"", "question": "What Ratio has a Unit of zolotnik?", "context": "CREATE TABLE table_name_57 (ratio VARCHAR, unit VARCHAR)"}, {"answer": "SELECT player FROM table_name_21 WHERE position = \"wr\" AND school_club_team = \"new mexico\"", "question": "What player from New Mexico plays the WR position?", "context": "CREATE TABLE table_name_21 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT uni_number FROM table_name_22 WHERE bats = \"r\" AND surname = \"timms\"", "question": "What's the Uni# of Timms, who has bats of R?", "context": "CREATE TABLE table_name_22 (uni_number VARCHAR, bats VARCHAR, surname VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_37 WHERE game = 29", "question": "What team were the Opponent in Game 29?", "context": "CREATE TABLE table_name_37 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT first_contact_with_hitler FROM table_name_60 WHERE age_at_death = \"31\"", "question": "When did the woman who died at 31 first contact Hitlers?", "context": "CREATE TABLE table_name_60 (first_contact_with_hitler VARCHAR, age_at_death VARCHAR)"}, {"answer": "SELECT relationship FROM table_name_95 WHERE age_at_death = \"96\"", "question": "What is the relationship of the woman who died at 96?", "context": "CREATE TABLE table_name_95 (relationship VARCHAR, age_at_death VARCHAR)"}, {"answer": "SELECT life FROM table_name_93 WHERE name = \"stefanie rabatsch\"", "question": "What is the lifespan of Stefanie Rabatsch?", "context": "CREATE TABLE table_name_93 (life VARCHAR, name VARCHAR)"}, {"answer": "SELECT car__number FROM table_name_72 WHERE driver = \"brendan gaughan\"", "question": "What is Brendan Gaughan's Car #?", "context": "CREATE TABLE table_name_72 (car__number VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(car__number) FROM table_name_74 WHERE make = \"chevrolet\" AND driver = \"mike skinner\"", "question": "What is Mike Skinner's Chevrolet's Car #?", "context": "CREATE TABLE table_name_74 (car__number VARCHAR, make VARCHAR, driver VARCHAR)"}, {"answer": "SELECT pos FROM table_name_29 WHERE driver = \"brendan gaughan\"", "question": "What is Driver Brendan Gaughan's Pos?", "context": "CREATE TABLE table_name_29 (pos VARCHAR, driver VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_36 WHERE total > 1 AND 2010 = \"4th\"", "question": "What was the 2009 value for a total over 1 and 4th on 2010?", "context": "CREATE TABLE table_name_36 (total VARCHAR)"}, {"answer": "SELECT laps FROM table_name_76 WHERE time_retired = \"+16.445\"", "question": "What is the number of laps for the Time/Retired of +16.445?", "context": "CREATE TABLE table_name_76 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT laps FROM table_name_17 WHERE constructor = \"honda\" AND grid = \"13\"", "question": "What is the number of laps for the honda vehicle, with a grid of 13?", "context": "CREATE TABLE table_name_17 (laps VARCHAR, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_15 WHERE driver = \"timo glock\"", "question": "What is the name of the company that constructed the vehicle for Timo Glock?", "context": "CREATE TABLE table_name_15 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT grid FROM table_name_99 WHERE driver = \"rubens barrichello\"", "question": "What is the Grid for Rubens Barrichello?", "context": "CREATE TABLE table_name_99 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_80 WHERE constructor = \"bmw sauber\" AND driver = \"nick heidfeld\"", "question": "What is the Time/Retired for the BMW Sauber, and Nick Heidfeld?", "context": "CREATE TABLE table_name_80 (time_retired VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(april) FROM table_name_61 WHERE game > 83", "question": "What were the total number of games in April greater than 83?", "context": "CREATE TABLE table_name_61 (april VARCHAR, game INTEGER)"}, {"answer": "SELECT MIN(games) AS \u2191 FROM table_name_88 WHERE position = \"wlb\"", "question": "Which Games\u2191 is the lowest one that has a Position of wlb?", "context": "CREATE TABLE table_name_88 (games INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(games) AS \u2191 FROM table_name_88 WHERE number = 98", "question": "Which Games\u2191 is the lowest one that has a Number of 98?", "context": "CREATE TABLE table_name_88 (games INTEGER, number VARCHAR)"}, {"answer": "SELECT height FROM table_name_28 WHERE name = \"josh tabb\"", "question": "What is the height of Josh Tabb?", "context": "CREATE TABLE table_name_28 (height VARCHAR, name VARCHAR)"}, {"answer": "SELECT series_ep FROM table_name_22 WHERE segment_c = \"stetson hats (part 1)\"", "question": "What series episode has stetson hats (part 1) under segment C?", "context": "CREATE TABLE table_name_22 (series_ep VARCHAR, segment_c VARCHAR)"}, {"answer": "SELECT segment_c FROM table_name_22 WHERE segment_b = \"s cuckoo clock\"", "question": "What is under segment C when s cuckoo clock is under segment B?", "context": "CREATE TABLE table_name_22 (segment_c VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT segment_c FROM table_name_92 WHERE segment_b = \"s pineapple\"", "question": "When segment B is s pineapple, what is the segment C?", "context": "CREATE TABLE table_name_92 (segment_c VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT series_ep FROM table_name_80 WHERE segment_b = \"jukeboxes\"", "question": "What series episode has jukeboxes as segment B?", "context": "CREATE TABLE table_name_80 (series_ep VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_53 WHERE result = \"w 30-3\" AND attendance < 62 OFFSET 795", "question": "What week ended in a result of w 30-3, and had an attendance less than 62,795?", "context": "CREATE TABLE table_name_53 (week INTEGER, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT format FROM table_name_51 WHERE catalog = 61298 AND date = \"september 1984\"", "question": "Which Format has a Catalog of 61298, and a Date of september 1984?", "context": "CREATE TABLE table_name_51 (format VARCHAR, catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_11 WHERE catalog < 61298", "question": "Which Format has a Catalog smaller than 61298?", "context": "CREATE TABLE table_name_11 (format VARCHAR, catalog INTEGER)"}, {"answer": "SELECT score FROM table_name_85 WHERE points = 96", "question": "What was the score of the game with 96 points?", "context": "CREATE TABLE table_name_85 (score VARCHAR, points VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE record = \"34\u201317\u201311\u20132\"", "question": "What was the score of the game with a record of 34\u201317\u201311\u20132?", "context": "CREATE TABLE table_name_1 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_72 WHERE game_site = \"rich stadium\"", "question": "What was the record after the game at Rich Stadium?", "context": "CREATE TABLE table_name_72 (record VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT first_cap FROM table_name_27 WHERE caps = 74", "question": "When was the first cap associated with 74 caps?", "context": "CREATE TABLE table_name_27 (first_cap VARCHAR, caps VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_43 WHERE latest_cap = \"april 24, 2013\" AND caps > 97", "question": "How many goals are associated with over 97 caps and a Latest cap of april 24, 2013?", "context": "CREATE TABLE table_name_43 (goals INTEGER, latest_cap VARCHAR, caps VARCHAR)"}, {"answer": "SELECT first_cap FROM table_name_29 WHERE goals < 33 AND caps = 39", "question": "When was the first cap associated with 39 caps and under 33 goals?", "context": "CREATE TABLE table_name_29 (first_cap VARCHAR, goals VARCHAR, caps VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_33 WHERE caps = 39", "question": "What is the highest number of goals associated with 39 caps?", "context": "CREATE TABLE table_name_33 (goals INTEGER, caps VARCHAR)"}, {"answer": "SELECT COUNT(april) FROM table_name_98 WHERE record = \"42\u201322\u201312\u20133\" AND points < 99", "question": "How many days in April has a record of 42\u201322\u201312\u20133, and less than 99 points?", "context": "CREATE TABLE table_name_98 (april VARCHAR, record VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_78 WHERE game = 44 AND january > 15", "question": "Name the total number of points for 44 game and january more than 15", "context": "CREATE TABLE table_name_78 (points VARCHAR, game VARCHAR, january VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE result = \"7\u201320\"", "question": "Which Date had a Result of 7\u201320?", "context": "CREATE TABLE table_name_37 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE opponent = \"buffalo bills\"", "question": "Which Date had an Opponent of buffalo bills?", "context": "CREATE TABLE table_name_50 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT kickoff FROM table_name_5 WHERE game_site = \"bank of america stadium\"", "question": "Which Kickoff had a Game Site of bank of america stadium?", "context": "CREATE TABLE table_name_5 (kickoff VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT kickoff FROM table_name_12 WHERE game_site = \"fawcett stadium\"", "question": "Which Kickoff had a Game Site of fawcett stadium?", "context": "CREATE TABLE table_name_12 (kickoff VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT nfl_recap FROM table_name_16 WHERE kickoff = \"7:00pm edt\"", "question": "Which NFL Recap had a Kickoff of 7:00pm edt?", "context": "CREATE TABLE table_name_16 (nfl_recap VARCHAR, kickoff VARCHAR)"}, {"answer": "SELECT nfl_recap FROM table_name_1 WHERE record = \"1\u20133\"", "question": "Which NFL Recap had a Record of 1\u20133?", "context": "CREATE TABLE table_name_1 (nfl_recap VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_68 WHERE game = 50", "question": "What was the Record on Game 50?", "context": "CREATE TABLE table_name_68 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT player FROM table_name_78 WHERE round = 17", "question": "what player score is higher than 17", "context": "CREATE TABLE table_name_78 (player VARCHAR, round VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_33 WHERE attendance = \"17,015\"", "question": "Which opponent has an attendance of 17,015?", "context": "CREATE TABLE table_name_33 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(frequency_mhz) FROM table_name_65 WHERE call_sign = \"k241an\"", "question": "Which Frequency MHz is the highest one that has a Call sign of k241an?", "context": "CREATE TABLE table_name_65 (frequency_mhz INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT MAX(erp_w) FROM table_name_9 WHERE frequency_mhz > 88.3 AND city_of_license = \"lewis, kansas\"", "question": "Which ERP W is the highest one that has a Frequency MHz larger than 88.3, and a City of license of lewis, kansas?", "context": "CREATE TABLE table_name_9 (erp_w INTEGER, frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_35 WHERE erp_w < 222 AND call_sign = \"k297ai\"", "question": "Which FCC info has a ERP W smaller than 222, and a Call sign of k297ai?", "context": "CREATE TABLE table_name_35 (fcc_info VARCHAR, erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_68 WHERE call_sign = \"k241an\"", "question": "Which City of license has a Call sign of k241an?", "context": "CREATE TABLE table_name_68 (city_of_license VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT class FROM table_name_21 WHERE erp_w = 222", "question": "Which Class has an ERP W of 222?", "context": "CREATE TABLE table_name_21 (class VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE surface = \"clay\" AND year > 2006 AND opponent = \"david ferrer\"", "question": "What was the score on a clay surface in a year later than 2006 with David Ferrer as an opponent?", "context": "CREATE TABLE table_name_43 (score VARCHAR, opponent VARCHAR, surface VARCHAR, year VARCHAR)"}, {"answer": "SELECT championship FROM table_name_10 WHERE year > 2010 AND surface = \"grass\"", "question": "Which championship is in a year later than 2010 on a grass surface?", "context": "CREATE TABLE table_name_10 (championship VARCHAR, year VARCHAR, surface VARCHAR)"}, {"answer": "SELECT championship FROM table_name_36 WHERE opponent = \"roger federer\" AND surface = \"clay\" AND year < 2007", "question": "Which championship has Roger Federer as an opponent on a clay surface in a year earlier than 2007?", "context": "CREATE TABLE table_name_36 (championship VARCHAR, year VARCHAR, opponent VARCHAR, surface VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_84 WHERE date = \"december 16, 1962\"", "question": "What is the largest attendance that has December 16, 1962 as the date?", "context": "CREATE TABLE table_name_84 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_69 WHERE result = \"t 35-35\"", "question": "What is the largest week that has t 35-35 as the result?", "context": "CREATE TABLE table_name_69 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT COUNT(no_result) FROM table_name_16 WHERE losses > 1 AND played = 38 AND wins < 19", "question": "Name the total number of no result for losses more than 1 and played of 38 and wins less than 19", "context": "CREATE TABLE table_name_16 (no_result VARCHAR, wins VARCHAR, losses VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_14 WHERE wins > 19", "question": "Name the sum of played with wins more than 19", "context": "CREATE TABLE table_name_14 (played INTEGER, wins INTEGER)"}, {"answer": "SELECT COUNT(losses) FROM table_name_5 WHERE no_result < 0", "question": "Name the total number of losses with number result less than 0", "context": "CREATE TABLE table_name_5 (losses VARCHAR, no_result INTEGER)"}, {"answer": "SELECT rank FROM table_name_14 WHERE goals > 4 AND scorer = \"oh seok-jae\"", "question": "Which Rank has Goals larger than 4, and a Scorer of oh seok-jae?", "context": "CREATE TABLE table_name_14 (rank VARCHAR, goals VARCHAR, scorer VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_92 WHERE matches = \"16\" AND scorer = \"park sang-in\"", "question": "Which Goals is the lowest one that has Matches of 16, and a Scorer of park sang-in?", "context": "CREATE TABLE table_name_92 (goals INTEGER, matches VARCHAR, scorer VARCHAR)"}, {"answer": "SELECT club FROM table_name_69 WHERE rank = \"1\"", "question": "Which Club has a Rank of 1?", "context": "CREATE TABLE table_name_69 (club VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_78 WHERE club = \"hallelujah fc\" AND rank = \"7\"", "question": "Which Goals have a Club of hallelujah fc, and a Rank of 7?", "context": "CREATE TABLE table_name_78 (goals INTEGER, club VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(extra_points) FROM table_name_4 WHERE touchdowns > 2 AND field_goals > 0", "question": "How many Extra points have Touchdowns larger than 2, and Field goals larger than 0?", "context": "CREATE TABLE table_name_4 (extra_points VARCHAR, touchdowns VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT MAX(field_goals) FROM table_name_76 WHERE touchdowns = 0 AND points > 4", "question": "Which Field goals is the highest one that has Touchdowns of 0, and Points larger than 4?", "context": "CREATE TABLE table_name_76 (field_goals INTEGER, touchdowns VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_44 WHERE manufacturer = \"aprilia\" AND laps < 19 AND rider = \"sandro cortese\"", "question": "What is the grid number of Sandro Cortese, who has Aprilia as the manufacturer and less than 19 laps?", "context": "CREATE TABLE table_name_44 (grid INTEGER, rider VARCHAR, manufacturer VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_95 WHERE lost < 12 AND played > 20 AND Avg.points > 1.73", "question": "Which Rank has a Lost smaller than 12, and a Played larger than 20, and an Avg Points larger than 1.73?", "context": "CREATE TABLE table_name_95 (rank INTEGER, lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(drew) FROM table_name_55 WHERE rank = 5 AND played > 30", "question": "Which Drew has a Rank of 5, and a Played larger than 30?", "context": "CREATE TABLE table_name_55 (drew VARCHAR, rank VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_93 WHERE club = \"zulte waregem\" AND points > 22", "question": "Which Rank has a Club of zulte waregem, and Points larger than 22?", "context": "CREATE TABLE table_name_93 (rank VARCHAR, club VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_75 WHERE seasons = 2 AND goals_against > 43", "question": "Which Lost has Seasons of 2, and Goals against larger than 43?", "context": "CREATE TABLE table_name_75 (lost INTEGER, seasons VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT SUM(drew) FROM table_name_17 WHERE lost > 14", "question": "Which Drew has a Lost larger than 14?", "context": "CREATE TABLE table_name_17 (drew INTEGER, lost INTEGER)"}, {"answer": "SELECT record FROM table_name_48 WHERE week < 15 AND opponent = \"at new york jets\"", "question": "Which Record has a Week smaller than 15, and an Opponent of at new york jets?", "context": "CREATE TABLE table_name_48 (record VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE record = \"5\u20134\"", "question": "Which Result has a Record of 5\u20134?", "context": "CREATE TABLE table_name_14 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_25 WHERE time___et__ = \"1:00pm\" AND opponent = \"kansas city chiefs\"", "question": "Which Record has a Time (ET) of 1:00pm, and an Opponent of kansas city chiefs?", "context": "CREATE TABLE table_name_25 (record VARCHAR, time___et__ VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT hindi FROM table_name_78 WHERE domari = \"t\u00e6r\u0259n\"", "question": "What is the Hindi associated with a Domari of t\u00e6r\u0259n?", "context": "CREATE TABLE table_name_78 (hindi VARCHAR, domari VARCHAR)"}, {"answer": "SELECT lomavren FROM table_name_32 WHERE persian = \"se\"", "question": "What is the Lomavren associated with a Persian of se?", "context": "CREATE TABLE table_name_32 (lomavren VARCHAR, persian VARCHAR)"}, {"answer": "SELECT romani FROM table_name_44 WHERE domari = \"na\"", "question": "What is the Romani associated with a Domari of na?", "context": "CREATE TABLE table_name_44 (romani VARCHAR, domari VARCHAR)"}, {"answer": "SELECT domari FROM table_name_19 WHERE persian = \"yak, yek\"", "question": "What is the Domari associated with a Persian of yak, yek?", "context": "CREATE TABLE table_name_19 (domari VARCHAR, persian VARCHAR)"}, {"answer": "SELECT lomavren FROM table_name_68 WHERE hindi = \"s\u0101t\"", "question": "What is the Lomavren associated with a Hindi of s\u0101t?", "context": "CREATE TABLE table_name_68 (lomavren VARCHAR, hindi VARCHAR)"}, {"answer": "SELECT version FROM table_name_64 WHERE year < 2001 AND length = \"7:42\"", "question": "What is the Version before 2001 with a Length of 7:42?", "context": "CREATE TABLE table_name_64 (version VARCHAR, year VARCHAR, length VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_40 WHERE length = \"7:42\"", "question": "In what Year is the length of the Song 7:42?", "context": "CREATE TABLE table_name_40 (year INTEGER, length VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_48 WHERE position = \"right wing\" AND round < 3", "question": "Which College/Junior/Club Team (League) has a Position of right wing, and a Round smaller than 3?", "context": "CREATE TABLE table_name_48 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT orbital_regime FROM table_name_76 WHERE launches > 4 AND failures < 2", "question": "What is the orbital regime of launches greater than 4 and failures less than 2?", "context": "CREATE TABLE table_name_76 (orbital_regime VARCHAR, launches VARCHAR, failures VARCHAR)"}, {"answer": "SELECT SUM(accidentally_achieved) FROM table_name_19 WHERE orbital_regime = \"medium earth\" AND successes > 3", "question": "What is the total of medium earth orbital regime, accidentally achieved and successes greater than 3?", "context": "CREATE TABLE table_name_19 (accidentally_achieved INTEGER, orbital_regime VARCHAR, successes VARCHAR)"}, {"answer": "SELECT MAX(successes) FROM table_name_25 WHERE failures > 1 AND launches < 28", "question": "What is the greatest successes that have failures greater than 1 and launches less than 28?", "context": "CREATE TABLE table_name_25 (successes INTEGER, failures VARCHAR, launches VARCHAR)"}, {"answer": "SELECT SUM(failures) FROM table_name_33 WHERE orbital_regime = \"heliocentric orbit\" AND launches < 1", "question": "What is the total failures of heliocentric orbit orbital regimes and launches less than 1?", "context": "CREATE TABLE table_name_33 (failures INTEGER, orbital_regime VARCHAR, launches VARCHAR)"}, {"answer": "SELECT rank FROM table_name_20 WHERE player = \"tris speaker\" AND bb_so = 7", "question": "What was the rank of tris speaker when BB/SO was 7?", "context": "CREATE TABLE table_name_20 (rank VARCHAR, player VARCHAR, bb_so VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_97 WHERE team = \"cle\" AND bb_so = 10.89", "question": "What is the average rank for team cle when the BB/SO is 10.89?", "context": "CREATE TABLE table_name_97 (rank INTEGER, team VARCHAR, bb_so VARCHAR)"}, {"answer": "SELECT partner FROM table_name_23 WHERE surface = \"hard\" AND date = \"18 april 2011\"", "question": "What is the name of a partner that played on a hard surface on 18 April 2011?", "context": "CREATE TABLE table_name_23 (partner VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE date = \"2 july 2012\"", "question": "What was the score for the final played on 2 July 2012?", "context": "CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE date = \"february 18, 2008\"", "question": "What was the Score on February 18, 2008?", "context": "CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_61 WHERE surface = \"hard\" AND score = \"3\u20136, 6\u20133, [7\u201310]\"", "question": "What was the Opponent on the game played on a Hard Surface with a Score of 3\u20136, 6\u20133, [7\u201310]?", "context": "CREATE TABLE table_name_61 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_24 WHERE partner = \"david martin\" AND score = \"4\u20136, 6\u20137 (4-7)\"", "question": "On what Surface was the game with Partner David Martin played Scoring 4\u20136, 6\u20137 (4-7)?", "context": "CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_67 WHERE score = \"3\u20136, 4\u20136\"", "question": "What was the Outcome of the game with a Score of 3\u20136, 4\u20136?", "context": "CREATE TABLE table_name_67 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT partner FROM table_name_69 WHERE date = \"june 17, 2012\"", "question": "What was the Partner on June 17, 2012?", "context": "CREATE TABLE table_name_69 (partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_83 WHERE leading_scorer = \"glenn robinson (16)\"", "question": "What record has Glenn Robinson (16) as the leading scorer?", "context": "CREATE TABLE table_name_83 (record VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE score = \"136-134\"", "question": "What date has 136-134 as the score?", "context": "CREATE TABLE table_name_83 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_6 WHERE score = \"136-134\"", "question": "What home has 136-134 as the score?", "context": "CREATE TABLE table_name_6 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_77 WHERE bronze = \"china\"", "question": "What is the most recent year that China won a bronze?", "context": "CREATE TABLE table_name_77 (year INTEGER, bronze VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_1 WHERE location = \"guangzhou\"", "question": "What is the oldest year that the location was at Guangzhou?", "context": "CREATE TABLE table_name_1 (year INTEGER, location VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_7 WHERE location = \"beijing\"", "question": "For how many years was the location at Beijing?", "context": "CREATE TABLE table_name_7 (year INTEGER, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_56 WHERE year < 1994", "question": "What location is previous to 1994?", "context": "CREATE TABLE table_name_56 (location VARCHAR, year INTEGER)"}, {"answer": "SELECT college FROM table_name_20 WHERE pick__number < 98 AND round = \"round 4\"", "question": "What college(s) did the player(s) picked in round 4 with a pick number less than 98 play for?", "context": "CREATE TABLE table_name_20 (college VARCHAR, pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_31 WHERE round = \"round 8\"", "question": "What is the pick number for the player(s) drafted in round 8?", "context": "CREATE TABLE table_name_31 (pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_38 WHERE pick__number = 125", "question": "What position(s) did the player(s) with a pick number of 125 play?", "context": "CREATE TABLE table_name_38 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT AVG(extra_points) FROM table_name_7 WHERE player = \"james lawrence\" AND touchdowns < 1", "question": "What mean number of extra points was there when James Lawrence was a player and the touchdown number was less than 1?", "context": "CREATE TABLE table_name_7 (extra_points INTEGER, player VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_name_88 WHERE player = \"total\" AND field_goals > 0", "question": "What is the smallest amount of touchdowns when there is a total player and a number of field goals of more than 0?", "context": "CREATE TABLE table_name_88 (touchdowns INTEGER, player VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE results\u00b9 = \"4:0\"", "question": "On what Date were the Results\u00b9 4:0?", "context": "CREATE TABLE table_name_56 (date VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE results\u00b9 = \"5:1\"", "question": "On what Date were the Results\u00b9 5:1?", "context": "CREATE TABLE table_name_72 (date VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE results\u00b9 = \"4:0\"", "question": "On what Date were the Results\u00b9 4:0?", "context": "CREATE TABLE table_name_47 (date VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT knots_knots AS :_pseudoknot_prediction, _ FROM table_name_65 WHERE name = \"tfold\"", "question": "What is the pseudoknot prediction of the software named tfold?", "context": "CREATE TABLE table_name_65 (_ VARCHAR, knots_knots VARCHAR, name VARCHAR)"}, {"answer": "SELECT chilean FROM table_name_78 WHERE castilian = \"ordenador\"", "question": "What Chilean word is used for the Castilian word ordenador?", "context": "CREATE TABLE table_name_78 (chilean VARCHAR, castilian VARCHAR)"}, {"answer": "SELECT italian FROM table_name_59 WHERE mexican = \"frijol\"", "question": "What is the Italian word for the Mexican word frijol?", "context": "CREATE TABLE table_name_59 (italian VARCHAR, mexican VARCHAR)"}, {"answer": "SELECT castilian FROM table_name_95 WHERE italian = \"auto(mobile)\"", "question": "What word would a Castilian speaker use for the Italian word auto(mobile)?", "context": "CREATE TABLE table_name_95 (castilian VARCHAR, italian VARCHAR)"}, {"answer": "SELECT castilian FROM table_name_17 WHERE italian = \"auto(mobile)\"", "question": "What word would a Castilian speaker use for the Italian word auto(mobile)?", "context": "CREATE TABLE table_name_17 (castilian VARCHAR, italian VARCHAR)"}, {"answer": "SELECT italian FROM table_name_78 WHERE andalusian = \"coche\"", "question": "How would an Italian say the Andalusian word coche?", "context": "CREATE TABLE table_name_78 (italian VARCHAR, andalusian VARCHAR)"}, {"answer": "SELECT home FROM table_name_42 WHERE visitor = \"ny rangers\" AND series = \"flyers win 4\u20133\"", "question": "Which Home has a Visitor of ny rangers, and a Series of flyers win 4\u20133?", "context": "CREATE TABLE table_name_42 (home VARCHAR, visitor VARCHAR, series VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE series = \"flyers lead 3\u20132\"", "question": "Which Score has a Series of flyers lead 3\u20132?", "context": "CREATE TABLE table_name_17 (score VARCHAR, series VARCHAR)"}, {"answer": "SELECT decision FROM table_name_85 WHERE date = \"april 25\"", "question": "Which Decision has a Date of april 25?", "context": "CREATE TABLE table_name_85 (decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_95 WHERE date = \"april 30\"", "question": "Which Decision has a Date of april 30?", "context": "CREATE TABLE table_name_95 (decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_92 WHERE series = \"series tied 3\u20133\"", "question": "Which Home has a Series of series tied 3\u20133?", "context": "CREATE TABLE table_name_92 (home VARCHAR, series VARCHAR)"}, {"answer": "SELECT MIN(earnings___) AS $__ FROM table_name_91 WHERE events = 22 AND rank < 4", "question": "Events of 22, and a Rank smaller than 4 involved which of the lowest earnings ($)?", "context": "CREATE TABLE table_name_91 (earnings___ INTEGER, events VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(earnings___) AS $__ FROM table_name_72 WHERE player = \"corey pavin\" AND rank > 4", "question": "Player of corey pavin, and a Rank larger than 4 involved which highest earnings ($)?", "context": "CREATE TABLE table_name_72 (earnings___ INTEGER, player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_20 WHERE enrollment__2010_ < 980 AND school = \"heritage\"", "question": "What is the mascot with an enrollment (2010) less than 980, and heritage as the school?", "context": "CREATE TABLE table_name_20 (mascot VARCHAR, enrollment__2010_ VARCHAR, school VARCHAR)"}, {"answer": "SELECT class FROM table_name_9 WHERE weight = 242", "question": "What is the class of the player with a weight of 242 pounds?", "context": "CREATE TABLE table_name_9 (class VARCHAR, weight VARCHAR)"}, {"answer": "SELECT COUNT(games) AS \u2191 FROM table_name_18 WHERE position = \"fb\"", "question": "How many games were played by the player at FB?", "context": "CREATE TABLE table_name_18 (games VARCHAR, position VARCHAR)"}, {"answer": "SELECT name FROM table_name_50 WHERE round < 5 AND pick__number > 13", "question": "Which Name has a Round smaller than 5, and a Pick # larger than 13?", "context": "CREATE TABLE table_name_50 (name VARCHAR, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_6 WHERE round < 6 AND overall > 13 AND college = \"penn state\"", "question": "Which Pick # has a Round smaller than 6, and an Overall larger than 13, and a College of penn state?", "context": "CREATE TABLE table_name_6 (pick__number VARCHAR, college VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT name FROM table_name_78 WHERE overall = 235", "question": "Which Name has an Overall of 235?", "context": "CREATE TABLE table_name_78 (name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(_number_of_cosponsors) FROM table_name_15 WHERE date_introduced = \"may 22, 2008\"", "question": "How many cosponsors have a Date introduced of may 22, 2008?", "context": "CREATE TABLE table_name_15 (_number_of_cosponsors VARCHAR, date_introduced VARCHAR)"}, {"answer": "SELECT congress FROM table_name_51 WHERE _number_of_cosponsors = 19", "question": "Which Congress has a # of cosponsors of 19?", "context": "CREATE TABLE table_name_51 (congress VARCHAR, _number_of_cosponsors VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE competition = \"friendly match\" AND venue = \"auckland\"", "question": "On what date was a friendly match held at Auckland?", "context": "CREATE TABLE table_name_32 (date VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT goals FROM table_name_16 WHERE venue = \"sydney\"", "question": "What were the goals at Sydney?", "context": "CREATE TABLE table_name_16 (goals VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(sets_lost) FROM table_name_15 WHERE sets_won < 0", "question": "How many sets lost have a sets won less than 0?", "context": "CREATE TABLE table_name_15 (sets_lost VARCHAR, sets_won INTEGER)"}, {"answer": "SELECT iata FROM table_name_89 WHERE city = \"sapporo\"", "question": "What shows for IATA for the City of sapporo?", "context": "CREATE TABLE table_name_89 (iata VARCHAR, city VARCHAR)"}, {"answer": "SELECT icao FROM table_name_72 WHERE iata = \"cts\"", "question": "What is the ICAO when the IATA shows cts?", "context": "CREATE TABLE table_name_72 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT country FROM table_name_98 WHERE iata = \"cju\"", "question": "What is the Country when the IATA shows cju?", "context": "CREATE TABLE table_name_98 (country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT icao FROM table_name_2 WHERE iata = \"mfm\"", "question": "What is the ICAO when the IATA shows mfm?", "context": "CREATE TABLE table_name_2 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT icao FROM table_name_73 WHERE country = \"hong kong\"", "question": "What is the ICAO for Hong Kong?", "context": "CREATE TABLE table_name_73 (icao VARCHAR, country VARCHAR)"}, {"answer": "SELECT airport FROM table_name_56 WHERE icao = \"rpvm\"", "question": "What is the Airport when the ICAO shows rpvm?", "context": "CREATE TABLE table_name_56 (airport VARCHAR, icao VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_88 WHERE draw < 5 AND points < 70", "question": "What is the lowest goals for value with fewer than 5 draws and under 70 points?", "context": "CREATE TABLE table_name_88 (goals_for INTEGER, draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(goals_against) FROM table_name_31 WHERE points = 83 AND goal_difference > 50", "question": "What is the lowest goals against value for a team with 83 points and a difference over 50?", "context": "CREATE TABLE table_name_31 (goals_against INTEGER, points VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_80 WHERE position > 12", "question": "What is the earliest season that has a position over 12?", "context": "CREATE TABLE table_name_80 (season INTEGER, position INTEGER)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_49 WHERE position < 12 AND draw > 1 AND goals_against < 28", "question": "What is the average goals for with a position under 12, draws over 1, and goals against under 28?", "context": "CREATE TABLE table_name_49 (goals_for INTEGER, goals_against VARCHAR, position VARCHAR, draw VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_78 WHERE result = \"l 17\u201324\"", "question": "Who was the Opponent with a Result of l 17\u201324?", "context": "CREATE TABLE table_name_78 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE result = \"l 21\u201334\"", "question": "What Date has a Result of l 21\u201334?", "context": "CREATE TABLE table_name_31 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_85 WHERE week < 11 AND date = \"october 21, 1973\"", "question": "What Game Site has a Week smaller than 11, and a Date of october 21, 1973?", "context": "CREATE TABLE table_name_85 (game_site VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_46 WHERE record = \"2\u20139\"", "question": "What is the value of the lowest Week with a Record of 2\u20139?", "context": "CREATE TABLE table_name_46 (week INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_12 WHERE week > 13", "question": "Who is the opponent for the game that occurred after week 13?", "context": "CREATE TABLE table_name_12 (opponent VARCHAR, week INTEGER)"}, {"answer": "SELECT date FROM table_name_3 WHERE week = 6", "question": "What day did the play on week 6?", "context": "CREATE TABLE table_name_3 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_77 WHERE 2009 = \"1r\"", "question": "Which tournament had a 2009 result of 1R?", "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_64 WHERE 2012 = \"sf\" AND 2010 = \"qf\"", "question": "Which tournament had a 2010 result of QF and a 2012 result of SF?", "context": "CREATE TABLE table_name_64 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_49 WHERE 2012 = \"a\" AND 2010 = \"a\"", "question": "Which tournament had a result in 2010 and 2012 of a?", "context": "CREATE TABLE table_name_49 (tournament VARCHAR)"}, {"answer": "SELECT third FROM table_name_73 WHERE venue = \"rybinsk\" AND round = \"6\"", "question": "Who was third during round 6 in Rybinsk?", "context": "CREATE TABLE table_name_73 (third VARCHAR, venue VARCHAR, round VARCHAR)"}, {"answer": "SELECT third FROM table_name_43 WHERE round = \"14\"", "question": "Who was third in round 14?", "context": "CREATE TABLE table_name_43 (third VARCHAR, round VARCHAR)"}, {"answer": "SELECT venue FROM table_name_95 WHERE discipline = \"3.3km c prologue\"", "question": "What was the venue with a 3.3km c prologue discipline?", "context": "CREATE TABLE table_name_95 (venue VARCHAR, discipline VARCHAR)"}, {"answer": "SELECT winner FROM table_name_59 WHERE date = \"28 december 2007\"", "question": "Who was the winner on 28 December 2007?", "context": "CREATE TABLE table_name_59 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT third FROM table_name_32 WHERE discipline = \"0.8km f sprint\"", "question": "Who was third at the 0.8km f sprint discipline?", "context": "CREATE TABLE table_name_32 (third VARCHAR, discipline VARCHAR)"}, {"answer": "SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_18 WHERE code__iata_icao_ = \"bkk/vtbs\" AND rank > 19", "question": "What is the highest total cargo of an airport ranked larger than 19 with a code of BKK/VTBS?", "context": "CREATE TABLE table_name_18 (total_cargo__metric_tonnes_ INTEGER, code__iata_icao_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_60 WHERE code__iata_icao_ = \"bkk/vtbs\"", "question": "What is the rank of the airport with the BKK/VTBS code?", "context": "CREATE TABLE table_name_60 (rank VARCHAR, code__iata_icao_ VARCHAR)"}, {"answer": "SELECT MAX(matches_as_champion) FROM table_name_16 WHERE rank = 5", "question": "Which Matches has champion Rank of 5?", "context": "CREATE TABLE table_name_16 (matches_as_champion INTEGER, rank VARCHAR)"}, {"answer": "SELECT MAX(matches_as_champion) FROM table_name_6 WHERE title_last_held = \"24 march 1963\" AND rank > 44", "question": "Which Matches is on 24 march 1963 with a Rank larger than 44?", "context": "CREATE TABLE table_name_6 (matches_as_champion INTEGER, title_last_held VARCHAR, rank VARCHAR)"}, {"answer": "SELECT game FROM table_name_27 WHERE date = \"may 24\"", "question": "what game was on may 24", "context": "CREATE TABLE table_name_27 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_5 WHERE date = \"may 29\"", "question": "what game was on may 29", "context": "CREATE TABLE table_name_5 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_50 WHERE date = \"may 20\"", "question": "what team played on may 20 on the home side", "context": "CREATE TABLE table_name_50 (home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_24 WHERE game = \"game 2\"", "question": "what team played in game 2", "context": "CREATE TABLE table_name_24 (road_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(nicotine) FROM table_name_40 WHERE name = \"raison blue\"", "question": "Which Raison Blue has the highest nicotine?", "context": "CREATE TABLE table_name_40 (nicotine INTEGER, name VARCHAR)"}, {"answer": "SELECT MIN(quantity) FROM table_name_60 WHERE name = \"raison blue\" AND nicotine > 0.30000000000000004", "question": "For Raison Blue with a nicotine larger than 0.30000000000000004, what's the lowest quantity?", "context": "CREATE TABLE table_name_60 (quantity INTEGER, name VARCHAR, nicotine VARCHAR)"}, {"answer": "SELECT result FROM table_name_1 WHERE film_title = \"paljas\"", "question": "What was the result for the fil Paljas?", "context": "CREATE TABLE table_name_1 (result VARCHAR, film_title VARCHAR)"}, {"answer": "SELECT year FROM table_name_10 WHERE rank < 6 AND name = \"damac heights\"", "question": "In what year was the rank less than 6 for Damac Heights?", "context": "CREATE TABLE table_name_10 (year VARCHAR, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT height_m__ft_ FROM table_name_77 WHERE rank > 10 AND name = \"tameer tower\"", "question": "What is the height for rank greater than 10 in Tameer Tower?", "context": "CREATE TABLE table_name_77 (height_m__ft_ VARCHAR, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_65 WHERE rank = 20 AND floors < 60", "question": "What was the earliest year with rank 20 and less than 60 floors?", "context": "CREATE TABLE table_name_65 (year INTEGER, rank VARCHAR, floors VARCHAR)"}, {"answer": "SELECT MAX(floors) FROM table_name_96 WHERE rank > 1 AND name = \"conrad dubai\"", "question": "What is the highest floors with rank greater than 1 in Conrad Dubai?", "context": "CREATE TABLE table_name_96 (floors INTEGER, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_76 WHERE driver = \"satrio hermanto\"", "question": "How many Laps have a Driver of satrio hermanto?", "context": "CREATE TABLE table_name_76 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT time FROM table_name_59 WHERE grid = 19", "question": "Which Time has a Grid of 19?", "context": "CREATE TABLE table_name_59 (time VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_42 WHERE team = \"germany\" AND laps < 45", "question": "Which Grid is the lowest one that has a Team of germany, and Laps smaller than 45?", "context": "CREATE TABLE table_name_42 (grid INTEGER, team VARCHAR, laps VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_name_19 WHERE college = \"washington\"", "question": "WHich team draft the player who went to college in Washington?", "context": "CREATE TABLE table_name_19 (nfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_34 WHERE college = \"washington\"", "question": "What position did the palyer drafted out of Washington play?", "context": "CREATE TABLE table_name_34 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_82 WHERE bronze = 5", "question": "What is the average number of Gold medals when there are 5 bronze medals?", "context": "CREATE TABLE table_name_82 (gold INTEGER, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_46 WHERE rank > 9", "question": "What is the highest amount of bronze medals when the rank was larger than 9?", "context": "CREATE TABLE table_name_46 (bronze INTEGER, rank INTEGER)"}, {"answer": "SELECT MIN(bronze) FROM table_name_75 WHERE silver > 0 AND rank < 4 AND nation = \"jamaica\" AND total < 22", "question": "What is the leowest number of Bronze medals for Jamaica who ranked less than 4 and had more than 0 silver medals and a total of less than 22 medals?", "context": "CREATE TABLE table_name_75 (bronze INTEGER, total VARCHAR, nation VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(3 AS _balls), _2_ribbons FROM table_name_16 WHERE nation = \"bulgaria\" AND place > 1", "question": "Nation of bulgaria, and a Place larger than 1 had what highest 3 Balls, 2 Ribbons?", "context": "CREATE TABLE table_name_16 (_2_ribbons VARCHAR, nation VARCHAR, place VARCHAR)"}, {"answer": "SELECT SUM(5 AS _hoops) FROM table_name_83 WHERE place > 7 AND total > 38.525", "question": "5 Hoops that has a Place larger than 7, and a Total larger than 38.525 had what sum?", "context": "CREATE TABLE table_name_83 (place VARCHAR, total VARCHAR)"}, {"answer": "SELECT voice_actor__japanese_ FROM table_name_59 WHERE character_name = \"tien\"", "question": "what voice acter played tien", "context": "CREATE TABLE table_name_59 (voice_actor__japanese_ VARCHAR, character_name VARCHAR)"}, {"answer": "SELECT character_name FROM table_name_50 WHERE voice_actor__english_1998___pioneer_ = \"laara sadiq\"", "question": "what character did Laara sadiq play", "context": "CREATE TABLE table_name_50 (character_name VARCHAR, voice_actor__english_1998___pioneer_ VARCHAR)"}, {"answer": "SELECT character_name FROM table_name_76 WHERE voice_actor__japanese_ = \"masaharu satou\"", "question": "what character did Masaharu satou play", "context": "CREATE TABLE table_name_76 (character_name VARCHAR, voice_actor__japanese_ VARCHAR)"}, {"answer": "SELECT voice_actor__english_1998___pioneer_ FROM table_name_36 WHERE voice_actor__english_1997___saban_ = \"dave ward\"", "question": "what character did dave ward play", "context": "CREATE TABLE table_name_36 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__english_1997___saban_ VARCHAR)"}, {"answer": "SELECT character_name FROM table_name_82 WHERE voice_actor__japanese_ = \"naoko watanabe\"", "question": "what character did naoko watanabe play", "context": "CREATE TABLE table_name_82 (character_name VARCHAR, voice_actor__japanese_ VARCHAR)"}, {"answer": "SELECT location FROM table_name_51 WHERE year = 2009", "question": "At what Location was Miss World 2009?", "context": "CREATE TABLE table_name_51 (location VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE competition = \"1996 emarate cup\" AND date = \"march 25, 1996\"", "question": "What is the score of the 1996 Emarate cup on March 25, 1996?", "context": "CREATE TABLE table_name_79 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_42 WHERE date = \"august 11, 1996\"", "question": "Which competition was on August 11, 1996?", "context": "CREATE TABLE table_name_42 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_80 WHERE venue = \"dubai\"", "question": "Which competition was in Dubai?", "context": "CREATE TABLE table_name_80 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_75 WHERE venue = \"bangkok\"", "question": "What is the result of the match in Bangkok?", "context": "CREATE TABLE table_name_75 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE result = \"4-0\"", "question": "What is the date of the match with a result of 4-0?", "context": "CREATE TABLE table_name_44 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE result = \"4-0\"", "question": "What is the score of the match with a 4-0 result?", "context": "CREATE TABLE table_name_39 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT name FROM table_name_9 WHERE overall > 164 AND pick__number > 2 AND position = \"running back\" AND round = 16", "question": "Which name has an overall number of more than 164, when the pick number is more than 2, the position is running back, and the round is 16?", "context": "CREATE TABLE table_name_9 (name VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_name_90 WHERE round > 4 AND overall < 237 AND name = \"ted cottrell\"", "question": "Which college's round is more than 4, when the overall is less than 237 and Ted Cottrell was the name?", "context": "CREATE TABLE table_name_90 (college VARCHAR, name VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_7 WHERE college = \"oregon state\"", "question": "What is the smallest overall for Oregon State?", "context": "CREATE TABLE table_name_7 (overall INTEGER, college VARCHAR)"}, {"answer": "SELECT class FROM table_name_45 WHERE position = \"qb\" AND name = \"josh riddell\"", "question": "What is the class of the qb, Josh Riddell?", "context": "CREATE TABLE table_name_45 (class VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_45 WHERE name = \"jamar chaney\"", "question": "What position does Jamar Chaney play?", "context": "CREATE TABLE table_name_45 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_47 WHERE name = \"kyle love\"", "question": "What hometown is Kyle love from?", "context": "CREATE TABLE table_name_47 (hometown VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_59 WHERE home = \"philadelphia\" AND points < 23", "question": "Which Attendance has a Home of philadelphia, and Points smaller than 23?", "context": "CREATE TABLE table_name_59 (attendance INTEGER, home VARCHAR, points VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_71 WHERE record = \"9\u201312\u20135\"", "question": "Which Visitor has a Record of 9\u201312\u20135?", "context": "CREATE TABLE table_name_71 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE visitor = \"boston\"", "question": "Which Date has a Visitor of boston?", "context": "CREATE TABLE table_name_76 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE surface = \"grass\" AND opponent_in_the_final = \"nathan healey\"", "question": "What is the date for the grass surface final against Nathan Healey?", "context": "CREATE TABLE table_name_41 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE opponent_in_the_final = \"dane propoggia\"", "question": "What was the score of the final against Dane Propoggia?", "context": "CREATE TABLE table_name_72 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT total FROM table_name_85 WHERE e_score > 9.6 AND a_score = 6", "question": "What was the total score when the E score was larger than 9.6 and the A score was 6?", "context": "CREATE TABLE table_name_85 (total VARCHAR, e_score VARCHAR, a_score VARCHAR)"}, {"answer": "SELECT AVG(e_score) FROM table_name_69 WHERE t_score < 4", "question": "What was the average E score when the T score was less than 4?", "context": "CREATE TABLE table_name_69 (e_score INTEGER, t_score INTEGER)"}, {"answer": "SELECT AVG(t_score) FROM table_name_88 WHERE nation = \"spain\" AND e_score > 9.6", "question": "What was the average T score when the E score was larger than 9.6 and the team was from Spain?", "context": "CREATE TABLE table_name_88 (t_score INTEGER, nation VARCHAR, e_score VARCHAR)"}, {"answer": "SELECT COUNT(a_score) FROM table_name_63 WHERE nation = \"japan\" AND t_score > 4", "question": "What was the total number of A scores for Japan when the T score was more than 4?", "context": "CREATE TABLE table_name_63 (a_score VARCHAR, nation VARCHAR, t_score VARCHAR)"}, {"answer": "SELECT SUM(e_score) FROM table_name_7 WHERE total = 19.466", "question": "What was the sum of the E scores when the total score was 19.466?", "context": "CREATE TABLE table_name_7 (e_score INTEGER, total VARCHAR)"}, {"answer": "SELECT COUNT(e_score) FROM table_name_49 WHERE total = 19.7 AND a_score > 6", "question": "What is the total number of E scores when the total score was 19.7 and the A score was more than 6?", "context": "CREATE TABLE table_name_49 (e_score VARCHAR, total VARCHAR, a_score VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_39 WHERE points = 14 AND games < 7", "question": "What is the highest number of draws with 14 points and less than 7 games?", "context": "CREATE TABLE table_name_39 (drawn INTEGER, points VARCHAR, games VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_92 WHERE record = \"4-5\"", "question": "What was the attendance at the game with a record of 4-5?", "context": "CREATE TABLE table_name_92 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE week = 16", "question": "What was the date of the week 16 game?", "context": "CREATE TABLE table_name_79 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT record FROM table_name_10 WHERE week > 4 AND result = \"w 13-12\"", "question": "What was the record at the game with a result of W 13-12 after week 4?", "context": "CREATE TABLE table_name_10 (record VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_22 WHERE week < 17 AND attendance = \"62,019\"", "question": "Who was the opponent at the game attended by 62,019 before week 17?", "context": "CREATE TABLE table_name_22 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT surface FROM table_name_93 WHERE date = \"january 8, 2001\"", "question": "Name the surface for january 8, 2001", "context": "CREATE TABLE table_name_93 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_79 WHERE partnering = \"jordan kerr\" AND date = \"july 19, 2004\"", "question": "Name the outcome for jordan kerr july 19, 2004", "context": "CREATE TABLE table_name_79 (outcome VARCHAR, partnering VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE opponents_in_the_final = \"nathan healey igor kunitsyn\"", "question": "Name the score for opponents of nathan healey igor kunitsyn", "context": "CREATE TABLE table_name_57 (score VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_60 WHERE opponents_in_the_final = \"jonas bj\u00f6rkman john mcenroe\"", "question": "Name the outcome for opponents of jonas bj\u00f6rkman john mcenroe", "context": "CREATE TABLE table_name_60 (outcome VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_79 WHERE partnering = \"paul goldstein\" AND date = \"october 2, 2006\"", "question": "Name the surface for paul goldstein and date of october 2, 2006", "context": "CREATE TABLE table_name_79 (surface VARCHAR, partnering VARCHAR, date VARCHAR)"}, {"answer": "SELECT games FROM table_name_91 WHERE drawn < 1 AND lost < 1", "question": "Which Games have a Drawn smaller than 1, and a Lost smaller than 1?", "context": "CREATE TABLE table_name_91 (games VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_32 WHERE lost = 5 AND points > 4", "question": "Which Drawn is the lowest one that has a Lost of 5, and Points larger than 4?", "context": "CREATE TABLE table_name_32 (drawn INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT government FROM table_name_56 WHERE seats = 57", "question": "Which Government has 57 seats?", "context": "CREATE TABLE table_name_56 (government VARCHAR, seats VARCHAR)"}, {"answer": "SELECT COUNT(seats) FROM table_name_72 WHERE d\u00e1il = \"6th\"", "question": "How many seats does the 6th Dail have?", "context": "CREATE TABLE table_name_72 (seats VARCHAR, d\u00e1il VARCHAR)"}, {"answer": "SELECT d\u00e1il FROM table_name_55 WHERE seats = 61", "question": "What is the number of the dail with 61 seats?", "context": "CREATE TABLE table_name_55 (d\u00e1il VARCHAR, seats VARCHAR)"}, {"answer": "SELECT MIN(seats) FROM table_name_55 WHERE share_of_votes = \"27.0%\"", "question": "What is the lowest number of seats from the election with 27.0% of votes?", "context": "CREATE TABLE table_name_55 (seats INTEGER, share_of_votes VARCHAR)"}, {"answer": "SELECT share_of_votes FROM table_name_67 WHERE d\u00e1il = \"6th\"", "question": "What is the 6th dail share of votes?", "context": "CREATE TABLE table_name_67 (share_of_votes VARCHAR, d\u00e1il VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_48 WHERE record = \"1-3\"", "question": "What was the highest week when the record was 1-3?", "context": "CREATE TABLE table_name_48 (week INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_34 WHERE attendance = \"62,657\"", "question": "Who was the opponent at the game attended by 62,657?", "context": "CREATE TABLE table_name_34 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(year_built) FROM table_name_47 WHERE name = \"fay no. 4\"", "question": "What is the year built for the Fay No. 4?", "context": "CREATE TABLE table_name_47 (year_built INTEGER, name VARCHAR)"}, {"answer": "SELECT year_built FROM table_name_38 WHERE length = \"91'\"", "question": "Where the length is 91', what is the year built?", "context": "CREATE TABLE table_name_38 (year_built VARCHAR, length VARCHAR)"}, {"answer": "SELECT address FROM table_name_80 WHERE mascot = \"scorpions\"", "question": "What is the address for the Scorpions' mascot?", "context": "CREATE TABLE table_name_80 (address VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_7 WHERE principal__2013_2014_ = \"frank hendricsen\"", "question": "What was the mascot for the 2013-2014 principal named Frank Hendricsen?", "context": "CREATE TABLE table_name_7 (mascot VARCHAR, principal__2013_2014_ VARCHAR)"}, {"answer": "SELECT Assistant AS principal__2013_2014_ FROM table_name_97 WHERE principal__2013_2014_ = \"kat hughes\"", "question": "Who were the assistant and main principals of Kat Hughes?", "context": "CREATE TABLE table_name_97 (Assistant VARCHAR, principal__2013_2014_ VARCHAR)"}, {"answer": "SELECT address FROM table_name_44 WHERE mascot = \"coyotes\"", "question": "What is the address for the school that has the coyotes mascot?", "context": "CREATE TABLE table_name_44 (address VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE venue = \"jinan\"", "question": "What is the result of the game played at Jinan?", "context": "CREATE TABLE table_name_26 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE date = \"november 10, 2006\"", "question": "What is the score of the game on November 10, 2006?", "context": "CREATE TABLE table_name_17 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE venue = \"lahore\"", "question": "What is the date of the game held at Lahore?", "context": "CREATE TABLE table_name_87 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(entries) FROM table_name_55 WHERE season = \"2001\" AND front_row_starts < 13", "question": "What were the total number of entries in 2001 that had a front row smaller than 13?", "context": "CREATE TABLE table_name_55 (entries VARCHAR, season VARCHAR, front_row_starts VARCHAR)"}, {"answer": "SELECT MIN(entries) FROM table_name_87 WHERE front_row_starts < 15 AND driver = \"michael schumacher\"", "question": "What are the lowest entries for a front row smaller than 15 where Michael Schumacher was driving?", "context": "CREATE TABLE table_name_87 (entries INTEGER, front_row_starts VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(front_row_starts) FROM table_name_52 WHERE driver = \"alain prost\"", "question": "What was the highest front row starts for Alain Prost?", "context": "CREATE TABLE table_name_52 (front_row_starts INTEGER, driver VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_65 WHERE losses > 2 AND wins = 8 AND byes < 0", "question": "Which Against has Losses larger than 2, and Wins of 8, and Byes smaller than 0?", "context": "CREATE TABLE table_name_65 (against INTEGER, byes VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_23 WHERE wins > 14", "question": "Which Draws have Wins larger than 14?", "context": "CREATE TABLE table_name_23 (draws INTEGER, wins INTEGER)"}, {"answer": "SELECT COUNT(losses) FROM table_name_45 WHERE ntfa_div_2 = \"perth\" AND wins < 10", "question": "How many Losses have an NTFA Div 2 of perth, and Wins smaller than 10?", "context": "CREATE TABLE table_name_45 (losses VARCHAR, ntfa_div_2 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_80 WHERE against < 1647 AND ntfa_div_2 = \"fingal valley\" AND wins < 14", "question": "Which Byes have an Against smaller than 1647, and an NTFA Div 2 of fingal valley, and Wins smaller than 14?", "context": "CREATE TABLE table_name_80 (byes INTEGER, wins VARCHAR, against VARCHAR, ntfa_div_2 VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_83 WHERE time = \"+34.121\" AND laps > 10", "question": "How many grids were there races with more than 10 laps and a time of +34.121?", "context": "CREATE TABLE table_name_83 (grid VARCHAR, time VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_31 WHERE laps = 10 AND driver = \"jonathan summerton\"", "question": "What is the smallest grid number that had 10 laps listed with Jonathan Summerton as the driver?", "context": "CREATE TABLE table_name_31 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_29 WHERE laps < 10 AND team = \"china\"", "question": "What is the average grid number that had Team China with less than 10 laps?", "context": "CREATE TABLE table_name_29 (grid INTEGER, laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT creator FROM table_name_33 WHERE latest_stable_release = \"unknown\" AND name = \"myeclipse\"", "question": "Which Creator has the Latest stable release of unknown, and a Name of myeclipse?", "context": "CREATE TABLE table_name_33 (creator VARCHAR, latest_stable_release VARCHAR, name VARCHAR)"}, {"answer": "SELECT platform___os FROM table_name_97 WHERE name = \"altova umodel\"", "question": "Which Platform / OS has a Name of altova umodel?", "context": "CREATE TABLE table_name_97 (platform___os VARCHAR, name VARCHAR)"}, {"answer": "SELECT programming_language_used FROM table_name_52 WHERE first_public_release = \"1997\"", "question": "Which Programming language used has a First public release of 1997?", "context": "CREATE TABLE table_name_52 (programming_language_used VARCHAR, first_public_release VARCHAR)"}, {"answer": "SELECT first_public_release FROM table_name_25 WHERE name = \"rational software modeler\"", "question": "Which First public release has a Name of rational software modeler?", "context": "CREATE TABLE table_name_25 (first_public_release VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_62 WHERE position = \"guard\" AND college = \"rice\"", "question": "What is the College of Rice's highest overall for the guard position?", "context": "CREATE TABLE table_name_62 (overall INTEGER, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_80 WHERE pick__number < 16 AND name = \"tommy nobis\"", "question": "What is Tommy Nobis' position that has fewer than 16 picks?", "context": "CREATE TABLE table_name_80 (position VARCHAR, pick__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE opponent = \"vancouver canucks\"", "question": "What was the score when the Rangers were playing against the Vancouver Canucks?", "context": "CREATE TABLE table_name_99 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_34 WHERE january = 27", "question": "Who were the opponents on January 27?", "context": "CREATE TABLE table_name_34 (opponent VARCHAR, january VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_34 WHERE game < 47 AND record = \"24-13-4\"", "question": "Who was the opponent for game number less than 47 and a record of 24-13-4?", "context": "CREATE TABLE table_name_34 (opponent VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(january) FROM table_name_72 WHERE opponent = \"vancouver canucks\" AND game > 39", "question": "What is the average january number when the game number was higher than 39 and the opponent was the Vancouver Canucks?", "context": "CREATE TABLE table_name_72 (january INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_11 WHERE points_against = \"correct as of 08:50 10 may 2009\"", "question": "What is the Drawn number with a Points against of correct as of 08:50 10 may 2009?", "context": "CREATE TABLE table_name_11 (drawn VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_79 WHERE lost = \"12\" AND club = \"pontycymmer rfc\"", "question": "What is the Tries against when lost shows 12 for pontycymmer rfc?", "context": "CREATE TABLE table_name_79 (tries_against VARCHAR, lost VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_58 WHERE club = \"ystradgynlais rfc\"", "question": "What is the Points against for the ystradgynlais rfc club?", "context": "CREATE TABLE table_name_58 (points_against VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_11 WHERE points_against = \"405\"", "question": "What is the Club name what shows 405 for the Points against?", "context": "CREATE TABLE table_name_11 (club VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_37 WHERE points_against = \"451\"", "question": "What shows for Try bonus when the points against are 451?", "context": "CREATE TABLE table_name_37 (try_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT SUM(pos) FROM table_name_41 WHERE make = \"chevrolet\" AND driver = \"jack sprague\" AND car__number < 2", "question": "Which Pos has a Make of chevrolet, and a Driver of jack sprague, and a Car # smaller than 2?", "context": "CREATE TABLE table_name_41 (pos INTEGER, car__number VARCHAR, make VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(car__number) FROM table_name_93 WHERE driver = \"erik darnell\" AND pos < 2", "question": "How many Car numbers have a Driver of erik darnell, and a Pos smaller than 2?", "context": "CREATE TABLE table_name_93 (car__number VARCHAR, driver VARCHAR, pos VARCHAR)"}, {"answer": "SELECT SUM(pos) FROM table_name_72 WHERE car__number = 33", "question": "Which Pos has a Car # of 33?", "context": "CREATE TABLE table_name_72 (pos INTEGER, car__number VARCHAR)"}, {"answer": "SELECT MAX(pos) FROM table_name_64 WHERE team = \"circle bar racing\" AND car__number < 14", "question": "Which Pos has a Team of circle bar racing, and a Car # smaller than 14?", "context": "CREATE TABLE table_name_64 (pos INTEGER, team VARCHAR, car__number VARCHAR)"}, {"answer": "SELECT AVG(pos) FROM table_name_38 WHERE car__number > 2 AND team = \"billy ballew motorsports\"", "question": "Which Pos has a Car # larger than 2, and a Team of billy ballew motorsports?", "context": "CREATE TABLE table_name_38 (pos INTEGER, car__number VARCHAR, team VARCHAR)"}, {"answer": "SELECT rank FROM table_name_42 WHERE director_s_ = \"satoko okita\"", "question": "What Rank is the Director(s) of satoko okita?", "context": "CREATE TABLE table_name_42 (rank VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_21 WHERE film = \"hi no tsugi ha rekishi\"", "question": "What country is the film hi no tsugi ha rekishi from?", "context": "CREATE TABLE table_name_21 (country VARCHAR, film VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_21 WHERE prize = \"\u00a5300,000\" AND film = \"hanzubon no ojisan\"", "question": "Which Director(s) made the film hanzubon no ojisan and received a prize of \u00a5300,000?", "context": "CREATE TABLE table_name_21 (director_s_ VARCHAR, prize VARCHAR, film VARCHAR)"}, {"answer": "SELECT country FROM table_name_59 WHERE prize = \"\u00a5300,000\" AND director_s_ = \"kota nagaoka\"", "question": "Which country did the Director(s) of kota nagaoka come from and win \u00a5300,000?", "context": "CREATE TABLE table_name_59 (country VARCHAR, prize VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_42 WHERE prize = \"\u00a52,000,000\"", "question": "What Director won a prize of \u00a52,000,000?", "context": "CREATE TABLE table_name_42 (director_s_ VARCHAR, prize VARCHAR)"}, {"answer": "SELECT rank FROM table_name_95 WHERE director_s_ = \"maximilian jezo-parovsky\"", "question": "What Rank is the director of maximilian jezo-parovsky?", "context": "CREATE TABLE table_name_95 (rank VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_73 WHERE team = \"milwaukee\"", "question": "Who had the most high assists from Milwaukee?", "context": "CREATE TABLE table_name_73 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_28 WHERE date = \"december 13\"", "question": "Who scored the most point on December 13?", "context": "CREATE TABLE table_name_28 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_24 WHERE record = \"22-24\"", "question": "What's the Loss for the game that had a 22-24 record?", "context": "CREATE TABLE table_name_24 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE athlete = \"elvir krehmic\"", "question": "What was the date that Elvir Krehmic made a high jump record?", "context": "CREATE TABLE table_name_78 (date VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT spine FROM table_name_99 WHERE number_of_issues = 12", "question": "Which spine has 12 issues?", "context": "CREATE TABLE table_name_99 (spine VARCHAR, number_of_issues VARCHAR)"}, {"answer": "SELECT SUM(number_of_issues) FROM table_name_82 WHERE end_month = \"jan\u201372\"", "question": "How many issues end on jan\u201372?", "context": "CREATE TABLE table_name_82 (number_of_issues INTEGER, end_month VARCHAR)"}, {"answer": "SELECT masthead FROM table_name_15 WHERE end_month = \"oct\u201369\"", "question": "Which masthead ends on oct\u201369?", "context": "CREATE TABLE table_name_15 (masthead VARCHAR, end_month VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_51 WHERE date = \"may 2\"", "question": "What is the game number held on May 2?", "context": "CREATE TABLE table_name_51 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT season FROM table_name_33 WHERE postseason = \"promoted runner-up\"", "question": "Which Season has a Postseason of promoted runner-up?", "context": "CREATE TABLE table_name_33 (season VARCHAR, postseason VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_97 WHERE record = \"20-11\"", "question": "What is the attendance of the match with a record 20-11?", "context": "CREATE TABLE table_name_97 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE record = \"28-15\"", "question": "What is the date of the match with a 28-15 record?", "context": "CREATE TABLE table_name_24 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_79 WHERE date = \"april 16\"", "question": "Which opponent did they play against on April 16?", "context": "CREATE TABLE table_name_79 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_64 WHERE round > 2 AND state_territory = \"victoria\"", "question": "What circuit was after round 2 in Victoria?", "context": "CREATE TABLE table_name_64 (circuit VARCHAR, round VARCHAR, state_territory VARCHAR)"}, {"answer": "SELECT state_territory FROM table_name_8 WHERE winning_driver = \"jamie whincup\" AND round = 2", "question": "What is the state the winning driver Jamie Whincup from in round 2?", "context": "CREATE TABLE table_name_8 (state_territory VARCHAR, winning_driver VARCHAR, round VARCHAR)"}, {"answer": "SELECT october FROM table_name_11 WHERE opponent = \"toronto maple leafs\"", "question": "What date in October did the Flyers play against the Toronto Maple Leafs?", "context": "CREATE TABLE table_name_11 (october VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE points > 8", "question": "What was the score of the game that had more than 8 points?", "context": "CREATE TABLE table_name_17 (score VARCHAR, points INTEGER)"}, {"answer": "SELECT result FROM table_name_11 WHERE round = \"final\"", "question": "The round that had the final, what was the result?", "context": "CREATE TABLE table_name_11 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE opponent = \"andry laffita\"", "question": "Opponent of andry laffita had what score?", "context": "CREATE TABLE table_name_7 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_11 WHERE opponent = \"igor samoilenco\"", "question": "Opponent of igor samoilenco had what result?", "context": "CREATE TABLE table_name_11 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_14 WHERE score = \"33-22\"", "question": "Score of 33-22 had what round?", "context": "CREATE TABLE table_name_14 (round VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_75 WHERE round = \"first\"", "question": "Round of first had what opponent?", "context": "CREATE TABLE table_name_75 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT event FROM table_name_4 WHERE result = \"win\" AND score = \"33-22\"", "question": "Result of win, and a Score of 33-22 involved what event?", "context": "CREATE TABLE table_name_4 (event VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_99 WHERE game = 60", "question": "What were the lowest points of game 60?", "context": "CREATE TABLE table_name_99 (points INTEGER, game VARCHAR)"}, {"answer": "SELECT championship FROM table_name_81 WHERE opponent_in_the_final = \"francesca schiavone\"", "question": "What championship had Francesca Schiavone in the finals?", "context": "CREATE TABLE table_name_81 (championship VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(national_titles) FROM table_name_2 WHERE mascot = \"doane tigers\"", "question": "What is the total number of national titles for the team with doane tigers as the mascot?", "context": "CREATE TABLE table_name_2 (national_titles VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT year FROM table_name_63 WHERE crew = \"varsity 8+\" AND record = \"7-3\"", "question": "Which year's crew is varsity 8+ when the record is 7-3?", "context": "CREATE TABLE table_name_63 (year VARCHAR, crew VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(win__percentage) FROM table_name_78 WHERE coach = \"john gartin\" AND crew = \"varsity 8+\" AND year = \"2005\"", "question": "What is the total number of win % when John Gartin is coach, the crew is varsity 8+, and the year is 2005?", "context": "CREATE TABLE table_name_78 (win__percentage INTEGER, year VARCHAR, coach VARCHAR, crew VARCHAR)"}, {"answer": "SELECT MAX(win__percentage) FROM table_name_80 WHERE coach = \"john gartin\" AND record = \"11-0\" AND year = \"2009\"", "question": "What is the largest win percentage when John Gartin is coach, the record is 11-0, and the year is 2009?", "context": "CREATE TABLE table_name_80 (win__percentage INTEGER, year VARCHAR, coach VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(win__percentage) FROM table_name_74 WHERE year = \"2008\" AND crew = \"varsity 8+\"", "question": "What is the total of win percentages when the year is 2008 and the crew is varsity 8+?", "context": "CREATE TABLE table_name_74 (win__percentage INTEGER, year VARCHAR, crew VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_67 WHERE round > 6 AND position = \"tight end\"", "question": "What is the pick number for the tight end who was picked after round 6?", "context": "CREATE TABLE table_name_67 (pick VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_84 WHERE position = \"guard\" AND pick < 144", "question": "What is the lowest round for the player whose position is guard and had a pick number smaller than 144?", "context": "CREATE TABLE table_name_84 (round INTEGER, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_59 WHERE pick > 256 AND player = \"terry jones\"", "question": "What was the position of terry jones whose pick number was after 256?", "context": "CREATE TABLE table_name_59 (position VARCHAR, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT loss FROM table_name_85 WHERE record = \"30-32\"", "question": "Which Loss has a Record of 30-32?", "context": "CREATE TABLE table_name_85 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_45 WHERE record = \"37-38\"", "question": "Which Attendance is the highest one that has a Record of 37-38?", "context": "CREATE TABLE table_name_45 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE loss = \"buehrle (7-2)\"", "question": "Which Score has a Loss of buehrle (7-2)?", "context": "CREATE TABLE table_name_91 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_30 WHERE pick__number > 7 AND round > 4 AND name = \"glen howe\"", "question": "Which Overall is the average one that has a Pick # larger than 7, and a Round larger than 4, and a Name of glen howe?", "context": "CREATE TABLE table_name_30 (overall INTEGER, name VARCHAR, pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_97 WHERE pick__number > 10 AND position = \"tight end\" AND overall < 132", "question": "Which Round is the lowest one that has a Pick # larger than 10, and a Position of tight end, and an Overall smaller than 132?", "context": "CREATE TABLE table_name_97 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_85 WHERE overall = 32 AND pick__number < 4", "question": "Which Round is the highest one that has an Overall of 32, and a Pick # smaller than 4?", "context": "CREATE TABLE table_name_85 (round INTEGER, overall VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_4 WHERE round > 8 AND college = \"fresno state\"", "question": "How many Picks have a Round larger than 8, and a College of fresno state?", "context": "CREATE TABLE table_name_4 (pick__number VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_19 WHERE college = \"oklahoma\" AND pick__number < 4", "question": "Which Overall is the highest one that has a College of oklahoma, and a Pick # smaller than 4?", "context": "CREATE TABLE table_name_19 (overall INTEGER, college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT result FROM table_name_78 WHERE date = \"30 july 2004\"", "question": "What is the result of the match on 30 July 2004?", "context": "CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_60 WHERE date = \"3 march 2004\"", "question": "What is the result of the match on 3 March 2004?", "context": "CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE competition = \"friendly match\"", "question": "What is the score of the friendly match?", "context": "CREATE TABLE table_name_63 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_5 WHERE result = \"w 10-0\" AND attendance < 58 OFFSET 571", "question": "Which Week had a Result of w 10-0, and an Attendance smaller than 58,571?", "context": "CREATE TABLE table_name_5 (week VARCHAR, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_58 WHERE result = \"w 23-17\"", "question": "Which Week had a Result of w 23-17?", "context": "CREATE TABLE table_name_58 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_48 WHERE date = \"october 2, 1977\"", "question": "What was the Attendance on october 2, 1977?", "context": "CREATE TABLE table_name_48 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_99 WHERE bronze = 2 AND silver < 0", "question": "Bronze of 2, and a Silver smaller than 0 then what is the sum of the gold?", "context": "CREATE TABLE table_name_99 (gold INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_77 WHERE gold < 4 AND silver > 0 AND rank = \"3\" AND bronze < 6", "question": "Smaller than 4, and a Silver larger than 0, and a Rank of 3, and a Bronze smaller than 6 then what is the sum of the gold?", "context": "CREATE TABLE table_name_77 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_2 WHERE total > 3 AND rank = \"4\" AND silver > 0", "question": "Total larger than 3, and a Rank of 4, and a Silver larger than 0 has what average gold?", "context": "CREATE TABLE table_name_2 (gold INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_86 WHERE total < 10 AND gold > 1", "question": "Total smaller than 10, and a Gold larger than 1 then what is the lowest silver?", "context": "CREATE TABLE table_name_86 (silver INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE week = 9", "question": "What was the date of the week 9 game?", "context": "CREATE TABLE table_name_76 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT class FROM table_name_13 WHERE wins > 0 AND points = 42", "question": "What class has over 0 wins and 42 points?", "context": "CREATE TABLE table_name_13 (class VARCHAR, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_name_47 WHERE class = \"350cc\" AND points > 2 AND wins = 1", "question": "What team was the bike with a 350cc class, over 2 points, and 1 win?", "context": "CREATE TABLE table_name_47 (team VARCHAR, wins VARCHAR, class VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_22 WHERE wins > 0 AND points = 42", "question": "What is the earliest year associated with 0 wins and 42 points?", "context": "CREATE TABLE table_name_22 (year INTEGER, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_19 WHERE player = \"marcus walker\"", "question": "What Nationality has the Player of Marcus Walker?", "context": "CREATE TABLE table_name_19 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT season FROM table_name_82 WHERE player = \"jon stefansson\"", "question": "What Season is listed for the Player of Jon Stefansson?", "context": "CREATE TABLE table_name_82 (season VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_81 WHERE player = \"a.j. moye\"", "question": "Which Team has the Player of A.J. Moye?", "context": "CREATE TABLE table_name_81 (team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_8 WHERE team = \"kr\" AND player = \"marcus walker\"", "question": "What Position does the Team of KR and the Player of Marcus Walker have listed?", "context": "CREATE TABLE table_name_8 (position VARCHAR, team VARCHAR, player VARCHAR)"}, {"answer": "SELECT name FROM table_name_21 WHERE location = \"ljubljana\" AND year_proposed = \"2010\" AND floors = \"15\"", "question": "What building is in ljubljana, proposed in 2010, and has 15 floors?", "context": "CREATE TABLE table_name_21 (name VARCHAR, floors VARCHAR, location VARCHAR, year_proposed VARCHAR)"}, {"answer": "SELECT revenue_per_capita FROM table_name_2 WHERE state = \"vermont\"", "question": "What is the Revenue per capita for Vermont?", "context": "CREATE TABLE table_name_2 (revenue_per_capita VARCHAR, state VARCHAR)"}, {"answer": "SELECT state FROM table_name_67 WHERE net_contribution_per_capita = \"$-171\"", "question": "What state has a Net contribution per capita of $-171?", "context": "CREATE TABLE table_name_67 (state VARCHAR, net_contribution_per_capita VARCHAR)"}, {"answer": "SELECT pba_team FROM table_name_68 WHERE college = \"mlqu\"", "question": "Who is the PBA team with Mlqu college?", "context": "CREATE TABLE table_name_68 (pba_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_11 WHERE pba_team = \"barangay ginebra kings\"", "question": "Who is the player with the PBA team of Barangay Ginebra Kings?", "context": "CREATE TABLE table_name_11 (player VARCHAR, pba_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_60 WHERE date = \"april 28\"", "question": "Who was the opponent on April 28?", "context": "CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(highest_position) FROM table_name_14 WHERE issue_date < 9 AND album_title = \"where we belong\"", "question": "What is the highest position the album Where we belong, which had an issue date higher than 9, had?", "context": "CREATE TABLE table_name_14 (highest_position VARCHAR, issue_date VARCHAR, album_title VARCHAR)"}, {"answer": "SELECT COUNT(highest_position) FROM table_name_29 WHERE album_title = \"talk on corners\" AND issue_date > 1", "question": "What is the highest position Talk on Corners, which had an issue date greater than 1, had?", "context": "CREATE TABLE table_name_29 (highest_position VARCHAR, album_title VARCHAR, issue_date VARCHAR)"}, {"answer": "SELECT MAX(sales) FROM table_name_51 WHERE album_title = \"all saints\"", "question": "What is the highest sales All Saints had?", "context": "CREATE TABLE table_name_51 (sales INTEGER, album_title VARCHAR)"}, {"answer": "SELECT driver FROM table_name_26 WHERE car_model = \"commodore vs\"", "question": "Who is the Driver that has Car Model Commodore VS?", "context": "CREATE TABLE table_name_26 (driver VARCHAR, car_model VARCHAR)"}, {"answer": "SELECT car_model FROM table_name_35 WHERE manufacturer = \"saab\" AND driver = \"dean randle\"", "question": "What Car Model has the Manufacturer of Saab, and Driver Dean Randle?", "context": "CREATE TABLE table_name_35 (car_model VARCHAR, manufacturer VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_1 WHERE team = \"p & l mechanical services\"", "question": "Who is the Driver with the Team of P & L Mechanical Services?", "context": "CREATE TABLE table_name_1 (driver VARCHAR, team VARCHAR)"}, {"answer": "SELECT car_model FROM table_name_19 WHERE engine = \"ford 6.0 v8\"", "question": "What Car Model has the Engine of Ford 6.0 V8?", "context": "CREATE TABLE table_name_19 (car_model VARCHAR, engine VARCHAR)"}, {"answer": "SELECT team FROM table_name_51 WHERE engine = \"chevrolet 6.0 v8\" AND manufacturer = \"opel\" AND driver = \"chris jackson\"", "question": "What Team has the Engine of Chevrolet 6.0 V8, the Manufacturer of Opel, and the Driver Chris Jackson?", "context": "CREATE TABLE table_name_51 (team VARCHAR, driver VARCHAR, engine VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT segment_a FROM table_name_91 WHERE segment_d = \"diesel filters\"", "question": "What is the Segment A entry for the episode that has an entry of Diesel filters for Segment D?", "context": "CREATE TABLE table_name_91 (segment_a VARCHAR, segment_d VARCHAR)"}, {"answer": "SELECT series_ep FROM table_name_60 WHERE episode > 262 AND segment_a = \"aluminium s canoe\"", "question": "What is the series episode number that is larger than 262 and has a Segment A entry of Aluminium s canoe?", "context": "CREATE TABLE table_name_60 (series_ep VARCHAR, episode VARCHAR, segment_a VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_name_53 WHERE district = \"south carolina 2\"", "question": "Which First elected has a District of south carolina 2?", "context": "CREATE TABLE table_name_53 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_58 WHERE first_elected > 1884", "question": "Which Incumbent has a First elected larger than 1884?", "context": "CREATE TABLE table_name_58 (incumbent VARCHAR, first_elected INTEGER)"}, {"answer": "SELECT english_title FROM table_name_30 WHERE director = \"ang lee\"", "question": "What is the English title with a Director named ang lee?", "context": "CREATE TABLE table_name_30 (english_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_55 WHERE country = \"canada\"", "question": "What is the Original title with a Country that is canada?", "context": "CREATE TABLE table_name_55 (original_title VARCHAR, country VARCHAR)"}, {"answer": "SELECT architecture_and_modelling FROM table_name_5 WHERE unit_test = \"no\" AND projects_templates = \"limited\"", "question": "Which Architecture and modelling has a Unit test of no, and a Projects templates of limited?", "context": "CREATE TABLE table_name_5 (architecture_and_modelling VARCHAR, unit_test VARCHAR, projects_templates VARCHAR)"}, {"answer": "SELECT msdn_integration FROM table_name_16 WHERE load_testing = \"no\" AND test_impact_analysis = \"no\"", "question": "which MSDN integration has a Load testing of no, and a Test impact analysis of no?", "context": "CREATE TABLE table_name_16 (msdn_integration VARCHAR, load_testing VARCHAR, test_impact_analysis VARCHAR)"}, {"answer": "SELECT unit_test FROM table_name_76 WHERE msdn_integration = \"full\" AND projects_templates = \"yes\"", "question": "Which Unit test has a MSDN integration of full, and a Projects templates of yes?", "context": "CREATE TABLE table_name_76 (unit_test VARCHAR, msdn_integration VARCHAR, projects_templates VARCHAR)"}, {"answer": "SELECT intellitrace FROM table_name_10 WHERE extensions = \"no\" AND windows_phone_development = \"no\"", "question": "Which Intelli Trace has a No Extension and Windows Phone development of no?", "context": "CREATE TABLE table_name_10 (intellitrace VARCHAR, extensions VARCHAR, windows_phone_development VARCHAR)"}, {"answer": "SELECT projects_templates FROM table_name_39 WHERE intellitrace = \"no\" AND windows_phone_development = \"yes\" AND test_impact_analysis = \"no\"", "question": "Which Projects template has an IntelliTrace of no, and a Windows Phone development of yes, and a Test impact analysis of no?", "context": "CREATE TABLE table_name_39 (projects_templates VARCHAR, test_impact_analysis VARCHAR, intellitrace VARCHAR, windows_phone_development VARCHAR)"}, {"answer": "SELECT msdn_integration FROM table_name_12 WHERE intellitrace = \"yes\"", "question": "Which MSDN integration has a IntelliTrace of yes?", "context": "CREATE TABLE table_name_12 (msdn_integration VARCHAR, intellitrace VARCHAR)"}, {"answer": "SELECT years_of_operation FROM table_name_35 WHERE location = \"prospect 33 prospect ave\"", "question": "During what Years of Operation was the location prospect 33 prospect ave?", "context": "CREATE TABLE table_name_35 (years_of_operation VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_82 WHERE name = \"the ivy club\"", "question": "What is the location of the ivy club?", "context": "CREATE TABLE table_name_82 (location VARCHAR, name VARCHAR)"}, {"answer": "SELECT sign_in_bicker FROM table_name_27 WHERE location = \"wash50 on washington rd\"", "question": "What is the Sign-in/Bicker at wash50 on washington rd?", "context": "CREATE TABLE table_name_27 (sign_in_bicker VARCHAR, location VARCHAR)"}, {"answer": "SELECT year_clubhouse_constructed FROM table_name_3 WHERE sign_in_bicker = \"bicker\" AND name = \"cannon club\"", "question": "When was the Clubhouse built with a Sign-in/Bicker of bicker, and Named cannon club?", "context": "CREATE TABLE table_name_3 (year_clubhouse_constructed VARCHAR, sign_in_bicker VARCHAR, name VARCHAR)"}, {"answer": "SELECT sign_in_bicker FROM table_name_56 WHERE location = \"wash50 on washington rd\"", "question": "Which Sign-in/Bicker is at of wash50 on washington rd?", "context": "CREATE TABLE table_name_56 (sign_in_bicker VARCHAR, location VARCHAR)"}, {"answer": "SELECT historical_photos FROM table_name_46 WHERE location = \"prospect 43 prospect ave\"", "question": "Which Historical Photos were taken at prospect 43 prospect ave?", "context": "CREATE TABLE table_name_46 (historical_photos VARCHAR, location VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_26 WHERE team_1 = \"lyon\"", "question": "What is the 1st leg of team 1 Lyon?", "context": "CREATE TABLE table_name_26 (team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_24 WHERE team_1 = \"liverpool\"", "question": "What is the 1st leg of team 1 Liverpool?", "context": "CREATE TABLE table_name_24 (team_1 VARCHAR)"}, {"answer": "SELECT COUNT(events) FROM table_name_13 WHERE top_25 < 2", "question": "How many events resulted in a top-25 less than 2?", "context": "CREATE TABLE table_name_13 (events VARCHAR, top_25 INTEGER)"}, {"answer": "SELECT MIN(wins) FROM table_name_52 WHERE top_25 > 5 AND cuts_made > 38", "question": "What is the smallest number of wins for a top-25 value greater than 5 and more than 38 cuts?", "context": "CREATE TABLE table_name_52 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_29 WHERE nation = \"chinese taipei\" AND gold < 0", "question": "How many bronze medals did Chinese Taipei win with less than 0 gold?", "context": "CREATE TABLE table_name_29 (bronze VARCHAR, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_90 WHERE rank = 3 AND bronze > 0", "question": "How many silver medals had a rank of 3 with bronze larger than 0?", "context": "CREATE TABLE table_name_90 (silver VARCHAR, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_93 WHERE nation = \"china\"", "question": "How many silver medals does China have?", "context": "CREATE TABLE table_name_93 (silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_45 WHERE losses = 11 AND played > 22", "question": "Which Position has Losses of 11, and a Played larger than 22?", "context": "CREATE TABLE table_name_45 (position INTEGER, losses VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_89 WHERE scored < 24 AND conceded > 25 AND draws > 5 AND position < 9", "question": "How many Wins have a Scored smaller than 24, and a Conceded larger than 25, and Draws larger than 5, and a Position smaller than 9?", "context": "CREATE TABLE table_name_89 (wins VARCHAR, position VARCHAR, draws VARCHAR, scored VARCHAR, conceded VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_45 WHERE position = 8", "question": "How many Points has a Position of 8?", "context": "CREATE TABLE table_name_45 (points INTEGER, position VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_61 WHERE scored = 27 AND draws < 5", "question": "How many Wins has a Scored of 27 and Draws smaller than 5?", "context": "CREATE TABLE table_name_61 (wins VARCHAR, scored VARCHAR, draws VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_16 WHERE draws < 7 AND played > 22", "question": "Which Position has  Draws smaller than 7 and a Played larger than 22?", "context": "CREATE TABLE table_name_16 (position INTEGER, draws VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_85 WHERE scored > 25 AND position = 1 AND draws < 5", "question": "Which Played has a Scored larger than 25 and a Position of 1, and Draws smaller than 5?", "context": "CREATE TABLE table_name_85 (played INTEGER, draws VARCHAR, scored VARCHAR, position VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_4 WHERE caps = 51 AND club_province = \"clermont\"", "question": "When was the player with 51 caps from a Club/province of clermont born?", "context": "CREATE TABLE table_name_4 (date_of_birth__age_ VARCHAR, caps VARCHAR, club_province VARCHAR)"}, {"answer": "SELECT COUNT(episode_count) FROM table_name_13 WHERE actor = \"liz carr\"", "question": "How many Episode Counts have an Actor of liz carr?", "context": "CREATE TABLE table_name_13 (episode_count VARCHAR, actor VARCHAR)"}, {"answer": "SELECT years FROM table_name_54 WHERE character = \"dr trevor stewart\"", "question": "Which Years have a Character of dr trevor stewart?", "context": "CREATE TABLE table_name_54 (years VARCHAR, character VARCHAR)"}, {"answer": "SELECT series FROM table_name_92 WHERE actor = \"tom ward\"", "question": "Which Series has an Actor of tom ward?", "context": "CREATE TABLE table_name_92 (series VARCHAR, actor VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_59 WHERE player = \"joe germanese\"", "question": "How many picks involved the player Joe Germanese?", "context": "CREATE TABLE table_name_59 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE pick__number = 25", "question": "Which player's pick number was 25?", "context": "CREATE TABLE table_name_79 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT home FROM table_name_3 WHERE visitor = \"montreal canadiens\" AND record = \"0-3\"", "question": "What team did the Montreal Canadiens visit when the record was 0-3?", "context": "CREATE TABLE table_name_3 (home VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE date = \"april 23\"", "question": "What was the score on April 23?", "context": "CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_92 WHERE visitor = \"chicago black hawks\" AND date = \"april 20\"", "question": "What team did the Chicago Black Hawks visit on April 20?", "context": "CREATE TABLE table_name_92 (home VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_94 WHERE drawn > 0 AND lost = 1", "question": "How many Games have a Drawn larger than 0, and a Lost of 1?", "context": "CREATE TABLE table_name_94 (games VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_38 WHERE drawn > 0 AND lost > 1", "question": "Which Points have a Drawn larger than 0, and a Lost larger than 1?", "context": "CREATE TABLE table_name_38 (points INTEGER, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_98 WHERE lost > 0 AND points < 11 AND games < 7", "question": "Which Drawn has a Lost larger than 0, and Points smaller than 11, and Games smaller than 7?", "context": "CREATE TABLE table_name_98 (drawn INTEGER, games VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(percentage) FROM table_name_20 WHERE party = \"liberal\" AND percent_of_seats < 25", "question": "What is the percentage of the liberal party with less than 25 percent of seats?", "context": "CREATE TABLE table_name_20 (percentage VARCHAR, party VARCHAR, percent_of_seats VARCHAR)"}, {"answer": "SELECT party FROM table_name_94 WHERE seats_won < 21 AND percent_of_seats = 0 AND votes_cast = 69757", "question": "Which party won less than 21 seats, has 0 percent of seats, and 69757 votes cast?", "context": "CREATE TABLE table_name_94 (party VARCHAR, votes_cast VARCHAR, seats_won VARCHAR, percent_of_seats VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE game = 2", "question": "Can you tell me the Date that has the Game of 2?", "context": "CREATE TABLE table_name_51 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_78 WHERE date = \"july 8\" AND score = \"8-12\"", "question": "When the date is July 8, and the score is 8-12, who is the opponent?", "context": "CREATE TABLE table_name_78 (opponent VARCHAR, date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE loss = \"johnson (4-12)\"", "question": "When the Loss is Johnson (4-12), what is the date?", "context": "CREATE TABLE table_name_9 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE loss = \"farrell (6-13)\"", "question": "What date is associated with the Loss of Farrell (6-13)?", "context": "CREATE TABLE table_name_20 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_55 WHERE score = \"0-3\"", "question": "Which opponent has the score of 0-3?", "context": "CREATE TABLE table_name_55 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_97 WHERE nation = \"kyrgyzstan\" AND silver < 0", "question": "What is the Total of kyrgyzstan with a Silver smaller than 0?", "context": "CREATE TABLE table_name_97 (total INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_96 WHERE nation = \"total\" AND gold < 16", "question": "What is the Total that has a number of Nation and a Gold smaller than 16?", "context": "CREATE TABLE table_name_96 (total INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT rank FROM table_name_95 WHERE silver > 1 AND total > 13", "question": "Which Rank has a Silver larger than 1 and a Total larger than 13?", "context": "CREATE TABLE table_name_95 (rank VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_2 WHERE rank = \"2\"", "question": "How many Silvers that have a Rank of 2?", "context": "CREATE TABLE table_name_2 (silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT previous_conference FROM table_name_93 WHERE year_joined = 2000 AND mascot = \"millers\"", "question": "What was the previous conference for the school that joined in 2000 with a millers mascot?", "context": "CREATE TABLE table_name_93 (previous_conference VARCHAR, year_joined VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT college FROM table_name_85 WHERE round > 3 AND player = \"gillis wilson\"", "question": "What is the name of the college that is from a round greater than 3 with Gillis Wilson playing?", "context": "CREATE TABLE table_name_85 (college VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_46 WHERE college = \"auburn\"", "question": "What is average round of Auburn College?", "context": "CREATE TABLE table_name_46 (round INTEGER, college VARCHAR)"}, {"answer": "SELECT MIN(top_10) FROM table_name_86 WHERE winnings = \"$405,300\" AND avg_start < 30", "question": "Which Top 10 is the lowest one that has Winnings of $405,300, and an Avg Start smaller than 30?", "context": "CREATE TABLE table_name_86 (top_10 INTEGER, winnings VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_57 WHERE top_5 < 0", "question": "How many Wins have a Top 5 smaller than 0?", "context": "CREATE TABLE table_name_57 (wins INTEGER, top_5 INTEGER)"}, {"answer": "SELECT AVG(top_10) FROM table_name_15 WHERE top_5 > 1 AND year = 2003 AND poles > 0", "question": "Which Top 10 has a Top 5 larger than 1, and a Year of 2003, and Poles larger than 0?", "context": "CREATE TABLE table_name_15 (top_10 INTEGER, poles VARCHAR, top_5 VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(top_10) FROM table_name_35 WHERE wins > 0 AND poles > 0", "question": "How many Top 10s have Wins larger than 0, and Poles larger than 0?", "context": "CREATE TABLE table_name_35 (top_10 VARCHAR, wins VARCHAR, poles VARCHAR)"}, {"answer": "SELECT COUNT(established) FROM table_name_58 WHERE league = \"ontario provincial junior a hockey\" AND championships > 1", "question": "What is the Established date of the Ontario Provincial Junior A Hockey League with more than 1 Championship?", "context": "CREATE TABLE table_name_58 (established VARCHAR, league VARCHAR, championships VARCHAR)"}, {"answer": "SELECT venue FROM table_name_4 WHERE championships = 1 AND established > 1957", "question": "What Venue has more than 1 Championship and was Established after 1957?", "context": "CREATE TABLE table_name_4 (venue VARCHAR, championships VARCHAR, established VARCHAR)"}, {"answer": "SELECT SUM(established) FROM table_name_40 WHERE championships < 1 AND league = \"niagara rugby union\"", "question": "With less than 1 Championship, what es the Established date of the Niagara Rugby Union League?", "context": "CREATE TABLE table_name_40 (established INTEGER, championships VARCHAR, league VARCHAR)"}, {"answer": "SELECT COUNT(established) FROM table_name_57 WHERE venue = \"brian timmis stadium\"", "question": "What is the Established date of the Brian Timmis Stadium?", "context": "CREATE TABLE table_name_57 (established VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(ofsted_number) FROM table_name_62 WHERE intake = 60 AND type = \"junior\" AND dcsf_number < 3386", "question": "What is the junior type with an intake of 60 and a DCSF number less than 3386 with the smallest Ofsted number?", "context": "CREATE TABLE table_name_62 (ofsted_number INTEGER, dcsf_number VARCHAR, intake VARCHAR, type VARCHAR)"}, {"answer": "SELECT record FROM table_name_24 WHERE game < 19 AND points < 19 AND score = \"4\u20136\"", "question": "Which Record has a Game smaller than 19, and Points smaller than 19, and a Score of 4\u20136?", "context": "CREATE TABLE table_name_24 (record VARCHAR, score VARCHAR, game VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_74 WHERE record = \"7\u20136\u20133\" AND points < 17", "question": "How many games have a Record of 7\u20136\u20133, and Points smaller than 17?", "context": "CREATE TABLE table_name_74 (game VARCHAR, record VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_42 WHERE opponent = \"vancouver canucks\" AND november < 11", "question": "Which Points have an Opponent of vancouver canucks, and a November smaller than 11?", "context": "CREATE TABLE table_name_42 (points INTEGER, opponent VARCHAR, november VARCHAR)"}, {"answer": "SELECT record FROM table_name_53 WHERE march = 12", "question": "which Record is on March of 12", "context": "CREATE TABLE table_name_53 (record VARCHAR, march VARCHAR)"}, {"answer": "SELECT COUNT(march) FROM table_name_94 WHERE record = \"25-10-9\" AND game > 44", "question": "What is the number of March that has 25-10-9 record and a Game more than 44?", "context": "CREATE TABLE table_name_94 (march VARCHAR, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_19 WHERE record = \"27-11-10\"", "question": "Which Game has a Record of 27-11-10?", "context": "CREATE TABLE table_name_19 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT speed FROM table_name_3 WHERE construction_begun = \"2010\" AND expected_start_of_revenue_services = 2015", "question": "What is the Speed when Construction begun in 2010, and an Expected start of revenue services of 2015?", "context": "CREATE TABLE table_name_3 (speed VARCHAR, construction_begun VARCHAR, expected_start_of_revenue_services VARCHAR)"}, {"answer": "SELECT length FROM table_name_62 WHERE expected_start_of_revenue_services > 2017", "question": "What is the length when the expected start of revenue is more than 2017?", "context": "CREATE TABLE table_name_62 (length VARCHAR, expected_start_of_revenue_services INTEGER)"}, {"answer": "SELECT undecided FROM table_name_22 WHERE roy_barnes = \"47%\"", "question": "What was the undecided with Roy Barnes at 47%?", "context": "CREATE TABLE table_name_22 (undecided VARCHAR, roy_barnes VARCHAR)"}, {"answer": "SELECT dubose_porter FROM table_name_16 WHERE roy_barnes = \"54%\"", "question": "What is the DuBose Porter with Roy Barnes at 54%?", "context": "CREATE TABLE table_name_16 (dubose_porter VARCHAR, roy_barnes VARCHAR)"}, {"answer": "SELECT series_ep FROM table_name_98 WHERE segment_b = \"deli meats\"", "question": "What series episode has deli meats under segment B?", "context": "CREATE TABLE table_name_98 (series_ep VARCHAR, segment_b VARCHAR)"}, {"answer": "SELECT after_1_year FROM table_name_40 WHERE after_3_years = \"80%\"", "question": "Which After 1 year has an After 3 years of 80%?", "context": "CREATE TABLE table_name_40 (after_1_year VARCHAR, after_3_years VARCHAR)"}, {"answer": "SELECT position FROM table_name_62 WHERE player = \"alexei lazarenko\"", "question": "What position does Alexei Lazarenko have?", "context": "CREATE TABLE table_name_62 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_78 WHERE player = \"jamie butt\"", "question": "What college did Jamie Butt go to?", "context": "CREATE TABLE table_name_78 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_27 WHERE player = \"alexander korobolin\"", "question": "What school did Alexander Korobolin go to?", "context": "CREATE TABLE table_name_27 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_65 WHERE position = \"g\" AND round < 9", "question": "Who has a round less than 9 and a position of G?", "context": "CREATE TABLE table_name_65 (player VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(cuts_made) FROM table_name_80 WHERE wins < 2 AND top_25 > 7 AND top_10 < 2", "question": "Name the sum of cuts with wins less than 2, top-25 more than 7 and top-10 less than 2", "context": "CREATE TABLE table_name_80 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE record = \"11-16\"", "question": "What was the score that led to an 11-16 record?", "context": "CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_52 WHERE date = \"may 20\"", "question": "Who took the loss on May 20?", "context": "CREATE TABLE table_name_52 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT att FROM table_name_1 WHERE time = \"3:55\"", "question": "What was the attendance of the game that lasted 3:55?", "context": "CREATE TABLE table_name_1 (att VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE loss = \"holt (4-4)\"", "question": "What was the date of the game in which Holt (4-4) took the loss?", "context": "CREATE TABLE table_name_36 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE pitcher = \"jason marquis\" AND length = \"410'\"", "question": "What was the date when the pitcher was Jason Marquis and the length was 410'?", "context": "CREATE TABLE table_name_69 (date VARCHAR, pitcher VARCHAR, length VARCHAR)"}, {"answer": "SELECT number FROM table_name_3 WHERE inning = \"8th\" AND length = \"410'\"", "question": "What number home run was in the 8th inning and went 410'?", "context": "CREATE TABLE table_name_3 (number VARCHAR, inning VARCHAR, length VARCHAR)"}, {"answer": "SELECT max_1_min_wind_mph__km_h_ FROM table_name_26 WHERE dates_active = \"september22\u2013 september28\"", "question": "Which Max 1-min wind mph (km/h) that has Dates active on september22\u2013 september28?", "context": "CREATE TABLE table_name_26 (max_1_min_wind_mph__km_h_ VARCHAR, dates_active VARCHAR)"}, {"answer": "SELECT min_press___mbar__ FROM table_name_68 WHERE deaths = \"none\" AND storm_name = \"seven\"", "question": "Which Min press has none Death and seven Storm names?", "context": "CREATE TABLE table_name_68 (min_press___mbar__ VARCHAR, deaths VARCHAR, storm_name VARCHAR)"}, {"answer": "SELECT damage__millions_usd__ FROM table_name_36 WHERE min_press___mbar__ = \"972\" AND deaths = \"52\"", "question": "What is the cost of 972 Min Press caused 52 death?", "context": "CREATE TABLE table_name_36 (damage__millions_usd__ VARCHAR, min_press___mbar__ VARCHAR, deaths VARCHAR)"}, {"answer": "SELECT dates_active FROM table_name_28 WHERE max_1_min_wind_mph__km_h_ = \"65 (100)\"", "question": "What is the active Date that has a 65 (100) Max 1-min wind?", "context": "CREATE TABLE table_name_28 (dates_active VARCHAR, max_1_min_wind_mph__km_h_ VARCHAR)"}, {"answer": "SELECT class_aA FROM table_name_7 WHERE class_aAA = giddings AND school_year = \"2010-11\"", "question": "What is the Class AA in the 2010-11 school year with a class AAA of Giddings?", "context": "CREATE TABLE table_name_7 (class_aA VARCHAR, class_aAA VARCHAR, giddings VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aA FROM table_name_95 WHERE class_aAA = giddings AND school_year = \"2009-10\"", "question": "What is the Class AA of the school year 2009-10 with a class AAA of Giddings?", "context": "CREATE TABLE table_name_95 (class_aA VARCHAR, class_aAA VARCHAR, giddings VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT class_aAA FROM table_name_58 WHERE class_aAAAA = duncanville AND school_year = \"1993-94\"", "question": "What is the class AAA of the 1993-94 school year with a class AAAAA of Duncanville?", "context": "CREATE TABLE table_name_58 (class_aAA VARCHAR, class_aAAAA VARCHAR, duncanville VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_55 WHERE date = \"may 7\"", "question": "Who was the visiting team on May 7?", "context": "CREATE TABLE table_name_55 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_68 WHERE qual_2 > 58.669 AND team = \"team australia\"", "question": "Who had a Qualifying 2 time over 58.669 for Team Australia?", "context": "CREATE TABLE table_name_68 (name VARCHAR, qual_2 VARCHAR, team VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_50 WHERE best < 58.669 AND qual_2 < 57.897", "question": "Which qualifying 1 time has a best under 58.669 and a qualifying 2 time under 57.897?", "context": "CREATE TABLE table_name_50 (qual_1 VARCHAR, best VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT team FROM table_name_58 WHERE qual_2 < 59.612 AND best = 59.14", "question": "Which team has a qualifying 2 time under 59.612 and a best of 59.14?", "context": "CREATE TABLE table_name_58 (team VARCHAR, qual_2 VARCHAR, best VARCHAR)"}, {"answer": "SELECT lungchang FROM table_name_85 WHERE halang = \"\u0292\u026f\u00b2\" AND rera = \"\u0292o\u00b2\"", "question": "Which Lungchang has a Halang of \u0292\u026f\u00b2, and a Rera of \u0292o\u00b2?", "context": "CREATE TABLE table_name_85 (lungchang VARCHAR, halang VARCHAR, rera VARCHAR)"}, {"answer": "SELECT tikhak FROM table_name_77 WHERE yonguk = \"wu\u00b9ti\u00b9\"", "question": "Which Tikhak has a Yonguk of wu\u00b9ti\u00b9?", "context": "CREATE TABLE table_name_77 (tikhak VARCHAR, yonguk VARCHAR)"}, {"answer": "SELECT yonguk FROM table_name_35 WHERE halang = \"ran\u00b9\"", "question": "Which Yonguk has a Halang of ran\u00b9?", "context": "CREATE TABLE table_name_35 (yonguk VARCHAR, halang VARCHAR)"}, {"answer": "SELECT halang FROM table_name_6 WHERE rera = \"\u0292o\u00b2\"", "question": "Which Halang has a Rera of \u0292o\u00b2?", "context": "CREATE TABLE table_name_6 (halang VARCHAR, rera VARCHAR)"}, {"answer": "SELECT muklom FROM table_name_23 WHERE halang = \"w\u026f\u00b9c\u02b0i\u00b9\"", "question": "Which Muklom has a Halang of w\u026f\u00b9c\u02b0i\u00b9?", "context": "CREATE TABLE table_name_23 (muklom VARCHAR, halang VARCHAR)"}, {"answer": "SELECT hakhun FROM table_name_11 WHERE tikhak = \"\u0292u\u00b2\"", "question": "Which Hakhun has a Tikhak of \u0292u\u00b2?", "context": "CREATE TABLE table_name_11 (hakhun VARCHAR, tikhak VARCHAR)"}, {"answer": "SELECT location FROM table_name_14 WHERE stop = \"l\" AND station = \"tamagaki\"", "question": "What is the location of Tamagaki station with an l stop?", "context": "CREATE TABLE table_name_14 (location VARCHAR, stop VARCHAR, station VARCHAR)"}, {"answer": "SELECT station FROM table_name_10 WHERE number > 9 AND distance__km_ = 16.4", "question": "What is the station with a number greater than 9 and a distance of 16.4 km?", "context": "CREATE TABLE table_name_10 (station VARCHAR, number VARCHAR, distance__km_ VARCHAR)"}, {"answer": "SELECT japanese FROM table_name_98 WHERE number = 3", "question": "What is the Japanese name of the station with a number 3?", "context": "CREATE TABLE table_name_98 (japanese VARCHAR, number VARCHAR)"}, {"answer": "SELECT SUM(distance__km_) FROM table_name_19 WHERE station = \"kawage\"", "question": "What is the distance of Kawage station?", "context": "CREATE TABLE table_name_19 (distance__km_ INTEGER, station VARCHAR)"}, {"answer": "SELECT station FROM table_name_43 WHERE number < 5 AND stop = \"l\"", "question": "Which station has a number less than 5 and an l stop?", "context": "CREATE TABLE table_name_43 (station VARCHAR, number VARCHAR, stop VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_55 WHERE home = \"detroit\" AND date = \"february 24\"", "question": "Name the visitor for detroit on february 24", "context": "CREATE TABLE table_name_55 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_28 WHERE partner = \"marcel granollers\" AND surface = \"hard\"", "question": "What is the highest listed year for the partner of Marcel Granollers and a hard surface?", "context": "CREATE TABLE table_name_28 (year INTEGER, partner VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_56 WHERE outcome = \"runner-up\" AND championship = \"toronto\"", "question": "What is the listed surface for the Championship of Toronto that had a runner-up outcome?", "context": "CREATE TABLE table_name_56 (surface VARCHAR, outcome VARCHAR, championship VARCHAR)"}, {"answer": "SELECT time___et__ FROM table_name_14 WHERE week = 5", "question": "What time was the game during week 5?", "context": "CREATE TABLE table_name_14 (time___et__ VARCHAR, week VARCHAR)"}, {"answer": "SELECT city FROM table_name_23 WHERE series = \"tamra's oc wedding\"", "question": "Which City has a Series of Tamra's oc wedding?", "context": "CREATE TABLE table_name_23 (city VARCHAR, series VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_99 WHERE difference = \"55\" AND against < 47", "question": "What is the average number of points for a difference of 55 and an against less than 47?", "context": "CREATE TABLE table_name_99 (points INTEGER, difference VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_9 WHERE against > 60 AND points < 61 AND drawn > 18", "question": "What is the highest lost that has an against greater than 60, points less than 61 and an 18 drawn?", "context": "CREATE TABLE table_name_9 (lost INTEGER, drawn VARCHAR, against VARCHAR, points VARCHAR)"}, {"answer": "SELECT name FROM table_name_79 WHERE type = \"historic house\" AND date = \"18th century\"", "question": "What is the Name of the Historic House of the 18th Century?", "context": "CREATE TABLE table_name_79 (name VARCHAR, type VARCHAR, date VARCHAR)"}, {"answer": "SELECT type FROM table_name_72 WHERE date = \"14th century\" AND condition = \"preserved\"", "question": "What is the Type of castle from the 14th Century which Condition is preserved?", "context": "CREATE TABLE table_name_72 (type VARCHAR, date VARCHAR, condition VARCHAR)"}, {"answer": "SELECT name FROM table_name_26 WHERE ownership = \"private\" AND condition = \"occupied\" AND date = \"16th century\"", "question": "What is the Name of the private Castle of the 16th century which is occupied?", "context": "CREATE TABLE table_name_26 (name VARCHAR, date VARCHAR, ownership VARCHAR, condition VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE ownership = \"historic scotland\"", "question": "What is the Date of the castle with a Historic Scotland Ownership?", "context": "CREATE TABLE table_name_38 (date VARCHAR, ownership VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE type = \"fortified house\"", "question": "What is the Date of the Fortified House?", "context": "CREATE TABLE table_name_39 (date VARCHAR, type VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE type = \"courtyard castle\"", "question": "What is the Date of the Courtyard Castle?", "context": "CREATE TABLE table_name_16 (date VARCHAR, type VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_63 WHERE points = 6", "question": "What is the highest lost that has 6 for points?", "context": "CREATE TABLE table_name_63 (lost INTEGER, points VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_20 WHERE points < 3 AND drawn > 0", "question": "How many losses have points less than 3, with a drawn greater than 0?", "context": "CREATE TABLE table_name_20 (lost INTEGER, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_1 WHERE runner_s__up = \"buddy gardner\"", "question": "Which Margin of victory has a Runner(s)-up of buddy gardner?", "context": "CREATE TABLE table_name_1 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE winning_score = \u201314(66 - 64 - 68 - 68 = 266)", "question": "Which Date has a Winning score of \u201314 (66-64-68-68=266)?", "context": "CREATE TABLE table_name_93 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_15 WHERE winning_score = E(72 - 69 - 71 - 68 = 280)", "question": "Which Tournament has a Winning score of e (72-69-71-68=280)?", "context": "CREATE TABLE table_name_15 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_1 WHERE runner_s__up = \"dave barr\"", "question": "Which Margin of victory has a Runner(s)-up of dave barr?", "context": "CREATE TABLE table_name_1 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_19 WHERE runner_s__up = \"mark o'meara\"", "question": "Which Margin of victory has a Runner(s)-up of mark o'meara?", "context": "CREATE TABLE table_name_19 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_98 WHERE round = \"9\"", "question": "In round 9 what was the nationality?", "context": "CREATE TABLE table_name_98 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_83 WHERE round = \"3\"", "question": "In round 3 what was the position?", "context": "CREATE TABLE table_name_83 (position VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_49 WHERE position = \"right wing\" AND nationality = \"czech republic\"", "question": "Who has a nationality of Czech Republic and a position of right wing?", "context": "CREATE TABLE table_name_49 (player VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MAX(winning_pct) FROM table_name_92 WHERE losses > 4 AND ties < 2 AND games_started > 11 AND wins < 22", "question": "What is the highest winning pct from a team with wins less than 22, losses greater than 4, ties less than 2 and games started greater than 11?", "context": "CREATE TABLE table_name_92 (winning_pct INTEGER, wins VARCHAR, games_started VARCHAR, losses VARCHAR, ties VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_46 WHERE rank = \"6\" AND bronze > 0", "question": "Gold that has a Rank of 6, and a Bronze larger than 0 had what total number of gold?", "context": "CREATE TABLE table_name_46 (gold VARCHAR, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_21 WHERE total = 5", "question": "Total of 5 had what bronze?", "context": "CREATE TABLE table_name_21 (bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_55 WHERE result = \"20th\"", "question": "In which tournament did he place 20th?", "context": "CREATE TABLE table_name_55 (tournament VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_81 WHERE year = 1994 AND tournament = \"hypo-meeting\"", "question": "What the result for the hypo-meeting tournament in 1994?", "context": "CREATE TABLE table_name_81 (result VARCHAR, year VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT result FROM table_name_79 WHERE year = 1995", "question": "What was the result in 1995?", "context": "CREATE TABLE table_name_79 (result VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE march > 19 AND game = 67", "question": "After March 19, what's the score of game 67?", "context": "CREATE TABLE table_name_75 (score VARCHAR, march VARCHAR, game VARCHAR)"}, {"answer": "SELECT head_linesman FROM table_name_46 WHERE date = \"1 february 2009\"", "question": "Who is the head linesman of the game on 1 February 2009?", "context": "CREATE TABLE table_name_46 (head_linesman VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE line_judge = \"bob beeks\" AND head_linesman = \"jerry bergman\" AND back_judge = \"paul baetz\"", "question": "What is the date of the game where the line judge was Bob Beeks, the head linesman was Jerry Bergman, and Paul Baetz was the back judge?", "context": "CREATE TABLE table_name_61 (date VARCHAR, back_judge VARCHAR, line_judge VARCHAR, head_linesman VARCHAR)"}, {"answer": "SELECT game FROM table_name_31 WHERE date = \"14 january 1973\"", "question": "Which game was on 14 January 1973?", "context": "CREATE TABLE table_name_31 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT line_judge FROM table_name_48 WHERE referee = \"scott green\"", "question": "Who was the line judge at the game where Scott Green was referee?", "context": "CREATE TABLE table_name_48 (line_judge VARCHAR, referee VARCHAR)"}, {"answer": "SELECT head_linesman FROM table_name_66 WHERE game = \"xxxv\"", "question": "Who is the head linesman at game xxxv?", "context": "CREATE TABLE table_name_66 (head_linesman VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_8 WHERE field_judge = \"al jury\"", "question": "What game had Al Jury as field judge?", "context": "CREATE TABLE table_name_8 (game VARCHAR, field_judge VARCHAR)"}, {"answer": "SELECT departure FROM table_name_88 WHERE kilometers = 1676", "question": "What's listed for Departure that has 1676 listed for the Kilometers?", "context": "CREATE TABLE table_name_88 (departure VARCHAR, kilometers VARCHAR)"}, {"answer": "SELECT COUNT(kilometers) FROM table_name_43 WHERE station_code = \"kgq\"", "question": "What is the sum of Kilometers that has a Station Code of KGQ?", "context": "CREATE TABLE table_name_43 (kilometers VARCHAR, station_code VARCHAR)"}, {"answer": "SELECT kilometers FROM table_name_87 WHERE station_code = \"kuda\"", "question": "What's the Kilometers listed that also has the Station Code of Kuda?", "context": "CREATE TABLE table_name_87 (kilometers VARCHAR, station_code VARCHAR)"}, {"answer": "SELECT station_code FROM table_name_40 WHERE arrival = \"02:20\"", "question": "What's listed for the Station Code that has the Arrival of 02:20?", "context": "CREATE TABLE table_name_40 (station_code VARCHAR, arrival VARCHAR)"}, {"answer": "SELECT departure FROM table_name_33 WHERE station_code = \"clt\"", "question": "What is listede for Departure that also has a Station Code of CLT?", "context": "CREATE TABLE table_name_33 (departure VARCHAR, station_code VARCHAR)"}, {"answer": "SELECT MIN(area__km_2__) FROM table_name_72 WHERE population__2000_ = \"45\"", "question": "What is the smallest area with 45 population?", "context": "CREATE TABLE table_name_72 (area__km_2__ INTEGER, population__2000_ VARCHAR)"}, {"answer": "SELECT AVG(area__km_2__) FROM table_name_81 WHERE location = \"rhode island\" AND area__sq_mi_ > 38", "question": "What is the area located in Rhode Island with more than 38 sq mi area?", "context": "CREATE TABLE table_name_81 (area__km_2__ INTEGER, location VARCHAR, area__sq_mi_ VARCHAR)"}, {"answer": "SELECT AVG(area__km_2__) FROM table_name_21 WHERE area__sq_mi_ > 55 AND location = \"new york\"", "question": "What is the average area in New York that is larger than 55 sq mi?", "context": "CREATE TABLE table_name_21 (area__km_2__ INTEGER, area__sq_mi_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT event FROM table_name_38 WHERE location = \"tokyo, japan\" AND opponent = \"rumina sato\"", "question": "Which event was in Tokyo, Japan and had an opponent of rumina sato?", "context": "CREATE TABLE table_name_38 (event VARCHAR, location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_45 WHERE time = \"2:30\"", "question": "Which round was 2:30?", "context": "CREATE TABLE table_name_45 (round VARCHAR, time VARCHAR)"}, {"answer": "SELECT event FROM table_name_90 WHERE opponent = \"shinya aoki\" AND time = \"4:56\"", "question": "Which event had the opponent of shinya aoki and was at 4:56?", "context": "CREATE TABLE table_name_90 (event VARCHAR, opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT method FROM table_name_56 WHERE event = \"pride bushido 10\"", "question": "Which method did pride bushido 10 have ?", "context": "CREATE TABLE table_name_56 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT 2008 AS _09 FROM table_name_13 WHERE event = \"autumn gold\"", "question": "Which 2008\u201309 has an Event of autumn gold?", "context": "CREATE TABLE table_name_13 (event VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_77 WHERE team = \"internacional-sp\"", "question": "Which Drawn has a Team of internacional-sp?", "context": "CREATE TABLE table_name_77 (drawn INTEGER, team VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_78 WHERE drawn > 5 AND played > 18", "question": "How much Lost has a Drawn larger than 5, and a Played larger than 18?", "context": "CREATE TABLE table_name_78 (lost INTEGER, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_36 WHERE played < 18", "question": "Which Drawn is the highest one that has a Played smaller than 18?", "context": "CREATE TABLE table_name_36 (drawn INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(drawn) FROM table_name_39 WHERE against > 15 AND points < 15 AND lost < 9", "question": "Which Drawn is the highest one that has an Against larger than 15, and Points smaller than 15, and a Lost smaller than 9?", "context": "CREATE TABLE table_name_39 (drawn INTEGER, lost VARCHAR, against VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(floors) FROM table_name_41 WHERE street_address = \"921 sw sixth avenue\"", "question": "What's the least amount of floors at 921 sw sixth avenue?", "context": "CREATE TABLE table_name_41 (floors INTEGER, street_address VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_27 WHERE name = \"union bank of california tower\"", "question": "What's the address of the union bank of California tower?", "context": "CREATE TABLE table_name_27 (street_address VARCHAR, name VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_3 WHERE street_address = \"200 sw harrison\"", "question": "What were the years that the building at 200 sw harrison was considered to be the tallest building?", "context": "CREATE TABLE table_name_3 (years_as_tallest VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_29 WHERE points < 7 AND pilot = \"didier hauss\"", "question": "What is the smallest position with less than 7 points piloted by Didier Hauss?", "context": "CREATE TABLE table_name_29 (position INTEGER, points VARCHAR, pilot VARCHAR)"}, {"answer": "SELECT season FROM table_name_62 WHERE winner = \"kiveton park\" AND final_venue = \"sandy lane\"", "question": "During what Season was the Final Venue at Sandy Lane with Kiveton Park as the Winner?", "context": "CREATE TABLE table_name_62 (season VARCHAR, winner VARCHAR, final_venue VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_88 WHERE winner = \"kiveton park\" AND season = \"2005-06\"", "question": "What was the Runner-up during the 2005-06 Season with Kiveton Park as the Winner?", "context": "CREATE TABLE table_name_88 (runner_up VARCHAR, winner VARCHAR, season VARCHAR)"}, {"answer": "SELECT result FROM table_name_94 WHERE runner_up = \"kirkburton\" AND final_venue = \"green lane\"", "question": "What was the Result in Green Lane with Kirkburton as the Runner-up?", "context": "CREATE TABLE table_name_94 (result VARCHAR, runner_up VARCHAR, final_venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_9 WHERE season = \"2005-06\"", "question": "What was the Result in the 2005-06 Season?", "context": "CREATE TABLE table_name_9 (result VARCHAR, season VARCHAR)"}, {"answer": "SELECT final_venue FROM table_name_17 WHERE winner = \"sheffield reserves\"", "question": "What was the Final Venue having Sheffield Reserves as the Winner?", "context": "CREATE TABLE table_name_17 (final_venue VARCHAR, winner VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_85 WHERE time = \"6:04\"", "question": "What is the total number of Round that has a Time of 6:04?", "context": "CREATE TABLE table_name_85 (round INTEGER, time VARCHAR)"}, {"answer": "SELECT round FROM table_name_55 WHERE method = \"submission (single wing choke)\"", "question": "What Round has the Method of Submission (Single Wing Choke)?", "context": "CREATE TABLE table_name_55 (round VARCHAR, method VARCHAR)"}, {"answer": "SELECT class FROM table_name_12 WHERE frequency_mhz > 91.5 AND city_of_license = \"hyannis, nebraska\"", "question": "Which Class has a Frequency MHz larger than 91.5, and a City of license of hyannis, nebraska?", "context": "CREATE TABLE table_name_12 (class VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT class FROM table_name_54 WHERE erp_w > 205 AND frequency_mhz < 93.9 AND call_sign = \"k210cb\"", "question": "Which Class has a ERP W larger than 205, and a Frequency MHz smaller than 93.9, and a Call sign of k210cb?", "context": "CREATE TABLE table_name_54 (class VARCHAR, call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT MAX(frequency_mhz) FROM table_name_52 WHERE erp_w > 205 AND call_sign = \"k230ap\"", "question": "Which Frequency MHz that has a ERP W larger than 205, and a Call sign of k230ap?", "context": "CREATE TABLE table_name_52 (frequency_mhz INTEGER, erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT MAX(frequency_mhz) FROM table_name_36 WHERE erp_w = 250", "question": "Which Frequency MHz has a ERP W of 250?", "context": "CREATE TABLE table_name_36 (frequency_mhz INTEGER, erp_w VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE game = 81", "question": "What was the date of game 81?", "context": "CREATE TABLE table_name_40 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT surface FROM table_name_13 WHERE opponent = \"gustavo kuerten\"", "question": "WHich Surface has an Opponent of gustavo kuerten?", "context": "CREATE TABLE table_name_13 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_53 WHERE tournament = \"st. petersburg , russia\"", "question": "Which Surface has a Tournament of st. petersburg , russia?", "context": "CREATE TABLE table_name_53 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE surface = \"hard (i)\" AND tournament = \"brighton , united kingdom\"", "question": "When is the Surface of hard (i), and a Tournament of brighton , united kingdom taken?", "context": "CREATE TABLE table_name_11 (date VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE score = \"3\u20136, 5\u20137\"", "question": "Which Opponent  has a Score of 3\u20136, 5\u20137?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE tournament = \"palermo , italy\"", "question": "When has a Tournament of palermo , italy?", "context": "CREATE TABLE table_name_17 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_70 WHERE date = \"29 september 1997\"", "question": "Which Opponent is on 29 september 1997?", "context": "CREATE TABLE table_name_70 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_38 WHERE designation_hd = \"hd 75732\"", "question": "Which constellation has hd 75732 as a destignation HD?", "context": "CREATE TABLE table_name_38 (constellation VARCHAR, designation_hd VARCHAR)"}, {"answer": "SELECT message FROM table_name_75 WHERE designation_hd = \"hd 186408\"", "question": "What message has hd 186408 as a designation HD?", "context": "CREATE TABLE table_name_75 (message VARCHAR, designation_hd VARCHAR)"}, {"answer": "SELECT date_sent FROM table_name_65 WHERE constellation = \"cygnus\" AND designation_hd = \"hd 190360\"", "question": "What date sent has cygnus as a constellation, and hd 190360 as a designation HD?", "context": "CREATE TABLE table_name_65 (date_sent VARCHAR, constellation VARCHAR, designation_hd VARCHAR)"}, {"answer": "SELECT date_sent FROM table_name_63 WHERE constellation = \"orion\"", "question": "What date sent has orion as the constellation?", "context": "CREATE TABLE table_name_63 (date_sent VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_27 WHERE message = \"cosmic call 1\" AND arrival_date = \"october 2067\"", "question": "Which constellation has cosmic call 1 as the message, and an arrival date of october 2067?", "context": "CREATE TABLE table_name_27 (constellation VARCHAR, message VARCHAR, arrival_date VARCHAR)"}, {"answer": "SELECT date_sent FROM table_name_29 WHERE constellation = \"cancer\"", "question": "What date sent has cancer as the constellation?", "context": "CREATE TABLE table_name_29 (date_sent VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT MAX(conceded) FROM table_name_39 WHERE points > 17 AND team = \"guaran\u00ed\" AND losses < 6", "question": "Which Conceded is the highest one that has Points larger than 17, and a Team of guaran\u00ed, and Losses smaller than 6?", "context": "CREATE TABLE table_name_39 (conceded INTEGER, losses VARCHAR, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(conceded) FROM table_name_39 WHERE draws < 5 AND position > 6", "question": "Which Conceded has Draws smaller than 5, and a Position larger than 6?", "context": "CREATE TABLE table_name_39 (conceded INTEGER, draws VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_65 WHERE played > 18", "question": "How many Points have a Played larger than 18?", "context": "CREATE TABLE table_name_65 (points VARCHAR, played INTEGER)"}, {"answer": "SELECT SUM(scored) FROM table_name_81 WHERE team = \"recoleta\"", "question": "Which Scored has a Team of recoleta?", "context": "CREATE TABLE table_name_81 (scored INTEGER, team VARCHAR)"}, {"answer": "SELECT notes FROM table_name_21 WHERE date = \"2008-01-27\"", "question": "Which Notes have a Date of 2008-01-27?", "context": "CREATE TABLE table_name_21 (notes VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE distance = \"3,000 m\"", "question": "Which Date has a Distance of 3,000 m?", "context": "CREATE TABLE table_name_63 (date VARCHAR, distance VARCHAR)"}, {"answer": "SELECT distance FROM table_name_46 WHERE time = \"men's speed skating\"", "question": "Which Distance has a Time of men's speed skating?", "context": "CREATE TABLE table_name_46 (distance VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_89 WHERE \"time\" = \"time\"", "question": "Which Location has a Time of time?", "context": "CREATE TABLE table_name_89 (location VARCHAR)"}, {"answer": "SELECT location FROM table_name_59 WHERE distance = \"10,000 m\"", "question": "Which Location has a Distance of 10,000 m?", "context": "CREATE TABLE table_name_59 (location VARCHAR, distance VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE distance = \"500 m\"", "question": "Which Date has a Distance of 500 m?", "context": "CREATE TABLE table_name_3 (date VARCHAR, distance VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE date = \"june 22\" AND attendance = 0", "question": "What was the score for the June 22 game with attendance 0?", "context": "CREATE TABLE table_name_44 (score VARCHAR, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT surface FROM table_name_97 WHERE tournament = \"carthage\" AND date = \"august 14, 1994\"", "question": "What type of surface was used for the carthage tournament on august 14, 1994?", "context": "CREATE TABLE table_name_97 (surface VARCHAR, tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_81 WHERE opponent_in_the_final = \"marielle bruens\"", "question": "Which tournament has marielle bruens for the opponent in the final?", "context": "CREATE TABLE table_name_81 (tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_19 WHERE date = \"may 13, 2007\"", "question": "What surface was used on may 13, 2007?", "context": "CREATE TABLE table_name_19 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT class FROM table_name_4 WHERE frequency_mhz = 93.7", "question": "Frequency MHz of 93.7 has what class?", "context": "CREATE TABLE table_name_4 (class VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT AVG(entre_r\u00edos_municipality) FROM table_name_99 WHERE pojo_municipality < 9", "question": "What is the average Entre R\u00edos Municipality with less than 9 Pojo Municipalities?", "context": "CREATE TABLE table_name_99 (entre_r\u00edos_municipality INTEGER, pojo_municipality INTEGER)"}, {"answer": "SELECT COUNT(pocona_municipality) FROM table_name_98 WHERE totora_municipality = 72 AND pojo_municipality > 74", "question": "What is Pocona Municipalities with 72 Totora municipalities and more than 74 pojo municipalities?", "context": "CREATE TABLE table_name_98 (pocona_municipality VARCHAR, totora_municipality VARCHAR, pojo_municipality VARCHAR)"}, {"answer": "SELECT MAX(chimor\u00e9_municipality) FROM table_name_76 WHERE pojo_municipality = 9 AND totora_municipality < 7", "question": "What is the highest chimore municipalities with 9 pojo municipalities and less than 7 totora municipalities?", "context": "CREATE TABLE table_name_76 (chimor\u00e9_municipality INTEGER, pojo_municipality VARCHAR, totora_municipality VARCHAR)"}, {"answer": "SELECT copa_libertadores_1996 FROM table_name_10 WHERE team = \"estudiantes\"", "question": "Which Copa Libertadores 1996 has a Team of estudiantes?", "context": "CREATE TABLE table_name_10 (copa_libertadores_1996 VARCHAR, team VARCHAR)"}, {"answer": "SELECT conmebol_1995 FROM table_name_86 WHERE supercopa_1995 = \"sf\"", "question": "which CONMEBOL 1995 has a Supercopa 1995 of sf?", "context": "CREATE TABLE table_name_86 (conmebol_1995 VARCHAR, supercopa_1995 VARCHAR)"}, {"answer": "SELECT copa_libertadores_1996 FROM table_name_10 WHERE supercopa_1995 = \"round 1\" AND team = \"argentinos juniors\"", "question": "which Copa Libertadores 1996 has round 1 Supercopa 1995 and argentinos juniors team ?", "context": "CREATE TABLE table_name_10 (copa_libertadores_1996 VARCHAR, supercopa_1995 VARCHAR, team VARCHAR)"}, {"answer": "SELECT conmebol_1995 FROM table_name_61 WHERE team = \"river plate\"", "question": "Which CONMEBOL 1995 has river plate team?", "context": "CREATE TABLE table_name_61 (conmebol_1995 VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_28 WHERE conmebol_1995 = \"round 1\"", "question": "Which Team  has a round 1  CONMEBOL 1995?", "context": "CREATE TABLE table_name_28 (team VARCHAR, conmebol_1995 VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE attendance = \"57,013\"", "question": "Which Date has an Attendance of 57,013?", "context": "CREATE TABLE table_name_36 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE tv_time = \"cbs 1:00pm\" AND game_site = \"rca dome\" AND opponent = \"cincinnati bengals\"", "question": "Which Date has a TV Time of cbs 1:00pm, and a Game Site of rca dome, and an Opponent of cincinnati bengals?", "context": "CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR, tv_time VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_63 WHERE date = \"december 26, 1999\"", "question": "Which TV Time has a Date of december 26, 1999?", "context": "CREATE TABLE table_name_63 (tv_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_1 WHERE date = \"october 17, 1999\"", "question": "Which Game Site has a Date of october 17, 1999?", "context": "CREATE TABLE table_name_1 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_21 WHERE streak = \"won 6\"", "question": "what's the result with streak of won 6?", "context": "CREATE TABLE table_name_21 (result VARCHAR, streak VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_88 WHERE aggregate = \"4-2\"", "question": "What was the 2nd leg score having an aggregate score of 4-2?", "context": "CREATE TABLE table_name_88 (aggregate VARCHAR)"}, {"answer": "SELECT home__2nd_leg_ FROM table_name_59 WHERE aggregate = \"2-3\"", "question": "What was the home team for the 2nd leg of the match having an aggregate of 2-3?", "context": "CREATE TABLE table_name_59 (home__2nd_leg_ VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_58 WHERE drawn < 12 AND against = 41 AND points < 69", "question": "What is the lowest number of played games of the team with less than 12 drawns, 41 against, and less than 69 points?", "context": "CREATE TABLE table_name_58 (played INTEGER, points VARCHAR, drawn VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_9 WHERE lost < 11 AND drawn < 12", "question": "What is the highest number of played of the team with less than 11 losses and less than 12 drawns?", "context": "CREATE TABLE table_name_9 (played INTEGER, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_86 WHERE played < 38", "question": "What is the sum of againsts the team with less than 38 played had?", "context": "CREATE TABLE table_name_86 (against INTEGER, played INTEGER)"}, {"answer": "SELECT AVG(drawn) FROM table_name_30 WHERE difference = \"4\" AND lost > 13", "question": "What is the average drawn of the team with a difference of 4 and more than 13 losses?", "context": "CREATE TABLE table_name_30 (drawn INTEGER, difference VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_43 WHERE lost > 16 AND against > 74", "question": "What is the position of the team with more than 16 losses and an against greater than 74?", "context": "CREATE TABLE table_name_43 (position INTEGER, lost VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_92 WHERE team = \"vit\u00f3ria\" AND played > 38", "question": "What is the highest number of points team vit\u00f3ria, which had more than 38 played, had?", "context": "CREATE TABLE table_name_92 (points INTEGER, team VARCHAR, played VARCHAR)"}, {"answer": "SELECT nation FROM table_name_40 WHERE a_score > 5.933 AND total = 19.833", "question": "When the A Score was larger than 5.933 with a total of 19.833, what nation was this?", "context": "CREATE TABLE table_name_40 (nation VARCHAR, a_score VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_35 WHERE e_score > 9.35 AND t_score < 4", "question": "How large was the total when the E Score was greater than 9.35 and T Score was less than 4?", "context": "CREATE TABLE table_name_35 (total INTEGER, e_score VARCHAR, t_score VARCHAR)"}, {"answer": "SELECT SUM(a_score) FROM table_name_54 WHERE e_score > 9.566 AND nation = \"greece\" AND t_score > 4", "question": "What was the quantity of the A Score when the E Score was larger than 9.566 in the Greece and the T score was more than 4?", "context": "CREATE TABLE table_name_54 (a_score INTEGER, t_score VARCHAR, e_score VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(a_score) FROM table_name_74 WHERE e_score > 9.383 AND total < 19.716 AND t_score > 4", "question": "What was the total of A Score when the E Score was greater than 9.383, total was less than 19.716 and the T Score was larger than 4?", "context": "CREATE TABLE table_name_74 (a_score INTEGER, t_score VARCHAR, e_score VARCHAR, total VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_1 WHERE frequency_mhz = \"104.5 fm\"", "question": "Which city has a frequency of 104.5 fm?", "context": "CREATE TABLE table_name_1 (city_of_license VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_name_74 WHERE city_of_license = \"walterboro, sc\"", "question": "What is the frequency of Walterboro, SC?", "context": "CREATE TABLE table_name_74 (frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_68 WHERE frequency_mhz = \"104.5 fm\"", "question": "What is the FCC information of 104.5 fm frequency?", "context": "CREATE TABLE table_name_68 (fcc_info VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_2 WHERE city_of_license = \"charleston, sc\"", "question": "What is Charleston, SC ERP W?", "context": "CREATE TABLE table_name_2 (erp_w VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT SUM(erp_w) FROM table_name_66 WHERE frequency_mhz = \"105.1 fm\"", "question": "What does the ERP W sum equal for 105.1 fm frequency?", "context": "CREATE TABLE table_name_66 (erp_w INTEGER, frequency_mhz VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_name_79 WHERE city_of_license = \"surfside beach, sc\"", "question": "What is surfside beach, SC frequency?", "context": "CREATE TABLE table_name_79 (frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_30 WHERE country = \"japan\"", "question": "What is the player from Japan's To Par?", "context": "CREATE TABLE table_name_30 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_68 WHERE country = \"england\"", "question": "What is the player from England's To Par?", "context": "CREATE TABLE table_name_68 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE country = \"england\"", "question": "What is the player from England's score?", "context": "CREATE TABLE table_name_98 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_39 WHERE player = \"adam scott\"", "question": "Which country does Adam Scott play for?", "context": "CREATE TABLE table_name_39 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT icao FROM table_name_43 WHERE airport = \"lilongwe international airport\"", "question": "Name the ICAO for lilongwe international airport", "context": "CREATE TABLE table_name_43 (icao VARCHAR, airport VARCHAR)"}, {"answer": "SELECT airport FROM table_name_6 WHERE icao = \"flls\"", "question": "Name the airport for ICAO of flls", "context": "CREATE TABLE table_name_6 (airport VARCHAR, icao VARCHAR)"}, {"answer": "SELECT icao FROM table_name_74 WHERE airport = \"lilongwe international airport\"", "question": "Name the ICAO for lilongwe international airport", "context": "CREATE TABLE table_name_74 (icao VARCHAR, airport VARCHAR)"}, {"answer": "SELECT icao FROM table_name_79 WHERE airport = \"julius nyerere international airport\"", "question": "Name the ICAO for julius nyerere international airport", "context": "CREATE TABLE table_name_79 (icao VARCHAR, airport VARCHAR)"}, {"answer": "SELECT country FROM table_name_35 WHERE city = \"johannesburg\"", "question": "Name the country for johannesburg", "context": "CREATE TABLE table_name_35 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_32 WHERE iata = \"llw\"", "question": "Name the city for IATA of llw", "context": "CREATE TABLE table_name_32 (city VARCHAR, iata VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_5 WHERE tie_no = \"10\"", "question": "What is the name of the home time with a 10 tie no?", "context": "CREATE TABLE table_name_5 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_7 WHERE away_team = \"york city\"", "question": "What was the date of the game that was played against the away team of York City?", "context": "CREATE TABLE table_name_7 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT group_position FROM table_name_2 WHERE opponents = \"juventus\" AND attendance > 47 OFFSET 786", "question": "What group of juventus had an attendance larger than 47,786?", "context": "CREATE TABLE table_name_2 (group_position VARCHAR, opponents VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_56 WHERE result = \"l 28\u201317\"", "question": "Name the average week for result of l 28\u201317", "context": "CREATE TABLE table_name_56 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE date = \"april 12\"", "question": "What was the score on April 12?", "context": "CREATE TABLE table_name_48 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_84 WHERE 2008 = \"a\" AND 2010 = \"4r\"", "question": "Which 2009 has a 2008 of A, and a 2010 of 4r?", "context": "CREATE TABLE table_name_84 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_64 WHERE 2008 = \"wta premier mandatory tournaments\"", "question": "Which 2009 has a 2008 of wta premier mandatory tournaments?", "context": "CREATE TABLE table_name_64 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_80 WHERE tournament = \"australian open\"", "question": "Which 2010 has a Tournament of australian open?", "context": "CREATE TABLE table_name_80 (tournament VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_8 WHERE 2006 = \"a\" AND tournament = \"canada\"", "question": "Which 2007 has a 2006 of A, and a Tournament of canada?", "context": "CREATE TABLE table_name_8 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_83 WHERE 2006 = \"a\" AND 2011 = \"sf\"", "question": "Which 2009 has a 2006 of A, and a 2011 of sf?", "context": "CREATE TABLE table_name_83 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_92 WHERE 2010 = \"a\"", "question": "Which 2007 has a 2010 of A?", "context": "CREATE TABLE table_name_92 (Id VARCHAR)"}, {"answer": "SELECT AVG(adam) FROM table_name_40 WHERE jade > 5 AND peter < 0", "question": "What's Adam's score when Jade's score is greater than 5 and Peter's score is less than 0?", "context": "CREATE TABLE table_name_40 (adam INTEGER, jade VARCHAR, peter VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_70 WHERE losses < 9 AND ntfa_div_2 = \"old scotch\"", "question": "Old Scotch had less than 9 losses and how much against?", "context": "CREATE TABLE table_name_70 (against INTEGER, losses VARCHAR, ntfa_div_2 VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_54 WHERE byes < 0", "question": "Of the teams that had more than 0 byes, what was the total number of losses?", "context": "CREATE TABLE table_name_54 (losses VARCHAR, byes INTEGER)"}, {"answer": "SELECT incumbent FROM table_name_16 WHERE district = \"20th\"", "question": "Who was the incumbent in the 20th district?", "context": "CREATE TABLE table_name_16 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_name_49 WHERE district = \"6th\"", "question": "Which party has the 6th district?", "context": "CREATE TABLE table_name_49 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_name_34 WHERE incumbent = \"ken cuccinelli\"", "question": "Which party has Ken Cuccinelli as an incumbent?", "context": "CREATE TABLE table_name_34 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT party FROM table_name_47 WHERE elected = 2003 AND incumbent = \"mark obenshain\"", "question": "Which party was elected in 2003 with incumbent Mark Obenshain?", "context": "CREATE TABLE table_name_47 (party VARCHAR, elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_60 WHERE district = \"24th\"", "question": "Which incumbent was in the 24th district?", "context": "CREATE TABLE table_name_60 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_19 WHERE team = \"mi-jack conquest racing\" AND points < 11", "question": "Name the sum of laps for mi-jack conquest racing and points less than 11", "context": "CREATE TABLE table_name_19 (laps INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_74 WHERE grid > 8 AND time_retired = \"+47.487 secs\"", "question": "Name the points with grid more than 8 and time/retired of +47.487 secs", "context": "CREATE TABLE table_name_74 (points VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT team FROM table_name_79 WHERE laps = 97 AND grid = 3", "question": "Name the team with laps of 97 and grid of 3", "context": "CREATE TABLE table_name_79 (team VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_82 WHERE laps > 97", "question": "Name the sum of grid with laps more than 97", "context": "CREATE TABLE table_name_82 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT MAX(wins) FROM table_name_11 WHERE class = \"250cc\" AND year = 1971", "question": "What are the most wins in 1971 in 250cc class?", "context": "CREATE TABLE table_name_11 (wins INTEGER, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_49 WHERE points < 45 AND team = \"yamaha\" AND rank = \"21st\"", "question": "What is the earliest year with less than 45 points for Yamaha team in 21st rank?", "context": "CREATE TABLE table_name_49 (year INTEGER, rank VARCHAR, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(ends_won) FROM table_name_58 WHERE blank_ends < 14 AND locale = \"manitoba\" AND stolen_ends > 13", "question": "How many Ends Won have Blank Ends smaller than 14, and a Locale of manitoba, and Stolen Ends larger than 13?", "context": "CREATE TABLE table_name_58 (ends_won INTEGER, stolen_ends VARCHAR, blank_ends VARCHAR, locale VARCHAR)"}, {"answer": "SELECT skip FROM table_name_80 WHERE ends_lost > 44 AND blank_ends = 10", "question": "Which Skip has Ends Lost larger than 44, and Blank Ends of 10?", "context": "CREATE TABLE table_name_80 (skip VARCHAR, ends_lost VARCHAR, blank_ends VARCHAR)"}, {"answer": "SELECT COUNT(stolen_ends) FROM table_name_83 WHERE ends_lost < 44 AND blank_ends < 7", "question": "How many Stolen Ends have Ends Lost smaller than 44, and Blank Ends smaller than 7?", "context": "CREATE TABLE table_name_83 (stolen_ends VARCHAR, ends_lost VARCHAR, blank_ends VARCHAR)"}, {"answer": "SELECT current_status FROM table_name_64 WHERE make = \"gm advanced design\" AND number_of_seats > 41", "question": "What is the current status for GM Advanced Design with more than 41 seats?", "context": "CREATE TABLE table_name_64 (current_status VARCHAR, make VARCHAR, number_of_seats VARCHAR)"}, {"answer": "SELECT quantity FROM table_name_80 WHERE number_of_seats > 45 AND make = \"mci\"", "question": "What is the quantity with more than 45 seats and MCI make?", "context": "CREATE TABLE table_name_80 (quantity VARCHAR, number_of_seats VARCHAR, make VARCHAR)"}, {"answer": "SELECT MAX(number_of_seats) FROM table_name_24 WHERE make = \"mci\" AND quantity > 32", "question": "What is the largest number of seats with more than 32 of a MCI make?", "context": "CREATE TABLE table_name_24 (number_of_seats INTEGER, make VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT MIN(number_of_seats) FROM table_name_21 WHERE current_status = \"retired\" AND quantity < 8", "question": "What is the smallest number of seats in a vehicle currently retired and in quantities less than 8?", "context": "CREATE TABLE table_name_21 (number_of_seats INTEGER, current_status VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT MIN(number_of_seats) FROM table_name_93 WHERE current_status = \"retired\" AND year_placed_in_service = \"1981\"", "question": "What is the smallest number of seats in a retired vehicle that was started in service in 1981?", "context": "CREATE TABLE table_name_93 (number_of_seats INTEGER, current_status VARCHAR, year_placed_in_service VARCHAR)"}, {"answer": "SELECT height FROM table_name_42 WHERE name = \"trevard lindley\"", "question": "What is Trevard Lindley's height?", "context": "CREATE TABLE table_name_42 (height VARCHAR, name VARCHAR)"}, {"answer": "SELECT class FROM table_name_87 WHERE games\u2191 = 2 AND name = \"ashton cobb\"", "question": "What is Ashton Cobb's class in Game 2?", "context": "CREATE TABLE table_name_87 (class VARCHAR, games\u2191 VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(games) AS \u2191 FROM table_name_2 WHERE position = \"re\" AND number < 95", "question": "What is the earliest game with a position of Re and a smaller number than 95?", "context": "CREATE TABLE table_name_2 (games INTEGER, position VARCHAR, number VARCHAR)"}, {"answer": "SELECT quarterback FROM table_name_33 WHERE career_wins > 81 AND teams = \"seattle\" AND team_wins < 70", "question": "Which Seattle quarterback has more than 81 career wins and less than 70 team wins?", "context": "CREATE TABLE table_name_33 (quarterback VARCHAR, team_wins VARCHAR, career_wins VARCHAR, teams VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_61 WHERE name = \"mike harris\"", "question": "What is Mike Harris' lowest overall?", "context": "CREATE TABLE table_name_61 (overall INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_81 WHERE overall = 228 AND round < 7", "question": "What is the highest pick # that has a 228 overall and a round less than 7?", "context": "CREATE TABLE table_name_81 (pick__number INTEGER, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT value FROM table_name_82 WHERE type = \"negative infinity\"", "question": "What value has negative infinity?", "context": "CREATE TABLE table_name_82 (value VARCHAR, type VARCHAR)"}, {"answer": "SELECT exponent_field FROM table_name_93 WHERE exp__biased_ = \"255\" AND value = \"+\u221e\"", "question": "What's the exponent field that has 255 exp and value of +\u221e?", "context": "CREATE TABLE table_name_93 (exponent_field VARCHAR, exp__biased_ VARCHAR, value VARCHAR)"}, {"answer": "SELECT type FROM table_name_29 WHERE value = \"0.0\"", "question": "What's the type of 0.0 value?", "context": "CREATE TABLE table_name_29 (type VARCHAR, value VARCHAR)"}, {"answer": "SELECT significand__fraction_field_ FROM table_name_2 WHERE value = \"1.0\"", "question": "What's the Significant of a value 1.0?", "context": "CREATE TABLE table_name_2 (significand__fraction_field_ VARCHAR, value VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_19 WHERE pick__number = 8 AND college = \"temple\" AND overall > 72", "question": "What is the lowest round of the pick #8 player with an overall greater than 72 from the college of temple?", "context": "CREATE TABLE table_name_19 (round INTEGER, overall VARCHAR, pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_19 WHERE position = \"wide receiver\" AND round < 5 AND pick__number > 7", "question": "What is the lowest overall of the wide receiver player from a round higher than 5 and a pick lower than 7?", "context": "CREATE TABLE table_name_19 (overall INTEGER, pick__number VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT overall FROM table_name_91 WHERE position = \"running back\"", "question": "What is the overall of the running back player?", "context": "CREATE TABLE table_name_91 (overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_18 WHERE team_classification = \"japan\"", "question": "What is the general classification when the team classification is japan?", "context": "CREATE TABLE table_name_18 (general_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT stage FROM table_name_68 WHERE team_classification = \"tabriz petrochemical team\"", "question": "Which stage had tabriz petrochemical team in the team classification?", "context": "CREATE TABLE table_name_68 (stage VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT stage FROM table_name_59 WHERE malaysian_rider_classification = \"suhardi hassan\"", "question": "Which stage had suhardi hassan in the Malaysian rider classification?", "context": "CREATE TABLE table_name_59 (stage VARCHAR, malaysian_rider_classification VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_53 WHERE points = 6 AND lost < 4", "question": "How many drawn have points of 6 and lost by fewer than 4?", "context": "CREATE TABLE table_name_53 (drawn VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_48 WHERE record = \"23\u20136\u20134\"", "question": "What was the earliest game with a record of 23\u20136\u20134?", "context": "CREATE TABLE table_name_48 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_96 WHERE record = \"16\u20134\u20133\"", "question": "What was the earliest game with a record of 16\u20134\u20133?", "context": "CREATE TABLE table_name_96 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT MAX(erp_w) FROM table_name_3 WHERE call_sign = \"w255bi\"", "question": "Which ERP W is the highest one that has a Call sign of w255bi?", "context": "CREATE TABLE table_name_3 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_96 WHERE frequency_mhz = 100.7", "question": "Which FCC info has a Frequency MHz of 100.7?", "context": "CREATE TABLE table_name_96 (fcc_info VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT COUNT(frequency_mhz) FROM table_name_95 WHERE call_sign = \"w264bg\"", "question": "How much Frequency MHz has a Call sign of w264bg?", "context": "CREATE TABLE table_name_95 (frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT MIN(erp_w) FROM table_name_47 WHERE call_sign = \"w233be\"", "question": "Which ERP W is the lowest one that has a Call sign of w233be?", "context": "CREATE TABLE table_name_47 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_84 WHERE frequency_mhz > 102.3", "question": "Which FCC info has a Frequency MHz larger than 102.3?", "context": "CREATE TABLE table_name_84 (fcc_info VARCHAR, frequency_mhz INTEGER)"}, {"answer": "SELECT date_given FROM table_name_35 WHERE head_of_household = \"rica\"", "question": "What date was Rica head of household?", "context": "CREATE TABLE table_name_35 (date_given VARCHAR, head_of_household VARCHAR)"}, {"answer": "SELECT MAX(task_no) FROM table_name_16 WHERE head_of_household = \"cathy\"", "question": "What is the latest task number for which Cathy is head of household?", "context": "CREATE TABLE table_name_16 (task_no INTEGER, head_of_household VARCHAR)"}, {"answer": "SELECT head_of_household FROM table_name_39 WHERE task_no = 7", "question": "Who is the head of household for task number 7?", "context": "CREATE TABLE table_name_39 (head_of_household VARCHAR, task_no VARCHAR)"}, {"answer": "SELECT task_no FROM table_name_98 WHERE hand_grenade_user = \"cathy\"", "question": "Which task had Cathy as the hand grenade user?", "context": "CREATE TABLE table_name_98 (task_no VARCHAR, hand_grenade_user VARCHAR)"}, {"answer": "SELECT MAX(task_no) FROM table_name_94 WHERE date_given = \"january 22, 2010 (day 111)\"", "question": "What is the task number on January 22, 2010 (day 111)?", "context": "CREATE TABLE table_name_94 (task_no INTEGER, date_given VARCHAR)"}, {"answer": "SELECT record FROM table_name_86 WHERE streak = \"win 7\"", "question": "What was the record in the win 7 streak?", "context": "CREATE TABLE table_name_86 (record VARCHAR, streak VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE opponent = \"detroit pistons\"", "question": "What was the score when the opponent was Detroit Pistons?", "context": "CREATE TABLE table_name_46 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE streak = \"won 8\"", "question": "What is the date when streak was won 8?", "context": "CREATE TABLE table_name_50 (date VARCHAR, streak VARCHAR)"}, {"answer": "SELECT total_trips__am_pm_ FROM table_name_47 WHERE operated_by = \"atlantic coast charters\"", "question": "What trips are operated by Atlantic coast charters?", "context": "CREATE TABLE table_name_47 (total_trips__am_pm_ VARCHAR, operated_by VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_4 WHERE result = \"l 10-7\" AND attendance < 37 OFFSET 500", "question": "What was the average week of a game with a result of l 10-7 attended by 37,500?", "context": "CREATE TABLE table_name_4 (week INTEGER, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_33 WHERE date = \"october 30, 1938\"", "question": "What was the average attendance on October 30, 1938?", "context": "CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE city = \"belgrade\" AND type_of_game = \"friendly\"", "question": "When did Yugoslavia play a friendly game in Belgrade?", "context": "CREATE TABLE table_name_88 (date VARCHAR, city VARCHAR, type_of_game VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE type_of_game = \"wc 1974 qualifying\"", "question": "When was the WC 1974 Qualifying game?", "context": "CREATE TABLE table_name_94 (date VARCHAR, type_of_game VARCHAR)"}, {"answer": "SELECT city FROM table_name_2 WHERE opponent = \"norway\"", "question": "What city did Yugoslavia play Norway in?", "context": "CREATE TABLE table_name_2 (city VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_90 WHERE results\u00b9 = \"2:3\"", "question": "Who did Yugoslavia play against that led to a result of 2:3?", "context": "CREATE TABLE table_name_90 (opponent VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_name_75 WHERE outcome = \"runner-up\" AND date = \"9 february 1992\"", "question": "What is the final score of the runner-up on 9 February 1992?", "context": "CREATE TABLE table_name_75 (score_in_final VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_79 WHERE time = \"1:50\"", "question": "Which opponent has a time of 1:50?", "context": "CREATE TABLE table_name_79 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_85 WHERE time = \"2:35\"", "question": "Which opponent has a time of 2:35?", "context": "CREATE TABLE table_name_85 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_27 WHERE opponent = \"stephanie palmer\"", "question": "What is the time when the opponent is stephanie palmer?", "context": "CREATE TABLE table_name_27 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_99 WHERE opponent_in_the_final = \"samantha stosur\"", "question": "What tournament has Samantha Stosur as the opponent in the final?", "context": "CREATE TABLE table_name_99 (tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE tournament = \"z\u00fcrich, switzerland\"", "question": "What date is the z\u00fcrich, switzerland tournament?", "context": "CREATE TABLE table_name_36 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE surface = \"hard\" AND tournament = \"sydney, australia\"", "question": "What is the date of the Sydney, Australia tournament with a hard surface?", "context": "CREATE TABLE table_name_50 (date VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT result FROM table_name_78 WHERE date = \"4 april 1993\"", "question": "Which Result has a Date of 4 april 1993?", "context": "CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_53 WHERE result = \"5-1\" AND score = \"3-0\"", "question": "Which Venue has a Result of 5-1, and a Score of 3-0?", "context": "CREATE TABLE table_name_53 (venue VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE result = \"5-1\"", "question": "Which Score has a Result of 5-1?", "context": "CREATE TABLE table_name_68 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_72 WHERE result = \"5-1\" AND score = \"1-0\"", "question": "Which Venue has a Result of 5-1, and a Score of 1-0?", "context": "CREATE TABLE table_name_72 (venue VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_18 WHERE result = \"5-0\"", "question": "Which Venue has a Result of 5-0?", "context": "CREATE TABLE table_name_18 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_89 WHERE winner = \"gary player\"", "question": "What did winner Gary Player par?", "context": "CREATE TABLE table_name_89 (to_par VARCHAR, winner VARCHAR)"}, {"answer": "SELECT SUM(pata) FROM table_name_38 WHERE model = \"nforce professional 3400 mcp\"", "question": "How many PATAs does an nForce Professional 3400 MCP have?", "context": "CREATE TABLE table_name_38 (pata INTEGER, model VARCHAR)"}, {"answer": "SELECT pci_express FROM table_name_11 WHERE memory = \"ddr 266/333/400 registered/ecc\" AND sound = \"enhanced ac'97 2.3\"", "question": "Which PCI-Express has a DDR 266/333/400 Registered/ECC memory and Enhanced AC'97 2.3 sound?", "context": "CREATE TABLE table_name_11 (pci_express VARCHAR, memory VARCHAR, sound VARCHAR)"}, {"answer": "SELECT fsb_ht_frequency__mhz_ FROM table_name_79 WHERE sata > 6 AND memory = \"ddr 266/333/400 registered/ecc\"", "question": "Which FSB/HT frequency (MHz) has a SATA larger than 6 and DDR 266/333/400 Registered/ECC memory?", "context": "CREATE TABLE table_name_79 (fsb_ht_frequency__mhz_ VARCHAR, sata VARCHAR, memory VARCHAR)"}, {"answer": "SELECT network FROM table_name_29 WHERE model = \"nforce professional 3400 mcp\"", "question": "Which network has model nForce Professional 3400 MCP?", "context": "CREATE TABLE table_name_29 (network VARCHAR, model VARCHAR)"}, {"answer": "SELECT model FROM table_name_33 WHERE displacement = \"1,868 cc\"", "question": "What model has an engine of 1,868 cc?", "context": "CREATE TABLE table_name_33 (model VARCHAR, displacement VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_31 WHERE round = 8", "question": "What College team has 8 rounds?", "context": "CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, round VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_47 WHERE player = \"daryn fersovich\"", "question": "What nationality is Daryn Fersovich?", "context": "CREATE TABLE table_name_47 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE ground = \"subiaco\"", "question": "What day was the ground subiaco?", "context": "CREATE TABLE table_name_8 (date VARCHAR, ground VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_54 WHERE home_team = \"melbourne\"", "question": "What was the crowd size for the Home team of melbourne?", "context": "CREATE TABLE table_name_54 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE couple = \"cristi\u00e1n & cheryl\" AND style = \"cha-cha-cha\"", "question": "Which Score has a Couple of cristi\u00e1n & cheryl, and a Style of cha-cha-cha?", "context": "CREATE TABLE table_name_7 (score VARCHAR, couple VARCHAR, style VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE couple = \"jason & edyta\" AND style = \"freestyle\"", "question": "Which Score has a Couple comprised of jason & edyta, and a Style of freestyle?", "context": "CREATE TABLE table_name_2 (score VARCHAR, couple VARCHAR, style VARCHAR)"}, {"answer": "SELECT music FROM table_name_20 WHERE style = \"jive\"", "question": "Which music is jive?", "context": "CREATE TABLE table_name_20 (music VARCHAR, style VARCHAR)"}, {"answer": "SELECT couple FROM table_name_82 WHERE result = \"third place\" AND style = \"cha-cha-cha\"", "question": "Which Couple has a Result of third place, and a Style of cha-cha-cha?", "context": "CREATE TABLE table_name_82 (couple VARCHAR, result VARCHAR, style VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE result = \"third place\" AND style = \"cha-cha-cha\"", "question": "Which Score has a Result of third place, and a Style of cha-cha-cha?", "context": "CREATE TABLE table_name_18 (score VARCHAR, result VARCHAR, style VARCHAR)"}, {"answer": "SELECT music FROM table_name_22 WHERE score = \"30 (10, 10, 10)\" AND style = \"cha-cha-cha\"", "question": "Which Music has a Score of 30 (10, 10, 10), and a Style of cha-cha-cha?", "context": "CREATE TABLE table_name_22 (music VARCHAR, score VARCHAR, style VARCHAR)"}, {"answer": "SELECT australian_national_kennel_council_toy_dogs_group FROM table_name_98 WHERE the_kennel_club__uk__toy_group = \"papillon\"", "question": "What is the Australian National Kennel Council Toy Dogs Group with papillon as the Kennel Club breed?", "context": "CREATE TABLE table_name_98 (australian_national_kennel_council_toy_dogs_group VARCHAR, the_kennel_club__uk__toy_group VARCHAR)"}, {"answer": "SELECT new_zealand_kennel_club_toy_group FROM table_name_26 WHERE australian_national_kennel_council_toy_dogs_group = \"papillon\"", "question": "What is the New Zealand Kennel Club Toy Group with papillon as the Australian National Kennel Council Toy Dogs Group breed?", "context": "CREATE TABLE table_name_26 (new_zealand_kennel_club_toy_group VARCHAR, australian_national_kennel_council_toy_dogs_group VARCHAR)"}, {"answer": "SELECT canadian_kennel_club_toy_dogs_group FROM table_name_49 WHERE australian_national_kennel_council_toy_dogs_group = \"australian silky terrier\"", "question": "What is the Canadian Kennel Club Toy Dogs Group with the australian silky terrier as the Australian National Kennel Council Toy Dogs Group breed?", "context": "CREATE TABLE table_name_49 (canadian_kennel_club_toy_dogs_group VARCHAR, australian_national_kennel_council_toy_dogs_group VARCHAR)"}, {"answer": "SELECT the_kennel_club__uk__toy_group FROM table_name_65 WHERE american_kennel_club_toy_group = \"shih-tzu\"", "question": "What is the Kennel Club (UK) Toy Group with the shih-tzu as the American Kennel Club Toy Group breed?", "context": "CREATE TABLE table_name_65 (the_kennel_club__uk__toy_group VARCHAR, american_kennel_club_toy_group VARCHAR)"}, {"answer": "SELECT prize FROM table_name_31 WHERE entrants = 453", "question": "What prize amount was awarded at the event with 453 entrants?", "context": "CREATE TABLE table_name_31 (prize VARCHAR, entrants VARCHAR)"}, {"answer": "SELECT results FROM table_name_78 WHERE runner_up = \"michael demichele\"", "question": "What were the overall event results when Michael Demichele was runner-up?", "context": "CREATE TABLE table_name_78 (results VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT MIN(entrants) FROM table_name_90 WHERE winner = \"grant hinkle\"", "question": "What was the fewest entrants in an event won by Grant Hinkle?", "context": "CREATE TABLE table_name_90 (entrants INTEGER, winner VARCHAR)"}, {"answer": "SELECT AVG(entrants) FROM table_name_21 WHERE winner = \"frank gary\"", "question": "How many entrants did the events won by Frank Gary average?", "context": "CREATE TABLE table_name_21 (entrants INTEGER, winner VARCHAR)"}, {"answer": "SELECT medal FROM table_name_60 WHERE games = \"1996 atlanta\" AND sport = \"wrestling\"", "question": "What medal was won in the 1996 Atlanta games in wrestling?", "context": "CREATE TABLE table_name_60 (medal VARCHAR, games VARCHAR, sport VARCHAR)"}, {"answer": "SELECT name FROM table_name_33 WHERE games = \"2008 beijing\"", "question": "Who won a medal at the 2008 Beijing Olympics?", "context": "CREATE TABLE table_name_33 (name VARCHAR, games VARCHAR)"}, {"answer": "SELECT event FROM table_name_1 WHERE name = \"cristina iovu\"", "question": "What event did Cristina Iovu participate in?", "context": "CREATE TABLE table_name_1 (event VARCHAR, name VARCHAR)"}, {"answer": "SELECT games FROM table_name_71 WHERE medal = \"bronze\" AND sport = \"weightlifting\" AND event = \"94kg men's weightlifting\"", "question": "At which games was a bronze medal won in the 94kg men's weightlifting event?", "context": "CREATE TABLE table_name_71 (games VARCHAR, event VARCHAR, medal VARCHAR, sport VARCHAR)"}, {"answer": "SELECT sport FROM table_name_22 WHERE event = \"94kg men's weightlifting\"", "question": "Which sport has 94kg men's weightlifting as one of its events?", "context": "CREATE TABLE table_name_22 (sport VARCHAR, event VARCHAR)"}, {"answer": "SELECT name FROM table_name_90 WHERE pick__number < 11 AND position = \"quarterback\"", "question": "What is the Name of the Quarterback with a Pick # less than 11?", "context": "CREATE TABLE table_name_90 (name VARCHAR, pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT surname FROM table_name_12 WHERE first = \"donovan\"", "question": "What is donovan's surname?", "context": "CREATE TABLE table_name_12 (surname VARCHAR, first VARCHAR)"}, {"answer": "SELECT throws FROM table_name_39 WHERE first = \"james\"", "question": "How many throws did james get?", "context": "CREATE TABLE table_name_39 (throws VARCHAR, first VARCHAR)"}, {"answer": "SELECT dob FROM table_name_5 WHERE surname = \"biddle\"", "question": "When is Biddle's DOB?", "context": "CREATE TABLE table_name_5 (dob VARCHAR, surname VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_27 WHERE attendance = \"33,628\"", "question": "Who is the opponent of the game with 33,628 folks in attendance?", "context": "CREATE TABLE table_name_27 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT loss FROM table_name_12 WHERE attendance = \"38,062\"", "question": "What is the loss of the game with 38,062 folks in attendance?", "context": "CREATE TABLE table_name_12 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE attendance = \"33,531\"", "question": "What is the score of the game that 33,531 people went too?", "context": "CREATE TABLE table_name_19 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE attendance = \"38,062\"", "question": "What is the date of the game with 38,062 people in attendance?", "context": "CREATE TABLE table_name_80 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_11 WHERE player = \"brendan locke\"", "question": "What is Brendan Locke's College/Junior/Club Team (League)?", "context": "CREATE TABLE table_name_11 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_38 WHERE position = \"right wing\" AND round = \"sup\"", "question": "What League's Round is Sup and Position is Right Wing?", "context": "CREATE TABLE table_name_38 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_24 WHERE position = \"goaltender\"", "question": "In what Round is the Position Goaltender?", "context": "CREATE TABLE table_name_24 (round VARCHAR, position VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_94 WHERE position = \"left wing\" AND player = \"yanick dupre\"", "question": "In what League is Left Wing Yanick Dupre?", "context": "CREATE TABLE table_name_94 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_31 WHERE position = \"right wing\" AND round = \"6\"", "question": "In what League in Round 6 is the Position Right Wing?", "context": "CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_70 WHERE position = \"center\" AND player = \"john parco\"", "question": "In what Round is John Parco a Center?", "context": "CREATE TABLE table_name_70 (round VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_21 WHERE draws = \"15\"", "question": "Which team had 15 draws?", "context": "CREATE TABLE table_name_21 (team VARCHAR, draws VARCHAR)"}, {"answer": "SELECT season FROM table_name_79 WHERE losses = \"16\" AND team = \"hampshire\"", "question": "Which season had 16 losses for the Hampshire team?", "context": "CREATE TABLE table_name_79 (season VARCHAR, losses VARCHAR, team VARCHAR)"}, {"answer": "SELECT season FROM table_name_61 WHERE wins = \"0\" AND losses = \"5\" AND team = \"surrey\"", "question": "Which season had 0 wins and 5 losses for the Surrey team?", "context": "CREATE TABLE table_name_61 (season VARCHAR, team VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT season FROM table_name_48 WHERE draws = \"10\"", "question": "Which season had 10 draws?", "context": "CREATE TABLE table_name_48 (season VARCHAR, draws VARCHAR)"}, {"answer": "SELECT draws FROM table_name_72 WHERE team = \"durham\"", "question": "How many draws did Durham have?", "context": "CREATE TABLE table_name_72 (draws VARCHAR, team VARCHAR)"}, {"answer": "SELECT wins FROM table_name_72 WHERE draws = \"8\"", "question": "How many wins happened with 8 draws?", "context": "CREATE TABLE table_name_72 (wins VARCHAR, draws VARCHAR)"}, {"answer": "SELECT grid FROM table_name_79 WHERE driver = \"jenson button\"", "question": "What was the grid of Jenson Button?", "context": "CREATE TABLE table_name_79 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_31 WHERE laps = \"56\" AND grid = \"15\"", "question": "Who was the constructor of the car that went 56 laps and had a grid of 15?", "context": "CREATE TABLE table_name_31 (constructor VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_66 WHERE grid = \"20\"", "question": "Who was the contstructor of the car having a grid of 20?", "context": "CREATE TABLE table_name_66 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_96 WHERE constructor = \"renault\" AND laps = \"40\"", "question": "What was the time of the car having a constructor of Renault, which went 40 laps?", "context": "CREATE TABLE table_name_96 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_29 WHERE grid = \"6\"", "question": "Who constructed the car that had a grid of 6?", "context": "CREATE TABLE table_name_29 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(podiums) FROM table_name_20 WHERE season = \"2006\" AND races > 16", "question": "Can you tell me the sum of Podiums that has the Season of 2006, and the Races larger than 16?", "context": "CREATE TABLE table_name_20 (podiums INTEGER, season VARCHAR, races VARCHAR)"}, {"answer": "SELECT SUM(flap) FROM table_name_40 WHERE pole > 0 AND podiums = 6", "question": "Can you tell me the sum of FLap that has the Pole larger than 0, and the Podiums of 6?", "context": "CREATE TABLE table_name_40 (flap INTEGER, pole VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT home FROM table_name_42 WHERE record = \"33-18-9\"", "question": "Name the home with record of 33-18-9", "context": "CREATE TABLE table_name_42 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE home = \"detroit\" AND record = \"33-18-9\"", "question": "Name the score for detroit home and record of 33-18-9", "context": "CREATE TABLE table_name_85 (score VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_89 WHERE visitor = \"toronto\" AND record = \"29-17-8\"", "question": "Name the score for toronto visitor and record of 29-17-8", "context": "CREATE TABLE table_name_89 (score VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_25 WHERE visitor = \"detroit\" AND date = \"february 29\"", "question": "Name the home for detroit visitor and date of february 29", "context": "CREATE TABLE table_name_25 (home VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT music FROM table_name_60 WHERE record_label = \"moviebox/ speed records / music waves\"", "question": "Which Music has a Record label of moviebox/ speed records / music waves?", "context": "CREATE TABLE table_name_60 (music VARCHAR, record_label VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_69 WHERE record_label = \"supertone melodies\"", "question": "Which Year is the highest one that has a Record label of supertone melodies?", "context": "CREATE TABLE table_name_69 (year INTEGER, record_label VARCHAR)"}, {"answer": "SELECT record_label FROM table_name_84 WHERE album = \"tera roop\"", "question": "Which Record label has an Album of tera roop?", "context": "CREATE TABLE table_name_84 (record_label VARCHAR, album VARCHAR)"}, {"answer": "SELECT record_label FROM table_name_63 WHERE album = \"rambo\"", "question": "Which Record label has an Album of rambo?", "context": "CREATE TABLE table_name_63 (record_label VARCHAR, album VARCHAR)"}, {"answer": "SELECT info FROM table_name_95 WHERE album = \"romeo\"", "question": "Which Info has an Album of romeo?", "context": "CREATE TABLE table_name_95 (info VARCHAR, album VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_63 WHERE record = \"58\u201349\"", "question": "What was the average attendance when the record was 58\u201349?", "context": "CREATE TABLE table_name_63 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_16 WHERE score = \"8\u20137\"", "question": "What was the attendance when the score was 8\u20137?", "context": "CREATE TABLE table_name_16 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_84 WHERE date = \"july 18\"", "question": "What was the attendance for july 18?", "context": "CREATE TABLE table_name_84 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_13 WHERE score = \"1 up\"", "question": "How many strokes to par when the score is 1 up?", "context": "CREATE TABLE table_name_13 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT series FROM table_name_12 WHERE game = \"game 5\"", "question": "Name the series for game 5", "context": "CREATE TABLE table_name_12 (series VARCHAR, game VARCHAR)"}, {"answer": "SELECT site FROM table_name_26 WHERE game = \"game 2\"", "question": "Name the site for game of game 2", "context": "CREATE TABLE table_name_26 (site VARCHAR, game VARCHAR)"}, {"answer": "SELECT site FROM table_name_49 WHERE game = \"game 6\"", "question": "Name the site with game of game 6", "context": "CREATE TABLE table_name_49 (site VARCHAR, game VARCHAR)"}, {"answer": "SELECT series FROM table_name_58 WHERE game = \"game 6\"", "question": "Name the series with game of game 6", "context": "CREATE TABLE table_name_58 (series VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_63 WHERE high_points = \"dwyane wade (27)\"", "question": "What is the location attendance from Dwyane Wade (27) high points?", "context": "CREATE TABLE table_name_63 (location_attendance VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_98 WHERE high_points = \"dorell wright (20)\"", "question": "What was the high assists from a high points of dorell wright (20)?", "context": "CREATE TABLE table_name_98 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_29 WHERE date = \"april 14\"", "question": "What was the high rebounds from the date of April 14?", "context": "CREATE TABLE table_name_29 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT fuel_propulsion FROM table_name_41 WHERE year = 1975 AND numbers__quantity_ordered_ = \"4756-4788 (33 buses)\"", "question": "For the year 1975, what is Propulsion, with a Number (quantity ordered) of 4756-4788 (33 buses)?", "context": "CREATE TABLE table_name_41 (fuel_propulsion VARCHAR, year VARCHAR, numbers__quantity_ordered_ VARCHAR)"}, {"answer": "SELECT year AS Retired FROM table_name_2 WHERE fuel_propulsion = \"diesel\" AND length = \"40'\" AND numbers__quantity_ordered_ = \"3701-3729 (29 buses)\"", "question": "What year was the diesel fuel propulsion, with a length of 40', and numbers (quanity ordered) of 3701-3729 (29 buses), retired?", "context": "CREATE TABLE table_name_2 (year VARCHAR, numbers__quantity_ordered_ VARCHAR, fuel_propulsion VARCHAR, length VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_27 WHERE record = \"27-22\"", "question": "What is the location attendance of the game with a 27-22 record?", "context": "CREATE TABLE table_name_27 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_52 WHERE date = \"february 25\"", "question": "What is the location attendance of the game on February 25?", "context": "CREATE TABLE table_name_52 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(fall_08) FROM table_name_96 WHERE fall_09 < 82 AND fall_06 = 5 AND fall_05 < 3", "question": "What's the largest Fall 08 number when fall 09 is less than 82, fall 06 is 5, and fall 05 is less than 3?", "context": "CREATE TABLE table_name_96 (fall_08 INTEGER, fall_05 VARCHAR, fall_09 VARCHAR, fall_06 VARCHAR)"}, {"answer": "SELECT AVG(fall_09) FROM table_name_34 WHERE fall_05 < 3", "question": "What is the mean Fall 09 number where fall 05 is less than 3?", "context": "CREATE TABLE table_name_34 (fall_09 INTEGER, fall_05 INTEGER)"}, {"answer": "SELECT COUNT(fall_05) FROM table_name_31 WHERE fall_08 > 5 AND fall_06 > 7 AND states = \"maryland\" AND fall_09 > 471", "question": "What is the sum amount of fall 05 when fall 08 is more than 5, fall 06 is more than 7, the state is Maryland, and fall 09 is more than 471?", "context": "CREATE TABLE table_name_31 (fall_05 VARCHAR, fall_09 VARCHAR, states VARCHAR, fall_08 VARCHAR, fall_06 VARCHAR)"}, {"answer": "SELECT MIN(fall_05) FROM table_name_22 WHERE fall_09 < 14 AND fall_08 > 5", "question": "What's the smallest fall 05 number when fall 09 is less than 14 and fall 08 is more than 5?", "context": "CREATE TABLE table_name_22 (fall_05 INTEGER, fall_09 VARCHAR, fall_08 VARCHAR)"}, {"answer": "SELECT notes FROM table_name_17 WHERE time = \"men's speed skating\"", "question": "What is in the notes for men's speed skating?", "context": "CREATE TABLE table_name_17 (notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE location = \"berlin\"", "question": "What's the date when the location is Berlin?", "context": "CREATE TABLE table_name_76 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_70 WHERE distance = \"men's speed skating\"", "question": "What's the location for men's speed skating?", "context": "CREATE TABLE table_name_70 (location VARCHAR, distance VARCHAR)"}, {"answer": "SELECT location FROM table_name_27 WHERE \"notes\" = \"notes\"", "question": "What's the location when the notes area is notes?", "context": "CREATE TABLE table_name_27 (location VARCHAR)"}, {"answer": "SELECT notes FROM table_name_96 WHERE location = \"berlin\"", "question": "What is the notes left for Berlin?", "context": "CREATE TABLE table_name_96 (notes VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_name_98 WHERE location = \"angola\" AND entered_service = \"1988\"", "question": "Which is located in Angola and entered service in 1988?", "context": "CREATE TABLE table_name_98 (name VARCHAR, location VARCHAR, entered_service VARCHAR)"}, {"answer": "SELECT type FROM table_name_70 WHERE entered_service = \"2000\"", "question": "What type entered service in 2000?", "context": "CREATE TABLE table_name_70 (type VARCHAR, entered_service VARCHAR)"}, {"answer": "SELECT water_depth FROM table_name_59 WHERE location = \"nigeria\" AND name = \"sedco 702\"", "question": "What is the water depth of Sedco 702, located in Nigeria?", "context": "CREATE TABLE table_name_59 (water_depth VARCHAR, location VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_72 WHERE location = \"nigeria\"", "question": "Which is located in Nigeria?", "context": "CREATE TABLE table_name_72 (name VARCHAR, location VARCHAR)"}, {"answer": "SELECT type FROM table_name_87 WHERE location = \"brazil\" AND entered_service = \"1976/1997\"", "question": "Which type entered service in 1976/1997 and is located in Brazil?", "context": "CREATE TABLE table_name_87 (type VARCHAR, location VARCHAR, entered_service VARCHAR)"}, {"answer": "SELECT location FROM table_name_31 WHERE type = \"semi\" AND entered_service = \"1988\" AND name = \"transocean richardson\"", "question": "Where is Transocean Richardson, a semi entered into service in 1988?", "context": "CREATE TABLE table_name_31 (location VARCHAR, name VARCHAR, type VARCHAR, entered_service VARCHAR)"}, {"answer": "SELECT COUNT(yds_att) FROM table_name_10 WHERE net_yds = 1818 AND rank > 1", "question": "What is the total number of Yds/Att where Net Yds was 1818, and Rank was larger than 1?", "context": "CREATE TABLE table_name_10 (yds_att VARCHAR, net_yds VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_46 WHERE attempts = 319 AND year > 2000", "question": "What is the lowest Rank when Attempts was 319, and the Year was larger than 2000?", "context": "CREATE TABLE table_name_46 (rank INTEGER, attempts VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(attempts) FROM table_name_95 WHERE rank > 4 AND net_yds < 1674", "question": "What is the total number of Attempts when Rank was larger than 4, and Net Yds was smaller than 1674?", "context": "CREATE TABLE table_name_95 (attempts VARCHAR, rank VARCHAR, net_yds VARCHAR)"}, {"answer": "SELECT new_conference FROM table_name_28 WHERE team_nickname = \"gauchos\"", "question": "What is the new conference for the Gauchos team?", "context": "CREATE TABLE table_name_28 (new_conference VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT new_classification FROM table_name_69 WHERE location = \"la mirada, california\"", "question": "What is the new classification for La Mirada, California?", "context": "CREATE TABLE table_name_69 (new_classification VARCHAR, location VARCHAR)"}, {"answer": "SELECT tenure FROM table_name_28 WHERE team_nickname = \"tritons\"", "question": "What is the tenure for the Tritons team?", "context": "CREATE TABLE table_name_28 (tenure VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_40 WHERE march = 28", "question": "Which opponent was present on March 28?", "context": "CREATE TABLE table_name_40 (opponent VARCHAR, march VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_73 WHERE points > 99", "question": "What is the mean game number when the points scored were more than 99?", "context": "CREATE TABLE table_name_73 (game INTEGER, points INTEGER)"}, {"answer": "SELECT opponent FROM table_name_21 WHERE game = 7", "question": "Who is the opponent in game 7?", "context": "CREATE TABLE table_name_21 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(december) FROM table_name_63 WHERE record = \"7-2-2\" AND game < 11", "question": "What day in December was the game before game 11 with a record of 7-2-2?", "context": "CREATE TABLE table_name_63 (december INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(december) FROM table_name_11 WHERE opponent = \"boston bruins\"", "question": "What is the day in December of the game against the Boston Bruins?", "context": "CREATE TABLE table_name_11 (december VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(december) FROM table_name_25 WHERE record = \"8-2-3\"", "question": "What is the average day in December of the game with a 8-2-3 record?", "context": "CREATE TABLE table_name_25 (december INTEGER, record VARCHAR)"}, {"answer": "SELECT SUM(seats) FROM table_name_53 WHERE quantity > 45", "question": "How many seats have a quantity over 45?", "context": "CREATE TABLE table_name_53 (seats INTEGER, quantity INTEGER)"}, {"answer": "SELECT owner FROM table_name_60 WHERE seats = 84", "question": "Which owner has 84 seats?", "context": "CREATE TABLE table_name_60 (owner VARCHAR, seats VARCHAR)"}, {"answer": "SELECT delivery FROM table_name_93 WHERE quantity = 16 AND standing > 128", "question": "Which deliver has 16 and a standing more than 128?", "context": "CREATE TABLE table_name_93 (delivery VARCHAR, quantity VARCHAR, standing VARCHAR)"}, {"answer": "SELECT host_city FROM table_name_43 WHERE hosts = \"alicia keys\"", "question": "What is the host city that has Alicia Keys listed as a host?", "context": "CREATE TABLE table_name_43 (host_city VARCHAR, hosts VARCHAR)"}, {"answer": "SELECT host_city FROM table_name_24 WHERE venue = \"singapore indoor stadium\" AND theme = \"valentine's day\"", "question": "What is the host city of the Singapore Indoor Stadium venue and a Valentine's Day theme?", "context": "CREATE TABLE table_name_24 (host_city VARCHAR, venue VARCHAR, theme VARCHAR)"}, {"answer": "SELECT year FROM table_name_78 WHERE host_city = \"bangkok\" AND hosts = \"alicia keys\"", "question": "What year will Bangkok be the host city and Alicia Keys host?", "context": "CREATE TABLE table_name_78 (year VARCHAR, host_city VARCHAR, hosts VARCHAR)"}, {"answer": "SELECT hosts FROM table_name_88 WHERE host_city = \"bangkok\" AND theme = \"codehunters\"", "question": "Who are the hosts from the event with a theme of codehunters and the host city of Bangkok?", "context": "CREATE TABLE table_name_88 (hosts VARCHAR, host_city VARCHAR, theme VARCHAR)"}, {"answer": "SELECT hosts FROM table_name_2 WHERE year = \"2004\"", "question": "Who are the hosts for the 2004 event?", "context": "CREATE TABLE table_name_2 (hosts VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE margin_of_victory = \"1 stroke\" AND runner_s__up = \"greg kraft\"", "question": "What date has a margin of victory of 1 stroke over Greg Kraft?", "context": "CREATE TABLE table_name_21 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_61 WHERE runner_s__up = \"steve rintoul\"", "question": "What was the margin of victory over Steve Rintoul?", "context": "CREATE TABLE table_name_61 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_51 WHERE runner_s__up = \"brad faxon\"", "question": "What was the margin of victory over Brad Faxon?", "context": "CREATE TABLE table_name_51 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT years FROM table_name_62 WHERE model = \"2.0 tdi (cr) dpf\"", "question": "What years show Model of 2.0 tdi (cr) dpf?", "context": "CREATE TABLE table_name_62 (years VARCHAR, model VARCHAR)"}, {"answer": "SELECT power FROM table_name_28 WHERE model = \"2.0 tdi (cr) dpf\" AND years = \"2010\u20132011\"", "question": "What is the power for model  2.0 tdi (cr) dpf, and a Years of 2010\u20132011?", "context": "CREATE TABLE table_name_28 (power VARCHAR, model VARCHAR, years VARCHAR)"}, {"answer": "SELECT torque FROM table_name_37 WHERE model = \"2.0 bitdi (cr) dpf\" AND years = \"2010\u2013\"", "question": "What is the torque for Model of 2.0 bitdi (cr) dpf, in 2010\u2013?", "context": "CREATE TABLE table_name_37 (torque VARCHAR, model VARCHAR, years VARCHAR)"}, {"answer": "SELECT engine FROM table_name_87 WHERE model = \"2.0 bitdi (cr) dpf\" AND torque = \"n\u00b7m (lb\u00b7ft) @ 1500\u20132000 rpm\"", "question": "What is the engine for model 2.0 bitdi (cr) dpf, with a Torque of n\u00b7m (lb\u00b7ft) @ 1500\u20132000 rpm?", "context": "CREATE TABLE table_name_87 (engine VARCHAR, model VARCHAR, torque VARCHAR)"}, {"answer": "SELECT court_rank FROM table_name_6 WHERE lineage = \"son of norihiro\"", "question": "What is the Court Rank of Son of Norihiro's Lineage?", "context": "CREATE TABLE table_name_6 (court_rank VARCHAR, lineage VARCHAR)"}, {"answer": "SELECT 1811 FROM table_name_47 WHERE \"1801\" = \"1801\"", "question": "Name the 1811 for 1801 of 1801", "context": "CREATE TABLE table_name_47 (Id VARCHAR)"}, {"answer": "SELECT 1861 FROM table_name_97 WHERE 1851 = \"5291\"", "question": "Name the 1861 with 1851 of 5291", "context": "CREATE TABLE table_name_97 (Id VARCHAR)"}, {"answer": "SELECT 1901 FROM table_name_12 WHERE 1851 = \"1961\"", "question": "Name the 1901 with 1851 of 1961", "context": "CREATE TABLE table_name_12 (Id VARCHAR)"}, {"answer": "SELECT 1821 FROM table_name_1 WHERE 1811 = \"1921\"", "question": "Name the 1821 with 1811 of 1921", "context": "CREATE TABLE table_name_1 (Id VARCHAR)"}, {"answer": "SELECT 1821 FROM table_name_30 WHERE 1861 = \"3733\"", "question": "Name the 1821 with 1861 of 3733", "context": "CREATE TABLE table_name_30 (Id VARCHAR)"}, {"answer": "SELECT COUNT(area__km_2__) FROM table_name_20 WHERE population < 90", "question": "What's the sum of the Area (KM 2) that's got a Population that's smaller than 90?", "context": "CREATE TABLE table_name_20 (area__km_2__ VARCHAR, population INTEGER)"}, {"answer": "SELECT MIN(code) FROM table_name_92 WHERE most_spoken_language = \"xhosa\" AND place = \"addo elephant national park\" AND area__km_2__ < 1.08", "question": "What's the lowest Code that's got a Most Spoke Language of Xhosa, a Place of Addo Elephant National Park, and an Area (KM 2) that's smaller than 1.08?", "context": "CREATE TABLE table_name_92 (code INTEGER, area__km_2__ VARCHAR, most_spoken_language VARCHAR, place VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE game = 31", "question": "What is the score at game 31?", "context": "CREATE TABLE table_name_19 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_22 WHERE rider = \"ruben xaus\"", "question": "What is the Grid for Rider Ruben Xaus?", "context": "CREATE TABLE table_name_22 (grid INTEGER, rider VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_8 WHERE grid > 3 AND time = \"39:24.967\"", "question": "What was the number of Laps with a Grid of more than 3 and Time of 39:24.967?", "context": "CREATE TABLE table_name_8 (laps INTEGER, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT rider FROM table_name_14 WHERE time = \"+1:08.291\"", "question": "What Rider had a Time of +1:08.291?", "context": "CREATE TABLE table_name_14 (rider VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_78 WHERE bike = \"ducati 999 f06\" AND time = \"+53.488\" AND grid > 11", "question": "Using a Ducati 999 F06 Bike, how many Laps with a Grid greater than 11 and Time of +53.488?", "context": "CREATE TABLE table_name_78 (laps VARCHAR, grid VARCHAR, bike VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE record = \"13\u201317\u20133\"", "question": "When was there a record of 13\u201317\u20133?", "context": "CREATE TABLE table_name_63 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_31 WHERE home = \"vancouver\" AND date = \"december 8\"", "question": "What record was made in vancouver on December 8?", "context": "CREATE TABLE table_name_31 (record VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_94 WHERE visitor = \"california\"", "question": "What was the home who had California visiting?", "context": "CREATE TABLE table_name_94 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_41 WHERE visitor = \"philadelphia\" AND date = \"december 1\"", "question": "What's the score on December 1 when Philadelphia visited?", "context": "CREATE TABLE table_name_41 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT type_of_game FROM table_name_5 WHERE results\u00b9 = \"1:6\"", "question": "What was the type of game with a 1:6 result?", "context": "CREATE TABLE table_name_5 (type_of_game VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_28 WHERE city = \"belgrade\" AND results\u00b9 = \"0:2\"", "question": "Who was the opponent at the game in Belgrade with a 0:2 result?", "context": "CREATE TABLE table_name_28 (opponent VARCHAR, city VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT city FROM table_name_69 WHERE results\u00b9 = \"1:0\"", "question": "What city held the game with a result of 1:0?", "context": "CREATE TABLE table_name_69 (city VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT type_of_game FROM table_name_7 WHERE results\u00b9 = \"1:2\"", "question": "What type of game had a result of 1:2?", "context": "CREATE TABLE table_name_7 (type_of_game VARCHAR, results\u00b9 VARCHAR)"}, {"answer": "SELECT results\u00b9 FROM table_name_54 WHERE opponent = \"hungary\"", "question": "What was the result of the game against Hungary?", "context": "CREATE TABLE table_name_54 (results\u00b9 VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT remixed_by FROM table_name_70 WHERE version = \"radio edit\"", "question": "Who was the Radio Edit Version remixed by?", "context": "CREATE TABLE table_name_70 (remixed_by VARCHAR, version VARCHAR)"}, {"answer": "SELECT version FROM table_name_45 WHERE year < 1996", "question": "What was the Version prior to 1996?", "context": "CREATE TABLE table_name_45 (version VARCHAR, year INTEGER)"}, {"answer": "SELECT date FROM table_name_76 WHERE catalog = \"573 194-2\"", "question": "What is the Date of Catalog 573 194-2?", "context": "CREATE TABLE table_name_76 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_65 WHERE format = \"cd maxi\"", "question": "What is the Label of the release in CD Maxi Format?", "context": "CREATE TABLE table_name_65 (label VARCHAR, format VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_13 WHERE format = \"cd single\"", "question": "What is the Catalog number of the CD Single?", "context": "CREATE TABLE table_name_13 (catalog VARCHAR, format VARCHAR)"}, {"answer": "SELECT make FROM table_name_33 WHERE pos > 9", "question": "Which Make has a Pos larger than 9?", "context": "CREATE TABLE table_name_33 (make VARCHAR, pos INTEGER)"}, {"answer": "SELECT SUM(pos) FROM table_name_23 WHERE driver = \"brian scott (r)\"", "question": "Which Pos has a Driver of brian scott (r)?", "context": "CREATE TABLE table_name_23 (pos INTEGER, driver VARCHAR)"}, {"answer": "SELECT COUNT(pos) FROM table_name_49 WHERE driver = \"todd bodine\" AND car__number > 30", "question": "How many Pos have a Driver of todd bodine, and a Car # larger than 30?", "context": "CREATE TABLE table_name_49 (pos VARCHAR, driver VARCHAR, car__number VARCHAR)"}, {"answer": "SELECT MAX(car__number) FROM table_name_98 WHERE make = \"toyota\" AND pos = 7", "question": "Which Car # has a Make of toyota, and a Pos of 7?", "context": "CREATE TABLE table_name_98 (car__number INTEGER, make VARCHAR, pos VARCHAR)"}, {"answer": "SELECT COUNT(track_number) FROM table_name_58 WHERE recording_date = \"november 16, 1959\" AND title = \"i couldn't hear nobody pray\"", "question": "How many track numbers were recorded on November 16, 1959 for the title of I Couldn't Hear Nobody Pray?", "context": "CREATE TABLE table_name_58 (track_number VARCHAR, recording_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT recording_date FROM table_name_55 WHERE title = \"my lord what a mornin'\"", "question": "On what date was My Lord What a Mornin' recorded?", "context": "CREATE TABLE table_name_55 (recording_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT AVG(track_number) FROM table_name_52 WHERE time = \"3:25\" AND title = \"great getting up mornin'\"", "question": "What is the average track number 3:25 long and a title of Great Getting up Mornin'?", "context": "CREATE TABLE table_name_52 (track_number INTEGER, time VARCHAR, title VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE record = \"2\u20137\u20130\u20131\"", "question": "WHich Date has a Record of 2\u20137\u20130\u20131?", "context": "CREATE TABLE table_name_73 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_59 WHERE date = \"march 16\"", "question": "Who is the Visitor on march 16?", "context": "CREATE TABLE table_name_59 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_51 WHERE date = \"november 16\"", "question": "Which Record is on november 16?", "context": "CREATE TABLE table_name_51 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_33 WHERE date = \"december 10\"", "question": "What is the Home on december 10?", "context": "CREATE TABLE table_name_33 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE date = \"november 11\"", "question": "WHich Score has a Date on november 11?", "context": "CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_55 WHERE date = \"december 18\"", "question": "Which Record has a Date on december 18?", "context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_17 WHERE date = \"march 26\"", "question": "What visitor has march 26 as the date?", "context": "CREATE TABLE table_name_17 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_79 WHERE home = \"detroit red wings\" AND date = \"march 30\"", "question": "What visitor has detroit red wings as the home, and march 30 as the date?", "context": "CREATE TABLE table_name_79 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_15 WHERE visitor = \"chicago black hawks\" AND date = \"march 23\"", "question": "What record has chicago black hawks as the visitor and march 23 as the date?", "context": "CREATE TABLE table_name_15 (record VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_1 WHERE date = \"march 30\"", "question": "What record has march 30 as the date?", "context": "CREATE TABLE table_name_1 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT unanimous FROM table_name_78 WHERE school = \"michigan dartmouth\"", "question": "What is the unanimous result of the player from Michigan Dartmouth?", "context": "CREATE TABLE table_name_78 (unanimous VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_name_34 WHERE unanimous = \"no\" AND college_hall_of_fame = \"no\"", "question": "What is the position of the player with a unanimous no result without a college hall of fame?", "context": "CREATE TABLE table_name_34 (position VARCHAR, unanimous VARCHAR, college_hall_of_fame VARCHAR)"}, {"answer": "SELECT school FROM table_name_50 WHERE college_hall_of_fame = \"nevers hof profile\"", "question": "What is the school of the player with a college hall of fame nevers hof profile?", "context": "CREATE TABLE table_name_50 (school VARCHAR, college_hall_of_fame VARCHAR)"}, {"answer": "SELECT school FROM table_name_31 WHERE position = \"ends\"", "question": "What is the school of the player who plays ends?", "context": "CREATE TABLE table_name_31 (school VARCHAR, position VARCHAR)"}, {"answer": "SELECT college_hall_of_fame FROM table_name_83 WHERE position = \"fullback\"", "question": "What is the college hall of fame of the player who plays fullback?", "context": "CREATE TABLE table_name_83 (college_hall_of_fame VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_55 WHERE school = \"dartmouth ohio state\"", "question": "What is the position of the player from Dartmouth Ohio State?", "context": "CREATE TABLE table_name_55 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_21 WHERE director = \"jayme monjardim\"", "question": "What is the English title of the film Directed by Jayme Monjardim?", "context": "CREATE TABLE table_name_21 (english_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_93 WHERE year__ceremony_ = 2001", "question": "What was the Director with a Ceremony of 2001?", "context": "CREATE TABLE table_name_93 (director VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE save = \"||20,599||32-37\"", "question": "When have a Save of ||20,599||32-37?", "context": "CREATE TABLE table_name_90 (date VARCHAR, save VARCHAR)"}, {"answer": "SELECT save FROM table_name_55 WHERE date = \"june 15\"", "question": "Which Save is on June 15?", "context": "CREATE TABLE table_name_55 (save VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE opponent = \"boston red sox\" AND save = \"sager\"", "question": "Which Score has a Opponent of Boston red sox and a Save of sager?", "context": "CREATE TABLE table_name_8 (score VARCHAR, opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE opponent = \"at seattle mariners\"", "question": "When has an Opponent of at Seattle mariners?", "context": "CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE save = \"ayala\" AND loss = \"olivares\"", "question": "When is the Save of Ayala and a Loss of Olivares", "context": "CREATE TABLE table_name_70 (date VARCHAR, save VARCHAR, loss VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_19 WHERE partner = \"mart\u00edn rodr\u00edguez\"", "question": "Which Tournament has a Partner of mart\u00edn rodr\u00edguez?", "context": "CREATE TABLE table_name_19 (tournament VARCHAR, partner VARCHAR)"}, {"answer": "SELECT COUNT(touchdowns) FROM table_name_73 WHERE field_goals > 0", "question": "How many Touchdowns have Field goals larger than 0?", "context": "CREATE TABLE table_name_73 (touchdowns VARCHAR, field_goals INTEGER)"}, {"answer": "SELECT MAX(extra_points) FROM table_name_2 WHERE player = \"herrnstein\" AND points < 30", "question": "Which Extra points is the highest one that has a Player of herrnstein, and Points smaller than 30?", "context": "CREATE TABLE table_name_2 (extra_points INTEGER, player VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_name_98 WHERE extra_points < 14 AND player = \"white\" AND points < 5", "question": "Which Touchdowns is the lowest one that has Extra points smaller than 14, and a Player of white, and Points smaller than 5?", "context": "CREATE TABLE table_name_98 (touchdowns INTEGER, points VARCHAR, extra_points VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_name_81 WHERE points = 5 AND field_goals > 0", "question": "Which Touchdowns is the lowest one that has Points of 5, and a Field goals larger than 0?", "context": "CREATE TABLE table_name_81 (touchdowns INTEGER, points VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_51 WHERE touchdowns < 1", "question": "Which Points is the lowest one that has Touchdowns smaller than 1?", "context": "CREATE TABLE table_name_51 (points INTEGER, touchdowns INTEGER)"}, {"answer": "SELECT location FROM table_name_50 WHERE season = 2006", "question": "What is the Location of the Bowl in 2006?", "context": "CREATE TABLE table_name_50 (location VARCHAR, season VARCHAR)"}, {"answer": "SELECT location FROM table_name_48 WHERE attendance = \"70,283\"", "question": "At what Location was the Attendance 70,283?", "context": "CREATE TABLE table_name_48 (location VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT bowl_game FROM table_name_42 WHERE season > 1968 AND location = \"san francisco, ca\"", "question": "What was the Bowl game in San Francisco, CA after 1968?", "context": "CREATE TABLE table_name_42 (bowl_game VARCHAR, season VARCHAR, location VARCHAR)"}, {"answer": "SELECT team FROM table_name_60 WHERE rounds = \"all\" AND constructor = \"yamaha\"", "question": "What team has a yamaha constructor with all rounds?", "context": "CREATE TABLE table_name_60 (team VARCHAR, rounds VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_63 WHERE constructor = \"ducati\" AND rider = \"mika kallio\"", "question": "What rounds did rider Mika Kallio with a Ducati constructor have?", "context": "CREATE TABLE table_name_63 (rounds VARCHAR, constructor VARCHAR, rider VARCHAR)"}, {"answer": "SELECT rider FROM table_name_88 WHERE constructor = \"honda\" AND team = \"scot racing team\" AND rounds = \"6-17\"", "question": "Who is the rider of Scot Racing team with a Honda constructor and rounds 6-17?", "context": "CREATE TABLE table_name_88 (rider VARCHAR, rounds VARCHAR, constructor VARCHAR, team VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_67 WHERE team = \"ducati marlboro team\" AND rider = \"mika kallio 1\"", "question": "What is the rounds of rider Mika Kallio 1 of the Ducati Marlboro team?", "context": "CREATE TABLE table_name_67 (rounds VARCHAR, team VARCHAR, rider VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_87 WHERE week < 5 AND date = \"october 10, 1954\"", "question": "Who was the opponent for the game taht was before week 5 on October 10, 1954?", "context": "CREATE TABLE table_name_87 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_30 WHERE week > 4 AND date = \"november 14, 1954\"", "question": "What is the average attendance for the game that was after week 4 and on November 14, 1954?", "context": "CREATE TABLE table_name_30 (attendance INTEGER, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_17 WHERE record = \"21\u20134\u20137\" AND december > 19", "question": "After December 19, what is the Game number with a Record of 21\u20134\u20137?", "context": "CREATE TABLE table_name_17 (game VARCHAR, record VARCHAR, december VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_67 WHERE score = \"2\u20137\"", "question": "What were the Points in the game with a Score of 2\u20137?", "context": "CREATE TABLE table_name_67 (points INTEGER, score VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_91 WHERE gold < 5 AND rank = \"6\" AND total > 1", "question": "What's the lowest bronze with a 6 rank, smaller than 5 gold, and a total of more than 1?", "context": "CREATE TABLE table_name_91 (bronze INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_27 WHERE gold < 0", "question": "What's the Bronze cumulative number for less than 0 gold?", "context": "CREATE TABLE table_name_27 (bronze INTEGER, gold INTEGER)"}, {"answer": "SELECT AVG(lost) FROM table_name_70 WHERE against > 19 AND drawn < 1", "question": "Which average Lost has an Against larger than 19, and a Drawn smaller than 1?", "context": "CREATE TABLE table_name_70 (lost INTEGER, against VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_23 WHERE drawn = 3 AND points > 9 AND team = \"portuguesa\"", "question": "Which average Against has Drawn of 3, and Points larger than 9, and a Team of portuguesa?", "context": "CREATE TABLE table_name_23 (against INTEGER, team VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_65 WHERE points = 6 AND played < 9", "question": "Which average Against has Points of 6, and a Played smaller than 9?", "context": "CREATE TABLE table_name_65 (against INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_34 WHERE position = 7 AND lost < 4", "question": "Which average Points have a Position of 7, and a Lost smaller than 4?", "context": "CREATE TABLE table_name_34 (points INTEGER, position VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_74 WHERE lost > 2 AND drawn > 2 AND difference = \"0\"", "question": "Which average Points have a Lost larger than 2, and Drawn larger than 2, and a Difference of 0?", "context": "CREATE TABLE table_name_74 (points INTEGER, difference VARCHAR, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(touchdowns) FROM table_name_47 WHERE extra_points = 0 AND points > 5 AND player = \"curtis redden\"", "question": "Which Touchdowns have an Extra points of 0, and Points larger than 5, and a Player of curtis redden?", "context": "CREATE TABLE table_name_47 (touchdowns INTEGER, player VARCHAR, extra_points VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(extra_points) FROM table_name_92 WHERE touchdowns = 1 AND player = \"ross kidston\" AND points < 5", "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 MIN(points) FROM table_name_33 WHERE extra_points = 0 AND player = \"curtis redden\" AND touchdowns < 2", "question": "Which Points is the lowest one that has an Extra points of 0, and a Player of curtis redden, and Touchdowns smaller than 2?", "context": "CREATE TABLE table_name_33 (points INTEGER, touchdowns VARCHAR, extra_points VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(extra_points) FROM table_name_86 WHERE player = \"ross kidston\" AND points < 5", "question": "Which Extra points is the lowest one that has a Player of ross kidston, and Points smaller than 5?", "context": "CREATE TABLE table_name_86 (extra_points INTEGER, player VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_9 WHERE touchdowns = 1 AND field_goals < 0", "question": "Which Points have Touchdowns of 1, and a Field goals smaller than 0?", "context": "CREATE TABLE table_name_9 (points INTEGER, touchdowns VARCHAR, field_goals VARCHAR)"}, {"answer": "SELECT poll FROM table_name_10 WHERE wk_10 > 2 AND wk_2 = \"12\" AND wk_13 = 8", "question": "Which poll had a week 10 larger than 2, a week 2 of exactly 12, and a week 13 of 8?", "context": "CREATE TABLE table_name_10 (poll VARCHAR, wk_13 VARCHAR, wk_10 VARCHAR, wk_2 VARCHAR)"}, {"answer": "SELECT MAX(wk_9) FROM table_name_13 WHERE wk_6 = \"7\" AND wk_10 > 2 AND wk_7 = \"5\" AND wk_11 < 2", "question": "What is the highest week 9 that had a week 6 of 7, a week 10 of greater than 2, a week 7 of 5, and a week 11 less than 2?", "context": "CREATE TABLE table_name_13 (wk_9 INTEGER, wk_11 VARCHAR, wk_7 VARCHAR, wk_6 VARCHAR, wk_10 VARCHAR)"}, {"answer": "SELECT week_5_sept_28 FROM table_name_81 WHERE week_10_nov_2 = \"maryland (6-2)\"", "question": "What was the week 5 opponent for the year with a week 10 opponent of Maryland (6-2)?", "context": "CREATE TABLE table_name_81 (week_5_sept_28 VARCHAR, week_10_nov_2 VARCHAR)"}, {"answer": "SELECT week_14_nov_30 FROM table_name_50 WHERE week_10_nov_2 = \"michigan state (8-2)\"", "question": "What was the week 14 opponent for the year with a week 10 opponent of Michigan State (8-2)?", "context": "CREATE TABLE table_name_50 (week_14_nov_30 VARCHAR, week_10_nov_2 VARCHAR)"}, {"answer": "SELECT week_4_sept_21 FROM table_name_30 WHERE week_10_nov_2 = \"michigan state (8-2)\"", "question": "What is the week 4 opponent for the year with a week 10 opponent of Michigan State (8-2)?", "context": "CREATE TABLE table_name_30 (week_4_sept_21 VARCHAR, week_10_nov_2 VARCHAR)"}, {"answer": "SELECT week_12_nov_16 FROM table_name_6 WHERE week_3_sept_14 = \"south florida (3-0)\"", "question": "What is the week 12 opponent for the year that had a week 3 opponent of South Florida (3-0)?", "context": "CREATE TABLE table_name_6 (week_12_nov_16 VARCHAR, week_3_sept_14 VARCHAR)"}, {"answer": "SELECT week_7_oct_12 FROM table_name_29 WHERE week_12_nov_16 = \"oregon state (7-3)\"", "question": "What was the week 7 opponent for the year that had a week 12 opponent of Oregon State (7-3)?", "context": "CREATE TABLE table_name_29 (week_7_oct_12 VARCHAR, week_12_nov_16 VARCHAR)"}, {"answer": "SELECT week_3_sept_14 FROM table_name_56 WHERE week_7_oct_12 = \"georgia (5-1)\"", "question": "What was the week 3 opponent for the year that had a week 7 opponent of Georgia (5-1)?", "context": "CREATE TABLE table_name_56 (week_3_sept_14 VARCHAR, week_7_oct_12 VARCHAR)"}, {"answer": "SELECT week_14_nov_24 FROM table_name_44 WHERE week_11_nov_3 = \"usc (6-2)\"", "question": "What is Week 14 Nov 24, that has Week 11 Nov 3 of USC (6-2)?", "context": "CREATE TABLE table_name_44 (week_14_nov_24 VARCHAR, week_11_nov_3 VARCHAR)"}, {"answer": "SELECT week_9_oct_20 FROM table_name_99 WHERE week_17__final__jan_4 = \"michigan (10-3)\"", "question": "What is listed for the Week 9 Oct 20 that has a Week 17 (Final) Jan 4 of Michigan (10-3)?", "context": "CREATE TABLE table_name_99 (week_9_oct_20 VARCHAR, week_17__final__jan_4 VARCHAR)"}, {"answer": "SELECT week_1_aug_26 FROM table_name_36 WHERE week_7_oct_6 = \"usc (3-2)\"", "question": "What is listed for the Week 1 Aug 26 that has a Week 7 Oct 6 of USC (3-2)?", "context": "CREATE TABLE table_name_36 (week_1_aug_26 VARCHAR, week_7_oct_6 VARCHAR)"}, {"answer": "SELECT week_3_sept_8 FROM table_name_51 WHERE week_2_sept_2 = \"florida state (2-0) (4)\"", "question": "What is listed for the Week 3 Sept 8 that has a Week 2 Sept 2 of Florida State (2-0) (4)?", "context": "CREATE TABLE table_name_51 (week_3_sept_8 VARCHAR, week_2_sept_2 VARCHAR)"}, {"answer": "SELECT COUNT(december) FROM table_name_81 WHERE score = \"5\u20132\" AND game < 27", "question": "How much December has a Score of 5\u20132, and a Game smaller than 27?", "context": "CREATE TABLE table_name_81 (december VARCHAR, score VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_14 WHERE opponent = \"@ pittsburgh penguins\"", "question": "Which Game has an Opponent of @ pittsburgh penguins?", "context": "CREATE TABLE table_name_14 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT MAX(december) FROM table_name_59 WHERE record = \"21\u20137\u20132\" AND game > 30", "question": "Which December has a Record of 21\u20137\u20132, and a Game larger than 30?", "context": "CREATE TABLE table_name_59 (december INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(december) FROM table_name_49 WHERE points = 38 AND record = \"18\u20136\u20132\"", "question": "Which December has Points of 38, and a Record of 18\u20136\u20132?", "context": "CREATE TABLE table_name_49 (december INTEGER, points VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE result = \"2\u20131\" AND date = \"5 july 2007\"", "question": "What is the Score that has a Result of 2\u20131 on 5 july 2007?", "context": "CREATE TABLE table_name_47 (score VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_53 WHERE venue = \"hong kong\"", "question": "Which Competition has a Venue of hong kong?", "context": "CREATE TABLE table_name_53 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE competition = \"friendly match\" AND result = \"2\u20131\"", "question": "When is the Competition of friendly match with a Result of 2\u20131?", "context": "CREATE TABLE table_name_47 (date VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_2 WHERE result = \"2\u20130\"", "question": "Which Venue has a Result of 2\u20130?", "context": "CREATE TABLE table_name_2 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE competition = \"2007 afc asian cup qualification\" AND result = \"8\u20130\"", "question": "What is the Score of 2007 afc asian cup qualification with a Result of 8\u20130?", "context": "CREATE TABLE table_name_81 (score VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_54 WHERE result = \"3\u20131\"", "question": "Which Competition has a Result of 3\u20131?", "context": "CREATE TABLE table_name_54 (competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT record FROM table_name_82 WHERE attendance = \"31,467\"", "question": "What was the Indians' record during the game that had 31,467 in attendance?", "context": "CREATE TABLE table_name_82 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_16 WHERE length = \"4:00\"", "question": "what year is 4:00 long", "context": "CREATE TABLE table_name_16 (year VARCHAR, length VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_87 WHERE position = \"defensive tackle\"", "question": "What round on average was a defensive tackle selected?", "context": "CREATE TABLE table_name_87 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_71 WHERE silver < 1 AND rank > 5 AND bronze > 1", "question": "What is the lowest total for the silver less than 1, and a rank more than 5, more than 1 bronze?", "context": "CREATE TABLE table_name_71 (total INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT gold FROM table_name_58 WHERE bronze = 1 AND silver > 0", "question": "Who ha the gold and 1 bronze, and more than 0 silver?", "context": "CREATE TABLE table_name_58 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_30 WHERE total < 4 AND gold > 0 AND silver = 0", "question": "Who has a total of the Bronze less than 4, gold more than 0, and no silver?", "context": "CREATE TABLE table_name_30 (bronze INTEGER, silver VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_36 WHERE lost = 21 AND position = 22", "question": "What's the Points average with a Lost of 21, and Position of 22?", "context": "CREATE TABLE table_name_36 (points INTEGER, lost VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_35 WHERE played > 42", "question": "What's the total Lost that has a Played that's larger than 42?", "context": "CREATE TABLE table_name_35 (lost INTEGER, played INTEGER)"}, {"answer": "SELECT relative_value FROM table_name_72 WHERE jyutping = \"daam3\"", "question": "what's the relative value that contains a jyutping of daam3?", "context": "CREATE TABLE table_name_72 (relative_value VARCHAR, jyutping VARCHAR)"}, {"answer": "SELECT metric_value FROM table_name_11 WHERE jyutping = \"lei4\"", "question": "What metric value has a jyutping of lei4?", "context": "CREATE TABLE table_name_11 (metric_value VARCHAR, jyutping VARCHAR)"}, {"answer": "SELECT imperial_value FROM table_name_51 WHERE jyutping = \"cin4\"", "question": "what's the imperial that contains a jyutping of cin4?", "context": "CREATE TABLE table_name_51 (imperial_value VARCHAR, jyutping VARCHAR)"}, {"answer": "SELECT location FROM table_name_95 WHERE record = \"9-0-0\"", "question": "What was the location that led to a record of 9-0-0?", "context": "CREATE TABLE table_name_95 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_95 WHERE silver < 2 AND total > 1 AND nation = \"uzbekistan\"", "question": "What is the lowest number of bronze medals with less than 2 silver medals and more than 1 medal in total for Uzbekistan?", "context": "CREATE TABLE table_name_95 (bronze INTEGER, nation VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_24 WHERE pick__number = 11 AND overall < 414 AND position = \"offensive tackle\"", "question": "What is the highest round with a pick# of 11, a position of offensive tackle, and overall less than 414?", "context": "CREATE TABLE table_name_24 (round INTEGER, position VARCHAR, pick__number VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_77 WHERE pick__number = 9 AND position = \"defensive back\" AND overall < 468", "question": "What is the highest round with a pick# of 9, overll less than 468, and position of defensive back?", "context": "CREATE TABLE table_name_77 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_21 WHERE position = \"guard\" AND overall > 71", "question": "What is the highest round with a guard position and an overall greater than 71?", "context": "CREATE TABLE table_name_21 (round INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT name FROM table_name_81 WHERE overall > 414 AND pick__number > 9", "question": "Who has an overall greater than 414 with a pick# bigger than 9?", "context": "CREATE TABLE table_name_81 (name VARCHAR, overall VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT gaelic_name FROM table_name_63 WHERE area___ha__ < 127 AND location = \"kintyre\"", "question": "What is the Gaelic name for an area less than 127 in Kintyre?", "context": "CREATE TABLE table_name_63 (gaelic_name VARCHAR, area___ha__ VARCHAR, location VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE date = \"7 february 2008\"", "question": "What was the score on 7 february 2008?", "context": "CREATE TABLE table_name_42 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_80 WHERE date = \"13 may 2007\"", "question": "What was the outcome on 13 may 2007?", "context": "CREATE TABLE table_name_80 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE date = \"3 may 2009\"", "question": "What was the score on 3 may 2009?", "context": "CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE venue = \"jalan besar, singapore\"", "question": "Name the score for venue of jalan besar, singapore", "context": "CREATE TABLE table_name_81 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE date = \"2 june 2008\"", "question": "Name the score for 2 june 2008", "context": "CREATE TABLE table_name_97 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_33 WHERE game = 63", "question": "Which Opponent has a Game of 63?", "context": "CREATE TABLE table_name_33 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_30 WHERE score = \"1\u20134\"", "question": "which Record has a Score of 1\u20134?", "context": "CREATE TABLE table_name_30 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_81 WHERE points < 62 AND february > 16 AND score = \"8\u20137\"", "question": "Which Record has a Points smaller than 62 and a February larger than 16, and a Score of 8\u20137?", "context": "CREATE TABLE table_name_81 (record VARCHAR, score VARCHAR, points VARCHAR, february VARCHAR)"}, {"answer": "SELECT COUNT(number_of_issues) FROM table_name_60 WHERE end_month = \"oct-80\"", "question": "What is the total number of Issues has a End month of oct-80?", "context": "CREATE TABLE table_name_60 (number_of_issues VARCHAR, end_month VARCHAR)"}, {"answer": "SELECT indicia FROM table_name_52 WHERE end_month = \"feb-75\"", "question": "Which Indicia has anEnd month in feb-75?", "context": "CREATE TABLE table_name_52 (indicia VARCHAR, end_month VARCHAR)"}, {"answer": "SELECT haat FROM table_name_17 WHERE channels_tv___rf = \"31 (psip) 44 (uhf)\"", "question": "Which HAAT has a Channels TV / RF of 31 (psip) 44 (uhf)", "context": "CREATE TABLE table_name_17 (haat VARCHAR, channels_tv___rf VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_4 WHERE channels_tv___rf = \"67 ( psip ) 29 ( uhf )\"", "question": "Which City of license has a Channels TV / RF of 67 ( psip ) 29 ( uhf )", "context": "CREATE TABLE table_name_4 (city_of_license VARCHAR, channels_tv___rf VARCHAR)"}, {"answer": "SELECT station FROM table_name_28 WHERE city_of_license = \"hagerstown\"", "question": "Which Station has hagerstown?", "context": "CREATE TABLE table_name_28 (station VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT haat FROM table_name_34 WHERE facility_id = 65944", "question": "Which HAAT has 65944?", "context": "CREATE TABLE table_name_34 (haat VARCHAR, facility_id VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_3 WHERE channels_tv___rf = \"36 (psip) 36 (uhf)\"", "question": "Which City of license has a Channels TV / RF of 36 (psip) 36 (uhf)? Question 5", "context": "CREATE TABLE table_name_3 (city_of_license VARCHAR, channels_tv___rf VARCHAR)"}, {"answer": "SELECT format FROM table_name_8 WHERE date = \"october 29, 2004\"", "question": "What format is dated October 29, 2004?", "context": "CREATE TABLE table_name_8 (format VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE catalogue__number = \"ptcd-1015-6\"", "question": "What is the date with the catalogue number ptcd-1015-6?", "context": "CREATE TABLE table_name_59 (date VARCHAR, catalogue__number VARCHAR)"}, {"answer": "SELECT label FROM table_name_73 WHERE date = \"december 2004\"", "question": "What is the label for December 2004?", "context": "CREATE TABLE table_name_73 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE label = \"hydra head records\" AND format = \"cd\"", "question": "What is the date for Hydra Head Records with a CD format?", "context": "CREATE TABLE table_name_21 (date VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT country FROM table_name_96 WHERE label = \"hydra head records\" AND date = \"february 2005\"", "question": "Which country has Hydra Head Records on February 2005?", "context": "CREATE TABLE table_name_96 (country VARCHAR, label VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_97 WHERE format = \"2lp\" AND label = \"hydra head records\"", "question": "Which country has Hydra Head Records with a 2lp format?", "context": "CREATE TABLE table_name_97 (country VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_44 WHERE horse = \"mad rush\"", "question": "Who rode mad rush?", "context": "CREATE TABLE table_name_44 (jockey VARCHAR, horse VARCHAR)"}, {"answer": "SELECT placing FROM table_name_35 WHERE weight__kg_ < 54 AND barrier_[b_] = \"20\"", "question": "What place was the horse with a barrier of 20 and weighing less than 54 kg", "context": "CREATE TABLE table_name_35 (placing VARCHAR, weight__kg_ VARCHAR, barrier_ VARCHAR, b_ VARCHAR)"}, {"answer": "SELECT placing FROM table_name_13 WHERE horse = \"viewed\"", "question": "What place was the viewed horse?", "context": "CREATE TABLE table_name_13 (placing VARCHAR, horse VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_17 WHERE top_10 < 5 AND winnings = \"$39,190\" AND starts < 2", "question": "What is the average number of wins of the year with less than 5 top 10s, a winning of $39,190 and less than 2 starts?", "context": "CREATE TABLE table_name_17 (wins INTEGER, starts VARCHAR, top_10 VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_name_81 WHERE starts > 18 AND winnings = \"$125,102\" AND year < 1992", "question": "What is the highest number of poles of the year before 1992 with more than 18 starts and winnings of $125,102?", "context": "CREATE TABLE table_name_81 (poles INTEGER, year VARCHAR, starts VARCHAR, winnings VARCHAR)"}, {"answer": "SELECT theatre FROM table_name_5 WHERE author = \"stanis\u0142aw wyspia\u0144ski\" AND year = 1969", "question": "Author of stanis\u0142aw wyspia\u0144ski, and a Year of 1969 happened in what theatre?", "context": "CREATE TABLE table_name_5 (theatre VARCHAR, author VARCHAR, year VARCHAR)"}, {"answer": "SELECT game FROM table_name_54 WHERE opponent = \"new jersey devils\"", "question": "Which game did New Jersey Devils played in?", "context": "CREATE TABLE table_name_54 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE record = \"21-25-7-4\"", "question": "What score has a record of 21-25-7-4?", "context": "CREATE TABLE table_name_92 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE record = \"22-28-7-4\"", "question": "What score has a record of 22-28-7-4?", "context": "CREATE TABLE table_name_9 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT group FROM table_name_82 WHERE distance = \"1200 m\"", "question": "What group has 1200 m as the distance?", "context": "CREATE TABLE table_name_82 (group VARCHAR, distance VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE group = \"g1\"", "question": "What venue has g1 as the group?", "context": "CREATE TABLE table_name_45 (venue VARCHAR, group VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_56 WHERE team = \"tacuary\" AND losses < 4", "question": "What's the highest Points with the Team of Tacuary, and has Losses that's smaller than 4?", "context": "CREATE TABLE table_name_56 (points INTEGER, team VARCHAR, losses VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_15 WHERE scored > 15 AND points > 16 AND played > 9", "question": "What's the sum of Losses that Scored larger than 15, has Points that's larger than 16, and Played that's larger than 9?", "context": "CREATE TABLE table_name_15 (losses INTEGER, played VARCHAR, scored VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_80 WHERE scored = 15 AND draws < 1", "question": "What's the highest Played with a Scored of 15, and Draws that's less than 1?", "context": "CREATE TABLE table_name_80 (played INTEGER, scored VARCHAR, draws VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_82 WHERE draws > 1 AND losses < 4 AND conceded = 20", "question": "What's the sum of WIns with Draws that's larger than 1, Losses that's smaller than 4, and Conceded of 20?", "context": "CREATE TABLE table_name_82 (wins INTEGER, conceded VARCHAR, draws VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_6 WHERE conceded > 16 AND draws = 3 AND losses > 3", "question": "What's the lowest Position with a Conceded that's larger than 16, Draws of 3, and Losses that's larger than 3?", "context": "CREATE TABLE table_name_6 (position INTEGER, losses VARCHAR, conceded VARCHAR, draws VARCHAR)"}, {"answer": "SELECT processors_supported FROM table_name_82 WHERE pci_express = \"x16: 1 slot x1: 4 slots\" AND model = \"nforce 550\"", "question": "Which processors are supported with a PCI-express of x16: 1 slot x1: 4 slots and the nforce 550 model?", "context": "CREATE TABLE table_name_82 (processors_supported VARCHAR, pci_express VARCHAR, model VARCHAR)"}, {"answer": "SELECT processors_supported FROM table_name_91 WHERE memory = \"ddr2\" AND model = \"nforce 550\"", "question": "What are the processors supported by a ddr2 memory and the nforce 550 model?", "context": "CREATE TABLE table_name_91 (processors_supported VARCHAR, memory VARCHAR, model VARCHAR)"}, {"answer": "SELECT pci_express FROM table_name_80 WHERE memory = \"ddr2\" AND model = \"nforce 520\"", "question": "What is the PCI-express with a ddr2 memory and a nforce 520 model?", "context": "CREATE TABLE table_name_80 (pci_express VARCHAR, memory VARCHAR, model VARCHAR)"}, {"answer": "SELECT russian FROM table_name_14 WHERE us_customary = \"4.16 fl. oz.\"", "question": "What is the Russian word for wine glass that contains 4.16 fl. oz.?", "context": "CREATE TABLE table_name_14 (russian VARCHAR, us_customary VARCHAR)"}, {"answer": "SELECT imperial FROM table_name_11 WHERE ratio = \"1/20\"", "question": "What are the imperial size for the unit that has a ratio of 1/20?", "context": "CREATE TABLE table_name_11 (imperial VARCHAR, ratio VARCHAR)"}, {"answer": "SELECT metric_value FROM table_name_54 WHERE ratio = \"1/20\"", "question": "How big in metric terms is the unit that has a ratio of 1/20?", "context": "CREATE TABLE table_name_54 (metric_value VARCHAR, ratio VARCHAR)"}, {"answer": "SELECT us_customary FROM table_name_33 WHERE unit = \"butylka (vodochnaya)\"", "question": "How large in US customary terms is the unit called butylka (vodochnaya)?", "context": "CREATE TABLE table_name_33 (us_customary VARCHAR, unit VARCHAR)"}, {"answer": "SELECT translation FROM table_name_81 WHERE unit = \"chetvert\"", "question": "What is the translation of chetvert?", "context": "CREATE TABLE table_name_81 (translation VARCHAR, unit VARCHAR)"}, {"answer": "SELECT russian FROM table_name_34 WHERE translation = \"bucket\"", "question": "What Russian word translates to bucket?", "context": "CREATE TABLE table_name_34 (russian VARCHAR, translation VARCHAR)"}, {"answer": "SELECT MIN(matches) FROM table_name_44 WHERE points > 6 AND results = \"522:443\"", "question": "Points larger than 6, and a Results of 522:443 had what lowest matches?", "context": "CREATE TABLE table_name_44 (matches INTEGER, points VARCHAR, results VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_name_75 WHERE loses = 2 AND pos < 2", "question": "Loses of 2, and a Pos. smaller than 2 had how many highest matches?", "context": "CREATE TABLE table_name_75 (matches INTEGER, loses VARCHAR, pos VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_49 WHERE surface = \"clay\" AND date = \"2 may 2009\"", "question": "What was the outcome when the game was played on clay and on 2 May 2009?", "context": "CREATE TABLE table_name_49 (outcome VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_42 WHERE surface = \"hard\"", "question": "What person was played against when the playing surface was hard?", "context": "CREATE TABLE table_name_42 (opponent VARCHAR, surface VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_69 WHERE surface = \"clay\" AND score = \"6\u20133, 2\u20136, [10\u20138]\"", "question": "With the score of 6\u20133, 2\u20136, [10\u20138] and played on clay who was the opponent?", "context": "CREATE TABLE table_name_69 (opponent VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_57 WHERE location = \"pigeon forge, tennessee\" AND category = \"best food\"", "question": "What is the rank of the park in pigeon forge, tennessee in the best food category?", "context": "CREATE TABLE table_name_57 (rank VARCHAR, location VARCHAR, category VARCHAR)"}, {"answer": "SELECT name FROM table_name_79 WHERE city = \"shenzhen\" AND completion < 2017 AND floors < 115", "question": "What building is in Shenzhen, have less than 115 floors, and was completed before 2017?", "context": "CREATE TABLE table_name_79 (name VARCHAR, floors VARCHAR, city VARCHAR, completion VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_21 WHERE length = \"11:25\"", "question": "What is the earliest year having a length of 11:25?", "context": "CREATE TABLE table_name_21 (year INTEGER, length VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_11 WHERE version = \"wolf mix\"", "question": "What year had a version called Wolf Mix?", "context": "CREATE TABLE table_name_11 (year INTEGER, version VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_name_30 WHERE draft_year = 1978", "question": "In 1978 what is the NFL team?", "context": "CREATE TABLE table_name_30 (nfl_team VARCHAR, draft_year VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_87 WHERE attendance = \"64,002\"", "question": "Who was the opponent with attendance at 64,002?", "context": "CREATE TABLE table_name_87 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_96 WHERE attendance = \"84,856\"", "question": "What was the highest week with 84,856 in attendance?", "context": "CREATE TABLE table_name_96 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_69 WHERE week < 13 AND date = \"november 9, 2003\"", "question": "What was the record in a week less than 13 on November 9, 2003?", "context": "CREATE TABLE table_name_69 (record VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE result = \"w 20-17\"", "question": "On what date was the result w 20-17?", "context": "CREATE TABLE table_name_43 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_52 WHERE record = \"2-0\"", "question": "What was the attendance for record 2-0?", "context": "CREATE TABLE table_name_52 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE game_site = \"lincoln financial field\"", "question": "On what date was the game at Lincoln Financial Field?", "context": "CREATE TABLE table_name_40 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT player FROM table_name_58 WHERE pick = 175", "question": "Which player has a pick of 175?", "context": "CREATE TABLE table_name_58 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_69 WHERE player = \"zack jordan\" AND round < 28", "question": "Zack Jordan has the lowest pick and a round of less than 28?", "context": "CREATE TABLE table_name_69 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_24 WHERE player = \"roger zatkoff\"", "question": "What is the sum of the pick for player roger zatkoff?", "context": "CREATE TABLE table_name_24 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT metal FROM table_name_56 WHERE size = \"26mm (across scallops)\"", "question": "Which metal has a size that is 26mm (across scallops)?", "context": "CREATE TABLE table_name_56 (metal VARCHAR, size VARCHAR)"}, {"answer": "SELECT weight FROM table_name_92 WHERE shape = \"scalloped\" AND size = \"20mm (across scallops)\"", "question": "What is the weight with the shape of scalloped, and that is a size of 20mm (across scallops)?", "context": "CREATE TABLE table_name_92 (weight VARCHAR, shape VARCHAR, size VARCHAR)"}, {"answer": "SELECT weight FROM table_name_41 WHERE denomination = \"three paise\"", "question": "What is the weight with a denomination that is three paise?", "context": "CREATE TABLE table_name_41 (weight VARCHAR, denomination VARCHAR)"}, {"answer": "SELECT weight FROM table_name_53 WHERE denomination = \"ten paise\"", "question": "What is the weight with a denomination that is ten paise?", "context": "CREATE TABLE table_name_53 (weight VARCHAR, denomination VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_86 WHERE games < 7", "question": "What is the highest number of games drawn, where the games played was less than 7?", "context": "CREATE TABLE table_name_86 (drawn INTEGER, games INTEGER)"}, {"answer": "SELECT MIN(october) FROM table_name_38 WHERE opponent = \"washington capitals\"", "question": "Which October is the lowest one that has an Opponent of washington capitals?", "context": "CREATE TABLE table_name_38 (october INTEGER, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE game > 7 AND points < 14", "question": "Which Score has a Game larger than 7, and Points smaller than 14?", "context": "CREATE TABLE table_name_17 (score VARCHAR, game VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_77 WHERE opponent = \"@ calgary flames\"", "question": "How many Points have an Opponent of @ calgary flames?", "context": "CREATE TABLE table_name_77 (points INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(events) FROM table_name_50 WHERE rank = 1 AND wins > 3", "question": "What is the mean number of events where the rank is 1 and there are more than 3 wins?", "context": "CREATE TABLE table_name_50 (events INTEGER, rank VARCHAR, wins VARCHAR)"}, {"answer": "SELECT supercopa_1994 FROM table_name_10 WHERE team = \"estudiantes\"", "question": "Which Supercopa 1994 has a Team of estudiantes?", "context": "CREATE TABLE table_name_10 (supercopa_1994 VARCHAR, team VARCHAR)"}, {"answer": "SELECT conmebol_1994 FROM table_name_12 WHERE supercopa_1994 = \"n/a\" AND recopa_1994 = \"n/a\" AND team = \"san lorenzo\"", "question": "Which CONMEBOL 1994 has a Supercopa 1994 of n/a, and a Recopa 1994 of n/a, and a Team of san lorenzo?", "context": "CREATE TABLE table_name_12 (conmebol_1994 VARCHAR, team VARCHAR, supercopa_1994 VARCHAR, recopa_1994 VARCHAR)"}, {"answer": "SELECT recopa_1994 FROM table_name_54 WHERE supercopa_1994 = \"1st round\" AND team = \"argentinos juniors\"", "question": "Which Recopa 1994 has a Supercopa 1994 of 1st round, and a Team of argentinos juniors?", "context": "CREATE TABLE table_name_54 (recopa_1994 VARCHAR, supercopa_1994 VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_92 WHERE recopa_1994 = \"n/a\" AND conmebol_1994 = \"1st round\"", "question": "Which Team has a Recopa 1994 of n/a and a CONMEBOL 1994 of 1st round?", "context": "CREATE TABLE table_name_92 (team VARCHAR, recopa_1994 VARCHAR, conmebol_1994 VARCHAR)"}, {"answer": "SELECT other FROM table_name_90 WHERE green = 0 AND independent = 1 AND labour < 45 AND control = \"labour lose to no overall control\"", "question": "Which Other has a Green of 0, and an Independent of 1, and a Labour smaller than 45, and a Control of labour lose to no overall control?", "context": "CREATE TABLE table_name_90 (other VARCHAR, control VARCHAR, labour VARCHAR, green VARCHAR, independent VARCHAR)"}, {"answer": "SELECT AVG(social_democratic_party) FROM table_name_10 WHERE green < 0", "question": "Which Social Democratic Party has a Green smaller than 0?", "context": "CREATE TABLE table_name_10 (social_democratic_party INTEGER, green INTEGER)"}, {"answer": "SELECT losing_bonus FROM table_name_78 WHERE try_bonus = \"10\"", "question": "When the try bonus was 10 what was the losing bonus?", "context": "CREATE TABLE table_name_78 (losing_bonus VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_97 WHERE losing_bonus = \"2\"", "question": "When the losing bonus was 2 what was drawn score?", "context": "CREATE TABLE table_name_97 (drawn VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_99 WHERE try_bonus = \"5\"", "question": "If the try bonus was 5 what was the try against score?", "context": "CREATE TABLE table_name_99 (tries_against VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT points FROM table_name_92 WHERE tries_against = \"90\"", "question": "When the tries against is 90 how many points are there?", "context": "CREATE TABLE table_name_92 (points VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT club FROM table_name_58 WHERE tries_against = \"75\"", "question": "What club has tries against of 75?", "context": "CREATE TABLE table_name_58 (club VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_99 WHERE college = \"duke\" AND round > 7", "question": "What is the total number of overall figures when duke was the college and the round was higher than 7?", "context": "CREATE TABLE table_name_99 (overall INTEGER, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_81 WHERE round < 2", "question": "Which of the highest pick numbers had a round of less than 2?", "context": "CREATE TABLE table_name_81 (pick__number INTEGER, round INTEGER)"}, {"answer": "SELECT pick__number FROM table_name_82 WHERE round < 7 AND overall < 127 AND name = \"robert alford\"", "question": "Which pick number had a round of less than 7, an overall of less than 127, and where the name was Robert Alford?", "context": "CREATE TABLE table_name_82 (pick__number VARCHAR, name VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_89 WHERE name = \"robert alford\" AND round > 2", "question": "Which highest overall figure had Robert Alford as a name and a round of more than 2?", "context": "CREATE TABLE table_name_89 (overall INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_90 WHERE opponent = \"miami dolphins\"", "question": "What Game site has an Opponent of Miami Dolphins?", "context": "CREATE TABLE table_name_90 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_56 WHERE game_site = \"riverfront stadium\"", "question": "What's the Lowest Attendance with a Game site of Riverfront Stadium?", "context": "CREATE TABLE table_name_56 (attendance INTEGER, game_site VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_3 WHERE week = 2", "question": "What's the lowest Attendance for a Week of 2?", "context": "CREATE TABLE table_name_3 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_20 WHERE nation = \"south korea\"", "question": "How many bronze medals does South Korea have?", "context": "CREATE TABLE table_name_20 (bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_87 WHERE silver > 0 AND nation = \"georgia\" AND bronze < 1", "question": "What is the smallest number of total medals for Georgia with 0 silver and 1 bronze?", "context": "CREATE TABLE table_name_87 (total INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_7 WHERE event = \"foil team\" AND venue = \"melbourne\"", "question": "What is the lowest year that had foil team as the event at Melbourne?", "context": "CREATE TABLE table_name_7 (year INTEGER, event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_77 WHERE venue = \"los angeles\" AND event = \"foil team\"", "question": "What is the number of years that the event was foil team and took place in Los Angeles?", "context": "CREATE TABLE table_name_77 (year VARCHAR, venue VARCHAR, event VARCHAR)"}, {"answer": "SELECT position FROM table_name_71 WHERE venue = \"lyon\"", "question": "What was the position at the venue of lyon?", "context": "CREATE TABLE table_name_71 (position VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_41 WHERE event = \"foil individual\" AND competition = \"world championships\" AND year = 1985", "question": "What was the position for mauro at the world championships in 1985 during the foil individual event?", "context": "CREATE TABLE table_name_41 (position VARCHAR, year VARCHAR, event VARCHAR, competition VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_50 WHERE head_coach = \"brent sutter\" AND finish = \"4th central\" AND points = \"82\"", "question": "What was the playoff status when the head coach was Brent Sutter, the finish was 4th central, and the points were 82?", "context": "CREATE TABLE table_name_50 (playoffs VARCHAR, points VARCHAR, head_coach VARCHAR, finish VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_2 WHERE 2001 = \"2\u20134\"", "question": "2001 of 2\u20134 was in which tournament?", "context": "CREATE TABLE table_name_2 (tournament VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_59 WHERE 2013 = \"4\u20134\"", "question": "2013 of 4\u20134 is involved in what 2006?", "context": "CREATE TABLE table_name_59 (Id VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_31 WHERE 2007 = \"1r\"", "question": "2007 of 1r is involved in what 2001?", "context": "CREATE TABLE table_name_31 (Id VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_69 WHERE 2007 = \"8\u20134\"", "question": "2007 of 8\u20134 is involved in what 2002?", "context": "CREATE TABLE table_name_69 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_7 WHERE 2005 = \"3r\" AND 2000 = \"lq\" AND 2002 = \"3r\"", "question": "2005 of 3r, and a 2000 of lq, and a 2002 of 3r is in what 2004?", "context": "CREATE TABLE table_name_7 (Id VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_85 WHERE 2006 = \"10\u20134\"", "question": "2006 of 10\u20134 is in which 2000?", "context": "CREATE TABLE table_name_85 (Id VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_52 WHERE points < 4 AND lost > 4", "question": "What is the smallest number of drawn games when there are fewer than 4 points and more than 4 lost games?", "context": "CREATE TABLE table_name_52 (drawn INTEGER, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_87 WHERE games < 4", "question": "What is the sum of the points when there are fewer than 4 games?", "context": "CREATE TABLE table_name_87 (points INTEGER, games INTEGER)"}, {"answer": "SELECT lead FROM table_name_97 WHERE third = \"aanders brorson\"", "question": "Who holds the lead role when Aanders Brorson is third?", "context": "CREATE TABLE table_name_97 (lead VARCHAR, third VARCHAR)"}, {"answer": "SELECT skip FROM table_name_69 WHERE lead = \"dominik greindl\"", "question": "Who has the role of skip when the lead is Dominik Greindl?", "context": "CREATE TABLE table_name_69 (skip VARCHAR, lead VARCHAR)"}, {"answer": "SELECT second FROM table_name_18 WHERE third = \"mikkel krause\"", "question": "Who is the second when Mikkel Krause is the third?", "context": "CREATE TABLE table_name_18 (second VARCHAR, third VARCHAR)"}, {"answer": "SELECT skip FROM table_name_83 WHERE third = \"alasdair guthrie\"", "question": "Who is the Skip when Alasdair Guthrie is the third?", "context": "CREATE TABLE table_name_83 (skip VARCHAR, third VARCHAR)"}, {"answer": "SELECT second FROM table_name_90 WHERE lead = \"michel gribi\"", "question": "Who is the Second when Michel Gribi is the lead?", "context": "CREATE TABLE table_name_90 (second VARCHAR, lead VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_24 WHERE against = 12 AND points < 11 AND drawn > 2 AND played > 9", "question": "What is the highest position of the team with an against of 12, less than 11 points, more than 2 drawn, and more than 9 played?", "context": "CREATE TABLE table_name_24 (position INTEGER, played VARCHAR, drawn VARCHAR, against VARCHAR, points VARCHAR)"}, {"answer": "SELECT difference FROM table_name_57 WHERE points = 12", "question": "What is the difference of the team with 12 points?", "context": "CREATE TABLE table_name_57 (difference VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_51 WHERE lost = 3 AND points > 9 AND position = 5 AND against < 12", "question": "What is the average number of played of the team with 3 losses, more than 9 points, a position of 5, and less than 12 against?", "context": "CREATE TABLE table_name_51 (played INTEGER, against VARCHAR, position VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT rating___percentage_ FROM table_name_73 WHERE channel = \"anhui satellite tv\"", "question": "Name the rating % for channel of anhui satellite tv", "context": "CREATE TABLE table_name_73 (rating___percentage_ VARCHAR, channel VARCHAR)"}, {"answer": "SELECT MAX(share___percentage_) FROM table_name_42 WHERE channel = \"anhui satellite tv\"", "question": "Name the most share for anhui satellite tv", "context": "CREATE TABLE table_name_42 (share___percentage_ INTEGER, channel VARCHAR)"}, {"answer": "SELECT SUM(rating___percentage_) FROM table_name_62 WHERE owner = \"cctv\" AND position > 7", "question": "Name the sum of rating % for cctv and position more than 7", "context": "CREATE TABLE table_name_62 (rating___percentage_ INTEGER, owner VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(rating___percentage_) FROM table_name_13 WHERE channel = \"shandong satellite tv\" AND share___percentage_ < 1.74", "question": "Name the average rating % for shandong satellite tv and share % less than 1.74", "context": "CREATE TABLE table_name_13 (rating___percentage_ INTEGER, channel VARCHAR, share___percentage_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE visitor = \"montreal\"", "question": "What date was Montreal the visitor?", "context": "CREATE TABLE table_name_50 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_92 WHERE home = \"ny rangers\"", "question": "What is the record for the NY Rangers?", "context": "CREATE TABLE table_name_92 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_41 WHERE pick = 169", "question": "Name the sum of round for pick of 169", "context": "CREATE TABLE table_name_41 (round INTEGER, pick VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_12 WHERE pick = 16", "question": "Name the nationality for pick of 16", "context": "CREATE TABLE table_name_12 (nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT lead FROM table_name_94 WHERE skip = \"pavol pitonak\"", "question": "Which Lead has a Skip of pavol pitonak?", "context": "CREATE TABLE table_name_94 (lead VARCHAR, skip VARCHAR)"}, {"answer": "SELECT skip FROM table_name_31 WHERE nation = \"wales\"", "question": "What is the skip in Wales?", "context": "CREATE TABLE table_name_31 (skip VARCHAR, nation VARCHAR)"}, {"answer": "SELECT nation FROM table_name_72 WHERE second = \"tomas pitonak\"", "question": "Which Nation has a Second of tomas pitonak?", "context": "CREATE TABLE table_name_72 (nation VARCHAR, second VARCHAR)"}, {"answer": "SELECT second FROM table_name_56 WHERE third = \"athanassios pantios\"", "question": "Which Second has a Third of athanassios pantios?", "context": "CREATE TABLE table_name_56 (second VARCHAR, third VARCHAR)"}, {"answer": "SELECT lead FROM table_name_1 WHERE nation = \"croatia\"", "question": "Where did Croatia lead?", "context": "CREATE TABLE table_name_1 (lead VARCHAR, nation VARCHAR)"}, {"answer": "SELECT skip FROM table_name_34 WHERE third = \"carlo alessandro zisa\"", "question": "Which Skip has a Third of carlo alessandro zisa?", "context": "CREATE TABLE table_name_34 (skip VARCHAR, third VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_94 WHERE player = \"shaun sabol\"", "question": "What is the nationality of Shaun Sabol?", "context": "CREATE TABLE table_name_94 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_74 WHERE nationality = \"united states\" AND player = \"brett lawrence\"", "question": "What is the position of United States' player Brett Lawrence?", "context": "CREATE TABLE table_name_74 (position VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT compression_ratio FROM table_name_57 WHERE dx_10_name = \"(none)\" AND fourcc = \"dxt4\"", "question": "Which Compression ratio has a (none) DX 10 Name and a FOURCC of dxt4?", "context": "CREATE TABLE table_name_57 (compression_ratio VARCHAR, dx_10_name VARCHAR, fourcc VARCHAR)"}, {"answer": "SELECT venue FROM table_name_79 WHERE radio = \"mrn\" AND race = \"napa auto parts 200\"", "question": "What is the venue of the napa auto parts 200 race with a mrn radio?", "context": "CREATE TABLE table_name_79 (venue VARCHAR, radio VARCHAR, race VARCHAR)"}, {"answer": "SELECT race FROM table_name_3 WHERE date = \"10/10/2008\"", "question": "What is the race on 10/10/2008?", "context": "CREATE TABLE table_name_3 (race VARCHAR, date VARCHAR)"}, {"answer": "SELECT race FROM table_name_71 WHERE distance = \"201.44 miles\"", "question": "Which race has a distance of 201.44 miles?", "context": "CREATE TABLE table_name_71 (race VARCHAR, distance VARCHAR)"}, {"answer": "SELECT distance FROM table_name_48 WHERE venue = \"atlanta motor speedway\"", "question": "What is the distance of the race at the Atlanta Motor Speedway?", "context": "CREATE TABLE table_name_48 (distance VARCHAR, venue VARCHAR)"}, {"answer": "SELECT distance FROM table_name_24 WHERE race = \"sam's town 250\"", "question": "What is the distance of the Sam's town 250 race?", "context": "CREATE TABLE table_name_24 (distance VARCHAR, race VARCHAR)"}, {"answer": "SELECT venue FROM table_name_62 WHERE race = \"carfax 250\"", "question": "What is the venue of teh carfax 250 race?", "context": "CREATE TABLE table_name_62 (venue VARCHAR, race VARCHAR)"}, {"answer": "SELECT name FROM table_name_33 WHERE teams = \"cornell-penn\"", "question": "What is the name of the event where Cornell-Penn played?", "context": "CREATE TABLE table_name_33 (name VARCHAR, teams VARCHAR)"}, {"answer": "SELECT games_played FROM table_name_77 WHERE trophy = \"sawhorse dollar\"", "question": "Who many games were played for the series with the Sawhorse Dollar trophy?", "context": "CREATE TABLE table_name_77 (games_played VARCHAR, trophy VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_51 WHERE points < 4 AND october < 5", "question": "How many games have Points smaller than 4, and an October smaller than 5?", "context": "CREATE TABLE table_name_51 (game VARCHAR, points VARCHAR, october VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_43 WHERE record = \"8\u20132\u20130\" AND points > 16", "question": "Which Game has a Record of 8\u20132\u20130, and Points larger than 16?", "context": "CREATE TABLE table_name_43 (game INTEGER, record VARCHAR, points VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE october < 15 AND record = \"2\u20130\u20130\"", "question": "Which Score has an October smaller than 15, and a Record of 2\u20130\u20130?", "context": "CREATE TABLE table_name_73 (score VARCHAR, october VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_31 WHERE november = 7 AND points > 17", "question": "How many games have November 7 as the date, and points greater than 17?", "context": "CREATE TABLE table_name_31 (game VARCHAR, november VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_45 WHERE november = 15", "question": "How many points have November of 15?", "context": "CREATE TABLE table_name_45 (points INTEGER, november VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_24 WHERE runner_up = \"jim barnes\" AND year = 1924", "question": "Name the winning score for jim barnes and year of 1924", "context": "CREATE TABLE table_name_24 (winning_score VARCHAR, runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT rider FROM table_name_96 WHERE team = \"lcr honda 600cc\" AND time = \"59\u2019 22.80\"", "question": "What was the Rider of the LCR Honda 600CC Team with a Time of 59\u2019 22.80?", "context": "CREATE TABLE table_name_96 (rider VARCHAR, team VARCHAR, time VARCHAR)"}, {"answer": "SELECT rider FROM table_name_12 WHERE speed = \"108.347mph\" AND time = \"1:02.40.93\"", "question": "What Rider had a Speed of 108.347mph and Time of 1:02.40.93?", "context": "CREATE TABLE table_name_12 (rider VARCHAR, speed VARCHAR, time VARCHAR)"}, {"answer": "SELECT rider FROM table_name_46 WHERE time = \"1:01.50.57\"", "question": "What Rider had a Time of 1:01.50.57?", "context": "CREATE TABLE table_name_46 (rider VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_14 WHERE date = \"june 24\"", "question": "What is the average attendance that has june 24 as the date?", "context": "CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE time = \"2:59\"", "question": "What date has 2:59 as the time?", "context": "CREATE TABLE table_name_95 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT surface FROM table_name_95 WHERE tournament = \"manta, ecuador\"", "question": "What is the surface when the tournament is manta, ecuador?", "context": "CREATE TABLE table_name_95 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_22 WHERE tournament = \"manta, ecuador\"", "question": "What is the surface for the tournament of manta, ecuador?", "context": "CREATE TABLE table_name_22 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_11 WHERE opponent = \"lesley joseph\"", "question": "What tournament is lesley joseph the opponent?", "context": "CREATE TABLE table_name_11 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE opponent = \"marcos daniel\"", "question": "What date was marcos daniel the opponent?", "context": "CREATE TABLE table_name_16 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT copa_libertadores_1999 FROM table_name_23 WHERE copa_conmebol_1999 = \"did not qualify\" AND team = \"gr\u00eamio\"", "question": "What is the Copa Libertadores 1999 result for team gr\u00eamio, who did not qualify for Copa Conmebol 1999?", "context": "CREATE TABLE table_name_23 (copa_libertadores_1999 VARCHAR, copa_conmebol_1999 VARCHAR, team VARCHAR)"}, {"answer": "SELECT copa_mercosur_1999 FROM table_name_51 WHERE copa_libertadores_1999 = \"did not qualify\" AND copa_conmebol_1999 = \"did not qualify\" AND team = \"gr\u00eamio\"", "question": "What is the copa mercosur 1999 result for team gr\u00eamio, who did not qualify for the Copa Libertadores 1999 and Copa Conmebol 1999?", "context": "CREATE TABLE table_name_51 (copa_mercosur_1999 VARCHAR, team VARCHAR, copa_libertadores_1999 VARCHAR, copa_conmebol_1999 VARCHAR)"}, {"answer": "SELECT intercontinental_cup_1999 FROM table_name_48 WHERE copa_libertadores_1999 = \"did not qualify\" AND copa_mercosur_1999 = \"quarterfinals\"", "question": "What is the intercontinental cup 1999 result of the team who did not qualify for the Copa Libertadores 1999 and made quarterfinals in the Copa Mercosur 1999?", "context": "CREATE TABLE table_name_48 (intercontinental_cup_1999 VARCHAR, copa_libertadores_1999 VARCHAR, copa_mercosur_1999 VARCHAR)"}, {"answer": "SELECT copa_libertadores_1999 FROM table_name_62 WHERE copa_mercosur_1999 = \"group stage\" AND team = \"vasco\"", "question": "What is the Copa Libertadores 1999 result for team vasco, which made the group stage in the Copa Mercosur 1999?", "context": "CREATE TABLE table_name_62 (copa_libertadores_1999 VARCHAR, copa_mercosur_1999 VARCHAR, team VARCHAR)"}, {"answer": "SELECT intercontinental_cup_1999 FROM table_name_63 WHERE copa_conmebol_1999 = \"runner-up\"", "question": "What is the Intercontinental Cup 1999 result for the team with a Copa Conmebol 1999 result of runner-up?", "context": "CREATE TABLE table_name_63 (intercontinental_cup_1999 VARCHAR, copa_conmebol_1999 VARCHAR)"}, {"answer": "SELECT copa_conmebol_1999 FROM table_name_4 WHERE copa_libertadores_1999 = \"did not qualify\" AND team = \"cruzeiro\"", "question": "What is the Copa Conmebol 1999 result of team cruzeiro, which did not qualify for the Copa Libertadores 1999?", "context": "CREATE TABLE table_name_4 (copa_conmebol_1999 VARCHAR, copa_libertadores_1999 VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_60 WHERE result = \"lost 2-4\" AND date > 15", "question": "How many people attended the game that lost 2-4 and the date was higher than 15?", "context": "CREATE TABLE table_name_60 (attendance VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_52 WHERE attendance > 914 AND opponent = \"wightlink raiders\"", "question": "What kind of competition had an attendance of more than 914 people and the Wightlink Raiders as an opponent?", "context": "CREATE TABLE table_name_52 (competition VARCHAR, attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_61 WHERE competition = \"league\" AND venue = \"away\" AND date = 22", "question": "How many people attended the away league competition with a date of 22?", "context": "CREATE TABLE table_name_61 (attendance VARCHAR, date VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT series FROM table_name_7 WHERE date = \"may 2\"", "question": "Which Series has a Date of may 2?", "context": "CREATE TABLE table_name_7 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_30 WHERE series = \"bruins lead 3\u20131\"", "question": "Which Game has a Series of bruins lead 3\u20131?", "context": "CREATE TABLE table_name_30 (game INTEGER, series VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_91 WHERE series = \"bruins lead 2\u20131\"", "question": "Which Opponent has a Series of bruins lead 2\u20131?", "context": "CREATE TABLE table_name_91 (opponent VARCHAR, series VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE game = 4", "question": "Which Date has a Game of 4?", "context": "CREATE TABLE table_name_33 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_19 WHERE score = \"3\u20136\"", "question": "Which Game has a Score of 3\u20136?", "context": "CREATE TABLE table_name_19 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT rank FROM table_name_1 WHERE first_quarter = \"industrial and commercial bank of china 277,236\"", "question": "What is the Rank of industrial and commercial bank of china 277,236?", "context": "CREATE TABLE table_name_1 (rank VARCHAR, first_quarter VARCHAR)"}, {"answer": "SELECT result FROM table_name_11 WHERE goal = 4", "question": "What was result of goal 4?", "context": "CREATE TABLE table_name_11 (result VARCHAR, goal VARCHAR)"}, {"answer": "SELECT player FROM table_name_30 WHERE college_junior_club_team__league_ = \"shawinigan dynamos (qmjhl)\"", "question": "Who is the player that is part of the team Shawinigan Dynamos (Qmjhl)?", "context": "CREATE TABLE table_name_30 (player VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_60 WHERE college_junior_club_team__league_ = \"minnesota junior stars (mjhl)\"", "question": "What is the highest round for the Minnesota Junior Stars (Mjhl)?", "context": "CREATE TABLE table_name_60 (round INTEGER, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE opponent = \"woking\"", "question": "When did woking compete?", "context": "CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_65 WHERE attendance = 375", "question": "Which Opponent has an Attendance of 375?", "context": "CREATE TABLE table_name_65 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_58 WHERE opponent = \"oxford united\"", "question": "How much Attendance has an Opponent of oxford united?", "context": "CREATE TABLE table_name_58 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_78 WHERE opponent = \"crawley town\"", "question": "Which Attendance has an Opponent of crawley town?", "context": "CREATE TABLE table_name_78 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(podiums) FROM table_name_94 WHERE series = \"macau grand prix\" AND season < 2008", "question": "How many Podiums where their total for the Series of Macau grand prix, as well as being a season before 2008?", "context": "CREATE TABLE table_name_94 (podiums INTEGER, series VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_43 WHERE series = \"formula 3 euro series\" AND podiums > 2", "question": "How many wins where there total for Series named formula 3 euro series as well as having more than 2 Podiums?", "context": "CREATE TABLE table_name_43 (wins VARCHAR, series VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_92 WHERE season < 2007 AND team = \"silverstone motorsport academy\"", "question": "What is the largest amount of wins that was before the 2007 season, as well as the Team being silverstone motorsport academy?", "context": "CREATE TABLE table_name_92 (wins INTEGER, season VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_65 WHERE podiums = 0 AND races = 1 AND wins > 0", "question": "What is the newest Season in which had 0 Podiums, and having 1 total of Races, as well as total wins larger than 0?", "context": "CREATE TABLE table_name_65 (season INTEGER, wins VARCHAR, podiums VARCHAR, races VARCHAR)"}, {"answer": "SELECT week FROM table_name_80 WHERE date = \"december 4, 2009\"", "question": "Name the week for december 4, 2009", "context": "CREATE TABLE table_name_80 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_19 WHERE record = \"6-2\"", "question": "Name the opponent with record of 6-2", "context": "CREATE TABLE table_name_19 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_82 WHERE result = \"w 35-21\"", "question": "Name the opponent with result of w 35-21", "context": "CREATE TABLE table_name_82 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE result = \"w 35-7\"", "question": "Name the date with resultof w 35-7", "context": "CREATE TABLE table_name_22 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE record = \"3-1\"", "question": "Name the date with record of 3-1", "context": "CREATE TABLE table_name_33 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT week FROM table_name_29 WHERE date = \"bye\"", "question": "Name the week for date of bye", "context": "CREATE TABLE table_name_29 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT friendly FROM table_name_58 WHERE germany = \"france\"", "question": "What is the friendly game for Germany of France?", "context": "CREATE TABLE table_name_58 (friendly VARCHAR, germany VARCHAR)"}, {"answer": "SELECT company FROM table_name_84 WHERE number > 5 AND price = \"$389m\"", "question": "What company is numbered larger than 5 and priced at $389M?", "context": "CREATE TABLE table_name_84 (company VARCHAR, number VARCHAR, price VARCHAR)"}, {"answer": "SELECT category FROM table_name_55 WHERE result = \"nominated\" AND nominee = \"william ivey long\"", "question": "Which category was william ivey long a nominee and nominated in?", "context": "CREATE TABLE table_name_55 (category VARCHAR, result VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT half_life FROM table_name_22 WHERE discovery_year = \"2003\"", "question": "What is the half-life discovered in 2003?", "context": "CREATE TABLE table_name_22 (half_life VARCHAR, discovery_year VARCHAR)"}, {"answer": "SELECT decay_mode FROM table_name_28 WHERE discovery_year = \"1984\" AND isotope = \"265m hs\"", "question": "What is the decay mode of the 265m hs isotope discovered in 1984?", "context": "CREATE TABLE table_name_28 (decay_mode VARCHAR, discovery_year VARCHAR, isotope VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_name_6 WHERE city_of_license = \"trinidad, colorado\"", "question": "What is the Frequency MHz of Trinidad, Colorado?", "context": "CREATE TABLE table_name_6 (frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_76 WHERE erp_w < 500 AND class = \"a\" AND frequency_mhz > 89.7", "question": "What city of license has an ERP W smaller than 500, Class A, and Frequency MHz larger than 89.7?", "context": "CREATE TABLE table_name_76 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR, class VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_84 WHERE team = \"fandok\"", "question": "What is the smallest capacity for Fandok?", "context": "CREATE TABLE table_name_84 (capacity INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_99 WHERE overall < 136 AND position = \"defensive back\"", "question": "What is the highest pick number of a defensive back with less than 136 overall points?", "context": "CREATE TABLE table_name_99 (pick__number INTEGER, overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_45 WHERE name = \"john scully\"", "question": "What is the lowest pick number of John Scully?", "context": "CREATE TABLE table_name_45 (pick__number INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_28 WHERE games < 5", "question": "What is the total points with less than 5 games?", "context": "CREATE TABLE table_name_28 (points VARCHAR, games INTEGER)"}, {"answer": "SELECT outcome FROM table_name_34 WHERE venue = \"india open\"", "question": "What was the outcome for the India Open?", "context": "CREATE TABLE table_name_34 (outcome VARCHAR, venue VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_16 WHERE year = \"1985\" AND venue = \"india open\"", "question": "What was the Outcome at the 1985 India Open?", "context": "CREATE TABLE table_name_16 (outcome VARCHAR, year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_88 WHERE partner = \"kang haeng-suk\" AND year = \"1982\"", "question": "What was the outcome in 1982 with Kang Haeng-Suk as partner?", "context": "CREATE TABLE table_name_88 (outcome VARCHAR, partner VARCHAR, year VARCHAR)"}, {"answer": "SELECT party FROM table_name_4 WHERE first_elected < 1878 AND district = \"south carolina 3\"", "question": "Which Party has a First elected smaller than 1878, and a District of south carolina 3?", "context": "CREATE TABLE table_name_4 (party VARCHAR, first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_name_6 WHERE first_elected = 1876 AND district = \"south carolina 3\"", "question": "Which Result has a First elected of 1876, and a District of south carolina 3?", "context": "CREATE TABLE table_name_6 (result VARCHAR, first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT result FROM table_name_98 WHERE first_elected > 1876 AND incumbent = \"john s. richardson\"", "question": "Which Result has a First elected larger than 1876, and an Incumbent of john s. richardson?", "context": "CREATE TABLE table_name_98 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_73 WHERE party = \"republican\" AND first_elected < 1864", "question": "Who is the incumbent that is a republican and first elected before 1864?", "context": "CREATE TABLE table_name_73 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT district FROM table_name_69 WHERE party = \"democratic\" AND incumbent = \"francis c. le blond\"", "question": "What district is the democratic Francis C. Le Blond from?", "context": "CREATE TABLE table_name_69 (district VARCHAR, party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT SUM(first_elected) FROM table_name_66 WHERE result = \"re-elected\" AND district = \"ohio 4\"", "question": "In the Ohio 4 district, that is the first elected date that has a result of re-elected?", "context": "CREATE TABLE table_name_66 (first_elected INTEGER, result VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_name_68 WHERE district = \"ohio 6\"", "question": "What is the party in Ohio 6 District?", "context": "CREATE TABLE table_name_68 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_24 WHERE year = 1994", "question": "Which To par has a Year of 1994?", "context": "CREATE TABLE table_name_24 (to_par VARCHAR, year VARCHAR)"}, {"answer": "SELECT country FROM table_name_91 WHERE margin_of_victory = \"2 strokes\"", "question": "Which Country has a Margin of victory of 2 strokes?", "context": "CREATE TABLE table_name_91 (country VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_93 WHERE to_par = \"\u20131\"", "question": "Which Year is the lowest one that has a To par of \u20131?", "context": "CREATE TABLE table_name_93 (year INTEGER, to_par VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_25 WHERE year > 1994 AND to_par = \"\u201314\" AND score = 69 - 67 - 69 - 69 = 274", "question": "Which Margin of victory has a Year larger than 1994, and a To par of \u201314, and a Score of 69-67-69-69=274?", "context": "CREATE TABLE table_name_25 (margin_of_victory VARCHAR, year VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_37 WHERE location = \"astrodome\"", "question": "What was the record after the game at the Astrodome?", "context": "CREATE TABLE table_name_37 (record VARCHAR, location VARCHAR)"}, {"answer": "SELECT record FROM table_name_98 WHERE opponent = \"houston oilers\"", "question": "What was the record after the game against the Houston Oilers?", "context": "CREATE TABLE table_name_98 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_71 WHERE nation = \"belarus\" AND e_score < 8.2", "question": "What is the average total score of Belarus, which had an E score less than 8.2?", "context": "CREATE TABLE table_name_71 (total INTEGER, nation VARCHAR, e_score VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_57 WHERE t_score > 8 AND e_score < 8.4", "question": "What is the total of the team with a T score greater than 8 and an E score less than 8.4?", "context": "CREATE TABLE table_name_57 (total INTEGER, t_score VARCHAR, e_score VARCHAR)"}, {"answer": "SELECT t_score FROM table_name_52 WHERE e_score = 6.625", "question": "What is the T score of the team with an E score of 6.625?", "context": "CREATE TABLE table_name_52 (t_score VARCHAR, e_score VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_97 WHERE nation = \"poland\" AND e_score > 7.725", "question": "What is the total of Poland, which has an E score greater than 7.725?", "context": "CREATE TABLE table_name_97 (total VARCHAR, nation VARCHAR, e_score VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_88 WHERE t_score < 6.8", "question": "What is the total of the team with a T score less than 6.8?", "context": "CREATE TABLE table_name_88 (total INTEGER, t_score INTEGER)"}, {"answer": "SELECT date FROM table_name_56 WHERE competition = \"2012 afc challenge cup\" AND venue = \"dasarath rangasala stadium, kathmandu\"", "question": "What date has a competition of 2012 afc challenge cup, and dasarath rangasala stadium, kathmandu as the venue?", "context": "CREATE TABLE table_name_56 (date VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_70 WHERE social_democrats__a_ = \"31.1%\"", "question": "What opposition do 31.1% of Social Democrats have?", "context": "CREATE TABLE table_name_70 (opposition VARCHAR, social_democrats__a_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_22 WHERE round > 14 AND school_club_team = \"north texas\"", "question": "Which Position has a Round larger than 14, and a School/Club Team of north texas?", "context": "CREATE TABLE table_name_22 (position VARCHAR, round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT round FROM table_name_72 WHERE player = \"anthony christnovich\"", "question": "Which Round has a Player of anthony christnovich?", "context": "CREATE TABLE table_name_72 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_20 WHERE school_club_team = \"virginia\"", "question": "Which Round is the lowest one that has a School/Club Team of virginia?", "context": "CREATE TABLE table_name_20 (round INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_5 WHERE date = \"2006-11-22\"", "question": "What is the name of the leading scorer on 2006-11-22?", "context": "CREATE TABLE table_name_5 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_18 WHERE record = \"9\u20136\"", "question": "What is the name of the leading scorer when the record was 9\u20136?", "context": "CREATE TABLE table_name_18 (leading_scorer VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_40 WHERE visitor = \"warriors\" AND date = \"2006-11-04\"", "question": "What is the number of people in Attendance when Visitor was the warriors on 2006-11-04?", "context": "CREATE TABLE table_name_40 (attendance VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_46 WHERE date = \"2006-11-04\"", "question": "What is the name of the visitor on 2006-11-04?", "context": "CREATE TABLE table_name_46 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_59 WHERE score = \"89\u2013102\"", "question": "What is the name of the Leading scorer when the Score was 89\u2013102?", "context": "CREATE TABLE table_name_59 (leading_scorer VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_1 WHERE town = \"norton\"", "question": "How many people live in Norton?", "context": "CREATE TABLE table_name_1 (population INTEGER, town VARCHAR)"}, {"answer": "SELECT year FROM table_name_59 WHERE borough = \"harrogate\" AND rank < 6 AND definition = \"civil parish\"", "question": "Which Year has a Borough of harrogate, and a Rank smaller than 6, and a Definition of civil parish?", "context": "CREATE TABLE table_name_59 (year VARCHAR, definition VARCHAR, borough VARCHAR, rank VARCHAR)"}, {"answer": "SELECT definition FROM table_name_63 WHERE rank < 12 AND town = \"tadcaster\"", "question": "Which Definition has a Rank smaller than 12, and a Town of tadcaster?", "context": "CREATE TABLE table_name_63 (definition VARCHAR, rank VARCHAR, town VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_16 WHERE borough = \"richmondshire\" AND population > 8 OFFSET 178", "question": "Which Rank is the lowest one that has a Borough of richmondshire, and a Population larger than 8,178?", "context": "CREATE TABLE table_name_16 (rank INTEGER, borough VARCHAR, population VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_1 WHERE nation = \"bulgaria\"", "question": "How many bronze medals did Bulgaria receive?", "context": "CREATE TABLE table_name_1 (bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_28 WHERE player = \"phil mickelson\"", "question": "What was Phil Mickelson's score to par?", "context": "CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT name FROM table_name_98 WHERE overall < 268 AND round = 1", "question": "What name has an overall less than 268, and 1 as the round?", "context": "CREATE TABLE table_name_98 (name VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_91 WHERE name = \"james britt\" AND round > 2", "question": "How many pick #'s have james britt as the name, with a round greater than 2?", "context": "CREATE TABLE table_name_91 (pick__number VARCHAR, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE date = \"november 15\"", "question": "what is the score on november 15", "context": "CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_66 WHERE country = \"united states\" AND player = \"andy bean\" AND rank < 4", "question": "Which Wins is the highest one that has a Country of united states, and a Player of andy bean, and a Rank smaller than 4?", "context": "CREATE TABLE table_name_66 (wins INTEGER, rank VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_23 WHERE rank = 5", "question": "Which Country has a Rank of 5?", "context": "CREATE TABLE table_name_23 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(earnings___) AS $__ FROM table_name_12 WHERE rank < 1", "question": "Which Earnings ($) is the lowest one that has a Rank smaller than 1?", "context": "CREATE TABLE table_name_12 (earnings___ INTEGER, rank INTEGER)"}, {"answer": "SELECT score FROM table_name_49 WHERE opponent = \"expos\" AND date = \"september 13\"", "question": "What is the score of the game on September 13 when the Expos were the opponent?", "context": "CREATE TABLE table_name_49 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_38 WHERE date = \"september 3\"", "question": "Who was the opponent on the September 3 game?", "context": "CREATE TABLE table_name_38 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT save FROM table_name_92 WHERE date = \"september 15\"", "question": "What is the save of the game on September 15?", "context": "CREATE TABLE table_name_92 (save VARCHAR, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_44 WHERE week > 14", "question": "Which Game site has a Week larger than 14?", "context": "CREATE TABLE table_name_44 (game_site VARCHAR, week INTEGER)"}, {"answer": "SELECT date FROM table_name_27 WHERE game_site = \"jeppesen stadium\"", "question": "Which Date has a Game site of jeppesen stadium?", "context": "CREATE TABLE table_name_27 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_99 WHERE attendance = \"27,189\"", "question": "Which Game site  has 27,189 Attendances ?", "context": "CREATE TABLE table_name_99 (game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE attendance = \"15,557\"", "question": "When is it has 15,557 Attendances?", "context": "CREATE TABLE table_name_35 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_36 WHERE name = \"lance moon\" AND overall < 171", "question": "With an Overall less than 171, what is the Round pick of Lance Moon?", "context": "CREATE TABLE table_name_36 (round INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT name FROM table_name_19 WHERE pick__number = 10", "question": "What is the Name of draft Pick #10?", "context": "CREATE TABLE table_name_19 (name VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_16 WHERE position = \"defensive end\"", "question": "How many Rounds have a Defensive End Pick?", "context": "CREATE TABLE table_name_16 (round VARCHAR, position VARCHAR)"}, {"answer": "SELECT time FROM table_name_57 WHERE opponent = \"shinya aoki\"", "question": "What was the time when Shinya Aoki was the opponent?", "context": "CREATE TABLE table_name_57 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_89 WHERE round = 1 AND record = \"1-0\"", "question": "Which method was used in round 1 with a record of 1-0?", "context": "CREATE TABLE table_name_89 (method VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT rank FROM table_name_96 WHERE team = \"suzuki\" AND points < 16", "question": "Which rank has a team of Suzuki with under 16 points?", "context": "CREATE TABLE table_name_96 (rank VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT class FROM table_name_79 WHERE rank = \"5th\"", "question": "Which class has a rank of 5th?", "context": "CREATE TABLE table_name_79 (class VARCHAR, rank VARCHAR)"}, {"answer": "SELECT team FROM table_name_88 WHERE class = \"500cc\" AND rank = \"16th\"", "question": "Which team has a class of 500cc and rank of 16th?", "context": "CREATE TABLE table_name_88 (team VARCHAR, class VARCHAR, rank VARCHAR)"}, {"answer": "SELECT team FROM table_name_90 WHERE points = 16 AND rank = \"14th\"", "question": "Which team has 16 points and ranks 14th?", "context": "CREATE TABLE table_name_90 (team VARCHAR, points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT dance FROM table_name_68 WHERE worst_dancer_s_ = \"priscilla presley\" AND worst_score = \"21\"", "question": "What is the dance that has priscilla presley is the worst dancer(s), and the worst score of 21?", "context": "CREATE TABLE table_name_68 (dance VARCHAR, worst_dancer_s_ VARCHAR, worst_score VARCHAR)"}, {"answer": "SELECT best_score FROM table_name_30 WHERE dance = \"freestyle\"", "question": "What is the best score of the dance freestyle?", "context": "CREATE TABLE table_name_30 (best_score VARCHAR, dance VARCHAR)"}, {"answer": "SELECT dance FROM table_name_52 WHERE worst_dancer_s_ = \"marissa jaret winokur\"", "question": "Which dance has the worst dancer(s) as marissa jaret winokur?", "context": "CREATE TABLE table_name_52 (dance VARCHAR, worst_dancer_s_ VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_91 WHERE opponent = \"vancouver canucks\"", "question": "Which Points have an Opponent of vancouver canucks?", "context": "CREATE TABLE table_name_91 (points INTEGER, opponent VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_80 WHERE score = \"3\u20130\"", "question": "How many Points have a Score of 3\u20130?", "context": "CREATE TABLE table_name_80 (points VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_5 WHERE points < 10 AND october > 12 AND opponent = \"@ washington capitals\"", "question": "Which Game has Points smaller than 10, and an October larger than 12, and an Opponent of @ washington capitals?", "context": "CREATE TABLE table_name_5 (game INTEGER, opponent VARCHAR, points VARCHAR, october VARCHAR)"}, {"answer": "SELECT record FROM table_name_96 WHERE points > 0 AND score = \"7\u20133\"", "question": "Which Record has Points larger than 0, and a Score of 7\u20133?", "context": "CREATE TABLE table_name_96 (record VARCHAR, points VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE game > 5", "question": "On what date was the game more than 5?", "context": "CREATE TABLE table_name_23 (date VARCHAR, game INTEGER)"}, {"answer": "SELECT series FROM table_name_4 WHERE date = \"may 16\"", "question": "Which series was on May 16?", "context": "CREATE TABLE table_name_4 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE jurisdiction = \"oregon\"", "question": "Name the date for oregon jurisdiction", "context": "CREATE TABLE table_name_92 (date VARCHAR, jurisdiction VARCHAR)"}, {"answer": "SELECT john_b_anderson FROM table_name_21 WHERE phil_crane = \"0%\" AND ronald_reagan = \"43%\"", "question": "Name the john b. anderson for ronald reagan of 43% and phil crane of 0%", "context": "CREATE TABLE table_name_21 (john_b_anderson VARCHAR, phil_crane VARCHAR, ronald_reagan VARCHAR)"}, {"answer": "SELECT howard_baker FROM table_name_64 WHERE george_h_w_bush = \"66%\"", "question": "Name the howard bake when bush had 66%", "context": "CREATE TABLE table_name_64 (howard_baker VARCHAR, george_h_w_bush VARCHAR)"}, {"answer": "SELECT george_h_w_bush FROM table_name_59 WHERE ronald_reagan = \"43%\"", "question": "Name the george bush for ronald reagan of 43%", "context": "CREATE TABLE table_name_59 (george_h_w_bush VARCHAR, ronald_reagan VARCHAR)"}, {"answer": "SELECT howard_baker FROM table_name_46 WHERE ronald_reagan = \"72%\"", "question": "Name the howard baker for ronald reagan of 72%", "context": "CREATE TABLE table_name_46 (howard_baker VARCHAR, ronald_reagan VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_48 WHERE season = \"2004/05\"", "question": "What is the sum of goals for the 2004/05 Season?", "context": "CREATE TABLE table_name_48 (goals INTEGER, season VARCHAR)"}, {"answer": "SELECT MIN(caps) FROM table_name_86 WHERE club = \"sbv excelsior\"", "question": "What is the lowest caps for the Club of SBV Excelsior?", "context": "CREATE TABLE table_name_86 (caps INTEGER, club VARCHAR)"}, {"answer": "SELECT season FROM table_name_35 WHERE caps < 36 AND club = \"nac breda\"", "question": "Which season has Caps lower than 36 for the Club of NAC Breda?", "context": "CREATE TABLE table_name_35 (season VARCHAR, caps VARCHAR, club VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_91 WHERE partner = \"daniella dominikovic\"", "question": "Which Opponents in the final have a Partner of daniella dominikovic?", "context": "CREATE TABLE table_name_91 (opponents_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE partner = \"daniella dominikovic\"", "question": "Which Date has a Partner of daniella dominikovic?", "context": "CREATE TABLE table_name_33 (date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT surface FROM table_name_89 WHERE partner = \"pemra \u00f6zgen\"", "question": "Which Surface has a Partner of pemra \u00f6zgen?", "context": "CREATE TABLE table_name_89 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE opponents_in_the_final = \"valeria casillo lilly raffa\"", "question": "Which Date has Opponents in the final of valeria casillo lilly raffa?", "context": "CREATE TABLE table_name_59 (date VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE partner = \"daniella dominikovic\"", "question": "Which Date has a Partner of daniella dominikovic?", "context": "CREATE TABLE table_name_66 (date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_5 WHERE nationality = \"england\" AND matches < 510 AND lost = 4 AND win__percentage < 28.6", "question": "Nationality of england, and a Matches smaller than 510, and a Lost of 4, and a Win % smaller than 28.6 had what lowest drawn?", "context": "CREATE TABLE table_name_5 (drawn INTEGER, win__percentage VARCHAR, lost VARCHAR, nationality VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_47 WHERE win__percentage > 47.1 AND matches < 145", "question": "Win % larger than 47.1, and a Matches smaller than 145 had what lowest lost?", "context": "CREATE TABLE table_name_47 (lost INTEGER, win__percentage VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_83 WHERE matches = 15 AND win__percentage < 20", "question": "Matches of 15, and a Win % smaller than 20 had what highest lost?", "context": "CREATE TABLE table_name_83 (lost INTEGER, matches VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_1 WHERE nationality = \"england\" AND lost > 39 AND win__percentage = 28.7 AND drawn < 37", "question": "Nationality of england, and a Lost larger than 39, and a Win % of 28.7, and a Drawn smaller than 37 had what sum of matches?", "context": "CREATE TABLE table_name_1 (matches INTEGER, drawn VARCHAR, win__percentage VARCHAR, nationality VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_5 WHERE drawn < 24 AND lost < 17 AND win__percentage < 31.25", "question": "Drawn smaller than 24, and a Lost smaller than 17, and a Win % smaller than 31.25 had how many total number of matches?", "context": "CREATE TABLE table_name_5 (matches VARCHAR, win__percentage VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(win__percentage) FROM table_name_52 WHERE lost = 18", "question": "Lost of 18 had what sum of win %?", "context": "CREATE TABLE table_name_52 (win__percentage INTEGER, lost VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE record = \"5-31\"", "question": "When was the score 5-31?", "context": "CREATE TABLE table_name_20 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_49 WHERE team__number1 = \"kk bosna\"", "question": "What is the second leg that has kk bosna?", "context": "CREATE TABLE table_name_49 (team__number1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_75 WHERE team__number1 = \"hapoel jerusalem\"", "question": "What is the 1st leg that has  hapoel jerusalem?", "context": "CREATE TABLE table_name_75 (team__number1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_12 WHERE team__number1 = \"hemofarm\"", "question": "Which 1st leg that has hemofarm?", "context": "CREATE TABLE table_name_12 (team__number1 VARCHAR)"}, {"answer": "SELECT name FROM table_name_6 WHERE avg_g = 201.3", "question": "Who averaged 201.3 yards passing per game?", "context": "CREATE TABLE table_name_6 (name VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT COUNT(avg_g) FROM table_name_88 WHERE att_cmp_int = \"143\u2013269\u201316\" AND effic < 116.9", "question": "How many players had an Att-Cmp-Int of 143\u2013269\u201316, and an efficiency of less than 116.9?", "context": "CREATE TABLE table_name_88 (avg_g VARCHAR, att_cmp_int VARCHAR, effic VARCHAR)"}, {"answer": "SELECT att_cmp_int FROM table_name_72 WHERE effic = 117.4", "question": "What is the Att-Cmp-Int for the player with a efficiency of 117.4?", "context": "CREATE TABLE table_name_72 (att_cmp_int VARCHAR, effic VARCHAR)"}, {"answer": "SELECT COUNT(legs_lost) FROM table_name_1 WHERE high_checkout < 76 AND played < 3", "question": "What is the total number of legs lost of the player with a high checkout less than 76 and less than 3 played?", "context": "CREATE TABLE table_name_1 (legs_lost VARCHAR, high_checkout VARCHAR, played VARCHAR)"}, {"answer": "SELECT ch_1 FROM table_name_73 WHERE region_served = \"central tablelands\"", "question": "What is the Ch1 in the region served by Central Tablelands?", "context": "CREATE TABLE table_name_73 (ch_1 VARCHAR, region_served VARCHAR)"}, {"answer": "SELECT transmitter_location FROM table_name_62 WHERE digital_power = \"570kw\"", "question": "What transmitter location has digital power of 570kw?", "context": "CREATE TABLE table_name_62 (transmitter_location VARCHAR, digital_power VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_96 WHERE team = \"yamaha\" AND wins = 0 AND rank = \"8th\" AND points > 22", "question": "What year did team Yamaha have 0 wins, a rank of 8th, and more than 22 points?", "context": "CREATE TABLE table_name_96 (year VARCHAR, points VARCHAR, rank VARCHAR, team VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_6 WHERE opponent = \"gina carano\"", "question": "Name the total number of rounds for gina carano", "context": "CREATE TABLE table_name_6 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT points_difference FROM table_name_51 WHERE lost = 2 AND points < 10", "question": "What is the difference related to 2 losses and fewer than 10 points?", "context": "CREATE TABLE table_name_51 (points_difference VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT site FROM table_name_94 WHERE opponent = \"iowa\"", "question": "Where did the game(s) against Iowa take place?", "context": "CREATE TABLE table_name_94 (site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_35 WHERE surface = \"carpet\"", "question": "What is the Outcome of the Doubles played on Carpet?", "context": "CREATE TABLE table_name_35 (outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_26 WHERE partner = \"debbie graham\"", "question": "What was the Surface during the match with Partner Debbie Graham?", "context": "CREATE TABLE table_name_26 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_91 WHERE date = \"february 23, 1997\"", "question": "What was the Partner on February 23, 1997?", "context": "CREATE TABLE table_name_91 (partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_64 WHERE surface = \"clay\" AND date = \"may 24, 1992\"", "question": "What was the Tournament on May 24, 1992 played on a Clay Surface?", "context": "CREATE TABLE table_name_64 (tournament VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_40 WHERE score = \"7\u20135, 6\u20137, 4\u20136\"", "question": "What was the Surface in the match with a Score of 7\u20135, 6\u20137, 4\u20136?", "context": "CREATE TABLE table_name_40 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_name_50 WHERE erp_w > 30 AND city_of_license = \"tremonton, utah\"", "question": "What is the frequency MHz in tremonton, utah with a ERP W larger than 30?", "context": "CREATE TABLE table_name_50 (frequency_mhz VARCHAR, erp_w VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT MAX(erp_w) FROM table_name_59 WHERE call_sign = \"k275av\"", "question": "What is k275av call sign's highest erp w?", "context": "CREATE TABLE table_name_59 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT year FROM table_name_96 WHERE playoffs = \"american conference semifinals\"", "question": "Name the year for american conference semifinals", "context": "CREATE TABLE table_name_96 (year VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_35 WHERE playoffs = \"quarterfinals\"", "question": "Name the total number of years for quarterfinals", "context": "CREATE TABLE table_name_35 (year VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_54 WHERE season < 2005", "question": "Who is the Runner-up that has a Season less than 2005?", "context": "CREATE TABLE table_name_54 (runner_up VARCHAR, season INTEGER)"}, {"answer": "SELECT MAX(season) FROM table_name_52 WHERE score = \"3 \u2013 3 aet , 4\u20133 pen\"", "question": "Which Seasonhas a Score of 3 \u2013 3 aet , 4\u20133 pen?", "context": "CREATE TABLE table_name_52 (season INTEGER, score VARCHAR)"}, {"answer": "SELECT season FROM table_name_31 WHERE score = \"3 \u2013 3 aet , 4\u20133 pen\"", "question": "Which Season has a Score of 3 \u2013 3 aet , 4\u20133 pen", "context": "CREATE TABLE table_name_31 (season VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_24 WHERE overall = 211", "question": "How many rounds had an overall of 211?", "context": "CREATE TABLE table_name_24 (round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_60 WHERE position = \"cornerback\" AND overall < 134", "question": "What is the mean pick number for the cornerback position when the overall is less than 134?", "context": "CREATE TABLE table_name_60 (pick__number INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT SUM(1956) FROM table_name_40 WHERE county = \"v\u00e2lcea\" AND 2011 < 371714", "question": "Which 1956 has a County of v\u00e2lcea, and a 2011 smaller than 371714?", "context": "CREATE TABLE table_name_40 (county VARCHAR)"}, {"answer": "SELECT MIN(2011) FROM table_name_81 WHERE 1948 < 15872624 AND 1966 = 263103 AND 1992 > 266308", "question": "Which 2011 is the lowest one that has a 1948 smaller than 15872624, and a 1966 of 263103, and a 1992 larger than 266308?", "context": "CREATE TABLE table_name_81 (Id VARCHAR)"}, {"answer": "SELECT MIN(1992) FROM table_name_12 WHERE 1977 < 385577 AND 2011 > 340310 AND 2002 > 300123 AND 1948 > 280524", "question": "Which 1992 is the lowest one that has a 1977 smaller than 385577, and a 2011 larger than 340310, and a 2002 larger than 300123, and a 1948 larger than 280524?", "context": "CREATE TABLE table_name_12 (Id VARCHAR)"}, {"answer": "SELECT MIN(1977) FROM table_name_23 WHERE county = \"zzz bucharest\" AND 2011 < 1883425", "question": "Which 1977 is the lowest one that has a County of zzz bucharest, and a 2011 smaller than 1883425?", "context": "CREATE TABLE table_name_23 (county VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_23 WHERE attendance = \"54,040\"", "question": "What is the site of the game that had an attendance of 54,040?", "context": "CREATE TABLE table_name_23 (game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_6 WHERE opponent = \"houston oilers\"", "question": "What is the attendance of the game against the houston oilers?", "context": "CREATE TABLE table_name_6 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE week = 7", "question": "What was the date of the game on week 7?", "context": "CREATE TABLE table_name_49 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_53 WHERE game_site = \"bye\"", "question": "How many fans attended the game at Bye?", "context": "CREATE TABLE table_name_53 (attendance VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT winner FROM table_name_12 WHERE location = \"iowa\"", "question": "Which winner had a location of Iowa?", "context": "CREATE TABLE table_name_12 (winner VARCHAR, location VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_63 WHERE partner = \"katarina srebotnik\" AND championship = \"wimbledon (4)\"", "question": "Which opponent in the final had a partner of Katarina Srebotnik and a championship of wimbledon (4)?", "context": "CREATE TABLE table_name_63 (opponents_in_the_final VARCHAR, partner VARCHAR, championship VARCHAR)"}, {"answer": "SELECT partner FROM table_name_30 WHERE surface = \"hard\" AND championship = \"us open\"", "question": "Who was the partner when the championship was us open on a hard surface?", "context": "CREATE TABLE table_name_30 (partner VARCHAR, surface VARCHAR, championship VARCHAR)"}, {"answer": "SELECT surface FROM table_name_55 WHERE partner = \"julie halard\" AND score_in_the_final = \"6\u20133, 6\u20132\"", "question": "What was the surface for Julie Halard when the final score was 6\u20133, 6\u20132?", "context": "CREATE TABLE table_name_55 (surface VARCHAR, partner VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_60 WHERE opponents_in_the_final = \"serena williams venus williams\" AND surface = \"hard\"", "question": "What was the outcome when the oppenent was serena williams venus williams and had a hard surface?", "context": "CREATE TABLE table_name_60 (outcome VARCHAR, opponents_in_the_final VARCHAR, surface VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_1 WHERE drawn = 2 AND position > 3 AND points < 10", "question": "How much Played has Drawn of 2, and a Position larger than 3, and Points smaller than 10?", "context": "CREATE TABLE table_name_1 (played VARCHAR, points VARCHAR, drawn VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_24 WHERE difference = \"10\" AND lost < 2", "question": "Which average Against has a Difference of 10, and a Lost smaller than 2?", "context": "CREATE TABLE table_name_24 (against INTEGER, difference VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_71 WHERE result_f___a = \"0 \u2013 2\" AND date = \"31 january 1903\"", "question": "How many Attendances have a Result F \u2013 A of 0 \u2013 2, and a Date of 31 january 1903?", "context": "CREATE TABLE table_name_71 (attendance INTEGER, result_f___a VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_37 WHERE date = \"13 april 1903\"", "question": "How many Attendances on 13 april 1903?", "context": "CREATE TABLE table_name_37 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_47 WHERE h___a = \"h\" AND date = \"7 march 1903\"", "question": "How many Attendances have a H / A of h on 7 march 1903?", "context": "CREATE TABLE table_name_47 (attendance INTEGER, h___a VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_50 WHERE h___a = \"a\" AND result_f___a = \"2 \u2013 0\" AND attendance > 30 OFFSET 000", "question": "Which Opponent has a H / A of a, and a Result F \u2013 A of 2 \u2013 0, and a Attendance larger than 30,000?", "context": "CREATE TABLE table_name_50 (opponents VARCHAR, attendance VARCHAR, h___a VARCHAR, result_f___a VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE opponents = \"lincoln city\" AND h___a = \"a\"", "question": "When is The Opponents of lincoln city and a H / A of a?", "context": "CREATE TABLE table_name_31 (date VARCHAR, opponents VARCHAR, h___a VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE december = 11", "question": "What is the score for the Dec 11 game?", "context": "CREATE TABLE table_name_83 (score VARCHAR, december VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_96 WHERE opponent = \"phoenix coyotes\" AND december < 9", "question": "Which game has an opponent of Phoenix Coyotes and was before Dec 9?", "context": "CREATE TABLE table_name_96 (game INTEGER, opponent VARCHAR, december VARCHAR)"}, {"answer": "SELECT MAX(december) FROM table_name_9 WHERE record = \"11-13-5\"", "question": "What is the December game that led to an 11-13-5 record?", "context": "CREATE TABLE table_name_9 (december INTEGER, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_1 WHERE game = 41", "question": "What was the record after game 41?", "context": "CREATE TABLE table_name_1 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_76 WHERE college = \"florida state\" AND round > 2", "question": "Which Overall has a College of florida state, and a Round larger than 2?", "context": "CREATE TABLE table_name_76 (overall INTEGER, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_59 WHERE position = \"kicker\" AND overall < 137", "question": "How many Picks have a Position of kicker, and an Overall smaller than 137?", "context": "CREATE TABLE table_name_59 (pick__number INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT position FROM table_name_99 WHERE pick__number = 18", "question": "Which Position has a Pick # of 18?", "context": "CREATE TABLE table_name_99 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_name_37 WHERE round < 7 AND pick__number < 27 AND name = \"anthony maddox\"", "question": "Which College has a Round smaller than 7, and a Pick # smaller than 27, and a Name of anthony maddox?", "context": "CREATE TABLE table_name_37 (college VARCHAR, name VARCHAR, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_53 WHERE pick__number > 9 AND round > 5", "question": "How much Overall has a Pick # larger than 9, and a Round larger than 5?", "context": "CREATE TABLE table_name_53 (overall VARCHAR, pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE visitor = \"spurs\" AND record = \"35\u201316\"", "question": "Which score was for the Spurs as visitors with record of 35\u201316?", "context": "CREATE TABLE table_name_60 (score VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_67 WHERE home = \"warriors\"", "question": "Which record was for Warriors at home?", "context": "CREATE TABLE table_name_67 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_9 WHERE english_title = \"mal\u00e8na\"", "question": "English title of mal\u00e8na had what original title?", "context": "CREATE TABLE table_name_9 (original_title VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_79 WHERE original_title = \"\u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435 / vozvrashcheniye\"", "question": "Original title of \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435 / vozvrashcheniye had what English title?", "context": "CREATE TABLE table_name_79 (english_title VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_3 WHERE director = \"christophe barratier\"", "question": "Director of christophe barratier had what highest year?", "context": "CREATE TABLE table_name_3 (year INTEGER, director VARCHAR)"}, {"answer": "SELECT year FROM table_name_87 WHERE english_title = \"am\u00e9lie\"", "question": "English title of am\u00e9lie had what year?", "context": "CREATE TABLE table_name_87 (year VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT director FROM table_name_28 WHERE original_title = \"das leben der anderen\"", "question": "Original title of das leben der anderen had what director?", "context": "CREATE TABLE table_name_28 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT director FROM table_name_13 WHERE role = \"fred ayres\"", "question": "Who was the director where the role was Fred Ayres?", "context": "CREATE TABLE table_name_13 (director VARCHAR, role VARCHAR)"}, {"answer": "SELECT theatre, _studio, _or_network FROM table_name_8 WHERE role = \"peter p. peters\"", "question": "What was the theatre where Peter P. Peters is the role?", "context": "CREATE TABLE table_name_8 (theatre VARCHAR, _studio VARCHAR, _or_network VARCHAR, role VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_12 WHERE margin = \"1 stroke\"", "question": "Who are the Runner(s)-up with a Margin of 1 stroke?", "context": "CREATE TABLE table_name_12 (runner_s__up VARCHAR, margin VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_49 WHERE margin = \"3 strokes\"", "question": "Who are the Runner(s)-up with a Margin of 3 strokes?", "context": "CREATE TABLE table_name_49 (runner_s__up VARCHAR, margin VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_14 WHERE championship = \"the open championship\"", "question": "What is the highest Year with of the open championship?", "context": "CREATE TABLE table_name_14 (year INTEGER, championship VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_57 WHERE year = 1956", "question": "What is the Winning score in 1956?", "context": "CREATE TABLE table_name_57 (winning_score VARCHAR, year VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_90 WHERE year = 1965", "question": "What is the Winning score in 1965?", "context": "CREATE TABLE table_name_90 (winning_score VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_64 WHERE runner_s__up = \"flory van donck\"", "question": "What Year had a Runner(s)-up of flory van donck?", "context": "CREATE TABLE table_name_64 (year VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE region = \"new zealand\"", "question": "What is the release Date for the Region in New Zealand ?", "context": "CREATE TABLE table_name_72 (date VARCHAR, region VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE region = \"new zealand\"", "question": "What is the release Date for the New Zealand Region?", "context": "CREATE TABLE table_name_16 (date VARCHAR, region VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE catalogue = \"602517739468\"", "question": "What is the Date of Catalogue number 602517739468?", "context": "CREATE TABLE table_name_90 (date VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT region FROM table_name_16 WHERE catalogue = \"1785089\"", "question": "In what Region was the Catalogue number 1785089 released?", "context": "CREATE TABLE table_name_16 (region VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_5 WHERE frequency_mhz < 100.1", "question": "Which city of license has a frequency less than 100.1?", "context": "CREATE TABLE table_name_5 (city_of_license VARCHAR, frequency_mhz INTEGER)"}, {"answer": "SELECT erp_w FROM table_name_19 WHERE call_sign = \"w261cq\"", "question": "What is the ERP W with a call sign at w261cq?", "context": "CREATE TABLE table_name_19 (erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT AVG(erp_w) FROM table_name_6 WHERE frequency_mhz > 100.1", "question": "What is the average value for ERP W when frequency is more than 100.1?", "context": "CREATE TABLE table_name_6 (erp_w INTEGER, frequency_mhz INTEGER)"}, {"answer": "SELECT frequency_mhz FROM table_name_45 WHERE call_sign = \"w228bg\"", "question": "What frequency has call sign w228bg?", "context": "CREATE TABLE table_name_45 (frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT AVG(erp_w) FROM table_name_70 WHERE city_of_license = \"beardstown, illinois\" AND frequency_mhz > 93.5", "question": "What is the average value of ERP W in Beardstown, Illinois for a frequency greater than 93.5?", "context": "CREATE TABLE table_name_70 (erp_w INTEGER, city_of_license VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE year = 2000", "question": "What was the winning score in 2000?", "context": "CREATE TABLE table_name_30 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT weekly_rank FROM table_name_43 WHERE airdate = \"sunday, june 14, 2009\"", "question": "Name the weekly rank for sunday, june 14, 2009", "context": "CREATE TABLE table_name_43 (weekly_rank VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_25 WHERE overall = 184 AND round > 6", "question": "Which Pick # is the highest one that has an Overall of 184, and a Round larger than 6?", "context": "CREATE TABLE table_name_25 (pick__number INTEGER, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_75 WHERE overall = 114", "question": "How many picks have an Overall of 114?", "context": "CREATE TABLE table_name_75 (pick__number VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_26 WHERE name = \"daimon shelton\" AND round > 6", "question": "Which Overall is the highest one that has a Name of daimon shelton, and a Round larger than 6?", "context": "CREATE TABLE table_name_26 (overall INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_14 WHERE overall > 21 AND college = \"north carolina\" AND round < 3", "question": "Which Pick # is the highest one that has an Overall larger than 21, and a College of north carolina, and a Round smaller than 3?", "context": "CREATE TABLE table_name_14 (pick__number INTEGER, round VARCHAR, overall VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_45 WHERE overall > 147 AND pick__number = 21", "question": "Which Position has an Overall larger than 147, and a Pick # of 21?", "context": "CREATE TABLE table_name_45 (position VARCHAR, overall VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_13 WHERE college = \"cornell\"", "question": "What is cornell's lowest pick number?", "context": "CREATE TABLE table_name_13 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT eviction_result FROM table_name_10 WHERE net_vote = \"31.86%\"", "question": "Which Eviction result has a Net vote of 31.86%?", "context": "CREATE TABLE table_name_10 (eviction_result VARCHAR, net_vote VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_36 WHERE vote_to_save = \"1.98%\"", "question": "Which Nominee has a Vote to Save of 1.98%?", "context": "CREATE TABLE table_name_36 (nominee VARCHAR, vote_to_save VARCHAR)"}, {"answer": "SELECT vote_to_evict FROM table_name_27 WHERE vote_to_save = \"21.22%\"", "question": "Which Vote to Evict has a Vote to Save of 21.22%?", "context": "CREATE TABLE table_name_27 (vote_to_evict VARCHAR, vote_to_save VARCHAR)"}, {"answer": "SELECT vote_to_save FROM table_name_3 WHERE eviction_no < 14 AND vote_to_evict = \"5.42%\"", "question": "Which Vote to Save has an Eviction # smaller than 14, and a Vote to Evict of 5.42%?", "context": "CREATE TABLE table_name_3 (vote_to_save VARCHAR, eviction_no VARCHAR, vote_to_evict VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_6 WHERE 2012 = 219 OFFSET 721", "question": "What is the average rank of a nation that had 219,721 in 2012?", "context": "CREATE TABLE table_name_6 (rank INTEGER)"}, {"answer": "SELECT SUM(round) FROM table_name_93 WHERE pick = 138", "question": "In what Round was Pick 138?", "context": "CREATE TABLE table_name_93 (round INTEGER, pick VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_47 WHERE player = \"john crawford\"", "question": "What is John Crawford's Nationality?", "context": "CREATE TABLE table_name_47 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_22 WHERE call_sign = \"k236am\"", "question": "What is the ERP W for K236AM?", "context": "CREATE TABLE table_name_22 (erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT AVG(frequency_mhz) FROM table_name_54 WHERE erp_w = 170", "question": "What is the average frequency in MHz for stations with an ERP W of 170?", "context": "CREATE TABLE table_name_54 (frequency_mhz INTEGER, erp_w VARCHAR)"}, {"answer": "SELECT MIN(frequency_mhz) FROM table_name_51 WHERE call_sign = \"k236am\"", "question": "What is K236AM's lowest frequency in MHz?", "context": "CREATE TABLE table_name_51 (frequency_mhz INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT class FROM table_name_49 WHERE frequency_mhz < 90.5", "question": "What class is assigned to frequencies lower than 90.5?", "context": "CREATE TABLE table_name_49 (class VARCHAR, frequency_mhz INTEGER)"}, {"answer": "SELECT class FROM table_name_60 WHERE frequency_mhz > 89.3 AND erp_w = 250", "question": "What class is assigned to frequencies larger than 89.3 with an ERP W of 250?", "context": "CREATE TABLE table_name_60 (class VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE home = \"st. louis\"", "question": "What did st. louis score at home?", "context": "CREATE TABLE table_name_11 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT result FROM table_name_4 WHERE week = 1", "question": "What was the result of the game on week 1?", "context": "CREATE TABLE table_name_4 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT record FROM table_name_34 WHERE week = 13", "question": "What is the record of the game on week 13?", "context": "CREATE TABLE table_name_34 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(killeen_rate) FROM table_name_89 WHERE texas_rate < 32.9 AND us_rate > 5.6", "question": "Texas Rate smaller than 32.9, and a U.S. Rate larger than 5.6 is what highest killeen rate?", "context": "CREATE TABLE table_name_89 (killeen_rate INTEGER, texas_rate VARCHAR, us_rate VARCHAR)"}, {"answer": "SELECT SUM(killeen_rate) FROM table_name_8 WHERE reported_offenses > 216 AND us_rate < 3274 AND texas_rate < 2688.9 AND crime = \"violent crime\"", "question": "Reported Offenses larger than 216, and a U.S. Rate smaller than 3274, and a Texas Rate smaller than 2688.9, and a Crime of violent crime has what killeen rate?", "context": "CREATE TABLE table_name_8 (killeen_rate INTEGER, crime VARCHAR, texas_rate VARCHAR, reported_offenses VARCHAR, us_rate VARCHAR)"}, {"answer": "SELECT MIN(reported_offenses) FROM table_name_96 WHERE killeen_rate = 511.6 AND texas_rate < 314.4", "question": "Killeen Rate of 511.6, and a Texas Rate smaller than 314.4 is the lowest reported offenses?", "context": "CREATE TABLE table_name_96 (reported_offenses INTEGER, killeen_rate VARCHAR, texas_rate VARCHAR)"}, {"answer": "SELECT type FROM table_name_49 WHERE category = \"mouse\" AND attribute = \"ondblclick\"", "question": "Tell me the type for category of mouse and attribute of ondblclick", "context": "CREATE TABLE table_name_49 (type VARCHAR, category VARCHAR, attribute VARCHAR)"}, {"answer": "SELECT type FROM table_name_79 WHERE cancelable = \"no\" AND attribute = \"ondragend\"", "question": "Name the type with cancelable of no and attribute of ondragend", "context": "CREATE TABLE table_name_79 (type VARCHAR, cancelable VARCHAR, attribute VARCHAR)"}, {"answer": "SELECT cancelable FROM table_name_25 WHERE attribute = \"onmouseover\"", "question": "Name the cancelable for onmouseover", "context": "CREATE TABLE table_name_25 (cancelable VARCHAR, attribute VARCHAR)"}, {"answer": "SELECT bubbles FROM table_name_12 WHERE attribute = \"onscroll\"", "question": "Name the bubbles for onscroll", "context": "CREATE TABLE table_name_12 (bubbles VARCHAR, attribute VARCHAR)"}, {"answer": "SELECT attribute FROM table_name_81 WHERE category = \"mutation\" AND type = \"domcharacterdatamodified\"", "question": "Name the attribute for mutation and domcharacterdatamodified", "context": "CREATE TABLE table_name_81 (attribute VARCHAR, category VARCHAR, type VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_15 WHERE date = \"may 1\"", "question": "Who had high rebounds on May 1?", "context": "CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_30 WHERE score = \"l 92\u2013116\"", "question": "What location attendance had a score of l 92\u2013116?", "context": "CREATE TABLE table_name_30 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_64 WHERE silver < 0", "question": "What is the gold medal count that has a silver medal count less than 0?", "context": "CREATE TABLE table_name_64 (gold INTEGER, silver INTEGER)"}, {"answer": "SELECT AVG(students) FROM table_name_25 WHERE pupil_teacher_ratio = 25.1", "question": "What is the average number of students for schools with a pupil to teacher ratio of 25.1?", "context": "CREATE TABLE table_name_25 (students INTEGER, pupil_teacher_ratio VARCHAR)"}, {"answer": "SELECT MIN(pupil_teacher_ratio) FROM table_name_13 WHERE city = \"saratoga\" AND students < 1213", "question": "What is the lowest pupil to teacher ratio for Saratoga schools with smaller than 1213 students?", "context": "CREATE TABLE table_name_13 (pupil_teacher_ratio INTEGER, city VARCHAR, students VARCHAR)"}, {"answer": "SELECT MAX(students) FROM table_name_13 WHERE city = \"campbell\" AND pupil_teacher_ratio > 25", "question": "What is the highest number of students for schools in Campbell with pupil to teacher ratios over 25?", "context": "CREATE TABLE table_name_13 (students INTEGER, city VARCHAR, pupil_teacher_ratio VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_87 WHERE wins__outdoor_ > 1 AND wins__indoor_ < 0", "question": "Name the most rank for wins outdoor larger than 1 and wins indoor less than 0", "context": "CREATE TABLE table_name_87 (rank INTEGER, wins__outdoor_ VARCHAR, wins__indoor_ VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_1 WHERE country = \"uk\" AND wins__indoor_ > 5", "question": "Name the most rank for uk and wins more than 5", "context": "CREATE TABLE table_name_1 (rank INTEGER, country VARCHAR, wins__indoor_ VARCHAR)"}, {"answer": "SELECT AVG(wins__outdoor_) FROM table_name_61 WHERE rank > 4 AND wins__total_ < 3 AND wins__indoor_ > 0", "question": "Name the average wins outdoor with rank more than 4 and wins less than 3 with outdoor wins more than 0", "context": "CREATE TABLE table_name_61 (wins__outdoor_ INTEGER, wins__indoor_ VARCHAR, rank VARCHAR, wins__total_ VARCHAR)"}, {"answer": "SELECT MAX(wins__total_) FROM table_name_68 WHERE wins__indoor_ = 0 AND wins__outdoor_ = 1 AND rank < 7", "question": "Name the most wins total with wins indoor of 0 and wins outdoor of 1 with rank less than 7", "context": "CREATE TABLE table_name_68 (wins__total_ INTEGER, rank VARCHAR, wins__indoor_ VARCHAR, wins__outdoor_ VARCHAR)"}, {"answer": "SELECT framed_size FROM table_name_22 WHERE date_completed = \"08/87\"", "question": "What was the frame size in 08/87?", "context": "CREATE TABLE table_name_22 (framed_size VARCHAR, date_completed VARCHAR)"}, {"answer": "SELECT print_name FROM table_name_39 WHERE date_completed = \"07/87\"", "question": "What was the print name in 07/87?", "context": "CREATE TABLE table_name_39 (print_name VARCHAR, date_completed VARCHAR)"}, {"answer": "SELECT framed_size FROM table_name_10 WHERE nickname = \"grand central\"", "question": "What is the frame size that was nicknamed Grand Central?", "context": "CREATE TABLE table_name_10 (framed_size VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT date_completed FROM table_name_55 WHERE nickname = \"little tavern\"", "question": "When was the Little Tavern completed?", "context": "CREATE TABLE table_name_55 (date_completed VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT AVG(1990 AS _1991) FROM table_name_26 WHERE played = 38 AND points = 40", "question": "Which 1990-1991 is the average one that has Played of 38, and Points of 40?", "context": "CREATE TABLE table_name_26 (played VARCHAR, points VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_84 WHERE nationality = \"canada\" AND player = \"jeff brown\"", "question": "Which College/Junior/Club Team  has a Nationality of Canada and Jeff brown?", "context": "CREATE TABLE table_name_84 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_81 WHERE college_junior_club_team__league_ = \"hc cska moscow (russia)\"", "question": "Which Player has a Hc Cska Moscow (Russia)?", "context": "CREATE TABLE table_name_81 (player VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_11 WHERE player = \"daniel goneau\"", "question": "What is Nationality of daniel goneau?", "context": "CREATE TABLE table_name_11 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT points FROM table_name_12 WHERE class = \"500cc\" AND machine = \"nsr500\"", "question": "What points have 500cc as a class, and nsr500 as a machine?", "context": "CREATE TABLE table_name_12 (points VARCHAR, class VARCHAR, machine VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_24 WHERE points = 78", "question": "How many years have 78 for points?", "context": "CREATE TABLE table_name_24 (year VARCHAR, points VARCHAR)"}, {"answer": "SELECT class FROM table_name_45 WHERE machine = \"nsr250\" AND points > 97", "question": "What class has nsr250 as the machine, with points greater than 97?", "context": "CREATE TABLE table_name_45 (class VARCHAR, machine VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_24 WHERE wins > 0", "question": "What is the lowest year that have wins greater than 0?", "context": "CREATE TABLE table_name_24 (year INTEGER, wins INTEGER)"}, {"answer": "SELECT MAX(points) FROM table_name_49 WHERE year < 1992 AND wins < 0", "question": "What are the highest points that have a year less than 1992, with wins less than 0?", "context": "CREATE TABLE table_name_49 (points INTEGER, year VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_91 WHERE opponent = \"st. louis cardinals\"", "question": "What was the lowest attendance at a game against the St. Louis Cardinals?", "context": "CREATE TABLE table_name_91 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT district FROM table_name_85 WHERE name = \"milburn\"", "question": "What district is the parish Milburn in?", "context": "CREATE TABLE table_name_85 (district VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_name_5 WHERE former_local_authority = \"cockermouth rural district\" AND name = \"plumbland\"", "question": "What is the population of the Parish, Plumbland, that had a former local authority of Cockermouth Rural District?", "context": "CREATE TABLE table_name_5 (population VARCHAR, former_local_authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT district FROM table_name_58 WHERE name = \"brough\"", "question": "What is the district for the parish, Brough?", "context": "CREATE TABLE table_name_58 (district VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_44 WHERE entrant = \"lola motorsport\" AND points > 0", "question": "What year featured lola motorsport as an entrant with over 0 points?", "context": "CREATE TABLE table_name_44 (year INTEGER, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_40 WHERE engine = \"judd\"", "question": "When is the earliest year that there's a judd engine?", "context": "CREATE TABLE table_name_40 (year INTEGER, engine VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_2 WHERE year = 1989 AND engine = \"cosworth\"", "question": "What chassis is used in 1989 with a cosworth engine?", "context": "CREATE TABLE table_name_2 (chassis VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT where_built FROM table_name_79 WHERE year_built < 1858", "question": "Where was something built earlier than 1858?", "context": "CREATE TABLE table_name_79 (where_built VARCHAR, year_built INTEGER)"}, {"answer": "SELECT name FROM table_name_89 WHERE year_built = 1857", "question": "What was built in 1857?", "context": "CREATE TABLE table_name_89 (name VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT initial_owners FROM table_name_57 WHERE year_built = 1858 AND name = \"wasco\"", "question": "Who were the initial owners of Wasco in 1858?", "context": "CREATE TABLE table_name_57 (initial_owners VARCHAR, year_built VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_31 WHERE where_built = \"port blakeley\"", "question": "What was the type of boat built in Port Blakeley", "context": "CREATE TABLE table_name_31 (type VARCHAR, where_built VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE location = \"arrowhead stadium\"", "question": "What is the date of the game at Arrowhead Stadium?", "context": "CREATE TABLE table_name_33 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_70 WHERE week > 4 AND date = \"sun. nov. 17\"", "question": "Who is the opponent of the game after week 4 on Sun. Nov. 17?", "context": "CREATE TABLE table_name_70 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT median_family_income FROM table_name_72 WHERE median_household_income = \"$25,583\"", "question": "What's the median family income with a household income of $25,583?", "context": "CREATE TABLE table_name_72 (median_family_income VARCHAR, median_household_income VARCHAR)"}, {"answer": "SELECT per_capita_income FROM table_name_34 WHERE median_household_income = \"$51,914\"", "question": "What's the $51,914 median household income per capita?", "context": "CREATE TABLE table_name_34 (per_capita_income VARCHAR, median_household_income VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_1 WHERE runner_s__up = \"steve stricker\"", "question": "What was the winning score when Steve Stricker was runner-up?", "context": "CREATE TABLE table_name_1 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_2 WHERE winning_score = \u221214(63 - 67 - 73 - 67 = 270)", "question": "What was the margin of victory when the winning score was \u221214 (63-67-73-67=270)?", "context": "CREATE TABLE table_name_2 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_64 WHERE margin_of_victory = \"1 stroke\" AND date = \"jan 30, 2000\"", "question": "Who was the runnerup when the margin of victory was 1 stroke on jan 30, 2000?", "context": "CREATE TABLE table_name_64 (runner_s__up VARCHAR, margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_67 WHERE winning_score = \u221212(66 - 67 - 64 - 71 = 268)", "question": "What was the margin of victory when the winning score was \u221212 (66-67-64-71=268)?", "context": "CREATE TABLE table_name_67 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE margin_of_victory = \"1 stroke\" AND tournament = \"colonial national invitation\"", "question": "What day was the margin of victory 1 stroke when the tournament was colonial national invitation?", "context": "CREATE TABLE table_name_5 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_5 WHERE runner_s__up = \"greg norman\"", "question": "What was the winning score for runnerup Greg Norman", "context": "CREATE TABLE table_name_5 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT builder FROM table_name_63 WHERE pennant_number = \"q149\"", "question": "Which Builder has a Pennant number of Q149?", "context": "CREATE TABLE table_name_63 (builder VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT commissioned FROM table_name_8 WHERE pennant_number = \"q144\"", "question": "On what date was the ship with a Pennant number of Q144 commissioned?", "context": "CREATE TABLE table_name_8 (commissioned VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT COUNT(ordered) FROM table_name_10 WHERE name = \"monge\"", "question": "How many ships are named Monge?", "context": "CREATE TABLE table_name_10 (ordered VARCHAR, name VARCHAR)"}, {"answer": "SELECT launched FROM table_name_17 WHERE spacecraft = \"mariner 4\"", "question": "What launched has mariner 4 as the spacecraft?", "context": "CREATE TABLE table_name_17 (launched VARCHAR, spacecraft VARCHAR)"}, {"answer": "SELECT launched FROM table_name_91 WHERE time_elapsed = \"158 days (5 months, 8 days)\"", "question": "What launched has 158 days (5 months, 8 days) as the time elapsed?", "context": "CREATE TABLE table_name_91 (launched VARCHAR, time_elapsed VARCHAR)"}, {"answer": "SELECT issue_date_s_ FROM table_name_44 WHERE artist = \"andy gibb\"", "question": "When was the song by Andy Gibb issued?", "context": "CREATE TABLE table_name_44 (issue_date_s_ VARCHAR, artist VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_57 WHERE college = \"stanford\" AND overall < 8", "question": "Which Round has a College of stanford, and an Overall smaller than 8?", "context": "CREATE TABLE table_name_57 (round INTEGER, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_59 WHERE college = \"tennessee\" AND overall < 270", "question": "How many Picks have a College of tennessee, and an Overall smaller than 270?", "context": "CREATE TABLE table_name_59 (pick__number INTEGER, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_92 WHERE college = \"troy state\" AND name = \"reggie dwight\" AND overall < 217", "question": "Which Pick # is the lowest one that has a College of troy state, and a Name of reggie dwight, and an Overall smaller than 217?", "context": "CREATE TABLE table_name_92 (pick__number INTEGER, overall VARCHAR, college VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(earnings___) AS $__ FROM table_name_87 WHERE wins < 72 AND rank > 3", "question": "What's the smallest amount of earnings when the wins are less than 72 and the rank is more than 3?", "context": "CREATE TABLE table_name_87 (earnings___ INTEGER, wins VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(earnings___) AS $__ FROM table_name_86 WHERE wins > 18 AND rank = 2", "question": "What's the smallest amount of earnings when there are more than 18 wins and the rank is 2?", "context": "CREATE TABLE table_name_86 (earnings___ INTEGER, wins VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_53 WHERE wins > 0", "question": "What is the lowest number of losses for a team with more than 0 wins?", "context": "CREATE TABLE table_name_53 (losses INTEGER, wins INTEGER)"}, {"answer": "SELECT AVG(losses) FROM table_name_23 WHERE wins < 0", "question": "What is the average number of losses for teams with fewer than 0 wins?", "context": "CREATE TABLE table_name_23 (losses INTEGER, wins INTEGER)"}, {"answer": "SELECT AVG(wins) FROM table_name_55 WHERE team = \"runcorn highfield\" AND draws > 0", "question": "What is the average number of wins for Runcorn Highfield with more than 0 draws?", "context": "CREATE TABLE table_name_55 (wins INTEGER, team VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_28 WHERE team = \"nottingham city\" AND wins < 0", "question": "What is the lowest number of losses for Nottingham City with fewer than 0 wins?", "context": "CREATE TABLE table_name_28 (losses INTEGER, team VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(weight) FROM table_name_53 WHERE team = \"philadelphia 76ers\"", "question": "What is the weight of the player from the Philadelphia 76ers?", "context": "CREATE TABLE table_name_53 (weight VARCHAR, team VARCHAR)"}, {"answer": "SELECT height FROM table_name_71 WHERE player = \"larry hughes\"", "question": "What is the height of the player, Larry Hughes?", "context": "CREATE TABLE table_name_71 (height VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE to_club = \"blackpool\"", "question": "What player was moved to Blackpool?", "context": "CREATE TABLE table_name_41 (player VARCHAR, to_club VARCHAR)"}, {"answer": "SELECT end_date FROM table_name_99 WHERE to_club = \"celtic\"", "question": "A player was moved to celtic had an end of what date?", "context": "CREATE TABLE table_name_99 (end_date VARCHAR, to_club VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_23 WHERE february > 20 AND record = \"41\u201317\u20134\" AND points < 86", "question": "Which Game is the average one that has a February larger than 20, and a Record of 41\u201317\u20134, and Points smaller than 86?", "context": "CREATE TABLE table_name_23 (game INTEGER, points VARCHAR, february VARCHAR, record VARCHAR)"}, {"answer": "SELECT country FROM table_name_94 WHERE player = \"david toms\"", "question": "what country hosted david toms", "context": "CREATE TABLE table_name_94 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_87 WHERE game = 18", "question": "What was the score for game 18?", "context": "CREATE TABLE table_name_87 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT kickoff___et__ FROM table_name_92 WHERE game_site = \"ralph wilson stadium\"", "question": "What is the kickoff time for the game that was at Ralph Wilson Stadium?", "context": "CREATE TABLE table_name_92 (kickoff___et__ VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT record FROM table_name_90 WHERE nfl_recap = \"recap\" AND opponent = \"new england patriots\"", "question": "What is the record for the game against the New England Patriots with a recap?", "context": "CREATE TABLE table_name_90 (record VARCHAR, nfl_recap VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_52 WHERE week = 11", "question": "What is the result of the game on week 11?", "context": "CREATE TABLE table_name_52 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_15 WHERE record = \"3-0-2\"", "question": "Who was the visitor that led to a 3-0-2 record?", "context": "CREATE TABLE table_name_15 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_67 WHERE film_title_used_in_nomination = \"gypsy magic\"", "question": "What is the original title of the Gypsy Magic film title used in nomination?", "context": "CREATE TABLE table_name_67 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT builder FROM table_name_64 WHERE number = 3", "question": "Name the builder for number 3", "context": "CREATE TABLE table_name_64 (builder VARCHAR, number VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE works_number < 1673 AND number < 3", "question": "Name the date with works number less than 1673 and number less than 3", "context": "CREATE TABLE table_name_42 (date VARCHAR, works_number VARCHAR, number VARCHAR)"}, {"answer": "SELECT builder FROM table_name_90 WHERE works_number > 199 AND date = \"4/1906\"", "question": "Name the builder for 4/1906 and works number more than 199", "context": "CREATE TABLE table_name_90 (builder VARCHAR, works_number VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_10 WHERE result = \"w 14-3\" AND week > 10", "question": "What was the largest number of people in attendance of the game with a W 14-3 result after week 10?", "context": "CREATE TABLE table_name_10 (attendance INTEGER, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT zares FROM table_name_87 WHERE date = \"may 21\u201322\"", "question": "What is the percentage for Zares on May 21\u201322?", "context": "CREATE TABLE table_name_87 (zares VARCHAR, date VARCHAR)"}, {"answer": "SELECT source FROM table_name_37 WHERE desus = \"7%\"", "question": "What is the source for 7% DeSUS?", "context": "CREATE TABLE table_name_37 (source VARCHAR, desus VARCHAR)"}, {"answer": "SELECT source FROM table_name_12 WHERE zares = \"8.6%\"", "question": "What is the source for Zares at 8.6%?", "context": "CREATE TABLE table_name_12 (source VARCHAR, zares VARCHAR)"}, {"answer": "SELECT source FROM table_name_7 WHERE date = \"may 25\u201327\"", "question": "What is the source corresponding to a date of May 25\u201327?", "context": "CREATE TABLE table_name_7 (source VARCHAR, date VARCHAR)"}, {"answer": "SELECT song FROM table_name_24 WHERE artist = \"terence trent d'arby\"", "question": "What song is done by Terence Trent D'Arby?", "context": "CREATE TABLE table_name_24 (song VARCHAR, artist VARCHAR)"}, {"answer": "SELECT result FROM table_name_66 WHERE date = \"october 27, 2002\"", "question": "What was the Result on October 27, 2002?", "context": "CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE venue = \"riyadh, saudi arabia\"", "question": "in riyadh, saudi arabia, what is the score?", "context": "CREATE TABLE table_name_12 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(pocona_municipality___percentage_) FROM table_name_61 WHERE puerto_villarroel_municipality___percentage_ < 14.6 AND chimor\u00e9_municipality___percentage_ = 5.1 AND entre_r\u00edos_municipality___percentage_ < 0.9", "question": "Which Pocona Municipality (%) is the lowest one that has a Puerto Villarroel Municipality (%) smaller than 14.6, and a Chimor\u00e9 Municipality (%) of 5.1, and an Entre R\u00edos Municipality (%) smaller than 0.9?", "context": "CREATE TABLE table_name_61 (pocona_municipality___percentage_ INTEGER, entre_r\u00edos_municipality___percentage_ VARCHAR, puerto_villarroel_municipality___percentage_ VARCHAR, chimor\u00e9_municipality___percentage_ VARCHAR)"}, {"answer": "SELECT MIN(puerto_villarroel_municipality___percentage_) FROM table_name_94 WHERE ethnic_group = \"not indigenous\" AND totora_municipality___percentage_ < 4.4", "question": "Which Puerto Villarroel Municipality (%) is the lowest one that has an Ethnic group of not indigenous, and a Totora Municipality (%) smaller than 4.4?", "context": "CREATE TABLE table_name_94 (puerto_villarroel_municipality___percentage_ INTEGER, ethnic_group VARCHAR, totora_municipality___percentage_ VARCHAR)"}, {"answer": "SELECT SUM(pocona_municipality___percentage_) FROM table_name_6 WHERE puerto_villarroel_municipality___percentage_ > 14.6 AND pojo_municipality___percentage_ < 88.5", "question": "Which Pocona Municipality (%) has a Puerto Villarroel Municipality (%) larger than 14.6, and a Pojo Municipality (%) smaller than 88.5?", "context": "CREATE TABLE table_name_6 (pocona_municipality___percentage_ INTEGER, puerto_villarroel_municipality___percentage_ VARCHAR, pojo_municipality___percentage_ VARCHAR)"}, {"answer": "SELECT MAX(totora_municipality___percentage_) FROM table_name_72 WHERE chimor\u00e9_municipality___percentage_ = 5.1 AND pocona_municipality___percentage_ < 0.2", "question": "Which Totora Municipality (%) is the highest one that has a Chimor\u00e9 Municipality (%) of 5.1, and a Pocona Municipality (%) smaller than 0.2?", "context": "CREATE TABLE table_name_72 (totora_municipality___percentage_ INTEGER, chimor\u00e9_municipality___percentage_ VARCHAR, pocona_municipality___percentage_ VARCHAR)"}, {"answer": "SELECT AVG(pos) FROM table_name_91 WHERE car__number < 18 AND driver = \"mike skinner\"", "question": "Which Pos has a Car # smaller than 18, and a Driver of mike skinner?", "context": "CREATE TABLE table_name_91 (pos INTEGER, car__number VARCHAR, driver VARCHAR)"}, {"answer": "SELECT team FROM table_name_75 WHERE pos > 3 AND make = \"toyota\" AND car__number < 59 AND driver = \"mike skinner\"", "question": "Which Team has a Pos larger than 3, and a Make of toyota, and a Car # smaller than 59, and a Driver of mike skinner?", "context": "CREATE TABLE table_name_75 (team VARCHAR, driver VARCHAR, car__number VARCHAR, pos VARCHAR, make VARCHAR)"}, {"answer": "SELECT SUM(pos) FROM table_name_32 WHERE team = \"roush fenway racing\" AND car__number = 99", "question": "Which Pos has a Team of roush fenway racing, and a Car # of 99?", "context": "CREATE TABLE table_name_32 (pos INTEGER, team VARCHAR, car__number VARCHAR)"}, {"answer": "SELECT AVG(car__number) FROM table_name_93 WHERE make = \"toyota\" AND pos = 7", "question": "Which Car # has a Make of toyota, and a Pos of 7?", "context": "CREATE TABLE table_name_93 (car__number INTEGER, make VARCHAR, pos VARCHAR)"}, {"answer": "SELECT pos FROM table_name_68 WHERE team = \"germian racing\"", "question": "Which Pos has a Team of germian racing?", "context": "CREATE TABLE table_name_68 (pos VARCHAR, team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_64 WHERE score = \"2\u20136\"", "question": "Which Opponent has a Score of 2\u20136?", "context": "CREATE TABLE table_name_64 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_8 WHERE series = \"flyers win 3\u20130\"", "question": "Which Game has a Series of flyers win 3\u20130? Question 3", "context": "CREATE TABLE table_name_8 (game INTEGER, series VARCHAR)"}, {"answer": "SELECT series FROM table_name_84 WHERE date = \"april 18\"", "question": "Which Series is on april 18?", "context": "CREATE TABLE table_name_84 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE score = \"9-2\"", "question": "Name the date with score of 9-2", "context": "CREATE TABLE table_name_49 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_32 WHERE nationality = \"aut\" AND name = \"thomas morgenstern\"", "question": "Which Points is the highest one that has a Nationality of aut, and a Name of thomas morgenstern?", "context": "CREATE TABLE table_name_32 (points INTEGER, nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(capacity__mw_) FROM table_name_31 WHERE size__mw_ = \"0.85\" AND wind_farm = \"carrigh\" AND turbines > 3", "question": "What is the sum of the capacities for Carrigh wind warm that has a size of 0.85 MW and more than 3 turbines?", "context": "CREATE TABLE table_name_31 (capacity__mw_ INTEGER, turbines VARCHAR, size__mw_ VARCHAR, wind_farm VARCHAR)"}, {"answer": "SELECT size__mw_ FROM table_name_87 WHERE turbines > 19 AND turbine_vendor = \"enercon\" AND county = \"wexford\"", "question": "What is the size of the windfarm in wexford that has more than 19 turbines and a vendor of Enercon?", "context": "CREATE TABLE table_name_87 (size__mw_ VARCHAR, county VARCHAR, turbines VARCHAR, turbine_vendor VARCHAR)"}, {"answer": "SELECT turbine_vendor FROM table_name_85 WHERE turbines < 6 AND county = \"donegal\" AND size__mw_ = \"0.85\" AND wind_farm = \"meenadreen\"", "question": "Who is the turbine vendor for Meenadreen in Donegal county with less than 6 turbines with a size of 0.85 MW?", "context": "CREATE TABLE table_name_85 (turbine_vendor VARCHAR, wind_farm VARCHAR, size__mw_ VARCHAR, turbines VARCHAR, county VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_50 WHERE rank > 51 AND median_house__hold_income = \"$25,250\"", "question": "What is the population where the rank is higher than 51 and the Median House-hold income is $25,250?", "context": "CREATE TABLE table_name_50 (population INTEGER, rank VARCHAR, median_house__hold_income VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_59 WHERE median_house__hold_income = \"$25,016\"", "question": "What is the Population where the Median House-hold Income is $25,016?", "context": "CREATE TABLE table_name_59 (population INTEGER, median_house__hold_income VARCHAR)"}, {"answer": "SELECT AVG(number_of_households) FROM table_name_59 WHERE per_capita_income = \"$21,345\"", "question": "What is the Number of Households that have a Per Capita Income of $21,345?", "context": "CREATE TABLE table_name_59 (number_of_households INTEGER, per_capita_income VARCHAR)"}, {"answer": "SELECT county FROM table_name_3 WHERE median_family_income = \"$79,331\"", "question": "What County has a Median Family Income of $79,331?", "context": "CREATE TABLE table_name_3 (county VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_1 WHERE total < 171 AND nation = \"united states\" AND bronze < 9", "question": "The United States, with a total medal count of less than 171, and a bronze medal count less than 9, has how many gold medals?", "context": "CREATE TABLE table_name_1 (gold INTEGER, bronze VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_80 WHERE nation = \"australia\"", "question": "How many total gold medals did Australia receive?", "context": "CREATE TABLE table_name_80 (gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_58 WHERE nation = \"canada\"", "question": "How many total bronze medals did Canada receive?", "context": "CREATE TABLE table_name_58 (bronze INTEGER, nation VARCHAR)"}, {"answer": "SELECT gold FROM table_name_10 WHERE nation = \"india\"", "question": "How many total gold medals did India receive?", "context": "CREATE TABLE table_name_10 (gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_57 WHERE 1991 = \"a\" AND tournament = \"australian open\"", "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_77 WHERE 1992 = \"1r\" AND 1994 = \"a\"", "question": "Which 1997's 1992 was 1r when 1994 was a?", "context": "CREATE TABLE table_name_77 (Id VARCHAR)"}, {"answer": "SELECT 1995 FROM table_name_61 WHERE tournament = \"french open\"", "question": "Which 1995's tournament was the French Open?", "context": "CREATE TABLE table_name_61 (tournament VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_81 WHERE 1991 = \"1r\" AND 1994 = \"1r\"", "question": "Which 1989's 1991 and 1994 stats were 1r?", "context": "CREATE TABLE table_name_81 (Id VARCHAR)"}, {"answer": "SELECT 1990 FROM table_name_78 WHERE 1992 = \"3r\"", "question": "Which 1990s 1992 was 3r?", "context": "CREATE TABLE table_name_78 (Id VARCHAR)"}, {"answer": "SELECT linda_mccartney FROM table_name_80 WHERE stuart = \"electric guitar\"", "question": "Which Linda McCartney has a Stuart of electric guitar?", "context": "CREATE TABLE table_name_80 (linda_mccartney VARCHAR, stuart VARCHAR)"}, {"answer": "SELECT whitten FROM table_name_12 WHERE stuart = \"bass\" AND paul_mccartney = \"electric guitar\"", "question": "Which Whitten has a Stuart of bass, and a Paul McCartney of electric guitar?", "context": "CREATE TABLE table_name_12 (whitten VARCHAR, stuart VARCHAR, paul_mccartney VARCHAR)"}, {"answer": "SELECT mcintosh FROM table_name_88 WHERE whitten = \"drums\" AND stuart = \"bass\" AND paul_mccartney = \"electric guitar\"", "question": "Which McIntosh has a Whitten of drums, and a Stuart of bass, and a Paul McCartney of electric guitar?", "context": "CREATE TABLE table_name_88 (mcintosh VARCHAR, paul_mccartney VARCHAR, whitten VARCHAR, stuart VARCHAR)"}, {"answer": "SELECT paul_mccartney FROM table_name_98 WHERE linda_mccartney = \"keyboards\"", "question": "Which Paul McCartney has a Linda McCartney of keyboards?", "context": "CREATE TABLE table_name_98 (paul_mccartney VARCHAR, linda_mccartney VARCHAR)"}, {"answer": "SELECT mcintosh FROM table_name_78 WHERE stuart = \"bass\" AND linda_mccartney = \"keyboards or drum\"", "question": "Which McIntosh has a Stuart of bass, and a Linda McCartney of keyboards or drum?", "context": "CREATE TABLE table_name_78 (mcintosh VARCHAR, stuart VARCHAR, linda_mccartney VARCHAR)"}, {"answer": "SELECT paul_mccartney FROM table_name_15 WHERE linda_mccartney = \"keyboards or drum\"", "question": "Which Paul McCartney has a Linda McCartney of keyboards or drum?", "context": "CREATE TABLE table_name_15 (paul_mccartney VARCHAR, linda_mccartney VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_70 WHERE bike = \"honda cbr1000rr\" AND time = \"+20.848\" AND laps > 24", "question": "What is the largest Grid that has a Bike of honda cbr1000rr, and a Time of +20.848, and a Lap greater than 24?", "context": "CREATE TABLE table_name_70 (grid INTEGER, laps VARCHAR, bike VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_70 WHERE nation = \"denmark\" AND gold > 0", "question": "The nation of denmark has what average total nad more than 0 gold?", "context": "CREATE TABLE table_name_70 (total INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_61 WHERE nation = \"switzerland\" AND silver < 0", "question": "Switzerland has how many gold and less than 0 silver?", "context": "CREATE TABLE table_name_61 (gold INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_9 WHERE score = \"734-5d\"", "question": "How many years had a score of 734-5d?", "context": "CREATE TABLE table_name_9 (year VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_82 WHERE city = \"manchester\" AND year < 2003", "question": "Which venue had a city of Manchester before 2003?", "context": "CREATE TABLE table_name_82 (venue VARCHAR, city VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_85 WHERE city = \"manchester\" AND year = 2003", "question": "Which venue had a city of Manchester in 2003?", "context": "CREATE TABLE table_name_85 (venue VARCHAR, city VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_8 WHERE score = \"734-5d\"", "question": "Which venue had a score of 734-5d?", "context": "CREATE TABLE table_name_8 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(top_5) FROM table_name_3 WHERE top_10 = 5 AND cuts_made < 12", "question": "What is the average number of top-5s for the major with 5 top-10s and fewer than 12 cuts made?", "context": "CREATE TABLE table_name_3 (top_5 INTEGER, top_10 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT AVG(top_10) FROM table_name_31 WHERE top_25 = 2 AND cuts_made < 10", "question": "What is the average number of top-10s for the major with 2 top-25s and fewer than 10 cuts made?", "context": "CREATE TABLE table_name_31 (top_10 INTEGER, top_25 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT COUNT(top_25) FROM table_name_95 WHERE top_10 = 11", "question": "What is the total number of top-25s for the major that has 11 top-10s?", "context": "CREATE TABLE table_name_95 (top_25 VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT SUM(events) FROM table_name_66 WHERE cuts_made > 12 AND top_5 > 2 AND top_10 > 11", "question": "How many total events have cuts made over 12, more than 2 top-5s, and more than 11 top-10s?", "context": "CREATE TABLE table_name_66 (events INTEGER, top_10 VARCHAR, cuts_made VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_63 WHERE top_10 = 1", "question": "How many total wins are associated with events with 1 top-10?", "context": "CREATE TABLE table_name_63 (wins INTEGER, top_10 VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_93 WHERE top_10 = 11 AND wins < 1", "question": "What is the average number of cuts made in events with fewer than 1 win and exactly 11 top-10s?", "context": "CREATE TABLE table_name_93 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT week FROM table_name_52 WHERE date = \"bye\"", "question": "What week did they have a bye?", "context": "CREATE TABLE table_name_52 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_5 WHERE 2006 = \"0-0\"", "question": "What tournament in 2006 had a score of 0-0?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"}, {"answer": "SELECT MAX(extra_points) FROM table_name_38 WHERE player = \"albert herrnstein\" AND points > 15", "question": "What was the highest number of extra points scored by Albert Herrnstein, when he scored more than 15 points total?", "context": "CREATE TABLE table_name_38 (extra_points INTEGER, player VARCHAR, points VARCHAR)"}, {"answer": "SELECT touchdowns FROM table_name_88 WHERE player = \"william cole\"", "question": "How many touchdowns were scored by William Cole?", "context": "CREATE TABLE table_name_88 (touchdowns VARCHAR, player VARCHAR)"}, {"answer": "SELECT record FROM table_name_81 WHERE attendance = \"26,236\"", "question": "For the game with 26,236 attendance, what was the record?", "context": "CREATE TABLE table_name_81 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_28 WHERE attendance = \"49,222\"", "question": "What's the record for the game with an attendance of 49,222?", "context": "CREATE TABLE table_name_28 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_41 WHERE date = \"june 11\"", "question": "Who had the most rebounds and how many did he have during the game on June 11?", "context": "CREATE TABLE table_name_41 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_54 WHERE date = \"june 13\"", "question": "Who was the leading scorer and how many did he score for the game on June 13?", "context": "CREATE TABLE table_name_54 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_19 WHERE round < 8 AND pick = 50", "question": "What College/Junior/Club Team has Pick 50 before Round 8?", "context": "CREATE TABLE table_name_19 (college_junior_club_team VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_33 WHERE slalom = \"39\" AND season < 1996", "question": "What is the highest overall prior to 1996 with a slalom of 39?", "context": "CREATE TABLE table_name_33 (overall INTEGER, slalom VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_57 WHERE downhill = \"1\" AND season < 1992", "question": "What is the lowest overall score prior to 1992 with a downhill score of 1?", "context": "CREATE TABLE table_name_57 (overall INTEGER, downhill VARCHAR, season VARCHAR)"}, {"answer": "SELECT Giant AS slalom FROM table_name_28 WHERE overall > 3 AND super_g = 12", "question": "What was her Giant Slalom score when her Overall was greater than 3 and her Super G score was 12?", "context": "CREATE TABLE table_name_28 (Giant VARCHAR, overall VARCHAR, super_g VARCHAR)"}, {"answer": "SELECT MAX(super_g) FROM table_name_43 WHERE slalom = \"58\" AND overall > 2", "question": "What was her highest Super G score with a Slalom score of 58 and an Overall larger than 2?", "context": "CREATE TABLE table_name_43 (super_g INTEGER, slalom VARCHAR, overall VARCHAR)"}, {"answer": "SELECT location__all_in_nagano__ FROM table_name_7 WHERE name = \"sakakita bs\"", "question": "What location has the name of Sakakita BS?", "context": "CREATE TABLE table_name_7 (location__all_in_nagano__ VARCHAR, name VARCHAR)"}, {"answer": "SELECT location__all_in_nagano__ FROM table_name_18 WHERE name = \"sakakita bs\"", "question": "Which location includes Sakakita BS?", "context": "CREATE TABLE table_name_18 (location__all_in_nagano__ VARCHAR, name VARCHAR)"}, {"answer": "SELECT dist_from_origin FROM table_name_57 WHERE location__all_in_nagano__ = \"azumino\" AND name = \"toyoshina ic\"", "question": "What is the distance from origin in Azumino including Toyoshina IC?", "context": "CREATE TABLE table_name_57 (dist_from_origin VARCHAR, location__all_in_nagano__ VARCHAR, name VARCHAR)"}, {"answer": "SELECT district FROM table_name_7 WHERE first_elected < 2006 AND towns_represented = \"broken arrow, tulsa\"", "question": "Which district had first elected earlier than 2006 for representation of Broken Arrow, Tulsa?", "context": "CREATE TABLE table_name_7 (district VARCHAR, first_elected VARCHAR, towns_represented VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_name_91 WHERE district = \"16\"", "question": "How many values of first elected are for district 16?", "context": "CREATE TABLE table_name_91 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT towns_represented FROM table_name_65 WHERE district = \"31\"", "question": "Which towns are represented in district 31?", "context": "CREATE TABLE table_name_65 (towns_represented VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(deposits) FROM table_name_63 WHERE non_interest_income = 0.9500000000000001 AND no_of_branches_offices < 17", "question": "How many deposits had a Non-Interest Income of 0.9500000000000001 and number of branch/offices less than 17?", "context": "CREATE TABLE table_name_63 (deposits VARCHAR, non_interest_income VARCHAR, no_of_branches_offices VARCHAR)"}, {"answer": "SELECT npl_net FROM table_name_30 WHERE bank = \"citibank\"", "question": "Which NPL net's bank was citibank?", "context": "CREATE TABLE table_name_30 (npl_net VARCHAR, bank VARCHAR)"}, {"answer": "SELECT championship FROM table_name_88 WHERE winning_score = (77 - 76 - 74 - 73 = 300)", "question": "Which championship has a winning score of (77-76-74-73=300)?", "context": "CREATE TABLE table_name_88 (championship VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT championship FROM table_name_89 WHERE margin = \"8 strokes\"", "question": "Which championship has a margin of 8 strokes?", "context": "CREATE TABLE table_name_89 (championship VARCHAR, margin VARCHAR)"}, {"answer": "SELECT 54 AS _holes FROM table_name_7 WHERE championship = \"the open championship (4)\"", "question": "What is the 54 holes for The Open Championship (4)?", "context": "CREATE TABLE table_name_7 (championship VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_28 WHERE 2007 = \"wta premier 5 tournaments\"", "question": "Which Tournament has a 2007 of wta premier 5 tournaments?", "context": "CREATE TABLE table_name_28 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_38 WHERE 2011 = \"nh\"", "question": "Which Tournament was played in NH in 2011?", "context": "CREATE TABLE table_name_38 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_21 WHERE 2010 = \"2r\" AND 2011 = \"1r\"", "question": "Which Tournament has a 2010 of 2r, and a 2011 of 1r?", "context": "CREATE TABLE table_name_21 (tournament VARCHAR)"}, {"answer": "SELECT MIN(first_issued) FROM table_name_51 WHERE color = \"green\"", "question": "When was Color of green first issued?", "context": "CREATE TABLE table_name_51 (first_issued INTEGER, color VARCHAR)"}, {"answer": "SELECT MAX(first_issued) FROM table_name_26 WHERE color = \"green\"", "question": "When was Color of green last issued?", "context": "CREATE TABLE table_name_26 (first_issued INTEGER, color VARCHAR)"}, {"answer": "SELECT reverse FROM table_name_33 WHERE color = \"green\"", "question": "What reverse has a color of green?", "context": "CREATE TABLE table_name_33 (reverse VARCHAR, color VARCHAR)"}, {"answer": "SELECT value FROM table_name_1 WHERE first_issued < 1998 AND reverse = \"guitar of agust\u00edn p\u00edo barrios\"", "question": "How much was a Reverse of guitar of agust\u00edn p\u00edo barrios before 1998?", "context": "CREATE TABLE table_name_1 (value VARCHAR, first_issued VARCHAR, reverse VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_16 WHERE college = \"byu\"", "question": "What is BYU's lowest pick?", "context": "CREATE TABLE table_name_16 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_36 WHERE pick__number < 26 AND position = \"cornerback\" AND overall > 41", "question": "Which cornerback round has a pick number lower than 26 and an overall higher than 41?", "context": "CREATE TABLE table_name_36 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_6 WHERE college = \"wyoming\"", "question": "What is the overall number for the College of Wyoming?", "context": "CREATE TABLE table_name_6 (overall VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_4 WHERE position = \"wide receiver\" AND overall > 145", "question": "What is the total round for a wide receiver with an overall of more than 145?", "context": "CREATE TABLE table_name_4 (round VARCHAR, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_42 WHERE overall < 145 AND college = \"ohio state\"", "question": "What is College of Ohio State's pick number with an overall lower than 145?", "context": "CREATE TABLE table_name_42 (pick__number VARCHAR, overall VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_74 WHERE _number___county = \"49 marion\" AND mascot = \"warriors\"", "question": "How many are enrolled at 49 Marion with the Warriors as their mascot?", "context": "CREATE TABLE table_name_74 (enrollment VARCHAR, _number___county VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT location FROM table_name_35 WHERE school = \"terre haute north\"", "question": "Where is Terre Haute North located?", "context": "CREATE TABLE table_name_35 (location VARCHAR, school VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM table_name_24 WHERE _number___county = \"41 johnson\"", "question": "What's the enrollment at 41 Johnson?", "context": "CREATE TABLE table_name_24 (enrollment INTEGER, _number___county VARCHAR)"}, {"answer": "SELECT school FROM table_name_56 WHERE mascot = \"greyhounds\"", "question": "What school has the greyhounds as mascots?", "context": "CREATE TABLE table_name_56 (school VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT status FROM table_name_4 WHERE configuration = \"b-b\" AND type = \"diesel-mechanical\"", "question": "for type diesel-mechanical and configuration b-b, what is the status?", "context": "CREATE TABLE table_name_4 (status VARCHAR, configuration VARCHAR, type VARCHAR)"}, {"answer": "SELECT origin FROM table_name_37 WHERE versions = \"tth\"", "question": "Where is the origin of the tth version?", "context": "CREATE TABLE table_name_37 (origin VARCHAR, versions VARCHAR)"}, {"answer": "SELECT record FROM table_name_4 WHERE game = 7", "question": "What is the record of game 7?", "context": "CREATE TABLE table_name_4 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_18 WHERE october < 10 AND game < 2", "question": "What is the lowest number of points of the game before game 2 before October 10?", "context": "CREATE TABLE table_name_18 (points INTEGER, october VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_72 WHERE date = \"july 9\"", "question": "what team played on july 9", "context": "CREATE TABLE table_name_72 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT party FROM table_name_3 WHERE result = \"re-elected\" AND first_elected < 1894 AND incumbent = \"charles h. grosvenor\"", "question": "What is the party of re-elected, incumbent Charles H. Grosvenor, who was first elected before 1894?", "context": "CREATE TABLE table_name_3 (party VARCHAR, incumbent VARCHAR, result VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_50 WHERE district = \"ohio 13\"", "question": "Who was the incumbent from the Ohio 13 district?", "context": "CREATE TABLE table_name_50 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_name_22 WHERE first_elected = 1894 AND district = \"ohio 16\"", "question": "What is the party of the representative first elected in 1894 from the Ohio 16 district?", "context": "CREATE TABLE table_name_22 (party VARCHAR, first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE opposition = \"leicestershire\" AND year > 1906", "question": "What score has Leicestershire as the opponent after 1906?", "context": "CREATE TABLE table_name_58 (score VARCHAR, opposition VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_50 WHERE score = \"3 runs\" AND city = \"buxton\"", "question": "Where in Buxton has 3 runs?", "context": "CREATE TABLE table_name_50 (venue VARCHAR, score VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_97 WHERE year = 1889", "question": "What city was in 1889?", "context": "CREATE TABLE table_name_97 (city VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE city = \"leicester\"", "question": "What is the score in Leicester?", "context": "CREATE TABLE table_name_42 (score VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_53 WHERE score = \"1 run\"", "question": "How many years has 1 run?", "context": "CREATE TABLE table_name_53 (year VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_26 WHERE venue = \"aigburth\"", "question": "What year was in Aigburth?", "context": "CREATE TABLE table_name_26 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT MIN(season__number) FROM table_name_63 WHERE format__number = \"q145\"", "question": "Which season has q145 as its format?", "context": "CREATE TABLE table_name_63 (season__number INTEGER, format__number VARCHAR)"}, {"answer": "SELECT AVG(episode__number) FROM table_name_26 WHERE format__number = \"q146\"", "question": "What is the average episode number with q146 format?", "context": "CREATE TABLE table_name_26 (episode__number INTEGER, format__number VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_21 WHERE game > 1 AND record = \"3-2-0\"", "question": "Who is the opponent of Game 1 with a 3-2-0 record?", "context": "CREATE TABLE table_name_21 (opponent VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_36 WHERE game = 9", "question": "What is game 9's record?", "context": "CREATE TABLE table_name_36 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE record = \"1-1-0\"", "question": "Who is the opponent of the team with a 1-1-0 record?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT 3 AS rd_liga_3rd FROM table_name_41 WHERE date = \"2010-11\"", "question": "What is the 3rd Liga from 2010-11?", "context": "CREATE TABLE table_name_41 (date VARCHAR)"}, {"answer": "SELECT 3 AS rd_liga_3rd FROM table_name_36 WHERE game_1 = \"0-1\" AND date = \"2008-09\"", "question": "What is the 3rd Liga from Game 1 of 0-1 between the years 2008-09?", "context": "CREATE TABLE table_name_36 (game_1 VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_12 WHERE outcome = \"winner\" AND surface = \"hard (i)\"", "question": "Which Score in the final has an Outcome of winner, and a Surface of hard (i)?", "context": "CREATE TABLE table_name_12 (score_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_45 WHERE partner = \"jim thomas\" AND date = 2007", "question": "Which Surface has a Partner of jim thomas, and a Date of 2007?", "context": "CREATE TABLE table_name_45 (surface VARCHAR, partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_58 WHERE result = \"won 5-2\"", "question": "What was the Attendance in the game with a Result of won 5-2?", "context": "CREATE TABLE table_name_58 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_39 WHERE venue = \"home\" AND attendance = \"1,268\"", "question": "What was the home Competition with Attendance of 1,268?", "context": "CREATE TABLE table_name_39 (competition VARCHAR, venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_94 WHERE wnba_team = \"sacramento monarchs\"", "question": "What school or club team did the player chosen for the Sacramento Monarchs play for?", "context": "CREATE TABLE table_name_94 (school_club_team VARCHAR, wnba_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_57 WHERE wnba_team = \"chicago sky\"", "question": "What player was chosen for the Chicago Sky?", "context": "CREATE TABLE table_name_57 (player VARCHAR, wnba_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_47 WHERE wnba_team = \"chicago sky\"", "question": "Which player was picked for the Chicago Sky?", "context": "CREATE TABLE table_name_47 (player VARCHAR, wnba_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_14 WHERE height = 205 AND shirt_no = 8", "question": "What is the position of the player with a height of 205 and shirt no 8?", "context": "CREATE TABLE table_name_14 (position VARCHAR, height VARCHAR, shirt_no VARCHAR)"}, {"answer": "SELECT player FROM table_name_84 WHERE height = 182", "question": "What is the name of the player who is a height of 182?", "context": "CREATE TABLE table_name_84 (player VARCHAR, height VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_81 WHERE participants = 4 AND silver < 0", "question": "What is the sum of Gold with Participants that are 4 and a Silver that is smaller than 0?", "context": "CREATE TABLE table_name_81 (gold INTEGER, participants VARCHAR, silver VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE score = \"141\u2013102\"", "question": "Who was the opponent with a score of 141\u2013102?", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE score = \"109\u2013108\"", "question": "Who was the opponent with a score of 109\u2013108?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_75 WHERE record = \"62\u201312\"", "question": "What was the result when the record was 62\u201312?", "context": "CREATE TABLE table_name_75 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE record = \"58\u201311\"", "question": "What was the result with a record of 58\u201311?", "context": "CREATE TABLE table_name_49 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(number) FROM table_name_10 WHERE date = \"january 2, 1936\"", "question": "What's the number of the game played on January 2, 1936?", "context": "CREATE TABLE table_name_10 (number INTEGER, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_50 WHERE number = 23", "question": "What's the record of game number 23?", "context": "CREATE TABLE table_name_50 (record VARCHAR, number VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_5 WHERE february < 1", "question": "How many Points a February smaller than 1 have?", "context": "CREATE TABLE table_name_5 (points INTEGER, february INTEGER)"}, {"answer": "SELECT COUNT(february) FROM table_name_40 WHERE points = 63 AND score = \"1\u20132\"", "question": "How many February days have Points of 63 and a Score of 1\u20132?", "context": "CREATE TABLE table_name_40 (february VARCHAR, points VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_24 WHERE wins < 2", "question": "What is the name of the player with less than 2 wins?", "context": "CREATE TABLE table_name_24 (player VARCHAR, wins INTEGER)"}, {"answer": "SELECT SUM(earnings___) AS $__ FROM table_name_97 WHERE wins > 2 AND events < 25", "question": "What is the number of earning for more than 2 wins and less than 25 events?", "context": "CREATE TABLE table_name_97 (earnings___ INTEGER, wins VARCHAR, events VARCHAR)"}, {"answer": "SELECT MAX(events) FROM table_name_65 WHERE wins > 2 AND earnings___$__ < 446 OFFSET 893", "question": "What is the largest events number for more than 2 wins and less than $446,893 in earnings?", "context": "CREATE TABLE table_name_65 (events INTEGER, wins VARCHAR, earnings___$__ VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_42 WHERE time = \"5:00 pm\"", "question": "Who was the visitor at 5:00 pm?", "context": "CREATE TABLE table_name_42 (visitor VARCHAR, time VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_14 WHERE home = \"pittsburgh penguins\" AND time = \"7:00 pm\" AND record = \"0-2-2\"", "question": "Who was the visitor at the pittsburgh penguins at 7:00 pm that had a record of 0-2-2?", "context": "CREATE TABLE table_name_14 (visitor VARCHAR, record VARCHAR, home VARCHAR, time VARCHAR)"}, {"answer": "SELECT home FROM table_name_25 WHERE time = \"7:30 pm\" AND location_attendance = \"mellon arena\" AND record = \"2-5-2\"", "question": "What is the home in mellon arena at 7:30 pm with a record o 2-5-2?", "context": "CREATE TABLE table_name_25 (home VARCHAR, record VARCHAR, time VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_29 WHERE games > 7", "question": "Which average Drawn has Games larger than 7?", "context": "CREATE TABLE table_name_29 (drawn INTEGER, games INTEGER)"}, {"answer": "SELECT make FROM table_name_58 WHERE pos = 3", "question": "Which Make has a Pos of 3?", "context": "CREATE TABLE table_name_58 (make VARCHAR, pos VARCHAR)"}, {"answer": "SELECT MAX(car__number) FROM table_name_19 WHERE make = \"toyota\" AND driver = \"mike skinner\" AND pos > 3", "question": "Which Car # has a Make of toyota, and a Driver of mike skinner, and a Pos larger than 3?", "context": "CREATE TABLE table_name_19 (car__number INTEGER, pos VARCHAR, make VARCHAR, driver VARCHAR)"}, {"answer": "SELECT make FROM table_name_48 WHERE car__number > 59", "question": "Which Make has a Car # larger than 59?", "context": "CREATE TABLE table_name_48 (make VARCHAR, car__number INTEGER)"}, {"answer": "SELECT results\u00b9 FROM table_name_65 WHERE type_of_game = \"euro '64 qualifying\"", "question": "What was the result of the Euro '64 qualifying game?", "context": "CREATE TABLE table_name_65 (results\u00b9 VARCHAR, type_of_game VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE type_of_game = \"euro '64 qualifying\"", "question": "What is the date of the Euro '64 qualifying game?", "context": "CREATE TABLE table_name_64 (date VARCHAR, type_of_game VARCHAR)"}, {"answer": "SELECT title FROM table_name_26 WHERE year = \"1996\"", "question": "What was the title in 1996?", "context": "CREATE TABLE table_name_26 (title VARCHAR, year VARCHAR)"}, {"answer": "SELECT role FROM table_name_91 WHERE year = \"2001\"", "question": "What was the role in 2001?", "context": "CREATE TABLE table_name_91 (role VARCHAR, year VARCHAR)"}, {"answer": "SELECT language FROM table_name_68 WHERE title = \"taken\"", "question": "What language was Taken in?", "context": "CREATE TABLE table_name_68 (language VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_90 WHERE notes = \"8 episodes\"", "question": "Which title had Notes of 8 episodes?", "context": "CREATE TABLE table_name_90 (title VARCHAR, notes VARCHAR)"}, {"answer": "SELECT title FROM table_name_28 WHERE language = \"portuguese\"", "question": "Which title is in Portuguese?", "context": "CREATE TABLE table_name_28 (title VARCHAR, language VARCHAR)"}, {"answer": "SELECT role FROM table_name_80 WHERE year = \"1996\"", "question": "What was the role in 1996?", "context": "CREATE TABLE table_name_80 (role VARCHAR, year VARCHAR)"}, {"answer": "SELECT dates_active FROM table_name_78 WHERE storm_name = \"irwin\"", "question": "what date did the irwin storm take place", "context": "CREATE TABLE table_name_78 (dates_active VARCHAR, storm_name VARCHAR)"}, {"answer": "SELECT min_press___mbar__ FROM table_name_15 WHERE storm_name = \"adrian\"", "question": "what is the minimum force of storm Adrian", "context": "CREATE TABLE table_name_15 (min_press___mbar__ VARCHAR, storm_name VARCHAR)"}, {"answer": "SELECT AVG(number_of_households) FROM table_name_70 WHERE county = \"highlands\"", "question": "How many households are in highlands county?", "context": "CREATE TABLE table_name_70 (number_of_households INTEGER, county VARCHAR)"}, {"answer": "SELECT median_household_income FROM table_name_56 WHERE median_family_income = \"$46,616\"", "question": "What is the Median household income associated with a median family income of $46,616?", "context": "CREATE TABLE table_name_56 (median_household_income VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT time___et__ FROM table_name_49 WHERE location = \"memorial stadium\"", "question": "What time did the game at memorial stadium take place?", "context": "CREATE TABLE table_name_49 (time___et__ VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_88 WHERE total = 64 AND silver > 16", "question": "What is the number of Bronze medals of the Nation with 64 total and silver greater than 16?", "context": "CREATE TABLE table_name_88 (bronze VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_8 WHERE nation = \"kyrgyzstan\" AND silver > 0", "question": "What is the bronze for Kyrgyzstan nation with a silver record of greater than 0?", "context": "CREATE TABLE table_name_8 (bronze INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_25 WHERE bronze = 1 AND nation = \"syria\" AND total < 1", "question": "What is the gold for the nation with a record of bronze 1, Syria nation with a grand total less than 1?", "context": "CREATE TABLE table_name_25 (gold INTEGER, total VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE result = \"w 27-24 (ot)\"", "question": "When was the game with a result of w 27-24 (ot)?", "context": "CREATE TABLE table_name_26 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE record = \"9-3\"", "question": "When was the game with a record of 9-3?", "context": "CREATE TABLE table_name_65 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT game_time FROM table_name_96 WHERE record = \"7-3\"", "question": "What time was the game with a record of 7-3?", "context": "CREATE TABLE table_name_96 (game_time VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_36 WHERE venue = \"memorial stadium\" AND attendance < 41 OFFSET 252", "question": "What is the number of weeks where the venue was memorial stadium and the attendance was less than 41,252?", "context": "CREATE TABLE table_name_36 (week VARCHAR, venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_20 WHERE date = \"october 21, 1974\" AND attendance < 50 OFFSET 623", "question": "What is the sum of the weeks that games occured on october 21, 1974 and less than 50,623 fans attended?", "context": "CREATE TABLE table_name_20 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_97 WHERE launched = \"21 august 1994\"", "question": "What is the frequency of the station that was launched on 21 August 1994?", "context": "CREATE TABLE table_name_97 (frequency VARCHAR, launched VARCHAR)"}, {"answer": "SELECT launched FROM table_name_1 WHERE languages = \"cora huichol tepehuano nahuatl\"", "question": "What is the launched date of the station in cora huichol tepehuano nahuatl language?", "context": "CREATE TABLE table_name_1 (launched VARCHAR, languages VARCHAR)"}, {"answer": "SELECT transmitting_from FROM table_name_15 WHERE coverage = \"yucat\u00e1n quintana roo campeche\"", "question": "Where is the station with a coverage of yucat\u00e1n quintana roo campeche transmitting from?", "context": "CREATE TABLE table_name_15 (transmitting_from VARCHAR, coverage VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_24 WHERE coverage = \"oaxaca guerrero puebla\"", "question": "What is the frequency of the station with a coverage of oaxaca guerrero puebla?", "context": "CREATE TABLE table_name_24 (frequency VARCHAR, coverage VARCHAR)"}, {"answer": "SELECT transmitting_from FROM table_name_18 WHERE launched = \"17 july 1997\"", "question": "Where is the station that was launched on 17 July 1997 transmitting from?", "context": "CREATE TABLE table_name_18 (transmitting_from VARCHAR, launched VARCHAR)"}, {"answer": "SELECT coverage FROM table_name_83 WHERE launched = \"22 january 1996\"", "question": "What is the coverage of the station that was launched on 22 January 1996?", "context": "CREATE TABLE table_name_83 (coverage VARCHAR, launched VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_79 WHERE gold > \"14\" AND rank = \"14\" AND silver > 25", "question": "How many bronzes for the nation ranked 14th, with over 14 golds and over 25 silvers?", "context": "CREATE TABLE table_name_79 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_46 WHERE nation = \"germany\" AND bronze < 56", "question": "How many total medals for germany with under 56 bronzes?", "context": "CREATE TABLE table_name_46 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_52 WHERE gold = 1 AND bronze = 6", "question": "How many total medals for the nation with 1 gold and 6 bronzes?", "context": "CREATE TABLE table_name_52 (total VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT loss FROM table_name_52 WHERE record = \"32\u201334\"", "question": "What was the loss of the game when the record was 32\u201334?", "context": "CREATE TABLE table_name_52 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE score = \"15\u20136\"", "question": "What was the date of the game with a score of 15\u20136?", "context": "CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_65 WHERE website = \"elmanana.com.mx\"", "question": "what is the frequency of visits to elmanana.com.mx", "context": "CREATE TABLE table_name_65 (frequency VARCHAR, website VARCHAR)"}, {"answer": "SELECT result FROM table_name_3 WHERE opponent = \"minnesota vikings\"", "question": "What was the game result against the minnesota vikings?", "context": "CREATE TABLE table_name_3 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_25 WHERE date = \"december 31, 1993\"", "question": "What week shows for december 31, 1993?", "context": "CREATE TABLE table_name_25 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_48 WHERE date = \"october 4, 1993\"", "question": "What was the result on October 4, 1993?", "context": "CREATE TABLE table_name_48 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_52 WHERE result = \"l 17-14\"", "question": "What Week has a Result of l 17-14?", "context": "CREATE TABLE table_name_52 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_86 WHERE position = \"2nd\"", "question": "How many years have a position of 2nd?", "context": "CREATE TABLE table_name_86 (year VARCHAR, position VARCHAR)"}, {"answer": "SELECT event FROM table_name_72 WHERE year = 2000", "question": "Which event has a year of 2000?", "context": "CREATE TABLE table_name_72 (event VARCHAR, year VARCHAR)"}, {"answer": "SELECT position FROM table_name_7 WHERE notes = \"2:12:53\"", "question": "What position has notes of 2:12:53?", "context": "CREATE TABLE table_name_7 (position VARCHAR, notes VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_90 WHERE college = \"notre dame\" AND pick__number = \"49\"", "question": "What is the average round for draft pick #49 from Notre Dame?", "context": "CREATE TABLE table_name_90 (round INTEGER, college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_name_80 WHERE pick__number = \"327\"", "question": "What college is draft pick #327 from?", "context": "CREATE TABLE table_name_80 (college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_name_44 WHERE pick__number = \"268\"", "question": "What college is pick number 268 from?", "context": "CREATE TABLE table_name_44 (college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT round FROM table_name_92 WHERE position = \"defensive back\" AND pick__number = \"101\"", "question": "What round pick was pick number 101 who plays defensive back?", "context": "CREATE TABLE table_name_92 (round VARCHAR, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_65 WHERE round > 7 AND college = \"maryland\"", "question": "What pick number was from the college of maryland and was picked in a round larger than 7?", "context": "CREATE TABLE table_name_65 (pick__number VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_25 WHERE pick__number = 26", "question": "How much Overall has a Pick # of 26?", "context": "CREATE TABLE table_name_25 (overall INTEGER, pick__number VARCHAR)"}, {"answer": "SELECT position FROM table_name_88 WHERE round < 14 AND college = \"illinois\"", "question": "Which Position has a Round smaller than 14, and a College of illinois?", "context": "CREATE TABLE table_name_88 (position VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_68 WHERE round < 6 AND pick__number = 26", "question": "How much Overall has a Round smaller than 6, and a Pick # of 26?", "context": "CREATE TABLE table_name_68 (overall INTEGER, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_67 WHERE name = \"roy hall\"", "question": "What is Roy Hall's highest round?", "context": "CREATE TABLE table_name_67 (round INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_93 WHERE pick__number > 2 AND name = \"claude humphrey\"", "question": "How much Overall has a Pick # larger than 2, and a Name of claude humphrey?", "context": "CREATE TABLE table_name_93 (overall VARCHAR, pick__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_70 WHERE score = \"5\u20130\"", "question": "What is the oppenent when the score was 5\u20130?", "context": "CREATE TABLE table_name_70 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_61 WHERE game < 57 AND score = \"4\u20135\"", "question": "What is the opponent before game 57 when the score was 4\u20135?", "context": "CREATE TABLE table_name_61 (opponent VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE points > 74 AND game = 57", "question": "What is the score when the points are larger than 74 and the game is 57?", "context": "CREATE TABLE table_name_7 (score VARCHAR, points VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_4 WHERE chassis = \"toro rosso str1\" AND points < 1", "question": "When is the latest year that an entrant has toro rosso str1 chassis and under 1 point?", "context": "CREATE TABLE table_name_4 (year INTEGER, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_4 WHERE engine = \"mercedes fo 108w 2.4l v8\" AND points > 0", "question": "How many entrants have a mercedes fo 108w 2.4l v8 engine and over 0 points?", "context": "CREATE TABLE table_name_4 (year VARCHAR, engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT engine FROM table_name_6 WHERE points = 3", "question": "What is the engine for the car with 3 points?", "context": "CREATE TABLE table_name_6 (engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT international_tourism_expenditure__2012_ FROM table_name_65 WHERE international_tourism_expenditure__2011_ = \"$33.3 billion\"", "question": "Which International tourism expenditure (2012) has an International tourism expenditure (2011) of $33.3 billion?", "context": "CREATE TABLE table_name_65 (international_tourism_expenditure__2012_ VARCHAR, international_tourism_expenditure__2011_ VARCHAR)"}, {"answer": "SELECT unwto_region FROM table_name_24 WHERE country = \"italy\"", "question": "What is Italy's UNWTO region?", "context": "CREATE TABLE table_name_24 (unwto_region VARCHAR, country VARCHAR)"}, {"answer": "SELECT international_tourism_expenditure__2011_ FROM table_name_4 WHERE country = \"china\"", "question": "What is China's  International tourism expenditure (2011)?", "context": "CREATE TABLE table_name_4 (international_tourism_expenditure__2011_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT format FROM table_name_86 WHERE _number_episodes < 22 AND _number_disc_s_ = 4 AND region_4 = \"n/a\"", "question": "What was the format for the 4 disc season that had less than 22 episodes and n/a for region 4?", "context": "CREATE TABLE table_name_86 (format VARCHAR, region_4 VARCHAR, _number_episodes VARCHAR, _number_disc_s_ VARCHAR)"}, {"answer": "SELECT MIN(top_25) FROM table_name_55 WHERE tournament = \"the open championship\" AND top_10 > 3", "question": "What is the lowest Top-25 for the open championship, with a Top-10 larger than 3?", "context": "CREATE TABLE table_name_55 (top_25 INTEGER, tournament VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_name_32 WHERE tournament = \"the open championship\" AND top_25 < 9", "question": "What is the highest Top-5 when the Tournament is the open championship, with a Top-25 less than 9?", "context": "CREATE TABLE table_name_32 (top_5 INTEGER, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT AVG(top_25) FROM table_name_58 WHERE top_10 < 7 AND tournament = \"the open championship\" AND top_5 > 1", "question": "What is the average Top-25 that has a Top-10 less than 7, and the Tournament is the open championship, with a Top-5more than 1?", "context": "CREATE TABLE table_name_58 (top_25 INTEGER, top_5 VARCHAR, top_10 VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT COUNT(top_5) FROM table_name_40 WHERE top_25 = 6 AND cuts_made < 12", "question": "What is the total number of Top-5 when the Top-25 is 6, and a Cuts made are less than 12?", "context": "CREATE TABLE table_name_40 (top_5 VARCHAR, top_25 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE home = \"wizards\"", "question": "Which date had a home team of the Wizards?", "context": "CREATE TABLE table_name_15 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_60 WHERE date = \"november 12, 1967\" AND attendance < 34 OFFSET 761", "question": "What was the latest week with a date of November 12, 1967 and less than 34,761 in attendance?", "context": "CREATE TABLE table_name_60 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE week < 3 AND opponent = \"houston oilers\"", "question": "What is the date for the game with an opponent of the Houston Oilers from before week 3?", "context": "CREATE TABLE table_name_11 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_39 WHERE team = \"new york\"", "question": "What is the total for New York's game?", "context": "CREATE TABLE table_name_39 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT round FROM table_name_71 WHERE college = \"indiana\"", "question": "What round was a player from Indiana picked?", "context": "CREATE TABLE table_name_71 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_94 WHERE total = 17 AND wins > 10", "question": "How many losses had a total of 17 and more than 10 wins?", "context": "CREATE TABLE table_name_94 (losses VARCHAR, total VARCHAR, wins VARCHAR)"}, {"answer": "SELECT _percentage_win FROM table_name_98 WHERE total > 16 AND losses < 7", "question": "What is the win percentage when there's more than 16 totals and less than 7 losses?", "context": "CREATE TABLE table_name_98 (_percentage_win VARCHAR, total VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(no_result) FROM table_name_57 WHERE year = \"2012\" AND wins > 10", "question": "What is the smallest no result when the year was 2012 and there were more than 10 wins?", "context": "CREATE TABLE table_name_57 (no_result INTEGER, year VARCHAR, wins VARCHAR)"}, {"answer": "SELECT socialist_ticket FROM table_name_6 WHERE democratic_ticket = \"george k. shuler\"", "question": "What is the name on the Socialist ticket when the Democratic ticket is george k. shuler?", "context": "CREATE TABLE table_name_6 (socialist_ticket VARCHAR, democratic_ticket VARCHAR)"}, {"answer": "SELECT democratic_ticket FROM table_name_76 WHERE workers_ticket = \"franklin p. brill\"", "question": "What is the name on the Democratic ticket when the Workers ticket is franklin p. brill?", "context": "CREATE TABLE table_name_76 (democratic_ticket VARCHAR, workers_ticket VARCHAR)"}, {"answer": "SELECT democratic_ticket FROM table_name_32 WHERE workers_ticket = \"james p. cannon\"", "question": "What is the name on the Democratic ticket when the Workers ticket is james p. cannon?", "context": "CREATE TABLE table_name_32 (democratic_ticket VARCHAR, workers_ticket VARCHAR)"}, {"answer": "SELECT office FROM table_name_63 WHERE republican_ticket = \"seymour lowman\"", "question": "What is the Office when the Republican ticket shows seymour lowman?", "context": "CREATE TABLE table_name_63 (office VARCHAR, republican_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_17 WHERE socialist_ticket = \"louis waldman\"", "question": "What is the name on the Republican ticket when the Socialist ticket was louis waldman?", "context": "CREATE TABLE table_name_17 (republican_ticket VARCHAR, socialist_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_63 WHERE workers_ticket = \"edward lindgren\"", "question": "What is the name on the Republican ticket when the Workers ticket is edward lindgren?", "context": "CREATE TABLE table_name_63 (republican_ticket VARCHAR, workers_ticket VARCHAR)"}, {"answer": "SELECT democratic_ticket FROM table_name_38 WHERE socialist_labor_ticket = \"belle j. rosen\"", "question": "Who's the Democratic ticket with a Socialist Labor ticket of belle j. rosen?", "context": "CREATE TABLE table_name_38 (democratic_ticket VARCHAR, socialist_labor_ticket VARCHAR)"}, {"answer": "SELECT socialist_labor_ticket FROM table_name_49 WHERE republican_ticket = \"cuthbert w. pound\"", "question": "Who's the Socialist Labor ticket with a Republican ticket of cuthbert w. pound?", "context": "CREATE TABLE table_name_49 (socialist_labor_ticket VARCHAR, republican_ticket VARCHAR)"}, {"answer": "SELECT office FROM table_name_63 WHERE republican_ticket = \"daniel h. conway\"", "question": "Which Office has a Republican ticket of daniel h. conway?", "context": "CREATE TABLE table_name_63 (office VARCHAR, republican_ticket VARCHAR)"}, {"answer": "SELECT socialist_ticket FROM table_name_74 WHERE law_preservation_ticket = \"(none)\" AND socialist_labor_ticket = \"belle j. rosen\"", "question": "Who's the Socialist ticket with a Law Preservation ticket of (none), and a Socialist Labor ticket of belle j. rosen?", "context": "CREATE TABLE table_name_74 (socialist_ticket VARCHAR, law_preservation_ticket VARCHAR, socialist_labor_ticket VARCHAR)"}, {"answer": "SELECT office FROM table_name_88 WHERE democratic_ticket = \"herbert h. lehman\"", "question": "Which Office has a Democratic ticket of herbert h. lehman?", "context": "CREATE TABLE table_name_88 (office VARCHAR, democratic_ticket VARCHAR)"}, {"answer": "SELECT socialist_ticket FROM table_name_89 WHERE socialist_labor_ticket = \"charles m. carlson\"", "question": "Who's the Socialist ticket with a Socialist Labor ticket of charles m. carlson?", "context": "CREATE TABLE table_name_89 (socialist_ticket VARCHAR, socialist_labor_ticket VARCHAR)"}, {"answer": "SELECT bowl_game FROM table_name_47 WHERE season > 2008 AND location = \"new orleans, louisiana\"", "question": "Which bowl game has a season greater than 2008, with new orleans, Louisiana as the location?", "context": "CREATE TABLE table_name_47 (bowl_game VARCHAR, season VARCHAR, location VARCHAR)"}, {"answer": "SELECT result FROM table_name_81 WHERE bowl_game = \"1947 sun bowl\"", "question": "What result has 1947 sun bowl as the bowl game?", "context": "CREATE TABLE table_name_81 (result VARCHAR, bowl_game VARCHAR)"}, {"answer": "SELECT result FROM table_name_47 WHERE opponent = \"texas longhorns\"", "question": "What result has texas longhorns as the opponent?", "context": "CREATE TABLE table_name_47 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_60 WHERE attendance = \"51,212\"", "question": "What location has 51,212 as the attendance?", "context": "CREATE TABLE table_name_60 (location VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT pictorials FROM table_name_40 WHERE date = \"5-01\"", "question": "Which Pictorials is on 5-01?", "context": "CREATE TABLE table_name_40 (pictorials VARCHAR, date VARCHAR)"}, {"answer": "SELECT cover_model FROM table_name_56 WHERE pictorials = \"brande roderick-pmoy, naked news\"", "question": "Which Cover model has a Pictorials of brande roderick-pmoy, naked news?", "context": "CREATE TABLE table_name_56 (cover_model VARCHAR, pictorials VARCHAR)"}, {"answer": "SELECT cover_model FROM table_name_77 WHERE centerfold_model = \"jennifer walcott\"", "question": "which Cover model has a Centerfold model of jennifer walcott?", "context": "CREATE TABLE table_name_77 (cover_model VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_name_81 WHERE cover_model = \"irina voronina\"", "question": "Which Centerfold model has a Cover model of irina voronina?", "context": "CREATE TABLE table_name_81 (centerfold_model VARCHAR, cover_model VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_name_54 WHERE date = \"3-01\"", "question": "Which Centerfold model has a Date of 3-01?", "context": "CREATE TABLE table_name_54 (centerfold_model VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE date = \"15 aug\" AND time = \"17:30\"", "question": "What is the score on 15 Aug with a 17:30 time?", "context": "CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_93 WHERE opponent = \"paul sutherland\"", "question": "What is the total number of round values that had opponents named Paul Sutherland?", "context": "CREATE TABLE table_name_93 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE record = \"10-6\"", "question": "Which opponent led to a record of 10-6?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_61 WHERE record = \"9-4\"", "question": "Which method led to a record of 9-4?", "context": "CREATE TABLE table_name_61 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT song FROM table_name_68 WHERE index = \"m6\"", "question": "What song had an index of m6?", "context": "CREATE TABLE table_name_68 (song VARCHAR, index VARCHAR)"}, {"answer": "SELECT song FROM table_name_25 WHERE score = 6.5 + 6.0 + 6.0 + 5.5 = 24.0", "question": "For which song was the score 6.5 + 6.0 + 6.0 + 5.5 = 24.0?", "context": "CREATE TABLE table_name_25 (song VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_76 WHERE against = 23 AND played < 8", "question": "When the played number is less than 8 and against is 23, what is the least amount of points?", "context": "CREATE TABLE table_name_76 (points INTEGER, against VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_58 WHERE position < 5 AND team = \"corinthians\"", "question": "When the corinthians have a position of less than 5, what is the average against?", "context": "CREATE TABLE table_name_58 (against INTEGER, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_63 WHERE points < 6", "question": "What position has less than 6 Points?", "context": "CREATE TABLE table_name_63 (position VARCHAR, points INTEGER)"}, {"answer": "SELECT COUNT(against) FROM table_name_3 WHERE difference = \"10\" AND played > 8", "question": "What is the number of against when the difference is 10 and played is greater than 8?", "context": "CREATE TABLE table_name_3 (against VARCHAR, difference VARCHAR, played VARCHAR)"}, {"answer": "SELECT stake AS President FROM table_name_77 WHERE organized = \"april 18, 1965\"", "question": "What was the stake president when the organized date is April 18, 1965?", "context": "CREATE TABLE table_name_77 (stake VARCHAR, organized VARCHAR)"}, {"answer": "SELECT award FROM table_name_58 WHERE category = \"mercury prize\"", "question": "What is the name of the award given for the category Mercury Prize?", "context": "CREATE TABLE table_name_58 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_47 WHERE award = \"mercury prize\"", "question": "How many years has the Mercury Prize award been given?", "context": "CREATE TABLE table_name_47 (year VARCHAR, award VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_71 WHERE award = \"mercury prize\"", "question": "For how many years has the Mercury Prize been awarded?", "context": "CREATE TABLE table_name_71 (year VARCHAR, award VARCHAR)"}, {"answer": "SELECT result FROM table_name_50 WHERE year < 2009 AND award = \"mercury prize\"", "question": "In what year, prior to 2009, was the Mercury Prize awarded?", "context": "CREATE TABLE table_name_50 (result VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_80 WHERE against = 50 AND played < 20", "question": "What is the lowest Points when against is 50, and there are less than 20 played?", "context": "CREATE TABLE table_name_80 (points INTEGER, against VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_19 WHERE against < 57 AND team = \"juventus\"", "question": "What is the average Position with less than 57 against and the team is Juventus?", "context": "CREATE TABLE table_name_19 (position INTEGER, against VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_23 WHERE against < 41 AND lost > 7", "question": "What is the highest Position when the against is less than 41, and lost is more than 7?", "context": "CREATE TABLE table_name_23 (position INTEGER, against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_42 WHERE against = 57", "question": "What is the average Lost when there are 57 against?", "context": "CREATE TABLE table_name_42 (lost INTEGER, against VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_46 WHERE team = \"s\u00e3o paulo railway\" AND points > 21", "question": "What is the lowest Lost for s\u00e3o paulo railway, Points more than 21?", "context": "CREATE TABLE table_name_46 (lost INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT unit FROM table_name_29 WHERE location = \"mongolia\"", "question": "What unit is in Mongolia?", "context": "CREATE TABLE table_name_29 (unit VARCHAR, location VARCHAR)"}, {"answer": "SELECT unit FROM table_name_94 WHERE location = \"argentina\"", "question": "What unit is in Argentina?", "context": "CREATE TABLE table_name_94 (unit VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_name_8 WHERE location = \"china\"", "question": "What name is located in China?", "context": "CREATE TABLE table_name_8 (name VARCHAR, location VARCHAR)"}, {"answer": "SELECT unit FROM table_name_53 WHERE location = \"china\" AND authors = \"zhou zhang\"", "question": "What unit is located in China and has Zhou Zhang as an author?", "context": "CREATE TABLE table_name_53 (unit VARCHAR, location VARCHAR, authors VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_54 WHERE laps < 20 AND grid = 21", "question": "What kind of  Manufacturer has a Laps smaller than 20 and a Grid of 21", "context": "CREATE TABLE table_name_54 (manufacturer VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT airline FROM table_name_98 WHERE fleet_size > 17 AND iata = \"pr\"", "question": "Which Airline has a Fleet size larger than 17, and a IATA of pr?", "context": "CREATE TABLE table_name_98 (airline VARCHAR, fleet_size VARCHAR, iata VARCHAR)"}, {"answer": "SELECT icao FROM table_name_96 WHERE fleet_size = 2", "question": "Which ICAO has a Fleet size of 2?", "context": "CREATE TABLE table_name_96 (icao VARCHAR, fleet_size VARCHAR)"}, {"answer": "SELECT SUM(fleet_size) FROM table_name_4 WHERE iata = \"pr\" AND commenced_operations < 1941", "question": "What is the of Fleet size with a IATA of pr, and a Commenced operations smaller than 1941?", "context": "CREATE TABLE table_name_4 (fleet_size INTEGER, iata VARCHAR, commenced_operations VARCHAR)"}, {"answer": "SELECT icao FROM table_name_72 WHERE commenced_operations > 2011", "question": "Which ICAO has a Commenced operations larger than 2011?", "context": "CREATE TABLE table_name_72 (icao VARCHAR, commenced_operations INTEGER)"}, {"answer": "SELECT status FROM table_name_31 WHERE authors = \"woodruff\"", "question": "What is the Status with an Author that is woodruff?", "context": "CREATE TABLE table_name_31 (status VARCHAR, authors VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_95 WHERE cfl_team = \"toronto argonauts\"", "question": "What is the highest Pick # when the CFL Team is the Toronto Argonauts?", "context": "CREATE TABLE table_name_95 (pick__number INTEGER, cfl_team VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_98 WHERE pick__number = 48", "question": "What is the CFL Team with #48 as the pick number?", "context": "CREATE TABLE table_name_98 (cfl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_name_59 WHERE position = \"db\" AND cfl_team = \"winnipeg blue bombers\"", "question": "What is the College with a Position of db, and the CFL Team was Winnipeg Blue Bombers?", "context": "CREATE TABLE table_name_59 (college VARCHAR, position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_32 WHERE player = \"will grant\"", "question": "What is the CFL Team with Will Grant?", "context": "CREATE TABLE table_name_32 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_60 WHERE number_in_entourage = \"99\" AND mission_type = \"gratitude\"", "question": "What is the latest year of a gratitude type mission with 99 in the entourage?", "context": "CREATE TABLE table_name_60 (year INTEGER, number_in_entourage VARCHAR, mission_type VARCHAR)"}, {"answer": "SELECT lead_envoy FROM table_name_62 WHERE ry\u016bky\u016ban_king = \"sh\u014d eki\"", "question": "Who was the lead envoy of the mission with the Ry\u016bky\u016ban King sh\u014d eki?", "context": "CREATE TABLE table_name_62 (lead_envoy VARCHAR, ry\u016bky\u016ban_king VARCHAR)"}, {"answer": "SELECT lead_envoy FROM table_name_10 WHERE ry\u016bky\u016ban_king = \"sh\u014d kei\" AND mission_type = \"congratulation\" AND year = 1718", "question": "Who was the lead envoy of the congratulation mission in 1718 with the Ry\u016bky\u016ban King sh\u014d kei?", "context": "CREATE TABLE table_name_10 (lead_envoy VARCHAR, year VARCHAR, ry\u016bky\u016ban_king VARCHAR, mission_type VARCHAR)"}, {"answer": "SELECT lead_envoy FROM table_name_44 WHERE ry\u016bky\u016ban_king = \"sh\u014d k\u014d\"", "question": "Who was the lead envoy with the Ry\u016bky\u016ban King sh\u014d k\u014d?", "context": "CREATE TABLE table_name_44 (lead_envoy VARCHAR, ry\u016bky\u016ban_king VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_59 WHERE date = \"10/20/1979*\"", "question": "On 10/20/1979*, who was the Opponent?", "context": "CREATE TABLE table_name_59 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_16 WHERE result = \"w 30-23\"", "question": "What is the average Attendance at a game with a Result of w 30-23?", "context": "CREATE TABLE table_name_16 (attendance INTEGER, result VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_58 WHERE result = \"w 25-17\"", "question": "What is the lowest Attendance at a game with the Result of w 25-17?", "context": "CREATE TABLE table_name_58 (attendance INTEGER, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE leading_scorer = \"tyrone hill , 20 points\"", "question": "What is Score, when Leading Scorer is Tyrone Hill , 20 Points?", "context": "CREATE TABLE table_name_6 (score VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT home FROM table_name_95 WHERE score = \"103-93\"", "question": "What is Home, when Score is 103-93?", "context": "CREATE TABLE table_name_95 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_74 WHERE home = \"cleveland\" AND date = \"january 30\"", "question": "What is Attendance, when Home is Cleveland, and when Date is January 30?", "context": "CREATE TABLE table_name_74 (attendance VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_65 WHERE attendance = \"gund arena 20,562\" AND record = \"20-10\"", "question": "What is Leading Scorer, when Attendance is Gund Arena 20,562, and when Record is 20-10?", "context": "CREATE TABLE table_name_65 (leading_scorer VARCHAR, attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE date = \"january 12\"", "question": "What is Score, when Date is January 12?", "context": "CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE attendance = \"gund arena 20,562\" AND date = \"january 27\"", "question": "What is Score, when Attendance is Gund Arena 20,562, and when Date is January 27?", "context": "CREATE TABLE table_name_33 (score VARCHAR, attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(top_10) FROM table_name_95 WHERE cuts_made < 10 AND top_5 < 0", "question": "What is the sum of Top-10(s), when Cuts made is less than 10, and when Top-5 is less than 0?", "context": "CREATE TABLE table_name_95 (top_10 INTEGER, cuts_made VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT MIN(top_25) FROM table_name_31 WHERE events = 10 AND wins > 0", "question": "What is the lowest Top-25, when Events is 10, and when Wins is greater than 0?", "context": "CREATE TABLE table_name_31 (top_25 INTEGER, events VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(top_5) FROM table_name_33 WHERE top_25 < 4 AND cuts_made < 7", "question": "What is the lowest Top-5, when Top-25 is less than 4, and when Cuts made is less than 7?", "context": "CREATE TABLE table_name_33 (top_5 INTEGER, top_25 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT height FROM table_name_59 WHERE year = \"junior\" AND name = \"meghan austin\"", "question": "What is the Height of Junior Meghan Austin?", "context": "CREATE TABLE table_name_59 (height VARCHAR, year VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_46 WHERE name = \"martina wood\"", "question": "What is Martina Wood's Position?", "context": "CREATE TABLE table_name_46 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_91 WHERE home_town = \"charlotte, nc\"", "question": "What is the Name of the Player from Charlotte, NC?", "context": "CREATE TABLE table_name_91 (name VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT position FROM table_name_52 WHERE height = \"6-2\" AND name = \"martina wood\"", "question": "What is 6-2 Martina Wood's Position?", "context": "CREATE TABLE table_name_52 (position VARCHAR, height VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_86 WHERE home_town = \"temple hills, md\"", "question": "What is the Position of the Player from Temple Hills, MD?", "context": "CREATE TABLE table_name_86 (position VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT name FROM table_name_69 WHERE year = \"junior\" AND home_town = \"fayetteville, nc\"", "question": "What is the Name of the Junior from Fayetteville, NC?", "context": "CREATE TABLE table_name_69 (name VARCHAR, year VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT rank FROM table_name_47 WHERE player = \"jo angel (wa)\"", "question": "What rank has jo angel (wa) as the player?", "context": "CREATE TABLE table_name_47 (rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT average FROM table_name_61 WHERE rank = \"1\"", "question": "What average has 1 as rhe rank?", "context": "CREATE TABLE table_name_61 (average VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_80 WHERE player = \"andy bichel (qld)\"", "question": "What rank has andy bichel (qld) as the player?", "context": "CREATE TABLE table_name_80 (rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT average FROM table_name_3 WHERE rank = \"2\"", "question": "What is the average that has 2 for the rank?", "context": "CREATE TABLE table_name_3 (average VARCHAR, rank VARCHAR)"}, {"answer": "SELECT player FROM table_name_46 WHERE average = \"24.21\"", "question": "What playee has 24.21 as the average?", "context": "CREATE TABLE table_name_46 (player VARCHAR, average VARCHAR)"}, {"answer": "SELECT average FROM table_name_31 WHERE s_wicket = \"441\"", "question": "What is the average that has 441 as wicket?", "context": "CREATE TABLE table_name_31 (average VARCHAR, s_wicket VARCHAR)"}, {"answer": "SELECT elected FROM table_name_31 WHERE party = \"republican\" AND incumbent = \"dave reichert\"", "question": "What was the year Elected of Republican Incumbent Dave Reichert?", "context": "CREATE TABLE table_name_31 (elected VARCHAR, party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_name_73 WHERE district = \"washington 2\"", "question": "What were the Results in the Washington 2 District?", "context": "CREATE TABLE table_name_73 (results VARCHAR, district VARCHAR)"}, {"answer": "SELECT 2008 AS _candidates FROM table_name_18 WHERE elected < 1994 AND incumbent = \"jim mcdermott\"", "question": "What is the 2008 Candidates Elected before 1994 with Incumbent Jim McDermott?", "context": "CREATE TABLE table_name_18 (elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_1 WHERE results = \"68% 32%\"", "question": "Who is the Incumbent with Results of 68% 32%?", "context": "CREATE TABLE table_name_1 (incumbent VARCHAR, results VARCHAR)"}, {"answer": "SELECT district FROM table_name_75 WHERE party = \"republican\" AND incumbent = \"cathy mcmorris\"", "question": "What District had Republican Incumbent Cathy McMorris?", "context": "CREATE TABLE table_name_75 (district VARCHAR, party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_29 WHERE bronze < 4 AND gold = 1 AND nation = \"italy\"", "question": "What was Italy's highest total when there were less than 4 bronze and 1 gold?", "context": "CREATE TABLE table_name_29 (total INTEGER, nation VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_93 WHERE bronze > 4", "question": "How many totals had more than 4 bronze?", "context": "CREATE TABLE table_name_93 (total INTEGER, bronze INTEGER)"}, {"answer": "SELECT MIN(total) FROM table_name_84 WHERE nation = \"austria\" AND gold > 3", "question": "What was Austria's lowest total when the gold was more than 3?", "context": "CREATE TABLE table_name_84 (total INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_76 WHERE to_par = \"+5\"", "question": "What are the years won when the to par is +5?", "context": "CREATE TABLE table_name_76 (year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_26 WHERE player = \"tiger woods\"", "question": "What is the average total for Tiger Woods?", "context": "CREATE TABLE table_name_26 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE total = 295", "question": "Which country had a total of 295?", "context": "CREATE TABLE table_name_46 (country VARCHAR, total VARCHAR)"}, {"answer": "SELECT finish FROM table_name_18 WHERE to_par = \"+18\"", "question": "What is the finish when the to par is +18?", "context": "CREATE TABLE table_name_18 (finish VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT SUM(no_result) FROM table_name_63 WHERE matches > 16 AND wins < 46", "question": "How many total No Results occured when the team had less than 46 wins and more than 16 matches?", "context": "CREATE TABLE table_name_63 (no_result INTEGER, matches VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_13 WHERE wins > 46", "question": "When the team had more than 46 wins, what were the average losses?", "context": "CREATE TABLE table_name_13 (losses INTEGER, wins INTEGER)"}, {"answer": "SELECT COUNT(no_result) FROM table_name_21 WHERE wins < 6", "question": "How many total No Results are recorded for less than 6 wins?", "context": "CREATE TABLE table_name_21 (no_result VARCHAR, wins INTEGER)"}, {"answer": "SELECT interview_subject FROM table_name_42 WHERE date = \"11-92\"", "question": "What Interview subject was on a Date that is 11-92?", "context": "CREATE TABLE table_name_42 (interview_subject VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_70 WHERE team = \"aris thessaloniki\" AND points < 120", "question": "What is the lowest game number with Aris Thessaloniki with points smaller than 120?", "context": "CREATE TABLE table_name_70 (games INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_76 WHERE rank > 2 AND team = \"olympiacos\" AND points > 113", "question": "What is the game average that has a rank larger than 2 with team Olympiacos and points larger than 113?", "context": "CREATE TABLE table_name_76 (games INTEGER, points VARCHAR, rank VARCHAR, team VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE opponent = \"buffalo bills\"", "question": "Which result was there when the opponents were the Buffalo Bills?", "context": "CREATE TABLE table_name_14 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(purse__) AS $__ FROM table_name_88 WHERE location = \"iowa\"", "question": "What was the Purse ($) total for Iowa?", "context": "CREATE TABLE table_name_88 (purse__ VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE score = \"195 (-21)\"", "question": "When did the Score of 195 (-21) happen?", "context": "CREATE TABLE table_name_4 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE winner = \"scott hoch (2)\"", "question": "When did Scott Hoch (2) win?", "context": "CREATE TABLE table_name_78 (date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT second FROM table_name_2 WHERE fifth = \"western australia\" AND sixth = \"south australia\" AND fourth = \"tasmania\"", "question": "What team placed second during the season where Western Australia placed fifth, South Australia placed sixth, and Tasmania placed fourth?", "context": "CREATE TABLE table_name_2 (second VARCHAR, fourth VARCHAR, fifth VARCHAR, sixth VARCHAR)"}, {"answer": "SELECT sixth FROM table_name_91 WHERE fourth = \"western australia\" AND first = \"tasmania\"", "question": "What team placed sixth during the season where Western Australia placed fourth and Tasmania placed first?", "context": "CREATE TABLE table_name_91 (sixth VARCHAR, fourth VARCHAR, first VARCHAR)"}, {"answer": "SELECT sixth FROM table_name_70 WHERE second = \"tasmania\" AND fourth = \"western australia\"", "question": "What team placed sixth during the season where Tasmania placed second and Western Australia placed fourth?", "context": "CREATE TABLE table_name_70 (sixth VARCHAR, second VARCHAR, fourth VARCHAR)"}, {"answer": "SELECT fifth FROM table_name_96 WHERE second = \"victoria\" AND first = \"tasmania\" AND sixth = \"south australia\"", "question": "What team placed fifth during the season where Victoria placed second, Tasmania placed first, and South Australia placed sixth?", "context": "CREATE TABLE table_name_96 (fifth VARCHAR, sixth VARCHAR, second VARCHAR, first VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_4 WHERE position > 2 AND points = 4 AND drawn > 2", "question": "What is the smallest number of losses for a position greater than 2 with 4 points and more than 2 draws?", "context": "CREATE TABLE table_name_4 (lost INTEGER, drawn VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_90 WHERE difference = \"2\" AND position < 4", "question": "How many points occurred with a difference of 2 for position less than 4?", "context": "CREATE TABLE table_name_90 (points VARCHAR, difference VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_19 WHERE position < 3 AND lost < 1", "question": "What is the highest number of points for a position less than 3 and less than 1 loss?", "context": "CREATE TABLE table_name_19 (points INTEGER, position VARCHAR, lost VARCHAR)"}, {"answer": "SELECT agg FROM table_name_28 WHERE team__number2 = \"estudiantes\"", "question": "When Estudiantes was team #2, what was their agg. value?", "context": "CREATE TABLE table_name_28 (agg VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_9 WHERE team__number1 = \"tsv bayer 04 leverkusen\"", "question": "Who played against TSV bayer 04 leverkusen when they were team #1?", "context": "CREATE TABLE table_name_9 (team__number1 VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_name_89 WHERE team__number1 = \"hapoel tel aviv\"", "question": "Who played against Hapoel tel aviv when they were team #1?", "context": "CREATE TABLE table_name_89 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT 2013 AS _bafa_adult_flag_division FROM table_name_95 WHERE location = \"aylesbury\"", "question": "What is the 2013 BAFA adult flag division in Aylesbury?", "context": "CREATE TABLE table_name_95 (location VARCHAR)"}, {"answer": "SELECT format FROM table_name_63 WHERE label = \"kontor records\" AND catalog = \"kontor446\"", "question": "Records from Kontor Records from the catalog of Kontor446 was released in what format?", "context": "CREATE TABLE table_name_63 (format VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE label = \"wrongun\"", "question": "What date was the release that was Wrongun as the label?", "context": "CREATE TABLE table_name_66 (date VARCHAR, label VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE catalog = \"nebdj068\"", "question": "Catalog Nebdj068 was released when?", "context": "CREATE TABLE table_name_26 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_62 WHERE date = \"april 11, 2005\" AND catalog = \"nebt068\"", "question": "In what format was the release from the Nebt068 catalog on April 11, 2005 in?", "context": "CREATE TABLE table_name_62 (format VARCHAR, date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_16 WHERE date = \"2005\" AND label = \"playground music scandinavia\"", "question": "What region has the date of 2005 and Playground Music Scandinavia as a label?", "context": "CREATE TABLE table_name_16 (region VARCHAR, date VARCHAR, label VARCHAR)"}, {"answer": "SELECT result FROM table_name_16 WHERE venue = \"filbert street\"", "question": "What is the Result with a Venue that is filbert street?", "context": "CREATE TABLE table_name_16 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE opponent = \"bye\"", "question": "When did the Texans play BYE?", "context": "CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_11 WHERE attendance = \"70,724\"", "question": "Who did the Texans play when there were 70,724 people in attendance?", "context": "CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT novelty FROM table_name_75 WHERE status = \"jr synonym of protosialis casca\"", "question": "Who has the status of jr synonym of protosialis casca?", "context": "CREATE TABLE table_name_75 (novelty VARCHAR, status VARCHAR)"}, {"answer": "SELECT authors FROM table_name_62 WHERE name = \"mongolbittacus\"", "question": "Which writer is named mongolbittacus?", "context": "CREATE TABLE table_name_62 (authors VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE attendance = \"359\"", "question": "What is the score of the game that had 359 people in attendance?", "context": "CREATE TABLE table_name_59 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_95 WHERE score = \"0-1\"", "question": "What is the home team of the game that ended with a score of 0-1?", "context": "CREATE TABLE table_name_95 (home_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_51 WHERE match_no = \"31\"", "question": "How many people attended Match No. 31?", "context": "CREATE TABLE table_name_51 (attendance VARCHAR, match_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_42 WHERE match_no = \"23\"", "question": "Who is the Home Team for Match No. 23?", "context": "CREATE TABLE table_name_42 (home_team VARCHAR, match_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE attendance = \"1,125\"", "question": "What is the score of the game with 1,125 people in attendance?", "context": "CREATE TABLE table_name_37 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT country FROM table_name_70 WHERE launched = \"april 3, 1990\"", "question": "What is the Country with a Launched that is april 3, 1990?", "context": "CREATE TABLE table_name_70 (country VARCHAR, launched VARCHAR)"}, {"answer": "SELECT launched FROM table_name_45 WHERE country = \"spain\"", "question": "What is the Launched from a Country that is spain?", "context": "CREATE TABLE table_name_45 (launched VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(order) FROM table_name_66 WHERE minister = \"joe hockey\"", "question": "What is the lowest order with a Minister that is joe hockey?", "context": "CREATE TABLE table_name_66 (order INTEGER, minister VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_43 WHERE nationality = \"united states\" AND player = \"doug overton\"", "question": "Which Years in Orlando has a Nationality of united states, and a Player of doug overton?", "context": "CREATE TABLE table_name_43 (years_in_orlando VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_10 WHERE nationality = \"united states\" AND position = \"center\" AND player = \"jawann oldham\"", "question": "Which Years in Orlando has a Nationality of united states, a Position of center, and a Player of jawann oldham?", "context": "CREATE TABLE table_name_10 (years_in_orlando VARCHAR, player VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_54 WHERE player = \"bo outlaw\"", "question": "Which Years in Orlando has a Player of bo outlaw?", "context": "CREATE TABLE table_name_54 (years_in_orlando VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_16 WHERE school_club_team = \"seattle\"", "question": "Which Years in Orlando has a School/Club Team of seattle?", "context": "CREATE TABLE table_name_16 (years_in_orlando VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_63 WHERE position = \"center\" AND years_in_orlando = \"2010\u20132012\"", "question": "Which Nationality has a Position of center, and a Years in Orlando of 2010\u20132012?", "context": "CREATE TABLE table_name_63 (nationality VARCHAR, position VARCHAR, years_in_orlando VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_40 WHERE school_club_team = \"seattle\"", "question": "Which Nationality has a School/Club Team of seattle?", "context": "CREATE TABLE table_name_40 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE game_site = \"candlestick park\"", "question": "When did they play at Candlestick Park?", "context": "CREATE TABLE table_name_25 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT AVG(top_10) FROM table_name_6 WHERE events < 57 AND top_5 < 0", "question": "What is the average number of top-10s for events under 57 and 0 top-5s?", "context": "CREATE TABLE table_name_6 (top_10 INTEGER, events VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT AVG(top_10) FROM table_name_56 WHERE cuts_made > 12 AND wins < 0", "question": "What is the average number of top-10s for events with more than 12 cuts made and 0 wins?", "context": "CREATE TABLE table_name_56 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(top_25) FROM table_name_93 WHERE top_10 < 2", "question": "What is the average number of top-25s for events with less than 2 top-10s?", "context": "CREATE TABLE table_name_93 (top_25 INTEGER, top_10 INTEGER)"}, {"answer": "SELECT works_number FROM table_name_20 WHERE builder = \"canadian engine & machinery company\" AND number < 3", "question": "Which Works number has a Builder of canadian engine & machinery company, and a Number smaller than 3?", "context": "CREATE TABLE table_name_20 (works_number VARCHAR, builder VARCHAR, number VARCHAR)"}, {"answer": "SELECT works_number FROM table_name_76 WHERE builder = \"avonside engine company\" AND type = \"4-6-0\" AND number < 12 AND date = \"december 1871\"", "question": "Which Works number has a Builder of avonside engine company, and a Type of 4-6-0, and a Number smaller than 12, and a Date of december 1871?", "context": "CREATE TABLE table_name_76 (works_number VARCHAR, date VARCHAR, number VARCHAR, builder VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_55 WHERE builder = \"avonside engine company\" AND number = 9", "question": "Which Type has a Builder of avonside engine company, and a Number of 9?", "context": "CREATE TABLE table_name_55 (type VARCHAR, builder VARCHAR, number VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE type = \"4-6-0\" AND number > 11", "question": "Which Date has a Type of 4-6-0, and a Number larger than 11?", "context": "CREATE TABLE table_name_22 (date VARCHAR, type VARCHAR, number VARCHAR)"}, {"answer": "SELECT builder FROM table_name_39 WHERE date = \"early 1871\"", "question": "Which Builder has a Date of early 1871?", "context": "CREATE TABLE table_name_39 (builder VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_69 WHERE score = \"42-64\"", "question": "What ist he Home with a Score that is 42-64?", "context": "CREATE TABLE table_name_69 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_34 WHERE time = \"12:00\"", "question": "What is the Home with a Time that is 12:00?", "context": "CREATE TABLE table_name_34 (home VARCHAR, time VARCHAR)"}, {"answer": "SELECT ground FROM table_name_61 WHERE score = \"49-80\"", "question": "What is the Ground with a Score that is 49-80?", "context": "CREATE TABLE table_name_61 (ground VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(march) FROM table_name_7 WHERE record = \"22-12-6\"", "question": "What's the smallest March when the record is 22-12-6?", "context": "CREATE TABLE table_name_7 (march INTEGER, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_77 WHERE march = 26", "question": "Which record's march was 26?", "context": "CREATE TABLE table_name_77 (record VARCHAR, march VARCHAR)"}, {"answer": "SELECT lost FROM table_name_30 WHERE losing_bonus = \"4\"", "question": "What is the Lost with a Losing Bonus that is 4?", "context": "CREATE TABLE table_name_30 (lost VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT points FROM table_name_13 WHERE tries_for = \"21\"", "question": "What is the Points with a Tries For that is 21?", "context": "CREATE TABLE table_name_13 (points VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT lost FROM table_name_77 WHERE try_bonus = \"try bonus\"", "question": "What is the Lost with a Try Bonus that is try bonus?", "context": "CREATE TABLE table_name_77 (lost VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_53 WHERE rank = \"12\" AND gold < 0", "question": "What is the highest Total for the rank 12, and gold less than 0?", "context": "CREATE TABLE table_name_53 (total INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_70 WHERE silver < 2 AND bronze < 0", "question": "What is the total number of Total when the Silver is less than 2, and a Bronze is less than 0?", "context": "CREATE TABLE table_name_70 (total VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_42 WHERE colors = \"blue and gold\"", "question": "What is the nickname of the team that has the colors blue and gold?", "context": "CREATE TABLE table_name_42 (nickname VARCHAR, colors VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_27 WHERE colors = \"black and gold\"", "question": "What is the nickname of the team that has the colors black and gold?", "context": "CREATE TABLE table_name_27 (nickname VARCHAR, colors VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_34 WHERE division = \"division 2\"", "question": "What is the nickname of the team in division 2?", "context": "CREATE TABLE table_name_34 (nickname VARCHAR, division VARCHAR)"}, {"answer": "SELECT class FROM table_name_98 WHERE league = \"dsha\" AND school = \"middletown high school\"", "question": "What is the class of the Middletown High School team that is in the DSHA league?", "context": "CREATE TABLE table_name_98 (class VARCHAR, league VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_29 WHERE colors = \"blue and gold\"", "question": "What school is the team from that has the colors blue and gold?", "context": "CREATE TABLE table_name_29 (school VARCHAR, colors VARCHAR)"}, {"answer": "SELECT colors FROM table_name_74 WHERE division = \"division 2\" AND nickname = \"seahawks\"", "question": "What are the colors for the division 2 team with the nickname, the seahawks?", "context": "CREATE TABLE table_name_74 (colors VARCHAR, division VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_name_47 WHERE pictorials = \"adrianne curry, girls of tuscany\"", "question": "Who's the Centerfold model with a Pictorials of adrianne curry, girls of tuscany?", "context": "CREATE TABLE table_name_47 (centerfold_model VARCHAR, pictorials VARCHAR)"}, {"answer": "SELECT interview_subject FROM table_name_30 WHERE pictorials = \"vida guerra\"", "question": "Which Interview subject has a Pictorials of vida guerra?", "context": "CREATE TABLE table_name_30 (interview_subject VARCHAR, pictorials VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE pictorials = \"mercedes mcnab, girls of hawaiian tropic\"", "question": "Which Date has a Pictorials of mercedes mcnab, girls of hawaiian tropic?", "context": "CREATE TABLE table_name_67 (date VARCHAR, pictorials VARCHAR)"}, {"answer": "SELECT interview_subject FROM table_name_60 WHERE centerfold_model = \"athena lundberg\"", "question": "Which Interview subject has a Centerfold model of athena lundberg?", "context": "CREATE TABLE table_name_60 (interview_subject VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT COUNT(votes) FROM table_name_23 WHERE party = \"labour\"", "question": "What is the total number of votes from the Labour Party?", "context": "CREATE TABLE table_name_23 (votes VARCHAR, party VARCHAR)"}, {"answer": "SELECT party FROM table_name_81 WHERE votes < 11 OFFSET 484", "question": "Which party has less than 11,484 votes?", "context": "CREATE TABLE table_name_81 (party VARCHAR, votes INTEGER)"}, {"answer": "SELECT SUM(number) FROM table_name_24 WHERE name = \"brandon dean\"", "question": "How many numbers had Brandon Dean as a name?", "context": "CREATE TABLE table_name_24 (number INTEGER, name VARCHAR)"}, {"answer": "SELECT singular FROM table_name_28 WHERE meaning = \"night\"", "question": "What is the singular for the Meaning of night?", "context": "CREATE TABLE table_name_28 (singular VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT plural FROM table_name_85 WHERE meaning = \"night\"", "question": "What is the plural for the Meaning of night?", "context": "CREATE TABLE table_name_85 (plural VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT plural FROM table_name_47 WHERE singular = \"nyaqot\"", "question": "What is the plural if the singular is nyaqot?", "context": "CREATE TABLE table_name_47 (plural VARCHAR, singular VARCHAR)"}, {"answer": "SELECT plural FROM table_name_92 WHERE plural_gender = \"n\" AND meaning = \"python\"", "question": "What is the plural if the meaning is python and the plural gender is n?", "context": "CREATE TABLE table_name_92 (plural VARCHAR, plural_gender VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT plural FROM table_name_60 WHERE singular = \"awu\"", "question": "What is the plural if the singular is awu?", "context": "CREATE TABLE table_name_60 (plural VARCHAR, singular VARCHAR)"}, {"answer": "SELECT singular FROM table_name_19 WHERE plural = \"xweer(a)du\"", "question": "What is the singular if the plural is xweer(a)du?", "context": "CREATE TABLE table_name_19 (singular VARCHAR, plural VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_94 WHERE team = \"sant'anna\" AND position > 10", "question": "What is the Total againsts for the Sant'Anna team with a position number greater than 10?", "context": "CREATE TABLE table_name_94 (against VARCHAR, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_68 WHERE lost = 3 AND drawn > 1 AND points < 10", "question": "What is the total number of games played with 3 losses, 1 or more drawns and 10 or fewer points?", "context": "CREATE TABLE table_name_68 (played INTEGER, points VARCHAR, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_16 WHERE played > 9", "question": "What is the average lost of games played of more than 9?", "context": "CREATE TABLE table_name_16 (lost INTEGER, played INTEGER)"}, {"answer": "SELECT MIN(bronze) FROM table_name_71 WHERE nation = \"great britain\" AND total > 2", "question": "What is the lowest number of bronze medals for Great Britain with more than 2 medals total?", "context": "CREATE TABLE table_name_71 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_67 WHERE position = 4 AND loses < 4", "question": "What is the lowest wins the club with a position of 4 and less than 4 losses has?", "context": "CREATE TABLE table_name_67 (wins INTEGER, position VARCHAR, loses VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_39 WHERE club = \"nev\u0117\u017eis-2 k\u0117dainiai\" AND goals_conceded > 35", "question": "What is the sum of the points of club nev\u0117\u017eis-2 k\u0117dainiai, which has more than 35 goals conceded?", "context": "CREATE TABLE table_name_39 (points INTEGER, club VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT COUNT(games_played) FROM table_name_6 WHERE wins = 4 AND position < 9", "question": "What is the total number of games played of the team with 4 wins and a position less than 9?", "context": "CREATE TABLE table_name_6 (games_played VARCHAR, wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_8 WHERE position < 1", "question": "What is the highest number of wins of the team with a position less than 1?", "context": "CREATE TABLE table_name_8 (wins INTEGER, position INTEGER)"}, {"answer": "SELECT SUM(losses) FROM table_name_56 WHERE against > 1412 AND wins = 10 AND draws < 0", "question": "What is the total losses against 1412, and 10 wins, but draws less than 0?", "context": "CREATE TABLE table_name_56 (losses INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_98 WHERE against > 2161", "question": "What is the highest draw against 2161?", "context": "CREATE TABLE table_name_98 (draws INTEGER, against INTEGER)"}, {"answer": "SELECT COUNT(losses) FROM table_name_4 WHERE against = 1412 AND byes < 2", "question": "What is the total number of losses against 1412, and Byes less than 2?", "context": "CREATE TABLE table_name_4 (losses VARCHAR, against VARCHAR, byes VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_15 WHERE byes < 2", "question": "What is the lowest wins with less than 2 Byes?", "context": "CREATE TABLE table_name_15 (wins INTEGER, byes INTEGER)"}, {"answer": "SELECT MAX(against) FROM table_name_4 WHERE wins = 0 AND byes > 2", "question": "What is the highest score with 0 wins and more than 2 Byes?", "context": "CREATE TABLE table_name_4 (against INTEGER, wins VARCHAR, byes VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_80 WHERE against < 1148", "question": "What is the sum of wins against the smaller score 1148?", "context": "CREATE TABLE table_name_80 (wins INTEGER, against INTEGER)"}, {"answer": "SELECT name FROM table_name_36 WHERE rank > 7 AND goals < 305 AND matches = \"418\"", "question": "Who had a rank larger than 7, less than 305 goals, and 418 matches?", "context": "CREATE TABLE table_name_36 (name VARCHAR, matches VARCHAR, rank VARCHAR, goals VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_36 WHERE rank = 6", "question": "How many goals ranked 6?", "context": "CREATE TABLE table_name_36 (goals VARCHAR, rank VARCHAR)"}, {"answer": "SELECT matches FROM table_name_31 WHERE goals = 360", "question": "How many matches had 360 goals?", "context": "CREATE TABLE table_name_31 (matches VARCHAR, goals VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_64 WHERE category = \"best costume design\"", "question": "What is the Nominee from the Category that is best costume design?", "context": "CREATE TABLE table_name_64 (nominee VARCHAR, category VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_70 WHERE bronze > 12 AND silver > 772 AND country = \"thailand\"", "question": "Which Total has a Bronze larger than 12, and a Silver larger than 772, and a Country of thailand?", "context": "CREATE TABLE table_name_70 (total INTEGER, country VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_68 WHERE total = 2998 AND bronze < 1191", "question": "Which Gold has a Total of 2998, and a Bronze smaller than 1191?", "context": "CREATE TABLE table_name_68 (gold INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_75 WHERE country = \"malaysia\" AND total < 2644", "question": "Which Bronze has a Country of malaysia, and a Total smaller than 2644?", "context": "CREATE TABLE table_name_75 (bronze INTEGER, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT silver FROM table_name_65 WHERE bronze < 618 AND country = \"laos\"", "question": "Which Silver has a Bronze smaller than 618, and a Country of laos?", "context": "CREATE TABLE table_name_65 (silver VARCHAR, bronze VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE team = \"@ portland\"", "question": "What is the Score with a Team that is @ portland?", "context": "CREATE TABLE table_name_1 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_35 WHERE date = \"january 20\"", "question": "What is the High points with a Date that is january 20?", "context": "CREATE TABLE table_name_35 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_64 WHERE visitor = \"clippers\"", "question": "Who was the home team that the Clippers played?", "context": "CREATE TABLE table_name_64 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_69 WHERE leading_scorer = \"lebron james (16)\"", "question": "What's the record of the game where Lebron James (16) was the leading scorer?", "context": "CREATE TABLE table_name_69 (record VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_61 WHERE venue = \"a\" AND date = \"2 january 2008\"", "question": "When the venue was A and the date was 2 january 2008, what was the average attendance?", "context": "CREATE TABLE table_name_61 (attendance INTEGER, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE date = \"10 november 2007\"", "question": "On 10 November 2007, what was the venue?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE result = \"1\u20130\" AND attendance > 668 AND opponent = \"ayr united\"", "question": "On what date was the opponent Ayr United, the result 1\u20130, and the attendance more than 668?", "context": "CREATE TABLE table_name_17 (date VARCHAR, opponent VARCHAR, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_47 WHERE opponent = \"brechin city\" AND attendance = 656", "question": "When the opponent was Brechin City and the attendance was 656, what was the Result?", "context": "CREATE TABLE table_name_47 (result VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_45 WHERE venue = \"a\" AND date = \"1 september 2007\"", "question": "On 1 september 2007, at the Venue A, what was the average attendance?", "context": "CREATE TABLE table_name_45 (attendance INTEGER, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE country = \"england\" AND year > 1971", "question": "Which Score has a Country of england, and a Year larger than 1971?", "context": "CREATE TABLE table_name_77 (score VARCHAR, country VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner FROM table_name_37 WHERE country = \"scotland\"", "question": "What is Scotland's winner?", "context": "CREATE TABLE table_name_37 (winner VARCHAR, country VARCHAR)"}, {"answer": "SELECT time FROM table_name_15 WHERE week = 2", "question": "What time was the game in week 2?", "context": "CREATE TABLE table_name_15 (time VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_88 WHERE date = \"september 14, 2008\"", "question": "What was the score of the game on September 14, 2008?", "context": "CREATE TABLE table_name_88 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_66 WHERE date = \"november 23, 2008\"", "question": "What was the final score of the game on November 23, 2008?", "context": "CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT species FROM table_name_43 WHERE voges_proskauer = \"negative\" AND indole = \"negative\"", "question": "Which species has a Voges-Proskauer reading of negative and an indole reading of negative?", "context": "CREATE TABLE table_name_43 (species VARCHAR, voges_proskauer VARCHAR, indole VARCHAR)"}, {"answer": "SELECT voges_proskauer FROM table_name_70 WHERE species = \"proteus mirabilis\"", "question": "What is the Voges-Proskauer reading for proteus mirabilis?", "context": "CREATE TABLE table_name_70 (voges_proskauer VARCHAR, species VARCHAR)"}, {"answer": "SELECT methyl_red FROM table_name_98 WHERE indole = \"positive\"", "question": "What is the methyl red reading for the species that tests positive for indole?", "context": "CREATE TABLE table_name_98 (methyl_red VARCHAR, indole VARCHAR)"}, {"answer": "SELECT methyl_red FROM table_name_77 WHERE species = \"proteus mirabilis\"", "question": "What is the methyl red reading for proteus mirabilis?", "context": "CREATE TABLE table_name_77 (methyl_red VARCHAR, species VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_15 WHERE nation = \"russia\" AND bronze > 5", "question": "What is the highest silver medals for Russia with more than 5 bronze medals?", "context": "CREATE TABLE table_name_15 (silver INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_51 WHERE television_service = \"sky arte hd\"", "question": "What package/option has sky arte hd as the television service?", "context": "CREATE TABLE table_name_51 (package_option VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT language FROM table_name_23 WHERE hdtv = \"no\" AND package_option = \"sky famiglia\" AND television_service = \"national geographic channel\"", "question": "What language has NO, as the HDTV, sky famiglia as the package/option, and national geographic channel as the television service?", "context": "CREATE TABLE table_name_23 (language VARCHAR, television_service VARCHAR, hdtv VARCHAR, package_option VARCHAR)"}, {"answer": "SELECT language FROM table_name_82 WHERE package_option = \"sky famiglia\"", "question": "What language has sky famiglia as the package/option?", "context": "CREATE TABLE table_name_82 (language VARCHAR, package_option VARCHAR)"}, {"answer": "SELECT language FROM table_name_65 WHERE content = \"viaggi\"", "question": "What language has viaggi as the content?", "context": "CREATE TABLE table_name_65 (language VARCHAR, content VARCHAR)"}, {"answer": "SELECT television_service FROM table_name_20 WHERE language = \"italian\" AND package_option = \"sky famiglia\"", "question": "What television service has italian as the language, and sky famiglia as the package option?", "context": "CREATE TABLE table_name_20 (television_service VARCHAR, language VARCHAR, package_option VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_56 WHERE content = \"documentaries\" AND hdtv = \"yes\" AND television_service = \"history hd\"", "question": "What package/option has documentaries as the content, yes as the HDTV, and a television service of history hd?", "context": "CREATE TABLE table_name_56 (package_option VARCHAR, television_service VARCHAR, content VARCHAR, hdtv VARCHAR)"}, {"answer": "SELECT res FROM table_name_91 WHERE method = \"submission (armbar)\"", "question": "What was the resolution for the match that ended by Submission (armbar)?", "context": "CREATE TABLE table_name_91 (res VARCHAR, method VARCHAR)"}, {"answer": "SELECT time FROM table_name_39 WHERE round = \"3\" AND opponent = \"keith wisniewski\"", "question": "What was the total time for the match that ocurred in Round 3 with opponent Keith Wisniewski?", "context": "CREATE TABLE table_name_39 (time VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_14 WHERE opponent = \"laverne clark\"", "question": "Where did the match with opponent Laverne Clark occur?", "context": "CREATE TABLE table_name_14 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT diameter__mi_ FROM table_name_65 WHERE longitude = \"79.8\u00b0 e\"", "question": "What is the Diameter (mi) when the Longitude is 79.8\u00b0 e?", "context": "CREATE TABLE table_name_65 (diameter__mi_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT latitude FROM table_name_94 WHERE diameter__km_ = \"13km\" AND longitude = \"72.9\u00b0 e\"", "question": "What is the Latitude when the Diameter (km) is 13km, and the Longitude is 72.9\u00b0 e?", "context": "CREATE TABLE table_name_94 (latitude VARCHAR, diameter__km_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT longitude FROM table_name_54 WHERE diameter__km_ = \"31km\"", "question": "What shows for the Longitude when there is a Diameter (km) of 31km?", "context": "CREATE TABLE table_name_54 (longitude VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_name_66 WHERE diameter__mi_ = \"8mi\" AND gill = \"e\"", "question": "What shows for the Diameter (km) when the Diameter (mi) is 8mi, and a Gill is e?", "context": "CREATE TABLE table_name_66 (diameter__km_ VARCHAR, diameter__mi_ VARCHAR, gill VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_name_5 WHERE diameter__mi_ = \"5mi\"", "question": "What shows as the Diameter (km) when the Diameter (mi) is 5mi?", "context": "CREATE TABLE table_name_5 (diameter__km_ VARCHAR, diameter__mi_ VARCHAR)"}, {"answer": "SELECT MIN(squad_no) FROM table_name_81 WHERE goals < 0", "question": "What was the lowest squad with 0 goals?", "context": "CREATE TABLE table_name_81 (squad_no INTEGER, goals INTEGER)"}, {"answer": "SELECT COUNT(overall) FROM table_name_30 WHERE player = \"angelo craig\"", "question": "What is the number for overall for angelo craig?", "context": "CREATE TABLE table_name_30 (overall VARCHAR, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_85 WHERE overall = 246", "question": "What is the Round when there is an overall of 246?", "context": "CREATE TABLE table_name_85 (round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_93 WHERE position = \"wide receiver\" AND round < 2", "question": "What is the lowest Overall for the wide receiver in a round less than 2?", "context": "CREATE TABLE table_name_93 (overall INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_73 WHERE college = \"appalachian state\"", "question": "What is the Player from appalachian state?", "context": "CREATE TABLE table_name_73 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT production_cost FROM table_name_34 WHERE date = \"february 2000\"", "question": "What is the Production Cost with a Date that is february 2000?", "context": "CREATE TABLE table_name_34 (production_cost VARCHAR, date VARCHAR)"}, {"answer": "SELECT singapore_gross FROM table_name_74 WHERE title = \"2000\"", "question": "What is the Singapore Gross with a Title that is 2000?", "context": "CREATE TABLE table_name_74 (singapore_gross VARCHAR, title VARCHAR)"}, {"answer": "SELECT singapore_gross FROM table_name_72 WHERE producer = \"2000\"", "question": "What is the Singapore Gross with a Producer that is 2000?", "context": "CREATE TABLE table_name_72 (singapore_gross VARCHAR, producer VARCHAR)"}, {"answer": "SELECT AVG(height) FROM table_name_82 WHERE weight < 93 AND spike < 336 AND block = 305", "question": "What is Average Height, when Weight is less than 93, when Spike is less than 336, and when Block is 305?", "context": "CREATE TABLE table_name_82 (height INTEGER, block VARCHAR, weight VARCHAR, spike VARCHAR)"}, {"answer": "SELECT name FROM table_name_39 WHERE block = 320 AND spike > 336 AND date_of_birth = \"12.10.1978\"", "question": "What is Name, when Block is 320, when Spike is more than 336, and when Date of Birth is 12.10.1978?", "context": "CREATE TABLE table_name_39 (name VARCHAR, date_of_birth VARCHAR, block VARCHAR, spike VARCHAR)"}, {"answer": "SELECT COUNT(block) FROM table_name_41 WHERE spike < 341 AND weight > 82 AND name = \"theodoros baev\"", "question": "What is the total number of Block(s), when Spike is less than 341, when Weight is greater than 82, and when Name is Theodoros Baev?", "context": "CREATE TABLE table_name_41 (block VARCHAR, name VARCHAR, spike VARCHAR, weight VARCHAR)"}, {"answer": "SELECT name FROM table_name_98 WHERE spike > 343 AND date_of_birth = \"02.03.1973\"", "question": "What is Name, when Spike is greater than 343, and when Date of Birth is 02.03.1973?", "context": "CREATE TABLE table_name_98 (name VARCHAR, spike VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE tournament = \"paco rabanne open de france\"", "question": "What was the date of the Paco Rabanne Open de France?", "context": "CREATE TABLE table_name_95 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE runner_s__up = \"ian mosey\"", "question": "On which date did Ian Mosey finish runner-up?", "context": "CREATE TABLE table_name_49 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_74 WHERE set_4 = \"21-25\"", "question": "What set 2 has a set 4 of 21-25?", "context": "CREATE TABLE table_name_74 (set_2 VARCHAR, set_4 VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE set_3 = \"26-28\"", "question": "What was the score when set 3 was 26-28?", "context": "CREATE TABLE table_name_78 (score VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE set_3 = \"18-25\"", "question": "When was set 3 of 18-25?", "context": "CREATE TABLE table_name_2 (date VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_43 WHERE result = \"eng by 1 wkt\"", "question": "Who was the away captain with a result of Eng by 1 wkt?", "context": "CREATE TABLE table_name_43 (away_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE result = \"eng by 1 wkt\"", "question": "On what date was the result Eng by 1 wkt?", "context": "CREATE TABLE table_name_79 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE away_captain = \"arthur jones\" AND venue = \"sydney cricket ground\"", "question": "On what date was Arthur Jones the away captain at Sydney Cricket Ground?", "context": "CREATE TABLE table_name_33 (date VARCHAR, away_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_83 WHERE draw = 6", "question": "What is the highest place for song that was draw number 6?", "context": "CREATE TABLE table_name_83 (place INTEGER, draw VARCHAR)"}, {"answer": "SELECT result FROM table_name_61 WHERE date = \"november 6, 1988\"", "question": "What was the result of the game on November 6, 1988?", "context": "CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE opponent = \"los angeles rams\"", "question": "What was the date of the game against the Los Angeles Rams?", "context": "CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT total FROM table_name_57 WHERE set_2 = \"25-19\" AND date = \"jun 17\"", "question": "What is the total with a 25-19 set 2 on Jun 17?", "context": "CREATE TABLE table_name_57 (total VARCHAR, set_2 VARCHAR, date VARCHAR)"}, {"answer": "SELECT set_4 FROM table_name_73 WHERE score = \"2-3\"", "question": "What is the set 4 with a 2-3 score?", "context": "CREATE TABLE table_name_73 (set_4 VARCHAR, score VARCHAR)"}, {"answer": "SELECT set_5 FROM table_name_44 WHERE set_1 = \"19-25\"", "question": "What is the set 5 with a 19-25 set 1?", "context": "CREATE TABLE table_name_44 (set_5 VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_67 WHERE set_4 = \"28-30\"", "question": "What is the set 1 with a 28-30 set 4?", "context": "CREATE TABLE table_name_67 (set_1 VARCHAR, set_4 VARCHAR)"}, {"answer": "SELECT result FROM table_name_46 WHERE goal < 2", "question": "What is the result when there's less than 2 goals?", "context": "CREATE TABLE table_name_46 (result VARCHAR, goal INTEGER)"}, {"answer": "SELECT score FROM table_name_18 WHERE goal < 2", "question": "What is the score when there are less than 2 goals?", "context": "CREATE TABLE table_name_18 (score VARCHAR, goal INTEGER)"}, {"answer": "SELECT AVG(points) FROM table_name_20 WHERE position < 8 AND played = 16 AND lost > 9", "question": "How many points on average had a position smaller than 8, 16 plays, and a lost larger than 9?", "context": "CREATE TABLE table_name_20 (points INTEGER, lost VARCHAR, position VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_4 WHERE opponent = \"maryland\"", "question": "What was the lowest Attendance when the Opponent was Maryland?", "context": "CREATE TABLE table_name_4 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT network FROM table_name_56 WHERE local_name = \"moj tata je bolji od tvog tate\"", "question": "Which Network has a Local name of moj tata je bolji od tvog tate?", "context": "CREATE TABLE table_name_56 (network VARCHAR, local_name VARCHAR)"}, {"answer": "SELECT country FROM table_name_97 WHERE network = \"channel 1\"", "question": "Which Country has a Network of channel 1?", "context": "CREATE TABLE table_name_97 (country VARCHAR, network VARCHAR)"}, {"answer": "SELECT country FROM table_name_61 WHERE network = \"nelonen\"", "question": "Which Country has a Network of nelonen?", "context": "CREATE TABLE table_name_61 (country VARCHAR, network VARCHAR)"}, {"answer": "SELECT local_name FROM table_name_60 WHERE network = \"nova tv\"", "question": "Which Local name has a Network of nova tv?", "context": "CREATE TABLE table_name_60 (local_name VARCHAR, network VARCHAR)"}, {"answer": "SELECT local_name FROM table_name_36 WHERE network = \"tvn\"", "question": "Which Local name has a Network of tvn?", "context": "CREATE TABLE table_name_36 (local_name VARCHAR, network VARCHAR)"}, {"answer": "SELECT country FROM table_name_18 WHERE host = \"miguel esteban\"", "question": "Which Country has a Host of miguel esteban?", "context": "CREATE TABLE table_name_18 (country VARCHAR, host VARCHAR)"}, {"answer": "SELECT MIN(chapter) FROM table_name_54 WHERE pinyin = \"dehua\" AND articles < 16", "question": "Can you tell me the lowest Chapter that has the Pinyin of dehua, and the Articles smaller than 16?", "context": "CREATE TABLE table_name_54 (chapter INTEGER, pinyin VARCHAR, articles VARCHAR)"}, {"answer": "SELECT AVG(chapter) FROM table_name_48 WHERE articles < 15", "question": "Can you tell me the average Chapter that has Articles smaller than 15?", "context": "CREATE TABLE table_name_48 (chapter INTEGER, articles INTEGER)"}, {"answer": "SELECT chinese FROM table_name_7 WHERE chapter > 4 AND english_translation = \"food transformations\"", "question": "Can you tell me the Chinese that has the Chapter larger than 4, and the English Translation of food transformations?", "context": "CREATE TABLE table_name_7 (chinese VARCHAR, chapter VARCHAR, english_translation VARCHAR)"}, {"answer": "SELECT english_translation FROM table_name_44 WHERE articles = 24", "question": "Can you tell me the English Translation that has the Articles of 24?", "context": "CREATE TABLE table_name_44 (english_translation VARCHAR, articles VARCHAR)"}, {"answer": "SELECT icao FROM table_name_83 WHERE iata = \"sin\"", "question": "What shows for ICAO when the IATA is sin?", "context": "CREATE TABLE table_name_83 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_72 WHERE country = \"france\" AND icao = \"lfrn\"", "question": "What is the IATA when France was the country, and the ICAO was lfrn?", "context": "CREATE TABLE table_name_72 (iata VARCHAR, country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_82 WHERE country = \"france\" AND city = \"montpellier\"", "question": "What is the Airport when France was the country, and Montpellier was the city?", "context": "CREATE TABLE table_name_82 (airport VARCHAR, country VARCHAR, city VARCHAR)"}, {"answer": "SELECT icao FROM table_name_66 WHERE airport = \"luqa airport\"", "question": "What is the ICAO for luqa airport?", "context": "CREATE TABLE table_name_66 (icao VARCHAR, airport VARCHAR)"}, {"answer": "SELECT airport FROM table_name_30 WHERE city = \"new york\"", "question": "What is the Airport for New York City?", "context": "CREATE TABLE table_name_30 (airport VARCHAR, city VARCHAR)"}, {"answer": "SELECT country FROM table_name_94 WHERE iata = \"osl\"", "question": "What is the Country when the IATA was osl?", "context": "CREATE TABLE table_name_94 (country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT division FROM table_name_76 WHERE year > 1996 AND regular_season = \"4th\" AND playoffs = \"final\"", "question": "Which Division has a Year larger than 1996,a Regular Season of 4th, and a Playoffs of final?", "context": "CREATE TABLE table_name_76 (division VARCHAR, playoffs VARCHAR, year VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT league FROM table_name_99 WHERE open_cup = \"1st round\" AND year = 2009", "question": "Which League that has a Open Cup of 1st round, and a Year of 2009?", "context": "CREATE TABLE table_name_99 (league VARCHAR, open_cup VARCHAR, year VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_50 WHERE division = \"2\" AND regular_season = \"4th, southeast\"", "question": "Which Playoffs has a Division of 2 and a Regular Season of 4th, southeast?", "context": "CREATE TABLE table_name_50 (playoffs VARCHAR, division VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_6 WHERE points_for > 438 AND points_against > 943", "question": "What are the least amount of points that have points for greater than 438, and points against greater than 943?", "context": "CREATE TABLE table_name_6 (points INTEGER, points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT MAX(loses) FROM table_name_93 WHERE points_against < 956 AND club = \"high park demons\" AND points < 16", "question": "What are the highest losses that have points agaisnt less than 956, high park demons as the club, and points less than 16?", "context": "CREATE TABLE table_name_93 (loses INTEGER, points VARCHAR, points_against VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_83 WHERE loses > 1 AND wins = 4 AND points_against < 894", "question": "What club has losses greater than 1, 4 for the wins, with points against less than 894?", "context": "CREATE TABLE table_name_83 (club VARCHAR, points_against VARCHAR, loses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(loses) FROM table_name_45 WHERE points_against > 592 AND club = \"high park demons\" AND points_for > 631", "question": "How many losses have points against greater than 592, with high park demons as the club, and points for greater than 631?", "context": "CREATE TABLE table_name_45 (loses VARCHAR, points_for VARCHAR, points_against VARCHAR, club VARCHAR)"}, {"answer": "SELECT loses FROM table_name_84 WHERE points_for < 1175 AND wins > 2 AND points_against > 894 AND points = 24", "question": "What losses have points for less than 1175, wins greater than 2, points against greater than 894, and 24 as the points?", "context": "CREATE TABLE table_name_84 (loses VARCHAR, points VARCHAR, points_against VARCHAR, points_for VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(track) FROM table_name_37 WHERE writer_s_ = \"dennis linde\" AND time = \"2:50\"", "question": "What's the smallest track written by dennis linde that's 2:50 minutes long", "context": "CREATE TABLE table_name_37 (track INTEGER, writer_s_ VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_54 WHERE song_title = \"burning love\"", "question": "How long is the song titled burning love?", "context": "CREATE TABLE table_name_54 (time VARCHAR, song_title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_34 WHERE song_title = \"if you talk in your sleep\"", "question": "When was the song titled if you talk in your sleep released?", "context": "CREATE TABLE table_name_34 (release_date VARCHAR, song_title VARCHAR)"}, {"answer": "SELECT city FROM table_name_46 WHERE state = \"california\" AND year > 2009", "question": "What is the city that is located in California when the year is greater than 2009?", "context": "CREATE TABLE table_name_46 (city VARCHAR, state VARCHAR, year VARCHAR)"}, {"answer": "SELECT host FROM table_name_12 WHERE year > 1989 AND state = \"california\" AND venue = \"staples center\"", "question": "What is the host in a year greater than 1989 and when the venue is the Staples Center located in California?", "context": "CREATE TABLE table_name_12 (host VARCHAR, venue VARCHAR, year VARCHAR, state VARCHAR)"}, {"answer": "SELECT venue FROM table_name_5 WHERE state = \"california\" AND year = 2011", "question": "What is the venue in 2011, when the state is California?", "context": "CREATE TABLE table_name_5 (venue VARCHAR, state VARCHAR, year VARCHAR)"}, {"answer": "SELECT wards__branches_in_arkansas FROM table_name_89 WHERE stake = \"fort smith arkansas\"", "question": "What is the wards/branches of the fort smith Arkansas stake?", "context": "CREATE TABLE table_name_89 (wards__branches_in_arkansas VARCHAR, stake VARCHAR)"}, {"answer": "SELECT stake FROM table_name_98 WHERE occupation = \"realtor for american equity realty\"", "question": "What stake has realtor for American equity realty as their occupation?", "context": "CREATE TABLE table_name_98 (stake VARCHAR, occupation VARCHAR)"}, {"answer": "SELECT organized FROM table_name_67 WHERE occupation = \"senior buyer for wal-mart\"", "question": "What is the organized date of the stake with an occupation of senior buyer for Wal-mart?", "context": "CREATE TABLE table_name_67 (organized VARCHAR, occupation VARCHAR)"}, {"answer": "SELECT SUM(wards__branches_in_arkansas) FROM table_name_93 WHERE stake = \"north little rock arkansas\"", "question": "What is the sum of the wards/branches in Arkansas of the North Little Rock Arkansas stake?", "context": "CREATE TABLE table_name_93 (wards__branches_in_arkansas INTEGER, stake VARCHAR)"}, {"answer": "SELECT stake FROM table_name_97 WHERE wards__branches_in_arkansas = 16", "question": "What stake has 16 wards/branches in Arkansas?", "context": "CREATE TABLE table_name_97 (stake VARCHAR, wards__branches_in_arkansas VARCHAR)"}, {"answer": "SELECT stable FROM table_name_59 WHERE current_rank = \"f1 j\u016bry\u014d 14 west\"", "question": "What is Stable, when Current Rank is F1 J\u016bry\u014d 14 West?", "context": "CREATE TABLE table_name_59 (stable VARCHAR, current_rank VARCHAR)"}, {"answer": "SELECT ring_name FROM table_name_48 WHERE current_rank = \"e0 maegashira 9 west\"", "question": "What is Ring Name, when Current Rank is E0 Maegashira 9 West?", "context": "CREATE TABLE table_name_48 (ring_name VARCHAR, current_rank VARCHAR)"}, {"answer": "SELECT birthplace FROM table_name_70 WHERE ring_name = \"masunoyama tomoharu\"", "question": "What is Birthplace, when Ring Name is Masunoyama Tomoharu?", "context": "CREATE TABLE table_name_70 (birthplace VARCHAR, ring_name VARCHAR)"}, {"answer": "SELECT current_rank FROM table_name_4 WHERE ring_name = \"tamaasuka daisuke\"", "question": "What is Current Rank, when Ring Name is Tamaasuka Daisuke?", "context": "CREATE TABLE table_name_4 (current_rank VARCHAR, ring_name VARCHAR)"}, {"answer": "SELECT ring_name FROM table_name_49 WHERE stable = \"kasugano\" AND birthplace = \"z mtskheta , georgia\"", "question": "What is Ring Name, when Stable is Kasugano, and when Birthplace is Z Mtskheta , Georgia?", "context": "CREATE TABLE table_name_49 (ring_name VARCHAR, stable VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT current_rank FROM table_name_63 WHERE ring_name = \"kimurayama mamoru\"", "question": "What is Current Rank, when Ring Name is Kimurayama Mamoru?", "context": "CREATE TABLE table_name_63 (current_rank VARCHAR, ring_name VARCHAR)"}, {"answer": "SELECT interview_subject FROM table_name_89 WHERE pictorials = \"christie brinkley\"", "question": "Who was the Interview Subject on the Date when there were Pictorials of Christie Brinkley?", "context": "CREATE TABLE table_name_89 (interview_subject VARCHAR, pictorials VARCHAR)"}, {"answer": "SELECT pictorials FROM table_name_84 WHERE interview_subject = \"jesse jackson\"", "question": "In the issue in which the Interview subject was Jesse Jackson, who were there Pictorials of?", "context": "CREATE TABLE table_name_84 (pictorials VARCHAR, interview_subject VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_name_68 WHERE interview_subject = \"paul simon\"", "question": "Who was the Centerfold model in the issue in which the Interview subject was Paul Simon?", "context": "CREATE TABLE table_name_68 (centerfold_model VARCHAR, interview_subject VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_name_96 WHERE interview_subject = \"jos\u00e9 napole\u00f3n duarte\"", "question": "Who was the Centerfold model in the issue in which the Interview subject was Jos\u00e9 Napole\u00f3n Duarte?", "context": "CREATE TABLE table_name_96 (centerfold_model VARCHAR, interview_subject VARCHAR)"}, {"answer": "SELECT cover_model FROM table_name_67 WHERE interview_subject = \"joan collins\"", "question": "Who was the Cover model in the issue in which the Interview subject was Joan Collins?", "context": "CREATE TABLE table_name_67 (cover_model VARCHAR, interview_subject VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE round > 9", "question": "Which date has a round more than 9?", "context": "CREATE TABLE table_name_85 (date VARCHAR, round INTEGER)"}, {"answer": "SELECT winning_driver FROM table_name_76 WHERE winning_team = \"tpc team qi-meritus\" AND round > 8", "question": "Who is the driver that one for the winning tpc team qi-meritus that has a round more than 8?", "context": "CREATE TABLE table_name_76 (winning_driver VARCHAR, winning_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT time FROM table_name_81 WHERE record = \"start\" AND date = \"12 december 2009\"", "question": "What is the time of 12 December 2009 with record start?", "context": "CREATE TABLE table_name_81 (time VARCHAR, record VARCHAR, date VARCHAR)"}, {"answer": "SELECT nation FROM table_name_70 WHERE athlete_s_ = \"elizabeth yarnold\"", "question": "What is Elizabeth Yarnold's nation?", "context": "CREATE TABLE table_name_70 (nation VARCHAR, athlete_s_ VARCHAR)"}, {"answer": "SELECT location FROM table_name_59 WHERE unit = \"jiufotang formation\"", "question": "What country is the Jiufotang Formation located in?", "context": "CREATE TABLE table_name_59 (location VARCHAR, unit VARCHAR)"}, {"answer": "SELECT authors FROM table_name_73 WHERE location = \"mexico\"", "question": "Which author is located in Mexico?", "context": "CREATE TABLE table_name_73 (authors VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_3 WHERE authors = \"wang li duan cheng\"", "question": "Where is wang li duan cheng located?", "context": "CREATE TABLE table_name_3 (location VARCHAR, authors VARCHAR)"}, {"answer": "SELECT status FROM table_name_40 WHERE name = \"cathayopterus\"", "question": "What is the status of the pterosaur named Cathayopterus?", "context": "CREATE TABLE table_name_40 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_74 WHERE school_club_team = \"texas tech\"", "question": "Which Years in Orlando has a School/Club Team of texas tech?", "context": "CREATE TABLE table_name_74 (years_in_orlando VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_57 WHERE player = \"keith bogans\" AND years_in_orlando = \"2006\u20132009\"", "question": "Which Nationality has a Player of keith bogans, and a Years in Orlando of 2006\u20132009?", "context": "CREATE TABLE table_name_57 (nationality VARCHAR, player VARCHAR, years_in_orlando VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_34 WHERE player = \"pat burke\"", "question": "What is Pat Burke's Nationality?", "context": "CREATE TABLE table_name_34 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_36 WHERE player = \"michael bradley\"", "question": "Which School/Club Team has a Player of michael bradley?", "context": "CREATE TABLE table_name_36 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_96 WHERE school_club_team = \"kentucky\"", "question": "Which Years in Orlando has a School/Club Team of kentucky?", "context": "CREATE TABLE table_name_96 (years_in_orlando VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_16 WHERE player = \"jud buechler\"", "question": "Which School/Club Team has a Player of jud buechler?", "context": "CREATE TABLE table_name_16 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT pos FROM table_name_2 WHERE year < 1999", "question": "What is the position for years under 1999?", "context": "CREATE TABLE table_name_2 (pos VARCHAR, year INTEGER)"}, {"answer": "SELECT AVG(year) FROM table_name_46 WHERE team = \"team oreca\"", "question": "What is the average year for Team Oreca?", "context": "CREATE TABLE table_name_46 (year INTEGER, team VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_50 WHERE against > 17 AND team = \"juventus\" AND drawn < 4", "question": "Which Position has an Against larger than 17, and a Team of juventus, and a Drawn smaller than 4?", "context": "CREATE TABLE table_name_50 (position INTEGER, drawn VARCHAR, against VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_63 WHERE against = 49 AND played < 20", "question": "Which Lost has an Against of 49 and a Played smaller than 20?", "context": "CREATE TABLE table_name_63 (lost VARCHAR, against VARCHAR, played VARCHAR)"}, {"answer": "SELECT championship FROM table_name_69 WHERE previous_champion_s_ = \"defeated justin corino in tournament final\"", "question": "In which championship had a previous champion of \"defeated Justin Corino in tournament final\"?", "context": "CREATE TABLE table_name_69 (championship VARCHAR, previous_champion_s_ VARCHAR)"}, {"answer": "SELECT location FROM table_name_93 WHERE previous_champion_s_ = \"mike webb and nick fahrenheit\"", "question": "Which location had previous champions of Mike Webb and Nick Fahrenheit?", "context": "CREATE TABLE table_name_93 (location VARCHAR, previous_champion_s_ VARCHAR)"}, {"answer": "SELECT previous_champion_s_ FROM table_name_40 WHERE date_won = \"may 1, 2010\"", "question": "Who were the previous champions from the event won on May 1, 2010?", "context": "CREATE TABLE table_name_40 (previous_champion_s_ VARCHAR, date_won VARCHAR)"}, {"answer": "SELECT current_champion_s_ FROM table_name_19 WHERE location = \"beverly, ma\" AND previous_champion_s_ = \"mike webb and nick fahrenheit\"", "question": "Who is the current champion for the event in Beverly, MA, with previous champions of Mike Webb and Nick Fahrenheit?", "context": "CREATE TABLE table_name_19 (current_champion_s_ VARCHAR, location VARCHAR, previous_champion_s_ VARCHAR)"}, {"answer": "SELECT current_champion_s_ FROM table_name_44 WHERE championship = \"necw heavyweight champion\"", "question": "Who is the current champion in the NECW Heavyweight Championship?", "context": "CREATE TABLE table_name_44 (current_champion_s_ VARCHAR, championship VARCHAR)"}, {"answer": "SELECT location FROM table_name_65 WHERE championship = \"iron 8 championship tournament\"", "question": "Which location held the Iron 8 Championship tournament?", "context": "CREATE TABLE table_name_65 (location VARCHAR, championship VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_4 WHERE volts = \"3500v\"", "question": "What is the capacity of 3500v volts?", "context": "CREATE TABLE table_name_4 (capacity VARCHAR, volts VARCHAR)"}, {"answer": "SELECT volts FROM table_name_44 WHERE energy_to_weight_ratio = \"54 kj/kg to 2.0v\"", "question": "How many volts has an energy-to-weight ratio of 54 kj/kg to 2.0v?", "context": "CREATE TABLE table_name_44 (volts VARCHAR, energy_to_weight_ratio VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_11 WHERE volts = \"2.7v\" AND power_to_weight_ratio = \"5.44 w/kg c/1 (1.875a)\"", "question": "What is the capacity with 2.7v volts and a power-to-weight ratio of 5.44 w/kg c/1 (1.875a)?", "context": "CREATE TABLE table_name_11 (capacity VARCHAR, volts VARCHAR, power_to_weight_ratio VARCHAR)"}, {"answer": "SELECT season FROM table_name_24 WHERE pos = 13 AND head_coach = \"protasov lyutyi talalayev balakhnin baidachny\"", "question": "Which season led to a position of 13, and a head coach of Protasov Lyutyi Talalayev Balakhnin Baidachny?", "context": "CREATE TABLE table_name_24 (season VARCHAR, pos VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_77 WHERE attendance = \"58,701\"", "question": "Which week had the highest attendance with 58,701?", "context": "CREATE TABLE table_name_77 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_50 WHERE opponent = \"san diego chargers\"", "question": "What was the score of the game against the San Diego Chargers?", "context": "CREATE TABLE table_name_50 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE week < 4 AND attendance = \"44,851\"", "question": "When was the attendance less than 44,851 during the first 4 weeks of the season?", "context": "CREATE TABLE table_name_90 (date VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_11 WHERE week = 13", "question": "On week 13 what was the score of the game?", "context": "CREATE TABLE table_name_11 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_87 WHERE attendance = \"58,025\"", "question": "What week had 58,025 in attendance?", "context": "CREATE TABLE table_name_87 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE attendance = \"58,025\"", "question": "When was the game that had 58,025 people in attendance?", "context": "CREATE TABLE table_name_26 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_58 WHERE played < 11 AND points > 7 AND team = \"mackenzie\"", "question": "What is the lowest number of Drawn games for Team Mackenzie where the Played is less and 11 and the Points are greater than 7?", "context": "CREATE TABLE table_name_58 (drawn INTEGER, team VARCHAR, played VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_95 WHERE drawn < 2 AND team = \"paulistano\" AND against < 15", "question": "What number of Points are shown for Team Paulistano where the Drawn is less than 2 and the Against is less than 15?", "context": "CREATE TABLE table_name_95 (points VARCHAR, against VARCHAR, drawn VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_71 WHERE played > 10 AND team = \"ypiranga-sp\" AND against > 50", "question": "What is the Lowest lost for Team Ypiranga-SP where the games Played is more than 10 and the goals Against is greater than 50?", "context": "CREATE TABLE table_name_71 (lost INTEGER, against VARCHAR, played VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_13 WHERE position < 2 AND drawn < 4", "question": "What is the highest number of Played games with a Position smaller than 2 and Drawn games less than 4?", "context": "CREATE TABLE table_name_13 (played INTEGER, position VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(runner_up) FROM table_name_62 WHERE university = \"national university\" AND total_championships > 2", "question": "What is the average number of runner-up that National University, which has more than 2 total championships, has?", "context": "CREATE TABLE table_name_62 (runner_up INTEGER, university VARCHAR, total_championships VARCHAR)"}, {"answer": "SELECT progressive_ticket FROM table_name_28 WHERE democratic_ticket = \"john t. norton\"", "question": "Who was on the Progressive ticket when John T. Norton was on the Democratic ticket?", "context": "CREATE TABLE table_name_28 (progressive_ticket VARCHAR, democratic_ticket VARCHAR)"}, {"answer": "SELECT socialist_ticket FROM table_name_92 WHERE democratic_ticket = \"thomas j. kreuzer\"", "question": "What name is under the Socialist ticket when Thomas J. Kreuzer was on the Democratic ticket?", "context": "CREATE TABLE table_name_92 (socialist_ticket VARCHAR, democratic_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_49 WHERE progressive_ticket = \"frank h. hiscock\"", "question": "Who ran under the Republican ticket when Frank H. Hiscock ran under the Progressive ticket?", "context": "CREATE TABLE table_name_49 (republican_ticket VARCHAR, progressive_ticket VARCHAR)"}, {"answer": "SELECT prohibition_ticket FROM table_name_14 WHERE progressive_ticket = \"eugene m. travis\"", "question": "What name ran for the Prohibition ticket when the Progressive ticket was Eugene M. Travis?", "context": "CREATE TABLE table_name_14 (prohibition_ticket VARCHAR, progressive_ticket VARCHAR)"}, {"answer": "SELECT independence_league_ticket FROM table_name_93 WHERE prohibition_ticket = \"coleridge a. hart\"", "question": "When Coleridge A. Hart ran under the Prohibition ticket who ran under the Independence League ticket?", "context": "CREATE TABLE table_name_93 (independence_league_ticket VARCHAR, prohibition_ticket VARCHAR)"}, {"answer": "SELECT progressive_ticket FROM table_name_63 WHERE republican_ticket = \"frank m. williams\"", "question": "With the Republican ticket of Frank M. Williams who was the Progressive ticket?", "context": "CREATE TABLE table_name_63 (progressive_ticket VARCHAR, republican_ticket VARCHAR)"}, {"answer": "SELECT prohibition_ticket FROM table_name_91 WHERE office = \"lieutenant governor\"", "question": "What kind of Prohibition ticket that has a Office of lieutenant governor?", "context": "CREATE TABLE table_name_91 (prohibition_ticket VARCHAR, office VARCHAR)"}, {"answer": "SELECT socialist_labor_ticket FROM table_name_78 WHERE office = \"secretary of state\"", "question": "Which Socialist Labor ticket has a Office of secretary of state?", "context": "CREATE TABLE table_name_78 (socialist_labor_ticket VARCHAR, office VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_27 WHERE prohibition_ticket = \"stephen mead wing\"", "question": "What kind of Republican ticket has a Prohibition ticket of stephen mead wing?", "context": "CREATE TABLE table_name_27 (republican_ticket VARCHAR, prohibition_ticket VARCHAR)"}, {"answer": "SELECT democratic_ticket FROM table_name_14 WHERE office = \"comptroller\"", "question": "What is the kind of Democratic ticket has a Office of comptroller?", "context": "CREATE TABLE table_name_14 (democratic_ticket VARCHAR, office VARCHAR)"}, {"answer": "SELECT prohibition_ticket FROM table_name_34 WHERE socialist_labor_ticket = \"joseph smith\"", "question": "Which Prohibition ticket has a Socialist Labor ticket of joseph smith?", "context": "CREATE TABLE table_name_34 (prohibition_ticket VARCHAR, socialist_labor_ticket VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_46 WHERE rider = \"colin edwards\"", "question": "What is the lowest grid number when Colin Edwards is the rider?", "context": "CREATE TABLE table_name_46 (grid INTEGER, rider VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_67 WHERE laps < 22 AND manufacturer = \"honda\"", "question": "What is the time/retired when there are less than 22 laps and honda is the manufacturer?", "context": "CREATE TABLE table_name_67 (time_retired VARCHAR, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_48 WHERE grid = 9", "question": "What is the average number of laps when the grid number is 9?", "context": "CREATE TABLE table_name_48 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_27 WHERE manufacturer = \"honda\" AND grid = 12", "question": "What is the highest number of laps when honda is the manufacturer and the grid number is 12?", "context": "CREATE TABLE table_name_27 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_28 WHERE grid = 3", "question": "Who is the rider when the grid number is 3?", "context": "CREATE TABLE table_name_28 (rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_93 WHERE time_retired = \"+44.284\"", "question": "How many laps were driven when the time/retired is +44.284?", "context": "CREATE TABLE table_name_93 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT value FROM table_name_52 WHERE composition = \"cupronickel\" AND weight = \"10.5 g\"", "question": "What is the value of the coin weighing 10.5 g and made of cupronickel?", "context": "CREATE TABLE table_name_52 (value VARCHAR, composition VARCHAR, weight VARCHAR)"}, {"answer": "SELECT composition FROM table_name_67 WHERE \u20ac_equiv = \"0.30\"", "question": "What is the coin with a \u20ac equivalency of 0.30 made of?", "context": "CREATE TABLE table_name_67 (composition VARCHAR, \u20ac_equiv VARCHAR)"}, {"answer": "SELECT composition FROM table_name_33 WHERE weight = \"3 g\"", "question": "What is the coin that weighs 3 g made of?", "context": "CREATE TABLE table_name_33 (composition VARCHAR, weight VARCHAR)"}, {"answer": "SELECT diameter FROM table_name_80 WHERE \u20ac_equiv = \"0.60\"", "question": "What is the diameter of the coin with a \u20ac equivalence of 0.60?", "context": "CREATE TABLE table_name_80 (diameter VARCHAR, \u20ac_equiv VARCHAR)"}, {"answer": "SELECT weight FROM table_name_52 WHERE diameter = \"14mm\"", "question": "How much does the coin with a 14mm diameter weigh?", "context": "CREATE TABLE table_name_52 (weight VARCHAR, diameter VARCHAR)"}, {"answer": "SELECT coverage FROM table_name_5 WHERE frequency = \"99.5mhz\"", "question": "What is the coverage for the 99.5mhz frequency?", "context": "CREATE TABLE table_name_5 (coverage VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_name_63 WHERE coverage = \"general santos\"", "question": "What is the power in kW corresponding to the station that covers General Santos?", "context": "CREATE TABLE table_name_63 (power__kw_ VARCHAR, coverage VARCHAR)"}, {"answer": "SELECT branding FROM table_name_45 WHERE frequency = \"93.1mhz\" AND coverage = \"zamboanga\"", "question": "What is the branding for the station with a frequency of 93.1mhz and a coverage of Zamboanga?", "context": "CREATE TABLE table_name_45 (branding VARCHAR, frequency VARCHAR, coverage VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_25 WHERE power__kw_ = \"10kw\" AND callsign = \"dxez\"", "question": "What is the frequency for the 10kw station with DXEZ as its callsign?", "context": "CREATE TABLE table_name_25 (frequency VARCHAR, power__kw_ VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_53 WHERE callsign = \"dybt\"", "question": "What is the frequency for the station with DYBT as its callsign?", "context": "CREATE TABLE table_name_53 (frequency VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT branding FROM table_name_23 WHERE frequency = \"93.1mhz\" AND callsign = \"dwrx\"", "question": "What is the branding for the station with a frequency of 93.1mhz and a callsign of DWRX?", "context": "CREATE TABLE table_name_23 (branding VARCHAR, frequency VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT MIN(total_passengers) FROM table_name_75 WHERE location = \"salvador\" AND rank > 5", "question": "Can you tell me the lowest Total Passengers than has the Location of salvador, and the Rank larger than 5?", "context": "CREATE TABLE table_name_75 (total_passengers INTEGER, location VARCHAR, rank VARCHAR)"}, {"answer": "SELECT annual_change FROM table_name_48 WHERE location = \"manaus\"", "question": "Can you tell me the Annual change that has the Location of manaus?", "context": "CREATE TABLE table_name_48 (annual_change VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_50 WHERE tournaments_played > 2 AND year = 2011", "question": "What is the average number of cuts made when there were more than 2 tournaments played in 2011?", "context": "CREATE TABLE table_name_50 (cuts_made INTEGER, tournaments_played VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_52 WHERE cuts_made = 10 AND scoring_average < 74.09", "question": "What is the total number of wins with 10 cuts made and a score average under 74.09?", "context": "CREATE TABLE table_name_52 (wins VARCHAR, cuts_made VARCHAR, scoring_average VARCHAR)"}, {"answer": "SELECT shot_pct FROM table_name_96 WHERE skip = \"madeleine dupont\"", "question": "What is Madeleine Dupont's shot pct.?", "context": "CREATE TABLE table_name_96 (shot_pct VARCHAR, skip VARCHAR)"}, {"answer": "SELECT score FROM table_name_41 WHERE high_assists = \"rafer alston (8)\"", "question": "Can you tell me the Score that has the High assists of rafer alston (8)?", "context": "CREATE TABLE table_name_41 (score VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_17 WHERE high_rebounds = \"rafer alston (9)\"", "question": "Can you tell me the High points that has the High rebounds of rafer alston (9)?", "context": "CREATE TABLE table_name_17 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_name_22 WHERE date = \"april 8\"", "question": "Can you tell me the Score that has the Date of april 8?", "context": "CREATE TABLE table_name_22 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_87 WHERE game_site = \"arrowhead stadium\"", "question": "What's the highest attendance for a game the Texan's played at Arrowhead Stadium?", "context": "CREATE TABLE table_name_87 (attendance INTEGER, game_site VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_37 WHERE week = \"4\"", "question": "Who did the Texan's play on Week 4?", "context": "CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE week = \"hof\"", "question": "What's the date for HOF week?", "context": "CREATE TABLE table_name_63 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT total FROM table_name_77 WHERE fa_cup = \"1 0 (3)\"", "question": "What is Total, when FA Cup is 1 0 (3)?", "context": "CREATE TABLE table_name_77 (total VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT MIN(delegates) FROM table_name_75 WHERE candidate = \"john mccain\" AND counties < 45", "question": "What is the lowest number of delegates when John McCain was the candidate with less than 45 candidates?", "context": "CREATE TABLE table_name_75 (delegates INTEGER, candidate VARCHAR, counties VARCHAR)"}, {"answer": "SELECT MAX(counties) FROM table_name_62 WHERE candidate = \"mitt romney\" AND delegates < 0", "question": "What is the highest Counties when Mitt Romney was the candidate with less than 0 delegates?", "context": "CREATE TABLE table_name_62 (counties INTEGER, candidate VARCHAR, delegates VARCHAR)"}, {"answer": "SELECT COUNT(votes) FROM table_name_28 WHERE candidate = \"ron paul\" AND counties < 0", "question": "What is the number of votes when Ron Paul is the candidate with less than 0 counties?", "context": "CREATE TABLE table_name_28 (votes VARCHAR, candidate VARCHAR, counties VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_48 WHERE UEfa_cup = 4", "question": "What is the sum of totals associated with a UEFA Cup score of 4?", "context": "CREATE TABLE table_name_48 (total INTEGER, UEfa_cup VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_3 WHERE fa_cup < 0", "question": "What is the sum of totals for FA Cup values of 0?", "context": "CREATE TABLE table_name_3 (total INTEGER, fa_cup INTEGER)"}, {"answer": "SELECT hometown__previous_school_ FROM table_name_72 WHERE name = \"tim williams\"", "question": "What is the Hometown of Tim Williams?", "context": "CREATE TABLE table_name_72 (hometown__previous_school_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE rating > 2746 AND prev < 4 AND chng = \"+4\"", "question": "What player has a rating greater than 2746, with a prev less than 4, and +4 as the chng?", "context": "CREATE TABLE table_name_83 (player VARCHAR, chng VARCHAR, rating VARCHAR, prev VARCHAR)"}, {"answer": "SELECT chng FROM table_name_55 WHERE rank > 6 AND prev = 12", "question": "What chng has a rank greater than 6, with 12 as a prev?", "context": "CREATE TABLE table_name_55 (chng VARCHAR, rank VARCHAR, prev VARCHAR)"}, {"answer": "SELECT MAX(prev) FROM table_name_4 WHERE rank = 9 AND rating < 2746", "question": "What is the highest prev that has 9 as the rank, with a rating less than 2746?", "context": "CREATE TABLE table_name_4 (prev INTEGER, rank VARCHAR, rating VARCHAR)"}, {"answer": "SELECT SUM(block) FROM table_name_16 WHERE weight > 82 AND height < 199", "question": "How many blocks have a weight greater than 82, and a height less than 199?", "context": "CREATE TABLE table_name_16 (block INTEGER, weight VARCHAR, height VARCHAR)"}, {"answer": "SELECT MIN(block) FROM table_name_20 WHERE spike = 328 AND height < 186", "question": "What is the lowest block that has 328 as the spike, and a height less than 186?", "context": "CREATE TABLE table_name_20 (block INTEGER, spike VARCHAR, height VARCHAR)"}, {"answer": "SELECT MIN(block) FROM table_name_5 WHERE height < 202 AND date_of_birth = \"19.06.1980\" AND weight > 76", "question": "What is the lowest block that has a height less than 202, 19.06.1980 as the date of birth, and a weight greater than 76?", "context": "CREATE TABLE table_name_5 (block INTEGER, weight VARCHAR, height VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT MAX(block) FROM table_name_76 WHERE date_of_birth = \"15.09.1981\" AND height > 202", "question": "What is the highest block that has 15.09.1981 as the date, and a height greater than 202?", "context": "CREATE TABLE table_name_76 (block INTEGER, date_of_birth VARCHAR, height VARCHAR)"}, {"answer": "SELECT city FROM table_name_96 WHERE stadium = \"estadio san crist\u00f3bal\"", "question": "Which City has a Stadium of estadio san crist\u00f3bal?", "context": "CREATE TABLE table_name_96 (city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT 2009 AS _season FROM table_name_17 WHERE group = \"group b\" AND stadium = \"cancha del mystic\" AND club = \"el tecal\"", "question": "When in 2009 season has a Group of group b, and cancha del mystic with a Club of el tecal?", "context": "CREATE TABLE table_name_17 (club VARCHAR, group VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT club FROM table_name_93 WHERE city = \"col\u00f3n\"", "question": "WHich Club has a City of col\u00f3n?", "context": "CREATE TABLE table_name_93 (club VARCHAR, city VARCHAR)"}, {"answer": "SELECT 2009 AS _season FROM table_name_21 WHERE city = \"panama city\" AND group = \"group b\"", "question": "WHat kind of 2009 season has a City of panama city, and a Group of group b?", "context": "CREATE TABLE table_name_21 (city VARCHAR, group VARCHAR)"}, {"answer": "SELECT city FROM table_name_38 WHERE club = \"suntracs f.c.\"", "question": "Which City has a Club of suntracs f.c.?", "context": "CREATE TABLE table_name_38 (city VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_name_5 WHERE prize_money = \"\u00a35,000\"", "question": "What is the highest Matches, when Prize Money is \u00a35,000?", "context": "CREATE TABLE table_name_5 (matches INTEGER, prize_money VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE matches < 32 AND round = \"fifth round proper\"", "question": "What is Date, when Matches is less than 32, and when Round is Fifth Round Proper?", "context": "CREATE TABLE table_name_55 (date VARCHAR, matches VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(matches) FROM table_name_81 WHERE round = \"third qualifying round\"", "question": "What is the average Matches, when Round is Third Qualifying Round?", "context": "CREATE TABLE table_name_81 (matches INTEGER, round VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_16 WHERE clubs = \"588 \u2192 406\"", "question": "What is the total number of Matches, when Clubs is 588 \u2192 406?", "context": "CREATE TABLE table_name_16 (matches VARCHAR, clubs VARCHAR)"}, {"answer": "SELECT prize_money FROM table_name_79 WHERE matches < 73 AND round = \"third round proper\"", "question": "What is Prize Money, when Matches is less than 73, and when Round is Third Round Proper?", "context": "CREATE TABLE table_name_79 (prize_money VARCHAR, matches VARCHAR, round VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_69 WHERE surface = \"hard\" AND score = \"walkover\"", "question": "For the tournament played on a hard surface and ending with a score of Walkover, who was the Finals opponent?", "context": "CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_15 WHERE date = \"september 25, 1995\"", "question": "For the tournament played on September 25, 1995, who was the Finals opponent?", "context": "CREATE TABLE table_name_15 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_46 WHERE date = \"september 25, 1995\"", "question": "Which tournament was played on September 25, 1995?", "context": "CREATE TABLE table_name_46 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT time FROM table_name_71 WHERE round < 3 AND opponent = \"amanda lavoy\"", "question": "What was the time for the bout against Amanda Lavoy, which went under 3 rounds?", "context": "CREATE TABLE table_name_71 (time VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT notes FROM table_name_89 WHERE app_l_c_e_ = \"13 (7/2/4)\"", "question": "What is Notes, when App(L/C/E) is 13 (7/2/4)?", "context": "CREATE TABLE table_name_89 (notes VARCHAR, app_l_c_e_ VARCHAR)"}, {"answer": "SELECT nat FROM table_name_92 WHERE ends > 2010 AND since = 2006 AND name = \"paligeorgos\"", "question": "What is Nat., when Ends is greater than 2010, when Since is 2006, and when Name is Paligeorgos?", "context": "CREATE TABLE table_name_92 (nat VARCHAR, name VARCHAR, ends VARCHAR, since VARCHAR)"}, {"answer": "SELECT MIN(since) FROM table_name_88 WHERE notes = \"to anagennisi karditsa\" AND app_l_c_e_ = \"0 (0/0/0)\"", "question": "What is the lowest Since, when Notes is To Anagennisi Karditsa, and when App(L/C/E) is 0 (0/0/0)?", "context": "CREATE TABLE table_name_88 (since INTEGER, notes VARCHAR, app_l_c_e_ VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_28 WHERE laps < 51 AND team = \"newman-haas racing\"", "question": "What is the Time/Retired of the Newman-Haas Racing team in under 51 laps?", "context": "CREATE TABLE table_name_28 (time_retired VARCHAR, laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_79 WHERE team = \"forsythe racing\" AND driver = \"alex tagliani\"", "question": "What are the lowest laps Alex Tagliani did for the Forsythe Racing team?", "context": "CREATE TABLE table_name_79 (laps INTEGER, team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT 2010 AS _11 FROM table_name_75 WHERE event = \"colonial square ladies classic\"", "question": "What is the 2010\u201311 when the Event is colonial square ladies classic?", "context": "CREATE TABLE table_name_75 (event VARCHAR)"}, {"answer": "SELECT 2007 AS _08 FROM table_name_32 WHERE event = \"autumn gold\"", "question": "What is the 2007\u201308 when the event was autumn gold?", "context": "CREATE TABLE table_name_32 (event VARCHAR)"}, {"answer": "SELECT COUNT(cultural_and_educational_panel) FROM table_name_9 WHERE labour_panel > 5 AND industrial_and_commercial_panel > 9", "question": "Which Cultural and Educational Panel has a Labour Panel larger than 5, and an Industrial and Commercial Panel larger than 9?", "context": "CREATE TABLE table_name_9 (cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, industrial_and_commercial_panel VARCHAR)"}, {"answer": "SELECT MIN(administrative_panel) FROM table_name_52 WHERE nominated_by_the_taoiseach < 0", "question": "Which Administrative Panel has a Nominated by the Taoiseach smaller than 0?", "context": "CREATE TABLE table_name_52 (administrative_panel INTEGER, nominated_by_the_taoiseach INTEGER)"}, {"answer": "SELECT AVG(labour_panel) FROM table_name_46 WHERE industrial_and_commercial_panel = 9 AND university_of_dublin < 3", "question": "Which Labour Panel has an Industrial and Commercial Panel of 9, and a University of Dublin smaller than 3?", "context": "CREATE TABLE table_name_46 (labour_panel INTEGER, industrial_and_commercial_panel VARCHAR, university_of_dublin VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_55 WHERE labour_panel < 5 AND administrative_panel < 1 AND national_university_of_ireland < 2", "question": "Which Total has a Labour Panel smaller than 5, an Administrative Panel smaller than 1, and a National University of Ireland smaller than 2?", "context": "CREATE TABLE table_name_55 (total VARCHAR, national_university_of_ireland VARCHAR, labour_panel VARCHAR, administrative_panel VARCHAR)"}, {"answer": "SELECT SUM(agricultural_panel) FROM table_name_26 WHERE nominated_by_the_taoiseach > 6 AND total > 60", "question": "Which Agricultural Panel has a Nominated by the Taoiseach larger than 6, and a Total larger than 60?", "context": "CREATE TABLE table_name_26 (agricultural_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_77 WHERE team_2 = \"jac port-gentil\"", "question": "What is Team 1 when Team 2 is Jac Port-Gentil?", "context": "CREATE TABLE table_name_77 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_22 WHERE tournament = \"joburg open 1\" AND date = \"17 jan 2010\"", "question": "What is Winning Score, when Tournament is Joburg Open 1, and when Date is 17 Jan 2010?", "context": "CREATE TABLE table_name_22 (winning_score VARCHAR, tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE tournament = \"alfred dunhill championship 1\"", "question": "What is Date, when Tournament is Alfred Dunhill Championship 1?", "context": "CREATE TABLE table_name_87 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_30 WHERE margin_of_victory = \"6 strokes\"", "question": "What is Tournament, when Margin is Victory of 6 Strokes?", "context": "CREATE TABLE table_name_30 (tournament VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_45 WHERE date = \"17 jan 2010\"", "question": "What is Winning Score, when Date is 17 Jan 2010?", "context": "CREATE TABLE table_name_45 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_70 WHERE runner_s__up = \"garth mulroy\"", "question": "What is Tournament, when Runner(s)-Up is Garth Mulroy?", "context": "CREATE TABLE table_name_70 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_51 WHERE margin_of_victory = \"1 stroke\" AND tournament = \"joburg open 1\"", "question": "What is Runner(s)-Up, when Margin of Victory is 1 Stroke, and when Tournament is Joburg Open 1?", "context": "CREATE TABLE table_name_51 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_28 WHERE poles < 0", "question": "What is the points sum of the series with less than 0 poles?", "context": "CREATE TABLE table_name_28 (points INTEGER, poles INTEGER)"}, {"answer": "SELECT SUM(races) FROM table_name_40 WHERE podiums > 4 AND season = \"2007\"", "question": "What is the sum of the races in the 2007 season, which has more than 4 podiums?", "context": "CREATE TABLE table_name_40 (races INTEGER, podiums VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(poles) FROM table_name_13 WHERE team = \"la fili\u00e8re\" AND points < 162", "question": "What is the sum of the poles of Team la fili\u00e8re, which has less than 162 points?", "context": "CREATE TABLE table_name_13 (poles INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_11 WHERE wins < 1 AND season = \"2012\" AND podiums < 0", "question": "What is the average number of points in the 2012 season, which has less than 1 wins and less than 0 podiums?", "context": "CREATE TABLE table_name_11 (points INTEGER, podiums VARCHAR, wins VARCHAR, season VARCHAR)"}, {"answer": "SELECT pole FROM table_name_75 WHERE class = \"moto2\"", "question": "How many poles had a moto2 class?", "context": "CREATE TABLE table_name_75 (pole VARCHAR, class VARCHAR)"}, {"answer": "SELECT SUM(cultural_and_educational_panel) FROM table_name_3 WHERE administrative_panel > 1 AND agricultural_panel = 11 AND university_of_dublin < 3", "question": "What is the sum of the Cultural and Educational Panels that have an Administrative Panel greater than 1, an Agricultural Panel of 11 and a University of Dublin smaller than 3?", "context": "CREATE TABLE table_name_3 (cultural_and_educational_panel INTEGER, university_of_dublin VARCHAR, administrative_panel VARCHAR, agricultural_panel VARCHAR)"}, {"answer": "SELECT SUM(agricultural_panel) FROM table_name_46 WHERE industrial_and_commercial_panel < 0", "question": "What is the sum of Agricultural panels that have an Industrial and Commercial Panel smaller than 0?", "context": "CREATE TABLE table_name_46 (agricultural_panel INTEGER, industrial_and_commercial_panel INTEGER)"}, {"answer": "SELECT MIN(national_university_of_ireland) FROM table_name_49 WHERE cultural_and_educational_panel = 0 AND labour_panel < 1", "question": "What is the lowest number of National University of Ireland that has a Cultural and Educational Panel of 0, and a Labour Panel smaller than 1?", "context": "CREATE TABLE table_name_49 (national_university_of_ireland INTEGER, cultural_and_educational_panel VARCHAR, labour_panel VARCHAR)"}, {"answer": "SELECT COUNT(industrial_and_commercial_panel) FROM table_name_45 WHERE labour_panel > 1 AND nominated_by_the_taoiseach < 11 AND cultural_and_educational_panel < 0", "question": "What is the total of Industrial and Commercial Panels that have a Labour Panel greater than 1, a Nominated by the Taoiseach lesss than 11 and a Cultural and Educational Panel smaller than 0", "context": "CREATE TABLE table_name_45 (industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, nominated_by_the_taoiseach VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_91 WHERE minutes = 2428", "question": "What was the highest number of goals when 2428 minutes were played?", "context": "CREATE TABLE table_name_91 (goals INTEGER, minutes VARCHAR)"}, {"answer": "SELECT minutes FROM table_name_8 WHERE goals > 4 AND assists = 3", "question": "What is the number of minutes when there are more than 4 goals and 3 assists?", "context": "CREATE TABLE table_name_8 (minutes VARCHAR, goals VARCHAR, assists VARCHAR)"}, {"answer": "SELECT COUNT(assists) FROM table_name_21 WHERE position = \"striker\" AND goals < 4 AND player = \"edmundo rodriguez\" AND minutes < 473", "question": "What is the total number of assists when Edmundo Rodriguez is playing the position of striker, less than 4 goals were scored, and the minutes were less than 473?", "context": "CREATE TABLE table_name_21 (assists VARCHAR, minutes VARCHAR, player VARCHAR, position VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MIN(erp_w) FROM table_name_27 WHERE frequency_mhz = \"89.3 fm\"", "question": "What is the least ERP W when the freguency MHz is 89.3 fm?", "context": "CREATE TABLE table_name_27 (erp_w INTEGER, frequency_mhz VARCHAR)"}, {"answer": "SELECT AVG(erp_w) FROM table_name_76 WHERE call_sign = \"k216fo\"", "question": "Call sign k216fo has what average ERP W?", "context": "CREATE TABLE table_name_76 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_54 WHERE call_sign = \"k248am\"", "question": "What city does call sign K248am have its license in?", "context": "CREATE TABLE table_name_54 (city_of_license VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_13 WHERE erp_w > 197", "question": "What call sign has ERP W greater than 197?", "context": "CREATE TABLE table_name_13 (call_sign VARCHAR, erp_w INTEGER)"}, {"answer": "SELECT points FROM table_name_23 WHERE season > 2011 AND series = \"macau grand prix\"", "question": "How many points did Costa score in the Macau Grand Prix since 2011?", "context": "CREATE TABLE table_name_23 (points VARCHAR, season VARCHAR, series VARCHAR)"}, {"answer": "SELECT team FROM table_name_42 WHERE races = \"1\" AND position = \"1st\"", "question": "Which teams had the 1st position and entered 1 race?", "context": "CREATE TABLE table_name_42 (team VARCHAR, races VARCHAR, position VARCHAR)"}, {"answer": "SELECT points FROM table_name_90 WHERE wins = \"3\" AND team = \"carlin\"", "question": "How many points did Carlin have when they had 3 wins?", "context": "CREATE TABLE table_name_90 (points VARCHAR, wins VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_49 WHERE against < 43 AND position < 1", "question": "How many Points have an Against smaller than 43, and a Position smaller than 1?", "context": "CREATE TABLE table_name_49 (points INTEGER, against VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_70 WHERE position = 7 AND points > 18", "question": "How many Drawn have a Position of 7, and Points larger than 18?", "context": "CREATE TABLE table_name_70 (drawn VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_33 WHERE team = \"hespanha\" AND points < 30", "question": "How many Against have a Team of hespanha, and Points smaller than 30?", "context": "CREATE TABLE table_name_33 (against VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_74 WHERE drawn = 3 AND played < 22", "question": "Which Points is the average one that has Drawn of 3, and a Played smaller than 22?", "context": "CREATE TABLE table_name_74 (points INTEGER, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_63 WHERE against > 37 AND lost = 15 AND points < 11", "question": "How much Played has an Against larger than 37, and a Lost of 15, and Points smaller than 11?", "context": "CREATE TABLE table_name_63 (played INTEGER, points VARCHAR, against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT artist FROM table_name_94 WHERE spoofed_title = \"miscue 911\"", "question": "Which artist has the Spoofed title Miscue 911?", "context": "CREATE TABLE table_name_94 (artist VARCHAR, spoofed_title VARCHAR)"}, {"answer": "SELECT spoofed_title FROM table_name_47 WHERE date = \"february 1998\"", "question": "Which Spoofed title is from February 1998?", "context": "CREATE TABLE table_name_47 (spoofed_title VARCHAR, date VARCHAR)"}, {"answer": "SELECT artist FROM table_name_32 WHERE date = \"june 1992\"", "question": "Which artist has a Spoofed title in June 1992?", "context": "CREATE TABLE table_name_32 (artist VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_92 WHERE manufacturer = \"ktm\" AND time_retired = \"+56.440\" AND grid < 11", "question": "What was the average number of laps completed by KTM riders, with times of +56.440 and grid values under 11?", "context": "CREATE TABLE table_name_92 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_22 WHERE manufacturer = \"aprilia\" AND time_retired = \"+1.660\"", "question": "What was the highest grid value for riders with manufacturer of Aprilia and time of +1.660?", "context": "CREATE TABLE table_name_22 (grid INTEGER, manufacturer VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT round FROM table_name_98 WHERE time = \"5:00\" AND opponent = \"aleksander emelianenko\"", "question": "What Round against Aleksander Emelianenko had a time of 5:00?", "context": "CREATE TABLE table_name_98 (round VARCHAR, time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_18 WHERE home = \"irfu all-stars\" AND season = 1958", "question": "In 1958, what has the IRFU All-Stars Home Venue?", "context": "CREATE TABLE table_name_18 (venue VARCHAR, home VARCHAR, season VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE venue = \"exhibition stadium\"", "question": "On what Date was the Venue at Exhibition Stadium?", "context": "CREATE TABLE table_name_73 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_82 WHERE season < 1957 AND venue = \"varsity stadium\"", "question": "Before 1957, what was the largest in Attendance at Varsity Stadium?", "context": "CREATE TABLE table_name_82 (attendance INTEGER, season VARCHAR, venue VARCHAR)"}, {"answer": "SELECT time FROM table_name_81 WHERE score = \"65-19\"", "question": "What is the Time with a Score that is 65-19?", "context": "CREATE TABLE table_name_81 (time VARCHAR, score VARCHAR)"}, {"answer": "SELECT time FROM table_name_91 WHERE away = \"broadview hawks\"", "question": "What is the Time with an Away that is broadview hawks?", "context": "CREATE TABLE table_name_91 (time VARCHAR, away VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_97 WHERE against = 32 AND difference = \"18\" AND drawn > 4", "question": "Which Position has an Against of 32, and a Difference of 18, and a Drawn larger than 4?", "context": "CREATE TABLE table_name_97 (position INTEGER, drawn VARCHAR, against VARCHAR, difference VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_16 WHERE against < 49 AND drawn = 4", "question": "Which Position has an Against smaller than 49, and a Drawn of 4?", "context": "CREATE TABLE table_name_16 (position INTEGER, against VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_95 WHERE drawn = 5 AND team = \"palmeiras\" AND position < 6", "question": "Which Played has a Drawn of 5, and a Team of palmeiras, and a Position smaller than 6?", "context": "CREATE TABLE table_name_95 (played INTEGER, position VARCHAR, drawn VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_17 WHERE date = \"november 17\"", "question": "What team played on November 17?", "context": "CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT comp FROM table_name_83 WHERE ryds = \"2\"", "question": "What is the comp when the ryds is 2?", "context": "CREATE TABLE table_name_83 (comp VARCHAR, ryds VARCHAR)"}, {"answer": "SELECT ratt FROM table_name_49 WHERE comp = \"48\"", "question": "What is the RAtt when the comp is 48?", "context": "CREATE TABLE table_name_49 (ratt VARCHAR, comp VARCHAR)"}, {"answer": "SELECT ratt FROM table_name_83 WHERE long = \"73\"", "question": "What is the RAtt when the long is 73?", "context": "CREATE TABLE table_name_83 (ratt VARCHAR, long VARCHAR)"}, {"answer": "SELECT ryds FROM table_name_35 WHERE ratt = \"2\" AND comp = \"41\"", "question": "What is the RYds when the RAtt was 2, and the comp is 41?", "context": "CREATE TABLE table_name_35 (ryds VARCHAR, ratt VARCHAR, comp VARCHAR)"}, {"answer": "SELECT long FROM table_name_14 WHERE ryds = \"18\"", "question": "What is the Long when the ryds is 18?", "context": "CREATE TABLE table_name_14 (long VARCHAR, ryds VARCHAR)"}, {"answer": "SELECT ravg FROM table_name_93 WHERE ratt = \"3\"", "question": "What is the RAvg when the ratt is 3?", "context": "CREATE TABLE table_name_93 (ravg VARCHAR, ratt VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_21 WHERE tournament = \"merrill lynch/golf digest commemorative pro-am\"", "question": "Who was the Runner-up for the merrill lynch/golf digest commemorative pro-am tournament?", "context": "CREATE TABLE table_name_21 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_59 WHERE winning_score = \u201314(70 - 68 - 67 = 205)", "question": "What was the margin of victory when the winning score was \u201314 (70-68-67=205)?", "context": "CREATE TABLE table_name_59 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_71 WHERE winning_score = \u201310(69 - 68 - 74 - 67 = 278)", "question": "Who were the runner(s)-up when the winning score was \u201310 (69-68-74-67=278)?", "context": "CREATE TABLE table_name_71 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_86 WHERE margin_of_victory = \"2 strokes\" AND tournament = \"mazda senior tournament players championship\"", "question": "Who was the runner-up for the mazda senior tournament players championship tournament when the margin of victory was 2 strokes?", "context": "CREATE TABLE table_name_86 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT last_title FROM table_name_9 WHERE home_ground_[a_] = \"sydney cricket ground\"", "question": "When was the last title of the team with a home ground of Sydney cricket ground?", "context": "CREATE TABLE table_name_9 (last_title VARCHAR, home_ground_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_9 WHERE week = 15", "question": "How many people were in attendance for the game week 15?", "context": "CREATE TABLE table_name_9 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_92 WHERE opponent = \"buffalo bills\" AND week > 14", "question": "What is the highest number of people in attendance in the game against the Buffalo Bills in a week later than 14?", "context": "CREATE TABLE table_name_92 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_5 WHERE date = \"november 1, 1981\"", "question": "What is the average Attendance for the game on November 1, 1981?", "context": "CREATE TABLE table_name_5 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT position FROM table_name_8 WHERE team = \"chicago cubs\"", "question": "What position is played by the player from the Chicago Cubs?", "context": "CREATE TABLE table_name_8 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT player FROM table_name_63 WHERE position = \"outfielder\" AND pick < 42", "question": "What is the name of the Outfielder that was picked prior to Pick 42?", "context": "CREATE TABLE table_name_63 (player VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT week_of FROM table_name_2 WHERE semi_finalists = \"anke huber chanda rubin\" AND runner_up = \"meredith mcgrath larisa savchenko\"", "question": "What is the Week when anke huber chanda rubin shows for Semi finalists, and the Runner-up is meredith mcgrath larisa savchenko?", "context": "CREATE TABLE table_name_2 (week_of VARCHAR, semi_finalists VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT semi_finalists FROM table_name_55 WHERE runner_up = \"katrina adams zina garrison-jackson\"", "question": "What is the Semi finalists when the Runner-up was katrina adams zina garrison-jackson?", "context": "CREATE TABLE table_name_55 (semi_finalists VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT winner FROM table_name_31 WHERE semi_finalists = \"anke huber chanda rubin\"", "question": "What is the Winner when anke huber chanda rubin was semi finalist?", "context": "CREATE TABLE table_name_31 (winner VARCHAR, semi_finalists VARCHAR)"}, {"answer": "SELECT tier FROM table_name_95 WHERE runner_up = \"chanda rubin caroline vis\"", "question": "What is the Tier when the runner-up is chanda rubin caroline vis?", "context": "CREATE TABLE table_name_95 (tier VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT week_of FROM table_name_88 WHERE winner = \"mary joe fern\u00e1ndez 6\u20134, 7\u20135\"", "question": "What is the Week when the winner was mary joe fern\u00e1ndez 6\u20134, 7\u20135?", "context": "CREATE TABLE table_name_88 (week_of VARCHAR, winner VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_43 WHERE tier = \"tier ii\" AND winner = \"gigi fern\u00e1ndez natalia zvereva 5\u20137, 6\u20131, 6\u20134\"", "question": "What is the Runner-up with the tier was tier ii, and a Winner of gigi fern\u00e1ndez natalia zvereva 5\u20137, 6\u20131, 6\u20134?", "context": "CREATE TABLE table_name_43 (runner_up VARCHAR, tier VARCHAR, winner VARCHAR)"}, {"answer": "SELECT week__number FROM table_name_42 WHERE result = \"safe\" AND theme = \"dolly parton\"", "question": "Which week had safe as the result and Dolly Parton as the theme?", "context": "CREATE TABLE table_name_42 (week__number VARCHAR, result VARCHAR, theme VARCHAR)"}, {"answer": "SELECT week__number FROM table_name_34 WHERE original_artist = \"the beatles\" AND order__number < 10", "question": "On which week was the beatles the original artist and the order # smaller than 10?", "context": "CREATE TABLE table_name_34 (week__number VARCHAR, original_artist VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT original_artist FROM table_name_89 WHERE order__number = 5", "question": "Which original artist had 5 as their order #?", "context": "CREATE TABLE table_name_89 (original_artist VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_17 WHERE category = \"outstanding director of a musical\"", "question": "Which nominee was nominated in the Outstanding Director of a Musical category?", "context": "CREATE TABLE table_name_17 (nominee VARCHAR, category VARCHAR)"}, {"answer": "SELECT result FROM table_name_46 WHERE nominee = \"brent spiner\"", "question": "What is the result for Brent Spiner?", "context": "CREATE TABLE table_name_46 (result VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_86 WHERE name = \"shaun stonerook\"", "question": "What is the number of games for Shaun Stonerook?", "context": "CREATE TABLE table_name_86 (games INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_21 WHERE bronze < 1 AND silver < 0", "question": "What is the highest total number of medals of the nation with less than 1 bronzes and less than 0 silver medals?", "context": "CREATE TABLE table_name_21 (total INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_55 WHERE attendance = 49 OFFSET 980", "question": "Total weeks of 49,980 attendance?", "context": "CREATE TABLE table_name_55 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_91 WHERE date = \"december 22, 1980\"", "question": "Mean attendance for December 22, 1980?", "context": "CREATE TABLE table_name_91 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_63 WHERE week = 4", "question": "Overall attendance for week 4?", "context": "CREATE TABLE table_name_63 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_10 WHERE 1999 = \"3r\"", "question": "What was in 2007 that has a 3r of 1999?", "context": "CREATE TABLE table_name_10 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_73 WHERE 2004 = \"2r\" AND 2010 = \"a\"", "question": "What was in 2007 that is from 2004 0f 2r and 2010 of A?", "context": "CREATE TABLE table_name_73 (Id VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_71 WHERE 2006 = \"2r\" AND 2010 = \"a\"", "question": "What is in 2001, that has the year 2006, 2r, and in 2010 an A?", "context": "CREATE TABLE table_name_71 (Id VARCHAR)"}, {"answer": "SELECT award FROM table_name_90 WHERE year > 1947 AND category = \"best actor in a leading role\"", "question": "Who was awarded after 1947 in the category of, the best actor in a leading role?", "context": "CREATE TABLE table_name_90 (award VARCHAR, year VARCHAR, category VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE method = \"tko\" AND location = \"elgin, illinois, usa\" AND date = \"2001-02-11\"", "question": "Which Opponent has a Method of tko, and a Location of elgin, illinois, usa on 2001-02-11?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR, method VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_83 WHERE location = \"auckland, new zealand\" AND method = \"tko\" AND date = \"1994-11-24\"", "question": "Which Round has a Location of auckland, new zealand, and a Method of tko on 1994-11-24?", "context": "CREATE TABLE table_name_83 (round INTEGER, date VARCHAR, location VARCHAR, method VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_27 WHERE result = \"loss\"", "question": "Which highest Round has a Result of loss?", "context": "CREATE TABLE table_name_27 (round INTEGER, result VARCHAR)"}, {"answer": "SELECT location FROM table_name_40 WHERE method = \"decision\"", "question": "Which Location has a Method of decision?", "context": "CREATE TABLE table_name_40 (location VARCHAR, method VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_77 WHERE 2004 = \"1r\" AND 2007 = \"1r\"", "question": "What tournament has 1r as a 2004, and 1r as a 2007?", "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_31 WHERE 2010 = \"q2\" AND tournament = \"wimbledon\"", "question": "What 2012 has q2 as the 2010, and wimbledon as the tournament?", "context": "CREATE TABLE table_name_31 (tournament VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_95 WHERE 2010 = \"grand slam tournaments\"", "question": "What 2006 has grand slam tournaments of 2010?", "context": "CREATE TABLE table_name_95 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_27 WHERE 2005 = \"grand slam tournaments\"", "question": "What 2006 has grand slam tournaments of 2005?", "context": "CREATE TABLE table_name_27 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_34 WHERE 2007 = \"q2\"", "question": "What 2006 has q2 as the 2007?", "context": "CREATE TABLE table_name_34 (Id VARCHAR)"}, {"answer": "SELECT losses FROM table_name_34 WHERE awards = \"mike miller (smoy)\"", "question": "What are the losses where the award is Mike Miller (Smoy)?", "context": "CREATE TABLE table_name_34 (losses VARCHAR, awards VARCHAR)"}, {"answer": "SELECT win_percentage FROM table_name_9 WHERE wins = \"46\"", "question": "Where the wins are 46, what is the win%?", "context": "CREATE TABLE table_name_9 (win_percentage VARCHAR, wins VARCHAR)"}, {"answer": "SELECT conference FROM table_name_29 WHERE awards = \"vancouver grizzlies\"", "question": "Where the Vancouver Grizzlies is the awards, what is the conference?", "context": "CREATE TABLE table_name_29 (conference VARCHAR, awards VARCHAR)"}, {"answer": "SELECT MAX(1987) FROM table_name_48 WHERE 1995 < 1995 AND 1999 < 9", "question": "What is the highest 1987 value with a 1995 value less than 1995 and a 1999 less than 9?", "context": "CREATE TABLE table_name_48 (Id VARCHAR)"}, {"answer": "SELECT MAX(2003) FROM table_name_84 WHERE 1990 > 74 AND 1985 = 125 AND 1995 > 130", "question": "What is the highest 2003 value with a 1990 greater than 74, a 125 value in 1985, and a 1995 value greater than 130?", "context": "CREATE TABLE table_name_84 (Id VARCHAR)"}, {"answer": "SELECT MAX(2007) FROM table_name_56 WHERE 1985 > 52 AND 1987 > 130 AND 1990 < 1990", "question": "What is the highest 2007 value with a 1985 value greater than 52, a 1987 value greater than 130, and a 1990 less than 1990?", "context": "CREATE TABLE table_name_56 (Id VARCHAR)"}, {"answer": "SELECT MAX(1995) FROM table_name_4 WHERE 1990 > 36 AND 1987 < 1987 AND 2007 > 107", "question": "What is the highest 1995 with a 1990 less than 36, a 1987 less than 1987, and a 2007 value greater than 107?", "context": "CREATE TABLE table_name_4 (Id VARCHAR)"}, {"answer": "SELECT MAX(2003) FROM table_name_19 WHERE 2011 < 107 AND 1995 < 17", "question": "What is the highest 2003 value with a 2011 less than 107 and a 1995 value less than 17?", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_58 WHERE events > 11 AND top_5 = 0 AND top_25 = 2", "question": "What is the name of the tournament with 11 or more events a top-5 of 0 and a top-25 of 2?", "context": "CREATE TABLE table_name_58 (tournament VARCHAR, top_25 VARCHAR, events VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT MAX(top_10) FROM table_name_40 WHERE cuts_made = 8 AND events < 11", "question": "What is the most top-10 of the team with 8 cuts made and less than 11 events?", "context": "CREATE TABLE table_name_40 (top_10 INTEGER, cuts_made VARCHAR, events VARCHAR)"}, {"answer": "SELECT american_labor_ticket FROM table_name_3 WHERE liberal_ticket = \"henry epstein\"", "question": "What is the American Labor ticket when Henry Epstein is the liberal ticket?", "context": "CREATE TABLE table_name_3 (american_labor_ticket VARCHAR, liberal_ticket VARCHAR)"}, {"answer": "SELECT communist_ticket FROM table_name_63 WHERE office = \"judge of the court of appeals\"", "question": "What is the name on the Communist ticket with an Office of judge of the court of appeals?", "context": "CREATE TABLE table_name_63 (communist_ticket VARCHAR, office VARCHAR)"}, {"answer": "SELECT office FROM table_name_74 WHERE liberal_ticket = \"spencer c. young\"", "question": "What is the Office when spencer c. young is on the liberal ticket??", "context": "CREATE TABLE table_name_74 (office VARCHAR, liberal_ticket VARCHAR)"}, {"answer": "SELECT democratic_ticket FROM table_name_43 WHERE liberal_ticket = \"erastus corning 2nd\"", "question": "What is the name on the Democratic ticket when the Liberal ticket is erastus corning 2nd?", "context": "CREATE TABLE table_name_43 (democratic_ticket VARCHAR, liberal_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_37 WHERE american_labor_ticket = \"spencer c. young\"", "question": "What name is on the Republican ticket when the  American Labor ticket was spencer c. young?", "context": "CREATE TABLE table_name_37 (republican_ticket VARCHAR, american_labor_ticket VARCHAR)"}, {"answer": "SELECT entered FROM table_name_74 WHERE time = \"29:28\"", "question": "What is the entered number for the person with a time of 29:28?", "context": "CREATE TABLE table_name_74 (entered VARCHAR, time VARCHAR)"}, {"answer": "SELECT eliminated AS by FROM table_name_15 WHERE time = \"12:38\"", "question": "What is the number eliminated for the person with a time of 12:38?", "context": "CREATE TABLE table_name_15 (eliminated VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_50 WHERE result = \"w 24-21\"", "question": "What is the highest Attendance with a Result that is w 24-21?", "context": "CREATE TABLE table_name_50 (attendance INTEGER, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE time__seconds_ = 42.172", "question": "What Date has a time of (seconds) 42.172?", "context": "CREATE TABLE table_name_73 (date VARCHAR, time__seconds_ VARCHAR)"}, {"answer": "SELECT record FROM table_name_42 WHERE date = \"23 january 2010\" AND time__seconds_ < 42.679", "question": "What is the Record for 23 january 2010, with a time smaller than 42.679 seconds?", "context": "CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR, time__seconds_ VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_18 WHERE year = \"2005\"", "question": "What is the total number of Points that were in a Year that was 2005?", "context": "CREATE TABLE table_name_18 (points VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(shots) FROM table_name_38 WHERE points > 32", "question": "What is the lowest Shots with a Point that is larger than 32?", "context": "CREATE TABLE table_name_38 (shots INTEGER, points INTEGER)"}, {"answer": "SELECT category FROM table_name_41 WHERE year = 1991", "question": "Which category had a year of 1991?", "context": "CREATE TABLE table_name_41 (category VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_45 WHERE runner_up = \"magdalena maleeva\"", "question": "What is the score having a runner-up of Magdalena Maleeva?", "context": "CREATE TABLE table_name_45 (score VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT year_built FROM table_name_74 WHERE venue = \"john m. belk arena\"", "question": "What year was John m. Belk Arena built?", "context": "CREATE TABLE table_name_74 (year_built VARCHAR, venue VARCHAR)"}, {"answer": "SELECT environment FROM table_name_11 WHERE year_built = \"2003\"", "question": "What type of environment is the venue that was built in 2003?", "context": "CREATE TABLE table_name_11 (environment VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT year_built FROM table_name_10 WHERE venue = \"transamerica field\"", "question": "What year was transamerica field built in?", "context": "CREATE TABLE table_name_10 (year_built VARCHAR, venue VARCHAR)"}, {"answer": "SELECT location FROM table_name_26 WHERE owner = \"johnson c. smith university\"", "question": "What is the location of the venue owned by johnson c. smith university?", "context": "CREATE TABLE table_name_26 (location VARCHAR, owner VARCHAR)"}, {"answer": "SELECT venue FROM table_name_61 WHERE score = \"8-2\"", "question": "What is the venue when the score was 8-2?", "context": "CREATE TABLE table_name_61 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE competition = \"1999 fifa confederations cup\"", "question": "What is the Score for the 1999 fifa confederations cup?", "context": "CREATE TABLE table_name_96 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_2 WHERE date = \"30 june 1995\"", "question": "What is the result on 30 june 1995?", "context": "CREATE TABLE table_name_2 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE competition = \"1999 fifa confederations cup\"", "question": "What is the Date of the 1999 fifa confederations cup?", "context": "CREATE TABLE table_name_45 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_23 WHERE competition = \"2002 fifa world cup qualifier\" AND result = \"8-2\"", "question": "What is the Venue for the 2002 fifa world cup qualifier, and a Result of 8-2?", "context": "CREATE TABLE table_name_23 (venue VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE date = \"11 march 2001\"", "question": "What is the Score on 11 march 2001?", "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT symbol FROM table_name_25 WHERE empirical_\u2020 = \"190\" AND calculated = \"135\"", "question": "What is the symbol of the element with an empirical t of 190 and a calculated value of 135?", "context": "CREATE TABLE table_name_25 (symbol VARCHAR, empirical_\u2020 VARCHAR, calculated VARCHAR)"}, {"answer": "SELECT name FROM table_name_57 WHERE calculated = \"56\"", "question": "What is the name of the element with a calculated value of 56?", "context": "CREATE TABLE table_name_57 (name VARCHAR, calculated VARCHAR)"}, {"answer": "SELECT covalent__single_bond_ FROM table_name_21 WHERE name = \"sodium\"", "question": "What is the covalent (single bond) value of sodium?", "context": "CREATE TABLE table_name_21 (covalent__single_bond_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(height__cm_) FROM table_name_65 WHERE birthdate = \"september 2, 1973\"", "question": "What is the total height of the player with a birthdate on September 2, 1973?", "context": "CREATE TABLE table_name_65 (height__cm_ VARCHAR, birthdate VARCHAR)"}, {"answer": "SELECT birthdate FROM table_name_39 WHERE name = \"robert esche\"", "question": "What is the birthdate of Robert Esche?", "context": "CREATE TABLE table_name_39 (birthdate VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_83 WHERE jersey__number > 30 AND birthdate = \"december 23, 1986\"", "question": "What is the position of the player with a jersey # greater than 30 and a December 23, 1986 birthdate?", "context": "CREATE TABLE table_name_83 (position VARCHAR, jersey__number VARCHAR, birthdate VARCHAR)"}, {"answer": "SELECT weight__kg_ FROM table_name_44 WHERE name = \"john-michael liles\"", "question": "What is the weight of John-Michael Liles?", "context": "CREATE TABLE table_name_44 (weight__kg_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT first_leg FROM table_name_16 WHERE round = \"quarter-final\"", "question": "What was the first leg score during the quarter-final game?", "context": "CREATE TABLE table_name_16 (first_leg VARCHAR, round VARCHAR)"}, {"answer": "SELECT aggregate_score FROM table_name_66 WHERE opposition = \"dynamo dresden\"", "question": "What was the aggregate score for the game against Dynamo Dresden?", "context": "CREATE TABLE table_name_66 (aggregate_score VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_69 WHERE round = \"3rd\"", "question": "Who was the opposing team in the 3rd round?", "context": "CREATE TABLE table_name_69 (opposition VARCHAR, round VARCHAR)"}, {"answer": "SELECT nation FROM table_name_20 WHERE gold = 0 AND silver > 1", "question": "Which nation has 0 golds and more than 1 silver?", "context": "CREATE TABLE table_name_20 (nation VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_36 WHERE gold < 3 AND bronze > 0 AND silver > 0", "question": "What is the smallest total that has under 3 golds, more than 0 silvers and bronzes?", "context": "CREATE TABLE table_name_36 (total INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_11 WHERE bronze = \"3\" AND rank = \"3\" AND total > 6", "question": "What is the total number of silvers associated with 3 bronzes, a total over 6, and a rank of 3?", "context": "CREATE TABLE table_name_11 (silver VARCHAR, total VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_67 WHERE rank = \"10\" AND gold < 0", "question": "What is the sum of bronzes associated with 0 golds and a rank of 10?", "context": "CREATE TABLE table_name_67 (bronze INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_42 WHERE gold < 0", "question": "What is the largest silver value associated with 0 golds?", "context": "CREATE TABLE table_name_42 (silver INTEGER, gold INTEGER)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_44 WHERE nation = \"netherlands\"", "question": "What is the total number of bronzes from the Netherlands?", "context": "CREATE TABLE table_name_44 (bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(earnings__) AS $_ FROM table_name_88 WHERE money_list_rank = \"6\" AND year < 2004", "question": "What is the average amount of earnings for years under 2004 and money list rankings of 6?", "context": "CREATE TABLE table_name_88 (earnings__ INTEGER, money_list_rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_60 WHERE average > 73.02 AND year > 1999", "question": "What is the highest number of wins for years after 1999 with averages over 73.02?", "context": "CREATE TABLE table_name_60 (wins INTEGER, average VARCHAR, year VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_54 WHERE home_team = \"manchester united\"", "question": "Who was the away team when the home team Manchester United played?", "context": "CREATE TABLE table_name_54 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_8 WHERE tie_no = \"16\"", "question": "When there was a tie of 16 what was the attendance?", "context": "CREATE TABLE table_name_8 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE tie_no = \"6\"", "question": "Tell me the score when there was a Tie number of 6?", "context": "CREATE TABLE table_name_30 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_46 WHERE tie_no = \"14\"", "question": "For the Tie number of 14 who was the away team?", "context": "CREATE TABLE table_name_46 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_8 WHERE format = \"digipak album\" AND date = \"june 29, 1999\"", "question": "What Catalog released on June 29, 1999 has a Digipak Album Format?", "context": "CREATE TABLE table_name_8 (catalog VARCHAR, format VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE catalog = \"rr 8655-2\"", "question": "What is the release Date of Catalog RR 8655-2?", "context": "CREATE TABLE table_name_39 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE name = \"nicole \u8d56\u6dde\u51e4\"", "question": "What is Score, when Name is Nicole \u8d56\u6dde\u51e4?", "context": "CREATE TABLE table_name_38 (score VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE song = \"\u7b2c\u4e5d\u591c\"", "question": "What is Score, when Song is \u7b2c\u4e5d\u591c?", "context": "CREATE TABLE table_name_99 (score VARCHAR, song VARCHAR)"}, {"answer": "SELECT Group AS song FROM table_name_80 WHERE song = \"\u6362\u5b63\"", "question": "What is Group Song, when Song is \u6362\u5b63?", "context": "CREATE TABLE table_name_80 (Group VARCHAR, song VARCHAR)"}, {"answer": "SELECT Group AS song FROM table_name_29 WHERE name = \"alice \u6797\u82af\u7cf8\"", "question": "What is Group Song, when Name is Alice \u6797\u82af\u7cf8?", "context": "CREATE TABLE table_name_29 (Group VARCHAR, name VARCHAR)"}, {"answer": "SELECT surface FROM table_name_32 WHERE score = \"2\u20136, 6\u20133, 6\u20134\"", "question": "On what surface was the match played with a score of 2\u20136, 6\u20133, 6\u20134?", "context": "CREATE TABLE table_name_32 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_82 WHERE score = \"4\u20136, 6\u20133, 6\u20131\"", "question": "On what surface was the match played with a score of 4\u20136, 6\u20133, 6\u20131?", "context": "CREATE TABLE table_name_82 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE opponent_in_the_final = \"iroda tulyaganova\"", "question": "What was the score when the opponent in the final was iroda tulyaganova?", "context": "CREATE TABLE table_name_44 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_22 WHERE opponent_in_the_final = \"nadia petrova\" AND score = \"6\u20133, 4\u20136, 6\u20131\"", "question": "Which tournament has an opponent in the final of nadia petrova and a score of 6\u20133, 4\u20136, 6\u20131??", "context": "CREATE TABLE table_name_22 (tournament VARCHAR, opponent_in_the_final VARCHAR, score VARCHAR)"}, {"answer": "SELECT 01 AS _02 FROM table_name_61 WHERE \"03_04\" = \"03_04\"", "question": "What is 01-02, when 03-04 is 03-04?", "context": "CREATE TABLE table_name_61 (Id VARCHAR)"}, {"answer": "SELECT 02 AS _03 FROM table_name_33 WHERE school_year = \"% learning in latvian\"", "question": "What is 02-03, when School Year is % Learning In Latvian?", "context": "CREATE TABLE table_name_33 (school_year VARCHAR)"}, {"answer": "SELECT choreographer_s_ FROM table_name_29 WHERE style = \"jazz\"", "question": "Who was the choreographer for the dance style of Jazz?", "context": "CREATE TABLE table_name_29 (choreographer_s_ VARCHAR, style VARCHAR)"}, {"answer": "SELECT music FROM table_name_57 WHERE results = \"safe\" AND choreographer_s_ = \"jason gilkison\"", "question": "Which music led to a safe result and was choreographed by Jason Gilkison?", "context": "CREATE TABLE table_name_57 (music VARCHAR, results VARCHAR, choreographer_s_ VARCHAR)"}, {"answer": "SELECT couple FROM table_name_27 WHERE style = \"contemporary\"", "question": "Which couple participated in the Contemporary style of dance?", "context": "CREATE TABLE table_name_27 (couple VARCHAR, style VARCHAR)"}, {"answer": "SELECT couple FROM table_name_91 WHERE results = \"safe\" AND style = \"paso doble\"", "question": "Which couple participated in the Paso Doble style and were safe?", "context": "CREATE TABLE table_name_91 (couple VARCHAR, results VARCHAR, style VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_88 WHERE date = \"november 26, 1978\" AND attendance > 26 OFFSET 248", "question": "How many weeks had a game on November 26, 1978, and an attendance higher than 26,248?", "context": "CREATE TABLE table_name_88 (week VARCHAR, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_90 WHERE week = 12", "question": "What was the lowest Attendance during Week 12?", "context": "CREATE TABLE table_name_90 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_89 WHERE opponent_in_the_final = \"yi jingqian\"", "question": "What was the name of the tournament that the final was played against Yi Jingqian?", "context": "CREATE TABLE table_name_89 (tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_93 WHERE tournament = \"taipei, taiwan\" AND date = \"november 14, 1994\"", "question": "Who was the final opponent in the tournament in Taipei, Taiwan on November 14, 1994?", "context": "CREATE TABLE table_name_93 (opponent_in_the_final VARCHAR, tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_47 WHERE date = \"october 14, 1996\"", "question": "On October 14, 1996 who was the opponent in the final?", "context": "CREATE TABLE table_name_47 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE surface = \"hard\" AND opponent_in_the_final = \"yi jingqian\"", "question": "When playing against Yi Jingqian in the final on a hard surface what was the score?", "context": "CREATE TABLE table_name_29 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_17 WHERE date = \"november 14, 1994\"", "question": "Who was played against in the final on November 14, 1994?", "context": "CREATE TABLE table_name_17 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(entered) FROM table_name_53 WHERE eliminated = \"3\"", "question": "What is the total number of Entered when the eliminated number is 3?", "context": "CREATE TABLE table_name_53 (entered VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT eliminated FROM table_name_28 WHERE entered < 4 AND wrestler = \"shawn michaels\"", "question": "What is the Eliminated when there are less than 4 entered and the wrestler was shawn michaels?", "context": "CREATE TABLE table_name_28 (eliminated VARCHAR, entered VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT COUNT(frequency__per_hour_) FROM table_name_18 WHERE line = \"east london\" AND destination = \"crystal palace\"", "question": "How many frequencies have a line of East London and destination of Crystal Palace?", "context": "CREATE TABLE table_name_18 (frequency__per_hour_ VARCHAR, line VARCHAR, destination VARCHAR)"}, {"answer": "SELECT line FROM table_name_87 WHERE operator = \"london overground\" AND destination = \"crystal palace\"", "question": "Which line has an operator of the London Overground and ends at the Crystal Palace?", "context": "CREATE TABLE table_name_87 (line VARCHAR, operator VARCHAR, destination VARCHAR)"}, {"answer": "SELECT song FROM table_name_15 WHERE artist = \"gino vannelli\"", "question": "Which song was by artist Gino Vannelli?", "context": "CREATE TABLE table_name_15 (song VARCHAR, artist VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_35 WHERE cuts_made < 7 AND wins = 0 AND top_25 < 1", "question": "What tournament did Bill Rogers play in when he had less than 7 Cuts, 0 Wins, and less than 1 Top-25?", "context": "CREATE TABLE table_name_35 (tournament VARCHAR, top_25 VARCHAR, cuts_made VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_49 WHERE ties = 1 AND poll_wins > 3", "question": "What are the number of losses that have Ties of 1 and 3 or more poll wins?", "context": "CREATE TABLE table_name_49 (losses VARCHAR, ties VARCHAR, poll_wins VARCHAR)"}, {"answer": "SELECT MIN(poll_losses) FROM table_name_15 WHERE ties = 0 AND poll_wins > 1 AND wins < 2", "question": "What is the lowest poll losses of the 0 ties, poll wins greater than 1 and wins less than 2?", "context": "CREATE TABLE table_name_15 (poll_losses INTEGER, wins VARCHAR, ties VARCHAR, poll_wins VARCHAR)"}, {"answer": "SELECT MAX(poll_wins) FROM table_name_49 WHERE poll_losses > 2 AND advocate = \"andy kindler\" AND ties < 0", "question": "What is the highest poll of the advocate Andy Kindler with poll losses greater than 2 and ties less than 0?", "context": "CREATE TABLE table_name_49 (poll_wins INTEGER, ties VARCHAR, poll_losses VARCHAR, advocate VARCHAR)"}, {"answer": "SELECT AVG(pba_titles) FROM table_name_16 WHERE tv_finals > 6 AND events > 20", "question": "Which PBA Titles has a TV Finals larger than 6, and an Events larger than 20?", "context": "CREATE TABLE table_name_16 (pba_titles INTEGER, tv_finals VARCHAR, events VARCHAR)"}, {"answer": "SELECT MAX(events) FROM table_name_22 WHERE earnings = \"$113,259\" AND average > 229.5", "question": "Which Events has Earnings of $113,259, and an Average larger than 229.5?", "context": "CREATE TABLE table_name_22 (events INTEGER, earnings VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(cashes) FROM table_name_97 WHERE match_play < 13 AND events = 7", "question": "Which Cashes has a Match Play smaller than 13, and a Events of 7?", "context": "CREATE TABLE table_name_97 (cashes VARCHAR, match_play VARCHAR, events VARCHAR)"}, {"answer": "SELECT finish FROM table_name_22 WHERE season = \"1950\u201351\"", "question": "What is the Finish for the 1950\u201351? season?", "context": "CREATE TABLE table_name_22 (finish VARCHAR, season VARCHAR)"}, {"answer": "SELECT losses FROM table_name_51 WHERE conference = \"western\" AND season = \"2004\u201305\"", "question": "What is the Losses at the western conference and the 2004\u201305 season?", "context": "CREATE TABLE table_name_51 (losses VARCHAR, conference VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_28 WHERE wins = \"philadelphia warriors (nba)\"", "question": "What Season has wins as the philadelphia warriors (nba)?", "context": "CREATE TABLE table_name_28 (season VARCHAR, wins VARCHAR)"}, {"answer": "SELECT wins FROM table_name_61 WHERE conference = \"\u2014\" AND division = \"western\" AND season = \"1967\u201368\"", "question": "What shows for Wins when there was a Conference of \u2014, western division, in the 1967\u201368 season?", "context": "CREATE TABLE table_name_61 (wins VARCHAR, season VARCHAR, conference VARCHAR, division VARCHAR)"}, {"answer": "SELECT conference FROM table_name_71 WHERE season = \"1967\u201368\"", "question": "What is the Conference for the 1967\u201368 season?", "context": "CREATE TABLE table_name_71 (conference VARCHAR, season VARCHAR)"}, {"answer": "SELECT location FROM table_name_22 WHERE time = \"11:55\"", "question": "What is the Location when the time was 11:55?", "context": "CREATE TABLE table_name_22 (location VARCHAR, time VARCHAR)"}, {"answer": "SELECT round FROM table_name_5 WHERE time = \"n/a\" AND location = \"rio de janeiro , brazil\"", "question": "What Round has a Time of n/a, in rio de janeiro , brazil?", "context": "CREATE TABLE table_name_5 (round VARCHAR, time VARCHAR, location VARCHAR)"}, {"answer": "SELECT round FROM table_name_20 WHERE event = \"jiu-jitsu vs martial arts\"", "question": "What is the Round for the jiu-jitsu vs martial arts?", "context": "CREATE TABLE table_name_20 (round VARCHAR, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_36 WHERE event = \"jiu-jitsu vs martial arts\"", "question": "What is the Location for the jiu-jitsu vs martial arts?", "context": "CREATE TABLE table_name_36 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_79 WHERE opponent = \"wesslan evaristo de oliveira\"", "question": "What is the Event when the opponent was wesslan evaristo de oliveira?", "context": "CREATE TABLE table_name_79 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT points FROM table_name_42 WHERE bike = \"motobi tsr 6\" AND riders = \"kohta nozane\"", "question": "How many points does Kohta Nozane have with a Motobi TSR 6?", "context": "CREATE TABLE table_name_42 (points VARCHAR, bike VARCHAR, riders VARCHAR)"}, {"answer": "SELECT average FROM table_name_57 WHERE band = \"f\"", "question": "Which Average has a Band of f?", "context": "CREATE TABLE table_name_57 (average VARCHAR, band VARCHAR)"}, {"answer": "SELECT band FROM table_name_76 WHERE ratio = \"9/9\"", "question": "Which Band has a Ratio of 9/9?", "context": "CREATE TABLE table_name_76 (band VARCHAR, ratio VARCHAR)"}, {"answer": "SELECT band FROM table_name_99 WHERE ratio = \"13/9\"", "question": "Which Band has a Ratio of 13/9?", "context": "CREATE TABLE table_name_99 (band VARCHAR, ratio VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_70 WHERE winning_team = \"atlanta braves\" AND losing_team = \"st. louis cardinals\"", "question": "What was the latest year that the Atlanta Braves won and the St. Louis Cardinals lost?", "context": "CREATE TABLE table_name_70 (year INTEGER, winning_team VARCHAR, losing_team VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_92 WHERE losing_team = \"san francisco giants\"", "question": "Who won the series when the San Francisco Giants lost?", "context": "CREATE TABLE table_name_92 (winning_team VARCHAR, losing_team VARCHAR)"}, {"answer": "SELECT site FROM table_name_65 WHERE winning_team = \"kansas city royals\"", "question": "Where was the series that the Kansas City Royals lost?", "context": "CREATE TABLE table_name_65 (site VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_22 WHERE year = 2008", "question": "Who was the winning team in 2008?", "context": "CREATE TABLE table_name_22 (winning_team VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_49 WHERE points > 108", "question": "What average lost has points greater than 108?", "context": "CREATE TABLE table_name_49 (lost INTEGER, points INTEGER)"}, {"answer": "SELECT SUM(lost) FROM table_name_24 WHERE goals_against = 222 AND points > 78", "question": "How many losses have 222 as the goals against, with points greater than 78?", "context": "CREATE TABLE table_name_24 (lost INTEGER, goals_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(goals_against) FROM table_name_37 WHERE games = 64 AND lost < 12 AND points > 107", "question": "How many goals against have 64 for games, a loss less than 12, with points greater than 107?", "context": "CREATE TABLE table_name_37 (goals_against INTEGER, points VARCHAR, games VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(place) FROM table_name_79 WHERE song = \"never change\"", "question": "What is the place of the song 'Never Change'?", "context": "CREATE TABLE table_name_79 (place INTEGER, song VARCHAR)"}, {"answer": "SELECT song FROM table_name_18 WHERE artist = \"aleko berdzenishvili\"", "question": "What is the name of Aleko Berdzenishvili's song?", "context": "CREATE TABLE table_name_18 (song VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_67 WHERE position = \"rhp\" AND player = \"mike biko\"", "question": "What was the lowest pick for the RHP position and player Mike Biko?", "context": "CREATE TABLE table_name_67 (pick INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT martin_mcguinness FROM table_name_16 WHERE david_norris = \"10.3%\"", "question": "What is the Martin McGuinness with a David Norris that is 10.3%?", "context": "CREATE TABLE table_name_16 (martin_mcguinness VARCHAR, david_norris VARCHAR)"}, {"answer": "SELECT martin_mcguinness FROM table_name_3 WHERE se\u00e1n_gallagher = \"29.6%\"", "question": "What is the Martin mcGuinness with a Sean Gallagher that is 29.6%?", "context": "CREATE TABLE table_name_3 (martin_mcguinness VARCHAR, se\u00e1n_gallagher VARCHAR)"}, {"answer": "SELECT david_norris FROM table_name_92 WHERE michael_d_higgins = \"46.2%\"", "question": "What is the David Norris with a Michael D. Higgins that is 46.2%?", "context": "CREATE TABLE table_name_92 (david_norris VARCHAR, michael_d_higgins VARCHAR)"}, {"answer": "SELECT mary_davis FROM table_name_96 WHERE gay_mitchell = \"4.6%\"", "question": "What is the Mary Davis with a Gay Mitchell that is 4.6%?", "context": "CREATE TABLE table_name_96 (mary_davis VARCHAR, gay_mitchell VARCHAR)"}, {"answer": "SELECT COUNT(prev) FROM table_name_26 WHERE chng = \"+10\" AND rating > 2765", "question": "Can you tell me the total number of Prev that has the Chng of +10, and the Rating larger than 2765?", "context": "CREATE TABLE table_name_26 (prev VARCHAR, chng VARCHAR, rating VARCHAR)"}, {"answer": "SELECT second_member FROM table_name_70 WHERE second_party = \"liberal\" AND third_party = \"conservative\" AND election > 1841", "question": "Who is the second member for the Second Party Liberal, and the Third Party Conservative, after the 1841 election?", "context": "CREATE TABLE table_name_70 (second_member VARCHAR, election VARCHAR, second_party VARCHAR, third_party VARCHAR)"}, {"answer": "SELECT third_member FROM table_name_2 WHERE second_party = \"liberal\" AND third_party = \"conservative\" AND second_member = \"humphrey mildmay\"", "question": "Who is the third member of the Liberal Party, a third party conservative, the second member Humphrey Mildmay?", "context": "CREATE TABLE table_name_2 (third_member VARCHAR, second_member VARCHAR, second_party VARCHAR, third_party VARCHAR)"}, {"answer": "SELECT third_member FROM table_name_30 WHERE third_party = \"conservative\" AND second_party = \"liberal\"", "question": "Who is the third member of the third conservative party, and the second liberal party?", "context": "CREATE TABLE table_name_30 (third_member VARCHAR, third_party VARCHAR, second_party VARCHAR)"}, {"answer": "SELECT MAX(election) FROM table_name_97 WHERE third_member = \"sir robert price, bt\" AND first_party = \"conservative\"", "question": "What was the highest election with third party member Sir Robert Price, BT, and first party member conservative?", "context": "CREATE TABLE table_name_97 (election INTEGER, third_member VARCHAR, first_party VARCHAR)"}, {"answer": "SELECT record FROM table_name_8 WHERE head_coach = \"steve spurrier\"", "question": "What was the record of the team with head coach Steve Spurrier?", "context": "CREATE TABLE table_name_8 (record VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT record FROM table_name_34 WHERE team = \"usc\" AND season < 1967", "question": "What was USC's record before the 1967 season?", "context": "CREATE TABLE table_name_34 (record VARCHAR, team VARCHAR, season VARCHAR)"}, {"answer": "SELECT record FROM table_name_74 WHERE season = 1973", "question": "What was the record during the 1973 season?", "context": "CREATE TABLE table_name_74 (record VARCHAR, season VARCHAR)"}, {"answer": "SELECT average FROM table_name_49 WHERE place = \"6th\" AND total = \"165\"", "question": "What is the average score for 6th place with a total of 165?", "context": "CREATE TABLE table_name_49 (average VARCHAR, place VARCHAR, total VARCHAR)"}, {"answer": "SELECT total FROM table_name_70 WHERE rank_by_average = \"74\" AND place = \"8th\"", "question": "What is the total with a 74 rank by average for 8th place?", "context": "CREATE TABLE table_name_70 (total VARCHAR, rank_by_average VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_21 WHERE season = \"8\" AND rank_by_average = \"139\"", "question": "What was the place in season 8 with a rank by average at 139?", "context": "CREATE TABLE table_name_21 (place VARCHAR, season VARCHAR, rank_by_average VARCHAR)"}, {"answer": "SELECT total FROM table_name_41 WHERE place = \"3rd\" AND season = \"9\"", "question": "What is the total for 3rd place on season 9?", "context": "CREATE TABLE table_name_41 (total VARCHAR, place VARCHAR, season VARCHAR)"}, {"answer": "SELECT rank_by_average FROM table_name_34 WHERE number_of_dances = \"1\" AND season = \"9\"", "question": "What rank by average has 1 dance on season 9?", "context": "CREATE TABLE table_name_34 (rank_by_average VARCHAR, number_of_dances VARCHAR, season VARCHAR)"}, {"answer": "SELECT final_round FROM table_name_31 WHERE team = \"milwaukee bucks\"", "question": "What was the final round score for the player from the Milwaukee Bucks?", "context": "CREATE TABLE table_name_31 (final_round VARCHAR, team VARCHAR)"}, {"answer": "SELECT pos FROM table_name_21 WHERE first_round = \"35.7\"", "question": "What position does the player with a first round score of 35.7 play?", "context": "CREATE TABLE table_name_21 (pos VARCHAR, first_round VARCHAR)"}, {"answer": "SELECT height FROM table_name_1 WHERE first_round = \"44.1\"", "question": "What is the height of the player with a first round score of 44.1?", "context": "CREATE TABLE table_name_1 (height VARCHAR, first_round VARCHAR)"}, {"answer": "SELECT player FROM table_name_87 WHERE weight = 187", "question": "Which player weighs 187 pounds?", "context": "CREATE TABLE table_name_87 (player VARCHAR, weight VARCHAR)"}, {"answer": "SELECT illustrator FROM table_name_79 WHERE year = 1987", "question": "Who was the illustrator in 1987?", "context": "CREATE TABLE table_name_79 (illustrator VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_94 WHERE title = \"drop dead\"", "question": "How many years was the title drop dead?", "context": "CREATE TABLE table_name_94 (year VARCHAR, title VARCHAR)"}, {"answer": "SELECT publisher FROM table_name_93 WHERE title = \"drop dead\"", "question": "Which publisher has a title of drop dead?", "context": "CREATE TABLE table_name_93 (publisher VARCHAR, title VARCHAR)"}, {"answer": "SELECT greek FROM table_name_99 WHERE german = \"ebbe\"", "question": "What Greek word means the same thing as the German word ebbe?", "context": "CREATE TABLE table_name_99 (greek VARCHAR, german VARCHAR)"}, {"answer": "SELECT german FROM table_name_10 WHERE icelandic = \"efja\"", "question": "What word in German translates into the Icelandic word efja?", "context": "CREATE TABLE table_name_10 (german VARCHAR, icelandic VARCHAR)"}, {"answer": "SELECT dutch FROM table_name_3 WHERE latin = \"navigo\"", "question": "What is the Dutch translation of the Latin word navigo?", "context": "CREATE TABLE table_name_3 (dutch VARCHAR, latin VARCHAR)"}, {"answer": "SELECT dutch FROM table_name_1 WHERE greek = \"\u03c0\u03bb\u03ad\u03c9 (pl\u00e9\u014d)\"", "question": "What Dutch word has the same meaning as the Greek word \u03c0\u03bb\u03ad\u03c9 (pl\u00e9\u014d)?", "context": "CREATE TABLE table_name_1 (dutch VARCHAR, greek VARCHAR)"}, {"answer": "SELECT english FROM table_name_3 WHERE \"german\" = \"german\"", "question": "What English word has the same meaning as the German word \"german\"?", "context": "CREATE TABLE table_name_3 (english VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_95 WHERE events = 7 AND top_10 > 2", "question": "How many wins are related to events of 7 and more than 2 top-10s?", "context": "CREATE TABLE table_name_95 (wins VARCHAR, events VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_52 WHERE top_5 = 1 AND top_10 = 2 AND events > 13", "question": "What is the most cuts made for events with 1 top-5, 2 top-10s, and more than 13 total events?", "context": "CREATE TABLE table_name_52 (cuts_made INTEGER, events VARCHAR, top_5 VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT name FROM table_name_22 WHERE rank < 71 AND year > 2005 AND out_of = \"220\"", "question": "Can you tell me the Name that has the Rank smaller than 71, and the Year larger than 2005, and the Out of 220?", "context": "CREATE TABLE table_name_22 (name VARCHAR, out_of VARCHAR, rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_99 WHERE rank < 132 AND name = \"biodiversity richness\"", "question": "Can you tell me the lowest Year that has the Rank smaller the 132, and the Name of biodiversity richness?", "context": "CREATE TABLE table_name_99 (year INTEGER, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT source FROM table_name_86 WHERE rank = 78", "question": "Can you tell me the Source that has the Rank of 78?", "context": "CREATE TABLE table_name_86 (source VARCHAR, rank VARCHAR)"}, {"answer": "SELECT out_of FROM table_name_31 WHERE source = \"united nations\" AND rank > 47 AND year < 2003", "question": "Can you tell me the Out of that has the Source of united nations, and the Rank larger than 47, and the Year smaller than 2003?", "context": "CREATE TABLE table_name_31 (out_of VARCHAR, year VARCHAR, source VARCHAR, rank VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_59 WHERE 2004 = \"1r\"", "question": "Which Tournament has a 2004 of 1r?", "context": "CREATE TABLE table_name_59 (tournament VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_52 WHERE 2007 = \"grand slam tournaments\"", "question": "What is the 2005 that has a grand slam tournaments in 2007?", "context": "CREATE TABLE table_name_52 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_84 WHERE 2004 = \"2r\" AND 2005 = \"2r\"", "question": "What is the 2006 that has a 2r in 2004, and a 2r in 2005?", "context": "CREATE TABLE table_name_84 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_32 WHERE 2006 = \"grand slam tournaments\"", "question": "What is the 2007 that has a grand slam tournaments in 2006.", "context": "CREATE TABLE table_name_32 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_82 WHERE 2006 = \"grand slam tournaments\"", "question": "What is the 2004 that has a of grand slam tournaments in2006 ?", "context": "CREATE TABLE table_name_82 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_48 WHERE 2007 = \"3r\"", "question": "What is 2006 has a 2007 of 3r?", "context": "CREATE TABLE table_name_48 (Id VARCHAR)"}, {"answer": "SELECT COUNT(passengers) FROM table_name_54 WHERE airport = \"mco\" AND rank > 9", "question": "What was the number of passengers going to MCO with a rank larger than 9?", "context": "CREATE TABLE table_name_54 (passengers VARCHAR, airport VARCHAR, rank VARCHAR)"}, {"answer": "SELECT city FROM table_name_78 WHERE rank < 3 AND carriers = \"jetblue airways\"", "question": "What city had a rank before 3 and primary carrier JetBlue Airways?", "context": "CREATE TABLE table_name_78 (city VARCHAR, rank VARCHAR, carriers VARCHAR)"}, {"answer": "SELECT launched FROM table_name_14 WHERE laid_down = \"february 1819\"", "question": "What was launched and laid down in February 1819?", "context": "CREATE TABLE table_name_14 (launched VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT COUNT(pos) FROM table_name_51 WHERE points < 10 AND qualifying > 7 AND race_1 = \"ret\" AND driver = \"jonathan grant\"", "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 date FROM table_name_29 WHERE set_2 = \"25-13\"", "question": "What is Date, when Set 2 is 25-13?", "context": "CREATE TABLE table_name_29 (date VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT total FROM table_name_62 WHERE set_5 = \"na\" AND set_2 = \"25-13\"", "question": "What is Total, when Set 5 is NA, and when Set 2 is 25-13?", "context": "CREATE TABLE table_name_62 (total VARCHAR, set_5 VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE date = \"jun 16\" AND set_4 = \"25-20\"", "question": "What is Score, when Date is Jun 16, and when Set 4 is 25-20?", "context": "CREATE TABLE table_name_1 (score VARCHAR, date VARCHAR, set_4 VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_73 WHERE score = \"3-0\" AND date = \"may 11\" AND set_1 = \"25-20\"", "question": "What is Set 2, when Score is 3-0, when Date is May 11, and when Set 1 is 25-20?", "context": "CREATE TABLE table_name_73 (set_2 VARCHAR, set_1 VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT set_4 FROM table_name_37 WHERE set_1 = \"25-18\" AND date = \"jun 2\"", "question": "What is Set 4, when Set 1 is 25-18, and when Date is Jun 2?", "context": "CREATE TABLE table_name_37 (set_4 VARCHAR, set_1 VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_17 WHERE score = \"w 101\u201397 (2ot)\"", "question": "What is the Team with a Score that is w 101\u201397 (2ot)?", "context": "CREATE TABLE table_name_17 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_73 WHERE score = \"l 64\u201394 (ot)\"", "question": "What is the High points with a Score that is l 64\u201394 (ot)?", "context": "CREATE TABLE table_name_73 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_62 WHERE drawn < 1", "question": "What is the largest played when the drawn is less than 1?", "context": "CREATE TABLE table_name_62 (played INTEGER, drawn INTEGER)"}, {"answer": "SELECT AVG(points) FROM table_name_31 WHERE played > 20", "question": "What points average has a played greater than 20?", "context": "CREATE TABLE table_name_31 (points INTEGER, played INTEGER)"}, {"answer": "SELECT MIN(drawn) FROM table_name_51 WHERE position > 10 AND played < 20", "question": "What is the smallest drawn with a position bigger than 10 and a played less than 20?", "context": "CREATE TABLE table_name_51 (drawn INTEGER, position VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_75 WHERE drawn = 9 AND points > 25", "question": "At what average position is the drawn 9 and the points greater than 25?", "context": "CREATE TABLE table_name_75 (position INTEGER, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_83 WHERE against > 57 AND lost > 14", "question": "How many played has an against greater than 57 and a lost bigger than 14?", "context": "CREATE TABLE table_name_83 (played VARCHAR, against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT location FROM table_name_55 WHERE event = \"rip curl pro mademoiselle\"", "question": "The event rip curl pro mademoiselle is in which location?", "context": "CREATE TABLE table_name_55 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT winner FROM table_name_35 WHERE country = \"united states\" AND date = \"november 24-december 6\"", "question": "On the date november 24-december 6 what's the winner when the country is united states?", "context": "CREATE TABLE table_name_35 (winner VARCHAR, country VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_93 WHERE event = \"100 m\" AND venue = \"thessaloniki, greece\"", "question": "Which year was the 100 m event played in Thessaloniki, Greece?", "context": "CREATE TABLE table_name_93 (year INTEGER, event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_64 WHERE competition = \"world indoor championships\" AND year > 2008", "question": "Which position was the World Indoor Championships in a year later than 2008?", "context": "CREATE TABLE table_name_64 (position VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT position FROM table_name_62 WHERE competition = \"world athletics final\" AND year > 2008", "question": "What position was played at the World Athletics Final Competition in a year more recent than 2008?", "context": "CREATE TABLE table_name_62 (position VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT position FROM table_name_11 WHERE competition = \"world athletics final\" AND year > 2008", "question": "What position was played at the World Athletics Final Competition in a year more recent than 2008?", "context": "CREATE TABLE table_name_11 (position VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT goals FROM table_name_92 WHERE assists = \"5\"", "question": "What are the goals of the assists of 5?", "context": "CREATE TABLE table_name_92 (goals VARCHAR, assists VARCHAR)"}, {"answer": "SELECT assists FROM table_name_66 WHERE year = \"1995\"", "question": "What is the assists for the year 1995?", "context": "CREATE TABLE table_name_66 (assists VARCHAR, year VARCHAR)"}, {"answer": "SELECT assists FROM table_name_14 WHERE team = \"smu\" AND total_points = \"85\"", "question": "What assists has the Team SMU and the total points of 85?", "context": "CREATE TABLE table_name_14 (assists VARCHAR, team VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT year FROM table_name_35 WHERE assists = \"48\"", "question": "What year had 48 assists?", "context": "CREATE TABLE table_name_35 (year VARCHAR, assists VARCHAR)"}, {"answer": "SELECT total_points FROM table_name_28 WHERE gp_gs = \"24/23\"", "question": "What is the total points for GP/GS of 24/23?", "context": "CREATE TABLE table_name_28 (total_points VARCHAR, gp_gs VARCHAR)"}, {"answer": "SELECT assists FROM table_name_29 WHERE team = \"florida\" AND total_points = \"75\"", "question": "What is the assists for the Team of Florida and the total points of 75?", "context": "CREATE TABLE table_name_29 (assists VARCHAR, team VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_24 WHERE home_team = \"f.c. central chugoku\"", "question": "What is the attendance of the match with F.C. central chugoku as the home team?", "context": "CREATE TABLE table_name_24 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_52 WHERE match_no = \"9\"", "question": "What is the away team of match 9?", "context": "CREATE TABLE table_name_52 (away_team VARCHAR, match_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE match_no = \"15\"", "question": "What is the score of match 15?", "context": "CREATE TABLE table_name_30 (score VARCHAR, match_no VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_23 WHERE away_team = \"kochi university\"", "question": "What is the attendance of the match with kochi university as the away team?", "context": "CREATE TABLE table_name_23 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_82 WHERE away_team = \"rosso kumamoto\"", "question": "What is the attendance of the match with rosso kumamoto as the away team?", "context": "CREATE TABLE table_name_82 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_69 WHERE balance_sheet_total = \"\u20ac125,359,000\"", "question": "What year did the company have a balance sheet total of \u20ac125,359,000?", "context": "CREATE TABLE table_name_69 (year VARCHAR, balance_sheet_total VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_31 WHERE album = \"da baddest bitch\"", "question": "What was the average Year of release for the Album, \"Da Baddest Bitch\"?", "context": "CREATE TABLE table_name_31 (year INTEGER, album VARCHAR)"}, {"answer": "SELECT result FROM table_name_99 WHERE score = \"3-2\"", "question": "What was the result of the game with a score of 3-2?", "context": "CREATE TABLE table_name_99 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE competition = \"2014 world cup qualification\"", "question": "What was the score of the 2014 World Cup Qualification?", "context": "CREATE TABLE table_name_91 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_65 WHERE score = \"4-1\"", "question": "What was the result of the game with a score of 4-1?", "context": "CREATE TABLE table_name_65 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_42 WHERE score = \"3-2\"", "question": "What venue held with game with a score of 3-2?", "context": "CREATE TABLE table_name_42 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE centerfold_model = \"krista kelly\"", "question": "When has a Centerfold model of krista kelly?", "context": "CREATE TABLE table_name_20 (date VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_name_60 WHERE cover_model = \"rena mero , torrie wilson (two alternative covers)\"", "question": "Which 20 Questions has a Cover model of rena mero , torrie wilson (two alternative covers)?", "context": "CREATE TABLE table_name_60 (cover_model VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_name_80 WHERE date = \"3-04\"", "question": "When Centerfold model is on 3-04?", "context": "CREATE TABLE table_name_80 (centerfold_model VARCHAR, date VARCHAR)"}, {"answer": "SELECT cover_model FROM table_name_22 WHERE centerfold_model = \"scarlett keegan\"", "question": "Which Cover model has a Centerfold model of scarlett keegan?", "context": "CREATE TABLE table_name_22 (cover_model VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE centerfold_model = \"pilar lastra\"", "question": "When has a Centerfold model of pilar lastra?", "context": "CREATE TABLE table_name_95 (date VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT MIN(share) FROM table_name_8 WHERE air_date = \"march 21, 2008\" AND viewers > 5.15", "question": "What is the lowest share with an air date of March 21, 2008 and had viewers larger than 5.15?", "context": "CREATE TABLE table_name_8 (share INTEGER, air_date VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT MIN(team_s_) FROM table_name_31 WHERE top_goalscorer_s_ = \"tvmk\" AND champion = \"flora\"", "question": "What is the lowest team (s) that have tvmk as top scorer (s) and flora as the champion?", "context": "CREATE TABLE table_name_31 (team_s_ INTEGER, top_goalscorer_s_ VARCHAR, champion VARCHAR)"}, {"answer": "SELECT round FROM table_name_1 WHERE opposition = \"lyon\"", "question": "What round had the opponent Lyon?", "context": "CREATE TABLE table_name_1 (round VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT first_leg FROM table_name_53 WHERE round = \"semi-final\"", "question": "Who has the first leg that has a round in the semi-final?", "context": "CREATE TABLE table_name_53 (first_leg VARCHAR, round VARCHAR)"}, {"answer": "SELECT most_laps_led FROM table_name_28 WHERE winning_team = \"chip ganassi racing\" AND fastest_lap = \"marco andretti\"", "question": "What is Most Laps Led, when Winning Team is Chip Ganassi Racing, and when Fastest Lap is Marco Andretti?", "context": "CREATE TABLE table_name_28 (most_laps_led VARCHAR, winning_team VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_10 WHERE most_laps_led = \"dario franchitti\" AND pole_position = \"h\u00e9lio castroneves\"", "question": "Who is the Winning Driver, when Most Laps Led is Dario Franchitti, and when Pole Position is H\u00e9lio Castroneves?", "context": "CREATE TABLE table_name_10 (winning_driver VARCHAR, most_laps_led VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_21 WHERE most_laps_led = \"alex tagliani\"", "question": "What is Winning Team, when Most Laps Led is Alex Tagliani?", "context": "CREATE TABLE table_name_21 (winning_team VARCHAR, most_laps_led VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_7 WHERE fastest_lap = \"ryan hunter-reay\" AND most_laps_led = \"ryan briscoe\"", "question": "What is Winning Driver, when Fastest Lap is Ryan Hunter-Reay, and when Most Laps Led is Ryan Briscoe?", "context": "CREATE TABLE table_name_7 (winning_driver VARCHAR, fastest_lap VARCHAR, most_laps_led VARCHAR)"}, {"answer": "SELECT race FROM table_name_91 WHERE winning_team = \"chip ganassi racing\" AND pole_position = \"ryan briscoe\" AND most_laps_led = \"scott dixon\"", "question": "What is Race, when Winning Team is Chip Ganassi Racing, when Pole Position is Ryan Briscoe, and when Most Laps Led is Scott Dixon?", "context": "CREATE TABLE table_name_91 (race VARCHAR, most_laps_led VARCHAR, winning_team VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT winner FROM table_name_20 WHERE runner_up = \"real salt lake\"", "question": "Who was the Winner when the Runner-up was Real Salt Lake?", "context": "CREATE TABLE table_name_20 (winner VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT season FROM table_name_64 WHERE runner_up = \"tournament in progress\"", "question": "During which Season was the tournament in progress?", "context": "CREATE TABLE table_name_64 (season VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE winner = \"c.f. atlante\"", "question": "What was the Score during the Season in which the Winner was C.F. Atlante?", "context": "CREATE TABLE table_name_15 (score VARCHAR, winner VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE losing_semifinalists = \"toluca unam\"", "question": "What was the Score when the Losing Semifinalists were Toluca Unam?", "context": "CREATE TABLE table_name_88 (score VARCHAR, losing_semifinalists VARCHAR)"}, {"answer": "SELECT laws_against_homosexuality FROM table_name_90 WHERE penalty = \"\u2014\" AND country = \"iraq\"", "question": "What law has a penalty of \u2014 in Iraq?", "context": "CREATE TABLE table_name_90 (laws_against_homosexuality VARCHAR, penalty VARCHAR, country VARCHAR)"}, {"answer": "SELECT laws_against_homosexuality FROM table_name_34 WHERE country = \"malaysia\"", "question": "What are the laws against homosexuality in Malaysia?", "context": "CREATE TABLE table_name_34 (laws_against_homosexuality VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(events) FROM table_name_62 WHERE top_25 = 12 AND wins < 0", "question": "What is the average Events when the top-25 is 12 and there are less than 0 wins?", "context": "CREATE TABLE table_name_62 (events INTEGER, top_25 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(events) FROM table_name_88 WHERE top_25 > 5 AND top_10 < 4 AND wins > 2", "question": "What is the sum of Events when the top-25 is more than 5, and the top-10 is less than 4, and wins is more than 2?", "context": "CREATE TABLE table_name_88 (events INTEGER, wins VARCHAR, top_25 VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT AVG(top_10) FROM table_name_93 WHERE cuts_made = 17 AND wins < 0", "question": "What is the average Top-10 when there were 17 cuts made with less than 0 wins?", "context": "CREATE TABLE table_name_93 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(cuts_made) FROM table_name_95 WHERE events > 72", "question": "What is the sum of Cuts made when there were more than 72 events?", "context": "CREATE TABLE table_name_95 (cuts_made INTEGER, events INTEGER)"}, {"answer": "SELECT AVG(top_5) FROM table_name_98 WHERE tournament = \"the open championship\" AND top_10 < 2", "question": "What is the average Top-5 for the open championship, and a Top-10 smaller than 2?", "context": "CREATE TABLE table_name_98 (top_5 INTEGER, tournament VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT original_airing FROM table_name_74 WHERE rating < 10.1 AND episode_number_production_number = \"96 5-09\"", "question": "What was the date of airing for episodes with ratings under 10.1 and production number of 96 5-09?", "context": "CREATE TABLE table_name_74 (original_airing VARCHAR, rating VARCHAR, episode_number_production_number VARCHAR)"}, {"answer": "SELECT MIN(total_viewers__in_millions_) FROM table_name_54 WHERE episode_number_production_number = \"109 5-22\"", "question": "What was the fewest number of viewers for the episode production number of 109 5-22?", "context": "CREATE TABLE table_name_54 (total_viewers__in_millions_ INTEGER, episode_number_production_number VARCHAR)"}, {"answer": "SELECT first_aligned_day FROM table_name_67 WHERE date = \"1614\"", "question": "What is the First Aligned date in 1614?", "context": "CREATE TABLE table_name_67 (first_aligned_day VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(_number_of_airlines) FROM table_name_76 WHERE distance__km_ = 705", "question": "How many Airlines have a total distance of 705 (km)?", "context": "CREATE TABLE table_name_76 (_number_of_airlines VARCHAR, distance__km_ VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_10 WHERE team_1 = \"gambia\"", "question": "What is the 1st leg result when team 1 is Gambia?", "context": "CREATE TABLE table_name_10 (team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_16 WHERE team_2 = \"morocco\"", "question": "What is the 2nd leg result when team 2 is Morocco?", "context": "CREATE TABLE table_name_16 (team_2 VARCHAR)"}, {"answer": "SELECT name FROM table_name_32 WHERE year = \"2001\"", "question": "Which Name was in the Year 2001?", "context": "CREATE TABLE table_name_32 (name VARCHAR, year VARCHAR)"}, {"answer": "SELECT name FROM table_name_31 WHERE out_of < 149 AND rank = 18", "question": "Which Name had a Rank of 18 Out of a number smaller than 149?", "context": "CREATE TABLE table_name_31 (name VARCHAR, out_of VARCHAR, rank VARCHAR)"}, {"answer": "SELECT name FROM table_name_54 WHERE rank = 15", "question": "Which Name had the Rank, 15?", "context": "CREATE TABLE table_name_54 (name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_66 WHERE name = \"area of permanent crops\" AND out_of < 181", "question": "What is the lowest Rank for the Name, \"area of permanent crops\", Out of a number smaller than 181?", "context": "CREATE TABLE table_name_66 (rank INTEGER, name VARCHAR, out_of VARCHAR)"}, {"answer": "SELECT name FROM table_name_48 WHERE source = \"world bank\" AND rank < 110 AND out_of < 199", "question": "Which Name had the Source, World Bank, and a Rank smaller than 110, Out of a number smaller than 199?", "context": "CREATE TABLE table_name_48 (name VARCHAR, out_of VARCHAR, source VARCHAR, rank VARCHAR)"}, {"answer": "SELECT team FROM table_name_88 WHERE coach = \"manzoor elahi\" AND captain = \"taufeeq umar\"", "question": "Which Team has Manzoor Elahi as Coach and Taufeeq Umar as Captain?", "context": "CREATE TABLE table_name_88 (team VARCHAR, coach VARCHAR, captain VARCHAR)"}, {"answer": "SELECT city FROM table_name_98 WHERE team = \"bahawalpur stags\"", "question": "Which City has the Bahawalpur Stags Team?", "context": "CREATE TABLE table_name_98 (city VARCHAR, team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_90 WHERE date = \"december 18, 1994\"", "question": "Who is the opponent of the December 18, 1994 game?", "context": "CREATE TABLE table_name_90 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT artist FROM table_name_48 WHERE date = \"june 1979\"", "question": "What is the Artist with a Date that is june 1979?", "context": "CREATE TABLE table_name_48 (artist VARCHAR, date VARCHAR)"}, {"answer": "SELECT writer FROM table_name_8 WHERE actual_title = \"mork & mindy\"", "question": "What is the Writer with an Actual Title that is mork & mindy?", "context": "CREATE TABLE table_name_8 (writer VARCHAR, actual_title VARCHAR)"}, {"answer": "SELECT writer FROM table_name_63 WHERE date = \"january 1975\"", "question": "What is the Writer with a Date that is january 1975?", "context": "CREATE TABLE table_name_63 (writer VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_66 WHERE drawn = 2 AND against > 73", "question": "What is the smallest played amount when there are 2 draws and an against of more than 73?", "context": "CREATE TABLE table_name_66 (played INTEGER, drawn VARCHAR, against VARCHAR)"}, {"answer": "SELECT MIN(episodes) FROM table_name_90 WHERE premiere = \"february5,2007\"", "question": "What is the earliest season with a premiere of february5,2007?", "context": "CREATE TABLE table_name_90 (episodes INTEGER, premiere VARCHAR)"}, {"answer": "SELECT premiere FROM table_name_36 WHERE episodes > 15", "question": "Which premiere had more than 15 episodes?", "context": "CREATE TABLE table_name_36 (premiere VARCHAR, episodes INTEGER)"}, {"answer": "SELECT high_rebounds FROM table_name_15 WHERE date = \"april 7\"", "question": "Who had the highest rebounds of the game on April 7?", "context": "CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_80 WHERE date = \"2003\"", "question": "What is Result, when Date is 2003?", "context": "CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_45 WHERE date = \"1996\"", "question": "What is Record, when Date is 1996?", "context": "CREATE TABLE table_name_45 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT notes FROM table_name_9 WHERE date = \"2007\"", "question": "What is Notes, when Date is 2007?", "context": "CREATE TABLE table_name_9 (notes VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_28 WHERE opponent = \"junior pitbull\"", "question": "What is the highest Round, when the Opponent is Junior Pitbull?", "context": "CREATE TABLE table_name_28 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE result = \"loss\" AND method = \"submission (armbar)\"", "question": "What is Date, when Result is Loss, and when Method is Submission (Armbar)?", "context": "CREATE TABLE table_name_8 (date VARCHAR, result VARCHAR, method VARCHAR)"}, {"answer": "SELECT coombe_road FROM table_name_17 WHERE selsdon = \"evening peak\"", "question": "What is the Coombe Road time with a Selsdon evening peak?", "context": "CREATE TABLE table_name_17 (coombe_road VARCHAR, selsdon VARCHAR)"}, {"answer": "SELECT woodside FROM table_name_81 WHERE coombe_road = \"16:19\"", "question": "What is the Woodside for the 16:19 Coombe Road?", "context": "CREATE TABLE table_name_81 (woodside VARCHAR, coombe_road VARCHAR)"}, {"answer": "SELECT elmers_end FROM table_name_65 WHERE bingham_road = \"09:54\"", "question": "What is the Elmers End with a 09:54 Bingham Road?", "context": "CREATE TABLE table_name_65 (elmers_end VARCHAR, bingham_road VARCHAR)"}, {"answer": "SELECT coombe_road FROM table_name_14 WHERE woodside = \"07:23\"", "question": "What is the Coombe Road with a Woodside time of 07:23?", "context": "CREATE TABLE table_name_14 (coombe_road VARCHAR, woodside VARCHAR)"}, {"answer": "SELECT elmers_end FROM table_name_30 WHERE selsdon = \"17:57\"", "question": "What is the Elmers End with a 17:57 Selsdon time?", "context": "CREATE TABLE table_name_30 (elmers_end VARCHAR, selsdon VARCHAR)"}, {"answer": "SELECT selsdon FROM table_name_14 WHERE coombe_road = \"17:19\"", "question": "What is the Selsdon for the 17:19 Coombe Road?", "context": "CREATE TABLE table_name_14 (selsdon VARCHAR, coombe_road VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_65 WHERE losses < 2", "question": "What is the highest win for losses less than 2?", "context": "CREATE TABLE table_name_65 (wins INTEGER, losses INTEGER)"}, {"answer": "SELECT AVG(byes) FROM table_name_46 WHERE losses = 15 AND against < 1874", "question": "What is the average Byes for the losses of 15, and before 1874?", "context": "CREATE TABLE table_name_46 (byes INTEGER, losses VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_75 WHERE ballarat_fl = \"east point\" AND wins < 16", "question": "What is the sum of against in Ballarat FL of East Point and wins less than 16?", "context": "CREATE TABLE table_name_75 (against INTEGER, ballarat_fl VARCHAR, wins VARCHAR)"}, {"answer": "SELECT school FROM table_name_99 WHERE pick = 24", "question": "What is the School with a Pick that is 24?", "context": "CREATE TABLE table_name_99 (school VARCHAR, pick VARCHAR)"}, {"answer": "SELECT team FROM table_name_86 WHERE player = \"david cooper\"", "question": "What is the Team with a Player that is david cooper?", "context": "CREATE TABLE table_name_86 (team VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(visitors), _2007 FROM table_name_10 WHERE type = \"ski jumping hill\"", "question": "How many visitors in 2007 were there for ski jumping hill?", "context": "CREATE TABLE table_name_10 (_2007 VARCHAR, visitors INTEGER, type VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_26 WHERE rebounds > 100 AND name = \"nikola pekovi\u0107\" AND rank < 4", "question": "What is the highest Games, when Rebounds is greater than 100, when Name is Nikola Pekovi\u0107, and when Rank is less than 4?", "context": "CREATE TABLE table_name_26 (games INTEGER, rank VARCHAR, rebounds VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_99 WHERE rank < 4 AND rebounds < 102", "question": "What is the total number of Games, when Rank is less than 4, and when Rebounds is less than 102?", "context": "CREATE TABLE table_name_99 (games VARCHAR, rank VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_38 WHERE name = \"travis watson\" AND rebounds < 136", "question": "What is the lowest Games, when Name is Travis Watson, and when Rebounds is less than 136?", "context": "CREATE TABLE table_name_38 (games INTEGER, name VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT SUM(rebounds) FROM table_name_56 WHERE team = \"aris thessaloniki\" AND games > 14", "question": "What is the sum of Rebounds, when Team is Aris Thessaloniki, and when Games is greater than 14?", "context": "CREATE TABLE table_name_56 (rebounds INTEGER, team VARCHAR, games VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_52 WHERE name = \"travis watson\" AND games < 14", "question": "What is the highest Rank, when Name is Travis Watson, and when Games is less than 14?", "context": "CREATE TABLE table_name_52 (rank INTEGER, name VARCHAR, games VARCHAR)"}, {"answer": "SELECT authors FROM table_name_90 WHERE novelty = \"gen nov\" AND location = \"south africa\" AND name = \"criocephalosaurus\"", "question": "What is Authors, when Novelty is Gen Nov, when Location is South Africa, and when Name is Criocephalosaurus?", "context": "CREATE TABLE table_name_90 (authors VARCHAR, name VARCHAR, novelty VARCHAR, location VARCHAR)"}, {"answer": "SELECT status FROM table_name_69 WHERE location = \"russia\"", "question": "What is Status, when Location is Russia?", "context": "CREATE TABLE table_name_69 (status VARCHAR, location VARCHAR)"}, {"answer": "SELECT authors FROM table_name_13 WHERE novelty = \"gen et sp nov\" AND name = \"lanthanocephalus\"", "question": "What is Authors, when Novelty is Gen Et Sp Nov, and when Name is Lanthanocephalus?", "context": "CREATE TABLE table_name_13 (authors VARCHAR, novelty VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_51 WHERE authors = \"kammerer & sidor\"", "question": "What is Name, when Authors are Kammerer & Sidor?", "context": "CREATE TABLE table_name_51 (name VARCHAR, authors VARCHAR)"}, {"answer": "SELECT name FROM table_name_88 WHERE location = \"tanzania\" AND novelty = \"gen nov\"", "question": "What is Name, when Location is Tanzania, and when Novelty is Gen Nov?", "context": "CREATE TABLE table_name_88 (name VARCHAR, location VARCHAR, novelty VARCHAR)"}, {"answer": "SELECT name FROM table_name_24 WHERE status = \"valid\" AND authors = \"maisch\" AND location = \"tanzania\" AND novelty = \"gen et sp nov\"", "question": "What is Name, when Status is Valid, when Authors is Maisch, when Location is Tanzania, and when Novelty is Gen Et Sp Nov?", "context": "CREATE TABLE table_name_24 (name VARCHAR, novelty VARCHAR, location VARCHAR, status VARCHAR, authors VARCHAR)"}, {"answer": "SELECT t568a_color FROM table_name_44 WHERE t568b_color = \"white/orange stripe\"", "question": "What is the T568A color for the cable with a white/orange stripe T568B color?", "context": "CREATE TABLE table_name_44 (t568a_color VARCHAR, t568b_color VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE opponent = \"flavia pennetta\"", "question": "What is the Date with an Opponent that is flavia pennetta?", "context": "CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE opponent = \"flavia pennetta\"", "question": "What is the Score with an Opponent that is flavia pennetta?", "context": "CREATE TABLE table_name_55 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_39 WHERE score = \"2\u20136, 6\u20134, 3\u20136\"", "question": "What is the Opponent with a Score that is 2\u20136, 6\u20134, 3\u20136?", "context": "CREATE TABLE table_name_39 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_49 WHERE date = \"may 5, 2012\"", "question": "What is the Outcome with a Date that is may 5, 2012?", "context": "CREATE TABLE table_name_49 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_85 WHERE opponent = \"jelena jankovi\u0107\"", "question": "What is the Outcome with an Opponent that is jelena jankovi\u0107?", "context": "CREATE TABLE table_name_85 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_55 WHERE score = \"2\u20136, 6\u20134, 3\u20136\"", "question": "What is the Tournament with a Score that is 2\u20136, 6\u20134, 3\u20136?", "context": "CREATE TABLE table_name_55 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_57 WHERE date = \"november 13, 1955\" AND attendance > 33 OFFSET 982", "question": "Which week was on November 13, 1955 when the attendance was over 33,982?", "context": "CREATE TABLE table_name_57 (week VARCHAR, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT japanese_name FROM table_name_46 WHERE korean_name = \"chungcheong-bukdo\"", "question": "What is the Japanese name of the Province with a Korean name of Chungcheong-Bukdo?", "context": "CREATE TABLE table_name_46 (japanese_name VARCHAR, korean_name VARCHAR)"}, {"answer": "SELECT hanja___kanji FROM table_name_10 WHERE kana = \"\u3061\u3085\u3046\u305b\u3044\u307b\u304f\u3069\u3046\"", "question": "What is the Hanja/Kanji of the Province with a Kana of \u3061\u3085\u3046\u305b\u3044\u307b\u304f\u3069\u3046?", "context": "CREATE TABLE table_name_10 (hanja___kanji VARCHAR, kana VARCHAR)"}, {"answer": "SELECT kana FROM table_name_2 WHERE korean_name = \"chungcheong-namdo\"", "question": "What is the Kana of the Province with a Korean name of Chungcheong-Namdo?", "context": "CREATE TABLE table_name_2 (kana VARCHAR, korean_name VARCHAR)"}, {"answer": "SELECT hangul FROM table_name_48 WHERE kana = \"\u3078\u3044\u3042\u3093\u306a\u3093\u3069\u3046\"", "question": "What is the Hangul of the Province with a Kana of \u3078\u3044\u3042\u3093\u306a\u3093\u3069\u3046?", "context": "CREATE TABLE table_name_48 (hangul VARCHAR, kana VARCHAR)"}, {"answer": "SELECT hangul FROM table_name_3 WHERE kana = \"\u3061\u3085\u3046\u305b\u3044\u306a\u3093\u3069\u3046\"", "question": "What is the Hangul of the Province with a Kana of \u3061\u3085\u3046\u305b\u3044\u306a\u3093\u3069\u3046?", "context": "CREATE TABLE table_name_3 (hangul VARCHAR, kana VARCHAR)"}, {"answer": "SELECT hanja___kanji FROM table_name_5 WHERE korean_name = \"chungcheong-bukdo\"", "question": "What is the Hanja/Kanji of the Province with a Korean name of Chungcheong-Bukdo?", "context": "CREATE TABLE table_name_5 (hanja___kanji VARCHAR, korean_name VARCHAR)"}, {"answer": "SELECT oct FROM table_name_94 WHERE nov = \"51/30\"", "question": "What were the Oct. temperatures for the city that had Nov. temperatures of 51/30?", "context": "CREATE TABLE table_name_94 (oct VARCHAR, nov VARCHAR)"}, {"answer": "SELECT feb FROM table_name_63 WHERE city = \"east stroudsburg\"", "question": "What were the Feb temperatures in East Stroudsburg?", "context": "CREATE TABLE table_name_63 (feb VARCHAR, city VARCHAR)"}, {"answer": "SELECT SUM(comp) FROM table_name_33 WHERE comp_percentage = 65.4 AND att < 451", "question": "What is the sum of completions that led to completion percentages of 65.4 and attempts under 451?", "context": "CREATE TABLE table_name_33 (comp INTEGER, comp_percentage VARCHAR, att VARCHAR)"}, {"answer": "SELECT regular_season FROM table_name_78 WHERE playoffs = \"conference semifinals\"", "question": "What regular season did the team reach the conference semifinals in the playoffs?", "context": "CREATE TABLE table_name_78 (regular_season VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_name_89 WHERE regular_season = \"2nd, northeast\" AND year < 2008", "question": "When the regular season of 2nd, Northeast and the year was less than 2008 what was the total number of Division?", "context": "CREATE TABLE table_name_89 (division VARCHAR, regular_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT division FROM table_name_97 WHERE regular_season = \"5th, northeast\"", "question": "What division was the regular season 5th, Northeast?", "context": "CREATE TABLE table_name_97 (division VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT result FROM table_name_36 WHERE nomination = \"jam hsiao\" AND year = 2012", "question": "What was the result when Jam Hsiao was nominated in 2012?", "context": "CREATE TABLE table_name_36 (result VARCHAR, nomination VARCHAR, year VARCHAR)"}, {"answer": "SELECT award FROM table_name_55 WHERE category = \"best music video\"", "question": "Which award is in the category of best music video?", "context": "CREATE TABLE table_name_55 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_54 WHERE result = \"l 29\u201323\"", "question": "Which Attendance has a Result of l 29\u201323?", "context": "CREATE TABLE table_name_54 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE week = 1", "question": "When has a Week of 1?", "context": "CREATE TABLE table_name_89 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT week FROM table_name_11 WHERE opponent = \"at seattle seahawks\"", "question": "Which Week has an Opponent of at seattle seahawks?", "context": "CREATE TABLE table_name_11 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_71 WHERE date = \"october 15, 1995\"", "question": "Name the Result on october 15, 1995?", "context": "CREATE TABLE table_name_71 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_81 WHERE week > 2 AND date = \"november 19, 1995\"", "question": "Which Opponent has a Week larger than 2 on november 19, 1995?", "context": "CREATE TABLE table_name_81 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT record__conf_ FROM table_name_73 WHERE conference = \"wac\"", "question": "What is the recorded conference that was a Wac Conference?", "context": "CREATE TABLE table_name_73 (record__conf_ VARCHAR, conference VARCHAR)"}, {"answer": "SELECT conference FROM table_name_26 WHERE school = \"wichita state\"", "question": "What conference has the Wichita State school?", "context": "CREATE TABLE table_name_26 (conference VARCHAR, school VARCHAR)"}, {"answer": "SELECT rank FROM table_name_72 WHERE place = \"burghley\"", "question": "What is the rank for Burghley?", "context": "CREATE TABLE table_name_72 (rank VARCHAR, place VARCHAR)"}, {"answer": "SELECT horse FROM table_name_54 WHERE competition = \"badminton horse trials\"", "question": "What horse was at the Badminton Horse Trials?", "context": "CREATE TABLE table_name_54 (horse VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_89 WHERE matches < 285 AND name = \"des dickson\" AND goals < 219", "question": "What was Des Dickson's lowest rank for matches smaller than 285 and less than 219 goals?", "context": "CREATE TABLE table_name_89 (rank INTEGER, goals VARCHAR, matches VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_94 WHERE matches = 644 AND rank > 3", "question": "How many goals on average had 644 matches and a rank bigger than 3?", "context": "CREATE TABLE table_name_94 (goals INTEGER, matches VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_54 WHERE matches = 205", "question": "How many ranks had 205 matches?", "context": "CREATE TABLE table_name_54 (rank VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_4 WHERE name = \"jimmy jones\" AND matches < 285", "question": "What was Jimmy Jones' rank when the matches were smaller than 285?", "context": "CREATE TABLE table_name_4 (rank INTEGER, name VARCHAR, matches VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE home = \"hornets\"", "question": "Which date had the Hornets as the home team?", "context": "CREATE TABLE table_name_53 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_88 WHERE winning_score = 64 - 69 - 67 - 66 = 266", "question": "What is the To par score corresponding to the winning score of 64-69-67-66=266?", "context": "CREATE TABLE table_name_88 (to_par VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_44 WHERE margin_of_victory = \"1 stroke\"", "question": "What was the To par score for the tournament with a margin of victory of 1 stroke?", "context": "CREATE TABLE table_name_44 (to_par VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_6 WHERE margin_of_victory = \"7 strokes\"", "question": "What was the winning score for the tournament with a margin of victory of 7 strokes?", "context": "CREATE TABLE table_name_6 (winning_score VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT SUM(december) FROM table_name_64 WHERE record = \"6-3-1\"", "question": "What day in December was the game that resulted in a record of 6-3-1?", "context": "CREATE TABLE table_name_64 (december INTEGER, record VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_25 WHERE opponent = \"oakland raiders\" AND week > 7", "question": "How many were in attendance against the Oakland Raiders after week 7?", "context": "CREATE TABLE table_name_25 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_98 WHERE opponent = \"new york jets\"", "question": "What is the average attendance for the New York Jets?", "context": "CREATE TABLE table_name_98 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_51 WHERE date = \"september 21, 1969\" AND attendance < 26 OFFSET 243", "question": "On what week were there 26,243 in attendance on September 21, 1969?", "context": "CREATE TABLE table_name_51 (week VARCHAR, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent_team FROM table_name_18 WHERE match > 2 AND location = \"pasir gudang, malaysia\"", "question": "Who was the opponent at Pasir Gudang, Malaysia with a match larger than 2?", "context": "CREATE TABLE table_name_18 (opponent_team VARCHAR, match VARCHAR, location VARCHAR)"}, {"answer": "SELECT opponent_team FROM table_name_31 WHERE match < 3", "question": "Who was the opponent at the match smaller than 3?", "context": "CREATE TABLE table_name_31 (opponent_team VARCHAR, match INTEGER)"}, {"answer": "SELECT location FROM table_name_78 WHERE opponent_team = \"police s.a.\"", "question": "Where was the game when Police S.A. was the opponent?", "context": "CREATE TABLE table_name_78 (location VARCHAR, opponent_team VARCHAR)"}, {"answer": "SELECT COUNT(list_entry_number) FROM table_name_95 WHERE location = \"platting road, lydgate\"", "question": "How many list entry numbers are located in Platting Road, Lydgate?", "context": "CREATE TABLE table_name_95 (list_entry_number VARCHAR, location VARCHAR)"}, {"answer": "SELECT type FROM table_name_52 WHERE list_entry_number = 1356677", "question": "Which type has list entry number of 1356677?", "context": "CREATE TABLE table_name_52 (type VARCHAR, list_entry_number VARCHAR)"}, {"answer": "SELECT completed FROM table_name_33 WHERE type = \"church\" AND list_entry_number = 1068071", "question": "What is the completed date of the church with list entry number 1068071?", "context": "CREATE TABLE table_name_33 (completed VARCHAR, type VARCHAR, list_entry_number VARCHAR)"}, {"answer": "SELECT scorers FROM table_name_64 WHERE opponent = \"neuch\u00e2tel xamax\" AND date = \"10 december 1985\"", "question": "Who were the scorers in the game against neuch\u00e2tel xamax played on 10 December 1985?", "context": "CREATE TABLE table_name_64 (scorers VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE scorers = \"hegarty\"", "question": "What date was the game played in where hegarty was the scorer?", "context": "CREATE TABLE table_name_94 (date VARCHAR, scorers VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_68 WHERE icao = \"sco\"", "question": "Who is the callsign that has ICAO of SCO?", "context": "CREATE TABLE table_name_68 (callsign VARCHAR, icao VARCHAR)"}, {"answer": "SELECT commenced_operations FROM table_name_34 WHERE icao = \"slk\"", "question": "Who is the commenced operations that has icao of slk?", "context": "CREATE TABLE table_name_34 (commenced_operations VARCHAR, icao VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_3 WHERE commenced_operations < 1976", "question": "Who is the call sign that has a commenced operation before 1976?", "context": "CREATE TABLE table_name_3 (callsign VARCHAR, commenced_operations INTEGER)"}, {"answer": "SELECT hdtv FROM table_name_60 WHERE content = \"music\"", "question": "What is the HDTV of the Music Content Channel?", "context": "CREATE TABLE table_name_60 (hdtv VARCHAR, content VARCHAR)"}, {"answer": "SELECT television_service FROM table_name_36 WHERE content = \"cartomanzia\"", "question": "What is the Television Service offering Cartomanzia?", "context": "CREATE TABLE table_name_36 (television_service VARCHAR, content VARCHAR)"}, {"answer": "SELECT country FROM table_name_32 WHERE content = \"televendite\"", "question": "What Country's content is Televendite?", "context": "CREATE TABLE table_name_32 (country VARCHAR, content VARCHAR)"}, {"answer": "SELECT country FROM table_name_9 WHERE content = \"tv locale\"", "question": "What Country's Content is TV Locale?", "context": "CREATE TABLE table_name_9 (country VARCHAR, content VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_12 WHERE silver > 1 AND rank > 1 AND total > 4 AND bronze > 4", "question": "How many golds had a silver of more than 1, rank more than 1, total of more than 4 when the bronze was also more than 4?", "context": "CREATE TABLE table_name_12 (gold INTEGER, bronze VARCHAR, total VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_99 WHERE gold = 2 AND total > 4", "question": "What is the total of rank when gold is 2 and total is more than 4?", "context": "CREATE TABLE table_name_99 (rank INTEGER, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_53 WHERE gold < 1 AND silver > 1", "question": "What is the total number of bronze when gold is less than 1 and silver is more than 1?", "context": "CREATE TABLE table_name_53 (bronze INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_4 WHERE silver > 1 AND gold = 2 AND total > 4", "question": "What is the total of rank when silver is more than 1, gold is 2, and total is more than 4?", "context": "CREATE TABLE table_name_4 (rank INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_86 WHERE top_25 = 3 AND top_5 > 1", "question": "What is the Wins with a Top-25 of 3, and a Top-5 larger than 1?", "context": "CREATE TABLE table_name_86 (wins INTEGER, top_25 VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT cuts_made FROM table_name_53 WHERE top_5 < 3 AND top_25 < 6 AND events = 10", "question": "Which Cuts made has a Top-5 smaller than 3, and a Top-25 smaller than 6, and an Events of 10?", "context": "CREATE TABLE table_name_53 (cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_25 WHERE cuts_made < 9 AND events = 10", "question": "Which Tournament has a Cuts made smaller than 9, and an Events of 10?", "context": "CREATE TABLE table_name_25 (tournament VARCHAR, cuts_made VARCHAR, events VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_89 WHERE class = \"250cc\" AND rank = \"13th\" AND year > 1955", "question": "What is the sum of Points for 250cc class, ranked 13th, later than 1955?", "context": "CREATE TABLE table_name_89 (points INTEGER, year VARCHAR, class VARCHAR, rank VARCHAR)"}, {"answer": "SELECT class FROM table_name_30 WHERE year > 1958 AND points = 4", "question": "What is the Class for a year later than 1958, with 4 points?", "context": "CREATE TABLE table_name_30 (class VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_45 WHERE points > 3 AND team = \"mv agusta\" AND rank = \"10th\"", "question": "What is the average Year when there were more than 3 points, for MV Agusta and ranked 10th?", "context": "CREATE TABLE table_name_45 (year INTEGER, rank VARCHAR, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_93 WHERE class = \"350cc\" AND points < 13 AND year = 1959", "question": "What Team has a Class of 350cc, with less than 13 points in 1959?", "context": "CREATE TABLE table_name_93 (team VARCHAR, year VARCHAR, class VARCHAR, points VARCHAR)"}, {"answer": "SELECT event FROM table_name_20 WHERE location = \"manly beach\"", "question": "Which event was held at Manly Beach?", "context": "CREATE TABLE table_name_20 (event VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_99 WHERE country = \"australia\" AND event = \"havaianas beachley classic\"", "question": "What was the location of the Havaianas Beachley Classic, held in Australia?", "context": "CREATE TABLE table_name_99 (location VARCHAR, country VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_31 WHERE country = \"brazil\"", "question": "Which event was held in Brazil?", "context": "CREATE TABLE table_name_31 (event VARCHAR, country VARCHAR)"}, {"answer": "SELECT region FROM table_name_4 WHERE host = \"university of colorado\"", "question": "The University of Colorado hosted what region?", "context": "CREATE TABLE table_name_4 (region VARCHAR, host VARCHAR)"}, {"answer": "SELECT city FROM table_name_60 WHERE venue = \"peterson gym\"", "question": "Peterson Gym is in what city?", "context": "CREATE TABLE table_name_60 (city VARCHAR, venue VARCHAR)"}, {"answer": "SELECT state FROM table_name_70 WHERE region = \"mideast\" AND host = \"university of tennessee\"", "question": "Mideast region host University of Tennessee is in what state?", "context": "CREATE TABLE table_name_70 (state VARCHAR, region VARCHAR, host VARCHAR)"}, {"answer": "SELECT city FROM table_name_10 WHERE region = \"east\" AND venue = \"university hall (university of virginia)\"", "question": "What city is east region venue University Hall (University of Virginia) in?", "context": "CREATE TABLE table_name_10 (city VARCHAR, region VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_19 WHERE host = \"stanford university\"", "question": "What is the venue at Stanford University?", "context": "CREATE TABLE table_name_19 (venue VARCHAR, host VARCHAR)"}, {"answer": "SELECT venue FROM table_name_22 WHERE city = \"seattle\"", "question": "What is the venue in Seattle?", "context": "CREATE TABLE table_name_22 (venue VARCHAR, city VARCHAR)"}, {"answer": "SELECT team FROM table_name_5 WHERE race_name = \"tour de santa catarina\"", "question": "What team won the Tour de Santa Catarina?", "context": "CREATE TABLE table_name_5 (team VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT AVG(uci_rating) FROM table_name_88 WHERE team = \"relax-gam\"", "question": "What is Relax-Gam's average UCI Rating?", "context": "CREATE TABLE table_name_88 (uci_rating INTEGER, team VARCHAR)"}, {"answer": "SELECT MIN(uci_rating) FROM table_name_3 WHERE race_name = \"vuelta a ecuador\"", "question": "What is Vuelta a Ecuador's lowest UCI Rating?", "context": "CREATE TABLE table_name_3 (uci_rating INTEGER, race_name VARCHAR)"}, {"answer": "SELECT result FROM table_name_73 WHERE attendance = \"54,110\"", "question": "What was the result of the game attended by 54,110?", "context": "CREATE TABLE table_name_73 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE attendance = \"45,122\"", "question": "What was the date of the game attended by 45,122?", "context": "CREATE TABLE table_name_39 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_35 WHERE attendance = \"60,233\"", "question": "What is the earliest week with a game attended by 60,233?", "context": "CREATE TABLE table_name_35 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_43 WHERE result = \"l 12\u20137\"", "question": "What is the latest week with a game with a result of l 12\u20137?", "context": "CREATE TABLE table_name_43 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_75 WHERE tournament = \"mci classic\"", "question": "What is Runner(s)-up, when Tournament is MCI Classic?", "context": "CREATE TABLE table_name_75 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_53 WHERE date = \"jul 27, 1997\"", "question": "What is Winning Score, when Date is Jul 27, 1997?", "context": "CREATE TABLE table_name_53 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_37 WHERE runner_s__up = \"ted purdy\"", "question": "What is Winning Score, when Runner(s)-up is Ted Purdy?", "context": "CREATE TABLE table_name_37 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM table_name_38 WHERE control = \"public\" AND location = \"golden, colorado\" AND founded > 1874", "question": "What is the enrollment number for the public institution in Golden, Colorado founded after 1874?", "context": "CREATE TABLE table_name_38 (enrollment INTEGER, founded VARCHAR, control VARCHAR, location VARCHAR)"}, {"answer": "SELECT team FROM table_name_96 WHERE year < 2007 AND class = \"gts\"", "question": "Which Team has a Year smaller than 2007, and a Class of gts?", "context": "CREATE TABLE table_name_96 (team VARCHAR, year VARCHAR, class VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_82 WHERE co_drivers = \"j\u00e9r\u00f4me policand christopher campbell\"", "question": "In what year Year has a Co-Drivers of j\u00e9r\u00f4me policand christopher campbell?", "context": "CREATE TABLE table_name_82 (year INTEGER, co_drivers VARCHAR)"}, {"answer": "SELECT language FROM table_name_27 WHERE content = \"monoscopio\"", "question": "What is Language, when Content is Monoscopio?", "context": "CREATE TABLE table_name_27 (language VARCHAR, content VARCHAR)"}, {"answer": "SELECT television_service FROM table_name_90 WHERE content = \"presentazione\"", "question": "What is Television Service, when Content is Presentazione?", "context": "CREATE TABLE table_name_90 (television_service VARCHAR, content VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_74 WHERE television_service = \"sky inside\"", "question": "What is Package/Option, when Television Service is Sky Inside?", "context": "CREATE TABLE table_name_74 (package_option VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_63 WHERE television_service = \"sky inside\"", "question": "What is Package/Option, when Television Service is Sky Inside?", "context": "CREATE TABLE table_name_63 (package_option VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_64 WHERE performer = \"fe-mail\"", "question": "What is the sum of Points, when the Performer is fe-mail?", "context": "CREATE TABLE table_name_64 (points INTEGER, performer VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_46 WHERE time = \"15:04\"", "question": "What is the score for set 3 with a time at 15:04?", "context": "CREATE TABLE table_name_46 (set_3 VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE set_3 = \"29\u201327\"", "question": "What was the overall score when the score of set 3 was 29\u201327?", "context": "CREATE TABLE table_name_63 (score VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_74 WHERE set_3 = \"25\u201322\"", "question": "What was the score for set 2 when set 3 was 25\u201322?", "context": "CREATE TABLE table_name_74 (set_2 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE set_1 = \"23\u201325\"", "question": "What was the overall score when set 1 was 23\u201325?", "context": "CREATE TABLE table_name_33 (score VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_40 WHERE player = \"amal mccaskill\"", "question": "What school/club team did Amal McCaskill play for?", "context": "CREATE TABLE table_name_40 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_87 WHERE player = \"mike miller\"", "question": "Mike Miller played for what school/club team?", "context": "CREATE TABLE table_name_87 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_13 WHERE school_club_team = \"maryland\"", "question": "Who is the player that played for the school/club team Maryland?", "context": "CREATE TABLE table_name_13 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_5 WHERE player = \"cuttino mobley\"", "question": "Cuttino Mobley is what nationality?", "context": "CREATE TABLE table_name_5 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_70 WHERE nationality = \"united states\" AND player = \"corey maggette\"", "question": "Corey Maggette from the United States plays what position?", "context": "CREATE TABLE table_name_70 (position VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_55 WHERE position = \"forward-center\" AND player = \"amal mccaskill\"", "question": "Amal McCaskill who plays forward-center played for what school/club team?", "context": "CREATE TABLE table_name_55 (school_club_team VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT servedby FROM table_name_1 WHERE local_authority_[a_] = \"thurrock\" AND station = \"ockendon\"", "question": "Which Servedby has a Local authority [a ] of thurrock, and a Station of ockendon?", "context": "CREATE TABLE table_name_1 (servedby VARCHAR, station VARCHAR, local_authority_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_44 WHERE tournament = \"puebla\"", "question": "What is the Opponents from the final with a Tournament that is puebla?", "context": "CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE venue = \"al-rashid stadium, dubai\"", "question": "What was the date of the game held at the Al-Rashid Stadium, Dubai?", "context": "CREATE TABLE table_name_13 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT round_of_16 FROM table_name_83 WHERE ranking_round_rank = 5", "question": "What is the Round of 16 value for the nation with a value of 5 for Ranking Round Rank?", "context": "CREATE TABLE table_name_83 (round_of_16 VARCHAR, ranking_round_rank VARCHAR)"}, {"answer": "SELECT team FROM table_name_53 WHERE first_round = \"1:00\"", "question": "What Team had the first round of 1:00?", "context": "CREATE TABLE table_name_53 (team VARCHAR, first_round VARCHAR)"}, {"answer": "SELECT city_state FROM table_name_24 WHERE team = \"atlanta hawks (retired)\"", "question": "What City/State did the Atlanta Hawks (retired) team play for?", "context": "CREATE TABLE table_name_24 (city_state VARCHAR, team VARCHAR)"}, {"answer": "SELECT final_round FROM table_name_59 WHERE members = \"chris webber\"", "question": "What was the final round value for member Chris Webber?", "context": "CREATE TABLE table_name_59 (final_round VARCHAR, members VARCHAR)"}, {"answer": "SELECT first_round FROM table_name_14 WHERE members = \"kenny smith\"", "question": "What was the first round time for member Kenny Smith?", "context": "CREATE TABLE table_name_14 (first_round VARCHAR, members VARCHAR)"}, {"answer": "SELECT team FROM table_name_17 WHERE date = \"december 30\"", "question": "Which team was the opponent on December 30?", "context": "CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT content FROM table_name_1 WHERE television_service = \"ewtn\"", "question": "What content is provided by the television service ewtn?", "context": "CREATE TABLE table_name_1 (content VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT content FROM table_name_94 WHERE country = \"united kingdom\" AND television_service = \"ewtn\"", "question": "What is the content of the television service ewtn in the United Kingdom?", "context": "CREATE TABLE table_name_94 (content VARCHAR, country VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_24 WHERE country = \"italy\" AND language = \"italian\"", "question": "What is the package/option for Italy when the language is italian?", "context": "CREATE TABLE table_name_24 (package_option VARCHAR, country VARCHAR, language VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_68 WHERE content = \"religione\" AND country = \"italy\"", "question": "What is the package/option in Italy when the content is religione?", "context": "CREATE TABLE table_name_68 (package_option VARCHAR, content VARCHAR, country VARCHAR)"}, {"answer": "SELECT television_service FROM table_name_46 WHERE language = \"italian\"", "question": "Which television service has italian for its language?", "context": "CREATE TABLE table_name_46 (television_service VARCHAR, language VARCHAR)"}, {"answer": "SELECT hdtv FROM table_name_50 WHERE television_service = \"daystar television network\"", "question": "Does daystar television network provide HDTV?", "context": "CREATE TABLE table_name_50 (hdtv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_58 WHERE home_team = \"oxford united\"", "question": "What was the Attendance when Oxford United was the Home team?", "context": "CREATE TABLE table_name_58 (attendance INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_90 WHERE away_team = \"farnborough town\"", "question": "What was the Home team when Farnborough Town was the Away team?", "context": "CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_9 WHERE home_team = \"blackpool\"", "question": "What was the Away Team of Blackpool's Home game?", "context": "CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_76 WHERE rank = \"9\"", "question": "Which Bronze has a Rank of 9?", "context": "CREATE TABLE table_name_76 (bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_78 WHERE gold < 1 AND rank = \"17\" AND nation = \"china\"", "question": "Which Bronze has a Gold smaller than 1, and a Rank of 17, and a Nation of china?", "context": "CREATE TABLE table_name_78 (bronze INTEGER, nation VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_82 WHERE bronze < 1 AND total > 1 AND silver = 1", "question": "Which Nation has a Bronze smaller than 1, and a Total larger than 1, and a Silver of 1?", "context": "CREATE TABLE table_name_82 (nation VARCHAR, silver VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_59 WHERE rank = \"17\" AND gold > 0", "question": "Which Total has a Rank of 17, and a Gold larger than 0?", "context": "CREATE TABLE table_name_59 (total INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_99 WHERE rank = \"15\" AND total < 2", "question": "Which Gold has a Rank of 15, and a Total smaller than 2?", "context": "CREATE TABLE table_name_99 (gold INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT games FROM table_name_86 WHERE tied = 10", "question": "What is the number of games for the season with 10 ties?", "context": "CREATE TABLE table_name_86 (games VARCHAR, tied VARCHAR)"}, {"answer": "SELECT surface FROM table_name_63 WHERE opponent_in_the_final = \"nathalie dechy meilen tu\"", "question": "What was the surface where the opponent was Nathalie Dechy Meilen Tu?", "context": "CREATE TABLE table_name_63 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT series_leader FROM table_name_64 WHERE date = \"may 31\"", "question": "What is the Series leader with a Date that is may 31?", "context": "CREATE TABLE table_name_64 (series_leader VARCHAR, date VARCHAR)"}, {"answer": "SELECT series_leader FROM table_name_93 WHERE date = \"october 9\"", "question": "What is the Series leader with a Date that is october 9?", "context": "CREATE TABLE table_name_93 (series_leader VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_10 WHERE date = \"january 10, 1994\"", "question": "Which Tournament has a Date of january 10, 1994?", "context": "CREATE TABLE table_name_10 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_51 WHERE date = \"june 10, 1996\"", "question": "Which Opponents in the final have a Date of june 10, 1996?", "context": "CREATE TABLE table_name_51 (opponents_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_40 WHERE date = \"june 10, 1996\"", "question": "Who's the Opponents in the final with a Date of june 10, 1996?", "context": "CREATE TABLE table_name_40 (opponents_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_17 WHERE opponents_in_the_final = \"maria lindstr\u00f6m maria strandlund\"", "question": "Which Tournament has Opponents in the final of maria lindstr\u00f6m maria strandlund?", "context": "CREATE TABLE table_name_17 (tournament VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT third FROM table_name_25 WHERE teams = 13 AND season = 1996", "question": "What country came in third when there were 13 teams in 1996?", "context": "CREATE TABLE table_name_25 (third VARCHAR, teams VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(season) FROM table_name_21 WHERE venue = \"donington park\" AND second = \"brazil\"", "question": "What is the sum of season when the venue was donington park, and Brazil came in second?", "context": "CREATE TABLE table_name_21 (season INTEGER, venue VARCHAR, second VARCHAR)"}, {"answer": "SELECT AVG(season) FROM table_name_64 WHERE venue = \"circuit de nevers magny-cours\" AND drivers > 30", "question": "What is the average Season when the venue was circuit de nevers magny-cours, and Drivers was more than 30?", "context": "CREATE TABLE table_name_64 (season INTEGER, venue VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_91 WHERE percentage = 54.83 AND points > 8", "question": "What is the total number of Losses when the percentage is 54.83, with more than 8 points?", "context": "CREATE TABLE table_name_91 (losses VARCHAR, percentage VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points_for) FROM table_name_72 WHERE points_against > 780 AND points < 0", "question": "What is the average Points For when there are Points Against more than 780, and Points smaller than 0?", "context": "CREATE TABLE table_name_72 (points_for INTEGER, points_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_85 WHERE points_against = 594 AND losses > 3", "question": "What is the average Points when the Points Against is 594, and Losses is more than 3?", "context": "CREATE TABLE table_name_85 (points INTEGER, points_against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(percentage) FROM table_name_80 WHERE wins > 0 AND points_against > 481 AND losses = 8 AND points_for > 826", "question": "What is the average Percentage when there are more than 0 wins, Points Against is more than 481, Losses of 8, and a Points For larger than 826?", "context": "CREATE TABLE table_name_80 (percentage INTEGER, points_for VARCHAR, losses VARCHAR, wins VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_46 WHERE club = \"broadview hawks\" AND points_against > 594", "question": "What is the lowest Wins when the Club is broadview hawks, and Points Against is more than 594?", "context": "CREATE TABLE table_name_46 (wins INTEGER, club VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT goalkeeper FROM table_name_32 WHERE mins < 2160", "question": "What Goalkeeper has MINS less than 2160", "context": "CREATE TABLE table_name_32 (goalkeeper VARCHAR, mins INTEGER)"}, {"answer": "SELECT MAX(shts) FROM table_name_56 WHERE goalkeeper = \"kasey keller\"", "question": "What is the highest SHTS of Kasey Keller", "context": "CREATE TABLE table_name_56 (shts INTEGER, goalkeeper VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_49 WHERE total > 1 AND rank > 1 AND gold > 1", "question": "What is the most number of Bronze medals won among the countries that have won more than 1 medal, more than 1 gold medal, and have a rank bigger than 1?", "context": "CREATE TABLE table_name_49 (bronze INTEGER, gold VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_35 WHERE ballarat_fl = \"melton\" AND draws < 0", "question": "What is the total number of Losses that Melton had when they had fewer Draws than 0?", "context": "CREATE TABLE table_name_35 (losses INTEGER, ballarat_fl VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_74 WHERE ballarat_fl = \"lake wendouree\" AND losses > 7", "question": "What is the lowest number of Against that Lake Wendouree had when they had more than 7 Losses?", "context": "CREATE TABLE table_name_74 (against INTEGER, ballarat_fl VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_84 WHERE against = 1136 AND draws < 0", "question": "What was the total number of Byes for the team that had 1136 Against and fewer than 0 Draws?", "context": "CREATE TABLE table_name_84 (byes VARCHAR, against VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_52 WHERE against > 1427 AND wins > 5", "question": "What was the greatest number of Losses for the team that had 1427 Against and more than 5 Wins?", "context": "CREATE TABLE table_name_52 (losses INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(byes) FROM table_name_13 WHERE losses = 15 AND wins < 1", "question": "What is the average number of Byes for the team that had 15 Losses, and less than 1 Win?", "context": "CREATE TABLE table_name_13 (byes INTEGER, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT nation FROM table_name_54 WHERE total < 19 AND bronze < 1", "question": "Which nation's total is less than 19 when there's less than 1 bronze?", "context": "CREATE TABLE table_name_54 (nation VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_73 WHERE nation = \"chile\" AND silver > 0", "question": "How many totals does Chile have when the number of silvers is more than 0?", "context": "CREATE TABLE table_name_73 (total VARCHAR, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT record FROM table_name_22 WHERE method = \"tko (punches and elbows)\"", "question": "What was the record when TKO (punches and elbows) was the method?", "context": "CREATE TABLE table_name_22 (record VARCHAR, method VARCHAR)"}, {"answer": "SELECT venue FROM table_name_7 WHERE player = \"don bradman (nsw)\"", "question": "What venue has don bradman (nsw) as the player?", "context": "CREATE TABLE table_name_7 (venue VARCHAR, player VARCHAR)"}, {"answer": "SELECT rank FROM table_name_82 WHERE player = \"bill ponsford (vic)\"", "question": "What rank has Bill Ponsford (vic) as the player?", "context": "CREATE TABLE table_name_82 (rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT match FROM table_name_9 WHERE player = \"clem hill (sa)\"", "question": "What match has Clem Hill (sa) as the player?", "context": "CREATE TABLE table_name_9 (match VARCHAR, player VARCHAR)"}, {"answer": "SELECT competition FROM table_name_56 WHERE date = \"december 25, 1925\"", "question": "Who played on December 25, 1925?", "context": "CREATE TABLE table_name_56 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_40 WHERE competition = \"south american championship\" AND date = \"december 13, 1925\"", "question": "What was the score for the South American Championship dated December 13, 1925?", "context": "CREATE TABLE table_name_40 (result VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(house_of_rep_seats) FROM table_name_52 WHERE abbr = \"d66\"", "question": "What is the average number of House of Representatives seats had an abbreviation of d66?", "context": "CREATE TABLE table_name_52 (house_of_rep_seats INTEGER, abbr VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_69 WHERE date = \"oct 17, 1982\"", "question": "For the tournament played on Oct 17, 1982, what was the winning score?", "context": "CREATE TABLE table_name_69 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_67 WHERE margin_of_victory = \"5 strokes\" AND date = \"nov 13, 1988\"", "question": "For the tournament played Nov 13, 1988, ending with a margin of victory of 5 strokes, who was the runner-up?", "context": "CREATE TABLE table_name_67 (runner_s__up VARCHAR, margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_18 WHERE 2006 = \"grand slam tournaments\"", "question": "What is 2008, when 2006 is \"Grand Slam Tournaments\"?", "context": "CREATE TABLE table_name_18 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_54 WHERE 2003 = \"1r\"", "question": "What is 2007, when 2003 is 1R?", "context": "CREATE TABLE table_name_54 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_66 WHERE 2012 = \"3r\"", "question": "What is the Tournament, when 2012 is 3R?", "context": "CREATE TABLE table_name_66 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_41 WHERE 2009 = \"grand slam tournaments\"", "question": "What is Tournament, when 2009 is \"Grand Slam Tournaments\"?", "context": "CREATE TABLE table_name_41 (tournament VARCHAR)"}, {"answer": "SELECT free AS polite FROM table_name_70 WHERE genitive_3 = \"*ni-da\"", "question": "Which Free polite has a Genitive 3 of *ni-da?", "context": "CREATE TABLE table_name_70 (free VARCHAR, genitive_3 VARCHAR)"}, {"answer": "SELECT free AS polite FROM table_name_13 WHERE genitive_1 = * = ku", "question": "Which Free polite has a Genitive 1 of *=ku?", "context": "CREATE TABLE table_name_13 (free VARCHAR, ku VARCHAR, genitive_1 VARCHAR)"}, {"answer": "SELECT free AS polite FROM table_name_40 WHERE genitive_3 = \"*n(i)-ami\"", "question": "Which Free polite has a Genitive 3 of *n(i)-ami?", "context": "CREATE TABLE table_name_40 (free VARCHAR, genitive_3 VARCHAR)"}, {"answer": "SELECT genitive_1 FROM table_name_57 WHERE genitive_3 = \"*n(i)-ia\"", "question": "Which Genitive 1 has a Genitive 3 of *n(i)-ia?", "context": "CREATE TABLE table_name_57 (genitive_1 VARCHAR, genitive_3 VARCHAR)"}, {"answer": "SELECT proto_oceanic FROM table_name_43 WHERE verb = \"to sew\"", "question": "What is the Proto-Oceanic verb for the verb to sew?", "context": "CREATE TABLE table_name_43 (proto_oceanic VARCHAR, verb VARCHAR)"}, {"answer": "SELECT verb FROM table_name_86 WHERE proto_austronesian = \"*diri\"", "question": "What is the verb for the Proto-Austronesian word *diri?", "context": "CREATE TABLE table_name_86 (verb VARCHAR, proto_austronesian VARCHAR)"}, {"answer": "SELECT proto_oceanic FROM table_name_44 WHERE verb = \"to die, be dead\"", "question": "What is the Proto-Oceanic verb for to die, be dead?", "context": "CREATE TABLE table_name_44 (proto_oceanic VARCHAR, verb VARCHAR)"}, {"answer": "SELECT verb FROM table_name_43 WHERE proto_polynesian = \"*mohe\"", "question": "What is the verb for the Proto-Polynesian word *mohe?", "context": "CREATE TABLE table_name_43 (verb VARCHAR, proto_polynesian VARCHAR)"}, {"answer": "SELECT proto_austronesian FROM table_name_53 WHERE proto_polynesian = \"*tui\"", "question": "What is the Proto-Austronesian word for the Proto-Polynesian word *tui?", "context": "CREATE TABLE table_name_53 (proto_austronesian VARCHAR, proto_polynesian VARCHAR)"}, {"answer": "SELECT proto_malayo_polynesian FROM table_name_71 WHERE proto_oceanic = \"*saqit, *turi\"", "question": "What is the Proto-Malayo-Polynesian word for the Proto-Oceanic word of *saqit, *turi?", "context": "CREATE TABLE table_name_71 (proto_malayo_polynesian VARCHAR, proto_oceanic VARCHAR)"}, {"answer": "SELECT station FROM table_name_81 WHERE genre = \"talk music\" AND language = \"malay english\"", "question": "What station has a genre of talk music and is in Malay English language?", "context": "CREATE TABLE table_name_81 (station VARCHAR, genre VARCHAR, language VARCHAR)"}, {"answer": "SELECT genre FROM table_name_93 WHERE station = \"fly fm\"", "question": "Which genre is the fly fm station?", "context": "CREATE TABLE table_name_93 (genre VARCHAR, station VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_71 WHERE genre = \"talk music\" AND station = \"xfm\"", "question": "What frequency is the xfm station, which is part of the talk music genre?", "context": "CREATE TABLE table_name_71 (frequency VARCHAR, genre VARCHAR, station VARCHAR)"}, {"answer": "SELECT coverage_area FROM table_name_65 WHERE genre = \"music\" AND station = \"muzik fm\"", "question": "What is the coverage area of muzik fm station, which has a music genre?", "context": "CREATE TABLE table_name_65 (coverage_area VARCHAR, genre VARCHAR, station VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_78 WHERE laps > 196 AND year < 2010", "question": "What is Co-Drivers, when Laps is greater than 196, and when Year is before 2010?", "context": "CREATE TABLE table_name_78 (co_drivers VARCHAR, laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE week > 3 AND attendance = \"bye\"", "question": "What is the Date when the week is more than 3 and the attendance shows bye?", "context": "CREATE TABLE table_name_39 (date VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE week > 9 AND attendance = \"65,858\"", "question": "What is the Result when the week is later than 9, and there are 65,858 people in attendance?", "context": "CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT 1938 FROM table_name_49 WHERE 1948 = \"n/a\"", "question": "What is the 1938 that has N/A for 1948?", "context": "CREATE TABLE table_name_49 (Id VARCHAR)"}, {"answer": "SELECT 1953 FROM table_name_52 WHERE 1947 = \"2\" AND 1938 = \"dne\"", "question": "What 1953 has 2 for 1947, and dne as 1938?", "context": "CREATE TABLE table_name_52 (Id VARCHAR)"}, {"answer": "SELECT 1935 FROM table_name_6 WHERE 1953 = \"4\"", "question": "What 1935 has 4 as a 1953?", "context": "CREATE TABLE table_name_6 (Id VARCHAR)"}, {"answer": "SELECT 1953 FROM table_name_48 WHERE 1949 = \"2\" AND 1952 = \"3\"", "question": "What 1953 has 2 as a 1949, and 3 as 1952?", "context": "CREATE TABLE table_name_48 (Id VARCHAR)"}, {"answer": "SELECT 1941 FROM table_name_7 WHERE 1945 = \"n/a\" AND 1948 = \"n/a\" AND 1953 = \"9\"", "question": "What 1941 has N/A as 1945, N/A for 1948, and 9 for 1953?", "context": "CREATE TABLE table_name_7 (Id VARCHAR)"}, {"answer": "SELECT 1951 FROM table_name_26 WHERE 1948 = \"dne\"", "question": "What 1951 has dne for 1948?", "context": "CREATE TABLE table_name_26 (Id VARCHAR)"}, {"answer": "SELECT cup_apps__sub_ FROM table_name_59 WHERE cup_goals = \"2\"", "question": "Which Cup Apps (sub) had 2 goals?", "context": "CREATE TABLE table_name_59 (cup_apps__sub_ VARCHAR, cup_goals VARCHAR)"}, {"answer": "SELECT total_apps__sub_ FROM table_name_39 WHERE total_goals = \"6\"", "question": "Which Total Apps (sub) has 6 goals total?", "context": "CREATE TABLE table_name_39 (total_apps__sub_ VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT airline FROM table_name_87 WHERE iata = \"bx\"", "question": "What airline has a IATA of BX?", "context": "CREATE TABLE table_name_87 (airline VARCHAR, iata VARCHAR)"}, {"answer": "SELECT icao FROM table_name_8 WHERE airline = \"asiana airlines\"", "question": "What is the ICAO for Asiana Airlines?", "context": "CREATE TABLE table_name_8 (icao VARCHAR, airline VARCHAR)"}, {"answer": "SELECT commenced_operations FROM table_name_61 WHERE icao = \"kal\"", "question": "What is the commenced operation where the ICAO is KAL?", "context": "CREATE TABLE table_name_61 (commenced_operations VARCHAR, icao VARCHAR)"}, {"answer": "SELECT icao FROM table_name_63 WHERE callsign = \"air busan\"", "question": "What is the ICAO for Air Busan?", "context": "CREATE TABLE table_name_63 (icao VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_80 WHERE icao = \"aar\"", "question": "What is the callsign where the ICAO is AAR?", "context": "CREATE TABLE table_name_80 (callsign VARCHAR, icao VARCHAR)"}, {"answer": "SELECT AVG(tries) FROM table_name_7 WHERE goals < 0", "question": "What is the average Tries with less than 0 goals?", "context": "CREATE TABLE table_name_7 (tries INTEGER, goals INTEGER)"}, {"answer": "SELECT COUNT(points) FROM table_name_60 WHERE tries < 1 AND goals > 0", "question": "What is the total number of Points with less than 1 tries, and more than 0 goals?", "context": "CREATE TABLE table_name_60 (points VARCHAR, tries VARCHAR, goals VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_44 WHERE caps > 9 AND player = \"ben franks\"", "question": "Which club/province has more than 9 caps and Ben Franks as a player?", "context": "CREATE TABLE table_name_44 (club_province VARCHAR, caps VARCHAR, player VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_27 WHERE runner_s__up = \"ian baker-finch\"", "question": "In which tournament was Ian Baker-Finch the runner-up?", "context": "CREATE TABLE table_name_27 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_5 WHERE date = \"feb 3, 1991\"", "question": "What tournament was played on Feb 3, 1991?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_28 WHERE tournament = \"phoenix open\"", "question": "In the Phoenix Open, what was the winning score?", "context": "CREATE TABLE table_name_28 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_41 WHERE runner_s__up = \"stuart appleby\"", "question": "In the tournament where Stuart Appleby was the runner-up, what was the margin of victory?", "context": "CREATE TABLE table_name_41 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_21 WHERE points > 30", "question": "What is the lowest number played with more than 30 points?", "context": "CREATE TABLE table_name_21 (played INTEGER, points INTEGER)"}, {"answer": "SELECT MAX(lost) FROM table_name_58 WHERE points > 29 AND against < 19", "question": "What is the highest number lost with more than 29 points and an against less than 19?", "context": "CREATE TABLE table_name_58 (lost INTEGER, points VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_76 WHERE difference = \"22\" AND against < 34", "question": "What is the total number played with a difference of 22 and less than 34 against?", "context": "CREATE TABLE table_name_76 (played VARCHAR, difference VARCHAR, against VARCHAR)"}, {"answer": "SELECT western_title FROM table_name_92 WHERE pinyin = \"new ch\u0101oj\u00ed m\u01cel\u00ec\u014du xi\u014dngd\u00ec\"", "question": "What is the western title of the pinyin new ch\u0101oj\u00ed m\u01cel\u00ec\u014du xi\u014dngd\u00ec?", "context": "CREATE TABLE table_name_92 (western_title VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT genre FROM table_name_17 WHERE game_modes = \"single-player\" AND chinese_title = \"\u6478\u6478\u74e6\u529b\u6b27\u5236\u9020\"", "question": "What is the genre of the Chinese title \u6478\u6478\u74e6\u529b\u6b27\u5236\u9020, which has a single-player game mode?", "context": "CREATE TABLE table_name_17 (genre VARCHAR, game_modes VARCHAR, chinese_title VARCHAR)"}, {"answer": "SELECT pinyin FROM table_name_78 WHERE chinese_title = \"\u76f4\u611f\u4e00\u7b14\"", "question": "What is the pinyin for the Chinese title \u76f4\u611f\u4e00\u7b14?", "context": "CREATE TABLE table_name_78 (pinyin VARCHAR, chinese_title VARCHAR)"}, {"answer": "SELECT released_date FROM table_name_46 WHERE chinese_title = \"\u6478\u6478\u74e6\u529b\u6b27\u5236\u9020\"", "question": "What is the release date for the Chinese title \u6478\u6478\u74e6\u529b\u6b27\u5236\u9020?", "context": "CREATE TABLE table_name_46 (released_date VARCHAR, chinese_title VARCHAR)"}, {"answer": "SELECT western_title FROM table_name_56 WHERE genre = \"puzzle\"", "question": "What is the western title for the puzzle genre?", "context": "CREATE TABLE table_name_56 (western_title VARCHAR, genre VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_56 WHERE time = \"+7.277\" AND grid > 6", "question": "What is the total number of laps for the time of +7.277 and the grid number of more than 6?", "context": "CREATE TABLE table_name_56 (laps INTEGER, time VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_43 WHERE time = \"+8.051\" AND laps < 23", "question": "What is the smallest grid when the time is +8.051 and there were less than 23 laps?", "context": "CREATE TABLE table_name_43 (grid INTEGER, time VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_91 WHERE matches = 205 AND rank > 9", "question": "What is the average number of goals for players ranked above 9 and playing more than 205 matches?", "context": "CREATE TABLE table_name_91 (goals INTEGER, matches VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_92 WHERE matches < 205 AND goals < 100", "question": "What is the average rank for players with under 205 matches and under 100 goals?", "context": "CREATE TABLE table_name_92 (rank INTEGER, matches VARCHAR, goals VARCHAR)"}, {"answer": "SELECT years FROM table_name_82 WHERE rank < 10 AND matches > 271 AND goals = 152", "question": "What years played did the player with a rank under 10, more than 271 matches, and 152 goals have?", "context": "CREATE TABLE table_name_82 (years VARCHAR, goals VARCHAR, rank VARCHAR, matches VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_32 WHERE communist_ticket = \"elizabeth gurley flynn\"", "question": "Who's the Republican ticket with a Communist ticket of elizabeth gurley flynn?", "context": "CREATE TABLE table_name_32 (republican_ticket VARCHAR, communist_ticket VARCHAR)"}, {"answer": "SELECT communist_ticket FROM table_name_49 WHERE american_labor_ticket = \"joseph v. o'leary\"", "question": "Who's the Communist ticket with an American Labor ticket of joseph v. o'leary?", "context": "CREATE TABLE table_name_49 (communist_ticket VARCHAR, american_labor_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_62 WHERE democratic_ticket = \"flora d. johnson\"", "question": "Who's the Republican ticket with a Democratic ticket of flora d. johnson?", "context": "CREATE TABLE table_name_62 (republican_ticket VARCHAR, democratic_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_8 WHERE communist_ticket = \"(none)\" AND socialist_ticket = \"joseph g. glass\"", "question": "Who's the Republican ticket with a Communist ticket of (none), and a Socialist ticket of joseph g. glass?", "context": "CREATE TABLE table_name_8 (republican_ticket VARCHAR, communist_ticket VARCHAR, socialist_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_49 WHERE democratic_ticket = \"matthew j. merritt\"", "question": "Who's the Republican ticket with a Democratic ticket of matthew j. merritt?", "context": "CREATE TABLE table_name_49 (republican_ticket VARCHAR, democratic_ticket VARCHAR)"}, {"answer": "SELECT Giant AS slalom FROM table_name_94 WHERE super_g = \"37\"", "question": "What is the giant slalom with a 37 super g?", "context": "CREATE TABLE table_name_94 (Giant VARCHAR, super_g VARCHAR)"}, {"answer": "SELECT season FROM table_name_87 WHERE round = \"first round\" AND result = \"4\u20131, 0\u20131\"", "question": "What season had a game in the first round with a result of 4\u20131, 0\u20131?", "context": "CREATE TABLE table_name_87 (season VARCHAR, round VARCHAR, result VARCHAR)"}, {"answer": "SELECT country FROM table_name_44 WHERE opponent = \"sampdoria\"", "question": "What country had an opponent of Sampdoria?", "context": "CREATE TABLE table_name_44 (country VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_64 WHERE round = \"second round\"", "question": "Who was the opponent during the second round?", "context": "CREATE TABLE table_name_64 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT result FROM table_name_5 WHERE round = \"second round\"", "question": "What was the result of the second round?", "context": "CREATE TABLE table_name_5 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE attendance = \"26,880\"", "question": "What Opponent has an Attendance that is 26,880?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT nation FROM table_name_95 WHERE record = \"5.06m(16ft7in)\"", "question": "What nation has a Record of 5.06m(16ft7in)?", "context": "CREATE TABLE table_name_95 (nation VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE nation = \"russia\" AND venue = \"madrid , spain\"", "question": "What is the Date when Russia was the nation and the venue was madrid , spain?", "context": "CREATE TABLE table_name_47 (date VARCHAR, nation VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE athlete = \"yelena isinbayeva\" AND record = \"4.90m(16ft0\u00bein)\"", "question": "What is the Date when yelena isinbayeva was the Athlete, with a Record of 4.90m(16ft0\u00bein)?", "context": "CREATE TABLE table_name_45 (date VARCHAR, athlete VARCHAR, record VARCHAR)"}, {"answer": "SELECT nation FROM table_name_62 WHERE athlete = \"emma george\" AND record = \"4.58m(15ft0\u00bcin)\"", "question": "What is the Nation when the Athlete was emma george, and a Record of 4.58m(15ft0\u00bcin)?", "context": "CREATE TABLE table_name_62 (nation VARCHAR, athlete VARCHAR, record VARCHAR)"}, {"answer": "SELECT tied FROM table_name_19 WHERE losses = \"8\" AND win__percentage = \"50%\"", "question": "Who tied with 8 losses and 50% wins?", "context": "CREATE TABLE table_name_19 (tied VARCHAR, losses VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT wins FROM table_name_34 WHERE losses = \"ipl\"", "question": "Which win has a loss of IPL?", "context": "CREATE TABLE table_name_34 (wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT wins FROM table_name_71 WHERE win__percentage = \"38.67%\"", "question": "Which win has 38.67% wins?", "context": "CREATE TABLE table_name_71 (wins VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT win__percentage FROM table_name_4 WHERE losses = \"48\"", "question": "What percentage of wins has 48 losses?", "context": "CREATE TABLE table_name_4 (win__percentage VARCHAR, losses VARCHAR)"}, {"answer": "SELECT tied FROM table_name_50 WHERE played = \"15\"", "question": "What was tied at 15 played?", "context": "CREATE TABLE table_name_50 (tied VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_36 WHERE player = \"john markham\"", "question": "What was the average round for john markham draft pick?", "context": "CREATE TABLE table_name_36 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT school FROM table_name_91 WHERE pick < 125 AND player = \"will allen\"", "question": "What school did draft pick before 125, will allen go to?", "context": "CREATE TABLE table_name_91 (school VARCHAR, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_name_6 WHERE round = 3", "question": "What school did draft pick from round 3 go to?", "context": "CREATE TABLE table_name_6 (school VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_85 WHERE team = \"paulistano\" AND points > 39", "question": "What is the fewest games lost by Paulistano with more than 39 points?", "context": "CREATE TABLE table_name_85 (lost INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_97 WHERE played > 22", "question": "How many games were played against when the team played more than 22 total?", "context": "CREATE TABLE table_name_97 (against INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(against) FROM table_name_62 WHERE difference = \"58\" AND played > 22", "question": "What was the highest number of against when the difference was 58 and the total played was more than 22?", "context": "CREATE TABLE table_name_62 (against INTEGER, difference VARCHAR, played VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE winning_team = \"san antonio spurs\"", "question": "What is the Score with a Winning team that is san antonio spurs?", "context": "CREATE TABLE table_name_48 (score VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_72 WHERE attendance = \"60,705\"", "question": "Which Result has an Attendance of 60,705?", "context": "CREATE TABLE table_name_72 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_82 WHERE result = \"w 17\u201313\"", "question": "How many Weeks have a Result of w 17\u201313?", "context": "CREATE TABLE table_name_82 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_78 WHERE week > 3 AND date = \"october 6, 1991\"", "question": "Which Opponent that has a Week larger than 3 on october 6, 1991?", "context": "CREATE TABLE table_name_78 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE attendance = \"45,795\"", "question": "When has Attendances of 45,795?", "context": "CREATE TABLE table_name_7 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_32 WHERE result = \"l 24\u201320\" AND opponent = \"at new england patriots\"", "question": "In what Week has a Result of l 24\u201320, and a Opponent of at new england patriots?", "context": "CREATE TABLE table_name_32 (week INTEGER, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT years FROM table_name_41 WHERE goals < 160", "question": "What years were the goals less then 160?", "context": "CREATE TABLE table_name_41 (years VARCHAR, goals INTEGER)"}, {"answer": "SELECT iata FROM table_name_19 WHERE icao = \"hlls\"", "question": "What is the IATA code for the airport with an ICAO code of HLLS?", "context": "CREATE TABLE table_name_19 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_43 WHERE city = \"sabha\"", "question": "What airport is in Sabha?", "context": "CREATE TABLE table_name_43 (airport VARCHAR, city VARCHAR)"}, {"answer": "SELECT icao FROM table_name_1 WHERE iata = \"rba\"", "question": "What is the ICAO code for the airport with RBA as its IATA code?", "context": "CREATE TABLE table_name_1 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT country FROM table_name_11 WHERE city = \"istanbul\"", "question": "What country is Istanbul in?", "context": "CREATE TABLE table_name_11 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT airport FROM table_name_86 WHERE iata = \"seb\"", "question": "Which airport has SEB as its IATA code?", "context": "CREATE TABLE table_name_86 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT position FROM table_name_89 WHERE school_club_team = \"winston-salem state\"", "question": "What position does the player from Winston-Salem State play?", "context": "CREATE TABLE table_name_89 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_23 WHERE rank = \"6th\" AND draw < 5", "question": "What is the total number of points for the song that was ranked 6th and had a draw number smaller than 5?", "context": "CREATE TABLE table_name_23 (points VARCHAR, rank VARCHAR, draw VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_78 WHERE floors > 75", "question": "When was the average year that the number of floors was greater than 75?", "context": "CREATE TABLE table_name_78 (year INTEGER, floors INTEGER)"}, {"answer": "SELECT AVG(floors) FROM table_name_59 WHERE name = \"venetian tower\"", "question": "What is the average number of floors of the Venetian tower?", "context": "CREATE TABLE table_name_59 (floors INTEGER, name VARCHAR)"}, {"answer": "SELECT arena FROM table_name_5 WHERE founded = 2000", "question": "Which arena was founded in 2000?", "context": "CREATE TABLE table_name_5 (arena VARCHAR, founded VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_58 WHERE matches = \"427\" AND goals < 320", "question": "Can you tell me the total number of Rank that has the Matches of 427, and the Goals smaller than 320?", "context": "CREATE TABLE table_name_58 (rank VARCHAR, matches VARCHAR, goals VARCHAR)"}, {"answer": "SELECT matches FROM table_name_89 WHERE rank = 1", "question": "Can you tell me the Matches that has the Rank of 1?", "context": "CREATE TABLE table_name_89 (matches VARCHAR, rank VARCHAR)"}, {"answer": "SELECT matches FROM table_name_55 WHERE rank < 6 AND years = \"1943-62\"", "question": "Can you tell me the Matches that has the Rank smaller than 6, and the Years of 1943-62?", "context": "CREATE TABLE table_name_55 (matches VARCHAR, rank VARCHAR, years VARCHAR)"}, {"answer": "SELECT class FROM table_name_52 WHERE number < 4 AND built = \"1988\"", "question": "Which class had a number under 4 and was built in 1988?", "context": "CREATE TABLE table_name_52 (class VARCHAR, number VARCHAR, built VARCHAR)"}, {"answer": "SELECT COUNT(withdrawn) FROM table_name_93 WHERE number > 5", "question": "How many items withdrawn had numbers over 5?", "context": "CREATE TABLE table_name_93 (withdrawn VARCHAR, number INTEGER)"}, {"answer": "SELECT SUM(number) FROM table_name_65 WHERE type = \"driving van trailer\"", "question": "What is the sum of numbers that had a type of Driving Van Trailer?", "context": "CREATE TABLE table_name_65 (number INTEGER, type VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_61 WHERE silver = 1 AND total > 3 AND gold > 2", "question": "What rank has 1 silver, more than 2 gold, and a total larger than 3?", "context": "CREATE TABLE table_name_61 (rank VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_42 WHERE silver < 0", "question": "What is the most gold where silver is 0?", "context": "CREATE TABLE table_name_42 (gold INTEGER, silver INTEGER)"}, {"answer": "SELECT COUNT(silver) FROM table_name_16 WHERE rank > 4 AND bronze < 1", "question": "What is the number of silver where the rank is higher than 4 and bronze is smaller than 1?", "context": "CREATE TABLE table_name_16 (silver VARCHAR, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_70 WHERE gold < 0", "question": "What is the rank where the gold is 0?", "context": "CREATE TABLE table_name_70 (rank INTEGER, gold INTEGER)"}, {"answer": "SELECT COUNT(rank) FROM table_name_63 WHERE bronze = 1 AND silver > 1", "question": "What is the rank that has 1 bronze and 1 silver?", "context": "CREATE TABLE table_name_63 (rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(launch_failures) FROM table_name_73 WHERE launched = 4 AND not_usable > 0", "question": "What is the total launch failures when there are 4 launches, and the not usable is greater than 0?", "context": "CREATE TABLE table_name_73 (launch_failures INTEGER, launched VARCHAR, not_usable VARCHAR)"}, {"answer": "SELECT MAX(not_usable) FROM table_name_30 WHERE launch_failures > 0 AND retired < 30 AND block = \"block i\"", "question": "What is the highest number of not usable satellites when there are more than 0 launch failures, less than 30 retired, and the block is I?", "context": "CREATE TABLE table_name_30 (not_usable INTEGER, block VARCHAR, launch_failures VARCHAR, retired VARCHAR)"}, {"answer": "SELECT AVG(not_usable) FROM table_name_46 WHERE retired = 0 AND launch_failures < 1", "question": "What is the average number of not usable satellited when there are 0 retired, and the launch failures are less than 1?", "context": "CREATE TABLE table_name_46 (not_usable INTEGER, retired VARCHAR, launch_failures VARCHAR)"}, {"answer": "SELECT MIN(cultural_and_educational_panel) FROM table_name_28 WHERE university_of_dublin < 3 AND industrial_and_commercial_panel > 0 AND agricultural_panel > 4", "question": "What is the lowest number of members on the Cultural and Educational Panel, when the University of Dublin had 3 members, when the Industrial and Commercial Panel had more than 0 members, and when the Agricultural Panel had more than 4 members?", "context": "CREATE TABLE table_name_28 (cultural_and_educational_panel INTEGER, agricultural_panel VARCHAR, university_of_dublin VARCHAR, industrial_and_commercial_panel VARCHAR)"}, {"answer": "SELECT AVG(nominated_by_the_taoiseach) FROM table_name_10 WHERE agricultural_panel < 1 AND administrative_panel < 0", "question": "What was the average number of members Nominated by the Taoiseach, when the Agricultural Panel had less than 1 member, and when the Administrative Panel had fewer than 0 members?", "context": "CREATE TABLE table_name_10 (nominated_by_the_taoiseach INTEGER, agricultural_panel VARCHAR, administrative_panel VARCHAR)"}, {"answer": "SELECT MIN(agricultural_panel) FROM table_name_29 WHERE industrial_and_commercial_panel = 9 AND national_university_of_ireland > 3", "question": "What was the lowest number of members on the Agricultural Panel, when the Industrial and Commercial Panel had 9 members, and when the National University of Ireland had more than 3 members?", "context": "CREATE TABLE table_name_29 (agricultural_panel INTEGER, industrial_and_commercial_panel VARCHAR, national_university_of_ireland VARCHAR)"}, {"answer": "SELECT MAX(national_university_of_ireland) FROM table_name_57 WHERE total = 60 AND administrative_panel > 7", "question": "What was the greatest number of members for the National University of Ireland, when the Total number of members in the Seanad was 60, and when the Administrative Panel had more than 7 members?", "context": "CREATE TABLE table_name_57 (national_university_of_ireland INTEGER, total VARCHAR, administrative_panel VARCHAR)"}, {"answer": "SELECT final_round FROM table_name_50 WHERE player = \"danilo gallinari\"", "question": "What is Final round, when Player is Danilo Gallinari?", "context": "CREATE TABLE table_name_50 (final_round VARCHAR, player VARCHAR)"}, {"answer": "SELECT singapore_gross FROM table_name_64 WHERE director = \"1998\"", "question": "For the film with director listed as 1998, what was the gross in Singapore?", "context": "CREATE TABLE table_name_64 (singapore_gross VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_96 WHERE producer = \"river films\"", "question": "Who was the director for the film produced by River Films?", "context": "CREATE TABLE table_name_96 (director VARCHAR, producer VARCHAR)"}, {"answer": "SELECT producer FROM table_name_45 WHERE director = \"1998\"", "question": "Who was the producer for the film directed by 1998?", "context": "CREATE TABLE table_name_45 (producer VARCHAR, director VARCHAR)"}, {"answer": "SELECT singapore_gross FROM table_name_3 WHERE title = \"1997\"", "question": "For the film titled 1997, what was the gross in Singapore?", "context": "CREATE TABLE table_name_3 (singapore_gross VARCHAR, title VARCHAR)"}, {"answer": "SELECT producer FROM table_name_42 WHERE director = \"1997\"", "question": "Who was the producer for the film directed by 1997?", "context": "CREATE TABLE table_name_42 (producer VARCHAR, director VARCHAR)"}, {"answer": "SELECT singapore_gross FROM table_name_66 WHERE director = \"1991\"", "question": "For the directed by 1991, what was the gross in Singapore?", "context": "CREATE TABLE table_name_66 (singapore_gross VARCHAR, director VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_36 WHERE goals_scored < 25 AND draws = 3 AND games_played > 21", "question": "What is the most points scored for teams with under 25 goals scored, 3 draws, and more than 21 games played?", "context": "CREATE TABLE table_name_36 (points INTEGER, games_played VARCHAR, goals_scored VARCHAR, draws VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE set_1 = \"25-18\"", "question": "What day was there a set 1 of 25-18?", "context": "CREATE TABLE table_name_23 (date VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT week FROM table_name_92 WHERE kickoff___et__ = \"4:05 pm\" AND result = \"w 31\u201314\"", "question": "What is the Week when the kick off was at 4:05 pm, and the result was w 31\u201314?", "context": "CREATE TABLE table_name_92 (week VARCHAR, kickoff___et__ VARCHAR, result VARCHAR)"}, {"answer": "SELECT kickoff___et__ FROM table_name_31 WHERE opponent = \"miami dolphins\"", "question": "What time was the kickoff when the miami dolphins were the opponent?", "context": "CREATE TABLE table_name_31 (kickoff___et__ VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round_2 FROM table_name_56 WHERE round_4 = \"double\" AND round_3 = \"single\"", "question": "What is Round 2 when Round 4 is Double and Round 3 is Single?", "context": "CREATE TABLE table_name_56 (round_2 VARCHAR, round_4 VARCHAR, round_3 VARCHAR)"}, {"answer": "SELECT points FROM table_name_29 WHERE country = \"united kingdom\" AND place = 10", "question": "What points has united kingdom as the country, and 10 as the place?", "context": "CREATE TABLE table_name_29 (points VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT machine FROM table_name_68 WHERE rider = \"tony rutter\"", "question": "What machine has tony rutter as the rider?", "context": "CREATE TABLE table_name_68 (machine VARCHAR, rider VARCHAR)"}, {"answer": "SELECT machine FROM table_name_95 WHERE place = 5", "question": "What machine has 5 as the place?", "context": "CREATE TABLE table_name_95 (machine VARCHAR, place VARCHAR)"}, {"answer": "SELECT SUM(place) FROM table_name_30 WHERE machine = \"yamaha\" AND speed = \"89.85mph\"", "question": "How many places have yamaha as the machine, and 89.85mph as the speed?", "context": "CREATE TABLE table_name_30 (place INTEGER, machine VARCHAR, speed VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_21 WHERE artist = \"big hit\" AND votes < 2934", "question": "How many places did the artist Big Hit have with less than 2934 votes?", "context": "CREATE TABLE table_name_21 (place VARCHAR, artist VARCHAR, votes VARCHAR)"}, {"answer": "SELECT AVG(votes) FROM table_name_58 WHERE place < 6 AND producer = \"carlos coelho\" AND draw > 5", "question": "How many average votes did producer carlos coelho have in a higher place than 6 and with a draw larger than 5?", "context": "CREATE TABLE table_name_58 (votes INTEGER, draw VARCHAR, place VARCHAR, producer VARCHAR)"}, {"answer": "SELECT myspace_band FROM table_name_38 WHERE original_airdate = \"19 february 2008\"", "question": "What is the name of the MySpace Band with an Original Airdate of 19 february 2008?", "context": "CREATE TABLE table_name_38 (myspace_band VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT musical_guest_song_performed FROM table_name_99 WHERE pilot = \"3\"", "question": "What is the Musical Guest/Song with a pilot of 3?", "context": "CREATE TABLE table_name_99 (musical_guest_song_performed VARCHAR, pilot VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_name_26 WHERE youtube_hero = \"greg pattillo\"", "question": "What is the Original Airdate for the YouTube Hero greg pattillo?", "context": "CREATE TABLE table_name_26 (original_airdate VARCHAR, youtube_hero VARCHAR)"}, {"answer": "SELECT musical_guest_song_performed FROM table_name_85 WHERE original_airdate = \"january 2008\"", "question": "What is the Musical Guest/Song with an original airdate of january 2008?", "context": "CREATE TABLE table_name_85 (musical_guest_song_performed VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT pilot FROM table_name_76 WHERE youtube_hero = \"greg pattillo\"", "question": "What is the Pilot number for the YouTube Hero greg pattillo?", "context": "CREATE TABLE table_name_76 (pilot VARCHAR, youtube_hero VARCHAR)"}, {"answer": "SELECT myspace_band FROM table_name_77 WHERE original_airdate = \"25 march 2008\"", "question": "What is the name of the MySpace Band with an Original Airdate of 25 march 2008?", "context": "CREATE TABLE table_name_77 (myspace_band VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT COUNT(top_25) FROM table_name_23 WHERE wins = 0 AND cuts_made = 1 AND events > 5", "question": "What is the total number of top-25s for tournaments that had 0 wins, 1 cut made, and more than 5 events?", "context": "CREATE TABLE table_name_23 (top_25 VARCHAR, events VARCHAR, wins VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(top_5) FROM table_name_90 WHERE wins > 1", "question": "What is the fewest number of top-5s for events with more than 1 win?", "context": "CREATE TABLE table_name_90 (top_5 INTEGER, wins INTEGER)"}, {"answer": "SELECT MAX(top_25) FROM table_name_15 WHERE wins < 0", "question": "What is the highest number of top-25s for events with 0 wins?", "context": "CREATE TABLE table_name_15 (top_25 INTEGER, wins INTEGER)"}, {"answer": "SELECT home_leg FROM table_name_88 WHERE opponents = \"rotor volgograd\"", "question": "What is the home leg who are opponents of rotor volgograd", "context": "CREATE TABLE table_name_88 (home_leg VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT round FROM table_name_33 WHERE opponents = \"ajax\"", "question": "What is the round with ajax opponents", "context": "CREATE TABLE table_name_33 (round VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT acquisition_via FROM table_name_79 WHERE position = \"forward\" AND school_club_team = \"state\"", "question": "Which acquisition via has a position of forward and is on the state school or club?", "context": "CREATE TABLE table_name_79 (acquisition_via VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT acquisition_via FROM table_name_82 WHERE school_club_team = \"state\"", "question": "Which is the acquisition via that has a school or club team of state?", "context": "CREATE TABLE table_name_82 (acquisition_via VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_50 WHERE name = \"allen gamboa\"", "question": "What is the position of Allen Gamboa?", "context": "CREATE TABLE table_name_50 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_7 WHERE number = 16", "question": "Which position is number 16?", "context": "CREATE TABLE table_name_7 (position VARCHAR, number VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_80 WHERE date = \"tba\" AND designated_home = \"oakland raiders\"", "question": "What year had a date of TBA where the Oakland raiders were the home team?", "context": "CREATE TABLE table_name_80 (year INTEGER, date VARCHAR, designated_home VARCHAR)"}, {"answer": "SELECT designated_home FROM table_name_34 WHERE date = \"october 28\" AND designated_visitors = \"new england patriots\"", "question": "Who was the home team on October 28 when the new england patriots were the visitors?", "context": "CREATE TABLE table_name_34 (designated_home VARCHAR, date VARCHAR, designated_visitors VARCHAR)"}, {"answer": "SELECT designated_visitors FROM table_name_42 WHERE designated_home = \"atlanta falcons\"", "question": "Who were the visitors when the Atlanta Falcons were the home team?", "context": "CREATE TABLE table_name_42 (designated_visitors VARCHAR, designated_home VARCHAR)"}, {"answer": "SELECT designated_home FROM table_name_53 WHERE television = \"fox\" AND year > 2007 AND date = \"october 23\"", "question": "Who were the home team during the game that aired on Fox after 2007 on October 23?", "context": "CREATE TABLE table_name_53 (designated_home VARCHAR, date VARCHAR, television VARCHAR, year VARCHAR)"}, {"answer": "SELECT birthplace FROM table_name_86 WHERE weight__kg_ = 98 AND birthdate = \"may 1, 1984\"", "question": "What was the birthplace of the player who weighs 98 KG and was born on May 1, 1984?", "context": "CREATE TABLE table_name_86 (birthplace VARCHAR, weight__kg_ VARCHAR, birthdate VARCHAR)"}, {"answer": "SELECT name_v_t_e FROM table_name_32 WHERE weight__kg_ = 84 AND position = \"d\" AND jersey_number = 2", "question": "What was the Name v t e, of the player whose Weight (kg) was 84, whose Position was D, and whose Jersey number was 2?", "context": "CREATE TABLE table_name_32 (name_v_t_e VARCHAR, jersey_number VARCHAR, weight__kg_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(win__percentage) FROM table_name_20 WHERE opposition = \"perth scorchers\"", "question": "What is the lowest win percentage for when Perth Scorchers is the opposition?", "context": "CREATE TABLE table_name_20 (win__percentage INTEGER, opposition VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE week = 13", "question": "On which date was the game played on Week 13?", "context": "CREATE TABLE table_name_22 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(std_saps) FROM table_name_55 WHERE opt_saps = \"0-11\"", "question": "What is the total number of Std SAPs with 0-11 Opt SAPS?", "context": "CREATE TABLE table_name_55 (std_saps VARCHAR, opt_saps VARCHAR)"}, {"answer": "SELECT zaaps___ziips FROM table_name_36 WHERE model = \"e64\"", "question": "For Model e64 what is the zAAPs/zIIPs?", "context": "CREATE TABLE table_name_36 (zaaps___ziips VARCHAR, model VARCHAR)"}, {"answer": "SELECT ifls___uifls FROM table_name_77 WHERE model = \"e12\"", "question": "For Model e12 what is the IFLs/uIFLs?", "context": "CREATE TABLE table_name_77 (ifls___uifls VARCHAR, model VARCHAR)"}, {"answer": "SELECT player FROM table_name_5 WHERE school_club_team = \"illinois\"", "question": "Which Player has a School/Club Team of Illinois?", "context": "CREATE TABLE table_name_5 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_12 WHERE position = \"guard-forward\" AND school_club_team = \"pepperdine\"", "question": "Which Player plays Guard-Forward Position for School/Club Team Pepperdine?", "context": "CREATE TABLE table_name_12 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_84 WHERE player = \"vince carter\"", "question": "What Position does the Player Vince Carter hold?", "context": "CREATE TABLE table_name_84 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_95 WHERE player = \"vince carter\"", "question": "Which School/Club Team does Vince Carter Play for?", "context": "CREATE TABLE table_name_95 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE school_club_team = \"illinois\"", "question": "Who is the Player for School/Club Team Illinois?", "context": "CREATE TABLE table_name_22 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE result = \"7-0\"", "question": "What score has 7-0 as the result?", "context": "CREATE TABLE table_name_56 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_71 WHERE result = \"17-1\"", "question": "What competition has 17-1 as the result?", "context": "CREATE TABLE table_name_71 (competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_38 WHERE result = \"17-1\"", "question": "What competition has 17-1 as the result?", "context": "CREATE TABLE table_name_38 (competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_48 WHERE set_1 = \"25-23\" AND set_5 = \"17-19\"", "question": "What is the set 2 with a 25-23 set 1 and a 17-19 set 5?", "context": "CREATE TABLE table_name_48 (set_2 VARCHAR, set_1 VARCHAR, set_5 VARCHAR)"}, {"answer": "SELECT set_5 FROM table_name_55 WHERE set_3 = \"25-23\"", "question": "What is the set 5 with a 25-23 set 3?", "context": "CREATE TABLE table_name_55 (set_5 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_13 WHERE college = \"fairmont state\" AND round > 10", "question": "Who had the high pick of the round of 10 for Fairmont State college?", "context": "CREATE TABLE table_name_13 (pick INTEGER, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_57 WHERE pick = 402", "question": "What was the name of the player for pick 402?", "context": "CREATE TABLE table_name_57 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE week = 4", "question": "What is the date of the week 4 game?", "context": "CREATE TABLE table_name_76 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_73 WHERE date = \"october 17, 1965\"", "question": "What is the result of the game on October 17, 1965?", "context": "CREATE TABLE table_name_73 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_34 WHERE name = \"viktors dobrecovs\" AND matches < 325", "question": "What is the Rank for Viktors Dobrecovs with less than 325 Matches?", "context": "CREATE TABLE table_name_34 (rank INTEGER, name VARCHAR, matches VARCHAR)"}, {"answer": "SELECT AVG(matches) FROM table_name_2 WHERE name = \"vits rimkus\" AND rank < 3", "question": "What is the number of Matches for Vits Rimkus with a Rank of less than 3?", "context": "CREATE TABLE table_name_2 (matches INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE location = \"michie stadium \u2022 west point, ny\"", "question": "What is the Date for the game at michie stadium \u2022 west point, ny?", "context": "CREATE TABLE table_name_80 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_20 WHERE location = \"groves stadium \u2022 winston-salem, nc\" AND result = \"t 17-17\"", "question": "What is the Opponent when the location was groves stadium \u2022 winston-salem, nc, with a result of t 17-17?", "context": "CREATE TABLE table_name_20 (opponent VARCHAR, location VARCHAR, result VARCHAR)"}, {"answer": "SELECT lms_nos FROM table_name_63 WHERE date = \"1879-81\" AND no_built = 4", "question": "In 1879-81 with number built 4, what is the LMS nos?", "context": "CREATE TABLE table_name_63 (lms_nos VARCHAR, date VARCHAR, no_built VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE class = 157", "question": "On which date was the class 157?", "context": "CREATE TABLE table_name_40 (date VARCHAR, class VARCHAR)"}, {"answer": "SELECT MIN(ends_lost) FROM table_name_95 WHERE locale = \"norway\" AND blank_ends > 17", "question": "Can you tell me the lowest Ends Lost that has the Locale of norway, and the Blank Ends larger than 17?", "context": "CREATE TABLE table_name_95 (ends_lost INTEGER, locale VARCHAR, blank_ends VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_65 WHERE winning_score = 68 - 67 - 69 - 65 = 269", "question": "What was the Margin of Victory of winning score 68-67-69-65=269?", "context": "CREATE TABLE table_name_65 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_52 WHERE winning_score = 71 - 66 - 70 - 67 = 274", "question": "What is the To Par of winning score 71-66-70-67=274?", "context": "CREATE TABLE table_name_52 (to_par VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_96 WHERE winning_score = 67 - 61 - 68 - 67 = 263", "question": "Which tournament had a winning score of 67-61-68-67=263?", "context": "CREATE TABLE table_name_96 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_3 WHERE points = \"5\" AND tries_against = \"2\"", "question": "How many tries for are associated with 5 points and 2 tries against?", "context": "CREATE TABLE table_name_3 (tries_for VARCHAR, points VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_82 WHERE tries_for = \"0\"", "question": "What is the losing bonus associated with 0 tries for?", "context": "CREATE TABLE table_name_82 (losing_bonus VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_35 WHERE drawn > 5 AND points > 18", "question": "What's the highest against score that drew more than 5, and had more than 18 points?", "context": "CREATE TABLE table_name_35 (against INTEGER, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_33 WHERE played < 17", "question": "What's the number of losses where played was less than 17?", "context": "CREATE TABLE table_name_33 (lost VARCHAR, played INTEGER)"}, {"answer": "SELECT AVG(position) FROM table_name_53 WHERE team = \"ypiranga-sp\" AND lost < 7", "question": "What is team ypiranga-sp's average position when they lost by less than 7?", "context": "CREATE TABLE table_name_53 (position INTEGER, team VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_86 WHERE location = \"groves stadium \u2022 winston-salem, nc\" AND result = \"l 0-14\"", "question": "What was the attendance for the game at groves stadium \u2022 winston-salem, nc with a result of L 0-14?", "context": "CREATE TABLE table_name_86 (attendance VARCHAR, location VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_64 WHERE result = \"l 0-14\"", "question": "Who was the opponent when the result was L 0-14?", "context": "CREATE TABLE table_name_64 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT position FROM table_name_45 WHERE hometown = \"queens, ny\"", "question": "What is the name of the position of the person whose hometown is Queens, NY?", "context": "CREATE TABLE table_name_45 (position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_name_50 WHERE name = \"tim andree\"", "question": "What is Tim Andree's greatest number?", "context": "CREATE TABLE table_name_50 (number INTEGER, name VARCHAR)"}, {"answer": "SELECT MIN(number) FROM table_name_90 WHERE hometown = \"bellwood, il\"", "question": "What is the lowest number of the player with a hometown of Bellwood, IL?", "context": "CREATE TABLE table_name_90 (number INTEGER, hometown VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE attendance = \"2,444\"", "question": "What is Score, when Attendance is 2,444?", "context": "CREATE TABLE table_name_33 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_44 WHERE tie_no = \"replay\" AND attendance = \"2,048\"", "question": "What is Home Team, when Tie No is Replay, and when Attendance is 2,048?", "context": "CREATE TABLE table_name_44 (home_team VARCHAR, tie_no VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE tie_no = \"17\"", "question": "What is Score, when Tie No is 17?", "context": "CREATE TABLE table_name_81 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_16 WHERE tie_no = \"4\"", "question": "What is Away Team, when Tie No is 4?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE attendance = \"3,416\"", "question": "What is Score, when Attendance is 3,416?", "context": "CREATE TABLE table_name_29 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(Away) AS losses FROM table_name_64 WHERE no_result > 0 AND losses > 6 AND matches > 91", "question": "What is the sum of Away Losses with a No Result of more than 0, losses of more than 6, and matches of more than 91?", "context": "CREATE TABLE table_name_64 (Away INTEGER, matches VARCHAR, no_result VARCHAR, losses VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_95 WHERE date = \"december 29, 2008\"", "question": "What stadium was the December 29, 2008 game played at?", "context": "CREATE TABLE table_name_95 (stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT bowl_game FROM table_name_77 WHERE conference_matchups = \"ohio state vs. texas\"", "question": "Which bowl game had a conference matchup of Ohio State vs. Texas?", "context": "CREATE TABLE table_name_77 (bowl_game VARCHAR, conference_matchups VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_74 WHERE bowl_game = \"fiesta bowl\"", "question": "What stadium was the Fiesta Bowl played at?", "context": "CREATE TABLE table_name_74 (stadium VARCHAR, bowl_game VARCHAR)"}, {"answer": "SELECT payout___us$__ FROM table_name_59 WHERE bowl_game = \"insight bowl\"", "question": "What was the payout in US dollars at the Insight Bowl?", "context": "CREATE TABLE table_name_59 (payout___us$__ VARCHAR, bowl_game VARCHAR)"}, {"answer": "SELECT conference_matchups FROM table_name_81 WHERE payout___us$__ = \"$3 million\"", "question": "What was the conference matchup in the bowl game with a $3 million payout?", "context": "CREATE TABLE table_name_81 (conference_matchups VARCHAR, payout___us$__ VARCHAR)"}, {"answer": "SELECT conference_matchups FROM table_name_66 WHERE city = \"glendale, arizona\"", "question": "What was the conference matchup for the bowl game played in Glendale, Arizona?", "context": "CREATE TABLE table_name_66 (conference_matchups VARCHAR, city VARCHAR)"}, {"answer": "SELECT team FROM table_name_59 WHERE tries_for < 10", "question": "Which Team has Tries for smaller than 10?", "context": "CREATE TABLE table_name_59 (team VARCHAR, tries_for INTEGER)"}, {"answer": "SELECT MAX(tries_against) FROM table_name_9 WHERE points_against > 109", "question": "Which Tries against have Points against larger than 109?", "context": "CREATE TABLE table_name_9 (tries_against INTEGER, points_against INTEGER)"}, {"answer": "SELECT SUM(tries_against) FROM table_name_91 WHERE points_against = 95 AND tries_for > 20", "question": "What Tries against that have a Points against of 95 and Tries for larger than 20?", "context": "CREATE TABLE table_name_91 (tries_against INTEGER, points_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT SUM(tries_for) FROM table_name_38 WHERE team = \"neath\" AND points_against > 109", "question": "What Tries for has a Team of neath, and Points against larger than 109?", "context": "CREATE TABLE table_name_38 (tries_for INTEGER, team VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT SUM(points_against) FROM table_name_37 WHERE team = \"harlequins\" AND tries_against < 8", "question": "How many Points against that have a Team of harlequins and Tries against smaller than 8?", "context": "CREATE TABLE table_name_37 (points_against INTEGER, team VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT power FROM table_name_90 WHERE class = \"a\" AND identifier = \"cboc-fm\"", "question": "What is the power that belongs to Class A with an Identifier of CBOC-FM?", "context": "CREATE TABLE table_name_90 (power VARCHAR, class VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT class FROM table_name_31 WHERE frequency = \"91.9 fm\"", "question": "Which class has a frequency of 91.9 fm?", "context": "CREATE TABLE table_name_31 (class VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT power FROM table_name_98 WHERE class = \"lp\" AND identifier = \"cbli\"", "question": "What power belongs to the LP Class and has an Identifier of CBLI?", "context": "CREATE TABLE table_name_98 (power VARCHAR, class VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_77 WHERE class = \"c1\" AND identifier = \"cbcd-fm\"", "question": "Which city has a C1 class and Identifier of CBCD-FM?", "context": "CREATE TABLE table_name_77 (city_of_license VARCHAR, class VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT power FROM table_name_40 WHERE identifier = \"cbli\"", "question": "Which Power has a CBLI Identifier?", "context": "CREATE TABLE table_name_40 (power VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT recnet FROM table_name_75 WHERE class = \"a\" AND power = \"3,000 watts\"", "question": "What is the RECNet belonging to Class A with a Power of 3,000 watts?", "context": "CREATE TABLE table_name_75 (recnet VARCHAR, class VARCHAR, power VARCHAR)"}, {"answer": "SELECT report FROM table_name_75 WHERE time = \"12:30\"", "question": "What is the report in the tournament that started at 12:30?", "context": "CREATE TABLE table_name_75 (report VARCHAR, time VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_81 WHERE 2003 = \"1r\"", "question": "Which 2007 has a 2003 of 1r?", "context": "CREATE TABLE table_name_81 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_76 WHERE 2012 = \"a\" AND 2011 = \"3r\"", "question": "Which 2006 has a 2012 of a, and a 2011 of 3r?", "context": "CREATE TABLE table_name_76 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_84 WHERE 2002 = \"a\" AND tournament = \"australian open\"", "question": "Which 2008 has a 2002 of a, and a Tournament of australian open?", "context": "CREATE TABLE table_name_84 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_47 WHERE 2008 = \"grand slam tournaments\"", "question": "Which 2012 has a 2008 of grand slam tournaments?", "context": "CREATE TABLE table_name_47 (Id VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_96 WHERE 2009 = \"2r\"", "question": "Which 2002 has a 2009 of 2r?", "context": "CREATE TABLE table_name_96 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_20 WHERE 2002 = \"2r\"", "question": "Which 2010 has a 2002 of 2r?", "context": "CREATE TABLE table_name_20 (Id VARCHAR)"}, {"answer": "SELECT us_ac FROM table_name_16 WHERE year = 1985 AND us_hot_100 = \"57\"", "question": "What is th US A.C. in 1985 with a US hot 100 of 57?", "context": "CREATE TABLE table_name_16 (us_ac VARCHAR, year VARCHAR, us_hot_100 VARCHAR)"}, {"answer": "SELECT canada_singles FROM table_name_75 WHERE year = 1979 AND us_ac = \"24\"", "question": "What is the Canada singles in 1979 with a US A.C. of 24?", "context": "CREATE TABLE table_name_75 (canada_singles VARCHAR, year VARCHAR, us_ac VARCHAR)"}, {"answer": "SELECT us_ac FROM table_name_13 WHERE year = 1974", "question": "What is the US A.C. in 1974?", "context": "CREATE TABLE table_name_13 (us_ac VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_13 WHERE player = \"sammy morris\"", "question": "What is the average round of player Sammy Morris?", "context": "CREATE TABLE table_name_13 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_70 WHERE round = 4", "question": "What is the sum pick # of the player from round 4?", "context": "CREATE TABLE table_name_70 (pick__number INTEGER, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_40 WHERE college = \"arizona state\"", "question": "Who is the player from Arizona State?", "context": "CREATE TABLE table_name_40 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_38 WHERE position = \"linebacker\" AND pick__number > 251", "question": "What is the sum of the round of the player who plays linebacker and has a pick # greater than 251?", "context": "CREATE TABLE table_name_38 (round INTEGER, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT player FROM table_name_84 WHERE round < 7 AND college = \"arizona state\"", "question": "Who is the player from Arizona state with a round less than 7?", "context": "CREATE TABLE table_name_84 (player VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_66 WHERE date = \"october 21, 1956\"", "question": "What's the highest week for the day of October 21, 1956?", "context": "CREATE TABLE table_name_66 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_1 WHERE attendance = 16 OFFSET 562", "question": "What is the least recent week number when the attendance is 16,562?", "context": "CREATE TABLE table_name_1 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT country FROM table_name_63 WHERE rider = \"lindsay porter\"", "question": "What is Country , when Rider is Lindsay Porter?", "context": "CREATE TABLE table_name_63 (country VARCHAR, rider VARCHAR)"}, {"answer": "SELECT time FROM table_name_15 WHERE speed = \"87.49mph\"", "question": "What is Time, when Speed is 87.49mph?", "context": "CREATE TABLE table_name_15 (time VARCHAR, speed VARCHAR)"}, {"answer": "SELECT country FROM table_name_30 WHERE points > 12", "question": "What is Country, when Points are more than 12?", "context": "CREATE TABLE table_name_30 (country VARCHAR, points INTEGER)"}, {"answer": "SELECT speed FROM table_name_98 WHERE time = \"1:24.23.0\"", "question": "What is Speed, when Time is 1:24.23.0?", "context": "CREATE TABLE table_name_98 (speed VARCHAR, time VARCHAR)"}, {"answer": "SELECT country FROM table_name_68 WHERE time = \"1:29.43.60\"", "question": "What is Country, when Time is 1:29.43.60?", "context": "CREATE TABLE table_name_68 (country VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(place) FROM table_name_17 WHERE points > 2", "question": "What is the lowest Place, when Points are greater than 2?", "context": "CREATE TABLE table_name_17 (place INTEGER, points INTEGER)"}, {"answer": "SELECT opponent FROM table_name_21 WHERE result = \"l 0-27\"", "question": "What team was the opponent when the result was l 0-27?", "context": "CREATE TABLE table_name_21 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_62 WHERE date = \"09/20/1975\"", "question": "What team was the opponent on 09/20/1975?", "context": "CREATE TABLE table_name_62 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_43 WHERE date = \"11/08/1975*\"", "question": "What is the Location of the game on 11/08/1975*?", "context": "CREATE TABLE table_name_43 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT gold FROM table_name_19 WHERE bronze > 2 AND silver = 29", "question": "How many gold medals were awarded to the team with more than 2 bronze and exactly 29 silver medals?", "context": "CREATE TABLE table_name_19 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_76 WHERE actor = \"cicely tyson\"", "question": "What is the latest year that Cicely Tyson is the Golden Globe Award actor?", "context": "CREATE TABLE table_name_76 (year INTEGER, actor VARCHAR)"}, {"answer": "SELECT motion_picture FROM table_name_70 WHERE year > 2003 AND result = \"nominated\" AND actor = \"viola davis\" AND award = \"best supporting actress\"", "question": "What Motion Picture after 2003 had Viola Davis nominated for Best Supporting Actress?", "context": "CREATE TABLE table_name_70 (motion_picture VARCHAR, award VARCHAR, actor VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT award FROM table_name_5 WHERE year = 2002", "question": "What Award has a date of 2002?", "context": "CREATE TABLE table_name_5 (award VARCHAR, year VARCHAR)"}, {"answer": "SELECT award FROM table_name_97 WHERE motion_picture = \"what's love got to do with it\"", "question": "What Award was received bby the Motion Picture What's Love Got To Do With It?", "context": "CREATE TABLE table_name_97 (award VARCHAR, motion_picture VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_50 WHERE actor = \"marianne jean-baptiste\"", "question": "What is the latest Year with Marianne Jean-Baptiste as the Golden Globe Actor?", "context": "CREATE TABLE table_name_50 (year INTEGER, actor VARCHAR)"}, {"answer": "SELECT title FROM table_name_67 WHERE date = \"august 2004\"", "question": "Which film was released in August 2004?", "context": "CREATE TABLE table_name_67 (title VARCHAR, date VARCHAR)"}, {"answer": "SELECT production_cost FROM table_name_39 WHERE director = \"2004\"", "question": "What was the production cost for the film directed by 2004?", "context": "CREATE TABLE table_name_39 (production_cost VARCHAR, director VARCHAR)"}, {"answer": "SELECT title FROM table_name_62 WHERE director = \"pen-ek ratanaruang\"", "question": "What film did Pen-Ek Ratanaruang direct?", "context": "CREATE TABLE table_name_62 (title VARCHAR, director VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE director = \"pen-ek ratanaruang\"", "question": "When was the film directed by Pen-Ek Ratanaruang released?", "context": "CREATE TABLE table_name_13 (date VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_50 WHERE title = \"tequila\"", "question": "Who directed Tequila?", "context": "CREATE TABLE table_name_50 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT name FROM table_name_1 WHERE left_office = \"june 2011\"", "question": "Who left office in June 2011?", "context": "CREATE TABLE table_name_1 (name VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT born_died FROM table_name_16 WHERE country = \"italy\"", "question": "What is the Born-Died date for the Representative of Italy?", "context": "CREATE TABLE table_name_16 (born_died VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_29 WHERE left_office = \"incumbent\"", "question": "What is the country of the Representative that left office as incumbent?", "context": "CREATE TABLE table_name_29 (country VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_51 WHERE language = \"italian\" AND television_service = \"sky radio\"", "question": "What is Package/Option, when Language is Italian, and when Television Service is Sky Radio?", "context": "CREATE TABLE table_name_51 (package_option VARCHAR, language VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT hdtv FROM table_name_21 WHERE television_service = \"mtv rocks\"", "question": "What is HDTV, when Television Service is MTV Rocks?", "context": "CREATE TABLE table_name_21 (hdtv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT television_service FROM table_name_11 WHERE hdtv = \"no\" AND language = \"italian\"", "question": "What is Television Service, when HDTV is No, and when Language is Italian?", "context": "CREATE TABLE table_name_11 (television_service VARCHAR, hdtv VARCHAR, language VARCHAR)"}, {"answer": "SELECT television_service FROM table_name_54 WHERE package_option = \"sky famiglia\" AND language = \"italian\"", "question": "What is Television Service, when Package/Option is Sky Famiglia, and when Language is Italian?", "context": "CREATE TABLE table_name_54 (television_service VARCHAR, package_option VARCHAR, language VARCHAR)"}, {"answer": "SELECT hdtv FROM table_name_82 WHERE language = \"english\" AND television_service = \"mtv dance\"", "question": "What is HDTV, when Language is English, and when Television Service is MTV Dance?", "context": "CREATE TABLE table_name_82 (hdtv VARCHAR, language VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT AVG(100 AS s) FROM table_name_51 WHERE player = \"tim bresnan\"", "question": "How many average 100s were there for Tim Bresnan?", "context": "CREATE TABLE table_name_51 (player VARCHAR)"}, {"answer": "SELECT COUNT(platform) FROM table_name_60 WHERE frequency__per_hour_ < 2", "question": "How many Platforms have a Frequency of less than 2?", "context": "CREATE TABLE table_name_60 (platform VARCHAR, frequency__per_hour_ INTEGER)"}, {"answer": "SELECT 1999 AS _2000_team FROM table_name_93 WHERE height__cm_ < 187 AND birthplace = \"cloquet, minnesota\"", "question": "What is the 1999-2000 team, when the Height (cm) is less than 187, and when the Birthplace is Cloquet, Minnesota?", "context": "CREATE TABLE table_name_93 (height__cm_ VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT SUM(height__cm_) FROM table_name_13 WHERE weight__kg_ = 90", "question": "What is the sum of Height (cm), when the Weight (kg) is 90?", "context": "CREATE TABLE table_name_13 (height__cm_ INTEGER, weight__kg_ VARCHAR)"}, {"answer": "SELECT losses FROM table_name_92 WHERE pct = \".451\" AND finish = \"6th\"", "question": "Which Losses have a Pct of .451 and Finished 6th?", "context": "CREATE TABLE table_name_92 (losses VARCHAR, pct VARCHAR, finish VARCHAR)"}, {"answer": "SELECT season FROM table_name_65 WHERE losses = \"30\"", "question": "Which season has Losses of 30?", "context": "CREATE TABLE table_name_65 (season VARCHAR, losses VARCHAR)"}, {"answer": "SELECT season FROM table_name_4 WHERE division = \"washington bullets\"", "question": "In which Season was the Division Washington Bullets?", "context": "CREATE TABLE table_name_4 (season VARCHAR, division VARCHAR)"}, {"answer": "SELECT season FROM table_name_10 WHERE wins = \"29\" AND finish = \"3rd\"", "question": "In which season were there Wins of 29 and a Finished place of 3rd?", "context": "CREATE TABLE table_name_10 (season VARCHAR, wins VARCHAR, finish VARCHAR)"}, {"answer": "SELECT easa__eu_ FROM table_name_76 WHERE notes = \"aoc 135\"", "question": "What is the EASA (EU) when the notes show aoc 135?", "context": "CREATE TABLE table_name_76 (easa__eu_ VARCHAR, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_name_39 WHERE fleet_size = 3", "question": "What is the Notes when the fleet size is 3?", "context": "CREATE TABLE table_name_39 (notes VARCHAR, fleet_size VARCHAR)"}, {"answer": "SELECT fleet_size FROM table_name_27 WHERE easa__eu_ = \"no\"", "question": "What is the Fleet Size when the EASA (EU) is no?", "context": "CREATE TABLE table_name_27 (fleet_size VARCHAR, easa__eu_ VARCHAR)"}, {"answer": "SELECT airline FROM table_name_55 WHERE easa__eu_ = \"yes\"", "question": "hat is the Airline when the EASA (EU) is yes?", "context": "CREATE TABLE table_name_55 (airline VARCHAR, easa__eu_ VARCHAR)"}, {"answer": "SELECT airline FROM table_name_51 WHERE notes = \"aoc 135\"", "question": "What is the Airline when the notes show aoc 135?", "context": "CREATE TABLE table_name_51 (airline VARCHAR, notes VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_10 WHERE competition = \"new york city marathon\"", "question": "What is the highest Year with a Competition that is new york city marathon?", "context": "CREATE TABLE table_name_10 (year INTEGER, competition VARCHAR)"}, {"answer": "SELECT notes FROM table_name_23 WHERE venue = \"venice, italy\"", "question": "What is the Notes with a Venue that is venice, italy?", "context": "CREATE TABLE table_name_23 (notes VARCHAR, venue VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_76 WHERE 2002 = \"atp masters series\"", "question": "What is 1994, when 2002 is ATP Masters Series?", "context": "CREATE TABLE table_name_76 (Id VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_50 WHERE 1987 = \"n/a\" AND career_sr = \"n/a\"", "question": "What is 2001, when 1987 is N/A, and when Career SR is N/A?", "context": "CREATE TABLE table_name_50 (career_sr VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_39 WHERE 1999 = \"f\" AND 1994 = \"2r\"", "question": "What is 1989, when 1999 is F, and when 1994 is 2R?", "context": "CREATE TABLE table_name_39 (Id VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_33 WHERE 1990 = \"a\" AND 1987 = \"nme\" AND 1997 = \"1r\"", "question": "What is 2001, when 1990 is A, when 1987 is NME, and when 1997 is 1R?", "context": "CREATE TABLE table_name_33 (Id VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_22 WHERE 2003 = \"0 / 4\"", "question": "What is 1997, when 2003 is 0 / 4?", "context": "CREATE TABLE table_name_22 (Id VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_38 WHERE nominated_by_the_taoiseach = 0 AND agricultural_panel > 5", "question": "What is the average total 0 are nominated by the Taoiseach and the agricultural panel is greater than 5?", "context": "CREATE TABLE table_name_38 (total INTEGER, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR)"}, {"answer": "SELECT SUM(cultural_and_educational_panel) FROM table_name_90 WHERE industrial_and_commercial_panel = 0 AND agricultural_panel > 0", "question": "What is the total of the cultural and educational panel when the industrial and commercial panel is 0 and the agricultural panel is greater than 0?", "context": "CREATE TABLE table_name_90 (cultural_and_educational_panel INTEGER, industrial_and_commercial_panel VARCHAR, agricultural_panel VARCHAR)"}, {"answer": "SELECT SUM(university_of_dublin) FROM table_name_71 WHERE nominated_by_the_taoiseach = 2 AND industrial_and_commercial_panel > 0", "question": "What is the total for the University of Dublin when 2 are nominated by Taoiseach and the industrial and commercial panel is greater than 0?", "context": "CREATE TABLE table_name_71 (university_of_dublin INTEGER, nominated_by_the_taoiseach VARCHAR, industrial_and_commercial_panel VARCHAR)"}, {"answer": "SELECT MAX(labour_panel) FROM table_name_46 WHERE university_of_dublin < 2 AND agricultural_panel > 5", "question": "What is the highest labour panel when the university of dublin is less than 2 and the agricultural panel is greater than 5?", "context": "CREATE TABLE table_name_46 (labour_panel INTEGER, university_of_dublin VARCHAR, agricultural_panel VARCHAR)"}, {"answer": "SELECT AVG(university_of_dublin) FROM table_name_75 WHERE industrial_and_commercial_panel > 4 AND national_university_of_ireland > 3", "question": "What is the average for the university of dublin when the industrial and commercial panel is greater than 4 and the total of the national university of ireland is larger than 3?", "context": "CREATE TABLE table_name_75 (university_of_dublin INTEGER, industrial_and_commercial_panel VARCHAR, national_university_of_ireland VARCHAR)"}, {"answer": "SELECT year FROM table_name_21 WHERE site = \"tainan city\" AND score = \"8\u20136\"", "question": "When has a Site of tainan city and a Score of 8\u20136?", "context": "CREATE TABLE table_name_21 (year VARCHAR, site VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE winning_team = \"wei chuan dragons\"", "question": "Which Score that has a Winning team of wei chuan dragons?", "context": "CREATE TABLE table_name_35 (score VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT 2011 AS _passengers__in_millions_ FROM table_name_37 WHERE distance = \"1271km\"", "question": "What is the number of 2011 passengers in millions that have traveled a distance of 1271km?", "context": "CREATE TABLE table_name_37 (distance VARCHAR)"}, {"answer": "SELECT COUNT(2012 AS _passengers__in_millions_) FROM table_name_56 WHERE distance = \"1075km\"", "question": "What is the number of 2012 passengers in millions that have traveled a distance of 1075km?", "context": "CREATE TABLE table_name_56 (distance VARCHAR)"}, {"answer": "SELECT second FROM table_name_18 WHERE sixth = \"victoria\"", "question": "What is SECOND, when SIXTH is Victoria?", "context": "CREATE TABLE table_name_18 (second VARCHAR, sixth VARCHAR)"}, {"answer": "SELECT second FROM table_name_64 WHERE first = \"western australia\"", "question": "What is SECOND, when FIRST is Western Australia?", "context": "CREATE TABLE table_name_64 (second VARCHAR, first VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_21 WHERE team = \"corinthians\" AND points > 22", "question": "How many losses does corinthians have when they scored over 22 points?", "context": "CREATE TABLE table_name_21 (lost VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT termination FROM table_name_2 WHERE earpads = \"comfort pads\" AND us_msrp = \"$150\"", "question": "What was the termination type for the headphones with comfort pads and selling for $150?", "context": "CREATE TABLE table_name_2 (termination VARCHAR, earpads VARCHAR, us_msrp VARCHAR)"}, {"answer": "SELECT earpads FROM table_name_88 WHERE headphone_class = \"reference\" AND us_msrp = \"$695\"", "question": "What are the earpads for the headphones that are Reference class and have MSRP of $695?", "context": "CREATE TABLE table_name_88 (earpads VARCHAR, headphone_class VARCHAR, us_msrp VARCHAR)"}, {"answer": "SELECT earpads FROM table_name_49 WHERE driver_matched_db > 0.05 AND us_msrp = \"$79\"", "question": "What earpads do the headphones with driver-matched dB over 0.05 and MSRP of $79 have?", "context": "CREATE TABLE table_name_49 (earpads VARCHAR, driver_matched_db VARCHAR, us_msrp VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_90 WHERE round = 1", "question": "What is the name of the race from round 1?", "context": "CREATE TABLE table_name_90 (race_name VARCHAR, round VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_37 WHERE city_state = \"sydney, new south wales\"", "question": "Which race was in Sydney, New South Wales?", "context": "CREATE TABLE table_name_37 (race_name VARCHAR, city_state VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_30 WHERE round > 5", "question": "Which circuit had a round larger than 5?", "context": "CREATE TABLE table_name_30 (circuit VARCHAR, round INTEGER)"}, {"answer": "SELECT story FROM table_name_42 WHERE date = \"october 19, 2011\"", "question": "What is the title of the story published on October 19, 2011?", "context": "CREATE TABLE table_name_42 (story VARCHAR, date VARCHAR)"}, {"answer": "SELECT issue FROM table_name_22 WHERE date = \"august 17, 2011\"", "question": "What Issue number was released on August 17, 2011?", "context": "CREATE TABLE table_name_22 (issue VARCHAR, date VARCHAR)"}, {"answer": "SELECT story FROM table_name_47 WHERE issue = \"#8\"", "question": "What story title was included in Issue #8?", "context": "CREATE TABLE table_name_47 (story VARCHAR, issue VARCHAR)"}, {"answer": "SELECT young_classification FROM table_name_26 WHERE general_classification = \"christian vande velde\" AND team_classification = \"team columbia\" AND sprint_classification = \"mark cavendish\"", "question": "Which young classification has general classification of Christian Vande Velde for Team Columbia and Mark Cavendish?", "context": "CREATE TABLE table_name_26 (young_classification VARCHAR, sprint_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_80 WHERE general_classification = \"mark cavendish\" AND team_classification = \"garmin-chipotle-h30\"", "question": "What mountains classification corresponds to Mark Cavendish and the Garmin-Chipotle-H30?", "context": "CREATE TABLE table_name_80 (mountains_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT stage__winner_ FROM table_name_42 WHERE sprint_classification = \"mark cavendish\" AND team_classification = \"garmin-chipotle-h30\" AND young_classification = \"mark cavendish\"", "question": "Who was the winner for a Sprint Classification and Young Classification to Mark Cavendish and Garmin-Chipotle-H30 for team?", "context": "CREATE TABLE table_name_42 (stage__winner_ VARCHAR, young_classification VARCHAR, sprint_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_66 WHERE partner = \"mark dickson\" AND opponents_in_the_final = \"hans gildemeister belus prajoux\"", "question": "Which outcome has a partner named Mark Dickson, with the opponents of Hans Gildemeister Belus Prajoux?", "context": "CREATE TABLE table_name_66 (outcome VARCHAR, partner VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT format FROM table_name_78 WHERE catalog = \"vcrd 103\"", "question": "What is the Format with a Catalog that is vcrd 103?", "context": "CREATE TABLE table_name_78 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_27 WHERE catalog = \"vlmx 1087-3\"", "question": "What is the Region with a Catalog that is vlmx 1087-3?", "context": "CREATE TABLE table_name_27 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_90 WHERE label = \"electropolis\" AND date = \"2002\"", "question": "What is the Format with a Label of electropolis and a Date that is 2002?", "context": "CREATE TABLE table_name_90 (format VARCHAR, label VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(cultural_and_educational_panel) FROM table_name_41 WHERE university_of_dublin = 3 AND labour_panel > 11", "question": "How many in the cultural and educational panel have a university of Dublin of 3 & A labor panel larger than 11?", "context": "CREATE TABLE table_name_41 (cultural_and_educational_panel VARCHAR, university_of_dublin VARCHAR, labour_panel VARCHAR)"}, {"answer": "SELECT margin FROM table_name_86 WHERE match_date = \"oct 17, 2007\"", "question": "What is Margin, when Match Date is Oct 17, 2007?", "context": "CREATE TABLE table_name_86 (margin VARCHAR, match_date VARCHAR)"}, {"answer": "SELECT team__b_ FROM table_name_10 WHERE s_no > 17", "question": "What is Team (B), when S No is greater than 17?", "context": "CREATE TABLE table_name_10 (team__b_ VARCHAR, s_no INTEGER)"}, {"answer": "SELECT COUNT(s_no) FROM table_name_88 WHERE margin = \"16 runs\"", "question": "What is the total number of S No(s), when the Margin is 16 runs?", "context": "CREATE TABLE table_name_88 (s_no VARCHAR, margin VARCHAR)"}, {"answer": "SELECT MAX(s_no) FROM table_name_8 WHERE match_date = \"nov 1, 2003\"", "question": "What is the highest S No, when the Match Date is Nov 1, 2003?", "context": "CREATE TABLE table_name_8 (s_no INTEGER, match_date VARCHAR)"}, {"answer": "SELECT team__b_ FROM table_name_31 WHERE s_no < 18 AND margin = \"8 wickets\" AND match_date = \"oct 30, 1989\"", "question": "What is Team (B), when S No is less than 18, when Margin is 8 Wickets, and when Match Date is Oct 30, 1989?", "context": "CREATE TABLE table_name_31 (team__b_ VARCHAR, match_date VARCHAR, s_no VARCHAR, margin VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_51 WHERE date = \"december 14, 1986\" AND attendance < 47 OFFSET 096", "question": "When was the last time, since December 14, 1986, that the attendance was lower than 47,096?", "context": "CREATE TABLE table_name_51 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_33 WHERE surface = \"indoor/carpet\" AND date = \"13 october 1996\"", "question": "What is the Surface of indoor/carpet Outcome on 13 October 1996", "context": "CREATE TABLE table_name_33 (outcome VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_5 WHERE tournament = \"johannesburg, south africa\"", "question": "What the Outcome for the Tournament of Johannesburg, South Africa", "context": "CREATE TABLE table_name_5 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT launch_site FROM table_name_26 WHERE rocket = \"delta iv\"", "question": "What is the launch site of the delta iv rocket?", "context": "CREATE TABLE table_name_26 (launch_site VARCHAR, rocket VARCHAR)"}, {"answer": "SELECT type FROM table_name_13 WHERE date = \"unknown\" AND satellite = \"gps iif-10\"", "question": "What is the type of the gps iif-10 satellite with an unknown date?", "context": "CREATE TABLE table_name_13 (type VARCHAR, date VARCHAR, satellite VARCHAR)"}, {"answer": "SELECT type FROM table_name_38 WHERE satellite = \"gps iif-10\"", "question": "What is the type of the gps iif-10 satellite?", "context": "CREATE TABLE table_name_38 (type VARCHAR, satellite VARCHAR)"}, {"answer": "SELECT launch_site FROM table_name_86 WHERE date = \"unknown\" AND rocket = \"delta iv\" AND satellite = \"gps iif-10\"", "question": "What is the launch site of the delta iv rocket with an unknown date and a gps iif-10 satellite?", "context": "CREATE TABLE table_name_86 (launch_site VARCHAR, satellite VARCHAR, date VARCHAR, rocket VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE satellite = \"gps iif-7\"", "question": "What is the date of the gps iif-7 satellite?", "context": "CREATE TABLE table_name_48 (date VARCHAR, satellite VARCHAR)"}, {"answer": "SELECT finish FROM table_name_89 WHERE year = 1992", "question": "What was the finish for 1992?", "context": "CREATE TABLE table_name_89 (finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT finish FROM table_name_50 WHERE engine = \"buick\" AND start = \"16th\"", "question": "What was Andretti's finish for the year he had a Buick engine and started 16th?", "context": "CREATE TABLE table_name_50 (finish VARCHAR, engine VARCHAR, start VARCHAR)"}, {"answer": "SELECT finish FROM table_name_62 WHERE engine = \"buick\" AND start = \"16th\"", "question": "What was Andretti's finish the year he started 16th with a Buick engine?", "context": "CREATE TABLE table_name_62 (finish VARCHAR, engine VARCHAR, start VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_17 WHERE points = 6 AND against > 16", "question": "Which Drawn has a Points of 6, and a Against larger than 16?", "context": "CREATE TABLE table_name_17 (drawn INTEGER, points VARCHAR, against VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_80 WHERE difference = \"3\" AND played < 10", "question": "Which Points has a Difference of 3, and a Played smaller than 10?", "context": "CREATE TABLE table_name_80 (points INTEGER, difference VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_15 WHERE team = \"s\u00e3o paulo athletic\" AND position > 5", "question": "Which Points has a Team of s\u00e3o paulo athletic, and a Position larger than 5?", "context": "CREATE TABLE table_name_15 (points INTEGER, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_95 WHERE played > 9 AND points < 11 AND drawn < 0", "question": "Which Position has a Played larger than 9, and a Points smaller than 11, and a Drawn smaller than 0?", "context": "CREATE TABLE table_name_95 (position INTEGER, drawn VARCHAR, played VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(track) FROM table_name_21 WHERE catalogue = \"47-9465\"", "question": "What track has a catalogue of 47-9465?", "context": "CREATE TABLE table_name_21 (track INTEGER, catalogue VARCHAR)"}, {"answer": "SELECT track FROM table_name_23 WHERE time = \"2:30\"", "question": "What track has a time of 2:30?", "context": "CREATE TABLE table_name_23 (track VARCHAR, time VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_77 WHERE recorded = \"9/10/67\" AND release_date = \"1/9/68\"", "question": "What catalogue was recorded on 9/10/67 and a release date of 1/9/68?", "context": "CREATE TABLE table_name_77 (catalogue VARCHAR, recorded VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT rank FROM table_name_96 WHERE bronze < 7 AND nation = \"norway\"", "question": "Where does Norway rank in total medals among countries with fewer than 7 bronzes?", "context": "CREATE TABLE table_name_96 (rank VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT inns FROM table_name_80 WHERE runs = 435", "question": "What is the Inns of 435 Runs?", "context": "CREATE TABLE table_name_80 (inns VARCHAR, runs VARCHAR)"}, {"answer": "SELECT AVG(1 AS st_place) FROM table_name_26 WHERE rank > 10", "question": "What is the average 1st place with a Rank that is larger than 10?", "context": "CREATE TABLE table_name_26 (rank INTEGER)"}, {"answer": "SELECT week_of FROM table_name_70 WHERE runner_up = \"lori mcneil\"", "question": "What week was the Runner-up Lori McNeil?", "context": "CREATE TABLE table_name_70 (week_of VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT winner FROM table_name_74 WHERE runner_up = \"jing-qian yi\"", "question": "When the runner-up was Jing-qian Yi, who was the winner?", "context": "CREATE TABLE table_name_74 (winner VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT MAX(episode_number) FROM table_name_89 WHERE guest_host = \"jamie oliver\"", "question": "What is the highest episode number in which Jamie Oliver guest-hosted?", "context": "CREATE TABLE table_name_89 (episode_number INTEGER, guest_host VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE home = \"cavaliers\" AND leading_scorer = \"lebron james (46)\"", "question": "What is the score of the home game for the Cavaliers where Lebron James (46) was the lead scorer?", "context": "CREATE TABLE table_name_60 (score VARCHAR, home VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_96 WHERE visitor = \"bulls\"", "question": "Who was the leading scorer against the visiting team Bulls?", "context": "CREATE TABLE table_name_96 (leading_scorer VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE home = \"rockets\"", "question": "What date was the game played against the home team Rockets?", "context": "CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE penciller = \"tom\u00e1s giorello\" AND title = \"cimmeria\"", "question": "What was the Date of the Cimmeria Issue for which the Penciller was Tom\u00e1s Giorello?", "context": "CREATE TABLE table_name_67 (date VARCHAR, penciller VARCHAR, title VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE title = \"homecoming\"", "question": "When did the Issue with the Title Homecoming come out?", "context": "CREATE TABLE table_name_5 (date VARCHAR, title VARCHAR)"}, {"answer": "SELECT AVG(match) FROM table_name_55 WHERE lost > 0 AND points > 6 AND team = \"legia warszawa\" AND draw < 0", "question": "Which average match has a lost greater than 0, points greater than 6, legia warszawa as the team, and a draw less than 0?", "context": "CREATE TABLE table_name_55 (match INTEGER, draw VARCHAR, team VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT draw FROM table_name_23 WHERE lost < 6 AND points = 28", "question": "What draw has a lost less than 6 with 28 as the points?", "context": "CREATE TABLE table_name_23 (draw VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_9 WHERE match < 14", "question": "Which average lost that has a match less than 14?", "context": "CREATE TABLE table_name_9 (lost INTEGER, match INTEGER)"}, {"answer": "SELECT match FROM table_name_65 WHERE team = \"skra warszawa\"", "question": "What is the Match for skra warszawa?", "context": "CREATE TABLE table_name_65 (match VARCHAR, team VARCHAR)"}, {"answer": "SELECT draw FROM table_name_5 WHERE team = \"skra warszawa\"", "question": "What is the Draw for skra warszawa?", "context": "CREATE TABLE table_name_5 (draw VARCHAR, team VARCHAR)"}, {"answer": "SELECT lost FROM table_name_61 WHERE points = \"dissolved\"", "question": "What is the Lost when the points were dissolved?", "context": "CREATE TABLE table_name_61 (lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT draw FROM table_name_76 WHERE match = \"10\" AND team = \"skra warszawa\"", "question": "What is the Draw for match 10, and the team was skra warszawa?", "context": "CREATE TABLE table_name_76 (draw VARCHAR, match VARCHAR, team VARCHAR)"}, {"answer": "SELECT draw FROM table_name_2 WHERE team = \"tramwajarz \u0142\u00f3d\u017a\"", "question": "What is the Draw for the team of tramwajarz \u0142\u00f3d\u017a?", "context": "CREATE TABLE table_name_2 (draw VARCHAR, team VARCHAR)"}, {"answer": "SELECT draw FROM table_name_94 WHERE team = \"tramwajarz \u0142\u00f3d\u017a\"", "question": "What is the Draw for the team tramwajarz \u0142\u00f3d\u017a?", "context": "CREATE TABLE table_name_94 (draw VARCHAR, team VARCHAR)"}, {"answer": "SELECT location FROM table_name_12 WHERE novelty = \"gen\"", "question": "What is the Location when the novelty is gen?", "context": "CREATE TABLE table_name_12 (location VARCHAR, novelty VARCHAR)"}, {"answer": "SELECT unit FROM table_name_16 WHERE status = \"nomen oblitum\"", "question": "What shows for Unit with a status of nomen oblitum?", "context": "CREATE TABLE table_name_16 (unit VARCHAR, status VARCHAR)"}, {"answer": "SELECT location FROM table_name_23 WHERE name = \"telmatosaurus\"", "question": "What is the Location when the name is telmatosaurus?", "context": "CREATE TABLE table_name_23 (location VARCHAR, name VARCHAR)"}, {"answer": "SELECT status FROM table_name_12 WHERE novelty = \"gen et sp\" AND name = \"haplocanthosaurus\"", "question": "What is the Status with a novelty of gen et sp, and the name is haplocanthosaurus?", "context": "CREATE TABLE table_name_12 (status VARCHAR, novelty VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(league) AS Cup FROM table_name_70 WHERE total < 25 AND league > 19", "question": "How many League cups had a total less than 25 and a league larger than 19?", "context": "CREATE TABLE table_name_70 (league VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(fa_trophy) FROM table_name_27 WHERE player = \"ceri williams\" AND total < 19", "question": "How many FA trophies did Ceri Williams get with a smaller total than 19?", "context": "CREATE TABLE table_name_27 (fa_trophy VARCHAR, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT city FROM table_name_27 WHERE average = 6.85", "question": "Which City has an Average of 6.85?", "context": "CREATE TABLE table_name_27 (city VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_name_81 WHERE city = \"bergen, norway\"", "question": "What is the Average of bergen, norway?", "context": "CREATE TABLE table_name_81 (average INTEGER, city VARCHAR)"}, {"answer": "SELECT comprehension_of_danish FROM table_name_48 WHERE average < 6.85 AND comprehension_of_norwegian = \"4.13\"", "question": "Which Comprehension of Danish has an Average smaller than 6.85, and a Comprehension of Norwegian of 4.13?", "context": "CREATE TABLE table_name_48 (comprehension_of_danish VARCHAR, average VARCHAR, comprehension_of_norwegian VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_38 WHERE date = \"november 18, 1990\"", "question": "What are the Attendance numbers for november 18, 1990?", "context": "CREATE TABLE table_name_38 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE week > 7 AND record = \"9\u20131\"", "question": "What is the Date for a week higher than 7 with a record of 9\u20131?", "context": "CREATE TABLE table_name_68 (date VARCHAR, week VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_26 WHERE date = \"november 12, 1989\"", "question": "What is the average week of a game on November 12, 1989?", "context": "CREATE TABLE table_name_26 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT set_5 FROM table_name_15 WHERE set_3 = \"25-23\" AND set_4 = \"23-25\"", "question": "What is the Set 5 with a Set 3 that is 25-23 and a Set 4 that is 23-25?", "context": "CREATE TABLE table_name_15 (set_5 VARCHAR, set_3 VARCHAR, set_4 VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_24 WHERE set_4 = \"25-21\" AND set_3 = \"25-23\"", "question": "What is the sum of the Game with a Set 4 of 25-21 and a Set 3 of 25-23?", "context": "CREATE TABLE table_name_24 (game INTEGER, set_4 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_5 FROM table_name_9 WHERE game = 59", "question": "What is the Set 5 with a Game that is 59?", "context": "CREATE TABLE table_name_9 (set_5 VARCHAR, game VARCHAR)"}, {"answer": "SELECT nation FROM table_name_37 WHERE competition = \"preseason\" AND year < 2011 AND club = \"chivas de guadalajara\"", "question": "What shows for nation when the Competition is preseason, Year less than 2011, and a Club of chivas de guadalajara?", "context": "CREATE TABLE table_name_37 (nation VARCHAR, club VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_11 WHERE club = \"club universidad de guadalajara\"", "question": "What was the Result for the club universidad de guadalajara?", "context": "CREATE TABLE table_name_11 (result VARCHAR, club VARCHAR)"}, {"answer": "SELECT nation FROM table_name_48 WHERE year = 2012 AND competition = \"preseason\" AND result = \"w 0\u20133\"", "question": "What is the Nation with 2012 as the year, and a Competition of preseason, and a Result of w 0\u20133?", "context": "CREATE TABLE table_name_48 (nation VARCHAR, result VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_28 WHERE competition = \"friendly\" AND club = \"everton\"", "question": "What is the average Year when the Competition was friendly, and a Club of everton?", "context": "CREATE TABLE table_name_28 (year INTEGER, competition VARCHAR, club VARCHAR)"}, {"answer": "SELECT competition FROM table_name_94 WHERE club = \"costa rica u-20\"", "question": "What is the Competition when the Club was costa rica u-20?", "context": "CREATE TABLE table_name_94 (competition VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_8 WHERE nation = \"mexico\" AND year = 2010 AND competition = \"preseason\" AND result = \"w 0\u20131\"", "question": "What is the Club of mexico, Year of 2010, and a Competition of preseason, and a Result of w 0\u20131?", "context": "CREATE TABLE table_name_8 (club VARCHAR, result VARCHAR, competition VARCHAR, nation VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_23 WHERE nation = \"sweden\"", "question": "What is the lowest total when the nation is Sweden?", "context": "CREATE TABLE table_name_23 (total INTEGER, nation VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_12 WHERE silver < 1 AND rank = \"15\"", "question": "What is the average Total when silver is less than 1, and the rank is 15?", "context": "CREATE TABLE table_name_12 (total INTEGER, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_8 WHERE rank = \"11\" AND total < 1", "question": "What is the total number of Bronze when rank is 11, and the total is less than 1?", "context": "CREATE TABLE table_name_8 (bronze VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_18 WHERE director = \"no\"", "question": "What year is the latest year that has no under director?", "context": "CREATE TABLE table_name_18 (year INTEGER, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_77 WHERE year = 2014 AND writer = \"yes\"", "question": "With yes under writer and in 2014, what is the director?", "context": "CREATE TABLE table_name_77 (director VARCHAR, year VARCHAR, writer VARCHAR)"}, {"answer": "SELECT writer FROM table_name_14 WHERE film = \"run\"", "question": "Who is the writer of the film Run?", "context": "CREATE TABLE table_name_14 (writer VARCHAR, film VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_94 WHERE matches < 208 AND rank > 12", "question": "What is the most goals made for a person with less than 208 matches and ranked lower than 12?", "context": "CREATE TABLE table_name_94 (goals INTEGER, matches VARCHAR, rank VARCHAR)"}, {"answer": "SELECT years FROM table_name_63 WHERE matches > 158 AND rank > 9 AND goals < 84", "question": "In what years was there a rank lower than 9, under 84 goals, and more than 158 matches?", "context": "CREATE TABLE table_name_63 (years VARCHAR, goals VARCHAR, matches VARCHAR, rank VARCHAR)"}, {"answer": "SELECT hdtv FROM table_name_12 WHERE television_service = \"r-light\"", "question": "What is the HDTV status of the r-light television service?", "context": "CREATE TABLE table_name_12 (hdtv VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT television_service FROM table_name_41 WHERE content = \"programmi per adulti 24h/24\" AND hdtv = \"no\"", "question": "Which television service has programmi per adulti 24h/24 content and no HDTV?", "context": "CREATE TABLE table_name_41 (television_service VARCHAR, content VARCHAR, hdtv VARCHAR)"}, {"answer": "SELECT television_service FROM table_name_27 WHERE package_option = \"qualsiasi\"", "question": "Which television service has a qualsiasi package/option?", "context": "CREATE TABLE table_name_27 (television_service VARCHAR, package_option VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_96 WHERE ballarat_fl = \"darley\" AND against > 1055", "question": "What is the total number of wins for Darley of Ballarat FL against larger than 1055?", "context": "CREATE TABLE table_name_96 (wins VARCHAR, ballarat_fl VARCHAR, against VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_4 WHERE wins < 4 AND losses = 14 AND against > 1836", "question": "What is the lowest draw that has less than 4 wins, 14 losses, and against more than 1836?", "context": "CREATE TABLE table_name_4 (draws INTEGER, against VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(byes) FROM table_name_70 WHERE ballarat_fl = \"sunbury\" AND against > 1167", "question": "What is the average Byes that has Ballarat FL of Sunbury against more than 1167?", "context": "CREATE TABLE table_name_70 (byes INTEGER, ballarat_fl VARCHAR, against VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_17 WHERE wins > 1 AND losses = 14 AND against < 1836", "question": "What is the average draws with more than 1 win, 14 losses, and against less than 1836?", "context": "CREATE TABLE table_name_17 (draws INTEGER, against VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_94 WHERE ballarat_fl = \"sunbury\" AND byes > 2", "question": "What was the lowest draw from Ballarat FL of sunbury, and byes larger than 2?", "context": "CREATE TABLE table_name_94 (draws INTEGER, ballarat_fl VARCHAR, byes VARCHAR)"}, {"answer": "SELECT away FROM table_name_41 WHERE club = \"apoel\"", "question": "Which away has apoel as the club?", "context": "CREATE TABLE table_name_41 (away VARCHAR, club VARCHAR)"}, {"answer": "SELECT away FROM table_name_6 WHERE competition = \"uefa cup\" AND round = \"group f\" AND club = \"espanyol\"", "question": "Which away has uefa cup as the competition, group f as the round, with espanyol as the club?", "context": "CREATE TABLE table_name_6 (away VARCHAR, club VARCHAR, competition VARCHAR, round VARCHAR)"}, {"answer": "SELECT location FROM table_name_12 WHERE fatalities = \"unknown\" AND aircraft = \"ju-52\"", "question": "In what location were the fatalities unknown for the Ju-52 aircraft?", "context": "CREATE TABLE table_name_12 (location VARCHAR, fatalities VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT location FROM table_name_83 WHERE tail_number = \"zs-spf\"", "question": "In what location was the tail number ZS-SPF?", "context": "CREATE TABLE table_name_83 (location VARCHAR, tail_number VARCHAR)"}, {"answer": "SELECT location FROM table_name_61 WHERE aircraft = \"ju-52\"", "question": "What was the location of the Ju-52 aircraft?", "context": "CREATE TABLE table_name_61 (location VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT fatalities FROM table_name_60 WHERE tail_number = \"unknown\"", "question": "How many fatalities occurred for an unknown tail number?", "context": "CREATE TABLE table_name_60 (fatalities VARCHAR, tail_number VARCHAR)"}, {"answer": "SELECT tail_number FROM table_name_32 WHERE fatalities = \"3/3\"", "question": "What was the tail number with 3/3 fatalities?", "context": "CREATE TABLE table_name_32 (tail_number VARCHAR, fatalities VARCHAR)"}, {"answer": "SELECT fatalities FROM table_name_18 WHERE aircraft = \"ju-52\"", "question": "How many fatalities occurred for the Ju-52 aircraft?", "context": "CREATE TABLE table_name_18 (fatalities VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE goal = 6", "question": "What was the score for a goal of 6?", "context": "CREATE TABLE table_name_57 (score VARCHAR, goal VARCHAR)"}, {"answer": "SELECT venue FROM table_name_43 WHERE date = \"july 17, 1999\"", "question": "Where was the match held on July 17, 1999?", "context": "CREATE TABLE table_name_43 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT democratic_ticket FROM table_name_70 WHERE office = \"attorney general\"", "question": "Who was on the Democratic ticket for the Office of Attorney General?", "context": "CREATE TABLE table_name_70 (democratic_ticket VARCHAR, office VARCHAR)"}, {"answer": "SELECT name FROM table_name_56 WHERE novelty = \"gen et sp nov\"", "question": "What name has gen et sp nov as the novelty?", "context": "CREATE TABLE table_name_56 (name VARCHAR, novelty VARCHAR)"}, {"answer": "SELECT authors FROM table_name_55 WHERE unit = \"clarno formation\" AND name = \"actinidia oregonensis\"", "question": "What authors have clarno formation as the unit, actinidia oregonensis as the name?", "context": "CREATE TABLE table_name_55 (authors VARCHAR, unit VARCHAR, name VARCHAR)"}, {"answer": "SELECT novelty FROM table_name_70 WHERE location = \"usa\" AND name = \"coryloides\"", "question": "What novelty has USA as the location, and coryloides as the name?", "context": "CREATE TABLE table_name_70 (novelty VARCHAR, location VARCHAR, name VARCHAR)"}, {"answer": "SELECT status FROM table_name_78 WHERE name = \"paleopanax\"", "question": "What status has paleopanax as the name?", "context": "CREATE TABLE table_name_78 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT unit FROM table_name_51 WHERE novelty = \"gen et sp nov\"", "question": "What unit has gen et sp nov as the novelty?", "context": "CREATE TABLE table_name_51 (unit VARCHAR, novelty VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE tournament = \"memorial tournament\" AND runner_s__up = \"payne stewart\"", "question": "Which date was the Memorial Tournament held on, when Payne Stewart was runner-up?", "context": "CREATE TABLE table_name_40 (date VARCHAR, tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT 2007 AS _08 FROM table_name_74 WHERE event = \"colonial square\"", "question": "What is the 2007-08 result when the event was Colonial Square?", "context": "CREATE TABLE table_name_74 (event VARCHAR)"}, {"answer": "SELECT 2008 AS _09 FROM table_name_58 WHERE event = \"masters\"", "question": "What is the 2008-09 result has Masters as the event?", "context": "CREATE TABLE table_name_58 (event VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_66 WHERE result = \"nominated\" AND series = \"room 222\"", "question": "What year gave a nominated result for the room 222 series?", "context": "CREATE TABLE table_name_66 (year VARCHAR, result VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_name_82 WHERE year < 1993 AND actor = \"teresa graves\"", "question": "What was actor Teresa Graves's series before the year 1993?", "context": "CREATE TABLE table_name_82 (series VARCHAR, year VARCHAR, actor VARCHAR)"}, {"answer": "SELECT motor FROM table_name_57 WHERE quantity > 8 AND class = \"bs 1915\"", "question": "Which motor's quantity was more than 8, and a class of bs 1915?", "context": "CREATE TABLE table_name_57 (motor VARCHAR, quantity VARCHAR, class VARCHAR)"}, {"answer": "SELECT motor FROM table_name_84 WHERE class = \"bs 1910\"", "question": "Which motor's class was bs 1910?", "context": "CREATE TABLE table_name_84 (motor VARCHAR, class VARCHAR)"}, {"answer": "SELECT quantity FROM table_name_67 WHERE seats = 16 AND class = \"kss 1913\"", "question": "What is the quantity when the seats number was 16 and the class was kss 1913?", "context": "CREATE TABLE table_name_67 (quantity VARCHAR, seats VARCHAR, class VARCHAR)"}, {"answer": "SELECT root_of_all_evil FROM table_name_33 WHERE original_air_date = \"september 3, 2008\"", "question": "What is the Root of All Evil with an Original air date that is september 3, 2008?", "context": "CREATE TABLE table_name_33 (root_of_all_evil VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT MAX(goals_conceded__gc_) FROM table_name_33 WHERE draw__pe_ > 2 AND goals_scored__gf_ > 19", "question": "Goals Conceded (GC) that has a Draw (PE) larger than 2, and a Goals Scored (GF) larger than 19?", "context": "CREATE TABLE table_name_33 (goals_conceded__gc_ INTEGER, draw__pe_ VARCHAR, goals_scored__gf_ VARCHAR)"}, {"answer": "SELECT COUNT(university_of_dublin) FROM table_name_46 WHERE cultural_and_educational_panel = 5 AND industrial_and_commercial_panel < 9", "question": "What is the number for the University of Dublin with their Cultural and Educational Panel of 5, and an Industrial and Commercial Panel with less than 9?", "context": "CREATE TABLE table_name_46 (university_of_dublin VARCHAR, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR)"}, {"answer": "SELECT rank FROM table_name_79 WHERE losing_semi__finalist > 1 AND winner < 5", "question": "Which Rank has a Losing Semi- finalist larger than 1, and a Winner smaller than 5?", "context": "CREATE TABLE table_name_79 (rank VARCHAR, losing_semi__finalist VARCHAR, winner VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_78 WHERE country = \"costa rica\" AND losing_semi__finalist > 1", "question": "Which Rank has a Country of costa rica, and a Losing Semi- finalist larger than 1?", "context": "CREATE TABLE table_name_78 (rank INTEGER, country VARCHAR, losing_semi__finalist VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_31 WHERE runner__up < 0", "question": "Which Rank has a Runner -up smaller than 0?", "context": "CREATE TABLE table_name_31 (rank INTEGER, runner__up INTEGER)"}, {"answer": "SELECT year FROM table_name_64 WHERE country = \"united states\" AND dates = \"aug 3\u20135\"", "question": "What Year was the United States the country for aug 3\u20135?", "context": "CREATE TABLE table_name_64 (year VARCHAR, country VARCHAR, dates VARCHAR)"}, {"answer": "SELECT MAX(purse__) AS $_ FROM table_name_80 WHERE dates = \"aug 3\u20135\"", "question": "What is the highest Purse for aug 3\u20135?", "context": "CREATE TABLE table_name_80 (purse__ INTEGER, dates VARCHAR)"}, {"answer": "SELECT country FROM table_name_21 WHERE package_option = \"qualsiasi tranne sky hd\"", "question": "Which country has a qualsiasi tranne sky hd package/option?", "context": "CREATE TABLE table_name_21 (country VARCHAR, package_option VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_99 WHERE television_service = \"sky wwe 24/7\"", "question": "Which package/option has sky wwe 24/7 television service?", "context": "CREATE TABLE table_name_99 (package_option VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_53 WHERE content = \"calcio\"", "question": "What is the package/option for the calcio content?", "context": "CREATE TABLE table_name_53 (package_option VARCHAR, content VARCHAR)"}, {"answer": "SELECT language FROM table_name_50 WHERE television_service = \"cartello promozionale sky hd\"", "question": "What is the language of the television service cartello promozionale sky hd?", "context": "CREATE TABLE table_name_50 (language VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT bike FROM table_name_7 WHERE grid < 23 AND time = \"accident\" AND rider = \"graeme gowland\"", "question": "What kind of bike had a grid less than 23, an accident under time, and Graeme Gowland as a rider?", "context": "CREATE TABLE table_name_7 (bike VARCHAR, rider VARCHAR, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT rider FROM table_name_88 WHERE laps > 5 AND grid > 29 AND bike = \"honda cbr600rr\" AND time = \"+1:27.385\"", "question": "Who was the rider with more than 5 laps on a grid bigger than 29 on a Honda CBR600RR and time at +1:27.385?", "context": "CREATE TABLE table_name_88 (rider VARCHAR, time VARCHAR, bike VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_39 WHERE grid = 36", "question": "Who was the rider with a grid of 36?", "context": "CREATE TABLE table_name_39 (rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT bike FROM table_name_13 WHERE grid < 35 AND time = \"37:58.607\"", "question": "Which bike had a grid less than 35 and time at 37:58.607?", "context": "CREATE TABLE table_name_13 (bike VARCHAR, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT result FROM table_name_46 WHERE director = \"veljko bulaji\u0107 category:articles with hcards\" AND original_title = \"sarajevski atentat\"", "question": "What is Result, when Director is Veljko Bulaji\u0107 category:articles with hcards, and when Original title is Sarajevski Atentat?", "context": "CREATE TABLE table_name_46 (result VARCHAR, director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT result FROM table_name_78 WHERE director = \"mirza idrizovi\u0107 category:articles with hcards\"", "question": "What is Result, when Director is Mirza Idrizovi\u0107 category:articles with hcards?", "context": "CREATE TABLE table_name_78 (result VARCHAR, director VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_35 WHERE film_title_used_in_nomination = \"train without a timetable\"", "question": "What is Original title, when Film title used in nomination is Train Without A Timetable?", "context": "CREATE TABLE table_name_35 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_35 WHERE director = \"veljko bulaji\u0107 category:articles with hcards\" AND film_title_used_in_nomination = \"train without a timetable\"", "question": "What is Original title, when Director is Veljko Bulaji\u0107 category:articles with hcards, and when Film title used in nomination is Train Without A Timetable?", "context": "CREATE TABLE table_name_35 (original_title VARCHAR, director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_47 WHERE year__ceremony_ = \"1968 (41st)\"", "question": "What is Film title used in nomination, when Year (Ceremony) is 1968 (41st)?", "context": "CREATE TABLE table_name_47 (film_title_used_in_nomination VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT director FROM table_name_65 WHERE result = \"nominee\" AND year__ceremony_ = \"1969 (42nd)\"", "question": "What is Director, when Result is nominee, and when Year (Ceremony) is 1969 (42nd)?", "context": "CREATE TABLE table_name_65 (director VARCHAR, result VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT name FROM table_name_24 WHERE height__cm_ = 178 AND weight__kg_ < 91", "question": "Which name's height in centimeters is 178 when its weight in kilograms is less than 91?", "context": "CREATE TABLE table_name_24 (name VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_66 WHERE record = \"31\u201348\"", "question": "What is the name of the player with the High points when there was a Record of 31\u201348?", "context": "CREATE TABLE table_name_66 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_25 WHERE score = \"l 108\u2013114 (ot)\"", "question": "What is the name of the player with the High rebounds when there was a Score of l 108\u2013114 (ot)?", "context": "CREATE TABLE table_name_25 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT lead FROM table_name_87 WHERE season = \"1999\u201300\"", "question": "What is the Lead for the 1999\u201300 season?", "context": "CREATE TABLE table_name_87 (lead VARCHAR, season VARCHAR)"}, {"answer": "SELECT second FROM table_name_91 WHERE third = \"don walchuk\"", "question": "What is the Second when the third is don walchuk?", "context": "CREATE TABLE table_name_91 (second VARCHAR, third VARCHAR)"}, {"answer": "SELECT season FROM table_name_63 WHERE lead = \"don bartlett\" AND third = \"don walchuk\" AND second = \"carter rycroft\"", "question": "What is the Season when the Lead was don bartlett, and the third was don walchuk, and a Second of carter rycroft?", "context": "CREATE TABLE table_name_63 (season VARCHAR, second VARCHAR, lead VARCHAR, third VARCHAR)"}, {"answer": "SELECT skip FROM table_name_61 WHERE third = \"john morris\"", "question": "What is the Skip when the Third was john morris?", "context": "CREATE TABLE table_name_61 (skip VARCHAR, third VARCHAR)"}, {"answer": "SELECT third FROM table_name_23 WHERE lead = \"don bartlett\" AND second = \"carter rycroft\" AND season = \"2003\u201304\"", "question": "What is the Third when the Lead was don bartlett, the Second was carter rycroft, and a Season of 2003\u201304?", "context": "CREATE TABLE table_name_23 (third VARCHAR, season VARCHAR, lead VARCHAR, second VARCHAR)"}, {"answer": "SELECT lead FROM table_name_66 WHERE second = \"marc kennedy\" AND season = \"2012\u201313\"", "question": "What is the Lead when the Second was marc kennedy, in the 2012\u201313 season?", "context": "CREATE TABLE table_name_66 (lead VARCHAR, second VARCHAR, season VARCHAR)"}, {"answer": "SELECT city FROM table_name_97 WHERE capacity = \"41,311\"", "question": "What is the name of the city with a capacity of 41,311?", "context": "CREATE TABLE table_name_97 (city VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT state FROM table_name_37 WHERE city = \"suwon\"", "question": "What is the State with Suwon as the city", "context": "CREATE TABLE table_name_37 (state VARCHAR, city VARCHAR)"}, {"answer": "SELECT state FROM table_name_43 WHERE home_venue = \"suwon sports complex\"", "question": "What is the State with a home venue of suwon sports complex?", "context": "CREATE TABLE table_name_43 (state VARCHAR, home_venue VARCHAR)"}, {"answer": "SELECT team FROM table_name_11 WHERE city = \"chungju\"", "question": "What is the team name for Chungju?", "context": "CREATE TABLE table_name_11 (team VARCHAR, city VARCHAR)"}, {"answer": "SELECT team FROM table_name_96 WHERE home_venue = \"anyang stadium\"", "question": "What is the Team with a venue of Anyang Stadium?", "context": "CREATE TABLE table_name_96 (team VARCHAR, home_venue VARCHAR)"}, {"answer": "SELECT state FROM table_name_10 WHERE team = \"gwangju fc\"", "question": "What is the State with Gwangju Fc as the team?", "context": "CREATE TABLE table_name_10 (state VARCHAR, team VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_72 WHERE player = \"loren roberts\"", "question": "What is the To par, when the Player is Loren Roberts?", "context": "CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_1 WHERE score = 68 - 71 - 69 = 208", "question": "What is the To par, when the Score is 68-71-69=208?", "context": "CREATE TABLE table_name_1 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_19 WHERE score = 68 - 70 - 71 = 209", "question": "What is the Place, when the Score is 68-70-71=209?", "context": "CREATE TABLE table_name_19 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_8 WHERE player = \"chris dimarco\"", "question": "What is the Place, when the Player is Chris Dimarco?", "context": "CREATE TABLE table_name_8 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE country = \"united states\" AND place = \"t3\" AND player = \"chris riley\"", "question": "What is the Score, when the Country is United States, when the Place is T3, and when the Player is Chris Riley?", "context": "CREATE TABLE table_name_38 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE opponent = \"mardy fish\"", "question": "What is the score where the opponent was Mardy Fish?", "context": "CREATE TABLE table_name_68 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_36 WHERE score = \"6\u20134, 6\u20133\" AND date = \"4 may 1992\"", "question": "What surface was played on with a score of 6\u20134, 6\u20133 and on 4 May 1992?", "context": "CREATE TABLE table_name_36 (surface VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_35 WHERE date = \"13 november 2000\"", "question": "What is the name of the tournament played 13 November 2000?", "context": "CREATE TABLE table_name_35 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_21 WHERE date = \"12 february 2001\"", "question": "Which tournament was played on 12 February 2001?", "context": "CREATE TABLE table_name_21 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(round__number) FROM table_name_18 WHERE position = \"wide receiver\" AND college = \"clark university\" AND pick__number > 166", "question": "What is the average round number with wide receiver as position and Clark University as the college and the pick number is bigger than 166?", "context": "CREATE TABLE table_name_18 (round__number INTEGER, pick__number VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT team FROM table_name_21 WHERE year_entered_league < 2009 AND location = \"bath\"", "question": "Which team had a year entering the league under 2009, located in Bath?", "context": "CREATE TABLE table_name_21 (team VARCHAR, year_entered_league VARCHAR, location VARCHAR)"}, {"answer": "SELECT year_entered_league FROM table_name_70 WHERE university = \"university of essex\"", "question": "What is the year of entry for the University of Essex?", "context": "CREATE TABLE table_name_70 (year_entered_league VARCHAR, university VARCHAR)"}, {"answer": "SELECT 2013 AS _14_division FROM table_name_60 WHERE team = \"wolverhampton wildcats\"", "question": "What is the 2013-2014 division for the Wolverhampton Wildcats?", "context": "CREATE TABLE table_name_60 (team VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_16 WHERE against = 1261", "question": "What is the least amount of draws with an against of 1261?", "context": "CREATE TABLE table_name_16 (draws INTEGER, against VARCHAR)"}, {"answer": "SELECT label FROM table_name_24 WHERE album = \"cover version v\"", "question": "What label shows an Album of cover version v?", "context": "CREATE TABLE table_name_24 (label VARCHAR, album VARCHAR)"}, {"answer": "SELECT label FROM table_name_26 WHERE album = \"cover version vi\"", "question": "What is the Label when the album shows cover version vi?", "context": "CREATE TABLE table_name_26 (label VARCHAR, album VARCHAR)"}, {"answer": "SELECT covered_song FROM table_name_7 WHERE album = \"cover version iii\"", "question": "What is the name of the Covered Song when the Album shows cover version iii?", "context": "CREATE TABLE table_name_7 (covered_song VARCHAR, album VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_66 WHERE attendance = \"67,968\"", "question": "What is the sum of Week when there were 67,968 people in attendance?", "context": "CREATE TABLE table_name_66 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_77 WHERE result = \"l 31\u201328\"", "question": "What is the Week number with a result of l 31\u201328?", "context": "CREATE TABLE table_name_77 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE tie_no = \"1\"", "question": "What was the score at the Tie no. 1 game?", "context": "CREATE TABLE table_name_37 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_69 WHERE home_team = \"west ham united\"", "question": "What was the attendance at the West Ham United home game?", "context": "CREATE TABLE table_name_69 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT sport FROM table_name_9 WHERE name = \"gustav larsson\"", "question": "What is the Sport with a Name that is gustav larsson?", "context": "CREATE TABLE table_name_9 (sport VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_15 WHERE event = \"men's time trial\"", "question": "What is the Name with an Event that is men's time trial?", "context": "CREATE TABLE table_name_15 (name VARCHAR, event VARCHAR)"}, {"answer": "SELECT venue FROM table_name_78 WHERE date = \"15 november 2010\"", "question": "At which venue did the event held on 15 November 2010 occur?", "context": "CREATE TABLE table_name_78 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_32 WHERE performer = \"rob burke band\" AND draw > 1", "question": "Which Points has a Performer of rob burke band and a Draw larger than 1?", "context": "CREATE TABLE table_name_32 (points INTEGER, performer VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_87 WHERE performer = \"se\u00e1n monaghan\" AND draw < 7", "question": "Which Points have a Performer of se\u00e1n monaghan and a Draw smaller than 7?", "context": "CREATE TABLE table_name_87 (points INTEGER, performer VARCHAR, draw VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_7 WHERE performer = \"rob burke band\"", "question": "Which Points has a Performer of rob burke band?", "context": "CREATE TABLE table_name_7 (points VARCHAR, performer VARCHAR)"}, {"answer": "SELECT finish FROM table_name_8 WHERE wins = \"28\"", "question": "What is the Finish of 28 Wins?", "context": "CREATE TABLE table_name_8 (finish VARCHAR, wins VARCHAR)"}, {"answer": "SELECT finish FROM table_name_41 WHERE wins = \"reno bighorns\"", "question": "What is the Finish of the Reno Bighorns Wins?", "context": "CREATE TABLE table_name_41 (finish VARCHAR, wins VARCHAR)"}, {"answer": "SELECT finish FROM table_name_49 WHERE wins = \"28\"", "question": "What is the Finish of 28 Wins?", "context": "CREATE TABLE table_name_49 (finish VARCHAR, wins VARCHAR)"}, {"answer": "SELECT wins FROM table_name_95 WHERE division = \"western\" AND finish = \"4th\"", "question": "What is the Western Division of Wins with a 4th Finish?", "context": "CREATE TABLE table_name_95 (wins VARCHAR, division VARCHAR, finish VARCHAR)"}, {"answer": "SELECT losses FROM table_name_56 WHERE season = \"playoffs\"", "question": "What are the losses of the playoffs season?", "context": "CREATE TABLE table_name_56 (losses VARCHAR, season VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_84 WHERE team_2 = \"saint louis\"", "question": "What is Team 1, when Team 2 is Saint Louis?", "context": "CREATE TABLE table_name_84 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_42 WHERE team_2 = \"mukungwa\"", "question": "What is Agg., when Team 2 is Mukungwa?", "context": "CREATE TABLE table_name_42 (agg VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT round FROM table_name_35 WHERE opponent = \"torpedo moscow\"", "question": "What is the Round with an Opponent that is torpedo moscow?", "context": "CREATE TABLE table_name_35 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_7 WHERE goals = 103 AND rank > 9", "question": "Can you tell me the sum of Matches that has the Goals of 103, and the Rank larger than 9?", "context": "CREATE TABLE table_name_7 (matches INTEGER, goals VARCHAR, rank VARCHAR)"}, {"answer": "SELECT name FROM table_name_24 WHERE goals > 98 AND rank = 7", "question": "Can you tell me the Name that has the Goals larger than 98, and the Rank of 7?", "context": "CREATE TABLE table_name_24 (name VARCHAR, goals VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_84 WHERE time = \"accident\" AND rider = \"carmelo morales\" AND grid > 25", "question": "How many laps had a time stat of accident for the rider carmelo morales when the grid was more than 25?", "context": "CREATE TABLE table_name_84 (laps INTEGER, grid VARCHAR, time VARCHAR, rider VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_37 WHERE time = \"+2.987\"", "question": "How many laps had a time of +2.987?", "context": "CREATE TABLE table_name_37 (laps VARCHAR, time VARCHAR)"}, {"answer": "SELECT bike FROM table_name_15 WHERE laps < 23 AND grid = 4", "question": "Which bike had fewer than 23 laps and a grid number of 4?", "context": "CREATE TABLE table_name_15 (bike VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT record FROM table_name_88 WHERE week = 14", "question": "What is the Record for week 14?", "context": "CREATE TABLE table_name_88 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_41 WHERE nfl_recap = \"recap\" AND game_site = \"bank of america stadium\"", "question": "What is the Result with an NFL Recap, played at bank of america stadium?", "context": "CREATE TABLE table_name_41 (result VARCHAR, nfl_recap VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT record FROM table_name_95 WHERE week = 12", "question": "What is the Record for week 12?", "context": "CREATE TABLE table_name_95 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_62 WHERE time = \"2:05 p.m.\" AND result = \"w 26\u201320\"", "question": "What is the Opponent with a time of 2:05 p.m., and the results were w 26\u201320?", "context": "CREATE TABLE table_name_62 (opponent VARCHAR, time VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_67 WHERE date = \"october 12, 2008\"", "question": "What is the highest Week for october 12, 2008?", "context": "CREATE TABLE table_name_67 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_37 WHERE drawn = 1 AND lost = 2", "question": "Which team has 1 as the drawn, with 2 as the lost?", "context": "CREATE TABLE table_name_37 (team VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_83 WHERE lost = 7", "question": "How many drawns have 7 for the lost?", "context": "CREATE TABLE table_name_83 (drawn INTEGER, lost VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_17 WHERE drawn > 1 AND against > 16", "question": "What is the average played that has a drawn greater than 1, with an against greater than 16?", "context": "CREATE TABLE table_name_17 (played INTEGER, drawn VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(maidens) FROM table_name_36 WHERE matches = 2", "question": "What is the sum of Maidens with a number of Matches that is 2?", "context": "CREATE TABLE table_name_36 (maidens INTEGER, matches VARCHAR)"}, {"answer": "SELECT team FROM table_name_52 WHERE rank > 2 AND name = \"paolo maldini\"", "question": "Ranking higher than 2, what Team has Player Paolo Maldini?", "context": "CREATE TABLE table_name_52 (team VARCHAR, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_97 WHERE rank = 2", "question": "What Country is in Rank 2?", "context": "CREATE TABLE table_name_97 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE leading_scorer = \"leo mainoldi (24)\"", "question": "What date was Leo Mainoldi (24) the leading scorer?", "context": "CREATE TABLE table_name_72 (date VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_61 WHERE record = \"14-10\"", "question": "Who is the visitor with the 14-10 record?", "context": "CREATE TABLE table_name_61 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_32 WHERE score = \"73-82\"", "question": "What is the record of the 73-82 score?", "context": "CREATE TABLE table_name_32 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_56 WHERE visitor = \"villa de los barrios\"", "question": "Who is the leading scorer of the Villa De Los Barrios visitor?", "context": "CREATE TABLE table_name_56 (leading_scorer VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_71 WHERE record = \"14-10\"", "question": "Who is the visitor with a 14-10 record?", "context": "CREATE TABLE table_name_71 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE record = \"14-9\"", "question": "What is the score of the team with the 14-9 record?", "context": "CREATE TABLE table_name_43 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE goal = 6", "question": "What was the date of the game with 6 goals?", "context": "CREATE TABLE table_name_61 (date VARCHAR, goal VARCHAR)"}, {"answer": "SELECT MAX(goal) FROM table_name_27 WHERE venue = \"hannover\"", "question": "What was the highest number of goals for a game held at Hannover?", "context": "CREATE TABLE table_name_27 (goal INTEGER, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_80 WHERE goal > 12 AND venue = \"pasadena\"", "question": "What was the result of the game with more than 12 goals at Pasadena?", "context": "CREATE TABLE table_name_80 (result VARCHAR, goal VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_54 WHERE position = \"defensive tackle\" AND player = \"andre fluellen\"", "question": "What round was Andre Fluellen drafted as a Defensive Tackle?", "context": "CREATE TABLE table_name_54 (round VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_68 WHERE round > 5 AND position = \"defensive tackle\"", "question": "After Round 5, which player was drafted for Defensive Tackle?", "context": "CREATE TABLE table_name_68 (player VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_32 WHERE team = \"central florida\"", "question": "What was the earliest Round for Central Florida?", "context": "CREATE TABLE table_name_32 (round INTEGER, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE label = \"dos or die recordings\"", "question": "What is the date of the label Dos or Die Recordings?", "context": "CREATE TABLE table_name_9 (date VARCHAR, label VARCHAR)"}, {"answer": "SELECT label FROM table_name_23 WHERE date = \"2002\" AND region = \"germany\" AND catalog = \"dos 195\"", "question": "What is the label for 2002, in Germany, Catalog Dos 195?", "context": "CREATE TABLE table_name_23 (label VARCHAR, catalog VARCHAR, date VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_name_70 WHERE date = \"2002\" AND catalog = \"dos 195\"", "question": "What region has a 2002 date, and a Catalog dos 195?", "context": "CREATE TABLE table_name_70 (region VARCHAR, date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT winners FROM table_name_90 WHERE runners_up = \"united states\" AND venue = \"st. germain golf club\"", "question": "What is the Winners when the United States is the runner-up at st. germain golf club?", "context": "CREATE TABLE table_name_90 (winners VARCHAR, runners_up VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_8 WHERE runners_up = \"australia\" AND venue = \"victoria golf club\"", "question": "What is the average Year when Australia was the runner-up at victoria golf club?", "context": "CREATE TABLE table_name_8 (year INTEGER, runners_up VARCHAR, venue VARCHAR)"}, {"answer": "SELECT location FROM table_name_41 WHERE runners_up = \"france\" AND venue = \"club de campo\"", "question": "What is the Location when France was the runner-up at club de campo?", "context": "CREATE TABLE table_name_41 (location VARCHAR, runners_up VARCHAR, venue VARCHAR)"}, {"answer": "SELECT location FROM table_name_77 WHERE runners_up = \"canada\" AND winners = \"australia\"", "question": "What is the Location when Canada was the runner-up and Australia was the winner?", "context": "CREATE TABLE table_name_77 (location VARCHAR, runners_up VARCHAR, winners VARCHAR)"}, {"answer": "SELECT name FROM table_name_31 WHERE terminated = \"march 1993\"", "question": "What is the Name of the Space Telescope Terminated on March 1993?", "context": "CREATE TABLE table_name_31 (name VARCHAR, terminated VARCHAR)"}, {"answer": "SELECT party FROM table_name_33 WHERE opinion_research_centre__opc_ = \"1.5%\"", "question": "What is Party, when Opinion Research Centre (OPC) is 1.5%?", "context": "CREATE TABLE table_name_33 (party VARCHAR, opinion_research_centre__opc_ VARCHAR)"}, {"answer": "SELECT marplan FROM table_name_55 WHERE gallup = \"1.5%\"", "question": "What is Marplan, when Gallup is 1.5%", "context": "CREATE TABLE table_name_55 (marplan VARCHAR, gallup VARCHAR)"}, {"answer": "SELECT opinion_research_centre__opc_ FROM table_name_40 WHERE party = \"conservative\"", "question": "What is Opinion Research Centre (OPC), when Party is Conservative?", "context": "CREATE TABLE table_name_40 (opinion_research_centre__opc_ VARCHAR, party VARCHAR)"}, {"answer": "SELECT harris FROM table_name_84 WHERE marplan = \"1.3%\"", "question": "What is Harris, when Marplan is 1.3%", "context": "CREATE TABLE table_name_84 (harris VARCHAR, marplan VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_15 WHERE rider = \"roger dutton/tony wright\"", "question": "What are the fewest points that Roger Dutton/Tony Wright have received?", "context": "CREATE TABLE table_name_15 (points INTEGER, rider VARCHAR)"}, {"answer": "SELECT speed FROM table_name_43 WHERE machine = \"bmw\" AND points = 6", "question": "How fast does the BMW with 6 points go?", "context": "CREATE TABLE table_name_43 (speed VARCHAR, machine VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_64 WHERE artist = \"desi dobreva\" AND place < 6", "question": "What is the average draw for Desi Dobreva, was it less than 6?", "context": "CREATE TABLE table_name_64 (draw INTEGER, artist VARCHAR, place VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_34 WHERE team_2 = \"as police\"", "question": "What was the first leg score for the match that had AS Police as team 2?", "context": "CREATE TABLE table_name_34 (team_2 VARCHAR)"}, {"answer": "SELECT result FROM table_name_67 WHERE category = \"outstanding director of a musical\"", "question": "What was the result for the Outstanding director of a musical category?", "context": "CREATE TABLE table_name_67 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT result FROM table_name_37 WHERE award = \"drama desk award\" AND nominee = \"tom hewitt\"", "question": "What was the result of the Award of Drama desk award nominee Tom Hewitt.", "context": "CREATE TABLE table_name_37 (result VARCHAR, award VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT year FROM table_name_97 WHERE category = \"best costume design\"", "question": "What year was best costume design the award category?", "context": "CREATE TABLE table_name_97 (year VARCHAR, category VARCHAR)"}, {"answer": "SELECT accolade FROM table_name_61 WHERE country = \"usa\" AND year < 2009", "question": "Which accolade has USA as the country, with a year less than 2009?", "context": "CREATE TABLE table_name_61 (accolade VARCHAR, country VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_6 WHERE accolade = \"50 best albums of the year\" AND rank = \"#3\"", "question": "How many years have an accolade of 50 best albums of the year, with #3 as the rank?", "context": "CREATE TABLE table_name_6 (year INTEGER, accolade VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_84 WHERE country = \"canada\"", "question": "Which rank has canada as the country?", "context": "CREATE TABLE table_name_84 (rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT guest_host FROM table_name_73 WHERE episode_number = 5", "question": "What is the name of the Guest Host for Episode Number of 5?", "context": "CREATE TABLE table_name_73 (guest_host VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT guest_host FROM table_name_2 WHERE air_date = \"8 june 2008\"", "question": "What is the Guest Host for the episode on 8 june 2008?", "context": "CREATE TABLE table_name_2 (guest_host VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT musical_guest__song_performed_ FROM table_name_2 WHERE air_date = \"13 july 2008\"", "question": "What is the Musical Guest (Song performed) for the episode aired on 13 july 2008?", "context": "CREATE TABLE table_name_2 (musical_guest__song_performed_ VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE competition = \"2014 fifa world cup qualification (uefa)\"", "question": "What was the score for the 2014 FIFA World Cup Qualification (UEFA)?", "context": "CREATE TABLE table_name_64 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT kickoff_time FROM table_name_64 WHERE week = 11", "question": "What was the kickoff time for week 11's game?", "context": "CREATE TABLE table_name_64 (kickoff_time VARCHAR, week VARCHAR)"}, {"answer": "SELECT the_tradition FROM table_name_14 WHERE year > 1998 AND senior_players_championship = \"mark o'meara\"", "question": "When Mark O'meara was the senior player champion in a year greater than 1998, who was the tradition?", "context": "CREATE TABLE table_name_14 (the_tradition VARCHAR, year VARCHAR, senior_players_championship VARCHAR)"}, {"answer": "SELECT the_tradition FROM table_name_83 WHERE senior_british_open = \"founded in 1987\" AND us_senior_open = \"roberto devicenzo\"", "question": "Who was the tradition when Roberto Devicenzo won the U.S. Senior Open and the Senior British Open was founded in 1987?", "context": "CREATE TABLE table_name_83 (the_tradition VARCHAR, senior_british_open VARCHAR, us_senior_open VARCHAR)"}, {"answer": "SELECT senior_british_open FROM table_name_57 WHERE senior_pga_championship = \"hale irwin (3/7)\"", "question": "Who won the Senior British Open when Hale Irwin (3/7) won the Senior PGA Championship?", "context": "CREATE TABLE table_name_57 (senior_british_open VARCHAR, senior_pga_championship VARCHAR)"}, {"answer": "SELECT senior_pga_championship FROM table_name_41 WHERE senior_british_open = \"tom watson (5/6)\"", "question": "When Tom Watson (5/6) won the Senior British Open who won the Senior PGA Championship?", "context": "CREATE TABLE table_name_41 (senior_pga_championship VARCHAR, senior_british_open VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_17 WHERE points_for > 19 AND opponent = \"philadelphia eagles\" AND points_against > 7", "question": "Which Week has Points For larger than 19, and an Opponent of philadelphia eagles, and Points Against larger than 7?", "context": "CREATE TABLE table_name_17 (week INTEGER, points_against VARCHAR, points_for VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_98 WHERE first_downs < 26 AND opponent = \"los angeles rams\" AND points_for > 28", "question": "Which Attendance has a First Downs smaller than 26, an Opponent of los angeles rams, and Points For larger than 28?", "context": "CREATE TABLE table_name_98 (attendance INTEGER, points_for VARCHAR, first_downs VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(league) AS Cup FROM table_name_18 WHERE fa_cup = 5 AND club = \"boston united\" AND league < 16", "question": "Which League Cup has a FA Cup of 5, and a Club of boston united, and a League smaller than 16?", "context": "CREATE TABLE table_name_18 (league INTEGER, fa_cup VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_99 WHERE fa_trophy = 0 AND player = \"charlie butler\"", "question": "How many Total that has a FA Trophy of 0 and a Player of charlie butler?", "context": "CREATE TABLE table_name_99 (total VARCHAR, fa_trophy VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(fa_trophy) FROM table_name_52 WHERE player = \"mario walsh\" AND league > 17", "question": "How many  FA Trophy has a Player of mario walsh and a League larger than 17?", "context": "CREATE TABLE table_name_52 (fa_trophy INTEGER, player VARCHAR, league VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_64 WHERE date = \"oct 28, 1962\"", "question": "What was the score of the winning match on Oct 28, 1962?", "context": "CREATE TABLE table_name_64 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_16 WHERE runner_s__up = \"jack nicklaus\"", "question": "By how many strokes did Lema beat Jack Nicklaus?", "context": "CREATE TABLE table_name_16 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_89 WHERE date = \"jan 19, 1964\"", "question": "Who was the runner-up on Jan 19, 1964?", "context": "CREATE TABLE table_name_89 (runner_s__up VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(rebounds) FROM table_name_10 WHERE team = \"maccabi tel aviv\" AND games > 6", "question": "How many Rebounds did Maccabi Tel Aviv Team get after Game 6?", "context": "CREATE TABLE table_name_10 (rebounds VARCHAR, team VARCHAR, games VARCHAR)"}, {"answer": "SELECT games FROM table_name_3 WHERE team = \"efes pilsen\"", "question": "How many Games for the player with Rebounds from Efes Pilsen?", "context": "CREATE TABLE table_name_3 (games VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_68 WHERE team = \"lietuvos rytas vilnius\" AND rebounds < 43", "question": "How many Games for the Player from Lietuvos Rytas Vilnius with less the 43 Rebounds?", "context": "CREATE TABLE table_name_68 (games INTEGER, team VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT name FROM table_name_56 WHERE authors = \"zhou clarke zhang\"", "question": "Who is The Author of zhou clarke zhang?", "context": "CREATE TABLE table_name_56 (name VARCHAR, authors VARCHAR)"}, {"answer": "SELECT status FROM table_name_21 WHERE notes = \"primitive confuciusornithid .\"", "question": "What is the Status of primitive confuciusornithid .?", "context": "CREATE TABLE table_name_21 (status VARCHAR, notes VARCHAR)"}, {"answer": "SELECT name FROM table_name_99 WHERE authors = \"gao chiappe meng o'connor wang cheng liu\"", "question": "What is the name of gao chiappe meng o'connor wang cheng liu?", "context": "CREATE TABLE table_name_99 (name VARCHAR, authors VARCHAR)"}, {"answer": "SELECT location FROM table_name_84 WHERE name = \"zhongornis\"", "question": "Where has a Name of zhongornis?", "context": "CREATE TABLE table_name_84 (location VARCHAR, name VARCHAR)"}, {"answer": "SELECT notes FROM table_name_40 WHERE authors = \"zhou clarke zhang\"", "question": "Which Notes has Authors of zhou clarke zhang?", "context": "CREATE TABLE table_name_40 (notes VARCHAR, authors VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_6 WHERE team = \"beirasar rosal\u00eda\" AND games < 32", "question": "What was the ranking of Beirasar Rosal\u00eda, the year they played 32 games?", "context": "CREATE TABLE table_name_6 (rank INTEGER, team VARCHAR, games VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_12 WHERE name = \"antwain barbour\" AND games < 39", "question": "How many points did Antwain Barbour score in the year he played 39 games?", "context": "CREATE TABLE table_name_12 (points INTEGER, name VARCHAR, games VARCHAR)"}, {"answer": "SELECT team FROM table_name_59 WHERE name = \"paolo quinteros\"", "question": "What team was Paolo Quinteros on?", "context": "CREATE TABLE table_name_59 (team VARCHAR, name VARCHAR)"}, {"answer": "SELECT res FROM table_name_10 WHERE record = \"8-1 (1)\"", "question": "Was the record of 8-1 (1) a win or a loss?", "context": "CREATE TABLE table_name_10 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT event FROM table_name_8 WHERE method = \"technical decision (split)\"", "question": "In what event was the technical decision (split) method used?", "context": "CREATE TABLE table_name_8 (event VARCHAR, method VARCHAR)"}, {"answer": "SELECT AVG(play_offs) FROM table_name_9 WHERE fa_cup > 3", "question": "What are the average play-offs that have an FA Cup greater than 3?", "context": "CREATE TABLE table_name_9 (play_offs INTEGER, fa_cup INTEGER)"}, {"answer": "SELECT COUNT(total) FROM table_name_47 WHERE play_offs < 0", "question": "How many totals have a play-off less than 0?", "context": "CREATE TABLE table_name_47 (total VARCHAR, play_offs INTEGER)"}, {"answer": "SELECT league FROM table_name_76 WHERE fa_cup > 0 AND total > 21", "question": "Which league has an FA cup greater than 0, with a total greater than 21?", "context": "CREATE TABLE table_name_76 (league VARCHAR, fa_cup VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(play_offs) FROM table_name_64 WHERE club = \"stevenage borough\" AND total > 21", "question": "What is the highest play-offs that have stevenage borough as the club, and a total greater than 21?", "context": "CREATE TABLE table_name_64 (play_offs INTEGER, club VARCHAR, total VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_6 WHERE 2003 = \"2r\" AND tournament = \"wimbledon\"", "question": "What is the tournament in 2012 results that has a 2003 results of 2r and played at Wimbledon?", "context": "CREATE TABLE table_name_6 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_65 WHERE 2013 = \"2r\" AND tournament = \"wimbledon\"", "question": "What results in 2012 also has 2013 results of 2r and the tournament was Wimbledon?", "context": "CREATE TABLE table_name_65 (tournament VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_67 WHERE 2012 = \"1r\" AND 2004 = \"2r\" AND tournament = \"australian open\"", "question": "What is the results from 2003 that has a 2012 result of 1r and a 2004 result of 2r and from the Australian Open?", "context": "CREATE TABLE table_name_67 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_25 WHERE 2003 = \"2r\" AND 2004 = \"1r\"", "question": "What is the name of the tournament that has the results of 2003 2r and 2004 1r?", "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_72 WHERE 2013 = \"2r\"", "question": "What is the results in 2004 that has a 2013 result of 2r?", "context": "CREATE TABLE table_name_72 (Id VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_80 WHERE tournament = \"us open\"", "question": "What is the result from 2003 from the US Open?", "context": "CREATE TABLE table_name_80 (tournament VARCHAR)"}, {"answer": "SELECT AVG(height__cm_) FROM table_name_21 WHERE weight__kg_ > 84 AND birthdate = \"june 24, 1964\"", "question": "What is the height of the player born on June 24, 1964, with a weight over 84 kg?", "context": "CREATE TABLE table_name_21 (height__cm_ INTEGER, weight__kg_ VARCHAR, birthdate VARCHAR)"}, {"answer": "SELECT birthdate FROM table_name_54 WHERE birthplace = \"melrose, massachusetts\"", "question": "On what date was the player from Melrose, Massachusetts born?", "context": "CREATE TABLE table_name_54 (birthdate VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE event = \"billabong pro\"", "question": "What is Date, when Event is Billabong Pro?", "context": "CREATE TABLE table_name_34 (date VARCHAR, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_74 WHERE date = \"december 8-december 20\"", "question": "What is Location, when Date is December 8-December 20?", "context": "CREATE TABLE table_name_74 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_87 WHERE event = \"mancora peru classic\"", "question": "What is Runner-up, when Event is Mancora Peru Classic?", "context": "CREATE TABLE table_name_87 (runner_up VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_72 WHERE date = \"august 20-august 27\"", "question": "What is Event, when Date is August 20-August 27?", "context": "CREATE TABLE table_name_72 (event VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE runner_up = \"sof\u00eda mul\u00e1novich ( per )\"", "question": "What is Date when Runner-up is Sof\u00eda Mul\u00e1novich ( per )?", "context": "CREATE TABLE table_name_92 (date VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT country FROM table_name_67 WHERE event = \"rip curl women's pro\"", "question": "What is Country, when Event is Rip Curl Women's Pro?", "context": "CREATE TABLE table_name_67 (country VARCHAR, event VARCHAR)"}, {"answer": "SELECT MAX(win_percentage) FROM table_name_18 WHERE losses = 23", "question": "What is the highest win percentage when there were 23 losses?", "context": "CREATE TABLE table_name_18 (win_percentage INTEGER, losses VARCHAR)"}, {"answer": "SELECT finish FROM table_name_41 WHERE win_percentage > 0.598 AND wins < 53", "question": "Which finish had a win percentage that was more than 0.598 and also had less than 53 wins?", "context": "CREATE TABLE table_name_41 (finish VARCHAR, win_percentage VARCHAR, wins VARCHAR)"}, {"answer": "SELECT 2007 AS _team FROM table_name_30 WHERE player = \"deshaun foster\"", "question": "What is the 2007 Team with player Deshaun Foster?", "context": "CREATE TABLE table_name_30 (player VARCHAR)"}, {"answer": "SELECT free_agent_type FROM table_name_2 WHERE player = \"bryant johnson\"", "question": "What is the Free Agent Type for player bryant johnson?", "context": "CREATE TABLE table_name_2 (free_agent_type VARCHAR, player VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_39 WHERE date = \"march 31\"", "question": "What is the High assists with a Date that is march 31?", "context": "CREATE TABLE table_name_39 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE date = \"march 12\"", "question": "What is the Score with a Date that is march 12?", "context": "CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_73 WHERE bronze > 1 AND gold < 2 AND total < 2", "question": "What is the lowest silver that has a bronze greater than 1, a gold less than 2, and a total less than 2?", "context": "CREATE TABLE table_name_73 (silver INTEGER, total VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_41 WHERE silver < 0", "question": "What average rank that has a silver less than 0?", "context": "CREATE TABLE table_name_41 (rank INTEGER, silver INTEGER)"}, {"answer": "SELECT COUNT(silver) FROM table_name_42 WHERE total = 4 AND bronze < 2", "question": "How many silver have 4 as the total with a bronze less than 2?", "context": "CREATE TABLE table_name_42 (silver VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_6 WHERE rank > 4 AND nation = \"czech republic\" AND bronze > 0", "question": "How many totals have a rank greater than 4, czech Republic as the nation, and a bronze greater than 0?", "context": "CREATE TABLE table_name_6 (total INTEGER, bronze VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_9 WHERE gold > 0 AND silver > 0 AND bronze > 2", "question": "What average total has a gold greater than 0, and a silver greater than 0, with a bronze greater than 2?", "context": "CREATE TABLE table_name_9 (total INTEGER, bronze VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT country FROM table_name_26 WHERE indigenous_mining_production_2006 = \"0\"", "question": "Which country has an Indigenous mining production 2006 of 0?", "context": "CREATE TABLE table_name_26 (country VARCHAR, indigenous_mining_production_2006 VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_19 WHERE total < \"6\" AND rank = \"6\" AND nation = \"bulgaria\"", "question": "What is the sum of Silver when the total is less than 6, the rank is 6 and the Bulgaria is the nation?", "context": "CREATE TABLE table_name_19 (silver INTEGER, nation VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_84 WHERE bronze = 2 AND total < 5 AND rank = \"6\"", "question": "What nation has a bronze of 2 with a total less than 5 and rank of 6?", "context": "CREATE TABLE table_name_84 (nation VARCHAR, rank VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_13 WHERE rank = \"3\" AND gold > 4", "question": "What is the lowest Total for rank 3 with more than 4 gold?", "context": "CREATE TABLE table_name_13 (total INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_32 WHERE nation = \"italy\" AND silver < 0", "question": "What is the lowest Total for Italy with less than 0 silver?", "context": "CREATE TABLE table_name_32 (total INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT nation FROM table_name_81 WHERE silver < 1 AND total = 1 AND bronze = 0", "question": "What is the Nation with less than 1 silver, and the total is 1, and bronze is less than 0?", "context": "CREATE TABLE table_name_81 (nation VARCHAR, bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT number FROM table_name_32 WHERE season = \"2002-2003\"", "question": "What number has 2002-2003 as the season?", "context": "CREATE TABLE table_name_32 (number VARCHAR, season VARCHAR)"}, {"answer": "SELECT position FROM table_name_11 WHERE season = \"2008\"", "question": "What position has 2008 as the season?", "context": "CREATE TABLE table_name_11 (position VARCHAR, season VARCHAR)"}, {"answer": "SELECT name FROM table_name_54 WHERE number = \"50\"", "question": "What name has 50 as the number?", "context": "CREATE TABLE table_name_54 (name VARCHAR, number VARCHAR)"}, {"answer": "SELECT number FROM table_name_38 WHERE season = \"2008\"", "question": "What number has 2008 as the season?", "context": "CREATE TABLE table_name_38 (number VARCHAR, season VARCHAR)"}, {"answer": "SELECT name FROM table_name_5 WHERE number = \"8\"", "question": "What name has 8 as the number?", "context": "CREATE TABLE table_name_5 (name VARCHAR, number VARCHAR)"}, {"answer": "SELECT position FROM table_name_16 WHERE name = \"ronjay buenafe\"", "question": "What position has ronjay buenafe as the name?", "context": "CREATE TABLE table_name_16 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(long) FROM table_name_51 WHERE yards = 26", "question": "What was the lowest long with 26 yards?", "context": "CREATE TABLE table_name_51 (long INTEGER, yards VARCHAR)"}, {"answer": "SELECT MAX(avg) FROM table_name_57 WHERE fuml < 0", "question": "What was the highest average when Fuml was 0?", "context": "CREATE TABLE table_name_57 (avg INTEGER, fuml INTEGER)"}, {"answer": "SELECT MAX(current_run_since) FROM table_name_12 WHERE last_title = \"2010\" AND seasons_in_esiliiga > 10", "question": "What is the highest run currently since the last title in 2010, and a season in Esiliiga larger than 10?", "context": "CREATE TABLE table_name_12 (current_run_since INTEGER, last_title VARCHAR, seasons_in_esiliiga VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_87 WHERE seasons_in_esiliiga > 4 AND titles > 0", "question": "What is the 2012 season in Esiliiga more than 4, and more than 0 titles?", "context": "CREATE TABLE table_name_87 (seasons_in_esiliiga VARCHAR, titles VARCHAR)"}, {"answer": "SELECT 20 AS _29 FROM table_name_69 WHERE season = \"2008\"", "question": "What 20-29 was in season 2008?", "context": "CREATE TABLE table_name_69 (season VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_33 WHERE season = \"1994\"", "question": "What were the lowest amount of points for season 1994?", "context": "CREATE TABLE table_name_33 (points INTEGER, season VARCHAR)"}, {"answer": "SELECT 20 AS _29 FROM table_name_11 WHERE season = \"1997\"", "question": "Which 20-29 had a season of 1997?", "context": "CREATE TABLE table_name_11 (season VARCHAR)"}, {"answer": "SELECT position FROM table_name_27 WHERE name = \"rod paavola\"", "question": "What is the Postion, when the Name is Rod Paavola?", "context": "CREATE TABLE table_name_27 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(jersey__number) FROM table_name_56 WHERE position = \"w\" AND birthdate = \"17 october 1932\"", "question": "What is the total number of Jersey #, when the Position is W, and when the Birthdate is 17 October 1932?", "context": "CREATE TABLE table_name_56 (jersey__number VARCHAR, position VARCHAR, birthdate VARCHAR)"}, {"answer": "SELECT birthplace FROM table_name_76 WHERE name = \"bob mcvey\"", "question": "What is the Birthplace, when the Name is Bob Mcvey?", "context": "CREATE TABLE table_name_76 (birthplace VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_73 WHERE position = \"w\" AND jersey__number = 11", "question": "What is the Name, when the Position is W, and when the Jersey # is 11?", "context": "CREATE TABLE table_name_73 (name VARCHAR, position VARCHAR, jersey__number VARCHAR)"}, {"answer": "SELECT position FROM table_name_13 WHERE club_team = \"warroad lakers\" AND name = \"roger christian\"", "question": "What is the Postion, when the Club/Team is Warroad Lakers, and when the Name is Roger Christian?", "context": "CREATE TABLE table_name_13 (position VARCHAR, club_team VARCHAR, name VARCHAR)"}, {"answer": "SELECT home FROM table_name_96 WHERE score = \"122-28\"", "question": "What home has 122-28 as the score?", "context": "CREATE TABLE table_name_96 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT ground FROM table_name_88 WHERE home = \"etobicoke kangaroos\"", "question": "What ground has etobicoke kangaroos as the home?", "context": "CREATE TABLE table_name_88 (ground VARCHAR, home VARCHAR)"}, {"answer": "SELECT time FROM table_name_58 WHERE ground = \"humber college north\" AND home = \"toronto downtown dingos\"", "question": "What time has humber college north as the ground, and toronto downtown dingos as the home?", "context": "CREATE TABLE table_name_58 (time VARCHAR, ground VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE home = \"toronto eagles\"", "question": "What score has Toronto Eagles as the home?", "context": "CREATE TABLE table_name_57 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE away = \"high park demons\"", "question": "What date has high park demons as the away?", "context": "CREATE TABLE table_name_15 (date VARCHAR, away VARCHAR)"}, {"answer": "SELECT away FROM table_name_71 WHERE home = \"toronto downtown dingos\"", "question": "What away has toronto downtown dingos as the home?", "context": "CREATE TABLE table_name_71 (away VARCHAR, home VARCHAR)"}, {"answer": "SELECT winner FROM table_name_71 WHERE event = \"rip curl pro search\"", "question": "Who was the winner from the Rip Curl Pro Search?", "context": "CREATE TABLE table_name_71 (winner VARCHAR, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_56 WHERE country = \"spain\"", "question": "What was the location of the tournament held in Spain?", "context": "CREATE TABLE table_name_56 (location VARCHAR, country VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE country = \"indonesia\"", "question": "What was the date of the tournament held in Indonesia?", "context": "CREATE TABLE table_name_23 (date VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_21 WHERE difference = \"- 3\" AND played < 10", "question": "What is the average Lost when the difference is - 3, and a Played is less than 10?", "context": "CREATE TABLE table_name_21 (lost INTEGER, difference VARCHAR, played VARCHAR)"}, {"answer": "SELECT position FROM table_name_65 WHERE drawn < \"2\" AND difference = \"2\"", "question": "What is the Position when the Drawn is less than 2, with a Difference of 2?", "context": "CREATE TABLE table_name_65 (position VARCHAR, drawn VARCHAR, difference VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_35 WHERE drawn < 2 AND position > 8 AND lost > 6", "question": "What is the sum of Against when the drawn is less than 2, the position is more than 8, and the lost is more than 6.", "context": "CREATE TABLE table_name_35 (against INTEGER, lost VARCHAR, drawn VARCHAR, position VARCHAR)"}, {"answer": "SELECT difference FROM table_name_57 WHERE position < 3 AND points = 17", "question": "What is the Difference with a position of less than 3, and, 17 points.", "context": "CREATE TABLE table_name_57 (difference VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(top_5) FROM table_name_72 WHERE tournament = \"u.s. open\" AND cuts_made > 10", "question": "What is the average Top-5, when Tournament is U.S. Open, and when Cuts Made is greater than 10?", "context": "CREATE TABLE table_name_72 (top_5 INTEGER, tournament VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT SUM(events) FROM table_name_80 WHERE top_10 = 7 AND top_5 > 4", "question": "What is the sum of Events, when Top-10 is 7, and when Top-5 is greater than 4?", "context": "CREATE TABLE table_name_80 (events INTEGER, top_10 VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT SUM(top_5) FROM table_name_68 WHERE tournament = \"totals\" AND events > 86", "question": "What is the sum of Top-5, when Tournament is Totals, and when Events is greater than 86?", "context": "CREATE TABLE table_name_68 (top_5 INTEGER, tournament VARCHAR, events VARCHAR)"}, {"answer": "SELECT AVG(top_10) FROM table_name_37 WHERE wins < 0", "question": "What is the average Top-10, when Wins is less than 0?", "context": "CREATE TABLE table_name_37 (top_10 INTEGER, wins INTEGER)"}, {"answer": "SELECT COUNT(top_25) FROM table_name_65 WHERE events > 86", "question": "What is the total number of Top-25, when Events is greater than 86?", "context": "CREATE TABLE table_name_65 (top_25 VARCHAR, events INTEGER)"}, {"answer": "SELECT 2011 FROM table_name_68 WHERE 2008 = \"4r\"", "question": "What 2011 has 4r as the 2008?", "context": "CREATE TABLE table_name_68 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_88 WHERE tournament = \"wimbledon\"", "question": "What 2007 has wimbledon as the tournament?", "context": "CREATE TABLE table_name_88 (tournament VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_74 WHERE 2007 = \"1r\"", "question": "What 2006 has 1r as the 2007?", "context": "CREATE TABLE table_name_74 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_66 WHERE 2004 = \"q2\"", "question": "What tournament has q2 as the 2004?", "context": "CREATE TABLE table_name_66 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_43 WHERE 2008 = \"grand slam tournaments\"", "question": "What 2009 has grand slam tournaments of 2008?", "context": "CREATE TABLE table_name_43 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_29 WHERE 2011 = \"0-0\"", "question": "What 2006 has 0-0 as the 2011?", "context": "CREATE TABLE table_name_29 (Id VARCHAR)"}, {"answer": "SELECT lineup FROM table_name_12 WHERE match = \"27\"", "question": "What is the Lineup from a Match that is 27?", "context": "CREATE TABLE table_name_12 (lineup VARCHAR, match VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE name = \"orangeville\"", "question": "What is the date for Orangeville?", "context": "CREATE TABLE table_name_56 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT builder FROM table_name_16 WHERE works_number = \"2534\"", "question": "Who is the builder with a works number of 2534?", "context": "CREATE TABLE table_name_16 (builder VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT name FROM table_name_49 WHERE works_number = \"809\"", "question": "Who is the name with a works number of 809?", "context": "CREATE TABLE table_name_49 (name VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT works_number FROM table_name_39 WHERE date = \"early 1873\" AND name = \"owen sound\"", "question": "In early 1873, Owen sound had what works number?", "context": "CREATE TABLE table_name_39 (works_number VARCHAR, date VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_23 WHERE type = \"2-8-0\" AND number = 20", "question": "What was the name for the locomotive with a type of 2-8-0 and a number of 20?", "context": "CREATE TABLE table_name_23 (name VARCHAR, type VARCHAR, number VARCHAR)"}, {"answer": "SELECT year_won FROM table_name_4 WHERE to_par > 4 AND total < 157", "question": "What is the Year won for the player with a larger than 4 To par and less the 157 Total?", "context": "CREATE TABLE table_name_4 (year_won VARCHAR, to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_66 WHERE to_par < 4 AND year_won > 1983", "question": "What is the Total for the Player who won after 1983 with less than 4 To par?", "context": "CREATE TABLE table_name_66 (total INTEGER, to_par VARCHAR, year_won VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_46 WHERE to_par < 4 AND year_won < 1983", "question": "What is the Total of the player who won before 1983 with a smaller than 4 To par?", "context": "CREATE TABLE table_name_46 (total VARCHAR, to_par VARCHAR, year_won VARCHAR)"}, {"answer": "SELECT venue FROM table_name_93 WHERE result = \"draw\"", "question": "Which venue led to a draw?", "context": "CREATE TABLE table_name_93 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(stolen_ends) FROM table_name_54 WHERE skip = \"ludmila privivkova\"", "question": "What is the highest Stolen Ends when ludmila privivkova shows for skip?", "context": "CREATE TABLE table_name_54 (stolen_ends INTEGER, skip VARCHAR)"}, {"answer": "SELECT SUM(blank_ends) FROM table_name_39 WHERE nation = \"denmark\" AND ends_lost < 42", "question": "What is the sum of Blank Ends for Denmark when less than 42 is the ends lost?", "context": "CREATE TABLE table_name_39 (blank_ends INTEGER, nation VARCHAR, ends_lost VARCHAR)"}, {"answer": "SELECT blank_ends FROM table_name_88 WHERE ends_won < 39 AND ends_lost > 35 AND stolen_ends = 4", "question": "What is the Blank Ends when there are less than 39 ends won and, more than 35 ends lost, and 4 stolen ends.", "context": "CREATE TABLE table_name_88 (blank_ends VARCHAR, stolen_ends VARCHAR, ends_won VARCHAR, ends_lost VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_name_97 WHERE interview_subject = \"camille paglia\"", "question": "Who was the 20 Questions section aimed at when the Interview Subject was Camille Paglia?", "context": "CREATE TABLE table_name_97 (interview_subject VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_name_32 WHERE date = \"5-95\"", "question": "Who was the Centerfold Model on 5-95?", "context": "CREATE TABLE table_name_32 (centerfold_model VARCHAR, date VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_name_21 WHERE cover_model = \"kimberley conrad hefner\"", "question": "Who was the 20 Questions section aimed at when Cover Model was Kimberley Conrad Hefner?", "context": "CREATE TABLE table_name_21 (cover_model VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_name_56 WHERE cover_model = \"julie lynn cialini\"", "question": "Who was the Centerfold Model when the Cover Model was Julie Lynn Cialini?", "context": "CREATE TABLE table_name_56 (centerfold_model VARCHAR, cover_model VARCHAR)"}, {"answer": "SELECT interview_subject FROM table_name_3 WHERE centerfold_model = \"melissa deanne holliday\"", "question": "Who was the Interview Subject when the Centerfold Model was Melissa Deanne Holliday?", "context": "CREATE TABLE table_name_3 (interview_subject VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT 20 AS _questions FROM table_name_46 WHERE centerfold_model = \"rachel je\u00e1n marteen\"", "question": "Who was the 20 Questions section aimed at when Centerfold Model was Rachel Je\u00e1n Marteen?", "context": "CREATE TABLE table_name_46 (centerfold_model VARCHAR)"}, {"answer": "SELECT AVG(jersey__number) FROM table_name_71 WHERE name = \"steve griffith\" AND weight__kg_ < 84", "question": "What was the average Jersey # of Steve Griffith, when his Weight (kg) was less than 84?", "context": "CREATE TABLE table_name_71 (jersey__number INTEGER, name VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT MIN(weight__kg_) FROM table_name_67 WHERE jersey__number = 10", "question": "What was the lowest Weight (kg) for a player that had Jersey #10?", "context": "CREATE TABLE table_name_67 (weight__kg_ INTEGER, jersey__number VARCHAR)"}, {"answer": "SELECT COUNT(height__cm_) FROM table_name_19 WHERE jersey__number < 16 AND name = \"mark fusco\"", "question": "How many different Heights (cm) did Mark Fusco have, when his Jersey # was less than 16?", "context": "CREATE TABLE table_name_19 (height__cm_ VARCHAR, jersey__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT title FROM table_name_55 WHERE story = \"martin worth\"", "question": "What was the title of the episode that martin worth wrote the story for?", "context": "CREATE TABLE table_name_55 (title VARCHAR, story VARCHAR)"}, {"answer": "SELECT year FROM table_name_65 WHERE outcome = \"runner-up\" AND score = \"4\u20136, 6\u20134, [8\u201310]\"", "question": "In what year was Xavier Malisse the runner-up with scores of 4\u20136, 6\u20134, [8\u201310]?", "context": "CREATE TABLE table_name_65 (year VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_51 WHERE score = \"4\u20136, 6\u20134, [8\u201310]\"", "question": "On what surface was the game played that had a score of 4\u20136, 6\u20134, [8\u201310]?", "context": "CREATE TABLE table_name_51 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT caps FROM table_name_96 WHERE province___club = \"example\" AND position = \"prop\" AND player = \"sam walters\"", "question": "What is Caps, when Province / Club is Example, when Position is Prop, and when Player is Sam Walters?", "context": "CREATE TABLE table_name_96 (caps VARCHAR, player VARCHAR, province___club VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_59 WHERE date_of_birth__age_ = \"example\" AND player = \"mark spencer\"", "question": "What is Postition, when Date of Birth (Age) is Example, and when Player is Mark Spencer?", "context": "CREATE TABLE table_name_59 (position VARCHAR, date_of_birth__age_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_66 WHERE caps = \"example\" AND position = \"center\"", "question": "What is Player, when Caps is Example, and when Position is Center?", "context": "CREATE TABLE table_name_66 (player VARCHAR, caps VARCHAR, position VARCHAR)"}, {"answer": "SELECT caps FROM table_name_49 WHERE province___club = \"drfc\" AND position = \"center\"", "question": "What is Caps, when Province / Club is DRFC, and when Position is Center?", "context": "CREATE TABLE table_name_49 (caps VARCHAR, province___club VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_66 WHERE caps = \"example\" AND player = \"shane kelly\"", "question": "What is Position, when Caps is Example, and When Player is Shane Kelly?", "context": "CREATE TABLE table_name_66 (position VARCHAR, caps VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_52 WHERE province___club = \"example\" AND date_of_birth__age_ = \"example\" AND player = \"michael elumeze\"", "question": "What is Position, when Province / Club is Example, when Date of Birth (Age) is Example, and when Player is Michael Elumeze?", "context": "CREATE TABLE table_name_52 (position VARCHAR, player VARCHAR, province___club VARCHAR, date_of_birth__age_ VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_79 WHERE drawn = 1 AND against = 24", "question": "What is the average number played of the team with 1 drawn and 24 against?", "context": "CREATE TABLE table_name_79 (played INTEGER, drawn VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_65 WHERE points < 14 AND played < 18", "question": "What is the highest lost number of the team with less than 14 points and less than 18 played?", "context": "CREATE TABLE table_name_65 (lost INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT team FROM table_name_65 WHERE position = 1", "question": "Which team had 1 position?", "context": "CREATE TABLE table_name_65 (team VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_74 WHERE points = 18 AND position > 5", "question": "What is the lowest number of played of the team with 18 points and a position greater than 5?", "context": "CREATE TABLE table_name_74 (played INTEGER, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_24 WHERE drawn < 4 AND against = 34", "question": "What is the total number of points of the team with less than 4 drawn and an against of 34?", "context": "CREATE TABLE table_name_24 (points VARCHAR, drawn VARCHAR, against VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_64 WHERE difference = \"17\" AND points = 22", "question": "What is the average number of drawn with a difference of 17 and 22 points?", "context": "CREATE TABLE table_name_64 (drawn INTEGER, difference VARCHAR, points VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_24 WHERE position = \"forward-center\"", "question": "What is the team that has forward-center as a position?", "context": "CREATE TABLE table_name_24 (school_club_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_25 WHERE player = \"kenny smith\"", "question": "What team does Kenny Smith play for?", "context": "CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_82 WHERE nationality = \"lebanon\"", "question": "What years was Lebanon the nationality?", "context": "CREATE TABLE table_name_82 (years_in_orlando VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_78 WHERE tournament = \"cyber agent ladies\"", "question": "Which margin of victory has cyber agent ladies as the tournament?", "context": "CREATE TABLE table_name_78 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE runner_s__up = \"yani tseng\"", "question": "What date has yani tseng as the runner (s)-up?", "context": "CREATE TABLE table_name_91 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_45 WHERE tournament = \"masters gc ladies\"", "question": "What is the margin of victory that has masters gc ladies as the tournament?", "context": "CREATE TABLE table_name_45 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE runner_s__up = \"yani tseng\"", "question": "What is the date that has yani tseng as the runner (s)-up?", "context": "CREATE TABLE table_name_97 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_30 WHERE margin_of_victory = \"2 strokes\" AND tournament = \"cyber agent ladies\"", "question": "What is the winning score that has victory of 2 strokes for the margin, and cyber agent ladies for the tournament?", "context": "CREATE TABLE table_name_30 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_name_74 WHERE wins < 0", "question": "What is the highest Poles with a win that is smaller than 0?", "context": "CREATE TABLE table_name_74 (poles INTEGER, wins INTEGER)"}, {"answer": "SELECT headphone_model FROM table_name_28 WHERE construction = \"plastic\" AND headphone_class = \"prestige\"", "question": "What is the headphone model with a plastic construction and a prestige headphone class?", "context": "CREATE TABLE table_name_28 (headphone_model VARCHAR, construction VARCHAR, headphone_class VARCHAR)"}, {"answer": "SELECT earpads FROM table_name_67 WHERE construction = \"plastic\" AND succeeded_by = \"igrado\"", "question": "What earpads does the headphone with plastic contruction and was succeeded by igrado have?", "context": "CREATE TABLE table_name_67 (earpads VARCHAR, construction VARCHAR, succeeded_by VARCHAR)"}, {"answer": "SELECT earpads FROM table_name_43 WHERE construction = \"plastic\" AND sensitivity__db_ = \"unknown\" AND succeeded_by = \"sr325\"", "question": "What are the earpads of the headphone with a plastic construction, an unknown sensitivity, and was succeeded by sr325?", "context": "CREATE TABLE table_name_43 (earpads VARCHAR, succeeded_by VARCHAR, construction VARCHAR, sensitivity__db_ VARCHAR)"}, {"answer": "SELECT headphone_model FROM table_name_59 WHERE succeeded_by = \"sr325\"", "question": "What is the headphone model which was succeeded by sr325?", "context": "CREATE TABLE table_name_59 (headphone_model VARCHAR, succeeded_by VARCHAR)"}, {"answer": "SELECT regulations FROM table_name_84 WHERE winning_constructor = \"hudson\"", "question": "What regulations have hudson as the winning constructor?", "context": "CREATE TABLE table_name_84 (regulations VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT regulations FROM table_name_13 WHERE winning_drivers = \"carlos arzani\"", "question": "What regulations have carlos arzani as the winning driver?", "context": "CREATE TABLE table_name_13 (regulations VARCHAR, winning_drivers VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_7 WHERE winning_constructor = \"ferrari 166 fl\"", "question": "What is the latest year that has ferrari 166 fl as the winning constructor?", "context": "CREATE TABLE table_name_7 (year INTEGER, winning_constructor VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_40 WHERE class = \"lp\"", "question": "What is the city of license that has lp as the class?", "context": "CREATE TABLE table_name_40 (city_of_license VARCHAR, class VARCHAR)"}, {"answer": "SELECT identifier FROM table_name_45 WHERE power = \"50,000 watts\"", "question": "What is the identifier that has 50,000 watts of power?", "context": "CREATE TABLE table_name_45 (identifier VARCHAR, power VARCHAR)"}, {"answer": "SELECT recnet FROM table_name_20 WHERE power = \"40 watts\" AND city_of_license = \"temagami\"", "question": "What RECNet has 40 watts of power and temagami as the city of license?", "context": "CREATE TABLE table_name_20 (recnet VARCHAR, power VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_86 WHERE class = \"a\" AND identifier = \"cbec-fm\"", "question": "What city of license has A as a class, and cbec-fm as the identifier?", "context": "CREATE TABLE table_name_86 (city_of_license VARCHAR, class VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT recnet FROM table_name_57 WHERE city_of_license = \"elk lake\"", "question": "What RECNet has elk lake as the city of license?", "context": "CREATE TABLE table_name_57 (recnet VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_92 WHERE city_of_license = \"temagami\"", "question": "What frequency has temagami as the city of license?", "context": "CREATE TABLE table_name_92 (frequency VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT MAX(current_branch_opened) FROM table_name_79 WHERE neighborhood = \"w. portland park\"", "question": "What is the highest Current Branch Opened, when Neighborhood is W. Portland Park?", "context": "CREATE TABLE table_name_79 (current_branch_opened INTEGER, neighborhood VARCHAR)"}, {"answer": "SELECT first_branch_opened FROM table_name_21 WHERE branch = \"belmont library\"", "question": "What is the First Branch Opened, when Branch is Belmont Library?", "context": "CREATE TABLE table_name_21 (first_branch_opened VARCHAR, branch VARCHAR)"}, {"answer": "SELECT neighborhood FROM table_name_92 WHERE branch = \"hollywood library\"", "question": "What is Neighborhood, when Branch is Hollywood Library?", "context": "CREATE TABLE table_name_92 (neighborhood VARCHAR, branch VARCHAR)"}, {"answer": "SELECT current_branch_opened FROM table_name_22 WHERE branch = \"midland library\"", "question": "What is Current Branch Opened, when Branch is Midland Library?", "context": "CREATE TABLE table_name_22 (current_branch_opened VARCHAR, branch VARCHAR)"}, {"answer": "SELECT MIN(assists) FROM table_name_72 WHERE games < 2", "question": "Which player has the fewest assists and played 2 games or fewer?", "context": "CREATE TABLE table_name_72 (assists INTEGER, games INTEGER)"}, {"answer": "SELECT COUNT(march) FROM table_name_83 WHERE january < 8.77 AND december > 1.69 AND average_monthly_additions_in_millions_ < 5.35 AND year < 2004", "question": "What was the total number for March with less than 8.77 in January, more than 1.69 in December, an average monthly addition less than 5.35, and before 2004?", "context": "CREATE TABLE table_name_83 (march VARCHAR, year VARCHAR, average_monthly_additions_in_millions_ VARCHAR, january VARCHAR, december VARCHAR)"}, {"answer": "SELECT COUNT(november) FROM table_name_50 WHERE february > 8.53 AND march = 20.21 AND september < 7.9", "question": "What is the total number for November, larger than 8.53 in February, 20.21 in March, and less than 7.9 in September?", "context": "CREATE TABLE table_name_50 (november VARCHAR, september VARCHAR, february VARCHAR, march VARCHAR)"}, {"answer": "SELECT SUM(december) FROM table_name_95 WHERE july = 0.36 AND february > 0.35000000000000003", "question": "What is the sum for December that has 0.36 in July, and lager than 0.35000000000000003 in February?", "context": "CREATE TABLE table_name_95 (december INTEGER, july VARCHAR, february VARCHAR)"}, {"answer": "SELECT COUNT(july) FROM table_name_12 WHERE october < 8.05 AND december > 4.46 AND november > 6.79", "question": "What is the total number for July with less than 8.05 in October, more than 4.46 in December, and more than 6.79 in November?", "context": "CREATE TABLE table_name_12 (july VARCHAR, november VARCHAR, october VARCHAR, december VARCHAR)"}, {"answer": "SELECT COUNT(october) FROM table_name_41 WHERE september < 2.48 AND year > 2002 AND june > 1.42 AND february < 7.44", "question": "What is the total number in October with less than 2.48 in September, after 2002, more than 1.42 in June, and smaller than 7.44 in February?", "context": "CREATE TABLE table_name_41 (october VARCHAR, february VARCHAR, june VARCHAR, september VARCHAR, year VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_56 WHERE region = \"europe\"", "question": "What is the Catalog with a Region that is europe?", "context": "CREATE TABLE table_name_56 (catalog VARCHAR, region VARCHAR)"}, {"answer": "SELECT MAX(sfc_in_g__kn) AS \u00b7s_ FROM table_name_12 WHERE engine_type = \"rolls-royce/snecma olympus 593\" AND sfc_in_lb__lbf\u00b7h_ < 1.195", "question": "What is the highest SFC in g/(kN*s) for Rolls-Royce/Snecma Olympus 593 engines and SFCs under 1.195 lb/(lbf*h)?", "context": "CREATE TABLE table_name_12 (sfc_in_g__kn INTEGER, engine_type VARCHAR, sfc_in_lb__lbf\u00b7h_ VARCHAR)"}, {"answer": "SELECT winner FROM table_name_70 WHERE week_of = \"8 may\" AND semi_finalists = \"helena sukov\u00e1 mary pierce\" AND runner_up = \"conchita mart\u00ednez patricia tarabini\"", "question": "What is Winner, when Week is 8 May, when Semi Finalists is Helena Sukov\u00e1 Mary Pierce, and when Runner-Up is Conchita Mart\u00ednez Patricia Tarabini?", "context": "CREATE TABLE table_name_70 (winner VARCHAR, runner_up VARCHAR, week_of VARCHAR, semi_finalists VARCHAR)"}, {"answer": "SELECT week_of FROM table_name_53 WHERE semi_finalists = \"sandrine testud yone kamio\"", "question": "What is Week, when Semi Finalists is Sandrine Testud Yone Kamio?", "context": "CREATE TABLE table_name_53 (week_of VARCHAR, semi_finalists VARCHAR)"}, {"answer": "SELECT season FROM table_name_34 WHERE player = \"colin miller (tas)\"", "question": "In what Season was Colin Miller (TAS) the Player?", "context": "CREATE TABLE table_name_34 (season VARCHAR, player VARCHAR)"}, {"answer": "SELECT rank FROM table_name_25 WHERE s_wicket = \"65\"", "question": "What Rank has a 65 s Wicket?", "context": "CREATE TABLE table_name_25 (rank VARCHAR, s_wicket VARCHAR)"}, {"answer": "SELECT result FROM table_name_72 WHERE opponent = \"indianapolis colts\"", "question": "Which result featured the Indianapolis Colts as opponents?", "context": "CREATE TABLE table_name_72 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT name FROM table_name_52 WHERE date_of_reclassification = \"2003-04-01 (merge into shizuoka )\"", "question": "Whose Name has a Date of reclassification of 2003-04-01 (merge into shizuoka )?", "context": "CREATE TABLE table_name_52 (name VARCHAR, date_of_reclassification VARCHAR)"}, {"answer": "SELECT japanese FROM table_name_99 WHERE prefecture = \"iwate\"", "question": "WHich Japanese has a Prefecture of iwate?", "context": "CREATE TABLE table_name_99 (japanese VARCHAR, prefecture VARCHAR)"}, {"answer": "SELECT date_of_designation FROM table_name_36 WHERE name = \"kurume\"", "question": "Which Date of designation has a Name of kurume?", "context": "CREATE TABLE table_name_36 (date_of_designation VARCHAR, name VARCHAR)"}, {"answer": "SELECT japanese FROM table_name_71 WHERE region = \"t\u014dhoku\"", "question": "What kind of Japanese has a Region of t\u014dhoku?", "context": "CREATE TABLE table_name_71 (japanese VARCHAR, region VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE region = \"kansai\" AND date_of_reclassification = \"2012-04-01 ( core city )\"", "question": "WHose Name has a Region of kansai on 2012-04-01 ( core city )?", "context": "CREATE TABLE table_name_63 (name VARCHAR, region VARCHAR, date_of_reclassification VARCHAR)"}, {"answer": "SELECT position FROM table_name_92 WHERE birthdate = \"august 17, 1980\"", "question": "What is the Position with a Birthdate that is august 17, 1980?", "context": "CREATE TABLE table_name_92 (position VARCHAR, birthdate VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_77 WHERE colors = \"purple and white\"", "question": "Which capacity has a purple and white colors?", "context": "CREATE TABLE table_name_77 (capacity VARCHAR, colors VARCHAR)"}, {"answer": "SELECT number_of_households FROM table_name_15 WHERE median_family_income = \"$60,400\"", "question": "How many households have a median family income of $60,400?", "context": "CREATE TABLE table_name_15 (number_of_households VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT AVG(weight__kg_) FROM table_name_53 WHERE height__cm_ = 180 AND position = \"d\"", "question": "What is the average weight of the player with a height of 180 cm and plays the d position?", "context": "CREATE TABLE table_name_53 (weight__kg_ INTEGER, height__cm_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT resting_potential__mv_ FROM table_name_69 WHERE ap_duration__ms_ = \"1.0\" AND cell_type = \"median giant fiber\"", "question": "What was the resting potential with an AP duration of 1.0 and a median giant fiber cell type?", "context": "CREATE TABLE table_name_69 (resting_potential__mv_ VARCHAR, ap_duration__ms_ VARCHAR, cell_type VARCHAR)"}, {"answer": "SELECT animal FROM table_name_75 WHERE resting_potential__mv_ = \"\u221260\"", "question": "Which animal has a resting potential of \u221260?", "context": "CREATE TABLE table_name_75 (animal VARCHAR, resting_potential__mv_ VARCHAR)"}, {"answer": "SELECT animal FROM table_name_11 WHERE ap_duration__ms_ = \"1.0\" AND conduction_speed__m_s_ = \"7\u201330\"", "question": "Which animal has an AP duration of 1.0 and a conduction speed of 7\u201330?", "context": "CREATE TABLE table_name_11 (animal VARCHAR, ap_duration__ms_ VARCHAR, conduction_speed__m_s_ VARCHAR)"}, {"answer": "SELECT ap_increase__mv_ FROM table_name_68 WHERE ap_duration__ms_ = \"0.75\"", "question": "What AP increase has an AP duration of 0.75?", "context": "CREATE TABLE table_name_68 (ap_increase__mv_ VARCHAR, ap_duration__ms_ VARCHAR)"}, {"answer": "SELECT cell_type FROM table_name_15 WHERE conduction_speed__m_s_ = \"35\"", "question": "Which cell type has a conduction speed of 35?", "context": "CREATE TABLE table_name_15 (cell_type VARCHAR, conduction_speed__m_s_ VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_9 WHERE rank > 10", "question": "What was the total matches that ranked above 10?", "context": "CREATE TABLE table_name_9 (matches INTEGER, rank INTEGER)"}, {"answer": "SELECT COUNT(matches) FROM table_name_81 WHERE name = \"alan shearer\"", "question": "What was the total amount of matches for Alan Shearer?", "context": "CREATE TABLE table_name_81 (matches VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_91 WHERE name = \"jimmy greaves\" AND matches > 516", "question": "What is the average goals for Jimmy Greaves, and matches more than 516?", "context": "CREATE TABLE table_name_91 (goals INTEGER, name VARCHAR, matches VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_55 WHERE name = \"nat lofthouse\" AND rank > 7", "question": "What was the total number of matches for Nat Lofthouse, ranking higher than 7?", "context": "CREATE TABLE table_name_55 (matches VARCHAR, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_20 WHERE name = \"nat lofthouse\" AND goals > 255", "question": "What is the highest rank for Nat Lofthouse, and goals more than 255?", "context": "CREATE TABLE table_name_20 (rank INTEGER, name VARCHAR, goals VARCHAR)"}, {"answer": "SELECT location___state FROM table_name_5 WHERE circuit = \"adelaide international raceway\"", "question": "What is the location/state that has adelaide international raceway as the circuit?", "context": "CREATE TABLE table_name_5 (location___state VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_name_85 WHERE production_code = \"07-00-107\"", "question": "What is the Original air date for the episode with a Production code of 07-00-107?", "context": "CREATE TABLE table_name_85 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_name_55 WHERE written_by = \"robin schwartz & robert tarlow\"", "question": "What is the name of the director of the episode written by robin schwartz & robert tarlow?", "context": "CREATE TABLE table_name_55 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_name_35 WHERE directed_by = \"lev l. spiro\" AND production_code = \"07-00-109\"", "question": "What is the Original air date for the episode directed by lev l. spiro, with a Production code of 07-00-109?", "context": "CREATE TABLE table_name_35 (original_air_date VARCHAR, directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_71 WHERE original_air_date = \"october 9, 2000\"", "question": "What is the name of the writer for the episode with an Original air date of october 9, 2000?", "context": "CREATE TABLE table_name_71 (written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_name_87 WHERE written_by = \"terri hughes & ron milbauer\" AND original_air_date = \"march 6, 2001\"", "question": "What is the Title written by Terri Hughes & Ron Milbauer, and an Original air date of march 6, 2001?", "context": "CREATE TABLE table_name_87 (title VARCHAR, written_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_7 WHERE driver = \"scott dixon\"", "question": "What time or retired does Scott Dixon have?", "context": "CREATE TABLE table_name_7 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_38 WHERE grid > 3 AND time_retired = \"+62.6 secs\"", "question": "Which driver has a grid bigger than 3 and a time of +62.6 secs?", "context": "CREATE TABLE table_name_38 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_43 WHERE team = \"newman-haas racing\" AND time_retired = \"1:51:47.260\"", "question": "Who drives for Newman-Haas Racing with a time of 1:51:47.260?", "context": "CREATE TABLE table_name_43 (driver VARCHAR, team VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_64 WHERE laps < 65 AND team = \"sigma autosport\"", "question": "Which driver had less than 65 laps for Sigma Autosport?", "context": "CREATE TABLE table_name_64 (driver VARCHAR, laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT game_modes FROM table_name_13 WHERE pinyin = \"ch\u0101oj\u00ed m\u01cel\u00ec\u014du sh\u00ecji\u00e8\"", "question": "Which game modes have Pinyin of ch\u0101oj\u00ed m\u01cel\u00ec\u014du sh\u00ecji\u00e8?", "context": "CREATE TABLE table_name_13 (game_modes VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT MIN(population__1_july_2005_est_) FROM table_name_5 WHERE population_density__per_km\u00b2_ = 0", "question": "What is the lowest Population (1 July 2005 est.), when Population density (per km\u00b2) is 0?", "context": "CREATE TABLE table_name_5 (population__1_july_2005_est_ INTEGER, population_density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT population_density__per_km\u00b2_ FROM table_name_81 WHERE name = \"antigua and barbuda\" AND capital = \"st. john's\"", "question": "What is Population density (per km\u00b2), when Name is Antigua and Barbuda, and when Capital is St. John's?", "context": "CREATE TABLE table_name_81 (population_density__per_km\u00b2_ VARCHAR, name VARCHAR, capital VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_61 WHERE surface = \"grass\" AND partner = \"mark woodforde\" AND outcome = \"winner\" AND year > 1996", "question": "Who were the opponents on grass when playing with Mark Woodforde, and the outcome of winner, and a year greater than 1996?", "context": "CREATE TABLE table_name_61 (opponents VARCHAR, year VARCHAR, outcome VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_6 WHERE championship = \"australian open, melbourne\" AND score = \"2\u20136, 7\u20135, 6\u20132, 4\u20136, 3\u20136\"", "question": "Who was the partner at the Australian Open, Melbourne when the score was 2\u20136, 7\u20135, 6\u20132, 4\u20136, 3\u20136?", "context": "CREATE TABLE table_name_6 (partner VARCHAR, championship VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_10 WHERE surface = \"grass\" AND year > 1993 AND partner = \"jonas bj\u00f6rkman\"", "question": "When playing on grass who was the opponents in a year greater than 1993, and playing with Jonas Bj\u00f6rkman?", "context": "CREATE TABLE table_name_10 (opponents VARCHAR, partner VARCHAR, surface VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_name_51 WHERE playoffs = \"national semi-finals\"", "question": "Which league's playoffs was national semi-finals?", "context": "CREATE TABLE table_name_51 (league VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT country FROM table_name_34 WHERE icao = \"lemd\"", "question": "Which country is Lemd the ICAO of?", "context": "CREATE TABLE table_name_34 (country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE airport = \"paris-charles de gaulle airport\"", "question": "Paris-Charles de Gaulle airport is in which country?", "context": "CREATE TABLE table_name_46 (country VARCHAR, airport VARCHAR)"}, {"answer": "SELECT icao FROM table_name_35 WHERE country = \"saudi arabia\" AND city = \"riyadh\"", "question": "What is the ICAO for Riyadh, Saudi Arabia?", "context": "CREATE TABLE table_name_35 (icao VARCHAR, country VARCHAR, city VARCHAR)"}, {"answer": "SELECT iata FROM table_name_56 WHERE country = \"libya\" AND city = \"benghazi\"", "question": "What is the IATA for Benghazi, Libya?", "context": "CREATE TABLE table_name_56 (iata VARCHAR, country VARCHAR, city VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_45 WHERE bike = \"honda cbr1000rr\" AND laps = 18 AND time = \"+1:12.884\"", "question": "What is the average Grid for the honda cbr1000rr, with 18 laps and a time of +1:12.884?", "context": "CREATE TABLE table_name_45 (grid INTEGER, time VARCHAR, bike VARCHAR, laps VARCHAR)"}, {"answer": "SELECT bike FROM table_name_51 WHERE laps = 18 AND time = \"+41.280\"", "question": "What is the Bike with 18 laps and +41.280 as the time?", "context": "CREATE TABLE table_name_51 (bike VARCHAR, laps VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_42 WHERE laps = 18 AND grid > 15 AND rider = \"russell holland\"", "question": "What is the Time when there are 18 laps, grid larger than 15, and Rider of Russell Holland?", "context": "CREATE TABLE table_name_42 (time VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT bike FROM table_name_17 WHERE grid > 4 AND rider = \"michel fabrizio\"", "question": "What is the Bike with a grid more than 4 and the rider is Michel Fabrizio?", "context": "CREATE TABLE table_name_17 (bike VARCHAR, grid VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_51 WHERE name = \"lee smith\" AND appearances < 364", "question": "What was Lee Smith's highest number of goals when he made fewer than 364 appearances?", "context": "CREATE TABLE table_name_51 (goals INTEGER, name VARCHAR, appearances VARCHAR)"}, {"answer": "SELECT goals / Game AS Ratio FROM table_name_29 WHERE goals < 201 AND appearances < 170", "question": "Which goals/game ratio has fewer than 201 goals and fewer than 170 appearances?", "context": "CREATE TABLE table_name_29 (goals VARCHAR, Game VARCHAR, appearances VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_59 WHERE annual_change = \"9.3%\"", "question": "What is the average rank of the airport with a 9.3% annual change?", "context": "CREATE TABLE table_name_59 (rank INTEGER, annual_change VARCHAR)"}, {"answer": "SELECT location FROM table_name_51 WHERE capacity_in_use = \"98.9%\"", "question": "Where is the airport located that has a 98.9% in use capacity?", "context": "CREATE TABLE table_name_51 (location VARCHAR, capacity_in_use VARCHAR)"}, {"answer": "SELECT rank FROM table_name_19 WHERE location = \"fortaleza\"", "question": "What rank is the airport in Fortaleza?", "context": "CREATE TABLE table_name_19 (rank VARCHAR, location VARCHAR)"}, {"answer": "SELECT award_name FROM table_name_53 WHERE team_name = \"cougar robotics team\"", "question": "What is the Award name with a Team name that is cougar robotics team?", "context": "CREATE TABLE table_name_53 (award_name VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT zan_1 FROM table_name_34 WHERE nor_1 = \"11\"", "question": "What is the zan 1 that has 11 as the nor 1?", "context": "CREATE TABLE table_name_34 (zan_1 VARCHAR, nor_1 VARCHAR)"}, {"answer": "SELECT driver FROM table_name_13 WHERE zan_1 = \"19\"", "question": "What driver has 19 as the zan 1?", "context": "CREATE TABLE table_name_13 (driver VARCHAR, zan_1 VARCHAR)"}, {"answer": "SELECT driver FROM table_name_69 WHERE zan_2 = \"5\"", "question": "What driver has 5 as the zan 2?", "context": "CREATE TABLE table_name_69 (driver VARCHAR, zan_2 VARCHAR)"}, {"answer": "SELECT nor_2 FROM table_name_25 WHERE nor_1 = \"nor 1\"", "question": "What is the nor 2 that has nor 1 as nor 1?", "context": "CREATE TABLE table_name_25 (nor_2 VARCHAR, nor_1 VARCHAR)"}, {"answer": "SELECT driver FROM table_name_85 WHERE nor_1 = \"22\"", "question": "What driver has 22 as nor 1?", "context": "CREATE TABLE table_name_85 (driver VARCHAR, nor_1 VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE result = \"draw\" AND venue = \"lord's\"", "question": "What Date had a Result of draw, and a Venue of lord's?", "context": "CREATE TABLE table_name_28 (date VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE result = \"draw\" AND venue = \"oval\"", "question": "What Date that had a Result of draw, with Oval as a venue?", "context": "CREATE TABLE table_name_32 (date VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_72 WHERE result = \"draw\" AND venue = \"lord's\"", "question": "What is the Away captain when the Result was draw, and a Venue of lord's?", "context": "CREATE TABLE table_name_72 (away_captain VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE result = \"draw\"", "question": "What is the Date when the match Resulted in a draw?", "context": "CREATE TABLE table_name_95 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_6 WHERE winning_score = \u201310(70 - 72 - 68 - 68 = 278)", "question": "What was the margin of victory when the winning score was \u201310 (70-72-68-68=278)?", "context": "CREATE TABLE table_name_6 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_28 WHERE runner_s__up = \"gary player\"", "question": "When Gary Player was the runner-up, what was the margin of victory?", "context": "CREATE TABLE table_name_28 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_21 WHERE winning_score = \u201310(68 - 71 - 69 - 70 = 278)", "question": "In what tournament was the winning score \u201310 (68-71-69-70=278)?", "context": "CREATE TABLE table_name_21 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_95 WHERE cuts_made > 17 AND starts > 25 AND top_10 < 8", "question": "What is the highest number of wins when more than 17 cuts and more than 25 starts were made, and the top 10 ranking is less than 8?", "context": "CREATE TABLE table_name_95 (wins INTEGER, top_10 VARCHAR, cuts_made VARCHAR, starts VARCHAR)"}, {"answer": "SELECT AVG(starts) FROM table_name_58 WHERE money_list_rank = \"108\" AND top_25 > 4", "question": "What is the average number of starts when the money list rank is 108 and the rank in the top 25 is greater than 4?", "context": "CREATE TABLE table_name_58 (starts INTEGER, money_list_rank VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT AVG(starts) FROM table_name_33 WHERE cuts_made = 11 AND top_10 > 4", "question": "What is the average number of starts when 11 cuts were made and the top 10 ranking is larger than 4?", "context": "CREATE TABLE table_name_33 (starts INTEGER, cuts_made VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT name FROM table_name_54 WHERE position = \"g\" AND weight__lbs_ = 190", "question": "What is the Name when the position is g, and weight is 190 pounds?", "context": "CREATE TABLE table_name_54 (name VARCHAR, position VARCHAR, weight__lbs_ VARCHAR)"}, {"answer": "SELECT home FROM table_name_12 WHERE date = \"2 february 2006\"", "question": "Who was the home team of the game on 2 February 2006?", "context": "CREATE TABLE table_name_12 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_35 WHERE visitor = \"warriors\"", "question": "What is the home team of the game with Warriors as the visitor team?", "context": "CREATE TABLE table_name_35 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE surface = \"hard\" AND score = \"6\u20134, 2\u20136, 3\u20136\"", "question": "What date was the match on a hard surface with a score of 6\u20134, 2\u20136, 3\u20136?", "context": "CREATE TABLE table_name_83 (date VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE surface = \"clay\" AND outcome = \"winner\" AND tournament = \"ciudad ju\u00e1rez\" AND opponent_in_the_final = \"estefania craci\u00fan\"", "question": "What is the Score of the match on a clay surface with an outcome of winner, at the tournament ciudad ju\u00e1rez, and an Opponent in the final of estefania craci\u00fan?", "context": "CREATE TABLE table_name_48 (score VARCHAR, opponent_in_the_final VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_2 WHERE score = \"6\u20133, 6\u20134\"", "question": "What is the Outcome of the match with a Score of 6\u20133, 6\u20134?", "context": "CREATE TABLE table_name_2 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_75 WHERE score = \"6\u20133, 6\u20134\"", "question": "What is the Outcome of the match with a Score of 6\u20133, 6\u20134?", "context": "CREATE TABLE table_name_75 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_21 WHERE date = \"12 september 2004\"", "question": "What is the Outcome of the match on 12 september 2004?", "context": "CREATE TABLE table_name_21 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_17 WHERE score = \"6\u20134, 2\u20136, 3\u20136\"", "question": "What was the Surface when the Score was 6\u20134, 2\u20136, 3\u20136?", "context": "CREATE TABLE table_name_17 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_76 WHERE opponent = \"pittsburgh steelers\" AND week < 4", "question": "What was the total attendance at a game against the Pittsburgh Steelers before week 4?", "context": "CREATE TABLE table_name_76 (attendance VARCHAR, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE venue = \"a\" AND result = \"0-1\" AND opponent = \"rangers\"", "question": "What was the date of the game held at the A venue with a result of 0-1 against the Rangers?", "context": "CREATE TABLE table_name_87 (date VARCHAR, opponent VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_4 WHERE date = \"november 11, 2001\"", "question": "Who was the opponent on November 11, 2001?", "context": "CREATE TABLE table_name_4 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_99 WHERE week < 5 AND date = \"september 23, 2001\"", "question": "Who was the opponent before week 5 that played on September 23, 2001?", "context": "CREATE TABLE table_name_99 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_8 WHERE model_number = \"turion 64 x2 tl-62\"", "question": "What is the frequency of the Turion 64 X2 TL-62?", "context": "CREATE TABLE table_name_8 (frequency VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT socket FROM table_name_67 WHERE order_part_number = \"tmdtl68hax5dm\"", "question": "What is the socket for Order Part Number TMDTL68HAX5DM?", "context": "CREATE TABLE table_name_67 (socket VARCHAR, order_part_number VARCHAR)"}, {"answer": "SELECT multiplier_1 FROM table_name_25 WHERE frequency = \"1800mhz\"", "question": "What is the multiplier 1 for chips with a frequency of 1800MHz?", "context": "CREATE TABLE table_name_25 (multiplier_1 VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT socket FROM table_name_66 WHERE multiplier_1 = \"11.5x\"", "question": "What is the socket type for the processor with a multiplier 1 of 11.5x?", "context": "CREATE TABLE table_name_66 (socket VARCHAR, multiplier_1 VARCHAR)"}, {"answer": "SELECT MAX(sample_size) FROM table_name_35 WHERE date_s__administered = \"october 18\"", "question": "What is the highest sample size administered on October 18?", "context": "CREATE TABLE table_name_35 (sample_size INTEGER, date_s__administered VARCHAR)"}, {"answer": "SELECT mel_martinez__r_ FROM table_name_6 WHERE sample_size = 800", "question": "What is the percentage for Mel Martinez when the sample size is 800?", "context": "CREATE TABLE table_name_6 (mel_martinez__r_ VARCHAR, sample_size VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_21 WHERE team = \"scottish wanderers\" AND points < 5", "question": "How many games were played by the Scottish Wanderers where less than 5 Points were scored?", "context": "CREATE TABLE table_name_21 (played INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_34 WHERE points = 15", "question": "How many games were played where exactly 15 points were scored?", "context": "CREATE TABLE table_name_34 (played INTEGER, points VARCHAR)"}, {"answer": "SELECT lner_class FROM table_name_44 WHERE wa = \"0-6-0st\" AND no_built = 2", "question": "What LINER class has a W.A. of 0-6-0st with a 2 No. Built?", "context": "CREATE TABLE table_name_44 (lner_class VARCHAR, wa VARCHAR, no_built VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_74 WHERE cfl_team = \"montreal alouettes\" AND player = \"peter moore\"", "question": "What is the pick number for Peter Moore of the Montreal Alouettes?", "context": "CREATE TABLE table_name_74 (pick__number VARCHAR, cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_32 WHERE player = \"kelly bates\"", "question": "What CFL team did Kelly Bates play for?", "context": "CREATE TABLE table_name_32 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(total_matches) FROM table_name_23 WHERE swansea_win < 3 AND competition = \"fa cup\" AND draw < 0", "question": "How many average total matches have a swansea win less than 3, fa cup as the competition, with a draw less than 0?", "context": "CREATE TABLE table_name_23 (total_matches INTEGER, draw VARCHAR, swansea_win VARCHAR, competition VARCHAR)"}, {"answer": "SELECT COUNT(cardiff_win) FROM table_name_26 WHERE draw > 27", "question": "How many cardiff wins have a draw greater than 27?", "context": "CREATE TABLE table_name_26 (cardiff_win VARCHAR, draw INTEGER)"}, {"answer": "SELECT AVG(total_matches) FROM table_name_34 WHERE competition = \"league cup\" AND draw > 0", "question": "How many average total matches have league cup as the competition, with a draw greater than 0?", "context": "CREATE TABLE table_name_34 (total_matches INTEGER, competition VARCHAR, draw VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_16 WHERE try_bonus = \"0\"", "question": "What is the number of tries for when the try bonus is 0?", "context": "CREATE TABLE table_name_16 (tries_for VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_24 WHERE lost = \"6\" AND try_bonus = \"9\"", "question": "How many points is there when the lost is 6 and the try bonus is 9?", "context": "CREATE TABLE table_name_24 (points_for VARCHAR, lost VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_50 WHERE club = \"cambrian welfare rfc\"", "question": "How many pints does the Cambrian Welfare RFC have?", "context": "CREATE TABLE table_name_50 (points_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_50 WHERE try_bonus = \"9\" AND lost = \"4\"", "question": "When the try bonus is 9 and the lost 4, what is the drawn?", "context": "CREATE TABLE table_name_50 (drawn VARCHAR, try_bonus VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points FROM table_name_40 WHERE club = \"clwb rygbi cymru caerdydd rfc\"", "question": "Club Clwb Rygbi Cymru Caerdydd RFC has how many points?", "context": "CREATE TABLE table_name_40 (points VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_68 WHERE density < 376.37 AND province = \"valverde\" AND area > 823", "question": "What is the highest Rank with a density less than 376.37, the province was valverde, and an Area larger than 823?", "context": "CREATE TABLE table_name_68 (rank INTEGER, area VARCHAR, density VARCHAR, province VARCHAR)"}, {"answer": "SELECT MAX(density) FROM table_name_88 WHERE province = \"independencia\" AND area < 2 OFFSET 007.4", "question": "What is the highest Density for the independencia province, with an area smaller than 2,007.4?", "context": "CREATE TABLE table_name_88 (density INTEGER, province VARCHAR, area VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_52 WHERE team__number2 = \"pamesa valencia\"", "question": "Which 2nd leg has pamesa valencia for team #2?", "context": "CREATE TABLE table_name_52 (team__number2 VARCHAR)"}, {"answer": "SELECT team__number1 FROM table_name_97 WHERE team__number2 = \"unics kazan\"", "question": "What is the team #1 that has unics kazan for team #2?", "context": "CREATE TABLE table_name_97 (team__number1 VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_37 WHERE team__number2 = \"akasvayu girona\"", "question": "What is the 1st leg that has akasvayu girona as team #2?", "context": "CREATE TABLE table_name_37 (team__number2 VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_2 WHERE tournament = \"totals\" AND cuts_made > 42", "question": "Which Wins has a Tournament of totals, and a Cuts made larger than 42?", "context": "CREATE TABLE table_name_2 (wins INTEGER, tournament VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(top_10) FROM table_name_57 WHERE cuts_made > 42", "question": "Which Top-10 has a Cuts made larger than 42?", "context": "CREATE TABLE table_name_57 (top_10 INTEGER, cuts_made INTEGER)"}, {"answer": "SELECT AVG(wins) FROM table_name_26 WHERE top_5 = 6", "question": "Which Wins has a Top-5 of 6?", "context": "CREATE TABLE table_name_26 (wins INTEGER, top_5 VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_26 WHERE top_25 < 3", "question": "Which Cuts made has a Top-25 smaller than 3?", "context": "CREATE TABLE table_name_26 (cuts_made INTEGER, top_25 INTEGER)"}, {"answer": "SELECT MIN(top_10) FROM table_name_95 WHERE cuts_made = 10 AND top_5 > 1", "question": "Which Top-10 has a Cuts made of 10, and a Top-5 larger than 1?", "context": "CREATE TABLE table_name_95 (top_10 INTEGER, cuts_made VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT out_of FROM table_name_62 WHERE source = \"protestantism by country\"", "question": "Concerning protestantism by country, the ranking is out of how many total?", "context": "CREATE TABLE table_name_62 (out_of VARCHAR, source VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_67 WHERE name = \"protestants population\"", "question": "What is the lowest rank that the protestants population holds?", "context": "CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT chart_positions FROM table_name_21 WHERE album_title = \"i\"", "question": "The album titled I had what chart positions?", "context": "CREATE TABLE table_name_21 (chart_positions VARCHAR, album_title VARCHAR)"}, {"answer": "SELECT album_title FROM table_name_25 WHERE original_label = \"popup\"", "question": "What is the title of the album that has Popup has the original label?", "context": "CREATE TABLE table_name_25 (album_title VARCHAR, original_label VARCHAR)"}, {"answer": "SELECT format FROM table_name_58 WHERE year < 1992", "question": "What is the format of the album with a year less than 1992?", "context": "CREATE TABLE table_name_58 (format VARCHAR, year INTEGER)"}, {"answer": "SELECT chart_positions FROM table_name_1 WHERE format = \"ep\"", "question": "What chart positions did the album reach when ep was the format?", "context": "CREATE TABLE table_name_1 (chart_positions VARCHAR, format VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_74 WHERE player = \"ed o'bannon\" AND round < 1", "question": "What was the average pick with Ed O'Bannon and a round smaller than 1?", "context": "CREATE TABLE table_name_74 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_27 WHERE nba_team = \"detroit pistons\"", "question": "What player was drafted for the Detroit Pistons?", "context": "CREATE TABLE table_name_27 (player VARCHAR, nba_team VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_81 WHERE team_1 = \"montreal impact\"", "question": "Which Team 2 had a Team 1 of montreal impact?", "context": "CREATE TABLE table_name_81 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_52 WHERE team_1 = \"joe public\"", "question": "Which Team 2 had a Team 1of joe public?", "context": "CREATE TABLE table_name_52 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_19 WHERE team_2 = \"hankook verdes\"", "question": "Which team 1 had a Team 2 of hankook verdes?", "context": "CREATE TABLE table_name_19 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_61 WHERE team_2 = \"wagad mogadishu\"", "question": "What is the first leg score when team 2 is Wagad Mogadishu?", "context": "CREATE TABLE table_name_61 (team_2 VARCHAR)"}, {"answer": "SELECT status FROM table_name_77 WHERE name = \"anas cheuen\"", "question": "What is the Status with a Name that is anas cheuen?", "context": "CREATE TABLE table_name_77 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT unit FROM table_name_58 WHERE name = \"anas cheuen\"", "question": "What is the Unit with a Name that is anas cheuen?", "context": "CREATE TABLE table_name_58 (unit VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_83 WHERE score = \"31-6\"", "question": "What team was the Opponent when the Score was 31-6?", "context": "CREATE TABLE table_name_83 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE record = \"9-3-0\"", "question": "What is the Score when the record was 9-3-0?", "context": "CREATE TABLE table_name_76 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_73 WHERE home_team = \"coventry city\"", "question": "What is the away team where the home team is Coventry City?", "context": "CREATE TABLE table_name_73 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE away_team = \"exeter city\"", "question": "What is the score where the away team is Exeter City?", "context": "CREATE TABLE table_name_20 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_97 WHERE away_team = \"walsall\"", "question": "How many ties does Walsall have?", "context": "CREATE TABLE table_name_97 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_7 WHERE home_team = \"bolton wanderers\"", "question": "Where Bolton Wanderers is the home team, who is the away team?", "context": "CREATE TABLE table_name_7 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_43 WHERE attendance = \"11,997\"", "question": "How many ties are there where attendance is 11,997?", "context": "CREATE TABLE table_name_43 (tie_no VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_83 WHERE away_team = \"bradford city\"", "question": "Where the away team is Bradford City, who is the home team?", "context": "CREATE TABLE table_name_83 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_35 WHERE position = \"guard/forward\"", "question": "For which school/club team did the player in the position of Guard/Forward play?", "context": "CREATE TABLE table_name_35 (school_club_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT acquisition_via FROM table_name_26 WHERE position = \"center\"", "question": "How was the player in the position of Center acquired?", "context": "CREATE TABLE table_name_26 (acquisition_via VARCHAR, position VARCHAR)"}, {"answer": "SELECT season FROM table_name_81 WHERE number > 15 AND name = \"omar thomas\"", "question": "In what season did Omar Thomas play, with a jersey number larger than 15?", "context": "CREATE TABLE table_name_81 (season VARCHAR, number VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_name_62 WHERE school_club_team = \"de la salle\"", "question": "How many total players came from the school/club team of De La Salle?", "context": "CREATE TABLE table_name_62 (number VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT name FROM table_name_67 WHERE position = \"guard/forward\"", "question": "Which player is in the position of Guard/Forward?", "context": "CREATE TABLE table_name_67 (name VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_38 WHERE top_5 > 0 AND events < 4", "question": "What is the most wins associated with under 4 events with 0 top-5s?", "context": "CREATE TABLE table_name_38 (wins INTEGER, top_5 VARCHAR, events VARCHAR)"}, {"answer": "SELECT AVG(events) FROM table_name_98 WHERE top_10 = 1 AND wins > 0 AND cuts_made < 4", "question": "What is the average number of events having 1 top-10, fewer than 4 cuts made, and 0 wins?", "context": "CREATE TABLE table_name_98 (events INTEGER, cuts_made VARCHAR, top_10 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_22 WHERE events > 28", "question": "What is the average number of wins for events larger than 28?", "context": "CREATE TABLE table_name_22 (wins INTEGER, events INTEGER)"}, {"answer": "SELECT SUM(top_25) FROM table_name_71 WHERE top_5 > 1", "question": "What is the sum of top-25s for events with more than 1 top-5?", "context": "CREATE TABLE table_name_71 (top_25 INTEGER, top_5 INTEGER)"}, {"answer": "SELECT producer FROM table_name_57 WHERE title = \"city sharks\"", "question": "Who is the producer of city sharks?", "context": "CREATE TABLE table_name_57 (producer VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_65 WHERE producer = \"2003\"", "question": "What is the title of the film when the producer was 2003?", "context": "CREATE TABLE table_name_65 (title VARCHAR, producer VARCHAR)"}, {"answer": "SELECT director FROM table_name_27 WHERE title = \"2003\"", "question": "Who is the director when the title is 2003?", "context": "CREATE TABLE table_name_27 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT production_cost FROM table_name_63 WHERE producer = \"raintree pictures\"", "question": "What is the production cost when the producer is raintree pictures?", "context": "CREATE TABLE table_name_63 (production_cost VARCHAR, producer VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_50 WHERE week = 15", "question": "What was the lowest attendance at a week 15 game?", "context": "CREATE TABLE table_name_50 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE record = \"38-18\"", "question": "What is the Score for the game with a record of 38-18?", "context": "CREATE TABLE table_name_84 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_24 WHERE score = \"8-2\"", "question": "What team was the opponent when the score was 8-2?", "context": "CREATE TABLE table_name_24 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_name_41 WHERE opponent = \"vs. ole miss\" AND loss = \"mckean (4-1)\"", "question": "What is the Location when the opponent shows vs. ole miss, and a Loss of mckean (4-1)?", "context": "CREATE TABLE table_name_41 (location VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_79 WHERE record = \"39-19\"", "question": "What is the name of the Opponent when there is a Record of 39-19?", "context": "CREATE TABLE table_name_79 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_98 WHERE date = \"may 24\" AND loss = \"hayes (2-1)\"", "question": "What is the Record on may 24, with a Loss of hayes (2-1)?", "context": "CREATE TABLE table_name_98 (record VARCHAR, date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT location FROM table_name_83 WHERE opponent = \"vs. #23 south carolina\"", "question": "What is the Location when the Opponent shows vs. #23 south carolina?", "context": "CREATE TABLE table_name_83 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(weight__kg_) FROM table_name_90 WHERE birthdate = \"june 2, 1983\"", "question": "What is that if the weight for the play born on June 2, 1983?", "context": "CREATE TABLE table_name_90 (weight__kg_ INTEGER, birthdate VARCHAR)"}, {"answer": "SELECT MAX(weight__kg_) FROM table_name_41 WHERE position = \"f\" AND jersey__number = 12", "question": "What was the highest weight in kg for F Position, Jersey #12?", "context": "CREATE TABLE table_name_41 (weight__kg_ INTEGER, position VARCHAR, jersey__number VARCHAR)"}, {"answer": "SELECT nhl_rights, _if_any FROM table_name_7 WHERE birthplace = \"downers grove, illinois\"", "question": "Which player is the NHL right, who was born in Downers Grove, Illinois?", "context": "CREATE TABLE table_name_7 (nhl_rights VARCHAR, _if_any VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT coding FROM table_name_48 WHERE variant_id = \"abd'1a 3\"", "question": "Which coding's variant id is abd'1a 3?", "context": "CREATE TABLE table_name_48 (coding VARCHAR, variant_id VARCHAR)"}, {"answer": "SELECT 5 AS \u2019utr_splice FROM table_name_70 WHERE coding = \"1a 2\" AND variant_id = \"abd'1a 2\"", "question": "Which 5'utr splice's coding is 1a 2, when the Variant id is abd'1a 2?", "context": "CREATE TABLE table_name_70 (coding VARCHAR, variant_id VARCHAR)"}, {"answer": "SELECT genbank_id FROM table_name_41 WHERE variant_id = \"abd1a\"", "question": "Which genbank id's variant is abd1a?", "context": "CREATE TABLE table_name_41 (genbank_id VARCHAR, variant_id VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_53 WHERE school_club_team = \"clemson\"", "question": "What year did Orlando have a School/Club team in Clemson?", "context": "CREATE TABLE table_name_53 (years_in_orlando VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_7 WHERE nationality = \"united states\" AND school_club_team = \"clemson\"", "question": "What years did the player in Orlando play that is from the United States, and is part of the school/club team Clemson?", "context": "CREATE TABLE table_name_7 (years_in_orlando VARCHAR, nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_73 WHERE school_club_team = \"georgia\"", "question": "Who is the player for the School/Club team in Georgia?", "context": "CREATE TABLE table_name_73 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_28 WHERE player = \"pat garrity\"", "question": "What was the nationality of the player Pat Garrity?", "context": "CREATE TABLE table_name_28 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_43 WHERE school_club_team = \"louisville\"", "question": "What is the nationality of the School/Club team of Louisville?", "context": "CREATE TABLE table_name_43 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(feature) FROM table_name_88 WHERE wins = 6 AND driver = \"adam carroll\" AND starts > 32", "question": "How many features did Adam Carroll win 6 times when the start was larger than 32?", "context": "CREATE TABLE table_name_88 (feature VARCHAR, starts VARCHAR, wins VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(feature) FROM table_name_32 WHERE wins = 2 AND sprint = 2", "question": "What is the lowest feature with 2 wins and 2 sprints?", "context": "CREATE TABLE table_name_32 (feature INTEGER, wins VARCHAR, sprint VARCHAR)"}, {"answer": "SELECT AVG(sprint) FROM table_name_85 WHERE wins = 10 AND feature < 5", "question": "How many sprints on average had 10 wins and less than 5 features?", "context": "CREATE TABLE table_name_85 (sprint INTEGER, wins VARCHAR, feature VARCHAR)"}, {"answer": "SELECT country FROM table_name_80 WHERE lane > 6 AND mark = \"6.63\"", "question": "Which country has a lane greater than 6 and a mark of 6.63?", "context": "CREATE TABLE table_name_80 (country VARCHAR, lane VARCHAR, mark VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_17 WHERE country = \"nigeria\" AND react < 0.133", "question": "What is the lowest lane for Nigeria, with a react less than 0.133?", "context": "CREATE TABLE table_name_17 (lane INTEGER, country VARCHAR, react VARCHAR)"}, {"answer": "SELECT mark FROM table_name_11 WHERE name = \"kim collins\"", "question": "What is the mark for Kim Collins?", "context": "CREATE TABLE table_name_11 (mark VARCHAR, name VARCHAR)"}, {"answer": "SELECT nation FROM table_name_10 WHERE bronze = 1 AND total = 3 AND silver = 1", "question": "Which country had 1 Bronze, 1 Silver, with a total of 3 medals?", "context": "CREATE TABLE table_name_10 (nation VARCHAR, silver VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT nation FROM table_name_65 WHERE silver > 2 AND gold < 4", "question": "Which country had more than 2 silvers and less than 4 golds?", "context": "CREATE TABLE table_name_65 (nation VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_25 WHERE total = 1 AND silver > 0", "question": "What's the average bronze with a total number of medals being 1, with more than 0 silvers?", "context": "CREATE TABLE table_name_25 (bronze INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(races) FROM table_name_98 WHERE final_placing = \"15th\" AND season = \"2005\"", "question": "In the 2005 season, how many races did the 15th place team complete?", "context": "CREATE TABLE table_name_98 (races INTEGER, final_placing VARCHAR, season VARCHAR)"}, {"answer": "SELECT team_name FROM table_name_92 WHERE races = 10", "question": "Which team completed 10 races?", "context": "CREATE TABLE table_name_92 (team_name VARCHAR, races VARCHAR)"}, {"answer": "SELECT pba_team FROM table_name_35 WHERE pick = 4", "question": "What is the PBA team with a Pick that is 4?", "context": "CREATE TABLE table_name_35 (pba_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_15 WHERE pick = 6", "question": "What is the Player with a Pick that is 6?", "context": "CREATE TABLE table_name_15 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_32 WHERE gold = 1 AND rank < 2", "question": "How many totals have 1 gold and a rank smaller than 2?", "context": "CREATE TABLE table_name_32 (total VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_49 WHERE nation = \"south korea\"", "question": "How much gold did South Korea get?", "context": "CREATE TABLE table_name_49 (gold INTEGER, nation VARCHAR)"}, {"answer": "SELECT MAX(SLM) AS number FROM table_name_26 WHERE built > 1895", "question": "What locomotive built after 1895 has the highest SLM number?", "context": "CREATE TABLE table_name_26 (SLM INTEGER, built INTEGER)"}, {"answer": "SELECT type FROM table_name_46 WHERE built = 1923", "question": "Which type of locomotive was built in 1923?", "context": "CREATE TABLE table_name_46 (type VARCHAR, built VARCHAR)"}, {"answer": "SELECT MIN(place) FROM table_name_8 WHERE country = \"united kingdom\" AND time = \"1:30.51.2\"", "question": "When the United Kingdom had a time of 1:30.51.2, what was the lowest that they ranked?", "context": "CREATE TABLE table_name_8 (place INTEGER, country VARCHAR, time VARCHAR)"}, {"answer": "SELECT country FROM table_name_7 WHERE speed = \"98.09mph\"", "question": "What County scored with a speed of 98.09mph?", "context": "CREATE TABLE table_name_7 (country VARCHAR, speed VARCHAR)"}, {"answer": "SELECT set_4 FROM table_name_64 WHERE date = \"jun 27\" AND set_3 = \"17-25\"", "question": "What is Set 4, when Date is Jun 27, and when Set 3 is 17-25?", "context": "CREATE TABLE table_name_64 (set_4 VARCHAR, date VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE set_3 = \"17-25\"", "question": "What is Score, when Set 3 is 17-25?", "context": "CREATE TABLE table_name_67 (score VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_5 FROM table_name_46 WHERE date = \"jun 26\" AND set_2 = \"25-22\"", "question": "What is Set 5, when Date is Jun 26, and when Set 2 is 25-22?", "context": "CREATE TABLE table_name_46 (set_5 VARCHAR, date VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_39 WHERE set_3 = \"22-25\"", "question": "What is Set 1, when Set 3 is 22-25?", "context": "CREATE TABLE table_name_39 (set_1 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_87 WHERE date = \"jun 26\" AND set_4 = \"26-24\"", "question": "What is Set 1, when Date is Jun 26, and when Set 4 is 26-24?", "context": "CREATE TABLE table_name_87 (set_1 VARCHAR, date VARCHAR, set_4 VARCHAR)"}, {"answer": "SELECT set_4 FROM table_name_10 WHERE set_5 = \"na\" AND set_3 = \"19-25\"", "question": "What is Set 4, when Set 5 is NA, and when Set 3 is 19-25?", "context": "CREATE TABLE table_name_10 (set_4 VARCHAR, set_5 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT team FROM table_name_60 WHERE location = \"buenos aires , argentina\"", "question": "What is the Team when the match was in buenos aires , argentina?", "context": "CREATE TABLE table_name_60 (team VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_61 WHERE team = \"seve ballesteros & manuel pi\u00f1ero\"", "question": "What is the Location when the team was seve ballesteros & manuel pi\u00f1ero?", "context": "CREATE TABLE table_name_61 (location VARCHAR, team VARCHAR)"}, {"answer": "SELECT location FROM table_name_23 WHERE individual = \"jos\u00e9 maria ca\u00f1izares\"", "question": "What is the Location when the individual was jos\u00e9 maria ca\u00f1izares?", "context": "CREATE TABLE table_name_23 (location VARCHAR, individual VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_59 WHERE team = \"seve ballesteros & manuel pi\u00f1ero\"", "question": "What is the highest Year when the team was seve ballesteros & manuel pi\u00f1ero?", "context": "CREATE TABLE table_name_59 (year INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(acres) FROM table_name_29 WHERE landfill = \"sai tso wan\" AND opened < 1978", "question": "What is the total number of acres at Sai Tso Wan, opening before 1978?", "context": "CREATE TABLE table_name_29 (acres VARCHAR, landfill VARCHAR, opened VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_42 WHERE goals < 76 AND matches > 270", "question": "Which Rank has a Goals smaller than 76, and a Matches larger than 270?", "context": "CREATE TABLE table_name_42 (rank INTEGER, goals VARCHAR, matches VARCHAR)"}, {"answer": "SELECT AVG(matches) FROM table_name_67 WHERE rank < 5 AND years = \"1995\u20132003\" AND goals < 104", "question": "Which Matches have a Rank smaller than 5, a Years of 1995\u20132003, and a Goals smaller than 104?", "context": "CREATE TABLE table_name_67 (matches INTEGER, goals VARCHAR, rank VARCHAR, years VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_17 WHERE name = \"lee dong-gook\"", "question": "Which Goals have a Name of lee dong-gook?", "context": "CREATE TABLE table_name_17 (goals INTEGER, name VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_82 WHERE years = \"1998\u2013present\"", "question": "Which Rank has a Years of 1998\u2013present?", "context": "CREATE TABLE table_name_82 (rank INTEGER, years VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_94 WHERE rank = 2", "question": "Which Matches have a Rank of 2?", "context": "CREATE TABLE table_name_94 (matches VARCHAR, rank VARCHAR)"}, {"answer": "SELECT position FROM table_name_24 WHERE competition = \"world championships\" AND venue = \"tokyo, japan\"", "question": "What Position was achieved in the World Championships Competition in Tokyo, Japan?", "context": "CREATE TABLE table_name_24 (position VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_57 WHERE position = \"1st\" AND notes = \"57.03\"", "question": "Which Competition was 1st Position with 57.03 in Notes?", "context": "CREATE TABLE table_name_57 (competition VARCHAR, position VARCHAR, notes VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_55 WHERE event = \"400m h\" AND notes = \"54.86\"", "question": "What is the earliest Year for 400m h Event with 54.86 in Notes?", "context": "CREATE TABLE table_name_55 (year INTEGER, event VARCHAR, notes VARCHAR)"}, {"answer": "SELECT COUNT(appearances) FROM table_name_25 WHERE team = \"chaux-de-fonds\" AND place > 8", "question": "What is the total number of appearances for players from Chaux-de-Fonds with places over 8?", "context": "CREATE TABLE table_name_25 (appearances VARCHAR, team VARCHAR, place VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_1 WHERE date = \"november 9, 1997\"", "question": "What is the highest week of the game on November 9, 1997?", "context": "CREATE TABLE table_name_1 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT proto_austronesian FROM table_name_97 WHERE proto_oceanic = \"*lima\"", "question": "Which Proto-Austronesian has a Proto-Oceanic of *lima?", "context": "CREATE TABLE table_name_97 (proto_austronesian VARCHAR, proto_oceanic VARCHAR)"}, {"answer": "SELECT proto_oceanic FROM table_name_85 WHERE proto_polynesian = \"*lima\"", "question": "Which Proto-Oceanic has a Proto-Polynesian of *lima?", "context": "CREATE TABLE table_name_85 (proto_oceanic VARCHAR, proto_polynesian VARCHAR)"}, {"answer": "SELECT number FROM table_name_71 WHERE proto_polynesian = \"*taha\"", "question": "Which Number has a Proto-Polynesian of *taha?", "context": "CREATE TABLE table_name_71 (number VARCHAR, proto_polynesian VARCHAR)"}, {"answer": "SELECT proto_polynesian FROM table_name_69 WHERE number = \"five\"", "question": "WHich Proto-Polynesian has a Number of five?", "context": "CREATE TABLE table_name_69 (proto_polynesian VARCHAR, number VARCHAR)"}, {"answer": "SELECT proto_polynesian FROM table_name_50 WHERE proto_malayo_polynesian = \"*telu\"", "question": "Which Proto-Polynesian has a Proto-Malayo-Polynesian of *telu?", "context": "CREATE TABLE table_name_50 (proto_polynesian VARCHAR, proto_malayo_polynesian VARCHAR)"}, {"answer": "SELECT proto_oceanic FROM table_name_48 WHERE proto_polynesian = \"*lima\"", "question": "Which  Proto-Oceanic has a Proto-Polynesian of *lima?", "context": "CREATE TABLE table_name_48 (proto_oceanic VARCHAR, proto_polynesian VARCHAR)"}, {"answer": "SELECT COUNT(2009) FROM table_name_49 WHERE 1999 < 1 AND 2006 > 0 AND 1997 < 0", "question": "How many countries in 2009 have fewer than 1 in 1999, more than 0 in 2006 and none in 1997?", "context": "CREATE TABLE table_name_49 (Id VARCHAR)"}, {"answer": "SELECT MAX(2006) FROM table_name_16 WHERE 2002 < 0", "question": "How much is the highest number in 2006 with fewer than 0 in 2002?", "context": "CREATE TABLE table_name_16 (Id VARCHAR)"}, {"answer": "SELECT SUM(2003) FROM table_name_97 WHERE 2001 = 0 AND 2009 > 0 AND 1999 < 0", "question": "How many are there in 2003 that have 0 in 2001, more than 0 in 2009 and fewer than 0 in 1999?", "context": "CREATE TABLE table_name_97 (Id VARCHAR)"}, {"answer": "SELECT country FROM table_name_18 WHERE 2012 > 0 AND 2009 > 0 AND 2008 = 0 AND 2004 > 0", "question": "Which country has more than 0 in 2012 and 2009, 0 in 2008 and more than 0 in 2004?", "context": "CREATE TABLE table_name_18 (country VARCHAR)"}, {"answer": "SELECT _percentage_gdp FROM table_name_16 WHERE expenditure > 50.9 AND year > 2009 AND income = 39.3", "question": "Which % GDP has an Expenditure larger than 50.9, and a Year larger than 2009, and an Income of 39.3?", "context": "CREATE TABLE table_name_16 (_percentage_gdp VARCHAR, income VARCHAR, expenditure VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_65 WHERE expenditure < 41.3 AND _percentage_gdp = \"x\" AND income > 34.4", "question": "Which Year has an Expenditure smaller than 41.3, and a % GDP of x, and an Income larger than 34.4?", "context": "CREATE TABLE table_name_65 (year INTEGER, income VARCHAR, expenditure VARCHAR, _percentage_gdp VARCHAR)"}, {"answer": "SELECT surplus_deficit_ FROM table_name_88 WHERE expenditure > 45.8 AND year < 2011 AND _percentage_gdp = \"(0.9%)\"", "question": "Which Surplus(Deficit) has an Expenditure larger than 45.8, and a Year smaller than 2011, and a % GDP of (0.9%)?", "context": "CREATE TABLE table_name_88 (surplus_deficit_ VARCHAR, _percentage_gdp VARCHAR, expenditure VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_7 WHERE expenditure = 55 AND income < 36.2", "question": "Which Year has an Expenditure of 55, and an Income smaller than 36.2?", "context": "CREATE TABLE table_name_7 (year INTEGER, expenditure VARCHAR, income VARCHAR)"}, {"answer": "SELECT _percentage_gdp FROM table_name_19 WHERE year < 2011 AND expenditure > 41.3 AND income < 48 AND surplus_deficit_ = \"(24.6)\"", "question": "Which % GDP has a Year smaller than 2011, and an Expenditure larger than 41.3, and an Income smaller than 48, and a Surplus(Deficit) of (24.6)?", "context": "CREATE TABLE table_name_19 (_percentage_gdp VARCHAR, surplus_deficit_ VARCHAR, income VARCHAR, year VARCHAR, expenditure VARCHAR)"}, {"answer": "SELECT year FROM table_name_96 WHERE tournament_name = \"grand prix passing shot bordeaux\" AND runners_up = \"diego nargiso\"", "question": "What year was the Grand Prix Passing Shot Bordeaux that had Runners-up of Diego Nargiso?", "context": "CREATE TABLE table_name_96 (year VARCHAR, tournament_name VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT tournament_name FROM table_name_65 WHERE score = \"5\u20137, 6\u20134, 6\u20134\"", "question": "What tournament had a score of 5\u20137, 6\u20134, 6\u20134?", "context": "CREATE TABLE table_name_65 (tournament_name VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE year > 1989 AND tournament_name = \"grand prix passing shot\" AND runners_up = \"jeff tarango\"", "question": "After 1989, what was the score of the Grand Prix Passing Shot where the Runners-up were Jeff Tarango?", "context": "CREATE TABLE table_name_65 (score VARCHAR, runners_up VARCHAR, year VARCHAR, tournament_name VARCHAR)"}, {"answer": "SELECT tournament_name FROM table_name_80 WHERE runners_up = \"gianni ocleppo\"", "question": "What's the name of the tournament that Gianni Ocleppo was the runner-up?", "context": "CREATE TABLE table_name_80 (tournament_name VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT MIN(win_percentage) FROM table_name_63 WHERE games_behind = \"6\u00bd\" AND wins > 77", "question": "What is the lowest percentage of wins for 6\u00bd games and more than 77 total wins?", "context": "CREATE TABLE table_name_63 (win_percentage INTEGER, games_behind VARCHAR, wins VARCHAR)"}, {"answer": "SELECT score FROM table_name_90 WHERE date = \"november 10\"", "question": "What is the score of the competition on November 10?", "context": "CREATE TABLE table_name_90 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_95 WHERE record = \"2-1\"", "question": "Who is the visitor when the record is 2-1?", "context": "CREATE TABLE table_name_95 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_56 WHERE score = \"81-80\"", "question": "Who is the home team when the score is 81-80?", "context": "CREATE TABLE table_name_56 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_39 WHERE nation = \"japan\" AND total > 1", "question": "How many Gold medals did Japan receive who had a Total of more than 1 medals?", "context": "CREATE TABLE table_name_39 (gold INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT time__cst_ FROM table_name_75 WHERE nfl_recap = \"recap\" AND date = \"october 19, 2008\"", "question": "What time (cst) has and NFL recap of recap with october 19, 2008 as the date?", "context": "CREATE TABLE table_name_75 (time__cst_ VARCHAR, nfl_recap VARCHAR, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_57 WHERE game_site = \"giants stadium\"", "question": "Which week has giants stadium as the game site?", "context": "CREATE TABLE table_name_57 (week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_53 WHERE time__cst_ = \"7:15 p.m.\" AND game_site = \"fedexfield\"", "question": "What is the lowest week that has 7:15 p.m. as the time (cst) and fedexfield as the game site?", "context": "CREATE TABLE table_name_53 (week INTEGER, time__cst_ VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT office FROM table_name_51 WHERE law_preservation_ticket = \"william e. barron\"", "question": "What office was law preservation ticket holder William E. Barron running for?", "context": "CREATE TABLE table_name_51 (office VARCHAR, law_preservation_ticket VARCHAR)"}, {"answer": "SELECT constitutional_ticket FROM table_name_51 WHERE republican_ticket = \"charles b. sears\"", "question": "Who was the constitutional ticken when Charles B. Sears was the republican ticket?", "context": "CREATE TABLE table_name_51 (constitutional_ticket VARCHAR, republican_ticket VARCHAR)"}, {"answer": "SELECT constitutional_ticket FROM table_name_95 WHERE socialist_ticket = \"william karlin\"", "question": "Who was the constitutional ticket when william karlin was the socialist ticket?", "context": "CREATE TABLE table_name_95 (constitutional_ticket VARCHAR, socialist_ticket VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_69 WHERE date = \"mar 18, 1979\"", "question": "What was the margin of victory on Mar 18, 1979?", "context": "CREATE TABLE table_name_69 (margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT comp FROM table_name_42 WHERE year = \"1989\"", "question": "What is the comp for the year 1989?", "context": "CREATE TABLE table_name_42 (comp VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_name_50 WHERE year = \"1989\"", "question": "What is the team in 1989?", "context": "CREATE TABLE table_name_50 (team VARCHAR, year VARCHAR)"}, {"answer": "SELECT ratt FROM table_name_72 WHERE year = \"1988\"", "question": "What is the RAtt in the year 1988?", "context": "CREATE TABLE table_name_72 (ratt VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_name_73 WHERE ratt = \"42\"", "question": "What was the team with a Ratt of 42?", "context": "CREATE TABLE table_name_73 (team VARCHAR, ratt VARCHAR)"}, {"answer": "SELECT team FROM table_name_18 WHERE ratt = \"57\"", "question": "What was the team with a ratt of 57?", "context": "CREATE TABLE table_name_18 (team VARCHAR, ratt VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE week < 7 AND game_site = \"tulane stadium\"", "question": "Who did the Giants play before week 7 in Tulane Stadium?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_48 WHERE week = 1", "question": "What was the lowest attendance for week 1?", "context": "CREATE TABLE table_name_48 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_8 WHERE country = \"ethiopia\"", "question": "What is the highest rank of a player from Ethiopia?", "context": "CREATE TABLE table_name_8 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_94 WHERE matches = 367 AND goals > 216", "question": "How many ranks had 367 matches and more than 216 goals?", "context": "CREATE TABLE table_name_94 (rank INTEGER, matches VARCHAR, goals VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_86 WHERE goals = 230 AND matches > 535", "question": "What is the mean rank number when goals are 230 and there are more than 535?", "context": "CREATE TABLE table_name_86 (rank INTEGER, goals VARCHAR, matches VARCHAR)"}, {"answer": "SELECT original_airing FROM table_name_60 WHERE audience_share__average_ = \"8%\"", "question": "Where the audience share is 8%, what is the original airing?", "context": "CREATE TABLE table_name_60 (original_airing VARCHAR, audience_share__average_ VARCHAR)"}, {"answer": "SELECT COUNT(episode_number) FROM table_name_80 WHERE audience_share__average_ = \"10%\"", "question": "What episode number has an audience share of 10%?", "context": "CREATE TABLE table_name_80 (episode_number VARCHAR, audience_share__average_ VARCHAR)"}, {"answer": "SELECT class FROM table_name_97 WHERE wheels = 137", "question": "What is the value for the item \"Class\" when the value of the item \"Wheels\" is 137?", "context": "CREATE TABLE table_name_97 (class VARCHAR, wheels VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_84 WHERE team = \"fenerbah\u00e7e\"", "question": "What's the smallest number of games for the fenerbah\u00e7e team?", "context": "CREATE TABLE table_name_84 (games INTEGER, team VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_75 WHERE team = \"olympiacos\" AND rebounds < 17", "question": "What's the mean game number for the olympiacos team when there's less than 17 rebounds?", "context": "CREATE TABLE table_name_75 (games INTEGER, team VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_57 WHERE name = \"novica veli\u010dkovi\u0107\" AND rebounds > 24", "question": "How many games does novica veli\u010dkovi\u0107 have when there's more than 24 rebounds?", "context": "CREATE TABLE table_name_57 (games VARCHAR, name VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT league FROM table_name_64 WHERE year = \"1990/91\"", "question": "What is the League with a Year that is 1990/91?", "context": "CREATE TABLE table_name_64 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT icao FROM table_name_75 WHERE airport = \"simferopol international airport\"", "question": "What is the ICAO for simferopol international airport?", "context": "CREATE TABLE table_name_75 (icao VARCHAR, airport VARCHAR)"}, {"answer": "SELECT country FROM table_name_70 WHERE iata = \"gzt\"", "question": "Which country has an IATA of gzt?", "context": "CREATE TABLE table_name_70 (country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT country FROM table_name_21 WHERE city = \"yerevan\"", "question": "What country is Yerevan located in?", "context": "CREATE TABLE table_name_21 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT icao FROM table_name_19 WHERE iata = \"ika\"", "question": "What is the ICAO when the IATA is ika?", "context": "CREATE TABLE table_name_19 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT icao FROM table_name_34 WHERE iata = \"ist\"", "question": "What is the ICAO when the IATA is ist?", "context": "CREATE TABLE table_name_34 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT team FROM table_name_33 WHERE lost = 10", "question": "Which team has 10 losses?", "context": "CREATE TABLE table_name_33 (team VARCHAR, lost VARCHAR)"}, {"answer": "SELECT annual_change FROM table_name_31 WHERE rank < 3 AND capacity_in_use = \"78.4%\"", "question": "In which yearly change was there a capacity of 78.4% and a rank smaller than 3?", "context": "CREATE TABLE table_name_31 (annual_change VARCHAR, rank VARCHAR, capacity_in_use VARCHAR)"}, {"answer": "SELECT rank FROM table_name_85 WHERE location = \"porto alegre\"", "question": "In Which rank was there a location of porto alegre?", "context": "CREATE TABLE table_name_85 (rank VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(total_passengers) FROM table_name_88 WHERE capacity_in_use = \"81.2%\"", "question": "what is the number of passengers when the capacity is 81.2%?", "context": "CREATE TABLE table_name_88 (total_passengers INTEGER, capacity_in_use VARCHAR)"}, {"answer": "SELECT MAX(total_passengers) FROM table_name_94 WHERE rank = 1", "question": "what is the highest amount of passengers when there is a rank of 1?", "context": "CREATE TABLE table_name_94 (total_passengers INTEGER, rank VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_95 WHERE result = \"l 17\u20130\"", "question": "What was the latest Week on which the Result was l 17\u20130?", "context": "CREATE TABLE table_name_95 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_65 WHERE top_25 < 10 AND top_10 > 3", "question": "What is the average cuts made at the top 25, less than 10, and at the Top 10 more than 3?", "context": "CREATE TABLE table_name_65 (cuts_made INTEGER, top_25 VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT AVG(top_10) FROM table_name_93 WHERE wins < 0", "question": "What is average Top 10 with 0 wins?", "context": "CREATE TABLE table_name_93 (top_10 INTEGER, wins INTEGER)"}, {"answer": "SELECT AVG(events) FROM table_name_18 WHERE tournament = \"the open championship\" AND top_5 < 1", "question": "What is the average event for the Open Championship Tournament, and a Top-5 less than 1?", "context": "CREATE TABLE table_name_18 (events INTEGER, tournament VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_66 WHERE top_25 < 0", "question": "What is the average wins has Top-25 less than 0?", "context": "CREATE TABLE table_name_66 (wins INTEGER, top_25 INTEGER)"}, {"answer": "SELECT MAX(against) FROM table_name_40 WHERE byes > 0", "question": "What is the largest Against with a Byes larger than 0?", "context": "CREATE TABLE table_name_40 (against INTEGER, byes INTEGER)"}, {"answer": "SELECT MAX(wins) FROM table_name_61 WHERE against = 1940 AND byes > 0", "question": "Which Wins has an Against of 1940, and a Byes larger than 0?", "context": "CREATE TABLE table_name_61 (wins INTEGER, against VARCHAR, byes VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_28 WHERE wins = 10 AND peel = \"south mandurah\" AND byes > 0", "question": "Which Draws has a Wins of 10, and a Peel of south mandurah, and a Byes larger than 0?", "context": "CREATE TABLE table_name_28 (draws INTEGER, byes VARCHAR, wins VARCHAR, peel VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_50 WHERE draws > 0 AND losses < 16 AND wins < 4", "question": "Which Against has a Draws larger than 0, a Losses smaller than 16, and a Wins smaller than 4?", "context": "CREATE TABLE table_name_50 (against INTEGER, wins VARCHAR, draws VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_52 WHERE against = 1101 AND byes < 0", "question": "Which Losses has an Against of 1101, and a Byes smaller than 0?", "context": "CREATE TABLE table_name_52 (losses VARCHAR, against VARCHAR, byes VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_5 WHERE losses < 1", "question": "Which Byes has a Losses smaller than 1?", "context": "CREATE TABLE table_name_5 (byes INTEGER, losses INTEGER)"}, {"answer": "SELECT AVG(games) FROM table_name_55 WHERE rank < 1", "question": "What is the average number of games of the player with a rank less than 1?", "context": "CREATE TABLE table_name_55 (games INTEGER, rank INTEGER)"}, {"answer": "SELECT MAX(rank) FROM table_name_24 WHERE points < 32", "question": "What is the highest rank of the player with less than 32 points?", "context": "CREATE TABLE table_name_24 (rank INTEGER, points INTEGER)"}, {"answer": "SELECT SUM(rank) FROM table_name_95 WHERE points < 34", "question": "What is the rank of the player with less than 34 points?", "context": "CREATE TABLE table_name_95 (rank INTEGER, points INTEGER)"}, {"answer": "SELECT fourth_district FROM table_name_72 WHERE second_district = \"bob springstead\"", "question": "Who's Fourth District has a Second District of bob springstead?", "context": "CREATE TABLE table_name_72 (fourth_district VARCHAR, second_district VARCHAR)"}, {"answer": "SELECT first_district FROM table_name_9 WHERE fifth_district = \"prudy adam\"", "question": "Who's the First District with a Fifth District of prudy adam?", "context": "CREATE TABLE table_name_9 (first_district VARCHAR, fifth_district VARCHAR)"}, {"answer": "SELECT fourth_district FROM table_name_98 WHERE first_district = \"beverly bodem\"", "question": "Who's the Fourth District with a First District of beverly bodem?", "context": "CREATE TABLE table_name_98 (fourth_district VARCHAR, first_district VARCHAR)"}, {"answer": "SELECT fourth_district FROM table_name_41 WHERE second_district = \"kurt van koevering\"", "question": "Who's the Fourth District with a Second District of kurt van koevering?", "context": "CREATE TABLE table_name_41 (fourth_district VARCHAR, second_district VARCHAR)"}, {"answer": "SELECT fifth_district FROM table_name_23 WHERE second_district = \"paul leidig\"", "question": "Who's the Fifth District with a Second District of paul leidig?", "context": "CREATE TABLE table_name_23 (fifth_district VARCHAR, second_district VARCHAR)"}, {"answer": "SELECT fourth_district FROM table_name_82 WHERE third_district = \"sharon yentsch\"", "question": "Who's the Fourth District with a Third District of sharon yentsch?", "context": "CREATE TABLE table_name_82 (fourth_district VARCHAR, third_district VARCHAR)"}, {"answer": "SELECT COUNT(sets) FROM table_name_21 WHERE player = \"gary muller\"", "question": "How many Sets did Gary Muller have?", "context": "CREATE TABLE table_name_21 (sets VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_12 WHERE sets < 5 AND event = \"2005 wimbledon\"", "question": "What Player in 2005 Wimbledon had less than 5 Sets?", "context": "CREATE TABLE table_name_12 (player VARCHAR, sets VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_93 WHERE aces < 50 AND event = \"2001 davis cup\"", "question": "At the 2001 Davis Cup, what Opponent had less than 50 Aces?", "context": "CREATE TABLE table_name_93 (opponent VARCHAR, aces VARCHAR, event VARCHAR)"}, {"answer": "SELECT time_of_airing_on_channel_4 FROM table_name_74 WHERE episode_number > 106 AND title = \"marry me a little\"", "question": "What time did Channel 4 air an episode number larger than 106 with the title of Marry Me A Little?", "context": "CREATE TABLE table_name_74 (time_of_airing_on_channel_4 VARCHAR, episode_number VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(sunk_by_u_boat) FROM table_name_4 WHERE german_submarines_lost < 2 AND sunk_by_aircraft = 56328 AND sunk_by_mines > 8269", "question": "What is the total number of sunk by U-boats with less than 2 German submarines lost, 56328 sunk by aircrafts, and more than 8269 sunk by mines?", "context": "CREATE TABLE table_name_4 (sunk_by_u_boat VARCHAR, sunk_by_mines VARCHAR, german_submarines_lost VARCHAR, sunk_by_aircraft VARCHAR)"}, {"answer": "SELECT COUNT(sunk_by_warship_or_raider) FROM table_name_30 WHERE german_submarines_lost = 20 AND sunk_by_aircraft > 21616", "question": "What is the total number sunk by warship or raider with 20 German submarines lost and more than 21616 sunk by aircraft?", "context": "CREATE TABLE table_name_30 (sunk_by_warship_or_raider VARCHAR, german_submarines_lost VARCHAR, sunk_by_aircraft VARCHAR)"}, {"answer": "SELECT COUNT(german_submarines_lost) FROM table_name_46 WHERE sunk_by_mines > 120958", "question": "What is the total number of German submarines lost with more than 120958 sunk by mines?", "context": "CREATE TABLE table_name_46 (german_submarines_lost VARCHAR, sunk_by_mines INTEGER)"}, {"answer": "SELECT month, _year FROM table_name_24 WHERE german_submarines_lost < 5 AND sunk_by_warship_or_raider < 6893 AND sunk_by_aircraft < 133746 AND sunk_by_u_boat > 111263", "question": "What is the month and year less than 5 German submarines were lost, less than 6893 were sunk by warship or raider, less than 133746 were sunk by aircraft, and more than 111263 were sunk by U-boat?", "context": "CREATE TABLE table_name_24 (month VARCHAR, _year VARCHAR, sunk_by_u_boat VARCHAR, sunk_by_aircraft VARCHAR, german_submarines_lost VARCHAR, sunk_by_warship_or_raider VARCHAR)"}, {"answer": "SELECT month, _year FROM table_name_73 WHERE sunk_by_aircraft < 106005 AND sunk_by_warship_or_raider = 61857", "question": "What is the month and year less than 106005 were sunk by aircraft and 61857 were sunk by warship or raider?", "context": "CREATE TABLE table_name_73 (month VARCHAR, _year VARCHAR, sunk_by_aircraft VARCHAR, sunk_by_warship_or_raider VARCHAR)"}, {"answer": "SELECT post_1896_provinces FROM table_name_52 WHERE hanja = \"\u5168\u7f85\u9053\"", "question": "What is the post-1986 provinces with a \u5168\u7f85\u9053 Hanja?", "context": "CREATE TABLE table_name_52 (post_1896_provinces VARCHAR, hanja VARCHAR)"}, {"answer": "SELECT korean_dialect FROM table_name_71 WHERE capital = \"daegu\"", "question": "What is the Korean dialect in the daegu capital?", "context": "CREATE TABLE table_name_71 (korean_dialect VARCHAR, capital VARCHAR)"}, {"answer": "SELECT korean_dialect FROM table_name_18 WHERE rr_romaja = \"jeolla\"", "question": "What is the Korean dialect with a jeolla RR Romaja?", "context": "CREATE TABLE table_name_18 (korean_dialect VARCHAR, rr_romaja VARCHAR)"}, {"answer": "SELECT hanja FROM table_name_4 WHERE rr_romaja = \"hamgyeong\"", "question": "What is the Hanja for the hamgyeong RR Romaja?", "context": "CREATE TABLE table_name_4 (hanja VARCHAR, rr_romaja VARCHAR)"}, {"answer": "SELECT AVG(example_code__huc_) FROM table_name_35 WHERE example_name = \"lower snake\" AND digits = 6 AND level < 3", "question": "What is the mean huc example code when the example name's lower snake, there are 6 digits, and less than 3 levels?", "context": "CREATE TABLE table_name_35 (example_code__huc_ INTEGER, level VARCHAR, example_name VARCHAR, digits VARCHAR)"}, {"answer": "SELECT COUNT(number_of_hus__approximate_) FROM table_name_66 WHERE digits > 2 AND level = 6", "question": "What's the approximate number of HUs when there are more than 2 digits, and 6 levels?", "context": "CREATE TABLE table_name_66 (number_of_hus__approximate_ VARCHAR, digits VARCHAR, level VARCHAR)"}, {"answer": "SELECT COUNT(example_code__huc_) FROM table_name_48 WHERE level = 1", "question": "How many HUC example codes have 1 level?", "context": "CREATE TABLE table_name_48 (example_code__huc_ VARCHAR, level VARCHAR)"}, {"answer": "SELECT AVG(level) FROM table_name_42 WHERE example_name = \"lower snake\" AND number_of_hus__approximate_ < 370", "question": "What is the mean level number when the example name is lower snake and the approximate number is hus is less than 370?", "context": "CREATE TABLE table_name_42 (level INTEGER, example_name VARCHAR, number_of_hus__approximate_ VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_43 WHERE against > 1255 AND wins = 0 AND draws < 0", "question": "What is the losses average when the against is greater than 1255 and wins is 0 and the draws less than 0?", "context": "CREATE TABLE table_name_43 (losses INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_14 WHERE wins = 5 AND against < 1852", "question": "What is the smallest losses when the wins are 5 and the against less than 1852?", "context": "CREATE TABLE table_name_14 (losses INTEGER, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_9 WHERE ballarat_fl = \"lake wendouree\" AND wins < 9", "question": "What is the fewest losses that Ballarat FL of Lake Wendouree has when the wins are smaller than 9?", "context": "CREATE TABLE table_name_9 (losses INTEGER, ballarat_fl VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(byes) FROM table_name_49 WHERE wins = 3", "question": "What is the smallest byes when the wins are 3?", "context": "CREATE TABLE table_name_49 (byes INTEGER, wins VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_39 WHERE away_team = \"wrexham\"", "question": "What is the highest Attendance when the away team was Wrexham?", "context": "CREATE TABLE table_name_39 (attendance INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_9 WHERE home_team = \"wycombe wanderers\"", "question": "What is the Away team when the home team was wycombe wanderers?", "context": "CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_62 WHERE home_team = \"slough town\"", "question": "What is the lowest Attendance when the home team was slough town?", "context": "CREATE TABLE table_name_62 (attendance INTEGER, home_team VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_22 WHERE away_team = \"macclesfield town\"", "question": "What is the sum of Attendance when macclesfield town was the way team?", "context": "CREATE TABLE table_name_22 (attendance INTEGER, away_team VARCHAR)"}, {"answer": "SELECT COUNT(spins__since_1998__source) AS :_mediabase FROM table_name_61 WHERE ccm_chart = \"chr\" AND peak_pos < 1", "question": "How many Spins sources have a CCM Chart of CHR with a peak position less than 1?", "context": "CREATE TABLE table_name_61 (spins__since_1998__source VARCHAR, ccm_chart VARCHAR, peak_pos VARCHAR)"}, {"answer": "SELECT ccm_chart FROM table_name_94 WHERE total_wks = 18", "question": "What CCM Chart had 18 total weeks?", "context": "CREATE TABLE table_name_94 (ccm_chart VARCHAR, total_wks VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE date = \"december 18, 1988\"", "question": "What is Opponent, when Date is December 18, 1988?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_2 WHERE opponent = \"pittsburgh steelers\"", "question": "What is Attendance, when Opponent is Pittsburgh Steelers?", "context": "CREATE TABLE table_name_2 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_80 WHERE result = \"l 37\u201334\"", "question": "What is the average Week, when Result is l 37\u201334?", "context": "CREATE TABLE table_name_80 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE centerfold_model = \"shannon long\"", "question": "When was Shannon Long the Centerfold model?", "context": "CREATE TABLE table_name_15 (date VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_name_20 WHERE date = \"5-88\"", "question": "Who was the Centerfold model on 5-88?", "context": "CREATE TABLE table_name_20 (centerfold_model VARCHAR, date VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_name_60 WHERE interview_subject = \"bruce willis\"", "question": "Who was the Centerfild model that used Bruce Willis as her Interview subject?", "context": "CREATE TABLE table_name_60 (centerfold_model VARCHAR, interview_subject VARCHAR)"}, {"answer": "SELECT series FROM table_name_16 WHERE launch_date = \"23 february 2013\"", "question": "What is Series, when Launch Date is 23 February 2013?", "context": "CREATE TABLE table_name_16 (series VARCHAR, launch_date VARCHAR)"}, {"answer": "SELECT series FROM table_name_15 WHERE days > 99 AND prize = \"\u20ac50,000\"", "question": "What is Series, when Days is greater than 99, and when Prize is \u20ac50,000?", "context": "CREATE TABLE table_name_15 (series VARCHAR, days VARCHAR, prize VARCHAR)"}, {"answer": "SELECT series FROM table_name_54 WHERE winner = \"jetmir salaj\"", "question": "What is Series, when Winner is Jetmir Salaj?", "context": "CREATE TABLE table_name_54 (series VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MAX(days) FROM table_name_16 WHERE launch_date = \"23 january 2010\"", "question": "What is Highest Days, when Launch Date is 23 January 2010?", "context": "CREATE TABLE table_name_16 (days INTEGER, launch_date VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_60 WHERE name = \"jeremiah massey\" AND games < 20", "question": "What is the lowest Rank, when Name is Jeremiah Massey, and when Games is less than 20?", "context": "CREATE TABLE table_name_60 (rank INTEGER, name VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_91 WHERE name = \"jeremiah massey\" AND points < 340", "question": "What is the lowest Games, when Name is Jeremiah Massey, and when Points is less than 340?", "context": "CREATE TABLE table_name_91 (games INTEGER, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_30 WHERE games > 20 AND team = \"partizan belgrade\"", "question": "What is the lowest Points, when Games is greater than 20, and when Team is Partizan Belgrade?", "context": "CREATE TABLE table_name_30 (points INTEGER, games VARCHAR, team VARCHAR)"}, {"answer": "SELECT games FROM table_name_89 WHERE points < 340 AND rank > 3", "question": "What is Games, when Points is less than 340, and when Rank is greater than 3?", "context": "CREATE TABLE table_name_89 (games VARCHAR, points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_45 WHERE name = \"will solomon\" AND games > 21", "question": "What is the sum of Rank, when Name is Will Solomon, and when Games is greater than 21?", "context": "CREATE TABLE table_name_45 (rank INTEGER, name VARCHAR, games VARCHAR)"}, {"answer": "SELECT first_leg FROM table_name_58 WHERE opposition = \"twente\"", "question": "What was the first leg score in the match against Twente?", "context": "CREATE TABLE table_name_58 (first_leg VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT first_leg FROM table_name_41 WHERE round = \"2nd\"", "question": "What was the first leg score in the 2nd round?", "context": "CREATE TABLE table_name_41 (first_leg VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(bills_points) FROM table_name_54 WHERE date = \"nov. 11\"", "question": "What were the Bills points on Nov. 11?", "context": "CREATE TABLE table_name_54 (bills_points INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(bills_first_downs) FROM table_name_47 WHERE date = \"oct. 29\" AND bills_points > 23", "question": "What was the Bills first downs on Oct. 29 with more the 23 Bills points?", "context": "CREATE TABLE table_name_47 (bills_first_downs INTEGER, date VARCHAR, bills_points VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_86 WHERE date = \"december 6\"", "question": "What was the Bill's attendance on December 6?", "context": "CREATE TABLE table_name_86 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE week < 12 AND opponent = \"houston oilers\"", "question": "On what date did the Bills play the Houston Oilers before week 12?", "context": "CREATE TABLE table_name_79 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_27 WHERE attendance = \"42,308\"", "question": "Which team won on the day when attendance was 42,308?", "context": "CREATE TABLE table_name_27 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT week FROM table_name_3 WHERE date = \"december 13\"", "question": "What week of the season was December 13?", "context": "CREATE TABLE table_name_3 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_75 WHERE position = 2 AND drawn > 3", "question": "What is the highest Points in Position 2 with more than 3 Drawn games?", "context": "CREATE TABLE table_name_75 (points INTEGER, position VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT difference FROM table_name_53 WHERE position = 5", "question": "What is the goal Difference at Position 5?", "context": "CREATE TABLE table_name_53 (difference VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_3 WHERE position > 3 AND against < 27 AND lost < 6", "question": "What is the average games Played with positions higher than 3 that have goals Against less than 27 and a Lost games smaller than 6?", "context": "CREATE TABLE table_name_3 (played INTEGER, lost VARCHAR, position VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_39 WHERE lost = 8", "question": "What is the highest Points with a Lost total of 8?", "context": "CREATE TABLE table_name_39 (points INTEGER, lost VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_78 WHERE lost > 20", "question": "Which average Points has a Lost higher than 20?", "context": "CREATE TABLE table_name_78 (points INTEGER, lost INTEGER)"}, {"answer": "SELECT SUM(cuts_made) FROM table_name_72 WHERE top_10 < 2", "question": "What are the Cuts made with a Top-10 smaller than 2?", "context": "CREATE TABLE table_name_72 (cuts_made INTEGER, top_10 INTEGER)"}, {"answer": "SELECT AVG(top_25) FROM table_name_63 WHERE top_10 = 8 AND events = 45", "question": "What is the Top-25 with a Top-10 of 8, and an Events of 45?", "context": "CREATE TABLE table_name_63 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR)"}, {"answer": "SELECT AVG(top_25) FROM table_name_45 WHERE events = 20 AND wins > 2", "question": "What is the Top-25 with an Events of 20, and a Wins larger than 2?", "context": "CREATE TABLE table_name_45 (top_25 INTEGER, events VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(top_10) FROM table_name_57 WHERE top_25 < 18 AND top_5 = 6 AND cuts_made < 20", "question": "Which Top-10 has a Top-25 smaller than 18, and a Top-5 of 6, and a Cuts made smaller than 20?", "context": "CREATE TABLE table_name_57 (top_10 INTEGER, cuts_made VARCHAR, top_25 VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_58 WHERE score < 68 AND country = \"england\"", "question": "What is Top Par, when Score is less than 68, and when Country is England?", "context": "CREATE TABLE table_name_58 (to_par VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(score) FROM table_name_18 WHERE player = \"vijay singh\"", "question": "What is Sum of Score, when Player is Vijay Singh?", "context": "CREATE TABLE table_name_18 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(score) FROM table_name_13 WHERE place = \"t2\" AND player = \"justin leonard\"", "question": "What is Sum of Score, when Place is T2, and when Player is Justin Leonard?", "context": "CREATE TABLE table_name_13 (score INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_32 WHERE score < 67 AND country = \"south africa\"", "question": "What is Place, when Score is less than 67, and when Country is South Africa?", "context": "CREATE TABLE table_name_32 (place VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT team FROM table_name_23 WHERE laps = 379", "question": "Can you tell me the Team that has the Laps of 379?", "context": "CREATE TABLE table_name_23 (team VARCHAR, laps VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_57 WHERE margin_of_victory = \"4 strokes\"", "question": "What is the Tournament with a Margin of victory that was 4 strokes?", "context": "CREATE TABLE table_name_57 (tournament VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT 1999 FROM table_name_18 WHERE 1998 = \"2r\"", "question": "What is 1999, when 1998 is 2R?", "context": "CREATE TABLE table_name_18 (Id VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_86 WHERE 1994 = \"grand slam tournaments\"", "question": "What is 1998, when 1994 is Grand Slam Tournaments?", "context": "CREATE TABLE table_name_86 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_1 WHERE 2000 = \"1r\" AND 1998 = \"3r\"", "question": "What is 2009, when 2000 is 1R, and when 1998 is 3R?", "context": "CREATE TABLE table_name_1 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_59 WHERE 2008 = \"1r\" AND tournament = \"french open\"", "question": "What is 2009, when 2008 is 1R, and when Tournament is French Open?", "context": "CREATE TABLE table_name_59 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_81 WHERE 2004 = \"2r\" AND 1993 = \"a\"", "question": "What is 2009, when 2004 is 2R, and when 1993 is A?", "context": "CREATE TABLE table_name_81 (Id VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_45 WHERE total > 12", "question": "What is the average amount of gold medals for a country with more than 12 total medals?", "context": "CREATE TABLE table_name_45 (gold INTEGER, total INTEGER)"}, {"answer": "SELECT visitor FROM table_name_7 WHERE home = \"nets\"", "question": "Who were the Visitor when the Nets were the Home team?", "context": "CREATE TABLE table_name_7 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_98 WHERE score = \"80\u2013112\"", "question": "What Leading scorer had a Score of 80\u2013112?", "context": "CREATE TABLE table_name_98 (leading_scorer VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_56 WHERE margin_of_victory = \"2 strokes\" AND date = \"sep 20, 1981\"", "question": "What is the name of the tournament played on Sep 20, 1981, ending with a margin of vicroty of 2 strokes?", "context": "CREATE TABLE table_name_56 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_97 WHERE date = \"jul 4, 1982\"", "question": "For the tournament played on Jul 4, 1982, what was the winning score?", "context": "CREATE TABLE table_name_97 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_60 WHERE tournament = \"andy williams-san diego open invitational\"", "question": "What was the winning score for the Andy Williams-San Diego Open Invitational tournament?", "context": "CREATE TABLE table_name_60 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_95 WHERE date = \"jun 3, 1973\"", "question": "Who was the runner(s)-up for the tournament played on Jun 3, 1973?", "context": "CREATE TABLE table_name_95 (runner_s__up VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_96 WHERE date = \"jul 14, 1973\"", "question": "What was the winning score for the tournament played on Jul 14, 1973?", "context": "CREATE TABLE table_name_96 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_64 WHERE runner_s__up = \"gil morgan\"", "question": "In which tournament was Gil Morgan the runner-up?", "context": "CREATE TABLE table_name_64 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_19 WHERE opponent = \"atlanta falcons\" AND week < 10", "question": "What was the highest attendance when the Atlanta Falcons played for a week smaller than 10?", "context": "CREATE TABLE table_name_19 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_42 WHERE theme = \"dolly parton\"", "question": "What is the Result when the Theme was by Dolly Parton?", "context": "CREATE TABLE table_name_42 (result VARCHAR, theme VARCHAR)"}, {"answer": "SELECT theme FROM table_name_85 WHERE original_artist = \"carole king\" AND week__number = \"hollywood\"", "question": "What is the Theme when the Original artist was carole king, and a Week # shows hollywood?", "context": "CREATE TABLE table_name_85 (theme VARCHAR, original_artist VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT song_choice FROM table_name_26 WHERE order__number = \"4\"", "question": "What is the Song choice when there is an Order # of 4?", "context": "CREATE TABLE table_name_26 (song_choice VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT proto_oceanic FROM table_name_86 WHERE animal = \"louse\"", "question": "What proto-oceanic has louse as the animal?", "context": "CREATE TABLE table_name_86 (proto_oceanic VARCHAR, animal VARCHAR)"}, {"answer": "SELECT SUM(delegates) FROM table_name_22 WHERE counties_carries = 4 AND state_delegate > 1 OFFSET 903", "question": "What is the total number of delegate that have 4 counties carries and more than 1,903 state delegates?", "context": "CREATE TABLE table_name_22 (delegates INTEGER, counties_carries VARCHAR, state_delegate VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_87 WHERE away_team = \"oxford united\"", "question": "What is the Home team with an Away team that is oxford united?", "context": "CREATE TABLE table_name_87 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_90 WHERE away_team = \"wrexham\"", "question": "What is the Home team with an Away team that is wrexham?", "context": "CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_24 WHERE silver = 7 AND bronze < 7", "question": "Which Gold has a Silver of 7, and a Bronze smaller than 7?", "context": "CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_69 WHERE silver = 15 AND gold < 20", "question": "Which Bronze has a Silver of 15, and a Gold smaller than 20?", "context": "CREATE TABLE table_name_69 (bronze INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_93 WHERE silver = 7 AND total > 25", "question": "Which Bronze has a Silver of 7, and a Total larger than 25?", "context": "CREATE TABLE table_name_93 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_92 WHERE bronze > 1 AND total > 80", "question": "Which Gold has a Bronze larger than 1, and a Total larger than 80?", "context": "CREATE TABLE table_name_92 (gold INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_93 WHERE silver > 8 AND bronze = 20 AND gold < 20", "question": "Which Total has a Silver larger than 8, and a Bronze of 20, and a Gold smaller than 20?", "context": "CREATE TABLE table_name_93 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT total FROM table_name_62 WHERE set_4 = \"na\" AND score = \"3-0\" AND set_2 = \"26-24\"", "question": "What is the total of NA for set 4, a score of 3-0 and a 26-24 for set 2?", "context": "CREATE TABLE table_name_62 (total VARCHAR, set_2 VARCHAR, set_4 VARCHAR, score VARCHAR)"}, {"answer": "SELECT total FROM table_name_16 WHERE score = \"3-0\" AND set_3 = \"25-18\" AND set_2 = \"25-12\"", "question": "What is the total of the 3-0 score with a set 2 of 25-12 and a set 3 of 25-18?", "context": "CREATE TABLE table_name_16 (total VARCHAR, set_2 VARCHAR, score VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_5 FROM table_name_25 WHERE set_2 = \"26-24\" AND set_1 = \"27-25\"", "question": "What is the set 5 of the match with a set 2 of 26-24 and a set 1 of 27-25?", "context": "CREATE TABLE table_name_25 (set_5 VARCHAR, set_2 VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_66 WHERE total = 76", "question": "Who has a total number of 76 silver medals?", "context": "CREATE TABLE table_name_66 (silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE home_team = \"ipswich town\" AND tie_no = \"replay\"", "question": "What score has ipswich town as the home team, and replay as the tie no.?", "context": "CREATE TABLE table_name_74 (score VARCHAR, home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE home_team = \"grays athletic\"", "question": "What score has grays athletic as the home team?", "context": "CREATE TABLE table_name_27 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE tie_no = \"6\"", "question": "What date has 6 as the tie no.?", "context": "CREATE TABLE table_name_73 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_8 WHERE winning_team = \"team brm\" AND race = 1 AND pole_position = \"leanne tander\" AND circuit = \"phillip island\"", "question": "What is Fastest Lap, when Winning Team is Team BRM, when Race is 1, when Pole Position is Leanne Tander, and when Circuit is Phillip Island?", "context": "CREATE TABLE table_name_8 (fastest_lap VARCHAR, circuit VARCHAR, pole_position VARCHAR, winning_team VARCHAR, race VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_68 WHERE round = \"5\" AND winning_driver = \"james winslow\"", "question": "What is Fastest Lap, when Round is 5, and when Winning Driver is James Winslow?", "context": "CREATE TABLE table_name_68 (fastest_lap VARCHAR, round VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE fastest_lap = \"james winslow\" AND race = 1 AND winning_driver = \"leanne tander\"", "question": "What is Date, when Fastest Lap is James Winslow, when Race is 1, and when Winning Driver is Leanne Tander?", "context": "CREATE TABLE table_name_81 (date VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR, race VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_71 WHERE circuit = \"adelaide street circuit\" AND winning_team = \"piccola scuderia corse\"", "question": "What is Pole Position, when Circuit is Adelaide Street Circuit, and when Winning Team is Piccola Scuderia Corse?", "context": "CREATE TABLE table_name_71 (pole_position VARCHAR, circuit VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT country FROM table_name_18 WHERE location = \"trestles\"", "question": "What country was the game played in when the location was trestles?", "context": "CREATE TABLE table_name_18 (country VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE location = \"bells beach\"", "question": "What date was the game played when it was located at bells beach?", "context": "CREATE TABLE table_name_8 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT country FROM table_name_73 WHERE date = \"april 11-april 21\"", "question": "What country was the game played when it was played from April 11-April 21?", "context": "CREATE TABLE table_name_73 (country VARCHAR, date VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_31 WHERE location = \"bells beach\"", "question": "Who was the Runner-up when the game was played at Bells Beach?", "context": "CREATE TABLE table_name_31 (runner_up VARCHAR, location VARCHAR)"}, {"answer": "SELECT accolade FROM table_name_44 WHERE publication = \"under the radar\"", "question": "Which Accolade had a publication of Under the Radar?", "context": "CREATE TABLE table_name_44 (accolade VARCHAR, publication VARCHAR)"}, {"answer": "SELECT year FROM table_name_99 WHERE publication = \"pazz & jop\"", "question": "Which year had a publication of Pazz & Jop?", "context": "CREATE TABLE table_name_99 (year VARCHAR, publication VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_name_57 WHERE democratic = \"nicholas von stein\"", "question": "How many districts featured the democrat nicholas von stein?", "context": "CREATE TABLE table_name_57 (district VARCHAR, democratic VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_21 WHERE democratic = \"mike carroll\"", "question": "Which incumbent's democratic candidate was mike carroll?", "context": "CREATE TABLE table_name_21 (incumbent VARCHAR, democratic VARCHAR)"}, {"answer": "SELECT democratic_ticket FROM table_name_68 WHERE liberal_ticket = \"edward r. dudley\"", "question": "Who ran under the Democratic ticket when Edward R. Dudley ran under the Liberal ticket?", "context": "CREATE TABLE table_name_68 (democratic_ticket VARCHAR, liberal_ticket VARCHAR)"}, {"answer": "SELECT democratic_ticket FROM table_name_99 WHERE socialist_labor_ticket = \"john emanuel\"", "question": "When John Emanuel ran under the Socialist Labor ticket who ran under the Democratic ticket?", "context": "CREATE TABLE table_name_99 (democratic_ticket VARCHAR, socialist_labor_ticket VARCHAR)"}, {"answer": "SELECT office FROM table_name_55 WHERE socialist_workers_ticket = \"sylvia weinstein\"", "question": "What was the office up for election when Sylvia Weinstein ran under the Socialist Workers ticket?", "context": "CREATE TABLE table_name_55 (office VARCHAR, socialist_workers_ticket VARCHAR)"}, {"answer": "SELECT socialist_labor_ticket FROM table_name_28 WHERE democratic_ticket = \"robert m. morgenthau\"", "question": "Who ran under the Socialist Labor ticket when Robert M. Morgenthau ran for the Democratic ticket?", "context": "CREATE TABLE table_name_28 (socialist_labor_ticket VARCHAR, democratic_ticket VARCHAR)"}, {"answer": "SELECT socialist_workers_ticket FROM table_name_99 WHERE republican_ticket = \"john p. lomenzo\"", "question": "When Republican ticket was John P. Lomenzo who ran for the Socialist Workers ticket?", "context": "CREATE TABLE table_name_99 (socialist_workers_ticket VARCHAR, republican_ticket VARCHAR)"}, {"answer": "SELECT SUM(area_km_2) FROM table_name_70 WHERE pop_density_people_km_2 > 91 AND member_state = \"italy\" AND population_in_millions < 58.8", "question": "What is the area km2 of the area with a pop density people/km2 larger than 91, is a member state of Italy, and had less than 58.8 population in millions?", "context": "CREATE TABLE table_name_70 (area_km_2 INTEGER, population_in_millions VARCHAR, pop_density_people_km_2 VARCHAR, member_state VARCHAR)"}, {"answer": "SELECT area__percentage_of_eu FROM table_name_39 WHERE population_in_millions = 16.4", "question": "What is the area % of EU with 16.4 population in millions?", "context": "CREATE TABLE table_name_39 (area__percentage_of_eu VARCHAR, population_in_millions VARCHAR)"}, {"answer": "SELECT COUNT(area_km_2) FROM table_name_8 WHERE population_in_millions > 4.2 AND member_state = \"czech republic\"", "question": "What is the total number of area km2 with a 4.2 population in millions and is a member state of the Czech Republic?", "context": "CREATE TABLE table_name_8 (area_km_2 VARCHAR, population_in_millions VARCHAR, member_state VARCHAR)"}, {"answer": "SELECT SUM(pop_density_people_km_2) FROM table_name_47 WHERE population__percentage_of_eu = \"0.1%\" AND area__percentage_of_eu = \"0.1%\" AND population_in_millions > 0.5", "question": "What is the sum of the pop density people/km2 with a population % of EU of 0.1%, an area % of EU of 0.1%, and has more than 0.5 population in millions?", "context": "CREATE TABLE table_name_47 (pop_density_people_km_2 INTEGER, population_in_millions VARCHAR, population__percentage_of_eu VARCHAR, area__percentage_of_eu VARCHAR)"}, {"answer": "SELECT MIN(area_km_2) FROM table_name_61 WHERE member_state = \"czech republic\" AND population_in_millions < 10.3", "question": "What is the lowest area km2 of the member state of the Czech Republic and has a population in millions lesss than 10.3?", "context": "CREATE TABLE table_name_61 (area_km_2 INTEGER, member_state VARCHAR, population_in_millions VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_name_22 WHERE spike < 340 AND name = \"gilberto godoy filho\" AND weight < 85", "question": "Weighing less than 85, with less than 340 Spikes, what is Gilberto Godoy Filho's Height", "context": "CREATE TABLE table_name_22 (height VARCHAR, weight VARCHAR, spike VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_1 WHERE opponent = \"boston patriots\" AND week > 14", "question": "What is the Attendance for Opponent Boston Patriots and Week is greater than 14?", "context": "CREATE TABLE table_name_1 (attendance VARCHAR, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT nominated_work FROM table_name_96 WHERE year = 1997", "question": "Which Nominated work has a Year of 1997?", "context": "CREATE TABLE table_name_96 (nominated_work VARCHAR, year VARCHAR)"}, {"answer": "SELECT award FROM table_name_40 WHERE category = \"music video acting award\"", "question": "Which Award has a Category of music video acting award?", "context": "CREATE TABLE table_name_40 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT canadian_championship FROM table_name_87 WHERE league = \"84 (4)\"", "question": "When the league is 84 (4) what is the Canadian Championship?", "context": "CREATE TABLE table_name_87 (canadian_championship VARCHAR, league VARCHAR)"}, {"answer": "SELECT canadian_championship FROM table_name_85 WHERE league = \"84 (4)\"", "question": "What Canadian Championship has 84 (4) as the league?", "context": "CREATE TABLE table_name_85 (canadian_championship VARCHAR, league VARCHAR)"}, {"answer": "SELECT canadian_championship FROM table_name_45 WHERE name = \"ashtone morgan category:articles with hcards\"", "question": "What Canadian Championship has Ashtone Morgan Category:Articles with hcards as the name?", "context": "CREATE TABLE table_name_45 (canadian_championship VARCHAR, name VARCHAR)"}, {"answer": "SELECT total FROM table_name_15 WHERE name = \"carl robinson category:articles with hcards\"", "question": "What is the total when the name is Carl Robinson Category:Articles with hcards?", "context": "CREATE TABLE table_name_15 (total VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_11 WHERE games < 38 AND rank < 4 AND points = 357", "question": "What is Name, when Games are less than 38, when Rank is less than 4, and when Points are 357?", "context": "CREATE TABLE table_name_11 (name VARCHAR, points VARCHAR, games VARCHAR, rank VARCHAR)"}, {"answer": "SELECT team FROM table_name_12 WHERE rank > 2 AND points > 259", "question": "What is Team, when Rank is greater than 2, and when Points are greater than 259?", "context": "CREATE TABLE table_name_12 (team VARCHAR, rank VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_75 WHERE team = \"ciudad de la laguna\" AND points > 357", "question": "What are the Highest Games, when Team is Ciudad De La Laguna, and when Points are greater than 357?", "context": "CREATE TABLE table_name_75 (games INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_81 WHERE name = \"ondrej starosta\"", "question": "What is Points, when Name is Ondrej Starosta?", "context": "CREATE TABLE table_name_81 (points VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_98 WHERE games > 34 AND name = \"andrew panko\"", "question": "What is the lowest value for Points, when Games is greater than 34, and when Name is Andrew Panko?", "context": "CREATE TABLE table_name_98 (points INTEGER, games VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_52 WHERE games = 21 AND rank > 2", "question": "What is the highest value for Points, when Games is 21, and when Rank is greater than 2?", "context": "CREATE TABLE table_name_52 (points INTEGER, games VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_31 WHERE date = \"2007-06-21\" AND mark < 91.29", "question": "What is the average rank of the record on 2007-06-21 with a mark less than 91.29?", "context": "CREATE TABLE table_name_31 (rank INTEGER, date VARCHAR, mark VARCHAR)"}, {"answer": "SELECT MIN(mark) FROM table_name_34 WHERE rank = 8", "question": "What is the lowest mark of the rank 8 record?", "context": "CREATE TABLE table_name_34 (mark INTEGER, rank VARCHAR)"}, {"answer": "SELECT place FROM table_name_38 WHERE mark > 90.73 AND date = \"1996-05-25\"", "question": "What is the place of the record on 1996-05-25 with a mark greater than 90.73?", "context": "CREATE TABLE table_name_38 (place VARCHAR, mark VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_16 WHERE mark > 91.29 AND rank = 6", "question": "What is the place of the rank 6 record, which has a mark greater than 91.29?", "context": "CREATE TABLE table_name_16 (place VARCHAR, mark VARCHAR, rank VARCHAR)"}, {"answer": "SELECT competition FROM table_name_55 WHERE venue = \"hampden park, glasgow\"", "question": "What competition has a venue in Hampden Park, Glasgow?", "context": "CREATE TABLE table_name_55 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE venue = \"hampden park, glasgow\"", "question": "What was the score in Hampden Park, Glasgow?", "context": "CREATE TABLE table_name_68 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_83 WHERE notes = \"2:28:31\"", "question": "Which Venue has a Notes of 2:28:31?", "context": "CREATE TABLE table_name_83 (venue VARCHAR, notes VARCHAR)"}, {"answer": "SELECT venue FROM table_name_98 WHERE competition = \"venice marathon\"", "question": "Which Venue has a Competition of venice marathon?", "context": "CREATE TABLE table_name_98 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_17 WHERE notes = \"dnf\"", "question": "Which Year that has Notes of dnf?", "context": "CREATE TABLE table_name_17 (year INTEGER, notes VARCHAR)"}, {"answer": "SELECT competition FROM table_name_45 WHERE year > 2000", "question": "Which Competition has a Year larger than 2000?", "context": "CREATE TABLE table_name_45 (competition VARCHAR, year INTEGER)"}, {"answer": "SELECT date FROM table_name_33 WHERE set_4 = \"25-19\"", "question": "What date has a set 4 of 25-19?", "context": "CREATE TABLE table_name_33 (date VARCHAR, set_4 VARCHAR)"}, {"answer": "SELECT total FROM table_name_80 WHERE set_2 = \"25-18\"", "question": "What is the total for the set 2 of 25-18?", "context": "CREATE TABLE table_name_80 (total VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT total FROM table_name_55 WHERE set_2 = \"25-19\"", "question": "What is the total for set 2 of 25-19?", "context": "CREATE TABLE table_name_55 (total VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_54 WHERE set_5 = \"na\" AND set_1 = \"21-25\" AND set_2 = \"25-16\"", "question": "What is set 3 when set 5 is na, set 1 is 21-25, and set 2 is 25-16?", "context": "CREATE TABLE table_name_54 (set_3 VARCHAR, set_2 VARCHAR, set_5 VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_90 WHERE date = \"jun 26\" AND set_2 = \"25-16\"", "question": "What is the set 1 for the date jun 26, and a set 2 of 25-16?", "context": "CREATE TABLE table_name_90 (set_1 VARCHAR, date VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT total FROM table_name_80 WHERE set_2 = \"17-25\"", "question": "What is the total for set 2 17-25?", "context": "CREATE TABLE table_name_80 (total VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_57 WHERE score = \"1-6, 3-6\"", "question": "What Opponent has a Score that is 1-6, 3-6?", "context": "CREATE TABLE table_name_57 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT writer FROM table_name_9 WHERE artist = \"mort drucker\" AND issue > 470 AND actual_title = \"law & order: svu\"", "question": "What writer has mort drucker as the artist, an issue greater than 470, and law & order: svu as an actual title?", "context": "CREATE TABLE table_name_9 (writer VARCHAR, actual_title VARCHAR, artist VARCHAR, issue VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE actual_title = \"ed\"", "question": "What date has ed as an actual title?", "context": "CREATE TABLE table_name_93 (date VARCHAR, actual_title VARCHAR)"}, {"answer": "SELECT issue FROM table_name_51 WHERE actual_title = \"7th heaven\"", "question": "What isssue has 7th heaven as an actual title?", "context": "CREATE TABLE table_name_51 (issue VARCHAR, actual_title VARCHAR)"}, {"answer": "SELECT issue FROM table_name_20 WHERE artist = \"mort drucker\" AND date = \"february 2001\"", "question": "What issue has mort drucker as the artist and february 2001 as the date?", "context": "CREATE TABLE table_name_20 (issue VARCHAR, artist VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_78 WHERE attendance < 39 OFFSET 434", "question": "In what Week was the Attendance 39,434?", "context": "CREATE TABLE table_name_78 (week VARCHAR, attendance INTEGER)"}, {"answer": "SELECT year FROM table_name_3 WHERE outcome = \"runner-up\" AND opponent = \"lleyton hewitt\"", "question": "What year was the match were xavier malisse was the runner-up against lleyton hewitt?", "context": "CREATE TABLE table_name_3 (year VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT year FROM table_name_39 WHERE outcome = \"runner-up\" AND opponent = \"filippo volandri\"", "question": "What year was the match against filippo volandri where xavier malisse was runner-up?", "context": "CREATE TABLE table_name_39 (year VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_57 WHERE difference = \"6\" AND played > 19", "question": "How many against have a difference of 6, with a played greater than 19?", "context": "CREATE TABLE table_name_57 (against INTEGER, difference VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_52 WHERE played > 19 AND position < 2", "question": "What is the lowest drawn that has a played greater than 19, with a position less than 2?", "context": "CREATE TABLE table_name_52 (drawn INTEGER, played VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_66 WHERE drawn < 7 AND points > 22 AND played = 19", "question": "What is the average against that has a drawn less than 7, points greater than 22, and 19 for the played?", "context": "CREATE TABLE table_name_66 (against INTEGER, played VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE tv_time = \"fox 12:00 pm cdt\"", "question": "When has a TV Time of fox 12:00 pm cdt?", "context": "CREATE TABLE table_name_75 (date VARCHAR, tv_time VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE week = 8", "question": "When has a Week of 8?", "context": "CREATE TABLE table_name_73 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_27 WHERE result = \"l 13-16\" AND opponent = \"at buffalo bills\"", "question": "Which Week has a Result of l 13-16 and an Opponent of at buffalo bills?", "context": "CREATE TABLE table_name_27 (week INTEGER, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_72 WHERE result = \"w 24\u201310\"", "question": "What kind of TV Time that has a Result of w 24\u201310?", "context": "CREATE TABLE table_name_72 (tv_time VARCHAR, result VARCHAR)"}, {"answer": "SELECT conf FROM table_name_78 WHERE head_coach = \"k. c. jones\"", "question": "What is the name of the conference that K. C. Jones was a head coach in?", "context": "CREATE TABLE table_name_78 (conf VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_50 WHERE date = \"march 5\"", "question": "Who had the highest assists of the game on March 5?", "context": "CREATE TABLE table_name_50 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(appearances) FROM table_name_85 WHERE goals = 4 AND nationality = \"new zealand\"", "question": "What is the least amount of appearances by new zealand when they scored 4 goals?", "context": "CREATE TABLE table_name_85 (appearances INTEGER, goals VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(appearances) FROM table_name_41 WHERE name = \"batram suri category:articles with hcards\" AND goals < 2", "question": "how many appearances did batram suri category:articles with hcards have scoring less than 2 goals?", "context": "CREATE TABLE table_name_41 (appearances VARCHAR, name VARCHAR, goals VARCHAR)"}, {"answer": "SELECT province FROM table_name_31 WHERE region = \"v valpara\u00edso\" AND area = 927.2", "question": "What province has a v valpara\u00edso region and an area of 927.2?", "context": "CREATE TABLE table_name_31 (province VARCHAR, region VARCHAR, area VARCHAR)"}, {"answer": "SELECT AVG(area) FROM table_name_34 WHERE capital = \"valpara\u00edso\"", "question": "What is the average area with valpara\u00edso as the capital?", "context": "CREATE TABLE table_name_34 (area INTEGER, capital VARCHAR)"}, {"answer": "SELECT white FROM table_name_96 WHERE amerindian = \"4,87%\"", "question": "WHich Category in White has a Amerindian of 4,87%?", "context": "CREATE TABLE table_name_96 (white VARCHAR, amerindian VARCHAR)"}, {"answer": "SELECT white FROM table_name_35 WHERE black = \"38,05%\"", "question": "WHich Category in White has a Black of 38,05%?", "context": "CREATE TABLE table_name_35 (white VARCHAR, black VARCHAR)"}, {"answer": "SELECT brown FROM table_name_84 WHERE frequency = \"0.08%\"", "question": "Which Category in Brown has a Frequency of 0.08%?", "context": "CREATE TABLE table_name_84 (brown VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT black FROM table_name_61 WHERE brown = \"6,54%\"", "question": "Which Category in Black has a Brown of 6,54%?", "context": "CREATE TABLE table_name_61 (black VARCHAR, brown VARCHAR)"}, {"answer": "SELECT capacity_in_use FROM table_name_31 WHERE annual_change = \"21.8%\"", "question": "What is the Capacity in use with an Annual change that is 21.8%?", "context": "CREATE TABLE table_name_31 (capacity_in_use VARCHAR, annual_change VARCHAR)"}, {"answer": "SELECT COUNT(tries_for) FROM table_name_81 WHERE points_for < 137 AND tries_against > 12", "question": "How many Tries has Points for smaller than 137, and Tries against larger than 12?", "context": "CREATE TABLE table_name_81 (tries_for VARCHAR, points_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT team FROM table_name_17 WHERE points_against = 43", "question": "WHich Team that has Points against of 43?", "context": "CREATE TABLE table_name_17 (team VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT MIN(tries_for) FROM table_name_48 WHERE team = \"pau\" AND points_against > 103", "question": "WHich Tries has a Team of pau and Points against larger than 103?", "context": "CREATE TABLE table_name_48 (tries_for INTEGER, team VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT AVG(points_against) FROM table_name_13 WHERE tries_for < 14 AND team = \"llanelli\"", "question": "How many Points against has Tries for smaller than 14, and a Team of llanelli?", "context": "CREATE TABLE table_name_13 (points_against INTEGER, tries_for VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(tries_against) FROM table_name_30 WHERE try_diff = \"\u201317\" AND points_for < 80", "question": "How many Tries against has a Try diff of \u201317 and Points for smaller than 80?", "context": "CREATE TABLE table_name_30 (tries_against VARCHAR, try_diff VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT player FROM table_name_7 WHERE position = \"forward\"", "question": "Which player was the forward?", "context": "CREATE TABLE table_name_7 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_11 WHERE position = \"center\"", "question": "Which years in Orlando are featured with the center position?", "context": "CREATE TABLE table_name_11 (years_in_orlando VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_15 WHERE years_in_orlando = \"2000\"", "question": "Which position was in Orlando in 2000?", "context": "CREATE TABLE table_name_15 (position VARCHAR, years_in_orlando VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE goals = 135", "question": "What is the Name with Goals that are 135?", "context": "CREATE TABLE table_name_61 (name VARCHAR, goals VARCHAR)"}, {"answer": "SELECT american_labor_ticket FROM table_name_51 WHERE democratic_ticket = \"robert f. wagner\"", "question": "Which American Labor candidate ran against Democratic candidate Robert F. Wagner?", "context": "CREATE TABLE table_name_51 (american_labor_ticket VARCHAR, democratic_ticket VARCHAR)"}, {"answer": "SELECT socialist_ticket FROM table_name_65 WHERE american_labor_ticket = \"caroline o'day\"", "question": "Which Socialist candidate ran against American Labor candidate Caroline O'Day?", "context": "CREATE TABLE table_name_65 (socialist_ticket VARCHAR, american_labor_ticket VARCHAR)"}, {"answer": "SELECT democratic_ticket FROM table_name_71 WHERE socialist_ticket = \"edna mitchell blue\"", "question": "Which Democrtic candidate ran against the Socialist candidate Edna Mitchell Blue?", "context": "CREATE TABLE table_name_71 (democratic_ticket VARCHAR, socialist_ticket VARCHAR)"}, {"answer": "SELECT american_labor_ticket FROM table_name_55 WHERE socialist_ticket = \"herman j. hahn\"", "question": "Which American Labor candidate is running against the Socialist candidate Herman J. Hahn?", "context": "CREATE TABLE table_name_55 (american_labor_ticket VARCHAR, socialist_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_5 WHERE american_labor_ticket = \"matthew j. merritt\"", "question": "Which Republican ran against the American Labor candidate Matthew J. Merritt?", "context": "CREATE TABLE table_name_5 (republican_ticket VARCHAR, american_labor_ticket VARCHAR)"}, {"answer": "SELECT american_labor_ticket FROM table_name_91 WHERE republican_ticket = \"thomas e. dewey\"", "question": "Which American Labor candidate ran against Republican Thomas E. Dewey?", "context": "CREATE TABLE table_name_91 (american_labor_ticket VARCHAR, republican_ticket VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_48 WHERE outcome = \"runner-up\" AND date > 1983", "question": "Who is the Opponent in the final after 1983 with an Outcome of runner-up?", "context": "CREATE TABLE table_name_48 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_31 WHERE score_in_the_final = \"7\u20135, 6\u20132\"", "question": "What Opponent in the final had a match with a Score in the final of 7\u20135, 6\u20132?", "context": "CREATE TABLE table_name_31 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT championship FROM table_name_3 WHERE surface = \"clay\" AND opponent_in_the_final = \"vitas gerulaitis\"", "question": "What is the Championship with Vitas Gerulaitis as Opponent in the final in a match on Clay Surface?", "context": "CREATE TABLE table_name_3 (championship VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT MIN(percentage_of_marine_area__foreez_) FROM table_name_50 WHERE ecozone = \"pacific marine\" AND percentage_of_total_area__foreez_ > 3.1", "question": "What is the smallest percentage of marine area for Pacific Marine ecozone and percentage of total area greater than 3.1?", "context": "CREATE TABLE table_name_50 (percentage_of_marine_area__foreez_ INTEGER, ecozone VARCHAR, percentage_of_total_area__foreez_ VARCHAR)"}, {"answer": "SELECT COUNT(percentage_of_marine_area__foreez_) FROM table_name_78 WHERE ecozone = \"atlantic marine\" AND area__km\u00b2__exclusive_economic_zone < 996 OFFSET 439", "question": "How many values for percentage of marine area are for the Atlantic marine ecozone with an exclusive economic zone area less than 996,439?", "context": "CREATE TABLE table_name_78 (percentage_of_marine_area__foreez_ VARCHAR, ecozone VARCHAR, area__km\u00b2__exclusive_economic_zone VARCHAR)"}, {"answer": "SELECT team FROM table_name_29 WHERE high_assists = \"alvin williams (6)\"", "question": "What is the team when alvin williams (6) has the high assists?", "context": "CREATE TABLE table_name_29 (team VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT record FROM table_name_19 WHERE game < 3 AND score = \"l 91\u201396 (ot)\"", "question": "What is the Record for a game less than 3 and the score was l 91\u201396 (ot)?", "context": "CREATE TABLE table_name_19 (record VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE high_points = \"dell curry (17)\"", "question": "What is the Date when the high points went to Dell Curry (17)?", "context": "CREATE TABLE table_name_84 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT team FROM table_name_53 WHERE high_rebounds = \"antonio davis (8)\"", "question": "What is the Team when antonio davis (8) had the high rebounds?", "context": "CREATE TABLE table_name_53 (team VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_56 WHERE date = \"apr 16, 1967\"", "question": "What is the Tournament with a Date that is apr 16, 1967?", "context": "CREATE TABLE table_name_56 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE runner_s__up = \"jerry steelsmith\"", "question": "What is the Date with a Runner(s)-up that is jerry steelsmith?", "context": "CREATE TABLE table_name_69 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT obama FROM table_name_28 WHERE source = \"rasmussen reports\"", "question": "What kind of Obama that has a Source of rasmussen reports?", "context": "CREATE TABLE table_name_28 (obama VARCHAR, source VARCHAR)"}, {"answer": "SELECT source FROM table_name_46 WHERE undecided = \"2%\"", "question": "Which Source has a Undecided of 2%?", "context": "CREATE TABLE table_name_46 (source VARCHAR, undecided VARCHAR)"}, {"answer": "SELECT obama FROM table_name_87 WHERE undecided = \"1%\"", "question": "What kind of Obama has a Undecided of 1%?", "context": "CREATE TABLE table_name_87 (obama VARCHAR, undecided VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE source = \"surveyusa\" AND obama = \"54%\"", "question": "When has a Source of surveyusa and a Obama of 54%?", "context": "CREATE TABLE table_name_8 (date VARCHAR, source VARCHAR, obama VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE source = \"rasmussen reports\"", "question": "When has a Source of rasmussen reports?", "context": "CREATE TABLE table_name_39 (date VARCHAR, source VARCHAR)"}, {"answer": "SELECT source FROM table_name_94 WHERE clinton = \"39%\" AND undecided = \"7%\"", "question": "Which Source has a Clinton of 39% and a Undecided of 7%?", "context": "CREATE TABLE table_name_94 (source VARCHAR, clinton VARCHAR, undecided VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_18 WHERE block > 342", "question": "What is the Date of Birth with a Block that is larger than 342?", "context": "CREATE TABLE table_name_18 (date_of_birth VARCHAR, block INTEGER)"}, {"answer": "SELECT COUNT(position) FROM table_name_21 WHERE 2012 = \"0.92\"", "question": "What is the number of positions that have 2012 ratings of 0.92?", "context": "CREATE TABLE table_name_21 (position VARCHAR)"}, {"answer": "SELECT owner FROM table_name_96 WHERE 2012 = \"5.42\"", "question": "What is the owner of the channel that has a 2012 rating of 5.42?", "context": "CREATE TABLE table_name_96 (owner VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_28 WHERE position = 6", "question": "What is the 2007 rating of the channel with a position of 6?", "context": "CREATE TABLE table_name_28 (position VARCHAR)"}, {"answer": "SELECT channel FROM table_name_64 WHERE 2011 = \"8.5\"", "question": "What is the channel with a 2011 rating of 8.5?", "context": "CREATE TABLE table_name_64 (channel VARCHAR)"}, {"answer": "SELECT astc_member FROM table_name_39 WHERE state = \"arkansas\" AND aam_member = \"no\" AND aam_accredited = \"yes\"", "question": "What is ASTC Member, when State is Arkansas, when AAM Member is No, and when AAM Accredited is Yes?", "context": "CREATE TABLE table_name_39 (astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR)"}, {"answer": "SELECT city FROM table_name_61 WHERE state = \"florida\" AND aam_member = \"no\" AND aam_accredited = \"no\"", "question": "What is City, when State is Florida, when AAM Member is No, and when AAM Accredited is No?", "context": "CREATE TABLE table_name_61 (city VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR)"}, {"answer": "SELECT city FROM table_name_62 WHERE astc_member = \"no\" AND state = \"california\" AND aam_member = \"yes\"", "question": "What is City, when ASTC Member is No, when State is California, and when AAM Member is Yes?", "context": "CREATE TABLE table_name_62 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR)"}, {"answer": "SELECT state FROM table_name_49 WHERE aam_accredited = \"no\" AND astc_member = \"no\" AND city = \"tulsa\"", "question": "What is State, when AAM Accredited is No, when ASTC Member is No, and when City is Tulsa?", "context": "CREATE TABLE table_name_49 (state VARCHAR, city VARCHAR, aam_accredited VARCHAR, astc_member VARCHAR)"}, {"answer": "SELECT city FROM table_name_30 WHERE state = \"california\" AND aam_accredited = \"no\" AND astc_member = \"yes\" AND aam_member = \"no\"", "question": "What is City, when State is California, when AAM Accredited is No, when ASTC Member is Yes, and when AAM Member is No?", "context": "CREATE TABLE table_name_30 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR, aam_accredited VARCHAR)"}, {"answer": "SELECT aam_member FROM table_name_21 WHERE aam_accredited = \"no\" AND state = \"california\" AND astc_member = \"yes\" AND city = \"sacramento\"", "question": "What is AAM Member, when AAM Accredited is No, when State is California, when ASTC Member is Yes, and when City is Sacramento?", "context": "CREATE TABLE table_name_21 (aam_member VARCHAR, city VARCHAR, astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_17 WHERE individual = \"tiger woods\"", "question": "Who were the runners-up when the individual winner was Tiger Woods?", "context": "CREATE TABLE table_name_17 (runners_up VARCHAR, individual VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_75 WHERE country = \"united states\" AND individual = \"tiger woods\"", "question": "How many years was the individual winner from the United States was Tiger Woods?", "context": "CREATE TABLE table_name_75 (year VARCHAR, country VARCHAR, individual VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_71 WHERE location = \"cape town, south africa\"", "question": "What is the earliest year that the tournament was played in Cape Town, South Africa?", "context": "CREATE TABLE table_name_71 (year INTEGER, location VARCHAR)"}, {"answer": "SELECT driver FROM table_name_98 WHERE date = \"october 6\"", "question": "Who is the Driver, when the Date is October 6?", "context": "CREATE TABLE table_name_98 (driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_85 WHERE engine = \"cosworth\" AND team = \"kraco racing\"", "question": "What is the total number of Seasons, when the Engine is Cosworth, and when the Team is Kraco Racing?", "context": "CREATE TABLE table_name_85 (season VARCHAR, engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT driver FROM table_name_90 WHERE engine = \"chevrolet\" AND date = \"october 3\"", "question": "Who is the Driver, when the Engine is Chevrolet, and when the Date is October 3?", "context": "CREATE TABLE table_name_90 (driver VARCHAR, engine VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(season) FROM table_name_10 WHERE team = \"penske racing\" AND date = \"october 3\"", "question": "What is the sum of Seasons, when the Team is Penske Racing, and when the Date is October 3?", "context": "CREATE TABLE table_name_10 (season INTEGER, team VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(year_to_open) FROM table_name_51 WHERE name = \"dandeung bridge\"", "question": "What was the Year to Open for the Dandeung Bridge?", "context": "CREATE TABLE table_name_51 (year_to_open VARCHAR, name VARCHAR)"}, {"answer": "SELECT main_span_feet FROM table_name_64 WHERE name = \"qincaobei bridge\"", "question": "What is the Main span of the Qincaobei Bridge", "context": "CREATE TABLE table_name_64 (main_span_feet VARCHAR, name VARCHAR)"}, {"answer": "SELECT main_span_metres FROM table_name_23 WHERE year_to_open = 2013 AND country = \"china\" AND main_span_feet = \"2,585\"", "question": "What is the Main span of the bridge from China with a Year to open of 2013 and Main span feet of 2,585?", "context": "CREATE TABLE table_name_23 (main_span_metres VARCHAR, main_span_feet VARCHAR, year_to_open VARCHAR, country VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_25 WHERE democratic_ticket = \"stanley h. fuld\"", "question": "Which republican ticket has stanley h. fuld as the Democratic ticket?", "context": "CREATE TABLE table_name_25 (republican_ticket VARCHAR, democratic_ticket VARCHAR)"}, {"answer": "SELECT liberal_ticket FROM table_name_73 WHERE socialist_workers_ticket = \"judith white\"", "question": "What is the liberal ticket that has judith white as the socialist workers?", "context": "CREATE TABLE table_name_73 (liberal_ticket VARCHAR, socialist_workers_ticket VARCHAR)"}, {"answer": "SELECT socialist_workers_ticket FROM table_name_71 WHERE republican_ticket = \"malcolm wilson\"", "question": "What socialist workers ticket has malcolm wilson as the Republican ticket?", "context": "CREATE TABLE table_name_71 (socialist_workers_ticket VARCHAR, republican_ticket VARCHAR)"}, {"answer": "SELECT office FROM table_name_28 WHERE conservative_ticket = \"kieran o'doherty\"", "question": "Which office has kieran o'doherty as the conservative ticket?", "context": "CREATE TABLE table_name_28 (office VARCHAR, conservative_ticket VARCHAR)"}, {"answer": "SELECT office FROM table_name_8 WHERE socialist_labor_ticket = \"(none)\" AND liberal_ticket = \"stanley h. fuld\"", "question": "What office has (none) as the socialist labor ticket, and stanley h. fuld as the liberal ticket?", "context": "CREATE TABLE table_name_8 (office VARCHAR, socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_38 WHERE call_sign = \"w291ch\"", "question": "If the call sign is w291ch what's the ERP W corresponding to that sign?", "context": "CREATE TABLE table_name_38 (erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_78 WHERE call_sign = \"w242at\"", "question": "For the call sign w242at what's the city the license plate is registered to?", "context": "CREATE TABLE table_name_78 (city_of_license VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT class FROM table_name_16 WHERE city_of_license = \"great barrington, massachusetts\"", "question": "What's the Class for the city the license plate was issued in great barrington, massachusetts?", "context": "CREATE TABLE table_name_16 (class VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_81 WHERE bronze = 1 AND rank < 6 AND total < 3", "question": "How many gold have a bronze of 1, a rank smaller than 6, and a total less than 3?", "context": "CREATE TABLE table_name_81 (gold INTEGER, total VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_79 WHERE gold > 1 AND nation = \"france\" AND rank < 1", "question": "How many France bronze have a gold of more than 1 and a rank of 0?", "context": "CREATE TABLE table_name_79 (bronze INTEGER, rank VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_12 WHERE silver = 1 AND bronze < 1", "question": "How many gold have a silver of 1 and a bronze of 0?", "context": "CREATE TABLE table_name_12 (gold INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT aircraft FROM table_name_3 WHERE location = \"kabul\" AND fatalities = \"unknown\" AND tail_number = \"ya-ban\"", "question": "What is the Aircraft when Kabul was the location, unknown fatalities, and the tail number was ya-ban?", "context": "CREATE TABLE table_name_3 (aircraft VARCHAR, tail_number VARCHAR, location VARCHAR, fatalities VARCHAR)"}, {"answer": "SELECT fatalities FROM table_name_53 WHERE tail_number = \"unknown\" AND location = \"kabul\"", "question": "What is the Fatalities when the tail number was unknown and in Kabul>", "context": "CREATE TABLE table_name_53 (fatalities VARCHAR, tail_number VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_50 WHERE aircraft = \"an-12b\"", "question": "What is the location for the an-12b aircraft?", "context": "CREATE TABLE table_name_50 (location VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT location FROM table_name_15 WHERE fatalities = \"25/25\"", "question": "What location had 25/25 fatalities?", "context": "CREATE TABLE table_name_15 (location VARCHAR, fatalities VARCHAR)"}, {"answer": "SELECT tail_number FROM table_name_82 WHERE aircraft = \"an-26\" AND fatalities = \"25/25\"", "question": "What tail number was on the an-26, with 25/25 fatalities?", "context": "CREATE TABLE table_name_82 (tail_number VARCHAR, aircraft VARCHAR, fatalities VARCHAR)"}, {"answer": "SELECT aircraft FROM table_name_75 WHERE tail_number = \"ya-bao\"", "question": "What type of aircraft was the plane with a tail number of ya-bao?", "context": "CREATE TABLE table_name_75 (aircraft VARCHAR, tail_number VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_38 WHERE match > 18", "question": "What is the total number of Points from a Match that is larger than 18?", "context": "CREATE TABLE table_name_38 (points VARCHAR, match INTEGER)"}, {"answer": "SELECT SUM(season) FROM table_name_74 WHERE series = \"formula renault 3.5 series\" AND races < 7", "question": "In what Season was the Series Formula Renault 3.5 series with less than 7 Races?", "context": "CREATE TABLE table_name_74 (season INTEGER, series VARCHAR, races VARCHAR)"}, {"answer": "SELECT series FROM table_name_67 WHERE season = 2009", "question": "What was the Series in 2009?", "context": "CREATE TABLE table_name_67 (series VARCHAR, season VARCHAR)"}, {"answer": "SELECT wins FROM table_name_7 WHERE races > 16", "question": "How many Wins in the Year with more than 16 Races?", "context": "CREATE TABLE table_name_7 (wins VARCHAR, races INTEGER)"}, {"answer": "SELECT AVG(season) FROM table_name_51 WHERE races < 3 AND wins < 1", "question": "In what Season were then less than 3 Races with less than 1 Win?", "context": "CREATE TABLE table_name_51 (season INTEGER, races VARCHAR, wins VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_33 WHERE team__number1 = \"ummc ekaterinburg\"", "question": "Which 1st leg has a Team #1 of ummc ekaterinburg?", "context": "CREATE TABLE table_name_33 (team__number1 VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_name_70 WHERE team__number1 = \"gambrinus sika brno\"", "question": "Which Team #2 has a Team #1 of gambrinus sika brno?", "context": "CREATE TABLE table_name_70 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT AVG(goal) FROM table_name_80 WHERE result = \"2\u20132\" AND venue = \"r\u00e5sunda, stockholm\"", "question": "What is the Goal number in R\u00e5sunda, Stockholm with a Result of 2\u20132?", "context": "CREATE TABLE table_name_80 (goal INTEGER, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_21 WHERE goal = 3", "question": "What is the Result of Goal number 3?", "context": "CREATE TABLE table_name_21 (result VARCHAR, goal VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE score = \"4-3\" AND site_stadium = \"reese smith field\"", "question": "On what day was a game played at Reese Smith Field, with a score of 4-3?", "context": "CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR, site_stadium VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE site_stadium = \"alex box stadium\" AND date = \"may 10\"", "question": "What was the score for the game played on May 10 at Alex Box Stadium?", "context": "CREATE TABLE table_name_65 (score VARCHAR, site_stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE site_stadium = \"sarge frye field\"", "question": "What was the score for the game played at Sarge Frye Field?", "context": "CREATE TABLE table_name_15 (score VARCHAR, site_stadium VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE record = \"5-7\"", "question": "On what date was a game played, which left the team with a record of 5-7?", "context": "CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE site_stadium = \"harmon stadium\" AND date = \"february 24\"", "question": "What was the score of the game played at Harmon Stadium on February 24?", "context": "CREATE TABLE table_name_38 (score VARCHAR, site_stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT site_stadium FROM table_name_21 WHERE date = \"may 9\"", "question": "Where was the game on May 9 played?", "context": "CREATE TABLE table_name_21 (site_stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_78 WHERE points < 21 AND played > 14", "question": "What is the greatest position when the points are less than 21, and the played greater than 14?", "context": "CREATE TABLE table_name_78 (position INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_69 WHERE difference = \"9\" AND drawn < 3", "question": "What is the fewest lost with a difference of 9 and a less than 3 drawn?", "context": "CREATE TABLE table_name_69 (lost INTEGER, difference VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_78 WHERE team = \"estudantes paulista\" AND position < 4", "question": "Team Estudantes Paulista with a position less than 4 has what average against?", "context": "CREATE TABLE table_name_78 (against INTEGER, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_28 WHERE date = \"apr 8, 1979\"", "question": "What was the margin of victory on Apr 8, 1979?", "context": "CREATE TABLE table_name_28 (margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_69 WHERE margin_of_victory = \"2 strokes\" AND runner_s__up = \"pat bradley\"", "question": "What was the winning score when the margin of victory was 2 strokes and the runner-up was Pat Bradley?", "context": "CREATE TABLE table_name_69 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_21 WHERE winning_score = \u22125(69 - 69 - 73 = 211)", "question": "What was the margin of victory when the winning score was \u22125 (69-69-73=211)?", "context": "CREATE TABLE table_name_21 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_37 WHERE winning_score = \u22125(69 - 69 - 73 = 211)", "question": "Which tournament had a winning score of \u22125 (69-69-73=211)?", "context": "CREATE TABLE table_name_37 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE winning_score = \u22126(69 - 69 - 73 - 71 = 282)", "question": "When was the winning score \u22126 (69-69-73-71=282)?", "context": "CREATE TABLE table_name_7 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_66 WHERE date = \"november 20, 1995\"", "question": "Who is the opponent of the game played on November 20, 1995?", "context": "CREATE TABLE table_name_66 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_67 WHERE name = \"jamie whincup\"", "question": "What is the highest Grid with a Name that is jamie whincup?", "context": "CREATE TABLE table_name_67 (grid INTEGER, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_48 WHERE laps = 5", "question": "What is the Team with a Lap that is 5?", "context": "CREATE TABLE table_name_48 (team VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_62 WHERE name = \"justin forsett\" AND pick > 233", "question": "What's the lowest round Justin Forsett was drafted in, with a draft pick larger than 233?", "context": "CREATE TABLE table_name_62 (round INTEGER, name VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_90 WHERE position = \"rb\"", "question": "What's the average round the position of RB was drafted?", "context": "CREATE TABLE table_name_90 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_29 WHERE name = \"red bryant\" AND pick > 121", "question": "What's the average round Red Bryant was drafted with a pick larger than 121?", "context": "CREATE TABLE table_name_29 (round INTEGER, name VARCHAR, pick VARCHAR)"}, {"answer": "SELECT overall_record FROM table_name_46 WHERE away_team = \"miami\"", "question": "Can you tell me the Overall Record that has the Away Team of miami?", "context": "CREATE TABLE table_name_46 (overall_record VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT overall_record FROM table_name_81 WHERE week = 3", "question": "Can you tell me the Overall Record that has the Week of 3?", "context": "CREATE TABLE table_name_81 (overall_record VARCHAR, week VARCHAR)"}, {"answer": "SELECT divisional_record FROM table_name_58 WHERE away_team = \"dallas\"", "question": "Can you tell me the Divisional Record that has the Away Team of dallas?", "context": "CREATE TABLE table_name_58 (divisional_record VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT overall_record FROM table_name_42 WHERE week < 16 AND divisional_record = \"(1-0)\" AND away_team = \"miami\"", "question": "Can you tell me the Overall Record that has the Week smaller than 16, and the Divisional Record of (1-0), and the Away Team of miami?", "context": "CREATE TABLE table_name_42 (overall_record VARCHAR, away_team VARCHAR, week VARCHAR, divisional_record VARCHAR)"}, {"answer": "SELECT week FROM table_name_40 WHERE home_team = \"detroit\" AND divisional_record = \"(3-0)\" AND overall_record = \"(5-1)\" AND away_team = \"minnesota\"", "question": "Can you tell me the Week that has the Home Team of detroit, and the Divisional Record of (3-0), and the Overall Record of (5-1), and the Away Team of minnesota?", "context": "CREATE TABLE table_name_40 (week VARCHAR, away_team VARCHAR, overall_record VARCHAR, home_team VARCHAR, divisional_record VARCHAR)"}, {"answer": "SELECT choreographer_s_ FROM table_name_10 WHERE style = \"pas de deux\"", "question": "Who is the choreographer with the style pas de deux?", "context": "CREATE TABLE table_name_10 (choreographer_s_ VARCHAR, style VARCHAR)"}, {"answer": "SELECT title FROM table_name_63 WHERE start_of_reign = 1999", "question": "What is the title of the person who started their reign in 1999?", "context": "CREATE TABLE table_name_63 (title VARCHAR, start_of_reign VARCHAR)"}, {"answer": "SELECT Birth AS name FROM table_name_61 WHERE start_of_reign = 1986", "question": "What is the date of birth of the person who started their reign in 1986?", "context": "CREATE TABLE table_name_61 (Birth VARCHAR, start_of_reign VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_23 WHERE goals < 73", "question": "What is the average number for goals less than 73?", "context": "CREATE TABLE table_name_23 (average VARCHAR, goals INTEGER)"}, {"answer": "SELECT COUNT(average) FROM table_name_40 WHERE career = \"1990-1995\" AND goals < 90", "question": "What is the total average for 1990-1995, and goals less than 90?", "context": "CREATE TABLE table_name_40 (average VARCHAR, career VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_43 WHERE lost < 3 AND difference = \"1\" AND played > 7", "question": "What was the lowest Position for a Team with fewer than 3 Lost, a Difference of 1, and more than 7 games Played?", "context": "CREATE TABLE table_name_43 (position INTEGER, played VARCHAR, lost VARCHAR, difference VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_12 WHERE team = \"vasco da gama\" AND against < 12", "question": "What is the sum of games Played by the Team Vasco Da Gama, with fewer than 12 Against?", "context": "CREATE TABLE table_name_12 (played INTEGER, team VARCHAR, against VARCHAR)"}, {"answer": "SELECT difference FROM table_name_8 WHERE position < 2", "question": "What was the Difference of the Team that had a Position less than 2?", "context": "CREATE TABLE table_name_8 (difference VARCHAR, position INTEGER)"}, {"answer": "SELECT attendance FROM table_name_54 WHERE date = \"november 21, 2004\"", "question": "Which attendance number was taken on november 21, 2004?", "context": "CREATE TABLE table_name_54 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_39 WHERE week < 16 AND opponent = \"washington redskins\"", "question": "Which attendance number was taken in a week less than 16 when the Washington Redskins were the opponents?", "context": "CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_74 WHERE opponent = \"green bay packers\"", "question": "How many weeks had the Green Bay packers as opponents?", "context": "CREATE TABLE table_name_74 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT country FROM table_name_76 WHERE score = 71 - 67 = 138", "question": "What Country had a Score of 71-67=138?", "context": "CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_91 WHERE score = 75 - 68 = 143", "question": "What Country had a Score of 75-68=143?", "context": "CREATE TABLE table_name_91 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(innings) FROM table_name_35 WHERE average < 6.33 AND sr < 71.43 AND balls_faced > 36 AND runs_scored < 19", "question": "How many total innings have an average under 6.33, strike rate under 71.43, balls faced over 36, and smaller than 19 runs scored?", "context": "CREATE TABLE table_name_35 (innings INTEGER, runs_scored VARCHAR, balls_faced VARCHAR, average VARCHAR, sr VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_34 WHERE balls_faced > 297 AND innings > 7", "question": "What is the number of averages having a balls faced over 297 and more than 7 innings?", "context": "CREATE TABLE table_name_34 (average VARCHAR, balls_faced VARCHAR, innings VARCHAR)"}, {"answer": "SELECT MIN(innings) FROM table_name_89 WHERE sr = 72.05 AND balls_faced < 297", "question": "What is the smallest number of innings with a strike rate of 72.05 and under 297 balls faced?", "context": "CREATE TABLE table_name_89 (innings INTEGER, sr VARCHAR, balls_faced VARCHAR)"}, {"answer": "SELECT SUM(balls_faced) FROM table_name_99 WHERE sr > 48.28 AND innings = 3 AND average < 5", "question": "What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5?", "context": "CREATE TABLE table_name_99 (balls_faced INTEGER, average VARCHAR, sr VARCHAR, innings VARCHAR)"}, {"answer": "SELECT nation FROM table_name_51 WHERE date = \"may 6, 1991\"", "question": "What is the Nation with a Date that is may 6, 1991?", "context": "CREATE TABLE table_name_51 (nation VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_73 WHERE date = \"may 20, 1961\"", "question": "What is the Record with a Date that is may 20, 1961?", "context": "CREATE TABLE table_name_73 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT partner FROM table_name_46 WHERE outcome = \"winner\"", "question": "Who was the partner of the winner?", "context": "CREATE TABLE table_name_46 (partner VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT COUNT(place__posici\u00f3n_) FROM table_name_53 WHERE draw__pe_ > 2 AND team__equipo_ = \"para\u00edso\" AND won__pg_ > 6", "question": "How many Places (Posici\u00f3n) has a Draw (PE) larger than 2 and a Team (Equipo) of para\u00edso and a Won (PG) larger than 6?", "context": "CREATE TABLE table_name_53 (place__posici\u00f3n_ VARCHAR, won__pg_ VARCHAR, draw__pe_ VARCHAR, team__equipo_ VARCHAR)"}, {"answer": "SELECT COUNT(league) AS Cup FROM table_name_88 WHERE club = \"yeovil town\" AND league < 16", "question": "How many league cups have yeovil town as the club, with a league less than 16?", "context": "CREATE TABLE table_name_88 (league VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(fa_cup) FROM table_name_15 WHERE player = \"gary jones\" AND fa_trophy > 5", "question": "What is the average FA Cup that has gary jones as the player, and an FA trophy greater than 5?", "context": "CREATE TABLE table_name_15 (fa_cup INTEGER, player VARCHAR, fa_trophy VARCHAR)"}, {"answer": "SELECT SUM(fa_trophy) FROM table_name_98 WHERE player = \"tony hemmings\" AND league > 15", "question": "What FA trophys have tony hemmings as the player, with a league greater than 15?", "context": "CREATE TABLE table_name_98 (fa_trophy INTEGER, player VARCHAR, league VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE country = \"japan\"", "question": "What is the score where the country is Japan?", "context": "CREATE TABLE table_name_95 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT province FROM table_name_82 WHERE capital = \"muju\"", "question": "Which province has muju as the capital?", "context": "CREATE TABLE table_name_82 (province VARCHAR, capital VARCHAR)"}, {"answer": "SELECT modern_equivalent FROM table_name_17 WHERE hanja = \"\u826f\u5dde\"", "question": "What is the modern equivalent of \u826f\u5dde in Hanja?", "context": "CREATE TABLE table_name_17 (modern_equivalent VARCHAR, hanja VARCHAR)"}, {"answer": "SELECT capital FROM table_name_21 WHERE hangul = \"\uc591\uc8fc\"", "question": "What is the capital of the province with \uc591\uc8fc in Hangul?", "context": "CREATE TABLE table_name_21 (capital VARCHAR, hangul VARCHAR)"}, {"answer": "SELECT capital FROM table_name_88 WHERE hanja = \"\u6f22\u5dde\"", "question": "What is the capital of the province with \u6f22\u5dde in Hanja?", "context": "CREATE TABLE table_name_88 (capital VARCHAR, hanja VARCHAR)"}, {"answer": "SELECT hanja FROM table_name_78 WHERE province = \"sakju\"", "question": "What is the Hanja for the sakju province?", "context": "CREATE TABLE table_name_78 (hanja VARCHAR, province VARCHAR)"}, {"answer": "SELECT MIN(top_25) FROM table_name_17 WHERE wins > 0", "question": "What is the fewest number of top-25s for events with more than 0 wins?", "context": "CREATE TABLE table_name_17 (top_25 INTEGER, wins INTEGER)"}, {"answer": "SELECT MAX(top_10) FROM table_name_46 WHERE wins > 0", "question": "What is the highest number of top-10s in events with more than 0 wins?", "context": "CREATE TABLE table_name_46 (top_10 INTEGER, wins INTEGER)"}, {"answer": "SELECT top_25 FROM table_name_47 WHERE events < 13 AND cuts_made < 3 AND top_10 = 1", "question": "What is the number of top-25s in events under 13, cuts made under 3, and 1 top-10?", "context": "CREATE TABLE table_name_47 (top_25 VARCHAR, top_10 VARCHAR, events VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT season FROM table_name_7 WHERE average < 28 AND rank < 10 AND professional_partner = \"janja lesar\"", "question": "Which season had an average under 28, a rank under 10, and a partner of Janja Lesar?", "context": "CREATE TABLE table_name_7 (season VARCHAR, professional_partner VARCHAR, average VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_45 WHERE rank < 1", "question": "What is the highest season that had rank under 1?", "context": "CREATE TABLE table_name_45 (season INTEGER, rank INTEGER)"}, {"answer": "SELECT professional_partner FROM table_name_29 WHERE season = 4", "question": "Who was the professional partner in season 4?", "context": "CREATE TABLE table_name_29 (professional_partner VARCHAR, season VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_65 WHERE team = \"detroit\"", "question": "Who had the highest rebounds against detroit?", "context": "CREATE TABLE table_name_65 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_93 WHERE nation = \"uzbekistan (uzb)\"", "question": "How much gold received by nation of uzbekistan (uzb)?", "context": "CREATE TABLE table_name_93 (gold INTEGER, nation VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_68 WHERE silver < 0", "question": "Which team has the lowest gold and 0 silver?", "context": "CREATE TABLE table_name_68 (gold INTEGER, silver INTEGER)"}, {"answer": "SELECT MAX(gold) FROM table_name_27 WHERE silver < 1 AND bronze = 1 AND total < 1", "question": "How much gold when silver, bronze and total is smaller than 1?", "context": "CREATE TABLE table_name_27 (gold INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT icao FROM table_name_2 WHERE commenced_operations < 1989", "question": "What is the ICAO with commenced operations before 1989?", "context": "CREATE TABLE table_name_2 (icao VARCHAR, commenced_operations INTEGER)"}, {"answer": "SELECT MIN(commenced_operations) FROM table_name_90 WHERE callsign = \"nouvelair\"", "question": "What is the lowest commenced operations that has a nouvelair callsign?", "context": "CREATE TABLE table_name_90 (commenced_operations INTEGER, callsign VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_34 WHERE commenced_operations = 2011", "question": "What callsign has commenced operations in 2011?", "context": "CREATE TABLE table_name_34 (callsign VARCHAR, commenced_operations VARCHAR)"}, {"answer": "SELECT language FROM table_name_19 WHERE package_option = \"qualsiasi\" AND television_service = \"sky primafila 10\"", "question": "What language is used when the service is sky primafila 10 and the package/option is qualsiasi?", "context": "CREATE TABLE table_name_19 (language VARCHAR, package_option VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT content FROM table_name_13 WHERE package_option = \"qualsiasi\" AND television_service = \"sky primafila 14\"", "question": "What is the content when the package/option is qualsiasi and sky primafila 14 is the television service?", "context": "CREATE TABLE table_name_13 (content VARCHAR, package_option VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT hdtv FROM table_name_26 WHERE content = \"general television\" AND television_service = \"tv 8 mont blanc\"", "question": "What is the HDTV that has television service of tv 8 mont blanc and content is general television?", "context": "CREATE TABLE table_name_26 (hdtv VARCHAR, content VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT city FROM table_name_64 WHERE iata = \"nkg\"", "question": "Which city's IATA is nkg?", "context": "CREATE TABLE table_name_64 (city VARCHAR, iata VARCHAR)"}, {"answer": "SELECT airport FROM table_name_45 WHERE province = \"xinjiang\" AND city = \"kuqa\"", "question": "Which airport is in Xinjiang province in the city Kuqa?", "context": "CREATE TABLE table_name_45 (airport VARCHAR, province VARCHAR, city VARCHAR)"}, {"answer": "SELECT province FROM table_name_21 WHERE iata = \"kix\"", "question": "Which province's IATA is kix?", "context": "CREATE TABLE table_name_21 (province VARCHAR, iata VARCHAR)"}, {"answer": "SELECT airport FROM table_name_31 WHERE iata = \"pen\"", "question": "Which airport's IATA is pen?", "context": "CREATE TABLE table_name_31 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT event FROM table_name_90 WHERE record = \"4:02.54\"", "question": "Which Event has a Record of 4:02.54?", "context": "CREATE TABLE table_name_90 (event VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE event = \"3000 m\"", "question": "Whcih Date has an Event of 3000 m?", "context": "CREATE TABLE table_name_6 (date VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_20 WHERE date = \"23 february 1986\"", "question": "Which Record has a Date of 23 february 1986?", "context": "CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE record = \"8:39.49\"", "question": "Which Date has a Record of 8:39.49?", "context": "CREATE TABLE table_name_95 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_71 WHERE date = \"3 march 2013\"", "question": "Which Record has a Date of 3 march 2013?", "context": "CREATE TABLE table_name_71 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT nation FROM table_name_84 WHERE record = \"15.16 m\"", "question": "Which Nation has a Record of 15.16 m?", "context": "CREATE TABLE table_name_84 (nation VARCHAR, record VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_5 WHERE goals > 8 AND apps = 52", "question": "What is the Nationality of the Player with more than 8 Goals and Apps of 52?", "context": "CREATE TABLE table_name_5 (nationality VARCHAR, goals VARCHAR, apps VARCHAR)"}, {"answer": "SELECT AVG(apps) FROM table_name_64 WHERE player = \"gilberto\" AND goals > 1", "question": "How many Apps did Player Gilberto with more than 1 Goals have?", "context": "CREATE TABLE table_name_64 (apps INTEGER, player VARCHAR, goals VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE round = \"4th\" AND home_team = \"itabuna\"", "question": "On what date was the 4th round, with home team Itabuna, played?", "context": "CREATE TABLE table_name_4 (date VARCHAR, round VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_96 WHERE round = \"6th\" AND home_team = \"bahia\"", "question": "In the 6th round match with home team Bahia, who was the away team?", "context": "CREATE TABLE table_name_96 (away_team VARCHAR, round VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE round = \"5th\" AND away_team = \"bahia\"", "question": "For the 5th round match with away team of Bahia, what was the final score?", "context": "CREATE TABLE table_name_65 (score VARCHAR, round VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT league FROM table_name_58 WHERE regular_season = \"2nd, southeast\"", "question": "Which League has a Regular Season of 2nd, southeast?", "context": "CREATE TABLE table_name_58 (league VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_99 WHERE regular_season = \"on hiatus.\"", "question": "Who Playoffs has a Regular Season of on hiatus.?", "context": "CREATE TABLE table_name_99 (playoffs VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_17 WHERE city = \"krager\u00f8\"", "question": "What is the population of Krager\u00f8?", "context": "CREATE TABLE table_name_17 (population INTEGER, city VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_91 WHERE town_status = \"2010\"", "question": "What is the highest population of a city that has a town status of 2010?", "context": "CREATE TABLE table_name_91 (population INTEGER, town_status VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_28 WHERE municipality = \"porsgrunn\"", "question": "What is the highest population within the municipality of Porsgrunn?", "context": "CREATE TABLE table_name_28 (population INTEGER, municipality VARCHAR)"}, {"answer": "SELECT birthplace FROM table_name_79 WHERE position = \"d\" AND height__cm_ = 190 AND jersey_number = 11", "question": "What is the birthplace of the player who is 190 CM tall, plays the D position, and wears number 11?", "context": "CREATE TABLE table_name_79 (birthplace VARCHAR, jersey_number VARCHAR, position VARCHAR, height__cm_ VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_60 WHERE year < 1971 AND entrant = \"scuderia ferrari\" AND engine = \"ferrari v12\"", "question": "What's the total points that Scuderia Ferrari with a Ferrari V12 engine have before 1971?", "context": "CREATE TABLE table_name_60 (points INTEGER, engine VARCHAR, year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_3 WHERE year > 1974 AND entrant = \"walter wolf racing\"", "question": "What's the least amount of points that Walter Wolf Racing had after 1974?", "context": "CREATE TABLE table_name_3 (points INTEGER, year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_68 WHERE position = \"6th\" AND competition = \"commonwealth games\"", "question": "What is the sum of Year(s), when Postion is 6th, and when Competition is Commonwealth Games?", "context": "CREATE TABLE table_name_68 (year INTEGER, position VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_54 WHERE venue = \"beijing, pr china\"", "question": "What is the highest Year, when the Venue is Beijing, PR China?", "context": "CREATE TABLE table_name_54 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_89 WHERE competition = \"oceania youth championships\"", "question": "What is the average Year, when Competition is Oceania Youth Championships?", "context": "CREATE TABLE table_name_89 (year INTEGER, competition VARCHAR)"}, {"answer": "SELECT event FROM table_name_94 WHERE position = \"4th\"", "question": "What is Event, when Position is 4th?", "context": "CREATE TABLE table_name_94 (event VARCHAR, position VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE format = \"cd\"", "question": "What is the Date with a Format that is cd?", "context": "CREATE TABLE table_name_87 (date VARCHAR, format VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_9 WHERE date = \"march 13, 2002\"", "question": "What is the Catalog with a Date that is march 13, 2002?", "context": "CREATE TABLE table_name_9 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_45 WHERE catalog = \"mhcl-20017\"", "question": "What is the Label with a Catalog that is mhcl-20017?", "context": "CREATE TABLE table_name_45 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_89 WHERE date = \"february 20, 2002\"", "question": "What is the Catalog with a Date that is february 20, 2002?", "context": "CREATE TABLE table_name_89 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(weight__kg_) FROM table_name_62 WHERE jersey__number > 22 AND position = \"f\" AND birthdate = \"march 19, 1980\"", "question": "What is the lightest Weight (kg), when the Jersey # is greater than 22, when the Position is F, and when the Birthdate is March 19, 1980?", "context": "CREATE TABLE table_name_62 (weight__kg_ INTEGER, birthdate VARCHAR, jersey__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_92 WHERE birthplace = \"buffalo, new york\"", "question": "What is the Position, when the Birthplace is Buffalo, New York?", "context": "CREATE TABLE table_name_92 (position VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT birthplace FROM table_name_24 WHERE jersey__number < 18 AND height__cm_ > 185 AND birthdate = \"march 3, 1980\"", "question": "What is the Birthplace, when the Jersey # is less than 18, when the Height (cm) is higher than 185, and when the Birthdate is March 3, 1980?", "context": "CREATE TABLE table_name_24 (birthplace VARCHAR, birthdate VARCHAR, jersey__number VARCHAR, height__cm_ VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_28 WHERE attendance = \"65,309\"", "question": "What was the final score for the game with 65,309 people in attendance?", "context": "CREATE TABLE table_name_28 (final_score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_58 WHERE opponent = \"chicago bears\"", "question": "What average week number had the Chicago bears as the opponent?", "context": "CREATE TABLE table_name_58 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_89 WHERE game_site = \"rich stadium\" AND opponent = \"new england patriots\"", "question": "What is the record for the game against New England Patriots at the Rich Stadium?", "context": "CREATE TABLE table_name_89 (record VARCHAR, game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT finish FROM table_name_91 WHERE chassis = \"dallara\" AND start = \"5\" AND year = 2006", "question": "What did the Dallara chassis with a 5 start in 2006 finish?", "context": "CREATE TABLE table_name_91 (finish VARCHAR, year VARCHAR, chassis VARCHAR, start VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_68 WHERE engine = \"honda\" AND year = 2008", "question": "What is the chassis of the Honda Engine from 2008?", "context": "CREATE TABLE table_name_68 (chassis VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_53 WHERE engine = \"honda\" AND finish = 4", "question": "What is the earliest year of the Honda Engine with a finish of 4?", "context": "CREATE TABLE table_name_53 (year INTEGER, engine VARCHAR, finish VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_6 WHERE 2008 = \"career statistics\"", "question": "What was 2002, when 2008 was, \"career statistics\"?", "context": "CREATE TABLE table_name_6 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_5 WHERE 2001 = \"not masters series\"", "question": "What was 2009, when 2001 was, \"not masters series\"?", "context": "CREATE TABLE table_name_5 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_40 WHERE 2005 = \"2r\" AND 2003 = \"2r\"", "question": "What was 2011, when 2005 was 2R, and when 2003 was 2R?", "context": "CREATE TABLE table_name_40 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_18 WHERE 2012 = \"a\" AND 2003 = \"a\" AND tournament = \"madrid masters\"", "question": "What was 2009, when 2012 was A, when 2003 was A, and then the Tournament was the Madrid Masters?", "context": "CREATE TABLE table_name_18 (tournament VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_71 WHERE 2011 = \"atp masters series\"", "question": "What was 2002, when 2011 was, \"atp masters series\"?", "context": "CREATE TABLE table_name_71 (Id VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_8 WHERE player = \"larry nelson\" AND rank < 5", "question": "What was the lowest wins of Larry Nelson, who ranked less than 5?", "context": "CREATE TABLE table_name_8 (wins INTEGER, player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(earnings__) AS $__ FROM table_name_39 WHERE rank = 3", "question": "What is the sum of the earnings for rank 3?", "context": "CREATE TABLE table_name_39 (earnings__ INTEGER, rank VARCHAR)"}, {"answer": "SELECT country FROM table_name_66 WHERE rank > 4", "question": "What is the country is ranked more than 4?", "context": "CREATE TABLE table_name_66 (country VARCHAR, rank INTEGER)"}, {"answer": "SELECT SUM(week) FROM table_name_70 WHERE attendance = \"53,147\"", "question": "What the total of Week with attendance of 53,147", "context": "CREATE TABLE table_name_70 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_31 WHERE date = \"december 26, 1999\"", "question": "What is the lowest week for December 26, 1999", "context": "CREATE TABLE table_name_31 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT season FROM table_name_90 WHERE races = 6 AND team = \"australia\"", "question": "What season has 6 races and the team is Australia?", "context": "CREATE TABLE table_name_90 (season VARCHAR, races VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(races) FROM table_name_15 WHERE wins > 8", "question": "What is the total number of Races when there were more than 8 wins?", "context": "CREATE TABLE table_name_15 (races VARCHAR, wins INTEGER)"}, {"answer": "SELECT socialist_ticket FROM table_name_2 WHERE republican_ticket = \"john a. may\"", "question": "Who's the Socialist ticket with a Republican ticket of john a. may?", "context": "CREATE TABLE table_name_2 (socialist_ticket VARCHAR, republican_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_67 WHERE democratic_ticket = \"m. william bray\"", "question": "Who's the Republican ticket with a Democratic ticket of m. william bray?", "context": "CREATE TABLE table_name_67 (republican_ticket VARCHAR, democratic_ticket VARCHAR)"}, {"answer": "SELECT socialist_ticket FROM table_name_5 WHERE democratic_ticket = \"herbert h. lehman\"", "question": "Who's the Socialist ticket with a Democratic ticket of herbert h. lehman?", "context": "CREATE TABLE table_name_5 (socialist_ticket VARCHAR, democratic_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_61 WHERE socialist_ticket = \"frank r. crosswaith\"", "question": "Who's the Republican ticket with a Socialist ticket of frank r. crosswaith?", "context": "CREATE TABLE table_name_61 (republican_ticket VARCHAR, socialist_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_46 WHERE socialist_ticket = \"edna mitchell blue\"", "question": "Who's the Republican ticket with a Socialist ticket of edna mitchell blue?", "context": "CREATE TABLE table_name_46 (republican_ticket VARCHAR, socialist_ticket VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_47 WHERE player = \"serena williams\" AND sets > 2", "question": "what's the earliest year that serena williams had more than 2 sets?", "context": "CREATE TABLE table_name_47 (year INTEGER, player VARCHAR, sets VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_50 WHERE event = \"wimbledon\" AND opponent = \"zheng jie\"", "question": "what's the earliest year that the wimbledon opponent was zheng jie?", "context": "CREATE TABLE table_name_50 (year INTEGER, event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_22 WHERE opponent = \"caroline garcia\"", "question": "what year was the opponent caroline garcia?", "context": "CREATE TABLE table_name_22 (year INTEGER, opponent VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_55 WHERE aces = 20 AND opponent = \"samantha stosur\" AND sets > 2", "question": "what's the most recent year that samantha stosur was the opponent with 20 aces and having played more than 2 sets?", "context": "CREATE TABLE table_name_55 (year INTEGER, sets VARCHAR, aces VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_97 WHERE event = \"memphis\"", "question": "what year was the memphis event?", "context": "CREATE TABLE table_name_97 (year INTEGER, event VARCHAR)"}, {"answer": "SELECT season FROM table_name_26 WHERE school_club_team = \"far eastern\" AND number = 26", "question": "What season did the player who had the number 26 play on who came from far eastern?", "context": "CREATE TABLE table_name_26 (season VARCHAR, school_club_team VARCHAR, number VARCHAR)"}, {"answer": "SELECT season FROM table_name_64 WHERE school_club_team = \"cebu\"", "question": "What season did the player who came from Cebu play in?", "context": "CREATE TABLE table_name_64 (season VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT country FROM table_name_69 WHERE year = 2012", "question": "What was the country in the year 2012?", "context": "CREATE TABLE table_name_69 (country VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_90 WHERE manufacturer = \"letecke zavody n.p., jinonice\"", "question": "In what year was Letecke Zavody N.P., Jinonice the manufacturer?", "context": "CREATE TABLE table_name_90 (year VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT country FROM table_name_42 WHERE engine_make_capacity = \"jawa 350cc\"", "question": "What country had the car with the Jawa 350cc engine?", "context": "CREATE TABLE table_name_42 (country VARCHAR, engine_make_capacity VARCHAR)"}, {"answer": "SELECT country FROM table_name_34 WHERE engine_make_capacity = \"\u010dz 171cc\"", "question": "In what country was the car with the \u010dz 171cc engine?", "context": "CREATE TABLE table_name_34 (country VARCHAR, engine_make_capacity VARCHAR)"}, {"answer": "SELECT automobile_name FROM table_name_18 WHERE year = \"1956-1958\"", "question": "What is the name of the car that was made in the years 1956-1958?", "context": "CREATE TABLE table_name_18 (automobile_name VARCHAR, year VARCHAR)"}, {"answer": "SELECT automobile_name FROM table_name_11 WHERE manufacturer = \"letecke zavody n.p., jinonice\"", "question": "What is the name of the car manufactured by Letecke Zavody N.P., Jinonice?", "context": "CREATE TABLE table_name_11 (automobile_name VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_58 WHERE engine_make_capacity = \"jawa 249cc\" AND year = \"1956-1963\"", "question": "Who manufactured the car with the jawa 249cc engine that was made in the years 1956-1963?", "context": "CREATE TABLE table_name_58 (manufacturer VARCHAR, engine_make_capacity VARCHAR, year VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_98 WHERE date = \"jun 29\"", "question": "What is the Set 2 with a Date that is jun 29?", "context": "CREATE TABLE table_name_98 (set_2 VARCHAR, date VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_12 WHERE set_2 = \"25-19\"", "question": "What is the Set 1 with a Set 2 that is 25-19?", "context": "CREATE TABLE table_name_12 (set_1 VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_5 FROM table_name_93 WHERE date = \"jun 29\"", "question": "What is the Set 5 with a Date that is jun 29?", "context": "CREATE TABLE table_name_93 (set_5 VARCHAR, date VARCHAR)"}, {"answer": "SELECT construction_completed FROM table_name_9 WHERE listed = \"09/21/1984\" AND deleted = \"11/04/1999\"", "question": "When was construction completed that was listed on 09/21/1984 and a Deleted of 11/04/1999?", "context": "CREATE TABLE table_name_9 (construction_completed VARCHAR, listed VARCHAR, deleted VARCHAR)"}, {"answer": "SELECT partially_deleted FROM table_name_47 WHERE construction_completed = \"\u2013\" AND name = \"st. maries creosote\"", "question": "What is the partially deleted result for a completed construction of m\u2013 in St. Maries Creosote?", "context": "CREATE TABLE table_name_47 (partially_deleted VARCHAR, construction_completed VARCHAR, name VARCHAR)"}, {"answer": "SELECT partially_deleted FROM table_name_96 WHERE name = \"bunker hill mining & metallurgical\"", "question": "What is the partially deleted result for Bunker Hill Mining & Metallurgical?", "context": "CREATE TABLE table_name_96 (partially_deleted VARCHAR, name VARCHAR)"}, {"answer": "SELECT partially_deleted FROM table_name_95 WHERE deleted = \"\u2013\" AND county = \"valley\"", "question": "What is the partially deleted result for a deleted of m\u2013 in Valley?", "context": "CREATE TABLE table_name_95 (partially_deleted VARCHAR, deleted VARCHAR, county VARCHAR)"}, {"answer": "SELECT SUM(match) FROM table_name_83 WHERE points > 22", "question": "How many matches ended with more than 22 points?", "context": "CREATE TABLE table_name_83 (match INTEGER, points INTEGER)"}, {"answer": "SELECT 1965 FROM table_name_81 WHERE 1967 = \"7\"", "question": "What is the value in 1965 when 7 is the value for 1967?", "context": "CREATE TABLE table_name_81 (Id VARCHAR)"}, {"answer": "SELECT 1971 FROM table_name_65 WHERE 1969 = \"30\"", "question": "What is the value in 1971 when 30 is the value for 1969?", "context": "CREATE TABLE table_name_65 (Id VARCHAR)"}, {"answer": "SELECT 1966 FROM table_name_72 WHERE 1969 = \"0\"", "question": "What was the value in 1966 with a 0 value in 1969?", "context": "CREATE TABLE table_name_72 (Id VARCHAR)"}, {"answer": "SELECT name FROM table_name_68 WHERE moving_to = \"arminia bielefeld\"", "question": "Who was the player moving to Arminia Bielefeld?", "context": "CREATE TABLE table_name_68 (name VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_11 WHERE winning_score = \u20139(69 - 72 - 68 - 70 = 279)", "question": "What tournament had a Winning score of \u20139 (69-72-68-70=279)?", "context": "CREATE TABLE table_name_11 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_50 WHERE tournament = \"greater vancouver open\"", "question": "What was the winning score of the Greater Vancouver Open tournament?", "context": "CREATE TABLE table_name_50 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_78 WHERE margin_of_victory = \"3 strokes\" AND winning_score = \u201313(68 - 70 - 66 - 71 = 275)", "question": "Which runner(s)-up had a Winning score of \u201313 (68-70-66-71=275) and a Margin of victory of 3 strokes?", "context": "CREATE TABLE table_name_78 (runner_s__up VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_84 WHERE tournament = \"southwest golf classic\"", "question": "What was the Margin of victory in the southwest golf classic Tournament?", "context": "CREATE TABLE table_name_84 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_66 WHERE winning_score = \u20139(69 - 72 - 68 - 70 = 279)", "question": "When the Winning score was \u20139 (69-72-68-70=279), what was the Margin of victory?", "context": "CREATE TABLE table_name_66 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT height FROM table_name_2 WHERE floor_count < 25", "question": "What height has a floor count less than 25?", "context": "CREATE TABLE table_name_2 (height VARCHAR, floor_count INTEGER)"}, {"answer": "SELECT state___territory FROM table_name_58 WHERE height = \"121 m\"", "question": "What state/territory has 121 m as the height?", "context": "CREATE TABLE table_name_58 (state___territory VARCHAR, height VARCHAR)"}, {"answer": "SELECT state___territory FROM table_name_85 WHERE building = \"lovett tower\"", "question": "What state/territory has lovett tower as the building?", "context": "CREATE TABLE table_name_85 (state___territory VARCHAR, building VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE opponent = \"oakland raiders\"", "question": "What was the date of the game against Oakland Raiders?", "context": "CREATE TABLE table_name_86 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT year FROM table_name_59 WHERE wins = \"2\"", "question": "What year has 2 wins?", "context": "CREATE TABLE table_name_59 (year VARCHAR, wins VARCHAR)"}, {"answer": "SELECT success_rate FROM table_name_52 WHERE year = \"2012\"", "question": "What is the success rate for the year 2012?", "context": "CREATE TABLE table_name_52 (success_rate VARCHAR, year VARCHAR)"}, {"answer": "SELECT wins FROM table_name_70 WHERE matches = \"4\" AND success_rate = \"25%\"", "question": "What was the win for 4 matches with a success rate of 25%?", "context": "CREATE TABLE table_name_70 (wins VARCHAR, matches VARCHAR, success_rate VARCHAR)"}, {"answer": "SELECT wins FROM table_name_17 WHERE matches = \"6\"", "question": "what was the win for the 6 matches?", "context": "CREATE TABLE table_name_17 (wins VARCHAR, matches VARCHAR)"}, {"answer": "SELECT losses FROM table_name_40 WHERE matches = \"5\"", "question": "What is the losses for the 5 matches?", "context": "CREATE TABLE table_name_40 (losses VARCHAR, matches VARCHAR)"}, {"answer": "SELECT losses FROM table_name_73 WHERE year = \"2012\"", "question": "What is the losses for the year 2012?", "context": "CREATE TABLE table_name_73 (losses VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_77 WHERE gold > 4", "question": "What is the average Total with a Gold that is larger than 4?", "context": "CREATE TABLE table_name_77 (total INTEGER, gold INTEGER)"}, {"answer": "SELECT AVG(total) FROM table_name_46 WHERE bronze > 1", "question": "What is the average Total with a Bronze that is larger than 1?", "context": "CREATE TABLE table_name_46 (total INTEGER, bronze INTEGER)"}, {"answer": "SELECT brazil_scorers FROM table_name_18 WHERE competition = \"world cup\" AND score = \"1-2\"", "question": "Who were the Brazil scorers for the World Cup Competition with a 1-2 score?", "context": "CREATE TABLE table_name_18 (brazil_scorers VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_86 WHERE score = \"4-3\"", "question": "Which competition had a 4-3 score?", "context": "CREATE TABLE table_name_86 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_name_61 WHERE events > 18 AND top_25 = 23", "question": "What is the highest Top-5 that has 18 or more events with a Top-25 of 23?", "context": "CREATE TABLE table_name_61 (top_5 INTEGER, events VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MIN(cuts_made) FROM table_name_63 WHERE top_25 < 6 AND wins < 0", "question": "What is the lowest cuts made that had a Top-25 less than 6 and wins greater than 0?", "context": "CREATE TABLE table_name_63 (cuts_made INTEGER, top_25 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT race_title FROM table_name_81 WHERE winner = \"glenn seton\" AND circuit = \"sandown international raceway\"", "question": "What race did Glenn Seton win on the Sandown International Raceway circuit?", "context": "CREATE TABLE table_name_81 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE race_title = \"oran park\"", "question": "What date was the race at Oran Park ran?", "context": "CREATE TABLE table_name_25 (date VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT MAX(assists) FROM table_name_71 WHERE rank = 2 AND games < 2", "question": "What is the largest number of assists for the second rank when there were less than 2 games?", "context": "CREATE TABLE table_name_71 (assists INTEGER, rank VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_52 WHERE games > 2", "question": "What is the smallest rank when there are more than 2 games?", "context": "CREATE TABLE table_name_52 (rank INTEGER, games INTEGER)"}, {"answer": "SELECT AVG(games) FROM table_name_88 WHERE name = \"pablo prigioni\" AND assists > 14", "question": "What is the mean number of games for pablo prigioni when there are more than 14 assists?", "context": "CREATE TABLE table_name_88 (games INTEGER, name VARCHAR, assists VARCHAR)"}, {"answer": "SELECT region FROM table_name_35 WHERE vehicles__1209_ = 57", "question": "What region has 57 vehicles?", "context": "CREATE TABLE table_name_35 (region VARCHAR, vehicles__1209_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE year > 1991 AND category = \"iva\"", "question": "What was the Score after 1991 in Category IVA?", "context": "CREATE TABLE table_name_98 (score VARCHAR, year VARCHAR, category VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE year = 2002", "question": "What was the Score in 2002?", "context": "CREATE TABLE table_name_25 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT category FROM table_name_19 WHERE year < 1995", "question": "What was the Category before 1995?", "context": "CREATE TABLE table_name_19 (category VARCHAR, year INTEGER)"}, {"answer": "SELECT category FROM table_name_90 WHERE year > 1991 AND score = \"7-5, 6-7, 6-2\"", "question": "What was the Category after 1991 with a Score of 7-5, 6-7, 6-2?", "context": "CREATE TABLE table_name_90 (category VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT issue_date_s_ FROM table_name_97 WHERE artist = \"paul mccartney and michael jackson\"", "question": "What was the issue date for the song by Paul Mccartney and Michael Jackson?", "context": "CREATE TABLE table_name_97 (issue_date_s_ VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MIN(seats__acs_) FROM table_name_57 WHERE election_winner = \"inc\" AND incumbent = \"bjp\"", "question": "What is the smallest number of seats with INC as an election winner and BJP incumbent?", "context": "CREATE TABLE table_name_57 (seats__acs_ INTEGER, election_winner VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT election_winner FROM table_name_77 WHERE incumbent = \"bjp\" AND state = \"chhattisgarh\"", "question": "Who was the election winner with a BJP incumbent in Chhattisgarh?", "context": "CREATE TABLE table_name_77 (election_winner VARCHAR, incumbent VARCHAR, state VARCHAR)"}, {"answer": "SELECT country FROM table_name_8 WHERE iata = \"evn\"", "question": "Which country has an IATA of EVN?", "context": "CREATE TABLE table_name_8 (country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT airport FROM table_name_34 WHERE country = \"russia\" AND iata = \"aer\"", "question": "What is the name of the airport located in Russia with an IATA of AER?", "context": "CREATE TABLE table_name_34 (airport VARCHAR, country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT airport FROM table_name_30 WHERE country = \"russia\" AND iata = \"krr\"", "question": "What is the name of the airport located in Russia with an IATA of KRR?", "context": "CREATE TABLE table_name_30 (airport VARCHAR, country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT airport FROM table_name_40 WHERE icao = \"ulli\"", "question": "What is the name of the airport with an ICAO of ULLI?", "context": "CREATE TABLE table_name_40 (airport VARCHAR, icao VARCHAR)"}, {"answer": "SELECT icao FROM table_name_80 WHERE country = \"armenia\"", "question": "What is the ICAO for the destination in Armenia?", "context": "CREATE TABLE table_name_80 (icao VARCHAR, country VARCHAR)"}, {"answer": "SELECT airport FROM table_name_68 WHERE iata = \"kuf\"", "question": "What is the name of the airport with an IATA of KUF?", "context": "CREATE TABLE table_name_68 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT status FROM table_name_84 WHERE authors = \"del corro\"", "question": "What is the status of Author Del Corro?", "context": "CREATE TABLE table_name_84 (status VARCHAR, authors VARCHAR)"}, {"answer": "SELECT location FROM table_name_65 WHERE authors = \"molnar\"", "question": "What is the location of the authors of Molnar?", "context": "CREATE TABLE table_name_65 (location VARCHAR, authors VARCHAR)"}, {"answer": "SELECT status FROM table_name_96 WHERE name = \"prenocephale\"", "question": "What is the status of Prenocephale?", "context": "CREATE TABLE table_name_96 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT novelty FROM table_name_40 WHERE status = \"valid\" AND location = \"mongolia\" AND name = \"prenocephale\"", "question": "What is the novel that has a valid status, located in Mongolia, and named Prenocephale?", "context": "CREATE TABLE table_name_40 (novelty VARCHAR, name VARCHAR, status VARCHAR, location VARCHAR)"}, {"answer": "SELECT novelty FROM table_name_14 WHERE name = \"tylocephale\"", "question": "What is the novelty of Tylocephale?", "context": "CREATE TABLE table_name_14 (novelty VARCHAR, name VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_13 WHERE team_2 = \"vfl gummersbach\"", "question": "Which team 1 has vfl gummersbach as team 2?", "context": "CREATE TABLE table_name_13 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_75 WHERE team_2 = \"cbm valladolid\"", "question": "Which team 1 has cbm valladolid as team 2?", "context": "CREATE TABLE table_name_75 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_23 WHERE team_1 = \"rk gold club kozina\"", "question": "What 2nd leg has rk gold club kozina as team 1?", "context": "CREATE TABLE table_name_23 (team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_8 WHERE agg = \"52-70\"", "question": "What 1st leg has 52-70 as the agg.?", "context": "CREATE TABLE table_name_8 (agg VARCHAR)"}, {"answer": "SELECT surface FROM table_name_72 WHERE date = \"october 10, 2004\"", "question": "What was the surface for October 10, 2004?", "context": "CREATE TABLE table_name_72 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_94 WHERE opponent = \"roger federer\"", "question": "What was the surface for the opponent Roger Federer?", "context": "CREATE TABLE table_name_94 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_28 WHERE competition = \"olympic games\" AND event = \"400 m\"", "question": "How many years was the 400 m event in the olympic games?", "context": "CREATE TABLE table_name_28 (year VARCHAR, competition VARCHAR, event VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_28 WHERE result = \"l 26-21\"", "question": "How many were in attendance of the game with l 26-21 result?", "context": "CREATE TABLE table_name_28 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_64 WHERE attendance = \"37,845\"", "question": "Who is the opponent for the game with 37,845 people in attendance?", "context": "CREATE TABLE table_name_64 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT silver FROM table_name_11 WHERE gold = 2 AND bronze > 2", "question": "How many silver medals were there with 2 gold medals and more than 2 bronze medals?", "context": "CREATE TABLE table_name_11 (silver VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_25 WHERE rank = \"11\" AND silver > 0", "question": "What is the smallest total number of medals for rank 11 and more than 0 silver medals?", "context": "CREATE TABLE table_name_25 (total INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_27 WHERE bronze > 2 AND nation = \"united states\" AND gold > 1", "question": "What is the sum of all total medals with more than 2 bronze medals and more than 1 gold medal for the United States?", "context": "CREATE TABLE table_name_27 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_31 WHERE nation = \"canada\" AND bronze > 7", "question": "What is the largest number of gold medals for Canada with more than 7 bronze medals?", "context": "CREATE TABLE table_name_31 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_21 WHERE total < 23 AND nation = \"united states\" AND bronze > 3", "question": "What is the sum of all silver medals with less than 23 medals in total and more than 3 bronze medals for the United States?", "context": "CREATE TABLE table_name_21 (silver INTEGER, bronze VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE location = \"zurich\" AND result = 10.07", "question": "When was Steve Williams in Zurich and his result was 10.07?", "context": "CREATE TABLE table_name_28 (date VARCHAR, location VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_81 WHERE draw = 0 AND team = \"gwardia katowice\" AND points < 12", "question": "What is the largest number lost with 0 draws and less than 12 points for Gwardia Katowice?", "context": "CREATE TABLE table_name_81 (lost INTEGER, points VARCHAR, draw VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_94 WHERE lost = 6 AND points < 15", "question": "What is the highest number of draws with 6 losses and less than 15 points?", "context": "CREATE TABLE table_name_94 (draw INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_36 WHERE lost > 11 AND match < 14", "question": "How many draws correspond to more than 11 losses in a match less than 14?", "context": "CREATE TABLE table_name_36 (draw VARCHAR, lost VARCHAR, match VARCHAR)"}, {"answer": "SELECT director FROM table_name_39 WHERE film_title_used_in_nomination = \"children of sarajevo\"", "question": "What is the Director of Children of Sarajevo?", "context": "CREATE TABLE table_name_39 (director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT result FROM table_name_11 WHERE year__ceremony_ = \"2010 (83rd)\"", "question": "What is the Result of the 2010 (83rd) Ceremony?", "context": "CREATE TABLE table_name_11 (result VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT result FROM table_name_77 WHERE year__ceremony_ = \"2013 (86th)\"", "question": "What is the Result of the 2013 (86th) Ceremony?", "context": "CREATE TABLE table_name_77 (result VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_42 WHERE film_title_used_in_nomination = \"children of sarajevo\"", "question": "What is the Original title of Children of Sarajevo?", "context": "CREATE TABLE table_name_42 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_66 WHERE result = \"not nominated\" AND year__ceremony_ = \"2012 (85th)\"", "question": "In the 2012 (85th) Ceremony, what was the Original title of the film not nominated?", "context": "CREATE TABLE table_name_66 (original_title VARCHAR, result VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_name_22 WHERE points > 43 AND rank = \"6th\"", "question": "What is the lowest draw number for the song ranked 6th with more than 43 points?", "context": "CREATE TABLE table_name_22 (draw INTEGER, points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_16 WHERE performer = \"partners in crime\"", "question": "What is the total sum of points for songs performed by Partners in Crime?", "context": "CREATE TABLE table_name_16 (points INTEGER, performer VARCHAR)"}, {"answer": "SELECT class FROM table_name_21 WHERE facility_id = 150935", "question": "What is the class of facility ID 150935?", "context": "CREATE TABLE table_name_21 (class VARCHAR, facility_id VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_17 WHERE facility_id > 150833", "question": "Which city has a facility ID greater than 150833?", "context": "CREATE TABLE table_name_17 (city_of_license VARCHAR, facility_id INTEGER)"}, {"answer": "SELECT position FROM table_name_99 WHERE cfl_team = \"toronto argonauts\"", "question": "What position does the player from the Toronto Argonauts play?", "context": "CREATE TABLE table_name_99 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_88 WHERE team_2 = \"concepto egile\"", "question": "What was the 1st leg for Team 2 Concepto Egile?", "context": "CREATE TABLE table_name_88 (team_2 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_54 WHERE team_2 = \"gomera\"", "question": "Which team 1 has team 2, Gomera?", "context": "CREATE TABLE table_name_54 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT team FROM table_name_45 WHERE founded < 1883 AND type = \"public\"", "question": "What public team was founded prior to 1883?", "context": "CREATE TABLE table_name_45 (team VARCHAR, founded VARCHAR, type VARCHAR)"}, {"answer": "SELECT name FROM table_name_68 WHERE spike = 342", "question": "Who has exactly 342 spikes?", "context": "CREATE TABLE table_name_68 (name VARCHAR, spike VARCHAR)"}, {"answer": "SELECT MIN(spike) FROM table_name_69 WHERE weight = 83 AND height > 190", "question": "What is the smallest number of spikes for players with a weight of 83 and height over 190?", "context": "CREATE TABLE table_name_69 (spike INTEGER, weight VARCHAR, height VARCHAR)"}, {"answer": "SELECT class FROM table_name_15 WHERE power = \"78 watts\"", "question": "What is Class, when Power is 78 Watts?", "context": "CREATE TABLE table_name_15 (class VARCHAR, power VARCHAR)"}, {"answer": "SELECT power FROM table_name_48 WHERE identifier = \"cbeb-fm\"", "question": "What is Power, when Identifier is CBEB-FM?", "context": "CREATE TABLE table_name_48 (power VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT identifier FROM table_name_26 WHERE city_of_license = \"terrace bay\"", "question": "What is Identifier, when City of License is Terrace Bay?", "context": "CREATE TABLE table_name_26 (identifier VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT power FROM table_name_93 WHERE city_of_license = \"sioux lookout\"", "question": "What is Power, when City of License is Sioux Lookout?", "context": "CREATE TABLE table_name_93 (power VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT identifier FROM table_name_55 WHERE city_of_license = \"hornepayne\"", "question": "What is Identifier, when City of License is Hornepayne?", "context": "CREATE TABLE table_name_55 (identifier VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_20 WHERE frequency = \"101.1\"", "question": "What is City of License, when Frequency is 101.1?", "context": "CREATE TABLE table_name_20 (city_of_license VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT le_5_model FROM table_name_2 WHERE le_5A = 130", "question": "Which LE-5 Model has an LE-5A of 130?", "context": "CREATE TABLE table_name_2 (le_5_model VARCHAR, le_5A VARCHAR)"}, {"answer": "SELECT series FROM table_name_11 WHERE races = 14 AND position = \"12th\"", "question": "What Series had 14 races and 12th position?", "context": "CREATE TABLE table_name_11 (series VARCHAR, races VARCHAR, position VARCHAR)"}, {"answer": "SELECT season FROM table_name_87 WHERE series = \"formula bmw usa\"", "question": "What season was the Formula BMW USA in?", "context": "CREATE TABLE table_name_87 (season VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_name_73 WHERE podiums > 10", "question": "What series had more than 10 Podiums?", "context": "CREATE TABLE table_name_73 (series VARCHAR, podiums INTEGER)"}, {"answer": "SELECT status FROM table_name_25 WHERE authors = \"colbert\"", "question": "What is the Status with an Author that is colbert?", "context": "CREATE TABLE table_name_25 (status VARCHAR, authors VARCHAR)"}, {"answer": "SELECT college FROM table_name_78 WHERE pick > 18 AND pba_team = \"barangay ginebra kings\"", "question": "What college was the draft pick number larger than 18 that went to the Barangay ginebra kings?", "context": "CREATE TABLE table_name_78 (college VARCHAR, pick VARCHAR, pba_team VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_36 WHERE pba_team = \"san miguel beermen\" AND college = \"san sebastian\"", "question": "What is the sum of the pick numbers for the player that went to San Miguel Beermen who played at San Sebastian?", "context": "CREATE TABLE table_name_36 (pick INTEGER, pba_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_26 WHERE pba_team = \"san miguel beermen\" AND player = \"rommel daep\"", "question": "What is the total number of picks for PBA team san miguel beermen who picked rommel daep?", "context": "CREATE TABLE table_name_26 (pick VARCHAR, pba_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT champions FROM table_name_47 WHERE year > 1999 AND runners_up = \"changwon lg sakers\"", "question": "Who won after 1999 with changwon lg sakers as runners-up?", "context": "CREATE TABLE table_name_47 (champions VARCHAR, year VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT result FROM table_name_39 WHERE year > 2007 AND runners_up = \"seoul samsung thunders\" AND champions = \"jeonju kcc egis\"", "question": "What is the result for the champions jeonju kcc egis with runners-up seoul samsung thunders after 2007?", "context": "CREATE TABLE table_name_39 (result VARCHAR, champions VARCHAR, year VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_74 WHERE year = 2013", "question": "What was the winning team in 2013?", "context": "CREATE TABLE table_name_74 (winning_team VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_93 WHERE winning_team = \"europe\" AND usa_captain = \"kathy whitworth\"", "question": "What is the highest year that Europe won, when the USA's Captain was Kathy Whitworth?", "context": "CREATE TABLE table_name_93 (year INTEGER, winning_team VARCHAR, usa_captain VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_99 WHERE usa_captain = \"beth daniel\"", "question": "When the USA's captain was Beth Daniel, who was the winning team?", "context": "CREATE TABLE table_name_99 (winning_team VARCHAR, usa_captain VARCHAR)"}, {"answer": "SELECT season FROM table_name_25 WHERE league = \"bundesliga\" AND european_competitions = \"played korac cup\"", "question": "What is the Season when league shows bundesliga, and a European competition of played korac cup?", "context": "CREATE TABLE table_name_25 (season VARCHAR, league VARCHAR, european_competitions VARCHAR)"}, {"answer": "SELECT AVG(tier) FROM table_name_56 WHERE postseason = \"\u2013\" AND season = \"2012\u201313\"", "question": "What is the average Tier when the postseason shows -, and the season is 2012\u201313?", "context": "CREATE TABLE table_name_56 (tier INTEGER, postseason VARCHAR, season VARCHAR)"}, {"answer": "SELECT european_competitions FROM table_name_33 WHERE tier > 2", "question": "What is the European competition when the tier is more than 2?", "context": "CREATE TABLE table_name_33 (european_competitions VARCHAR, tier INTEGER)"}, {"answer": "SELECT outcome FROM table_name_64 WHERE surface = \"grass\"", "question": "What was the outcome of the match played on grass?", "context": "CREATE TABLE table_name_64 (outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_13 WHERE date__final_ = \"february 17, 2003\"", "question": "What was the outcome of the match on February 17, 2003?", "context": "CREATE TABLE table_name_13 (outcome VARCHAR, date__final_ VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_25 WHERE team = \"usa\"", "question": "How many average wins have USA as the team?", "context": "CREATE TABLE table_name_25 (wins INTEGER, team VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_80 WHERE team = \"great britain\"", "question": "What are the average wins that have great britain as the team?", "context": "CREATE TABLE table_name_80 (wins INTEGER, team VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_21 WHERE college = \"carson-newman\" AND round < 7", "question": "What's the average draft pick number from Carson-Newman College before Round 7?", "context": "CREATE TABLE table_name_21 (pick__number INTEGER, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT college FROM table_name_19 WHERE pick__number = 155", "question": "Which college has a pick number of 155?", "context": "CREATE TABLE table_name_19 (college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_76 WHERE date = \"november 3, 2002\"", "question": "What score in the final has november 3, 2002 as the date?", "context": "CREATE TABLE table_name_76 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_14 WHERE partner = \"natalia gussoni\"", "question": "What surface has natalia gussoni as the partner?", "context": "CREATE TABLE table_name_14 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_68 WHERE date = \"september 23, 2013\"", "question": "What outcome has September 23, 2013 as the date?", "context": "CREATE TABLE table_name_68 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_57 WHERE surface = \"hard\" AND date = \"june 13, 2011\"", "question": "What score in the final has hard as the surface, and june 13, 2011 as the date?", "context": "CREATE TABLE table_name_57 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE partner = \"elke clijsters\"", "question": "What date has elke clijsters as the partner?", "context": "CREATE TABLE table_name_43 (date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT round FROM table_name_59 WHERE prize_money = \"\u00a3120,000\"", "question": "What is the Round with a Prize of money that is \u00a3120,000?", "context": "CREATE TABLE table_name_59 (round VARCHAR, prize_money VARCHAR)"}, {"answer": "SELECT matches FROM table_name_16 WHERE prize_money = \"\u00a31,000,000\"", "question": "What is the Match with a Prize of money that is \u00a31,000,000?", "context": "CREATE TABLE table_name_16 (matches VARCHAR, prize_money VARCHAR)"}, {"answer": "SELECT role FROM table_name_99 WHERE title = \"alvin and the chipmunks meet frankenstein\"", "question": "When alvin and the chipmunks meet frankenstein, what was the role?", "context": "CREATE TABLE table_name_99 (role VARCHAR, title VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_18 WHERE role = \"alvin seville simon seville david 'dave' seville\" AND title = \"alvin and the chipmunks meet the wolfman\"", "question": "What's the earliest year with a role of alvin seville simon seville david 'dave' seville, and a Title of alvin and the chipmunks meet the wolfman?", "context": "CREATE TABLE table_name_18 (year INTEGER, role VARCHAR, title VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_30 WHERE role = \"alvin seville simon seville david 'dave' seville\" AND title = \"the chipmunk adventure\"", "question": "What's the average year for the Role of alvin seville simon seville david 'dave' seville, and a Title of the chipmunk adventure?", "context": "CREATE TABLE table_name_30 (year INTEGER, role VARCHAR, title VARCHAR)"}, {"answer": "SELECT role FROM table_name_53 WHERE title = \"the chipmunk adventure\"", "question": "What was the role in the chipmunk adventure?", "context": "CREATE TABLE table_name_53 (role VARCHAR, title VARCHAR)"}, {"answer": "SELECT role FROM table_name_37 WHERE year = 2007", "question": "What role was played in 2007?", "context": "CREATE TABLE table_name_37 (role VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_75 WHERE engine = \"chevrolet\" AND team = \"kv racing technology\"", "question": "What is the total number of points for the KV Racing Technology team when they use a chevrolet engine?", "context": "CREATE TABLE table_name_75 (points VARCHAR, engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT engine FROM table_name_99 WHERE chassis = \"dallara\" AND rank = \"6th\" AND points = 384", "question": "Which engine has a chassis of dallara, is ranked 6th, and has 384 points?", "context": "CREATE TABLE table_name_99 (engine VARCHAR, points VARCHAR, chassis VARCHAR, rank VARCHAR)"}, {"answer": "SELECT engine FROM table_name_23 WHERE rank = \"3rd\" AND points = 513", "question": "Which engine is used when there is a 3rd place rank and 513 points?", "context": "CREATE TABLE table_name_23 (engine VARCHAR, rank VARCHAR, points VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_25 WHERE rank = \"3rd\"", "question": "What is the chassis when the rank is 3rd?", "context": "CREATE TABLE table_name_25 (chassis VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_44 WHERE team = \"andretti autosport\"", "question": "What are the years that Andretti Autosport is a team?", "context": "CREATE TABLE table_name_44 (year VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_66 WHERE rank = \"3rd\" AND year = 2008", "question": "Which team is ranked 3rd in 2008?", "context": "CREATE TABLE table_name_66 (team VARCHAR, rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(oilers_points) FROM table_name_1 WHERE record = \"10\u20136\" AND oilers_first_downs > 14", "question": "Which Oilers points have a Record of 10\u20136, and Oilers first downs larger than 14?", "context": "CREATE TABLE table_name_1 (oilers_points INTEGER, record VARCHAR, oilers_first_downs VARCHAR)"}, {"answer": "SELECT MAX(oilers_points) FROM table_name_72 WHERE opponent = \"san francisco 49ers\" AND opponents > 19", "question": "Which Oilers points have an Opponent of san francisco 49ers, and Opponents larger than 19?", "context": "CREATE TABLE table_name_72 (oilers_points INTEGER, opponent VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_60 WHERE opponent = \"at kansas city chiefs\" AND attendance < 40 OFFSET 213", "question": "Which Game has an Opponent of at kansas city chiefs, and an Attendance smaller than 40,213?", "context": "CREATE TABLE table_name_60 (game INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT country FROM table_name_27 WHERE date = \"18 may 2004\"", "question": "What is the name of the country that has 18 May 2004 as the date?", "context": "CREATE TABLE table_name_27 (country VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_58 WHERE country = \"australia\"", "question": "What catalog has Australia as the country?", "context": "CREATE TABLE table_name_58 (catalog VARCHAR, country VARCHAR)"}, {"answer": "SELECT format FROM table_name_18 WHERE date = \"7 april 2003\" AND catalog = \"584 2112\"", "question": "In what format was the release that was dated 7 April 2003 from catalog 584 2112?", "context": "CREATE TABLE table_name_18 (format VARCHAR, date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE format = \"lp\"", "question": "What date was the release when the format was lp?", "context": "CREATE TABLE table_name_21 (date VARCHAR, format VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE label = \"parlophone\" AND catalog = \"582 2912\"", "question": "What date is the release when the label was Parlophone and the catalog was 582 2912?", "context": "CREATE TABLE table_name_35 (date VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_9 WHERE country = \"united kingdom\"", "question": "What catalog has the United Kingdom as the country?", "context": "CREATE TABLE table_name_9 (catalog VARCHAR, country VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_34 WHERE position = \"guard\" AND school_club_team = \"virginia\"", "question": "What is the nationality of the guard for the chool/Club Team in Virginia?", "context": "CREATE TABLE table_name_34 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_91 WHERE nationality = \"united states\" AND player = \"arron afflalo\"", "question": "What is the School/Club Team with a nationality of United States for Arron Afflalo?", "context": "CREATE TABLE table_name_91 (school_club_team VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_in_orlando FROM table_name_6 WHERE player = \"carlos arroyo\"", "question": "What is the Years in Orlando for carlos arroyo?", "context": "CREATE TABLE table_name_6 (years_in_orlando VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_77 WHERE years_in_orlando = \"1989\u20131991\"", "question": "What is the Player for Orlando in 1989\u20131991?", "context": "CREATE TABLE table_name_77 (player VARCHAR, years_in_orlando VARCHAR)"}, {"answer": "SELECT position FROM table_name_52 WHERE years_in_orlando = \"1989\u20131999\"", "question": "What is the Position for Orlando for 1989\u20131999?", "context": "CREATE TABLE table_name_52 (position VARCHAR, years_in_orlando VARCHAR)"}, {"answer": "SELECT player FROM table_name_90 WHERE school = \"western washington university\" AND position = \"midfield\" AND year > 2009", "question": "Which player was from Western Washington University, played midfield, and was from years after 2009?", "context": "CREATE TABLE table_name_90 (player VARCHAR, year VARCHAR, school VARCHAR, position VARCHAR)"}, {"answer": "SELECT team FROM table_name_11 WHERE player = \"bubba vanegdom\"", "question": "Which team was Bubba Vanegdom from?", "context": "CREATE TABLE table_name_11 (team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_54 WHERE school = \"pacific lutheran university\" AND player = \"greg fredlund\" AND year > 2010", "question": "What was the position of the player from Pacific Lutheran University named Greg Fredlund in years after 2010?", "context": "CREATE TABLE table_name_54 (position VARCHAR, year VARCHAR, school VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_30 WHERE year > 2008 AND player = \"greg fredlund\"", "question": "What was the position of Greg Fredlund in years after 2008?", "context": "CREATE TABLE table_name_30 (position VARCHAR, year VARCHAR, player VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_40 WHERE tie_no = \"8\"", "question": "What home team has 8 ties?", "context": "CREATE TABLE table_name_40 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT year FROM table_name_31 WHERE winner__female_ = \"kim gevaert\" AND talent__male_ = \"xavier de baerdemaeker\"", "question": "What year had Kim Gevaert as the female winner and Xavier de Baerdemaeker as the male talent?", "context": "CREATE TABLE table_name_31 (year VARCHAR, winner__female_ VARCHAR, talent__male_ VARCHAR)"}, {"answer": "SELECT talent__female_ FROM table_name_41 WHERE year = 1999", "question": "Who is the female talent in 1999?", "context": "CREATE TABLE table_name_41 (talent__female_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT talent__male_ FROM table_name_39 WHERE year = 1991", "question": "Who is the male talent in 1991?", "context": "CREATE TABLE table_name_39 (talent__male_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner__male_ FROM table_name_40 WHERE winner__female_ = \"marleen renders\" AND year > 1998", "question": "Who is the male winner the year after 1998 with Marleen Renders as the female winner?", "context": "CREATE TABLE table_name_40 (winner__male_ VARCHAR, winner__female_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(avg_g) FROM table_name_86 WHERE effic > 34.36 AND name = \"wesley carroll\"", "question": "What is the lowest avg/g that has an effic greater than 34.36, with wesley carroll as the name?", "context": "CREATE TABLE table_name_86 (avg_g INTEGER, effic VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(avg_g) FROM table_name_16 WHERE att_cmp_int = \"2-9-0\"", "question": "What is the lowest avg/g that has 2-9-0 for the att-cmp-int?", "context": "CREATE TABLE table_name_16 (avg_g INTEGER, att_cmp_int VARCHAR)"}, {"answer": "SELECT att_cmp_int FROM table_name_16 WHERE gp_gs = \"12\" AND avg_g = 174.3", "question": "What is the att-cmp-int that has 12 for the gp-gs and 174.3 as the avg/g?", "context": "CREATE TABLE table_name_16 (att_cmp_int VARCHAR, gp_gs VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT song FROM table_name_70 WHERE issue_date_s_ = \"19 june\"", "question": "What is the Song with an Issue Date(s) that is 19 june?", "context": "CREATE TABLE table_name_70 (song VARCHAR, issue_date_s_ VARCHAR)"}, {"answer": "SELECT minimum_height FROM table_name_49 WHERE name_of_the_tunnel = \"little switzerland tunnel\"", "question": "What is the minimum Height of the Little Switzerland Tunnel?", "context": "CREATE TABLE table_name_49 (minimum_height VARCHAR, name_of_the_tunnel VARCHAR)"}, {"answer": "SELECT COUNT(milepost) FROM table_name_74 WHERE name_of_the_tunnel = \"twin tunnel #1 north\"", "question": "What is the Milepost of the Twin Tunnel #1 North?", "context": "CREATE TABLE table_name_74 (milepost VARCHAR, name_of_the_tunnel VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_70 WHERE density = 50.09 AND rank > 30", "question": "WHat is the number of Population has a Density of 50.09 and a Rank larger than 30?", "context": "CREATE TABLE table_name_70 (population INTEGER, density VARCHAR, rank VARCHAR)"}, {"answer": "SELECT icelandic FROM table_name_41 WHERE english = \"bride\"", "question": "What is the Icelandic word for the English word bride?", "context": "CREATE TABLE table_name_41 (icelandic VARCHAR, english VARCHAR)"}, {"answer": "SELECT english FROM table_name_46 WHERE icelandic = \"hlaupa\"", "question": "What is the ENglish word for the Icelandic word hlaupa?", "context": "CREATE TABLE table_name_46 (english VARCHAR, icelandic VARCHAR)"}, {"answer": "SELECT russian FROM table_name_70 WHERE \"greek\" = \"greek\"", "question": "What is the Russian word for the Greek word greek?", "context": "CREATE TABLE table_name_70 (russian VARCHAR)"}, {"answer": "SELECT english FROM table_name_92 WHERE latin = \"uxor\"", "question": "What is the English word for the Latin word uxor?", "context": "CREATE TABLE table_name_92 (english VARCHAR, latin VARCHAR)"}, {"answer": "SELECT latin FROM table_name_33 WHERE english = \"bone\"", "question": "What is the Latin word for the English word bone?", "context": "CREATE TABLE table_name_33 (latin VARCHAR, english VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_75 WHERE ballarat_fl = \"bacchus marsh\" AND wins < 1", "question": "What is the lowest against that has bacchus marsh as a ballarat fl, with wins less than 1?", "context": "CREATE TABLE table_name_75 (against INTEGER, ballarat_fl VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_66 WHERE losses > 0 AND against < 1728 AND ballarat_fl = \"melton\" AND byes < 2", "question": "What is the lowest draws that have losses greater than 0, an against less than 1728, melton as the ballarat fl, and byes less than 2?", "context": "CREATE TABLE table_name_66 (draws INTEGER, byes VARCHAR, ballarat_fl VARCHAR, losses VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_38 WHERE byes > 2", "question": "How many losses have byes greater than 2?", "context": "CREATE TABLE table_name_38 (losses VARCHAR, byes INTEGER)"}, {"answer": "SELECT position FROM table_name_38 WHERE school = \"ohio state\" AND points = \"412\"", "question": "What position does the winner from Ohio State with 412 points play?", "context": "CREATE TABLE table_name_38 (position VARCHAR, school VARCHAR, points VARCHAR)"}, {"answer": "SELECT position FROM table_name_39 WHERE points = \"792\"", "question": "What is the position of the winner with 792 points?", "context": "CREATE TABLE table_name_39 (position VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(top_10) FROM table_name_62 WHERE top_25 = 4 AND top_5 > 1", "question": "What is the highest Top-10, when Top-25 is 4, and when Top-5 is greater than 1?", "context": "CREATE TABLE table_name_62 (top_10 INTEGER, top_25 VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT wins FROM table_name_97 WHERE top_25 < 4 AND top_5 > 0", "question": "What is Wins, when Top-25 is less than 4, and when Top-5 is greater than 0?", "context": "CREATE TABLE table_name_97 (wins VARCHAR, top_25 VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_81 WHERE top_25 < 4 AND top_10 < 1", "question": "What is the total number of Wins, when Top-25 is less than 4, and when Top-10 is less than 1?", "context": "CREATE TABLE table_name_81 (wins VARCHAR, top_25 VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_27 WHERE away_team = \"liverpool\"", "question": "Which home team played in the matchup with an away team of Liverpool?", "context": "CREATE TABLE table_name_27 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE tie_no = \"5\"", "question": "What was the date of tie number 5?", "context": "CREATE TABLE table_name_2 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_6 WHERE tie_no = \"9\"", "question": "Who was the away team for tie number 9?", "context": "CREATE TABLE table_name_6 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE tie_no = \"replay\" AND home_team = \"millwall\"", "question": "What was the score of the replay at Millwall?", "context": "CREATE TABLE table_name_23 (score VARCHAR, tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_40 WHERE tie_no = \"16\"", "question": "Who was the home team for tie number 16?", "context": "CREATE TABLE table_name_40 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_18 WHERE total = 5 AND bronze < 0", "question": "What is the sum of the golds of the nation with 5 total and less than 0 bronze medals?", "context": "CREATE TABLE table_name_18 (gold INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_74 WHERE nation = \"total\" AND silver > 19", "question": "What is the sum of the gold medals of the total nation, which has more than 19 silver medals?", "context": "CREATE TABLE table_name_74 (gold INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_79 WHERE bronze = 3 AND total > 4", "question": "What is the average number of silver medals of the nation with 3 bronzes and more than 4 total medals?", "context": "CREATE TABLE table_name_79 (silver INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT label FROM table_name_74 WHERE year = \"1990\"", "question": "Which label's year was 1990?", "context": "CREATE TABLE table_name_74 (label VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_35 WHERE genre = \"jazz\" AND label = \"columbia\" AND title = \"requiem\"", "question": "Which result's genre was jazz when its label was columbia and its title was requiem?", "context": "CREATE TABLE table_name_35 (result VARCHAR, title VARCHAR, genre VARCHAR, label VARCHAR)"}, {"answer": "SELECT year FROM table_name_57 WHERE \"label\" = \"label\"", "question": "Which year's label was label?", "context": "CREATE TABLE table_name_57 (year VARCHAR)"}, {"answer": "SELECT title FROM table_name_15 WHERE genre = \"jazz\" AND result = \"nominated\" AND year = \"1996\"", "question": "Which title's genre was jazz when it was nominated in 1996?", "context": "CREATE TABLE table_name_15 (title VARCHAR, year VARCHAR, genre VARCHAR, result VARCHAR)"}, {"answer": "SELECT year FROM table_name_37 WHERE genre = \"jazz\" AND label = \"columbia\" AND result = \"nominated\" AND title = \"trio jeepy\"", "question": "Which year's genre was jazz under the columbia label when it was nominated for the title Trio jeepy?", "context": "CREATE TABLE table_name_37 (year VARCHAR, title VARCHAR, result VARCHAR, genre VARCHAR, label VARCHAR)"}, {"answer": "SELECT label FROM table_name_45 WHERE year = \"1993\"", "question": "Which label's year is 1993?", "context": "CREATE TABLE table_name_45 (label VARCHAR, year VARCHAR)"}, {"answer": "SELECT company FROM table_name_7 WHERE principal_activities = \"engine overhaul\"", "question": "What company focuses on Engine Overhaul for their principal activity?", "context": "CREATE TABLE table_name_7 (company VARCHAR, principal_activities VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE game > 4 AND team = \"san antonio\" AND record = \"4-3\"", "question": "When Date has a Game larger than 4 and a Team of san antonio, and a Record of 4-3?", "context": "CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_9 WHERE score = \"108-105 (ot)\"", "question": "Which Team has a Score of 108-105 (ot)?", "context": "CREATE TABLE table_name_9 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT game FROM table_name_86 WHERE team = \"at san antonio\" AND record = \"3-3\"", "question": "Which Game has a Team of at san antonio, and a Record of 3-3?", "context": "CREATE TABLE table_name_86 (game VARCHAR, team VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_91 WHERE score = \"105-115\"", "question": "Which Record has a Score of 105-115?", "context": "CREATE TABLE table_name_91 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(ties) FROM table_name_55 WHERE wins = 6 AND season > 2004", "question": "What's the average amount of ties had when a team wins 6 and it's past the 2004 season?", "context": "CREATE TABLE table_name_55 (ties INTEGER, wins VARCHAR, season VARCHAR)"}, {"answer": "SELECT result FROM table_name_20 WHERE group = \"g1\" AND venue = \"moonee valley\"", "question": "What was the result of the race that had a group of G1 at Moonee Valley?", "context": "CREATE TABLE table_name_20 (result VARCHAR, group VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_57 WHERE distance = \"2000m\"", "question": "What was the result of the race that was a 2000m distance?", "context": "CREATE TABLE table_name_57 (result VARCHAR, distance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_9 WHERE date = \"november 21, 1999\"", "question": "Which Opponent has a Date of november 21, 1999?", "context": "CREATE TABLE table_name_9 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_19 WHERE week < 8 AND opponent = \"philadelphia eagles\"", "question": "Which Attendance has a Week smaller than 8, and an Opponent of philadelphia eagles?", "context": "CREATE TABLE table_name_19 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_47 WHERE result = \"l 26\u201316\"", "question": "Which Attendance has a Result of l 26\u201316?", "context": "CREATE TABLE table_name_47 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_37 WHERE week = 13", "question": "What was the highest attendance on week 13?", "context": "CREATE TABLE table_name_37 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_88 WHERE round = \"6\"", "question": "Which Result has a Round of 6?", "context": "CREATE TABLE table_name_88 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE type = \"tko\" AND opponent = \"jesse brinkley\"", "question": "When is a Type of tko, and an Opponent of jesse brinkley", "context": "CREATE TABLE table_name_53 (date VARCHAR, type VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_4 WHERE opponent = \"steve walker\"", "question": "Which Result has an Opponent of steve walker?", "context": "CREATE TABLE table_name_4 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_65 WHERE type = \"ud\" AND round = \"10\" AND date = \"2008-06-11\"", "question": "Which Opponent has a Type of ud and a Round of 10 on 2008-06-11?", "context": "CREATE TABLE table_name_65 (opponent VARCHAR, date VARCHAR, type VARCHAR, round VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_67 WHERE type = \"tko\" AND round = \"2 (6)\" AND date = \"2006-09-20\"", "question": "Which Opponent has a Type of tko, and a Round of 2 (6) on 2006-09-20?", "context": "CREATE TABLE table_name_67 (opponent VARCHAR, date VARCHAR, type VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE type = \"tko\" AND round = \"1 (6)\"", "question": "When has a Type of tko, and a Round of 1 (6)", "context": "CREATE TABLE table_name_97 (date VARCHAR, type VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_26 WHERE played > 12", "question": "How many positions have a played greater than 12?", "context": "CREATE TABLE table_name_26 (position VARCHAR, played INTEGER)"}, {"answer": "SELECT MIN(played) FROM table_name_38 WHERE points > 11 AND position = 1 AND lost < 1", "question": "What is the lowest played that has points greater than 11, 1 as the position, and a loss less than 1?", "context": "CREATE TABLE table_name_38 (played INTEGER, lost VARCHAR, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE outcome = \"winner\" AND opponent_in_the_final = \"\u00e7a\u011fla b\u00fcy\u00fckak\u00e7ay\"", "question": "What is the Date that has a Outcome of winner, and \u00e7a\u011fla b\u00fcy\u00fckak\u00e7ay was the opponent in the final?", "context": "CREATE TABLE table_name_55 (date VARCHAR, outcome VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_73 WHERE opponent_in_the_final = \"\u00e7a\u011fla b\u00fcy\u00fckak\u00e7ay\"", "question": "What is the Outcome when \u00e7a\u011fla b\u00fcy\u00fckak\u00e7ay was the opponent in the final?", "context": "CREATE TABLE table_name_73 (outcome VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE surface = \"hard\" AND opponent_in_the_final = \"alicia pillay\"", "question": "What is the Score when the opponent in the final is alicia pillay on a hard surface?", "context": "CREATE TABLE table_name_73 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_66 WHERE outcome = \"runner-up\"", "question": "What is the Opponent in the final when the outcome was runner-up?", "context": "CREATE TABLE table_name_66 (opponent_in_the_final VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_92 WHERE outcome = \"winner\" AND date = \"14-may-2007\"", "question": "What is the Opponent in the final with an outcome of winner on 14-may-2007?", "context": "CREATE TABLE table_name_92 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE date = \"09-oct-2006\"", "question": "What is the Score for 09-oct-2006?", "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT time FROM table_name_33 WHERE opponent = \"dave menne\"", "question": "What was the time of the bout against Dave Menne?", "context": "CREATE TABLE table_name_33 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_83 WHERE method = \"tko (strikes)\"", "question": "What was the time of the bout that ended in a TKO (strikes)?", "context": "CREATE TABLE table_name_83 (time VARCHAR, method VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_name_44 WHERE rank = 8", "question": "What is the number of matches for the player in rank 8?", "context": "CREATE TABLE table_name_44 (matches INTEGER, rank VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_9 WHERE set_1 = \"19-25\" AND set_2 = \"19-25\"", "question": "Which set 3 has a Set 1 of 19-25, and a Set 2 of 19-25?", "context": "CREATE TABLE table_name_9 (set_3 VARCHAR, set_1 VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_5 FROM table_name_65 WHERE date = \"jun 7\" AND set_4 = \"21-25\"", "question": "What is the set 5 if the Date is jun 7, and a Set 4 is 21-25?", "context": "CREATE TABLE table_name_65 (set_5 VARCHAR, date VARCHAR, set_4 VARCHAR)"}, {"answer": "SELECT set_5 FROM table_name_44 WHERE set_2 = \"25-20\"", "question": "What is the Set 5 if Set 2 is 25-20?", "context": "CREATE TABLE table_name_44 (set_5 VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT driver FROM table_name_10 WHERE grid = 24", "question": "Which driver's grid was 24?", "context": "CREATE TABLE table_name_10 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_56 WHERE grid < 19 AND time_retired = \"+21.3 secs\"", "question": "What is the mean number of laps when the grid is less than 19 and time/retired is +21.3 secs?", "context": "CREATE TABLE table_name_56 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_67 WHERE team = \"team green\" AND grid = 1", "question": "What is the smallest number of laps for Team Green when the grid is 1?", "context": "CREATE TABLE table_name_67 (laps INTEGER, team VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(1876) FROM table_name_64 WHERE 1872 < 1921 AND 1891 < 354", "question": "What is the total number of 1876(s), when 1872 is less than 1921, and when 1891 is less than 354?", "context": "CREATE TABLE table_name_64 (Id VARCHAR)"}, {"answer": "SELECT SUM(1886) FROM table_name_19 WHERE 1866 > 1070 AND 1891 < 1946", "question": "What is the sum of 1886(s), when 1886 is greater than 1070, and when 1891 is less than 1946?", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT SUM(1891) FROM table_name_63 WHERE 1872 < 685 AND 1881 < 348", "question": "What is the sum of 1891(s), when 1872 is less than 685, and when 1881 is less than 348?", "context": "CREATE TABLE table_name_63 (Id VARCHAR)"}, {"answer": "SELECT SUM(1872) FROM table_name_29 WHERE 1866 > 856 AND 1861 > 1906 AND 1876 > 1990", "question": "What is the sum of 1872(s), when 1866 is greater than 856, when 1861 is greater than 1906, and when 1876 is greater than 1990?", "context": "CREATE TABLE table_name_29 (Id VARCHAR)"}, {"answer": "SELECT record FROM table_name_91 WHERE date = \"december 20\"", "question": "What is the Record with a Date that is december 20?", "context": "CREATE TABLE table_name_91 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_72 WHERE position = \"outside linebacker\"", "question": "In what round was the first outside linebacker picked?", "context": "CREATE TABLE table_name_72 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_80 WHERE result = \"aus by 229 runs\"", "question": "Which Venue resulted in AUS by 229 runs?", "context": "CREATE TABLE table_name_80 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_21 WHERE venue = \"melbourne cricket ground\" AND home_captain = \"joe darling\"", "question": "Who was the Away Captain when the Home Captain was Joe Darling at Melbourne Cricket Ground?", "context": "CREATE TABLE table_name_21 (away_captain VARCHAR, venue VARCHAR, home_captain VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_25 WHERE result = \"aus by 4 wkts\"", "question": "Who was the Home Captain and the Result for AUS by 4 wkts?", "context": "CREATE TABLE table_name_25 (home_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(match) FROM table_name_53 WHERE opponent_team = \"dalian shide siwu\" AND home_away = \"away\"", "question": "What was the highest match when the away opponent was Dalian Shide Siwu?", "context": "CREATE TABLE table_name_53 (match INTEGER, opponent_team VARCHAR, home_away VARCHAR)"}, {"answer": "SELECT home_away FROM table_name_70 WHERE date = \"april 27, 2008\"", "question": "Which Home/Away was on April 27, 2008?", "context": "CREATE TABLE table_name_70 (home_away VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE date = \"march 3, 2008\"", "question": "What was the score on March 3, 2008?", "context": "CREATE TABLE table_name_57 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT hanja FROM table_name_56 WHERE mccune_reischauer = \"ch\u014fn\"", "question": "What is the Hanja for McCune-Reischauer of ch\u014fn?", "context": "CREATE TABLE table_name_56 (hanja VARCHAR, mccune_reischauer VARCHAR)"}, {"answer": "SELECT hangul FROM table_name_66 WHERE hanja = \"\u897f, \u5f90\"", "question": "What is the Hangul when the Hanja is \u897f, \u5f90?", "context": "CREATE TABLE table_name_66 (hangul VARCHAR, hanja VARCHAR)"}, {"answer": "SELECT venue FROM table_name_35 WHERE result = \"win\" AND score = \"5-0\"", "question": "What is the Venue with a Result that is win, and a Score that is 5-0?", "context": "CREATE TABLE table_name_35 (venue VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_91 WHERE result = \"win\" AND score = \"1-0\"", "question": "What is the Competition with a Result of win with a Score that is 1-0?", "context": "CREATE TABLE table_name_91 (competition VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_22 WHERE rank = \"3\"", "question": "How many total Gold medals did the nation ranked #3 receive?", "context": "CREATE TABLE table_name_22 (gold INTEGER, rank VARCHAR)"}, {"answer": "SELECT ship_size FROM table_name_89 WHERE 2006 = \"$46,000\"", "question": "What ship size had a cargo value of $46,000 in 2006?", "context": "CREATE TABLE table_name_89 (ship_size VARCHAR)"}, {"answer": "SELECT ship_size FROM table_name_57 WHERE 2006 = \"$31,750\"", "question": "What ship size had a cargo value of $31,750 in 2006?", "context": "CREATE TABLE table_name_57 (ship_size VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_31 WHERE ship_size = \"all product carriers\"", "question": "What was the cargo value in 2005 with a ship size of all product carriers?", "context": "CREATE TABLE table_name_31 (ship_size VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_13 WHERE ship_size = \"ship size\"", "question": "What was the cargo value in 2004 for ship size?", "context": "CREATE TABLE table_name_13 (ship_size VARCHAR)"}, {"answer": "SELECT cargo FROM table_name_40 WHERE ship_size = \"aframax\"", "question": "What cargo was contained in a ship size of aframax?", "context": "CREATE TABLE table_name_40 (cargo VARCHAR, ship_size VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_46 WHERE cargo = \"all product carriers\"", "question": "What was the cargo value in 2005 for all product carriers?", "context": "CREATE TABLE table_name_46 (cargo VARCHAR)"}, {"answer": "SELECT live_births FROM table_name_85 WHERE migration = \"-14 873\"", "question": "What kind of Live births has a Migration of -14 873?", "context": "CREATE TABLE table_name_85 (live_births VARCHAR, migration VARCHAR)"}, {"answer": "SELECT AVG(goals) / games FROM table_name_66 WHERE name = \"rummenigge, karl-heinz\" AND goals < 162", "question": "What is the average Goals/Games for Rummenigge, Karl-Heinz, with Goals less than 162?", "context": "CREATE TABLE table_name_66 (games VARCHAR, goals INTEGER, name VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_53 WHERE name = \"allofs, klaus\" AND goals < 177", "question": "What is the sum of Games for Allofs, Klaus, with Goals less than 177?", "context": "CREATE TABLE table_name_53 (games INTEGER, name VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_51 WHERE goals > 220 AND years = \"1965\u20131978-78\"", "question": "What is the highest Rank for more than 220 goals in 1965\u20131978-78?", "context": "CREATE TABLE table_name_51 (rank INTEGER, goals VARCHAR, years VARCHAR)"}, {"answer": "SELECT composer FROM table_name_98 WHERE title = \"el hanone\"", "question": "Who is the composer of El Hanone?", "context": "CREATE TABLE table_name_98 (composer VARCHAR, title VARCHAR)"}, {"answer": "SELECT arranger FROM table_name_19 WHERE composer = \"imad shams eldeen\" AND length = \"4:03\"", "question": "Which arranger worked with composer Imad Shams Eldeen at 4:03?", "context": "CREATE TABLE table_name_19 (arranger VARCHAR, composer VARCHAR, length VARCHAR)"}, {"answer": "SELECT title FROM table_name_59 WHERE arranger = \"tarek akef\" AND length = \"3:50\"", "question": "What is the title track that is 3:50 and arranged by Tarek Akef?", "context": "CREATE TABLE table_name_59 (title VARCHAR, arranger VARCHAR, length VARCHAR)"}, {"answer": "SELECT arranger FROM table_name_29 WHERE title = \"ana rouh\"", "question": "Who is the arranger for Ana Rouh?", "context": "CREATE TABLE table_name_29 (arranger VARCHAR, title VARCHAR)"}, {"answer": "SELECT writer FROM table_name_20 WHERE arranger = \"tarek akef\" AND length = \"4:58\"", "question": "Who was the writer that worked with arranger Tarek Akef on a 4:58 song?", "context": "CREATE TABLE table_name_20 (writer VARCHAR, arranger VARCHAR, length VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_12 WHERE result = \"not nominated\" AND original_title = \"ni\u010diji sin\"", "question": "What is the year of the ceremony with a not nominated result and ni\u010diji sin as the original title?", "context": "CREATE TABLE table_name_12 (year__ceremony_ VARCHAR, result VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_98 WHERE original_title = \"ni\u010diji sin\"", "question": "What is the year of the ceremony with the original title ni\u010diji sin?", "context": "CREATE TABLE table_name_98 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT result FROM table_name_1 WHERE year__ceremony_ = \"2006 (79th)\"", "question": "What is the result of the ceremony in 2006 (79th)?", "context": "CREATE TABLE table_name_1 (result VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_65 WHERE original_title = \"sedamdeset i dva dana\"", "question": "What is the film title used for nomination with the original title sedamdeset i dva dana?", "context": "CREATE TABLE table_name_65 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_92 WHERE film_title_used_in_nomination = \"cannibal vegetarian\"", "question": "Who is the director of Cannibal vegetarian, which is the film title used in nomination?", "context": "CREATE TABLE table_name_92 (director_s_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT AVG(first_downs) FROM table_name_82 WHERE date = \"december 4\"", "question": "What is the average First Downs for december 4?", "context": "CREATE TABLE table_name_82 (first_downs INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_53 WHERE opponent = \"tampa bay buccaneers\" AND points_against < 7", "question": "What is the lowest Attendance against the tampa bay buccaneers, with Points Against of less than 7?", "context": "CREATE TABLE table_name_53 (attendance INTEGER, opponent VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT MAX(points_for) FROM table_name_25 WHERE record = \"12\u20132\" AND points_against > 6", "question": "What is the highest Points when the record was 12\u20132, and the Points Against are larger than 6?", "context": "CREATE TABLE table_name_25 (points_for INTEGER, record VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT partial_thromboplastin_time FROM table_name_76 WHERE prothrombin_time = \"prolonged\" AND condition = \"factor v deficiency\"", "question": "Which Partial thromboplastin time has a Prothrombin time of prolonged and a Condition of factor v deficiency?", "context": "CREATE TABLE table_name_76 (partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT condition FROM table_name_1 WHERE bleeding_time = \"prolonged\" AND platelet_count = \"decreased\" AND prothrombin_time = \"prolonged\"", "question": "Which Condition has a Bleeding time of prolonged, a Platelet count of decreased, and Prothrombin time of prolonged?", "context": "CREATE TABLE table_name_1 (condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR, platelet_count VARCHAR)"}, {"answer": "SELECT platelet_count FROM table_name_20 WHERE partial_thromboplastin_time = \"prolonged or unaffected\"", "question": "Which Platelet count has a Partial thromboplastin time of prolonged or unaffected?", "context": "CREATE TABLE table_name_20 (platelet_count VARCHAR, partial_thromboplastin_time VARCHAR)"}, {"answer": "SELECT prothrombin_time FROM table_name_6 WHERE partial_thromboplastin_time = \"unaffected\" AND condition = \"thrombocytopenia\"", "question": "Which Prothrombin time that has a Partial thromboplastin time of unaffected, and a Condition of thrombocytopenia?", "context": "CREATE TABLE table_name_6 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, condition VARCHAR)"}, {"answer": "SELECT condition FROM table_name_75 WHERE bleeding_time = \"unaffected\" AND prothrombin_time = \"prolonged\"", "question": "Which Condition has a Bleeding time of unaffected and a Prothrombin time of prolonged?", "context": "CREATE TABLE table_name_75 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)"}, {"answer": "SELECT partial_thromboplastin_time FROM table_name_1 WHERE prothrombin_time = \"prolonged\" AND bleeding_time = \"unaffected\" AND condition = \"vitamin k deficiency or warfarin\"", "question": "Which Partial thromboplastin time has a Prothrombin time of prolonged, and a Bleeding time of unaffected, and a Condition of vitamin k deficiency or warfarin? Question 6", "context": "CREATE TABLE table_name_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT notes FROM table_name_11 WHERE authors = \"zhou & zhang\"", "question": "What are the notes where the authors are Zhou & Zhang?", "context": "CREATE TABLE table_name_11 (notes VARCHAR, authors VARCHAR)"}, {"answer": "SELECT status FROM table_name_60 WHERE notes = \"possible jr synonym of sapeornis\"", "question": "What is the status where the notes are possible jr synonym of sapeornis?", "context": "CREATE TABLE table_name_60 (status VARCHAR, notes VARCHAR)"}, {"answer": "SELECT AVG(top_5) FROM table_name_74 WHERE top_10 = 2 AND top_25 > 4", "question": "What is the average Top-5 finishes with 2 as the Top-10 and a greater than 4 Top-25?", "context": "CREATE TABLE table_name_74 (top_5 INTEGER, top_10 VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MIN(top_5) FROM table_name_82 WHERE events > 18", "question": "What are the least Top-5 finish when the events are greater than 18?", "context": "CREATE TABLE table_name_82 (top_5 INTEGER, events INTEGER)"}, {"answer": "SELECT SUM(wins) FROM table_name_66 WHERE events < 3", "question": "What is the total of wins when the evens is less than 3?", "context": "CREATE TABLE table_name_66 (wins INTEGER, events INTEGER)"}, {"answer": "SELECT COUNT(cuts_made) FROM table_name_74 WHERE top_10 > 1 AND wins > 0 AND top_5 > 2 AND events > 18", "question": "How many cuts made when the Top-10 is larger than 1, and the wins greater than 0, and a Top-5 greater than 2, when the events is greater than 18?", "context": "CREATE TABLE table_name_74 (cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR, top_10 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT season FROM table_name_9 WHERE name = \"omar sneed\"", "question": "What years did Omar Sneed play?", "context": "CREATE TABLE table_name_9 (season VARCHAR, name VARCHAR)"}, {"answer": "SELECT season FROM table_name_7 WHERE name = \"jovy sese\"", "question": "Which season did Jovy Sese play?", "context": "CREATE TABLE table_name_7 (season VARCHAR, name VARCHAR)"}, {"answer": "SELECT acquisition_via FROM table_name_53 WHERE position = \"forward\" AND school_club_team = \"manuel luis quezon\"", "question": "How did the School/Club Team of Manuel Luis Quezon acquire their Forward?", "context": "CREATE TABLE table_name_53 (acquisition_via VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_8 WHERE acquisition_via = \"trade\" AND name = \"jondan salvador\"", "question": "Which School/ Club Team acquired Jondan Salvador via trade?", "context": "CREATE TABLE table_name_8 (school_club_team VARCHAR, acquisition_via VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_18 WHERE played > 14", "question": "What is the Points with a Played larger than 14?", "context": "CREATE TABLE table_name_18 (points VARCHAR, played INTEGER)"}, {"answer": "SELECT AVG(points) FROM table_name_51 WHERE against < 16", "question": "What is the Points with an Against smaller than 16?", "context": "CREATE TABLE table_name_51 (points INTEGER, against INTEGER)"}, {"answer": "SELECT team FROM table_name_26 WHERE lost > 2 AND position < 7 AND drawn < 2 AND points = 22", "question": "Which Team has a Lost larger than 2, and a Position smaller than 7, and a Drawn smaller than 2, and a Points of 22?", "context": "CREATE TABLE table_name_26 (team VARCHAR, points VARCHAR, drawn VARCHAR, lost VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_55 WHERE position = 3 AND drawn < 2", "question": "Which Points has a Position of 3, and a Drawn smaller than 2?", "context": "CREATE TABLE table_name_55 (points INTEGER, position VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_28 WHERE points = 2 AND position < 8", "question": "Which Played has a Points of 2, and a Position smaller than 8?", "context": "CREATE TABLE table_name_28 (played INTEGER, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_4 WHERE points > 14 AND against > 17", "question": "How many average plays have points greater than 14, with an against greater than 17?", "context": "CREATE TABLE table_name_4 (played INTEGER, points VARCHAR, against VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_78 WHERE lost < 1", "question": "Which average against has a lost less than 1?", "context": "CREATE TABLE table_name_78 (against INTEGER, lost INTEGER)"}, {"answer": "SELECT MAX(drawn) FROM table_name_96 WHERE played < 10", "question": "Which of the highest drawn has a played less than 10?", "context": "CREATE TABLE table_name_96 (drawn INTEGER, played INTEGER)"}, {"answer": "SELECT COUNT(played) FROM table_name_25 WHERE drawn = 3 AND position > 4", "question": "How many played have 3 as the drawn, and a position greater than 4?", "context": "CREATE TABLE table_name_25 (played VARCHAR, drawn VARCHAR, position VARCHAR)"}, {"answer": "SELECT performer_s_ FROM table_name_20 WHERE composer_s_ = \"mariah carey and walter afanasieff\"", "question": "Who sang the song composed by Mariah Carey and Walter Afanasieff?", "context": "CREATE TABLE table_name_20 (performer_s_ VARCHAR, composer_s_ VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_51 WHERE performer_s_ = \"louis armstrong\"", "question": "How many years was Louis Armstrong performing?", "context": "CREATE TABLE table_name_51 (year VARCHAR, performer_s_ VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_74 WHERE winning_score = \u221216(66 - 68 - 70 - 68 = 272)", "question": "Who were the Runner(s)-up with the winning score of \u221216 (66-68-70-68=272)?", "context": "CREATE TABLE table_name_74 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_3 WHERE winning_score = \u221227(64 - 64 - 61 = 189)", "question": "What tournament had a winning score of \u221227 (64-64-61=189)?", "context": "CREATE TABLE table_name_3 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_12 WHERE runner_s__up = \"scott hoch & kenny perry\"", "question": "What tournament had a runner(s)-up of Scott Hoch & Kenny Perry?", "context": "CREATE TABLE table_name_12 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_11 WHERE runner_s__up = \"tom kite\"", "question": "What tournament had a Runner(s)-up of Tom Kite?", "context": "CREATE TABLE table_name_11 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE tournament = \"outback steakhouse pro-am\"", "question": "What is the date of the Outback Steakhouse Pro-Am Tournament?", "context": "CREATE TABLE table_name_94 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_47 WHERE runner_s__up = \"gary mccord\"", "question": "Which tournament has a Runner(s)-up of Gary McCord?", "context": "CREATE TABLE table_name_47 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT location FROM table_name_90 WHERE score = \"2:3\"", "question": "What was the location of the game with a score of 2:3?", "context": "CREATE TABLE table_name_90 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_name_62 WHERE home_team = \"slovakia\"", "question": "What was the location of the home game for Slovakia?", "context": "CREATE TABLE table_name_62 (location VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_21 WHERE away_team = \"mexico\" AND home_team = \"japan\"", "question": "What was the tournament where Japan was the home team and Mexico was the away team?", "context": "CREATE TABLE table_name_21 (tournament VARCHAR, away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT location FROM table_name_49 WHERE home_team = \"japan\"", "question": "What was the location of the home game for Japan?", "context": "CREATE TABLE table_name_49 (location VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_68 WHERE location = \"hossegor\"", "question": "Who was the Runner-up in Hossegor?", "context": "CREATE TABLE table_name_68 (runner_up VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE location = \"gold coast\"", "question": "On what Date was the Tournament in Gold Coast?", "context": "CREATE TABLE table_name_88 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT winner FROM table_name_29 WHERE event = \"billabong pro\" AND country = \"french polynesia\"", "question": "Who was the Winner of the French Polynesia Billabong Pro Event?", "context": "CREATE TABLE table_name_29 (winner VARCHAR, event VARCHAR, country VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_97 WHERE 2007 = \"a\" AND 2004 = \"2r\"", "question": "What shows for 2010 when 2007 is a and 2004 is 2r?", "context": "CREATE TABLE table_name_97 (Id VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_99 WHERE 2008 = \"grand slam tournaments\"", "question": "What is the 2005 when the 2008 shows grand slam tournaments?", "context": "CREATE TABLE table_name_99 (Id VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_85 WHERE 2010 = \"69\"", "question": "What shows for 2002 when 2010 shows 69?", "context": "CREATE TABLE table_name_85 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_60 WHERE 2005 = \"1r\"", "question": "What shows for 2010 when 2005 shows 1r?", "context": "CREATE TABLE table_name_60 (Id VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_27 WHERE points > 15 AND against = 19 AND lost < 3", "question": "What is the highest number of draws with more than 15 points, an against of 19, and less than 3 losses?", "context": "CREATE TABLE table_name_27 (drawn INTEGER, lost VARCHAR, points VARCHAR, against VARCHAR)"}, {"answer": "SELECT stage__winner_ FROM table_name_3 WHERE general_classification = \"thor hushovd\" AND young_rider_classification = \"trent lowe\"", "question": "What stage (winner) has thor hushovd as a general classification, and trent lowe as a rider classification?", "context": "CREATE TABLE table_name_3 (stage__winner_ VARCHAR, general_classification VARCHAR, young_rider_classification VARCHAR)"}, {"answer": "SELECT stage__winner_ FROM table_name_69 WHERE team_classification = \"quick step\" AND young_rider_classification = \"trent lowe\"", "question": "What stage (winner) has quick step as the team classification, and trent lowe as the young rider classification?", "context": "CREATE TABLE table_name_69 (stage__winner_ VARCHAR, team_classification VARCHAR, young_rider_classification VARCHAR)"}, {"answer": "SELECT 2000 AS _2001_team FROM table_name_15 WHERE jersey__number = 19", "question": "What is the 2000-2001 Team with a Jersey # that is 19?", "context": "CREATE TABLE table_name_15 (jersey__number VARCHAR)"}, {"answer": "SELECT AVG(tied) FROM table_name_33 WHERE wins > 19", "question": "What is the average number of ties for years with more than 19 wins?", "context": "CREATE TABLE table_name_33 (tied INTEGER, wins INTEGER)"}, {"answer": "SELECT COUNT(losses) FROM table_name_82 WHERE wins < 9", "question": "What is the total number of losses for years with fewer than 9 wins?", "context": "CREATE TABLE table_name_82 (losses VARCHAR, wins INTEGER)"}, {"answer": "SELECT COUNT(division) FROM table_name_7 WHERE team = \"chongqing lifan\" AND apps > 9", "question": "What is the total number of Division(s), when Team is Chongqing Lifan, and when Apps is greater than 9?", "context": "CREATE TABLE table_name_7 (division VARCHAR, team VARCHAR, apps VARCHAR)"}, {"answer": "SELECT season FROM table_name_6 WHERE country = \"china\" AND team = \"dalian shide\" AND apps > 8 AND goals = 2", "question": "What is Season, when Country is China, when Team is Dalian Shide, when Apps is greater than 8, and when Goals is 2?", "context": "CREATE TABLE table_name_6 (season VARCHAR, goals VARCHAR, apps VARCHAR, country VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(apps) FROM table_name_58 WHERE goals > 5", "question": "What is the highest Apps, when Goals are greater than 5?", "context": "CREATE TABLE table_name_58 (apps INTEGER, goals INTEGER)"}, {"answer": "SELECT season FROM table_name_48 WHERE country = \"china\" AND team = \"dalian shide\" AND goals = 0", "question": "What Season, when Country is China, when Team is Dalian Shide, and when Goals are 0?", "context": "CREATE TABLE table_name_48 (season VARCHAR, goals VARCHAR, country VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_name_32 WHERE country = \"china\" AND apps > 9 AND season = \"2008\"", "question": "What is the total number of Division(s), when Country is China, when Apps is greater than 9, and when Season is 2008?", "context": "CREATE TABLE table_name_32 (division VARCHAR, season VARCHAR, country VARCHAR, apps VARCHAR)"}, {"answer": "SELECT MIN(division) FROM table_name_79 WHERE goals < 10 AND team = \"dalian shide\" AND apps < 17 AND season = \"2007\"", "question": "What is the lowest Division, when Goals are less than 10, when Team is Dalian Shide, when Apps are less than 17, and when Season is 2007?", "context": "CREATE TABLE table_name_79 (division INTEGER, season VARCHAR, apps VARCHAR, goals VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(area) FROM table_name_75 WHERE density > 234.77 AND rank = 32 AND population < 965 OFFSET 040", "question": "What is the lowest area when the density is greater than 234.77, the population is less than 965,040, and the rank is 32?", "context": "CREATE TABLE table_name_75 (area INTEGER, population VARCHAR, density VARCHAR, rank VARCHAR)"}, {"answer": "SELECT home FROM table_name_28 WHERE time = \"14:00\"", "question": "What is the Home with a Time that is 14:00?", "context": "CREATE TABLE table_name_28 (home VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE away = \"high park demons\"", "question": "What is the Score with an Away that is high park demons?", "context": "CREATE TABLE table_name_66 (score VARCHAR, away VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE home = \"etobicoke kangaroos\"", "question": "What is the Score with a Hoe that is etobicoke kangaroos?", "context": "CREATE TABLE table_name_60 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE score = \"46-77\"", "question": "What is the Date with a Score that is 46-77?", "context": "CREATE TABLE table_name_65 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT pavilion_depth FROM table_name_49 WHERE crown_angle = \"34.0\u201334.7\u00b0\"", "question": "Which Pavilion depth has a Crown angle of 34.0\u201334.7\u00b0?", "context": "CREATE TABLE table_name_49 (pavilion_depth VARCHAR, crown_angle VARCHAR)"}, {"answer": "SELECT brilliance_grade FROM table_name_69 WHERE benchmark = \"practical fine cut\"", "question": "Which Brilliance Grade has a Benchmark of practical fine cut?", "context": "CREATE TABLE table_name_69 (brilliance_grade VARCHAR, benchmark VARCHAR)"}, {"answer": "SELECT table_diameter FROM table_name_35 WHERE crown_height = \"14.45%\"", "question": "Which Table diameter has a Crown height of 14.45%?", "context": "CREATE TABLE table_name_35 (table_diameter VARCHAR, crown_height VARCHAR)"}, {"answer": "SELECT brilliance_grade FROM table_name_6 WHERE crown_angle = \"41.1\u00b0\"", "question": "Which Brilliance Grade has a Crown angle of 41.1\u00b0?", "context": "CREATE TABLE table_name_6 (brilliance_grade VARCHAR, crown_angle VARCHAR)"}, {"answer": "SELECT pavilion_depth FROM table_name_36 WHERE brilliance_grade = \"100%\" AND pavilion_angle = \"n/a\"", "question": "Which Pavilion depth has a Brilliance Grade of 100% and a Pavilion angle of n/a?", "context": "CREATE TABLE table_name_36 (pavilion_depth VARCHAR, brilliance_grade VARCHAR, pavilion_angle VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_70 WHERE points = 2", "question": "What is the number of lost with 2 points?", "context": "CREATE TABLE table_name_70 (lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT agg FROM table_name_60 WHERE team_2 = \"kenya\"", "question": "What was the aggregate for the match with a team 2 of Kenya?", "context": "CREATE TABLE table_name_60 (agg VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_28 WHERE team_1 = \"sierra leone\"", "question": "What was the aggregate for the match with Sierra Leone as team 1?", "context": "CREATE TABLE table_name_28 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_14 WHERE team_1 = \"lesotho\"", "question": "What was the 1st leg score for the match with Lesotho as team 1?", "context": "CREATE TABLE table_name_14 (team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_82 WHERE team_1 = \"lesotho\"", "question": "What was the 2nd leg score for the match with Lesotho as team 1?", "context": "CREATE TABLE table_name_82 (team_1 VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_9 WHERE silver < 3 AND total < 2 AND bronze > 0", "question": "What is the total number of ladies ranked who had less than 3 silvers, less than 2 total medals, and more than 0 bronze medals?", "context": "CREATE TABLE table_name_9 (rank VARCHAR, bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_17 WHERE bronze < 3 AND rank < 11 AND silver > 0", "question": "What is the total number of gold medals for the skater with less than 3 bronze medals, more than 0 silver medals and a rank smaller than 11?", "context": "CREATE TABLE table_name_17 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT award FROM table_name_29 WHERE nominee = \"matthew warchus\"", "question": "What was Matthew Warchus' Award?", "context": "CREATE TABLE table_name_29 (award VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT format FROM table_name_56 WHERE notes = \"french\" AND call_sign = \"ckrl-fm\"", "question": "What is the Format of the French Frequency with a Call sign of CKRL-FM?", "context": "CREATE TABLE table_name_56 (format VARCHAR, notes VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT format FROM table_name_96 WHERE owner = \"laval university\"", "question": "What is the Format of the Frequency owned by Laval University?", "context": "CREATE TABLE table_name_96 (format VARCHAR, owner VARCHAR)"}, {"answer": "SELECT notes FROM table_name_63 WHERE format = \"talk radio\"", "question": "What is the Notes of the Frequency with Format of talk radio?", "context": "CREATE TABLE table_name_63 (notes VARCHAR, format VARCHAR)"}, {"answer": "SELECT notes FROM table_name_46 WHERE format = \"soft adult contemporary\"", "question": "What is the Notes of the Frequency with a Format of soft adult contemporary?", "context": "CREATE TABLE table_name_46 (notes VARCHAR, format VARCHAR)"}, {"answer": "SELECT COUNT(chart) AS run FROM table_name_18 WHERE debut_position > 7 AND peak_position = 11", "question": "How many chart runs had a debut position of more than 7 when peak position was 11?", "context": "CREATE TABLE table_name_18 (chart VARCHAR, debut_position VARCHAR, peak_position VARCHAR)"}, {"answer": "SELECT spoofed_title FROM table_name_97 WHERE artist = \"mort drucker\" AND issue = 88", "question": "Which Spoofed title had Mort Drucker as the artist in issue 88?", "context": "CREATE TABLE table_name_97 (spoofed_title VARCHAR, artist VARCHAR, issue VARCHAR)"}, {"answer": "SELECT artist FROM table_name_42 WHERE issue > 74 AND spoofed_title = \"genteel ben\"", "question": "Who was the artist for Spoofed title Genteel Ben in an issue later than 74?", "context": "CREATE TABLE table_name_42 (artist VARCHAR, issue VARCHAR, spoofed_title VARCHAR)"}, {"answer": "SELECT SUM(issue) FROM table_name_44 WHERE artist = \"mort drucker\" AND spoofed_title = \"route 67\"", "question": "Which issue was the Spoofed title Route 67 for which Mort Drucker was the artist?", "context": "CREATE TABLE table_name_44 (issue INTEGER, artist VARCHAR, spoofed_title VARCHAR)"}, {"answer": "SELECT MIN(issue) FROM table_name_12 WHERE writer = \"arnie kogen\" AND date = \"december 1964\"", "question": "What is the earliest issue Arnie Kogen wrote for in December 1964?", "context": "CREATE TABLE table_name_12 (issue INTEGER, writer VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_36 WHERE difference = \"8\" AND position < 4", "question": "What are the highest points that have a difference of 8, with a position less than 4?", "context": "CREATE TABLE table_name_36 (points INTEGER, difference VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_32 WHERE team = \"corinthians\" AND against > 26", "question": "How many losses have corinthians as the team, with an against greater than 26?", "context": "CREATE TABLE table_name_32 (lost INTEGER, team VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_62 WHERE difference = \"23\" AND drawn < 5", "question": "How many points have a difference of 23, with a drawn less than 5?", "context": "CREATE TABLE table_name_62 (points VARCHAR, difference VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_57 WHERE points = 15 AND drawn < 3", "question": "How many positions have 15 for the points, with a drawn less than 3?", "context": "CREATE TABLE table_name_57 (position INTEGER, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT result FROM table_name_31 WHERE record = \"7-0-0\"", "question": "What was the result of the match held when his record was 7-0-0?", "context": "CREATE TABLE table_name_31 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT notes FROM table_name_32 WHERE date = \"1989 may 7\"", "question": "What do the notes say for 1989 May 7?", "context": "CREATE TABLE table_name_32 (notes VARCHAR, date VARCHAR)"}, {"answer": "SELECT method FROM table_name_55 WHERE opponent = \"alberto rodriguez\"", "question": "How did he beat Alberto Rodriguez?", "context": "CREATE TABLE table_name_55 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_79 WHERE date = \"1987\"", "question": "What was his record in 1987?", "context": "CREATE TABLE table_name_79 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_96 WHERE nation = \"barbados\" AND bronze > 0", "question": "What is the lowest total that has barbados as the nation with a bronze greater than 0?", "context": "CREATE TABLE table_name_96 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_43 WHERE gold > 2 AND bronze < 35 AND nation = \"china\" AND total > 26", "question": "How many silvers have a gold greater than 2, a bronze less than 35, china as the nation, with a total greater than 26?", "context": "CREATE TABLE table_name_43 (silver VARCHAR, total VARCHAR, nation VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_57 WHERE gold < 0", "question": "What is the largest total that has a gold less than 0?", "context": "CREATE TABLE table_name_57 (total INTEGER, gold INTEGER)"}, {"answer": "SELECT COUNT(gold) FROM table_name_32 WHERE silver > 1 AND nation = \"vietnam\" AND bronze < 3", "question": "How many golds have a silver greater than 1, vietnam as the nation, with a bronze less than 3?", "context": "CREATE TABLE table_name_32 (gold VARCHAR, bronze VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_25 WHERE country = \"new zealand\" AND last_title > 1968", "question": "Which Wins has a Country of new zealand and a Last title larger than 1968?", "context": "CREATE TABLE table_name_25 (wins INTEGER, country VARCHAR, last_title VARCHAR)"}, {"answer": "SELECT COUNT(last_title) FROM table_name_79 WHERE wins < 71 AND first_title > 1968 AND country = \"fiji\"", "question": "What is the total of Last title that has Wins smaller than 71 and a First title larger than 1968 and a Country of fiji?", "context": "CREATE TABLE table_name_79 (last_title VARCHAR, country VARCHAR, wins VARCHAR, first_title VARCHAR)"}, {"answer": "SELECT COUNT(first_title) FROM table_name_41 WHERE wins < 8 AND country = \"canada\"", "question": "Which First title has Wins smaller than 8 and in Canada?", "context": "CREATE TABLE table_name_41 (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", "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 MAX(opened) FROM table_name_34 WHERE city = \"glasgow, scotland\"", "question": "What is the latest opened year of the team in Glasgow, Scotland?", "context": "CREATE TABLE table_name_34 (opened INTEGER, city VARCHAR)"}, {"answer": "SELECT AVG(opened) FROM table_name_62 WHERE city = \"barcelona, spain\" AND stadium = \"mini estadi\"", "question": "What is the average opened year of Mini Estadi stadium in Barcelona, Spain?", "context": "CREATE TABLE table_name_62 (opened INTEGER, city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT MIN(winning__percentage) FROM table_name_95 WHERE lost > 23 AND goals_for > 386", "question": "What is the lowest win percentage for teams with more than 23 losses and more than 386 goals for?", "context": "CREATE TABLE table_name_95 (winning__percentage INTEGER, lost VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_3 WHERE tied < 5 AND goals_for > 330", "question": "What is the total number of losses for teams with less than 5 ties and more than 330 goals for?", "context": "CREATE TABLE table_name_3 (lost VARCHAR, tied VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE result = \"5-0\"", "question": "What is the Score of the Competition with a Result of 5-0?", "context": "CREATE TABLE table_name_7 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE result = \"5-0\"", "question": "What is the Score of the Competition with a 5-0 Result?", "context": "CREATE TABLE table_name_33 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE result = \"5-0\" AND score = \"4-0\"", "question": "What is the Date of the Competition with a Score of 4-0 and 5-0 Result?", "context": "CREATE TABLE table_name_47 (date VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT title FROM table_name_45 WHERE name = \"yi\"", "question": "What is the title for YI?", "context": "CREATE TABLE table_name_45 (title VARCHAR, name VARCHAR)"}, {"answer": "SELECT state FROM table_name_35 WHERE name = \"yi\"", "question": "What is the state Yi?", "context": "CREATE TABLE table_name_35 (state VARCHAR, name VARCHAR)"}, {"answer": "SELECT state FROM table_name_58 WHERE title = \"king\"", "question": "What state has the king title?", "context": "CREATE TABLE table_name_58 (state VARCHAR, title VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE partner = \"arnaud cl\u00e9ment\"", "question": "What was the score when the partner was arnaud cl\u00e9ment?", "context": "CREATE TABLE table_name_60 (score VARCHAR, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_20 WHERE partner = \"kristof vliegen\"", "question": "What is the Outcome when the partner was kristof vliegen?", "context": "CREATE TABLE table_name_20 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT surface FROM table_name_76 WHERE outcome = \"winner\" AND score = \"7\u20135, 7\u20135\"", "question": "What is the Surface of the match with winner as outcome and a score of 7\u20135, 7\u20135?", "context": "CREATE TABLE table_name_76 (surface VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_38 WHERE partner = \"christophe rochus\" AND date = \"31 july 2005\"", "question": "What is the Outcome when christophe rochus was partner, on 31 july 2005?", "context": "CREATE TABLE table_name_38 (outcome VARCHAR, partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_57 WHERE surface = \"clay\" AND partner = \"christophe rochus\"", "question": "What is the Opponents on a clay surface with christophe rochus as partner?", "context": "CREATE TABLE table_name_57 (opponents VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE partner = \"christophe rochus\" AND score = \"2\u20136, 7\u20136 (7\u20135) , 0\u20136\"", "question": "What is the Date when christophe rochus was partner, and the score was 2\u20136, 7\u20136 (7\u20135) , 0\u20136?", "context": "CREATE TABLE table_name_97 (date VARCHAR, partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT city__town FROM table_name_34 WHERE year_founded = 1860", "question": "In what City/town was their institution founded in 1860?", "context": "CREATE TABLE table_name_34 (city__town VARCHAR, year_founded VARCHAR)"}, {"answer": "SELECT year_founded FROM table_name_82 WHERE state__province = \"pennsylvania\" AND institution_name = \"waynesburg university\"", "question": "What year was Waynesburg University founded in Pennsylvania?", "context": "CREATE TABLE table_name_82 (year_founded VARCHAR, state__province VARCHAR, institution_name VARCHAR)"}, {"answer": "SELECT total_enrollment FROM table_name_67 WHERE institution_name = \"howard payne university\"", "question": "What is Howard Payne University's total enrollment?", "context": "CREATE TABLE table_name_67 (total_enrollment VARCHAR, institution_name VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_86 WHERE runner_s__up = \"fredrik andersson hed\"", "question": "What is the To par when fredrik andersson hed was runner-up?", "context": "CREATE TABLE table_name_86 (to_par VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_34 WHERE runner_s__up = \"rhys davies\"", "question": "What is the Margin of victory when rhys davies was runner-up?", "context": "CREATE TABLE table_name_34 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_21 WHERE to_par = \"\u221221\"", "question": "What is the Winning score when the To par was \u221221?", "context": "CREATE TABLE table_name_21 (winning_score VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE tournament = \"wgc-accenture match play championship\"", "question": "What is the Date for the wgc-accenture match play championship?", "context": "CREATE TABLE table_name_83 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_43 WHERE date = \"27 feb 2011\"", "question": "What is the Margin of victory on 27 feb 2011?", "context": "CREATE TABLE table_name_43 (margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_70 WHERE winning_score = 65 - 67 - 68 - 67 = 267", "question": "What is the Tournament when the winning score was 65-67-68-67=267?", "context": "CREATE TABLE table_name_70 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT mission FROM table_name_3 WHERE apogee = \"705 km\"", "question": "Which Mission has a Apogee of 705 km?", "context": "CREATE TABLE table_name_3 (mission VARCHAR, apogee VARCHAR)"}, {"answer": "SELECT motor FROM table_name_98 WHERE apogee = \"713 km\"", "question": "What kind of Motor has a Apogee of 713 km?", "context": "CREATE TABLE table_name_98 (motor VARCHAR, apogee VARCHAR)"}, {"answer": "SELECT mission FROM table_name_47 WHERE apogee = \"707 km\"", "question": "What kind of Mission has a Apogee of 707 km?", "context": "CREATE TABLE table_name_47 (mission VARCHAR, apogee VARCHAR)"}, {"answer": "SELECT apogee FROM table_name_46 WHERE mission = \"maxus 3\"", "question": "Which Apogee has a Mission of maxus 3?", "context": "CREATE TABLE table_name_46 (apogee VARCHAR, mission VARCHAR)"}, {"answer": "SELECT mission FROM table_name_21 WHERE date = \"2003 apr 1\"", "question": "Which Mission is on 2003 apr 1?", "context": "CREATE TABLE table_name_21 (mission VARCHAR, date VARCHAR)"}, {"answer": "SELECT ranking FROM table_name_21 WHERE ep__number < 24 AND rating = \"25.7\"", "question": "What was the ranking for the episode number before 24 that had a rating of 25.7?", "context": "CREATE TABLE table_name_21 (ranking VARCHAR, ep__number VARCHAR, rating VARCHAR)"}, {"answer": "SELECT rating FROM table_name_12 WHERE season = \"season 10\"", "question": "What is the rating of the season 10?", "context": "CREATE TABLE table_name_12 (rating VARCHAR, season VARCHAR)"}, {"answer": "SELECT rating FROM table_name_23 WHERE viewers__households_in_millions_ = \"18.17\"", "question": "What was the rating of the season that had 18.17 million household viewers?", "context": "CREATE TABLE table_name_23 (rating VARCHAR, viewers__households_in_millions_ VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_40 WHERE bronze = 2", "question": "How many totals have 2 for the bronze?", "context": "CREATE TABLE table_name_40 (total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_34 WHERE bronze < 0", "question": "What is the smallest silver that has a bronze less than 0?", "context": "CREATE TABLE table_name_34 (silver INTEGER, bronze INTEGER)"}, {"answer": "SELECT college FROM table_name_93 WHERE pick = 5", "question": "What college received Pick 5?", "context": "CREATE TABLE table_name_93 (college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_53 WHERE college = \"united states international university\"", "question": "For the United States International University, what was the highest pick number allowed?", "context": "CREATE TABLE table_name_53 (pick INTEGER, college VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE week = 2", "question": "what was the date of the game on week 2?", "context": "CREATE TABLE table_name_2 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT subj_pres FROM table_name_78 WHERE plur_pret = \"u\" AND sing_pret = \"ou\" AND sing_pres = \"\u00fb\"", "question": "What is the subjunctive present that is associated with a plural preterite of u, a singular preterite of ou, and a singular present of \u00fb?", "context": "CREATE TABLE table_name_78 (subj_pres VARCHAR, sing_pres VARCHAR, plur_pret VARCHAR, sing_pret VARCHAR)"}, {"answer": "SELECT plur_pres FROM table_name_61 WHERE past_part = \"e\" AND inf_stem = \"e\"", "question": "What is the plural present that has a past participle of e and an infinitive stem of e?", "context": "CREATE TABLE table_name_61 (plur_pres VARCHAR, past_part VARCHAR, inf_stem VARCHAR)"}, {"answer": "SELECT inf_stem FROM table_name_10 WHERE subj_pres = \"ou\"", "question": "What is the infinitive stem that has a subjunctive present of ou?", "context": "CREATE TABLE table_name_10 (inf_stem VARCHAR, subj_pres VARCHAR)"}, {"answer": "SELECT inf_stem FROM table_name_13 WHERE subj_pres = \"a\" AND plur_pret = \"uo\"", "question": "What is the infinitive stem that is associated with a subjunctive present of a and a plural preterite of uo?", "context": "CREATE TABLE table_name_13 (inf_stem VARCHAR, subj_pres VARCHAR, plur_pret VARCHAR)"}, {"answer": "SELECT sing_pres FROM table_name_51 WHERE sing_pret = \"ou\" AND subj_pres = \"ie\"", "question": "What is the singular present that is associated with a singular preterite of ou and a subjunctive present of ie?", "context": "CREATE TABLE table_name_51 (sing_pres VARCHAR, sing_pret VARCHAR, subj_pres VARCHAR)"}, {"answer": "SELECT plur_pret FROM table_name_93 WHERE subj_pret = \"\u00fc\" AND inf_stem = \"e + l/r + cons.\"", "question": "What is the plural preterite that is associated with a subjunctive preterite of \u00fc and has an infinitive stem of e + l/r + cons.?", "context": "CREATE TABLE table_name_93 (plur_pret VARCHAR, subj_pret VARCHAR, inf_stem VARCHAR)"}, {"answer": "SELECT history FROM table_name_95 WHERE built > 1997 AND name = \"speedrunner iv (ssc4)\"", "question": "What is the history behind the vessel Speedrunner IV (SSC4) built after 1997?", "context": "CREATE TABLE table_name_95 (history VARCHAR, built VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(built) FROM table_name_44 WHERE name = \"queen nefertiti (pegasus two)\"", "question": "What is the most recent year that Queen Nefertiti (pegasus two) was built?", "context": "CREATE TABLE table_name_44 (built INTEGER, name VARCHAR)"}, {"answer": "SELECT history FROM table_name_88 WHERE name = \"speedrunner iii (ssc3)\"", "question": "What is the history behind Speedrunner III (SSC3)?", "context": "CREATE TABLE table_name_88 (history VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_6 WHERE date = \"november 8, 1981\"", "question": "What was the opponent on november 8, 1981?", "context": "CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(time__seconds_) FROM table_name_99 WHERE nation___athlete_s_ = \"sylke otto - germany\"", "question": "What is the longest Time (seconds), when the Nation - athlete(s) is Sylke Otto - Germany?", "context": "CREATE TABLE table_name_99 (time__seconds_ INTEGER, nation___athlete_s_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE sport = \"luge - men's doubles\" AND record = \"start\"", "question": "What is the Date, when the Sport is luge - men's doubles, and when the Record is, \"start\"?", "context": "CREATE TABLE table_name_90 (date VARCHAR, sport VARCHAR, record VARCHAR)"}, {"answer": "SELECT nation___athlete_s_ FROM table_name_12 WHERE sport = \"luge - men's singles\" AND record = \"track\"", "question": "What is the Nation - athlete(s), when the Sport is luge - men's singles, and when the Record is, \"track\"?", "context": "CREATE TABLE table_name_12 (nation___athlete_s_ VARCHAR, sport VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE record = \"track\" AND time__seconds_ > 43.564 AND sport = \"luge - women's singles\"", "question": "What is the Date, when the Record is, \"track\", when the Time (seconds) is longer than 43.564, and when the Sport is luge - women's singles?", "context": "CREATE TABLE table_name_66 (date VARCHAR, sport VARCHAR, record VARCHAR, time__seconds_ VARCHAR)"}, {"answer": "SELECT MAX(z___p__) FROM table_name_46 WHERE element = \"arsenic\" AND n___n__ > 42", "question": "What is the highest Z (p) when arsenic is the element, and the N (n) is more than 42", "context": "CREATE TABLE table_name_46 (z___p__ INTEGER, element VARCHAR, n___n__ VARCHAR)"}, {"answer": "SELECT AVG(z___p__) FROM table_name_37 WHERE n___n__ < 30 AND element = \"scandium\"", "question": "What is the highest Z (p) when the N (n) is less than 30, and scandium is the element?", "context": "CREATE TABLE table_name_37 (z___p__ INTEGER, n___n__ VARCHAR, element VARCHAR)"}, {"answer": "SELECT isotopic_mass___u__ FROM table_name_6 WHERE nuclide = \"89 y\"", "question": "What is the isotopic mass (u) when the nuclide is 89 y?", "context": "CREATE TABLE table_name_6 (isotopic_mass___u__ VARCHAR, nuclide VARCHAR)"}, {"answer": "SELECT element FROM table_name_79 WHERE nuclide = \"55 mn\"", "question": "What is the Element when the Nuclide is 55 mn?", "context": "CREATE TABLE table_name_79 (element VARCHAR, nuclide VARCHAR)"}, {"answer": "SELECT venue FROM table_name_46 WHERE date = \"23,24,26,27,28,29 feb, 1 mar 1912\"", "question": "What is Venue, when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?", "context": "CREATE TABLE table_name_46 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE venue = \"melbourne cricket ground\" AND result = \"eng by inns&225 runs\"", "question": "What is Date, when Venue is Melbourne Cricket Ground, and when Result is Eng By Inns&225 Runs?", "context": "CREATE TABLE table_name_95 (date VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_31 WHERE venue = \"sydney cricket ground\" AND date = \"23,24,26,27,28,29 feb, 1 mar 1912\"", "question": "What is Result, when Venue is Sydney Cricket Ground, and when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?", "context": "CREATE TABLE table_name_31 (result VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_38 WHERE date = \"30 dec, 1,2,3 jan 1911/2\"", "question": "What is Away Captain, when Date is 30 Dec, 1,2,3 Jan 1911/2?", "context": "CREATE TABLE table_name_38 (away_captain VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_82 WHERE date = \"23,24,26,27,28,29 feb, 1 mar 1912\"", "question": "What is Venue, when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?", "context": "CREATE TABLE table_name_82 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_48 WHERE date = \"23,24,26,27,28,29 feb, 1 mar 1912\"", "question": "What is Home Captain, when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?", "context": "CREATE TABLE table_name_48 (home_captain VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_16 WHERE region = \"uk\" AND label = \"razor records\"", "question": "What is Catalog, when the Region is UK, and when Label is Razor Records?", "context": "CREATE TABLE table_name_16 (catalog VARCHAR, region VARCHAR, label VARCHAR)"}, {"answer": "SELECT MAX(date) FROM table_name_58 WHERE label = \"captain oi! records\"", "question": "What is the latest Date, when Label is Captain Oi! Records?", "context": "CREATE TABLE table_name_58 (date INTEGER, label VARCHAR)"}, {"answer": "SELECT region FROM table_name_61 WHERE date = 2004", "question": "What is Region, when Date is 2004?", "context": "CREATE TABLE table_name_61 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_32 WHERE format = \"cd\" AND region = \"us\" AND date < 2004 AND label = \"taang! records\"", "question": "What is Catalog, when Format is CD, when Region is US, when Date is before 2004, and when Label is Taang! Records?", "context": "CREATE TABLE table_name_32 (catalog VARCHAR, label VARCHAR, date VARCHAR, format VARCHAR, region VARCHAR)"}, {"answer": "SELECT MAX(top_division_titles) FROM table_name_56 WHERE club = \"tammeka\"", "question": "What is the largest amount of top division titles featuring the tammeka club?", "context": "CREATE TABLE table_name_56 (top_division_titles INTEGER, club VARCHAR)"}, {"answer": "SELECT MAX(top_division_titles) FROM table_name_13 WHERE position_in_2012 = \"10th\"", "question": "What is the largest number of top division titles with a 2012 position of 10th?", "context": "CREATE TABLE table_name_13 (top_division_titles INTEGER, position_in_2012 VARCHAR)"}, {"answer": "SELECT COUNT(number_of_seasons_in_meistriliiga) FROM table_name_17 WHERE club = \"kuressaare\" AND first_season_in_top_division > 2000", "question": "How many seasons in Meistriliiga when the club was kuressaare also had a first season in top division of more than 2000?", "context": "CREATE TABLE table_name_17 (number_of_seasons_in_meistriliiga VARCHAR, club VARCHAR, first_season_in_top_division VARCHAR)"}, {"answer": "SELECT name FROM table_name_30 WHERE law_school_attended = \"columbia law school\" AND appointed = 2004", "question": "Who attended Columbia law school and was appointed in 2004?", "context": "CREATE TABLE table_name_30 (name VARCHAR, law_school_attended VARCHAR, appointed VARCHAR)"}, {"answer": "SELECT SUM(term_expiration) FROM table_name_22 WHERE appointing_governor = \"george pataki, republican\" AND appointed > 2004", "question": "Which Term expiration has an Appointing Governor of george pataki, republican, and an Appointed larger than 2004?", "context": "CREATE TABLE table_name_22 (term_expiration INTEGER, appointing_governor VARCHAR, appointed VARCHAR)"}, {"answer": "SELECT law_school_attended FROM table_name_14 WHERE appointed > 2004 AND name = \"judge sheila abdus-salaam\"", "question": "Which law school did judge sheila abdus-salaam attend, who was appointed in 2004?", "context": "CREATE TABLE table_name_14 (law_school_attended VARCHAR, appointed VARCHAR, name VARCHAR)"}, {"answer": "SELECT races FROM table_name_51 WHERE top_5 > 2 AND avg_start = 6.5", "question": "What is the number of races having top 5s over 2 and average starts of 6.5?", "context": "CREATE TABLE table_name_51 (races VARCHAR, top_5 VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT MIN(avg_finish) FROM table_name_7 WHERE top_5 < 0", "question": "What is the lowest average finish having top 5s of 0?", "context": "CREATE TABLE table_name_7 (avg_finish INTEGER, top_5 INTEGER)"}, {"answer": "SELECT volume AS :issue FROM table_name_97 WHERE weeks_on_top > 1 AND artist = \"peter cetera\"", "question": "What Volume:Issue that has Peter Cetera as the artist and was on top for longer than 1 week?", "context": "CREATE TABLE table_name_97 (volume VARCHAR, weeks_on_top VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MAX(weeks_on_top) FROM table_name_74 WHERE artist = \"bruce hornsby and the range\"", "question": "What is the longest weeks on top when the Artist was Bruce Hornsby and the Range?", "context": "CREATE TABLE table_name_74 (weeks_on_top INTEGER, artist VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE attendance = \"arsenal win 4-2 on penalties\"", "question": "What is the Score of the game with arsenal win 4-2 on penalties in the attendance field?", "context": "CREATE TABLE table_name_85 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_55 WHERE tie_no = \"3\"", "question": "What team was the Away team when the Tie no was 3?", "context": "CREATE TABLE table_name_55 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_30 WHERE away_team = \"burnley\"", "question": "What is the Tie no when the away team was Burnley?", "context": "CREATE TABLE table_name_30 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_10 WHERE away_team = \"sheffield united\"", "question": "What shows for Tie no when Sheffield United was the Away team?", "context": "CREATE TABLE table_name_10 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_32 WHERE silver = 1 AND bronze = 3 AND total < 8", "question": "What rank is the team with 1 silver, 3 bronze and a total of less than 8 medals?", "context": "CREATE TABLE table_name_32 (rank VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(balls_faced) FROM table_name_4 WHERE average = 39.13 AND runs_scored > 313", "question": "Which Balls Faced has a Average of 39.13 and Runs Scored larger than 313?", "context": "CREATE TABLE table_name_4 (balls_faced INTEGER, average VARCHAR, runs_scored VARCHAR)"}, {"answer": "SELECT name FROM table_name_47 WHERE average = 48.83", "question": "Which Name has an Average of 48.83?", "context": "CREATE TABLE table_name_47 (name VARCHAR, average VARCHAR)"}, {"answer": "SELECT AVG(sr) FROM table_name_48 WHERE average = 39.13 AND balls_faced > 318", "question": "Which average S.R. has an Average of 39.13 and Balls Faced larger than 318?", "context": "CREATE TABLE table_name_48 (sr INTEGER, average VARCHAR, balls_faced VARCHAR)"}, {"answer": "SELECT SUM(sr) FROM table_name_35 WHERE runs_scored = 161 AND average > 26.83", "question": "How many S.R. that has Runs Scored of 161 and an Average larger than 26.83?", "context": "CREATE TABLE table_name_35 (sr INTEGER, runs_scored VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_name_74 WHERE sr = 70.43 AND runs_scored < 293", "question": "What kind of Average has a S.R. of 70.43 and Runs Scored smaller than 293?", "context": "CREATE TABLE table_name_74 (average INTEGER, sr VARCHAR, runs_scored VARCHAR)"}, {"answer": "SELECT sr FROM table_name_46 WHERE average < 23.63 AND runs_scored = 49", "question": "Which S.R. has a Average smaller than 23.63 Runs Scored of 49?", "context": "CREATE TABLE table_name_46 (sr VARCHAR, average VARCHAR, runs_scored VARCHAR)"}, {"answer": "SELECT acquisition_via FROM table_name_41 WHERE number < 22 AND season = \"2002\"", "question": "What is the Acquisition that has less than 22, in the 2002 season?", "context": "CREATE TABLE table_name_41 (acquisition_via VARCHAR, number VARCHAR, season VARCHAR)"}, {"answer": "SELECT number FROM table_name_19 WHERE acquisition_via = \"import\" AND season = \"2002\"", "question": "What is the number of the acquisition of import in the 2002 season?", "context": "CREATE TABLE table_name_19 (number VARCHAR, acquisition_via VARCHAR, season VARCHAR)"}, {"answer": "SELECT name FROM table_name_80 WHERE season = \"2002\" AND acquisition_via = \"free agency\"", "question": "What is the name from the 2002 season, and acquired via free agency?", "context": "CREATE TABLE table_name_80 (name VARCHAR, season VARCHAR, acquisition_via VARCHAR)"}, {"answer": "SELECT name FROM table_name_55 WHERE acquisition_via = \"import\" AND number > 22", "question": "What is the name of the player acquired via import and larger than 22?", "context": "CREATE TABLE table_name_55 (name VARCHAR, acquisition_via VARCHAR, number VARCHAR)"}, {"answer": "SELECT prohibition_ticket FROM table_name_39 WHERE greenback_ticket = \"abraham j. cuddeback\"", "question": "Who was on the prohibition ticket when Abraham J. Cuddeback was on the Greenback ticket?", "context": "CREATE TABLE table_name_39 (prohibition_ticket VARCHAR, greenback_ticket VARCHAR)"}, {"answer": "SELECT office FROM table_name_97 WHERE greenback_ticket = \"richard m. griffin\"", "question": "Which office was Richard M. Griffin vying for on the Greenback ticket?", "context": "CREATE TABLE table_name_97 (office VARCHAR, greenback_ticket VARCHAR)"}, {"answer": "SELECT prohibition_ticket FROM table_name_73 WHERE greenback_ticket = \"thomas armstrong\"", "question": "Who was on the Prohibition ticket when Thomas Armstrong ran on the Greenback ticket?", "context": "CREATE TABLE table_name_73 (prohibition_ticket VARCHAR, greenback_ticket VARCHAR)"}, {"answer": "SELECT prohibition_ticket FROM table_name_76 WHERE greenback_ticket = \"thomas armstrong\"", "question": "Who was on the prohibition ticket when the Greenback ticket had Thomas Armstrong?", "context": "CREATE TABLE table_name_76 (prohibition_ticket VARCHAR, greenback_ticket VARCHAR)"}, {"answer": "SELECT republican_ticket FROM table_name_8 WHERE office = \"inspector of state prisons\"", "question": "Who was on the Republican ticket for the office of Inspector of state prisons?", "context": "CREATE TABLE table_name_8 (republican_ticket VARCHAR, office VARCHAR)"}, {"answer": "SELECT office FROM table_name_31 WHERE prohibition_ticket = \"henry hagner\"", "question": "What office did Henry Hagner run for on the prohibition ticket?", "context": "CREATE TABLE table_name_31 (office VARCHAR, prohibition_ticket VARCHAR)"}, {"answer": "SELECT home FROM table_name_81 WHERE record = \"16-8\"", "question": "What is the home of the team with a 16-8 record?", "context": "CREATE TABLE table_name_81 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE score = \"96-89\"", "question": "What is the date of the game that ended with a score of 96-89?", "context": "CREATE TABLE table_name_92 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_68 WHERE visitor = \"indiana\"", "question": "How many people went to the game with Indiana visiting?", "context": "CREATE TABLE table_name_68 (attendance VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE home = \"cleveland\" AND record = \"20-8\"", "question": "What is the date of the Cleveland home game with a 20-8 record?", "context": "CREATE TABLE table_name_74 (date VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE home = \"new jersey\"", "question": "What is the score of the New Jersey home game?", "context": "CREATE TABLE table_name_42 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_29 WHERE score = \"75-90\"", "question": "How many people attended the game with a final score of 75-90?", "context": "CREATE TABLE table_name_29 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_79 WHERE player = \"mike weir\"", "question": "What is Mike Weir's To par?", "context": "CREATE TABLE table_name_79 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_48 WHERE player = \"vijay singh\"", "question": "From Country is Vijay Singh?", "context": "CREATE TABLE table_name_48 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_71 WHERE place = \"t5\"", "question": "What is the Player in T5 Place?", "context": "CREATE TABLE table_name_71 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_32 WHERE score = 73 - 73 - 65 - 73 = 284", "question": "What is the Place of the Player with a Score of 73-73-65-73=284?", "context": "CREATE TABLE table_name_32 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_13 WHERE venue = \"oval\"", "question": "Who was the Home captain that played at the venue Oval?", "context": "CREATE TABLE table_name_13 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_83 WHERE result = \"draw\" AND date = \"12,13,14 jun 1902\"", "question": "Who was the Away captain that played on 12,13,14 Jun 1902 which resulted in a draw?", "context": "CREATE TABLE table_name_83 (away_captain VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_95 WHERE date = \"11,12,13 aug 1902\"", "question": "Who is the Away captain that played on 11,12,13 Aug 1902?", "context": "CREATE TABLE table_name_95 (away_captain VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_31 WHERE date = \"29,30\u201331 may 1902\"", "question": "What was the result of the game that was played on 29,30\u201331 May 1902?", "context": "CREATE TABLE table_name_31 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_61 WHERE date = \"3,4,5 jul 1902\"", "question": "What was the result of the game that was played on 3,4,5 Jul 1902?", "context": "CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(ends_lost) FROM table_name_67 WHERE blank_ends = 15 AND stolen_ends < 14", "question": "What is the number of ends lost when there are 15 blank ends, less than 14 stolen ends?", "context": "CREATE TABLE table_name_67 (ends_lost VARCHAR, blank_ends VARCHAR, stolen_ends VARCHAR)"}, {"answer": "SELECT COUNT(blank_ends) FROM table_name_57 WHERE stolen_ends = 17 AND skip = \"jennifer jones\" AND shot_pct > 83", "question": "What is the number of blank ends when the stolen ends were 17 and Jennifer Jones was skipped with a more than 83 shot pct?", "context": "CREATE TABLE table_name_57 (blank_ends VARCHAR, shot_pct VARCHAR, stolen_ends VARCHAR, skip VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_18 WHERE f_laps > 1 AND points = \"80\"", "question": "What is the average Wins, when F/Laps is greater than 1, and when Points is 80?", "context": "CREATE TABLE table_name_18 (wins INTEGER, f_laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(races) FROM table_name_82 WHERE podiums < 3 AND wins = 0 AND season > 2001 AND points = \"32\"", "question": "What is the sum of Races, when Podiums is less than 3, when Wins is 0, when Season is after 2001, and when Points is 32?", "context": "CREATE TABLE table_name_82 (races INTEGER, points VARCHAR, season VARCHAR, podiums VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(season) FROM table_name_14 WHERE f_laps = 1 AND poles < 0", "question": "What is the average Season, when F/Laps is 1, and when Poles is less than 0?", "context": "CREATE TABLE table_name_14 (season INTEGER, f_laps VARCHAR, poles VARCHAR)"}, {"answer": "SELECT MAX(poles) FROM table_name_56 WHERE series = \"ginetta championship\" AND season < 2007", "question": "What is the highest Poles, when Series is Ginetta Championship, and when Season is before 2007?", "context": "CREATE TABLE table_name_56 (poles INTEGER, series VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(wk_7) FROM table_name_1 WHERE wk_3 = 12 AND wk_4 < 9 AND wk_2 > 11", "question": "What is the lowest wk 7 with a wk 3 value of 12, a wk 4 less than 9, and a wk 2 greater than 11?", "context": "CREATE TABLE table_name_1 (wk_7 INTEGER, wk_2 VARCHAR, wk_3 VARCHAR, wk_4 VARCHAR)"}, {"answer": "SELECT MIN(wk_3) FROM table_name_11 WHERE wk_14 = \"n/r\" AND wk_2 = 7 AND wk_11 > 18", "question": "What is the lowest wk 3 value with an n/r in wk 14, a wk 2 value of 7, and a wk 11 value greater than 18?", "context": "CREATE TABLE table_name_11 (wk_3 INTEGER, wk_11 VARCHAR, wk_14 VARCHAR, wk_2 VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE actual_title = \"archie bunker's place\"", "question": "What is the Date for the actual title archie bunker's place?", "context": "CREATE TABLE table_name_42 (date VARCHAR, actual_title VARCHAR)"}, {"answer": "SELECT artist FROM table_name_13 WHERE spoofed_title = \"the moron downer jr. show\"", "question": "What is the name of the Artist for the Spoofed Title of the moron downer jr. show?", "context": "CREATE TABLE table_name_13 (artist VARCHAR, spoofed_title VARCHAR)"}, {"answer": "SELECT issue FROM table_name_50 WHERE spoofed_title = \"the crockford files\"", "question": "What issue was the Spoofed Title of the crockford files in?", "context": "CREATE TABLE table_name_50 (issue VARCHAR, spoofed_title VARCHAR)"}, {"answer": "SELECT writer FROM table_name_21 WHERE issue = 224", "question": "What is the name of the writer for issue 224?", "context": "CREATE TABLE table_name_21 (writer VARCHAR, issue VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_67 WHERE lost = 2 AND position < 1", "question": "What is the smallest amount of points had a lost number of 2 when the position was less than 1?", "context": "CREATE TABLE table_name_67 (points INTEGER, lost VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_92 WHERE position < 1", "question": "What is the mean number of against when the position is less than 1?", "context": "CREATE TABLE table_name_92 (against INTEGER, position INTEGER)"}, {"answer": "SELECT AVG(played) FROM table_name_45 WHERE points < 18 AND position < 8", "question": "What is the mean number of played when there are less than 18 points and the position is less than 8?", "context": "CREATE TABLE table_name_45 (played INTEGER, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_93 WHERE against < 37 AND drawn > 2 AND played > 20", "question": "What is the sum of lost when against is less than 37, drawn is more than 2, and played is more than 20?", "context": "CREATE TABLE table_name_93 (lost VARCHAR, played VARCHAR, against VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT COUNT(area__km_2__) FROM table_name_32 WHERE name = \"drakenstein\" AND population__2011_ < 251 OFFSET 262", "question": "What is the total area of drakenstein and a population less than 251,262?", "context": "CREATE TABLE table_name_32 (area__km_2__ VARCHAR, name VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT AVG(area__km_2__) FROM table_name_38 WHERE name = \"stellenbosch\" AND population__2011_ > 155 OFFSET 733", "question": "For Stellenbosch, which has a population larger than 155,733, what is the average area?", "context": "CREATE TABLE table_name_38 (area__km_2__ INTEGER, name VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT MIN(population__2011_) FROM table_name_89 WHERE density__inhabitants_km_2__ = 36.7", "question": "What is the lowest population for the area that has a density of 36.7?", "context": "CREATE TABLE table_name_89 (population__2011_ INTEGER, density__inhabitants_km_2__ VARCHAR)"}, {"answer": "SELECT COUNT(points_against) FROM table_name_97 WHERE team = \"cardiff\" AND tries_against < 7", "question": "How many points against has team Cardiff had when there were less than 7 tries?", "context": "CREATE TABLE table_name_97 (points_against VARCHAR, team VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT SUM(fog__days_year_) FROM table_name_50 WHERE rain__mm_year_ = \"1 109\"", "question": "What is the amount of fog where the rain is 1 109?", "context": "CREATE TABLE table_name_50 (fog__days_year_ INTEGER, rain__mm_year_ VARCHAR)"}, {"answer": "SELECT SUM(snow__days_year_) FROM table_name_61 WHERE storms__days_year_ = 31", "question": "What is the amount of snow where the days for storms are 31?", "context": "CREATE TABLE table_name_61 (snow__days_year_ INTEGER, storms__days_year_ VARCHAR)"}, {"answer": "SELECT AVG(snow__days_year_) FROM table_name_23 WHERE sunshine__hrs_year_ = \"1 633\" AND storms__days_year_ < 29", "question": "What is the amount of snow where the sunshine is 1 633, and storms are lower than 29?", "context": "CREATE TABLE table_name_23 (snow__days_year_ INTEGER, sunshine__hrs_year_ VARCHAR, storms__days_year_ VARCHAR)"}, {"answer": "SELECT COUNT(storms__days_year_) FROM table_name_74 WHERE fog__days_year_ < 74 AND sunshine__hrs_year_ = \"2 668\"", "question": "What are the number of storms where fog is lower than 74, and sunshine is 2 668?", "context": "CREATE TABLE table_name_74 (storms__days_year_ VARCHAR, fog__days_year_ VARCHAR, sunshine__hrs_year_ VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_12 WHERE home_team = \"leeds united\" AND competition = \"league cup\"", "question": "Who is the away team for the tome team Leeds United, at the League Cup Competition?", "context": "CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR, competition VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_69 WHERE entrant = \"patrick racing\" AND start > 6", "question": "What chassis has patrick racing as an entrant, with a start greater than 6?", "context": "CREATE TABLE table_name_69 (chassis VARCHAR, entrant VARCHAR, start VARCHAR)"}, {"answer": "SELECT AVG(finish) FROM table_name_89 WHERE start = 24 AND year > 1987", "question": "What is the average finish that has 24 as the start, with a year after 1987?", "context": "CREATE TABLE table_name_89 (finish INTEGER, start VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_59 WHERE chassis = \"lola t93/00\" AND start < 14", "question": "What is the lowest year that has lola t93/00 as the chassis with a start leas than 14?", "context": "CREATE TABLE table_name_59 (year INTEGER, chassis VARCHAR, start VARCHAR)"}, {"answer": "SELECT MIN(finish) FROM table_name_62 WHERE start > 27 AND year > 1985", "question": "What is the lowest finish that has a start greater than 27, with a year after 1985?", "context": "CREATE TABLE table_name_62 (finish INTEGER, start VARCHAR, year VARCHAR)"}, {"answer": "SELECT start FROM table_name_22 WHERE engine = \"ford cosworth dfx\" AND year > 1981 AND entrant = \"kraco enterprises\"", "question": "What start has a ford cosworth dfx as the engine, a year later than 1981, and kraco enterprises as the entrant?", "context": "CREATE TABLE table_name_22 (start VARCHAR, entrant VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE team_record = \"2-0\"", "question": "What is the Date, when the Team Record is 2-0?", "context": "CREATE TABLE table_name_3 (date VARCHAR, team_record VARCHAR)"}, {"answer": "SELECT team_record FROM table_name_52 WHERE result = \"l 0\u201324\"", "question": "What is the Team Record, when the Result is l 0\u201324?", "context": "CREATE TABLE table_name_52 (team_record VARCHAR, result VARCHAR)"}, {"answer": "SELECT team_record FROM table_name_34 WHERE attendance = \"16,151\"", "question": "What is Team Record, when Attendance is 16,151?", "context": "CREATE TABLE table_name_34 (team_record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_92 WHERE points > 4 AND match > 5", "question": "What is the highest draw that has points greater than 4, with a match greater than 5?", "context": "CREATE TABLE table_name_92 (draw INTEGER, points VARCHAR, match VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_14 WHERE lost < 4 AND team = \"gwardia bydgoszcz\" AND match > 5", "question": "What is the average draw that has a lost less than 4, gwardia bydgoszcz as the team, with a match greater than 5?", "context": "CREATE TABLE table_name_14 (draw INTEGER, match VARCHAR, lost VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(match) FROM table_name_99 WHERE lost > 3 AND team = \"kolejarz rawicz\"", "question": "What is the lowest match that has a lost greater than 3, and kolejarz rawicz as the team?", "context": "CREATE TABLE table_name_99 (match INTEGER, lost VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(match) FROM table_name_32 WHERE lost = 0", "question": "How many matches have 0 as the lost?", "context": "CREATE TABLE table_name_32 (match VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_44 WHERE score = \"w 104\u201390 (ot)\"", "question": "What is the sum of Game with a Score that is w 104\u201390 (ot)?", "context": "CREATE TABLE table_name_44 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_70 WHERE game = 56", "question": "What is the High rebounds of a Game with 56?", "context": "CREATE TABLE table_name_70 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT package_option FROM table_name_84 WHERE country = \"italy\" AND content = \"general television\" AND television_service = \"cielo\"", "question": "What was the option from Italy with general television content, and the Cielo television service?", "context": "CREATE TABLE table_name_84 (package_option VARCHAR, television_service VARCHAR, country VARCHAR, content VARCHAR)"}, {"answer": "SELECT country FROM table_name_91 WHERE content = \"tematico\" AND package_option = \"sky tv\" AND television_service = \"lei\"", "question": "What country has Tematico Content, and a package with sky TV and the Lei television service?", "context": "CREATE TABLE table_name_91 (country VARCHAR, television_service VARCHAR, content VARCHAR, package_option VARCHAR)"}, {"answer": "SELECT television_service FROM table_name_30 WHERE package_option = \"sky tv\" AND language = \"italian english\"", "question": "What is the television service that has package with sky tv, and it in Italian English?", "context": "CREATE TABLE table_name_30 (television_service VARCHAR, package_option VARCHAR, language VARCHAR)"}, {"answer": "SELECT language FROM table_name_55 WHERE content = \"tematico\" AND package_option = \"sky tv\" AND television_service = \"fox crime\"", "question": "What language is the Tematico content with a sky tv package, and Fox Crime television service?", "context": "CREATE TABLE table_name_55 (language VARCHAR, television_service VARCHAR, content VARCHAR, package_option VARCHAR)"}, {"answer": "SELECT country FROM table_name_95 WHERE television_service = \"cartello promozionale sky hd\"", "question": "What country has a television service with Cartello Promozionale sky hd?", "context": "CREATE TABLE table_name_95 (country VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT country FROM table_name_7 WHERE television_service = \"fox\"", "question": "What country has a Fox television service?", "context": "CREATE TABLE table_name_7 (country VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_62 WHERE winning_team = \"mathiasen motorsports\" AND pole_position = \"dane cameron\"", "question": "Who drove for Mathiasen Motorsports with dane cameron as pole position?", "context": "CREATE TABLE table_name_62 (winning_driver VARCHAR, winning_team VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_84 WHERE winning_driver = \"jonathan bomarito\" AND fastest_lap = \"jonathan summerton\"", "question": "What winning team did Jonathan bomarito drive for when jonathan summerton had the fastest lap?", "context": "CREATE TABLE table_name_84 (winning_team VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT report FROM table_name_39 WHERE fastest_lap = \"douglas soares\"", "question": "When Douglas Soares had the fastest lap, what was the report?", "context": "CREATE TABLE table_name_39 (report VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_97 WHERE winning_team = \"mathiasen motorsports\" AND pole_position = \"jonathan bomarito\"", "question": "When the winning team of mathiasen motorsports has a pole position of jonathan bomarito, who has the fastest lap?", "context": "CREATE TABLE table_name_97 (fastest_lap VARCHAR, winning_team VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT report FROM table_name_42 WHERE winning_driver = \"jonathan summerton\" AND fastest_lap = \"dane cameron\"", "question": "When the driver jonathan summerton won and dane cameron had the fastest lap, what was the report?", "context": "CREATE TABLE table_name_42 (report VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_93 WHERE competition = \"olympic games\" AND venue = \"atlanta, united states\"", "question": "Which Year has a Competition of olympic games, and a Venue of atlanta, united states?", "context": "CREATE TABLE table_name_93 (year INTEGER, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_30 WHERE year = 1993", "question": "Which Competition has a Year of 1993?", "context": "CREATE TABLE table_name_30 (competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT notes FROM table_name_78 WHERE competition = \"venice marathon\"", "question": "Which Notes has a Competition of venice marathon?", "context": "CREATE TABLE table_name_78 (notes VARCHAR, competition VARCHAR)"}, {"answer": "SELECT year FROM table_name_13 WHERE venue = \"atlanta, united states\"", "question": "Which Year has a Venue of atlanta, united states?", "context": "CREATE TABLE table_name_13 (year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT notes FROM table_name_89 WHERE venue = \"barcelona, spain\"", "question": "Which Notes has a Venue of barcelona, spain?", "context": "CREATE TABLE table_name_89 (notes VARCHAR, venue VARCHAR)"}, {"answer": "SELECT event FROM table_name_36 WHERE year = 1986", "question": "Which Event has a Year of 1986?", "context": "CREATE TABLE table_name_36 (event VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(share) FROM table_name_56 WHERE viewers__millions_ > 7.82 AND rank__timeslot_ = \"3\" AND rank__week_ = \"54\"", "question": "What is the average share for episodes with over 7.82 viewers, ranks of 3 and a weekly rank of 54?", "context": "CREATE TABLE table_name_56 (share INTEGER, rank__week_ VARCHAR, viewers__millions_ VARCHAR, rank__timeslot_ VARCHAR)"}, {"answer": "SELECT rank__week_ FROM table_name_77 WHERE share > 7 AND rating / SHARE(18 - 49) = 2.3 / 7", "question": "What is the weekly rank for the episode with a share over 7 and a rating/share of 2.3/7?", "context": "CREATE TABLE table_name_77 (rank__week_ VARCHAR, share VARCHAR, rating VARCHAR)"}, {"answer": "SELECT rank__week_ FROM table_name_73 WHERE viewers__millions_ > 7.14 AND rank__night_ = \"5\" AND rating / SHARE(18 - 49) = 2.9 / 10", "question": "What is the weekly rank of the episode with more than 7.14mil viewers, a nightly rank of 5, and a rating/share of 2.9/10?", "context": "CREATE TABLE table_name_73 (rank__week_ VARCHAR, viewers__millions_ VARCHAR, rank__night_ VARCHAR, rating VARCHAR)"}, {"answer": "SELECT COUNT(gain) FROM table_name_90 WHERE long < 4 AND name = \"brandon mcrae\" AND avg_g < -0.1", "question": "What is the total gain for Brandon Mcrae with a loss less than 4, and an Avg/g less than -0.1?", "context": "CREATE TABLE table_name_90 (gain VARCHAR, avg_g VARCHAR, long VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(long) FROM table_name_16 WHERE gp_gs = \"11-8\" AND gain < 228", "question": "What is the lowest long with a Gp-GS of 11-8, and a gain less than 228?", "context": "CREATE TABLE table_name_16 (long INTEGER, gp_gs VARCHAR, gain VARCHAR)"}, {"answer": "SELECT MIN(gain) FROM table_name_40 WHERE long = 18 AND loss < 191", "question": "What is the lowest gain with an 18 long, and a loss less than 191?", "context": "CREATE TABLE table_name_40 (gain INTEGER, long VARCHAR, loss VARCHAR)"}, {"answer": "SELECT SUM(1938) FROM table_name_8 WHERE 1933 < 68.3 AND 1940 < 4.02", "question": "What is the sum of 1938 values where 1933 values are under 68.3 and 1940 valures are under 4.02?", "context": "CREATE TABLE table_name_8 (Id VARCHAR)"}, {"answer": "SELECT AVG(1940) FROM table_name_6 WHERE 1929 = 101.4 AND 1933 > 68.3", "question": "What is the average 1940 value where 1929 values are 101.4 and 1933 values are over 68.3?", "context": "CREATE TABLE table_name_6 (Id VARCHAR)"}, {"answer": "SELECT MAX(1937) FROM table_name_60 WHERE 1940 > 126", "question": "What is the highest 1937 value that has a 1940 value over 126?", "context": "CREATE TABLE table_name_60 (Id VARCHAR)"}, {"answer": "SELECT timeslot FROM table_name_43 WHERE translation = \"\u10d1\u10e0\u10d0\u10d6\u10d8\u10da\u10d8\u10d8\u10e1 \u10e3\u10d1\u10d0\u10dc\u10d8\"", "question": "At what time is the \u10d1\u10e0\u10d0\u10d6\u10d8\u10da\u10d8\u10d8\u10e1 \u10e3\u10d1\u10d0\u10dc\u10d8 shown?", "context": "CREATE TABLE table_name_43 (timeslot VARCHAR, translation VARCHAR)"}, {"answer": "SELECT country FROM table_name_70 WHERE series_finale = \"present\" AND weekly_schedule = \"monday to sunday\" AND timeslot = \"18:45-21:00\"", "question": "What country was the series finale present and was shown Monday to Sunday at 18:45-21:00?", "context": "CREATE TABLE table_name_70 (country VARCHAR, timeslot VARCHAR, series_finale VARCHAR, weekly_schedule VARCHAR)"}, {"answer": "SELECT series_finale FROM table_name_56 WHERE translation = \"\u10dd\u10f0 \u10d4\u10e1 \u10ea\u10e0\u10d4\u10db\u10da\u10d4\u10d1\u10d8 / \u10de\u10d0\u10e0\u10d0\u10da\u10d4\u10da\u10e3\u10e0\u10d8 \u10e1\u10d0\u10d8\u10d3\u10e3\u10db\u10da\u10dd\"", "question": "What series finale has the translation \u10dd\u10f0 \u10d4\u10e1 \u10ea\u10e0\u10d4\u10db\u10da\u10d4\u10d1\u10d8 / \u10de\u10d0\u10e0\u10d0\u10da\u10d4\u10da\u10e3\u10e0\u10d8 \u10e1\u10d0\u10d8\u10d3\u10e3\u10db\u10da\u10dd?", "context": "CREATE TABLE table_name_56 (series_finale VARCHAR, translation VARCHAR)"}, {"answer": "SELECT weekly_schedule FROM table_name_21 WHERE timeslot = \"16:45\"", "question": "What days of the week is the show aired on that runs at 16:45?", "context": "CREATE TABLE table_name_21 (weekly_schedule VARCHAR, timeslot VARCHAR)"}, {"answer": "SELECT weekly_schedule FROM table_name_75 WHERE timeslot = \"11:00\"", "question": "Which days of the week does the telenovela play that is aired at 11:00?", "context": "CREATE TABLE table_name_75 (weekly_schedule VARCHAR, timeslot VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_98 WHERE date = \"2 october 2006\"", "question": "Which Tournament was on 2 October 2006?", "context": "CREATE TABLE table_name_98 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_16 WHERE date = \"4 april 2011\"", "question": "Who is the Opponent in the final on 4 April 2011?", "context": "CREATE TABLE table_name_16 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_94 WHERE date = \"2 june 2003\"", "question": "What Surface was used on 2 June 2003?", "context": "CREATE TABLE table_name_94 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT award FROM table_name_54 WHERE category = \"teen pick show: comedy\"", "question": "Which award show nominated The Suite Life on Deck for the Teen Pick Show: Comedy category?", "context": "CREATE TABLE table_name_54 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT award FROM table_name_49 WHERE category = \"favorite tv actor\" AND recipient = \"cole sprouse\"", "question": "Which award show nominated Cole Sprouse for the Favorite TV Actor category?", "context": "CREATE TABLE table_name_49 (award VARCHAR, category VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT category FROM table_name_62 WHERE recipient = \"the suite life on deck\" AND year > 2010", "question": "What category was The Suite Life on Deck nominated for later than 2010?", "context": "CREATE TABLE table_name_62 (category VARCHAR, recipient VARCHAR, year VARCHAR)"}, {"answer": "SELECT recipient FROM table_name_30 WHERE award = \"2010 kids' choice awards\" AND result = \"won\"", "question": "Who won the 2010 Kids' Choice Awards?", "context": "CREATE TABLE table_name_30 (recipient VARCHAR, award VARCHAR, result VARCHAR)"}, {"answer": "SELECT rd, _time FROM table_name_86 WHERE date = \"october 3, 2009\"", "question": "What was the Rd. Time for October 3, 2009?", "context": "CREATE TABLE table_name_86 (rd VARCHAR, _time VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_51 WHERE played < 9", "question": "What is the greatest lost where played is less than 9?", "context": "CREATE TABLE table_name_51 (lost INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(played) FROM table_name_99 WHERE drawn < 1 AND position < 1", "question": "What is the greatest played with a drawn less than 1 and a position of less than 1?", "context": "CREATE TABLE table_name_99 (played INTEGER, drawn VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_79 WHERE points < 7 AND against > 31", "question": "What is the smallest drawn when the points are less than 7 and the against greater than 31?", "context": "CREATE TABLE table_name_79 (drawn INTEGER, points VARCHAR, against VARCHAR)"}, {"answer": "SELECT team FROM table_name_47 WHERE points = 13", "question": "What is the name of the team that has 13 points?", "context": "CREATE TABLE table_name_47 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT nominated_work FROM table_name_85 WHERE year < 2003", "question": "What was the Nominated Work earlier than 2003?", "context": "CREATE TABLE table_name_85 (nominated_work VARCHAR, year INTEGER)"}, {"answer": "SELECT nominated_work FROM table_name_62 WHERE year < 2003", "question": "What was the Nominated Work earlier than 2003?", "context": "CREATE TABLE table_name_62 (nominated_work VARCHAR, year INTEGER)"}, {"answer": "SELECT nominated_work FROM table_name_95 WHERE year < 2003", "question": "What was the Nominated Work earlier than 2003?", "context": "CREATE TABLE table_name_95 (nominated_work VARCHAR, year INTEGER)"}, {"answer": "SELECT method FROM table_name_42 WHERE event = \"flawless fighting championship 1: the beginning\"", "question": "Which method's event was flawless fighting championship 1: the beginning?", "context": "CREATE TABLE table_name_42 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT method FROM table_name_11 WHERE opponent = \"chris clark\"", "question": "Which method's opponent was chris clark?", "context": "CREATE TABLE table_name_11 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_19 WHERE round = 3 AND event = \"fight festival 27\"", "question": "Which record's round was 3 when the event was fight festival 27?", "context": "CREATE TABLE table_name_19 (record VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT fourth_place FROM table_name_58 WHERE year = 1978", "question": "What is the Fourth place with a Year that is 1978?", "context": "CREATE TABLE table_name_58 (fourth_place VARCHAR, year VARCHAR)"}, {"answer": "SELECT fourth_place FROM table_name_11 WHERE year = 1966", "question": "What is the Fourth place with a Year that is 1966?", "context": "CREATE TABLE table_name_11 (fourth_place VARCHAR, year VARCHAR)"}, {"answer": "SELECT champion FROM table_name_65 WHERE year = 2008", "question": "What is the Champion with a Year that is 2008?", "context": "CREATE TABLE table_name_65 (champion VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_15 WHERE date = \"september 19, 1994\"", "question": "Who was the opponent for the game played on September 19, 1994?", "context": "CREATE TABLE table_name_15 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_10 WHERE attendance = \"50,814\"", "question": "In which week was attendance at 50,814?", "context": "CREATE TABLE table_name_10 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE week > 6 AND attendance = \"bye\"", "question": "What date after Week 6 was a Bye?", "context": "CREATE TABLE table_name_34 (date VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT subjunctive FROM table_name_85 WHERE inverse_subjunctive = \"m\u00e5chadns\"", "question": "What subjunctive also has an inverse subjunctive of m\u00e5chadns?", "context": "CREATE TABLE table_name_85 (subjunctive VARCHAR, inverse_subjunctive VARCHAR)"}, {"answer": "SELECT imperative FROM table_name_94 WHERE m\u00e5cha = \"3.sg\"", "question": "What imperative has m\u00e5cha as 3.sg?", "context": "CREATE TABLE table_name_94 (imperative VARCHAR, m\u00e5cha VARCHAR)"}, {"answer": "SELECT inverse_subjunctive FROM table_name_8 WHERE indicative = \"si m\u00e5chan\"", "question": "The indicative of si m\u00e5chan has what as the inverse subjunctive?", "context": "CREATE TABLE table_name_8 (inverse_subjunctive VARCHAR, indicative VARCHAR)"}, {"answer": "SELECT inverse_subjunctive FROM table_name_9 WHERE imperative = \"\u2014\" AND subjunctive = \"se m\u00e5chadn\"", "question": "What inverse subjunctive has \u2014 as the imperative and a subjunctive of se m\u00e5chadn?", "context": "CREATE TABLE table_name_9 (inverse_subjunctive VARCHAR, imperative VARCHAR, subjunctive VARCHAR)"}, {"answer": "SELECT imperative FROM table_name_37 WHERE subjunctive = \"du m\u00e5chast\"", "question": "With a subjunctive of du m\u00e5chast what is the imperative?", "context": "CREATE TABLE table_name_37 (imperative VARCHAR, subjunctive VARCHAR)"}, {"answer": "SELECT subjunctive FROM table_name_77 WHERE indicative = \"se m\u00e5chan(t)\"", "question": "What subjunctive has the indicative of se m\u00e5chan(t)?", "context": "CREATE TABLE table_name_77 (subjunctive VARCHAR, indicative VARCHAR)"}, {"answer": "SELECT AVG(win__percentage) FROM table_name_91 WHERE span = \"2011\u20132013\" AND lost < 1", "question": "What is the Win % in the Span of 2011\u20132013 with a Lost of less than 1?", "context": "CREATE TABLE table_name_91 (win__percentage INTEGER, span VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(tied) FROM table_name_57 WHERE span = \"2011\u20132013\" AND win__percentage < 80", "question": "How many games were Tied during the Span of 2011\u20132013 with a less than 80% Win %?", "context": "CREATE TABLE table_name_57 (tied VARCHAR, span VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT date_of_issue FROM table_name_40 WHERE place_of_issue = \"tallahassee, florida\"", "question": "On what date were sheets issued in Tallahassee, Florida?", "context": "CREATE TABLE table_name_40 (date_of_issue VARCHAR, place_of_issue VARCHAR)"}, {"answer": "SELECT printer FROM table_name_79 WHERE date_of_issue = \"october 5, 2006\"", "question": "Which printer issued sheets on October 5, 2006?", "context": "CREATE TABLE table_name_79 (printer VARCHAR, date_of_issue VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_8 WHERE bronze > 1 AND nation = \"total\" AND \"total\" > 18", "question": "What is the least amount of silver medals won by Total with more than 1 bronze and more than 18 total medals won?", "context": "CREATE TABLE table_name_8 (silver INTEGER, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_7 WHERE against < 28 AND team = \"americano-sp\" AND played > 8", "question": "How many positions have points against less than 28, americano-sp as the team, with a played greater than 8?", "context": "CREATE TABLE table_name_7 (position VARCHAR, played VARCHAR, against VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_1 WHERE against < 15", "question": "How many losses have points against less than 15?", "context": "CREATE TABLE table_name_1 (lost VARCHAR, against INTEGER)"}, {"answer": "SELECT AVG(played) FROM table_name_40 WHERE against < 15", "question": "What average played has an against less than 15?", "context": "CREATE TABLE table_name_40 (played INTEGER, against INTEGER)"}, {"answer": "SELECT COUNT(lost) FROM table_name_60 WHERE played > 8 AND team = \"ypiranga-sp\" AND position > 5", "question": "How many losses have a played greater than 8, ypiranga-sp as the team, with a position greater than 5?", "context": "CREATE TABLE table_name_60 (lost VARCHAR, position VARCHAR, played VARCHAR, team VARCHAR)"}, {"answer": "SELECT lost FROM table_name_24 WHERE position > 2 AND drawn > 0 AND against > 15", "question": "What lost has a position greater than 2, a drawn greater than 0, with an against greater than 15?", "context": "CREATE TABLE table_name_24 (lost VARCHAR, against VARCHAR, position VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT SUM(asian_or_amerindian___percentage_) FROM table_name_44 WHERE state = \"sergipe\" AND brown___percentage_ > 61 OFFSET 3", "question": "What is the sum of Asian or Amerindian (%), when State is Sergipe, and when Brown (%) is greater than 61,3?", "context": "CREATE TABLE table_name_44 (asian_or_amerindian___percentage_ INTEGER, state VARCHAR, brown___percentage_ VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_16 WHERE lost > 6 AND match < 14", "question": "How many points were there when there more than 6 losses and less than 14 matches?", "context": "CREATE TABLE table_name_16 (points VARCHAR, lost VARCHAR, match VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_67 WHERE points > 23", "question": "How few losses were the least number of losses and points higher than 23?", "context": "CREATE TABLE table_name_67 (lost INTEGER, points INTEGER)"}, {"answer": "SELECT MAX(match) FROM table_name_37 WHERE points > 18 AND draw > 1", "question": "What is the highest number of matches with more than 18 points and more than 1 draw?", "context": "CREATE TABLE table_name_37 (match INTEGER, points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT champion FROM table_name_87 WHERE runner_up = \"dick chapman\" AND venue = \"st. andrews links\"", "question": "Who was the champion in the game played at the St. Andrews Links with Dick Chapman as the runner-up?", "context": "CREATE TABLE table_name_87 (champion VARCHAR, runner_up VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE venue = \"royal liverpool golf club\" AND champion = \"willie hunter\"", "question": "What is the score of the match won by Willie Hunter at the Royal Liverpool Golf Club?", "context": "CREATE TABLE table_name_21 (score VARCHAR, venue VARCHAR, champion VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_83 WHERE country = \"england\" AND venue = \"royal porthcawl golf club\"", "question": "What player from England was the runner-up at the match played at the Royal Porthcawl Golf Club?", "context": "CREATE TABLE table_name_83 (runner_up VARCHAR, country VARCHAR, venue VARCHAR)"}, {"answer": "SELECT champion FROM table_name_80 WHERE runner_up = \"c.a. palmer\"", "question": "Who was the champion in the match where C.A. Palmer was the runner-up?", "context": "CREATE TABLE table_name_80 (champion VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT champion FROM table_name_60 WHERE runner_up = \"e.a. lassen\"", "question": "What player was the champion in the match where E.A. Lassen was the runner-up?", "context": "CREATE TABLE table_name_60 (champion VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT score FROM table_name_34 WHERE country = \"england\" AND champion = \"peter mcevoy\" AND runner_up = \"paul mckellar\"", "question": "What is the score of the match played in England where Peter McEvoy was the champion and Paul McKellar was runner-up?", "context": "CREATE TABLE table_name_34 (score VARCHAR, runner_up VARCHAR, country VARCHAR, champion VARCHAR)"}, {"answer": "SELECT federal_state FROM table_name_3 WHERE representatives_of_national_average = \"6\"", "question": "Which federal state has 6 representatives of national average?", "context": "CREATE TABLE table_name_3 (federal_state VARCHAR, representatives_of_national_average VARCHAR)"}, {"answer": "SELECT population__on_the_census_also_called_censo_2010_ FROM table_name_47 WHERE deputies_required_ignoring_the_limits < -6", "question": "According to the 2010 census, what was the population for the federal state that had less than -6 deputies required ignoring the limits?", "context": "CREATE TABLE table_name_47 (population__on_the_census_also_called_censo_2010_ VARCHAR, deputies_required_ignoring_the_limits INTEGER)"}, {"answer": "SELECT MIN(block) FROM table_name_69 WHERE height = 206 AND spike > 356", "question": "What is the lowest number of blocks for players with height of 206 and more than 356 spikes?", "context": "CREATE TABLE table_name_69 (block INTEGER, height VARCHAR, spike VARCHAR)"}, {"answer": "SELECT COUNT(weight) FROM table_name_7 WHERE block = 340 AND spike > 353", "question": "What is the number of weight values associated with 340 blocks and more than 353 spikes?", "context": "CREATE TABLE table_name_7 (weight VARCHAR, block VARCHAR, spike VARCHAR)"}, {"answer": "SELECT award FROM table_name_54 WHERE actor = \"forest whitaker\" AND year = 1989", "question": "What award did Forest Whitaker win in 1989?", "context": "CREATE TABLE table_name_54 (award VARCHAR, actor VARCHAR, year VARCHAR)"}, {"answer": "SELECT motion_picture FROM table_name_42 WHERE award = \"best supporting actor\" AND actor = \"samuel l. jackson\" AND year < 1997", "question": "For what motion picture did Samuel L. Jackson win the best supporting actor award before 1997?", "context": "CREATE TABLE table_name_42 (motion_picture VARCHAR, year VARCHAR, award VARCHAR, actor VARCHAR)"}, {"answer": "SELECT actor FROM table_name_43 WHERE year = 1966", "question": "Which actor won in 1966?", "context": "CREATE TABLE table_name_43 (actor VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(influence) FROM table_name_58 WHERE population_millions < 60.64 AND meps < 22 AND inhabitants_per_mep = 454 OFFSET 059", "question": "What is the lowest influence with population in the millions less than 60.64, and MEPs less than 22, and 454,059 inhabitant per MEP?", "context": "CREATE TABLE table_name_58 (influence INTEGER, inhabitants_per_mep VARCHAR, population_millions VARCHAR, meps VARCHAR)"}, {"answer": "SELECT MAX(population_millions) FROM table_name_55 WHERE influence = 1.02", "question": "What is the highest population in the millions that has an influence of 1.02?", "context": "CREATE TABLE table_name_55 (population_millions INTEGER, influence VARCHAR)"}, {"answer": "SELECT SUM(population_millions) FROM table_name_49 WHERE influence < 2.91 AND meps < 13 AND member_state = \"latvia\" AND inhabitants_per_mep > 286 OFFSET 875", "question": "What is the sum of the population in millions that has an influence less than 2.91, a MEP smaller than 13, a member of Latvia, and more than 286,875 inhabitants per MEP?", "context": "CREATE TABLE table_name_49 (population_millions INTEGER, inhabitants_per_mep VARCHAR, member_state VARCHAR, influence VARCHAR, meps VARCHAR)"}, {"answer": "SELECT MAX(inhabitants_per_mep) FROM table_name_26 WHERE meps > 50 AND member_state = \"germany\" AND population_millions < 82.43", "question": "What is the highest number of inhabitants per MEP that has MEPs larger than 50, a member of Germany, and a population less than 82.43 million?", "context": "CREATE TABLE table_name_26 (inhabitants_per_mep INTEGER, population_millions VARCHAR, meps VARCHAR, member_state VARCHAR)"}, {"answer": "SELECT world_rank FROM table_name_81 WHERE year < 1977 AND location = \"eugene\"", "question": "Which World Rank has a Year smaller than 1977, and a Location of eugene?", "context": "CREATE TABLE table_name_81 (world_rank VARCHAR, year VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_65 WHERE world_rank = \"5th\" AND result > 20.31", "question": "What's the lowest Year with a World Rank of 5th, with a Result greater than 20.31?", "context": "CREATE TABLE table_name_65 (year INTEGER, world_rank VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_80 WHERE result < 20.26 AND location = \"eugene\"", "question": "Which Year has a Result smaller than 20.26, and a Location of eugene?", "context": "CREATE TABLE table_name_80 (year INTEGER, result VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(result) FROM table_name_96 WHERE location = \"brussels\"", "question": "What is the Result with a Location of brussels?", "context": "CREATE TABLE table_name_96 (result VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_64 WHERE result < 20.31 AND world_rank = \"5th\"", "question": "What Year has a Result smaller than 20.31, and a World Rank of 5th?", "context": "CREATE TABLE table_name_64 (year INTEGER, result VARCHAR, world_rank VARCHAR)"}, {"answer": "SELECT record FROM table_name_33 WHERE home = \"nuggets\"", "question": "What is the record when the Nuggets are the home team?", "context": "CREATE TABLE table_name_33 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_35 WHERE races > 16", "question": "What is the lowest number of points for Drivers that have raced in more than 16 Races?", "context": "CREATE TABLE table_name_35 (points INTEGER, races INTEGER)"}, {"answer": "SELECT MIN(races) FROM table_name_31 WHERE points < 0", "question": "What is the least number of Races for a Racer with less than 0 Points?", "context": "CREATE TABLE table_name_31 (races INTEGER, points INTEGER)"}, {"answer": "SELECT AVG(year) FROM table_name_98 WHERE poles < 2 AND fast_laps = 0 AND drivers = \"adrian quaife-hobbs\"", "question": "What is the average Year during which the Driver Adrian Quaife-Hobbs has fewer than 2 Poles, and 0 Fast laps?", "context": "CREATE TABLE table_name_98 (year INTEGER, drivers VARCHAR, poles VARCHAR, fast_laps VARCHAR)"}, {"answer": "SELECT city_of_license__market FROM table_name_96 WHERE station = \"kpix\"", "question": "Which city contains the KPIX station?", "context": "CREATE TABLE table_name_96 (city_of_license__market VARCHAR, station VARCHAR)"}, {"answer": "SELECT station FROM table_name_74 WHERE channel_tv___dt__ = \"3 (26)\"", "question": "Which station has channel TV (DT) of 3 (26)?", "context": "CREATE TABLE table_name_74 (station VARCHAR, channel_tv___dt__ VARCHAR)"}, {"answer": "SELECT current_affiliation FROM table_name_62 WHERE years_owned = \"1955\u20131995\"", "question": "What is the current affiliation when the years owned is between 1955\u20131995?", "context": "CREATE TABLE table_name_62 (current_affiliation VARCHAR, years_owned VARCHAR)"}, {"answer": "SELECT city_of_license__market FROM table_name_61 WHERE station = \"kdka-tv\"", "question": "What is the city containing the KDKA-TV station?", "context": "CREATE TABLE table_name_61 (city_of_license__market VARCHAR, station VARCHAR)"}, {"answer": "SELECT channel_tv___dt__ FROM table_name_88 WHERE city_of_license__market = \"baltimore\"", "question": "Which Channel TV is located in Baltimore?", "context": "CREATE TABLE table_name_88 (channel_tv___dt__ VARCHAR, city_of_license__market VARCHAR)"}, {"answer": "SELECT MIN(play_offs) FROM table_name_43 WHERE fa_cup = 2", "question": "What is the least number of goals scored in the play-offs among the players that have scored 2 in the FA Cup?", "context": "CREATE TABLE table_name_43 (play_offs INTEGER, fa_cup VARCHAR)"}, {"answer": "SELECT AVG(fa_cup) FROM table_name_57 WHERE total > 20 AND fa_trophy < 1 AND league < 25", "question": "What is the average number of goals scored in the FA Cup among players that have more than 20 total goals, less than 1 FA Trophy goals, and less than 25 league goals?", "context": "CREATE TABLE table_name_57 (fa_cup INTEGER, league VARCHAR, total VARCHAR, fa_trophy VARCHAR)"}, {"answer": "SELECT lat___lon FROM table_name_87 WHERE us_mission = \"surveyor 3\"", "question": "What is the latitude and longitude for Surveyor 3?", "context": "CREATE TABLE table_name_87 (lat___lon VARCHAR, us_mission VARCHAR)"}, {"answer": "SELECT MAX(mass__kg_) FROM table_name_59 WHERE landing_zone = \"tycho crater\"", "question": "What is the largest mass for Tycho Crater?", "context": "CREATE TABLE table_name_59 (mass__kg_ INTEGER, landing_zone VARCHAR)"}, {"answer": "SELECT field FROM table_name_24 WHERE commissioned = \"1958, 2005\"", "question": "What Field was Commissioned in 1958, 2005?", "context": "CREATE TABLE table_name_24 (field VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT annual_generation__average_gwh_ FROM table_name_83 WHERE name = \"kawerau (bope)\"", "question": "What is the Annual Generation at Kawerau (Bope)?", "context": "CREATE TABLE table_name_83 (annual_generation__average_gwh_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_9 WHERE capacity__mw_ = 25", "question": "What is the Name of the power station with a Capacity of 25 MW?", "context": "CREATE TABLE table_name_9 (name VARCHAR, capacity__mw_ VARCHAR)"}, {"answer": "SELECT name FROM table_name_22 WHERE field = \"mokai\"", "question": "What is the Name of the power station in the Field of Mokai?", "context": "CREATE TABLE table_name_22 (name VARCHAR, field VARCHAR)"}, {"answer": "SELECT goals FROM table_name_25 WHERE gp_gs = \"did not play\" AND year = \"2004\"", "question": "How many goals were scored in 2004 when the gp/gs was \"did not play\"?", "context": "CREATE TABLE table_name_25 (goals VARCHAR, gp_gs VARCHAR, year VARCHAR)"}, {"answer": "SELECT assists FROM table_name_36 WHERE total_points = \"2\"", "question": "How many assists were there when the total points was 2?", "context": "CREATE TABLE table_name_36 (assists VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT total_points FROM table_name_98 WHERE assists = \"7\"", "question": "What was the total number of points when there were 7 assists?", "context": "CREATE TABLE table_name_98 (total_points VARCHAR, assists VARCHAR)"}, {"answer": "SELECT gp_gs FROM table_name_4 WHERE assists = \"1\"", "question": "What was the gp/gs when the assists was 1?", "context": "CREATE TABLE table_name_4 (gp_gs VARCHAR, assists VARCHAR)"}, {"answer": "SELECT gp_gs FROM table_name_96 WHERE total_points = \"did not play\" AND year = \"2003\"", "question": "what was the gp/gs in 2003 when the total points was \"did not play\"?", "context": "CREATE TABLE table_name_96 (gp_gs VARCHAR, total_points VARCHAR, year VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_32 WHERE partner = \"jan pisecky\"", "question": "What was the outcome for Jan Pisecky and his partner?", "context": "CREATE TABLE table_name_32 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT player FROM table_name_29 WHERE weight = 235", "question": "What player weight 235?", "context": "CREATE TABLE table_name_29 (player VARCHAR, weight VARCHAR)"}, {"answer": "SELECT height FROM table_name_82 WHERE pos = \"f\" AND weight < 195", "question": "What is the height of the F who weighs less than 195?", "context": "CREATE TABLE table_name_82 (height VARCHAR, pos VARCHAR, weight VARCHAR)"}, {"answer": "SELECT team FROM table_name_63 WHERE pos = \"f\" AND player = \"trey gilder\"", "question": "What team does F Trey Gilder play for?", "context": "CREATE TABLE table_name_63 (team VARCHAR, pos VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_73 WHERE team = \"dakota wizards\"", "question": "What player plays for the Dakota Wizards?", "context": "CREATE TABLE table_name_73 (player VARCHAR, team VARCHAR)"}, {"answer": "SELECT player FROM table_name_68 WHERE weight = 210 AND team = \"reno bighorns\"", "question": "Which player who weighs 210 plays for the Reno Bighorns?", "context": "CREATE TABLE table_name_68 (player VARCHAR, weight VARCHAR, team VARCHAR)"}, {"answer": "SELECT pos FROM table_name_40 WHERE player = \"brian butch\"", "question": "What position does Brian Butch play?", "context": "CREATE TABLE table_name_40 (pos VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_97 WHERE player = \"tyronn lue\" AND years_in_orlando = \"2003\u20132004\"", "question": "Which Position has a Player of tyronn lue, and a Years in Orlando of 2003\u20132004?", "context": "CREATE TABLE table_name_97 (position VARCHAR, player VARCHAR, years_in_orlando VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_34 WHERE player = \"deandre liggins\"", "question": "Which School/Club Team has a Player of deandre liggins?", "context": "CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_68 WHERE years_in_orlando = \"1997\u20131998\"", "question": "Which Position has a Years in Orlando of 1997\u20131998?", "context": "CREATE TABLE table_name_68 (position VARCHAR, years_in_orlando VARCHAR)"}, {"answer": "SELECT position FROM table_name_15 WHERE school_club_team = \"stanford\"", "question": "Which Position has a School/Club Team of stanford?", "context": "CREATE TABLE table_name_15 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_92 WHERE years_in_orlando = \"1997\u20131998\"", "question": "Which School/Club Team has a Years in Orlando of 1997\u20131998?", "context": "CREATE TABLE table_name_92 (school_club_team VARCHAR, years_in_orlando VARCHAR)"}, {"answer": "SELECT position FROM table_name_55 WHERE years_in_orlando = \"2003\u20132004\"", "question": "Which Position has a Years in Orlando of 2003\u20132004?", "context": "CREATE TABLE table_name_55 (position VARCHAR, years_in_orlando VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_42 WHERE date = \"february 27\"", "question": "What is the High assists with a Date that is february 27?", "context": "CREATE TABLE table_name_42 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_31 WHERE game = 56", "question": "What is the High points with a Game that is 56?", "context": "CREATE TABLE table_name_31 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT distance FROM table_name_36 WHERE venue = \"sale\"", "question": "In what Distance has a Venue of sale?", "context": "CREATE TABLE table_name_36 (distance VARCHAR, venue VARCHAR)"}, {"answer": "SELECT winner_2nd FROM table_name_84 WHERE jockey = \"c. symons\"", "question": "WHo is Winner/2nd that has c. symons?", "context": "CREATE TABLE table_name_84 (winner_2nd VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT race FROM table_name_78 WHERE jockey = \"d. nikolic\"", "question": "Which Race that Jockey of d. nikolic is in?", "context": "CREATE TABLE table_name_78 (race VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT result FROM table_name_5 WHERE distance = \"1200m\" AND weight__kg_ = 55.5", "question": "Name The Result that has a Distance of 1200m, and a Weight (kg) of 55.5?", "context": "CREATE TABLE table_name_5 (result VARCHAR, distance VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT previous_team FROM table_name_41 WHERE nationality = \"united states\" AND nba_years_[a_] = 2 AND pos = \"f\"", "question": "What is the previous team of the United States player who had 2 NBA years and played the F position?", "context": "CREATE TABLE table_name_41 (previous_team VARCHAR, pos VARCHAR, nationality VARCHAR, nba_years_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT team FROM table_name_82 WHERE score = \"108-107\"", "question": "Which Team has a Score of 108-107?", "context": "CREATE TABLE table_name_82 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_55 WHERE date = \"may 31\"", "question": "Which Record has a Date of may 31?", "context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_54 WHERE team = \"at phoenix\" AND score = \"107-119\"", "question": "Which Game has a Team of at phoenix, and a Score of 107-119?", "context": "CREATE TABLE table_name_54 (game VARCHAR, team VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_32 WHERE game > 5", "question": "Which Location Attendance has a Game larger than 5?", "context": "CREATE TABLE table_name_32 (location_attendance VARCHAR, game INTEGER)"}, {"answer": "SELECT team FROM table_name_40 WHERE score = \"89-123\"", "question": "Which Team has a Score of 89-123?", "context": "CREATE TABLE table_name_40 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_24 WHERE date = \"june 14\"", "question": "What is the average Game with a Date that is june 14?", "context": "CREATE TABLE table_name_24 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_56 WHERE team = \"detroit\" AND date = \"june 10\"", "question": "What is the Record with a Team that is detroit and a Date that is june 10?", "context": "CREATE TABLE table_name_56 (record VARCHAR, team VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_31 WHERE record = \"1-4\"", "question": "What is the Location Attendance with a Record that is 1-4?", "context": "CREATE TABLE table_name_31 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT gdp__ppp__$m_usd FROM table_name_7 WHERE population_density__per_km\u00b2_ = \"254.7\"", "question": "How much is the GDP for a population density of 254.7?", "context": "CREATE TABLE table_name_7 (gdp__ppp__$m_usd VARCHAR, population_density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE population_density__per_km\u00b2_ = \"50.3\"", "question": "Which country has a population density of 50.3?", "context": "CREATE TABLE table_name_46 (country VARCHAR, population_density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT gdp__ppp__$m_usd FROM table_name_86 WHERE area__km\u00b2_ = \"61,395\"", "question": "How much is the GDP for an area of 61,395?", "context": "CREATE TABLE table_name_86 (gdp__ppp__$m_usd VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT population_density__per_km\u00b2_ FROM table_name_31 WHERE gdp__ppp__$m_usd = \"$188,112\"", "question": "How much is the population density with a GDP at $188,112?", "context": "CREATE TABLE table_name_31 (population_density__per_km\u00b2_ VARCHAR, gdp__ppp__$m_usd VARCHAR)"}, {"answer": "SELECT gdp__ppp__$m_usd FROM table_name_26 WHERE area__km\u00b2_ = \"116\"", "question": "How much is the GDP for an area of 116?", "context": "CREATE TABLE table_name_26 (gdp__ppp__$m_usd VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_79 WHERE population__2011_est_ = \"3,221,216\"", "question": "Which country has a population of 3,221,216?", "context": "CREATE TABLE table_name_79 (country VARCHAR, population__2011_est_ VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_77 WHERE top_5 < 2 AND events = 19", "question": "What was Miller Barber wins with Top-5 less than 2 and 19 Events?", "context": "CREATE TABLE table_name_77 (wins VARCHAR, top_5 VARCHAR, events VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_87 WHERE tournament = \"pga championship\" AND top_5 < 2", "question": "What is the average number of Wins in a PGA Championship with a Top-5 less than 2?", "context": "CREATE TABLE table_name_87 (wins INTEGER, tournament VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_name_63 WHERE events < 4", "question": "What is the highest Top-5 ranking with Events less than 4?", "context": "CREATE TABLE table_name_63 (top_5 INTEGER, events INTEGER)"}, {"answer": "SELECT week FROM table_name_18 WHERE attendance = \"65,272\"", "question": "Which week's game was attended by 65,272 people?", "context": "CREATE TABLE table_name_18 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_60 WHERE week = 13", "question": "How many people attended the game in week 13?", "context": "CREATE TABLE table_name_60 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_58 WHERE attendance = \"65,904\"", "question": "During which week was the earliest game with an attendance of 65,904 people?", "context": "CREATE TABLE table_name_58 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MAX(height) FROM table_name_94 WHERE position = \"outside hitter\"", "question": "What height is the tallest for an outside hitter?", "context": "CREATE TABLE table_name_94 (height INTEGER, position VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_65 WHERE total = 27", "question": "What is the highest silver rank with a total of 27?", "context": "CREATE TABLE table_name_65 (silver INTEGER, total VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_6 WHERE bronze < 1 AND total < 2 AND nation = \"bulgaria\"", "question": "What is the total number of Silver when Bronze was smaller than 1 with a total smaller than 2 in Bulgaria?", "context": "CREATE TABLE table_name_6 (silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT temperature_classification FROM table_name_22 WHERE glass_bulb_color = \"purple\"", "question": "What is the temperature classification of a purple colored glass bulb?", "context": "CREATE TABLE table_name_22 (temperature_classification VARCHAR, glass_bulb_color VARCHAR)"}, {"answer": "SELECT color_code__with_fusible_link_ FROM table_name_67 WHERE temperature_classification = \"ordinary\"", "question": "What is the color code with a temperature classification of ordinary?", "context": "CREATE TABLE table_name_67 (color_code__with_fusible_link_ VARCHAR, temperature_classification VARCHAR)"}, {"answer": "SELECT temperature_rating FROM table_name_1 WHERE temperature_classification = \"intermediate\"", "question": "What is the temperature rating of the intermediate temperature classification?", "context": "CREATE TABLE table_name_1 (temperature_rating VARCHAR, temperature_classification VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_81 WHERE team = \"kairat\" AND season = \"2002\" AND apps > 29", "question": "What is the average Goals for team Kairat, in the 2002 season with more than 29 apps?", "context": "CREATE TABLE table_name_81 (goals INTEGER, apps VARCHAR, team VARCHAR, season VARCHAR)"}, {"answer": "SELECT country FROM table_name_11 WHERE season = \"2006-07\"", "question": "What is the Country for the 2006-07 season?", "context": "CREATE TABLE table_name_11 (country VARCHAR, season VARCHAR)"}, {"answer": "SELECT AVG(apps) FROM table_name_51 WHERE team = \"kairat\" AND level > 1", "question": "What is the average Apps for the team Kairat with level larger than 1?", "context": "CREATE TABLE table_name_51 (apps INTEGER, team VARCHAR, level VARCHAR)"}, {"answer": "SELECT laps FROM table_name_17 WHERE grid > 11 AND bike = \"honda cbr1000rr\" AND time = \"+42.633\"", "question": "How many laps did the rider with a grid larger than 11, a Honda cbr1000rr bike, and a time of +42.633?", "context": "CREATE TABLE table_name_17 (laps VARCHAR, time VARCHAR, grid VARCHAR, bike VARCHAR)"}, {"answer": "SELECT rider FROM table_name_43 WHERE laps = 18 AND grid = 25", "question": "Who was teh rider with 18 laps and a grid of 25?", "context": "CREATE TABLE table_name_43 (rider VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_49 WHERE time = \"accident\" AND bike = \"kawasaki zx-10r\"", "question": "Who was the rider who had an accident time and a kawasaki zx-10r bike?", "context": "CREATE TABLE table_name_49 (rider VARCHAR, time VARCHAR, bike VARCHAR)"}, {"answer": "SELECT time FROM table_name_7 WHERE laps < 18 AND grid > 8 AND rider = \"loic napoleone\"", "question": "What is the time of rider Loic Napoleone, who had less than 18 laps and a grid greater than 8?", "context": "CREATE TABLE table_name_7 (time VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT laps FROM table_name_82 WHERE grid > 14 AND time = \"+33.150\"", "question": "How many laps did the rider with a grid larger than 14 and a time of +33.150 have?", "context": "CREATE TABLE table_name_82 (laps VARCHAR, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT away FROM table_name_24 WHERE home = \"guelph gargoyles\"", "question": "What is Away, when Home is Guelph Gargoyles?", "context": "CREATE TABLE table_name_24 (away VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_58 WHERE ground = \"humber college north\" AND time = \"15:00\"", "question": "What is Home, when Ground is Humber College North, and when Time is 15:00?", "context": "CREATE TABLE table_name_58 (home VARCHAR, ground VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE away = \"high park demons\"", "question": "What is Date, when Away is High Park Demons?", "context": "CREATE TABLE table_name_6 (date VARCHAR, away VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE away = \"high park demons\"", "question": "What is Date, when Away is High Park Demons?", "context": "CREATE TABLE table_name_43 (date VARCHAR, away VARCHAR)"}, {"answer": "SELECT time FROM table_name_95 WHERE away = \"central blues\"", "question": "What is Time, when Away is Central Blues?", "context": "CREATE TABLE table_name_95 (time VARCHAR, away VARCHAR)"}, {"answer": "SELECT cover FROM table_name_12 WHERE published = \"may 27, 2009 (hc) may 20, 2009 (tpb)\"", "question": "What cover has a published date of May 27, 2009 (hc) May 20, 2009 (tpb)?", "context": "CREATE TABLE table_name_12 (cover VARCHAR, published VARCHAR)"}, {"answer": "SELECT volume FROM table_name_49 WHERE isbn = \"978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)\"", "question": "What is the number of the volume that has an ISBN of 978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)?", "context": "CREATE TABLE table_name_49 (volume VARCHAR, isbn VARCHAR)"}, {"answer": "SELECT series FROM table_name_22 WHERE isbn = \"978-1-59582-523-0 (tpb)\"", "question": "What is the name of the series with an ISBN of 978-1-59582-523-0 (tpb)?", "context": "CREATE TABLE table_name_22 (series VARCHAR, isbn VARCHAR)"}, {"answer": "SELECT volume FROM table_name_38 WHERE isbn = \"978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)\"", "question": "What volume number has the ISBN of 978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)?", "context": "CREATE TABLE table_name_38 (volume VARCHAR, isbn VARCHAR)"}, {"answer": "SELECT isbn FROM table_name_75 WHERE series = \"conan the barbarian\" AND title = \"queen of the black coast\"", "question": "What is the ISBN of the Conan the Barbarian series that has the title of Queen of the Black Coast?", "context": "CREATE TABLE table_name_75 (isbn VARCHAR, series VARCHAR, title VARCHAR)"}, {"answer": "SELECT cover FROM table_name_46 WHERE title = \"throne of aquilonia\"", "question": "What cover has Throne of Aquilonia as the title?", "context": "CREATE TABLE table_name_46 (cover VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_44 WHERE name = \"pablo prigioni\" AND rank < 4", "question": "With a Rank of less than 4, what is Pablo Prigioni's total number of Games?", "context": "CREATE TABLE table_name_44 (games VARCHAR, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(assists) FROM table_name_45 WHERE games > 25", "question": "How many Assists for the Player with more than 25 Games?", "context": "CREATE TABLE table_name_45 (assists INTEGER, games INTEGER)"}, {"answer": "SELECT COUNT(rank) FROM table_name_82 WHERE games = 25 AND team = \"maccabi tel aviv\"", "question": "What is the Rank of the Maccabi Tel Aviv Player with 25 Games?", "context": "CREATE TABLE table_name_82 (rank VARCHAR, games VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(assists) FROM table_name_66 WHERE rank > 3 AND games < 25", "question": "How many Assists for the Player with a Rank greater than 3 in less than 25 Games?", "context": "CREATE TABLE table_name_66 (assists INTEGER, rank VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_8 WHERE name = \"terrell mcintyre\" AND rank > 2", "question": "How many Games for Rank 2 Terrell McIntyre?", "context": "CREATE TABLE table_name_8 (games INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT venue FROM table_name_70 WHERE year > 2006 AND position = \"7th\" AND notes = \"heptathlon\"", "question": "What is the Venue of the Heptathlon after 2006 where Tatyana Chernova comes in Position 7th?", "context": "CREATE TABLE table_name_70 (venue VARCHAR, notes VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_37 WHERE venue = \"g\u00f6tzis, austria\" AND position = \"1st\"", "question": "In what Year did Chernova come in 1st in G\u00f6tzis, Austria?", "context": "CREATE TABLE table_name_37 (year INTEGER, venue VARCHAR, position VARCHAR)"}, {"answer": "SELECT cover_model FROM table_name_8 WHERE date = \"8-03\"", "question": "Which Cover Model was featured on 8-03?", "context": "CREATE TABLE table_name_8 (cover_model VARCHAR, date VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_name_72 WHERE interview_subject = \"o.j. simpson\"", "question": "Who was the Centerfold model when O.J. Simpson was the Interview Subject?", "context": "CREATE TABLE table_name_72 (centerfold_model VARCHAR, interview_subject VARCHAR)"}, {"answer": "SELECT cover_model FROM table_name_43 WHERE centerfold_model = \"marketa janska\"", "question": "Who was the Cover model when the Centerfold Model was Marketa Janska?", "context": "CREATE TABLE table_name_43 (cover_model VARCHAR, centerfold_model VARCHAR)"}, {"answer": "SELECT cover_model FROM table_name_96 WHERE date = \"11-03\"", "question": "Who was the Cover model on 11-03?", "context": "CREATE TABLE table_name_96 (cover_model VARCHAR, date VARCHAR)"}, {"answer": "SELECT centerfold_model FROM table_name_79 WHERE date = \"9-03\"", "question": "Who was the Centerfold Model on 9-03?", "context": "CREATE TABLE table_name_79 (centerfold_model VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_74 WHERE selection = 165", "question": "How many rounds had a selection of 165?", "context": "CREATE TABLE table_name_74 (round INTEGER, selection VARCHAR)"}, {"answer": "SELECT AVG(height__cm_) FROM table_name_79 WHERE position = \"d\" AND birthplace = \"new hope, minnesota\"", "question": "What is the average Height for the Position of d, with a Birthplace of new hope, minnesota?", "context": "CREATE TABLE table_name_79 (height__cm_ INTEGER, position VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT 1990 AS _1991_team FROM table_name_23 WHERE birthplace = \"new york\"", "question": "What is the 1990\u20131991 Team when the Birthplace shows as new york?", "context": "CREATE TABLE table_name_23 (birthplace VARCHAR)"}, {"answer": "SELECT position FROM table_name_32 WHERE birthplace = \"toledo, ohio\"", "question": "What is the Position when the person's birthplace was toledo, ohio?", "context": "CREATE TABLE table_name_32 (position VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT 1990 AS _1991_team FROM table_name_41 WHERE name = \"joel otto\"", "question": "What is the 1990\u20131991 Team that had Joel Otto?", "context": "CREATE TABLE table_name_41 (name VARCHAR)"}, {"answer": "SELECT tc FROM table_name_26 WHERE year > 2007 AND dc = \"21st\"", "question": "Which T.C. has a Year larger than 2007, and a D.C. of 21st?", "context": "CREATE TABLE table_name_26 (tc VARCHAR, year VARCHAR, dc VARCHAR)"}, {"answer": "SELECT dc FROM table_name_65 WHERE races < 20 AND points > 0 AND drivers = \"christian vietoris\" AND wins = 1", "question": "What kind of D.C. has Races smaller than 20, and Points larger than 0, and Drivers of christian vietoris, and Wins of 1?", "context": "CREATE TABLE table_name_65 (dc VARCHAR, wins VARCHAR, drivers VARCHAR, races VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(races) FROM table_name_14 WHERE tc = \"3rd\" AND dc = \"7th\"", "question": "Which Races has a T.C. of 3rd, and a D.C. of 7th?", "context": "CREATE TABLE table_name_14 (races INTEGER, tc VARCHAR, dc VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_16 WHERE 2008 = \"grand slam tournaments\"", "question": "What is the 2007 of the Grand Slam Tournaments in 2008?", "context": "CREATE TABLE table_name_16 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_63 WHERE 2011 = \"3r\" AND 2010 = \"a\"", "question": "What is the Tournament with a 3r 2011 and A 2010?", "context": "CREATE TABLE table_name_63 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_38 WHERE 2011 = \"2r\" AND 2010 = \"a\"", "question": "What is the 2008 of the 2r 2011 and A 2010?", "context": "CREATE TABLE table_name_38 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_66 WHERE 2011 = \"grand slam tournaments\"", "question": "What is the 2010 of the Grand Slam Tournaments in 2011?", "context": "CREATE TABLE table_name_66 (Id VARCHAR)"}, {"answer": "SELECT COUNT(runners_up) FROM table_name_92 WHERE winning_years = \"2010\"", "question": "What is the total number of runners-up for a club with winning years of 2010?", "context": "CREATE TABLE table_name_92 (runners_up VARCHAR, winning_years VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_7 WHERE club = \"fc viktoria plze\u0148\"", "question": "Who were the runners-up for the FC Viktoria Plze\u0148 club?", "context": "CREATE TABLE table_name_7 (runners_up VARCHAR, club VARCHAR)"}, {"answer": "SELECT con__gress FROM table_name_50 WHERE date = \"2010\"", "question": "Which congress was held in 2010?", "context": "CREATE TABLE table_name_50 (con__gress VARCHAR, date VARCHAR)"}, {"answer": "SELECT casting_at__\u00b0c_ FROM table_name_88 WHERE hardness = \"22\"", "question": "What is the casting temperature for a hardness of 22?", "context": "CREATE TABLE table_name_88 (casting_at__\u00b0c_ VARCHAR, hardness VARCHAR)"}, {"answer": "SELECT hardness FROM table_name_45 WHERE liquid_at__\u00b0c_ = \"243\"", "question": "What is the hardness for the alloy that is liquid at 243 degrees C?", "context": "CREATE TABLE table_name_45 (hardness VARCHAR, liquid_at__\u00b0c_ VARCHAR)"}, {"answer": "SELECT sn_sb___percentage_ FROM table_name_4 WHERE liquid_at__\u00b0c_ = \"258\"", "question": "What is the Sn/Sb percentage that is liquid at 258 degrees C?", "context": "CREATE TABLE table_name_4 (sn_sb___percentage_ VARCHAR, liquid_at__\u00b0c_ VARCHAR)"}, {"answer": "SELECT remelting_at__\u00b0c_ FROM table_name_51 WHERE sn_sb___percentage_ = \"9.5/15\"", "question": "What is the remelting temperature for the alloy that has a Sn/Sb ratio of 9.5/15?", "context": "CREATE TABLE table_name_51 (remelting_at__\u00b0c_ VARCHAR, sn_sb___percentage_ VARCHAR)"}, {"answer": "SELECT casting_at__\u00b0c_ FROM table_name_98 WHERE hardness = \"21\"", "question": "What is the casting temperature for the alloy with hardness 21?", "context": "CREATE TABLE table_name_98 (casting_at__\u00b0c_ VARCHAR, hardness VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_93 WHERE grid = 16", "question": "What's the most laps when grid is 16?", "context": "CREATE TABLE table_name_93 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_35 WHERE grid = 13", "question": "How many laps were there for a grid of 13?", "context": "CREATE TABLE table_name_35 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_12 WHERE attendance = \"69,149\"", "question": "How many weeks had an attendance at 69,149?", "context": "CREATE TABLE table_name_12 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE week = 6", "question": "On what date did week 6 occur?", "context": "CREATE TABLE table_name_40 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_80 WHERE date = \"december 18, 2005\"", "question": "Who was the opponent on December 18, 2005?", "context": "CREATE TABLE table_name_80 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT result_score FROM table_name_25 WHERE match_report = \"recap\" AND week = 14", "question": "What is the result/score for the match report recap on week 14?", "context": "CREATE TABLE table_name_25 (result_score VARCHAR, match_report VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_34 WHERE result_score = \"w 51-29\"", "question": "How many weeks have w 51-29 as the result/score?", "context": "CREATE TABLE table_name_34 (week INTEGER, result_score VARCHAR)"}, {"answer": "SELECT result_score FROM table_name_45 WHERE record = \"6-5\"", "question": "What is the result/score that has 6-5 as the record?", "context": "CREATE TABLE table_name_45 (result_score VARCHAR, record VARCHAR)"}, {"answer": "SELECT match_report FROM table_name_98 WHERE result_score = \"l 7-30\"", "question": "Which match report has l 7-30 as the result/score?", "context": "CREATE TABLE table_name_98 (match_report VARCHAR, result_score VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_84 WHERE match_report = \"recap\" AND week = 7", "question": "Which game site has a recap as the match report for week 7?", "context": "CREATE TABLE table_name_84 (game_site VARCHAR, match_report VARCHAR, week VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_56 WHERE time > 8.97 AND year < 2013", "question": "Which shooter's time is more than 8.97 and has a year prior to 2013?", "context": "CREATE TABLE table_name_56 (shooter VARCHAR, time VARCHAR, year VARCHAR)"}, {"answer": "SELECT country FROM table_name_53 WHERE date = \"april 27\"", "question": "What country was the race in on April 27?", "context": "CREATE TABLE table_name_53 (country VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_6 WHERE date = \"august 17\"", "question": "What is the name of the team leading on August 17?", "context": "CREATE TABLE table_name_6 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(ranking_round_rank) FROM table_name_3 WHERE nation = \"russia\" AND final_rank > 11", "question": "What is the highest Ranking Round Rank for Russia with a Final Rank over 11?", "context": "CREATE TABLE table_name_3 (ranking_round_rank INTEGER, nation VARCHAR, final_rank VARCHAR)"}, {"answer": "SELECT music FROM table_name_32 WHERE points_jury = \"18 (5,5,4,4)\"", "question": "Which Music has a Points Jury of 18 (5,5,4,4)?", "context": "CREATE TABLE table_name_32 (music VARCHAR, points_jury VARCHAR)"}, {"answer": "SELECT music FROM table_name_75 WHERE dance = \"jive\"", "question": "What is the Music if the Dance is Jive?", "context": "CREATE TABLE table_name_75 (music VARCHAR, dance VARCHAR)"}, {"answer": "SELECT music FROM table_name_35 WHERE team = \"anna guzik & rafa\u0142 kami\u0144ski\" AND points_jury = \"24 (7,5,6,6)\"", "question": "What is the Music for Team anna guzik & rafa\u0142 kami\u0144ski that has a Points Jury of 24 (7,5,6,6)?", "context": "CREATE TABLE table_name_35 (music VARCHAR, team VARCHAR, points_jury VARCHAR)"}, {"answer": "SELECT music FROM table_name_79 WHERE dance = \"modern\"", "question": "Which Music has a Dance of Modern?", "context": "CREATE TABLE table_name_79 (music VARCHAR, dance VARCHAR)"}, {"answer": "SELECT points_jury FROM table_name_39 WHERE dance = \"pop\"", "question": "What is the Points Jury for Dance pop?", "context": "CREATE TABLE table_name_39 (points_jury VARCHAR, dance VARCHAR)"}, {"answer": "SELECT place FROM table_name_78 WHERE points_jury = \"34 (7,8,9,10)\"", "question": "Which Place has a Points Jury of 34 (7,8,9,10)?", "context": "CREATE TABLE table_name_78 (place VARCHAR, points_jury VARCHAR)"}, {"answer": "SELECT 2013 AS _press_freedom_index FROM table_name_20 WHERE country = \"egypt\"", "question": "What is the 2013 press freedom index of the country Egypt?", "context": "CREATE TABLE table_name_20 (country VARCHAR)"}, {"answer": "SELECT 2013 AS _index_of_economic_freedom FROM table_name_22 WHERE country = \"slovenia\"", "question": "What is the 2013 index of economic freedom of Slovenia?", "context": "CREATE TABLE table_name_22 (country VARCHAR)"}, {"answer": "SELECT AVG(league) AS Cup FROM table_name_87 WHERE total = 19 AND league < 15", "question": "Which League Cup that has a Total of 19 and a League smaller than 15?", "context": "CREATE TABLE table_name_87 (league INTEGER, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_49 WHERE skip = \"andy kapp\"", "question": "For what country is the skip Andy Kapp?", "context": "CREATE TABLE table_name_49 (country VARCHAR, skip VARCHAR)"}, {"answer": "SELECT second FROM table_name_10 WHERE team = \"north america\" AND third = \"cathy overton-clapham\"", "question": "Who is the second on the North America team for which Cathy Overton-Clapham the third?", "context": "CREATE TABLE table_name_10 (second VARCHAR, team VARCHAR, third VARCHAR)"}, {"answer": "SELECT lead FROM table_name_81 WHERE home = \"lockerbie\"", "question": "Who is the lead of the team from Lockerbie?", "context": "CREATE TABLE table_name_81 (lead VARCHAR, home VARCHAR)"}, {"answer": "SELECT team FROM table_name_70 WHERE home = \"stirling\"", "question": "What is the name of the team from Stirling?", "context": "CREATE TABLE table_name_70 (team VARCHAR, home VARCHAR)"}, {"answer": "SELECT lead FROM table_name_18 WHERE team = \"europe\" AND skip = \"liudmila privivkova\"", "question": "Who is the lead on the Europe team that has a Liudmila Privivkova as the skip?", "context": "CREATE TABLE table_name_18 (lead VARCHAR, team VARCHAR, skip VARCHAR)"}, {"answer": "SELECT second FROM table_name_58 WHERE team = \"north america\" AND country = \"canada\" AND home = \"edmonton\"", "question": "Who is the second of the North America team from Edmonton, Canada?", "context": "CREATE TABLE table_name_58 (second VARCHAR, home VARCHAR, team VARCHAR, country VARCHAR)"}, {"answer": "SELECT livery FROM table_name_45 WHERE locomotive_type = \"steam\" AND year_built > 1950 AND wheel_arrangement = \"2-6-2\"", "question": "What is the livery of the steam locomotive built after 1950 with a wheel arrangement of 2-6-2?", "context": "CREATE TABLE table_name_45 (livery VARCHAR, wheel_arrangement VARCHAR, locomotive_type VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT livery FROM table_name_69 WHERE year_built < 1989 AND locomotive_type = \"steam\"", "question": "What livery belongs to the steam Locomotive type builder that was building before 1989?", "context": "CREATE TABLE table_name_69 (livery VARCHAR, year_built VARCHAR, locomotive_type VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_52 WHERE gold > 2 AND silver > 2", "question": "What is the total number of medals when the gold is more than 2 and silver more than 2?", "context": "CREATE TABLE table_name_52 (total VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_35 WHERE total < 4 AND rank = \"12\"", "question": "What is the most silver medals when the total is less than 4 and the rank is 12?", "context": "CREATE TABLE table_name_35 (silver INTEGER, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_14 WHERE silver > 0 AND total = 5", "question": "What is the total number of bronze medals when the silver is greater than 0, and the total medals 5?", "context": "CREATE TABLE table_name_14 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_14 WHERE bronze > 1 AND nation = \"germany\" AND gold < 1", "question": "What is the total number of medals when the bronze is more than 1, and Germany is the nation, and gold medals less than 1?", "context": "CREATE TABLE table_name_14 (total VARCHAR, gold VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_21 WHERE name = \"oscar m\u00edguez\" AND goals > 107", "question": "When Oscar M\u00edguez had over 107 goals, what was the lowest he ranked?", "context": "CREATE TABLE table_name_21 (rank INTEGER, name VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_18 WHERE years = \"1922\u20131935\"", "question": "What was the highest number of goals for 1922\u20131935?", "context": "CREATE TABLE table_name_18 (goals INTEGER, years VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_20 WHERE player = \"jason french\"", "question": "Which pick number was there for Jason French?", "context": "CREATE TABLE table_name_20 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_32 WHERE college = \"manitoba\"", "question": "Which cfl team was associated with the college of manitoba?", "context": "CREATE TABLE table_name_32 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_58 WHERE cfl_team = \"hamilton tiger-cats\"", "question": "Which college's cfl team is the hamilton tiger-cats?", "context": "CREATE TABLE table_name_58 (college VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_52 WHERE cfl_team = \"montreal alouettes\" AND pick__number < 15", "question": "Which position's cfl team was the Montreal Alouettes when the pick number was less than 15?", "context": "CREATE TABLE table_name_52 (position VARCHAR, cfl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT player FROM table_name_5 WHERE cfl_team = \"saskatchewan roughriders\"", "question": "Which player was drafted by the Saskatchewan Roughriders?", "context": "CREATE TABLE table_name_5 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT college FROM table_name_37 WHERE player = \"ben wearing\"", "question": "What college did Ben Wearing play for?", "context": "CREATE TABLE table_name_37 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(fa_cup_goals) FROM table_name_33 WHERE other_goals = 0 AND fl_cup_goals = 0 AND league_goals < 39", "question": "What is the average FA Cup Goal value for players that have 0 Other goals, 0 FL Cup goals, and fewer than 39 League goals?", "context": "CREATE TABLE table_name_33 (fa_cup_goals INTEGER, league_goals VARCHAR, other_goals VARCHAR, fl_cup_goals VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE away = \"ottawa swans\"", "question": "On what date were the Ottawa Swans the away team?", "context": "CREATE TABLE table_name_25 (date VARCHAR, away VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE home = \"etobicoke kangaroos\"", "question": "What was the score of the game with the Etobicoke Kangaroos as the home team?", "context": "CREATE TABLE table_name_55 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE home = \"broadview hawks\"", "question": "What was the score of the game with the Broadview Hawks as the home team?", "context": "CREATE TABLE table_name_97 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE home = \"broadview hawks\"", "question": "What was the score of the Broadview Hawks home game?", "context": "CREATE TABLE table_name_69 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT away FROM table_name_81 WHERE home = \"etobicoke kangaroos\"", "question": "Who was the away team for the Etobicoke Kangaroos home game?", "context": "CREATE TABLE table_name_81 (away VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE score = \"130-56\"", "question": "What was the date for the 130-56 game?", "context": "CREATE TABLE table_name_26 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE home_team = \"cuba\"", "question": "What is the date with Cuba is Home team?", "context": "CREATE TABLE table_name_20 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT location FROM table_name_57 WHERE home_team = \"honduras\"", "question": "What is the location with Honduras is Home team?", "context": "CREATE TABLE table_name_57 (location VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT location FROM table_name_8 WHERE home_team = \"mexico\" AND date = \"11 april 2013\"", "question": "What is the location of 11 April 2013 and Mexico Home team?", "context": "CREATE TABLE table_name_8 (location VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE away_team = \"honduras\"", "question": "What is the date that is Away team is Honduras?", "context": "CREATE TABLE table_name_25 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE away_team = \"guatemala\"", "question": "What is the date where Guatemala is the Away team?", "context": "CREATE TABLE table_name_44 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE date = \"17 april 2013\"", "question": "What is the score for 17 April 2013?", "context": "CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_79 WHERE date = \"september 14, 2008\"", "question": "How many weeks have September 14, 2008 as the date?", "context": "CREATE TABLE table_name_79 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_43 WHERE week < 16 AND date = \"september 7, 2008\"", "question": "What opponent has a week less than 16, with September 7, 2008 as the date?", "context": "CREATE TABLE table_name_43 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_36 WHERE game_site = \"candlestick park\" AND date = \"october 12, 2008\"", "question": "What record has candlestick park as the game site, and october 12, 2008 as the date?", "context": "CREATE TABLE table_name_36 (record VARCHAR, game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE opponent = \"new england patriots\"", "question": "What date has new england patriots as the opponent?", "context": "CREATE TABLE table_name_26 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE week = 10", "question": "What date has 10 for the week?", "context": "CREATE TABLE table_name_66 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_50 WHERE result = \"w 10-3\"", "question": "What game site has w 10-3 as the result?", "context": "CREATE TABLE table_name_50 (game_site VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_80 WHERE singapore_cup = \"0 (1)\" AND name = \"masrezwan masturi\"", "question": "What is the sum of Rank that when the Singapore Cup is 0 (1), and the Name is masrezwan masturi?", "context": "CREATE TABLE table_name_80 (rank INTEGER, singapore_cup VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_87 WHERE total = \"3 (15)\" AND rank > 3", "question": "What is the Name of the person with a Total of 3 (15), and Rank of more than 3?", "context": "CREATE TABLE table_name_87 (name VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT singapore_cup FROM table_name_92 WHERE s_league = \"5 (14)\"", "question": "What is the Singapore Cup when the S-League is 5 (14)?", "context": "CREATE TABLE table_name_92 (singapore_cup VARCHAR, s_league VARCHAR)"}, {"answer": "SELECT singapore_league_cup FROM table_name_50 WHERE rank > 4 AND s_league = \"2 (12)\"", "question": "What is the Singapore League Cup when rank is more than 4, and the S-League is 2 (12)?", "context": "CREATE TABLE table_name_50 (singapore_league_cup VARCHAR, rank VARCHAR, s_league VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_2 WHERE runner_s__up = \"al geiberger\"", "question": "In which tournament did Al Geiberger finish runner-up?", "context": "CREATE TABLE table_name_2 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT season FROM table_name_50 WHERE acquisition_via = \"rookie draft\" AND number = \"15\"", "question": "What is the Season with an Acquisition via of rookie draft, and the number is 15?", "context": "CREATE TABLE table_name_50 (season VARCHAR, acquisition_via VARCHAR, number VARCHAR)"}, {"answer": "SELECT acquisition_via FROM table_name_33 WHERE name = \"dennis miranda\"", "question": "What is the Acquisition via for Dennis Miranda?", "context": "CREATE TABLE table_name_33 (acquisition_via VARCHAR, name VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_84 WHERE acquisition_via = \"rookie draft\" AND position = \"guard\" AND name = \"dennis miranda\"", "question": "What team acquired as a rookie draft in the position of guard Dennis Miranda?", "context": "CREATE TABLE table_name_84 (school_club_team VARCHAR, name VARCHAR, acquisition_via VARCHAR, position VARCHAR)"}, {"answer": "SELECT season FROM table_name_6 WHERE position = \"guard\" AND school_club_team = \"perpetual help\"", "question": "What season was School/Club Team perpetual help in the guard position?", "context": "CREATE TABLE table_name_6 (season VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT number FROM table_name_82 WHERE name = \"rashad mccants\"", "question": "What number was Rashad McCants?", "context": "CREATE TABLE table_name_82 (number VARCHAR, name VARCHAR)"}, {"answer": "SELECT season FROM table_name_19 WHERE acquisition_via = \"trade\" AND school_club_team = \"east\"", "question": "What season did School/Club Team, East have an Acquisition via of trade?", "context": "CREATE TABLE table_name_19 (season VARCHAR, acquisition_via VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE city___state = \"sydney, new south wales\"", "question": "What is the Date for the City/State of Sydney, New South Wales?", "context": "CREATE TABLE table_name_61 (date VARCHAR, city___state VARCHAR)"}, {"answer": "SELECT revenues FROM table_name_43 WHERE tenure = \"1854-1855\"", "question": "What is the Revenues during Tenure 1854-1855?", "context": "CREATE TABLE table_name_43 (revenues VARCHAR, tenure VARCHAR)"}, {"answer": "SELECT revenues FROM table_name_81 WHERE courtesy_title = \"ukyo-daiyu\"", "question": "What is the Revenues of Ukyo-Daiyu?", "context": "CREATE TABLE table_name_81 (revenues VARCHAR, courtesy_title VARCHAR)"}, {"answer": "SELECT country FROM table_name_43 WHERE place = \"t10\" AND player = \"rod pampling\"", "question": "What country was the player, rod pampling, from who placed t10?", "context": "CREATE TABLE table_name_43 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE place = \"t10\" AND player = \"thomas levet\"", "question": "What was the score that thomas levet got when he placed t10?", "context": "CREATE TABLE table_name_36 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_6 WHERE score = 73 - 73 - 65 = 211", "question": "What country did the player who scored 73-73-65=211 come from?", "context": "CREATE TABLE table_name_6 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE country = \"united states\" AND place = \"t4\"", "question": "What is the score that the player who placed t4 from the united states get?", "context": "CREATE TABLE table_name_80 (score VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_57 WHERE player = \"phil mickelson\"", "question": "What country is phil mickelson from?", "context": "CREATE TABLE table_name_57 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_39 WHERE machine = \"nsr250\" AND points = 8", "question": "What is the Team with a Machine that is nsr250 and has Points of 8?", "context": "CREATE TABLE table_name_39 (team VARCHAR, machine VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_2 WHERE points > 8 AND difference = \"- 8\" AND position > 5", "question": "What is the total lost that has points greater than 8 and a difference of - 8 and a position of greater than 5?", "context": "CREATE TABLE table_name_2 (lost INTEGER, position VARCHAR, points VARCHAR, difference VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_66 WHERE lost > 5 AND difference = \"- 10\" AND played > 12", "question": "What is the greatest number of points that has a lost bigger than 5, a difference of - 10 and a played bigger than 12?", "context": "CREATE TABLE table_name_66 (points INTEGER, played VARCHAR, lost VARCHAR, difference VARCHAR)"}, {"answer": "SELECT name FROM table_name_10 WHERE average = 16.4", "question": "What is the Name with an Average that is 16.4?", "context": "CREATE TABLE table_name_10 (name VARCHAR, average VARCHAR)"}, {"answer": "SELECT match FROM table_name_13 WHERE team = \"start gniezno\"", "question": "What was the match number for Start Gniezno?", "context": "CREATE TABLE table_name_13 (match VARCHAR, team VARCHAR)"}, {"answer": "SELECT lost FROM table_name_48 WHERE points = \"10\"", "question": "Who was the team that lost but had 10 points?", "context": "CREATE TABLE table_name_48 (lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT draw FROM table_name_57 WHERE match = \"8\" AND team = \"lp\u017c gda\u0144sk\"", "question": "What was the draw for Lp\u017c Gda\u0144sk with a match of 8?", "context": "CREATE TABLE table_name_57 (draw VARCHAR, match VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_29 WHERE draw = \"0\"", "question": "What team had a draw of 0?", "context": "CREATE TABLE table_name_29 (team VARCHAR, draw VARCHAR)"}, {"answer": "SELECT match FROM table_name_91 WHERE points = \"8\"", "question": "What match had 8 points?", "context": "CREATE TABLE table_name_91 (match VARCHAR, points VARCHAR)"}, {"answer": "SELECT draw FROM table_name_37 WHERE points = \"10\"", "question": "What is the draw for a match that had 10 points?", "context": "CREATE TABLE table_name_37 (draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT 1980 AS _1981_team FROM table_name_22 WHERE birthplace = \"warroad, minnesota\"", "question": "What was the 1980-1981 team of the player born in Warroad, Minnesota?", "context": "CREATE TABLE table_name_22 (birthplace VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_99 WHERE draw > 0", "question": "How many losses have a draw greater than 0?", "context": "CREATE TABLE table_name_99 (lost INTEGER, draw INTEGER)"}, {"answer": "SELECT AVG(match) FROM table_name_33 WHERE points < 6", "question": "Which average match has points less than 6?", "context": "CREATE TABLE table_name_33 (match INTEGER, points INTEGER)"}, {"answer": "SELECT AVG(draw) FROM table_name_52 WHERE points > 12", "question": "Which average draw has points greater than 12?", "context": "CREATE TABLE table_name_52 (draw INTEGER, points INTEGER)"}, {"answer": "SELECT trainer FROM table_name_54 WHERE time = \"1:44.80\" AND jockey = \"william jenkins\"", "question": "What Trainer had Jockey William Jenkins in a race with Time of 1:44.80?", "context": "CREATE TABLE table_name_54 (trainer VARCHAR, time VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_6 WHERE purse = \"$150,000\" AND time = \"1:49.00\"", "question": "In what Year was the Purse $150,000 with a Time of 1:49.00?", "context": "CREATE TABLE table_name_6 (year INTEGER, purse VARCHAR, time VARCHAR)"}, {"answer": "SELECT owner FROM table_name_64 WHERE trainer = \"todd a. pletcher\"", "question": "What Owner's Trainer is Todd A. Pletcher?", "context": "CREATE TABLE table_name_64 (owner VARCHAR, trainer VARCHAR)"}, {"answer": "SELECT purse FROM table_name_41 WHERE year < 2009 AND owner = \"harold a. allen\"", "question": "What was the Purse for Owner Harold A. Allen prior to 2009?", "context": "CREATE TABLE table_name_41 (purse VARCHAR, year VARCHAR, owner VARCHAR)"}, {"answer": "SELECT gdp__ppp__per_capita_2012_euro FROM table_name_49 WHERE population_in_millions > 10.8 AND gdp__nominal__per_capita_2012_euro = \"25,600\"", "question": "What is GDP (PPP) Per Capita 2012 Euro, when Population In Millions is greater than 10.8, and when GDP (Nominal) Per Capita 2012 Euro is 25,600?", "context": "CREATE TABLE table_name_49 (gdp__ppp__per_capita_2012_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR)"}, {"answer": "SELECT gdp_2012_millions_of_euro FROM table_name_51 WHERE population_in_millions < 1.3 AND gdp__nominal__per_capita_2012_euro = \"20,700(p)\"", "question": "What is GDP 2012 Millions of Euro, when Population in Millions is less than 1.3, and when GDP (Nominal) Per Capita 2012 Euro is 20,700(p)?", "context": "CREATE TABLE table_name_51 (gdp_2012_millions_of_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR)"}, {"answer": "SELECT gdp__ppp__per_capita_2012_eu27_ = _100 FROM table_name_27 WHERE gdp_2012_millions_of_euro = \"309,900\"", "question": "What is GDP (PPP) Per Capita 2012 EU27 = 100, when GDP 2012 Millions Of Euro is 309,900?", "context": "CREATE TABLE table_name_27 (gdp__ppp__per_capita_2012_eu27_ VARCHAR, _100 VARCHAR, gdp_2012_millions_of_euro VARCHAR)"}, {"answer": "SELECT population_in_millions FROM table_name_73 WHERE gdp_2012_millions_of_euro = \"600,638\"", "question": "What is Population in Millions, when GDP 2012 Millions of Euro is 600,638?", "context": "CREATE TABLE table_name_73 (population_in_millions VARCHAR, gdp_2012_millions_of_euro VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_22 WHERE player = \"ernie els\"", "question": "What was the Money for Player Ernie Els?", "context": "CREATE TABLE table_name_22 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_93 WHERE place = \"t9\" AND score = 70 - 74 - 69 - 70 = 283", "question": "What T9 Player had a Score of 70-74-69-70=283?", "context": "CREATE TABLE table_name_93 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_90 WHERE place = \"t1\" AND score = 66 - 69 - 70 - 75 = 280", "question": "What is the Money for the T1 Player with a Score of 66-69-70-75=280?", "context": "CREATE TABLE table_name_90 (money___$__ VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_46 WHERE player = \"chris riley\"", "question": "What is Chris Riley's Money?", "context": "CREATE TABLE table_name_46 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(span_metres) FROM table_name_23 WHERE year_opened = \"2007\" AND country = \"china\" AND rank < 13 AND span_feet < 1378", "question": "What is the lowest amount of Span metres when the year opened is 2007, the country is China, rank is less than 13, and the span feet is less than 1378?", "context": "CREATE TABLE table_name_23 (span_metres INTEGER, span_feet VARCHAR, rank VARCHAR, year_opened VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_36 WHERE material = \"concrete\" AND span_metres < 270 AND span_feet > 837 AND year_opened = \"1943\"", "question": "Which country's material was concrete when the span metres were less than 270, span feet is more than 837, and the year opened was 1943?", "context": "CREATE TABLE table_name_36 (country VARCHAR, year_opened VARCHAR, span_feet VARCHAR, material VARCHAR, span_metres VARCHAR)"}, {"answer": "SELECT country FROM table_name_28 WHERE year_s__won = \"1993\"", "question": "What country won in 1993?", "context": "CREATE TABLE table_name_28 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT finish FROM table_name_70 WHERE total > 286 AND to_par = \"+4\" AND player = \"bob tway\"", "question": "What was the finish with a total larger than 286, a to par of +4 and Bob Tway played?", "context": "CREATE TABLE table_name_70 (finish VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_78 WHERE country = \"united states\" AND total = 286 AND year_s__won = \"2003\"", "question": "What player in the United States had a total of 286 and won in 2003?", "context": "CREATE TABLE table_name_78 (player VARCHAR, year_s__won VARCHAR, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_37 WHERE total = 293", "question": "What country has a total of 293?", "context": "CREATE TABLE table_name_37 (country VARCHAR, total VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE country = \"fiji\"", "question": "What player is from Fiji?", "context": "CREATE TABLE table_name_67 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT method FROM table_name_58 WHERE weight_class = \"welterweight\" AND card = \"preliminary\"", "question": "Which method was used in the welterweight class with a preliminary card?", "context": "CREATE TABLE table_name_58 (method VARCHAR, weight_class VARCHAR, card VARCHAR)"}, {"answer": "SELECT method FROM table_name_15 WHERE round > 3", "question": "Which method was used in a round greater than 3?", "context": "CREATE TABLE table_name_15 (method VARCHAR, round INTEGER)"}, {"answer": "SELECT weight_class FROM table_name_65 WHERE time = \"4:59\"", "question": "Which weight class had a time of 4:59?", "context": "CREATE TABLE table_name_65 (weight_class VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_35 WHERE round < 3", "question": "What was the time for a round less than 3?", "context": "CREATE TABLE table_name_35 (time VARCHAR, round INTEGER)"}, {"answer": "SELECT MIN(round) FROM table_name_11 WHERE weight_class = \"welterweight\" AND card = \"preliminary\"", "question": "What is the smallest round for the welterweight class with a preliminary card?", "context": "CREATE TABLE table_name_11 (round INTEGER, weight_class VARCHAR, card VARCHAR)"}, {"answer": "SELECT bulletins_to_all_contacts FROM table_name_43 WHERE transport_layer_security = \"no\" AND license = \"proprietary\" AND creator = \"microsoft\"", "question": "Were there Bulletins to all contacts of the proprietary license created by Microsoft with no transport layer of security?", "context": "CREATE TABLE table_name_43 (bulletins_to_all_contacts VARCHAR, creator VARCHAR, transport_layer_security VARCHAR, license VARCHAR)"}, {"answer": "SELECT bulletins_to_all_contacts FROM table_name_69 WHERE creator = \"gg network\"", "question": "Were there Bulletins to all contacts of the license created by GG Network?", "context": "CREATE TABLE table_name_69 (bulletins_to_all_contacts VARCHAR, creator VARCHAR)"}, {"answer": "SELECT license FROM table_name_72 WHERE creator = \"ietf\"", "question": "What is the name of the license created by IETF?", "context": "CREATE TABLE table_name_72 (license VARCHAR, creator VARCHAR)"}, {"answer": "SELECT envelopment FROM table_name_83 WHERE family = \"rhabdoviridae\"", "question": "What is the envelopment for the rhabdoviridae family?", "context": "CREATE TABLE table_name_83 (envelopment VARCHAR, family VARCHAR)"}, {"answer": "SELECT baltimore_group FROM table_name_13 WHERE virion_shape = \"icosahedral\" AND envelopment = \"non-enveloped\" AND replication_site = \"cytoplasm\" AND family = \"astroviridae\"", "question": "Which Baltimore group has a viron shape of icosahedral, replicates in the cytoplasm, is non-enveloped, and is from the astroviridae family?", "context": "CREATE TABLE table_name_13 (baltimore_group VARCHAR, family VARCHAR, replication_site VARCHAR, virion_shape VARCHAR, envelopment VARCHAR)"}, {"answer": "SELECT baltimore_group FROM table_name_62 WHERE family = \"retroviridae\"", "question": "Which Baltimore group is of the retroviridae family?", "context": "CREATE TABLE table_name_62 (baltimore_group VARCHAR, family VARCHAR)"}, {"answer": "SELECT baltimore_group FROM table_name_27 WHERE family = \"togaviridae\"", "question": "Which Baltimore group is of the togaviridae family?", "context": "CREATE TABLE table_name_27 (baltimore_group VARCHAR, family VARCHAR)"}, {"answer": "SELECT baltimore_group FROM table_name_85 WHERE envelopment = \"non-enveloped\" AND family = \"papillomaviridae\"", "question": "Which Baltimore group is non-enveloped and is of the papillomaviridae family?", "context": "CREATE TABLE table_name_85 (baltimore_group VARCHAR, envelopment VARCHAR, family VARCHAR)"}, {"answer": "SELECT replication_site FROM table_name_58 WHERE envelopment = \"enveloped\" AND family = \"bunyaviridae\"", "question": "What is the replication site when the species is enveloped and is of the bunyaviridae family?", "context": "CREATE TABLE table_name_58 (replication_site VARCHAR, envelopment VARCHAR, family VARCHAR)"}, {"answer": "SELECT MAX(league_cup) FROM table_name_95 WHERE player = \"steed malbranque\"", "question": "What is the highest League Cup with a Player that is steed malbranque?", "context": "CREATE TABLE table_name_95 (league_cup INTEGER, player VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_9 WHERE fuel_type = \"diesel\"", "question": "What is the Manufacturer with a Fuel Type that is diesel?", "context": "CREATE TABLE table_name_9 (manufacturer VARCHAR, fuel_type VARCHAR)"}, {"answer": "SELECT higgins FROM table_name_35 WHERE scallon = \"2%\"", "question": "What is the Higgins with a Scallon that is 2%?", "context": "CREATE TABLE table_name_35 (higgins VARCHAR, scallon VARCHAR)"}, {"answer": "SELECT higgins FROM table_name_90 WHERE davis = \"9%\"", "question": "What is the Higgins with a Davis that is 9%?", "context": "CREATE TABLE table_name_90 (higgins VARCHAR, davis VARCHAR)"}, {"answer": "SELECT source FROM table_name_45 WHERE norris = \"7%\"", "question": "What is the Source with a Norris that is 7%?", "context": "CREATE TABLE table_name_45 (source VARCHAR, norris VARCHAR)"}, {"answer": "SELECT SUM(game_2) FROM table_name_67 WHERE total = 759 OFFSET 997", "question": "What is the game 2 sum attendance of the team with a total attendance of 759,997?", "context": "CREATE TABLE table_name_67 (game_2 INTEGER, total VARCHAR)"}, {"answer": "SELECT position FROM table_name_55 WHERE player = \"barry rose\"", "question": "What position does Barry Rose play?", "context": "CREATE TABLE table_name_55 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(jersey__number) FROM table_name_98 WHERE height__cm_ = 183 AND name = \"paul stastny\" AND weight__kg_ < 93", "question": "Which Jersey # has a Height (cm) of 183, a Name of paul stastny, and a Weight (kg) smaller than 93?", "context": "CREATE TABLE table_name_98 (jersey__number VARCHAR, weight__kg_ VARCHAR, height__cm_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT captain FROM table_name_61 WHERE year < 1927 AND runner_up = \"angaston\"", "question": "When the Runner-up was Angaston, and the Year was less than 1927, who was the Captain?", "context": "CREATE TABLE table_name_61 (captain VARCHAR, year VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_14 WHERE score = \"kapunda 7-7-49 angaston 6-8-44\"", "question": "When the Score was kapunda 7-7-49 angaston 6-8-44, who was the Runner-up?", "context": "CREATE TABLE table_name_14 (runner_up VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_53 WHERE score = \"kapunda 14-13-97 tanunda 5-14-44\"", "question": "Which year had a Score of kapunda 14-13-97 tanunda 5-14-44?", "context": "CREATE TABLE table_name_53 (year INTEGER, score VARCHAR)"}, {"answer": "SELECT captain FROM table_name_57 WHERE runner_up = \"tanunda\" AND year > 1939", "question": "When the year is later than 1939 and the Runner-up is Tanunda, who is the Captain?", "context": "CREATE TABLE table_name_57 (captain VARCHAR, runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_25 WHERE 2001 = \"1r\" AND 2011 = \"a\"", "question": "What's the tournamnet name that has a 2001 of 1r and 2011?", "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_83 WHERE 2005 = \"4r\"", "question": "What is the 2001 tournament with a 2005 4r?", "context": "CREATE TABLE table_name_83 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_58 WHERE 2004 = \"1r\" AND tournament = \"french open\"", "question": "What french open tournament happened in 2010 and has a 2004 1r?", "context": "CREATE TABLE table_name_58 (tournament VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_21 WHERE 2008 = \"career statistics\"", "question": "What 2002 tournament has 2008 career statistics?", "context": "CREATE TABLE table_name_21 (Id VARCHAR)"}, {"answer": "SELECT season FROM table_name_21 WHERE staffel_e = \"stahl riesa\"", "question": "Which season has a Staffel E of Stahl Riesa?", "context": "CREATE TABLE table_name_21 (season VARCHAR, staffel_e VARCHAR)"}, {"answer": "SELECT staffel_d FROM table_name_51 WHERE staffel_e = \"motor suhl\" AND season = \"1983-84\"", "question": "What is the Staffel D in the season 1983-84 with a Staffel E of Motor Suhl?", "context": "CREATE TABLE table_name_51 (staffel_d VARCHAR, staffel_e VARCHAR, season VARCHAR)"}, {"answer": "SELECT staffel_a FROM table_name_75 WHERE staffel_d = \"energie cottbus\" AND staffel_c = \"chemie leipzig\" AND staffel_b = \"1. fc union berlin\"", "question": "What is the Staffel A that has a Staffel D of Energie Cottbus and a Staffel C of Chemie Leipzig and a Staffel B of 1. FC Union Berlin?", "context": "CREATE TABLE table_name_75 (staffel_a VARCHAR, staffel_b VARCHAR, staffel_d VARCHAR, staffel_c VARCHAR)"}, {"answer": "SELECT staffel_b FROM table_name_97 WHERE staffel_c = \"hallescher fc chemie\"", "question": "What is the Staffel B that has Hallescher Fc Chemie as Staffel C?", "context": "CREATE TABLE table_name_97 (staffel_b VARCHAR, staffel_c VARCHAR)"}, {"answer": "SELECT week FROM table_name_8 WHERE date = \"september 27, 1953\"", "question": "Which week's date was September 27, 1953?", "context": "CREATE TABLE table_name_8 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_48 WHERE opponent = \"chicago cardinals\" AND week < 4", "question": "What is the largest attendance number when the Chicago Cardinals were the opponent and the week was less than 4?", "context": "CREATE TABLE table_name_48 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_85 WHERE tier = \"tier ii\" AND winner = \"gigi fern\u00e1ndez natalia zvereva 6\u20132, 6\u20131\"", "question": "When Gigi Fern\u00e1ndez Natalia Zvereva 6\u20132, 6\u20131 won, who was the Tier II Runner-up?", "context": "CREATE TABLE table_name_85 (runner_up VARCHAR, tier VARCHAR, winner VARCHAR)"}, {"answer": "SELECT semi_finalists FROM table_name_81 WHERE runner_up = \"alexia dechaume-balleret sandrine testud\"", "question": "Who were the semi finalists when Alexia Dechaume-Balleret Sandrine testud was the runner-up?", "context": "CREATE TABLE table_name_81 (semi_finalists VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT tier FROM table_name_46 WHERE semi_finalists = \"sandrine testud mary pierce\" AND runner_up = \"lisa raymond\"", "question": "What tier had a runner-up of Lisa Raymond and a semifinalist of Sandrine Testud Mary Pierce?", "context": "CREATE TABLE table_name_46 (tier VARCHAR, semi_finalists VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT semi_finalists FROM table_name_92 WHERE runner_up = \"alexandra fusai wiltrud probst\"", "question": "Who were the semi finalists when the runner-up was Alexandra Fusai Wiltrud Probst?", "context": "CREATE TABLE table_name_92 (semi_finalists VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT label FROM table_name_77 WHERE date = \"april 7, 1967\"", "question": "What is the Label that shows on april 7, 1967?", "context": "CREATE TABLE table_name_77 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE country = \"uk\" AND format = \"cd\" AND catalog = \"edcd 227\"", "question": "What is the Date when the Country shows uk, the Format is cd, and the Catalog of edcd 227?", "context": "CREATE TABLE table_name_91 (date VARCHAR, catalog VARCHAR, country VARCHAR, format VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE catalog = \"lp 5060\"", "question": "What is the Date for Catalog of lp 5060?", "context": "CREATE TABLE table_name_65 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE country = \"japan\" AND label = \"sony\"", "question": "What Date was the Country of japan, and a Label of sony?", "context": "CREATE TABLE table_name_75 (date VARCHAR, country VARCHAR, label VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_46 WHERE format = \"lp\" AND country = \"us\" AND label = \"sundazed\" AND date = \"2006\"", "question": "What is the Catalog with a Format of lp, a Country of us, a Label of sundazed, and a Date of 2006?", "context": "CREATE TABLE table_name_46 (catalog VARCHAR, date VARCHAR, label VARCHAR, format VARCHAR, country VARCHAR)"}, {"answer": "SELECT label FROM table_name_73 WHERE country = \"uk\" AND catalog = \"bpg 62988\"", "question": "What is the Label name that has a Country of uk and the Catalog is bpg 62988?", "context": "CREATE TABLE table_name_73 (label VARCHAR, country VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT lyrics__l____music__m_ FROM table_name_16 WHERE position > 3 AND place = \"1st\"", "question": "What were the Lyrics (l) and Music (m) for the Artist who was in a Position higher than 3 and who earned 1st Place?", "context": "CREATE TABLE table_name_16 (lyrics__l____music__m_ VARCHAR, position VARCHAR, place VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_24 WHERE silver < 1 AND bronze > 1", "question": "What is the Rank of the Nation with 0 Silver and more than 1 Bronze?", "context": "CREATE TABLE table_name_24 (rank INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_89 WHERE silver = 1 AND gold < 0", "question": "What is the Total medals for the Nation with 1 Silver and 0 Golds?", "context": "CREATE TABLE table_name_89 (total VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT potential FROM table_name_81 WHERE period = 5 AND element = \"antimony\"", "question": "Which potential's period 5 is 4 and has an element of antimony?", "context": "CREATE TABLE table_name_81 (potential VARCHAR, period VARCHAR, element VARCHAR)"}, {"answer": "SELECT MIN(period) FROM table_name_28 WHERE element = \"ruthenium\"", "question": "Which lowest period's element is ruthenium?", "context": "CREATE TABLE table_name_28 (period INTEGER, element VARCHAR)"}, {"answer": "SELECT MAX(period) FROM table_name_19 WHERE element = \"platinum\"", "question": "Which highest period's element is platinum?", "context": "CREATE TABLE table_name_19 (period INTEGER, element VARCHAR)"}, {"answer": "SELECT venue FROM table_name_40 WHERE result = \"lost\"", "question": "What is the Venue with a Result that is lost?", "context": "CREATE TABLE table_name_40 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(administrative_panel) FROM table_name_14 WHERE cultural_and_educational_panel = 2 AND industrial_and_commercial_panel > 4", "question": "What is the highest administrative panel with a cultural and educational panel of 2 plus an industrial and commercial panel larger than 4?", "context": "CREATE TABLE table_name_14 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR)"}, {"answer": "SELECT COUNT(national_university_of_ireland) FROM table_name_17 WHERE industrial_and_commercial_panel < 1 AND cultural_and_educational_panel > 0", "question": "What is the total for National University of Ireland with an industrial and commercial panel less than 1, and the cultural and educational panel bigger than 0?", "context": "CREATE TABLE table_name_17 (national_university_of_ireland VARCHAR, industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR)"}, {"answer": "SELECT AVG(administrative_panel) FROM table_name_77 WHERE cultural_and_educational_panel > 1 AND industrial_and_commercial_panel < 4", "question": "What is the administrative panel average when the cultural and educational panel is greater than 1 and the industrial and commercial panel less than 4?", "context": "CREATE TABLE table_name_77 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR)"}, {"answer": "SELECT MAX(administrative_panel) FROM table_name_37 WHERE nominated_by_the_taoiseach > 3 AND agricultural_panel = 5 AND cultural_and_educational_panel > 2", "question": "What is the biggest administrative panel with a nominated by the Taoiseach greater than 3 and an argricultural panel of 5, plust a cultural and educational panel larger than 2?", "context": "CREATE TABLE table_name_37 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR)"}, {"answer": "SELECT MIN(cultural_and_educational_panel) FROM table_name_74 WHERE nominated_by_the_taoiseach < 5 AND total > 19", "question": "What is the smallest cultural and educational panel with a nominated by the Taoiseach less than 5 and the total greater than 19?", "context": "CREATE TABLE table_name_74 (cultural_and_educational_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(industrial_and_commercial_panel) FROM table_name_22 WHERE cultural_and_educational_panel < 0", "question": "With the cultural and educational panel less than 0 what is the average industrial and commercial panel?", "context": "CREATE TABLE table_name_22 (industrial_and_commercial_panel INTEGER, cultural_and_educational_panel INTEGER)"}, {"answer": "SELECT COUNT(silver) FROM table_name_22 WHERE total = 5 AND gold > 3", "question": "What is the total number of silver medals for nations with 5 total medals and more than 3 gold medals?", "context": "CREATE TABLE table_name_22 (silver VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT label FROM table_name_18 WHERE date = 1969", "question": "What was the label in 1969?", "context": "CREATE TABLE table_name_18 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT commissioned FROM table_name_29 WHERE nvr_page = \"mcm02\"", "question": "What is the Commissioned date of the ship in NVR Page MCM02?", "context": "CREATE TABLE table_name_29 (commissioned VARCHAR, nvr_page VARCHAR)"}, {"answer": "SELECT nvr_page FROM table_name_6 WHERE home_port = \"sasebo, japan\"", "question": "What is the NVR Page of the ship with a Home Port of Sasebo, Japan?", "context": "CREATE TABLE table_name_6 (nvr_page VARCHAR, home_port VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_34 WHERE attendance = 54 OFFSET 015", "question": "Which week's game was attended by 54,015 people?", "context": "CREATE TABLE table_name_34 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE week < 4 AND attendance > 54 OFFSET 015", "question": "What date was the game that was before week 4 and was attended by over 54,015 people ?", "context": "CREATE TABLE table_name_33 (date VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT venue FROM table_name_19 WHERE result = \"eng by 4 wkts\"", "question": "In what venues was the match with a final result of Eng by 4 wkts?", "context": "CREATE TABLE table_name_19 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT Running AS time FROM table_name_46 WHERE channel = \"bbc four\" AND date = \"23 march 2008\"", "question": "What is the running time of the transmission on bbc four channels on 23 March 2008?", "context": "CREATE TABLE table_name_46 (Running VARCHAR, channel VARCHAR, date VARCHAR)"}, {"answer": "SELECT notes FROM table_name_15 WHERE channel = \"bbc four\" AND time = \"22:30\"", "question": "What is the notes of the transmission on channel bbc four and a time of 22:30?", "context": "CREATE TABLE table_name_15 (notes VARCHAR, channel VARCHAR, time VARCHAR)"}, {"answer": "SELECT channel FROM table_name_74 WHERE date = \"28 december 2008\"", "question": "Which channel was on 28 December 2008?", "context": "CREATE TABLE table_name_74 (channel VARCHAR, date VARCHAR)"}, {"answer": "SELECT channel FROM table_name_51 WHERE time = \"03:40\"", "question": "What is the channel with a 03:40 time?", "context": "CREATE TABLE table_name_51 (channel VARCHAR, time VARCHAR)"}, {"answer": "SELECT other_b FROM table_name_96 WHERE fa_cup = \"3 (17)\"", "question": "What is the Other b when the FA Cup shows 3 (17)?", "context": "CREATE TABLE table_name_96 (other_b VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT total FROM table_name_39 WHERE league_a = \"79 (221)\"", "question": "What is the Total when the league shows 79 (221)?", "context": "CREATE TABLE table_name_39 (total VARCHAR, league_a VARCHAR)"}, {"answer": "SELECT name FROM table_name_40 WHERE league_cup = \"0 (0)\" AND fa_cup = \"12 (14)\"", "question": "What is the Name when the League Cup shows 0 (0), and the FA Cup is 12 (14)?", "context": "CREATE TABLE table_name_40 (name VARCHAR, league_cup VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT league_a FROM table_name_2 WHERE years = \"1952\u20131960\"", "question": "What is the League for 1952\u20131960?", "context": "CREATE TABLE table_name_2 (league_a VARCHAR, years VARCHAR)"}, {"answer": "SELECT league_a FROM table_name_47 WHERE fa_cup = \"6 (20)\"", "question": "What shows for the League when the FA Cup is 6 (20)?", "context": "CREATE TABLE table_name_47 (league_a VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT club FROM table_name_97 WHERE player = \"hristo stoitchkov\"", "question": "What club wast he player hristo stoitchkov from?", "context": "CREATE TABLE table_name_97 (club VARCHAR, player VARCHAR)"}, {"answer": "SELECT content FROM table_name_20 WHERE television_service = \"la sorgente sat 3\"", "question": "What is the content for la sorgente sat 3?", "context": "CREATE TABLE table_name_20 (content VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT language FROM table_name_3 WHERE television_service = \"telemarket for you\"", "question": "What language is telemarket for you?", "context": "CREATE TABLE table_name_3 (language VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT language FROM table_name_59 WHERE content = \"televendita\" AND television_service = \"telemarket for you\"", "question": "What language is telemarket for you with a content of televendita?", "context": "CREATE TABLE table_name_59 (language VARCHAR, content VARCHAR, television_service VARCHAR)"}, {"answer": "SELECT team FROM table_name_81 WHERE points < 6 AND year > 1969", "question": "Which team has points less than 6 in a year after 1969?", "context": "CREATE TABLE table_name_81 (team VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT wins FROM table_name_35 WHERE points < 6 AND class = \"350cc\"", "question": "How many wins for the team with points less than 6 and a 350cc class?", "context": "CREATE TABLE table_name_35 (wins VARCHAR, points VARCHAR, class VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_18 WHERE rank = \"36th\"", "question": "What is the lowest points for 36th rank?", "context": "CREATE TABLE table_name_18 (points INTEGER, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_8 WHERE team = \"yamaha\" AND points = 3", "question": "What is team Yamaha with 3 points ranked?", "context": "CREATE TABLE table_name_8 (rank VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT years FROM table_name_83 WHERE rank < 8 AND matches = 447", "question": "What years did the player ranked less than 8 and had 447 matches play?", "context": "CREATE TABLE table_name_83 (years VARCHAR, rank VARCHAR, matches VARCHAR)"}, {"answer": "SELECT time FROM table_name_98 WHERE record = \"15-7\"", "question": "What is the Time with a Record that is 15-7?", "context": "CREATE TABLE table_name_98 (time VARCHAR, record VARCHAR)"}, {"answer": "SELECT event FROM table_name_85 WHERE time = \"3:06\"", "question": "What is the Event with a Time that is 3:06?", "context": "CREATE TABLE table_name_85 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT silver FROM table_name_78 WHERE nation = \"turkey\"", "question": "How many silvers did Turkey get?", "context": "CREATE TABLE table_name_78 (silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT position FROM table_name_98 WHERE player = \"denard walker\"", "question": "What position does Denard Walker play?", "context": "CREATE TABLE table_name_98 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_7 WHERE position = \"wide receiver\" AND college = \"michigan state\"", "question": "What was the pick number for the wide receiver drafted from Michigan State?", "context": "CREATE TABLE table_name_7 (pick__number VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_38 WHERE college = \"kent state\"", "question": "Which player came from Kent State?", "context": "CREATE TABLE table_name_38 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_28 WHERE silver = 4 AND gold > 2", "question": "What is the total number of bronze medals, and 4 silver medals, and 2 gold medals?", "context": "CREATE TABLE table_name_28 (bronze VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_9 WHERE score = \"2\u20136 6\u20134 [10\u20138]\"", "question": "Which Tournament has a score of 2\u20136 6\u20134 [10\u20138]?", "context": "CREATE TABLE table_name_9 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_73 WHERE score = \"6(4)\u20137 2\u20136\"", "question": "Which Tournament has a Score of 6(4)\u20137 2\u20136?", "context": "CREATE TABLE table_name_73 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE opponents_in_the_final = \"vitalia diatchenko irena pavlovic\"", "question": "What is the Score of the match where Opponents in the Final was Vitalia Diatchenko Irena Pavlovic?", "context": "CREATE TABLE table_name_46 (score VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_71 WHERE game = 62", "question": "What is the High rebounds with a Game that is 62?", "context": "CREATE TABLE table_name_71 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_name_35 WHERE score = \"l 79\u201392 (ot)\"", "question": "What is the Team with a Score that is l 79\u201392 (ot)?", "context": "CREATE TABLE table_name_35 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT coach FROM table_name_4 WHERE details = \"2012 gold coast titans season\"", "question": "Who is the coach of the 2012 Gold Coast Titans season?", "context": "CREATE TABLE table_name_4 (coach VARCHAR, details VARCHAR)"}, {"answer": "SELECT coach FROM table_name_8 WHERE details = \"2010 gold coast titans season\"", "question": "Who is the coach of the 2010 Gold Coast Titans season?", "context": "CREATE TABLE table_name_8 (coach VARCHAR, details VARCHAR)"}, {"answer": "SELECT captain_s_ FROM table_name_75 WHERE competition = \"2012 nrl season\"", "question": "Who is the captain of the 2012 NRL season competition?", "context": "CREATE TABLE table_name_75 (captain_s_ VARCHAR, competition VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_55 WHERE tournament = \"pga championship\" AND events > 10", "question": "How many wins were in the PGA Championship when there were more than 10 events?", "context": "CREATE TABLE table_name_55 (wins VARCHAR, tournament VARCHAR, events VARCHAR)"}, {"answer": "SELECT MIN(cuts_made) FROM table_name_59 WHERE wins > 0", "question": "What is the smallest number of cuts when there were more than 0 wins?", "context": "CREATE TABLE table_name_59 (cuts_made INTEGER, wins INTEGER)"}, {"answer": "SELECT COUNT(rank) FROM table_name_51 WHERE years = \"1996\u20132007\" AND goals > 108", "question": "What is the total number of Rank for 1996\u20132007, when there are more than 108 goals?", "context": "CREATE TABLE table_name_51 (rank VARCHAR, years VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_50 WHERE goals > 124 AND name = \"jeff cunningham\"", "question": "What is the lowest Rank when the goals are less than 124 for Jeff Cunningham?", "context": "CREATE TABLE table_name_50 (rank INTEGER, goals VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_3 WHERE goals = 100 AND matches < 300", "question": "What is the total number of Rank with 100 goals, and less than 300 matches?", "context": "CREATE TABLE table_name_3 (rank VARCHAR, goals VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_67 WHERE name = \"jason kreis\" AND matches < 305", "question": "What is the highest Rank for Jason Kreis, with less than 305 matches?", "context": "CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_41 WHERE top_10 > 8", "question": "What is the least number of wins when the top 10 is more than 8?", "context": "CREATE TABLE table_name_41 (wins INTEGER, top_10 INTEGER)"}, {"answer": "SELECT COUNT(cuts_made) FROM table_name_45 WHERE top_5 = 2 AND events = 12", "question": "What is the sum of cuts made when the top-5 is 2, and there are 12 events?", "context": "CREATE TABLE table_name_45 (cuts_made VARCHAR, top_5 VARCHAR, events VARCHAR)"}, {"answer": "SELECT AVG(top_5) FROM table_name_61 WHERE top_25 = 1 AND wins < 0", "question": "What is the mean number in the top 5 when the top 25 is 1 and there's fewer than 0 wins?", "context": "CREATE TABLE table_name_61 (top_5 INTEGER, top_25 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(events) FROM table_name_51 WHERE top_5 = 1", "question": "What is the mean number of events when top-5 is 1?", "context": "CREATE TABLE table_name_51 (events INTEGER, top_5 VARCHAR)"}, {"answer": "SELECT SUM(top_25) FROM table_name_24 WHERE events > 91", "question": "How many top-25s are associated with more than 91 events?", "context": "CREATE TABLE table_name_24 (top_25 INTEGER, events INTEGER)"}, {"answer": "SELECT MIN(wins) FROM table_name_40 WHERE top_10 > 9", "question": "What is the lowest Wins with a Top-10 that is larger than 9?", "context": "CREATE TABLE table_name_40 (wins INTEGER, top_10 INTEGER)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_15 WHERE top_10 > 9", "question": "What is the average Cuts that were made with a Top-10 that is larger than 9?", "context": "CREATE TABLE table_name_15 (cuts_made INTEGER, top_10 INTEGER)"}, {"answer": "SELECT record FROM table_name_51 WHERE attendance = \"64,053\"", "question": "Which record has 64,053 as the attendance?", "context": "CREATE TABLE table_name_51 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE game_site = \"rich stadium\" AND week = 1", "question": "Which date has rich stadium as the game site for week 1?", "context": "CREATE TABLE table_name_13 (date VARCHAR, game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE week = 1", "question": "Which date has 1 as the week?", "context": "CREATE TABLE table_name_22 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT title FROM table_name_5 WHERE riaa_sales_certification = \"gold\"", "question": "Which Title was awarded the gold RIAA Sales Certification?", "context": "CREATE TABLE table_name_5 (title VARCHAR, riaa_sales_certification VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_80 WHERE riaa_sales_certification = \"gold\" AND title = \"lost without your love\" AND billboard_200_peak > 26", "question": "For how many years did the song \"Lost Without Your Love\" win the gold RIAA Sales Certification, and have a Billboard 200 Peak greater than 26?", "context": "CREATE TABLE table_name_80 (year INTEGER, billboard_200_peak VARCHAR, riaa_sales_certification VARCHAR, title VARCHAR)"}, {"answer": "SELECT riaa_sales_certification FROM table_name_50 WHERE billboard_200_peak < 18 AND year < 1972", "question": "Before the Year 1972, what RIAA Sales Certification was awarded to the song that had a Billboard 200 Peak less than 18?", "context": "CREATE TABLE table_name_50 (riaa_sales_certification VARCHAR, billboard_200_peak VARCHAR, year VARCHAR)"}, {"answer": "SELECT riaa_sales_certification FROM table_name_1 WHERE billboard_200_peak = 21", "question": "What RIAA Sales Certification was awarded to the song that had a Billboard 200 Peak of 21?", "context": "CREATE TABLE table_name_1 (riaa_sales_certification VARCHAR, billboard_200_peak VARCHAR)"}, {"answer": "SELECT SUM(billboard_200_peak) FROM table_name_38 WHERE year > 1971", "question": "What is the sum of the Billboard 200 Peak scores after the Year 1971?", "context": "CREATE TABLE table_name_38 (billboard_200_peak INTEGER, year INTEGER)"}, {"answer": "SELECT SUM(billboard_200_peak) FROM table_name_70 WHERE title = \"bread\"", "question": "What is the sum of the Billboard 200 Peak scores given to the song with the Title Bread?", "context": "CREATE TABLE table_name_70 (billboard_200_peak INTEGER, title VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_4 WHERE silver = 1 AND bronze = 1 AND nation = \"austria\"", "question": "What is the number of gold when the silver is 1, bronze is 1, and the nation is Austria?", "context": "CREATE TABLE table_name_4 (gold VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT nation FROM table_name_54 WHERE bronze = 2 AND rank = 9", "question": "What nation has 2 bronze and a rank of 9?", "context": "CREATE TABLE table_name_54 (nation VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_93 WHERE bronze = 1 AND rank = 5", "question": "What is the highest gold when bronze is 1, and rank is 5?", "context": "CREATE TABLE table_name_93 (gold INTEGER, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_24 WHERE bronze = 0 AND total < 2 AND silver < 0", "question": "What is the lowest gold when there are 0 bronze and the total is less than 2, and silver is less than 0?", "context": "CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_12 WHERE total = 3 AND nation = \"australia\"", "question": "What is the sum of rank when total is 3 and the nation is Australia?", "context": "CREATE TABLE table_name_12 (rank INTEGER, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT rank FROM table_name_29 WHERE goals < 66", "question": "What is the Rank with a Goal number smaller than 66?", "context": "CREATE TABLE table_name_29 (rank VARCHAR, goals INTEGER)"}, {"answer": "SELECT spoofed_title FROM table_name_43 WHERE issue > 509 AND actual_title = \"parks and recreation\"", "question": "What is the spoofed title for Parks and Recreation with an issue larger than 509?", "context": "CREATE TABLE table_name_43 (spoofed_title VARCHAR, issue VARCHAR, actual_title VARCHAR)"}, {"answer": "SELECT actual_title FROM table_name_15 WHERE artist = \"tom richmond\" AND issue < 508 AND writer = \"desmond devlin\"", "question": "What was the actual title of the show that had an issue number less than 508, was written by Desmond Devlin, and for which Tom Richmond was the artist?", "context": "CREATE TABLE table_name_15 (actual_title VARCHAR, writer VARCHAR, artist VARCHAR, issue VARCHAR)"}, {"answer": "SELECT SUM(issue) FROM table_name_75 WHERE spoofed_title = \"ho-hum land\"", "question": "What issue was the spoofed title Ho-Hum land?", "context": "CREATE TABLE table_name_75 (issue INTEGER, spoofed_title VARCHAR)"}, {"answer": "SELECT artist FROM table_name_82 WHERE actual_title = \"game of thrones\"", "question": "Game of Thrones was done by which artist?", "context": "CREATE TABLE table_name_82 (artist VARCHAR, actual_title VARCHAR)"}, {"answer": "SELECT surface FROM table_name_77 WHERE outcome = \"runner-up\" AND date = \"24 february 1997\"", "question": "What is the Surface when Todd Woodbridge was the runner-up, and a Date of 24 february 1997?", "context": "CREATE TABLE table_name_77 (surface VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE outcome = \"runner-up\" AND date = \"26 august 1996\"", "question": "What is the Opponent when Todd Woodbridge was the runner-up, and a Date of 26 august 1996?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_75 WHERE score = \"4\u20136, 6\u20133, 6\u20137 (5\u20137)\"", "question": "What is the Surface when the score was 4\u20136, 6\u20133, 6\u20137 (5\u20137)?", "context": "CREATE TABLE table_name_75 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE surface = \"hard\" AND championship = \"new haven , usa\"", "question": "What is the Score when there was a hard surface and the Championship is new haven , usa?", "context": "CREATE TABLE table_name_93 (score VARCHAR, surface VARCHAR, championship VARCHAR)"}, {"answer": "SELECT position FROM table_name_90 WHERE birthdate = \"june 30, 1981\"", "question": "Which Position player was born June 30, 1981?", "context": "CREATE TABLE table_name_90 (position VARCHAR, birthdate VARCHAR)"}, {"answer": "SELECT 2005 AS _2006_team FROM table_name_89 WHERE name = \"phil kessel\"", "question": "What is the 2005-2006 team for player Phil Kessel?", "context": "CREATE TABLE table_name_89 (name VARCHAR)"}, {"answer": "SELECT SUM(goals_for) FROM table_name_84 WHERE drawn > 10", "question": "What is the total sum of the goals at competitions with more than 10 draws?", "context": "CREATE TABLE table_name_84 (goals_for INTEGER, drawn INTEGER)"}, {"answer": "SELECT MAX(wins) FROM table_name_14 WHERE byes > 2", "question": "For the teams that had more than 2 Byes, what was the highest number of Wins?", "context": "CREATE TABLE table_name_14 (wins INTEGER, byes INTEGER)"}, {"answer": "SELECT COUNT(draws) FROM table_name_21 WHERE losses < 4 AND wins < 16", "question": "For the teams that had fewer than 4 Losses, and less than 16 Wins, what was the total number of Draws?", "context": "CREATE TABLE table_name_21 (draws VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_51 WHERE losses < 1", "question": "For the teams that had less than 1 loss, what was the average number of Wins?", "context": "CREATE TABLE table_name_51 (wins INTEGER, losses INTEGER)"}, {"answer": "SELECT MIN(draws) FROM table_name_38 WHERE byes < 1", "question": "For the teams that had fewer than 1 Byes, what was the lowest number of Draws?", "context": "CREATE TABLE table_name_38 (draws INTEGER, byes INTEGER)"}, {"answer": "SELECT MAX(draws) FROM table_name_24 WHERE ballarat_fl = \"sebastapol\" AND against < 1802", "question": "What was the highest number of Draws scored by Sebastapol when the value for Against was less than 1802?", "context": "CREATE TABLE table_name_24 (draws INTEGER, ballarat_fl VARCHAR, against VARCHAR)"}, {"answer": "SELECT season FROM table_name_68 WHERE opponent = \"zenit st. petersburg\"", "question": "What is the Season when the Opponent was zenit st. petersburg?", "context": "CREATE TABLE table_name_68 (season VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_75 WHERE round = \"q2\" AND season = \"2005\u201306\"", "question": "What is the Opponent with a Round of q2, in the 2005\u201306 season?", "context": "CREATE TABLE table_name_75 (opponent VARCHAR, round VARCHAR, season VARCHAR)"}, {"answer": "SELECT competition FROM table_name_86 WHERE season = \"2002\u201303\" AND opponent = \"zenit st. petersburg\"", "question": "What is the Competition for Season 2002\u201303, and the Opponent was zenit st. petersburg?", "context": "CREATE TABLE table_name_86 (competition VARCHAR, season VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_86 WHERE series = \"5th place\" AND season = \"2006\u201307\"", "question": "What is the Round when the series shows 5th place, and a Season of 2006\u201307?", "context": "CREATE TABLE table_name_86 (round VARCHAR, series VARCHAR, season VARCHAR)"}, {"answer": "SELECT series FROM table_name_35 WHERE competition = \"uefa cup\" AND season = \"2006\u201307\" AND round = \"group\" AND opponent = \"az\"", "question": "What is the Series for the uefa cup, in the 2006\u201307 season, and a Round of group, and an opponent of az?", "context": "CREATE TABLE table_name_35 (series VARCHAR, opponent VARCHAR, round VARCHAR, competition VARCHAR, season VARCHAR)"}, {"answer": "SELECT flag FROM table_name_66 WHERE ship = \"aidavita\"", "question": "Which Flag did the Ship Aidavita have?", "context": "CREATE TABLE table_name_66 (flag VARCHAR, ship VARCHAR)"}, {"answer": "SELECT set_5 FROM table_name_85 WHERE total = \"77 - 65\"", "question": "What shows for Set 5 when the Total was 77 - 65?", "context": "CREATE TABLE table_name_85 (set_5 VARCHAR, total VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_27 WHERE total = \"98 - 92\"", "question": "What is the Set 3 when the Total was 98 - 92?", "context": "CREATE TABLE table_name_27 (set_3 VARCHAR, total VARCHAR)"}, {"answer": "SELECT total FROM table_name_68 WHERE set_3 = \"25-15\"", "question": "What is the Total when the Set 3 was 25-15?", "context": "CREATE TABLE table_name_68 (total VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_72 WHERE total = \"62 - 75\"", "question": "What is the Set 3 when the Total was 62 - 75?", "context": "CREATE TABLE table_name_72 (set_3 VARCHAR, total VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE set_2 = \"25-20\" AND total = \"75 - 49\"", "question": "What is the Score when Set 2 shows 25-20, and a Total of 75 - 49?", "context": "CREATE TABLE table_name_27 (score VARCHAR, set_2 VARCHAR, total VARCHAR)"}, {"answer": "SELECT ethernet_ports FROM table_name_5 WHERE name = \"m1500\"", "question": "What is the ethernet ports of the m1500 appliance?", "context": "CREATE TABLE table_name_5 (ethernet_ports VARCHAR, name VARCHAR)"}, {"answer": "SELECT ethernet_ports FROM table_name_86 WHERE name = \"u150\"", "question": "What is the ethernet ports of the u150 appliance?", "context": "CREATE TABLE table_name_86 (ethernet_ports VARCHAR, name VARCHAR)"}, {"answer": "SELECT dimensions FROM table_name_27 WHERE name = \"u50\"", "question": "What is the dimensions of the u50 appliance?", "context": "CREATE TABLE table_name_27 (dimensions VARCHAR, name VARCHAR)"}, {"answer": "SELECT ethernet_ports FROM table_name_51 WHERE name = \"u10\"", "question": "What is the ethernet ports of the u10 appliance?", "context": "CREATE TABLE table_name_51 (ethernet_ports VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_84 WHERE bronze < 1", "question": "What is the total number of Silver medals for the Nation with less than 1 Bronze?", "context": "CREATE TABLE table_name_84 (silver VARCHAR, bronze INTEGER)"}, {"answer": "SELECT COUNT(gold) FROM table_name_70 WHERE bronze > 1 AND total > 4", "question": "What is the total number of Gold medals for the Nation with more than 1 Bronze and more the 4 Total medals?", "context": "CREATE TABLE table_name_70 (gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_15 WHERE bronze > 3", "question": "What is the total number of Gold medals for the Nation with more than 3 Bronze?", "context": "CREATE TABLE table_name_15 (gold VARCHAR, bronze INTEGER)"}, {"answer": "SELECT MIN(gold) FROM table_name_83 WHERE nation = \"great britain\" AND total > 2", "question": "How many Gold medals did Great Britain with a Total of more than 2 medals receive?", "context": "CREATE TABLE table_name_83 (gold INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_37 WHERE rank < 1", "question": "How many Silver medals did the Nation with a Rank of less than 1 receive?", "context": "CREATE TABLE table_name_37 (silver INTEGER, rank INTEGER)"}, {"answer": "SELECT AVG(total) FROM table_name_61 WHERE fa_cup = 1 AND fa_trophy > 0", "question": "What is the average total with 1 FA cup and more than 0 FA trophies?", "context": "CREATE TABLE table_name_61 (total INTEGER, fa_cup VARCHAR, fa_trophy VARCHAR)"}, {"answer": "SELECT club FROM table_name_34 WHERE fa_trophy > 2 AND fa_cup > 2", "question": "Which club had more than 2 FA trophies and more than 2 FA cups?", "context": "CREATE TABLE table_name_34 (club VARCHAR, fa_trophy VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_37 WHERE record = \"11\u20134\u20131\"", "question": "Who was the opponent when the Maroons record was 11\u20134\u20131?", "context": "CREATE TABLE table_name_37 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT result FROM table_name_79 WHERE date = \"january 5, 1926\"", "question": "What was the result of the game on January 5, 1926?", "context": "CREATE TABLE table_name_79 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE margin_of_victory = \"2 strokes\"", "question": "What date had a margin victory of 2 strokes?", "context": "CREATE TABLE table_name_91 (date VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_39 WHERE tournament = \"semgroup championship\"", "question": "What is the margin of victory in a semgroup championship?", "context": "CREATE TABLE table_name_39 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_81 WHERE margin_of_victory = \"2 strokes\"", "question": "What was the winning score with a margin victory of 2 strokes?", "context": "CREATE TABLE table_name_81 (winning_score VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT MAX(pct__percentage) FROM table_name_60 WHERE goals_against < 229", "question": "What is the highest Pct %, when Goals Against is less than 229?", "context": "CREATE TABLE table_name_60 (pct__percentage INTEGER, goals_against INTEGER)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_37 WHERE playoffs = \"lost in round 2\" AND games < 81", "question": "What is the average Goals, when Playoffs is Lost in Round 2, and when Games is less than 81?", "context": "CREATE TABLE table_name_37 (goals_for INTEGER, playoffs VARCHAR, games VARCHAR)"}, {"answer": "SELECT SUM(goals_against) FROM table_name_33 WHERE lost = 45 AND points > 68", "question": "What is the sum of Goals Against, when Lost is 45, and when Points is greater than 68?", "context": "CREATE TABLE table_name_33 (goals_against INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_14 WHERE games < 82 AND points < 95 AND pct__percentage < 0.506", "question": "What is the average Lost, when Games is less than 82, when Points is less than 95, and when Pct % is less than 0.506?", "context": "CREATE TABLE table_name_14 (lost INTEGER, pct__percentage VARCHAR, games VARCHAR, points VARCHAR)"}, {"answer": "SELECT class FROM table_name_90 WHERE livery = \"wessex trains pink\"", "question": "What is the Class when Wessex Trains Pink is the Livery?", "context": "CREATE TABLE table_name_90 (class VARCHAR, livery VARCHAR)"}, {"answer": "SELECT livery FROM table_name_57 WHERE number = 31468", "question": "What is the Livery when the Number is 31468?", "context": "CREATE TABLE table_name_57 (livery VARCHAR, number VARCHAR)"}, {"answer": "SELECT skip FROM table_name_6 WHERE nation = \"germany\"", "question": "What was the Skip for Germany?", "context": "CREATE TABLE table_name_6 (skip VARCHAR, nation VARCHAR)"}, {"answer": "SELECT club FROM table_name_58 WHERE nation = \"great britain\"", "question": "What was the club for Great Britain?", "context": "CREATE TABLE table_name_58 (club VARCHAR, nation VARCHAR)"}, {"answer": "SELECT alternate FROM table_name_38 WHERE second = \"magnus swartling\"", "question": "Who is the alternate for Magnus Swartling as Second?", "context": "CREATE TABLE table_name_38 (alternate VARCHAR, second VARCHAR)"}, {"answer": "SELECT club FROM table_name_69 WHERE lead = \"jamie korab\"", "question": "Which club has Jamie Korab as Lead?", "context": "CREATE TABLE table_name_69 (club VARCHAR, lead VARCHAR)"}, {"answer": "SELECT lead FROM table_name_62 WHERE third = \"hans frauenlob\"", "question": "Which Lead has Hans Frauenlob as a Third?", "context": "CREATE TABLE table_name_62 (lead VARCHAR, third VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_22 WHERE result = \"aus by 218 runs\"", "question": "Who was the Home captain when the Result was Aus by 218 runs?", "context": "CREATE TABLE table_name_22 (home_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_49 WHERE serbian_title = \"\u0431\u0435\u043b\u043e \u043e\u0434\u0435\u043b\u043e\"", "question": "What is the Film title used in nomination of the Film with a Serbian title of \u0431\u0435\u043b\u043e \u043e\u0434\u0435\u043b\u043e?", "context": "CREATE TABLE table_name_49 (film_title_used_in_nomination VARCHAR, serbian_title VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_46 WHERE film_title_used_in_nomination = \"labyrinth\"", "question": "In what Year was Labyrinth nominated?", "context": "CREATE TABLE table_name_46 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_69 WHERE date = \"march 25\"", "question": "What is the High assists for march 25?", "context": "CREATE TABLE table_name_69 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE high_points = \"donyell marshall (26)\"", "question": "What is the Score when Donyell Marshall (26) had the high points?", "context": "CREATE TABLE table_name_20 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_81 WHERE high_assists = \"morris peterson (8)\"", "question": "What is the highest Game when Morris Peterson (8) had the high assists?", "context": "CREATE TABLE table_name_81 (game INTEGER, high_assists VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_35 WHERE high_points = \"jalen rose (22)\"", "question": "What is the High assists when jalen rose (22) had the high points?", "context": "CREATE TABLE table_name_35 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_64 WHERE record = \"28\u201340\"", "question": "What is the High assists when the record was 28\u201340?", "context": "CREATE TABLE table_name_64 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT brazil_scorers FROM table_name_11 WHERE score = \"3-3\"", "question": "Who were the Brazil scorers who scored 3-3?", "context": "CREATE TABLE table_name_11 (brazil_scorers VARCHAR, score VARCHAR)"}, {"answer": "SELECT brazil_scorers FROM table_name_41 WHERE score = \"6-0\"", "question": "Who is the Brazil scorer who scored 6-0?", "context": "CREATE TABLE table_name_41 (brazil_scorers VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_30 WHERE score = \"2-2\"", "question": "With a score of 2-2, what was the Result?", "context": "CREATE TABLE table_name_30 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT original_team FROM table_name_22 WHERE hometown = \"brooklyn, new york\" AND background = \"comedienne\"", "question": "Which Original Team has a Hometown of Brooklyn, New York and a Background of Comedienne?", "context": "CREATE TABLE table_name_22 (original_team VARCHAR, hometown VARCHAR, background VARCHAR)"}, {"answer": "SELECT background FROM table_name_71 WHERE hometown = \"los angeles, california\"", "question": "What is the Background of the contestant with a Hometown listed as Los Angeles, California?", "context": "CREATE TABLE table_name_71 (background VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT background FROM table_name_20 WHERE result = \"07 fired in task 6 (2009-04-05)\"", "question": "What is the Background of the contestant with a Result of 07 fired in task 6 (2009-04-05)?", "context": "CREATE TABLE table_name_20 (background VARCHAR, result VARCHAR)"}, {"answer": "SELECT original_team FROM table_name_13 WHERE hometown = \"wrightsville, georgia\"", "question": "What is the Original Team of the contestant from Wrightsville, Georgia ?", "context": "CREATE TABLE table_name_13 (original_team VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_27 WHERE opponent = \"carolina panthers\"", "question": "Which Attendance has an Opponent of carolina panthers?", "context": "CREATE TABLE table_name_27 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE week < 11 AND attendance = \"54,094\"", "question": "Which Date has a Week smaller than 11, and a Attendance of 54,094?", "context": "CREATE TABLE table_name_17 (date VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(episode_number) FROM table_name_40 WHERE title = \"sugar daddy\"", "question": "What is the number of the episode titled 'Sugar Daddy'?", "context": "CREATE TABLE table_name_40 (episode_number INTEGER, title VARCHAR)"}, {"answer": "SELECT nation FROM table_name_87 WHERE gold > 1 AND silver = 4", "question": "Which nations have more than 1 gold medal and 4 silver medals?", "context": "CREATE TABLE table_name_87 (nation VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_77 WHERE week = 7", "question": "In Week 7, what is the highest attendance number?", "context": "CREATE TABLE table_name_77 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_98 WHERE week = 13", "question": "In Week 13, who was the opponent?", "context": "CREATE TABLE table_name_98 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE week = 9", "question": "What date did Week 9 begin?", "context": "CREATE TABLE table_name_27 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT award FROM table_name_16 WHERE year = \"2012\"", "question": "Which award was given in 2012?", "context": "CREATE TABLE table_name_16 (award VARCHAR, year VARCHAR)"}, {"answer": "SELECT award FROM table_name_92 WHERE role = \"elphaba\" AND year = \"2009\"", "question": "Which award was given for the role of Elphaba in 2009?", "context": "CREATE TABLE table_name_92 (award VARCHAR, role VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_73 WHERE role = \"ellie greenwich\" AND year = \"2005\"", "question": "What was the result for the role of Ellie Greenwich in 2005?", "context": "CREATE TABLE table_name_73 (result VARCHAR, role VARCHAR, year VARCHAR)"}, {"answer": "SELECT award FROM table_name_81 WHERE result = \"nominated\" AND production = \"an officer and a gentleman\"", "question": "Which award was An Officer and a Gentleman nominated for?", "context": "CREATE TABLE table_name_81 (award VARCHAR, result VARCHAR, production VARCHAR)"}, {"answer": "SELECT year FROM table_name_44 WHERE production = \"wicked\" AND award = \"green room awards\"", "question": "During what year was Wicked associated with the Green Room Awards?", "context": "CREATE TABLE table_name_44 (year VARCHAR, production VARCHAR, award VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_73 WHERE locomotive_number = \"ctn 46\"", "question": "What manufacturer makes locomotive number CTN 46?", "context": "CREATE TABLE table_name_73 (manufacturer VARCHAR, locomotive_number VARCHAR)"}, {"answer": "SELECT type FROM table_name_26 WHERE locomotive_number = \"ctn 46\"", "question": "What type is locomotive number CTN 46?", "context": "CREATE TABLE table_name_26 (type VARCHAR, locomotive_number VARCHAR)"}, {"answer": "SELECT type FROM table_name_29 WHERE locomotive_number = \"ctn 1364\"", "question": "What type is locomotive CTN 1364?", "context": "CREATE TABLE table_name_29 (type VARCHAR, locomotive_number VARCHAR)"}, {"answer": "SELECT cuts_made FROM table_name_43 WHERE wins < 3 AND events = 23", "question": "What cuts made has a wins less than 3 and 23 for the events?", "context": "CREATE TABLE table_name_43 (cuts_made VARCHAR, wins VARCHAR, events VARCHAR)"}, {"answer": "SELECT MIN(events) FROM table_name_14 WHERE cuts_made = 17 AND top_25 < 8", "question": "What is the lowest events that have 17 as the cuts made, with a top-25 less than 8?", "context": "CREATE TABLE table_name_14 (events INTEGER, cuts_made VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MIN(cuts_made) FROM table_name_84 WHERE events < 4", "question": "What are the lowest cuts made that have events less than 4?", "context": "CREATE TABLE table_name_84 (cuts_made INTEGER, events INTEGER)"}, {"answer": "SELECT MAX(top_10) FROM table_name_49 WHERE tournament = \"u.s. open\" AND top_25 > 12", "question": "What is the highest top-10 that has a u.s. open for the tournament, and a top-25 greater than 12?", "context": "CREATE TABLE table_name_49 (top_10 INTEGER, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_99 WHERE loses > 16 AND goals_scored > 44 AND position < 13", "question": "How many points are there with more losses than 16, more goals than 44, and a smaller position than 13?", "context": "CREATE TABLE table_name_99 (points VARCHAR, position VARCHAR, loses VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_12 WHERE goals_conceded < 51 AND position > 1 AND draws = 7 AND loses > 5", "question": "What is the sum of the points with less goals conceded than 51, larger than position 1, has a draw of 7, and more losses than 5?", "context": "CREATE TABLE table_name_12 (points INTEGER, loses VARCHAR, draws VARCHAR, goals_conceded VARCHAR, position VARCHAR)"}, {"answer": "SELECT surface FROM table_name_45 WHERE score = \"6\u20131, 3\u20130 ret.\"", "question": "Which has a Score of 6\u20131, 3\u20130 ret.?", "context": "CREATE TABLE table_name_45 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_79 WHERE date = \"23 january 2011\"", "question": "Which Surface is on 23 january 2011?", "context": "CREATE TABLE table_name_79 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE surface = \"hard\" AND tournament = \"wrexham , great britain\"", "question": "When has a Surface of hard, a Tournament of wrexham , great britain?", "context": "CREATE TABLE table_name_46 (date VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_96 WHERE opponent_in_the_final = \"st\u00e9phane robert\"", "question": "Which Surface has an Opponent in the final of st\u00e9phane robert?", "context": "CREATE TABLE table_name_96 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_68 WHERE score = \"6\u20134, 0\u20136, 6\u20132\"", "question": "What kind of Surface has a Score of 6\u20134, 0\u20136, 6\u20132?", "context": "CREATE TABLE table_name_68 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_60 WHERE branding = \"cbc radio one\"", "question": "Which Call sign has a Branding of cbc radio one?", "context": "CREATE TABLE table_name_60 (call_sign VARCHAR, branding VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_67 WHERE format = \"country / news / sports\"", "question": "WHich Frequency has a Format of country / news / sports?", "context": "CREATE TABLE table_name_67 (frequency VARCHAR, format VARCHAR)"}, {"answer": "SELECT format FROM table_name_98 WHERE frequency = \"100.5 fm\"", "question": "Which Format has a Frequency of 100.5 fm?", "context": "CREATE TABLE table_name_98 (format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_26 WHERE branding = \"country 600\"", "question": "Which Frequency has a Branding of country 600?", "context": "CREATE TABLE table_name_26 (frequency VARCHAR, branding VARCHAR)"}, {"answer": "SELECT format FROM table_name_30 WHERE frequency = \"99.3 fm\"", "question": "WHich format has a Frequency of 99.3 fm?", "context": "CREATE TABLE table_name_30 (format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT school_year FROM table_name_61 WHERE class_aAAA = dickinson", "question": "What School Year has a Class AAAA of Dickinson?", "context": "CREATE TABLE table_name_61 (school_year VARCHAR, class_aAAA VARCHAR, dickinson VARCHAR)"}, {"answer": "SELECT class_aA FROM table_name_88 WHERE class_a = \"anton\" AND class_aAA = burnet", "question": "If the Class A is Anton and Class AAA is Burnet, what is Class AA?", "context": "CREATE TABLE table_name_88 (class_aA VARCHAR, class_a VARCHAR, class_aAA VARCHAR, burnet VARCHAR)"}, {"answer": "SELECT class_aAAAA FROM table_name_65 WHERE class_aAA = atlanta AND class_aA = weimar", "question": "Where Class AAA is Atlanta and Class AA is Weimar, what is Class AAAAA?", "context": "CREATE TABLE table_name_65 (class_aAAAA VARCHAR, class_aAA VARCHAR, atlanta VARCHAR, class_aA VARCHAR, weimar VARCHAR)"}, {"answer": "SELECT result FROM table_name_55 WHERE week = 11", "question": "What was the result of the game on week 11?", "context": "CREATE TABLE table_name_55 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_61 WHERE game_site = \"rich stadium\" AND opponent = \"miami dolphins\" AND week > 2", "question": "After week 2, how many people attended the game at Rich Stadium against the Miami Dolphins?", "context": "CREATE TABLE table_name_61 (attendance VARCHAR, week VARCHAR, game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_86 WHERE opponent = \"san francisco 49ers\"", "question": "What is the attendance when the opponent is the San Francisco 49ers?", "context": "CREATE TABLE table_name_86 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_43 WHERE week > 6 AND opponent = \"buffalo bills\"", "question": "What is the result when the week is greater than 6 and the Buffalo Bills are the opponent?", "context": "CREATE TABLE table_name_43 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_7 WHERE attendance = \"54,814\"", "question": "What is the result when the attendance is 54,814?", "context": "CREATE TABLE table_name_7 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_35 WHERE opponent = \"new york jets\"", "question": "What is the total number of weeks when the New York Jets are the opponent?", "context": "CREATE TABLE table_name_35 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_38 WHERE attendance = \"56,906\"", "question": "What is the result of the game when the attendance is 56,906?", "context": "CREATE TABLE table_name_38 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT index FROM table_name_54 WHERE song = \"\u4f1a\u547c\u5438\u7684\u75db\"", "question": "What is Song's \u4f1a\u547c\u5438\u7684\u75db Index?", "context": "CREATE TABLE table_name_54 (index VARCHAR, song VARCHAR)"}, {"answer": "SELECT song FROM table_name_58 WHERE index = \"f6\"", "question": "What Song's Index is F6?", "context": "CREATE TABLE table_name_58 (song VARCHAR, index VARCHAR)"}, {"answer": "SELECT Group AS song FROM table_name_60 WHERE name = \"shine \u738b\u5e78\u513f\"", "question": "What Group Song of Shine \u738b\u5e78\u513f?", "context": "CREATE TABLE table_name_60 (Group VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE song = \"\u6211\u7b49\u7684\u4eba\u4f1a\u662f\u8c01\"", "question": "What is the Score of \u6211\u7b49\u7684\u4eba\u4f1a\u662f\u8c01?", "context": "CREATE TABLE table_name_78 (score VARCHAR, song VARCHAR)"}, {"answer": "SELECT name FROM table_name_1 WHERE index = \"f3\"", "question": "What is the Name of Index F3?", "context": "CREATE TABLE table_name_1 (name VARCHAR, index VARCHAR)"}, {"answer": "SELECT record FROM table_name_89 WHERE february = 10", "question": "What is the record after the game on Feb 10?", "context": "CREATE TABLE table_name_89 (record VARCHAR, february VARCHAR)"}, {"answer": "SELECT MIN(february) FROM table_name_90 WHERE opponent = \"boston bruins\"", "question": "What is the earliest day that had a game against the Boston Bruins?", "context": "CREATE TABLE table_name_90 (february INTEGER, opponent VARCHAR)"}, {"answer": "SELECT SUM(solidat__) AS \u00b0c_ FROM table_name_15 WHERE purpose = \"display type, heavy duty jobs\" AND hardness___brinell__ < 33", "question": "What is the sum of Solidat (c) that's purpose is display type, heavy duty jobs, and a hardness (brinell) is smaller than 33?", "context": "CREATE TABLE table_name_15 (solidat__ INTEGER, purpose VARCHAR, hardness___brinell__ VARCHAR)"}, {"answer": "SELECT SUM(solidat__) AS \u00b0c_ FROM table_name_46 WHERE sn_sb___percentage_ = \"13/17\" AND liquidat__\u00b0c_ > 283", "question": "When the Sn/Sb (%) of 13/17, and a Liquidat (c) bigger than 283 what's the solidat (c)?", "context": "CREATE TABLE table_name_46 (solidat__ INTEGER, sn_sb___percentage_ VARCHAR, liquidat__\u00b0c_ VARCHAR)"}, {"answer": "SELECT COUNT(liquidat__) AS \u00b0c_ FROM table_name_94 WHERE purpose = \"dual (machine & hand composition)\"", "question": "How many Liquidat (c) have a purpose of dual (machine & hand composition)?", "context": "CREATE TABLE table_name_94 (liquidat__ VARCHAR, purpose VARCHAR)"}, {"answer": "SELECT record FROM table_name_84 WHERE week = 10", "question": "What was the record for the Chargers on Week 10?", "context": "CREATE TABLE table_name_84 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_16 WHERE week = 4", "question": "What was the result of the game on week 4?", "context": "CREATE TABLE table_name_16 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_57 WHERE date = \"september 17, 2000\"", "question": "How many weeks did a game happen on September 17, 2000?", "context": "CREATE TABLE table_name_57 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_17 WHERE week < 16 AND opponent = \"san francisco 49ers\"", "question": "What was the result of the game against San Francisco 49ers before week 16?", "context": "CREATE TABLE table_name_17 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT semi_finalists FROM table_name_3 WHERE runner_up = \"lisa raymond\"", "question": "Who were semi-finalists in the event with a runner-up of Lisa Raymond?", "context": "CREATE TABLE table_name_3 (semi_finalists VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT song FROM table_name_1 WHERE weeks_on_top = 2 AND artist = \"david essex\"", "question": "Which song by David Essex spent 2 weeks on top of the charts?", "context": "CREATE TABLE table_name_1 (song VARCHAR, weeks_on_top VARCHAR, artist VARCHAR)"}, {"answer": "SELECT volume AS :issue FROM table_name_96 WHERE weeks_on_top < 2 AND artist = \"george mccrae\"", "question": "What is the Volume:Issue number of the George McCrae song that spent less than 2 weeks on top of the charts?", "context": "CREATE TABLE table_name_96 (volume VARCHAR, weeks_on_top VARCHAR, artist VARCHAR)"}, {"answer": "SELECT venue FROM table_name_76 WHERE closed = \"1990s\"", "question": "Which venues closed in the 1990s?", "context": "CREATE TABLE table_name_76 (venue VARCHAR, closed VARCHAR)"}, {"answer": "SELECT location FROM table_name_5 WHERE reason = \"replaced\"", "question": "Which venues were closed because they were replaced?", "context": "CREATE TABLE table_name_5 (location VARCHAR, reason VARCHAR)"}, {"answer": "SELECT venue FROM table_name_86 WHERE closed = \"1996\"", "question": "Which venue closed in 1996?", "context": "CREATE TABLE table_name_86 (venue VARCHAR, closed VARCHAR)"}, {"answer": "SELECT reason FROM table_name_59 WHERE closed = \"1990s\"", "question": "What were the reasons that venues closed in the 1990s?", "context": "CREATE TABLE table_name_59 (reason VARCHAR, closed VARCHAR)"}, {"answer": "SELECT reason FROM table_name_95 WHERE venue = \"belk gymnasium\"", "question": "Why did the Belk Gymnasium close?", "context": "CREATE TABLE table_name_95 (reason VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE home_team = \"townsville crocodiles\"", "question": "Can you tell me the Score that has the Home team of townsville crocodiles?", "context": "CREATE TABLE table_name_24 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_98 WHERE away_team = \"south dragons\"", "question": "Can you tell me the Venue that has the Away team of south dragons?", "context": "CREATE TABLE table_name_98 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_24 WHERE away_team = \"melbourne tigers\"", "question": "Can you tell me the lowest Crowd that has the Away team of melbourne tigers?", "context": "CREATE TABLE table_name_24 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_17 WHERE home_team = \"south dragons\" AND score = \"94-81\"", "question": "Can you tell me the Away team that has the Home team of south dragons, and the Score of 94-81?", "context": "CREATE TABLE table_name_17 (away_team VARCHAR, home_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT position FROM table_name_45 WHERE round > 3 AND pick__number = 238", "question": "Which position has a pick # of 238 and a round above 3?", "context": "CREATE TABLE table_name_45 (position VARCHAR, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT player FROM table_name_20 WHERE college = \"vanderbilt\"", "question": "Which player went to Vanderbilt?", "context": "CREATE TABLE table_name_20 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_72 WHERE time_retired = \"+4 laps\"", "question": "How many grids had a Time/Retired of +4 laps?", "context": "CREATE TABLE table_name_72 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_3 WHERE constructor = \"toyota\" AND time_retired = \"+13.409\"", "question": "How many laps had a constructor of toyota and a Time/Retired of +13.409?", "context": "CREATE TABLE table_name_3 (laps VARCHAR, constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_28 WHERE laps > 54 AND time_retired = \"+1 lap\" AND grid = 20", "question": "What was the constructor when the laps were larger than 54, and the time/retired was +1 lap on a grid of 20?", "context": "CREATE TABLE table_name_28 (constructor VARCHAR, grid VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_35 WHERE constructor = \"renault\" AND laps < 4", "question": "How many grids had a constructor of renault and less than 4 laps?", "context": "CREATE TABLE table_name_35 (grid INTEGER, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_name_95 WHERE area_km_2 = 57.06", "question": "Which census ranking is 57.06 km big?", "context": "CREATE TABLE table_name_95 (census_ranking VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT status FROM table_name_20 WHERE area_km_2 < 75.35 AND official_name = \"sussex\"", "question": "Which status is 75.35 km2 and is named sussex?", "context": "CREATE TABLE table_name_20 (status VARCHAR, area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT distance FROM table_name_21 WHERE winner_or_2nd = \"waterline\"", "question": "What was the distance for the winner or 2nd Waterline?", "context": "CREATE TABLE table_name_21 (distance VARCHAR, winner_or_2nd VARCHAR)"}, {"answer": "SELECT result FROM table_name_30 WHERE distance = \"10f\" AND winner_or_2nd = \"lampra\"", "question": "What is the result for the distance of 10f, and a winner or 2nd of Lampra?", "context": "CREATE TABLE table_name_30 (result VARCHAR, distance VARCHAR, winner_or_2nd VARCHAR)"}, {"answer": "SELECT 1987 FROM table_name_15 WHERE 1986 = \"1r\"", "question": "What is 1987, when 1986 is \"1R\"?", "context": "CREATE TABLE table_name_15 (Id VARCHAR)"}, {"answer": "SELECT 1986 FROM table_name_99 WHERE 1978 = \"a\" AND 1979 = \"a\" AND 1980 = \"1r\"", "question": "What is 1986, when 1978 is \"A\", when 1979 is \"A\", and when 1980 is \"1R\"?", "context": "CREATE TABLE table_name_99 (Id VARCHAR)"}, {"answer": "SELECT 1984 FROM table_name_94 WHERE 1979 = \"1r\"", "question": "What is 1984, when 1979 is \"1R\"?", "context": "CREATE TABLE table_name_94 (Id VARCHAR)"}, {"answer": "SELECT 1982 FROM table_name_64 WHERE 1978 = \"a\" AND 1985 = \"4r\" AND 1991 = \"1r\"", "question": "What is 1982, when 1978 is \"A\", when 1985 is \"4R\", and when 1991 is \"1R\"?", "context": "CREATE TABLE table_name_64 (Id VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_37 WHERE 1982 = \"sf\"", "question": "What is 1989, when 1982 is \"SF\"?", "context": "CREATE TABLE table_name_37 (Id VARCHAR)"}, {"answer": "SELECT 1992 FROM table_name_29 WHERE 1990 = \"grand slams\"", "question": "What is 1992, when 1990 is \"Grand Slams\"?", "context": "CREATE TABLE table_name_29 (Id VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_48 WHERE home_team = \"shrewsbury town\"", "question": "What is the attendance date of the game home team Shrewsbury Town played?", "context": "CREATE TABLE table_name_48 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE home_team = \"bolton wanderers\"", "question": "What is the final score of the game home team Bolton Wanderers played?", "context": "CREATE TABLE table_name_66 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT round FROM table_name_39 WHERE opponent = \"freiburg\"", "question": "Which round has an opponent of Freiburg?", "context": "CREATE TABLE table_name_39 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home FROM table_name_44 WHERE opponent = \"slovan liberec\"", "question": "Who was the home when the opponent was slovan liberec?", "context": "CREATE TABLE table_name_44 (home VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_56 WHERE january > 18 AND decision = \"valiquette\"", "question": "Which Game has a January larger than 18, and a Decision of valiquette?", "context": "CREATE TABLE table_name_56 (game INTEGER, january VARCHAR, decision VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_37 WHERE game < 43 AND record = \"23-14-3\"", "question": "Who has a Game smaller than 43, and a Record of 23-14-3?", "context": "CREATE TABLE table_name_37 (opponent VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_45 WHERE best = \"59.266\"", "question": "What is the time for qual 2 that has the best time of 59.266?", "context": "CREATE TABLE table_name_45 (qual_2 VARCHAR, best VARCHAR)"}, {"answer": "SELECT name FROM table_name_42 WHERE team = \"forsythe racing\" AND best = \"1:00.099\"", "question": "Who is the driver for the Forsythe Racing team that has the best time of 1:00.099?", "context": "CREATE TABLE table_name_42 (name VARCHAR, team VARCHAR, best VARCHAR)"}, {"answer": "SELECT best FROM table_name_99 WHERE name = \"justin wilson\"", "question": "Justin Wilson has what has his best time?", "context": "CREATE TABLE table_name_99 (best VARCHAR, name VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_15 WHERE team = \"rusport\" AND best = \"59.654\"", "question": "Team Rusport has the best of 59.654 and what qual 1?", "context": "CREATE TABLE table_name_15 (qual_1 VARCHAR, team VARCHAR, best VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_32 WHERE team = \"newman/haas racing\" AND name = \"s\u00e9bastien bourdais\"", "question": "S\u00e9bastien Bourdais of the team Newman/Haas Racing has what qual 1?", "context": "CREATE TABLE table_name_32 (qual_1 VARCHAR, team VARCHAR, name VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_89 WHERE name = \"alex tagliani\"", "question": "What is Alex Tagliani's qual 1?", "context": "CREATE TABLE table_name_89 (qual_1 VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(bask) FROM table_name_17 WHERE soft = \"18\" AND total > 35", "question": "Which Bask has Soft of 18, and a Total larger than 35?", "context": "CREATE TABLE table_name_17 (bask INTEGER, soft VARCHAR, total VARCHAR)"}, {"answer": "SELECT volleyball FROM table_name_52 WHERE golf = \"2\" AND indoor_track = \"3\"", "question": "Which Volleyball has a Golf of 2, and an Indoor track of 3?", "context": "CREATE TABLE table_name_52 (volleyball VARCHAR, golf VARCHAR, indoor_track VARCHAR)"}, {"answer": "SELECT MIN(bask) FROM table_name_73 WHERE indoor_track = \"0\" AND swimming = \"5\"", "question": "Which Bask has an Indoor track of 0, and a Swimming of 5?", "context": "CREATE TABLE table_name_73 (bask INTEGER, indoor_track VARCHAR, swimming VARCHAR)"}, {"answer": "SELECT swimming FROM table_name_96 WHERE total > 35 AND volleyball = \"1\"", "question": "Which Swimming has a Total larger than 35, and a Volleyball of 1?", "context": "CREATE TABLE table_name_96 (swimming VARCHAR, total VARCHAR, volleyball VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE location = \"scotiabank place\" AND points < 20 AND game > 16 AND opponent = \"montreal canadiens\"", "question": "Date for scotiabank place with less than 20 points, game larger than 16, and an opponent of montreal canadiens?", "context": "CREATE TABLE table_name_40 (date VARCHAR, opponent VARCHAR, game VARCHAR, location VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_2 WHERE points < 15 AND date = \"november 15\" AND attendance > 13 OFFSET 722", "question": "Total games for smaller than 15 points, date of november 15, and larger that 13,722 in attendance?", "context": "CREATE TABLE table_name_2 (game VARCHAR, attendance VARCHAR, points VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_11 WHERE date = \"september 24, 1995\"", "question": "What was the results on September 24, 1995?", "context": "CREATE TABLE table_name_11 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_20 WHERE opponent = \"philadelphia eagles\"", "question": "What was the results against the Philadelphia Eagles?", "context": "CREATE TABLE table_name_20 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE attendance = \"68,463\"", "question": "What is the date with 68,463 in attendance?", "context": "CREATE TABLE table_name_82 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_25 WHERE week = 15", "question": "What was the attendance for week 15?", "context": "CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT name FROM table_name_47 WHERE transfer_window = \"winter\"", "question": "What is the name when winter is the transfer window?", "context": "CREATE TABLE table_name_47 (name VARCHAR, transfer_window VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_9 WHERE transfer_window = \"summer\" AND type = \"transfer\" AND country = \"hun\"", "question": "What is the transfer fee when summer is the transfer window, the type is transfer and the country is Hun?", "context": "CREATE TABLE table_name_9 (transfer_fee VARCHAR, country VARCHAR, transfer_window VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_40 WHERE moving_from = \"rangers\"", "question": "What is the type when Rangers are the moving from?", "context": "CREATE TABLE table_name_40 (type VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT type FROM table_name_21 WHERE name = \"mccormack\"", "question": "What is the type when McCormack is the name?", "context": "CREATE TABLE table_name_21 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_49 WHERE transfer_fee = \"\u00a3120,000\"", "question": "What is the type when \u00a3120,000 is the transfer fee?", "context": "CREATE TABLE table_name_49 (type VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE away_team = \"aston villa\"", "question": "What date is aston villa away?", "context": "CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE tie_no = \"5\"", "question": "what date did tie number 5 occur?", "context": "CREATE TABLE table_name_44 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_59 WHERE away_team = \"bolton wanderers\"", "question": "Which tie number has Bolton Wanderers as away?", "context": "CREATE TABLE table_name_59 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT round FROM table_name_4 WHERE circuit = \"portland international raceway\"", "question": "What round was the circuit portland international raceway?", "context": "CREATE TABLE table_name_4 (round VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE circuit = \"portland international raceway\"", "question": "When was the circuit portland international raceway?", "context": "CREATE TABLE table_name_28 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT round FROM table_name_81 WHERE city_location = \"toronto, ontario\"", "question": "Which round had a city/location of Toronto, Ontario?", "context": "CREATE TABLE table_name_81 (round VARCHAR, city_location VARCHAR)"}, {"answer": "SELECT city_location FROM table_name_93 WHERE round < 11 AND circuit = \"streets of denver\"", "question": "For which location was the round smaller than 11 and the circuit streets of denver?", "context": "CREATE TABLE table_name_93 (city_location VARCHAR, round VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE city_location = \"cleveland, ohio\" AND round = 6", "question": "What day was the location Cleveland, Ohio in Round 6?", "context": "CREATE TABLE table_name_2 (date VARCHAR, city_location VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_39 WHERE opponent = \"at los angeles rams\"", "question": "What is the sum of attendance for the games played at Los Angeles Rams?", "context": "CREATE TABLE table_name_39 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_27 WHERE attendance = 47 OFFSET 218", "question": "In which week was the attendance 47,218?", "context": "CREATE TABLE table_name_27 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT COUNT(december) FROM table_name_90 WHERE opponent = \"calgary flames\"", "question": "How many Decembers have calgary flames as the opponent?", "context": "CREATE TABLE table_name_90 (december VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game FROM table_name_96 WHERE decision = \"valiquette\" AND opponent = \"@ los angeles kings\"", "question": "What game has valiquette as the decision, with @ los angeles kings as the opponent?", "context": "CREATE TABLE table_name_96 (game VARCHAR, decision VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(tf1__number) FROM table_name_95 WHERE official__number > 47 AND air_date__france_ = \"13 july 2010\"", "question": "What is the most elevated TF1 # that has an Official # larger than 47, and an Air date (France) of 13 july 2010?", "context": "CREATE TABLE table_name_95 (tf1__number INTEGER, official__number VARCHAR, air_date__france_ VARCHAR)"}, {"answer": "SELECT venue FROM table_name_4 WHERE round = \"sf\"", "question": "What venue had SF?", "context": "CREATE TABLE table_name_4 (venue VARCHAR, round VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE attendance > 50 OFFSET 715", "question": "What venue has more than 50,715 attending?", "context": "CREATE TABLE table_name_45 (venue VARCHAR, attendance INTEGER)"}, {"answer": "SELECT round FROM table_name_7 WHERE venue = \"a\" AND attendance > 14 OFFSET 314", "question": "What round was at the A venue with a attendance more than 14,314?", "context": "CREATE TABLE table_name_7 (round VARCHAR, venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_34 WHERE branding = \"mom's radio 101.9 zamboanga\"", "question": "What's the callsign of Mom's Radio 101.9 Zamboanga?", "context": "CREATE TABLE table_name_34 (callsign VARCHAR, branding VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_name_26 WHERE frequency = \"101.5mhz\"", "question": "What's the power when the frequency is 101.5mhz?", "context": "CREATE TABLE table_name_26 (power__kw_ VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT location FROM table_name_58 WHERE power__kw_ = \"10kw\" AND branding = \"mom's radio 95.9 naga\"", "question": "What's the location of Mom's Radio 95.9 Naga having a power of 10kw?", "context": "CREATE TABLE table_name_58 (location VARCHAR, power__kw_ VARCHAR, branding VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_22 WHERE location = \"tacloban\"", "question": "What's the callsign in Tacloban?", "context": "CREATE TABLE table_name_22 (callsign VARCHAR, location VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_name_7 WHERE branding = \"mom's radio 101.5 tacloban\"", "question": "What's the power of Mom's Radio 101.5 Tacloban?", "context": "CREATE TABLE table_name_7 (power__kw_ VARCHAR, branding VARCHAR)"}, {"answer": "SELECT 1947 AS _nos FROM table_name_55 WHERE br_nos = \"48730-9\"", "question": "Which 1947 Nos has a BR Nos of 48730-9?", "context": "CREATE TABLE table_name_55 (br_nos VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_23 WHERE win__percentage = \"71.43%\" AND no_result > 0", "question": "What is the number of losses for the game with a win % of 71.43%, and No Result is more than 0?", "context": "CREATE TABLE table_name_23 (losses INTEGER, win__percentage VARCHAR, no_result VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_99 WHERE year = \"2010\" AND matches > 14", "question": "What is the total number of wins in 2010, when there were more than 14 matches?", "context": "CREATE TABLE table_name_99 (wins VARCHAR, year VARCHAR, matches VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_94 WHERE matches = 14 AND no_result < 0", "question": "What is the number of wins when there are 14 matches, and the No Result was less than 0?", "context": "CREATE TABLE table_name_94 (wins INTEGER, matches VARCHAR, no_result VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_37 WHERE matches = 14 AND no_result > 0", "question": "What is the number of losses when there were 14 matches, and the No Result was larger than 0?", "context": "CREATE TABLE table_name_37 (losses INTEGER, matches VARCHAR, no_result VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_56 WHERE wins < 8 AND losses = 7 AND year = \"2011\"", "question": "What is the number of matches when the wins are less than 8, and losses of 7, in 2011?", "context": "CREATE TABLE table_name_56 (matches INTEGER, year VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT year FROM table_name_6 WHERE win__percentage = \"50.00%\" AND matches > 14 AND wins > 8", "question": "What year was the Win percentage 50.00%, with more than 14 matches, and wins more than 8?", "context": "CREATE TABLE table_name_6 (year VARCHAR, wins VARCHAR, win__percentage VARCHAR, matches VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_name_95 WHERE pop__km\u00b2 < 0.97 AND _english_ = \"east\"", "question": "What area has less than 0.97 mil in population and is on the east?", "context": "CREATE TABLE table_name_95 (area__km\u00b2_ VARCHAR, pop__km\u00b2 VARCHAR, _english_ VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_name_8 WHERE pop__km\u00b2 = 0.58", "question": "What is the area for a population of 0.58 km?", "context": "CREATE TABLE table_name_8 (area__km\u00b2_ VARCHAR, pop__km\u00b2 VARCHAR)"}, {"answer": "SELECT method FROM table_name_30 WHERE result = \"loss\" AND date = \"january 19, 2008\"", "question": "what is the method when the result is loss on january 19, 2008?", "context": "CREATE TABLE table_name_30 (method VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE opponent = \"lyoto machida\"", "question": "when is the opponent lyoto machida?", "context": "CREATE TABLE table_name_94 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_82 WHERE method = \"tko (punches) at 4:26 of round 1\"", "question": "who is the opponent when the method is tko (punches) at 4:26 of round 1?", "context": "CREATE TABLE table_name_82 (opponent VARCHAR, method VARCHAR)"}, {"answer": "SELECT tuf_competitor FROM table_name_37 WHERE method = \"decision (unanimous)\"", "question": "who is the tuf competitor when the method id decision (unanimous)?", "context": "CREATE TABLE table_name_37 (tuf_competitor VARCHAR, method VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_83 WHERE method = \"submission (rear naked choke) at 4:02 of round 2\"", "question": "who is the opponent when the method is submission (rear naked choke) at 4:02 of round 2?", "context": "CREATE TABLE table_name_83 (opponent VARCHAR, method VARCHAR)"}, {"answer": "SELECT venue FROM table_name_26 WHERE home_team = \"melbourne tigers\"", "question": "What is the venue where the melbourne tigers play their home games?", "context": "CREATE TABLE table_name_26 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_11 WHERE venue = \"gold coast convention centre\"", "question": "What team has theoir home games in the venue of gold coast convention centre?", "context": "CREATE TABLE table_name_11 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT Box AS score FROM table_name_79 WHERE score = \"103-101\"", "question": "What is the box score type for the game that has a score of 103-101?", "context": "CREATE TABLE table_name_79 (Box VARCHAR, score VARCHAR)"}, {"answer": "SELECT Box AS score FROM table_name_40 WHERE away_team = \"sydney spirit\"", "question": "What was the box score for the game where the away team was the sydney spirit?", "context": "CREATE TABLE table_name_40 (Box VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT res FROM table_name_65 WHERE record = \"15-7\"", "question": "What was the resolution of the fight when tim hague had a record of 15-7?", "context": "CREATE TABLE table_name_65 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT event FROM table_name_88 WHERE time = \"5:00\" AND record = \"10-4\"", "question": "What event did Tim hague have a fight that had a time of 5:00 and a record of 10-4?", "context": "CREATE TABLE table_name_88 (event VARCHAR, time VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_41 WHERE event = \"hardcore championship fighting: destiny\"", "question": "What method of resolution was the fight that took place at hardcore championship fighting: destiny?", "context": "CREATE TABLE table_name_41 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_54 WHERE record = \"3-0\"", "question": "What event did tim Hague have a record of 3-0?", "context": "CREATE TABLE table_name_54 (event VARCHAR, record VARCHAR)"}, {"answer": "SELECT dates_administered FROM table_name_87 WHERE lead_margin < 5.5 AND poll_source = \"survey usa\"", "question": "What was the date of the poll from Survey USA that showed a lead margin smaller than 5.5?", "context": "CREATE TABLE table_name_87 (dates_administered VARCHAR, lead_margin VARCHAR, poll_source VARCHAR)"}, {"answer": "SELECT poll_source FROM table_name_88 WHERE lead_margin = 5.5", "question": "Which organization administered the poll that showed a lead margin of 5.5?", "context": "CREATE TABLE table_name_88 (poll_source VARCHAR, lead_margin VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_2 WHERE position = \"forward\" AND school_club_team = \"western kentucky\"", "question": "What is the sum of Round, when Position is Forward, and when School/Club Team is Western Kentucky?", "context": "CREATE TABLE table_name_2 (round INTEGER, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_80 WHERE pick = \"7\"", "question": "What is Position, when Pick is 7?", "context": "CREATE TABLE table_name_80 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_95 WHERE round > 1 AND school_club_team = \"south carolina\"", "question": "What is Pick, when Round is greater than 1, and when School/Club Team is South Carolina?", "context": "CREATE TABLE table_name_95 (pick VARCHAR, round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE outcome = \"runner-up\" AND score = \"5\u20137, 3\u20136, 6\u20133, 2\u20136\"", "question": "What is the Date of the game with an Outcome of runner-up and Score of 5\u20137, 3\u20136, 6\u20133, 2\u20136?", "context": "CREATE TABLE table_name_83 (date VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE score = \"4\u20136, 4\u20136\"", "question": "What is the Date of the game with a Score of 4\u20136, 4\u20136?", "context": "CREATE TABLE table_name_36 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE opponent = \"christo van rensburg\"", "question": "What is the Date of the game against Christo Van Rensburg?", "context": "CREATE TABLE table_name_5 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_36 WHERE tie_no = \"3\"", "question": "Who was the home team for the game that has a Tie value of 3?", "context": "CREATE TABLE table_name_36 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_23 WHERE away_team = \"chelsea\"", "question": "How many in total were in attendance at games where Chelsea was the away team?", "context": "CREATE TABLE table_name_23 (attendance INTEGER, away_team VARCHAR)"}, {"answer": "SELECT population__2004_est_ FROM table_name_87 WHERE hanzi = \"\u660c\u9ece\u53bf\"", "question": "What is the 2004 population for \u660c\u9ece\u53bf?", "context": "CREATE TABLE table_name_87 (population__2004_est_ VARCHAR, hanzi VARCHAR)"}, {"answer": "SELECT population__2004_est_ FROM table_name_46 WHERE hanzi = \"\u5c71\u6d77\u5173\u533a\"", "question": "What is the 2004 population for \u5c71\u6d77\u5173\u533a?", "context": "CREATE TABLE table_name_46 (population__2004_est_ VARCHAR, hanzi VARCHAR)"}, {"answer": "SELECT hanzi FROM table_name_95 WHERE population__2004_est_ = \"suburban\"", "question": "Which Hanzi has a suburban population in 2004?", "context": "CREATE TABLE table_name_95 (hanzi VARCHAR, population__2004_est_ VARCHAR)"}, {"answer": "SELECT density___km\u00b2_ FROM table_name_34 WHERE hanzi = \"\u660c\u9ece\u53bf\"", "question": "What is the density of \u660c\u9ece\u53bf?", "context": "CREATE TABLE table_name_34 (density___km\u00b2_ VARCHAR, hanzi VARCHAR)"}, {"answer": "SELECT hanyu_pinyin FROM table_name_68 WHERE name = \"rural\"", "question": "Which Hanyu Pinyin is labeled rural?", "context": "CREATE TABLE table_name_68 (hanyu_pinyin VARCHAR, name VARCHAR)"}, {"answer": "SELECT pressure_in_hpa__mbar_ FROM table_name_69 WHERE vacuum_range = \"medium vacuum\"", "question": "What is the Pressure in hPa (mbar), when Vacuum Range is \"medium vacuum\"?", "context": "CREATE TABLE table_name_69 (pressure_in_hpa__mbar_ VARCHAR, vacuum_range VARCHAR)"}, {"answer": "SELECT mean_free_path FROM table_name_28 WHERE vacuum_range = \"medium vacuum\"", "question": "What is Mean Free Path, when Vacuum Range is \"medium vacuum\"?", "context": "CREATE TABLE table_name_28 (mean_free_path VARCHAR, vacuum_range VARCHAR)"}, {"answer": "SELECT mean_free_path FROM table_name_25 WHERE vacuum_range = \"medium vacuum\"", "question": "What is Mean Free Path, when Vacuum Range is \"medium vacuum\"?", "context": "CREATE TABLE table_name_25 (mean_free_path VARCHAR, vacuum_range VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_40 WHERE date = \"10 october 1994\"", "question": "what is the outcome when the date is 10 october 1994?", "context": "CREATE TABLE table_name_40 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE date = \"22 february 1993\"", "question": "what is the score on 22 february 1993?", "context": "CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_45 WHERE surface = \"grass\" AND date = \"23 june 1997\"", "question": "what is the outcome when the surface is grass on 23 june 1997?", "context": "CREATE TABLE table_name_45 (outcome VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE surface = \"carpet (i)\" AND outcome = \"winner\" AND championship = \"rotterdam, netherlands\"", "question": "what is the score when the surface is carpet (i) outcome is winner and the championship is rotterdam, netherlands?", "context": "CREATE TABLE table_name_43 (score VARCHAR, championship VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT title FROM table_name_11 WHERE rank < 17 AND worldwide_gross = \"$299,288,605\"", "question": "what is the title when the rank is less than 17 and the worldwide gross is $299,288,605?", "context": "CREATE TABLE table_name_11 (title VARCHAR, rank VARCHAR, worldwide_gross VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_47 WHERE director = \"john woo\"", "question": "what is the highest rank for director john woo?", "context": "CREATE TABLE table_name_47 (rank INTEGER, director VARCHAR)"}, {"answer": "SELECT title FROM table_name_15 WHERE director = \"p.j. hogan\"", "question": "what is the title for director p.j. hogan?", "context": "CREATE TABLE table_name_15 (title VARCHAR, director VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE location = \"the pyramid\"", "question": "What date was the pyramid location?", "context": "CREATE TABLE table_name_69 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE opponent = \"portland trail blazers\"", "question": "What date was the opponent the Portland Trail Blazers?", "context": "CREATE TABLE table_name_67 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE opponent = \"cleveland cavaliers\"", "question": "What is the record for the opponent the Cleveland Cavaliers?", "context": "CREATE TABLE table_name_26 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_39 WHERE team = \"dale coyne racing\" AND best = \"1:03.757\"", "question": "What was the second qualification time for Dale Coyne Racing with a best of 1:03.757?", "context": "CREATE TABLE table_name_39 (qual_2 VARCHAR, team VARCHAR, best VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_29 WHERE qual_1 = \"1:02.813\"", "question": "What was the second qualification time with a first qualification time of 1:02.813?", "context": "CREATE TABLE table_name_29 (qual_2 VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT team FROM table_name_40 WHERE qual_2 = \"1:01.936\"", "question": "Which team has a second qualification time of 1:01.936?", "context": "CREATE TABLE table_name_40 (team VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT name FROM table_name_24 WHERE best = \"1:00.870\"", "question": "Who had a best time of 1:00.870?", "context": "CREATE TABLE table_name_24 (name VARCHAR, best VARCHAR)"}, {"answer": "SELECT name FROM table_name_9 WHERE qual_2 = \"1:01.777\"", "question": "Who had a second qualification time of 1:01.777?", "context": "CREATE TABLE table_name_9 (name VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT genre FROM table_name_87 WHERE type = \"3d\" AND release_date = \"2008-2011\"", "question": "What type of 3D game was released between 2008-2011?", "context": "CREATE TABLE table_name_87 (genre VARCHAR, type VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_2 WHERE type = \"3d\" AND genre = \"moba\" AND developer_s_ = \"riot games\"", "question": "When did Riot Games release their 3D MOBA game?", "context": "CREATE TABLE table_name_2 (release_date VARCHAR, developer_s_ VARCHAR, type VARCHAR, genre VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_98 WHERE developer_s_ = \"masthead studios\"", "question": "When did Masthead Studios release their game?", "context": "CREATE TABLE table_name_98 (release_date VARCHAR, developer_s_ VARCHAR)"}, {"answer": "SELECT required_os FROM table_name_91 WHERE type = \"2d\"", "question": "What operating system was needed for 2D games?", "context": "CREATE TABLE table_name_91 (required_os VARCHAR, type VARCHAR)"}, {"answer": "SELECT genre FROM table_name_4 WHERE type = \"3d\" AND developer_s_ = \"valve corporation\"", "question": "What type of 3D game did Valve Corporation release?", "context": "CREATE TABLE table_name_4 (genre VARCHAR, type VARCHAR, developer_s_ VARCHAR)"}, {"answer": "SELECT required_os FROM table_name_91 WHERE developer_s_ = \"stunlock studios\"", "question": "What was the minimum operating system required by Stunlock Studios' game?", "context": "CREATE TABLE table_name_91 (required_os VARCHAR, developer_s_ VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_61 WHERE player = \"travis hamonic\"", "question": "What was the total rounds Travis Hamonic played?", "context": "CREATE TABLE table_name_61 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT name FROM table_name_44 WHERE fate = \"sunk by u-48 *\" AND cargo = \"pit props\"", "question": "What is the name of the ship with pit props as Cargo sunk by u-48 *?", "context": "CREATE TABLE table_name_44 (name VARCHAR, fate VARCHAR, cargo VARCHAR)"}, {"answer": "SELECT date_of_attack FROM table_name_39 WHERE fate = \"sunk by u-101 *\" AND cargo = \"iron ore\"", "question": "What is the Date of attack of the ship with iron ore sunk by u-101 *?", "context": "CREATE TABLE table_name_39 (date_of_attack VARCHAR, fate VARCHAR, cargo VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_22 WHERE losses < 12 AND goals_against < 50 AND goal_difference > 11 AND played < 30", "question": "What is the fewest points for positions with under 12 losses, goals against under 50, goal difference over 11, and under 30 played?", "context": "CREATE TABLE table_name_22 (points INTEGER, played VARCHAR, goal_difference VARCHAR, losses VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_46 WHERE goal_difference = 11 AND played > 30", "question": "What is the most wins for a position with more than 30 played and a goal difference of 11?", "context": "CREATE TABLE table_name_46 (wins INTEGER, goal_difference VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_68 WHERE goal_difference = 11 AND goals_against > 44", "question": "What is the total number of played for the goals against over 44 and a goal difference of 11?", "context": "CREATE TABLE table_name_68 (played VARCHAR, goal_difference VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT time FROM table_name_22 WHERE round < 2 AND opponent = \"valentijn overeem\"", "question": "What is Time, when Round is less than 2, and when Opponent is \"Valentijn Overeem\"?", "context": "CREATE TABLE table_name_22 (time VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_76 WHERE round = 1 AND opponent = \"joe slick\"", "question": "What is Location, when Round is \"1\", and when Opponent is \"Joe Slick\"?", "context": "CREATE TABLE table_name_76 (location VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_41 WHERE opponent = \"joe pardo\"", "question": "What is Event, when Opponent is \"Joe Pardo\"?", "context": "CREATE TABLE table_name_41 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_9 WHERE round = 1 AND location = \"new town, north dakota , united states\" AND time = \"4:12\"", "question": "What is Event, when Round is \"1\", when Location is \"New Town, North Dakota , United States\" and when Time is \"4:12\"?", "context": "CREATE TABLE table_name_9 (event VARCHAR, time VARCHAR, round VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE opponent = \"tennessee titans\"", "question": "On what Date was the Opponent the Tennessee Titans?", "context": "CREATE TABLE table_name_47 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_25 WHERE attendance = \"64,104\"", "question": "What is the Result of the game with an Attendance of 64,104?", "context": "CREATE TABLE table_name_25 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_85 WHERE result = \"w 30-28\"", "question": "What is the Week number with a Result of W 30-28?", "context": "CREATE TABLE table_name_85 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE opponent = \"philadelphia eagles\"", "question": "What is the date of the game against Philadelphia Eagles?", "context": "CREATE TABLE table_name_61 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_36 WHERE date = \"september 21, 2003\"", "question": "What is the Attendance of the game September 21, 2003?", "context": "CREATE TABLE table_name_36 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT position FROM table_name_2 WHERE pick < 20", "question": "What position has a pick less than 20?", "context": "CREATE TABLE table_name_2 (position VARCHAR, pick INTEGER)"}, {"answer": "SELECT MIN(overall) FROM table_name_44 WHERE college = \"baylor\"", "question": "What is the number that is the lowest overall for the College of Baylor?", "context": "CREATE TABLE table_name_44 (overall INTEGER, college VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_85 WHERE round = 6", "question": "What is the number that is the lowest overall for Round 6?", "context": "CREATE TABLE table_name_85 (overall INTEGER, round VARCHAR)"}, {"answer": "SELECT location FROM table_name_44 WHERE res = \"win\" AND opponent = \"mike large\"", "question": "Where was the result a win against Mike Large?", "context": "CREATE TABLE table_name_44 (location VARCHAR, res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_39 WHERE opponent = \"joe lauzon\"", "question": "In what round did opponent Joe Lauzon play?", "context": "CREATE TABLE table_name_39 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_54 WHERE week > 8 AND date = \"december 4, 1960\"", "question": "Who was the opponent in a week over 8 on December 4, 1960?", "context": "CREATE TABLE table_name_54 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_24 WHERE week < 8 AND date = \"october 9, 1960\"", "question": "Who was the opponent in a week less than 8 on October 9, 1960?", "context": "CREATE TABLE table_name_24 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_70 WHERE attendance = \"58,516\"", "question": "What was the result when 58,516 were in attendance?", "context": "CREATE TABLE table_name_70 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_28 WHERE week < 3 AND date = \"september 23, 1960\"", "question": "Who was the opponent in a week below 3 on September 23, 1960?", "context": "CREATE TABLE table_name_28 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(females) FROM table_name_46 WHERE males = 28.2 AND rank > 5", "question": "What is the biggest number of females where the males are at 28.2 with a rank greater than 5?", "context": "CREATE TABLE table_name_46 (females INTEGER, males VARCHAR, rank VARCHAR)"}, {"answer": "SELECT player FROM table_name_9 WHERE year = 1976", "question": "Who was the player in 1976?", "context": "CREATE TABLE table_name_9 (player VARCHAR, year VARCHAR)"}, {"answer": "SELECT pick FROM table_name_17 WHERE nationality = \"united states\" AND player = \"elaine powell (g)\"", "question": "When was Elaine Powell (g) of the United states picked?", "context": "CREATE TABLE table_name_17 (pick VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE week > 6 AND result = \"w 65-20\"", "question": "When was there a result of w 65-20 after week 6?", "context": "CREATE TABLE table_name_43 (date VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT agg FROM table_name_81 WHERE team_1 = \"celta\"", "question": "What is Celta's Agg.?", "context": "CREATE TABLE table_name_81 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_49 WHERE team_2 = \"barcelona\"", "question": "What is the 2nd leg for Barcelona Team 2?", "context": "CREATE TABLE table_name_49 (team_2 VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_61 WHERE team_1 = \"numancia\"", "question": "What is team 2 if Team 1 is Numancia?", "context": "CREATE TABLE table_name_61 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT COUNT(performance_return_on_capital__score_) FROM table_name_11 WHERE score__iran_ < 3 AND score__global_ = 266", "question": "What is the sum of the Performance/Return on Capital (Score) when the Score (Iran) is less than 3, and the Score (Global) is 266?", "context": "CREATE TABLE table_name_11 (performance_return_on_capital__score_ VARCHAR, score__iran_ VARCHAR, score__global_ VARCHAR)"}, {"answer": "SELECT total_assets___percentage_change_ FROM table_name_86 WHERE performance_return_on_capital___percentage_ > 25.63 AND performance_return_on_capital__score_ > 7", "question": "What Total Assets (% Change) that has Performance/Return on Capital (%) greater than 25.63, and a Performance/Return on Capital (Score) greater than 7?", "context": "CREATE TABLE table_name_86 (total_assets___percentage_change_ VARCHAR, performance_return_on_capital___percentage_ VARCHAR, performance_return_on_capital__score_ VARCHAR)"}, {"answer": "SELECT nfl_club FROM table_name_34 WHERE pick > 63 AND position = \"cornerback\"", "question": "What is the NFL club of the cornerback player with a pick greater than 63?", "context": "CREATE TABLE table_name_34 (nfl_club VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_66 WHERE position = \"tight end\"", "question": "What is the total round of the tight end position player?", "context": "CREATE TABLE table_name_66 (round VARCHAR, position VARCHAR)"}, {"answer": "SELECT pick FROM table_name_95 WHERE nfl_club = \"buffalo bills\"", "question": "What is the pick of the NFL club buffalo bills?", "context": "CREATE TABLE table_name_95 (pick VARCHAR, nfl_club VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE competition = \"semifinal\" AND result = \"2-1 aet\"", "question": "On What Date is the Competition Semifinal that has a result of 2-1 aet?", "context": "CREATE TABLE table_name_63 (date VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT location FROM table_name_67 WHERE competition = \"group stage\" AND lineup = \"start\" AND date = \"2000-09-17\"", "question": "Which Location has a Competition of Group Stage, a Lineup of Start and a Date of 2000-09-17?", "context": "CREATE TABLE table_name_67 (location VARCHAR, date VARCHAR, competition VARCHAR, lineup VARCHAR)"}, {"answer": "SELECT match FROM table_name_66 WHERE competition = \"group stage\" AND date = \"2000-09-17\"", "question": "Which Match has a Competition of Group Stage on 2000-09-17?", "context": "CREATE TABLE table_name_66 (match VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT match FROM table_name_19 WHERE competition = \"semifinal\" AND location = \"san francisco\"", "question": "Which Match played in a Location of San Francisco has a Competition of Semifinal?", "context": "CREATE TABLE table_name_19 (match VARCHAR, competition VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_3 WHERE date = \"1995-06-15\"", "question": "What Location has a Date of 1995-06-15?", "context": "CREATE TABLE table_name_3 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(points_1) FROM table_name_57 WHERE goals_against < 97 AND lost < 22 AND drawn = 9 AND goal_difference = \"+28\"", "question": "What is the most points 1 when the goals against are fewer than 97, lost less than 22, 9 draws and goal difference of +28?", "context": "CREATE TABLE table_name_57 (points_1 INTEGER, goal_difference VARCHAR, drawn VARCHAR, goals_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(points_1) FROM table_name_39 WHERE goal_difference = \"+28\" AND lost > 12", "question": "What is the most points 1 when the goal difference is +28 and lost is larger than 12?", "context": "CREATE TABLE table_name_39 (points_1 INTEGER, goal_difference VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_9 WHERE points_1 > 58 AND goals_against = 66", "question": "What is the maximum lost with points 1 more than 58 and 66 goals against?", "context": "CREATE TABLE table_name_9 (lost INTEGER, points_1 VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_1 WHERE drawn < 4", "question": "What is the most goals for when there are fewer than 4 draws?", "context": "CREATE TABLE table_name_1 (goals_for INTEGER, drawn INTEGER)"}, {"answer": "SELECT result FROM table_name_87 WHERE date = \"october 20, 2002\"", "question": "What was the result on October 20, 2002?", "context": "CREATE TABLE table_name_87 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_96 WHERE jersey_number_s_ = \"27\"", "question": "What is the nationality of the person with number 27?", "context": "CREATE TABLE table_name_96 (nationality VARCHAR, jersey_number_s_ VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_48 WHERE position = \"sg\"", "question": "What is the nationality of the SG position?", "context": "CREATE TABLE table_name_48 (nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT rank FROM table_name_32 WHERE director = \"danny devito\"", "question": "What is the rank of the film directed by danny devito?", "context": "CREATE TABLE table_name_32 (rank VARCHAR, director VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_19 WHERE title = \"eddie murphy raw\"", "question": "What is the sum of the ranks for the film, eddie murphy raw?", "context": "CREATE TABLE table_name_19 (rank INTEGER, title VARCHAR)"}, {"answer": "SELECT director FROM table_name_29 WHERE studio = \"fox\" AND title = \"predator\"", "question": "Who directed Predator that was filmed with Fox Studio?", "context": "CREATE TABLE table_name_29 (director VARCHAR, studio VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_48 WHERE studio = \"vestron\"", "question": "What is the total number of ranks that had vestron as the studio?", "context": "CREATE TABLE table_name_48 (rank VARCHAR, studio VARCHAR)"}, {"answer": "SELECT class FROM table_name_11 WHERE driver = \"stanley dickens\"", "question": "Which class had Stanley Dickens as a driver?", "context": "CREATE TABLE table_name_11 (class VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_73 WHERE class = \"c1\" AND driver = \"derek bell\"", "question": "What was the highest amount of laps for class c1 and driver Derek Bell?", "context": "CREATE TABLE table_name_73 (laps INTEGER, class VARCHAR, driver VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_39 WHERE apps > 40 AND goals = 17", "question": "Where was the player born when the appearances were greater than 40 and made 17 goals?", "context": "CREATE TABLE table_name_39 (nationality VARCHAR, apps VARCHAR, goals VARCHAR)"}, {"answer": "SELECT gillingham_career FROM table_name_79 WHERE goals = 0 AND apps < 37 AND nationality = \"england\" AND position = \"mf\"", "question": "When did the mf from England play for Gillingham that made 0 goals and less than 37 appearances?", "context": "CREATE TABLE table_name_79 (gillingham_career VARCHAR, position VARCHAR, nationality VARCHAR, goals VARCHAR, apps VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE place = \"t8\"", "question": "Who is the player with a t8 place?", "context": "CREATE TABLE table_name_67 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_75 WHERE place = \"t8\" AND player = \"dale douglass\"", "question": "What is the country of player dale douglass, who has a t8 place?", "context": "CREATE TABLE table_name_75 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(score) FROM table_name_39 WHERE place = \"t8\" AND player = \"lee trevino\"", "question": "What is the average score of player lee trevino, who has a t8 place?", "context": "CREATE TABLE table_name_39 (score INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_18 WHERE place = \"t8\" AND player = \"johnny miller\"", "question": "What is the to par of player johnny miller, who has a t8 place?", "context": "CREATE TABLE table_name_18 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_2 WHERE to_par = \"e\" AND player = \"chi-chi rodr\u00edguez\"", "question": "What is the country of player chi-chi rodr\u00edguez, who has an e to par?", "context": "CREATE TABLE table_name_2 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_78 WHERE player = \"joe colborne\"", "question": "WHAT IS THE LEAGUE WITH PLAYER JOE COLBORNE?", "context": "CREATE TABLE table_name_78 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_59 WHERE player = \"nicholas tremblay\"", "question": "WHAT IS THE ROUND NUMBER OF NICHOLAS TREMBLAY?", "context": "CREATE TABLE table_name_59 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_73 WHERE nationality = \"france\"", "question": "WHAT IS THE POSITION OF FRANCE?", "context": "CREATE TABLE table_name_73 (position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_23 WHERE player = \"jamie arniel\"", "question": "WHAT IS THE ROUND FOR JAMIE ARNIEL?", "context": "CREATE TABLE table_name_23 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE date = \"may 12, 2008\"", "question": "What was the score on May 12, 2008?", "context": "CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_28 WHERE date = \"september 26, 2009\"", "question": "Who was the opponent on September 26, 2009?", "context": "CREATE TABLE table_name_28 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(lead_maragin) FROM table_name_16 WHERE dates_administered = \"october 6, 2008\"", "question": "What was the average lead maragin for the dates administered of october 6, 2008?", "context": "CREATE TABLE table_name_16 (lead_maragin INTEGER, dates_administered VARCHAR)"}, {"answer": "SELECT poll_source FROM table_name_91 WHERE dates_administered = \"october 6, 2008\"", "question": "What was the poll source for october 6, 2008?", "context": "CREATE TABLE table_name_91 (poll_source VARCHAR, dates_administered VARCHAR)"}, {"answer": "SELECT player FROM table_name_90 WHERE place = \"t7\" AND country = \"united states\"", "question": "Who has a place of T7 and is from the United States?", "context": "CREATE TABLE table_name_90 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT rank FROM table_name_42 WHERE worldwide_gross = \"$914,691,118\"", "question": "What is the Rank of the Film with a Worldwide Gross of $914,691,118?", "context": "CREATE TABLE table_name_42 (rank VARCHAR, worldwide_gross VARCHAR)"}, {"answer": "SELECT director FROM table_name_90 WHERE title = \"the fugitive\"", "question": "What is the Director of the Film The Fugitive?", "context": "CREATE TABLE table_name_90 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_20 WHERE date = \"october 12\" AND attendance > 10 OFFSET 701", "question": "What was the highest points on October 12, when the attendance where is over 10,701?", "context": "CREATE TABLE table_name_20 (points INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE visitor = \"montreal\"", "question": "When was Montreal a visitor?", "context": "CREATE TABLE table_name_34 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT title FROM table_name_38 WHERE transliteration = \"fal'shivaya nota\"", "question": "What Title's Transliteration is Fal'shivaya Nota?", "context": "CREATE TABLE table_name_38 (title VARCHAR, transliteration VARCHAR)"}, {"answer": "SELECT title FROM table_name_40 WHERE transliteration = \"u lyudey-to v domu\"", "question": "What Title has a Transliteration of u lyudey-to v domu?", "context": "CREATE TABLE table_name_40 (title VARCHAR, transliteration VARCHAR)"}, {"answer": "SELECT AVG(frequency_mhz) FROM table_name_13 WHERE city_of_license = \"portales, new mexico\"", "question": "What is average frequency MHZ when is in portales, new mexico?", "context": "CREATE TABLE table_name_13 (frequency_mhz INTEGER, city_of_license VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_51 WHERE erp_w > 92 AND call_sign = \"k264ba\"", "question": "What is FCC info when ERP W is larger than 92 and call sign has k264ba?", "context": "CREATE TABLE table_name_51 (fcc_info VARCHAR, erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_3 WHERE erp_w > 250 AND frequency_mhz < 99.3", "question": "Which call sign has ERP Wlarger than 250, and Frequency MHZ smaller than 99.3?", "context": "CREATE TABLE table_name_3 (call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT venue FROM table_name_72 WHERE score = \"1-4\"", "question": "Where was the game played when the score was 1-4?", "context": "CREATE TABLE table_name_72 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_84 WHERE venue = \"skytteholms ip\" AND date = \"2004-02-28\"", "question": "Who was the game played against on 2004-02-28 at Skytteholms IP?", "context": "CREATE TABLE table_name_84 (opponents VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_12 WHERE venue = \"domnarvsvallen\"", "question": "When the game was played at Domnarvsvallen who were the opponents?", "context": "CREATE TABLE table_name_12 (opponents VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_49 WHERE venue = \"portugal\"", "question": "Who were the opposing team when playing in the Portugal venue?", "context": "CREATE TABLE table_name_49 (opponents VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_43 WHERE date = \"2004-06-23\"", "question": "Where was the game played on 2004-06-23?", "context": "CREATE TABLE table_name_43 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_6 WHERE player = \"tom weiskopf\"", "question": "What is the to par for Tom Weiskopf?", "context": "CREATE TABLE table_name_6 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT race_title FROM table_name_6 WHERE winner = \"george fury\" AND circuit = \"oran park raceway\"", "question": "What title did George Fury win when on the Oran Park Raceway?", "context": "CREATE TABLE table_name_6 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winner FROM table_name_38 WHERE circuit = \"amaroo park\"", "question": "Who was the winner on the Amaroo Park circuit?", "context": "CREATE TABLE table_name_38 (winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_74 WHERE goals_for < 13", "question": "What are the fewest points for goals fewer than 13?", "context": "CREATE TABLE table_name_74 (points INTEGER, goals_for INTEGER)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_79 WHERE played > 10", "question": "How many goals when more than 10 games played?", "context": "CREATE TABLE table_name_79 (goals_for INTEGER, played INTEGER)"}, {"answer": "SELECT AVG(losses) FROM table_name_21 WHERE goals_against > 17 AND goal_difference < 2 AND points > 5", "question": "How many losses when goals against are more than 17, goal difference is more than 2 and points are more than 5?", "context": "CREATE TABLE table_name_21 (losses INTEGER, points VARCHAR, goals_against VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_28 WHERE wins < 6 AND goal_difference < -15", "question": "How many draws when there are fewer than 6 wins and the goal difference is less than -15?", "context": "CREATE TABLE table_name_28 (draws VARCHAR, wins VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_92 WHERE rank = \"3rd\" AND performer = \"noelle\" AND points > 79", "question": "How much Draw has a Rank of 3rd, and a Performer of noelle, and Points larger than 79?", "context": "CREATE TABLE table_name_92 (draw VARCHAR, points VARCHAR, rank VARCHAR, performer VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_67 WHERE performer = \"jenny newman\" AND points < 77", "question": "Which Draw has a Performer of jenny newman, and Points smaller than 77?", "context": "CREATE TABLE table_name_67 (draw INTEGER, performer VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_46 WHERE draw = 2", "question": "Which Points have a Draw of 2?", "context": "CREATE TABLE table_name_46 (points INTEGER, draw VARCHAR)"}, {"answer": "SELECT COUNT(stage) FROM table_name_22 WHERE arrival = \"son bou\"", "question": "Which stage number did son bou arrive at?", "context": "CREATE TABLE table_name_22 (stage VARCHAR, arrival VARCHAR)"}, {"answer": "SELECT duration FROM table_name_34 WHERE stage > 13 AND difficulty = \"middle\" AND start = \"son bou\"", "question": "How long does the one that stars with son bou of middle difficulty, and on a stage number larger than 13 last?", "context": "CREATE TABLE table_name_34 (duration VARCHAR, start VARCHAR, stage VARCHAR, difficulty VARCHAR)"}, {"answer": "SELECT MIN(stage) FROM table_name_60 WHERE difficulty = \"middle\" AND start = \"els alocs\"", "question": "What is the lowest stage number that starts with els alocs and has a middle difficulty?", "context": "CREATE TABLE table_name_60 (stage INTEGER, difficulty VARCHAR, start VARCHAR)"}, {"answer": "SELECT price FROM table_name_24 WHERE upstream = \"256 kbit\" AND downstream = \"512 kbit\"", "question": "What is the price of the internet provider that has an upstream rate of 256 kbit and a downstream rate of 512 kbit?", "context": "CREATE TABLE table_name_24 (price VARCHAR, upstream VARCHAR, downstream VARCHAR)"}, {"answer": "SELECT bandwidth_included FROM table_name_66 WHERE price = \"266 sar\"", "question": "For the provider that costs 266 sar, what is the Bandwidth Included?", "context": "CREATE TABLE table_name_66 (bandwidth_included VARCHAR, price VARCHAR)"}, {"answer": "SELECT internet_plan FROM table_name_21 WHERE downstream = \"4,096 kbit\"", "question": "What is the name of the plan that has a downstream rate of 4,096 kbit?", "context": "CREATE TABLE table_name_21 (internet_plan VARCHAR, downstream VARCHAR)"}, {"answer": "SELECT record FROM table_name_93 WHERE score = \"l 121\u2013127\"", "question": "Which record has a score of l 121\u2013127?", "context": "CREATE TABLE table_name_93 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_39 WHERE game > 69 AND team = \"san francisco\"", "question": "What high points did San Francisco have in a game later than 69?", "context": "CREATE TABLE table_name_39 (high_points VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_17 WHERE date = \"march 10\"", "question": "What is the record for March 10?", "context": "CREATE TABLE table_name_17 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_47 WHERE game < 80 AND score = \"l 123\u2013142\"", "question": "What high points did a game earlier than 80 have with a score of l 123\u2013142?", "context": "CREATE TABLE table_name_47 (high_points VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_47 WHERE co_driver = \"warren luff\" AND position = \"7th\" AND laps < 161", "question": "What is the lowest Year, when Co-Driver is Warren Luff, when Position is 7th, and when Laps is less than 161?", "context": "CREATE TABLE table_name_47 (year INTEGER, laps VARCHAR, co_driver VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_90 WHERE laps = 156", "question": "What is Position, when Laps is 156?", "context": "CREATE TABLE table_name_90 (position VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_82 WHERE laps > 161", "question": "What is the highest Year, when Laps is greater than 161?", "context": "CREATE TABLE table_name_82 (year INTEGER, laps INTEGER)"}, {"answer": "SELECT COUNT(season) FROM table_name_53 WHERE downhill = \"35\" AND overall > 21", "question": "What season had a downhill of 35 and overall greater than 21?", "context": "CREATE TABLE table_name_53 (season VARCHAR, downhill VARCHAR, overall VARCHAR)"}, {"answer": "SELECT super_g FROM table_name_77 WHERE overall > 7 AND combined = \"13\"", "question": "What's the Super G when the combined was 13 and the overall was more than 7?", "context": "CREATE TABLE table_name_77 (super_g VARCHAR, overall VARCHAR, combined VARCHAR)"}, {"answer": "SELECT time FROM table_name_42 WHERE laps = 22 AND grid = 15", "question": "What is Time, when Laps is 22, and when Grid is 15?", "context": "CREATE TABLE table_name_42 (time VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_87 WHERE time = \"+45.855\"", "question": "What is the average Grid, when Time is +45.855?", "context": "CREATE TABLE table_name_87 (grid INTEGER, time VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_51 WHERE time = \"+43.191\" AND laps < 22", "question": "What is the total number of Grid, when Time is +43.191, and when Laps is less than 22?", "context": "CREATE TABLE table_name_51 (grid VARCHAR, time VARCHAR, laps VARCHAR)"}, {"answer": "SELECT place FROM table_name_28 WHERE player = \"mark o'meara\"", "question": "What is the place of Mark O'Meara?", "context": "CREATE TABLE table_name_28 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE score = 71 - 72 = 143", "question": "Which player has a score of 71-72=143?", "context": "CREATE TABLE table_name_43 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE country = \"united states\" AND place = \"t1\" AND player = \"david duval\"", "question": "What is the score for the United States in place T1 for David Duval?", "context": "CREATE TABLE table_name_80 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT player FROM table_name_38 WHERE country = \"united states\" AND score = 71 - 72 = 143", "question": "Who is the player from the United States with a score of 71-72=143?", "context": "CREATE TABLE table_name_38 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_90 WHERE player = \"scott mccarron\"", "question": "Which country is Scott McCarron from?", "context": "CREATE TABLE table_name_90 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_4 WHERE place = \"t1\" AND score = 71 - 68 = 139", "question": "Which country is in T1 place with a score of 71-68=139?", "context": "CREATE TABLE table_name_4 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_37 WHERE competition = \"friendly\" AND date = \"26 may 1999\"", "question": "what is the venue when the competition is friendly on 26 may 1999?", "context": "CREATE TABLE table_name_37 (venue VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_99 WHERE country = \"australia\"", "question": "What was Australia's place?", "context": "CREATE TABLE table_name_99 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE country = \"united states\" AND to_par = \"e\" AND player = \"mike reid\"", "question": "What was the score for United States when the player was Mike Reid and the To par was e?", "context": "CREATE TABLE table_name_30 (score VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT hole FROM table_name_75 WHERE country = \"united states\" AND player = \"mike reid\"", "question": "How many holes did Mike Reid from United States have?", "context": "CREATE TABLE table_name_75 (hole VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT name FROM table_name_72 WHERE position < 2", "question": "Which Name has a Position smaller than 2?", "context": "CREATE TABLE table_name_72 (name VARCHAR, position INTEGER)"}, {"answer": "SELECT COUNT(lost) FROM table_name_48 WHERE position > 2 AND name = \"sg m\u00fcnchen (n)\" AND drawn > 0", "question": "Which Lost has a Position larger than 2, a Name of sg m\u00fcnchen (n), and a Drawn larger than 0?", "context": "CREATE TABLE table_name_48 (lost VARCHAR, drawn VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_24 WHERE position = 2 AND lost > 2", "question": "Which Drawn has a Position of 2, and a Lost larger than 2?", "context": "CREATE TABLE table_name_24 (drawn INTEGER, position VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_85 WHERE position = 3 AND points < 15", "question": "Which Played has a Position of 3, and a Points smaller than 15?", "context": "CREATE TABLE table_name_85 (played VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_26 WHERE position > 5 AND points > 0 AND drawn < 0", "question": "Which Played has a Position larger than 5, a Points larger than 0, and a Drawn smaller than 0?", "context": "CREATE TABLE table_name_26 (played INTEGER, drawn VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE visitor = \"miami\"", "question": "What is the score when Miami is the visitor?", "context": "CREATE TABLE table_name_33 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_66 WHERE score = \"76-85\"", "question": "For the game that was 76-85, what was the record?", "context": "CREATE TABLE table_name_66 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_52 WHERE date = \"april 18\"", "question": "On April 18, which team was the visitor?", "context": "CREATE TABLE table_name_52 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_8 WHERE date = \"april 7\"", "question": "Who was the leading scorer on April 7?", "context": "CREATE TABLE table_name_8 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_34 WHERE date = \"april 14\"", "question": "Where was the home court on April 14?", "context": "CREATE TABLE table_name_34 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_39 WHERE team = \"boston celtics\"", "question": "What is the boston celtics' record?", "context": "CREATE TABLE table_name_39 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE record = \"9\u20138\"", "question": "Which Score has a Record of 9\u20138?", "context": "CREATE TABLE table_name_35 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE streak = \"loss 2\" AND team = \"@ boston celtics\"", "question": "Which Date has a Streak of loss 2, and a Team of @ boston celtics?", "context": "CREATE TABLE table_name_71 (date VARCHAR, streak VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE streak = \"win 1\" AND record = \"8\u20134\"", "question": "Which Date has a Streak of win 1, and a Record of 8\u20134?", "context": "CREATE TABLE table_name_35 (date VARCHAR, streak VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(score) FROM table_name_59 WHERE player = \"grier jones\"", "question": "What was the top score for grier jones?", "context": "CREATE TABLE table_name_59 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_10 WHERE score = 70", "question": "Which To par is scored at 70?", "context": "CREATE TABLE table_name_10 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_91 WHERE score < 70 AND country = \"united states\" AND player = \"hubert green\"", "question": "In what place did hubert green score below 70 in the united states?", "context": "CREATE TABLE table_name_91 (place VARCHAR, player VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT driver___passenger FROM table_name_9 WHERE bike_no < 4 AND equipment = \"zabel -vmc\"", "question": "Which Driver and passenger have a bike number of less than 4 with zabel -vmc equipment?", "context": "CREATE TABLE table_name_9 (driver___passenger VARCHAR, bike_no VARCHAR, equipment VARCHAR)"}, {"answer": "SELECT AVG(slalom) FROM table_name_5 WHERE average > 99.25", "question": "What's the slalom when the average time was greater than 99.25?", "context": "CREATE TABLE table_name_5 (slalom INTEGER, average INTEGER)"}, {"answer": "SELECT SUM(place) FROM table_name_87 WHERE average < 90.06 AND downhill = 71.6", "question": "Where was the place that the downhill was 71.6 and the average was less than 90.06?", "context": "CREATE TABLE table_name_87 (place INTEGER, average VARCHAR, downhill VARCHAR)"}, {"answer": "SELECT icao FROM table_name_90 WHERE airport = \"sibulan airport\"", "question": "What is ICAO, when Airport is \"Sibulan Airport\"?", "context": "CREATE TABLE table_name_90 (icao VARCHAR, airport VARCHAR)"}, {"answer": "SELECT icao FROM table_name_99 WHERE iata = \"hkg\"", "question": "What is ICAO, when IATA is \"HKG\"?", "context": "CREATE TABLE table_name_99 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_8 WHERE icao = \"vhhh\"", "question": "What is IATA, when ICAO is \"VHHH\"?", "context": "CREATE TABLE table_name_8 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT city FROM table_name_75 WHERE iata = \"lao\"", "question": "What is City, when IATA is \"LAO\"?", "context": "CREATE TABLE table_name_75 (city VARCHAR, iata VARCHAR)"}, {"answer": "SELECT country FROM table_name_82 WHERE city = \"zamboanga\"", "question": "What is Country, when City is \"Zamboanga\"?", "context": "CREATE TABLE table_name_82 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_50 WHERE position = 12", "question": "What is the highest number drawn when the position was 12?", "context": "CREATE TABLE table_name_50 (drawn INTEGER, position VARCHAR)"}, {"answer": "SELECT MAX(goals_against) FROM table_name_94 WHERE goals_for > 55 AND goal_difference = \"+24\"", "question": "What is the highest number of goals against when the number of goals were 55 and the difference was +24?", "context": "CREATE TABLE table_name_94 (goals_against INTEGER, goals_for VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_62 WHERE goals_against > 57 AND position < 17 AND drawn = 8 AND team = \"hyde united\"", "question": "What is the average number lost for hyde united when they had a smaller position than 17, 8 draws, and more than 57 goals against?", "context": "CREATE TABLE table_name_62 (lost INTEGER, team VARCHAR, drawn VARCHAR, goals_against VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_30 WHERE points_1 = \"36 2\" AND goals_against < 74", "question": "What is the highest played when there was less than 74 goals against and points 1 of 36 2?", "context": "CREATE TABLE table_name_30 (played INTEGER, points_1 VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_name_65 WHERE longitude = \"8.0e\"", "question": "How long is the diameter that has a longitude of 8.0e?", "context": "CREATE TABLE table_name_65 (diameter__km_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT name FROM table_name_46 WHERE year_named = 1994 AND diameter__km_ > 125 AND latitude = \"30.0s\"", "question": "What name was given in 1994 when the diameter (km) was larger than 125 and the latitude was 30.0s?", "context": "CREATE TABLE table_name_46 (name VARCHAR, latitude VARCHAR, year_named VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT longitude FROM table_name_74 WHERE year_named = 1994 AND name = \"carmenta farra\"", "question": "What is the longitude of Carmenta Farra in 1994?", "context": "CREATE TABLE table_name_74 (longitude VARCHAR, year_named VARCHAR, name VARCHAR)"}, {"answer": "SELECT no_5 FROM table_name_28 WHERE no_6 = \"ethan\" AND no_4 = \"william\" AND no_9 = \"john\"", "question": "Name the No. 5 which has a No. 6 of ethan, and a No. 4 of william, and a No. 9 of john?", "context": "CREATE TABLE table_name_28 (no_5 VARCHAR, no_9 VARCHAR, no_6 VARCHAR, no_4 VARCHAR)"}, {"answer": "SELECT no_2 FROM table_name_66 WHERE no_3 = \"jacob\" AND no_10 = \"wyatt\" AND no_6 = \"ethan\"", "question": "Name the  No. 2 which has a No. 3 of jacob, and a No. 10 of wyatt, and a No. 6 of ethan?", "context": "CREATE TABLE table_name_66 (no_2 VARCHAR, no_6 VARCHAR, no_3 VARCHAR, no_10 VARCHAR)"}, {"answer": "SELECT no_3 FROM table_name_72 WHERE no_7 = \"logan\" AND no_5 = \"jackson\"", "question": "Name the No. 3 which has a No. 7 of logan, and a No. 5 of jackson?", "context": "CREATE TABLE table_name_72 (no_3 VARCHAR, no_7 VARCHAR, no_5 VARCHAR)"}, {"answer": "SELECT no_5 FROM table_name_39 WHERE no_8 = \"logan\" AND no_10 = \"ethan\" AND no_4 = \"jacob\"", "question": "Name the No. 5 which has a No. 8 of logan, and a No. 10 of ethan, and a No. 4 of jacob?", "context": "CREATE TABLE table_name_39 (no_5 VARCHAR, no_4 VARCHAR, no_8 VARCHAR, no_10 VARCHAR)"}, {"answer": "SELECT no_8 FROM table_name_23 WHERE no_4 = \"benjamin\" AND no_3 = \"liam\"", "question": "Name the No. 8 which has a No. 4 of benjamin, and a No. 3 of liam?", "context": "CREATE TABLE table_name_23 (no_8 VARCHAR, no_4 VARCHAR, no_3 VARCHAR)"}, {"answer": "SELECT no_10 FROM table_name_94 WHERE no_8 = \"jackson\" AND no_9 = \"jayden\"", "question": "Name the No. 10 which has a No. 8 of jackson, and a No. 9 of jayden?", "context": "CREATE TABLE table_name_94 (no_10 VARCHAR, no_8 VARCHAR, no_9 VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE sample_size < 472 AND republican = \"ron paul\"", "question": "What was the date for Ron Paul as republican and a sample sized less than 472?", "context": "CREATE TABLE table_name_20 (date VARCHAR, sample_size VARCHAR, republican VARCHAR)"}, {"answer": "SELECT democrat FROM table_name_33 WHERE sample_size < 495 AND republican = \"mike huckabee\"", "question": "Who was the Democrat when the Republican was Mike Huckabee, and the sample size was less than 495?", "context": "CREATE TABLE table_name_33 (democrat VARCHAR, sample_size VARCHAR, republican VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_26 WHERE week = 9", "question": "What was the attendance in week 9?", "context": "CREATE TABLE table_name_26 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_54 WHERE attendance = 52 OFFSET 714", "question": "What week had attendance of 52,714?", "context": "CREATE TABLE table_name_54 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_41 WHERE silver = 1 AND event = \"2000 summer paralympics\" AND bronze > 3", "question": "what is the gold when silver is 1, event is 2000 summer paralympics and bronze is more than 3?", "context": "CREATE TABLE table_name_41 (gold INTEGER, bronze VARCHAR, silver VARCHAR, event VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_34 WHERE bronze = 2 AND gold > 3", "question": "how many times is bronze 2 and gold more than 3?", "context": "CREATE TABLE table_name_34 (total VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_63 WHERE silver = 1 AND bronze < 0", "question": "what is the highest gold when silver is 1 and bronze is less than 0?", "context": "CREATE TABLE table_name_63 (gold INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_11 WHERE silver < 1 AND gold > 0", "question": "what is the highest bronze when silver is less than 1 and gold is more than 0?", "context": "CREATE TABLE table_name_11 (bronze INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_86 WHERE event = \"2008 summer paralympics\" AND bronze < 1", "question": "what is the most silver when the event is 2008 summer paralympics and bronze is less than 1?", "context": "CREATE TABLE table_name_86 (silver INTEGER, event VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT album_title FROM table_name_53 WHERE title = \"\u6ed1\u677f\"", "question": "Which Album title has a Title of \u6ed1\u677f?", "context": "CREATE TABLE table_name_53 (album_title VARCHAR, title VARCHAR)"}, {"answer": "SELECT record_label FROM table_name_46 WHERE title = \"\u8bc0\u522b\u8bd7\"", "question": "Which Record label has a Title of \u8bc0\u522b\u8bd7?", "context": "CREATE TABLE table_name_46 (record_label VARCHAR, title VARCHAR)"}, {"answer": "SELECT track_number FROM table_name_44 WHERE album_title = \"\u6587\u6b66\u53cc\u5168\u5347\u7ea7\u7248\" AND title = \"\u8001\u7238\u4f60\u522b\u88c5\u9177\"", "question": "Which Track number has a Album title of \u6587\u6b66\u53cc\u5168\u5347\u7ea7\u7248, and a Title of \u8001\u7238\u4f60\u522b\u88c5\u9177?", "context": "CREATE TABLE table_name_44 (track_number VARCHAR, album_title VARCHAR, title VARCHAR)"}, {"answer": "SELECT disc_number FROM table_name_19 WHERE track_number = \"02\" AND release_date = \"7 september 2004\"", "question": "What kind of Disc number has a Track number of 02 on 7 september 2004?", "context": "CREATE TABLE table_name_19 (disc_number VARCHAR, track_number VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT title FROM table_name_73 WHERE track_number = \"07\" AND record_label = \"emi\" AND release_date = \"21 april 2006\"", "question": "Name The Title which has a Track number of 07, and a Record label of emi on 21 april 2006?", "context": "CREATE TABLE table_name_73 (title VARCHAR, release_date VARCHAR, track_number VARCHAR, record_label VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_52 WHERE away_team = \"wrexham\"", "question": "WHAT'S THE TIE NUMBER WITH AN AWAY TEAM OF WREXHAM?", "context": "CREATE TABLE table_name_52 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_33 WHERE home_team = \"leicester city\"", "question": "WHAT IS THE AWAY TEAM WITH HOME OF LEICESTER CITY?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_44 WHERE home_team = \"leeds united\"", "question": "WHAT IS THE AWAY TEAM WHEN HOME IS LEEDS UNITED?", "context": "CREATE TABLE table_name_44 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_46 WHERE tie_no = \"1\"", "question": "WHAT IS THE AWAY TEAM WITH A TIE NUMBER 1?", "context": "CREATE TABLE table_name_46 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_68 WHERE club = \"darlington\" AND league_goals = \"13\" AND league_cup_goals = \"1\"", "question": "Which Total has a Club of darlington, and a League goals of 13, and a League Cup goals of 1?", "context": "CREATE TABLE table_name_68 (total INTEGER, league_cup_goals VARCHAR, club VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT club FROM table_name_99 WHERE league_cup_goals = \"0\" AND fa_cup_goals = \"1\" AND total > 11 AND league_goals = \"13\"", "question": "Which Club has a League Cup goals of 0, and a FA Cup goals of 1, and a Total larger than 11, and a League goals of 13?", "context": "CREATE TABLE table_name_99 (club VARCHAR, league_goals VARCHAR, total VARCHAR, league_cup_goals VARCHAR, fa_cup_goals VARCHAR)"}, {"answer": "SELECT league_cup_goals FROM table_name_61 WHERE total > \"14\" AND league_goals = \"14\" AND fa_cup_goals = \"0\"", "question": "Which League Cup goals have a Total larger than 14, and a League goals of 14, and a FA Cup goals of 0?", "context": "CREATE TABLE table_name_61 (league_cup_goals VARCHAR, fa_cup_goals VARCHAR, total VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_23 WHERE fa_cup_goals = \"1\" AND league_goals = \"4 + 7\"", "question": "Which Total has an FA Cup goals of 1, and a League goals of 4 + 7?", "context": "CREATE TABLE table_name_23 (total INTEGER, fa_cup_goals VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT event FROM table_name_98 WHERE res = \"win\" AND round = \"n/a\" AND record = \"8-1\"", "question": "What event had a win, record of 8-1 and n/a round?", "context": "CREATE TABLE table_name_98 (event VARCHAR, record VARCHAR, res VARCHAR, round VARCHAR)"}, {"answer": "SELECT event FROM table_name_16 WHERE method = \"submission (rear naked choke)\" AND opponent = \"karl knothe\"", "question": "What event was the opponent Karl Knothe and had a submission (rear naked choke)?", "context": "CREATE TABLE table_name_16 (event VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_91 WHERE method = \"decision\" AND res = \"win\"", "question": "What's the record for the match when the res was a win and the method was a decision?", "context": "CREATE TABLE table_name_91 (record VARCHAR, method VARCHAR, res VARCHAR)"}, {"answer": "SELECT round FROM table_name_17 WHERE record = \"4-1\"", "question": "What round had a record of 4-1?", "context": "CREATE TABLE table_name_17 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_7 WHERE round = \"n/a\" AND event = \"ucs 2 - battle at the barn\"", "question": "What's the record of the UCS 2 - Battle at the Barn when the round was n/a?", "context": "CREATE TABLE table_name_7 (record VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT round FROM table_name_73 WHERE record = \"8-2\"", "question": "What round had a record of 8-2?", "context": "CREATE TABLE table_name_73 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_27 WHERE record = \"17-19-4\"", "question": "Who is the opponent when the record is 17-19-4?", "context": "CREATE TABLE table_name_27 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE game = 37", "question": "What is the score of game 37?", "context": "CREATE TABLE table_name_72 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_77 WHERE date = \"1/17/1980\"", "question": "What is the record on 1/17/1980?", "context": "CREATE TABLE table_name_77 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE game = 3", "question": "What date was game number 3?", "context": "CREATE TABLE table_name_34 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE high_rebounds = \"george hill (11)\"", "question": "What is the record when George Hill (11) had the high rebounds?", "context": "CREATE TABLE table_name_58 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_44 WHERE date = \"november 19\"", "question": "What number game happened on November 19?", "context": "CREATE TABLE table_name_44 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_55 WHERE game = 12", "question": "Who had the high rebounds for game 12?", "context": "CREATE TABLE table_name_55 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT manager FROM table_name_33 WHERE home_city = \"osijek\"", "question": "What is the name of the manager in the city of Osijek?", "context": "CREATE TABLE table_name_33 (manager VARCHAR, home_city VARCHAR)"}, {"answer": "SELECT team FROM table_name_48 WHERE stadium = \"stadion maksimir\"", "question": "What is the team at Stadion Maksimir?", "context": "CREATE TABLE table_name_48 (team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT home_city FROM table_name_69 WHERE stadium = \"gradski stadion u poljudu\"", "question": "What is the home city when the stadium was Gradski Stadion U Poljudu?", "context": "CREATE TABLE table_name_69 (home_city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT home_city FROM table_name_36 WHERE manager = \"mladen fran\u010di\u0107\"", "question": "What is the home city when Mladen Fran\u010di\u0107 is the manager?", "context": "CREATE TABLE table_name_36 (home_city VARCHAR, manager VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_99 WHERE attendance = \"80,079\"", "question": "Who was the opponent when the attendance was 80,079?", "context": "CREATE TABLE table_name_99 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE attendance = \"31,002\"", "question": "Who was the opponent when the attendance was 31,002?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE site = \"legion field \u2022 birmingham, al\"", "question": "Who was the opponent when they played at the legion field \u2022 birmingham, al site?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, site VARCHAR)"}, {"answer": "SELECT site FROM table_name_22 WHERE opponent = \"louisville\"", "question": "On which site was the game against Louisville played?", "context": "CREATE TABLE table_name_22 (site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_76 WHERE date = \"september 12\"", "question": "What was the total attendance on September 12?", "context": "CREATE TABLE table_name_76 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(broadcasts__tv__1) FROM table_name_47 WHERE series = \"3 4\" AND us_release_date = \"27 december 2006\"", "question": "What is the sum of Broadcasts (TV) 1, when Series is \"3 4\", and when US Release Date is \"27 December 2006\"?", "context": "CREATE TABLE table_name_47 (broadcasts__tv__1 INTEGER, series VARCHAR, us_release_date VARCHAR)"}, {"answer": "SELECT COUNT(broadcasts__tv__1) FROM table_name_50 WHERE aired_in_japan_3 = \"5 january 2003 to 30 march 2003\"", "question": "What is the total number of Broadcasts (TV) 1, when Aired in Japan 3 is \"5 January 2003 to 30 March 2003\"?", "context": "CREATE TABLE table_name_50 (broadcasts__tv__1 VARCHAR, aired_in_japan_3 VARCHAR)"}, {"answer": "SELECT episodes__tv + extra__2 FROM table_name_26 WHERE broadcasts__tv__1 < 13 AND directors = \"shigehito takayanagi\"", "question": "What is Episodes (TV+extra) 2, when Broadcasts (TV) 1 is less than 13, and when Directors is \"Shigehito Takayanagi\"?", "context": "CREATE TABLE table_name_26 (episodes__tv VARCHAR, extra__2 VARCHAR, broadcasts__tv__1 VARCHAR, directors VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_35 WHERE position = \"of\" AND team = \"chicago white sox\"", "question": "What was the lowest pick when the position was OF with the Chicago White Sox?", "context": "CREATE TABLE table_name_35 (pick INTEGER, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_54 WHERE school = \"university of maryland\"", "question": "What is the affiliation of the University of Maryland?", "context": "CREATE TABLE table_name_54 (affiliation VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_name_9 WHERE nickname = \"cardinals\"", "question": "What school has the nickname of Cardinals?", "context": "CREATE TABLE table_name_9 (founded INTEGER, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_98 WHERE location = \"fairfax, va\"", "question": "What is the nickname of the school located in Fairfax, VA?", "context": "CREATE TABLE table_name_98 (nickname VARCHAR, location VARCHAR)"}, {"answer": "SELECT house FROM table_name_89 WHERE four = \"opat\"", "question": "What is \"house\", when \"four\" is \"opat\"?", "context": "CREATE TABLE table_name_89 (house VARCHAR, four VARCHAR)"}, {"answer": "SELECT house FROM table_name_24 WHERE what = \"ano\" AND three = \"tulo\"", "question": "What is \"house\", when \"what\" is \"ano\", and when \"three\" is \"tulo\"?", "context": "CREATE TABLE table_name_24 (house VARCHAR, what VARCHAR, three VARCHAR)"}, {"answer": "SELECT english FROM table_name_52 WHERE house = \"balay\" AND three = \"tatlo\" AND four = \"apat\"", "question": "What is the language, when \"house\" is \"balay\", when \"three\" is \"tatlo\", and when \"four\" is \"apat\"?", "context": "CREATE TABLE table_name_52 (english VARCHAR, four VARCHAR, house VARCHAR, three VARCHAR)"}, {"answer": "SELECT what FROM table_name_7 WHERE person = \"tawo\" AND three = \"tuyo\" AND coconut = \"niyog\"", "question": "What is \"what\", when \"person\" is \"tawo\", when \"three\" is \"tuyo\", and when \"coconut\" is \"niyog\"?", "context": "CREATE TABLE table_name_7 (what VARCHAR, coconut VARCHAR, person VARCHAR, three VARCHAR)"}, {"answer": "SELECT english FROM table_name_32 WHERE what = \"ango\"", "question": "What is the language, when \"what\" is \"ango\"?", "context": "CREATE TABLE table_name_32 (english VARCHAR, what VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_47 WHERE date = \"august 20, 2006\"", "question": "Who is the opponent for the game played on august 20, 2006?", "context": "CREATE TABLE table_name_47 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_67 WHERE opponent = \"estrella cabeza candela\"", "question": "On which Surface will Estrella Cabeza Candela play?", "context": "CREATE TABLE table_name_67 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_14 WHERE date = \"december 16, 1989\"", "question": "What was the opponent on December 16, 1989?", "context": "CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_80 WHERE date = \"november 12, 1989\"", "question": "What was the highest attendance on November 12, 1989?", "context": "CREATE TABLE table_name_80 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_39 WHERE date = \"december 10, 1989\"", "question": "What was the week on December 10, 1989?", "context": "CREATE TABLE table_name_39 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_66 WHERE date = \"february 27\"", "question": "What attendance is dated february 27?", "context": "CREATE TABLE table_name_66 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE points = 37", "question": "What date has 37 points?", "context": "CREATE TABLE table_name_95 (date VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_name_61 WHERE game > 55 AND date = \"february 24\"", "question": "Who was the Team that was played against on February 24 and a game after game 55?", "context": "CREATE TABLE table_name_61 (team VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_37 WHERE lane < 4 AND mark = \"52.64\"", "question": "what is the name when the lane is less than 4 and mark is 52.64?", "context": "CREATE TABLE table_name_37 (name VARCHAR, lane VARCHAR, mark VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_29 WHERE heat = 3 AND name = \"cxhristy ekpukhon ihunaegbo\"", "question": "what is the number of times that the heat is 3 and the name is cxhristy ekpukhon ihunaegbo?", "context": "CREATE TABLE table_name_29 (lane VARCHAR, heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE time = \"18:00\" AND venue = \"african union\"", "question": "Name the Score which has a Time of 18:00 and a Venue of african union?", "context": "CREATE TABLE table_name_99 (score VARCHAR, time VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_61 WHERE score = \"8 \u2013 1\"", "question": "Name the Venue which has a Score of 8 \u2013 1?", "context": "CREATE TABLE table_name_61 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_97 WHERE team_1 = \"h\"", "question": "What is 2nd Leg, when Team 1 is \"H\"?", "context": "CREATE TABLE table_name_97 (team_1 VARCHAR)"}, {"answer": "SELECT batsmen FROM table_name_98 WHERE year = \"2002\"", "question": "Who are the Batsmen from the year 2002?", "context": "CREATE TABLE table_name_98 (batsmen VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE year = \"1948\"", "question": "What score did the year 1948 have?", "context": "CREATE TABLE table_name_21 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT batsmen FROM table_name_83 WHERE year = \"1982\"", "question": "Who is the Batsman from the year 1982?", "context": "CREATE TABLE table_name_83 (batsmen VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE year = \"1929\"", "question": "What is the score in 1929?", "context": "CREATE TABLE table_name_46 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT batsmen FROM table_name_76 WHERE location = \"the brit oval\"", "question": "Who was the batsmen at the Brit Oval location?", "context": "CREATE TABLE table_name_76 (batsmen VARCHAR, location VARCHAR)"}, {"answer": "SELECT built FROM table_name_63 WHERE county = \"kent\"", "question": "What year was the bridge in Kent built?", "context": "CREATE TABLE table_name_63 (built VARCHAR, county VARCHAR)"}, {"answer": "SELECT county FROM table_name_55 WHERE location = \"east providence\"", "question": "In which county is East Providence?", "context": "CREATE TABLE table_name_55 (county VARCHAR, location VARCHAR)"}, {"answer": "SELECT county FROM table_name_37 WHERE built = \"1884\"", "question": "What county had a bridge biult in 1884?", "context": "CREATE TABLE table_name_37 (county VARCHAR, built VARCHAR)"}, {"answer": "SELECT place FROM table_name_13 WHERE score = 68 - 73 - 66 - 74 = 281", "question": "What is the Place of the Player with a Score of 68-73-66-74=281?", "context": "CREATE TABLE table_name_13 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_21 WHERE score = 71 - 69 - 70 - 71 = 281", "question": "What Country's Player scored 71-69-70-71=281?", "context": "CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_60 WHERE place = \"t5\" AND player = \"vijay singh\"", "question": "What is T5 Place Vijay Singh's To par?", "context": "CREATE TABLE table_name_60 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE player = \"bob murphy\"", "question": "What is Score, when Player is \"Bob Murphy\"?", "context": "CREATE TABLE table_name_9 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_32 WHERE to_par = \"+1\" AND country = \"united states\" AND score = 71 - 70 = 141", "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 score FROM table_name_40 WHERE place = \"t8\" AND player = \"orville moody\"", "question": "What is Score, when Place is \"T8\", and when Player is \"Orville Moody\"?", "context": "CREATE TABLE table_name_40 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE player = \"deane beman\"", "question": "What is Score, when Player is \"Deane Beman\"?", "context": "CREATE TABLE table_name_20 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_56 WHERE player = \"jack nicklaus\"", "question": "What is Country, when Player is \"Jack Nicklaus\"?", "context": "CREATE TABLE table_name_56 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE place = \"1\"", "question": "What is the Country, when Place is \"1\"?", "context": "CREATE TABLE table_name_46 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT result FROM table_name_1 WHERE category = \"best urban/alternative performance\" AND year > 2003", "question": "WHAT IS THE RESULT FOR best urban/alternative performance, IN 2003 OR GREATER?", "context": "CREATE TABLE table_name_1 (result VARCHAR, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT title FROM table_name_95 WHERE category = \"best r&b song\"", "question": "WHAT IS THE TITLE WITH CATEGORY OF best r&b song?", "context": "CREATE TABLE table_name_95 (title VARCHAR, category VARCHAR)"}, {"answer": "SELECT result FROM table_name_79 WHERE year = 2003 AND category = \"best urban/alternative performance\"", "question": "WHAT IS THE RESULT FOR 2003, IN  best urban/alternative performance?", "context": "CREATE TABLE table_name_79 (result VARCHAR, year VARCHAR, category VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_5 WHERE title = \"floetic\"", "question": "WHAT IS THE YEAR OF FLOETIC?", "context": "CREATE TABLE table_name_5 (year INTEGER, title VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_64 WHERE record = \"2-4\"", "question": "Who had the highest assists when the nuggets record was 2-4?", "context": "CREATE TABLE table_name_64 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_92 WHERE game = 3", "question": "Who had the highest assists in game 3?", "context": "CREATE TABLE table_name_92 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT time FROM table_name_69 WHERE ground = \"waverley park\" AND away_team = \"footscray\"", "question": "What is Time, when Ground is Waverley Park, and when Away Team is Footscray?", "context": "CREATE TABLE table_name_69 (time VARCHAR, ground VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT ground FROM table_name_73 WHERE away_team = \"sydney\"", "question": "What is Ground, when Away Team is Sydney?", "context": "CREATE TABLE table_name_73 (ground VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE home_team = \"richmond\"", "question": "What is Date, when Home Team is Richmond?", "context": "CREATE TABLE table_name_65 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_39 WHERE time = \"12:00 pm\" AND ground = \"waverley park\"", "question": "What is Home Team Score, when Time is 12:00 PM, and when Ground is Waverley Park?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, time VARCHAR, ground VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_4 WHERE championship = \"us open\"", "question": "What is the highest year for the US Open?", "context": "CREATE TABLE table_name_4 (year INTEGER, championship VARCHAR)"}, {"answer": "SELECT result FROM table_name_72 WHERE week = 16", "question": "What is Result, when Week is 16?", "context": "CREATE TABLE table_name_72 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT record FROM table_name_84 WHERE attendance = \"30,110\"", "question": "What is Record, when Attendance is 30,110?", "context": "CREATE TABLE table_name_84 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE opponent = \"at saskatchewan roughriders\"", "question": "What is Date, when Opponent is At Saskatchewan Roughriders?", "context": "CREATE TABLE table_name_13 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT school_name FROM table_name_64 WHERE students < 389 AND grades = \"10-12\"", "question": "Which School name has students smaller than 389, and grades of 10-12?", "context": "CREATE TABLE table_name_64 (school_name VARCHAR, students VARCHAR, grades VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE home_team = \"cairns taipans\"", "question": "What was the score of the game where the home team was the cairns taipans?", "context": "CREATE TABLE table_name_85 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE home_team = \"adelaide 36ers\"", "question": "What was the score of the game where the adelaide 36ers were the home team?", "context": "CREATE TABLE table_name_39 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE venue = \"cairns convention centre\"", "question": "What was the score of the game where the venue was cairns convention centre?", "context": "CREATE TABLE table_name_54 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_36 WHERE home_team = \"new zealand breakers\"", "question": "Who was the away team during the game when the home team was the new zealand breakers?", "context": "CREATE TABLE table_name_36 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_16 WHERE away_team = \"gold coast blaze\" AND home_team = \"adelaide 36ers\"", "question": "What was the score of the game which featured the gold coast blaze as the away team and the adelaide 36ers as the home team?", "context": "CREATE TABLE table_name_16 (score VARCHAR, away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_92 WHERE assets__billion_$_ < 248.44 AND industry = \"oil and gas\" AND headquarters = \"france\" AND market_value__billion_$_ > 152.62", "question": "What is the total rank of the company with less than 248.44 billion in assets, an industry of oil and gas, headquarters in France, and a market value greater than 152.62 billions?", "context": "CREATE TABLE table_name_92 (rank VARCHAR, market_value__billion_$_ VARCHAR, headquarters VARCHAR, assets__billion_$_ VARCHAR, industry VARCHAR)"}, {"answer": "SELECT company FROM table_name_62 WHERE sales__billion_$_ > 195.34 AND rank > 7 AND profits__billion_$_ > 11.29 AND market_value__billion_$_ > 198.14", "question": "What company has more than 195.34 billion in sales, ranked greater than 7, more than 11.29 billion in profits, and a market value greater than 198.14 billion?", "context": "CREATE TABLE table_name_62 (company VARCHAR, market_value__billion_$_ VARCHAR, profits__billion_$_ VARCHAR, sales__billion_$_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_97 WHERE sales__billion_$_ > 146.56 AND profits__billion_$_ = 11.68", "question": "What is the average rank of the company with more than 146.56 billion in sales and profits of 11.68 billions?", "context": "CREATE TABLE table_name_97 (rank INTEGER, sales__billion_$_ VARCHAR, profits__billion_$_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_23 WHERE round > 5 AND college = \"nevada\"", "question": "What was the position of the player from the college of Nevada with a round over 5?", "context": "CREATE TABLE table_name_23 (position VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_6 WHERE round < 7 AND overall < 186 AND pick = 13", "question": "Which college had a pick in a round under 7, with a pick number 13 and overall was under 186?", "context": "CREATE TABLE table_name_6 (college VARCHAR, pick VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(parishes) FROM table_name_62 WHERE pastoral_region = \"merrimack\" AND cemeteries < 4", "question": "How many Parishes in Merrimack which has 4 Cemeteries?", "context": "CREATE TABLE table_name_62 (parishes INTEGER, pastoral_region VARCHAR, cemeteries VARCHAR)"}, {"answer": "SELECT pastoral_region FROM table_name_57 WHERE cemeteries = 3", "question": "What Pastoral Region has 3 Cemeteries?", "context": "CREATE TABLE table_name_57 (pastoral_region VARCHAR, cemeteries VARCHAR)"}, {"answer": "SELECT SUM(high_schools) FROM table_name_38 WHERE cemeteries = 8", "question": "How many High schools in the Region with 8 Cemeteries?", "context": "CREATE TABLE table_name_38 (high_schools INTEGER, cemeteries VARCHAR)"}, {"answer": "SELECT pastoral_region FROM table_name_81 WHERE episcopal_vicar = \"robert francis hennessey\"", "question": "What Pastoral Region has Episcopal Vicar Robert Francis Hennessey?", "context": "CREATE TABLE table_name_81 (pastoral_region VARCHAR, episcopal_vicar VARCHAR)"}, {"answer": "SELECT name FROM table_name_69 WHERE games > 299 AND period = \"1995\u201307\"", "question": "What is the name of the person with more than 299 games during the 1995\u201307 period?", "context": "CREATE TABLE table_name_69 (name VARCHAR, games VARCHAR, period VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_75 WHERE name = \"shlomi avrahami\"", "question": "What is the number of games for Shlomi Avrahami?", "context": "CREATE TABLE table_name_75 (games VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_7 WHERE period = \"1973\u201389\" AND games < 423", "question": "What is the rank for the period of 1973\u201389, with less than 423 games.", "context": "CREATE TABLE table_name_7 (rank INTEGER, period VARCHAR, games VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_98 WHERE team_2 = \"ulisses\"", "question": "What is the team 1 when Ulisses is team 2?", "context": "CREATE TABLE table_name_98 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_31 WHERE year = \"highest mean annual temperature\"", "question": "What is 2009, when Year is \"Highest Mean Annual Temperature\"?", "context": "CREATE TABLE table_name_31 (year VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_75 WHERE total > 30 AND sport = \"swimming\" AND bronze > 35", "question": "How many gold values have totals over 30, bronzes over 35, and are in Swimming?", "context": "CREATE TABLE table_name_75 (gold VARCHAR, bronze VARCHAR, total VARCHAR, sport VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_58 WHERE silver > 2 AND sport = \"cycling\" AND gold < 16", "question": "What is the highest bronze value with silvers over 2, golds under 16, and in Cycling?", "context": "CREATE TABLE table_name_58 (bronze INTEGER, gold VARCHAR, silver VARCHAR, sport VARCHAR)"}, {"answer": "SELECT total FROM table_name_15 WHERE bronze > 35", "question": "What is the total associated with Bronzes over 35?", "context": "CREATE TABLE table_name_15 (total VARCHAR, bronze INTEGER)"}, {"answer": "SELECT MIN(bronze) FROM table_name_63 WHERE gold > 0 AND total = 36 AND silver > 11", "question": "What is the smallest bronze value associated with golds over 0, silvers over 11, and totals of 36?", "context": "CREATE TABLE table_name_63 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_66 WHERE sport = \"athletics\" AND silver > 42", "question": "What is the average number of golds in athletics associated with over 42 silvers?", "context": "CREATE TABLE table_name_66 (gold INTEGER, sport VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_90 WHERE bronze < 20 AND total = 1 AND sport = \"water polo\" AND gold < 0", "question": "What is the smallest number of silvers associated with bronzes under 20, totals of 1, golds of 0, and in Water Polo?", "context": "CREATE TABLE table_name_90 (silver INTEGER, gold VARCHAR, sport VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_69 WHERE player = \"marc pilon\"", "question": "What was the lowest pick number for Marc Pilon?", "context": "CREATE TABLE table_name_69 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_23 WHERE college = \"british columbia\"", "question": "What player was from the British Columbia college?", "context": "CREATE TABLE table_name_23 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_13 WHERE cfl_team = \"hamilton tiger-cats\"", "question": "What was the highest pick number for the Hamilton tiger-cats?", "context": "CREATE TABLE table_name_13 (pick__number INTEGER, cfl_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_59 WHERE position = \"wr\"", "question": "What was the pick number for the WR position?", "context": "CREATE TABLE table_name_59 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT goal FROM table_name_84 WHERE result = \"2-0\"", "question": "Can you tell me the Goal that has the Result of 2-0?", "context": "CREATE TABLE table_name_84 (goal VARCHAR, result VARCHAR)"}, {"answer": "SELECT place FROM table_name_32 WHERE prize = \"$381.030\"", "question": "What is Place, when Prize is \"$381.030\"?", "context": "CREATE TABLE table_name_32 (place VARCHAR, prize VARCHAR)"}, {"answer": "SELECT rank FROM table_name_65 WHERE event = \"lapt3 punta del este\"", "question": "What is Rank, when Event is \"LAPT3 Punta Del Este\"?", "context": "CREATE TABLE table_name_65 (rank VARCHAR, event VARCHAR)"}, {"answer": "SELECT name FROM table_name_64 WHERE prize = \"$279.330\"", "question": "What is Name, when Prize is \"$279.330\"?", "context": "CREATE TABLE table_name_64 (name VARCHAR, prize VARCHAR)"}, {"answer": "SELECT prize FROM table_name_2 WHERE rank = \"2nd\"", "question": "What is Prize, when Rank is \"2nd\"?", "context": "CREATE TABLE table_name_2 (prize VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_66 WHERE event = \"lapt4 s\u00e3o paulo\"", "question": "What is Rank, when Event is \"LAPT4 S\u00e3o Paulo\"?", "context": "CREATE TABLE table_name_66 (rank VARCHAR, event VARCHAR)"}, {"answer": "SELECT prize FROM table_name_58 WHERE name = \"valdemar kwaysser\"", "question": "What is Prize, when Name is \"Valdemar Kwaysser\"?", "context": "CREATE TABLE table_name_58 (prize VARCHAR, name VARCHAR)"}, {"answer": "SELECT bus_power FROM table_name_5 WHERE fieldbus = \"controlnet\"", "question": "What is the bus power for the Controlnet Fieldbus?", "context": "CREATE TABLE table_name_5 (bus_power VARCHAR, fieldbus VARCHAR)"}, {"answer": "SELECT sub_millisecond_cycle FROM table_name_28 WHERE \"fieldbus\" = \"fieldbus\"", "question": "What is the millisecond cycle for the Fieldbus?", "context": "CREATE TABLE table_name_28 (sub_millisecond_cycle VARCHAR)"}, {"answer": "SELECT synchronisation FROM table_name_70 WHERE fieldbus = \"controlnet\"", "question": "What is the synchronisation for the controlnet fieldbus?", "context": "CREATE TABLE table_name_70 (synchronisation VARCHAR, fieldbus VARCHAR)"}, {"answer": "SELECT position FROM table_name_31 WHERE college = \"colorado\"", "question": "Which Position has a College of colorado?", "context": "CREATE TABLE table_name_31 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_7 WHERE overall > 211 AND position = \"db\" AND name = \"carl charon\"", "question": "Which College has an Overall larger than 211, a Position of db, and a Name of carl charon?", "context": "CREATE TABLE table_name_7 (college VARCHAR, name VARCHAR, overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_46 WHERE college = \"michigan state\" AND position = \"fb\" AND round > 8", "question": "Which Overall has a College of michigan state, a Position of fb, and a Round larger than 8?", "context": "CREATE TABLE table_name_46 (overall INTEGER, round VARCHAR, college VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_26 WHERE college = \"arizona\"", "question": "Which Round has a College of arizona?", "context": "CREATE TABLE table_name_26 (round INTEGER, college VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_99 WHERE round = 7", "question": "Which Overall has a Round of 7?", "context": "CREATE TABLE table_name_99 (overall INTEGER, round VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_4 WHERE pick > 1", "question": "Which Round has a Pick larger than 1?", "context": "CREATE TABLE table_name_4 (round INTEGER, pick INTEGER)"}, {"answer": "SELECT MIN(ends_won) FROM table_name_45 WHERE stolen_ends = 10 AND locale = \"italy\" AND blank_ends < 14", "question": "In italy, when the stolen ends were 10 and blank ends were under 14, what's the lowest ends won?", "context": "CREATE TABLE table_name_45 (ends_won INTEGER, blank_ends VARCHAR, stolen_ends VARCHAR, locale VARCHAR)"}, {"answer": "SELECT MAX(blank_ends) FROM table_name_53 WHERE stolen_ends > 14 AND ends_won < 57", "question": "When ends won were below 57 but stolen ends are more than 14, what's the highest blank ends found?", "context": "CREATE TABLE table_name_53 (blank_ends INTEGER, stolen_ends VARCHAR, ends_won VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_17 WHERE home_team = \"leicester city\"", "question": "What was the attendance record for Leicester City?", "context": "CREATE TABLE table_name_17 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_11 WHERE home_team = \"arsenal\"", "question": "What was the attendance for Arsenal?", "context": "CREATE TABLE table_name_11 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_13 WHERE away_team = \"bolton wanderers\"", "question": "Who was the home team against the Bolton Wanderers?", "context": "CREATE TABLE table_name_13 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_63 WHERE round = 2 AND location = \"south dakota, united states\"", "question": "Who was the opponent of the match in South Dakota, United States which has 2 rounds?", "context": "CREATE TABLE table_name_63 (opponent VARCHAR, round VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(total_atms) FROM table_name_32 WHERE off_site_atms > 3672 AND number_of_branches < 1685", "question": "What is the total ATMs with off-site ATMs greater than 3672, and less than 1685 as the number of branches?", "context": "CREATE TABLE table_name_32 (total_atms VARCHAR, off_site_atms VARCHAR, number_of_branches VARCHAR)"}, {"answer": "SELECT SUM(number_of_branches) FROM table_name_84 WHERE on_site_atms = 1548 AND off_site_atms > 3672", "question": "What is the total number of branches when the on-site ATMS is 1548, and the off-site ATMs is bigger than 3672?", "context": "CREATE TABLE table_name_84 (number_of_branches INTEGER, on_site_atms VARCHAR, off_site_atms VARCHAR)"}, {"answer": "SELECT MIN(total_atms) FROM table_name_42 WHERE bank_type = \"new private sector banks\" AND on_site_atms > 1883", "question": "What is the minimum total ATMs with new private sector banks as the bank type, and the on-site ATMs are greater than 1883?", "context": "CREATE TABLE table_name_42 (total_atms INTEGER, bank_type VARCHAR, on_site_atms VARCHAR)"}, {"answer": "SELECT AVG(on_site_atms) FROM table_name_20 WHERE off_site_atms = 1567 AND total_atms < 4772", "question": "What is the mean on-site ATMS that have off-site ATMs of 1567, and the total number of ATMs less than 4772?", "context": "CREATE TABLE table_name_20 (on_site_atms INTEGER, off_site_atms VARCHAR, total_atms VARCHAR)"}, {"answer": "SELECT AVG(off_site_atms) FROM table_name_66 WHERE bank_type = \"foreign banks\" AND on_site_atms < 218", "question": "With foreign banks as the bank type, and on-site ATMS less than 218, what is the average off-site ATMs?", "context": "CREATE TABLE table_name_66 (off_site_atms INTEGER, bank_type VARCHAR, on_site_atms VARCHAR)"}, {"answer": "SELECT effect FROM table_name_53 WHERE weapon = \"35mm/small arms fire\"", "question": "What is Effect, when Weapon is \"35mm/Small arms fire\"?", "context": "CREATE TABLE table_name_53 (effect VARCHAR, weapon VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE effect = \"shot down\" AND place = \"south of stanley airport\"", "question": "What is Date, when Effect is \"Shot Down\", and when Place is \"South of Stanley Airport\"?", "context": "CREATE TABLE table_name_82 (date VARCHAR, effect VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_15 WHERE weapon = \"35mm fire\" AND date = \"27 may 1982\"", "question": "What is Place, when Weapon is \"35mm fire\", and when Date is \"27 May 1982\"?", "context": "CREATE TABLE table_name_15 (place VARCHAR, weapon VARCHAR, date VARCHAR)"}, {"answer": "SELECT pilot FROM table_name_8 WHERE place = \"goose green\" AND date = \"27 may 1982\"", "question": "What is Pilot, when Place is \"Goose Green\", and when Date is \"27 May 1982\"?", "context": "CREATE TABLE table_name_8 (pilot VARCHAR, place VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_6 WHERE weapon = \"35mm/small arms fire\"", "question": "What is Place, when Weapon is \"35mm/Small arms fire\"?", "context": "CREATE TABLE table_name_6 (place VARCHAR, weapon VARCHAR)"}, {"answer": "SELECT pilot FROM table_name_48 WHERE weapon = \"35mm fire\" AND date = \"4 may 1982\"", "question": "What is Pilot, when Weapon is \"35mm fire\", and when Date is \"4 May 1982\"?", "context": "CREATE TABLE table_name_48 (pilot VARCHAR, weapon VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE jersey_number_s_ > 30", "question": "Who is the player with a Jersey Number(s) greater than 30?", "context": "CREATE TABLE table_name_22 (player VARCHAR, jersey_number_s_ INTEGER)"}, {"answer": "SELECT years FROM table_name_73 WHERE jersey_number_s_ = 44", "question": "What is the Years of the player with Jersey Number(s) of 44?", "context": "CREATE TABLE table_name_73 (years VARCHAR, jersey_number_s_ VARCHAR)"}, {"answer": "SELECT population__2010_ FROM table_name_63 WHERE province = \"north jeolla\"", "question": "What was the population in North Jeolla?", "context": "CREATE TABLE table_name_63 (population__2010_ VARCHAR, province VARCHAR)"}, {"answer": "SELECT korean FROM table_name_46 WHERE hanja = \"\u5357\u694a\u5dde\"", "question": "What's Korean for \u5357\u694a\u5dde Hanja?", "context": "CREATE TABLE table_name_46 (korean VARCHAR, hanja VARCHAR)"}, {"answer": "SELECT korean FROM table_name_89 WHERE city = \"pohang\"", "question": "What's the Korean word for Pohang?", "context": "CREATE TABLE table_name_89 (korean VARCHAR, city VARCHAR)"}, {"answer": "SELECT team_nickname FROM table_name_25 WHERE affiliation = \"private/catholic\" AND enrollment > 3 OFFSET 490", "question": "What's the team nickname of the private/catholic school whose enrollment is larger than 3,490?", "context": "CREATE TABLE table_name_25 (team_nickname VARCHAR, affiliation VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT SUM(enrollment) FROM table_name_62 WHERE location = \"buffalo, new york\" AND affiliation = \"public\" AND founded > 1846", "question": "What's the total enrollment of public schools located in Buffalo, New York that were founded after 1846?", "context": "CREATE TABLE table_name_62 (enrollment INTEGER, founded VARCHAR, location VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT SUM(season) FROM table_name_31 WHERE team_1 = \"bangkok university\" AND score = \"0-0\" AND team_2 = \"chunnam dragons\"", "question": "What year did Bangkok University and Chunnam Dragons have a score of 0-0?", "context": "CREATE TABLE table_name_31 (season INTEGER, team_2 VARCHAR, team_1 VARCHAR, score VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_23 WHERE name = \"christian nerlinger\"", "question": "What is the transfer window for Christian Nerlinger?", "context": "CREATE TABLE table_name_23 (transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE type = \"end of contract\" AND moving_to = \"falkirk\"", "question": "What is the name for the end of contract because they're moving to Falkirk?", "context": "CREATE TABLE table_name_63 (name VARCHAR, type VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT type FROM table_name_8 WHERE transfer_window = \"winter\" AND nat = \"ita\"", "question": "What type of transfer window is winter in Ita?", "context": "CREATE TABLE table_name_8 (type VARCHAR, transfer_window VARCHAR, nat VARCHAR)"}, {"answer": "SELECT nat FROM table_name_32 WHERE type = \"loan\" AND transfer_fee = \"loan\"", "question": "What is the type of loan and the transfer fee loan?", "context": "CREATE TABLE table_name_32 (nat VARCHAR, type VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT streak FROM table_name_30 WHERE date = \"november 14\"", "question": "On what date did a streak start on November 14?", "context": "CREATE TABLE table_name_30 (streak VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE game = 36", "question": "What was the score of game 36?", "context": "CREATE TABLE table_name_97 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT location FROM table_name_83 WHERE name = \"third bridge over panama canal\"", "question": "Where was the third bridge over panama canal?", "context": "CREATE TABLE table_name_83 (location VARCHAR, name VARCHAR)"}, {"answer": "SELECT comp FROM table_name_71 WHERE name = \"smith\"", "question": "Name the Comp which has a Name of smith?", "context": "CREATE TABLE table_name_71 (comp VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(comp) FROM table_name_94 WHERE yds_game < 209.5 AND name = \"brytus\" AND rating < 100", "question": "Name the sum of Comp which has a Yds/game smaller than 209.5,brytus Name, and a Rating smaller than 100?", "context": "CREATE TABLE table_name_94 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(comp) FROM table_name_19 WHERE yds_game > 0 AND name = \"bostick\" AND rating < 91.77", "question": "Name the highest Comp which has a Yds/game larger than 0, bostick, and a Rating smaller than 91.77?", "context": "CREATE TABLE table_name_19 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(score) FROM table_name_27 WHERE place = \"t5\" AND country = \"united states\" AND player = \"jeff maggert\"", "question": "Can you tell me the sum of Score that has the Place of t5, and the Country of united states, and the Player of jeff maggert?", "context": "CREATE TABLE table_name_27 (score INTEGER, player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT event FROM table_name_12 WHERE method = \"decision\"", "question": "Which event had a decision method?", "context": "CREATE TABLE table_name_12 (event VARCHAR, method VARCHAR)"}, {"answer": "SELECT location FROM table_name_34 WHERE method = \"tko\"", "question": "Where was the method of tko?", "context": "CREATE TABLE table_name_34 (location VARCHAR, method VARCHAR)"}, {"answer": "SELECT time FROM table_name_30 WHERE nation = \"kenya\" AND rank = \"2\"", "question": "What is the time of kenya, which is ranked 2?", "context": "CREATE TABLE table_name_30 (time VARCHAR, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT race FROM table_name_18 WHERE date = \"26 june 2011\"", "question": "What race is on 26 June 2011?", "context": "CREATE TABLE table_name_18 (race VARCHAR, date VARCHAR)"}, {"answer": "SELECT time FROM table_name_57 WHERE nation = \"kenya\" AND race = \"peachtree road race\"", "question": "What is the time of the peachtree road race in kenya?", "context": "CREATE TABLE table_name_57 (time VARCHAR, nation VARCHAR, race VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE team = \"chicago\"", "question": "What is the score of team chicago?", "context": "CREATE TABLE table_name_64 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_61 WHERE team = \"utah\"", "question": "What is the record of team utah?", "context": "CREATE TABLE table_name_61 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_29 WHERE game = 63", "question": "What is the location and attendance of game 63?", "context": "CREATE TABLE table_name_29 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_82 WHERE position = \"small forward\"", "question": "What is the nationality of the person who played small forward?", "context": "CREATE TABLE table_name_82 (nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_87 WHERE player = \"rich manning\"", "question": "What position did Rich Manning play?", "context": "CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_89 WHERE years_for_grizzlies = \"2007-2009\"", "question": "What position did the player who was with the grizzlies from 2007-2009 play?", "context": "CREATE TABLE table_name_89 (position VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT player FROM table_name_26 WHERE draft = 2008 AND pick > 5", "question": "Who is the player in the 2008 draft with a pick greater than 5?", "context": "CREATE TABLE table_name_26 (player VARCHAR, draft VARCHAR, pick VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_51 WHERE round > 1 AND draft < 2002 AND college_high_school_club = \"western kentucky\"", "question": "What is the total pick number of the player from a round greater than 1, a draft before 2002, and with the college/high school/club of western kentucky?", "context": "CREATE TABLE table_name_51 (pick VARCHAR, college_high_school_club VARCHAR, round VARCHAR, draft VARCHAR)"}, {"answer": "SELECT MIN(draft) FROM table_name_94 WHERE pick = 48", "question": "What is the lowest draft number with a 48 pick?", "context": "CREATE TABLE table_name_94 (draft INTEGER, pick VARCHAR)"}, {"answer": "SELECT name FROM table_name_70 WHERE aafc_team = \"los angeles dons\" AND position = \"fb\" AND college = \"oklahoma a&m\"", "question": "Which Name has a AAFC Team of los angeles dons, and a Position of fb, and a College of oklahoma a&m?", "context": "CREATE TABLE table_name_70 (name VARCHAR, college VARCHAR, aafc_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_78 WHERE college = \"tulsa\" AND pick > 61", "question": "Which Round has a College of tulsa, and a Pick larger than 61?", "context": "CREATE TABLE table_name_78 (round INTEGER, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_75 WHERE round < 5 AND pick = 5", "question": "Which Position has a Round smaller than 5, and a Pick of 5?", "context": "CREATE TABLE table_name_75 (position VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT college FROM table_name_93 WHERE name = \"hardy brown\"", "question": "Which College has a Name of hardy brown?", "context": "CREATE TABLE table_name_93 (college VARCHAR, name VARCHAR)"}, {"answer": "SELECT winner FROM table_name_9 WHERE team = \"peter jackson racing\" AND circuit = \"mallala motor sport park\"", "question": "Who was the winner for Peter Jackson Racing at Mallala Motor Sport Park?", "context": "CREATE TABLE table_name_9 (winner VARCHAR, team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_96 WHERE series = \"atcc round 1\"", "question": "What city had a series of atcc round 1?", "context": "CREATE TABLE table_name_96 (city___state VARCHAR, series VARCHAR)"}, {"answer": "SELECT winner FROM table_name_63 WHERE series = \"astc round 8\"", "question": "Who was the winner for ASTC round 8?", "context": "CREATE TABLE table_name_63 (winner VARCHAR, series VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ = \"swift current broncos (wchl)\"", "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 AVG(round) FROM table_name_63 WHERE college_junior_club_team__league_ = \"hamilton red wings (oha)\" AND position = \"rw\"", "question": "Which Round has a College/Junior/Club Team (League) of hamilton red wings (oha), and a Position of rw?", "context": "CREATE TABLE table_name_63 (round INTEGER, college_junior_club_team__league_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_11 WHERE position = \"lw\" AND college_junior_club_team__league_ = \"swift current broncos (wchl)\"", "question": "Which Round has a Position of lw, and a College/Junior/Club Team (League) of swift current broncos (wchl)?", "context": "CREATE TABLE table_name_11 (round INTEGER, position VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_55 WHERE round = 10", "question": "What is round 10's nationality?", "context": "CREATE TABLE table_name_55 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT driver FROM table_name_57 WHERE chassis = \"dallara f306\" AND rounds = \"8\"", "question": "Which driver was in 8 rounds with a chassis of dallara f306?", "context": "CREATE TABLE table_name_57 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_94 WHERE driver = \"nil montserrat\"", "question": "How many rounds did Nil Montserrat drive in?", "context": "CREATE TABLE table_name_94 (rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_34 WHERE chassis = \"dallara f308\" AND driver = \"germ\u00e1n s\u00e1nchez\"", "question": "How many rounds did germ\u00e1n s\u00e1nchez drive in where the chassis was dallara f308?", "context": "CREATE TABLE table_name_34 (rounds VARCHAR, chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_34 WHERE team = \"rp motorsport\" AND driver = \"augusto scalbi\"", "question": "What is the chassis for Augusto Scalbi on Team RP Motorsport?", "context": "CREATE TABLE table_name_34 (chassis VARCHAR, team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_65 WHERE result = \"w 24-17\"", "question": "In what Week was the Result W 24-17?", "context": "CREATE TABLE table_name_65 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_54 WHERE date = \"november 20, 1977\"", "question": "What was the Week number on November 20, 1977?", "context": "CREATE TABLE table_name_54 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_45 WHERE score = \"2:1\"", "question": "Who played hte home team when the score was 2:1?", "context": "CREATE TABLE table_name_45 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_4 WHERE attendance > 1189 AND away = \"real juventud\"", "question": "Who was the home team when real juventud was the away team when there were more than 1189 in attendance?", "context": "CREATE TABLE table_name_4 (home VARCHAR, attendance VARCHAR, away VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_6 WHERE away = \"marathon\"", "question": "What was the average attendance when marathon was the away team?", "context": "CREATE TABLE table_name_6 (attendance INTEGER, away VARCHAR)"}, {"answer": "SELECT home FROM table_name_90 WHERE score = \"0:1\"", "question": "Who was the home team when the score was 0:1?", "context": "CREATE TABLE table_name_90 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT company FROM table_name_86 WHERE assets__billion_$_ < 235.45 AND sales__billion_$_ > 159.29 AND industry = \"oil and gas\" AND profits__billion_$_ = 19.28", "question": "Which company in the oil and gas industry has assets (billion $) under 235.45, sales (billion $) larger than 159.29 and brings in profits (billion $) of 19.28?", "context": "CREATE TABLE table_name_86 (company VARCHAR, profits__billion_$_ VARCHAR, industry VARCHAR, assets__billion_$_ VARCHAR, sales__billion_$_ VARCHAR)"}, {"answer": "SELECT SUM(profits__billion_) AS $_ FROM table_name_54 WHERE headquarters = \"usa\" AND industry = \"banking\" AND sales__billion_$_ < 98.64", "question": "How many profits is the company that is headquartered in the USA, in the banking industry, and has sales (billion $) less than 98.64 bringing in?", "context": "CREATE TABLE table_name_54 (profits__billion_ INTEGER, sales__billion_$_ VARCHAR, headquarters VARCHAR, industry VARCHAR)"}, {"answer": "SELECT test FROM table_name_86 WHERE number_of_students = \"49,608\"", "question": "What test had 49,608 students?", "context": "CREATE TABLE table_name_86 (test VARCHAR, number_of_students VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_20 WHERE home_team = \"ramsgate\"", "question": "What was the Tie no when the Home team was Ramsgate?", "context": "CREATE TABLE table_name_20 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_50 WHERE home_team = \"carshalton athletic\"", "question": "What was the Tie no when the Home team was carshalton athletic?", "context": "CREATE TABLE table_name_50 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_30 WHERE home_team = \"ramsgate\"", "question": "Who was the away team when the home team was Ramsgate?", "context": "CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_31 WHERE tie_no = \"60\"", "question": "What was the home team when the Tie no was 60?", "context": "CREATE TABLE table_name_31 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_34 WHERE home_team = \"wealdstone\"", "question": "What was the Tie no when the Home team was wealdstone?", "context": "CREATE TABLE table_name_34 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT format FROM table_name_11 WHERE date = \"january 21, 2002\"", "question": "Which format has january 21, 2002 as the date?", "context": "CREATE TABLE table_name_11 (format VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_72 WHERE region = \"france\" AND label = \"universal licensing music (ulm)\"", "question": "What format has France as the region, with Universal Licensing Music (ulm) as the label?", "context": "CREATE TABLE table_name_72 (format VARCHAR, region VARCHAR, label VARCHAR)"}, {"answer": "SELECT label FROM table_name_83 WHERE region = \"netherlands\" AND catalog = \"magik muzik 802-1\"", "question": "What label has the netherlands as the region, and magik muzik 802-1 as the catalog?", "context": "CREATE TABLE table_name_83 (label VARCHAR, region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT record FROM table_name_71 WHERE time = \"3:00\"", "question": "What is the record at 3:00?", "context": "CREATE TABLE table_name_71 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_12 WHERE method = \"ko\" AND record = \"6-0\"", "question": "What opponent used the Ko method, and a 6-0 record?", "context": "CREATE TABLE table_name_12 (opponent VARCHAR, method VARCHAR, record VARCHAR)"}, {"answer": "SELECT ground FROM table_name_88 WHERE home_team = \"adelaide\"", "question": "What is the ground of the game where the home team was Adelaide?", "context": "CREATE TABLE table_name_88 (ground VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_25 WHERE quantity_made = \"2\" AND year_made = \"1884\"", "question": "What is Manufacturer, when Quantity Made is 2, and when Year Made is 1884?", "context": "CREATE TABLE table_name_25 (manufacturer VARCHAR, quantity_made VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_3 WHERE manufacturer = \"baldwin\"", "question": "What is Quantity Made, when Manufacturer is \"Baldwin\"?", "context": "CREATE TABLE table_name_3 (quantity_made VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT wheel_arrangement FROM table_name_52 WHERE manufacturer = \"baldwin\" AND quantity_made = \"12\"", "question": "What is Wheel Arrangement, when Manufacturer is \"Baldwin\", and when Quantity Made is 12?", "context": "CREATE TABLE table_name_52 (wheel_arrangement VARCHAR, manufacturer VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_65 WHERE year_made = \"4-4-0 \u2014 oooo \u2014 american\"", "question": "What is Quantity Made, when Year Made is \"4-4-0 \u2014 oooo \u2014 american\"?", "context": "CREATE TABLE table_name_65 (quantity_made VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT wheel_arrangement FROM table_name_8 WHERE quantity_made = \"44\"", "question": "What is Wheel Arrangement, when Quantity Made is 44?", "context": "CREATE TABLE table_name_8 (wheel_arrangement VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_23 WHERE quantity_preserved = \"4-4-0 \u2014 oooo \u2014 american\"", "question": "What is Quantitiy Made, when Quantity Preserved is \"4-4-0 \u2014 oooo \u2014 american\"?", "context": "CREATE TABLE table_name_23 (quantity_made VARCHAR, quantity_preserved VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_10 WHERE record = \"2-1\"", "question": "What's the highest game found when the record is 2-1?", "context": "CREATE TABLE table_name_10 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE opponent = \"houston\"", "question": "What was the game date when the opponent was Houston?", "context": "CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_8 WHERE home_team = \"chonburi\" AND away_team = \"melbourne victory\"", "question": "Can you tell me the highest Season that has the Home Team of chonburi, and the Away Team of melbourne victory?", "context": "CREATE TABLE table_name_8 (season INTEGER, home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT season FROM table_name_34 WHERE score = \"1-0\"", "question": "Can you tell me the Season that has the Score of 1-0?", "context": "CREATE TABLE table_name_34 (season VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN AS $50___1_2_oz FROM table_name_59 WHERE year = 1997 AND $25___1_4_oz > 27 OFFSET 100", "question": "WHAT IS THE LOWEST $50-1/2 OZ COIN WITH A 1997 YEAR AND $25-1/4 OZ LARGER THAN $27,100?", "context": "CREATE TABLE table_name_59 (MIN VARCHAR, year VARCHAR, $25___1_4_oz VARCHAR)"}, {"answer": "SELECT MIN AS $25___1_4_oz FROM table_name_57 WHERE $10___1_10_oz = \"70,250\"", "question": "WHAT IS THE LOWEST $25-1/4 OZ COIN WITH A $10-1/10 OZ OF $70,250?", "context": "CREATE TABLE table_name_57 (MIN VARCHAR, $10___1_10_oz VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_98 WHERE gpu_frequency = \"320 mhz\"", "question": "What is the model number for the GPU and 320 mhz?", "context": "CREATE TABLE table_name_98 (model_number VARCHAR, gpu_frequency VARCHAR)"}, {"answer": "SELECT socket FROM table_name_55 WHERE model_number = \"atom e680t\"", "question": "What is the socket of the model atom e680t?", "context": "CREATE TABLE table_name_55 (socket VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT memory FROM table_name_78 WHERE part_number_s_ = \"ct80618005844ab\"", "question": "What is the memory for ct80618005844ab?", "context": "CREATE TABLE table_name_78 (memory VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT MAX(average_cards_a_game) FROM table_name_78 WHERE season = \"1997/1998\" AND games > 38", "question": "Which Average Cards a game has a Season of 1997/1998, and a Games larger than 38?", "context": "CREATE TABLE table_name_78 (average_cards_a_game INTEGER, season VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(red_cards) FROM table_name_55 WHERE season = \"1998/1999\" AND games > 41", "question": "Which Red Cards has a Season of 1998/1999, and a Games larger than 41?", "context": "CREATE TABLE table_name_55 (red_cards INTEGER, season VARCHAR, games VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_65 WHERE season = \"2003/2004\" AND red_cards < 5", "question": "Which Games has a Season of 2003/2004, and a Red Cards smaller than 5?", "context": "CREATE TABLE table_name_65 (games INTEGER, season VARCHAR, red_cards VARCHAR)"}, {"answer": "SELECT MIN(average_cards_a_game) FROM table_name_22 WHERE season = \"2004/2005\" AND red_cards > 3", "question": "Which Average Cards a game has a Season of 2004/2005, and a Red Cards larger than 3?", "context": "CREATE TABLE table_name_22 (average_cards_a_game INTEGER, season VARCHAR, red_cards VARCHAR)"}, {"answer": "SELECT AVG(yellow_cards) FROM table_name_75 WHERE season = \"1999/2000\"", "question": "Which Yellow Cards has a Season of 1999/2000?", "context": "CREATE TABLE table_name_75 (yellow_cards INTEGER, season VARCHAR)"}, {"answer": "SELECT goals FROM table_name_14 WHERE ends = \"30 june 2010\" AND since > 2007", "question": "Which Goals have Ends of 30 june 2010, and Since larger than 2007?", "context": "CREATE TABLE table_name_14 (goals VARCHAR, ends VARCHAR, since VARCHAR)"}, {"answer": "SELECT name FROM table_name_2 WHERE ends = \"30 june 2010\" AND nat = \"eng\" AND since > 2007", "question": "Which Name has Ends of 30 june 2010, and a Nation of eng, and Since larger than 2007?", "context": "CREATE TABLE table_name_2 (name VARCHAR, since VARCHAR, ends VARCHAR, nat VARCHAR)"}, {"answer": "SELECT MIN(react) FROM table_name_94 WHERE name = \"bryan clay\"", "question": "What was Bryan Clay's react time?", "context": "CREATE TABLE table_name_94 (react INTEGER, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_92 WHERE name = \"dmitriy karpov\"", "question": "What country did Dmitriy Karpov represent?", "context": "CREATE TABLE table_name_92 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT plural FROM table_name_33 WHERE singular = \"tor (your)\"", "question": "What is Plural, when Singular is tor (your)?", "context": "CREATE TABLE table_name_33 (plural VARCHAR, singular VARCHAR)"}, {"answer": "SELECT proximity FROM table_name_2 WHERE honor = \"p\" AND singular = \"\u1ebdr (his/her/its)\"", "question": "What is Proximity, when Honor is P, and when Singular is \u1ebdr (his/her/its)?", "context": "CREATE TABLE table_name_2 (proximity VARCHAR, honor VARCHAR, singular VARCHAR)"}, {"answer": "SELECT MIN(subject) FROM table_name_58 WHERE plural = \"t\u00e3der (their)\"", "question": "What is the lowest Subject, when Plural is t\u00e3der (their)?", "context": "CREATE TABLE table_name_58 (subject INTEGER, plural VARCHAR)"}, {"answer": "SELECT proximity FROM table_name_67 WHERE plural = \"amader (our)\"", "question": "What is Proximity, when Plural is amader (our)?", "context": "CREATE TABLE table_name_67 (proximity VARCHAR, plural VARCHAR)"}, {"answer": "SELECT honor FROM table_name_97 WHERE singular = \"\u1ebdr (his/her/its)\"", "question": "What is Honor, when Singular is \u1ebdr (his/her/its)?", "context": "CREATE TABLE table_name_97 (honor VARCHAR, singular VARCHAR)"}, {"answer": "SELECT f_laps FROM table_name_16 WHERE season = \"2011\" AND races = \"18\"", "question": "what is the f/laps when the season is 2011 and races is 18?", "context": "CREATE TABLE table_name_16 (f_laps VARCHAR, season VARCHAR, races VARCHAR)"}, {"answer": "SELECT wins FROM table_name_20 WHERE f_laps = \"test driver\" AND team = \"lotus racing\"", "question": "what is the wins when the f/laps is test driver and team is lotus racing?", "context": "CREATE TABLE table_name_20 (wins VARCHAR, f_laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT poles FROM table_name_86 WHERE wins = \"0\" AND points = \"0\"", "question": "what is the poles when the wins is 0 and points is 0?", "context": "CREATE TABLE table_name_86 (poles VARCHAR, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE money___$__ = \"36,090\"", "question": "What score won $36,090?", "context": "CREATE TABLE table_name_65 (score VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE player = \"larry nelson\"", "question": "What was Larry Nelson's final score?", "context": "CREATE TABLE table_name_39 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_63 WHERE opponents = 38 AND falcons_points < 14", "question": "What is the average attendance of the game with 38 opponent and less than 14 Falcons points?", "context": "CREATE TABLE table_name_63 (attendance INTEGER, opponents VARCHAR, falcons_points VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_61 WHERE games < 14 AND wins < 3 AND conference = \"maac\" AND school = \"fairfield\"", "question": "What is the total number of losses of the team with games less than 14, wins less than 3, in the Maac Conference at Fairfield School?", "context": "CREATE TABLE table_name_61 (losses VARCHAR, school VARCHAR, conference VARCHAR, games VARCHAR, wins VARCHAR)"}, {"answer": "SELECT title FROM table_name_36 WHERE number = 4", "question": "What is number 4's title?", "context": "CREATE TABLE table_name_36 (title VARCHAR, number VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_name_52 WHERE born = \"1368\"", "question": "How many people were born in 1368?", "context": "CREATE TABLE table_name_52 (number VARCHAR, born VARCHAR)"}, {"answer": "SELECT mother FROM table_name_90 WHERE number = 12", "question": "Who was number 12's mother?", "context": "CREATE TABLE table_name_90 (mother VARCHAR, number VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_79 WHERE date = \"dec. 19\"", "question": "What was the week number when they played on Dec. 19?", "context": "CREATE TABLE table_name_79 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(founded) FROM table_name_70 WHERE location = \"east lansing, mi\"", "question": "What is the average number of students in East Lansing, MI?", "context": "CREATE TABLE table_name_70 (founded INTEGER, location VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_name_8 WHERE affiliation = \"community college\"", "question": "What is the lowest number of students at the community college?", "context": "CREATE TABLE table_name_8 (founded INTEGER, affiliation VARCHAR)"}, {"answer": "SELECT AVG(score) FROM table_name_70 WHERE champion = \"joanne carner\"", "question": "What is Joanne Carner's average score in Canadian Women's Open games that she has won?", "context": "CREATE TABLE table_name_70 (score INTEGER, champion VARCHAR)"}, {"answer": "SELECT country FROM table_name_73 WHERE champion = \"jocelyne bourassa\"", "question": "What country does jocelyne bourassa play for?", "context": "CREATE TABLE table_name_73 (country VARCHAR, champion VARCHAR)"}, {"answer": "SELECT performance FROM table_name_39 WHERE test_standard = \"bs en779\" AND particulate_size_approaching_100_percentage_retention = \">2\u00b5m\" AND class = \"f6\"", "question": "Which  Performance has a Test Standard of bs en779, and a Particulate size approaching 100% retention of >2\u00b5m, and a Class of f6?", "context": "CREATE TABLE table_name_39 (performance VARCHAR, class VARCHAR, test_standard VARCHAR, particulate_size_approaching_100_percentage_retention VARCHAR)"}, {"answer": "SELECT performance FROM table_name_38 WHERE usage = \"hepa\" AND class = \"h14\"", "question": "Which Performance has a Usage of hepa and a Class of h14?", "context": "CREATE TABLE table_name_38 (performance VARCHAR, usage VARCHAR, class VARCHAR)"}, {"answer": "SELECT particulate_size_approaching_100_percentage_retention FROM table_name_47 WHERE usage = \"semi hepa\" AND class = \"h12\"", "question": "Which Particulate size approaching 100% retention has a Usage of semi hepa and a Class of h12?", "context": "CREATE TABLE table_name_47 (particulate_size_approaching_100_percentage_retention VARCHAR, usage VARCHAR, class VARCHAR)"}, {"answer": "SELECT test_standard FROM table_name_28 WHERE usage = \"secondary filters\" AND class = \"f5\"", "question": "Which Test Standard has a Usage of secondary filters, and a Class of f5? Question 4", "context": "CREATE TABLE table_name_28 (test_standard VARCHAR, usage VARCHAR, class VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE to_par = \"\u20131\" AND player = \"mick soli\"", "question": "Which Score has a To par of \u20131, and a Player of mick soli?", "context": "CREATE TABLE table_name_7 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(score) FROM table_name_35 WHERE place = \"t1\" AND player = \"hubert green\"", "question": "Which Score has a Place of t1, and a Player of hubert green?", "context": "CREATE TABLE table_name_35 (score INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_92 WHERE score = 69 AND player = \"mick soli\"", "question": "Which Country has a Score of 69, and a Player of mick soli?", "context": "CREATE TABLE table_name_92 (country VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_38 WHERE place = \"t1\"", "question": "Which Country has a Place of t1?", "context": "CREATE TABLE table_name_38 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_88 WHERE transfer_window = \"summer\" AND source = \"kerkida.net\"", "question": "Where is the moving from location with a transfer window of summer and the source kerkida.net?", "context": "CREATE TABLE table_name_88 (moving_from VARCHAR, transfer_window VARCHAR, source VARCHAR)"}, {"answer": "SELECT name FROM table_name_94 WHERE source = \"apoelfc.com.cy\" AND type = \"transfer\"", "question": "Which name has the source apoelfc.com.cy and a type of transfer?", "context": "CREATE TABLE table_name_94 (name VARCHAR, source VARCHAR, type VARCHAR)"}, {"answer": "SELECT fate FROM table_name_48 WHERE name = \"san pablo\"", "question": "What is the Fate of the San Pablo ship?", "context": "CREATE TABLE table_name_48 (fate VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE name = \"circe shell\"", "question": "What is the date of attack of the Circe Shell Ship?", "context": "CREATE TABLE table_name_55 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT fuel_system FROM table_name_95 WHERE years = \"1960-62\"", "question": "What fuel system was used in 1960-62?", "context": "CREATE TABLE table_name_95 (fuel_system VARCHAR, years VARCHAR)"}, {"answer": "SELECT power FROM table_name_22 WHERE model = \"1500\" AND displacement = \"1490cc\"", "question": "How much power does the 1500 model have with a displacement of 1490cc?", "context": "CREATE TABLE table_name_22 (power VARCHAR, model VARCHAR, displacement VARCHAR)"}, {"answer": "SELECT years FROM table_name_44 WHERE displacement = \"1816cc\"", "question": "Which years have a displacement of 1816cc?", "context": "CREATE TABLE table_name_44 (years VARCHAR, displacement VARCHAR)"}, {"answer": "SELECT power FROM table_name_47 WHERE fuel_system = \"fuel injection\" AND displacement = \"1991cc\"", "question": "How much power does the fuel injection system have with a displacement of 1991cc?", "context": "CREATE TABLE table_name_47 (power VARCHAR, fuel_system VARCHAR, displacement VARCHAR)"}, {"answer": "SELECT fuel_system FROM table_name_68 WHERE displacement = \"1490cc\"", "question": "Which fuel system has a displacement of 1490cc?", "context": "CREATE TABLE table_name_68 (fuel_system VARCHAR, displacement VARCHAR)"}, {"answer": "SELECT fuel_system FROM table_name_71 WHERE displacement = \"1500cc\" AND model = \"berlina\"", "question": "Which fuel system has a displacement of 1500cc for the Berlina model?", "context": "CREATE TABLE table_name_71 (fuel_system VARCHAR, displacement VARCHAR, model VARCHAR)"}, {"answer": "SELECT MIN(industry) FROM table_name_96 WHERE year > 2005 AND agriculture > 11", "question": "What is the lowest Industry, when Year is greater than 2005, and when Agriculture is greater than 11?", "context": "CREATE TABLE table_name_96 (industry INTEGER, year VARCHAR, agriculture VARCHAR)"}, {"answer": "SELECT AVG(industry) FROM table_name_44 WHERE agriculture > 11", "question": "What is the average Industry, when Agriculture is greater than 11?", "context": "CREATE TABLE table_name_44 (industry INTEGER, agriculture INTEGER)"}, {"answer": "SELECT AVG(lost) FROM table_name_69 WHERE _percentage_pts > 110.25", "question": "When the points scored was over 110.25%, what's the average amount lost?", "context": "CREATE TABLE table_name_69 (lost INTEGER, _percentage_pts INTEGER)"}, {"answer": "SELECT MIN(lost) FROM table_name_27 WHERE _percentage_pts = 93.45", "question": "If the points scored were 93.45%, what's the lowest amount of games lost?", "context": "CREATE TABLE table_name_27 (lost INTEGER, _percentage_pts VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_14 WHERE director = \"kevin costner\"", "question": "What is the rank of the film directed by Kevin Costner?", "context": "CREATE TABLE table_name_14 (rank VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_96 WHERE gross = \"$200,512,643\"", "question": "What director grossed $200,512,643", "context": "CREATE TABLE table_name_96 (director VARCHAR, gross VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_26 WHERE studio = \"paramount\" AND gross = \"$200,512,643\"", "question": "What is the average rank of the movie from Paramount Studios that grossed $200,512,643?", "context": "CREATE TABLE table_name_26 (rank INTEGER, studio VARCHAR, gross VARCHAR)"}, {"answer": "SELECT director FROM table_name_81 WHERE title = \"teenage mutant ninja turtles\"", "question": "Who directed Teenage Mutant Ninja Turtles?", "context": "CREATE TABLE table_name_81 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT director FROM table_name_17 WHERE rank > 1 AND studio = \"universal\" AND gross = \"$201,957,688\"", "question": "What director ranked higher than 1 from Universal Studios and grossed $201,957,688?", "context": "CREATE TABLE table_name_17 (director VARCHAR, gross VARCHAR, rank VARCHAR, studio VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_94 WHERE manufacturer = \"kawasaki\" AND rider = \"garry mccoy\"", "question": "When the rider is Garry Mccoy and the manufacturer was Kawasaki, what was the time retired?", "context": "CREATE TABLE table_name_94 (time_retired VARCHAR, manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_73 WHERE rider = \"garry mccoy\"", "question": "What's the highest amount of laps Garry Mccoy drove?", "context": "CREATE TABLE table_name_73 (laps INTEGER, rider VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_79 WHERE grid > 10 AND manufacturer = \"proton kr\"", "question": "If the manufacturer is Proton Kr and the grid was over 10, what was the time retired?", "context": "CREATE TABLE table_name_79 (time_retired VARCHAR, grid VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT height FROM table_name_38 WHERE year = 1974", "question": "The year 1974 has what listed as the Height?", "context": "CREATE TABLE table_name_38 (height VARCHAR, year VARCHAR)"}, {"answer": "SELECT country FROM table_name_59 WHERE structure = \"omega transmitter chabrier\"", "question": "The OMEGA transmitter Chabrier has what country listed?", "context": "CREATE TABLE table_name_59 (country VARCHAR, structure VARCHAR)"}, {"answer": "SELECT structure FROM table_name_83 WHERE year < 2009 AND continent = \"africa\"", "question": "Listed with a continent of Africa and before 2009 this structure is called what?", "context": "CREATE TABLE table_name_83 (structure VARCHAR, year VARCHAR, continent VARCHAR)"}, {"answer": "SELECT height FROM table_name_40 WHERE year = 1972", "question": "The year 1972 has what written in Height column?", "context": "CREATE TABLE table_name_40 (height VARCHAR, year VARCHAR)"}, {"answer": "SELECT continent FROM table_name_30 WHERE country = \"united states\"", "question": "What is the Continent that also has the United States listed as a country?", "context": "CREATE TABLE table_name_30 (continent VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(ends_won) FROM table_name_4 WHERE ends_lost = 47 AND shot__percentage < 73", "question": "What is the highest number of ends won of 47 Ends Lost and a Shot % less than 73?", "context": "CREATE TABLE table_name_4 (ends_won INTEGER, ends_lost VARCHAR, shot__percentage VARCHAR)"}, {"answer": "SELECT poll FROM table_name_71 WHERE april_14 = \"13\"", "question": "What Poll was on April 14 of 13?", "context": "CREATE TABLE table_name_71 (poll VARCHAR, april_14 VARCHAR)"}, {"answer": "SELECT mar_17 FROM table_name_96 WHERE april_21 = \"10\"", "question": "What is the rank for Mar 17 when the April 21 rank is 10?", "context": "CREATE TABLE table_name_96 (mar_17 VARCHAR, april_21 VARCHAR)"}, {"answer": "SELECT mar_24 FROM table_name_93 WHERE may_26 = \"13\" AND may_12 = \"6\"", "question": "What is the Mar 24 rank when the May 26 is 13, and the May 12 is 6?", "context": "CREATE TABLE table_name_93 (mar_24 VARCHAR, may_26 VARCHAR, may_12 VARCHAR)"}, {"answer": "SELECT april_28 FROM table_name_92 WHERE mar_24 = \"17\"", "question": "What is the April 28 rank when the Mar 24 is 17?", "context": "CREATE TABLE table_name_92 (april_28 VARCHAR, mar_24 VARCHAR)"}, {"answer": "SELECT april_14 FROM table_name_78 WHERE mar_3 = \"nr\" AND april_21 = \"13\"", "question": "What is the April 14 rank when the Mar 3rd is nr, and the April 21 is 13?", "context": "CREATE TABLE table_name_78 (april_14 VARCHAR, mar_3 VARCHAR, april_21 VARCHAR)"}, {"answer": "SELECT april_28 FROM table_name_91 WHERE final = \"20\" AND mar_17 = \"22\"", "question": "What is the April 28th rank when the Final is 20, and Mar 17 is 22?", "context": "CREATE TABLE table_name_91 (april_28 VARCHAR, final VARCHAR, mar_17 VARCHAR)"}, {"answer": "SELECT COUNT(podiums) FROM table_name_31 WHERE position = \"2nd\" AND wins < 6 AND poles > 0", "question": "What is the total number of Podiums, when Position is \"2nd\", when Wins is less than 6, and when Poles is greater than 0?", "context": "CREATE TABLE table_name_31 (podiums VARCHAR, poles VARCHAR, position VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(poles) FROM table_name_64 WHERE season < 2004 AND podiums < 1", "question": "What is the sum of Poles, when Season is greater than 2004, and when Podiums is less than 1?", "context": "CREATE TABLE table_name_64 (poles INTEGER, season VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT AVG(poles) FROM table_name_65 WHERE wins = 0 AND position = \"nc\" AND season < 2004", "question": "What is the average Poles, when Wins is 0, when Position is \"nc\", and when Season is before 2004?", "context": "CREATE TABLE table_name_65 (poles INTEGER, season VARCHAR, wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(poles) FROM table_name_1 WHERE season < 2005 AND position = \"2nd\" AND wins < 6", "question": "What is the sum of Poles, when Season is before 2005, when Position is \"2nd\", and when Wins is less than 6?", "context": "CREATE TABLE table_name_1 (poles INTEGER, wins VARCHAR, season VARCHAR, position VARCHAR)"}, {"answer": "SELECT 2012 AS _club FROM table_name_85 WHERE pos = \"cf\"", "question": "What is the 2012 club of the cf pos. player?", "context": "CREATE TABLE table_name_85 (pos VARCHAR)"}, {"answer": "SELECT years_in_the_acc FROM table_name_24 WHERE founded < 1885 AND location = \"college park, maryland\"", "question": "What are the years in the ACC of an institution that was founded before 1885 and is located in College Park, Maryland?", "context": "CREATE TABLE table_name_24 (years_in_the_acc VARCHAR, founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT partnering FROM table_name_29 WHERE tournament = \"lyon, france\"", "question": "Who was the partner for the tournament in Lyon, France?", "context": "CREATE TABLE table_name_29 (partnering VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_78 WHERE tournament = \"milan, italy\"", "question": "Who were the opponents for the event in Milan, Italy?", "context": "CREATE TABLE table_name_78 (opponent VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT record FROM table_name_55 WHERE date = \"december 1, 1968\"", "question": "What was the record on the date of december 1, 1968?", "context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_89 WHERE date = \"september 15, 1968\"", "question": "What was the record on the date of september 15, 1968?", "context": "CREATE TABLE table_name_89 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_27 WHERE date = \"november 10, 1968\"", "question": "What was the record on the date of november 10, 1968?", "context": "CREATE TABLE table_name_27 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_95 WHERE date = \"february 28\"", "question": "What was the first game played on February 28?", "context": "CREATE TABLE table_name_95 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(points_2) FROM table_name_98 WHERE goals_for > 52 AND team = \"altrincham\"", "question": "What is the sum of Altrincham's Points 2 when they had more than 52 Goals For?", "context": "CREATE TABLE table_name_98 (points_2 INTEGER, goals_for VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE team = \"@ detroit\"", "question": "What date was the team @ Detroit?", "context": "CREATE TABLE table_name_28 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE high_assists = \"maurice williams (7)\"", "question": "What was the score of the game when Maurice Williams (7) had the high assists?", "context": "CREATE TABLE table_name_8 (score VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT record FROM table_name_43 WHERE high_assists = \"lebron james (4)\"", "question": "What was the record of the game when Lebron James (4) had the high assists?", "context": "CREATE TABLE table_name_43 (record VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_58 WHERE team = \"@ new york\"", "question": "What is the total of the game that the team was @ new york?", "context": "CREATE TABLE table_name_58 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_40 WHERE player = \"joe taylor\"", "question": "Which round was Joe Taylor selected in?", "context": "CREATE TABLE table_name_40 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_6 WHERE pick > 145 AND college = \"wake forest\"", "question": "Which player went to Wake Forest and was selected with a pick after 145?", "context": "CREATE TABLE table_name_6 (player VARCHAR, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_84 WHERE round = 6", "question": "How many picks were from round 6?", "context": "CREATE TABLE table_name_84 (pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_34 WHERE college = \"toledo\" AND pick < 92", "question": "What is the largest round of a pick smaller than 92 from Toledo University?", "context": "CREATE TABLE table_name_34 (round INTEGER, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_35 WHERE player = \"dick walker\"", "question": "Which nationality is Dick Walker?", "context": "CREATE TABLE table_name_35 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_9 WHERE pick > 4 AND overall = 21", "question": "What college has a pick greater than 4 and an overall of 21?", "context": "CREATE TABLE table_name_9 (college VARCHAR, pick VARCHAR, overall VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_55 WHERE round = 3", "question": "What is the overall sum of round 3?", "context": "CREATE TABLE table_name_55 (overall INTEGER, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_81 WHERE round < 8 AND overall = 48", "question": "What is the position of the player with a round less than 8 and an overall of 48?", "context": "CREATE TABLE table_name_81 (position VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT position FROM table_name_47 WHERE overall < 100 AND college = \"north carolina\"", "question": "What is the position of the player from the college of North Carolina with an overall less than 100?", "context": "CREATE TABLE table_name_47 (position VARCHAR, overall VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_10 WHERE round = 17", "question": "What is the sum of the pick in round 17?", "context": "CREATE TABLE table_name_10 (pick INTEGER, round VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_7 WHERE team_2 = \"nov milenium\"", "question": "What was the 1st leg when team 2 was nov milenium?", "context": "CREATE TABLE table_name_7 (team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_25 WHERE team_1 = \"teteks\"", "question": "What was the 1st leg for a team 1 of Teteks?", "context": "CREATE TABLE table_name_25 (team_1 VARCHAR)"}, {"answer": "SELECT SUM(date_of_official_foundation_of_municipality) FROM table_name_65 WHERE province = \"kerm\u0101n\" AND 2006 = 167014 AND rank < 46", "question": "What is the sum of Date of Official Foundation of Municipality, when Province is \"Kerm\u0101n\", when 2006 us \"167014\", and when Rank is less than 46?", "context": "CREATE TABLE table_name_65 (date_of_official_foundation_of_municipality INTEGER, rank VARCHAR, province VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_87 WHERE date_of_official_foundation_of_municipality > 1926 AND province = \"sistan and baluchestan\" AND 2006 > 567449", "question": "What is the total number of Rank, when Date of Official Foundation of Municipality is after 1926, when Province is \"Sistan and Baluchestan\", and when 2006 is greater than 567449?", "context": "CREATE TABLE table_name_87 (rank VARCHAR, date_of_official_foundation_of_municipality VARCHAR, province VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_51 WHERE province = \"g\u012bl\u0101n\" AND date_of_official_foundation_of_municipality > 1922 AND 2006 > 557366", "question": "What is the sum of Rank, when Province is G\u012bl\u0101n, when Date of Official Foundation of Municipality is after 1922, and when 2006 is greater than 557366?", "context": "CREATE TABLE table_name_51 (rank INTEGER, province VARCHAR, date_of_official_foundation_of_municipality VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_16 WHERE date_of_official_foundation_of_municipality = 1952 AND 2006 < 189120", "question": "What is the highest Rank, when Date of Official Foundation of Municipality is \"1952\", and when 2006 is less than 189120?", "context": "CREATE TABLE table_name_16 (rank INTEGER, date_of_official_foundation_of_municipality VARCHAR)"}, {"answer": "SELECT province FROM table_name_46 WHERE 2006 < 153748 AND date_of_official_foundation_of_municipality > 1958 AND city = \"pakdasht\"", "question": "What is Province, when 2006 is less than 153748, when Date of Official Foundation of Municipality is after 1958, and when City is \"Pakdasht\"?", "context": "CREATE TABLE table_name_46 (province VARCHAR, city VARCHAR, date_of_official_foundation_of_municipality VARCHAR)"}, {"answer": "SELECT place FROM table_name_3 WHERE score = 68 - 70 - 68 = 206", "question": "what is the place when the score is 68-70-68=206?", "context": "CREATE TABLE table_name_3 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_47 WHERE score = 71 - 65 - 69 = 205", "question": "what is the country when the score is 71-65-69=205?", "context": "CREATE TABLE table_name_47 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_79 WHERE score = 72 - 68 - 67 = 207", "question": "what is the country when the score is 72-68-67=207?", "context": "CREATE TABLE table_name_79 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_75 WHERE score = 68 - 72 - 67 = 207", "question": "what is the country when the score is 68-72-67=207?", "context": "CREATE TABLE table_name_75 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_51 WHERE place = \"t5\" AND score = 69 - 66 - 71 = 206", "question": "who is the player when the place is t5 and the score is 69-66-71=206?", "context": "CREATE TABLE table_name_51 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_13 WHERE class = \"v8\" AND entrant = \"diet-coke racing\"", "question": "What was the highest amount of laps when the class was v8 and the entrant was diet-coke racing?", "context": "CREATE TABLE table_name_13 (laps INTEGER, class VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT ties FROM table_name_38 WHERE wins = \"0\"", "question": "What is the tie with a win of 0?", "context": "CREATE TABLE table_name_38 (ties VARCHAR, wins VARCHAR)"}, {"answer": "SELECT final_position FROM table_name_87 WHERE ties = \"0\" AND wins = \"5\"", "question": "What is the final position with ties of 0, and wins of 5?", "context": "CREATE TABLE table_name_87 (final_position VARCHAR, ties VARCHAR, wins VARCHAR)"}, {"answer": "SELECT ties FROM table_name_8 WHERE division = \"bafl division two south\"", "question": "What are the ties for division of bafl division two south?", "context": "CREATE TABLE table_name_8 (ties VARCHAR, division VARCHAR)"}, {"answer": "SELECT final_position FROM table_name_76 WHERE season = \"2008\"", "question": "What is the final position for the season 2008?", "context": "CREATE TABLE table_name_76 (final_position VARCHAR, season VARCHAR)"}, {"answer": "SELECT final_position FROM table_name_70 WHERE season = \"2012\"", "question": "What is the final position for the season 2012?", "context": "CREATE TABLE table_name_70 (final_position VARCHAR, season VARCHAR)"}, {"answer": "SELECT division FROM table_name_76 WHERE wins = \"2\"", "question": "What is the division with wins of 2?", "context": "CREATE TABLE table_name_76 (division VARCHAR, wins VARCHAR)"}, {"answer": "SELECT location FROM table_name_46 WHERE stadium = \"hietalahti stadium\"", "question": "What is the Location of the Hietalahti Stadium?", "context": "CREATE TABLE table_name_46 (location VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT location FROM table_name_5 WHERE manager = \"job dragtsma\"", "question": "What is the Location of the Stadium where Job Dragtsma is Manager?", "context": "CREATE TABLE table_name_5 (location VARCHAR, manager VARCHAR)"}, {"answer": "SELECT react FROM table_name_98 WHERE lane = 3 AND heat = 2", "question": "what is the react when the lane is 3 and heat is 2?", "context": "CREATE TABLE table_name_98 (react VARCHAR, lane VARCHAR, heat VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_48 WHERE name = \"johan wissman\" AND react < 0.242", "question": "what is the highest lane number for johan wissman when the react is less than 0.242?", "context": "CREATE TABLE table_name_48 (lane INTEGER, name VARCHAR, react VARCHAR)"}, {"answer": "SELECT MAX(heat) FROM table_name_91 WHERE country = \"united kingdom\" AND react < 0.232", "question": "what is the heat when the country is united kingdom and react is less than 0.232?", "context": "CREATE TABLE table_name_91 (heat INTEGER, country VARCHAR, react VARCHAR)"}, {"answer": "SELECT SUM(react) FROM table_name_65 WHERE country = \"sweden\" AND lane > 6", "question": "what is the react when the country is sweden and the lane is higher than 6?", "context": "CREATE TABLE table_name_65 (react INTEGER, country VARCHAR, lane VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_52 WHERE competition = \"uefa champions league\" AND club = \"skonto riga\"", "question": "What is the 1st leg of the UEFA Champions League Compeition in the Skonto Riga Club?", "context": "CREATE TABLE table_name_52 (competition VARCHAR, club VARCHAR)"}, {"answer": "SELECT season FROM table_name_43 WHERE club = \"renova\"", "question": "Which season has the Renova Club?", "context": "CREATE TABLE table_name_43 (season VARCHAR, club VARCHAR)"}, {"answer": "SELECT season FROM table_name_50 WHERE club = \"werder bremen\" AND round = \"2r\"", "question": "Which season has the Werder Bremen Club and is in Round 2r?", "context": "CREATE TABLE table_name_50 (season VARCHAR, club VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_39 WHERE competition = \"uefa cup\" AND club = \"kolkheti-1913 poti\"", "question": "Which round is the UEFA Cup Compeition and the Kolkheti-1913 Poti Cub?", "context": "CREATE TABLE table_name_39 (round VARCHAR, competition VARCHAR, club VARCHAR)"}, {"answer": "SELECT pal_b, g, h FROM table_name_60 WHERE pal_i = \"4.43361875mhz\"", "question": "What is the PAL B, G, H for the PAL I 4.43361875mhz?", "context": "CREATE TABLE table_name_60 (pal_b VARCHAR, g VARCHAR, h VARCHAR, pal_i VARCHAR)"}, {"answer": "SELECT pal_m FROM table_name_55 WHERE pal_i = \"50hz\"", "question": "Which PAL M has a PAL I of 50HZ?", "context": "CREATE TABLE table_name_55 (pal_m VARCHAR, pal_i VARCHAR)"}, {"answer": "SELECT ntsc_m FROM table_name_23 WHERE pal_m = \"525/60\"", "question": "What is the NTSC M for Pal M 525/60?", "context": "CREATE TABLE table_name_23 (ntsc_m VARCHAR, pal_m VARCHAR)"}, {"answer": "SELECT pal_m FROM table_name_54 WHERE ntsc_m = \"4.5mhz\"", "question": "What is the PAL M for the NTSC M 4.5mhz?", "context": "CREATE TABLE table_name_54 (pal_m VARCHAR, ntsc_m VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_4 WHERE rank < 19", "question": "What is the sum of Year, when Rank is less than 19?", "context": "CREATE TABLE table_name_4 (year INTEGER, rank INTEGER)"}, {"answer": "SELECT SUM(year) FROM table_name_65 WHERE publication = \"vh1\" AND rank > 11", "question": "What is the sum of Year, when Publication is \"VH1\", and when Rank is greater than 11?", "context": "CREATE TABLE table_name_65 (year INTEGER, publication VARCHAR, rank VARCHAR)"}, {"answer": "SELECT accolade FROM table_name_76 WHERE year < 2002 AND publication = \"rolling stone\" AND rank = 48", "question": "What is Accolade, when Year is less than 2002, when Publication is \"Rolling Stone\", and when Rank is \"48\"?", "context": "CREATE TABLE table_name_76 (accolade VARCHAR, rank VARCHAR, year VARCHAR, publication VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_28 WHERE rank > 85", "question": "What is the lowest Year, when Rank is greater than 85?", "context": "CREATE TABLE table_name_28 (year INTEGER, rank INTEGER)"}, {"answer": "SELECT accolade FROM table_name_8 WHERE country = \"united states\" AND year = 1999", "question": "What is Accolade, when Country is \"United States\", and when Year is \"1999\"?", "context": "CREATE TABLE table_name_8 (accolade VARCHAR, country VARCHAR, year VARCHAR)"}, {"answer": "SELECT pick FROM table_name_34 WHERE player = \"dexter bailey\"", "question": "What is Pick, when Player is \"Dexter Bailey\"?", "context": "CREATE TABLE table_name_34 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_91 WHERE nationality = \"united states\" AND pick = 125", "question": "What is the sum of Round, when Nationality is \"United States\", and when Pick is \"125\"?", "context": "CREATE TABLE table_name_91 (round INTEGER, nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT round FROM table_name_62 WHERE school_club_team = \"tennessee-chattanooga\"", "question": "What is Round, when School/Club Team is \"Tennessee-Chattanooga\"?", "context": "CREATE TABLE table_name_62 (round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_82 WHERE player = \"willie white\" AND round < 2", "question": "What is the average Pick, when Player is \"Willie White\",and when Round is less than 2?", "context": "CREATE TABLE table_name_82 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(prominence__ft_) FROM table_name_67 WHERE name_of_peak = \"kangchenjunga central\" AND prominence__m_ < 32", "question": "What is the total prominence in ft of the peak of kangchenjunga central, which has a prominence in m less than 32?", "context": "CREATE TABLE table_name_67 (prominence__ft_ VARCHAR, name_of_peak VARCHAR, prominence__m_ VARCHAR)"}, {"answer": "SELECT MAX(prominence__ft_) FROM table_name_18 WHERE prominence__m_ < 103", "question": "What is the highest prominence in ft of the peak with a prominence in m less than 103?", "context": "CREATE TABLE table_name_18 (prominence__ft_ INTEGER, prominence__m_ INTEGER)"}, {"answer": "SELECT result FROM table_name_53 WHERE attendance = \"78,793\"", "question": "What was the result when the attendance was 78,793?", "context": "CREATE TABLE table_name_53 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_79 WHERE result = \"bye\"", "question": "What was the attendance when the result was a bye?", "context": "CREATE TABLE table_name_79 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_77 WHERE week = 10", "question": "What was the attendance total for week 10?", "context": "CREATE TABLE table_name_77 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE week = 7", "question": "What's the game date for week 7?", "context": "CREATE TABLE table_name_32 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_9 WHERE pick = 7", "question": "WHAT IS THE ROUND WITH PICK OF 7?", "context": "CREATE TABLE table_name_9 (round INTEGER, pick VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_40 WHERE position = \"k\" AND overall < 181", "question": "WHAT IS THE PICK WITH K POSITION AND OVERALL SMALLER THAN 181?", "context": "CREATE TABLE table_name_40 (pick INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_55 WHERE college = \"michigan\" AND overall > 37", "question": "WHAT IS THE ROUND FROM MICHIGAN COLLEGE, AND OVERALL LARGER THAN 37?", "context": "CREATE TABLE table_name_55 (round INTEGER, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_56 WHERE position = \"cb\"", "question": "WHAT IS THE LOWEST ROUND FOR CB POSITION?", "context": "CREATE TABLE table_name_56 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT writer FROM table_name_91 WHERE original_airdate = \"september 4, 2005 (hbo)\"", "question": "Who's the Writer with an Original Airdate of september 4, 2005 (hbo)?", "context": "CREATE TABLE table_name_91 (writer VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT director FROM table_name_17 WHERE episode = 13", "question": "Which Director has an Episode of 13?", "context": "CREATE TABLE table_name_17 (director VARCHAR, episode VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_name_2 WHERE episode = 1", "question": "Which Original Airdate has an Episode of 1?", "context": "CREATE TABLE table_name_2 (original_airdate VARCHAR, episode VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE venue = \"a\" AND result = \"3\u20130\"", "question": "On what date was the venue A with a result of 3\u20130?", "context": "CREATE TABLE table_name_93 (date VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(bike_no) FROM table_name_77 WHERE position > 1 AND points > 369 AND equipment = \"zabel-wsp\"", "question": "What is the most noteworthy Bike No that has a Position bigger than 1, and a Points bigger than 369, and an Equipment of zabel-wsp?", "context": "CREATE TABLE table_name_77 (bike_no INTEGER, equipment VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_19 WHERE bike_no = 4", "question": "What is the aggregate number of Position that has a Bike No of 4?", "context": "CREATE TABLE table_name_19 (position VARCHAR, bike_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE result = \"l 14\u201324\"", "question": "When was the result l 14\u201324?", "context": "CREATE TABLE table_name_71 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_21 WHERE game_site = \"mile high stadium\" AND attendance > 75 OFFSET 007", "question": "What was the first week when there was an attendance over 75,007 at Mile High Stadium?", "context": "CREATE TABLE table_name_21 (week INTEGER, game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_74 WHERE tie_no = \"replay\" AND away_team = \"swindon town\"", "question": "Away team Swindon Town had a Tie no listing of Replay with what as an Attendance?", "context": "CREATE TABLE table_name_74 (attendance VARCHAR, tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_28 WHERE home_team = \"liverpool\"", "question": "Liverpool as a home team as listed what in the Tie no column?", "context": "CREATE TABLE table_name_28 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_41 WHERE away_team = \"grimsby town\"", "question": "What is the score for the away team of Grimsby Town?", "context": "CREATE TABLE table_name_41 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_88 WHERE round > 1 AND school_club_team = \"alcorn state\" AND position = \"defensive back\"", "question": "Which Pick has a Round larger than 1, a School/Club Team of alcorn state, and a Position of defensive back?", "context": "CREATE TABLE table_name_88 (pick INTEGER, position VARCHAR, round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_96 WHERE position = \"offensive guard\" AND player = \"reggie mckenzie\" AND round > 2", "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 school_club_team FROM table_name_97 WHERE round < 5 AND pick > 1 AND player = \"reggie mckenzie\"", "question": "Which School/Club Team has a Round smaller than 5, a Pick larger than 1, and a Player of reggie mckenzie?", "context": "CREATE TABLE table_name_97 (school_club_team VARCHAR, player VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_69 WHERE round < 2", "question": "Which Player has a Round smaller than 2?", "context": "CREATE TABLE table_name_69 (player VARCHAR, round INTEGER)"}, {"answer": "SELECT record FROM table_name_79 WHERE date = \"march 26\"", "question": "What was the record on march 26?", "context": "CREATE TABLE table_name_79 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_6 WHERE date = \"march 26\"", "question": "Who visited on march 26?", "context": "CREATE TABLE table_name_6 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_56 WHERE date = \"march 2\"", "question": "What were the lowest points on march 2?", "context": "CREATE TABLE table_name_56 (points INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_9 WHERE record = \"21\u201336\u20139\" AND attendance > 14 OFFSET 768", "question": "Which Points have a Record of 21\u201336\u20139, and an Attendance larger than 14,768?", "context": "CREATE TABLE table_name_9 (points INTEGER, record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT name FROM table_name_23 WHERE loss > 2 AND avg_g > -16 AND gp_gs = \"11\u20137\" AND gain > 86", "question": "which Name has a Loss larger than 2, and a Avg/G larger than -16, and a GP-GS of 11\u20137, and a Gain larger than 86?", "context": "CREATE TABLE table_name_23 (name VARCHAR, gain VARCHAR, gp_gs VARCHAR, loss VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT MAX(long) FROM table_name_88 WHERE avg_g < 8.4 AND gp_gs = \"4\u20130\"", "question": "Name the highest Long that has an Avg/G smaller than 8.4, and an GP-GS of 4\u20130?", "context": "CREATE TABLE table_name_88 (long INTEGER, avg_g VARCHAR, gp_gs VARCHAR)"}, {"answer": "SELECT MIN(gain) FROM table_name_95 WHERE long = 0 AND gp_gs = \"4\u20130\" AND loss < 3", "question": "Name the lowest Gain which has a Long of 0, and a GP-GS of 4\u20130, and a Loss smaller than 3?", "context": "CREATE TABLE table_name_95 (gain INTEGER, loss VARCHAR, long VARCHAR, gp_gs VARCHAR)"}, {"answer": "SELECT COUNT(loss) FROM table_name_37 WHERE avg_g = 8.4", "question": "Name the total of Loss which has an Avg/G of 8.4?", "context": "CREATE TABLE table_name_37 (loss VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT team FROM table_name_80 WHERE points = \"15\"", "question": "Which Team has Points of 15?", "context": "CREATE TABLE table_name_80 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT laps FROM table_name_99 WHERE points = \"lead changes: 13 between 8 drivers\"", "question": "Which Laps has a Points of lead changes: 13 between 8 drivers?", "context": "CREATE TABLE table_name_99 (laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT driver FROM table_name_45 WHERE grid = \"1\"", "question": "Which Driver has a Grid of 1?", "context": "CREATE TABLE table_name_45 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_89 WHERE series = \"british formula three\" AND season = \"2005\" AND poles < 0", "question": "WHAT IS THE HIGHEST WINS WITH A SERIES OF BRITISH FORMULA THREE, SEASON 2005, POLES SMALLER THAN 0?", "context": "CREATE TABLE table_name_89 (wins INTEGER, poles VARCHAR, series VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(races) FROM table_name_49 WHERE points = \"9\"", "question": "WHAT IS THE SUM OF RACES WITH 9 POINTS?", "context": "CREATE TABLE table_name_49 (races INTEGER, points VARCHAR)"}, {"answer": "SELECT AVG(poles) FROM table_name_71 WHERE points = \"n/a\"", "question": "WHAT IS THE AVERAGE POLES WITH POINTS N/A?", "context": "CREATE TABLE table_name_71 (poles INTEGER, points VARCHAR)"}, {"answer": "SELECT player FROM table_name_93 WHERE total < 293 AND country = \"south africa\"", "question": "Who is that player from South Africa who had a total score under 293?", "context": "CREATE TABLE table_name_93 (player VARCHAR, total VARCHAR, country VARCHAR)"}, {"answer": "SELECT best FROM table_name_5 WHERE qual_2 = \"1:47.042\"", "question": "What is the best when the qual 2 is 1:47.042?", "context": "CREATE TABLE table_name_5 (best VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT team FROM table_name_58 WHERE name = \"alex sperafico\"", "question": "What is the team when the name is alex sperafico?", "context": "CREATE TABLE table_name_58 (team VARCHAR, name VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_32 WHERE best = \"1:45.172\"", "question": "What is the qual 2 when the best is 1:45.172?", "context": "CREATE TABLE table_name_32 (qual_2 VARCHAR, best VARCHAR)"}, {"answer": "SELECT name FROM table_name_17 WHERE best = \"1:45.361\"", "question": "What is the name for the best of 1:45.361?", "context": "CREATE TABLE table_name_17 (name VARCHAR, best VARCHAR)"}, {"answer": "SELECT name FROM table_name_97 WHERE qual_2 = \"1:43.374\"", "question": "What name has a qual 2 of 1:43.374?", "context": "CREATE TABLE table_name_97 (name VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT name FROM table_name_33 WHERE qual_2 = \"1:46.025\"", "question": "What name has a qual 2 of 1:46.025?", "context": "CREATE TABLE table_name_33 (name VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT streak FROM table_name_81 WHERE date = \"march 27\"", "question": "What was the streak on March 27?", "context": "CREATE TABLE table_name_81 (streak VARCHAR, date VARCHAR)"}, {"answer": "SELECT streak FROM table_name_88 WHERE team_points > 113 AND game < 12 AND date = \"november 16\"", "question": "Which streak before game 12 had a team points larger than 113 on November 16?", "context": "CREATE TABLE table_name_88 (streak VARCHAR, date VARCHAR, team_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_40 WHERE gold = 8 AND silver < 4", "question": "Who scored the lowest with 8 gold medals and less than 4 silver medals?", "context": "CREATE TABLE table_name_40 (total INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT rank FROM table_name_13 WHERE silver = 3", "question": "What is the rank for the 3 silver medals?", "context": "CREATE TABLE table_name_13 (rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT young_classification FROM table_name_89 WHERE aggressive_rider = \"tim johnson\"", "question": "Which young classification has an aggressive rider of Tim Johnson?", "context": "CREATE TABLE table_name_89 (young_classification VARCHAR, aggressive_rider VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_36 WHERE name = \"rich dobbert\"", "question": "what was the overall pick number for rich dobbert?", "context": "CREATE TABLE table_name_36 (overall INTEGER, name VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_93 WHERE overall > 295 AND name = \"rich dobbert\" AND pick < 10", "question": "What is the sum of the rounds where the overall pick was more than 295 and the pick was smaller than 10 and the player was rich dobbert?", "context": "CREATE TABLE table_name_93 (round INTEGER, pick VARCHAR, overall VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_33 WHERE overall < 322 AND round > 3 AND name = \"eric norri\"", "question": "What position did eric norri play who was the overall pick less than 322 on a round larger than 3?", "context": "CREATE TABLE table_name_33 (position VARCHAR, name VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT report FROM table_name_54 WHERE home_team = \"townsville crocodiles\"", "question": "What was the report for the game with the home team of the Townsville Crocodiles?", "context": "CREATE TABLE table_name_54 (report VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_95 WHERE away_team = \"melbourne tigers\"", "question": "What was the venue that featured the Melbourne Tigers as the away team?", "context": "CREATE TABLE table_name_95 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT report FROM table_name_42 WHERE venue = \"hisense arena\"", "question": "What was the report for the game played at the Hisense Arena?", "context": "CREATE TABLE table_name_42 (report VARCHAR, venue VARCHAR)"}, {"answer": "SELECT goal_difference FROM table_name_56 WHERE points_1 = \"51\" AND goals_against < 66", "question": "When the Points 1 was 51 and the Goals Against was less than 66, what was the Goal Difference?", "context": "CREATE TABLE table_name_56 (goal_difference VARCHAR, points_1 VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_22 WHERE goals_for > 60 AND lost = 8 AND position < 1", "question": "What is the total of Played where the Goals For is higher than 60, the Lost is 8, and the Position is less than 1?", "context": "CREATE TABLE table_name_22 (played INTEGER, position VARCHAR, goals_for VARCHAR, lost VARCHAR)"}, {"answer": "SELECT goal_difference FROM table_name_61 WHERE position = 22", "question": "What was the Goal Difference for Postion 22?", "context": "CREATE TABLE table_name_61 (goal_difference VARCHAR, position VARCHAR)"}, {"answer": "SELECT lost FROM table_name_51 WHERE goals_for > 59 AND drawn < 15 AND team = \"hyde united\"", "question": "When Team Hyde United had more than 59 Goals For and fewer than 15 Drawn, what was the Lost?", "context": "CREATE TABLE table_name_51 (lost VARCHAR, team VARCHAR, goals_for VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_79 WHERE team = \"matlock town\" AND goals_against > 66", "question": "What is the average Lost for Team Matlock Town when the Goals Against is higher than 66?", "context": "CREATE TABLE table_name_79 (lost INTEGER, team VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_76 WHERE date = \"october 17\"", "question": "What was the attendance on October 17?", "context": "CREATE TABLE table_name_76 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_27 WHERE attendance > 57 OFFSET 347", "question": "Where was the attendance more than 57,347?", "context": "CREATE TABLE table_name_27 (location VARCHAR, attendance INTEGER)"}, {"answer": "SELECT MAX(game) FROM table_name_27 WHERE time = \"2:46\" AND attendance > 57 OFFSET 533", "question": "When was the last game that had a time of 2:46 and attendance of more than 57,533?", "context": "CREATE TABLE table_name_27 (game INTEGER, time VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT place FROM table_name_99 WHERE country = \"south africa\"", "question": "What place is South Africa?", "context": "CREATE TABLE table_name_99 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_44 WHERE name = \"shri. shambu nath khajuria\"", "question": "What was the average year when shri. shambu nath khajuria won the padma shri awards?", "context": "CREATE TABLE table_name_44 (year INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_76 WHERE name = \"prof. aditya naraian purohit\"", "question": "What is the total number of years that prof. aditya naraian purohit won?", "context": "CREATE TABLE table_name_76 (year VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_95 WHERE state = \"orissa\" AND name = \"prof. priyambada mohanty hejmadi\"", "question": "What is the sum of the years when the winner was prof. priyambada mohanty hejmadi from orissa?", "context": "CREATE TABLE table_name_95 (year INTEGER, state VARCHAR, name VARCHAR)"}, {"answer": "SELECT event FROM table_name_81 WHERE competition = \"world cross country championships\"", "question": "Which event was part of the World Cross Country championships?", "context": "CREATE TABLE table_name_81 (event VARCHAR, competition VARCHAR)"}, {"answer": "SELECT department FROM table_name_90 WHERE experience = \"6 years\"", "question": "What department as 6 years experience?", "context": "CREATE TABLE table_name_90 (department VARCHAR, experience VARCHAR)"}, {"answer": "SELECT designation FROM table_name_86 WHERE qualification = \"m.tech (e.c.e)\"", "question": "What is the designation for the m.tech (e.c.e) qualification?", "context": "CREATE TABLE table_name_86 (designation VARCHAR, qualification VARCHAR)"}, {"answer": "SELECT department FROM table_name_25 WHERE qualification = \"m.phil (physics)\"", "question": "What department has an m.phil (physics) qualification?", "context": "CREATE TABLE table_name_25 (department VARCHAR, qualification VARCHAR)"}, {"answer": "SELECT result_f___a FROM table_name_98 WHERE opponents = \"leeds united\"", "question": "hat is the Result F\u2013 A when they played against Leeds United?", "context": "CREATE TABLE table_name_98 (result_f___a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_14 WHERE record = \"61-16\"", "question": "How many games have 61-16 as the record?", "context": "CREATE TABLE table_name_14 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE score = \"104-113\"", "question": "What date has 104-113 as the score?", "context": "CREATE TABLE table_name_17 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE score = \"113-115 (ot)\"", "question": "What date has 113-115 (ot) as the score?", "context": "CREATE TABLE table_name_20 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_82 WHERE date = \"january 9\"", "question": "What is the mean game played on January 9?", "context": "CREATE TABLE table_name_82 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_31 WHERE record = \"1-2\"", "question": "Which game number includes a record of 1-2?", "context": "CREATE TABLE table_name_31 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE high_assists = \"joel przybilla (4)\"", "question": "For the game where Joel Przybilla (4) received high assists, what was the final score?", "context": "CREATE TABLE table_name_88 (score VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_69 WHERE record = \"2-4\"", "question": "For the game that had an end record of 2-4, who was the high points scorer?", "context": "CREATE TABLE table_name_69 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_20 WHERE opponent = \"new orleans saints\" AND game < 11", "question": "What is the attendance of the game against the New Orleans Saints before game 11?", "context": "CREATE TABLE table_name_20 (attendance INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE streak = \"lost 7\"", "question": "On what date was the streak at lost 7?", "context": "CREATE TABLE table_name_67 (date VARCHAR, streak VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE round = \"2r\"", "question": "What was the date for Round 2r?", "context": "CREATE TABLE table_name_5 (date VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE opponent = \"george khrikadze\"", "question": "What date did the opponent George Khrikadze play?", "context": "CREATE TABLE table_name_97 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_16 WHERE result = \"6-0, 6-1, 6-2\"", "question": "What round resulted in 6-0, 6-1, 6-2?", "context": "CREATE TABLE table_name_16 (round VARCHAR, result VARCHAR)"}, {"answer": "SELECT round FROM table_name_28 WHERE opponent = \"sergiy stakhovsky\"", "question": "What round was the opponent Sergiy Stakhovsky?", "context": "CREATE TABLE table_name_28 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_77 WHERE date = \"december 11\"", "question": "What is the record on December 11?", "context": "CREATE TABLE table_name_77 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE result = \"l 30-27\"", "question": "What date was the game that resulted in L 30-27?", "context": "CREATE TABLE table_name_34 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_64 WHERE result = \"l 23-20\"", "question": "What was the highest attendance of games that resulted in L 23-20?", "context": "CREATE TABLE table_name_64 (attendance INTEGER, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_45 WHERE opponent = \"manchester united\" AND venue = \"h\"", "question": "What was the result when the opponent was manchester united in venue h?", "context": "CREATE TABLE table_name_45 (result VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_34 WHERE country = \"peru\" AND total > 3", "question": "What rank was Peru with a total greater than 3?", "context": "CREATE TABLE table_name_34 (rank INTEGER, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT result FROM table_name_37 WHERE competition = \"2010 fifa world cup qualification\" AND date = \"10 september 2008\"", "question": "What is Result, when Competition is 2010 FIFA World Cup Qualification, and when Date is 10 September 2008?", "context": "CREATE TABLE table_name_37 (result VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_25 WHERE competition = \"2010 fifa world cup qualification\" AND result = \"won\" AND date = \"14 june 2008\"", "question": "What is Venue, when Competition is 2010 FIFA World Cup Qualification, when Result is Won, and when Date is 14 June 2008?", "context": "CREATE TABLE table_name_25 (venue VARCHAR, date VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_96 WHERE date = \"30 december 2005\"", "question": "What is Competition, when Date is 30 December 2005?", "context": "CREATE TABLE table_name_96 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_86 WHERE score < 71 AND country = \"zimbabwe\"", "question": "What is the Place when the score is less than 71, and Country is zimbabwe?", "context": "CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_77 WHERE country = \"canada\"", "question": "What is the lowest Score when the Country is canada?", "context": "CREATE TABLE table_name_77 (score INTEGER, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE player = \"toru taniguchi\"", "question": "What is the Score when the Player is toru taniguchi?", "context": "CREATE TABLE table_name_92 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_18 WHERE record = \"25-24-11\"", "question": "What is the Game number when the Rangers have a Record of 25-24-11?", "context": "CREATE TABLE table_name_18 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE march = 18", "question": "What is the Score of the game on March 18?", "context": "CREATE TABLE table_name_5 (score VARCHAR, march VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_34 WHERE team = \"rocketsports racing\" AND best = \"1:10.949\"", "question": "What is the qual 2 of team rocketsports racing, which has the best of 1:10.949?", "context": "CREATE TABLE table_name_34 (qual_2 VARCHAR, team VARCHAR, best VARCHAR)"}, {"answer": "SELECT team FROM table_name_87 WHERE best = \"1:10.998\"", "question": "Which team has a 1:10.998 best?", "context": "CREATE TABLE table_name_87 (team VARCHAR, best VARCHAR)"}, {"answer": "SELECT name FROM table_name_60 WHERE qual_2 = \"1:10.771\"", "question": "What is the name of the person with a 1:10.771 qual 2?", "context": "CREATE TABLE table_name_60 (name VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_65 WHERE best = \"1:10.949\"", "question": "What is the qual 2 with a 1:10.949 best?", "context": "CREATE TABLE table_name_65 (qual_2 VARCHAR, best VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_42 WHERE team = \"forsythe racing\" AND best = \"1:09.515\"", "question": "What is the qual 2 of team Forsythe racing, which has a 1:09.515 best?", "context": "CREATE TABLE table_name_42 (qual_2 VARCHAR, team VARCHAR, best VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_70 WHERE best = \"1:09.567\"", "question": "What is the qual 1 with a 1:09.567 best?", "context": "CREATE TABLE table_name_70 (qual_1 VARCHAR, best VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_15 WHERE equipment = \"zabel-wsp\" AND position > 7", "question": "What were highest points received from someone using a zabel-wsp with a position greater than 7?", "context": "CREATE TABLE table_name_15 (points INTEGER, equipment VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_88 WHERE week = 15", "question": "What's the lowest attendance recorded for week 15?", "context": "CREATE TABLE table_name_88 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE nominated_work = \"marlene\" AND award = \"olivier award\"", "question": "When Marlene was nominated for the Olivier Award, what was the result?", "context": "CREATE TABLE table_name_33 (result VARCHAR, nominated_work VARCHAR, award VARCHAR)"}, {"answer": "SELECT result FROM table_name_63 WHERE award = \"bafta tv award\"", "question": "What was the result for the Bafta Tv award?", "context": "CREATE TABLE table_name_63 (result VARCHAR, award VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_79 WHERE college = \"texas-san antonio\"", "question": "What is the pick of Texas-San Antonio?", "context": "CREATE TABLE table_name_79 (pick INTEGER, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_5 WHERE round > 2 AND pick > 83", "question": "Who is the player that has a round greater than 2 and a pick bigger than 83?", "context": "CREATE TABLE table_name_5 (player VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_10 WHERE college = \"louisiana tech\"", "question": "What's the nationality of Louisiana Tech?", "context": "CREATE TABLE table_name_10 (nationality VARCHAR, college VARCHAR)"}, {"answer": "SELECT pick FROM table_name_91 WHERE player = \"ray hall\"", "question": "What number pick is Ray Hall?", "context": "CREATE TABLE table_name_91 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_38 WHERE pick > 129", "question": "What nationality has a pick greater than 129?", "context": "CREATE TABLE table_name_38 (nationality VARCHAR, pick INTEGER)"}, {"answer": "SELECT MAX(grid) FROM table_name_64 WHERE rider = \"mika kallio\"", "question": "what is the grid when the rider is mika kallio?", "context": "CREATE TABLE table_name_64 (grid INTEGER, rider VARCHAR)"}, {"answer": "SELECT time FROM table_name_20 WHERE laps < 21 AND manufacturer = \"aprilia\" AND grid < 17 AND rider = \"thomas luthi\"", "question": "what is the time when laps is less than 21, manufacturer is aprilia, grid is less than 17 and the rider is thomas luthi?", "context": "CREATE TABLE table_name_20 (time VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT time FROM table_name_88 WHERE laps < 21 AND grid > 17", "question": "what is the time when the laps is less than 21 and the grid is more than 17?", "context": "CREATE TABLE table_name_88 (time VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT partnering FROM table_name_8 WHERE against = \"greece\"", "question": "Who was partnering when nueza silva played against greece?", "context": "CREATE TABLE table_name_8 (partnering VARCHAR, against VARCHAR)"}, {"answer": "SELECT round FROM table_name_31 WHERE against = \"greece\"", "question": "What was the round when nueza silva played against greece?", "context": "CREATE TABLE table_name_31 (round VARCHAR, against VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_15 WHERE edition = \"2006 fed cup europe/africa group ii\" AND against = \"greece\"", "question": "Who were the opponents during the 2006 fed cup europe/africa group ii against greece?", "context": "CREATE TABLE table_name_15 (opponents VARCHAR, edition VARCHAR, against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_4 WHERE points_for = \"207\"", "question": "What is the Tries against for the team that has 207 points for?", "context": "CREATE TABLE table_name_4 (tries_against VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT team FROM table_name_24 WHERE points_for = \"118\"", "question": "What team has a 118 Point for?", "context": "CREATE TABLE table_name_24 (team VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT team FROM table_name_61 WHERE points_against = \"102\"", "question": "What team has 102 Points against?", "context": "CREATE TABLE table_name_61 (team VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_44 WHERE tries_against = \"10\"", "question": "What is the Points for number of the team with a 10 Tries against number?", "context": "CREATE TABLE table_name_44 (points_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT team FROM table_name_83 WHERE points_diff = \"+119\"", "question": "What team has +119 Points diff?", "context": "CREATE TABLE table_name_83 (team VARCHAR, points_diff VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_73 WHERE year_made = \"1923\"", "question": "What manufacturer has a year made of 1923?", "context": "CREATE TABLE table_name_73 (manufacturer VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_7 WHERE manufacturer = \"4-6-2 \u2014 oooooo \u2014 pacific\"", "question": "What's the quantity made when the manufacturer was 4-6-2 \u2014 oooooo \u2014 pacific?", "context": "CREATE TABLE table_name_7 (quantity_made VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT year_made FROM table_name_44 WHERE wheel_arrangement = \"4-6-2\" AND quantity_made = \"11\"", "question": "What year had a quantity made of 11 and a wheel arrangement of 4-6-2?", "context": "CREATE TABLE table_name_44 (year_made VARCHAR, wheel_arrangement VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT quantity_preserved FROM table_name_57 WHERE fleet_number_s_ = \"700\"", "question": "What's the quantity preserved when the fleet number was 700?", "context": "CREATE TABLE table_name_57 (quantity_preserved VARCHAR, fleet_number_s_ VARCHAR)"}, {"answer": "SELECT race FROM table_name_96 WHERE nation = \"kenya\" AND time = \"30:27\"", "question": "What is the name of the race in Kenya with a time of 30:27?", "context": "CREATE TABLE table_name_96 (race VARCHAR, nation VARCHAR, time VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_9 WHERE time = \"30:48\"", "question": "What is the name of the athlete with a time of 30:48?", "context": "CREATE TABLE table_name_9 (athlete VARCHAR, time VARCHAR)"}, {"answer": "SELECT race FROM table_name_17 WHERE athlete = \"lineth chepkurui\"", "question": "What is the name of the race when Lineth Chepkurui is the athlete?", "context": "CREATE TABLE table_name_17 (race VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT time FROM table_name_50 WHERE nation = \"kenya\" AND athlete = \"lineth chepkurui\"", "question": "What is the time when the race was in Kenya and Lineth Chepkurui was the athlete?", "context": "CREATE TABLE table_name_50 (time VARCHAR, nation VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT country FROM table_name_76 WHERE to_par = \"+4\"", "question": "What is the country for the player who had a To Par of +4?", "context": "CREATE TABLE table_name_76 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_93 WHERE total < 284 AND country = \"south africa\"", "question": "What player from South Africa had a total less than 284?", "context": "CREATE TABLE table_name_93 (player VARCHAR, total VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_29 WHERE year_s__won = \"2001\"", "question": "For the year won of 2001, what is the To Par?", "context": "CREATE TABLE table_name_29 (to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_38 WHERE series = \"4-3\"", "question": "what is the location attendance when the series is 4-3?", "context": "CREATE TABLE table_name_38 (location_attendance VARCHAR, series VARCHAR)"}, {"answer": "SELECT team FROM table_name_31 WHERE location_attendance = \"boston garden\" AND series = \"0-1\"", "question": "what is the team when the location attendace is boston garden and the series is 0-1?", "context": "CREATE TABLE table_name_31 (team VARCHAR, location_attendance VARCHAR, series VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_53 WHERE team = \"@boston\" AND series = \"0-1\"", "question": "what is the highest game when the team is @boston and the series is 0-1?", "context": "CREATE TABLE table_name_53 (game INTEGER, team VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_name_16 WHERE team = \"@boston\" AND game < 3", "question": "what is the series when the team is @boston and the game is smaller than 3?", "context": "CREATE TABLE table_name_16 (series VARCHAR, team VARCHAR, game VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_1 WHERE 1996 = \"0 / 2\"", "question": "What is 2001, when 1996 is \"0 / 2\"?", "context": "CREATE TABLE table_name_1 (Id VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_7 WHERE 1992 = \"a\" AND tournament = \"hamburg masters\"", "question": "What is 1998, when 1992 is \"A\", and when Tournament is \"Hamburg Masters\"?", "context": "CREATE TABLE table_name_7 (tournament VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_74 WHERE 1994 = \"a\" AND tournament = \"monte carlo masters\"", "question": "What is 2001, when 1994 is \"A\", and when Tournament is \"Monte Carlo Masters\"?", "context": "CREATE TABLE table_name_74 (tournament VARCHAR)"}, {"answer": "SELECT 1999 FROM table_name_21 WHERE 2003 = \"a\" AND career_sr = \"0 / 4\"", "question": "What is 1999, when 2003 is \"A\", and when Career SR is \"0 / 4\"?", "context": "CREATE TABLE table_name_21 (career_sr VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_67 WHERE tournament = \"canada masters\"", "question": "What is 2000, when Tournament is \"Canada Masters\"?", "context": "CREATE TABLE table_name_67 (tournament VARCHAR)"}, {"answer": "SELECT country FROM table_name_92 WHERE to_par = \"+1\" AND score = 69 - 70 - 72 = 211", "question": "What country is the player ho had a To par of +1 and a score of 69-70-72=211 from?", "context": "CREATE TABLE table_name_92 (country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_97 WHERE country = \"south africa\"", "question": "What place did the player from South Africa finish?", "context": "CREATE TABLE table_name_97 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_45 WHERE player = \"tom purtzer\"", "question": "What country is Tom Purtzer from?", "context": "CREATE TABLE table_name_45 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE country = \"united states\" AND to_par = \"+1\" AND player = \"wally armstrong\"", "question": "What was the score of united states player wally armstrong when he had a To par of +1", "context": "CREATE TABLE table_name_8 (score VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE player = \"wally armstrong\"", "question": "What was the score of Wally Armstrong?", "context": "CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_name_53 WHERE part_1 = \"lopen\"", "question": "what is the verb meaning when the part 1 is lopen?", "context": "CREATE TABLE table_name_53 (verb_meaning VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT part_4 FROM table_name_95 WHERE verb_meaning = \"to steal\"", "question": "what is the part 4 when the verb meaning is to steal?", "context": "CREATE TABLE table_name_95 (part_4 VARCHAR, verb_meaning VARCHAR)"}, {"answer": "SELECT class FROM table_name_33 WHERE part_2 = \"bond\"", "question": "what is the class when part 2 is bond?", "context": "CREATE TABLE table_name_33 (class VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT part_4 FROM table_name_37 WHERE class = \"5\"", "question": "what is part 4 when the class is 5?", "context": "CREATE TABLE table_name_37 (part_4 VARCHAR, class VARCHAR)"}, {"answer": "SELECT part_1 FROM table_name_78 WHERE class = \"7d\"", "question": "what is part 1 when the class is 7d?", "context": "CREATE TABLE table_name_78 (part_1 VARCHAR, class VARCHAR)"}, {"answer": "SELECT part_2 FROM table_name_92 WHERE part_4 = \"gebonden\"", "question": "what is part 2 when part 4 is gebonden?", "context": "CREATE TABLE table_name_92 (part_2 VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT boiling_point FROM table_name_46 WHERE density = \"1.092 g/ml\"", "question": "What's the boiling point when the density is 1.092 g/ml?", "context": "CREATE TABLE table_name_46 (boiling_point VARCHAR, density VARCHAR)"}, {"answer": "SELECT solvent FROM table_name_55 WHERE boiling_point = \"100\u2013103 \u00b0c\"", "question": "What solvent has a boiling point of 100\u2013103 \u00b0c?", "context": "CREATE TABLE table_name_55 (solvent VARCHAR, boiling_point VARCHAR)"}, {"answer": "SELECT dipole_moment___d__ FROM table_name_18 WHERE density = \"1.092 g/ml\"", "question": "What dipole moment has a density of 1.092 g/ml?", "context": "CREATE TABLE table_name_18 (dipole_moment___d__ VARCHAR, density VARCHAR)"}, {"answer": "SELECT dipole_moment___d__ FROM table_name_78 WHERE solvent = \"ethyl acetate (etoac)\"", "question": "What's the dipole moment of ethyl acetate (etoac)?", "context": "CREATE TABLE table_name_78 (dipole_moment___d__ VARCHAR, solvent VARCHAR)"}, {"answer": "SELECT boiling_point FROM table_name_74 WHERE solvent = \"diethyl ether\"", "question": "what's the boiling point of diethyl ether?", "context": "CREATE TABLE table_name_74 (boiling_point VARCHAR, solvent VARCHAR)"}, {"answer": "SELECT type FROM table_name_16 WHERE works_number = \"75823\"", "question": "What is Type, when Works Number is 75823?", "context": "CREATE TABLE table_name_16 (type VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE type = \"ds4-4-750\" AND works_number = \"74409\"", "question": "What is Date, when Type is DS4-4-750, and when Works Number is 74409?", "context": "CREATE TABLE table_name_93 (date VARCHAR, type VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT works_number FROM table_name_7 WHERE type = \"rs-11\" AND number = \"61\"", "question": "What is Works Number, when Type is RS-11, and when Number is 61?", "context": "CREATE TABLE table_name_7 (works_number VARCHAR, type VARCHAR, number VARCHAR)"}, {"answer": "SELECT builder FROM table_name_21 WHERE date = \"1925\"", "question": "What is Builder, when Date is 1925?", "context": "CREATE TABLE table_name_21 (builder VARCHAR, date VARCHAR)"}, {"answer": "SELECT works_number FROM table_name_44 WHERE number = \"55\"", "question": "What is Works Number, when Number is 55?", "context": "CREATE TABLE table_name_44 (works_number VARCHAR, number VARCHAR)"}, {"answer": "SELECT builder FROM table_name_71 WHERE date = \"1953\"", "question": "What is Builder, when Date is 1953?", "context": "CREATE TABLE table_name_71 (builder VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_77 WHERE record = \"5\u20135\u20130\"", "question": "Which Attendance is the lowest one that has a Record of 5\u20135\u20130?", "context": "CREATE TABLE table_name_77 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE record = \"4\u20132\u20130\"", "question": "Which Date has a Record of 4\u20132\u20130?", "context": "CREATE TABLE table_name_68 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_23 WHERE visitor = \"pittsburgh\" AND score = \"4\u20130\"", "question": "Which Record has a Visitor of pittsburgh, and a Score of 4\u20130?", "context": "CREATE TABLE table_name_23 (record VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_80 WHERE ground = \"waverley park\" AND home_team = \"collingwood\"", "question": "What was the away team score when Waverley Park was the ground and the home team was collingwood?", "context": "CREATE TABLE table_name_80 (away_team VARCHAR, ground VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT country FROM table_name_72 WHERE score = 71", "question": "From what country did someone score 71?", "context": "CREATE TABLE table_name_72 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_40 WHERE record = \"loss\" AND date = \"march 16, 1990\"", "question": "What is the attendance sum of the game on March 16, 1990 with a loss record?", "context": "CREATE TABLE table_name_40 (attendance INTEGER, record VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_53 WHERE date = \"august 20, 1978\"", "question": "What was the outcome of the match on August 20, 1978?", "context": "CREATE TABLE table_name_53 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_77 WHERE pick < 6", "question": "Which Round has a Pick smaller than 6?", "context": "CREATE TABLE table_name_77 (round INTEGER, pick INTEGER)"}, {"answer": "SELECT MAX(round) FROM table_name_84 WHERE overall < 6", "question": "Which Round has an Overall smaller than 6?", "context": "CREATE TABLE table_name_84 (round INTEGER, overall INTEGER)"}, {"answer": "SELECT position FROM table_name_18 WHERE college = \"washington\" AND overall = 46", "question": "Which Position has a College of washington, and an Overall of 46?", "context": "CREATE TABLE table_name_18 (position VARCHAR, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_17 WHERE position = \"qb\" AND overall > 6", "question": "Which Round has a Position of qb, and an Overall larger than 6?", "context": "CREATE TABLE table_name_17 (round INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE away_team = \"bury\"", "question": "What date was Bury the home team?", "context": "CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_86 WHERE away_team = \"tottenham hotspur\"", "question": "What team was the home team when Tottenham Hotspur is the away team?", "context": "CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT college FROM table_name_39 WHERE pick__number = 22", "question": "What college did the #22 overall draft pick attend?", "context": "CREATE TABLE table_name_39 (college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_38 WHERE nfl_team = \"carolina panthers\" AND college = \"syracuse\"", "question": "What draft pick number attended syracuse and was drafted by the Carolina panthers?", "context": "CREATE TABLE table_name_38 (pick__number INTEGER, nfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(lead_margin) FROM table_name_75 WHERE poll_source = \"rasmussen reports/ fox news\"", "question": "Which Lead Margin has a Poll Source of rasmussen reports/ fox news?", "context": "CREATE TABLE table_name_75 (lead_margin INTEGER, poll_source VARCHAR)"}, {"answer": "SELECT poll_source FROM table_name_18 WHERE date_administered = \"october 30 \u2013 november 2, 2008\"", "question": "Which Poll Source has a Date administered of october 30 \u2013 november 2, 2008?", "context": "CREATE TABLE table_name_18 (poll_source VARCHAR, date_administered VARCHAR)"}, {"answer": "SELECT site FROM table_name_67 WHERE opponent_number = \"northwestern\"", "question": "At which site was Northwestern an opponent?", "context": "CREATE TABLE table_name_67 (site VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT result FROM table_name_78 WHERE opponent_number = \"indiana\"", "question": "What result did Indiana have when they were an opponent?", "context": "CREATE TABLE table_name_78 (result VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_12 WHERE result = \"w61-7\"", "question": "What is the attendance when the result was w61-7?", "context": "CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(miles_)[one_way] FROM table_name_89 WHERE fans_took = \"340\"", "question": "What shows for miles [One Way] when the fans took 340?", "context": "CREATE TABLE table_name_89 (one_way VARCHAR, miles_ INTEGER, fans_took VARCHAR)"}, {"answer": "SELECT reported_birth_date FROM table_name_58 WHERE reported_age = \"110 years, 185 days\"", "question": "what is the reported birth date when the reported age is 110 years, 185 days?", "context": "CREATE TABLE table_name_58 (reported_birth_date VARCHAR, reported_age VARCHAR)"}, {"answer": "SELECT reported_age FROM table_name_62 WHERE reported_birth_date = \"22 december 1878\"", "question": "what is the reported age when the reported birth date is 22 december 1878?", "context": "CREATE TABLE table_name_62 (reported_age VARCHAR, reported_birth_date VARCHAR)"}, {"answer": "SELECT region FROM table_name_50 WHERE reported_age = \"111 years, 107 days\"", "question": "what is the region when the reported age is 111 years, 107 days?", "context": "CREATE TABLE table_name_50 (region VARCHAR, reported_age VARCHAR)"}, {"answer": "SELECT reported_death_date FROM table_name_97 WHERE name = \"laura svehaug\"", "question": "what is the reported death date for laura svehaug?", "context": "CREATE TABLE table_name_97 (reported_death_date VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_38 WHERE reported_age = \"111 years, 66 days\"", "question": "Who has a reported age of 111 years, 66 days?", "context": "CREATE TABLE table_name_38 (name VARCHAR, reported_age VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE reported_death_date = \"6 march 1998\"", "question": "Who has a reported death of 6 march 1998?", "context": "CREATE TABLE table_name_63 (name VARCHAR, reported_death_date VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE countries_surveyed < 122 AND _percentage_rank = \"47\"", "question": "Date for less than 122 countries and a 47% rank?", "context": "CREATE TABLE table_name_60 (date VARCHAR, countries_surveyed VARCHAR, _percentage_rank VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_71 WHERE high_points = \"andrew bynum (23)\"", "question": "What high assists has the high points of andrew bynum (23)?", "context": "CREATE TABLE table_name_71 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE team = \"charlotte\"", "question": "What score is the team of charlotte?", "context": "CREATE TABLE table_name_48 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE event = \"strikeforce: barnett vs. cormier\"", "question": "What was strikeforce: barnett vs. cormier's record?", "context": "CREATE TABLE table_name_26 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT SUM(q_) > _1.4 FROM table_name_51 WHERE q_ > _1.3 = 455 AND q_ > _1.2 < 3 OFFSET 028", "question": "What is the total of q > 1.4 when q > 1.3 is 455, and q >1.2 is less than 3,028?", "context": "CREATE TABLE table_name_51 (q_ INTEGER)"}, {"answer": "SELECT losing_team FROM table_name_44 WHERE total = 24 AND winning_team = \"sydney roosters\"", "question": "Who was the losing team with a total of 24 when the winning team was Sydney Roosters?", "context": "CREATE TABLE table_name_44 (losing_team VARCHAR, total VARCHAR, winning_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_16 WHERE losing_team = \"south sydney rabbitohs\"", "question": "Which venue had a losing team of south sydney rabbitohs?", "context": "CREATE TABLE table_name_16 (venue VARCHAR, losing_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE total < 19 AND venue = \"anz stadium\"", "question": "What day was the total smaller than 19 at Venue of anz stadium?", "context": "CREATE TABLE table_name_42 (date VARCHAR, total VARCHAR, venue VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_77 WHERE week < 17 AND record = \"bye\"", "question": "What was the Attendance before Week 17 with a Record of Bye?", "context": "CREATE TABLE table_name_77 (attendance VARCHAR, week VARCHAR, record VARCHAR)"}, {"answer": "SELECT kickoff_time FROM table_name_72 WHERE date = \"january 7, 2002\"", "question": "What is the Kickoff Time on January 7, 2002?", "context": "CREATE TABLE table_name_72 (kickoff_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_38 WHERE result = \"l 24\u201314\"", "question": "What was the Opponent in the game with a Result of L 24\u201314?", "context": "CREATE TABLE table_name_38 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_46 WHERE attendance = \"69,365\"", "question": "What was the Result of the game with an Attendance of 69,365?", "context": "CREATE TABLE table_name_46 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT events_won_by_kcl FROM table_name_74 WHERE winner = \"kclms\" AND events_won_by_kclMS < 10 AND year = 2008", "question": "Which event won by KCLMS in 2008 has KCLMS as the winner and less than 10 wins by KCL?", "context": "CREATE TABLE table_name_74 (events_won_by_kcl VARCHAR, year VARCHAR, winner VARCHAR, events_won_by_kclMS VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_8 WHERE events_won_by_kclMS < 7", "question": "How many years were the events won by KCLMS less than 7?", "context": "CREATE TABLE table_name_8 (year VARCHAR, events_won_by_kclMS INTEGER)"}, {"answer": "SELECT AVG(events_won_by_kcl) FROM table_name_58 WHERE year < 2004", "question": "What is the average value for events won by KCL in a year earlier than 2004?", "context": "CREATE TABLE table_name_58 (events_won_by_kcl INTEGER, year INTEGER)"}, {"answer": "SELECT date_of_appointment FROM table_name_40 WHERE date_of_vacancy = \"4 december 2008\"", "question": "What is the appointment day for 4 December 2008 vacancy?", "context": "CREATE TABLE table_name_40 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_83 WHERE position_in_table = \"16th\"", "question": "Which outgoing manager has tabled 16th position?", "context": "CREATE TABLE table_name_83 (outgoing_manager VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_name_91 WHERE team = \"mons\" AND replaced_by = \"christophe dessy (caretaker)\"", "question": "Which position is team mons who was replaced by Christophe Dessy (caretaker)?", "context": "CREATE TABLE table_name_91 (position_in_table VARCHAR, team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_name_13 WHERE date_of_vacancy = \"4 december 2008\"", "question": "What is the table position for 4 December 2008 vacancy?", "context": "CREATE TABLE table_name_13 (position_in_table VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT laps FROM table_name_65 WHERE points = \"50\"", "question": "How many laps have 50 points?", "context": "CREATE TABLE table_name_65 (laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT grid FROM table_name_14 WHERE team = \"dreyer & reinbold racing\" AND points = \"26\"", "question": "What is the grid of team dreyer & reinbold racing, which has 26 points?", "context": "CREATE TABLE table_name_14 (grid VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_6 WHERE laps = \"75\"", "question": "How many points have 75 laps?", "context": "CREATE TABLE table_name_6 (points VARCHAR, laps VARCHAR)"}, {"answer": "SELECT points FROM table_name_99 WHERE laps = \"88\" AND grid = \"14\"", "question": "How many points have 88 laps and a grid of 14?", "context": "CREATE TABLE table_name_99 (points VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT laps FROM table_name_34 WHERE time_retired = \"+0.4865\"", "question": "How many laps have a +0.4865 time/retired?", "context": "CREATE TABLE table_name_34 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT launch_date FROM table_name_93 WHERE deorbit_date = \"29 september 2008\"", "question": "When did the ATV that deorbited on 29 september 2008, launch?", "context": "CREATE TABLE table_name_93 (launch_date VARCHAR, deorbit_date VARCHAR)"}, {"answer": "SELECT launch_date FROM table_name_22 WHERE designation = \"atv-002\"", "question": "When did the atv-002 launch?", "context": "CREATE TABLE table_name_22 (launch_date VARCHAR, designation VARCHAR)"}, {"answer": "SELECT launch_date FROM table_name_25 WHERE name = \"edoardo amaldi\"", "question": "When did Edoardo Amaldi launch?", "context": "CREATE TABLE table_name_25 (launch_date VARCHAR, name VARCHAR)"}, {"answer": "SELECT deorbit_date FROM table_name_9 WHERE launch_date = \"9 march 2008\"", "question": "When did the ATV that launched on 9 March 2008, deorbit?", "context": "CREATE TABLE table_name_9 (deorbit_date VARCHAR, launch_date VARCHAR)"}, {"answer": "SELECT partner FROM table_name_74 WHERE outcome = \"runner-up\" AND surface = \"clay\" AND opponents = \"marco chiudinelli michael lammer\"", "question": "Who was the partner on the game which took place on a clay surface with opponents of marco chiudinelli michael lammer and a runner-up result?", "context": "CREATE TABLE table_name_74 (partner VARCHAR, opponents VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_84 WHERE surface = \"clay\" AND score = \"6\u20133, 7\u20136 (11\u20139)\"", "question": "Who were the opponent in the match on a clay surface that had a score of 6\u20133, 7\u20136 (11\u20139)?", "context": "CREATE TABLE table_name_84 (opponents VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT season FROM table_name_7 WHERE races < 16", "question": "What is Season, when Races is less than 16?", "context": "CREATE TABLE table_name_7 (season VARCHAR, races INTEGER)"}, {"answer": "SELECT SUM(poles) FROM table_name_35 WHERE podiums = 0 AND races = 17", "question": "What is the sum of Poles, when Podiums is 0, and when Races is 17?", "context": "CREATE TABLE table_name_35 (poles INTEGER, podiums VARCHAR, races VARCHAR)"}, {"answer": "SELECT poles FROM table_name_99 WHERE races < 16", "question": "What is Poles, when Races is less than 16?", "context": "CREATE TABLE table_name_99 (poles VARCHAR, races INTEGER)"}, {"answer": "SELECT MIN(races) FROM table_name_53 WHERE podiums > 1", "question": "What is the lowest Races, when Podiums is greater than 1?", "context": "CREATE TABLE table_name_53 (races INTEGER, podiums INTEGER)"}, {"answer": "SELECT AVG(attendance) FROM table_name_68 WHERE week = 14", "question": "How many people on average attended the game in week 14?", "context": "CREATE TABLE table_name_68 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_70 WHERE week = 11", "question": "The game in week 11 has what result?", "context": "CREATE TABLE table_name_70 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_12 WHERE opponent = \"san francisco 49ers\"", "question": "For the game against the San Francisco 49ers what was the total attendance?", "context": "CREATE TABLE table_name_12 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT place FROM table_name_71 WHERE to_par = \"\u20131\" AND score = 71 - 68 - 76 = 215", "question": "What is the Place that has a To standard of \u20131, and a Score of 71-68-76=215?", "context": "CREATE TABLE table_name_71 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_47 WHERE to_par = \"\u20137\"", "question": "What is the Player that has a To standard of \u20137?", "context": "CREATE TABLE table_name_47 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_15 WHERE to_par = \"\u20134\"", "question": "What is the Player that has a To standard of \u20134?", "context": "CREATE TABLE table_name_15 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_60 WHERE to_par = \"\u20131\" AND score = 71 - 68 - 76 = 215", "question": "What is the Player that has a To standard of \u20131, and a Score of 71-68-76=215?", "context": "CREATE TABLE table_name_60 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_71 WHERE to_par = \"\u20134\"", "question": "What is the Player that has a To standard of \u20134?", "context": "CREATE TABLE table_name_71 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT rank FROM table_name_63 WHERE s_wicket = \"40\" AND player = \"daniel marsh\"", "question": "Which rank is 40 for s Wicket with a player of Daniel Marsh?", "context": "CREATE TABLE table_name_63 (rank VARCHAR, s_wicket VARCHAR, player VARCHAR)"}, {"answer": "SELECT rank FROM table_name_66 WHERE s_wicket = \"40\" AND average = \"28.42\"", "question": "Which rank has a s wicket at 40 and 28.42 is the average?", "context": "CREATE TABLE table_name_66 (rank VARCHAR, s_wicket VARCHAR, average VARCHAR)"}, {"answer": "SELECT s_wicket FROM table_name_68 WHERE player = \"shaun young\"", "question": "Which value for s wicket is associated with Shaun Young?", "context": "CREATE TABLE table_name_68 (s_wicket VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_84 WHERE s_wicket = \"48\"", "question": "Which player has a s wicket at 48?", "context": "CREATE TABLE table_name_84 (player VARCHAR, s_wicket VARCHAR)"}, {"answer": "SELECT s_wicket FROM table_name_51 WHERE player = \"shaun young\"", "question": "What is the s wicket value associated with Shaun Young?", "context": "CREATE TABLE table_name_51 (s_wicket VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE home = \"ny islanders\"", "question": "What is the date of the game where the NY Islanders are the home team?", "context": "CREATE TABLE table_name_2 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE home = \"ny islanders\"", "question": "What is the score of the game where the NY Islanders are the home team?", "context": "CREATE TABLE table_name_10 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_68 WHERE date = \"february 3\"", "question": "Who was the home team on February 3?", "context": "CREATE TABLE table_name_68 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_50 WHERE round < 24 AND college = \"north carolina state\"", "question": "What is the sum of Overall, when Round is less than 24, and when College is North Carolina State?", "context": "CREATE TABLE table_name_50 (overall INTEGER, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_98 WHERE position = \"ot\" AND overall > 91 AND round > 21 AND college = \"mississippi\"", "question": "What is the total number of Pick, when Position is OT, when Overall is greater than 91, when Round is greater than 21, and when College is Mississippi?", "context": "CREATE TABLE table_name_98 (pick VARCHAR, college VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_17 WHERE college = \"hardin-simmons\" AND round > 26", "question": "What is the lowest Overall, when College is Hardin-Simmons, and when Round is greater than 26?", "context": "CREATE TABLE table_name_17 (overall INTEGER, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE opponent = \"younes el aynaoui\"", "question": "What is the score of the tournament with younes el aynaoui as the opponent?", "context": "CREATE TABLE table_name_37 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE opponent = \"carlos moy\u00e0\"", "question": "What is the date of the tournament with carlos moy\u00e0 as the opponent?", "context": "CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_57 WHERE opponent = \"greg rusedski\"", "question": "What is the tournament with greg rusedski as the opponent?", "context": "CREATE TABLE table_name_57 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_75 WHERE date = \"26 may 1996\"", "question": "What is the surface on 26 May 1996?", "context": "CREATE TABLE table_name_75 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT club FROM table_name_55 WHERE nationality = \"united states\" AND player = \"ty harden\"", "question": "What club did united states player ty harden play for?", "context": "CREATE TABLE table_name_55 (club VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_26 WHERE player = \"rohan ricketts\"", "question": "Which seaosn had a player of rohan ricketts?", "context": "CREATE TABLE table_name_26 (season VARCHAR, player VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_78 WHERE points_against = \"213\"", "question": "What is Tries Against, when Points Against is 213?", "context": "CREATE TABLE table_name_78 (tries_against VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_56 WHERE tries_for = \"21\"", "question": "What is Tries Against, when Tries For is 21?", "context": "CREATE TABLE table_name_56 (tries_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT try_diff FROM table_name_18 WHERE points_diff = \"+71\"", "question": "What is Try Diff, when Points Diff is +71?", "context": "CREATE TABLE table_name_18 (try_diff VARCHAR, points_diff VARCHAR)"}, {"answer": "SELECT try_diff FROM table_name_42 WHERE points_against = \"213\"", "question": "What is Try Diff, when Points Against is 213?", "context": "CREATE TABLE table_name_42 (try_diff VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_34 WHERE try_diff = \"+15\"", "question": "What is Tries Against, when Try Diff is +15?", "context": "CREATE TABLE table_name_34 (tries_against VARCHAR, try_diff VARCHAR)"}, {"answer": "SELECT archbishop FROM table_name_42 WHERE vacated_throne = \"may 17, 1907\"", "question": "Which archbishop vacated the throne on May 17, 1907?", "context": "CREATE TABLE table_name_42 (archbishop VARCHAR, vacated_throne VARCHAR)"}, {"answer": "SELECT died FROM table_name_62 WHERE ordained_bishop = \"july 25, 1902\"", "question": "When did the archbishop that was ordained a bishop on July 25, 1902 die?", "context": "CREATE TABLE table_name_62 (died VARCHAR, ordained_bishop VARCHAR)"}, {"answer": "SELECT ordained_bishop FROM table_name_80 WHERE born = \"february 10, 1858\"", "question": "When was the archbishop that was born on February 10, 1858 ordained a bishop?", "context": "CREATE TABLE table_name_80 (ordained_bishop VARCHAR, born VARCHAR)"}, {"answer": "SELECT vacated_throne FROM table_name_63 WHERE archbishop = \"albert daeger\"", "question": "When did Archbishop Albert Daeger vacate the throne?", "context": "CREATE TABLE table_name_63 (vacated_throne VARCHAR, archbishop VARCHAR)"}, {"answer": "SELECT born FROM table_name_3 WHERE ordained_bishop = \"november 30, 1925\"", "question": "When was the archbishop that was ordained as a bishop on November 30, 1925 born?", "context": "CREATE TABLE table_name_3 (born VARCHAR, ordained_bishop VARCHAR)"}, {"answer": "SELECT ordained_bishop FROM table_name_6 WHERE born = \"february 22, 1825\"", "question": "When was the archbishop that was born on February 22, 1825 ordained as a bishop?", "context": "CREATE TABLE table_name_6 (ordained_bishop VARCHAR, born VARCHAR)"}, {"answer": "SELECT event FROM table_name_87 WHERE opponent = \"pat barry\"", "question": "Which event was against Pat Barry?", "context": "CREATE TABLE table_name_87 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT player FROM table_name_60 WHERE score = 71 - 71 = 142", "question": "What Player has a Score of 71-71=142?", "context": "CREATE TABLE table_name_60 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_95 WHERE place = \"t9\" AND player = \"ernie els\"", "question": "What is the To par of T9 Place Player Ernie Els?", "context": "CREATE TABLE table_name_95 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE country = \"south africa\"", "question": "What is the Score of the Player from South Africa?", "context": "CREATE TABLE table_name_64 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_61 WHERE score = 70 - 71 = 141", "question": "What is the Place of the Player with a Score of 70-71=141?", "context": "CREATE TABLE table_name_61 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE set_1 = \"25\u201320\"", "question": "Which Date has a Set 1 of 25\u201320?", "context": "CREATE TABLE table_name_85 (date VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE total = \"80\u201372\"", "question": "Which Score has a Total of 80\u201372?", "context": "CREATE TABLE table_name_55 (score VARCHAR, total VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE set_1 = \"21\u201325\"", "question": "Which Date has a Set 1 of 21\u201325?", "context": "CREATE TABLE table_name_31 (date VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_5 WHERE set_3 = \"25\u201320\" AND time = \"13:45\"", "question": "Which Set 2 has a Set 3 of 25\u201320, and a Time of 13:45?", "context": "CREATE TABLE table_name_5 (set_2 VARCHAR, set_3 VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE set_1 = \"25\u201316\"", "question": "Which Score has a Set 1 of 25\u201316?", "context": "CREATE TABLE table_name_97 (score VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE score = \"2\u20133\" AND time = \"20:30\" AND set_3 = \"16\u201325\"", "question": "Which Date has a Score of 2\u20133, a Time of 20:30, and a Set 3 of 16\u201325?", "context": "CREATE TABLE table_name_38 (date VARCHAR, set_3 VARCHAR, score VARCHAR, time VARCHAR)"}, {"answer": "SELECT back FROM table_name_88 WHERE supplier = \"kooga\" AND year = \"2006-2008\"", "question": "Which Back has a Supplier of Kooga and a Year of 2006-2008?", "context": "CREATE TABLE table_name_88 (back VARCHAR, supplier VARCHAR, year VARCHAR)"}, {"answer": "SELECT supplier FROM table_name_83 WHERE year = \"2006-2008\"", "question": "Which Supplier has a Year of 2006-2008?", "context": "CREATE TABLE table_name_83 (supplier VARCHAR, year VARCHAR)"}, {"answer": "SELECT sleeves FROM table_name_72 WHERE back = \"unknown\"", "question": "Which Sleeves have a Back of Unknown?", "context": "CREATE TABLE table_name_72 (sleeves VARCHAR, back VARCHAR)"}, {"answer": "SELECT year FROM table_name_97 WHERE supplier = \"kooga\"", "question": "What is the Year for Supplier Kooga?", "context": "CREATE TABLE table_name_97 (year VARCHAR, supplier VARCHAR)"}, {"answer": "SELECT sleeves FROM table_name_67 WHERE year = \"2006-2008\"", "question": "Which Sleeves have a Year of 2006-2008?", "context": "CREATE TABLE table_name_67 (sleeves VARCHAR, year VARCHAR)"}, {"answer": "SELECT chest FROM table_name_28 WHERE supplier = \"gilbert\"", "question": "Which Chest is Supplied by Gilbert?", "context": "CREATE TABLE table_name_28 (chest VARCHAR, supplier VARCHAR)"}, {"answer": "SELECT website FROM table_name_25 WHERE year_started = 2008", "question": "Which website was started in 2008?", "context": "CREATE TABLE table_name_25 (website VARCHAR, year_started VARCHAR)"}, {"answer": "SELECT MAX(year_started) FROM table_name_38 WHERE current_car = \"arctic sun\" AND number_of_cars < 1", "question": "Which Year started is the highest one that has a Current car of arctic sun, and a Number of cars smaller than 1?", "context": "CREATE TABLE table_name_38 (year_started INTEGER, current_car VARCHAR, number_of_cars VARCHAR)"}, {"answer": "SELECT current_car FROM table_name_54 WHERE number_of_cars = 1 AND year_started = 1999", "question": "Which Current car has a Number of cars of 1, and a Year started of 1999?", "context": "CREATE TABLE table_name_54 (current_car VARCHAR, number_of_cars VARCHAR, year_started VARCHAR)"}, {"answer": "SELECT MIN(year_started) FROM table_name_30 WHERE number_of_cars > 7 AND car__number = \"100\"", "question": "Which Year started is the lowest one that has a Number of cars larger than 7, and a Car # of 100?", "context": "CREATE TABLE table_name_30 (year_started INTEGER, number_of_cars VARCHAR, car__number VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_94 WHERE position = \"d\" AND player = \"andrew campbell\"", "question": "What is the total number of Round, when Position is \"D\", and when Player is \"Andrew Campbell\"?", "context": "CREATE TABLE table_name_94 (round VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_73 WHERE college_junior_club_team__league_ = \"guelph storm ( ohl )\"", "question": "What is Nationality, when College/Junior/Club Team (League) is \"Guelph Storm ( OHL )\"?", "context": "CREATE TABLE table_name_73 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_41 WHERE player = \"andrew campbell\"", "question": "What is Nationality, when Player is \"Andrew Campbell\"?", "context": "CREATE TABLE table_name_41 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT power FROM table_name_21 WHERE name = \"9 nc\"", "question": "Which Power has a Name of 9 nc?", "context": "CREATE TABLE table_name_21 (power VARCHAR, name VARCHAR)"}, {"answer": "SELECT weight FROM table_name_98 WHERE power = \"kw (hp) at 1,800rpm\" AND name = \"9 nc\"", "question": "Which Weight has a Power of kw (hp) at 1,800rpm, and a Name of 9 nc?", "context": "CREATE TABLE table_name_98 (weight VARCHAR, power VARCHAR, name VARCHAR)"}, {"answer": "SELECT bore FROM table_name_94 WHERE name = \"9 adr\"", "question": "Which Bore has a Name of 9 adr?", "context": "CREATE TABLE table_name_94 (bore VARCHAR, name VARCHAR)"}, {"answer": "SELECT power FROM table_name_25 WHERE name = \"9 ad\"", "question": "Which Power has a Name of 9 ad?", "context": "CREATE TABLE table_name_25 (power VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_15 WHERE name = \"chris horton\" AND pick < 42", "question": "When the pick was below 42 and the player was Chris Horton, what's the highest Overall pick found?", "context": "CREATE TABLE table_name_15 (overall INTEGER, name VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_71 WHERE college = \"kansas state\" AND pick > 35", "question": "When Kansas State had a pick of over 35, what's the highest Overall pick found?", "context": "CREATE TABLE table_name_71 (overall INTEGER, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_57 WHERE played = 114 AND average = 0.982", "question": "Total points with 114 played and average of 0.982?", "context": "CREATE TABLE table_name_57 (points INTEGER, played VARCHAR, average VARCHAR)"}, {"answer": "SELECT team FROM table_name_79 WHERE average = 1.035", "question": "Team with average of 1.035?", "context": "CREATE TABLE table_name_79 (team VARCHAR, average VARCHAR)"}, {"answer": "SELECT position FROM table_name_93 WHERE name = \"chris hanburger\"", "question": "What was Chris Hanburger's position?", "context": "CREATE TABLE table_name_93 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_9 WHERE name = \"john strohmeyer\" AND round < 12", "question": "What was John Strohmeyer's average pick before round 12?", "context": "CREATE TABLE table_name_9 (pick INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_55 WHERE position > 5 AND played < 10", "question": "what is the average points when position is more than 5 and played is less than 10?", "context": "CREATE TABLE table_name_55 (points INTEGER, position VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_60 WHERE drawn = 0 AND lost = 5 AND played > 10", "question": "what is the average points when drawn is 0, lost is 5 and played is more than 10?", "context": "CREATE TABLE table_name_60 (points INTEGER, played VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_64 WHERE points = 14 AND position > 1", "question": "what is the average number lost when points is 14 and position is more than 1?", "context": "CREATE TABLE table_name_64 (lost INTEGER, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_36 WHERE played = 9 AND name = \"ev pegnitz\" AND position > 1", "question": "what is the average points when played is 9, name is ev pegnitz and position is larger than 1?", "context": "CREATE TABLE table_name_36 (points INTEGER, position VARCHAR, played VARCHAR, name VARCHAR)"}, {"answer": "SELECT place FROM table_name_14 WHERE score = 72 - 72 = 144 AND country = \"united states\" AND player = \"scott mccarron\"", "question": "What is Place, when Score is 72-72=144, when Country is United States, and when Player is Scott McCarron?", "context": "CREATE TABLE table_name_14 (place VARCHAR, player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_50 WHERE score = 70 - 73 = 143", "question": "What is Country, when Score is 70-73=143?", "context": "CREATE TABLE table_name_50 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_93 WHERE place = \"2\"", "question": "What is Player, when Place is 2?", "context": "CREATE TABLE table_name_93 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_50 WHERE player = \"billy mayfair\"", "question": "What is Country, when Player is Billy Mayfair?", "context": "CREATE TABLE table_name_50 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_58 WHERE player = \"k. j. choi\"", "question": "What is To Par, when Player is K. J. Choi?", "context": "CREATE TABLE table_name_58 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE player = \"billy mayfair\"", "question": "What is Score, when Player is Billy Mayfair?", "context": "CREATE TABLE table_name_48 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_79 WHERE player = \"don whitt\"", "question": "What place did Don Whitt finish?", "context": "CREATE TABLE table_name_79 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE player = \"phil rodgers\"", "question": "What did Phil Rodgers score?", "context": "CREATE TABLE table_name_6 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_27 WHERE player = \"gary player\"", "question": "What place was Gary Player after two rounds?", "context": "CREATE TABLE table_name_27 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT 1993 FROM table_name_35 WHERE tournament = \"cincinnati\"", "question": "What is 1993, when Tournament is \"Cincinnati\"?", "context": "CREATE TABLE table_name_35 (tournament VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_65 WHERE 1996 = \"grand slams\"", "question": "What is 1994, when 1996 is \"Grand Slams\"?", "context": "CREATE TABLE table_name_65 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_92 WHERE 1996 = \"1r\" AND 1990 = \"sf\"", "question": "What is Tournament, when 1996 is \"1R\", and when 1990 is \"SF\"?", "context": "CREATE TABLE table_name_92 (tournament VARCHAR)"}, {"answer": "SELECT 1993 FROM table_name_7 WHERE 1992 = \"sf\" AND tournament = \"paris\"", "question": "What is 1993, when 1992 is \"SF\", and when Tournament is \"Paris\"?", "context": "CREATE TABLE table_name_7 (tournament VARCHAR)"}, {"answer": "SELECT country FROM table_name_62 WHERE score = 70 - 73 - 70 = 213", "question": "What country has a 70-73-70=213 score?", "context": "CREATE TABLE table_name_62 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_28 WHERE to_par = \"+2\" AND player = \"johnny miller\"", "question": "What place is player johnny miller, who has a to par of +2?", "context": "CREATE TABLE table_name_28 (place VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_89 WHERE player = \"mike sullivan\"", "question": "What country is player mike sullivan from?", "context": "CREATE TABLE table_name_89 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_28 WHERE score = 71 - 72 - 70 = 213", "question": "What is the place with a 71-72-70=213 score?", "context": "CREATE TABLE table_name_28 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_62 WHERE date = \"may 1, 2004\"", "question": "What was the record after the game on May 1, 2004?", "context": "CREATE TABLE table_name_62 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_18 WHERE opponent = \"manchester wolves\" AND date = \"july 30, 2004\"", "question": "What was the record after the game with the Manchester Wolves on July 30, 2004?", "context": "CREATE TABLE table_name_18 (record VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_87 WHERE date = \"april 10, 2004\"", "question": "Which game site hosted a match on April 10, 2004?", "context": "CREATE TABLE table_name_87 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT golf FROM table_name_66 WHERE school = \"green bay\"", "question": "Does Green Bay have a golf team?", "context": "CREATE TABLE table_name_66 (golf VARCHAR, school VARCHAR)"}, {"answer": "SELECT soccer FROM table_name_34 WHERE school = \"detroit\"", "question": "Does Detroit have a soccer team?", "context": "CREATE TABLE table_name_34 (soccer VARCHAR, school VARCHAR)"}, {"answer": "SELECT democrat AS :_carl_levin FROM table_name_88 WHERE lead_margin = 22", "question": "What is Democrat: Carl Levin, when Lead Margin is 22?", "context": "CREATE TABLE table_name_88 (democrat VARCHAR, lead_margin VARCHAR)"}, {"answer": "SELECT win__percentage FROM table_name_68 WHERE conference_titles = \"0\" AND win_loss = \"20-10\"", "question": "What is Win %, when Conference Titles is 0, and when Win-Loss is 20-10?", "context": "CREATE TABLE table_name_68 (win__percentage VARCHAR, conference_titles VARCHAR, win_loss VARCHAR)"}, {"answer": "SELECT conference_titles FROM table_name_23 WHERE win__percentage = \".667\"", "question": "What is Conference Titles, when Win % is .667?", "context": "CREATE TABLE table_name_23 (conference_titles VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT coach FROM table_name_99 WHERE win__percentage = \".352\"", "question": "What is Coach, when Win % is .352?", "context": "CREATE TABLE table_name_99 (coach VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT win_loss FROM table_name_60 WHERE win__percentage = \".456\"", "question": "What is Win-Loss, when Win % is .456?", "context": "CREATE TABLE table_name_60 (win_loss VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT years FROM table_name_55 WHERE win_loss = \"11-60\"", "question": "What is Years, when Win-Loss is 11-60?", "context": "CREATE TABLE table_name_55 (years VARCHAR, win_loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE record = \"33.952\"", "question": "What is the Date that has a Record of 33.952?", "context": "CREATE TABLE table_name_48 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT place FROM table_name_13 WHERE date = \"4 august 2012\"", "question": "What is the Place that has a Date of 4 august 2012?", "context": "CREATE TABLE table_name_13 (place VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_92 WHERE date = \"22 august 2004\"", "question": "What is the Place that has a Date of 22 august 2004?", "context": "CREATE TABLE table_name_92 (place VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_35 WHERE nationality = \"new zealand\"", "question": "What is the Record that has a Nationality of new zealand?", "context": "CREATE TABLE table_name_35 (record VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT skip FROM table_name_62 WHERE third = \"deanna doig\"", "question": "WHAT IS THE SKIP WITH A THIRD OF DEANNA DOIG?", "context": "CREATE TABLE table_name_62 (skip VARCHAR, third VARCHAR)"}, {"answer": "SELECT third FROM table_name_76 WHERE lead = \"cindy simmons\"", "question": "WHAT IS THE THIRD WITH LEAD CINDY SIMMONS?", "context": "CREATE TABLE table_name_76 (third VARCHAR, lead VARCHAR)"}, {"answer": "SELECT lead FROM table_name_83 WHERE third = \"jeanna schraeder\"", "question": "WHAT IS THE LEAD WITH THIRD AS JEANNA SCHRAEDER?", "context": "CREATE TABLE table_name_83 (lead VARCHAR, third VARCHAR)"}, {"answer": "SELECT lead FROM table_name_79 WHERE third = \"tara george\"", "question": "WHAT IS THE LEAD WITH THIRD AS TARA GEORGE?", "context": "CREATE TABLE table_name_79 (lead VARCHAR, third VARCHAR)"}, {"answer": "SELECT second FROM table_name_59 WHERE city = \"regina\" AND skip = \"michelle englot\"", "question": "WHAT IS TEH SECOND WITH REGINA AS CITY AND SKIP OF MICHELLE ENGLOT?", "context": "CREATE TABLE table_name_59 (second VARCHAR, city VARCHAR, skip VARCHAR)"}, {"answer": "SELECT city FROM table_name_6 WHERE third = \"lori olson-johns\"", "question": "WHAT IS THE CITY WITH THIRD AS LORI OLSON-JOHNS?", "context": "CREATE TABLE table_name_6 (city VARCHAR, third VARCHAR)"}, {"answer": "SELECT event FROM table_name_13 WHERE time = \"0:49\"", "question": "What event has a 0:49 time?", "context": "CREATE TABLE table_name_13 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_63 WHERE time = \"3:56\"", "question": "What is the record with a 3:56 time?", "context": "CREATE TABLE table_name_63 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT champion FROM table_name_64 WHERE third = \"blaho blahoyeve\" AND season = \"1995-96\"", "question": "Which Champion has a Third of blaho blahoyeve, and a Season of 1995-96?", "context": "CREATE TABLE table_name_64 (champion VARCHAR, third VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(zone) FROM table_name_30 WHERE champion = \"surozh sudak\"", "question": "Which Zone has a Champion of surozh sudak?", "context": "CREATE TABLE table_name_30 (zone INTEGER, champion VARCHAR)"}, {"answer": "SELECT third FROM table_name_20 WHERE champion = \"metalurh novomoskovsk\"", "question": "Which Third has a Champion of metalurh novomoskovsk?", "context": "CREATE TABLE table_name_20 (third VARCHAR, champion VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_name_79 WHERE area_km_2 > 243.31", "question": "What is the census ranking for the parish with an area larger than 243.31 square km?", "context": "CREATE TABLE table_name_79 (census_ranking VARCHAR, area_km_2 INTEGER)"}, {"answer": "SELECT verb_meaning FROM table_name_78 WHERE part_1 = \"saugen\"", "question": "What is the verb meaning for Saugen in part 1?", "context": "CREATE TABLE table_name_78 (verb_meaning VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_name_89 WHERE part_3 = \"gaben\"", "question": "What is the verb meaning for Gaben in part 3?", "context": "CREATE TABLE table_name_89 (verb_meaning VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT class FROM table_name_26 WHERE part_4 = \"geholfen gedroschen\"", "question": "What is the class for Geholfen Gedroschen in part 4?", "context": "CREATE TABLE table_name_26 (class VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT class FROM table_name_49 WHERE part_3 = \"trafen\"", "question": "What is the class for trafen in part 3?", "context": "CREATE TABLE table_name_49 (class VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_name_64 WHERE class = \"4\"", "question": "What is the verb meaning for class 4?", "context": "CREATE TABLE table_name_64 (verb_meaning VARCHAR, class VARCHAR)"}, {"answer": "SELECT name FROM table_name_53 WHERE term_end = \"5 march 1930\"", "question": "Who is the prime minister that had a term that ended on 5 March 1930?", "context": "CREATE TABLE table_name_53 (name VARCHAR, term_end VARCHAR)"}, {"answer": "SELECT poles FROM table_name_91 WHERE season = 2006", "question": "What are the Poles for Season 2006", "context": "CREATE TABLE table_name_91 (poles VARCHAR, season VARCHAR)"}, {"answer": "SELECT wins FROM table_name_80 WHERE podiums = \"2\" AND f_laps = \"2\"", "question": "If Podiums is 2 and F/Laps are 2, what are the wins?", "context": "CREATE TABLE table_name_80 (wins VARCHAR, podiums VARCHAR, f_laps VARCHAR)"}, {"answer": "SELECT position FROM table_name_40 WHERE races = \"test driver\"", "question": "If the Races is Test Driver what is the Position?", "context": "CREATE TABLE table_name_40 (position VARCHAR, races VARCHAR)"}, {"answer": "SELECT MIN(races) FROM table_name_16 WHERE team_name = \"piquet gp\" AND points > 24", "question": "Can you tell me the lowest Races that has the Team Name of piquet gp, and the Points larger than 24?", "context": "CREATE TABLE table_name_16 (races INTEGER, team_name VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(poles) FROM table_name_53 WHERE season = \"2005\" AND series = \"formula three sudamericana\"", "question": "Can you tell me the sum of Poles that has the Season of 2005, and the Series of formula three sudamericana?", "context": "CREATE TABLE table_name_53 (poles INTEGER, season VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_name_63 WHERE wins = 0 AND season = \"2002\"", "question": "Can you tell me the Series that has the Wins of 0, and the Season of a 2002?", "context": "CREATE TABLE table_name_63 (series VARCHAR, wins VARCHAR, season VARCHAR)"}, {"answer": "SELECT venue FROM table_name_41 WHERE game > 18 AND opponent = \"morecambe\"", "question": "What is Venue, when Game is greater than 18, and when Opponent is Morecambe?", "context": "CREATE TABLE table_name_41 (venue VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_59 WHERE date = \"29 january 2008\"", "question": "What is the sum of Game, when Date is 29 January 2008?", "context": "CREATE TABLE table_name_59 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE catalog = \"kicp-1321\"", "question": "What date had a catalog of kicp-1321?", "context": "CREATE TABLE table_name_61 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_61 WHERE label = \"frontiers records\"", "question": "What was the catalog when the label was frontiers records?", "context": "CREATE TABLE table_name_61 (catalog VARCHAR, label VARCHAR)"}, {"answer": "SELECT format FROM table_name_81 WHERE region = \"europe\"", "question": "What was the format for the region of europe?", "context": "CREATE TABLE table_name_81 (format VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_name_92 WHERE label = \"universal music group\"", "question": "What was the region when the label was the universal music group?", "context": "CREATE TABLE table_name_92 (region VARCHAR, label VARCHAR)"}, {"answer": "SELECT format FROM table_name_20 WHERE label = \"loen entertainment\"", "question": "What was the format when the label was loen entertainment?", "context": "CREATE TABLE table_name_20 (format VARCHAR, label VARCHAR)"}, {"answer": "SELECT number FROM table_name_15 WHERE builder = \"baldwin locomotive works\" AND works_number = 40864", "question": "With a works number of 40864 for the builder of Baldwin Locomotive Works, the number listed is?", "context": "CREATE TABLE table_name_15 (number VARCHAR, builder VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT works_number FROM table_name_88 WHERE type = \"0-4-4 forney locomotive\" AND builder = \"h. k. porter, inc\"", "question": "Builder H. K. Porter, inc who had a type of 0-4-4 Forney locomotive, has what works number?", "context": "CREATE TABLE table_name_88 (works_number VARCHAR, type VARCHAR, builder VARCHAR)"}, {"answer": "SELECT number FROM table_name_2 WHERE builder = \"baldwin locomotive works\" AND works_number = 40864", "question": "Baldwin Locomotive Works, also with works number 40864, is listed as what number?", "context": "CREATE TABLE table_name_2 (number VARCHAR, builder VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT number FROM table_name_7 WHERE works_number < 1563 AND builder = \"hinkley locomotive works\"", "question": "Hinkley Locomotive Works is listed as what number as it has a works number smaller than 1563?", "context": "CREATE TABLE table_name_7 (number VARCHAR, works_number VARCHAR, builder VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE outcome = \"winner\" AND opponent = \"angela haynes\"", "question": "What is Score, when Outcome is Winner, and when Opponent is Angela Haynes?", "context": "CREATE TABLE table_name_69 (score VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE championship = \"mackay\"", "question": "What is Date, when Championship is Mackay?", "context": "CREATE TABLE table_name_72 (date VARCHAR, championship VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_69 WHERE championship = \"p\u00e9tange\"", "question": "What is Opponent, when Championship is P\u00e9tange?", "context": "CREATE TABLE table_name_69 (opponent VARCHAR, championship VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_5 WHERE score = \"1-6, 3-6\"", "question": "What is Outcome, when Score is 1-6, 3-6?", "context": "CREATE TABLE table_name_5 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE score = \"6-3, 4-6, 0-6\"", "question": "What is Date, when Score is 6-3, 4-6, 0-6?", "context": "CREATE TABLE table_name_88 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE opponent = \"natalia rizhonkova\"", "question": "What is Score, when Opponent is Natalia Rizhonkova?", "context": "CREATE TABLE table_name_62 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_99 WHERE nuggets_points = 89", "question": "Which Game has a Nugget points of 89?", "context": "CREATE TABLE table_name_99 (game INTEGER, nuggets_points VARCHAR)"}, {"answer": "SELECT record FROM table_name_47 WHERE result = \"win\" AND streak = \"won 1\" AND game = 47", "question": "Which Record has a Result of win, and a Streak of won 1, and a Game of 47?", "context": "CREATE TABLE table_name_47 (record VARCHAR, game VARCHAR, result VARCHAR, streak VARCHAR)"}, {"answer": "SELECT SUM(opponents) FROM table_name_62 WHERE result = \"win\" AND nuggets_points < 115 AND opponent = \"washington\"", "question": "How many Opponents have a Result of win, and Nuggets points smaller than 115, and an Opponent of washington?", "context": "CREATE TABLE table_name_62 (opponents INTEGER, opponent VARCHAR, result VARCHAR, nuggets_points VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_name_34 WHERE result = \"loss\" AND game < 49 AND nuggets_points = 108", "question": "How many Opponents have a Result of loss, and a Game smaller than 49, and Nuggets points of 108?", "context": "CREATE TABLE table_name_34 (opponents VARCHAR, nuggets_points VARCHAR, result VARCHAR, game VARCHAR)"}, {"answer": "SELECT result FROM table_name_40 WHERE game < 37 AND streak = \"lost 1\" AND record = \"4-9\"", "question": "Which Result has a Game smaller than 37, and a Streak of lost 1, and a Record of 4-9?", "context": "CREATE TABLE table_name_40 (result VARCHAR, record VARCHAR, game VARCHAR, streak VARCHAR)"}, {"answer": "SELECT round FROM table_name_90 WHERE name = \"vladimir morozov\"", "question": "What round has a name of vladimir morozov?", "context": "CREATE TABLE table_name_90 (round VARCHAR, name VARCHAR)"}, {"answer": "SELECT record FROM table_name_36 WHERE date = \"12 december\"", "question": "What is the record for the date of 12 december?", "context": "CREATE TABLE table_name_36 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE name = \"ryan lochte\"", "question": "What is the date for the name ryan lochte?", "context": "CREATE TABLE table_name_79 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT record FROM table_name_6 WHERE date = \"15 december\" AND round = \"final\"", "question": "What is the record for the date 15 december, and a round of final?", "context": "CREATE TABLE table_name_6 (record VARCHAR, date VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_46 WHERE week = 11", "question": "What is the lowest attendance for week 11?", "context": "CREATE TABLE table_name_46 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_98 WHERE week = 4", "question": "What is the total number of spectators on week 4?", "context": "CREATE TABLE table_name_98 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT sample_size FROM table_name_35 WHERE date = \"may 2-7, 2007\" AND democrat = \"hillary clinton\"", "question": "What was the sample size for polling on May 2-7, 2007 for Hillary Clinton?", "context": "CREATE TABLE table_name_35 (sample_size VARCHAR, date VARCHAR, democrat VARCHAR)"}, {"answer": "SELECT republican FROM table_name_47 WHERE sample_size > 1087 AND democrat = \"hillary clinton\" AND margin_of_error = 2.6", "question": "Who was the republican when hillary clinton was the democrat and the sample size was more than 1087 with a margin of error of 2.6?", "context": "CREATE TABLE table_name_47 (republican VARCHAR, margin_of_error VARCHAR, sample_size VARCHAR, democrat VARCHAR)"}, {"answer": "SELECT poll_source FROM table_name_41 WHERE democrat = \"hillary clinton\" AND margin_of_error < 4.5 AND republican = \"john mccain\" AND date = \"may 2-7, 2007\"", "question": "Where is the poll source when Hillary clinton was the democrat, john mccain was the republican, and the margin of error was less than 4.5 on May 2-7, 2007?", "context": "CREATE TABLE table_name_41 (poll_source VARCHAR, date VARCHAR, republican VARCHAR, democrat VARCHAR, margin_of_error VARCHAR)"}, {"answer": "SELECT COUNT(sample_size) FROM table_name_59 WHERE poll_source = \"rasmussen reports\" AND margin_of_error > 4.5", "question": "What si the total sample size at rasmussen reports when the margin of error was bigger than 4.5?", "context": "CREATE TABLE table_name_59 (sample_size VARCHAR, poll_source VARCHAR, margin_of_error VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE republican = \"john mccain\" AND poll_source = \"quinnipiac\" AND democrat = \"barack obama\" AND sample_size > 1427", "question": "What is the date that the polls were going on at quinnipiac when john mccain was the republican, barack obama was the democrat and the sample size was bigger than 1427?", "context": "CREATE TABLE table_name_67 (date VARCHAR, sample_size VARCHAR, democrat VARCHAR, republican VARCHAR, poll_source VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_65 WHERE player = \"greg norman\"", "question": "What is To Par, when Player is Greg Norman?", "context": "CREATE TABLE table_name_65 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE money___$__ = \"32,200\" AND player = \"chip beck\"", "question": "What is Score, when Money ( $ ) is 32,200, and when Player is Chip Beck?", "context": "CREATE TABLE table_name_2 (score VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_1 WHERE player = \"greg norman\"", "question": "What is Money ( $ ), when Player is Greg Norman?", "context": "CREATE TABLE table_name_1 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_6 WHERE country = \"united states\" AND score = 73 - 76 - 72 - 66 = 287", "question": "What is Player, when Country is United States, and when Score is 73-76-72-66=287?", "context": "CREATE TABLE table_name_6 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_97 WHERE money___$__ = \"playoff\" AND score = 68 - 73 - 77 - 65 = 283", "question": "What is To Par, when Money ( $ ) is Playoff, and when Score is 68-73-77-65=283?", "context": "CREATE TABLE table_name_97 (to_par VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_80 WHERE player = \"ernie els\"", "question": "What country was Ernie Els from?", "context": "CREATE TABLE table_name_80 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_16 WHERE place = \"t5\" AND player = \"steve jones\"", "question": "What was the par for the t5 place player Steve Jones?", "context": "CREATE TABLE table_name_16 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT type FROM table_name_91 WHERE state = \"chen\" AND name = \"you\"", "question": "What type is You from the state of Chen?", "context": "CREATE TABLE table_name_91 (type VARCHAR, state VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_9 WHERE lane = 5 AND name = \"abubaker kaki khamis\"", "question": "What country had the runner abubaker kaki khamis in lane 5?", "context": "CREATE TABLE table_name_9 (country VARCHAR, lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(heat) FROM table_name_79 WHERE lane > 1 AND mark = \"1:48.61\"", "question": "What is the highest heat for a lane past 1 and mark of 1:48.61?", "context": "CREATE TABLE table_name_79 (heat INTEGER, lane VARCHAR, mark VARCHAR)"}, {"answer": "SELECT AVG(league) FROM table_name_20 WHERE name = \"benito lorenzi\" AND total < 143", "question": "What is average for Benito Lorenzi league when total is smaller than 143?", "context": "CREATE TABLE table_name_20 (league INTEGER, name VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(league) FROM table_name_42 WHERE total < 284 AND name = \"sandro mazzola\"", "question": "Which league has total smaller than 284, with Sandro Mazzola league?", "context": "CREATE TABLE table_name_42 (league INTEGER, total VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(election) FROM table_name_67 WHERE outcome_of_election = \"minority in parliament\" AND seats = \"2\"", "question": "What is the earliest election with 2 seats and the outcome of the election of minority in parliament?", "context": "CREATE TABLE table_name_67 (election INTEGER, outcome_of_election VARCHAR, seats VARCHAR)"}, {"answer": "SELECT seats FROM table_name_86 WHERE outcome_of_election = \"minority in parliament\" AND number_of_pnc_votes = \"186,226\"", "question": "How many seats does the election with the outcome of election of minority in parliament and 186,226 PNC votes have?", "context": "CREATE TABLE table_name_86 (seats VARCHAR, outcome_of_election VARCHAR, number_of_pnc_votes VARCHAR)"}, {"answer": "SELECT seats FROM table_name_72 WHERE election < 2004 AND share_of_votes = \"3.4%\"", "question": "How many seats did the election before 2004 with 3.4% share of votes have?", "context": "CREATE TABLE table_name_72 (seats VARCHAR, election VARCHAR, share_of_votes VARCHAR)"}, {"answer": "SELECT number_of_pnc_votes FROM table_name_39 WHERE election < 1996", "question": "How many PNC votes did the election before 1996 have?", "context": "CREATE TABLE table_name_39 (number_of_pnc_votes VARCHAR, election INTEGER)"}, {"answer": "SELECT COUNT(overall) FROM table_name_4 WHERE position = \"s\"", "question": "How many times is the postion S?", "context": "CREATE TABLE table_name_4 (overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_63 WHERE name = \"derek smith\" AND round > 3", "question": "how many times is the name Derek Smith when the round is higher than 3?", "context": "CREATE TABLE table_name_63 (overall VARCHAR, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_50 WHERE pick = 20", "question": "what is the lowest overall when the pick is 20?", "context": "CREATE TABLE table_name_50 (overall INTEGER, pick VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_32 WHERE overall < 17", "question": "what is the highest round when the overall is less than 17?", "context": "CREATE TABLE table_name_32 (round INTEGER, overall INTEGER)"}, {"answer": "SELECT partner FROM table_name_98 WHERE opponents_in_the_final = \"remi tezuka shuko aoyama\"", "question": "What is Partner, when Opponents In The Final is Remi Tezuka Shuko Aoyama?", "context": "CREATE TABLE table_name_98 (partner VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_84 WHERE score = \"4-1 5-4 (7) 4-2\"", "question": "What is Opponents In The Final, when Score is 4-1 5-4 (7) 4-2?", "context": "CREATE TABLE table_name_84 (opponents_in_the_final VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE opponents_in_the_final = \"maria-fernanda alves st\u00e9phanie dubois\"", "question": "What is Date, when Opponents In The Final, is Maria-Fernanda Alves St\u00e9phanie Dubois?", "context": "CREATE TABLE table_name_59 (date VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT location FROM table_name_5 WHERE event = \"fury fc 4: high voltage\"", "question": "Where was the Fury FC 4: High Voltage event held?", "context": "CREATE TABLE table_name_5 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT nat FROM table_name_93 WHERE ends = \"2009\"", "question": "What's the nat that ends in 2009?", "context": "CREATE TABLE table_name_93 (nat VARCHAR, ends VARCHAR)"}, {"answer": "SELECT type FROM table_name_69 WHERE moving_from = \"gimn\u00e0stic\"", "question": "What is the type when they move from Gimn\u00e0stic?", "context": "CREATE TABLE table_name_69 (type VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_19 WHERE ends = \"2012\"", "question": "What's the transfer window that ends in 2012?", "context": "CREATE TABLE table_name_19 (transfer_window VARCHAR, ends VARCHAR)"}, {"answer": "SELECT type FROM table_name_60 WHERE ends = \"2009\"", "question": "What's the type that ends in 2009?", "context": "CREATE TABLE table_name_60 (type VARCHAR, ends VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_53 WHERE type = \"transfer\" AND nat = \"esp\" AND name = \"de la red\"", "question": "What's the moving of the Esp with a transfer and named De La Red?", "context": "CREATE TABLE table_name_53 (moving_from VARCHAR, name VARCHAR, type VARCHAR, nat VARCHAR)"}, {"answer": "SELECT type FROM table_name_20 WHERE name = \"gonz\u00e1lez\"", "question": "What type is Gonz\u00e1lez?", "context": "CREATE TABLE table_name_20 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(sales) FROM table_name_81 WHERE peak = 1 AND artist = \"boris\"", "question": "How many sales took place with a peak of 1 for Boris?", "context": "CREATE TABLE table_name_81 (sales VARCHAR, peak VARCHAR, artist VARCHAR)"}, {"answer": "SELECT record FROM table_name_60 WHERE opponent = \"cincinnati royals\"", "question": "What was the record in the game where the opponent was the cincinnati royals?", "context": "CREATE TABLE table_name_60 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_43 WHERE opponent = \"san francisco warriors\" AND game = 25", "question": "What was the attendance of game 25 when the played the San Francisco Warriors?", "context": "CREATE TABLE table_name_43 (location_attendance VARCHAR, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_25 WHERE grid = \"6\"", "question": "Which manufacturer has a grid of 6?", "context": "CREATE TABLE table_name_25 (manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_72 WHERE manufacturer = \"honda\" AND grid = \"25\"", "question": "Who is the rider for Honda with a grid of 25?", "context": "CREATE TABLE table_name_72 (rider VARCHAR, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT laps FROM table_name_62 WHERE grid = \"5\"", "question": "How many laps has a grid of 5?", "context": "CREATE TABLE table_name_62 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_43 WHERE time_retired = \"accident\"", "question": "Who is the rider whose time/retired is accident?", "context": "CREATE TABLE table_name_43 (rider VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT laps FROM table_name_51 WHERE time_retired = \"+23.080\"", "question": "How many laps have a time/retired of +23.080?", "context": "CREATE TABLE table_name_51 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_68 WHERE rider = \"henk vd lagemaat\"", "question": "Who is the manufacturer for Henk Vd Lagemaat?", "context": "CREATE TABLE table_name_68 (manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT technology FROM table_name_88 WHERE gel_pouring = \"no\" AND analysis_time = \"8 days\"", "question": "what is the technology when the gel pouring is no and the analysis time is 8 days?", "context": "CREATE TABLE table_name_88 (technology VARCHAR, gel_pouring VARCHAR, analysis_time VARCHAR)"}, {"answer": "SELECT throughput__including_analysis_ FROM table_name_77 WHERE analysis_time = \"4 hours\"", "question": "what is the throughput (including analysis) when the analysis time is 4 hours?", "context": "CREATE TABLE table_name_77 (throughput__including_analysis_ VARCHAR, analysis_time VARCHAR)"}, {"answer": "SELECT geust FROM table_name_45 WHERE result = \"0:9\"", "question": "What is Geust, when Result is 0:9?", "context": "CREATE TABLE table_name_45 (geust VARCHAR, result VARCHAR)"}, {"answer": "SELECT home FROM table_name_49 WHERE time = \"18:00\" AND geust = \"servette fc (chl)\"", "question": "What is Home, when Time is 18:00, and when Geust is Servette FC (CHL)?", "context": "CREATE TABLE table_name_49 (home VARCHAR, time VARCHAR, geust VARCHAR)"}, {"answer": "SELECT time FROM table_name_77 WHERE geust = \"ac bellinzona (chl)\"", "question": "What is Time, when Geust is AC Bellinzona (CHL)?", "context": "CREATE TABLE table_name_77 (time VARCHAR, geust VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_1 WHERE transfer_window = \"winter\"", "question": "What was the transfer fee when winter was the transfer window?", "context": "CREATE TABLE table_name_1 (transfer_fee VARCHAR, transfer_window VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_68 WHERE transfer_window = \"winter\" AND moving_to = \"madureira\"", "question": "What transfer fee has both winter as the transfer window, and Madureira as the moving to?", "context": "CREATE TABLE table_name_68 (transfer_fee VARCHAR, transfer_window VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_12 WHERE transfer_fee = \"free\" AND nat = \"cyp\" AND transfer_window = \"winter\"", "question": "What was the moving that has a free transfer fee, and the nationality of CYP, and winter as the transfer window?", "context": "CREATE TABLE table_name_12 (moving_to VARCHAR, transfer_window VARCHAR, transfer_fee VARCHAR, nat VARCHAR)"}, {"answer": "SELECT name FROM table_name_9 WHERE moving_to = \"metalurh donetsk\"", "question": "Who is moving to Metalurh Donetsk?", "context": "CREATE TABLE table_name_9 (name VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_11 WHERE moving_to = \"villa rio\"", "question": "The player moving to Villa Rio has what transfer fee?", "context": "CREATE TABLE table_name_11 (transfer_fee VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_90 WHERE name = \"emerson\"", "question": "Emerson has what transfer window?", "context": "CREATE TABLE table_name_90 (transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT location FROM table_name_7 WHERE time = \"2:33\"", "question": "Where was the fight located that lasted a time of 2:33?", "context": "CREATE TABLE table_name_7 (location VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_7 WHERE attendance = 18 OFFSET 568", "question": "What is the total number of Game, when Attendance is \"18,568\"?", "context": "CREATE TABLE table_name_7 (game VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_21 WHERE county_and_state = \"silver bow county, montana\" AND capacity__thousands_of_metric_tons_ > 45", "question": "In Silver Bow County, Montana, when the capicity is more than 45 tons, what's the highest rank found?", "context": "CREATE TABLE table_name_21 (rank INTEGER, county_and_state VARCHAR, capacity__thousands_of_metric_tons_ VARCHAR)"}, {"answer": "SELECT mine FROM table_name_67 WHERE rank < 14 AND capacity__thousands_of_metric_tons_ > 5 AND county_and_state = \"pinal county, arizona\"", "question": "In Pinal County, Arizona, when there's a capacity of over 5 metric tons, and the rank is under 14, what's the mine called?", "context": "CREATE TABLE table_name_67 (mine VARCHAR, county_and_state VARCHAR, rank VARCHAR, capacity__thousands_of_metric_tons_ VARCHAR)"}, {"answer": "SELECT SUM(sets_lost) FROM table_name_26 WHERE loss < 3 AND rank > 1", "question": "How many sets lost have a loss smaller than 3 and a rank larger than 1?", "context": "CREATE TABLE table_name_26 (sets_lost INTEGER, loss VARCHAR, rank VARCHAR)"}, {"answer": "SELECT bids FROM table_name_34 WHERE champions = \"1\"", "question": "What is Bids, when Champions is \"1\"?", "context": "CREATE TABLE table_name_34 (bids VARCHAR, champions VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_38 WHERE week = \"october 21\"", "question": "Which finalist played in the week of October 21?", "context": "CREATE TABLE table_name_38 (finalist VARCHAR, week VARCHAR)"}, {"answer": "SELECT surface FROM table_name_27 WHERE week = \"october 21\"", "question": "On what surface did they play the match in the week of October 21?", "context": "CREATE TABLE table_name_27 (surface VARCHAR, week VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_91 WHERE tournament = \"monte carlo\"", "question": "Who was the finalist in the Monte Carlo Tournament?", "context": "CREATE TABLE table_name_91 (finalist VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_65 WHERE gold > 1 AND total > 4", "question": "What is the Rank of the Nation with more than 1 Gold and a more than 4 Total medals?", "context": "CREATE TABLE table_name_65 (rank INTEGER, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_37 WHERE rank = 4 AND silver < 1", "question": "What is the Gold for the Nation in Rank 4 with less than 1 Silver?", "context": "CREATE TABLE table_name_37 (gold INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_1 WHERE name = \"steven thompson\"", "question": "What is the transfer window for Steven Thompson?", "context": "CREATE TABLE table_name_1 (transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_35 WHERE name = \"kevin muscat\"", "question": "What type is Kevin Muscat?", "context": "CREATE TABLE table_name_35 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT freestyle_leg FROM table_name_5 WHERE country = \"netherlands\"", "question": "What is the freestyle leg for the Netherlands?", "context": "CREATE TABLE table_name_5 (freestyle_leg VARCHAR, country VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_37 WHERE location = \"europe\"", "question": "What is the release date when the location is Europe?", "context": "CREATE TABLE table_name_37 (release_date VARCHAR, location VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_96 WHERE location = \"germany\"", "question": "What is the release in Germany?", "context": "CREATE TABLE table_name_96 (release_date VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_name_42 WHERE release_date = \"december 1966\" AND location = \"uk\"", "question": "What is the name with a release date of December 1966, and a Location of UK?", "context": "CREATE TABLE table_name_42 (name VARCHAR, release_date VARCHAR, location VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_5 WHERE location = \"us\"", "question": "What is the US release date?", "context": "CREATE TABLE table_name_5 (release_date VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_name_24 WHERE location = \"uk\" AND release_date = \"december 1966\"", "question": "What is the name in the UK, with a release date of December 1966?", "context": "CREATE TABLE table_name_24 (name VARCHAR, location VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_84 WHERE score = \"107-104\"", "question": "What away team scored 107-104?", "context": "CREATE TABLE table_name_84 (away_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT report FROM table_name_59 WHERE away_team = \"new zealand breakers\"", "question": "What was the away team for the New Zealand breakers?", "context": "CREATE TABLE table_name_59 (report VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_73 WHERE score = \"63-69\"", "question": "What was the away team that scored 63-69?", "context": "CREATE TABLE table_name_73 (away_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_82 WHERE player = \"davis love iii\"", "question": "Where is the player Davis Love III?", "context": "CREATE TABLE table_name_82 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_31 WHERE team = \"dale coyne racing\" AND qual_1 = \"1:00.081\"", "question": "What is the second qualifying time for the dale coyne racing team with a first qualifying time of 1:00.081?", "context": "CREATE TABLE table_name_31 (qual_2 VARCHAR, team VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT team FROM table_name_71 WHERE qual_2 = \"58.539\"", "question": "Which team had a second qualifying time of 58.539?", "context": "CREATE TABLE table_name_71 (team VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT best FROM table_name_33 WHERE team = \"forsythe racing\" AND name = \"patrick carpentier\"", "question": "What is the best time from patrick carpentier from the forsythe racing team?", "context": "CREATE TABLE table_name_33 (best VARCHAR, team VARCHAR, name VARCHAR)"}, {"answer": "SELECT best FROM table_name_6 WHERE qual_1 = \"59.448\"", "question": "What is the best time for a team with a first-qualifying time of 59.448?", "context": "CREATE TABLE table_name_6 (best VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT name FROM table_name_34 WHERE best = \"57.546\"", "question": "What is the name of the racer with a best time of 57.546?", "context": "CREATE TABLE table_name_34 (name VARCHAR, best VARCHAR)"}, {"answer": "SELECT name FROM table_name_76 WHERE qual_1 = \"58.991\"", "question": "What is the name of the racer with a first-qualifying time of 58.991?", "context": "CREATE TABLE table_name_76 (name VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_3 WHERE played > 126", "question": "What is the average Points, when Played is greater than 126?", "context": "CREATE TABLE table_name_3 (points INTEGER, played INTEGER)"}, {"answer": "SELECT SUM(average) FROM table_name_64 WHERE 2006 = \"36/40\" AND played > 126", "question": "What is the sum of Average, when 2006 is \"36/40\", and when Played is greater than 126?", "context": "CREATE TABLE table_name_64 (average INTEGER, played VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_13 WHERE team = \"tacuary\"", "question": "What is 2006, when Team is \"Tacuary\"?", "context": "CREATE TABLE table_name_13 (team VARCHAR)"}, {"answer": "SELECT rank FROM table_name_94 WHERE bronze = 3", "question": "Which Rank has a Bronze of 3?", "context": "CREATE TABLE table_name_94 (rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_52 WHERE year = \"1956\"", "question": "What are the Runner(s)-up of the 1956 Championship?", "context": "CREATE TABLE table_name_52 (runner_s__up VARCHAR, year VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_41 WHERE year = \"1972\"", "question": "What are the Runner(s)-up of the 1972 Championship?", "context": "CREATE TABLE table_name_41 (runner_s__up VARCHAR, year VARCHAR)"}, {"answer": "SELECT country FROM table_name_12 WHERE score = \"293\"", "question": "What is the Country of the Championship with a Score of 293?", "context": "CREATE TABLE table_name_12 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_52 WHERE nickname = \"fightin' blue hens\"", "question": "What is the total enrollment at the school that has the nickname of the Fightin' Blue Hens?", "context": "CREATE TABLE table_name_52 (enrollment VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_1 WHERE set_1 = \"14\u201325\"", "question": "What was the score for set 3 when set 1 was 14\u201325?", "context": "CREATE TABLE table_name_1 (set_3 VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT time FROM table_name_23 WHERE set_3 = \"31\u201329\"", "question": "What is the time when the set 3 score is 31\u201329?", "context": "CREATE TABLE table_name_23 (time VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT total FROM table_name_75 WHERE set_1 = \"14\u201325\"", "question": "What is the total when the score for set 1 is 14\u201325?", "context": "CREATE TABLE table_name_75 (total VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT total FROM table_name_21 WHERE set_2 = \"20\u201325\"", "question": "What is the total when the score for set 2 is 20\u201325?", "context": "CREATE TABLE table_name_21 (total VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT total FROM table_name_86 WHERE set_2 = \"25\u201322\"", "question": "What is the total when the score for set 2 is 25\u201322?", "context": "CREATE TABLE table_name_86 (total VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT price FROM table_name_20 WHERE downstream = \"150 mbps\"", "question": "What is the price of 150 mbps downstread?", "context": "CREATE TABLE table_name_20 (price VARCHAR, downstream VARCHAR)"}, {"answer": "SELECT upstream FROM table_name_1 WHERE price = \"65 chf\"", "question": "What is the upstream with the price 65 chf?", "context": "CREATE TABLE table_name_1 (upstream VARCHAR, price VARCHAR)"}, {"answer": "SELECT price FROM table_name_63 WHERE internet_plan = \"internet 150\"", "question": "What is the price of the internet 150 plans?", "context": "CREATE TABLE table_name_63 (price VARCHAR, internet_plan VARCHAR)"}, {"answer": "SELECT upstream FROM table_name_82 WHERE downstream = \"100 mbps\"", "question": "What is the upstream for the 100 mbps downstream?", "context": "CREATE TABLE table_name_82 (upstream VARCHAR, downstream VARCHAR)"}, {"answer": "SELECT price FROM table_name_22 WHERE downstream = \"60 mbps\"", "question": "What is the price of 60 mbps downstream?", "context": "CREATE TABLE table_name_22 (price VARCHAR, downstream VARCHAR)"}, {"answer": "SELECT upstream FROM table_name_42 WHERE internet_plan = \"internet 100\"", "question": "What is the upstream for the internet 100 plans?", "context": "CREATE TABLE table_name_42 (upstream VARCHAR, internet_plan VARCHAR)"}, {"answer": "SELECT club_team FROM table_name_12 WHERE round < 4", "question": "Which club team was the player from who was selected in a round under 4?", "context": "CREATE TABLE table_name_12 (club_team VARCHAR, round INTEGER)"}, {"answer": "SELECT club_team FROM table_name_98 WHERE player = \"kyle de coste\"", "question": "What was the club team for Kyle de Coste?", "context": "CREATE TABLE table_name_98 (club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(w_plyf) FROM table_name_99 WHERE first_yr < 1960 AND g_plyf > 0 AND g_ > _500 < 43 AND w_l_percentage < 0.578", "question": "What is the highest w plyf with a first yr before 1960, a G plyf greater than 0, a G > .500 less than 43, and a w-l% less than 0.578?", "context": "CREATE TABLE table_name_99 (w_plyf INTEGER, w_l_percentage VARCHAR, first_yr VARCHAR, g_plyf VARCHAR, g_ VARCHAR, _500 VARCHAR)"}, {"answer": "SELECT SUM(yr_plyf) FROM table_name_6 WHERE g_plyf = 0 AND coach = \"ed robinson\"", "question": "What is the sum of the yr plyf of coach ed robinson, who has a G plyf of 0?", "context": "CREATE TABLE table_name_6 (yr_plyf INTEGER, g_plyf VARCHAR, coach VARCHAR)"}, {"answer": "SELECT COUNT(yr_plyf) FROM table_name_56 WHERE g_plyf < 0", "question": "What is the total number of yr plyf with a G plyf less than 0?", "context": "CREATE TABLE table_name_56 (yr_plyf VARCHAR, g_plyf INTEGER)"}, {"answer": "SELECT coach FROM table_name_51 WHERE w_l_percentage > 0.516 AND first_yr < 1925 AND yr_plyf > 2 AND last_yr = 1967", "question": "Who is the coach with a w-l% greater than 0.516, a first yr before 1925, a yr plyf greater than 2, and a last yr in 1967?", "context": "CREATE TABLE table_name_51 (coach VARCHAR, last_yr VARCHAR, yr_plyf VARCHAR, w_l_percentage VARCHAR, first_yr VARCHAR)"}, {"answer": "SELECT AVG(last_yr) FROM table_name_98 WHERE l_plyf < 0", "question": "What is the average last yr with an l plyf less than 0?", "context": "CREATE TABLE table_name_98 (last_yr INTEGER, l_plyf INTEGER)"}, {"answer": "SELECT MIN(last_yr) FROM table_name_97 WHERE yr_plyf < 0", "question": "What is the earliest last year with a yr plyf less than 0?", "context": "CREATE TABLE table_name_97 (last_yr INTEGER, yr_plyf INTEGER)"}, {"answer": "SELECT to_par FROM table_name_59 WHERE score = 69 - 70 = 139", "question": "What is the To par of the Player with a Score of 69-70=139?", "context": "CREATE TABLE table_name_59 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_43 WHERE place = \"t3\" AND player = \"bob gilder\"", "question": "What is Bob Gilder in Place T3's To par?", "context": "CREATE TABLE table_name_43 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_19 WHERE game < 82 AND location_attendance = \"quicken loans arena 20,562\" AND high_rebounds = \"\u017eydr\u016bnas ilgauskas (13)\"", "question": "What is High Points, when Game is less than 82, when Location Attendance is \"Quicken Loans Arena 20,562\", and when High Rebounds is \"\u017dydr\u016bnas Ilgauskas (13)\"?", "context": "CREATE TABLE table_name_19 (high_points VARCHAR, high_rebounds VARCHAR, game VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_11 WHERE high_assists = \"maurice williams (8)\"", "question": "What is the lowest Game, when High Assists is \"Maurice Williams (8)\"?", "context": "CREATE TABLE table_name_11 (game INTEGER, high_assists VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_95 WHERE date = \"april 12\"", "question": "What is the lowest Game, when Date is \"April 12\"?", "context": "CREATE TABLE table_name_95 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_43 WHERE date = \"5 sep\"", "question": "What is Winner, when Date is 5 Sep?", "context": "CREATE TABLE table_name_43 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_96 WHERE circuit = \"queensland raceway\" AND winner = \"garth tander\"", "question": "What is Team, when Circuit is Queensland Raceway, and when Winner is Garth Tander?", "context": "CREATE TABLE table_name_96 (team VARCHAR, circuit VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE team = \"holden racing team\" AND circuit = \"eastern creek raceway\"", "question": "What is Date, when Team is Holden Racing Team, and when Circuit is Eastern Creek Raceway?", "context": "CREATE TABLE table_name_40 (date VARCHAR, team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT team FROM table_name_1 WHERE circuit = \"phillip island grand prix circuit\"", "question": "What is Team, when Circuit is Phillip Island Grand Prix Circuit?", "context": "CREATE TABLE table_name_1 (team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_26 WHERE series = \"astc round 4\"", "question": "What is Circuit, when Series is ASTC Round 4?", "context": "CREATE TABLE table_name_26 (circuit VARCHAR, series VARCHAR)"}, {"answer": "SELECT COUNT(react) FROM table_name_78 WHERE name = \"sean wroe\" AND lane > 2", "question": "What is the total number of React, when Name is Sean Wroe, and when Lane is greater than 2?", "context": "CREATE TABLE table_name_78 (react VARCHAR, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_44 WHERE mark = \"46.65\" AND react > 0.251", "question": "What is the highest Lane, when Mark is 46.65, and when React is greater than 0.251?", "context": "CREATE TABLE table_name_44 (lane INTEGER, mark VARCHAR, react VARCHAR)"}, {"answer": "SELECT MIN(react) FROM table_name_61 WHERE mark = \"46.26 sb\" AND lane > 6", "question": "What is the lowest React, when Mark is 46.26 sb, and when Lane is greater than 6?", "context": "CREATE TABLE table_name_61 (react INTEGER, mark VARCHAR, lane VARCHAR)"}, {"answer": "SELECT mark FROM table_name_44 WHERE lane > 2 AND country = \"bahamas\"", "question": "What is Mark, when Lane is greater than 2, and when Country is Bahamas?", "context": "CREATE TABLE table_name_44 (mark VARCHAR, lane VARCHAR, country VARCHAR)"}, {"answer": "SELECT number FROM table_name_11 WHERE language = \"belarusian\"", "question": "What is the number of the belarusian language?", "context": "CREATE TABLE table_name_11 (number VARCHAR, language VARCHAR)"}, {"answer": "SELECT number FROM table_name_91 WHERE percentage___percentage_ = \"80.62\"", "question": "What is the number with an 80.62 percentage?", "context": "CREATE TABLE table_name_91 (number VARCHAR, percentage___percentage_ VARCHAR)"}, {"answer": "SELECT males FROM table_name_82 WHERE percentage___percentage_ = \"80.62\"", "question": "How many males have a percentage of 80.62?", "context": "CREATE TABLE table_name_82 (males VARCHAR, percentage___percentage_ VARCHAR)"}, {"answer": "SELECT name FROM table_name_8 WHERE team = \"new york knicks\" AND wsu_year_s_ = \"1965-68\"", "question": "What is Name, when Team is New York Knicks, and when WSU Year(s) is 1965-68?", "context": "CREATE TABLE table_name_8 (name VARCHAR, team VARCHAR, wsu_year_s_ VARCHAR)"}, {"answer": "SELECT name FROM table_name_89 WHERE wsu_year_s_ = \"1981-82\"", "question": "What is Name, when WSU Year(s) is 1981-82?", "context": "CREATE TABLE table_name_89 (name VARCHAR, wsu_year_s_ VARCHAR)"}, {"answer": "SELECT wsu_year_s_ FROM table_name_88 WHERE pro_year_s_ = \"1974-77\"", "question": "What is WSU Year(s), when Pro Year(s) is 1974-77?", "context": "CREATE TABLE table_name_88 (wsu_year_s_ VARCHAR, pro_year_s_ VARCHAR)"}, {"answer": "SELECT pro_year_s_ FROM table_name_79 WHERE team = \"cincinnati royals\"", "question": "What is Pro Year(s), when Team is Cincinnati Royals?", "context": "CREATE TABLE table_name_79 (pro_year_s_ VARCHAR, team VARCHAR)"}, {"answer": "SELECT position FROM table_name_77 WHERE team = \"cincinnati royals\"", "question": "What is Position, when Team is Cincinnati Royals?", "context": "CREATE TABLE table_name_77 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT name FROM table_name_3 WHERE team = \"detroit pistons\" AND wsu_year_s_ = \"1979-82\"", "question": "What is Name, when Team is Detroit Pistons, and when WSU Year(s) is 1979-82?", "context": "CREATE TABLE table_name_3 (name VARCHAR, team VARCHAR, wsu_year_s_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_84 WHERE overall < 314 AND pick < 8", "question": "What is Position, when Overallis less than 314, and when Pick is less than 8?", "context": "CREATE TABLE table_name_84 (position VARCHAR, overall VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_8 WHERE round > 11 AND pick > 10", "question": "What is the average value of Overall, when Round is greater than 11, and when Pick is greater than 10?", "context": "CREATE TABLE table_name_8 (overall INTEGER, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT name FROM table_name_59 WHERE overall > 132 AND round = 12", "question": "What is Name, when Overall is greater than 132, and when Round is 12?", "context": "CREATE TABLE table_name_59 (name VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT college FROM table_name_18 WHERE pick = 20", "question": "What is College, when Pick is 20?", "context": "CREATE TABLE table_name_18 (college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_80 WHERE pick = 19", "question": "What is average Overall, when Pick is 19?", "context": "CREATE TABLE table_name_80 (overall INTEGER, pick VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_29 WHERE round > 3 AND college = \"princeton\"", "question": "What is the average pick for Princeton after round 3?", "context": "CREATE TABLE table_name_29 (pick INTEGER, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_86 WHERE college = \"clark\"", "question": "What is the earliest round Clark was in?", "context": "CREATE TABLE table_name_86 (round INTEGER, college VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_12 WHERE home_team = \"gillingham\"", "question": "What is the tie number when the home team was gillingham?", "context": "CREATE TABLE table_name_12 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE home_team = \"goole town\"", "question": "What was the score when the home team was goole town?", "context": "CREATE TABLE table_name_84 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE home_team = \"brentford\"", "question": "What date had the home team as brentford?", "context": "CREATE TABLE table_name_30 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_96 WHERE away_team = \"bradford park avenue\"", "question": "What was the tie number when bradford park avenue was the away team?", "context": "CREATE TABLE table_name_96 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT house_1950 FROM table_name_39 WHERE governors_1950 = \"governors 1995\"", "question": "What shows for House 1950 when the Governors 1950 show governors 1995?", "context": "CREATE TABLE table_name_39 (house_1950 VARCHAR, governors_1950 VARCHAR)"}, {"answer": "SELECT house_1950 FROM table_name_19 WHERE general_1950 = \"general 1986\"", "question": "What shows for House 1950 when the General 1950 is general 1986?", "context": "CREATE TABLE table_name_19 (house_1950 VARCHAR, general_1950 VARCHAR)"}, {"answer": "SELECT governors_1950 FROM table_name_46 WHERE general_1950 = \"general 1979\"", "question": "What is the Governors 1950 when the General 1950 is general 1979?", "context": "CREATE TABLE table_name_46 (governors_1950 VARCHAR, general_1950 VARCHAR)"}, {"answer": "SELECT house_1950 FROM table_name_17 WHERE 1950 < 1980 AND governors_1950 = \"governors 1970\"", "question": "What shows for House 1950 with a 1950 less than 1980, and Governors 1950 of governors 1970?", "context": "CREATE TABLE table_name_17 (house_1950 VARCHAR, governors_1950 VARCHAR)"}, {"answer": "SELECT month FROM table_name_83 WHERE year < 1973 AND album = \"united we stand\"", "question": "What month before 1973 is listed for the album united we stand?", "context": "CREATE TABLE table_name_83 (month VARCHAR, year VARCHAR, album VARCHAR)"}, {"answer": "SELECT name_of_the_river FROM table_name_31 WHERE name_of_the_state_where_found_in_india = \"madhya pradesh\"", "question": "What is the name of the river found in Madhya Pradesh, India?", "context": "CREATE TABLE table_name_31 (name_of_the_river VARCHAR, name_of_the_state_where_found_in_india VARCHAR)"}, {"answer": "SELECT name_of_deity FROM table_name_29 WHERE name_of_the_state_where_found_in_india = \"bihar\"", "question": "What is the name of the deity that the state of Bihar was named after?", "context": "CREATE TABLE table_name_29 (name_of_deity VARCHAR, name_of_the_state_where_found_in_india VARCHAR)"}, {"answer": "SELECT name_of_deity FROM table_name_16 WHERE name_of_the_river = \"sone\"", "question": "What is the name of the diety for the river of sone?", "context": "CREATE TABLE table_name_16 (name_of_deity VARCHAR, name_of_the_river VARCHAR)"}, {"answer": "SELECT name_of_the_stone__sila_ FROM table_name_13 WHERE name_of_the_state_where_found_in_india = \"andhra pradesh\"", "question": "What is the name of the stone found in Andhra Pradesh, India?", "context": "CREATE TABLE table_name_13 (name_of_the_stone__sila_ VARCHAR, name_of_the_state_where_found_in_india VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE score = \"103-94\"", "question": "What date was the game score 103-94?", "context": "CREATE TABLE table_name_26 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_12 WHERE home_team = \"perth wildcats\"", "question": "Who is the away team that played home team of Perth Wildcats?", "context": "CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE date = \"29 november\" AND venue = \"state sports centre\"", "question": "What is the score of the game that was played on 29 November at State Sports Centre?", "context": "CREATE TABLE table_name_29 (score VARCHAR, date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE home_team = \"gold coast blaze\"", "question": "What date did home team Gold Coast Blaze play?", "context": "CREATE TABLE table_name_14 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT report FROM table_name_89 WHERE date = \"29 november\" AND away_team = \"melbourne tigers\"", "question": "What kind of report was for the game played on 29 November with Melbourne Tigers being the away team?", "context": "CREATE TABLE table_name_89 (report VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_82 WHERE home_team = \"perth wildcats\"", "question": "Who is the away team that played home team Perth Wildcats?", "context": "CREATE TABLE table_name_82 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_79 WHERE week = 11", "question": "Who did they play in week 11?", "context": "CREATE TABLE table_name_79 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE week = 6", "question": "What day did they play in week 6?", "context": "CREATE TABLE table_name_36 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE score = \"3-1\" AND attendance = \"32 590\"", "question": "Name the Date which has a Score of 3-1 and Attendances of 32 590?", "context": "CREATE TABLE table_name_52 (date VARCHAR, score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT venue FROM table_name_68 WHERE date = \"2004-07-24\"", "question": "Which Venue is on 2004-07-24?", "context": "CREATE TABLE table_name_68 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE venue = \"idrottsparken\"", "question": "Which Score has a Venue of idrottsparken?", "context": "CREATE TABLE table_name_31 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT comp FROM table_name_84 WHERE date = \"2004-10-17\"", "question": "Which Comp is on 2004-10-17?", "context": "CREATE TABLE table_name_84 (comp VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_84 WHERE opponents = \"halmstad\" AND score = \"1-1\"", "question": "Which Venue has a Opponents of halmstad and a Score of 1-1?", "context": "CREATE TABLE table_name_84 (venue VARCHAR, opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_66 WHERE venue = \"ryavallen\"", "question": "Which Attendance that has a Venue of ryavallen?", "context": "CREATE TABLE table_name_66 (attendance VARCHAR, venue VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_63 WHERE outcome = \"winner\" AND date = \"13 july 2013\"", "question": "What is Tournament, when Outcome is Winner, and when Date is 13 July 2013?", "context": "CREATE TABLE table_name_63 (tournament VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE outcome = \"winner\" AND opponent = \"an-sophie mestach\"", "question": "What is Date, when Outcome is Winner, and when Opponent is An-Sophie Mestach?", "context": "CREATE TABLE table_name_68 (date VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE date = \"10 july 2011\"", "question": "What is Score, when Date is 10 July 2011?", "context": "CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT network FROM table_name_3 WHERE play_by_play = \"jack edwards\" AND year = 2000", "question": "What network has a Play-by-play by Jack Edwards in 2000?", "context": "CREATE TABLE table_name_3 (network VARCHAR, play_by_play VARCHAR, year VARCHAR)"}, {"answer": "SELECT pregame_host FROM table_name_98 WHERE network = \"bold\"", "question": "What is the name of the pregame host when Bold was the network?", "context": "CREATE TABLE table_name_98 (pregame_host VARCHAR, network VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_name_11 WHERE color_commentator_s_ = \"eric wynalda\" AND year < 2005", "question": "What was the Play-by-play when the color commentator was Eric Wynalda, earlier than 2005?", "context": "CREATE TABLE table_name_11 (play_by_play VARCHAR, color_commentator_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT pregame_host FROM table_name_67 WHERE play_by_play = \"jp dellacamera\" AND year < 2009 AND color_commentator_s_ = \"ty keough\"", "question": "What is the name of the pregame host when the Play-by-play was by JP Dellacamera, earlier than 2009, and Color commentator(s) was Ty Keough?", "context": "CREATE TABLE table_name_67 (pregame_host VARCHAR, color_commentator_s_ VARCHAR, play_by_play VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE score = \"3\u20130\" AND set_1 = \"25\u201322\"", "question": "What date was the score 3\u20130, and set 1 was 25\u201322?", "context": "CREATE TABLE table_name_88 (date VARCHAR, score VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE total = \"56\u201375\"", "question": "What date was the total 56\u201375?", "context": "CREATE TABLE table_name_31 (date VARCHAR, total VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_34 WHERE set_3 = \"25\u201315\"", "question": "What is the Set 1 when Set 3 was 25\u201315?", "context": "CREATE TABLE table_name_34 (set_1 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE total = \"75\u201345\"", "question": "What date was the total 75\u201345?", "context": "CREATE TABLE table_name_42 (date VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(december) FROM table_name_88 WHERE opponent = \"atlanta flames\" AND game < 40", "question": "What is the sum of the dates in december that were against the atlanta flames before game 40?", "context": "CREATE TABLE table_name_88 (december INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE game > 26 AND opponent = \"montreal canadiens\"", "question": "What was the score of the game against montreal canadiens after game 26?", "context": "CREATE TABLE table_name_59 (score VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_6 WHERE player = \"grant long\"", "question": "In what Round was Grant Long Drafted?", "context": "CREATE TABLE table_name_6 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_70 WHERE school_club_team = \"memphis\"", "question": "What is the Player from Memphis?", "context": "CREATE TABLE table_name_70 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_58 WHERE pick > 33 AND round > 2", "question": "What Player was picked after Round 2 with a Pick number larger than 33?", "context": "CREATE TABLE table_name_58 (player VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_75 WHERE school_club_team = \"memphis\"", "question": "In what Round was the Memphis Player drafted?", "context": "CREATE TABLE table_name_75 (round INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_22 WHERE years_for_grizzlies = \"2006-2009\"", "question": "Which School/Club Team holds the 2006-2009 Years of Grizzlies ?", "context": "CREATE TABLE table_name_22 (school_club_team VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT player FROM table_name_14 WHERE years_for_grizzlies = \"1998-2000\"", "question": "Who was the Player in the 1998-2000 Year of Grizzlies?", "context": "CREATE TABLE table_name_14 (player VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_54 WHERE years_for_grizzlies = \"1998-2000\"", "question": "What is the Nationality of the 1998-2000 Years for Grizzlies?", "context": "CREATE TABLE table_name_54 (nationality VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT player FROM table_name_71 WHERE nationality = \"united states\" AND position = \"small forward\" AND years_for_grizzlies = \"1999-2002\"", "question": "Who was the 1999-2002 Years for Grizzlies small forward Player who was from the United States?", "context": "CREATE TABLE table_name_71 (player VARCHAR, years_for_grizzlies VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_69 WHERE position = \"shooting guard\"", "question": "Which Player is the shooting guard?", "context": "CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_65 WHERE game = 44", "question": "What is the location and attendance of game 44?", "context": "CREATE TABLE table_name_65 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_76 WHERE decision = \"clemmensen\" AND game = 42", "question": "What is the record of game 42, which had a clemmensen decision?", "context": "CREATE TABLE table_name_76 (record VARCHAR, decision VARCHAR, game VARCHAR)"}, {"answer": "SELECT country FROM table_name_19 WHERE to_par = \"e\" AND score = 71 - 73 - 70 - 74 = 288", "question": "What country parred E and scored 71-73-70-74=288?", "context": "CREATE TABLE table_name_19 (country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_13 WHERE score = 73 - 71 - 70 - 73 = 287", "question": "How much money was scored for 73-71-70-73=287?", "context": "CREATE TABLE table_name_13 (money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_44 WHERE to_par = \"e\" AND player = \"mark o'meara\"", "question": "What country has to par E with Mark O'Meara?", "context": "CREATE TABLE table_name_44 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_91 WHERE place = \"t6\" AND player = \"vijay singh\"", "question": "What country placed t6 with player Vijay Singh?", "context": "CREATE TABLE table_name_91 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_16 WHERE player = \"david toms\"", "question": "How much money did David Toms get?", "context": "CREATE TABLE table_name_16 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT game FROM table_name_94 WHERE date = \"april 26\"", "question": "What is the playoffs Game number on April 26?", "context": "CREATE TABLE table_name_94 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE game = \"4\"", "question": "What is the Score of Game 4?", "context": "CREATE TABLE table_name_98 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_59 WHERE date = \"april 30\"", "question": "What is the playoff Game on April 30?", "context": "CREATE TABLE table_name_59 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE score = \"l 115\u2013118 (ot)\"", "question": "What is the Date of the game with a Score of L 115\u2013118 (OT)?", "context": "CREATE TABLE table_name_75 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_20 WHERE attendance = \"27,321\"", "question": "What was the result when there were 27,321 in attendance?", "context": "CREATE TABLE table_name_20 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_63 WHERE site = \"dowdy-ficklen stadium \u2022 greenville, nc\" AND opponent = \"ohio\"", "question": "What is the number in attendance at Dowdy-Ficklen stadium \u2022 Greenville, NC, and the opponent was Ohio?", "context": "CREATE TABLE table_name_63 (attendance VARCHAR, site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE site = \"dowdy-ficklen stadium \u2022 greenville, nc\" AND attendance = \"27,321\"", "question": "What date was the game at Dowdy-Ficklen stadium \u2022 Greenville, NC, with 27,321 in attendance?", "context": "CREATE TABLE table_name_96 (date VARCHAR, site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE attendance = \"27,321\"", "question": "What team was the opponent when there were 27,321 in attendance?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE site = \"williams-brice stadium \u2022 columbia, sc\"", "question": "What date was the game at Williams-Brice stadium \u2022 Columbia, SC?", "context": "CREATE TABLE table_name_75 (date VARCHAR, site VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_20 WHERE winning_score = 67 - 69 - 67 - 69 = 272", "question": "Can you tell me the Margin of victory that has the Winning score of 67-69-67-69=272?", "context": "CREATE TABLE table_name_20 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT AVG(date) FROM table_name_80 WHERE label = \"cbs\" AND region = \"australia\" AND catalog = \"sbp 241031\"", "question": "WHAT IS THE AVERAGE DATE FOR CBS LABEL, IN AUSTRALIA, AND SBP 241031 FOR CATALOG?", "context": "CREATE TABLE table_name_80 (date INTEGER, catalog VARCHAR, label VARCHAR, region VARCHAR)"}, {"answer": "SELECT MAX(date) FROM table_name_70 WHERE catalog = \"486553.4\"", "question": "WHAT DATE HAS A CATALOG OF 486553.4?", "context": "CREATE TABLE table_name_70 (date INTEGER, catalog VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_23 WHERE region = \"korea\" AND format = \"cd\"", "question": "WHAT IS THE LOWEST DATE FOR KOREA, IN CD FORMAT?", "context": "CREATE TABLE table_name_23 (date INTEGER, region VARCHAR, format VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_70 WHERE 2006 = \"1r\"", "question": "What is 2008, when 2006 is \"1R\"?", "context": "CREATE TABLE table_name_70 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_93 WHERE 2006 = \"a\" AND 2009 = \"a\"", "question": "What is Tournament, when 2006 is \"A\", and when 2009 is \"A\"?", "context": "CREATE TABLE table_name_93 (tournament VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_73 WHERE 2006 = \"1r\"", "question": "What is 2005, when 2006 is \"1R\"?", "context": "CREATE TABLE table_name_73 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_40 WHERE 2008 = \"2r\"", "question": "What is 2011, when 2008 is \"2R\"?", "context": "CREATE TABLE table_name_40 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_74 WHERE 2005 = \"2r\" AND 2006 = \"1r\"", "question": "What is 2004, when 2005 is \"2R\", and when 2006 is \"1R\"", "context": "CREATE TABLE table_name_74 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_28 WHERE 2009 = \"a\"", "question": "What is 2004, when 2009 is \"A\"?", "context": "CREATE TABLE table_name_28 (Id VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_21 WHERE method = \"ko (slam)\" AND record = \"13\u20131\"", "question": "What was the name of the opponent when the method was ko (slam), and record was 13\u20131?", "context": "CREATE TABLE table_name_21 (opponent VARCHAR, method VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_37 WHERE round > 2 AND name = \"scott turner\"", "question": "What is the highest pick of scott turner, who has a round greater than 2?", "context": "CREATE TABLE table_name_37 (pick INTEGER, round VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_69 WHERE round > 4 AND position = \"ot\"", "question": "What is the name of the ot position player with a round greater than 4?", "context": "CREATE TABLE table_name_69 (name VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_94 WHERE name = \"darryl pounds\" AND overall > 68", "question": "What is the sum of the pick of darryl pounds, who has an overall greater than 68?", "context": "CREATE TABLE table_name_94 (pick INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_39 WHERE college = \"lehigh\" AND overall < 152", "question": "What is the total number of rounds of the player from lehigh college with an overall less than 152?", "context": "CREATE TABLE table_name_39 (round VARCHAR, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_42 WHERE pick = 3", "question": "What is the highest round of pick 3?", "context": "CREATE TABLE table_name_42 (round INTEGER, pick VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_59 WHERE position = \"ot\" AND pick > 5", "question": "What is the total overall number of the ot position player with a pick greater than 5?", "context": "CREATE TABLE table_name_59 (overall VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_87 WHERE singapore_cup = \"0 (1)\"", "question": "What rank does the Singapore Cup of 0 (1) have?", "context": "CREATE TABLE table_name_87 (rank INTEGER, singapore_cup VARCHAR)"}, {"answer": "SELECT singapore_league_cup FROM table_name_99 WHERE name = \"masahiro fukasawa\"", "question": "What Singapore League Cup does Masahiro Fukasawa have?", "context": "CREATE TABLE table_name_99 (singapore_league_cup VARCHAR, name VARCHAR)"}, {"answer": "SELECT total FROM table_name_41 WHERE name = \"norikazu murakami\"", "question": "What is Norikazu Murakami's total?", "context": "CREATE TABLE table_name_41 (total VARCHAR, name VARCHAR)"}, {"answer": "SELECT rank FROM table_name_11 WHERE total = \"3 (20)\"", "question": "What is the rank for the total that has 3 (20)?", "context": "CREATE TABLE table_name_11 (rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT afc_cup FROM table_name_17 WHERE name = \"masahiro fukasawa\"", "question": "Which AFC cup does Masahiro Fukasawa have?", "context": "CREATE TABLE table_name_17 (afc_cup VARCHAR, name VARCHAR)"}, {"answer": "SELECT afc_cup FROM table_name_43 WHERE name = \"kenji arai\"", "question": "Which AFC cup does Kenji Arai have?", "context": "CREATE TABLE table_name_43 (afc_cup VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE high_points = \"joe johnson (31)\"", "question": "In the game where Joe Johnson (31) was the high points scorer, what was the final score?", "context": "CREATE TABLE table_name_79 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT MIN(to_par) FROM table_name_28 WHERE place = \"t3\" AND money___$__ < 1 OFFSET 500", "question": "What is the lowest to par of the player with a t3 place and less than $1,500?", "context": "CREATE TABLE table_name_28 (to_par INTEGER, place VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE country = \"united states\" AND place = \"t6\" AND score = 71 - 70 - 76 - 72 = 289", "question": "Who is the player from the United States with a t6 place and a 71-70-76-72=289 score?", "context": "CREATE TABLE table_name_67 (player VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS $__ FROM table_name_76 WHERE to_par = 9 AND player = \"tommy bolt\"", "question": "How much total money does player tommy bolt, who has a to par of 9, have?", "context": "CREATE TABLE table_name_76 (money___ VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(money___) AS $__ FROM table_name_13 WHERE country = \"south africa\" AND to_par < 8", "question": "What is the lowest amount of money a player from South Africa with a to par less than 8 has?", "context": "CREATE TABLE table_name_13 (money___ INTEGER, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT venue FROM table_name_49 WHERE competition = \"friendly match\"", "question": "What was the venue that had a friendly match competition?", "context": "CREATE TABLE table_name_49 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT course FROM table_name_1 WHERE to_par_[a_] = \"n/a\" AND country = \"scotland\" AND year > 1905 AND location = \"philadelphia, pennsylvania\"", "question": "With a year larger than 1905, and a location of philadelphia, pennsylvania with a to par [a] of n/a and a country of scotland what is the course?", "context": "CREATE TABLE table_name_1 (course VARCHAR, location VARCHAR, year VARCHAR, country VARCHAR, to_par_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT total_score FROM table_name_68 WHERE location = \"san francisco, california\" AND year > 1987 AND to_par_[a_] = \"+1\"", "question": "What is the total score for a location of san francisco, california, and a year after 1987, and a to pa [a] of +1?", "context": "CREATE TABLE table_name_68 (total_score VARCHAR, location VARCHAR, year VARCHAR, to_par_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_57 WHERE location = \"newport, rhode island\"", "question": "What is the sum for the year with a location of newport, rhode island?", "context": "CREATE TABLE table_name_57 (year INTEGER, location VARCHAR)"}, {"answer": "SELECT country FROM table_name_27 WHERE course = \"merion golf club\" AND to_par_[a_] = \"e\"", "question": "What is the country with a course of merion golf club, and a to par [1] of e?", "context": "CREATE TABLE table_name_27 (country VARCHAR, course VARCHAR, to_par_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT total_score FROM table_name_14 WHERE year = 2012", "question": "What is the total score for the year 2012?", "context": "CREATE TABLE table_name_14 (total_score VARCHAR, year VARCHAR)"}, {"answer": "SELECT evening_gown FROM table_name_4 WHERE state = \"mississippi\"", "question": "What is the evening gown score for the contestant from Mississippi?", "context": "CREATE TABLE table_name_4 (evening_gown VARCHAR, state VARCHAR)"}, {"answer": "SELECT type FROM table_name_26 WHERE rank = 2", "question": "What is the type for rank 2?", "context": "CREATE TABLE table_name_26 (type VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(number_of_bearers_2009) FROM table_name_3 WHERE rank > 1 AND type = \"patronymic\" AND etymology = \"son of christian\" AND number_of_bearers_1971 > 45.984", "question": "What is the sum of number of bearers in 2009 for a rank above 1, a type of patronymic, an etymology meaning son of Christian, and the number of bearers in 1971 greater than 45.984?", "context": "CREATE TABLE table_name_3 (number_of_bearers_2009 INTEGER, number_of_bearers_1971 VARCHAR, etymology VARCHAR, rank VARCHAR, type VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_80 WHERE team = \"herdez competition\" AND name = \"ryan hunter-reay\"", "question": "What is Ryan Hunter-Reay of the Herdez Competition's Qual 2 time?", "context": "CREATE TABLE table_name_80 (qual_2 VARCHAR, team VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_13 WHERE name = \"justin wilson\"", "question": "What is Justin Wilson's Team?", "context": "CREATE TABLE table_name_13 (team VARCHAR, name VARCHAR)"}, {"answer": "SELECT best FROM table_name_31 WHERE qual_2 = \"1:00.588\"", "question": "What is the Best of the racer with a Qual 2 of 1:00.588?", "context": "CREATE TABLE table_name_31 (best VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT MIN(area__km\u00b2_) FROM table_name_55 WHERE population__2010_ = 7 OFFSET 616", "question": "Where is the lowest area with a population of 7,616?", "context": "CREATE TABLE table_name_55 (area__km\u00b2_ INTEGER, population__2010_ VARCHAR)"}, {"answer": "SELECT tongyong FROM table_name_36 WHERE hanyu = \"sanmin\"", "question": "Where in Tongyong is Hanyu Sanmin?", "context": "CREATE TABLE table_name_36 (tongyong VARCHAR, hanyu VARCHAR)"}, {"answer": "SELECT hanyu FROM table_name_59 WHERE area__km\u00b2_ = 19.3888", "question": "Which Hanya has an area of 19.3888?", "context": "CREATE TABLE table_name_59 (hanyu VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_17 WHERE round < 2 AND pick = 24", "question": "What is Nationality, when Round is less than 2, and when Pick is \"24\"?", "context": "CREATE TABLE table_name_17 (nationality VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_36 WHERE round < 2 AND college_team = \"cb l'hospitalet\"", "question": "What is Nationality, when Round is less than 2, and when College/Team is \"CB L'Hospitalet\"?", "context": "CREATE TABLE table_name_36 (nationality VARCHAR, round VARCHAR, college_team VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_96 WHERE college_team = \"kansas\" AND pick < 56", "question": "What is the lowest Round, when College/Team is \"Kansas\", and when Pick is less than 56?", "context": "CREATE TABLE table_name_96 (round INTEGER, college_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT college_team FROM table_name_18 WHERE round < 2 AND nationality = \"united states\"", "question": "What is College/Team, when Round is less than 2, and when Nationality is \"United States\"?", "context": "CREATE TABLE table_name_18 (college_team VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MAX(q1_pos) FROM table_name_90 WHERE q1_time = \"1:31.826\" AND q1_order > 7", "question": "WHAT IS THE Q1 POS WITH A 1:31.826 Q1 TIME, AND Q1 ORDER OF 7?", "context": "CREATE TABLE table_name_90 (q1_pos INTEGER, q1_time VARCHAR, q1_order VARCHAR)"}, {"answer": "SELECT score FROM table_name_51 WHERE date = \"december 2\"", "question": "What is the score on December 2?", "context": "CREATE TABLE table_name_51 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT silver FROM table_name_42 WHERE year = \"1938\"", "question": "How many silver medals were won in 1938?", "context": "CREATE TABLE table_name_42 (silver VARCHAR, year VARCHAR)"}, {"answer": "SELECT gold FROM table_name_61 WHERE year = \"1970\"", "question": "How many gold medals were won in 1970?", "context": "CREATE TABLE table_name_61 (gold VARCHAR, year VARCHAR)"}, {"answer": "SELECT silver FROM table_name_43 WHERE gold = \"7\"", "question": "How many silver medals were won the year 7 gold medals were won?", "context": "CREATE TABLE table_name_43 (silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_27 WHERE year = \"1998\"", "question": "How many bronze medals were won in 1998?", "context": "CREATE TABLE table_name_27 (bronze VARCHAR, year VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_35 WHERE date = \"november 22, 1998\"", "question": "Can you tell me the TV Time that has the Date of november 22, 1998?", "context": "CREATE TABLE table_name_35 (tv_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_28 WHERE date = \"september 13, 1998\"", "question": "Can you tell me the Result that has the Date of september 13, 1998?", "context": "CREATE TABLE table_name_28 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_33 WHERE week < 11 AND tv_time = \"fox 10:00 am mt\" AND result = \"w 20-17\"", "question": "Can you tell me the Opponent that has the Week smaller than 11, and the TV Time of fox 10:00 am mt, and the Result of w 20-17?", "context": "CREATE TABLE table_name_33 (opponent VARCHAR, result VARCHAR, week VARCHAR, tv_time VARCHAR)"}, {"answer": "SELECT result FROM table_name_63 WHERE week = 5", "question": "Can you tell me the Result that has the Week of 5?", "context": "CREATE TABLE table_name_63 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(founded) FROM table_name_87 WHERE coach = \"unknown\" AND location = \"enfield\"", "question": "What is the average year that the club located in enfield was founded with an unknown coach?", "context": "CREATE TABLE table_name_87 (founded INTEGER, coach VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_80 WHERE home_ground = \"wilfred taylor reserve\"", "question": "What was the location of the club where the home ground is wilfred taylor reserve?", "context": "CREATE TABLE table_name_80 (location VARCHAR, home_ground VARCHAR)"}, {"answer": "SELECT location FROM table_name_45 WHERE coach = \"unknown\" AND founded = 1946", "question": "Where is the club that was founded in 1946 located that has an unknown coach?", "context": "CREATE TABLE table_name_45 (location VARCHAR, coach VARCHAR, founded VARCHAR)"}, {"answer": "SELECT home_ground FROM table_name_48 WHERE founded < 1946 AND coach = \"nick pantsaras\"", "question": "Where is the home ground for the club coached by nick pantsaras and founded before 1946?", "context": "CREATE TABLE table_name_48 (home_ground VARCHAR, founded VARCHAR, coach VARCHAR)"}, {"answer": "SELECT team FROM table_name_10 WHERE location_attendance = \"madison square garden\" AND score = \"87-83\"", "question": "Which team was the opponent that had a location of Madison Square Garden with a score of 87-83?", "context": "CREATE TABLE table_name_10 (team VARCHAR, location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT game FROM table_name_85 WHERE location_attendance = \"the forum\" AND series = \"0-1\"", "question": "Which game was played at the Forum and led to a series result of 0-1?", "context": "CREATE TABLE table_name_85 (game VARCHAR, location_attendance VARCHAR, series VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE game = 2", "question": "What was the score for game 2?", "context": "CREATE TABLE table_name_82 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT title FROM table_name_69 WHERE season__number < 10 AND directed_by = \"milan cheylov\" AND original_air_date = \"september 29, 1997\"", "question": "What is the title of the show with less than 10 seasons that aired on September 29, 1997 and is directed by Milan Cheylov?", "context": "CREATE TABLE table_name_69 (title VARCHAR, original_air_date VARCHAR, season__number VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_49 WHERE date = \"november 19, 1990\"", "question": "What is the attendance of the November 19, 1990 game?", "context": "CREATE TABLE table_name_49 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_37 WHERE iron_man_award = \"kyal horsley\"", "question": "How many Years have an Iron Man Award of kyal horsley?", "context": "CREATE TABLE table_name_37 (year VARCHAR, iron_man_award VARCHAR)"}, {"answer": "SELECT coach FROM table_name_75 WHERE most_improved = \"rory thompson\"", "question": "Which Coach has a Most Improved of rory thompson?", "context": "CREATE TABLE table_name_75 (coach VARCHAR, most_improved VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_85 WHERE community_award = \"jarrod harbrow\"", "question": "Which Year has a Community Award of jarrod harbrow?", "context": "CREATE TABLE table_name_85 (year INTEGER, community_award VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_35 WHERE team = \"\u0161ibenik\"", "question": "what is the capacity for the team \u0161ibenik?", "context": "CREATE TABLE table_name_35 (capacity INTEGER, team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_81 WHERE team = \"\u010dakovec\"", "question": "what is the stadium for \u010dakovec?", "context": "CREATE TABLE table_name_81 (stadium VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_88 WHERE home_city = \"zagreb\" AND manager = \"zlatko kranj\u010dar\"", "question": "what is the capacity when the home city is zagreb and the manager is zlatko kranj\u010dar?", "context": "CREATE TABLE table_name_88 (capacity INTEGER, home_city VARCHAR, manager VARCHAR)"}, {"answer": "SELECT home_city FROM table_name_29 WHERE stadium = \"stadion src mladost\"", "question": "what is the home city for the stadion src mladost?", "context": "CREATE TABLE table_name_29 (home_city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT grid FROM table_name_43 WHERE time_retired = \"electrical\" AND laps = 51", "question": "What is the grid for the driver with an electrical time/retired and 51 laps?", "context": "CREATE TABLE table_name_43 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_30 WHERE grid = 1", "question": "Who is the driver with 1 grid?", "context": "CREATE TABLE table_name_30 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT place FROM table_name_32 WHERE player = \"mark carnevale\"", "question": "What place was Mark Carnevale in?", "context": "CREATE TABLE table_name_32 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_14 WHERE away = \"real juventud\"", "question": "What was the highest attendance against Real Juventud?", "context": "CREATE TABLE table_name_14 (attendance INTEGER, away VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_47 WHERE date = \"7,8,10,11 feb 1908\"", "question": "Who is the away captain for the matches dated 7,8,10,11 feb 1908?", "context": "CREATE TABLE table_name_47 (away_captain VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_14 WHERE venue = \"adelaide oval\"", "question": "Who is the home captain at the Adelaide Oval?", "context": "CREATE TABLE table_name_14 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_93 WHERE result = \"aus by 245 runs\"", "question": "Who is the home captain that won AUS by 245 runs?", "context": "CREATE TABLE table_name_93 (home_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_64 WHERE date = \"1,2,3,4,6,7 jan 1908\"", "question": "What was the venue for the dates 1,2,3,4,6,7 jan 1908?", "context": "CREATE TABLE table_name_64 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_67 WHERE date = \"7,8,10,11 feb 1908\"", "question": "What was the venue for the dates 7,8,10,11 Feb 1908?", "context": "CREATE TABLE table_name_67 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT in_production FROM table_name_39 WHERE toxic_materials = \"yes\" AND technology = \"sodium-sulfur batteries\"", "question": "What's the production if the technology is sodium-sulfur batteries and yes to toxic materials?", "context": "CREATE TABLE table_name_39 (in_production VARCHAR, toxic_materials VARCHAR, technology VARCHAR)"}, {"answer": "SELECT moving_parts FROM table_name_74 WHERE technology = \"lead-acid\"", "question": "What are the moving parts of lead-acid?", "context": "CREATE TABLE table_name_74 (moving_parts VARCHAR, technology VARCHAR)"}, {"answer": "SELECT room_temperature FROM table_name_67 WHERE in_production = \"no\" AND toxic_materials = \"no\"", "question": "What's the room temperature with no toxic materials and no ln production?", "context": "CREATE TABLE table_name_67 (room_temperature VARCHAR, in_production VARCHAR, toxic_materials VARCHAR)"}, {"answer": "SELECT technology FROM table_name_20 WHERE toxic_materials = \"yes\" AND moving_parts = \"no\"", "question": "What's the technology when there are no moving parts but yes to toxic materials?", "context": "CREATE TABLE table_name_20 (technology VARCHAR, toxic_materials VARCHAR, moving_parts VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE place = \"t9\" AND country = \"united states\" AND player = \"kirk triplett\"", "question": "What was the Score for T9 United States Player Kirk Triplett?", "context": "CREATE TABLE table_name_14 (score VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_22 WHERE player = \"tiger woods\"", "question": "What country is Tiger Woods from?", "context": "CREATE TABLE table_name_22 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(assists) FROM table_name_82 WHERE club = \"chicago fire\" AND goals > 2", "question": "what is the assists when the club is chicago fire and goals is more than 2?", "context": "CREATE TABLE table_name_82 (assists INTEGER, club VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MAX(assists) FROM table_name_48 WHERE goals < 0", "question": "what is the most assists when the goals is less than 0?", "context": "CREATE TABLE table_name_48 (assists INTEGER, goals INTEGER)"}, {"answer": "SELECT score_in_the_final FROM table_name_41 WHERE date = 1981", "question": "What is Score in The Final, when Date is \"1981\"?", "context": "CREATE TABLE table_name_41 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_40 WHERE date = 1976", "question": "What is Opponent in The Final, when Date is \"1976\"?", "context": "CREATE TABLE table_name_40 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_63 WHERE date = \"december 30\"", "question": "What is Location Attendance, when Date is \"December 30\"?", "context": "CREATE TABLE table_name_63 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE high_rebounds = \"amar'e stoudemire (13)\"", "question": "What is Date, when High Rebounds is \"Amar'e Stoudemire (13)\"?", "context": "CREATE TABLE table_name_28 (date VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE location_attendance = \"us airways center 18,422\" AND game < 22", "question": "What is Score, when Location Attendance is \"US Airways Center 18,422\", and when Game is less than 22?", "context": "CREATE TABLE table_name_27 (score VARCHAR, location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE game = 19", "question": "What is Score, when Game is \"19\"?", "context": "CREATE TABLE table_name_11 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_16 WHERE team = \"orlando\"", "question": "What is Location Attendance, when Team is \"Orlando\"?", "context": "CREATE TABLE table_name_16 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_22 WHERE date = \"december 30\"", "question": "What is Record, when Date is \"December 30\"?", "context": "CREATE TABLE table_name_22 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(theaters) FROM table_name_83 WHERE rank > 7", "question": "Name the Theaters that has a Rank larger than 7?", "context": "CREATE TABLE table_name_83 (theaters INTEGER, rank INTEGER)"}, {"answer": "SELECT gross_to_date FROM table_name_53 WHERE date = \"august 23\u201325\"", "question": "Name the Gross-to-date which has a Date of august 23\u201325?", "context": "CREATE TABLE table_name_53 (gross_to_date VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_84 WHERE position = \"defensive back\" AND pick = 226", "question": "Name the Round which has a Position of defensive back and a Pick of 226?", "context": "CREATE TABLE table_name_84 (round INTEGER, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT round FROM table_name_68 WHERE player = \"zack walz\"", "question": "Name the Round which has a Player of zack walz?", "context": "CREATE TABLE table_name_68 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_57 WHERE position = \"defensive back\" AND player = \"corey chavous\"", "question": "Name the Round which has a Position of defensive back and corey chavous?", "context": "CREATE TABLE table_name_57 (round INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_46 WHERE round = 7 AND school_club_team = \"arizona st.\"", "question": "Name all Pick that has a Round of 7, and a School/Club Team of arizona st.?", "context": "CREATE TABLE table_name_46 (pick VARCHAR, round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MAX(the_year) FROM table_name_18 WHERE regular_season = \"7th\"", "question": "Which Year has a Regular Season of 7th?", "context": "CREATE TABLE table_name_18 (the_year INTEGER, regular_season VARCHAR)"}, {"answer": "SELECT MAX(the_year) FROM table_name_97 WHERE division > 3", "question": "Which Year has a Division larger than 3?", "context": "CREATE TABLE table_name_97 (the_year INTEGER, division INTEGER)"}, {"answer": "SELECT SUM(the_year) FROM table_name_97 WHERE playoffs = \"did not qualify\" AND division < 3", "question": "Which Year did not qualify for Playoffs, and had a Division smaller than 3?", "context": "CREATE TABLE table_name_97 (the_year INTEGER, playoffs VARCHAR, division VARCHAR)"}, {"answer": "SELECT league FROM table_name_59 WHERE playoffs = \"did not qualify\" AND the_year > 2008", "question": "Which league did not qualify for the Playoffs, and had a Year larger than 2008?", "context": "CREATE TABLE table_name_59 (league VARCHAR, playoffs VARCHAR, the_year VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_5 WHERE home_team = \"brisbane lions\"", "question": "What is Lowest Crowd, when Home Team is Brisbane Lions?", "context": "CREATE TABLE table_name_5 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE away_team = \"kangaroos\"", "question": "What is Date, when Away Team is Kangaroos?", "context": "CREATE TABLE table_name_38 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_96 WHERE time = \"1:12\"", "question": "What is the smallest round with a time of 1:12?", "context": "CREATE TABLE table_name_96 (round INTEGER, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_68 WHERE event = \"legacy fighting championship 12\"", "question": "How long was the time for the Legacy Fighting Championship 12?", "context": "CREATE TABLE table_name_68 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT country FROM table_name_68 WHERE to_par = \"+1\" AND player = \"woody austin\"", "question": "WHAT COUNTRY HAS A TO PAR OF +1, WITH WOODY AUSTIN?", "context": "CREATE TABLE table_name_68 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_44 WHERE player = \"ernie els\"", "question": "WHAT IS THE TO PAR FOR ERNIE ELS?", "context": "CREATE TABLE table_name_44 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_65 WHERE player = \"tom lehman\"", "question": "WHAT PLACE DOES TOM LEHMAN HAVE?", "context": "CREATE TABLE table_name_65 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_18 WHERE place = \"1\"", "question": "WHAT IS THE TO PAR FOR NUMBER 1?", "context": "CREATE TABLE table_name_18 (to_par VARCHAR, place VARCHAR)"}, {"answer": "SELECT player FROM table_name_29 WHERE to_par = \"+1\" AND country = \"scotland\"", "question": "WHAT IS TEH PLAYER WITH A TO PAR OF +1 FOR SCOTLAND?", "context": "CREATE TABLE table_name_29 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT paris_roubaix___fra__ FROM table_name_33 WHERE year = 2006", "question": "Who won the Paris-Roubaix in 2006?", "context": "CREATE TABLE table_name_33 (paris_roubaix___fra__ VARCHAR, year VARCHAR)"}, {"answer": "SELECT built FROM table_name_71 WHERE name = \"conant creek pegram truss railroad bridge\"", "question": "Who built the conant creek pegram truss railroad bridge?", "context": "CREATE TABLE table_name_71 (built VARCHAR, name VARCHAR)"}, {"answer": "SELECT location FROM table_name_11 WHERE built = \"1910\"", "question": "Where is the historic place that was built in 1910?", "context": "CREATE TABLE table_name_11 (location VARCHAR, built VARCHAR)"}, {"answer": "SELECT listed FROM table_name_88 WHERE built = \"1896, 1914\"", "question": "What is the list date of the historic place that was built 1896, 1914?", "context": "CREATE TABLE table_name_88 (listed VARCHAR, built VARCHAR)"}, {"answer": "SELECT listed FROM table_name_79 WHERE county = \"canyon\"", "question": "When was the historic place listed that's in canyon county?", "context": "CREATE TABLE table_name_79 (listed VARCHAR, county VARCHAR)"}, {"answer": "SELECT averaging_time FROM table_name_53 WHERE regulatory_citation = \"40 cfr 50.4(b)\"", "question": "what is the averaging time when the regulatory citation is 40 cfr 50.4(b)?", "context": "CREATE TABLE table_name_53 (averaging_time VARCHAR, regulatory_citation VARCHAR)"}, {"answer": "SELECT regulatory_citation FROM table_name_11 WHERE standard = \"15 \u03bcg/m\u00b3\"", "question": "what is the regulatory citation when the standard is 15 \u03bcg/m\u00b3?", "context": "CREATE TABLE table_name_11 (regulatory_citation VARCHAR, standard VARCHAR)"}, {"answer": "SELECT standard FROM table_name_79 WHERE pollutant = \"o 3\" AND averaging_time = \"8-hour\"", "question": "what is the standard when the pollutant is o 3 and averaging time is 8-hour?", "context": "CREATE TABLE table_name_79 (standard VARCHAR, pollutant VARCHAR, averaging_time VARCHAR)"}, {"answer": "SELECT pollutant FROM table_name_27 WHERE regulatory_citation = \"40 cfr 50.7(a)\" AND type = \"primary\"", "question": "what is the polluntant when the regulatory citation is 40 cfr 50.7(a) and the type is primary?", "context": "CREATE TABLE table_name_27 (pollutant VARCHAR, regulatory_citation VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_62 WHERE averaging_time = \"1-hour\" AND standard = \"0.12 ppm (235 \u03bcg/m\u00b3)\"", "question": "what is the type when the averaging time is 1-hour and the standard is 0.12 ppm (235 \u03bcg/m\u00b3)?", "context": "CREATE TABLE table_name_62 (type VARCHAR, averaging_time VARCHAR, standard VARCHAR)"}, {"answer": "SELECT type FROM table_name_63 WHERE regulatory_citation = \"40 cfr 50.9(a)\"", "question": "what is the type when the regulatory citation is 40 cfr 50.9(a)?", "context": "CREATE TABLE table_name_63 (type VARCHAR, regulatory_citation VARCHAR)"}, {"answer": "SELECT MAX(league) FROM table_name_7 WHERE title_playoff > 0", "question": "What is the highest League, when Title Playoff is greater than 0?", "context": "CREATE TABLE table_name_7 (league INTEGER, title_playoff INTEGER)"}, {"answer": "SELECT MIN(title_playoff) FROM table_name_93 WHERE total < 3 AND league > 2", "question": "What is the lowest Title Playoff, when Total is less than 3, and when League is greater than \"2\"?", "context": "CREATE TABLE table_name_93 (title_playoff INTEGER, total VARCHAR, league VARCHAR)"}, {"answer": "SELECT MIN(title_playoff) FROM table_name_42 WHERE league > 3 AND super_cup < 0", "question": "What is the lowest Title Playoff, when League is greater than 3, and when Super Cup is less than 0?", "context": "CREATE TABLE table_name_42 (title_playoff INTEGER, league VARCHAR, super_cup VARCHAR)"}, {"answer": "SELECT COUNT(super_cup) FROM table_name_97 WHERE title_playoff = 0 AND total > 9 AND league < 11", "question": "What is the total number of Super Cup, when Title Playoff is \"0\", when Total is greater than 9, and when League is less than 11?", "context": "CREATE TABLE table_name_97 (super_cup VARCHAR, league VARCHAR, title_playoff VARCHAR, total VARCHAR)"}, {"answer": "SELECT score FROM table_name_34 WHERE team = \"toronto\"", "question": "What was the score when the jazz played against toronto?", "context": "CREATE TABLE table_name_34 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE team = \"miami\"", "question": "What is the date of the game against miami?", "context": "CREATE TABLE table_name_41 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_37 WHERE week = 7", "question": "Who was the Opponent in Week 7?", "context": "CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_86 WHERE date = \"november 7, 1999\"", "question": "What was the Attendance on November 7, 1999?", "context": "CREATE TABLE table_name_86 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_91 WHERE result = \"l 23-41\"", "question": "Who was the Opponent of the Game with a Result of l 23-41?", "context": "CREATE TABLE table_name_91 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_7 WHERE week = 1", "question": "What was the Attendance in Week 1?", "context": "CREATE TABLE table_name_7 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(avg_finish) FROM table_name_78 WHERE starts = 9 AND top_10 < 0", "question": "How much average Finish has Starts of 9, and a Top 10 smaller than 0?", "context": "CREATE TABLE table_name_78 (avg_finish INTEGER, starts VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT winnings FROM table_name_93 WHERE starts > 34 AND poles < 1 AND top_10 = 5", "question": "Which Winnings have Starts larger than 34, and Poles smaller than 1, and a Top 10 of 5?", "context": "CREATE TABLE table_name_93 (winnings VARCHAR, top_10 VARCHAR, starts VARCHAR, poles VARCHAR)"}, {"answer": "SELECT MAX(diameter__km_) FROM table_name_4 WHERE name = \"alma-merghen planitia\" AND year_named < 1997", "question": "Which Diameter (km) has a Name of alma-merghen planitia, and a Year named smaller than 1997?", "context": "CREATE TABLE table_name_4 (diameter__km_ INTEGER, name VARCHAR, year_named VARCHAR)"}, {"answer": "SELECT longitude FROM table_name_87 WHERE latitude = \"73.0s\" AND name = \"aibarchin planitia\"", "question": "Which Longitude has a Latitude of 73.0s, and a Name of aibarchin planitia?", "context": "CREATE TABLE table_name_87 (longitude VARCHAR, latitude VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(year_named) FROM table_name_84 WHERE name = \"nuptadi planitia\" AND diameter__km_ > 1 OFFSET 200.0", "question": "Which Year named has a Name of nuptadi planitia, and a Diameter (km) larger than 1,200.0?", "context": "CREATE TABLE table_name_84 (year_named INTEGER, name VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT latitude FROM table_name_79 WHERE year_named < 1997 AND name = \"aino planitia\"", "question": "Which Latitude has a Year named smaller than 1997, and a Name of aino planitia?", "context": "CREATE TABLE table_name_79 (latitude VARCHAR, year_named VARCHAR, name VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_5 WHERE opponent = \"sergio roitman\"", "question": "In what tournament did Cipolla face Sergio Roitman?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT rating / SHARE(18 - 49) FROM table_name_69 WHERE share > 10 AND viewers__millions_ = 12.42", "question": "What is the Rating/Share (18-49) that also has a Share greater than 10 and 12.42 million Viewers?", "context": "CREATE TABLE table_name_69 (rating VARCHAR, share VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_6 WHERE record = \"2-9\"", "question": "Which Week has a Record of 2-9?", "context": "CREATE TABLE table_name_6 (week INTEGER, record VARCHAR)"}, {"answer": "SELECT 1993 FROM table_name_44 WHERE 1990 = \"qf\" AND 1995 = \"2r\"", "question": "What is the 1993 finish for the event that had a 1990 of QF and 1995 of 2R?", "context": "CREATE TABLE table_name_44 (Id VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_14 WHERE tournament = \"miami\"", "question": "What is the 1994 finish for the Miami tournament?", "context": "CREATE TABLE table_name_14 (tournament VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_88 WHERE country = \"united states\" AND score = 73 - 68 = 141 AND player = \"brad faxon\"", "question": "What is the to par score from Brad Faxon of the United States with a score of 73-68=141?", "context": "CREATE TABLE table_name_88 (to_par VARCHAR, player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_1 WHERE place = \"t8\" AND score = 73 - 68 = 141 AND country = \"zimbabwe\"", "question": "What's the to par score in T8 place from Zimbabwe and has a score of 73-68=141?", "context": "CREATE TABLE table_name_1 (to_par VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE place = \"t4\" AND player = \"lee janzen\"", "question": "What's the score of Lee Janzen in T4 place?", "context": "CREATE TABLE table_name_94 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE place = \"t2\" AND player = \"jeff maggert\"", "question": "What's the score of Jeff Maggert in T2 place?", "context": "CREATE TABLE table_name_36 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_46 WHERE score = 68 - 73 = 141", "question": "What's the to par when the score was 68-73=141?", "context": "CREATE TABLE table_name_46 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_75 WHERE points = 377", "question": "What's the total number of game that has 377 points?", "context": "CREATE TABLE table_name_75 (games INTEGER, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_11 WHERE name = \"tiago splitter\" AND rank < 5", "question": "What's the total number of points that the rank is less than 5 and has Tiago Splitter?", "context": "CREATE TABLE table_name_11 (points VARCHAR, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_77 WHERE points > 266 AND name = \"juan carlos navarro\"", "question": "What is the total number of games that has Juan Carlos Navarro and more than 266 points?", "context": "CREATE TABLE table_name_77 (games INTEGER, points VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_87 WHERE team = \"tau cer\u00e1mica\" AND name = \"igor rako\u010devi\u0107\" AND points > 377", "question": "What's the rank of Igor Rako\u010devi\u0107 of Tau Cer\u00e1mica with more than 377 points?", "context": "CREATE TABLE table_name_87 (rank INTEGER, points VARCHAR, team VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_62 WHERE team = \"tau cer\u00e1mica\" AND points = 377 AND games > 21", "question": "What's the rank of the Tau Cer\u00e1mica that has 377 points and more than 21 games?", "context": "CREATE TABLE table_name_62 (rank VARCHAR, games VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT dates FROM table_name_6 WHERE squadron = \"squadron 33\"", "question": "What are the dates of squadron 33?", "context": "CREATE TABLE table_name_6 (dates VARCHAR, squadron VARCHAR)"}, {"answer": "SELECT institution FROM table_name_67 WHERE year > 2007 AND award = \"2nd\" AND chief_judge = \"peter agre\"", "question": "What institution won 2nd more recently than 2007 with Peter Agre as Chief Judge?", "context": "CREATE TABLE table_name_67 (institution VARCHAR, chief_judge VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT name FROM table_name_78 WHERE chief_judge = \"peter agre\" AND award = \"3rd\"", "question": "What student won 3rd with Peter Agre as Chief Judge?", "context": "CREATE TABLE table_name_78 (name VARCHAR, chief_judge VARCHAR, award VARCHAR)"}, {"answer": "SELECT institution FROM table_name_82 WHERE year > 2010 AND name = \"cheng herng yi\"", "question": "What institution won in 2010 with student Cheng Herng Yi?", "context": "CREATE TABLE table_name_82 (institution VARCHAR, year VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_70 WHERE name = \"ehc straubing ii\" AND played < 10", "question": "What was the lowest postion of ehc straubing ii when they played less than 10 games?", "context": "CREATE TABLE table_name_70 (position INTEGER, name VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_13 WHERE points = 12 AND played < 10", "question": "What was the drawn amount for teams with points of 12 and played smaller than 10?", "context": "CREATE TABLE table_name_13 (drawn INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_74 WHERE drawn = 2 AND points < 16 AND position > 5", "question": "How many games were played by the team with 2 draws, less than 16 points and a position higher than 5?", "context": "CREATE TABLE table_name_74 (played VARCHAR, position VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT grid FROM table_name_91 WHERE driver = \"buddy rice\"", "question": "What was the grid of Buddy Rice?", "context": "CREATE TABLE table_name_91 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT team FROM table_name_85 WHERE fin_pos = \"7\"", "question": "Which team had a driver with a finish position of 7?", "context": "CREATE TABLE table_name_85 (team VARCHAR, fin_pos VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_13 WHERE fin_pos = \"19\"", "question": "What was the time of the driver with a finish position of 19?", "context": "CREATE TABLE table_name_13 (time_retired VARCHAR, fin_pos VARCHAR)"}, {"answer": "SELECT laps AS Led FROM table_name_38 WHERE fin_pos = \"14\"", "question": "What were the number of laps led by the driver with a finish position of 14?", "context": "CREATE TABLE table_name_38 (laps VARCHAR, fin_pos VARCHAR)"}, {"answer": "SELECT team FROM table_name_90 WHERE fin_pos = \"8\"", "question": "Which team had a finish position of 8?", "context": "CREATE TABLE table_name_90 (team VARCHAR, fin_pos VARCHAR)"}, {"answer": "SELECT SUM(score) FROM table_name_63 WHERE event = \"27 arrow match\"", "question": "For the 27 arrow match event, what's the sum of all scores for that event?", "context": "CREATE TABLE table_name_63 (score INTEGER, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_72 WHERE score > 673", "question": "Which event had a score of over 673 points?", "context": "CREATE TABLE table_name_72 (event VARCHAR, score INTEGER)"}, {"answer": "SELECT COUNT(premier_league) FROM table_name_53 WHERE UEfa_cup = 10 AND league_cup < 4", "question": "What is the total number of appearances in the premier league when there were 10 appearances at UEFA and less than 4 at league cup?", "context": "CREATE TABLE table_name_53 (premier_league VARCHAR, UEfa_cup VARCHAR, league_cup VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_53 WHERE fa_cup < 4", "question": "What is the highest total number of appearances when there were less than 4 at the FA cup?", "context": "CREATE TABLE table_name_53 (total INTEGER, fa_cup INTEGER)"}, {"answer": "SELECT player FROM table_name_62 WHERE fa_cup < 6 AND premier_league = 33 AND UEfa_cup > 5", "question": "What player had less than 6 appearances at the FA cup, 33 at the premier league, and more than 5 at the UEFA cup?", "context": "CREATE TABLE table_name_62 (player VARCHAR, UEfa_cup VARCHAR, fa_cup VARCHAR, premier_league VARCHAR)"}, {"answer": "SELECT SUM(league_cup) FROM table_name_29 WHERE position = \"defender\" AND UEfa_cup < 10", "question": "What is the sum of the appearances at the league cup for the defender who had less than 10 appearances at the UEFA cup?", "context": "CREATE TABLE table_name_29 (league_cup INTEGER, position VARCHAR, UEfa_cup VARCHAR)"}, {"answer": "SELECT target FROM table_name_90 WHERE antibody = \"rituximab\"", "question": "What's the target of the antibody rituximab?", "context": "CREATE TABLE table_name_90 (target VARCHAR, antibody VARCHAR)"}, {"answer": "SELECT target FROM table_name_96 WHERE brand_name = \"mylotarg\"", "question": "What's the target for the brand mylotarg?", "context": "CREATE TABLE table_name_96 (target VARCHAR, brand_name VARCHAR)"}, {"answer": "SELECT type FROM table_name_5 WHERE approval_date < 2006 AND brand_name = \"herceptin\"", "question": "What's the type for the brand herceptin with an approval date of before 2006?", "context": "CREATE TABLE table_name_5 (type VARCHAR, approval_date VARCHAR, brand_name VARCHAR)"}, {"answer": "SELECT position FROM table_name_6 WHERE overall < 590 AND round = 3", "question": "What is Position, when Overall is less than 590, and when Round is 3?", "context": "CREATE TABLE table_name_6 (position VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_58 WHERE mlb_team = \"florida marlins\" AND round < 15", "question": "What is Player, when MLB Team is \"Florida Marlins\", and when Round is less than 15?", "context": "CREATE TABLE table_name_58 (player VARCHAR, mlb_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_23 WHERE player = \"dan jennings\" AND round > 9", "question": "What is the lowest Overall, when Player is \"Dan Jennings\", and when Round is greater than 9?", "context": "CREATE TABLE table_name_23 (overall INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_77 WHERE position = \"2b\"", "question": "What is the total number of Round, when Position is 2B?", "context": "CREATE TABLE table_name_77 (round VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_14 WHERE driver = \"justin lofton\" AND top_10 < 5", "question": "What are the highest points for Justin Lofton when his top 10 is lower than 5?", "context": "CREATE TABLE table_name_14 (points INTEGER, driver VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT MIN(top_5) FROM table_name_66 WHERE wins > 0 AND driver = \"frank kimmel\" AND top_10 < 14", "question": "What is Frank Kimmel's lowest top 5 with more than 0 wins and fewer than 14 top 10s?", "context": "CREATE TABLE table_name_66 (top_5 INTEGER, top_10 VARCHAR, wins VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(top_10) FROM table_name_29 WHERE wins < 4 AND points < 3260 AND top_5 > 0", "question": "What is the lowest top 10 with fewer than 4 wins, fewer than 3260 points and more than 0 for top 5?", "context": "CREATE TABLE table_name_29 (top_10 INTEGER, top_5 VARCHAR, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_32 WHERE mark = \"7.35\"", "question": "When the mark is 7.35, what's the lowest Lane found?", "context": "CREATE TABLE table_name_32 (lane INTEGER, mark VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_68 WHERE mark = \"8.09 pb\"", "question": "What's the lowest lane found for a mark of 8.09 pb?", "context": "CREATE TABLE table_name_68 (lane INTEGER, mark VARCHAR)"}, {"answer": "SELECT SUM(heat) FROM table_name_17 WHERE name = \"ivet lalova\"", "question": "What's the sum of all of ivet lalova's Heat stats?", "context": "CREATE TABLE table_name_17 (heat INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_5 WHERE country = \"british virgin islands\"", "question": "What's the total number of Heat recorded for the british virgin islands?", "context": "CREATE TABLE table_name_5 (heat VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_14 WHERE mark = \"7.29\" AND name = \"virgen benavides\" AND lane < 2", "question": "When the lane is under 2 and the name is virgen benavides with a mark of 7.29, what's the total number of Heat found?", "context": "CREATE TABLE table_name_14 (heat VARCHAR, lane VARCHAR, mark VARCHAR, name VARCHAR)"}, {"answer": "SELECT time FROM table_name_87 WHERE competition = \"european cup\" AND venue = \"moscow\"", "question": "What's the Time for the Competition of european cup and has a Venue of Moscow?", "context": "CREATE TABLE table_name_87 (time VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT time FROM table_name_17 WHERE event = \"4x100 m relay\" AND venue = \"frankfurt\"", "question": "What's the Time for an Event of 4x100 m relay and has a Venue of Frankfurt?", "context": "CREATE TABLE table_name_17 (time VARCHAR, event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_77 WHERE event = \"4x100 m relay\" AND time = \"38.89\"", "question": "What Competition has an Event of 4x100 m relay and has the Time of 38.89?", "context": "CREATE TABLE table_name_77 (competition VARCHAR, event VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_71 WHERE venue = \"casablanca\" AND time = \"20.63w\"", "question": "What's the lowest Year with a  Venue of casablanca and has the Time of 20.63w?", "context": "CREATE TABLE table_name_71 (year INTEGER, venue VARCHAR, time VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_91 WHERE nationality = \"united states\"", "question": "What was the College/junior/club team of the player with the united states nationality?", "context": "CREATE TABLE table_name_91 (college_junior_club_team VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_91 WHERE round > 7 AND nationality = \"united states\"", "question": "What was the lowest pick number for a united states player picked before round 7?", "context": "CREATE TABLE table_name_91 (pick INTEGER, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT country FROM table_name_6 WHERE score = 69 - 71 - 72 - 69 = 281", "question": "What country was the player with the score line 69-71-72-69=281 from?", "context": "CREATE TABLE table_name_6 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE country = \"south africa\"", "question": "What was the score of the player from South Africa?", "context": "CREATE TABLE table_name_86 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_65 WHERE score = 73 - 74 - 72 - 64 = 283", "question": "What country did the player with the score line 73-74-72-64=283 from?", "context": "CREATE TABLE table_name_65 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT pro_stock AS Motorcycle FROM table_name_60 WHERE pro_stock = \"tom martino\"", "question": "Who won Pro Stock Motorcycle the year Tom Martino won Pro Stock?", "context": "CREATE TABLE table_name_60 (pro_stock VARCHAR)"}, {"answer": "SELECT funny_car FROM table_name_64 WHERE year = 2012", "question": "Who won Funny Car in 2012?", "context": "CREATE TABLE table_name_64 (funny_car VARCHAR, year VARCHAR)"}, {"answer": "SELECT funny_car FROM table_name_57 WHERE pro_stock = \"jim yates\" AND year > 1996", "question": "Who won Funny Car when Jim Yates won Pro Stock, in years after 1996?", "context": "CREATE TABLE table_name_57 (funny_car VARCHAR, pro_stock VARCHAR, year VARCHAR)"}, {"answer": "SELECT pro_stock FROM table_name_83 WHERE top_fuel = \"tony schumacher\" AND funny_car = \"tony pedregon\"", "question": "Who won Pro Stock the year Tony Schumacher won Top Fuel and Tony Pedregon won Funny Car?", "context": "CREATE TABLE table_name_83 (pro_stock VARCHAR, top_fuel VARCHAR, funny_car VARCHAR)"}, {"answer": "SELECT year FROM table_name_65 WHERE funny_car = \"john force\" AND top_fuel = \"mike dunn\"", "question": "In which year did John Force win Funny Car and Mike Dunn win in Top Fuel?", "context": "CREATE TABLE table_name_65 (year VARCHAR, funny_car VARCHAR, top_fuel VARCHAR)"}, {"answer": "SELECT COUNT(races) FROM table_name_54 WHERE poles = 0 AND season = \"2006\" AND podiums > 0", "question": "What is the total number of races in the 2006 season with 0 poles and more than 0 podiums?", "context": "CREATE TABLE table_name_54 (races VARCHAR, podiums VARCHAR, poles VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(fastest_laps) FROM table_name_9 WHERE poles = 0 AND races > 15 AND podiums > 2", "question": "What is the highest number of the fastest laps when there were 0 poles, more than 2 podiums, and more than 15 races?", "context": "CREATE TABLE table_name_9 (fastest_laps INTEGER, podiums VARCHAR, poles VARCHAR, races VARCHAR)"}, {"answer": "SELECT SUM(races) FROM table_name_8 WHERE poles > 1 AND fastest_laps < 4", "question": "What is the total number of races when there was more than 1 pole, and the fastest number of laps was less than 4?", "context": "CREATE TABLE table_name_8 (races INTEGER, poles VARCHAR, fastest_laps VARCHAR)"}, {"answer": "SELECT AVG(fastest_laps) FROM table_name_5 WHERE poles < 0", "question": "What was the average number of fastest laps with less than 0 poles?", "context": "CREATE TABLE table_name_5 (fastest_laps INTEGER, poles INTEGER)"}, {"answer": "SELECT MIN(poles) FROM table_name_52 WHERE fastest_laps < 0", "question": "What is the smallest number of poles when the fastest laps are less than 0?", "context": "CREATE TABLE table_name_52 (poles INTEGER, fastest_laps INTEGER)"}, {"answer": "SELECT SUM(wins) FROM table_name_80 WHERE fastest_laps = 0 AND races < 16 AND season = \"2007\" AND podiums < 0", "question": "What is the total number of wins in the 2007 season when the fastest laps is 0, there are less than 0 podiums, and there are less than 16 races?", "context": "CREATE TABLE table_name_80 (wins INTEGER, podiums VARCHAR, season VARCHAR, fastest_laps VARCHAR, races VARCHAR)"}, {"answer": "SELECT surface FROM table_name_85 WHERE partner = \"hayley ericksen\"", "question": "What surface did hayley ericksen play on?", "context": "CREATE TABLE table_name_85 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_23 WHERE surface = \"hard\" AND score = \"6-4, 7-6(2)\"", "question": "Who were the opponents on a hard surface with a score of 6-4, 7-6(2)?", "context": "CREATE TABLE table_name_23 (opponents_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE partner = \"hayley ericksen\"", "question": "What was hayley ericksen's score?", "context": "CREATE TABLE table_name_97 (score VARCHAR, partner VARCHAR)"}, {"answer": "SELECT silver FROM table_name_28 WHERE bronze = \"katie curtis unknown\"", "question": "Who won the Silver the Year Katie Curtis Unknown won the Bronze?", "context": "CREATE TABLE table_name_28 (silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT round FROM table_name_54 WHERE name = \"greg huntington\"", "question": "Round that greg huntington went in?", "context": "CREATE TABLE table_name_54 (round VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_16 WHERE college = \"penn state\"", "question": "Total overall from penn state?", "context": "CREATE TABLE table_name_16 (overall INTEGER, college VARCHAR)"}, {"answer": "SELECT COUNT(seasons) FROM table_name_2 WHERE coach = \"pat chambers\"", "question": "How many seasons did Pat Chambers coach?", "context": "CREATE TABLE table_name_2 (seasons VARCHAR, coach VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_70 WHERE score = 68 - 74 - 69 = 211", "question": "What was the to par that goes with the score 68-74-69=211?", "context": "CREATE TABLE table_name_70 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_21 WHERE player = \"paul stankowski\"", "question": "What country is Paul Stankowski from?", "context": "CREATE TABLE table_name_21 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_90 WHERE score = 70 - 66 - 65 = 201", "question": "What place goes with the score of 70-66-65=201?", "context": "CREATE TABLE table_name_90 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE to_par = \"e\" AND player = \"fred funk\"", "question": "When Fred Funk had a to par of E, what was the score?", "context": "CREATE TABLE table_name_95 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT location FROM table_name_89 WHERE opponent = \"scott junk\"", "question": "Where is the location where Scott Junk was the opponent?", "context": "CREATE TABLE table_name_89 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE date = \"14 december 1974\" AND away_team = \"crystal palace\"", "question": "what is the score on 14 december 1974 and the away team is crystal palace?", "context": "CREATE TABLE table_name_69 (score VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE away_team = \"crystal palace\"", "question": "what is the date when the away team is crystal palace?", "context": "CREATE TABLE table_name_94 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_7 WHERE away_team = \"bradford city\"", "question": "What was the Tie Number of the Bradford City away team?", "context": "CREATE TABLE table_name_7 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_81 WHERE tie_no = \"replay\" AND away_team = \"bolton wanderers\"", "question": "Who was the home team that had a replay of Tie Number and played against the Bolton Wanderers?", "context": "CREATE TABLE table_name_81 (home_team VARCHAR, tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE tie_no = \"4\"", "question": "What date has a Tie Number of 4?", "context": "CREATE TABLE table_name_92 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_54 WHERE player = \"tom weiskopf\"", "question": "What is the average money ($) that Tom Weiskopf made?", "context": "CREATE TABLE table_name_54 (money___ INTEGER, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_43 WHERE country = \"united states\" AND to_par = \"+2\" AND score = 73 - 74 - 71 - 72 = 290", "question": "What place did the golfer from the United States come in with a To Par of +2, and a score of 73-74-71-72=290?", "context": "CREATE TABLE table_name_43 (place VARCHAR, country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT power_notation FROM table_name_35 WHERE long_scale = \"one million\"", "question": "For a long scale of one million, what is the power notion?", "context": "CREATE TABLE table_name_35 (power_notation VARCHAR, long_scale VARCHAR)"}, {"answer": "SELECT long_scale FROM table_name_7 WHERE power_notation = \"10 12\"", "question": "For a power notation of 10 12, what is the long scale?", "context": "CREATE TABLE table_name_7 (long_scale VARCHAR, power_notation VARCHAR)"}, {"answer": "SELECT long_scale FROM table_name_94 WHERE short_scale = \"one quadrillion a thousand trillion\"", "question": "For a short scale of one quadrillion a thousand trillion, what is the Long scale?", "context": "CREATE TABLE table_name_94 (long_scale VARCHAR, short_scale VARCHAR)"}, {"answer": "SELECT employee__real_name_ FROM table_name_9 WHERE pick__number > 10 AND brand__to_ = \"raw\"", "question": "what is the employee (real name) when the pick # is higher than 10 and the brand (to) is raw?", "context": "CREATE TABLE table_name_9 (employee__real_name_ VARCHAR, pick__number VARCHAR, brand__to_ VARCHAR)"}, {"answer": "SELECT opponent_team FROM table_name_37 WHERE scorers = \"ronaldinho 90+3'\"", "question": "Who was the opposing team when the scorer was ronaldinho 90+3'?", "context": "CREATE TABLE table_name_37 (opponent_team VARCHAR, scorers VARCHAR)"}, {"answer": "SELECT opponent_team FROM table_name_84 WHERE scorers = \"jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'\"", "question": "Who was the opposing team when the scorers were jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'?", "context": "CREATE TABLE table_name_84 (opponent_team VARCHAR, scorers VARCHAR)"}, {"answer": "SELECT score FROM table_name_26 WHERE home_team = \"altrincham\"", "question": "What was the score when Altrincham was home?", "context": "CREATE TABLE table_name_26 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(goals_against) FROM table_name_20 WHERE drawn < 3", "question": "How many goals against when the draws are fewer than 3?", "context": "CREATE TABLE table_name_20 (goals_against INTEGER, drawn INTEGER)"}, {"answer": "SELECT SUM(goals_for) FROM table_name_24 WHERE points_1 = 38 AND played < 42", "question": "How many goals when the points 1 is 38 and the played number is less than 42?", "context": "CREATE TABLE table_name_24 (goals_for INTEGER, points_1 VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_20 WHERE goal_difference = \"+10\" AND goals_against > 61", "question": "What is the fewest goals for when goal difference is +10 and goals against is more than 61?", "context": "CREATE TABLE table_name_20 (goals_for INTEGER, goal_difference VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_35 WHERE goals_against = 75 AND drawn < 11", "question": "What is the fewest goals for when goals against is 75 and drawn is smaller than 11?", "context": "CREATE TABLE table_name_35 (goals_for INTEGER, goals_against VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_46 WHERE position > 10 AND goal_difference < -24 AND played > 30", "question": "What is the highest goals for the position after 10, a goal difference less than -24, and played more than 30 times?", "context": "CREATE TABLE table_name_46 (goals_for INTEGER, played VARCHAR, position VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_88 WHERE played > 30", "question": "What is the lowest goals for more than 30 games played?", "context": "CREATE TABLE table_name_88 (goals_for INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_71 WHERE position > 8 AND losses = 12 AND played < 30", "question": "What is the highest amount of goals in the position after 8, 12 losses, and played less than 30 games?", "context": "CREATE TABLE table_name_71 (goals_for INTEGER, played VARCHAR, position VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_50 WHERE played > 30", "question": "What is the total number of losses for the over 30 games played?", "context": "CREATE TABLE table_name_50 (losses VARCHAR, played INTEGER)"}, {"answer": "SELECT COUNT(losses) FROM table_name_68 WHERE draws < 7 AND points > 26 AND goals_for = 60 AND position < 4", "question": "What is the total number of losses and draws less than 7, points larger than 26, 60 goals, and a position before 4?", "context": "CREATE TABLE table_name_68 (losses VARCHAR, position VARCHAR, goals_for VARCHAR, draws VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_84 WHERE gold > 0 AND total = 15 AND silver < 5", "question": "What is the highest total for bronze with a gold larger than 0, a silver smaller than 5, and a total of 15?", "context": "CREATE TABLE table_name_84 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE high_points = \"dwight howard (25)\"", "question": "What is Score, when High Points is \"Dwight Howard (25)\"?", "context": "CREATE TABLE table_name_36 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE team = \"washington\"", "question": "What is Score, when Team is \"Washington\"?", "context": "CREATE TABLE table_name_81 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_97 WHERE location_attendance = \"pepsi center 19,749\"", "question": "What is Record, when Location Attendance is \"Pepsi Center 19,749\"?", "context": "CREATE TABLE table_name_97 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_24 WHERE game = 36", "question": "What is Record, when Game is \"36\"?", "context": "CREATE TABLE table_name_24 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE winning_score = \u221214(68 - 68 - 67 - 71 = 274)", "question": "What is Date, when Winning Score is \u221214 (68-68-67-71=274)?", "context": "CREATE TABLE table_name_38 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_24 WHERE tournament = \"mercedes championships (3)\"", "question": "What is the Margin of Victory, when Tournament is Mercedes Championships (3)?", "context": "CREATE TABLE table_name_24 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE tournament = \"greenbrier classic\"", "question": "What is Date, when Tournament, is Greenbrier Classic?", "context": "CREATE TABLE table_name_83 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_87 WHERE margin_of_victory = \"6 strokes\"", "question": "What is Runner(s)-Up when Margin of Victory is 6 Strokes?", "context": "CREATE TABLE table_name_87 (runner_s__up VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE runner_s__up = \"jonathan kaye\"", "question": "What is Date, when Runner(s)-Up is Jonathan Kaye?", "context": "CREATE TABLE table_name_18 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT MAX(year_named) FROM table_name_1 WHERE name = \"nahete colles\"", "question": "What is the year that nahete colles was named?", "context": "CREATE TABLE table_name_1 (year_named INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(year_named) FROM table_name_78 WHERE latitude = \"76.0n\" AND diameter__km_ > 548", "question": "What year was the geological feature with a latitude of 76.0n and a diameter larger than 548 km was named?", "context": "CREATE TABLE table_name_78 (year_named INTEGER, latitude VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_name_62 WHERE name = \"t'ien hu colles\"", "question": "What is the diameter in km of t'ien hu colles?", "context": "CREATE TABLE table_name_62 (diameter__km_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_22 WHERE laps = 134", "question": "Which team has driven 134 laps?", "context": "CREATE TABLE table_name_22 (team VARCHAR, laps VARCHAR)"}, {"answer": "SELECT class FROM table_name_74 WHERE laps > 134 AND pos = \"4th\"", "question": "In what class is the laps greater than 134 and the position is 4th?", "context": "CREATE TABLE table_name_74 (class VARCHAR, laps VARCHAR, pos VARCHAR)"}, {"answer": "SELECT title FROM table_name_11 WHERE name = \"mentuhotep iv\"", "question": "What title did Mentuhotep IV have?", "context": "CREATE TABLE table_name_11 (title VARCHAR, name VARCHAR)"}, {"answer": "SELECT title FROM table_name_78 WHERE name = \"amenemhat ii\"", "question": "What is the title of Amenemhat II?", "context": "CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR)"}, {"answer": "SELECT title FROM table_name_78 WHERE name = \"senusret i\"", "question": "What is the title of Senusret I?", "context": "CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR)"}, {"answer": "SELECT title FROM table_name_57 WHERE name = \"amenemhat i\"", "question": "What is the title of Amenemhat I?", "context": "CREATE TABLE table_name_57 (title VARCHAR, name VARCHAR)"}, {"answer": "SELECT record FROM table_name_35 WHERE round = 5 AND time = \"5:00\" AND opponent = \"torrance taylor\"", "question": "What is the Record when the round was 5, time was 5:00, and the opponent was Torrance Taylor", "context": "CREATE TABLE table_name_35 (record VARCHAR, opponent VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT method FROM table_name_86 WHERE time = \"5:00\" AND round > 4", "question": "What is the method when the time was 5:00, and the round higher than 4?", "context": "CREATE TABLE table_name_86 (method VARCHAR, time VARCHAR, round VARCHAR)"}, {"answer": "SELECT polling_organisation_client FROM table_name_5 WHERE others = \"7%\"", "question": "When the others had a value of 7%, what was the Polling organisation/client?", "context": "CREATE TABLE table_name_5 (polling_organisation_client VARCHAR, others VARCHAR)"}, {"answer": "SELECT player FROM table_name_26 WHERE position = \"small forward\"", "question": "What player plays the position of small forward?", "context": "CREATE TABLE table_name_26 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT latitude FROM table_name_18 WHERE diameter__km_ = 0", "question": "What is the latitude of the 0 diameter?", "context": "CREATE TABLE table_name_18 (latitude VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT longitude FROM table_name_35 WHERE name = \"angerona tholus\"", "question": "What is the longitude of Angerona Tholus?", "context": "CREATE TABLE table_name_35 (longitude VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(diameter__km_) FROM table_name_97 WHERE name = \"eirene tholus\"", "question": "What is the smallest diameter for Eirene Tholus?", "context": "CREATE TABLE table_name_97 (diameter__km_ INTEGER, name VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_88 WHERE date = \"april 25\"", "question": "What was the game on April 25?", "context": "CREATE TABLE table_name_88 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(wkts) FROM table_name_46 WHERE ovrs > 2 AND econ > 7.84", "question": "what is the sum of the wkts when the ovrs were bigger than 2 and econ was bigger than 7.84?", "context": "CREATE TABLE table_name_46 (wkts INTEGER, ovrs VARCHAR, econ VARCHAR)"}, {"answer": "SELECT SUM(runs) FROM table_name_65 WHERE ovrs < 2 AND wkts > 0", "question": "What is the sum of the runs when the wkts were bigger than 0 and ovrs were smaller than 2?", "context": "CREATE TABLE table_name_65 (runs INTEGER, ovrs VARCHAR, wkts VARCHAR)"}, {"answer": "SELECT MAX(wkts) FROM table_name_21 WHERE runs < 26 AND player = \"james hopes\" AND ovrs > 2", "question": "What is the highest wkts for james hopes who had less than 26 runs and more than 2 ovrs?", "context": "CREATE TABLE table_name_21 (wkts INTEGER, ovrs VARCHAR, runs VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(sales__billion_) AS $_ FROM table_name_65 WHERE headquarters = \"france\" AND assets__billion_$_ > 2 OFFSET 539.1", "question": "What is the average sales in billions of the company headquartered in France with more than 2,539.1 billion in assets?", "context": "CREATE TABLE table_name_65 (sales__billion_ INTEGER, headquarters VARCHAR, assets__billion_$_ VARCHAR)"}, {"answer": "SELECT AVG(sales__billion_) AS $_ FROM table_name_5 WHERE company = \"walmart\" AND profits__billion_$_ > 15.7", "question": "What is the average sales in billions of walmart, which has more than 15.7 billion in profits?", "context": "CREATE TABLE table_name_5 (sales__billion_ INTEGER, company VARCHAR, profits__billion_$_ VARCHAR)"}, {"answer": "SELECT rider FROM table_name_35 WHERE grid = 21", "question": "What is the rider when the grid is 21?", "context": "CREATE TABLE table_name_35 (rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_71 WHERE manufacturer = \"yamaha\" AND rider = \"garry mccoy\" AND grid < 4", "question": "What is the average laps when the manufacturer is yamaha, and the rider is garry mccoy and the grid is smaller than 4?", "context": "CREATE TABLE table_name_71 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_10 WHERE rider = \"andrew pitt\" AND grid < 18", "question": "What is the lowest laps for rider andrew pitt, with a grid smaller than 18? Wha", "context": "CREATE TABLE table_name_10 (laps INTEGER, rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_4 WHERE manufacturer = \"yamaha\" AND time_retired = \"+1:08.312\" AND grid < 20", "question": "What is the lowest laps that has a manufacturer of yamaha, and a time/retired of +1:08.312, and a grid less than 20?", "context": "CREATE TABLE table_name_4 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT event FROM table_name_74 WHERE method = \"tko (punches)\" AND opponent = \"jason macdonald\"", "question": "What event had a tko (punches) method and jason macdonald as the opponent?", "context": "CREATE TABLE table_name_74 (event VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_30 WHERE round > 1 AND method = \"decision (unanimous)\"", "question": "What is the opponent after round number 1 with a method of decision (unanimous)?", "context": "CREATE TABLE table_name_30 (opponent VARCHAR, round VARCHAR, method VARCHAR)"}, {"answer": "SELECT partnering FROM table_name_29 WHERE opponents_in_final = \"marcelo melo andr\u00e9 s\u00e1\"", "question": "Who is the partnering that had the opponents of Marcelo Melo Andr\u00e9 S\u00e1?", "context": "CREATE TABLE table_name_29 (partnering VARCHAR, opponents_in_final VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_name_32 WHERE date = \"february 14, 1999\"", "question": "What was the score on February 14, 1999?", "context": "CREATE TABLE table_name_32 (score_in_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE score_in_final = \"6\u20137(9), 6\u20132, (10\u20137)\"", "question": "What date was the score 6\u20137(9), 6\u20132, (10\u20137)?", "context": "CREATE TABLE table_name_29 (date VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT MIN(sydney) FROM table_name_16 WHERE weekly_rank < 8 AND brisbane > 252 OFFSET 000", "question": "What is the lowest value for Sydney, when WEEKLY RANK is less than 8, and when Brisbane is greater than 252,000?", "context": "CREATE TABLE table_name_16 (sydney INTEGER, weekly_rank VARCHAR, brisbane VARCHAR)"}, {"answer": "SELECT SUM(melbourne) FROM table_name_93 WHERE episode_number_production_number = \"19 2-06\" AND sydney < 389 OFFSET 000", "question": "What is the sum of the values for Melbourne, when Episode Number Production Number is 19 2-06, and when Sydney is less than 389,000?", "context": "CREATE TABLE table_name_93 (melbourne INTEGER, episode_number_production_number VARCHAR, sydney VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_25 WHERE time = \"5:00\" AND event = \"ufc 155\"", "question": "How many rounds had a time of 5:00 at UFC 155?", "context": "CREATE TABLE table_name_25 (round VARCHAR, time VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_86 WHERE time = \"2:34\"", "question": "Which event had a time of 2:34?", "context": "CREATE TABLE table_name_86 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_47 WHERE res = \"win\" AND time = \"1:21\"", "question": "Who was the opponent in the bout that led to a win in a time of 1:21?", "context": "CREATE TABLE table_name_47 (opponent VARCHAR, res VARCHAR, time VARCHAR)"}, {"answer": "SELECT method FROM table_name_31 WHERE opponent = \"akihiro gono\"", "question": "What is the method of resolution for the fight against akihiro gono?", "context": "CREATE TABLE table_name_31 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_52 WHERE record = \"1-1\"", "question": "What is the average number of rounds that Lance Gibson fought when his record was 1-1?", "context": "CREATE TABLE table_name_52 (round INTEGER, record VARCHAR)"}, {"answer": "SELECT country FROM table_name_99 WHERE score = 69 - 71 - 66 = 206", "question": "What is the Country of the Player with a Score of 69-71-66=206?", "context": "CREATE TABLE table_name_99 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_36 WHERE country = \"scotland\"", "question": "What is the Place of the Player from Scotland?", "context": "CREATE TABLE table_name_36 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_78 WHERE player = \"steve lowery\"", "question": "What is Steve Lowery's Place?", "context": "CREATE TABLE table_name_78 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT qual FROM table_name_98 WHERE year = \"1961\"", "question": "What was 1961's qual?", "context": "CREATE TABLE table_name_98 (qual VARCHAR, year VARCHAR)"}, {"answer": "SELECT finish FROM table_name_10 WHERE start = \"13\"", "question": "What was 13's finish?", "context": "CREATE TABLE table_name_10 (finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT laps FROM table_name_95 WHERE year = \"1969\"", "question": "How many laps were in 1969?", "context": "CREATE TABLE table_name_95 (laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT rank FROM table_name_68 WHERE qual = \"145.144\"", "question": "Which Rank has a Qual of 145.144?", "context": "CREATE TABLE table_name_68 (rank VARCHAR, qual VARCHAR)"}, {"answer": "SELECT sources_of_pop___area FROM table_name_37 WHERE city = \"bandung\"", "question": "What is the sources for Bandung?", "context": "CREATE TABLE table_name_37 (sources_of_pop___area VARCHAR, city VARCHAR)"}, {"answer": "SELECT race FROM table_name_91 WHERE track = \"iowa speedway\"", "question": "What race happened at Iowa Speedway?", "context": "CREATE TABLE table_name_91 (race VARCHAR, track VARCHAR)"}, {"answer": "SELECT winner FROM table_name_14 WHERE race = \"food world 250\"", "question": "Who won the Food World 250?", "context": "CREATE TABLE table_name_14 (winner VARCHAR, race VARCHAR)"}, {"answer": "SELECT race FROM table_name_24 WHERE track = \"pocono\" AND date = \"08-02-2008\"", "question": "What race happened at pocono on 08-02-2008?", "context": "CREATE TABLE table_name_24 (race VARCHAR, track VARCHAR, date VARCHAR)"}, {"answer": "SELECT race FROM table_name_1 WHERE date = \"04-25-2008\"", "question": "What race happened on 04-25-2008?", "context": "CREATE TABLE table_name_1 (race VARCHAR, date VARCHAR)"}, {"answer": "SELECT track FROM table_name_34 WHERE date = \"09-13-2008\"", "question": "Where was the race on 09-13-2008?", "context": "CREATE TABLE table_name_34 (track VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_17 WHERE record = \"26-30-10\" AND march > 11", "question": "Which game number was played after March 11 and ended with a record of 26-30-10?", "context": "CREATE TABLE table_name_17 (game INTEGER, record VARCHAR, march VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_77 WHERE opponent = \"@ boston bruins\"", "question": "How many games total were played against @ Boston Bruins this season?", "context": "CREATE TABLE table_name_77 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT MIN(march) FROM table_name_32 WHERE record = \"25-29-10\"", "question": "When was the earliest game date in March where the match ended with a record of 25-29-10?", "context": "CREATE TABLE table_name_32 (march INTEGER, record VARCHAR)"}, {"answer": "SELECT points FROM table_name_58 WHERE season < 1977 AND winner = \"john vopni\"", "question": "How many points when John Vopni won a season before 1977?", "context": "CREATE TABLE table_name_58 (points VARCHAR, season VARCHAR, winner VARCHAR)"}, {"answer": "SELECT points FROM table_name_95 WHERE winner = \"bill benson\"", "question": "How many points when Bill Benson was the winner?", "context": "CREATE TABLE table_name_95 (points VARCHAR, winner VARCHAR)"}, {"answer": "SELECT team FROM table_name_10 WHERE high_rebounds = \"tyson chandler (7)\"", "question": "Which team did Tyson Chandler (7) have high rebounds for?", "context": "CREATE TABLE table_name_10 (team VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_10 WHERE date = \"november 27\"", "question": "How many high assists were on November 27?", "context": "CREATE TABLE table_name_10 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_51 WHERE year = 1980", "question": "What was the winning score in 1980?", "context": "CREATE TABLE table_name_51 (winning_score VARCHAR, year VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_8 WHERE year < 1985 AND championship = \"u.s. women's open\"", "question": "What was the winning score in 1985 for Championship of u.s. women's open?", "context": "CREATE TABLE table_name_8 (winning_score VARCHAR, year VARCHAR, championship VARCHAR)"}, {"answer": "SELECT year FROM table_name_35 WHERE runner_up = \"jane geddes\"", "question": "When was the runner-up Jane Geddes?", "context": "CREATE TABLE table_name_35 (year VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT championship FROM table_name_17 WHERE year > 1985 AND winning_score = \u20138(68 - 72 - 69 - 71 = 280)", "question": "Which championship after 1985 had a winning score of \u20138 (68-72-69-71=280)?", "context": "CREATE TABLE table_name_17 (championship VARCHAR, year VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT method FROM table_name_77 WHERE opponent = \"jake brown\"", "question": "What was the method of resolution for the fight against jake brown?", "context": "CREATE TABLE table_name_77 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT team FROM table_name_44 WHERE round_winner = \"john bowe\" AND circuit = \"winton motor raceway\"", "question": "On what team did John Bowe round winner at Winton Motor Raceway belong to?", "context": "CREATE TABLE table_name_44 (team VARCHAR, round_winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT team FROM table_name_41 WHERE circuit = \"oran park raceway\"", "question": "What was the team features at Oran Park Raceway?", "context": "CREATE TABLE table_name_41 (team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT location___state FROM table_name_19 WHERE circuit = \"eastern creek raceway\"", "question": "Where is the Eastern Creek Raceway located?", "context": "CREATE TABLE table_name_19 (location___state VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT state FROM table_name_9 WHERE name = \"dai\"", "question": "Which state was Dai from?", "context": "CREATE TABLE table_name_9 (state VARCHAR, name VARCHAR)"}, {"answer": "SELECT title FROM table_name_6 WHERE name = \"mu\"", "question": "What was Mu's title?", "context": "CREATE TABLE table_name_6 (title VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_34 WHERE week = 3", "question": "what is the highest attendance for week 3?", "context": "CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_16 WHERE week > 7 AND date = \"november 4, 1979\"", "question": "what is the result for the week higher than 7 on november 4, 1979?", "context": "CREATE TABLE table_name_16 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_2 WHERE date = \"september 16, 1979\" AND attendance < 54 OFFSET 212", "question": "what is the lowest week when the date is september 16, 1979 and the attendance less than 54,212?", "context": "CREATE TABLE table_name_2 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT competition FROM table_name_98 WHERE man_of_the_match = \"stuart potts\"", "question": "Which competition has stuart potts as the man of the match?", "context": "CREATE TABLE table_name_98 (competition VARCHAR, man_of_the_match VARCHAR)"}, {"answer": "SELECT venue FROM table_name_15 WHERE result = \"lost 5-4\"", "question": "Which venue had a lost 5-4 result?", "context": "CREATE TABLE table_name_15 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_9 WHERE opponent = \"wightlink raiders\"", "question": "What is the venue of the match with the wightlink raiders as the opponent?", "context": "CREATE TABLE table_name_9 (venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_45 WHERE competition = \"league/cup\" AND opponent = \"swindon wildcats\" AND man_of_the_match = \"neil liddiard\"", "question": "What is the result of the league/cup competition with the swindon wildcats as the opponent and neil liddiard as the man of the match?", "context": "CREATE TABLE table_name_45 (result VARCHAR, man_of_the_match VARCHAR, competition VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_35 WHERE opponent = \"slough jets\" AND date = \"2nd\"", "question": "What is the attendance of the match on the 2nd with the slough jets as the opponent?", "context": "CREATE TABLE table_name_35 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_89 WHERE total = \"75\u201353\"", "question": "What was the score when the total was 75\u201353?", "context": "CREATE TABLE table_name_89 (score VARCHAR, total VARCHAR)"}, {"answer": "SELECT total FROM table_name_80 WHERE set_3 = \"25\u201314\"", "question": "What was the total when the set 3 was 25\u201314?", "context": "CREATE TABLE table_name_80 (total VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE set_1 = \"25\u201323\" AND set_3 = \"25\u201314\"", "question": "What date was the set 1 25\u201323, and a Set 3 of 25\u201314?", "context": "CREATE TABLE table_name_12 (date VARCHAR, set_1 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE set_3 = \"12\u201325\"", "question": "What date was the Set 3 of 12\u201325?", "context": "CREATE TABLE table_name_79 (date VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_26 WHERE total = \"53\u201375\"", "question": "What is the Set 3 when the total was 53\u201375?", "context": "CREATE TABLE table_name_26 (set_3 VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_99 WHERE top_5 > 2 AND top_10 < 5", "question": "What is the average win with a top 5 greater than 2 and a top 10 less than 5?", "context": "CREATE TABLE table_name_99 (wins INTEGER, top_5 VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT COUNT(poles) FROM table_name_20 WHERE starts = 4 AND position = \"46th\"", "question": "How many poles have 4 Starts of 4 and position of 46th?", "context": "CREATE TABLE table_name_20 (poles VARCHAR, starts VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_41 WHERE director_s_ = \"m. night shyamalan\"", "question": "Sum of m. night shyamalan ranks?", "context": "CREATE TABLE table_name_41 (rank INTEGER, director_s_ VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_92 WHERE title = \"star wars episode ii: attack of the clones\"", "question": "Director for Star Wars Episode II: attack of the clones?", "context": "CREATE TABLE table_name_92 (director_s_ VARCHAR, title VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_39 WHERE away_team = \"oxford city\"", "question": "What was the tie no when Oxford city was the away team?", "context": "CREATE TABLE table_name_39 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_97 WHERE away_team = \"wrexham\"", "question": "What was the tie no when Wrexham was the away team?", "context": "CREATE TABLE table_name_97 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE away_team = \"spennymoor united\"", "question": "What was the score when Spennymoor United as the away team?", "context": "CREATE TABLE table_name_67 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE away_team = \"grimsby town\"", "question": "What date was Grimsby Town the away team?", "context": "CREATE TABLE table_name_34 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT name FROM table_name_33 WHERE eliminated = \"banana night\"", "question": "Who was eliminated on Banana Night?", "context": "CREATE TABLE table_name_33 (name VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT special_guest FROM table_name_28 WHERE category = \"vocal groups\" AND name = \"romantic\"", "question": "Who was the special guest when the category was vocal groups and the name was Romantic?", "context": "CREATE TABLE table_name_28 (special_guest VARCHAR, category VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE eliminated = \"final night\"", "question": "On what date was elimination on final night?", "context": "CREATE TABLE table_name_43 (date VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_89 WHERE opponent = \"washington\"", "question": "What is the total number of games for the opponent in Washington?", "context": "CREATE TABLE table_name_89 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT stories FROM table_name_53 WHERE height__m_ < 138 AND year_of_completion = 1971", "question": "How many stories have a height less than 138 meters with a completion date in 1971?", "context": "CREATE TABLE table_name_53 (stories VARCHAR, height__m_ 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", "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 sanskrit FROM table_name_26 WHERE english = \"mindfulness of breathing\"", "question": "Which Sanskrit has an English of mindfulness of breathing?", "context": "CREATE TABLE table_name_26 (sanskrit VARCHAR, english VARCHAR)"}, {"answer": "SELECT sanskrit FROM table_name_74 WHERE chinese = \"\u2014\" AND english = \"cultivation of settling\"", "question": "Which Sanskrit has a Chinese of \u2014, and an English of cultivation of settling?", "context": "CREATE TABLE table_name_74 (sanskrit VARCHAR, chinese VARCHAR, english VARCHAR)"}, {"answer": "SELECT pali FROM table_name_54 WHERE english = \"mindfulness of breathing\"", "question": "Which Pali has an English of mindfulness of breathing?", "context": "CREATE TABLE table_name_54 (pali VARCHAR, english VARCHAR)"}, {"answer": "SELECT pali FROM table_name_74 WHERE english = \"meditative concentration\"", "question": "Which Pali has an English of meditative concentration?", "context": "CREATE TABLE table_name_74 (pali VARCHAR, english VARCHAR)"}, {"answer": "SELECT chinese FROM table_name_59 WHERE pali = \"atappa\"", "question": "Which Chinese has a Pali of atappa?", "context": "CREATE TABLE table_name_59 (chinese VARCHAR, pali VARCHAR)"}, {"answer": "SELECT english FROM table_name_42 WHERE sanskrit = \"sam\u0101dhi\"", "question": "Which English has a Sanskrit of sam\u0101dhi?", "context": "CREATE TABLE table_name_42 (english VARCHAR, sanskrit VARCHAR)"}, {"answer": "SELECT player FROM table_name_60 WHERE round < 8 AND position = \"guard\" AND school_club_team = \"stephen f. austin\"", "question": "Who is the player in guard position from Stephen F. Austin in a round less than 8?", "context": "CREATE TABLE table_name_60 (player VARCHAR, school_club_team VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_31 WHERE pick < 41 AND school_club_team = \"ohio state\"", "question": "Which position has a pick less than 41 from Ohio State?", "context": "CREATE TABLE table_name_31 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_52 WHERE 2002 = \"grand slam tournaments\"", "question": "What shows for 2006 when 2002 is Grand Slam Tournaments?", "context": "CREATE TABLE table_name_52 (Id VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_65 WHERE 2006 = \"grand slam tournaments\"", "question": "What shows for 2002 when 2006 is Grand Slam Tournaments?", "context": "CREATE TABLE table_name_65 (Id VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_16 WHERE 2002 = \"0\u20131\"", "question": "What shows for 2005 when 2002 shows 0\u20131?", "context": "CREATE TABLE table_name_16 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_96 WHERE 2002 = \"0\u20131\"", "question": "What shows for 2006 when 2002 is 0\u20131?", "context": "CREATE TABLE table_name_96 (Id VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_40 WHERE 2004 = \"a\" AND 2005 = \"1r\"", "question": "What shows for 2002 when the 2004 is A, and the 2005 is 1r?", "context": "CREATE TABLE table_name_40 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_60 WHERE 2005 = \"a\" AND 2006 = \"a\" AND tournament = \"us open\"", "question": "What shows for 2004 when 2005 is A, 2006 is A, tournament is US Open?", "context": "CREATE TABLE table_name_60 (tournament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_8 WHERE date = \"december 2, 1962\"", "question": "Who was the opponent on December 2, 1962?", "context": "CREATE TABLE table_name_8 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_70 WHERE status = \"town\" AND census_ranking = \"1,379 of 5,008\" AND area_km_2 < 8.35", "question": "What is the Population of the Town with a Census Ranking of 1,379 of 5,008 and an Area km 2 smaller than 8.35?", "context": "CREATE TABLE table_name_70 (population INTEGER, area_km_2 VARCHAR, status VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT official_name FROM table_name_50 WHERE area_km_2 = 16.13", "question": "What is the Official Name of the Community with an Area km 2 of 16.13?", "context": "CREATE TABLE table_name_50 (official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT country FROM table_name_48 WHERE to_par = \"\u20132\" AND player = \"tsuneyuki nakajima\"", "question": "What is Country, when To Par is \"\u20132\", and when Player is \"Tsuneyuki Nakajima\"?", "context": "CREATE TABLE table_name_48 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_40 WHERE score = 72 - 65 = 137", "question": "What is Country, when Score is \"72-65=137\"?", "context": "CREATE TABLE table_name_40 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_44 WHERE place = \"t3\" AND player = \"jim thorpe\"", "question": "What is Country, when Place is \"T3\", and when Player is \"Jim Thorpe\"?", "context": "CREATE TABLE table_name_44 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_79 WHERE game = 34", "question": "Who was the team for game 34?", "context": "CREATE TABLE table_name_79 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(goals_for) FROM table_name_45 WHERE drawn > 12 AND team = \"goole town\" AND goals_against > 60", "question": "How many goals for had a drawn more than 12 for the Goole Town team, as well as more than 60 goals against?", "context": "CREATE TABLE table_name_45 (goals_for INTEGER, goals_against VARCHAR, drawn VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_19 WHERE drawn > 7 AND goals_against < 86 AND lost > 11 AND played > 42", "question": "What are the average goals for with a drawn higher than 7 and goals against less than 86, as well as more than 11 losses and more than 42 games played?", "context": "CREATE TABLE table_name_19 (goals_for INTEGER, played VARCHAR, lost VARCHAR, drawn VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_75 WHERE drawn > 11 AND position < 17 AND goals_for > 61", "question": "What is the highest lost with a drawn more than 11, a position lower than 17 and more than 61 goals?", "context": "CREATE TABLE table_name_75 (lost INTEGER, goals_for VARCHAR, drawn VARCHAR, position VARCHAR)"}, {"answer": "SELECT name FROM table_name_31 WHERE title = \"ruler\"", "question": "Who held the title of Ruler?", "context": "CREATE TABLE table_name_31 (name VARCHAR, title VARCHAR)"}, {"answer": "SELECT type FROM table_name_54 WHERE title = \"ruler\"", "question": "What type of state did the ruler have a title?", "context": "CREATE TABLE table_name_54 (type VARCHAR, title VARCHAR)"}, {"answer": "SELECT state FROM table_name_2 WHERE title = \"marquis\" AND name = \"jing\"", "question": "In what state did Jing have the title of Marquis?", "context": "CREATE TABLE table_name_2 (state VARCHAR, title VARCHAR, name VARCHAR)"}, {"answer": "SELECT title FROM table_name_37 WHERE name = \"gongbo\"", "question": "What was Gongbo's title?", "context": "CREATE TABLE table_name_37 (title VARCHAR, name VARCHAR)"}, {"answer": "SELECT state FROM table_name_49 WHERE name = \"yi\"", "question": "What is the name of Yi's state?", "context": "CREATE TABLE table_name_49 (state VARCHAR, name VARCHAR)"}, {"answer": "SELECT devices_per_channel FROM table_name_19 WHERE name = \"sata revision 3.0\"", "question": "What is the Devices per channel where the Name is sata revision 3.0?", "context": "CREATE TABLE table_name_19 (devices_per_channel VARCHAR, name VARCHAR)"}, {"answer": "SELECT raw_bandwidth__mbit_s_ FROM table_name_8 WHERE name = \"sas 300\"", "question": "What is the Raw bandwidth (Mbit/s) for the SAS 300?", "context": "CREATE TABLE table_name_8 (raw_bandwidth__mbit_s_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_3 WHERE away_team = \"st kilda\" AND crowd = 8157", "question": "Name the Away team score which has an Away team of st kilda, and a Crowd of 8157?", "context": "CREATE TABLE table_name_3 (away_team VARCHAR, crowd VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_83 WHERE ground = \"colonial stadium\" AND date = \"friday, 2 march\"", "question": "Name the Away team which have a Ground of colonial stadium on friday, 2 march?", "context": "CREATE TABLE table_name_83 (away_team VARCHAR, ground VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_85 WHERE points = \"71\" AND f_laps = \"4\"", "question": "Which team has 71 Points and F/Laps of 4?", "context": "CREATE TABLE table_name_85 (team VARCHAR, points VARCHAR, f_laps VARCHAR)"}, {"answer": "SELECT poles FROM table_name_2 WHERE team = \"team jva\"", "question": "What Poles do Team jva have?", "context": "CREATE TABLE table_name_2 (poles VARCHAR, team VARCHAR)"}, {"answer": "SELECT points FROM table_name_64 WHERE races = \"11\" AND season > 2008", "question": "If the Season is later than 2008 and Races is 11, what ate the Points?", "context": "CREATE TABLE table_name_64 (points VARCHAR, races VARCHAR, season VARCHAR)"}, {"answer": "SELECT position FROM table_name_38 WHERE team = \"sahara force india f1 team\" AND points = \"46\"", "question": "What Position is Team Sahara Force india f1 team with 46 Points?", "context": "CREATE TABLE table_name_38 (position VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT poles FROM table_name_63 WHERE position = \"4th\"", "question": "Which Poles have a position of 4th?", "context": "CREATE TABLE table_name_63 (poles VARCHAR, position VARCHAR)"}, {"answer": "SELECT f_laps FROM table_name_77 WHERE points = \"27\"", "question": "Which F/Laps have 27 Points?", "context": "CREATE TABLE table_name_77 (f_laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT country FROM table_name_71 WHERE name = \"sba towers tower hayneville\"", "question": "What country has the SBA Towers Tower Hayneville?", "context": "CREATE TABLE table_name_71 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT structure_type FROM table_name_17 WHERE name = \"american tower christmas\"", "question": "What type of structure is there at the American Tower Christmas?", "context": "CREATE TABLE table_name_17 (structure_type VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_53 WHERE town = \"egypt, arkansas\"", "question": "What's the name of the structure at Egypt, Arkansas?", "context": "CREATE TABLE table_name_53 (name VARCHAR, town VARCHAR)"}, {"answer": "SELECT country FROM table_name_83 WHERE date = 1991 AND birth_date = \"1976-07-23\"", "question": "What country was the woman from who was born 1976-07-23 and became a grandmaster in 1991?", "context": "CREATE TABLE table_name_83 (country VARCHAR, date VARCHAR, birth_date VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_41 WHERE team = \"sportivo luque\u00f1o\" AND wins > 1", "question": "Name the Points which has a Team of sportivo luque\u00f1o, and Wins larger than 1?", "context": "CREATE TABLE table_name_41 (points INTEGER, team VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_80 WHERE points < 10 AND losses < 3 AND scored = 11", "question": "Name the Wins which has Points smaller than 10, Losses smaller than 3, and a Scored of 11?", "context": "CREATE TABLE table_name_80 (wins INTEGER, scored VARCHAR, points VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MAX(conceded) FROM table_name_4 WHERE played < 5", "question": "Please name the highest Conceded which has a Played smaller than 5?", "context": "CREATE TABLE table_name_4 (conceded INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(losses) FROM table_name_57 WHERE played < 5", "question": "Please name the Losses that has a Played smaller than 5?", "context": "CREATE TABLE table_name_57 (losses INTEGER, played INTEGER)"}, {"answer": "SELECT COUNT(scored) FROM table_name_28 WHERE position > 6", "question": "Name the Scored which has a Position larger than 6?", "context": "CREATE TABLE table_name_28 (scored VARCHAR, position INTEGER)"}, {"answer": "SELECT MIN(week) FROM table_name_15 WHERE opponent = \"cincinnati bengals\"", "question": "What is the earliest week with an opponent of cincinnati bengals?", "context": "CREATE TABLE table_name_15 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_55 WHERE date = \"october 30, 1994\"", "question": "What is the sum for the week with the date october 30, 1994?", "context": "CREATE TABLE table_name_55 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE week < 9 AND opponent = \"dallas cowboys\"", "question": "What is the date for a week before 9, and a opponent of dallas cowboys?", "context": "CREATE TABLE table_name_18 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_18 WHERE opponent = \"washington redskins\"", "question": "What is the biggest week with an opponent of washington redskins?", "context": "CREATE TABLE table_name_18 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_58 WHERE week > 3 AND opponent = \"philadelphia eagles\"", "question": "What was the attendance for a week larger than 3, and an opponent of philadelphia eagles?", "context": "CREATE TABLE table_name_58 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT res FROM table_name_96 WHERE opponent = \"jeff monson\"", "question": "What is the result of the match with Jeff Monson as opponent?", "context": "CREATE TABLE table_name_96 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_78 WHERE opponent = \"jason fairn\"", "question": "How many rounds was the match against Jason Fairn?", "context": "CREATE TABLE table_name_78 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_61 WHERE round = \"1\" AND res = \"loss\" AND opponent = \"carlos newton\"", "question": "What is the method of the match where there was a loss to Carlos Newton in round 1?", "context": "CREATE TABLE table_name_61 (method VARCHAR, opponent VARCHAR, round VARCHAR, res VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_12 WHERE game > 59", "question": "Who had the most points in games over 59?", "context": "CREATE TABLE table_name_12 (high_points VARCHAR, game INTEGER)"}, {"answer": "SELECT score FROM table_name_97 WHERE team = \"san antonio\"", "question": "What was the score for the game against San Antonio?", "context": "CREATE TABLE table_name_97 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_57 WHERE team = \"indiana\"", "question": "Who had the most assists in the game against Indiana?", "context": "CREATE TABLE table_name_57 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT railway FROM table_name_16 WHERE objectnumber = \"1975-7023\"", "question": "What is the UK Railway with an ObjectNumber of 1975-7023?", "context": "CREATE TABLE table_name_16 (railway VARCHAR, objectnumber VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_30 WHERE position_in_table = \"11th\" AND manner_of_departure = \"resigned\"", "question": "Who was the manager that was positioned 11th in table and resigned in departure?", "context": "CREATE TABLE table_name_30 (replaced_by VARCHAR, position_in_table VARCHAR, manner_of_departure VARCHAR)"}, {"answer": "SELECT MIN(tournaments_played) FROM table_name_62 WHERE year = 1998", "question": "what is the least tournaments played when the year is 1998?", "context": "CREATE TABLE table_name_62 (tournaments_played INTEGER, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_89 WHERE tournaments_played < 2 AND cuts_made = 1 AND earnings___$__ < 10 OFFSET 547", "question": "what is the year when tournaments played is less than 2, cuts made is 1 and earnings ($) is less than 10,547?", "context": "CREATE TABLE table_name_89 (year INTEGER, earnings___$__ VARCHAR, tournaments_played VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT best_finish FROM table_name_41 WHERE money_list_rank = \"n/a\" AND earnings___$__ > 0 AND cuts_made > 1", "question": "what is the best finish when money list rank is n/a, earnings ($) is more than 0 and cuts made is more than 1?", "context": "CREATE TABLE table_name_41 (best_finish VARCHAR, cuts_made VARCHAR, money_list_rank VARCHAR, earnings___$__ VARCHAR)"}, {"answer": "SELECT COUNT(tournaments_played) FROM table_name_97 WHERE money_list_rank = \"221\" AND cuts_made > 2", "question": "how many times is the money list rank 221 and cuts more than 2?", "context": "CREATE TABLE table_name_97 (tournaments_played VARCHAR, money_list_rank VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_82 WHERE best_finish = \"t-65\"", "question": "what is the earliest year with the best finish t-65?", "context": "CREATE TABLE table_name_82 (year INTEGER, best_finish VARCHAR)"}, {"answer": "SELECT AVG(tournaments_played) FROM table_name_63 WHERE cuts_made = 14", "question": "what is the average tournaments played when cuts made is 14?", "context": "CREATE TABLE table_name_63 (tournaments_played INTEGER, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(took_office) FROM table_name_2 WHERE district = 22", "question": "What is the earliest date of taking office for district 22?", "context": "CREATE TABLE table_name_2 (took_office INTEGER, district VARCHAR)"}, {"answer": "SELECT SUM(district) FROM table_name_37 WHERE party = \"democratic\" AND home_town = \"roby\"", "question": "What district has a democratic leader from Roby?", "context": "CREATE TABLE table_name_37 (district INTEGER, party VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT MAX(district) FROM table_name_72 WHERE party = \"democratic\" AND senator = \"steve carriker\" AND took_office > 1988", "question": "What is the district where Steve Carriker is the Democratic Senator and he took office later than 1988?", "context": "CREATE TABLE table_name_72 (district INTEGER, took_office VARCHAR, party VARCHAR, senator VARCHAR)"}, {"answer": "SELECT COUNT(series_number) FROM table_name_24 WHERE original_air_date < 1999 AND number_of_episodes > 7 AND dvd_region_1_release_date = \"16 april 2013\"", "question": "How many series originally aired before 1999 with more than 7 episodes and a DVD Region 1 release date of 16 april 2013?", "context": "CREATE TABLE table_name_24 (series_number VARCHAR, dvd_region_1_release_date VARCHAR, original_air_date VARCHAR, number_of_episodes VARCHAR)"}, {"answer": "SELECT MAX(original_air_date) FROM table_name_17 WHERE dvd_region_2_release_date = \"23 april 2012\" AND number_of_episodes > 10", "question": "What's the latest original air date with more than 10 episodes and a DVD Region 2 release date of 23 april 2012?", "context": "CREATE TABLE table_name_17 (original_air_date INTEGER, dvd_region_2_release_date VARCHAR, number_of_episodes VARCHAR)"}, {"answer": "SELECT AVG(original_air_date) FROM table_name_20 WHERE series_number = 10", "question": "What was the original air date of series number 10?", "context": "CREATE TABLE table_name_20 (original_air_date INTEGER, series_number VARCHAR)"}, {"answer": "SELECT SUM(number_of_episodes) FROM table_name_99 WHERE original_air_date > 1991 AND series_number < 21 AND dvd_region_2_release_date = \"26 march 2012\"", "question": "What's the sum of the number of episodes that originally aired after 1991 with a series number smaller than 21 and a DVD Region 2 release date of 26 march 2012?", "context": "CREATE TABLE table_name_99 (number_of_episodes INTEGER, dvd_region_2_release_date VARCHAR, original_air_date VARCHAR, series_number VARCHAR)"}, {"answer": "SELECT MIN(series_number) FROM table_name_69 WHERE original_air_date < 2009 AND dvd_region_2_release_date = \"26 july 2004\" AND number_of_episodes > 7", "question": "What's the lowest series number that originally aired before 2009 with more than 7 episodes and had a DVD Region 2 release date of 26 july 2004?", "context": "CREATE TABLE table_name_69 (series_number INTEGER, number_of_episodes VARCHAR, original_air_date VARCHAR, dvd_region_2_release_date VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_15 WHERE silver > 2", "question": "What is the total of bronze that has more silvers than 2?", "context": "CREATE TABLE table_name_15 (bronze VARCHAR, silver INTEGER)"}, {"answer": "SELECT COUNT(gold) FROM table_name_64 WHERE bronze > 1 AND total > 4", "question": "What is the total of Golds with more bronzes than 1 and totaled larger than 4?", "context": "CREATE TABLE table_name_64 (gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_82 WHERE bronze > 1 AND silver > 2", "question": "What is the least total that had more Bronzes than 1 and more silvers than 2?", "context": "CREATE TABLE table_name_82 (total INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_81 WHERE gold < 2 AND rank = 4 AND bronze < 1", "question": "What is the least total that has fewer golds than 2, a higher rank than 4 and fewer bronzes than 1?", "context": "CREATE TABLE table_name_81 (total INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_79 WHERE rank = 2 AND silver < 0", "question": "What is the lest amount of bronzes that ranked 2 and has less silvers than 0?", "context": "CREATE TABLE table_name_79 (bronze INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_48 WHERE bronze > 13 AND rank = \"8\" AND silver < 11", "question": "How many Total(s) are there, when the number of Bronze is greater than 13, when the Rank is 8, and when the number of Silver is less than 11?", "context": "CREATE TABLE table_name_48 (total VARCHAR, silver VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_26 WHERE bronze < 17 AND gold < 16", "question": "What is the Nation, when the number of Bronze is less than 17, and when the number of Gold is less than 16?", "context": "CREATE TABLE table_name_26 (nation VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_50 WHERE nation = \"japan (jpn)\" AND total > 37", "question": "What is the highest number of Silver, when the Nation is Japan (JPN), and when the Total is greater than 37?", "context": "CREATE TABLE table_name_50 (silver INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_97 WHERE bronze < 36 AND rank = \"2\" AND silver < 37", "question": "What is the lowest number of Gold, when the number of Bronze is less than 36, when the Rank is 2, and when Silver is less than 37?", "context": "CREATE TABLE table_name_97 (gold INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT res FROM table_name_83 WHERE event = \"ft 6 - full throttle 6\"", "question": "What is Res., when Event is \"FT 6 - Full Throttle 6\"?", "context": "CREATE TABLE table_name_83 (res VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_17 WHERE event = \"iscf - southeast championships\"", "question": "What is Opponent, when Event is \"ISCF - Southeast Championships\"?", "context": "CREATE TABLE table_name_17 (opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_13 WHERE record = \"3-0\"", "question": "What is Event, when Record is \"3-0\"?", "context": "CREATE TABLE table_name_13 (event VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE opponents = \"chelsea\" AND league_position = \"14th\"", "question": "What is the date of the game against Chelsea when the league position is 14th?", "context": "CREATE TABLE table_name_42 (date VARCHAR, opponents VARCHAR, league_position VARCHAR)"}, {"answer": "SELECT method FROM table_name_85 WHERE time = \"0:46\"", "question": "Which method had a time of 0:46?", "context": "CREATE TABLE table_name_85 (method VARCHAR, time VARCHAR)"}, {"answer": "SELECT round FROM table_name_91 WHERE opponent = \"brandon bledsoe\"", "question": "In the fight against Brandon Bledsoe, how many rounds did the fight last?", "context": "CREATE TABLE table_name_91 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_99 WHERE event = \"ufc fight night: teixeira vs. bader\"", "question": "What methos did Keith Wisniewski use in the ufc fight night: teixeira vs. bader?", "context": "CREATE TABLE table_name_99 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT vmax FROM table_name_45 WHERE capacity = \"1.556 cc\"", "question": "What was the maximum speed of the car with 1.556 cc capacity?", "context": "CREATE TABLE table_name_45 (vmax VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT vmax FROM table_name_60 WHERE cylinder = \"straight-4\" AND capacity = \"1.466 cc\" AND type = \"r 150\"", "question": "What was the maximum speed for straight-4, 1.466 cc Type r 150?", "context": "CREATE TABLE table_name_60 (vmax VARCHAR, type VARCHAR, cylinder VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT vmax FROM table_name_78 WHERE type = \"p4-1 (24/36 ps)\"", "question": "What was the maximum speed for the P4-1 (24/36 ps)?", "context": "CREATE TABLE table_name_78 (vmax VARCHAR, type VARCHAR)"}, {"answer": "SELECT country FROM table_name_17 WHERE player = \"jack nicklaus\"", "question": "What country is Jack Nicklaus from?", "context": "CREATE TABLE table_name_17 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_37 WHERE place = \"t7\" AND player = \"bill britton\"", "question": "What was the To par for bill britton when he placed t7?", "context": "CREATE TABLE table_name_37 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_71 WHERE player = \"jack nicklaus\"", "question": "What was the To par of Jack Nicklaus?", "context": "CREATE TABLE table_name_71 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_39 WHERE money___$__ = \"45,000\"", "question": "What country was the golfer from who had a money amount of 45,000?", "context": "CREATE TABLE table_name_39 (country VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_17 WHERE country = \"united states\" AND player = \"fred couples\"", "question": "What was the To par for United States golfer fred couples?", "context": "CREATE TABLE table_name_17 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT fate FROM table_name_97 WHERE nationality = \"french\" AND ship = \"pierre lott\"", "question": "what is the fate when the nationality is french and the ship is pierre lott?", "context": "CREATE TABLE table_name_97 (fate VARCHAR, nationality VARCHAR, ship VARCHAR)"}, {"answer": "SELECT ship FROM table_name_87 WHERE date = \"28.1.1915\"", "question": "what is the ship with the date of 28.1.1915?", "context": "CREATE TABLE table_name_87 (ship VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_64 WHERE ship = \"willerby\"", "question": "what is the nationality when the ship is willerby?", "context": "CREATE TABLE table_name_64 (nationality VARCHAR, ship VARCHAR)"}, {"answer": "SELECT MIN(tonnage_grt) FROM table_name_84 WHERE nationality = \"british\" AND ship = \"kidalton\"", "question": "what is the least tonnage grt when the nationality is british and the ship is kidalton?", "context": "CREATE TABLE table_name_84 (tonnage_grt INTEGER, nationality VARCHAR, ship VARCHAR)"}, {"answer": "SELECT season FROM table_name_99 WHERE team_2 = \"hanoi acb\"", "question": "Can you tell me the Season that has the Team 2 of hanoi acb?", "context": "CREATE TABLE table_name_99 (season VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_27 WHERE venue = \"binh duong stadium, vietnam\"", "question": "Can you tell me the Team 2 that has the Venue of binh duong stadium, vietnam?", "context": "CREATE TABLE table_name_27 (team_2 VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_27 WHERE team_2 = \"chonburi\" AND score = \"0:1\"", "question": "Can you tell me the total number of Season that has the Team 2 of chonburi, and the Score of 0:1?", "context": "CREATE TABLE table_name_27 (season VARCHAR, team_2 VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE place = \"t6\" AND player = \"raymond floyd\"", "question": "Which Score has a Place of t6, and a Player of raymond floyd?", "context": "CREATE TABLE table_name_43 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_47 WHERE place = \"t1\" AND score = 70 - 70 - 71 - 71 = 282", "question": "How much To par has a Place of t1, and a Score of 70-70-71-71=282?", "context": "CREATE TABLE table_name_47 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(to_par) FROM table_name_56 WHERE player = \"tony lema\"", "question": "What is tony lema's to par?", "context": "CREATE TABLE table_name_56 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE player = \"gary player\"", "question": "What was gary player's score?", "context": "CREATE TABLE table_name_25 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_56 WHERE class = \"piw\" AND program_title = \"the adventures of...\" AND score > 94.6", "question": "What was the total number for the PIW Class' The Adventures Of... and had a score bigger than 94.6?", "context": "CREATE TABLE table_name_56 (year VARCHAR, score VARCHAR, class VARCHAR, program_title VARCHAR)"}, {"answer": "SELECT class FROM table_name_33 WHERE score = 95.1", "question": "What class had a score of 95.1?", "context": "CREATE TABLE table_name_33 (class VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_89 WHERE year < 2008 AND placement = \"3rd\"", "question": "What is the lowest score for a year before 2008 and had 3rd place?", "context": "CREATE TABLE table_name_89 (score INTEGER, year VARCHAR, placement VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_50 WHERE program_title = \"taboo\" AND score < 96.125", "question": "What was the latest year placement for Taboo with a score smaller than 96.125?", "context": "CREATE TABLE table_name_50 (year INTEGER, program_title VARCHAR, score VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_87 WHERE year < 1959 AND runner_s__up = \"jackie pung\"", "question": "What is the winning score before 1959, with runner-up Jackie Pung?", "context": "CREATE TABLE table_name_87 (winning_score VARCHAR, year VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT directed_by FROM table_name_27 WHERE original_air_date = \"april 29, 2000\"", "question": "Which Directed by has an Original air date of april 29, 2000?", "context": "CREATE TABLE table_name_27 (directed_by VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT result FROM table_name_68 WHERE date = \"september 10, 2000\"", "question": "What was the result of the game from September 10, 2000?", "context": "CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT ceremony FROM table_name_91 WHERE date = \"may 15, 1965\"", "question": "Which award ceremony took place on May 15, 1965?", "context": "CREATE TABLE table_name_91 (ceremony VARCHAR, date VARCHAR)"}, {"answer": "SELECT film_of_the_year FROM table_name_2 WHERE date = \"may 8, 1964\"", "question": "Which movie was awarded Film of the Year on May 8, 1964?", "context": "CREATE TABLE table_name_2 (film_of_the_year VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(dcsf_number) FROM table_name_52 WHERE name = \"field\" AND ofsted_number > 117160", "question": "Can you tell me the highest DCSF number that has the Name of field, and the Ofsted number larger than 117160?", "context": "CREATE TABLE table_name_52 (dcsf_number INTEGER, name VARCHAR, ofsted_number VARCHAR)"}, {"answer": "SELECT SUM(intake) FROM table_name_54 WHERE faith = \"rc\" AND dcsf_number > 2428", "question": "Can you tell me the sum of Intake that has the Faith of rc, and the DCSF number larger than 2428?", "context": "CREATE TABLE table_name_54 (intake INTEGER, faith VARCHAR, dcsf_number VARCHAR)"}, {"answer": "SELECT name FROM table_name_11 WHERE dcsf_number = 2117", "question": "Can you tell me the Name that has the DCSF number of 2117?", "context": "CREATE TABLE table_name_11 (name VARCHAR, dcsf_number VARCHAR)"}, {"answer": "SELECT MAX(ofsted_number) FROM table_name_36 WHERE type = \"infants\" AND intake > 60", "question": "Can you tell me the highest Ofsted number that has the Type of infants, and the Intake larger than 60?", "context": "CREATE TABLE table_name_36 (ofsted_number INTEGER, type VARCHAR, intake VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_81 WHERE opponent = \"at chicago bears\" AND attendance > 49 OFFSET 070", "question": "What is the total number of Week, when Opponent is At Chicago Bears, and when Attendance is greater than 49,070?", "context": "CREATE TABLE table_name_81 (week VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE week = 11", "question": "What is Date, when Week is 11?", "context": "CREATE TABLE table_name_45 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_27 WHERE attendance = 38 OFFSET 624", "question": "What is the lowest Week, when Attendance is 38,624?", "context": "CREATE TABLE table_name_27 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT SUM(international_mail) FROM table_name_35 WHERE change = \"+35,7%\" AND year > 2008", "question": "How much international mail has a change of +35,7% later than 2008?", "context": "CREATE TABLE table_name_35 (international_mail INTEGER, change VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(domestic_freight) FROM table_name_23 WHERE change = \"+9,8%\" AND total_freight_and_mail > 3 OFFSET 278", "question": "What is the most domestic freight with a change of +9,8% and a total freight and mail of more than 3,278?", "context": "CREATE TABLE table_name_23 (domestic_freight INTEGER, change VARCHAR, total_freight_and_mail VARCHAR)"}, {"answer": "SELECT COUNT(international_freight) FROM table_name_75 WHERE change = \"+0,2%\" AND international_mail > 0", "question": "How much international freight has a change of +0,2% with more than 0 international mail?", "context": "CREATE TABLE table_name_75 (international_freight VARCHAR, change VARCHAR, international_mail VARCHAR)"}, {"answer": "SELECT MAX(international_mail) FROM table_name_45 WHERE change = \"+0,2%\" AND domestic_mail < 0", "question": "What is the international mail with the highest number that has a change of +0,2% and less than 0 domestic mail?", "context": "CREATE TABLE table_name_45 (international_mail INTEGER, change VARCHAR, domestic_mail VARCHAR)"}, {"answer": "SELECT MIN(international_mail) FROM table_name_82 WHERE domestic_freight < 72 AND domestic_mail = 0 AND year < 2012 AND total_freight_and_mail > 4 OFFSET 695", "question": "What is the international mail with the lowest number to have less than 72 domestic freight, 0 domestic mail later than 2012 with total freight and mail more than 4,695?", "context": "CREATE TABLE table_name_82 (international_mail INTEGER, total_freight_and_mail VARCHAR, year VARCHAR, domestic_freight VARCHAR, domestic_mail VARCHAR)"}, {"answer": "SELECT venue FROM table_name_99 WHERE date = \"16 january 1996\"", "question": "what is the venue when the date is 16 january 1996?", "context": "CREATE TABLE table_name_99 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_14 WHERE date = \"16 january 1996\"", "question": "what is the competition when the date is 16 january 1996?", "context": "CREATE TABLE table_name_14 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_62 WHERE date = \"february 11\"", "question": "WHAT IS THE RECORD FOR FEBRUARY 11?", "context": "CREATE TABLE table_name_62 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT award FROM table_name_32 WHERE year < 2001", "question": "What was the award before 2001?", "context": "CREATE TABLE table_name_32 (award VARCHAR, year INTEGER)"}, {"answer": "SELECT MAX(week) FROM table_name_66 WHERE location = \"molson stadium\"", "question": "What is the highest week for a game that was located at the Molson Stadium?", "context": "CREATE TABLE table_name_66 (week INTEGER, location VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_19 WHERE attendance = \"28,800\"", "question": "What is the average week number for games that had 28,800 fans in attendance?", "context": "CREATE TABLE table_name_19 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE attendance = \"19,423\"", "question": "Who did the argonauts play against during the game that had 19,423 fans in attendance?", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_10 WHERE date = \"aug 24, 1986\"", "question": "What was Juli's winning margin on Aug 24, 1986?", "context": "CREATE TABLE table_name_10 (margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_65 WHERE tournament = \"lpga championship\"", "question": "What was the margin of victory at the LPGA Championship?", "context": "CREATE TABLE table_name_65 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MAX(ties) FROM table_name_72 WHERE losses < 8", "question": "What is the highest value for Ties, when Losses is less than 8?", "context": "CREATE TABLE table_name_72 (ties INTEGER, losses INTEGER)"}, {"answer": "SELECT COUNT(losses) FROM table_name_81 WHERE ties = 2 AND wins > 8", "question": "What is the total number of Losses, when Ties is 2, and when Wins is greater than 8?", "context": "CREATE TABLE table_name_81 (losses VARCHAR, ties VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(react) FROM table_name_84 WHERE mark = \"7.61\" AND heat > 1", "question": "What is the highest React that has a 7.61 Mark and a heat bigger than 1?", "context": "CREATE TABLE table_name_84 (react INTEGER, mark VARCHAR, heat VARCHAR)"}, {"answer": "SELECT cause_of_death FROM table_name_49 WHERE date_of_death = \"1956-09-07\"", "question": "What is the Cause of death of the Officer with a Date of death of 1956-09-07?", "context": "CREATE TABLE table_name_49 (cause_of_death VARCHAR, date_of_death VARCHAR)"}, {"answer": "SELECT tenure FROM table_name_95 WHERE cause_of_death = \"helicopter accident\" AND badge_serial_number = \"16805\"", "question": "What is the Tenure of the Officer who died in a helicopter accident with Badge/Serial Number 16805?", "context": "CREATE TABLE table_name_95 (tenure VARCHAR, cause_of_death VARCHAR, badge_serial_number VARCHAR)"}, {"answer": "SELECT badge_serial_number FROM table_name_58 WHERE rank = \"policeman\" AND cause_of_death = \"gunfire\" AND date_of_death = \"1919-02-18\"", "question": "What is the Badge/Serial Number of the Policeman who died in Gunfire on 1919-02-18?", "context": "CREATE TABLE table_name_58 (badge_serial_number VARCHAR, date_of_death VARCHAR, rank VARCHAR, cause_of_death VARCHAR)"}, {"answer": "SELECT rank FROM table_name_17 WHERE cause_of_death = \"gunfire\" AND badge_serial_number = \"11755\"", "question": "What is the Rank of the Officer with Badge/Serial Number 11755 who died in Gunfire?", "context": "CREATE TABLE table_name_17 (rank VARCHAR, cause_of_death VARCHAR, badge_serial_number VARCHAR)"}, {"answer": "SELECT team FROM table_name_40 WHERE tries_against = \"8\"", "question": "What is Team, when Tries Against is 8?", "context": "CREATE TABLE table_name_40 (team VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_22 WHERE tries_for = \"20\"", "question": "What is Tries Against, when Tries For is 20?", "context": "CREATE TABLE table_name_22 (tries_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_22 WHERE points_for = \"98\"", "question": "What is Tries Against, when Points For is 98?", "context": "CREATE TABLE table_name_22 (tries_against VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_88 WHERE try_diff = \"+22\"", "question": "What is Points Against, when Try Diff is +22?", "context": "CREATE TABLE table_name_88 (points_against VARCHAR, try_diff VARCHAR)"}, {"answer": "SELECT record FROM table_name_2 WHERE event = \"independent event\" AND method = \"submission (peruvian necktie)\"", "question": "What is Record, when Event is \"Independent Event\", and when Method is \"Submission (Peruvian Necktie)\"?", "context": "CREATE TABLE table_name_2 (record VARCHAR, event VARCHAR, method VARCHAR)"}, {"answer": "SELECT event FROM table_name_54 WHERE method = \"submission (armbar)\" AND opponent = \"jason st. louis\"", "question": "What is Event, when Method is \"Submission (Armbar)\", and when Opponent is \"Jason St. Louis\"?", "context": "CREATE TABLE table_name_54 (event VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT res FROM table_name_81 WHERE event = \"kotc 11 - domination\"", "question": "What is Res., when Event is \"KOTC 11 - Domination\"?", "context": "CREATE TABLE table_name_81 (res VARCHAR, event VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_76 WHERE result = \"l 17\u201310\"", "question": "How many were in attendance with a Result of l 17\u201310?", "context": "CREATE TABLE table_name_76 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_69 WHERE week < 5 AND result = \"bye\"", "question": "How many were in attendance in a week lower than 5 with a Bye result?", "context": "CREATE TABLE table_name_69 (attendance VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE result = \"w 26\u201320\"", "question": "On what date was the result w 26\u201320?", "context": "CREATE TABLE table_name_54 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_18 WHERE week < 14 AND date = \"october 10, 1993\"", "question": "Who was the opponent in a week below 14 on October 10, 1993?", "context": "CREATE TABLE table_name_18 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(top_5) FROM table_name_29 WHERE position = \"52nd\" AND year < 2000", "question": "Name the average Top 5 which has a Position of 52nd with a Year smaller than 2000?", "context": "CREATE TABLE table_name_29 (top_5 INTEGER, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_5 WHERE top_10 < 0", "question": "Name the average Wins  which has a Top 10 smaller than 0?", "context": "CREATE TABLE table_name_5 (wins INTEGER, top_10 INTEGER)"}, {"answer": "SELECT points_classification FROM table_name_9 WHERE general_classification = \"cyril dessel\"", "question": "Which Points Classification does the General Classification of Cyril Dessel have?", "context": "CREATE TABLE table_name_9 (points_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT team_classification FROM table_name_30 WHERE winner = \"cyril dessel\"", "question": "What is the Team Classification if the Winner is Cyril Dessel?", "context": "CREATE TABLE table_name_30 (team_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT team_classification FROM table_name_8 WHERE mountains_classification = \"christophe moreau\" AND stage = \"final\"", "question": "In the final Stage with a Mountains Classification of Christophe Moreau, what is the Team Classification?", "context": "CREATE TABLE table_name_8 (team_classification VARCHAR, mountains_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_94 WHERE winner = \"thor hushovd\" AND sprints_classification = \"no award\"", "question": "What is the Mountains Classification for Winner Thor hushovd with Sprints Classification of no award?", "context": "CREATE TABLE table_name_94 (mountains_classification VARCHAR, winner VARCHAR, sprints_classification VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_2 WHERE winner = \"jos\u00e9 luis carrasco\"", "question": "What is the Mountains Classification for Winner jos\u00e9 luis carrasco?", "context": "CREATE TABLE table_name_2 (mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT channel FROM table_name_71 WHERE play_by_play = \"joel meyers\"", "question": "Which channel has Joel Meyers as the Play by play commentator?", "context": "CREATE TABLE table_name_71 (channel VARCHAR, play_by_play VARCHAR)"}, {"answer": "SELECT studio_host FROM table_name_19 WHERE play_by_play = \"paul sunderland\" AND studio_analysts = \"jack haley\"", "question": "Who is the studio host for the game that has Paul Sunderland as play by play commentator and Jack Haley as the Studio Analyst?", "context": "CREATE TABLE table_name_19 (studio_host VARCHAR, play_by_play VARCHAR, studio_analysts VARCHAR)"}, {"answer": "SELECT studio_host FROM table_name_57 WHERE channel = \"fox sports net west\" AND play_by_play = \"chick hearn\"", "question": "Who is the studio host for the game broadcasted by Fox Sports Net west and has Chick Hearn as the play by play commentator ?", "context": "CREATE TABLE table_name_57 (studio_host VARCHAR, channel VARCHAR, play_by_play VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_name_17 WHERE studio_host = \"alan massengale\"", "question": "Who is the play by play commentator for the game that has Alan Massengale as Studio Host?", "context": "CREATE TABLE table_name_17 (play_by_play VARCHAR, studio_host VARCHAR)"}, {"answer": "SELECT channel FROM table_name_82 WHERE play_by_play = \"paul sunderland\" AND studio_host = \"bill macdonald\" AND studio_analysts = \"jack haley\"", "question": "which channel will have play by play commentator Paul Sunderland, Studio Host Bill Macdonald and Studi Analysty Jack Haley?", "context": "CREATE TABLE table_name_82 (channel VARCHAR, studio_analysts VARCHAR, play_by_play VARCHAR, studio_host VARCHAR)"}, {"answer": "SELECT SUM(assists) FROM table_name_60 WHERE club = \"adler mannheim\" AND points > 57", "question": "How many Assists have a Club of adler mannheim, and Points larger than 57?", "context": "CREATE TABLE table_name_60 (assists INTEGER, club VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_28 WHERE assists = 41", "question": "How many points have 41 assists?", "context": "CREATE TABLE table_name_28 (points INTEGER, assists VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_7 WHERE player = \"david mcllwain\" AND games > 52", "question": "Which Goals have a Player of david mcllwain, and Games larger than 52?", "context": "CREATE TABLE table_name_7 (goals INTEGER, player VARCHAR, games VARCHAR)"}, {"answer": "SELECT platform FROM table_name_28 WHERE stop_no = \"99014\"", "question": "Which Platform is the one that has a Stop number of 99014?", "context": "CREATE TABLE table_name_28 (platform VARCHAR, stop_no VARCHAR)"}, {"answer": "SELECT line FROM table_name_62 WHERE platform = \"3\"", "question": "Which Line has a Platform of 3?", "context": "CREATE TABLE table_name_62 (line VARCHAR, platform VARCHAR)"}, {"answer": "SELECT destination FROM table_name_47 WHERE stopping_pattern = \"[2777] mciver station platforms\"", "question": "Which Destination has a Stopping pattern of [2777] mciver station platforms?", "context": "CREATE TABLE table_name_47 (destination VARCHAR, stopping_pattern VARCHAR)"}, {"answer": "SELECT stop_no FROM table_name_50 WHERE platform = \"[2777] mciver station platforms\"", "question": "Which Stop # has a Platform of [2777] mciver station platforms?", "context": "CREATE TABLE table_name_50 (stop_no VARCHAR, platform VARCHAR)"}, {"answer": "SELECT line FROM table_name_59 WHERE stopping_pattern = \"all stations, a, b, p\"", "question": "Which Line has a Stopping pattern of all stations, A, b, p?", "context": "CREATE TABLE table_name_59 (line VARCHAR, stopping_pattern VARCHAR)"}, {"answer": "SELECT stopping_pattern FROM table_name_50 WHERE platform = \"[2777] mciver station platforms\"", "question": "Which Stopping pattern has a Platform of [2777] mciver station platforms?", "context": "CREATE TABLE table_name_50 (stopping_pattern VARCHAR, platform VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_20 WHERE venue = \"berlin\" AND result = \"2-0\" AND attendance = \"100,000\"", "question": "Who was runner-up at Berlin when the result was 2-0 with 100,000 fans in attendance?", "context": "CREATE TABLE table_name_20 (runner_up VARCHAR, attendance VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT champion FROM table_name_65 WHERE venue = \"berlin\" AND attendance = \"100,000\" AND result = \"2-0\"", "question": "Who was the champion at berlin when the result was 2-0 with 100,000 fans in attendance?", "context": "CREATE TABLE table_name_65 (champion VARCHAR, result VARCHAR, venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT year FROM table_name_38 WHERE attendance = \"90,000\"", "question": "What year had an attendance of 90,000?", "context": "CREATE TABLE table_name_38 (year VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_39 WHERE attendance = \"95,000\" AND runner_up = \"dresdner sc\"", "question": "What is the sum of the years where the attendance was 95,000 and the runner-up was dresdner sc?", "context": "CREATE TABLE table_name_39 (year INTEGER, attendance VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT champion FROM table_name_43 WHERE attendance = \"70,000\"", "question": "Who was the champion when the attendance was 70,000?", "context": "CREATE TABLE table_name_43 (champion VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(height__ft_) FROM table_name_12 WHERE name = \"churchill house\" AND height__m_ < 59", "question": "What is the Height (ft) of the Churchill House with a Height (m) less than 59?", "context": "CREATE TABLE table_name_12 (height__ft_ VARCHAR, name VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_33 WHERE year_s__won = \"1994, 1997\"", "question": "Total for 1994, 1997 years won?", "context": "CREATE TABLE table_name_33 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT player FROM table_name_94 WHERE year_s__won = \"2003\"", "question": "Player than won in 2003?", "context": "CREATE TABLE table_name_94 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_33 WHERE player = \"jim furyk\"", "question": "Average total for jim furyk?", "context": "CREATE TABLE table_name_33 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT record FROM table_name_78 WHERE visitor = \"new jersey devils\" AND date = \"may 7\"", "question": "Which record had a visitor of New Jersey Devils on May 7?", "context": "CREATE TABLE table_name_78 (record VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_44 WHERE date = \"may 8\"", "question": "What was the record on May 8?", "context": "CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(population__2013_) FROM table_name_74 WHERE largest_city = \"nelspruit\"", "question": "What is Nelspruit's population?", "context": "CREATE TABLE table_name_74 (population__2013_ VARCHAR, largest_city VARCHAR)"}, {"answer": "SELECT time FROM table_name_12 WHERE round = 3 AND record = \"2\u20130\"", "question": "Which Time has a Round of 3, and a Record of 2\u20130?", "context": "CREATE TABLE table_name_12 (time VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_37 WHERE grid = 11", "question": "What were the average laps on a grid of 11?", "context": "CREATE TABLE table_name_37 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT location FROM table_name_34 WHERE record = \"50-19\"", "question": "Where is the location with a record of 50-19?", "context": "CREATE TABLE table_name_34 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_12 WHERE record = \"45-16\"", "question": "Which game had a record of 45-16?", "context": "CREATE TABLE table_name_12 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT game FROM table_name_81 WHERE location = \"boston garden\" AND record = \"49-17\"", "question": "Which game is located in Boston Garden and has a record of 49-17?", "context": "CREATE TABLE table_name_81 (game VARCHAR, location VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(1 AS st_lbsc_no) FROM table_name_23 WHERE lbsc_name = \"northcote\"", "question": "What is the largest 1st LBSC number with a LBSC Name of northcote?", "context": "CREATE TABLE table_name_23 (lbsc_name VARCHAR)"}, {"answer": "SELECT result FROM table_name_17 WHERE round = 34", "question": "What is the result when the round shows 34?", "context": "CREATE TABLE table_name_17 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT venue FROM table_name_28 WHERE opponent = \"woking\" AND round < 29", "question": "What is the venue when Woking was the opponent, and the round was less than 29?", "context": "CREATE TABLE table_name_28 (venue VARCHAR, opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_19 WHERE opponent = \"wrexham\" AND venue = \"away\"", "question": "What is the round number when the opponent was Wrexham, and the venue shows as Away?", "context": "CREATE TABLE table_name_19 (round VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_12 WHERE name = \"esv t\u00fcrkheim\" AND drawn > 0", "question": "what is the lowest position when the name is esv t\u00fcrkheim, and Drawn more than 0?", "context": "CREATE TABLE table_name_12 (position INTEGER, name VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_79 WHERE played > 14", "question": "what is the highest drawn when played is more than 14?", "context": "CREATE TABLE table_name_79 (drawn INTEGER, played INTEGER)"}, {"answer": "SELECT MIN(drawn) FROM table_name_94 WHERE name = \"sv apfeldorf\" AND position > 8", "question": "what is the least drawn when the name is sv apfeldorf and the position is more than 8?", "context": "CREATE TABLE table_name_94 (drawn INTEGER, name VARCHAR, position VARCHAR)"}, {"answer": "SELECT winner FROM table_name_31 WHERE team = \"mobil 1 racing\"", "question": "who is the winner when the team is mobil 1 racing?", "context": "CREATE TABLE table_name_31 (winner VARCHAR, team VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_60 WHERE date = \"16 april\"", "question": "what is the circuit when the date is 16 april?", "context": "CREATE TABLE table_name_60 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_94 WHERE date = \"4 june\"", "question": "what is the circuit when the date is 4 june?", "context": "CREATE TABLE table_name_94 (circuit VARCHAR, date VARCHAR)"}, {"answer": "SELECT race_title FROM table_name_53 WHERE winner = \"dick johnson\" AND circuit = \"sandown raceway\"", "question": "what is the race title when the winner is dick johnson and the circuit is sandown raceway?", "context": "CREATE TABLE table_name_53 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE home_team = \"portland\" AND game = \"game 1\"", "question": "On what date was the game 1 played at Portland?", "context": "CREATE TABLE table_name_73 (date VARCHAR, home_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_3 WHERE date = \"may 2\"", "question": "Who was the road team on May 2?", "context": "CREATE TABLE table_name_3 (road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_24 WHERE date = \"may 2\"", "question": "Who was the road team on May 2?", "context": "CREATE TABLE table_name_24 (road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE home_team = \"portland\" AND game = \"game 5\"", "question": "On what date did Portland play game 5 at home?", "context": "CREATE TABLE table_name_98 (date VARCHAR, home_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_5 WHERE date = \"april 22\"", "question": "Which game of the season was played on April 22?", "context": "CREATE TABLE table_name_5 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_26 WHERE opponent = \"masutatsu yano\"", "question": "What is the highest round a fight lasted against masutatsu yano?", "context": "CREATE TABLE table_name_26 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_31 WHERE record = \"0-1\"", "question": "What was the method of resolution when Katsuhisa Fujii's record was 0-1?", "context": "CREATE TABLE table_name_31 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT jersey_number_s_ FROM table_name_54 WHERE years = \"1986 \u2013 1991 1997 \u2013 1999\"", "question": "What is the jersey number of the player from years 1986 \u2013 1991 1997 \u2013 1999?", "context": "CREATE TABLE table_name_54 (jersey_number_s_ VARCHAR, years VARCHAR)"}, {"answer": "SELECT position FROM table_name_57 WHERE years = \"1986 \u2013 1991 1997 \u2013 1999\"", "question": "What position was played by the player during 1986 \u2013 1991 1997 \u2013 1999?", "context": "CREATE TABLE table_name_57 (position VARCHAR, years VARCHAR)"}, {"answer": "SELECT years FROM table_name_13 WHERE jersey_number_s_ = \"34, 30\"", "question": "During what years was the Jersey Numbers 34, 30 played?", "context": "CREATE TABLE table_name_13 (years VARCHAR, jersey_number_s_ VARCHAR)"}, {"answer": "SELECT record FROM table_name_78 WHERE opponent = \"san francisco warriors\"", "question": "What is Record, when Opponent is San Francisco Warriors?", "context": "CREATE TABLE table_name_78 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT h_a_n FROM table_name_50 WHERE date = \"october 31\"", "question": "What is H/A/N, when Date is October 31?", "context": "CREATE TABLE table_name_50 (h_a_n VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE opponent = \"atlanta hawks\"", "question": "What is Score, when Opponent is Atlanta Hawks?", "context": "CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT h_a_n FROM table_name_74 WHERE record = \"2-5\"", "question": "What is H/A/N, when Record is 2-5?", "context": "CREATE TABLE table_name_74 (h_a_n VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_37 WHERE date = \"october 31\"", "question": "What is Record, when Date is October 31?", "context": "CREATE TABLE table_name_37 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_42 WHERE h_a_n = \"n\"", "question": "What is Record, when H/A/N is n?", "context": "CREATE TABLE table_name_42 (record VARCHAR, h_a_n VARCHAR)"}, {"answer": "SELECT gauge FROM table_name_8 WHERE concessionaire = \"ferrosur roca\"", "question": "What was the guage of the concessionaire ferrosur roca?", "context": "CREATE TABLE table_name_8 (gauge VARCHAR, concessionaire VARCHAR)"}, {"answer": "SELECT takeover_date FROM table_name_19 WHERE fa_division_s_ = \"mitre\"", "question": "What is the takeover date of the FA division mitre?", "context": "CREATE TABLE table_name_19 (takeover_date VARCHAR, fa_division_s_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE tournament = \"indian wells\"", "question": "What date was the tournament in Indian Wells?", "context": "CREATE TABLE table_name_39 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_23 WHERE surface = \"clay\" AND tournament = \"nice\"", "question": "Who was the opponent in the math that was played in Nice on a clay court?", "context": "CREATE TABLE table_name_23 (opponent VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE opponent = \"sergi bruguera\"", "question": "What was the score in the match against Sergi Bruguera?", "context": "CREATE TABLE table_name_70 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE tournament = \"wellington\"", "question": "What was the score of the tournament in Wellington?", "context": "CREATE TABLE table_name_5 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_10 WHERE round = 6", "question": "Which race was in round 6?", "context": "CREATE TABLE table_name_10 (race_name VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_23 WHERE winning_driver = \"jonathan bomarito\"", "question": "Which round did jonathan bomarito win?", "context": "CREATE TABLE table_name_23 (round VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_16 WHERE winning_team = \"mi-jack conquest racing\" AND pole_position = \"andreas wirth\"", "question": "What race did the team Mi-Jack Conquest racing win with a pole position of andreas wirth?", "context": "CREATE TABLE table_name_16 (race_name VARCHAR, winning_team VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_59 WHERE winning_driver = \"graham rahal\" AND round > 6 AND pole_position = \"graham rahal\"", "question": "What race after round 6 did Graham Rahal win with a pole position of graham rahal?", "context": "CREATE TABLE table_name_59 (race_name VARCHAR, pole_position VARCHAR, winning_driver VARCHAR, round VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_82 WHERE race_name = \"2006 gehl championship finale\"", "question": "What pole position did 2006 gehl championship finale have?", "context": "CREATE TABLE table_name_82 (pole_position VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT player FROM table_name_26 WHERE place = \"t5\" AND score = 69 - 74 = 143", "question": "who is the player when the place is t5 and the score is 69-74=143?", "context": "CREATE TABLE table_name_26 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE country = \"united states\" AND to_par = \"+2\" AND player = \"phil hancock\"", "question": "what is the score when the country is united states, the to par is +2 and the player is phil hancock?", "context": "CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT place FROM table_name_98 WHERE player = \"gary player\"", "question": "what is the place for gary player?", "context": "CREATE TABLE table_name_98 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_48 WHERE score = 70 - 72 = 142", "question": "what is the place when the score is 70-72=142?", "context": "CREATE TABLE table_name_48 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_53 WHERE score = 70 - 70 = 140", "question": "what is the place when the score is 70-70=140?", "context": "CREATE TABLE table_name_53 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_93 WHERE country = \"united states\" AND score = 71 - 73 = 144", "question": "who is the player when the country is united states and the score is 71-73=144?", "context": "CREATE TABLE table_name_93 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_57 WHERE round < 5 AND pick = 2", "question": "What school or team is in a round below 5 with a pick of 2?", "context": "CREATE TABLE table_name_57 (school_club_team VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_55 WHERE pick < 234 AND position = \"quarterback\"", "question": "Who is the player with a pick less than 234 and a quarterback position?", "context": "CREATE TABLE table_name_55 (player VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_81 WHERE pick > 17 AND round < 12 AND position = \"tight end\"", "question": "Who is the player in tight end position in a round below 12 that has a pick greater than 17?", "context": "CREATE TABLE table_name_81 (player VARCHAR, position VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_47 WHERE school_club_team = \"auburn\"", "question": "How many picks does Auburn have?", "context": "CREATE TABLE table_name_47 (pick VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT career FROM table_name_80 WHERE 2007 = \"3r\" AND 1999 = \"1r\"", "question": "What is the career for 2007 3r, and 1999 1r?", "context": "CREATE TABLE table_name_80 (career VARCHAR)"}, {"answer": "SELECT career FROM table_name_70 WHERE 2006 = \"3r\" AND 1999 = \"2r\"", "question": "What is the career for the 2006 3r, and the 1999 2r?", "context": "CREATE TABLE table_name_70 (career VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_64 WHERE 2003 = \"2r\" AND 2000 = \"2r\"", "question": "Who in 2009, has a 2003 2r and a 2000 2r?", "context": "CREATE TABLE table_name_64 (Id VARCHAR)"}, {"answer": "SELECT result_score FROM table_name_92 WHERE year > 2005 AND opponent = \"#8 arkansas #1 memphis\"", "question": "What is Result/Score, when Year is greater than 2005, and when Opponent is #8 Arkansas #1 Memphis?", "context": "CREATE TABLE table_name_92 (result_score VARCHAR, year VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_52 WHERE opponent = \"#2 syracuse\"", "question": "What is the highest Year, when Opponent is #2 Syracuse?", "context": "CREATE TABLE table_name_52 (year INTEGER, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_92 WHERE year = 1987", "question": "What is Round when Year is 1987?", "context": "CREATE TABLE table_name_92 (round VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_40 WHERE opponent = \"#3 uconn\"", "question": "What is the sum of Year, when Opponent is #3 UCONN?", "context": "CREATE TABLE table_name_40 (year INTEGER, opponent VARCHAR)"}, {"answer": "SELECT longitude FROM table_name_41 WHERE year_named = 1997 AND diameter__km_ < 490 AND name = \"zipaltonal fluctus\"", "question": "What's the longitude named zipaltonal fluctus in 1997 with a diameter smaller than 490?", "context": "CREATE TABLE table_name_41 (longitude VARCHAR, name VARCHAR, year_named VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT diameter__km_ FROM table_name_30 WHERE name = \"kaiwan fluctus\"", "question": "What's the diameter of kaiwan fluctus?", "context": "CREATE TABLE table_name_30 (diameter__km_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT game FROM table_name_5 WHERE opponent = \"chicago black hawks\"", "question": "In what game did the New York Rangers play against the Chicago Black Hawks?", "context": "CREATE TABLE table_name_5 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE player = \"greg norman\"", "question": "WHAT IS THE SCORE FOR GREG NORMAN?", "context": "CREATE TABLE table_name_29 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_2 WHERE to_par = \"e\" AND score = 68 - 72 = 140", "question": "WHAT IS THE PLAYER WITH A TO PAR OF E, AND SCORE OF 68-72=140?", "context": "CREATE TABLE table_name_2 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_68 WHERE place = \"t5\" AND player = \"mark mccumber\"", "question": "WHAT IS THE TO PAR WITH T5 PLACE, AND PLAYER MARK MCCUMBER?", "context": "CREATE TABLE table_name_68 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_43 WHERE voltage = \"1.65\u20131.7 v\" AND mult = \"4.5\u00d7\" AND socket = \"slot 1\"", "question": "When was the microprocessor with 1.65\u20131.7 v, a mult of 4.5\u00d7, and a slot 1 socket released?", "context": "CREATE TABLE table_name_43 (release_date VARCHAR, socket VARCHAR, voltage VARCHAR, mult VARCHAR)"}, {"answer": "SELECT voltage FROM table_name_8 WHERE socket = \"socket 370\" AND model_number = \"pentiumiii866\"", "question": "What is the voltage of the Pentiumiii866 microprocessor with a socket 370?", "context": "CREATE TABLE table_name_8 (voltage VARCHAR, socket VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT socket FROM table_name_28 WHERE part_number_s_ = \"80526pz533256\"", "question": "What kind of socket is on the microprocessor with a part number of 80526pz533256?", "context": "CREATE TABLE table_name_28 (socket VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE opponent_in_the_final = \"kenneth carlsen\"", "question": "What is the Date of the match with Opponent in the final Kenneth Carlsen?", "context": "CREATE TABLE table_name_41 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE score_in_the_final = \"6\u20133, 6\u20133, 2\u20136, 6\u20134\"", "question": "What is the Date of the match with a Score in the final of 6\u20133, 6\u20133, 2\u20136, 6\u20134?", "context": "CREATE TABLE table_name_9 (date VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT lost FROM table_name_39 WHERE draw < 2", "question": "How many games did they lose when they tied less than 2 games?", "context": "CREATE TABLE table_name_39 (lost VARCHAR, draw INTEGER)"}, {"answer": "SELECT MIN(draw) FROM table_name_7 WHERE played < 14 AND lost < 8", "question": "What is the least ties when they played less than 14 games, and a lost less than 8 of them?", "context": "CREATE TABLE table_name_7 (draw INTEGER, played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_92 WHERE draw > 7", "question": "What is the lowest number of games played where they tied more than 7 of them?", "context": "CREATE TABLE table_name_92 (played INTEGER, draw INTEGER)"}, {"answer": "SELECT MAX(against) FROM table_name_85 WHERE lost < 20 AND draw > 2 AND favour < 11", "question": "What is the highest Against where they lost less than 20 games, tied more than 2 of them, and they had Favour less than 11?", "context": "CREATE TABLE table_name_85 (against INTEGER, favour VARCHAR, lost VARCHAR, draw VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE competition = \"2010 fifa world cup qualification\"", "question": "WHAT IS THE SCORE FOR 2010 fifa world cup qualification?", "context": "CREATE TABLE table_name_28 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_71 WHERE french_open = \"rafael nadal\" AND wimbledon = \"roger federer\" AND australian_open = \"roger federer\"", "question": "What is the latest year rafael nadal was in the French Open, Roger Federer was in Wimbledon, and Roger Federer was in the Australian Open?", "context": "CREATE TABLE table_name_71 (year INTEGER, australian_open VARCHAR, french_open VARCHAR, wimbledon VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_27 WHERE wimbledon = \"andy murray\"", "question": "What is the total number of years Andy Murray was at Wimbledon?", "context": "CREATE TABLE table_name_27 (year VARCHAR, wimbledon VARCHAR)"}, {"answer": "SELECT australian_open FROM table_name_71 WHERE year = 2010", "question": "What is the Australian open in 2010?", "context": "CREATE TABLE table_name_71 (australian_open VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(loss) FROM table_name_1 WHERE long > 61", "question": "What is the highest loss with a long more than 61?", "context": "CREATE TABLE table_name_1 (loss INTEGER, long INTEGER)"}, {"answer": "SELECT AVG(long) FROM table_name_10 WHERE loss < 133 AND gain > 0 AND avg_g = 29.8", "question": "What is the long with a loss lower than 133 and more than 0 gain with an avg/G of 29.8?", "context": "CREATE TABLE table_name_10 (long INTEGER, avg_g VARCHAR, loss VARCHAR, gain VARCHAR)"}, {"answer": "SELECT MIN(long) FROM table_name_60 WHERE avg_g > -2.2 AND name = \"total\" AND gain > 2 OFFSET 488", "question": "What is the lowest long with an avg/G more than -2.2 and a total name and a gain of more than 2,488?", "context": "CREATE TABLE table_name_60 (long INTEGER, gain VARCHAR, avg_g VARCHAR, name VARCHAR)"}, {"answer": "SELECT network_brand_name FROM table_name_45 WHERE company_name = \"vodafone group\" AND country = \"germany\"", "question": "What is the network brand name of the company vodafone group in Germany?", "context": "CREATE TABLE table_name_45 (network_brand_name VARCHAR, company_name VARCHAR, country VARCHAR)"}, {"answer": "SELECT accreditation_level FROM table_name_76 WHERE network_brand_name = \"movistar\"", "question": "What is the accreditation level of the network brand Movistar?", "context": "CREATE TABLE table_name_76 (accreditation_level VARCHAR, network_brand_name VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE network_brand_name = \"movistar\"", "question": "What date was Movistar accredited?", "context": "CREATE TABLE table_name_6 (date VARCHAR, network_brand_name VARCHAR)"}, {"answer": "SELECT accreditation_type FROM table_name_22 WHERE company_name = \"vodacom group pty ltd (vodafone group)\"", "question": "What is the accreditation type of Vodacom Group PTY LTD (Vodafone group)?", "context": "CREATE TABLE table_name_22 (accreditation_type VARCHAR, company_name VARCHAR)"}, {"answer": "SELECT accreditation_type FROM table_name_88 WHERE network_brand_name = \"deutsche telekom\"", "question": "What is Deutsche Telekom's accreditation type?", "context": "CREATE TABLE table_name_88 (accreditation_type VARCHAR, network_brand_name VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_51 WHERE game = 6", "question": "What was the Location and Attendance of Game 6?", "context": "CREATE TABLE table_name_51 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT inclination FROM table_name_16 WHERE semimajor_axis___au__ = \"20 au\"", "question": "What inclination has a semimajor axis of 20 au?", "context": "CREATE TABLE table_name_16 (inclination VARCHAR, semimajor_axis___au__ VARCHAR)"}, {"answer": "SELECT eccentricity FROM table_name_75 WHERE semimajor_axis___au__ = \"20 au\"", "question": "What is the eccentricity when the semimajor axis is 20 au?", "context": "CREATE TABLE table_name_75 (eccentricity VARCHAR, semimajor_axis___au__ VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE team = \"indiana\"", "question": "What is Score, when Team is \"Indiana\"?", "context": "CREATE TABLE table_name_7 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE game = 8", "question": "What is Date, when Game is \"8\"?", "context": "CREATE TABLE table_name_48 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_18 WHERE date = \"november 1\"", "question": "What is High Assists, when Date is \"November 1\"?", "context": "CREATE TABLE table_name_18 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_30 WHERE surface = \"hard\" AND week = \"november 13\"", "question": "Who was the winner on a hard surface on the week of November 13?", "context": "CREATE TABLE table_name_30 (winner VARCHAR, surface VARCHAR, week VARCHAR)"}, {"answer": "SELECT player FROM table_name_56 WHERE conf = \"pac-10\" AND pos = \"g\"", "question": "Which player had a conference of PAC-10 and position of G?", "context": "CREATE TABLE table_name_56 (player VARCHAR, conf VARCHAR, pos VARCHAR)"}, {"answer": "SELECT player FROM table_name_65 WHERE pos = \"ol\" AND college = \"ohio state\"", "question": "Which player had a position of OL from Ohio State?", "context": "CREATE TABLE table_name_65 (player VARCHAR, pos VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_84 WHERE pos = \"qb\" AND college = \"texas tech\"", "question": "Which player had a position of QB for Texas Tech?", "context": "CREATE TABLE table_name_84 (player VARCHAR, pos VARCHAR, college VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_30 WHERE round = 3", "question": "Can you tell me the Opponent that has the Round of 3?", "context": "CREATE TABLE table_name_30 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT main_use FROM table_name_25 WHERE town = \"walker city, iowa\"", "question": "What is the main use for the structure listed in walker city, iowa?", "context": "CREATE TABLE table_name_25 (main_use VARCHAR, town VARCHAR)"}, {"answer": "SELECT year FROM table_name_16 WHERE town = \"greensboro, north carolina\"", "question": "What year was the structure in greensboro, north carolina considered tallest?", "context": "CREATE TABLE table_name_16 (year VARCHAR, town VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_63 WHERE town = \"gray court, south carolina\"", "question": "What was the earliest year that a structure was located in gray court, south carolina?", "context": "CREATE TABLE table_name_63 (year INTEGER, town VARCHAR)"}, {"answer": "SELECT main_use FROM table_name_77 WHERE year < 2004 AND town = \"redfield, arkansas\"", "question": "What is the main use of the structure that was in redfield, arkansas before 2004?", "context": "CREATE TABLE table_name_77 (main_use VARCHAR, year VARCHAR, town VARCHAR)"}, {"answer": "SELECT distance FROM table_name_44 WHERE speed = \"124.1km/h\"", "question": "How far did the pilot go when averaging 124.1km/h?", "context": "CREATE TABLE table_name_44 (distance VARCHAR, speed VARCHAR)"}, {"answer": "SELECT speed FROM table_name_36 WHERE glider = \"diana 2\" AND pilot = \"sebastian kawa\"", "question": "What was sebastian kawa's average speed with Diana 2?", "context": "CREATE TABLE table_name_36 (speed VARCHAR, glider VARCHAR, pilot VARCHAR)"}, {"answer": "SELECT glider FROM table_name_84 WHERE pilot = \"thomas gostner\"", "question": "What glider did thomas gostner pilot?", "context": "CREATE TABLE table_name_84 (glider VARCHAR, pilot VARCHAR)"}, {"answer": "SELECT run_4 FROM table_name_22 WHERE final = \"8:16.28\"", "question": "Which Run 4 has a Final of 8:16.28?", "context": "CREATE TABLE table_name_22 (run_4 VARCHAR, final VARCHAR)"}, {"answer": "SELECT run_4 FROM table_name_46 WHERE athletes = \"hubert stevens & curtis stevens\"", "question": "Which Run 4 has Athletes of hubert stevens & curtis stevens?", "context": "CREATE TABLE table_name_46 (run_4 VARCHAR, athletes VARCHAR)"}, {"answer": "SELECT run_2 FROM table_name_9 WHERE rank = \"4\"", "question": "Which Run 2 has a Rank of 4?", "context": "CREATE TABLE table_name_9 (run_2 VARCHAR, rank VARCHAR)"}, {"answer": "SELECT athletes FROM table_name_44 WHERE rank = \"bronze\"", "question": "Which Athletes have a Rank of bronze?", "context": "CREATE TABLE table_name_44 (athletes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT athletes FROM table_name_39 WHERE run_2 = \"2:21.82\"", "question": "Which Athletes have a Run 2 of 2:21.82?", "context": "CREATE TABLE table_name_39 (athletes VARCHAR, run_2 VARCHAR)"}, {"answer": "SELECT run_3 FROM table_name_13 WHERE run_1 = \"2:20.10\"", "question": "Which Run 3 has a Run 1 of 2:20.10?", "context": "CREATE TABLE table_name_13 (run_3 VARCHAR, run_1 VARCHAR)"}, {"answer": "SELECT republican AS :_christopher_reed FROM table_name_25 WHERE lead_margin < 16", "question": "What percentage did Republish Christopher Reed receive when the lead margin was smaller than 16?", "context": "CREATE TABLE table_name_25 (republican VARCHAR, lead_margin INTEGER)"}, {"answer": "SELECT democrat AS :_tom_harkin FROM table_name_77 WHERE poll_source = \"rasmussen reports\" AND lead_margin = 14", "question": "What was Democrat: Tom Harkin's percentage when the poll source was Rasmussen Reports and the lead margin was 14?", "context": "CREATE TABLE table_name_77 (democrat VARCHAR, poll_source VARCHAR, lead_margin VARCHAR)"}, {"answer": "SELECT dates_administered FROM table_name_72 WHERE lead_margin > 14 AND poll_source = \"research 2000\"", "question": "What were the dates administered when the lead margin was larger than 14 and the poll source was Research 2000?", "context": "CREATE TABLE table_name_72 (dates_administered VARCHAR, lead_margin VARCHAR, poll_source VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_43 WHERE rider = \"olivier jacque\"", "question": "What is Olivier Jacque's Time/Retired?", "context": "CREATE TABLE table_name_43 (time_retired VARCHAR, rider VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_93 WHERE grid = \"11\"", "question": "Which manufacturer is grid 11?", "context": "CREATE TABLE table_name_93 (manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_13 WHERE rider = \"loris capirossi\"", "question": "Which manufacturer does Loris Capirossi ride for?", "context": "CREATE TABLE table_name_13 (manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_18 WHERE laps = \"8\"", "question": "Which manufacturer has 8 laps?", "context": "CREATE TABLE table_name_18 (manufacturer VARCHAR, laps VARCHAR)"}, {"answer": "SELECT laps FROM table_name_74 WHERE grid = \"4\"", "question": "How many laps does grid 4 have?", "context": "CREATE TABLE table_name_74 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_35 WHERE laps = \"28\" AND manufacturer = \"honda\" AND grid = \"1\"", "question": "Which rider's manufacturer is Honda and has 28 laps and a grid of 1?", "context": "CREATE TABLE table_name_35 (rider VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT SUM(2006) FROM table_name_38 WHERE rank = 1 AND 1996 > 6758845", "question": "What is the 2006 sum with a rank 1 and more than 6758845 in 1996?", "context": "CREATE TABLE table_name_38 (rank VARCHAR)"}, {"answer": "SELECT COUNT(2006) FROM table_name_95 WHERE date_of_official_foundation_of_municipality = 1918", "question": "What is the total number in 2006, which has an official foundation of municipality of 1918?", "context": "CREATE TABLE table_name_95 (date_of_official_foundation_of_municipality VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_97 WHERE city = \"mashhad\" AND 1976 < 667770", "question": "What is teh average rank of the city of mashhad, which had less than 667770 in 1976?", "context": "CREATE TABLE table_name_97 (rank INTEGER, city VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_95 WHERE province = \"alborz\" AND 1956 > 14526", "question": "What is the average rank of the province alborz, which had more than 14526 in 1956?", "context": "CREATE TABLE table_name_95 (rank INTEGER, province VARCHAR)"}, {"answer": "SELECT world_rank FROM table_name_81 WHERE year = 1977", "question": "Which World Rank happened in 1977?", "context": "CREATE TABLE table_name_81 (world_rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT rank FROM table_name_41 WHERE premiere = \"september 12, 1979\"", "question": "What is the rank for the episode that premiered on September 12, 1979?", "context": "CREATE TABLE table_name_41 (rank VARCHAR, premiere VARCHAR)"}, {"answer": "SELECT finale FROM table_name_72 WHERE premiere = \"september 22, 1976\"", "question": "What was the date of the finale for the season that premiered on September 22, 1976?", "context": "CREATE TABLE table_name_72 (finale VARCHAR, premiere VARCHAR)"}, {"answer": "SELECT rank FROM table_name_21 WHERE premiere = \"september 13, 1978\"", "question": "What is the rank for the episode that premiered on September 13, 1978?", "context": "CREATE TABLE table_name_21 (rank VARCHAR, premiere VARCHAR)"}, {"answer": "SELECT finale FROM table_name_61 WHERE season = 3", "question": "What was the date of the finale for Season 3?", "context": "CREATE TABLE table_name_61 (finale VARCHAR, season VARCHAR)"}, {"answer": "SELECT premiere FROM table_name_38 WHERE rating = \"20.9\"", "question": "What was the date of the premiere that had a 20.9 rating?", "context": "CREATE TABLE table_name_38 (premiere VARCHAR, rating VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_39 WHERE team = \"herdez competition\" AND grid > 1", "question": "What was Herdez Competition's total points with a grid larger than 1?", "context": "CREATE TABLE table_name_39 (points VARCHAR, team VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_34 WHERE team = \"walker racing\" AND grid > 15", "question": "What was the highest lap count for Walker Racing with a grid larger than 15?", "context": "CREATE TABLE table_name_34 (laps INTEGER, team VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_9 WHERE laps = 248", "question": "Which driver had 248 laps?", "context": "CREATE TABLE table_name_9 (driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_80 WHERE time_retired = \"+ 10 laps\" AND points > 6", "question": "What driver had a time/retired of + 10 laps and more than 6 points?", "context": "CREATE TABLE table_name_80 (driver VARCHAR, time_retired VARCHAR, points VARCHAR)"}, {"answer": "SELECT record FROM table_name_56 WHERE game = 61", "question": "Which Record has a Game of 61?", "context": "CREATE TABLE table_name_56 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_67 WHERE record = \"27\u201329\"", "question": "Which High points have a Record of 27\u201329?", "context": "CREATE TABLE table_name_67 (high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_92 WHERE game > 58 AND high_rebounds = \"francisco elson (7)\"", "question": "Which High points has a Game larger than 58, and a High rebounds of francisco elson (7)?", "context": "CREATE TABLE table_name_92 (high_points VARCHAR, game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_46 WHERE date = \"february 27\"", "question": "Which Location Attendance has a Date of february 27?", "context": "CREATE TABLE table_name_46 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_42 WHERE high_rebounds = \"luc mbah a moute (11)\"", "question": "Which Record has a High rebounds of luc mbah a moute (11)?", "context": "CREATE TABLE table_name_42 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_99 WHERE record = \"27\u201330\"", "question": "Which Game has a Record of 27\u201330?", "context": "CREATE TABLE table_name_99 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_43 WHERE score_in_final = \"5\u20137, 4\u20136\"", "question": "What Tournament had a Score in Final of 5\u20137, 4\u20136?", "context": "CREATE TABLE table_name_43 (tournament VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT opponents_in_final FROM table_name_48 WHERE score_in_final = \"4\u20136, 1\u20136\" AND surface = \"clay\"", "question": "What is the Opponents in Final in the match with a Score in Final of 4\u20136, 1\u20136 played on Clay Surface?", "context": "CREATE TABLE table_name_48 (opponents_in_final VARCHAR, score_in_final VARCHAR, surface VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE score_in_final = \"4\u20136, 1\u20136\" AND partner = \"steffi graf\"", "question": "What is the Date of the match with Partner Steffi Graf with a Score in Final of 4\u20136, 1\u20136?", "context": "CREATE TABLE table_name_26 (date VARCHAR, score_in_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_92 WHERE score_in_final = \"5\u20137, 4\u20136\"", "question": "What is the Partner of the match with a Score in Final of 5\u20137, 4\u20136?", "context": "CREATE TABLE table_name_92 (partner VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_12 WHERE 1999 = \"2r\" AND 1992 = \"3r\"", "question": "What is 2001, when 1999 is \"2R\", and when 1992 is \"3R\"?", "context": "CREATE TABLE table_name_12 (Id VARCHAR)"}, {"answer": "SELECT 1990 FROM table_name_74 WHERE 1997 = \"1r\" AND tournament = \"hamburg\"", "question": "What is 1990, when 1997 is \"1R\", and when Tournament is \"Hamburg\"?", "context": "CREATE TABLE table_name_74 (tournament VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_94 WHERE 1989 = \"a\" AND tournament = \"u.s. open\"", "question": "What is 2001, when 1989 is \"A\", and when Tournament is \"U.S. Open\"?", "context": "CREATE TABLE table_name_94 (tournament VARCHAR)"}, {"answer": "SELECT AVG(goals_against) FROM table_name_29 WHERE points = 43 AND draws > 9", "question": "what is the goals against when the points is 43 and draws is more than 9?", "context": "CREATE TABLE table_name_29 (goals_against INTEGER, points VARCHAR, draws VARCHAR)"}, {"answer": "SELECT SUM(goals_for) FROM table_name_19 WHERE goal_difference > -3 AND club = \"real avil\u00e9s cf\" AND goals_against > 60", "question": "what is the goals when the goal difference is more than -3, the club is real avil\u00e9s cf and the goals against is more than 60?", "context": "CREATE TABLE table_name_19 (goals_for INTEGER, goals_against VARCHAR, goal_difference VARCHAR, club VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_98 WHERE position < 5 AND points = 62 AND played > 38", "question": "what is the least draws when the position is lower than 5, the points is 62 and played is more than 38?", "context": "CREATE TABLE table_name_98 (draws INTEGER, played VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_55 WHERE wins = 21 AND position > 3", "question": "what is the played when the wins is 21 and the positions is higher than 3?", "context": "CREATE TABLE table_name_55 (played INTEGER, wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_7 WHERE date = \"december 2, 2001\"", "question": "What is the sum of Week, when Date is December 2, 2001?", "context": "CREATE TABLE table_name_7 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_15 WHERE opponent = \"at cleveland browns\"", "question": "What is the total number of Week, when Opponent is At Cleveland Browns?", "context": "CREATE TABLE table_name_15 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT country FROM table_name_36 WHERE icao = \"votr\"", "question": "What Country's ICAO is VOTR?", "context": "CREATE TABLE table_name_36 (country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT city FROM table_name_77 WHERE country = \"maldives\"", "question": "What is the City in the Maldives?", "context": "CREATE TABLE table_name_77 (city VARCHAR, country VARCHAR)"}, {"answer": "SELECT icao FROM table_name_90 WHERE country = \"india\" AND iata = \"trz\"", "question": "What is the ICAO in India with IATA TRZ?", "context": "CREATE TABLE table_name_90 (icao VARCHAR, country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT airport FROM table_name_77 WHERE country = \"singapore\"", "question": "What is the Airport in Singapore?", "context": "CREATE TABLE table_name_77 (airport VARCHAR, country VARCHAR)"}, {"answer": "SELECT airport FROM table_name_51 WHERE iata = \"trz\"", "question": "What is the Airport with an IATA of TRZ?", "context": "CREATE TABLE table_name_51 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_88 WHERE score = \"w 87-64\"", "question": "What is the opponent of the game with a w 87-64 score?", "context": "CREATE TABLE table_name_88 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_1 WHERE record = \"3-1\"", "question": "What is the location/attendance of the game with a 3-1 record?", "context": "CREATE TABLE table_name_1 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_26 WHERE date = \"may 27\"", "question": "Who had the highest points of the game on May 27?", "context": "CREATE TABLE table_name_26 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_77 WHERE date = \"october 28, 2001\"", "question": "Who is the opponent on October 28, 2001?", "context": "CREATE TABLE table_name_77 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_72 WHERE game_site = \"ralph wilson stadium\" AND date = \"october 7, 2001\"", "question": "What was the lowest week at Ralph Wilson Stadium on October 7, 2001?", "context": "CREATE TABLE table_name_72 (week INTEGER, game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(to_par) FROM table_name_4 WHERE player = \"bob rosburg\"", "question": "What is the sum of To Par, when Player is \"Bob Rosburg\"?", "context": "CREATE TABLE table_name_4 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_16 WHERE score = 70 - 75 - 76 = 221", "question": "What is the total number of To Par, when Score is \"70-75-76=221\"?", "context": "CREATE TABLE table_name_16 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_60 WHERE score = 76 - 73 - 73 = 222", "question": "What is Player, when Score is \"76-73-73=222\"?", "context": "CREATE TABLE table_name_60 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE to_par > 7 AND place = \"t4\" AND player = \"bob rosburg\"", "question": "What is Score, when To Par is greater than 7, when Place is \"T4\", and when Player is \"Bob Rosburg\"?", "context": "CREATE TABLE table_name_38 (score VARCHAR, player VARCHAR, to_par VARCHAR, place VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_95 WHERE ends > 2006", "question": "Which transfer window ends after 2006?", "context": "CREATE TABLE table_name_95 (transfer_window VARCHAR, ends INTEGER)"}, {"answer": "SELECT transfer_fee FROM table_name_86 WHERE name = \"paolo vanoli\"", "question": "What is the transfer fee for Paolo Vanoli?", "context": "CREATE TABLE table_name_86 (transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT nat FROM table_name_9 WHERE name = \"gavin rae\"", "question": "What is the nationality of Gavin Rae?", "context": "CREATE TABLE table_name_9 (nat VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_76 WHERE position = \"ot\" AND round > 5", "question": "How much Overall has a Position of ot, and a Round larger than 5?", "context": "CREATE TABLE table_name_76 (overall VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_9 WHERE player = \"bart bryant\"", "question": "What is the to par for Bart Bryant?", "context": "CREATE TABLE table_name_9 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_70 WHERE country = \"south africa\" AND score = 68 - 73 - 66 = 207", "question": "Who scored 68-73-66=207 in South Africa?", "context": "CREATE TABLE table_name_70 (place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT royal_house FROM table_name_30 WHERE name = \"ding\"", "question": "Which Royal house has a name of ding?", "context": "CREATE TABLE table_name_30 (royal_house VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_99 WHERE name = \"bo qin\"", "question": "What type of state is bo qin?", "context": "CREATE TABLE table_name_99 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_54 WHERE royal_house = \"ji\" AND title = \"ruler\"", "question": "What type of state has a royal house of ji and has a ruler?", "context": "CREATE TABLE table_name_54 (type VARCHAR, royal_house VARCHAR, title VARCHAR)"}, {"answer": "SELECT record FROM table_name_17 WHERE game = 13", "question": "what is the record when the game is 13?", "context": "CREATE TABLE table_name_17 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_61 WHERE date = \"november 20\"", "question": "who had the high points on november 20?", "context": "CREATE TABLE table_name_61 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE home = \"washington capitols\" AND date = \"november 23, 1946\"", "question": "What is the Score on November 23, 1946 with Washington Capitols Home team?", "context": "CREATE TABLE table_name_91 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE home = \"detroit falcons\" AND score = \"63\u201366\"", "question": "On what Date is the Detroit Falcons the Home team in a game with a Score of 63\u201366?", "context": "CREATE TABLE table_name_71 (date VARCHAR, home VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_62 WHERE date = \"january 24, 1947\"", "question": "What is the Home team on January 24, 1947?", "context": "CREATE TABLE table_name_62 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_38 WHERE date = \"november 16, 1946\"", "question": "What is the Home team on November 16, 1946?", "context": "CREATE TABLE table_name_38 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_68 WHERE date = \"february 2, 1947\"", "question": "What is the Home team on February 2, 1947?", "context": "CREATE TABLE table_name_68 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_5 WHERE time = \"+23.002\" AND grid < 11", "question": "Which Laps have a Time of +23.002, and a Grid smaller than 11?", "context": "CREATE TABLE table_name_5 (laps INTEGER, time VARCHAR, grid VARCHAR)"}, {"answer": "SELECT laps FROM table_name_48 WHERE manufacturer = \"aprilia\" AND rider = \"sergio gadea\"", "question": "Which Laps have a Manufacturer of aprilia, and a Rider of sergio gadea?", "context": "CREATE TABLE table_name_48 (laps VARCHAR, manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_23 WHERE rider = \"mike di meglio\" AND laps > 23", "question": "Which Grid that has a Rider of mike di meglio, and Laps larger than 23?", "context": "CREATE TABLE table_name_23 (grid INTEGER, rider VARCHAR, laps VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_47 WHERE grid < 9 AND time = \"+22.517\"", "question": "Which Manufacturer has a Grid smaller than 9, and a Time of +22.517?", "context": "CREATE TABLE table_name_47 (manufacturer VARCHAR, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT result FROM table_name_57 WHERE round = \"sf\"", "question": "What is Result, when Round is SF?", "context": "CREATE TABLE table_name_57 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE date = \"11 august 1992\"", "question": "What is Result, when Date is 11 August 1992?", "context": "CREATE TABLE table_name_26 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_40 WHERE date = \"19 august 1992\"", "question": "What is Result, when Date is 19 August 1992?", "context": "CREATE TABLE table_name_40 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT res FROM table_name_47 WHERE event = \"rof 32: respect\"", "question": "Did he win or lose rof 32: respect?", "context": "CREATE TABLE table_name_47 (res VARCHAR, event VARCHAR)"}, {"answer": "SELECT round FROM table_name_3 WHERE res = \"win\" AND event = \"rof 29: aftershock\"", "question": "What round did he win rof 29: aftershock in?", "context": "CREATE TABLE table_name_3 (round VARCHAR, res VARCHAR, event VARCHAR)"}, {"answer": "SELECT round FROM table_name_72 WHERE record = \"6-6\"", "question": "How many rounds did the match last when his record was 6-6?", "context": "CREATE TABLE table_name_72 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_37 WHERE record = \"15-11\"", "question": "How did the match end when his record was 15-11?", "context": "CREATE TABLE table_name_37 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_86 WHERE grid < 7 AND rider = \"ben spies\"", "question": "How many laps did ben spies do on the grid less than 7?", "context": "CREATE TABLE table_name_86 (laps VARCHAR, grid VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_82 WHERE time = \"+58.353\" AND laps < 20", "question": "which grid did less than 20 laps in a time of +58.353?", "context": "CREATE TABLE table_name_82 (grid INTEGER, time VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time FROM table_name_97 WHERE rider = \"valentino rossi\"", "question": "what was valentino rossi's rider time?", "context": "CREATE TABLE table_name_97 (time VARCHAR, rider VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_68 WHERE rider = \"makoto tamada\"", "question": "Who manufactures Makoto Tamada's vehicle?", "context": "CREATE TABLE table_name_68 (manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_60 WHERE grid = 16", "question": "What is the time/retired of the one with grid of 16?", "context": "CREATE TABLE table_name_60 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT team FROM table_name_90 WHERE outgoing_manager = \"gonzalo arconada\"", "question": "What team did gonzalo arconada manage?", "context": "CREATE TABLE table_name_90 (team VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT team FROM table_name_77 WHERE date_of_vacancy = \"9 december 2008\"", "question": "What team replaced their manager on 9 December 2008?", "context": "CREATE TABLE table_name_77 (team VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_12 WHERE outgoing_manager = \"paco chaparro\"", "question": "What was the date of appointment for paco chaparro's replacement?", "context": "CREATE TABLE table_name_12 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_53 WHERE outgoing_manager = \"javier aguirre\"", "question": "What was the date of appointment for javier aguirre's replacement?", "context": "CREATE TABLE table_name_53 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE opponent_in_the_final = \"wen-hsin hsu\"", "question": "What date did Namigata play against Wen-Hsin Hsu in the finals?", "context": "CREATE TABLE table_name_84 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE week__number = \"top 8\"", "question": "What was the result during the week # of top 8?", "context": "CREATE TABLE table_name_26 (result VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT theme FROM table_name_73 WHERE week__number = \"top 24 (12 men)\"", "question": "What was the theme during the week # of top 24 (12 men)", "context": "CREATE TABLE table_name_73 (theme VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT result FROM table_name_84 WHERE week__number = \"top 11\"", "question": "What was the result after the week # top 11?", "context": "CREATE TABLE table_name_84 (result VARCHAR, week__number VARCHAR)"}, {"answer": "SELECT league FROM table_name_7 WHERE player = \"ian schultz\"", "question": "What is the league of player ian schultz?", "context": "CREATE TABLE table_name_7 (league VARCHAR, player VARCHAR)"}, {"answer": "SELECT birthplace, _date FROM table_name_47 WHERE pick = 4", "question": "What is the birthplace and date of pick 4?", "context": "CREATE TABLE table_name_47 (birthplace VARCHAR, _date VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_8 WHERE nationality = \"canada\" AND player = \"ian schultz\"", "question": "What is the pick of player ian schultz from Canada?", "context": "CREATE TABLE table_name_8 (pick VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_21 WHERE date = \"january 7\"", "question": "Who is the Opponent on January 7?", "context": "CREATE TABLE table_name_21 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE date = \"january 16\"", "question": "Who is the Opponent on January 16?", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE opponent = \"philadelphia 76ers\"", "question": "What is the Score of the game against Philadelphia 76ers?", "context": "CREATE TABLE table_name_2 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE record = \"15-27\"", "question": "What is the Date of the game where the Cavaliers have a Record of 15-27?", "context": "CREATE TABLE table_name_57 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_82 WHERE score = \"102-125\"", "question": "What was the Opponent in the game with a Score of 102-125?", "context": "CREATE TABLE table_name_82 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE score = \"98-99\"", "question": "What is the Cavaliers Record in the game with a Score of 98-99?", "context": "CREATE TABLE table_name_59 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_33 WHERE position = \"no pick\" AND year = 1976", "question": "What player has a no pick position in 1976?", "context": "CREATE TABLE table_name_33 (player VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT pick FROM table_name_55 WHERE college = \"baylor\"", "question": "What pick number was the player that went to baylor college?", "context": "CREATE TABLE table_name_55 (pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT year FROM table_name_23 WHERE pick = \"15\"", "question": "What year was the player pick number 15 picked?", "context": "CREATE TABLE table_name_23 (year VARCHAR, pick VARCHAR)"}, {"answer": "SELECT record FROM table_name_6 WHERE date = \"september 2\"", "question": "What was the record on september 2?", "context": "CREATE TABLE table_name_6 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_83 WHERE opponent = \"phoenix\"", "question": "What were phoenix's high points?", "context": "CREATE TABLE table_name_83 (high_points VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE record = \"17-17\"", "question": "When was the record 17-17?", "context": "CREATE TABLE table_name_31 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_16 WHERE date = \"september 9\"", "question": "What were the high points on september 9?", "context": "CREATE TABLE table_name_16 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_83 WHERE record = \"16-17\"", "question": "How many games had a record of 16-17?", "context": "CREATE TABLE table_name_83 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(number_of_seats) FROM table_name_2 WHERE leader = \"raymond mccartney\"", "question": "How many seats does leader Raymond McCartney have?", "context": "CREATE TABLE table_name_2 (number_of_seats INTEGER, leader VARCHAR)"}, {"answer": "SELECT leader FROM table_name_35 WHERE number_of_seats > 8 AND party = \"democratic unionist party\"", "question": "Which leader of the Democratic Unionist party has more than 8 seats?", "context": "CREATE TABLE table_name_35 (leader VARCHAR, number_of_seats VARCHAR, party VARCHAR)"}, {"answer": "SELECT award FROM table_name_60 WHERE outcome = \"nominated\" AND name = \"anuya bhagvath\"", "question": "Anuya Bhagvath was nominated for what award?", "context": "CREATE TABLE table_name_60 (award VARCHAR, outcome VARCHAR, name VARCHAR)"}, {"answer": "SELECT award FROM table_name_11 WHERE category = \"film lyricist\"", "question": "Which award has film lyricist in the category?", "context": "CREATE TABLE table_name_11 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT ceremony FROM table_name_39 WHERE award = \"vijay award\" AND outcome = \"nominated\" AND name = \"anuya bhagvath\"", "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_67 WHERE category = \"best lyricist\"", "question": "Which ceremony has the best lyricist category?", "context": "CREATE TABLE table_name_67 (ceremony VARCHAR, category VARCHAR)"}, {"answer": "SELECT best_3_year_period FROM table_name_61 WHERE best_15_year_period = \"smyslov; kasparov\" AND position = 5", "question": "Which best 3-year period has a best 15-year period of smyslov; kasparov, and a Position of 5?", "context": "CREATE TABLE table_name_61 (best_3_year_period VARCHAR, best_15_year_period VARCHAR, position VARCHAR)"}, {"answer": "SELECT best_5_year_period FROM table_name_37 WHERE best_15_year_period = \"alekhine; lasker\"", "question": "Which best 5-year period has a best 15-year period of alekhine; lasker?", "context": "CREATE TABLE table_name_37 (best_5_year_period VARCHAR, best_15_year_period VARCHAR)"}, {"answer": "SELECT best_10_year_period FROM table_name_32 WHERE best_2_year_period = \"petrosian\"", "question": "Which best 10-year period has a best 2-year period of petrosian?", "context": "CREATE TABLE table_name_32 (best_10_year_period VARCHAR, best_2_year_period VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_69 WHERE best_3_year_period = \"petrosian\"", "question": "Which Position has a best 3-year period of petrosian?", "context": "CREATE TABLE table_name_69 (position INTEGER, best_3_year_period VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_6 WHERE score = \"61-59\"", "question": "What is High Rebounds, when Score is 61-59?", "context": "CREATE TABLE table_name_6 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_61 WHERE high_rebounds = \"nolan (10)\"", "question": "What is Score, when High Rebounds is \"Nolan (10)\"?", "context": "CREATE TABLE table_name_61 (score VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_67 WHERE high_rebounds = \"pierson (6)\"", "question": "What is Opponent, when High Rebounds is \"Pierson (6)\"?", "context": "CREATE TABLE table_name_67 (opponent VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_6 WHERE high_rebounds = \"pierson (6)\"", "question": "What is the sum of Game(s), when High Rebounds is \"Pierson (6)\"?", "context": "CREATE TABLE table_name_6 (game INTEGER, high_rebounds VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_5 WHERE driver = \"bob wollek\"", "question": "How many Laps did Bob Wollek have?", "context": "CREATE TABLE table_name_5 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_name_14 WHERE team = \"primagaz competition\"", "question": "How many Laps did Team Primagaz Competition have?", "context": "CREATE TABLE table_name_14 (laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_46 WHERE class = \"c1\" AND laps = 40", "question": "What Team had 40 Laps in C1 Class?", "context": "CREATE TABLE table_name_46 (team VARCHAR, class VARCHAR, laps VARCHAR)"}, {"answer": "SELECT team FROM table_name_63 WHERE class = \"c1\" AND laps = 76 AND driver = \"bob wollek\"", "question": "What Team has Bob Wollek as a Driver with 76 Laps in C1 Class?", "context": "CREATE TABLE table_name_63 (team VARCHAR, driver VARCHAR, class VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_43 WHERE team = \"gp motorsport\"", "question": "How many Laps does GP Motorsport Team have?", "context": "CREATE TABLE table_name_43 (laps INTEGER, team VARCHAR)"}, {"answer": "SELECT location FROM table_name_58 WHERE score = \"w 105-99\"", "question": "what is the location when the score is w 105-99?", "context": "CREATE TABLE table_name_58 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_name_58 WHERE date = \"november 23\"", "question": "what is the location on november 23?", "context": "CREATE TABLE table_name_58 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(ends_lost) FROM table_name_63 WHERE shot__percentage > 78 AND ends_won < 38", "question": "Name the highest Ends Lost which has an Shot % larger than 78, and a Ends Won smaller than 38?", "context": "CREATE TABLE table_name_63 (ends_lost INTEGER, shot__percentage VARCHAR, ends_won VARCHAR)"}, {"answer": "SELECT country FROM table_name_67 WHERE stolen_ends > 7 AND skip = \"david murdoch\"", "question": "Name the Country which has Stolen Ends larger than 7, and a Skip of david murdoch?", "context": "CREATE TABLE table_name_67 (country VARCHAR, stolen_ends VARCHAR, skip VARCHAR)"}, {"answer": "SELECT AVG(stolen_ends) FROM table_name_89 WHERE ends_lost < 35", "question": "Name the average Stolen Ends which has an Ends Lost smaller than 35?", "context": "CREATE TABLE table_name_89 (stolen_ends INTEGER, ends_lost INTEGER)"}, {"answer": "SELECT AVG(blank_ends) FROM table_name_80 WHERE shot__percentage < 78 AND ends_won > 43", "question": "Name the average Blank Ends  which has a Shot % smaller than 78, and a Ends Won larger than 43?", "context": "CREATE TABLE table_name_80 (blank_ends INTEGER, shot__percentage VARCHAR, ends_won VARCHAR)"}, {"answer": "SELECT rank FROM table_name_35 WHERE title = \"skyfall\"", "question": "What rank has skyfall as the title?", "context": "CREATE TABLE table_name_35 (rank VARCHAR, title VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_67 WHERE title = \"the intouchables\"", "question": "What director(s) have the intouchables as the title?", "context": "CREATE TABLE table_name_67 (director_s_ VARCHAR, title VARCHAR)"}, {"answer": "SELECT studio FROM table_name_32 WHERE rank = 6", "question": "What studio has 6 as the rank?", "context": "CREATE TABLE table_name_32 (studio VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_91 WHERE worldwide_gross = \"$1,084,439,099\"", "question": "How many ranks have $1,084,439,099 as the worldwide gross?", "context": "CREATE TABLE table_name_91 (rank INTEGER, worldwide_gross VARCHAR)"}, {"answer": "SELECT 1981 FROM table_name_54 WHERE number_1971 > 192 AND 1991 = 1748", "question": "What is the 1981 value of the Macedonian population with a 1971 number greater than 192 and a 1991 of 1748?", "context": "CREATE TABLE table_name_54 (number_1971 VARCHAR)"}, {"answer": "SELECT MIN(number_1971) FROM table_name_15 WHERE 2002 > 133 AND 1991 < 171", "question": "What is the lowest 1971 number of the Macedonian population with a 2002 value greater than 133 and a 1991 value less than 171?", "context": "CREATE TABLE table_name_15 (number_1971 INTEGER)"}, {"answer": "SELECT COUNT(1961) FROM table_name_47 WHERE macedonian_population_in_vojvodina = \"plandi\u0161te\" AND 1981 > 1027", "question": "What is the total 1961 number of the plandi\u0161te Macedonian population with a 1981 value greater than 1027?", "context": "CREATE TABLE table_name_47 (macedonian_population_in_vojvodina VARCHAR)"}, {"answer": "SELECT COUNT(1961) FROM table_name_15 WHERE number_1971 = 3325 AND 1991 > 3177", "question": "What is the 1961 total of the Macedonian population with a 1971 number of 3325 and a 1991 value greater than 3177?", "context": "CREATE TABLE table_name_15 (number_1971 VARCHAR)"}, {"answer": "SELECT airport FROM table_name_60 WHERE city = \"muscat\"", "question": "What airport is in Muscat?", "context": "CREATE TABLE table_name_60 (airport VARCHAR, city VARCHAR)"}, {"answer": "SELECT country FROM table_name_8 WHERE city = \"bandar abbas\"", "question": "What country is Bandar Abbas in?", "context": "CREATE TABLE table_name_8 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_58 WHERE country = \"india\" AND airport = \"sardar vallabhbhai patel international airport\"", "question": "What is the city in India with an airport named Sardar Vallabhbhai Patel International Airport?", "context": "CREATE TABLE table_name_58 (city VARCHAR, country VARCHAR, airport VARCHAR)"}, {"answer": "SELECT airport FROM table_name_55 WHERE country = \"china\" AND icao = \"zbaa\"", "question": "What airport is in China with an ICAO of zbaa?", "context": "CREATE TABLE table_name_55 (airport VARCHAR, country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_87 WHERE city = \"toronto\"", "question": "What airport is in Toronto?", "context": "CREATE TABLE table_name_87 (airport VARCHAR, city VARCHAR)"}, {"answer": "SELECT country FROM table_name_67 WHERE icao = \"ypph\"", "question": "What country has an ICAO of ypph?", "context": "CREATE TABLE table_name_67 (country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_79 WHERE mark = \"8.54\" AND react > 0.23800000000000002", "question": "When the mark is 8.54, the reaction time was over 0.23800000000000002 seconds, what's the highest amount of points recorded?", "context": "CREATE TABLE table_name_79 (points INTEGER, mark VARCHAR, react VARCHAR)"}, {"answer": "SELECT country FROM table_name_58 WHERE react < 0.242 AND points > 1041", "question": "Which country has a reaction time of under 0.242 seconds and over 1041 points?", "context": "CREATE TABLE table_name_58 (country VARCHAR, react VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(react) FROM table_name_84 WHERE points = 1008", "question": "If a country has 1008 points what's their reaction time?", "context": "CREATE TABLE table_name_84 (react INTEGER, points VARCHAR)"}, {"answer": "SELECT wicket FROM table_name_85 WHERE runs = \"580\"", "question": "Which wicket had 580 runs?", "context": "CREATE TABLE table_name_85 (wicket VARCHAR, runs VARCHAR)"}, {"answer": "SELECT fielding_team FROM table_name_81 WHERE wicket = \"8th\"", "question": "Who fielded against the 8th wicket?", "context": "CREATE TABLE table_name_81 (fielding_team VARCHAR, wicket VARCHAR)"}, {"answer": "SELECT runs FROM table_name_98 WHERE batting_partners = \"vijay hazare and gul mohammad\"", "question": "How many runs did Vijay Hazare and Gul Mohammad score?", "context": "CREATE TABLE table_name_98 (runs VARCHAR, batting_partners VARCHAR)"}, {"answer": "SELECT batting_partners FROM table_name_99 WHERE venue = \"colombo\"", "question": "Who were the batting partners in Colombo?", "context": "CREATE TABLE table_name_99 (batting_partners VARCHAR, venue VARCHAR)"}, {"answer": "SELECT batting_team FROM table_name_61 WHERE season = \"2006\"", "question": "Who was the batting team in the 2006 season?", "context": "CREATE TABLE table_name_61 (batting_team VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_33 WHERE runs = \"577\"", "question": "In what season was 577 runs scored?", "context": "CREATE TABLE table_name_33 (season VARCHAR, runs VARCHAR)"}, {"answer": "SELECT opposing_team FROM table_name_7 WHERE against = 20", "question": "What opposing team has 20 against?", "context": "CREATE TABLE table_name_7 (opposing_team VARCHAR, against VARCHAR)"}, {"answer": "SELECT venue FROM table_name_14 WHERE opposing_team = \"hawke's bay\"", "question": "Venue for Hawke's bay?", "context": "CREATE TABLE table_name_14 (venue VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT AVG(december) FROM table_name_39 WHERE game = 36", "question": "What is the average December, when Game is \"36\"?", "context": "CREATE TABLE table_name_39 (december INTEGER, game VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_22 WHERE december > 13 AND score = \"5 - 0\"", "question": "What is the lowest Game, when December is greater than 13, and when Score is \"5 - 0\"?", "context": "CREATE TABLE table_name_22 (game INTEGER, december VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(december) FROM table_name_61 WHERE game > 31 AND score = \"5 - 2\"", "question": "What is the sum of December, when Game is greater than 31, and when Score is \"5 - 2\"?", "context": "CREATE TABLE table_name_61 (december INTEGER, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_79 WHERE game = 36", "question": "What is Record, when Game is \"36\"?", "context": "CREATE TABLE table_name_79 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_53 WHERE home_team = \"leatherhead\"", "question": "What was the away team that played against home team Leatherhead?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE away_team = \"arsenal\"", "question": "What was the score of the match played against away team Arsenal?", "context": "CREATE TABLE table_name_96 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(total_votes) FROM table_name_48 WHERE _percentage_of_popular_vote = \"0.86%\" AND _number_of_seats_won > 0", "question": "Can you tell me the highest Total votes that has the % of popular vote of 0.86%, and the # of seats won larger than 0?", "context": "CREATE TABLE table_name_48 (total_votes INTEGER, _percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR)"}, {"answer": "SELECT AVG(total_votes) FROM table_name_75 WHERE _number_of_seats_won < 0", "question": "Can you tell me the average Total votes that has the # of seats won smaller than 0?", "context": "CREATE TABLE table_name_75 (total_votes INTEGER, _number_of_seats_won INTEGER)"}, {"answer": "SELECT COUNT(total_votes) FROM table_name_71 WHERE election > 2009 AND candidates_fielded > 61", "question": "Can you tell me the total number of Total votes that has the Election larger than 2009, and the Candidates fielded larger than 61?", "context": "CREATE TABLE table_name_71 (total_votes VARCHAR, election VARCHAR, candidates_fielded VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_60 WHERE opponent = \"guillermo carry\"", "question": "Which tournament did the opponent Guillermo Carry play?", "context": "CREATE TABLE table_name_60 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_44 WHERE date = \"april 21, 2008\"", "question": "Who was the opponent on April 21, 2008?", "context": "CREATE TABLE table_name_44 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE surface = \"clay\" AND date = \"november 22, 2009\"", "question": "Who is the opponent on November 22, 2009, clay surface?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_60 WHERE grid > 8 AND rider = \"anthony west\"", "question": "Which Laps have a Grid larger than 8, and a Rider of anthony west?", "context": "CREATE TABLE table_name_60 (laps INTEGER, grid VARCHAR, rider VARCHAR)"}, {"answer": "SELECT time FROM table_name_66 WHERE rider = \"anthony west\"", "question": "Which time has a Rider of anthony west?", "context": "CREATE TABLE table_name_66 (time VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_86 WHERE rider = \"colin edwards\" AND laps < 28", "question": "Which Grid is the highest one that has a Rider of colin edwards, and Laps smaller than 28?", "context": "CREATE TABLE table_name_86 (grid INTEGER, rider VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_2 WHERE rider = \"andrea dovizioso\"", "question": "Which Laps have a Rider of andrea dovizioso?", "context": "CREATE TABLE table_name_2 (laps INTEGER, rider VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_4 WHERE round = 6", "question": "What college/junior/club team had a player selected in round 6?", "context": "CREATE TABLE table_name_4 (college_junior_club_team__league_ VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_59 WHERE player = \"stan adams\"", "question": "What round of the draft was Stan Adams selected?", "context": "CREATE TABLE table_name_59 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_17 WHERE result = \"t7-7\"", "question": "What is the attendance for the t7-7 result?", "context": "CREATE TABLE table_name_17 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE attendance = \"45,000\"", "question": "What is the date for 45,000 in attendance?", "context": "CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_43 WHERE score = 71", "question": "How many strokes under par was the player who scored 71?", "context": "CREATE TABLE table_name_43 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_60 WHERE player = \"jay hebert\"", "question": "What place is Jay Hebert?", "context": "CREATE TABLE table_name_60 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(games_lost) FROM table_name_74 WHERE points_against = 61 AND points_difference < 42", "question": "Which Games lost has Points against of 61, and Points difference smaller than 42?", "context": "CREATE TABLE table_name_74 (games_lost INTEGER, points_against VARCHAR, points_difference VARCHAR)"}, {"answer": "SELECT COUNT(games_won) FROM table_name_58 WHERE bonus_points > 1 AND points_difference < 50 AND points_against = 106 AND points_for < 152", "question": "Which Games won has Bonus points larger than 1, a Points difference smaller than 50, Points against of 106, and Points for smaller than 152?", "context": "CREATE TABLE table_name_58 (games_won VARCHAR, points_for VARCHAR, points_against VARCHAR, bonus_points VARCHAR, points_difference VARCHAR)"}, {"answer": "SELECT score FROM table_name_40 WHERE record = \"1-2\"", "question": "Which Score has a Record of 1-2?", "context": "CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_45 WHERE date = \"april 15\"", "question": "What is the Record for April 15?", "context": "CREATE TABLE table_name_45 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_14 WHERE date = \"april 13\"", "question": "What is the Record for April 13?", "context": "CREATE TABLE table_name_14 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_80 WHERE date = \"april 15\"", "question": "On April 15 who is the Home team?", "context": "CREATE TABLE table_name_80 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_65 WHERE date = \"december 22, 1985\" AND week < 16", "question": "Which Attendance has a Date of december 22, 1985, and a Week smaller than 16?", "context": "CREATE TABLE table_name_65 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_75 WHERE result = \"w 23-21\" AND week < 5", "question": "Which Attendance has a Result of w 23-21, and a Week smaller than 5?", "context": "CREATE TABLE table_name_75 (attendance INTEGER, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_20 WHERE result = \"w 20-13\"", "question": "Which Week has a Result of w 20-13?", "context": "CREATE TABLE table_name_20 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT japanese FROM table_name_28 WHERE chinese = \"\u53c9\u713c\"", "question": "What are the Japanese characters for the Chinese word \u53c9\u713c?", "context": "CREATE TABLE table_name_28 (japanese VARCHAR, chinese VARCHAR)"}, {"answer": "SELECT source_language FROM table_name_28 WHERE meaning = \"mahjong\"", "question": "What language did the word that means mahjong first come from?", "context": "CREATE TABLE table_name_28 (source_language VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT romanization FROM table_name_81 WHERE source_language = \"mandarin\" AND r\u014dmaji = \"\u016broncha\"", "question": "What is the Romanization of the Mandarin word whose R\u014dmaji is \u016broncha", "context": "CREATE TABLE table_name_81 (romanization VARCHAR, source_language VARCHAR, r\u014dmaji VARCHAR)"}, {"answer": "SELECT source_language FROM table_name_31 WHERE meaning = \"mahjong\"", "question": "What language did the word mahjong originate from?", "context": "CREATE TABLE table_name_31 (source_language VARCHAR, meaning VARCHAR)"}, {"answer": "SELECT chinese FROM table_name_61 WHERE r\u014dmaji = \"ch\u0101sh\u016b\"", "question": "What are the Chinese characters for the word that has a R\u014dmaji of ch\u0101sh\u016b?", "context": "CREATE TABLE table_name_61 (chinese VARCHAR, r\u014dmaji VARCHAR)"}, {"answer": "SELECT category FROM table_name_3 WHERE president = \"richard nixon\" AND year < 2009", "question": "What was the category of Richard Nixon as President in a year prior to 2009?", "context": "CREATE TABLE table_name_3 (category VARCHAR, president VARCHAR, year VARCHAR)"}, {"answer": "SELECT film FROM table_name_94 WHERE nominee = \"raymond massey\"", "question": "What is the film that Raymond Massey was nominated for?", "context": "CREATE TABLE table_name_94 (film VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT film FROM table_name_49 WHERE president = \"richard nixon\" AND year > 1996", "question": "What was the film of Richard Nixon as President in a year newer than 1996?", "context": "CREATE TABLE table_name_49 (film VARCHAR, president VARCHAR, year VARCHAR)"}, {"answer": "SELECT partner FROM table_name_3 WHERE outcome = \"winner\" AND opponents_in_the_final = \"rick leach jim pugh\"", "question": "WHich Partner has a Outcome of winner, and a Opponents in the final of rick leach jim pugh?", "context": "CREATE TABLE table_name_3 (partner VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_47 WHERE surface = \"hard\" AND date = \"august 20, 1989\"", "question": "Which Score in the final has a Surface of hard on august 20, 1989?", "context": "CREATE TABLE table_name_47 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_15 WHERE score_in_the_final = \"4\u20136, 4\u20136\" AND date = \"october 21, 1990\"", "question": "Name the Outcome which has a Score in the final of 4\u20136, 4\u20136 on october 21, 1990?", "context": "CREATE TABLE table_name_15 (outcome VARCHAR, score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_2 WHERE score_in_the_final = \"7\u20135, 6\u20134\"", "question": "Which Tournament has a Score in the final of 7\u20135, 6\u20134?", "context": "CREATE TABLE table_name_2 (tournament VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_85 WHERE partner = \"jorge lozano\" AND outcome = \"runner-up\" AND opponents_in_the_final = \"udo riglewski michael stich\"", "question": "Name the Score which has a Partner of jorge lozano, an Outcome of runner-up, and Opponents in the final of udo riglewski michael stich?", "context": "CREATE TABLE table_name_85 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR, partner VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE opponents_in_the_final = \"patrick mcenroe tim wilkison\"", "question": "Name the Date which has Opponents in the final of patrick mcenroe tim wilkison?", "context": "CREATE TABLE table_name_12 (date VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(goals__2008_) FROM table_name_86 WHERE games__2008_ < 11 AND debut_round > 15 AND age_at_debut = \"20 years, 71 days\"", "question": "What is the total number of goals that have games under 11, debut round over 15, and age of 20 years, 71 days?", "context": "CREATE TABLE table_name_86 (goals__2008_ VARCHAR, age_at_debut VARCHAR, games__2008_ VARCHAR, debut_round VARCHAR)"}, {"answer": "SELECT name FROM table_name_93 WHERE debut_round > 14 AND games__2008_ < 2 AND club = \"melbourne\"", "question": "What is the name that has a debut round over 14, games under 2, and a club of Melbourne?", "context": "CREATE TABLE table_name_93 (name VARCHAR, club VARCHAR, debut_round VARCHAR, games__2008_ VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_91 WHERE score = \"1-2\"", "question": "What is the name of team 2 that has 1-2 as the score?", "context": "CREATE TABLE table_name_91 (team_2 VARCHAR, score VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_9 WHERE season = \"2005\" AND score = \"0-4\"", "question": "In the 2005 season with a score of 0-4 what is the team 1?", "context": "CREATE TABLE table_name_9 (team_1 VARCHAR, season VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_90 WHERE venue = \"n/a\" AND team_2 = \"yokohama f. marinos\"", "question": "Team 2 of Yokohama F. Marinos in the n/a venue had what score?", "context": "CREATE TABLE table_name_90 (score VARCHAR, venue VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE team_2 = \"al-ain\"", "question": "Team 2 Al-Ain played in what venue?", "context": "CREATE TABLE table_name_89 (venue VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT SUM(scored) FROM table_name_94 WHERE result = \"40-22\"", "question": "What is the scored figure when the result is 40-22?", "context": "CREATE TABLE table_name_94 (scored INTEGER, result VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_28 WHERE result = \"46-18\"", "question": "In what tournament is there a result of 46-18?", "context": "CREATE TABLE table_name_28 (tournament VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(scored) FROM table_name_49 WHERE result = \"46-18\"", "question": "What is the smallest scored with a result of 46-18?", "context": "CREATE TABLE table_name_49 (scored INTEGER, result VARCHAR)"}, {"answer": "SELECT AVG(goals__2008_) FROM table_name_47 WHERE games__2008_ = 21 AND debut_round < 1", "question": "What is the average number of goals with 21 games for a debut round less than 1?", "context": "CREATE TABLE table_name_47 (goals__2008_ INTEGER, games__2008_ VARCHAR, debut_round VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_13 WHERE jersey_number_s_ = 6", "question": "What is the Nationality of the Player with Jersey Number 6?", "context": "CREATE TABLE table_name_13 (nationality VARCHAR, jersey_number_s_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE visitor = \"cleveland\" AND record = \"34-26\"", "question": "What day was the visitor Cleveland when the record was 34-26?", "context": "CREATE TABLE table_name_43 (date VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_20 WHERE score = \"88-98\"", "question": "What was the attendance when the score was 88-98?", "context": "CREATE TABLE table_name_20 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE visitor = \"cleveland\" AND home = \"dallas\"", "question": "What was the record when the visitor was Cleveland in Dallas?", "context": "CREATE TABLE table_name_59 (record VARCHAR, visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_58 WHERE player = \"matt delahey\" AND pick > 112", "question": "What is the littlest round that has Matt Delahey, and a greater than 112 pick?", "context": "CREATE TABLE table_name_58 (round INTEGER, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(pubs_2011) FROM table_name_52 WHERE location = \"mumbai\" AND totals_07_11 < 1025", "question": "What is the average PUBS 11 value in Mumbai, which has a 07-11 totals less than 1025?", "context": "CREATE TABLE table_name_52 (pubs_2011 INTEGER, location VARCHAR, totals_07_11 VARCHAR)"}, {"answer": "SELECT MIN(totals_06_10) FROM table_name_15 WHERE pubs_2010 = 68 AND totals_07_11 > 305", "question": "What is the lowest 06-10 totals with a pubs 2010 of 68 and a 07-11 totals larger than 305?", "context": "CREATE TABLE table_name_15 (totals_06_10 INTEGER, pubs_2010 VARCHAR, totals_07_11 VARCHAR)"}, {"answer": "SELECT team FROM table_name_6 WHERE date_of_appointment = \"10 november 2008\"", "question": "What is Team, when Date of Appointment is \"10 November 2008\"?", "context": "CREATE TABLE table_name_6 (team VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_66 WHERE outgoing_manager = \"\u00fcnal karaman\"", "question": "What is Replaced By, when Outgoing Manager is \"\u00dcnal Karaman\"?", "context": "CREATE TABLE table_name_66 (replaced_by VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_77 WHERE date_of_vacancy = \"25 september 2008\"", "question": "What is Outgoing Manager, when Date of Vacancy is \"25 September 2008\"?", "context": "CREATE TABLE table_name_77 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_42 WHERE outgoing_manager = \"hakan kutlu\"", "question": "What is Date of Appointment, when Outgoing Manager is \"Hakan Kutlu\"?", "context": "CREATE TABLE table_name_42 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_69 WHERE outgoing_manager = \"giray bulak\"", "question": "What is Date of Appointment, when Outgoing Manager is \"Giray Bulak\"?", "context": "CREATE TABLE table_name_69 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_68 WHERE date_of_vacancy = \"23 february 2009\"", "question": "What is Replaced By, when Date of Vacancy is \"23 February 2009\"?", "context": "CREATE TABLE table_name_68 (replaced_by VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT team FROM table_name_86 WHERE date = \"december 30\"", "question": "WHAT IS THE TEAM FOR DECEMBER 30?", "context": "CREATE TABLE table_name_86 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT category FROM table_name_4 WHERE finish = \"orange\"", "question": "Which category had an orange finish?", "context": "CREATE TABLE table_name_4 (category VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_33 WHERE category = \"1\" AND stage = 12", "question": "What is the lowest year for stage 12, category 1?", "context": "CREATE TABLE table_name_33 (year INTEGER, category VARCHAR, stage VARCHAR)"}, {"answer": "SELECT start FROM table_name_8 WHERE stage = 11", "question": "What is the start of stage 11?", "context": "CREATE TABLE table_name_8 (start VARCHAR, stage VARCHAR)"}, {"answer": "SELECT model FROM table_name_54 WHERE wheelbase_in = \"136\"", "question": "Which model had a wheelbase of 136 inches?", "context": "CREATE TABLE table_name_54 (model VARCHAR, wheelbase_in VARCHAR)"}, {"answer": "SELECT engine_type___cyl FROM table_name_14 WHERE wheelbase_in = \"127\" AND year = \"1915\"", "question": "What is the engine type with a wheelbase of 127 inches in 1915?", "context": "CREATE TABLE table_name_14 (engine_type___cyl VARCHAR, wheelbase_in VARCHAR, year VARCHAR)"}, {"answer": "SELECT record FROM table_name_13 WHERE date = \"january 4\"", "question": "What was the record on January 4?", "context": "CREATE TABLE table_name_13 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT streak FROM table_name_56 WHERE game > 49", "question": "Which Streak has a Game larger than 49?", "context": "CREATE TABLE table_name_56 (streak VARCHAR, game INTEGER)"}, {"answer": "SELECT streak FROM table_name_53 WHERE date = \"january 7\"", "question": "Which Streak has a Date of january 7?", "context": "CREATE TABLE table_name_53 (streak VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_90 WHERE wins > 2 AND rank = 2 AND name = \"federico bahamontes\"", "question": "Which Country has Wins larger than 2, and a Rank of 2, and a Name of federico bahamontes?", "context": "CREATE TABLE table_name_90 (country VARCHAR, name VARCHAR, wins VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_33 WHERE name = \"richard virenque\"", "question": "What is richard virenque's lowest rank?", "context": "CREATE TABLE table_name_33 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT years FROM table_name_71 WHERE rank > 2 AND wins = 2 AND country = \"france\"", "question": "Which Years have a Rank larger than 2, and Wins of 2, and a Country of france?", "context": "CREATE TABLE table_name_71 (years VARCHAR, country VARCHAR, rank VARCHAR, wins VARCHAR)"}, {"answer": "SELECT home FROM table_name_16 WHERE visitor = \"ny rangers\"", "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 record FROM table_name_47 WHERE home = \"philadelphia\" AND date = \"october 13\"", "question": "What is the record on October 13, when philadelphia was the home team?", "context": "CREATE TABLE table_name_47 (record VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT season FROM table_name_76 WHERE opponent = \"source: . last updated: 28 june 2007.\"", "question": "What is Season, when Opponent is source: . last updated: 28 june 2007.?", "context": "CREATE TABLE table_name_76 (season VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_9 WHERE figures = \"5/29\"", "question": "What is Venue, when Figures is 5/29?", "context": "CREATE TABLE table_name_9 (venue VARCHAR, figures VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_87 WHERE rank = \"3\"", "question": "What is Opponent, when Rank is 3?", "context": "CREATE TABLE table_name_87 (opponent VARCHAR, rank VARCHAR)"}, {"answer": "SELECT player FROM table_name_52 WHERE figures = \"source: . last updated: 28 june 2007.\"", "question": "What is Player, when Figures is source: . last updated: 28 june 2007.?", "context": "CREATE TABLE table_name_52 (player VARCHAR, figures VARCHAR)"}, {"answer": "SELECT player FROM table_name_17 WHERE opponent = \"source: . last updated: 28 june 2007.\"", "question": "What is Player, when Opponent is source: . last updated: 28 june 2007.?", "context": "CREATE TABLE table_name_17 (player VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_47 WHERE date = \"7 january 1956\" AND away_team = \"accrington stanley\"", "question": "For the match played on 7 January 1956, with away team of Accrington Stanley, who was the home team?", "context": "CREATE TABLE table_name_47 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_79 WHERE away_team = \"fulham\"", "question": "Which Tie number had Fulham as the away team?", "context": "CREATE TABLE table_name_79 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_63 WHERE away_team = \"middlesbrough\"", "question": "Which Tie number had Middlesbrough as the away team?", "context": "CREATE TABLE table_name_63 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE tie_no = \"29\"", "question": "On what day was Tie #29 played?", "context": "CREATE TABLE table_name_55 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_69 WHERE date = \"9 january 1956\"", "question": "Which Tie number was played on 9 January 1956?", "context": "CREATE TABLE table_name_69 (tie_no VARCHAR, date VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_61 WHERE away_team = \"scunthorpe & lindsey united\"", "question": "What is the Tie number for the match that had away team of Scunthorpe & Lindsey United?", "context": "CREATE TABLE table_name_61 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT place FROM table_name_62 WHERE score = 76 - 69 - 64 - 70 = 279", "question": "WHAT IS THE PLACE WITH A SCORE OF 76-69-64-70=279?", "context": "CREATE TABLE table_name_62 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_84 WHERE score = 73 - 65 - 73 - 71 = 282", "question": "WHAT IS THE PLACE WITH A SCORE OF 73-65-73-71=282?", "context": "CREATE TABLE table_name_84 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_3 WHERE player = \"ernie els\"", "question": "WHAT IS THE TO PAR FOR ERNIE ELS?", "context": "CREATE TABLE table_name_3 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_11 WHERE score = 69 - 71 - 66 - 73 = 279", "question": "WHAT IS THE PLACE WITH THE SCORE 69-71-66-73=279?", "context": "CREATE TABLE table_name_11 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_66 WHERE tournament = \"burdine's invitational\"", "question": "What was the winning score at Burdine's Invitational?", "context": "CREATE TABLE table_name_66 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_32 WHERE winning_score = \u20137(66 - 72 - 69 - 74 = 281)", "question": "Which tournament has a winning score at \u20137 (66-72-69-74=281)?", "context": "CREATE TABLE table_name_32 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE runner_s__up = \"jerilyn britz\"", "question": "On what date is Jerilyn Britz the runner-up?", "context": "CREATE TABLE table_name_32 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE winning_score = \u20138(70 - 71 - 67 = 208)", "question": "On what date is the winning score \u20138 (70-71-67=208)?", "context": "CREATE TABLE table_name_54 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT matches FROM table_name_72 WHERE year = \"2003\"", "question": "What is Matches, when Year is \"2003\"?", "context": "CREATE TABLE table_name_72 (matches VARCHAR, year VARCHAR)"}, {"answer": "SELECT draws FROM table_name_76 WHERE losses = \"did not qualify\"", "question": "What is Draws, when Losses is \"Did Not Qualify\"?", "context": "CREATE TABLE table_name_76 (draws VARCHAR, losses VARCHAR)"}, {"answer": "SELECT result FROM table_name_41 WHERE losses = \"did not qualify\"", "question": "What is Result, when Losses is \"Did Not Qualify\"?", "context": "CREATE TABLE table_name_41 (result VARCHAR, losses VARCHAR)"}, {"answer": "SELECT year FROM table_name_71 WHERE wins = \"0\"", "question": "What is Year, when Wins is \"0\"?", "context": "CREATE TABLE table_name_71 (year VARCHAR, wins VARCHAR)"}, {"answer": "SELECT draws FROM table_name_80 WHERE wins = \"did not qualify\"", "question": "What is Draws, when Wins is \"Did Not Qualify\"?", "context": "CREATE TABLE table_name_80 (draws VARCHAR, wins VARCHAR)"}, {"answer": "SELECT matches FROM table_name_75 WHERE draws = \"did not qualify\" AND year = \"1995\"", "question": "What is Matches, when Draws is \"Did Not Qualify\", and when Year is \"1995\"?", "context": "CREATE TABLE table_name_75 (matches VARCHAR, draws VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE score = \"112\u2013118\"", "question": "Which Date has a Score of 112\u2013118?", "context": "CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_69 WHERE score = \"111\u2013101\"", "question": "Which Record has a Score of 111\u2013101?", "context": "CREATE TABLE table_name_69 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT game FROM table_name_74 WHERE score = \"122\u2013125\"", "question": "Which Game has a Score of 122\u2013125?", "context": "CREATE TABLE table_name_74 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT streak FROM table_name_35 WHERE game = 3", "question": "Which Streak has a Game of 3?", "context": "CREATE TABLE table_name_35 (streak VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE record = \"1\u20133\"", "question": "Which Score has a Record of 1\u20133?", "context": "CREATE TABLE table_name_95 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_16 WHERE silver > 2", "question": "How many totals had a silver larger than 2?", "context": "CREATE TABLE table_name_16 (total VARCHAR, silver INTEGER)"}, {"answer": "SELECT AVG(bronze) FROM table_name_42 WHERE gold > 1 AND silver > 2", "question": "What was the average bronze when gold was larger than 1 and silver was larger than 2?", "context": "CREATE TABLE table_name_42 (bronze INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT college_country_team FROM table_name_46 WHERE former_wnba_team = \"cleveland rockers\"", "question": "What was the college team of the player whose former WNBA team was the Cleveland Rockers?", "context": "CREATE TABLE table_name_46 (college_country_team VARCHAR, former_wnba_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_61 WHERE college_country_team = \"georgia tech\"", "question": "What nationality was the player whose college team was Georgia Tech?", "context": "CREATE TABLE table_name_61 (nationality VARCHAR, college_country_team VARCHAR)"}, {"answer": "SELECT new_wnba_team FROM table_name_52 WHERE pick > 7", "question": "What was the new WNBA team of the player selected with a pick over 7?", "context": "CREATE TABLE table_name_52 (new_wnba_team VARCHAR, pick INTEGER)"}, {"answer": "SELECT player FROM table_name_33 WHERE pick < 6 AND new_wnba_team = \"minnesota lynx\"", "question": "Which player had a pick under 6 and a new WNBA team of the Minnesota Lynx?", "context": "CREATE TABLE table_name_33 (player VARCHAR, pick VARCHAR, new_wnba_team VARCHAR)"}, {"answer": "SELECT country FROM table_name_9 WHERE player = \"billy ray brown\"", "question": "Billy Ray Brown plays for what country?", "context": "CREATE TABLE table_name_9 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE country = \"spain\"", "question": "The country of Spain has what score?", "context": "CREATE TABLE table_name_63 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_46 WHERE country = \"united states\" AND score = 72 - 70 - 69 = 211", "question": "The golfer from the United states with a score of 72-70-69=211 is in what place?", "context": "CREATE TABLE table_name_46 (place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_13 WHERE player = \"jeff sluman\"", "question": "The golfer Jeff Sluman golfs for what country?", "context": "CREATE TABLE table_name_13 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE country = \"united states\" AND player = \"mike reid\"", "question": "Mike Reid from the United States has what score?", "context": "CREATE TABLE table_name_12 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_13 WHERE score = 71 - 72 - 66 = 209", "question": "What player has 71-72-66=209 as the score?", "context": "CREATE TABLE table_name_13 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_20 WHERE place = \"7\"", "question": "What to par has 7 as the place?", "context": "CREATE TABLE table_name_20 (to_par VARCHAR, place VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE score = 72 - 67 - 71 = 210", "question": "What player has 72-67-71=210 as the score?", "context": "CREATE TABLE table_name_41 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_49 WHERE place = \"t5\" AND player = \"larry mize\"", "question": "What to par has t5 as the place, with larry mize as the player?", "context": "CREATE TABLE table_name_49 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_38 WHERE place = \"t5\"", "question": "What player has t5 as the place?", "context": "CREATE TABLE table_name_38 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT score FROM table_name_3 WHERE player = \"fred couples\"", "question": "What score has fred couples as the player?", "context": "CREATE TABLE table_name_3 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE score = \"4\u20130\" AND venue = \"stade leopold senghor, dakar\"", "question": "On what Date in Stade Leopold Senghor, Dakar was the Score 4\u20130?", "context": "CREATE TABLE table_name_93 (date VARCHAR, score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_45 WHERE date = \"april 28\"", "question": "Who has the highest assists on april 28?", "context": "CREATE TABLE table_name_45 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT points FROM table_name_40 WHERE series = \"queensland formula ford championship\" AND position = \"1st\"", "question": "What is Points, when Series is Queensland Formula Ford Championship, and when Position is 1st?", "context": "CREATE TABLE table_name_40 (points VARCHAR, series VARCHAR, position VARCHAR)"}, {"answer": "SELECT driver FROM table_name_77 WHERE position = \"2nd\" AND season = 2001", "question": "What is Driver, when Position is 2nd, and when Season is 2001?", "context": "CREATE TABLE table_name_77 (driver VARCHAR, position VARCHAR, season VARCHAR)"}, {"answer": "SELECT position FROM table_name_48 WHERE series = \"queensland formula ford championship\" AND season > 2001 AND points = \"234\"", "question": "What is Position, when Series is Queensland Formula Ford Championship, when Season is after 2001, and when Points is 234?", "context": "CREATE TABLE table_name_48 (position VARCHAR, points VARCHAR, series VARCHAR, season VARCHAR)"}, {"answer": "SELECT series FROM table_name_2 WHERE season = 2007", "question": "What is Series, when Season is 2007?", "context": "CREATE TABLE table_name_2 (series VARCHAR, season VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_86 WHERE date = \"september 26, 1971\"", "question": "What was the Attendance on September 26, 1971?", "context": "CREATE TABLE table_name_86 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_63 WHERE week < 12 AND date = \"november 11, 1990\"", "question": "Who was the opponent before week 12, on November 11, 1990?", "context": "CREATE TABLE table_name_63 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE attendance = \"76,518\"", "question": "Which date had an attendance of 76,518?", "context": "CREATE TABLE table_name_27 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_67 WHERE result = \"l 31-0\"", "question": "What was the attendance of the game that ended with L 31-0", "context": "CREATE TABLE table_name_67 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_22 WHERE country = \"morocco\"", "question": "What is the year for the country of Morocco?", "context": "CREATE TABLE table_name_22 (year INTEGER, country VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_19 WHERE country = \"united arab emirates\"", "question": "What is the year for the United Arab Emirates?", "context": "CREATE TABLE table_name_19 (year VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_8 WHERE structure = \"mercury city tower\"", "question": "What year was the Mercury City Tower?", "context": "CREATE TABLE table_name_8 (year INTEGER, structure VARCHAR)"}, {"answer": "SELECT structure FROM table_name_88 WHERE country = \"chile\"", "question": "What structure is in Chile?", "context": "CREATE TABLE table_name_88 (structure VARCHAR, country VARCHAR)"}, {"answer": "SELECT 2007 AS _08_season FROM table_name_60 WHERE city = \"marcianise\"", "question": "What 2007-08 season has marcianise as the city?", "context": "CREATE TABLE table_name_60 (city VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_85 WHERE city = \"foligno\"", "question": "What is the average capacity that has foligno as the city?", "context": "CREATE TABLE table_name_85 (capacity INTEGER, city VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_80 WHERE stadium = \"stadio marcello torre\"", "question": "What is the highest capacity that has stadio marcello torre as the stadium?", "context": "CREATE TABLE table_name_80 (capacity INTEGER, stadium VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE date = \"10 march 1984\" AND home_team = \"birmingham city\"", "question": "What is the score for the game where Birmingham City was the home team on 10 March 1984?", "context": "CREATE TABLE table_name_86 (score VARCHAR, date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_2 WHERE tie_no = \"2\"", "question": "Who is the home team that tied no 2?", "context": "CREATE TABLE table_name_2 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE home_team = \"sheffield wednesday\"", "question": "What was the score of the game when Sheffield Wednesday was the home team?", "context": "CREATE TABLE table_name_32 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_name_96 WHERE position = \"small forward\" AND school_club_team = \"providence\"", "question": "Which years did the player from Providence play for the Grizzlies as small forward?", "context": "CREATE TABLE table_name_96 (years_for_grizzlies VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_48 WHERE player = \"stromile swift\"", "question": "What is the nationality of Stromile Swift?", "context": "CREATE TABLE table_name_48 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_name_62 WHERE school_club_team = \"providence\"", "question": "Which years did the player from Providence play for Memphis?", "context": "CREATE TABLE table_name_62 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_99 WHERE record = \"7-1\"", "question": "Which team has a record of 7-1?", "context": "CREATE TABLE table_name_99 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_25 WHERE location = \"the summit\"", "question": "What game number was the first game played at the Summit this season?", "context": "CREATE TABLE table_name_25 (game INTEGER, location VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE opponent = \"new york knicks\"", "question": "What was the final score for the game played against the New York Knicks?", "context": "CREATE TABLE table_name_11 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_68 WHERE location = \"boston garden\" AND score = \"118-110\"", "question": "For the game played at the Boston Garden with a score of 118-110, what is the opposing team's record?", "context": "CREATE TABLE table_name_68 (record VARCHAR, location VARCHAR, score VARCHAR)"}, {"answer": "SELECT finish FROM table_name_58 WHERE year_s__won = \"1962 , 1967\"", "question": "What is Finish, when Year(s) Won is \"1962 , 1967\"?", "context": "CREATE TABLE table_name_58 (finish VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE to_par > 6 AND year_s__won = \"1962 , 1967\"", "question": "What is Player, when To Par is greater than 6, and when Year(s) Won is \"1962 , 1967\"?", "context": "CREATE TABLE table_name_41 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT finish FROM table_name_85 WHERE to_par < 14 AND year_s__won = \"1952 , 1963\"", "question": "What is Finish, when To Par is less than 14, and when Year(s) Won is \"1952 , 1963\"?", "context": "CREATE TABLE table_name_85 (finish VARCHAR, to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_66 WHERE year_s__won = \"1962 , 1967\"", "question": "What is the highest To Par, when Year(s) Won is \"1962 , 1967\"?", "context": "CREATE TABLE table_name_66 (to_par INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT total FROM table_name_13 WHERE to_par < 14 AND finish = \"t12\" AND player = \"julius boros\"", "question": "What is the Total, when To Par is less than 14, when Finish is T12, and when Player is \"Julius Boros\"?", "context": "CREATE TABLE table_name_13 (total VARCHAR, player VARCHAR, to_par VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_name_67 WHERE artist = \"scarface\"", "question": "What is the highest number of artists on Scarface?", "context": "CREATE TABLE table_name_67 (number INTEGER, artist VARCHAR)"}, {"answer": "SELECT AVG(number) FROM table_name_18 WHERE artist = \"black milk\"", "question": "What is the average number for Black Milk?", "context": "CREATE TABLE table_name_18 (number INTEGER, artist VARCHAR)"}, {"answer": "SELECT MIN(average_score) FROM table_name_12 WHERE number = 2", "question": "What is the lowest average for number 2?", "context": "CREATE TABLE table_name_12 (average_score INTEGER, number VARCHAR)"}, {"answer": "SELECT MAX(average_score) FROM table_name_29 WHERE artist = \"black milk\"", "question": "What is the highest score for Black Milk?", "context": "CREATE TABLE table_name_29 (average_score INTEGER, artist VARCHAR)"}, {"answer": "SELECT surface FROM table_name_24 WHERE partner = \"piet norval\"", "question": "What surface was played on when Piet Norval was a partner?", "context": "CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT surface FROM table_name_5 WHERE outcome = \"runner-up\" AND year = 2007", "question": "What was the surface played on when they were a runner-up in 2007?", "context": "CREATE TABLE table_name_5 (surface VARCHAR, outcome VARCHAR, year VARCHAR)"}, {"answer": "SELECT goals FROM table_name_89 WHERE assists > 28 AND player = \"steve walker\"", "question": "What is Goals, when Assists is greater than 28, and when Player is Steve Walker?", "context": "CREATE TABLE table_name_89 (goals VARCHAR, assists VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_19 WHERE player = \"robert hock\" AND goals < 24", "question": "What is the average Games, when Player is Robert Hock, and when Goals is less than 24?", "context": "CREATE TABLE table_name_19 (games INTEGER, player VARCHAR, goals VARCHAR)"}, {"answer": "SELECT AVG(assists) FROM table_name_18 WHERE club = \"iserlohn roosters\" AND points = 71 AND goals > 44", "question": "What is the average Assists, when Club is Iserlohn Roosters,when Points is 71, and when Goals is greater than 44?", "context": "CREATE TABLE table_name_18 (assists INTEGER, goals VARCHAR, club VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_45 WHERE club = \"iserlohn roosters\" AND games < 56", "question": "What is the average Goals, when Club is Iserlohn Roosters, and when Games is less than 56?", "context": "CREATE TABLE table_name_45 (goals INTEGER, club VARCHAR, games VARCHAR)"}, {"answer": "SELECT location FROM table_name_35 WHERE score = \"115-105\"", "question": "What is the location of the game with a 115-105 score?", "context": "CREATE TABLE table_name_35 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_89 WHERE score = \"110-106\"", "question": "What is the record of the game with a 110-106 score?", "context": "CREATE TABLE table_name_89 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_40 WHERE game = 48", "question": "What is the record of game 48?", "context": "CREATE TABLE table_name_40 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_1 WHERE score = \"110-106\"", "question": "What is the record of the game with a 110-106 score?", "context": "CREATE TABLE table_name_1 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE location = \"the forum\"", "question": "What is the score at the forum location?", "context": "CREATE TABLE table_name_23 (score VARCHAR, location VARCHAR)"}, {"answer": "SELECT method FROM table_name_38 WHERE location = \"tokyo , japan\" AND event = \"rings: millennium combine 2\"", "question": "What is Method, when Location is \"Tokyo , Japan\", and when Event is \"Rings: Millennium Combine 2\"?", "context": "CREATE TABLE table_name_38 (method VARCHAR, location VARCHAR, event VARCHAR)"}, {"answer": "SELECT method FROM table_name_4 WHERE opponent = \"chalid arrab\"", "question": "What is Method, when Opponent is \"Chalid Arrab\"?", "context": "CREATE TABLE table_name_4 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_70 WHERE record = \"19-25-5\"", "question": "What is the sum of Round, when Record is \"19-25-5\"?", "context": "CREATE TABLE table_name_70 (round INTEGER, record VARCHAR)"}, {"answer": "SELECT region FROM table_name_12 WHERE host = \"stanford university\"", "question": "Which region has Stanford University as host?", "context": "CREATE TABLE table_name_12 (region VARCHAR, host VARCHAR)"}, {"answer": "SELECT state FROM table_name_67 WHERE region = \"mideast\" AND host = \"university of iowa\"", "question": "Which state contains the University of Iowa in the mideast region?", "context": "CREATE TABLE table_name_67 (state VARCHAR, region VARCHAR, host VARCHAR)"}, {"answer": "SELECT state FROM table_name_25 WHERE city = \"storrs\"", "question": "Which state includes the city of Storrs?", "context": "CREATE TABLE table_name_25 (state VARCHAR, city VARCHAR)"}, {"answer": "SELECT state FROM table_name_10 WHERE venue = \"harry a. gampel pavilion\"", "question": "Which state includes the Harry A. Gampel Pavilion venue?", "context": "CREATE TABLE table_name_10 (state VARCHAR, venue VARCHAR)"}, {"answer": "SELECT city FROM table_name_55 WHERE state = \"georgia\"", "question": "Which city is in Georgia?", "context": "CREATE TABLE table_name_55 (city VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_75 WHERE player = \"jason missiaen\"", "question": "What is the total number of rounds that had Jason Missiaen?", "context": "CREATE TABLE table_name_75 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_8 WHERE nationality = \"russia\"", "question": "What player is from Russia?", "context": "CREATE TABLE table_name_8 (player VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_9 WHERE round = 7", "question": "What nationality is the pick from round 7?", "context": "CREATE TABLE table_name_9 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT album FROM table_name_77 WHERE year > 2008", "question": "what is the album when the year is later than 2008?", "context": "CREATE TABLE table_name_77 (album VARCHAR, year INTEGER)"}, {"answer": "SELECT championship_game FROM table_name_40 WHERE _number_of_bids = 4 AND win__percentage = \".600\"", "question": "What is the Championship Game that has 4 Bids and a .600 Win %?", "context": "CREATE TABLE table_name_40 (championship_game VARCHAR, _number_of_bids VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_2 WHERE team_1 = \"cobreloa\"", "question": "What is the team 2 with cobreloa as team 1?", "context": "CREATE TABLE table_name_2 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_47 WHERE round < 6 AND overall > 153", "question": "How many picks had a round smaller than 6 and an overall bigger than 153?", "context": "CREATE TABLE table_name_47 (pick INTEGER, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_33 WHERE opponent = \"airdrie united\" AND date = \"31 january 2009\"", "question": "What was the attendance on 31 January 2009 when the opponent was Airdrie United?", "context": "CREATE TABLE table_name_33 (attendance INTEGER, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_95 WHERE date = \"14 february 2009\"", "question": "In what venue was the event held on 14 February 2009?", "context": "CREATE TABLE table_name_95 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_24 WHERE venue = \"palmerston park\"", "question": "What is the average attendance for all events held at Palmerston Park venue?", "context": "CREATE TABLE table_name_24 (attendance INTEGER, venue VARCHAR)"}, {"answer": "SELECT COUNT(t__\u00b5m_) FROM table_name_67 WHERE technology = \"u c-si\"", "question": "What is the total number of t (\u00b5m), when Technology is u c-si?", "context": "CREATE TABLE table_name_67 (t__\u00b5m_ VARCHAR, technology VARCHAR)"}, {"answer": "SELECT v_oc__v_ FROM table_name_46 WHERE t__\u00b5m_ > 5 AND i_sc__a_ = \"0.8\"", "question": "What is the V OC (V), when t (\u00b5m) is greater than 5, and when I SC (A) is 0.8?", "context": "CREATE TABLE table_name_46 (v_oc__v_ VARCHAR, t__\u00b5m_ VARCHAR, i_sc__a_ VARCHAR)"}, {"answer": "SELECT SUM(t__\u00b5m_) FROM table_name_26 WHERE technology = \"mj\"", "question": "What is the sum of t (\u00b5m), when Technology is MJ?", "context": "CREATE TABLE table_name_26 (t__\u00b5m_ INTEGER, technology VARCHAR)"}, {"answer": "SELECT w_m\u00b2 FROM table_name_60 WHERE \u03b7___percentage_ > 16.5 AND technology = \"mj\"", "question": "What is W/m\u00b2, when \u03b7 (%) is greater than 16.5, and when Technology is MJ?", "context": "CREATE TABLE table_name_60 (w_m\u00b2 VARCHAR, \u03b7___percentage_ VARCHAR, technology VARCHAR)"}, {"answer": "SELECT type FROM table_name_87 WHERE location = \"stanley\"", "question": "What type of Bridge is in Stanley?", "context": "CREATE TABLE table_name_87 (type VARCHAR, location VARCHAR)"}, {"answer": "SELECT type FROM table_name_46 WHERE name = \"colton's crossing bridge\"", "question": "What type of bridge is Colton's Crossing Bridge?", "context": "CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_4 WHERE type = \"pratt pony through truss\"", "question": "What bridge is a pratt pony through truss tyoe bridge?", "context": "CREATE TABLE table_name_4 (name VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_8 WHERE location = \"cooperstown\"", "question": "What type of bridge is in Cooperstown?", "context": "CREATE TABLE table_name_8 (type VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_name_69 WHERE location = \"mcville\"", "question": "What bridge is in Mcville?", "context": "CREATE TABLE table_name_69 (name VARCHAR, location VARCHAR)"}, {"answer": "SELECT tracking_method FROM table_name_62 WHERE supported_databases = \"mysql\" AND name = \"open web analytics\"", "question": "Which tracking method supports MySQL databases and is named Open Web Analytics?", "context": "CREATE TABLE table_name_62 (tracking_method VARCHAR, supported_databases VARCHAR, name VARCHAR)"}, {"answer": "SELECT tracking_method FROM table_name_14 WHERE latest_stable_release = \"2.23-05\"", "question": "Which tracking method has a latest stable release of 2.23-05?", "context": "CREATE TABLE table_name_14 (tracking_method VARCHAR, latest_stable_release VARCHAR)"}, {"answer": "SELECT latest_stable_release FROM table_name_83 WHERE name = \"crawltrack\"", "question": "What is the latest stable release date for Crawltrack?", "context": "CREATE TABLE table_name_83 (latest_stable_release VARCHAR, name VARCHAR)"}, {"answer": "SELECT tracking_method FROM table_name_23 WHERE latest_stable_release = \"6.0\"", "question": "Which tracking method has a latest stable release of 6.0?", "context": "CREATE TABLE table_name_23 (tracking_method VARCHAR, latest_stable_release VARCHAR)"}, {"answer": "SELECT MIN(passengers) FROM table_name_75 WHERE airport = \"dallas/fort worth international (dfw)\"", "question": "What is the least passengers from the Dallas/Fort Worth International (DFW) airport?", "context": "CREATE TABLE table_name_75 (passengers INTEGER, airport VARCHAR)"}, {"answer": "SELECT city FROM table_name_79 WHERE rank > 6 AND airport = \"st. petersburg/clearwater (pie)\"", "question": "What city is ranked greater than 6, and the airport is St. Petersburg/Clearwater (PIE)", "context": "CREATE TABLE table_name_79 (city VARCHAR, rank VARCHAR, airport VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_63 WHERE passengers = 79 OFFSET 290", "question": "What is the total rank of the airport that has 79,290 passengers?", "context": "CREATE TABLE table_name_63 (rank VARCHAR, passengers VARCHAR)"}, {"answer": "SELECT winner FROM table_name_97 WHERE country = \"norway\" AND fis_nordic_world_ski_championships = \"1924\"", "question": "Which Winner has a Country of norway, and a FIS Nordic World Ski Championships of 1924?", "context": "CREATE TABLE table_name_97 (winner VARCHAR, country VARCHAR, fis_nordic_world_ski_championships VARCHAR)"}, {"answer": "SELECT country FROM table_name_96 WHERE fis_nordic_world_ski_championships = \"1948, 1950\"", "question": "Which Country has a FIS Nordic World Ski Championships of 1948, 1950?", "context": "CREATE TABLE table_name_96 (country VARCHAR, fis_nordic_world_ski_championships VARCHAR)"}, {"answer": "SELECT holmenkollen FROM table_name_22 WHERE country = \"norway\" AND winner = \"tom sandberg\"", "question": "Which Holmenkollen has a Country of norway, and a Winner of tom sandberg?", "context": "CREATE TABLE table_name_22 (holmenkollen VARCHAR, country VARCHAR, winner VARCHAR)"}, {"answer": "SELECT fis_nordic_world_ski_championships FROM table_name_44 WHERE winter_olympics = \"1960\"", "question": "Which FIS Nordic World Ski Championships has Winter Olympics of 1960?", "context": "CREATE TABLE table_name_44 (fis_nordic_world_ski_championships VARCHAR, winter_olympics VARCHAR)"}, {"answer": "SELECT country FROM table_name_28 WHERE winter_olympics = \"1948\"", "question": "Which Country has a Winter Olympics of 1948?", "context": "CREATE TABLE table_name_28 (country VARCHAR, winter_olympics VARCHAR)"}, {"answer": "SELECT winner FROM table_name_31 WHERE winter_olympics = \"1968\"", "question": "Which Winner has a Winter Olympics of 1968?", "context": "CREATE TABLE table_name_31 (winner VARCHAR, winter_olympics VARCHAR)"}, {"answer": "SELECT result FROM table_name_8 WHERE attendance = \"43,279\"", "question": "What was the result of the game when the attendance was 43,279?", "context": "CREATE TABLE table_name_8 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_28 WHERE date = \"1 october 1998\"", "question": "What is the average Attendance, when Date is 1 October 1998?", "context": "CREATE TABLE table_name_28 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_76 WHERE date = \"17 september 1998\"", "question": "What is Opponent, when Date is 17 September 1998?", "context": "CREATE TABLE table_name_76 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_18 WHERE date = \"8 april 1999\"", "question": "What is Opponent, when Date is 8 April 1999?", "context": "CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_89 WHERE opponent = \"los angeles\"", "question": "WHAT IS THE HIGHEST POINTS FOR LOS ANGELES?", "context": "CREATE TABLE table_name_89 (high_points VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score_f_a FROM table_name_39 WHERE result = \"d\"", "question": "What was the Score F-A when the result was D?", "context": "CREATE TABLE table_name_39 (score_f_a VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE venue = \"a\" AND opponents = \"leicester city\"", "question": "On which date did they play Leicester City in Venue A?", "context": "CREATE TABLE table_name_38 (date VARCHAR, venue VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT result FROM table_name_27 WHERE venue = \"h\"", "question": "What was the result of the game played in Venue H?", "context": "CREATE TABLE table_name_27 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_42 WHERE date = \"17 july 2008\"", "question": "What was the result of the game played on 17 July 2008?", "context": "CREATE TABLE table_name_42 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT passenger FROM table_name_94 WHERE wins = \"16\"", "question": "What Passenger has 16 Wins?", "context": "CREATE TABLE table_name_94 (passenger VARCHAR, wins VARCHAR)"}, {"answer": "SELECT time_of_broadcast FROM table_name_23 WHERE picture_format = \"4:3\" AND hours = \"20:30\" AND days_of_the_week = \"monday, wednesday, friday\"", "question": "Name the Time of broadcast has a Picture format of 4:3, and Hours of 20:30, and Days of the week of monday, wednesday, friday?", "context": "CREATE TABLE table_name_23 (time_of_broadcast VARCHAR, days_of_the_week VARCHAR, picture_format VARCHAR, hours VARCHAR)"}, {"answer": "SELECT days_of_the_week FROM table_name_31 WHERE time_of_broadcast = \"january\u2013february, june 2002\"", "question": "Which Days of the week has a Time of broadcast in january\u2013february, june 2002?", "context": "CREATE TABLE table_name_31 (days_of_the_week VARCHAR, time_of_broadcast VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_61 WHERE championship = \"us championships\" AND score_in_the_final = \"5\u20137, 6\u20131, 6\u20133, 6\u20133\"", "question": "Which Outcome has a Championship of us championships, and a Score in the final of 5\u20137, 6\u20131, 6\u20133, 6\u20133?", "context": "CREATE TABLE table_name_61 (outcome VARCHAR, championship VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_44 WHERE year > 1939 AND opponent_in_the_final = \"frank kovacs\"", "question": "Which Outcome has a Year larger than 1939, and an Opponent in the final of frank kovacs?", "context": "CREATE TABLE table_name_44 (outcome VARCHAR, year VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_52 WHERE opponent_in_the_final = \"don mcneill\" AND year = 1940", "question": "Which Surface has an Opponent in the final of don mcneill, and a Year of 1940?", "context": "CREATE TABLE table_name_52 (surface VARCHAR, opponent_in_the_final VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_74 WHERE opponent_in_the_final = \"welby van horn\"", "question": "How many years have an Opponent in the final of welby van horn?", "context": "CREATE TABLE table_name_74 (year INTEGER, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE player = \"dick metz\"", "question": "What is the score of player dick metz?", "context": "CREATE TABLE table_name_74 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT season FROM table_name_60 WHERE west = \"ev bad w\u00f6rishofen\"", "question": "Which season had EV Bad W\u00f6rishofen in the West?", "context": "CREATE TABLE table_name_60 (season VARCHAR, west VARCHAR)"}, {"answer": "SELECT south FROM table_name_92 WHERE season = \"2004-05\"", "question": "Who was in the South in the 2004-05 season?", "context": "CREATE TABLE table_name_92 (south VARCHAR, season VARCHAR)"}, {"answer": "SELECT south FROM table_name_10 WHERE west = \"ev bad w\u00f6rishofen\"", "question": "Who was in the South when EV Bad W\u00f6rishofen was in the West?", "context": "CREATE TABLE table_name_10 (south VARCHAR, west VARCHAR)"}, {"answer": "SELECT south FROM table_name_40 WHERE west = \"tsv kottern\" AND east = \"ehf passau\"", "question": "Who was in the South when TSV Kottern was in the West and EHF Passau was in the East?", "context": "CREATE TABLE table_name_40 (south VARCHAR, west VARCHAR, east VARCHAR)"}, {"answer": "SELECT east FROM table_name_9 WHERE south = \"tus geretsried ii\"", "question": "Who was in the East when TUS Geretsried II was in the South?", "context": "CREATE TABLE table_name_9 (east VARCHAR, south VARCHAR)"}, {"answer": "SELECT west FROM table_name_32 WHERE east = \"esv gebensbach\"", "question": "Who was in the West when ESV Gebensbach was in the East?", "context": "CREATE TABLE table_name_32 (west VARCHAR, east VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_2 WHERE nation = \"hungary\" AND bronze > 1", "question": "What is the average Gold, when Nation is Hungary, and when Bronze is greater than 1?", "context": "CREATE TABLE table_name_2 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_33 WHERE nation = \"soviet union\" AND gold > 9", "question": "What is the average Total, when Nation is Soviet Union, and when Gold is greater than 9?", "context": "CREATE TABLE table_name_33 (total INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_75 WHERE silver > 0 AND gold > 3 AND rank = \"1\"", "question": "What is the total number of Bronze, when Silver is greater than 0, when Gold is greater than 3, and when Rank is 1?", "context": "CREATE TABLE table_name_75 (bronze VARCHAR, rank VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_86 WHERE total < 3 AND silver < 0", "question": "What is the highest Bronze, when Total is less than 3, and when Silver is less than 0?", "context": "CREATE TABLE table_name_86 (bronze INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_2 WHERE silver > 4 AND gold > 16", "question": "What is the average Total, when Silver is greater than 4, and when Gold is greater than 16?", "context": "CREATE TABLE table_name_2 (total INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_84 WHERE total < 1", "question": "What is the sum of Silver, when Total is less than 1?", "context": "CREATE TABLE table_name_84 (silver INTEGER, total INTEGER)"}, {"answer": "SELECT day_4 FROM table_name_3 WHERE day_2 = \"paaq\"", "question": "What is day 4 when day 2 is PAAQ?", "context": "CREATE TABLE table_name_3 (day_4 VARCHAR, day_2 VARCHAR)"}, {"answer": "SELECT other FROM table_name_21 WHERE christianity = \"10.24%\"", "question": "What is the other value associated with a Christianity value of 10.24%?", "context": "CREATE TABLE table_name_21 (other VARCHAR, christianity VARCHAR)"}, {"answer": "SELECT judaism FROM table_name_15 WHERE other = \"0.13%\" AND buddhism = \"0.01%\"", "question": "What is the Judaism percentage associated with Buddhism at 0.01% and Other at 0.13%?", "context": "CREATE TABLE table_name_15 (judaism VARCHAR, other VARCHAR, buddhism VARCHAR)"}, {"answer": "SELECT atheism FROM table_name_90 WHERE other = \"0.08%\"", "question": "What is the percentage of Atheism associated with an other percentage of 0.08%?", "context": "CREATE TABLE table_name_90 (atheism VARCHAR, other VARCHAR)"}, {"answer": "SELECT buddhism FROM table_name_6 WHERE christianity = \"52.32%\"", "question": "What is the percentage of Buddhists associated with a Christianity percentage of 52.32%?", "context": "CREATE TABLE table_name_6 (buddhism VARCHAR, christianity VARCHAR)"}, {"answer": "SELECT judaism FROM table_name_2 WHERE christianity = \"2.51%\"", "question": "What is the percentage of Judaism associated with Christianity at 2.51%?", "context": "CREATE TABLE table_name_2 (judaism VARCHAR, christianity VARCHAR)"}, {"answer": "SELECT other FROM table_name_80 WHERE atheism = \"1.86%\"", "question": "What is the value of other religions associated with atheism at 1.86%?", "context": "CREATE TABLE table_name_80 (other VARCHAR, atheism VARCHAR)"}, {"answer": "SELECT no_2 FROM table_name_56 WHERE no_9 = \"mia\"", "question": "What is No. 2, when No. 9 is Mia?", "context": "CREATE TABLE table_name_56 (no_2 VARCHAR, no_9 VARCHAR)"}, {"answer": "SELECT no_7 FROM table_name_15 WHERE no_4 = \"madison\" AND no_10 = \"amelia\"", "question": "What is No. 7, when No. 4 is Madison, and when No. 10 is Amelia?", "context": "CREATE TABLE table_name_15 (no_7 VARCHAR, no_4 VARCHAR, no_10 VARCHAR)"}, {"answer": "SELECT no_1 FROM table_name_28 WHERE no_2 = \"emma\" AND no_7 = \"olivia\"", "question": "What is No.1, when No. 2 is Emma, and when No. 7 is Olivia?", "context": "CREATE TABLE table_name_28 (no_1 VARCHAR, no_2 VARCHAR, no_7 VARCHAR)"}, {"answer": "SELECT no_5 FROM table_name_39 WHERE no_2 = \"olivia\" AND no_4 = \"ava\" AND no_6 = \"abigail\"", "question": "What is No. 5, when No. 2 is Olivia, when No. 4 is Ava, and when No. 6 is Abigail?", "context": "CREATE TABLE table_name_39 (no_5 VARCHAR, no_6 VARCHAR, no_2 VARCHAR, no_4 VARCHAR)"}, {"answer": "SELECT no_3 FROM table_name_24 WHERE no_7 = \"abigail\" AND no_2 = \"olivia\"", "question": "What is No. 3, when No. 7 is Abigail, and when No. 2 is Olivia?", "context": "CREATE TABLE table_name_24 (no_3 VARCHAR, no_7 VARCHAR, no_2 VARCHAR)"}, {"answer": "SELECT no_3 FROM table_name_79 WHERE no_7 = \"abigail\" AND no_4 = \"ava\"", "question": "What is No. 3, when No. 7 is Abigail, and when No. 4 is Ava?", "context": "CREATE TABLE table_name_79 (no_3 VARCHAR, no_7 VARCHAR, no_4 VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_51 WHERE grid > 14 AND rider = \"sylvain guintoli\"", "question": "How many Laps have Grid larger than 14, and a Rider of sylvain guintoli?", "context": "CREATE TABLE table_name_51 (laps VARCHAR, grid VARCHAR, rider VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_22 WHERE laps = 24 AND rider = \"marco melandri\"", "question": "Which Grid has Laps of 24, and a Rider of marco melandri?", "context": "CREATE TABLE table_name_22 (grid INTEGER, laps VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_64 WHERE laps < 24 AND time = \"retirement\"", "question": "Which Grid has Laps smaller than 24, and a Time of retirement?", "context": "CREATE TABLE table_name_64 (grid INTEGER, laps VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_11 WHERE rider = \"randy de puniet\" AND laps < 24", "question": "Which Grid has a Rider of randy de puniet, and Laps smaller than 24?", "context": "CREATE TABLE table_name_11 (grid INTEGER, rider VARCHAR, laps VARCHAR)"}, {"answer": "SELECT surface FROM table_name_23 WHERE week = \"march 17\"", "question": "What was the type of surface played on for the week of March 17?", "context": "CREATE TABLE table_name_23 (surface VARCHAR, week VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_14 WHERE week = \"august 4\"", "question": "What was the tournament for the week of August 4?", "context": "CREATE TABLE table_name_14 (tournament VARCHAR, week VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_85 WHERE finalist = \"richard krajicek\"", "question": "Which tournament had Richard Krajicek as a finalist?", "context": "CREATE TABLE table_name_85 (tournament VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE home = \"detroit\"", "question": "On what date did Detroit play at home?", "context": "CREATE TABLE table_name_25 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_81 WHERE date = \"june 9\"", "question": "Who was the home team on June 9?", "context": "CREATE TABLE table_name_81 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_42 WHERE score = 68 - 67 - 69 - 76 = 280", "question": "What was the money value that went along with the score of 68-67-69-76=280?", "context": "CREATE TABLE table_name_42 (money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE money___$__ = \"9,000\" AND player = \"leonard thompson\"", "question": "What score did Leonard Thompson have when he won $9,000?", "context": "CREATE TABLE table_name_74 (score VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE record = \"15-14-4\"", "question": "What date had a record of 15-14-4?", "context": "CREATE TABLE table_name_79 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_56 WHERE opponent = \"montreal canadiens\"", "question": "What is the fame number when the Montreal Canadiens were the opponent?", "context": "CREATE TABLE table_name_56 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE game = 35", "question": "What is the Score of game 35?", "context": "CREATE TABLE table_name_43 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_69 WHERE college = \"miami (fl)\"", "question": "What is the average oveall pick for players from the college of Miami (FL)?", "context": "CREATE TABLE table_name_69 (overall INTEGER, college VARCHAR)"}, {"answer": "SELECT name FROM table_name_19 WHERE overall < 224 AND round < 6 AND pick = 15 AND college = \"nebraska\"", "question": "Which player was drafted overall from the college of Nebraska in a round under 6, pick of 15, and overall under 224?", "context": "CREATE TABLE table_name_19 (name VARCHAR, college VARCHAR, pick VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_17 WHERE round = 10 AND name = \"terry daniels\"", "question": "What is the lowest overall draft pick number for terry daniels who was picked in round 10?", "context": "CREATE TABLE table_name_17 (overall INTEGER, round VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_11 WHERE college = \"tennessee\" AND overall > 153 AND pick < 14", "question": "What is the sum of the rounds where the draft pick came from the college of tennessee and had an overall pick number bigger than 153 and a pick less than 14?", "context": "CREATE TABLE table_name_11 (round INTEGER, pick VARCHAR, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT position FROM table_name_20 WHERE overall = 133", "question": "What position did the draft pick number play that was overall pick number 133?", "context": "CREATE TABLE table_name_20 (position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_91 WHERE round = 8", "question": "What is the overall pick number for the player who was picked on round 8?", "context": "CREATE TABLE table_name_91 (overall INTEGER, round VARCHAR)"}, {"answer": "SELECT college FROM table_name_87 WHERE overall > 226 AND pick < 12 AND position = \"ot\"", "question": "What college did the player who had the position of OT come from who was pick number less than 12 and a overall pick number bigger than 226?", "context": "CREATE TABLE table_name_87 (college VARCHAR, position VARCHAR, overall VARCHAR, pick VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_3 WHERE position_in_table = \"pre-season\" AND replaced_by = \"thomas thomasberg\"", "question": "WHAT IS THE APPOINTMENT DATE WITH A PRE-SEASON POSITION, AND REPLACED BY THOMAS THOMASBERG?", "context": "CREATE TABLE table_name_3 (date_of_appointment VARCHAR, position_in_table VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_33 WHERE team = \"ac horsens\"", "question": "WHAT IS THE APPOINTMENT DATE FOR AC HORSENS?", "context": "CREATE TABLE table_name_33 (date_of_appointment VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_98 WHERE position_in_table = \"12th\" AND replaced_by = \"ove pedersen\"", "question": "WHAT TEAM HAS 12TH TABLE POSITION AND REPLACED BY OVE PEDERSEN?", "context": "CREATE TABLE table_name_98 (team VARCHAR, position_in_table VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE decision = \"niittymaki\" AND visitor = \"calgary\"", "question": "What was the score when Calgary was visiting team and Niittymaki had the decision?", "context": "CREATE TABLE table_name_78 (score VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE decision = \"biron\" AND visitor = \"philadelphia\" AND date = \"march 1\"", "question": "What is the score when Biron got the decision and Philadelphia was the visitor on March 1?", "context": "CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_78 WHERE home = \"pittsburgh\"", "question": "What is the attendance when Pittsburgh is the home team?", "context": "CREATE TABLE table_name_78 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_35 WHERE date = \"october 10, 1971\" AND week > 4", "question": "What was the Attendance after Week 4 on October 10, 1971?", "context": "CREATE TABLE table_name_35 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_29 WHERE opponent = \"new orleans saints\"", "question": "What was the Attendance in the game against the New Orleans Saints?", "context": "CREATE TABLE table_name_29 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT eagle_riders FROM table_name_27 WHERE japanese_voice_actor = \"katsuji mori\"", "question": "What is the Eagle Riders character voiced by Japanese voice actor Katsuji Mori?", "context": "CREATE TABLE table_name_27 (eagle_riders VARCHAR, japanese_voice_actor VARCHAR)"}, {"answer": "SELECT weapon FROM table_name_48 WHERE battle_of_the_planets = \"jason\"", "question": "Which weapon was used when the Battle of the Planets was Jason?", "context": "CREATE TABLE table_name_48 (weapon VARCHAR, battle_of_the_planets VARCHAR)"}, {"answer": "SELECT voice_actor__adv_tv_sentai_ova_dub_ FROM table_name_22 WHERE gatchaman = \"jun\"", "question": "Who was the voice actor (ADV TV/Sentai OVA dub) for the Gatchaman, jun?", "context": "CREATE TABLE table_name_22 (voice_actor__adv_tv_sentai_ova_dub_ VARCHAR, gatchaman VARCHAR)"}, {"answer": "SELECT japanese_voice_actor FROM table_name_28 WHERE mecha = \"airplane\"", "question": "Which Japanese voice actor had the Mecha of airplane?", "context": "CREATE TABLE table_name_28 (japanese_voice_actor VARCHAR, mecha VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_3 WHERE team_1 = \"drita\"", "question": "Which 1st leg has a Team 1 of drita?", "context": "CREATE TABLE table_name_3 (team_1 VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_76 WHERE team_1 = \"vardar\"", "question": "Which Team 2 has a Team 1 of vardar?", "context": "CREATE TABLE table_name_76 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT years FROM table_name_1 WHERE jersey_number_s_ < 3", "question": "What years was the jersey number(s) smaller than 3?", "context": "CREATE TABLE table_name_1 (years VARCHAR, jersey_number_s_ INTEGER)"}, {"answer": "SELECT position FROM table_name_23 WHERE jersey_number_s_ = 40", "question": "Which position was played by the player wearing jersey number 40?", "context": "CREATE TABLE table_name_23 (position VARCHAR, jersey_number_s_ VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_42 WHERE position = \"rhp\" AND hometown_school = \"university of hawaii\"", "question": "What pick number was the rhp with a hometown/school of university of hawaii?", "context": "CREATE TABLE table_name_42 (pick INTEGER, position VARCHAR, hometown_school VARCHAR)"}, {"answer": "SELECT player FROM table_name_75 WHERE pick = 10", "question": "What player was drafted number 10?", "context": "CREATE TABLE table_name_75 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_96 WHERE hometown_school = \"concordia college\"", "question": "What number pick was the player with the hometown school of concordia college?", "context": "CREATE TABLE table_name_96 (pick VARCHAR, hometown_school VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE game = 66", "question": "What is the date of game 66?", "context": "CREATE TABLE table_name_34 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_34 WHERE date = \"february 21\"", "question": "What is the game on February 21?", "context": "CREATE TABLE table_name_34 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_9 WHERE goal_difference > 2 AND played < 30", "question": "What is the average number of draws that has a played entry of less than 30 and a goal difference greater than 2?", "context": "CREATE TABLE table_name_9 (draws INTEGER, goal_difference VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_91 WHERE wins < 11 AND goals_for > 42 AND points > 22 AND losses = 11", "question": "What is the average number played that has fewer than 11 wins, more than 42 goals, more than 22 points, and 11 losses?", "context": "CREATE TABLE table_name_91 (played INTEGER, losses VARCHAR, points VARCHAR, wins VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(goal_difference) FROM table_name_9 WHERE goals_for < 49 AND position < 8", "question": "What is the total of the goal difference entries for entries with fewer than 49 goals and position smaller than 8?", "context": "CREATE TABLE table_name_9 (goal_difference VARCHAR, goals_for VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_61 WHERE position = 2 AND losses < 9", "question": "What is the lowest played for the entry with position of 2 and fewer than 9 losses?", "context": "CREATE TABLE table_name_61 (played INTEGER, position VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_37 WHERE wins = 12 AND goal_difference < -14", "question": "What is the total number of losses for entries that have 12 wins and a goal difference smaller than -14?", "context": "CREATE TABLE table_name_37 (losses VARCHAR, wins VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT goals_l_c_e_ FROM table_name_18 WHERE nat = \"arg\" AND name = \"pelletieri\"", "question": "What are the goals for Pelletieri in ARG?", "context": "CREATE TABLE table_name_18 (goals_l_c_e_ VARCHAR, nat VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(ends) FROM table_name_3 WHERE app_l_c_e_ = \"51 (44/6/1)\"", "question": "What are the fewest ends with an App(L/C/E) of 51 (44/6/1)?", "context": "CREATE TABLE table_name_3 (ends INTEGER, app_l_c_e_ VARCHAR)"}, {"answer": "SELECT name FROM table_name_98 WHERE nat = \"gre\" AND app_l_c_e_ = \"49 (40/8/1)\"", "question": "Who has a nationality of GRE and an App(L/C/E) of 49 (40/8/1)?", "context": "CREATE TABLE table_name_98 (name VARCHAR, nat VARCHAR, app_l_c_e_ VARCHAR)"}, {"answer": "SELECT goals_l_c_e_ FROM table_name_50 WHERE app_l_c_e_ = \"55 (47/5/3)\"", "question": "What are the gaols(L/C/E) with an App(L/C/E) of 55 (47/5/3)?", "context": "CREATE TABLE table_name_50 (goals_l_c_e_ VARCHAR, app_l_c_e_ VARCHAR)"}, {"answer": "SELECT lifetime_achievement FROM table_name_39 WHERE year = 1998", "question": "who won the lifetime achievement in the year 1998?", "context": "CREATE TABLE table_name_39 (lifetime_achievement VARCHAR, year VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_72 WHERE q1 + q2_time = \"2:45.416\"", "question": "Constructor with total time of 2:45.416", "context": "CREATE TABLE table_name_72 (constructor VARCHAR, q1 VARCHAR, q2_time VARCHAR)"}, {"answer": "SELECT driver FROM table_name_28 WHERE q1_order > 10 AND q1_pos = 18", "question": "Driver at larger than 10 with a Q1 of 18.", "context": "CREATE TABLE table_name_28 (driver VARCHAR, q1_order VARCHAR, q1_pos VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE record = \"55-14\"", "question": "Who was the opponent when the record was 55-14?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_71 WHERE record = \"59-15\"", "question": "What was the game number when record is 59-15?", "context": "CREATE TABLE table_name_71 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE record = \"51-14\"", "question": "What is the date that the record was 51-14?", "context": "CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_79 WHERE college = \"laurier\"", "question": "What is the sum of Pick #, when College is Laurier?", "context": "CREATE TABLE table_name_79 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_86 WHERE pick__number > 34 AND college = \"boise state\"", "question": "What is CFL Team, when Pick # is greater than 34, and when College is Boise State?", "context": "CREATE TABLE table_name_86 (cfl_team VARCHAR, pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_62 WHERE position = \"rec\" AND cfl_team = \"hamilton tiger-cats\"", "question": "What is the lowest Pick #, when Position is REC, and when CFL Team is Hamilton Tiger-Cats?", "context": "CREATE TABLE table_name_62 (pick__number INTEGER, position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_71 WHERE position = \"db\" AND college = \"saint mary's\"", "question": "What is Player, when Position is DB, and when College is Saint Mary's?", "context": "CREATE TABLE table_name_71 (player VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_40 WHERE pick__number < 40 AND college = \"western\"", "question": "What is Position, when Pick # is less than 40, and when College is Western?", "context": "CREATE TABLE table_name_40 (position VARCHAR, pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE time = \"12:00\"", "question": "Which Date has a Time of 12:00?", "context": "CREATE TABLE table_name_80 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_38 WHERE set_1 = \"25\u201320\"", "question": "Set 1 of 25\u201320, what was Set 2?", "context": "CREATE TABLE table_name_38 (set_2 VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT royal_house FROM table_name_94 WHERE name = \"shaokang\"", "question": "What royal house did Shaokang belong to?", "context": "CREATE TABLE table_name_94 (royal_house VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_60 WHERE year = 1976 AND floors < 21", "question": "What is the highest rank of a building erected in 1976 with fewer than 21 floors?", "context": "CREATE TABLE table_name_60 (rank INTEGER, year VARCHAR, floors VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_92 WHERE february > 2 AND game < 55", "question": "What team was the opponent when February shows more than 2, with a game number less than 55?", "context": "CREATE TABLE table_name_92 (opponent VARCHAR, february VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_49 WHERE opponent = \"toronto maple leafs\" AND february < 17", "question": "What is the game number when the Toronto Maple Leafs were the opponent, and the February was less than 17?", "context": "CREATE TABLE table_name_49 (game INTEGER, opponent VARCHAR, february VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_62 WHERE opponent = \"new york islanders\" AND february < 24", "question": "What is the number of the game when the opponent was the New York Islanders, and a February less than 24?", "context": "CREATE TABLE table_name_62 (game INTEGER, opponent VARCHAR, february VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_58 WHERE record = \"26-24-9\"", "question": "What is the lowest game number when the record was 26-24-9?", "context": "CREATE TABLE table_name_58 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT rank FROM table_name_44 WHERE gold < 16 AND bronze > 2 AND silver > 2 AND total = 14", "question": "What rank has less than 16 gold, more than 2 bronze and silver, and a total of 14?", "context": "CREATE TABLE table_name_44 (rank VARCHAR, total VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_92 WHERE rank = \"1\" AND bronze < 2", "question": "What's the silver for rank 1 with less than 2 bronze?", "context": "CREATE TABLE table_name_92 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_13 WHERE bronze < 16 AND silver > 6", "question": "What's the lowest total when there's less than 16 bronze and more than 6 silver?", "context": "CREATE TABLE table_name_13 (total INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_98 WHERE total > 15 AND silver < 16", "question": "What's the lowest gold with a total over 15 and less than 16 silver?", "context": "CREATE TABLE table_name_98 (gold INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_40 WHERE rank = \"7\" AND nation = \"italy\" AND silver < 0", "question": "Which Gold has a Rank of 7, a Nation of italy, and a Silver smaller than 0?", "context": "CREATE TABLE table_name_40 (gold VARCHAR, silver VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_60 WHERE \"total\" > 3 AND rank = \"total\" AND silver > 8", "question": "Which Gold has a Total larger than 3, a Rank of total, and a Silver larger than 8?", "context": "CREATE TABLE table_name_60 (gold INTEGER, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT club_team FROM table_name_55 WHERE pick > 139", "question": "Which Club team has a Pick larger than 139?", "context": "CREATE TABLE table_name_55 (club_team VARCHAR, pick INTEGER)"}, {"answer": "SELECT nationality FROM table_name_9 WHERE pick > 109 AND round < 5", "question": "Which Nationality has a Pick larger than 109, and a Round smaller than 5?", "context": "CREATE TABLE table_name_9 (nationality VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_13 WHERE player = \"lawrence roberts\"", "question": "Which school was Lawrence Roberts from ?", "context": "CREATE TABLE table_name_13 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_60 WHERE player = \"chris robinson\"", "question": "Which school was Chris Robinson from?", "context": "CREATE TABLE table_name_60 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_79 WHERE player = \"chris robinson\"", "question": "What was the position that Chris Robinson played?", "context": "CREATE TABLE table_name_79 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_name_27 WHERE player = \"zach randolph\"", "question": "In which years did Zach Randolph play for the Grizzlies?", "context": "CREATE TABLE table_name_27 (years_for_grizzlies VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_61 WHERE school_club_team = \"western kentucky\"", "question": "Which player played for Western Kentucky?", "context": "CREATE TABLE table_name_61 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE home = \"chicago black hawks\" AND visitor = \"new york rangers\" AND date = \"january 14\"", "question": "What was the score on January 14 when the Chicago Black Hawks were home against the New York Rangers?", "context": "CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT home FROM table_name_56 WHERE visitor = \"chicago black hawks\" AND date = \"february 18\"", "question": "Who was the home team on February 18 that had a visitor of the Chicago Black Hawks?", "context": "CREATE TABLE table_name_56 (home VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT points_diff FROM table_name_73 WHERE points_against = \"123\"", "question": "What is points diff when points against is 123?", "context": "CREATE TABLE table_name_73 (points_diff VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT team FROM table_name_83 WHERE points_against = \"123\"", "question": "Which team has 123 points agaibst the other team?", "context": "CREATE TABLE table_name_83 (team VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_67 WHERE try_diff = \"+23\"", "question": "What is the points against when try diff is +23?", "context": "CREATE TABLE table_name_67 (points_against VARCHAR, try_diff VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_7 WHERE try_diff = \"+23\"", "question": "What is points when try diff is +23?", "context": "CREATE TABLE table_name_7 (points_for VARCHAR, try_diff VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_70 WHERE points_diff = \"+96\"", "question": "What is points sgsinst when points diff is +96?", "context": "CREATE TABLE table_name_70 (points_against VARCHAR, points_diff VARCHAR)"}, {"answer": "SELECT laps AS Led FROM table_name_29 WHERE grid = \"15\"", "question": "How many laps led when the Grid was 15?", "context": "CREATE TABLE table_name_29 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_84 WHERE points = \"32\"", "question": "Name the Time/Retired when the points were 32.", "context": "CREATE TABLE table_name_84 (time_retired VARCHAR, points VARCHAR)"}, {"answer": "SELECT car_no FROM table_name_13 WHERE points = \"24\"", "question": "What car number had 24 points?", "context": "CREATE TABLE table_name_13 (car_no VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_75 WHERE grid = \"1\"", "question": "How many points when the Grid was 1?", "context": "CREATE TABLE table_name_75 (points VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_4 WHERE october = 19", "question": "What is the average game number that was on october 19?", "context": "CREATE TABLE table_name_4 (game INTEGER, october VARCHAR)"}, {"answer": "SELECT SUM(october) FROM table_name_19 WHERE opponent = \"pittsburgh penguins\"", "question": "What is the sum of October, when Opponent is \"Pittsburgh Penguins\"?", "context": "CREATE TABLE table_name_19 (october INTEGER, opponent VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_58 WHERE record = \"2-1-1\" AND october < 21", "question": "What is the sum of Game, when Record is \"2-1-1\", and when October is less than 21?", "context": "CREATE TABLE table_name_58 (game INTEGER, record VARCHAR, october VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_12 WHERE october < 31 AND game > 7", "question": "What is Opponent, when October is less than 31, and when Game is greater than 7?", "context": "CREATE TABLE table_name_12 (opponent VARCHAR, october VARCHAR, game VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_35 WHERE home_team = \"orient\"", "question": "What is the tie number for the home team Orient?", "context": "CREATE TABLE table_name_35 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE away_team = \"chelsea\"", "question": "What is the score for the away team Chelsea?", "context": "CREATE TABLE table_name_35 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_81 WHERE tie_no = \"29\"", "question": "What is the away team for the tie no. 29?", "context": "CREATE TABLE table_name_81 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT coronie FROM table_name_92 WHERE nickerie = \"0.7%\"", "question": "What is the coronie with a 0.7% nickerie?", "context": "CREATE TABLE table_name_92 (coronie VARCHAR, nickerie VARCHAR)"}, {"answer": "SELECT marowijne FROM table_name_2 WHERE saramacca = \"18.8%\"", "question": "What is the marowijne with an 18.8% saramacca?", "context": "CREATE TABLE table_name_2 (marowijne VARCHAR, saramacca VARCHAR)"}, {"answer": "SELECT para FROM table_name_70 WHERE sipaliwini = \"0.1%\"", "question": "What is the para with a 0.1% sipaliwini?", "context": "CREATE TABLE table_name_70 (para VARCHAR, sipaliwini VARCHAR)"}, {"answer": "SELECT religion FROM table_name_65 WHERE para = \"56.5%\"", "question": "What religion has a para of 56.5%?", "context": "CREATE TABLE table_name_65 (religion VARCHAR, para VARCHAR)"}, {"answer": "SELECT suriname FROM table_name_62 WHERE brokopondo = \"16.8%\"", "question": "What is the suriname with a 16.8% brokopondo?", "context": "CREATE TABLE table_name_62 (suriname VARCHAR, brokopondo VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_41 WHERE gold < 0", "question": "What's the rank average when the gold medals are less than 0?", "context": "CREATE TABLE table_name_41 (rank INTEGER, gold INTEGER)"}, {"answer": "SELECT SUM(rank) FROM table_name_84 WHERE nation = \"hungary (hun)\" AND bronze < 0", "question": "What is the total rank of Hungary (HUN) when the bronze medals were less than 0?", "context": "CREATE TABLE table_name_84 (rank INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_54 WHERE silver < 0", "question": "What is the sum of the total number of medals when silver is less than 0?", "context": "CREATE TABLE table_name_54 (total VARCHAR, silver INTEGER)"}, {"answer": "SELECT born_died FROM table_name_25 WHERE term_start = \"4 december 1941\"", "question": "What is Born-Died, when Term Start is 4 December 1941?", "context": "CREATE TABLE table_name_25 (born_died VARCHAR, term_start VARCHAR)"}, {"answer": "SELECT term_start FROM table_name_38 WHERE name = \"prime ministers 1939 - 1943\"", "question": "What is Term Start, when Name is Prime Ministers 1939 - 1943?", "context": "CREATE TABLE table_name_38 (term_start VARCHAR, name VARCHAR)"}, {"answer": "SELECT born_died FROM table_name_27 WHERE name = \"maliq bushati\"", "question": "What is Born-Died, when Name is Maliq Bushati?", "context": "CREATE TABLE table_name_27 (born_died VARCHAR, name VARCHAR)"}, {"answer": "SELECT term_end FROM table_name_78 WHERE political_party = \"albanian fascist party\" AND term_start = \"12 april 1939\"", "question": "What is Term End, when Political Party is Albanian Fascist Party, and when Term Start is 12 April 1939?", "context": "CREATE TABLE table_name_78 (term_end VARCHAR, political_party VARCHAR, term_start VARCHAR)"}, {"answer": "SELECT term_start FROM table_name_53 WHERE born_died = \"prime ministers 1939 - 1943\"", "question": "What is Term Start, when Born-Died is Prime Ministers 1939 - 1943?", "context": "CREATE TABLE table_name_53 (term_start VARCHAR, born_died VARCHAR)"}, {"answer": "SELECT born_died FROM table_name_60 WHERE term_end = \"19 january 1943\"", "question": "What is Born-Died, when Term End is 19 January 1943?", "context": "CREATE TABLE table_name_60 (born_died VARCHAR, term_end VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE record = \"5\u20134\u20133\"", "question": "What is the Score of the game with a Record of 5\u20134\u20133?", "context": "CREATE TABLE table_name_2 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE date = \"january 23\"", "question": "What is the Score on January 23?", "context": "CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_78 WHERE home = \"montreal canadiens\" AND record = \"6\u20134\u20134\"", "question": "What is the Visitor of the Montreal Canadiens Home game with a Record of 6\u20134\u20134?", "context": "CREATE TABLE table_name_78 (visitor VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE record = \"12\u20137\u20136\"", "question": "What is the Date of the game with a Record of 12\u20137\u20136?", "context": "CREATE TABLE table_name_20 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_38 WHERE home = \"montreal canadiens\" AND date = \"march 23\"", "question": "What is the Record of the Montreal Canadiens Home game on March 23?", "context": "CREATE TABLE table_name_38 (record VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament_location FROM table_name_81 WHERE margin_of_victory = \"1 stroke\" AND purse___$__ = \"1,200,000\"", "question": "What tournament location has 1 stroke as the margin of victory, with 1,200,000 as the purse ($)?", "context": "CREATE TABLE table_name_81 (tournament_location VARCHAR, margin_of_victory VARCHAR, purse___$__ VARCHAR)"}, {"answer": "SELECT tournament_location FROM table_name_43 WHERE country = \"south korea\"", "question": "What tournament location has south korea as the country?", "context": "CREATE TABLE table_name_43 (tournament_location VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(land_area__km\u00b2_) FROM table_name_98 WHERE country = \"switzerland\" AND population_density__pop_per_km\u00b2_ < 188", "question": "What is the land area of Switzerland with a population density fewer than 188 km\u00b2?", "context": "CREATE TABLE table_name_98 (land_area__km\u00b2_ INTEGER, country VARCHAR, population_density__pop_per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT lost FROM table_name_67 WHERE points = \"86\"", "question": "What lost has 86 points?", "context": "CREATE TABLE table_name_67 (lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_82 WHERE tries_against = \"37\"", "question": "With 37 tries against, what is the try bonus?", "context": "CREATE TABLE table_name_82 (try_bonus VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_59 WHERE tries_for = \"41\"", "question": "How many points against when 41 is the tries for?", "context": "CREATE TABLE table_name_59 (points_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_52 WHERE \"lost\" = \"lost\"", "question": "With a lost of lost what was the losing bonus?", "context": "CREATE TABLE table_name_52 (losing_bonus VARCHAR)"}, {"answer": "SELECT points FROM table_name_25 WHERE points_for = \"points for\"", "question": "What points has points for as points for?", "context": "CREATE TABLE table_name_25 (points VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT points FROM table_name_27 WHERE try_bonus = \"5\" AND club = \"barry rfc\"", "question": "What is the points when the club is Barry RFC with a 5 as the try bonus?", "context": "CREATE TABLE table_name_27 (points VARCHAR, try_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_57 WHERE silver > 6 AND rank = \"1\" AND bronze < 61", "question": "What is the sum of Gold, when Silver is greater than 6, when Rank is 1, and when Bronze is less than 61?", "context": "CREATE TABLE table_name_57 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_23 WHERE bronze = 1 AND total < 3", "question": "What is the lowest Silver, when Bronze is 1, and when Total is less than 3?", "context": "CREATE TABLE table_name_23 (silver INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_95 WHERE silver < 107 AND bronze > 42 AND rank = \"3\"", "question": "What is the average Gold, when Silver is less than 107, when Bronze is greater than 42, and when Rank is 3?", "context": "CREATE TABLE table_name_95 (gold INTEGER, rank VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_53 WHERE laps < 28 AND grid < 9 AND rider = \"jeremy mcwilliams\"", "question": "Which manufacturer has more than 28 laps and less than 9 grids with jeremy mcwilliams?", "context": "CREATE TABLE table_name_53 (manufacturer VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_52 WHERE time_retired = \"+1 lap\" AND laps > 27", "question": "What is the grid average with a +1 lap time and more than 27 laps?", "context": "CREATE TABLE table_name_52 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT laps FROM table_name_77 WHERE grid > 17 AND rider = \"tetsuya harada\"", "question": "Which lap has more than 17 grids with tetsuya harada?", "context": "CREATE TABLE table_name_77 (laps VARCHAR, grid VARCHAR, rider VARCHAR)"}, {"answer": "SELECT danish_title FROM table_name_16 WHERE year < 1978 AND director = \"bent christensen\"", "question": "Prior to 1978, what is the Danish of the Film directed by Bent Christensen?", "context": "CREATE TABLE table_name_16 (danish_title VARCHAR, year VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_11 WHERE english_title = \"the olsen gang sees red\"", "question": "Who is the Director of the Olsen Gang Sees Red?", "context": "CREATE TABLE table_name_11 (director VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_40 WHERE director = \"erik clausen\" AND english_title = \"the dark side of the moon\"", "question": "What is the submission Year of the Film The Dark Side of the Moon directed by Erik Clausen?", "context": "CREATE TABLE table_name_40 (year INTEGER, director VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_70 WHERE english_title = \"the art of crying\"", "question": "What is the Year of submission of the Film The Art of Crying?", "context": "CREATE TABLE table_name_70 (year INTEGER, english_title VARCHAR)"}, {"answer": "SELECT home_town FROM table_name_67 WHERE weight = 201", "question": "Which Home Town had the weight of 201?", "context": "CREATE TABLE table_name_67 (home_town VARCHAR, weight VARCHAR)"}, {"answer": "SELECT position FROM table_name_48 WHERE year = \"sophomore\" AND name = \"darnell jackson\"", "question": "What Position did the sophomore Darnell Jackson play?", "context": "CREATE TABLE table_name_48 (position VARCHAR, year VARCHAR, name VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_16 WHERE 1999 = \"\u2014\" AND model = \"seat mii\"", "question": "what kind of 2007 has a 1999 of \u2014, and a Model of seat mii?", "context": "CREATE TABLE table_name_16 (model VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_39 WHERE 2006 = \"126,511\"", "question": "Which 2005 has a 2006 of 126,511?", "context": "CREATE TABLE table_name_39 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_19 WHERE 2003 = \"36,026\"", "question": "Name the 2004 which has a 2003 of 36,026?", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_14 WHERE 2011 = \"191,183\"", "question": "Name the 2007 which has a 2011 of 191,183? Question 4", "context": "CREATE TABLE table_name_14 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_93 WHERE 2002 = \"\u2014\" AND model = \"seat marbella\"", "question": "Name the 2011 which has a 2002 of \u2014, and a Model of seat marbella?", "context": "CREATE TABLE table_name_93 (model VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_33 WHERE 2000 = \"\u2014\" AND 2007 = \"\u2014\" AND 2010 = \"\u2014\"", "question": "Name the 2003 which has a 2000 of \u2014, and a 2007 of \u2014, and a 2010 of \u2014?", "context": "CREATE TABLE table_name_33 (Id VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_63 WHERE nickname = \"dukes\"", "question": "Who is affiliated with the Dukes?", "context": "CREATE TABLE table_name_63 (affiliation VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT school FROM table_name_74 WHERE location = \"radford, va\"", "question": "What school is in Radford, Va?", "context": "CREATE TABLE table_name_74 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_38 WHERE affiliation = \"public\" AND founded > 1838 AND location = \"harrisonburg, va\"", "question": "What school has a public nickname, founded after 1838 in Harrisonburg, Va?", "context": "CREATE TABLE table_name_38 (nickname VARCHAR, location VARCHAR, affiliation VARCHAR, founded VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_21 WHERE name = \"mike flater\"", "question": "Lowest pick for mike flater?", "context": "CREATE TABLE table_name_21 (pick INTEGER, name VARCHAR)"}, {"answer": "SELECT home FROM table_name_57 WHERE points = 23 AND date = \"january 2\"", "question": "Who was the home team on January 2 with 23 points?", "context": "CREATE TABLE table_name_57 (home VARCHAR, points VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_56 WHERE visitor = \"st. louis\"", "question": "What is the record when St. Louis is the visitor?", "context": "CREATE TABLE table_name_56 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE date = \"november 1\"", "question": "What was the score for the game on November 1?", "context": "CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_33 WHERE team = \"new jersey\"", "question": "What were the location and attendance for the game against New Jersey?", "context": "CREATE TABLE table_name_33 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_86 WHERE 2009 = \"grand slam tournaments\"", "question": "Where were the 2009 and 2011 Grand Slam Tournaments?", "context": "CREATE TABLE table_name_86 (Id VARCHAR)"}, {"answer": "SELECT second_vice_president FROM table_name_74 WHERE third_vice_president = \"gen. juan alonso\" AND inaugurated = \"15 march 1940\"", "question": "What is Second Vice President, when Third Vice President is \"Gen. Juan Alonso\", and when Inaugurated is \"15 March 1940\"?", "context": "CREATE TABLE table_name_74 (second_vice_president VARCHAR, third_vice_president VARCHAR, inaugurated VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_1 WHERE inaugurated = \"15 march 1930\"", "question": "What is Left Office, when Inaugurate is \"15 March 1930\"?", "context": "CREATE TABLE table_name_1 (left_office VARCHAR, inaugurated VARCHAR)"}, {"answer": "SELECT second_vice_president FROM table_name_85 WHERE inaugurated = \"26 march 1928\"", "question": "What is Second Vice President, when Inaugurated is \"26 March 1928\"?", "context": "CREATE TABLE table_name_85 (second_vice_president VARCHAR, inaugurated VARCHAR)"}, {"answer": "SELECT second_vice_president FROM table_name_49 WHERE inaugurated = \"15 march 1935\"", "question": "What is Second Vice President, when Inaugurated is \"15 March 1935\"?", "context": "CREATE TABLE table_name_49 (second_vice_president VARCHAR, inaugurated VARCHAR)"}, {"answer": "SELECT third_vice_president FROM table_name_38 WHERE inaugurated = \"15 march 1934\"", "question": "What is Third Vice President, when Inaugurated is \"15 March 1934\"?", "context": "CREATE TABLE table_name_38 (third_vice_president VARCHAR, inaugurated VARCHAR)"}, {"answer": "SELECT third_vice_president FROM table_name_16 WHERE second_vice_president = \"baudelio palma\"", "question": "What is Third Vice President, when Second Vice President is \"Baudelio Palma\"?", "context": "CREATE TABLE table_name_16 (third_vice_president VARCHAR, second_vice_president VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE date = \"july 18\"", "question": "What was the score of the game from July 18?", "context": "CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_25 WHERE week = 9", "question": "What was the Attendance on Week 9?", "context": "CREATE TABLE table_name_25 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_49 WHERE result = \"w 13\u20130\"", "question": "What is the Opponent of the game with a Result of w 13\u20130?", "context": "CREATE TABLE table_name_49 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE january < 4", "question": "What was the score in January that was less than 4?", "context": "CREATE TABLE table_name_92 (score VARCHAR, january INTEGER)"}, {"answer": "SELECT date FROM table_name_55 WHERE margin_of_victory = \"playoff\" AND runner_s__up = \"yueh-chyn huang\"", "question": "Which date was the event that Yani won in a playoff over Yueh-Chyn Huang?", "context": "CREATE TABLE table_name_55 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT latitude FROM table_name_7 WHERE longitude = \"147.1w\"", "question": "What is the latitude of the point with a longitude of 147.1w?", "context": "CREATE TABLE table_name_7 (latitude VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT isbn_uk FROM table_name_38 WHERE author = \"dave martin\" AND isbn_us = \"n/a\"", "question": "What is ISBN UK, when Author is \"Dave Martin\", and when ISBN US is \"N/A\"?", "context": "CREATE TABLE table_name_38 (isbn_uk VARCHAR, author VARCHAR, isbn_us VARCHAR)"}, {"answer": "SELECT isbn_us FROM table_name_72 WHERE title = \"crisis in space\"", "question": "What is ISBN US, when Title is \"Crisis In Space\"?", "context": "CREATE TABLE table_name_72 (isbn_us VARCHAR, title VARCHAR)"}, {"answer": "SELECT author FROM table_name_1 WHERE tv_companions_featured = \"peri brown\" AND title = \"race against time\"", "question": "What is Author, when TV Companions Featured is \"Peri Brown\", and when Title is \"Race Against Time\"?", "context": "CREATE TABLE table_name_1 (author VARCHAR, tv_companions_featured VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_35 WHERE tv_companions_featured = \"k-9\"", "question": "What is Title, when TV Companions Featured is \"K-9\"?", "context": "CREATE TABLE table_name_35 (title VARCHAR, tv_companions_featured VARCHAR)"}, {"answer": "SELECT isbn_us FROM table_name_55 WHERE title = \"mission to venus\"", "question": "What is ISBN US, when Title is \"Mission To Venus\"?", "context": "CREATE TABLE table_name_55 (isbn_us VARCHAR, title VARCHAR)"}, {"answer": "SELECT tv_companions_featured FROM table_name_95 WHERE author = \"william emms\"", "question": "What is TV Companions Featured, when Author is \"William Emms\"?", "context": "CREATE TABLE table_name_95 (tv_companions_featured VARCHAR, author VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE result = \"2\u20132\" AND venue = \"h\"", "question": "Which Date has a Result of 2\u20132, and a Venue of H?", "context": "CREATE TABLE table_name_3 (date VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT player FROM table_name_5 WHERE to_par > 7 AND total = 298", "question": "Which player had a to par score larger than 7 and a total score of 298?", "context": "CREATE TABLE table_name_5 (player VARCHAR, to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT location FROM table_name_57 WHERE res = \"win\" AND event = \"superbrawl 16\"", "question": "In which location did he win the Superbrawl 16 event?", "context": "CREATE TABLE table_name_57 (location VARCHAR, res VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE method = \"technical submission (forearm choke)\"", "question": "What was his record when the method was technical submission (forearm choke)?", "context": "CREATE TABLE table_name_57 (record VARCHAR, method VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_1 WHERE round = \"2\" AND event = \"ufc 49\"", "question": "Who was the opponent in round 2 of the UFC 49 event?", "context": "CREATE TABLE table_name_1 (opponent VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT round FROM table_name_26 WHERE opponent = \"joe stevenson\"", "question": "What was the round when he fought Joe Stevenson?", "context": "CREATE TABLE table_name_26 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE score = \"94-74 w\"", "question": "On which date was the score 94-74 w?", "context": "CREATE TABLE table_name_70 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_47 WHERE opponent = \"at chicago bulls\"", "question": "When they played at Chicago Bulls, what was the Location/Attendance?", "context": "CREATE TABLE table_name_47 (location_attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_98 WHERE game = \"44\"", "question": "Who was the opponent in Game 44?", "context": "CREATE TABLE table_name_98 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE location_attendance = \"delta center\" AND record = \"27-13\"", "question": "Who was the opponent when they played at Delta Center with a record of 27-13?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE game = \"41\"", "question": "What was the date for Game 41?", "context": "CREATE TABLE table_name_33 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT opposing_team FROM table_name_97 WHERE against = 3 AND date = \"11 february 1950\"", "question": "Which Opposing Team has an Against of 3, and a Date of 11 february 1950?", "context": "CREATE TABLE table_name_97 (opposing_team VARCHAR, against VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_79 WHERE opposing_team = \"manchester united\" AND round = \"5th round replay\"", "question": "Which Venue has an Opposing Team of manchester united, and a Round of 5th round replay?", "context": "CREATE TABLE table_name_79 (venue VARCHAR, opposing_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_49 WHERE date = \"28 january 1950\"", "question": "Which Against has a Date of 28 january 1950?", "context": "CREATE TABLE table_name_49 (against INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_28 WHERE result = \"3rd\" AND venue = \"edinburgh, scotland\"", "question": "What is the total number of years wehre anna thompson had a 3rd place result at edinburgh, scotland?", "context": "CREATE TABLE table_name_28 (year VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT year FROM table_name_85 WHERE result = \"7th\"", "question": "What year did anna thompson have a 7th place result?", "context": "CREATE TABLE table_name_85 (year VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_22 WHERE tournament = \"world cross country championships\" AND venue = \"st etienne, france\" AND extra = \"team competition\" AND result = \"8th\"", "question": "What is the average year that anna thompson had an 8th place result in team competition at the world cross country championships in st etienne, france with", "context": "CREATE TABLE table_name_22 (year INTEGER, result VARCHAR, extra VARCHAR, tournament VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(total_matches) FROM table_name_4 WHERE points_won > 1.5 AND year = \"2002\" AND points__percentage < 50", "question": "What is the total matches in 2002 where points won is larger than 1.5 and the points % is smaller than 50?", "context": "CREATE TABLE table_name_4 (total_matches INTEGER, points__percentage VARCHAR, points_won VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(loss) FROM table_name_18 WHERE avg_g = 89.9", "question": "WHAT IS THE LOSS WITH AN AVERAGE OF 89.9?", "context": "CREATE TABLE table_name_18 (loss INTEGER, avg_g VARCHAR)"}, {"answer": "SELECT COUNT(loss) FROM table_name_15 WHERE long < 24 AND gain > 116", "question": "WHAT IS THE NUMBER OF LOSSES WITH A LONG SMALLER THAN 24, AND GAIN BIGGER THAN 116?", "context": "CREATE TABLE table_name_15 (loss VARCHAR, long VARCHAR, gain VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_72 WHERE opponent = \"kevin asplund\"", "question": "How many rounds did Brett go against Kevin Asplund?", "context": "CREATE TABLE table_name_72 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_84 WHERE event = \"strikeforce: shamrock vs. diaz\"", "question": "How many rounds did Brett go for the Strikeforce: Shamrock vs. Diaz match?", "context": "CREATE TABLE table_name_84 (round VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_36 WHERE record = \"22-10\"", "question": "Which Opponent has a Record of 22-10?", "context": "CREATE TABLE table_name_36 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE opponent = \"@ seattle\"", "question": "Which Score has an Opponent of @ seattle?", "context": "CREATE TABLE table_name_71 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_53 WHERE result = \"loss\" AND opponent = \"@ la clippers\"", "question": "Which Record has a Result of loss, and an Opponent of @ la clippers?", "context": "CREATE TABLE table_name_53 (record VARCHAR, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE opponent = \"@ la lakers\" AND record = \"8-6\"", "question": "Which Score has an Opponent of @ la lakers, and a Record of 8-6?", "context": "CREATE TABLE table_name_84 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE result = \"win\" AND date = \"march 17\"", "question": "Which Opponent has a Result of win, and a Date of march 17?", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE date = \"may 4\"", "question": "Which Score has a Date of may 4?", "context": "CREATE TABLE table_name_60 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(pd_per_game) FROM table_name_49 WHERE rank < 4 AND winning__percentage = \"78.6%\" AND streak = \"w1\" AND pa_per_game < 81.5", "question": "Which PD per game has a Rank smaller than 4, a Winning % of 78.6%, a Streak of w1, and a PA per game smaller than 81.5?", "context": "CREATE TABLE table_name_49 (pd_per_game INTEGER, pa_per_game VARCHAR, streak VARCHAR, rank VARCHAR, winning__percentage VARCHAR)"}, {"answer": "SELECT AVG(loss) FROM table_name_80 WHERE last_5 = \"4-1\" AND streak = \"w2\" AND pa_per_game < 88.43", "question": "Which Loss has a Last 5 of 4-1, a Streak of w2, and a PA per game smaller than 88.43?", "context": "CREATE TABLE table_name_80 (loss INTEGER, pa_per_game VARCHAR, last_5 VARCHAR, streak VARCHAR)"}, {"answer": "SELECT last_5 FROM table_name_31 WHERE rank = 7", "question": "Which Last 5 has a Rank of 7?", "context": "CREATE TABLE table_name_31 (last_5 VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_97 WHERE pd_per_game > 6.28 AND loss < 4", "question": "Which Played has a PD per game larger than 6.28, and a Loss smaller than 4?", "context": "CREATE TABLE table_name_97 (played INTEGER, pd_per_game VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MIN(pf_per_game) FROM table_name_22 WHERE rank = 5", "question": "Which PF per game has a Rank of 5?", "context": "CREATE TABLE table_name_22 (pf_per_game INTEGER, rank VARCHAR)"}, {"answer": "SELECT record FROM table_name_32 WHERE round = \"3\"", "question": "What was the score in Round 3?", "context": "CREATE TABLE table_name_32 (record VARCHAR, round VARCHAR)"}, {"answer": "SELECT record FROM table_name_36 WHERE opponent = \"matt serra\"", "question": "What was the record for opponent Matt Serra?", "context": "CREATE TABLE table_name_36 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_9 WHERE round = \"1\" AND opponent = \"lance wipf\"", "question": "What was the event for round 1 against Lance Wipf?", "context": "CREATE TABLE table_name_9 (event VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(area__km\u00b2_) FROM table_name_13 WHERE population__2007_ = 6 OFFSET 176", "question": "What is the total number of Area (km\u00b2), when Population (2007) is 6,176?", "context": "CREATE TABLE table_name_13 (area__km\u00b2_ VARCHAR, population__2007_ VARCHAR)"}, {"answer": "SELECT laps FROM table_name_17 WHERE car_no = \"23\"", "question": "How many laps did car 23 do?", "context": "CREATE TABLE table_name_17 (laps VARCHAR, car_no VARCHAR)"}, {"answer": "SELECT laps FROM table_name_79 WHERE fin_pos = \"17\"", "question": "How many laps did the car do that had a final position of 17?", "context": "CREATE TABLE table_name_79 (laps VARCHAR, fin_pos VARCHAR)"}, {"answer": "SELECT grid FROM table_name_84 WHERE team = \"racing professionals\"", "question": "What grid did the team racing professionals race on?", "context": "CREATE TABLE table_name_84 (grid VARCHAR, team VARCHAR)"}, {"answer": "SELECT car_no FROM table_name_43 WHERE time_retired = \"+0.3844\"", "question": "What car number had a race time of +0.3844?", "context": "CREATE TABLE table_name_43 (car_no VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT points FROM table_name_20 WHERE time_retired = \"collision\" AND car_no = \"10\"", "question": "How many points were scored by car number 10 that ended with a collision?", "context": "CREATE TABLE table_name_20 (points VARCHAR, time_retired VARCHAR, car_no VARCHAR)"}, {"answer": "SELECT driver FROM table_name_19 WHERE fin_pos = \"14\"", "question": "Who was the driver who had a final position of 14?", "context": "CREATE TABLE table_name_19 (driver VARCHAR, fin_pos VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_99 WHERE player = \"justin leonard\"", "question": "what is the money ($) for player justin leonard?", "context": "CREATE TABLE table_name_99 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_34 WHERE score = 76 - 69 - 71 - 70 = 286", "question": "what is the place when the score is 76-69-71-70=286?", "context": "CREATE TABLE table_name_34 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_13 WHERE player = \"costantino rocca\"", "question": "what is the place for costantino rocca?", "context": "CREATE TABLE table_name_13 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_22 WHERE player = \"bernhard langer\"", "question": "what is the highest money ($) for bernhard langer?", "context": "CREATE TABLE table_name_22 (money___ INTEGER, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE report = \"fifa\" AND date = \"october 13, 2007\"", "question": "What is the score of the FIFA report on October 13, 2007?", "context": "CREATE TABLE table_name_97 (score VARCHAR, report VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_31 WHERE report = \"eaff\" AND date = \"june 24, 2007\"", "question": "What venue has a EAFF report on June 24, 2007?", "context": "CREATE TABLE table_name_31 (venue VARCHAR, report VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE date = \"october 13, 2007\"", "question": "What is the venue on October 13, 2007?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT site FROM table_name_59 WHERE result = \"w13-7\"", "question": "At what Site was the Result W13-7?", "context": "CREATE TABLE table_name_59 (site VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_88 WHERE date = \"11/09/1946\"", "question": "What was the Attendance on 11/09/1946?", "context": "CREATE TABLE table_name_88 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT site FROM table_name_20 WHERE attendance = \"45,000\"", "question": "What Site had an Attendance of 45,000?", "context": "CREATE TABLE table_name_20 (site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_84 WHERE date = \"11/02/1946\"", "question": "What was the Result on 11/02/1946?", "context": "CREATE TABLE table_name_84 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT mark FROM table_name_51 WHERE points > 813 AND country = \"united states\" AND react > 0.152", "question": "What mark has over 813 points in the United States, and a 0.152 react?", "context": "CREATE TABLE table_name_51 (mark VARCHAR, react VARCHAR, points VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_79 WHERE year_s__won = \"1968 , 1971\" AND to_par < 11", "question": "What is the lowest Total, when Year(s) Won is \"1968 , 1971\", and when To Par is less than 11?", "context": "CREATE TABLE table_name_79 (total INTEGER, year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MIN(to_par) FROM table_name_76 WHERE player = \"johnny miller\"", "question": "What is the lowest To Par, when Player is \"Johnny Miller\"?", "context": "CREATE TABLE table_name_76 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE total > 148 AND to_par = 12", "question": "What is Player, when Total is greater than 148, and when To Par is \"12\"?", "context": "CREATE TABLE table_name_83 (player VARCHAR, total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT SUM(to_par) FROM table_name_35 WHERE year_s__won = \"1978 , 1985\"", "question": "What is the sum of To Par, when Year(s) Won is \"1978 , 1985\"?", "context": "CREATE TABLE table_name_35 (to_par INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_99 WHERE year_s__won = \"1968 , 1971\"", "question": "What is To Par, when Year(s) Won is \"1968 , 1971\"?", "context": "CREATE TABLE table_name_99 (to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT points_difference FROM table_name_20 WHERE points_against = \"786\"", "question": "Which Points difference has Points against of 786?", "context": "CREATE TABLE table_name_20 (points_difference VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT played FROM table_name_50 WHERE points_difference = \"+261\"", "question": "Which Played has a Points difference of +261?", "context": "CREATE TABLE table_name_50 (played VARCHAR, points_difference VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_9 WHERE lost = \"13\" AND points_for = \"671\"", "question": "Which Points against has a Lost of 13, and Points for of 671?", "context": "CREATE TABLE table_name_9 (points_against VARCHAR, lost VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT points_difference FROM table_name_23 WHERE played = \"32\" AND points_for = \"840\"", "question": "Which Points difference has Played of 32, and Points for of 840?", "context": "CREATE TABLE table_name_23 (points_difference VARCHAR, played VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_2 WHERE points_for = \"782\"", "question": "Which Drawn has Points for of 782?", "context": "CREATE TABLE table_name_2 (drawn VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT lost FROM table_name_33 WHERE \"club\" = \"club\"", "question": "Which Lost has a Club of club?", "context": "CREATE TABLE table_name_33 (lost VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE date = \"january 29\"", "question": "Can you tell me the Record that has the Date of january 29?", "context": "CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_67 WHERE visitor = \"vancouver\"", "question": "Can you tell me the Record that has the Visitor of vancouver?", "context": "CREATE TABLE table_name_67 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE opponent_in_final = \"john mcenroe\"", "question": "What date has the opponent competing in the final of john mcenroe?", "context": "CREATE TABLE table_name_94 (date VARCHAR, opponent_in_final VARCHAR)"}, {"answer": "SELECT location FROM table_name_96 WHERE opponent = \"ny rangers\" AND time = \"7:00 pm\"", "question": "Where did the Lightning play the NY Rangers at 7:00 pm?", "context": "CREATE TABLE table_name_96 (location VARCHAR, opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE location = \"mellon arena\"", "question": "Who did the Lightning play at the Mellon Arena?", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT result FROM table_name_16 WHERE time = \"7:00 pm\"", "question": "What was the final score for the game played at 7:00 pm?", "context": "CREATE TABLE table_name_16 (result VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_64 WHERE result = \"4-1 w\"", "question": "Where was the game which ended in a 4-1 w?", "context": "CREATE TABLE table_name_64 (location VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE time = \"7:00 pm\"", "question": "When was a game played at 7:00 pm?", "context": "CREATE TABLE table_name_65 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT top_speed FROM table_name_69 WHERE model_name = \"d14/4 supreme d14/4 sports & bushman\"", "question": "Which Top Speed has a Model Name of d14/4 supreme d14/4 sports & bushman?", "context": "CREATE TABLE table_name_69 (top_speed VARCHAR, model_name VARCHAR)"}, {"answer": "SELECT electrics FROM table_name_28 WHERE engine = \"175cc, bhp (kw)\" AND model_name = \"d10 sports & bushman\"", "question": "Which Electrics has an Engine of 175cc, bhp (kw), and a Model Name of d10 sports & bushman?", "context": "CREATE TABLE table_name_28 (electrics VARCHAR, engine VARCHAR, model_name VARCHAR)"}, {"answer": "SELECT country FROM table_name_72 WHERE player = \"p\u00e1draig harrington\"", "question": "Who does p\u00e1draig harrington play for?", "context": "CREATE TABLE table_name_72 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_77 WHERE club = \"seongnam ilhwa chunma\"", "question": "Which stadium has Seongnam Ilhwa Chunma?", "context": "CREATE TABLE table_name_77 (stadium VARCHAR, club VARCHAR)"}, {"answer": "SELECT city FROM table_name_2 WHERE stadium = \"gwang-yang stadium\"", "question": "What city is Gwang-Yang stadium in?", "context": "CREATE TABLE table_name_2 (city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_65 WHERE club = \"fc seoul\"", "question": "Which stadium has FC Seoul?", "context": "CREATE TABLE table_name_65 (stadium VARCHAR, club VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_56 WHERE city = \"seoul\"", "question": "What stadium is in Seoul?", "context": "CREATE TABLE table_name_56 (stadium VARCHAR, city VARCHAR)"}, {"answer": "SELECT 1993 FROM table_name_68 WHERE tournament = \"french open\"", "question": "What is the 1993 value of the French open?", "context": "CREATE TABLE table_name_68 (tournament VARCHAR)"}, {"answer": "SELECT 1990 FROM table_name_87 WHERE 1995 = \"24\"", "question": "What is the 1990 value with a 24 in 1995?", "context": "CREATE TABLE table_name_87 (Id VARCHAR)"}, {"answer": "SELECT 1993 FROM table_name_75 WHERE 1991 = \"1r\" AND 1990 = \"sf\"", "question": "What is the 1993 value with a 1r in 1991 and sf in 1990?", "context": "CREATE TABLE table_name_75 (Id VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_42 WHERE 1996 = \"2r\" AND 1993 = \"a\" AND 1991 = \"2r\"", "question": "What is the 1994 value with a 2r in 1996, A in 1993, and 2r in 1991?", "context": "CREATE TABLE table_name_42 (Id VARCHAR)"}, {"answer": "SELECT 1993 FROM table_name_59 WHERE 1994 = \"atp masters series\"", "question": "What is the 1993 value of the 1994 atp masters series?", "context": "CREATE TABLE table_name_59 (Id VARCHAR)"}, {"answer": "SELECT 1993 FROM table_name_15 WHERE 1996 = \"atp masters series\"", "question": "What is the 1993 value of the 1996 atp masters series?", "context": "CREATE TABLE table_name_15 (Id VARCHAR)"}, {"answer": "SELECT team FROM table_name_29 WHERE location_attendance = \"staples center 18,997\" AND series = \"1\u20130\"", "question": "Which Team has a Location Attendance of staples center 18,997, and a Series of 1\u20130?", "context": "CREATE TABLE table_name_29 (team VARCHAR, location_attendance VARCHAR, series VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_80 WHERE high_rebounds = \"lamar odom (15)\" AND date = \"april 27\"", "question": "Which High points have High rebounds of lamar odom (15), and a Date of april 27?", "context": "CREATE TABLE table_name_80 (high_points VARCHAR, high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE high_rebounds = \"pau gasol (9)\"", "question": "Which Date has High rebounds of pau gasol (9)?", "context": "CREATE TABLE table_name_42 (date VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE game = 2", "question": "What was the score of game 2?", "context": "CREATE TABLE table_name_5 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_57 WHERE player = \"steve elkington\"", "question": "What was steve elkington's to par?", "context": "CREATE TABLE table_name_57 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT season AS premiere FROM table_name_33 WHERE average_series_rating = \"1.85 million viewers\"", "question": "Which show has a season premiere with a Average series rating of 1.85 million viewers?", "context": "CREATE TABLE table_name_33 (season VARCHAR, average_series_rating VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_name_7 WHERE nickname = \"bruins\"", "question": "What is the most recent year founded that has a nickname of bruins?", "context": "CREATE TABLE table_name_7 (founded INTEGER, nickname VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_name_81 WHERE enrollment = 42 OFFSET 708", "question": "What is the most recent year founded with an enrollment of 42,708?", "context": "CREATE TABLE table_name_81 (founded INTEGER, enrollment VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE home = \"new york rangers\" AND record = \"8\u201327\u20135\"", "question": "What is the Score of the game with the New York Rangers Home team with a Record of 8\u201327\u20135?", "context": "CREATE TABLE table_name_48 (score VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE home = \"detroit red wings\" AND record = \"10\u201341\u20136\"", "question": "On what Date was the Home team Detroit Red Wings with a Record of 10\u201341\u20136?", "context": "CREATE TABLE table_name_61 (date VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_98 WHERE record = \"11\u201349\u20137\"", "question": "What is the Visitor in the game with a Record of 11\u201349\u20137?", "context": "CREATE TABLE table_name_98 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_28 WHERE home = \"chicago black hawks\" AND visitor = \"new york rangers\" AND score = \"3\u20132\"", "question": "What is the Record of the Chicago Black Hawks Home game with the New York Rangers and a Score of 3\u20132?", "context": "CREATE TABLE table_name_28 (record VARCHAR, score VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT home FROM table_name_21 WHERE score = \"1\u20132\" AND date = \"october 17\"", "question": "What is the Home team on October 17 with a Score of 1\u20132?", "context": "CREATE TABLE table_name_21 (home VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_74 WHERE visitor = \"detroit red wings\" AND date = \"january 31\"", "question": "What is the Record of the game on January 31 with Visitors Detroit Red Wings?", "context": "CREATE TABLE table_name_74 (record VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_name_35 WHERE date = \"7 february\" AND away_team = \"new zealand breakers\"", "question": "Name the Report of 7 february with an Away team of new zealand breakers?", "context": "CREATE TABLE table_name_35 (report VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE crowd < 4 OFFSET 485", "question": "Which Date has a Crowd smaller than 4,485?", "context": "CREATE TABLE table_name_72 (date VARCHAR, crowd INTEGER)"}, {"answer": "SELECT MIN(crowd) FROM table_name_29 WHERE venue = \"hisense arena\" AND date = \"8 february\"", "question": "Name the lowest Crowd of hisense arena on 8 february?", "context": "CREATE TABLE table_name_29 (crowd INTEGER, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT Box AS score FROM table_name_68 WHERE away_team = \"new zealand breakers\" AND date = \"7 february\"", "question": "Name the Box Score which has an Away team of new zealand breakers on 7 february?", "context": "CREATE TABLE table_name_68 (Box VARCHAR, away_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_42 WHERE venue = \"rio de janeiro, brazil\"", "question": "What is the lowest Year, when Venue is Rio De Janeiro, Brazil?", "context": "CREATE TABLE table_name_42 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT event FROM table_name_59 WHERE year = 2008", "question": "What is Event, when Year is 2008?", "context": "CREATE TABLE table_name_59 (event VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(march) FROM table_name_94 WHERE opponent = \"boston bruins\" AND game < 66", "question": "What is the latest date in March when the opponent was the Boston Bruins and the game number was smaller than 66?", "context": "CREATE TABLE table_name_94 (march INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT method FROM table_name_70 WHERE opponent = \"chris ade\"", "question": "What is the method of the match with chris ade as the opponent?", "context": "CREATE TABLE table_name_70 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(pole) FROM table_name_26 WHERE race < 16 AND flap > 8 AND podium > 11", "question": "What was the pole for a race lower than 16 with a Flap higher than 8 and a podium higher than 11?", "context": "CREATE TABLE table_name_26 (pole INTEGER, podium VARCHAR, race VARCHAR, flap VARCHAR)"}, {"answer": "SELECT COUNT(podium) FROM table_name_91 WHERE race > 14 AND season = \"1996\" AND flap < 9", "question": "How many podiums had a race higher than 14 in 1996 and a Flap lower than 9?", "context": "CREATE TABLE table_name_91 (podium VARCHAR, flap VARCHAR, race VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(race) FROM table_name_64 WHERE podium = 4 AND pole = 5 AND flap > 3", "question": "How many races had 4 podiums, 5 poles and more than 3 Flaps?", "context": "CREATE TABLE table_name_64 (race INTEGER, flap VARCHAR, podium VARCHAR, pole VARCHAR)"}, {"answer": "SELECT MIN(podium) FROM table_name_30 WHERE season = \"2005\" AND pole < 0", "question": "What are the fewest podiums in 2005 with fewer than 0 poles?", "context": "CREATE TABLE table_name_30 (podium INTEGER, season VARCHAR, pole VARCHAR)"}, {"answer": "SELECT player FROM table_name_8 WHERE to_par = \"+9\"", "question": "Which Player has a To par of +9?", "context": "CREATE TABLE table_name_8 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_43 WHERE player = \"raymond floyd\"", "question": "Which years did raymond floyd win?", "context": "CREATE TABLE table_name_43 (year_s__won VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_65 WHERE to_par = \"+9\"", "question": "How much total has a To par of +9?", "context": "CREATE TABLE table_name_65 (total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_12 WHERE country = \"united states\" AND player = \"andy north\"", "question": "Which Total has a Country of united states, and a Player of andy north?", "context": "CREATE TABLE table_name_12 (total INTEGER, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_43 WHERE manufacturer = \"aprilia\" AND time = \"retirement\" AND laps > 5", "question": "What is the highest grid for Aprilia vehicles, laps over 5, and a retirement finish?", "context": "CREATE TABLE table_name_43 (grid INTEGER, laps VARCHAR, manufacturer VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_90 WHERE time = \"+2:11.524\"", "question": "What is the average laps completed by riders with times of +2:11.524?", "context": "CREATE TABLE table_name_90 (laps INTEGER, time VARCHAR)"}, {"answer": "SELECT rider FROM table_name_92 WHERE time = \"+2:11.524\"", "question": "Which rider has a time of +2:11.524?", "context": "CREATE TABLE table_name_92 (rider VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_2 WHERE manufacturer = \"aprilia\" AND laps > 16", "question": "What is the average grid for vehicles manufactured by Aprilia and having run more than 16 laps?", "context": "CREATE TABLE table_name_2 (grid INTEGER, manufacturer VARCHAR, laps VARCHAR)"}, {"answer": "SELECT record FROM table_name_49 WHERE date = \"january 27\"", "question": "What record has January 27 for the date?", "context": "CREATE TABLE table_name_49 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_76 WHERE high_assists = \"brad miller (8)\"", "question": "What team has brad miller (8) as the high assists?", "context": "CREATE TABLE table_name_76 (team VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_93 WHERE team = \"@ detroit\"", "question": "What is the high assists that has @ detroit as the team?", "context": "CREATE TABLE table_name_93 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE winner = \"new york giants\" AND year > 1985 AND result = \"17-14\"", "question": "Which date had a game with the New York Giants as the winner, year over 1985, and a result of 17-14?", "context": "CREATE TABLE table_name_82 (date VARCHAR, result VARCHAR, winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE year < 1988 AND loser = \"philadelphia eagles\" AND location = \"giants stadium\" AND result = \"21-0\"", "question": "Which date had a year under 1988, loser of Philadelphia Eagles, location of Giants Stadium, and a result of 21-0?", "context": "CREATE TABLE table_name_68 (date VARCHAR, result VARCHAR, location VARCHAR, year VARCHAR, loser VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE loser = \"new york giants\" AND result = \"23-17\"", "question": "Which date had a loser of New York Giants and a result of 23-17?", "context": "CREATE TABLE table_name_77 (date VARCHAR, loser VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_43 WHERE nation = \"south korea\" AND gold > 2", "question": "HOW MANY SILVER METALS DOES SOUTH KOREA HAVE WITH 2 GOLD METALS?", "context": "CREATE TABLE table_name_43 (silver INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_46 WHERE silver > 1 AND rank > 1", "question": "WHAT COUNTRY HAS THE HIGHEST BRONZE COUNT, MORE THAN 1 SILVER METAL, AND LESS THAN 1ST PLACE?", "context": "CREATE TABLE table_name_46 (bronze INTEGER, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(runners_up) FROM table_name_30 WHERE champions < 0", "question": "What is the highest Runners-Up, when Champions is less than 0?", "context": "CREATE TABLE table_name_30 (runners_up INTEGER, champions INTEGER)"}, {"answer": "SELECT SUM(runners_up) FROM table_name_2 WHERE champions > 5", "question": "What is the sum of Runners-Up, when Champions is greater than 5?", "context": "CREATE TABLE table_name_2 (runners_up INTEGER, champions INTEGER)"}, {"answer": "SELECT AVG(total) FROM table_name_97 WHERE silver > 0 AND gold > 0", "question": "What is the total medals for nation with more than 0 silvers and more than 0 golds?", "context": "CREATE TABLE table_name_97 (total INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_21 WHERE silver < 1 AND total < 4 AND bronze > 1", "question": "What is the fewest gold medals for a team with fewer than 1 silver, more than 1 bronze and a total less than 4?", "context": "CREATE TABLE table_name_21 (gold INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_10 WHERE silver < 1 AND gold = 4 AND bronze < 0", "question": "What is the smallest rank when there are fewer than 1 silver, 4 golds and less than 0 bronze?", "context": "CREATE TABLE table_name_10 (rank INTEGER, bronze VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_27 WHERE rank < 5 AND silver > 0 AND total = 2", "question": "How many gold medals for a nation with rank less than 5, more than 0 silvers and a total of 2 medals?", "context": "CREATE TABLE table_name_27 (gold INTEGER, total VARCHAR, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_37 WHERE gold > 2 AND bronze > 0", "question": "What is the total for the team with more than 2 golds and more than 0 bronze?", "context": "CREATE TABLE table_name_37 (total INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT rider FROM table_name_59 WHERE time = \"+19.751\"", "question": "Which rider has time of +19.751?", "context": "CREATE TABLE table_name_59 (rider VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_75 WHERE manufacturer = \"aprilia\" AND time = \"+1:36.557\"", "question": "Which manufacturer of aprilia wth time of +1:36.557 has the highest lap?", "context": "CREATE TABLE table_name_75 (laps INTEGER, manufacturer VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_56 WHERE grid = 21", "question": "What is time of manufacturer with grid 21?", "context": "CREATE TABLE table_name_56 (time VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_5 WHERE grid = 2", "question": "What is the total of laps with grid of 2", "context": "CREATE TABLE table_name_5 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_33 WHERE time = \"+0.499\" AND laps > 21", "question": "What is the lowest grid with time of +0.499,when laps are larger than 21?", "context": "CREATE TABLE table_name_33 (grid INTEGER, time VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_86 WHERE manufacturer = \"gilera\" AND time = \"40:19.910\" AND grid > 3", "question": "What is the total laps when manufacturer of gilera has time of 40:19.910 and grid is larger than 3?", "context": "CREATE TABLE table_name_86 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_72 WHERE rank = 14", "question": "What is the time when the rank is 14?", "context": "CREATE TABLE table_name_72 (time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_70 WHERE time = \"3:12.40\"", "question": "what is the rank when the time is 3:12.40?", "context": "CREATE TABLE table_name_70 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_66 WHERE heat > 4", "question": "what is the rank when the heat is more than 4?", "context": "CREATE TABLE table_name_66 (rank INTEGER, heat INTEGER)"}, {"answer": "SELECT nationality FROM table_name_81 WHERE heat < 3 AND time = \"2:35.31\"", "question": "what is the nationality when the heat is less than 3 and the time is 2:35.31?", "context": "CREATE TABLE table_name_81 (nationality VARCHAR, heat VARCHAR, time VARCHAR)"}, {"answer": "SELECT name FROM table_name_64 WHERE heat < 3 AND rank < 18 AND nationality = \"east germany\" AND time = \"2:35.31\"", "question": "what is the name when the heat is less than 3, the rank is less than 18, the nationality is east germany and the time is 2:35.31?", "context": "CREATE TABLE table_name_64 (name VARCHAR, time VARCHAR, nationality VARCHAR, heat VARCHAR, rank VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_44 WHERE away_team = \"tranmere rovers\"", "question": "Which tie number had an away team of the Tranmere Rovers?", "context": "CREATE TABLE table_name_44 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_36 WHERE away_team = \"tranmere rovers\"", "question": "Which tie number had an away team of the Tranmere Rovers?", "context": "CREATE TABLE table_name_36 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE location = \"richfield coliseum\"", "question": "What date did the Boston Celtics play at Richfield Coliseum?", "context": "CREATE TABLE table_name_99 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_16 WHERE score = \"126-108\"", "question": "What game ended with a final score of 126-108?", "context": "CREATE TABLE table_name_16 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_53 WHERE date = \"february 6\"", "question": "What was the highest number of rebounds on February 6?", "context": "CREATE TABLE table_name_53 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(viewers__in_millions_) FROM table_name_27 WHERE finale = \"may 16, 2007\"", "question": "How many people tuned in to the finale on May 16, 2007?", "context": "CREATE TABLE table_name_27 (viewers__in_millions_ VARCHAR, finale VARCHAR)"}, {"answer": "SELECT timeslot FROM table_name_43 WHERE finale = \"may 20, 2003\"", "question": "What time did the season finale air on May 20, 2003?", "context": "CREATE TABLE table_name_43 (timeslot VARCHAR, finale VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_71 WHERE team = \"toronto\"", "question": "What was the total score where Toronto was played?", "context": "CREATE TABLE table_name_71 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT weight_ & _height FROM table_name_43 WHERE player = \"james donaldson\"", "question": "Which Weight & Height has a Player of james donaldson?", "context": "CREATE TABLE table_name_43 (weight_ VARCHAR, _height VARCHAR, player VARCHAR)"}, {"answer": "SELECT weight_ & _height FROM table_name_65 WHERE player = \"michael worrincy\"", "question": "Which Weight & Height has a Player of michael worrincy?", "context": "CREATE TABLE table_name_65 (weight_ VARCHAR, _height VARCHAR, player VARCHAR)"}, {"answer": "SELECT res FROM table_name_94 WHERE round = 1 AND time = \"2:48\"", "question": "What is the result of the match that went to round 1 and only for 2:48?", "context": "CREATE TABLE table_name_94 (res VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_38 WHERE event = \"k-1 mma romanex\"", "question": "The K-1 MMA Romanex event went how many rounds?", "context": "CREATE TABLE table_name_38 (round VARCHAR, event VARCHAR)"}, {"answer": "SELECT res FROM table_name_63 WHERE time = \"2:48\"", "question": "What is the result for the match that was only 2:48 long?", "context": "CREATE TABLE table_name_63 (res VARCHAR, time VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_76 WHERE points_against = \"571\"", "question": "What is Points For, when Points Against is 571?", "context": "CREATE TABLE table_name_76 (points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_63 WHERE lost = \"14\" AND bonus_points = \"12\"", "question": "What is Drawn, when Lost is 14, and when Bonus Points is 12?", "context": "CREATE TABLE table_name_63 (drawn VARCHAR, lost VARCHAR, bonus_points VARCHAR)"}, {"answer": "SELECT points FROM table_name_14 WHERE club = \"maesteg rfc\"", "question": "What is Points, when Club is Maesteg RFC?", "context": "CREATE TABLE table_name_14 (points VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_24 WHERE points = \"60\" AND club = \"bedwas rfc\"", "question": "What is Points, when Points is 60, and when Club is Bedwas RFC?", "context": "CREATE TABLE table_name_24 (points_for VARCHAR, points VARCHAR, club VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_71 WHERE club = \"newport rfc\"", "question": "What is Drawn, when Club is Newport RFC?", "context": "CREATE TABLE table_name_71 (drawn VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_difference FROM table_name_96 WHERE points_against = \"451\"", "question": "What is Points Difference, when Points Against is 451?", "context": "CREATE TABLE table_name_96 (points_difference VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_40 WHERE gold < 0", "question": "Which is the highest silver that has a gold less than 0?", "context": "CREATE TABLE table_name_40 (silver INTEGER, gold INTEGER)"}, {"answer": "SELECT MIN(silver) FROM table_name_76 WHERE rank = 1 AND bronze > 5", "question": "What is the lowest silver that has 1 as the rank, with a bronze greater than 5?", "context": "CREATE TABLE table_name_76 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_55 WHERE rank = 9 AND nation = \"germany\" AND gold < 0", "question": "What is the highest silver that has 9 as the rank, germany as the nation, with a gold less than 0?", "context": "CREATE TABLE table_name_55 (silver INTEGER, gold VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_9 WHERE record = \"41\u201336\"", "question": "What shows for the location and attendance when the record is 41\u201336?", "context": "CREATE TABLE table_name_9 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE record = \"40\u201336\"", "question": "What is the score when the record was 40\u201336?", "context": "CREATE TABLE table_name_65 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT player FROM table_name_17 WHERE pick__number < 61 AND college = \"texas\"", "question": "WHo is the Player got a Pick # smaller than 61, and a College of texas?", "context": "CREATE TABLE table_name_17 (player VARCHAR, pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_59 WHERE round < 3 AND pick__number > 4 AND position = \"wide receiver\"", "question": "Name the College which has a Round smaller than 3, and a Pick # larger than 4, and a Position of wide receiver?", "context": "CREATE TABLE table_name_59 (college VARCHAR, position VARCHAR, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_12 WHERE player = \"mike williams\" AND pick__number > 4", "question": "Which the highest Round has a Player of mike williams, and a Pick # larger than 4?", "context": "CREATE TABLE table_name_12 (round INTEGER, player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_9 WHERE player = \"mike williams\"", "question": "Name the average Pick # of mike williams?", "context": "CREATE TABLE table_name_9 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE visitor = \"buffalo\"", "question": "What date did the red wings play against the visitors, buffalo?", "context": "CREATE TABLE table_name_62 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT decision FROM table_name_33 WHERE home = \"atlanta\"", "question": "Who made the decision when atlanta was the home team?", "context": "CREATE TABLE table_name_33 (decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT decision FROM table_name_81 WHERE home = \"detroit\" AND visitor = \"boston\"", "question": "Who made the decision when detroit was the home team and boston was the visitor?", "context": "CREATE TABLE table_name_81 (decision VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT decision FROM table_name_21 WHERE home = \"toronto\"", "question": "Who made the decision when toronto was the home team?", "context": "CREATE TABLE table_name_21 (decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_32 WHERE name = \"cecil martin\" AND overall < 268", "question": "The player Cecil Martin with an overall less than 268 has what total pick?", "context": "CREATE TABLE table_name_32 (pick INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_38 WHERE pick = 1 AND name = \"cecil martin\"", "question": "With the pick of 1 Cecil Martin has what number as the overall?", "context": "CREATE TABLE table_name_38 (overall VARCHAR, pick VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_76 WHERE overall = 304", "question": "What position does the player play with an overall of 304?", "context": "CREATE TABLE table_name_76 (position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT us_modern_rock FROM table_name_90 WHERE code = \"bad 0003\"", "question": "What is the US modern rock rank of code bad 0003?", "context": "CREATE TABLE table_name_90 (us_modern_rock VARCHAR, code VARCHAR)"}, {"answer": "SELECT format FROM table_name_83 WHERE code = \"9 40231-2 (us only)\"", "question": "What is the format of code 9 40231-2 (us only)?", "context": "CREATE TABLE table_name_83 (format VARCHAR, code VARCHAR)"}, {"answer": "SELECT uk_singles_chart FROM table_name_9 WHERE release_date = \"26 february 1990\"", "question": "What is the UK singles chart rank of the single released on 26 February 1990?", "context": "CREATE TABLE table_name_9 (uk_singles_chart VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT format FROM table_name_98 WHERE code = \"pro-cd-4662\"", "question": "What is the format of code pro-cd-4662?", "context": "CREATE TABLE table_name_98 (format VARCHAR, code VARCHAR)"}, {"answer": "SELECT mongolian FROM table_name_79 WHERE province = \"municipality\"", "question": "Which mongolian has the province of municipality?", "context": "CREATE TABLE table_name_79 (mongolian VARCHAR, province VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_24 WHERE bsu_head_coach = \"bus conner\"", "question": "What is the sum of the years with bus conner as the BSU head coach?", "context": "CREATE TABLE table_name_24 (year INTEGER, bsu_head_coach VARCHAR)"}, {"answer": "SELECT bsu_head_coach FROM table_name_76 WHERE opponent = \"louisville\" AND year > 1994", "question": "Who is the BSU head coach of the tournament after 1994 with louisville as the opponent?", "context": "CREATE TABLE table_name_76 (bsu_head_coach VARCHAR, opponent VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_36 WHERE year = 1994", "question": "What is the result in 1994?", "context": "CREATE TABLE table_name_36 (result VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_2 WHERE year > 1993 AND round = \"first four\"", "question": "What is the result after 1993 of the first four rounds?", "context": "CREATE TABLE table_name_2 (result VARCHAR, year VARCHAR, round VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE bsu_head_coach = \"bobby dye\" AND year < 1994", "question": "Who was the opponent before 1994 with bobby dye as the BSU head coach?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, bsu_head_coach VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_98 WHERE year = 1976", "question": "Who is the opponent in 1976?", "context": "CREATE TABLE table_name_98 (opponent VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE score = \"0-2\" AND opponents = \"bayer leverkusen\"", "question": "What is Date, when Score is \"0-2\", and when Opponents is \"Bayer Leverkusen\"?", "context": "CREATE TABLE table_name_4 (date VARCHAR, score VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT competition FROM table_name_84 WHERE score = \"2-1\" AND date = \"october 22, 2008\"", "question": "What is Competition, when Score is \"2-1\", and when Date is \"October 22, 2008\"?", "context": "CREATE TABLE table_name_84 (competition VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT match_report FROM table_name_92 WHERE venue = \"westfalenstadion , dortmund\"", "question": "What is Match Report, when Venue is \"Westfalenstadion , Dortmund\"?", "context": "CREATE TABLE table_name_92 (match_report VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE venue = \"weserstadion , bremen\"", "question": "What is Date, when Venue is \"Weserstadion , Bremen\"?", "context": "CREATE TABLE table_name_32 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE competition = \"f\" AND opponents = \"fc astoria walldorf\"", "question": "What is Date, when Competition is \"F\", and when Opponents is \"FC Astoria Walldorf\"?", "context": "CREATE TABLE table_name_28 (date VARCHAR, competition VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_58 WHERE name = \"charley taylor\" AND overall > 3", "question": "What is the pick of Charley Taylor, who has an overall greater than 3?", "context": "CREATE TABLE table_name_58 (pick INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT position FROM table_name_68 WHERE overall = 143", "question": "What is the position of the player with a 143 overall?", "context": "CREATE TABLE table_name_68 (position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_79 WHERE position = \"s\" AND college = \"mississippi\" AND overall < 214", "question": "What is the average round of the s position player from the college of Mississippi and has an overall less than 214?", "context": "CREATE TABLE table_name_79 (round INTEGER, overall VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_76 WHERE position = \"rb\" AND college = \"purdue\" AND pick < 3", "question": "What is the total round of the rb player from Purdue with a pick less than 3?", "context": "CREATE TABLE table_name_76 (round VARCHAR, pick VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT category FROM table_name_12 WHERE nominated_work = \"24\"", "question": "Which category has 24 nominated work?", "context": "CREATE TABLE table_name_12 (category VARCHAR, nominated_work VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_3 WHERE bronze = 1 AND total > 1 AND nation = \"croatia\"", "question": "How many Silver medals did the Nation of Croatia receive with a Total medal of more than 1?", "context": "CREATE TABLE table_name_3 (silver INTEGER, nation VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_59 WHERE nation = \"australia\"", "question": "How many Gold medals did Australia receive?", "context": "CREATE TABLE table_name_59 (gold INTEGER, nation VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_65 WHERE silver = 16 AND bronze < 32", "question": "How many Total medals did the country with 16 Silver and less than 32 Bronze receive?", "context": "CREATE TABLE table_name_65 (total INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_9 WHERE rank = \"11\" AND silver < 1", "question": "How many Bronze medals for the Nation with a Rank of 11 and less than 1 Silver?", "context": "CREATE TABLE table_name_9 (bronze INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(episode) AS number FROM table_name_96 WHERE original_airdate = \"march 21, 2010\" AND season < 3", "question": "What is the average Episode Number, when Original Airdate is March 21, 2010, and when Season is less than 3?", "context": "CREATE TABLE table_name_96 (episode INTEGER, original_airdate VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_67 WHERE original_airdate = \"january 24, 1999\" AND year < 1999", "question": "What is the total number of Season(s), when Original Airdate is January 24, 1999, and when Year is less than 1999?", "context": "CREATE TABLE table_name_67 (season VARCHAR, original_airdate VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_17 WHERE result = \"l\" AND record = \"2-6\"", "question": "How many games have a Result of l, and a Record of 2-6?", "context": "CREATE TABLE table_name_17 (game VARCHAR, result VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_14 WHERE opponent = \"green bay packers\"", "question": "How many people attended the green bay packers game?", "context": "CREATE TABLE table_name_14 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_62 WHERE record = \"1-1\"", "question": "How many people attended the game whose score was 1-1?", "context": "CREATE TABLE table_name_62 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE score = \"24-7\" AND record = \"4-10\"", "question": "Which Date has a Score of 24-7, and a Record of 4-10?", "context": "CREATE TABLE table_name_12 (date VARCHAR, score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_76 WHERE position = \"g\" AND overall < 31", "question": "Lowest round for g that was smaller than 31?", "context": "CREATE TABLE table_name_76 (round INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_29 WHERE tournament = \"cincinnati\"", "question": "What is the Semifinalists that has a Tournament of Cincinnati?", "context": "CREATE TABLE table_name_29 (semifinalists VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT aggregate FROM table_name_58 WHERE club = \"crvena zvezda\"", "question": "The Crvena Zvezda club has what aggregate?", "context": "CREATE TABLE table_name_58 (aggregate VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(assists) FROM table_name_85 WHERE goals = 0 AND points > 1 AND pims > 0", "question": "What is the total number of assists of the player with 0 goals, more than 1 points, and more than 0 pims?", "context": "CREATE TABLE table_name_85 (assists VARCHAR, pims VARCHAR, goals VARCHAR, points VARCHAR)"}, {"answer": "SELECT decision FROM table_name_5 WHERE visitor = \"calgary\" AND score = \"2 \u2013 1\" AND series = \"4 \u2013 3\"", "question": "Which Decision has a Visitor of calgary, a Score of 2 \u2013 1, and a Series of 4 \u2013 3?", "context": "CREATE TABLE table_name_5 (decision VARCHAR, series VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_15 WHERE series = \"2 \u2013 1\"", "question": "Which Visitor has a Series of 2 \u2013 1?", "context": "CREATE TABLE table_name_15 (visitor VARCHAR, series VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_72 WHERE home = \"calgary\" AND date = \"april 17\"", "question": "Which Visitor has a Home of calgary, and a Date of april 17?", "context": "CREATE TABLE table_name_72 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_4 WHERE visitor = \"vancouver\" AND score = \"5 \u2013 4\"", "question": "Which Decision has a Visitor of vancouver, and a Score of 5 \u2013 4?", "context": "CREATE TABLE table_name_4 (decision VARCHAR, visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_30 WHERE home = \"vancouver\" AND decision = \"cloutier\"", "question": "Which Visitor has a Home of vancouver, and a Decision of cloutier?", "context": "CREATE TABLE table_name_30 (visitor VARCHAR, home VARCHAR, decision VARCHAR)"}, {"answer": "SELECT decision FROM table_name_42 WHERE series = \"3 \u2013 3\"", "question": "Which Decision has a Series of 3 \u2013 3?", "context": "CREATE TABLE table_name_42 (decision VARCHAR, series VARCHAR)"}, {"answer": "SELECT race_4 FROM table_name_76 WHERE race_1 = \"dsq\"", "question": "What's the value for race 4 when race 1 is dsq?", "context": "CREATE TABLE table_name_76 (race_4 VARCHAR, race_1 VARCHAR)"}, {"answer": "SELECT race_4 FROM table_name_55 WHERE race_3 = \"dns\" AND race_2 = \"27\"", "question": "What's the value for race 4 when race 3 is dns and race 2 is 27?", "context": "CREATE TABLE table_name_55 (race_4 VARCHAR, race_3 VARCHAR, race_2 VARCHAR)"}, {"answer": "SELECT race_4 FROM table_name_61 WHERE driver = \"kevin heffernan\"", "question": "What's the value for race 4 for driver kevin heffernan?", "context": "CREATE TABLE table_name_61 (race_4 VARCHAR, driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE game = 4", "question": "What was the date of game 4?", "context": "CREATE TABLE table_name_92 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_86 WHERE date = \"november 12\"", "question": "Who had the most points in the game on November 12?", "context": "CREATE TABLE table_name_86 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank FROM table_name_34 WHERE player = \"isco alarc\u00f3n\"", "question": "What rank is the team that has a player named Isco Alarc\u00f3n?", "context": "CREATE TABLE table_name_34 (rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_17 WHERE club_s_ = \"valencia\" AND u_17_caps = 20", "question": "What is the rank of Club Valencia with a U-17 Caps of 20?", "context": "CREATE TABLE table_name_17 (rank VARCHAR, club_s_ VARCHAR, u_17_caps VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_76 WHERE high_points = \"t. j. ford (29)\"", "question": "What is High Assists, when High Points is \"T. J. Ford (29)\"?", "context": "CREATE TABLE table_name_76 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_93 WHERE date = \"march 10\"", "question": "What is High Assists, when Date is \"March 10\"?", "context": "CREATE TABLE table_name_93 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_78 WHERE team = \"@ atlanta\"", "question": "What is Record, when Team is \"@ Atlanta\"?", "context": "CREATE TABLE table_name_78 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_69 WHERE location_attendance = \"rose garden 20,020\"", "question": "What is Team, when Location Attendance is \"Rose Garden 20,020\"?", "context": "CREATE TABLE table_name_69 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE high_points = \"danny granger (32)\"", "question": "What is Date, when High Points is \"Danny Granger (32)\"?", "context": "CREATE TABLE table_name_56 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT place FROM table_name_88 WHERE money___$__ = \"20,903\" AND player = \"bob gilder\"", "question": "What is the place when the player is Bob Gilder and the money was $20,903?", "context": "CREATE TABLE table_name_88 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_78 WHERE country = \"united states\" AND player = \"fuzzy zoeller\"", "question": "What is the Place when Fuzzy Zoeller plated in the United States?", "context": "CREATE TABLE table_name_78 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_20 WHERE score = 72 - 67 - 68 - 71 = 278", "question": "What is the To par when the score was 72-67-68-71=278?", "context": "CREATE TABLE table_name_20 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_52 WHERE player = \"steve pate\"", "question": "What is the Place when Steve Pate was the player?", "context": "CREATE TABLE table_name_52 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(diameter__km_) FROM table_name_50 WHERE year_named = 1997 AND longitude = \"212.0e\" AND latitude = \"47.0n\"", "question": "What is the diameter for 1997 when longitude is 212.0e and latitude is 47.0n?", "context": "CREATE TABLE table_name_50 (diameter__km_ INTEGER, latitude VARCHAR, year_named VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT latitude FROM table_name_66 WHERE year_named > 1997 AND longitude = \"152.0e\"", "question": "What's the latitude when the longitude is 152.0e later than 1997?", "context": "CREATE TABLE table_name_66 (latitude VARCHAR, year_named VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT SUM(diameter__km_) FROM table_name_42 WHERE longitude = \"105.0e\" AND year_named < 2003", "question": "What's the diameter when longitude is 105.0e before 2003?", "context": "CREATE TABLE table_name_42 (diameter__km_ INTEGER, longitude VARCHAR, year_named VARCHAR)"}, {"answer": "SELECT AVG(year_named) FROM table_name_16 WHERE name = \"aida-wedo dorsa\" AND diameter__km_ < 450", "question": "What's the average year for the name aida-wedo dorsa with a diameter less than 450?", "context": "CREATE TABLE table_name_16 (year_named INTEGER, name VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT COUNT(diameter__km_) FROM table_name_60 WHERE longitude = \"357.8e\" AND year_named > 1985", "question": "What's the total diameter when longitude is 357.8e later than 1985?", "context": "CREATE TABLE table_name_60 (diameter__km_ VARCHAR, longitude VARCHAR, year_named VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_90 WHERE nominee = \"lesli margherita\"", "question": "In what year was Lesli Margherita nominated?", "context": "CREATE TABLE table_name_90 (year INTEGER, nominee VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_18 WHERE category = \"best theatre choreographer\"", "question": "Who was nominated for Best Theatre Choreographer?", "context": "CREATE TABLE table_name_18 (nominee VARCHAR, category VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_20 WHERE year = \"fr\" AND club = \"brown's gymnastics\"", "question": "What hometown was FR Year, and ha Brown's Gymnastics club?", "context": "CREATE TABLE table_name_20 (hometown VARCHAR, year VARCHAR, club VARCHAR)"}, {"answer": "SELECT year FROM table_name_60 WHERE name = \"asi peko\"", "question": "What year was Asi Peko?", "context": "CREATE TABLE table_name_60 (year VARCHAR, name VARCHAR)"}, {"answer": "SELECT height FROM table_name_96 WHERE club = \"oakville gymnastics club\"", "question": "What is the height for the Oakville Gymnastics Club?", "context": "CREATE TABLE table_name_96 (height VARCHAR, club VARCHAR)"}, {"answer": "SELECT ended FROM table_name_98 WHERE loan_club = \"spartak moscow\"", "question": "when was the loan ended when the loan club is spartak moscow?", "context": "CREATE TABLE table_name_98 (ended VARCHAR, loan_club VARCHAR)"}, {"answer": "SELECT start_source FROM table_name_42 WHERE loan_club = \"fulham\"", "question": "What is the loan start source when the loan club is fulham?", "context": "CREATE TABLE table_name_42 (start_source VARCHAR, loan_club VARCHAR)"}, {"answer": "SELECT started FROM table_name_23 WHERE country = \"eng\" AND loan_club = \"sunderland\" AND end_source = \"south wales echo\"", "question": "When was the loan started when the coutry is eng, the loan club is sunderland and the end source is south wales echo?", "context": "CREATE TABLE table_name_23 (started VARCHAR, end_source VARCHAR, country VARCHAR, loan_club VARCHAR)"}, {"answer": "SELECT ended FROM table_name_37 WHERE country = \"ghana\"", "question": "when was the loan ended when the country is ghana?", "context": "CREATE TABLE table_name_37 (ended VARCHAR, country VARCHAR)"}, {"answer": "SELECT loan_club FROM table_name_28 WHERE start_source = \"bbc sport\" AND started = \"9 february\"", "question": "what is the loan club with the start source is bbc sport and started on 9 february?", "context": "CREATE TABLE table_name_28 (loan_club VARCHAR, start_source VARCHAR, started VARCHAR)"}, {"answer": "SELECT start_source FROM table_name_47 WHERE started = \"2 february\"", "question": "what is the start source when started on 2 february?", "context": "CREATE TABLE table_name_47 (start_source VARCHAR, started VARCHAR)"}, {"answer": "SELECT MIN(finished) FROM table_name_70 WHERE post < 2", "question": "What is the lowest Finished, when Post is less than 2?", "context": "CREATE TABLE table_name_70 (finished INTEGER, post INTEGER)"}, {"answer": "SELECT owner FROM table_name_77 WHERE finished < 15 AND trainer = \"steve asmussen\" AND horse = \"z fortune\"", "question": "What is Owner, when Finished is less than 15, when Trainer is \"Steve Asmussen\", and when Horse is \"Z Fortune\"?", "context": "CREATE TABLE table_name_77 (owner VARCHAR, horse VARCHAR, finished VARCHAR, trainer VARCHAR)"}, {"answer": "SELECT time__behind FROM table_name_44 WHERE jockey = \"jose lezcano\"", "question": "What is the Time/ Behind, when Jockey is \"Jose Lezcano\"?", "context": "CREATE TABLE table_name_44 (time__behind VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_53 WHERE post = 12", "question": "What is Jockey, when Post is 12?", "context": "CREATE TABLE table_name_53 (jockey VARCHAR, post VARCHAR)"}, {"answer": "SELECT COUNT(post) FROM table_name_22 WHERE trainer = \"steve asmussen\" AND time__behind = \"19 \u00bd\"", "question": "What is the total number of Post, when Trainer is \"Steve Asmussen\", and when Time/ Behind is 19 \u00bd?", "context": "CREATE TABLE table_name_22 (post VARCHAR, trainer VARCHAR, time__behind VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_74 WHERE horse = \"eight belles\"", "question": "What is Jockey, when Horse is \"Eight Belles\"?", "context": "CREATE TABLE table_name_74 (jockey VARCHAR, horse VARCHAR)"}, {"answer": "SELECT team_captain FROM table_name_42 WHERE stadium = \"regenboogstadion\"", "question": "Who is the team captain of Regenboogstadion?", "context": "CREATE TABLE table_name_42 (team_captain VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT current_manager FROM table_name_15 WHERE location = \"tubize\"", "question": "Who is the current manager of the team located in tubize?", "context": "CREATE TABLE table_name_15 (current_manager VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_17 WHERE current_manager = \"ariel jacobs\"", "question": "Where is the location of the team with a current manager of Ariel Jacobs?", "context": "CREATE TABLE table_name_17 (location VARCHAR, current_manager VARCHAR)"}, {"answer": "SELECT victory_margin__in_lengths_ FROM table_name_74 WHERE finish = \"1st\" AND jockey = \"kent desormeaux\" AND time = \"1:35.66\"", "question": "What was the victory margin for a finish of 1st with a rider of Kent Desormeaux, with a time of 1:35.66?", "context": "CREATE TABLE table_name_74 (victory_margin__in_lengths_ VARCHAR, time VARCHAR, finish VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT time FROM table_name_79 WHERE race = \"kentucky derby\"", "question": "What was the time of the Kentucky Derby?", "context": "CREATE TABLE table_name_79 (time VARCHAR, race VARCHAR)"}, {"answer": "SELECT finish FROM table_name_32 WHERE race = \"kentucky derby\"", "question": "What was the finish of the Kentucky Derby?", "context": "CREATE TABLE table_name_32 (finish VARCHAR, race VARCHAR)"}, {"answer": "SELECT race FROM table_name_60 WHERE finish = \"1st\" AND track = \"saratoga race course\"", "question": "Which race had a finish of 1st at Saratoga Race Course?", "context": "CREATE TABLE table_name_60 (race VARCHAR, finish VARCHAR, track VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE year = \"1981\"", "question": "Who was the player in 1981?", "context": "CREATE TABLE table_name_67 (player VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_name_67 WHERE year = \"1976\"", "question": "What is the team for 1976?", "context": "CREATE TABLE table_name_67 (team VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_75 WHERE date = \"august 5\"", "question": "What is the opponent for the date of august 5?", "context": "CREATE TABLE table_name_75 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_83 WHERE date = \"august 23\"", "question": "What is the result for the date of august 23?", "context": "CREATE TABLE table_name_83 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_27 WHERE opponent = \"houston oilers\"", "question": "When the opponent is houston oilers what is the result?", "context": "CREATE TABLE table_name_27 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(goals_against) FROM table_name_50 WHERE drawn > 9 AND lost > 15 AND position = 24 AND played < 46", "question": "Which Goals Against has a Drawn larger than 9, a Lost larger than 15, a Position of 24, and a Played smaller than 46?", "context": "CREATE TABLE table_name_50 (goals_against INTEGER, played VARCHAR, position VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(points_2) FROM table_name_35 WHERE drawn = 15 AND position > 20 AND goals_for < 45", "question": "Which Points 2 has Drawn of 15, a Position larger than 20, and a Goals For smaller than 45?", "context": "CREATE TABLE table_name_35 (points_2 INTEGER, goals_for VARCHAR, drawn VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_74 WHERE position > 2 AND lost > 18 AND team = \"matlock town\" AND goals_against > 79", "question": "Which Goals For has a Position larger than 2, a Lost larger than 18, a Team of matlock town, and a Goals Against larger than 79?", "context": "CREATE TABLE table_name_74 (goals_for INTEGER, goals_against VARCHAR, team VARCHAR, position VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(points_2) FROM table_name_64 WHERE goal_average_1 > 1.17 AND goals_against > 48 AND position > 6", "question": "Which Points 2 has a Goal Average 1 larger than 1.17, a Goals Against larger than 48, and a Position larger than 6?", "context": "CREATE TABLE table_name_64 (points_2 INTEGER, position VARCHAR, goal_average_1 VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT 1986 FROM table_name_17 WHERE 1991 = \"a\" AND 1987 = \"a\"", "question": "What is the 1986 value with A in 1991 and A in 1987?", "context": "CREATE TABLE table_name_17 (Id VARCHAR)"}, {"answer": "SELECT 1995 FROM table_name_29 WHERE 1986 = \"a\" AND 1992 = \"2r\"", "question": "What is the 1995 value with A in 1986 and 2r in 1992?", "context": "CREATE TABLE table_name_29 (Id VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_95 WHERE 1990 = \"f\"", "question": "What is the 1989 value with F in 1990?", "context": "CREATE TABLE table_name_95 (Id VARCHAR)"}, {"answer": "SELECT 1987 FROM table_name_45 WHERE 1994 = \"atp masters series\"", "question": "What is the 1987 value of the 1994 atp masters series?", "context": "CREATE TABLE table_name_45 (Id VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_26 WHERE position = \"ls\"", "question": "What is the lowest round that a pick had a position of ls?", "context": "CREATE TABLE table_name_26 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_10 WHERE position = \"ls\" AND overall > 230", "question": "What was the sum of the rounds for the player who had a position of LS and an overall draft pick bigger than 230?", "context": "CREATE TABLE table_name_10 (round INTEGER, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT venue FROM table_name_34 WHERE date = \"march 28, 2008\"", "question": "WHAT IS THE VENUE ON MARCH 28, 2008?", "context": "CREATE TABLE table_name_34 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_65 WHERE date = \"october 8\"", "question": "How many were in Attendance on October 8?", "context": "CREATE TABLE table_name_65 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_73 WHERE date = \"october 8\"", "question": "What is the Location of the Game on October 8?", "context": "CREATE TABLE table_name_73 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT nat FROM table_name_56 WHERE goals > 64", "question": "What is the nationality for the player with over 64 goals?", "context": "CREATE TABLE table_name_56 (nat VARCHAR, goals INTEGER)"}, {"answer": "SELECT score FROM table_name_84 WHERE visitor = \"philadelphia\"", "question": "What was the score of the game where Philadelphia was the visitor?", "context": "CREATE TABLE table_name_84 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT AVG(spectators) FROM table_name_60 WHERE round = \"group h\"", "question": "What are the average spectators from the Group H Round?", "context": "CREATE TABLE table_name_60 (spectators INTEGER, round VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_5 WHERE rider = \"stefan bradl\"", "question": "Can you tell me the Manufacturer that has the Rider of stefan bradl?", "context": "CREATE TABLE table_name_5 (manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_70 WHERE time = \"+15.532\" AND laps > 23", "question": "Can you tell me the highest Grid that has the Time of +15.532, and the Laps larger than 23?", "context": "CREATE TABLE table_name_70 (grid INTEGER, time VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_7 WHERE time = \"+6.355\" AND laps > 23", "question": "Can you tell me the sum of Grid that has the Time of +6.355, and the Laps larger than 23?", "context": "CREATE TABLE table_name_7 (grid INTEGER, time VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time FROM table_name_63 WHERE location = \"savannah, georgia , united states\"", "question": "What is Time, when Location is \"Savannah, Georgia , United States\"?", "context": "CREATE TABLE table_name_63 (time VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_53 WHERE time = \"n/a\" AND location = \"alabama , united states\" AND record = \"1-2-0\"", "question": "What is the total number of Round(s), when Time is \"N/A\", when Location is \"Alabama , United States\", and when Record is \"1-2-0\"?", "context": "CREATE TABLE table_name_53 (round VARCHAR, record VARCHAR, time VARCHAR, location VARCHAR)"}, {"answer": "SELECT retitled_as_same FROM table_name_99 WHERE last_aired > 1982 AND show = \"we got it made\"", "question": "Which Retitled as/Same has a Last Aired larger than 1982, and a Show of we got it made?", "context": "CREATE TABLE table_name_99 (retitled_as_same VARCHAR, last_aired VARCHAR, show VARCHAR)"}, {"answer": "SELECT new_returning_same_network FROM table_name_29 WHERE last_aired = 1982", "question": "Which New/Returning/Same Network has a Last Aired of 1982?", "context": "CREATE TABLE table_name_29 (new_returning_same_network VARCHAR, last_aired VARCHAR)"}, {"answer": "SELECT new_returning_same_network FROM table_name_12 WHERE previous_network = \"nbc\" AND show = \"blockbusters\"", "question": "Which New/Returning/Same Network has a Previous Network of nbc, and a Show of blockbusters?", "context": "CREATE TABLE table_name_12 (new_returning_same_network VARCHAR, previous_network VARCHAR, show VARCHAR)"}, {"answer": "SELECT new_returning_same_network FROM table_name_8 WHERE retitled_as_same = \"same\" AND last_aired > 1984", "question": "Which New/Returning/Same Network has a Retitled as/Same of same, and a Last Aired larger than 1984?", "context": "CREATE TABLE table_name_8 (new_returning_same_network VARCHAR, retitled_as_same VARCHAR, last_aired VARCHAR)"}, {"answer": "SELECT last_aired FROM table_name_57 WHERE retitled_as_same = \"classic concentration\"", "question": "Which Last Aired has a Retitled as/Same of classic concentration?", "context": "CREATE TABLE table_name_57 (last_aired VARCHAR, retitled_as_same VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_25 WHERE name = \"anglia tv trophy\"", "question": "How many rounds had a race name of anglia tv trophy?", "context": "CREATE TABLE table_name_25 (round VARCHAR, name VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_63 WHERE winning_driver = \"eliseo salazar\" AND name = \"international trophy\"", "question": "What circuit was the race named international trophy raced at by the winning driver eliseo salazar?", "context": "CREATE TABLE table_name_63 (circuit VARCHAR, winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_62 WHERE winning_driver = \"emilio de villota\" AND name = \"pace petroleum trophy\"", "question": "What circuit did emilio de villota win on at the pace petroleum trophy?", "context": "CREATE TABLE table_name_62 (circuit VARCHAR, winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_22 WHERE country = \"united states\" AND place = \"t6\" AND score = 70 - 73 - 68 - 73 = 284", "question": "What is the to par of the player from the United States with a t6 place and a score of 70-73-68-73=284?", "context": "CREATE TABLE table_name_22 (to_par VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_7 WHERE to_par = \"+5\" AND country = \"australia\"", "question": "Who is the player from Australia with a to par of +5?", "context": "CREATE TABLE table_name_7 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_76 WHERE score = 69 - 71 - 71 - 73 = 284", "question": "What is the highest amount of money a player with a score of 69-71-71-73=284 has?", "context": "CREATE TABLE table_name_76 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT time FROM table_name_52 WHERE round = 3 AND record = \"9-3\"", "question": "What is the time of the match with 3 rounds and a 9-3 record?", "context": "CREATE TABLE table_name_52 (time VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_44 WHERE res = \"win\" AND round = 1 AND record = \"3-2\"", "question": "What is the method of the match with a win res., 1 round, and a 3-2 record?", "context": "CREATE TABLE table_name_44 (method VARCHAR, record VARCHAR, res VARCHAR, round VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE finish = \"9th\" AND occupation = \"sports agent\"", "question": "Who was the sports agent who finished 9th?", "context": "CREATE TABLE table_name_61 (name VARCHAR, finish VARCHAR, occupation VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_81 WHERE player = \"wes ellis\"", "question": "What is the lowest score that wes ellis got?", "context": "CREATE TABLE table_name_81 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE to_par = \"+1\" AND country = \"united states\"", "question": "What was the score for the player from the United states that was +1 to par?", "context": "CREATE TABLE table_name_64 (score VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_4 WHERE place = \"t10\"", "question": "Who was the player who placed t10?", "context": "CREATE TABLE table_name_4 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_93 WHERE country = \"united states\" AND score < 72 AND place = \"t3\" AND player = \"ed furgol\"", "question": "How far to par did ed furgol from the United States get when he scored less than 72 and was placed at t3?", "context": "CREATE TABLE table_name_93 (to_par VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_36 WHERE team = \"philadelphia\"", "question": "What game was played at Philadelphia?", "context": "CREATE TABLE table_name_36 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT SUM(share) FROM table_name_42 WHERE rating > 1.2 AND rank__timeslot_ = 3 AND viewers__millions_ = 6.07", "question": "What is the sum of share with a rating larger than 1.2, a 3 rank timeslot, and 6.07 million viewers?", "context": "CREATE TABLE table_name_42 (share INTEGER, viewers__millions_ VARCHAR, rating VARCHAR, rank__timeslot_ VARCHAR)"}, {"answer": "SELECT AVG(rank__week_) FROM table_name_53 WHERE rating = 1.2 AND viewers__millions_ < 1.94 AND rank__night_ < 11", "question": "What is the average week rank with 1.2 ratings, less than 1.94 million viewers, and a night rank less than 11?", "context": "CREATE TABLE table_name_53 (rank__week_ INTEGER, rank__night_ VARCHAR, rating VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_94 WHERE college = \"syracuse\" AND pick < 3", "question": "what is the round when the college is syracuse and the pick is less than 3?", "context": "CREATE TABLE table_name_94 (round INTEGER, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_51 WHERE pick > 2 AND overall > 28 AND college = \"nebraska\"", "question": "what is the position when the pick is more than 2, the overall is more than 28 and the college is nebraska?", "context": "CREATE TABLE table_name_51 (position VARCHAR, college VARCHAR, pick VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_33 WHERE college = \"arkansas\" AND overall > 316", "question": "what is the pick when the college is arkansas and the overall is more than 316?", "context": "CREATE TABLE table_name_33 (pick INTEGER, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_92 WHERE pick < 2", "question": "what is the lowest overall when the pick is less than 2?", "context": "CREATE TABLE table_name_92 (overall INTEGER, pick INTEGER)"}, {"answer": "SELECT SUM(round) FROM table_name_68 WHERE college = \"north carolina\" AND overall > 124", "question": "what is the round when the college is north carolina and the overall is more than 124?", "context": "CREATE TABLE table_name_68 (round INTEGER, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT week FROM table_name_98 WHERE date = \"october 28, 2001\"", "question": "October 28, 2001 was what week of the season?", "context": "CREATE TABLE table_name_98 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_1 WHERE week = 11", "question": "What was the result of week 11?", "context": "CREATE TABLE table_name_1 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE week > 16", "question": "What was the date of a week larger than 16?", "context": "CREATE TABLE table_name_55 (date VARCHAR, week INTEGER)"}, {"answer": "SELECT COUNT(week) FROM table_name_52 WHERE date = \"november 25, 2001\"", "question": "November 25, 2001 was what week of the season?", "context": "CREATE TABLE table_name_52 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT wheels FROM table_name_31 WHERE built < 1958 AND location = \"york\" AND railway = \"nsr\"", "question": "Which Wheels has Built smaller than 1958, a Location of york, and a Railway of nsr?", "context": "CREATE TABLE table_name_31 (wheels VARCHAR, railway VARCHAR, built VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(built) FROM table_name_74 WHERE builder = \"brel crewe\"", "question": "Which Built has a Builder of brel crewe?", "context": "CREATE TABLE table_name_74 (built INTEGER, builder VARCHAR)"}, {"answer": "SELECT railway FROM table_name_52 WHERE location = \"shildon\" AND objectnumber = \"1978-7006\"", "question": "Which Railway has a Location of shildon, and an ObjectNumber of 1978-7006?", "context": "CREATE TABLE table_name_52 (railway VARCHAR, location VARCHAR, objectnumber VARCHAR)"}, {"answer": "SELECT railway FROM table_name_58 WHERE location = \"shildon\" AND objectnumber = \"1975-7022\"", "question": "Which Railway has a Location of shildon, and an ObjectNumber of 1975-7022?", "context": "CREATE TABLE table_name_58 (railway VARCHAR, location VARCHAR, objectnumber VARCHAR)"}, {"answer": "SELECT location FROM table_name_71 WHERE objectnumber = \"2005-7698\"", "question": "Which Location has an ObjectNumber of 2005-7698?", "context": "CREATE TABLE table_name_71 (location VARCHAR, objectnumber VARCHAR)"}, {"answer": "SELECT club FROM table_name_28 WHERE years = \"1995\u20131996\"", "question": "What is the Club during the Years 1995\u20131996?", "context": "CREATE TABLE table_name_28 (club VARCHAR, years VARCHAR)"}, {"answer": "SELECT years FROM table_name_71 WHERE position = \"mf\"", "question": "In what Years was the Player in MF Position?", "context": "CREATE TABLE table_name_71 (years VARCHAR, position VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_72 WHERE team__number1 = \"2007 uefa intertoto cup\"", "question": "What is the 2nd leg of the 1st team in the 2007 uefa intertoto cup?", "context": "CREATE TABLE table_name_72 (team__number1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_20 WHERE team__number2 = \"dinamo minsk\"", "question": "What is the 2nd leg of dinamo minsk team #2?", "context": "CREATE TABLE table_name_20 (team__number2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_78 WHERE team__number2 = \"2007 uefa intertoto cup\"", "question": "What is the 2nd leg of the second team in the 2007 uefa intertoto cup?", "context": "CREATE TABLE table_name_78 (team__number2 VARCHAR)"}, {"answer": "SELECT status FROM table_name_93 WHERE against = 10", "question": "What is the status of the 10 against?", "context": "CREATE TABLE table_name_93 (status VARCHAR, against VARCHAR)"}, {"answer": "SELECT opposing_team FROM table_name_76 WHERE status = \"test match\"", "question": "Who was the opposing team in the test match?", "context": "CREATE TABLE table_name_76 (opposing_team VARCHAR, status VARCHAR)"}, {"answer": "SELECT venue FROM table_name_63 WHERE date = \"05/09/1973\"", "question": "Where was the 05/09/1973 venue?", "context": "CREATE TABLE table_name_63 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_82 WHERE position = \"te\" AND round > 5", "question": "Which Overall has a Position of te, and a Round larger than 5?", "context": "CREATE TABLE table_name_82 (overall INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_70 WHERE round > 14 AND overall < 419", "question": "Which Position has a Round larger than 14, and an Overall smaller than 419?", "context": "CREATE TABLE table_name_70 (position VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT overall FROM table_name_65 WHERE round < 2", "question": "Which Overall has a Round smaller than 2?", "context": "CREATE TABLE table_name_65 (overall VARCHAR, round INTEGER)"}, {"answer": "SELECT name FROM table_name_39 WHERE round > 4 AND overall < 338 AND pick < 11 AND college = \"virginia tech\"", "question": "Which Name has a Round larger than 4, an Overall smaller than 338, a Pick smaller than 11, and a College of virginia tech?", "context": "CREATE TABLE table_name_39 (name VARCHAR, college VARCHAR, pick VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT name FROM table_name_81 WHERE event = \"36 arrow finals\"", "question": "Who has the event of 36 arrow finals?", "context": "CREATE TABLE table_name_81 (name VARCHAR, event VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_name_72 WHERE event = \"36 arrow finals\"", "question": "What is the total score for the 36 arrow finals event?", "context": "CREATE TABLE table_name_72 (score VARCHAR, event VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_78 WHERE nat = \"tri\"", "question": "Who is moving with the nationality of Tri?", "context": "CREATE TABLE table_name_78 (moving_to VARCHAR, nat VARCHAR)"}, {"answer": "SELECT sspec_number FROM table_name_52 WHERE frequency = \"1ghz\"", "question": "What is the sSpec Number of the model with a 1ghz frequency?", "context": "CREATE TABLE table_name_52 (sspec_number VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_name_32 WHERE frequency = \"933mhz\"", "question": "What is the part number of the model that has a frequency of 933mhz?", "context": "CREATE TABLE table_name_32 (part_number_s_ VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_89 WHERE part_number_s_ = \"rk80533pz933256\"", "question": "What date was part number rk80533pz933256 released?", "context": "CREATE TABLE table_name_89 (release_date VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_72 WHERE sspec_number = \"sl5qj\"", "question": "What is the frequency of the model with sSpec number sl5qj?", "context": "CREATE TABLE table_name_72 (frequency VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT years FROM table_name_69 WHERE coach = \"jim berryman\"", "question": "How many years does coach Jim Berryman have?", "context": "CREATE TABLE table_name_69 (years VARCHAR, coach VARCHAR)"}, {"answer": "SELECT location FROM table_name_57 WHERE method = \"submission (rear naked choke)\" AND round = 1 AND event = \"ufc 127\"", "question": "Which Location has a Method of submission (rear naked choke), a Round of 1, and an Event of ufc 127?", "context": "CREATE TABLE table_name_57 (location VARCHAR, event VARCHAR, method VARCHAR, round VARCHAR)"}, {"answer": "SELECT record FROM table_name_23 WHERE time = \"n/a\"", "question": "Which Record has a Time of n/a?", "context": "CREATE TABLE table_name_23 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_26 WHERE location = \"gold coast , australia\" AND method = \"submission (punches)\"", "question": "Which Opponent has a Location of gold coast , australia, and a Method of submission (punches)?", "context": "CREATE TABLE table_name_26 (opponent VARCHAR, location VARCHAR, method VARCHAR)"}, {"answer": "SELECT location FROM table_name_47 WHERE circuit = \"lowood circuit\" AND race = \"lowood trophy\"", "question": "what is the location when the circuit is lowood circuit and the race is lowood trophy?", "context": "CREATE TABLE table_name_47 (location VARCHAR, circuit VARCHAR, race VARCHAR)"}, {"answer": "SELECT race FROM table_name_81 WHERE date = \"23 october\"", "question": "what is the race on 23 october?", "context": "CREATE TABLE table_name_81 (race VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_3 WHERE winner = \"stan jones\" AND race = \"phillip island trophy race\"", "question": "what is the circuit when the winner is stan jones and the race is phillip island trophy race?", "context": "CREATE TABLE table_name_3 (circuit VARCHAR, winner VARCHAR, race VARCHAR)"}, {"answer": "SELECT displacement_ & _configuration FROM table_name_36 WHERE max_speed = \"km/h (mph)\" AND car_model = \"panamera 4s\"", "question": "What is the displacement and configuration with a max speed of km/h (mph) and the car model Panamera 4s?", "context": "CREATE TABLE table_name_36 (displacement_ VARCHAR, _configuration VARCHAR, max_speed VARCHAR, car_model VARCHAR)"}, {"answer": "SELECT displacement_ & _configuration FROM table_name_18 WHERE emissions_co2 = \"204 g/km\"", "question": "What is the displacement & configuration with CO2 of 204 g/km emissions?", "context": "CREATE TABLE table_name_18 (displacement_ VARCHAR, _configuration VARCHAR, emissions_co2 VARCHAR)"}, {"answer": "SELECT displacement_ & _configuration FROM table_name_68 WHERE car_model = \"panamera 4s\"", "question": "What displacement & configuration does the car model Panamera 4s have?", "context": "CREATE TABLE table_name_68 (displacement_ VARCHAR, _configuration VARCHAR, car_model VARCHAR)"}, {"answer": "SELECT emissions_co2 FROM table_name_76 WHERE max_speed = \"km/h (mph)\" AND car_model = \"panamera 4s\"", "question": "What is the emissions CO2 with a max speed of km/h (mph) of the car model Panamera 4s?", "context": "CREATE TABLE table_name_76 (emissions_co2 VARCHAR, max_speed VARCHAR, car_model VARCHAR)"}, {"answer": "SELECT tickets_available_since FROM table_name_75 WHERE venue = \"halle tony garnier\" AND date = \"june 15, 2009\"", "question": "How many tickets were available at Halle Tony Garnier on June 15, 2009?", "context": "CREATE TABLE table_name_75 (tickets_available_since VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT city FROM table_name_23 WHERE tickets_available_since = \"march 28, 2008\" AND date = \"september 4, 2009\"", "question": "What city had tickets available since March 28, 2008 and went on sale on September 4, 2009?", "context": "CREATE TABLE table_name_23 (city VARCHAR, tickets_available_since VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_57 WHERE round > 1 AND name = \"joe day\" AND overall < 150", "question": "WHAT IS THE PICK FOR JOE DAY, ROUND LARGER THAN 1, AND OVERALL SMALLER THAN 150?", "context": "CREATE TABLE table_name_57 (pick INTEGER, overall VARCHAR, round VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_62 WHERE overall > 250 AND college = \"florida\"", "question": "WHAT IS THE SUM OF PICK WITH AN OVERALL LARGER THAN 250, AND FOR FLORIDA COLLEGE?", "context": "CREATE TABLE table_name_62 (pick INTEGER, overall VARCHAR, college VARCHAR)"}, {"answer": "SELECT loan_club FROM table_name_41 WHERE start_source = \"bbc sport\" AND ended = \"3 february\"", "question": "What is the loan club with bbc sport as the start source and ended in 3 February?", "context": "CREATE TABLE table_name_41 (loan_club VARCHAR, start_source VARCHAR, ended VARCHAR)"}, {"answer": "SELECT started FROM table_name_99 WHERE start_source = \"enews\"", "question": "When did the enews start source start?", "context": "CREATE TABLE table_name_99 (started VARCHAR, start_source VARCHAR)"}, {"answer": "SELECT start_source FROM table_name_7 WHERE country = \"irl\" AND ended = \"13 april\"", "question": "What is the start source of the irl country, which ended on 13 April?", "context": "CREATE TABLE table_name_7 (start_source VARCHAR, country VARCHAR, ended VARCHAR)"}, {"answer": "SELECT country FROM table_name_16 WHERE start_source = \"bbc sport\" AND name = \"feeney\"", "question": "What is the country named feeney with a bbc sport start source?", "context": "CREATE TABLE table_name_16 (country VARCHAR, start_source VARCHAR, name VARCHAR)"}, {"answer": "SELECT loan_club FROM table_name_61 WHERE name = \"dennehy\"", "question": "What is the loan club named dennehy?", "context": "CREATE TABLE table_name_61 (loan_club VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(races) FROM table_name_27 WHERE position = \"1st\" AND podiums < 10", "question": "What's the most races with less than 10 podiums and 1st position?", "context": "CREATE TABLE table_name_27 (races INTEGER, position VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT SUM(runs) FROM table_name_82 WHERE batting_partners = \"mahela jayawardene and thilan samaraweera\"", "question": "How many runs did mahela jayawardene and thilan samaraweera have?", "context": "CREATE TABLE table_name_82 (runs INTEGER, batting_partners VARCHAR)"}, {"answer": "SELECT venue FROM table_name_42 WHERE batting_partners = \"mahela jayawardene and thilan samaraweera\"", "question": "What venue did mahela jayawardene and thilan samaraweera play at?", "context": "CREATE TABLE table_name_42 (venue VARCHAR, batting_partners VARCHAR)"}, {"answer": "SELECT batting_partners FROM table_name_96 WHERE fielding_team = \"india\" AND season = \"1997\"", "question": "Who were the batting partners that played for India in 1997?", "context": "CREATE TABLE table_name_96 (batting_partners VARCHAR, fielding_team VARCHAR, season VARCHAR)"}, {"answer": "SELECT defending_forces FROM table_name_21 WHERE name = \"al-murassas\"", "question": "What is the defending forces when Al-Murassas shows for name?", "context": "CREATE TABLE table_name_21 (defending_forces VARCHAR, name VARCHAR)"}, {"answer": "SELECT brigade FROM table_name_68 WHERE name = \"tall al-shawk\"", "question": "What is the brigade Tall Al-Shawk shows for the name?", "context": "CREATE TABLE table_name_68 (brigade VARCHAR, name VARCHAR)"}, {"answer": "SELECT brigade FROM table_name_7 WHERE name = \"al-bira\"", "question": "What is the brigade when Al-Bira is the name?", "context": "CREATE TABLE table_name_7 (brigade VARCHAR, name VARCHAR)"}, {"answer": "SELECT brigade FROM table_name_63 WHERE name = \"al-hamra ('arab al-hamra)\"", "question": "What is the brigade when Al-Hamra ('arab al-hamra) shows for name?", "context": "CREATE TABLE table_name_63 (brigade VARCHAR, name VARCHAR)"}, {"answer": "SELECT defending_forces FROM table_name_41 WHERE population = \"120\"", "question": "What is the Defending forces when the population was 120?", "context": "CREATE TABLE table_name_41 (defending_forces VARCHAR, population VARCHAR)"}, {"answer": "SELECT rank FROM table_name_30 WHERE 2010 = \"5,040,000\"", "question": "What was the rank of the park that had a value of 5,040,000 in 2010?", "context": "CREATE TABLE table_name_30 (rank VARCHAR)"}, {"answer": "SELECT COUNT(overall_pick) FROM table_name_40 WHERE round < 3", "question": "What was the overall pick number of the player selected before round 3?", "context": "CREATE TABLE table_name_40 (overall_pick VARCHAR, round INTEGER)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_87 WHERE round > 3 AND player = \"julien cayer\"", "question": "Which College/Junior/Club Team (League) did the player julien cayer who was selected before round 3 play for?", "context": "CREATE TABLE table_name_87 (college_junior_club_team__league_ VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_3 WHERE rank = \"3\" AND silver < 2", "question": "what is the least bronze when the rank is 3 and silver is less than 2?", "context": "CREATE TABLE table_name_3 (bronze INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_58 WHERE bronze = 0 AND nation = \"hungary\"", "question": "what is the total when bronze is 0 and the nation is hungary?", "context": "CREATE TABLE table_name_58 (total INTEGER, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_41 WHERE rank = \"7\" AND gold > 0", "question": "what is the total when the rank is 7 and gold is more than 0?", "context": "CREATE TABLE table_name_41 (total INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_8 WHERE nation = \"total\" AND \"total\" < 24", "question": "what is the highest gold when the nation is total and the total is less than 24?", "context": "CREATE TABLE table_name_8 (gold INTEGER, nation VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_61 WHERE game > 51 AND score = \"99-129\"", "question": "Looking only at matches occurring after Game 51, who was the opponent for the game that ended with a score of 99-129?", "context": "CREATE TABLE table_name_61 (opponent VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE opponent = \"washington bullets\"", "question": "For the game against the Washington Bullets, what was the final score?", "context": "CREATE TABLE table_name_97 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_31 WHERE opponent = \"@ indiana pacers\"", "question": "For the game where the opponent is listed as @ Indiana Pacers, what was the end record?", "context": "CREATE TABLE table_name_31 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game FROM table_name_63 WHERE location = \"chicago stadium\"", "question": "Which game number was played at Chicago Stadium?", "context": "CREATE TABLE table_name_63 (game VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_51 WHERE home = \"motagua\"", "question": "What was the attendance of the match with motagua as the home team?", "context": "CREATE TABLE table_name_51 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_90 WHERE home = \"real espana\"", "question": "What is the score of the game where real espana was the home team?", "context": "CREATE TABLE table_name_90 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT away FROM table_name_45 WHERE attendance = 916", "question": "What team was the away team for the game with 916 in attendance?", "context": "CREATE TABLE table_name_45 (away VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE home = \"deportes savio\"", "question": "What was the score of the game wehre the deportes savio were the home team?", "context": "CREATE TABLE table_name_78 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT championship FROM table_name_83 WHERE winning_score = \u22129(66 - 69 - 73 - 71 = 279)", "question": "In which championship did the winner have a score of \u22129 (66-69-73-71=279)?", "context": "CREATE TABLE table_name_83 (championship VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_32 WHERE winning_score = \u22129(66 - 69 - 73 - 71 = 279)", "question": "During the championship where the winning score was \u22129 (66-69-73-71=279)?, who was the runner-up?", "context": "CREATE TABLE table_name_32 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_28 WHERE year = 2002", "question": "What was the winning score in the year 2002?", "context": "CREATE TABLE table_name_28 (winning_score VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(goals_against) FROM table_name_57 WHERE club = \"cd alcoyano\" AND points > 25", "question": "What is the fewest goals of CD Alcoyano with more than 25 points?", "context": "CREATE TABLE table_name_57 (goals_against INTEGER, club VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_26 WHERE draws < 7 AND played > 30", "question": "What is the fewest number of wins that had fewer than 7 draws and more than 30 played?", "context": "CREATE TABLE table_name_26 (wins INTEGER, draws VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_42 WHERE goal_difference > 29", "question": "What is the fewest points that has more than 29 goals?", "context": "CREATE TABLE table_name_42 (points INTEGER, goal_difference INTEGER)"}, {"answer": "SELECT MAX(date) FROM table_name_90 WHERE type = \"0-4-4 forney locomotive\" AND number > 20 AND works_number > 23754", "question": "What date have highest 0-4-4 forney locomotive with number larger than 20 and works number larger than 23754?", "context": "CREATE TABLE table_name_90 (date INTEGER, works_number VARCHAR, type VARCHAR, number VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_name_37 WHERE type = \"0-4-4 forney locomotive\" AND number < 20 AND works_number = 1251", "question": "What is the sum of number with type 0-4-4 forney locomotive, number smaller than 20 and works number of 1251?", "context": "CREATE TABLE table_name_37 (date VARCHAR, works_number VARCHAR, type VARCHAR, number VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_58 WHERE time = \"3:31\" AND game < 7", "question": "What was the lowest attendance for the game that had a time of 3:31 and was before game 7?", "context": "CREATE TABLE table_name_58 (attendance INTEGER, time VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_53 WHERE time = \"3:23\"", "question": "What was the sum of attendance for games with a time of 3:23?", "context": "CREATE TABLE table_name_53 (attendance INTEGER, time VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_56 WHERE silver = 9 AND total < 27", "question": "WHat is the lowest amount of bronze medals for teams with 9 silvers and less than 27 points?", "context": "CREATE TABLE table_name_56 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_79 WHERE country = \"new zealand\"", "question": "What is the To par of the New Zealand Player?", "context": "CREATE TABLE table_name_79 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_80 WHERE score = 70 - 71 = 141", "question": "What Player had a Score of 70-71=141?", "context": "CREATE TABLE table_name_80 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE player = \"ernie els\"", "question": "What is Ernie Els' Score?", "context": "CREATE TABLE table_name_43 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_25 WHERE away_team = \"bournemouth\"", "question": "What was the attendance when Bournemouth was the away team?", "context": "CREATE TABLE table_name_25 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_19 WHERE home_team = \"lincoln city\"", "question": "Who was the away team when Lincoln City was the home team?", "context": "CREATE TABLE table_name_19 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE away_team = \"walsall\"", "question": "What was the score when Walsall was the away team?", "context": "CREATE TABLE table_name_91 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT wheels FROM table_name_33 WHERE built = 1920", "question": "Which wheels were built 1920?", "context": "CREATE TABLE table_name_33 (wheels VARCHAR, built VARCHAR)"}, {"answer": "SELECT builder FROM table_name_8 WHERE built < 1880", "question": "Which builder has a Built smaller than 1880?", "context": "CREATE TABLE table_name_8 (builder VARCHAR, built INTEGER)"}, {"answer": "SELECT place FROM table_name_68 WHERE player = \"mike souchak\"", "question": "What is Place, when Player is \"Mike Souchak\"?", "context": "CREATE TABLE table_name_68 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_93 WHERE place = \"t9\" AND player = \"jay hebert\"", "question": "What is Country, when Place is \"T9\", and when Player is \"Jay Hebert\"?", "context": "CREATE TABLE table_name_93 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_90 WHERE place = \"t9\" AND score = 73 - 70 = 143", "question": "What is Player, when Place is \"T9\", and when Score is \"73-70=143\"?", "context": "CREATE TABLE table_name_90 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_54 WHERE player = \"dow finsterwald\"", "question": "What is Country, when Player is \"Dow Finsterwald\"?", "context": "CREATE TABLE table_name_54 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE country = \"united states\" AND place = \"t9\" AND player = \"jay hebert\"", "question": "What is Score, when Country is \"United States\", when Place is \"T9\", and when Player is \"Jay Hebert\"?", "context": "CREATE TABLE table_name_28 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE to_par = \"+1\" AND player = \"mike souchak\"", "question": "What is Score, when To Par is \"+1\", and when Player is \"Mike Souchak\"?", "context": "CREATE TABLE table_name_7 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE home = \"chicago black hawks\" AND record = \"3-3\"", "question": "What is the Score when the Home team is Chicago Black Hawks and the Record is 3-3?", "context": "CREATE TABLE table_name_8 (score VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_78 WHERE score = \"0-4\"", "question": "Which Visitor has a Score of 0-4?", "context": "CREATE TABLE table_name_78 (visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_54 WHERE date = \"april 22\"", "question": "What is the Record for April 22?", "context": "CREATE TABLE table_name_54 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE record = \"3-4\"", "question": "Which Date has a Record of 3-4?", "context": "CREATE TABLE table_name_54 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE record = \"3-4\"", "question": "Which Date has a Record of 3-4?", "context": "CREATE TABLE table_name_30 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_24 WHERE opponent = \"anna barone\"", "question": "What is the record for opponent Anna Barone?", "context": "CREATE TABLE table_name_24 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_24 WHERE method = \"ko (head kick)\"", "question": "What is the record for the Ko (head kick) method?", "context": "CREATE TABLE table_name_24 (record VARCHAR, method VARCHAR)"}, {"answer": "SELECT time FROM table_name_57 WHERE round < 2 AND method = \"ko (knee to the body)\"", "question": "What is the time before round 2, and the ko (knee to the body) method?", "context": "CREATE TABLE table_name_57 (time VARCHAR, round VARCHAR, method VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_89 WHERE method = \"tko (punches and elbows)\"", "question": "What is the average round for the TKO (punches and elbows) method?", "context": "CREATE TABLE table_name_89 (round INTEGER, method VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_93 WHERE event = \"ufc 19\"", "question": "Who was the opponent in UFC 19?", "context": "CREATE TABLE table_name_93 (opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_75 WHERE round > 1 AND event = \"ufc 66\"", "question": "Who was the opponent in UFC 66 who lasted for more than 1 round?", "context": "CREATE TABLE table_name_75 (opponent VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_56 WHERE 1984 = \"a\" AND 1985 = \"a\" AND 1990 = \"a\"", "question": "What was the 1989 result for the tournament with 1984 of a, 1985 of a, and 1990 of a?", "context": "CREATE TABLE table_name_56 (Id VARCHAR)"}, {"answer": "SELECT 1987 FROM table_name_81 WHERE 1989 = \"a\" AND 1986 = \"3r\"", "question": "What was the 1987 result for the tournament with 1986 result of 3R and 1989 of A?", "context": "CREATE TABLE table_name_81 (Id VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_71 WHERE 1987 = \"1r\"", "question": "What is the 1989 result of the tournament that had a 1987 result of 1R?", "context": "CREATE TABLE table_name_71 (Id VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_95 WHERE 1983 = \"a\" AND 1987 = \"a\"", "question": "What is the 1989 result for the tournament that had a 1983 and 1987 result of A?", "context": "CREATE TABLE table_name_95 (Id VARCHAR)"}, {"answer": "SELECT res FROM table_name_69 WHERE event = \"ufc 85\"", "question": "What was the result fot the UFC 85 event?", "context": "CREATE TABLE table_name_69 (res VARCHAR, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_84 WHERE event = \"meca world vale tudo 6\"", "question": "In which location did the Meca World Vale Tudo 6 event happen?", "context": "CREATE TABLE table_name_84 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE round = \"3\" AND event = \"afc: brazil 1\"", "question": "What was his record at the AFC: Brazil 1 event that went 3 rounds?", "context": "CREATE TABLE table_name_59 (record VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT country FROM table_name_64 WHERE lane < 2 AND name = \"anselmo da silva\"", "question": "Which country has Anselmo Da Silva in lane 2?", "context": "CREATE TABLE table_name_64 (country VARCHAR, lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_4 WHERE mark = \"7.63\" AND react < 0.229", "question": "What is the heat number at 7.63, and a reaction less than 0.229?", "context": "CREATE TABLE table_name_4 (heat VARCHAR, mark VARCHAR, react VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_name_36 WHERE part_2 = \"band\"", "question": "What is the verb meaning when part 2 is band?", "context": "CREATE TABLE table_name_36 (verb_meaning VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_name_5 WHERE part_2 = \"bl\u0113ot\"", "question": "What is the verb meaning when the part 2 is bl\u0113ot?", "context": "CREATE TABLE table_name_5 (verb_meaning VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT part_2 FROM table_name_4 WHERE class = \"6\"", "question": "What is the Part 2 when the class is 6?", "context": "CREATE TABLE table_name_4 (part_2 VARCHAR, class VARCHAR)"}, {"answer": "SELECT class FROM table_name_47 WHERE verb_meaning = \"to nourish, to grow\"", "question": "What is the class when the verb meaning is to nourish, to grow?", "context": "CREATE TABLE table_name_47 (class VARCHAR, verb_meaning VARCHAR)"}, {"answer": "SELECT part_3 FROM table_name_60 WHERE verb_meaning = \"to gather\"", "question": "What is the Part 3 when the Verb meaning is to gather?", "context": "CREATE TABLE table_name_60 (part_3 VARCHAR, verb_meaning VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_name_16 WHERE part_1 = \"alan\"", "question": "What is the Verb meaning when part 1 is alan?", "context": "CREATE TABLE table_name_16 (verb_meaning VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_2 WHERE home = \"vida\"", "question": "What is the average attendance for matches where the home team was vida?", "context": "CREATE TABLE table_name_2 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_49 WHERE attendance = 2709", "question": "Who was the home team during the match where there were 2709 in attendance?", "context": "CREATE TABLE table_name_49 (home VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_41 WHERE score = \"1:1\"", "question": "What is the sum of the attendance where the score was 1:1?", "context": "CREATE TABLE table_name_41 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_83 WHERE score = \"2\u20132\"", "question": "How many ties occurred with a score of 2\u20132?", "context": "CREATE TABLE table_name_83 (tie_no VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_89 WHERE away_team = \"preston north end\"", "question": "Who is the home team when Preston North End is the away team?", "context": "CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_35 WHERE position = \"shooting guard\"", "question": "What school/club did the player who layed shooting guard attend?", "context": "CREATE TABLE table_name_35 (school_club_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_24 WHERE player = \"gerald wilkins\"", "question": "What school/club did gerald wilkins attend?", "context": "CREATE TABLE table_name_24 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_name_56 WHERE position = \"point guard\" AND school_club_team = \"florida\"", "question": "What are the years when the grizzlies had a point guard who attended the school/club Florida?", "context": "CREATE TABLE table_name_56 (years_for_grizzlies VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_name_71 WHERE school_club_team = \"ucla\"", "question": "What are the years when the grizzles had a player who attended UCLA?", "context": "CREATE TABLE table_name_71 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_name_37 WHERE school_club_team = \"villanova\"", "question": "What are the years when the grizzles had a player who attended Villanova?", "context": "CREATE TABLE table_name_37 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_91 WHERE years_for_grizzlies = \"1998-1999\"", "question": "What position did the person who was with the grizzlies in 1998-1999 play?", "context": "CREATE TABLE table_name_91 (position VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE opponent = \"cleveland browns\"", "question": "What is the date of the game when the opponent is the Cleveland Browns?", "context": "CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_6 WHERE attendance = \"62,078\"", "question": "What is the result of the game when the attendance is 62,078?", "context": "CREATE TABLE table_name_6 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_43 WHERE attendance = \"75,466\"", "question": "What is the result of the game when the attendance is 75,466?", "context": "CREATE TABLE table_name_43 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT genitive FROM table_name_1 WHERE ergative = \"shen\"", "question": "What is the genitive for the ergative shen?", "context": "CREATE TABLE table_name_1 (genitive VARCHAR, ergative VARCHAR)"}, {"answer": "SELECT instrumental FROM table_name_15 WHERE dative = \"shen\"", "question": "What is the instrumental for the dative shen?", "context": "CREATE TABLE table_name_15 (instrumental VARCHAR, dative VARCHAR)"}, {"answer": "SELECT adverbial FROM table_name_92 WHERE nominative = \"me\"", "question": "What is the adverbial for the nominative me?", "context": "CREATE TABLE table_name_92 (adverbial VARCHAR, nominative VARCHAR)"}, {"answer": "SELECT ergative FROM table_name_33 WHERE dative = \"chven\"", "question": "What is the ergative for the dative chven?", "context": "CREATE TABLE table_name_33 (ergative VARCHAR, dative VARCHAR)"}, {"answer": "SELECT ergative FROM table_name_13 WHERE genitive = \"tkven(s)\"", "question": "What is the ergative for the genitive tkven(s)?", "context": "CREATE TABLE table_name_13 (ergative VARCHAR, genitive VARCHAR)"}, {"answer": "SELECT ergative FROM table_name_53 WHERE dative = \"(i)mas\"", "question": "What is the ergative for the dative (i)mas?", "context": "CREATE TABLE table_name_53 (ergative VARCHAR, dative VARCHAR)"}, {"answer": "SELECT front_side_bus FROM table_name_54 WHERE model_number = \"c3 850\"", "question": "What is the Front Side Bus for Model Number c3 850?", "context": "CREATE TABLE table_name_54 (front_side_bus VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_99 WHERE model_number = \"c3 850\"", "question": "What is the Frequency for Model Number c3 850?", "context": "CREATE TABLE table_name_99 (frequency VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_98 WHERE front_side_bus = \"100mhz\" AND l2_cache = \"64kib\" AND multiplier = \"8.5\u00d7\"", "question": "Which Model number has a Front Side Bus of 100mhz, a L2-Cache of 64kib and a Multiplier of 8.5\u00d7?", "context": "CREATE TABLE table_name_98 (model_number VARCHAR, multiplier VARCHAR, front_side_bus VARCHAR, l2_cache VARCHAR)"}, {"answer": "SELECT voltage FROM table_name_21 WHERE model_number = \"c3 866\"", "question": "What is the Voltage for Model Number c3 866?", "context": "CREATE TABLE table_name_21 (voltage VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT finalists FROM table_name_79 WHERE tournament = \"miami\"", "question": "What is Finalists, when Tournament is Miami?", "context": "CREATE TABLE table_name_79 (finalists VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_64 WHERE week = \"november 23\"", "question": "What is Tournament, when Week is November 23?", "context": "CREATE TABLE table_name_64 (tournament VARCHAR, week VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_93 WHERE tournament = \"rome\"", "question": "What is Semifinalists, when Tournament is Rome", "context": "CREATE TABLE table_name_93 (semifinalists VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT rank__number FROM table_name_90 WHERE attendance = \"68,586\"", "question": "What rank were the Buckeyes when there were 68,586 in attendance?", "context": "CREATE TABLE table_name_90 (rank__number VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE attendance = \"40,000\"", "question": "What date was the game when 40,000 attended?", "context": "CREATE TABLE table_name_65 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE attendance = \"45,943\"", "question": "What date was the game when 45,943 attended?", "context": "CREATE TABLE table_name_56 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent_number FROM table_name_16 WHERE date = \"october 17\"", "question": "Who was the opponent that played against the Buckeyes on October 17?", "context": "CREATE TABLE table_name_16 (opponent_number VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_57 WHERE rank__number = \"1\" AND attendance = \"22,555\"", "question": "What is the result of the game played when 22,555 were in attendance and the Buckeyes were ranked #1?", "context": "CREATE TABLE table_name_57 (result VARCHAR, rank__number VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT player FROM table_name_39 WHERE college_country_team = \"connecticut\"", "question": "What Player is from Connecticut?", "context": "CREATE TABLE table_name_39 (player VARCHAR, college_country_team VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_73 WHERE played < 10", "question": "What is the highest position of the team having played under 10 matches?", "context": "CREATE TABLE table_name_73 (position INTEGER, played INTEGER)"}, {"answer": "SELECT COUNT(played) FROM table_name_84 WHERE points > 14 AND drawn > 1", "question": "What is the total number of played values for teams with more than 14 points and more than 1 draw?", "context": "CREATE TABLE table_name_84 (played VARCHAR, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_20 WHERE points > 2 AND lost > 4 AND played < 10", "question": "What is the total number of positions having points over 2, more than 4 losses, and under 10 matches played?", "context": "CREATE TABLE table_name_20 (position VARCHAR, played VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(televotes) FROM table_name_59 WHERE performer = \"biljana dodeva\" AND draw > 10", "question": "WHich Televotes has a Performer of biljana dodeva, and a Draw larger than 10?", "context": "CREATE TABLE table_name_59 (televotes INTEGER, performer VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_77 WHERE rank = 14 AND televotes > 908", "question": "Name the highest Draw which has a Rank of 14, and a Televotes larger than 908?", "context": "CREATE TABLE table_name_77 (draw INTEGER, rank VARCHAR, televotes VARCHAR)"}, {"answer": "SELECT MIN(televotes) FROM table_name_54 WHERE performer = \"monika sokolovska\" AND rank > 15", "question": "Name the lowest Televotes which has monika sokolovska and a Rank larger than 15?", "context": "CREATE TABLE table_name_54 (televotes INTEGER, performer VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_name_18 WHERE performer = \"kaliopi\" AND televotes > 3834", "question": "Name the lowest Draw which has a Performer of kaliopi and a Televotes larger than 3834?", "context": "CREATE TABLE table_name_18 (draw INTEGER, performer VARCHAR, televotes VARCHAR)"}, {"answer": "SELECT total FROM table_name_12 WHERE player = \"hale irwin\"", "question": "What is Total, when Player is \"Hale Irwin\"?", "context": "CREATE TABLE table_name_12 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE country = \"united states\" AND to_par = \"wd\"", "question": "What is Player, when Country is \"United States\", and when To Par is \"WD\"?", "context": "CREATE TABLE table_name_79 (player VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_73 WHERE total = \"154\"", "question": "What is Player, when Total is \"154\"?", "context": "CREATE TABLE table_name_73 (player VARCHAR, total VARCHAR)"}, {"answer": "SELECT player FROM table_name_48 WHERE country = \"united states\" AND total = \"154\"", "question": "What is Player, when Country is \"United States\", and when Total is \"154\"?", "context": "CREATE TABLE table_name_48 (player VARCHAR, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_37 WHERE to_par = \"+11\"", "question": "What is Country, when To Par is \"+11\"?", "context": "CREATE TABLE table_name_37 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_96 WHERE player = \"hale irwin\"", "question": "What is Country, when Player is \"Hale Irwin\"?", "context": "CREATE TABLE table_name_96 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(interview) FROM table_name_66 WHERE country = \"missouri\" AND swimsuit > 9.433", "question": "What is the lowest interview score for Missouri, where the swimsuit score was highter than 9.433?", "context": "CREATE TABLE table_name_66 (interview INTEGER, country VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT SUM(preliminary) FROM table_name_84 WHERE interview = 9.654 AND average < 9.733", "question": "What is the sum of Preliminary scores where the interview score is 9.654 and the average score is lower than 9.733?", "context": "CREATE TABLE table_name_84 (preliminary INTEGER, interview VARCHAR, average VARCHAR)"}, {"answer": "SELECT SUM(swimsuit) FROM table_name_79 WHERE average = 9.733 AND interview > 9.654", "question": "What is the sum of Swimsuit scores where the average score is 9.733 and the interview score is higher than 9.654?", "context": "CREATE TABLE table_name_79 (swimsuit INTEGER, average VARCHAR, interview VARCHAR)"}, {"answer": "SELECT SUM(evening_gown) FROM table_name_88 WHERE swimsuit > 9.4 AND average < 9.733", "question": "What is the sum of Evening Gown scores where the swimsuit score is higher than 9.4 and the average score is lower than 9.733?", "context": "CREATE TABLE table_name_88 (evening_gown INTEGER, swimsuit VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_name_48 WHERE evening_gown = 8.811", "question": "What is the lowest average score where the evening gown score was 8.811?", "context": "CREATE TABLE table_name_48 (average INTEGER, evening_gown VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_37 WHERE goals_against < 58 AND position = 10 AND points_2 > 53", "question": "For a team with a goals against less than 58, a position of 10, and a points 2 more than 53, what is the average lost?", "context": "CREATE TABLE table_name_37 (lost INTEGER, points_2 VARCHAR, goals_against VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_95 WHERE goals_for > 95", "question": "For a team having goals for more than 95, what is the lowest position?", "context": "CREATE TABLE table_name_95 (position INTEGER, goals_for INTEGER)"}, {"answer": "SELECT function__percentage FROM table_name_30 WHERE estimated_function__percentage = 20", "question": "What is the function percentage when the estimated function percentage is 20?", "context": "CREATE TABLE table_name_30 (function__percentage VARCHAR, estimated_function__percentage VARCHAR)"}, {"answer": "SELECT measurement FROM table_name_21 WHERE estimated_function__percentage < 20", "question": "What is the measurement where the estimated function % is less than 20?", "context": "CREATE TABLE table_name_21 (measurement VARCHAR, estimated_function__percentage INTEGER)"}, {"answer": "SELECT estimated_function__percentage FROM table_name_43 WHERE measurement = \"8/8\"", "question": "What is the estimated function % when the measurement is 8/8?", "context": "CREATE TABLE table_name_43 (estimated_function__percentage VARCHAR, measurement VARCHAR)"}, {"answer": "SELECT place FROM table_name_67 WHERE to_par < 13 AND player = \"jacky cupit\"", "question": "What place did jacky cupit take when his To par was under 13?", "context": "CREATE TABLE table_name_67 (place VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_63 WHERE to_par = 12 AND country = \"united states\"", "question": "Which united states player had a To par of 12?", "context": "CREATE TABLE table_name_63 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_78 WHERE to_par = 13", "question": "Which player had a To par of 13?", "context": "CREATE TABLE table_name_78 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE to_par = \"+5\" AND player = \"vijay singh\"", "question": "What did vijay singh score with a +5 to par?", "context": "CREATE TABLE table_name_92 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_64 WHERE nation = \"south africa\" AND silver > 8", "question": "What was the average rank for south africa when they had more than 8 silver medals?", "context": "CREATE TABLE table_name_64 (rank INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_47 WHERE nation = \"netherlands\" AND bronze > 4", "question": "What is the average number of gold medals the netherlands got when they had more than 4 bronze medals?", "context": "CREATE TABLE table_name_47 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_18 WHERE silver > 8 AND nation = \"great britain\" AND total < 61", "question": "What is the sum of the gold medals for the nation of Great britain who had more than 8 silvers and a total of less than 61 medals?", "context": "CREATE TABLE table_name_18 (gold INTEGER, total VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_29 WHERE nation = \"israel\" AND silver < 3", "question": "What is the highest number of bronze medals that israel acheived when they got less than 3 silver medals?", "context": "CREATE TABLE table_name_29 (bronze INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_93 WHERE bronze = 2 AND silver > 5", "question": "What is the total number of gold medals when the team got 2 bronze and more than 5 silver medals?", "context": "CREATE TABLE table_name_93 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT partner FROM table_name_94 WHERE surface = \"hard\" AND score = \"6\u20133, 7\u20136(0)\"", "question": "What is Partner, when Surface is Hard, and when Score is 6\u20133, 7\u20136(0)?", "context": "CREATE TABLE table_name_94 (partner VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_60 WHERE partner = \"vitalia diatchenko\"", "question": "What is Opponents, when Partner is Vitalia Diatchenko?", "context": "CREATE TABLE table_name_60 (opponents VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_73 WHERE outcome = \"winner\" AND date = \"12 october 2003\"", "question": "What is Partner, when Outcome is Winner, and when Date is 12 October 2003?", "context": "CREATE TABLE table_name_73 (partner VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_8 WHERE partner = \"mervana jugi\u0107-salki\u0107\"", "question": "What is Opponents, when Partner is Mervana Jugi\u0107-Salki\u0107?", "context": "CREATE TABLE table_name_8 (opponents VARCHAR, partner VARCHAR)"}, {"answer": "SELECT MIN(minutes_played) FROM table_name_95 WHERE rebounds = 25 AND field_goal__percentage < 0.315", "question": "What is the lowest Minutes Played, when Rebounds is 25, and when Field Goal % is less than \"0.315\"?", "context": "CREATE TABLE table_name_95 (minutes_played INTEGER, rebounds VARCHAR, field_goal__percentage VARCHAR)"}, {"answer": "SELECT AVG(rebounds) FROM table_name_4 WHERE minutes_played = 113 AND games_played > 18", "question": "What is the average Rebounds, when Minutes Played is \"113\", and when Games Played is greater than \"18\"?", "context": "CREATE TABLE table_name_4 (rebounds INTEGER, minutes_played VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE date = \"march 17\"", "question": "What is the score on March 17?", "context": "CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT event FROM table_name_37 WHERE res = \"loss\" AND opponent = \"josh diekman\"", "question": "Which event led to a loss against Josh Diekman?", "context": "CREATE TABLE table_name_37 (event VARCHAR, res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_36 WHERE method = \"decision\" AND record = \"1-2\"", "question": "Which location led to a decision and a record of 1-2?", "context": "CREATE TABLE table_name_36 (location VARCHAR, method VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_73 WHERE opponent = \"chris herring\"", "question": "Which method took place against Chris Herring?", "context": "CREATE TABLE table_name_73 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_12 WHERE rider = \"max biaggi\" AND grid > 2", "question": "What is the highest number of laps that max biaggi rode on a grid larger than 2?", "context": "CREATE TABLE table_name_12 (laps INTEGER, rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_71 WHERE rider = \"tetsuya harada\"", "question": "What is the highest grid that tetsuya harada rode in?", "context": "CREATE TABLE table_name_71 (grid INTEGER, rider VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_89 WHERE time_retired = \"+48.325\"", "question": "What is the average number of laps that were made when the race took a time of +48.325?", "context": "CREATE TABLE table_name_89 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_6 WHERE time_retired = \"+9.682\"", "question": "What is the total number of laps during the race that had a time of +9.682?", "context": "CREATE TABLE table_name_6 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_40 WHERE college = \"syracuse\" AND overall < 18", "question": "What is the highest Pick, when College is \"Syracuse\", and when Overall is less than 18?", "context": "CREATE TABLE table_name_40 (pick INTEGER, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT position FROM table_name_97 WHERE college = \"houston\"", "question": "What is Position, when College is \"Houston\"?", "context": "CREATE TABLE table_name_97 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT number_of_networks FROM table_name_93 WHERE size_of_rest_bit_field = \"8\"", "question": "What is the number of networks when the size of rest bit field is 8?", "context": "CREATE TABLE table_name_93 (number_of_networks VARCHAR, size_of_rest_bit_field VARCHAR)"}, {"answer": "SELECT start_address FROM table_name_88 WHERE size_of_network_number_bit_field = \"16\"", "question": "What is the start address when the network number bit field is 16?", "context": "CREATE TABLE table_name_88 (start_address VARCHAR, size_of_network_number_bit_field VARCHAR)"}, {"answer": "SELECT end_address FROM table_name_61 WHERE class = \"class e (reserved)\"", "question": "What is the end address for the Class E (Reserved)?", "context": "CREATE TABLE table_name_61 (end_address VARCHAR, class VARCHAR)"}, {"answer": "SELECT size_of_rest_bit_field FROM table_name_12 WHERE leading_bits > 110 AND start_address = \"224.0.0.0\"", "question": "What is the size of the rest bit field when the leading bits are more than 110 and the start address is 224.0.0.0?", "context": "CREATE TABLE table_name_12 (size_of_rest_bit_field VARCHAR, leading_bits VARCHAR, start_address VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_65 WHERE team = \"goole town\" AND position < 9", "question": "W hat was the lowest Goals For when they played Team Goole Town and had a position lower than 9?", "context": "CREATE TABLE table_name_65 (goals_for INTEGER, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT team FROM table_name_15 WHERE drawn < 12 AND position > 3 AND goals_against > 85", "question": "Which team has a position higher than 3, a Drawn lower than 12, and a Goals Against higher than 85?", "context": "CREATE TABLE table_name_15 (team VARCHAR, goals_against VARCHAR, drawn VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(goals_against) FROM table_name_14 WHERE points_1 = 44 AND goals_for > 65", "question": "When the Points 1 were 44 and the Goals For were larger than 65, what was the total number of Goals Against?", "context": "CREATE TABLE table_name_14 (goals_against VARCHAR, points_1 VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT year_named FROM table_name_59 WHERE diameter__km_ = 729", "question": "What was the year when the diameter was 729 km?", "context": "CREATE TABLE table_name_59 (year_named VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT MAX(diameter__km_) FROM table_name_3 WHERE latitude = \"43.5s\"", "question": "What is the highest diameter when the latitude is 43.5s?", "context": "CREATE TABLE table_name_3 (diameter__km_ INTEGER, latitude VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE attendance = \"75,891\"", "question": "On what Date was the Attendance 75,891?", "context": "CREATE TABLE table_name_77 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT week FROM table_name_37 WHERE date = \"september 5, 1993\"", "question": "What was the Week on September 5, 1993?", "context": "CREATE TABLE table_name_37 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_71 WHERE date = \"october 31, 1993\"", "question": "Who was the Opponent on October 31, 1993?", "context": "CREATE TABLE table_name_71 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date__from_ FROM table_name_18 WHERE traction_type = \"electric\" AND location = \"calgary\"", "question": "what is the date for traction type electric with calgary location?", "context": "CREATE TABLE table_name_18 (date__from_ VARCHAR, traction_type VARCHAR, location VARCHAR)"}, {"answer": "SELECT date__to_ FROM table_name_79 WHERE date__from_ = \"30 sep 1913\"", "question": "Which date has date started from 30 Sep 1913?", "context": "CREATE TABLE table_name_79 (date__to_ VARCHAR, date__from_ VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_33 WHERE round = \"2q\"", "question": "What is the 1st leg of 2q round?", "context": "CREATE TABLE table_name_33 (round VARCHAR)"}, {"answer": "SELECT competition FROM table_name_89 WHERE club = \"villareal\"", "question": "What competition has the club villareal?", "context": "CREATE TABLE table_name_89 (competition VARCHAR, club VARCHAR)"}, {"answer": "SELECT competition FROM table_name_32 WHERE club = \"aik\"", "question": "Which competition has aik club?", "context": "CREATE TABLE table_name_32 (competition VARCHAR, club VARCHAR)"}, {"answer": "SELECT round FROM table_name_38 WHERE club = \"be\u010dej\"", "question": "What is the round of club be\u010dej?", "context": "CREATE TABLE table_name_38 (round VARCHAR, club VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_66 WHERE competition = \"uefa intertoto cup\" AND club = \"silkeborg\"", "question": "What is the 1st leg of the uefa intertoto cup competition with club silkeborg?", "context": "CREATE TABLE table_name_66 (competition VARCHAR, club VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_57 WHERE high_assists = \"jason kidd (8)\" AND score = \"w 105\u201395 (ot)\"", "question": "Who had the high rebounds when the score was w 105\u201395 (ot) and Jason Kidd (8) had the high assists?", "context": "CREATE TABLE table_name_57 (high_rebounds VARCHAR, high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_61 WHERE score = \"l 87\u2013115 (ot)\"", "question": "Which team scored l 87\u2013115 (ot)?", "context": "CREATE TABLE table_name_61 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_37 WHERE game = 56", "question": "What's the record of Game 56?", "context": "CREATE TABLE table_name_37 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_name_29 WHERE location_attendance = \"energysolutions arena 19,911\"", "question": "Who was the team that played at Energysolutions Arena 19,911?", "context": "CREATE TABLE table_name_29 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_8 WHERE location_attendance = \"american airlines center 20,223\"", "question": "Who had the high assists when the game was at American Airlines Center 20,223?", "context": "CREATE TABLE table_name_8 (high_assists VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_name_9 WHERE record = \"50\u201328\"", "question": "What team has a Record of 50\u201328?", "context": "CREATE TABLE table_name_9 (team VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE game = 75", "question": "What was the date of game 75?", "context": "CREATE TABLE table_name_93 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_14 WHERE year > 1969 AND finish = 34", "question": "Which manufacturer was used after 1969 with a finish position of 34?", "context": "CREATE TABLE table_name_14 (manufacturer VARCHAR, year VARCHAR, finish VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_28 WHERE date = \"april 25\"", "question": "What is the total attendance on April 25?", "context": "CREATE TABLE table_name_28 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_49 WHERE attendance > 19 OFFSET 883", "question": "What is the decision of the game with an attendance greater than 19,883?", "context": "CREATE TABLE table_name_49 (decision VARCHAR, attendance INTEGER)"}, {"answer": "SELECT to_par FROM table_name_31 WHERE score = 76 - 73 - 67 - 69 = 285", "question": "When the score was 76-73-67-69=285 what was the To par?", "context": "CREATE TABLE table_name_31 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE to_par = \"\u20136\"", "question": "Which player has a To par of  \u20136?", "context": "CREATE TABLE table_name_83 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT memory___ram__ FROM table_name_40 WHERE operating_system_version = \"maemo 5\"", "question": "How much memory (RAM) does the Maemo 5 operating system have?", "context": "CREATE TABLE table_name_40 (memory___ram__ VARCHAR, operating_system_version VARCHAR)"}, {"answer": "SELECT operating_system_version FROM table_name_18 WHERE storage___flash__ = \"128mb\"", "question": "Which operating system has a storage (flash) of 128MB?", "context": "CREATE TABLE table_name_18 (operating_system_version VARCHAR, storage___flash__ VARCHAR)"}, {"answer": "SELECT weight, _dimensions FROM table_name_42 WHERE model = \"n800\"", "question": "What is the weight and dimensions of an N800?", "context": "CREATE TABLE table_name_42 (weight VARCHAR, _dimensions VARCHAR, model VARCHAR)"}, {"answer": "SELECT operating_system_version FROM table_name_27 WHERE memory___ram__ = \"1gb (mobile ddr)\"", "question": "Which operating system has 1GB (mobile ddr) memory (RAM)?", "context": "CREATE TABLE table_name_27 (operating_system_version VARCHAR, memory___ram__ VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_1 WHERE round > 1 AND player = \"jim stack\"", "question": "What is the total number of Pick, when Round is greater than 1, and when Player is \"Jim Stack\"?", "context": "CREATE TABLE table_name_1 (pick VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_25 WHERE college = \"washington state\" AND pick < 48", "question": "What is the lowest Round, when College is \"Washington State\", and when Pick is less than 48?", "context": "CREATE TABLE table_name_25 (round INTEGER, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT college FROM table_name_11 WHERE round > 1 AND pick > 163", "question": "What is College, when Round is greater than 1, and when Pick is greater than 163?", "context": "CREATE TABLE table_name_11 (college VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT location__numbersites__global_local_ FROM table_name_90 WHERE software = \"bind\" AND ipv6_address = \"2001:503:c27::2:30\"", "question": "What is the location for the software of BIND and an IPv6 address of 2001:503:c27::2:30?", "context": "CREATE TABLE table_name_90 (location__numbersites__global_local_ VARCHAR, software VARCHAR, ipv6_address VARCHAR)"}, {"answer": "SELECT ipv6_address FROM table_name_65 WHERE operator = \"wide project\"", "question": "Which IPv6 address has an operator of Wide project?", "context": "CREATE TABLE table_name_65 (ipv6_address VARCHAR, operator VARCHAR)"}, {"answer": "SELECT letter FROM table_name_45 WHERE operator = \"verisign\" AND as_number = \"as26415\"", "question": "Which letter has an operator of VeriSign and an AS-number of AS26415?", "context": "CREATE TABLE table_name_45 (letter VARCHAR, operator VARCHAR, as_number VARCHAR)"}, {"answer": "SELECT location__numbersites__global_local_ FROM table_name_60 WHERE as_number = \"n/a\"", "question": "Which location has an AS-number of N/A?", "context": "CREATE TABLE table_name_60 (location__numbersites__global_local_ VARCHAR, as_number VARCHAR)"}, {"answer": "SELECT letter FROM table_name_32 WHERE operator = \"defense information systems agency\"", "question": "Which letter has an operator of the Defense Information Systems Agency?", "context": "CREATE TABLE table_name_32 (letter VARCHAR, operator VARCHAR)"}, {"answer": "SELECT SUM(all_time) FROM table_name_39 WHERE amateur_era < 0", "question": "What is the sum of All-Time, when Amateur Era is less than 0?", "context": "CREATE TABLE table_name_39 (all_time INTEGER, amateur_era INTEGER)"}, {"answer": "SELECT MIN(all_time) FROM table_name_95 WHERE first_title < 1974 AND last_title = 1933 AND amateur_era > 2", "question": "What is the lowest All-Time, when First Title is before 1974, when Last Title is \"1933\", and when Amateur Era is greater than 2?", "context": "CREATE TABLE table_name_95 (all_time INTEGER, amateur_era VARCHAR, first_title VARCHAR, last_title VARCHAR)"}, {"answer": "SELECT MIN(all_time) FROM table_name_35 WHERE first_title = 2007 AND amateur_era > 0", "question": "What is the lowest All-Time, when First Title is \"2007, and when Amateur Era is greater than 0?", "context": "CREATE TABLE table_name_35 (all_time INTEGER, first_title VARCHAR, amateur_era VARCHAR)"}, {"answer": "SELECT MIN(first_title) FROM table_name_13 WHERE all_time > 1 AND country = \"united states (usa)\" AND amateur_era > 17", "question": "What is the lowest First Title, when All-Time is greater than 1, when Country is \"United States (USA)\", and when Amateur Era is greater than 17?", "context": "CREATE TABLE table_name_13 (first_title INTEGER, amateur_era VARCHAR, all_time VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_22 WHERE to_par = \"+2\" AND score = 70 - 72 - 73 = 215", "question": "What is the Place of the Player with a To par of +2 and a Score of 70-72-73=215?", "context": "CREATE TABLE table_name_22 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_19 WHERE place = \"t6\" AND player = \"robert karlsson\"", "question": "From what Country is T6 Place Player Robert Karlsson?", "context": "CREATE TABLE table_name_19 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_63 WHERE place = \"t4\" AND score = 72 - 69 - 73 = 214", "question": "What is the To par of the T4 Place Player with a Score of 72-69-73=214?", "context": "CREATE TABLE table_name_63 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_7 WHERE score = 70 - 72 - 73 = 215", "question": "What is the To par of the Player with a Score of 70-72-73=215?", "context": "CREATE TABLE table_name_7 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_49 WHERE player = \"rocco mediate\"", "question": "What Country is Rocco Mediate from?", "context": "CREATE TABLE table_name_49 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_79 WHERE player = \"mike smith\"", "question": "What is Mike Smith's To par?", "context": "CREATE TABLE table_name_79 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_36 WHERE score = 66 AND player = \"scott hoch\"", "question": "What is Scott Hoch with a Score of 66 Country?", "context": "CREATE TABLE table_name_36 (country VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_1 WHERE score > 66 AND place = \"t4\"", "question": "What is the T4 Place Player with a Score of more than 66?", "context": "CREATE TABLE table_name_1 (player VARCHAR, score VARCHAR, place VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_75 WHERE manner_of_departure = \"mutual consent\" AND date_of_appointment = \"2 november 2009\"", "question": "What is the vacancy date for the manager appointed on 2 November 2009 who left due to mutual consent?", "context": "CREATE TABLE table_name_75 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_30 WHERE date_of_vacancy = \"20 september 2009\"", "question": "What was the manner of departure for the vacancy date of 20 September 2009?", "context": "CREATE TABLE table_name_30 (manner_of_departure VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_45 WHERE date_of_appointment = \"11 march 2010\"", "question": "What was the vacancy date of the manager appointed on 11 March 2010?", "context": "CREATE TABLE table_name_45 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_73 WHERE overall = 38", "question": "What is the lowest pick number where the overall pick number was 38?", "context": "CREATE TABLE table_name_73 (pick INTEGER, overall VARCHAR)"}, {"answer": "SELECT position FROM table_name_49 WHERE round = 22", "question": "What was the position of the player who was picked in round 22?", "context": "CREATE TABLE table_name_49 (position VARCHAR, round VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_68 WHERE erp_w = 99", "question": "What was the call sign for ERP W of 99?", "context": "CREATE TABLE table_name_68 (call_sign VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_20 WHERE team_2 = \"karabakh\"", "question": "What is the team 1 in the match with a team 2 of Karabakh?", "context": "CREATE TABLE table_name_20 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT round FROM table_name_36 WHERE pick = 63", "question": "What is the round of pick 63?", "context": "CREATE TABLE table_name_36 (round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_99 WHERE player = \"chris burkett\"", "question": "What is the lowest round of player chris burkett?", "context": "CREATE TABLE table_name_99 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_3 WHERE round = 4 AND school_club_team = \"kutztown state\"", "question": "What is the average pick of school/club team kutztown state with a round 4?", "context": "CREATE TABLE table_name_3 (pick INTEGER, round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT AVG(matches) FROM table_name_79 WHERE name = \"leonardo\" AND seasons > 1", "question": "What is the average number of matches of leonardo in seasons after 1?", "context": "CREATE TABLE table_name_79 (matches INTEGER, name VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT AVG(membership) FROM table_name_15 WHERE _percentage_lds = \"3.33%\" AND branches < 47", "question": "What is the average membership with 3.33% LDS and less than 47 branches?", "context": "CREATE TABLE table_name_15 (membership INTEGER, _percentage_lds VARCHAR, branches VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_49 WHERE 2003 = \"a\" AND 2007 = \"2r\" AND 2012 = \"3r\"", "question": "what is 2005 when 2003 is A, 2007 is 2r and 2012 is 3r?", "context": "CREATE TABLE table_name_49 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_49 WHERE tournament = \"paris masters\"", "question": "what is 2004 when the tournament is paris masters?", "context": "CREATE TABLE table_name_49 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_5 WHERE 2004 = \"107\"", "question": "what is 2009 when 2004 is 107?", "context": "CREATE TABLE table_name_5 (Id VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_37 WHERE 2005 = \"did not qualify\"", "question": "what is 2003 when 2005 is did not qualify?", "context": "CREATE TABLE table_name_37 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_9 WHERE tournament = \"win %\"", "question": "what is 2012 when the tournament is win %?", "context": "CREATE TABLE table_name_9 (tournament VARCHAR)"}, {"answer": "SELECT record FROM table_name_42 WHERE date = \"february 2\"", "question": "What was the record on February 2?", "context": "CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_50 WHERE date = \"february 2\"", "question": "What was the location of the game on February 2?", "context": "CREATE TABLE table_name_50 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_47 WHERE title = \"black swan\" AND award = \"gotham awards\"", "question": "What year was Black Swan up for the Gotham Awards?", "context": "CREATE TABLE table_name_47 (year VARCHAR, title VARCHAR, award VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_21 WHERE title = \"requiem for a dream\" AND category = \"best director\"", "question": "What is the earliest year in which Requiem for a Dream was in the running for Best Director?", "context": "CREATE TABLE table_name_21 (year INTEGER, title VARCHAR, category VARCHAR)"}, {"answer": "SELECT record FROM table_name_16 WHERE location = \"fleetcenter\" AND date = \"fri. apr. 5\"", "question": "Can you tell me the Record that has the Location of fleetcenter, and the Date of fri. apr. 5?", "context": "CREATE TABLE table_name_16 (record VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_61 WHERE game < 76", "question": "Can you tell me the Record that has the Game smaller than 76?", "context": "CREATE TABLE table_name_61 (record VARCHAR, game INTEGER)"}, {"answer": "SELECT MAX(game) FROM table_name_56 WHERE opponent = \"atlanta hawks\"", "question": "Can you tell me the highest Game that has the Opponent of atlanta hawks?", "context": "CREATE TABLE table_name_56 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT game FROM table_name_19 WHERE opponent = \"miami heat\"", "question": "Can you tell me the Game that has the Opponent of miami heat?", "context": "CREATE TABLE table_name_19 (game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_99 WHERE score = \"100-105\"", "question": "Can you tell me the Record that has the Score of 100-105?", "context": "CREATE TABLE table_name_99 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_63 WHERE location_attendance = \"delta center/19,911\" AND date = \"dec 6\"", "question": "Which Opponent has a Location/Attendance of delta center/19,911 on dec 6?", "context": "CREATE TABLE table_name_63 (opponent VARCHAR, location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_36 WHERE game = \"17\"", "question": "What is the Record for Game 17?", "context": "CREATE TABLE table_name_36 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_66 WHERE date = \"dec 14\"", "question": "What is the Location/Attendance on Dec 14?", "context": "CREATE TABLE table_name_66 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_49 WHERE date = \"dec 10\"", "question": "Which Record is dated Dec 10?", "context": "CREATE TABLE table_name_49 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_29 WHERE date = \"dec 2\"", "question": "What was the Location/Attendance on Dec 2?", "context": "CREATE TABLE table_name_29 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT rider FROM table_name_43 WHERE bike = \"honda cbr1000rr\" AND laps < 22 AND time = \"+2 laps\"", "question": "Who rode a Honda CBR1000rr, had fewer than 22 laps, and a time of +2 laps?", "context": "CREATE TABLE table_name_43 (rider VARCHAR, time VARCHAR, bike VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_65 WHERE time = \"+45.162\"", "question": "What is the highest grid when the time is +45.162?", "context": "CREATE TABLE table_name_65 (grid INTEGER, time VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_25 WHERE bike = \"suzuki gsx-r1000\" AND rider = \"fonsi nieto\"", "question": "What is Fonsi Nieto's average grid when he's riding a Suzuki GSX-R1000?", "context": "CREATE TABLE table_name_25 (grid INTEGER, bike VARCHAR, rider VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_46 WHERE rider = \"shinichi nakatomi\"", "question": "How many grids did Shinichi Nakatomi ride in?", "context": "CREATE TABLE table_name_46 (grid INTEGER, rider VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_72 WHERE losing_bonus = \"9\"", "question": "How many tries against have a losing bonus of 9?", "context": "CREATE TABLE table_name_72 (tries_against VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_28 WHERE lost = \"15\"", "question": "How many points were there for 15 losses?", "context": "CREATE TABLE table_name_28 (points_for VARCHAR, lost VARCHAR)"}, {"answer": "SELECT played FROM table_name_74 WHERE points_against = \"271\"", "question": "For which play was the points 271?", "context": "CREATE TABLE table_name_74 (played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points FROM table_name_35 WHERE try_bonus = \"2\"", "question": "How many points were there when the try bonus was 2?", "context": "CREATE TABLE table_name_35 (points VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT 2007 AS _08_season FROM table_name_49 WHERE club = \"genoa c.f.c.\"", "question": "Which 2007\u201308 season has a Club of genoa c.f.c.?", "context": "CREATE TABLE table_name_49 (club VARCHAR)"}, {"answer": "SELECT city FROM table_name_80 WHERE stadium = \"stadio artemio franchi, florence\"", "question": "Which City has a Stadium of stadio artemio franchi, florence?", "context": "CREATE TABLE table_name_80 (city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT description FROM table_name_40 WHERE reserve = \"half moon caye\"", "question": "What is the description when the reserve is Half Moon Caye?", "context": "CREATE TABLE table_name_40 (description VARCHAR, reserve VARCHAR)"}, {"answer": "SELECT district FROM table_name_44 WHERE iucn = \"iii\" AND est = 1998", "question": "Which district has an IUCN of iii and was established in 1998?", "context": "CREATE TABLE table_name_44 (district VARCHAR, iucn VARCHAR, est VARCHAR)"}, {"answer": "SELECT iucn FROM table_name_84 WHERE district = \"cayo\" AND reserve = \"actun tunichil muknal\"", "question": "What is the IUNC of district of Cayo and reserve of Actun Tunichil Muknal?", "context": "CREATE TABLE table_name_84 (iucn VARCHAR, district VARCHAR, reserve VARCHAR)"}, {"answer": "SELECT SUM(avg_finish) FROM table_name_80 WHERE poles < 0", "question": "What is the sum of value for average finish with poles less than 0?", "context": "CREATE TABLE table_name_80 (avg_finish INTEGER, poles INTEGER)"}, {"answer": "SELECT AVG(starts) FROM table_name_34 WHERE wins > 0 AND position = \"32nd\"", "question": "What is the average start with wins larger than 0 and 32nd position?", "context": "CREATE TABLE table_name_34 (starts INTEGER, wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT specific_impulse__s_ FROM table_name_19 WHERE scenario = \"sr-71 at mach 3.2 (wet)\"", "question": "What is the specific impulse for the engine with a scenario of sr-71 at mach 3.2 (wet)?", "context": "CREATE TABLE table_name_19 (specific_impulse__s_ VARCHAR, scenario VARCHAR)"}, {"answer": "SELECT AVG(specific_impulse__s_) FROM table_name_66 WHERE sfc_in_lb__lbf\u00b7h_ = 7.95 AND effective_exhaust_velocity__m_s_ > 4 OFFSET 423", "question": "what is the average specific impulse for engines that have a SFC in lb/(lbf\u00b7h) of 7.95, and a Effective exhaust velocity (m/s) larger than 4,423", "context": "CREATE TABLE table_name_66 (specific_impulse__s_ INTEGER, sfc_in_lb__lbf\u00b7h_ VARCHAR, effective_exhaust_velocity__m_s_ VARCHAR)"}, {"answer": "SELECT college FROM table_name_72 WHERE round < 4", "question": "The draft pick that was taken before round 4 went to what college?", "context": "CREATE TABLE table_name_72 (college VARCHAR, round INTEGER)"}, {"answer": "SELECT player FROM table_name_80 WHERE college = \"depaul\"", "question": "What player went to DePaul University?", "context": "CREATE TABLE table_name_80 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT 1 AS st_round FROM table_name_65 WHERE team_1 = \"sporting toulon var (d2)\"", "question": "What is 1st Round, when Team 1 is Sporting Toulon Var (D2)?", "context": "CREATE TABLE table_name_65 (team_1 VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_86 WHERE score = \"2 - 1\"", "question": "What is Team 2, when Score is 2 - 1?", "context": "CREATE TABLE table_name_86 (team_2 VARCHAR, score VARCHAR)"}, {"answer": "SELECT viewers FROM table_name_1 WHERE event = \"johnson vs. moraga\"", "question": "What is Viewers, when Event is Johnson Vs. Moraga?", "context": "CREATE TABLE table_name_1 (viewers VARCHAR, event VARCHAR)"}, {"answer": "SELECT rating FROM table_name_23 WHERE event = \"johnson vs. dodson\"", "question": "What is Rating, when Event is Johnson Vs. Dodson?", "context": "CREATE TABLE table_name_23 (rating VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_49 WHERE viewers = \"2.4 million\" AND rating = \"1.4\"", "question": "What is Event, when Viewers is 2.4 Million, and when Rating is 1.4?", "context": "CREATE TABLE table_name_49 (event VARCHAR, viewers VARCHAR, rating VARCHAR)"}, {"answer": "SELECT event FROM table_name_4 WHERE date = \"april 20, 2013\"", "question": "What is Event, when Date is April 20, 2013?", "context": "CREATE TABLE table_name_4 (event VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE rating = \"1.5\" AND event = \"johnson vs. moraga\"", "question": "What is Date, when Rating 1.5, and when Event is Johnson Vs. Moraga?", "context": "CREATE TABLE table_name_76 (date VARCHAR, rating VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE viewers = \"4.4 million\"", "question": "What is Date, when Viewers is 4.4 million?", "context": "CREATE TABLE table_name_92 (date VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE player = \"tiger woods\"", "question": "What was Tiger Woods' score?", "context": "CREATE TABLE table_name_57 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE country = \"united states\" AND player = \"justin leonard\"", "question": "How did Justin Leonard of the United States score?", "context": "CREATE TABLE table_name_33 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_16 WHERE country = \"england\"", "question": "Which player is from England?", "context": "CREATE TABLE table_name_16 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_6 WHERE place = \"t5\" AND score = 74 - 70 - 67 = 211", "question": "Who scored 74-70-67=211 and placed t5?", "context": "CREATE TABLE table_name_6 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_62 WHERE score < 72 AND to_par = \"+1\"", "question": "Who is the player with a score less than 72 and a to par of +1?", "context": "CREATE TABLE table_name_62 (player VARCHAR, score VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_71 WHERE to_par = \"+1\"", "question": "Who is the player with a to par of +1?", "context": "CREATE TABLE table_name_71 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_36 WHERE place = \"t9\" AND country = \"united states\" AND player = \"john buczek\"", "question": "What is the to par of player john buczek, who has a t9 place and is from the United States?", "context": "CREATE TABLE table_name_36 (to_par VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_94 WHERE player = \"bobby nichols\"", "question": "What is the to par of player bobby nichols?", "context": "CREATE TABLE table_name_94 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE catalog = \"xllp 369\"", "question": "What was the date for XLLP 369?", "context": "CREATE TABLE table_name_12 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_57 WHERE region = \"canada\"", "question": "What was the label in the region of Canada?", "context": "CREATE TABLE table_name_57 (label VARCHAR, region VARCHAR)"}, {"answer": "SELECT format FROM table_name_36 WHERE label = \"xl\" AND catalog = \"xlcd369\" AND region = \"europe\"", "question": "What is the format in the region of Europe with an XLCD369 and a label of XL?", "context": "CREATE TABLE table_name_36 (format VARCHAR, region VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE region = \"united states\"", "question": "What date was the United States the region?", "context": "CREATE TABLE table_name_25 (date VARCHAR, region VARCHAR)"}, {"answer": "SELECT label FROM table_name_82 WHERE format = \"cd\" AND region = \"argentina\"", "question": "What was the label in the region of Argentina and had a format of CD?", "context": "CREATE TABLE table_name_82 (label VARCHAR, format VARCHAR, region VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_98 WHERE region = \"united states\"", "question": "What is the catalog with the region of the United States?", "context": "CREATE TABLE table_name_98 (catalog VARCHAR, region VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_51 WHERE november > 26 AND game > 18", "question": "Can you tell me the Opponent that has the November larger than 26, and the Game larger than 18?", "context": "CREATE TABLE table_name_51 (opponent VARCHAR, november VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_72 WHERE game = 19", "question": "Can you tell me the Record that has the Game of 19?", "context": "CREATE TABLE table_name_72 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE rockets_score = 94 AND game = 66", "question": "Which Date has a Rockets score of 94, and a Game of 66?", "context": "CREATE TABLE table_name_21 (date VARCHAR, rockets_score VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_17 WHERE rockets_score > 86 AND streak = \"won 1\" AND opponents < 101", "question": "Which Opponent has a Rockets score larger than 86, a Streak of won 1, and Opponents smaller than 101?", "context": "CREATE TABLE table_name_17 (opponent VARCHAR, opponents VARCHAR, rockets_score VARCHAR, streak VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE rockets_score = 107", "question": "Which Opponent has a Rockets score of 107?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, rockets_score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_42 WHERE date = \"march 16\"", "question": "Which Opponent has a Date of march 16?", "context": "CREATE TABLE table_name_42 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE score = \"l 111\u2013122 (ot)\"", "question": "When was the score l 111\u2013122 (ot)?", "context": "CREATE TABLE table_name_84 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE date = \"january 26\"", "question": "What was the score on January 26?", "context": "CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_70 WHERE team = \"minnesota\"", "question": "What game was Minnesota the team?", "context": "CREATE TABLE table_name_70 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_68 WHERE game = 43", "question": "What was the record of Game 43?", "context": "CREATE TABLE table_name_68 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_12 WHERE high_points = \"leandro barbosa (32)\"", "question": "What's the record of the game that Leandro Barbosa (32) had the high points?", "context": "CREATE TABLE table_name_12 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE tie_no = \"29\"", "question": "What is the score when the tie no is 29?", "context": "CREATE TABLE table_name_65 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_62 WHERE away_team = \"watford\"", "question": "What was the tie no when Watford was the away team?", "context": "CREATE TABLE table_name_62 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_49 WHERE away_team = \"luton town\"", "question": "What team was the home team when Luton Town was the home team?", "context": "CREATE TABLE table_name_49 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_23 WHERE tie_no = \"27\"", "question": "What team was the home team when the tie no was 27?", "context": "CREATE TABLE table_name_23 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT bass FROM table_name_2 WHERE label = \"atlantic\" AND year = 1994", "question": "Who played bass in 1994 for the Atlantic label?", "context": "CREATE TABLE table_name_2 (bass VARCHAR, label VARCHAR, year VARCHAR)"}, {"answer": "SELECT drums FROM table_name_89 WHERE album = \"the gray race\"", "question": "Who played drums for the Gray Race album?", "context": "CREATE TABLE table_name_89 (drums VARCHAR, album VARCHAR)"}, {"answer": "SELECT album FROM table_name_32 WHERE bass = \"jay bentley\" AND drums = \"bobby schayer\"", "question": "Which album had Jay Bentley on bass and Bobby Schayer on drums?", "context": "CREATE TABLE table_name_32 (album VARCHAR, bass VARCHAR, drums VARCHAR)"}, {"answer": "SELECT bass FROM table_name_97 WHERE year > 1982 AND album = \"against the grain\"", "question": "Who played the bass for the Against the Grain album after 1982?", "context": "CREATE TABLE table_name_97 (bass VARCHAR, year VARCHAR, album VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_60 WHERE lost < 7", "question": "What is the position when lost is less than 7?", "context": "CREATE TABLE table_name_60 (position INTEGER, lost INTEGER)"}, {"answer": "SELECT MAX(drawn) FROM table_name_17 WHERE position = 14 AND goals_for > 66", "question": "What is the largest drawn number when 14 is the position, and goals for is more than 66?", "context": "CREATE TABLE table_name_17 (drawn INTEGER, position VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_57 WHERE points_1 = \"80\" AND goals_for > 77", "question": "What is the played number with points 1 is 80, and goals for is more than 77?", "context": "CREATE TABLE table_name_57 (played VARCHAR, points_1 VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_42 WHERE position < 4 AND team = \"witton albion\"", "question": "What is the number of played when the position is less than 4, and the team is Witton Albion?", "context": "CREATE TABLE table_name_42 (played VARCHAR, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_40 WHERE points_1 = \"61\"", "question": "What is the position when the points 1 is 61?", "context": "CREATE TABLE table_name_40 (position INTEGER, points_1 VARCHAR)"}, {"answer": "SELECT locality FROM table_name_47 WHERE ofsted < 106478 AND school = \"meadowbank primary and nursery school\"", "question": "Where is the locality with Ofsted less than 106478 for Meadowbank Primary and Nursery School?", "context": "CREATE TABLE table_name_47 (locality VARCHAR, ofsted VARCHAR, school VARCHAR)"}, {"answer": "SELECT website FROM table_name_33 WHERE ofsted < 106478 AND locality = \"atherton\"", "question": "What website has an Ofsted less than 106478 in Atherton?", "context": "CREATE TABLE table_name_33 (website VARCHAR, ofsted VARCHAR, locality VARCHAR)"}, {"answer": "SELECT COUNT(ofsted) FROM table_name_1 WHERE school = \"chowbent primary school\"", "question": "How many values for Ofsted occurr at Chowbent Primary School?", "context": "CREATE TABLE table_name_1 (ofsted VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(league) AS championships FROM table_name_78 WHERE venue = \"penn state ice pavilion\" AND club = \"penn state nittany lions men's ice hockey\"", "question": "Which League championship is the lowest one that has a Venue of penn state ice pavilion, and a Club of penn state nittany lions men's ice hockey?", "context": "CREATE TABLE table_name_78 (league INTEGER, venue VARCHAR, club VARCHAR)"}, {"answer": "SELECT venue FROM table_name_24 WHERE league = \"ncaa\" AND founded < 1965 AND club = \"penn state nittany lions men's ice hockey\"", "question": "Which Venue has a League of ncaa, and a Founded smaller than 1965, and a Club of penn state nittany lions men's ice hockey?", "context": "CREATE TABLE table_name_24 (venue VARCHAR, club VARCHAR, league VARCHAR, founded VARCHAR)"}, {"answer": "SELECT freestyle_leg FROM table_name_69 WHERE country = \"netherlands\"", "question": "What is the freestyle leg for the Netherlands?", "context": "CREATE TABLE table_name_69 (freestyle_leg VARCHAR, country VARCHAR)"}, {"answer": "SELECT state FROM table_name_43 WHERE name = \"li\" AND title = \"marquis\"", "question": "In which state did Marquis Li rule?", "context": "CREATE TABLE table_name_43 (state VARCHAR, name VARCHAR, title VARCHAR)"}, {"answer": "SELECT royal_house FROM table_name_54 WHERE state = \"song\"", "question": "What was the Royal House for the state of Song?", "context": "CREATE TABLE table_name_54 (royal_house VARCHAR, state VARCHAR)"}, {"answer": "SELECT type FROM table_name_41 WHERE state = \"chu\"", "question": "What type of state was Chu?", "context": "CREATE TABLE table_name_41 (type VARCHAR, state VARCHAR)"}, {"answer": "SELECT type FROM table_name_39 WHERE royal_house = \"ji\" AND name = \"yi\" AND state = \"lu\"", "question": "What type of state was Lu, when Yi was the ruler from the royal house of Ji?", "context": "CREATE TABLE table_name_39 (type VARCHAR, state VARCHAR, royal_house VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE competition = \"euro 2004 qualifier\"", "question": "What is Score, when Competition is \"Euro 2004 Qualifier\"?", "context": "CREATE TABLE table_name_73 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_24 WHERE date = \"28 march 2001\"", "question": "What is Competition, when Date is \"28 March 2001\"?", "context": "CREATE TABLE table_name_24 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_78 WHERE date = \"2004-06-26\" AND result = \"loss\"", "question": "who is the opponent on 2004-06-26 with the result of loss?", "context": "CREATE TABLE table_name_78 (opponent VARCHAR, date VARCHAR, result VARCHAR)"}, {"answer": "SELECT location FROM table_name_54 WHERE opponent = \"aleksandr pitchkounov\"", "question": "what is the location when the opponent is aleksandr pitchkounov?", "context": "CREATE TABLE table_name_54 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_66 WHERE location = \"saitama, japan\"", "question": "what is the event when the location is saitama, japan?", "context": "CREATE TABLE table_name_66 (event VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_19 WHERE event = \"k-1 world grand prix 2004 in saitama\"", "question": "what is the location when the event is k-1 world grand prix 2004 in saitama?", "context": "CREATE TABLE table_name_19 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_96 WHERE result = \"win\" AND date = \"2004-06-26\"", "question": "what is the record when the result is win on 2004-06-26?", "context": "CREATE TABLE table_name_96 (record VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT event FROM table_name_50 WHERE result = \"loss\" AND record = \"7-5\"", "question": "what is the event when the result is loss and the record is 7-5?", "context": "CREATE TABLE table_name_50 (event VARCHAR, result VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE result = \"w 13-10\"", "question": "What is the date of the game with a result of W 13-10?", "context": "CREATE TABLE table_name_53 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_11 WHERE finish = \"t21\" AND to_par > 23", "question": "What is the total number of Total(s), when Finish is \"T21\", and when To Par is greater than 23?", "context": "CREATE TABLE table_name_11 (total VARCHAR, finish VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT finish FROM table_name_20 WHERE total = 306", "question": "What is Finish, when Total is \"306\"?", "context": "CREATE TABLE table_name_20 (finish VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_28 WHERE player = \"julius boros\" AND total > 295", "question": "What is the total number of To Par, when Player is \"Julius Boros\", and when Total is greater than 295?", "context": "CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_38 WHERE total = 295", "question": "What is the total number of To Par, when Total is \"295\"?", "context": "CREATE TABLE table_name_38 (to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_58 WHERE year_s__won = \"1948 , 1950 , 1951 , 1953\"", "question": "What is the lowest Total, when Year(s) Won is \"1948 , 1950 , 1951 , 1953\"?", "context": "CREATE TABLE table_name_58 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_39 WHERE role = \"himself\" AND notes = \"celebrity guest alongside yg family\"", "question": "What is the sum of Year, when Role is \"himself\", and when Notes is \"celebrity guest alongside yg family\"?", "context": "CREATE TABLE table_name_39 (year INTEGER, role VARCHAR, notes VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_15 WHERE notes = \"celebrity guest alongside yg family\"", "question": "What is the highest Year, when Notes is \"Celebrity Guest Alongside YG Family\"?", "context": "CREATE TABLE table_name_15 (year INTEGER, notes VARCHAR)"}, {"answer": "SELECT year FROM table_name_59 WHERE role = \"himself\" AND title = \"epik high's love and delusion\"", "question": "What is the Year, when Role is \"himself\", and when Title is \"Epik High's Love And Delusion\"?", "context": "CREATE TABLE table_name_59 (year VARCHAR, role VARCHAR, title VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_53 WHERE title = \"mnet director's cut\"", "question": "What is the sum of Year, when Title is \"Mnet Director's Cut\"?", "context": "CREATE TABLE table_name_53 (year INTEGER, title VARCHAR)"}, {"answer": "SELECT network FROM table_name_86 WHERE title = \"epik high's love and delusion\"", "question": "What is the Network, when Title is \"Epik High's Love And Delusion\"?", "context": "CREATE TABLE table_name_86 (network VARCHAR, title VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_78 WHERE week = 12", "question": "How many were in attendance during week 12?", "context": "CREATE TABLE table_name_78 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE result = \"l 38-14\"", "question": "On what date was the Result l 38-14?", "context": "CREATE TABLE table_name_46 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE week < 3 AND result = \"w 24-13\"", "question": "On what date was the week less than 3 with a result of w 24-13?", "context": "CREATE TABLE table_name_60 (date VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT water_park FROM table_name_72 WHERE rank = 20", "question": "what is the water park with the rank 20?", "context": "CREATE TABLE table_name_72 (water_park VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(2011) FROM table_name_58 WHERE rank < 8 AND water_park = \"ocean world\"", "question": "what is 2011 when the rank is less than 8 and the water park is ocean world?", "context": "CREATE TABLE table_name_58 (rank VARCHAR, water_park VARCHAR)"}, {"answer": "SELECT _percentage_hindu FROM table_name_74 WHERE area = \"azad kashmir\"", "question": "What percentage of Azad Kashmir is Hindu?", "context": "CREATE TABLE table_name_74 (_percentage_hindu VARCHAR, area VARCHAR)"}, {"answer": "SELECT area FROM table_name_71 WHERE _percentage_hindu = \"statistics from the bbc in depth report.\"", "question": "What area shows % Hindu of statistics from the bbc in depth report.?", "context": "CREATE TABLE table_name_71 (area VARCHAR, _percentage_hindu VARCHAR)"}, {"answer": "SELECT population FROM table_name_81 WHERE _percentage_muslim = \"30%\"", "question": "What is the population when the % Muslim shows 30%?", "context": "CREATE TABLE table_name_81 (population VARCHAR, _percentage_muslim VARCHAR)"}, {"answer": "SELECT _percentage_buddhist FROM table_name_39 WHERE population = \"~2.6 million (2.6million)\"", "question": "What is the percentage of Buddhist when the Population is ~2.6 million (2.6million)?", "context": "CREATE TABLE table_name_39 (_percentage_buddhist VARCHAR, population VARCHAR)"}, {"answer": "SELECT area FROM table_name_83 WHERE _percentage_other = \"\u2013\" AND _percentage_muslim = \"95%\"", "question": "What area has a % Other of \u2013, and a % Muslim of 95%?", "context": "CREATE TABLE table_name_83 (area VARCHAR, _percentage_other VARCHAR, _percentage_muslim VARCHAR)"}, {"answer": "SELECT area FROM table_name_13 WHERE _percentage_other = \"3%\"", "question": "What area has a percentage of other of 3%?", "context": "CREATE TABLE table_name_13 (area VARCHAR, _percentage_other VARCHAR)"}, {"answer": "SELECT game FROM table_name_45 WHERE result = \"125-123 (ot)\"", "question": "What Game had a Result of 125-123 (OT)?", "context": "CREATE TABLE table_name_45 (game VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE road_team = \"st. louis\" AND game = \"game 5\"", "question": "What is the Date of Game 5 with Road Team St. Louis?", "context": "CREATE TABLE table_name_10 (date VARCHAR, road_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_64 WHERE game = \"game 3\"", "question": "What is the Road Team of Game 3?", "context": "CREATE TABLE table_name_64 (road_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_16 WHERE road_team = \"st. louis\" AND date = \"april 13\"", "question": "What is the Game on April 13 with Road Team St. Louis?", "context": "CREATE TABLE table_name_16 (game VARCHAR, road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_48 WHERE result = \"124-109\"", "question": "What is the Home Team in the game with a Result of 124-109?", "context": "CREATE TABLE table_name_48 (home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_8 WHERE road_team = \"st. louis\" AND date = \"april 13\"", "question": "What is the Home Team on April 13 with a Road Team of St. Louis?", "context": "CREATE TABLE table_name_8 (home_team VARCHAR, road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE date > 7 AND game = 82", "question": "What is Score, when Date is greater than 7, and when Game is \"82\"?", "context": "CREATE TABLE table_name_29 (score VARCHAR, date VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_67 WHERE location_attendance = \"mellon arena - 17,132\"", "question": "What is Opponent, when Location/Attendance is \"Mellon Arena - 17,132\"?", "context": "CREATE TABLE table_name_67 (opponent VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE game > 78 AND date = 4", "question": "What is Score, when Game is greater than 78, and when Date is \"4\"?", "context": "CREATE TABLE table_name_31 (score VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE opponent = \"tampa bay lightning\"", "question": "What is Score, when Opponent is \"Tampa Bay Lightning\"?", "context": "CREATE TABLE table_name_13 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_2 WHERE score = \"4-5 (ot)\"", "question": "What is Location/Attendance, when Score is \"4-5 (OT)\"?", "context": "CREATE TABLE table_name_2 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT driving_wheels FROM table_name_8 WHERE original_ner_class = \"m1\"", "question": "What driving wheels are on the m1 original NER class?", "context": "CREATE TABLE table_name_8 (driving_wheels VARCHAR, original_ner_class VARCHAR)"}, {"answer": "SELECT 1914 AS _ner_class FROM table_name_78 WHERE lner_class = \"d17/2\"", "question": "What is the 1914 NER class with a d17/2 LNER class?", "context": "CREATE TABLE table_name_78 (lner_class VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE player = \"lew worsham\"", "question": "What was Lew Worsham's score?", "context": "CREATE TABLE table_name_53 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_5 WHERE time_retired = \"+49.222 secs\"", "question": "Which Points have a Time/Retired of +49.222 secs?", "context": "CREATE TABLE table_name_5 (points INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_25 WHERE grid = 4", "question": "What are grid 4's average points?", "context": "CREATE TABLE table_name_25 (points INTEGER, grid VARCHAR)"}, {"answer": "SELECT owner FROM table_name_43 WHERE year > 1985 AND winner = \"give a toast\"", "question": "Who was the owner of Give a Toast after 1985?", "context": "CREATE TABLE table_name_43 (owner VARCHAR, year VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_10 WHERE owner = \"stuart janney iii\"", "question": "What is the earliest year Stuart Janney III was an owner?", "context": "CREATE TABLE table_name_10 (year INTEGER, owner VARCHAR)"}, {"answer": "SELECT winner FROM table_name_41 WHERE year > 1989 AND owner = \"stronach stable\"", "question": "Who was the winner after 1989 when Stronach Stable was the owner?", "context": "CREATE TABLE table_name_41 (winner VARCHAR, year VARCHAR, owner VARCHAR)"}, {"answer": "SELECT trainer FROM table_name_3 WHERE winner = \"mckaymackenna\"", "question": "Who was the trainer when Mckaymackenna won?", "context": "CREATE TABLE table_name_3 (trainer VARCHAR, winner VARCHAR)"}, {"answer": "SELECT tunnel FROM table_name_38 WHERE length__imperial_ = \"307 yd\"", "question": "What Tunnel has an Imperial Length of 307 yd?", "context": "CREATE TABLE table_name_38 (tunnel VARCHAR, length__imperial_ VARCHAR)"}, {"answer": "SELECT type FROM table_name_78 WHERE tunnel = \"downhill\"", "question": "What Type of Tunnel is the Downhill Tunnel?", "context": "CREATE TABLE table_name_78 (type VARCHAR, tunnel VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE country = \"united states\" AND place = \"t6\"", "question": "What did United States score in the place t6?", "context": "CREATE TABLE table_name_21 (score VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_41 WHERE player = \"ted schulz\"", "question": "Which country has the player Ted Schulz?", "context": "CREATE TABLE table_name_41 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_22 WHERE score = 69 - 67 - 69 - 70 = 275", "question": "Which country scored 69-67-69-70=275?", "context": "CREATE TABLE table_name_22 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE game = 17", "question": "What is the Date, when Game is 17?", "context": "CREATE TABLE table_name_69 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE away_team = \"cardiff city\"", "question": "What day was the away team Cardiff City?", "context": "CREATE TABLE table_name_97 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_33 WHERE away_team = \"aston villa\"", "question": "What home team had an away team of Aston Villa?", "context": "CREATE TABLE table_name_33 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_89 WHERE home_team = \"york city\"", "question": "What was the score when York City was home?", "context": "CREATE TABLE table_name_89 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_77 WHERE to_par > 7 AND player = \"corey pavin\"", "question": "If the player is Corey Pavin when he had a To par of over 7, what was the sum of his totals?", "context": "CREATE TABLE table_name_77 (total INTEGER, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_8 WHERE event = \"ufc on fox: velasquez vs. dos santos\"", "question": "What is the round for the ufc on fox: velasquez vs. dos santos event?", "context": "CREATE TABLE table_name_8 (round INTEGER, event VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_31 WHERE attendance = \"71,060\"", "question": "Where was the game played when 71,060 people attended?", "context": "CREATE TABLE table_name_31 (game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_87 WHERE week < 9 AND game_site = \"mile high stadium\"", "question": "When the game was played at Mile High Stadium before week 9, what was the result?", "context": "CREATE TABLE table_name_87 (result VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT result FROM table_name_64 WHERE week > 14 AND opponent = \"houston oilers\"", "question": "Against the Houston Oilers after week 14, what was the result of the game?", "context": "CREATE TABLE table_name_64 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT player FROM table_name_23 WHERE to_par = \"+3\" AND score = 75 - 72 = 147", "question": "What player has +3 to par and score of 75-72=147?", "context": "CREATE TABLE table_name_23 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_30 WHERE to_par = \"+3\" AND score = 74 - 73 = 147", "question": "What is the country that the player is from with +3 to par and score of 74-73=147?", "context": "CREATE TABLE table_name_30 (country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_29 WHERE to_par = \"+2\"", "question": "What player has +2 to par?", "context": "CREATE TABLE table_name_29 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT team FROM table_name_87 WHERE time_retired = \"contact\" AND grid < 17", "question": "Name the Team which has a Time/Retired of contact, and a Grid smaller than 17?", "context": "CREATE TABLE table_name_87 (team VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_53 WHERE nation = \"north korea\" AND total > 5", "question": "What is the average Bronze, when Nation is \"North Korea\", and when Total is greater than 5?", "context": "CREATE TABLE table_name_53 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_83 WHERE \"total\" > 10 AND silver > 0 AND rank = \"total\"", "question": "What is the lowest Bronze, when Total is greater than 10, when Silver is greater than 0, and when Rank is \"Total\"?", "context": "CREATE TABLE table_name_83 (bronze INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT rank FROM table_name_29 WHERE silver < 6 AND bronze > 4 AND total = 10", "question": "What is Rank, when Silver is less than 6, when Bronze is greater than 4, and when Total is 10?", "context": "CREATE TABLE table_name_29 (rank VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT gold FROM table_name_38 WHERE rank = \"7\"", "question": "What is Gold, when Rank is 7?", "context": "CREATE TABLE table_name_38 (gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT surface FROM table_name_15 WHERE date = \"july 26, 2010\"", "question": "what is the surface on july 26, 2010?", "context": "CREATE TABLE table_name_15 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_14 WHERE date = \"august 17, 2008\"", "question": "what is the tournament on august 17, 2008?", "context": "CREATE TABLE table_name_14 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE score = \"7\u20135, 7\u20136 (8\u20136)\"", "question": "who is the opponent when the score is 7\u20135, 7\u20136 (8\u20136)?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_11 WHERE date = \"july 23, 2006\"", "question": "what is the tournament on july 23, 2006?", "context": "CREATE TABLE table_name_11 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE opponent = \"fernando vicente\"", "question": "what is the score when the opponent is fernando vicente?", "context": "CREATE TABLE table_name_9 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_22 WHERE score = \"3\u20136, 6\u20131, 7\u20135\"", "question": "who is the opponent when the score is 3\u20136, 6\u20131, 7\u20135?", "context": "CREATE TABLE table_name_22 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_33 WHERE player = \"scott hoch\"", "question": "What is Scott Hoch's to par?", "context": "CREATE TABLE table_name_33 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_10 WHERE player = \"nolan henke\"", "question": "What place is Nolan Henke in?", "context": "CREATE TABLE table_name_10 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT total_votes FROM table_name_29 WHERE election > 2001 AND share_of_votes = \"44.5%\"", "question": "What is the vote total for elections after 2001 with 44.5% participation?", "context": "CREATE TABLE table_name_29 (total_votes VARCHAR, election VARCHAR, share_of_votes VARCHAR)"}, {"answer": "SELECT MAX(league_cup_goals) FROM table_name_62 WHERE name = \"david beresford\" AND fa_cup_goals < 0", "question": "What is the most league cup goals for David Beresford having less than 0 FA Cup Goals?", "context": "CREATE TABLE table_name_62 (league_cup_goals INTEGER, name VARCHAR, fa_cup_goals VARCHAR)"}, {"answer": "SELECT AVG(league_goals) FROM table_name_95 WHERE league_apps = \"16 (1)\" AND league_cup_goals < 0", "question": "What is the league goals when the league cup goals is less than 0 and 16 (1) league apps?", "context": "CREATE TABLE table_name_95 (league_goals INTEGER, league_apps VARCHAR, league_cup_goals VARCHAR)"}, {"answer": "SELECT league_cup_apps FROM table_name_13 WHERE position = \"mf\" AND league_goals > 3 AND total_apps = \"30 (2)\"", "question": "What is the league cup apps when the league goals are greater than 3, there are 30 (2) total apps, and has a position of mf?", "context": "CREATE TABLE table_name_13 (league_cup_apps VARCHAR, total_apps VARCHAR, position VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT fa_cup_apps FROM table_name_53 WHERE league_goals < 4 AND squad_no = 3", "question": "What is the FA Cup App for Squad Number 3 having fewer than 4 league goals?", "context": "CREATE TABLE table_name_53 (fa_cup_apps VARCHAR, league_goals VARCHAR, squad_no VARCHAR)"}, {"answer": "SELECT MIN(fa_cup) FROM table_name_17 WHERE league_cup = 1 AND total < 12 AND premier_league = 1", "question": "What is the lowest FA cup with 1 league cup, less than 12 total and 1 premier league?", "context": "CREATE TABLE table_name_17 (fa_cup INTEGER, premier_league VARCHAR, league_cup VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(league_cup) FROM table_name_77 WHERE fa_cup > 0 AND premier_league < 34 AND total = 11", "question": "What is the highest league cup with more than 0 FA cups, a premier league less than 34 and a total of 11?", "context": "CREATE TABLE table_name_77 (league_cup INTEGER, total VARCHAR, fa_cup VARCHAR, premier_league VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_43 WHERE name = \"kenwyne jones\" AND premier_league > 10", "question": "What is the average total of kenwyne jones, who has more than 10 premier leagues?", "context": "CREATE TABLE table_name_43 (total INTEGER, name VARCHAR, premier_league VARCHAR)"}, {"answer": "SELECT MAX(league_cup) FROM table_name_97 WHERE name = \"danny collins\" AND premier_league > 1", "question": "What is the highest league cup of danny collins, who has more than 1 premier league?", "context": "CREATE TABLE table_name_97 (league_cup INTEGER, name VARCHAR, premier_league VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_5 WHERE game < 19", "question": "Who had the high assists in the game less than 19?", "context": "CREATE TABLE table_name_5 (high_assists VARCHAR, game INTEGER)"}, {"answer": "SELECT high_rebounds FROM table_name_17 WHERE location_attendance = \"philips arena 12,088\"", "question": "Who had the high rebounds in Philips Arena 12,088?", "context": "CREATE TABLE table_name_17 (high_rebounds VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_59 WHERE score = \"w 108\u2013105 (ot)\"", "question": "Who had the high points when the score was w 108\u2013105 (ot)?", "context": "CREATE TABLE table_name_59 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_97 WHERE result = \"draw\" AND date = \"29 november 1997\"", "question": "What was the competition on 29 November 1997 that resulted in a draw?", "context": "CREATE TABLE table_name_97 (competition VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(area__in_km\u00b2_) FROM table_name_81 WHERE markatal < 0", "question": "What is the average Area (in km\u00b2), when Markatal is less than 0?", "context": "CREATE TABLE table_name_81 (area__in_km\u00b2_ INTEGER, markatal INTEGER)"}, {"answer": "SELECT MAX(markatal) FROM table_name_69 WHERE municipality = \"leirv\u00edk\" AND inhabitants_per_km\u00b2 > 79", "question": "What is the highest Markatal, when Municipality is Leirv\u00edk, and when Inhabitants Per Km\u00b2 is greater than 79?", "context": "CREATE TABLE table_name_69 (markatal INTEGER, municipality VARCHAR, inhabitants_per_km\u00b2 VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_57 WHERE markatal > 48 AND inhabitants_per_km\u00b2 > 24 AND municipality = \"runav\u00edk\"", "question": "What is the sum of Population, when Markatal is greater than 48, when Inhabitants Per Km\u00b2 is greater than 24, and when Municipality is Runav\u00edk?", "context": "CREATE TABLE table_name_57 (population INTEGER, municipality VARCHAR, markatal VARCHAR, inhabitants_per_km\u00b2 VARCHAR)"}, {"answer": "SELECT SUM(markatal) FROM table_name_47 WHERE inhabitants_per_km\u00b2 < 13 AND area__in_km\u00b2_ = 27", "question": "What is the sum of Markatal, when Inhabitants Per Km\u00b2 is less than 13, and when Area (in Km\u00b2) is 27?", "context": "CREATE TABLE table_name_47 (markatal INTEGER, inhabitants_per_km\u00b2 VARCHAR, area__in_km\u00b2_ VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_53 WHERE loses > 1 AND competition = \"fiba europe cup\" AND wins < 4", "question": "How many seasons have Losses larger than 1, and a Competition of fiba europe cup, and Wins smaller than 4?", "context": "CREATE TABLE table_name_53 (season VARCHAR, wins VARCHAR, loses VARCHAR, competition VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_26 WHERE loses > 2 AND against = \"73.3\"", "question": "How many Wins have Losses larger than 2, and an Against of 73.3?", "context": "CREATE TABLE table_name_26 (wins INTEGER, loses VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_54 WHERE date = \"september 26\"", "question": "In what Year was the Game on September 26?", "context": "CREATE TABLE table_name_54 (year INTEGER, date VARCHAR)"}, {"answer": "SELECT loser FROM table_name_32 WHERE result = \"35-27\"", "question": "What was the Loser of the Game with a Result of 35-27?", "context": "CREATE TABLE table_name_32 (loser VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_81 WHERE result = \"16-14\"", "question": "In what Year was the Result of the game 16-14?", "context": "CREATE TABLE table_name_81 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_44 WHERE result = \"34-25\"", "question": "What Year had a Result of 34-25?", "context": "CREATE TABLE table_name_44 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT winner FROM table_name_7 WHERE date = \"november 26\"", "question": "What is the Winner of the Game on November 26?", "context": "CREATE TABLE table_name_7 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_66 WHERE pilot = \"mario kiessling\"", "question": "What is the highest Position, when Pilot is \"Mario Kiessling\"?", "context": "CREATE TABLE table_name_66 (position INTEGER, pilot VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_97 WHERE speed = \"143.5km/h\"", "question": "What is the average Position, when Speed is \"143.5km/h\"?", "context": "CREATE TABLE table_name_97 (position INTEGER, speed VARCHAR)"}, {"answer": "SELECT glider FROM table_name_40 WHERE speed = \"147.3km/h\"", "question": "What is Glider, when Speed is \"147.3km/h\"?", "context": "CREATE TABLE table_name_40 (glider VARCHAR, speed VARCHAR)"}, {"answer": "SELECT distance FROM table_name_64 WHERE pilot = \"stanislaw wujczak\"", "question": "What is Distance, when Pilot is \"Stanislaw Wujczak\"?", "context": "CREATE TABLE table_name_64 (distance VARCHAR, pilot VARCHAR)"}, {"answer": "SELECT player FROM table_name_84 WHERE jersey_number_s_ = \"31\"", "question": "Who has a Jersey number of 31?", "context": "CREATE TABLE table_name_84 (player VARCHAR, jersey_number_s_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_58 WHERE years = \"1999\"", "question": "What was the position in 1999?", "context": "CREATE TABLE table_name_58 (position VARCHAR, years VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_40 WHERE tie_no = \"7\"", "question": "What is the name of the away team with a Tie no of 7?", "context": "CREATE TABLE table_name_40 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_83 WHERE home_team = \"chelsea\"", "question": "What is home team Chelsea's Tie no?", "context": "CREATE TABLE table_name_83 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_97 WHERE tie_no = \"5\"", "question": "What away team has a Tie no of 5?", "context": "CREATE TABLE table_name_97 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE player = \"raymond floyd\"", "question": "Can you tell me the Score that has the Player of raymond floyd?", "context": "CREATE TABLE table_name_76 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_68 WHERE country = \"united states\" AND score = 77 - 72 - 72 = 221", "question": "Can you tell me the Player that has the Country of united states, and the Score of 77-72-72=221?", "context": "CREATE TABLE table_name_68 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_45 WHERE country = \"united states\" AND to_par = 8", "question": "Can you tell me the Score that has the Country of united states, and the To par of 8?", "context": "CREATE TABLE table_name_45 (score VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT time FROM table_name_68 WHERE opponent = \"cleber luciano\"", "question": "What was the time when his opponent was Cleber Luciano?", "context": "CREATE TABLE table_name_68 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_87 WHERE round = 1 AND event = \"ufc 20\"", "question": "What was the method in round 1 of the UFC 20 event?", "context": "CREATE TABLE table_name_87 (method VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT points FROM table_name_90 WHERE tries_for = \"correct as of 00:00 11 june 2008\"", "question": "What is Points, when Tries For is \"correct as of 00:00 11 June 2008\"?", "context": "CREATE TABLE table_name_90 (points VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_52 WHERE lost = \"5\" AND points = \"73\"", "question": "What is Try Bonus, when Lost is \"5\", and when Points is \"73\"?", "context": "CREATE TABLE table_name_52 (try_bonus VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_64 WHERE played = \"20\" AND club = \"caldicot rfc\"", "question": "What is Points, when Played is \"20\", and when Club is \"Caldicot RFC\"?", "context": "CREATE TABLE table_name_64 (points VARCHAR, played VARCHAR, club VARCHAR)"}, {"answer": "SELECT points FROM table_name_67 WHERE drawn = \"1\" AND lost = \"5\"", "question": "What is Points, when Drawn is \"1\", and when Lost is \"5\"?", "context": "CREATE TABLE table_name_67 (points VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT lost FROM table_name_11 WHERE points_for = \"257\"", "question": "What is Lost, when Points For is \"257\"?", "context": "CREATE TABLE table_name_11 (lost VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT lost FROM table_name_64 WHERE losing_bonus = \"3\" AND club = \"bettws rfc\"", "question": "What is Lost, when Losing Bonus is \"3\", and when Club is \"Bettws RFC\"?", "context": "CREATE TABLE table_name_64 (lost VARCHAR, losing_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT record FROM table_name_90 WHERE visitor = \"atlanta hawks\"", "question": "What was the record when the visitor was Atlanta Hawks?", "context": "CREATE TABLE table_name_90 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_78 WHERE score = \"136\u2013120\"", "question": "Who was the visitor when the score was 136\u2013120?", "context": "CREATE TABLE table_name_78 (visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_79 WHERE visitor = \"new york knicks\"", "question": "Who was the home when the visitor was New York Knicks?", "context": "CREATE TABLE table_name_79 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE home = \"los angeles lakers\"", "question": "When was the home Los Angeles Lakers?", "context": "CREATE TABLE table_name_87 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_94 WHERE date = \"december 15, 1976\"", "question": "Who was the visitor on december 15, 1976?", "context": "CREATE TABLE table_name_94 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_85 WHERE location_attendance = \"time warner cable arena 12,096\"", "question": "At Time Warner Cable Arena 12,096, what was the high points?", "context": "CREATE TABLE table_name_85 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_27 WHERE date = \"november 2\"", "question": "On November 2 what was the record of the team?", "context": "CREATE TABLE table_name_27 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(frequency_mhz) FROM table_name_88 WHERE erp_w = \"62\"", "question": "Average frequency with ERP W of 62?", "context": "CREATE TABLE table_name_88 (frequency_mhz INTEGER, erp_w VARCHAR)"}, {"answer": "SELECT COUNT(frequency_mhz) FROM table_name_40 WHERE erp_w = \"62\"", "question": "Total frequency with ERP W of 62?", "context": "CREATE TABLE table_name_40 (frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_name_4 WHERE call_sign = \"kamy\"", "question": "Frequency for kamy?", "context": "CREATE TABLE table_name_4 (frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT method FROM table_name_84 WHERE record = \"23-16-1\"", "question": "What was the method of resolution when LaVerne Clark's record was 23-16-1?", "context": "CREATE TABLE table_name_84 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_name_24 WHERE english_name = \"jiyang\"", "question": "how many subdivisions have an English Name of jiyang?", "context": "CREATE TABLE table_name_24 (population VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_73 WHERE english_name = \"nanbin farm\"", "question": "What is the Population of the subdivision with the English Name of nanbin farm?", "context": "CREATE TABLE table_name_73 (population INTEGER, english_name VARCHAR)"}, {"answer": "SELECT traditional FROM table_name_27 WHERE pinyin = \"h\u00e9d\u014dng q\u016b\"", "question": "What is the Traditional when the Pinyin is h\u00e9d\u014dng q\u016b?", "context": "CREATE TABLE table_name_27 (traditional VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT traditional FROM table_name_28 WHERE area = \"35\"", "question": "What is the Traditional for area 35?", "context": "CREATE TABLE table_name_28 (traditional VARCHAR, area VARCHAR)"}, {"answer": "SELECT class FROM table_name_91 WHERE verb_meaning = \"to run\"", "question": "Which class has the verb meaning of to run?", "context": "CREATE TABLE table_name_91 (class VARCHAR, verb_meaning VARCHAR)"}, {"answer": "SELECT part_1 FROM table_name_81 WHERE class = \"7d\"", "question": "What is the entry for Part 1 for class 7d?", "context": "CREATE TABLE table_name_81 (part_1 VARCHAR, class VARCHAR)"}, {"answer": "SELECT part_3 FROM table_name_31 WHERE part_4 = \"giboran\"", "question": "What is the part 3 entry that has a part 4 entry of giboran?", "context": "CREATE TABLE table_name_31 (part_3 VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT part_2 FROM table_name_36 WHERE class = \"3a\"", "question": "What is the part 2 entry for class 3a?", "context": "CREATE TABLE table_name_36 (part_2 VARCHAR, class VARCHAR)"}, {"answer": "SELECT part_4 FROM table_name_88 WHERE class = \"7b\"", "question": "What is the part 4 entry for class 7b?", "context": "CREATE TABLE table_name_88 (part_4 VARCHAR, class VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE result = \"draw\"", "question": "On what date was the result a draw?", "context": "CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE competition = \"2010 fifa world cup qualification\" AND result = \"win\"", "question": "What is the score at the 2010 FIFA World Cup Qualification that results in a win?", "context": "CREATE TABLE table_name_6 (score VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_name_83 WHERE location = \"cebu\"", "question": "What is the Power (kW) for the station located in Cebu?", "context": "CREATE TABLE table_name_83 (power__kw_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_name_72 WHERE frequency = \"95.1mhz\"", "question": "What is the Power (kW) for the station with a frequency of 95.1mhz?", "context": "CREATE TABLE table_name_72 (power__kw_ VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_31 WHERE branding = \"93dot5 home radio cagayan de oro\"", "question": "What is the Callsign for the station with the branding 93dot5 home radio Cagayan De Oro?", "context": "CREATE TABLE table_name_31 (callsign VARCHAR, branding VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_74 WHERE branding = \"94dot3 home radio palawan\"", "question": "What is the frequency for the station with the branding of 94dot3 home radio Palawan?", "context": "CREATE TABLE table_name_74 (frequency VARCHAR, branding VARCHAR)"}, {"answer": "SELECT branding FROM table_name_25 WHERE location = \"zamboanga\"", "question": "What is the Branding for the station located in Zamboanga?", "context": "CREATE TABLE table_name_25 (branding VARCHAR, location VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_name_26 WHERE frequency = \"98.7mhz\"", "question": "What is the Power (kW) for the station with the frequency of 98.7mhz?", "context": "CREATE TABLE table_name_26 (power__kw_ VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_52 WHERE nation = \"denmark\"", "question": "What is the medal total of Denmark?", "context": "CREATE TABLE table_name_52 (total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT record FROM table_name_32 WHERE game > 24 AND date = \"december 19\"", "question": "What is the record of the game with a game number greater than 24 on December 19?", "context": "CREATE TABLE table_name_32 (record VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_41 WHERE high_assists = \"beno udrih (4)\" AND game = 26", "question": "What is the record of game 26 with beno udrih (4) as the highest assists?", "context": "CREATE TABLE table_name_41 (record VARCHAR, high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE game = 25", "question": "What is the score of game 25?", "context": "CREATE TABLE table_name_37 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_73 WHERE song = \"u ritmu ljubavi\" AND points > 87", "question": "WHAT IS THE DRAW FOR u ritmu ljubavi, POINTS LARGER THAN 87?", "context": "CREATE TABLE table_name_73 (draw INTEGER, song VARCHAR, points VARCHAR)"}, {"answer": "SELECT draw FROM table_name_76 WHERE performer = \"andrea cubric\"", "question": "WHAT IS THE DRAW FOR PERFORMER ANDREA CUBRIC?", "context": "CREATE TABLE table_name_76 (draw VARCHAR, performer VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_77 WHERE record = \"30-22\"", "question": "What is the game number when the record is 30-22?", "context": "CREATE TABLE table_name_77 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_68 WHERE score = \"w 82-76\"", "question": "At what location was the score W 82-76?", "context": "CREATE TABLE table_name_68 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_75 WHERE location = \"rose garden\"", "question": "What was the record when the game was at the Rose Garden?", "context": "CREATE TABLE table_name_75 (record VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_33 WHERE draws > 0 AND lost = 11", "question": "What is the highest number of games with more than 0 draws and 11 losses?", "context": "CREATE TABLE table_name_33 (games INTEGER, draws VARCHAR, lost VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_22 WHERE 1998 = \"2r\"", "question": "What is the 1994 finish in the event that had a 1998 finish of 2R?", "context": "CREATE TABLE table_name_22 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_75 WHERE 1996 = \"a\" AND 1998 = \"a\" AND 1994 = \"rr\"", "question": "Which tournament had a 1994 finish of RR and 1996 and 1998 finishes of A?", "context": "CREATE TABLE table_name_75 (tournament VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_92 WHERE 1997 = \"qf\" AND 1995 = \"3r\"", "question": "What is the 1994 finish associated with a 1995 finish of 3R and 1997 of QF?", "context": "CREATE TABLE table_name_92 (Id VARCHAR)"}, {"answer": "SELECT 1999 FROM table_name_24 WHERE tournament = \"rome\"", "question": "What is the 1999 finish for the tournament in Rome?", "context": "CREATE TABLE table_name_24 (tournament VARCHAR)"}, {"answer": "SELECT 1991 FROM table_name_60 WHERE 1993 = \"grand slams\"", "question": "What is the 1991 finish for the 1993 Grand Slams?", "context": "CREATE TABLE table_name_60 (Id VARCHAR)"}, {"answer": "SELECT playoff_apps FROM table_name_10 WHERE position = \"df\" AND name = \"thomas heary\"", "question": "What was the playoff apps for Thomas Heary, that had the position df?", "context": "CREATE TABLE table_name_10 (playoff_apps VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(squad_no) FROM table_name_28 WHERE total_goals > 6 AND league_goals < 8 AND playoff_goals > 0", "question": "What's the lowest squad number with more than 6 goals, fewer than 8 league goals, and more than 0 playoff goals?", "context": "CREATE TABLE table_name_28 (squad_no INTEGER, playoff_goals VARCHAR, total_goals VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT SUM(total_goals) FROM table_name_88 WHERE playoff_apps = \"2\" AND fa_cup_apps = \"2\" AND league_cup_goals < 0", "question": "How many total goals did the squad with 2 playoff apps, 2 FA Cup Apps, and 0 League Cup goals get?", "context": "CREATE TABLE table_name_88 (total_goals INTEGER, league_cup_goals VARCHAR, playoff_apps VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT title FROM table_name_28 WHERE rank = 9", "question": "Which title had rank 9?", "context": "CREATE TABLE table_name_28 (title VARCHAR, rank VARCHAR)"}, {"answer": "SELECT title FROM table_name_7 WHERE rank = 7", "question": "Which title placed in rank 7?", "context": "CREATE TABLE table_name_7 (title VARCHAR, rank VARCHAR)"}, {"answer": "SELECT volume AS :issue FROM table_name_78 WHERE artist = \"santana featuring the product g&b\"", "question": "shows for the artist Santana featuring the product g&b?", "context": "CREATE TABLE table_name_78 (volume VARCHAR, artist VARCHAR)"}, {"answer": "SELECT volume AS :issue FROM table_name_47 WHERE weeks_on_top = \"3\" AND artist = \"third eye blind\"", "question": "What volume 3 weeks on top for Third Eye Blind?", "context": "CREATE TABLE table_name_47 (volume VARCHAR, weeks_on_top VARCHAR, artist VARCHAR)"}, {"answer": "SELECT music_video FROM table_name_91 WHERE album = \"high society\" AND length = \"3:50\"", "question": "What was the music video that was from the album High Society, with a length of 3:50?", "context": "CREATE TABLE table_name_91 (music_video VARCHAR, album VARCHAR, length VARCHAR)"}, {"answer": "SELECT music_video FROM table_name_96 WHERE album = \"map of the human soul\"", "question": "Which music video was from the album Map of the Human Soul?", "context": "CREATE TABLE table_name_96 (music_video VARCHAR, album VARCHAR)"}, {"answer": "SELECT agg FROM table_name_94 WHERE team_2 = \"cementarnica\"", "question": "What is the agg when team 2 was Cementarnica?", "context": "CREATE TABLE table_name_94 (agg VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT COUNT(podiums) FROM table_name_86 WHERE fastest_laps > 4 AND races < 149", "question": "What are the total number of podiums for more than 4 laps, and less than 149 races?", "context": "CREATE TABLE table_name_86 (podiums VARCHAR, fastest_laps VARCHAR, races VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_name_88 WHERE country = \"fiji\"", "question": "What was the score for the golfer from the country of fiji?", "context": "CREATE TABLE table_name_88 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(score) FROM table_name_96 WHERE to_par = \"e\" AND country = \"united states\"", "question": "What was the score of the golfer from the united states who had a To par of e?", "context": "CREATE TABLE table_name_96 (score INTEGER, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_2 WHERE country = \"united states\" AND place = \"t10\"", "question": "Which united states player finished with a place of t10?", "context": "CREATE TABLE table_name_2 (player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT label FROM table_name_24 WHERE format = \"stereo lp\" AND catalog = \"scyl-934,623\"", "question": "What label uses the stereo LP for catalog scyl-934,623?", "context": "CREATE TABLE table_name_24 (label VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE region = \"new zealand\" AND catalog = \"cy-24623\"", "question": "On what date was the catalog cy-24623 for New Zealand?", "context": "CREATE TABLE table_name_64 (date VARCHAR, region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE catalog = \"scyl-934,623\" AND region = \"australia\"", "question": "On what date was the catalog scyl-934,623 for Australia?", "context": "CREATE TABLE table_name_29 (date VARCHAR, catalog VARCHAR, region VARCHAR)"}, {"answer": "SELECT label FROM table_name_91 WHERE catalog = \"y8hr 1006\" AND date = \"1972\"", "question": "Which label has a catalog of y8hr 1006 in 1972?", "context": "CREATE TABLE table_name_91 (label VARCHAR, catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_10 WHERE format = \"stereo compact cassette\"", "question": "What catalog uses the stereo compact cassette format?", "context": "CREATE TABLE table_name_10 (catalog VARCHAR, format VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_91 WHERE date = \"december 6\"", "question": "What is the average game that has December 6 as the date?", "context": "CREATE TABLE table_name_91 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_32 WHERE date = \"december 17\"", "question": "What is the average game that has December 17 as the date?", "context": "CREATE TABLE table_name_32 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_92 WHERE silver = 0 AND rank = \"6\" AND gold < 0", "question": "Can you tell me the average Total that had the Silver of 0, and the Rank of 6, and the Gold smaller than 0?", "context": "CREATE TABLE table_name_92 (total INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_15 WHERE bronze > 3 AND total < 24", "question": "Can you tell me the highest Gold that has the Bronze larger than 3, and the Total smaller than 24?", "context": "CREATE TABLE table_name_15 (gold INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_87 WHERE bronze < 1 AND total > 4", "question": "Can you tell me the highest Gold that has the Bronze smaller than 1, and the Total larger than 4?", "context": "CREATE TABLE table_name_87 (gold INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(physician__gp_) & _specialist_ FROM table_name_76 WHERE all_nurses = 91", "question": "What is the number of physicians in the region with an all nurses number of 91?", "context": "CREATE TABLE table_name_76 (_specialist_ VARCHAR, physician__gp_ INTEGER, all_nurses VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_27 WHERE type = \"transfer\" AND name = \"andy webster\"", "question": "What is Moving, when Type is \"Transfer\", and when Name is \"Andy Webster\"?", "context": "CREATE TABLE table_name_27 (moving_from VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_65 WHERE ends < 2011", "question": "What is Moving From, when Ends is before 2011?", "context": "CREATE TABLE table_name_65 (moving_from VARCHAR, ends INTEGER)"}, {"answer": "SELECT category FROM table_name_80 WHERE year = 2011", "question": "What was the category that sheridan smith was nominated for in 2011?", "context": "CREATE TABLE table_name_80 (category VARCHAR, year VARCHAR)"}, {"answer": "SELECT award FROM table_name_62 WHERE nominated_work = \"flare path\" AND category = \"best featured actress in a play\"", "question": "What ward was she nominated at for her work, Flare Path for the category of best featured actress in a play?", "context": "CREATE TABLE table_name_62 (award VARCHAR, nominated_work VARCHAR, category VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE category = \"best actress in a musical\" AND award = \"laurence olivier award\" AND year = 2009", "question": "What is the result for the nomination at the Laurence Olivier award in 2009 for best actress in a musical?", "context": "CREATE TABLE table_name_33 (result VARCHAR, year VARCHAR, category VARCHAR, award VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_69 WHERE opponent = \"atlanta falcons\"", "question": "What is the lowest attendance when the Atlanta Falcons were the opponent?", "context": "CREATE TABLE table_name_69 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date_departed FROM table_name_38 WHERE class = \"grimsby class sloop\"", "question": "What's the departed date for Grimsby Class Sloop?", "context": "CREATE TABLE table_name_38 (date_departed VARCHAR, class VARCHAR)"}, {"answer": "SELECT date_departed FROM table_name_51 WHERE navy = \"royal navy\" AND name = \"hms leith\"", "question": "What's the departed date that the HMS Leith of the Royal Navy?", "context": "CREATE TABLE table_name_51 (date_departed VARCHAR, navy VARCHAR, name VARCHAR)"}, {"answer": "SELECT class FROM table_name_51 WHERE name = \"hms fowey\"", "question": "What's the class of the HMS Fowey?", "context": "CREATE TABLE table_name_51 (class VARCHAR, name VARCHAR)"}, {"answer": "SELECT class FROM table_name_75 WHERE name = \"hms heartsease\"", "question": "What's the class of the HMS Heartsease?", "context": "CREATE TABLE table_name_75 (class VARCHAR, name VARCHAR)"}, {"answer": "SELECT record FROM table_name_9 WHERE game > 15 AND opponent = \"edmonton oilers\"", "question": "Can you tell me the Record that has the Game larger than 15, and the Opponent of edmonton oilers?", "context": "CREATE TABLE table_name_9 (record VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE date = \"11/17/1979\"", "question": "Can you tell me the Score that has the Date of 11/17/1979?", "context": "CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_8 WHERE record = \"7-7-1\"", "question": "Can you tell me the Opponent that has the Record of 7-7-1?", "context": "CREATE TABLE table_name_8 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE opponent = \"at edmonton oilers\"", "question": "Can you tell me the Score that has the Opponent of at edmonton oilers?", "context": "CREATE TABLE table_name_97 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE record = \"9-10-2\"", "question": "Can you tell me the Date thay has the Reocrd of 9-10-2?", "context": "CREATE TABLE table_name_11 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT fin_pos FROM table_name_44 WHERE grid = \"3\"", "question": "What is the finishing position for the person who had a grid of 3?", "context": "CREATE TABLE table_name_44 (fin_pos VARCHAR, grid VARCHAR)"}, {"answer": "SELECT team FROM table_name_72 WHERE car_no = \"15\"", "question": "Which team had car number 15?", "context": "CREATE TABLE table_name_72 (team VARCHAR, car_no VARCHAR)"}, {"answer": "SELECT laps FROM table_name_19 WHERE grid = \"10\"", "question": "What is the number of laps completed by the car in grid 10?", "context": "CREATE TABLE table_name_19 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_91 WHERE team = \"andretti green\" AND points = \"32\"", "question": "Which driver earned 32 points from the Andretti Green team?", "context": "CREATE TABLE table_name_91 (driver VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE serial = \"10b\"", "question": "What is the date for the 10b serial?", "context": "CREATE TABLE table_name_46 (date VARCHAR, serial VARCHAR)"}, {"answer": "SELECT team FROM table_name_20 WHERE goals_against < 64 AND points_2 = 63 AND goals_for = 101", "question": "What team has less than 64 goals against, 101 goals for, and a Points 2 total of 63?", "context": "CREATE TABLE table_name_20 (team VARCHAR, goals_for VARCHAR, goals_against VARCHAR, points_2 VARCHAR)"}, {"answer": "SELECT AVG(points_2) FROM table_name_96 WHERE played > 46", "question": "What is the Points 2 average of teams that have played more than 46 games?", "context": "CREATE TABLE table_name_96 (points_2 INTEGER, played INTEGER)"}, {"answer": "SELECT mkhedruli FROM table_name_41 WHERE asomtavruli = \"\u2d12\"", "question": "What is the Mkhedruli symbol for the Asomtavruli \u2d12?", "context": "CREATE TABLE table_name_41 (mkhedruli VARCHAR, asomtavruli VARCHAR)"}, {"answer": "SELECT letter_name FROM table_name_74 WHERE asomtavruli = \"\u2d19\"", "question": "What is the letter name for the Asomtavruli \u2d19?", "context": "CREATE TABLE table_name_74 (letter_name VARCHAR, asomtavruli VARCHAR)"}, {"answer": "SELECT phoneme FROM table_name_43 WHERE nuskhuri = \"\u2d25\"", "question": "What is the Phoneme symbol for \u2d25 in Nuskhuri?", "context": "CREATE TABLE table_name_43 (phoneme VARCHAR, nuskhuri VARCHAR)"}, {"answer": "SELECT phoneme FROM table_name_18 WHERE letter_name = \"z\u025bn\"", "question": "What is the Phoneme symbol for the letter name z\u025bn?", "context": "CREATE TABLE table_name_18 (phoneme VARCHAR, letter_name VARCHAR)"}, {"answer": "SELECT nuskhuri FROM table_name_80 WHERE asomtavruli = \"\u2d0b\"", "question": "What is teh Nuskhuri symbol for \u2d0b in Asomtavruli?", "context": "CREATE TABLE table_name_80 (nuskhuri VARCHAR, asomtavruli VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_87 WHERE position = \"linebacker\" AND player = \"bob bruenig\" AND round < 3", "question": "What is the average value for Pick #, when Position is Linebacker, when Player is Bob Bruenig, and when Round is less than 3?", "context": "CREATE TABLE table_name_87 (pick__number INTEGER, round VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_36 WHERE position = \"guard\" AND round > 2", "question": "What is the sum of Pick #, when Position is Guard, and when Round is greater than 2?", "context": "CREATE TABLE table_name_36 (pick__number INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_22 WHERE pick__number > 70 AND position = \"tackle\"", "question": "What is the average Round, when Pick # is greater than 70, and when Position is Tackle?", "context": "CREATE TABLE table_name_22 (round INTEGER, pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_50 WHERE position = \"linebacker\" AND player = \"thomas henderson\"", "question": "What is the lowest Round, when Position is Linebacker, and when Player is Thomas Henderson?", "context": "CREATE TABLE table_name_50 (round INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_55 WHERE college = \"oklahoma\" AND round < 4", "question": "What is the total number of Pick #, when College is Oklahoma, and when Round is less than 4?", "context": "CREATE TABLE table_name_55 (pick__number VARCHAR, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT team FROM table_name_60 WHERE head_coach = \"michalis pamboris\"", "question": "Which Team has a Head Coach of michalis pamboris?", "context": "CREATE TABLE table_name_60 (team VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_23 WHERE kitmaker = \"umbro\"", "question": "What is umbro's highest capacity?", "context": "CREATE TABLE table_name_23 (capacity INTEGER, kitmaker VARCHAR)"}, {"answer": "SELECT venue FROM table_name_37 WHERE kitmaker = \"lotto\" AND team = \"apoel\"", "question": "Which Venue has a Kitmaker of lotto, and a Team of apoel?", "context": "CREATE TABLE table_name_37 (venue VARCHAR, kitmaker VARCHAR, team VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_12 WHERE tries_for = \"58\"", "question": "What is the drawn number when there are 58 tries?", "context": "CREATE TABLE table_name_12 (drawn VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT played FROM table_name_1 WHERE tries_against = \"correct as of 18:13 26 may 2008\"", "question": "What is the played number when the tries against shows correct as of 18:13 26 May 2008?", "context": "CREATE TABLE table_name_1 (played VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_85 WHERE points_for = \"402\"", "question": "What is the drawn when there are 402 points?", "context": "CREATE TABLE table_name_85 (drawn VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_90 WHERE points_against = \"492\"", "question": "What is the try bonus when there are 492 points?", "context": "CREATE TABLE table_name_90 (try_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_19 WHERE tries_against = \"53\"", "question": "What is the number of points against when the tries against was 53?", "context": "CREATE TABLE table_name_19 (points_against VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT played FROM table_name_78 WHERE points_against = \"179\"", "question": "What is the played number when the points against is 179?", "context": "CREATE TABLE table_name_78 (played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT COUNT(series_percent) FROM table_name_63 WHERE total_attempted < 49 AND percent_made = 0.777", "question": "what is the total series percent that has total attempted less than 49, and a percent made of 0.777", "context": "CREATE TABLE table_name_63 (series_percent VARCHAR, total_attempted VARCHAR, percent_made VARCHAR)"}, {"answer": "SELECT COUNT(total_attempted) FROM table_name_21 WHERE total_made = 16", "question": "what is the total attempted with a total made 16", "context": "CREATE TABLE table_name_21 (total_attempted VARCHAR, total_made VARCHAR)"}, {"answer": "SELECT SUM(district) FROM table_name_67 WHERE took_office > 1981 AND senator = \"cyndi taylor krier\"", "question": "What is the sum of District, when Took Office is greater than 1981, and when Senator is Cyndi Taylor Krier?", "context": "CREATE TABLE table_name_67 (district INTEGER, took_office VARCHAR, senator VARCHAR)"}, {"answer": "SELECT party FROM table_name_22 WHERE district < 10 AND took_office < 1991 AND home_town = \"mount pleasant\"", "question": "What is Party, when District is less than 10, when Took Office is less than 1991, and when Home Town is Mount Pleasant?", "context": "CREATE TABLE table_name_22 (party VARCHAR, home_town VARCHAR, district VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT MIN(took_office) FROM table_name_50 WHERE senator = \"eddie bernice johnson\" AND district > 23", "question": "What is the lowest Took Office, when Senator is Eddie Bernice Johnson, and when District is greater than 23?", "context": "CREATE TABLE table_name_50 (took_office INTEGER, senator VARCHAR, district VARCHAR)"}, {"answer": "SELECT period FROM table_name_9 WHERE player = \"stanislav chistov\"", "question": "In which period did Stanislav Chistov get a penalty?", "context": "CREATE TABLE table_name_9 (period VARCHAR, player VARCHAR)"}, {"answer": "SELECT penalty FROM table_name_89 WHERE time = \"29:17\"", "question": "What was a penalty given for at time 29:17?", "context": "CREATE TABLE table_name_89 (penalty VARCHAR, time VARCHAR)"}, {"answer": "SELECT team FROM table_name_13 WHERE time = \"32:17\"", "question": "What team was the player that received a penalty at time 32:17 playing for?", "context": "CREATE TABLE table_name_13 (team VARCHAR, time VARCHAR)"}, {"answer": "SELECT team FROM table_name_87 WHERE penalty = \"roughing\" AND player = \"ryan callahan\"", "question": "What team was Ryan Callahan, who received a penalty for roughing, playing for?", "context": "CREATE TABLE table_name_87 (team VARCHAR, penalty VARCHAR, player VARCHAR)"}, {"answer": "SELECT head_coach FROM table_name_95 WHERE opponent = \"arsenal\"", "question": "Who was the head coach when the opponent was Arsenal?", "context": "CREATE TABLE table_name_95 (head_coach VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_33 WHERE head_coach = \"b. sathianathan\"", "question": "Who was the opponent when the head coach was B. Sathianathan?", "context": "CREATE TABLE table_name_33 (opponent VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE opponent = \"arsenal\"", "question": "When was the opponent Arsenal?", "context": "CREATE TABLE table_name_62 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_56 WHERE opponent = \"arsenal\"", "question": "What was the result when the opponent was Arsenal?", "context": "CREATE TABLE table_name_56 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(Home) AS wins FROM table_name_89 WHERE institution = \"boston college eagles\" AND wins > 6", "question": "What is the sum of the home wins of the Boston College Eagles, which has more than 6 wins?", "context": "CREATE TABLE table_name_89 (Home INTEGER, institution VARCHAR, wins VARCHAR)"}, {"answer": "SELECT record FROM table_name_40 WHERE opponent = \"evangelista cyborg\"", "question": "What is the Record when Evangelista Cyborg was the opponent?", "context": "CREATE TABLE table_name_40 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_55 WHERE location = \"brazil\"", "question": "What is the Method for Brazil?", "context": "CREATE TABLE table_name_55 (method VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_18 WHERE method = \"submission (punches)\"", "question": "What round was the method submission (punches)?", "context": "CREATE TABLE table_name_18 (round VARCHAR, method VARCHAR)"}, {"answer": "SELECT method FROM table_name_63 WHERE record = \"3-2\"", "question": "What is the method when the record was 3-2?", "context": "CREATE TABLE table_name_63 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_35 WHERE round = 3", "question": "What is the method when the round shows 3?", "context": "CREATE TABLE table_name_35 (method VARCHAR, round VARCHAR)"}, {"answer": "SELECT run_3 FROM table_name_4 WHERE rank = \"12\"", "question": "What was the run 3 for the team in rank 12?", "context": "CREATE TABLE table_name_4 (run_3 VARCHAR, rank VARCHAR)"}, {"answer": "SELECT run_3 FROM table_name_40 WHERE run_1 = \"1:17.6\"", "question": "What was the run 3 for the team with a run 1 of 1:17.6?", "context": "CREATE TABLE table_name_40 (run_3 VARCHAR, run_1 VARCHAR)"}, {"answer": "SELECT rank FROM table_name_71 WHERE run_2 = \"1:20.8\" AND run_4 = \"1:23.0\"", "question": "What was the rank of the team with a run 2 of 1:20.8 and a run 4 of 1:23.0?", "context": "CREATE TABLE table_name_71 (rank VARCHAR, run_2 VARCHAR, run_4 VARCHAR)"}, {"answer": "SELECT run_1 FROM table_name_9 WHERE run_3 = \"1:21.4\" AND run_4 = \"1:23.0\"", "question": "What was the run 1 for the team with a run 3 of 1:21.4 and a run 4 of 1:23.0?", "context": "CREATE TABLE table_name_9 (run_1 VARCHAR, run_3 VARCHAR, run_4 VARCHAR)"}, {"answer": "SELECT team FROM table_name_7 WHERE run_4 = \"1:24.4\"", "question": "Which team had a run 4 of 1:24.4?", "context": "CREATE TABLE table_name_7 (team VARCHAR, run_4 VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_40 WHERE opponent = \"oakland raiders\"", "question": "What is the Attendance at the game against the Oakland Raiders?", "context": "CREATE TABLE table_name_40 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_59 WHERE week = 10", "question": "What was the Attendance in Week 10?", "context": "CREATE TABLE table_name_59 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT principal_activities FROM table_name_76 WHERE incorporated_in = \"france\"", "question": "Which Principal activities have an Incorporated in of france?", "context": "CREATE TABLE table_name_76 (principal_activities VARCHAR, incorporated_in VARCHAR)"}, {"answer": "SELECT type FROM table_name_54 WHERE incorporated_in = \"netherlands\" AND principal_activities = \"airline\" AND company = \"transavia.com\"", "question": "Which Type has an Incorporated in of netherlands, a Principal activities of airline, and a Company of transavia.com?", "context": "CREATE TABLE table_name_54 (type VARCHAR, company VARCHAR, incorporated_in VARCHAR, principal_activities VARCHAR)"}, {"answer": "SELECT type FROM table_name_21 WHERE company = \"epcor\"", "question": "Which Type has a Company of epcor?", "context": "CREATE TABLE table_name_21 (type VARCHAR, company VARCHAR)"}, {"answer": "SELECT type FROM table_name_28 WHERE principal_activities = \"health services\"", "question": "Which Type has a Principal activities of health services?", "context": "CREATE TABLE table_name_28 (type VARCHAR, principal_activities VARCHAR)"}, {"answer": "SELECT 2 AS __vf_ FROM table_name_75 WHERE verb = \"dhoa\"", "question": "For the verb dhoa, what is the 2VF?", "context": "CREATE TABLE table_name_75 (verb VARCHAR)"}, {"answer": "SELECT subject FROM table_name_63 WHERE election = \"general\" AND office = \"queen anne's county state's attorney\"", "question": "What is the name of the subject who ran in the general election for Queen Anne's County State's Attorney?", "context": "CREATE TABLE table_name_63 (subject VARCHAR, election VARCHAR, office VARCHAR)"}, {"answer": "SELECT writer FROM table_name_2 WHERE company = \"bbv\" AND title = \"the year of the cat\"", "question": "Who was the writer of The Year of the Cat from the BBV?", "context": "CREATE TABLE table_name_2 (writer VARCHAR, company VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_83 WHERE drawn = 10", "question": "How many Goals For have Drawn of 10?", "context": "CREATE TABLE table_name_83 (goals_for VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_94 WHERE drawn > 12 AND goals_against = 54", "question": "Which Lost has Drawn larger than 12, and Goals Against of 54?", "context": "CREATE TABLE table_name_94 (lost INTEGER, drawn VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT record FROM table_name_68 WHERE event = \"superbrawl 21\"", "question": "What is the record for the Superbrawl 21?", "context": "CREATE TABLE table_name_68 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_43 WHERE round = 1 AND opponent = \"ricky shivers\"", "question": "What location shows round was 1, and against Ricky Shivers?", "context": "CREATE TABLE table_name_43 (location VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_67 WHERE round > 2 AND res = \"loss\" AND record = \"15\u20133\"", "question": "What is the method for a match with a Round larger than 2, he took a loss, and 15\u20133 was the record?", "context": "CREATE TABLE table_name_67 (method VARCHAR, record VARCHAR, round VARCHAR, res VARCHAR)"}, {"answer": "SELECT position FROM table_name_8 WHERE pick = \"11 (via calgary)\"", "question": "Which Position has a Pick of 11 (via calgary)?", "context": "CREATE TABLE table_name_8 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_88 WHERE pick = \"25 (via hamilton)\"", "question": "Which Round has a Pick of 25 (via hamilton)?", "context": "CREATE TABLE table_name_88 (round INTEGER, pick VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_15 WHERE round > 3 AND player = \"sammy okpro\"", "question": "Which School/Club Team has a Round larger than 3, and a Player of sammy okpro?", "context": "CREATE TABLE table_name_15 (school_club_team VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_32 WHERE player = \"sammy okpro\"", "question": "Which Round has a Player of sammy okpro?", "context": "CREATE TABLE table_name_32 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_34 WHERE round = 4 AND school_club_team = \"concordia\"", "question": "Which Position has a Round of 4, and a School/Club Team of concordia?", "context": "CREATE TABLE table_name_34 (position VARCHAR, round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE record = \"29\u201323\u201313\"", "question": "What is the Score of the game with a Record of 29\u201323\u201313?", "context": "CREATE TABLE table_name_21 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_70 WHERE record = \"21\u201317\u201313\"", "question": "What is the Visitor of the game with a Record of 21\u201317\u201313?", "context": "CREATE TABLE table_name_70 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_26 WHERE date = \"december 25\"", "question": "What is the Visitor of the game on December 25?", "context": "CREATE TABLE table_name_26 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE record = \"8\u201310\u20136\"", "question": "What is the Date of the game with a Record of 8\u201310\u20136?", "context": "CREATE TABLE table_name_99 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE record = \"1\u20132\u20134\"", "question": "What is the Date of the game with a Record of 1\u20132\u20134?", "context": "CREATE TABLE table_name_27 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE record = \"27\u201321\u201313\"", "question": "What is the Date of the game with a Record of 27\u201321\u201313?", "context": "CREATE TABLE table_name_11 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_42 WHERE total < 292 AND player = \"hale irwin\"", "question": "Which Year(s) won has a Total smaller than 292, and a Player of hale irwin?", "context": "CREATE TABLE table_name_42 (year_s__won VARCHAR, total VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_12 WHERE player = \"fuzzy zoeller\"", "question": "What is fuzzy zoeller's to par?", "context": "CREATE TABLE table_name_12 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_15 WHERE year_s__won = \"1982\"", "question": "What To par was won in 1982?", "context": "CREATE TABLE table_name_15 (to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_26 WHERE player = \"curtis strange\"", "question": "What is curtis strange's to par?", "context": "CREATE TABLE table_name_26 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE date = \"november 18\"", "question": "WHAT IS THE SCORE WITH A DATE OF NOVEMBER 18?", "context": "CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_27 WHERE date = \"february 9\"", "question": "WHAT IS THE VISITOR FOR FEBRUARY 9?", "context": "CREATE TABLE table_name_27 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_96 WHERE score < 70", "question": "What is the place of the player who scored less than 70?", "context": "CREATE TABLE table_name_96 (place VARCHAR, score INTEGER)"}, {"answer": "SELECT player FROM table_name_21 WHERE pick__number > 38 AND cfl_team = \"saskatchewan\"", "question": "Which player was chosen by Saskatchewan in a pick larger than 38?", "context": "CREATE TABLE table_name_21 (player VARCHAR, pick__number VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_78 WHERE assists = 7 AND games = 11 AND goals < 6", "question": "If the goals scored were below 6, 11 games were played, and there were 7 assists, what's the sum of points with games meeting these criteria?", "context": "CREATE TABLE table_name_78 (points INTEGER, goals VARCHAR, assists VARCHAR, games VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_64 WHERE assists > 10", "question": "What's the highest amount of Games recorded that have more than 10 assists?", "context": "CREATE TABLE table_name_64 (games INTEGER, assists INTEGER)"}, {"answer": "SELECT updated_in_past_30_days FROM table_name_93 WHERE registration = \"open to people 13 and over\"", "question": "What is Updated In Past 30 Days, when Registration is \"Open to people 13 and over\"?", "context": "CREATE TABLE table_name_93 (updated_in_past_30_days VARCHAR, registration VARCHAR)"}, {"answer": "SELECT permanent_account FROM table_name_96 WHERE updated_in_past_30_days = \"10324\"", "question": "What is Permanent Account, when Updated In Past 30 Days is 10324?", "context": "CREATE TABLE table_name_96 (permanent_account VARCHAR, updated_in_past_30_days VARCHAR)"}, {"answer": "SELECT userpics_free FROM table_name_18 WHERE registration = \"open\" AND yearly_cost_for_paid_account = \"unknown\" AND name = \"kraslan\"", "question": "What is Userpics Free, when Registration is Open, when Yearly Cost For Paid Account is \"unknown\", and when Name is Kraslan?", "context": "CREATE TABLE table_name_18 (userpics_free VARCHAR, name VARCHAR, registration VARCHAR, yearly_cost_for_paid_account VARCHAR)"}, {"answer": "SELECT userpics_free FROM table_name_89 WHERE monthly_cost_for_paid_account = \"unknown\" AND s_registered_user = \"2340\"", "question": "What is Userpics Free, when Monthly Cost For Paid Account is \"unknown\", and when S Registered User is 2340?", "context": "CREATE TABLE table_name_89 (userpics_free VARCHAR, monthly_cost_for_paid_account VARCHAR, s_registered_user VARCHAR)"}, {"answer": "SELECT yearly_cost_for_paid_account FROM table_name_94 WHERE monthly_cost_for_paid_account = \"5 usd\" AND userpics_paid = \"50\"", "question": "What is Yearly Cost For Paid Account, when Montly Cost For Paid Account is 5 USD, and when Userpics Paid is 50?", "context": "CREATE TABLE table_name_94 (yearly_cost_for_paid_account VARCHAR, monthly_cost_for_paid_account VARCHAR, userpics_paid VARCHAR)"}, {"answer": "SELECT s_registered_user FROM table_name_98 WHERE userpics_free = \"6 [free] or 15 [plus]\"", "question": "What is the S Registered User, when Userpics Free is 6 [free] or 15 [plus]?", "context": "CREATE TABLE table_name_98 (s_registered_user VARCHAR, userpics_free VARCHAR)"}, {"answer": "SELECT venue FROM table_name_72 WHERE date = \"2003-08-13\"", "question": "What is Venue, when Date is \"2003-08-13\"?", "context": "CREATE TABLE table_name_72 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE date = \"2000-05-23\"", "question": "What is Score, when Date is \"2000-05-23\"?", "context": "CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_57 WHERE date = \"2000-05-23\"", "question": "What is Result, when Date is \"2000-05-23\"?", "context": "CREATE TABLE table_name_57 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_13 WHERE date = \"1999-08-07\"", "question": "What is Competition, when Date is \"1999-08-07\"?", "context": "CREATE TABLE table_name_13 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_65 WHERE winners = \"serena williams 6\u20131, 6\u20137(7), 6\u20133\"", "question": "In what Week was Serena Williams 6\u20131, 6\u20137(7), 6\u20133 the Winner?", "context": "CREATE TABLE table_name_65 (week VARCHAR, winners VARCHAR)"}, {"answer": "SELECT finalists FROM table_name_34 WHERE surface = \"hard\" AND winners = \"serena williams 6\u20131, 6\u20137(7), 6\u20133\"", "question": "Who was the Finalist on a Hard Surface with Winner Serena Williams 6\u20131, 6\u20137(7), 6\u20133?", "context": "CREATE TABLE table_name_34 (finalists VARCHAR, surface VARCHAR, winners VARCHAR)"}, {"answer": "SELECT week FROM table_name_70 WHERE tournament = \"rome\"", "question": "In what Week is the Rome Tournament?", "context": "CREATE TABLE table_name_70 (week VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT region FROM table_name_5 WHERE label = \"zzt\" AND date = \"27 september 2004\"", "question": "Which regio has a label of zzt and a date of 27 september 2004?", "context": "CREATE TABLE table_name_5 (region VARCHAR, label VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_44 WHERE date = \"24 march 2006\"", "question": "Which catalog has a date of 24 march 2006?", "context": "CREATE TABLE table_name_44 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_19 WHERE region = \"united kingdom\"", "question": "Which format has a region of united kingdom?", "context": "CREATE TABLE table_name_19 (format VARCHAR, region VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE region = \"united kingdom\"", "question": "Which date has a region of united kingdom?", "context": "CREATE TABLE table_name_54 (date VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_name_15 WHERE date = \"24 march 2006\"", "question": "Which regio has a date of 24 march 2006?", "context": "CREATE TABLE table_name_15 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT a330 FROM table_name_62 WHERE a310 = \"b10\"", "question": "What is the A330 for A310 B10?", "context": "CREATE TABLE table_name_62 (a330 VARCHAR, a310 VARCHAR)"}, {"answer": "SELECT a330 FROM table_name_62 WHERE a310 = \"wide\"", "question": "What is the A330 and the A310 wide?", "context": "CREATE TABLE table_name_62 (a330 VARCHAR, a310 VARCHAR)"}, {"answer": "SELECT model FROM table_name_48 WHERE a310 = \"1983\"", "question": "What model is the A310 of 1983?", "context": "CREATE TABLE table_name_48 (model VARCHAR, a310 VARCHAR)"}, {"answer": "SELECT no_2 FROM table_name_7 WHERE no_6 = \"ethan\" AND no_3 = \"mason\"", "question": "What name is in the number 2 spot when Ethan is in the number 6 spot and Mason is in the number 3 spot?", "context": "CREATE TABLE table_name_7 (no_2 VARCHAR, no_6 VARCHAR, no_3 VARCHAR)"}, {"answer": "SELECT region__year_ FROM table_name_98 WHERE no_2 = \"jacob\" AND no_10 = \"ryan\"", "question": "In what region and year was Jacob the number 2 name and Ryan the number 10 name?", "context": "CREATE TABLE table_name_98 (region__year_ VARCHAR, no_2 VARCHAR, no_10 VARCHAR)"}, {"answer": "SELECT no_7 FROM table_name_68 WHERE no_1 = \"mason\" AND no_9 = \"jackson\" AND no_10 = \"logan\" AND no_6 = \"owen\"", "question": "What name was number 7 when Mason was number 1, Owen was number 6, Jackson was number 9, and Logan was number 10?", "context": "CREATE TABLE table_name_68 (no_7 VARCHAR, no_6 VARCHAR, no_10 VARCHAR, no_1 VARCHAR, no_9 VARCHAR)"}, {"answer": "SELECT no_4 FROM table_name_29 WHERE no_7 = \"aiden\" AND no_3 = \"james\"", "question": "What name was in the number 4 spot when Aiden was number 7 and James was number 3?", "context": "CREATE TABLE table_name_29 (no_4 VARCHAR, no_7 VARCHAR, no_3 VARCHAR)"}, {"answer": "SELECT position FROM table_name_87 WHERE player = \"damon jones\"", "question": "What is the positions of Damon Jones?", "context": "CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_name_11 WHERE school_club_team = \"stanford\"", "question": "for how many years did the player who graduated from stanford play for Grizzlies?", "context": "CREATE TABLE table_name_11 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_24 WHERE player = \"dahntay jones\"", "question": "Which school did Dahntay Jones graduate from?", "context": "CREATE TABLE table_name_24 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_76 WHERE school_club_team = \"florida state\"", "question": "Which player gradyated from Florida State?", "context": "CREATE TABLE table_name_76 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT playoffs_mvp FROM table_name_65 WHERE result = \"4\u20131\" AND champions = \"daejeon hyundai dynat\"", "question": "What is the Playoffs MVP of the game with a Result of 4\u20131 with Champions Daejeon Hyundai Dynat?", "context": "CREATE TABLE table_name_65 (playoffs_mvp VARCHAR, result VARCHAR, champions VARCHAR)"}, {"answer": "SELECT year FROM table_name_86 WHERE result = \"4\u20133\" AND champions = \"daegu tongyang orions\"", "question": "What is the Year of the game with Result of 4\u20133 and Champions of Daegu Tongyang Orions?", "context": "CREATE TABLE table_name_86 (year VARCHAR, result VARCHAR, champions VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_1 WHERE result = \"4\u20131\" AND champions = \"wonju dongbu promy\"", "question": "What is the Runners-up of the game with a Result of 4\u20131 and Champions of Wonju Dongbu Promy?", "context": "CREATE TABLE table_name_1 (runners_up VARCHAR, result VARCHAR, champions VARCHAR)"}, {"answer": "SELECT venue FROM table_name_58 WHERE opponent = \"linfield\"", "question": "Where was the venue that Linfield was the opponent?", "context": "CREATE TABLE table_name_58 (venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT scorer FROM table_name_17 WHERE club = \"aldershot\" AND league_goals = \"19\"", "question": "Which scorer plays for Aldershot and has scored a total of 19 League goals?", "context": "CREATE TABLE table_name_17 (scorer VARCHAR, club VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT MAX(league_cup_goals) FROM table_name_6 WHERE club = \"hartlepool\"", "question": "What is the highest number of League Cup goals that were scored by Hartlepool?", "context": "CREATE TABLE table_name_6 (league_cup_goals INTEGER, club VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE venue = \"north shore events centre\"", "question": "When was the game at the North Shore Events Centre?", "context": "CREATE TABLE table_name_99 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT report FROM table_name_59 WHERE home_team = \"townsville crocodiles\"", "question": "What is the report corresponding to the game that had the Townsville Crocodiles as home team?", "context": "CREATE TABLE table_name_59 (report VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE away_team = \"sydney spirit\"", "question": "When was the game that had Sydney Spirit as the away team?", "context": "CREATE TABLE table_name_64 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT Box AS score FROM table_name_95 WHERE home_team = \"townsville crocodiles\"", "question": "What was the box score for the game that had the Townsville Crocodiles as home team?", "context": "CREATE TABLE table_name_95 (Box VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT Box AS score FROM table_name_23 WHERE home_team = \"cairns taipans\"", "question": "What was the box score for the game that had the Cairns Taipans as home team?", "context": "CREATE TABLE table_name_23 (Box VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_71 WHERE time_retired = \"+33.912\"", "question": "What's the lap number for time/retired of +33.912?", "context": "CREATE TABLE table_name_71 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_18 WHERE rider = \"shinya nakano\" AND grid < 10", "question": "Total laps for Shinya Nakano at smaller than 10 grids.", "context": "CREATE TABLE table_name_18 (laps VARCHAR, rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT player FROM table_name_18 WHERE jersey_number_s_ = \"2\"", "question": "Which player wears the number 2 on his jersey?", "context": "CREATE TABLE table_name_18 (player VARCHAR, jersey_number_s_ VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_48 WHERE team = \"san antonio spurs\"", "question": "What is the highest number of rebounds of the san antonio spurs?", "context": "CREATE TABLE table_name_48 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE game = 4", "question": "What was the score of game 4?", "context": "CREATE TABLE table_name_84 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE score = \"w 105-88\"", "question": "What is the date of the game with a w 105-88 score?", "context": "CREATE TABLE table_name_78 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT game FROM table_name_37 WHERE team = \"golden state warriors\"", "question": "What is the game with the golden state warriors?", "context": "CREATE TABLE table_name_37 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_98 WHERE school = \"southern mississippi\"", "question": "What is the Pick # of the Player from Southern MIssissippi?", "context": "CREATE TABLE table_name_98 (pick VARCHAR, school VARCHAR)"}, {"answer": "SELECT round FROM table_name_23 WHERE player = \"derrick franklin\"", "question": "In what Round was Derrick Franklin picked?", "context": "CREATE TABLE table_name_23 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_49 WHERE pick > 9 AND school = \"duke\"", "question": "In what Round does Duke have a Pick larger than 9?", "context": "CREATE TABLE table_name_49 (round VARCHAR, pick VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_19 WHERE player = \"tommy norman\"", "question": "In what Round was Tommy Norman picked?", "context": "CREATE TABLE table_name_19 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_5 WHERE 1998 = \"1.5\"", "question": "What is the 2000 value if the 1998 value is 1.5?", "context": "CREATE TABLE table_name_5 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_73 WHERE 1998 = \"35\"", "question": "What is the 2004 value if the 1998 value is 35?", "context": "CREATE TABLE table_name_73 (Id VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_3 WHERE 2000 = \"25\"", "question": "What is the 1998 value if the 2000 value is 25?", "context": "CREATE TABLE table_name_3 (Id VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_13 WHERE 2007 = \"8\"", "question": "What is the 1998 value if the 2007 value is 8?", "context": "CREATE TABLE table_name_13 (Id VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_67 WHERE 1998 = \"1.5\"", "question": "What is the 2000 value if the 1998 value is 1.5?", "context": "CREATE TABLE table_name_67 (Id VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_86 WHERE 2011 = \"30.4\"", "question": "What is the 1998 value if the 2011 value is 30.4?", "context": "CREATE TABLE table_name_86 (Id VARCHAR)"}, {"answer": "SELECT interface FROM table_name_58 WHERE product = \"xerox travel scanner 100\"", "question": "What is the interface of the product xerox travel scanner 100?", "context": "CREATE TABLE table_name_58 (interface VARCHAR, product VARCHAR)"}, {"answer": "SELECT pages_per_minute__color_ FROM table_name_31 WHERE max_page_size = \"a4\" AND dimensions__mm_ = \"303 x 94 x 60\"", "question": "What is the pages per minute (color) of the machine that has a max page size of a4 and dimensions (mm) of 303 x 94 x 60?", "context": "CREATE TABLE table_name_31 (pages_per_minute__color_ VARCHAR, max_page_size VARCHAR, dimensions__mm_ VARCHAR)"}, {"answer": "SELECT club FROM table_name_51 WHERE name = \"guus hiddink\"", "question": "What club had Guus Hiddink as outgoing manager?", "context": "CREATE TABLE table_name_51 (club VARCHAR, name VARCHAR)"}, {"answer": "SELECT date_of_departure FROM table_name_46 WHERE name = \"brendan rodgers\"", "question": "When did Brendan Rodgers depart his position?", "context": "CREATE TABLE table_name_46 (date_of_departure VARCHAR, name VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_17 WHERE replacement = \"paulo sousa\"", "question": "On what date was Paulo Sousa appointed?", "context": "CREATE TABLE table_name_17 (date_of_appointment VARCHAR, replacement VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_24 WHERE date = \"april 9\"", "question": "Who had the high rebounds, and how many did he have, for the game played on April 9?", "context": "CREATE TABLE table_name_24 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE time = \"3:44\"", "question": "What date did a game have a time of 3:44?", "context": "CREATE TABLE table_name_55 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_96 WHERE game > 4", "question": "What was the attendance for the game after game 4?", "context": "CREATE TABLE table_name_96 (attendance VARCHAR, game INTEGER)"}, {"answer": "SELECT geographic_character FROM table_name_69 WHERE population__2010_ > 2539 AND urban_rural = \"rural\" AND population__2007_ = 2572", "question": "WHAT IS THE TYPE OF LAND WITH A 2010 POPULATION GREATER THAN 2539, A RURAL AREA, AND A 2007 POPULATION OF 2572?", "context": "CREATE TABLE table_name_69 (geographic_character VARCHAR, population__2007_ VARCHAR, population__2010_ VARCHAR, urban_rural VARCHAR)"}, {"answer": "SELECT geographic_character FROM table_name_10 WHERE population__2007_ < 4346 AND population__2010_ > 3385 AND barangay = \"manalongon\"", "question": "WHAT IS THE TYPE OF LAND WITH A 2007 POPULATION SMALLER THAN 4346, 2010 POPULATION LARGER THAN 3385, FROM BARANGAY OF MANALONGON?", "context": "CREATE TABLE table_name_10 (geographic_character VARCHAR, barangay VARCHAR, population__2007_ VARCHAR, population__2010_ VARCHAR)"}, {"answer": "SELECT COUNT(population__2007_) FROM table_name_2 WHERE population__2010_ < 1282", "question": "WHAT IS THE POPULATION OF 2007 WHEN 2010 POPULATION WAS SMALLER THAN 1282?", "context": "CREATE TABLE table_name_2 (population__2007_ VARCHAR, population__2010_ INTEGER)"}, {"answer": "SELECT COUNT(points) FROM table_name_42 WHERE played < 30", "question": "What is the number of points when the played is less than 30?", "context": "CREATE TABLE table_name_42 (points VARCHAR, played INTEGER)"}, {"answer": "SELECT SUM(goals_for) FROM table_name_27 WHERE goal_difference < 43 AND position < 3", "question": "What is the number of goals when the goal difference was less than 43, and the position less than 3?", "context": "CREATE TABLE table_name_27 (goals_for INTEGER, goal_difference VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_53 WHERE points < 34 AND draws = 7 AND club = \"sd eibar\"", "question": "What is the position when the points were less than 34, draws of 7, and a Club of sd eibar?", "context": "CREATE TABLE table_name_53 (position INTEGER, club VARCHAR, points VARCHAR, draws VARCHAR)"}, {"answer": "SELECT goals_against FROM table_name_44 WHERE goal_difference < 43 AND wins < 13 AND losses > 14", "question": "What is the number of goals against when the goal difference was less than 43, the Wins less than 13, and losses more than 14?", "context": "CREATE TABLE table_name_44 (goals_against VARCHAR, losses VARCHAR, goal_difference VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(goal_difference) FROM table_name_72 WHERE goals_against < 76 AND position > 5 AND played > 30", "question": "What is the highest Goal Difference when the goals against were less than 76, and the position larger than 5, and a Played larger than 30?", "context": "CREATE TABLE table_name_72 (goal_difference INTEGER, played VARCHAR, goals_against VARCHAR, position VARCHAR)"}, {"answer": "SELECT producer FROM table_name_31 WHERE director = \"richard clark\"", "question": "Who is the producer for the director Richard Clark?", "context": "CREATE TABLE table_name_31 (producer VARCHAR, director VARCHAR)"}, {"answer": "SELECT MIN(block) FROM table_name_79 WHERE director = \"graeme harper\"", "question": "What is the lowest block for director Graeme Harper?", "context": "CREATE TABLE table_name_79 (block INTEGER, director VARCHAR)"}, {"answer": "SELECT skip FROM table_name_1 WHERE country = \"finland\"", "question": "What is the skip when the country is finland?", "context": "CREATE TABLE table_name_1 (skip VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(ends_lost) FROM table_name_16 WHERE stolen_ends_for < 13 AND stolen_ends_against = 6", "question": "What is the lowest ends lost when the stolen ends for is less than 13, and stolten ends against is 6?", "context": "CREATE TABLE table_name_16 (ends_lost INTEGER, stolen_ends_for VARCHAR, stolen_ends_against VARCHAR)"}, {"answer": "SELECT SUM(shot__percentage) FROM table_name_72 WHERE country = \"finland\" AND ends_lost > 49", "question": "What is the sum shot % when the country is finland, and an ends lost is larger than 49?", "context": "CREATE TABLE table_name_72 (shot__percentage INTEGER, country VARCHAR, ends_lost VARCHAR)"}, {"answer": "SELECT stolen_ends_against FROM table_name_36 WHERE blank_ends_f_a = \"4/7\" AND country = \"china\"", "question": "What is the stolen ends against for a bank ends f/a of 4/7, and a country of china?", "context": "CREATE TABLE table_name_36 (stolen_ends_against VARCHAR, blank_ends_f_a VARCHAR, country VARCHAR)"}, {"answer": "SELECT location FROM table_name_36 WHERE year > 1974 AND date = \"september 19\"", "question": "what is the location when the year is after 1974 and the date is september 19?", "context": "CREATE TABLE table_name_36 (location VARCHAR, year VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_68 WHERE year < 1979 AND result = \"19-17\"", "question": "what is the location when the year is before 1979 and the result is 19-17?", "context": "CREATE TABLE table_name_68 (location VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_7 WHERE year = 1970 AND location = \"yankee stadium\"", "question": "what is the result for 1970 at yankee stadium?", "context": "CREATE TABLE table_name_7 (result VARCHAR, year VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_74 WHERE location = \"yankee stadium\" AND result = \"23-23\"", "question": "what is the year when the location is yankee stadium and the result is 23-23", "context": "CREATE TABLE table_name_74 (year INTEGER, location VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_47 WHERE name = \"eoin jess category:articles with hcards\" AND scottish_cup > 23", "question": "Which Total has a Name of eoin jess category:articles with hcards, and a Scottish Cup larger than 23?", "context": "CREATE TABLE table_name_47 (total INTEGER, name VARCHAR, scottish_cup VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_25 WHERE name = \"alex mcleish category:articles with hcards\" AND league < 494", "question": "Which Total has a Name of alex mcleish category:articles with hcards, and a League smaller than 494?", "context": "CREATE TABLE table_name_25 (total INTEGER, name VARCHAR, league VARCHAR)"}, {"answer": "SELECT SUM(league) AS Cup FROM table_name_42 WHERE scottish_cup > 69", "question": "Which League Cup has a Scottish Cup larger than 69?", "context": "CREATE TABLE table_name_42 (league INTEGER, scottish_cup INTEGER)"}, {"answer": "SELECT COUNT(scottish_cup) FROM table_name_22 WHERE league < 561 AND years = \"1989\u20131995 1997\u20132001\" AND europe < 11", "question": "Which Scottish Cup has a League smaller than 561, Years of 1989\u20131995 1997\u20132001, and Europe smaller than 11?", "context": "CREATE TABLE table_name_22 (scottish_cup VARCHAR, europe VARCHAR, league VARCHAR, years VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_87 WHERE nfl_club = \"houston oilers\" AND round > 10", "question": "What is the highest pick of the houston oilers NFL club, which has a round greater than 10?", "context": "CREATE TABLE table_name_87 (pick INTEGER, nfl_club VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_63 WHERE nfl_club = \"new york jets\"", "question": "What is the round of the new york jets NFL club?", "context": "CREATE TABLE table_name_63 (round VARCHAR, nfl_club VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_60 WHERE nfl_club = \"new york jets\" AND pick < 166", "question": "What is the sum of the round of the new york jets NFL club, which has a pick less than 166?", "context": "CREATE TABLE table_name_60 (round INTEGER, nfl_club VARCHAR, pick VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_25 WHERE tournament = \"madrid masters\"", "question": "WHAT IS THE 2012 PERFORMANCE FOR THE MADRID MASTERS?", "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_48 WHERE tournament = \"tournaments played\"", "question": "WHAT IS THE 2011 PERFORMANCE FOR TOURNAMENTS PLAYED?", "context": "CREATE TABLE table_name_48 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_19 WHERE 2009 = \"0\" AND tournament = \"finals\"", "question": "WHAT IS THE 2010 PERFORMANCE THAT HAD 2009 0F 0, AND FINALS TOURNAMENT?", "context": "CREATE TABLE table_name_19 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_68 WHERE tournament = \"tournaments played\"", "question": "WHAT IS THE 2009 PERFORMANCE FOR TOURNAMENTS PLAYED?", "context": "CREATE TABLE table_name_68 (tournament VARCHAR)"}, {"answer": "SELECT scorers FROM table_name_83 WHERE round = \"round 3\"", "question": "Who were the scorers in round 3?", "context": "CREATE TABLE table_name_83 (scorers VARCHAR, round VARCHAR)"}, {"answer": "SELECT h___a FROM table_name_90 WHERE opponents = \"oldham athletic\" AND round = \"semi-final\"", "question": "What is the H/A in the semi-final round where oldham athletic were the opponents?", "context": "CREATE TABLE table_name_90 (h___a VARCHAR, opponents VARCHAR, round VARCHAR)"}, {"answer": "SELECT scorers FROM table_name_94 WHERE opponents = \"oldham athletic\" AND round = \"semi-final\"", "question": "Who were the scorers in the semi-final round where oldham athletic were the opponents?", "context": "CREATE TABLE table_name_94 (scorers VARCHAR, opponents VARCHAR, round VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_66 WHERE score = \"1\u20136, 6\u20133, 3\u20136\"", "question": "Where was the tournament where the score was 1\u20136, 6\u20133, 3\u20136?", "context": "CREATE TABLE table_name_66 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_80 WHERE score = \"4\u20136, 6\u20134, 6\u20132\"", "question": "Who did thomaz bellucci play against when the score was 4\u20136, 6\u20134, 6\u20132?", "context": "CREATE TABLE table_name_80 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_18 WHERE surface = \"hard\" AND partner = \"akiko yonemura\"", "question": "What was the outcome of the tournament with Akiko Yonemura as a partner on a hard surface?", "context": "CREATE TABLE table_name_18 (outcome VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_62 WHERE 2011 = \"1r\" AND 2012 = \"1r\" AND 2005 = \"a\" AND 2010 = \"1r\"", "question": "Which tournament has 1r in 2011, 1r in 2012, A in 2005, and 1r in 2010?", "context": "CREATE TABLE table_name_62 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_75 WHERE 2012 = \"1r\" AND 2005 = \"a\"", "question": "What is the 2010 value with a 1r in 2012 and an A in 2005?", "context": "CREATE TABLE table_name_75 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_96 WHERE 2009 = \"2r\" AND 2010 = \"2r\"", "question": "What is the tournament with a 2r in 2009 and a 2r in 2010?", "context": "CREATE TABLE table_name_96 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_10 WHERE 2012 = \"grand slam tournaments\"", "question": "What is the 2011 value of the 2012 grand slam tournaments?", "context": "CREATE TABLE table_name_10 (Id VARCHAR)"}, {"answer": "SELECT record FROM table_name_13 WHERE game = \"45\"", "question": "What was the record after game 45?", "context": "CREATE TABLE table_name_13 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE location_attendance = \"delta center\" AND record = \"35-14\"", "question": "What was the date of the game at the delta center when the record was 35-14?", "context": "CREATE TABLE table_name_35 (date VARCHAR, location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_50 WHERE location_attendance = \"keyarena at seattle center\"", "question": "Who was the opponent, during the game at the location of keyarena at seattle center?", "context": "CREATE TABLE table_name_50 (opponent VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT label FROM table_name_28 WHERE format = \"cd\" AND release = \"we are the rage\"", "question": "What is the label of release we are the rage with a cd format?", "context": "CREATE TABLE table_name_28 (label VARCHAR, format VARCHAR, release VARCHAR)"}, {"answer": "SELECT winner FROM table_name_43 WHERE year < 1956 AND date = \"october 21\"", "question": "Who was the winning team before 1956 on October 21?", "context": "CREATE TABLE table_name_43 (winner VARCHAR, year VARCHAR, date VARCHAR)"}, {"answer": "SELECT loser FROM table_name_71 WHERE winner = \"new york giants\" AND date = \"november 14\"", "question": "Who was the loser when the New York Giants were the winners on November 14?", "context": "CREATE TABLE table_name_71 (loser VARCHAR, winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_62 WHERE loser = \"philadelphia eagles\" AND location = \"yankee stadium\" AND year > 1958", "question": "Who was the winner when the Philadelphia eagles were the losers after 1958 at Yankee Stadium?", "context": "CREATE TABLE table_name_62 (winner VARCHAR, year VARCHAR, loser VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_11 WHERE result = \"29-14\"", "question": "What location was the game with the result of 29-14?", "context": "CREATE TABLE table_name_11 (location VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_3 WHERE home_team = \"wigan athletic\"", "question": "What is the score of the wigan athletic home team?", "context": "CREATE TABLE table_name_3 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_6 WHERE tie_no = \"2\"", "question": "What is the away team with a 2 tie no.?", "context": "CREATE TABLE table_name_6 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_23 WHERE home_team = \"wigan athletic\"", "question": "What is the away team for the home team wigan athletic?", "context": "CREATE TABLE table_name_23 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE date = \"23 november 1983\" AND away_team = \"exeter city\"", "question": "What is the score on 23 November 1983 with exeter city as the away team?", "context": "CREATE TABLE table_name_31 (score VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_6 WHERE record = \"33\u201315\"", "question": "Who had the high assists when the record was 33\u201315?", "context": "CREATE TABLE table_name_6 (high_assists VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE location_attendance = \"at&t center 18,797\" AND game < 57", "question": "What date was the location attendance at&t center 18,797, and a game earlier than 57?", "context": "CREATE TABLE table_name_24 (date VARCHAR, location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_27 WHERE score = \"l 107\u2013112 (ot)\"", "question": "What player had the high assists when the Score was l 107\u2013112 (ot)?", "context": "CREATE TABLE table_name_27 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT name FROM table_name_87 WHERE market_value__bn$_ < 5.59 AND rank > 39 AND assets__bn$_ > 27.46", "question": "Which company had a market value less than $5.59 billion, assets greater than $27.46 billion, and a rank above 39?", "context": "CREATE TABLE table_name_87 (name VARCHAR, assets__bn$_ VARCHAR, market_value__bn$_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_49 WHERE assets__bn$_ = 70.74 AND market_value__bn$_ > 11.29", "question": "How many ranks have assets of $70.74 billion and market value greater than $11.29 billion?", "context": "CREATE TABLE table_name_49 (rank VARCHAR, assets__bn$_ VARCHAR, market_value__bn$_ VARCHAR)"}, {"answer": "SELECT SUM(revenue__bn) AS $_ FROM table_name_98 WHERE assets__bn$_ < 3.46 AND headquarters = \"hong kong\" AND profit__bn$_ > 0.17 AND rank > 42", "question": "What is the sum of revenue in Hong Kong with a rank greater than 42, less than $3.46 billion in assets, and greater than $0.17 billion in profits?", "context": "CREATE TABLE table_name_98 (revenue__bn INTEGER, rank VARCHAR, profit__bn$_ VARCHAR, assets__bn$_ VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_57 WHERE silver < 0", "question": "What is the highest number of gold medals when the silver is less than 0?", "context": "CREATE TABLE table_name_57 (gold INTEGER, silver INTEGER)"}, {"answer": "SELECT SUM(sri_lankans_admitted) FROM table_name_96 WHERE year = \"2004\" AND nepalis_admitted > 594", "question": "How many Sri Lankans were admitted in 2004 when more than 594 Nepalis were admitted?", "context": "CREATE TABLE table_name_96 (sri_lankans_admitted INTEGER, year VARCHAR, nepalis_admitted VARCHAR)"}, {"answer": "SELECT AVG(bangladeshis_admitted) FROM table_name_23 WHERE nepalis_admitted = 714 AND pakistanis_admitted > 13 OFFSET 575", "question": "How many Bangladeshis were admitted when 714 Nepalis and 13,575 Pakistanis were admitted?", "context": "CREATE TABLE table_name_23 (bangladeshis_admitted INTEGER, nepalis_admitted VARCHAR, pakistanis_admitted VARCHAR)"}, {"answer": "SELECT MAX(nepalis_admitted) FROM table_name_67 WHERE bangladeshis_admitted < 1 OFFSET 896", "question": "What was the most Nepalis admitted when fewer than 1,896 Bangladeshis were admitted?", "context": "CREATE TABLE table_name_67 (nepalis_admitted INTEGER, bangladeshis_admitted INTEGER)"}, {"answer": "SELECT frequency FROM table_name_67 WHERE first_published = \"april 27, 2010\"", "question": "What is the frequency that the magazine issues that was first published on april 27, 2010?", "context": "CREATE TABLE table_name_67 (frequency VARCHAR, first_published VARCHAR)"}, {"answer": "SELECT magazine_type FROM table_name_32 WHERE title = \"dengeki game appli\"", "question": "What was the type of the magazine that was named dengeki game appli?", "context": "CREATE TABLE table_name_32 (magazine_type VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_36 WHERE magazine_type = \"video game\" AND frequency = \"bimonthly\"", "question": "What is the name of the video game magazine that was issued bimonthly?", "context": "CREATE TABLE table_name_36 (title VARCHAR, magazine_type VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT parent_magazine FROM table_name_6 WHERE frequency = \"bimonthly\" AND magazine_type = \"manga\" AND title = \"dengeki moeoh\"", "question": "What was the parent magazine for the manga magazine, dengeki moeoh that was issued bimonthly?", "context": "CREATE TABLE table_name_6 (parent_magazine VARCHAR, title VARCHAR, frequency VARCHAR, magazine_type VARCHAR)"}, {"answer": "SELECT parent_magazine FROM table_name_88 WHERE first_published = \"december 16, 2004\"", "question": "What was the parent magazine of the magazine that was first published on december 16, 2004?", "context": "CREATE TABLE table_name_88 (parent_magazine VARCHAR, first_published VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_23 WHERE pick = 22 AND college = \"rice\" AND round > 10", "question": "WHAT IS THE OVERALL AVERAGE WITH A 22 PICK, FROM RICE COLLEGE, AND ROUND BIGGER THAN 10?", "context": "CREATE TABLE table_name_23 (overall INTEGER, round VARCHAR, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_50 WHERE pick = 23", "question": "WHAT POSITION HAS A 23 PICK?", "context": "CREATE TABLE table_name_50 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_85 WHERE round > 9 AND position = \"rb\"", "question": "WHAT IS THE AVERAGE OVERALL WITH A ROUND LARGER THAN 9, AND RB POSITION?", "context": "CREATE TABLE table_name_85 (overall INTEGER, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_73 WHERE round > 7 AND pick = 21", "question": "WHAT IS THE TOTAL NUMBER WITH A ROUND BIGGER THAN 7 AND PICK OF 21?", "context": "CREATE TABLE table_name_73 (overall VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_26 WHERE overall = 273", "question": "WHAT POSITION IS 273?", "context": "CREATE TABLE table_name_26 (position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(stls) FROM table_name_27 WHERE rebs > 8.6", "question": "What is the lowest Stls, when Rebs is greater than 8.6?", "context": "CREATE TABLE table_name_27 (stls INTEGER, rebs INTEGER)"}, {"answer": "SELECT SUM(blks) FROM table_name_49 WHERE stls = 1 AND rebs > 8.6", "question": "What is the sum of Blks, when Stls is 1, and when Rebs is greater than 8.6?", "context": "CREATE TABLE table_name_49 (blks INTEGER, stls VARCHAR, rebs VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_72 WHERE october < 18 AND game = 3", "question": "Which opponent played in game 3 before October 18?", "context": "CREATE TABLE table_name_72 (opponent VARCHAR, october VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_70 WHERE october > 24 AND record = \"6-2-1\"", "question": "Which game was after October 24 and had a record of 6-2-1?", "context": "CREATE TABLE table_name_70 (game VARCHAR, october VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_23 WHERE round > 12 AND position = \"kicker\"", "question": "What was the lowest pick for the kicker after round 12?", "context": "CREATE TABLE table_name_23 (pick INTEGER, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_29 WHERE round < 11 AND player = \"charley casey\"", "question": "How many picks had less than 11 rounds and a player of Charley Casey?", "context": "CREATE TABLE table_name_29 (pick INTEGER, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_13 WHERE position = \"kicker\"", "question": "How many rounds had a position of kicker?", "context": "CREATE TABLE table_name_13 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_7 WHERE pick > 80 AND player = \"walt mainer\"", "question": "Which position had a pick larger than 80 and Walt Mainer as a player?", "context": "CREATE TABLE table_name_7 (position VARCHAR, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE away = \"deportes savio\"", "question": "What is the score of the match with deportes savio as the away team?", "context": "CREATE TABLE table_name_57 (score VARCHAR, away VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_92 WHERE score = \"1:2\"", "question": "What is the total attendance of the match with a 1:2 score?", "context": "CREATE TABLE table_name_92 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_60 WHERE attendance < 2248 AND score = \"2:0\" AND date = \"21 september 2008\"", "question": "What is the home team of the match on 21 September 2008 with an attendance less than 2248 and a 2:0 score?", "context": "CREATE TABLE table_name_60 (home VARCHAR, date VARCHAR, attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_59 WHERE score = \"2:0\" AND away = \"vida\"", "question": "What is the highest attendance of the match with a 2:0 score and vida as the away team?", "context": "CREATE TABLE table_name_59 (attendance INTEGER, score VARCHAR, away VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE home = \"olimpia\"", "question": "What is the score of the home team olimpia?", "context": "CREATE TABLE table_name_14 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE attendance = 2248", "question": "What is the score of the match with an attendance of 2248?", "context": "CREATE TABLE table_name_66 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(seats_up_for_election) FROM table_name_96 WHERE election_result > 8 AND staying_councillors = 24", "question": "Which Seats up for election have an Election result larger than 8, and Staying councillors of 24?", "context": "CREATE TABLE table_name_96 (seats_up_for_election INTEGER, election_result VARCHAR, staying_councillors VARCHAR)"}, {"answer": "SELECT AVG(new_council) FROM table_name_33 WHERE election_result > 24", "question": "Which New council has an Election result larger than 24?", "context": "CREATE TABLE table_name_33 (new_council INTEGER, election_result INTEGER)"}, {"answer": "SELECT AVG(staying_councillors) FROM table_name_22 WHERE new_council = 7 AND previous_council > 8", "question": "Which Staying councillors have a New council of 7, and a Previous council larger than 8?", "context": "CREATE TABLE table_name_22 (staying_councillors INTEGER, new_council VARCHAR, previous_council VARCHAR)"}, {"answer": "SELECT record FROM table_name_67 WHERE game < 24 AND location = \"miami arena\"", "question": "What was the record when they played in the Miami Arena, before game 24?", "context": "CREATE TABLE table_name_67 (record VARCHAR, game VARCHAR, location VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_2 WHERE game > 26 AND record = \"23-4\"", "question": "Who was the opponent when they played after Game 26 and their record was 23-4?", "context": "CREATE TABLE table_name_2 (opponent VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE location = \"boston garden\" AND record = \"22-4\"", "question": "On what date did they play in Boston Garden with a record of 22-4?", "context": "CREATE TABLE table_name_24 (date VARCHAR, location VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_11 WHERE location = \"boston garden\" AND date = \"wed. dec. 5\"", "question": "What was their record on Wed. Dec. 5, when they played in Boston Garden?", "context": "CREATE TABLE table_name_11 (record VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_18 WHERE player = \"lon hinkle\"", "question": "What place in Lon Hinkle in?", "context": "CREATE TABLE table_name_18 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_33 WHERE player = \"mark hayes\"", "question": "What country does Mark Hayes play for?", "context": "CREATE TABLE table_name_33 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(to_par) FROM table_name_23 WHERE country = \"united states\" AND year_s__won = \"1973\"", "question": "What is the sum of To Par, when Country is \"United States\", and when Year(s) Won is \"1973\"?", "context": "CREATE TABLE table_name_23 (to_par INTEGER, country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT player FROM table_name_54 WHERE total > 288 AND country = \"south africa\"", "question": "What is Player, when Total is greater than 288, and when Country is \"South Africa\"?", "context": "CREATE TABLE table_name_54 (player VARCHAR, total VARCHAR, country VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_24 WHERE to_par > 13", "question": "What is Year(s) Won, when To Par is greater than 13?", "context": "CREATE TABLE table_name_24 (year_s__won VARCHAR, to_par INTEGER)"}, {"answer": "SELECT residence FROM table_name_49 WHERE representative = \"quincy murphy\"", "question": "What residence has representative Quincy Murphy?", "context": "CREATE TABLE table_name_49 (residence VARCHAR, representative VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_81 WHERE venue = \"adelaide oval\"", "question": "Who is the home captain when the venue is adelaide oval?", "context": "CREATE TABLE table_name_81 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE date = \"september 20\"", "question": "What was the score in the September 20 game?", "context": "CREATE TABLE table_name_57 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_23 WHERE date = \"september 22\"", "question": "Where was the September 22 game played?", "context": "CREATE TABLE table_name_23 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE date = \"september 26\"", "question": "What was the score in the September 26 game?", "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE time = \"7:30pm\"", "question": "Who was the opposing team in the game(s) that started at 7:30pm?", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE time = \"7:00pm\" AND location = \"scotiabank place\" AND opponent = \"philadelphia flyers\"", "question": "What was the score of the 7:00pm game at Scotiabank Place against the Philadelphia Flyers?", "context": "CREATE TABLE table_name_12 (score VARCHAR, opponent VARCHAR, time VARCHAR, location VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_16 WHERE date = \"october 26\"", "question": "What is the attendance of the match on October 26?", "context": "CREATE TABLE table_name_16 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_number FROM table_name_78 WHERE result = \"w27-16\"", "question": "What is the opponent number of the match with a w27-16 result?", "context": "CREATE TABLE table_name_78 (opponent_number VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_9 WHERE attendance = \"73,855\"", "question": "What is the result of the match with an attendance of 73,855?", "context": "CREATE TABLE table_name_9 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT rank__number FROM table_name_72 WHERE date = \"october 19\"", "question": "What is the rank of the match on October 19?", "context": "CREATE TABLE table_name_72 (rank__number VARCHAR, date VARCHAR)"}, {"answer": "SELECT scorers FROM table_name_63 WHERE opponent = \"aberdeen\"", "question": "Who was the scorer when the opponent was aberdeen?", "context": "CREATE TABLE table_name_63 (scorers VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE scorers = \"mccoist (3), johnston, butcher, steven\"", "question": "When was the scorer mccoist (3), johnston, butcher, steven?", "context": "CREATE TABLE table_name_48 (date VARCHAR, scorers VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE visitor = \"pittsburgh\" AND points > 18", "question": "What is Score, when Visitor is \"Pittsburgh\", and when Points is greater than 18?", "context": "CREATE TABLE table_name_7 (score VARCHAR, visitor VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_84 WHERE home = \"pittsburgh\" AND date = \"december 21\" AND attendance > 5 OFFSET 307", "question": "What is the sum of Points, when Home is \"Pittsburgh\", when Date is \"December 21\", and when Attendance is greater than 5,307?", "context": "CREATE TABLE table_name_84 (points INTEGER, attendance VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_81 WHERE home = \"boston\"", "question": "What is the lowest Points, when Home is \"Boston\"?", "context": "CREATE TABLE table_name_81 (points INTEGER, home VARCHAR)"}, {"answer": "SELECT team FROM table_name_48 WHERE high_points = \"charlie villanueva (24)\"", "question": "what is the team when the high points is by charlie villanueva (24)?", "context": "CREATE TABLE table_name_48 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_82 WHERE high_assists = \"ramon sessions (8)\" AND date = \"march 30\"", "question": "what is the location attendance when the high assists is by ramon sessions (8) on march 30?", "context": "CREATE TABLE table_name_82 (location_attendance VARCHAR, high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_55 WHERE score = \"l 85\u2013102 (ot)\"", "question": "Who had the high rebounds when the score was l 85\u2013102 (ot)?", "context": "CREATE TABLE table_name_55 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_42 WHERE score = \"w 86\u201377 (ot)\"", "question": "what is the location attendance when the score is w 86\u201377 (ot)?", "context": "CREATE TABLE table_name_42 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE high_assists = \"ramon sessions (8)\" AND high_points = \"richard jefferson (29)\" AND score = \"w 107\u201378 (ot)\"", "question": "what is the date when ramon sessions (8) had the high assists, richard jefferson (29) had the high points and the score was w 107\u201378 (ot)?", "context": "CREATE TABLE table_name_32 (date VARCHAR, score VARCHAR, high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_9 WHERE team = \"@ toronto\"", "question": "who had the high rebounds when the team was @ toronto?", "context": "CREATE TABLE table_name_9 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(pole) FROM table_name_49 WHERE flap > 5 AND race < 155", "question": "What is the lowest pole with a Flap larger than 5, and a before race 155?", "context": "CREATE TABLE table_name_49 (pole INTEGER, flap VARCHAR, race VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_name_15 WHERE player = \"fred couples\"", "question": "What was Fred Couples' score?", "context": "CREATE TABLE table_name_15 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_43 WHERE country = \"united states\" AND score > 69 AND player = \"payne stewart\"", "question": "When Payne Stewart of the United States scored higher than 69, what was the To Par?", "context": "CREATE TABLE table_name_43 (to_par VARCHAR, player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(population__2008_) FROM table_name_55 WHERE korean = \"\ud568\ud765\"", "question": "What is the 2008 population in \ud568\ud765 (Ham Hyung)?", "context": "CREATE TABLE table_name_55 (population__2008_ INTEGER, korean VARCHAR)"}, {"answer": "SELECT mountain_peak FROM table_name_74 WHERE location = \"53.1370\u00b0n 119.2667\u00b0w\"", "question": "what is the mountain peak when the location is 53.1370\u00b0n 119.2667\u00b0w?", "context": "CREATE TABLE table_name_74 (mountain_peak VARCHAR, location VARCHAR)"}, {"answer": "SELECT region FROM table_name_96 WHERE location = \"49.7462\u00b0n 117.1419\u00b0w\"", "question": "what is the region when the location is 49.7462\u00b0n 117.1419\u00b0w?", "context": "CREATE TABLE table_name_96 (region VARCHAR, location VARCHAR)"}, {"answer": "SELECT rank FROM table_name_63 WHERE mountain_peak = \"isthmus peak\"", "question": "what is the rank when the mountain peak is isthmus peak?", "context": "CREATE TABLE table_name_63 (rank VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT mountain_range FROM table_name_90 WHERE region = \"british columbia\" AND mountain_peak = \"mount edziza\"", "question": "what is the mountain range when the region is british columbia and mountain pea is mount edziza?", "context": "CREATE TABLE table_name_90 (mountain_range VARCHAR, region VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT born_died FROM table_name_39 WHERE name = \"xhafer bej ypi\"", "question": "What is the Born-Died dates of Xhafer Bej Ypi?", "context": "CREATE TABLE table_name_39 (born_died VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_34 WHERE born_died = \"1873\u20131933\"", "question": "What is the Name of the Prime Minister with a Born-Died of 1873\u20131933?", "context": "CREATE TABLE table_name_34 (name VARCHAR, born_died VARCHAR)"}, {"answer": "SELECT term_start FROM table_name_45 WHERE political_party = \"progressive party\"", "question": "What is the Term Start date of the Progressive Party Prime Minister?", "context": "CREATE TABLE table_name_45 (term_start VARCHAR, political_party VARCHAR)"}, {"answer": "SELECT republican AS :_roy_brown FROM table_name_35 WHERE lead_margin = 26", "question": "What is the percentage for Brown when the lead margin is 26?", "context": "CREATE TABLE table_name_35 (republican VARCHAR, lead_margin VARCHAR)"}, {"answer": "SELECT democrat AS :_brian_schweitzer FROM table_name_12 WHERE lead_margin = 29", "question": "What is the percentage for Schweitzer when the lead margin is 29?", "context": "CREATE TABLE table_name_12 (democrat VARCHAR, lead_margin VARCHAR)"}, {"answer": "SELECT record FROM table_name_72 WHERE date = \"november 22\"", "question": "What is Record, when Date is \"November 22\"?", "context": "CREATE TABLE table_name_72 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_75 WHERE week < 1", "question": "What is the attendance before week 1?", "context": "CREATE TABLE table_name_75 (attendance VARCHAR, week INTEGER)"}, {"answer": "SELECT date FROM table_name_10 WHERE winning_score = \u20137(67 - 72 - 69 - 69 = 277)", "question": "What was the date of the match with a winning score of \u20137 (67-72-69-69=277)?", "context": "CREATE TABLE table_name_10 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_6 WHERE away_team = \"millwall\"", "question": "Who was the home team in the match with an away team of Millwall?", "context": "CREATE TABLE table_name_6 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE home_team = \"kidderminster harriers\"", "question": "What is the score for the match that had a home team of Kidderminster Harriers?", "context": "CREATE TABLE table_name_42 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE tie_no = \"replay\" AND home_team = \"huddersfield town\"", "question": "What is the date of the match with a home team of Huddersfield Town and was a replay tie?", "context": "CREATE TABLE table_name_93 (date VARCHAR, tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_26 WHERE tie_no = \"11\"", "question": "Who was the home team for tie number 11?", "context": "CREATE TABLE table_name_26 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT rider FROM table_name_79 WHERE speed = \"120.953 mph\"", "question": "Who was the rider with 120.953 mph speed?", "context": "CREATE TABLE table_name_79 (rider VARCHAR, speed VARCHAR)"}, {"answer": "SELECT time FROM table_name_27 WHERE rider = \"steve plater\"", "question": "What time did rider steve plater have?", "context": "CREATE TABLE table_name_27 (time VARCHAR, rider VARCHAR)"}, {"answer": "SELECT rank FROM table_name_28 WHERE speed = \"120.979 mph\" AND rider = \"gary johnson\"", "question": "What is the rank of rider gary johnson, who had a speed of 120.979 mph?", "context": "CREATE TABLE table_name_28 (rank VARCHAR, speed VARCHAR, rider VARCHAR)"}, {"answer": "SELECT club FROM table_name_88 WHERE draws < 8 AND points = 37 AND goals_for < 71", "question": "What club has less than 8 draws, 37 points, and less than 71 goals?", "context": "CREATE TABLE table_name_88 (club VARCHAR, goals_for VARCHAR, draws VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_40 WHERE draws = 3 AND losses > 18 AND played < 38", "question": "What is the total number of goals when there are 3 draws, more than 18 losses, and played is smaller than 38?", "context": "CREATE TABLE table_name_40 (goals_for VARCHAR, played VARCHAR, draws VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(goals_against) FROM table_name_19 WHERE played > 38", "question": "What is the number of goals against when the played is more than 38?", "context": "CREATE TABLE table_name_19 (goals_against VARCHAR, played INTEGER)"}, {"answer": "SELECT COUNT(draws) FROM table_name_53 WHERE played < 38", "question": "What is the number of draws when played is less than 38?", "context": "CREATE TABLE table_name_53 (draws VARCHAR, played INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_6 WHERE played < 38", "question": "What is the points when played is less than 38?", "context": "CREATE TABLE table_name_6 (points INTEGER, played INTEGER)"}, {"answer": "SELECT transfer_window FROM table_name_27 WHERE name = \"tofas\"", "question": "Which Transfer window has a Name of tofas?", "context": "CREATE TABLE table_name_27 (transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_63 WHERE transfer_fee = \"free\" AND name = \"kapetanos\"", "question": "Which Type has a Transfer fee of free, and a Name of kapetanos?", "context": "CREATE TABLE table_name_63 (type VARCHAR, transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_14 WHERE name = \"edson ratinho\"", "question": "Which Type has a Name of edson ratinho?", "context": "CREATE TABLE table_name_14 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_97 WHERE type = \"loan\" AND moving_to = \"apollon kalamaria\"", "question": "Which Name has a Type of loan, and a Moving to of apollon kalamaria?", "context": "CREATE TABLE table_name_97 (name VARCHAR, type VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT location FROM table_name_1 WHERE circuit = \"august 16\"", "question": "What is Location, when Circuit is August 16?", "context": "CREATE TABLE table_name_1 (location VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT location FROM table_name_77 WHERE fastest_lap = \"ben spies\" AND pole_position = \"ben spies\" AND winner = \"ben spies\" AND date = \"tooele, utah\"", "question": "What is Location, when Fastest Lap is Ben Spies, when Pole Position is Ben Spies, when Winner is Ben Spies, and when Date is Tooele, Utah?", "context": "CREATE TABLE table_name_77 (location VARCHAR, date VARCHAR, winner VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_18 WHERE date = \"leeds, alabama\" AND circuit = \"april 19\"", "question": "What is Fastest Lap, when Date is Leeds, Alabama, and when Circuit is April 19?", "context": "CREATE TABLE table_name_18 (fastest_lap VARCHAR, date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winner FROM table_name_33 WHERE circuit = \"june 8\"", "question": "What is Winner, when Circuit is June 8?", "context": "CREATE TABLE table_name_33 (winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_84 WHERE fastest_lap = \"ben spies\" AND location = \"barber motorsports park\"", "question": "What is Pole Position, when Fastest Lap is Ben Spies, and when Location is Barber Motorsports Park?", "context": "CREATE TABLE table_name_84 (pole_position VARCHAR, fastest_lap VARCHAR, location VARCHAR)"}, {"answer": "SELECT winner FROM table_name_41 WHERE pole_position = \"ben spies\" AND date = \"elkhart lake, wisconsin\"", "question": "What is Winner, when Pole Position is Ben Spies, and when Date is Elkhart Lake, Wisconsin?", "context": "CREATE TABLE table_name_41 (winner VARCHAR, pole_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_16 WHERE score = \"4\u20136, 6\u20134, 3\u20136\"", "question": "What is the Surface of the court in the match with a Score of 4\u20136, 6\u20134, 3\u20136?", "context": "CREATE TABLE table_name_16 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_47 WHERE year > 2010", "question": "Which Team has a Year larger than 2010?", "context": "CREATE TABLE table_name_47 (team VARCHAR, year INTEGER)"}, {"answer": "SELECT AVG(laps) FROM table_name_80 WHERE year = 2007", "question": "Which Laps has a Year of 2007?", "context": "CREATE TABLE table_name_80 (laps INTEGER, year VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_13 WHERE home_team = \"swindon town\"", "question": "What was the tie number with the home team of Swindon Town?", "context": "CREATE TABLE table_name_13 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_63 WHERE away_team = \"sheffield wednesday\"", "question": "What was the tie number with the away team of Sheffield Wednesday?", "context": "CREATE TABLE table_name_63 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE tie_no = \"23\"", "question": "What was the score for the match with tie number 23?", "context": "CREATE TABLE table_name_76 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_2 WHERE away_team = \"arsenal\"", "question": "Who was the home team for the match against Arsenal?", "context": "CREATE TABLE table_name_2 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT place FROM table_name_40 WHERE player = \"payne stewart\"", "question": "Which place is payne stewart, the player in?", "context": "CREATE TABLE table_name_40 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_55 WHERE to_par = \"+7\" AND score = 69 - 69 - 75 - 74 = 287", "question": "What player has +7 as the to par, and 69-69-75-74=287 as the score?", "context": "CREATE TABLE table_name_55 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_40 WHERE runner_s__up = \"ryan palmer\"", "question": "Which tournaments was Ryan Palmer in as a runner-up?", "context": "CREATE TABLE table_name_40 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_70 WHERE tournament = \"the players championship\"", "question": "What was the margin of victory for the Players Championship tournament?", "context": "CREATE TABLE table_name_70 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_38 WHERE runner_s__up = \"kirk triplett\"", "question": "What tournament was Kirk Triplett a runner-up in?", "context": "CREATE TABLE table_name_38 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_40 WHERE tournament = \"b.c. open 1\"", "question": "What is the winning score for the B.C. Open 1 tournament?", "context": "CREATE TABLE table_name_40 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE player = \"lee janzen\"", "question": "What country is Lee Janzen from?", "context": "CREATE TABLE table_name_46 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_35 WHERE place = \"t6\" AND player = \"tom watson\"", "question": "When Tom Watson placed t6, what was the 2 par?", "context": "CREATE TABLE table_name_35 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_50 WHERE score = 70 - 69 - 70 = 209", "question": "Who had a score of 70-69-70=209?", "context": "CREATE TABLE table_name_50 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_9 WHERE tournament = \"tarragona\"", "question": "What was the Opponent in the Tarragona Tournament?", "context": "CREATE TABLE table_name_9 (opponent VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_14 WHERE score = \"6\u20132, 4\u20136, 6\u20134\"", "question": "What Tournament's Score was 6\u20132, 4\u20136, 6\u20134?", "context": "CREATE TABLE table_name_14 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE score = \"6-2, 6-4\"", "question": "On what Date was the match with a Score of 6-2, 6-4?", "context": "CREATE TABLE table_name_64 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_9 WHERE category = \"best actress in a revival\"", "question": "How many years had the best actress in a Revival category?", "context": "CREATE TABLE table_name_9 (year VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_name_99 WHERE year < 1992 AND nominated_work = \"yerma\"", "question": "What categories had a Nominated work of yerma before 1992?", "context": "CREATE TABLE table_name_99 (category VARCHAR, year VARCHAR, nominated_work VARCHAR)"}, {"answer": "SELECT COUNT(shot_diameter__cm_) FROM table_name_37 WHERE shot_volume__cm_3__ < 172.76", "question": "How many times is the shot volume (cm3) less than 172.76?", "context": "CREATE TABLE table_name_37 (shot_diameter__cm_ VARCHAR, shot_volume__cm_3__ INTEGER)"}, {"answer": "SELECT AVG(shot_volume__cm_3__) FROM table_name_73 WHERE shot_diameter__cm_ < 6.04", "question": "what is the average shot volume (cm 3) when the shot diameter (cm) is less than 6.04?", "context": "CREATE TABLE table_name_73 (shot_volume__cm_3__ INTEGER, shot_diameter__cm_ INTEGER)"}, {"answer": "SELECT role FROM table_name_56 WHERE festival_organization = \"sydney film festival\"", "question": "What role was nominated at the Sydney Film Festival?", "context": "CREATE TABLE table_name_56 (role VARCHAR, festival_organization VARCHAR)"}, {"answer": "SELECT award_category FROM table_name_92 WHERE nominated_won = \"won\" AND year = 2007", "question": "In what category was an award won in 2007?", "context": "CREATE TABLE table_name_92 (award_category VARCHAR, nominated_won VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_90 WHERE festival_organization = \"satellite award\"", "question": "What is the first year that there was a Satellite Award?", "context": "CREATE TABLE table_name_90 (year INTEGER, festival_organization VARCHAR)"}, {"answer": "SELECT role FROM table_name_4 WHERE year = 2008 AND festival_organization = \"sydney film festival\"", "question": "What role was at the Sydney Film Festival in 2008?", "context": "CREATE TABLE table_name_4 (role VARCHAR, year VARCHAR, festival_organization VARCHAR)"}, {"answer": "SELECT nominated_won FROM table_name_57 WHERE award_category = \"jury award\"", "question": "What was nominated for the Jury Award?", "context": "CREATE TABLE table_name_57 (nominated_won VARCHAR, award_category VARCHAR)"}, {"answer": "SELECT released FROM table_name_68 WHERE series_sorted = \"6y/ai\"", "question": "what is the released when the series is sorted 6y/ai?", "context": "CREATE TABLE table_name_68 (released VARCHAR, series_sorted VARCHAR)"}, {"answer": "SELECT featuring FROM table_name_30 WHERE doctor = \"6th\" AND series_sorted = \"6y/ak\"", "question": "who is the featuring when the doctor is the 6th and the series sorted is 6y/ak?", "context": "CREATE TABLE table_name_30 (featuring VARCHAR, doctor VARCHAR, series_sorted VARCHAR)"}, {"answer": "SELECT series_sorted FROM table_name_73 WHERE released = \"may 2012\"", "question": "what is the series sorted when the released is may 2012?", "context": "CREATE TABLE table_name_73 (series_sorted VARCHAR, released VARCHAR)"}, {"answer": "SELECT featuring FROM table_name_38 WHERE series_sorted = \"6eb/b\"", "question": "who is the featuring when the series sorted is 6eb/b?", "context": "CREATE TABLE table_name_38 (featuring VARCHAR, series_sorted VARCHAR)"}, {"answer": "SELECT country FROM table_name_60 WHERE year_s__won = \"1977\"", "question": "Which Country has a Year(s) won of 1977?", "context": "CREATE TABLE table_name_60 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT MIN(to_par) FROM table_name_90 WHERE year_s__won = \"1962, 1967, 1972, 1980\" AND total > 149", "question": "Which To par is the lowest one that has a Year(s) won of 1962, 1967, 1972, 1980, and a Total larger than 149?", "context": "CREATE TABLE table_name_90 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_74 WHERE total = 148", "question": "Which Country has a Total of 148?", "context": "CREATE TABLE table_name_74 (country VARCHAR, total VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_57 WHERE total = 147", "question": "Which Year(s) won has a Total of 147?", "context": "CREATE TABLE table_name_57 (year_s__won VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_89 WHERE total < 148", "question": "Which To par is the highest one that has a Total smaller than 148?", "context": "CREATE TABLE table_name_89 (to_par INTEGER, total INTEGER)"}, {"answer": "SELECT candidate FROM table_name_20 WHERE election = \"2008 (2)\"", "question": "Who is the candidate in the 2008 (2) election?", "context": "CREATE TABLE table_name_20 (candidate VARCHAR, election VARCHAR)"}, {"answer": "SELECT share_of_votes FROM table_name_99 WHERE election = \"2008 (1)\"", "question": "What is the share of votes in the 2008 (1) election?", "context": "CREATE TABLE table_name_99 (share_of_votes VARCHAR, election VARCHAR)"}, {"answer": "SELECT share_of_votes FROM table_name_20 WHERE election = \"2000 (2nd)\"", "question": "What is the share of votes in the 2000 (2nd) election?", "context": "CREATE TABLE table_name_20 (share_of_votes VARCHAR, election VARCHAR)"}, {"answer": "SELECT election FROM table_name_63 WHERE outcome_of_election = \"ndc opposition\" AND number_of_votes = \"2,728,241\"", "question": "What is the election with an outcome of ndc opposition and 2,728,241 votes?", "context": "CREATE TABLE table_name_63 (election VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR)"}, {"answer": "SELECT outcome_of_election FROM table_name_26 WHERE share_of_votes = \"43.3%\"", "question": "What is the outcome of the election with 43.3% share of votes?", "context": "CREATE TABLE table_name_26 (outcome_of_election VARCHAR, share_of_votes VARCHAR)"}, {"answer": "SELECT candidate FROM table_name_50 WHERE election = \"2012\"", "question": "Who is the candidate in the 2012 election?", "context": "CREATE TABLE table_name_50 (candidate VARCHAR, election VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE player = \"mark o'meara\"", "question": "What is Mark O'Meara's Score?", "context": "CREATE TABLE table_name_44 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE player = \"curtis strange\"", "question": "What is Curtis Strange's Score?", "context": "CREATE TABLE table_name_11 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT tracks FROM table_name_20 WHERE catalog = \"ba 222304\" AND length = \"2:57\"", "question": "What is the Tracks of the release in Catalog BA 222304 with a Length of 2:57?", "context": "CREATE TABLE table_name_20 (tracks VARCHAR, catalog VARCHAR, length VARCHAR)"}, {"answer": "SELECT MAX(match_no) FROM table_name_92 WHERE date = \"2008-03-21\" AND time = \"16:00\"", "question": "What is the highest Match No., when Date is 2008-03-21, and when Time is 16:00?", "context": "CREATE TABLE table_name_92 (match_no INTEGER, date VARCHAR, time VARCHAR)"}, {"answer": "SELECT venue FROM table_name_12 WHERE runs = \"325/6\"", "question": "What was the venue for runs 325/6?", "context": "CREATE TABLE table_name_12 (venue VARCHAR, runs VARCHAR)"}, {"answer": "SELECT season FROM table_name_25 WHERE runs = \"310/9\"", "question": "What season were the runs 310/9?", "context": "CREATE TABLE table_name_25 (season VARCHAR, runs VARCHAR)"}, {"answer": "SELECT runs FROM table_name_64 WHERE opponent = \"west indies\"", "question": "What were the runs for the opponent from the West Indies?", "context": "CREATE TABLE table_name_64 (runs VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_95 WHERE score = 70 - 66 - 73 - 69 = 278", "question": "Which Money ($) has a Score of 70-66-73-69=278?", "context": "CREATE TABLE table_name_95 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_78 WHERE opponent = \"sam sotello\"", "question": "How many rounds did the match last with Sam Sotello as the opponent?", "context": "CREATE TABLE table_name_78 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE res = \"loss\" AND event = \"ufc 62\"", "question": "What is the record for the loss in UFC 62?", "context": "CREATE TABLE table_name_26 (record VARCHAR, res VARCHAR, event VARCHAR)"}, {"answer": "SELECT part_4 FROM table_name_6 WHERE part_3 = \"*heguldun *febungun\"", "question": "What is the part 4 with *heguldun *febungun in part 3?", "context": "CREATE TABLE table_name_6 (part_4 VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT part_3 FROM table_name_31 WHERE part_2 = \"*hegait\"", "question": "What is the part 3 with *hegait in part 2?", "context": "CREATE TABLE table_name_31 (part_3 VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT part_4 FROM table_name_6 WHERE part_1 = \"*hlaupan\u0105 *stautan\u0105\"", "question": "What is the part 4 with *hlaupan\u0105 *stautan\u0105 in part 1?", "context": "CREATE TABLE table_name_6 (part_4 VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_name_26 WHERE part_1 = \"*haldan\u0105 *fanhan\u0105\"", "question": "What is the verb meaning of *haldan\u0105 *fanhan\u0105 in part 1?", "context": "CREATE TABLE table_name_26 (verb_meaning VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT producer_s_ FROM table_name_43 WHERE songwriter_s_ = \"sezen aksu\"", "question": "Who is sezen aksu's producer?", "context": "CREATE TABLE table_name_43 (producer_s_ VARCHAR, songwriter_s_ VARCHAR)"}, {"answer": "SELECT title FROM table_name_72 WHERE songwriter_s_ = \"hadise a\u00e7\u0131kg\u00f6z, stefaan fernande, elio deepcore\"", "question": "Which Title has a Songwriter(s) of hadise a\u00e7\u0131kg\u00f6z, stefaan fernande, elio deepcore?", "context": "CREATE TABLE table_name_72 (title VARCHAR, songwriter_s_ VARCHAR)"}, {"answer": "SELECT title FROM table_name_91 WHERE length = \"3:32\" AND producer_s_ = \"hadise a\u00e7\u0131kg\u00f6z, yves jongen\"", "question": "Which Title has a Length of 3:32, and a Producer(s) of hadise a\u00e7\u0131kg\u00f6z, yves jongen?", "context": "CREATE TABLE table_name_91 (title VARCHAR, length VARCHAR, producer_s_ VARCHAR)"}, {"answer": "SELECT producer_s_ FROM table_name_46 WHERE track < 8 AND songwriter_s_ = \"hadise a\u00e7\u0131kg\u00f6z, yves jongen\" AND length = \"3:08\"", "question": "Which Producer(s) has a Track smaller than 8, and a Songwriter(s) of hadise a\u00e7\u0131kg\u00f6z, yves jongen, and a Length of 3:08?", "context": "CREATE TABLE table_name_46 (producer_s_ VARCHAR, length VARCHAR, track VARCHAR, songwriter_s_ VARCHAR)"}, {"answer": "SELECT title FROM table_name_62 WHERE track = 6", "question": "What is track 6's title?", "context": "CREATE TABLE table_name_62 (title VARCHAR, track VARCHAR)"}, {"answer": "SELECT company_name FROM table_name_31 WHERE hardware_model = \"nokia 700\"", "question": "What company makes the Nokia 700?", "context": "CREATE TABLE table_name_31 (company_name VARCHAR, hardware_model VARCHAR)"}, {"answer": "SELECT accreditation_level FROM table_name_72 WHERE date = \"approved (awarded 05.12.12)\"", "question": "What is the accreditation level for the approved (awarded 05.12.12) date?", "context": "CREATE TABLE table_name_72 (accreditation_level VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE company_name = \"samsung electronics co ltd\" AND hardware_model = \"gt-i9100\"", "question": "When did Samsung Electronics Co LTD make the GT-i9100?", "context": "CREATE TABLE table_name_99 (date VARCHAR, company_name VARCHAR, hardware_model VARCHAR)"}, {"answer": "SELECT accreditation_type FROM table_name_5 WHERE accreditation_level = \"joyn\" AND company_name = \"nokia corporation\"", "question": "When the Nokia corporation had an accreditation level of joyn, what was the accreditation type?", "context": "CREATE TABLE table_name_5 (accreditation_type VARCHAR, accreditation_level VARCHAR, company_name VARCHAR)"}, {"answer": "SELECT round FROM table_name_53 WHERE record = \"4-1\"", "question": "What is Round, when Record is \"4-1\"?", "context": "CREATE TABLE table_name_53 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_43 WHERE location = \"tokyo , japan\" AND method = \"decision (unanimous)\" AND record = \"4-1\"", "question": "What is Opponent, when Location is \"Tokyo , Japan\", when Method is \"Decision (unanimous)\", and when Record is \"4-1\"?", "context": "CREATE TABLE table_name_43 (opponent VARCHAR, record VARCHAR, location VARCHAR, method VARCHAR)"}, {"answer": "SELECT method FROM table_name_19 WHERE opponent = \"thiago alves\"", "question": "What is Method, when Opponent is \"Thiago Alves\"?", "context": "CREATE TABLE table_name_19 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_64 WHERE round = \"1\" AND location = \"osaka , japan\" AND method = \"tko (corner stoppage)\"", "question": "What is Event, when Round is \"1\", when Location is \"Osaka , Japan\", and when Method is \"TKO (corner stoppage)\"?", "context": "CREATE TABLE table_name_64 (event VARCHAR, method VARCHAR, round VARCHAR, location VARCHAR)"}, {"answer": "SELECT record FROM table_name_78 WHERE event = \"ufc 64\"", "question": "What is Record, when Event is \"UFC 64\"?", "context": "CREATE TABLE table_name_78 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE game < 24 AND decision = \"lundqvist\" AND november < 8 AND opponent = \"new york islanders\"", "question": "What is the Record for a game smaller than 24, Lundqvist was the decision, November less than 8, and opponent Was New York Islanders?", "context": "CREATE TABLE table_name_57 (record VARCHAR, opponent VARCHAR, november VARCHAR, game VARCHAR, decision VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_44 WHERE record = \"16-7-2\"", "question": "What is the smallest game number with a record of 16-7-2?", "context": "CREATE TABLE table_name_44 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE decision = \"lundqvist\" AND november < 28 AND opponent = \"boston bruins\"", "question": "What is the Score of the game with a decision of Lundqvist, the November less than 28, and opponent was Boston Bruins?", "context": "CREATE TABLE table_name_31 (score VARCHAR, opponent VARCHAR, decision VARCHAR, november VARCHAR)"}, {"answer": "SELECT venue FROM table_name_78 WHERE competition = \"2013 eaff east asian cup qualifier\"", "question": "Where was the 2013 Eaff East Asian Cup Qualifier played?", "context": "CREATE TABLE table_name_78 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_63 WHERE goal_average > 4 AND draws < 12 AND goals_for = 63", "question": "What is the highest amount of points with a goal average larger than 4, less than 12 draws, and a goal of 63?", "context": "CREATE TABLE table_name_63 (points INTEGER, goals_for VARCHAR, goal_average VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_43 WHERE goals_against = 37 AND victories < 15", "question": "What is the lowest goal for a goal against 37 and less than 15 victories?", "context": "CREATE TABLE table_name_43 (goals_for INTEGER, goals_against VARCHAR, victories VARCHAR)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_52 WHERE rank = 3", "question": "How many goals on average are there for rank 3?", "context": "CREATE TABLE table_name_52 (goals_for INTEGER, rank VARCHAR)"}, {"answer": "SELECT AVG(goals_against) FROM table_name_55 WHERE played > 42", "question": "What is the average goals against when there are more than 42 played?", "context": "CREATE TABLE table_name_55 (goals_against INTEGER, played INTEGER)"}, {"answer": "SELECT goal_difference FROM table_name_99 WHERE team = \"chorley\"", "question": "What is the goal difference for the team from Chorley?", "context": "CREATE TABLE table_name_99 (goal_difference VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_26 WHERE place = \"t8\" AND player = \"scott hoch\"", "question": "What is T8 Place Player Scott Hoch's Score?", "context": "CREATE TABLE table_name_26 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_37 WHERE score = 67 - 76 - 74 - 67 = 284", "question": "What is the Place of the Player with a Score of 67-76-74-67=284?", "context": "CREATE TABLE table_name_37 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_70 WHERE score = 69 - 71 - 69 - 72 = 281", "question": "What is the Money of the Player with a Score of 69-71-69-72=281?", "context": "CREATE TABLE table_name_70 (money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_82 WHERE u_17_goals = 7 AND player = \"cesc f\u00e0bregas\"", "question": "What is the highest Rank, when U-17 Goals is \"7\", and when Player is \"Cesc F\u00e0bregas\"?", "context": "CREATE TABLE table_name_82 (rank INTEGER, u_17_goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_49 WHERE u_17_goals = 9", "question": "What is the highest Rank, when U-17 Goals is \"9\"?", "context": "CREATE TABLE table_name_49 (rank INTEGER, u_17_goals VARCHAR)"}, {"answer": "SELECT competition FROM table_name_50 WHERE result = \"draw\"", "question": "What Competition has a Result of Draw?", "context": "CREATE TABLE table_name_50 (competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE score = \"1\u20132\"", "question": "What is the Date of the Competition with a Score of 1\u20132?", "context": "CREATE TABLE table_name_85 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_33 WHERE venue = \"new delhi\" AND result = \"loss\"", "question": "What New Delhi Competition has a Result of Loss?", "context": "CREATE TABLE table_name_33 (competition VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_7 WHERE record = \"1-5\"", "question": "How many rounds in the event when record is 1-5?", "context": "CREATE TABLE table_name_7 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_23 WHERE res = \"win\" AND round > 1 AND record = \"42-27-10\"", "question": "Who is the opponent when there is a win in round greater than 1 and the record is 42-27-10?", "context": "CREATE TABLE table_name_23 (opponent VARCHAR, record VARCHAR, res VARCHAR, round VARCHAR)"}, {"answer": "SELECT team_e FROM table_name_89 WHERE team_f = \"jason manning\"", "question": "Who is team E when Jason Manning is Team F?", "context": "CREATE TABLE table_name_89 (team_e VARCHAR, team_f VARCHAR)"}, {"answer": "SELECT team_a FROM table_name_35 WHERE team_c = \"wilma hofschneider-david\"", "question": "Who is Team A when wilma hofschneider-david is team C?", "context": "CREATE TABLE table_name_35 (team_a VARCHAR, team_c VARCHAR)"}, {"answer": "SELECT team_f FROM table_name_16 WHERE team_a = \"aida gagaring\"", "question": "Who is team f when Aida Gagaring is team A?", "context": "CREATE TABLE table_name_16 (team_f VARCHAR, team_a VARCHAR)"}, {"answer": "SELECT team_d FROM table_name_61 WHERE team_c = \"carmen ada\"", "question": "Who is Team D when Carmen Ada is team C?", "context": "CREATE TABLE table_name_61 (team_d VARCHAR, team_c VARCHAR)"}, {"answer": "SELECT team_e FROM table_name_94 WHERE team_d = \"aaron solloway\"", "question": "Who is team e when Aaron Solloway is team D?", "context": "CREATE TABLE table_name_94 (team_e VARCHAR, team_d VARCHAR)"}, {"answer": "SELECT team_c FROM table_name_44 WHERE team_e = \"dhez javier\"", "question": "Who is team c when dhez javier is team e?", "context": "CREATE TABLE table_name_44 (team_c VARCHAR, team_e VARCHAR)"}, {"answer": "SELECT country FROM table_name_68 WHERE to_par = \"+5\"", "question": "What was the country of the player at +5?", "context": "CREATE TABLE table_name_68 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_31 WHERE to_par = \"+4\"", "question": "Which player finished at +4?", "context": "CREATE TABLE table_name_31 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_21 WHERE player = \"bert yancey\"", "question": "What was Bert Yancey's finishing score to par?", "context": "CREATE TABLE table_name_21 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT bachelorette FROM table_name_20 WHERE winner = \"ian mckee\"", "question": "Who was the bachelorette of the season where ian mckee was the winner?", "context": "CREATE TABLE table_name_20 (bachelorette VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_38 WHERE profile = \"advertising account manager\"", "question": "What is the earliest season with an advertising account manager profile?", "context": "CREATE TABLE table_name_38 (season INTEGER, profile VARCHAR)"}, {"answer": "SELECT bachelorette FROM table_name_37 WHERE premiered = \"may 24, 2010\"", "question": "Who is the bachelorette of the season that premiered on May 24, 2010?", "context": "CREATE TABLE table_name_37 (bachelorette VARCHAR, premiered VARCHAR)"}, {"answer": "SELECT bachelorette FROM table_name_25 WHERE season > 8", "question": "Who is the bachelorette after season 8?", "context": "CREATE TABLE table_name_25 (bachelorette VARCHAR, season INTEGER)"}, {"answer": "SELECT win__percentage FROM table_name_51 WHERE _number_of_bids = 2 AND conference = \"west coast\"", "question": "When the conference is west coast and the number of bids are at 2, what's the percentage of games won?", "context": "CREATE TABLE table_name_51 (win__percentage VARCHAR, _number_of_bids VARCHAR, conference VARCHAR)"}, {"answer": "SELECT championship_game FROM table_name_82 WHERE win__percentage = \".429\"", "question": "If a team had a percentage of games won recorded as .429, what Championship Game was played?", "context": "CREATE TABLE table_name_82 (championship_game VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_94 WHERE week = 3", "question": "What was the attendance for the game in Week 3?", "context": "CREATE TABLE table_name_94 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE opponent = \"green bay packers\"", "question": "On what date was the opponent the Green Bay Packers?", "context": "CREATE TABLE table_name_43 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT term_start FROM table_name_61 WHERE name = \"ismail qemali bej\"", "question": "When did Ismail Qemali Bej's term start?", "context": "CREATE TABLE table_name_61 (term_start VARCHAR, name VARCHAR)"}, {"answer": "SELECT term_end FROM table_name_5 WHERE name = \"fejzi bej alizoti\"", "question": "When did Fejzi Bej Alizoti's term end?", "context": "CREATE TABLE table_name_5 (term_end VARCHAR, name VARCHAR)"}, {"answer": "SELECT term_end FROM table_name_89 WHERE term_start = \"28 november 1912\"", "question": "When did the term end for the person who started their term on 28 November 1912?", "context": "CREATE TABLE table_name_89 (term_end VARCHAR, term_start VARCHAR)"}, {"answer": "SELECT term_start FROM table_name_38 WHERE name = \"fejzi bej alizoti\"", "question": "When did Fejzi Bej Alizoti's term start?", "context": "CREATE TABLE table_name_38 (term_start VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(points_1) FROM table_name_55 WHERE team = \"gainsborough trinity\" AND played > 46", "question": "What is the sum of Points 1, when Team is \"Gainsborough Trinity\", and when Played is greater than 46?", "context": "CREATE TABLE table_name_55 (points_1 INTEGER, team VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(points_1) FROM table_name_10 WHERE lost < 20 AND goals_for > 92", "question": "What is the total number of Points 1, when Lost is less than 20, and when Goals For is greater than 92?", "context": "CREATE TABLE table_name_10 (points_1 VARCHAR, lost VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_51 WHERE played < 46", "question": "What is the total number of Position, when Played is less than 46?", "context": "CREATE TABLE table_name_51 (position VARCHAR, played INTEGER)"}, {"answer": "SELECT location FROM table_name_4 WHERE frequency = \"102.5 fm\"", "question": "Which Location has a Frequency of 102.5 fm?", "context": "CREATE TABLE table_name_4 (location VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_26 WHERE frequency = \"102.5 fm\"", "question": "Which Call sign has a Frequency of 102.5 fm?", "context": "CREATE TABLE table_name_26 (call_sign VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT owner FROM table_name_18 WHERE name___format = \"105.3 kool fm - hot adult contemporary\"", "question": "Which Owner has a Name / Format of 105.3 kool fm - hot adult contemporary?", "context": "CREATE TABLE table_name_18 (owner VARCHAR, name___format VARCHAR)"}, {"answer": "SELECT location FROM table_name_90 WHERE call_sign = \"cjtw-fm\"", "question": "Which Location has a Call sign of cjtw-fm?", "context": "CREATE TABLE table_name_90 (location VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_77 WHERE owner = \"rogers communications rogers radio\" AND call_sign = \"cikz-fm\"", "question": "Which Frequency has an Owner of rogers communications rogers radio, and a Call sign of cikz-fm?", "context": "CREATE TABLE table_name_77 (frequency VARCHAR, owner VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_1 WHERE rider = \"vittorio iannuzzo\"", "question": "What is the lowest laps that Vittorio Iannuzzo completed?", "context": "CREATE TABLE table_name_1 (laps INTEGER, rider VARCHAR)"}, {"answer": "SELECT time FROM table_name_52 WHERE laps = 14", "question": "What is the total time that it took for the driver to finish 14 laps?", "context": "CREATE TABLE table_name_52 (time VARCHAR, laps VARCHAR)"}, {"answer": "SELECT grid FROM table_name_50 WHERE bike = \"kawasaki zx-10r\" AND rider = \"r\u00e9gis laconi\"", "question": "What is the Grid of R\u00e9gis Laconi's bike that is a Kawasaki zx-10r?", "context": "CREATE TABLE table_name_50 (grid VARCHAR, bike VARCHAR, rider VARCHAR)"}, {"answer": "SELECT bike FROM table_name_18 WHERE grid < 9 AND time = \"+7.764\"", "question": "What is the name of the bike that has a grid number smaller than 9 with a time of +7.764?", "context": "CREATE TABLE table_name_18 (bike VARCHAR, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT elector FROM table_name_92 WHERE nationality = \"french\" AND elevated = \"1288, may 16\"", "question": "Who was the French Elector Elevated on 1288, May 16?", "context": "CREATE TABLE table_name_92 (elector VARCHAR, nationality VARCHAR, elevated VARCHAR)"}, {"answer": "SELECT elector FROM table_name_13 WHERE title = \"titulus s. cecilia\"", "question": "What Elector has the Title of Titulus S. Cecilia?", "context": "CREATE TABLE table_name_13 (elector VARCHAR, title VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_5 WHERE title = \"deacon of s. maria in via lata\"", "question": "What is the Nationality of the Deacon of S. Maria in Via Lata?", "context": "CREATE TABLE table_name_5 (nationality VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_16 WHERE elector = \"giovanni boccamazza\"", "question": "What is the Title of Elector Giovanni Boccamazza?", "context": "CREATE TABLE table_name_16 (title VARCHAR, elector VARCHAR)"}, {"answer": "SELECT record FROM table_name_33 WHERE date > 27 AND opponent = \"st. louis blues\"", "question": "What was the record for the date above 27 and an opponent of the St. Louis Blues?", "context": "CREATE TABLE table_name_33 (record VARCHAR, date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_54 WHERE game > 31 AND date > 30", "question": "Who was the opponent for a game over 31 and a date over 30?", "context": "CREATE TABLE table_name_54 (opponent VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT issue_date_s_ FROM table_name_54 WHERE artist = \"jennifer lopez\"", "question": "What date did the song by jennifer lopez get issued?", "context": "CREATE TABLE table_name_54 (issue_date_s_ VARCHAR, artist VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_31 WHERE bronze = 2 AND rank = \"61\" AND total > 3", "question": "What is the total number of gold medals when there were 2 bronze medals, a total of more than 3 medals and ranked 61?", "context": "CREATE TABLE table_name_31 (gold VARCHAR, total VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_26 WHERE bronze = 4 AND silver > 2 AND gold < 7", "question": "What is the average total number of medals when there were 4 bronze, more than 2 silver, and less than 7 gold medals?", "context": "CREATE TABLE table_name_26 (total INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(episode) FROM table_name_31 WHERE original_airdate = \"8 june 2008\"", "question": "What is the lowest episode number with an original airdate on 8 June 2008?", "context": "CREATE TABLE table_name_31 (episode INTEGER, original_airdate VARCHAR)"}, {"answer": "SELECT no_4 FROM table_name_38 WHERE no_9 = \"natalie\"", "question": "Who was number 4 when Natalie was number 9?", "context": "CREATE TABLE table_name_38 (no_4 VARCHAR, no_9 VARCHAR)"}, {"answer": "SELECT no_7 FROM table_name_16 WHERE no_5 = \"olivia\" AND no_2 = \"emma\"", "question": "Who was number 7 when Olivia was number 5 and Emma was number 2?", "context": "CREATE TABLE table_name_16 (no_7 VARCHAR, no_5 VARCHAR, no_2 VARCHAR)"}, {"answer": "SELECT no_5 FROM table_name_76 WHERE no_8 = \"chloe\" AND no_2 = \"olivia\" AND no_1 = \"emma\" AND no_4 = \"ava\"", "question": "When Chloe was number 8, Olivia was number 2, Emma was number 1, and Ava was number 4, who was number 5?", "context": "CREATE TABLE table_name_76 (no_5 VARCHAR, no_4 VARCHAR, no_1 VARCHAR, no_8 VARCHAR, no_2 VARCHAR)"}, {"answer": "SELECT platform FROM table_name_44 WHERE company = \"surfstats software\"", "question": "What platform is the company Surfstats Software?", "context": "CREATE TABLE table_name_44 (platform VARCHAR, company VARCHAR)"}, {"answer": "SELECT price_in_usd FROM table_name_79 WHERE company = \"tealeaf\"", "question": "What is the USD price for Tealeaf?", "context": "CREATE TABLE table_name_79 (price_in_usd VARCHAR, company VARCHAR)"}, {"answer": "SELECT platform FROM table_name_53 WHERE latest_stable_release = \"5.0.3\"", "question": "What is the platform for the latest release 5.0.3?", "context": "CREATE TABLE table_name_53 (platform VARCHAR, latest_stable_release VARCHAR)"}, {"answer": "SELECT platform FROM table_name_28 WHERE latest_stable_release = \"8.4\"", "question": "What is the platform for the latest release 8.4?", "context": "CREATE TABLE table_name_28 (platform VARCHAR, latest_stable_release VARCHAR)"}, {"answer": "SELECT tamil FROM table_name_89 WHERE hindi = \"sukravar\"", "question": "WHAT IS THE TAMIL WITH A SUKRAVAR ?", "context": "CREATE TABLE table_name_89 (tamil VARCHAR, hindi VARCHAR)"}, {"answer": "SELECT hindi FROM table_name_36 WHERE kannada = \"shanivara\"", "question": "WHAT HINDI HAS A KANNADA OF SHANIVARA?", "context": "CREATE TABLE table_name_36 (hindi VARCHAR, kannada VARCHAR)"}, {"answer": "SELECT malayalam FROM table_name_61 WHERE \u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 = \"\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\"", "question": "WHAT IS THE MALAYAM WITH \u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 of \u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f?", "context": "CREATE TABLE table_name_61 (malayalam VARCHAR, \u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02 VARCHAR)"}, {"answer": "SELECT tamil FROM table_name_91 WHERE kannada = \"budhavara\"", "question": "WHAT TAMIL HAS Kannada of budhavara?", "context": "CREATE TABLE table_name_91 (tamil VARCHAR, kannada VARCHAR)"}, {"answer": "SELECT hindi FROM table_name_37 WHERE tamil = \"vyazhan\"", "question": "WHAT HINDI HAS Tamil of vyazhan?", "context": "CREATE TABLE table_name_37 (hindi VARCHAR, tamil VARCHAR)"}, {"answer": "SELECT hindi FROM table_name_54 WHERE kannada = \"shukravara\"", "question": "WHAT HINDI HAS Kannada of shukravara?", "context": "CREATE TABLE table_name_54 (hindi VARCHAR, kannada VARCHAR)"}, {"answer": "SELECT MIN(assists) FROM table_name_24 WHERE games_played > 5", "question": "What is the lowest amount of assists for more than 5 games?", "context": "CREATE TABLE table_name_24 (assists INTEGER, games_played INTEGER)"}, {"answer": "SELECT MAX(points) FROM table_name_5 WHERE assists < 5 AND goals < 2", "question": "What is the highest amount of points with less than 5 assists and less than 2 goals?", "context": "CREATE TABLE table_name_5 (points INTEGER, assists VARCHAR, goals VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_84 WHERE games_played < 5", "question": "How many points on average are there for less than 5 games played?", "context": "CREATE TABLE table_name_84 (points INTEGER, games_played INTEGER)"}, {"answer": "SELECT opponent FROM table_name_70 WHERE result = \"w 17-0\"", "question": "Which opponent has w 17-0 as the result?", "context": "CREATE TABLE table_name_70 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT country FROM table_name_20 WHERE airport = \"narita international airport\"", "question": "Which country has the Narita International Airport?", "context": "CREATE TABLE table_name_20 (country VARCHAR, airport VARCHAR)"}, {"answer": "SELECT iata FROM table_name_52 WHERE icao = \"wipp\"", "question": "What is the IATA when the ICAO is wipp?", "context": "CREATE TABLE table_name_52 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_61 WHERE icao = \"rpvi\"", "question": "Which airport's ICAO is rpvi?", "context": "CREATE TABLE table_name_61 (airport VARCHAR, icao VARCHAR)"}, {"answer": "SELECT country FROM table_name_72 WHERE iata = \"ika\"", "question": "Which country's IATA is ika?", "context": "CREATE TABLE table_name_72 (country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT icao FROM table_name_52 WHERE airport = \"yangon international airport\"", "question": "What is the ICAO for the Yangon International Airport?", "context": "CREATE TABLE table_name_52 (icao VARCHAR, airport VARCHAR)"}, {"answer": "SELECT icao FROM table_name_79 WHERE iata = \"tgg\"", "question": "What is the ICAO when the IATA is tgg?", "context": "CREATE TABLE table_name_79 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE venue = \"estadio alejandro villanueva\" AND season > 2003 AND competition_round = \"torneo apertura\" AND winner = \"universitario\"", "question": "On what date did Universitario win the Torneo Apertura round after 2003 at Estadio Alejandro Villanueva?", "context": "CREATE TABLE table_name_45 (date VARCHAR, winner VARCHAR, competition_round VARCHAR, venue VARCHAR, season VARCHAR)"}, {"answer": "SELECT director FROM table_name_90 WHERE primary_language_s_ = \"azerbaijani\" AND original_title = \"buta\"", "question": "What is Director, when Primary Language(s) is \"Azerbaijani\", and when Original Title is \"Buta\"?", "context": "CREATE TABLE table_name_90 (director VARCHAR, primary_language_s_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_83 WHERE primary_language_s_ = \"azerbaijani, russian\"", "question": "What is Film Title Used In Nomination, when Primary Language(s) is \"Azerbaijani, Russian\"?", "context": "CREATE TABLE table_name_83 (film_title_used_in_nomination VARCHAR, primary_language_s_ VARCHAR)"}, {"answer": "SELECT result FROM table_name_38 WHERE original_title = \"qala\"", "question": "What is Result, when Original Title is \"Qala\"?", "context": "CREATE TABLE table_name_38 (result VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT primary_language_s_ FROM table_name_59 WHERE director = \"ilgar safat category:articles with hcards\"", "question": "What is Primary Language(s), when Director is \"Ilgar Safat Category:Articles With hCards\"?", "context": "CREATE TABLE table_name_59 (primary_language_s_ VARCHAR, director VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_51 WHERE director = \"farid gumbatov category:articles with hcards\"", "question": "What is Year (Ceremony), when Director is \"Farid Gumbatov Category:Articles With hCards\"?", "context": "CREATE TABLE table_name_51 (year__ceremony_ VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_64 WHERE original_title = \"sah\u0259\"", "question": "What is Director, when Original Title is \"Sah\u0259\"?", "context": "CREATE TABLE table_name_64 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT home FROM table_name_53 WHERE decision = \"conklin\"", "question": "Who was the Home team that had a decider of Conklin?", "context": "CREATE TABLE table_name_53 (home VARCHAR, decision VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_99 WHERE game = 71", "question": "Game 71 was played against what team?", "context": "CREATE TABLE table_name_99 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_40 WHERE opponent = \"new york knickerbockers\"", "question": "What is the maximum game that was played against the New York Knickerbockers?", "context": "CREATE TABLE table_name_40 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT game FROM table_name_53 WHERE date = \"march 19\"", "question": "What was the number of game that was played on March 19?", "context": "CREATE TABLE table_name_53 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_24 WHERE points > 12", "question": "What is the average rank for more than 12 points?", "context": "CREATE TABLE table_name_24 (rank INTEGER, points INTEGER)"}, {"answer": "SELECT SUM(rank) FROM table_name_47 WHERE played < 6", "question": "What is the rank for less than 6 plays?", "context": "CREATE TABLE table_name_47 (rank INTEGER, played INTEGER)"}, {"answer": "SELECT nationality FROM table_name_94 WHERE round = 3 AND college = \"mercer\"", "question": "For the draft pick from round 3 out of Mercer College what is the nationality?", "context": "CREATE TABLE table_name_94 (nationality VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_44 WHERE college = \"oral roberts\"", "question": "Who was the draft pick that went to college at Oral Roberts?", "context": "CREATE TABLE table_name_44 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_52 WHERE grid > 5 AND time_retired = \"fire\"", "question": "What is the smallest point total when the grid is larger than 5 and the time/retired is fire?", "context": "CREATE TABLE table_name_52 (points INTEGER, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_2 WHERE grid > 16 AND driver = \"nelson philippe\"", "question": "When Nelson Philippe drove with a grid larger than 16, what was the timre/retired?", "context": "CREATE TABLE table_name_2 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_80 WHERE grid < 9 AND laps = 21 AND rider = \"jeremy mcwilliams\"", "question": "What was the time of the race that was on a grid smaller than 9 with jeremy mcwilliams as the rider doing 21 laps?", "context": "CREATE TABLE table_name_80 (time_retired VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_54 WHERE laps > 21", "question": "What is the lowest grid number that a race took place doing more than 21 laps?", "context": "CREATE TABLE table_name_54 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT COUNT(grid) FROM table_name_60 WHERE time_retired = \"34:22.335\"", "question": "What is the total number of grids where there were races that had a time of 34:22.335?", "context": "CREATE TABLE table_name_60 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT rank FROM table_name_96 WHERE final = \"5:18.85\"", "question": "Which rank has final with 5:18.85?", "context": "CREATE TABLE table_name_96 (rank VARCHAR, final VARCHAR)"}, {"answer": "SELECT final FROM table_name_59 WHERE rank = \"10\"", "question": "Which final has rank of 10?", "context": "CREATE TABLE table_name_59 (final VARCHAR, rank VARCHAR)"}, {"answer": "SELECT final FROM table_name_18 WHERE run_3 = \"1:19.49\"", "question": "Which final has a run of 1:19.49?", "context": "CREATE TABLE table_name_18 (final VARCHAR, run_3 VARCHAR)"}, {"answer": "SELECT run_2 FROM table_name_18 WHERE final = \"5:24.47\"", "question": "Which run 2 with final of 5:24.47?", "context": "CREATE TABLE table_name_18 (run_2 VARCHAR, final VARCHAR)"}, {"answer": "SELECT team FROM table_name_36 WHERE run_1 = \"1:17.44\"", "question": "Which team has run 1 of 1:17.44?", "context": "CREATE TABLE table_name_36 (team VARCHAR, run_1 VARCHAR)"}, {"answer": "SELECT team FROM table_name_18 WHERE run_3 = \"1:20.77\"", "question": "Which team has run 3 of 1:20.77?", "context": "CREATE TABLE table_name_18 (team VARCHAR, run_3 VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_89 WHERE away_team = \"manchester city\"", "question": "Who was the home team when Manchester City was the away team?", "context": "CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE home_team = \"stockport county\"", "question": "What was the score when the home team was Stockport County?", "context": "CREATE TABLE table_name_73 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_40 WHERE away_team = \"barnsley\"", "question": "What is the Tie Number when Barnsley was the away team?", "context": "CREATE TABLE table_name_40 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE date = \"october 22, 1976\"", "question": "What was the score of the game that took place on october 22, 1976?", "context": "CREATE TABLE table_name_53 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE record = \"2-2\"", "question": "What was the score of the game where the record was 2-2?", "context": "CREATE TABLE table_name_76 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_50 WHERE record = \"2-4\"", "question": "Who was the home team in the game with a record of 2-4?", "context": "CREATE TABLE table_name_50 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT race FROM table_name_4 WHERE notes = \"world championship formula 1\" AND venue = \"hungaroring\"", "question": "What was the race for the world championship formula 1 at a venue of hungaroring?", "context": "CREATE TABLE table_name_4 (race VARCHAR, notes VARCHAR, venue VARCHAR)"}, {"answer": "SELECT winner FROM table_name_20 WHERE date = \"october 7\"", "question": "Who is the winner for the match on October 7?", "context": "CREATE TABLE table_name_20 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE race = \"new zealand grand prix\"", "question": "What is the date of the race for the new zealand grand prix?", "context": "CREATE TABLE table_name_21 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT winner FROM table_name_89 WHERE notes = \"world championship formula 1\" AND venue = \"circuit de monaco\"", "question": "Who was the winner for the world championship formula 1 at the venue, circuit de monaco?", "context": "CREATE TABLE table_name_89 (winner VARCHAR, notes VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_8 WHERE opponent = \"new england patriots\"", "question": "What is Result, when Opponent is New England Patriots?", "context": "CREATE TABLE table_name_8 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT competition FROM table_name_11 WHERE date = \"28/04/1906\"", "question": "What competition took place on 28/04/1906?", "context": "CREATE TABLE table_name_11 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_48 WHERE winners = \"cork city f.c.\" AND date = \"10/05/1998\"", "question": "Who were the runners-up in the game that was won by Cork City F.C. on 10/05/1998?", "context": "CREATE TABLE table_name_48 (runners_up VARCHAR, winners VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE winners = \"sligo rovers f.c.\"", "question": "What was the score in the game that was won by Sligo Rovers F.C.?", "context": "CREATE TABLE table_name_32 (score VARCHAR, winners VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE competition = \"fai cup\" AND runners_up = \"derry city f.c.\"", "question": "What date did the Fai Cup with Derry City F.C. as runners-up take place?", "context": "CREATE TABLE table_name_33 (date VARCHAR, competition VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_36 WHERE week = \"april 11\"", "question": "What is the Runner-up on April 11?", "context": "CREATE TABLE table_name_36 (runner_up VARCHAR, week VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_12 WHERE week = \"may 2\"", "question": "What was the Tournament on May 2?", "context": "CREATE TABLE table_name_12 (tournament VARCHAR, week VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_47 WHERE took_office = \"11 june 2001\" AND minister = \"mirko tremaglia\"", "question": "What is Left Office, when Took Office is \"11 June 2001\", and when Minister is \"Mirko Tremaglia\"?", "context": "CREATE TABLE table_name_47 (left_office VARCHAR, took_office VARCHAR, minister VARCHAR)"}, {"answer": "SELECT minister FROM table_name_89 WHERE party = \"an\"", "question": "What is Minister, when Party is \"AN\"?", "context": "CREATE TABLE table_name_89 (minister VARCHAR, party VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_16 WHERE party = \"udc\" AND took_office = \"11 june 2001\"", "question": "What is Left Office, when Party is \"UDC\", and when Took Office is \"11 June 2001\"?", "context": "CREATE TABLE table_name_16 (left_office VARCHAR, party VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT party FROM table_name_17 WHERE left_office = \"23 april 2005\" AND portfolio = \"minister of reforms and devolutions\"", "question": "What is Party, when Left Office is \"23 April 2005\", when Portfolio is \"Minister of Reforms and Devolutions\"?", "context": "CREATE TABLE table_name_17 (party VARCHAR, left_office VARCHAR, portfolio VARCHAR)"}, {"answer": "SELECT minister FROM table_name_97 WHERE portfolio = \"minister of pubblic administration\" AND took_office = \"14 november 2002\"", "question": "What is Minister, when Portfolio is \"Minister of Pubblic Administration\", and when Took Office is \"14 November 2002\"?", "context": "CREATE TABLE table_name_97 (minister VARCHAR, portfolio VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT party FROM table_name_55 WHERE minister = \"franco frattini\"", "question": "What is Party, when Minister is \"Franco Frattini\"?", "context": "CREATE TABLE table_name_55 (party VARCHAR, minister VARCHAR)"}, {"answer": "SELECT event FROM table_name_89 WHERE opponent = \"ryan bow\"", "question": "What event had the opponent Ryan Bow?", "context": "CREATE TABLE table_name_89 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_56 WHERE opponent = \"hiroyuki abe\"", "question": "What location had the opponent Hiroyuki Abe?", "context": "CREATE TABLE table_name_56 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_29 WHERE year = 2004", "question": "What was the 2nd leg for 2004?", "context": "CREATE TABLE table_name_29 (year VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_92 WHERE winner = \"san pedro\"", "question": "What is the 2nd leg when San Pedro was the winner?", "context": "CREATE TABLE table_name_92 (winner VARCHAR)"}, {"answer": "SELECT rate FROM table_name_9 WHERE goals > 22", "question": "What was the rate when there were more than 22 goals?", "context": "CREATE TABLE table_name_9 (rate VARCHAR, goals INTEGER)"}, {"answer": "SELECT MAX(against) FROM table_name_44 WHERE opposing_team = \"fiji\"", "question": "What largest against has the opposing team of fiji?", "context": "CREATE TABLE table_name_44 (against INTEGER, opposing_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_32 WHERE competition = \"european race walking cup\"", "question": "Which Position has a Competition of european race walking cup?", "context": "CREATE TABLE table_name_32 (position VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_22 WHERE competition = \"european championships\" AND position = \"7th\"", "question": "Which Venue has a Competition of european championships, and a Position of 7th?", "context": "CREATE TABLE table_name_22 (venue VARCHAR, competition VARCHAR, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_49 WHERE year < 2001 AND competition = \"world race walking cup\"", "question": "Where was the world race walking cup held before 2001?", "context": "CREATE TABLE table_name_49 (venue VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_66 WHERE res = \"marian sandu\"", "question": "WHAT COMPETITION HAS MARIAN SANDU?", "context": "CREATE TABLE table_name_66 (competition VARCHAR, res VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE date = \"1999-05-31\"", "question": "WHAT SCORE WAS ON 1999-05-31?", "context": "CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_47 WHERE score = \"5:5\"", "question": "WHAT OPPONENT HAD A SCORE OF 5:5?", "context": "CREATE TABLE table_name_47 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_16 WHERE score = \"5-0\" AND date = \"august 3, 2005\"", "question": "What Competition on August 3, 2005 had a Score of 5-0?", "context": "CREATE TABLE table_name_16 (competition VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_75 WHERE competition = \"2009 gulf cup of nations\"", "question": "What was the Venue of the 2009 Gulf Cup of Nations?", "context": "CREATE TABLE table_name_75 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_65 WHERE score = \"5-0\" AND date = \"october 27, 2005\"", "question": "What Venue on October 27, 2005 had a Score of 5-0?", "context": "CREATE TABLE table_name_65 (venue VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_47 WHERE competition = \"friendly\" AND score = \"5-0\" AND date = \"october 27, 2005\"", "question": "What is the Result of the Friendly Competition on October 27, 2005 with a Score of 5-0?", "context": "CREATE TABLE table_name_47 (result VARCHAR, date VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(react) FROM table_name_13 WHERE lane = 5", "question": "Can you tell me the total number of React that has the Lane of 5?", "context": "CREATE TABLE table_name_13 (react VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(react) FROM table_name_50 WHERE lane = 5", "question": "Can you tell me the lowest React that has the Lane of 5?", "context": "CREATE TABLE table_name_50 (react INTEGER, lane VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_39 WHERE margin = \"3 strokes\"", "question": "What is the winning score of the match with a margin of 3 strokes?", "context": "CREATE TABLE table_name_39 (winning_score VARCHAR, margin VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_64 WHERE championship = \"peter jackson classic\"", "question": "How many years was there a peter jackson classic?", "context": "CREATE TABLE table_name_64 (year VARCHAR, championship VARCHAR)"}, {"answer": "SELECT year FROM table_name_36 WHERE championship = \"peter jackson classic\"", "question": "Which year was the peter jackson classic?", "context": "CREATE TABLE table_name_36 (year VARCHAR, championship VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE visitor = \"toronto\"", "question": "What is Date, when Visitor is Toronto?", "context": "CREATE TABLE table_name_37 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_16 WHERE date = \"november 23\"", "question": "What is Record, when Date is November 23?", "context": "CREATE TABLE table_name_16 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_11 WHERE home = \"philadelphia\" AND date = \"november 18\"", "question": "What is Visitor, when Home is Philadelphia, and when Date is November 18?", "context": "CREATE TABLE table_name_11 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_71 WHERE visitor = \"toronto\"", "question": "What is the average Attendance, when Visitor is Toronto?", "context": "CREATE TABLE table_name_71 (attendance INTEGER, visitor VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_91 WHERE rank < 3", "question": "What's the average year with a rank less than 3?", "context": "CREATE TABLE table_name_91 (year INTEGER, rank INTEGER)"}, {"answer": "SELECT country FROM table_name_46 WHERE year = 2002", "question": "What country got accolades in 2002?", "context": "CREATE TABLE table_name_46 (country VARCHAR, year VARCHAR)"}, {"answer": "SELECT accolade FROM table_name_23 WHERE rank = 497", "question": "What's the accolade for the rank of 497?", "context": "CREATE TABLE table_name_23 (accolade VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_57 WHERE accolade = \"100 greatest singles of all time\"", "question": "What's the average year for the accolade 100 greatest singles of all time?", "context": "CREATE TABLE table_name_57 (year INTEGER, accolade VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_45 WHERE team = \"philadelphia\"", "question": "What was the attendance during the game against Philadelphia?", "context": "CREATE TABLE table_name_45 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_name_33 WHERE college = \"washington\"", "question": "Which NFL team has a player that came from a college in Washington?", "context": "CREATE TABLE table_name_33 (nfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_30 WHERE pick__number > 186 AND player = \"bobby micho\"", "question": "What position does Bobby Micho, who was picked later than 186 others, play on the Broncos team?", "context": "CREATE TABLE table_name_30 (position VARCHAR, pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT since FROM table_name_48 WHERE transfer_fee = \"\u00a3 12m\"", "question": "What is Since, when Transfer Fee is \"\u00a3 12m\"?", "context": "CREATE TABLE table_name_48 (since VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT name FROM table_name_49 WHERE goals > 14 AND transfer_fee = \"youth system\"", "question": "What is Name, when Goals is greater than 14, and when Transfer Fee is \"Youth System\"?", "context": "CREATE TABLE table_name_49 (name VARCHAR, goals VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT nat FROM table_name_73 WHERE name = \"f\u00e0bregas ( captain )\"", "question": "What is Nat., when Name is \"F\u00e0bregas ( Captain )\"?", "context": "CREATE TABLE table_name_73 (nat VARCHAR, name VARCHAR)"}, {"answer": "SELECT time FROM table_name_14 WHERE method = \"submission (knees)\"", "question": "What is Time, when Method is \"submission (knees)\"?", "context": "CREATE TABLE table_name_14 (time VARCHAR, method VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE event = \"ufc 40\"", "question": "What is Record, when Event is \"UFC 40\"?", "context": "CREATE TABLE table_name_57 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT track FROM table_name_79 WHERE year = \"1979\"", "question": "What is the name of the track that hosted the Swedish Grand Prix in 1979?", "context": "CREATE TABLE table_name_79 (track VARCHAR, year VARCHAR)"}, {"answer": "SELECT 250 AS _cc FROM table_name_31 WHERE year = \"1987\"", "question": "Who won the 250 cc in 1987?", "context": "CREATE TABLE table_name_31 (year VARCHAR)"}, {"answer": "SELECT 250 AS _cc FROM table_name_19 WHERE year = \"1985\"", "question": "Who won the 250 cc in 1985?", "context": "CREATE TABLE table_name_19 (year VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_95 WHERE record = \"1-1\"", "question": "Which opponent has 1-1 as the record?", "context": "CREATE TABLE table_name_95 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE opponent = \"magomedkhan gamzatkhanov\" AND method = \"submission\"", "question": "What record has magomedkhan gamzatkhanov as the opponent, and submission as the method?", "context": "CREATE TABLE table_name_59 (record VARCHAR, opponent VARCHAR, method VARCHAR)"}, {"answer": "SELECT round FROM table_name_49 WHERE record = \"3-4\"", "question": "What round has 3-4 as the record?", "context": "CREATE TABLE table_name_49 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_9 WHERE res = \"loss\" AND round = \"1\" AND opponent = \"akira maeda\"", "question": "What record has loss as the res., 1 for the round, and akira maeda as the opponent?", "context": "CREATE TABLE table_name_9 (record VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR)"}, {"answer": "SELECT record FROM table_name_48 WHERE method = \"decision (majority)\"", "question": "What record has decision (majority) as the method?", "context": "CREATE TABLE table_name_48 (record VARCHAR, method VARCHAR)"}, {"answer": "SELECT agg FROM table_name_63 WHERE team_1 = \"cd el\u00e1 nguema\"", "question": "What is Agg., when Team 1 is CD El\u00e1 Nguema?", "context": "CREATE TABLE table_name_63 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE player = \"jim colbert\"", "question": "What was Jim Colbert's score?", "context": "CREATE TABLE table_name_72 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_24 WHERE score = 69 - 69 - 73 = 211", "question": "What country scored 69-69-73=211?", "context": "CREATE TABLE table_name_24 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_70 WHERE player = \"bobby nichols\"", "question": "What country does Bobby Nichols play for?", "context": "CREATE TABLE table_name_70 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_44 WHERE manufacturer = \"honda\" AND grid = \"8\"", "question": "WHAT IS THE TIME/ RETIRED WITH A HONDA MANUFACTURER, GRID 8?", "context": "CREATE TABLE table_name_44 (time_retired VARCHAR, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_44 WHERE laps = \"24\" AND time_retired = \"+1.965\"", "question": "WHAT IS THE MANUFACTURER WITH 24 LAPS, AND +1.965 TIME/RETIRED?", "context": "CREATE TABLE table_name_44 (manufacturer VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT grid FROM table_name_22 WHERE manufacturer = \"honda\" AND laps = \"24\" AND time_retired = \"+13.997\"", "question": "WHAT IS THE GRID OF HONDA, WITH 24 LAPS AND  Time/Retired of +13.997?", "context": "CREATE TABLE table_name_22 (grid VARCHAR, time_retired VARCHAR, manufacturer VARCHAR, laps VARCHAR)"}, {"answer": "SELECT laps FROM table_name_7 WHERE grid = \"26\"", "question": "WHAT IS THE LAPS WITH A GRID OF 26?", "context": "CREATE TABLE table_name_7 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_5 WHERE grid = \"21\"", "question": "WHAT IS THE RIDER WITH A 21 GRID?", "context": "CREATE TABLE table_name_5 (rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_39 WHERE laps = \"24\" AND grid = \"27\"", "question": "WHAT IS THE MANUFACTURER WITH 24 LAPS AND GRID 27?", "context": "CREATE TABLE table_name_39 (manufacturer VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(year_)[a_] FROM table_name_3 WHERE position = \"linebacker\" AND college = \"georgia tech\"", "question": "What is the most recent year georgia tech chose a linebacker?", "context": "CREATE TABLE table_name_3 (a_ VARCHAR, year_ INTEGER, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_44 WHERE to_par = \"+2\" AND country = \"spain\"", "question": "Who is the player from Spain that has a +2 to par?", "context": "CREATE TABLE table_name_44 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_33 WHERE score = 69 - 71 = 140", "question": "Name the country with a score of 69-71=140.", "context": "CREATE TABLE table_name_33 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_13 WHERE country = \"united states\" AND player = \"hale irwin\"", "question": "What's the to par for Hale Irwin of the United States?", "context": "CREATE TABLE table_name_13 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_42 WHERE place = \"t5\" AND player = \"jim thorpe\"", "question": "What's the to par for Jim Thorpe in T5 Place?", "context": "CREATE TABLE table_name_42 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_97 WHERE player = \"jack nicklaus\"", "question": "What was Jack Nicklaus's score after round 1?", "context": "CREATE TABLE table_name_97 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_15 WHERE time = \"+39.476\" AND grid > 11", "question": "Which Laps have a Time of +39.476, and a Grid larger than 11?", "context": "CREATE TABLE table_name_15 (laps INTEGER, time VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time FROM table_name_40 WHERE laps < 28 AND rider = \"nicky hayden\"", "question": "Which Time has Laps smaller than 28, and a Rider of nicky hayden?", "context": "CREATE TABLE table_name_40 (time VARCHAR, laps VARCHAR, rider VARCHAR)"}, {"answer": "SELECT rider FROM table_name_42 WHERE grid > 6 AND laps = 28 AND time = \"+39.476\"", "question": "Which Rider has a Grid larger than 6, and has Laps of 28, and a Time of +39.476?", "context": "CREATE TABLE table_name_42 (rider VARCHAR, time VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_34 WHERE total = 4 AND gold < 1", "question": "Which Bronze has a Total of 4, and a Gold smaller than 1?", "context": "CREATE TABLE table_name_34 (bronze INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_53 WHERE silver > 1 AND total > 3 AND nation = \"turkey\" AND gold < 2", "question": "Which Bronze has a Silver larger than 1, a Total larger than 3, a Nation of turkey, and a Gold smaller than 2?", "context": "CREATE TABLE table_name_53 (bronze INTEGER, gold VARCHAR, nation VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_21 WHERE bronze = 1 AND total < 3", "question": "Which Gold has a Bronze of 1, and a Total smaller than 3?", "context": "CREATE TABLE table_name_21 (gold INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_43 WHERE opponent = \"new orleans saints\"", "question": "In what Week is the Opponent the New Orleans Saints?", "context": "CREATE TABLE table_name_43 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_10 WHERE opponent = \"tampa bay buccaneers\" AND attendance < 44 OFFSET 506", "question": "In what Weeks is the game against the Tampa Bay Buccaneers with less than 44,506 in Attendance?", "context": "CREATE TABLE table_name_10 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT home FROM table_name_77 WHERE record = \"24\u201316\u20136\"", "question": "What team was home, when the record was 24\u201316\u20136?", "context": "CREATE TABLE table_name_77 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE visitor = \"boston bruins\" AND record = \"4\u20130\u20131\"", "question": "What date was the visitor the Boston Bruins, and the record was 4\u20130\u20131?", "context": "CREATE TABLE table_name_25 (date VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_84 WHERE game = 81", "question": "Who had the most points in game 81?", "context": "CREATE TABLE table_name_84 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT flight FROM table_name_26 WHERE aircraft = \"vickers viscount type 794\"", "question": "Which flight had an aircraft of vickers viscount type 794?", "context": "CREATE TABLE table_name_26 (flight VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT flight FROM table_name_28 WHERE aircraft = \"avro rj-100\"", "question": "Which flight had the aircraft avro rj-100?", "context": "CREATE TABLE table_name_28 (flight VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE registration = \"tc-jes\"", "question": "When was the registration of tc-jes?", "context": "CREATE TABLE table_name_14 (date VARCHAR, registration VARCHAR)"}, {"answer": "SELECT fatalities FROM table_name_60 WHERE location = \"ankara\" AND aircraft = \"douglas c-47\"", "question": "Which fatality was at ankara for the aircraft douglas c-47?", "context": "CREATE TABLE table_name_60 (fatalities VARCHAR, location VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_12 WHERE res = \"win\" AND method = \"n/a\"", "question": "How many total rounds have the results of win, and n/a as the method?", "context": "CREATE TABLE table_name_12 (round VARCHAR, res VARCHAR, method VARCHAR)"}, {"answer": "SELECT time FROM table_name_80 WHERE event = \"rings: final capture\"", "question": "How long did the match last in the Rings: Final Capture event?", "context": "CREATE TABLE table_name_80 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT res FROM table_name_55 WHERE opponent = \"wataru sakata\"", "question": "What is the result for the match against Wataru Sakata?", "context": "CREATE TABLE table_name_55 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT res FROM table_name_19 WHERE opponent = \"oleg taktarov\"", "question": "The match against Oleg Taktarov had what result?", "context": "CREATE TABLE table_name_19 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_56 WHERE record = \"4-2\"", "question": "What was the method when 4-2 was the record?", "context": "CREATE TABLE table_name_56 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE tie_no = \"6\"", "question": "What was the score for Tie no. 6?", "context": "CREATE TABLE table_name_27 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_21 WHERE away_team = \"leicester city\"", "question": "What was the tie against the away team, Leicester City?", "context": "CREATE TABLE table_name_21 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT round FROM table_name_43 WHERE time = \"3:01\"", "question": "Which round has a time of 3:01?", "context": "CREATE TABLE table_name_43 (round VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_4 WHERE round = \"3\" AND event = \"ufc 110\"", "question": "Where is the UFC 110 event with 3 rounds located?", "context": "CREATE TABLE table_name_4 (location VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_74 WHERE date = \"sunday 24 february\"", "question": "Which Home team score is on sunday 24 february?", "context": "CREATE TABLE table_name_74 (home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_85 WHERE home_team = \"st kilda\"", "question": "Which Crowd has a Home team of st kilda?", "context": "CREATE TABLE table_name_85 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_65 WHERE ground = \"gabba\"", "question": "Which Away team has a Ground of gabba?", "context": "CREATE TABLE table_name_65 (away_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_85 WHERE away_team = \"sydney\"", "question": "Which Crowd has a Away team of sydney?", "context": "CREATE TABLE table_name_85 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT SUM(owgr_pts) FROM table_name_37 WHERE dates = \"may 10-13\"", "question": "Which OWGR pts has Dates of may 10-13?", "context": "CREATE TABLE table_name_37 (owgr_pts INTEGER, dates VARCHAR)"}, {"answer": "SELECT home FROM table_name_5 WHERE attendance > 1 OFFSET 858", "question": "Which Home has an Attendance larger than 1,858?", "context": "CREATE TABLE table_name_5 (home VARCHAR, attendance INTEGER)"}, {"answer": "SELECT MAX(attendance) FROM table_name_29 WHERE score = \"0:2\"", "question": "Which Attendance has a Score of 0:2?", "context": "CREATE TABLE table_name_29 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE attendance > 1 OFFSET 858", "question": "Which Date has an Attendance larger than 1,858?", "context": "CREATE TABLE table_name_32 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT home FROM table_name_63 WHERE score = \"0:2\"", "question": "Which Home has a Score of 0:2?", "context": "CREATE TABLE table_name_63 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE location_attendance = \"verizon center 7,448\"", "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 AVG(game) FROM table_name_28 WHERE score = \"101-109 (ot)\"", "question": "Which Game has a Score of 101-109 (ot)?", "context": "CREATE TABLE table_name_28 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_96 WHERE location_attendance = \"fleetcenter\" AND score = \"w 120-87\"", "question": "Which player made the highest number of assists during the game played at the FleetCenter, with end score of W 120-87?", "context": "CREATE TABLE table_name_96 (high_assists VARCHAR, location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_77 WHERE score = \"w 93-85\"", "question": "Which player was the high points scorer during the game with an end score of W 93-85?", "context": "CREATE TABLE table_name_77 (high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE high_points = \"p. pierce (31)\"", "question": "For the game in which P. Pierce (31) scored the most points, what was the final score?", "context": "CREATE TABLE table_name_93 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_4 WHERE game = 2", "question": "Who made the most assists in Game 2 of this season?", "context": "CREATE TABLE table_name_4 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_37 WHERE goals_against > 58 AND played > 30", "question": "What is the smallest number of goals when the goals against are more than 58 and played number is more than 30?", "context": "CREATE TABLE table_name_37 (goals_for INTEGER, goals_against VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_2 WHERE points = 32 AND wins > 13", "question": "What is the minimum position when points are 32 and wins are greater than 13?", "context": "CREATE TABLE table_name_2 (position INTEGER, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_1 WHERE goals_against > 33 AND losses = 13 AND goals_for < 51", "question": "What is the most draws when goals against are more than 33, losses are 13 and goals for is less than 51?", "context": "CREATE TABLE table_name_1 (draws INTEGER, goals_for VARCHAR, goals_against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_81 WHERE wins < 14 AND draws < 3", "question": "What is the position when wins are fewer than 14 and draws are fewer than 3?", "context": "CREATE TABLE table_name_81 (position INTEGER, wins VARCHAR, draws VARCHAR)"}, {"answer": "SELECT club FROM table_name_60 WHERE losses = 15 AND wins = 14", "question": "Which club has 15 losses and 14 wins?", "context": "CREATE TABLE table_name_60 (club VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT home FROM table_name_68 WHERE date = \"march 19\"", "question": "What home is dated march 19?", "context": "CREATE TABLE table_name_68 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_2 WHERE points = 46", "question": "What home has 46 points?", "context": "CREATE TABLE table_name_2 (home VARCHAR, points VARCHAR)"}, {"answer": "SELECT released FROM table_name_13 WHERE series_sorted = \"6y/aa\"", "question": "What was the date of release for the episode sorted value of 6Y/AA?", "context": "CREATE TABLE table_name_13 (released VARCHAR, series_sorted VARCHAR)"}, {"answer": "SELECT series_sorted FROM table_name_91 WHERE released = \"december 2009\"", "question": "What is the series sorted value for the episode released December 2009?", "context": "CREATE TABLE table_name_91 (series_sorted VARCHAR, released VARCHAR)"}, {"answer": "SELECT round FROM table_name_76 WHERE team__number2 = \"gomel\"", "question": "What round has Team #2 Gomel?", "context": "CREATE TABLE table_name_76 (round VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_56 WHERE order_and_title = \"cardinal-deacon of s. nicola in carcere tulliano\"", "question": "Who was the elevator when the Cardinal-Deacon of S. Nicola in Carcere Tulliano was the order and title?", "context": "CREATE TABLE table_name_56 (elevator VARCHAR, order_and_title VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_30 WHERE order_and_title = \"cardinal-priest of s. prassede\"", "question": "The Cardinal-Priest of S. Prassede order and title has who as the elevator?", "context": "CREATE TABLE table_name_30 (elevator VARCHAR, order_and_title VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_98 WHERE elevator = \"innocent iv\"", "question": "When the elevator was Innocent IV what was the nationality?", "context": "CREATE TABLE table_name_98 (nationality VARCHAR, elevator VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_63 WHERE elector = \"giovanni gaetano orsini\"", "question": "When Giovanni Gaetano Orsini was the elector who was the elevator?", "context": "CREATE TABLE table_name_63 (elevator VARCHAR, elector VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_11 WHERE elector = \"anchero pantaleone\"", "question": "When Anchero Pantaleone was the elector what is under nationality?", "context": "CREATE TABLE table_name_11 (nationality VARCHAR, elector VARCHAR)"}, {"answer": "SELECT order_and_title FROM table_name_78 WHERE elevated = \"may 1262\" AND elector = \"guillaume de bray\"", "question": "With a date of May 1262 under elevated, Guillaume de Bray as the elector, what is the order and title?", "context": "CREATE TABLE table_name_78 (order_and_title VARCHAR, elevated VARCHAR, elector VARCHAR)"}, {"answer": "SELECT result FROM table_name_35 WHERE opponent = \"san francisco 49ers\"", "question": "What was the result when the San Francisco 49ers were the opponents?", "context": "CREATE TABLE table_name_35 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE tournament = \"rabat\" AND opponent_in_the_final = \"yannik reuter\"", "question": "What was the Score of the Rabat Tournament with Opponent in the final Yannik Reuter?", "context": "CREATE TABLE table_name_20 (score VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_4 WHERE surface = \"clay\" AND score = \"6\u20130, 6\u20132\"", "question": "What is the Opponent of the match played on a Clay Surface with a Score of 6\u20130, 6\u20132?", "context": "CREATE TABLE table_name_4 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE opponent_in_the_final = \"filip pol\u00e1\u0161ek\"", "question": "What is the Date of the match with Opponent in the final of Filip Pol\u00e1\u0161ek?", "context": "CREATE TABLE table_name_49 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE tournament = \"rabat\" AND opponent_in_the_final = \"frederico gil\"", "question": "What is the Score of the Rabat Tournament with Opponent in the final of Frederico Gil?", "context": "CREATE TABLE table_name_56 (score VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE result = \"w 30\u201315\"", "question": "On what Date was the Result of the game W 30\u201315?", "context": "CREATE TABLE table_name_40 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE week = 9", "question": "What is the Date of Week 9?", "context": "CREATE TABLE table_name_6 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_56 WHERE date = \"september 1, 1996\"", "question": "What is the Result of the game on September 1, 1996?", "context": "CREATE TABLE table_name_56 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_22 WHERE result = \"w 34\u201324\"", "question": "On what Week was the Result W 34\u201324?", "context": "CREATE TABLE table_name_22 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT week FROM table_name_42 WHERE date = \"november 10, 1996\"", "question": "What is the Week on November 10, 1996?", "context": "CREATE TABLE table_name_42 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT status FROM table_name_2 WHERE census_ranking = \"3,474 of 5,008\"", "question": "What is the Status of the Paris with a Census Ranking of 3,474 of 5,008?", "context": "CREATE TABLE table_name_2 (status VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT COUNT(area_km_2) FROM table_name_58 WHERE population = 2 OFFSET 113", "question": "What is the Area of the Parish with a Population of 2,113?", "context": "CREATE TABLE table_name_58 (area_km_2 VARCHAR, population VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_85 WHERE area_km_2 = 236.76", "question": "What is the Population of the Parish with an Area km 2 of 236.76?", "context": "CREATE TABLE table_name_85 (population INTEGER, area_km_2 VARCHAR)"}, {"answer": "SELECT area_km_2 FROM table_name_71 WHERE population = 71", "question": "What is the Area of the Parish with a Population of 71?", "context": "CREATE TABLE table_name_71 (area_km_2 VARCHAR, population VARCHAR)"}, {"answer": "SELECT elevation_ + _height FROM table_name_21 WHERE name = \"halfbeak\"", "question": "What is the elevation and height for Halfbeak?", "context": "CREATE TABLE table_name_21 (elevation_ VARCHAR, _height VARCHAR, name VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_91 WHERE name = \"long shot\"", "question": "What is the purpose of Long Shot?", "context": "CREATE TABLE table_name_91 (purpose VARCHAR, name VARCHAR)"}, {"answer": "SELECT yield FROM table_name_69 WHERE purpose = \"weapons development\" AND location = \"nts area u2r\"", "question": "What is the yield in NTS Area U2R when the purpose is weapons development?", "context": "CREATE TABLE table_name_69 (yield VARCHAR, purpose VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_60 WHERE listed = \"1977-09-15\"", "question": "What location was listed on 1977-09-15?", "context": "CREATE TABLE table_name_60 (location VARCHAR, listed VARCHAR)"}, {"answer": "SELECT borough FROM table_name_54 WHERE location = \"seward\" AND listed = \"1977-11-23\"", "question": "What is the Borough for the Seward listing on 1977-11-23?", "context": "CREATE TABLE table_name_54 (borough VARCHAR, location VARCHAR, listed VARCHAR)"}, {"answer": "SELECT location FROM table_name_25 WHERE listed = \"1977-11-23\"", "question": "What location was listed on 1977-11-23?", "context": "CREATE TABLE table_name_25 (location VARCHAR, listed VARCHAR)"}, {"answer": "SELECT listed FROM table_name_93 WHERE borough = \"valdez-cordova (census area)\"", "question": "What are the listings in the Valdez-cordova (census area) Borough?", "context": "CREATE TABLE table_name_93 (listed VARCHAR, borough VARCHAR)"}, {"answer": "SELECT name FROM table_name_81 WHERE listed = \"1977-11-23\"", "question": "What is the name of the building listed on 1977-11-23?", "context": "CREATE TABLE table_name_81 (name VARCHAR, listed VARCHAR)"}, {"answer": "SELECT record FROM table_name_51 WHERE game = 52", "question": "What was the Maple Leafs' record on game 52?", "context": "CREATE TABLE table_name_51 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(sales__billion_) AS $_ FROM table_name_43 WHERE headquarters = \"germany\" AND profits__billion_$_ < 6.7", "question": "What was Germany's lowest sales when the profit was smaller than 6.7 billion?", "context": "CREATE TABLE table_name_43 (sales__billion_ INTEGER, headquarters VARCHAR, profits__billion_$_ VARCHAR)"}, {"answer": "SELECT industry FROM table_name_83 WHERE profits__billion_$_ < 14.2 AND assets__billion_$_ > 2 OFFSET 467.9", "question": "For which industry was the profit smaller than 14.2 billion and the assets larger than 2,467.9 billion?", "context": "CREATE TABLE table_name_83 (industry VARCHAR, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_31 WHERE headquarters = \"usa\" AND market_value__billion_$_ > 407.2", "question": "What is the average rank for USA when the market value is 407.2 billion?", "context": "CREATE TABLE table_name_31 (rank INTEGER, headquarters VARCHAR, market_value__billion_$_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE attendance > 875 AND home = \"platense\"", "question": "What was date was the attendance larger than 875 against Platense?", "context": "CREATE TABLE table_name_26 (date VARCHAR, attendance VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_27 WHERE attendance = 3305", "question": "Who was the home team with 3305 in attendance?", "context": "CREATE TABLE table_name_27 (home VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_56 WHERE home = \"hispano\"", "question": "What was the highest attendance for the Hispano team?", "context": "CREATE TABLE table_name_56 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT country FROM table_name_60 WHERE player = \"tiger woods\"", "question": "What country has the player Tiger Woods?", "context": "CREATE TABLE table_name_60 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_93 WHERE player = \"loren roberts\"", "question": "What is the Money ($) player Loren Roberts has made?", "context": "CREATE TABLE table_name_93 (money___ INTEGER, player VARCHAR)"}, {"answer": "SELECT pinnacle_height FROM table_name_17 WHERE town = \"metcalf, georgia\"", "question": "What is the Pinnacle height for Metcalf, Georgia?", "context": "CREATE TABLE table_name_17 (pinnacle_height VARCHAR, town VARCHAR)"}, {"answer": "SELECT player FROM table_name_16 WHERE place = \"t7\" AND score = 70 - 71 = 141", "question": "Who placed t7 with a score of 70-71=141?", "context": "CREATE TABLE table_name_16 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_30 WHERE score = 71 - 69 = 140", "question": "What country scored 71-69=140?", "context": "CREATE TABLE table_name_30 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT nation FROM table_name_38 WHERE bronze > 3 AND gold = 0 AND total = 9", "question": "What nation had more than 3 bronze, 0 gold, and a total of 9?", "context": "CREATE TABLE table_name_38 (nation VARCHAR, total VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_31 WHERE loser = \"new york giants\" AND location = \"new meadowlands stadium\"", "question": "What's the earliest year the new york giants lost at new meadowlands stadium?", "context": "CREATE TABLE table_name_31 (year INTEGER, loser VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_15 WHERE location = \"metlife stadium\" AND loser = \"new york giants\"", "question": "How many years did the new york giants lose at metlife stadium?", "context": "CREATE TABLE table_name_15 (year VARCHAR, location VARCHAR, loser VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_53 WHERE location = \"lincoln financial field\" AND winner = \"new york giants\" AND result = \"15-7\"", "question": "How many years did the new york giants win with a result of 15-7 at lincoln financial field?", "context": "CREATE TABLE table_name_53 (year VARCHAR, result VARCHAR, location VARCHAR, winner VARCHAR)"}, {"answer": "SELECT loser FROM table_name_24 WHERE location = \"lincoln financial field\" AND winner = \"philadelphia eagles\" AND date = \"september 30\"", "question": "Who lost when the philadelphia eagles won at lincoln financial field on september 30?", "context": "CREATE TABLE table_name_24 (loser VARCHAR, date VARCHAR, location VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE winner = \"new york giants\" AND year > 2011", "question": "What date did the new york giants win after 2011?", "context": "CREATE TABLE table_name_96 (date VARCHAR, winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT official_name FROM table_name_70 WHERE census_ranking = \"769 of 5,008\"", "question": "What is Official Name, when Census Ranking is 769 of 5,008?", "context": "CREATE TABLE table_name_70 (official_name VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT status FROM table_name_93 WHERE area_km_2 > 303.73", "question": "What is Status, when Area km 2 is greater than 303.73?", "context": "CREATE TABLE table_name_93 (status VARCHAR, area_km_2 INTEGER)"}, {"answer": "SELECT MIN(area_km_2) FROM table_name_21 WHERE population > 1 OFFSET 395", "question": "What is Area km 2, when Population is greater than 1,395?", "context": "CREATE TABLE table_name_21 (area_km_2 INTEGER, population INTEGER)"}, {"answer": "SELECT place FROM table_name_75 WHERE country = \"zimbabwe\"", "question": "What is the Place of the Player from Zimbabwe?", "context": "CREATE TABLE table_name_75 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_16 WHERE score = 73 - 68 - 71 = 212", "question": "What is the Place of the Player with a Score of 73-68-71=212?", "context": "CREATE TABLE table_name_16 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_19 WHERE to_par = \"+3\"", "question": "What is the Place of the Player with a +3 To par?", "context": "CREATE TABLE table_name_19 (place VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE to_par = \"+4\" AND player = \"stewart cink\"", "question": "What is the Score of Stewart Cink with a To par of +4?", "context": "CREATE TABLE table_name_50 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_96 WHERE place = \"t10\" AND score = 74 - 73 - 68 = 215", "question": "What T10 Place Player has a Score of 74-73-68=215?", "context": "CREATE TABLE table_name_96 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_16 WHERE position = \"wr\" AND college = \"michigan\" AND overall > 255", "question": "What is the maximum pick when WR was the position and Michigan the college, and the overall greater than 255?", "context": "CREATE TABLE table_name_16 (pick INTEGER, overall VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_95 WHERE position = \"db\" AND name = \"jeff welch\" AND pick < 21", "question": "What is the total round when DB was the position, and the pick less than 21, and Jeff Welch as the name?", "context": "CREATE TABLE table_name_95 (round INTEGER, pick VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE year_s__won = \"1978 , 1985\"", "question": "What is Player, when Year(s) Won is 1978 , 1985?", "context": "CREATE TABLE table_name_41 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_49 WHERE college = \"purdue\" AND round < 5", "question": "WHAT IS THE AVERAGE PICK FOR PURDUE, WITH A ROUND SMALLER THAN 5?", "context": "CREATE TABLE table_name_49 (pick INTEGER, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_11 WHERE position = \"te\" AND round < 2", "question": "WHAT IS THE HIGHEST PICK WITH A TE POSITION, AND ROUND SMALLER THAN 2?", "context": "CREATE TABLE table_name_11 (pick INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_56 WHERE name = \"mark fischer\"", "question": "WHAT IS THE AVERAGE OVERALL, FOR MARK FISCHER?", "context": "CREATE TABLE table_name_56 (overall INTEGER, name VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_82 WHERE name = \"david terrell\" AND round < 7", "question": "WHAT IS THE SUM OF PICK FOR DAVID TERRELL, WITH A ROUND SMALLER THAN 7?", "context": "CREATE TABLE table_name_82 (pick INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_9 WHERE round > 6 AND overall = 191", "question": "WHAT IS THE POSITION WITH A ROUND LARGER THAN 6, AND OVERALL OF 191?", "context": "CREATE TABLE table_name_9 (position VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT player FROM table_name_84 WHERE score = 68 - 71 = 139", "question": "Who is the player with a score of 68-71=139?", "context": "CREATE TABLE table_name_84 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_66 WHERE score = 70 - 69 = 139 AND player = \"jerry pate\"", "question": "What is the to par of player jerry pate, who has a 70-69=139 score?", "context": "CREATE TABLE table_name_66 (to_par VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_86 WHERE place = \"t9\" AND score = 72 - 67 = 139", "question": "What is the to par of the player with a t9 place and a score of 72-67=139?", "context": "CREATE TABLE table_name_86 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_45 WHERE score = 69 - 69 = 138", "question": "What is the place of the player witha 69-69=138 score?", "context": "CREATE TABLE table_name_45 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_50 WHERE game = 68", "question": "What team played the Jazz at game 68?", "context": "CREATE TABLE table_name_50 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE high_points = \"mehmet okur (24)\"", "question": "What date did mehmet okur (24) have the most points?", "context": "CREATE TABLE table_name_14 (date VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_3 WHERE attendance = 64 OFFSET 146", "question": "What week had attendance of 64,146?", "context": "CREATE TABLE table_name_3 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_63 WHERE week = 12", "question": "What is the attendance of week 12?", "context": "CREATE TABLE table_name_63 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_35 WHERE date = \"november 3, 1974\"", "question": "What is the attendance from November 3, 1974?", "context": "CREATE TABLE table_name_35 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_23 WHERE week = 8", "question": "What is the attendance of week 8?", "context": "CREATE TABLE table_name_23 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT loser FROM table_name_43 WHERE year = 2001 AND winner = \"new york giants\"", "question": "Who was the loser against the New York Giants in 2001?", "context": "CREATE TABLE table_name_43 (loser VARCHAR, year VARCHAR, winner VARCHAR)"}, {"answer": "SELECT location FROM table_name_54 WHERE result = \"24-21\"", "question": "What was the location with the 24-21 result?", "context": "CREATE TABLE table_name_54 (location VARCHAR, result VARCHAR)"}, {"answer": "SELECT winner FROM table_name_60 WHERE result = \"24-21\"", "question": "Who was the winner with the 24-21 result?", "context": "CREATE TABLE table_name_60 (winner VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_33 WHERE place = \"t3\" AND player = \"ben hogan\"", "question": "What is the average To Par, when Place is \"T3\", and when Player is \"Ben Hogan\"?", "context": "CREATE TABLE table_name_33 (to_par INTEGER, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_22 WHERE player = \"julius boros\"", "question": "What is the average To Par, when Player is \"Julius Boros\"?", "context": "CREATE TABLE table_name_22 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_35 WHERE score = 72 - 73 = 145", "question": "What is the highest To Par, when Score is \"72-73=145\"?", "context": "CREATE TABLE table_name_35 (to_par INTEGER, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE place = \"t1\"", "question": "What is Score, when Place is \"T1\"?", "context": "CREATE TABLE table_name_15 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_30 WHERE to_par = 5 AND score = 72 - 73 = 145", "question": "What is Place, when To Par is \"5\", and when Score is \"72-73=145\"?", "context": "CREATE TABLE table_name_30 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_33 WHERE round > 11", "question": "What is the highest pick # after round 11?", "context": "CREATE TABLE table_name_33 (pick__number INTEGER, round INTEGER)"}, {"answer": "SELECT college FROM table_name_47 WHERE round = 3 AND pick__number = 84", "question": "Which college has a pick # 84 in round 3?", "context": "CREATE TABLE table_name_47 (college VARCHAR, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_68 WHERE round = 11", "question": "What was the pick # for round 11?", "context": "CREATE TABLE table_name_68 (pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_64 WHERE round > 8 AND name = \"kenny fells\" AND overall > 297", "question": "Which Pick has a Round larger than 8, a Name of kenny fells, and an Overall larger than 297?", "context": "CREATE TABLE table_name_64 (pick INTEGER, overall VARCHAR, round VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_92 WHERE round > 7 AND name = \"wayne asberry\"", "question": "Which Position has a Round larger than 7, and a Name of wayne asberry?", "context": "CREATE TABLE table_name_92 (position VARCHAR, round VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_39 WHERE name = \"markus koch\"", "question": "Which Overall has a Name of markus koch?", "context": "CREATE TABLE table_name_39 (overall INTEGER, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_17 WHERE round < 8 AND pick = 20 AND overall < 186", "question": "Which Position has a Round smaller than 8, a Pick of 20, and an Overall smaller than 186?", "context": "CREATE TABLE table_name_17 (position VARCHAR, overall VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE away_team = \"fulham\"", "question": "What is the score when Fulham is the away team?", "context": "CREATE TABLE table_name_55 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_62 WHERE tie_no = \"14\"", "question": "Which away team has a tie number of 14?", "context": "CREATE TABLE table_name_62 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_26 WHERE date = \"5 january 1986\" AND away_team = \"exeter city\"", "question": "What is the tie number in the game on 5 January 1986 where Exeter City is the away team?", "context": "CREATE TABLE table_name_26 (tie_no VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_52 WHERE mccain_percentage = \"55.0%\" AND obama_number > 3 OFFSET 487", "question": "What is the total average for McCain% of 55.0% and Obama# higher than 3,487?", "context": "CREATE TABLE table_name_52 (total INTEGER, mccain_percentage VARCHAR, obama_number VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_8 WHERE 2009 = \"w\" AND 2007 = \"qf\"", "question": "what is 2010 when 2009 is w and 2007 is qf?", "context": "CREATE TABLE table_name_8 (Id VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_4 WHERE 2012 = \"4r\"", "question": "what is 2000 when 2012 is 4r?", "context": "CREATE TABLE table_name_4 (Id VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_54 WHERE 2012 = \"w\" AND 2011 = \"4r\"", "question": "what is 2000 when 2012 is w and 2011 is 4r?", "context": "CREATE TABLE table_name_54 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_24 WHERE 2006 = \"3r\"", "question": "what is 2010 when 2006 is 3r?", "context": "CREATE TABLE table_name_24 (Id VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_11 WHERE 2001 = \"qf\" AND 2011 = \"4r\"", "question": "what is 2013 when 2001 is qf and 2011 is 4r?", "context": "CREATE TABLE table_name_11 (Id VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_25 WHERE record = \"1-1\"", "question": "What is the average round for the record of 1-1?", "context": "CREATE TABLE table_name_25 (round INTEGER, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_87 WHERE record = \"12-2-3\"", "question": "What method had a record 12-2-3?", "context": "CREATE TABLE table_name_87 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT hanyu_pinyin FROM table_name_66 WHERE name = \"jinning township\"", "question": "What Hanyu Pinyin is in the Jinning Township?", "context": "CREATE TABLE table_name_66 (hanyu_pinyin VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(scored) FROM table_name_72 WHERE date = \"22 february 2006\"", "question": "How many times did Sham Kwok Fai score in the game that was played on 22 February 2006?", "context": "CREATE TABLE table_name_72 (scored INTEGER, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE home_team = \"york city\"", "question": "The home team york city has what score?", "context": "CREATE TABLE table_name_44 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_23 WHERE attendance = \"61,603\"", "question": "What is the total number of Week(s), when Attendance is 61,603?", "context": "CREATE TABLE table_name_23 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE attendance = \"62,170\"", "question": "What is Opponent, when Attendance is 62,170?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_43 WHERE driver = \"alex sperafico\" AND grid > 17", "question": "HOW MANY POINTS DOES ALEX SPERAFICO HAVE WITH A GRID LARGER THAN 17?", "context": "CREATE TABLE table_name_43 (points INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_22 WHERE points > 5 AND team = \"forsythe racing\" AND grid = 5", "question": "WHAT ARE THE LAPS WITH POINTS LARGER THAN 5, WITH FORSYTHE RACING, AND GRID 5?", "context": "CREATE TABLE table_name_22 (laps INTEGER, grid VARCHAR, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE competition = \"1978 world cup qualification\"", "question": "WHAT IS THE SCORE WHEN THE COMPETITION WAS 1978 world cup qualification?", "context": "CREATE TABLE table_name_2 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_78 WHERE name = \"jerry hackenbruck\" AND overall < 282", "question": "What is the average pick number for jerry hackenbruck who was overall pick less than 282?", "context": "CREATE TABLE table_name_78 (pick INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_30 WHERE name = \"mark doak\" AND overall < 147", "question": "What is the lowest draft pick number for mark doak who had an overall pick smaller than 147?", "context": "CREATE TABLE table_name_30 (pick INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT position FROM table_name_55 WHERE college = \"california\"", "question": "What position did the player have who was from the college of california?", "context": "CREATE TABLE table_name_55 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_60 WHERE overall < 344 AND name = \"jerry hackenbruck\"", "question": "What college did jerry hackenbruck come from who had an overall pick less than 344?", "context": "CREATE TABLE table_name_60 (college VARCHAR, overall VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_41 WHERE date = \"03/18/08\"", "question": "What team was the opponent on 03/18/08?", "context": "CREATE TABLE table_name_41 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT site FROM table_name_39 WHERE city = \"delaware\"", "question": "What is the site where the game was held in the city of Delaware?", "context": "CREATE TABLE table_name_39 (site VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_93 WHERE opponent = \"towson\"", "question": "What city was the game held in when the opponent was Towson?", "context": "CREATE TABLE table_name_93 (city VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_11 WHERE city = \"baltimore\" AND time = \"2:00pm\" AND date = \"4/06/08\"", "question": "What team was opponen in baltimore, at 2:00pm, on 4/06/08?", "context": "CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR, city VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE site = \"umbc field\"", "question": "What date was the game held at UMBC Field?", "context": "CREATE TABLE table_name_47 (date VARCHAR, site VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE city = \"towson\"", "question": "What date was the game held in Towson?", "context": "CREATE TABLE table_name_76 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT MAX(series) FROM table_name_94 WHERE premiere = \"29 october 1990\" AND episodes > 6", "question": "Which season premiered on 29 October 1990 and had more than 6 episodes?", "context": "CREATE TABLE table_name_94 (series INTEGER, premiere VARCHAR, episodes VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE score = \"71-64\"", "question": "WHAT DATE HAD A SCORE OF 71-64?", "context": "CREATE TABLE table_name_46 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE date = \"september 21\"", "question": "WHAT SCORE WAS ON SEPTEMBER 21?", "context": "CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE record = \"1-1\"", "question": "WHAT SCORE HAD A RECORD OF 1-1?", "context": "CREATE TABLE table_name_42 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_17 WHERE date = \"september 28\"", "question": "WHAT OPPONENT HAD A DATE OF SEPTEMBER 28?", "context": "CREATE TABLE table_name_17 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE result = \"loss\" AND record = \"1-1\"", "question": "WHAT SCORE HAD A LOSS AND RECORD OF 1-1?", "context": "CREATE TABLE table_name_75 (score VARCHAR, result VARCHAR, record VARCHAR)"}, {"answer": "SELECT alternate__2_ FROM table_name_7 WHERE coach = \"andy brown\" AND captain = \"nick grady\"", "question": "Who is the alternate for Andy Brown, and Nick Grady?", "context": "CREATE TABLE table_name_7 (alternate__2_ VARCHAR, coach VARCHAR, captain VARCHAR)"}, {"answer": "SELECT captain FROM table_name_33 WHERE alternate__1_ = \"gintare karpaviciute\"", "question": "Which captain has Gintare Karpaviciute as an alternate?", "context": "CREATE TABLE table_name_33 (captain VARCHAR, alternate__1_ VARCHAR)"}, {"answer": "SELECT coach FROM table_name_1 WHERE captain = \"robert harvey\"", "question": "Which coach works with Robert Harvey?", "context": "CREATE TABLE table_name_1 (coach VARCHAR, captain VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_66 WHERE founded = 1954", "question": "Which Nickname has Founded of 1954?", "context": "CREATE TABLE table_name_66 (nickname VARCHAR, founded VARCHAR)"}, {"answer": "SELECT team FROM table_name_18 WHERE location_attendance = \"boston garden\" AND score = \"l 118-130\"", "question": "Which team played in the Boston Garden when the final score was L 118-130?", "context": "CREATE TABLE table_name_18 (team VARCHAR, location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_55 WHERE location_attendance = \"boston garden\" AND series = \"1-0\"", "question": "What team played at the Boston Garden when the series was 1-0?", "context": "CREATE TABLE table_name_55 (team VARCHAR, location_attendance VARCHAR, series VARCHAR)"}, {"answer": "SELECT driver FROM table_name_63 WHERE grid = 2", "question": "Which driver had a grid of 2?", "context": "CREATE TABLE table_name_63 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_79 WHERE team = \"mi-jack conquest racing\" AND points = \"16\"", "question": "What is the smallest grid value that had 16 points and a team of Mi-Jack Conquest Racing?", "context": "CREATE TABLE table_name_79 (grid INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_12 WHERE laps = 165", "question": "What is the number of points associated with 165 laps?", "context": "CREATE TABLE table_name_12 (points VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_9 WHERE points = \"8\" AND grid < 8", "question": "What is the total number of laps associated with 8 points and a grid under 8?", "context": "CREATE TABLE table_name_9 (laps VARCHAR, points VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(height__ft_) FROM table_name_62 WHERE year_built > 1961 AND location = \"platz der einheit 1, gallus\" AND height__m_ < 130", "question": "What is the lowest height in feet for the building located in platz der einheit 1, gallus, that was built after 1961 with a height less than 130 meters?", "context": "CREATE TABLE table_name_62 (height__ft_ INTEGER, height__m_ VARCHAR, year_built VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(height__m_) FROM table_name_70 WHERE year_built > 1984 AND name = \"commerzbank tower\"", "question": "What is the sum of the heights in meters for the commerzbank tower built after 1984?", "context": "CREATE TABLE table_name_70 (height__m_ INTEGER, year_built VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(year_built) FROM table_name_26 WHERE location = \"sonnemannstra\u00dfe/r\u00fcckertstra\u00dfe, ostend\" AND height__m_ > 185", "question": "What is the earliest year that the building in sonnemannstra\u00dfe/r\u00fcckertstra\u00dfe, ostend was built with a height larger than 185 meters?", "context": "CREATE TABLE table_name_26 (year_built INTEGER, location VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT MIN(height__m_) FROM table_name_70 WHERE location = \"mail\u00e4nder stra\u00dfe 1, sachsenhausen-s\u00fcd\" AND height__ft_ < 328.1", "question": "What is the lowest height in meters for the building located in mail\u00e4nder stra\u00dfe 1, sachsenhausen-s\u00fcd, with a height shorter than 328.1 ft?", "context": "CREATE TABLE table_name_70 (height__m_ INTEGER, location VARCHAR, height__ft_ VARCHAR)"}, {"answer": "SELECT AVG(population) FROM table_name_71 WHERE area_km_2 < 26.69 AND official_name = \"rogersville\"", "question": "What is the average population vlue for an area smaller than 26.69 square km and has an official name of Rogersville?", "context": "CREATE TABLE table_name_71 (population INTEGER, area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT album FROM table_name_50 WHERE label = \"hammer music / nail records\" AND year = 2012", "question": "What's the name of the album from 2012 with a Hammer Music / Nail Records label?", "context": "CREATE TABLE table_name_50 (album VARCHAR, label VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_69 WHERE hungarian_top_40_album_charts = \"3\"", "question": "What year had the Hungarian top 40 album charts of 3?", "context": "CREATE TABLE table_name_69 (year VARCHAR, hungarian_top_40_album_charts VARCHAR)"}, {"answer": "SELECT release_type FROM table_name_81 WHERE album = \"napisten hava\"", "question": "What type of release was Napisten Hava?", "context": "CREATE TABLE table_name_81 (release_type VARCHAR, album VARCHAR)"}, {"answer": "SELECT album FROM table_name_44 WHERE release_type = \"demo\"", "question": "What was the name of the album that was a demo release?", "context": "CREATE TABLE table_name_44 (album VARCHAR, release_type VARCHAR)"}, {"answer": "SELECT serials_issued FROM table_name_60 WHERE serial_format = \"abc-123\" AND issued = \"1982\"", "question": "What is the serials issued in 1982 with a format of ABC-123?", "context": "CREATE TABLE table_name_60 (serials_issued VARCHAR, serial_format VARCHAR, issued VARCHAR)"}, {"answer": "SELECT design FROM table_name_46 WHERE serial_format = \"ab-12-34\"", "question": "Which design has a serial format of AB-12-34?", "context": "CREATE TABLE table_name_46 (design VARCHAR, serial_format VARCHAR)"}, {"answer": "SELECT serials_issued FROM table_name_78 WHERE design = \"black on yellow\"", "question": "Which serials were issued with a design of black on yellow?", "context": "CREATE TABLE table_name_78 (serials_issued VARCHAR, design VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_36 WHERE team = \"fc carl zeiss jena\"", "question": "WHo was the outgoing manager for the team of fc carl zeiss jena?", "context": "CREATE TABLE table_name_36 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_56 WHERE manner_of_departure = \"end of tenure as caretaker\"", "question": "What team did the manager come from who departed due to an end of tenure as caretaker?", "context": "CREATE TABLE table_name_56 (team VARCHAR, manner_of_departure VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_73 WHERE replaced_by = \"reiner geyer\"", "question": "What was the date of appointment for the replaced manager, reiner geyer?", "context": "CREATE TABLE table_name_73 (date_of_appointment VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_2 WHERE outgoing_manager = \"ralf santelli\"", "question": "What was the date of vacancy after the outgoing manager, ralf santelli departed?", "context": "CREATE TABLE table_name_2 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_80 WHERE manner_of_departure = \"fc energie cottbus purchased rights\"", "question": "Who was the outgoing manager who departed due to fc energie cottbus purchased rights?", "context": "CREATE TABLE table_name_80 (outgoing_manager VARCHAR, manner_of_departure VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_25 WHERE position = \"lb\" AND overall < 46", "question": "How many times is the position lb and the overall is less than 46?", "context": "CREATE TABLE table_name_25 (pick VARCHAR, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT college FROM table_name_98 WHERE overall > 76 AND name = \"brian mitchell\"", "question": "what is the college when the overall is more than 76 for brian mitchell?", "context": "CREATE TABLE table_name_98 (college VARCHAR, overall VARCHAR, name VARCHAR)"}, {"answer": "SELECT pick FROM table_name_16 WHERE overall < 297 AND college = \"alabama\"", "question": "what is the pick when the overall is less than 297 and the college is alabama?", "context": "CREATE TABLE table_name_16 (pick VARCHAR, overall VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_72 WHERE college = \"penn state\"", "question": "what is the highest round when the college is penn state?", "context": "CREATE TABLE table_name_72 (round INTEGER, college VARCHAR)"}, {"answer": "SELECT SUM(1989) FROM table_name_41 WHERE 2000 < 52.8 AND location = \"arizona, new mexico, and utah\"", "question": "What is the 1989 number when the 200 number is less than 52.8 in Arizona, New Mexico, and Utah", "context": "CREATE TABLE table_name_41 (location VARCHAR)"}, {"answer": "SELECT AVG(2000) FROM table_name_97 WHERE location = \"montana\" AND reservation = \"fort peck indian reservation\" AND 1979 < 26.8", "question": "What shows for 2000 at the Fort Peck Indian Reservation, Montana, when the 1979 is less than 26.8?", "context": "CREATE TABLE table_name_97 (location VARCHAR, reservation VARCHAR)"}, {"answer": "SELECT SUM(2000) FROM table_name_88 WHERE 1969 = 54.3 AND 1979 < 48.4", "question": "What is the 2000 number when the 1969 is 54.3, and the 1979 is less than 48.4?", "context": "CREATE TABLE table_name_88 (Id VARCHAR)"}, {"answer": "SELECT SUM(2000) FROM table_name_94 WHERE 1989 < 54.9 AND location = \"arizona, new mexico, and utah\"", "question": "What is the 2000 number when the 1989 is less than 54.9 in Arizona, New Mexico, and Utah?", "context": "CREATE TABLE table_name_94 (location VARCHAR)"}, {"answer": "SELECT SUM(1979) FROM table_name_51 WHERE reservation = \"standing rock indian reservation\" AND 1989 < 54.9", "question": "What is the 1979 number for Standing Rock Indian Reservation when the 1989 is less than 54.9?", "context": "CREATE TABLE table_name_51 (reservation VARCHAR)"}, {"answer": "SELECT kerry_percentage FROM table_name_71 WHERE others_number = 66", "question": "What Kerry's percentage where 66 people voted for another candidate?", "context": "CREATE TABLE table_name_71 (kerry_percentage VARCHAR, others_number VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_16 WHERE time = \"+17.485\" AND grid < 7", "question": "Can you tell me the average Laps that has the Time of +17.485, and the Grid smaller than 7?", "context": "CREATE TABLE table_name_16 (laps INTEGER, time VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_96 WHERE manufacturer = \"aprilia\" AND rider = \"sandro cortese\"", "question": "Can you tell me the sum of Grid that has the Manufacturer of aprilia, and the sandro cortese?", "context": "CREATE TABLE table_name_96 (grid INTEGER, manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE game = 21", "question": "What was the date of game 21?", "context": "CREATE TABLE table_name_85 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT score_time FROM table_name_10 WHERE date = \"june 10\"", "question": "What was the score of the game on June 10?", "context": "CREATE TABLE table_name_10 (score_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_40 WHERE college_junior_club_team = \"brandon wheat kings ( whl )\" AND player = \"mike perovich (d)\" AND pick < 23", "question": "What is Sum of Round, when College/Junior/Club Team is Brandon Wheat Kings ( WHL ), when Player is Mike Perovich (D), and when Pick is less than 23?", "context": "CREATE TABLE table_name_40 (round INTEGER, pick VARCHAR, college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_32 WHERE player = \"tim hunter (rw)\" AND pick < 54", "question": "What is the sum of Round, when Player is Tim Hunter (RW), and when Pick is less than 54?", "context": "CREATE TABLE table_name_32 (round INTEGER, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_64 WHERE replaced_by = \"j\u00fcrgen klopp\"", "question": "Who is the outgoing manager who was replaced by j\u00fcrgen klopp?", "context": "CREATE TABLE table_name_64 (outgoing_manager VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_94 WHERE replaced_by = \"markus babbel\"", "question": "What is the date of appointment of the manager who was replaced by markus babbel?", "context": "CREATE TABLE table_name_94 (date_of_appointment VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_9 WHERE date_of_appointment = \"23 november 2008\"", "question": "What was the manner of depature of the manager with a date of appointment on 23 November 2008?", "context": "CREATE TABLE table_name_9 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_44 WHERE team = \"arminia bielefeld\"", "question": "Who replaced the manager of team arminia bielefeld?", "context": "CREATE TABLE table_name_44 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_24 WHERE team = \"fc bayern munich\" AND date_of_appointment = \"27 april 2009\"", "question": "What is the date of vacancy of team fc bayern munich, which had a date of appointment on 27 April 2009?", "context": "CREATE TABLE table_name_24 (date_of_vacancy VARCHAR, team VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_26 WHERE manner_of_departure = \"sacked\" AND outgoing_manager = \"fred rutten\"", "question": "What is the date of appointment of outgoing manager fred rutten, who had a sacked manner of departure?", "context": "CREATE TABLE table_name_26 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT length FROM table_name_36 WHERE writer = \"james swallow\" AND release > 2.1", "question": "What was the length when James Swallow had a release longer than 2.1?", "context": "CREATE TABLE table_name_36 (length VARCHAR, writer VARCHAR, release VARCHAR)"}, {"answer": "SELECT writer FROM table_name_86 WHERE title = \"infiltration\"", "question": "Who wrote Infiltration?", "context": "CREATE TABLE table_name_86 (writer VARCHAR, title VARCHAR)"}, {"answer": "SELECT MIN(release) FROM table_name_81 WHERE director = \"sharon gosling\" AND title = \"pathogen\"", "question": "What was the earliest release for Pathogen directed by Sharon Gosling?", "context": "CREATE TABLE table_name_81 (release INTEGER, director VARCHAR, title VARCHAR)"}, {"answer": "SELECT length FROM table_name_54 WHERE release = 3.6", "question": "What was the length of release 3.6?", "context": "CREATE TABLE table_name_54 (length VARCHAR, release VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE tournament = \"alcoba\u00e7a\" AND score = \"6\u20133, 2\u20136, 7\u20135\"", "question": "What day was the score for tournament of alcoba\u00e7a 6\u20133, 2\u20136, 7\u20135?", "context": "CREATE TABLE table_name_21 (date VARCHAR, tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE tournament = \"alcoba\u00e7a\" AND opponent_in_the_final = \"xinyun han\"", "question": "What was the score for alcoba\u00e7a when the opponent was in the final of xinyun han?", "context": "CREATE TABLE table_name_27 (score VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE surface = \"hard\" AND opponent_in_the_final = \"irena pavlovic\"", "question": "What was the score when the opponent was irena pavlovic and the surface was hard?", "context": "CREATE TABLE table_name_94 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_69 WHERE score = \"6\u20133, 2\u20136, 7\u20135\"", "question": "What was the opponent in the final when the score was 6\u20133, 2\u20136, 7\u20135?", "context": "CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE surface = \"clay\" AND score = \"6\u20131, 6\u20134\"", "question": "What day was the surface clay and the score 6\u20131, 6\u20134?", "context": "CREATE TABLE table_name_23 (date VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT phoenician FROM table_name_77 WHERE hangul = \"\u3139\"", "question": "What is the Phoenician letter for the Hangul of \u3139?", "context": "CREATE TABLE table_name_77 (phoenician VARCHAR, hangul VARCHAR)"}, {"answer": "SELECT latin FROM table_name_13 WHERE tibetan = \"\u0f66\"", "question": "What is the Latin letter for the Tibetan of \u0f66?", "context": "CREATE TABLE table_name_13 (latin VARCHAR, tibetan VARCHAR)"}, {"answer": "SELECT greek FROM table_name_63 WHERE latin = \"f, y, u/v/w\"", "question": "to the Latin of f, y, u/v/w?", "context": "CREATE TABLE table_name_63 (greek VARCHAR, latin VARCHAR)"}, {"answer": "SELECT hangul FROM table_name_96 WHERE greek = \"\u03dd, \u03c5\"", "question": "What is the Hangul equivalent of the Greek \u03dd, \u03c5?", "context": "CREATE TABLE table_name_96 (hangul VARCHAR, greek VARCHAR)"}, {"answer": "SELECT latin FROM table_name_72 WHERE \u2019phagspa = \"\ua859\"", "question": "What is the Latin equivalent for the Phagspa of \ua859?", "context": "CREATE TABLE table_name_72 (latin VARCHAR, \u2019phagspa VARCHAR)"}, {"answer": "SELECT court_surface FROM table_name_93 WHERE began < 1897", "question": "What was the surface played on for the match than began before 1897?", "context": "CREATE TABLE table_name_93 (court_surface VARCHAR, began INTEGER)"}, {"answer": "SELECT country FROM table_name_96 WHERE tournament = \"indian wells masters\"", "question": "For the Indian Wells Masters tournament, what was the country?", "context": "CREATE TABLE table_name_96 (country VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT location FROM table_name_69 WHERE court_surface = \"hard\" AND country = \"china\"", "question": "Which location was in China, and played on a hard court?", "context": "CREATE TABLE table_name_69 (location VARCHAR, court_surface VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_83 WHERE tournament = \"paris masters\"", "question": "What country was the Paris Masters tournament played in?", "context": "CREATE TABLE table_name_83 (country VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_14 WHERE h___a = \"h\" AND scorers = \"ferguson\"", "question": "Who was the opponent when the H/A was H and the scorer was Ferguson?", "context": "CREATE TABLE table_name_14 (opponents VARCHAR, h___a VARCHAR, scorers VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_96 WHERE h___a = \"h\" AND date = \"11 august 1991\"", "question": "Who was the opponent on 11 August 1991 when the H/A was H?", "context": "CREATE TABLE table_name_96 (opponents VARCHAR, h___a VARCHAR, date VARCHAR)"}, {"answer": "SELECT h___a FROM table_name_50 WHERE scorers = \"hughes\"", "question": "What was the H/A when the scorer was Hughes?", "context": "CREATE TABLE table_name_50 (h___a VARCHAR, scorers VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_76 WHERE gross = \"$26,010,864\"", "question": "What was the film that grossed $26,010,864 ranked?", "context": "CREATE TABLE table_name_76 (rank INTEGER, gross VARCHAR)"}, {"answer": "SELECT gross FROM table_name_79 WHERE studio = \"universal\" AND title = \"xanadu\"", "question": "How much did Universal Studio's film Xanadu gross?", "context": "CREATE TABLE table_name_79 (gross VARCHAR, studio VARCHAR, title VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_21 WHERE title = \"bronco billy\"", "question": "What is the rank of Bronco Billy?", "context": "CREATE TABLE table_name_21 (rank INTEGER, title VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_name_42 WHERE nickname = \"cougars\"", "question": "Name the lowest Founded with the Name cougars?", "context": "CREATE TABLE table_name_42 (founded INTEGER, nickname VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_47 WHERE nickname = \"cougars\"", "question": "Which Affiliation has a Nickname of cougars?", "context": "CREATE TABLE table_name_47 (affiliation VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_name_6 WHERE affiliation = \"private/methodist\"", "question": "Name the Founded which has a Affiliation of private/methodist?", "context": "CREATE TABLE table_name_6 (founded INTEGER, affiliation VARCHAR)"}, {"answer": "SELECT label FROM table_name_57 WHERE date = \"1987\"", "question": "What is Label, when Date is 1987?", "context": "CREATE TABLE table_name_57 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE format = \"vinyl\" AND label = \"mercury\"", "question": "What is Date, when Format is Vinyl, and when Label is Mercury?", "context": "CREATE TABLE table_name_65 (date VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE region = \"yugoslavia\"", "question": "What is Date, when Region is Yugoslavia?", "context": "CREATE TABLE table_name_33 (date VARCHAR, region VARCHAR)"}, {"answer": "SELECT format FROM table_name_12 WHERE label = \"bronze\" AND date = \"1982\" AND catalogue = \"204 636\"", "question": "What is Format, when Label is Bronze, when Date is 1982, and when Catalogue is 204 636?", "context": "CREATE TABLE table_name_12 (format VARCHAR, catalogue VARCHAR, label VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE label = \"jugoton\"", "question": "What is Date, when Label is Jugoton?", "context": "CREATE TABLE table_name_48 (date VARCHAR, label VARCHAR)"}, {"answer": "SELECT premiere_date FROM table_name_53 WHERE cycle < 2", "question": "What is Premier Date, when Cycle is less than 2?", "context": "CREATE TABLE table_name_53 (premiere_date VARCHAR, cycle INTEGER)"}, {"answer": "SELECT MIN(cycle) FROM table_name_57 WHERE number_of_contestants = \"11\" AND international_destinations = \"paris gran canaria\"", "question": "What is the lowest Cycle, when Number Of Contestants is 11, and when International Destinations is Paris Gran Canaria?", "context": "CREATE TABLE table_name_57 (cycle INTEGER, number_of_contestants VARCHAR, international_destinations VARCHAR)"}, {"answer": "SELECT MAX(cycle) FROM table_name_57 WHERE number_of_contestants = \"11\" AND premiere_date = \"september 3, 2012\"", "question": "What is the highest Cycle, when the Number of Constestants is 11, and when Premiere Date is September 3, 2012?", "context": "CREATE TABLE table_name_57 (cycle INTEGER, number_of_contestants VARCHAR, premiere_date VARCHAR)"}, {"answer": "SELECT number_of_contestants FROM table_name_81 WHERE cycle = 4", "question": "What is Number of Contestants, when Cycle is 4?", "context": "CREATE TABLE table_name_81 (number_of_contestants VARCHAR, cycle VARCHAR)"}, {"answer": "SELECT number_of_contestants FROM table_name_55 WHERE international_destinations = \"london lisbon\"", "question": "What is Number of Contestants, when International Destinations is London Lisbon?", "context": "CREATE TABLE table_name_55 (number_of_contestants VARCHAR, international_destinations VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_15 WHERE round < 3 AND overall > 4", "question": "What is the lowest pick with fewer than 3 rounds and more than 4 overall?", "context": "CREATE TABLE table_name_15 (pick INTEGER, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT round FROM table_name_60 WHERE position = \"qb\" AND overall > 79", "question": "Which round has more than 79 overall and a position of QB?", "context": "CREATE TABLE table_name_60 (round VARCHAR, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT position FROM table_name_88 WHERE pick < 5 AND college = \"notre dame\" AND round = 7", "question": "Which Notre Dame position has a pick lower than 5 and round 7?", "context": "CREATE TABLE table_name_88 (position VARCHAR, round VARCHAR, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE week = 17", "question": "What was week 17's date?", "context": "CREATE TABLE table_name_21 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE result = \"l 24\u20133\"", "question": "Which Opponent has a Result of l 24\u20133?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_81 WHERE week = 5", "question": "What was week 5's result?", "context": "CREATE TABLE table_name_81 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE location_attendance = \"groves high school\" AND high_assists = \"giovanni riley (9)\"", "question": "What was the score for Groves High School when the high assist was Giovanni Riley (9)?", "context": "CREATE TABLE table_name_21 (score VARCHAR, location_attendance VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_22 WHERE opponent = \"mid-michigan destroyers\" AND date = \"january 3\"", "question": "What was the high points for opponent Mid-Michigan destroyers on January 3?", "context": "CREATE TABLE table_name_22 (high_points VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_38 WHERE location_attendance = \"richmond academy\"", "question": "What opponent is at Richmond Academy?", "context": "CREATE TABLE table_name_38 (opponent VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_88 WHERE date = \"march 29\"", "question": "What were the high points on March 29?", "context": "CREATE TABLE table_name_88 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_34 WHERE score = \"95-101\"", "question": "Which opponent scored 95-101?", "context": "CREATE TABLE table_name_34 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT _m__best_ & _fairest FROM table_name_2 WHERE president = \"ray kaduck\" AND _m__coach = \"richard keane\"", "question": "Who was the (M) Best & Fairest when ray kaduck was president and richard keane was coach?", "context": "CREATE TABLE table_name_2 (_m__best_ VARCHAR, _fairest VARCHAR, president VARCHAR, _m__coach VARCHAR)"}, {"answer": "SELECT _m__finishing_position FROM table_name_44 WHERE president = \"ray kaduck\" AND _m__coach = \"corey bowen\"", "question": "What was the (M) Finishe position when ray kaduck was president and corey bowen was coach?", "context": "CREATE TABLE table_name_44 (_m__finishing_position VARCHAR, president VARCHAR, _m__coach VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_90 WHERE score = \"l 102\u2013114 (ot)\"", "question": "Which Game has a Score of l 102\u2013114 (ot)?", "context": "CREATE TABLE table_name_90 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_18 WHERE date = \"january 31\"", "question": "Which Record has a Date of january 31?", "context": "CREATE TABLE table_name_18 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_34 WHERE game > 34 AND date = \"january 9\"", "question": "Which Record has a Game larger than 34, and a Date of january 9?", "context": "CREATE TABLE table_name_34 (record VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_27 WHERE record = \"11\u201334\"", "question": "Which Location Attendance has a Record of 11\u201334?", "context": "CREATE TABLE table_name_27 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_95 WHERE score = \"w 100-99\"", "question": "What is the record for the w 100-99 score?", "context": "CREATE TABLE table_name_95 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_name_67 WHERE record = \"23-17\"", "question": "What is the location for the 23-17 record?", "context": "CREATE TABLE table_name_67 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_10 WHERE game < 44 AND record = \"20-16\"", "question": "What is the location before game 44, and a 20-16 record?", "context": "CREATE TABLE table_name_10 (location VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT result FROM table_name_69 WHERE match = \"match reports\"", "question": "What was the result for the match with entry Match Reports?", "context": "CREATE TABLE table_name_69 (result VARCHAR, match VARCHAR)"}, {"answer": "SELECT location FROM table_name_13 WHERE result = \"3-3\"", "question": "What was the location of the match that had a result of 3-3?", "context": "CREATE TABLE table_name_13 (location VARCHAR, result VARCHAR)"}, {"answer": "SELECT lineup FROM table_name_65 WHERE competition = \"group stage\" AND match = \"12\"", "question": "What was the lineup for match 12 that had a competition of Group Stage?", "context": "CREATE TABLE table_name_65 (lineup VARCHAR, competition VARCHAR, match VARCHAR)"}, {"answer": "SELECT result FROM table_name_97 WHERE location = \"boston\"", "question": "What was the result for the match held in Boston?", "context": "CREATE TABLE table_name_97 (result VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_42 WHERE opponent = \"@ st. louis hawks\"", "question": "How many total games were played against @ St. Louis Hawks this season?", "context": "CREATE TABLE table_name_42 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE game = 48", "question": "On what day was Game 48 played?", "context": "CREATE TABLE table_name_39 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_17 WHERE round > 1 AND player = \"reyshawn terry\"", "question": "What is the pick number later than round 1, for Reyshawn Terry?", "context": "CREATE TABLE table_name_17 (pick INTEGER, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_90 WHERE player = \"ty lawson\" AND pick < 18", "question": "What round was the player Ty Lawson with a pick earlier than 18?", "context": "CREATE TABLE table_name_90 (round INTEGER, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_21 WHERE player = \"danny green\" AND round < 2", "question": "What is the pick number for Danny Green in a round less than 2?", "context": "CREATE TABLE table_name_21 (pick VARCHAR, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_60 WHERE year < 2009 AND round > 1", "question": "What is the pick number in a year earlier than 2009, with a round higher than 1?", "context": "CREATE TABLE table_name_60 (pick VARCHAR, year VARCHAR, round VARCHAR)"}, {"answer": "SELECT notes FROM table_name_40 WHERE year < 2013 AND language = \"mandarin chinese\" AND network = \"ctv\"", "question": "What are the notes for the Mandarin Chinese program on CTV earlier than 2013?", "context": "CREATE TABLE table_name_40 (notes VARCHAR, network VARCHAR, year VARCHAR, language VARCHAR)"}, {"answer": "SELECT language FROM table_name_64 WHERE title = \"strong heart\"", "question": "What is the language for Strong Heart?", "context": "CREATE TABLE table_name_64 (language VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_96 WHERE language = \"korean\" AND network = \"kbs2\"", "question": "What is the title for the Korean progran on KBS2?", "context": "CREATE TABLE table_name_96 (title VARCHAR, language VARCHAR, network VARCHAR)"}, {"answer": "SELECT network FROM table_name_70 WHERE year < 2011 AND title = \"star king\"", "question": "What is the network that aired Star King prior to 2011?", "context": "CREATE TABLE table_name_70 (network VARCHAR, year VARCHAR, title VARCHAR)"}, {"answer": "SELECT notes FROM table_name_79 WHERE title = \"happy camp\"", "question": "What are the notes for Happy Camp?", "context": "CREATE TABLE table_name_79 (notes VARCHAR, title VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_22 WHERE college = \"ohio state\"", "question": "Which Pick has a College of ohio state?", "context": "CREATE TABLE table_name_22 (pick INTEGER, college VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_3 WHERE position = \"lb\" AND pick < 25", "question": "Which Round has a Position of lb, and a Pick smaller than 25?", "context": "CREATE TABLE table_name_3 (round VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_93 WHERE result = \"l 56-3\"", "question": "Which week has a result L 56-3?", "context": "CREATE TABLE table_name_93 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT place FROM table_name_47 WHERE player = \"raymond floyd\"", "question": "Where is the player Raymond Floyd?", "context": "CREATE TABLE table_name_47 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_44 WHERE score = 71 - 72 - 73 - 69 = 285", "question": "Which country has a score of 71-72-73-69=285?", "context": "CREATE TABLE table_name_44 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_65 WHERE score = 69 - 71 - 70 - 74 = 284", "question": "What is the highest Money ( $ ), when Score is \"69-71-70-74=284\"?", "context": "CREATE TABLE table_name_65 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_3 WHERE score = 71 - 71 - 69 - 71 = 282", "question": "What is Place, when Score is \"71-71-69-71=282\"?", "context": "CREATE TABLE table_name_3 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE player = \"dow finsterwald\"", "question": "What is Score, when Player is \"Dow Finsterwald\"?", "context": "CREATE TABLE table_name_76 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT venue FROM table_name_58 WHERE notes = \"1:23:07\"", "question": "Which venue did the runner have a note of 1:23:07?", "context": "CREATE TABLE table_name_58 (venue VARCHAR, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_name_94 WHERE year = 2008 AND position = \"19th\"", "question": "What is the note result when the runner finished 19th in 2008?", "context": "CREATE TABLE table_name_94 (notes VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT points_1 FROM table_name_93 WHERE position < 13 AND goal_difference = \"+16\"", "question": "What are the points 1 for the team with position less than 13 and goal difference of +16?", "context": "CREATE TABLE table_name_93 (points_1 VARCHAR, position VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT goal_difference FROM table_name_29 WHERE goals_against < 54 AND goals_for > 51 AND points_1 = \"63\"", "question": "What is the goal difference where the goals against is less than 54, goals for is greater than 51 and points 1 is 63?", "context": "CREATE TABLE table_name_29 (goal_difference VARCHAR, points_1 VARCHAR, goals_against VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_65 WHERE goal_difference = \"+13\" AND drawn > 12", "question": "What is the number of games lost when goal difference is +13 and draws are more than 12?", "context": "CREATE TABLE table_name_65 (lost VARCHAR, goal_difference VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT fin_pos FROM table_name_21 WHERE grid = \"6\"", "question": "What was the finishing position for the car that started in grid 6?", "context": "CREATE TABLE table_name_21 (fin_pos VARCHAR, grid VARCHAR)"}, {"answer": "SELECT team FROM table_name_2 WHERE grid = \"11\"", "question": "What team started in grid 11?", "context": "CREATE TABLE table_name_2 (team VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_93 WHERE car_no = \"6\"", "question": "What was the time/retired of car number 6.", "context": "CREATE TABLE table_name_93 (time_retired VARCHAR, car_no VARCHAR)"}, {"answer": "SELECT grid FROM table_name_9 WHERE points = \"14\"", "question": "What was the grid number of the team and driver with 14 points?", "context": "CREATE TABLE table_name_9 (grid VARCHAR, points VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_73 WHERE outcome = \"runner-up\" AND surface = \"clay\"", "question": "Who did Thomaz Bellucci play against when he became runner-up on a clay surface?", "context": "CREATE TABLE table_name_73 (opponent VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_82 WHERE outcome = \"runner-up\" AND surface = \"clay\"", "question": "What tournament did Thomaz Bellucci become runner-up on a clay surface?", "context": "CREATE TABLE table_name_82 (tournament VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_66 WHERE opponent = \"tommy robredo\"", "question": "What type of surface did Thomaz Bellucci play against tommy robredo?", "context": "CREATE TABLE table_name_66 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT res FROM table_name_12 WHERE opponent = \"ryan schultz\"", "question": "What is the result of the match against Ryan Schultz?", "context": "CREATE TABLE table_name_12 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_39 WHERE opponent = \"cedric marks\"", "question": "What round was the game against Cedric Marks?", "context": "CREATE TABLE table_name_39 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_96 WHERE opponent = \"chris mounce\"", "question": "What was the record of the match against Chris Mounce?", "context": "CREATE TABLE table_name_96 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_75 WHERE round = \"2\" AND res = \"win\" AND opponent = \"nick gilardi\"", "question": "What is the method in the round 2 win over Nick Gilardi?", "context": "CREATE TABLE table_name_75 (method VARCHAR, opponent VARCHAR, round VARCHAR, res VARCHAR)"}, {"answer": "SELECT no_7 FROM table_name_70 WHERE no_3 = \"sophia\" AND no_10 = \"abigail\"", "question": "Who is number 7 when Sophia is number 3 and Abigail is number 10?", "context": "CREATE TABLE table_name_70 (no_7 VARCHAR, no_3 VARCHAR, no_10 VARCHAR)"}, {"answer": "SELECT region__year_ FROM table_name_12 WHERE no_7 = \"abigail\" AND no_1 = \"sophia\" AND no_5 = \"aaliyah\"", "question": "Which region (year) has Abigail at number 7, Sophia at number 1 and Aaliyah at number 5?", "context": "CREATE TABLE table_name_12 (region__year_ VARCHAR, no_5 VARCHAR, no_7 VARCHAR, no_1 VARCHAR)"}, {"answer": "SELECT no_4 FROM table_name_24 WHERE no_10 = \"harper\" AND no_5 = \"abigail\"", "question": "Who is number 4 when Harper is number 10 and Abigail is number 5?", "context": "CREATE TABLE table_name_24 (no_4 VARCHAR, no_10 VARCHAR, no_5 VARCHAR)"}, {"answer": "SELECT player FROM table_name_32 WHERE to_par = \"+1\" AND score = 75 - 68 = 143", "question": "What is Player, when To Par is \"+1\", and when Score is \"75-68=143\"?", "context": "CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE player = \"andy north\"", "question": "What is Score, when Player is \"Andy North\"?", "context": "CREATE TABLE table_name_12 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_31 WHERE score = 69 - 72 = 141", "question": "What is To Par, when Score is \"69-72=141\"", "context": "CREATE TABLE table_name_31 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_66 WHERE score = 73 - 71 = 144 AND player = \"scott simpson\"", "question": "What is Place, when Score is \"73-71=144\", and when Player is \"Scott Simpson\"?", "context": "CREATE TABLE table_name_66 (place VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE country = \"united states\" AND player = \"john mahaffey\"", "question": "What is Score, when Country is \"United States\", and when Player is \"John Mahaffey\"?", "context": "CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_6 WHERE place = \"t1\" AND player = \"joey rassett\"", "question": "What is To Par, when Place is \"T1\", and when Player is \"Joey Rassett\"?", "context": "CREATE TABLE table_name_6 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE away_team = \"brighton & hove albion\"", "question": "What was the score when the away team was brighton & hove albion?", "context": "CREATE TABLE table_name_21 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE away_team = \"burnley\"", "question": "When was the away team burnley?", "context": "CREATE TABLE table_name_31 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_37 WHERE away_team = \"reading\"", "question": "Which home team had an away team of Reading?", "context": "CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT year FROM table_name_83 WHERE accolade = \"scottish albums of the decade\"", "question": "What year was the accolade for Scottish albums of the decade?", "context": "CREATE TABLE table_name_83 (year VARCHAR, accolade VARCHAR)"}, {"answer": "SELECT country FROM table_name_22 WHERE publication = \"drowned in sound\"", "question": "What country had the publication, Drowned in Sound?", "context": "CREATE TABLE table_name_22 (country VARCHAR, publication VARCHAR)"}, {"answer": "SELECT ground FROM table_name_93 WHERE home_team = \"brisbane lions\"", "question": "What is the name of the home stadium of Brisbane Lions?", "context": "CREATE TABLE table_name_93 (ground VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_9 WHERE ground = \"colonial stadium\" AND home_team = \"hawthorn\"", "question": "How much is the crowd attending at colonial stadium where Hawthorn plays?", "context": "CREATE TABLE table_name_9 (crowd VARCHAR, ground VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_47 WHERE team__number2 = \"\u017ealgiris kaunas\"", "question": "what is the 2nd leg when team #2 is \u017ealgiris kaunas?", "context": "CREATE TABLE table_name_47 (team__number2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_67 WHERE team__number2 = \"\u017ealgiris kaunas\"", "question": "what is the 2nd leg when team #2 is \u017ealgiris kaunas?", "context": "CREATE TABLE table_name_67 (team__number2 VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_30 WHERE week = 6", "question": "Who was the opponent in week 6?", "context": "CREATE TABLE table_name_30 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_42 WHERE attendance = \"55,158\"", "question": "Which week had an attendance of 55,158?", "context": "CREATE TABLE table_name_42 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_66 WHERE date = \"february 10\"", "question": "What is the lowest game on February 10?", "context": "CREATE TABLE table_name_66 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_1 WHERE round > 5 AND position = \"(g)\"", "question": "Which Player has a Round larger than 5, and a Position of (g)?", "context": "CREATE TABLE table_name_1 (player VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_34 WHERE nationality = \"united states\" AND player = \"jimmy hayes\"", "question": "Which Round has a Nationality of united states, and a Player of jimmy hayes?", "context": "CREATE TABLE table_name_34 (round INTEGER, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick FROM table_name_98 WHERE nationality = \"canada\" AND round = 5", "question": "Which Pick has a Nationality of canada, and a Round of 5?", "context": "CREATE TABLE table_name_98 (pick VARCHAR, nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT club_team FROM table_name_7 WHERE position = \"(d)\" AND nationality = \"canada\" AND player = \"andrew macwilliam\"", "question": "Which Club Team has a Position of (d), a Nationality of canada, and a Player of andrew macwilliam?", "context": "CREATE TABLE table_name_7 (club_team VARCHAR, player VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_1 WHERE player = \"jodie mudd\"", "question": "How much money did jodie mudd get?", "context": "CREATE TABLE table_name_1 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE country = \"australia\"", "question": "What score did Australia get?", "context": "CREATE TABLE table_name_85 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT sort_restore FROM table_name_64 WHERE deaths = \"71\"", "question": "What is the sort value that had deaths of 71?", "context": "CREATE TABLE table_name_64 (sort_restore VARCHAR, deaths VARCHAR)"}, {"answer": "SELECT month FROM table_name_73 WHERE sort_restore < 39 AND deaths = \"2\"", "question": "Which month had a sort value under 39 and 2 deaths?", "context": "CREATE TABLE table_name_73 (month VARCHAR, sort_restore VARCHAR, deaths VARCHAR)"}, {"answer": "SELECT COUNT(sort_restore) FROM table_name_27 WHERE births = \"389\"", "question": "What is the number of sort values associated with 389 births?", "context": "CREATE TABLE table_name_27 (sort_restore VARCHAR, births VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_1 WHERE rider = \"colin edwards\"", "question": "Who was the Manufacturer for the Rider Colin Edwards?", "context": "CREATE TABLE table_name_1 (manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_86 WHERE grid < 15 AND time = \"+52.833\"", "question": "With a Grid less than 15, and a Time of +52.833, what is the highest number of Laps?", "context": "CREATE TABLE table_name_86 (laps INTEGER, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_62 WHERE rider = \"toni elias\" AND laps > 30", "question": "What is the average Grid for the Rider Toni Elias with Laps more than 30?", "context": "CREATE TABLE table_name_62 (grid INTEGER, rider VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_84 WHERE time = \"+1:37.055\"", "question": "With a Time of +1:37.055, which has the lowest Grid?", "context": "CREATE TABLE table_name_84 (grid INTEGER, time VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_71 WHERE rank = \"19\" AND gold > 0", "question": "Which Silver is the highest one that has a Rank of 19, and a Gold larger than 0?", "context": "CREATE TABLE table_name_71 (silver INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_48 WHERE rank = \"26\" AND total > 1", "question": "Which Bronze is the highest one that has a Rank of 26, and a Total larger than 1?", "context": "CREATE TABLE table_name_48 (bronze INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_84 WHERE nation = \"india\" AND bronze < 0", "question": "Which Gold has a Nation of india, and a Bronze smaller than 0?", "context": "CREATE TABLE table_name_84 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT nation FROM table_name_96 WHERE gold > 0 AND bronze < 2 AND total > 3 AND silver > 1", "question": "Which Nation has a Gold larger than 0, and a Bronze smaller than 2, and a Total larger than 3, and a Silver larger than 1?", "context": "CREATE TABLE table_name_96 (nation VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_68 WHERE record = \"15\u20137\u20131\"", "question": "What is the round number when the record is 15\u20137\u20131?", "context": "CREATE TABLE table_name_68 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_3 WHERE time = \"5:00\" AND record = \"14\u20136\u20131\"", "question": "What is the method when the time is 5:00, and the record is 14\u20136\u20131?", "context": "CREATE TABLE table_name_3 (method VARCHAR, time VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_51 WHERE decision = \"price\" AND visitor = \"new jersey devils\"", "question": "What is the home team of the game with a price decision and the new jersey devils as the visitor team?", "context": "CREATE TABLE table_name_51 (home VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_4 WHERE ends = \"30 june 2010\" AND moving_from = \"birmingham city\"", "question": "What transfer fee did Birmingham City get on 30 June 2010?", "context": "CREATE TABLE table_name_4 (transfer_fee VARCHAR, ends VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT type FROM table_name_28 WHERE country = \"eng\" AND name = \"elding\"", "question": "What type of move was Elding from ENG?", "context": "CREATE TABLE table_name_28 (type VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT ends FROM table_name_34 WHERE name = \"donaldson\"", "question": "When does Donaldson's move end?", "context": "CREATE TABLE table_name_34 (ends VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_10 WHERE total = 7 AND gold > 1", "question": "Which Silver has a Total of 7, and a Gold larger than 1?", "context": "CREATE TABLE table_name_10 (silver INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_97 WHERE gold < 16 AND rank = \"10\" AND nation = \"italy\"", "question": "Which Bronze has a Gold smaller than 16, a Rank of 10, and a Nation of italy?", "context": "CREATE TABLE table_name_97 (bronze INTEGER, nation VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_27 WHERE bronze > 2 AND gold < 16 AND silver = 0 AND rank = \"13\"", "question": "Which Total has a Bronze larger than 2, a Gold smaller than 16, a Silver of 0, and a Rank of 13?", "context": "CREATE TABLE table_name_27 (total INTEGER, rank VARCHAR, silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_47 WHERE nation = \"malaysia\" AND silver < 0", "question": "Which Gold has a Nation of malaysia, and a Silver smaller than 0?", "context": "CREATE TABLE table_name_47 (gold INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(population__2005_) FROM table_name_14 WHERE literacy__2003_ = \"90%\" AND infant_mortality__2002_ = \"18.3\u2030\"", "question": "Which Population (2005) has a Literacy (2003) of 90%, and an Infant Mortality (2002) of 18.3\u2030?", "context": "CREATE TABLE table_name_14 (population__2005_ INTEGER, literacy__2003_ VARCHAR, infant_mortality__2002_ VARCHAR)"}, {"answer": "SELECT SUM(density__2005_) FROM table_name_25 WHERE area__km\u00b2_ = 340086.7 AND population__2005_ < 5926300", "question": "Which Density (2005) has an Area (km\u00b2) of 340086.7, and a Population (2005) smaller than 5926300?", "context": "CREATE TABLE table_name_25 (density__2005_ INTEGER, area__km\u00b2_ VARCHAR, population__2005_ VARCHAR)"}, {"answer": "SELECT MAX(gdp_per_capita__us) AS $___2004_ FROM table_name_37 WHERE area__km\u00b2_ > 148825.6 AND state = \"roraima\"", "question": "Which GDP per capita (US$) (2004) is the highest one that has an Area (km\u00b2) larger than 148825.6, and a State of roraima?", "context": "CREATE TABLE table_name_37 (gdp_per_capita__us INTEGER, area__km\u00b2_ VARCHAR, state VARCHAR)"}, {"answer": "SELECT literacy__2003_ FROM table_name_8 WHERE hdi__2005_ < 0.718 AND gdp_per_capita__us$___2004_ < 3877 AND state = \"maranh\u00e3o\"", "question": "Which Literacy (2003) has an HDI (2005) smaller than 0.718, and a GDP per capita (US$) (2004) smaller than 3877, and a State of maranh\u00e3o?", "context": "CREATE TABLE table_name_8 (literacy__2003_ VARCHAR, state VARCHAR, hdi__2005_ VARCHAR, gdp_per_capita__us$___2004_ VARCHAR)"}, {"answer": "SELECT AVG(gdp_per_capita__us) AS $___2004_ FROM table_name_53 WHERE literacy__2003_ = \"90%\" AND area__km\u00b2_ = 1247689.5", "question": "Which GDP per capita (US$) (2004) has a Literacy (2003) of 90%, and an Area (km\u00b2) of 1247689.5?", "context": "CREATE TABLE table_name_53 (gdp_per_capita__us INTEGER, literacy__2003_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT date_and_opponent FROM table_name_4 WHERE position = \"f\" AND career_games = \"123 games\"", "question": "Name the Date and an Opponent which has a f Position and Career Games of 123 games?", "context": "CREATE TABLE table_name_4 (date_and_opponent VARCHAR, position VARCHAR, career_games VARCHAR)"}, {"answer": "SELECT name FROM table_name_34 WHERE years_played = \"2004\u20132008\" AND date_and_opponent = \"2/17/07 vs. purdue\"", "question": "Which Name has a Years Played of 2004\u20132008, and a Date and Opponent of 2/17/07 vs. purdue?", "context": "CREATE TABLE table_name_34 (name VARCHAR, years_played VARCHAR, date_and_opponent VARCHAR)"}, {"answer": "SELECT career_games FROM table_name_58 WHERE date_and_opponent = \"12/15/92 vs. uw\u2013milwaukee\"", "question": "Which Career Games has a Date and Opponent of 12/15/92 vs. uw\u2013milwaukee?", "context": "CREATE TABLE table_name_58 (career_games VARCHAR, date_and_opponent VARCHAR)"}, {"answer": "SELECT scored_1, 500 AS _points FROM table_name_34 WHERE years_played = \"2004\u20132008\" AND name = \"jolene anderson\"", "question": "WHich Scored 1,500 Points has a Years Played of 2004\u20132008 and a Name of jolene anderson?", "context": "CREATE TABLE table_name_34 (scored_1 VARCHAR, years_played VARCHAR, name VARCHAR)"}, {"answer": "SELECT time FROM table_name_11 WHERE round < 3 AND opponent = \"bao quach\"", "question": "Which Time has a Round smaller than 3, and an Opponent of bao quach?", "context": "CREATE TABLE table_name_11 (time VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_20 WHERE record = \"10-6\"", "question": "Which Round has a Record of 10-6?", "context": "CREATE TABLE table_name_20 (round INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_48 WHERE round < 3 AND time = \"1:09\"", "question": "Which Opponent has a Round smaller than 3, and a Time of 1:09?", "context": "CREATE TABLE table_name_48 (opponent VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_3 WHERE opponent = \"josh branham\"", "question": "Which Time has an Opponent of josh branham?", "context": "CREATE TABLE table_name_3 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_96 WHERE round > 2 AND opponent = \"jesse brock\"", "question": "Which Time has a Round larger than 2, and an Opponent of jesse brock?", "context": "CREATE TABLE table_name_96 (time VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_36 WHERE event = \"nle - capital city carnage\"", "question": "Which Round has an Event of nle - capital city carnage?", "context": "CREATE TABLE table_name_36 (round VARCHAR, event VARCHAR)"}, {"answer": "SELECT round FROM table_name_6 WHERE opponent = \"ryan bixler\"", "question": "Which Round has an Opponent of ryan bixler?", "context": "CREATE TABLE table_name_6 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_47 WHERE record = \"19-9\"", "question": "Which Event has a Record of 19-9?", "context": "CREATE TABLE table_name_47 (event VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_37 WHERE round = 1 AND record = \"4\u20132\"", "question": "Which Method has a Round of 1, and a Record of 4\u20132?", "context": "CREATE TABLE table_name_37 (method VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_84 WHERE time = \"4:51\"", "question": "Which Opponent has a Time of 4:51?", "context": "CREATE TABLE table_name_84 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_83 WHERE opponent = \"jorge magalhaes\"", "question": "Which Round has an Opponent of jorge magalhaes?", "context": "CREATE TABLE table_name_83 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_52 WHERE location = \"bahia, brazil\"", "question": "Which Round has a Location of bahia, brazil?", "context": "CREATE TABLE table_name_52 (round INTEGER, location VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_2 WHERE event = \"jungle fight 5\"", "question": "Which Opponent has an Event of jungle fight 5?", "context": "CREATE TABLE table_name_2 (opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_73 WHERE total < 293 AND player = \"tiger woods\"", "question": "Tiger Woods with a total less than 293 had what To par?", "context": "CREATE TABLE table_name_73 (to_par VARCHAR, total VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_27 WHERE player = \"bernhard langer\"", "question": "Bernhard Langer maximum total was what?", "context": "CREATE TABLE table_name_27 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_39 WHERE finish = \"t11\"", "question": "What is the average of the total when t11 is the finish?", "context": "CREATE TABLE table_name_39 (total INTEGER, finish VARCHAR)"}, {"answer": "SELECT rider FROM table_name_89 WHERE laps < 24 AND grid < 12 AND manufacturer = \"aprilia\"", "question": "Which Rider has Laps smaller than 24, and a Grid smaller than 12, and a Manufacturer of aprilia?", "context": "CREATE TABLE table_name_89 (rider VARCHAR, manufacturer VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_72 WHERE grid = 7", "question": "What were grid 7's laps?", "context": "CREATE TABLE table_name_72 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_5 WHERE laps < 24 AND manufacturer = \"aprilia\" AND grid < 12 AND rider = \"\u00e1ngel rodr\u00edguez\"", "question": "Which Time/Retired has Laps smaller than 24, and a Manufacturer of aprilia, and a Grid smaller than 12, and a Rider of \u00e1ngel rodr\u00edguez?", "context": "CREATE TABLE table_name_5 (time_retired VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_67 WHERE time_retired = \"+1:42.517\" AND grid > 33", "question": "How many Laps have a Time/Retired of +1:42.517, and a Grid larger than 33?", "context": "CREATE TABLE table_name_67 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT chassis___engine FROM table_name_9 WHERE laps = 77", "question": "Which chassis-engine had 77 laps?", "context": "CREATE TABLE table_name_9 (chassis___engine VARCHAR, laps VARCHAR)"}, {"answer": "SELECT class FROM table_name_85 WHERE laps < 71 AND team = \"liqui moly equipe\"", "question": "What is the class of team liqui moly equipe, which has less than 71 laps?", "context": "CREATE TABLE table_name_85 (class VARCHAR, laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_15 WHERE class = \"c1\" AND laps > 77 AND driver = \"klaus ludwig\"", "question": "What is the team of driver klaus ludwig, who is class c1 and has more than 77 laps?", "context": "CREATE TABLE table_name_15 (team VARCHAR, driver VARCHAR, class VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_14 WHERE chassis___engine = \"porsche 956 gti\"", "question": "Who is the driver of the chassis-engine porsche 956 gti?", "context": "CREATE TABLE table_name_14 (driver VARCHAR, chassis___engine VARCHAR)"}, {"answer": "SELECT team FROM table_name_17 WHERE chassis___engine = \"porsche 956 b\" AND laps < 79", "question": "What team has a porsche 956 b chassis-engine with less than 79 laps?", "context": "CREATE TABLE table_name_17 (team VARCHAR, chassis___engine VARCHAR, laps VARCHAR)"}, {"answer": "SELECT worldwide_gross FROM table_name_65 WHERE director = \"joe pytka\"", "question": "What was the worldwide gross for the film directed by joe pytka?", "context": "CREATE TABLE table_name_65 (worldwide_gross VARCHAR, director VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_82 WHERE studio = \"20th century fox\" AND director = \"roland emmerich\"", "question": "What was the average rank for the film directed by roland emmerich under the studio of 20th century fox?", "context": "CREATE TABLE table_name_82 (rank INTEGER, studio VARCHAR, director VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_90 WHERE director = \"michael bay\"", "question": "What is the average rank for the film directed by michael bay?", "context": "CREATE TABLE table_name_90 (rank INTEGER, director VARCHAR)"}, {"answer": "SELECT 3 AS rd_largest FROM table_name_35 WHERE largest_city = \"ardabil\"", "question": "What is the 3rd largest where the largest city is Ardabil?", "context": "CREATE TABLE table_name_35 (largest_city VARCHAR)"}, {"answer": "SELECT province FROM table_name_73 WHERE largest_city = \"birjand\"", "question": "What province has the largest city of Birjand?", "context": "CREATE TABLE table_name_73 (province VARCHAR, largest_city VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE date = \"september 28\"", "question": "What was the score on september 28?", "context": "CREATE TABLE table_name_58 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE score = \"29-7\"", "question": "What date was the score 29-7?", "context": "CREATE TABLE table_name_28 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(january) FROM table_name_67 WHERE game < 37 AND opponent = \"detroit red wings\"", "question": "How much January has a Game smaller than 37, and an Opponent of detroit red wings?", "context": "CREATE TABLE table_name_67 (january VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT january FROM table_name_55 WHERE opponent = \"toronto maple leafs\"", "question": "Which January has an Opponent of toronto maple leafs?", "context": "CREATE TABLE table_name_55 (january VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(january) FROM table_name_74 WHERE opponent = \"@ detroit red wings\"", "question": "Which January has an Opponent of @ detroit red wings?", "context": "CREATE TABLE table_name_74 (january INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE score = \"won 1-2\"", "question": "What date was the score won 1-2?", "context": "CREATE TABLE table_name_93 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE opponent = \"bornor regis town\"", "question": "What was the score when Bornor Regis Town was the opponent?", "context": "CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_86 WHERE opponent = \"tonbridge angels\"", "question": "What is the number of people in attendance when Tonbridge Angels is the opponent?", "context": "CREATE TABLE table_name_86 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE attendance = \"tbc\" AND opponent = \"sidley united\"", "question": "What is the score when the attendance shows TBC, and Sidley United was the opponent?", "context": "CREATE TABLE table_name_81 (score VARCHAR, attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE scorers = \"match report\"", "question": "What is the score when the scorers show match report?", "context": "CREATE TABLE table_name_97 (score VARCHAR, scorers VARCHAR)"}, {"answer": "SELECT album FROM table_name_87 WHERE label = \"msb 801\"", "question": "Which Album has a Label of msb 801?", "context": "CREATE TABLE table_name_87 (album VARCHAR, label VARCHAR)"}, {"answer": "SELECT album FROM table_name_84 WHERE label = \"tumbleweed 1014\"", "question": "Which Album has a Label of tumbleweed 1014?", "context": "CREATE TABLE table_name_84 (album VARCHAR, label VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE tie_no = \"12\"", "question": "What was the score when the tie no was 12?", "context": "CREATE TABLE table_name_72 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE away_team = \"carlisle united\"", "question": "What date was the match against carlisle united?", "context": "CREATE TABLE table_name_65 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_11 WHERE away_team = \"millwall\"", "question": "Who was the home team when millwall was the away team?", "context": "CREATE TABLE table_name_11 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT category FROM table_name_31 WHERE outcome = \"nominated\" AND year > 2008", "question": "What category was the nominated in after 2008?", "context": "CREATE TABLE table_name_31 (category VARCHAR, outcome VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_46 WHERE category = \"supernova award\"", "question": "What year had the supernova award?", "context": "CREATE TABLE table_name_46 (year VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_name_45 WHERE outcome = \"winner\"", "question": "What category was the winner in?", "context": "CREATE TABLE table_name_45 (category VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT country FROM table_name_7 WHERE iata = \"gva\"", "question": "what is the country when the iata is gva?", "context": "CREATE TABLE table_name_7 (country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT country FROM table_name_34 WHERE city = \"cardiff\"", "question": "what is the country for the city of cardiff?", "context": "CREATE TABLE table_name_34 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT icao FROM table_name_28 WHERE country = \"norway\"", "question": "what is the icao when the country is norway?", "context": "CREATE TABLE table_name_28 (icao VARCHAR, country VARCHAR)"}, {"answer": "SELECT city FROM table_name_96 WHERE country = \"netherlands\"", "question": "what is the city for the country of netherlands?", "context": "CREATE TABLE table_name_96 (city VARCHAR, country VARCHAR)"}, {"answer": "SELECT airport FROM table_name_41 WHERE city = \"d\u00fcsseldorf\"", "question": "what is the airport when the city is d\u00fcsseldorf?", "context": "CREATE TABLE table_name_41 (airport VARCHAR, city VARCHAR)"}, {"answer": "SELECT iata FROM table_name_91 WHERE city = \"leipzig\"", "question": "what is the iata when the city is leipzig?", "context": "CREATE TABLE table_name_91 (iata VARCHAR, city VARCHAR)"}, {"answer": "SELECT record FROM table_name_82 WHERE february = 23", "question": "What is the record on February 23?", "context": "CREATE TABLE table_name_82 (record VARCHAR, february VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_87 WHERE year < 2002 AND ascent_time = \"43:24\"", "question": "What was the rank of the rider whose ascent time was 43:24 before the year 2002?", "context": "CREATE TABLE table_name_87 (rank VARCHAR, year VARCHAR, ascent_time VARCHAR)"}, {"answer": "SELECT rider FROM table_name_43 WHERE rank < 8 AND year = 2000 AND speed = \"18.32 km/h\"", "question": "Who is the rider that has a rank of less than 8 in the year 2000, and whose speed was 18.32 km/h?", "context": "CREATE TABLE table_name_43 (rider VARCHAR, speed VARCHAR, rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT comp_att FROM table_name_83 WHERE season = \"2009\"", "question": "What is the number of completions and attempts taken in 2009?", "context": "CREATE TABLE table_name_83 (comp_att VARCHAR, season VARCHAR)"}, {"answer": "SELECT comp_att FROM table_name_10 WHERE avg_g = \"36.5\"", "question": "What is the completion/attempts value for the year with an average per game of 36.5?", "context": "CREATE TABLE table_name_10 (comp_att VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT long FROM table_name_17 WHERE avg_g = \"160.9\"", "question": "What is the long value for the year with an average/game of 160.9?", "context": "CREATE TABLE table_name_17 (long VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_17 WHERE date = \"february 7, 2009\" AND points > 49", "question": "What was the highest attendance of February 7, 2009 and more than 49 points?", "context": "CREATE TABLE table_name_17 (attendance INTEGER, date VARCHAR, points VARCHAR)"}, {"answer": "SELECT location FROM table_name_25 WHERE game < 57 AND points > 50", "question": "Which game has a number lower than 57 and more than 50 points?", "context": "CREATE TABLE table_name_25 (location VARCHAR, game VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_27 WHERE date = \"february 10, 2009\" AND game > 54", "question": "What game  in February 10, 2009 has the most points and a game number larger than 54?", "context": "CREATE TABLE table_name_27 (points INTEGER, date VARCHAR, game VARCHAR)"}, {"answer": "SELECT current_streak FROM table_name_50 WHERE last_10_meetings = \"lsu, 2-1\"", "question": "What's the current streak with a last 10 meetings of lsu, 2-1?", "context": "CREATE TABLE table_name_50 (current_streak VARCHAR, last_10_meetings VARCHAR)"}, {"answer": "SELECT probable_future FROM table_name_82 WHERE NOT simple_present_future = \"high grade\"", "question": "What is the probable future word for the simple present/future word high grade?", "context": "CREATE TABLE table_name_82 (probable_future VARCHAR, simple_present_future VARCHAR)"}, {"answer": "SELECT injunctive FROM table_name_99 WHERE simple_past = \"\u0917\u0930\u0941\u0901\u0932\u093e gar\u0169l\u0101 'i will (probably) do'\"", "question": "What is the injunctive for the Simple Past of \u0917\u0930\u0941\u0901\u0932\u093e gar\u0169l\u0101 'I will (probably) do'?", "context": "CREATE TABLE table_name_99 (injunctive VARCHAR, simple_past VARCHAR)"}, {"answer": "SELECT took_office FROM table_name_28 WHERE minister = \"giorgia meloni\"", "question": "What is the date of taking office for Giorgia Meloni?", "context": "CREATE TABLE table_name_28 (took_office VARCHAR, minister VARCHAR)"}, {"answer": "SELECT party FROM table_name_85 WHERE minister = \"andrea ronchi\"", "question": "Which party was Andrea Ronchi from?", "context": "CREATE TABLE table_name_85 (party VARCHAR, minister VARCHAR)"}, {"answer": "SELECT MIN(division) FROM table_name_30 WHERE team = \"benfica\" AND apps = 22", "question": "What is the lowest Division, when Team is \"Benfica\", and when Apps is 22?", "context": "CREATE TABLE table_name_30 (division INTEGER, team VARCHAR, apps VARCHAR)"}, {"answer": "SELECT championship FROM table_name_9 WHERE winning_score = 69 - 71 - 67 - 68 = 275", "question": "What Championship had a winning score of 69-71-67-68=275?", "context": "CREATE TABLE table_name_9 (championship VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_55 WHERE time = \"1:15.89\"", "question": "What is Jockey, when Time is 1:15.89?", "context": "CREATE TABLE table_name_55 (jockey VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_16 WHERE jockey = \"john velazquez\" AND trainer = \"todd a. pletcher\"", "question": "What is Time, when Jockey is John Velazquez, and when Trainer is Todd A. Pletcher?", "context": "CREATE TABLE table_name_16 (time VARCHAR, jockey VARCHAR, trainer VARCHAR)"}, {"answer": "SELECT winner FROM table_name_34 WHERE year = 2001", "question": "What is Winner, when Year is 2001?", "context": "CREATE TABLE table_name_34 (winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_10 WHERE winner = \"alke\"", "question": "What is Jockey, when Winner is Alke?", "context": "CREATE TABLE table_name_10 (jockey VARCHAR, winner VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_42 WHERE time = \"+50.653\"", "question": "What is the average laps for the +50.653 time?", "context": "CREATE TABLE table_name_42 (laps INTEGER, time VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_name_78 WHERE points < 8 AND place > 13 AND drawn < 1", "question": "What is the highest Matches were the points were smaller than 8, the place was larger than 13, and the drawn is less than 1?", "context": "CREATE TABLE table_name_78 (matches INTEGER, drawn VARCHAR, points VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_68 WHERE drawn < 0", "question": "What is the average points when the drawn is less than 0?", "context": "CREATE TABLE table_name_68 (points INTEGER, drawn INTEGER)"}, {"answer": "SELECT MIN(gold) FROM table_name_83 WHERE nation = \"turkey\" AND bronze < 2", "question": "What was Turkey's lowest gold when there were less than 2 bronze?", "context": "CREATE TABLE table_name_83 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(area__sq_mi_) FROM table_name_88 WHERE administrative_division = \"hunan\" AND national_share___percentage_ < 2.19", "question": "What is the average area in square miles for the hunan administrative division with a national share less than 2.19%?", "context": "CREATE TABLE table_name_88 (area__sq_mi_ INTEGER, administrative_division VARCHAR, national_share___percentage_ VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_83 WHERE college = \"central michigan\" AND pick = 8", "question": "What is Central Michigan's average overall when the pick was 8?", "context": "CREATE TABLE table_name_83 (overall INTEGER, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT record FROM table_name_37 WHERE opponent = \"jeff williams\"", "question": "what is the record when the opponent is jeff williams?", "context": "CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_97 WHERE round = 1 AND opponent = \"bobby mcmaster\"", "question": "what is the method for round 1 and the opponent is bobby mcmaster?", "context": "CREATE TABLE table_name_97 (method VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_7 WHERE time = \"3:15\"", "question": "what is the location when the time is 3:15?", "context": "CREATE TABLE table_name_7 (location VARCHAR, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_41 WHERE round < 3 AND time = \"4:59\"", "question": "what is the record when the round is before 3 and the time si 4:59?", "context": "CREATE TABLE table_name_41 (record VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_24 WHERE event = \"shido usa mma\" AND opponent = \"raphael assun\u00e7\u00e3o\"", "question": "what is the record when the event is shido usa mma and the opponent is raphael assun\u00e7\u00e3o?", "context": "CREATE TABLE table_name_24 (record VARCHAR, event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_58 WHERE player = \"ben crenshaw\"", "question": "How much money did Ben Crenshaw earn?", "context": "CREATE TABLE table_name_58 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT competition FROM table_name_28 WHERE score = \"2-1\"", "question": "what is the competition when the score is 2-1?", "context": "CREATE TABLE table_name_28 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_15 WHERE score = \"10-0\" AND date = \"1997-06-22\"", "question": "what is the venue when the score is 10-0 on 1997-06-22?", "context": "CREATE TABLE table_name_15 (venue VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_66 WHERE competition = \"1996 afc asian cup group stage\"", "question": "what is the venue when the competition is 1996 afc asian cup group stage?", "context": "CREATE TABLE table_name_66 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_35 WHERE date = \"1995-08-06\"", "question": "what is the competition when the date is 1995-08-06?", "context": "CREATE TABLE table_name_35 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_25 WHERE opponent = \"dallas cowboys\"", "question": "What is the total number of weeks that the Giants played against the Dallas Cowboys?", "context": "CREATE TABLE table_name_25 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home FROM table_name_62 WHERE away = \"hispano\"", "question": "Which Home has an Away of hispano?", "context": "CREATE TABLE table_name_62 (home VARCHAR, away VARCHAR)"}, {"answer": "SELECT engine FROM table_name_1 WHERE entrant = \"mercedes amg petronas f1 team\" AND points = \"93\"", "question": "What engine has the Mercedes AMG Petronas f1 team, and 93 points?", "context": "CREATE TABLE table_name_1 (engine VARCHAR, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_32 WHERE points = \"4\"", "question": "Which Chassis has 4 points?", "context": "CREATE TABLE table_name_32 (chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_64 WHERE year > 2009 AND score = \"7\u20135, 6\u20137 (6\u20138) , 6\u20131\"", "question": "What is Opponent, when Year is greater than 2009, and when Score is 7\u20135, 6\u20137 (6\u20138) , 6\u20131?", "context": "CREATE TABLE table_name_64 (opponent VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_3 WHERE surface = \"hard\" AND opponent = \"dinara safina\"", "question": "What is the lowest Year, when Surface is Hard, and when Opponent is Dinara Safina?", "context": "CREATE TABLE table_name_3 (year INTEGER, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_49 WHERE championship = \"australian open\"", "question": "What is Surface, when Championship is Australian Open?", "context": "CREATE TABLE table_name_49 (surface VARCHAR, championship VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_63 WHERE opponent = \"victoria azarenka\" AND score = \"6\u20132, 2\u20136, 7\u20135\"", "question": "What is Outcome, when Opponent is Victoria Azarenka, and when Score is 6\u20132, 2\u20136, 7\u20135?", "context": "CREATE TABLE table_name_63 (outcome VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT series FROM table_name_47 WHERE released_by = \"itv studios\" AND release_date = \"august 15, 2012\"", "question": "WHAT SERIES WAS RELEASED BY ITV STUDIOS AND A RELEASE DATE OF AUGUST 15, 2012?", "context": "CREATE TABLE table_name_47 (series VARCHAR, released_by VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT episode_no FROM table_name_78 WHERE no_of_dvds = \"28\"", "question": "WHAT IS THE EPISODE NUMBER  THAT HAS 28 DVD?", "context": "CREATE TABLE table_name_78 (episode_no VARCHAR, no_of_dvds VARCHAR)"}, {"answer": "SELECT episode_no FROM table_name_58 WHERE region_no > 1 AND no_of_dvds = \"32\"", "question": "WHAT EPISODE HAS A REGION NUMBER BIGGER THAN 1, AND 32 DVDS?", "context": "CREATE TABLE table_name_58 (episode_no VARCHAR, region_no VARCHAR, no_of_dvds VARCHAR)"}, {"answer": "SELECT duration FROM table_name_20 WHERE test_flight = \"taxi test #2\"", "question": "What is Duration, when Test Flight is Taxi Test #2?", "context": "CREATE TABLE table_name_20 (duration VARCHAR, test_flight VARCHAR)"}, {"answer": "SELECT duration FROM table_name_79 WHERE test_flight = \"free flight #3\"", "question": "What it Duration, when Test Flight is Free Flight #3?", "context": "CREATE TABLE table_name_79 (duration VARCHAR, test_flight VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE comment = \"tailcone on, lakebed landing\" AND duration = \"5min 34 s\"", "question": "What is Date, when Comment is Tailcone On, Lakebed Landing, and when Duration is 5min 34 s?", "context": "CREATE TABLE table_name_52 (date VARCHAR, comment VARCHAR, duration VARCHAR)"}, {"answer": "SELECT crew FROM table_name_61 WHERE date = \"july 26, 1977\"", "question": "What is Crew, when Date is July 26, 1977?", "context": "CREATE TABLE table_name_61 (crew VARCHAR, date VARCHAR)"}, {"answer": "SELECT years FROM table_name_83 WHERE nationality = \"united states\" AND position = \"pg / sg\"", "question": "What is Years, when Nationality is United States, and when Position is PG / SG?", "context": "CREATE TABLE table_name_83 (years VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_73 WHERE years = \"1979\"", "question": "What is Nationality, when Years is 1979?", "context": "CREATE TABLE table_name_73 (nationality VARCHAR, years VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE time = \"18:27\"", "question": "WHAT SCORE HAS A TIME OF 18:27?", "context": "CREATE TABLE table_name_95 (score VARCHAR, time VARCHAR)"}, {"answer": "SELECT goal FROM table_name_45 WHERE time = \"39:37\"", "question": "WHAT GOAL HAS A TIME OF 39:37?", "context": "CREATE TABLE table_name_45 (goal VARCHAR, time VARCHAR)"}, {"answer": "SELECT electorate FROM table_name_39 WHERE party = \"country\" AND state = \"wa\" AND member = \"john hallett\"", "question": "What is Electorate, when Party is \"Country\", when State is \"WA\", and when Member is \"John Hallett\"?", "context": "CREATE TABLE table_name_39 (electorate VARCHAR, member VARCHAR, party VARCHAR, state VARCHAR)"}, {"answer": "SELECT term_of_office FROM table_name_64 WHERE member = \"dominic costa\"", "question": "What is Term of Office, when Member is \"Dominic Costa\"?", "context": "CREATE TABLE table_name_64 (term_of_office VARCHAR, member VARCHAR)"}, {"answer": "SELECT state FROM table_name_6 WHERE member = \"gil duthie\"", "question": "What is State, when Member is \"Gil Duthie\"?", "context": "CREATE TABLE table_name_6 (state VARCHAR, member VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_90 WHERE venue = \"stadion\" AND score = \"2-0\"", "question": "What was the number of attendance at Stadion with a score of 2-0", "context": "CREATE TABLE table_name_90 (attendance VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT season FROM table_name_1 WHERE winner = \"rangers\"", "question": "What season did the Rangers win?", "context": "CREATE TABLE table_name_1 (season VARCHAR, winner VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE runner_up = \"falkirk\"", "question": "What is the score of the game with Falkirk as the runner-up?", "context": "CREATE TABLE table_name_48 (score VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT venue FROM table_name_15 WHERE runner_up = \"rangers\" AND winner = \"hibernian\"", "question": "What is the venue of the game where hibernian won and the rangers were the runner-up?", "context": "CREATE TABLE table_name_15 (venue VARCHAR, runner_up VARCHAR, winner VARCHAR)"}, {"answer": "SELECT country FROM table_name_7 WHERE winter_olympics = 1972", "question": "what is the country for the 1972 winter olympics?", "context": "CREATE TABLE table_name_7 (country VARCHAR, winter_olympics VARCHAR)"}, {"answer": "SELECT winter_olympics FROM table_name_45 WHERE fis_nordic_world_ski_championships = \"1976\"", "question": "what is the winter olympics year when the fis nordic world ski championships is 1976?", "context": "CREATE TABLE table_name_45 (winter_olympics VARCHAR, fis_nordic_world_ski_championships VARCHAR)"}, {"answer": "SELECT MIN(winter_olympics) FROM table_name_39 WHERE fis_nordic_world_ski_championships = \"1976\"", "question": "what is the earliest winter olympics when the fis nordic world ski championships is 1976?", "context": "CREATE TABLE table_name_39 (winter_olympics INTEGER, fis_nordic_world_ski_championships VARCHAR)"}, {"answer": "SELECT SUM(winter_olympics) FROM table_name_5 WHERE country = \"soviet union\" AND holmenkollen = \"1970, 1979\"", "question": "what is the winter olympics when the country is soviet union and holmenkollen is 1970, 1979?", "context": "CREATE TABLE table_name_5 (winter_olympics INTEGER, country VARCHAR, holmenkollen VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE away_team = \"newport county\"", "question": "what is the date when the away team is newport county?", "context": "CREATE TABLE table_name_98 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_20 WHERE goals = 5 AND assists < 8", "question": "How many games have 5 goals and less than 8 assists?", "context": "CREATE TABLE table_name_20 (games VARCHAR, goals VARCHAR, assists VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_4 WHERE points = 13 AND assists = 10 AND club = \"eisb\u00e4ren berlin\"", "question": "What is the highest number of goals Eisb\u00e4ren Berlin had along with 13 points and 10 assists?", "context": "CREATE TABLE table_name_4 (goals INTEGER, club VARCHAR, points VARCHAR, assists VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_29 WHERE player = \"ivan ciernik\" AND goals < 11", "question": "What is Ivan Ciernik's average points with less than 11 goals?", "context": "CREATE TABLE table_name_29 (points INTEGER, player VARCHAR, goals VARCHAR)"}, {"answer": "SELECT province FROM table_name_98 WHERE centers = \"parun\"", "question": "Which province is Parun in?", "context": "CREATE TABLE table_name_98 (province VARCHAR, centers VARCHAR)"}, {"answer": "SELECT category FROM table_name_33 WHERE pilot = \"frank scarabino\"", "question": "In which category is Frank Scarabino a pilot?", "context": "CREATE TABLE table_name_33 (category VARCHAR, pilot VARCHAR)"}, {"answer": "SELECT SUM(speed__km_h_) FROM table_name_43 WHERE pilot = \"john egginton\"", "question": "What is the sum of speed in km per hour reached by John Egginton?", "context": "CREATE TABLE table_name_43 (speed__km_h_ INTEGER, pilot VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_11 WHERE season > 2005 AND score = \"4-2\"", "question": "What is the name of team 1 that was after the 2005 season and with a 4-2 score?", "context": "CREATE TABLE table_name_11 (team_1 VARCHAR, season VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_5 WHERE score = \"0-2\" AND season = 2004", "question": "In the 2004 season with a 0-2 score what was the name of the venue?", "context": "CREATE TABLE table_name_5 (venue VARCHAR, score VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_95 WHERE team_2 = \"pisico b\u00ecnh \u00f0inh\"", "question": "What is the earliest season that Pisico B\u00ecnh \u00f0inh is team 2?", "context": "CREATE TABLE table_name_95 (season INTEGER, team_2 VARCHAR)"}, {"answer": "SELECT years FROM table_name_88 WHERE rank < 2", "question": "Which years have a rank less than 2?", "context": "CREATE TABLE table_name_88 (years VARCHAR, rank INTEGER)"}, {"answer": "SELECT COUNT(games) FROM table_name_78 WHERE total_rebounds > 1048", "question": "How many games have rebounds larger than 1048?", "context": "CREATE TABLE table_name_78 (games VARCHAR, total_rebounds INTEGER)"}, {"answer": "SELECT COUNT(total_rebounds) FROM table_name_5 WHERE player = \"andre gaddy\" AND rank < 6", "question": "How many rebounds have a Player of andre gaddy, and a Rank smaller than 6?", "context": "CREATE TABLE table_name_5 (total_rebounds VARCHAR, player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(total_rebounds) FROM table_name_51 WHERE player = \"herb estes\"", "question": "How many rebounds have a Player of herb estes?", "context": "CREATE TABLE table_name_51 (total_rebounds VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(reb_avg) FROM table_name_16 WHERE games > 98 AND rank = 7", "question": "What is the total of rebound averages with more than 98 games and a rank of 7?", "context": "CREATE TABLE table_name_16 (reb_avg INTEGER, games VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE team = \"golden state\"", "question": "Can you tell me the Date that has the Team of golden state?", "context": "CREATE TABLE table_name_21 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_44 WHERE date = \"november 25\"", "question": "Can you tell me the High assists that has the Date of november 25?", "context": "CREATE TABLE table_name_44 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_91 WHERE high_rebounds = \"antawn jamison (10)\" AND date = \"november 5\"", "question": "Can you tell me the Team that has the High rebounds of antawn jamison (10), and the Date of november 5?", "context": "CREATE TABLE table_name_91 (team VARCHAR, high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_16 WHERE date = \"november 5\"", "question": "Can you tell me the High rebounds that has the Date of november 5?", "context": "CREATE TABLE table_name_16 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_56 WHERE series = \"astc round 1\"", "question": "WHAT IS THE TEAM WITH astc round 1?", "context": "CREATE TABLE table_name_56 (team VARCHAR, series VARCHAR)"}, {"answer": "SELECT winner FROM table_name_59 WHERE series = \"atcc round 6\"", "question": "WHAT IS THE WINNER WITH ATCC ROUND 6?", "context": "CREATE TABLE table_name_59 (winner VARCHAR, series VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_85 WHERE record = \"0-5\" AND opponents > 20", "question": "What was the highest attendance for the game where the record was 0-5 and the opponents scored more than 20 points?", "context": "CREATE TABLE table_name_85 (attendance INTEGER, record VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_74 WHERE name = \"notre dame basilica\"", "question": "What is the street address of Notre Dame Basilica?", "context": "CREATE TABLE table_name_74 (street_address VARCHAR, name VARCHAR)"}, {"answer": "SELECT region FROM table_name_5 WHERE catalog = \"sm 2965-05\"", "question": "What is the Region, when the Catalog is SM 2965-05?", "context": "CREATE TABLE table_name_5 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_61 WHERE catalog = \"25ap 301\"", "question": "What is the Region, when the Catalog is 25AP 301?", "context": "CREATE TABLE table_name_61 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE catalog = \"epc 81436\"", "question": "What is Date, when Catalog is EPC 81436?", "context": "CREATE TABLE table_name_97 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_33 WHERE format = \"double cd\"", "question": "What is Label, when Format is Double CD?", "context": "CREATE TABLE table_name_33 (label VARCHAR, format VARCHAR)"}, {"answer": "SELECT label FROM table_name_40 WHERE region = \"japan\"", "question": "What is Label, when Region is Japan?", "context": "CREATE TABLE table_name_40 (label VARCHAR, region VARCHAR)"}, {"answer": "SELECT format FROM table_name_11 WHERE region = \"united states\"", "question": "What is Format, when Region is United States?", "context": "CREATE TABLE table_name_11 (format VARCHAR, region VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_79 WHERE manner_of_departure = \"contract expired\" AND team = \"lecce\"", "question": "What was the date of appointment for the manager of lecce when the previous manager's contract expired?", "context": "CREATE TABLE table_name_79 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, team VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_92 WHERE outgoing_manager = \"davide ballardini\"", "question": "What was the manner of departure for the outgoing manager, davide ballardini?", "context": "CREATE TABLE table_name_92 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_77 WHERE outgoing_manager = \"giuseppe iachini\"", "question": "What was the manner of departure for the outgoing manager, giuseppe iachini?", "context": "CREATE TABLE table_name_77 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_49 WHERE outgoing_manager = \"edoardo reja\"", "question": "What is the date of appointment for the outgoing manager edoardo reja?", "context": "CREATE TABLE table_name_49 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT event FROM table_name_55 WHERE opponent = \"matt eckerle\"", "question": "At what event did he fight matt eckerle?", "context": "CREATE TABLE table_name_55 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_94 WHERE time = \"1:44\"", "question": "What is the highest Round that lasted 1:44?", "context": "CREATE TABLE table_name_94 (round INTEGER, time VARCHAR)"}, {"answer": "SELECT SUM(interview) FROM table_name_51 WHERE country = \"illinois\" AND preliminary < 8.558", "question": "What is the number for the interview in Illinois when the preliminary is less than 8.558?", "context": "CREATE TABLE table_name_51 (interview INTEGER, country VARCHAR, preliminary VARCHAR)"}, {"answer": "SELECT country FROM table_name_50 WHERE swimsuit < 9.033 AND interview = 8.611 AND preliminary < 8.87", "question": "What is the name of the country with less than 9.033 for swimsuit, 8.611 for interview and preliminary is less than 8.87?", "context": "CREATE TABLE table_name_50 (country VARCHAR, preliminary VARCHAR, swimsuit VARCHAR, interview VARCHAR)"}, {"answer": "SELECT COUNT(evening_gown) FROM table_name_60 WHERE average > 8.984 AND country = \"louisiana\" AND preliminary > 8.597", "question": "What is the evening gown number when the average is more than 8.984 in Louisiana and the preliminary is more than 8.597?", "context": "CREATE TABLE table_name_60 (evening_gown VARCHAR, preliminary VARCHAR, average VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(interview) FROM table_name_19 WHERE country = \"louisiana\" AND swimsuit > 9.1", "question": "What is the interview number in Louisiana, and the swimsuit number is more than 9.1?", "context": "CREATE TABLE table_name_19 (interview VARCHAR, country VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT COUNT(swimsuit) FROM table_name_98 WHERE preliminary = 8.721 AND average > 8.781", "question": "What is the swimsuit number when the preliminary is 8.721, and the average is more than 8.781?", "context": "CREATE TABLE table_name_98 (swimsuit VARCHAR, preliminary VARCHAR, average VARCHAR)"}, {"answer": "SELECT venue FROM table_name_6 WHERE date = \"30 may 2004\"", "question": "Where was the game played on 30 May 2004?", "context": "CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT partner FROM table_name_35 WHERE surface = \"hard\" AND tournament = \"amarante\"", "question": "Who was Silva's Partner in the Amarante Tournament played on a Hard Surface?", "context": "CREATE TABLE table_name_35 (partner VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT partner FROM table_name_64 WHERE score = \"6\u20133, 7\u20136 (7\u20133)\"", "question": "Who was Silva's Partner in the match with a Score of 6\u20133, 7\u20136 (7\u20133)?", "context": "CREATE TABLE table_name_64 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE partner = \"kira nagy\"", "question": "On what Date was the match with partner Kira Nagy?", "context": "CREATE TABLE table_name_77 (date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE tournament = \"vigo\"", "question": "What is the Date of the Vigo Tournament?", "context": "CREATE TABLE table_name_65 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_33 WHERE partner = \"nicole thijssen\" AND opponent_in_the_final = \"nina bratchikova & frederica piedade\"", "question": "What Tournament did Silva Partner with Nicole Thijssen with Opponent in the final Nina Bratchikova & Frederica Piedade?", "context": "CREATE TABLE table_name_33 (tournament VARCHAR, partner VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT name FROM table_name_55 WHERE state = \"jin\"", "question": "What is Name, when State is \"Jin\"?", "context": "CREATE TABLE table_name_55 (name VARCHAR, state VARCHAR)"}, {"answer": "SELECT name FROM table_name_93 WHERE royal_house = \"ji\" AND state = \"cai\"", "question": "What is Name, when Royal House is \"Ji\", and when State is \"Cai\"?", "context": "CREATE TABLE table_name_93 (name VARCHAR, royal_house VARCHAR, state VARCHAR)"}, {"answer": "SELECT AVG(ratio) FROM table_name_76 WHERE similar_iso_a_size = \"a3\"", "question": "Which Ratio has a Similar ISO A size of a3?", "context": "CREATE TABLE table_name_76 (ratio INTEGER, similar_iso_a_size VARCHAR)"}, {"answer": "SELECT mm_\u00d7_mm FROM table_name_7 WHERE in_\u00d7_in = \"11 \u00d7 17\"", "question": "Which mm \u00d7 mm has an in \u00d7 in of 11 \u00d7 17?", "context": "CREATE TABLE table_name_7 (mm_\u00d7_mm VARCHAR, in_\u00d7_in VARCHAR)"}, {"answer": "SELECT MIN(ratio) FROM table_name_67 WHERE name = \"ansi e\"", "question": "Which Ratio has a Name of ansi e?", "context": "CREATE TABLE table_name_67 (ratio INTEGER, name VARCHAR)"}, {"answer": "SELECT ratio FROM table_name_2 WHERE in_\u00d7_in = \"17 \u00d7 22\"", "question": "Which Ratio has an in \u00d7 in of 17 \u00d7 22?", "context": "CREATE TABLE table_name_2 (ratio VARCHAR, in_\u00d7_in VARCHAR)"}, {"answer": "SELECT distance FROM table_name_20 WHERE stage = \"4a\"", "question": "What is the Distance of the 1945 Vuelta a Espana with 4A Stage?", "context": "CREATE TABLE table_name_20 (distance VARCHAR, stage VARCHAR)"}, {"answer": "SELECT earned FROM table_name_21 WHERE rank = 5", "question": "What earned has 5 for the rank?", "context": "CREATE TABLE table_name_21 (earned VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(earnings___) AS $__ FROM table_name_58 WHERE player = \"meg mallon\" AND rank < 9", "question": "What is the average earnings ($) that has meg mallon as the player, with a rank less than 9?", "context": "CREATE TABLE table_name_58 (earnings___ INTEGER, player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(federal_excise_tax___cad) AS \u00a2___l__ FROM table_name_85 WHERE total_excise_tax__cad\u00a2_l_ > 33.2 AND government = \"vancouver, bc\" AND minimum_tax_incl_sales_taxes__cad\u00a2_l_ < 41.01", "question": "What's the fed tax that has a total tax greater than 33.2, a minimum sales tax less than 41.01 and in Vancouver, BC?", "context": "CREATE TABLE table_name_85 (federal_excise_tax___cad INTEGER, minimum_tax_incl_sales_taxes__cad\u00a2_l_ VARCHAR, total_excise_tax__cad\u00a2_l_ VARCHAR, government VARCHAR)"}, {"answer": "SELECT MIN(minimum_tax_incl_sales_taxes__cad) AS \u00a2_l_ FROM table_name_27 WHERE min_tax__cad\u00a2_us_gal_ = 105.7 AND federal_excise_tax___cad\u00a2___l__ > 10", "question": "What is the least minimum sales tax when the min tax is 105.7 and fed tax is more than 10?", "context": "CREATE TABLE table_name_27 (minimum_tax_incl_sales_taxes__cad INTEGER, min_tax__cad\u00a2_us_gal_ VARCHAR, federal_excise_tax___cad\u00a2___l__ VARCHAR)"}, {"answer": "SELECT 1991 FROM table_name_69 WHERE 1992 = \"1r\" AND 1990 = \"1r\"", "question": "What is the 1991 when 1992 and 1990 are 1R?", "context": "CREATE TABLE table_name_69 (Id VARCHAR)"}, {"answer": "SELECT 1991 FROM table_name_53 WHERE 1990 = \"atp masters series\"", "question": "What is the 1991 when 1990 is ATP Masters Series?", "context": "CREATE TABLE table_name_53 (Id VARCHAR)"}, {"answer": "SELECT 1995 FROM table_name_77 WHERE 1991 = \"grand slams\"", "question": "What is the 1995 when the 1991 is Grand Slams?", "context": "CREATE TABLE table_name_77 (Id VARCHAR)"}, {"answer": "SELECT career_sr FROM table_name_16 WHERE 1985 = \"grand slams\"", "question": "What is the career SR when 1985 is Grand Slams?", "context": "CREATE TABLE table_name_16 (career_sr VARCHAR)"}, {"answer": "SELECT name FROM table_name_95 WHERE date = \"11 june 1940\"", "question": "Which Name has a Date of 11 june 1940?", "context": "CREATE TABLE table_name_95 (name VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_80 WHERE fate = \"sunk (mine)\" AND tonnage__grt_ < 2 OFFSET 266", "question": "Which Nationality has a Fate of sunk (mine), and a Tonnage (GRT) smaller than 2,266?", "context": "CREATE TABLE table_name_80 (nationality VARCHAR, fate VARCHAR, tonnage__grt_ VARCHAR)"}, {"answer": "SELECT MAX(tonnage__grt_) FROM table_name_52 WHERE date = \"16 june 1940\"", "question": "Which Tonnage (GRT) is the highest one that has a Date of 16 june 1940?", "context": "CREATE TABLE table_name_52 (tonnage__grt_ INTEGER, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_86 WHERE name = \"assyrian\"", "question": "Which Nationality has a Name of assyrian?", "context": "CREATE TABLE table_name_86 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT bike__40km_ FROM table_name_38 WHERE swim__15km_ = \"19:56\"", "question": "What is the time for the bike (40km) when the swim (1.5km) is 19:56?", "context": "CREATE TABLE table_name_38 (bike__40km_ VARCHAR, swim__15km_ VARCHAR)"}, {"answer": "SELECT trans_2 FROM table_name_76 WHERE swim__15km_ = \"18:55\" AND run__10km_ = \"32:37\"", "question": "With a swim (1.5km) of 18:55 and a run (10km) of 32:37, what is the trans 2?", "context": "CREATE TABLE table_name_76 (trans_2 VARCHAR, swim__15km_ VARCHAR, run__10km_ VARCHAR)"}, {"answer": "SELECT swim__15km_ FROM table_name_6 WHERE event = \"women's\" AND athlete = \"daniela ryf\"", "question": "Daniela Ryf who competes in the women's even had what swim (1.5km)?", "context": "CREATE TABLE table_name_6 (swim__15km_ VARCHAR, event VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT total_time FROM table_name_21 WHERE bike__40km_ = \"58:20\"", "question": "For the triathlon with a bike (40km) of 58:20 what is the total time?", "context": "CREATE TABLE table_name_21 (total_time VARCHAR, bike__40km_ VARCHAR)"}, {"answer": "SELECT trans_1 FROM table_name_28 WHERE total_time = \"2:00:40.20\"", "question": "How long did the trans 1 take when 2:00:40.20 is the total time?", "context": "CREATE TABLE table_name_28 (trans_1 VARCHAR, total_time VARCHAR)"}, {"answer": "SELECT record FROM table_name_91 WHERE team = \"minnesota\"", "question": "Can you tell me the Record that has the Team of minnesota?", "context": "CREATE TABLE table_name_91 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_89 WHERE team = \"memphis\"", "question": "Can you tell me the Score that has the Team of memphis?", "context": "CREATE TABLE table_name_89 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE away_team = \"aldershot\" AND date = \"aldershot\"", "question": "With a date of Aldershot and Aldershot as the away team what was the score of the game?", "context": "CREATE TABLE table_name_27 (score VARCHAR, away_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE away_team = \"west ham united\"", "question": "What was the score for the game when West Ham United was the away team?", "context": "CREATE TABLE table_name_84 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_27 WHERE tie_no = \"15\" AND away_team = \"sheffield united\" AND date = \"sheffield united\"", "question": "With Sheffield United as the away team and the date, what home team has a tie no of 15?", "context": "CREATE TABLE table_name_27 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_39 WHERE away_team = \"sheffield united\" AND date = \"sheffield united\"", "question": "Who was the home team when Sheffield United was the away team and the date was also Sheffield United?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_92 WHERE date = \"watford\"", "question": "What tie no has Watford as the date?", "context": "CREATE TABLE table_name_92 (tie_no VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_95 WHERE place = \"t9\" AND score = 71 - 71 - 72 = 214 AND player = \"ernie els\"", "question": "Which Country has a Place of t9, and a Score of 71-71-72=214, and a Player of ernie els?", "context": "CREATE TABLE table_name_95 (country VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_12 WHERE to_par = \"\u201313\"", "question": "Which Country has a To par of \u201313?", "context": "CREATE TABLE table_name_12 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_71 WHERE score = 72 - 69 - 73 = 214", "question": "Which Player has a Score of 72-69-73=214?", "context": "CREATE TABLE table_name_71 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE to_par = \"\u20134\" AND player = \"duffy waldorf\"", "question": "Which Score has a To par of \u20134, and a Player of duffy waldorf?", "context": "CREATE TABLE table_name_30 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_49 WHERE score = 79 - 68 - 74 = 212", "question": "Which Country has a Score of 79-68-74=212?", "context": "CREATE TABLE table_name_49 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_22 WHERE country = \"united states\" AND player = \"duffy waldorf\"", "question": "Which To par has a Country of united states, and a Player of duffy waldorf?", "context": "CREATE TABLE table_name_22 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT opponent_in_final FROM table_name_72 WHERE surface = \"hard\" AND location = \"wellington, new zealand\" AND date = \"6 february 2000\"", "question": "What is Opponent In Final, when Surface is Hard, when Location is Wellington, New Zealand, and when Date is 6 February 2000?", "context": "CREATE TABLE table_name_72 (opponent_in_final VARCHAR, date VARCHAR, surface VARCHAR, location VARCHAR)"}, {"answer": "SELECT surface FROM table_name_85 WHERE date = \"2 may 1999\"", "question": "What is Surface, when Date is 2 May 1999?", "context": "CREATE TABLE table_name_85 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_44 WHERE team__number1 = \"rubin kazan\"", "question": "What is the 2nd leg when team #1 is Rubin Kazan?", "context": "CREATE TABLE table_name_44 (team__number1 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_24 WHERE team__number2 = \"2006 uefa intertoto cup\"", "question": "What is the agg when team #2 is 2006 UEFA Intertoto Cup?", "context": "CREATE TABLE table_name_24 (agg VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT MAX(market_value__billion_) AS $_ FROM table_name_79 WHERE profits__billion_$_ = 20.96 AND assets__billion_$_ > 166.99", "question": "What is the highest market value in billions of the company with profits of 20.96 billions and 166.99 billions in assets?", "context": "CREATE TABLE table_name_79 (market_value__billion_ INTEGER, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)"}, {"answer": "SELECT COUNT(market_value__billion_) AS $_ FROM table_name_34 WHERE profits__billion_$_ = 20.96 AND assets__billion_$_ < 166.99", "question": "What is the total market value in billions of the company with 20.96 billion in profits and less than 166.99 billions in assets?", "context": "CREATE TABLE table_name_34 (market_value__billion_ VARCHAR, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)"}, {"answer": "SELECT AVG(assets__billion_) AS $_ FROM table_name_70 WHERE company = \"bank of america\" AND sales__billion_$_ < 49.01", "question": "What is the average assets in billions of the company Bank of America, which has less than 49.01 billions in sales?", "context": "CREATE TABLE table_name_70 (assets__billion_ INTEGER, company VARCHAR, sales__billion_$_ VARCHAR)"}, {"answer": "SELECT MAX(profits__billion_) AS $_ FROM table_name_87 WHERE headquarters = \"usa\" AND market_value__billion_$_ = 194.87 AND sales__billion_$_ < 76.66", "question": "What is the highest profits in billions of the company headquartered in the USA with a market value of 194.87 billions and less than 76.66 billions in sales?", "context": "CREATE TABLE table_name_87 (profits__billion_ INTEGER, sales__billion_$_ VARCHAR, headquarters VARCHAR, market_value__billion_$_ VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_55 WHERE nation = \"japan\" AND silver > 2", "question": "Which Total has a Nation of japan, and a Silver larger than 2?", "context": "CREATE TABLE table_name_55 (total INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT nation FROM table_name_74 WHERE gold > 0 AND total > 4 AND rank = \"6\"", "question": "Which Nation has a Gold larger than 0, and a Total larger than 4, and a Rank of 6?", "context": "CREATE TABLE table_name_74 (nation VARCHAR, rank VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_80 WHERE rank = \"1\" AND total < 11", "question": "Which Silver has a Rank of 1, and a Total smaller than 11?", "context": "CREATE TABLE table_name_80 (silver INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_4 WHERE nation = \"united states\" AND bronze > 3", "question": "Which Total has a Nation of united states, and a Bronze larger than 3?", "context": "CREATE TABLE table_name_4 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT venue FROM table_name_71 WHERE opponent = \"queensland\" AND batsmen = \"jamie cox & daniel marsh\"", "question": "Where did jamie cox & daniel marsh play against queensland?", "context": "CREATE TABLE table_name_71 (venue VARCHAR, opponent VARCHAR, batsmen VARCHAR)"}, {"answer": "SELECT venue FROM table_name_24 WHERE batsmen = \"jamie cox & scott kremerskothen\"", "question": "Where were jamie cox & scott kremerskothen paired?", "context": "CREATE TABLE table_name_24 (venue VARCHAR, batsmen VARCHAR)"}, {"answer": "SELECT batsmen FROM table_name_83 WHERE wicket = \"7\"", "question": "Who were the batsmen paired for wicket 7?", "context": "CREATE TABLE table_name_83 (batsmen VARCHAR, wicket VARCHAR)"}, {"answer": "SELECT runs FROM table_name_13 WHERE opponent = \"new south wales\" AND season = \"2002/03\"", "question": "How many runs did they get against new south wales in 2002/03?", "context": "CREATE TABLE table_name_13 (runs VARCHAR, opponent VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_81 WHERE opponent = \"queensland\" AND wicket = \"4\"", "question": "What season did they play queensland at wicket 4?", "context": "CREATE TABLE table_name_81 (season VARCHAR, opponent VARCHAR, wicket VARCHAR)"}, {"answer": "SELECT peak_position FROM table_name_12 WHERE date = \"july 11, 2001\"", "question": "What was the Peak Position on July 11, 2001?", "context": "CREATE TABLE table_name_12 (peak_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT weeks FROM table_name_18 WHERE date = \"december 12, 2001\"", "question": "On December 12, 2001, how many weeks had the single been in its position?", "context": "CREATE TABLE table_name_18 (weeks VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_73 WHERE school_club_team = \"purdue\"", "question": "What is the nationality of the Team Purdue?", "context": "CREATE TABLE table_name_73 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_47 WHERE school_club_team = \"georgia tech\"", "question": "What is the nationality of the Team Georgia Tech?", "context": "CREATE TABLE table_name_47 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_60 WHERE position = \"forward\" AND years_for_grizzlies = \"2011\"", "question": "What is the nationality of the forward position on the Grizzlies in 2011?", "context": "CREATE TABLE table_name_60 (nationality VARCHAR, position VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_53 WHERE venue = \"tartu, estonia\"", "question": "Who was the runner-up at the event held in Tartu, Estonia?", "context": "CREATE TABLE table_name_53 (runner_up VARCHAR, venue VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_90 WHERE venue = \"tartu, estonia\"", "question": "For the event held in Tartu, Estonia, what is the name of the runner-up?", "context": "CREATE TABLE table_name_90 (runner_up VARCHAR, venue VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_82 WHERE year = 2012", "question": "Who took third place in 2012?", "context": "CREATE TABLE table_name_82 (third_place VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_13 WHERE venue = \"oslo, norway\"", "question": "In what year was this event held in Oslo, Norway?", "context": "CREATE TABLE table_name_13 (year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT head_s__of_government FROM table_name_77 WHERE name = \"don stephen senanayake\"", "question": "What is the head of government for Don Stephen Senanayake?", "context": "CREATE TABLE table_name_77 (head_s__of_government VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_20 WHERE pos = \"14th\"", "question": "Which team is in 14th position?", "context": "CREATE TABLE table_name_20 (team VARCHAR, pos VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_96 WHERE team__number2 = \"san lorenzo\"", "question": "What is 2nd Leg, when Team #2 is \"San Lorenzo\"?", "context": "CREATE TABLE table_name_96 (team__number2 VARCHAR)"}, {"answer": "SELECT clock_speed FROM table_name_63 WHERE fsb_speed = \"400 mhz\" AND model_number = \"c7-m 794\"", "question": "Which Clock Speed has a FSB Speed of 400 mhz, and a Model Number of c7-m 794?", "context": "CREATE TABLE table_name_63 (clock_speed VARCHAR, fsb_speed VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT socket FROM table_name_16 WHERE fsb_speed = \"400 mhz\" AND voltage_range = \"1.004 v\"", "question": "Which Socket has a FSB Speed of 400 mhz, and a Voltage Range of 1.004 v?", "context": "CREATE TABLE table_name_16 (socket VARCHAR, fsb_speed VARCHAR, voltage_range VARCHAR)"}, {"answer": "SELECT clock_multiplier FROM table_name_69 WHERE clock_speed = \"1.6 ghz\" AND model_number = \"c7-m 764\"", "question": "Which Clock Multiplier has a Clock Speed of 1.6 ghz, and a Model Number of c7-m 764?", "context": "CREATE TABLE table_name_69 (clock_multiplier VARCHAR, clock_speed VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT fsb_speed FROM table_name_46 WHERE model_number = \"c7-m 765\"", "question": "Which FSB Speed has a Model Number of c7-m 765?", "context": "CREATE TABLE table_name_46 (fsb_speed VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT clock_multiplier FROM table_name_23 WHERE model_number = \"c7-m 764\"", "question": "Which Clock Multiplier has a Model Number of c7-m 764?", "context": "CREATE TABLE table_name_23 (clock_multiplier VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_34 WHERE voltage_range = \"1.148 v - 1.196 v\"", "question": "Which Release Date has a Voltage Range of 1.148 v - 1.196 v?", "context": "CREATE TABLE table_name_34 (release_date VARCHAR, voltage_range VARCHAR)"}, {"answer": "SELECT player FROM table_name_33 WHERE place = \"t2\"", "question": "Who are the players that placed t2?", "context": "CREATE TABLE table_name_33 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_97 WHERE player = \"lee trevino\"", "question": "Which country is Lee Trevino from?", "context": "CREATE TABLE table_name_97 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_76 WHERE country = \"south africa\"", "question": "Which player(s) is from South Africa?", "context": "CREATE TABLE table_name_76 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT record FROM table_name_51 WHERE year > 1992 AND manager = \"tom kotchman\" AND finish = \"2nd\"", "question": "what is the record when the year is after 1992, manager is tom kotchman and finish is 2nd?", "context": "CREATE TABLE table_name_51 (record VARCHAR, finish VARCHAR, year VARCHAR, manager VARCHAR)"}, {"answer": "SELECT finish FROM table_name_82 WHERE manager = \"tom kotchman\" AND record = \"43-33\"", "question": "what is the finish when the manager is tom kotchman and record is 43-33?", "context": "CREATE TABLE table_name_82 (finish VARCHAR, manager VARCHAR, record VARCHAR)"}, {"answer": "SELECT finish FROM table_name_50 WHERE manager = \"tom kotchman\" AND record = \"40-36\"", "question": "what is the finish when the manager is tom kotchman and the record is 40-36?", "context": "CREATE TABLE table_name_50 (finish VARCHAR, manager VARCHAR, record VARCHAR)"}, {"answer": "SELECT manager FROM table_name_6 WHERE year < 1994 AND finish = \"5th\"", "question": "who is the manager when the year is before 1994 and finish is 5th?", "context": "CREATE TABLE table_name_6 (manager VARCHAR, year VARCHAR, finish VARCHAR)"}, {"answer": "SELECT record FROM table_name_45 WHERE year = 2011", "question": "what is the record when the year is 2011?", "context": "CREATE TABLE table_name_45 (record VARCHAR, year VARCHAR)"}, {"answer": "SELECT player FROM table_name_61 WHERE total = 294 AND year_s__won = \"1955\"", "question": "What is Player, when Total is \"294\", and when Year(s) Won is \"1955\"?", "context": "CREATE TABLE table_name_61 (player VARCHAR, total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT player FROM table_name_28 WHERE to_par < 14", "question": "What is Player, when To Par is less than 14?", "context": "CREATE TABLE table_name_28 (player VARCHAR, to_par INTEGER)"}, {"answer": "SELECT to_par FROM table_name_55 WHERE player = \"tommy bolt\"", "question": "What is To Par, when Player is \"Tommy Bolt\"?", "context": "CREATE TABLE table_name_55 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_4 WHERE player = \"tommy bolt\"", "question": "What is the sum of Total, when Player is \"Tommy Bolt\"?", "context": "CREATE TABLE table_name_4 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_50 WHERE to_par = 7", "question": "What is the total number of Total, when To Par is \"7\"?", "context": "CREATE TABLE table_name_50 (total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT award FROM table_name_77 WHERE result = \"won\" AND nomination = \"senses around\"", "question": "Which award was won when the nomination was Senses Around?", "context": "CREATE TABLE table_name_77 (award VARCHAR, result VARCHAR, nomination VARCHAR)"}, {"answer": "SELECT nomination FROM table_name_43 WHERE year < 2009", "question": "What was the nomination in a year earlier than 2009?", "context": "CREATE TABLE table_name_43 (nomination VARCHAR, year INTEGER)"}, {"answer": "SELECT award FROM table_name_55 WHERE category = \"best new artist\"", "question": "Which award is for the category Best New Artist?", "context": "CREATE TABLE table_name_55 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_53 WHERE category = \"top 10 selling mandarin albums of the year\"", "question": "What is the earliest year with a category of Top 10 Selling Mandarin Albums of the Year?", "context": "CREATE TABLE table_name_53 (year INTEGER, category VARCHAR)"}, {"answer": "SELECT discipline FROM table_name_31 WHERE championship = \"usac national championship\"", "question": "For the USAC National Championship, what is the Discipline?", "context": "CREATE TABLE table_name_31 (discipline VARCHAR, championship VARCHAR)"}, {"answer": "SELECT championship FROM table_name_72 WHERE session = \"race\" AND event = \"indianapolis sweepstakes\"", "question": "In the Indianapolis Sweepstakes race session, what is the championship?", "context": "CREATE TABLE table_name_72 (championship VARCHAR, session VARCHAR, event VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_29 WHERE championship = \"sprint cup series\"", "question": "What circuit is the Sprint Cup series championship?", "context": "CREATE TABLE table_name_29 (circuit VARCHAR, championship VARCHAR)"}, {"answer": "SELECT result FROM table_name_91 WHERE attendance = \"25,000\"", "question": "What were the Results for 25,000 Attendance?", "context": "CREATE TABLE table_name_91 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_80 WHERE date = \"10/06/1934\"", "question": "What was the result on 10/06/1934?", "context": "CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(founded) FROM table_name_18 WHERE stadium = \"hiram bithorn stadium\" AND club = \"atl\u00e9tico de san juan fc\"", "question": "What year was the team Club of atl\u00e9tico de san juan fc who plays at hiram bithorn stadium founded.", "context": "CREATE TABLE table_name_18 (founded INTEGER, stadium VARCHAR, club VARCHAR)"}, {"answer": "SELECT branding FROM table_name_38 WHERE power = \"10 kw\" AND location = \"iloilo city\"", "question": "What is the Branding of the Iloilo City Frequency with a Power of 10 Kw?", "context": "CREATE TABLE table_name_38 (branding VARCHAR, power VARCHAR, location VARCHAR)"}, {"answer": "SELECT power FROM table_name_48 WHERE callsign = \"dxll\"", "question": "What is the Power of the Frequency with a Callsign of DXLL?", "context": "CREATE TABLE table_name_48 (power VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_91 WHERE location = \"davao city\"", "question": "What is the Frequency in Davao City?", "context": "CREATE TABLE table_name_91 (frequency VARCHAR, location VARCHAR)"}, {"answer": "SELECT branding FROM table_name_99 WHERE callsign = \"dwll\"", "question": "What is the Branding with a Callsign DWLL?", "context": "CREATE TABLE table_name_99 (branding VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT branding FROM table_name_19 WHERE location = \"metro manila\" AND callsign = \"dwbl\"", "question": "What is the Branding of the Metro Manila Frequency with a Callsign of DWBL?", "context": "CREATE TABLE table_name_19 (branding VARCHAR, location VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT location FROM table_name_89 WHERE callsign = \"dxbl\"", "question": "What is the Location of the Frequency with a Callsign of DXBL?", "context": "CREATE TABLE table_name_89 (location VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT name FROM table_name_91 WHERE year_named > 1997 AND longitude = \"213.0e\"", "question": "What name in a year after 1997 has a longitude of 213.0e?", "context": "CREATE TABLE table_name_91 (name VARCHAR, year_named VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT COUNT(year_named) FROM table_name_72 WHERE longitude = \"36.8e\" AND diameter__km_ > 697", "question": "How many years correspond to longitude of 36.8e and diameter greater than 697?", "context": "CREATE TABLE table_name_72 (year_named VARCHAR, longitude VARCHAR, diameter__km_ VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_87 WHERE position = \"center\" AND round < 6", "question": "What was the pick # for a center picked before round 6?", "context": "CREATE TABLE table_name_87 (pick__number VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT team FROM table_name_75 WHERE seed > 7 AND notes = \"ncraa champion\"", "question": "What team with a seed value greater than 7 has a note that they were an NCRAA champion?", "context": "CREATE TABLE table_name_75 (team VARCHAR, seed VARCHAR, notes VARCHAR)"}, {"answer": "SELECT COUNT(oricon_peak) FROM table_name_72 WHERE label = \"atlantic\" AND title = \"subhuman race\" AND date_of_release > 1995", "question": "WHAT IS THE ORICON PEAK NUMBER WITH AN ATLANTIC LABEL, SUBHUMAN RACE, LATER THAN 1995?", "context": "CREATE TABLE table_name_72 (oricon_peak VARCHAR, date_of_release VARCHAR, label VARCHAR, title VARCHAR)"}, {"answer": "SELECT label FROM table_name_80 WHERE date_of_release = 1991", "question": "WHAT LABEL HAD A RELEASE DATE OF 1991?", "context": "CREATE TABLE table_name_80 (label VARCHAR, date_of_release VARCHAR)"}, {"answer": "SELECT AVG(date_of_release) FROM table_name_33 WHERE title = \"thickskin\"", "question": "WHAT IS THE AVERAGE DATE OF RELEASE FOR THICKSKIN?", "context": "CREATE TABLE table_name_33 (date_of_release INTEGER, title VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_name_17 WHERE left = 2012 AND current_conference = \"mid-south\"", "question": "What is the lowest enrollment amount for a year left of 2012 and a current conference of Mid-South?", "context": "CREATE TABLE table_name_17 (enrollment INTEGER, left VARCHAR, current_conference VARCHAR)"}, {"answer": "SELECT SUM(season) FROM table_name_40 WHERE score = \"1:3\" AND venue = \"national stadium, maldives\"", "question": "Which season was there a game with the score of 1:3 played at the venue of national stadium, maldives?", "context": "CREATE TABLE table_name_40 (season INTEGER, score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_61 WHERE score = \"1:3\" AND team_2 = \"binh duong\"", "question": "What was the venue of the match where the score was 1:3 and team 2 was binh duong?", "context": "CREATE TABLE table_name_61 (venue VARCHAR, score VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE team_2 = \"club valencia\"", "question": "What was the score of the game when team 2 was club valencia?", "context": "CREATE TABLE table_name_70 (score VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT venue FROM table_name_59 WHERE team_2 = \"pea\" AND score = \"1:3\"", "question": "What was the venue of the match where team 2 was pea and the score was 1:3?", "context": "CREATE TABLE table_name_59 (venue VARCHAR, team_2 VARCHAR, score VARCHAR)"}, {"answer": "SELECT solar FROM table_name_48 WHERE year = 2011 AND hydroelectricity < 119.6", "question": "In 2011 with a hydroelectricity less than 119.6, what was the solar?", "context": "CREATE TABLE table_name_48 (solar VARCHAR, year VARCHAR, hydroelectricity VARCHAR)"}, {"answer": "SELECT MIN(hydroelectricity) FROM table_name_51 WHERE total < 116.4 AND solar > 18.637", "question": "What is the minimum hydroelectricity with a less than 116.4 total, and a greater than 18.637 solar?", "context": "CREATE TABLE table_name_51 (hydroelectricity INTEGER, total VARCHAR, solar VARCHAR)"}, {"answer": "SELECT AVG(hydroelectricity) FROM table_name_73 WHERE year > 2011 AND wind_power < 13.333", "question": "In 2011 with a less than 13.333 wind power what is the mean hydroelectricity?", "context": "CREATE TABLE table_name_73 (hydroelectricity INTEGER, year VARCHAR, wind_power VARCHAR)"}, {"answer": "SELECT country FROM table_name_38 WHERE total < 136.1 AND solar = 0.02", "question": "What country has a less than 136.1 total and a 0.02 solar?", "context": "CREATE TABLE table_name_38 (country VARCHAR, total VARCHAR, solar VARCHAR)"}, {"answer": "SELECT home FROM table_name_4 WHERE away = \"hispano\"", "question": "Home for away of hispano?", "context": "CREATE TABLE table_name_4 (home VARCHAR, away VARCHAR)"}, {"answer": "SELECT position FROM table_name_12 WHERE pick__number < 23 AND player = \"garrett sutherland\"", "question": "Which Position has a Pick # smaller than 23, and a Player of garrett sutherland?", "context": "CREATE TABLE table_name_12 (position VARCHAR, pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_53 WHERE player = \"chris evraire\"", "question": "Name the CFL Team which has a Player of chris evraire?", "context": "CREATE TABLE table_name_53 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_13 WHERE pick__number = 27", "question": "Name The Player who has a Pick # of 27?", "context": "CREATE TABLE table_name_13 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT player FROM table_name_24 WHERE cfl_team = \"toronto\"", "question": "Name the Player who has a CFL Team of toronto?", "context": "CREATE TABLE table_name_24 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_74 WHERE position = \"lb\" AND cfl_team = \"winnipeg\"", "question": "Name the Pick # which has a Position of lb, and a CFL Team of winnipeg?", "context": "CREATE TABLE table_name_74 (pick__number INTEGER, position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_26 WHERE home = \"detroit\" AND points > 33", "question": "WHAT IS THE SUM OF ATTENDANCE FOR DETROIT, WHEN POINTS ARE LARGER THAN 33?", "context": "CREATE TABLE table_name_26 (attendance INTEGER, home VARCHAR, points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_68 WHERE date = \"december 12\"", "question": "What was the location and attendance for the game on December 12?", "context": "CREATE TABLE table_name_68 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_name_14 WHERE player = \"andrew glover\" AND yards > 281", "question": "What is the lowest Touchdowns, when Player is Andrew Glover, and when Yards is greater than 281?", "context": "CREATE TABLE table_name_14 (touchdowns INTEGER, player VARCHAR, yards VARCHAR)"}, {"answer": "SELECT AVG(touchdowns) FROM table_name_7 WHERE yards < 293 AND long > 39", "question": "What is the average Touchdowns, when Yards is less than 293, and when Long is greater than 39?", "context": "CREATE TABLE table_name_7 (touchdowns INTEGER, yards VARCHAR, long VARCHAR)"}, {"answer": "SELECT COUNT(attempts) FROM table_name_61 WHERE touchdowns = 6", "question": "What is the total number of Attempts, when Touchdowns is 6?", "context": "CREATE TABLE table_name_61 (attempts VARCHAR, touchdowns VARCHAR)"}, {"answer": "SELECT venue FROM table_name_39 WHERE extra = \"pentathlon\"", "question": "What is Venue, when Extra is Pentathlon?", "context": "CREATE TABLE table_name_39 (venue VARCHAR, extra VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_33 WHERE extra = \"pentathlon\"", "question": "What is the highest Year, when Extra is Pentathlon?", "context": "CREATE TABLE table_name_33 (year INTEGER, extra VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_10 WHERE result = \"9th\"", "question": "What is the sum of Year, when Result is 9th?", "context": "CREATE TABLE table_name_10 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_74 WHERE result = \"2nd\" AND year = 2009", "question": "What is Tournament, when Result is 2nd, and when Year is 2009?", "context": "CREATE TABLE table_name_74 (tournament VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_77 WHERE venue = \"g\u00f6tzis , austria\"", "question": "What is Result, when Venue is G\u00f6tzis , Austria?", "context": "CREATE TABLE table_name_77 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT label FROM table_name_24 WHERE region = \"germany\"", "question": "What label does Germany have?", "context": "CREATE TABLE table_name_24 (label VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_name_13 WHERE label = \"chrysalis\" AND catalog = \"chr 1047\"", "question": "What region has the Chrysalis label, and a Catalog of chr 1047?", "context": "CREATE TABLE table_name_13 (region VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE region = \"united kingdom\" AND format = \"stereo lp\"", "question": "When did the United Kingdom format a stereo LP?", "context": "CREATE TABLE table_name_29 (date VARCHAR, region VARCHAR, format VARCHAR)"}, {"answer": "SELECT region FROM table_name_93 WHERE date = \"january 1974\"", "question": "What region goes along with January 1974?", "context": "CREATE TABLE table_name_93 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_98 WHERE date = \"1973\" AND catalog = \"l 35023\"", "question": "What is the label from 1973 that has a catalog number of l 35023?", "context": "CREATE TABLE table_name_98 (label VARCHAR, date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT wins FROM table_name_98 WHERE second = \"1\" AND races > 12", "question": "How many wins did the driver with 1 second and more than 12 races have?", "context": "CREATE TABLE table_name_98 (wins VARCHAR, second VARCHAR, races VARCHAR)"}, {"answer": "SELECT MIN(loss) FROM table_name_94 WHERE gain < 61 AND avg_g = 6", "question": "What is the lowest Loss number when the Gain is less than 61 and the Avg/G is 6?", "context": "CREATE TABLE table_name_94 (loss INTEGER, gain VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT SUM(avg_g) FROM table_name_95 WHERE loss = 0 AND name = \"dan dierking\" AND gain > 34", "question": "What is the sum of Avg/G for Dan Dierking when the Loss is 0 and the Gain is more than 34?", "context": "CREATE TABLE table_name_95 (avg_g INTEGER, gain VARCHAR, loss VARCHAR, name VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_27 WHERE date = \"april 6\"", "question": "Who was the visiting team on April 6?", "context": "CREATE TABLE table_name_27 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE record = \"4-3\"", "question": "What was the date of the game that led to a 4-3 record?", "context": "CREATE TABLE table_name_64 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_10 WHERE record = \"2-3\"", "question": "Who was the home team in the game that led to a 2-3 series record?", "context": "CREATE TABLE table_name_10 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_29 WHERE score = \"100-86\"", "question": "Which home team had a score of 100-86?", "context": "CREATE TABLE table_name_29 (home_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT report FROM table_name_89 WHERE venue = \"state sports centre\"", "question": "Which report corresponds to the State Sports Centre?", "context": "CREATE TABLE table_name_89 (report VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_31 WHERE venue = \"win entertainment centre\"", "question": "Who was the away team at the Win Entertainment Centre?", "context": "CREATE TABLE table_name_31 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(gain) FROM table_name_55 WHERE name = \"williams, jonathan\" AND loss > 3", "question": "Can you tell me the total number of Gain that has the Name of williams, jonathan, and the Loss larger than 3?", "context": "CREATE TABLE table_name_55 (gain VARCHAR, name VARCHAR, loss VARCHAR)"}, {"answer": "SELECT SUM(loss) FROM table_name_82 WHERE gain = 2646", "question": "Can you tell me the sum of Loss that has the Gain of 2646?", "context": "CREATE TABLE table_name_82 (loss INTEGER, gain VARCHAR)"}, {"answer": "SELECT SUM(gain) FROM table_name_75 WHERE name = \"kass, rob\" AND avg_g < 1.9", "question": "Can you tell me the sum of Gain that has the Name of kass, rob, and the Avg/g smaller than 1.9?", "context": "CREATE TABLE table_name_75 (gain INTEGER, name VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT MIN(long) FROM table_name_19 WHERE gain = 20 AND loss < 0", "question": "Can you tell me the lowest Long that has the Gain of 20, and the Loss smaller than 0?", "context": "CREATE TABLE table_name_19 (long INTEGER, gain VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(erp_w) FROM table_name_10 WHERE call_sign = \"w216bo\"", "question": "What is the highest ERP W with a w216bo call sign?", "context": "CREATE TABLE table_name_10 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_41 WHERE ground = \"subiaco oval\"", "question": "What kind of Crowd has a Ground of subiaco oval?", "context": "CREATE TABLE table_name_41 (crowd INTEGER, ground VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_67 WHERE date = \"saturday, 29 january\" AND away_team = \"collingwood\"", "question": "How many Crowd that has a Date on saturday, 29 january and an Away team of collingwood?", "context": "CREATE TABLE table_name_67 (crowd INTEGER, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE week > 11 AND opponent = \"arizona cardinals\"", "question": "On which date after week 11 was the opponent the arizona cardinals?", "context": "CREATE TABLE table_name_88 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT lead FROM table_name_78 WHERE alternate = \"li dongyan\"", "question": "What was the lead with an alternate of li dongyan?", "context": "CREATE TABLE table_name_78 (lead VARCHAR, alternate VARCHAR)"}, {"answer": "SELECT lead FROM table_name_18 WHERE season = \"2007-08\"", "question": "Which lead had a season of 2007-08?", "context": "CREATE TABLE table_name_18 (lead VARCHAR, season VARCHAR)"}, {"answer": "SELECT lead FROM table_name_40 WHERE season = \"2009-10\"", "question": "Which lead had a season of 2009-10?", "context": "CREATE TABLE table_name_40 (lead VARCHAR, season VARCHAR)"}, {"answer": "SELECT name FROM table_name_49 WHERE saturday = \"yes\" AND evening = \"yes\"", "question": "Which Name has a Yes Saturday and a Yes Evening?", "context": "CREATE TABLE table_name_49 (name VARCHAR, saturday VARCHAR, evening VARCHAR)"}, {"answer": "SELECT daytime FROM table_name_5 WHERE saturday = \"yes\" AND name = \"exmouth\"", "question": "Name the Daytime which has Saturday of yes and a Name of exmouth?", "context": "CREATE TABLE table_name_5 (daytime VARCHAR, saturday VARCHAR, name VARCHAR)"}, {"answer": "SELECT evening FROM table_name_18 WHERE sunday = \"no\" AND name = \"s. vidal/plant express\"", "question": "Name the Evening that has a Sunday of no, and a Name of s. vidal/plant express?", "context": "CREATE TABLE table_name_18 (evening VARCHAR, sunday VARCHAR, name VARCHAR)"}, {"answer": "SELECT daytime FROM table_name_22 WHERE name = \"exmouth\"", "question": "Name the Daytime which has a Name of exmouth?", "context": "CREATE TABLE table_name_22 (daytime VARCHAR, name VARCHAR)"}, {"answer": "SELECT saturday FROM table_name_80 WHERE sunday = \"yes\" AND evening = \"yes\"", "question": "Which Saturday has a Sunday of yes and a Evening of yes?", "context": "CREATE TABLE table_name_80 (saturday VARCHAR, sunday VARCHAR, evening VARCHAR)"}, {"answer": "SELECT saturday FROM table_name_68 WHERE name = \"confederation\"", "question": "Which Saturday has a Name of confederation?", "context": "CREATE TABLE table_name_68 (saturday VARCHAR, name VARCHAR)"}, {"answer": "SELECT gp_gs FROM table_name_52 WHERE season = \"2009\"", "question": "What was the GP-GS for the 2009 season?", "context": "CREATE TABLE table_name_52 (gp_gs VARCHAR, season VARCHAR)"}, {"answer": "SELECT gp_gs FROM table_name_13 WHERE long = \"17\" AND season = \"total\"", "question": "Which GP-GS had a long of 17 and a season of total?", "context": "CREATE TABLE table_name_13 (gp_gs VARCHAR, long VARCHAR, season VARCHAR)"}, {"answer": "SELECT long FROM table_name_97 WHERE avg_g = \"redshirt\"", "question": "Which Long has redshirt for its Avg/G?", "context": "CREATE TABLE table_name_97 (long VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT avg_g FROM table_name_74 WHERE season = \"2009\"", "question": "What was the Av/G of the 2009 season?", "context": "CREATE TABLE table_name_74 (avg_g VARCHAR, season VARCHAR)"}, {"answer": "SELECT long FROM table_name_56 WHERE avg_g = \"5.9\"", "question": "For the Avg/G of 5.9, what was the long?", "context": "CREATE TABLE table_name_56 (long VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_55 WHERE high_points = \"d. mckey (24)\" AND score = \"l 96-105\"", "question": "What is the Location Attendance, when High Points is \"D. McKey (24)\", and when Score is \"L 96-105\"?", "context": "CREATE TABLE table_name_55 (location_attendance VARCHAR, high_points VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_44 WHERE game > 33 AND score = \"w 132-101\"", "question": "What is High Rebounds, when Game is greater than 33, and when Score is \"W 132-101\"?", "context": "CREATE TABLE table_name_44 (high_rebounds VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_96 WHERE game = 32", "question": "What is Team, when Game is \"32\"?", "context": "CREATE TABLE table_name_96 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_35 WHERE high_points = \"d. mckey (24)\" AND team = \"@ dallas mavericks\"", "question": "What is the sum of Game, when High Points is \"D. McKey (24)\", and when Team is \"@ Dallas Mavericks\"?", "context": "CREATE TABLE table_name_35 (game INTEGER, high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_16 WHERE opponents = \"marc l\u00f3pez santiago ventura\"", "question": "Which Tournament has Opponents of marc l\u00f3pez santiago ventura?", "context": "CREATE TABLE table_name_16 (tournament VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_60 WHERE partnering = \"alessandro motti\" AND date = \"12 september 2005\"", "question": "Which Opponents have a Partnering of alessandro motti, and a Date of 12 september 2005?", "context": "CREATE TABLE table_name_60 (opponents VARCHAR, partnering VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_59 WHERE score = \"6\u20134, 6\u20133\"", "question": "Which Opponents have a Score of 6\u20134, 6\u20133?", "context": "CREATE TABLE table_name_59 (opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_40 WHERE surface = \"hard\" AND date = \"24 september 2011\"", "question": "Which Tournament has a Surface of hard, and a Date of 24 september 2011?", "context": "CREATE TABLE table_name_40 (tournament VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_49 WHERE event = \"gcf: strength and honor\"", "question": "How many rounds did the match at GCF: Strength and Honor last?", "context": "CREATE TABLE table_name_49 (round INTEGER, event VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_60 WHERE official_name = \"saint-antoine\" AND area_km_2 > 6.43", "question": "What is the total population for Saint-Antoine with an area squared of 6.43?", "context": "CREATE TABLE table_name_60 (population INTEGER, official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT status FROM table_name_21 WHERE population > 930 AND census_ranking = \"1,769 of 5,008\"", "question": "What is the current status of a location with a census ranking of 1,769 of 5,008 and population greater than 930?", "context": "CREATE TABLE table_name_21 (status VARCHAR, population VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT SUM(february) FROM table_name_8 WHERE record = \"40-15-5\"", "question": "How many games in February have a record of 40-15-5?", "context": "CREATE TABLE table_name_8 (february INTEGER, record VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_95 WHERE opponent = \"minnesota north stars\" AND february < 25", "question": "What is the lowest numbered game with an opponent of Minnesota North Stars earlier than February 25?", "context": "CREATE TABLE table_name_95 (game INTEGER, opponent VARCHAR, february VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_63 WHERE opponent = \"new york islanders\" AND february < 7", "question": "How many games have the New York Islanders as an opponent before February 7?", "context": "CREATE TABLE table_name_63 (game INTEGER, opponent VARCHAR, february VARCHAR)"}, {"answer": "SELECT MIN(february) FROM table_name_52 WHERE record = \"37-13-4\" AND game < 54", "question": "What is the earliest February date with a record of 37-13-4 in a game earlier than 54?", "context": "CREATE TABLE table_name_52 (february INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE record = \"2-0\"", "question": "What is the date of the game when the record is 2-0?", "context": "CREATE TABLE table_name_53 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_18 WHERE record = \"4-1\"", "question": "What is the average game number when the record is 4-1?", "context": "CREATE TABLE table_name_18 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_95 WHERE game = 1", "question": "What is the location and attendance of game 1?", "context": "CREATE TABLE table_name_95 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE location_attendance = \"madison square garden\" AND game < 6 AND team = \"seattle\"", "question": "What is the date of the game located in Madison Square Garden, when the team is Seattle and the game number is less than 6?", "context": "CREATE TABLE table_name_36 (date VARCHAR, team VARCHAR, location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_89 WHERE score = \"125-100\"", "question": "What is the location and attendance of the game when the score is 125-100?", "context": "CREATE TABLE table_name_89 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_93 WHERE year = \"1956\"", "question": "Who was the winning driver in 1956?", "context": "CREATE TABLE table_name_93 (winning_driver VARCHAR, year VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_43 WHERE winning_driver = \"peter whitehead\"", "question": "Which circuit did Peter Whitehead win?", "context": "CREATE TABLE table_name_43 (circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT report FROM table_name_21 WHERE winning_driver = \"jack brabham\"", "question": "What report did Jack Brabham win?", "context": "CREATE TABLE table_name_21 (report VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT year FROM table_name_16 WHERE circuit = \"kyalami\" AND winning_constructor = \"ferrari\"", "question": "What year did Ferrari win the Kyalami circuit?", "context": "CREATE TABLE table_name_16 (year VARCHAR, circuit VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_38 WHERE winning_driver = \"jim clark\" AND year = \"1962\"", "question": "Which circuit did Jim Clark win in 1962?", "context": "CREATE TABLE table_name_38 (circuit VARCHAR, winning_driver VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE competition = \"2011 lg cup\"", "question": "On what Date was the 2011 LG Cup Competittion?", "context": "CREATE TABLE table_name_46 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT pick FROM table_name_68 WHERE nba_years_[a_] = \"2\" AND previous_team = \"utah jazz\"", "question": "What is the pick for the player with 2 years in the NBA and who plays for the Utah Jazz?", "context": "CREATE TABLE table_name_68 (pick VARCHAR, previous_team VARCHAR, nba_years_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE high_points = \"carmelo anthony (26)\"", "question": "What was the final score for the game in which Carmelo Anthony (26) was the high points scorer?", "context": "CREATE TABLE table_name_78 (score VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT game FROM table_name_48 WHERE high_rebounds = \"chris andersen (12)\"", "question": "In which game number was Chris Andersen (12) the high rebounds scorer?", "context": "CREATE TABLE table_name_48 (game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE team = \"@ milwaukee\"", "question": "What was the final score for the game played against @ Milwaukee?", "context": "CREATE TABLE table_name_39 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_80 WHERE team = \"l.a. lakers\"", "question": "For the game played against the L.A. Lakers, where was the match played and what was the attendance level?", "context": "CREATE TABLE table_name_80 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT name FROM table_name_35 WHERE laps = 50 AND grid > 9 AND team = \"jim beam racing\" AND time_retired = \"+ 18.0s\"", "question": "What is Name, when Laps is \"50\", when Grid is greater than 9, when Team is \"Jim Beam Racing\", and when Time/Retired is \"+ 18.0s\"?", "context": "CREATE TABLE table_name_35 (name VARCHAR, time_retired VARCHAR, team VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_83 WHERE grid > 7 AND name = \"fabian coulthard\"", "question": "What is the lowest Laps, when Grid is greater than 7, and when Name is \"Fabian Coulthard\"?", "context": "CREATE TABLE table_name_83 (laps INTEGER, grid VARCHAR, name VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_65 WHERE laps < 49 AND name = \"michael caruso\"", "question": "What is Time/Retired, when Laps is less than 49, and when Name is \"Michael Caruso\"?", "context": "CREATE TABLE table_name_65 (time_retired VARCHAR, laps VARCHAR, name VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_16 WHERE team = \"team vodafone\" AND grid > 4", "question": "What is Time/Retired, when Team is \"Team Vodafone\", and when Grid is greater than 4?", "context": "CREATE TABLE table_name_16 (time_retired VARCHAR, team VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_75 WHERE artist = \"dav mcnamara\" AND place > 4", "question": "What is the draw number of the Artist Dav Mcnamara and a place bigger than 4?", "context": "CREATE TABLE table_name_75 (draw VARCHAR, artist VARCHAR, place VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_86 WHERE runs = \"144\"", "question": "What is the stadium name that has 144 as the runs?", "context": "CREATE TABLE table_name_86 (stadium VARCHAR, runs VARCHAR)"}, {"answer": "SELECT year FROM table_name_45 WHERE runs = \"100*\"", "question": "For what year was 100* runs happen?", "context": "CREATE TABLE table_name_45 (year VARCHAR, runs VARCHAR)"}, {"answer": "SELECT runs FROM table_name_18 WHERE year = \"2013\"", "question": "How many runs happened in 2013?", "context": "CREATE TABLE table_name_18 (runs VARCHAR, year VARCHAR)"}, {"answer": "SELECT runs FROM table_name_42 WHERE match = \"42\"", "question": "With 42 as the match what are the runs?", "context": "CREATE TABLE table_name_42 (runs VARCHAR, match VARCHAR)"}, {"answer": "SELECT match FROM table_name_8 WHERE year = \"2009\" AND runs = \"100*\"", "question": "In 2009 with 100* runs, what is the match?", "context": "CREATE TABLE table_name_8 (match VARCHAR, year VARCHAR, runs VARCHAR)"}, {"answer": "SELECT match FROM table_name_90 WHERE \"stadium\" = \"stadium\"", "question": "When the game was played in the stadium called stadium what was the match?", "context": "CREATE TABLE table_name_90 (match VARCHAR)"}, {"answer": "SELECT 2 AS nd_round FROM table_name_86 WHERE score = \"3 - 3\" AND team_1 = \"fc gueugnon (d2)\"", "question": "What is the 2nd round with a score of 3 - 3, and a team 1 fc gueugnon (d2)?", "context": "CREATE TABLE table_name_86 (score VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_round FROM table_name_60 WHERE score = \"3 - 3\" AND team_2 = \"fc lorient (d2)\"", "question": "What is the 2nd round with a score of 3 - 3, and a team 2 fc lorient (d2)?", "context": "CREATE TABLE table_name_60 (score VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_round FROM table_name_91 WHERE team_2 = \"paris sg (d1)\"", "question": "What is the 1st round with a team 2 paris sg (d1)?", "context": "CREATE TABLE table_name_91 (team_2 VARCHAR)"}, {"answer": "SELECT name FROM table_name_39 WHERE transfer_window = \"summer\" AND country = \"sen\"", "question": "WHAT IS THE NAME WITH A SUMMER TRANSFER WINDOW, AND COUNTRY SEN?", "context": "CREATE TABLE table_name_39 (name VARCHAR, transfer_window VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_48 WHERE name = \"kanu\"", "question": "WHAT IS THE COUNTRY WITH NAME OF KANU?", "context": "CREATE TABLE table_name_48 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_27 WHERE country = \"bel\"", "question": "WHAT IS THE MOVING TO LOCATION WITH BEL AS COUNTRY?", "context": "CREATE TABLE table_name_27 (moving_to VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_93 WHERE transfer_window = \"summer\"", "question": "WHAT IS THE COUNTRY WITH SUMMER TRANSFER WINDOW?", "context": "CREATE TABLE table_name_93 (country VARCHAR, transfer_window VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_12 WHERE country = \"bra\"", "question": "WHAT IS THE TRANSFER WINDOW FOR THE COUNTRY OF BRA?", "context": "CREATE TABLE table_name_12 (transfer_window VARCHAR, country VARCHAR)"}, {"answer": "SELECT opponent_number FROM table_name_78 WHERE attendance = \"63,659\"", "question": "What opponent had an attendance of 63,659?", "context": "CREATE TABLE table_name_78 (opponent_number VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_84 WHERE date = \"10/18/1947\"", "question": "What was the result of 10/18/1947?", "context": "CREATE TABLE table_name_84 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_75 WHERE date = \"10/04/1947\"", "question": "What was the result for 10/04/1947?", "context": "CREATE TABLE table_name_75 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_91 WHERE report = \"aiff\"", "question": "Which competition has a report of AIFF?", "context": "CREATE TABLE table_name_91 (competition VARCHAR, report VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE report = \"afc\" AND date = \"april 4, 2008\"", "question": "What is the score for a report of AFC on April 4, 2008?", "context": "CREATE TABLE table_name_18 (score VARCHAR, report VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_9 WHERE opponent = \"houston oilers\"", "question": "What was the attendance for the game against the Houston Oilers?", "context": "CREATE TABLE table_name_9 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_72 WHERE round = \"f\"", "question": "How many people attended round f?", "context": "CREATE TABLE table_name_72 (attendance VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_28 WHERE round = \"f\"", "question": "How many people on average attend round f?", "context": "CREATE TABLE table_name_28 (attendance INTEGER, round VARCHAR)"}, {"answer": "SELECT result FROM table_name_56 WHERE round = \"qf\"", "question": "What was the result in round qf?", "context": "CREATE TABLE table_name_56 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_2 WHERE home_team = \"blackpool\"", "question": "Who played Blackpool when Blackpool was at home?", "context": "CREATE TABLE table_name_2 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_2 WHERE away_team = \"arsenal\"", "question": "How many times did Arsenal tie when they were away?", "context": "CREATE TABLE table_name_2 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE away_team = \"blackpool\"", "question": "What was the score of the game when Blackpool was away?", "context": "CREATE TABLE table_name_77 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE time = \"1:02\"", "question": "What result had a time of 1:02?", "context": "CREATE TABLE table_name_14 (result VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_1 WHERE event = \"k-1 the challenge 1999\"", "question": "What time was the event k-1 the challenge 1999?", "context": "CREATE TABLE table_name_1 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_13 WHERE method = \"decision draw\" AND round < 5", "question": "Where was the decision draw before round 5?", "context": "CREATE TABLE table_name_13 (location VARCHAR, method VARCHAR, round VARCHAR)"}, {"answer": "SELECT career_win_loss FROM table_name_11 WHERE tournament = \"hamburg\"", "question": "What is Career Win-Loss, when Tournament is \"Hamburg\"?", "context": "CREATE TABLE table_name_11 (career_win_loss VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_20 WHERE 2003 = \"1r\" AND 2006 = \"a\"", "question": "What is 2004, when 2003 is \"1R\", and when 2006 is \"A\"?", "context": "CREATE TABLE table_name_20 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_89 WHERE 2000 = \"0 / 4\"", "question": "What is 2007, when 2000 is \"0 / 4\"?", "context": "CREATE TABLE table_name_89 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_37 WHERE 2003 = \"85\"", "question": "What is 2007, when 2003 is \"85\"?", "context": "CREATE TABLE table_name_37 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_36 WHERE 2007 = \"a\" AND 1997 = \"a\"", "question": "What is 2004, when 2007 is \"A\", and when 1997 is \"A\"?", "context": "CREATE TABLE table_name_36 (Id VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_30 WHERE 1996 = \"a\" AND 1997 = \"a\" AND 2007 = \"a\"", "question": "What is 2000, when 1996 is \"A\", when 1997 is \"A\", and when 2007 is \"A\"?", "context": "CREATE TABLE table_name_30 (Id VARCHAR)"}, {"answer": "SELECT award FROM table_name_43 WHERE category = \"cabello maluco\"", "question": "What is Award, when Category is Cabello Maluco?", "context": "CREATE TABLE table_name_43 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_51 WHERE nominated_work = \"eiza gonz\u00e1lez\" AND category = \"solista favorito\"", "question": "What is the total number of years in which Eiza Gonz\u00e1lez had a nominated work in the category of solista favorito?", "context": "CREATE TABLE table_name_51 (year INTEGER, nominated_work VARCHAR, category VARCHAR)"}, {"answer": "SELECT award FROM table_name_49 WHERE year < 2012 AND category = \"revelaci\u00f3n pop del a\u00f1o\"", "question": "Before the year 2012, what award was given to the artist in the category of revelaci\u00f3n pop del a\u00f1o?", "context": "CREATE TABLE table_name_49 (award VARCHAR, year VARCHAR, category VARCHAR)"}, {"answer": "SELECT method FROM table_name_10 WHERE record = \"1-1\"", "question": "what is the method when the record is 1-1?", "context": "CREATE TABLE table_name_10 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT event FROM table_name_9 WHERE opponent = \"yuji hisamatsu\"", "question": "what is the event when the opponent is yuji hisamatsu?", "context": "CREATE TABLE table_name_9 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_44 WHERE event = \"ufc 154\"", "question": "What is the time of ufc 154?", "context": "CREATE TABLE table_name_44 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_18 WHERE opponent = \"kevin manderson\"", "question": "What is the average round of the match with kevin manderson as the opponent?", "context": "CREATE TABLE table_name_18 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_47 WHERE date = \"january 19\"", "question": "What was the location attendance on January 19?", "context": "CREATE TABLE table_name_47 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_82 WHERE team = \"@ miami\"", "question": "What number game was it that the Spurs were @ Miami?", "context": "CREATE TABLE table_name_82 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_73 WHERE drawn = 1 AND played < 12", "question": "What is the total number of losses of the player that has drawn 1 and played smaller than 12?", "context": "CREATE TABLE table_name_73 (lost VARCHAR, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT surface FROM table_name_30 WHERE tournament = \"canada f9, markham\"", "question": "What type of surface did the tournament canada f9, markham have?", "context": "CREATE TABLE table_name_30 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE date = \"december 23\"", "question": "What is Score, when Date is December 23?", "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE team = \"@ kansas city-omaha kings\"", "question": "What is Score when Team is @ Kansas City-Omaha Kings?", "context": "CREATE TABLE table_name_35 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT position FROM table_name_14 WHERE overall < 64 AND round = 1", "question": "Which position has an Overall smaller than 64, and a Round of 1?", "context": "CREATE TABLE table_name_14 (position VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_34 WHERE pick < 5", "question": "Which average overall has a Pick smaller than 5?", "context": "CREATE TABLE table_name_34 (overall INTEGER, pick INTEGER)"}, {"answer": "SELECT MAX(overall) FROM table_name_31 WHERE college = \"idaho\" AND round < 1", "question": "Which highest overall has a College of idaho, and a Round smaller than 1?", "context": "CREATE TABLE table_name_31 (overall INTEGER, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_70 WHERE pick < 10 AND name = \"larry hendershot\"", "question": "How many rounds have a Pick smaller than 10, and a Name of larry hendershot?", "context": "CREATE TABLE table_name_70 (round VARCHAR, pick VARCHAR, name VARCHAR)"}, {"answer": "SELECT part_1 FROM table_name_99 WHERE part_2 = \"fraus\"", "question": "What is Part 1, when Part 2 is \"fraus\"?", "context": "CREATE TABLE table_name_99 (part_1 VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT part_3 FROM table_name_36 WHERE part_1 = \"frj\u00f3sa\"", "question": "What is Part 3, when Part 1 is \"frj\u00f3sa\"?", "context": "CREATE TABLE table_name_36 (part_3 VARCHAR, part_1 VARCHAR)"}, {"answer": "SELECT class FROM table_name_15 WHERE part_3 = \"bl\u00e9tu\"", "question": "What is Class, when Part 2 is \"bl\u00e9tu\"?", "context": "CREATE TABLE table_name_15 (class VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT part_4 FROM table_name_65 WHERE part_2 = \"hlj\u00f3p\"", "question": "What is Part 4, when Part 2 is \"hlj\u00f3p\"?", "context": "CREATE TABLE table_name_65 (part_4 VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT part_4 FROM table_name_51 WHERE part_2 = \"batt\"", "question": "What is Part 4, when Part 2 is \"batt\"?", "context": "CREATE TABLE table_name_51 (part_4 VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT part_1 FROM table_name_83 WHERE part_3 = \"heldu\"", "question": "What is Part 1, when Part 3 is \"heldu\"?", "context": "CREATE TABLE table_name_83 (part_1 VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_34 WHERE venue = \"win entertainment centre\"", "question": "What is the home team which plays at a venue called Win Entertainment Centre?", "context": "CREATE TABLE table_name_34 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_60 WHERE score = \"103-94\"", "question": "What away team had a 103-94 score?", "context": "CREATE TABLE table_name_60 (away_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_51 WHERE home_team = \"cairns taipans\"", "question": "When the home team is Cairns Taipans, at which venue do they play?", "context": "CREATE TABLE table_name_51 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT bird_uniform FROM table_name_8 WHERE eagle_riders = \"mickey dugan\"", "question": "What is the bird uniform for Eagle Rider Mickey Dugan?", "context": "CREATE TABLE table_name_8 (bird_uniform VARCHAR, eagle_riders VARCHAR)"}, {"answer": "SELECT japanese_voice_actor FROM table_name_25 WHERE eagle_riders = \"ollie keeawani\"", "question": "Who is the Japanese voice actor of Eagle Rider Ollie Keeawani?", "context": "CREATE TABLE table_name_25 (japanese_voice_actor VARCHAR, eagle_riders VARCHAR)"}, {"answer": "SELECT mecha FROM table_name_39 WHERE japanese_voice_actor = \"shingo kanemoto\"", "question": "What is the Mecha of the Japanese voice actor Shingo Kanemoto?", "context": "CREATE TABLE table_name_39 (mecha VARCHAR, japanese_voice_actor VARCHAR)"}, {"answer": "SELECT weapon FROM table_name_55 WHERE mecha = \"motorcycle\"", "question": "What is the weapon for the mecha of motorcycle?", "context": "CREATE TABLE table_name_55 (weapon VARCHAR, mecha VARCHAR)"}, {"answer": "SELECT bird_uniform FROM table_name_78 WHERE rank = \"g2\"", "question": "What is the bird uniform that is associated with the rank of G2?", "context": "CREATE TABLE table_name_78 (bird_uniform VARCHAR, rank VARCHAR)"}, {"answer": "SELECT team FROM table_name_29 WHERE score = \"103-96\"", "question": "Which team had a score of 103-96?", "context": "CREATE TABLE table_name_29 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_3 WHERE location_attendance = \"madison square garden\" AND score = \"109-99\"", "question": "What is the smallest game had a location of Madison Square Garden with a score of 109-99?", "context": "CREATE TABLE table_name_3 (game INTEGER, location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_25 WHERE 2006 = \"wta premier tournaments\"", "question": "What is the 2007 value for the 2006 wta premier tournaments?", "context": "CREATE TABLE table_name_25 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_12 WHERE 2010 = \"wta premier 5 tournaments\"", "question": "What is the 2007 value for the 2010 wta premier 5 tournaments?", "context": "CREATE TABLE table_name_12 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_55 WHERE 2005 = \"a\" AND 2008 = \"a\" AND 2009 = \"lq\"", "question": "What is the 2004 value with A in 2005, A in 2008, and lq in 2009?", "context": "CREATE TABLE table_name_55 (Id VARCHAR)"}, {"answer": "SELECT career_sr FROM table_name_21 WHERE tournament = \"wimbledon\"", "question": "What is the career SR for the tournament of wimbledon?", "context": "CREATE TABLE table_name_21 (career_sr VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE tie_no = \"12\"", "question": "What is the score for the Tie no. 12?", "context": "CREATE TABLE table_name_71 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_39 WHERE away_team = \"norwich city\"", "question": "What is the home team against the away team Norwich City?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_70 WHERE tie_no = \"12\"", "question": "Who is the home team with a tie no. 12?", "context": "CREATE TABLE table_name_70 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT player FROM table_name_1 WHERE pick = 219", "question": "WHAT IS THE PLAYER WITH A PICK OF 219?", "context": "CREATE TABLE table_name_1 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_97 WHERE round = 3", "question": "WHAT NATIONALITY HAS ROUND 3?", "context": "CREATE TABLE table_name_97 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE pick < 110 AND college = \"duke\"", "question": "WHAT PLAYER HAS A PICK SMALLER THAN 110, AND DUKE AS COLLEGE?", "context": "CREATE TABLE table_name_97 (player VARCHAR, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_75 WHERE years_with_spurs = \"2009-2012\"", "question": "WHAT POSITION HAD SPURS IN 2009-2012?", "context": "CREATE TABLE table_name_75 (position VARCHAR, years_with_spurs VARCHAR)"}, {"answer": "SELECT winner_and_score FROM table_name_7 WHERE week = \"august 10\"", "question": "Who won on the week of August 10?", "context": "CREATE TABLE table_name_7 (winner_and_score VARCHAR, week VARCHAR)"}, {"answer": "SELECT surface FROM table_name_20 WHERE week = \"august 10\"", "question": "What surface was played on during the week of August 10?", "context": "CREATE TABLE table_name_20 (surface VARCHAR, week VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_68 WHERE finalist = \"greg rusedski\"", "question": "What tournament had Greg Rusedski as a finalist?", "context": "CREATE TABLE table_name_68 (tournament VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT surface FROM table_name_71 WHERE week = \"march 16\"", "question": "What was the surface that was played on during the week of March 16?", "context": "CREATE TABLE table_name_71 (surface VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_5 WHERE driver = \"rubens barrichello\" AND grid < 12", "question": "what is the least laps when the driver is rubens barrichello and the grid is less than 12?", "context": "CREATE TABLE table_name_5 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_96 WHERE laps = 55", "question": "what is the time/retired when the laps is 55?", "context": "CREATE TABLE table_name_96 (time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT location FROM table_name_76 WHERE event = \"kage kombat 16\"", "question": "Where was the event Kage Kombat 16?", "context": "CREATE TABLE table_name_76 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_18 WHERE record = \"18\u20135 (1)\"", "question": "Which event had the record of 18\u20135 (1)?", "context": "CREATE TABLE table_name_18 (event VARCHAR, record VARCHAR)"}, {"answer": "SELECT grid FROM table_name_88 WHERE driver = \"menato boffa\"", "question": "What was Menato Boffa's grid?", "context": "CREATE TABLE table_name_88 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_80 WHERE driver = \"ludovico scarfiotti\"", "question": "What is the Time/Retired value for Ludovico Scarfiotti?", "context": "CREATE TABLE table_name_80 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_53 WHERE driver = \"albino buticchi\"", "question": "Who was Albino Buticchi's constructor?", "context": "CREATE TABLE table_name_53 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_72 WHERE entrant = \"rovero campello\"", "question": "Who was the driver for Rovero Campello?", "context": "CREATE TABLE table_name_72 (driver VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE player = \"jay haas\"", "question": "What is the score of player jay haas?", "context": "CREATE TABLE table_name_48 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_54 WHERE to_par = \"+3\" AND score = 72 - 68 - 71 - 72 = 283", "question": "Who is the player with a +3 to par and a 72-68-71-72=283 score?", "context": "CREATE TABLE table_name_54 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE score = 74 - 72 - 71 - 67 = 284", "question": "What country has a 74-72-71-67=284 score?", "context": "CREATE TABLE table_name_46 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(bike_no) FROM table_name_13 WHERE driver___passenger = \"joris hendrickx / kaspars liepins\" AND position < 4", "question": "What is the lowest Bike No, when Driver / Passenger is Joris Hendrickx / Kaspars Liepins, and when Position is less than 4?", "context": "CREATE TABLE table_name_13 (bike_no INTEGER, driver___passenger VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_16 WHERE bike_no > 8 AND points < 240", "question": "What is the average Position, when Bike No is greater than 8, and when Points is less than 240?", "context": "CREATE TABLE table_name_16 (position INTEGER, bike_no VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_6 WHERE bike_no > 10 AND driver___passenger = \"nicky pulinx / ondrej cermak\" AND points > 244", "question": "What is the lowest Postion, when Bike No is greater than 10, when Driver / Passenger is Nicky Pulinx / Ondrej Cermak, and when Points is greater than 244?", "context": "CREATE TABLE table_name_6 (position INTEGER, points VARCHAR, bike_no VARCHAR, driver___passenger VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_19 WHERE position < 4 AND equipment = \"zabel - vmc\" AND bike_no < 1", "question": "What is the highest Points, when Position is less than 4, when Equipment is Zabel - VMC, and when Bike No is less than 1?", "context": "CREATE TABLE table_name_19 (points INTEGER, bike_no VARCHAR, position VARCHAR, equipment VARCHAR)"}, {"answer": "SELECT AVG(bike_no) FROM table_name_34 WHERE driver___passenger = \"joris hendrickx / kaspars liepins\" AND position > 4", "question": "What is the average Bike No, when Driver / Passenger is Joris Hendrickx / Kaspars Liepins, and when Position is greater than 4?", "context": "CREATE TABLE table_name_34 (bike_no INTEGER, driver___passenger VARCHAR, position VARCHAR)"}, {"answer": "SELECT type FROM table_name_10 WHERE platform = \"gamecube\"", "question": "What is the type of electronic with the Gamecube Platform?", "context": "CREATE TABLE table_name_10 (type VARCHAR, platform VARCHAR)"}, {"answer": "SELECT surface FROM table_name_80 WHERE date = \"13 february 1994\"", "question": "On what type of surface did they play on 13 February 1994?", "context": "CREATE TABLE table_name_80 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_8 WHERE opponent_in_the_final = \"silke meier\"", "question": "In which tournament was Silke Meier the opponent in the final?", "context": "CREATE TABLE table_name_8 (tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE score = \"2\u20130\"", "question": "Which venue has a scoreof 2\u20130?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE team = \"indiana\"", "question": "WHAT IS THE SCORE WITH THE TEAM OF INDIANA?", "context": "CREATE TABLE table_name_75 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_8 WHERE location_attendance = \"target center 11,921\"", "question": "WHAT IS THE TEAM WITH ATTENDANCE AT TARGET CENTER 11,921?", "context": "CREATE TABLE table_name_8 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_15 WHERE date = \"10/29/1932\"", "question": "What was the attendance on 10/29/1932?", "context": "CREATE TABLE table_name_15 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_91 WHERE date = \"december 21, 1986\" AND week < 16", "question": "What was the Attendance on December 21, 1986 before Week 16?", "context": "CREATE TABLE table_name_91 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_13 WHERE attendance = 43 OFFSET 430", "question": "In what Week was the Attendance 43,430?", "context": "CREATE TABLE table_name_13 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_10 WHERE week > 11 AND date = \"december 14, 1986\"", "question": "What was the Result of the game on December 14, 1986 after Week 11?", "context": "CREATE TABLE table_name_10 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_51 WHERE series = \"1-1\"", "question": "What team did they play when the series was 1-1?", "context": "CREATE TABLE table_name_51 (team VARCHAR, series VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_4 WHERE date = \"may 12\"", "question": "What were the high points on May 12?", "context": "CREATE TABLE table_name_4 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_76 WHERE series = \"2-1\"", "question": "What was the team they played when the series was 2-1?", "context": "CREATE TABLE table_name_76 (team VARCHAR, series VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_23 WHERE date = \"february 8, 1990\"", "question": "who is the opponent on february 8, 1990?", "context": "CREATE TABLE table_name_23 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_3 WHERE streak = \"won 9\" AND date = \"april 13, 1990\"", "question": "who is the opponent when the streak is won 9 on april 13, 1990?", "context": "CREATE TABLE table_name_3 (opponent VARCHAR, streak VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(_number_of_prefectural_votes) FROM table_name_54 WHERE _number_of_seats_won > 69 AND leader = \"yasuhiro nakasone\"", "question": "What is the total number of # Of Prefectural Votes, when # Of Seats Won is greater than 69, and when Leader is Yasuhiro Nakasone?", "context": "CREATE TABLE table_name_54 (_number_of_prefectural_votes VARCHAR, _number_of_seats_won VARCHAR, leader VARCHAR)"}, {"answer": "SELECT AVG(_number_of_national_votes) FROM table_name_30 WHERE election < 1992 AND _percentage_of_prefectural_vote = \"39.5%\" AND leader = \"takeo fukuda\" AND _number_of_seats_won > 63", "question": "What is the average # Of National Votes, when the Election is before 1992, when the % Of Prefectural Vote is 39.5%, when Leader is Takeo Fukuda, and when # Of Seats Won is greater than 63?", "context": "CREATE TABLE table_name_30 (_number_of_national_votes INTEGER, _number_of_seats_won VARCHAR, leader VARCHAR, election VARCHAR, _percentage_of_prefectural_vote 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", "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 res FROM table_name_25 WHERE opponent = \"steve schneider\"", "question": "What was the resolution of the fight against steve schneider?", "context": "CREATE TABLE table_name_25 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT res FROM table_name_89 WHERE record = \"2-0\"", "question": "What was the resolution of the fight when matt grice had a record of 2-0?", "context": "CREATE TABLE table_name_89 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_36 WHERE time = \"5:00\" AND opponent = \"dennis bermudez\"", "question": "What was the record when matt grice fought dennis bermudez with a time of 5:00?", "context": "CREATE TABLE table_name_36 (record VARCHAR, time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_51 WHERE opponent = \"juan ignacio chela\"", "question": "What was the outcome of the match against Juan Ignacio Chela?", "context": "CREATE TABLE table_name_51 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT 250 AS _cc FROM table_name_89 WHERE year > 1984", "question": "What is the 250 cc with a year bigger than 1984?", "context": "CREATE TABLE table_name_89 (year INTEGER)"}, {"answer": "SELECT score FROM table_name_79 WHERE place = \"t9\" AND player = \"jerry barber\"", "question": "How much did Jerry Barber score to come in at T9?", "context": "CREATE TABLE table_name_79 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_92 WHERE country = \"united states\" AND player = \"jerry barber\"", "question": "What place did Jerry Barber of the United States come in at?", "context": "CREATE TABLE table_name_92 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE place = \"t6\" AND player = \"ed furgol\"", "question": "What score did Ed Furgol get to come in at T6?", "context": "CREATE TABLE table_name_7 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE place = \"t2\" AND player = \"ted kroll\"", "question": "What score did Ted Kroll get to come in at T2?", "context": "CREATE TABLE table_name_80 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_15 WHERE player = \"fred haas\"", "question": "Where is Fred Haas from?", "context": "CREATE TABLE table_name_15 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_93 WHERE player = \"fred haas\"", "question": "Where is Fred Haas from?", "context": "CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_34 WHERE school_club_team = \"mcmaster\"", "question": "What is Position, when School/Club Team is McMaster?", "context": "CREATE TABLE table_name_34 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_66 WHERE pick = \"9 (via hamilton)\"", "question": "What is the lowest Round, when Pick is 9 (via Hamilton)?", "context": "CREATE TABLE table_name_66 (round INTEGER, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_59 WHERE position = \"ol\" AND round < 6", "question": "What is Pick, when Position is OL, and when Round is less than 6?", "context": "CREATE TABLE table_name_59 (pick VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_38 WHERE pick = \"9 (via hamilton)\"", "question": "What is School/Club Team, when Pick is 9 (via Hamilton)?", "context": "CREATE TABLE table_name_38 (school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT result FROM table_name_53 WHERE attendance = \"55,353\"", "question": "What is the Result of the game with an Attendance of 55,353?", "context": "CREATE TABLE table_name_53 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_71 WHERE attendance = \"39,923\"", "question": "In what Week was the Attendance 39,923?", "context": "CREATE TABLE table_name_71 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_70 WHERE week > 9 AND attendance = \"69,714\"", "question": "What was the Result of the game after Week 9 with an Attendance of 69,714?", "context": "CREATE TABLE table_name_70 (result VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_49 WHERE date = \"september 4, 1994\"", "question": "What Week falls on September 4, 1994?", "context": "CREATE TABLE table_name_49 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT pos FROM table_name_33 WHERE player = \"nigel de jong\"", "question": "What is Pos., when Player is \"Nigel De Jong\"?", "context": "CREATE TABLE table_name_33 (pos VARCHAR, player VARCHAR)"}, {"answer": "SELECT from_club FROM table_name_80 WHERE player = \"robinho\"", "question": "What is From Club, when Player is \"Robinho\"?", "context": "CREATE TABLE table_name_80 (from_club VARCHAR, player VARCHAR)"}, {"answer": "SELECT pos FROM table_name_20 WHERE from_club = \"cska moscow\"", "question": "What is Pos., when From Club is \"CSKA Moscow\"?", "context": "CREATE TABLE table_name_20 (pos VARCHAR, from_club VARCHAR)"}, {"answer": "SELECT pos FROM table_name_66 WHERE from_club = \"chelsea\" AND date = \"30 july 2008\"", "question": "What is Pos., when From Club is \"Chelsea\", and when Date is \"30 July 2008\"?", "context": "CREATE TABLE table_name_66 (pos VARCHAR, from_club VARCHAR, date VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_34 WHERE team_1 = \"panathinaikos\"", "question": "What is the team 2 for the match with a team 1 of Panathinaikos?", "context": "CREATE TABLE table_name_34 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_59 WHERE team_1 = \"panathinaikos\"", "question": "What was the first leg score for the match with a team 1 of Panathinaikos?", "context": "CREATE TABLE table_name_59 (team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_48 WHERE team_2 = \"werder bremen\"", "question": "What is the 2nd leg score for the match with a team 2 of Werder Bremen?", "context": "CREATE TABLE table_name_48 (team_2 VARCHAR)"}, {"answer": "SELECT kitmaker FROM table_name_38 WHERE team = \"fc augsburg\"", "question": "Who is the kitmaker for Fc Augsburg?", "context": "CREATE TABLE table_name_38 (kitmaker VARCHAR, team VARCHAR)"}, {"answer": "SELECT head_coach FROM table_name_34 WHERE shirt_sponsor = \"karstadt quelle versicherungen\"", "question": "Who is the head coach of the team, whose shirt sponsor is karstadt quelle versicherungen?", "context": "CREATE TABLE table_name_34 (head_coach VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT kitmaker FROM table_name_84 WHERE head_coach = \"uwe rapolder\"", "question": "Who is the kitmaker for the team that Uwe Rapolder is the head coach of.", "context": "CREATE TABLE table_name_84 (kitmaker VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT team AS captain FROM table_name_88 WHERE shirt_sponsor = \"l\u00fcbzer\"", "question": "Who is the team captain of the team that L\u00fcbzer is the shirt sponsor for?", "context": "CREATE TABLE table_name_88 (team VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE game = 22", "question": "What was the date of the game number 22?", "context": "CREATE TABLE table_name_25 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT director FROM table_name_63 WHERE studio = \"paramount\" AND gross = \"$128,152,301\"", "question": "What is the Director from Paramount with a Film with a Gross of $128,152,301?", "context": "CREATE TABLE table_name_63 (director VARCHAR, studio VARCHAR, gross VARCHAR)"}, {"answer": "SELECT studio FROM table_name_98 WHERE rank = 10", "question": "What is the Studio of the Rank 10 Film?", "context": "CREATE TABLE table_name_98 (studio VARCHAR, rank VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_12 WHERE company = \"bbc audio\" AND writer = \"ford, phil phil ford\"", "question": "What is the release date of the album written by Ford, Phil Phil Ford under BBC Audio?", "context": "CREATE TABLE table_name_12 (release_date VARCHAR, company VARCHAR, writer VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_36 WHERE writer = \"goss, james james goss\" AND company = \"audiogo\"", "question": "What is the release date of the album written by Goss, James James Goss under Audiogo?", "context": "CREATE TABLE table_name_36 (release_date VARCHAR, writer VARCHAR, company VARCHAR)"}, {"answer": "SELECT company FROM table_name_76 WHERE release_date = \"2008-09-18 18 september 2008\"", "question": "Who is the company that released the album on 2008-09-18 18 September 2008?", "context": "CREATE TABLE table_name_76 (company VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT AVG(area_km_2) FROM table_name_46 WHERE official_name = \"notre-dame-de-lourdes\"", "question": "Notre-Dame-De-Lourdes has what average area km 2?", "context": "CREATE TABLE table_name_46 (area_km_2 INTEGER, official_name VARCHAR)"}, {"answer": "SELECT area_km_2 FROM table_name_73 WHERE official_name = \"saint-jacques\"", "question": "Saint-Jacques has what as the area km 2?", "context": "CREATE TABLE table_name_73 (area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT official_name FROM table_name_38 WHERE area_km_2 = 343.95", "question": "With an area km 2 of 343.95 what is the official name?", "context": "CREATE TABLE table_name_38 (official_name VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT status FROM table_name_32 WHERE official_name = \"saint-basile\"", "question": "Saint-Basile has what status?", "context": "CREATE TABLE table_name_32 (status VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_77 WHERE session = \"qualifying\"", "question": "What circuit has qualifying as the session?", "context": "CREATE TABLE table_name_77 (circuit VARCHAR, session VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_63 WHERE event = \"1997 japanese formula 3 championship\"", "question": "The 1997 Japanese Formula 3 Championship is part of what circuit?", "context": "CREATE TABLE table_name_63 (circuit VARCHAR, event VARCHAR)"}, {"answer": "SELECT session FROM table_name_84 WHERE event = \"fall nationals\"", "question": "The Fall Nationals has what sessions?", "context": "CREATE TABLE table_name_84 (session VARCHAR, event VARCHAR)"}, {"answer": "SELECT session FROM table_name_78 WHERE discipline = \"open wheel\" AND event = \"1977 japanese grand prix\"", "question": "The 1977 Japanese Grand Prix in the open wheel discipline has what session?", "context": "CREATE TABLE table_name_78 (session VARCHAR, discipline VARCHAR, event VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_42 WHERE session = \"race\" AND discipline = \"open wheel\" AND event = \"1977 japanese grand prix\"", "question": "What circuit has a race for the session, and open wheel as the discipline, and the 1977 Japanese Grand Prix as the event?", "context": "CREATE TABLE table_name_42 (circuit VARCHAR, event VARCHAR, session VARCHAR, discipline VARCHAR)"}, {"answer": "SELECT cause FROM table_name_91 WHERE discipline = \"touring car racing\"", "question": "For what cause is Touring Car Racing the discipline?", "context": "CREATE TABLE table_name_91 (cause VARCHAR, discipline VARCHAR)"}, {"answer": "SELECT player FROM table_name_39 WHERE score = 70 - 73 - 69 - 72 = 284", "question": "What player scored 70-73-69-72=284?", "context": "CREATE TABLE table_name_39 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(money___) AS $__ FROM table_name_64 WHERE player = \"craig stadler\"", "question": "What is the lowest amount of money that Craig Stadler won?", "context": "CREATE TABLE table_name_64 (money___ INTEGER, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_94 WHERE player = \"david graham\"", "question": "What country is David Graham from?", "context": "CREATE TABLE table_name_94 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS $__ FROM table_name_93 WHERE country = \"united states\" AND to_par = \"\u20132\"", "question": "What is the total amount of money that the United States one with a To par of \u20132?", "context": "CREATE TABLE table_name_93 (money___ VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE place = \"t6\" AND player = \"jack nicklaus\"", "question": "What score did Jack Nicklaus have when he placed t6?", "context": "CREATE TABLE table_name_92 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS $__ FROM table_name_14 WHERE to_par = \"e\"", "question": "How much money has a to par of E?", "context": "CREATE TABLE table_name_14 (money___ VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT location FROM table_name_29 WHERE date = \"october 16\"", "question": "What was the location on October 16?", "context": "CREATE TABLE table_name_29 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_53 WHERE year < 1935 AND result = \"56-0\"", "question": "Who was the winner when the result was 56-0 before 1935?", "context": "CREATE TABLE table_name_53 (winner VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT winner FROM table_name_31 WHERE location = \"philadelphia municipal stadium\" AND year = 1939", "question": "Who was the winner in philadelphia municipal stadium in 1939?", "context": "CREATE TABLE table_name_31 (winner VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_51 WHERE result = \"21-17\"", "question": "What was the earliest year that the result 21-17?", "context": "CREATE TABLE table_name_51 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT location FROM table_name_98 WHERE year > 1934 AND loser = \"philadelphia eagles\" AND date = \"october 15\"", "question": "What was the location after 1934 that Philadelphia Eagles lost on October 15?", "context": "CREATE TABLE table_name_98 (location VARCHAR, date VARCHAR, year VARCHAR, loser VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_96 WHERE romanized__hangul_ = \"chang myon (\uc7a5\uba74)\"", "question": "When did chang myon (\uc7a5\uba74) leave office?", "context": "CREATE TABLE table_name_96 (left_office VARCHAR, romanized__hangul_ VARCHAR)"}, {"answer": "SELECT took_office FROM table_name_53 WHERE vice > 6", "question": "When did the vice president with a vice over 6 take office?", "context": "CREATE TABLE table_name_53 (took_office VARCHAR, vice INTEGER)"}, {"answer": "SELECT province FROM table_name_9 WHERE districts < 11 AND region = \"tumbes\" AND ubigeo = 2401", "question": "What province in Tumbes has less than 11 districts and a UBIGEO of 2401?", "context": "CREATE TABLE table_name_9 (province VARCHAR, ubigeo VARCHAR, districts VARCHAR, region VARCHAR)"}, {"answer": "SELECT AVG(ubigeo) FROM table_name_34 WHERE province = \"chep\u00e9n\"", "question": "What is Chep\u00e9n's average UBIGEO?", "context": "CREATE TABLE table_name_34 (ubigeo INTEGER, province VARCHAR)"}, {"answer": "SELECT region FROM table_name_63 WHERE districts = 3 AND capital = \"chep\u00e9n\"", "question": "What is the region for Chep\u00e9n with 3 districts?", "context": "CREATE TABLE table_name_63 (region VARCHAR, districts VARCHAR, capital VARCHAR)"}, {"answer": "SELECT MAX(diameter__km_) FROM table_name_52 WHERE longitude = \"152.5e\" AND year_named < 1997", "question": "What is the Diameter (km) of the Valle with a Longitude of 152.5e named before 1997?", "context": "CREATE TABLE table_name_52 (diameter__km_ INTEGER, longitude VARCHAR, year_named VARCHAR)"}, {"answer": "SELECT MAX(year_named) FROM table_name_39 WHERE name = \"ganga valles\"", "question": "What is the Year named of the Ganga Valles?", "context": "CREATE TABLE table_name_39 (year_named INTEGER, name VARCHAR)"}, {"answer": "SELECT latitude FROM table_name_86 WHERE year_named > 1997 AND name = \"alajen vallis\"", "question": "What is the Latitude of the Alajen Vallis named after 1997?", "context": "CREATE TABLE table_name_86 (latitude VARCHAR, year_named VARCHAR, name VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_96 WHERE cat__number = \"par116\"", "question": "What is the release date with par116 as the cat. #?", "context": "CREATE TABLE table_name_96 (release_date VARCHAR, cat__number VARCHAR)"}, {"answer": "SELECT title FROM table_name_87 WHERE release_date = \"24 july 2005\"", "question": "What is the title released on 24 July 2005?", "context": "CREATE TABLE table_name_87 (title VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT record FROM table_name_2 WHERE high_points = \"thaddeus young (19)\" AND team = \"@ orlando\"", "question": "What is Record, when High Points is \"Thaddeus Young (19)\", and when Team is \"@ Orlando\"?", "context": "CREATE TABLE table_name_2 (record VARCHAR, high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_14 WHERE location_attendance = \"time warner cable arena 10,848\"", "question": "What is High Rebounds, when Location Attendance is \"Time Warner Cable Arena 10,848\"?", "context": "CREATE TABLE table_name_14 (high_rebounds VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_24 WHERE gains < 0", "question": "Can you tell me the lowest Losses that has the Gains smaller than 0?", "context": "CREATE TABLE table_name_24 (losses INTEGER, gains INTEGER)"}, {"answer": "SELECT record FROM table_name_23 WHERE high_rebounds = \"marc gasol (8)\"", "question": "what is the record when marc gasol (8) had the high rebounds?", "context": "CREATE TABLE table_name_23 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_name_40 WHERE date = \"march 8\"", "question": "what is the score on march 8?", "context": "CREATE TABLE table_name_40 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_78 WHERE date = \"march 30\"", "question": "who had the high assists on march 30?", "context": "CREATE TABLE table_name_78 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_43 WHERE capacity > 51 OFFSET 500", "question": "Which location has a capacity greater than 51,500?", "context": "CREATE TABLE table_name_43 (location VARCHAR, capacity INTEGER)"}, {"answer": "SELECT rider FROM table_name_30 WHERE laps < 30 AND manufacturer = \"yamaha\" AND time = \"accident\" AND grid > 3", "question": "Who was the rider who had less than 30 laps, ended in an accident with a car manufactured by yamaha on a grid larger than 3?", "context": "CREATE TABLE table_name_30 (rider VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_49 WHERE grid = 12", "question": "Who was the manufacturer for the race on grid 12?", "context": "CREATE TABLE table_name_49 (manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_86 WHERE laps < 9 AND rider = \"dani pedrosa\"", "question": "Who was the manufacturer for the car that dani pedrosa did less than 9 laps in?", "context": "CREATE TABLE table_name_86 (manufacturer VARCHAR, laps VARCHAR, rider VARCHAR)"}, {"answer": "SELECT laps FROM table_name_61 WHERE manufacturer = \"yamaha\" AND grid = 3", "question": "How many laps did the driver with the yamaha manufacturer go on grid 3?", "context": "CREATE TABLE table_name_61 (laps VARCHAR, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time FROM table_name_9 WHERE city = \"baltimore\"", "question": "What is the time in Baltimore?", "context": "CREATE TABLE table_name_9 (time VARCHAR, city VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE score = \"1-8\"", "question": "What date was the score 1-8?", "context": "CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT event FROM table_name_12 WHERE opponent = \"chris barden\"", "question": "What is the event where the opponent was Chris Barden?", "context": "CREATE TABLE table_name_12 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_26 WHERE tournament = \"napoli\"", "question": "What is the Surface of the Court in Napoli?", "context": "CREATE TABLE table_name_26 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_45 WHERE score = \"6\u20134, 6\u20134\"", "question": "What is the Outcome of the game with a Score of 6\u20134, 6\u20134?", "context": "CREATE TABLE table_name_45 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_55 WHERE opponent = \"frederic jeanclaude\"", "question": "What is the Outcome of the game against Frederic Jeanclaude?", "context": "CREATE TABLE table_name_55 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_66 WHERE score = \"6\u20132, 6\u20132\"", "question": "What is the Opponent in a game with a Score of 6\u20132, 6\u20132?", "context": "CREATE TABLE table_name_66 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_61 WHERE opponent = \"ivo klec\" AND score = \"6\u20133, 6\u20133\"", "question": "What is the Surface of the court against Ivo Klec with a Score of 6\u20133, 6\u20133?", "context": "CREATE TABLE table_name_61 (surface VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_37 WHERE score = 70 - 69 = 139", "question": "Who was the player with a score of 70-69=139?", "context": "CREATE TABLE table_name_37 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_37 WHERE score = 69 - 70 = 139 AND player = \"bart bryant\"", "question": "What country did Bart Bryant with a score of 69-70=139 belong to?", "context": "CREATE TABLE table_name_37 (country VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_43 WHERE score = 70 - 69 = 139", "question": "What is the country that the player with a score of 70-69=139 from?", "context": "CREATE TABLE table_name_43 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_98 WHERE score = 66 - 67 = 133", "question": "In what place did the player with a score of 66-67=133 come in?", "context": "CREATE TABLE table_name_98 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_81 WHERE place = \"t3\" AND score = 70 - 68 = 138", "question": "What country was the player from who placed t3 with a score of 70-68=138?", "context": "CREATE TABLE table_name_81 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE country = \"scotland\"", "question": "What was the score for the player from Scotland?", "context": "CREATE TABLE table_name_76 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_86 WHERE date = \"november 11, 1962\"", "question": "What week had a game that was played on November 11, 1962?", "context": "CREATE TABLE table_name_86 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT author FROM table_name_49 WHERE title = \"bludgeoning angel dokuro-chan\"", "question": "Who is the author of Bludgeoning Angel Dokuro-Chan?", "context": "CREATE TABLE table_name_49 (author VARCHAR, title VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_24 WHERE outgoing_manager = \"miguel brindisi\"", "question": "What was the manner of departure for the outgoing manager, miguel brindisi?", "context": "CREATE TABLE table_name_24 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_28 WHERE team = \"necaxa\"", "question": "Who was the outgoing manager for the team, necaxa?", "context": "CREATE TABLE table_name_28 (outgoing_manager VARCHAR, team VARCHAR)"}, {"answer": "SELECT winner FROM table_name_31 WHERE finalist = \"fsv frankfurt\"", "question": "Who was the winner when the finalist was fsv frankfurt?", "context": "CREATE TABLE table_name_31 (winner VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_83 WHERE winner = \"first vienna fc\"", "question": "Who was the finalist when the winner was First Vienna FC?", "context": "CREATE TABLE table_name_83 (finalist VARCHAR, winner VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_93 WHERE replaced_by = \"wolfgang frank\"", "question": "How did the manager replaced by Wolfgang Frank depart?", "context": "CREATE TABLE table_name_93 (manner_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_11 WHERE date_of_vacancy = \"3 march 2009\"", "question": "Who was hired to fill the spot that became vacant on 3 March 2009?", "context": "CREATE TABLE table_name_11 (replaced_by VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_74 WHERE date_of_appointment = \"13 may 2009\"", "question": "What is the name of the person that was appointed on 13 May 2009?", "context": "CREATE TABLE table_name_74 (replaced_by VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_56 WHERE replaced_by = \"michael oenning\"", "question": "How did the manager replaced by Michael Oenning depart?", "context": "CREATE TABLE table_name_56 (manner_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_62 WHERE replaced_by = \"michael oenning\"", "question": "What is the name of the manager that was replaced by Michael Oenning?", "context": "CREATE TABLE table_name_62 (outgoing_manager VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_24 WHERE game = \"game 1\"", "question": "Which Home Team has a Game of game 1?", "context": "CREATE TABLE table_name_24 (home_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_80 WHERE home_team = \"san francisco\" AND date = \"april 22\"", "question": "Which Game has a Home Team of san francisco, and a Date of april 22?", "context": "CREATE TABLE table_name_80 (game VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_91 WHERE home_team = \"boston\" AND result = \"124-101\"", "question": "Which Road Team has a Home Team of boston, and a Result of 124-101?", "context": "CREATE TABLE table_name_91 (road_team VARCHAR, home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT game FROM table_name_22 WHERE home_team = \"san francisco\" AND date = \"april 22\"", "question": "Which Game has a Home Team of san francisco, and a Date of april 22?", "context": "CREATE TABLE table_name_22 (game VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_77 WHERE road_team = \"san francisco\" AND game = \"game 2\"", "question": "Which Result has a Road Team of san francisco, and a Game of game 2?", "context": "CREATE TABLE table_name_77 (result VARCHAR, road_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_10 WHERE result = \"124-101\"", "question": "Which Home Team has a Result of 124-101?", "context": "CREATE TABLE table_name_10 (home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_16 WHERE result = \"l 24-20\" AND week < 5", "question": "What is the total attendance in a week less than 5 when the result was l 24-20?", "context": "CREATE TABLE table_name_16 (attendance VARCHAR, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_90 WHERE opponent = \"atlanta falcons\"", "question": "What is the largest week with the Atlanta Falcons as the opponent?", "context": "CREATE TABLE table_name_90 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_92 WHERE week > 1 AND opponent = \"philadelphia eagles\"", "question": "What is the total attendance in a week greater than 1 with an opponent of Philadelphia Eagles?", "context": "CREATE TABLE table_name_92 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE opponent = \"washington capitals\" AND record = \"24-34-17\"", "question": "Which Score has an Opponent of washington capitals, and a Record of 24-34-17?", "context": "CREATE TABLE table_name_7 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(joined) FROM table_name_61 WHERE nickname = \"knights\" AND enrollment > 2 OFFSET 960", "question": "Which Joined has a Nickname of knights, and an Enrollment larger than 2,960?", "context": "CREATE TABLE table_name_61 (joined INTEGER, nickname VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_37 WHERE enrollment < 501 AND location = \"clarkesville\"", "question": "Which Nickname has an Enrollment smaller than 501, and a Location of clarkesville?", "context": "CREATE TABLE table_name_37 (nickname VARCHAR, enrollment VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(joined) FROM table_name_96 WHERE institution = \"abraham baldwin agricultural college\" AND enrollment < 3 OFFSET 284", "question": "Which Joined has an Institution of abraham baldwin agricultural college, and an Enrollment smaller than 3,284?", "context": "CREATE TABLE table_name_96 (joined INTEGER, institution VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_65 WHERE ground = \"optus oval\" AND away_team = \"fremantle\"", "question": "What is Away Team Score, when Ground is Optus Oval, and when Away Team is Fremantle?", "context": "CREATE TABLE table_name_65 (away_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_19 WHERE ground = \"colonial stadium\"", "question": "What is Away Team, when Ground is Colonial Stadium?", "context": "CREATE TABLE table_name_19 (away_team VARCHAR, ground VARCHAR)"}, {"answer": "SELECT place FROM table_name_11 WHERE score = 71 - 71 = 142", "question": "A score of 71-71=142 earned what place?", "context": "CREATE TABLE table_name_11 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_68 WHERE player = \"jos\u00e9 mar\u00eda olaz\u00e1bal\"", "question": "What was Jos\u00e9 Mar\u00eda Olaz\u00e1bal's score?", "context": "CREATE TABLE table_name_68 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_66 WHERE date = \"october 15, 1967\"", "question": "What team was the opponent on October 15, 1967?", "context": "CREATE TABLE table_name_66 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_31 WHERE opponent = \"green bay packers\"", "question": "What was the lowest attendance when the Green Bay Packers played?", "context": "CREATE TABLE table_name_31 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_15 WHERE date = \"november 19, 1967\"", "question": "What was the week number when a game was played on November 19, 1967?", "context": "CREATE TABLE table_name_15 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_31 WHERE grid > 8 AND points < 4", "question": "If a team has a grid of over 8 with less than 4 points, what's the team name?", "context": "CREATE TABLE table_name_31 (team VARCHAR, grid VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_name_43 WHERE laps = 90 AND points < 19 AND driver = \"patrick carpentier\"", "question": "When Patrick Carpentier is driving and has less than 19 points with 90 laps, what team is racing?", "context": "CREATE TABLE table_name_43 (team VARCHAR, driver VARCHAR, laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT score FROM table_name_34 WHERE total_points = 50", "question": "What was the score where the total points was 50?", "context": "CREATE TABLE table_name_34 (score VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT MIN(total_points) FROM table_name_73 WHERE details = \"2001 nrl grand final\"", "question": "For the match that had detail of 2001 nrl grand final, what was the lowest total points?", "context": "CREATE TABLE table_name_73 (total_points INTEGER, details VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_7 WHERE high_points = \"wilson chandler (16)\"", "question": "Which average Game has a High points of wilson chandler (16)?", "context": "CREATE TABLE table_name_7 (game INTEGER, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE game > 76 AND location_attendance = \"madison square garden 19,763\" AND high_rebounds = \"wilson chandler (8)\"", "question": "Which Score has a Game larger than 76, a Location Attendance of madison square garden 19,763, and a High rebounds of wilson chandler (8)?", "context": "CREATE TABLE table_name_71 (score VARCHAR, high_rebounds VARCHAR, game VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_name_24 WHERE record = \"32\u201350\"", "question": "Which Team has a Record of 32\u201350?", "context": "CREATE TABLE table_name_24 (team VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE record = \"29\u201347\"", "question": "Which Date has a Record of 29\u201347?", "context": "CREATE TABLE table_name_4 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE location_attendance = \"madison square garden 19,763\" AND high_rebounds = \"david lee (12)\"", "question": "Which Date has a Location Attendance of madison square garden 19,763, and a High rebounds of david lee (12)?", "context": "CREATE TABLE table_name_99 (date VARCHAR, location_attendance VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT record FROM table_name_3 WHERE score = \"w 107\u2013102 (ot)\"", "question": "Which Record has a Score of w 107\u2013102 (ot)?", "context": "CREATE TABLE table_name_3 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_4 WHERE location_attendance = \"fedexforum 11,731\"", "question": "Which Team has a Location Attendance of fedexforum 11,731?", "context": "CREATE TABLE table_name_4 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_88 WHERE score = \"l 97\u201399 (ot)\"", "question": "Which Record has a Score of l 97\u201399 (ot)?", "context": "CREATE TABLE table_name_88 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_11 WHERE game = 34", "question": "What is game 34's record?", "context": "CREATE TABLE table_name_11 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_61 WHERE date = \"january 2\"", "question": "What were the high assist on january 2?", "context": "CREATE TABLE table_name_61 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT director FROM table_name_5 WHERE film_title_used_in_nomination = \"floating life\"", "question": "Who was the director that had a film titled \"Floating Life\"?", "context": "CREATE TABLE table_name_5 (director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_60 WHERE position > 5 AND points = 11 AND drawn < 1", "question": "Can you tell me the total number of Played that has the Position larger than 5, and the Points of 11, and the Drawn smaller than 1?", "context": "CREATE TABLE table_name_60 (played VARCHAR, drawn VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_36 WHERE points > 11 AND lost > 7", "question": "Can you tell me the highest Played that has the Points larger than 11, and the Lost larger than 7?", "context": "CREATE TABLE table_name_36 (played INTEGER, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE player = \"dave hill\"", "question": "What was Dave Hill's score?", "context": "CREATE TABLE table_name_85 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_73 WHERE country = \"united states\" AND player = \"al mengert\"", "question": "What is the to par of Al Mengert of the United States?", "context": "CREATE TABLE table_name_73 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE country = \"united states\" AND place = \"t5\"", "question": "What is the score of T5 place in the United States?", "context": "CREATE TABLE table_name_67 (score VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT player FROM table_name_1 WHERE country = \"united states\" AND place = \"t10\" AND score = 67 - 77 = 144", "question": "Who was the player from the United States in T10 place with a score of 67-77=144?", "context": "CREATE TABLE table_name_1 (player VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_51 WHERE player = \"billy casper\"", "question": "What was Billy Casper's to par?", "context": "CREATE TABLE table_name_51 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_42 WHERE played < 5", "question": "What is the sum of Wins, when Played is less than 5?", "context": "CREATE TABLE table_name_42 (wins INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(wins) FROM table_name_75 WHERE rank > 2 AND played < 5", "question": "What is the highest Wins, when Rank is greater than 2, and when Played is less than 5?", "context": "CREATE TABLE table_name_75 (wins INTEGER, rank VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_79 WHERE team = \"sweden\" AND played < 5", "question": "What is the sum of Wins, when Team is Sweden, and when Played is less than 5?", "context": "CREATE TABLE table_name_79 (wins INTEGER, team VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_30 WHERE played > 5", "question": "What is the highest Points, when Played is greater than 5?", "context": "CREATE TABLE table_name_30 (points INTEGER, played INTEGER)"}, {"answer": "SELECT AVG(ties) FROM table_name_68 WHERE played > 5", "question": "What is the average Ties, when Played is greater than 5?", "context": "CREATE TABLE table_name_68 (ties INTEGER, played INTEGER)"}, {"answer": "SELECT date FROM table_name_71 WHERE runner_s__up = \"oliver wilson\"", "question": "What is Date, when Runner(s)-Up is Oliver Wilson?", "context": "CREATE TABLE table_name_71 (date VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_1 WHERE margin_of_victory = \"4 strokes\"", "question": "What is Date, when Margin Of Victory is 4 Strokes?", "context": "CREATE TABLE table_name_1 (date VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_47 WHERE date = \"21 jan 2007\"", "question": "What is Runner(s)-up, when Date is 21 Jan 2007?", "context": "CREATE TABLE table_name_47 (runner_s__up VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_5 WHERE margin_of_victory = \"1 stroke\" AND date = \"18 jan 2009\"", "question": "What is Tournament, when Margin Of Victory is 1 Stroke, and when Date is 18 Jan 2009?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT us_senate FROM table_name_80 WHERE year > 2002 AND party = \"working families\"", "question": "what is the U.S. senate when the year is after 2002 and the party is working families?", "context": "CREATE TABLE table_name_80 (us_senate VARCHAR, year VARCHAR, party VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_78 WHERE comptroller = \"alan hevesi\" AND party = \"working families\"", "question": "How many times what the comptroller alan hevesi and the party working families?", "context": "CREATE TABLE table_name_78 (year VARCHAR, comptroller VARCHAR, party VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_79 WHERE location_attendance = \"conseco fieldhouse 7,134\"", "question": "What is the highest number of points of the game in Conseco fieldhouse 7,134?", "context": "CREATE TABLE table_name_79 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_53 WHERE record = \"6-14\"", "question": "What is the highest number of rebounds of the game with a 6-14 record?", "context": "CREATE TABLE table_name_53 (high_rebounds VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_21 WHERE visitor = \"pittsburgh\" AND points < 27 AND home = \"boston\"", "question": "Can you tell me the Record that has the Visitor of pittsburgh, and the Points smaller than 27, and the Home of boston?", "context": "CREATE TABLE table_name_21 (record VARCHAR, home VARCHAR, visitor VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_42 WHERE attendance = 3 OFFSET 806", "question": "Can you tell me the average Points that has the Attendance of 3,806?", "context": "CREATE TABLE table_name_42 (points INTEGER, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_69 WHERE attendance = \"38,642\"", "question": "Which opponent had 38,642 attendance?", "context": "CREATE TABLE table_name_69 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE attendance = \"51,265\"", "question": "What date had 51,265 attendance?", "context": "CREATE TABLE table_name_84 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE place = \"7th\"", "question": "When 7th place, what is the date?", "context": "CREATE TABLE table_name_45 (date VARCHAR, place VARCHAR)"}, {"answer": "SELECT score FROM table_name_3 WHERE game = 34", "question": "What is the score of game 34?", "context": "CREATE TABLE table_name_3 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_97 WHERE game = 33", "question": "What is the record of game 33?", "context": "CREATE TABLE table_name_97 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT country FROM table_name_64 WHERE place = \"t4\" AND player = \"scott simpson\"", "question": "What is the Country, when Place is \"T4\", and when Player is \"Scott Simpson\"?", "context": "CREATE TABLE table_name_64 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_98 WHERE score = 70 AND player = \"craig stadler\"", "question": "What is To Par, when Score is 70, and when Player is \"Craig Stadler\"?", "context": "CREATE TABLE table_name_98 (to_par VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_70 WHERE score < 69 AND country = \"united states\"", "question": "What is Player, when Score is less than 69, and when Country is \"United States\"?", "context": "CREATE TABLE table_name_70 (player VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT writer FROM table_name_89 WHERE producer = \"phil collinson\" AND director = \"alice troughton\"", "question": "Who was the writer that the director was Alice Troughton and the producer was Phil Collinson?", "context": "CREATE TABLE table_name_89 (writer VARCHAR, producer VARCHAR, director VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_99 WHERE game > 2 AND team = \"new orleans\"", "question": "What is the location and attendance after game 2, and the team New Orleans?", "context": "CREATE TABLE table_name_99 (location_attendance VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT teleplay FROM table_name_37 WHERE season > 1.1 AND first_broadcast = \"february 20, 1981\"", "question": "What is Teleplay, when Season is greater than 1.1, and when First Broadcast is \"February 20, 1981\"?", "context": "CREATE TABLE table_name_37 (teleplay VARCHAR, season VARCHAR, first_broadcast VARCHAR)"}, {"answer": "SELECT title FROM table_name_2 WHERE season < 1.8 AND first_broadcast = \"march 6, 1981\"", "question": "What is Title, when Season is less than 1.8, and when First Broadcast is March 6, 1981?", "context": "CREATE TABLE table_name_2 (title VARCHAR, season VARCHAR, first_broadcast VARCHAR)"}, {"answer": "SELECT director FROM table_name_11 WHERE season = 1.4", "question": "What is Director, when Season is 1.4?", "context": "CREATE TABLE table_name_11 (director VARCHAR, season VARCHAR)"}, {"answer": "SELECT teleplay FROM table_name_24 WHERE director = \"george mccowan\" AND season < 1.1400000000000001 AND first_broadcast = \"april 3, 1981\"", "question": "What is Teleplay, when Director is \"George McCowan\", when Season is less than 1.1400000000000001, and when First Broadcast is April 3, 1981?", "context": "CREATE TABLE table_name_24 (teleplay VARCHAR, first_broadcast VARCHAR, director VARCHAR, season VARCHAR)"}, {"answer": "SELECT AVG(season) FROM table_name_14 WHERE first_broadcast = \"january 23, 1981\"", "question": "What is the average Season, when First Broadcast is January 23, 1981?", "context": "CREATE TABLE table_name_14 (season INTEGER, first_broadcast VARCHAR)"}, {"answer": "SELECT teleplay FROM table_name_57 WHERE first_broadcast = \"april 10, 1981\"", "question": "What is Teleplay, when First Broadcast is April 10, 1981?", "context": "CREATE TABLE table_name_57 (teleplay VARCHAR, first_broadcast VARCHAR)"}, {"answer": "SELECT h___a FROM table_name_25 WHERE opponents = \"bohemians\"", "question": "What the H/A when the opponent is the Bohemians?", "context": "CREATE TABLE table_name_25 (h___a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_7 WHERE opponents = \"cork city\"", "question": "What is the attendance when Cork City is the opponent?", "context": "CREATE TABLE table_name_7 (attendance INTEGER, opponents VARCHAR)"}, {"answer": "SELECT h___a FROM table_name_53 WHERE opponents = \"cork city\"", "question": "What is the H/A when Cork City is the opponent?", "context": "CREATE TABLE table_name_53 (h___a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT h___a FROM table_name_46 WHERE date = \"5 august 1990\"", "question": "What is the H/A on 5 August 1990?", "context": "CREATE TABLE table_name_46 (h___a VARCHAR, date VARCHAR)"}, {"answer": "SELECT result_f___a FROM table_name_70 WHERE date = \"5 august 1990\"", "question": "What is the result F-A on 5 August 1990?", "context": "CREATE TABLE table_name_70 (result_f___a VARCHAR, date VARCHAR)"}, {"answer": "SELECT internal_floppy_disk FROM table_name_19 WHERE s_100_slots > 8 AND year_introduced < 1978", "question": "What is the value for internal floppy disk with s-100 slots greater than 8 introduced earlier than 1978?", "context": "CREATE TABLE table_name_19 (internal_floppy_disk VARCHAR, s_100_slots VARCHAR, year_introduced VARCHAR)"}, {"answer": "SELECT system FROM table_name_47 WHERE s_100_slots < 21 AND year_introduced < 1981 AND internal_hard_disk = \"11 megabytes\"", "question": "Which system introduced earlier than 1981 has an internal hard disk of 11 megabytes and less than 21 s-100 slots?", "context": "CREATE TABLE table_name_47 (system VARCHAR, internal_hard_disk VARCHAR, s_100_slots VARCHAR, year_introduced VARCHAR)"}, {"answer": "SELECT college FROM table_name_45 WHERE player = \"marcus wilson\"", "question": "What college did Marcus Wilson attend?", "context": "CREATE TABLE table_name_45 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_76 WHERE pick__number < 304 AND college = \"notre dame\"", "question": "Who is the player that attended Notre Dame with a pick smaller than 304?", "context": "CREATE TABLE table_name_76 (player VARCHAR, pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_93 WHERE player = \"leon perry\"", "question": "What college did Leon Perry attend?", "context": "CREATE TABLE table_name_93 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_name_62 WHERE position = \"tight end\"", "question": "What NFL team did the Tight End position belong to?", "context": "CREATE TABLE table_name_62 (nfl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_49 WHERE opponent = \"san diego chargers\"", "question": "What is the total number of weeks that the buffalo bills played against the San Diego Chargers?", "context": "CREATE TABLE table_name_49 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_76 WHERE date = \"bye\"", "question": "What is the attendance of the game that had a date listed as Bye?", "context": "CREATE TABLE table_name_76 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_48 WHERE attendance = \"41,384\"", "question": "How many weeks were there games with 41,384 fans in attendance?", "context": "CREATE TABLE table_name_48 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_97 WHERE date = \"december 3, 1967\"", "question": "What is the lowest week number that had a game on December 3, 1967?", "context": "CREATE TABLE table_name_97 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_79 WHERE attendance = \"20,627\"", "question": "What was the result of the game that had 20,627 fans in attendance?", "context": "CREATE TABLE table_name_79 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT rider FROM table_name_86 WHERE laps = \"22\" AND time_retired = \"+19.435\"", "question": "Who is the rider with 22 laps and a +19.435 time/retired?", "context": "CREATE TABLE table_name_86 (rider VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT grid FROM table_name_65 WHERE manufacturer = \"yamaha\" AND time_retired = \"+19.435\"", "question": "What is the grid with a yamaha manufacturer and a +19.435 time/retired?", "context": "CREATE TABLE table_name_65 (grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT grid FROM table_name_28 WHERE rider = \"shinya nakano\"", "question": "What is the grid of rider shinya nakano?", "context": "CREATE TABLE table_name_28 (grid VARCHAR, rider VARCHAR)"}, {"answer": "SELECT rider FROM table_name_70 WHERE laps = \"22\" AND time_retired = \"+1:44.775\"", "question": "Who is the rider with 22 laps and a +1:44.775 time/retired?", "context": "CREATE TABLE table_name_70 (rider VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_13 WHERE grid = \"14\"", "question": "What is the manufacturer with a 14 grid?", "context": "CREATE TABLE table_name_13 (manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_21 WHERE manufacturer = \"yamaha\" AND grid = \"17\"", "question": "Who is the rider with a yamaha manufacturer and a 17 grid?", "context": "CREATE TABLE table_name_21 (rider VARCHAR, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_14 WHERE venue = \"h\" AND opponent = \"auxerre\"", "question": "What is the total of attendance at Venue h when Auxerre were playing?", "context": "CREATE TABLE table_name_14 (attendance INTEGER, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT vehicle FROM table_name_34 WHERE ceased_operation = \"failed at launch\"", "question": "Which vehicle failed at launch?", "context": "CREATE TABLE table_name_34 (vehicle VARCHAR, ceased_operation VARCHAR)"}, {"answer": "SELECT notes FROM table_name_82 WHERE vehicle = \"scout x-4\" AND ceased_operation = \"june 1971\"", "question": "What are the notes regarding the scout x-4 vehicle which ceased operation in June 1971?", "context": "CREATE TABLE table_name_82 (notes VARCHAR, vehicle VARCHAR, ceased_operation VARCHAR)"}, {"answer": "SELECT ceased_operation FROM table_name_86 WHERE launched = \"august 8, 1968\"", "question": "What was the ceased operation with a launch date of August 8, 1968?", "context": "CREATE TABLE table_name_86 (ceased_operation VARCHAR, launched VARCHAR)"}, {"answer": "SELECT ceased_operation FROM table_name_5 WHERE launched = \"june 29, 1961\"", "question": "What was the ceased operation that launched June 29, 1961?", "context": "CREATE TABLE table_name_5 (ceased_operation VARCHAR, launched VARCHAR)"}, {"answer": "SELECT place FROM table_name_10 WHERE country = \"united states\" AND score = 67 - 75 - 68 = 210", "question": "What place in the United States having a score of 67-75-68=210?", "context": "CREATE TABLE table_name_10 (place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE place = \"t4\" AND score = 66 - 71 - 72 = 209", "question": "What country is in T4 place having a score of 66-71-72=209?", "context": "CREATE TABLE table_name_46 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_8 WHERE country = \"united states\" AND score = 68 - 73 - 68 = 209", "question": "What place is the United States in that has a score of 68-73-68=209?", "context": "CREATE TABLE table_name_8 (place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_77 WHERE country = \"united states\" AND place = \"t4\" AND score = 68 - 73 - 68 = 209", "question": "Who is the player from the United States in T4 place with a score of 68-73-68=209?", "context": "CREATE TABLE table_name_77 (player VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_85 WHERE lost > 17 AND drawn = 15 AND goals_against < 75", "question": "How many played when lost is more than 17, drawn is 15 and goals against is less than 75?", "context": "CREATE TABLE table_name_85 (played INTEGER, goals_against VARCHAR, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_88 WHERE lost < 14 AND goal_difference = \"+1\" AND drawn > 15", "question": "what is the position when lot is less than 14, goal difference is +1 and drawn is more than 15?", "context": "CREATE TABLE table_name_88 (position INTEGER, drawn VARCHAR, lost VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_31 WHERE goals_for = 43 AND position > 15", "question": "How many lost when goals for is 43 and the position number is higher than 15?", "context": "CREATE TABLE table_name_31 (lost INTEGER, goals_for VARCHAR, position VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE team = \"charlotte\"", "question": "What was the score of the game against Charlotte?", "context": "CREATE TABLE table_name_42 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_13 WHERE team = \"memphis\"", "question": "Who had the high assists in the game against Memphis?", "context": "CREATE TABLE table_name_13 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_89 WHERE road_team = \"boston\" AND game = \"game 4\"", "question": "Who was the home team when Boston is the road team in game 4?", "context": "CREATE TABLE table_name_89 (home_team VARCHAR, road_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_98 WHERE result = \"112-100\"", "question": "What game had the result of 112-100?", "context": "CREATE TABLE table_name_98 (game VARCHAR, result VARCHAR)"}, {"answer": "SELECT game FROM table_name_1 WHERE date = \"may 29\"", "question": "What game was played on May 29?", "context": "CREATE TABLE table_name_1 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE game = \"game 1\"", "question": "What was the result of game 1?", "context": "CREATE TABLE table_name_26 (result VARCHAR, game VARCHAR)"}, {"answer": "SELECT game FROM table_name_49 WHERE home_team = \"houston\" AND result = \"106-104\"", "question": "What was the game when Houston was the home team and the result is 106-104?", "context": "CREATE TABLE table_name_49 (game VARCHAR, home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_49 WHERE laps = 71", "question": "How many years was the number of laps 71?", "context": "CREATE TABLE table_name_49 (year VARCHAR, laps VARCHAR)"}, {"answer": "SELECT class AS pos FROM table_name_53 WHERE year > 2002", "question": "For a year that is later than 2002 what is the class position?", "context": "CREATE TABLE table_name_53 (class VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(round) FROM table_name_90 WHERE college = \"lehigh\"", "question": "How many total rounds has lehigh as the college?", "context": "CREATE TABLE table_name_90 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT name FROM table_name_59 WHERE pick = 5 AND round < 25 AND position = \"ot\" AND college = \"boston college\"", "question": "What name has 5 as the pick, a round less than 25, ot as the position, at boston college?", "context": "CREATE TABLE table_name_59 (name VARCHAR, college VARCHAR, position VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_29 WHERE position = \"e\" AND name = \"buddy payne\" AND pick < 5", "question": "How many overalls have E as the position, buddy payne as the name, and a pick less than 5?", "context": "CREATE TABLE table_name_29 (overall VARCHAR, pick VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_78 WHERE name = \"charley sanders\" AND round > 22", "question": "How many picks have charley sanders as the name, with a round greater than 22?", "context": "CREATE TABLE table_name_78 (pick INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_8 WHERE opponent = \"florida panthers\"", "question": "What is the Attendance of the game against the Florida Panthers?", "context": "CREATE TABLE table_name_8 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_4 WHERE points > 5 AND attendance > 13 OFFSET 567", "question": "What is the Opponent of the game with more than 13,567 in Attendance with more than 5 Points?", "context": "CREATE TABLE table_name_4 (opponent VARCHAR, points VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT location FROM table_name_82 WHERE record = \"15\u20131\u20131 (1)\"", "question": "When his record was 15\u20131\u20131 (1) where did he fight?", "context": "CREATE TABLE table_name_82 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_24 WHERE location = \"boston garden\" AND date = \"fri. nov. 9\"", "question": "What is Record, when Location is \"Boston Garden\", and when Date is \"Fri. Nov. 9\"?", "context": "CREATE TABLE table_name_24 (record VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_91 WHERE location = \"boston garden\" AND game > 1 AND score = \"115-105\"", "question": "What is Opponent, when Location is \"Boston Garden\", when Game is greater than 1, and when Score is \"115-105\"?", "context": "CREATE TABLE table_name_91 (opponent VARCHAR, score VARCHAR, location VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_26 WHERE date = \"wed. nov. 14\"", "question": "What is the sum of Game, when Date is \"Wed. Nov. 14\"?", "context": "CREATE TABLE table_name_26 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE player = \"bill rogers\"", "question": "What is Score, when Player is \"Bill Rogers\"?", "context": "CREATE TABLE table_name_80 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT state FROM table_name_74 WHERE electorate = \"west sydney\"", "question": "Which State has an Electorate of West Sydney?", "context": "CREATE TABLE table_name_74 (state VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT state FROM table_name_14 WHERE electorate = \"barton\"", "question": "Which State has an Electorate of Barton?", "context": "CREATE TABLE table_name_14 (state VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_38 WHERE release_price___usd__ = \"$496\"", "question": "What was the L2 Cache for the processor with a release price of $496?", "context": "CREATE TABLE table_name_38 (l2_cache VARCHAR, release_price___usd__ VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_32 WHERE sspec_number = \"sl3jm(kc0)sl3jt(kc0)\"", "question": "What is the model number for the processor with sSpec number of sl3jm(kc0)sl3jt(kc0)?", "context": "CREATE TABLE table_name_32 (model_number VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_79 WHERE sspec_number = \"sl3bn(kc0)sl3e9(kc0)\"", "question": "What is the frequency of the processor with an sSpec number of sl3bn(kc0)sl3e9(kc0)?", "context": "CREATE TABLE table_name_79 (frequency VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE opponent = \"alfonse d'amore\"", "question": "When did alfonse d'amore compete?", "context": "CREATE TABLE table_name_59 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_46 WHERE method = \"ko\" AND date = \"1958\"", "question": "Which Round has a Method of ko, and a Date of 1958?", "context": "CREATE TABLE table_name_46 (round INTEGER, method VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE result = \"win\" AND round < 2 AND opponent = \"myron greenberg\"", "question": "Which Date has a Result of win, and a Round smaller than 2, and an Opponent of myron greenberg?", "context": "CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR, result VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_14 WHERE method = \"ko\" AND opponent = \"alfonse d'amore\"", "question": "Which Round has a Method of ko, and an Opponent of alfonse d'amore?", "context": "CREATE TABLE table_name_14 (round VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE date = \"sep. 2008\"", "question": "Which Player has a Date of sep. 2008?", "context": "CREATE TABLE table_name_89 (player VARCHAR, date VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_80 WHERE from_club = \"blackburn rovers\"", "question": "Which Transfer fee has a From club of blackburn rovers?", "context": "CREATE TABLE table_name_80 (transfer_fee VARCHAR, from_club VARCHAR)"}, {"answer": "SELECT from_club FROM table_name_49 WHERE date = \"20 oct. 2008\"", "question": "Which From club has a Date of 20 oct. 2008?", "context": "CREATE TABLE table_name_49 (from_club VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_34 WHERE transfer_fee = \"\u00a3750,000 [x]\"", "question": "Which Player has a Transfer fee of \u00a3750,000 [x]?", "context": "CREATE TABLE table_name_34 (player VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_40 WHERE date = \"6 april 1992\"", "question": "What is Tournament, when Date is \"6 April 1992\"?", "context": "CREATE TABLE table_name_40 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_39 WHERE opponents = \"daniel nestor sandon stolle\"", "question": "What is Surface, when Opponents is \"Daniel Nestor Sandon Stolle\"?", "context": "CREATE TABLE table_name_39 (surface VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE outcome = \"winner\" AND opponents = \"paul haarhuis sandon stolle\"", "question": "What is Date, when Outcome is \"Winner\", and when Opponents is \"Paul Haarhuis Sandon Stolle\"?", "context": "CREATE TABLE table_name_48 (date VARCHAR, outcome VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_94 WHERE partner = \"byron black\" AND opponents = \"goran ivani\u0161evi\u0107 brian macphie\"", "question": "What is Outcome, when Partner is \"Byron Black\", and when Opponents is \"Goran Ivani\u0161evi\u0107 Brian Macphie\"?", "context": "CREATE TABLE table_name_94 (outcome VARCHAR, partner VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_38 WHERE date = \"9 august 1993\"", "question": "What is Tournament, when Date is \"9 August 1993\"?", "context": "CREATE TABLE table_name_38 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_88 WHERE player = \"arnold palmer\"", "question": "What is Place, when Player is \"Arnold Palmer\"?", "context": "CREATE TABLE table_name_88 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_70 WHERE to_par = \"+1\" AND score = 72 - 70 - 72 = 214", "question": "What is Player, when To Par is +1, and when Score is 72-70-72=214?", "context": "CREATE TABLE table_name_70 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE country = \"united states\" AND player = \"arnold palmer\"", "question": "What is Score, when Country is United States, and when Player is \"Arnold Palmer\"?", "context": "CREATE TABLE table_name_93 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_22 WHERE country = \"united states\" AND score = 71 - 68 - 73 = 212", "question": "What is To Par, when Country is United States, and when Score is 71-68-73=212?", "context": "CREATE TABLE table_name_22 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_1 WHERE country = \"united states\" AND score = 70 - 72 - 70 = 212", "question": "What is Player, when Country is United States, and when Score is 70-72-70=212?", "context": "CREATE TABLE table_name_1 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_77 WHERE player = \"billy maxwell\"", "question": "What is Country, when Player is \"Billy Maxwell\"?", "context": "CREATE TABLE table_name_77 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT name FROM table_name_23 WHERE react < 0.149 AND lane < 6", "question": "Who has a react smaller than 0.149 and a lane smaller than 6?", "context": "CREATE TABLE table_name_23 (name VARCHAR, react VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_50 WHERE mark = \"7.26\"", "question": "What was the lowest lane with a mark of 7.26?", "context": "CREATE TABLE table_name_50 (lane INTEGER, mark VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_90 WHERE season > 2001 AND average < 10 OFFSET 838", "question": "What is the maximum number of games when the season is more recent than 2001 and the average is less than 10,838?", "context": "CREATE TABLE table_name_90 (games INTEGER, season VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(no_of_clubs) FROM table_name_10 WHERE team = \"shenyang ginde\" AND games > 182", "question": "What is the number of clubs for Shenyang Ginde when there were more than 182 games?", "context": "CREATE TABLE table_name_10 (no_of_clubs VARCHAR, team VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_name_26 WHERE team = \"beijing guo'an\" AND games > 240", "question": "What is the smallest average for Beijing Guo'an when they played more than 240 games?", "context": "CREATE TABLE table_name_26 (average INTEGER, team VARCHAR, games VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_32 WHERE school = \"washington state\"", "question": "What is the average pick number for Washington State?", "context": "CREATE TABLE table_name_32 (pick INTEGER, school VARCHAR)"}, {"answer": "SELECT comments FROM table_name_56 WHERE length_over_all = \"4.5m\"", "question": "Which Comments has a Length Over All of 4.5m?", "context": "CREATE TABLE table_name_56 (comments VARCHAR, length_over_all VARCHAR)"}, {"answer": "SELECT crew FROM table_name_49 WHERE comments = \"daggerboards. design: roy seaman\"", "question": "Which Crew has Comments of daggerboards. design: roy seaman?", "context": "CREATE TABLE table_name_49 (crew VARCHAR, comments VARCHAR)"}, {"answer": "SELECT comments FROM table_name_30 WHERE model = \"18sq\"", "question": "Which Comments has a Model of 18sq?", "context": "CREATE TABLE table_name_30 (comments VARCHAR, model VARCHAR)"}, {"answer": "SELECT model FROM table_name_61 WHERE comments = \"curved daggerboards. design: morelli und melvin\"", "question": "Which Model has Comments of curved daggerboards. design: morelli und melvin?", "context": "CREATE TABLE table_name_61 (model VARCHAR, comments VARCHAR)"}, {"answer": "SELECT beam FROM table_name_17 WHERE model = \"570\"", "question": "Which Beam has a Model of 570?", "context": "CREATE TABLE table_name_17 (beam VARCHAR, model VARCHAR)"}, {"answer": "SELECT model FROM table_name_75 WHERE sail_area = \"24.5 m\u00b2\"", "question": "Which Model has a Sail Area of 24.5 m\u00b2?", "context": "CREATE TABLE table_name_75 (model VARCHAR, sail_area VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_41 WHERE points < 30", "question": "What is the sum of the game numbers for games with less than 30 points?", "context": "CREATE TABLE table_name_41 (game INTEGER, points INTEGER)"}, {"answer": "SELECT location FROM table_name_27 WHERE opponent = \"buffalo sabres\"", "question": "Where was the game against the buffalo sabres?", "context": "CREATE TABLE table_name_27 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(br_no) FROM table_name_39 WHERE secr_no = 765", "question": "What is the highest BR number with a SECR number of 765?", "context": "CREATE TABLE table_name_39 (br_no INTEGER, secr_no VARCHAR)"}, {"answer": "SELECT AVG(sr_no) FROM table_name_10 WHERE builder = \"beyer peacock\" AND secr_no = 769", "question": "What is Beyer Peacock's SR number with a SECR number of 769?", "context": "CREATE TABLE table_name_10 (sr_no INTEGER, builder VARCHAR, secr_no VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_55 WHERE rounds = \"all\" AND team = \"nismo\" AND drivers = \"satoshi motoyama\"", "question": "What is the tyre of nismo team member satoshi motoyama when he has rounds of all?", "context": "CREATE TABLE table_name_55 (tyre VARCHAR, drivers VARCHAR, rounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_24 WHERE team = \"real racing with leon\" AND drivers = \"koudai tsukakoshi\"", "question": "What is the tyre of real racing with leon team member koudai tsukakoshi?", "context": "CREATE TABLE table_name_24 (tyre VARCHAR, team VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT drivers FROM table_name_2 WHERE rounds = \"all\" AND make = \"lexus\" AND tyre = \"b\" AND team = \"petronas toyota team tom's\"", "question": "Which drives drove a lexus, made all rounds, had a tyre of B and was on the team of petronas toyota team tom's?", "context": "CREATE TABLE table_name_2 (drivers VARCHAR, team VARCHAR, tyre VARCHAR, rounds VARCHAR, make VARCHAR)"}, {"answer": "SELECT team FROM table_name_38 WHERE make = \"lexus\" AND drivers = \"yuji tachikawa\"", "question": "When driver yuji tachikawa had a make of lexus, what team did he represent?", "context": "CREATE TABLE table_name_38 (team VARCHAR, make VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT SUM(capacity) FROM table_name_58 WHERE team = \"denizlispor\"", "question": "What is the sum of Capacity, when Team is \"Denizlispor\"?", "context": "CREATE TABLE table_name_58 (capacity INTEGER, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_4 WHERE venue = \"\u015f\u00fckr\u00fc saraco\u011flu stadium\"", "question": "What is Team, when Venue is \"\u015e\u00fckr\u00fc Saraco\u011flu Stadium\"?", "context": "CREATE TABLE table_name_4 (team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT gagarin_cup_winner FROM table_name_17 WHERE gagarin_cup_finalist = \"avangard omsk\"", "question": "Who is the gagarin cup winner when avangard omsk is the gagarin cup finalist?", "context": "CREATE TABLE table_name_17 (gagarin_cup_winner VARCHAR, gagarin_cup_finalist VARCHAR)"}, {"answer": "SELECT res FROM table_name_60 WHERE record = \"9-1\"", "question": "What was the resolution of the fight where andre roberts record was 9-1?", "context": "CREATE TABLE table_name_60 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_29 WHERE team__number2 = \"goi\u00e1s\"", "question": "What is the 2nd leg of goi\u00e1s team 2?", "context": "CREATE TABLE table_name_29 (team__number2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_66 WHERE team__number2 = \"emelec\"", "question": "What is the 2nd leg of emelec team 2?", "context": "CREATE TABLE table_name_66 (team__number2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_62 WHERE team__number1 = \"ldu quito\"", "question": "What is the 2nd leg with ldu quito as team 1?", "context": "CREATE TABLE table_name_62 (team__number1 VARCHAR)"}, {"answer": "SELECT listed FROM table_name_29 WHERE location = \"mcclain\"", "question": "On what date was the bridge located in McClain listed?", "context": "CREATE TABLE table_name_29 (listed VARCHAR, location VARCHAR)"}, {"answer": "SELECT source FROM table_name_27 WHERE date = \"6 september\"", "question": "What is the source on 6 September?", "context": "CREATE TABLE table_name_27 (source VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_4 WHERE result = \"l 21-19\"", "question": "Which Week has a Result of l 21-19?", "context": "CREATE TABLE table_name_4 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_89 WHERE result = \"l 41-14\"", "question": "Which Week has a Result of l 41-14?", "context": "CREATE TABLE table_name_89 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_81 WHERE date = \"september 3, 2000\"", "question": "Which Result has a Date of september 3, 2000?", "context": "CREATE TABLE table_name_81 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE attendance = \"54,626\"", "question": "Which Date has an Attendance of 54,626?", "context": "CREATE TABLE table_name_71 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_99 WHERE attendance = \"bye\"", "question": "Which Result has an Attendance of bye?", "context": "CREATE TABLE table_name_99 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(preliminary) FROM table_name_50 WHERE swimsuit < 8.822 AND interview > 8.744 AND evening_gown > 9.333", "question": "What is the smallest preliminary when swimsuit is less than 8.822, interview is more than 8.744 and gown is more than 9.333?", "context": "CREATE TABLE table_name_50 (preliminary INTEGER, evening_gown VARCHAR, swimsuit VARCHAR, interview VARCHAR)"}, {"answer": "SELECT MAX(preliminary) FROM table_name_35 WHERE state = \"new mexico\" AND interview < 9.533", "question": "What is the best preliminary for a contestant from New Mexico with interview less than 9.533?", "context": "CREATE TABLE table_name_35 (preliminary INTEGER, state VARCHAR, interview VARCHAR)"}, {"answer": "SELECT state FROM table_name_19 WHERE swimsuit < 9.277 AND evening_gown > 8.944 AND preliminary < 8.483", "question": "What state has a swimsuit less than 9.277, gown more than 8.944 and preliminary greater than 8.483?", "context": "CREATE TABLE table_name_19 (state VARCHAR, preliminary VARCHAR, swimsuit VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT SUM(average) FROM table_name_28 WHERE interview = 9.465 AND evening_gown < 9.454", "question": "What is the average when interview is 9.465 and evening gown is less than 9.454?", "context": "CREATE TABLE table_name_28 (average INTEGER, interview VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT MAX(preliminary) FROM table_name_63 WHERE state = \"oklahoma\" AND evening_gown < 8.853", "question": "What is the best preliminary score from a contestant from Oklahoma with evening gown less than 8.853?", "context": "CREATE TABLE table_name_63 (preliminary INTEGER, state VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_31 WHERE originalairdate = \"25 april 1993\"", "question": "What is Written By, when Originalairdate is 25 April 1993?", "context": "CREATE TABLE table_name_31 (written_by VARCHAR, originalairdate VARCHAR)"}, {"answer": "SELECT directed_by FROM table_name_18 WHERE episode__number = 7", "question": "What is Directed By, when Episode # is 7?", "context": "CREATE TABLE table_name_18 (directed_by VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT MIN(avg_finish) FROM table_name_70 WHERE position = \"40th\" AND top_5 > 0", "question": "WHAT IS THE LOWEST AVERAGE FINISH FOR 40TH POSITION, WITH A TOP 5 LARGER THAN 0?", "context": "CREATE TABLE table_name_70 (avg_finish INTEGER, position VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT country FROM table_name_19 WHERE supermarkets = \"50\"", "question": "What country has 50 supermarkets?", "context": "CREATE TABLE table_name_19 (country VARCHAR, supermarkets VARCHAR)"}, {"answer": "SELECT country FROM table_name_47 WHERE supermarkets = \"370\"", "question": "What country has 370 supermarkets?", "context": "CREATE TABLE table_name_47 (country VARCHAR, supermarkets VARCHAR)"}, {"answer": "SELECT country FROM table_name_2 WHERE first_store = \"1991\" AND hard_discounters = \"397\"", "question": "What country has a fire store of 1991 and a hard discounter of 397?", "context": "CREATE TABLE table_name_2 (country VARCHAR, first_store VARCHAR, hard_discounters VARCHAR)"}, {"answer": "SELECT engine FROM table_name_9 WHERE rounds = \"all\" AND driver = \"tsugio matsuda\"", "question": "Which engine is in all rounds with Tsugio Matsuda driving?", "context": "CREATE TABLE table_name_9 (engine VARCHAR, rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine FROM table_name_65 WHERE team = \"team lemans\" AND driver = \"hiroaki ishiura\"", "question": "Which engine is used by Team Lemans with Hiroaki Ishiura driving?", "context": "CREATE TABLE table_name_65 (engine VARCHAR, team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_34 WHERE loss > 3 AND sets_lost < 25", "question": "What is the least rank with more than 3 losses and less than 25 sets lost?", "context": "CREATE TABLE table_name_34 (rank INTEGER, loss VARCHAR, sets_lost VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_47 WHERE sets_won > 16 AND loss < 1", "question": "What is the least rank with more than 16 sets won and less than 1 loss?", "context": "CREATE TABLE table_name_47 (rank INTEGER, sets_won VARCHAR, loss VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_74 WHERE away_team = \"telford united\"", "question": "Who was the home team when the away team was Telford United?", "context": "CREATE TABLE table_name_74 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_4 WHERE away_team = \"west ham united\"", "question": "What was the score when the away team was West Ham United?", "context": "CREATE TABLE table_name_4 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_56 WHERE home_team = \"west ham united\"", "question": "What is the Tie Number when the home team was West Ham United?", "context": "CREATE TABLE table_name_56 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_59 WHERE fsb_speed = \"400 mhz\"", "question": "Name the Model Number which has a FSB Speed of 400 mhz?", "context": "CREATE TABLE table_name_59 (model_number VARCHAR, fsb_speed VARCHAR)"}, {"answer": "SELECT voltage_range FROM table_name_30 WHERE fsb_speed = \"400 mhz\" AND clock_speed = \"1 ghz\"", "question": "Name the Voltage Range which has a FSB Speed of 400 mhz, and a Clock Speed of 1 ghz?", "context": "CREATE TABLE table_name_30 (voltage_range VARCHAR, fsb_speed VARCHAR, clock_speed VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_10 WHERE clock_speed = \"1.5 ghz\"", "question": "Name the L2 Cache which has a Clock Speed of 1.5 ghz?", "context": "CREATE TABLE table_name_10 (l2_cache VARCHAR, clock_speed VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_57 WHERE team = \"orlando\"", "question": "What is the earliest game against Orlando?", "context": "CREATE TABLE table_name_57 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_47 WHERE attendance = \"72,855\"", "question": "Which Week has an Attendance of 72,855?", "context": "CREATE TABLE table_name_47 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_67 WHERE date = \"december 8, 1991\"", "question": "Which Week has a Date of december 8, 1991?", "context": "CREATE TABLE table_name_67 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE date = \"november 24, 1991\"", "question": "Which Opponent has a Date of november 24, 1991?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_95 WHERE rank = 147", "question": "Which location has a rank of 147?", "context": "CREATE TABLE table_name_95 (location VARCHAR, rank VARCHAR)"}, {"answer": "SELECT mountain_range FROM table_name_68 WHERE mountain_peak = \"sierra blanca peak\"", "question": "Which mountain range contains Sierra Blanca Peak?", "context": "CREATE TABLE table_name_68 (mountain_range VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT location FROM table_name_71 WHERE state = \"oregon\" AND rank < 121 AND mountain_peak = \"mount mcloughlin\"", "question": "Which location is in Oregon, ranked under 121, and contains Mount McLoughlin?", "context": "CREATE TABLE table_name_71 (location VARCHAR, mountain_peak VARCHAR, state VARCHAR, rank VARCHAR)"}, {"answer": "SELECT film_or_television_series_or_miniseries FROM table_name_16 WHERE year = 2001", "question": "What is the film, television series, or miniseries with a nomination in 2001?", "context": "CREATE TABLE table_name_16 (film_or_television_series_or_miniseries VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_3 WHERE nominee = \"martin sheen\"", "question": "In what year was Martin Sheen nominated?", "context": "CREATE TABLE table_name_3 (year VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT president FROM table_name_57 WHERE year = 1999", "question": "Who was the president in 1999?", "context": "CREATE TABLE table_name_57 (president VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE status = \"second test\"", "question": "Which Date has a Status of second test?", "context": "CREATE TABLE table_name_54 (date VARCHAR, status VARCHAR)"}, {"answer": "SELECT venue FROM table_name_26 WHERE against = 25", "question": "Which Venue has an Against of 25?", "context": "CREATE TABLE table_name_26 (venue VARCHAR, against VARCHAR)"}, {"answer": "SELECT status FROM table_name_34 WHERE date = \"19/05/1981\"", "question": "Which Status has a Date of 19/05/1981?", "context": "CREATE TABLE table_name_34 (status VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_63 WHERE date = \"30/05/1981\"", "question": "Which Against has a Date of 30/05/1981?", "context": "CREATE TABLE table_name_63 (against VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE against < 21 AND status = \"second test\"", "question": "Which Date has an Against smaller than 21, and a Status of second test?", "context": "CREATE TABLE table_name_37 (date VARCHAR, against VARCHAR, status VARCHAR)"}, {"answer": "SELECT rochester FROM table_name_39 WHERE syracuse = \"cardiff dark gray shale\" AND albany = \"(mt. marion fm.)\"", "question": "What is Rochester, when Syracuse is Cardiff Dark Gray Shale, and when Albany is (Mt. Marion Fm.)?", "context": "CREATE TABLE table_name_39 (rochester VARCHAR, syracuse VARCHAR, albany VARCHAR)"}, {"answer": "SELECT albany FROM table_name_18 WHERE buffalo = \"oatka creek shale\" AND syracuse = \"cardiff dark gray shale\"", "question": "What is Albany, when Buffalo is Oatka Creek Shale, and when Syracuse is Cardiff Dark Gray Shale?", "context": "CREATE TABLE table_name_18 (albany VARCHAR, buffalo VARCHAR, syracuse VARCHAR)"}, {"answer": "SELECT syracuse FROM table_name_20 WHERE utica = \"union springs shale and limestone\" AND rochester = \"union springs shale and limestone\"", "question": "What is Syracuse, when Utica is Union Springs Shale And Limestone, and when Rochester is Union Springs Shale And Limestone?", "context": "CREATE TABLE table_name_20 (syracuse VARCHAR, utica VARCHAR, rochester VARCHAR)"}, {"answer": "SELECT syracuse FROM table_name_51 WHERE utica = \"solsville shale and sandstone\"", "question": "What is Syracuse, when Utica is Solsville Shale And Sandstone?", "context": "CREATE TABLE table_name_51 (syracuse VARCHAR, utica VARCHAR)"}, {"answer": "SELECT syracuse FROM table_name_90 WHERE buffalo = \"oatka creek shale\" AND albany = \"berne\"", "question": "What is Syracuse, when Buffalo is Oatka Creek Shale, and when Albany is Berne?", "context": "CREATE TABLE table_name_90 (syracuse VARCHAR, buffalo VARCHAR, albany VARCHAR)"}, {"answer": "SELECT name FROM table_name_67 WHERE rank = 18", "question": "What is the Name of the Players with a Rank of 18?", "context": "CREATE TABLE table_name_67 (name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT points FROM table_name_97 WHERE placings > 100 AND rank = 17", "question": "How many Points for the couple ranking 17 with Placings larger than 100?", "context": "CREATE TABLE table_name_97 (points VARCHAR, placings VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_77 WHERE points < 408.8 AND placings = 160", "question": "What is the Rank of the couple with less than 408.8 Points and Placings of 160?", "context": "CREATE TABLE table_name_77 (rank VARCHAR, points VARCHAR, placings VARCHAR)"}, {"answer": "SELECT SUM(placings) FROM table_name_22 WHERE rank < 7 AND points = 514.55", "question": "What is the Place of the couple with a Rank smaller than 7 and 514.55 Points?", "context": "CREATE TABLE table_name_22 (placings INTEGER, rank VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_64 WHERE mark = \"47.02\" AND heat > 5", "question": "What is the total Lane with a Mark of 47.02, and a Heat higher than 5?", "context": "CREATE TABLE table_name_64 (lane INTEGER, mark VARCHAR, heat VARCHAR)"}, {"answer": "SELECT MIN(heat) FROM table_name_57 WHERE mark = \"46.47\"", "question": "With a Mark of 46.47, What is the lowest Heat?", "context": "CREATE TABLE table_name_57 (heat INTEGER, mark VARCHAR)"}, {"answer": "SELECT country FROM table_name_99 WHERE lane > 3 AND name = \"richard buck\"", "question": "What is the Country that has Richard Buck Lane higher than 3?", "context": "CREATE TABLE table_name_99 (country VARCHAR, lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT date_married FROM table_name_87 WHERE name_dates = \"louise, princess royal\"", "question": "When did Louise, Princess royal get married?", "context": "CREATE TABLE table_name_87 (date_married VARCHAR, name_dates VARCHAR)"}, {"answer": "SELECT djurg\u00e5rden_scorers FROM table_name_87 WHERE score = \"2-1\"", "question": "What are the Djurg\u00e5rden scorers that have a Score of 2-1?", "context": "CREATE TABLE table_name_87 (djurg\u00e5rden_scorers VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_43 WHERE djurg\u00e5rden_scorers = \"sj\u00f6lund (2)\"", "question": "What are the Opponents that have Djurg\u00e5rden scorers of sj\u00f6lund (2)?", "context": "CREATE TABLE table_name_43 (opponents VARCHAR, djurg\u00e5rden_scorers VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE date = \"2005-10-29\"", "question": "What is the Score that has a Date of 2005-10-29?", "context": "CREATE TABLE table_name_6 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE attendance = \"4 679\"", "question": "What is the Score that has an Attendance of 4 679?", "context": "CREATE TABLE table_name_52 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE round = \"semifinal\"", "question": "What is the Date that has a Round of semifinal?", "context": "CREATE TABLE table_name_46 (date VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_25 WHERE college = \"arizona\" AND overall > 120", "question": "Which Round is the highest one that has a College of arizona, and an Overall larger than 120?", "context": "CREATE TABLE table_name_25 (round INTEGER, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_56 WHERE name = \"ed hickerson\" AND round < 10", "question": "Which Pick has a Name of ed hickerson, and a Round smaller than 10?", "context": "CREATE TABLE table_name_56 (pick INTEGER, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_4 WHERE pick = 10 AND round < 8 AND position = \"e\" AND college = \"tennessee\"", "question": "How much Overall has a Pick of 10, and a Round smaller than 8, and a Position of e, and a College of tennessee?", "context": "CREATE TABLE table_name_4 (overall VARCHAR, college VARCHAR, position VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE away_team = \"morecambe\"", "question": "What date was the away team Morecambe?", "context": "CREATE TABLE table_name_78 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_24 WHERE home_team = \"grimsby town\"", "question": "What team was the away team when the home team was Grimsby Town?", "context": "CREATE TABLE table_name_24 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_32 WHERE home_team = \"hereford united\"", "question": "What team was the away team when the home team was Hereford United?", "context": "CREATE TABLE table_name_32 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_67 WHERE tie_no = \"40\"", "question": "What team was the away team when the tie no is 40?", "context": "CREATE TABLE table_name_67 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_36 WHERE agg = \"151-134\"", "question": "What was the 1st leg score for the team with an Agg score of 151-134?", "context": "CREATE TABLE table_name_36 (agg VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_73 WHERE team__number1 = \"unics kazan\"", "question": "What was the team Unics Kazan's 1st leg score?", "context": "CREATE TABLE table_name_73 (team__number1 VARCHAR)"}, {"answer": "SELECT team__number1 FROM table_name_71 WHERE team__number2 = \"kalise gran canaria\"", "question": "Who was the first team when the second team was Kalise Gran Canaria?", "context": "CREATE TABLE table_name_71 (team__number1 VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE game = 30", "question": "What was the score of game 30?", "context": "CREATE TABLE table_name_52 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_97 WHERE team = \"toronto\"", "question": "Who was the high scorer in the Toronto game?", "context": "CREATE TABLE table_name_97 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(october) FROM table_name_54 WHERE record = \"4-4-0\" AND game > 8", "question": "What is the highest date in october for a game number larger than 8 with a record of 4-4-0?", "context": "CREATE TABLE table_name_54 (october INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT total FROM table_name_30 WHERE country = \"united states\" AND to_par < 14 AND player = \"tom watson\"", "question": "When the tom watson is playing for the United States and the To par is under 14, what's the total?", "context": "CREATE TABLE table_name_30 (total VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_54 WHERE total = \"158\"", "question": "What player has a total of 158/", "context": "CREATE TABLE table_name_54 (player VARCHAR, total VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE total = \"wd\" AND to_par < 16 AND year_s__won = \"1967\"", "question": "If 1967 is the winning year and a player has a total recorded as wd with a To par under 16, what's the players name?", "context": "CREATE TABLE table_name_43 (player VARCHAR, year_s__won VARCHAR, total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT kicks FROM table_name_61 WHERE games = \"7\"", "question": "How many kicks did he get in the year when he played 7 games?", "context": "CREATE TABLE table_name_61 (kicks VARCHAR, games VARCHAR)"}, {"answer": "SELECT marks FROM table_name_89 WHERE season = \"2005\"", "question": "How many marks did he get in 2005?", "context": "CREATE TABLE table_name_89 (marks VARCHAR, season VARCHAR)"}, {"answer": "SELECT west_ham_wins FROM table_name_56 WHERE millwall_wins > 5 AND millwall_goals > 23 AND drawn = 8", "question": "How many wins did West Ham get when Millwall had more than 23 goal and 5 wins, and they tied 8 times?", "context": "CREATE TABLE table_name_56 (west_ham_wins VARCHAR, drawn VARCHAR, millwall_wins VARCHAR, millwall_goals VARCHAR)"}, {"answer": "SELECT MIN(west_ham_wins) FROM table_name_54 WHERE drawn > 27", "question": "What is the least number of wins West Ham got when they tied 27 times?", "context": "CREATE TABLE table_name_54 (west_ham_wins INTEGER, drawn INTEGER)"}, {"answer": "SELECT attendance FROM table_name_12 WHERE date = \"october 22, 2000\"", "question": "what is the attendance when the date is october 22, 2000?", "context": "CREATE TABLE table_name_12 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(2000) FROM table_name_78 WHERE 1950 = 3.5 AND 1970 > 3.4", "question": "What is the highest value for 2000, when the value for 1950 is 3.5, and when the value for 1970 is greater than 3.4?", "context": "CREATE TABLE table_name_78 (Id VARCHAR)"}, {"answer": "SELECT MIN(1990) FROM table_name_54 WHERE region = \"east asia (10 economies)\" AND 1960 < 12.6", "question": "What is the lowest value for 1990, when the Region is East Asia (10 Economies), and when 1960 has a value less than 12.6?", "context": "CREATE TABLE table_name_54 (region VARCHAR)"}, {"answer": "SELECT AVG(1970) FROM table_name_12 WHERE region = \"east europe (7 economies)\" AND 2000 > 2", "question": "What is the average value for 1970, when the Region is East Europe (7 Economies), and when 2000 has a value greater than 2?", "context": "CREATE TABLE table_name_12 (region VARCHAR)"}, {"answer": "SELECT MAX(1970) FROM table_name_81 WHERE 1960 < 61.9 AND 1980 < 3.8 AND 1990 = 3.3 AND 2000 > 3.2", "question": "What is the highest value for 1970, when the value for 1960 is less than 61.9, when the value for 1980 is less than 3.8, when the value for 1990 is 3.3, and when the value for 2000 is greater than 3.2?", "context": "CREATE TABLE table_name_81 (Id VARCHAR)"}, {"answer": "SELECT MIN(1960) FROM table_name_66 WHERE 2000 < 8.4 AND 1950 > 3.5 AND 1990 < 3.3", "question": "What is the lowest value for 1960, when the value for 2000 is less than 8.4, when the value for 1950 is greater than 3.5, and when the value for 1990 is less than 3.3?", "context": "CREATE TABLE table_name_66 (Id VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_21 WHERE played > 42", "question": "What average drawn has a played greater than 42?", "context": "CREATE TABLE table_name_21 (drawn INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(played) FROM table_name_4 WHERE position < 17 AND goals_for = 63", "question": "What is the highest played that has a position less than 17, and 63 as the goals for?", "context": "CREATE TABLE table_name_4 (played INTEGER, position VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_58 WHERE position > 6 AND goals_against = 61 AND lost < 16", "question": "What is the lowest played that has a position greater than 6, 61 as the goals against, with a loss less than 16?", "context": "CREATE TABLE table_name_58 (played INTEGER, lost VARCHAR, position VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_54 WHERE drawn < 11 AND played < 42", "question": "What is the highest goals for that has a drawn less than 11, with a played less than 42?", "context": "CREATE TABLE table_name_54 (goals_for INTEGER, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_62 WHERE goal_difference = \"+40\" AND points_1 > 55", "question": "What is the average goals for that has +40 as the goals difference, with points 1 greater than 55?", "context": "CREATE TABLE table_name_62 (goals_for INTEGER, goal_difference VARCHAR, points_1 VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_36 WHERE to_par = 15", "question": "Can you tell me the average Total that has the To par of 15?", "context": "CREATE TABLE table_name_36 (total INTEGER, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_67 WHERE to_par > 9 AND year_s__won = \"1984\"", "question": "Can you tell me the Country that has the To par larger than 9, and the Year(s) won of 1984?", "context": "CREATE TABLE table_name_67 (country VARCHAR, to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT producer_s_ FROM table_name_25 WHERE length = \"4:16\"", "question": "Who produced the track that is 4:16 long?", "context": "CREATE TABLE table_name_25 (producer_s_ VARCHAR, length VARCHAR)"}, {"answer": "SELECT producer_s_ FROM table_name_7 WHERE track = 7", "question": "Who produced track 7?", "context": "CREATE TABLE table_name_7 (producer_s_ VARCHAR, track VARCHAR)"}, {"answer": "SELECT contract_length FROM table_name_55 WHERE status = \"rejected\"", "question": "What is the contract length when rejected is the status?", "context": "CREATE TABLE table_name_55 (contract_length VARCHAR, status VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_22 WHERE points > 15 AND lost = 1 AND played < 14", "question": "what is the average drawn when the points is more than 15, lost is 1 and played is less than 14?", "context": "CREATE TABLE table_name_22 (drawn INTEGER, played VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_47 WHERE points > 11 AND name = \"ea schongau\" AND lost < 3", "question": "what is the lowest position when points is more than 11, name is ea schongau and lost is less than 3?", "context": "CREATE TABLE table_name_47 (position INTEGER, lost VARCHAR, points VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_32 WHERE played > 14", "question": "what is the average lost when played is more than 14?", "context": "CREATE TABLE table_name_32 (lost INTEGER, played INTEGER)"}, {"answer": "SELECT SUM(drawn) FROM table_name_81 WHERE points < 15 AND lost = 8 AND position > 6", "question": "what is the sum of drawn when points is less than 15, lost is 8 and position is more than 6?", "context": "CREATE TABLE table_name_81 (drawn INTEGER, position VARCHAR, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_24 WHERE name = \"ehc m\u00fcnchen ii\" AND position < 7", "question": "what is the lowest points when name is ehc m\u00fcnchen ii and position is less than 7?", "context": "CREATE TABLE table_name_24 (points INTEGER, name VARCHAR, position VARCHAR)"}, {"answer": "SELECT result FROM table_name_42 WHERE week < 9 AND attendance = \"25,188\"", "question": "what is the result when the week is earlier than 9 and attendance is 25,188?", "context": "CREATE TABLE table_name_42 (result VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT team FROM table_name_58 WHERE high_points = \"rashard lewis (18)\"", "question": "What is Team, when High Points is \"Rashard Lewis (18)\"?", "context": "CREATE TABLE table_name_58 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_80 WHERE high_assists = \"rafer alston , rashard lewis , hedo t\u00fcrko\u011flu (3)\"", "question": "What is High Rebounds, when High Assists is \"Rafer Alston , Rashard Lewis , Hedo T\u00fcrko\u011flu (3)\"?", "context": "CREATE TABLE table_name_80 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT team FROM table_name_80 WHERE high_points = \"rashard lewis , micka\u00ebl pi\u00e9trus (17)\"", "question": "What is Team, when High Points is \"Rashard Lewis , Micka\u00ebl Pi\u00e9trus (17)\"?", "context": "CREATE TABLE table_name_80 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_34 WHERE team = \"celtics\" AND high_assists = \"hedo t\u00fcrko\u011flu (4)\"", "question": "What is the highest Game, when Team is \"Celtics\", and when High Assists is \"Hedo T\u00fcrko\u011flu (4)\"?", "context": "CREATE TABLE table_name_34 (game INTEGER, team VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT run_1 FROM table_name_62 WHERE run_4 = \"1:56.59\"", "question": "What is Run 1, when Run 4 is 1:56.59?", "context": "CREATE TABLE table_name_62 (run_1 VARCHAR, run_4 VARCHAR)"}, {"answer": "SELECT rank FROM table_name_74 WHERE run_2 = \"2:06.62\"", "question": "What is Rank, when Run 2 is 2:06.62?", "context": "CREATE TABLE table_name_74 (rank VARCHAR, run_2 VARCHAR)"}, {"answer": "SELECT run_2 FROM table_name_84 WHERE run_1 = \"2:09.09\"", "question": "What is Run 2, when Run 1 is 2:09.09?", "context": "CREATE TABLE table_name_84 (run_2 VARCHAR, run_1 VARCHAR)"}, {"answer": "SELECT final FROM table_name_66 WHERE team = \"united states (usa) usa i\"", "question": "What is Final, when Team is United States (USA) USA I?", "context": "CREATE TABLE table_name_66 (final VARCHAR, team VARCHAR)"}, {"answer": "SELECT final FROM table_name_60 WHERE run_3 = \"1:57.41\"", "question": "What is Final, when Run 3 is 1:57.41?", "context": "CREATE TABLE table_name_60 (final VARCHAR, run_3 VARCHAR)"}, {"answer": "SELECT run_3 FROM table_name_73 WHERE team = \"united states (usa) usa i\"", "question": "What is Run 3, when Team is United States (USA) USA I?", "context": "CREATE TABLE table_name_73 (run_3 VARCHAR, team VARCHAR)"}, {"answer": "SELECT position FROM table_name_95 WHERE points = 30 AND passenger = \"reiner stuyvenberg\"", "question": "Which position has 30 points and Reiner Stuyvenberg as a passenger?", "context": "CREATE TABLE table_name_95 (position VARCHAR, points VARCHAR, passenger VARCHAR)"}, {"answer": "SELECT passenger FROM table_name_89 WHERE position = \"21\" AND points < 49", "question": "Which passenger has a position of 21 and less than 49 points?", "context": "CREATE TABLE table_name_89 (passenger VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT wins FROM table_name_12 WHERE points > 145 AND passenger = \"sven verbrugge\" AND races < 17", "question": "What were the wins with more than 145 points, less than 17 races, and Sven Verbrugge as a passenger?", "context": "CREATE TABLE table_name_12 (wins VARCHAR, races VARCHAR, points VARCHAR, passenger VARCHAR)"}, {"answer": "SELECT passenger FROM table_name_55 WHERE season = \"2009\" AND races = 17", "question": "Who is the passenger in 2009 season with 17 races?", "context": "CREATE TABLE table_name_55 (passenger VARCHAR, season VARCHAR, races VARCHAR)"}, {"answer": "SELECT position FROM table_name_83 WHERE nationality = \"brazil\" AND goals = 27 AND name = \"neca\"", "question": "WHAT IS THE POSITION FOR BRAZIL, WITH 27 GOALS, AND FOR NECA?", "context": "CREATE TABLE table_name_83 (position VARCHAR, name VARCHAR, nationality VARCHAR, goals VARCHAR)"}, {"answer": "SELECT s\u00e3o_paulo_career FROM table_name_45 WHERE appearances < 201 AND goals < 2 AND name = \"ricardo rocha\"", "question": "WHAT SAN PAULO CAREER HAD SMALLER THAN 201 APPEARANCES, SMALLER THAN 2 GOALS, AND FOR RICARDO ROCHA?", "context": "CREATE TABLE table_name_45 (s\u00e3o_paulo_career VARCHAR, name VARCHAR, appearances VARCHAR, goals VARCHAR)"}, {"answer": "SELECT display FROM table_name_21 WHERE iso_range = \"80-800\" AND seconds_frame = 0.8", "question": "Which display has an ISO range of 80-800, and 0.8 Seconds/Frame?", "context": "CREATE TABLE table_name_21 (display VARCHAR, iso_range VARCHAR, seconds_frame VARCHAR)"}, {"answer": "SELECT vale_royal FROM table_name_20 WHERE religion = \"jewish\"", "question": "WHAT IS THE VALE ROYAL WITH THE JEWISH RELIGION?", "context": "CREATE TABLE table_name_20 (vale_royal VARCHAR, religion VARCHAR)"}, {"answer": "SELECT serial FROM table_name_91 WHERE outcome = \"failure\" AND date = \"1959-01-27\"", "question": "On 1959-01-27 when outcome was failure, what is the serial?", "context": "CREATE TABLE table_name_91 (serial VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE serial = \"11c\"", "question": "Which date has serial of 11c?", "context": "CREATE TABLE table_name_28 (date VARCHAR, serial VARCHAR)"}, {"answer": "SELECT apogee FROM table_name_5 WHERE date = \"1959-02-20\"", "question": "Which Apogee was on 1959-02-20?", "context": "CREATE TABLE table_name_5 (apogee VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE time___gmt__ = \"23:34\"", "question": "Which date has time (GMT) of 23:34?", "context": "CREATE TABLE table_name_45 (date VARCHAR, time___gmt__ VARCHAR)"}, {"answer": "SELECT cross_country FROM table_name_35 WHERE soccer = \"ashland\" AND volleyball = \"wooster\" AND school_year = \"2006-07\"", "question": "What is Cross Country, when Soccer is Ashland, when Volleyball is Wooster, and when School Year is 2006-07?", "context": "CREATE TABLE table_name_35 (cross_country VARCHAR, school_year VARCHAR, soccer VARCHAR, volleyball VARCHAR)"}, {"answer": "SELECT school_year FROM table_name_19 WHERE cross_country = \"wooster\"", "question": "What is School Year, when Cross Country is Wooster?", "context": "CREATE TABLE table_name_19 (school_year VARCHAR, cross_country VARCHAR)"}, {"answer": "SELECT tennis FROM table_name_29 WHERE school_year = \"2004-05\"", "question": "What is Tennis, when School Year is 2004-05?", "context": "CREATE TABLE table_name_29 (tennis VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT cross_country FROM table_name_90 WHERE school_year = \"2012-13\"", "question": "What is Cross Country, when School Year is 2012-13?", "context": "CREATE TABLE table_name_90 (cross_country VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT school_year FROM table_name_9 WHERE cross_country = \"lexington\" AND soccer = \"ashland\" AND volleyball = \"wooster\"", "question": "What is School Year, when Cross Country is Lexington, when Soccer is Ashland, and when Volleyball is Wooster?", "context": "CREATE TABLE table_name_9 (school_year VARCHAR, volleyball VARCHAR, cross_country VARCHAR, soccer VARCHAR)"}, {"answer": "SELECT soccer FROM table_name_74 WHERE cross_country = \"lexington\" AND school_year = \"2011-12\"", "question": "What is Soccer, when Cross Country is Lexington, and when School Year is 2011-12?", "context": "CREATE TABLE table_name_74 (soccer VARCHAR, cross_country VARCHAR, school_year VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_36 WHERE result = \"l 26-16\" AND week < 12", "question": "What is the highest Attendance, when Result is l 26-16, and when Week is less than 12?", "context": "CREATE TABLE table_name_36 (attendance INTEGER, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_89 WHERE result = \"w 34-21\"", "question": "What is the highest Week, when Result is W 34-21?", "context": "CREATE TABLE table_name_89 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_22 WHERE position = \"2nd\"", "question": "What is the most recent year with a finish in 2nd position?", "context": "CREATE TABLE table_name_22 (season INTEGER, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_62 WHERE season > 2004", "question": "What is the position in the 2004 season?", "context": "CREATE TABLE table_name_62 (position VARCHAR, season INTEGER)"}, {"answer": "SELECT division FROM table_name_60 WHERE season < 2004", "question": "What is the division for the season earlier than 2004?", "context": "CREATE TABLE table_name_60 (division VARCHAR, season INTEGER)"}, {"answer": "SELECT team FROM table_name_70 WHERE qual_1 = \"1:16.417\"", "question": "What is Team, when Qual 1 is 1:16.417?", "context": "CREATE TABLE table_name_70 (team VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT team FROM table_name_65 WHERE qual_1 = \"1:16.417\"", "question": "What is Team, when Qual 1 is 1:16.417?", "context": "CREATE TABLE table_name_65 (team VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT team FROM table_name_57 WHERE qual_1 = \"1:20.139\"", "question": "What is Team when Qual 1 is 1:20.139?", "context": "CREATE TABLE table_name_57 (team VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT name FROM table_name_36 WHERE qual_2 = \"1:15.582\"", "question": "What is Name when Qual 2 is 1:15.582?", "context": "CREATE TABLE table_name_36 (name VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT name FROM table_name_44 WHERE best = \"1:15.673\"", "question": "What is Name, when Best is 1:15.673?", "context": "CREATE TABLE table_name_44 (name VARCHAR, best VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_18 WHERE date = 1987 AND surface = \"clay\"", "question": "Where was the tournament that happened in 1987 on a clay surface?", "context": "CREATE TABLE table_name_18 (tournament VARCHAR, date VARCHAR, surface VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_48 WHERE date < 1990 AND partnering = \"yannick noah\" AND score = \"4\u20136, 6\u20133, 6\u20134\"", "question": "Who was the opponent before 1990 that had a score of 4\u20136, 6\u20133, 6\u20134 and Partnering of Yannick Noah?", "context": "CREATE TABLE table_name_48 (opponent_in_the_final VARCHAR, score VARCHAR, date VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT seats_in_hamburgische_b\u00fcrgerschaft FROM table_name_83 WHERE ideology = \"green politics\"", "question": "WHAT IS THE SEATS IN Hamburgische B\u00fcrgerschaft THAT HAS GREEN POLITICS?", "context": "CREATE TABLE table_name_83 (seats_in_hamburgische_b\u00fcrgerschaft VARCHAR, ideology VARCHAR)"}, {"answer": "SELECT abbr FROM table_name_70 WHERE votes__2011_ = \"11.2%\"", "question": "WHAT IS THE ABBR WITH VOTES OF 11.2% IN 2011?", "context": "CREATE TABLE table_name_70 (abbr VARCHAR, votes__2011_ VARCHAR)"}, {"answer": "SELECT COUNT(seats_in_hamburgische_b\u00fcrgerschaft) FROM table_name_18 WHERE abbr = \"b\u00fcndnis 90 / die gr\u00fcnen (gal)\"", "question": "WHAT IS THE TOTAL NUMBER OF SEATS IN Hamburgische B\u00fcrgerschaft WITH AN ABBR OF b\u00fcndnis 90 / die gr\u00fcnen (gal)?", "context": "CREATE TABLE table_name_18 (seats_in_hamburgische_b\u00fcrgerschaft VARCHAR, abbr VARCHAR)"}, {"answer": "SELECT name__german_ FROM table_name_85 WHERE ideology = \"liberalism\"", "question": "WHAT IS THE GERMAN NAME OF LIBERALISM?", "context": "CREATE TABLE table_name_85 (name__german_ VARCHAR, ideology VARCHAR)"}, {"answer": "SELECT seats_in_hamburgische_b\u00fcrgerschaft FROM table_name_57 WHERE name__english_ = \"alliance '90/the greens\"", "question": "WHAT ARE THE SEATS IN Hamburgische B\u00fcrgerschaft WITH THE NAME alliance '90/the greens?", "context": "CREATE TABLE table_name_57 (seats_in_hamburgische_b\u00fcrgerschaft VARCHAR, name__english_ VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_99 WHERE location = \"td waterhouse centre\"", "question": "What is the earliest game played at the TD Waterhouse Centre?", "context": "CREATE TABLE table_name_99 (game INTEGER, location VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_56 WHERE date = \"april 2\"", "question": "Who was the opponent on April 2?", "context": "CREATE TABLE table_name_56 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_5 WHERE opponent = \"miami heat\"", "question": "What was the highest game number when the opponent was the Miami Heat?", "context": "CREATE TABLE table_name_5 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT website FROM table_name_55 WHERE license = \"apache license 2.0\"", "question": "What is Website, when License is Apache License 2.0?", "context": "CREATE TABLE table_name_55 (website VARCHAR, license VARCHAR)"}, {"answer": "SELECT source_version FROM table_name_10 WHERE target_version = \"java 7, 6, 5\"", "question": "What is Source Version, when Target Version is Java 7, 6, 5?", "context": "CREATE TABLE table_name_10 (source_version VARCHAR, target_version VARCHAR)"}, {"answer": "SELECT source_version FROM table_name_42 WHERE license = \"lgpl or mpl\"", "question": "What is Source Version, when License is LGPL or MPL?", "context": "CREATE TABLE table_name_42 (source_version VARCHAR, license VARCHAR)"}, {"answer": "SELECT target_version FROM table_name_91 WHERE last_release = \"2009-08-09, 1.2.9\"", "question": "What is Target Version, when Last Release is 2009-08-09, 1.2.9?", "context": "CREATE TABLE table_name_91 (target_version VARCHAR, last_release VARCHAR)"}, {"answer": "SELECT website FROM table_name_25 WHERE last_release = \"2009-08-09, 1.2.9\"", "question": "What is Website, when Last Release is 2009-08-09, 1.2.9?", "context": "CREATE TABLE table_name_25 (website VARCHAR, last_release VARCHAR)"}, {"answer": "SELECT target_version FROM table_name_68 WHERE license = \"lgpl or mpl\"", "question": "What is Target Version, when License is LGPL or MPL?", "context": "CREATE TABLE table_name_68 (target_version VARCHAR, license VARCHAR)"}, {"answer": "SELECT class FROM table_name_12 WHERE erp_w = 500", "question": "What is the class for the ERP W of 500?", "context": "CREATE TABLE table_name_12 (class VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT AVG(erp_w) FROM table_name_59 WHERE call_sign = \"k248bj\" AND frequency_mhz > 97.5", "question": "What is the ERP W for the station whose call sign is K248BJ and whose frequency MHz is higher than 97.5?", "context": "CREATE TABLE table_name_59 (erp_w INTEGER, call_sign VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_60 WHERE frequency_mhz = 102.3 AND erp_w < 1 OFFSET 000", "question": "In which city is the station licensed whose frequency MHz is higher than 102.3 and the ERP W is lower than 1,000?", "context": "CREATE TABLE table_name_60 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_28 WHERE frequency_mhz > 102.3 AND call_sign = \"k292eu\"", "question": "In which city is the station licensed whose frequency MHz is higher than 102.3 and whose call sign is K292EU?", "context": "CREATE TABLE table_name_28 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT SUM(purse___us_) AS $__ FROM table_name_58 WHERE country = \"sweden\"", "question": "What was sweden's purse in USD?", "context": "CREATE TABLE table_name_58 (purse___us_ INTEGER, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_31 WHERE year = 2003", "question": "What was 2003's To Par?", "context": "CREATE TABLE table_name_31 (to_par VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_82 WHERE grid = 7", "question": "What is the highest laps for the grid of 7?", "context": "CREATE TABLE table_name_82 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_4 WHERE time_retired = \"+16.874 secs\" AND grid < 5", "question": "What are the average Laps for the time/retired of +16.874 secs, and a grid less than 5?", "context": "CREATE TABLE table_name_4 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_88 WHERE time_retired = \"+32.256 secs\" AND grid > 12", "question": "What are the greatest points for a time/retired of +32.256 secs, and a a grid larger than 12?", "context": "CREATE TABLE table_name_88 (points INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_86 WHERE laps = 65", "question": "What is biggest grid when the laps are 65?", "context": "CREATE TABLE table_name_86 (grid INTEGER, laps VARCHAR)"}, {"answer": "SELECT team FROM table_name_6 WHERE grid = 15", "question": "What team has a grid of 15?", "context": "CREATE TABLE table_name_6 (team VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(new_council) FROM table_name_57 WHERE election_result < 0", "question": "What is the average new council number when the election result is smaller than 0?", "context": "CREATE TABLE table_name_57 (new_council INTEGER, election_result INTEGER)"}, {"answer": "SELECT SUM(seats_up_for_election) FROM table_name_10 WHERE election_result = 9 AND new_council > 27", "question": "How many seats were up for election during the vote where the election result was 9 and the new council 27?", "context": "CREATE TABLE table_name_10 (seats_up_for_election INTEGER, election_result VARCHAR, new_council VARCHAR)"}, {"answer": "SELECT AVG(staying_councillors) FROM table_name_42 WHERE election_result > 0 AND party = \"conservatives\" AND new_council < 27", "question": "How many staying councillors were there when the election result was larger than 0, the new council less than 27 and the party conservatives?", "context": "CREATE TABLE table_name_42 (staying_councillors INTEGER, new_council VARCHAR, election_result VARCHAR, party VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_93 WHERE date = \"november 16\"", "question": "What opponent did the Broncos play on November 16?", "context": "CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_98 WHERE game_site = \"mile high stadium\" AND opponent = \"detroit lions\"", "question": "What was the Bronco's record when they played the Detroit Lions at Mile High Stadium?", "context": "CREATE TABLE table_name_98 (record VARCHAR, game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_8 WHERE date = \"november 22\"", "question": "What was the score of the game on November 22?", "context": "CREATE TABLE table_name_8 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_50 WHERE attendance = \"1,500\"", "question": "What is the lowest number of points scored when there were 1,500 in attendance?", "context": "CREATE TABLE table_name_50 (points INTEGER, attendance VARCHAR)"}, {"answer": "SELECT SUM(2001) FROM table_name_73 WHERE year = \"ebitda\" AND 2009 < 3 OFFSET 600", "question": "what is 2001 when the year is ebitda and 2009 is less than 3,600?", "context": "CREATE TABLE table_name_73 (year VARCHAR)"}, {"answer": "SELECT author FROM table_name_17 WHERE title = \"harry potter and the deathly hallows\"", "question": "who is the author for harry potter and the deathly hallows?", "context": "CREATE TABLE table_name_17 (author VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_94 WHERE citation = \"honor\" AND narrator = \"lincoln hoppe\"", "question": "what is the title when the citation is honor and the narrator is lincoln hoppe?", "context": "CREATE TABLE table_name_94 (title VARCHAR, citation VARCHAR, narrator VARCHAR)"}, {"answer": "SELECT producer FROM table_name_17 WHERE narrator = \"katherine kellgren\" AND year < 2013 AND author = \"karen cushman\"", "question": "who is the producer when the narrator is katherine kellgren, the year is before 2013 and the author is karen cushman?", "context": "CREATE TABLE table_name_17 (producer VARCHAR, author VARCHAR, narrator VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_37 WHERE citation = \"honor\" AND author = \"kadir nelson\"", "question": "what is the year when the citation is honor and the author is kadir nelson?", "context": "CREATE TABLE table_name_37 (year INTEGER, citation VARCHAR, author VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_33 WHERE year = 1942", "question": "What is Opponent In The Final, when Year is \"1942\"?", "context": "CREATE TABLE table_name_33 (opponent_in_the_final VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_98 WHERE outcome = \"winner\"", "question": "What is the average Year, when Outcome is \"Winner\"?", "context": "CREATE TABLE table_name_98 (year INTEGER, outcome VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_54 WHERE opponent_in_the_final = \"julia kimmelmann\"", "question": "What tournament did Pemra \u00d6zgen play against julia kimmelmann in the finals?", "context": "CREATE TABLE table_name_54 (tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT home FROM table_name_44 WHERE visitor = \"nashville\"", "question": "Which Home has a Visitor of nashville?", "context": "CREATE TABLE table_name_44 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_63 WHERE decision = \"osgood\" AND date = \"february 15\"", "question": "Which Visitor has a Decision of osgood, and a Date of february 15?", "context": "CREATE TABLE table_name_63 (visitor VARCHAR, decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE record = \"36\u201311\u20137\"", "question": "Which Date has a Record of 36\u201311\u20137?", "context": "CREATE TABLE table_name_15 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE visitor = \"edmonton\"", "question": "Which Date has a Visitor of edmonton?", "context": "CREATE TABLE table_name_24 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_49 WHERE gold < 1 AND total > 1 AND rank = 10", "question": "What is the sum of Bronze, when Gold is less than 1, when Total is greater than 1, and when Rank is 10?", "context": "CREATE TABLE table_name_49 (bronze INTEGER, rank VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_78 WHERE rank > 6 AND nation = \"italy (ita)\" AND total < 1", "question": "What is the average Bronze, when Rank is greater than 6, when Nation is Italy (ITA), and when Total is less than 1?", "context": "CREATE TABLE table_name_78 (bronze INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_14 WHERE silver > 1 AND rank = 9 AND bronze > 0", "question": "What is the sum of Total, when Silver is greater than 1, when Rank is 9, and when Bronze is greater than 0?", "context": "CREATE TABLE table_name_14 (total INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_95 WHERE total = 2 AND silver < 1 AND rank > 5", "question": "What is the average Gold, when Total is 2, when Silver is less than 1, and when Rank is greater than 5?", "context": "CREATE TABLE table_name_95 (gold INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_32 WHERE bronze < 1 AND nation = \"switzerland (sui)\" AND total < 2", "question": "What is the sum of Rank, when Bronze is less than 1, when Nation is Switzerland (SUI), and when Total is less than 2?", "context": "CREATE TABLE table_name_32 (rank INTEGER, total VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_87 WHERE silver > 1 AND nation = \"germany (ger)\" AND gold < 1", "question": "What is the sum of Total, when Silver is greater than 1, when Nation is Germany (GER), and when Gold is less than 1?", "context": "CREATE TABLE table_name_87 (total INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT player FROM table_name_10 WHERE to_par = 7 AND score = 73 - 72 - 67 - 75 = 287", "question": "What is Player, when To Par is \"7\", and when Score is \"73-72-67-75=287\"?", "context": "CREATE TABLE table_name_10 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_20 WHERE player = \"billy casper\"", "question": "What is the average To Par, when Player is \"Billy Casper\"?", "context": "CREATE TABLE table_name_20 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_11 WHERE to_par < 2", "question": "What is the highest Money ( $ ), when To Par is less than 2?", "context": "CREATE TABLE table_name_11 (money___ INTEGER, to_par INTEGER)"}, {"answer": "SELECT event FROM table_name_39 WHERE res = \"win\" AND location = \"guam\" AND opponent = \"patrick madayag\"", "question": "What event in guam did Tetsuji Kato win against patrick madayag?", "context": "CREATE TABLE table_name_39 (event VARCHAR, opponent VARCHAR, res VARCHAR, location VARCHAR)"}, {"answer": "SELECT res FROM table_name_73 WHERE record = \"19-9\"", "question": "What was the result of the fight when Tetsuji Kato's record was 19-9?", "context": "CREATE TABLE table_name_73 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(reception) FROM table_name_12 WHERE long < 7", "question": "How many receptions were smaller than 7?", "context": "CREATE TABLE table_name_12 (reception VARCHAR, long INTEGER)"}, {"answer": "SELECT AVG(yards) FROM table_name_81 WHERE games > 15 AND reception > 2 AND player = \"jimmie giles\"", "question": "What is the average yards for Jimmie Giles in a game larger than 15 and reception larger than 2?", "context": "CREATE TABLE table_name_81 (yards INTEGER, player VARCHAR, games VARCHAR, reception VARCHAR)"}, {"answer": "SELECT year FROM table_name_63 WHERE league_position = \"8/12\"", "question": "What year had a league position of 8/12?", "context": "CREATE TABLE table_name_63 (year VARCHAR, league_position VARCHAR)"}, {"answer": "SELECT league FROM table_name_88 WHERE league_position = \"8/13\"", "question": "What league has a position of 8/13?", "context": "CREATE TABLE table_name_88 (league VARCHAR, league_position VARCHAR)"}, {"answer": "SELECT year FROM table_name_93 WHERE league = \"malaysia premier league\" AND league_position = \"8/12\"", "question": "What year did the malaysia premier league get a position of 8/12?", "context": "CREATE TABLE table_name_93 (year VARCHAR, league VARCHAR, league_position VARCHAR)"}, {"answer": "SELECT year FROM table_name_70 WHERE cup_position = \"round 1\" AND league_position = \"5/12\"", "question": "What year had a cup position of round 1 and a league position of 5/12?", "context": "CREATE TABLE table_name_70 (year VARCHAR, cup_position VARCHAR, league_position VARCHAR)"}, {"answer": "SELECT year FROM table_name_9 WHERE domestic_cup = \"singapore cup\"", "question": "What year had a domestic cup of singapore cup?", "context": "CREATE TABLE table_name_9 (year VARCHAR, domestic_cup VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_75 WHERE rider = \"olivier jacque\" AND grid > 7", "question": "How many Laps have Rider of olivier jacque, and a Grid larger than 7?", "context": "CREATE TABLE table_name_75 (laps INTEGER, rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_93 WHERE manufacturer = \"suzuki\" AND grid < 16", "question": "Which Laps have a Manufacturer of suzuki, and a Grid smaller than 16?", "context": "CREATE TABLE table_name_93 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_87 WHERE grid > 9 AND time_retired = \"+32.354\"", "question": "How many Laps have a Grid larger than 9, and a Time/Retired of +32.354?", "context": "CREATE TABLE table_name_87 (laps VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT record FROM table_name_30 WHERE date = \"oct 19\"", "question": "What is Record, when Date is Oct 19?", "context": "CREATE TABLE table_name_30 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_1 WHERE opponent = \"montreal alouettes\" AND date = \"oct 4\"", "question": "What is Attendance, when Opponent is Montreal Alouettes, and when Date is Oct 4?", "context": "CREATE TABLE table_name_1 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_67 WHERE result = \"win\" AND date = \"aug 7\"", "question": "What is Opponent, when Result is Win, and when Date is Aug 7?", "context": "CREATE TABLE table_name_67 (opponent VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE score = \"115-93\"", "question": "what is the date when the score is 115-93?", "context": "CREATE TABLE table_name_68 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_64 WHERE away_team = \"new zealand breakers\" AND venue = \"cairns convention centre\"", "question": "what is the average crowd when the away team is new zealand breakers and the venue is cairns convention centre?", "context": "CREATE TABLE table_name_64 (crowd INTEGER, away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_62 WHERE home_team = \"wollongong hawks\"", "question": "how many times is the home team wollongong hawks?", "context": "CREATE TABLE table_name_62 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE venue = \"gold coast convention centre\"", "question": "what is the date when the venue is gold coast convention centre?", "context": "CREATE TABLE table_name_70 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_45 WHERE points < 67 AND home = \"calgary flames\"", "question": "Which Score has Points smaller than 67, and a Home of calgary flames?", "context": "CREATE TABLE table_name_45 (score VARCHAR, points VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE score = \"4\u20132\"", "question": "Whic Date has a Score of 4\u20132?", "context": "CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT decision FROM table_name_53 WHERE record = \"29\u201318\u20136\"", "question": "Which Decision has a Record of 29\u201318\u20136?", "context": "CREATE TABLE table_name_53 (decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE score = \"4\u20132\"", "question": "Which Date has a Score of 4\u20132?", "context": "CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_93 WHERE years = \"1975\" AND seasons < 1", "question": "How many losses did the coach who served under 1 season and in 1975 have?", "context": "CREATE TABLE table_name_93 (lost VARCHAR, years VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT MIN(seasons) FROM table_name_2 WHERE name = \"kathy graham\"", "question": "What is the number of seasons coached by Kathy Graham?", "context": "CREATE TABLE table_name_2 (seasons INTEGER, name VARCHAR)"}, {"answer": "SELECT result FROM table_name_80 WHERE date = \"september 25, 1966\"", "question": "What is the result on September 25, 1966?", "context": "CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_54 WHERE week > 10 AND date = \"november 20, 1966\"", "question": "What is the attendance of the game on November 20, 1966 after week 10?", "context": "CREATE TABLE table_name_54 (attendance VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_73 WHERE week = 2", "question": "Who is the opponent on week 2?", "context": "CREATE TABLE table_name_73 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_88 WHERE date = \"november 20, 1966\"", "question": "Who is the opponent on November 20, 1966?", "context": "CREATE TABLE table_name_88 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_59 WHERE home = \"ny islanders\"", "question": "What is the attendance of the game with the NY Islanders as home team?", "context": "CREATE TABLE table_name_59 (attendance VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE opponent = \"seattle\"", "question": "What was the date of the game against seattle?", "context": "CREATE TABLE table_name_52 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_82 WHERE game = 30", "question": "Who were the opponents during game 30?", "context": "CREATE TABLE table_name_82 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_52 WHERE score = \"78-59\"", "question": "What was the record during the game with a score of 78-59?", "context": "CREATE TABLE table_name_52 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_95 WHERE state_province = \"maryland\" AND league = \"mlb\"", "question": "Which mlb team is located in maryland?", "context": "CREATE TABLE table_name_95 (team VARCHAR, state_province VARCHAR, league VARCHAR)"}, {"answer": "SELECT team FROM table_name_5 WHERE city = \"brooklyn\"", "question": "What team is located in brooklyn?", "context": "CREATE TABLE table_name_5 (team VARCHAR, city VARCHAR)"}, {"answer": "SELECT est FROM table_name_6 WHERE state_province = \"alberta\" AND league = \"cfl\" AND city = \"edmonton\"", "question": "In what year was the cfl team in edmonton, alberta established?", "context": "CREATE TABLE table_name_6 (est VARCHAR, city VARCHAR, state_province VARCHAR, league VARCHAR)"}, {"answer": "SELECT est FROM table_name_96 WHERE state_province = \"illinois\" AND city = \"chicago\" AND league = \"nfl\"", "question": "In what year was the NFL team in chicago illinois established?", "context": "CREATE TABLE table_name_96 (est VARCHAR, league VARCHAR, state_province VARCHAR, city VARCHAR)"}, {"answer": "SELECT team FROM table_name_99 WHERE state_province = \"missouri\" AND est = \"1963\"", "question": "Which team is located in missouri and was established in 1963?", "context": "CREATE TABLE table_name_99 (team VARCHAR, state_province VARCHAR, est VARCHAR)"}, {"answer": "SELECT event FROM table_name_23 WHERE name = \"ye shiwen\"", "question": "Which event was Ye Shiwen in?", "context": "CREATE TABLE table_name_23 (event VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_39 WHERE time = \"26.11\"", "question": "Who had a time of 26.11?", "context": "CREATE TABLE table_name_39 (name VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE time = \"2:16.08\"", "question": "What was the date in which the time was 2:16.08?", "context": "CREATE TABLE table_name_31 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT name FROM table_name_22 WHERE event = \"women's 200m medley\"", "question": "Who was in the women's 200m medley?", "context": "CREATE TABLE table_name_22 (name VARCHAR, event VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_62 WHERE round = \"semifinal\" AND time = \"29.51\"", "question": "What was the nationality of the swimmer in the semifinal with a time of 29.51?", "context": "CREATE TABLE table_name_62 (nationality VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT country FROM table_name_76 WHERE score = 67", "question": "What country scored 67?", "context": "CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_7 WHERE player = \"tino schuster\"", "question": "What was the to par for Tino Schuster?", "context": "CREATE TABLE table_name_7 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_64 WHERE player = \"scott verplank\"", "question": "What country has player Scott Verplank?", "context": "CREATE TABLE table_name_64 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT type FROM table_name_11 WHERE e_coli = \"muty\"", "question": "What is the type of glycosylase that has an E. coli of Muty?", "context": "CREATE TABLE table_name_11 (type VARCHAR, e_coli VARCHAR)"}, {"answer": "SELECT e_coli FROM table_name_78 WHERE human = \"hneil1\"", "question": "Which E. coli has a human value of HNEIL1?", "context": "CREATE TABLE table_name_78 (e_coli VARCHAR, human VARCHAR)"}, {"answer": "SELECT e_coli FROM table_name_22 WHERE substrates = \"uracil\"", "question": "Which E. coli has a substrate of uracil?", "context": "CREATE TABLE table_name_22 (e_coli VARCHAR, substrates VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_11 WHERE method = \"tko (doctor stoppage)\" AND res = \"loss\"", "question": "The tko (doctor stoppage) method was used in a loss against which opponent?", "context": "CREATE TABLE table_name_11 (opponent VARCHAR, method VARCHAR, res VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_21 WHERE method = \"submission (choke)\"", "question": "How many total rounds used the submission (choke) method?", "context": "CREATE TABLE table_name_21 (round INTEGER, method VARCHAR)"}, {"answer": "SELECT time FROM table_name_75 WHERE method = \"tko (doctor stoppage)\" AND record = \"9-0\"", "question": "What was the time of the match with a record of 9-0 and used the tko (doctor stoppage) method?", "context": "CREATE TABLE table_name_75 (time VARCHAR, method VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_64 WHERE event = \"ufc 16\" AND record = \"19-1-1\"", "question": "What was the lowest round number at the UFC 16 event with a record of 19-1-1?", "context": "CREATE TABLE table_name_64 (round INTEGER, event VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(opponents) FROM table_name_85 WHERE game = 9 AND attendance < 60 OFFSET 091", "question": "What was the highest number of oppenents points recorded for game 9 when the attendance was less than 60,091?", "context": "CREATE TABLE table_name_85 (opponents INTEGER, game VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT event FROM table_name_94 WHERE opponent = \"bill parker\"", "question": "What event did tedd williams fight bill parker?", "context": "CREATE TABLE table_name_94 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_10 WHERE opponent = \"travis fulton\"", "question": "What round did the fight against travis fulton last?", "context": "CREATE TABLE table_name_10 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_72 WHERE player = \"scott deibert\"", "question": "How many times is the player scott deibert?", "context": "CREATE TABLE table_name_72 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_68 WHERE player = \"william loftus\"", "question": "what is the pick # for william loftus?", "context": "CREATE TABLE table_name_68 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_68 WHERE position = \"d\"", "question": "what is the cfl team for position d?", "context": "CREATE TABLE table_name_68 (cfl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT league_goals FROM table_name_61 WHERE club = \"wolverhampton wanderers\"", "question": "what was the total for the Wolverhampton Wanderers?", "context": "CREATE TABLE table_name_61 (league_goals VARCHAR, club VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_42 WHERE result = \"l 20-17\"", "question": "How many were in attendance when the result was l 20-17?", "context": "CREATE TABLE table_name_42 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT third_vice_skip FROM table_name_13 WHERE second = \"\u00e9ric sylvain\"", "question": "Which Third/Vice skip has a Second of \u00e9ric sylvain?", "context": "CREATE TABLE table_name_13 (third_vice_skip VARCHAR, second VARCHAR)"}, {"answer": "SELECT lead FROM table_name_73 WHERE skip = \"mike mcewen\"", "question": "Which Lead has a Skip of mike mcewen?", "context": "CREATE TABLE table_name_73 (lead VARCHAR, skip VARCHAR)"}, {"answer": "SELECT city FROM table_name_52 WHERE lead = \"steve gould\"", "question": "Which City has a Lead of steve gould?", "context": "CREATE TABLE table_name_52 (city VARCHAR, lead VARCHAR)"}, {"answer": "SELECT lead FROM table_name_17 WHERE city = \"winnipeg\" AND third_vice_skip = \"kevin park\"", "question": "Which Lead has a City of winnipeg, and a Third/Vice skip of kevin park?", "context": "CREATE TABLE table_name_17 (lead VARCHAR, city VARCHAR, third_vice_skip VARCHAR)"}, {"answer": "SELECT city FROM table_name_95 WHERE lead = \"tyler forrest\"", "question": "Which City has a Lead of tyler forrest?", "context": "CREATE TABLE table_name_95 (city VARCHAR, lead VARCHAR)"}, {"answer": "SELECT lead FROM table_name_95 WHERE skip = \"ted appelman\"", "question": "Which Lead has a Skip of ted appelman?", "context": "CREATE TABLE table_name_95 (lead VARCHAR, skip VARCHAR)"}, {"answer": "SELECT album FROM table_name_66 WHERE number = 10", "question": "Which album is #10?", "context": "CREATE TABLE table_name_66 (album VARCHAR, number VARCHAR)"}, {"answer": "SELECT place FROM table_name_21 WHERE player = \"ben hogan\"", "question": "What is Ben Hogan's Place?", "context": "CREATE TABLE table_name_21 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_74 WHERE player = \"jerry barber\"", "question": "What is Jerry Barber's To par?", "context": "CREATE TABLE table_name_74 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE place = \"t2\" AND player = \"dow finsterwald\"", "question": "What is the Score of T2 Place Player Dow Finsterwald?", "context": "CREATE TABLE table_name_12 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_1 WHERE country = \"united states\" AND score = 71 - 71 = 142", "question": "What's the to par of the United States with the score of 71-71=142?", "context": "CREATE TABLE table_name_1 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_8 WHERE score = 71 - 70 = 141", "question": "What place had a score of 71-70=141?", "context": "CREATE TABLE table_name_8 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_75 WHERE score = 72 - 69 = 141", "question": "Which player had a score of 72-69=141?", "context": "CREATE TABLE table_name_75 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE place = \"t7\"", "question": "What is the score of T7 place?", "context": "CREATE TABLE table_name_69 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_49 WHERE player = \"ben hogan\"", "question": "What place is Ben Hogan?", "context": "CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_46 WHERE to_par = \"e\"", "question": "What place has a to par of E?", "context": "CREATE TABLE table_name_46 (place VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_52 WHERE player = \"j.d. hill\"", "question": "What pick was J.D. Hill?", "context": "CREATE TABLE table_name_52 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_70 WHERE position = \"defensive end\" AND round = 8", "question": "What pick was used to select a Defensive End in round 8?", "context": "CREATE TABLE table_name_70 (pick INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT winner FROM table_name_28 WHERE jockey = \"jerry bailey\" AND owner = \"overbrook farm\"", "question": "which winner has a jockery containing jerry bailey and the owner of overbrook farm?", "context": "CREATE TABLE table_name_28 (winner VARCHAR, jockey VARCHAR, owner VARCHAR)"}, {"answer": "SELECT time FROM table_name_55 WHERE owner = \"maine chance farm\"", "question": "What time contains the owner of maine chance farm?", "context": "CREATE TABLE table_name_55 (time VARCHAR, owner VARCHAR)"}, {"answer": "SELECT time FROM table_name_39 WHERE jockey = \"isaac murphy\" AND winner = \"kingman\"", "question": "Which time contains the jockery of isaac murphy as well as the winner of kingman?", "context": "CREATE TABLE table_name_39 (time VARCHAR, jockey VARCHAR, winner VARCHAR)"}, {"answer": "SELECT owner FROM table_name_86 WHERE time = \"2:02.20\" AND year = \"1957\"", "question": "Which owner has the time of 2:02.20 and the year of 1957?", "context": "CREATE TABLE table_name_86 (owner VARCHAR, time VARCHAR, year VARCHAR)"}, {"answer": "SELECT owner FROM table_name_49 WHERE time = \"2:03.00\" AND year = \"1991 kd\"", "question": "Which owner has the time 2:03.00 and the year of 1991 kd?", "context": "CREATE TABLE table_name_49 (owner VARCHAR, time VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_13 WHERE lost > 5 AND position < 8 AND drawn > 1", "question": "What is the sum of the number played with more than 5 losses, more than 1 draw, and a position under 8?", "context": "CREATE TABLE table_name_13 (played INTEGER, drawn VARCHAR, lost VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_86 WHERE drawn < 1 AND name = \"ev aich\" AND lost > 11", "question": "What is the average number of points with less than 1 draw and more than 11 losses for Ev Aich?", "context": "CREATE TABLE table_name_86 (points INTEGER, lost VARCHAR, drawn VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_79 WHERE drawn > 2 AND position > 5", "question": "What is the sum of points for a position over 5 with more than 2 draws?", "context": "CREATE TABLE table_name_79 (points INTEGER, drawn VARCHAR, position VARCHAR)"}, {"answer": "SELECT nation FROM table_name_54 WHERE total = 1 AND bronze < 1", "question": "Which nation won no bronze medals and a 1 medal total?", "context": "CREATE TABLE table_name_54 (nation VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT result FROM table_name_32 WHERE week = 4", "question": "What was the result of the game in week 4?", "context": "CREATE TABLE table_name_32 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT party FROM table_name_20 WHERE election > 2012 AND inhabitants > 241 OFFSET 310", "question": "What party has more than 241,310 inhabitants after 2012?", "context": "CREATE TABLE table_name_20 (party VARCHAR, election VARCHAR, inhabitants VARCHAR)"}, {"answer": "SELECT MAX(inhabitants) FROM table_name_86 WHERE municipality = \"gela\"", "question": "Highest inhabitants from gela?", "context": "CREATE TABLE table_name_86 (inhabitants INTEGER, municipality VARCHAR)"}, {"answer": "SELECT AVG(casualties) FROM table_name_5 WHERE number = \"u-844\"", "question": "What is the average number of casualties for the convoy with a number of U-844?", "context": "CREATE TABLE table_name_5 (casualties INTEGER, number VARCHAR)"}, {"answer": "SELECT surface FROM table_name_9 WHERE opponent = \"ilija bozoljac\"", "question": "On what Surface was the match against Ilija Bozoljac played?", "context": "CREATE TABLE table_name_9 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_63 WHERE opponent = \"daniel elsner\"", "question": "What Tournament was against Daniel Elsner?", "context": "CREATE TABLE table_name_63 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE score = \"3\u20136, 7\u20136(6), 5\u20137\"", "question": "What is the Date of the Tournament with a Score of 3\u20136, 7\u20136(6), 5\u20137?", "context": "CREATE TABLE table_name_72 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_57 WHERE score = \"4\u20136, 4\u20136\" AND tournament = \"banja luka\"", "question": "What is the Opponent of the Banja Luka Tournament with a Score of 4\u20136, 4\u20136?", "context": "CREATE TABLE table_name_57 (opponent VARCHAR, score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE time = \"1:07.18\"", "question": "On what date was the record set with a time of 1:07.18?", "context": "CREATE TABLE table_name_44 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE event = \"team pursuit (8 laps)\"", "question": "On what date was a record set in the team pursuit (8 laps) event?", "context": "CREATE TABLE table_name_75 (date VARCHAR, event VARCHAR)"}, {"answer": "SELECT nation FROM table_name_23 WHERE event = \"1000 metres\"", "question": "What nation did the speed skater that set a record in the 1000 metres event represent?", "context": "CREATE TABLE table_name_23 (nation VARCHAR, event VARCHAR)"}, {"answer": "SELECT time FROM table_name_5 WHERE event = \"team pursuit (8 laps)\"", "question": "What was the record setting time in the team pursuit (8 laps) event?", "context": "CREATE TABLE table_name_5 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_15 WHERE points = 0 AND lost < 14", "question": "What is the total for the draw with 0 points, and less than 14 lost?", "context": "CREATE TABLE table_name_15 (draw INTEGER, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE team = \"@ new orleans\"", "question": "What date has @ new orleans as the team?", "context": "CREATE TABLE table_name_47 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_84 WHERE opponent = \"boston bruins\"", "question": "What is the sum of the game with the boston bruins as the opponent?", "context": "CREATE TABLE table_name_84 (game INTEGER, opponent VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_87 WHERE location = \"toronto\" AND points < 31", "question": "What is the total number of games at Toronto with less than 31 points?", "context": "CREATE TABLE table_name_87 (game VARCHAR, location VARCHAR, points VARCHAR)"}, {"answer": "SELECT years FROM table_name_81 WHERE jersey_number_s_ = \"55\"", "question": "What years did jersey number 55 play?", "context": "CREATE TABLE table_name_81 (years VARCHAR, jersey_number_s_ VARCHAR)"}, {"answer": "SELECT AVG(starts) FROM table_name_81 WHERE poles = 0 AND position = \"65th\" AND year < 2007", "question": "Before 2007, what was the avg start that had a pole of 0 and in 65th position?", "context": "CREATE TABLE table_name_81 (starts INTEGER, year VARCHAR, poles VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(starts) FROM table_name_66 WHERE winnings = \"$1,636,827\" AND avg_start < 37", "question": "How many starts had an avg start of less than 37 and won $1,636,827?", "context": "CREATE TABLE table_name_66 (starts INTEGER, winnings VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_90 WHERE avg_finish = 35 AND year = 1990 AND starts < 1", "question": "in 1990, how many wins had an avg finish of 35 and a start less than 1?", "context": "CREATE TABLE table_name_90 (wins INTEGER, starts VARCHAR, avg_finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_57 WHERE position = \"77th\" AND poles < 0", "question": "What year had a pole smaller than 0 and in 77th position?", "context": "CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, poles VARCHAR)"}, {"answer": "SELECT SUM(avg_finish) FROM table_name_91 WHERE year = 2007 AND starts < 1", "question": "in 2007, what is the avg finish that had a start less than 1?", "context": "CREATE TABLE table_name_91 (avg_finish INTEGER, year VARCHAR, starts VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE game > 4", "question": "What is Score, when Game is greater than 4?", "context": "CREATE TABLE table_name_1 (score VARCHAR, game INTEGER)"}, {"answer": "SELECT high_points FROM table_name_81 WHERE game = 3", "question": "What is High Points, when Game is \"3\"?", "context": "CREATE TABLE table_name_81 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE location_attendance = \"madison square garden unknown\" AND high_rebounds = \"sidney green (10)\"", "question": "What is Score, when Location Attendance is \"Madison Square Garden Unknown\", and when High Rebounds is \"Sidney Green (10)\"?", "context": "CREATE TABLE table_name_9 (score VARCHAR, location_attendance VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_15 WHERE location_attendance = \"madison square garden unknown\" AND date = \"may 18\"", "question": "What is High Rebounds, when Location Attendance is \"Madison Square Garden Unknown\", and when Date is \"May 18\"?", "context": "CREATE TABLE table_name_15 (high_rebounds VARCHAR, location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_69 WHERE location_attendance = \"madison square garden unknown\" AND high_points = \"alonzo mourning (24)\"", "question": "What is Team, when Location Attendance is \"Madison Square Garden Unknown\", and when High Points is \"Alonzo Mourning (24)\"?", "context": "CREATE TABLE table_name_69 (team VARCHAR, location_attendance VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_12 WHERE high_rebounds = \"ron artest (9)\"", "question": "What is High Points, when High Rebounds is \"Ron Artest (9)\"?", "context": "CREATE TABLE table_name_12 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE high_rebounds = \"yao ming (10)\"", "question": "What is Date, when High Rebounds is \"Yao Ming (10)\"?", "context": "CREATE TABLE table_name_86 (date VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE high_points = \"luis scola (18)\" AND high_rebounds = \"luis scola (11)\"", "question": "What is Score, when High Points is \"Luis Scola (18)\", and when High Rebounds is \"Luis Scola (11)\"?", "context": "CREATE TABLE table_name_93 (score VARCHAR, high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT team FROM table_name_49 WHERE high_points = \"tracy mcgrady (24)\"", "question": "What is Team, when High Points is \"Tracy McGrady (24)\"?", "context": "CREATE TABLE table_name_49 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT record FROM table_name_9 WHERE opponent = \"atlanta hawks\"", "question": "What is the record for the opponent Atlanta Hawks?", "context": "CREATE TABLE table_name_9 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE score = \"113-124\"", "question": "Which opponent had a 113-124 score?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE opponent = \"philadelphia 76ers\"", "question": "What is the final record for the Philadelphia 76ers?", "context": "CREATE TABLE table_name_58 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_82 WHERE opponent = \"detroit pistons\" AND date = \"march 7\"", "question": "What is the record for the Detroit Pistons on March 7?", "context": "CREATE TABLE table_name_82 (record VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_98 WHERE position = \"wr\"", "question": "What is the WR player?", "context": "CREATE TABLE table_name_98 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT length__m_ FROM table_name_46 WHERE name = \"koppenberg\"", "question": "What is the Length (m) of the Koppenberg course?", "context": "CREATE TABLE table_name_46 (length__m_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(kilometer) FROM table_name_15 WHERE pavement = \"asphalt\" AND length__m_ > 645 AND name = \"berendries\" AND average_climb___percentage_ < 7", "question": "What is the Kilometer of the Berendries asphalt course with an Average climb less than 7 and Length (m) longer than 645?", "context": "CREATE TABLE table_name_15 (kilometer INTEGER, average_climb___percentage_ VARCHAR, name VARCHAR, pavement VARCHAR, length__m_ VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_name_28 WHERE name = \"koppenberg\" AND kilometer < 195", "question": "What is the Number of the Koppenberg course with less than 195 Kilometers?", "context": "CREATE TABLE table_name_28 (number VARCHAR, name VARCHAR, kilometer VARCHAR)"}, {"answer": "SELECT part_3 FROM table_name_4 WHERE class = \"4\"", "question": "Which part three is class 4?", "context": "CREATE TABLE table_name_4 (part_3 VARCHAR, class VARCHAR)"}, {"answer": "SELECT part_1 FROM table_name_36 WHERE class = \"7d\"", "question": "Which part one is class 7d?", "context": "CREATE TABLE table_name_36 (part_1 VARCHAR, class VARCHAR)"}, {"answer": "SELECT part_3 FROM table_name_97 WHERE class = \"7b\"", "question": "Which part 3 has class 7b?", "context": "CREATE TABLE table_name_97 (part_3 VARCHAR, class VARCHAR)"}, {"answer": "SELECT class FROM table_name_14 WHERE part_2 = \"halp war\u00fe\"", "question": "Which class has a part 2 of halp war\u00fe?", "context": "CREATE TABLE table_name_14 (class VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT part_2 FROM table_name_70 WHERE verb_meaning = \"to leap\"", "question": "Which part 2 has a verb that means to leap?", "context": "CREATE TABLE table_name_70 (part_2 VARCHAR, verb_meaning VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_58 WHERE tournament = \"cincinnati\"", "question": "Who are the semifinalists when the tournament is in Cincinnati?", "context": "CREATE TABLE table_name_58 (semifinalists VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_91 WHERE week = \"march 12\"", "question": "What is the finalist in the week of March 12?", "context": "CREATE TABLE table_name_91 (finalist VARCHAR, week VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_14 WHERE week = \"may 7\"", "question": "What is the May 7 finalist?", "context": "CREATE TABLE table_name_14 (finalist VARCHAR, week VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_26 WHERE week = \"august 6\"", "question": "For the week of August 6, who is the finalist?", "context": "CREATE TABLE table_name_26 (finalist VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_98 WHERE college = \"jackson state\"", "question": "What is the lowest Pick #, when College is \"Jackson State\"?", "context": "CREATE TABLE table_name_98 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_49 WHERE round = 10", "question": "What is Pick #, when Round is \"10\"?", "context": "CREATE TABLE table_name_49 (pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE round > 8 AND pick__number > 234 AND college = \"louisville\"", "question": "What is Player, when Round is greater than 8, when Pick # is greater than 234, and when College is \"Louisville\"?", "context": "CREATE TABLE table_name_22 (player VARCHAR, college VARCHAR, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_84 WHERE player = \"gurnest brown\" AND pick__number > 180", "question": "What is the average Round, when Player is \"Gurnest Brown\", and when Pick # is greater than 180?", "context": "CREATE TABLE table_name_84 (round INTEGER, player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_6 WHERE college = \"louisville\" AND round < 10", "question": "What is the lowest Pick #, when College is \"Louisville\", and when Round is less than 10?", "context": "CREATE TABLE table_name_6 (pick__number INTEGER, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT class FROM table_name_21 WHERE frequency_mhz > 91.7 AND call_sign = \"k272ec\"", "question": "Which Class has a Frequency MHz larger than 91.7, and a Call sign of k272ec?", "context": "CREATE TABLE table_name_21 (class VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT MAX(frequency_mhz) FROM table_name_35 WHERE call_sign = \"k210dv\"", "question": "Which Frequency MHz has a Call sign of k210dv?", "context": "CREATE TABLE table_name_35 (frequency_mhz INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_22 WHERE frequency_mhz > 89.5 AND call_sign = \"k213el\"", "question": "Which City of license has a Frequency MHz larger than 89.5, and a Call sign of k213el?", "context": "CREATE TABLE table_name_22 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_54 WHERE frequency_mhz > 89.1 AND city_of_license = \"de queen, arkansas\"", "question": "Which ERP W has a Frequency MHz larger than 89.1, and a City of license of de queen, arkansas?", "context": "CREATE TABLE table_name_54 (erp_w VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_65 WHERE city_of_license = \"burley, idaho\" AND frequency_mhz = 89.5", "question": "Which FCC info has a City of license of burley, idaho, and a Frequency MHz of 89.5?", "context": "CREATE TABLE table_name_65 (fcc_info VARCHAR, city_of_license VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE surface = \"clay\" AND date = \"31 july 2007\"", "question": "For the game played on 31 July 2007 on clay what was the score?", "context": "CREATE TABLE table_name_42 (score VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE opponent = \"pablo and\u00fajar\"", "question": "When was Pablo And\u00fajar the opponent?", "context": "CREATE TABLE table_name_38 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT decision FROM table_name_20 WHERE visitor = \"buffalo\"", "question": "What is the decision when Buffalo was the visitor?", "context": "CREATE TABLE table_name_20 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_67 WHERE home = \"minnesota\"", "question": "Who is the visiting team when Minnesota is the home team?", "context": "CREATE TABLE table_name_67 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE home = \"phoenix\"", "question": "What is the date of the match when Phoenix is the home team?", "context": "CREATE TABLE table_name_75 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT player FROM table_name_38 WHERE position = \"quarterback\" AND college = \"arkansas state\"", "question": "Who is the quarterback for Arkansas State?", "context": "CREATE TABLE table_name_38 (player VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_49 WHERE pick__number = 129", "question": "What is the total round of the 129 pick?", "context": "CREATE TABLE table_name_49 (round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT record FROM table_name_37 WHERE date = \"january 19\"", "question": "What is the record for January 19?", "context": "CREATE TABLE table_name_37 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_75 WHERE score = \"111-89\"", "question": "What record has the score 111-89?", "context": "CREATE TABLE table_name_75 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_21 WHERE date = \"january 7\"", "question": "What is the record for January 7?", "context": "CREATE TABLE table_name_21 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_36 WHERE date = \"january 7\"", "question": "Who was the opponent on January 7?", "context": "CREATE TABLE table_name_36 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_60 WHERE score = \"102-87\"", "question": "What home team scored 102-87?", "context": "CREATE TABLE table_name_60 (home_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_1 WHERE score = \"120-108\"", "question": "What venue had a Score of 120-108?", "context": "CREATE TABLE table_name_1 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_41 WHERE home_team = \"sydney spirit\"", "question": "What was the score when Sydney Spirit was the home team?", "context": "CREATE TABLE table_name_41 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE venue = \"north shore events centre\"", "question": "What was the score at North Shore Events Centre?", "context": "CREATE TABLE table_name_9 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_30 WHERE home_team = \"new zealand breakers\"", "question": "What is the home team venue for the New Zealand Breakers?", "context": "CREATE TABLE table_name_30 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT decision FROM table_name_71 WHERE visitor = \"detroit\" AND home = \"ottawa\"", "question": "Who had the decision when the visitor was Detroit and the home team was Ottawa?", "context": "CREATE TABLE table_name_71 (decision VARCHAR, visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE date = \"march 18\"", "question": "What is the score on March 18?", "context": "CREATE TABLE table_name_97 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_61 WHERE date = \"march 27\"", "question": "Who had the highest points on March 27?", "context": "CREATE TABLE table_name_61 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(lead_margin) FROM table_name_86 WHERE dates_administered = \"november 13-november 19, 2007\"", "question": "Name the average Lead Margin on  november 13-november 19, 2007?", "context": "CREATE TABLE table_name_86 (lead_margin INTEGER, dates_administered VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_66 WHERE week = 15", "question": "For week 15, what was the total number of attendance recorded?", "context": "CREATE TABLE table_name_66 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE home_team = \"king's lynn\"", "question": "what is the score when the home team is king's lynn?", "context": "CREATE TABLE table_name_66 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_17 WHERE away_team = \"frickley colliery\"", "question": "what is the home team when the away team is frickley colliery?", "context": "CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_65 WHERE date = \"24 november 1971\" AND away_team = \"king's lynn\"", "question": "what is the tie no, on 24 november 1971 and the away team is king's lynn?", "context": "CREATE TABLE table_name_65 (tie_no VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT longitude FROM table_name_27 WHERE latitude = \"61.0s\"", "question": "What is the Longitude of the 61.0s Latitude?", "context": "CREATE TABLE table_name_27 (longitude VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT name FROM table_name_6 WHERE longitude = \"213.0e\"", "question": "What name has a longitude of 213.0e?", "context": "CREATE TABLE table_name_6 (name VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT type FROM table_name_57 WHERE manufacturer = \"unknown\"", "question": "Which type had an unknown manufacturer?", "context": "CREATE TABLE table_name_57 (type VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT name FROM table_name_30 WHERE themed_area = \"dreamworks experience\" AND manufacturer = \"ferrari\"", "question": "What is the name of the dreamworks experience from Ferrari?", "context": "CREATE TABLE table_name_30 (name VARCHAR, themed_area VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT type FROM table_name_12 WHERE opened = \"1982\"", "question": "Which type opened in 1982?", "context": "CREATE TABLE table_name_12 (type VARCHAR, opened VARCHAR)"}, {"answer": "SELECT themed_area FROM table_name_35 WHERE type = \"animal show\" AND opened = \"2010\"", "question": "What themed area opened in 2010 as an animal show?", "context": "CREATE TABLE table_name_35 (themed_area VARCHAR, type VARCHAR, opened VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_23 WHERE home = \"minnesota\"", "question": "Which visitor lives in Minnesota?", "context": "CREATE TABLE table_name_23 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE date = \"november 21\"", "question": "What was the score on november 21?", "context": "CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT lead FROM table_name_70 WHERE second = \"cathrine norberg\" AND third = \"anna rindeskog\"", "question": "Who has the lead in the season where Cathrine Norberg is second and Anna Rindeskog is third?", "context": "CREATE TABLE table_name_70 (lead VARCHAR, second VARCHAR, third VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE game = 21", "question": "What is the score of game 21?", "context": "CREATE TABLE table_name_96 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE date = \"december 22\"", "question": "What is the score of the game on December 22?", "context": "CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_65 WHERE game > 24", "question": "What is the record when the game is greater than 24?", "context": "CREATE TABLE table_name_65 (record VARCHAR, game INTEGER)"}, {"answer": "SELECT MAX(market_value__billion_) AS $_ FROM table_name_99 WHERE rank = \"02 2\" AND sales__billion_$_ > 113.1", "question": "What is the highest Market Value (billion $), when Rank is 02 2, and when Sales (billion $) is greater than 113.1?", "context": "CREATE TABLE table_name_99 (market_value__billion_ INTEGER, rank VARCHAR, sales__billion_$_ VARCHAR)"}, {"answer": "SELECT rank FROM table_name_14 WHERE headquarters = \"united kingdom\" AND sales__billion_$_ = 370.9", "question": "What is Rank, when Headquarters is United Kingdom, and when Sales (billion $) is 370.9?", "context": "CREATE TABLE table_name_14 (rank VARCHAR, headquarters VARCHAR, sales__billion_$_ VARCHAR)"}, {"answer": "SELECT MIN(profits__billion_) AS $_ FROM table_name_83 WHERE market_value__billion_$_ < 201.3 AND headquarters = \"united states\" AND company = \"jpmorgan chase\"", "question": "What is the lowest Profits (billion $), when Market Value (billion $) is less than 201.3, when Headquarters is United States, and when Company is JPMorgan Chase?", "context": "CREATE TABLE table_name_83 (profits__billion_ INTEGER, company VARCHAR, market_value__billion_$_ VARCHAR, headquarters VARCHAR)"}, {"answer": "SELECT status FROM table_name_60 WHERE area_km_2 > 5.2 AND census_ranking = \"2,531 of 5,008\"", "question": "What is the status of the community that has an area larger than 5.2 sq km, and a Census Ranking of 2,531 of 5,008?", "context": "CREATE TABLE table_name_60 (status VARCHAR, area_km_2 VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT population FROM table_name_62 WHERE official_name = \"saint-andr\u00e9\"", "question": "What is saint-andr\u00e9's population?", "context": "CREATE TABLE table_name_62 (population VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT result FROM table_name_57 WHERE week = 12", "question": "what's the results of week 12?", "context": "CREATE TABLE table_name_57 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_5 WHERE attendance = \"76,202\"", "question": "What opponent has 76,202 attendance ?", "context": "CREATE TABLE table_name_5 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT fis_nordic_world_ski_championships FROM table_name_93 WHERE winter_olympics = 1968", "question": "What is the FIS Nordic World Ski Championship years when the winter Olympics took place in 1968?", "context": "CREATE TABLE table_name_93 (fis_nordic_world_ski_championships VARCHAR, winter_olympics VARCHAR)"}, {"answer": "SELECT country FROM table_name_26 WHERE fis_nordic_world_ski_championships < 1989 AND winter_olympics < 1980 AND holmenkollen = \"1956\"", "question": "Which country has a FIS Nordic World Ski Championship before 1989, was in the winter Olympics before 1980, and has a Holmenkollen of 1956?", "context": "CREATE TABLE table_name_26 (country VARCHAR, holmenkollen VARCHAR, fis_nordic_world_ski_championships VARCHAR, winter_olympics VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_87 WHERE grid < 2", "question": "When the Grids is less than 2 what are the total laps?", "context": "CREATE TABLE table_name_87 (laps VARCHAR, grid INTEGER)"}, {"answer": "SELECT player FROM table_name_93 WHERE to_par = \"\u20134\"", "question": "Which Player has a To par of \u20134?", "context": "CREATE TABLE table_name_93 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT place FROM table_name_63 WHERE score > 68 AND player = \"david ogrin\"", "question": "Which Place has a Score larger than 68, and a Player of david ogrin?", "context": "CREATE TABLE table_name_63 (place VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_31 WHERE place = \"t2\"", "question": "Which Player has a Place of t2?", "context": "CREATE TABLE table_name_31 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT event FROM table_name_98 WHERE method = \"dq (eye gouging)\"", "question": "What event did Mikhail Avetisyan win by method of DQ (eye gouging)?", "context": "CREATE TABLE table_name_98 (event VARCHAR, method VARCHAR)"}, {"answer": "SELECT khtml FROM table_name_11 WHERE gecko = \"font\"", "question": "For the item that has a Gecko of 'font', what is the KHTML value?", "context": "CREATE TABLE table_name_11 (khtml VARCHAR, gecko VARCHAR)"}, {"answer": "SELECT prince_xml FROM table_name_63 WHERE gecko = \"no\" AND webkit = \"nightly build\"", "question": "What is the Prince XML value for the engine that has a Gecko value of 'no' and webkit value of 'nightly build'?", "context": "CREATE TABLE table_name_63 (prince_xml VARCHAR, gecko VARCHAR, webkit VARCHAR)"}, {"answer": "SELECT gecko FROM table_name_34 WHERE trident = \"font\"", "question": "What is the Gecko value for the item that has a Trident value of 'font'?", "context": "CREATE TABLE table_name_34 (gecko VARCHAR, trident VARCHAR)"}, {"answer": "SELECT gecko FROM table_name_6 WHERE prince_xml = \"yes\" AND khtml = \"yes\"", "question": "What is the Gecko value for the item that has a Prince XML value of 'no' and a KHTML value of 'yes'?", "context": "CREATE TABLE table_name_6 (gecko VARCHAR, prince_xml VARCHAR, khtml VARCHAR)"}, {"answer": "SELECT trident FROM table_name_57 WHERE gecko = \"19.0\"", "question": "Which Trident version has a Gecko value of 19.0?", "context": "CREATE TABLE table_name_57 (trident VARCHAR, gecko VARCHAR)"}, {"answer": "SELECT webkit FROM table_name_71 WHERE prince_xml = \"font\"", "question": "For the item with a Prince XML value of 'font', what is the WebKit value?", "context": "CREATE TABLE table_name_71 (webkit VARCHAR, prince_xml VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_55 WHERE team = \"cerro cor\u00e1\" AND losses > 4", "question": "Which Played has a Team of cerro cor\u00e1, and Losses larger than 4?", "context": "CREATE TABLE table_name_55 (played INTEGER, team VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_87 WHERE scored = 9 AND points > 8", "question": "Which Losses has Scored of 9, and Points larger than 8?", "context": "CREATE TABLE table_name_87 (losses INTEGER, scored VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(podium) FROM table_name_42 WHERE race = 14 AND flap > 1", "question": "On Race 14 when the FLap is larger than 1, what is the podium number?", "context": "CREATE TABLE table_name_42 (podium VARCHAR, race VARCHAR, flap VARCHAR)"}, {"answer": "SELECT pole FROM table_name_95 WHERE flap < 15 AND podium > 11", "question": "When the Flap is less than 15 and the podium is larger than 11, what is the pole?", "context": "CREATE TABLE table_name_95 (pole VARCHAR, flap VARCHAR, podium VARCHAR)"}, {"answer": "SELECT flap FROM table_name_79 WHERE pole > 0 AND podium < 44 AND race < 16", "question": "When the pole is larger than 0 and the podium is less than 44, with a race number less than 16, what is the FLap?", "context": "CREATE TABLE table_name_79 (flap VARCHAR, race VARCHAR, pole VARCHAR, podium VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_16 WHERE opponent = \"minnesota vikings\"", "question": "What is the average Week, when Opponent is Minnesota Vikings?", "context": "CREATE TABLE table_name_16 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_19 WHERE attendance = \"58,836\"", "question": "What is Opponent, when Attendance is 58,836?", "context": "CREATE TABLE table_name_19 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT engine FROM table_name_27 WHERE points = \"47\" AND tyres = \"f\" AND entrant = \"rob walker racing team\"", "question": "Which engine of Rob Walker Racing Team has 47 points and F tyres?", "context": "CREATE TABLE table_name_27 (engine VARCHAR, entrant VARCHAR, points VARCHAR, tyres VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_66 WHERE points = \"49\" AND chassis = \"mclaren m7a\"", "question": "Which entrant has 49 points and a Mclaren M7A chassis?", "context": "CREATE TABLE table_name_66 (entrant VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT points FROM table_name_37 WHERE entrant = \"bob gerard racing\" AND year = 1965", "question": "How many points did Bob Gerard Racing have in 1965?", "context": "CREATE TABLE table_name_37 (points VARCHAR, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_12 WHERE year < 1965 AND chassis = \"brabham bt10\"", "question": "Which entrant had a Brabham BT10 chassis before 1965?", "context": "CREATE TABLE table_name_12 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_53 WHERE date = \"september 28, 1997\"", "question": "What is the Attendance on September 28, 1997?", "context": "CREATE TABLE table_name_53 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_15 WHERE date = \"august 31, 1997\"", "question": "What was the Opponent on August 31, 1997?", "context": "CREATE TABLE table_name_15 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_34 WHERE week = 10", "question": "What was the Attendance on Week 10?", "context": "CREATE TABLE table_name_34 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_11 WHERE home = \"pittsburgh\" AND score = \"1\u20137\"", "question": "How many Points have a Home of pittsburgh, and a Score of 1\u20137?", "context": "CREATE TABLE table_name_11 (points INTEGER, home VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE record = \"7\u20137\u20131\"", "question": "Which Date has a Record of 7\u20137\u20131?", "context": "CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE record = \"11\u201310\u20132\"", "question": "Which Date has a Record of 11\u201310\u20132?", "context": "CREATE TABLE table_name_92 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT position FROM table_name_14 WHERE podiums = \"3\" AND f_laps = \"4\"", "question": "Which position had 3 podiums and F/laps of 4?", "context": "CREATE TABLE table_name_14 (position VARCHAR, podiums VARCHAR, f_laps VARCHAR)"}, {"answer": "SELECT races FROM table_name_19 WHERE poles = \"0\" AND team = \"asm\"", "question": "What is the number of races associated with Team ASM and 0 poles?", "context": "CREATE TABLE table_name_19 (races VARCHAR, poles VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_44 WHERE races = \"1\" AND f_laps = \"1\" AND series = \"24 hours of nurburgring\"", "question": "Which team had 1 race, 1 F/lap and in the series 24 hours of Nurburgring?", "context": "CREATE TABLE table_name_44 (team VARCHAR, series VARCHAR, races VARCHAR, f_laps VARCHAR)"}, {"answer": "SELECT podiums FROM table_name_89 WHERE wins = \"4\"", "question": "What is the number of podiums associated with 4 wins?", "context": "CREATE TABLE table_name_89 (podiums VARCHAR, wins VARCHAR)"}, {"answer": "SELECT races FROM table_name_93 WHERE position = \"4th\" AND podiums = \"7\"", "question": "What is the number of races associated with 7 podiums and a position of 4th?", "context": "CREATE TABLE table_name_93 (races VARCHAR, position VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT f_laps FROM table_name_97 WHERE position = \"3rd\"", "question": "What is the F/Laps value associated with a position of 3rd?", "context": "CREATE TABLE table_name_97 (f_laps VARCHAR, position VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_72 WHERE time = \"0:20\"", "question": "Can you tell me the Opponent that has the Time of 0:20?", "context": "CREATE TABLE table_name_72 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_75 WHERE opponent = \"phil baroni\"", "question": "Can you tell me the Time that has the Opponent of phil baroni?", "context": "CREATE TABLE table_name_75 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_6 WHERE location = \"indiana, united states\" AND method = \"submission (guillotine choke)\"", "question": "Can you tell me the lowest Round that has the Location of indiana, united states, and the Method of submission (guillotine choke)?", "context": "CREATE TABLE table_name_6 (round INTEGER, location VARCHAR, method VARCHAR)"}, {"answer": "SELECT built FROM table_name_9 WHERE location = \"la vista\"", "question": "When was la vista built?", "context": "CREATE TABLE table_name_9 (built VARCHAR, location VARCHAR)"}, {"answer": "SELECT built FROM table_name_61 WHERE name = \"sargent bridge\"", "question": "When was the sargent bridge built?", "context": "CREATE TABLE table_name_61 (built VARCHAR, name VARCHAR)"}, {"answer": "SELECT location FROM table_name_64 WHERE county = \"platte\"", "question": "What's the location for the country of platte?", "context": "CREATE TABLE table_name_64 (location VARCHAR, county VARCHAR)"}, {"answer": "SELECT listed FROM table_name_79 WHERE county = \"nuckolls\"", "question": "what is the listing date for nuckolls county?", "context": "CREATE TABLE table_name_79 (listed VARCHAR, county VARCHAR)"}, {"answer": "SELECT listed FROM table_name_83 WHERE county = \"antelope\" AND location = \"royal\" AND name = \"verdigris creek bridge\"", "question": "what's the listing date for the verdigris creek bridge in royal of antelope county?", "context": "CREATE TABLE table_name_83 (listed VARCHAR, name VARCHAR, county VARCHAR, location VARCHAR)"}, {"answer": "SELECT county FROM table_name_36 WHERE listed = \"1992-06-29\" AND name = \"republican river bridge\"", "question": "what's the county name for the republican river bridge listed on 1992-06-29?", "context": "CREATE TABLE table_name_36 (county VARCHAR, listed VARCHAR, name VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_26 WHERE place = \"t10\" AND score = 72 - 74 - 71 - 69 = 286", "question": "what is the to par when the place is t10 and the score is 72-74-71-69=286?", "context": "CREATE TABLE table_name_26 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_80 WHERE player = \"hale irwin\"", "question": "what is the to par when the player is hale irwin?", "context": "CREATE TABLE table_name_80 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_52 WHERE player = \"dave hill\"", "question": "what is the to par for Dave hill?", "context": "CREATE TABLE table_name_52 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_20 WHERE score = 68 - 67 - 73 - 68 = 276", "question": "what is the place when the score is 68-67-73-68=276?", "context": "CREATE TABLE table_name_20 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE week < 13 AND opponent = \"green bay packers\"", "question": "Can you tell me the Date that has the Week smaller than 13, and the Opponent of green bay packers?", "context": "CREATE TABLE table_name_16 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_45 WHERE opponent = \"new orleans saints\" AND week > 12", "question": "Can you tell me the average Attendance that has the Opponent of new orleans saints, and the Week larger than 12?", "context": "CREATE TABLE table_name_45 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_70 WHERE opponent = \"new york giants\"", "question": "Can you tell me the Attendance that has the Opponent of new york giants?", "context": "CREATE TABLE table_name_70 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT density__hab__km\u00b2__ FROM table_name_4 WHERE population_censo_2007_hab_ = \"336.293*\"", "question": "What is the density (hab/km\u00b2) with a population censo 2007(hab) of 336.293*?", "context": "CREATE TABLE table_name_4 (density__hab__km\u00b2__ VARCHAR, population_censo_2007_hab_ VARCHAR)"}, {"answer": "SELECT population_under_1_year_old_censo_2007_hab_ FROM table_name_91 WHERE population_censo_2007_hab_ = \"112.054*\"", "question": "What is the under 1 year-old Censo 2007(hab) population with a population censo 2007(hab) of 112.054*?", "context": "CREATE TABLE table_name_91 (population_under_1_year_old_censo_2007_hab_ VARCHAR, population_censo_2007_hab_ VARCHAR)"}, {"answer": "SELECT density__hab__km\u00b2__ FROM table_name_21 WHERE population_under_1_year_old_censo_2007_hab_ = \"* data from the census taken by the inei\"", "question": "What is the density (hab/km\u00b2) with a population under 1 year-old censo 2007(hab) of * data from the census taken by the Inei?", "context": "CREATE TABLE table_name_21 (density__hab__km\u00b2__ VARCHAR, population_under_1_year_old_censo_2007_hab_ VARCHAR)"}, {"answer": "SELECT elevation_msnm FROM table_name_59 WHERE population_censo_2007_hab_ = \"77.392*\"", "question": "What is the elevation msnm for a population censo 2007(hab) of 77.392*?", "context": "CREATE TABLE table_name_59 (elevation_msnm VARCHAR, population_censo_2007_hab_ VARCHAR)"}, {"answer": "SELECT report FROM table_name_35 WHERE away_team = \"townsville crocodiles\"", "question": "What's the report about townsville crocodiles as an away team?", "context": "CREATE TABLE table_name_35 (report VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_42 WHERE game = 67", "question": "What's the record of game 67?", "context": "CREATE TABLE table_name_42 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE game > 68 AND opponent = \"boston bruins\"", "question": "What's the score of the game against the Boston Bruins and after game 68?", "context": "CREATE TABLE table_name_62 (score VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT natural_change__per_1000_ FROM table_name_61 WHERE crude_death_rate__per_1000_ = 10", "question": "what is the natural change (per 1000) when the crude death rate (per 1000) is 10?", "context": "CREATE TABLE table_name_61 (natural_change__per_1000_ VARCHAR, crude_death_rate__per_1000_ VARCHAR)"}, {"answer": "SELECT SUM(crude_birth_rate__per_1000_) FROM table_name_72 WHERE live_births_1 = \"356 013\"", "question": "what is the crude birth rate (per 1000) when the live births 1 is 356 013?", "context": "CREATE TABLE table_name_72 (crude_birth_rate__per_1000_ INTEGER, live_births_1 VARCHAR)"}, {"answer": "SELECT natural_change__per_1000_ FROM table_name_73 WHERE live_births_1 = \"278 977\"", "question": "what is the natural change (per 1000) when the live births 1 is 278 977?", "context": "CREATE TABLE table_name_73 (natural_change__per_1000_ VARCHAR, live_births_1 VARCHAR)"}, {"answer": "SELECT player FROM table_name_68 WHERE to_par = \"e\" AND country = \"united states\"", "question": "Which Player has a To par of e, and a Country of united states?", "context": "CREATE TABLE table_name_68 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_51 WHERE score < 72 AND to_par = \"\u22121\" AND country = \"spain\"", "question": "Which Place has a Score smaller than 72, and a To par of \u22121, and a Country of spain?", "context": "CREATE TABLE table_name_51 (place VARCHAR, country VARCHAR, score VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE player = \"john huston\"", "question": "What was john huston's score?", "context": "CREATE TABLE table_name_56 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_15 WHERE player = \"willie wood\"", "question": "What was willie wood's to par?", "context": "CREATE TABLE table_name_15 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT prize FROM table_name_15 WHERE winner = \"dominik nitsche\"", "question": "What is the Prize amount of Winner Dominik Nitsche?", "context": "CREATE TABLE table_name_15 (prize VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_name_63 WHERE city = \"nuevo vallarta\"", "question": "What is the Winner of the Event in Nuevo Vallarta?", "context": "CREATE TABLE table_name_63 (winner VARCHAR, city VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE city = \"punta del este\"", "question": "What is the Date of the Event in Punta del Este?", "context": "CREATE TABLE table_name_68 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE prize = \"$141,426\"", "question": "What is the Date of the Event with a Prize of $141,426?", "context": "CREATE TABLE table_name_92 (date VARCHAR, prize VARCHAR)"}, {"answer": "SELECT title FROM table_name_16 WHERE name = \"ahaziah\"", "question": "What is the title of ahaziah?", "context": "CREATE TABLE table_name_16 (title VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_2 WHERE title = \"king\"", "question": "What is the type of the king title?", "context": "CREATE TABLE table_name_2 (type VARCHAR, title VARCHAR)"}, {"answer": "SELECT name FROM table_name_48 WHERE title = \"queen regnant\"", "question": "What is the name of the queen regnant?", "context": "CREATE TABLE table_name_48 (name VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_2 WHERE rider = \"aleix espargaro\"", "question": "What is the total number of Grid, when Rider is Aleix Espargaro?", "context": "CREATE TABLE table_name_2 (grid VARCHAR, rider VARCHAR)"}, {"answer": "SELECT rider FROM table_name_23 WHERE grid < 16 AND manufacturer = \"aprilia\" AND time = \"+28.288\"", "question": "What is the Rider, when Grid is less than 16, when Manufacturer is Aprilia, and when Time is +28.288?", "context": "CREATE TABLE table_name_23 (rider VARCHAR, time VARCHAR, grid VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_74 WHERE grid = 15", "question": "What is the average Laps, when Grid is 15?", "context": "CREATE TABLE table_name_74 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_47 WHERE laps = 26 AND rider = \"aleix espargaro\"", "question": "What is the Manufacturer, when Laps is 26, and when Rider is Aleix Espargaro?", "context": "CREATE TABLE table_name_47 (manufacturer VARCHAR, laps VARCHAR, rider VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE away_team = \"ipswich town\"", "question": "What is Date, when Away Team is \"Ipswich Town\"?", "context": "CREATE TABLE table_name_20 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_71 WHERE away_team = \"millwall\"", "question": "What is Tie No, when Away Team is \"Millwall\"?", "context": "CREATE TABLE table_name_71 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE date = \"13 march 1985\" AND away_team = \"millwall\"", "question": "What is Score, when Date is \"13 March 1985\", and when Away Team is \"Millwall\"?", "context": "CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE away_team = \"liverpool\"", "question": "What is Date, when Away Team is \"Liverpool\"?", "context": "CREATE TABLE table_name_91 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE home_team = \"manchester united\"", "question": "What is Score, when Home Team is \"Manchester United\"?", "context": "CREATE TABLE table_name_50 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT team FROM table_name_78 WHERE high_rebounds = \"carl landry (11)\"", "question": "What is Team, when High Rebounds is \"Carl Landry (11)\"?", "context": "CREATE TABLE table_name_78 (team VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_64 WHERE high_assists = \"rafer alston (7)\" AND high_rebounds = \"yao ming (13)\"", "question": "What is Location Attendance, when High Assists is \"Rafer Alston (7)\", and when High Rebounds is \"Yao Ming (13)\"?", "context": "CREATE TABLE table_name_64 (location_attendance VARCHAR, high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE team = \"@ memphis\"", "question": "What is Score, when Team is \"@ Memphis\"?", "context": "CREATE TABLE table_name_15 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT result FROM table_name_88 WHERE race = \"ajc craven plate (wfa)\"", "question": "What is the result of the ajc craven plate (wfa) race?", "context": "CREATE TABLE table_name_88 (result VARCHAR, race VARCHAR)"}, {"answer": "SELECT result FROM table_name_23 WHERE weight > 8.1 AND race = \"sajc king's cup\"", "question": "What is the result of the sajc king's cup race, which has a weight heavier than 8.1?", "context": "CREATE TABLE table_name_23 (result VARCHAR, weight VARCHAR, race VARCHAR)"}, {"answer": "SELECT race FROM table_name_12 WHERE distance = \"10f\" AND winner_or_2nd = \"mollison\"", "question": "What is the race with a 10f distance and mollison as the winner or 2nd?", "context": "CREATE TABLE table_name_12 (race VARCHAR, distance VARCHAR, winner_or_2nd VARCHAR)"}, {"answer": "SELECT MAX(bush_number) FROM table_name_87 WHERE bush_percentage = \"32.40%\" AND total < 5 OFFSET 126", "question": "What is the highest number of Bush with a 32.40% Bush % and a total less than 5,126?", "context": "CREATE TABLE table_name_87 (bush_number INTEGER, bush_percentage VARCHAR, total VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_83 WHERE score = \"w 117\u2013109 (ot)\"", "question": "What is the location and attendance when the score as w 117\u2013109 (ot)?", "context": "CREATE TABLE table_name_83 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT last_5_meetings FROM table_name_6 WHERE at_columbia = \"mu, 4-2\"", "question": "What were the last 5 meetings when Columbia was mu, 4-2?", "context": "CREATE TABLE table_name_6 (last_5_meetings VARCHAR, at_columbia VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_29 WHERE time = \"5:36\"", "question": "What is the total number of rounds at 5:36?", "context": "CREATE TABLE table_name_29 (round VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_57 WHERE record = \"4-0\"", "question": "What is the total number of rounds with a 4-0 record?", "context": "CREATE TABLE table_name_57 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT districts FROM table_name_36 WHERE province = \"piura\"", "question": "Which district is in the province of Piura?", "context": "CREATE TABLE table_name_36 (districts VARCHAR, province VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_38 WHERE name_of_city = \"chimbote\"", "question": "What is the population of Chimbote?", "context": "CREATE TABLE table_name_38 (population INTEGER, name_of_city VARCHAR)"}, {"answer": "SELECT result FROM table_name_32 WHERE opponent = \"at detroit lions\"", "question": "What is the result of the game that was played at Detroit Lions?", "context": "CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(series__number) FROM table_name_81 WHERE directed_by = \"milan cheylov\" AND written_by = \"will dixon\"", "question": "What series number was directed by milan cheylov and written by will dixon?", "context": "CREATE TABLE table_name_81 (series__number INTEGER, directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_name_52 WHERE original_air_date = \"november 30, 1996\"", "question": "What series # had an original air date of november 30, 1996?", "context": "CREATE TABLE table_name_52 (series__number INTEGER, original_air_date VARCHAR)"}, {"answer": "SELECT part_4 FROM table_name_65 WHERE part_3 = \"*hleupun\"", "question": "What was part 4 when part 3 was *hleupun?", "context": "CREATE TABLE table_name_65 (part_4 VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT class FROM table_name_61 WHERE part_2 = \"*h\u0113t\"", "question": "What was the class when part 2 was *h\u0113t?", "context": "CREATE TABLE table_name_61 (class VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT class FROM table_name_39 WHERE part_4 = \"*r\u0101danaz\"", "question": "What was the class when part 4 was *r\u0101danaz?", "context": "CREATE TABLE table_name_39 (class VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT part_2 FROM table_name_67 WHERE part_4 = \"*bl\u014dtanaz\"", "question": "What was part 2 when part 4 was *bl\u014dtanaz?", "context": "CREATE TABLE table_name_67 (part_2 VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT part_2 FROM table_name_69 WHERE part_4 = \"*haldanaz\"", "question": "What was part 2 when part 4 was *haldanaz?", "context": "CREATE TABLE table_name_69 (part_2 VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT class FROM table_name_79 WHERE part_3 = \"*heldun\"", "question": "What was the class when part 3 was *heldun?", "context": "CREATE TABLE table_name_79 (class VARCHAR, part_3 VARCHAR)"}, {"answer": "SELECT round FROM table_name_23 WHERE venue = \"ullevaal\"", "question": "What is the Round din Ullevaal?", "context": "CREATE TABLE table_name_23 (round VARCHAR, venue VARCHAR)"}, {"answer": "SELECT round FROM table_name_99 WHERE venue = \"ullevaal\"", "question": "What Round is in Ullevaal?", "context": "CREATE TABLE table_name_99 (round VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_76 WHERE score = \"1-1\"", "question": "In what Venue was the Score 1-1?", "context": "CREATE TABLE table_name_76 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE round = \"semifinal 1\"", "question": "What was the Score of the Semifinal 1?", "context": "CREATE TABLE table_name_31 (score VARCHAR, round VARCHAR)"}, {"answer": "SELECT ends FROM table_name_33 WHERE transfer_fee = \"loan\"", "question": "What are the ends for the player with a transfer fee of loan?", "context": "CREATE TABLE table_name_33 (ends VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_60 WHERE since = \"2006\" AND goals < 63 AND nat = \"mli\"", "question": "What is the transfer fee for the MLI player with fewer than 63 goals in a year more recent than 2006?", "context": "CREATE TABLE table_name_60 (transfer_fee VARCHAR, nat VARCHAR, since VARCHAR, goals VARCHAR)"}, {"answer": "SELECT royal_house FROM table_name_45 WHERE name = \"wu\" AND state = \"cai\"", "question": "What is the royal house for Wu at the state of cai?", "context": "CREATE TABLE table_name_45 (royal_house VARCHAR, name VARCHAR, state VARCHAR)"}, {"answer": "SELECT state FROM table_name_63 WHERE title = \"count\"", "question": "What is the state where the title is listed as count?", "context": "CREATE TABLE table_name_63 (state VARCHAR, title VARCHAR)"}, {"answer": "SELECT state FROM table_name_58 WHERE royal_house = \"ying\"", "question": "What is the state for the royal house of ying?", "context": "CREATE TABLE table_name_58 (state VARCHAR, royal_house VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_62 WHERE score_in_the_final = \"6\u20132, 6\u20133, 2\u20136, 7\u20135\"", "question": "Which Opponent in the final has a Score in the final of 6\u20132, 6\u20133, 2\u20136, 7\u20135?", "context": "CREATE TABLE table_name_62 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT SUM(date) FROM table_name_92 WHERE score_in_the_final = \"6\u20134, 6\u20132\"", "question": "How many Dates have a Score in the final of 6\u20134, 6\u20132?", "context": "CREATE TABLE table_name_92 (date INTEGER, score_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_87 WHERE outcome = \"runner-up\" AND score_in_the_final = \"4\u20136, 6\u20137, 6\u20132, 2\u20136\"", "question": "Which Surface has an Outcome of runner-up, and a Score in the final of 4\u20136, 6\u20137, 6\u20132, 2\u20136?", "context": "CREATE TABLE table_name_87 (surface VARCHAR, outcome VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_65 WHERE outcome = \"winner\" AND date > 1992 AND surface = \"clay\" AND score_in_the_final = \"3\u20136, 6\u20132, 6\u20131\"", "question": "Which Opponent in the final has an Outcome of winner, and a Date larger than 1992, and a Surface of clay, and a Score in the final of 3\u20136, 6\u20132, 6\u20131?", "context": "CREATE TABLE table_name_65 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR, surface VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_42 WHERE score_in_the_final = \"2\u20136, 6\u20137\"", "question": "Which Surface has a Score in the final of 2\u20136, 6\u20137?", "context": "CREATE TABLE table_name_42 (surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT AVG(november) FROM table_name_91 WHERE record = \"15-6-1\"", "question": "What day in November has a record of 15-6-1?", "context": "CREATE TABLE table_name_91 (november INTEGER, record VARCHAR)"}, {"answer": "SELECT november FROM table_name_55 WHERE game < 12", "question": "What day in November has the game less than 12?", "context": "CREATE TABLE table_name_55 (november VARCHAR, game INTEGER)"}, {"answer": "SELECT MIN(november) FROM table_name_67 WHERE record = \"15-7-1\"", "question": "What is the earliest day in November with a record of 15-7-1?", "context": "CREATE TABLE table_name_67 (november INTEGER, record VARCHAR)"}, {"answer": "SELECT finish FROM table_name_54 WHERE country = \"south africa\"", "question": "What is Finish, when Country is \"South Africa\"?", "context": "CREATE TABLE table_name_54 (finish VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_40 WHERE country = \"united states\" AND year_s__won = \"1976\"", "question": "What is Player, when Country is \"United States\", and when Year(s) Won is \"1976\"?", "context": "CREATE TABLE table_name_40 (player VARCHAR, country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT 1 AS st_round FROM table_name_90 WHERE team_1 = \"angers sco (d1)\"", "question": "Which first round has a first team of angers sco (d1)?", "context": "CREATE TABLE table_name_90 (team_1 VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_43 WHERE club = \"pro patria\"", "question": "In which stadium does Club Pro Patria play?", "context": "CREATE TABLE table_name_43 (stadium VARCHAR, club VARCHAR)"}, {"answer": "SELECT 2007 AS _08_season FROM table_name_33 WHERE city = \"ferrara\"", "question": "What was the result of the 2007-08 season for the city of Ferrara?", "context": "CREATE TABLE table_name_33 (city VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_67 WHERE overs < 59.1 AND economy_rate > 6.78", "question": "How many matches were played that resulted in less than 59.1 overs and a 6.78 Economy rate?", "context": "CREATE TABLE table_name_67 (matches INTEGER, overs VARCHAR, economy_rate VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_13 WHERE wickets > 19 AND matches < 16", "question": "What is the average of someone with more than 19 wickets and less than 16 matches?", "context": "CREATE TABLE table_name_13 (average INTEGER, wickets VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_name_50 WHERE team = \"deccan chargers\" AND strike_rate > 15.5", "question": "What were the total number of matches played when the Deccan Chargers had a strike rate of 15.5?", "context": "CREATE TABLE table_name_50 (matches INTEGER, team VARCHAR, strike_rate VARCHAR)"}, {"answer": "SELECT home FROM table_name_30 WHERE date = \"21.10.07\" AND geust = \"bsc young boys (asl)\"", "question": "Who was the home team of the match on 21.10.07, which had bsc young boys (asl) as the geust?", "context": "CREATE TABLE table_name_30 (home VARCHAR, date VARCHAR, geust VARCHAR)"}, {"answer": "SELECT home FROM table_name_52 WHERE geust = \"fc st. gallen (asl)\"", "question": "What is the home of fc st. gallen (asl) geust?", "context": "CREATE TABLE table_name_52 (home VARCHAR, geust VARCHAR)"}, {"answer": "SELECT home FROM table_name_14 WHERE geust = \"fc basel (asl)\"", "question": "What is the home of the geust fc basel (asl)?", "context": "CREATE TABLE table_name_14 (home VARCHAR, geust VARCHAR)"}, {"answer": "SELECT home FROM table_name_83 WHERE geust = \"fc thun (asl)\"", "question": "What is the home of fc thun (asl) geust?", "context": "CREATE TABLE table_name_83 (home VARCHAR, geust VARCHAR)"}, {"answer": "SELECT home FROM table_name_28 WHERE result = \"0:2\" AND date = \"21.10.07\"", "question": "What is the home of the match with a 0:2 result on 21.10.07?", "context": "CREATE TABLE table_name_28 (home VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT geust FROM table_name_65 WHERE result = \"0:1\"", "question": "What is the geust with a 0:1 result?", "context": "CREATE TABLE table_name_65 (geust VARCHAR, result VARCHAR)"}, {"answer": "SELECT nalchik FROM table_name_32 WHERE played = 4 AND qual = \"rl\" AND jermuk = \"100\"", "question": "What is the nalchik with 4 played, a rl qual., and 100 jermuk?", "context": "CREATE TABLE table_name_32 (nalchik VARCHAR, jermuk VARCHAR, played VARCHAR, qual VARCHAR)"}, {"answer": "SELECT elista FROM table_name_14 WHERE played = 1 AND baku = \"153\u2153\"", "question": "What is the elista with 1 played and 153\u2153 baku?", "context": "CREATE TABLE table_name_14 (elista VARCHAR, played VARCHAR, baku VARCHAR)"}, {"answer": "SELECT driver FROM table_name_72 WHERE points = 26", "question": "Which river had 26 points?", "context": "CREATE TABLE table_name_72 (driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT closed FROM table_name_79 WHERE name = \"caphouse colliery\"", "question": "What year did the Caphouse Colliery railway close?", "context": "CREATE TABLE table_name_79 (closed VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(2006) FROM table_name_47 WHERE 1970 < 9", "question": "What was the percentage in 2006 that had less than 9% in 1970?", "context": "CREATE TABLE table_name_47 (Id VARCHAR)"}, {"answer": "SELECT MIN(1980) FROM table_name_30 WHERE 2006 < 37.8 AND 2000 > 29.4 AND 1970 > 18.2", "question": "What was the percentage in 1980 that had less than 37.8% in 2006, more than 29.4% in 2000, and more than 18.2% in 1970?", "context": "CREATE TABLE table_name_30 (Id VARCHAR)"}, {"answer": "SELECT MIN(1980) FROM table_name_70 WHERE borough = \"brooklyn\"", "question": "What was the percentage in 1980 in Brooklyn?", "context": "CREATE TABLE table_name_70 (borough VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE round = \"r3\"", "question": "What is the result the R3 round?", "context": "CREATE TABLE table_name_14 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT result FROM table_name_73 WHERE opponent = \"ayr united\"", "question": "What is the result of the game against Ayr United?", "context": "CREATE TABLE table_name_73 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_4 WHERE visitor = \"edmonton oilers\"", "question": "What was the score for the game in which the Edmonton Oilers were visitors?", "context": "CREATE TABLE table_name_4 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE visitor = \"toronto maple leafs\"", "question": "What was the score of the game in which the Toronto Maple Leafs were visitors?", "context": "CREATE TABLE table_name_97 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_67 WHERE player = \"jeb barlow\" AND round < 7", "question": "When Jeb Barlow was picked in round smaller than 7, how many player in totals were picked?", "context": "CREATE TABLE table_name_67 (pick VARCHAR, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_70 WHERE school_club_team = \"ucla\"", "question": "What country is team ucla come from?", "context": "CREATE TABLE table_name_70 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_79 WHERE pick < 220 AND player = \"alford turner\"", "question": "How many rounds have picked smaller than 220, with Alford Turner as a player?", "context": "CREATE TABLE table_name_79 (round INTEGER, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_61 WHERE round > 6 AND player = \"dean sears\"", "question": "What is the pick with Dean Sears and round larger than 6?", "context": "CREATE TABLE table_name_61 (pick INTEGER, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_12 WHERE player = \"bill duffy\"", "question": "What is the total pick with Bill Duffy?", "context": "CREATE TABLE table_name_12 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_37 WHERE pick = 109", "question": "What is the total round with pick of 109?", "context": "CREATE TABLE table_name_37 (round INTEGER, pick VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_5 WHERE round = 12", "question": "How many picks for round 12?", "context": "CREATE TABLE table_name_5 (pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_21 WHERE player = \"tom donchez\"", "question": "What was Tom Donchez pick number?", "context": "CREATE TABLE table_name_21 (pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE against < 6 AND venue = \"durban\"", "question": "What is date when against is smaller than 6 and location was durban?", "context": "CREATE TABLE table_name_75 (date VARCHAR, against VARCHAR, venue VARCHAR)"}, {"answer": "SELECT note FROM table_name_28 WHERE year > 2003", "question": "What was the note with a year after 2003?", "context": "CREATE TABLE table_name_28 (note VARCHAR, year INTEGER)"}, {"answer": "SELECT year FROM table_name_62 WHERE note = \"vocals\" AND album = \"north (original motion picture soundtrack)\"", "question": "When was the note a vocals and the album north (original motion picture soundtrack)?", "context": "CREATE TABLE table_name_62 (year VARCHAR, note VARCHAR, album VARCHAR)"}, {"answer": "SELECT album FROM table_name_95 WHERE note = \"tape [tape echo]\"", "question": "Which album had the note tape [tape echo]?", "context": "CREATE TABLE table_name_95 (album VARCHAR, note VARCHAR)"}, {"answer": "SELECT artist FROM table_name_32 WHERE year = 2003", "question": "Which artist was 2003?", "context": "CREATE TABLE table_name_32 (artist VARCHAR, year VARCHAR)"}, {"answer": "SELECT title FROM table_name_83 WHERE season__number > 10 AND series__number > 35 AND directed_by = \"erik wiese and eddie trigueros\"", "question": "What is the Title of the episode after Season 10 Directed by Erik Wiese and Eddie Trigueros after Seres 35?", "context": "CREATE TABLE table_name_83 (title VARCHAR, directed_by VARCHAR, season__number VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_name_19 WHERE directed_by = \"erik wiese\" AND season__number > 6", "question": "What is the Original airdate of the episode after Season 6 Directed by Erik Wiese?", "context": "CREATE TABLE table_name_19 (original_airdate VARCHAR, directed_by VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_42 WHERE rider = \"toni elias\"", "question": "What is the average of laps ridden by Toni Elias?", "context": "CREATE TABLE table_name_42 (laps INTEGER, rider VARCHAR)"}, {"answer": "SELECT time FROM table_name_47 WHERE manufacturer = \"yamaha\" AND grid < 8 AND laps < 23", "question": "How long did it take for the rider of a Yamaha with a grid less than 8 and laps less than 23?", "context": "CREATE TABLE table_name_47 (time VARCHAR, laps VARCHAR, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_45 WHERE time = \"42:31.153\" AND grid > 1", "question": "What is the fewest amount of laps when the grid was larger than 1 and 42:31.153?", "context": "CREATE TABLE table_name_45 (laps INTEGER, time VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time FROM table_name_65 WHERE laps = 23 AND grid = 13", "question": "How long did it take to ride when the laps were 23 and the grid of 13?", "context": "CREATE TABLE table_name_65 (time VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT result FROM table_name_9 WHERE attendance > 71 OFFSET 164", "question": "What was the result for the 71,164 in attendance?", "context": "CREATE TABLE table_name_9 (result VARCHAR, attendance INTEGER)"}, {"answer": "SELECT rank FROM table_name_83 WHERE floors > 47", "question": "Which rank is above floor 47?", "context": "CREATE TABLE table_name_83 (rank VARCHAR, floors INTEGER)"}, {"answer": "SELECT class FROM table_name_40 WHERE team = \"rml\"", "question": "What class is the RML Team?", "context": "CREATE TABLE table_name_40 (class VARCHAR, team VARCHAR)"}, {"answer": "SELECT result FROM table_name_30 WHERE home_team = \"portland\" AND date = \"may 31\"", "question": "Which Result has a Home team of portland, and a Date of may 31?", "context": "CREATE TABLE table_name_30 (result VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE road_team = \"portland\" AND game = \"game 5\"", "question": "Which Date has a Road team of portland, and a Game of game 5?", "context": "CREATE TABLE table_name_16 (date VARCHAR, road_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_85 WHERE road_team = \"portland\" AND result = \"104\u2013110\"", "question": "Which Home team has a Road team of portland, and a Result of 104\u2013110?", "context": "CREATE TABLE table_name_85 (home_team VARCHAR, road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_85 WHERE game = \"game 5\"", "question": "Which Home team has a Game of game 5?", "context": "CREATE TABLE table_name_85 (home_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE home_team = \"philadelphia\" AND result = \"104\u2013110\"", "question": "Which Date has a Home team of philadelphia, and a Result of 104\u2013110?", "context": "CREATE TABLE table_name_4 (date VARCHAR, home_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_17 WHERE home_team = \"portland\" AND date = \"may 31\"", "question": "Which Road team has a Home team of portland, and a Date of may 31?", "context": "CREATE TABLE table_name_17 (road_team VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT tongan FROM table_name_15 WHERE north_marquesan = \"/ha\u0294e/\"", "question": "Which Tongan has a North Marquesan of /ha\u0294e/?", "context": "CREATE TABLE table_name_15 (tongan VARCHAR, north_marquesan VARCHAR)"}, {"answer": "SELECT north_marquesan FROM table_name_2 WHERE takuu = \"/\u027eani/\"", "question": "What kind of North Marquesan has a Takuu of /\u027eani/?", "context": "CREATE TABLE table_name_2 (north_marquesan VARCHAR, takuu VARCHAR)"}, {"answer": "SELECT takuu FROM table_name_83 WHERE north_marquesan = \"/vehine/\"", "question": "What kind of Takuu has a North Marquesan of /vehine/?", "context": "CREATE TABLE table_name_83 (takuu VARCHAR, north_marquesan VARCHAR)"}, {"answer": "SELECT rarotongan FROM table_name_15 WHERE tahitian = \"/metua/\"", "question": "What kind of Rarotongan has a Tahitian of /metua/?", "context": "CREATE TABLE table_name_15 (rarotongan VARCHAR, tahitian VARCHAR)"}, {"answer": "SELECT tongan FROM table_name_89 WHERE north_marquesan = \"/ha\u0294e/\"", "question": "What kind of Tongan has a North Marquesan of /ha\u0294e/?", "context": "CREATE TABLE table_name_89 (tongan VARCHAR, north_marquesan VARCHAR)"}, {"answer": "SELECT south_marquesan FROM table_name_67 WHERE s\u0101moan = \"/matua/\"", "question": "What kind of South Marquesan has a S\u0101moan of /matua/?", "context": "CREATE TABLE table_name_67 (south_marquesan VARCHAR, s\u0101moan VARCHAR)"}, {"answer": "SELECT MAX(col__m_) FROM table_name_94 WHERE prominence__m_ = 3 OFFSET 046", "question": "What is the maximum Col (m) when 3,046 is the Prominence (m)?", "context": "CREATE TABLE table_name_94 (col__m_ INTEGER, prominence__m_ VARCHAR)"}, {"answer": "SELECT location FROM table_name_15 WHERE peak = \"pico basil\u00e9\"", "question": "Where is the peak Pico Basil\u00e9 located?", "context": "CREATE TABLE table_name_15 (location VARCHAR, peak VARCHAR)"}, {"answer": "SELECT german_gewehr_98 FROM table_name_46 WHERE danish_krag_j\u00f8rgensen_1889 = \"4.28kg\"", "question": "What is the German Gewehr 98 when the Danish Krag-J\u00f8rgensen 1889 is 4.28kg?", "context": "CREATE TABLE table_name_46 (german_gewehr_98 VARCHAR, danish_krag_j\u00f8rgensen_1889 VARCHAR)"}, {"answer": "SELECT rifle FROM table_name_94 WHERE german_gewehr_98 = \"74cm\"", "question": "What is the Rifle when the German Gewehr 98 is 74cm?", "context": "CREATE TABLE table_name_94 (rifle VARCHAR, german_gewehr_98 VARCHAR)"}, {"answer": "SELECT us_krag_j\u00f8rgensen_m1892 FROM table_name_87 WHERE norwegian_krag_j\u00f8rgensen_m1894 = \"126.8cm\"", "question": "What is the US Krag-J\u00f8rgensen M1892 when the Norwegian Krag-J\u00f8rgensen M1894 is 126.8cm?", "context": "CREATE TABLE table_name_87 (us_krag_j\u00f8rgensen_m1892 VARCHAR, norwegian_krag_j\u00f8rgensen_m1894 VARCHAR)"}, {"answer": "SELECT team FROM table_name_31 WHERE league = \"national\" AND year = 2001", "question": "What team has a national league in 2001?", "context": "CREATE TABLE table_name_31 (team VARCHAR, league VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_name_79 WHERE year < 1973 AND position = \"third baseman\"", "question": "What is the league of the third baseman player before 1973?", "context": "CREATE TABLE table_name_79 (league VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_15 WHERE film_title_used_in_nomination = \"monga\"", "question": "What is Original Title, when Film Title Used In Nomination is \"Monga\"?", "context": "CREATE TABLE table_name_15 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT result FROM table_name_47 WHERE original_title = \"ti\u0101nm\u01ce ch\u00e1f\u00e1ng (\u5929\u99ac\u8336\u623f)\"", "question": "What is Result, when Original Title is \"Ti\u0101nm\u01ce Ch\u00e1f\u00e1ng (\u5929\u99ac\u8336\u623f)\"?", "context": "CREATE TABLE table_name_47 (result VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_27 WHERE original_title = \"b\u00e1ng-kah (\u824b\u823a)\"", "question": "What is Film Title Used In Nomination, when Original Title is \"B\u00e1ng-Kah (\u824b\u823a)\"", "context": "CREATE TABLE table_name_27 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_73 WHERE director = \"ting shan-si\" AND film_title_used_in_nomination = \"the 800 heroes\"", "question": "What is the Original Title, when Director is \"Ting Shan-Si\", and when Film Title Used In Nomination is \"The 800 Heroes\"?", "context": "CREATE TABLE table_name_73 (original_title VARCHAR, director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_66 WHERE director = \"wang siu-di\"", "question": "What is Year (Ceremony), when Director is \"Wang Siu-Di\"?", "context": "CREATE TABLE table_name_66 (year__ceremony_ VARCHAR, director VARCHAR)"}, {"answer": "SELECT result FROM table_name_43 WHERE film_title_used_in_nomination = \"kuei-mei, a woman\"", "question": "What is Result, when Film Title Used In Nomination is \"Kuei-Mei, A Woman\"?", "context": "CREATE TABLE table_name_43 (result VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT serials_issued FROM table_name_39 WHERE design = \"yellow on blue\" AND issued = 1955", "question": "What was the issued serial for yellow on blue design issued in 1955?", "context": "CREATE TABLE table_name_39 (serials_issued VARCHAR, design VARCHAR, issued VARCHAR)"}, {"answer": "SELECT serial_format FROM table_name_72 WHERE design = \"white on blue\" AND serials_issued = \"ss-00-00 to zz-99-99\"", "question": "What is the serial format for white on blue with a serial issued of ss-00-00 to zz-99-99?", "context": "CREATE TABLE table_name_72 (serial_format VARCHAR, design VARCHAR, serials_issued VARCHAR)"}, {"answer": "SELECT serials_issued FROM table_name_71 WHERE issued = 1966", "question": "What is the issued serial given in 1966?", "context": "CREATE TABLE table_name_71 (serials_issued VARCHAR, issued VARCHAR)"}, {"answer": "SELECT serial_format FROM table_name_71 WHERE issued = 1972", "question": "What serial format was issued in 1972?", "context": "CREATE TABLE table_name_71 (serial_format VARCHAR, issued VARCHAR)"}, {"answer": "SELECT type FROM table_name_1 WHERE issued = 1964", "question": "What type was issued in 1964?", "context": "CREATE TABLE table_name_1 (type VARCHAR, issued VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_97 WHERE opponent_team = \"hungary's league selection\"", "question": "At which tournament does Milan play against Hungary's league selection?", "context": "CREATE TABLE table_name_97 (tournament VARCHAR, opponent_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE date = \"1 august 2008\"", "question": "What was the final score on 1 August 2008?", "context": "CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_74 WHERE opponent_team = \"napoli\"", "question": "Where did Milan play against Napoli?", "context": "CREATE TABLE table_name_74 (location VARCHAR, opponent_team VARCHAR)"}, {"answer": "SELECT week FROM table_name_37 WHERE tv_time = \"bye\"", "question": "WHAT WEEK HAS A TV TIME OF BYE?", "context": "CREATE TABLE table_name_37 (week VARCHAR, tv_time VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_17 WHERE week = 15", "question": "WHAT WAS THE ATTENDANCE FOR WEEK 15?", "context": "CREATE TABLE table_name_17 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_30 WHERE date = \"november 29, 2001\"", "question": "WHAT WAS THE RESULT FOR NOVEMBER 29, 2001?", "context": "CREATE TABLE table_name_30 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT built FROM table_name_16 WHERE location = \"clarkdale\"", "question": "In what year was the bridge in Clarkdale built?", "context": "CREATE TABLE table_name_16 (built VARCHAR, location VARCHAR)"}, {"answer": "SELECT built FROM table_name_79 WHERE name = \"gila bend overpass\"", "question": "In what year was the Gila Bend Overpass built?", "context": "CREATE TABLE table_name_79 (built VARCHAR, name VARCHAR)"}, {"answer": "SELECT county FROM table_name_33 WHERE name = \"canyon padre bridge\"", "question": "In what county is the Canyon Padre Bridge?", "context": "CREATE TABLE table_name_33 (county VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(championships) FROM table_name_94 WHERE years_won = \"1971\"", "question": "Who won the ABA Championship in 1971?", "context": "CREATE TABLE table_name_94 (championships INTEGER, years_won VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_5 WHERE played < 14", "question": "What was the average amount of losses for teams with played less than 14?", "context": "CREATE TABLE table_name_5 (lost INTEGER, played INTEGER)"}, {"answer": "SELECT COUNT(played) FROM table_name_61 WHERE name = \"se freising\" AND points > 13", "question": "What was the total number of games played by se freising when their points were larger than 13?", "context": "CREATE TABLE table_name_61 (played VARCHAR, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_65 WHERE points > 3 AND played > 14", "question": "What was the average losses for team with points larger than 3 and played larger thna 14?", "context": "CREATE TABLE table_name_65 (lost INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_42 WHERE name = \"ev bruckberg\" AND drawn > 1", "question": "How many losses did ev bruckberg have when the drawn was more than 1?", "context": "CREATE TABLE table_name_42 (lost INTEGER, name VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT dates_administered FROM table_name_19 WHERE poll_source = \"rasmussen reports\" AND lead_margin > 32", "question": "What was the date administered from a source of Rasmussen Reports and a lead margin over 32?", "context": "CREATE TABLE table_name_19 (dates_administered VARCHAR, poll_source VARCHAR, lead_margin VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE home = \"chicago black hawks\" AND date = \"march 28\"", "question": "What is the Score of the Chicago Black Hawks Home game on March 28?", "context": "CREATE TABLE table_name_38 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_86 WHERE date = \"april 2\"", "question": "What is the Visitor of the game on April 2?", "context": "CREATE TABLE table_name_86 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_61 WHERE date = \"april 4\"", "question": "What is the Home team on April 4?", "context": "CREATE TABLE table_name_61 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_56 WHERE date = \"march 31\"", "question": "What is the Visitor on March 31?", "context": "CREATE TABLE table_name_56 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_43 WHERE date = \"april 2\"", "question": "What is the Home team on April 2?", "context": "CREATE TABLE table_name_43 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE record = \"2-3\"", "question": "What is the Date of the game with a Record of 2-3?", "context": "CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT track FROM table_name_55 WHERE year = \"1926\"", "question": "What track was used in 1926?", "context": "CREATE TABLE table_name_55 (track VARCHAR, year VARCHAR)"}, {"answer": "SELECT 250 AS _cc FROM table_name_31 WHERE year = \"1927\"", "question": "Who won the 250cc in 1927?", "context": "CREATE TABLE table_name_31 (year VARCHAR)"}, {"answer": "SELECT designated_grand_prix FROM table_name_32 WHERE track = \"granollers\"", "question": "What grand prix was held at Granollers?", "context": "CREATE TABLE table_name_32 (designated_grand_prix VARCHAR, track VARCHAR)"}, {"answer": "SELECT 350 AS _cc FROM table_name_90 WHERE track = \"sachsenring\"", "question": "Who won the 350cc at Sachsenring?", "context": "CREATE TABLE table_name_90 (track VARCHAR)"}, {"answer": "SELECT fleet_number_s_ FROM table_name_35 WHERE quantity_made = \"13\"", "question": "Which fleet numbers has quanitity of 13?", "context": "CREATE TABLE table_name_35 (fleet_number_s_ VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT wheel_arrangement FROM table_name_3 WHERE year_made = \"1900\"", "question": "Which wheel arrangement made in year 1900?", "context": "CREATE TABLE table_name_3 (wheel_arrangement VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT fleet_number_s_ FROM table_name_78 WHERE quantity_made = \"1\"", "question": "Which fleet numbers has quantity of 1?", "context": "CREATE TABLE table_name_78 (fleet_number_s_ VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE partner = \"florencia labat\" AND surface = \"clay\" AND opponents = \"laura golarsa ann grossman\"", "question": "what is the score when the partner is florencia labat, the surface is clay, the opponents is laura golarsa ann grossman?", "context": "CREATE TABLE table_name_43 (score VARCHAR, opponents VARCHAR, partner VARCHAR, surface VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_93 WHERE surface = \"clay\" AND date = \"12 july 1992\"", "question": "who is the opponents when the surface is clay and the date is 12 july 1992?", "context": "CREATE TABLE table_name_93 (opponents VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_39 WHERE outcome = \"winner\" AND opponents = \"kerry-anne guse corina morariu\"", "question": "what is the tournament when the outcome is winner and the opponents is kerry-anne guse corina morariu?", "context": "CREATE TABLE table_name_39 (tournament VARCHAR, outcome VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE partner = \"alexandra fusai\"", "question": "what is the score when the partner is alexandra fusai?", "context": "CREATE TABLE table_name_67 (score VARCHAR, partner VARCHAR)"}, {"answer": "SELECT surface FROM table_name_13 WHERE opponents = \"louise field nathalie herreman\"", "question": "what is the surface when the opponents are louise field nathalie herreman?", "context": "CREATE TABLE table_name_13 (surface VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE surface = \"clay\" AND tournament = \"san marino\"", "question": "what is the score when the surface is clay and the tournament is san marino?", "context": "CREATE TABLE table_name_18 (score VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_76 WHERE laps < 32 AND manufacturer = \"yamaha\"", "question": "If the manufacturer is Yamaha, and the laps driven were under 32, what's the average of all grid sizes with that criteria?", "context": "CREATE TABLE table_name_76 (grid INTEGER, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_26 WHERE manufacturer = \"suzuki\" AND grid = 8", "question": "What's the smallest amount of laps that suzuki ran with a grid value of 8?", "context": "CREATE TABLE table_name_26 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_68 WHERE h_a_n = \"h\" AND score = \"101-105\"", "question": "Who were the opponents when the score of the game was 101-105 and the H/A/N was H?", "context": "CREATE TABLE table_name_68 (opponent VARCHAR, h_a_n VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_4 WHERE opponent = \"baltimore bullets\" AND date = \"march 14\"", "question": "What is the score of the game against the baltimore bullets on March 14?", "context": "CREATE TABLE table_name_4 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_87 WHERE h_a_n = \"h\" AND score = \"122-135\"", "question": "Who were the opponents when the score was 122-135 and the H/A/N was H?", "context": "CREATE TABLE table_name_87 (opponent VARCHAR, h_a_n VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE record = \"22-55\"", "question": "What is the score of the game where the record was 22-55?", "context": "CREATE TABLE table_name_7 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_32 WHERE name = \"ersc amberg\" AND points < 14", "question": "What is the average games that were drawn with ERSC Amberg as name and less than 14 points?", "context": "CREATE TABLE table_name_32 (drawn INTEGER, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_17 WHERE drawn = 0 AND points > 22 AND played > 14", "question": "What is the total position with a drawn of 0 and greater than 22 points and a greater than 14 played?", "context": "CREATE TABLE table_name_17 (position VARCHAR, played VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT song FROM table_name_52 WHERE weeks_at_number_one > 2 AND issue_date_s_ = \"17 april - 8 may\"", "question": "Which Song has a Weeks at number one larger than 2, and an Issue date(s) of 17 april - 8 may?", "context": "CREATE TABLE table_name_52 (song VARCHAR, weeks_at_number_one VARCHAR, issue_date_s_ VARCHAR)"}, {"answer": "SELECT song FROM table_name_17 WHERE issue_date_s_ = \"29 may - 26 june\"", "question": "Which Song has an Issue date(s) of 29 may - 26 june?", "context": "CREATE TABLE table_name_17 (song VARCHAR, issue_date_s_ VARCHAR)"}, {"answer": "SELECT report FROM table_name_31 WHERE home_team = \"new zealand breakers\"", "question": "what is the report when the home team is new zealand breakers?", "context": "CREATE TABLE table_name_31 (report VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE home_team = \"cairns taipans\"", "question": "what is the score when the home team is cairns taipans?", "context": "CREATE TABLE table_name_23 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_45 WHERE venue = \"cairns convention centre\"", "question": "Who is the away team when the venue is cairns convention centre?", "context": "CREATE TABLE table_name_45 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_28 WHERE home_team = \"sydney spirit\"", "question": "who is the away team when the home team is sydney spirit?", "context": "CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT Box AS score FROM table_name_3 WHERE home_team = \"melbourne tigers\"", "question": "what is the box score when the home team is melbourne tigers?", "context": "CREATE TABLE table_name_3 (Box VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_42 WHERE date = \"21 september\"", "question": "who is the away team on 21 september?", "context": "CREATE TABLE table_name_42 (away_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_3 WHERE place = \"t2\" AND player = \"ernie els\"", "question": "When Ernie Els placed t2, what was his To par?", "context": "CREATE TABLE table_name_3 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_62 WHERE player = \"jay haas\"", "question": "Where did Jay Haas place?", "context": "CREATE TABLE table_name_62 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_16 WHERE player = \"jim furyk\"", "question": "Where did Jim Furyk place?", "context": "CREATE TABLE table_name_16 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE player = \"jim furyk\"", "question": "What was Jim Furyk's score?", "context": "CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE to_par = \"+1\"", "question": "What was the score for the To par of +1?", "context": "CREATE TABLE table_name_53 (score VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_76 WHERE place = \"t5\" AND score = 73 - 69 - 68 = 210", "question": "Who placed in t5 and scored 73-69-68=210?", "context": "CREATE TABLE table_name_76 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE record = \"11-6-2\"", "question": "Who was the opponent when the record was 11-6-2?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_22 WHERE attendance > 202", "question": "What is the home team of the match with an attendance greater than 202?", "context": "CREATE TABLE table_name_22 (home_team VARCHAR, attendance INTEGER)"}, {"answer": "SELECT AVG(attendance) FROM table_name_68 WHERE home_team = \"arlesey town\"", "question": "What is the average attendance of the match with arlesey town as the home team?", "context": "CREATE TABLE table_name_68 (attendance INTEGER, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE opponent = \"phoenix suns\"", "question": "What was the score of the game against the phoenix suns?", "context": "CREATE TABLE table_name_18 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE record = \"0-12\"", "question": "What was the opponent of the game when the reocrd was 0-12?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_42 WHERE location = \"forest hills\" AND runner_up = \"john mcenroe\" AND score = \"6\u20133, 6\u20133\"", "question": "How many years had a location at Forest Hills and a score of 6\u20133, 6\u20133 for John McEnroe?", "context": "CREATE TABLE table_name_42 (year VARCHAR, score VARCHAR, location VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT champion FROM table_name_47 WHERE score = \"7\u20136, 6\u20130\"", "question": "Who is the champion with a score of 7\u20136, 6\u20130?", "context": "CREATE TABLE table_name_47 (champion VARCHAR, score VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_59 WHERE year = 1990", "question": "Who is the runner-up in 1990?", "context": "CREATE TABLE table_name_59 (runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_9 WHERE runner_up = \"guillermo vilas\"", "question": "When was the earliest year that Guillermo Vilas was the runner-up?", "context": "CREATE TABLE table_name_9 (year INTEGER, runner_up VARCHAR)"}, {"answer": "SELECT source FROM table_name_8 WHERE race_winners = \"ben adriaenssen / ben van den bogaart\" AND gp_winner = \"ben adriaenssen / ben van den bogaart\" AND date = \"1 april\"", "question": "What source has a race winner of ben adriaenssen / ben van den bogaart, and the gp winner of ben adriaenssen / ben van den bogaart, for the date of 1 april?", "context": "CREATE TABLE table_name_8 (source VARCHAR, date VARCHAR, race_winners VARCHAR, gp_winner VARCHAR)"}, {"answer": "SELECT gp_winner FROM table_name_2 WHERE race_winners = \"valentin giraud / nicolas musset\" AND place = \"genk\"", "question": "What is the GP winner for the Race winners valentin giraud / nicolas musset, and a place genk?", "context": "CREATE TABLE table_name_2 (gp_winner VARCHAR, race_winners VARCHAR, place VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE source = \"result\" AND place = \"iffendic\"", "question": "What is the date for a source of result and a place of iffendic?", "context": "CREATE TABLE table_name_60 (date VARCHAR, source VARCHAR, place VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE place = \"chernivtsi\" AND race_winners = \"etienne bax / kaspars stupelis\"", "question": "What date has a place of chernivtsi, and a race winners of etienne bax / kaspars stupelis? What", "context": "CREATE TABLE table_name_29 (date VARCHAR, place VARCHAR, race_winners VARCHAR)"}, {"answer": "SELECT gp_winner FROM table_name_30 WHERE place = \"genk\" AND race_winners = \"ben adriaenssen / ben van den bogaart\"", "question": "What is the GP winner with a place of genk, with race winners ben adriaenssen / ben van den bogaart?", "context": "CREATE TABLE table_name_30 (gp_winner VARCHAR, place VARCHAR, race_winners VARCHAR)"}, {"answer": "SELECT race_winners FROM table_name_77 WHERE date = \"23 june\"", "question": "What is the race winners for the date of 23 june?", "context": "CREATE TABLE table_name_77 (race_winners VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE opponent_in_the_final = \"barbara paulus\"", "question": "What date was the opponent in the final Barbara Paulus?", "context": "CREATE TABLE table_name_23 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_67 WHERE opponent_in_the_final = \"laura golarsa\"", "question": "What was the surface that Laura Golarsa and her opponent played on in the final?", "context": "CREATE TABLE table_name_67 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE opponent_in_the_final = \"katerina maleeva\"", "question": "What was the score for the opponent against Katerina Maleeva in the final?", "context": "CREATE TABLE table_name_83 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT name FROM table_name_6 WHERE transfer_window = \"winter\" AND moving_to = \"anorthosis famagusta\"", "question": "What's the name that had a moving to Anorthosis Famagusta and a transfer window of winter?", "context": "CREATE TABLE table_name_6 (name VARCHAR, transfer_window VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT nat FROM table_name_12 WHERE transfer_fee = \"free\" AND type = \"mutual consent loan return\"", "question": "What is the Nat with a mutual consent loan return and has a free transfer fee?", "context": "CREATE TABLE table_name_12 (nat VARCHAR, transfer_fee VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_10 WHERE nat = \"por\"", "question": "What is the type of POR?", "context": "CREATE TABLE table_name_10 (type VARCHAR, nat VARCHAR)"}, {"answer": "SELECT name FROM table_name_20 WHERE nat = \"mkd\"", "question": "What's the name of MKD?", "context": "CREATE TABLE table_name_20 (name VARCHAR, nat VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_58 WHERE date = \"november 24\"", "question": "What is the sum of the attendance on November 24?", "context": "CREATE TABLE table_name_58 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_11 WHERE attendance = 526", "question": "What team did the Flames play against when 526 people attended the game?", "context": "CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT competition FROM table_name_39 WHERE man_of_the_match = \"rick plant\"", "question": "Rick Plant was the man of the match in what competition?", "context": "CREATE TABLE table_name_39 (competition VARCHAR, man_of_the_match VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_6 WHERE man_of_the_match = \"stephen lee\"", "question": "Who did the Flames play against when Stephen Lee was the man of the match?", "context": "CREATE TABLE table_name_6 (opponent VARCHAR, man_of_the_match VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_44 WHERE result = \"won 4-2\"", "question": "How many people attended the game when the game was won 4-2?", "context": "CREATE TABLE table_name_44 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_62 WHERE venue = \"away\" AND man_of_the_match = \"n/a\"", "question": "For what competition was the venue away the n/a the man of the match?", "context": "CREATE TABLE table_name_62 (competition VARCHAR, venue VARCHAR, man_of_the_match VARCHAR)"}, {"answer": "SELECT MIN(sales__billion_) AS $_ FROM table_name_73 WHERE company = \"bp\"", "question": "What is BP's lowest sales?", "context": "CREATE TABLE table_name_73 (sales__billion_ INTEGER, company VARCHAR)"}, {"answer": "SELECT result FROM table_name_80 WHERE date = \"december 2\"", "question": "What was the final game result that was played on December 2?", "context": "CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_94 WHERE game_site = \"rich stadium\"", "question": "What week was the game played at Rich Stadium?", "context": "CREATE TABLE table_name_94 (week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT SUM(fa_cup_goals) FROM table_name_5 WHERE league_goals = \"19\"", "question": "What is the sum of FA Cup goals when there are 19 league goals?", "context": "CREATE TABLE table_name_5 (fa_cup_goals INTEGER, league_goals VARCHAR)"}, {"answer": "SELECT club FROM table_name_2 WHERE league_goals = \"16\" AND total = 20", "question": "Which club has 16 league goals for a total of 20?", "context": "CREATE TABLE table_name_2 (club VARCHAR, league_goals VARCHAR, total VARCHAR)"}, {"answer": "SELECT league_cup_goals FROM table_name_29 WHERE total > 15 AND fa_cup_goals = 3 AND club = \"chesterfield\"", "question": "How many League Cup goals correspond to 3 FA Cup Goals and a total over 15 for Chesterfield?", "context": "CREATE TABLE table_name_29 (league_cup_goals VARCHAR, club VARCHAR, total VARCHAR, fa_cup_goals VARCHAR)"}, {"answer": "SELECT result FROM table_name_89 WHERE opponent = \"greensboro prowlers\" AND date = \"april 6, 2002\"", "question": "What was the result of the april 6, 2002 game against the greensboro prowlers?", "context": "CREATE TABLE table_name_89 (result VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_71 WHERE floors < 27 AND building = \"150 elgin\"", "question": "Which Location has Floors smaller than 27, and a Building of 150 elgin?", "context": "CREATE TABLE table_name_71 (location VARCHAR, floors VARCHAR, building VARCHAR)"}, {"answer": "SELECT status FROM table_name_25 WHERE building = \"the rhombus\"", "question": "Which Status has a Building of the rhombus?", "context": "CREATE TABLE table_name_25 (status VARCHAR, building VARCHAR)"}, {"answer": "SELECT COUNT(floors) FROM table_name_42 WHERE location = \"little italy\"", "question": "How many floors are in little Italy?", "context": "CREATE TABLE table_name_42 (floors VARCHAR, location VARCHAR)"}, {"answer": "SELECT country FROM table_name_43 WHERE class = \"15 meters\" AND qualifying_grand_prix = \"soaring grand prix of united kingdom\"", "question": "What is Country, when Class is \"15 meters\", and when Qualifying Grand Prix is \"Soaring Grand Prix Of United Kingdom\"?", "context": "CREATE TABLE table_name_43 (country VARCHAR, class VARCHAR, qualifying_grand_prix VARCHAR)"}, {"answer": "SELECT class FROM table_name_20 WHERE dates = \"22 april - 3 may 2009\"", "question": "What is Class, when Dates is \"22 April - 3 May 2009\"?", "context": "CREATE TABLE table_name_20 (class VARCHAR, dates VARCHAR)"}, {"answer": "SELECT country FROM table_name_51 WHERE class = \"club\"", "question": "What is Country, when Class is \"club\"?", "context": "CREATE TABLE table_name_51 (country VARCHAR, class VARCHAR)"}, {"answer": "SELECT country FROM table_name_72 WHERE place = \"torino\"", "question": "What is Country, when Place is \"Torino\"?", "context": "CREATE TABLE table_name_72 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(squad_no) FROM table_name_8 WHERE name = \"martin smith\" AND league_goals < 17", "question": "WHAT IS THE AVERAGE SQUAD NUMBER WITH MARTIN SMITH, AND LEAGUE GOALS LESS THAN 17?", "context": "CREATE TABLE table_name_8 (squad_no INTEGER, name VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT no_5 FROM table_name_16 WHERE no_9 = \"michael\" AND region__year_ = \"new hampshire (2010)\"", "question": "What is No. 5, when No. 9 is Michael, and when Region (Year) is New Hampshire (2010)?", "context": "CREATE TABLE table_name_16 (no_5 VARCHAR, no_9 VARCHAR, region__year_ VARCHAR)"}, {"answer": "SELECT region__year_ FROM table_name_51 WHERE no_7 = \"william\" AND no_2 = \"alexander\"", "question": "What is Region (Year), when No. 7 is William, and when No. 2 is Alexander?", "context": "CREATE TABLE table_name_51 (region__year_ VARCHAR, no_7 VARCHAR, no_2 VARCHAR)"}, {"answer": "SELECT no_10 FROM table_name_45 WHERE no_1 = \"noah\" AND no_9 = \"carter\"", "question": "What is No. 10, when No. 1 is Noah, and when No. 9 is Carter?", "context": "CREATE TABLE table_name_45 (no_10 VARCHAR, no_1 VARCHAR, no_9 VARCHAR)"}, {"answer": "SELECT no_7 FROM table_name_85 WHERE region__year_ = \"arizona (2010)\"", "question": "What is No. 7, when Region (Year) is Arizona (2010)?", "context": "CREATE TABLE table_name_85 (no_7 VARCHAR, region__year_ VARCHAR)"}, {"answer": "SELECT no_1 FROM table_name_25 WHERE region__year_ = \"mississippi (2010)\"", "question": "What is No. 1, when Region (Year) is Mississippi (2010)?", "context": "CREATE TABLE table_name_25 (no_1 VARCHAR, region__year_ VARCHAR)"}, {"answer": "SELECT no_8 FROM table_name_76 WHERE no_10 = \"hunter\"", "question": "What is No. 8, when No. 10 is Hunter?", "context": "CREATE TABLE table_name_76 (no_8 VARCHAR, no_10 VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_73 WHERE player = \"larry nelson\"", "question": "How much did Larry Nelson win?", "context": "CREATE TABLE table_name_73 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_96 WHERE date = \"sep 12, 1976\"", "question": "What is Tournament, when Date is \"Sep 12, 1976\"?", "context": "CREATE TABLE table_name_96 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_61 WHERE date = \"sep 25, 1977\"", "question": "What is Tournament, when Date is \"Sep 25, 1977\"?", "context": "CREATE TABLE table_name_61 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_93 WHERE tournament = \"women's kemper open\"", "question": "What is Margin of Victory, when Tournament is \"Women's Kemper Open\"?", "context": "CREATE TABLE table_name_93 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT no_8 FROM table_name_32 WHERE no_4 = \"noah\"", "question": "What is the No. 8 of the person with a No. 4 of Noah?", "context": "CREATE TABLE table_name_32 (no_8 VARCHAR, no_4 VARCHAR)"}, {"answer": "SELECT no_8 FROM table_name_29 WHERE no_4 = \"matthew\" AND no_7 = \"anthony\"", "question": "What is the No. 8 of the person with a No. 4 of Matthew and a No. 7 of Anthony?", "context": "CREATE TABLE table_name_29 (no_8 VARCHAR, no_4 VARCHAR, no_7 VARCHAR)"}, {"answer": "SELECT no_1 FROM table_name_26 WHERE no_2 = \"john\"", "question": "What is the No. 1 of the person with a No. 2 of John?", "context": "CREATE TABLE table_name_26 (no_1 VARCHAR, no_2 VARCHAR)"}, {"answer": "SELECT no_6 FROM table_name_56 WHERE no_10 = \"joshua\" AND no_8 = \"andrew\"", "question": "What is the No. 6 of the person with a No. 10 of Joshua and a No. 8 of Andrew?", "context": "CREATE TABLE table_name_56 (no_6 VARCHAR, no_10 VARCHAR, no_8 VARCHAR)"}, {"answer": "SELECT no_2 FROM table_name_98 WHERE no_4 = \"ethan\" AND no_7 = \"jackson\"", "question": "What is the No. 2 of the person with a No. 5 of Ethan and NO. 7 of Jackson?", "context": "CREATE TABLE table_name_98 (no_2 VARCHAR, no_4 VARCHAR, no_7 VARCHAR)"}, {"answer": "SELECT no_1 FROM table_name_27 WHERE region__year_ = \"maryland (2008)\"", "question": "What is the No 1 from the Maryland (2008) Region (year)?", "context": "CREATE TABLE table_name_27 (no_1 VARCHAR, region__year_ VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_74 WHERE artist = \"maggie toal\"", "question": "What was the draw of Maggie Toal?", "context": "CREATE TABLE table_name_74 (draw INTEGER, artist VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_84 WHERE place = \"3rd\" AND draw > 5", "question": "What is the highest point total that placed 3rd and has a draw larger than 5?", "context": "CREATE TABLE table_name_84 (points INTEGER, place VARCHAR, draw VARCHAR)"}, {"answer": "SELECT gold FROM table_name_18 WHERE year = \"1958\"", "question": "Who won the gold in 1958?", "context": "CREATE TABLE table_name_18 (gold VARCHAR, year VARCHAR)"}, {"answer": "SELECT host_country___countries FROM table_name_42 WHERE silver = \"[[|]] (2)\" AND bronze = \"czechoslovakia (3)\"", "question": "What was the host country when the silver was [[|]] (2) and bronze is czechoslovakia (3)?", "context": "CREATE TABLE table_name_42 (host_country___countries VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT host_country___countries FROM table_name_3 WHERE year = \"2007\"", "question": "Who was the host country in 2007?", "context": "CREATE TABLE table_name_3 (host_country___countries VARCHAR, year VARCHAR)"}, {"answer": "SELECT host_country___countries FROM table_name_45 WHERE bronze = \"[[|]] (1)\" AND host_city___cities = \"krynica\"", "question": "Who was the host country when bronze is [[|]] (1) and host city is Krynica?", "context": "CREATE TABLE table_name_45 (host_country___countries VARCHAR, bronze VARCHAR, host_city___cities VARCHAR)"}, {"answer": "SELECT result FROM table_name_73 WHERE road_team = \"boston\" AND game = \"game 4\"", "question": "What is the result for Boston's road team in game 4?", "context": "CREATE TABLE table_name_73 (result VARCHAR, road_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_61 WHERE result = \"117-114\"", "question": "Which road team has a result of 117-114?", "context": "CREATE TABLE table_name_61 (road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_94 WHERE home_team = \"boston\" AND date = \"april 16\"", "question": "What is the road team playing against Boston on April 16?", "context": "CREATE TABLE table_name_94 (road_team VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_64 WHERE date = \"april 21\"", "question": "Which home team is on April 21?", "context": "CREATE TABLE table_name_64 (home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_29 WHERE result = \"113-106\"", "question": "Which game has a result of 113-106?", "context": "CREATE TABLE table_name_29 (game VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_26 WHERE road_team = \"los angeles\" AND game = \"game 1\"", "question": "Which home team played against Los Angeles in game 1?", "context": "CREATE TABLE table_name_26 (home_team VARCHAR, road_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(others_number) FROM table_name_69 WHERE kerry_percentage = \"52.1%\"", "question": "What percentage of other candidates did the county which voted 52.1% for Kerry vote for?", "context": "CREATE TABLE table_name_69 (others_number INTEGER, kerry_percentage VARCHAR)"}, {"answer": "SELECT AVG(kerry_number) FROM table_name_46 WHERE bush_number = 189 OFFSET 605", "question": "How many votes did Kerry get in the county that gave Bush 189,605 votes?", "context": "CREATE TABLE table_name_46 (kerry_number INTEGER, bush_number VARCHAR)"}, {"answer": "SELECT MIN(others_number) FROM table_name_12 WHERE others_percentage = \"1.9%\" AND bush_number < 160 OFFSET 390", "question": "How many votes went to other candidates in the county that gave 1.9% votes to them, and 160,390 total votes to Bush?", "context": "CREATE TABLE table_name_12 (others_number INTEGER, others_percentage VARCHAR, bush_number VARCHAR)"}, {"answer": "SELECT SUM(seats_2005) FROM table_name_14 WHERE percentage_in_de_crease = \"50.0%\" AND governorate = \"dhi qar governorate\" AND in_de_creased_by > 6", "question": "How many Seats 2005 has a Percentage in/de-crease of 50.0%, and a Governorate of dhi qar governorate, and a In/de-creased by larger than 6?", "context": "CREATE TABLE table_name_14 (seats_2005 INTEGER, in_de_creased_by VARCHAR, percentage_in_de_crease VARCHAR, governorate VARCHAR)"}, {"answer": "SELECT MIN(seats_2010) FROM table_name_46 WHERE seats_2005 < 9 AND governorate = \"al muthanna governorate\" AND in_de_creased_by > 2", "question": "Name the lowest Seats 2010 which has Seats 2005 smaller than 9, and a Governorate of al muthanna governorate, and an In/de-creased by larger than 2?", "context": "CREATE TABLE table_name_46 (seats_2010 INTEGER, in_de_creased_by VARCHAR, seats_2005 VARCHAR, governorate VARCHAR)"}, {"answer": "SELECT AVG(in_de_creased_by) FROM table_name_66 WHERE governorate = \"al anbar governorate\" AND seats_2005 < 9", "question": "Name the average In/de-creased by which has a Governorate of al anbar governorate, and Seats 2005 smaller than 9?", "context": "CREATE TABLE table_name_66 (in_de_creased_by INTEGER, governorate VARCHAR, seats_2005 VARCHAR)"}, {"answer": "SELECT MAX(in_de_creased_by) FROM table_name_34 WHERE percentage_in_de_crease = \"100%\" AND seats_2010 > 8", "question": "Name the highest In/de-creased which has a Percentage in/de-crease of 100%, and Seats 2010 larger than 8?", "context": "CREATE TABLE table_name_34 (in_de_creased_by INTEGER, percentage_in_de_crease VARCHAR, seats_2010 VARCHAR)"}, {"answer": "SELECT player FROM table_name_94 WHERE score > 67", "question": "What player has a score larger than 67?", "context": "CREATE TABLE table_name_94 (player VARCHAR, score INTEGER)"}, {"answer": "SELECT record FROM table_name_21 WHERE game > 33 AND score = \"111-108\"", "question": "What is the celtics record after game 33 when they score of the game was 111-108?", "context": "CREATE TABLE table_name_21 (record VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT rider FROM table_name_12 WHERE grid = 7", "question": "Which Rider is grid 7?", "context": "CREATE TABLE table_name_12 (rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_45 WHERE rider = \"massimo roccoli\" AND grid < 4", "question": "What is the total number of laps done by Massimo Roccoli when his grid was smaller than 4?", "context": "CREATE TABLE table_name_45 (laps VARCHAR, rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time FROM table_name_81 WHERE bike = \"yamaha yzf-r6\" AND grid > 1 AND rider = \"david salom\"", "question": "What is the time recorded by David Salom on his Yamaha yzf-r6 when his grid was larger than 1?", "context": "CREATE TABLE table_name_81 (time VARCHAR, rider VARCHAR, bike VARCHAR, grid VARCHAR)"}, {"answer": "SELECT stop_no FROM table_name_25 WHERE destination = \"[2778] claisebrook station platforms\"", "question": "What is Stop No., when Destination is [2778] Claisebrook Station Platforms?", "context": "CREATE TABLE table_name_25 (stop_no VARCHAR, destination VARCHAR)"}, {"answer": "SELECT stopping_pattern FROM table_name_92 WHERE platform = \"4\"", "question": "What is Stopping Pattern, when Platform is 4?", "context": "CREATE TABLE table_name_92 (stopping_pattern VARCHAR, platform VARCHAR)"}, {"answer": "SELECT stop_no FROM table_name_23 WHERE destination = \"perth\" AND line = \"midland\"", "question": "What is Stop No., when Destination is Perth, and when Line is Midland?", "context": "CREATE TABLE table_name_23 (stop_no VARCHAR, destination VARCHAR, line VARCHAR)"}, {"answer": "SELECT coach FROM table_name_58 WHERE founded > 1963 AND team = \"western strikers\"", "question": "Which coach founded the Western Strikers team after 1963?", "context": "CREATE TABLE table_name_58 (coach VARCHAR, founded VARCHAR, team VARCHAR)"}, {"answer": "SELECT coach FROM table_name_69 WHERE location = \"oakden\"", "question": "Who is the coach located in Oakden?", "context": "CREATE TABLE table_name_69 (coach VARCHAR, location VARCHAR)"}, {"answer": "SELECT team FROM table_name_82 WHERE coach = \"john kosmina\"", "question": "Which team has coach John Kosmina?", "context": "CREATE TABLE table_name_82 (team VARCHAR, coach VARCHAR)"}, {"answer": "SELECT coach FROM table_name_95 WHERE team = \"adelaide galaxy\"", "question": "Who is the coach for the Adelaide Galaxy team?", "context": "CREATE TABLE table_name_95 (coach VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_1 WHERE class = \"250cc\" AND year = 1972", "question": "Count the average Wins which has a Class of 250cc, and a Year of 1972?", "context": "CREATE TABLE table_name_1 (wins INTEGER, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_94 WHERE points = 28 AND year < 1972", "question": "Name the lowest Wins which has Points of 28, and a Year smaller than 1972?", "context": "CREATE TABLE table_name_94 (wins INTEGER, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_name_12 WHERE points > 9 AND year > 1971 AND class = \"250cc\"", "question": "Name the Team which has Points larger than 9, and a Year larger than 1971, and a Class of 250cc?", "context": "CREATE TABLE table_name_12 (team VARCHAR, class VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_42 WHERE class = \"350cc\" AND year < 1973", "question": "Name the Wins which has a Class of 350cc, and a Year smaller than 1973?", "context": "CREATE TABLE table_name_42 (wins INTEGER, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_24 WHERE wins > 0", "question": "How many Points has Wins larger than 0?", "context": "CREATE TABLE table_name_24 (points VARCHAR, wins INTEGER)"}, {"answer": "SELECT spike FROM table_name_27 WHERE name = \"mia jerkov category:articles with hcards\"", "question": "What kind of Spike has a Name of mia jerkov category:articles with hcards?", "context": "CREATE TABLE table_name_27 (spike VARCHAR, name VARCHAR)"}, {"answer": "SELECT 2013 AS _club FROM table_name_62 WHERE name = \"ana grbac category:articles with hcards\"", "question": "Name the 2013 club which has a Name of ana grbac category:articles with hcards?", "context": "CREATE TABLE table_name_62 (name VARCHAR)"}, {"answer": "SELECT spike FROM table_name_84 WHERE name = \"senna u\u0161i\u0107-jogunica category:articles with hcards\"", "question": "Name the Spike which has a Name of senna u\u0161i\u0107-jogunica category:articles with hcards?", "context": "CREATE TABLE table_name_84 (spike VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_58 WHERE round > 7 AND position = \"c\"", "question": "What was the Overall number for the player with a position of C and a round greater than 7?", "context": "CREATE TABLE table_name_58 (overall INTEGER, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_86 WHERE pick > 9", "question": "What was the Overall number that is the lowest, and has a pick greater than 9?", "context": "CREATE TABLE table_name_86 (overall INTEGER, pick INTEGER)"}, {"answer": "SELECT MIN(races) FROM table_name_67 WHERE podiums < 2 AND flaps > 0 AND season > 2008", "question": "Which team after 2008, with less than 2 podium finished and more than 0 FLAPS, had the lowest numberof races?", "context": "CREATE TABLE table_name_67 (races INTEGER, season VARCHAR, podiums VARCHAR, flaps VARCHAR)"}, {"answer": "SELECT points FROM table_name_17 WHERE entrant = \"brabham racing organisation\" AND year = 1964 AND chassis = \"brabham bt7\"", "question": "what is the points when the entrant is brabham racing organisation, the year is 1964 and the chassis is brabham bt7?", "context": "CREATE TABLE table_name_17 (points VARCHAR, chassis VARCHAR, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_25 WHERE points = \"42 (45)\" AND chassis = \"brabham bt20\"", "question": "who is the entrant when the points is 42 (45) and the chassis is brabham bt20?", "context": "CREATE TABLE table_name_25 (entrant VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_79 WHERE chassis = \"brabham bt33\"", "question": "how many times is the chassis brabham bt33?", "context": "CREATE TABLE table_name_79 (year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT stage AS winner FROM table_name_48 WHERE year = 2013", "question": "Who was the winner in 2013?", "context": "CREATE TABLE table_name_48 (stage VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_22 WHERE venue = \"ullevi\"", "question": "Who was the opponent at Ullevi?", "context": "CREATE TABLE table_name_22 (opponents VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE opponents = \"g\u00f6teborg\" AND score = \"3-1\"", "question": "When was G\u00f6teborg the opponent with a score of 3-1?", "context": "CREATE TABLE table_name_9 (date VARCHAR, opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT finish FROM table_name_89 WHERE to_par = \"+10\"", "question": "Which Finish had a To par of +10?", "context": "CREATE TABLE table_name_89 (finish VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_45 WHERE to_par = \"+1\"", "question": "Which years was there a To par of +1?", "context": "CREATE TABLE table_name_45 (year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_16 WHERE driver = \"s\u00e9bastien bourdais\" AND laps < 63", "question": "What were S\u00e9bastien Bourdais' lowest points when there were less than 63 laps?", "context": "CREATE TABLE table_name_16 (points INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT position FROM table_name_40 WHERE event = \"60 m\" AND venue = \"budapest , hungary\"", "question": "What is Position, when Event is 60 m, and when Venue is Budapest , Hungary?", "context": "CREATE TABLE table_name_40 (position VARCHAR, event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT event FROM table_name_97 WHERE position = \"6th\" AND year > 2006", "question": "What is Event, when Position is 6th, and when Year is after 2006?", "context": "CREATE TABLE table_name_97 (event VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_66 WHERE position = \"9th\" AND event = \"100 m\" AND venue = \"munich, germany\"", "question": "What is the average Year, when Position is 9th, when Event is 100 m, and when Venue is Munich, Germany?", "context": "CREATE TABLE table_name_66 (year INTEGER, venue VARCHAR, position VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_6 WHERE year = 2002 AND competition = \"european indoor championships\"", "question": "What is the Event, when Year is 2002, and when Competition is European Indoor Championships?", "context": "CREATE TABLE table_name_6 (event VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT nation FROM table_name_11 WHERE bronze = 1 AND gold > 0 AND rank = \"2\"", "question": "What is Nation, when Bronze is 1, when Gold is greater than 0, and when Rank is 2?", "context": "CREATE TABLE table_name_11 (nation VARCHAR, rank VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_75 WHERE bronze > 0 AND silver > 0 AND gold > 2 AND nation = \"soviet union\"", "question": "What is the average Total, when Bronze is greater than 0, when Silver is greater than 0, when Gold is greater than 2, and when Nation is Soviet Union?", "context": "CREATE TABLE table_name_75 (total INTEGER, nation VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_28 WHERE nation = \"yugoslavia\" AND silver > 0", "question": "What is the average Gold, when Nation is Yugoslavia, and when Silver is greater than 0?", "context": "CREATE TABLE table_name_28 (gold INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_36 WHERE total = 4 AND silver < 2", "question": "What is the average Bronze, when Total is 4, and when Silver is less than 2?", "context": "CREATE TABLE table_name_36 (bronze INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT agg FROM table_name_58 WHERE team_2 = \"irtysh\"", "question": "What is the aggregate for the tie with a team 2 of Irtysh?", "context": "CREATE TABLE table_name_58 (agg VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_27 WHERE team_1 = \"dinamo minsk\"", "question": "What was the aggregate in the match with a team 1 of Dinamo Minsk?", "context": "CREATE TABLE table_name_27 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT java_ee_compatibility FROM table_name_97 WHERE edition = \"5.2.4\"", "question": "What is the Java EE compatibility of the 5.2.4 edition?", "context": "CREATE TABLE table_name_97 (java_ee_compatibility VARCHAR, edition VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_43 WHERE vendor = \"eclipse foundation\"", "question": "What is the release date for Eclipse Foundation?", "context": "CREATE TABLE table_name_43 (release_date VARCHAR, vendor VARCHAR)"}, {"answer": "SELECT product FROM table_name_80 WHERE java_ee_compatibility = \"1.4\" AND vendor = \"oracle corporation\"", "question": "Which Oracle Corporation product has a Java EE compatibility of 1.4?", "context": "CREATE TABLE table_name_80 (product VARCHAR, java_ee_compatibility VARCHAR, vendor VARCHAR)"}, {"answer": "SELECT edition FROM table_name_4 WHERE java_ee_compatibility = \"5\" AND release_date = \"2007-06-07\"", "question": "Which edition released on 2007-06-07 has a Java EE compatibility of 5?", "context": "CREATE TABLE table_name_4 (edition VARCHAR, java_ee_compatibility VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_15 WHERE product = \"glassfish\"", "question": "When was Glassfish released?", "context": "CREATE TABLE table_name_15 (release_date VARCHAR, product VARCHAR)"}, {"answer": "SELECT license FROM table_name_23 WHERE release_date = \"2009-08\"", "question": "Which licence has a release date of 2009-08?", "context": "CREATE TABLE table_name_23 (license VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_28 WHERE tournament = \"paris\"", "question": "WHO ARE THE SEMIFINALISTS FOR TOURNAMENT OF PARIS?", "context": "CREATE TABLE table_name_28 (semifinalists VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_82 WHERE tournament = \"hamburg\"", "question": "WHO WAS THE SEMIFINALISTS FOR THE HAMBURG TOURNAMENT?", "context": "CREATE TABLE table_name_82 (semifinalists VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE round = \"sf\"", "question": "Which opponent had a round of SF?", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT result FROM table_name_55 WHERE opponent = \"celtic\"", "question": "What was the result when the opponent was Celtic?", "context": "CREATE TABLE table_name_55 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_10 WHERE round = \"r3\"", "question": "What was the result for round r3?", "context": "CREATE TABLE table_name_10 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(occ_championships) FROM table_name_96 WHERE school = \"central crossing\"", "question": "How many times have Central Crossing won the OCC Championship?", "context": "CREATE TABLE table_name_96 (occ_championships INTEGER, school VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_46 WHERE opponent = \"michael chavez\"", "question": "How many rounds is the fight against Michael Chavez?", "context": "CREATE TABLE table_name_46 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE partner = \"pere riba\"", "question": "What date was the match where Daniel Gimeno-Traver's partner was pere riba?", "context": "CREATE TABLE table_name_26 (date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT to_club FROM table_name_26 WHERE player = \"ashley grimes\"", "question": "Ashley Grimes had what to club?", "context": "CREATE TABLE table_name_26 (to_club VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_30 WHERE transfer_fee = \"released\" AND pos = \"df\"", "question": "Who had a transfer fee of released and played the position of DF?", "context": "CREATE TABLE table_name_30 (player VARCHAR, transfer_fee VARCHAR, pos VARCHAR)"}, {"answer": "SELECT exit_date FROM table_name_50 WHERE transfer_fee = \"released\" AND player = \"kiatprawut saiwaeo\"", "question": "When was the exit date KiatPrawut Saiwaeo who had a transfer fee of released?", "context": "CREATE TABLE table_name_50 (exit_date VARCHAR, transfer_fee VARCHAR, player VARCHAR)"}, {"answer": "SELECT exit_date FROM table_name_14 WHERE to_club = \"doncaster rovers\"", "question": "What was the date that a player went to the club Doncaster Rovers?", "context": "CREATE TABLE table_name_14 (exit_date VARCHAR, to_club VARCHAR)"}, {"answer": "SELECT pos FROM table_name_76 WHERE to_club = \"released\" AND player = \"teerasil dangda\"", "question": "Teerasil Dangda who had a to club of released plays what position?", "context": "CREATE TABLE table_name_76 (pos VARCHAR, to_club VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_67 WHERE played > 10", "question": "What was the average points for someone who has played more than 10?", "context": "CREATE TABLE table_name_67 (points INTEGER, played INTEGER)"}, {"answer": "SELECT l2_cache FROM table_name_54 WHERE model_number = \"pentium ii 350\"", "question": "What is L2 Cache, when Model Number is Pentium II 350?", "context": "CREATE TABLE table_name_54 (l2_cache VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT mult FROM table_name_85 WHERE model_number = \"pentium ii 450\"", "question": "What is Mult, when Model Number is Pentium II 450?", "context": "CREATE TABLE table_name_85 (mult VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_59 WHERE model_number = \"pentium ii 400\"", "question": "What is Frequency, when Model Number is Pentium II 400?", "context": "CREATE TABLE table_name_59 (frequency VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT socket FROM table_name_64 WHERE voltage = \"2.0v\" AND model_number = \"pentium ii 333\"", "question": "What is Socket, when Voltage is 2.0V, and when Model Number is Pentium II 333?", "context": "CREATE TABLE table_name_64 (socket VARCHAR, voltage VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_2 WHERE voltage = \"2.0v\" AND frequency = \"350 mhz\"", "question": "What is Model Number, when Voltage is 2.0V, and when Frequency is 350 mhz?", "context": "CREATE TABLE table_name_2 (model_number VARCHAR, voltage VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_52 WHERE score = \"80-94\"", "question": "How many attended during the game with a score of 80-94?", "context": "CREATE TABLE table_name_52 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT us AS Rap FROM table_name_44 WHERE year = 2000 AND us = \"105\"", "question": "What is the U.S. rap ranking in 2000 of the U.S. 105 single?", "context": "CREATE TABLE table_name_44 (us VARCHAR, year VARCHAR)"}, {"answer": "SELECT record FROM table_name_86 WHERE score = \"28-43\"", "question": "For the game ending with a score of 28-43, what is the listed as the final record?", "context": "CREATE TABLE table_name_86 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_95 WHERE record = \"0-5\"", "question": "For the game showing a final record of 0-5, what was the attendance level?", "context": "CREATE TABLE table_name_95 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE opponent = \"at los angeles rams\"", "question": "For the game where the opponent is listed as At Los Angeles Rams, what was the final score?", "context": "CREATE TABLE table_name_65 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_66 WHERE record = \"0-1\"", "question": "What was the result for the game with final record listed as 0-1?", "context": "CREATE TABLE table_name_66 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT player FROM table_name_73 WHERE round < 3 AND position = \"(g)\"", "question": "Which player has fewer than 3 rounds and the position of (g)?", "context": "CREATE TABLE table_name_73 (player VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT round FROM table_name_20 WHERE position = \"(d)\" AND player = \"colby robak\"", "question": "How many rounds does Colby Robak have with a position of (d)?", "context": "CREATE TABLE table_name_20 (round VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_31 WHERE player = \"matthew bartkowski\"", "question": "Which College/Junior/Club Team (league) does Matthew Bartkowski play for?", "context": "CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE record = \"12-9\"", "question": "What date was the game when the liberty had a record of 12-9?", "context": "CREATE TABLE table_name_63 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_45 WHERE score = \"105-72\"", "question": "What was the record for the game that had a score of 105-72?", "context": "CREATE TABLE table_name_45 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE record = \"4-4\"", "question": "What was the date of the game where the record was 4-4?", "context": "CREATE TABLE table_name_56 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_91 WHERE date = \"10 february 1951\" AND home_team = \"manchester united\"", "question": "Who was the away team when Manchester United played at home on 10 February 1951?", "context": "CREATE TABLE table_name_91 (away_team VARCHAR, date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_87 WHERE away_team = \"huddersfield town\"", "question": "Which tie did Huddersfield Town play as an away team?", "context": "CREATE TABLE table_name_87 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT country FROM table_name_57 WHERE place = \"t6\" AND player = \"ben crenshaw\"", "question": "What is the Country of T6 Place Player Ben Crenshaw?", "context": "CREATE TABLE table_name_57 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_67 WHERE to_par = \"+3\" AND score = 76 - 69 - 69 - 69 = 283", "question": "What is the Money of the Player with a To par of +3 and Score of 76-69-69-69=283?", "context": "CREATE TABLE table_name_67 (money___ INTEGER, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE january < 22 AND record = \"30-7-7\"", "question": "What is the score of the game before January 22 with a 30-7-7 record?", "context": "CREATE TABLE table_name_54 (score VARCHAR, january VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_11 WHERE january < 19 AND record = \"27-6-6\"", "question": "What is the sum of the games before January 19 with a 27-6-6 record?", "context": "CREATE TABLE table_name_11 (game INTEGER, january VARCHAR, record VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_47 WHERE voltage = \"3.3 v\"", "question": "What is the Frequency, when the Voltage is 3.3 V?", "context": "CREATE TABLE table_name_47 (frequency VARCHAR, voltage VARCHAR)"}, {"answer": "SELECT l1_cache FROM table_name_88 WHERE model_number = \"x5-133 ady\"", "question": "What is the L1 Cache, when the Model Number is X5-133 ADY?", "context": "CREATE TABLE table_name_88 (l1_cache VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_86 WHERE voltage = \"3.45 v\" AND frequency = \"133 mhz\"", "question": "What is the Model Number, when the Voltage is 3.45 V, and when the Frequency is 133 MHZ?", "context": "CREATE TABLE table_name_86 (model_number VARCHAR, voltage VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_17 WHERE ship = \"aracataca\"", "question": "What is the Nationality of the Aracataca Ship?", "context": "CREATE TABLE table_name_17 (nationality VARCHAR, ship VARCHAR)"}, {"answer": "SELECT saka_era FROM table_name_77 WHERE months_in_malayalam_era = \"medam\"", "question": "WHAT IS THE SAKA ERA WITH MONTHS IN MEDAM?", "context": "CREATE TABLE table_name_77 (saka_era VARCHAR, months_in_malayalam_era VARCHAR)"}, {"answer": "SELECT sign_of_zodiac FROM table_name_58 WHERE in_malayalam = \"\u0d2e\u0d40\u0d28\u0d02\"", "question": "WHAT IS THE SIGN OF ZODIAC OF \u0d2e\u0d40\u0d28\u0d02?", "context": "CREATE TABLE table_name_58 (sign_of_zodiac VARCHAR, in_malayalam VARCHAR)"}, {"answer": "SELECT saka_era FROM table_name_31 WHERE sign_of_zodiac = \"virgo\"", "question": "WHAT IS THE SAKA ERA OF VIRGO?", "context": "CREATE TABLE table_name_31 (saka_era VARCHAR, sign_of_zodiac VARCHAR)"}, {"answer": "SELECT gregorian_calendar FROM table_name_77 WHERE sign_of_zodiac = \"aquarius\"", "question": "WHAT IS THE GREGORIAN CALENDAR FOR AQUARIUS?", "context": "CREATE TABLE table_name_77 (gregorian_calendar VARCHAR, sign_of_zodiac VARCHAR)"}, {"answer": "SELECT in_malayalam FROM table_name_61 WHERE saka_era = \"kartika\u2013agrahayana\"", "question": "WHAT IS THE IN MALAYALAM WITH kartika\u2013agrahayana?", "context": "CREATE TABLE table_name_61 (in_malayalam VARCHAR, saka_era VARCHAR)"}, {"answer": "SELECT airport FROM table_name_77 WHERE iata = \"tbj\"", "question": "What is the airport when the iata is tbj?", "context": "CREATE TABLE table_name_77 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_89 WHERE airport = \"malta international airport\"", "question": "what is the iata for malta international airport?", "context": "CREATE TABLE table_name_89 (iata VARCHAR, airport VARCHAR)"}, {"answer": "SELECT airport FROM table_name_68 WHERE country = \"tunisia\" AND icao = \"dtaa\"", "question": "what is the airport for the country tunisia with the icao dtaa?", "context": "CREATE TABLE table_name_68 (airport VARCHAR, country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT city FROM table_name_57 WHERE country = \"libya\" AND iata = \"ben\"", "question": "what is the city when the country is libya and the iata is ben?", "context": "CREATE TABLE table_name_57 (city VARCHAR, country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT country FROM table_name_1 WHERE city = \"gafsa\"", "question": "what is the country when the city is gafsa?", "context": "CREATE TABLE table_name_1 (country VARCHAR, city VARCHAR)"}, {"answer": "SELECT iata FROM table_name_71 WHERE city = \"tripoli\"", "question": "what is the iata when the city is tripoli?", "context": "CREATE TABLE table_name_71 (iata VARCHAR, city VARCHAR)"}, {"answer": "SELECT 2 AS nd_round FROM table_name_91 WHERE team_2 = \"red star (d1)\"", "question": "Who is the 2nd round opponent when Team 2 is Red Star (D1)?", "context": "CREATE TABLE table_name_91 (team_2 VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE team_2 = \"usl dunkerque (d2)\"", "question": "When Team 2 was USL Dunkerque (D2), what was the score", "context": "CREATE TABLE table_name_75 (score VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_60 WHERE team_2 = \"red star (d1)\"", "question": "What was the team 1 when Red Star (D1) was team 2?", "context": "CREATE TABLE table_name_60 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_88 WHERE tie_no = \"4\"", "question": "Which team has home game with tie of 4?", "context": "CREATE TABLE table_name_88 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE tie_no = \"4\"", "question": "what is score of a team with tie of 4?", "context": "CREATE TABLE table_name_38 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE attendance = \"39,592\"", "question": "What is the score of the game with 39,592 attendance?", "context": "CREATE TABLE table_name_19 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_65 WHERE tie_no = \"4\"", "question": "How many attended the game when the score was tie at 4?", "context": "CREATE TABLE table_name_65 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT player FROM table_name_87 WHERE position = \"defensive back\" AND round > 3", "question": "Which player was defensive back after round 3?", "context": "CREATE TABLE table_name_87 (player VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT pick FROM table_name_53 WHERE round > 2 AND player = \"bill gramatica\"", "question": "What was the pick for Bill Gramatica after round 2?", "context": "CREATE TABLE table_name_53 (pick VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT record FROM table_name_25 WHERE date = \"june 29\"", "question": "What was the record on june 29?", "context": "CREATE TABLE table_name_25 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_36 WHERE date = \"june 20\"", "question": "What were the high points on june 20?", "context": "CREATE TABLE table_name_36 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_22 WHERE location_attendance = \"palace of auburn hills 8,108\"", "question": "Which Record has a Location/Attendance of palace of auburn hills 8,108?", "context": "CREATE TABLE table_name_22 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_30 WHERE record = \"11-4\"", "question": "Which Game is the lowest one that has a Record of 11-4?", "context": "CREATE TABLE table_name_30 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE location_attendance = \"verizon center 7,587\"", "question": "Which Date has a Location/Attendance of verizon center 7,587?", "context": "CREATE TABLE table_name_66 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_23 WHERE high_points = \"douglas (23)\"", "question": "Which High rebounds has a High points of douglas (23)?", "context": "CREATE TABLE table_name_23 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE opponent = \"seattle\"", "question": "Which Score has an Opponent of seattle?", "context": "CREATE TABLE table_name_62 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE high_points = \"hoffman (16)\"", "question": "Which Record has a High points of hoffman (16)?", "context": "CREATE TABLE table_name_58 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_51 WHERE record = \"5-3 (1)\"", "question": "Which round has a record of 5-3 (1)?", "context": "CREATE TABLE table_name_51 (round INTEGER, record VARCHAR)"}, {"answer": "SELECT djurg\u00e5rden_scorers FROM table_name_21 WHERE venue = \"idrottsparken\"", "question": "Who were the Djurgarden scorers when the venue was Idrottsparken?", "context": "CREATE TABLE table_name_21 (djurg\u00e5rden_scorers VARCHAR, venue VARCHAR)"}, {"answer": "SELECT series FROM table_name_95 WHERE team = \"gunbroker racing\"", "question": "what is the series when the team is gunbroker racing?", "context": "CREATE TABLE table_name_95 (series VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_18 WHERE make = \"dodge\" AND year > 2008", "question": "what is the team when the make is dodge and the year is after 2008?", "context": "CREATE TABLE table_name_18 (team VARCHAR, make VARCHAR, year VARCHAR)"}, {"answer": "SELECT make FROM table_name_88 WHERE year = 2008", "question": "what is the make for the year 2008?", "context": "CREATE TABLE table_name_88 (make VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_87 WHERE driver = \"kevin lepage\"", "question": "what is the year when the driver was kevin lepage?", "context": "CREATE TABLE table_name_87 (year INTEGER, driver VARCHAR)"}, {"answer": "SELECT team FROM table_name_54 WHERE schedule = \"limited\" AND year < 2007 AND driver = \"jason white\"", "question": "what is the team when the schedule is limited, year is earlier than 2007 and the driver is jason white?", "context": "CREATE TABLE table_name_54 (team VARCHAR, driver VARCHAR, schedule VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_44 WHERE games = 37 AND points > 613", "question": "Which rank is the lowest with 37 games and more than 613 points?", "context": "CREATE TABLE table_name_44 (rank INTEGER, games VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_99 WHERE team = \"grupo capitol valladolid\" AND games > 34", "question": "What is Grupo Capitol Valladolid's highest rank with more than 34 games?", "context": "CREATE TABLE table_name_99 (rank INTEGER, team VARCHAR, games VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_80 WHERE rank = 5 AND games > 34", "question": "How many points are there for rank 5 with more than 34 games?", "context": "CREATE TABLE table_name_80 (points VARCHAR, rank VARCHAR, games VARCHAR)"}, {"answer": "SELECT location FROM table_name_35 WHERE name = \"kap shui mun bridge\"", "question": "Where is the kap shui mun bridge?", "context": "CREATE TABLE table_name_35 (location VARCHAR, name VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_32 WHERE 2013 = \"2r\" AND 2010 = \"1r\"", "question": "What tournament shows 2013 as 2r, and a 2010 as 1r?", "context": "CREATE TABLE table_name_32 (tournament VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_77 WHERE 2008 = \"1r\"", "question": "What shows for 2013 when the 2008 is 1r?", "context": "CREATE TABLE table_name_77 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_49 WHERE 2012 = \"q1\" AND 2010 = \"4r\"", "question": "What shows for 2011 when 2012 is q1, and a 2010 is 4r?", "context": "CREATE TABLE table_name_49 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_4 WHERE 2010 = \"1r\" AND 2008 = \"1r\"", "question": "What tournament has a 2010 of 1r, and a 2008 of 1r?", "context": "CREATE TABLE table_name_4 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_82 WHERE tournament = \"french open\"", "question": "What shows for 2011 at the French open?", "context": "CREATE TABLE table_name_82 (tournament VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_16 WHERE 2012 = \"2r\"", "question": "What shows for 2013 when 2012 is 2r?", "context": "CREATE TABLE table_name_16 (Id VARCHAR)"}, {"answer": "SELECT COUNT(south_asians_2011) FROM table_name_19 WHERE province = \"quebec\" AND south_asians_2001 < 59 OFFSET 510", "question": "How many South Asians were there in 2011 in Quebec when there were fewer than 59,510 in 2001?", "context": "CREATE TABLE table_name_19 (south_asians_2011 VARCHAR, province VARCHAR, south_asians_2001 VARCHAR)"}, {"answer": "SELECT province FROM table_name_56 WHERE south_asians_2001 < 190 AND south_asians_2011 = 115", "question": "Which province had fewer than 190 South Asians in 2001 and 115 South Asians in 2011?", "context": "CREATE TABLE table_name_56 (province VARCHAR, south_asians_2001 VARCHAR, south_asians_2011 VARCHAR)"}, {"answer": "SELECT AVG(south_asians_2001) FROM table_name_86 WHERE province = \"alberta\" AND south_asians_2011 > 159 OFFSET 055", "question": "How many South Asians on average were in Alberta in 2001 and in 2011 had 159,055?", "context": "CREATE TABLE table_name_86 (south_asians_2001 INTEGER, province VARCHAR, south_asians_2011 VARCHAR)"}, {"answer": "SELECT result FROM table_name_62 WHERE extra = \"heptathlon\" AND venue = \"g\u00f6tzis , austria\"", "question": "What is Result, when Extra is \"Heptathlon\", and when Venue is \"G\u00f6tzis , Austria\"?", "context": "CREATE TABLE table_name_62 (result VARCHAR, extra VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_50 WHERE tournament = \"world championships\"", "question": "What is the total number of Year(s), when Tournament is \"World Championships\"?", "context": "CREATE TABLE table_name_50 (year VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT venue FROM table_name_63 WHERE year = 2005 AND result = \"8th\"", "question": "What is Venue, when Year is 2005, and when Result is 8th?", "context": "CREATE TABLE table_name_63 (venue VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_50 WHERE result = \"18th\"", "question": "What is Tournament, when Result is 18th?", "context": "CREATE TABLE table_name_50 (tournament VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE year > 2003 AND tournament = \"hypo-meeting\"", "question": "What is Venue, when Year is after 2003, and when Tournament is \"Hypo-Meeting\"?", "context": "CREATE TABLE table_name_89 (venue VARCHAR, year VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_94 WHERE score = 71 - 71 - 70 - 70 = 282", "question": "When the score was  71-71-70-70=282 what was the To par recorded?", "context": "CREATE TABLE table_name_94 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE player = \"tom lehman\"", "question": "What was the score for Tom Lehman?", "context": "CREATE TABLE table_name_68 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(november) FROM table_name_40 WHERE game > 23", "question": "What is the sum of November, when Game is greater than 23?", "context": "CREATE TABLE table_name_40 (november INTEGER, game INTEGER)"}, {"answer": "SELECT SUM(november) FROM table_name_55 WHERE game = 17", "question": "What is the sum of November, when Game is \"17\"?", "context": "CREATE TABLE table_name_55 (november INTEGER, game VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_44 WHERE opponent = \"chicago black hawks\" AND november < 16", "question": "What is the highest Game, when Opponent is \"Chicago Black Hawks\", and when November is less than 16?", "context": "CREATE TABLE table_name_44 (game INTEGER, opponent VARCHAR, november VARCHAR)"}, {"answer": "SELECT player FROM table_name_87 WHERE total = 297", "question": "What player has a total of 297?", "context": "CREATE TABLE table_name_87 (player VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_22 WHERE total < 289 AND finish = \"t2\"", "question": "Which country has a total less than 289 and finished t2?", "context": "CREATE TABLE table_name_22 (country VARCHAR, total VARCHAR, finish VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE finish = \"t35\"", "question": "Which player finished t35?", "context": "CREATE TABLE table_name_89 (player VARCHAR, finish VARCHAR)"}, {"answer": "SELECT finish FROM table_name_54 WHERE total > 289 AND year_s__won = \"1979\"", "question": "What finish has a total of more than 289 and won in 1979?", "context": "CREATE TABLE table_name_54 (finish VARCHAR, total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT name FROM table_name_30 WHERE moving_to = \"nec nijmegen\"", "question": "What is Name, when Moving To is \"NEC Nijmegen\"?", "context": "CREATE TABLE table_name_30 (name VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT date_from FROM table_name_46 WHERE moving_to = \"birmingham city\"", "question": "What is Date From, when Moving To is \"Birmingham City\"?", "context": "CREATE TABLE table_name_46 (date_from VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT pos FROM table_name_18 WHERE date_to = \"30 june 2009\" AND name = \"eddie johnson\"", "question": "What is Pos., when Date To is \"30 June 2009\", and when Name is \"Eddie Johnson\"?", "context": "CREATE TABLE table_name_18 (pos VARCHAR, date_to VARCHAR, name VARCHAR)"}, {"answer": "SELECT pos FROM table_name_8 WHERE date_from = \"28 august 2008\"", "question": "What is Pos., when Date From is \"28 August 2008\"?", "context": "CREATE TABLE table_name_8 (pos VARCHAR, date_from VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_18 WHERE name = \"leon andreasen\"", "question": "What is Moving To, when Name is \"Leon Andreasen\"?", "context": "CREATE TABLE table_name_18 (moving_to VARCHAR, name VARCHAR)"}, {"answer": "SELECT date_to FROM table_name_47 WHERE name = \"lee cook\"", "question": "What is Date To, when Name is \"Lee Cook\"?", "context": "CREATE TABLE table_name_47 (date_to VARCHAR, name VARCHAR)"}, {"answer": "SELECT listed FROM table_name_34 WHERE name = \"oakachoy covered bridge\"", "question": "When was the oakachoy covered bridge listed?", "context": "CREATE TABLE table_name_34 (listed VARCHAR, name VARCHAR)"}, {"answer": "SELECT county FROM table_name_4 WHERE name = \"swann covered bridge\"", "question": "In which county is the swann covered bridge located?", "context": "CREATE TABLE table_name_4 (county VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_17 WHERE county = \"blount\" AND location = \"nectar\"", "question": "Which bridge is located in Nectar, in Blount County?", "context": "CREATE TABLE table_name_17 (name VARCHAR, county VARCHAR, location VARCHAR)"}, {"answer": "SELECT county FROM table_name_59 WHERE built = \"1934\"", "question": "Which county built a bridge in 1934?", "context": "CREATE TABLE table_name_59 (county VARCHAR, built VARCHAR)"}, {"answer": "SELECT built FROM table_name_78 WHERE county = \"blount\" AND listed = \"1981-08-20\" AND location = \"cleveland\"", "question": "In which year did Blount County build a bridge in Cleveland that was listed on 1981-08-20?", "context": "CREATE TABLE table_name_78 (built VARCHAR, location VARCHAR, county VARCHAR, listed VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE time = \"18:00\" AND set_3 = \"13\u201325\"", "question": "What is the score with a time at 18:00 and a score for set 3 of 13\u201325?", "context": "CREATE TABLE table_name_12 (score VARCHAR, time VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_70 WHERE set_1 = \"19\u201325\"", "question": "What is the score for set 2 when the score of set 1 is 19\u201325?", "context": "CREATE TABLE table_name_70 (set_2 VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT total FROM table_name_41 WHERE time = \"16:00\" AND set_3 = \"18\u201325\"", "question": "How much is the total with a time at 16:00 and score for set 3 of 18\u201325?", "context": "CREATE TABLE table_name_41 (total VARCHAR, time VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_48 WHERE time = \"18:00\" AND set_1 = \"18\u201325\"", "question": "What is the score for set 2 when the time is 18:00 and the score of set 1 is 18\u201325?", "context": "CREATE TABLE table_name_48 (set_2 VARCHAR, time VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT total FROM table_name_55 WHERE set_3 = \"13\u201325\"", "question": "What was the total with a score in set 3 of 13\u201325?", "context": "CREATE TABLE table_name_55 (total VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT champion__seed_ FROM table_name_1 WHERE score = \"79\u201375 ot\"", "question": "What was the Champion of the Tournament with a Score of 79\u201375 OT?", "context": "CREATE TABLE table_name_1 (champion__seed_ VARCHAR, score VARCHAR)"}, {"answer": "SELECT champion__seed_ FROM table_name_78 WHERE score = \"65\u201356\"", "question": "What was the Champion of the Game with a Score of 65\u201356?", "context": "CREATE TABLE table_name_78 (champion__seed_ VARCHAR, score VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_89 WHERE laps = 21 AND grid > 16 AND rider = \"akira ry\u014d\"", "question": "Which Manufacturer has a Laps of 21, a Grid larger than 16, and a Rider of akira ry\u014d?", "context": "CREATE TABLE table_name_89 (manufacturer VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_43 WHERE rider = \"daijiro kato\"", "question": "Which Time/Retired has a Rider of daijiro kato?", "context": "CREATE TABLE table_name_43 (time_retired VARCHAR, rider VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_49 WHERE rider = \"daijiro kato\"", "question": "Which Manufacturer has a Rider of daijiro kato?", "context": "CREATE TABLE table_name_49 (manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_88 WHERE manufacturer = \"yamaha\" AND rider = \"garry mccoy\"", "question": "Which Time/Retired has a Manufacturer of yamaha, and a Rider of garry mccoy?", "context": "CREATE TABLE table_name_88 (time_retired VARCHAR, manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_25 WHERE round < 2 AND nationality = \"united states\"", "question": "What is the name of the team with round less than 2, and the nationality is the United States?", "context": "CREATE TABLE table_name_25 (college_junior_club_team__league_ VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT position FROM table_name_15 WHERE player = \"john carlson\"", "question": "What position does John Carlson play?", "context": "CREATE TABLE table_name_15 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_33 WHERE game = 5", "question": "Who had the highest rebounds on game 5?", "context": "CREATE TABLE table_name_33 (high_rebounds VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_39 WHERE round > 7 AND pick < 7", "question": "How many Overall went in a round larger than 7 with a pick less than 7?", "context": "CREATE TABLE table_name_39 (overall VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_33 WHERE events > 23 AND prize_money__$__ > 823 OFFSET 783", "question": "What is the rank for the player with events greater than 23 and prize money in excess of $823,783?", "context": "CREATE TABLE table_name_33 (rank VARCHAR, events VARCHAR, prize_money__$__ VARCHAR)"}, {"answer": "SELECT MAX(prize_money__) AS $__ FROM table_name_16 WHERE rank = 1", "question": "What is the prize money for the player ranked 1?", "context": "CREATE TABLE table_name_16 (prize_money__ INTEGER, rank VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_82 WHERE event = \"kotc 25: flaming fury\"", "question": "What was the lowest round for the KOTC 25: Flaming Fury event?", "context": "CREATE TABLE table_name_82 (round INTEGER, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_82 WHERE event = \"kotc 25: flaming fury\"", "question": "Who was the opponent for the KOTC 25: Flaming Fury event?", "context": "CREATE TABLE table_name_82 (opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_12 WHERE round > 1 AND event = \"wmma 1: mccorkle vs. heden\"", "question": "Who was the opponent in the WMMA 1: McCorkle vs. Heden event that went more than 1 round?", "context": "CREATE TABLE table_name_12 (opponent VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT res FROM table_name_83 WHERE record = \"25-15\"", "question": "What was the result when his record was 25-15?", "context": "CREATE TABLE table_name_83 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT position FROM table_name_22 WHERE round < 6 AND nationality = \"denmark\"", "question": "What is Position, when Round is less than 6, and when Nationality is \"Denmark\"?", "context": "CREATE TABLE table_name_22 (position VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT position FROM table_name_31 WHERE nationality = \"canada\" AND round > 3", "question": "What is Position, when Nationality is \"Canada\", and when Round is greater than 3?", "context": "CREATE TABLE table_name_31 (position VARCHAR, nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_83 WHERE college_junior_club_team__league_ = \"kelowna rockets ( whl )\"", "question": "What is the total number of Round, when College/Junior/Club Team (League) is \"Kelowna Rockets ( WHL )\"?", "context": "CREATE TABLE table_name_83 (round VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT round FROM table_name_21 WHERE record = \"15-5\"", "question": "What round did the fight last when Mikhail Ilyukhin's record was 15-5?", "context": "CREATE TABLE table_name_21 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_10 WHERE round = \"1\" AND res = \"win\" AND record = \"13-5\"", "question": "What method did Mikhail Ilyukhin win the fight in round 1 when his record was 13-5?", "context": "CREATE TABLE table_name_10 (method VARCHAR, record VARCHAR, round VARCHAR, res VARCHAR)"}, {"answer": "SELECT method FROM table_name_92 WHERE record = \"4-0\"", "question": "What was the method of resolution when Mikhail Ilyukhin's record was 4-0?", "context": "CREATE TABLE table_name_92 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE score = \"123-112\"", "question": "When was the score 123-112?", "context": "CREATE TABLE table_name_97 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_63 WHERE score = \"95-118\"", "question": "Who did they play when the score was 95-118?", "context": "CREATE TABLE table_name_63 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_11 WHERE score = \"95-114\"", "question": "Who did they play when the score was 95-114?", "context": "CREATE TABLE table_name_11 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE score = \"92-134\"", "question": "When was the score 92-134?", "context": "CREATE TABLE table_name_38 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE record = \"2-32\"", "question": "When they were 2-32 what did they score?", "context": "CREATE TABLE table_name_71 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_24 WHERE total < 290", "question": "When the total was smaller than 290, what was the highest To par?", "context": "CREATE TABLE table_name_24 (to_par INTEGER, total INTEGER)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_4 WHERE player = \"lee trevino\"", "question": "What is the total number of To par for Lee Trevino?", "context": "CREATE TABLE table_name_4 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(to_par) FROM table_name_59 WHERE finish = \"t11\"", "question": "What is the sum of To par when the Finish is t11?", "context": "CREATE TABLE table_name_59 (to_par INTEGER, finish VARCHAR)"}, {"answer": "SELECT AVG(runs) FROM table_name_21 WHERE player = \"donald bradman\"", "question": "What was Donald Bradman's average runs?", "context": "CREATE TABLE table_name_21 (runs INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(runs) FROM table_name_45 WHERE matches > 5", "question": "What was the highest amount of runs for more than 5 matches?", "context": "CREATE TABLE table_name_45 (runs INTEGER, matches INTEGER)"}, {"answer": "SELECT MIN(shot_pct) FROM table_name_2 WHERE blank_ends > 6", "question": "What is the lowest Shot Pct., when Blank Ends is greater than 6?", "context": "CREATE TABLE table_name_2 (shot_pct INTEGER, blank_ends INTEGER)"}, {"answer": "SELECT shot_pct FROM table_name_67 WHERE stolen_ends = 2", "question": "What is Shot Pct., when Stolen Ends is 2?", "context": "CREATE TABLE table_name_67 (shot_pct VARCHAR, stolen_ends VARCHAR)"}, {"answer": "SELECT COUNT(ends_won) FROM table_name_92 WHERE province = \"saskatchewan\" AND stolen_ends < 6", "question": "What is the total number of Ends Won, when Province is \"Saskatchewan\", and when Stolen Ends is less than 6?", "context": "CREATE TABLE table_name_92 (ends_won VARCHAR, province VARCHAR, stolen_ends VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE away_team = \"perth wildcats\"", "question": "On what date were Perth Wildcats the away team?", "context": "CREATE TABLE table_name_28 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE score = \"121-113\"", "question": "On what date was the score 121-113?", "context": "CREATE TABLE table_name_84 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE home_team = \"adelaide 36ers\"", "question": "On what date was Adelaide 36ers the home team?", "context": "CREATE TABLE table_name_64 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT report FROM table_name_6 WHERE venue = \"townsville entertainment centre\"", "question": "Which report is for Townsville Entertainment Centre?", "context": "CREATE TABLE table_name_6 (report VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_7 WHERE score = \"85-101\"", "question": "Which home team had a score of 85-101?", "context": "CREATE TABLE table_name_7 (home_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT Box AS score FROM table_name_21 WHERE home_team = \"melbourne tigers\"", "question": "What was the box core for the Melbourne Tigers?", "context": "CREATE TABLE table_name_21 (Box VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT author FROM table_name_42 WHERE featuring = \"leela, the master, kraals\"", "question": "who is the author when featuring is leela, the master, kraals?", "context": "CREATE TABLE table_name_42 (author VARCHAR, featuring VARCHAR)"}, {"answer": "SELECT author FROM table_name_73 WHERE title = \"destination: nerva\"", "question": "who is the author when the title is destination: nerva?", "context": "CREATE TABLE table_name_73 (author VARCHAR, title VARCHAR)"}, {"answer": "SELECT featuring FROM table_name_18 WHERE title = \"energy of the daleks\"", "question": "who is featuring when the title is energy of the daleks?", "context": "CREATE TABLE table_name_18 (featuring VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_71 WHERE featuring = \"leela\" AND series_sorted = \"4s/b\"", "question": "what is the title when the featuring is leela and series sorted is 4s/b?", "context": "CREATE TABLE table_name_71 (title VARCHAR, featuring VARCHAR, series_sorted VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE december = 2", "question": "Can you tell me the Opponent that has the December of 2?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, december VARCHAR)"}, {"answer": "SELECT AVG(december) FROM table_name_18 WHERE opponent = \"@ toronto maple leafs\"", "question": "Can you tell me the average December rhat has the Opponent of @ toronto maple leafs?", "context": "CREATE TABLE table_name_18 (december INTEGER, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE december = 10", "question": "Can you tell me the Score that has the December of 10?", "context": "CREATE TABLE table_name_55 (score VARCHAR, december VARCHAR)"}, {"answer": "SELECT score FROM table_name_89 WHERE tie_no = 6", "question": "What was the score when the Tie no was 6?", "context": "CREATE TABLE table_name_89 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE tie_no < 2", "question": "What was the score when the Tie no less than 2?", "context": "CREATE TABLE table_name_11 (score VARCHAR, tie_no INTEGER)"}, {"answer": "SELECT away_team FROM table_name_48 WHERE home_team = \"sunderland\"", "question": "Who was the away team when the home team was Sunderland?", "context": "CREATE TABLE table_name_48 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_75 WHERE fastest_lap = \"brendon hartley\" AND pole_position = \"oliver turvey\" AND circuit = \"spa-francorchamps\" AND winning_driver = \"brendon hartley\"", "question": "Which Winning Team has the Fastest Lap of brendon hartley, and a Pole Position of oliver turvey, and a Circuit of spa-francorchamps, and the Winning Driver of brendon hartley?", "context": "CREATE TABLE table_name_75 (winning_team VARCHAR, winning_driver VARCHAR, circuit VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_93 WHERE winning_team = \"carlin motorsport\" AND winning_driver = \"oliver turvey\" AND date = \"24 march\"", "question": "Which Circuit has the Winning Team of carlin motorsport, and the Winning Driver of oliver turvey, and a Date of 24 march?", "context": "CREATE TABLE table_name_93 (circuit VARCHAR, date VARCHAR, winning_team VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_56 WHERE winning_driver = \"brendon hartley\" AND date = \"27 april\"", "question": "Which Round has the Winning Driver of brendon hartley, and a Date of 27 april?", "context": "CREATE TABLE table_name_56 (round INTEGER, winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE pole_position = \"michael devaney\"", "question": "Which Date has a Pole Position of michael devaney?", "context": "CREATE TABLE table_name_94 (date VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT report FROM table_name_61 WHERE winning_driver = \"emerson fittipaldi\"", "question": "Which Report has a Winning driver of emerson fittipaldi?", "context": "CREATE TABLE table_name_61 (report VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_97 WHERE pole_position = \"andr\u00e9 ribeiro\"", "question": "Which Circuit has a Pole position of andr\u00e9 ribeiro?", "context": "CREATE TABLE table_name_97 (circuit VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_15 WHERE winning_driver = \"scott pruett\"", "question": "Which Circuit has a Winning driver of scott pruett?", "context": "CREATE TABLE table_name_15 (circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_46 WHERE pole_position = \"bryan herta\"", "question": "Who's the Winning driver with a Pole position of bryan herta?", "context": "CREATE TABLE table_name_46 (winning_driver VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE city_location = \"vancouver, british columbia\"", "question": "Which Date had a City/Location of vancouver, british columbia?", "context": "CREATE TABLE table_name_65 (date VARCHAR, city_location VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_81 WHERE pole_position = \"robby gordon\" AND date = \"june 11\"", "question": "Who's the Winning team with a Pole position of robby gordon, and a Date of june 11?", "context": "CREATE TABLE table_name_81 (winning_team VARCHAR, pole_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(subject) FROM table_name_56 WHERE plural = \"am(\u00f4)ra (we)\"", "question": "What subject has a plural of am(\u00f4)ra (we)?", "context": "CREATE TABLE table_name_56 (subject INTEGER, plural VARCHAR)"}, {"answer": "SELECT round FROM table_name_83 WHERE college = \"mississippi valley state\"", "question": "What round was the player drafted from mississippi valley state?", "context": "CREATE TABLE table_name_83 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_13 WHERE position = \"center\"", "question": "What college was the draft pick from who plays center position?", "context": "CREATE TABLE table_name_13 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT record FROM table_name_39 WHERE opponent = \"toronto huskies\"", "question": "What is the record of the game with the toronto huskies as the opponent?", "context": "CREATE TABLE table_name_39 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE date = \"november 14\"", "question": "Who is the opponent on November 14?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_46 WHERE game > 7 AND location = \"boston garden\" AND opponent = \"providence steam rollers\"", "question": "What is the record of the game with a game number greater than 7 at boston garden with the providence steam rollers as the opponent?", "context": "CREATE TABLE table_name_46 (record VARCHAR, opponent VARCHAR, game VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_69 WHERE player = \"jim pilot\" AND round > 5", "question": "What pick in round 5 did the 49ers pick Jim Pilot?", "context": "CREATE TABLE table_name_69 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT pick FROM table_name_64 WHERE round < 4 AND school_club_team = \"ucla\"", "question": "What pick in a round earlier than 4 did UCLA choose their pick?", "context": "CREATE TABLE table_name_64 (pick VARCHAR, round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_45 WHERE pick = 36", "question": "What position did pick 36 play?", "context": "CREATE TABLE table_name_45 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT owner FROM table_name_40 WHERE winner = \"miss terrible\"", "question": "Who is the owner of Miss Terrible?", "context": "CREATE TABLE table_name_40 (owner VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_82 WHERE time = \"1:36.69\"", "question": "What is the most recent year that had a time of 1:36.69?", "context": "CREATE TABLE table_name_82 (year INTEGER, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_63 WHERE trainer = \"todd pletcher\"", "question": "What time does the trainer, Todd Pletcher have?", "context": "CREATE TABLE table_name_63 (time VARCHAR, trainer VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_68 WHERE winner = \"iftiraas\"", "question": "What is the most recent year that Iftiraas was the winner?", "context": "CREATE TABLE table_name_68 (year INTEGER, winner VARCHAR)"}, {"answer": "SELECT sport FROM table_name_25 WHERE venue = \"bosse field\"", "question": "What sport was played at the bosse field?", "context": "CREATE TABLE table_name_25 (sport VARCHAR, venue VARCHAR)"}, {"answer": "SELECT sport FROM table_name_26 WHERE played = \"2008-2010\"", "question": "What sport was played between the years of 2008-2010?", "context": "CREATE TABLE table_name_26 (sport VARCHAR, played VARCHAR)"}, {"answer": "SELECT venue FROM table_name_17 WHERE team = \"evansville bluecats\"", "question": "What venue did the team, evansville bluecats play on?", "context": "CREATE TABLE table_name_17 (venue VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_75 WHERE played = \"2008-2010\"", "question": "What team played between the years of 2008-2010?", "context": "CREATE TABLE table_name_75 (team VARCHAR, played VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE player = \"craig stadler\"", "question": "Name the Score of craig stadler?", "context": "CREATE TABLE table_name_33 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_45 WHERE place = \"t5\" AND player = \"tom watson\"", "question": "Name the Score that has a Place of t5 of tom watson?", "context": "CREATE TABLE table_name_45 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_83 WHERE score = 72 - 68 = 140", "question": "Name the Place with a Score of 72-68=140?", "context": "CREATE TABLE table_name_83 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE country = \"united states\" AND player = \"jack nicklaus\"", "question": "Name the Score of jack nicklaus, united states, ?", "context": "CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_35 WHERE player = \"seve ballesteros\"", "question": "Name the Place of seve ballesteros?", "context": "CREATE TABLE table_name_35 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT no_9 FROM table_name_37 WHERE no_4 = \"ava\" AND no_6 = \"addison\"", "question": "Who was No. 9 when Ava was No. 4 and Addison was No. 6?", "context": "CREATE TABLE table_name_37 (no_9 VARCHAR, no_4 VARCHAR, no_6 VARCHAR)"}, {"answer": "SELECT no_6 FROM table_name_78 WHERE no_2 = \"emma\" AND no_3 = \"sophia\"", "question": "What was the No. 6 name when Emma was No. 2 and Sophia was No. 3?", "context": "CREATE TABLE table_name_78 (no_6 VARCHAR, no_2 VARCHAR, no_3 VARCHAR)"}, {"answer": "SELECT no_8 FROM table_name_64 WHERE no_9 = \"chloe\" AND no_7 = \"abigail\"", "question": "What was the No. 8 name when Chloe was No. 9 and Abigail was No. 7?", "context": "CREATE TABLE table_name_64 (no_8 VARCHAR, no_9 VARCHAR, no_7 VARCHAR)"}, {"answer": "SELECT no_4 FROM table_name_83 WHERE no_5 = \"madison\" AND no_9 = \"abigail\"", "question": "What was the No. 4 name when Madison was No. 5 and Abigail was No. 9?", "context": "CREATE TABLE table_name_83 (no_4 VARCHAR, no_5 VARCHAR, no_9 VARCHAR)"}, {"answer": "SELECT player FROM table_name_66 WHERE to_par = \"+2\"", "question": "Which player had a to par score of +2?", "context": "CREATE TABLE table_name_66 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT SUM(code) FROM table_name_24 WHERE density__inh_km\u00b2_ = 621.68 AND land_area__hectares_ > 75.28", "question": "How many codes have a density of 621.68, and a Land area (hectares) larger than 75.28?", "context": "CREATE TABLE table_name_24 (code INTEGER, density__inh_km\u00b2_ VARCHAR, land_area__hectares_ VARCHAR)"}, {"answer": "SELECT AVG(density__inh_km\u00b2_) FROM table_name_33 WHERE land_area__hectares_ = 123.02 AND code > 2356", "question": "What is the average density with a land area of 123.02, and a Code larger than 2356?", "context": "CREATE TABLE table_name_33 (density__inh_km\u00b2_ INTEGER, land_area__hectares_ VARCHAR, code VARCHAR)"}, {"answer": "SELECT AVG(land_area__hectares_) FROM table_name_29 WHERE density__inh_km\u00b2_ = 815.48 AND population > 411", "question": "What is the average land area with a density of 815.48, and a Population larger than 411?", "context": "CREATE TABLE table_name_29 (land_area__hectares_ INTEGER, density__inh_km\u00b2_ VARCHAR, population VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE partnering = \"francesca lubiani\" AND opponent_in_final = \"yuliya beygelzimer / jennifer hopkins\"", "question": "What is the Date, when Partnering is \"Francesca Lubiani\", and when Opponent in Final is \"Yuliya Beygelzimer / Jennifer Hopkins\"?", "context": "CREATE TABLE table_name_10 (date VARCHAR, partnering VARCHAR, opponent_in_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE outcome = \"winner\" AND partnering = \"nicole sewell\" AND opponent_in_final = \"victoria davies / kate warne-holland\"", "question": "What is Score, when Outcome is \"winner\", when Partnering is \"Nicole Sewell\", and when Opponent in Final is \"Victoria Davies / Kate Warne-Holland\"?", "context": "CREATE TABLE table_name_50 (score VARCHAR, opponent_in_final VARCHAR, outcome VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_32 WHERE away_team = \"manchester united\"", "question": "What is Tie No., when Away Team is \"Manchester United\"?", "context": "CREATE TABLE table_name_32 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_90 WHERE home_team = \"ipswich town\" AND date = \"6 february 1986\"", "question": "What is Away Team, when Home Team is \"Ipswich Town\", and when Date is \"6 February 1986\"?", "context": "CREATE TABLE table_name_90 (away_team VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE home_team = \"luton town\"", "question": "What is Date, when Home Team is \"Luton Town\"?", "context": "CREATE TABLE table_name_53 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_64 WHERE date = \"25 january 1986\" AND tie_no = \"6\"", "question": "What is Away Team, when Date is \"25 January 1986\", and when Tie No is \"6\"?", "context": "CREATE TABLE table_name_64 (away_team VARCHAR, date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_82 WHERE round > 6", "question": "WHAT IS THE LEAGUE WITH A ROUND LARGER THAN 6?", "context": "CREATE TABLE table_name_82 (college_junior_club_team__league_ VARCHAR, round INTEGER)"}, {"answer": "SELECT COUNT(round) FROM table_name_6 WHERE player = \"zach boychuk\"", "question": "WHAT IS THE ROUND FOR ZACH BOYCHUK?", "context": "CREATE TABLE table_name_6 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_4 WHERE nationality = \"canada\" AND round < 7 AND player = \"zach boychuk\"", "question": "WHAT IS THE POSITION FOR CANADA, ROUND SMALLER THAN 7, PLAYER ZACH BOYCHUK?", "context": "CREATE TABLE table_name_4 (position VARCHAR, player VARCHAR, nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE week = 8", "question": "What was the date of week 8?", "context": "CREATE TABLE table_name_27 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_3 WHERE date = \"september 8, 1985\"", "question": "What was the result of the September 8, 1985 game?", "context": "CREATE TABLE table_name_3 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE bills_first_downs < 28 AND opponent = \"oakland raiders\"", "question": "Which date did the oakland raiders play as the opponent when the Bills first downs were under 28?", "context": "CREATE TABLE table_name_76 (date VARCHAR, bills_first_downs VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT paraguay_scorers FROM table_name_1 WHERE date = \"june 15, 2008\"", "question": "Who were the Paraguay scorers on June 15, 2008?", "context": "CREATE TABLE table_name_1 (paraguay_scorers VARCHAR, date VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_56 WHERE finish = \"t14\"", "question": "What is the To par of the player with a t14 Finish?", "context": "CREATE TABLE table_name_56 (to_par VARCHAR, finish VARCHAR)"}, {"answer": "SELECT country FROM table_name_35 WHERE player = \"raymond floyd\"", "question": "What country is player Raymond Floyd from?", "context": "CREATE TABLE table_name_35 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_21 WHERE country = \"united states\" AND to_par = \"+4\"", "question": "What is the Year(s) won from the United States as country with a To Par of +4?", "context": "CREATE TABLE table_name_21 (year_s__won VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_10 WHERE country = \"united states\" AND place = \"t2\"", "question": "Who is the player from the United States and a place of t2?", "context": "CREATE TABLE table_name_10 (player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT SUM(category_1) FROM table_name_89 WHERE category_3 = \"300\"", "question": "What's the sum of all values in category 1 when category 3 is equal to 300?", "context": "CREATE TABLE table_name_89 (category_1 INTEGER, category_3 VARCHAR)"}, {"answer": "SELECT category_3 FROM table_name_77 WHERE category_1 = 0.05", "question": "If category 1 is 0.05, what is category 3?", "context": "CREATE TABLE table_name_77 (category_3 VARCHAR, category_1 VARCHAR)"}, {"answer": "SELECT player FROM table_name_53 WHERE average = 38.22", "question": "Which player has an average of 38.22?", "context": "CREATE TABLE table_name_53 (player VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_name_35 WHERE wickets > 13 AND team = \"australia\" AND best_bowling = \"5/36\" AND average < 23.33", "question": "What is the highest number of matches for Australia when the wickets are more than 13, the average is less than 23.33, and the best bowling is 5/36?", "context": "CREATE TABLE table_name_35 (matches INTEGER, average VARCHAR, best_bowling VARCHAR, wickets VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_57 WHERE team = \"england\" AND wickets < 18 AND best_bowling = \"4/138\" AND matches < 3", "question": "What is the total average for the England team when the wickets are less than 18, the best bowling is 4/138, and there are less than 3 matches?", "context": "CREATE TABLE table_name_57 (average VARCHAR, matches VARCHAR, best_bowling VARCHAR, team VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_48 WHERE money___$__ > 5 OFFSET 500", "question": "Which To par has a Money ($) larger than 5,500?", "context": "CREATE TABLE table_name_48 (to_par VARCHAR, money___$__ INTEGER)"}, {"answer": "SELECT score FROM table_name_78 WHERE place = \"4\"", "question": "Which Score has a Place of 4?", "context": "CREATE TABLE table_name_78 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT ethnic_group FROM table_name_98 WHERE other = \"5%\"", "question": "Which ethnic group has 5% of people categorizing religion as other?", "context": "CREATE TABLE table_name_98 (ethnic_group VARCHAR, other VARCHAR)"}, {"answer": "SELECT ethnic_group FROM table_name_58 WHERE muslims = \"93%\"", "question": "Which ehtinc group consists of 93% muslims?", "context": "CREATE TABLE table_name_58 (ethnic_group VARCHAR, muslims VARCHAR)"}, {"answer": "SELECT venue FROM table_name_87 WHERE score = \"1 \u2013 1\" AND result = \"2 \u2013 2\"", "question": "What is the Venue when the score was 1 \u2013 1, and the result was 2 \u2013 2?", "context": "CREATE TABLE table_name_87 (venue VARCHAR, score VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE competition = \"2006 fifa world cup qualification\"", "question": "What is the score of the 2006 Fifa World Cup Qualification?", "context": "CREATE TABLE table_name_85 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_66 WHERE score = \"3 \u2013 0\"", "question": "What venue was the game held at when the Score was 3 \u2013 0?", "context": "CREATE TABLE table_name_66 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_65 WHERE competition = \"friendly match\" AND score = \"1 \u2013 1\"", "question": "What is the result of the game when the competition was a friendly match, and the Score was 1 \u2013 1?", "context": "CREATE TABLE table_name_65 (result VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT race_1 FROM table_name_85 WHERE race_4 = \"1\"", "question": "What is Race 1, when Race 4 is 1?", "context": "CREATE TABLE table_name_85 (race_1 VARCHAR, race_4 VARCHAR)"}, {"answer": "SELECT race_2 FROM table_name_6 WHERE race_1 = \"30\"", "question": "What is Race 2, when Race 1 is 30?", "context": "CREATE TABLE table_name_6 (race_2 VARCHAR, race_1 VARCHAR)"}, {"answer": "SELECT race_2 FROM table_name_2 WHERE driver = \"john faulkner\"", "question": "What is Race 2, when Driver is John Faulkner?", "context": "CREATE TABLE table_name_2 (race_2 VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_48 WHERE race_2 = \"14\"", "question": "What is Driver, when Race 2 is 14?", "context": "CREATE TABLE table_name_48 (driver VARCHAR, race_2 VARCHAR)"}, {"answer": "SELECT race_4 FROM table_name_51 WHERE race_1 = \"28\"", "question": "What is Race 4, when Race 1 is 28?", "context": "CREATE TABLE table_name_51 (race_4 VARCHAR, race_1 VARCHAR)"}, {"answer": "SELECT race_2 FROM table_name_40 WHERE race_4 = \"28\"", "question": "What is Race 2, when Race 4 is 28?", "context": "CREATE TABLE table_name_40 (race_2 VARCHAR, race_4 VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE competition_round = \"copa libertadores group 3\" AND date = \"2 february 1994\"", "question": "What is the score of the copa libertadores group 3 competition round on 2 February 1994?", "context": "CREATE TABLE table_name_11 (score VARCHAR, competition_round VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE competition_round = \"copa libertadores group 4\" AND away_team = \"universitario\" AND date = \"14 march 1972\"", "question": "What is the score of the copa libertadores group 4 competition round on 14 March 1972 with universitario as the away team?", "context": "CREATE TABLE table_name_78 (score VARCHAR, date VARCHAR, competition_round VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_7 WHERE home_team = \"alianza lima\" AND season = 1983", "question": "What is the venue of season 1983, which had alianza lima as the home team?", "context": "CREATE TABLE table_name_7 (venue VARCHAR, home_team VARCHAR, season VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE venue = \"estadio nacional\" AND date = \"3 march 1988\"", "question": "What is the score of the match on 3 March 1988 at the estadio nacional?", "context": "CREATE TABLE table_name_73 (score VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_63 WHERE date = \"december 13\"", "question": "What were the Points on December 13?", "context": "CREATE TABLE table_name_63 (points INTEGER, date VARCHAR)"}, {"answer": "SELECT established FROM table_name_74 WHERE institution = \"north jersey phoenix\"", "question": "What is the year established of North Jersey Phoenix?", "context": "CREATE TABLE table_name_74 (established VARCHAR, institution VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_8 WHERE established = 2009", "question": "What is the nickname of the school established in 2009?", "context": "CREATE TABLE table_name_8 (nickname VARCHAR, established VARCHAR)"}, {"answer": "SELECT location FROM table_name_27 WHERE established = 2013", "question": "What is the location of the school established in 2013?", "context": "CREATE TABLE table_name_27 (location VARCHAR, established VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_62 WHERE institution = \"columbia university\"", "question": "What is the nickname of Columbia University?", "context": "CREATE TABLE table_name_62 (nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT method FROM table_name_11 WHERE opponent = \"valentijn overeem\"", "question": "The match against Valentijn Overeem had what method?", "context": "CREATE TABLE table_name_11 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_32 WHERE res = \"win\" AND method = \"tko\"", "question": "Where was the match held when the result was win, and tko as the method?", "context": "CREATE TABLE table_name_32 (location VARCHAR, res VARCHAR, method VARCHAR)"}, {"answer": "SELECT round FROM table_name_92 WHERE event = \"bars - moscow vs st. petersburg\"", "question": "What round did the match go to when the event was Bars - Moscow vs St. Petersburg?", "context": "CREATE TABLE table_name_92 (round VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_73 WHERE method = \"tko (kick)\"", "question": "With a method of tko (kick) what is the record of the match?", "context": "CREATE TABLE table_name_73 (record VARCHAR, method VARCHAR)"}, {"answer": "SELECT round FROM table_name_24 WHERE method = \"tko (cut)\"", "question": "What round did the match go to when tko (cut) was the method?", "context": "CREATE TABLE table_name_24 (round VARCHAR, method VARCHAR)"}, {"answer": "SELECT place FROM table_name_81 WHERE score = 68 - 72 - 77 - 74 = 291", "question": "what is the place when the score is 68-72-77-74=291?", "context": "CREATE TABLE table_name_81 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_93 WHERE country = \"united states\" AND score = 72 - 71 - 73 - 73 = 289", "question": "how many times is the country united states and the score 72-71-73-73=289?", "context": "CREATE TABLE table_name_93 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_32 WHERE to_par > 11 AND score = 71 - 71 - 71 - 79 = 292", "question": "Who is the player when the to par is more than 11 and the score is 71-71-71-79=292?", "context": "CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_7 WHERE player = \"bill nary\"", "question": "what is the country when the player is bill nary?", "context": "CREATE TABLE table_name_7 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_4 WHERE country = \"united states\" AND player = \"george fazio\"", "question": "what is the score when the country is united states and the player is george fazio?", "context": "CREATE TABLE table_name_4 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT death FROM table_name_96 WHERE birth = \"2 august 1424\"", "question": "WHAT IS THE DEATH WHEN BIRTH DATE IS 2 AUGUST 1424?", "context": "CREATE TABLE table_name_96 (death VARCHAR, birth VARCHAR)"}, {"answer": "SELECT ceased_to_be_duke_of_girona FROM table_name_91 WHERE heir_of = \"peter iv\"", "question": "WHAT IS THE Ceased to be Duke of Girona THAT HAS PETER IV?", "context": "CREATE TABLE table_name_91 (ceased_to_be_duke_of_girona VARCHAR, heir_of VARCHAR)"}, {"answer": "SELECT birth FROM table_name_22 WHERE ceased_to_be_duke_of_girona = \"21 november 1582\"", "question": "WHAT IS THE BIRTH DATE THAT HAS Ceased to be Duke of Girona OF 21 NOVEMBER 1582?", "context": "CREATE TABLE table_name_22 (birth VARCHAR, ceased_to_be_duke_of_girona VARCHAR)"}, {"answer": "SELECT birth FROM table_name_2 WHERE death = \"october 1389\"", "question": "WHAT IS THE BIRTH DATE WITH A DEATH OF OCTOBER 1389?", "context": "CREATE TABLE table_name_2 (birth VARCHAR, death VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_54 WHERE rider = \"aleix espargaro\"", "question": "What is the total number of Laps, when Ride is Aleix Espargaro?", "context": "CREATE TABLE table_name_54 (laps VARCHAR, rider VARCHAR)"}, {"answer": "SELECT county FROM table_name_72 WHERE name = \"howard street tunnel\"", "question": "What is the County of Howard Street Tunnel?", "context": "CREATE TABLE table_name_72 (county VARCHAR, name VARCHAR)"}, {"answer": "SELECT location FROM table_name_58 WHERE built = \"1869\"", "question": "What is the Location of the Bridge Built in 1869?", "context": "CREATE TABLE table_name_58 (location VARCHAR, built VARCHAR)"}, {"answer": "SELECT listed FROM table_name_77 WHERE county = \"washington\" AND name = \"b & o bridge\"", "question": "What is the date Listed of the B & O Bridge in Washington?", "context": "CREATE TABLE table_name_77 (listed VARCHAR, county VARCHAR, name VARCHAR)"}, {"answer": "SELECT listed FROM table_name_46 WHERE built = \"ca.1876\"", "question": "What is the date Listed of the Bridge Built CA.1876?", "context": "CREATE TABLE table_name_46 (listed VARCHAR, built VARCHAR)"}, {"answer": "SELECT listed FROM table_name_79 WHERE built = \"1864\"", "question": "What is the date Listed of the Bridge Built in 1864?", "context": "CREATE TABLE table_name_79 (listed VARCHAR, built VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_9 WHERE televotes > 1761 AND song = \"ils sont l\u00e0\" AND place < 2", "question": "What is the total number of Draw(s), when Televotes is greater than 1761, when Song is \"Ils Sont L\u00e0\", and when Place is less than 2?", "context": "CREATE TABLE table_name_9 (draw VARCHAR, place VARCHAR, televotes VARCHAR, song VARCHAR)"}, {"answer": "SELECT MIN(place) FROM table_name_50 WHERE televotes = 15424", "question": "What is the lowest Place, when Televotes is 15424?", "context": "CREATE TABLE table_name_50 (place INTEGER, televotes VARCHAR)"}, {"answer": "SELECT AVG(place) FROM table_name_14 WHERE song = \"dis oui\"", "question": "What is the average Place, when Song is \"Dis Oui\"?", "context": "CREATE TABLE table_name_14 (place INTEGER, song VARCHAR)"}, {"answer": "SELECT to_club FROM table_name_52 WHERE transfer_fee = \"free\" AND pos = \"df\"", "question": "What club received a DF player for free?", "context": "CREATE TABLE table_name_52 (to_club VARCHAR, transfer_fee VARCHAR, pos VARCHAR)"}, {"answer": "SELECT player FROM table_name_99 WHERE to_club = \"reggina\"", "question": "Which player was transferred to Reggina?", "context": "CREATE TABLE table_name_99 (player VARCHAR, to_club VARCHAR)"}, {"answer": "SELECT exit_date FROM table_name_19 WHERE transfer_fee = \"free\" AND to_club = \"reggina\"", "question": "What is the exit date of the player transferred to Reggina for free?", "context": "CREATE TABLE table_name_19 (exit_date VARCHAR, transfer_fee VARCHAR, to_club VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_23 WHERE country = \"germany\" AND pilot = \"mario kiessling\"", "question": "What is the lowest position of pilot mario kiessling from Germany?", "context": "CREATE TABLE table_name_23 (position INTEGER, country VARCHAR, pilot VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_31 WHERE points < 11 AND pilot = \"petr krejcirik\"", "question": "What is the average position of pilot petr krejcirik, who has less than 11 points?", "context": "CREATE TABLE table_name_31 (position INTEGER, points VARCHAR, pilot VARCHAR)"}, {"answer": "SELECT career_sr FROM table_name_43 WHERE 1985 = \"1r\"", "question": "What is the career SR with a 1r in 1985?", "context": "CREATE TABLE table_name_43 (career_sr VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_81 WHERE 1983 = \"3r\"", "question": "What tournament has a 3r in 1983?", "context": "CREATE TABLE table_name_81 (tournament VARCHAR)"}, {"answer": "SELECT 1980 FROM table_name_48 WHERE 1984 = \"1r\" AND 1981 = \"1r\"", "question": "What is the 1980 value with a 1r in 1984 and a 1r in 1981?", "context": "CREATE TABLE table_name_48 (Id VARCHAR)"}, {"answer": "SELECT finish FROM table_name_52 WHERE country = \"australia\"", "question": "What is the finish of Australia?", "context": "CREATE TABLE table_name_52 (finish VARCHAR, country VARCHAR)"}, {"answer": "SELECT total FROM table_name_63 WHERE to_par = \"+4\"", "question": "What is the total with a +4 to par?", "context": "CREATE TABLE table_name_63 (total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_57 WHERE to_par = \"+3\"", "question": "What country has a +3 to par?", "context": "CREATE TABLE table_name_57 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_56 WHERE artist = \"every little thing\" AND rank < 10", "question": "What was the first year that the artist of every little thing ranked lower than 10?", "context": "CREATE TABLE table_name_56 (year INTEGER, artist VARCHAR, rank VARCHAR)"}, {"answer": "SELECT championship FROM table_name_8 WHERE runner_s__up = \"louise suggs\" AND margin = \"3 strokes\"", "question": "Which Championship was louise suggs the runner-up by 3 strokes?", "context": "CREATE TABLE table_name_8 (championship VARCHAR, runner_s__up VARCHAR, margin VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_49 WHERE runner_s__up = \"kathy whitworth\"", "question": "When was the most recent year that kathy whitworth was the runner-up?", "context": "CREATE TABLE table_name_49 (year INTEGER, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_75 WHERE championship = \"u.s. women's open\" AND margin = \"5 strokes\"", "question": "What was the winning score in the u.s. women's open that was won by 5 strokes?", "context": "CREATE TABLE table_name_75 (winning_score VARCHAR, championship VARCHAR, margin VARCHAR)"}, {"answer": "SELECT record FROM table_name_86 WHERE high_rebounds = \"marcus camby (15)\" AND high_assists = \"baron davis (7)\"", "question": "What is Record, when High Rebounds is \"Marcus Camby (15)\", and when High Assists is \"Baron Davis (7)\"?", "context": "CREATE TABLE table_name_86 (record VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT game FROM table_name_48 WHERE team = \"philadelphia\"", "question": "What is Game, when Team is \"Philadelphia\"", "context": "CREATE TABLE table_name_48 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_83 WHERE team = \"@ milwaukee\"", "question": "What is High Assists, when Team is \"@ Milwaukee\"?", "context": "CREATE TABLE table_name_83 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(tie_no) FROM table_name_89 WHERE away_team = \"chelsea\"", "question": "What was the tie number for the round against visiting opponent Chelsea?", "context": "CREATE TABLE table_name_89 (tie_no INTEGER, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_53 WHERE away_team = \"newcastle united\"", "question": "What was the tie number for the round against visiting opponent Newcastle United?", "context": "CREATE TABLE table_name_53 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE home_team = \"millwall\"", "question": "What date was Millwall the home team?", "context": "CREATE TABLE table_name_29 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE away_team = \"leeds united\"", "question": "What date was Leeds United the away team?", "context": "CREATE TABLE table_name_36 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE away_team = \"bolton wanderers\"", "question": "What was the score when Bolton Wanderers were the away team?", "context": "CREATE TABLE table_name_38 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(events) FROM table_name_47 WHERE tournament = \"u.s. open\" AND top_25 < 1", "question": "What is the total of events when the tournament was U.S. Open and the Top-25 was less than 1?", "context": "CREATE TABLE table_name_47 (events INTEGER, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_40 WHERE top_25 = 3 AND cuts_made < 5", "question": "How many total wins have 3 as the Top-35 and less than 5 cuts made?", "context": "CREATE TABLE table_name_40 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(top_10) FROM table_name_32 WHERE tournament = \"the open championship\" AND wins > 0", "question": "What is the minimum Top-10 when the Open Championship was the tournament and the wins greater than 0?", "context": "CREATE TABLE table_name_32 (top_10 INTEGER, tournament VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(top_10) FROM table_name_43 WHERE wins > 0", "question": "With wins greater than 0 what is the minimum Top-10?", "context": "CREATE TABLE table_name_43 (top_10 INTEGER, wins INTEGER)"}, {"answer": "SELECT SUM(top_25) FROM table_name_23 WHERE events < 0", "question": "What is the total Top-25 when the events were less than 0?", "context": "CREATE TABLE table_name_23 (top_25 INTEGER, events INTEGER)"}, {"answer": "SELECT player FROM table_name_24 WHERE country = \"united states\" AND score = 71 - 75 = 146", "question": "Who is the player from the United States with a score of 71-75=146?", "context": "CREATE TABLE table_name_24 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_56 WHERE score = 77 - 68 = 145", "question": "Who is the player with a 77-68=145 score?", "context": "CREATE TABLE table_name_56 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_21 WHERE score = 76 - 68 = 144", "question": "What is the country with a 76-68=144 score?", "context": "CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_68 WHERE place = \"t8\" AND score = 75 - 71 = 146", "question": "Who is the player in t8 place with a 75-71=146 score?", "context": "CREATE TABLE table_name_68 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_50 WHERE country = \"united states\" AND place = \"t1\" AND score = 76 - 68 = 144", "question": "What is the to par of the player from the United States with a place of t1 and a 76-68=144 score?", "context": "CREATE TABLE table_name_50 (to_par VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_32 WHERE to_par = \"+2\" AND player = \"lee trevino\"", "question": "What is the country of player lee trevino, who has a to par of +2?", "context": "CREATE TABLE table_name_32 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT pilot_s_ FROM table_name_43 WHERE location = \"lake dumbleyung\"", "question": "Who was the pilot at lake dumbleyung?", "context": "CREATE TABLE table_name_43 (pilot_s_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT speed FROM table_name_87 WHERE location = \"coniston water\" AND pilot_s_ = \"malcolm campbell\"", "question": "How fast was the speed during the record set at Coniston Water that was piloted by Malcolm Campbell?", "context": "CREATE TABLE table_name_87 (speed VARCHAR, location VARCHAR, pilot_s_ VARCHAR)"}, {"answer": "SELECT home FROM table_name_36 WHERE away = \"1\u20131\"", "question": "Which Home has an Away of 1\u20131?", "context": "CREATE TABLE table_name_36 (home VARCHAR, away VARCHAR)"}, {"answer": "SELECT away FROM table_name_99 WHERE season = \"2007\u201308\"", "question": "Which Away has a Season of 2007\u201308?", "context": "CREATE TABLE table_name_99 (away VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_94 WHERE away = \"1\u20132\"", "question": "Which Season has an Away of 1\u20132?", "context": "CREATE TABLE table_name_94 (season VARCHAR, away VARCHAR)"}, {"answer": "SELECT away FROM table_name_41 WHERE home = \"1\u20130\"", "question": "Which Away has a Home of 1\u20130?", "context": "CREATE TABLE table_name_41 (away VARCHAR, home VARCHAR)"}, {"answer": "SELECT season FROM table_name_77 WHERE league = \"bezirksliga\"", "question": "Which Season has a League of bezirksliga?", "context": "CREATE TABLE table_name_77 (season VARCHAR, league VARCHAR)"}, {"answer": "SELECT season FROM table_name_24 WHERE home = \"0\u20131\"", "question": "Which Season has a Home of 0\u20131?", "context": "CREATE TABLE table_name_24 (season VARCHAR, home VARCHAR)"}, {"answer": "SELECT venue FROM table_name_16 WHERE date = \"2003\"", "question": "What was the Venue in 2003?", "context": "CREATE TABLE table_name_16 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_27 WHERE score = \"3\u20133\"", "question": "What Competition had a Score of 3\u20133?", "context": "CREATE TABLE table_name_27 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_18 WHERE opponent = \"rolando delgado\"", "question": "Name the lowest Round with Opponent of rolando delgado?", "context": "CREATE TABLE table_name_18 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_73 WHERE location = \"liverpool , england\"", "question": "Name the total number of Round in liverpool , england?", "context": "CREATE TABLE table_name_73 (round VARCHAR, location VARCHAR)"}, {"answer": "SELECT event FROM table_name_62 WHERE location = \"chandigarh , india\"", "question": "Which Event is in chandigarh , india?", "context": "CREATE TABLE table_name_62 (event VARCHAR, location VARCHAR)"}, {"answer": "SELECT player FROM table_name_58 WHERE year > 2007 AND college_high_school_club = \"arizona\"", "question": "Who is the player with a year later than 2007 and the college/high school/club of Arizona?", "context": "CREATE TABLE table_name_58 (player VARCHAR, year VARCHAR, college_high_school_club VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_89 WHERE position = \"c\" AND player = \"gary bergen\"", "question": "What is the earliest year of c position player gary bergen?", "context": "CREATE TABLE table_name_89 (year INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_66 WHERE position = \"sf/sg\" AND year > 1965 AND player = \"sly williams\"", "question": "What round is sf/sg player sly williams from a year after 1965 from?", "context": "CREATE TABLE table_name_66 (round VARCHAR, player VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT round FROM table_name_37 WHERE position = \"pf\" AND year = 1996 AND college_high_school_club = \"mississippi state\"", "question": "What is the round of the pf position player from 1996 and the college/high school/club mississippi state?", "context": "CREATE TABLE table_name_37 (round VARCHAR, college_high_school_club VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE visitor = \"montreal canadiens\" AND points = 5", "question": "Which Score has a Visitor of montreal canadiens, and Points of 5?", "context": "CREATE TABLE table_name_93 (score VARCHAR, visitor VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE home = \"montreal canadiens\" AND points > 9 AND decision = \"price\"", "question": "Which Date has a Home of montreal canadiens, and Points larger than 9, and a Decision of price?", "context": "CREATE TABLE table_name_99 (date VARCHAR, decision VARCHAR, home VARCHAR, points VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE home_team = \"notts county\"", "question": "What is the score for the home team Notts County?", "context": "CREATE TABLE table_name_97 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT episode FROM table_name_62 WHERE viewers__millions_ > 11.26 AND weekly_rank = \"#8\" AND share = 12", "question": "Which Episode has a Viewers (millions) larger than 11.26, a Weekly Rank of #8, and a Share of 12?", "context": "CREATE TABLE table_name_62 (episode VARCHAR, share VARCHAR, viewers__millions_ VARCHAR, weekly_rank VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_3 WHERE 2009 = \"mini\"", "question": "What is the 2012 with a mini in 2009?", "context": "CREATE TABLE table_name_3 (Id VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_5 WHERE 2009 = \"virgin\"", "question": "What is the 2013 with virgin in 2009?", "context": "CREATE TABLE table_name_5 (Id VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_95 WHERE 2009 = \"xbox\"", "question": "What is the highest rank of the 2009 xbox?", "context": "CREATE TABLE table_name_95 (rank INTEGER)"}, {"answer": "SELECT 2010 FROM table_name_72 WHERE rank > 15 AND 2011 = \"maserati\"", "question": "What is the 2010 with a rank higher than 15 and a 2011 maserati?", "context": "CREATE TABLE table_name_72 (rank VARCHAR)"}, {"answer": "SELECT record FROM table_name_70 WHERE points = 23 AND visitor = \"chicago\"", "question": "What is the record with 23 points and a visitor of Chicago?", "context": "CREATE TABLE table_name_70 (record VARCHAR, points VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT tied FROM table_name_84 WHERE \"venue\" = \"venue\"", "question": "What venue had a tie?", "context": "CREATE TABLE table_name_84 (tied VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE place = \"t3\" AND country = \"spain\"", "question": "What was the score in Spain T3?", "context": "CREATE TABLE table_name_59 (score VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE place = \"t1\" AND player = \"lee trevino\"", "question": "What score did Lee Trevino get in T1?", "context": "CREATE TABLE table_name_53 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_45 WHERE score = 71 - 72 = 143 AND country = \"spain\"", "question": "Which player had the score 71-72=143 in Spain?", "context": "CREATE TABLE table_name_45 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE to_par = \"+1\" AND player = \"curtis strange\"", "question": "When curtis strange had a to par +1, what was his score?", "context": "CREATE TABLE table_name_42 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_45 WHERE country = \"zimbabwe\"", "question": "Who is the player for Zimbabwe?", "context": "CREATE TABLE table_name_45 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_28 WHERE player = \"greg norman\"", "question": "What country is Greg Norman from?", "context": "CREATE TABLE table_name_28 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_93 WHERE player = \"bob tway\"", "question": "What country is Bob Tway from?", "context": "CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(starts) FROM table_name_49 WHERE year = 2007 AND avg_start > 17.6", "question": "What was the highest number of starts in 2007 when the average start was over 17.6?", "context": "CREATE TABLE table_name_49 (starts INTEGER, year VARCHAR, avg_start VARCHAR)"}, {"answer": "SELECT wins FROM table_name_92 WHERE third = \"1\" AND points < 572 AND races < 16", "question": "What is the number of wins when the number of third was 1, points were less than 572 and had less than 16 races?", "context": "CREATE TABLE table_name_92 (wins VARCHAR, races VARCHAR, third VARCHAR, points VARCHAR)"}, {"answer": "SELECT res FROM table_name_49 WHERE competition = \"friendly match\"", "question": "What was the result for the friendly match competition?", "context": "CREATE TABLE table_name_49 (res VARCHAR, competition VARCHAR)"}, {"answer": "SELECT team__number1 FROM table_name_17 WHERE res = \"0-3\"", "question": "What was the team #1 for the match that had a result of 0-3?", "context": "CREATE TABLE table_name_17 (team__number1 VARCHAR, res VARCHAR)"}, {"answer": "SELECT 2010 AS _population_density FROM table_name_83 WHERE municipio = \"ponce\"", "question": "what is the 2010 population density for municipio ponce?", "context": "CREATE TABLE table_name_83 (municipio VARCHAR)"}, {"answer": "SELECT category FROM table_name_86 WHERE nominated_for = \"tween academy: class of 2012\"", "question": "What's the category for the tween academy: class of 2012 nomination?", "context": "CREATE TABLE table_name_86 (category VARCHAR, nominated_for VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_47 WHERE award_giving_body = \"famas awards\"", "question": "How many years was famas awards the award giving body?", "context": "CREATE TABLE table_name_47 (year VARCHAR, award_giving_body VARCHAR)"}, {"answer": "SELECT result FROM table_name_34 WHERE category = \"best actor in a supporting role\"", "question": "What's the result for the category of best actor in a supporting role?", "context": "CREATE TABLE table_name_34 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT record FROM table_name_99 WHERE date = \"december 17\"", "question": "Which Record has a Date of december 17?", "context": "CREATE TABLE table_name_99 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT streak FROM table_name_38 WHERE team = \"new york knicks\"", "question": "Which Streak has a Team of new york knicks?", "context": "CREATE TABLE table_name_38 (streak VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE record = \"21\u201310\"", "question": "Which Date has a Record of 21\u201310?", "context": "CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT team FROM table_name_74 WHERE record = \"17\u20138\"", "question": "Which Team has a Record of 17\u20138?", "context": "CREATE TABLE table_name_74 (team VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE score = \"102\u2013113\"", "question": "Which Date has a Score of 102\u2013113?", "context": "CREATE TABLE table_name_63 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT game FROM table_name_80 WHERE streak = \"loss 1\" AND score = \"110\u2013111\"", "question": "Which Game has a Streak of loss 1, and a Score of 110\u2013111?", "context": "CREATE TABLE table_name_80 (game VARCHAR, streak VARCHAR, score VARCHAR)"}, {"answer": "SELECT name FROM table_name_83 WHERE nat = \"sco\" AND transfer_window = \"summer\" AND moving_to = \"greenock morton\"", "question": "What is the name of the player who is Sco and moving to greenock morton in the summer?", "context": "CREATE TABLE table_name_83 (name VARCHAR, moving_to VARCHAR, nat VARCHAR, transfer_window VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_17 WHERE name = \"rory loy\"", "question": "Where is rory loy moving to?", "context": "CREATE TABLE table_name_17 (moving_to VARCHAR, name VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_23 WHERE name = \"rory loy\"", "question": "What is the transfer fee for rory loy?", "context": "CREATE TABLE table_name_23 (transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE visitor = \"toronto\"", "question": "What is the date of the game with toronto as the visitor?", "context": "CREATE TABLE table_name_89 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE points < 35 AND home = \"chicago\"", "question": "What is the date of the game with less than 35 points and chicago as the home team?", "context": "CREATE TABLE table_name_99 (date VARCHAR, points VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE home = \"pittsburgh\" AND visitor = \"boston\"", "question": "What is the date of the game with pittsburgh as the home team and boston as the visitor team?", "context": "CREATE TABLE table_name_32 (date VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_77 WHERE home = \"pittsburgh\" AND points = 35", "question": "What is the record of the game with 35 points and pittsburgh as the home team?", "context": "CREATE TABLE table_name_77 (record VARCHAR, home VARCHAR, points VARCHAR)"}, {"answer": "SELECT place FROM table_name_13 WHERE player = \"bobby wadkins\"", "question": "What place did bobby wadkins come in?", "context": "CREATE TABLE table_name_13 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_21 WHERE mark = \"7.66\"", "question": "What is the lowest Lane, when Mark is 7.66?", "context": "CREATE TABLE table_name_21 (lane INTEGER, mark VARCHAR)"}, {"answer": "SELECT mark FROM table_name_59 WHERE react < 0.148", "question": "What is Mark, when React is less than 0.148?", "context": "CREATE TABLE table_name_59 (mark VARCHAR, react INTEGER)"}, {"answer": "SELECT SUM(lane) FROM table_name_75 WHERE react > 0.217 AND name = \"yoel hern\u00e1ndez\"", "question": "What is the sum of Land, when React is greater than 0.217, and when Name is Yoel Hern\u00e1ndez?", "context": "CREATE TABLE table_name_75 (lane INTEGER, react VARCHAR, name VARCHAR)"}, {"answer": "SELECT mark FROM table_name_88 WHERE lane < 5 AND react = 0.217", "question": "What is Mark, when Lane is less than 5, and when React is 0.217?", "context": "CREATE TABLE table_name_88 (mark VARCHAR, lane VARCHAR, react VARCHAR)"}, {"answer": "SELECT record FROM table_name_37 WHERE game = 67", "question": "What was the record following game 67?", "context": "CREATE TABLE table_name_37 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(february) FROM table_name_57 WHERE opponent = \"@ colorado rockies\"", "question": "What day in February had an opponent of @ Colorado Rockies?", "context": "CREATE TABLE table_name_57 (february INTEGER, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE record = \"18-22-13\"", "question": "What was the score of the game with a record of 18-22-13?", "context": "CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_29 WHERE score = \"6\u20133, 3\u20136, 6\u20138\"", "question": "Which Opponent in the final has a Score of 6\u20133, 3\u20136, 6\u20138?", "context": "CREATE TABLE table_name_29 (opponent_in_the_final VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_56 WHERE surface = \"carpet\" AND date < 1995 AND opponent_in_the_final = \"ken flach robert seguso\"", "question": "Which Tournament has a Surface of carpet, and a Date smaller than 1995, and an Opponent in the final of ken flach robert seguso?", "context": "CREATE TABLE table_name_56 (tournament VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT time_in_office FROM table_name_59 WHERE branch = \"u.s. navy\"", "question": "What time in office does the U.S. Navy have?", "context": "CREATE TABLE table_name_59 (time_in_office VARCHAR, branch VARCHAR)"}, {"answer": "SELECT term_ended FROM table_name_5 WHERE branch = \"u.s. marine corps\"", "question": "When did the term end for the U.S. Marine Corps?", "context": "CREATE TABLE table_name_5 (term_ended VARCHAR, branch VARCHAR)"}, {"answer": "SELECT COUNT(2006) FROM table_name_47 WHERE country = \"argentina\" AND 2007 < 0 OFFSET 15", "question": "What is the 2006 figure for Argentina when 2007 is less than 0,15?", "context": "CREATE TABLE table_name_47 (country VARCHAR)"}, {"answer": "SELECT AVG(2009) FROM table_name_4 WHERE 2007 > 0 OFFSET 18", "question": "What is the 2009 average when the 2007 average is more than 0,18?", "context": "CREATE TABLE table_name_4 (Id VARCHAR)"}, {"answer": "SELECT COUNT(gain) FROM table_name_45 WHERE loss > 57 AND long < 55", "question": "How many gains were there for the player who had a loss greater than 57 and a long less than 55?", "context": "CREATE TABLE table_name_45 (gain VARCHAR, loss VARCHAR, long VARCHAR)"}, {"answer": "SELECT MIN(loss) FROM table_name_95 WHERE name = \"total\" AND long > 55", "question": "What is the lowest Loss for the player named total that has a long greater than 55?", "context": "CREATE TABLE table_name_95 (loss INTEGER, name VARCHAR, long VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_58 WHERE school_club_team = \"kentucky\" AND player = \"tayshaun prince\"", "question": "What nationality is Kentucky and the player Tayshaun Prince?", "context": "CREATE TABLE table_name_58 (nationality VARCHAR, school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_95 WHERE school_club_team = \"duke\"", "question": "What is the nationality of Duke?", "context": "CREATE TABLE table_name_95 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_89 WHERE position = \"point guard\" AND years_for_grizzlies = \"1999-2001\"", "question": "What was the nationality of a point guard position in 1999-2001?", "context": "CREATE TABLE table_name_89 (nationality VARCHAR, position VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT position FROM table_name_69 WHERE player = \"tayshaun prince\"", "question": "What is the position of Tayshaun Prince?", "context": "CREATE TABLE table_name_69 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT parent FROM table_name_96 WHERE order = 6", "question": "Who was the parent on the order of 6?", "context": "CREATE TABLE table_name_96 (parent VARCHAR, order VARCHAR)"}, {"answer": "SELECT husband_dates FROM table_name_54 WHERE date_married = \"1858\"", "question": "Who was the husband date that was married in 1858?", "context": "CREATE TABLE table_name_54 (husband_dates VARCHAR, date_married VARCHAR)"}, {"answer": "SELECT record FROM table_name_55 WHERE opponent = \"vs. hamilton tiger cats\"", "question": "Can you tell me the Record that has the Opponent of vs. hamilton tiger cats?", "context": "CREATE TABLE table_name_55 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE date = \"sun, sept 9\"", "question": "Can you tell me the Opponent that has the Date of sun, sept 9?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_65 WHERE player = \"scott hoch\"", "question": "Which country is Scott Hoch from?", "context": "CREATE TABLE table_name_65 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_64 WHERE country = \"spain\"", "question": "What is the place of the player from Spain?", "context": "CREATE TABLE table_name_64 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE record = \"12-57\"", "question": "What is Score, when Record is 12-57?", "context": "CREATE TABLE table_name_53 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE record = \"12-58\"", "question": "What is Date, when Record is 12-58?", "context": "CREATE TABLE table_name_31 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE date = \"february 5\"", "question": "What is Score, when Date is February 5?", "context": "CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT h_a_n FROM table_name_10 WHERE score = \"104-109\"", "question": "What is H/A/N, when Score is 104-109?", "context": "CREATE TABLE table_name_10 (h_a_n VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE opponent = \"portland trail blazers\" AND record = \"12-58\"", "question": "What is Score, when Opponent is Portland Trail Blazers, and when Record is 12-58?", "context": "CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT h_a_n FROM table_name_55 WHERE date = \"february 24\"", "question": "What is H/A/N when Date is February 24?", "context": "CREATE TABLE table_name_55 (h_a_n VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_92 WHERE record = \"0-1-0\"", "question": "What is the last game of the season that has the record 0-1-0?", "context": "CREATE TABLE table_name_92 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT decision FROM table_name_73 WHERE date = 1", "question": "Who had the decision goal when the date was 1?", "context": "CREATE TABLE table_name_73 (decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_83 WHERE record = \"7-7-2\"", "question": "Who had the decision goal when the record was 7-7-2?", "context": "CREATE TABLE table_name_83 (decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_92 WHERE decision = \"weekes\" AND record = \"7-4-2\"", "question": "What was the first game in which Weekes scored the decision goal and the record was 7-4-2?", "context": "CREATE TABLE table_name_92 (game INTEGER, decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_3 WHERE details = \"1951 nswrfl grand final\"", "question": "What's the total number of points scored during the 1951 NSWRFL Grand Final?", "context": "CREATE TABLE table_name_3 (points VARCHAR, details VARCHAR)"}, {"answer": "SELECT premiers FROM table_name_17 WHERE details = \"1951 nswrfl grand final\"", "question": "Which premier team played the 1951 NSWRFL Grand Final?", "context": "CREATE TABLE table_name_17 (premiers VARCHAR, details VARCHAR)"}, {"answer": "SELECT details FROM table_name_31 WHERE points = 36", "question": "During which competition were a total of 36 points scored?", "context": "CREATE TABLE table_name_31 (details VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_80 WHERE premiers = \"brisbane broncos\"", "question": "What's the total sum of points scored by the Brisbane Broncos?", "context": "CREATE TABLE table_name_80 (points INTEGER, premiers VARCHAR)"}, {"answer": "SELECT premiers FROM table_name_16 WHERE points = 38 AND score = \"38-0\"", "question": "What is the premier team that has 38 points and won with a score of 38-0?", "context": "CREATE TABLE table_name_16 (premiers VARCHAR, points VARCHAR, score VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_21 WHERE away_team = \"northwich victoria\"", "question": "What was the tie no when the away team was northwich victoria?", "context": "CREATE TABLE table_name_21 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_55 WHERE home_team = \"cambridge united\"", "question": "What was the attendance for the match where cambridge united was the home team?", "context": "CREATE TABLE table_name_55 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_90 WHERE award = \"inte awards\"", "question": "How many times was the award inte awards?", "context": "CREATE TABLE table_name_90 (year VARCHAR, award VARCHAR)"}, {"answer": "SELECT work FROM table_name_91 WHERE result = \"won\" AND year > 2002", "question": "what is the work when the result is won and the year is after 2002?", "context": "CREATE TABLE table_name_91 (work VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT work FROM table_name_36 WHERE result = \"won\" AND year < 2003", "question": "what is the work when the result is won and the year is before 2003?", "context": "CREATE TABLE table_name_36 (work VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_16 WHERE opposing_team = \"natal\"", "question": "Which venue had the opposing team Natal?", "context": "CREATE TABLE table_name_16 (venue VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE status = \"tour match\" AND against = 22", "question": "What day was the against 22 and the status tour match?", "context": "CREATE TABLE table_name_51 (date VARCHAR, status VARCHAR, against VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_25 WHERE week = 8", "question": "Which Attendance has a Week of 8?", "context": "CREATE TABLE table_name_25 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_41 WHERE week < 7 AND date = \"september 12, 1988\"", "question": "Which Opponent that has a Week smaller than 7 on september 12, 1988?", "context": "CREATE TABLE table_name_41 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE result = \"w 41-27\"", "question": "When has a Result of w 41-27?", "context": "CREATE TABLE table_name_23 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(weight__kg_) FROM table_name_67 WHERE manufacturer = \"fujitsu\" AND model = \"lifebook p1610\"", "question": "Which Weight (kg) has a Manufacturer of fujitsu, and a Model of lifebook p1610?", "context": "CREATE TABLE table_name_67 (weight__kg_ INTEGER, manufacturer VARCHAR, model VARCHAR)"}, {"answer": "SELECT MIN(display_size__in_) FROM table_name_10 WHERE model = \"versapro vy10f/bh-l\"", "question": "Which Display size (in) has a Model of versapro vy10f/bh-l?", "context": "CREATE TABLE table_name_10 (display_size__in_ INTEGER, model VARCHAR)"}, {"answer": "SELECT COUNT(display_size__in_) FROM table_name_29 WHERE model = \"vaio pcg-u3\"", "question": "Which Display size (in) has a Model of vaio pcg-u3?", "context": "CREATE TABLE table_name_29 (display_size__in_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT method FROM table_name_13 WHERE round = 1 AND record = \"6-3-1\"", "question": "What method was used in the match that went to round 1, and had a 6-3-1 record?", "context": "CREATE TABLE table_name_13 (method VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT res FROM table_name_6 WHERE method = \"decision (unanimous)\" AND opponent = \"marcus aur\u00e9lio\"", "question": "In the match against Marcus Aur\u00e9lio with a method of decision (unanimous), what was the results?", "context": "CREATE TABLE table_name_6 (res VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_55 WHERE event = \"deep - 30 impact\"", "question": "Where was the Deep - 30 Impact event held?", "context": "CREATE TABLE table_name_55 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT SUM(diameter__km_) FROM table_name_25 WHERE latitude = \"62.7n\"", "question": "COunt the sum of Diameter (km) which has a Latitude of 62.7n?", "context": "CREATE TABLE table_name_25 (diameter__km_ INTEGER, latitude VARCHAR)"}, {"answer": "SELECT name AS origin FROM table_name_94 WHERE longitude = \"332.5e\"", "question": "WHich Name origin has a Longitude of 332.5e?", "context": "CREATE TABLE table_name_94 (name VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT round FROM table_name_63 WHERE opponent = \"dustin hazelett\"", "question": "In which round was Dustin Hazelett the opponent?", "context": "CREATE TABLE table_name_63 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_89 WHERE opponent = \"at cincinnati bengals\"", "question": "What is TV Time, when Opponent is At Cincinnati Bengals?", "context": "CREATE TABLE table_name_89 (tv_time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_91 WHERE date = \"december 22, 1996\"", "question": "What is TV Time, when Date is December 22, 1996?", "context": "CREATE TABLE table_name_91 (tv_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_32 WHERE opponent = \"cincinnati bengals\"", "question": "What is Result, when Opponent is Cincinnati Bengals?", "context": "CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_66 WHERE game = 54", "question": "What was their record bfore game 54?", "context": "CREATE TABLE table_name_66 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_52 WHERE team = \"chicago\"", "question": "Who had the most rebounds in the game against Chicago?", "context": "CREATE TABLE table_name_52 (high_rebounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_21 WHERE decision = \"conklin\" AND visitor = \"chicago\"", "question": "What was the lowest attendance at the game against chicago when conklin made the decision?", "context": "CREATE TABLE table_name_21 (attendance INTEGER, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_33 WHERE tie_no = \"2\"", "question": "For Tie #2, who was the home team?", "context": "CREATE TABLE table_name_33 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE home_team = \"hereford united\"", "question": "What was the final score for the match where Hereford United was the home team?", "context": "CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_76 WHERE tie_no = \"18\"", "question": "In Tie #18, who was the away team?", "context": "CREATE TABLE table_name_76 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_27 WHERE tie_no = \"19\"", "question": "In Tie #19, what was the name of the away team?", "context": "CREATE TABLE table_name_27 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_31 WHERE home_team = \"dartford\"", "question": "What is the Tie number for the match where Dartford was the hone team?", "context": "CREATE TABLE table_name_31 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_9 WHERE away_team = \"telford united\"", "question": "In the match played against Telford United, who was the home team?", "context": "CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_93 WHERE class = \"sophomore\" AND player = \"shaquille o'neal category:articles with hcards\"", "question": "What is Position, when Class is Sophomore, and when Player is Shaquille O'Neal Category:Articles With hCards?", "context": "CREATE TABLE table_name_93 (position VARCHAR, class VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_56 WHERE class = \"senior\" AND position = \"shooting guard\" AND school = \"bradley\"", "question": "What is Player, when Class is \"senior\", when Position is \"shooting guard\", and when School is \"Bradley\"?", "context": "CREATE TABLE table_name_56 (player VARCHAR, school VARCHAR, class VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_71 WHERE player = \"kevin durant category:articles with hcards\"", "question": "What is Position, when Player is \"Kevin Durant category:articles with hCards\"?", "context": "CREATE TABLE table_name_71 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE date = \"august 23, 2004\"", "question": "What is the Score of the match on August 23, 2004?", "context": "CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE tournament = \"spain f32, gran canaria\"", "question": "What was the Score of the Spain F32, Gran Canaria Tournament?", "context": "CREATE TABLE table_name_70 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_30 WHERE outcome = \"runner-up\" AND score = \"6\u20134, 6\u20133\"", "question": "On what Surface was the match with a Score of 6\u20134, 6\u20133 and Runner-up Outcome played?", "context": "CREATE TABLE table_name_30 (surface VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_7 WHERE partner = \"andoni vivanco\"", "question": "What is the Outcome of the match with Partner Andoni Vivanco?", "context": "CREATE TABLE table_name_7 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT Leading AS scorer FROM table_name_90 WHERE score = \"96-87\"", "question": "Who was the Leading Scorer in the Game with a Score of 96-87?", "context": "CREATE TABLE table_name_90 (Leading VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_98 WHERE label = \"atco records\" AND format = \"mc\"", "question": "What Country with a MC Format has a ATCO Records Label?", "context": "CREATE TABLE table_name_98 (country VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT team FROM table_name_22 WHERE location_attendance = \"seattle center coliseum 12,591\"", "question": "What team has a location and attendance at the Seattle Center Coliseum 12,591?", "context": "CREATE TABLE table_name_22 (team VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_76 WHERE team__number2 = \"emelec\"", "question": "What is 1st Leg, when Team #2 is \"Emelec\"?", "context": "CREATE TABLE table_name_76 (team__number2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_58 WHERE team__number1 = \"san lorenzo\"", "question": "What is 1st Leg, when Team #1 is \"San Lorenzo\"?", "context": "CREATE TABLE table_name_58 (team__number1 VARCHAR)"}, {"answer": "SELECT muzzle_energy FROM table_name_67 WHERE bullet_weight = \"grains (g)\" AND max_pressure = \"35,000 psi\"", "question": "What is the muzzle energy with grains (g) bullet weight and a max pressure of 35,000 psi?", "context": "CREATE TABLE table_name_67 (muzzle_energy VARCHAR, bullet_weight VARCHAR, max_pressure VARCHAR)"}, {"answer": "SELECT bullet_weight FROM table_name_98 WHERE max_pressure = \"12,000 cup\"", "question": "What is the bullet weight with a 12,000 cup max pressure?", "context": "CREATE TABLE table_name_98 (bullet_weight VARCHAR, max_pressure VARCHAR)"}, {"answer": "SELECT max_pressure FROM table_name_99 WHERE muzzle_energy = \"468ft\u2022lbf (634 j)\"", "question": "What is the max pressure for the 468ft\u2022lbf (634 j) muzzle energy?", "context": "CREATE TABLE table_name_99 (max_pressure VARCHAR, muzzle_energy VARCHAR)"}, {"answer": "SELECT muzzle_velocity FROM table_name_60 WHERE muzzle_energy = \"351ft\u2022lbf (476 j)\"", "question": "What is the muzzle velocity for the muzzle energy 351ft\u2022lbf (476 j)?", "context": "CREATE TABLE table_name_60 (muzzle_velocity VARCHAR, muzzle_energy VARCHAR)"}, {"answer": "SELECT muzzle_velocity FROM table_name_32 WHERE cartridge = \".38 long colt\"", "question": "What is the muzzle velocity for the .38 long colt cartridge?", "context": "CREATE TABLE table_name_32 (muzzle_velocity VARCHAR, cartridge VARCHAR)"}, {"answer": "SELECT muzzle_energy FROM table_name_40 WHERE max_pressure = \"40,000 psi\"", "question": "What is the muzzle energy with 40,000 psi max pressure?", "context": "CREATE TABLE table_name_40 (muzzle_energy VARCHAR, max_pressure VARCHAR)"}, {"answer": "SELECT country FROM table_name_23 WHERE place = \"t5\" AND score = 69 - 71 = 140", "question": "What is the home country of the player who placed t5 and had a score of 69-71=140?", "context": "CREATE TABLE table_name_23 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_78 WHERE score = 71 - 69 = 140", "question": "What was the place for the player whose final score was 71-69=140?", "context": "CREATE TABLE table_name_78 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_26 WHERE score = 67 - 71 = 138", "question": "What was the To par for the player whose final score was 67-71=138?", "context": "CREATE TABLE table_name_26 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_96 WHERE place = \"t3\" AND player = \"nolan henke\"", "question": "What was Nolan Henke's To par when he placed in t3?", "context": "CREATE TABLE table_name_96 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT meaning FROM table_name_61 WHERE p\u012bny\u012bn = \"ch\u0113\"", "question": "WHAT IS THE MEANING WITH P\u012bny\u012bn of ch\u0113?", "context": "CREATE TABLE table_name_61 (meaning VARCHAR, p\u012bny\u012bn VARCHAR)"}, {"answer": "SELECT radical__variants_ FROM table_name_81 WHERE p\u012bny\u012bn = \"g\u01d4\" AND stroke_count = 7", "question": "WHAT IS THE RADICAL WITH g\u01d4, AND STROKE COUNT OF 7?", "context": "CREATE TABLE table_name_81 (radical__variants_ VARCHAR, p\u012bny\u012bn VARCHAR, stroke_count VARCHAR)"}, {"answer": "SELECT COUNT(stroke_count) FROM table_name_57 WHERE radical__variants_ = \"\u751f\" AND frequency < 22", "question": "WHAT IS THE STROKE COUNT WITH RADICAL OF \u751f, FRQUENCY SMALLER THAN 22?", "context": "CREATE TABLE table_name_57 (stroke_count VARCHAR, radical__variants_ VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT AVG(stroke_count) FROM table_name_88 WHERE radical__variants_ = \"\u76bf\" AND frequency < 129", "question": "WHAT IS THE STROKE COUNT WITH RADICAL \u76bf FREQUENCY SMALLER THAN 129?", "context": "CREATE TABLE table_name_88 (stroke_count INTEGER, radical__variants_ VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT flagship FROM table_name_33 WHERE host_s_ = \"rover (shane french)\"", "question": "What is the Flagship of the Show Hosted by Rover (Shane French)?", "context": "CREATE TABLE table_name_33 (flagship VARCHAR, host_s_ VARCHAR)"}, {"answer": "SELECT host_s_ FROM table_name_78 WHERE market = \"new york\"", "question": "What is the Host of the Show with a Market of New York?", "context": "CREATE TABLE table_name_78 (host_s_ VARCHAR, market VARCHAR)"}, {"answer": "SELECT iheartradio FROM table_name_74 WHERE show = \"bronson and christine\"", "question": "What is the iHeartRadio of the Bronson and Christine Show?", "context": "CREATE TABLE table_name_74 (iheartradio VARCHAR, show VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_99 WHERE player = \"laurie ayton\"", "question": "What is the to total number of par with laurie ayton?", "context": "CREATE TABLE table_name_99 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_43 WHERE player = \"bobby jones (a)\"", "question": "Where is bobby jones (a)?", "context": "CREATE TABLE table_name_43 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(top_5) FROM table_name_38 WHERE year < 2009 AND wins > 0", "question": "Can you tell me the total number of Top 5 that has the Year smaller than 2009, and the Wins larger than 0?", "context": "CREATE TABLE table_name_38 (top_5 VARCHAR, year VARCHAR, wins VARCHAR)"}, {"answer": "SELECT wins FROM table_name_19 WHERE starts > 1 AND top_5 = 3", "question": "Can you tell me the Wins that has the Starts larger than 1, and the Top 5 of 3?", "context": "CREATE TABLE table_name_19 (wins VARCHAR, starts VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT SUM(starts) FROM table_name_37 WHERE winnings = \"$139,774\" AND wins < 0", "question": "Can you tell me the sum of Starts that the Winnings of $139,774, and the Wins smaller than 0?", "context": "CREATE TABLE table_name_37 (starts INTEGER, winnings VARCHAR, wins VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_53 WHERE nickname = \"ramblers\"", "question": "Who is affiliated with the nickname Ramblers?", "context": "CREATE TABLE table_name_53 (affiliation VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_61 WHERE score = \"6\u20133, 6\u20134\"", "question": "Who was the Opponent in the match with a Score of 6\u20133, 6\u20134?", "context": "CREATE TABLE table_name_61 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_78 WHERE opponent = \"malek jaziri\"", "question": "On what Surface was the match against Malek Jaziri played?", "context": "CREATE TABLE table_name_78 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(year_s__won) FROM table_name_27 WHERE player = \"ed furgol\" AND to_par > 12", "question": "What is the total number of Year(s) Won, when Player is Ed Furgol, and when To Par is greater than 12?", "context": "CREATE TABLE table_name_27 (year_s__won VARCHAR, player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_91 WHERE player = \"arnold palmer\"", "question": "What is Year(s) Won, when Player is Arnold Palmer?", "context": "CREATE TABLE table_name_91 (year_s__won VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_99 WHERE year_s__won < 1959", "question": "What is Highest Total, when Year(s) Won is before 1959?", "context": "CREATE TABLE table_name_99 (total INTEGER, year_s__won INTEGER)"}, {"answer": "SELECT player FROM table_name_42 WHERE year_s__won < 1961 AND to_par = 6", "question": "What is Player, when Year(s) Won is before 1961, and when To Par is 6?", "context": "CREATE TABLE table_name_42 (player VARCHAR, year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT finish FROM table_name_33 WHERE to_par > 6 AND year_s__won < 1961", "question": "What is Finish, when To Par is greater than 6, and when Year(s) Won is before 1961?", "context": "CREATE TABLE table_name_33 (finish VARCHAR, to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_71 WHERE country = \"sweden\"", "question": "What is Top Par, when Country is Sweden?", "context": "CREATE TABLE table_name_71 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_35 WHERE to_par = \"e\" AND player = \"ernie els\"", "question": "What is the highest Money ($), when Top Par is E, and when Player is Ernie Els?", "context": "CREATE TABLE table_name_35 (money___ INTEGER, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_43 WHERE score = 70 - 71 - 70 - 69 = 280", "question": "What is the sum of Money ($), when Score is 70-71-70-69=280?", "context": "CREATE TABLE table_name_43 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_35 WHERE high_points = \"eric gordon (21)\"", "question": "What was the high assist when the high point was Eric Gordon (21)?", "context": "CREATE TABLE table_name_35 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE high_assists = \"mike taylor (5)\"", "question": "What day was the high assist Mike Taylor (5)?", "context": "CREATE TABLE table_name_95 (date VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT record FROM table_name_63 WHERE high_rebounds = \"deandre jordan (11)\"", "question": "What was the record when the high rebound was Deandre Jordan (11)?", "context": "CREATE TABLE table_name_63 (record VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_34 WHERE home_team = \"st kilda\"", "question": "What was the away team when the home was st kilda?", "context": "CREATE TABLE table_name_34 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_40 WHERE date = \"sunday, 13 february\"", "question": "Who was the away team on sunday, 13 february?", "context": "CREATE TABLE table_name_40 (away_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_56 WHERE date = \"december 3, 2001\"", "question": "Which Week has a Date of december 3, 2001?", "context": "CREATE TABLE table_name_56 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_86 WHERE opponent = \"tennessee titans\"", "question": "Which Week has a Opponent of tennessee titans?", "context": "CREATE TABLE table_name_86 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_37 WHERE total = 282", "question": "What are the years won with a total of 282?", "context": "CREATE TABLE table_name_37 (year_s__won VARCHAR, total VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE against = 3", "question": "What was the date when the against was 3?", "context": "CREATE TABLE table_name_35 (date VARCHAR, against VARCHAR)"}, {"answer": "SELECT against FROM table_name_24 WHERE opposing_team = \"sheffield wednesday\"", "question": "What was the Against when the Opposing Team was sheffield wednesday?", "context": "CREATE TABLE table_name_24 (against VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT round FROM table_name_83 WHERE venue = \"h\" AND date = \"29 january 1949\"", "question": "Which round was played in the H Venue on 29 january 1949?", "context": "CREATE TABLE table_name_83 (round VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_59 WHERE venue = \"h\" AND date = \"26 february 1949\"", "question": "What is the total number of Against that were played in the H Venue on 26 february 1949?", "context": "CREATE TABLE table_name_59 (against VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_name_52 WHERE against = 1 AND date = \"29 january 1949\"", "question": "What was the round for 29 January 1949, when the against was 1?", "context": "CREATE TABLE table_name_52 (round VARCHAR, against VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_85 WHERE attendance = \"1,634\"", "question": "What is the Result when the Attendance is 1,634?", "context": "CREATE TABLE table_name_85 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE man_of_the_match = \"stuart potts\"", "question": "On what date was Stuart Potts the Man of the Match?", "context": "CREATE TABLE table_name_47 (date VARCHAR, man_of_the_match VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_1 WHERE man_of_the_match = \"terry miles\"", "question": "Who was the Opponent when Terry Miles was the Man of the Match?", "context": "CREATE TABLE table_name_1 (opponent VARCHAR, man_of_the_match VARCHAR)"}, {"answer": "SELECT result FROM table_name_97 WHERE date = \"21st\"", "question": "What was the Result of the game dated 21st?", "context": "CREATE TABLE table_name_97 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_52 WHERE date = \"21st\"", "question": "Which Venue is listed under the Date of  21st?", "context": "CREATE TABLE table_name_52 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_82 WHERE date = \"25th\"", "question": "What was the Result on the Date of 25th?", "context": "CREATE TABLE table_name_82 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank__number FROM table_name_23 WHERE opponent_number = \"at wisconsin\"", "question": "What was the rank when the opponent was Wisconsin (played at Wisconsin)?", "context": "CREATE TABLE table_name_23 (rank__number VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE opponent_number = \"at michigan state\"", "question": "What was the result when they played at Michigan State?", "context": "CREATE TABLE table_name_14 (result VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT opponent_number FROM table_name_1 WHERE result = \"w24-7\"", "question": "Who was the opponent when the result was w24-7?", "context": "CREATE TABLE table_name_1 (opponent_number VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_57 WHERE opponent_number = \"vs. 12 stanford\"", "question": "How many were in attendance when they played vs. 12 Stanford?", "context": "CREATE TABLE table_name_57 (attendance VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT MAX(big__) > 500 AS ha_ FROM table_name_12 WHERE micro__10ha_ > 940 AND department = \"potos\u00ed\" AND total < 16 OFFSET 240", "question": "Which Big (>500ha) has a Micro (10ha) larger than 940, and a Department of potos\u00ed, and a Total smaller than 16,240?", "context": "CREATE TABLE table_name_12 (big__ INTEGER, total VARCHAR, micro__10ha_ VARCHAR, department VARCHAR)"}, {"answer": "SELECT MAX(fumb_yds) FROM table_name_9 WHERE fumb_f = 0 AND int_lg < 0", "question": "Which Fumb Yds has a Fumb F. of 0, and a Int LG smaller than 0?", "context": "CREATE TABLE table_name_9 (fumb_yds INTEGER, fumb_f VARCHAR, int_lg VARCHAR)"}, {"answer": "SELECT MIN(fumb_td) FROM table_name_72 WHERE int_td = 1 AND fumb_f < 1", "question": "Which Fumb TD has an Int TD of 1, and a Fumb F. smaller than 1?", "context": "CREATE TABLE table_name_72 (fumb_td INTEGER, int_td VARCHAR, fumb_f VARCHAR)"}, {"answer": "SELECT name FROM table_name_53 WHERE country = \"west indies\"", "question": "What is the name of the person whose country is West Indies.", "context": "CREATE TABLE table_name_53 (name VARCHAR, country VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_81 WHERE name = \"pananmal punjabi\"", "question": "What is the Pananmal Punjabi's date of birth?", "context": "CREATE TABLE table_name_81 (date_of_birth VARCHAR, name VARCHAR)"}, {"answer": "SELECT winner FROM table_name_81 WHERE year > 2011", "question": "Who was the winner after 2011?", "context": "CREATE TABLE table_name_81 (winner VARCHAR, year INTEGER)"}, {"answer": "SELECT MIN(year) FROM table_name_79 WHERE winner = \"tcu\"", "question": "What was the lowest year for TCU?", "context": "CREATE TABLE table_name_79 (year INTEGER, winner VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE player = \"bill rogers\"", "question": "What is the score of player bill rogers?", "context": "CREATE TABLE table_name_30 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_70 WHERE place = \"t7\" AND score = 69 - 68 - 72 = 209", "question": "What is the country with a t7 place and a 69-68-72=209 score?", "context": "CREATE TABLE table_name_70 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_60 WHERE player = \"jim thorpe\"", "question": "What is the place of player jim thorpe?", "context": "CREATE TABLE table_name_60 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_41 WHERE player = \"chi-chi rodr\u00edguez\"", "question": "What is the place of player chi-chi rodr\u00edguez?", "context": "CREATE TABLE table_name_41 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_23 WHERE score = 69 - 68 - 71 = 208", "question": "Who is the player with a 69-68-71=208 score?", "context": "CREATE TABLE table_name_23 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT state FROM table_name_94 WHERE title = \"duke\" AND royal_house = \"ji\"", "question": "What state had a title of duke for the royal house of ji?", "context": "CREATE TABLE table_name_94 (state VARCHAR, title VARCHAR, royal_house VARCHAR)"}, {"answer": "SELECT state FROM table_name_21 WHERE royal_house = \"ji\" AND name = \"wu\"", "question": "What state had the name of wu for the royal house of ji?", "context": "CREATE TABLE table_name_21 (state VARCHAR, royal_house VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_96 WHERE title = \"duke\" AND royal_house = \"jiang\"", "question": "What was the name listed for the royal house of jiang and a title of duke?", "context": "CREATE TABLE table_name_96 (name VARCHAR, title VARCHAR, royal_house VARCHAR)"}, {"answer": "SELECT name FROM table_name_22 WHERE state = \"wey\"", "question": "What was the name when the state was wey?", "context": "CREATE TABLE table_name_22 (name VARCHAR, state VARCHAR)"}, {"answer": "SELECT title FROM table_name_29 WHERE state = \"qin\"", "question": "What was the title for the state of qin?", "context": "CREATE TABLE table_name_29 (title VARCHAR, state VARCHAR)"}, {"answer": "SELECT state FROM table_name_8 WHERE name = \"li\"", "question": "What was the state that had the vassal name of li?", "context": "CREATE TABLE table_name_8 (state VARCHAR, name VARCHAR)"}, {"answer": "SELECT location FROM table_name_90 WHERE time = \"3:24\"", "question": "Where was the match held that lasted 3:24?", "context": "CREATE TABLE table_name_90 (location VARCHAR, time VARCHAR)"}, {"answer": "SELECT res FROM table_name_86 WHERE opponent = \"mark hunt\"", "question": "The match against Mark Hunt had what result?", "context": "CREATE TABLE table_name_86 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_70 WHERE event = \"pride 31\"", "question": "Who was the match against at the PRIDE 31 event?", "context": "CREATE TABLE table_name_70 (opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_43 WHERE round = 1 AND method = \"submission (rear-naked choke)\"", "question": "The match that went 1 round, and had a method of submission (rear-naked choke) had what record?", "context": "CREATE TABLE table_name_43 (record VARCHAR, round VARCHAR, method VARCHAR)"}, {"answer": "SELECT player FROM table_name_56 WHERE place = \"t7\"", "question": "Who is the player with a t7 place?", "context": "CREATE TABLE table_name_56 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT MIN(money___) AS $__ FROM table_name_96 WHERE player = \"jim colbert\"", "question": "What is the lowest amount of money player jim colbert has?", "context": "CREATE TABLE table_name_96 (money___ INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM table_name_41 WHERE institution = \"dickinson college\"", "question": "What is the average Enrollment of Dickinson College?", "context": "CREATE TABLE table_name_41 (enrollment INTEGER, institution VARCHAR)"}, {"answer": "SELECT institution FROM table_name_88 WHERE nickname = \"blue hens\"", "question": "Which institution has a nickname of Blue Hens?", "context": "CREATE TABLE table_name_88 (institution VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_65 WHERE established = 1773", "question": "What is the nickname of the college established in 1773?", "context": "CREATE TABLE table_name_65 (nickname VARCHAR, established VARCHAR)"}, {"answer": "SELECT time FROM table_name_69 WHERE round = \"2\" AND opponent = \"taylor mccorriston\"", "question": "What was the time of round 2 against Taylor Mccorriston?", "context": "CREATE TABLE table_name_69 (time VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_58 WHERE team = \"san antonio\"", "question": "Who had the high assists against San Antonio?", "context": "CREATE TABLE table_name_58 (high_assists VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_63 WHERE team = \"charlotte\"", "question": "What was the number of the game against Charlotte?", "context": "CREATE TABLE table_name_63 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT MIN(money___) AS $__ FROM table_name_25 WHERE score = 70 - 68 - 73 - 68 = 279", "question": "Which Money has a Score of 70-68-73-68=279?", "context": "CREATE TABLE table_name_25 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE to_par = \"+1\" AND player = \"masashi ozaki\"", "question": "Which Score has a To par of +1, and a Player of masashi ozaki?", "context": "CREATE TABLE table_name_94 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_23 WHERE country = \"united states\" AND place = \"t6\"", "question": "Which money has a Country of united states, and a Place of t6?", "context": "CREATE TABLE table_name_23 (money___ INTEGER, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_86 WHERE 2009 = \"grand slam tournaments\"", "question": "What is the 2004 value for the 2009 Grand slam tournaments?", "context": "CREATE TABLE table_name_86 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_31 WHERE 2008 = \"a\" AND 2005 = \"q1\" AND 2004 = \"1r\"", "question": "What tournament has a 2008 value of A, q1 in 2005, and 1r in 2004?", "context": "CREATE TABLE table_name_31 (tournament VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_37 WHERE 2010 = \"grand slam tournaments\"", "question": "What is the 2005 value for the 2010 grand slam tournaments?", "context": "CREATE TABLE table_name_37 (Id VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_87 WHERE 2008 = \"grand slam tournaments\"", "question": "What is the 2003 value for the 2008 grand slam tournaments?", "context": "CREATE TABLE table_name_87 (Id VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_48 WHERE 2011 = \"q2\" AND 2012 = \"q1\" AND 2003 = \"1r\"", "question": "What is the 2005 value with a q2 in 2011, a q1 in 2012, and 1r in 2003?", "context": "CREATE TABLE table_name_48 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_96 WHERE 2003 = \"grand slam tournaments\"", "question": "What is the 2009 value for the 2003 grand slam tournaments?", "context": "CREATE TABLE table_name_96 (Id VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_1 WHERE game < 60", "question": "What was the high amount of assists before game 60?", "context": "CREATE TABLE table_name_1 (high_assists VARCHAR, game INTEGER)"}, {"answer": "SELECT date FROM table_name_29 WHERE match = 5", "question": "What date was match 5?", "context": "CREATE TABLE table_name_29 (date VARCHAR, match VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE date = \"april 2, 2008\"", "question": "What was the game score on april 2, 2008?", "context": "CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(match) FROM table_name_65 WHERE home_away = \"away\" AND opponent_team = \"perak fa (malaysia)\"", "question": "What is the average match when the singapore armed forces played away against perak fa (malaysia)?", "context": "CREATE TABLE table_name_65 (match INTEGER, home_away VARCHAR, opponent_team VARCHAR)"}, {"answer": "SELECT icao FROM table_name_72 WHERE airport = \"seewoosagur ramgoolam airport\"", "question": "What is the ICAO for Seewoosagur Ramgoolam airport?", "context": "CREATE TABLE table_name_72 (icao VARCHAR, airport VARCHAR)"}, {"answer": "SELECT iata FROM table_name_88 WHERE airport = \"san francisco airport\"", "question": "What is the IATA for San Francisco airport?", "context": "CREATE TABLE table_name_88 (iata VARCHAR, airport VARCHAR)"}, {"answer": "SELECT city FROM table_name_61 WHERE icao = \"oejn\"", "question": "Which city has an ICAO of Oejn?", "context": "CREATE TABLE table_name_61 (city VARCHAR, icao VARCHAR)"}, {"answer": "SELECT iata FROM table_name_79 WHERE airport = \"gatwick airport\"", "question": "What is the IATA for Gatwick airport?", "context": "CREATE TABLE table_name_79 (iata VARCHAR, airport VARCHAR)"}, {"answer": "SELECT icao FROM table_name_79 WHERE country = \"france\" AND iata = \"ory\"", "question": "What is the ICAO in France with an IATA of Ory?", "context": "CREATE TABLE table_name_79 (icao VARCHAR, country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_92 WHERE game > 67 AND team = \"@ charlotte\"", "question": "Which Location Attendance has a Game larger than 67, and a Team of @ charlotte?", "context": "CREATE TABLE table_name_92 (location_attendance VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_50 WHERE high_points = \"chris bosh (18)\"", "question": "Which High rebounds have High points of chris bosh (18)?", "context": "CREATE TABLE table_name_50 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_29 WHERE high_points = \"chris bosh (34)\"", "question": "Which High rebounds have High points of chris bosh (34)?", "context": "CREATE TABLE table_name_29 (high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_49 WHERE team = \"utah\"", "question": "What are Utah's high points?", "context": "CREATE TABLE table_name_49 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT title FROM table_name_82 WHERE name = \"rinnal\"", "question": "What is Rinnal's title?", "context": "CREATE TABLE table_name_82 (title VARCHAR, name VARCHAR)"}, {"answer": "SELECT player FROM table_name_51 WHERE country = \"united states\" AND place = \"t6\"", "question": "Which player from United States is in place of t6?", "context": "CREATE TABLE table_name_51 (player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_47 WHERE player = \"phil mickelson\"", "question": "Phil Mickelson has what  To par?", "context": "CREATE TABLE table_name_47 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_61 WHERE game > 46", "question": "What high assists have a game greater than 46?", "context": "CREATE TABLE table_name_61 (high_assists VARCHAR, game INTEGER)"}, {"answer": "SELECT high_points FROM table_name_65 WHERE game = 42", "question": "What are the high points that have 42 as the game?", "context": "CREATE TABLE table_name_65 (high_points VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_74 WHERE game = 46", "question": "What record has 46 as the game?", "context": "CREATE TABLE table_name_74 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT place FROM table_name_61 WHERE score = 67 - 70 = 137", "question": "WHAT IS THE PLACE WITH A SCORE OF 67-70=137?", "context": "CREATE TABLE table_name_61 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE score = 66 - 73 = 139", "question": "WHAT PLAYER HAS A SCORE OF 66-73=139?", "context": "CREATE TABLE table_name_79 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_48 WHERE score = 67 - 70 = 137", "question": "WHAT PLACE WAS A SCORE 67-70=137?", "context": "CREATE TABLE table_name_48 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_13 WHERE place = \"t7\" AND player = \"ian woosnam\"", "question": "WHAT COUNTRY HAS A T7 PLACE, WITH IAN WOOSNAM?", "context": "CREATE TABLE table_name_13 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_58 WHERE score = 68 - 70 = 138", "question": "WHAT COUNTRY HAS A SCORE OF 68-70=138?", "context": "CREATE TABLE table_name_58 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_31 WHERE opponent = \"new orleans saints\"", "question": "What was the earliest week when the New Orleans Saints were the opponents?", "context": "CREATE TABLE table_name_31 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_19 WHERE tv_time = \"bye\"", "question": "What was the name of the opponent that having a TV time of Bye?", "context": "CREATE TABLE table_name_19 (opponent VARCHAR, tv_time VARCHAR)"}, {"answer": "SELECT years_for_grizzlies FROM table_name_81 WHERE school_club_team = \"unlv\"", "question": "What year did the Grizzlies play for the UNLV team?", "context": "CREATE TABLE table_name_81 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_37 WHERE position = \"forward/center\"", "question": "What nationality is the forward/center position?", "context": "CREATE TABLE table_name_37 (nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_70 WHERE nationality = \"united states\" AND position = \"guard\" AND years_for_grizzlies = \"2012\"", "question": "What team is from the United States and plays a guard position for the Grizzlies in 2012?", "context": "CREATE TABLE table_name_70 (school_club_team VARCHAR, years_for_grizzlies VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_90 WHERE nationality = \"united states\" AND years_for_grizzlies = \"2000-2001\"", "question": "What position is the player from the United States play for the Grizzlies from 2000-2001?", "context": "CREATE TABLE table_name_90 (position VARCHAR, nationality VARCHAR, years_for_grizzlies VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_59 WHERE gold > 0 AND rank = \"4\" AND total > 4", "question": "What is the total number of Bronze, when Gold is greater than 0, when Rank is 4, and when Total is greater than 4?", "context": "CREATE TABLE table_name_59 (bronze VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_68 WHERE gold < 1 AND silver > 0 AND rank = \"14\" AND nation = \"afghanistan\"", "question": "What is the total number of Total, when Gold is less than 1, when Silver is greater than 0, when Rank is 14, and when Nation is Afghanistan?", "context": "CREATE TABLE table_name_68 (total VARCHAR, nation VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_52 WHERE silver = 0 AND bronze = 2", "question": "What is the lowest Gold, when Silver is 0, and when Bronze is 2?", "context": "CREATE TABLE table_name_52 (gold INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_29 WHERE silver = 0 AND rank = \"19\" AND total > 2", "question": "What is the average Bronze, when Silver is 0, when Rank is 19, and when Total is greater than 2?", "context": "CREATE TABLE table_name_29 (bronze INTEGER, total VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(pieces) FROM table_name_15 WHERE release = 1984", "question": "What was the lowest number of pieces for a board released in 1984?", "context": "CREATE TABLE table_name_15 (pieces INTEGER, release VARCHAR)"}, {"answer": "SELECT board__cm_ FROM table_name_14 WHERE start = \"1940\" AND type = \"theater\" AND release > 2010", "question": "What is the dimensions in centimeters of a theater board who started in 1940, who was released after 2010?", "context": "CREATE TABLE table_name_14 (board__cm_ VARCHAR, release VARCHAR, start VARCHAR, type VARCHAR)"}, {"answer": "SELECT AVG(pieces) FROM table_name_14 WHERE start = \"1941\" AND release > 2001", "question": "What is the average number of pieces for boards that started in 1941 and were released after 2001?", "context": "CREATE TABLE table_name_14 (pieces INTEGER, start VARCHAR, release VARCHAR)"}, {"answer": "SELECT board__inches_ FROM table_name_76 WHERE release < 2004 AND start = \"1941\"", "question": "What are the dimensions in inches of the board released before 2004, that started in 1941?", "context": "CREATE TABLE table_name_76 (board__inches_ VARCHAR, release VARCHAR, start VARCHAR)"}, {"answer": "SELECT venue FROM table_name_14 WHERE against < 30 AND opposing_team = \"new south wales\"", "question": "What is Venue, when Against is less than 30, and when Opposing Team is New South Wales?", "context": "CREATE TABLE table_name_14 (venue VARCHAR, against VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT status FROM table_name_33 WHERE date = \"10/05/1975\"", "question": "What is Status, when Date is 10/05/1975?", "context": "CREATE TABLE table_name_33 (status VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_92 WHERE opposing_team = \"queensland\"", "question": "What is the lowest Against, when Opposing Team is Queensland?", "context": "CREATE TABLE table_name_92 (against INTEGER, opposing_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE status = \"second test\"", "question": "What is Date, when Status is Second Test?", "context": "CREATE TABLE table_name_34 (date VARCHAR, status VARCHAR)"}, {"answer": "SELECT name FROM table_name_27 WHERE place_of_birth = \"porsgrunn\"", "question": "Who was born in Porsgrunn?", "context": "CREATE TABLE table_name_27 (name VARCHAR, place_of_birth VARCHAR)"}, {"answer": "SELECT studio FROM table_name_71 WHERE rank < 3 AND director = \"adrian lyne\"", "question": "Which Studio has a Rank smaller than 3, and a Director of adrian lyne?", "context": "CREATE TABLE table_name_71 (studio VARCHAR, rank VARCHAR, director VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_24 WHERE gross = \"$54,215,416\"", "question": "Which Rank is the lowest one that has a Gross of $54,215,416?", "context": "CREATE TABLE table_name_24 (rank INTEGER, gross VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE opponent = \"john mcenroe\" AND score = \"3\u20136, 6\u20133, 2\u20136\"", "question": "What is the date of the match against John McEnroe with a Score of 3\u20136, 6\u20133, 2\u20136?", "context": "CREATE TABLE table_name_73 (date VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_76 WHERE date = 1989", "question": "What is the Opponent of the game in 1989?", "context": "CREATE TABLE table_name_76 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_58 WHERE name = \"ron whaley\"", "question": "What is the highest pick of ron whaley?", "context": "CREATE TABLE table_name_58 (pick INTEGER, name VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_23 WHERE pick < 8 AND college = \"western michigan\"", "question": "What is the overall sum of the game with a pick less than 8 from the college of western michigan?", "context": "CREATE TABLE table_name_23 (overall INTEGER, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_92 WHERE college = \"western michigan\"", "question": "What is the position of the player from the college of western michigan?", "context": "CREATE TABLE table_name_92 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_9 WHERE pick > 7 AND name = \"bob caldwell\" AND overall > 162", "question": "What is the lowest round of bob caldwell, who has a pick greater than 7 and an overall larger than 162?", "context": "CREATE TABLE table_name_9 (round INTEGER, overall VARCHAR, pick VARCHAR, name VARCHAR)"}, {"answer": "SELECT college FROM table_name_63 WHERE pick > 7 AND name = \"dave adams\"", "question": "What is the college of dave adams, who has a pick greater than 7?", "context": "CREATE TABLE table_name_63 (college VARCHAR, pick VARCHAR, name VARCHAR)"}, {"answer": "SELECT game FROM table_name_33 WHERE date = \"april 28\"", "question": "What game took place on April 28?", "context": "CREATE TABLE table_name_33 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT east FROM table_name_83 WHERE west = \"ev landsberg\"", "question": "What is the east with ev landsberg as the west?", "context": "CREATE TABLE table_name_83 (east VARCHAR, west VARCHAR)"}, {"answer": "SELECT north FROM table_name_45 WHERE south = \"sb rosenheim\"", "question": "What is the north with sb rosenheim as the south?", "context": "CREATE TABLE table_name_45 (north VARCHAR, south VARCHAR)"}, {"answer": "SELECT south FROM table_name_24 WHERE west = \"ev lindau\" AND east = \"svg burgkirchen\"", "question": "What is the south with ev lindau as the west and svg burgkirchen as the east?", "context": "CREATE TABLE table_name_24 (south VARCHAR, west VARCHAR, east VARCHAR)"}, {"answer": "SELECT season FROM table_name_68 WHERE south = \"esc holzkirchen\" AND west = \"esv buchloe\" AND north = \"ehc bayreuth\"", "question": "What season has esc holzkirchen south, esv buchloe west, and ehc bayreuth north?", "context": "CREATE TABLE table_name_68 (season VARCHAR, north VARCHAR, south VARCHAR, west VARCHAR)"}, {"answer": "SELECT south FROM table_name_92 WHERE east = \"germering wanderers\" AND season = \"2001-02\"", "question": "What is south in the 2001-02 season, which had germering wanderers east?", "context": "CREATE TABLE table_name_92 (south VARCHAR, east VARCHAR, season VARCHAR)"}, {"answer": "SELECT west FROM table_name_28 WHERE south = \"ev f\u00fcrstenfeldbruck\"", "question": "What was west when ev f\u00fcrstenfeldbruck was south?", "context": "CREATE TABLE table_name_28 (west VARCHAR, south VARCHAR)"}, {"answer": "SELECT SUM(earnings_per_share__p_) FROM table_name_89 WHERE year_ended = \"2008\" AND revenue__\u00a3million_ < 4 OFFSET 177", "question": "When revenue is smaller than 4,177 million in year 2008, what is the sum of earnings per share?", "context": "CREATE TABLE table_name_89 (earnings_per_share__p_ INTEGER, year_ended VARCHAR, revenue__\u00a3million_ VARCHAR)"}, {"answer": "SELECT earnings_per_share__p_ FROM table_name_47 WHERE year_ended = \"2007\"", "question": "What is the year 2007 earnings per share?", "context": "CREATE TABLE table_name_47 (earnings_per_share__p_ VARCHAR, year_ended VARCHAR)"}, {"answer": "SELECT SUM(net_profit__) AS \u00a3m_ FROM table_name_75 WHERE earnings_per_share__p_ = 27.4 AND profit__loss__before_tax__\u00a3m_ < 194.6", "question": "What is the total net profit when earnings per share is 27.4, and profit/loss befor tax was smaller than 194.6 million?", "context": "CREATE TABLE table_name_75 (net_profit__ INTEGER, earnings_per_share__p_ VARCHAR, profit__loss__before_tax__\u00a3m_ VARCHAR)"}, {"answer": "SELECT COUNT(profit__loss__before_tax__) AS \u00a3m_ FROM table_name_47 WHERE year_ended = \"2011\" AND net_profit__\u00a3m_ > 123.8", "question": "In year 2011 what is sum of profit/loss before tax and net profit larger than 123.8 million?", "context": "CREATE TABLE table_name_47 (profit__loss__before_tax__ VARCHAR, year_ended VARCHAR, net_profit__\u00a3m_ VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_97 WHERE goals_against < 63 AND points_1 > 65 AND lost > 10", "question": "What is the highest goals for less than 63 goals against, more than 65 points 1, and more than 10 losses?", "context": "CREATE TABLE table_name_97 (goals_for INTEGER, lost VARCHAR, goals_against VARCHAR, points_1 VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_48 WHERE played < 42", "question": "What is the highest position for less than 42 played?", "context": "CREATE TABLE table_name_48 (position INTEGER, played INTEGER)"}, {"answer": "SELECT AVG(december) FROM table_name_84 WHERE record = \"16-3-4\" AND game < 23", "question": "What is the average day in December with a Record of 16-3-4 and a Game smaller than 23?", "context": "CREATE TABLE table_name_84 (december INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(winners) FROM table_name_38 WHERE runners_up > 0", "question": "When the Runners-Up is larger than 0, what's the sum of winners?", "context": "CREATE TABLE table_name_38 (winners INTEGER, runners_up INTEGER)"}, {"answer": "SELECT MIN(runners_up) FROM table_name_44 WHERE team = \"pachuca\" AND winners > 1", "question": "When there are more than 1 winners and the team playing is pachuca, what's the lowest runners-up found?", "context": "CREATE TABLE table_name_44 (runners_up INTEGER, team VARCHAR, winners VARCHAR)"}, {"answer": "SELECT name FROM table_name_45 WHERE assists = \"lake (154) lake (5.1 apg)\"", "question": "Can you tell me the Name that has the Assists of lake (154) lake (5.1 apg)?", "context": "CREATE TABLE table_name_45 (name VARCHAR, assists VARCHAR)"}, {"answer": "SELECT name FROM table_name_86 WHERE place = 1", "question": "Can you tell me the Name that has the Place of 1?", "context": "CREATE TABLE table_name_86 (name VARCHAR, place VARCHAR)"}, {"answer": "SELECT rebounds FROM table_name_27 WHERE name = \"pom baskets jena\"", "question": "Can you tell me the Rebounds that has the Name of pom baskets jena?", "context": "CREATE TABLE table_name_27 (rebounds VARCHAR, name VARCHAR)"}, {"answer": "SELECT steals FROM table_name_13 WHERE place = 6", "question": "Can you tell me the Steals that has the Place of 6?", "context": "CREATE TABLE table_name_13 (steals VARCHAR, place VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_52 WHERE area_served = \"brisbane\" AND freq_currently = \"4rph\"", "question": "What is the Callsign in Brisbane with a Freq currently of 4rph?", "context": "CREATE TABLE table_name_52 (callsign VARCHAR, area_served VARCHAR, freq_currently VARCHAR)"}, {"answer": "SELECT freq_currently FROM table_name_7 WHERE callsign = \"4gg\"", "question": "What is the Freq currently of the 4GG Callsign?", "context": "CREATE TABLE table_name_7 (freq_currently VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT band FROM table_name_95 WHERE purpose = \"community\" AND callsign = \"4bcb\"", "question": "What is the Community Band with a 4BCB Callsign?", "context": "CREATE TABLE table_name_95 (band VARCHAR, purpose VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_59 WHERE freq_currently = \"4gld\"", "question": "What is the Purpose of the Callsign with a Freq currently of 4gld?", "context": "CREATE TABLE table_name_59 (purpose VARCHAR, freq_currently VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_43 WHERE freq_currently = \"4rph\"", "question": "What is the Purpose of the Callsign with a Freq currently of 4rph?", "context": "CREATE TABLE table_name_43 (purpose VARCHAR, freq_currently VARCHAR)"}, {"answer": "SELECT press FROM table_name_95 WHERE world_record = \"olympic record\" AND roger_fran\u00e7ois = \"jaan kikkas\"", "question": "What was the press like for the world olympic record holder Roger Francois and Jaan Kikkas?", "context": "CREATE TABLE table_name_95 (press VARCHAR, world_record VARCHAR, roger_fran\u00e7ois VARCHAR)"}, {"answer": "SELECT paris___fra__ FROM table_name_67 WHERE \"press\" = \"press\" AND roger_fran\u00e7ois = \"carlo galimberti\"", "question": "What was the press like in Paris for Roger Francois, and Carlo Galimberti?", "context": "CREATE TABLE table_name_67 (paris___fra__ VARCHAR, roger_fran\u00e7ois VARCHAR)"}, {"answer": "SELECT roger_fran\u00e7ois FROM table_name_54 WHERE world_record = \"total\"", "question": "What is the total amount of world records for Roger Francois?", "context": "CREATE TABLE table_name_54 (roger_fran\u00e7ois VARCHAR, world_record VARCHAR)"}, {"answer": "SELECT place FROM table_name_50 WHERE score = 71 - 70 - 73 - 71 = 285", "question": "What place had a score of 71-70-73-71=285?", "context": "CREATE TABLE table_name_50 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS $__ FROM table_name_51 WHERE place = \"1\" AND to_par < 1", "question": "How much money for 1st place with a to par less than 1?", "context": "CREATE TABLE table_name_51 (money___ VARCHAR, place VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_39 WHERE to_par = \"+1\"", "question": "What Player had a To par of +1?", "context": "CREATE TABLE table_name_39 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_94 WHERE to_par = \"+4\" AND score = 73 - 71 - 73 = 217", "question": "What is the Country of the Player with a To par of +4 and Score of 73-71-73=217?", "context": "CREATE TABLE table_name_94 (country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_45 WHERE to_par = \"+3\" AND score = 73 - 70 - 73 = 216", "question": "What is the Place of the Player with a To par of +3 and Score of 73-70-73=216?", "context": "CREATE TABLE table_name_45 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_86 WHERE score = 72 - 70 - 72 = 214", "question": "What is the Place of the Player with a Score of 72-70-72=214?", "context": "CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_73 WHERE kitmaker = \"saller\" AND shirt_sponsor = \"krombacher\"", "question": "Which team uses the kitmaker Saller and has Krombacher as their shirt sponsor?", "context": "CREATE TABLE table_name_73 (team VARCHAR, kitmaker VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT team AS Captain FROM table_name_91 WHERE head_coach = \"felix magath\"", "question": "For the team led by head coach Felix Magath, who is the team captain?", "context": "CREATE TABLE table_name_91 (team VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT team AS Captain FROM table_name_12 WHERE shirt_sponsor = \"krombacher\"", "question": "For the team whose shirt sponsor is Krombacher, who is the team captain?", "context": "CREATE TABLE table_name_12 (team VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT kitmaker FROM table_name_54 WHERE shirt_sponsor = \"evonik\"", "question": "For the team whose shirt sponsor is Evonik, who is the kitmaker?", "context": "CREATE TABLE table_name_54 (kitmaker VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT shirt_back_sponsor FROM table_name_69 WHERE shorts_sponsor = \"telestet\"", "question": "Who is the Shirt Back Sponsor if the Shorts Sponsor is Telestet?", "context": "CREATE TABLE table_name_69 (shirt_back_sponsor VARCHAR, shorts_sponsor VARCHAR)"}, {"answer": "SELECT res FROM table_name_34 WHERE opponent = \"ryan scheepe\"", "question": "Which of the Res., has Ryan Scheepe as an opponent?", "context": "CREATE TABLE table_name_34 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT position FROM table_name_74 WHERE player = \"jeff brown\"", "question": "What position is Jeff Brown?", "context": "CREATE TABLE table_name_74 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_33 WHERE cfl_team = \"hamilton\"", "question": "which player played on Team Hamilton?", "context": "CREATE TABLE table_name_33 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_16 WHERE player = \"jeff brown\"", "question": "What CFL team does Jeff brown play for?", "context": "CREATE TABLE table_name_16 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_30 WHERE college = \"calgary\"", "question": "What is the total number of picks for Calgary College?", "context": "CREATE TABLE table_name_30 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT home FROM table_name_38 WHERE record = \"2-3\"", "question": "Who was the home team when the record was 2-3?", "context": "CREATE TABLE table_name_38 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_75 WHERE date = \"april 10\"", "question": "What was the record on April 10?", "context": "CREATE TABLE table_name_75 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT spacecraft FROM table_name_66 WHERE end_time = \"17:28\"", "question": "What spacecraft had an EVA that ended at 17:28?", "context": "CREATE TABLE table_name_66 (spacecraft VARCHAR, end_time VARCHAR)"}, {"answer": "SELECT crew FROM table_name_33 WHERE start_date_time = \"20 february 20:09\"", "question": "What crew's EVA started on 20 February 20:09?", "context": "CREATE TABLE table_name_33 (crew VARCHAR, start_date_time VARCHAR)"}, {"answer": "SELECT duration FROM table_name_83 WHERE start_date_time = \"8 july 12:38\"", "question": "The EVA that started on 8 July 12:38 went for how long?", "context": "CREATE TABLE table_name_83 (duration VARCHAR, start_date_time VARCHAR)"}, {"answer": "SELECT spacecraft FROM table_name_96 WHERE start_date_time = \"8 july 12:38\"", "question": "The EVA that started 8 July 12:38 was from what spacecraft?", "context": "CREATE TABLE table_name_96 (spacecraft VARCHAR, start_date_time VARCHAR)"}, {"answer": "SELECT assists FROM table_name_90 WHERE competition = \"k-league\" AND total_gs > 20 AND team = \"pohang steelers\" AND opponent = \"chunnam dragons\"", "question": "How many assists were in the k-league competition, which has more than 20 total Gs, the pohang steelers team, and chunnam dragons as the opponent?", "context": "CREATE TABLE table_name_90 (assists VARCHAR, opponent VARCHAR, team VARCHAR, competition VARCHAR, total_gs VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_65 WHERE competition = \"k-league\" AND team = \"pohang steelers\" AND name = \"park sung-ho\" AND total_gs < 46", "question": "What is the average number of goals of park sung-ho at the k-league competition, which has the pohang steelers team and less than 46 total Gs?", "context": "CREATE TABLE table_name_65 (goals INTEGER, total_gs VARCHAR, name VARCHAR, competition VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE venue = \"jeonju\" AND goals < 28 AND competition = \"k-league cup\"", "question": "What is the date of the k-league cup, which has less than 28 goals, at the jeonju venue?", "context": "CREATE TABLE table_name_93 (date VARCHAR, competition VARCHAR, venue VARCHAR, goals VARCHAR)"}, {"answer": "SELECT SUM(total_as) FROM table_name_81 WHERE team = \"bucheon sk\" AND opponent = \"chunnam dragons\" AND venue = \"bucheon\"", "question": "What is the sum of the total As of team bucheon sk, who had the chunnam dragons as their opponent at the bucheon venue?", "context": "CREATE TABLE table_name_81 (total_as INTEGER, venue VARCHAR, team VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(assists) FROM table_name_6 WHERE venue = \"ulsan\" AND competition = \"k-league\" AND name = \"kang jae-soon\"", "question": "What is the sum of the assists kang jae-soon had in the k-league competition in ulsan?", "context": "CREATE TABLE table_name_6 (assists INTEGER, name VARCHAR, venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_16 WHERE date = \"2007-06-16\"", "question": "What is the sum of the goals on 2007-06-16?", "context": "CREATE TABLE table_name_16 (goals INTEGER, date VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_76 WHERE player = \"bill glasson\"", "question": "What was Bill Glasson's score to par after 2 rounds?", "context": "CREATE TABLE table_name_76 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_20 WHERE player = \"phil mickelson\"", "question": "What was Phil Mickelson's score to par?", "context": "CREATE TABLE table_name_20 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_49 WHERE player = \"bill glasson\"", "question": "What place was Bill Glasson in?", "context": "CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_36 WHERE overall = 85 AND round < 3", "question": "What is the average pick with 85 overall in a round lower than 3?", "context": "CREATE TABLE table_name_36 (pick INTEGER, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_71 WHERE 2010 = \"q1\" AND 2011 = \"a\"", "question": "What was the 2009 results that has q1 for 2010, and A as the result for 2011?", "context": "CREATE TABLE table_name_71 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_52 WHERE 2010 = \"0\"", "question": "What were the 2009 results that has 0 in 2010?", "context": "CREATE TABLE table_name_52 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_83 WHERE 2011 = \"0\"", "question": "With a 2011 of 0 what was the 2006 result?", "context": "CREATE TABLE table_name_83 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_32 WHERE 2005 = \"a\" AND 2009 = \"q1\"", "question": "What is the result for 2004 when A is the result for 2005, and the result of q1 when 2009?", "context": "CREATE TABLE table_name_32 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_23 WHERE 2008 = \"153\"", "question": "With a 2008 result of 153 what is the result for 2007?", "context": "CREATE TABLE table_name_23 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_36 WHERE 2009 = \"0\" AND tournament = \"atp tournaments won\"", "question": "What are the results in 2008 when 2009 is 0, and the ATP Tournaments Won is the tournament?", "context": "CREATE TABLE table_name_36 (tournament VARCHAR)"}, {"answer": "SELECT team FROM table_name_40 WHERE year = 1951", "question": "Which team was in 1951?", "context": "CREATE TABLE table_name_40 (team VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE opponent_in_the_final = \"arnaud di pasquale\"", "question": "What is the date of the match with arnaud di pasquale as the opponent in the final?", "context": "CREATE TABLE table_name_69 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE outcome = \"winner\" AND opponent_in_the_final = \"jim courier\"", "question": "What is the date of the match with a winner outcome and jim courier as the opponent in the final?", "context": "CREATE TABLE table_name_27 (date VARCHAR, outcome VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_61 WHERE championship = \"palermo, italy\"", "question": "What is the surface of the palermo, italy championship?", "context": "CREATE TABLE table_name_61 (surface VARCHAR, championship VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_92 WHERE position = \"ol\" AND player = \"richard zulys\"", "question": "In what Round was OL Player Richard Zulys picked?", "context": "CREATE TABLE table_name_92 (round INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_30 WHERE school_club_team = \"mcgill\"", "question": "What is the Player from McGill?", "context": "CREATE TABLE table_name_30 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT college FROM table_name_53 WHERE overall = 171", "question": "Which College had an Overall pick of 171?", "context": "CREATE TABLE table_name_53 (college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT name FROM table_name_36 WHERE overall = 72", "question": "Who had the overall pick of 72?", "context": "CREATE TABLE table_name_36 (name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT primary_conference FROM table_name_39 WHERE team_nickname = \"phoenix\"", "question": "What primary conference does the team nicknamed Phoenix belongs to?", "context": "CREATE TABLE table_name_39 (primary_conference VARCHAR, team_nickname VARCHAR)"}, {"answer": "SELECT location FROM table_name_36 WHERE home_rink = \"triangle sports plex/greensboro ice house\"", "question": "Where is the location for the home rink Triangle sports plex/Greensboro ice house?", "context": "CREATE TABLE table_name_36 (location VARCHAR, home_rink VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_60 WHERE former_wnba_team = \"minnesota lynx\"", "question": "What pick was a player that previously played for the Minnesota Lynx?", "context": "CREATE TABLE table_name_60 (pick INTEGER, former_wnba_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE pick > 23", "question": "Which player was picked after 23?", "context": "CREATE TABLE table_name_89 (player VARCHAR, pick INTEGER)"}, {"answer": "SELECT nationality FROM table_name_74 WHERE college_country_team = \"mississippi\"", "question": "What is the nationality of the player who went to college at Mississippi?", "context": "CREATE TABLE table_name_74 (nationality VARCHAR, college_country_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_62 WHERE new_wnba_team = \"miami sol\" AND college_country_team = \"north carolina state\"", "question": "Who is the player who played for the Miami Sol and went to school at North Carolina State?", "context": "CREATE TABLE table_name_62 (player VARCHAR, new_wnba_team VARCHAR, college_country_team VARCHAR)"}, {"answer": "SELECT AVG(ast_avg) FROM table_name_74 WHERE games > 101 AND rank = 5 AND total_assists < 331", "question": "WHAT IS THE AVG AST FOR GAMES LARGER THAN 101, RANK 5, TOTAL ASSISTS SMALLER THAN 331?", "context": "CREATE TABLE table_name_74 (ast_avg INTEGER, total_assists VARCHAR, games VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(ast_avg) FROM table_name_20 WHERE rank = 5 AND games > 108", "question": "WHAT IS THE SUM OF AST AVG WITH RANK 5 AND GAMES BIGGER THAN 108?", "context": "CREATE TABLE table_name_20 (ast_avg INTEGER, rank VARCHAR, games VARCHAR)"}, {"answer": "SELECT round FROM table_name_55 WHERE name = \"john goodyear\"", "question": "Which Round has a Name of john goodyear?", "context": "CREATE TABLE table_name_55 (round VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_64 WHERE college = \"appalachian state\" AND overall < 156", "question": "Which Round has a College of appalachian state, and an Overall smaller than 156?", "context": "CREATE TABLE table_name_64 (round VARCHAR, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_46 WHERE round > 17 AND name = \"gene stewart\"", "question": "Which Pick has a Round larger than 17, and a Name of gene stewart?", "context": "CREATE TABLE table_name_46 (pick VARCHAR, round VARCHAR, name VARCHAR)"}, {"answer": "SELECT res FROM table_name_96 WHERE opponent = \"rory markham\"", "question": "What was the result when the opponent was Rory Markham?", "context": "CREATE TABLE table_name_96 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT branding FROM table_name_27 WHERE frequency = \"1080khz\"", "question": "Which Branding has a frequency of 1080khz?", "context": "CREATE TABLE table_name_27 (branding VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_23 WHERE location = \"dagupan\"", "question": "Which frequency is located in Dagupan?", "context": "CREATE TABLE table_name_23 (frequency VARCHAR, location VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_33 WHERE branding = \"dzec radyo agila 1062\"", "question": "What frequency does branding dzec radyo agila 1062 have?", "context": "CREATE TABLE table_name_33 (frequency VARCHAR, branding VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_5 WHERE power__kw_ = \"40kw\"", "question": "Which frequency has 40kw power?", "context": "CREATE TABLE table_name_5 (frequency VARCHAR, power__kw_ VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_35 WHERE location = \"davao\"", "question": "Which frequency is located in Davao?", "context": "CREATE TABLE table_name_35 (frequency VARCHAR, location VARCHAR)"}, {"answer": "SELECT peak_population__year_ FROM table_name_34 WHERE city = \"scranton\"", "question": "what is the peak population (year) for scranton?", "context": "CREATE TABLE table_name_34 (peak_population__year_ VARCHAR, city VARCHAR)"}, {"answer": "SELECT numeric_decline_from_peak_population FROM table_name_99 WHERE percent_decline_from_peak_population = \"-16.76%\"", "question": "what is the numeric decline from peak population when the perfect decline from peak population is -16.76%", "context": "CREATE TABLE table_name_99 (numeric_decline_from_peak_population VARCHAR, percent_decline_from_peak_population VARCHAR)"}, {"answer": "SELECT state FROM table_name_33 WHERE peak_population__year_ = \"134995 (1950)\"", "question": "what is the state when the peak population (year) is 134995 (1950)?", "context": "CREATE TABLE table_name_33 (state VARCHAR, peak_population__year_ VARCHAR)"}, {"answer": "SELECT percent_decline_from_peak_population FROM table_name_98 WHERE peak_population__year_ = \"178320 (1960)\"", "question": "what is the percent decline from peak population when the peak population (year) is 178320 (1960)?", "context": "CREATE TABLE table_name_98 (percent_decline_from_peak_population VARCHAR, peak_population__year_ VARCHAR)"}, {"answer": "SELECT rank FROM table_name_7 WHERE studio = \"universal\" AND director = \"john hughes\"", "question": "WHAT IS THE RANK OF UNIVERSAL, AND DIRECTOR JOHN HUGHES?", "context": "CREATE TABLE table_name_7 (rank VARCHAR, studio VARCHAR, director VARCHAR)"}, {"answer": "SELECT title FROM table_name_98 WHERE rank > 10 AND director = \"walter hill\"", "question": "WHAT IS THE TITLE THAT HAS A RANK BIGGER THAN 10, FOR DIRECTOR WALTER HILL?", "context": "CREATE TABLE table_name_98 (title VARCHAR, rank VARCHAR, director VARCHAR)"}, {"answer": "SELECT studio FROM table_name_41 WHERE title = \"mask\"", "question": "WHAT IS THE STUDIO WITH THE TITLE MASK?", "context": "CREATE TABLE table_name_41 (studio VARCHAR, title VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_59 WHERE gross = \"$96,773,200\"", "question": "WHAT IS THE RANK WITH A GROSS OF $96,773,200?", "context": "CREATE TABLE table_name_59 (rank VARCHAR, gross VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_44 WHERE lost < 12 AND goal_difference = \"+20\"", "question": "How many times was the player drawn that had less than 12 losses and a goal difference of +20?", "context": "CREATE TABLE table_name_44 (drawn VARCHAR, lost VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_36 WHERE drawn = 10 AND lost < 25 AND goal_difference = \"+20\" AND played < 42", "question": "What is the sum of the positions for the player who had less than 25 losses, a goal difference of +20, 10 draws, and played less than 42?", "context": "CREATE TABLE table_name_36 (position INTEGER, played VARCHAR, goal_difference VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_89 WHERE lost < 13 AND goal_difference = \"+46\"", "question": "What is the highest number played when there were less than 13 losses and a goal difference of +46?", "context": "CREATE TABLE table_name_89 (played INTEGER, lost VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT points_1 FROM table_name_75 WHERE position > 4 AND goals_for = 54 AND lost > 11", "question": "What is listed under points 1 when the position was greater than 4, there were 54 goals for and more than 11 losses?", "context": "CREATE TABLE table_name_75 (points_1 VARCHAR, lost VARCHAR, position VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT worship_leader FROM table_name_33 WHERE lead_supporting_vocal = \"marcus temu\"", "question": "Who was the worship leader that had a lead supporting vocal Marcus Temu?", "context": "CREATE TABLE table_name_33 (worship_leader VARCHAR, lead_supporting_vocal VARCHAR)"}, {"answer": "SELECT lead_supporting_vocal FROM table_name_32 WHERE time = \"4:54\"", "question": "Who was the lead supporting vocalist on the song that was 4:54 long?", "context": "CREATE TABLE table_name_32 (lead_supporting_vocal VARCHAR, time VARCHAR)"}, {"answer": "SELECT worship_leader FROM table_name_17 WHERE time = \"7:05\"", "question": "Who was the Worship Leader for the song that was 7:05 long?", "context": "CREATE TABLE table_name_17 (worship_leader VARCHAR, time VARCHAR)"}, {"answer": "SELECT song FROM table_name_12 WHERE lead_supporting_vocal = \"marcus temu\"", "question": "What is the song name that featured Marcus Temu as the lead supporting vocalist?", "context": "CREATE TABLE table_name_12 (song VARCHAR, lead_supporting_vocal VARCHAR)"}, {"answer": "SELECT MIN(diameter) FROM table_name_71 WHERE longitude = \"71.1w\"", "question": "What's the lowest diameter when the longitude is 71.1w?", "context": "CREATE TABLE table_name_71 (diameter INTEGER, longitude VARCHAR)"}, {"answer": "SELECT MIN(diameter) FROM table_name_7 WHERE name = \"dardanus sulcus\"", "question": "What is dardanus sulcus' lowest diameter?", "context": "CREATE TABLE table_name_7 (diameter INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(year_named) FROM table_name_68 WHERE name = \"ur sulcus\" AND diameter < 1 OFFSET 145.0", "question": "How many years is ur sulcus listed with a diameter less than 1,145.0?", "context": "CREATE TABLE table_name_68 (year_named VARCHAR, name VARCHAR, diameter VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE attendance = 3188", "question": "When the attendance was 3188 what was the score?", "context": "CREATE TABLE table_name_78 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_69 WHERE date = \"16 august 2008\" AND home = \"deportes savio\"", "question": "What is the maximum number of people in attendance on 16 August 2008 when the home team was Deportes Savio?", "context": "CREATE TABLE table_name_69 (attendance INTEGER, date VARCHAR, home VARCHAR)"}, {"answer": "SELECT away FROM table_name_49 WHERE home = \"deportes savio\"", "question": "What team was the away team when the Deportes Savio was the home team?", "context": "CREATE TABLE table_name_49 (away VARCHAR, home VARCHAR)"}, {"answer": "SELECT away FROM table_name_93 WHERE score = \"3:1\"", "question": "What was the away team when the score was 3:1?", "context": "CREATE TABLE table_name_93 (away VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_29 WHERE date = \"16 august 2008\" AND away = \"platense\"", "question": "When Platense was the away team on 16 August 2008 how many people attended the game?", "context": "CREATE TABLE table_name_29 (attendance VARCHAR, date VARCHAR, away VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE attendance = 2441", "question": "What was the score when 2441 people were in attendance?", "context": "CREATE TABLE table_name_17 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT driver FROM table_name_77 WHERE points = \"35+3\"", "question": "Which driver had 35+3 points?", "context": "CREATE TABLE table_name_77 (driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_78 WHERE points = \"14\"", "question": "What was the time/retired for the driver with 14 points?", "context": "CREATE TABLE table_name_78 (time_retired VARCHAR, points VARCHAR)"}, {"answer": "SELECT total FROM table_name_79 WHERE league_cup_goals = \"4\" AND fa_cup_goals = \"0\"", "question": "What is the sum of goals when the league cup goals are 4 and the FA cup goals are 0?", "context": "CREATE TABLE table_name_79 (total VARCHAR, league_cup_goals VARCHAR, fa_cup_goals VARCHAR)"}, {"answer": "SELECT fa_cup_goals FROM table_name_78 WHERE total > 16 AND league_cup_goals = \"1\" AND club = \"norwich city\"", "question": "What is the amount of FA cups goals that were made when the total goals is greater than 16, and the league cup goals is 1 for the Norwich City club?", "context": "CREATE TABLE table_name_78 (fa_cup_goals VARCHAR, club VARCHAR, total VARCHAR, league_cup_goals VARCHAR)"}, {"answer": "SELECT league_goals FROM table_name_66 WHERE league_cup_goals = \"0\" AND scorer = \"bill dearden\"", "question": "What is the number of league goals when Bill Dearden was the scorer and there was 0 league cup goals?", "context": "CREATE TABLE table_name_66 (league_goals VARCHAR, league_cup_goals VARCHAR, scorer VARCHAR)"}, {"answer": "SELECT name FROM table_name_15 WHERE transfer_window = \"summer\" AND transfer_fee = \"undisclosed\" AND moving_from = \"brussels\"", "question": "What is the name of the player with a transfer window in summer, an undisclosed transfer fee, and is moving from brussels?", "context": "CREATE TABLE table_name_15 (name VARCHAR, moving_from VARCHAR, transfer_window VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT type FROM table_name_79 WHERE transfer_window = \"summer\" AND name = \"bulykin\"", "question": "What is the type of bulykin, which has a summer transfer window?", "context": "CREATE TABLE table_name_79 (type VARCHAR, transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_70 WHERE name = \"cordier\"", "question": "What is the country of cordier?", "context": "CREATE TABLE table_name_70 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_69 WHERE transfer_window = \"summer\" AND moving_from = \"belgrano\"", "question": "What is the country of the player moving from belgrano with a summer transfer window?", "context": "CREATE TABLE table_name_69 (country VARCHAR, transfer_window VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_40 WHERE moving_from = \"barueri\"", "question": "What is the transfer window of the player moving from barueri?", "context": "CREATE TABLE table_name_40 (transfer_window VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT type FROM table_name_11 WHERE moving_from = \"belgrano\"", "question": "What is the type of the player moving from belgrano?", "context": "CREATE TABLE table_name_11 (type VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_94 WHERE pick = 22 AND overall < 229", "question": "Average round for 22 pick that is overall smaller than 229?", "context": "CREATE TABLE table_name_94 (round INTEGER, pick VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(2002) FROM table_name_88 WHERE country = \"peru\" AND 2007 > 1 OFFSET 200", "question": "What is the normal 2002 that has a Country of Peru, and 2007 bigger than 1,200?", "context": "CREATE TABLE table_name_88 (country VARCHAR)"}, {"answer": "SELECT MIN(2009) FROM table_name_81 WHERE 2005 < 640 AND 2011 = 425 AND 2003 < 500", "question": "What is the least 2009 that has 2005 littler than 640, and 2011 of 425, and 2003 littler than 500?", "context": "CREATE TABLE table_name_81 (Id VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_37 WHERE silver < 0", "question": "How many Bronze medals did the Nation with 0 Silver receive?", "context": "CREATE TABLE table_name_37 (bronze INTEGER, silver INTEGER)"}, {"answer": "SELECT MIN(gold) FROM table_name_88 WHERE total < 8 AND bronze < 1 AND silver < 1", "question": "How many Gold medals did the Nation with less than 8 Total medals including 1 Bronze and 0 Silver receive?", "context": "CREATE TABLE table_name_88 (gold INTEGER, silver VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_47 WHERE bronze < 0", "question": "How many Total medals did the Nation the got 0 Bronze medals receive?", "context": "CREATE TABLE table_name_47 (total INTEGER, bronze INTEGER)"}, {"answer": "SELECT nation FROM table_name_46 WHERE silver < 3 AND total > 1 AND gold < \"4\" AND rank = \"4\"", "question": "What Nation had a more than 1 Total medal including less than 3 Silver, less than 4 Gold and a Rank of 4?", "context": "CREATE TABLE table_name_46 (nation VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_21 WHERE gold < 1 AND rank = \"8\" AND total > 1", "question": "How many Silver medals did the Nation ranking 8 with more than 1 Total medal but less than 1 Gold receive?", "context": "CREATE TABLE table_name_21 (silver INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT start FROM table_name_16 WHERE main_host = \"luke jacobz\" AND winning_mentor = \"dannii minogue\"", "question": "What is the start date with Luke Jacobz hosting and Dannii Minogue as a winning mentor?", "context": "CREATE TABLE table_name_16 (start VARCHAR, main_host VARCHAR, winning_mentor VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_59 WHERE winning_mentor = \"guy sebastian\" AND runner_up = \"andrew wishart\"", "question": "Who was in third place when Guy Sebastian was the winning mentor and Andrew Wishart was the runner-up?", "context": "CREATE TABLE table_name_59 (third_place VARCHAR, winning_mentor VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT SUM(election) FROM table_name_64 WHERE mayor = \"adalberto mosaner\" AND inhabitants < 16 OFFSET 170", "question": "In what Election year was Adalberto Mosaner the Mayor with less than 16,170 Inhabitants?", "context": "CREATE TABLE table_name_64 (election INTEGER, mayor VARCHAR, inhabitants VARCHAR)"}, {"answer": "SELECT COUNT(election) FROM table_name_14 WHERE inhabitants < 16 OFFSET 170", "question": "In what Election year were there less than 16,170 Inhabitants?", "context": "CREATE TABLE table_name_14 (election VARCHAR, inhabitants INTEGER)"}, {"answer": "SELECT mayor FROM table_name_37 WHERE election = 2010 AND municipality = \"riva del garda\"", "question": "What is the Mayor of Riva del Garda in 2010?", "context": "CREATE TABLE table_name_37 (mayor VARCHAR, election VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT AVG(inhabitants) FROM table_name_7 WHERE party = \"union for trentino\" AND election > 2009", "question": "How many Inhabitants were there after 2009 in the Municipality with a Party of union for trentino?", "context": "CREATE TABLE table_name_7 (inhabitants INTEGER, party VARCHAR, election VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_name_19 WHERE founded = \"1992\" AND joined_conference < 1998", "question": "What is the lowest enrolled school that was founded in 1992 and joined a conference before 1998?", "context": "CREATE TABLE table_name_19 (enrollment INTEGER, founded VARCHAR, joined_conference VARCHAR)"}, {"answer": "SELECT football FROM table_name_2 WHERE soccer = \"wooster\" AND golf = \"ashland\"", "question": "Which foot ball team played soccer at wooster, and Gold in Ashland?", "context": "CREATE TABLE table_name_2 (football VARCHAR, soccer VARCHAR, golf VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_98 WHERE bronze < 2 AND rank < 4 AND silver < 1", "question": "What is the total for the team with fewer than 2 bronze, ranked less than 4 and fewer than 1 silver?", "context": "CREATE TABLE table_name_98 (total VARCHAR, silver VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_53 WHERE bronze > 2 AND gold > 7", "question": "How many silver for the team with more than 2 bronze and more than 7 gold?", "context": "CREATE TABLE table_name_53 (silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_41 WHERE bronze = 0 AND silver = 3", "question": "What is the total for the team with 0 bronze and 3 silver?", "context": "CREATE TABLE table_name_41 (total INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_5 WHERE location = \"nevada, united states\" AND time = \"1:55\"", "question": "What is the total number of Rounds held in Nevada, United States in which the time was 1:55?", "context": "CREATE TABLE table_name_5 (round VARCHAR, location VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_5 WHERE opponent = \"rudy martin\"", "question": "What was the time when his opponent was Rudy Martin?", "context": "CREATE TABLE table_name_5 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_31 WHERE time = \"1:52\"", "question": "What was the method when the fight's time was 1:52?", "context": "CREATE TABLE table_name_31 (method VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(overs) FROM table_name_29 WHERE team = \"chennai super kings\" AND best_bowling = \"2/17\" AND economy_rate < 5.92", "question": "What is the lowest overs of the Chennai Super Kings when the Economy Rate is less than 5.92 with a Best Bowling number of 2/17?", "context": "CREATE TABLE table_name_29 (overs INTEGER, economy_rate VARCHAR, team VARCHAR, best_bowling VARCHAR)"}, {"answer": "SELECT MIN(overs) FROM table_name_50 WHERE team = \"royal challengers bangalore\"", "question": "What is the lowest number of Overs for the Royal Challengers Bangalore?", "context": "CREATE TABLE table_name_50 (overs INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(strike_rate) FROM table_name_15 WHERE matches < 13 AND average < 50.25", "question": "What is the highest Strike Rate when the average is less than 50.25 with less than 13 matches played?", "context": "CREATE TABLE table_name_15 (strike_rate INTEGER, matches VARCHAR, average VARCHAR)"}, {"answer": "SELECT venue FROM table_name_12 WHERE position = \"4th\"", "question": "What is the venue of the race where Lineth Chepkurui placed 4th?", "context": "CREATE TABLE table_name_12 (venue VARCHAR, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_13 WHERE notes = \"team\" AND year < 2010", "question": "What is the venue of the team race that was before 2010?", "context": "CREATE TABLE table_name_13 (venue VARCHAR, notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_23 WHERE year > 2008 AND notes = \"team\"", "question": "What is the venue of the team race that was after 2008?", "context": "CREATE TABLE table_name_23 (venue VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT competition FROM table_name_27 WHERE position = \"5th\"", "question": "What competition did Lineth Chepkurui place 5th?", "context": "CREATE TABLE table_name_27 (competition VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(total_votes) FROM table_name_7 WHERE outcome = \"elected\" AND candidate = \"lee teng-hui\"", "question": "How many votes did Lee Teng-Hui receive when he was elected?", "context": "CREATE TABLE table_name_7 (total_votes INTEGER, outcome VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE match < 13 AND home_away = \"home\" AND date = \"april 21, 2008\"", "question": "What was the score for a match before 13, and a home game on April 21, 2008?", "context": "CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR, match VARCHAR, home_away VARCHAR)"}, {"answer": "SELECT home_away FROM table_name_19 WHERE date = \"february 29, 2008\"", "question": "What home/away game is on February 29, 2008?", "context": "CREATE TABLE table_name_19 (home_away VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_88 WHERE away_team = \"manchester city\"", "question": "What team was the home team when Manchester City was the away team?", "context": "CREATE TABLE table_name_88 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_39 WHERE equipment = \"zabel-bsu\" AND position = 42", "question": "What is the sum of Points, when Equipment was \"Zabel-BSU\", and when Position was 42?", "context": "CREATE TABLE table_name_39 (points INTEGER, equipment VARCHAR, position VARCHAR)"}, {"answer": "SELECT equipment FROM table_name_79 WHERE points < 6 AND position = 53", "question": "What is Equipment, when Points is less than 6, and when Position is 53?", "context": "CREATE TABLE table_name_79 (equipment VARCHAR, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT second FROM table_name_51 WHERE position > 33 AND points > 12 AND equipment = \"zabel-vmc\"", "question": "What is Second, when Position is greater than 33, when Points is greater than 12, and when Equipment is Zabel-VMC?", "context": "CREATE TABLE table_name_51 (second VARCHAR, equipment VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT equipment FROM table_name_51 WHERE position > 28 AND points > 10", "question": "What is Equipment, when Position is greater than 28, and when Points is greater than 10?", "context": "CREATE TABLE table_name_51 (equipment VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_84 WHERE away_team = \"hawthorn\"", "question": "When Hawthorn is the away team, what is their score?", "context": "CREATE TABLE table_name_84 (away_team VARCHAR)"}, {"answer": "SELECT ground FROM table_name_79 WHERE crowd > 41 OFFSET 185", "question": "Which ground has a crowd over 41,185?", "context": "CREATE TABLE table_name_79 (ground VARCHAR, crowd INTEGER)"}, {"answer": "SELECT place FROM table_name_25 WHERE score = 67 - 68 - 78 - 77 = 290", "question": "What place has a 67-68-78-77=290 score?", "context": "CREATE TABLE table_name_25 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_30 WHERE country = \"united states\" AND place = \"t3\" AND score = 74 - 73 - 72 - 69 = 288", "question": "What is the highest to par of the player from the United States with a t3 place and a 74-73-72-69=288 place?", "context": "CREATE TABLE table_name_30 (to_par INTEGER, country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_7 WHERE money___$__ = \"7,500\" AND player = \"peter oosterhuis\"", "question": "What is the place of player peter oosterhuis, who has $7,500?", "context": "CREATE TABLE table_name_7 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_23 WHERE score = 72 - 70 - 75 - 72 = 289", "question": "What country has a 72-70-75-72=289 score?", "context": "CREATE TABLE table_name_23 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_20 WHERE country = \"united states\" AND to_par = 4 AND score = 74 - 73 - 72 - 69 = 288", "question": "Who is the player from the United States with a 4 to par and a 74-73-72-69=288 score?", "context": "CREATE TABLE table_name_20 (player VARCHAR, country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_75 WHERE to_par < 4 AND score = 74 - 72 - 68 - 73 = 287", "question": "How much money does the player with a to par less than 4 and a score of 74-72-68-73=287 have?", "context": "CREATE TABLE table_name_75 (money___$__ VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_64 WHERE high_points = \"tayshaun prince (23)\"", "question": "What is High Assists, when High Points is \"Tayshaun Prince (23)\"?", "context": "CREATE TABLE table_name_64 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE team = \"orlando\"", "question": "What is Date, when Team is \"Orlando\"?", "context": "CREATE TABLE table_name_72 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_95 WHERE pos = \"1st\" AND year = 2011", "question": "Which team has finished in 1st place in 2011?", "context": "CREATE TABLE table_name_95 (team VARCHAR, pos VARCHAR, year VARCHAR)"}, {"answer": "SELECT episode FROM table_name_19 WHERE year = 2009 AND show = \"dexter\"", "question": "What is the Episode number of Ernest Dickerson in 2009 when the show was dexter?", "context": "CREATE TABLE table_name_19 (episode VARCHAR, year VARCHAR, show VARCHAR)"}, {"answer": "SELECT result FROM table_name_39 WHERE date = \"29 september 2007\"", "question": "What is the result on 29 September 2007?", "context": "CREATE TABLE table_name_39 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_66 WHERE date = \"29 september 2007\"", "question": "Which competition was on 29 September 2007?", "context": "CREATE TABLE table_name_66 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_35 WHERE points = 80", "question": "Where was the game where the senators scored 80 points?", "context": "CREATE TABLE table_name_35 (location VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_1 WHERE opponent = \"boston bruins\" AND game = 77", "question": "What is the highest number of points against the boston bruins on game 77?", "context": "CREATE TABLE table_name_1 (points INTEGER, opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_72 WHERE time_retired = \"retirement\" AND laps > 17", "question": "WHAT IS THE LOWEST GRID FOR RETIREMENT, AND LAPS LARGER THAN 17?", "context": "CREATE TABLE table_name_72 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_72 WHERE time_retired = \"accident\" AND manufacturer = \"honda\"", "question": "WHAT IS THE GRID WITH AN ACCIDENT AND HONDA MANUFACTURER?", "context": "CREATE TABLE table_name_72 (grid INTEGER, time_retired VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT death_date FROM table_name_61 WHERE rank < 14 AND age__as_of_1_february_2014_ = \"103 years, 148 days\"", "question": "What was the date of death for a rank below 14 and age of 103 years, 148 days?", "context": "CREATE TABLE table_name_61 (death_date VARCHAR, rank VARCHAR, age__as_of_1_february_2014_ VARCHAR)"}, {"answer": "SELECT age__as_of_1_february_2014_ FROM table_name_15 WHERE name = \"fred gibson\"", "question": "What is the age of Fred Gibson?", "context": "CREATE TABLE table_name_15 (age__as_of_1_february_2014_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_72 WHERE rank = 9", "question": "Who is at rank 9?", "context": "CREATE TABLE table_name_72 (name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT finish FROM table_name_25 WHERE player = \"hale irwin\"", "question": "What is the finish of player Hale Irwin?", "context": "CREATE TABLE table_name_25 (finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT finish FROM table_name_63 WHERE country = \"south africa\"", "question": "What is the finish of South Africa?", "context": "CREATE TABLE table_name_63 (finish VARCHAR, country VARCHAR)"}, {"answer": "SELECT ergative FROM table_name_56 WHERE nominative = \"chven-i\"", "question": "With a nominative of chven-i what is the ergative?", "context": "CREATE TABLE table_name_56 (ergative VARCHAR, nominative VARCHAR)"}, {"answer": "SELECT instrumental FROM table_name_42 WHERE genitive = \"tkven-i\"", "question": "What instrumental has tkven-i as the genitive?", "context": "CREATE TABLE table_name_42 (instrumental VARCHAR, genitive VARCHAR)"}, {"answer": "SELECT nominative FROM table_name_91 WHERE dative = \"mis\"", "question": "What nominative has mis as the dative?", "context": "CREATE TABLE table_name_91 (nominative VARCHAR, dative VARCHAR)"}, {"answer": "SELECT ergative FROM table_name_85 WHERE dative = \"chem-s\"", "question": "With chem-s as the dative, what is the ergative?", "context": "CREATE TABLE table_name_85 (ergative VARCHAR, dative VARCHAR)"}, {"answer": "SELECT instrumental FROM table_name_87 WHERE adverbial = \"chven-s\"", "question": "What instrumental has chven-s as the adverbial?", "context": "CREATE TABLE table_name_87 (instrumental VARCHAR, adverbial VARCHAR)"}, {"answer": "SELECT ergative FROM table_name_48 WHERE nominative = \"mis-i\"", "question": "Mis-i is the nominative of what ergative?", "context": "CREATE TABLE table_name_48 (ergative VARCHAR, nominative VARCHAR)"}, {"answer": "SELECT week FROM table_name_88 WHERE surface = \"hard\" AND tournament = \"indian wells\"", "question": "what was the week for the match on a hard surface at Indian Wells tournament?", "context": "CREATE TABLE table_name_88 (week VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT week FROM table_name_57 WHERE tournament = \"cincinnati\"", "question": "What week was the tournament at Cincinnati?", "context": "CREATE TABLE table_name_57 (week VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_75 WHERE surface = \"hard\" AND finalist = \"jan-michael gambill (19)\"", "question": "Where was the tournament where the match was on a hard surface and jan-michael gambill (19) was the finalist?", "context": "CREATE TABLE table_name_75 (tournament VARCHAR, surface VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_21 WHERE tournament = \"miami\"", "question": "Who was the semifinalist at the tournament in miami?", "context": "CREATE TABLE table_name_21 (semifinalists VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winner FROM table_name_11 WHERE tournament = \"hamburg\"", "question": "Who was the winner at the tournament in Hamburg?", "context": "CREATE TABLE table_name_11 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT venue FROM table_name_43 WHERE year = \"21 june 1987\"", "question": "what is the venue on 21 june 1987?", "context": "CREATE TABLE table_name_43 (venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_65 WHERE winner = \"panathinaikos\" AND runner_up = \"olympiacos\" AND venue = \"nikos goumas stadium\"", "question": "When is the winner panathinaikos, the runner-up olympiacos and the venue nikos goumas stadium?", "context": "CREATE TABLE table_name_65 (year VARCHAR, venue VARCHAR, winner VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT year FROM table_name_12 WHERE winner = \"olympiacos\" AND venue = \"georgios karaiskakis stadium\" AND runner_up = \"iraklis\"", "question": "When is the winner olympiacos, the venue is georgios karaiskakis stadium and the runner-up is iraklis?", "context": "CREATE TABLE table_name_12 (year VARCHAR, runner_up VARCHAR, winner VARCHAR, venue VARCHAR)"}, {"answer": "SELECT year FROM table_name_44 WHERE venue = \"nikos goumas stadium\" AND score = \"2\u20132 4\u20134 a.e.t. 6\u20135 pso\"", "question": "when is the venue nikos goumas stadium and the score is 2\u20132 4\u20134 a.e.t. 6\u20135 pso?", "context": "CREATE TABLE table_name_44 (year VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE venue = \"athens olympic stadium\" AND year = \"30 april 2011\"", "question": "what is the score when the venue is athens olympic stadium on 30 april 2011?", "context": "CREATE TABLE table_name_78 (score VARCHAR, venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT season FROM table_name_79 WHERE skip = \"eve muirhead\" AND third = \"jackie lockhart (e/o) kelly wood (w)\"", "question": "Which Season has a Skip of Eve Muirhead with a thirs of Jackie Lockhart (e/o) Kelly Wood (w)?", "context": "CREATE TABLE table_name_79 (season VARCHAR, skip VARCHAR, third VARCHAR)"}, {"answer": "SELECT season FROM table_name_42 WHERE skip = \"eve muirhead\" AND third = \"kerry barr\"", "question": "What is the season with a Skip of Eve Muirhead and a third of Kerry Barr?", "context": "CREATE TABLE table_name_42 (season VARCHAR, skip VARCHAR, third VARCHAR)"}, {"answer": "SELECT second FROM table_name_78 WHERE lead = \"sarah macintyre (jr) anne laird (w)\"", "question": "Who is the second with a lead of Sarah Macintyre (jr) Anne Laird (w)?", "context": "CREATE TABLE table_name_78 (second VARCHAR, lead VARCHAR)"}, {"answer": "SELECT skip FROM table_name_55 WHERE third = \"anna sloan\" AND season = \"2012-13\"", "question": "What is the skip that has a third of Anna Sloan in season 2012-13?", "context": "CREATE TABLE table_name_55 (skip VARCHAR, third VARCHAR, season VARCHAR)"}, {"answer": "SELECT lead FROM table_name_74 WHERE second = \"vicki adams\" AND third = \"anna sloan\"", "question": "What is the lead with a second of Vicki Adams and a third of Anna Sloan?", "context": "CREATE TABLE table_name_74 (lead VARCHAR, second VARCHAR, third VARCHAR)"}, {"answer": "SELECT second FROM table_name_80 WHERE third = \"kelly wood (e) anna sloan (jr)\"", "question": "Who is the second where the third of Kelly Wood (e) Anna Sloan (Jr)?", "context": "CREATE TABLE table_name_80 (second VARCHAR, third VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE game = 65", "question": "What is Date, when Game is \"65\"?", "context": "CREATE TABLE table_name_6 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_8 WHERE date = \"march 12\"", "question": "What is High Rebounds, when Date is \"March 12\"?", "context": "CREATE TABLE table_name_8 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_93 WHERE date = \"march 13\"", "question": "What is High Rebounds, when Date is \"March 13\"?", "context": "CREATE TABLE table_name_93 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_17 WHERE location_attendance = \"td banknorth garden 18,624\"", "question": "What is Record, when Location Attendance is \"TD Banknorth Garden 18,624\"?", "context": "CREATE TABLE table_name_17 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT team FROM table_name_25 WHERE game = 59", "question": "What is Team, when Game is \"59\"?", "context": "CREATE TABLE table_name_25 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE away_team = \"torquay united\"", "question": "What is the Score when the Away Team is Torquay United?", "context": "CREATE TABLE table_name_12 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_55 WHERE tie_no = \"replay\" AND home_team = \"chesterfield\"", "question": "Which Away Team has a Tie no of replay and a Home Team of Chesterfield?", "context": "CREATE TABLE table_name_55 (away_team VARCHAR, tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_48 WHERE attendance = \"6 december 1997\" AND home_team = \"torquay united\"", "question": "What is the Away Team when the Home Team is Torquay United and the Attendence is 6 December 1997?", "context": "CREATE TABLE table_name_48 (away_team VARCHAR, attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_47 WHERE engine = \"honda\" AND sponsor = \"motorola\"", "question": "What is the Chassis of the Honda Engine with a Motorola sponsor?", "context": "CREATE TABLE table_name_47 (chassis VARCHAR, engine VARCHAR, sponsor VARCHAR)"}, {"answer": "SELECT engine FROM table_name_16 WHERE tire = \"goodyear\" AND sponsor = \"herdez\"", "question": "What is the engine of the goodyear tire and Herdez as a sponsor?", "context": "CREATE TABLE table_name_16 (engine VARCHAR, tire VARCHAR, sponsor VARCHAR)"}, {"answer": "SELECT engine FROM table_name_63 WHERE team = \"tasman motorsports\"", "question": "What engine does the Tasman Motorsports team have?", "context": "CREATE TABLE table_name_63 (engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT tire FROM table_name_20 WHERE sponsor = \"duracell\"", "question": "Which Tire has a Sponsor of Duracell?", "context": "CREATE TABLE table_name_20 (tire VARCHAR, sponsor VARCHAR)"}, {"answer": "SELECT team FROM table_name_48 WHERE tire = \"firestone\" AND chassis = \"reynard 95i\" AND sponsor = \"motorola\"", "question": "Which team has Firestone Tires a Reynard 95i Chassis and is sponsored by Motorola?", "context": "CREATE TABLE table_name_48 (team VARCHAR, sponsor VARCHAR, tire VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(_number_of_constituency_votes) FROM table_name_22 WHERE election = 2005", "question": "What is the highest # Of Constituency Votes, when Election is 2005?", "context": "CREATE TABLE table_name_22 (_number_of_constituency_votes INTEGER, election VARCHAR)"}, {"answer": "SELECT MAX(_number_of_constituency_votes) FROM table_name_18 WHERE election < 1976 AND leader = \"eisaku sat\u014d\" AND _number_of_candidates < 328", "question": "What is the highest # Of Constituency Votes, when Election is before 1976, when Leader is Eisaku Sat\u014d, and when # Of Candidates is less than 328?", "context": "CREATE TABLE table_name_18 (_number_of_constituency_votes INTEGER, _number_of_candidates VARCHAR, election VARCHAR, leader VARCHAR)"}, {"answer": "SELECT overall FROM table_name_82 WHERE college = \"iowa\" AND position = \"db\"", "question": "What was the overall draft pick of the player who was a db and attended college in iowa?", "context": "CREATE TABLE table_name_82 (overall VARCHAR, college VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_51 WHERE overall < 28 AND round = 3", "question": "What number pick was the player drafted in round 3 at #28 overall?", "context": "CREATE TABLE table_name_51 (pick INTEGER, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_72 WHERE data_processing_and_exploitation = \"00 0,228\" AND management_and_support > 1 OFFSET 7", "question": "What is the lowest total data processing and exploitation of 00 0,228, and a management and support larger than 1,7?", "context": "CREATE TABLE table_name_72 (total INTEGER, data_processing_and_exploitation VARCHAR, management_and_support VARCHAR)"}, {"answer": "SELECT permanent_account FROM table_name_46 WHERE userpics_free = \"unknown\" AND registration = \"invite-only\"", "question": "Which permanent account has registration of invite-only and userpics free of unknown?", "context": "CREATE TABLE table_name_46 (permanent_account VARCHAR, userpics_free VARCHAR, registration VARCHAR)"}, {"answer": "SELECT year_began FROM table_name_92 WHERE userpics_paid = \"n/a\" AND userpics_free = \"1\"", "question": "What is the year began for the site with free userpics cost of $1 and a userpics paid value of N/A?", "context": "CREATE TABLE table_name_92 (year_began VARCHAR, userpics_paid VARCHAR, userpics_free VARCHAR)"}, {"answer": "SELECT week FROM table_name_18 WHERE tournament = \"monte carlo\"", "question": "Which Week has a Tournament of monte carlo?", "context": "CREATE TABLE table_name_18 (week VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winner_and_score FROM table_name_70 WHERE finalist = \"aaron krickstein\"", "question": "Which Winner and score has a Finalist of aaron krickstein?", "context": "CREATE TABLE table_name_70 (winner_and_score VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_95 WHERE surface = \"hard\" AND winner_and_score = \"pete sampras 6\u20133, 3\u20136, 6\u20133\"", "question": "Which Semifinalists have a Surface of hard, and a Winner and score of pete sampras 6\u20133, 3\u20136, 6\u20133?", "context": "CREATE TABLE table_name_95 (semifinalists VARCHAR, surface VARCHAR, winner_and_score VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_86 WHERE winner_and_score = \"boris becker 7\u20136(3), 6\u20133, 3\u20136, 6\u20133\"", "question": "Which Finalist has a Winner and score of boris becker 7\u20136(3), 6\u20133, 3\u20136, 6\u20133?", "context": "CREATE TABLE table_name_86 (finalist VARCHAR, winner_and_score VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_82 WHERE finalist = \"andrei chesnokov\"", "question": "Which Semifinalists have a Finalist of andrei chesnokov?", "context": "CREATE TABLE table_name_82 (semifinalists VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT surface FROM table_name_92 WHERE semifinalists = \"wally masur malivai washington\"", "question": "Which Surface has Semifinalists of wally masur malivai washington?", "context": "CREATE TABLE table_name_92 (surface VARCHAR, semifinalists VARCHAR)"}, {"answer": "SELECT place FROM table_name_86 WHERE score = 73 - 69 - 68 = 210", "question": "What place had a score of 73-69-68=210?", "context": "CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_38 WHERE place = \"t9\" AND player = \"gary player\"", "question": "What country is Gary Player from in T9 place?", "context": "CREATE TABLE table_name_38 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_3 WHERE country = \"new zealand\"", "question": "What's the score of New Zealand?", "context": "CREATE TABLE table_name_3 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_30 WHERE score = 67 - 70 - 77 = 214", "question": "What player has a score of 67-70-77=214?", "context": "CREATE TABLE table_name_30 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_34 WHERE finish = \"59\"", "question": "What country has a finish of 59?", "context": "CREATE TABLE table_name_34 (country VARCHAR, finish VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_56 WHERE finish = \"t16\" AND player = \"julius boros\"", "question": "What is the To Par when the finish was t16 and the player was Julius Boros?", "context": "CREATE TABLE table_name_56 (to_par VARCHAR, finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT finish FROM table_name_59 WHERE player = \"billy casper\"", "question": "What was the finish for Billy Casper?", "context": "CREATE TABLE table_name_59 (finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT 1 AS st_run FROM table_name_95 WHERE downhill < 46 AND points = \"84.45\"", "question": "What is the 1st run that is down hill less than 46, and 84.45 points?", "context": "CREATE TABLE table_name_95 (downhill VARCHAR, points VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_84 WHERE home_team = \"hawthorn\"", "question": "What away team score has hawthorn as the home team?", "context": "CREATE TABLE table_name_84 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT make FROM table_name_24 WHERE drivers = \"hisashi wada\"", "question": "What is the make of the vehicle for driver Hisashi Wada?", "context": "CREATE TABLE table_name_24 (make VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_51 WHERE team = \"avanzza rosso\"", "question": "In what rounds was the featured team of Avanzza Rosso?", "context": "CREATE TABLE table_name_51 (rounds VARCHAR, team VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_59 WHERE tyre = \"y\" AND drivers = \"tomonobu fujii\"", "question": "In what rounds was the featured driver Tomonobu Fujii with a Tyre of Y?", "context": "CREATE TABLE table_name_59 (rounds VARCHAR, tyre VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT drivers FROM table_name_61 WHERE tyre = \"k\" AND team = \"avanzza rosso\"", "question": "Who is the driver with a tyre of k for Avanzza Rosso?", "context": "CREATE TABLE table_name_61 (drivers VARCHAR, tyre VARCHAR, team VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_97 WHERE drivers = \"yoshihisa namekata\"", "question": "What is the tyre for Yoshihisa Namekata?", "context": "CREATE TABLE table_name_97 (tyre VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_55 WHERE position = \"k\" AND pick < 28", "question": "If the pick is under 28 and the position is k, what's the highest Overall pick?", "context": "CREATE TABLE table_name_55 (overall INTEGER, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_62 WHERE position = \"rb\" AND round = 8", "question": "During round 8 when the Position being picked was rb, what was the highest overall pick?", "context": "CREATE TABLE table_name_62 (overall INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT county FROM table_name_34 WHERE bush_number = 566", "question": "Which county had a Bush number of votes of 566?", "context": "CREATE TABLE table_name_34 (county VARCHAR, bush_number VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_50 WHERE year > 1996 AND outcome = \"winner\"", "question": "who is the opponent when the year is after 1996 and the outcome is winner?", "context": "CREATE TABLE table_name_50 (opponent VARCHAR, year VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT surface FROM table_name_23 WHERE championship = \"rome\" AND opponent = \"sergi bruguera\"", "question": "what is the surface when the championship is rome and the opponent is sergi bruguera?", "context": "CREATE TABLE table_name_23 (surface VARCHAR, championship VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE surface = \"hard\" AND outcome = \"runner-up\"", "question": "what is the score when the surface is hard and outcome is runner-up?", "context": "CREATE TABLE table_name_85 (score VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_29 WHERE date = \"february 24\"", "question": "What was the number of the game played on February 24?", "context": "CREATE TABLE table_name_29 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_9 WHERE team = \"oklahoma city\"", "question": "Where was the game played when the opponent was Oklahoma City, and what was the attendance?", "context": "CREATE TABLE table_name_9 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE game = 58", "question": "What was the record when they played game 58?", "context": "CREATE TABLE table_name_59 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_94 WHERE date = \"22 october 1990\"", "question": "What is Score In The Final, when Date is \"22 October 1990\"?", "context": "CREATE TABLE table_name_94 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_32 WHERE surface = \"carpet (i)\" AND date = \"15 november 1993\"", "question": "What is Outcome, when Surface is \"Carpet (I)\", and when Date is \"15 November 1993\"?", "context": "CREATE TABLE table_name_32 (outcome VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_49 WHERE opponent_in_the_final = \"andre agassi\"", "question": "What is Tournament, when Opponent In The Final is \"Andre Agassi\"?", "context": "CREATE TABLE table_name_49 (tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_20 WHERE date = \"30 august 1993\"", "question": "What is Score In The Final, when Date is \"30 August 1993\"?", "context": "CREATE TABLE table_name_20 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE outcome = \"winner\" AND surface = \"grass\"", "question": "What is Date, when Outcome is \"Winner\", and when Surface is \"Grass\"?", "context": "CREATE TABLE table_name_72 (date VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_67 WHERE outcome = \"winner\" AND surface = \"carpet (i)\" AND tournament = \"lyon, france\"", "question": "What is Opponent In The Final, when Outcome is \"Winner\", when Surface is \"Carpet (I)\", and when Tournament is \"Lyon, France\"?", "context": "CREATE TABLE table_name_67 (opponent_in_the_final VARCHAR, tournament VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT COUNT(goals_against) FROM table_name_89 WHERE wins < 5 AND played < 5", "question": "What are the total goals against the winner with less than 5 wins, and less than 5 plays?", "context": "CREATE TABLE table_name_89 (goals_against VARCHAR, wins VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_23 WHERE goals_for > 22", "question": "What is the average losses for 22 goals?", "context": "CREATE TABLE table_name_23 (losses INTEGER, goals_for INTEGER)"}, {"answer": "SELECT SUM(wins) FROM table_name_2 WHERE ties < 2 AND goals_against = 18 AND losses < 2", "question": "What is the total wins with less than 2 ties, 18 goals, and less than 2 losses?", "context": "CREATE TABLE table_name_2 (wins INTEGER, losses VARCHAR, ties VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT overall_record FROM table_name_4 WHERE last_10_meetings = \"ou, 7-3\" AND at_norman = \"ou, 18-3\"", "question": "What is the Overall Record when the Last 10 Meetings is ou, 7-3, and Norman is ou, 18-3?", "context": "CREATE TABLE table_name_4 (overall_record VARCHAR, last_10_meetings VARCHAR, at_norman VARCHAR)"}, {"answer": "SELECT oklahoma_vs FROM table_name_15 WHERE current_streak = \"l 1\" AND at_neutral_site = \"osu, 7-6\"", "question": "What is Oklahoma vs. when Current Streak is l 1, and Neutral Site is osu, 7-6?", "context": "CREATE TABLE table_name_15 (oklahoma_vs VARCHAR, current_streak VARCHAR, at_neutral_site VARCHAR)"}, {"answer": "SELECT overall_record FROM table_name_11 WHERE since_beginning_of_big_12 = \"ou, 27-3\"", "question": "What is the Overall Record when Since Beginning of Big 12 is ou, 27-3?", "context": "CREATE TABLE table_name_11 (overall_record VARCHAR, since_beginning_of_big_12 VARCHAR)"}, {"answer": "SELECT last_10_meetings FROM table_name_48 WHERE at_norman = \"ou, 18-6\"", "question": "What is the Last 10 Meetings when Norman is ou, 18-6?", "context": "CREATE TABLE table_name_48 (last_10_meetings VARCHAR, at_norman VARCHAR)"}, {"answer": "SELECT since_beginning_of_big_12 FROM table_name_28 WHERE last_10_meetings = \"ou, 7-3\" AND at_neutral_site = \"ou, 2-1\" AND last_5_meetings = \"bu, 3-2\"", "question": "what is the since beginning of big 12 when last 10 meetings is ou, 7-3, neutral site is ou, 2-1, and last 5 meetings is bu, 3-2?", "context": "CREATE TABLE table_name_28 (since_beginning_of_big_12 VARCHAR, last_5_meetings VARCHAR, last_10_meetings VARCHAR, at_neutral_site VARCHAR)"}, {"answer": "SELECT current_streak FROM table_name_27 WHERE last_5_meetings = \"osu, 4-1\"", "question": "what is the current streak when the last 5 meetings is osu, 4-1?", "context": "CREATE TABLE table_name_27 (current_streak VARCHAR, last_5_meetings VARCHAR)"}, {"answer": "SELECT record FROM table_name_90 WHERE game < 79", "question": "What is the record for a game lower than 79?", "context": "CREATE TABLE table_name_90 (record VARCHAR, game INTEGER)"}, {"answer": "SELECT partner FROM table_name_48 WHERE score_in_the_final = \"7\u20136, 3\u20136, 6\u20137\"", "question": "Who was the partner when the final score was 7\u20136, 3\u20136, 6\u20137?", "context": "CREATE TABLE table_name_48 (partner VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT partner FROM table_name_31 WHERE score_in_the_final = \"4\u20136, 6\u20137\"", "question": "Who was the partner for the match with a score in the final of 4\u20136, 6\u20137?", "context": "CREATE TABLE table_name_31 (partner VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_26 WHERE date > 1986 AND score_in_the_final = \"7\u20136, 3\u20136, 6\u20132\"", "question": "What tournament took place after 1986 and had a final score of 7\u20136, 3\u20136, 6\u20132?", "context": "CREATE TABLE table_name_26 (tournament VARCHAR, date VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_76 WHERE athlete = \"markus thalmann\" AND time = \"23:28:24\"", "question": "Which Year is the lowest one that has an Athlete of markus thalmann, and a Time of 23:28:24?", "context": "CREATE TABLE table_name_76 (year INTEGER, athlete VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_69 WHERE time = \"24:55:58\" AND place > 3", "question": "Which Year is the lowest one that has a Time of 24:55:58, and a Place larger than 3?", "context": "CREATE TABLE table_name_69 (year INTEGER, time VARCHAR, place VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_97 WHERE place = 1 AND year < 1988 AND country = \"gre\" AND time = \"21:57:00\"", "question": "Which Athlete has a Place of 1, and a Year smaller than 1988, and a Country of gre, and a Time of 21:57:00?", "context": "CREATE TABLE table_name_97 (athlete VARCHAR, time VARCHAR, country VARCHAR, place VARCHAR, year VARCHAR)"}, {"answer": "SELECT time FROM table_name_60 WHERE year > 1985 AND place < 2 AND athlete = \"riochy sekiya\"", "question": "Which Time has a Year larger than 1985, and a Place smaller than 2, and an Athlete of riochy sekiya?", "context": "CREATE TABLE table_name_60 (time VARCHAR, athlete VARCHAR, year VARCHAR, place VARCHAR)"}, {"answer": "SELECT anand FROM table_name_67 WHERE game = \"8\"", "question": "What was Anand's score in game 8?", "context": "CREATE TABLE table_name_67 (anand VARCHAR, game VARCHAR)"}, {"answer": "SELECT day, _date FROM table_name_20 WHERE game = \"2\"", "question": "What is the day and date of game 2?", "context": "CREATE TABLE table_name_20 (day VARCHAR, _date VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_21 WHERE date = \"november 24\"", "question": "WHAT IS THE HIGH ASSISTS ON NOVEMBER 24?", "context": "CREATE TABLE table_name_21 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_7 WHERE game = 4", "question": "WHAT IS THE LOCATION ATTENDANCE FOR GAME 4?", "context": "CREATE TABLE table_name_7 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_44 WHERE date = \"november 14\"", "question": "WHAT IS THE RECORD FOR DATE NOVEMBER 14?", "context": "CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_29 WHERE date = \"18 may 1992\"", "question": "What tournament is on 18 May 1992?", "context": "CREATE TABLE table_name_29 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE surface = \"carpet\" AND partnering = \"tim henman\"", "question": "What is the score of the tournament with a carpet surface and tim henman as the partnering?", "context": "CREATE TABLE table_name_88 (score VARCHAR, surface VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT surface FROM table_name_83 WHERE opponent_in_final = \"paola su\u00e1rez\"", "question": "On what surface did Katarina Srebotnik play Paola Su\u00e1rez?", "context": "CREATE TABLE table_name_83 (surface VARCHAR, opponent_in_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_54 WHERE score_in_final = \"5\u20137, 7\u20135, 6\u20134\"", "question": "At what tournament was the Score 5\u20137, 7\u20135, 6\u20134?", "context": "CREATE TABLE table_name_54 (tournament VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_name_21 WHERE date = \"february 24, 2002\"", "question": "What was the Final Score on February 24, 2002?", "context": "CREATE TABLE table_name_21 (score_in_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT team__number1 FROM table_name_20 WHERE team__number2 = \"galatasaray cc i\u0307stanbul\"", "question": "Who was Team #1 when Team #2 was galatasaray cc i\u0307stanbul?", "context": "CREATE TABLE table_name_20 (team__number1 VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT podiums FROM table_name_82 WHERE poles = \"3\"", "question": "What are the Podiums that has a Poles of 3?", "context": "CREATE TABLE table_name_82 (podiums VARCHAR, poles VARCHAR)"}, {"answer": "SELECT team FROM table_name_10 WHERE races = \"4\" AND points = \"0\"", "question": "What is the Team that has a Races of 4, and a Points of 0?", "context": "CREATE TABLE table_name_10 (team VARCHAR, races VARCHAR, points VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_44 WHERE country = \"united states\" AND player = \"hal sutton\"", "question": "What to par is located in the united states and has a player by the name of hal sutton?", "context": "CREATE TABLE table_name_44 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_85 WHERE place = \"t1\" AND score = 67 - 70 = 137", "question": "What player is in the place of t1 and has the score of 67-70=137?", "context": "CREATE TABLE table_name_85 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_2 WHERE score = 67 - 74 = 141", "question": "What place has the score of 67-74=141?", "context": "CREATE TABLE table_name_2 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_58 WHERE score = 67 - 72 = 139", "question": "What player has the score of 67-72=139?", "context": "CREATE TABLE table_name_58 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_19 WHERE location = \"mississippi, united states\" AND opponent = \"anthony macias\"", "question": "What was Gassaway's record at the fight in mississippi, united states against anthony macias?", "context": "CREATE TABLE table_name_19 (record VARCHAR, location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_23 WHERE round = \"5\"", "question": "What was the location the fight was held at that lasted 5 rounds?", "context": "CREATE TABLE table_name_23 (location VARCHAR, round VARCHAR)"}, {"answer": "SELECT location FROM table_name_66 WHERE opponent = \"kevin knabjian\"", "question": "What was the location of the fight when Gassaway fought kevin knabjian?", "context": "CREATE TABLE table_name_66 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT place FROM table_name_84 WHERE player = \"fred couples\"", "question": "What place did Fred Couples finish in?", "context": "CREATE TABLE table_name_84 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_56 WHERE revenue_in_usd = \"$428.2 billion\"", "question": "What is the rank of the company who has a revenue of $428.2 billion?", "context": "CREATE TABLE table_name_56 (rank VARCHAR, revenue_in_usd VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_7 WHERE industry = \"petroleum\" AND revenue_in_usd = \"$481.7 billion\"", "question": "What is the rank of the petroleum company who has a revenue of $481.7 billion?", "context": "CREATE TABLE table_name_7 (rank INTEGER, industry VARCHAR, revenue_in_usd VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_74 WHERE 2005 = \"n/a\" AND 2002 = \"0 / 1\"", "question": "What is Tournament, when 2005 is \"N/A\", and when 2002 is \"0 / 1\"?", "context": "CREATE TABLE table_name_74 (tournament VARCHAR)"}, {"answer": "SELECT career_win_loss FROM table_name_70 WHERE 2002 = \"a\" AND 2001 = \"4r\"", "question": "What is Career Win-Loss, when 2002 is \"A\", and when 2001 is \"4R\"?", "context": "CREATE TABLE table_name_70 (career_win_loss VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_48 WHERE 2001 = \"1r\"", "question": "What is Tournament, when 2001 is \"1R\"?", "context": "CREATE TABLE table_name_48 (tournament VARCHAR)"}, {"answer": "SELECT south_west FROM table_name_73 WHERE north_east = \"vishnu\" AND north_west = \"durga\" AND center = \"ganapati\"", "question": "Who is in the south-west next to Vishnu on the east, Durga on the west, and in the center of Ganapati?", "context": "CREATE TABLE table_name_73 (south_west VARCHAR, center VARCHAR, north_east VARCHAR, north_west VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE game = 26", "question": "What was the final score of game 26?", "context": "CREATE TABLE table_name_64 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_80 WHERE date = \"december 8\"", "question": "What game was played on December 8?", "context": "CREATE TABLE table_name_80 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(area_km_2) FROM table_name_66 WHERE population = 542", "question": "What is the sum of the areas for populations of 542?", "context": "CREATE TABLE table_name_66 (area_km_2 INTEGER, population VARCHAR)"}, {"answer": "SELECT MAX(area_km_2) FROM table_name_84 WHERE population > 532 AND official_name = \"centreville\"", "question": "What is the highest area for locations named Centreville having populations over 532?", "context": "CREATE TABLE table_name_84 (area_km_2 INTEGER, population VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT competition FROM table_name_35 WHERE result = \"1-1\" AND venue = \"gwangju\"", "question": "what is the competition when the result is 1-1 and venue is gwangju?", "context": "CREATE TABLE table_name_35 (competition VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE competition = \"1998 asian games\"", "question": "what is the date when the competition is 1998 asian games?", "context": "CREATE TABLE table_name_17 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_96 WHERE score = \"1 goal\" AND date = \"october 11, 1997\"", "question": "what is the venue when the score is 1 goal and the date is october 11, 1997?", "context": "CREATE TABLE table_name_96 (venue VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_58 WHERE result = \"2-1\"", "question": "what is the competition when the result is 2-1?", "context": "CREATE TABLE table_name_58 (competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_52 WHERE date = \"august 24, 1997\"", "question": "what is the result when the date is august 24, 1997?", "context": "CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_6 WHERE date = \"december 7, 1998\"", "question": "what is the venue when the date is december 7, 1998?", "context": "CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT driver FROM table_name_23 WHERE time_retired = \"+5.2684\"", "question": "Who is the driver with a time/retired of +5.2684?", "context": "CREATE TABLE table_name_23 (driver VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT grid FROM table_name_22 WHERE team = \"vision racing\" AND driver = \"tomas scheckter\"", "question": "What is the grid of driver tomas scheckter from vision racing team?", "context": "CREATE TABLE table_name_22 (grid VARCHAR, team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT grid FROM table_name_17 WHERE car_no = \"3\"", "question": "What is the grid of car no. 3?", "context": "CREATE TABLE table_name_17 (grid VARCHAR, car_no VARCHAR)"}, {"answer": "SELECT grid FROM table_name_53 WHERE time_retired = \"+6.8359\"", "question": "What is the grid with a +6.8359 time/retired?", "context": "CREATE TABLE table_name_53 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_5 WHERE team_2 = \"athletic\"", "question": "WHAT IS THE 1ST LEG WITH TEAM 2 AS ATHLETIC?", "context": "CREATE TABLE table_name_5 (team_2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_22 WHERE team_1 = \"sporting\"", "question": "WHAT IS THE 2ND LEG WITH TEAM 1 OF SPORTING?", "context": "CREATE TABLE table_name_22 (team_1 VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_86 WHERE opposing_team = \"cuyo selection\"", "question": "Sum of cuyo selection as the opposing team?", "context": "CREATE TABLE table_name_86 (against INTEGER, opposing_team VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_46 WHERE status = \"tour match\" AND date = \"21 july 1990\"", "question": "Lowest against for tour match on 21 july 1990?", "context": "CREATE TABLE table_name_46 (against INTEGER, status VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(version) FROM table_name_85 WHERE code = \"u+1034a\" AND year > 2001", "question": "Name the lowest version with a code of u+1034a that began after 2001.", "context": "CREATE TABLE table_name_85 (version INTEGER, code VARCHAR, year VARCHAR)"}, {"answer": "SELECT character FROM table_name_21 WHERE version = 5.1 AND name = \"greek capital letter archaic sampi\"", "question": "What character was the version 5.1 and had a Greek capital letter Archaic Sampi?", "context": "CREATE TABLE table_name_21 (character VARCHAR, version VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(version) FROM table_name_89 WHERE name = \"coptic small letter sampi\" AND year > 2005", "question": "Give the sum of the version with the coptic small letter sampi, and a year after 2005.", "context": "CREATE TABLE table_name_89 (version INTEGER, name VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_89 WHERE name = \"greek small letter sampi\"", "question": "What is the year that has a name with the Greek small letter sampi?", "context": "CREATE TABLE table_name_89 (year INTEGER, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_95 WHERE player = \"bob rosburg\"", "question": "What country id Bob Rosburg from?", "context": "CREATE TABLE table_name_95 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_14 WHERE score = 73 - 72 - 67 = 212", "question": "What country has a score of 73-72-67=212?", "context": "CREATE TABLE table_name_14 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_89 WHERE player = \"mike souchak\"", "question": "What is Mike Souchak's to par?", "context": "CREATE TABLE table_name_89 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_70 WHERE player = \"mike souchak\"", "question": "What is Mike Souchak's to par score?", "context": "CREATE TABLE table_name_70 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT finish FROM table_name_4 WHERE total = 285", "question": "What was the finish for the golfer with a total of 285?", "context": "CREATE TABLE table_name_4 (finish VARCHAR, total VARCHAR)"}, {"answer": "SELECT total FROM table_name_20 WHERE year_s__won = \"1987\"", "question": "What was the total for the golfer who had a year won of 1987?", "context": "CREATE TABLE table_name_20 (total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT finish FROM table_name_91 WHERE to_par = \"+2\"", "question": "What was the finish for the golfer with a To par of +2?", "context": "CREATE TABLE table_name_91 (finish VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_9 WHERE to_par = \"+10\" AND year_s__won = \"1971\"", "question": "What was the total for the golfer who had a To par of +10 and year won of 1971?", "context": "CREATE TABLE table_name_9 (total INTEGER, to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT team FROM table_name_36 WHERE game < 71 AND score = \"w 91\u201386 (ot)\"", "question": "What team played before game 71 and had a score w 91\u201386 (ot)?", "context": "CREATE TABLE table_name_36 (team VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_15 WHERE game = 66", "question": "What was the high assist for game 66?", "context": "CREATE TABLE table_name_15 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT country FROM table_name_39 WHERE player = \"jos\u00e9 mar\u00eda olaz\u00e1bal\"", "question": "What is jos\u00e9 mar\u00eda olaz\u00e1bal's country?", "context": "CREATE TABLE table_name_39 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_86 WHERE score = 74 - 67 - 74 - 71 = 286", "question": "Which Player has a Score of 74-67-74-71=286?", "context": "CREATE TABLE table_name_86 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_69 WHERE country = \"united states\" AND player = \"corey pavin\"", "question": "Which Place has a Country of united states, and a Player of corey pavin?", "context": "CREATE TABLE table_name_69 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_65 WHERE week = 15", "question": "Who is the opponent in week 15?", "context": "CREATE TABLE table_name_65 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_57 WHERE result = \"w 30-7\"", "question": "What is the highest attendance a result of W 30-7?", "context": "CREATE TABLE table_name_57 (attendance INTEGER, result VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_22 WHERE week < 6 AND date = \"october 14, 2001\"", "question": "What is the average attendance at week earlier than 6 on October 14, 2001?", "context": "CREATE TABLE table_name_22 (attendance INTEGER, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_8 WHERE method = \"submission (armbar)\" AND round < 3", "question": "what is the record when the method is submission (armbar) and the round is less than 3?", "context": "CREATE TABLE table_name_8 (record VARCHAR, method VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_12 WHERE name = \"svg burgkirchen\" AND lost < 6", "question": "How many average points did svg burgkirchen have with a loss smaller than 6?", "context": "CREATE TABLE table_name_12 (points INTEGER, name VARCHAR, lost VARCHAR)"}, {"answer": "SELECT name FROM table_name_4 WHERE points < 22 AND drawn = 2", "question": "Who had points smaller than 22 and a drawn of 2?", "context": "CREATE TABLE table_name_4 (name VARCHAR, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT name FROM table_name_75 WHERE lost = 2 AND position > 1", "question": "Who lost 2 and had a position bigger than 1?", "context": "CREATE TABLE table_name_75 (name VARCHAR, lost VARCHAR, position VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_62 WHERE issued_title = \"1958 miles\" AND label = \"sony\" AND year < 2006", "question": "What is the name of the catalog issued with the title of 1958 Miles on the Sony label at a year prior to 2006?", "context": "CREATE TABLE table_name_62 (catalog VARCHAR, year VARCHAR, issued_title VARCHAR, label VARCHAR)"}, {"answer": "SELECT label FROM table_name_16 WHERE year < 1979", "question": "What is the label of the Year before 1979?", "context": "CREATE TABLE table_name_16 (label VARCHAR, year INTEGER)"}, {"answer": "SELECT 2011 FROM table_name_74 WHERE tournament = \"miami masters\"", "question": "WHAT IS THE 2011 PERFORMANCE AT THE MIAMI MASTERS?", "context": "CREATE TABLE table_name_74 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_45 WHERE 2007 = \"career statistics\"", "question": "WHAT IS THE 2008 PERFORMANCE WITH A 2007 CAREER STATISTICS?", "context": "CREATE TABLE table_name_45 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_5 WHERE 2010 = \"a\" AND 2009 = \"a\" AND 2011 = \"q1\"", "question": "WHAT IS THE TOURNAMENT WITH A 2010 OF A, 2009 OF A, AND 001 PERFORMANCE OF Q1?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_77 WHERE 2012 = \"2r\" AND 2011 = \"1r\" AND 2007 = \"a\" AND 2008 = \"a\"", "question": "WHAT IS THE 2009 PERFORMANCE WITH A 2012 OF 2R, 2001 OF 1R, 2007 OF A, AND 2008 OF A?", "context": "CREATE TABLE table_name_77 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_90 WHERE 2007 = \"q3\"", "question": "WHAT IS THE 2011 PERFORMANCE WITH A 2007 OF Q3?", "context": "CREATE TABLE table_name_90 (Id VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE place = \"t2\"", "question": "Which Score has a Place of t2?", "context": "CREATE TABLE table_name_95 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE country = \"spain\"", "question": "What was spain's score?", "context": "CREATE TABLE table_name_93 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_97 WHERE score = 70 - 73 - 80 - 68 = 291", "question": "Which To par has a Score of 70-73-80-68=291?", "context": "CREATE TABLE table_name_97 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_12 WHERE place = \"t6\" AND player = \"tom weiskopf\"", "question": "From what Country is T6 Place Player Tom Weiskopf?", "context": "CREATE TABLE table_name_12 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_13 WHERE to_par = \"\u20132\" AND player = \"johnny miller\"", "question": "With a To par of \u20132, what is Johnny Miller's Place?", "context": "CREATE TABLE table_name_13 (place VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_80 WHERE player = \"gene borek\"", "question": "From what Country is Gene Borek?", "context": "CREATE TABLE table_name_80 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE to_par = \"\u20135\"", "question": "What is the Country of the Player with a To par of \u20135?", "context": "CREATE TABLE table_name_46 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT place FROM table_name_18 WHERE country = \"new zealand\"", "question": "What is the Place of the Player from New Zealand?", "context": "CREATE TABLE table_name_18 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_28 WHERE score = 70 - 68 = 138", "question": "What is the Place of the Player with a Score of 70-68=138?", "context": "CREATE TABLE table_name_28 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_88 WHERE wins > 1 AND last_appearance = \"2003\"", "question": "What is the highest Losses, when Wins is greater than 1, and when Last Appearance is 2003?", "context": "CREATE TABLE table_name_88 (losses INTEGER, wins VARCHAR, last_appearance VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_67 WHERE percent = \"0.000\" AND school = \"oklahoma state\" AND appearances < 1", "question": "What is the highest Wins, when Percent is 0.000, when School is Oklahoma State, and when Appearances is less than 1?", "context": "CREATE TABLE table_name_67 (wins INTEGER, appearances VARCHAR, percent VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_85 WHERE last_appearance = \"2003\" AND wins > 2", "question": "What is the total number of Losses, when Last Appearance is 2003, and when Wins is greater than 2?", "context": "CREATE TABLE table_name_85 (losses VARCHAR, last_appearance VARCHAR, wins VARCHAR)"}, {"answer": "SELECT last_appearance FROM table_name_65 WHERE wins < 1 AND losses = 1 AND school = \"oklahoma state\"", "question": "What is Last Appearance, when Wins is less than 1, when Losses is 1, and when School is Oklahoma State?", "context": "CREATE TABLE table_name_65 (last_appearance VARCHAR, school VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT college FROM table_name_34 WHERE pick < 145 AND player = \"jeff wilkins\"", "question": "What is College, when Pick is less than 145, and when Player is Jeff Wilkins?", "context": "CREATE TABLE table_name_34 (college VARCHAR, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_2 WHERE college = \"illinois state\"", "question": "What is Nationality, and when College is Illinois State?", "context": "CREATE TABLE table_name_2 (nationality VARCHAR, college VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_5 WHERE round = 6", "question": "What is Nationality, when Round is 6?", "context": "CREATE TABLE table_name_5 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_39 WHERE college = \"northern illinois\"", "question": "What is the total number of Round, when College is Northern Illinois?", "context": "CREATE TABLE table_name_39 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_85 WHERE total = 2 AND silver < 1 AND gold > 1", "question": "What is the average bronze when the total is 2, silver is less than 1 and gold is more than 1?", "context": "CREATE TABLE table_name_85 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_66 WHERE total > 20", "question": "what is the average silver when the total is more than 20?", "context": "CREATE TABLE table_name_66 (silver INTEGER, total INTEGER)"}, {"answer": "SELECT MAX(rank) FROM table_name_23 WHERE nation = \"united states (usa)\" AND bronze > 1", "question": "what is the highest rank when the nation is united states (usa) and bronze is more than 1?", "context": "CREATE TABLE table_name_23 (rank INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_99 WHERE bronze > 0 AND gold = 0 AND nation = \"united states (usa)\" AND silver < 0", "question": "what is the average total when bronze is more than 0, gold is 0, the nation is united states (usa) and silver is 0?", "context": "CREATE TABLE table_name_99 (total INTEGER, silver VARCHAR, nation VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT res FROM table_name_67 WHERE opponent = \"enrique guzman\"", "question": "What was the resolution for the fight against enrique guzman?", "context": "CREATE TABLE table_name_67 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT res FROM table_name_20 WHERE record = \"8-6\"", "question": "What was the resolution of the fight when Nate Mohr's record was 8-6?", "context": "CREATE TABLE table_name_20 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(third) FROM table_name_37 WHERE club = \"es sahel\" AND rank < 3", "question": "What is the smallest number of third place earned for the Es Sahel at a rank less than 3?", "context": "CREATE TABLE table_name_37 (third INTEGER, club VARCHAR, rank VARCHAR)"}, {"answer": "SELECT club FROM table_name_12 WHERE runners_up = 1 AND winners = 0 AND third = 2", "question": "Which club has 1 runners-up with 0 winners and 2 third place earned?", "context": "CREATE TABLE table_name_12 (club VARCHAR, third VARCHAR, runners_up VARCHAR, winners VARCHAR)"}, {"answer": "SELECT name FROM table_name_10 WHERE bonus > 1 AND only_point > 7 AND total_point < 21", "question": "What is Name, when Bonus is greater than 1, when Only Point is greater than 7, and when Total Point is less than 21?", "context": "CREATE TABLE table_name_10 (name VARCHAR, total_point VARCHAR, bonus VARCHAR, only_point VARCHAR)"}, {"answer": "SELECT name FROM table_name_47 WHERE only_point > 1 AND catch_taken > 3 AND bonus > 4 AND total_point < 30", "question": "What is Name, when Only Point is greater than 1, when Catch Taken is greater than 3, when Bonus is greater than 4, and when Total Point is less than 30?", "context": "CREATE TABLE table_name_47 (name VARCHAR, total_point VARCHAR, bonus VARCHAR, only_point VARCHAR, catch_taken VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_11 WHERE manufacturer = \"ducati\" AND rider = \"casey stoner\" AND laps < 27", "question": "How many grids does Ducati have with Casey Stoner as a rider with fewer than 27 laps?", "context": "CREATE TABLE table_name_11 (grid VARCHAR, laps VARCHAR, manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_11 WHERE time = \"+10.142\"", "question": "Which manufacturer has a time of +10.142?", "context": "CREATE TABLE table_name_11 (manufacturer VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_30 WHERE rider = \"loris capirossi\"", "question": "What is Loris Capirossi's time?", "context": "CREATE TABLE table_name_30 (time VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_52 WHERE grid > 19 AND time_retired = \"fuel\"", "question": "What were the highest laps when the grid was larger than 19 and the time/retired was fuel?", "context": "CREATE TABLE table_name_52 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT team FROM table_name_80 WHERE laps = 65 AND grid < 20 AND driver = \"scott pruett\"", "question": "Which team did Scott Pruett drive for when the grid was smaller than 20 and there were 65 laps?", "context": "CREATE TABLE table_name_80 (team VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_name_94 WHERE boiler_type = \"forward topfeed\" AND built_at = \"crewe\" AND lot_no < 187", "question": "What year is the date when the boiler type is forward topfeed, the built at is Crewe, and lot number is less than 187?", "context": "CREATE TABLE table_name_94 (date VARCHAR, lot_no VARCHAR, boiler_type VARCHAR, built_at VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE goal = 2", "question": "What was the date of the game where Esteban Paredes scored 2 goals?", "context": "CREATE TABLE table_name_62 (date VARCHAR, goal VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_82 WHERE opponent = \"los angeles rams\" AND week < 11", "question": "What is the highest attendance when the opponent is the Los Angeles Rams and the week is less than 11?", "context": "CREATE TABLE table_name_82 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_60 WHERE week > 7 AND opponent = \"houston oilers\"", "question": "What is the result when the week is greater than 7 and the Houston Oilers were the opponent?", "context": "CREATE TABLE table_name_60 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_4 WHERE location_attendance = \"izod center 16,911\"", "question": "What is Record, when Location Attendance is \"Izod Center 16,911\"?", "context": "CREATE TABLE table_name_4 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_86 WHERE high_assists = \"delonte west (10)\"", "question": "What is High Rebounds, when High Assists is \"Delonte West (10)\"?", "context": "CREATE TABLE table_name_86 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_16 WHERE label = \"epic records\" AND format = \"cd\"", "question": "What catalog had an Epic Records label in CD format?", "context": "CREATE TABLE table_name_16 (catalog VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT label FROM table_name_37 WHERE region = \"australia\"", "question": "Which label is in Australia?", "context": "CREATE TABLE table_name_37 (label VARCHAR, region VARCHAR)"}, {"answer": "SELECT record FROM table_name_38 WHERE time = \"2:43\"", "question": "The match that lasted 2:43 has what record?", "context": "CREATE TABLE table_name_38 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT method FROM table_name_54 WHERE venue = \"club med sandpiper\"", "question": "The match that was held at Club Med Sandpiper has what method?", "context": "CREATE TABLE table_name_54 (method VARCHAR, venue VARCHAR)"}, {"answer": "SELECT record FROM table_name_83 WHERE time = \"3:00\" AND venue = \"michael's eighth avenue\" AND opponent = \"tim coleman\"", "question": "The match of at Michael's Eighth Avenue venue against Tim Coleman that went 3:00 has what record?", "context": "CREATE TABLE table_name_83 (record VARCHAR, opponent VARCHAR, time VARCHAR, venue VARCHAR)"}, {"answer": "SELECT method FROM table_name_88 WHERE venue = \"club med sandpiper\"", "question": "What method did the match at Club Med Sandpiper have?", "context": "CREATE TABLE table_name_88 (method VARCHAR, venue VARCHAR)"}, {"answer": "SELECT label FROM table_name_87 WHERE catalog = \"lpm-2899\"", "question": "What is the Label of the release with Catalog number LPM-2899?", "context": "CREATE TABLE table_name_87 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE label = \"rca\" AND catalog = \"sf-7635\"", "question": "What is the Date of the RCA release with Catalog number SF-7635?", "context": "CREATE TABLE table_name_57 (date VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_58 WHERE label = \"rca\"", "question": "What is the Catalog of the RCA release?", "context": "CREATE TABLE table_name_58 (catalog VARCHAR, label VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_79 WHERE format = \"cd reissue\" AND label = \"universal\"", "question": "What is the Catalog number of the CD Reissue Universal release?", "context": "CREATE TABLE table_name_79 (catalog VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT label FROM table_name_75 WHERE format = \"stereo vinyl lp\" AND catalog = \"sf-7635\"", "question": "What is the Label of the release on Stereo vinyl LP with Catalog number SF-7635?", "context": "CREATE TABLE table_name_75 (label VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT other FROM table_name_84 WHERE margin_of_error = \"\u00b1 4.5%\" AND pat_toomey__r_ = \"45%\" AND joe_sestak__d_ = \"38%\"", "question": "WHAT CANDIDATE HAD A MARGIN OF ERROR OF \u00b1 4.5%, WHEN PAT TOOMEY WAS 45% AND JOE SESTAK WAS 38%?", "context": "CREATE TABLE table_name_84 (other VARCHAR, joe_sestak__d_ VARCHAR, margin_of_error VARCHAR, pat_toomey__r_ VARCHAR)"}, {"answer": "SELECT date_s__administered FROM table_name_49 WHERE joe_sestak__d_ = \"46%\" AND margin_of_error = \"\u00b1 3.0%\"", "question": "WHAT DATE DID JOE SESTAK HAVE 46% WITH \u00b1 3.0% MARGIN OF ERROR?", "context": "CREATE TABLE table_name_49 (date_s__administered VARCHAR, joe_sestak__d_ VARCHAR, margin_of_error VARCHAR)"}, {"answer": "SELECT points__percentage FROM table_name_29 WHERE total_w_l_h = \"1-2-2\"", "question": "WHAT IS THE POINTS PERCENTAGE WITH A TOTAL OF 1-2-2 RECORD?", "context": "CREATE TABLE table_name_29 (points__percentage VARCHAR, total_w_l_h VARCHAR)"}, {"answer": "SELECT year FROM table_name_28 WHERE total_matches = 5", "question": "WHAT YEAR HAD 5 TOTAL MATCHES?", "context": "CREATE TABLE table_name_28 (year VARCHAR, total_matches VARCHAR)"}, {"answer": "SELECT quantity_preserved FROM table_name_76 WHERE quantity_made = \"4\" AND class = \"f-21\"", "question": "What is the quantity preserved when 4 were made of class F-21?", "context": "CREATE TABLE table_name_76 (quantity_preserved VARCHAR, quantity_made VARCHAR, class VARCHAR)"}, {"answer": "SELECT fleet_number_s_ FROM table_name_42 WHERE quantity_made = \"3\"", "question": "What fleet number had 3 made?", "context": "CREATE TABLE table_name_42 (fleet_number_s_ VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT class FROM table_name_36 WHERE quantity_made = \"1\" AND fleet_number_s_ = \"406\"", "question": "What class had 1 made and fleet number of 406?", "context": "CREATE TABLE table_name_36 (class VARCHAR, quantity_made VARCHAR, fleet_number_s_ VARCHAR)"}, {"answer": "SELECT class FROM table_name_56 WHERE quantity_preserved = \"0\" AND quantity_made = \"2\"", "question": "What class has 0 preserved and 2 made?", "context": "CREATE TABLE table_name_56 (class VARCHAR, quantity_preserved VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_87 WHERE population = \"4839400\"", "question": "What rank has a population of 4839400?", "context": "CREATE TABLE table_name_87 (rank INTEGER, population VARCHAR)"}, {"answer": "SELECT rank FROM table_name_14 WHERE definition = \"province-level municipality\"", "question": "What's the rank of the Province-Level Municipality?", "context": "CREATE TABLE table_name_14 (rank VARCHAR, definition VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_37 WHERE definition = \"core districts + inner suburbs\" AND population = \"10123000\"", "question": "What rank was Core Districts + Inner Suburbs and had a population of 10123000?", "context": "CREATE TABLE table_name_37 (rank INTEGER, definition VARCHAR, population VARCHAR)"}, {"answer": "SELECT points FROM table_name_17 WHERE draws < 7 AND wins < 16 AND goals_for = 35", "question": "What is Points, when Draws is less than 7, when Wins is less than 16, and when Goals For is \"35\"?", "context": "CREATE TABLE table_name_17 (points VARCHAR, goals_for VARCHAR, draws VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_13 WHERE position > 8 AND goals_for > 34 AND points = 25 AND draws < 5", "question": "What is the total number of Losses, when Position is greater than 8, when Goals For is greater than 34, when Points is \"25\", and when Draws is less than 5?", "context": "CREATE TABLE table_name_13 (losses VARCHAR, draws VARCHAR, points VARCHAR, position VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_32 WHERE points < 19", "question": "What is the average Wins, when Points is less than \"19\"?", "context": "CREATE TABLE table_name_32 (wins INTEGER, points INTEGER)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_31 WHERE played > 30", "question": "What is the lowest Goals, when Played is greater than 30?", "context": "CREATE TABLE table_name_31 (goals_for INTEGER, played INTEGER)"}, {"answer": "SELECT SUM(played) FROM table_name_88 WHERE losses = 13 AND position > 11", "question": "What is the sum of Played, when Losses is \"13\", and when Position is greater than 11?", "context": "CREATE TABLE table_name_88 (played INTEGER, losses VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_50 WHERE losses < 10 AND goal_difference < 46 AND goals_for < 63 AND played < 30", "question": "What is the lowest Wins, when Losses is less than 10, when Goal Difference is less than 46, when Goals is less than 63, and when Played is less than 30?", "context": "CREATE TABLE table_name_50 (wins INTEGER, played VARCHAR, goals_for VARCHAR, losses VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT COUNT(viewers) FROM table_name_47 WHERE episode = \"gary gets boundaries\"", "question": "How many viewed the episode gary gets boundaries?", "context": "CREATE TABLE table_name_47 (viewers VARCHAR, episode VARCHAR)"}, {"answer": "SELECT episode FROM table_name_97 WHERE viewers = 6.71", "question": "What episode had 6.71 viewers?", "context": "CREATE TABLE table_name_97 (episode VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT air_date FROM table_name_65 WHERE viewers = 7.3", "question": "When did the episode air that had 7.3 viewers?", "context": "CREATE TABLE table_name_65 (air_date VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT SUM(march) FROM table_name_12 WHERE record = \"48-13-11\" AND game < 72", "question": "What day in March is the game with a 48-13-11 record and a game number less than 72?", "context": "CREATE TABLE table_name_12 (march INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_44 WHERE game = 75", "question": "Who is the opponent of game 75?", "context": "CREATE TABLE table_name_44 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_11 WHERE march > 2 AND opponent = \"minnesota north stars\"", "question": "What is the lowest game number of the game after March 2 with the minnesota north stars as the opponent?", "context": "CREATE TABLE table_name_11 (game INTEGER, march VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location___state FROM table_name_57 WHERE winner = \"craig lowndes\"", "question": "The winner, Craig Lowndes, was in what location/state?", "context": "CREATE TABLE table_name_57 (location___state VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE circuit = \"eastern creek raceway\"", "question": "The Eastern Creek Raceway circuit is on what date?", "context": "CREATE TABLE table_name_56 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT location___state FROM table_name_82 WHERE team = \"castrol perkins motorsport\" AND winner = \"russell ingall\"", "question": "Castrol Perkins Motorsport and the winner Russell Ingall was in what location/state?", "context": "CREATE TABLE table_name_82 (location___state VARCHAR, team VARCHAR, winner VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_43 WHERE 1996 = \"1r\" AND 2002 = \"not held\"", "question": "What shows for 1998 when 1996 is 1R, and 2002 is not held?", "context": "CREATE TABLE table_name_43 (Id VARCHAR)"}, {"answer": "SELECT 1996 FROM table_name_23 WHERE 1994 = \"a\" AND 2003 = \"a\" AND 2001 = \"1r\"", "question": "What is the 1996 when the 1994 is A, the 2003 is A, and the 2001 is 1R?", "context": "CREATE TABLE table_name_23 (Id VARCHAR)"}, {"answer": "SELECT 1991 FROM table_name_44 WHERE 2002 = \"2r\"", "question": "What shows for 1991 when 2002 is 2R?", "context": "CREATE TABLE table_name_44 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_7 WHERE 1990 = \"grand slam tournaments\"", "question": "What shows for 2006 when 1999 is Grand Slam Tournaments?", "context": "CREATE TABLE table_name_7 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_65 WHERE 2000 = \"1r\" AND 1996 = \"a\" AND tournament = \"cincinnati masters\"", "question": "What shows for 2006 when 2000 is 1r, 1996 is A, and Tournament is Cincinnati Masters?", "context": "CREATE TABLE table_name_65 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_61 WHERE 1990 = \"olympic games\"", "question": "What is the Tournament when the 1990 is Olympic Games?", "context": "CREATE TABLE table_name_61 (tournament VARCHAR)"}, {"answer": "SELECT location FROM table_name_59 WHERE record = \"0-1\"", "question": "Which Location has a Record of 0-1?", "context": "CREATE TABLE table_name_59 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_4 WHERE method = \"technical submission (rear naked choke)\"", "question": "What is Record, when Method is \"Technical Submission (Rear Naked Choke)\"?", "context": "CREATE TABLE table_name_4 (record VARCHAR, method VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_79 WHERE method = \"submission (banana split)\"", "question": "What is the sum of Round(s), when Method is \"Submission (Banana Split)\"?", "context": "CREATE TABLE table_name_79 (round INTEGER, method VARCHAR)"}, {"answer": "SELECT time FROM table_name_85 WHERE event = \"gcm: demolition 1\"", "question": "What is Time, when Event is \"GCM: Demolition 1\"?", "context": "CREATE TABLE table_name_85 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT COUNT(year_set) FROM table_name_73 WHERE event = \"100m freestyle\"", "question": "What year had a 100m freestyle event?", "context": "CREATE TABLE table_name_73 (year_set VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_77 WHERE long_course_short_course = \"short course\" AND year_set = 2010", "question": "What event had a short course in 2010?", "context": "CREATE TABLE table_name_77 (event VARCHAR, long_course_short_course VARCHAR, year_set VARCHAR)"}, {"answer": "SELECT COUNT(year_set) FROM table_name_24 WHERE long_course_short_course = \"short course\" AND time = \"7:51.80\"", "question": "What year did a short course have a time of 7:51.80?", "context": "CREATE TABLE table_name_24 (year_set VARCHAR, long_course_short_course VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(year_set) FROM table_name_67 WHERE event = \"100m freestyle\"", "question": "What was the latest year that had a 100m freestyle?", "context": "CREATE TABLE table_name_67 (year_set INTEGER, event VARCHAR)"}, {"answer": "SELECT place FROM table_name_54 WHERE draw = 3", "question": "In what place was the song that had a draw of 3?", "context": "CREATE TABLE table_name_54 (place VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_73 WHERE place = \"7th\" AND draw > 8", "question": "What is the number of points for the 7th placed song with a draw greater than 8?", "context": "CREATE TABLE table_name_73 (points INTEGER, place VARCHAR, draw VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_93 WHERE artist = \"joe o'meara\"", "question": "How many points did Joe O'Meara have?", "context": "CREATE TABLE table_name_93 (points VARCHAR, artist VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_89 WHERE artist = \"linda martin\"", "question": "How many points did Linda Martin have?", "context": "CREATE TABLE table_name_89 (points VARCHAR, artist VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE week > 13 AND visitor = \"montreal alouettes\"", "question": "WHAT IS THE SCORE WITH A WEEK LARGER THAN 13, AND VISITOR TEAM MONTREAL ALOUETTES?", "context": "CREATE TABLE table_name_39 (score VARCHAR, week VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_5 WHERE date = \"july 25\"", "question": "WHAT IS THE AVERAGE WEEK WITH A DATE OF JULY 25?", "context": "CREATE TABLE table_name_5 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_42 WHERE home_team = \"crystal palace\"", "question": "What was the tie for the Crystal Palace team?", "context": "CREATE TABLE table_name_42 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_72 WHERE tie_no = \"15\"", "question": "What is the attendance for No. 15 tie?", "context": "CREATE TABLE table_name_72 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT open_cup FROM table_name_30 WHERE division > 4", "question": "WHich Open Cup has a Division larger than 4?", "context": "CREATE TABLE table_name_30 (open_cup VARCHAR, division INTEGER)"}, {"answer": "SELECT league FROM table_name_86 WHERE regular_season = \"3rd, atlantic\"", "question": "Name the League which has a Regular Season of 3rd, atlantic?", "context": "CREATE TABLE table_name_86 (league VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT regular_season FROM table_name_19 WHERE division = 4", "question": "WHICH Regular Season has a Division of 4?", "context": "CREATE TABLE table_name_19 (regular_season VARCHAR, division VARCHAR)"}, {"answer": "SELECT regular_season FROM table_name_64 WHERE league = \"npsl\" AND year = \"2008\"", "question": "WHICH Regular Season has a League of npsl, and a Year of 2008?", "context": "CREATE TABLE table_name_64 (regular_season VARCHAR, league VARCHAR, year VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_8 WHERE league = \"npsl\" AND open_cup = \"did not enter\" AND year = \"2013\"", "question": "NAME THE Playoffs that HAVE a League of npsl, and a Open Cup of did not enter, and a Year of 2013?", "context": "CREATE TABLE table_name_8 (playoffs VARCHAR, year VARCHAR, league VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT AVG(february) FROM table_name_11 WHERE record = \"18-26-10\" AND game < 54", "question": "What is the average February that has 18-26-10 as the record, with a game less than 54?", "context": "CREATE TABLE table_name_11 (february INTEGER, record VARCHAR, game VARCHAR)"}, {"answer": "SELECT COUNT(february) FROM table_name_32 WHERE opponent = \"montreal canadiens\" AND record = \"18-25-10\" AND game > 53", "question": "How many Februarys have montreal canadiens as the opponent, and 18-25-10 as the record, with a game greater than 53?", "context": "CREATE TABLE table_name_32 (february VARCHAR, game VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT surface FROM table_name_31 WHERE opponent = \"selma babic\"", "question": "what is the surface when the opponent is selma babic?", "context": "CREATE TABLE table_name_31 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_65 WHERE round = \"gii play-offs\" AND edition = \"2009 fed cup europe/africa group ii\"", "question": "what is the surface when the round is gii play-offs and the edition is 2009 fed cup europe/africa group ii?", "context": "CREATE TABLE table_name_65 (surface VARCHAR, round VARCHAR, edition VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE surface = \"clay\" AND result = \"6\u20137 (4\u20137) , 1\u20136\"", "question": "what is the date when the surface is clay and the result is 6\u20137 (4\u20137) , 1\u20136?", "context": "CREATE TABLE table_name_99 (date VARCHAR, surface VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_67 WHERE against = \"norway\"", "question": "who is the opponent when norway is against?", "context": "CREATE TABLE table_name_67 (opponent VARCHAR, against VARCHAR)"}, {"answer": "SELECT position FROM table_name_28 WHERE weight > 220 AND player = \"travis knight\"", "question": "What is Postion, when Weight is greater than 220, and when Player is \"Travis Knight\"?", "context": "CREATE TABLE table_name_28 (position VARCHAR, weight VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(number) FROM table_name_48 WHERE college = \"university of alabama\"", "question": "What is the lowest Number, when College is \"University of Alabama\"?", "context": "CREATE TABLE table_name_48 (number INTEGER, college VARCHAR)"}, {"answer": "SELECT COUNT(weight) FROM table_name_90 WHERE position = \"forward/center\" AND player = \"othella harrington\" AND number < 32", "question": "What is the total number of Weight, when Position is \"Forward/Center\", when Player is \"Othella Harrington\", and when Number is less than 32?", "context": "CREATE TABLE table_name_90 (weight VARCHAR, number VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_exp FROM table_name_94 WHERE height = \"7-2\"", "question": "What is Years Exp, when Height is \"7-2\"?", "context": "CREATE TABLE table_name_94 (years_exp VARCHAR, height VARCHAR)"}, {"answer": "SELECT position FROM table_name_68 WHERE weight > 200 AND number < 44 AND years_exp = \"9\" AND college = \"university of new mexico\"", "question": "What is Position, when Weight is greater than 200, when Number is less than 44, when Years Exp is 9, and when College is \"University of New Mexico\"?", "context": "CREATE TABLE table_name_68 (position VARCHAR, college VARCHAR, years_exp VARCHAR, weight VARCHAR, number VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_name_53 WHERE model_number = \"atom z510pt\"", "question": "What was the release price of the Atom Z510PT processor?", "context": "CREATE TABLE table_name_53 (release_price___usd__ VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_name_51 WHERE model_number = \"atom z500\"", "question": "Which part number was used for the Atom Z500 processor?", "context": "CREATE TABLE table_name_51 (part_number_s_ VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT mult FROM table_name_35 WHERE release_price___usd__ = \"n/a\" AND sspec_number = \"slgpr(c0)\"", "question": "What was the multiplier of the processor with sSpec number of SLGPR(C0) and a release price of N/A?", "context": "CREATE TABLE table_name_35 (mult VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_68 WHERE tournament = \"chicago challenge\"", "question": "Who is the runner-up at the Chicago challenge?", "context": "CREATE TABLE table_name_68 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_42 WHERE tournament = \"atlantic city classic\"", "question": "Who is the runner-up of Atlantic city classic?", "context": "CREATE TABLE table_name_42 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE tournament = \"u.s. women's open\"", "question": "What is the date of the U.S. Women's open?", "context": "CREATE TABLE table_name_61 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_8 WHERE tournament = \"gna/glendale federal classic\"", "question": "What is the margin of victory of the gna/glendale federal classic?", "context": "CREATE TABLE table_name_8 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT class FROM table_name_34 WHERE part_4 = \"*buranaz\"", "question": "Which class has *buranaz as Part 4?", "context": "CREATE TABLE table_name_34 (class VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT verb_meaning FROM table_name_88 WHERE part_2 = \"*bar\"", "question": "What is the verb meaning for *bar as Part 2?", "context": "CREATE TABLE table_name_88 (verb_meaning VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT class FROM table_name_62 WHERE part_4 = \"*alanaz\"", "question": "Which class has *alanaz as Part 4?", "context": "CREATE TABLE table_name_62 (class VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT class FROM table_name_59 WHERE part_2 = \"*fraus\"", "question": "Which class has *fraus as Part 2?", "context": "CREATE TABLE table_name_59 (class VARCHAR, part_2 VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_60 WHERE name = \"evilasio\"", "question": "what is the transfer fee for evilasio?", "context": "CREATE TABLE table_name_60 (transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_21 WHERE completions = \"redshirt\"", "question": "What team did James Vanderberg belong to when the Completions had a status of redshirt?", "context": "CREATE TABLE table_name_21 (team VARCHAR, completions VARCHAR)"}, {"answer": "SELECT completions FROM table_name_72 WHERE team = \"iowa\" AND yards = \"45\"", "question": "What were the number of completions for James Vanderberg on Iowa when his yards were 45?", "context": "CREATE TABLE table_name_72 (completions VARCHAR, team VARCHAR, yards VARCHAR)"}, {"answer": "SELECT team FROM table_name_19 WHERE completions = \"42\"", "question": "What was the team Vanderberg belonged to when there was 42 completions?", "context": "CREATE TABLE table_name_19 (team VARCHAR, completions VARCHAR)"}, {"answer": "SELECT attempts FROM table_name_17 WHERE completions = \"223\"", "question": "What number of attempts were recorded when the completions were 223?", "context": "CREATE TABLE table_name_17 (attempts VARCHAR, completions VARCHAR)"}, {"answer": "SELECT year FROM table_name_96 WHERE attempts = \"888\"", "question": "In what year was the number of attempts 888?", "context": "CREATE TABLE table_name_96 (year VARCHAR, attempts VARCHAR)"}, {"answer": "SELECT attempts FROM table_name_42 WHERE team = \"iowa\" AND yards = \"2,249\"", "question": "What was the number of attempts for Vanderberg on Iowa when the recorded yards were 2,249?", "context": "CREATE TABLE table_name_42 (attempts VARCHAR, team VARCHAR, yards VARCHAR)"}, {"answer": "SELECT Leading AS scorer FROM table_name_10 WHERE opponent = \"@ indiana\"", "question": "Which Leading Scorer has an Opponent of @ indiana?", "context": "CREATE TABLE table_name_10 (Leading VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT Leading AS scorer FROM table_name_70 WHERE record = \"3-3\"", "question": "Which Leading Scorer has a Record of 3-3?", "context": "CREATE TABLE table_name_70 (Leading VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE tie_no = \"6\"", "question": "What is the date when tie number is 6?", "context": "CREATE TABLE table_name_98 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_93 WHERE tie_no = \"9\"", "question": "Who is the home team with tie number 9?", "context": "CREATE TABLE table_name_93 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_38 WHERE away_team = \"sheffield united\"", "question": "Who is the home team when Sheffield United is the away team?", "context": "CREATE TABLE table_name_38 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE away_team = \"aston villa\"", "question": "What is the date when Aston Villa is the away team?", "context": "CREATE TABLE table_name_98 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_75 WHERE date = \"31 january 1951\" AND away_team = \"sheffield united\"", "question": "Who is the home team on 31 January 1951 when away team was Sheffield United?", "context": "CREATE TABLE table_name_75 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_62 WHERE week > 11 AND opponent = \"washington redskins\"", "question": "What was the attendance during the match that took place after week 11 against the washington redskins?", "context": "CREATE TABLE table_name_62 (attendance INTEGER, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_94 WHERE place = \"t3\" AND player = \"geoff ogilvy\"", "question": "WHAT IS THE TO PAR FOR GEOFF OGILVY WITH A PLACE OF T3?", "context": "CREATE TABLE table_name_94 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(year_opened) FROM table_name_47 WHERE ride = \"flight deck\" AND rating < 5", "question": "What year has the ride flight deck and a rating of less than 5?", "context": "CREATE TABLE table_name_47 (year_opened VARCHAR, ride VARCHAR, rating VARCHAR)"}, {"answer": "SELECT other_names FROM table_name_36 WHERE death = \"may 23, 1821\"", "question": "what is other names when death is may 23, 1821?", "context": "CREATE TABLE table_name_36 (other_names VARCHAR, death VARCHAR)"}, {"answer": "SELECT name FROM table_name_80 WHERE death = \"november 10, 1842\"", "question": "what is the name when death is november 10, 1842?", "context": "CREATE TABLE table_name_80 (name VARCHAR, death VARCHAR)"}, {"answer": "SELECT internet_plan FROM table_name_48 WHERE price = \"22 eur\"", "question": "What is Internet Plan, when Price is \"22 EUR\"?", "context": "CREATE TABLE table_name_48 (internet_plan VARCHAR, price VARCHAR)"}, {"answer": "SELECT downstream FROM table_name_88 WHERE upstream = \"384 kbit\"", "question": "What is Downstream, when Upstream is \"384 kbit\"?", "context": "CREATE TABLE table_name_88 (downstream VARCHAR, upstream VARCHAR)"}, {"answer": "SELECT bandwidth_included FROM table_name_45 WHERE price = \"50 eur\"", "question": "What is Bandwidth Included, when Price is \"50 EUR\"?", "context": "CREATE TABLE table_name_45 (bandwidth_included VARCHAR, price VARCHAR)"}, {"answer": "SELECT upstream FROM table_name_25 WHERE price = \"14 eur\"", "question": "What is Upstream, when Price is \"14 EUR\"?", "context": "CREATE TABLE table_name_25 (upstream VARCHAR, price VARCHAR)"}, {"answer": "SELECT bandwidth_included FROM table_name_85 WHERE internet_plan = \"8mb\"", "question": "What is Bandwidth Included, when Internet Plan is \"8mb\"?", "context": "CREATE TABLE table_name_85 (bandwidth_included VARCHAR, internet_plan VARCHAR)"}, {"answer": "SELECT price FROM table_name_64 WHERE upstream = \"256 kbit\"", "question": "What is the Price, when Upstream is \"256 kbit\"?", "context": "CREATE TABLE table_name_64 (price VARCHAR, upstream VARCHAR)"}, {"answer": "SELECT semifinalists FROM table_name_23 WHERE finalist = \"andre agassi\"", "question": "Which Semifinalists has a Finalist of andre agassi?", "context": "CREATE TABLE table_name_23 (semifinalists VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_31 WHERE finalist = \"gustavo kuerten (4)\"", "question": "WHich Tournament has a Finalist of gustavo kuerten (4)?", "context": "CREATE TABLE table_name_31 (tournament VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_3 WHERE semifinalists = \"andre agassi (1) lleyton hewitt (14)\"", "question": "Which finalist has Semifinalists of andre agassi (1) lleyton hewitt (14)?", "context": "CREATE TABLE table_name_3 (finalist VARCHAR, semifinalists VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_20 WHERE tournament = \"monte carlo\"", "question": "Which Finalist has a Tournament of monte carlo?", "context": "CREATE TABLE table_name_20 (finalist VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winner FROM table_name_97 WHERE finalist = \"andre agassi\"", "question": "WHo is the Winner of andre agassi Finalist?", "context": "CREATE TABLE table_name_97 (winner VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_47 WHERE finalist = \"marat safin (12)\"", "question": "WHich Tournament has a Finalist of marat safin (12)?", "context": "CREATE TABLE table_name_47 (tournament VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE circuit = \"sepang international circuit\" AND round = \"3\"", "question": "What was the date for the Sepang International circuit, round 3?", "context": "CREATE TABLE table_name_40 (date VARCHAR, circuit VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_80 WHERE winning_driver = \"uwe alzen\" AND circuit = \"sepang international circuit\"", "question": "Which round had a winning driver of Uwe Alzen, at the Sepang International circuit?", "context": "CREATE TABLE table_name_80 (round VARCHAR, winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT round FROM table_name_92 WHERE date = \"march 22\"", "question": "What was the round number for March 22?", "context": "CREATE TABLE table_name_92 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_98 WHERE team = \"@ charlotte\"", "question": "Who had the high points in the game @ Charlotte?", "context": "CREATE TABLE table_name_98 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_77 WHERE game = 70", "question": "What's the record of Game 70?", "context": "CREATE TABLE table_name_77 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_48 WHERE location_attendance = \"philips arena 14,413\"", "question": "Who had the high points when they played in Philips Arena 14,413?", "context": "CREATE TABLE table_name_48 (high_points VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE game_site = \"resch center\"", "question": "What is the date of the game that took place at the Resch Center?", "context": "CREATE TABLE table_name_41 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT new_returning_same_network FROM table_name_35 WHERE returning = \"april 3\" AND show = \"shop 'til you drop\"", "question": "Which network returns april 3, and a Show of shop 'til you drop?", "context": "CREATE TABLE table_name_35 (new_returning_same_network VARCHAR, returning VARCHAR, show VARCHAR)"}, {"answer": "SELECT retitled_as_same FROM table_name_92 WHERE show = \"supermarket sweep\"", "question": "Which retitled network has a Show of supermarket sweep?", "context": "CREATE TABLE table_name_92 (retitled_as_same VARCHAR, show VARCHAR)"}, {"answer": "SELECT retitled_as_same FROM table_name_44 WHERE returning = \"april 3\" AND previous_network = \"lifetime\"", "question": "Which show returns april 3 with a Previous Network of lifetime?", "context": "CREATE TABLE table_name_44 (retitled_as_same VARCHAR, returning VARCHAR, previous_network VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_3 WHERE manufacturer = \"yamaha\"", "question": "What is the lowest grid number for Yamaha?", "context": "CREATE TABLE table_name_3 (grid INTEGER, manufacturer VARCHAR)"}, {"answer": "SELECT laps FROM table_name_79 WHERE grid > 16 AND time = \"+1:35.890\"", "question": "How many laps had a grid over 16 and a Time of +1:35.890?", "context": "CREATE TABLE table_name_79 (laps VARCHAR, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_81 WHERE manufacturer = \"gilera\" AND grid < 12", "question": "What was the lowest lab for Gilera with a grid less than 12?", "context": "CREATE TABLE table_name_81 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_22 WHERE time = \"+1:19.905\" AND laps < 20", "question": "What is the highest Grid with a time of +1:19.905, and less than 20 laps?", "context": "CREATE TABLE table_name_22 (grid INTEGER, time VARCHAR, laps VARCHAR)"}, {"answer": "SELECT rider FROM table_name_91 WHERE grid = 21", "question": "What Rider has a Grid of 21?", "context": "CREATE TABLE table_name_91 (rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_68 WHERE result = \"[[|]] by 7 wickets\"", "question": "Who is the away captain when the game resulted in [[|]] by 7 wickets?", "context": "CREATE TABLE table_name_68 (away_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_70 WHERE result = \"[[|]] by 151 runs\"", "question": "Who is the home captain of the match that resulted [[|]] by 151 runs?", "context": "CREATE TABLE table_name_70 (home_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_98 WHERE to_par = \"\u20131\"", "question": "How many totals have a To par of \u20131?", "context": "CREATE TABLE table_name_98 (total INTEGER, to_par VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_51 WHERE total < 285 AND player = \"tom watson\"", "question": "Which Year(s) won has a Total smaller than 285, and a Player of tom watson?", "context": "CREATE TABLE table_name_51 (year_s__won VARCHAR, total VARCHAR, player VARCHAR)"}, {"answer": "SELECT finish FROM table_name_12 WHERE total = 288", "question": "Which Finish has a Total of 288?", "context": "CREATE TABLE table_name_12 (finish VARCHAR, total VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE year_s__won = \"1991\"", "question": "Who won in 1991?", "context": "CREATE TABLE table_name_89 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT player FROM table_name_64 WHERE pick < 149 AND round = 9", "question": "Who was picked before 149 in round 9?", "context": "CREATE TABLE table_name_64 (player VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_30 WHERE round < 10 AND pick = 16", "question": "Who was pick 16 and before round 10?", "context": "CREATE TABLE table_name_30 (player VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_4 WHERE nickname = \"bulldogs\"", "question": "What is Affiliation, when Nickname is Bulldogs?", "context": "CREATE TABLE table_name_4 (affiliation VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT AVG(founded) FROM table_name_68 WHERE enrollment = 4 OFFSET 000", "question": "What is the average Founded, when Enrollment is 4,000?", "context": "CREATE TABLE table_name_68 (founded INTEGER, enrollment VARCHAR)"}, {"answer": "SELECT team FROM table_name_65 WHERE circuit = \"amaroo park\"", "question": "Which team raced at Amaroo Park?", "context": "CREATE TABLE table_name_65 (team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE winner = \"dick johnson\" AND race_title = \"calder\"", "question": "On what date did Dick Johnson with at Calder?", "context": "CREATE TABLE table_name_10 (date VARCHAR, winner VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE city___state = \"melbourne, victoria\"", "question": "On what date was the race in Melbourne, Victoria?", "context": "CREATE TABLE table_name_42 (date VARCHAR, city___state VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_80 WHERE circuit = \"calder park raceway\"", "question": "Which city or state contains Calder Park Raceway?", "context": "CREATE TABLE table_name_80 (city___state VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT MIN(margin) FROM table_name_79 WHERE st_kilda_saints = \"11.13 (79)\"", "question": "What is the most reduced Margin that has a St Kilda Saints of 11.13 (79)?", "context": "CREATE TABLE table_name_79 (margin INTEGER, st_kilda_saints VARCHAR)"}, {"answer": "SELECT AVG(margin) FROM table_name_3 WHERE round = \"13. (h)\"", "question": "What is the average Margin that has a Round of 13. (h)?", "context": "CREATE TABLE table_name_3 (margin INTEGER, round VARCHAR)"}, {"answer": "SELECT location FROM table_name_46 WHERE team = \"south adelaide\"", "question": "What is the location of South Adelaide?", "context": "CREATE TABLE table_name_46 (location VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_98 WHERE coach = \"unknown\" AND location = \"athelstone\"", "question": "Which team has an unknown coach and location of Athelstone?", "context": "CREATE TABLE table_name_98 (team VARCHAR, coach VARCHAR, location VARCHAR)"}, {"answer": "SELECT founded FROM table_name_59 WHERE location = \"athelstone\"", "question": "When was the team that plays at Athelstone founded?", "context": "CREATE TABLE table_name_59 (founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT coach FROM table_name_6 WHERE location = \"port pirie\"", "question": "Who is the coach of the team from Port Pirie?", "context": "CREATE TABLE table_name_6 (coach VARCHAR, location VARCHAR)"}, {"answer": "SELECT coach FROM table_name_25 WHERE home_ground = \"club cove\"", "question": "Who is the coach of the team with home ground at Club Cove?", "context": "CREATE TABLE table_name_25 (coach VARCHAR, home_ground VARCHAR)"}, {"answer": "SELECT team FROM table_name_48 WHERE founded = \"1970\"", "question": "Which team was founded in 1970?", "context": "CREATE TABLE table_name_48 (team VARCHAR, founded VARCHAR)"}, {"answer": "SELECT became_acharya_on FROM table_name_12 WHERE name_of_acharya = \"acharya shree koshalendraprasadji maharaj\"", "question": "When did acharya shree koshalendraprasadji maharaj become acharya?", "context": "CREATE TABLE table_name_12 (became_acharya_on VARCHAR, name_of_acharya VARCHAR)"}, {"answer": "SELECT term FROM table_name_5 WHERE name_of_acharya = \"acharya shree vasudevprasadji maharaj\"", "question": "What is the term of acharya shree vasudevprasadji maharaj?", "context": "CREATE TABLE table_name_5 (term VARCHAR, name_of_acharya VARCHAR)"}, {"answer": "SELECT event FROM table_name_54 WHERE record = \"9-4-1\"", "question": "What was the event where justin robbins had a record of 9-4-1?", "context": "CREATE TABLE table_name_54 (event VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_1 WHERE opponent = \"billy kidd\"", "question": "Where was the location where justin robbins fought against billy kidd?", "context": "CREATE TABLE table_name_1 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_87 WHERE event = \"cage warriors 39\"", "question": "What was the method of resolution for the fight at cage warriors 39?", "context": "CREATE TABLE table_name_87 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT SUM(regular_season) FROM table_name_41 WHERE playoffs = 35 AND total > 302", "question": "A total larger than 302 and playoffs of 35 also list the total of regular seasons as what?", "context": "CREATE TABLE table_name_41 (regular_season INTEGER, playoffs VARCHAR, total VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_7 WHERE round > 4 AND position = \"lw\" AND player = \"mark miller\"", "question": "What is the college/junior/club team (league) of lw position player mark miller, from a round greater than 4?", "context": "CREATE TABLE table_name_7 (college_junior_club_team__league_ VARCHAR, player VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_76 WHERE position = \"lw\" AND round > 10", "question": "Who is the lw position player from a round greater than 10?", "context": "CREATE TABLE table_name_76 (player VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_20 WHERE round = 8", "question": "Who is the player from round 8?", "context": "CREATE TABLE table_name_20 (player VARCHAR, round VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_14 WHERE round = 7", "question": "What is the nationality of the player from round 7?", "context": "CREATE TABLE table_name_14 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_31 WHERE round = 5", "question": "What is the nationality of the player from round 5?", "context": "CREATE TABLE table_name_31 (nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT state FROM table_name_98 WHERE elected_assumed_office = 2013", "question": "What state had an elected/assumed office in 2013?", "context": "CREATE TABLE table_name_98 (state VARCHAR, elected_assumed_office VARCHAR)"}, {"answer": "SELECT air_date FROM table_name_95 WHERE episode = \"gary tries to do it all\"", "question": "What was the air date of 'Gary tries to do it all'?", "context": "CREATE TABLE table_name_95 (air_date VARCHAR, episode VARCHAR)"}, {"answer": "SELECT location FROM table_name_44 WHERE established = 2000", "question": "What is the location of the university that was established in 2000?", "context": "CREATE TABLE table_name_44 (location VARCHAR, established VARCHAR)"}, {"answer": "SELECT COUNT(established) FROM table_name_14 WHERE nickname = \"pride\"", "question": "What year was the team with the nickname pride established?", "context": "CREATE TABLE table_name_14 (established VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT enrollment FROM table_name_68 WHERE established > 2011", "question": "What is the enrollment of the university established in or after 2011?", "context": "CREATE TABLE table_name_68 (enrollment VARCHAR, established INTEGER)"}, {"answer": "SELECT country FROM table_name_34 WHERE winner = \"ole ellefs\u00e6ter\"", "question": "What country was ole ellefs\u00e6ter from?", "context": "CREATE TABLE table_name_34 (country VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_name_4 WHERE fis_nordic_world_ski_championships = \"1972\"", "question": "Who won the FIS Nordic World Ski Championships in 1972?", "context": "CREATE TABLE table_name_4 (winner VARCHAR, fis_nordic_world_ski_championships VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_44 WHERE place = \"t6\" AND country = \"spain\"", "question": "For a country of Spain, place of t6, what is the Money ($)?", "context": "CREATE TABLE table_name_44 (money___$__ VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_20 WHERE to_par = \"e\"", "question": "Which country has a to par of e?", "context": "CREATE TABLE table_name_20 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_35 WHERE place = \"t9\" AND country = \"australia\"", "question": "Which player is from Australia, and has a place of t9?", "context": "CREATE TABLE table_name_35 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_52 WHERE player = \"john merrick\"", "question": "What was the place for player John Merrick?", "context": "CREATE TABLE table_name_52 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_38 WHERE place = \"t1\" AND score = 72 - 68 - 70 - 73 = 283", "question": "Which country had a place of t1, as well as a score of 72-68-70-73=283?", "context": "CREATE TABLE table_name_38 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_48 WHERE player = \"jack renner\"", "question": "What place has jack renner as the player?", "context": "CREATE TABLE table_name_48 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_77 WHERE country = \"united states\" AND place = \"t8\" AND player = \"tommy valentine\"", "question": "What to par has The United States as the country, t8 as the place, and tommy valentine as the player?", "context": "CREATE TABLE table_name_77 (to_par VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_56 WHERE score = 66", "question": "What to par has 66 as the score?", "context": "CREATE TABLE table_name_56 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_62 WHERE conceded < 7", "question": "Mean of played with smaller than 7 conceded?", "context": "CREATE TABLE table_name_62 (played INTEGER, conceded INTEGER)"}, {"answer": "SELECT MAX(position) FROM table_name_40 WHERE points > 16 AND conceded < 7", "question": "The highest position with more than 16 points and less than 7 concedes?", "context": "CREATE TABLE table_name_40 (position INTEGER, points VARCHAR, conceded VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_32 WHERE played < 9", "question": "The highest draws with smaller than 9 played?", "context": "CREATE TABLE table_name_32 (draws INTEGER, played INTEGER)"}, {"answer": "SELECT home_town FROM table_name_60 WHERE took_office = 1983 AND district > 15", "question": "Which Home Town has a Took Office of 1983, and a District larger than 15?", "context": "CREATE TABLE table_name_60 (home_town VARCHAR, took_office VARCHAR, district VARCHAR)"}, {"answer": "SELECT senator FROM table_name_82 WHERE party = \"republican\" AND home_town = \"houston\" AND district = 7", "question": "Which Senator has a Party of republican, a Home Town of houston, and a District of 7?", "context": "CREATE TABLE table_name_82 (senator VARCHAR, district VARCHAR, party VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT home_town FROM table_name_78 WHERE senator = \"dan shelley\"", "question": "Which Home Town has a Senator of dan shelley?", "context": "CREATE TABLE table_name_78 (home_town VARCHAR, senator VARCHAR)"}, {"answer": "SELECT COUNT(took_office) FROM table_name_81 WHERE party = \"democratic\" AND home_town = \"victoria\" AND district < 18", "question": "Which Took Office has a Party of democratic, a Home Town of victoria, and a District smaller than 18?", "context": "CREATE TABLE table_name_81 (took_office VARCHAR, district VARCHAR, party VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT AVG(took_office) FROM table_name_8 WHERE district = 29", "question": "Which Took Office has a District of 29?", "context": "CREATE TABLE table_name_8 (took_office INTEGER, district VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_88 WHERE grid = 15", "question": "What are the average Laps on Grid 15?", "context": "CREATE TABLE table_name_88 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_39 WHERE time = \"+24.440\" AND grid > 18", "question": "What is the lowest number of Laps that have a Time of +24.440, and a Grid higher than 18?", "context": "CREATE TABLE table_name_39 (laps INTEGER, time VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_93 WHERE grid < 13 AND time = \"+18.366\"", "question": "What is the highest number of Laps that have a Time of +18.366, and a Grid lower than 13?", "context": "CREATE TABLE table_name_93 (laps INTEGER, grid VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_37 WHERE season = \"2011\" AND podiums = 1 AND poles < 0", "question": "What is the lowest Wins, when Season is 2011, when Podiums is 1, and when Poles is less than 0?", "context": "CREATE TABLE table_name_37 (wins INTEGER, poles VARCHAR, season VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT position FROM table_name_3 WHERE points > 7 AND series = \"toyota racing series\"", "question": "What is Position, when Points is greater than 7, and when Series is Toyota Racing Series?", "context": "CREATE TABLE table_name_3 (position VARCHAR, points VARCHAR, series VARCHAR)"}, {"answer": "SELECT SUM(races) FROM table_name_9 WHERE series = \"toyota racing series\" AND podiums > 3", "question": "What is the sum of Races, when Series is Toyota Racing Series, and when Podiums is greater than 3?", "context": "CREATE TABLE table_name_9 (races INTEGER, series VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT AVG(podiums) FROM table_name_47 WHERE wins > 1 AND races = 2 AND points > 150", "question": "What is the average Podiums, when Wins is greater than 1, when Races is 2, and when Points is greater than 150?", "context": "CREATE TABLE table_name_47 (podiums INTEGER, points VARCHAR, wins VARCHAR, races VARCHAR)"}, {"answer": "SELECT COUNT(poles) FROM table_name_27 WHERE position = \"6th\" AND points < 164", "question": "What is the total number of Poles, when Position is 6th, and when Points is less than 164?", "context": "CREATE TABLE table_name_27 (poles VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_name_64 WHERE day_boarding = \"day\" AND year_entered_competition > 1958", "question": "Which is the earliest founded day school to have entered the competition after 1958?", "context": "CREATE TABLE table_name_64 (founded INTEGER, day_boarding VARCHAR, year_entered_competition VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_93 WHERE country = \"england\"", "question": "How many to par in England?", "context": "CREATE TABLE table_name_93 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_38 WHERE player = \"david frost\"", "question": "Where is David Frost from?", "context": "CREATE TABLE table_name_38 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_18 WHERE place = \"t3\" AND score = 70 - 68 = 138", "question": "Which country earned place T3 with a score of 70-68=138?", "context": "CREATE TABLE table_name_18 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_5 WHERE score = 69 - 67 = 136", "question": "Which country had a score of 69-67=136?", "context": "CREATE TABLE table_name_5 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_1 WHERE player = \"greg norman\"", "question": "How many to par for Greg Norman?", "context": "CREATE TABLE table_name_1 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_74 WHERE game > 14 AND team = \"denver\"", "question": "What was the high rebounds after game 14 for Denver?", "context": "CREATE TABLE table_name_74 (high_rebounds VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_26 WHERE team = \"sacramento\"", "question": "What was the latest game that Sacramento played?", "context": "CREATE TABLE table_name_26 (game INTEGER, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_65 WHERE team = \"utah\"", "question": "What was the record of Utah?", "context": "CREATE TABLE table_name_65 (record VARCHAR, team VARCHAR)"}, {"answer": "SELECT parent_magazine FROM table_name_78 WHERE title = \"dengeki g's festival! deluxe\"", "question": "What is the parent magazine of Dengeki g's festival! deluxe?", "context": "CREATE TABLE table_name_78 (parent_magazine VARCHAR, title VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_5 WHERE parent_magazine = \"dengeki girl's style\"", "question": "How often does Dengeki girl's style come out?", "context": "CREATE TABLE table_name_5 (frequency VARCHAR, parent_magazine VARCHAR)"}, {"answer": "SELECT title FROM table_name_72 WHERE frequency = \"monthly\"", "question": "What titles come out monthly?", "context": "CREATE TABLE table_name_72 (title VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT parent_magazine FROM table_name_42 WHERE title = \"dengeki 5pb.\"", "question": "What is the parent magazine for Dengeki 5pb.?", "context": "CREATE TABLE table_name_42 (parent_magazine VARCHAR, title VARCHAR)"}, {"answer": "SELECT magazine_type FROM table_name_94 WHERE magazine_run = \"march 3, 2009\u2013february 5, 2010\"", "question": "What is the magazine type that ran from March 3, 2009\u2013February 5, 2010?", "context": "CREATE TABLE table_name_94 (magazine_type VARCHAR, magazine_run VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_62 WHERE magazine_run = \"september 2, 2010\"", "question": "What is the frequency for the magazine that runs September 2, 2010?", "context": "CREATE TABLE table_name_62 (frequency VARCHAR, magazine_run VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_98 WHERE time_retired = \"+1:23.297\" AND grid > 4", "question": "What is the highest number of laps with a +1:23.297 time/retired and a grid larger than 4?", "context": "CREATE TABLE table_name_98 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_93 WHERE constructor = \"toyota\" AND grid = 5", "question": "What is the time/retired with a toyota constructor and a 5 grid?", "context": "CREATE TABLE table_name_93 (time_retired VARCHAR, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_54 WHERE grid = 16", "question": "What is the average number of laps with 16 grids?", "context": "CREATE TABLE table_name_54 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT endowment_as_of_2008 FROM table_name_55 WHERE established = 1961", "question": "What was the endowment in 2008 of the college that was established in 1961?", "context": "CREATE TABLE table_name_55 (endowment_as_of_2008 VARCHAR, established VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_84 WHERE tie_no = \"40\"", "question": "On what day was the attendance that had a Tie value of 40?", "context": "CREATE TABLE table_name_84 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_6 WHERE away_team = \"canvey island\"", "question": "Who was the home team for the away game that Canvey Island played?", "context": "CREATE TABLE table_name_6 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_4 WHERE home_team = \"gillingham\"", "question": "On what day was there a Home game for Gillingham?", "context": "CREATE TABLE table_name_4 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_21 WHERE overall > 308 AND position = \"rb\"", "question": "Which Pick has an Overall larger than 308, and a Position of rb?", "context": "CREATE TABLE table_name_21 (pick INTEGER, overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_86 WHERE position = \"wr\" AND college = \"alberta\"", "question": "How much Overall has a Position of wr, and a College of alberta?", "context": "CREATE TABLE table_name_86 (overall INTEGER, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_51 WHERE college = \"indiana\"", "question": "What is indiana college's average pick?", "context": "CREATE TABLE table_name_51 (pick INTEGER, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_46 WHERE overall = 308", "question": "Which College has an Overall of 308?", "context": "CREATE TABLE table_name_46 (college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT surface FROM table_name_3 WHERE opponent = \"marcos baghdatis\"", "question": "What was the surface for the opponent Marcos Baghdatis?", "context": "CREATE TABLE table_name_3 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT eighth FROM table_name_61 WHERE seventh = \"audio bullys\"", "question": "WHAT IS THE 8TH THAT HAS A 7TH OF AUDIO BULLYS?", "context": "CREATE TABLE table_name_61 (eighth VARCHAR, seventh VARCHAR)"}, {"answer": "SELECT poll_year FROM table_name_34 WHERE third = \"the ting tings\"", "question": "WHAT IS THE POLL YEAR WITH A THIRD OF THE TING TINGS?", "context": "CREATE TABLE table_name_34 (poll_year VARCHAR, third VARCHAR)"}, {"answer": "SELECT sixth FROM table_name_66 WHERE second = \"white lies\"", "question": "WHAT IS THE SIXTH WITH A SECOND OF WHITE LIES?", "context": "CREATE TABLE table_name_66 (sixth VARCHAR, second VARCHAR)"}, {"answer": "SELECT winner FROM table_name_97 WHERE fifth = \"joss stone\"", "question": "WHAT IS THE WINNER WITH A FIFTH OF JOSS STONE?", "context": "CREATE TABLE table_name_97 (winner VARCHAR, fifth VARCHAR)"}, {"answer": "SELECT second FROM table_name_65 WHERE tenth = \"dan black\"", "question": "WHAT IS THE SECOND WITH A TENTH OF DAN BLACK?", "context": "CREATE TABLE table_name_65 (second VARCHAR, tenth VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_45 WHERE date = \"january 30\"", "question": "What average game has January 30 as the date?", "context": "CREATE TABLE table_name_45 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE date = \"january 19\"", "question": "What score has january 19 as the date?", "context": "CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_24 WHERE game > 35 AND date = \"january 30\"", "question": "What is the loaction attendance that has a game greater than 35, with January 30 as the date?", "context": "CREATE TABLE table_name_24 (location_attendance VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_99 WHERE date = \"january 5\"", "question": "What is the highest game that has January 5 as the date?", "context": "CREATE TABLE table_name_99 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_58 WHERE location_attendance = \"conseco fieldhouse 11,964\"", "question": "What is the highest rebounds that has conseco fieldhouse 11,964 as the location attendance?", "context": "CREATE TABLE table_name_58 (high_rebounds VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_82 WHERE mark = \"2:02.27 nr\" AND heat < 2", "question": "What is the highest lane value for a mark of 2:02.27 NR, with heats under 2?", "context": "CREATE TABLE table_name_82 (lane INTEGER, mark VARCHAR, heat VARCHAR)"}, {"answer": "SELECT mark FROM table_name_8 WHERE country = \"mozambique\"", "question": "What is the mark for the runner from Mozambique?", "context": "CREATE TABLE table_name_8 (mark VARCHAR, country VARCHAR)"}, {"answer": "SELECT name FROM table_name_84 WHERE lane = 6 AND mark = \"2:05.58 sb\"", "question": "Who was in lane 6 with a mark of 2:05.58 SB?", "context": "CREATE TABLE table_name_84 (name VARCHAR, lane VARCHAR, mark VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_54 WHERE player = \"ken irvin\"", "question": "What round was Ken Irvin drafted?", "context": "CREATE TABLE table_name_54 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_54 WHERE school_club_team = \"michigan\"", "question": "In what round was a player from Michigan selected?", "context": "CREATE TABLE table_name_54 (round INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_49 WHERE week < 8 AND result = \"l 28-17\"", "question": "Who was the opponent before week 8 when the result was l 28-17?", "context": "CREATE TABLE table_name_49 (opponent VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_15 WHERE date = \"october 12, 1975\" AND attendance > 44 OFFSET 043", "question": "In which week was the game played on October 12, 1975 and the crowd was larger than 44,043?", "context": "CREATE TABLE table_name_15 (week VARCHAR, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT berlin FROM table_name_60 WHERE s\u00fcdwest = \"fk pirmasens\" AND west = \"westfalia herne\"", "question": "What was Berlin when fk pirmasens was S\u00fcdwest and westfalia herne was west?", "context": "CREATE TABLE table_name_60 (berlin VARCHAR, s\u00fcdwest VARCHAR, west VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_90 WHERE west = \"borussia dortmund\" AND berlin = \"bfc viktoria 1889\"", "question": "What is the earliest year borussia dortmund was west and bfc viktoria 1889 was Berlin?", "context": "CREATE TABLE table_name_90 (year INTEGER, west VARCHAR, berlin VARCHAR)"}, {"answer": "SELECT nord FROM table_name_3 WHERE berlin = \"tennis borussia berlin\" AND year = 1952", "question": "What is the Nord in 1952, when tennis borussia berlin was Berlin?", "context": "CREATE TABLE table_name_3 (nord VARCHAR, berlin VARCHAR, year VARCHAR)"}, {"answer": "SELECT place FROM table_name_19 WHERE country = \"japan\"", "question": "Where did Japan place?", "context": "CREATE TABLE table_name_19 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_69 WHERE attendance = \"206\"", "question": "Who was the away team when the attendance was 206?", "context": "CREATE TABLE table_name_69 (away_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_29 WHERE tie_no = \"34\"", "question": "Who was the away team when the Tie no was 34?", "context": "CREATE TABLE table_name_29 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_16 WHERE attendance = \"76\"", "question": "Who was the away team when the attendance was 76?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_60 WHERE tie_no = \"7\"", "question": "Who was the home team when the Tie no was 7?", "context": "CREATE TABLE table_name_60 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_8 WHERE away_team = \"east thurrock united\"", "question": "What was the Tie no when the away team was east thurrock united?", "context": "CREATE TABLE table_name_8 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(votes) FROM table_name_14 WHERE constituency = \"dublin south\" AND spoilt < 3 OFFSET 387", "question": "WHAT IS THE AVERAGE VOTE FOR DUBLIN SOUTH, AND SPOILT SMALLER THAN 3,387?", "context": "CREATE TABLE table_name_14 (votes INTEGER, constituency VARCHAR, spoilt VARCHAR)"}, {"answer": "SELECT location FROM table_name_8 WHERE date = \"january 23, 2008\"", "question": "Where was the game played on January 23, 2008?", "context": "CREATE TABLE table_name_8 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_8 WHERE tournament = \"singapore charity shield\"", "question": "Where was the Singapore Charity Shield tournament played?", "context": "CREATE TABLE table_name_8 (location VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT location FROM table_name_93 WHERE date = \"january 23, 2008\"", "question": "Where was the game located on January 23, 2008?", "context": "CREATE TABLE table_name_93 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_87 WHERE match > 1 AND tournament = \"friendly\" AND opponent_team = \"super reds\"", "question": "Where is the location of the friendly match larger than 1 where the Super Reds were the opponent?", "context": "CREATE TABLE table_name_87 (location VARCHAR, opponent_team VARCHAR, match VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_78 WHERE team = \"@ milwaukee\"", "question": "When the team is @ Milwaukee, what is the name of the location where the game is played?", "context": "CREATE TABLE table_name_78 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE team = \"@ chicago\"", "question": "For the game with team of @ Chicago, what was the final score?", "context": "CREATE TABLE table_name_19 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT rank FROM table_name_90 WHERE title = \"best friends\"", "question": "What rank did Best Friends receive?", "context": "CREATE TABLE table_name_90 (rank VARCHAR, title VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_91 WHERE club = \"fall bay rfc\"", "question": "How many points are for the Fall Bay RFC club?", "context": "CREATE TABLE table_name_91 (points_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_87 WHERE bonus_points = \"6\" AND points_against = \"410\"", "question": "What was drawn for 6 bonus points and is against 410 points?", "context": "CREATE TABLE table_name_87 (drawn VARCHAR, bonus_points VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT club FROM table_name_63 WHERE points_against = \"431\"", "question": "What is the club had 431 points against them?", "context": "CREATE TABLE table_name_63 (club VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_34 WHERE points_difference = \"points difference\"", "question": "What are the points against with a points difference?", "context": "CREATE TABLE table_name_34 (points_against VARCHAR, points_difference VARCHAR)"}, {"answer": "SELECT played FROM table_name_82 WHERE points_difference = \"points difference\"", "question": "What are the played points difference?", "context": "CREATE TABLE table_name_82 (played VARCHAR, points_difference VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_41 WHERE home_team = \"sydney\"", "question": "When the Home Team was Sydney, what did the Away team score?", "context": "CREATE TABLE table_name_41 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT ground FROM table_name_55 WHERE home_team = \"carlton\"", "question": "What was the Home team Carlton's Ground?", "context": "CREATE TABLE table_name_55 (ground VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_4 WHERE score = 71", "question": "Which player scored 71?", "context": "CREATE TABLE table_name_4 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_84 WHERE winner = \"craig lowndes\" AND date = \"19 apr\"", "question": "What is the circuit on 19 Apr with Craig Lowndes as the winner?", "context": "CREATE TABLE table_name_84 (circuit VARCHAR, winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_15 WHERE team = \"volvo cars australia\"", "question": "What circuit has volvo cars australia as the team?", "context": "CREATE TABLE table_name_15 (circuit VARCHAR, team VARCHAR)"}, {"answer": "SELECT series FROM table_name_8 WHERE team = \"dick johnson racing\"", "question": "What series was Dick Johnson Racing the team?", "context": "CREATE TABLE table_name_8 (series VARCHAR, team VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_87 WHERE winner = \"russell ingall larry perkins\"", "question": "What is the city/state of the circuit where Russell Ingall Larry Perkins was the winner?", "context": "CREATE TABLE table_name_87 (city___state VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE away_team = \"gillingham\"", "question": "What date was the away team, team Gillingham?", "context": "CREATE TABLE table_name_64 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE tie_no = \"21\"", "question": "What was the score for a no. 21 tie?", "context": "CREATE TABLE table_name_6 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE away_team = \"southport\"", "question": "What was the date for the away team, team Southport?", "context": "CREATE TABLE table_name_80 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE away_team = \"southport\"", "question": "What was the score for the away team, southport?", "context": "CREATE TABLE table_name_19 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_65 WHERE attendance = \"47,971\"", "question": "What was the result when the attendance was 47,971?", "context": "CREATE TABLE table_name_65 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_2 WHERE attendance = \"46,456\"", "question": "What was the result when the attendance was 46,456?", "context": "CREATE TABLE table_name_2 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE date = \"september 27, 1998\"", "question": "Who was the opponent on september 27, 1998?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_39 WHERE score = \"0:0\" AND season > 2010 AND team_1 = \"t&t hanoi\"", "question": "Which Venue has a Score of 0:0, a Season larger than 2010, and a Team 1 of t&t hanoi?", "context": "CREATE TABLE table_name_39 (venue VARCHAR, team_1 VARCHAR, score VARCHAR, season VARCHAR)"}, {"answer": "SELECT highest_league FROM table_name_2 WHERE total_seasons < 4 AND team = \"nova scotia clippers\"", "question": "What's the highest league of the Nova Scotia Clippers with a total season of less than 4?", "context": "CREATE TABLE table_name_2 (highest_league VARCHAR, total_seasons VARCHAR, team VARCHAR)"}, {"answer": "SELECT seasons FROM table_name_49 WHERE total_seasons < 5 AND city = \"ottawa, ontario\"", "question": "What is the season that has fewer than 5 total seasons and is in Ottawa, Ontario?", "context": "CREATE TABLE table_name_49 (seasons VARCHAR, total_seasons VARCHAR, city VARCHAR)"}, {"answer": "SELECT MIN(total_seasons) FROM table_name_58 WHERE team = \"vancouver 86ers\"", "question": "What is the least total seasons of the Vancouver 86ers?", "context": "CREATE TABLE table_name_58 (total_seasons INTEGER, team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_28 WHERE week = 14", "question": "Who was the opponent in week 14?", "context": "CREATE TABLE table_name_28 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE city = \"punta del este\"", "question": "What is Date, when City is \"Punta Del Este\"?", "context": "CREATE TABLE table_name_87 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_18 WHERE prize = \"$146,000\"", "question": "What is City, when Prize is \"$146,000\"?", "context": "CREATE TABLE table_name_18 (city VARCHAR, prize VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE winner = \"murilo figueiredo\"", "question": "What is Date, when Winner is \"Murilo Figueiredo\"?", "context": "CREATE TABLE table_name_66 (date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT aspect FROM table_name_12 WHERE programming = \"saigon network television\"", "question": "What Aspect has a Programming of Saigon Network Television?", "context": "CREATE TABLE table_name_12 (aspect VARCHAR, programming VARCHAR)"}, {"answer": "SELECT aspect FROM table_name_18 WHERE programming = \"latv\"", "question": "Which Aspect has a Programming of latv?", "context": "CREATE TABLE table_name_18 (aspect VARCHAR, programming VARCHAR)"}, {"answer": "SELECT programming FROM table_name_53 WHERE channel > 51.2 AND psip_short_name = \"kyaz-5\"", "question": "Which Programming has a Channel greater than 51.2 and a PSIP Short Name of kyaz-5?", "context": "CREATE TABLE table_name_53 (programming VARCHAR, channel VARCHAR, psip_short_name VARCHAR)"}, {"answer": "SELECT psip_short_name FROM table_name_70 WHERE channel < 51.6", "question": "What is the PSIP Short name for the Channel that is less than 51.6?", "context": "CREATE TABLE table_name_70 (psip_short_name VARCHAR, channel INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_name_62 WHERE beer_name = \"maggs magnificent mild\" AND competition = \"camra reading branch beer festival\" AND category = \"overall\"", "question": "What year did maggs magnificent mild bear win overall at the camra reading branch beer festival?", "context": "CREATE TABLE table_name_62 (year INTEGER, category VARCHAR, beer_name VARCHAR, competition VARCHAR)"}, {"answer": "SELECT prize FROM table_name_31 WHERE year > 2002 AND competition = \"camra london and south east regional competition\" AND beer_name = \"good old boy\"", "question": "What prize did good old boy win in 2002 at the camra london and south east regional competition?", "context": "CREATE TABLE table_name_31 (prize VARCHAR, beer_name VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_93 WHERE beer_name = \"maggs magnificent mild\" AND prize = \"gold medal\" AND category = \"mild and porter\" AND competition = \"siba south east region beer competition\"", "question": "What year did maggs magnificent mild win a gold medal in the mild and porter category at the siba south east region beer competition?", "context": "CREATE TABLE table_name_93 (year INTEGER, competition VARCHAR, category VARCHAR, beer_name VARCHAR, prize VARCHAR)"}, {"answer": "SELECT beer_name FROM table_name_33 WHERE prize = \"silver medal\" AND competition = \"camra reading branch beer festival\" AND year = 2008", "question": "What beer won a silver medal at the camra reading branch beer festival in 2008?", "context": "CREATE TABLE table_name_33 (beer_name VARCHAR, year VARCHAR, prize VARCHAR, competition VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_70 WHERE part_number_s_ = \"ay80609003987ab\"", "question": "What is Model Number, when Part Number(s) is AY80609003987AB?", "context": "CREATE TABLE table_name_70 (model_number VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_85 WHERE part_number_s_ = \"ay80609004002ac\"", "question": "What is Frequency, when Part Number(s) is AY80609004002AC?", "context": "CREATE TABLE table_name_85 (frequency VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT sspec_number FROM table_name_98 WHERE frequency = \"1 ghz\"", "question": "What is sSpec Number, when Frequency is 1 GHZ?", "context": "CREATE TABLE table_name_98 (sspec_number VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_22 WHERE sspec_number = \"slbze(c0)slbr8\"", "question": "What is Release Date, when sSpec Number is SLBZE(C0)SLBR8?", "context": "CREATE TABLE table_name_22 (release_date VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_60 WHERE model_number = \"atom z625\"", "question": "What is L2 Cache, when Model Number is Atom Z625?", "context": "CREATE TABLE table_name_60 (l2_cache VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_17 WHERE player = \"renaldo wynn\" AND round < 1", "question": "Which Pick has a Player of renaldo wynn, and a Round smaller than 1?", "context": "CREATE TABLE table_name_17 (pick VARCHAR, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_49 WHERE player = \"damon jones\"", "question": "Which Round has a Player of damon jones?", "context": "CREATE TABLE table_name_49 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_50 WHERE round < 2", "question": "Which College has a Round smaller than 2?", "context": "CREATE TABLE table_name_50 (college VARCHAR, round INTEGER)"}, {"answer": "SELECT event FROM table_name_94 WHERE location = \"northfield, mn\"", "question": "Which event is located in Northfield, Mn?", "context": "CREATE TABLE table_name_94 (event VARCHAR, location VARCHAR)"}, {"answer": "SELECT event FROM table_name_88 WHERE distance = \"ft10in (m)\"", "question": "Which event has a distance of ft10in (m)?", "context": "CREATE TABLE table_name_88 (event VARCHAR, distance VARCHAR)"}, {"answer": "SELECT distance FROM table_name_97 WHERE event = \"bass pro shops\"", "question": "What distance does the Bass Pro Shops event have?", "context": "CREATE TABLE table_name_97 (distance VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE handler = \"mike jackson\" AND event = \"indianapolis boat, sport & travel show\"", "question": "On what date was Mike Jackson a handler at the Indianapolis Boat, Sport & Travel Show?", "context": "CREATE TABLE table_name_56 (date VARCHAR, handler VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_78 WHERE attendance < 751", "question": "Who did they play when there were only 751 in attendance?", "context": "CREATE TABLE table_name_78 (opponent VARCHAR, attendance INTEGER)"}, {"answer": "SELECT date FROM table_name_14 WHERE venue = \"away\" AND opponent = \"swindon wildcats\"", "question": "When did they play the swindon wildcats away?", "context": "CREATE TABLE table_name_14 (date VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT man_of_the_match FROM table_name_28 WHERE venue = \"home\" AND opponent = \"romford raiders\"", "question": "Who was the Man of the Match when they played the Romford Raiders at home?", "context": "CREATE TABLE table_name_28 (man_of_the_match VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT nat FROM table_name_76 WHERE app_l_c_e_ = \"0 (0/0/0)\" AND name = \"yahaya\"", "question": "What is the Nationality of the player named Yahaya, who has as App(L/C/E) of 0 (0/0/0)?", "context": "CREATE TABLE table_name_76 (nat VARCHAR, app_l_c_e_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_61 WHERE app_l_c_e_ = \"0 (0/0/0)\" AND notes = \"to anagennisi karditsa\"", "question": "What was the transfer fee for the player who had an App(L/C/E) of 0 (0/0/0) and notes of to anagennisi karditsa?", "context": "CREATE TABLE table_name_61 (transfer_fee VARCHAR, app_l_c_e_ VARCHAR, notes VARCHAR)"}, {"answer": "SELECT british_name FROM table_name_50 WHERE american_name = \"sixteenth note\"", "question": "what is the british name when the american name is sixteenth note?", "context": "CREATE TABLE table_name_50 (british_name VARCHAR, american_name VARCHAR)"}, {"answer": "SELECT value FROM table_name_23 WHERE british_name = \"quaver\"", "question": "what is the value when the british name is quaver?", "context": "CREATE TABLE table_name_23 (value VARCHAR, british_name VARCHAR)"}, {"answer": "SELECT value FROM table_name_40 WHERE british_name = \"maxima\"", "question": "what is the value when the british name is maxima?", "context": "CREATE TABLE table_name_40 (value VARCHAR, british_name VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_65 WHERE date = \"28 january 1984\" AND tie_no = \"4\"", "question": "What is Home Team, when Date is \"28 January 1984\", and when Tie No is \"4\"?", "context": "CREATE TABLE table_name_65 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE away_team = \"gillingham\"", "question": "What is Date, when Away Team is \"Gillingham\"?", "context": "CREATE TABLE table_name_2 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_30 WHERE date = \"1 february 1984\" AND tie_no = \"5\"", "question": "What is Home Team, when Date is \"1 February 1984\", and when Tie No is \"5\"?", "context": "CREATE TABLE table_name_30 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_65 WHERE home_team = \"sheffield wednesday\"", "question": "What is Away Team, when Home Team is \"Sheffield Wednesday\"?", "context": "CREATE TABLE table_name_65 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE tie_no = \"replay\" AND away_team = \"crystal palace\"", "question": "What is Date, when Tie No is \"Replay\", and when Away Team is \"Crystal Palace\"?", "context": "CREATE TABLE table_name_85 (date VARCHAR, tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_92 WHERE player = \"tom kite\"", "question": "What to par has tom kite as the player?", "context": "CREATE TABLE table_name_92 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_65 WHERE finish = \"t57\"", "question": "What player has a t57 as the finish?", "context": "CREATE TABLE table_name_65 (player VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_81 WHERE year_s__won = \"1992\"", "question": "What is the lowest total that has 1992 as the year (s) won?", "context": "CREATE TABLE table_name_81 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT player FROM table_name_36 WHERE to_par = \"+21\"", "question": "What player has +21 as the to par?", "context": "CREATE TABLE table_name_36 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_5 WHERE total < 296", "question": "Which to par has a total less than 296?", "context": "CREATE TABLE table_name_5 (to_par VARCHAR, total INTEGER)"}, {"answer": "SELECT finish FROM table_name_35 WHERE to_par = \"+21\"", "question": "What finish has +21 as the to par?", "context": "CREATE TABLE table_name_35 (finish VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT COUNT(events) FROM table_name_58 WHERE cuts_made < 34 AND top_10 > 3", "question": "What is the total number of events that had 34 cuts and 3 in the top 10?", "context": "CREATE TABLE table_name_58 (events VARCHAR, cuts_made VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_7 WHERE date = \"january 3\"", "question": "Who had the most rebounds on January 3?", "context": "CREATE TABLE table_name_7 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_28 WHERE date > 1982 AND partner = \"guy forget\"", "question": "Which surface had a date after 1982 and partner of Guy Forget?", "context": "CREATE TABLE table_name_28 (surface VARCHAR, date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT result FROM table_name_48 WHERE week = 9", "question": "What was the result of the week 9 game?", "context": "CREATE TABLE table_name_48 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_18 WHERE date = \"november 16, 1975\"", "question": "What was the attendance during the november 16, 1975 game?", "context": "CREATE TABLE table_name_18 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(number_in_class) FROM table_name_13 WHERE owner = \"whitehaven coal\"", "question": "What is the total number in class for the Whitehaven Coal?", "context": "CREATE TABLE table_name_13 (number_in_class INTEGER, owner VARCHAR)"}, {"answer": "SELECT built FROM table_name_58 WHERE number_in_class < 10 AND owner = \"downer rail\"", "question": "What was built in a class with less than 10, and the Downer Rail owner?", "context": "CREATE TABLE table_name_58 (built VARCHAR, number_in_class VARCHAR, owner VARCHAR)"}, {"answer": "SELECT class FROM table_name_83 WHERE number_in_class > 15", "question": "Which class has more than 15 people in the class?", "context": "CREATE TABLE table_name_83 (class VARCHAR, number_in_class INTEGER)"}, {"answer": "SELECT owner FROM table_name_98 WHERE built = \"2009-2011\"", "question": "Who is the owner that built in 2009-2011?", "context": "CREATE TABLE table_name_98 (owner VARCHAR, built VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_33 WHERE manufacturer = \"aprilia\" AND rider = \"bradley smith\"", "question": "Count the Grid which has a Manufacturer of aprilia, and a Rider of bradley smith?", "context": "CREATE TABLE table_name_33 (grid INTEGER, manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT time FROM table_name_83 WHERE laps = 19 AND grid > 19 AND manufacturer = \"ktm\" AND rider = \"randy krummenacher\"", "question": "Name the Time which has Laps of 19, and a Grid larger than 19, and a Manufacturer of ktm, and a Rider of randy krummenacher?", "context": "CREATE TABLE table_name_83 (time VARCHAR, rider VARCHAR, manufacturer VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time FROM table_name_13 WHERE manufacturer = \"aprilia\" AND grid < 16 AND rider = \"sandro cortese\"", "question": "Name the Time which has a Manufacturer of aprilia, and a Grid smaller than 16, and a Rider of sandro cortese?", "context": "CREATE TABLE table_name_13 (time VARCHAR, rider VARCHAR, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_1 WHERE bronze = 19 AND total > 58", "question": "Name the Silver which has a Bronze of 19, and a Total larger than 58?", "context": "CREATE TABLE table_name_1 (silver INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_9 WHERE rank = \"3\" AND gold < 2", "question": "What kind of Silver has a Rank of 3, and a Gold smaller than 2?", "context": "CREATE TABLE table_name_9 (silver VARCHAR, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_19 WHERE bronze < 1", "question": "COunt the silver that has a Bronze smaller than 1?", "context": "CREATE TABLE table_name_19 (silver INTEGER, bronze INTEGER)"}, {"answer": "SELECT MAX(total) FROM table_name_70 WHERE silver > 19", "question": "Name the Total which has a Silver larger than 19?", "context": "CREATE TABLE table_name_70 (total INTEGER, silver INTEGER)"}, {"answer": "SELECT AVG(silver) FROM table_name_49 WHERE total < 2 AND nation = \"south korea\"", "question": "Name the  Silver that has a Total smaller than 2, and a Nation of south korea?", "context": "CREATE TABLE table_name_49 (silver INTEGER, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT location FROM table_name_47 WHERE opponent = \"chad armstrong\"", "question": "What is the location of the match with chad armstrong as the opponent?", "context": "CREATE TABLE table_name_47 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE player = \"scott verplank\"", "question": "What is Scott Verplank's score?", "context": "CREATE TABLE table_name_65 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_25 WHERE country = \"united states\" AND player = \"corey pavin\"", "question": "What place is United States player Corey Pavin in?", "context": "CREATE TABLE table_name_25 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_76 WHERE score = 70 - 71 - 72 = 213", "question": "Which country has a score of 70-71-72=213?", "context": "CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_95 WHERE player = \"bob tway\"", "question": "Where does Bob Tway Place?", "context": "CREATE TABLE table_name_95 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_59 WHERE to_par = \"e\" AND score = 69 - 69 - 72 = 210", "question": "What is the place with a to par of E and a score of 69-69-72=210?", "context": "CREATE TABLE table_name_59 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_26 WHERE player = \"dave barr\"", "question": "WHAT IS THE COUNTRY WITH DAVE BARR?", "context": "CREATE TABLE table_name_26 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_77 WHERE place = \"t7\" AND score = 72 - 67 = 139 AND player = \"raymond floyd\"", "question": "WHAT IS THE TO PAR WITH A T7 PLACE, SCORE OF 72-67=139, AND PLAYER RAYMOND FLOYD?", "context": "CREATE TABLE table_name_77 (to_par VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_78 WHERE player = \"mark o'meara\"", "question": "WHAT IS THE PLACE WITH PLAYER mark o'meara?", "context": "CREATE TABLE table_name_78 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_64 WHERE position < 4 AND lost < 2", "question": "Which Drawn is the highest one that has a Position smaller than 4, and a Lost smaller than 2?", "context": "CREATE TABLE table_name_64 (drawn INTEGER, position VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_42 WHERE position > 3 AND played < 14", "question": "How many Points have a Position larger than 3, and a Played smaller than 14?", "context": "CREATE TABLE table_name_42 (points VARCHAR, position VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_4 WHERE position = 4 AND drawn < 3", "question": "Which Lost has a Position of 4, and a Drawn smaller than 3?", "context": "CREATE TABLE table_name_4 (lost INTEGER, position VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_60 WHERE lost > 4 AND played > 14", "question": "Which Position has a Lost larger than 4, and a Played larger than 14?", "context": "CREATE TABLE table_name_60 (position INTEGER, lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_91 WHERE opponent = \"oakland raiders\"", "question": "On which week was the opponent the oakland raiders?", "context": "CREATE TABLE table_name_91 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_85 WHERE opponent = \"denver broncos\"", "question": "What was the attendance at the game where the opponent was the denver broncos?", "context": "CREATE TABLE table_name_85 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(enrollment) FROM table_name_38 WHERE location = \"platteville, wi\"", "question": "How many people are enrolled in platteville, wi?", "context": "CREATE TABLE table_name_38 (enrollment INTEGER, location VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_93 WHERE institution = \"university of wisconsin-platteville\"", "question": "What is the team nickname of university of wisconsin-platteville?", "context": "CREATE TABLE table_name_93 (nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_43 WHERE place = \"3\"", "question": "What is To Par, when Place is 3?", "context": "CREATE TABLE table_name_43 (to_par VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_89 WHERE player = \"rives mcbee\"", "question": "What is Country, when Player is \"Rives McBee\"?", "context": "CREATE TABLE table_name_89 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_93 WHERE player = \"tony lema\"", "question": "What is Place, when Player is \"Tony Lema\"?", "context": "CREATE TABLE table_name_93 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE to_par = \"e\"", "question": "What is Score, when To Par is \"E\"?", "context": "CREATE TABLE table_name_8 (score VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_26 WHERE score = 71 - 71 - 69 = 211", "question": "What is Country, when Score is 71-71-69=211?", "context": "CREATE TABLE table_name_26 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_13 WHERE score = 71 - 74 - 70 = 215", "question": "What is Country, when Score is 71-74-70=215?", "context": "CREATE TABLE table_name_13 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_71 WHERE played < 42", "question": "what is the lost when played is less than 42?", "context": "CREATE TABLE table_name_71 (lost INTEGER, played INTEGER)"}, {"answer": "SELECT goal_difference FROM table_name_82 WHERE drawn > 11 AND goals_against < 63 AND goals_for < 87 AND lost > 16", "question": "what is the goal difference when drawn is more than 11, goals against is less than 63, goals for is less than 87 and lost is more than 16?", "context": "CREATE TABLE table_name_82 (goal_difference VARCHAR, lost VARCHAR, goals_for VARCHAR, drawn VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_10 WHERE lost < 7 AND position = 2", "question": "how many times is lost less than 7 and the position 2?", "context": "CREATE TABLE table_name_10 (goals_for VARCHAR, lost VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_31 WHERE points_1 < 36 AND goals_for < 40 AND drawn < 9", "question": "what is the position when the points 1 is less than 36, goals for is less than 40 and drawn is less than 9?", "context": "CREATE TABLE table_name_31 (position INTEGER, drawn VARCHAR, points_1 VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT executions_in_persona FROM table_name_92 WHERE number_of_autos_da_f\u00e9_with_known_sentences = \"2 (1543\u20131544)\"", "question": "How many executions in persona have a number with known sentences of 2 (1543\u20131544)?", "context": "CREATE TABLE table_name_92 (executions_in_persona VARCHAR, number_of_autos_da_f\u00e9_with_known_sentences VARCHAR)"}, {"answer": "SELECT penanced FROM table_name_3 WHERE number_of_autos_da_f\u00e9_with_known_sentences = \"71 (1600\u20131773)\"", "question": "How many were penanced when the number with known sentences was 71 (1600\u20131773)?", "context": "CREATE TABLE table_name_3 (penanced VARCHAR, number_of_autos_da_f\u00e9_with_known_sentences VARCHAR)"}, {"answer": "SELECT penanced FROM table_name_48 WHERE total = \"7666\"", "question": "How many were penanced for a total of 7666?", "context": "CREATE TABLE table_name_48 (penanced VARCHAR, total VARCHAR)"}, {"answer": "SELECT executions_in_effigie FROM table_name_26 WHERE tribunal = \"lamego\"", "question": "How man executions in effigie took place at the Lamego tribunal?", "context": "CREATE TABLE table_name_26 (executions_in_effigie VARCHAR, tribunal VARCHAR)"}, {"answer": "SELECT penanced FROM table_name_65 WHERE executions_in_effigie = \"0\" AND total = \"21\"", "question": "How many were penanced with 0 executions in effigie for a total of 21?", "context": "CREATE TABLE table_name_65 (penanced VARCHAR, executions_in_effigie VARCHAR, total VARCHAR)"}, {"answer": "SELECT tribunal FROM table_name_34 WHERE total = \"4167\"", "question": "Which tribunal had a total of 4167?", "context": "CREATE TABLE table_name_34 (tribunal VARCHAR, total VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_50 WHERE date = \"october 20\"", "question": "What is the Opponent of the Game on October 20?", "context": "CREATE TABLE table_name_50 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT institution FROM table_name_44 WHERE location = \"reading, pa\"", "question": "Which institution is located in Reading, PA?", "context": "CREATE TABLE table_name_44 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_71 WHERE established = 1958", "question": "What was the nick name for the school established in 1958?", "context": "CREATE TABLE table_name_71 (nickname VARCHAR, established VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_65 WHERE team = \"mi-jack conquest racing\" AND driver = \"justin wilson\" AND grid < 5", "question": "When the grid is under 5 and justin wilson is driving for the team mi-jack conquest racing, what's the highest number of laps driven?", "context": "CREATE TABLE table_name_65 (laps INTEGER, grid VARCHAR, team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_8 WHERE team = \"newman/haas racing\" AND grid = 3", "question": "When the team is newman/haas racing and the grid size is 3, what's the time/retired?", "context": "CREATE TABLE table_name_8 (time_retired VARCHAR, team VARCHAR, grid VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_80 WHERE ground = \"a\" AND round = \"8\"", "question": "What tournament took place on Ground A with 8 rounds?", "context": "CREATE TABLE table_name_80 (tournament VARCHAR, ground VARCHAR, round VARCHAR)"}, {"answer": "SELECT series FROM table_name_20 WHERE title_rank = \"various\"", "question": "What series had the title rank of various?", "context": "CREATE TABLE table_name_20 (series VARCHAR, title_rank VARCHAR)"}, {"answer": "SELECT title_rank FROM table_name_7 WHERE series = \"1-8, 13\" AND character = \"arthur hastings\"", "question": "What is the title rank of the actor who played the character of arthur hastings during series 1-8, 13?", "context": "CREATE TABLE table_name_7 (title_rank VARCHAR, series VARCHAR, character VARCHAR)"}, {"answer": "SELECT title_rank FROM table_name_24 WHERE series = \"1-8, 13\" AND character = \"arthur hastings\"", "question": "What is the title rank of the actor who played the character of arthur hastings during series 1-8, 13?", "context": "CREATE TABLE table_name_24 (title_rank VARCHAR, series VARCHAR, character VARCHAR)"}, {"answer": "SELECT title_rank FROM table_name_93 WHERE actor = \"pauline moran\"", "question": "What is the title rank of actor pauline moran?", "context": "CREATE TABLE table_name_93 (title_rank VARCHAR, actor VARCHAR)"}, {"answer": "SELECT character FROM table_name_4 WHERE title_rank = \"various\"", "question": "Which character had a title rank of various?", "context": "CREATE TABLE table_name_4 (character VARCHAR, title_rank VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_73 WHERE game > 65 AND date = \"march 28\"", "question": "Who had the highest rebounds of the game with a game number higher than 65 on March 28?", "context": "CREATE TABLE table_name_73 (high_rebounds VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE game < 58 AND team = \"boston\"", "question": "WHAT DATE HAD A GAME SMALLER THAN 58, AND FROM BOSTON?", "context": "CREATE TABLE table_name_57 (date VARCHAR, game VARCHAR, team VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_name_73 WHERE nightly_rank = \"#6\" AND viewers__millions_ = 1.246", "question": "Original airdate for #6 with 1.246 viewers?", "context": "CREATE TABLE table_name_73 (original_airdate VARCHAR, nightly_rank VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT nightly_rank FROM table_name_21 WHERE viewers__millions_ > 1.244", "question": "Rank for viewers larger than 1.244?", "context": "CREATE TABLE table_name_21 (nightly_rank VARCHAR, viewers__millions_ INTEGER)"}, {"answer": "SELECT SUM(week) FROM table_name_24 WHERE result = \"w 20\u20136\"", "question": "How many weeks had a Result of w 20\u20136?", "context": "CREATE TABLE table_name_24 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_76 WHERE attendance = \"bye\"", "question": "Which Opponent has an Attendance of bye?", "context": "CREATE TABLE table_name_76 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(flaps) FROM table_name_2 WHERE podiums = 24 AND races > 143", "question": "WHAT IS THE FLAPS WITH PODIUMS OF 24 AND RACES BIGGER THAN 143?", "context": "CREATE TABLE table_name_2 (flaps INTEGER, podiums VARCHAR, races VARCHAR)"}, {"answer": "SELECT SUM(races) FROM table_name_93 WHERE flaps = 0 AND podiums > 0 AND season = \"2008\" AND pole < 1", "question": "WHAT ARE THE RACES WHEN FLAPS ARE ZERO, PODIUMS ARE LARGER THAN 0, SEASON IS 2008, AND POLE SMALLER THAN 1?", "context": "CREATE TABLE table_name_93 (races INTEGER, pole VARCHAR, season VARCHAR, flaps VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT MIN(races) FROM table_name_93 WHERE pole < 2 AND season = \"2007\"", "question": "WHAT ARE THE RACES WITH A POLE SMALLER THAN 2 IN 2007?", "context": "CREATE TABLE table_name_93 (races INTEGER, pole VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(races) FROM table_name_27 WHERE season = \"2010\" AND flaps > 6", "question": "WHAT ARE THE RACES FOR 2010 WITH FLAPS LARGER THAN 6?", "context": "CREATE TABLE table_name_27 (races INTEGER, season VARCHAR, flaps VARCHAR)"}, {"answer": "SELECT t20_matches FROM table_name_18 WHERE total = \"23\"", "question": "What T20 Match has a total of 23?", "context": "CREATE TABLE table_name_18 (t20_matches VARCHAR, total VARCHAR)"}, {"answer": "SELECT fc_matches FROM table_name_52 WHERE location = \"darlington\"", "question": "What FC Match was played in Darlington?", "context": "CREATE TABLE table_name_52 (fc_matches VARCHAR, location VARCHAR)"}, {"answer": "SELECT t20_matches FROM table_name_33 WHERE year = \"1979\"", "question": "What T20 match was played in 1979?", "context": "CREATE TABLE table_name_33 (t20_matches VARCHAR, year VARCHAR)"}, {"answer": "SELECT fc_matches FROM table_name_18 WHERE total = \"24\"", "question": "Which FC match has a total of 24?", "context": "CREATE TABLE table_name_18 (fc_matches VARCHAR, total VARCHAR)"}, {"answer": "SELECT location FROM table_name_45 WHERE fc_matches = \"12\"", "question": "Where was the FC match with a score of 12 played?", "context": "CREATE TABLE table_name_45 (location VARCHAR, fc_matches VARCHAR)"}, {"answer": "SELECT COUNT(oricon) FROM table_name_13 WHERE romaji_title = \"rakuen -memorial tracks- (maxi-single)\"", "question": "How many oricon's have a romaji title of rakuen -memorial tracks- (maxi-single)?", "context": "CREATE TABLE table_name_13 (oricon VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT reference FROM table_name_39 WHERE japanese_title = \"\u30a2\u30a4\u30b7\u30c6\u30eb\"", "question": "What reference is used with the title \u30a2\u30a4\u30b7\u30c6\u30eb?", "context": "CREATE TABLE table_name_39 (reference VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT reference FROM table_name_4 WHERE romaji_title = \"da.i.su.ki\"", "question": "What is the reference for the romani title da.i.su.ki?", "context": "CREATE TABLE table_name_4 (reference VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_88 WHERE romaji_title = \"ashita wa ashita no kaze ga fuku\"", "question": "What title to the japanese give the romani title ashita wa ashita no kaze ga fuku?", "context": "CREATE TABLE table_name_88 (japanese_title VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT club FROM table_name_49 WHERE founded > 1998", "question": "Which club was founded after 1998?", "context": "CREATE TABLE table_name_49 (club VARCHAR, founded INTEGER)"}, {"answer": "SELECT MIN(tries) FROM table_name_5 WHERE goals < 0", "question": "Which Tries has a Goal smaller than 0?", "context": "CREATE TABLE table_name_5 (tries INTEGER, goals INTEGER)"}, {"answer": "SELECT issue_price FROM table_name_44 WHERE theme = \"trumpeter swan\"", "question": "What was the issue price for the Trumpeter Swan set?", "context": "CREATE TABLE table_name_44 (issue_price VARCHAR, theme VARCHAR)"}, {"answer": "SELECT artist FROM table_name_87 WHERE mintage = \"40,000\" AND issue_price = \"45.95\"", "question": "Who was the artist with a mintage of 40,000 and an issue price of $45.95?", "context": "CREATE TABLE table_name_87 (artist VARCHAR, mintage VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_85 WHERE date = \"may 25\"", "question": "What is the highest number of points a player got during the game on May 25?", "context": "CREATE TABLE table_name_85 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT position FROM table_name_79 WHERE first_team_goals = \"ongoing\" AND current_club = \"aston villa\"", "question": "What is the position of the player who has ongoing first-team goals and currently plays for the Aston Villa club?", "context": "CREATE TABLE table_name_79 (position VARCHAR, first_team_goals VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE first_team_appearances = \"7\"", "question": "Who is the player who has had 7 first team appearances?", "context": "CREATE TABLE table_name_79 (player VARCHAR, first_team_appearances VARCHAR)"}, {"answer": "SELECT current_club FROM table_name_28 WHERE first_team_appearances = \"ongoing\" AND position = \"midfielder\" AND player = \"samir carruthers\"", "question": "What is the name of the club that has ongoing first-team appearances, a midfielder, and whose player is Samir Carruthers?", "context": "CREATE TABLE table_name_28 (current_club VARCHAR, player VARCHAR, first_team_appearances VARCHAR, position VARCHAR)"}, {"answer": "SELECT first_team_goals FROM table_name_73 WHERE player = \"samir carruthers\"", "question": "How many first-team goals does the team have whose player is Samir Carruthers?", "context": "CREATE TABLE table_name_73 (first_team_goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_47 WHERE first_team_appearances = \"ongoing\" AND current_club = \"aston villa\" AND player = \"graham burke\"", "question": "What position has ongoing first-team appearances, Graham Burke for a player, and whose club is Aston Villa?", "context": "CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR, first_team_appearances VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT position FROM table_name_7 WHERE first_team_appearances = \"7\"", "question": "Which position has had 7 first-team appearances?", "context": "CREATE TABLE table_name_7 (position VARCHAR, first_team_appearances VARCHAR)"}, {"answer": "SELECT theme FROM table_name_72 WHERE issue_price = \"$508.95\"", "question": "What was the theme when the issue price was $508.95?", "context": "CREATE TABLE table_name_72 (theme VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT mintage FROM table_name_18 WHERE theme = \"year of the rabbit\"", "question": "What's the mintage when the theme was year of the rabbit?", "context": "CREATE TABLE table_name_18 (mintage VARCHAR, theme VARCHAR)"}, {"answer": "SELECT year FROM table_name_43 WHERE theme = \"year of the pig\"", "question": "What year was the year of the pig theme?", "context": "CREATE TABLE table_name_43 (year VARCHAR, theme VARCHAR)"}, {"answer": "SELECT artist FROM table_name_76 WHERE theme = \"year of the snake\"", "question": "Who was the artist for the year of the snake?", "context": "CREATE TABLE table_name_76 (artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT COUNT(frequency_mhz) FROM table_name_41 WHERE city_of_license = \"port charlotte, florida\" AND erp_w > 10", "question": "What is the total Frequency MHz Port Charlotte, Florida, which has an ERP W larger than 10, has?", "context": "CREATE TABLE table_name_41 (frequency_mhz VARCHAR, city_of_license VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_38 WHERE erp_w > 10", "question": "What is the call sign for the translator with an ERP W larger than 10?", "context": "CREATE TABLE table_name_38 (call_sign VARCHAR, erp_w INTEGER)"}, {"answer": "SELECT MAX(erp_w) FROM table_name_94 WHERE call_sign = \"w284av\"", "question": "What is the highest ERP W of the translator with a call sign of w284av?", "context": "CREATE TABLE table_name_94 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_92 WHERE home_team = \"collingwood\"", "question": "How big was the crowd of the Home team of Collingwood?", "context": "CREATE TABLE table_name_92 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_85 WHERE home_team = \"south melbourne\"", "question": "What was the away team when the home team was south melbourne?", "context": "CREATE TABLE table_name_85 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_34 WHERE college = \"calgary\"", "question": "Who was recruited from Calgary?", "context": "CREATE TABLE table_name_34 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_43 WHERE rank > 5", "question": "What number of wins was ranked higher than 5?", "context": "CREATE TABLE table_name_43 (wins INTEGER, rank INTEGER)"}, {"answer": "SELECT rank FROM table_name_35 WHERE wins > 11 AND player = \"miller barber\"", "question": "What rank is Miller Barber with more than 11 wins?", "context": "CREATE TABLE table_name_35 (rank VARCHAR, wins VARCHAR, player VARCHAR)"}, {"answer": "SELECT venue FROM table_name_34 WHERE home_team = \"collingwood\"", "question": "What was the venue when Collingwood was the home team?", "context": "CREATE TABLE table_name_34 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_75 WHERE venue = \"vfl park\"", "question": "What was the largest crowd at vfl park?", "context": "CREATE TABLE table_name_75 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_16 WHERE home_team = \"south melbourne\"", "question": "How many people were at the game where the home team was South Melbourne?", "context": "CREATE TABLE table_name_16 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_25 WHERE away_team = \"footscray\"", "question": "What was the score when the away team was Footscray?", "context": "CREATE TABLE table_name_25 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_56 WHERE away_team = \"collingwood\"", "question": "What was the score when the away team was Collingwood?", "context": "CREATE TABLE table_name_56 (away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_15 WHERE venue = \"corio oval\"", "question": "What was the home team that played at Corio Oval?", "context": "CREATE TABLE table_name_15 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(goal) FROM table_name_13 WHERE date = \"november 22, 1994\"", "question": "How many goals were scored on November 22, 1994?", "context": "CREATE TABLE table_name_13 (goal INTEGER, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE goal = 9", "question": "What was the result of the game with 9 goals?", "context": "CREATE TABLE table_name_49 (result VARCHAR, goal VARCHAR)"}, {"answer": "SELECT MAX(for_prohibition) FROM table_name_43 WHERE percent_against > 10.8 AND percent_for < 72.2 AND jurisdiction = \"british columbia\" AND against_prohibition < 4 OFFSET 756", "question": "What is the highest number supporting prohibition in British Columbia when the percent opposing is more than 10.8, the percent supporting is less than 72.2, number against is less than 4,756?", "context": "CREATE TABLE table_name_43 (for_prohibition INTEGER, against_prohibition VARCHAR, jurisdiction VARCHAR, percent_against VARCHAR, percent_for VARCHAR)"}, {"answer": "SELECT COUNT(apparent_magnitude) FROM table_name_24 WHERE constellation = \"sculptor\"", "question": "what is the apparent magnitude of the constellation sculptor", "context": "CREATE TABLE table_name_24 (apparent_magnitude VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_15 WHERE object_type = \"spiral galaxy\" AND apparent_magnitude > 12.2", "question": "What is the Right ascension of the Object type spiral galaxy that has an Apparent magnitude larger that 12.2", "context": "CREATE TABLE table_name_15 (right_ascension___j2000__ VARCHAR, object_type VARCHAR, apparent_magnitude VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_60 WHERE apparent_magnitude > 7.7 AND ngc_number = 7777", "question": "Which Constellation has an Apparent magnitude larger that 7.7, and an NGC number of 7777", "context": "CREATE TABLE table_name_60 (constellation VARCHAR, apparent_magnitude VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_62 WHERE rounds = \"1\" AND driver = \"maria teresa de filippis\"", "question": "What is the name of the Chassis of Diver Maria Teresa de Filippis in round 1?", "context": "CREATE TABLE table_name_62 (chassis VARCHAR, rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(yards) FROM table_name_6 WHERE player = \"james macpherson\" AND long < 1", "question": "How many yards have a Player of james macpherson, and a Long smaller than 1?", "context": "CREATE TABLE table_name_6 (yards VARCHAR, player VARCHAR, long VARCHAR)"}, {"answer": "SELECT MIN(car) FROM table_name_37 WHERE yards > 122", "question": "What is the lowest car with more than 122 yards?", "context": "CREATE TABLE table_name_37 (car INTEGER, yards INTEGER)"}, {"answer": "SELECT MIN(round) FROM table_name_7 WHERE player = \"ryan thang\"", "question": "What round was Ryan Thang drafted in?", "context": "CREATE TABLE table_name_7 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_82 WHERE car__number > 9 AND driver = \"jeff burton\" AND points > 118", "question": "How many laps did Jeff Burton have when he drove car with a # over 9 and more than 118 points?", "context": "CREATE TABLE table_name_82 (laps VARCHAR, points VARCHAR, car__number VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_28 WHERE driver = \"scott riggs\" AND laps > 400", "question": "What was Scott Riggs points when he had more than 400 laps?", "context": "CREATE TABLE table_name_28 (points INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_42 WHERE car__number < 5 AND make = \"dodge\"", "question": "Who drove the dodge with a car # less than 5?", "context": "CREATE TABLE table_name_42 (driver VARCHAR, car__number VARCHAR, make VARCHAR)"}, {"answer": "SELECT team FROM table_name_39 WHERE game < 78 AND high_rebounds = \"perkins (9)\"", "question": "What team had a high rebound of perkins (9) and a game smaller than 78?", "context": "CREATE TABLE table_name_39 (team VARCHAR, game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE high_assists = \"rondo (5)\" AND high_rebounds = \"rondo (10)\"", "question": "What date were the high assists rondo (5) and the high rebounds rondo (10)?", "context": "CREATE TABLE table_name_18 (date VARCHAR, high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_71 WHERE date = \"april 11\"", "question": "On the date April 11, what were the high points?", "context": "CREATE TABLE table_name_71 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_4 WHERE date = \"april 11\"", "question": "On the date April 11, what is the total game number?", "context": "CREATE TABLE table_name_4 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_30 WHERE year = \"1957\"", "question": "What actor made a film in 1957?", "context": "CREATE TABLE table_name_30 (name VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_25 WHERE name = \"miyoshi umeki\"", "question": "What year did Miyoshi Umeki make a film?", "context": "CREATE TABLE table_name_25 (year VARCHAR, name VARCHAR)"}, {"answer": "SELECT status FROM table_name_56 WHERE \"role\" = \"role\"", "question": "What status has a role?", "context": "CREATE TABLE table_name_56 (status VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_98 WHERE nominees = \"david mundy\"", "question": "what is the earliest round for nominee david mundy?", "context": "CREATE TABLE table_name_98 (round INTEGER, nominees VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_79 WHERE ground = \"telstra dome\" AND nominees = \"shaun burgoyne\"", "question": "what round saw the ground of telstra dome and shaun burgoyne as nominees?", "context": "CREATE TABLE table_name_79 (round INTEGER, ground VARCHAR, nominees VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_17 WHERE goals_against < 39 AND losses > 2 AND ties > 0", "question": "What has the lowest number of wins with GA smaller than 39, more than 2 losses, and ties greater than 0?", "context": "CREATE TABLE table_name_17 (wins INTEGER, ties VARCHAR, goals_against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MAX(ties) FROM table_name_56 WHERE losses < 4 AND goals_against < 20", "question": "Which team has the most ties with fewer than 4 losses and GA smaller than 20?", "context": "CREATE TABLE table_name_56 (ties INTEGER, losses VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_1 WHERE games_played = 7 AND goals_against < 27", "question": "How many games did the team lose that played 7 games and has a GA of less than 27?", "context": "CREATE TABLE table_name_1 (losses VARCHAR, games_played VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE loser = \"chicago bears\" AND location = \"green bay\" AND year < 1931", "question": "what date saw the chicago bears lose in green bay earlier than 1931?", "context": "CREATE TABLE table_name_12 (date VARCHAR, year VARCHAR, loser VARCHAR, location VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_89 WHERE away_team = \"melbourne\"", "question": "What is the Away team score for Away team Melbourne?", "context": "CREATE TABLE table_name_89 (away_team VARCHAR)"}, {"answer": "SELECT years FROM table_name_35 WHERE displacement = \"4.0l (242cid)\"", "question": "what is the years for the displacement 4.0l (242cid)?", "context": "CREATE TABLE table_name_35 (years VARCHAR, displacement VARCHAR)"}, {"answer": "SELECT engine FROM table_name_67 WHERE torque = \"lb\u00b7ft (n\u00b7m)\"", "question": "Which engine has a torgue of lb\u00b7ft (n\u00b7m)?", "context": "CREATE TABLE table_name_67 (engine VARCHAR, torque VARCHAR)"}, {"answer": "SELECT years FROM table_name_15 WHERE tied < 31 AND pct = 0.5451", "question": "How many years for the team with under 31 ties and a percentage of 0.5451?", "context": "CREATE TABLE table_name_15 (years VARCHAR, tied VARCHAR, pct VARCHAR)"}, {"answer": "SELECT COUNT(tied) FROM table_name_69 WHERE mountain_west = \"air force\" AND years > 57", "question": "How many games tied for the air force with over 57 years participating?", "context": "CREATE TABLE table_name_69 (tied VARCHAR, mountain_west VARCHAR, years VARCHAR)"}, {"answer": "SELECT description FROM table_name_58 WHERE date = 1911", "question": "What is the description where the date is 1911?", "context": "CREATE TABLE table_name_58 (description VARCHAR, date VARCHAR)"}, {"answer": "SELECT number_ & _name FROM table_name_37 WHERE date < 1905", "question": "What is the number and name where the date is earlier than 1905?", "context": "CREATE TABLE table_name_37 (number_ VARCHAR, _name VARCHAR, date INTEGER)"}, {"answer": "SELECT years FROM table_name_35 WHERE name = \"mount roskill grammar school\"", "question": "What year was the name mount roskill grammar school?", "context": "CREATE TABLE table_name_35 (years VARCHAR, name VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_41 WHERE home_team = \"melbourne\"", "question": "When melbourne played as the home team, who did they play?", "context": "CREATE TABLE table_name_41 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_80 WHERE home_team = \"geelong\"", "question": "When the home team was geelong, who played as the away team?", "context": "CREATE TABLE table_name_80 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_93 WHERE home_team = \"north melbourne\"", "question": "If north melbourne played as the home team, who was the away team they played?", "context": "CREATE TABLE table_name_93 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_23 WHERE home_team = \"st kilda\"", "question": "When st kilda was playing at home what was the away teams score?", "context": "CREATE TABLE table_name_23 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT production_code FROM table_name_1 WHERE season__number < 8 AND series__number < 31 AND original_air_date = \"september 21, 1995\"", "question": "What is the production code of the episode before season 8, with a series number less than 31, and aired on September 21, 1995?", "context": "CREATE TABLE table_name_1 (production_code VARCHAR, original_air_date VARCHAR, season__number VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_93 WHERE away_team = \"hawthorn\"", "question": "What is the smallest amount of spectators when the away team was Hawthorn?", "context": "CREATE TABLE table_name_93 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_54 WHERE away_team = \"richmond\"", "question": "How many people attended when the away team was Richmond?", "context": "CREATE TABLE table_name_54 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE decision = \"toivonen\" AND record = \"18\u201314\u20134\"", "question": "What was the score when the record was 18\u201314\u20134 with a toivonen decision?", "context": "CREATE TABLE table_name_11 (score VARCHAR, decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_23 WHERE home = \"calgary\"", "question": "What's the sum of the attendance for the calgary home team?", "context": "CREATE TABLE table_name_23 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_98 WHERE visitor = \"chicago\"", "question": "What was the record when chicago was the visiting team?", "context": "CREATE TABLE table_name_98 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE series = \"0\u20131\"", "question": "What was the date of the game when the record of the series was 0\u20131?", "context": "CREATE TABLE table_name_10 (date VARCHAR, series VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_58 WHERE home_team = \"south melbourne\"", "question": "What is the score for the away team when South Melbourne was the home team?", "context": "CREATE TABLE table_name_58 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_66 WHERE year = 2001 AND location = \"network associates coliseum\"", "question": "What was the score of the 2001 game held at Network Associates Coliseum?", "context": "CREATE TABLE table_name_66 (result VARCHAR, year VARCHAR, location VARCHAR)"}, {"answer": "SELECT region FROM table_name_52 WHERE home_venue = \"giuseppe sivori\"", "question": "What region has giuseppe sivori as a home venue?", "context": "CREATE TABLE table_name_52 (region VARCHAR, home_venue VARCHAR)"}, {"answer": "SELECT city FROM table_name_67 WHERE short_name = \"pontisola\"", "question": "What city has the nickname of pontisola?", "context": "CREATE TABLE table_name_67 (city VARCHAR, short_name VARCHAR)"}, {"answer": "SELECT name FROM table_name_40 WHERE home_venue = \"comunale\" AND city = \"darfo boario terme\"", "question": "What squad plays at comunale in darfo boario terme?", "context": "CREATE TABLE table_name_40 (name VARCHAR, home_venue VARCHAR, city VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_62 WHERE league_from = \"western hockey league\" AND player = \"scott glennie\"", "question": "What pick was Scott Glennie from the Western hockey league", "context": "CREATE TABLE table_name_62 (pick__number VARCHAR, league_from VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_40 WHERE nationality = \"united states\" AND league_from = \"western collegiate hockey association\"", "question": "What player from the United States played in the western collegiate hockey association?", "context": "CREATE TABLE table_name_40 (player VARCHAR, nationality VARCHAR, league_from VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_25 WHERE time_retired = \"+1 lap\" AND constructor = \"brm\" AND grid > 1", "question": "Where the time/retired is +1 lap, the constructor is BRM, and the grid is above 1, what's the highest laps recorded?", "context": "CREATE TABLE table_name_25 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_69 WHERE laps < 9 AND time_retired = \"engine\"", "question": "When the laps driven were under 9 and the time/retired recorded was engine, what's the total number of grid values?", "context": "CREATE TABLE table_name_69 (grid VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_59 WHERE grid = 3", "question": "Which driver has a grid of 3?", "context": "CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_58 WHERE constructor = \"honda\" AND laps = 31", "question": "When the laps are 31 and the constructor was honda, what's the sum of all grid values?", "context": "CREATE TABLE table_name_58 (grid INTEGER, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_69 WHERE rounds = \"all\" AND entrant = \"benson and hedges jordan\" AND driver = \"damon hill\"", "question": "What is the chassis for all rounds on the entrant Benson and Hedges Jordan driven by Damon Hill?", "context": "CREATE TABLE table_name_69 (chassis VARCHAR, driver VARCHAR, rounds VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_84 WHERE driver = \"alexander wurz\"", "question": "What is the constructor of driver Alexander Wurz?", "context": "CREATE TABLE table_name_84 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_53 WHERE rounds = \"all\" AND chassis = \"f399\"", "question": "Who was the driver that had all rounds and a f399 chassis?", "context": "CREATE TABLE table_name_53 (driver VARCHAR, rounds VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_33 WHERE engine_\u2020 = \"ferrari 048\"", "question": "What were the rounds on the Engine \u2020 of the Ferrari 048?", "context": "CREATE TABLE table_name_33 (rounds VARCHAR, engine_\u2020 VARCHAR)"}, {"answer": "SELECT semifinal FROM table_name_47 WHERE event = \"team\"", "question": "Which Semifinal has an Event of team?", "context": "CREATE TABLE table_name_47 (semifinal VARCHAR, event VARCHAR)"}, {"answer": "SELECT quarterfinal FROM table_name_28 WHERE rank > 9", "question": "Which Quarterfinal has a Rank larger than 9?", "context": "CREATE TABLE table_name_28 (quarterfinal VARCHAR, rank INTEGER)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_46 WHERE position = \"db\"", "question": "What is the pick number of the DB?", "context": "CREATE TABLE table_name_46 (pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM \"t\" AS able_name_20 WHERE pick__number > 13 AND position = \"t\"", "question": "What college did the T who was pick after 13 go to?", "context": "CREATE TABLE t (Id VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_5 WHERE college = \"boston college\"", "question": "Which CFL team drafted a pick from Boston College?", "context": "CREATE TABLE table_name_5 (cfl_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_51 WHERE college = \"saskatchewan\"", "question": "What position did the Saskatchewan player get drafted as?", "context": "CREATE TABLE table_name_51 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_32 WHERE laps > 53", "question": "When the laps are over 53, what's the average grid?", "context": "CREATE TABLE table_name_32 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT AVG(laps) FROM table_name_75 WHERE driver = \"david coulthard\"", "question": "What's the average laps driven by david coulthard?", "context": "CREATE TABLE table_name_75 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_8 WHERE year < 1883", "question": "who is the opponent in the final when the year is before 1883?", "context": "CREATE TABLE table_name_8 (opponent_in_the_final VARCHAR, year INTEGER)"}, {"answer": "SELECT outcome FROM table_name_4 WHERE year = 1887", "question": "what is the outcome for the 1887?", "context": "CREATE TABLE table_name_4 (outcome VARCHAR, year VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_24 WHERE year > 1882 AND opponent_in_the_final = \"william renshaw\"", "question": "what is the outcome when the opponent in the final is william renshaw after year 1882?", "context": "CREATE TABLE table_name_24 (outcome VARCHAR, year VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE year > 1882 AND outcome = \"runner-up\" AND opponent_in_the_final = \"herbert lawford\"", "question": "what is the score when the outcome is runner-up, the opponent in the final is herbert lawford and the year is after 1882?", "context": "CREATE TABLE table_name_39 (score VARCHAR, opponent_in_the_final VARCHAR, year VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT artist FROM table_name_29 WHERE mintage > 34 OFFSET 135", "question": "What artist has a mintage of greater than 34,135?", "context": "CREATE TABLE table_name_29 (artist VARCHAR, mintage INTEGER)"}, {"answer": "SELECT artist FROM table_name_71 WHERE year = 2005", "question": "What artist was released in 2005?", "context": "CREATE TABLE table_name_71 (artist VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_35 WHERE team = \"melbourne\"", "question": "What's melbourne's average year?", "context": "CREATE TABLE table_name_35 (year INTEGER, team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_71 WHERE player = \"ashley sampi\"", "question": "Who was ashley sampi's opponent?", "context": "CREATE TABLE table_name_71 (opponent VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_59 WHERE year > 1935 AND player = \"daniel bradshaw\"", "question": "Which team did daniel bradshaw play for after 1935?", "context": "CREATE TABLE table_name_59 (team VARCHAR, year VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_25 WHERE year = 1992", "question": "Who played in 1992?", "context": "CREATE TABLE table_name_25 (player VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE away_team = \"fitzroy\"", "question": "What date was fitzroy the away team?", "context": "CREATE TABLE table_name_65 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT surface FROM table_name_13 WHERE partner = \"carlos berlocq\"", "question": "Name the surface when the partner is carlos berlocq", "context": "CREATE TABLE table_name_13 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE surface = \"clay\" AND score = \"0\u20136, 0\u20136\"", "question": "Name the date for clay surface and score of 0\u20136, 0\u20136", "context": "CREATE TABLE table_name_75 (date VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT partner FROM table_name_80 WHERE score = \"6\u20133, 6\u20132\"", "question": "Name the partner with score of 6\u20133, 6\u20132", "context": "CREATE TABLE table_name_80 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_99 WHERE surface = \"clay\" AND outcome = \"winner\" AND score = \"6\u20133, 6\u20132\"", "question": "Name the tournament for clay surface and outcome is winner with score is 6\u20133, 6\u20132", "context": "CREATE TABLE table_name_99 (tournament VARCHAR, score VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_70 WHERE date = \"6 october 2013\"", "question": "Name the outcome on 6 october 2013", "context": "CREATE TABLE table_name_70 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT song FROM table_name_55 WHERE total_points > 9 AND jury__points_ = \"44 (11)\"", "question": "What is the song with more than 9 points and 44 (11) jury (points)?", "context": "CREATE TABLE table_name_55 (song VARCHAR, total_points VARCHAR, jury__points_ VARCHAR)"}, {"answer": "SELECT artist FROM table_name_11 WHERE televotes__points_ = \"2153 (5)\"", "question": "Who is the artist with 2153 (5) televotes (points)?", "context": "CREATE TABLE table_name_11 (artist VARCHAR, televotes__points_ VARCHAR)"}, {"answer": "SELECT MIN(total_points) FROM table_name_8 WHERE draw < 4 AND artist = \"karine tr\u00e9cy\"", "question": "What is the lowest total points Karine Tr\u00e9cy has with less than 4 draws?", "context": "CREATE TABLE table_name_8 (total_points INTEGER, draw VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MIN(total_points) FROM table_name_84 WHERE artist = \"karine tr\u00e9cy\" AND place < 12", "question": "What is the lowest total points Karine Tr\u00e9cy has with a less than 12 place?", "context": "CREATE TABLE table_name_84 (total_points INTEGER, artist VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(18 AS _49) FROM table_name_96 WHERE viewers__m_ = 3.93 AND share < 4", "question": "What is the average rating of viewers 18 to 49 where the total viewer count is 3.93 million and share less than 4?", "context": "CREATE TABLE table_name_96 (viewers__m_ VARCHAR, share VARCHAR)"}, {"answer": "SELECT COUNT(18 AS _49) FROM table_name_47 WHERE air_date = \"january 7, 2009\"", "question": "What is the total number of ratings among the 18 to 49 group that was aired on January 7, 2009?", "context": "CREATE TABLE table_name_47 (air_date VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_16 WHERE driver = \"mike hailwood\" AND grid > 7", "question": "What was Mike Hailwood's highest laps when he had a grid more than 7?", "context": "CREATE TABLE table_name_16 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT name FROM table_name_77 WHERE cerclis_id = \"prd980512362\"", "question": "What is the name of the site with a CERCLIS ID of prd980512362?", "context": "CREATE TABLE table_name_77 (name VARCHAR, cerclis_id VARCHAR)"}, {"answer": "SELECT listed FROM table_name_22 WHERE municipality = \"florida\"", "question": "What is the site for Florida?", "context": "CREATE TABLE table_name_22 (listed VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT deleted FROM table_name_8 WHERE name = \"rca del caribe\"", "question": "What site in the RCA Del Caribe was deleted?", "context": "CREATE TABLE table_name_8 (deleted VARCHAR, name VARCHAR)"}, {"answer": "SELECT partially_deleted FROM table_name_65 WHERE name = \"fibers public supply wells\"", "question": "Where is the partially deleted site of fibers public supply wells located?", "context": "CREATE TABLE table_name_65 (partially_deleted VARCHAR, name VARCHAR)"}, {"answer": "SELECT municipality FROM table_name_35 WHERE proposed = \"03/08/2004\"", "question": "The proposed 03/08/2004 site is in what municipality?", "context": "CREATE TABLE table_name_35 (municipality VARCHAR, proposed VARCHAR)"}, {"answer": "SELECT release_format FROM table_name_55 WHERE release_date > 1983", "question": "What is the release format for titles after 1983?", "context": "CREATE TABLE table_name_55 (release_format VARCHAR, release_date INTEGER)"}, {"answer": "SELECT venue FROM table_name_39 WHERE home_team = \"carlton\"", "question": "What venue is the home of the Carlton team?", "context": "CREATE TABLE table_name_39 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT driver FROM table_name_88 WHERE laps = \"68\" AND grid = \"18\"", "question": "Which driver had a grid of 18 with 68 laps?", "context": "CREATE TABLE table_name_88 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_58 WHERE grid = \"18\"", "question": "Which driver had a grid of 18?", "context": "CREATE TABLE table_name_58 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_43 WHERE grid = \"22\"", "question": "Which driver had a grid of 22?", "context": "CREATE TABLE table_name_43 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT season FROM table_name_41 WHERE wicket_partnership = \"2nd\"", "question": "Which season is the wicket 2nd partnership in?", "context": "CREATE TABLE table_name_41 (season VARCHAR, wicket_partnership VARCHAR)"}, {"answer": "SELECT venue FROM table_name_4 WHERE opponents = \"v kent\"", "question": "Where did v kent play?", "context": "CREATE TABLE table_name_4 (venue VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT runs FROM table_name_28 WHERE batsmen = \"james bryant graeme welch\"", "question": "Which runs had james bryant graeme welch as Batsmen?", "context": "CREATE TABLE table_name_28 (runs VARCHAR, batsmen VARCHAR)"}, {"answer": "SELECT clay FROM table_name_36 WHERE record = \"2\u20130\" AND hard = \"1\u20130\"", "question": "Which clay has a Record of 2\u20130, and a Hard 1\u20130?", "context": "CREATE TABLE table_name_36 (clay VARCHAR, record VARCHAR, hard VARCHAR)"}, {"answer": "SELECT hard FROM table_name_10 WHERE clay = \"0\u20130\" AND grass = \"0\u20130\" AND carpet = \"0\u20130\" AND record = \"1\u20130\"", "question": "Which hard has a Clay of 0\u20130, Grass of 0\u20130,  Carpet of 0\u20130, and a Record of 1\u20130?", "context": "CREATE TABLE table_name_10 (hard VARCHAR, record VARCHAR, carpet VARCHAR, clay VARCHAR, grass VARCHAR)"}, {"answer": "SELECT carpet FROM table_name_1 WHERE clay = \"1\u20130\" AND hard = \"1\u20131\"", "question": "Which carpet has a Clay of 1\u20130 and a Hard 1\u20131?", "context": "CREATE TABLE table_name_1 (carpet VARCHAR, clay VARCHAR, hard VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_5 WHERE population > 93 OFFSET 378", "question": "Name the most rank for population more than 93,378", "context": "CREATE TABLE table_name_5 (rank INTEGER, population INTEGER)"}, {"answer": "SELECT award FROM table_name_18 WHERE year = 1992", "question": "What award is featured in 1992?", "context": "CREATE TABLE table_name_18 (award VARCHAR, year VARCHAR)"}, {"answer": "SELECT award FROM table_name_85 WHERE year < 1998 AND type = \"won\" AND category = \"best sound\" AND title = \"the exorcist\"", "question": "What award was won in the best sound category for the exorcist before 1998?", "context": "CREATE TABLE table_name_85 (award VARCHAR, title VARCHAR, category VARCHAR, year VARCHAR, type VARCHAR)"}, {"answer": "SELECT 1953 FROM table_name_25 WHERE richmond_[staten_is] = \"1,019\"", "question": "What was the candidate that got 1,019 votes for staten island?", "context": "CREATE TABLE table_name_25 (richmond_ VARCHAR, staten_is VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_28 WHERE date = \"august 29\"", "question": "What was the opposing team for the game on August 29?", "context": "CREATE TABLE table_name_28 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_68 WHERE tries = \"11\"", "question": "which player has 11 tries?", "context": "CREATE TABLE table_name_68 (player VARCHAR, tries VARCHAR)"}, {"answer": "SELECT player FROM table_name_45 WHERE conv = \"14\"", "question": "which player has a conv of 14?", "context": "CREATE TABLE table_name_45 (player VARCHAR, conv VARCHAR)"}, {"answer": "SELECT conv FROM table_name_19 WHERE span = \"1992-2000\"", "question": "on the span of 1992-2000, what was the conv ?", "context": "CREATE TABLE table_name_19 (conv VARCHAR, span VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_32 WHERE artist = \"martine foubert\" AND place > 2", "question": "What is the high point toal for martine foubert placing below 2?", "context": "CREATE TABLE table_name_32 (points INTEGER, artist VARCHAR, place VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_64 WHERE away_team = \"melbourne\"", "question": "How much did the away team Melbourne score?", "context": "CREATE TABLE table_name_64 (away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_5 WHERE home_team = \"richmond\"", "question": "What is the highest crowd number for the home team Richmond?", "context": "CREATE TABLE table_name_5 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_76 WHERE venue = \"glenferrie oval\"", "question": "What home team played at Glenferrie Oval?", "context": "CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_51 WHERE away_team = \"st kilda\"", "question": "How much did the away team St Kilda score?", "context": "CREATE TABLE table_name_51 (away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_28 WHERE away_team = \"st kilda\"", "question": "Which Crowd has an Away team of st kilda?", "context": "CREATE TABLE table_name_28 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_8 WHERE final_score = \"26\u201321\"", "question": "What stadium has a final score of 26\u201321?", "context": "CREATE TABLE table_name_8 (stadium VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_94 WHERE stadium = \"texas stadium\" AND visiting_team = \"new orleans saints\"", "question": "When the new orleans saints were visiting texas stadium, what was the final score?", "context": "CREATE TABLE table_name_94 (final_score VARCHAR, stadium VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_43 WHERE stadium = \"texas stadium\" AND date = \"september 17\"", "question": "What was the final score at texas stadium on September 17?", "context": "CREATE TABLE table_name_43 (final_score VARCHAR, stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_9 WHERE visiting_team = \"indianapolis colts\" AND stadium = \"giants stadium\"", "question": "What was the final score for the game at giants stadium when the indianapolis colts were the visiting team?", "context": "CREATE TABLE table_name_9 (final_score VARCHAR, visiting_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT investment_earnings FROM table_name_82 WHERE state_ & _federal = \"8,549,565\"", "question": "What were the investment earnings in the year that State and Federal taxes were $8,549,565?", "context": "CREATE TABLE table_name_82 (investment_earnings VARCHAR, state_ VARCHAR, _federal VARCHAR)"}, {"answer": "SELECT investment_earnings FROM table_name_26 WHERE state_ & _federal = \"13,999,169\"", "question": "What were the investment earnings in the year that State and Federal taxes were $13,999,169?", "context": "CREATE TABLE table_name_26 (investment_earnings VARCHAR, state_ VARCHAR, _federal VARCHAR)"}, {"answer": "SELECT investment_earnings FROM table_name_3 WHERE year > 2001 AND other_local_sources = \"$2,670,060\"", "question": "What were the investment earnings in a year when other local sources were $2,670,060 after 2001?", "context": "CREATE TABLE table_name_3 (investment_earnings VARCHAR, year VARCHAR, other_local_sources VARCHAR)"}, {"answer": "SELECT investment_earnings FROM table_name_23 WHERE total_revenue = \"21,779,618\"", "question": "What were the investment earnings in a year when total revenue was $21,779,618?", "context": "CREATE TABLE table_name_23 (investment_earnings VARCHAR, total_revenue VARCHAR)"}, {"answer": "SELECT property_taxes FROM table_name_33 WHERE year > 2002 AND total_revenue = \"$40,891,700\"", "question": "What were property taxes in a year when total revenue was $40,891,700 after 2002?", "context": "CREATE TABLE table_name_33 (property_taxes VARCHAR, year VARCHAR, total_revenue VARCHAR)"}, {"answer": "SELECT rank FROM table_name_28 WHERE season = 1", "question": "What rank for season 1?", "context": "CREATE TABLE table_name_28 (rank VARCHAR, season VARCHAR)"}, {"answer": "SELECT week FROM table_name_66 WHERE attendance = \"27,262\"", "question": "What week had an attendance of 27,262?", "context": "CREATE TABLE table_name_66 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE attendance = \"20,456\"", "question": "What opponent has an attendance of 20,456?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_40 WHERE date = \"march 27\"", "question": "What was the record on March 27?", "context": "CREATE TABLE table_name_40 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_68 WHERE date = \"march 22\"", "question": "What was the record on March 22?", "context": "CREATE TABLE table_name_68 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_44 WHERE date = \"april 1\"", "question": "What was the record on April 1?", "context": "CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_65 WHERE away_team = \"carlton\"", "question": "What was the lowest crowd size when Carlton was the away team.", "context": "CREATE TABLE table_name_65 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_5 WHERE away_team = \"footscray\"", "question": "Who played as the home team when Footscray was the away team?", "context": "CREATE TABLE table_name_5 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_62 WHERE home_team = \"hawthorn\"", "question": "What size was the crowd when Hawthorn was the home team?", "context": "CREATE TABLE table_name_62 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_25 WHERE rank > 1 AND nation = \"italy\" AND silver > 0", "question": "What is the lowest number of Gold the Nation of Italy had when it ranked other than 1, and had more than 0 Silver?", "context": "CREATE TABLE table_name_25 (gold INTEGER, silver VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_76 WHERE rank < 5 AND bronze > 1", "question": "How many Golds did the country with a Rank better than 5 and more Bronze than 1 receive?", "context": "CREATE TABLE table_name_76 (gold INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_27 WHERE total < 1", "question": "When the Total is less than 1, how many Bronze medals are won?", "context": "CREATE TABLE table_name_27 (bronze INTEGER, total INTEGER)"}, {"answer": "SELECT SUM(gold) FROM table_name_73 WHERE bronze = 0 AND total < 1", "question": "When the Total is less than 1, and Bronze is 0, how many Gold medals are there?", "context": "CREATE TABLE table_name_73 (gold INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_63 WHERE nation = \"germany\" AND total > 2", "question": "What is the Rank of the Nation of Germany when the Total is more than 2?", "context": "CREATE TABLE table_name_63 (rank VARCHAR, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(bodyweight) FROM table_name_35 WHERE snatch > 117.5", "question": "Which weightlifter with a snatch larger than 117.5 had the lowest bodyweight?", "context": "CREATE TABLE table_name_35 (bodyweight INTEGER, snatch INTEGER)"}, {"answer": "SELECT MAX(total__kg_) FROM table_name_43 WHERE bodyweight < 136.16 AND clean_ & _jerk > 135", "question": "Which weightlifter, who had a bodyweight of less than 136.16 and a clean and jerk larger than 135, had the highest Total?", "context": "CREATE TABLE table_name_43 (total__kg_ INTEGER, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT MAX(total__kg_) FROM table_name_82 WHERE bodyweight > 136.16", "question": "Of weightlifters who weighed more than 136.16, who had the highest Total?", "context": "CREATE TABLE table_name_82 (total__kg_ INTEGER, bodyweight INTEGER)"}, {"answer": "SELECT AVG(clean_) & _jerk FROM table_name_94 WHERE bodyweight = 87.5 AND snatch < 95", "question": "What was the average clean and jerk of all weightlifters who had a bodyweight smaller than 87.5 and a snatch of less than 95?", "context": "CREATE TABLE table_name_94 (_jerk VARCHAR, clean_ INTEGER, bodyweight VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT COUNT(clean_) & _jerk FROM table_name_8 WHERE total__kg_ = 200 AND snatch > 95", "question": "What is the sum of the weight that all weightlifters managed to clean and jerk, among weightlifters who had a snatch of more than 95 and a Total of more than 200?", "context": "CREATE TABLE table_name_8 (_jerk VARCHAR, clean_ VARCHAR, total__kg_ VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT kilometer_no__rizal_park_basis_ FROM table_name_92 WHERE kilometer_no__layac_basis_ = \"25\"", "question": "What kilometer (Rizal Park-basis) has a kilometer of 25?", "context": "CREATE TABLE table_name_92 (kilometer_no__rizal_park_basis_ VARCHAR, kilometer_no__layac_basis_ VARCHAR)"}, {"answer": "SELECT barangay FROM table_name_66 WHERE exit = \"sisiman toll barrier\"", "question": "Which Barangay has an exit of Sisiman toll barrier?", "context": "CREATE TABLE table_name_66 (barangay VARCHAR, exit VARCHAR)"}, {"answer": "SELECT kilometer_no__layac_basis_ FROM table_name_29 WHERE barangay = \"general lim (capot)\"", "question": "What kilometer (Layac-basis) has a Barangay of general lim (capot)?", "context": "CREATE TABLE table_name_29 (kilometer_no__layac_basis_ VARCHAR, barangay VARCHAR)"}, {"answer": "SELECT municipality FROM table_name_42 WHERE barangay = \"poblacion\"", "question": "In which municipality is Barangay Poblacion?", "context": "CREATE TABLE table_name_42 (municipality VARCHAR, barangay VARCHAR)"}, {"answer": "SELECT exit FROM table_name_57 WHERE kilometer_no__rizal_park_basis_ = \"164\"", "question": "What is the exit at kilometer (Rizal Park-basis) 164?", "context": "CREATE TABLE table_name_57 (exit VARCHAR, kilometer_no__rizal_park_basis_ VARCHAR)"}, {"answer": "SELECT competition FROM table_name_27 WHERE date = \"23 february 1929\"", "question": "What is the competition on 23 February 1929?", "context": "CREATE TABLE table_name_27 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_93 WHERE position = \"wing\" AND caps < 24 AND player = \"sireli bobo\"", "question": "What is the club/province of Sireli Bobo, who plays wing and has less than 24 caps?", "context": "CREATE TABLE table_name_93 (club_province VARCHAR, player VARCHAR, position VARCHAR, caps VARCHAR)"}, {"answer": "SELECT COUNT(caps) FROM table_name_40 WHERE position = \"flanker\" AND player = \"aca ratuva\"", "question": "What is the total number of Caps Aca Ratuva, a flanker, has?", "context": "CREATE TABLE table_name_40 (caps VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_45 WHERE player = \"kameli ratuvou\"", "question": "What is the date of birth of Kameli Ratuvou?", "context": "CREATE TABLE table_name_45 (date_of_birth__age_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_49 WHERE player = \"henry qiodravu\"", "question": "What is the date of birth of Henry Qiodravu?", "context": "CREATE TABLE table_name_49 (date_of_birth__age_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_89 WHERE gold < 3", "question": "What is the lowest medal total with less than 3 gold medals?", "context": "CREATE TABLE table_name_89 (total INTEGER, gold INTEGER)"}, {"answer": "SELECT MIN(laps) FROM table_name_32 WHERE start = \"21\"", "question": "What's the lowest amount of laps with a start of 21?", "context": "CREATE TABLE table_name_32 (laps INTEGER, start VARCHAR)"}, {"answer": "SELECT start FROM table_name_20 WHERE qual = \"84.300\"", "question": "What was the start of the competitor with a qualifying time of 84.300?", "context": "CREATE TABLE table_name_20 (start VARCHAR, qual VARCHAR)"}, {"answer": "SELECT year FROM table_name_38 WHERE laps > 200", "question": "In what year were there more laps than 200 in a race?", "context": "CREATE TABLE table_name_38 (year VARCHAR, laps INTEGER)"}, {"answer": "SELECT current_version FROM table_name_38 WHERE license = \"gpl v2\" AND name = \"project64\"", "question": "what is the current version of the project64 with gpl v2 license?", "context": "CREATE TABLE table_name_38 (current_version VARCHAR, license VARCHAR, name VARCHAR)"}, {"answer": "SELECT current_version FROM table_name_97 WHERE license = \"gpl v2\" AND name = \"mupen64plus\"", "question": "what is the current version of the name mupen64plus with gpl v2 license?", "context": "CREATE TABLE table_name_97 (current_version VARCHAR, license VARCHAR, name VARCHAR)"}, {"answer": "SELECT current_version FROM table_name_77 WHERE license = \"gpl v3\"", "question": "what is the current version with license gpl v3?", "context": "CREATE TABLE table_name_77 (current_version VARCHAR, license VARCHAR)"}, {"answer": "SELECT leading_man FROM table_name_1 WHERE year < 1932 AND director = \"archie mayo\"", "question": "What leading man earlier than 1932 was directed by archie mayo?", "context": "CREATE TABLE table_name_1 (leading_man VARCHAR, year VARCHAR, director VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_56 WHERE role = \"nan taylor, alias of nan ellis, aka mrs. andrews\" AND director = \"william keighley\"", "question": "What year was the role nan taylor, alias of nan ellis, aka mrs. andrews and directed by William keighley?", "context": "CREATE TABLE table_name_56 (year INTEGER, role VARCHAR, director VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_65 WHERE role = \"joan gordon, aka francine la rue\"", "question": "What is the latest year for the role of joan gordon, aka francine la rue?", "context": "CREATE TABLE table_name_65 (year INTEGER, role VARCHAR)"}, {"answer": "SELECT film FROM table_name_91 WHERE leading_man = \"adolphe menjou\" AND year = 1939", "question": "What film has a leading man of adolphe menjou in 1939?", "context": "CREATE TABLE table_name_91 (film VARCHAR, leading_man VARCHAR, year VARCHAR)"}, {"answer": "SELECT film FROM table_name_54 WHERE director = \"william a. wellman\" AND year > 1931 AND leading_man = \"george brent\" AND role = \"joan gordon, aka francine la rue\"", "question": "What film was the director william a. wellman, later than 1931 with a leading man of george brent, and a Role of joan gordon, aka francine la rue?", "context": "CREATE TABLE table_name_54 (film VARCHAR, role VARCHAR, leading_man VARCHAR, director VARCHAR, year VARCHAR)"}, {"answer": "SELECT director FROM table_name_14 WHERE year = 1935 AND role = \"shelby barret wyatt\"", "question": "What director directed the role of shelby barret wyatt in 1935?", "context": "CREATE TABLE table_name_14 (director VARCHAR, year VARCHAR, role VARCHAR)"}, {"answer": "SELECT weekly_rank___number_ FROM table_name_53 WHERE share = 9 AND viewers__m_ = 9.42", "question": "What is the weekly rank for a share of 9 and 9.42 million viewers?", "context": "CREATE TABLE table_name_53 (weekly_rank___number_ VARCHAR, share VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT SUM(rating) FROM table_name_33 WHERE weekly_rank___number_ = \"10\" AND share < 11", "question": "What is the sum of all ratings at a weekly rank of 10 and a share less than 11?", "context": "CREATE TABLE table_name_33 (rating INTEGER, weekly_rank___number_ VARCHAR, share VARCHAR)"}, {"answer": "SELECT MAX(viewers__m_) FROM table_name_47 WHERE rating > 9.4", "question": "What is the highest number of viewers for a rating greater than 9.4?", "context": "CREATE TABLE table_name_47 (viewers__m_ INTEGER, rating INTEGER)"}, {"answer": "SELECT athlete FROM table_name_40 WHERE year < 1984 AND event = \"800 m\"", "question": "Which athlete performed before 1984 in an 800 m event?", "context": "CREATE TABLE table_name_40 (athlete VARCHAR, year VARCHAR, event VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_97 WHERE tries > 23 AND player = \"tevita vaikona\"", "question": "What is the lowest number of points that Tevita Vaikona scored when making more than 23 tries?", "context": "CREATE TABLE table_name_97 (points INTEGER, tries VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_46 WHERE player = \"joe vagana\" AND tries < 2", "question": "What is the average number of points scored by Joe Vagana when making fewer than 2 tries?", "context": "CREATE TABLE table_name_46 (points INTEGER, player VARCHAR, tries VARCHAR)"}, {"answer": "SELECT competition FROM table_name_19 WHERE result = \"win\" AND score = \"3-1\"", "question": "What is the competition that had a win result and a score of 3-1?", "context": "CREATE TABLE table_name_19 (competition VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_33 WHERE result = \"win\" AND competition = \"2002 tiger cup group stage\" AND score = \"0-4\"", "question": "What is the venue of the match that had a win result and a score of 0-4 in the 2002 Tiger Cup Group Stage?", "context": "CREATE TABLE table_name_33 (venue VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE date = \"july 22, 2008\"", "question": "What is the score of the match on July 22, 2008?", "context": "CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_16 WHERE competition = \"2002 tiger cup third/fourth place\"", "question": "What is the score of the 2002 Tiger Cup third/fourth place match?", "context": "CREATE TABLE table_name_16 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_37 WHERE date = \"october 15, 2008\"", "question": "What is the competition on October 15, 2008?", "context": "CREATE TABLE table_name_37 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_61 WHERE school = \"st. benedict's prep\"", "question": "What is the player that went to st. benedict's prep?", "context": "CREATE TABLE table_name_61 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_58 WHERE college = \"ohio state\"", "question": "What is the NBA draft for ohio state?", "context": "CREATE TABLE table_name_58 (nba_draft VARCHAR, college VARCHAR)"}, {"answer": "SELECT school FROM table_name_69 WHERE height = \"6-6\"", "question": "What school did the player that is 6-6 go to?", "context": "CREATE TABLE table_name_69 (school VARCHAR, height VARCHAR)"}, {"answer": "SELECT school FROM table_name_28 WHERE player = \"samardo samuels\"", "question": "What school did samardo samuels go to?", "context": "CREATE TABLE table_name_28 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT final FROM table_name_88 WHERE event = \"middleweight \u201375 kg\"", "question": "What is the final for middleweight \u201375 kg?", "context": "CREATE TABLE table_name_88 (final VARCHAR, event VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_26 WHERE semifinal = \"did not advance\" AND event = \"light heavyweight \u201381 kg\"", "question": "For the light heavyweight \u201381 kg event that did not advance to semifinal, who was the athlete?", "context": "CREATE TABLE table_name_26 (athlete VARCHAR, semifinal VARCHAR, event VARCHAR)"}, {"answer": "SELECT final FROM table_name_78 WHERE athlete = \"rouhollah hosseini\"", "question": "What was the final for rouhollah hosseini?", "context": "CREATE TABLE table_name_78 (final VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT round_of_16 FROM table_name_75 WHERE quarterfinal = \"did not advance\" AND round_of_32 = \"n/a\"", "question": "When the round of 32 was n/a and quarterfinal was did not advance, what was the round of 16?", "context": "CREATE TABLE table_name_75 (round_of_16 VARCHAR, quarterfinal VARCHAR, round_of_32 VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_17 WHERE venue = \"windy hill\"", "question": "Can you tell me the Home team that has a Venue of Windy Hill?", "context": "CREATE TABLE table_name_17 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_68 WHERE home = \"pittsburgh\"", "question": "What was the lowest attendance at a game when Pittsburgh was the home team?", "context": "CREATE TABLE table_name_68 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE home = \"atlanta\"", "question": "What was the date of the game when Atlanta was the home team?", "context": "CREATE TABLE table_name_81 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT decision FROM table_name_90 WHERE home = \"montreal\"", "question": "What was the decision of the game when Montreal was the home team?", "context": "CREATE TABLE table_name_90 (decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE decision = \"niittymaki\" AND record = \"30\u201321\u20135\"", "question": "What was the date of the game with a decision of Niittymaki and when the Flyers had a record of 30\u201321\u20135?", "context": "CREATE TABLE table_name_26 (date VARCHAR, decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT position FROM table_name_19 WHERE nationality = \"united states\" AND pick = 9", "question": "Which Position has a Nationality of united states, and a Pick of 9?", "context": "CREATE TABLE table_name_19 (position VARCHAR, nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_14 WHERE position = \"pg\" AND round < 1", "question": "What is the average Pick with a Position of pg, and a Round less than 1?", "context": "CREATE TABLE table_name_14 (pick INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(top_10) FROM table_name_92 WHERE cuts_made < 12 AND top_5 < 2 AND events < 14", "question": "Which top ten, having less than  12 cuts less than 2 top five, and events smaller than 14, is the highest?", "context": "CREATE TABLE table_name_92 (top_10 INTEGER, events VARCHAR, cuts_made VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT AVG(top_5) FROM table_name_79 WHERE cuts_made = 42", "question": "What is the average for the top five having a number of 42 cuts made.", "context": "CREATE TABLE table_name_79 (top_5 INTEGER, cuts_made VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE visitor = \"buffalo\" AND date = \"april 27\"", "question": "Tell me the score on april 27 with visitor of buffalo", "context": "CREATE TABLE table_name_8 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_4 WHERE away_team = \"melbourne\"", "question": "How many people attended Melbourne's away game?", "context": "CREATE TABLE table_name_4 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_66 WHERE venue = \"dairy farmers stadium\" AND score = \"28-24\"", "question": "Who won the game at Dairy farmers stadium with a score of 28-24?", "context": "CREATE TABLE table_name_66 (result VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE date = \"24 july 2010\"", "question": "Who won that game on 24 July 2010?", "context": "CREATE TABLE table_name_26 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_20 WHERE result = \"loss\" AND score = \"24-28\"", "question": "Who loss the 24-28 game?", "context": "CREATE TABLE table_name_20 (opponent VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_69 WHERE score = \"18-19\"", "question": "Who scored 18-19?", "context": "CREATE TABLE table_name_69 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT rank FROM table_name_1 WHERE silver > 1 AND nation = \"total\"", "question": "Which rank has more than 1 silver and a total nation?", "context": "CREATE TABLE table_name_1 (rank VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_79 WHERE nation = \"slovenia\" AND gold < 0", "question": "What is the lowest total from slovenia with a Gold smaller than 0?", "context": "CREATE TABLE table_name_79 (total INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT class FROM table_name_1 WHERE no_built < 12 AND operator = \"southern\"", "question": "What class has less than 12 numbers built operated by southern?", "context": "CREATE TABLE table_name_1 (class VARCHAR, no_built VARCHAR, operator VARCHAR)"}, {"answer": "SELECT episode FROM table_name_62 WHERE viewers__m_ > 5.63 AND households__rating_share_ = \"4.5/7\"", "question": "Name the episode for viewers bigger than 5.63 and the households rating is 4.5/7", "context": "CREATE TABLE table_name_62 (episode VARCHAR, viewers__m_ VARCHAR, households__rating_share_ VARCHAR)"}, {"answer": "SELECT 18 AS _49__rating_share_ FROM table_name_1 WHERE weekly_rank___number_ = \"30\"", "question": "Name the 18-49 rating for weekly rank of 30", "context": "CREATE TABLE table_name_1 (weekly_rank___number_ VARCHAR)"}, {"answer": "SELECT driver FROM table_name_39 WHERE laps = \"29\"", "question": "Who was the driver with 29 laps?", "context": "CREATE TABLE table_name_39 (driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_76 WHERE grid = \"18\"", "question": "What was the retired time for someone who was on grid 18?", "context": "CREATE TABLE table_name_76 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT grid FROM table_name_84 WHERE driver = \"jacques villeneuve\"", "question": "Jacques Villeneuve was on what grid?", "context": "CREATE TABLE table_name_84 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_34 WHERE grid = \"9\"", "question": "What's the time for someone on grid 9?", "context": "CREATE TABLE table_name_34 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT grid FROM table_name_77 WHERE driver = \"alex yoong\"", "question": "What was the grid of Alex Yoong?", "context": "CREATE TABLE table_name_77 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE venue = \"lake oval\"", "question": "What date was the game played at Lake Oval?", "context": "CREATE TABLE table_name_80 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_17 WHERE venue = \"victoria park\"", "question": "How many people came to the game at Victoria Park?", "context": "CREATE TABLE table_name_17 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_26 WHERE loss = \"moyer (9\u20134)\"", "question": "Who lost to moyer (9\u20134)?", "context": "CREATE TABLE table_name_26 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_38 WHERE record = \"47\u201363\"", "question": "How many people attended when the record was broken with 47\u201363?", "context": "CREATE TABLE table_name_38 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_70 WHERE away_team = \"collingwood\"", "question": "What is the score of the home team that played Collingwood?", "context": "CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_4 WHERE decision = \"ward\" AND record = \"22\u201321\u20134\"", "question": "Who was the visitor when ward recorded the decision with a record of 22\u201321\u20134?", "context": "CREATE TABLE table_name_4 (visitor VARCHAR, decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE record = \"22\u201319\u20134\"", "question": "What is the score of the game when they had a record of 22\u201319\u20134?", "context": "CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(1 AS st_week_sales) FROM table_name_51 WHERE album = \"finding forever\" AND number < 6", "question": "What is the 1st week sales for the album finding forever before the number 6?", "context": "CREATE TABLE table_name_51 (album VARCHAR, number VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_60 WHERE time_retired = \"2:41:38.4\" AND laps > 40", "question": "What is the sum number of grid where time/retired is 2:41:38.4 and laps were more than 40?", "context": "CREATE TABLE table_name_60 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_14 WHERE laps > 21 AND driver = \"john surtees\"", "question": "Which constructor had laps amounting to more than 21 where the driver was John Surtees?", "context": "CREATE TABLE table_name_14 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_6 WHERE driver = \"jo bonnier\" AND grid < 11", "question": "How many laps did Jo Bonnier driver when the grid number was smaller than 11?", "context": "CREATE TABLE table_name_6 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_53 WHERE time_retired = \"gearbox\"", "question": "How many laps were there when time/retired was gearbox?", "context": "CREATE TABLE table_name_53 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_67 WHERE visitor = \"jazz\"", "question": "How many were in attendance at the game where the visiting team was the Jazz?", "context": "CREATE TABLE table_name_67 (attendance INTEGER, visitor VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_82 WHERE attendance = \"34,063\"", "question": "Who did the Chiefs play at the game attended by 34,063?", "context": "CREATE TABLE table_name_82 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT week FROM table_name_48 WHERE attendance = \"33,057\"", "question": "Which week's game was attended by 33,057 people?", "context": "CREATE TABLE table_name_48 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT organisation FROM table_name_84 WHERE year < 2005 AND award = \"best variety show host\"", "question": "what is the organisation when the year is less than 2005 and the award is the best variety show host?", "context": "CREATE TABLE table_name_84 (organisation VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT organisation FROM table_name_79 WHERE nominated_work_title = \"n/a\" AND year = 2005", "question": "what is the organisation when the nominated work title is n/a in the year 2005?", "context": "CREATE TABLE table_name_79 (organisation VARCHAR, nominated_work_title VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_99 WHERE result = \"nominated\" AND nominated_work_title = \"love bites\"", "question": "what is the lowest year with the result is nominated for the work title is love bites?", "context": "CREATE TABLE table_name_99 (year INTEGER, result VARCHAR, nominated_work_title VARCHAR)"}, {"answer": "SELECT year FROM table_name_98 WHERE organisation = \"star awards\" AND result = \"won\" AND nominated_work_title = \"n/a\"", "question": "what is the year when then organisation is star awards, the result is won and the nominated work title is n/a?", "context": "CREATE TABLE table_name_98 (year VARCHAR, nominated_work_title VARCHAR, organisation VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_85 WHERE result = \"nominated\" AND nominated_work_title = \"n/a\"", "question": "what is the latest year that has the result of nominated and the nominated work title is n/a?", "context": "CREATE TABLE table_name_85 (year INTEGER, result VARCHAR, nominated_work_title VARCHAR)"}, {"answer": "SELECT nominated_work_title FROM table_name_52 WHERE result = \"won\" AND organisation = \"star awards\" AND award = \"top 10 most popular female artiste\" AND year > 2007", "question": "what is the nominated work title when the result is won, the organisation is star awards and the award is top 10 most popular female artiste in the year 2007?", "context": "CREATE TABLE table_name_52 (nominated_work_title VARCHAR, year VARCHAR, award VARCHAR, result VARCHAR, organisation VARCHAR)"}, {"answer": "SELECT rank FROM table_name_47 WHERE gold = \"9\" AND silver = \"9\"", "question": "What is the rank of the games that had 9 gold and 9 silvers?", "context": "CREATE TABLE table_name_47 (rank VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT gold FROM table_name_8 WHERE bronze = \"17\" AND total = \"31\"", "question": "How many golds were there in a game that has 17 bronze and a total of 31?", "context": "CREATE TABLE table_name_8 (gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT games FROM table_name_61 WHERE bronze = \"8\" AND gold = \"4\"", "question": "Which game had 8 bronze and 4 gold?", "context": "CREATE TABLE table_name_61 (games VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE visitor = \"san jose\"", "question": "When did San Jose visit the St. Louis?", "context": "CREATE TABLE table_name_91 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_12 WHERE latest_win = \"1999 italian grand prix\" AND rank > 15", "question": "How many total wins with the latest win at the 1999 Italian Grand Prix at a rank of 15?", "context": "CREATE TABLE table_name_12 (wins INTEGER, latest_win VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_46 WHERE rank > 6 AND first_win = \"1950 british grand prix\"", "question": "What is the rank 6 lowest win who's first win was at the 1950 British Grand Prix?", "context": "CREATE TABLE table_name_46 (wins INTEGER, rank VARCHAR, first_win VARCHAR)"}, {"answer": "SELECT wins FROM table_name_47 WHERE rank > 16 AND latest_win = \"1967 belgian grand prix\"", "question": "What is the rank 16 wins with the latest win at the 1967 Belgian Grand Prix?", "context": "CREATE TABLE table_name_47 (wins VARCHAR, rank VARCHAR, latest_win VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_99 WHERE position = \"defensive back\" AND school = \"drake\"", "question": "What's the lowest pick for a defensive back at Drake?", "context": "CREATE TABLE table_name_99 (pick INTEGER, position VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_11 WHERE player = \"terry jones\"", "question": "What's terry jones' lowest pick?", "context": "CREATE TABLE table_name_11 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_52 WHERE player = \"gerald carter\"", "question": "What position does gerald carter play?", "context": "CREATE TABLE table_name_52 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_44 WHERE position = \"guard\" AND school = \"wisconsin\"", "question": "Who is the guard for Wisconsin?", "context": "CREATE TABLE table_name_44 (player VARCHAR, position VARCHAR, school VARCHAR)"}, {"answer": "SELECT player FROM table_name_31 WHERE nationality = \"usa\" AND pick = 33", "question": "Which player is Pick 33 and has a Nationality of USA?", "context": "CREATE TABLE table_name_31 (player VARCHAR, nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_94 WHERE pick < 33 AND school_club_team = \"vanderbilt\"", "question": "What is the nationality of the player who has a pick lower than 33 and a School/Club Team of Vanderbilt?", "context": "CREATE TABLE table_name_94 (nationality VARCHAR, pick VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_15 WHERE nba_team = \"phoenix suns\" AND pick = 52", "question": "What is the nationality of the player who had the pick of 52 and plays for the NBA team of Phoenix Suns?", "context": "CREATE TABLE table_name_15 (nationality VARCHAR, nba_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT league_apps FROM table_name_61 WHERE fa_cup_apps = \"1\" AND flt_apps = \"0 (1)\"", "question": "How many leage apperances for the player with one FA cup, and a FLT Apps of 0 (1)?", "context": "CREATE TABLE table_name_61 (league_apps VARCHAR, fa_cup_apps VARCHAR, flt_apps VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE away_team = \"st kilda\"", "question": "What day did St Kilda play as the away team?", "context": "CREATE TABLE table_name_53 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_12 WHERE 2011 = \"a\" AND 2009 = \"q2\"", "question": "What's the value for 2007 when 2011 is a and 2009 is q2?", "context": "CREATE TABLE table_name_12 (Id VARCHAR)"}, {"answer": "SELECT MAX(league_goals) FROM table_name_67 WHERE total_goals < 1 AND fa_cup_goals > 0", "question": "Tell me the highest league goals with total goals less than 1 and FA cups more than 0", "context": "CREATE TABLE table_name_67 (league_goals INTEGER, total_goals VARCHAR, fa_cup_goals VARCHAR)"}, {"answer": "SELECT SUM(fa_cup_goals) FROM table_name_59 WHERE name = \"david mirfin\" AND total_goals < 1", "question": "I want to know the sum of fa cup goals for david mirfin and total goals less than 1", "context": "CREATE TABLE table_name_59 (fa_cup_goals INTEGER, name VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT league_apps FROM table_name_35 WHERE league_goals < 2 AND position = \"df\" AND fa_cup_apps = \"5\"", "question": "Tell me the league apps with league goals less than 2 and position of df and FA cup apps of 5", "context": "CREATE TABLE table_name_35 (league_apps VARCHAR, fa_cup_apps VARCHAR, league_goals VARCHAR, position VARCHAR)"}, {"answer": "SELECT video FROM table_name_75 WHERE channel = 14.2", "question": "What is the video ratio on channel 14.2?", "context": "CREATE TABLE table_name_75 (video VARCHAR, channel VARCHAR)"}, {"answer": "SELECT network FROM table_name_80 WHERE aspect = \"4:3\" AND psip_short_name = \"qvc\"", "question": "What network has an aspect of 4:3 and a PSIP Short Name of qvc?", "context": "CREATE TABLE table_name_80 (network VARCHAR, aspect VARCHAR, psip_short_name VARCHAR)"}, {"answer": "SELECT psip_short_name FROM table_name_58 WHERE network = \"ion life\"", "question": "What is ion life network's PSIP Short Name?", "context": "CREATE TABLE table_name_58 (psip_short_name VARCHAR, network VARCHAR)"}, {"answer": "SELECT SUM(channel) FROM table_name_65 WHERE network = \"qubo\"", "question": "What is the sum of channels for qubo network?", "context": "CREATE TABLE table_name_65 (channel INTEGER, network VARCHAR)"}, {"answer": "SELECT deaths FROM table_name_34 WHERE name = \"eseta\"", "question": "How many deaths did eseta cause?", "context": "CREATE TABLE table_name_34 (deaths VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE away_team = \"carlton\"", "question": "What was the date when the away team was Carlton?", "context": "CREATE TABLE table_name_65 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE home_team = \"hawthorn\"", "question": "When the home team was hawthorn, what was the date?", "context": "CREATE TABLE table_name_44 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_91 WHERE away_team = \"geelong\"", "question": "What did Geelong score as the away team?", "context": "CREATE TABLE table_name_91 (away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE home_team = \"footscray\"", "question": "What date did the home team of footscray play?", "context": "CREATE TABLE table_name_85 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT club_team FROM table_name_72 WHERE nationality = \"canada\" AND overall = 188", "question": "Name the club team for overall of 188 for canada", "context": "CREATE TABLE table_name_72 (club_team VARCHAR, nationality VARCHAR, overall VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_66 WHERE overall = 74", "question": "Name the nationality of the player with an overall of 74", "context": "CREATE TABLE table_name_66 (nationality VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(aug_2013) FROM table_name_27 WHERE nov_2011 < 968 AND jul_2012 = 31 AND jun_2011 > 30", "question": "What is the highest Aug 2013 with a Nov 2011 smaller than 968, and a Jul 2012 with 31, and a Jun 2011 larger than 30?", "context": "CREATE TABLE table_name_27 (aug_2013 INTEGER, jun_2011 VARCHAR, nov_2011 VARCHAR, jul_2012 VARCHAR)"}, {"answer": "SELECT AVG(apr_2013) FROM table_name_76 WHERE jun_2011 < 14", "question": "What is the average Apr 2013 with a Jun 2011 less than 14?", "context": "CREATE TABLE table_name_76 (apr_2013 INTEGER, jun_2011 INTEGER)"}, {"answer": "SELECT AVG(feb_2013) FROM table_name_31 WHERE feb_2010 = \"37\" AND nov_2012 < 32", "question": "What is the average Feb 2013 with a Feb 2010 with 37, and a Nov 2012 less than 32?", "context": "CREATE TABLE table_name_31 (feb_2013 INTEGER, feb_2010 VARCHAR, nov_2012 VARCHAR)"}, {"answer": "SELECT COUNT(nov_2012) FROM table_name_19 WHERE jun_2013 > 542 AND aug_2011 > 935", "question": "What is the total number with Nov 2012 with a Jun 2013 larger than 542, and a Aug 2011 more than 935?", "context": "CREATE TABLE table_name_19 (nov_2012 VARCHAR, jun_2013 VARCHAR, aug_2011 VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_71 WHERE time_retired = \"+1:03.741\" AND laps > 44", "question": "What's the total grid for a Time/Retired of +1:03.741, and Laps larger than 44?", "context": "CREATE TABLE table_name_71 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_89 WHERE venue = \"brunswick street oval\"", "question": "What did the home team at Brunswick Street Oval score?", "context": "CREATE TABLE table_name_89 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_35 WHERE high_assists = \"a. johnson (6)\"", "question": "Who had the highest rebounds of the game with A. Johnson (6) as the highest assist?", "context": "CREATE TABLE table_name_35 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_55 WHERE high_assists = \"a. johnson (14)\"", "question": "Who had the highest rebounds of the game with A. Johnson (14) as the highest assists?", "context": "CREATE TABLE table_name_55 (high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE date = \"august 30\"", "question": "Who was the opponent on August 30?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE date = \"august 8\"", "question": "What was the score on August 8?", "context": "CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_52 WHERE player = \"kenny evans\"", "question": "How many picks included Kenny Evans?", "context": "CREATE TABLE table_name_52 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_95 WHERE college = \"letran\"", "question": "How many picks went to College of Letran?", "context": "CREATE TABLE table_name_95 (pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_5 WHERE pba_team = \"red bull thunder\"", "question": "Which player has a PBA team of Red Bull Thunder?", "context": "CREATE TABLE table_name_5 (player VARCHAR, pba_team VARCHAR)"}, {"answer": "SELECT event FROM table_name_98 WHERE year = 1971 AND result = \"6th\"", "question": "In which event did he place 6th in 1971?", "context": "CREATE TABLE table_name_98 (event VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_3 WHERE result = \"2nd\" AND venue = \"izmir, turkey\"", "question": "When was the first year he placed 2nd in Izmir, Turkey?", "context": "CREATE TABLE table_name_3 (year INTEGER, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_58 WHERE year = 1970", "question": "How did he place in 1970?", "context": "CREATE TABLE table_name_58 (result VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_83 WHERE date = \"may 29\"", "question": "How many were in Attendance on the Date May 29?", "context": "CREATE TABLE table_name_83 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_15 WHERE date = \"may 8\"", "question": "What was the Record on the Date May 8?", "context": "CREATE TABLE table_name_15 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_16 WHERE date = \"april 14, 2008\"", "question": "Who was the home team at the game played on April 14, 2008?", "context": "CREATE TABLE table_name_16 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT votes FROM table_name_51 WHERE notes = \"lost to incumbent vic gilliam\"", "question": "How many votes were cast when the notes reported lost to incumbent vic gilliam?", "context": "CREATE TABLE table_name_51 (votes VARCHAR, notes VARCHAR)"}, {"answer": "SELECT candidate FROM table_name_57 WHERE race = \"state representative, hd18\"", "question": "Who is the candidate in Race for State representative, hd18?", "context": "CREATE TABLE table_name_57 (candidate VARCHAR, race VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_27 WHERE caps > 45 AND position = \"prop\"", "question": "What club/province does the prop player with over 45 caps play for?", "context": "CREATE TABLE table_name_27 (club_province VARCHAR, caps VARCHAR, position VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE arena = \"staples center\"", "question": "Who was the opponent at the Staples Center?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, arena VARCHAR)"}, {"answer": "SELECT arena FROM table_name_33 WHERE opponent = \"sharks\"", "question": "In what arena was the game against the Sharks played?", "context": "CREATE TABLE table_name_33 (arena VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT label FROM table_name_86 WHERE format = \"lp\"", "question": "What is the label with the LP format?", "context": "CREATE TABLE table_name_86 (label VARCHAR, format VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE label = \"4ad\" AND format = \"cd (reissue)\"", "question": "What date had a 4ad label and a CD (reissue) format?", "context": "CREATE TABLE table_name_99 (date VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT country FROM table_name_66 WHERE catalogue__number = \"cad 4011\"", "question": "Which country had a cad 4011 catalogue #?", "context": "CREATE TABLE table_name_66 (country VARCHAR, catalogue__number VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE country = \"japan\"", "question": "Which date was for Japan?", "context": "CREATE TABLE table_name_66 (date VARCHAR, country VARCHAR)"}, {"answer": "SELECT label FROM table_name_88 WHERE country = \"united states\"", "question": "What is the label on the United States?", "context": "CREATE TABLE table_name_88 (label VARCHAR, country VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE catalogue__number = \"cocy-80093\"", "question": "What is the date with the catalogue # cocy-80093?", "context": "CREATE TABLE table_name_37 (date VARCHAR, catalogue__number VARCHAR)"}, {"answer": "SELECT category FROM table_name_72 WHERE nomination = \"danson tang\"", "question": "What category was danson tang nominated?", "context": "CREATE TABLE table_name_72 (category VARCHAR, nomination VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_52 WHERE category = \"best improved singer (\u8e8d\u9032\u6b4c\u624b)\"", "question": "What was the total number of years than had best improved singer (\u8e8d\u9032\u6b4c\u624b)?", "context": "CREATE TABLE table_name_52 (year INTEGER, category VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_49 WHERE grid > 19 AND time_retired = \"suspension\"", "question": "Who constructed the car with a grid over 19 that retired due to suspension?", "context": "CREATE TABLE table_name_49 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_79 WHERE grid = 9", "question": "What driver has a 9 grid total?", "context": "CREATE TABLE table_name_79 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_48 WHERE season = \"1982\"", "question": "What was the winning car's chassis for the 1982 season?", "context": "CREATE TABLE table_name_48 (chassis VARCHAR, season VARCHAR)"}, {"answer": "SELECT team FROM table_name_8 WHERE chassis = \"dallara f302\" AND champion = \"bastian kolmsee\"", "question": "Which team, with champion Bastian Kolmsee, used a Dallara f302 for the chassis?", "context": "CREATE TABLE table_name_8 (team VARCHAR, chassis VARCHAR, champion VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_4 WHERE engine = \"volkswagen\" AND season = \"2010\"", "question": "What chassis was the car with the Volkswagen engine built on in 2010?", "context": "CREATE TABLE table_name_4 (chassis VARCHAR, engine VARCHAR, season VARCHAR)"}, {"answer": "SELECT engine FROM table_name_86 WHERE team = \"korten motorsport\"", "question": "Which engine did Korten Motorsport use?", "context": "CREATE TABLE table_name_86 (engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT champion FROM table_name_28 WHERE engine = \"ford\" AND season = \"1971\"", "question": "Who was the champion that drove the car with the Ford engine in 1971?", "context": "CREATE TABLE table_name_28 (champion VARCHAR, engine VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_40 WHERE team = \"lotus\" AND champion = \"jimmy eriksson\"", "question": "In which season did Jimmy Eriksson win the championship for Team Lotus?", "context": "CREATE TABLE table_name_40 (season VARCHAR, team VARCHAR, champion VARCHAR)"}, {"answer": "SELECT name FROM table_name_49 WHERE goals = 6", "question": "Which name had 6 goals?", "context": "CREATE TABLE table_name_49 (name VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_50 WHERE transfer_fee = \"\u00a30.8m\"", "question": "What is the largest goal number when the transfer fee was \u00a30.8m?", "context": "CREATE TABLE table_name_50 (goals INTEGER, transfer_fee VARCHAR)"}, {"answer": "SELECT location FROM table_name_61 WHERE leagues = \"a1 women's - handball\"", "question": "What is the location of a1 women's - handball?", "context": "CREATE TABLE table_name_61 (location VARCHAR, leagues VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_name_8 WHERE venue = \"nop aquatic centre\" AND established > 1929", "question": "What is the capacity at the nop aquatic centre, established after 1929?", "context": "CREATE TABLE table_name_8 (capacity VARCHAR, venue VARCHAR, established VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_name_93 WHERE leagues = \"b national - basketball\"", "question": "What is the capacity for b national - basketball?", "context": "CREATE TABLE table_name_93 (capacity VARCHAR, leagues VARCHAR)"}, {"answer": "SELECT week FROM table_name_47 WHERE opponent = \"minnesota vikings\"", "question": "What game week did the Buccaneers play against the Minnesota Vikings?", "context": "CREATE TABLE table_name_47 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT week FROM table_name_67 WHERE record = \"0-5\"", "question": "What game week did the buccaneers have a record of 0-5?", "context": "CREATE TABLE table_name_67 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_9 WHERE date = \"december 4, 1983\"", "question": "What is the record of the buccaneers on December 4, 1983?", "context": "CREATE TABLE table_name_9 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_5 WHERE visitor = \"ottawa\"", "question": "What was the attendance at the game against Ottawa?", "context": "CREATE TABLE table_name_5 (attendance INTEGER, visitor VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_83 WHERE home = \"detroit\"", "question": "What was the highest attendance at a Detroit home game?", "context": "CREATE TABLE table_name_83 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_46 WHERE home = \"florida\" AND visitor = \"montreal\"", "question": "What was the attendance of the Florida vs. Montreal game?", "context": "CREATE TABLE table_name_46 (attendance INTEGER, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT condition FROM table_name_75 WHERE prothrombin_time = \"unaffected\" AND bleeding_time = \"prolonged\" AND partial_thromboplastin_time = \"unaffected\" AND platelet_count = \"decreased or unaffected\"", "question": "I want to know the condition with Prothrombin time of unaffected and bleeding time of prolonged with partial thromboplastin time of unaffected with platelet count of decreased or unaffected", "context": "CREATE TABLE table_name_75 (condition VARCHAR, platelet_count VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT condition FROM table_name_41 WHERE bleeding_time = \"prolonged\" AND platelet_count = \"decreased or unaffected\"", "question": "I want the condition that has a prolonged bleeding time and a platelet count of decreased or unaffected", "context": "CREATE TABLE table_name_41 (condition VARCHAR, bleeding_time VARCHAR, platelet_count VARCHAR)"}, {"answer": "SELECT prothrombin_time FROM table_name_49 WHERE partial_thromboplastin_time = \"prolonged\" AND bleeding_time = \"unaffected\" AND condition = \"factor xii deficiency\"", "question": "I want the prothrombin time with a partial thromboplastin time of prolonged and unaffected bleeding time and factor xii deficiency for condition of factor", "context": "CREATE TABLE table_name_49 (prothrombin_time VARCHAR, condition VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT condition FROM table_name_41 WHERE partial_thromboplastin_time = \"prolonged\" AND bleeding_time = \"unaffected\"", "question": "I want the condition that has a partial thromboplastin time of prolonged and unaffected bleeding time", "context": "CREATE TABLE table_name_41 (condition VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT icao FROM table_name_86 WHERE airport = \"antalya airport\"", "question": "What is the ICAO for Antalya Airport?", "context": "CREATE TABLE table_name_86 (icao VARCHAR, airport VARCHAR)"}, {"answer": "SELECT iata FROM table_name_39 WHERE airport = \"leonardo da vinci-fiumicino airport\"", "question": "What is the IATA of Leonardo da Vinci-Fiumicino Airport?", "context": "CREATE TABLE table_name_39 (iata VARCHAR, airport VARCHAR)"}, {"answer": "SELECT country FROM table_name_68 WHERE iata = \"blq\"", "question": "What country is the IATA BLQ located in?", "context": "CREATE TABLE table_name_68 (country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_8 WHERE airport = \"madrid-barajas airport\"", "question": "What is the IATA of Madrid-Barajas Airport?", "context": "CREATE TABLE table_name_8 (iata VARCHAR, airport VARCHAR)"}, {"answer": "SELECT city FROM table_name_84 WHERE icao = \"lirf\"", "question": "Which city has the ICAO of LIRF?", "context": "CREATE TABLE table_name_84 (city VARCHAR, icao VARCHAR)"}, {"answer": "SELECT city FROM table_name_27 WHERE airport = \"naples airport\"", "question": "Which city is Naples Airport located in?", "context": "CREATE TABLE table_name_27 (city VARCHAR, airport VARCHAR)"}, {"answer": "SELECT ryuji_hijikata FROM table_name_39 WHERE taka_michinoku = \"hayashi (28:05)\"", "question": "Tell me the Ryuji Hijikata for TAKA Michinoku of Hayashi (28:05)", "context": "CREATE TABLE table_name_39 (ryuji_hijikata VARCHAR, taka_michinoku VARCHAR)"}, {"answer": "SELECT ryuji_hijikata FROM table_name_72 WHERE block_a = \"ryuji hijikata\"", "question": "Tell me the Ryuji Hijikata for Block A of Ryuji Hijikata", "context": "CREATE TABLE table_name_72 (ryuji_hijikata VARCHAR, block_a VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_49 WHERE away_team = \"south melbourne\"", "question": "When South Melbourne was the Away Team, what was their score?", "context": "CREATE TABLE table_name_49 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_23 WHERE away_team = \"south melbourne\"", "question": "Tell me the away team score for away team of south melbourne", "context": "CREATE TABLE table_name_23 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_82 WHERE venue = \"vfl park\"", "question": "I want to know the away team score for vfl park venue", "context": "CREATE TABLE table_name_82 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(track) FROM table_name_21 WHERE translation = \"the fallen angel\"", "question": "Name the total number of tracks for of the fallen angel", "context": "CREATE TABLE table_name_21 (track VARCHAR, translation VARCHAR)"}, {"answer": "SELECT driver FROM table_name_55 WHERE chassis = \"193\" AND rounds = \"14\"", "question": "What driver went 14 rounds with a 193 Chassis?", "context": "CREATE TABLE table_name_55 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT engine FROM table_name_31 WHERE chassis = \"fa13b fa14\" AND driver = \"aguri suzuki\"", "question": "What engine was used when Aguri Suzuki drove the FA13B FA14 Chassis?", "context": "CREATE TABLE table_name_31 (engine VARCHAR, chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_46 WHERE rounds = \"all\" AND driver = \"jean alesi\"", "question": "Who was the entrant for all the round with Jean Alesi?", "context": "CREATE TABLE table_name_46 (entrant VARCHAR, rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine FROM table_name_12 WHERE driver = \"riccardo patrese\"", "question": "What engine did Riccardo Patrese use?", "context": "CREATE TABLE table_name_12 (engine VARCHAR, driver VARCHAR)"}, {"answer": "SELECT venue FROM table_name_53 WHERE home_team = \"footscray\"", "question": "If the home team was footscray which venue did they play it?", "context": "CREATE TABLE table_name_53 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_27 WHERE home_team = \"footscray\"", "question": "When the home team was footscray what did they score?", "context": "CREATE TABLE table_name_27 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_78 WHERE home_team = \"north melbourne\"", "question": "When the home team north melbourne was playing what did they score?", "context": "CREATE TABLE table_name_78 (home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE opponents = \"fc bayern munich\" AND date = \"september 20, 2005\"", "question": "What is the score of the September 20, 2005 match when the Opponents are FC Bayern Munich?", "context": "CREATE TABLE table_name_2 (score VARCHAR, opponents VARCHAR, date VARCHAR)"}, {"answer": "SELECT match_report FROM table_name_91 WHERE date = \"july 10, 2005\"", "question": "What is the match report for July 10, 2005?", "context": "CREATE TABLE table_name_91 (match_report VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE opponents = \"1. fc nuremberg\" AND competition = \"gc\"", "question": "What is the date of the GC competition when the opponents are 1. FC Nuremberg?", "context": "CREATE TABLE table_name_59 (date VARCHAR, opponents VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_58 WHERE date = \"september 10, 2005\"", "question": "Which competition was held on September 10, 2005?", "context": "CREATE TABLE table_name_58 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_79 WHERE score = \"3-0\"", "question": "In which competition was the score 3-0?", "context": "CREATE TABLE table_name_79 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_39 WHERE home = \"lakers\" AND score = \"85\u2013106\"", "question": "Who was the visitor when the lakers were at home with a Score of 85\u2013106?", "context": "CREATE TABLE table_name_39 (visitor VARCHAR, home VARCHAR, score VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_66 WHERE goals < 4 AND games > 1 AND years_at_club = \"1945\" AND player = \"jim young\"", "question": "what is the date of birth for the player with goals less than 4, games more than 1, years at club, 1945 and named jim young?", "context": "CREATE TABLE table_name_66 (date_of_birth VARCHAR, player VARCHAR, years_at_club VARCHAR, goals VARCHAR, games VARCHAR)"}, {"answer": "SELECT AVG(debut_year) FROM table_name_83 WHERE player = \"terry fulton\" AND games < 51", "question": "what is the debut year for player terry fulton with games less than 51?", "context": "CREATE TABLE table_name_83 (debut_year INTEGER, player VARCHAR, games VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_60 WHERE venue = \"victoria park\"", "question": "How people attended Victoria Park?", "context": "CREATE TABLE table_name_60 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_97 WHERE away_team = \"south melbourne\"", "question": "What is the away team score for South Melbourne?", "context": "CREATE TABLE table_name_97 (away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_38 WHERE away_team = \"melbourne\"", "question": "Who played Melbourne as the home team?", "context": "CREATE TABLE table_name_38 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_30 WHERE crowd > 17 OFFSET 000", "question": "Which away team has an attendance of more than 17,000?", "context": "CREATE TABLE table_name_30 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT away_team FROM table_name_55 WHERE venue = \"mcg\"", "question": "Which away team played at MCG?", "context": "CREATE TABLE table_name_55 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE home_team = \"geelong\"", "question": "What was the date when Geelong was the home team?", "context": "CREATE TABLE table_name_49 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT bowling_style FROM table_name_49 WHERE player = \"damien martyn\"", "question": "What is Damien Martyn's bowling style?", "context": "CREATE TABLE table_name_49 (bowling_style VARCHAR, player VARCHAR)"}, {"answer": "SELECT batting_style FROM table_name_77 WHERE date_of_birth = \"14 november 1971\"", "question": "What is the batting style of the player born on 14 November 1971?", "context": "CREATE TABLE table_name_77 (batting_style VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT first_class_team FROM table_name_70 WHERE date_of_birth = \"23 february 1973\"", "question": "What is the first class team of the player born on 23 February 1973?", "context": "CREATE TABLE table_name_70 (first_class_team VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT type FROM table_name_27 WHERE eu_council_presidency = \"uk\" AND president_in_office = \"john major\"", "question": "What is the type for EU Council Presidency of UK and John Major as President-in-Office?", "context": "CREATE TABLE table_name_27 (type VARCHAR, eu_council_presidency VARCHAR, president_in_office VARCHAR)"}, {"answer": "SELECT host_city FROM table_name_85 WHERE president_in_office = \"margaret thatcher\" AND year = 1981", "question": "In which host city was Margaret Thatcher the President-in-Office in 1981?", "context": "CREATE TABLE table_name_85 (host_city VARCHAR, president_in_office VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_98 WHERE preliminaries > 9.25 AND interview > 9.44 AND evening_gown = 9.77", "question": "How many average scores have preliminary scores over 9.25, interview scores more than 9.44, and evening gown scores of 9.77?", "context": "CREATE TABLE table_name_98 (average VARCHAR, evening_gown VARCHAR, preliminaries VARCHAR, interview VARCHAR)"}, {"answer": "SELECT MIN(interview) FROM table_name_79 WHERE preliminaries < 9.4 AND evening_gown < 9.55 AND country = \"new york\" AND swimsuit > 9.18", "question": "What is the least score for interview with a preliminaries score less than 9.4, evening gown score less than 9.55, and swimsuit score more than 9.18 in New York?", "context": "CREATE TABLE table_name_79 (interview INTEGER, swimsuit VARCHAR, country VARCHAR, preliminaries VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT seven FROM table_name_24 WHERE date = \"29 november 1690\"", "question": "Name the seven for 29 november 1690", "context": "CREATE TABLE table_name_24 (seven VARCHAR, date VARCHAR)"}, {"answer": "SELECT four FROM table_name_23 WHERE date = \"6 march 1801\"", "question": "Name the four for 6 march 1801", "context": "CREATE TABLE table_name_23 (four VARCHAR, date VARCHAR)"}, {"answer": "SELECT three FROM table_name_83 WHERE four = \"william prewett\" AND five = \"richard ellis\" AND seven = \"nicholas king\" AND date = \"5 november 1693\"", "question": "Name the three for william prewett for four and five being richard ellis with seven being nicholas king on 5 november 1693", "context": "CREATE TABLE table_name_83 (three VARCHAR, date VARCHAR, seven VARCHAR, four VARCHAR, five VARCHAR)"}, {"answer": "SELECT three FROM table_name_83 WHERE date = \"16 december 1676\"", "question": "Name the three for 16 december 1676", "context": "CREATE TABLE table_name_83 (three VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_73 WHERE driver = \"luca badoer\" AND laps > 69", "question": "Tell me the average Grid for driver of Luca Badoer and Laps more than 69", "context": "CREATE TABLE table_name_73 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT final FROM table_name_46 WHERE athlete = \"farhad rezaei\"", "question": "What final was Farhad Rezaei in?", "context": "CREATE TABLE table_name_46 (final VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT final FROM table_name_96 WHERE rank = \"4\"", "question": "What final was ranked 4?", "context": "CREATE TABLE table_name_96 (final VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_44 WHERE athlete = \"hamid veisi\"", "question": "What was the reanking of Hamid Veisi?", "context": "CREATE TABLE table_name_44 (rank VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT franchise FROM table_name_29 WHERE percentage < 0.707 AND year > 1931 AND finish = \"won 1998 world series\"", "question": "Which Franchise has a Percentage under 0.707, a Year larger than 1931, and the Finish was won 1998 World Series?", "context": "CREATE TABLE table_name_29 (franchise VARCHAR, finish VARCHAR, percentage VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_11 WHERE finish = \"lost 2001 alcs\" AND percentage > 0.716", "question": "What is the average Year for the Finish of lost 2001 alcs and the Percentage is over 0.716?", "context": "CREATE TABLE table_name_11 (year INTEGER, finish VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT finish FROM table_name_88 WHERE league = \"al\" AND year = 1939", "question": "In the Year 1939, what was the Finish when Al was the League?", "context": "CREATE TABLE table_name_88 (finish VARCHAR, league VARCHAR, year VARCHAR)"}, {"answer": "SELECT finish FROM table_name_22 WHERE league = \"nl\" AND percentage < 0.726 AND year > 1897 AND franchise = \"pittsburgh pirates\"", "question": "What was the Finish when NL was the League, the Percentage was under 0.726, the Year was larger than 1897, and the Franchies was the Pittsburgh Pirates?", "context": "CREATE TABLE table_name_22 (finish VARCHAR, franchise VARCHAR, year VARCHAR, league VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT venue FROM table_name_81 WHERE home_team = \"footscray\"", "question": "What was the venue when the home team was footscray?", "context": "CREATE TABLE table_name_81 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_72 WHERE away_team = \"hawthorn\"", "question": "What was the crowd when the away team was hawthorn?", "context": "CREATE TABLE table_name_72 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT city FROM table_name_86 WHERE stadium = \"ciro vigorito\"", "question": "What city houses the Ciro Vigorito stadium?", "context": "CREATE TABLE table_name_86 (city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_7 WHERE total = 4 AND nation = \"poland\" AND gold < 1", "question": "I want to know the highest silver for total of 4 for poland and gold less than 1", "context": "CREATE TABLE table_name_7 (silver INTEGER, gold VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_62 WHERE total > 1 AND bronze = 2 AND nation = \"france\" AND gold > 0", "question": "Tell me the average silver for total more than 1 with bronze of 2 for france and gold more than 0", "context": "CREATE TABLE table_name_62 (silver INTEGER, gold VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_12 WHERE silver = 1 AND nation = \"albania\" AND total < 1", "question": "Tell me the number of gold for albania with a silver of 1 and total less than 1", "context": "CREATE TABLE table_name_12 (gold VARCHAR, total VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_25 WHERE nation = \"moldova\" AND bronze < 1", "question": "Tell me the average gold for moldova and bronze less than 1", "context": "CREATE TABLE table_name_25 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_31 WHERE bronze < 0", "question": "Tell me the sum of gold for bronze less than 0", "context": "CREATE TABLE table_name_31 (gold INTEGER, bronze INTEGER)"}, {"answer": "SELECT tyre FROM table_name_71 WHERE circuit = \"zandvoort\"", "question": "What tyre was used in the Zandvoort circuit?", "context": "CREATE TABLE table_name_71 (tyre VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_86 WHERE constructor = \"ferrari\" AND fastest_lap = \"alberto ascari\"", "question": "Which circuit did Alberto Ascari set the fastest lap time with a Ferrari?", "context": "CREATE TABLE table_name_86 (circuit VARCHAR, constructor VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_32 WHERE constructor = \"ferrari\" AND fastest_lap = \"luigi villoresi\"", "question": "Who won the race with a Ferrari, were Luigi Villoresi set the fastest lap time?", "context": "CREATE TABLE table_name_32 (winning_driver VARCHAR, constructor VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT race FROM table_name_4 WHERE pole_position = \"alberto ascari\" AND winning_driver = \"alberto ascari\" AND fastest_lap = \"luigi villoresi\"", "question": "Which race did Alberto Ascari have both the Pole position and the win, but Luigi Villoresi set the fastest lap time?", "context": "CREATE TABLE table_name_4 (race VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT county FROM table_name_7 WHERE name = \"broderick wood products\"", "question": "Which county is named broderick wood products?", "context": "CREATE TABLE table_name_7 (county VARCHAR, name VARCHAR)"}, {"answer": "SELECT construction_completed FROM table_name_76 WHERE name = \"nelson tunnel/commodore waste rock\"", "question": "What construction completed is named nelson tunnel/commodore waste rock?", "context": "CREATE TABLE table_name_76 (construction_completed VARCHAR, name VARCHAR)"}, {"answer": "SELECT cerclis_id FROM table_name_98 WHERE listed = \"09/08/1983\" AND name = \"marshall landfill\"", "question": "What is the ID of marshall landfill on 09/08/1983?", "context": "CREATE TABLE table_name_98 (cerclis_id VARCHAR, listed VARCHAR, name VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_7 WHERE outcome = \"won\" AND category = \"fourth best indian film\"", "question": "Which nominee won the award for Fourth Best Indian Film?", "context": "CREATE TABLE table_name_7 (nominee VARCHAR, outcome VARCHAR, category VARCHAR)"}, {"answer": "SELECT ceremony FROM table_name_80 WHERE nominee = \"harnam singh rawail\"", "question": "In which ceremony was Harnam Singh Rawail nominated for an award?", "context": "CREATE TABLE table_name_80 (ceremony VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT ceremony FROM table_name_69 WHERE nominee = \"jayant\"", "question": "In which ceremony was Jayant nominated for an award?", "context": "CREATE TABLE table_name_69 (ceremony VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT surface FROM table_name_88 WHERE date = \"april 24, 2003\"", "question": "What surface was the April 24, 2003 match played on?", "context": "CREATE TABLE table_name_88 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(top_25) FROM table_name_47 WHERE cuts_made = 6", "question": "How many times has Watney made the top 25 for a tournament in which he as also been cut 6 times?", "context": "CREATE TABLE table_name_47 (top_25 INTEGER, cuts_made VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_54 WHERE top_25 = 4", "question": "Which tournament has the highest number of cuts while also having 4 top 25 appearances?", "context": "CREATE TABLE table_name_54 (cuts_made INTEGER, top_25 VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_6 WHERE time_retired = \"collision\" AND driver = \"pedro diniz\"", "question": "What is the smallest grid with collision as the Time/Retired for pedro diniz?", "context": "CREATE TABLE table_name_6 (grid INTEGER, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_88 WHERE grid = 14", "question": "What is the number of laps for Grid 14?", "context": "CREATE TABLE table_name_88 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_65 WHERE driver = \"mika h\u00e4kkinen\" AND laps > 45", "question": "What is the number of the grid for mika h\u00e4kkinen and more than 45 laps?", "context": "CREATE TABLE table_name_65 (grid VARCHAR, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_73 WHERE crowd > 19 OFFSET 000", "question": "Which home team has more than 19,000 spectators?", "context": "CREATE TABLE table_name_73 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT theme FROM table_name_54 WHERE artist = \"christie paquet\" AND issue_price = \"$34.95\" AND year > 2004", "question": "What is the Theme of Christie Paquet after 2004 with an Issue Price of $34.95?", "context": "CREATE TABLE table_name_54 (theme VARCHAR, year VARCHAR, artist VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_78 WHERE artist = \"christie paquet\" AND issue_price = \"$34.95\"", "question": "What is the Year of Christie Paquet with Issue Price of $34.95?", "context": "CREATE TABLE table_name_78 (year INTEGER, artist VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_88 WHERE venue = \"princes park\"", "question": "What is the Crowd for the Venue of Princes Park?", "context": "CREATE TABLE table_name_88 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_98 WHERE home_team = \"melbourne\"", "question": "What is the Home team score for the Home team of Melbourne?", "context": "CREATE TABLE table_name_98 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_33 WHERE home_team = \"south melbourne\"", "question": "What is the Home team score for the Home team from South Melbourne?", "context": "CREATE TABLE table_name_33 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_89 WHERE venue = \"mcg\"", "question": "What is the Home team score for the Venue named MCG?", "context": "CREATE TABLE table_name_89 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(earnings__) AS $__ FROM table_name_38 WHERE rank < 2", "question": "Who has the lowest earnings that has a rank smaller than 2?", "context": "CREATE TABLE table_name_38 (earnings__ INTEGER, rank INTEGER)"}, {"answer": "SELECT COUNT(wins) FROM table_name_73 WHERE rank > 2 AND player = \"mike hill\"", "question": "What was the total number of wins with player Mike Hill with a rank bigger than 2?", "context": "CREATE TABLE table_name_73 (wins VARCHAR, rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT location FROM table_name_42 WHERE race = \"argentine grand prix\"", "question": "Where was the argentine grand prix?", "context": "CREATE TABLE table_name_42 (location VARCHAR, race VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_72 WHERE fastest_lap = \"nelson piquet\"", "question": "What was the constructor for the fastest nelson piquet?", "context": "CREATE TABLE table_name_72 (constructor VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_64 WHERE location = \"zolder\"", "question": "Tell me the constructor for zolder", "context": "CREATE TABLE table_name_64 (constructor VARCHAR, location VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_75 WHERE date = \"10 august\"", "question": "Name the constructor for 10 august", "context": "CREATE TABLE table_name_75 (constructor VARCHAR, date VARCHAR)"}, {"answer": "SELECT years_at_club FROM table_name_77 WHERE games > 28 AND goals > 225 AND debut_year > 1950", "question": "What is the number of Years at Club for the player who has had more games than 28, more Goals than 225, and his Debut year was after 1950?", "context": "CREATE TABLE table_name_77 (years_at_club VARCHAR, debut_year VARCHAR, games VARCHAR, goals VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_12 WHERE years_at_club = \"1951\"", "question": "What is the birthday of the player who has Years at Club of 1951?", "context": "CREATE TABLE table_name_12 (date_of_birth VARCHAR, years_at_club VARCHAR)"}, {"answer": "SELECT rank FROM table_name_55 WHERE years_until_mandatory_retirement = \"6 years\"", "question": "what rank has years until mandatory retirement of 6 years?", "context": "CREATE TABLE table_name_55 (rank VARCHAR, years_until_mandatory_retirement VARCHAR)"}, {"answer": "SELECT name FROM table_name_40 WHERE year_appointed = 2009 AND years_until_mandatory_retirement = \"13 years\"", "question": "what name has an appointed year of 2009 and years until mandatory retirement of 13 years?", "context": "CREATE TABLE table_name_40 (name VARCHAR, year_appointed VARCHAR, years_until_mandatory_retirement VARCHAR)"}, {"answer": "SELECT player FROM table_name_16 WHERE no_s_ = \"12\" AND school_club_team_country = \"oregon\"", "question": "Which player from Oregon used the number 12?", "context": "CREATE TABLE table_name_16 (player VARCHAR, no_s_ VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT position FROM table_name_16 WHERE height_in_ft = \"6-10\"", "question": "What position does the player who is 6-10 play?", "context": "CREATE TABLE table_name_16 (position VARCHAR, height_in_ft VARCHAR)"}, {"answer": "SELECT no_s_ FROM table_name_94 WHERE school_club_team_country = \"washington\"", "question": "What are the numbers for any players from Washington?", "context": "CREATE TABLE table_name_94 (no_s_ VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT years_for_rockets FROM table_name_80 WHERE no_s_ = \"6\"", "question": "Which years did the Rockets number 6 play?", "context": "CREATE TABLE table_name_80 (years_for_rockets VARCHAR, no_s_ VARCHAR)"}, {"answer": "SELECT senior_2nd_viii FROM table_name_60 WHERE senior_iv = \"stm\"", "question": "Which 2nd senior VIII that also has a 4th senior stm?", "context": "CREATE TABLE table_name_60 (senior_2nd_viii VARCHAR, senior_iv VARCHAR)"}, {"answer": "SELECT laps FROM table_name_18 WHERE grid < 11 AND driver = \"john love\"", "question": "How many laps did John Love have on a grid less than 11?", "context": "CREATE TABLE table_name_18 (laps VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT builder FROM table_name_6 WHERE locomotive = \"2\"", "question": "What is the Builder of Locomotive 2?", "context": "CREATE TABLE table_name_6 (builder VARCHAR, locomotive VARCHAR)"}, {"answer": "SELECT SUM(withdrawn) FROM table_name_43 WHERE type = \"4-6-4t\"", "question": "With a Type of 4-6-4t, what is the sum Withdrawn?", "context": "CREATE TABLE table_name_43 (withdrawn INTEGER, type VARCHAR)"}, {"answer": "SELECT score FROM table_name_41 WHERE home = \"dallas\" AND visitor = \"edmonton\"", "question": "What was the score from the game where Dallas played Home and Edmonton was visiting?", "context": "CREATE TABLE table_name_41 (score VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT mintage FROM table_name_15 WHERE theme = \"santa claus\"", "question": "What was the mintage when the theme was Santa Claus?", "context": "CREATE TABLE table_name_15 (mintage VARCHAR, theme VARCHAR)"}, {"answer": "SELECT SUM(issue_price) FROM table_name_29 WHERE year = 2008", "question": "What was the issue price in the year 2008?", "context": "CREATE TABLE table_name_29 (issue_price INTEGER, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_66 WHERE composition = \"99.99% silver\" AND issue_price = \"$94.95\"", "question": "What is the earliest year when the composition is 99.99% silver and the issue price is $94.95?", "context": "CREATE TABLE table_name_66 (year INTEGER, composition VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_87 WHERE issue_price = \"$94.95\" AND theme = \"amethyst crystal\"", "question": "What year had an issue price of $94.95 and theme of Amethyst crystal?", "context": "CREATE TABLE table_name_87 (year INTEGER, issue_price VARCHAR, theme VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE opponent_in_the_final = \"shiho hisamatsu\"", "question": "Name the score for when the opponent in the final is shiho hisamatsu", "context": "CREATE TABLE table_name_43 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_79 WHERE date = \"april 3, 2005\"", "question": "Name the tournament for april 3, 2005", "context": "CREATE TABLE table_name_79 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE date = \"may 11, 2003\"", "question": "Name th score for may 11, 2003", "context": "CREATE TABLE table_name_1 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_30 WHERE driver = \"pedro diniz\"", "question": "Who constructed pedro diniz's car?", "context": "CREATE TABLE table_name_30 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_85 WHERE driver = \"david coulthard\" AND laps > 45", "question": "What is the grid total for david coulthard with over 45 laps?", "context": "CREATE TABLE table_name_85 (grid VARCHAR, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_33 WHERE start_value = 9.9 AND total = 9.612", "question": "What is the average for the gymnast with a 9.9 start value and a total of 9.612?", "context": "CREATE TABLE table_name_33 (average INTEGER, start_value VARCHAR, total VARCHAR)"}, {"answer": "SELECT penalty FROM table_name_13 WHERE average > 9.662 AND total > 9.706", "question": "What was the penalty for the gymnast with average above 9.662 and total is more than 9.706?", "context": "CREATE TABLE table_name_13 (penalty VARCHAR, average VARCHAR, total VARCHAR)"}, {"answer": "SELECT category FROM table_name_20 WHERE year > 2005 AND for_the_show = \"kasautii zindagii kay\"", "question": "What category was Kasautii Zindagii Kay nominated for after 2005?", "context": "CREATE TABLE table_name_20 (category VARCHAR, year VARCHAR, for_the_show VARCHAR)"}, {"answer": "SELECT for_the_show FROM table_name_22 WHERE category = \"best actor in a lead role \u2013 female (popular)\" AND year = 2006", "question": "What show had a nomination for best actor in a lead role \u2013 female (popular) in 2006?", "context": "CREATE TABLE table_name_22 (for_the_show VARCHAR, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_91 WHERE result = \"l 15-13\"", "question": "In what week was the Result L 15-13?", "context": "CREATE TABLE table_name_91 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_51 WHERE opponent = \"dallas cowboys\" AND week > 5", "question": "What is the Attendance with Opponent Dallas Cowboys in a Week greater than 5?", "context": "CREATE TABLE table_name_51 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_89 WHERE engine = \"maserati v12\" AND year = 1968", "question": "How many points for maserati v12 engines in 1968?", "context": "CREATE TABLE table_name_89 (points VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_28 WHERE year < 1963 AND points < 3", "question": "What entrant had less than 3 points before 1963?", "context": "CREATE TABLE table_name_28 (entrant VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_86 WHERE grand_prix = \"french grand prix\"", "question": "Who had the pole at the French Grand Prix?", "context": "CREATE TABLE table_name_86 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_97 WHERE grand_prix = \"canadian grand prix\"", "question": "Who constructed the car that won the Canadian Grand Prix?", "context": "CREATE TABLE table_name_97 (constructor VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_18 WHERE winning_driver = \"michael schumacher\"", "question": "When Michael Schumacher won the race, who had the fastest lap?", "context": "CREATE TABLE table_name_18 (fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT school FROM table_name_72 WHERE college = \"kentucky\" AND height = \"6-7\"", "question": "For the Player playing for the College of Kentucky and a Height of 6-7 what was their corresponding School?", "context": "CREATE TABLE table_name_72 (school VARCHAR, college VARCHAR, height VARCHAR)"}, {"answer": "SELECT school FROM table_name_40 WHERE player = \"terrence jones\"", "question": "What School did Terrence Jones play for?", "context": "CREATE TABLE table_name_40 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_42 WHERE height = \"6-3\"", "question": "What Player(s) have a Height of 6-3?", "context": "CREATE TABLE table_name_42 (player VARCHAR, height VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_41 WHERE height = \"6-9\" AND college = \"kentucky\"", "question": "For the player with a Height of 6-9 and College of Kentucky what was their NBA Draft?", "context": "CREATE TABLE table_name_41 (nba_draft VARCHAR, height VARCHAR, college VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE date = \"february 9\"", "question": "What was the score on February 9?", "context": "CREATE TABLE table_name_84 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_73 WHERE team = \"arrows racing team\" AND year < 1983", "question": "What is the average point total for arrows racing team before 1983?", "context": "CREATE TABLE table_name_73 (points INTEGER, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_name_61 WHERE year > 1990 AND chassis = \"jordan 193\"", "question": "What team has jordan 193 chassis after 1990?", "context": "CREATE TABLE table_name_61 (team VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT points FROM table_name_23 WHERE year > 1985 AND engine = \"cosworth v8\"", "question": "How many points for the cosworth v8 engine after 1985?", "context": "CREATE TABLE table_name_23 (points VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_6 WHERE grid < 2", "question": "What is the constructor for the driver with grid less than 2?", "context": "CREATE TABLE table_name_6 (constructor VARCHAR, grid INTEGER)"}, {"answer": "SELECT position FROM table_name_12 WHERE player = \"aaron williams\"", "question": "What Position did Aaron Williams play?", "context": "CREATE TABLE table_name_12 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_name_43 WHERE position = \"guard\" AND school_club_team = \"notre dame\"", "question": "At Position of guard, from the School/Club Team Notre Dame, how many Years for Jazz did that person play?", "context": "CREATE TABLE table_name_43 (years_for_jazz VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_34 WHERE player = \"andre wakefield\"", "question": "Which School/Club Team did Andre Wakefield play for?", "context": "CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_59 WHERE position = \"guard\" AND school_club_team = \"notre dame\"", "question": "What is the Nationality of the player who had Position of guard from School/Club Team Notre Dame?", "context": "CREATE TABLE table_name_59 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_83 WHERE player = \"howard wood\"", "question": "What School/Club Team is Player Howard Wood from?", "context": "CREATE TABLE table_name_83 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_5 WHERE player = \"aaron williams\"", "question": "What School/Club Team is Player Aaron Williams from?", "context": "CREATE TABLE table_name_5 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_9 WHERE floors = \"5\"", "question": "What is the street address of the building with 5 floors?", "context": "CREATE TABLE table_name_9 (street_address VARCHAR, floors VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_94 WHERE floors = \"40\"", "question": "What is the street address of the building with 40 floors?", "context": "CREATE TABLE table_name_94 (street_address VARCHAR, floors VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_53 WHERE floors = \"44\"", "question": "What were the years the building with 44 floors was tallest?", "context": "CREATE TABLE table_name_53 (years_as_tallest VARCHAR, floors VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_20 WHERE name = \"oliver building\"", "question": "What is the street address of Oliver Building?", "context": "CREATE TABLE table_name_20 (street_address VARCHAR, name VARCHAR)"}, {"answer": "SELECT winning_party_2003 FROM table_name_62 WHERE constituency = \"aberdeen north\"", "question": "Can you tell me the Winning party of 2003 that has the Constituency of aberdeen north?", "context": "CREATE TABLE table_name_62 (winning_party_2003 VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_64 WHERE constituency = \"strathkelvin and bearsden\"", "question": "Can you tell me the lowest Rank that has the Constituency of strathkelvin and bearsden?", "context": "CREATE TABLE table_name_64 (rank INTEGER, constituency VARCHAR)"}, {"answer": "SELECT SUM(swing_to_gain) FROM table_name_48 WHERE constituency = \"caithness, sutherland and easter ross\"", "question": "Can you tell me the sum of Swing to gain that has Constituency of caithness, sutherland and easter ross?", "context": "CREATE TABLE table_name_48 (swing_to_gain INTEGER, constituency VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_59 WHERE laps = 75", "question": "What's the Time/Retired of Laps of 75?", "context": "CREATE TABLE table_name_59 (time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_99 WHERE laps > 78 AND time_retired = \"+ 1:09.4\"", "question": "Which Driver has Laps larger than 78, and a Time/Retired of + 1:09.4?", "context": "CREATE TABLE table_name_99 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_72 WHERE grid = 4", "question": "Hows many Laps are in a Grid of 4?", "context": "CREATE TABLE table_name_72 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT venue FROM table_name_42 WHERE away_team = \"collingwood\"", "question": "What venue did the away team Collingwood play at?", "context": "CREATE TABLE table_name_42 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_33 WHERE venue = \"kardinia park\"", "question": "What is the score of the away team that played at Kardinia Park?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_2 WHERE venue = \"kardinia park\"", "question": "What is the name of the away team that played at Kardinia Park?", "context": "CREATE TABLE table_name_2 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_40 WHERE week > 5 AND opponent = \"bye\"", "question": "What is the attendance in the bye week after week 5?", "context": "CREATE TABLE table_name_40 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_1 WHERE time = \"1:59:12\"", "question": "What location had 1:59:12 in time?", "context": "CREATE TABLE table_name_1 (location VARCHAR, time VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_79 WHERE away_team = \"north melbourne\"", "question": "What is the score for the away team of north melbourne?", "context": "CREATE TABLE table_name_79 (away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_46 WHERE venue = \"victoria park\"", "question": "Which home team plays at victoria park?", "context": "CREATE TABLE table_name_46 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_38 WHERE event = \"team all-round\" AND year < 1913", "question": "what is the competition for the event team all-round in the year before 1913?", "context": "CREATE TABLE table_name_38 (competition VARCHAR, event VARCHAR, year VARCHAR)"}, {"answer": "SELECT event FROM table_name_60 WHERE year < 1913 AND position = \"2nd\"", "question": "what is the event for the year less than 1913 with the position of 2nd?", "context": "CREATE TABLE table_name_60 (event VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT competition FROM table_name_8 WHERE venue = \"paris\" AND position = \"1st\" AND event = \"parallel bars\"", "question": "what is the competition in paris for the parallel bars with a position of 1st?", "context": "CREATE TABLE table_name_8 (competition VARCHAR, event VARCHAR, venue VARCHAR, position VARCHAR)"}, {"answer": "SELECT competition FROM table_name_78 WHERE year > 1911 AND position = \"1st\" AND event = \"rings\"", "question": "what is the competition in a year after 1911 with the position of 1st for the rings?", "context": "CREATE TABLE table_name_78 (competition VARCHAR, event VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT year FROM table_name_26 WHERE position = \"1st\" AND venue = \"paris\"", "question": "what is the year that the position was 1st in paris?", "context": "CREATE TABLE table_name_26 (year VARCHAR, position VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_16 WHERE venue = \"mcg\"", "question": "Which team plays their home matches at the mcg Venue?", "context": "CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT host FROM table_name_11 WHERE original_airdate = \"june 11, 2007\"", "question": "What host has an original air date of june 11, 2007?", "context": "CREATE TABLE table_name_11 (host VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT location FROM table_name_96 WHERE record = \"3-2\"", "question": "Where is the location of a team with a 3-2 record?", "context": "CREATE TABLE table_name_96 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT res FROM table_name_67 WHERE record = \"4-2\"", "question": "What is the result of the team with the 4-2 record?", "context": "CREATE TABLE table_name_67 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_30 WHERE home_team = \"st kilda\"", "question": "What was St Kilda's away team score?", "context": "CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_41 WHERE venue = \"moorabbin oval\"", "question": "What was the attendance at Moorabbin Oval?", "context": "CREATE TABLE table_name_41 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_48 WHERE home_team = \"melbourne\"", "question": "Who was Melbourne's away team opponent?", "context": "CREATE TABLE table_name_48 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_19 WHERE away_team = \"footscray\"", "question": "What was the attendance at the Footscray away game?", "context": "CREATE TABLE table_name_19 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT competition FROM table_name_54 WHERE date = \"14 june 2008\"", "question": "Tell me the competition that happened on 14 june 2008", "context": "CREATE TABLE table_name_54 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE venue = \"tanteen recreation ground, st. george's\"", "question": "Tell me the score for Venue of tanteen recreation ground, st. george's", "context": "CREATE TABLE table_name_43 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(_number_of_weeks) FROM table_name_74 WHERE season = \"3 \u2013 spring 2008\"", "question": "How many weeks are associated with Season 3 \u2013 spring 2008?", "context": "CREATE TABLE table_name_74 (_number_of_weeks VARCHAR, season VARCHAR)"}, {"answer": "SELECT winner FROM table_name_89 WHERE _number_of_weeks < 13 AND third_place = \"robert kudelski\"", "question": "Who won when robert kudelski finished with under 13 weeks?", "context": "CREATE TABLE table_name_89 (winner VARCHAR, _number_of_weeks VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_68 WHERE opponent = \"brewers\" AND score = \"6\u20133\"", "question": "What is the average attendance when Brewers are the opponent with a score of 6\u20133?", "context": "CREATE TABLE table_name_68 (attendance INTEGER, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT loss FROM table_name_81 WHERE date = \"june 10\"", "question": "What loss occurred on June 10?", "context": "CREATE TABLE table_name_81 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_36 WHERE score = \"5\u20134\"", "question": "Who is the opponent with a score of 5\u20134?", "context": "CREATE TABLE table_name_36 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT week FROM table_name_70 WHERE result = \"w 28-17\"", "question": "What is the week for Result of w 28-17?", "context": "CREATE TABLE table_name_70 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_45 WHERE date = \"october 26, 1947\"", "question": "What is the avarage Attendance for the Date of october 26, 1947?", "context": "CREATE TABLE table_name_45 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT years FROM table_name_70 WHERE name = \"arapohue school\"", "question": "Can you tell me the Years that has the Name of arapohue school?", "context": "CREATE TABLE table_name_70 (years VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(decile) FROM table_name_52 WHERE area = \"matakohe\" AND roll > 86", "question": "Can you tell me the lowest Decile that has the Area of matakohe, and the Roll larger than 86?", "context": "CREATE TABLE table_name_52 (decile INTEGER, area VARCHAR, roll VARCHAR)"}, {"answer": "SELECT COUNT(roll) FROM table_name_95 WHERE area = \"aranga\"", "question": "Can you tell me the total number of Roll that has the Area of aranga?", "context": "CREATE TABLE table_name_95 (roll VARCHAR, area VARCHAR)"}, {"answer": "SELECT name FROM table_name_95 WHERE roll > 419", "question": "Can you tell me the Name that has the Roll larger than 419?", "context": "CREATE TABLE table_name_95 (name VARCHAR, roll INTEGER)"}, {"answer": "SELECT COUNT(week) FROM table_name_17 WHERE opponent = \"at new orleans saints\" AND attendance > 53 OFFSET 448", "question": "Which total number of Week has an Opponent of at new orleans saints, and an Attendance larger than 53,448?", "context": "CREATE TABLE table_name_17 (week VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_70 WHERE result = \"w 51-21\"", "question": "Which Attendance has a Result of w 51-21?", "context": "CREATE TABLE table_name_70 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_98 WHERE venue = \"arden street oval\"", "question": "Who was the Away team at Arden Street Oval?", "context": "CREATE TABLE table_name_98 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(top_25) FROM table_name_27 WHERE wins > 0", "question": "What is the average top-25 value for majors that have more than 0 wins?", "context": "CREATE TABLE table_name_27 (top_25 INTEGER, wins INTEGER)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_18 WHERE events = 7 AND top_25 > 2", "question": "What is the most number of cuts made that had more than 7 events played and more than 2 top-25s?", "context": "CREATE TABLE table_name_18 (cuts_made INTEGER, events VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_54 WHERE top_25 < 2", "question": "For top-25 values under 2, what is the average number of cuts made?", "context": "CREATE TABLE table_name_54 (cuts_made INTEGER, top_25 INTEGER)"}, {"answer": "SELECT election FROM table_name_26 WHERE seats > 57 AND d\u00e1il = \"24th\"", "question": "With a dail of 24th and more than 57 seats, what is the election?", "context": "CREATE TABLE table_name_26 (election VARCHAR, seats VARCHAR, d\u00e1il VARCHAR)"}, {"answer": "SELECT MAX(seats) FROM table_name_61 WHERE share_of_votes = \"45.3%\" AND total_seats < 166", "question": "with shares of 45.3% and total seats less than 166. what is the greatest number of seat?", "context": "CREATE TABLE table_name_61 (seats INTEGER, share_of_votes VARCHAR, total_seats VARCHAR)"}, {"answer": "SELECT MAX(total_seats) FROM table_name_82 WHERE seats = 77 AND share_of_votes = \"44.2%\"", "question": "with a share of 44.2% and 77 seats, what is the greatest seat total?", "context": "CREATE TABLE table_name_82 (total_seats INTEGER, seats VARCHAR, share_of_votes VARCHAR)"}, {"answer": "SELECT long FROM table_name_60 WHERE year = \"1994\"", "question": "What is the long in 1994?", "context": "CREATE TABLE table_name_60 (long VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_name_6 WHERE long = \"67\"", "question": "Which team has a long of 67?", "context": "CREATE TABLE table_name_6 (team VARCHAR, long VARCHAR)"}, {"answer": "SELECT ravg FROM table_name_27 WHERE ratt = \"9\"", "question": "What is the RAvg of the year with Ratt of 9?", "context": "CREATE TABLE table_name_27 (ravg VARCHAR, ratt VARCHAR)"}, {"answer": "SELECT ratt FROM table_name_97 WHERE long = \"78\"", "question": "What is the Ratt of the year with a 78 long?", "context": "CREATE TABLE table_name_97 (ratt VARCHAR, long VARCHAR)"}, {"answer": "SELECT team FROM table_name_64 WHERE ravg = \"1.3\"", "question": "Which team has a Ravg of 1.3?", "context": "CREATE TABLE table_name_64 (team VARCHAR, ravg VARCHAR)"}, {"answer": "SELECT rate FROM table_name_55 WHERE year = \"17 years\"", "question": "What is the rate of 17 years?", "context": "CREATE TABLE table_name_55 (rate VARCHAR, year VARCHAR)"}, {"answer": "SELECT samurai FROM table_name_97 WHERE stampede = \"t. mask\"", "question": "Name the samurai for stampede of t. mask", "context": "CREATE TABLE table_name_97 (samurai VARCHAR, stampede VARCHAR)"}, {"answer": "SELECT series FROM table_name_3 WHERE home = \"toronto\" AND date = \"may 18\"", "question": "Which series is based in Toronto on may 18?", "context": "CREATE TABLE table_name_3 (series VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_43 WHERE home = \"vancouver\" AND date = \"may 22\"", "question": "What is the combined crowd in Vancouver on may 22?", "context": "CREATE TABLE table_name_43 (attendance INTEGER, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_82 WHERE 2005 = \"314\"", "question": "Tell me the 2012 when 2005 is 314", "context": "CREATE TABLE table_name_82 (Id VARCHAR)"}, {"answer": "SELECT position FROM table_name_85 WHERE caps = 13", "question": "What position does the player with 13 caps play?", "context": "CREATE TABLE table_name_85 (position VARCHAR, caps VARCHAR)"}, {"answer": "SELECT SUM(caps) FROM table_name_30 WHERE player = \"mike macdonald\"", "question": "How many caps for mike macdonald?", "context": "CREATE TABLE table_name_30 (caps INTEGER, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_1 WHERE round < 3", "question": "Tell me the position for round less than 3", "context": "CREATE TABLE table_name_1 (position VARCHAR, round INTEGER)"}, {"answer": "SELECT nationality FROM table_name_19 WHERE position = \"d\"", "question": "Name the nationality for d", "context": "CREATE TABLE table_name_19 (nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT fuel__trans FROM table_name_15 WHERE colour = \"grey & red\"", "question": "What sort of Fuel/Trans does the Grey & Red locomotive have?", "context": "CREATE TABLE table_name_15 (fuel__trans VARCHAR, colour VARCHAR)"}, {"answer": "SELECT status FROM table_name_34 WHERE name = \"the cub/john\"", "question": "What is the status of the Cub/John locomotive?", "context": "CREATE TABLE table_name_34 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT built FROM table_name_22 WHERE fuel__trans = \"diesel-electric\"", "question": "What is the manufacturer, found under the Built column, that made locomotives with a Fuel/Trans of diesel-electric?", "context": "CREATE TABLE table_name_22 (built VARCHAR, fuel__trans VARCHAR)"}, {"answer": "SELECT built FROM table_name_8 WHERE wheels = \"0-4-0\" AND status = \"in service\"", "question": "What is found in the Built column of the locomotive with 0-4-0 wheels that is still in service?", "context": "CREATE TABLE table_name_8 (built VARCHAR, wheels VARCHAR, status VARCHAR)"}, {"answer": "SELECT colour FROM table_name_42 WHERE built = \"minirail 1954\"", "question": "What is the color of the locomotive built by Minirail 1954?", "context": "CREATE TABLE table_name_42 (colour VARCHAR, built VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_65 WHERE res = \"win\" AND event = \"sf 5: stadium\"", "question": "What's the total number of rounds with a win result at the sf 5: stadium event?", "context": "CREATE TABLE table_name_65 (round VARCHAR, res VARCHAR, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_26 WHERE opponent = \"f\u00e1bio maldonado\"", "question": "What location was f\u00e1bio maldonado the opponent at?", "context": "CREATE TABLE table_name_26 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(final_rank) FROM table_name_37 WHERE rank_in_fs = 3 AND rank_in_sp > 4", "question": "How many skaters have a Rank in FS of 3, and a Rank in SP larger than 4?", "context": "CREATE TABLE table_name_37 (final_rank VARCHAR, rank_in_fs VARCHAR, rank_in_sp VARCHAR)"}, {"answer": "SELECT AVG(rank_in_sp) FROM table_name_92 WHERE rank_in_fs > 2 AND final_rank > 5", "question": "What is the average SP rank for skaters with a Rank in FS larger than 2, and a Final Rank larger than 5?", "context": "CREATE TABLE table_name_92 (rank_in_sp INTEGER, rank_in_fs VARCHAR, final_rank VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_69 WHERE 1972 = \"a\" AND 1975 = \"2r\"", "question": "What tournament is listed as A in 1972 and 2R in 1975?", "context": "CREATE TABLE table_name_69 (tournament VARCHAR)"}, {"answer": "SELECT career_w_l FROM table_name_82 WHERE 1976 = \"a\"", "question": "What is theW-L of the tournament listed as A for 1976?", "context": "CREATE TABLE table_name_82 (career_w_l VARCHAR)"}, {"answer": "SELECT 1977 FROM table_name_12 WHERE tournament = \"us open\"", "question": "What is the listing for the US Open in 1977?", "context": "CREATE TABLE table_name_12 (tournament VARCHAR)"}, {"answer": "SELECT career_w_l FROM table_name_23 WHERE 1968 = \"a\" AND 1974 = \"4r\"", "question": "What is the career W-L of the tournament that is listed as A in 1968 and 4R in 1974?", "context": "CREATE TABLE table_name_23 (career_w_l VARCHAR)"}, {"answer": "SELECT combined_consumption FROM table_name_60 WHERE name = \"1.6 16v\"", "question": "What is the combined consumption of 1.6 16v?", "context": "CREATE TABLE table_name_60 (combined_consumption VARCHAR, name VARCHAR)"}, {"answer": "SELECT power FROM table_name_76 WHERE combined_consumption = \"(gas/ethanol)\" AND code = \"k7m hi-torque\"", "question": "What is the power of the engine with a combined consumption of (gas/ethanol) and the k7m hi-torque code?", "context": "CREATE TABLE table_name_76 (power VARCHAR, combined_consumption VARCHAR, code VARCHAR)"}, {"answer": "SELECT combined_consumption FROM table_name_85 WHERE code = \"k9k 796\"", "question": "What is the combined consumption of the engine with the code k9k 796?", "context": "CREATE TABLE table_name_85 (combined_consumption VARCHAR, code VARCHAR)"}, {"answer": "SELECT torque FROM table_name_99 WHERE type = \"16 valves dohc\" AND code = \"k4m hi-flex\"", "question": "What is the torque of the engine with a type 16 valves dohc and a code k4m hi-flex?", "context": "CREATE TABLE table_name_99 (torque VARCHAR, type VARCHAR, code VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_56 WHERE date = \"november 13\"", "question": "Who had the highest assists on the November 13 game?", "context": "CREATE TABLE table_name_56 (high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(date) FROM table_name_77 WHERE score_in_the_final = \"1\u20136, 4\u20136, 5\u20137\"", "question": "What is the most recent date for a singles final with the score of 1\u20136, 4\u20136, 5\u20137?", "context": "CREATE TABLE table_name_77 (date INTEGER, score_in_the_final VARCHAR)"}, {"answer": "SELECT championship FROM table_name_41 WHERE surface = \"clay\" AND score_in_the_final = \"6\u20132, 5\u20137, 6\u20134, 6\u20132\"", "question": "What was the championship that had final score of 6\u20132, 5\u20137, 6\u20134, 6\u20132 and was on a clay surface?", "context": "CREATE TABLE table_name_41 (championship VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_92 WHERE date > 1984 AND outcome = \"winner\" AND opponent_in_the_final = \"v\u00edctor pecci\"", "question": "What was the score in the final, that V\u00edctor Pecci was the opponent and winner after 1984?", "context": "CREATE TABLE table_name_92 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, date VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT championship FROM table_name_79 WHERE score_in_the_final = \"3\u20136, 6\u20134, 5\u20137\"", "question": "Which championship had a score in the final of 3\u20136, 6\u20134, 5\u20137?", "context": "CREATE TABLE table_name_79 (championship VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_57 WHERE laps = 37", "question": "What is the grid total when there are 37 laps?", "context": "CREATE TABLE table_name_57 (grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_19 WHERE grid < 13 AND laps < 9", "question": "What constructor has a grid less than 13 with under 9 laps?", "context": "CREATE TABLE table_name_19 (constructor VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_18 WHERE competition = \"world junior championships\" AND position = \"20th (qf)\"", "question": "What year was the Competition of World Junior Championships with a 20th (qf) position?", "context": "CREATE TABLE table_name_18 (year INTEGER, competition VARCHAR, position VARCHAR)"}, {"answer": "SELECT notes FROM table_name_69 WHERE event = \"400 m\" AND year < 2004 AND position = \"12th (h)\"", "question": "What was the notes of the 400 m event before 2004 with a position of 12th (h)?", "context": "CREATE TABLE table_name_69 (notes VARCHAR, position VARCHAR, event VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_32 WHERE year > 2003 AND notes = \"3:34.88\"", "question": "Which venue had a note of 3:34.88 after 2003?", "context": "CREATE TABLE table_name_32 (venue VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_name_41 WHERE competition = \"all-africa games\" AND year < 2007", "question": "What were the notes of the All-Africa Games before 2007?", "context": "CREATE TABLE table_name_41 (notes VARCHAR, competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT event FROM table_name_87 WHERE year = 2007 AND position = \"5th\"", "question": "Which event in 2007 had a position of 5th?", "context": "CREATE TABLE table_name_87 (event VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_45 WHERE leading_scorer = \"stephen jackson\" AND date = \"12/17\"", "question": "How many attended the game on 12/17 with stephen jackson as the leading scorer?", "context": "CREATE TABLE table_name_45 (attendance INTEGER, leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE tournament = \"sant cugat\" AND opponent_in_the_final = \"jose checa-calvo\"", "question": "WHAT WAS THE SCORE IN THE FINAL PLAYED AGAINST JOSE CHECA-CALVO IN THE SANT CUGAT TOURNAMENT ?", "context": "CREATE TABLE table_name_80 (score VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE opponent_in_the_final = \"rabie chaki\"", "question": "WHAT WAS THE SCORE IN THE FINAL AGAINST RABIE CHAKI?", "context": "CREATE TABLE table_name_92 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_17 WHERE home_team = \"collingwood\"", "question": "What was the away team's score when Collingwood was the home team?", "context": "CREATE TABLE table_name_17 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_87 WHERE venue = \"victoria park\"", "question": "Who was the home team for the game played at Victoria Park?", "context": "CREATE TABLE table_name_87 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_33 WHERE away_team = \"fitzroy\"", "question": "Who was the home team when Fitzroy was the away team?", "context": "CREATE TABLE table_name_33 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_77 WHERE venue = \"lake oval\"", "question": "Who was the home team for the game played at Lake Oval?", "context": "CREATE TABLE table_name_77 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_63 WHERE championship = \"johannesburg, south africa\"", "question": "Who was the opponent in the championship in Johannesburg, South Africa?", "context": "CREATE TABLE table_name_63 (opponent_in_the_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_8 WHERE pct > 0.526 AND rank < 37 AND losses = 947", "question": "What is the lowest amount of wins a manager with more than 0.526 pct., ranked higher than 37, and 947 losses has?", "context": "CREATE TABLE table_name_8 (wins INTEGER, losses VARCHAR, pct VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_31 WHERE home_team = \"essendon\"", "question": "I want the total number of people in the crowd for essendon home team", "context": "CREATE TABLE table_name_31 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_64 WHERE laps > 102 AND time_retired = \"+ 6.18\"", "question": "How many grids have 102 laps and a Time/Retired of + 6.18?", "context": "CREATE TABLE table_name_64 (grid VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_29 WHERE driver = \"innes ireland\" AND grid > 11", "question": "How many laps did innes ireland drive with a grid higher than 11?", "context": "CREATE TABLE table_name_29 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_16 WHERE constructor = \"brm\" AND driver = \"tony maggs\" AND laps > 102", "question": "What is the average grid that has a Constructor of brm, tony maggs, and a Laps larger than 102?", "context": "CREATE TABLE table_name_16 (grid INTEGER, laps VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE date = \"23 july 1992\"", "question": "I want the score for 23 july 1992", "context": "CREATE TABLE table_name_86 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_64 WHERE date = \"23 july 1992\"", "question": "I want the venue for 23 july 1992", "context": "CREATE TABLE table_name_64 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_1 WHERE grid < 8 AND laps = 73 AND constructor = \"williams - bmw\"", "question": "What is the Time/Retired that has a Grid smaller than 8, 73 laps, and a Constructor of williams - bmw?", "context": "CREATE TABLE table_name_1 (time_retired VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE away_team = \"richmond\"", "question": "On what date was Richmond playing as an away team?", "context": "CREATE TABLE table_name_32 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_99 WHERE venue = \"victoria park\"", "question": "What is the crowd size for Victoria park?", "context": "CREATE TABLE table_name_99 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_97 WHERE venue = \"princes park\"", "question": "What is the average crowd size for princes park?", "context": "CREATE TABLE table_name_97 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_15 WHERE name = \"giuly\"", "question": "Name the transfer wind for giuly", "context": "CREATE TABLE table_name_15 (transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_24 WHERE status = \"transfer\" AND country = \"fra\"", "question": "Name the transfer fee for transfer status for fra", "context": "CREATE TABLE table_name_24 (transfer_fee VARCHAR, status VARCHAR, country VARCHAR)"}, {"answer": "SELECT status FROM table_name_8 WHERE name = \"belletti\"", "question": "Name the status for belletti", "context": "CREATE TABLE table_name_8 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_22 WHERE country = \"fra\"", "question": "Name the moving to for fra", "context": "CREATE TABLE table_name_22 (moving_to VARCHAR, country VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_12 WHERE moving_to = \"realmadrid\"", "question": "Name the transfer window of realmadrid", "context": "CREATE TABLE table_name_12 (transfer_window VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT country FROM table_name_24 WHERE moving_to = \"chelsea\"", "question": "Name the country moving to chelsea", "context": "CREATE TABLE table_name_24 (country VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_44 WHERE date = \"20 february 2008\"", "question": "Who was the leading scorer of the game on 20 February 2008?", "context": "CREATE TABLE table_name_44 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_99 WHERE leading_scorer = \"rudy gay (23)\"", "question": "What is the visitor team of the game with Rudy Gay (23) as the leading scorer?", "context": "CREATE TABLE table_name_99 (visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT home FROM table_name_83 WHERE visitor = \"grizzlies\" AND leading_scorer = \"rudy gay (21)\"", "question": "What is the home team of the game where the Grizzlies were the visitor team and Rudy Gay (21) was the leading scorer?", "context": "CREATE TABLE table_name_83 (home VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT record FROM table_name_87 WHERE date = \"5 february 2008\"", "question": "What is the record of the game on 5 February 2008?", "context": "CREATE TABLE table_name_87 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_33 WHERE production_code = \"ad1d09\"", "question": "tell me the writer of production code ad1d09.", "context": "CREATE TABLE table_name_33 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_name_32 WHERE production_code = \"ad1d02\"", "question": "tell me the director of the production code ad1d02.", "context": "CREATE TABLE table_name_32 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT team__league_ FROM table_name_85 WHERE reg_gp = 0 AND pick__number < 136 AND player = \"regan darby\"", "question": "Which team has a Reg GP of 0, a pick number under 136 with a player named Regan Darby?", "context": "CREATE TABLE table_name_85 (team__league_ VARCHAR, player VARCHAR, reg_gp VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT planet FROM table_name_50 WHERE orbital_period = \"3.23 days\"", "question": "What planet orbits in 3.23 days?", "context": "CREATE TABLE table_name_50 (planet VARCHAR, orbital_period VARCHAR)"}, {"answer": "SELECT planet AS Type FROM table_name_56 WHERE radial_velocity__m_s_ > 45.2", "question": "What type of planet has a radial velocity of 45.2 m/s?", "context": "CREATE TABLE table_name_56 (planet VARCHAR, radial_velocity__m_s_ INTEGER)"}, {"answer": "SELECT planet AS Type FROM table_name_51 WHERE semimajor_axis___au__ = 0.07", "question": "What type of planet has a semimajor axis of 0.07 AU?", "context": "CREATE TABLE table_name_51 (planet VARCHAR, semimajor_axis___au__ VARCHAR)"}, {"answer": "SELECT city FROM table_name_83 WHERE stadium = \"telstra dome\"", "question": "What is the city where the Telstra Dome is?", "context": "CREATE TABLE table_name_83 (city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT d_41 FROM table_name_97 WHERE d_46 = \"r 6\"", "question": "Name the D 41 which has a D 46 of r 6", "context": "CREATE TABLE table_name_97 (d_41 VARCHAR, d_46 VARCHAR)"}, {"answer": "SELECT d_41 FROM table_name_45 WHERE d_43 = \"r 18\"", "question": "Name the D 41 which has a D 43 of r 18", "context": "CREATE TABLE table_name_45 (d_41 VARCHAR, d_43 VARCHAR)"}, {"answer": "SELECT r_52 FROM table_name_54 WHERE d_44 = \"d 44\"", "question": "Name the R 52 which has a D 44 of d 44", "context": "CREATE TABLE table_name_54 (r_52 VARCHAR, d_44 VARCHAR)"}, {"answer": "SELECT d_46 FROM table_name_34 WHERE d_43 = \"majority\u2192\"", "question": "Name the D 46 which has a D 43 of majority\u2192", "context": "CREATE TABLE table_name_34 (d_46 VARCHAR, d_43 VARCHAR)"}, {"answer": "SELECT d_42 FROM table_name_6 WHERE d_46 = \"r 26\"", "question": "Name the D 42 which has a D 46 of r 26", "context": "CREATE TABLE table_name_6 (d_42 VARCHAR, d_46 VARCHAR)"}, {"answer": "SELECT d_42 FROM table_name_29 WHERE d_44 = \"d 44\"", "question": "Name the D 42 which has a D 44 of d 44", "context": "CREATE TABLE table_name_29 (d_42 VARCHAR, d_44 VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_24 WHERE club = \"sd eibar\" AND played < 38", "question": "How many wins did SD Eibar, which played less than 38 games, have?", "context": "CREATE TABLE table_name_24 (wins INTEGER, club VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_56 WHERE wins < 20 AND points < 41 AND goals_for < 27", "question": "What is the highest number of draws a club with less than 20 wins, less than 41 points, and less than 27 goals have?", "context": "CREATE TABLE table_name_56 (draws INTEGER, goals_for VARCHAR, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(goal_difference) FROM table_name_81 WHERE wins > 13 AND losses < 8 AND draws < 11", "question": "What is the lowest goal difference a club with more than 13 wins, less than 8 losses, and less than 11 draws has?", "context": "CREATE TABLE table_name_81 (goal_difference INTEGER, draws VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_50 WHERE points > 71 AND losses < 8", "question": "What is the number of played games a club with more than 71 points and less than 8 losses has?", "context": "CREATE TABLE table_name_50 (played INTEGER, points VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(goal_difference) FROM table_name_94 WHERE goals_against = 61 AND draws < 11", "question": "What is the lowest goal difference a club with 61 goals against and less than 11 draws has?", "context": "CREATE TABLE table_name_94 (goal_difference INTEGER, goals_against VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_25 WHERE venue = \"princes park\"", "question": "Which Crowd has a Venue of princes park?", "context": "CREATE TABLE table_name_25 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_82 WHERE venue = \"mcg\"", "question": "Which Away team has a Venue of mcg?", "context": "CREATE TABLE table_name_82 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_59 WHERE home_team = \"essendon\"", "question": "Which average Crowd has a Home team of essendon?", "context": "CREATE TABLE table_name_59 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_92 WHERE player = \"terry cook\"", "question": "When was terry cook picked?", "context": "CREATE TABLE table_name_92 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_99 WHERE player = \"todd hammel\"", "question": "What position is todd hammel?", "context": "CREATE TABLE table_name_99 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_98 WHERE home_team = \"essendon\"", "question": "What is the score of the away team that played Essendon?", "context": "CREATE TABLE table_name_98 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_71 WHERE home_team = \"north melbourne\"", "question": "How many people attended the North Melbourne game?", "context": "CREATE TABLE table_name_71 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_9 WHERE away_team = \"carlton\"", "question": "Where did Carlton play?", "context": "CREATE TABLE table_name_9 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_95 WHERE venue = \"vfl park\"", "question": "Which team played at VFL Park?", "context": "CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE college = \"arizona\"", "question": "Which player has a College of arizona?", "context": "CREATE TABLE table_name_83 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT school FROM table_name_39 WHERE hometown = \"phoenix, az\"", "question": "Which school has a Hometown of phoenix, az?", "context": "CREATE TABLE table_name_39 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_57 WHERE school = \"huntington high school\"", "question": "Which NBA draft has a School of huntington high school?", "context": "CREATE TABLE table_name_57 (nba_draft VARCHAR, school VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_91 WHERE school = \"st. mary's high school\"", "question": "Which NBA draft has a School of st. mary's high school?", "context": "CREATE TABLE table_name_91 (nba_draft VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_6 WHERE player = \"donte greene\"", "question": "Which school has a Player of donte greene?", "context": "CREATE TABLE table_name_6 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_33 WHERE r_magjistari > 12", "question": "For R. Magjistari scores over 12, what is the highest number of points?", "context": "CREATE TABLE table_name_33 (points INTEGER, r_magjistari INTEGER)"}, {"answer": "SELECT AVG(a_krajka) FROM table_name_60 WHERE r_magjistari < 6 AND d_tukiqi = 6 AND rank < 5", "question": "For R. Magjistari scores under 6, D. Tukiqi scores of 6, and ranks under 5, what is the average A. Krajka score?", "context": "CREATE TABLE table_name_60 (a_krajka INTEGER, rank VARCHAR, r_magjistari VARCHAR, d_tukiqi VARCHAR)"}, {"answer": "SELECT 2006 AS _2007_season FROM table_name_13 WHERE club = \"vit\u00f3ria de set\u00fabal\"", "question": "Where did the Vit\u00f3ria de Set\u00fabal club place in the 2006-2007 season?", "context": "CREATE TABLE table_name_13 (club VARCHAR)"}, {"answer": "SELECT SUM(long) FROM table_name_12 WHERE yards < 197 AND player = \"matt nagy\"", "question": "Name the sum of Long for yards less than 197 and players of matt nagy", "context": "CREATE TABLE table_name_12 (long INTEGER, yards VARCHAR, player VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_26 WHERE home = \"tampa bay\"", "question": "Who was the visitor team in tampa bay?", "context": "CREATE TABLE table_name_26 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_55 WHERE record = \"32-29-8\"", "question": "Who had a 32-29-8 record at home?", "context": "CREATE TABLE table_name_55 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_99 WHERE record = \"33-30-8\"", "question": "Who had a 33-30-8 record at home?", "context": "CREATE TABLE table_name_99 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_15 WHERE away_team = \"north melbourne\"", "question": "What was the home teams score when North Melbourne played as the away team?", "context": "CREATE TABLE table_name_15 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_11 WHERE venue = \"windy hill\"", "question": "Who was the away team at Windy Hill?", "context": "CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_22 WHERE home_team = \"fitzroy\"", "question": "Where did Fitzroy play as the home team?", "context": "CREATE TABLE table_name_22 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_99 WHERE home_team = \"south melbourne\"", "question": "Who was away team at the home game of south melbourne?", "context": "CREATE TABLE table_name_99 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_26 WHERE home_team = \"south melbourne\"", "question": "What did the away team score when they visited south melbourne?", "context": "CREATE TABLE table_name_26 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_10 WHERE away_team = \"north melbourne\"", "question": "What is the highest crowd with north melbourne as away team?", "context": "CREATE TABLE table_name_10 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_88 WHERE home_team = \"south melbourne\"", "question": "Which venue has a Home team of south melbourne?", "context": "CREATE TABLE table_name_88 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_82 WHERE away_team = \"fitzroy\"", "question": "What home score has an Away team of fitzroy?", "context": "CREATE TABLE table_name_82 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_61 WHERE venue = \"corio oval\"", "question": "Which home team has a Venue of corio oval?", "context": "CREATE TABLE table_name_61 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_58 WHERE away_team = \"carlton\"", "question": "Which team has an Away team of carlton?", "context": "CREATE TABLE table_name_58 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE away_team = \"richmond\"", "question": "Which date has an Away team of richmond?", "context": "CREATE TABLE table_name_21 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(area__km\u00b2_) FROM table_name_85 WHERE capital = \"matanzas\" AND population__2005_ < 670427", "question": "How many regions have a capital of matanzas and a 2005 population under 670427?", "context": "CREATE TABLE table_name_85 (area__km\u00b2_ VARCHAR, capital VARCHAR, population__2005_ VARCHAR)"}, {"answer": "SELECT AVG(area__km\u00b2_) FROM table_name_25 WHERE capital = \"camag\u00fcey\" AND population___percentage_ > 7.02", "question": "What is the average area that has a Capital of camag\u00fcey, with a Population (%) larger than 7.02?", "context": "CREATE TABLE table_name_25 (area__km\u00b2_ INTEGER, capital VARCHAR, population___percentage_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE attendance > 18 OFFSET 630", "question": "What was the score of the Kings game attended by more than 18,630 people?", "context": "CREATE TABLE table_name_76 (score VARCHAR, attendance INTEGER)"}, {"answer": "SELECT AVG(attendance) FROM table_name_92 WHERE record = \"1\u20135\u20130\"", "question": "What was the average attendance for a Kings game when they had a record of 1\u20135\u20130?", "context": "CREATE TABLE table_name_92 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT team FROM table_name_47 WHERE tournament > 1 AND regular_season = \"0\" AND total = 2", "question": "What team has over 1 tournament title, 0 in the regular season, and 2 total?", "context": "CREATE TABLE table_name_47 (team VARCHAR, total VARCHAR, tournament VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_8 WHERE tournament = 3", "question": "What is the total on average for teams with 3 tournaments?", "context": "CREATE TABLE table_name_8 (total INTEGER, tournament VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_21 WHERE laps > 7 AND driver = \"rubens barrichello\"", "question": "what is the lowest grid when the laps is more than 7 and the driver is rubens barrichello?", "context": "CREATE TABLE table_name_21 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT grid FROM table_name_5 WHERE laps > 0 AND time_retired = \"engine\" AND driver = \"pedro de la rosa\"", "question": "what is the grid when the laps is more than 0, the time/retired is engine and the driver is pedro de la rosa?", "context": "CREATE TABLE table_name_5 (grid VARCHAR, driver VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_84 WHERE grid = 13", "question": "who is the driver with the grid of 13?", "context": "CREATE TABLE table_name_84 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(championships) FROM table_name_92 WHERE established = 1976", "question": "How many championships did the team or teams established in 1976 win?", "context": "CREATE TABLE table_name_92 (championships INTEGER, established VARCHAR)"}, {"answer": "SELECT MAX(established) FROM table_name_54 WHERE league = \"wnba\" AND championships > 2", "question": "Which WNBA team that won at least 2 championships was established most recently?", "context": "CREATE TABLE table_name_54 (established INTEGER, league VARCHAR, championships VARCHAR)"}, {"answer": "SELECT venue FROM table_name_39 WHERE league = \"wnba\"", "question": "What are the venues that host WNBA games?", "context": "CREATE TABLE table_name_39 (venue VARCHAR, league VARCHAR)"}, {"answer": "SELECT bowling_style FROM table_name_10 WHERE date_of_birth = \"16 march 1974\"", "question": "Name the bowling style of the player born 16 march 1974", "context": "CREATE TABLE table_name_10 (bowling_style VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT batting_style FROM table_name_57 WHERE player = \"heath streak\"", "question": "Name the batting style for heath streak", "context": "CREATE TABLE table_name_57 (batting_style VARCHAR, player VARCHAR)"}, {"answer": "SELECT name FROM table_name_87 WHERE floors = 52", "question": "What is the name of a building that has 52 floors?", "context": "CREATE TABLE table_name_87 (name VARCHAR, floors VARCHAR)"}, {"answer": "SELECT COUNT(floors) FROM table_name_95 WHERE name = \"custom house tower\"", "question": "How many floors does the Custom House Tower have?", "context": "CREATE TABLE table_name_95 (floors VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(floors) FROM table_name_52 WHERE street_address = \"800 boylston street\"", "question": "How many floors does the building on 800 Boylston Street have?", "context": "CREATE TABLE table_name_52 (floors INTEGER, street_address VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_17 WHERE name = \"prudential tower\"", "question": "What is the street address for the Prudential Tower building?", "context": "CREATE TABLE table_name_17 (street_address VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(floors) FROM table_name_81 WHERE street_address = \"800 boylston street\"", "question": "There is a building at 800 Boylston Street, how many floors does it have?", "context": "CREATE TABLE table_name_81 (floors INTEGER, street_address VARCHAR)"}, {"answer": "SELECT MAX(number_of_jews__wjc_) FROM table_name_1 WHERE rank___wjc__ = 6 AND rank__arda_ > 8", "question": "What was the highest number of WJC Jews that had a WJC rank of 6 and a ARDA rank of more than 8?", "context": "CREATE TABLE table_name_1 (number_of_jews__wjc_ INTEGER, rank___wjc__ VARCHAR, rank__arda_ VARCHAR)"}, {"answer": "SELECT number_of_jews__wjc_ FROM table_name_96 WHERE rank___wjc__ = 6", "question": "What was the number of WJC Jews with a WJC rank of 6?", "context": "CREATE TABLE table_name_96 (number_of_jews__wjc_ VARCHAR, rank___wjc__ VARCHAR)"}, {"answer": "SELECT SUM(number_of_jews__wjc_) FROM table_name_73 WHERE metro_area = \"los angeles\" AND rank__arda_ > 2", "question": "How many number of WJC Jews in the Los Angeles Metro Area has a ARDA rank of more than 2?", "context": "CREATE TABLE table_name_73 (number_of_jews__wjc_ INTEGER, metro_area VARCHAR, rank__arda_ VARCHAR)"}, {"answer": "SELECT driver FROM table_name_55 WHERE laps < 19 AND time_retired = \"ignition\"", "question": "Who drove during the race with less than 19 laps and a time listed as ignition?", "context": "CREATE TABLE table_name_55 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT record FROM table_name_90 WHERE round > 2 AND event = \"raging wolf 6: mayhem in the mist\"", "question": "What is his record for fights that went over 2 rounds in the Event of raging wolf 6: mayhem in the mist?", "context": "CREATE TABLE table_name_90 (record VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_54 WHERE venue = \"moorabbin oval\"", "question": "What is the highest number of people that attended a game at Moorabbin Oval?", "context": "CREATE TABLE table_name_54 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_83 WHERE away_team = \"essendon\"", "question": "What is the least amount of people that attended a game when Essendon was the away team?", "context": "CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE away_team = \"south melbourne\"", "question": "Which date did South Melbourne play as the away team?", "context": "CREATE TABLE table_name_74 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_3 WHERE driver = \"jackie stewart\"", "question": "What is the constructor for Jackie Stewart's car?", "context": "CREATE TABLE table_name_3 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT location FROM table_name_54 WHERE driver = \"denny hulme\"", "question": "What is the location where Denny Hulme was the driver?", "context": "CREATE TABLE table_name_54 (location VARCHAR, driver VARCHAR)"}, {"answer": "SELECT train_no FROM table_name_87 WHERE origin = \"secunderabad junction\"", "question": "What is number of the train that originated in Secunderabad Junction?", "context": "CREATE TABLE table_name_87 (train_no VARCHAR, origin VARCHAR)"}, {"answer": "SELECT origin FROM table_name_29 WHERE destination = \"anand vihar terminal\"", "question": "From where did the train that arrived in the Anand Vihar Terminal originate?", "context": "CREATE TABLE table_name_29 (origin VARCHAR, destination VARCHAR)"}, {"answer": "SELECT origin FROM table_name_15 WHERE train_no = \"15929/30\"", "question": "From where did Train No. 15929/30 originate?", "context": "CREATE TABLE table_name_15 (origin VARCHAR, train_no VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_82 WHERE destination = \"bangalore\"", "question": "What is the frequency of the train to Bangalore?", "context": "CREATE TABLE table_name_82 (frequency VARCHAR, destination VARCHAR)"}, {"answer": "SELECT COUNT(norwegian_americans__2009_) FROM table_name_72 WHERE norwegian_americans__2000_ = 109 OFFSET 744", "question": "How many Norwegian Americans have Norwegian Americans (2000) of 109,744?", "context": "CREATE TABLE table_name_72 (norwegian_americans__2009_ VARCHAR, norwegian_americans__2000_ VARCHAR)"}, {"answer": "SELECT state FROM table_name_95 WHERE percent__2009_ = \"6.2%\"", "question": "Which state has a Percent (2009) of 6.2%?", "context": "CREATE TABLE table_name_95 (state VARCHAR, percent__2009_ VARCHAR)"}, {"answer": "SELECT holding FROM table_name_56 WHERE component = \"customers\"", "question": "What is the holding of the customers?", "context": "CREATE TABLE table_name_56 (holding VARCHAR, component VARCHAR)"}, {"answer": "SELECT allied_unrelated FROM table_name_61 WHERE allied_related = \"common\"", "question": "What Allied-Unrelated is labeled as \"common\"?", "context": "CREATE TABLE table_name_61 (allied_unrelated VARCHAR, allied_related VARCHAR)"}, {"answer": "SELECT integrated FROM table_name_40 WHERE allied_related = \"some shared\"", "question": "Which integrated has an allied-related of some shared?", "context": "CREATE TABLE table_name_40 (integrated VARCHAR, allied_related VARCHAR)"}, {"answer": "SELECT integrated FROM table_name_11 WHERE allied_related = \"centralized\"", "question": "What integrated has an allied-related of centralized?", "context": "CREATE TABLE table_name_11 (integrated VARCHAR, allied_related VARCHAR)"}, {"answer": "SELECT component FROM table_name_21 WHERE integrated = \"one\"", "question": "What component has an integrated of one?", "context": "CREATE TABLE table_name_21 (component VARCHAR, integrated VARCHAR)"}, {"answer": "SELECT COUNT(candidates) FROM table_name_71 WHERE _percentage_of_vote = 0 AND election = 1999 AND seats_won > 0", "question": "How many candidates had 0 percent of the vote in 1999?", "context": "CREATE TABLE table_name_71 (candidates VARCHAR, seats_won VARCHAR, _percentage_of_vote VARCHAR, election VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE leading_scorer = \"manu gin\u00f3bili (44)\"", "question": "What is the score of the game with Manu gin\u00f3bili (44) as the leading scorer?", "context": "CREATE TABLE table_name_27 (score VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT record FROM table_name_60 WHERE date = \"february 21, 2008\"", "question": "What is the record of the game on February 21, 2008?", "context": "CREATE TABLE table_name_60 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_74 WHERE leading_scorer = \"manu gin\u00f3bili (34)\"", "question": "Who was the home team of the game with manu gin\u00f3bili (34) as the leading scorer?", "context": "CREATE TABLE table_name_74 (home VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE date = \"february 25, 2008\"", "question": "What is the record of the game on February 25, 2008?", "context": "CREATE TABLE table_name_59 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT type FROM table_name_7 WHERE moving_to = \"valenciennes\"", "question": "What type is shown with a moving to of valenciennes?", "context": "CREATE TABLE table_name_7 (type VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_63 WHERE transfer_fee = \"n/a\" AND moving_to = \"free agent\" AND name = \"joe sagar\"", "question": "What is the transfer window with n/a as the Transfer fee, free agent for the Moving to, and Joe Sagar as the name?", "context": "CREATE TABLE table_name_63 (transfer_window VARCHAR, name VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT name FROM table_name_81 WHERE type = \"end of contract\" AND nat = \"sco\" AND moving_to = \"cardiff city\"", "question": "What is the name of the person with a type of end of contract, nat of sco, and the Moving to is cardiff city?", "context": "CREATE TABLE table_name_81 (name VARCHAR, moving_to VARCHAR, type VARCHAR, nat VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_54 WHERE transfer_fee = \"free\" AND moving_to = \"derby county\"", "question": "What Transfer window that has a Transfer fee of free, with a Moving to of derby county?", "context": "CREATE TABLE table_name_54 (transfer_window VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_98 WHERE attendance = 56 OFFSET 505", "question": "What is the first game number that had attendance of 56,505?", "context": "CREATE TABLE table_name_98 (game INTEGER, attendance VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_59 WHERE away_team = \"footscray\"", "question": "What was the crowd size for the away team footscray?", "context": "CREATE TABLE table_name_59 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_4 WHERE circuit = \"goodwood\"", "question": "Which Race Name has Goodwood in the Curcuit?", "context": "CREATE TABLE table_name_4 (race_name VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_6 WHERE winning_driver = \"jim clark\" AND circuit = \"syracuse\"", "question": "Which Constructor has the Winning Driver, Jim Clark and the Circuit, Syracuse?", "context": "CREATE TABLE table_name_6 (constructor VARCHAR, winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_72 WHERE winning_driver = \"jo siffert\"", "question": "Which Constructor has the Winning Driver, Jo Siffert?", "context": "CREATE TABLE table_name_72 (constructor VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_49 WHERE circuit = \"pergusa\"", "question": "Which Constructor has Pergusa in the Circuit?", "context": "CREATE TABLE table_name_49 (constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE venue = \"mcg\"", "question": "On what date was a game played at MCG?", "context": "CREATE TABLE table_name_89 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_93 WHERE gold = 2 AND silver < 1", "question": "What is the average total medals of the team with 2 gold and less than 1 silver?", "context": "CREATE TABLE table_name_93 (total INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_95 WHERE nation = \"iceland\" AND total < 87", "question": "What is the lowest amount of silver medals Iceland, who has less than 87 medals, has?", "context": "CREATE TABLE table_name_95 (silver INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_86 WHERE nation = \"andorra\" AND total > 6", "question": "What is the least amount of bronze Andorra, who has more than 6 total medals, has?", "context": "CREATE TABLE table_name_86 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_75 WHERE nation = \"liechtenstein\" AND gold > 11", "question": "What is the lowest amount of bronze Liechtenstein, who has more than 11 gold, has?", "context": "CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_87 WHERE bronze < 15 AND nation = \"montenegro\" AND total > 11", "question": "What is the average amount of silver medals Montenegro, who has less than 15 bronze and more than 11 total medals, has?", "context": "CREATE TABLE table_name_87 (silver INTEGER, total VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(voter_turnout) FROM table_name_62 WHERE byut = 50.7 AND ou_psd < 36.8", "question": "What is the lower turnout that has a byut of 50.7 and an ou psd smaller than 36.8?", "context": "CREATE TABLE table_name_62 (voter_turnout INTEGER, byut VARCHAR, ou_psd VARCHAR)"}, {"answer": "SELECT COUNT(voter_registration) FROM table_name_78 WHERE byut = 48.2", "question": "What is the voter registration that has a BYut of 48.2?", "context": "CREATE TABLE table_name_78 (voter_registration VARCHAR, byut VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_22 WHERE venue = \"vfl park\"", "question": "Who was the home team at VFL Park?", "context": "CREATE TABLE table_name_22 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_78 WHERE venue = \"kardinia park\"", "question": "Who was the home team at Kardinia Park?", "context": "CREATE TABLE table_name_78 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT paper_type FROM table_name_3 WHERE denomination = \"1 cent\"", "question": "What type of paper is the 1 cent denominations made on?", "context": "CREATE TABLE table_name_3 (paper_type VARCHAR, denomination VARCHAR)"}, {"answer": "SELECT paper_type FROM table_name_7 WHERE date_of_issue = \"26 july 2007\"", "question": "What is the paper type that the one that was issued on 26 july 2007 done on?", "context": "CREATE TABLE table_name_7 (paper_type VARCHAR, date_of_issue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_65 WHERE home_team = \"footscray\"", "question": "What did the home team footscray score?", "context": "CREATE TABLE table_name_65 (home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_95 WHERE home_team = \"footscray\"", "question": "What was the total crowd size for the him team footscray?", "context": "CREATE TABLE table_name_95 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_57 WHERE venue = \"corio oval\"", "question": "What is the Home team at corio oval?", "context": "CREATE TABLE table_name_57 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT livery FROM table_name_82 WHERE date < 1936 AND description = \"gresley rf\"", "question": "What livery was worn on the date before 1936, with the description of Gresley RF?", "context": "CREATE TABLE table_name_82 (livery VARCHAR, date VARCHAR, description VARCHAR)"}, {"answer": "SELECT number_ & _name FROM table_name_16 WHERE description = \"gresley rb\" AND date < 1937", "question": "Which number and name has the description Gresley RB and a date before 1937?", "context": "CREATE TABLE table_name_16 (number_ VARCHAR, _name VARCHAR, description VARCHAR, date VARCHAR)"}, {"answer": "SELECT owner_s_ FROM table_name_60 WHERE date < 1940 AND number_ & _name = \"no. 1222\"", "question": "Who is the owner before 1940, who had a number and name of no. 1222?", "context": "CREATE TABLE table_name_60 (owner_s_ VARCHAR, date VARCHAR, number_ VARCHAR, _name VARCHAR)"}, {"answer": "SELECT type FROM table_name_2 WHERE scratch = \"750 gb\"", "question": "What type has a scratch of 750 GB?", "context": "CREATE TABLE table_name_2 (type VARCHAR, scratch VARCHAR)"}, {"answer": "SELECT cache FROM table_name_13 WHERE memory = \"24 gb qpi 5.86 gt/s\" AND number = 64", "question": "What is the Cache for a Number 64 with a Memory of 24 gb qpi 5.86 gt/s?", "context": "CREATE TABLE table_name_13 (cache VARCHAR, memory VARCHAR, number VARCHAR)"}, {"answer": "SELECT memory FROM table_name_68 WHERE clock = \"2.26ghz\" AND number = 32", "question": "What is the Memory for a Number 32 with a Clock of 2.26ghz?", "context": "CREATE TABLE table_name_68 (memory VARCHAR, clock VARCHAR, number VARCHAR)"}, {"answer": "SELECT place_of_birth FROM table_name_62 WHERE acquired = 2008", "question": "Of those acquired in 2008, where were they born?", "context": "CREATE TABLE table_name_62 (place_of_birth VARCHAR, acquired VARCHAR)"}, {"answer": "SELECT shoots FROM table_name_99 WHERE acquired = 2010 AND player = \"matthew myers\"", "question": "What is the shooting preference of Matthew Myers, acquired in 2010?", "context": "CREATE TABLE table_name_99 (shoots VARCHAR, acquired VARCHAR, player VARCHAR)"}, {"answer": "SELECT acquired FROM table_name_18 WHERE player = \"bruce graham\"", "question": "In what year was player Bruce Graham acquired?", "context": "CREATE TABLE table_name_18 (acquired VARCHAR, player VARCHAR)"}, {"answer": "SELECT d_42_\u221a FROM table_name_67 WHERE d_44_\u221a = \"r 36 \u221a\"", "question": "Name the D 42 \u221a when it has D 44 \u221a of r 36 \u221a", "context": "CREATE TABLE table_name_67 (d_42_\u221a VARCHAR, d_44_\u221a VARCHAR)"}, {"answer": "SELECT d_45_o FROM table_name_30 WHERE d_46_o = \"d 26\"", "question": "Name the D 45 O that has D 46 O of d 26", "context": "CREATE TABLE table_name_30 (d_45_o VARCHAR, d_46_o VARCHAR)"}, {"answer": "SELECT MIN(goals_against) FROM table_name_29 WHERE goal_difference = 7 AND losses > 13", "question": "Name the least goals for goal difference of 7 and losses more than 13", "context": "CREATE TABLE table_name_29 (goals_against INTEGER, goal_difference VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_12 WHERE goal_difference > -17 AND played < 38", "question": "Tell me the total number of positions with goal difference more than -17 and played less than 38", "context": "CREATE TABLE table_name_12 (position VARCHAR, goal_difference VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_21 WHERE home_team = \"south melbourne\"", "question": "What was the attendance when South Melbourne played as the home team?", "context": "CREATE TABLE table_name_21 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_80 WHERE away_team = \"footscray\"", "question": "What was the attendance when Footscray played as the away team?", "context": "CREATE TABLE table_name_80 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(quantity) FROM table_name_72 WHERE manufacturer = \"peckett and sons\" AND gwr_nos = \"696, 779, 93 5\"", "question": "What is the lowest quantity for GWR Nos. 696, 779, 93 5 from the manufacturer Peckett and Sons?", "context": "CREATE TABLE table_name_72 (quantity INTEGER, manufacturer VARCHAR, gwr_nos VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_95 WHERE opening > 2015 AND city = \"trabzon\"", "question": "What is the lowest capacity with an opening larger than 2015 in Trabzon?", "context": "CREATE TABLE table_name_95 (capacity INTEGER, opening VARCHAR, city VARCHAR)"}, {"answer": "SELECT AVG(opening) FROM table_name_20 WHERE stadium = \"stadyum samsun\" AND capacity < 34 OFFSET 658", "question": "What is the average opening at Stadyum Samsun with a capacity smaller than 34,658?", "context": "CREATE TABLE table_name_20 (opening INTEGER, stadium VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_name_46 WHERE school_club_team = \"oregon state\"", "question": "What is the Years for Jazz Club at Oregon State?", "context": "CREATE TABLE table_name_46 (years_for_jazz VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_name_38 WHERE player = \"andre owens\"", "question": "Which player is Andre Owens in Year for Jazz?", "context": "CREATE TABLE table_name_38 (years_for_jazz VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_name_54 WHERE school_club_team = \"houston\"", "question": "What is the Year for Jazz club of Houston?", "context": "CREATE TABLE table_name_54 (years_for_jazz VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_58 WHERE player = \"dan o'sullivan\"", "question": "What is position does Dan O'Sullivan play?", "context": "CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_21 WHERE school_club_team = \"kansas\"", "question": "What position in the club team of Kansas?", "context": "CREATE TABLE table_name_21 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_name_43 WHERE position = \"center\" AND player = \"greg ostertag\"", "question": "Who is the center position of Years for Jazz, Greg Ostertag?", "context": "CREATE TABLE table_name_43 (years_for_jazz VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE away_team = \"university\"", "question": "What is the Date for the Away team University?", "context": "CREATE TABLE table_name_73 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_19 WHERE venue = \"junction oval\"", "question": "What is the Home team score at junction oval?", "context": "CREATE TABLE table_name_19 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE home_team = \"essendon\"", "question": "What Date did the Home team play in essendon?", "context": "CREATE TABLE table_name_48 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT country FROM table_name_1 WHERE of_1 = \"locotenent\"", "question": "What country has OF-1 Locotenent?", "context": "CREATE TABLE table_name_1 (country VARCHAR, of_1 VARCHAR)"}, {"answer": "SELECT country FROM table_name_40 WHERE of_1 = \"locotenent\"", "question": "What country has OF-1 Locotenent?", "context": "CREATE TABLE table_name_40 (country VARCHAR, of_1 VARCHAR)"}, {"answer": "SELECT of_5 FROM table_name_48 WHERE country = \"ghana\"", "question": "Which OF-5 is in Ghana?", "context": "CREATE TABLE table_name_48 (of_5 VARCHAR, country VARCHAR)"}, {"answer": "SELECT of_4 FROM table_name_47 WHERE country = \"albania\"", "question": "What is the OF-4 of Albania?", "context": "CREATE TABLE table_name_47 (of_4 VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_79 WHERE cfl_team = \"edmonton eskimos\"", "question": "What is the total pick numbers for the CFL team Edmonton Eskimos?", "context": "CREATE TABLE table_name_79 (pick__number INTEGER, cfl_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_40 WHERE college = \"concordia\"", "question": "What p;layer attended Concordia College?", "context": "CREATE TABLE table_name_40 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_87 WHERE position = \"ol\"", "question": "What is the total number of picks for the position of OL?", "context": "CREATE TABLE table_name_87 (pick__number INTEGER, position VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_7 WHERE result = \"w 38-13\"", "question": "Name the highest week for result of w 38-13", "context": "CREATE TABLE table_name_7 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE attendance = \"35,763\"", "question": "I want to know the date with attendance of 35,763", "context": "CREATE TABLE table_name_88 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT series FROM table_name_39 WHERE editor = \"dargaud\" AND albums = \"27\"", "question": "Which series with a total of 27 albums did Dargaud edit?", "context": "CREATE TABLE table_name_39 (series VARCHAR, editor VARCHAR, albums VARCHAR)"}, {"answer": "SELECT years FROM table_name_78 WHERE magazine = \"vaillant and pif\"", "question": "What years did the magazine Vaillant and Pif run?", "context": "CREATE TABLE table_name_78 (years VARCHAR, magazine VARCHAR)"}, {"answer": "SELECT state FROM table_name_72 WHERE current_governor = \"susana martinez\"", "question": "What state is susana martinez from?", "context": "CREATE TABLE table_name_72 (state VARCHAR, current_governor VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_70 WHERE away_team = \"hawthorn\"", "question": "What is the Home team score when away team is hawthorn?", "context": "CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT league FROM table_name_64 WHERE team = \"ordabasy-2\"", "question": "What league is ordabasy-2 in?", "context": "CREATE TABLE table_name_64 (league VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE away_team = \"richmond\"", "question": "On what date was Richmond hosted as the away team?", "context": "CREATE TABLE table_name_50 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT hindu FROM table_name_87 WHERE jewish = \"source: uk 2001 census\"", "question": "Tell me the Hindu with Jewish of source: uk 2001 census", "context": "CREATE TABLE table_name_87 (hindu VARCHAR, jewish VARCHAR)"}, {"answer": "SELECT ethnic_group FROM table_name_77 WHERE jewish = \"0.47%\"", "question": "Tell me the ethnic group for jewish of 0.47%", "context": "CREATE TABLE table_name_77 (ethnic_group VARCHAR, jewish VARCHAR)"}, {"answer": "SELECT hindu FROM table_name_4 WHERE ethnic_group = \"white irish\"", "question": "Tell me the Hindu for ethnic group for white irish", "context": "CREATE TABLE table_name_4 (hindu VARCHAR, ethnic_group VARCHAR)"}, {"answer": "SELECT ethnic_group FROM table_name_94 WHERE buddhist = \"0.19%\"", "question": "Name the ethnic group with a buddhist of 0.19%", "context": "CREATE TABLE table_name_94 (ethnic_group VARCHAR, buddhist VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_24 WHERE week = 8", "question": "What was the attendance of week 8?", "context": "CREATE TABLE table_name_24 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_95 WHERE home_team = \"carlton\"", "question": "Who was the opponent of carlton at their home game?", "context": "CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_46 WHERE goal = 3", "question": "Tell me the result for 3 goals", "context": "CREATE TABLE table_name_46 (result VARCHAR, goal VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE date = \"november 16\"", "question": "Name the score for november 16", "context": "CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_6 WHERE home_team = \"hawthorn\"", "question": "What is the Away Team Score of the Hawthorn Home Team?", "context": "CREATE TABLE table_name_6 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_26 WHERE away_team = \"collingwood\"", "question": "What is the Away Team Score of the Collingwood Home Team?", "context": "CREATE TABLE table_name_26 (away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_45 WHERE venue = \"arden street oval\"", "question": "What Away Team's venue is Arden Street Oval?", "context": "CREATE TABLE table_name_45 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_41 WHERE time_retired = \"accident\" AND grid > 13", "question": "Name the least Laps for accident and gird more than 13", "context": "CREATE TABLE table_name_41 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_83 WHERE time_retired = \"engine\" AND driver = \"emerson fittipaldi\" AND laps > 70", "question": "Tell me the lowest Grid for engine and driver of emerson fittipaldi with more laps than 70", "context": "CREATE TABLE table_name_83 (grid INTEGER, laps VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT venue FROM table_name_62 WHERE away_team = \"south melbourne\"", "question": "In what venue was the away team South Melbourne?", "context": "CREATE TABLE table_name_62 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_2 WHERE away_team = \"carlton\"", "question": "Where did the away team Carlton play?", "context": "CREATE TABLE table_name_2 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_73 WHERE away_team = \"richmond\"", "question": "What home team played against Richmond?", "context": "CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_68 WHERE venue = \"punt road oval\"", "question": "What is the smallest crowd size for punt road oval?", "context": "CREATE TABLE table_name_68 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT MAX(number_of_people_1991) FROM table_name_67 WHERE percent_of_slovenes_1991 = \"14.4%\"", "question": "Which Number of people 1991 has a Percent of Slovenes 1991 of 14.4%?", "context": "CREATE TABLE table_name_67 (number_of_people_1991 INTEGER, percent_of_slovenes_1991 VARCHAR)"}, {"answer": "SELECT percent_of_slovenes_1951 FROM table_name_60 WHERE number_of_people_1991 > 8 AND village__german_ = \"pl\u00f6schenberg\"", "question": "Which Percent of Slovenes 1951 has a Number of people 1991 larger than 8, and a Village (German) of pl\u00f6schenberg?", "context": "CREATE TABLE table_name_60 (percent_of_slovenes_1951 VARCHAR, number_of_people_1991 VARCHAR, village__german_ VARCHAR)"}, {"answer": "SELECT venue FROM table_name_3 WHERE away_team = \"collingwood\"", "question": "Where was Collingwood's away game played?", "context": "CREATE TABLE table_name_3 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_74 WHERE venue = \"western oval\"", "question": "What was the away team's score at Western Oval?", "context": "CREATE TABLE table_name_74 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE away_team = \"collingwood\"", "question": "When did Collingwood play an away game?", "context": "CREATE TABLE table_name_53 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_66 WHERE venue = \"junction oval\"", "question": "What team is based at junction oval?", "context": "CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_68 WHERE venue = \"junction oval\"", "question": "What is the team set at junction oval?", "context": "CREATE TABLE table_name_68 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT driver FROM table_name_87 WHERE grid < 12 AND time_retired = \"+ 3 laps\"", "question": "What driver has a grid under 12 with a Time/Retired of + 3 laps?", "context": "CREATE TABLE table_name_87 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_56 WHERE constructor = \"osella - alfa romeo\" AND laps > 61", "question": "What is the high grid for osella - alfa romeo, and a Laps larger than 61?", "context": "CREATE TABLE table_name_56 (grid INTEGER, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_72 WHERE name = \"matt moran\" AND round > 6", "question": "How many picks does Matt Moran have altogether after round 6?", "context": "CREATE TABLE table_name_72 (pick VARCHAR, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_67 WHERE round > 8 AND pick < 270", "question": "What position after round 8 has a pick less than 270?", "context": "CREATE TABLE table_name_67 (position VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_41 WHERE school = \"ucla\"", "question": "What is the total number of rounds that UCLA has?", "context": "CREATE TABLE table_name_41 (round VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_2 WHERE school = \"georgia tech\"", "question": "What is the lowest round for Georgia Tech?", "context": "CREATE TABLE table_name_2 (round INTEGER, school VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_81 WHERE school = \"georgia tech\" AND pick > 103", "question": "What is the average round for Georgia Tech with a pick greater than 103?", "context": "CREATE TABLE table_name_81 (round INTEGER, school VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_28 WHERE year = \"2001-2002\"", "question": "Which player is featured for 2001-2002?", "context": "CREATE TABLE table_name_28 (player VARCHAR, year VARCHAR)"}, {"answer": "SELECT player FROM table_name_77 WHERE hometown = \"queens, ny\"", "question": "Which player is from Queens, NY?", "context": "CREATE TABLE table_name_77 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT school FROM table_name_6 WHERE player = \"maya moore\"", "question": "Where did Maya Moore attend school?", "context": "CREATE TABLE table_name_6 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(diff) FROM table_name_50 WHERE lost < 5 AND points < 32", "question": "What is the difference with a loss smaller than 5 and points lower than 32?", "context": "CREATE TABLE table_name_50 (diff VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_63 WHERE played < 18", "question": "Which loss had a player lower than 18?", "context": "CREATE TABLE table_name_63 (lost INTEGER, played INTEGER)"}, {"answer": "SELECT winner FROM table_name_88 WHERE year = 2012 AND result = \"15\u20130\"", "question": "Who won the 2012 game that had a score of 15\u20130?", "context": "CREATE TABLE table_name_88 (winner VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_99 WHERE result = \"l 31-27\" AND attendance < 85 OFFSET 865", "question": "Tell me the week for result of l 31-27, and an Attendance smaller than 85,865", "context": "CREATE TABLE table_name_99 (week INTEGER, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT director FROM table_name_72 WHERE notes = \"prizzi's honor\"", "question": "Who had notes of Prizzi's Honor?", "context": "CREATE TABLE table_name_72 (director VARCHAR, notes VARCHAR)"}, {"answer": "SELECT superlative FROM table_name_23 WHERE record_set = \"12 nominations\"", "question": "What Superlative had a record set of 12 nominations?", "context": "CREATE TABLE table_name_23 (superlative VARCHAR, record_set VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_3 WHERE driver = \"joe nemechek\"", "question": "What is the highest number of laps completed by driver Joe Nemechek?", "context": "CREATE TABLE table_name_3 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_7 WHERE venue = \"victoria park\"", "question": "What is the home team score when they played at Victoria Park?", "context": "CREATE TABLE table_name_7 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_76 WHERE home_team = \"fitzroy\"", "question": "What was the venue when the home team was Fitzroy?", "context": "CREATE TABLE table_name_76 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT proposed FROM table_name_40 WHERE name = \"revere textile prints corporation\"", "question": "What is the date for proposed for revere textile prints corporation", "context": "CREATE TABLE table_name_40 (proposed VARCHAR, name VARCHAR)"}, {"answer": "SELECT deleted FROM table_name_71 WHERE county = \"tolland\"", "question": "What is the deleted for tolland?", "context": "CREATE TABLE table_name_71 (deleted VARCHAR, county VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_93 WHERE home_team = \"hawthorn\"", "question": "What is the away side score when hawthorn is the home side?", "context": "CREATE TABLE table_name_93 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_63 WHERE time_retired = \"+4 laps\" AND grid < 19", "question": "What is the average lap total for grids under 19 and a Time/Retired of +4 laps?", "context": "CREATE TABLE table_name_63 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_66 WHERE laps > 43 AND grid = 5", "question": "Who drive over 43 laps in grid 5?", "context": "CREATE TABLE table_name_66 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_7 WHERE venue = \"princes park\"", "question": "Which Away team score has a Venue of princes park?", "context": "CREATE TABLE table_name_7 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_17 WHERE home_team = \"melbourne\"", "question": "Which Away team score has a Home team of melbourne?", "context": "CREATE TABLE table_name_17 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT genre FROM table_name_30 WHERE english_title__chinese_title_ = \"revolving doors of vengeance \u9152\u5e97\u98a8\u96f2\"", "question": "What genre is revolving doors of vengeance \u9152\u5e97\u98a8\u96f2?", "context": "CREATE TABLE table_name_30 (genre VARCHAR, english_title__chinese_title_ VARCHAR)"}, {"answer": "SELECT english_title__chinese_title_ FROM table_name_82 WHERE genre = \"modern drama\" AND number_of_episodes = 20 AND airing_date = \"26 sep- 21 oct\"", "question": "What is the english title of the modern drama, episode 20, that airs on 26 sep- 21 oct?", "context": "CREATE TABLE table_name_82 (english_title__chinese_title_ VARCHAR, airing_date VARCHAR, genre VARCHAR, number_of_episodes VARCHAR)"}, {"answer": "SELECT d_48_\u221a FROM table_name_67 WHERE d_50_o = \"d 31\"", "question": "What is the D48 when the D 50 O is d 31?", "context": "CREATE TABLE table_name_67 (d_48_\u221a VARCHAR, d_50_o VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE catalogue = \"tojp 60121-22\"", "question": "What was Catalogue tojp 60121-22's Date?", "context": "CREATE TABLE table_name_67 (date VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE country = \"united states\"", "question": "What was the Date of Country of United States?", "context": "CREATE TABLE table_name_97 (date VARCHAR, country VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_47 WHERE date = \"14 november 2003\" AND format = \"compact disc\"", "question": "What Catalogue is Dated 14 november 2003, with the Format compact disc?", "context": "CREATE TABLE table_name_47 (catalogue VARCHAR, date VARCHAR, format VARCHAR)"}, {"answer": "SELECT label FROM table_name_70 WHERE date = \"14 november 2003\" AND catalogue = \"tojp 60121-22\"", "question": "What is the Label for Date of 14 November 2003, and Catalogue tojp 60121-22?", "context": "CREATE TABLE table_name_70 (label VARCHAR, date VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT label FROM table_name_83 WHERE catalogue = \"tojp 60121-22\"", "question": "What Label was Catalogued tojp 60121-22?", "context": "CREATE TABLE table_name_83 (label VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT record FROM table_name_56 WHERE nationality = \"norway\" AND date = \"23 august 1981\"", "question": "What is the record for Norway on 23 august 1981?", "context": "CREATE TABLE table_name_56 (record VARCHAR, nationality VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_12 WHERE event = \"20000 m walk\"", "question": "What is the record for the 20000 m walk?", "context": "CREATE TABLE table_name_12 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE result = \"bye\"", "question": "When was the Bye week?", "context": "CREATE TABLE table_name_62 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT open_2nd_viii FROM table_name_5 WHERE u15_6th_quad = \"bgs\" AND u16_1st_viii = \"tss\"", "question": "Which Open 2nd VIII had a U15 6th Quad of BGS and a U16 1st VII of TSS?", "context": "CREATE TABLE table_name_5 (open_2nd_viii VARCHAR, u15_6th_quad VARCHAR, u16_1st_viii VARCHAR)"}, {"answer": "SELECT u15_3rd_quad FROM table_name_89 WHERE u15_2nd_quad = \"acgs\"", "question": "What U15 3rd Quad has a U15 2nd Quad of ACGS?", "context": "CREATE TABLE table_name_89 (u15_3rd_quad VARCHAR, u15_2nd_quad VARCHAR)"}, {"answer": "SELECT u15_4th_quad FROM table_name_68 WHERE u15_3rd_quad = \"bbc\" AND u15_6th_quad = \"gt\"", "question": "Which U15 4th Quad had a U15 3rd Quad of BBC and U15 6th Quad of GT?", "context": "CREATE TABLE table_name_68 (u15_4th_quad VARCHAR, u15_3rd_quad VARCHAR, u15_6th_quad VARCHAR)"}, {"answer": "SELECT u15_1st_quad FROM table_name_37 WHERE open_3rd_viii = \"bbc\" AND u16_3rd_viii = \"bbc\"", "question": "Which U15 1st Quad had an Open 3rd VIII of BBC and U16 3rd VIII of BBC?", "context": "CREATE TABLE table_name_37 (u15_1st_quad VARCHAR, open_3rd_viii VARCHAR, u16_3rd_viii VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_92 WHERE result = \"4.50\"", "question": "What was the nationality of the athlete with a final result of 4.50?", "context": "CREATE TABLE table_name_92 (nationality VARCHAR, result VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_48 WHERE result = \"4.30\"", "question": "What was the athlete with a final result of 4.30?", "context": "CREATE TABLE table_name_48 (athlete VARCHAR, result VARCHAR)"}, {"answer": "SELECT country FROM table_name_68 WHERE highest_mountain = \"rettlkirchspitze\"", "question": "Which country has the Highest mountain of rettlkirchspitze?", "context": "CREATE TABLE table_name_68 (country VARCHAR, highest_mountain VARCHAR)"}, {"answer": "SELECT AVG(height__m_) FROM table_name_54 WHERE highest_mountain = \"hochgall\"", "question": "What is the average height with the Highest mountain of hochgall?", "context": "CREATE TABLE table_name_54 (height__m_ INTEGER, highest_mountain VARCHAR)"}, {"answer": "SELECT us_country FROM table_name_30 WHERE album = \"singles only\" AND year = 1967", "question": "What US Country released an album of singles only in 1967?", "context": "CREATE TABLE table_name_30 (us_country VARCHAR, album VARCHAR, year VARCHAR)"}, {"answer": "SELECT us AS AC FROM table_name_13 WHERE album = \"the best\" AND year = 1965", "question": "What was the best album in 1965?", "context": "CREATE TABLE table_name_13 (us VARCHAR, album VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_98 WHERE method = \"tko (low kicks)\"", "question": "What is the result of the fight that had a tko (low kicks)?", "context": "CREATE TABLE table_name_98 (result VARCHAR, method VARCHAR)"}, {"answer": "SELECT event FROM table_name_74 WHERE round < 3 AND method = \"no contest (punch after knockdown)\"", "question": "What event went under 3 rounds and was no contest (punch after knockdown)?", "context": "CREATE TABLE table_name_74 (event VARCHAR, round VARCHAR, method VARCHAR)"}, {"answer": "SELECT event FROM table_name_66 WHERE round < 2 AND location = \"hong kong\"", "question": "What event was in hong kong and went less than 2 rounds?", "context": "CREATE TABLE table_name_66 (event VARCHAR, round VARCHAR, location VARCHAR)"}, {"answer": "SELECT round FROM table_name_2 WHERE opponent = \"carter williams\"", "question": "How many rounds was the fight against carter williams?", "context": "CREATE TABLE table_name_2 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT engine FROM table_name_58 WHERE rounds = \"7-13\"", "question": "In rounds 7-13 what engine was featured?", "context": "CREATE TABLE table_name_58 (engine VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_94 WHERE home_team = \"richmond\"", "question": "What score was conceded by Richmond?", "context": "CREATE TABLE table_name_94 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_63 WHERE date = \"1950-05-30\"", "question": "What is the number of Goals on 1950-05-30?", "context": "CREATE TABLE table_name_63 (goals VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_75 WHERE venue = \"tehran, iran\" AND date = \"1948-10-28\"", "question": "In 1948-10-28, what were the lowest Goals in Tehran, Iran?", "context": "CREATE TABLE table_name_75 (goals INTEGER, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_16 WHERE result = \"1-3\"", "question": "In what Venue was the Result 1-3?", "context": "CREATE TABLE table_name_16 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_26 WHERE competition = \"international match\" AND date = \"1948-10-28\"", "question": "In 1948-10-28, in what Venue was the Competition of International Match held?", "context": "CREATE TABLE table_name_26 (venue VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_42 WHERE engine = \"zakspeed 1500/4 1.5 l4 t\"", "question": "What was the Zakspeed 1500/4 1.5 l4 t chassis?", "context": "CREATE TABLE table_name_42 (chassis VARCHAR, engine VARCHAR)"}, {"answer": "SELECT engine FROM table_name_22 WHERE driver = \"michele alboreto\"", "question": "What was the Michele Alboreto's engine?", "context": "CREATE TABLE table_name_22 (engine VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_26 WHERE candidate_name = \"antun salman\"", "question": "What is the average rank for antun salman?", "context": "CREATE TABLE table_name_26 (rank INTEGER, candidate_name VARCHAR)"}, {"answer": "SELECT votes FROM table_name_55 WHERE gender = \"\u2642\" AND religion = \"\u262a\" AND candidate_name = \"khalil chawka\"", "question": "Khalil chawka has a gender of \u2642, a religion of \u262a, and how many votes?", "context": "CREATE TABLE table_name_55 (votes VARCHAR, candidate_name VARCHAR, gender VARCHAR, religion VARCHAR)"}, {"answer": "SELECT candidate_name FROM table_name_66 WHERE votes > 1853 AND religion = \"\u262a\"", "question": "Who has a religion of \u262a and more than 1853 votes?", "context": "CREATE TABLE table_name_66 (candidate_name VARCHAR, votes VARCHAR, religion VARCHAR)"}, {"answer": "SELECT recorded FROM table_name_77 WHERE track > 11 AND time = \"3:06\"", "question": "What is the recorder has a Track more than 11 with a time 3:06", "context": "CREATE TABLE table_name_77 (recorded VARCHAR, track VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(track) FROM table_name_64 WHERE song_title = \"just a little bit\"", "question": "Which track has a title : Just a little bit", "context": "CREATE TABLE table_name_64 (track INTEGER, song_title VARCHAR)"}, {"answer": "SELECT trophy FROM table_name_78 WHERE season = \"2008\u20132009\"", "question": "What is the Trophy with a Season with 2008\u20132009?", "context": "CREATE TABLE table_name_78 (trophy VARCHAR, season VARCHAR)"}, {"answer": "SELECT wasatch FROM table_name_31 WHERE total_time = \"122:13:40\"", "question": "What Wasatch time corresponds to a total time of 122:13:40?", "context": "CREATE TABLE table_name_31 (wasatch VARCHAR, total_time VARCHAR)"}, {"answer": "SELECT opponents_in_final FROM table_name_29 WHERE date = \"9 january 1994\"", "question": "Who were the opponents in the final on 9 January 1994?", "context": "CREATE TABLE table_name_29 (opponents_in_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_90 WHERE away_team = \"melbourne\"", "question": "Who was Melbourne's home team opponent?", "context": "CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_10 WHERE home_team = \"richmond\"", "question": "Who was Richmond's away team opponent?", "context": "CREATE TABLE table_name_10 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(league) AS Cup FROM table_name_88 WHERE league > 1 AND name = \"brian deane\" AND fa_cup < 1", "question": "What is the smallest value for League Cup when the League number is greater than 1, no FA Cups, and Brian Deane scoring?", "context": "CREATE TABLE table_name_88 (league INTEGER, fa_cup VARCHAR, name VARCHAR)"}, {"answer": "SELECT region FROM table_name_58 WHERE year < 2008 AND name = \"best 1200\"", "question": "Name the region before 2008 when name of best 1200", "context": "CREATE TABLE table_name_58 (region VARCHAR, year VARCHAR, name VARCHAR)"}, {"answer": "SELECT method FROM table_name_44 WHERE res = \"win\" AND time = \"4:36\"", "question": "What method resulted in a win and a time of 4:36?", "context": "CREATE TABLE table_name_44 (method VARCHAR, res VARCHAR, time VARCHAR)"}, {"answer": "SELECT venue FROM table_name_92 WHERE away_team = \"essendon\"", "question": "At what venue did the Essendon team play as an away team?", "context": "CREATE TABLE table_name_92 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_98 WHERE venue = \"junction oval\"", "question": "Who was the home team for the game played at Junction Oval?", "context": "CREATE TABLE table_name_98 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_59 WHERE away_team = \"geelong\"", "question": "What was the score of the home team when the away team was Geelong?", "context": "CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_77 WHERE home_team = \"south melbourne\"", "question": "What was the away team when the home team was South Melbourne?", "context": "CREATE TABLE table_name_77 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_10 WHERE venue = \"junction oval\"", "question": "What was the name of the home team playing at the Junction Oval venue?", "context": "CREATE TABLE table_name_10 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(established) FROM table_name_86 WHERE club = \"lehigh valley storm\"", "question": "What is the total number of the established club of Lehigh Valley Storm?", "context": "CREATE TABLE table_name_86 (established VARCHAR, club VARCHAR)"}, {"answer": "SELECT league FROM table_name_96 WHERE sport = \"baseball\"", "question": "What is the name of a league in the sport of baseball?", "context": "CREATE TABLE table_name_96 (league VARCHAR, sport VARCHAR)"}, {"answer": "SELECT venue FROM table_name_55 WHERE sport = \"soccer\" AND club = \"pennsylvania stoners\"", "question": "What venue does the soccer team Pennsylvania Stoners play in?", "context": "CREATE TABLE table_name_55 (venue VARCHAR, sport VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(game__number) FROM table_name_67 WHERE date = \"march 4\"", "question": "What game number was played on March 4?", "context": "CREATE TABLE table_name_67 (game__number INTEGER, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_69 WHERE visitor = \"buffalo\"", "question": "What is the record when the visitor is Buffalo?", "context": "CREATE TABLE table_name_69 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_4 WHERE result = \"l 35-17\"", "question": "Tell me the number of attendance that has a result of l 35-17", "context": "CREATE TABLE table_name_4 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_60 WHERE week > 10 AND result = \"l 22-21\"", "question": "I want the attendance for week larger than 10 and result of l 22-21", "context": "CREATE TABLE table_name_60 (attendance VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_60 WHERE result = \"t 24-24\" AND week < 2", "question": "Name for me the total number in attendance for week before 2 and result of t 24-24", "context": "CREATE TABLE table_name_60 (attendance VARCHAR, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_64 WHERE opponent = \"chicago bears\"", "question": "I want the greatest attendance when the opponent is the chicago bears", "context": "CREATE TABLE table_name_64 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_16 WHERE visitor = \"phoenix\"", "question": "What is the average attendance for a game against Phoenix?", "context": "CREATE TABLE table_name_16 (attendance INTEGER, visitor VARCHAR)"}, {"answer": "SELECT home FROM table_name_78 WHERE decision = \"legace\" AND visitor = \"st. louis\" AND date = \"february 22\"", "question": "What was the home team in the February 22 game that Legace played in for the St. Louis Blues?", "context": "CREATE TABLE table_name_78 (home VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_65 WHERE away_team = \"carlton\"", "question": "Who was Carlton's home team opponent?", "context": "CREATE TABLE table_name_65 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_68 WHERE venue = \"lake oval\"", "question": "Who was the away team at Lake Oval?", "context": "CREATE TABLE table_name_68 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_8 WHERE home_team = \"south melbourne\"", "question": "Who was South Melbourne's away team opponent?", "context": "CREATE TABLE table_name_8 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_89 WHERE laps = 27", "question": "What is the high grid with 27 laps?", "context": "CREATE TABLE table_name_89 (grid INTEGER, laps VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_4 WHERE time_retired = \"+6 laps\" AND laps < 69", "question": "What is the high grid that has a Time/Retired of +6 laps, and under 69 laps?", "context": "CREATE TABLE table_name_4 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(copies_sold) FROM table_name_43 WHERE first_week_sales = 206 OFFSET 030", "question": "What's the total number of copies sold for the single that sold 206,030 in the first week?", "context": "CREATE TABLE table_name_43 (copies_sold VARCHAR, first_week_sales VARCHAR)"}, {"answer": "SELECT MAX(release_date) FROM table_name_3 WHERE label = \"ariola\" AND country = \"spain\"", "question": "What was the latest release date for Ariola in Spain?", "context": "CREATE TABLE table_name_3 (release_date INTEGER, label VARCHAR, country VARCHAR)"}, {"answer": "SELECT release_format FROM table_name_48 WHERE release_date > 1979", "question": "What type of format was released after 1979?", "context": "CREATE TABLE table_name_48 (release_format VARCHAR, release_date INTEGER)"}, {"answer": "SELECT SUM(release_date) FROM table_name_3 WHERE label = \"epic\"", "question": "On what date did Epic label start its release?", "context": "CREATE TABLE table_name_3 (release_date INTEGER, label VARCHAR)"}, {"answer": "SELECT games FROM table_name_36 WHERE rebounds < 270 AND rank < 5", "question": "Which game had less than 270 rebounds and a rank lower than 5?", "context": "CREATE TABLE table_name_36 (games VARCHAR, rebounds VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_20 WHERE name = \"curtis borchardt\" AND rebounds > 274", "question": "Which game did Curtis Borchardt play with more than 274 rebounds?", "context": "CREATE TABLE table_name_20 (games INTEGER, name VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT team FROM table_name_70 WHERE rebounds < 275 AND games < 34 AND name = \"curtis borchardt\"", "question": "In game 34 Curtis Borchardt played on which team with less than 275 rebounds?", "context": "CREATE TABLE table_name_70 (team VARCHAR, name VARCHAR, rebounds VARCHAR, games VARCHAR)"}, {"answer": "SELECT rebounds FROM table_name_73 WHERE rank = 4", "question": "How many rebounds occurred in a rank 4 game?", "context": "CREATE TABLE table_name_73 (rebounds VARCHAR, rank VARCHAR)"}, {"answer": "SELECT games FROM table_name_88 WHERE name = \"bud eley\"", "question": "Which game did was Bud Eley a player in?", "context": "CREATE TABLE table_name_88 (games VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_80 WHERE rank < 4 AND rebounds < 275 AND team = \"bruesa gbc\"", "question": "Which game did Bruesa GBC play in with fewer than 275 rebounds that is ranked less than 4?", "context": "CREATE TABLE table_name_80 (games INTEGER, team VARCHAR, rank VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT grid FROM table_name_6 WHERE driver = \"johnny herbert\"", "question": "What is the grid for johnny herbert?", "context": "CREATE TABLE table_name_6 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_43 WHERE studio_s_ = \"dharma productions\" AND year < 2013", "question": "Tell me the average rank for dharma productions before 2013", "context": "CREATE TABLE table_name_43 (rank INTEGER, studio_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_33 WHERE rank = 4", "question": "Name the average year for 4 rank", "context": "CREATE TABLE table_name_33 (year INTEGER, rank VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_99 WHERE year = 2013 AND studio_s_ = \"red chillies entertainment\"", "question": "Name the lowest rank for red chillies entertainment for 2013", "context": "CREATE TABLE table_name_99 (rank INTEGER, year VARCHAR, studio_s_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE away_team = \"richmond\"", "question": "Which date did richmond play as away?", "context": "CREATE TABLE table_name_27 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_52 WHERE wins = 5 AND events < 32", "question": "What is the rank for the player with 5 wins and under 32 events?", "context": "CREATE TABLE table_name_52 (rank INTEGER, wins VARCHAR, events VARCHAR)"}, {"answer": "SELECT issue_price FROM table_name_46 WHERE artist = \"john mardon\" AND year = 2000 AND mintage = \"included in steam buggy\"", "question": "What is the issue price of a Year 2000 coin by artist John Mardon of the Included in Steam Buggy mintage.", "context": "CREATE TABLE table_name_46 (issue_price VARCHAR, mintage VARCHAR, artist VARCHAR, year VARCHAR)"}, {"answer": "SELECT theme FROM table_name_86 WHERE year = 2002 AND artist = \"dan fell\"", "question": "What is the theme of the Year 2002 which was created by Artist Dan Fell?", "context": "CREATE TABLE table_name_86 (theme VARCHAR, year VARCHAR, artist VARCHAR)"}, {"answer": "SELECT artist FROM table_name_81 WHERE year < 2002 AND mintage = \"41,828\"", "question": "What artist had a mintage of 41,828 before year 2002?", "context": "CREATE TABLE table_name_81 (artist VARCHAR, year VARCHAR, mintage VARCHAR)"}, {"answer": "SELECT issue_price FROM table_name_36 WHERE mintage = \"31,997\"", "question": "A mintage of 31,997 has what issue price?", "context": "CREATE TABLE table_name_36 (issue_price VARCHAR, mintage VARCHAR)"}, {"answer": "SELECT Control AS trailers FROM table_name_71 WHERE motors = \"52\"", "question": "Tell me the control trailers for 52 motors", "context": "CREATE TABLE table_name_71 (Control VARCHAR, motors VARCHAR)"}, {"answer": "SELECT trailers FROM table_name_48 WHERE year = \"1931\" AND builder = \"mccw\"", "question": "I want the trailers for 1931 and builder of mccw", "context": "CREATE TABLE table_name_48 (trailers VARCHAR, year VARCHAR, builder VARCHAR)"}, {"answer": "SELECT Control AS trailers FROM table_name_45 WHERE year = \"1931\" AND builder = \"grcw\"", "question": "I want the control trailers for 1931 with builder of grcw", "context": "CREATE TABLE table_name_45 (Control VARCHAR, year VARCHAR, builder VARCHAR)"}, {"answer": "SELECT trailers FROM table_name_92 WHERE motors = \"145\"", "question": "I want the trailers for motors of 145", "context": "CREATE TABLE table_name_92 (trailers VARCHAR, motors VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_77 WHERE top_5 < 1", "question": "Tell me the sum of wins for top 5 less than 1", "context": "CREATE TABLE table_name_77 (wins INTEGER, top_5 INTEGER)"}, {"answer": "SELECT AVG(events) FROM table_name_17 WHERE top_10 < 4", "question": "I want the average events for top 10 less than 4", "context": "CREATE TABLE table_name_17 (events INTEGER, top_10 INTEGER)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_99 WHERE top_5 < 3 AND top_10 > 4", "question": "Name the highest cuts made when top 5 is less than 3 and top ten is more than 4", "context": "CREATE TABLE table_name_99 (cuts_made INTEGER, top_5 VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT MAX(top_25) FROM table_name_84 WHERE events > 20 AND top_10 > 21", "question": "I want the most top 25 when events are more than 20 and top 10 is more than 21", "context": "CREATE TABLE table_name_84 (top_25 INTEGER, events VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_40 WHERE date = \"april 28\"", "question": "What was the Attendance on April 28?", "context": "CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT released FROM table_name_64 WHERE dvd_name = \"escape to river cottage\"", "question": "What was escape to river cottage released?", "context": "CREATE TABLE table_name_64 (released VARCHAR, dvd_name VARCHAR)"}, {"answer": "SELECT dvd_name FROM table_name_61 WHERE duration = \"2 hours 22 minutes\"", "question": "What DVD has a time of 2 hours 22 minutes?", "context": "CREATE TABLE table_name_61 (dvd_name VARCHAR, duration VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE week = 7", "question": "What was the date for the game in week 7?", "context": "CREATE TABLE table_name_14 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE attendance = \"78,431\"", "question": "On what date was the attendance of the crowd 78,431?", "context": "CREATE TABLE table_name_54 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE home = \"columbus\"", "question": "What was the date of the Capitals game when Columbus was the home team?", "context": "CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE competition = \"2002 african cup of nations\"", "question": "The 2002 African Cup of Nations was held on what date?", "context": "CREATE TABLE table_name_20 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_51 WHERE venue = \"stade fernand fournier, arles\"", "question": "Which competition took place at Stade Fernand Fournier, Arles?", "context": "CREATE TABLE table_name_51 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_83 WHERE away_team = \"fitzroy\"", "question": "What was the attendance of the game where fitzroy was the away team?", "context": "CREATE TABLE table_name_83 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT artist FROM table_name_80 WHERE theme = \"400th anniversary of quebec\"", "question": "Which artist created the silver dollar for the 400th anniversary of Quebec?", "context": "CREATE TABLE table_name_80 (artist VARCHAR, theme VARCHAR)"}, {"answer": "SELECT year FROM table_name_25 WHERE artist = \"royal canadian mint staff\"", "question": "Which year did the Royal Canadian Mint Staff create a silver dollar?", "context": "CREATE TABLE table_name_25 (year VARCHAR, artist VARCHAR)"}, {"answer": "SELECT mintage FROM table_name_93 WHERE artist = \"suzanne duranceau\"", "question": "How many coins by Suzanne Duranceau were minted?", "context": "CREATE TABLE table_name_93 (mintage VARCHAR, artist VARCHAR)"}, {"answer": "SELECT method FROM table_name_72 WHERE round < 3 AND res = \"nc\"", "question": "What was the method for the resolution of nc where the fight lasted less than 3 rounds?", "context": "CREATE TABLE table_name_72 (method VARCHAR, round VARCHAR, res VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_95 WHERE round < 4 AND event = \"ufc 90\"", "question": "Who was the opponent during the UFC 90 event with a fight that lasted less than 4 rounds?", "context": "CREATE TABLE table_name_95 (opponent VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT method FROM table_name_33 WHERE event = \"ufc 160\"", "question": "What was the method for the resolution of the fight at UFC 160?", "context": "CREATE TABLE table_name_33 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT league FROM table_name_48 WHERE date = \"5 october 1997\"", "question": "What is the league on 5 October 1997?", "context": "CREATE TABLE table_name_48 (league VARCHAR, date VARCHAR)"}, {"answer": "SELECT season FROM table_name_50 WHERE date = \"30 october 1977\"", "question": "Which season was on 30 October 1977?", "context": "CREATE TABLE table_name_50 (season VARCHAR, date VARCHAR)"}, {"answer": "SELECT season FROM table_name_1 WHERE match = \"roma-napoli\" AND date = \"12 september 1993\"", "question": "What season had the Roma-Napoli match on 12 September 1993?", "context": "CREATE TABLE table_name_1 (season VARCHAR, match VARCHAR, date VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_28 WHERE caps > 18 AND position = \"fly-half\"", "question": "What club/province for the player with over 18 caps and plays the fly-half?", "context": "CREATE TABLE table_name_28 (club_province VARCHAR, caps VARCHAR, position VARCHAR)"}, {"answer": "SELECT driver FROM table_name_14 WHERE laps < 18 AND grid < 16", "question": "What driver has less than 18 laps and a grid number under 16?", "context": "CREATE TABLE table_name_14 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_5 WHERE laps > 70 AND time_retired = \"+12.535\"", "question": "Who constructed the car with laps more than 70 and a time/retired of +12.535?", "context": "CREATE TABLE table_name_5 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_52 WHERE time_retired = \"+1 lap\" AND driver = \"alexander wurz\" AND grid < 14", "question": "What was Alexander Wurz's highest laps when he has a grid less than 14 and a time/retired of +1 lap.", "context": "CREATE TABLE table_name_52 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_54 WHERE away_team = \"footscray\"", "question": "Who was Footscray's opponent on June 15th of 1968?", "context": "CREATE TABLE table_name_54 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(joined) FROM table_name_43 WHERE division = \"west\" AND location = \"highland township\"", "question": "What was the most recent year that a team located in Highland Township and a member of the West Division joined the Kensington Lakes Activities Association?", "context": "CREATE TABLE table_name_43 (joined INTEGER, division VARCHAR, location VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_87 WHERE race = \"belgian grand prix\"", "question": "What was the pole position for the belgian grand prix?", "context": "CREATE TABLE table_name_87 (pole_position VARCHAR, race VARCHAR)"}, {"answer": "SELECT race AS Winner FROM table_name_53 WHERE race = \"australian grand prix\"", "question": "Who won the australian grand prix?", "context": "CREATE TABLE table_name_53 (race VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_39 WHERE location = \"jerez\"", "question": "What was the pole position for jerez?", "context": "CREATE TABLE table_name_39 (pole_position VARCHAR, location VARCHAR)"}, {"answer": "SELECT enzyme FROM table_name_66 WHERE disorder = \"ornithine transcarbamylase deficiency\"", "question": "What is the enzyme involved in the disorder of Ornithine Transcarbamylase deficiency?", "context": "CREATE TABLE table_name_66 (enzyme VARCHAR, disorder VARCHAR)"}, {"answer": "SELECT measurements FROM table_name_15 WHERE disorder = \"ornithine transcarbamylase deficiency\"", "question": "What lab measurements can help diagnosie ornithine transcarbamylase deficiency?", "context": "CREATE TABLE table_name_15 (measurements VARCHAR, disorder VARCHAR)"}, {"answer": "SELECT abb FROM table_name_30 WHERE disorder = \"carbamoyl phosphate synthetase i deficiency\"", "question": "What is the abbreviation of the enzyme involved in carbamoyl phosphate synthetase i deficiency?", "context": "CREATE TABLE table_name_30 (abb VARCHAR, disorder VARCHAR)"}, {"answer": "SELECT venue FROM table_name_67 WHERE home_team = \"melbourne\"", "question": "what is the venue when the home team is melbourne?", "context": "CREATE TABLE table_name_67 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE home_team = \"st kilda\"", "question": "what is the date when the home team is st kilda?", "context": "CREATE TABLE table_name_26 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE venue = \"junction oval\"", "question": "what is the date when the venue is junction oval?", "context": "CREATE TABLE table_name_47 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_24 WHERE venue = \"mcg\"", "question": "What is the home team score when played at mcg?", "context": "CREATE TABLE table_name_24 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_41 WHERE venue = \"junction oval\"", "question": "who is the away team when played at junction oval?", "context": "CREATE TABLE table_name_41 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(top_speed__km_h_) FROM table_name_84 WHERE model = \"1.8 20v t\"", "question": "What is the top speed of the model 1.8 20v t?", "context": "CREATE TABLE table_name_84 (top_speed__km_h_ INTEGER, model VARCHAR)"}, {"answer": "SELECT max_torque__nm__at_rpm FROM table_name_82 WHERE model = \"1.4 16v\"", "question": "What is the max torque of model 1.4 16v?", "context": "CREATE TABLE table_name_82 (max_torque__nm__at_rpm VARCHAR, model VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_64 WHERE driver = \"ken wharton\"", "question": "How many rounds did Ken Wharton go?", "context": "CREATE TABLE table_name_64 (rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_56 WHERE chassis = \"166 c 500\"", "question": "What driver has a 166 c 500 chassis?", "context": "CREATE TABLE table_name_56 (driver VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT name FROM table_name_17 WHERE decile = \"3\" AND roll < 310 AND area = \"onehunga\"", "question": "What is the Onehunga school with a decile 3 and smaller than 310 rolls?", "context": "CREATE TABLE table_name_17 (name VARCHAR, area VARCHAR, decile VARCHAR, roll VARCHAR)"}, {"answer": "SELECT authority FROM table_name_38 WHERE area = \"ellerslie\" AND decile = \"7\"", "question": "What is the authority status of the school in Ellerslie with a decile of 7?", "context": "CREATE TABLE table_name_38 (authority VARCHAR, area VARCHAR, decile VARCHAR)"}, {"answer": "SELECT MAX(roll) FROM table_name_12 WHERE authority = \"state\" AND name = \"sylvia park school\"", "question": "What is the biggest roll number of Sylvia Park School, which has a state authority?", "context": "CREATE TABLE table_name_12 (roll INTEGER, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_41 WHERE decile = \"1\" AND authority = \"state\" AND area = \"otahuhu\"", "question": "What is the name of the school with a decile of 1, a state authority, and located in Otahuhu?", "context": "CREATE TABLE table_name_41 (name VARCHAR, area VARCHAR, decile VARCHAR, authority VARCHAR)"}, {"answer": "SELECT special_notes FROM table_name_56 WHERE year < 2009", "question": "What is the special notes value for years under 2009?", "context": "CREATE TABLE table_name_56 (special_notes VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_name_39 WHERE theme = \"toronto maple leafs\" AND issue_price = 24.95", "question": "How many years have a theme of Toronto Maple Leafs and an Issue Price of 24.95?", "context": "CREATE TABLE table_name_39 (year VARCHAR, theme VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT winner FROM table_name_51 WHERE circuit = \"winton motor raceway\"", "question": "Who was the winner for the Winton Motor Raceway circuit?", "context": "CREATE TABLE table_name_51 (winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT team FROM table_name_47 WHERE race_title = \"mallala\"", "question": "What was the team that held the race title of Mallala?", "context": "CREATE TABLE table_name_47 (team VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT driver FROM table_name_60 WHERE laps < 9 AND grid = 13", "question": "Name the driver for Laps less than 9 and a grid of 13", "context": "CREATE TABLE table_name_60 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT winners FROM table_name_16 WHERE runners_up = \"rosenborg\"", "question": "Who was the winner in the competition in which the runner-up was Rosenborg?", "context": "CREATE TABLE table_name_16 (winners VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT years FROM table_name_57 WHERE runners_up = \"odd grenland\"", "question": "What was the year of the competition in which Odd Grenland was the runner-up?", "context": "CREATE TABLE table_name_57 (years VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT winners FROM table_name_44 WHERE runners_up = \"lillestr\u00f8m\" AND third = \"lyn\"", "question": "Who was the winner in the competition in which Lyn took third place and Lillestr\u00f8m was the runner-up?", "context": "CREATE TABLE table_name_44 (winners VARCHAR, runners_up VARCHAR, third VARCHAR)"}, {"answer": "SELECT report FROM table_name_98 WHERE location = \"buenos aires\"", "question": "What was the report in Buenos Aires?", "context": "CREATE TABLE table_name_98 (report VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE race = \"italian grand prix\"", "question": "What date was the Italian Grand Prix?", "context": "CREATE TABLE table_name_12 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT report FROM table_name_54 WHERE pole_position = \"mario andretti\" AND fastest_lap = \"jean-pierre jarier\"", "question": "What was the report when Mario Andretti held pole position and Jean-Pierre Jarier had the fastest lap?", "context": "CREATE TABLE table_name_54 (report VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT report FROM table_name_5 WHERE race = \"belgian grand prix\"", "question": "What was the report in the Belgian Grand Prix?", "context": "CREATE TABLE table_name_5 (report VARCHAR, race VARCHAR)"}, {"answer": "SELECT race AS Winner FROM table_name_48 WHERE pole_position = \"niki lauda\"", "question": "Who was the winner when Niki Lauda held pole position?", "context": "CREATE TABLE table_name_48 (race VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_98 WHERE race = \"monaco grand prix\"", "question": "Who had the fastest lap in the Monaco Grand Prix?", "context": "CREATE TABLE table_name_98 (fastest_lap VARCHAR, race VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_58 WHERE constellation = \"cancer\"", "question": "Which Object type has a Constellation of cancer?", "context": "CREATE TABLE table_name_58 (object_type VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT MAX(ngc_number) FROM table_name_1 WHERE constellation = \"ursa major\"", "question": "Which NGC number has a Constellation of ursa major?", "context": "CREATE TABLE table_name_1 (ngc_number INTEGER, constellation VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_3 WHERE ngc_number < 2775 AND declination___j2000__ = \"\u00b005\u203207\u2033\"", "question": "Which Constellation has a NGC number smaller than 2775, and a Declination (J2000) of \u00b005\u203207\u2033?", "context": "CREATE TABLE table_name_3 (constellation VARCHAR, ngc_number VARCHAR, declination___j2000__ VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_19 WHERE ngc_number = 2787", "question": "Which Object type has a NGC number of 2787?", "context": "CREATE TABLE table_name_19 (object_type VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT venue FROM table_name_46 WHERE away_team = \"st kilda\"", "question": "Where did St KIlda play their away game?", "context": "CREATE TABLE table_name_46 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE visitor = \"philadelphia\" AND record = \"7\u20134\u20130\"", "question": "What is the score when Philadelphia was the visitor with a Record of 7\u20134\u20130?", "context": "CREATE TABLE table_name_79 (score VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_65 WHERE category = \"outstanding featured actor in a musical\" AND result = \"nominated\"", "question": "What was nominee nominated for outstanding featured actor in a musical?", "context": "CREATE TABLE table_name_65 (nominee VARCHAR, category VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_17 WHERE award = \"drama desk award\" AND nominee = \"patricia mcgourty\"", "question": "What is the result of nominee, Patricia McGourty, for the drama desk award?", "context": "CREATE TABLE table_name_17 (result VARCHAR, award VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT year FROM table_name_41 WHERE nominee = \"patricia mcgourty\" AND award = \"tony award\"", "question": "What year was Patricia Mcgourty nominated for a Tony award?", "context": "CREATE TABLE table_name_41 (year VARCHAR, nominee VARCHAR, award VARCHAR)"}, {"answer": "SELECT driver FROM table_name_44 WHERE laps > 16 AND constructor = \"ferrari\" AND grid < 15", "question": "I want the driver with Laps larger than 16 with a ferrari and grid less than 15", "context": "CREATE TABLE table_name_44 (driver VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT d_46_\u221a FROM table_name_2 WHERE d_43_\u221a = \"r 3\"", "question": "What is the D 46 \u221a with a D 43 \u221a with r 3?", "context": "CREATE TABLE table_name_2 (d_46_\u221a VARCHAR, d_43_\u221a VARCHAR)"}, {"answer": "SELECT d_43_\u221a FROM table_name_64 WHERE d_49_\u221a = \"d 49 \u221a\"", "question": "What is the D 43 \u221a with a D 49 \u221a with d 49 \u221a?", "context": "CREATE TABLE table_name_64 (d_43_\u221a VARCHAR, d_49_\u221a VARCHAR)"}, {"answer": "SELECT d_48_\u221a FROM table_name_87 WHERE d_46_\u221a = \"r 33 o\"", "question": "What is the D 48 \u221a with a D 46 \u221a with r 33 o?", "context": "CREATE TABLE table_name_87 (d_48_\u221a VARCHAR, d_46_\u221a VARCHAR)"}, {"answer": "SELECT d_48_\u221a FROM table_name_27 WHERE d_49_\u221a = \"r 9\"", "question": "What is the D 48 \u221a with a D 49 \u221a with r 9?", "context": "CREATE TABLE table_name_27 (d_48_\u221a VARCHAR, d_49_\u221a VARCHAR)"}, {"answer": "SELECT d_46_\u221a FROM table_name_94 WHERE d_41_\u221a = \"d 38 \u221a\"", "question": "What is the D 46 \u221a with a D 41 \u221a with d 38 \u221a?", "context": "CREATE TABLE table_name_94 (d_46_\u221a VARCHAR, d_41_\u221a VARCHAR)"}, {"answer": "SELECT d_45_\u221a FROM table_name_99 WHERE d_46_\u221a = \"d 46 \u221a\"", "question": "What is the D 45 \u221a with a D 46 \u221a with d 46 \u221a?", "context": "CREATE TABLE table_name_99 (d_45_\u221a VARCHAR, d_46_\u221a VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_31 WHERE laps = 25", "question": "Which constructor was there for the race with 25 laps?", "context": "CREATE TABLE table_name_31 (constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_99 WHERE constructor = \"brm\" AND time_retired = \"engine\"", "question": "Which driver had brm as a constructor and a time/retired of engine?", "context": "CREATE TABLE table_name_99 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_69 WHERE class = \"a\"", "question": "What is the call sign for a class of A?", "context": "CREATE TABLE table_name_69 (call_sign VARCHAR, class VARCHAR)"}, {"answer": "SELECT AVG(frequency_mhz) FROM table_name_24 WHERE city_of_license = \"eastville, virginia\"", "question": "What is the average frequency MHz for license of eastville, virginia?", "context": "CREATE TABLE table_name_24 (frequency_mhz INTEGER, city_of_license VARCHAR)"}, {"answer": "SELECT AVG(erp_w) FROM table_name_15 WHERE call_sign = \"whre\"", "question": "What is the average ERP W when the call sign is whre?", "context": "CREATE TABLE table_name_15 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT name FROM table_name_12 WHERE area = \"hillcrest\"", "question": "What is the name of the school in Hillcrest?", "context": "CREATE TABLE table_name_12 (name VARCHAR, area VARCHAR)"}, {"answer": "SELECT years FROM table_name_58 WHERE authority = \"state\" AND roll > 333 AND name = \"bayview school\"", "question": "What are the years available at Bayview School, which has state authority and a roll number larger than 333?", "context": "CREATE TABLE table_name_58 (years VARCHAR, name VARCHAR, authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_71 WHERE club_province = \"wild knights\" AND player = \"tomokazu soma\"", "question": "When was Tomokazu Soma born who plays for the wild knights?", "context": "CREATE TABLE table_name_71 (date_of_birth__age_ VARCHAR, club_province VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE date = \"november 19, 2008\"", "question": "On November 19, 2008 what was the score?", "context": "CREATE TABLE table_name_13 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE date = \"february 23, 2005\"", "question": "What is the score on February 23, 2005?", "context": "CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_75 WHERE date = \"october 12, 2005\"", "question": "What is the result foe October 12, 2005?", "context": "CREATE TABLE table_name_75 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(events) FROM table_name_67 WHERE rank > 3 AND player = \"orville moody\"", "question": "How many events for orville moody, ranking below 3?", "context": "CREATE TABLE table_name_67 (events INTEGER, rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_65 WHERE wins > 2 AND player = \"don january\" AND events > 17", "question": "What is the rank for don january with over 2 wins and over 17 events?", "context": "CREATE TABLE table_name_65 (rank INTEGER, events VARCHAR, wins VARCHAR, player VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_74 WHERE home_team = \"geelong\"", "question": "What is the score of the Home team of geelong?", "context": "CREATE TABLE table_name_74 (home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_63 WHERE home_team = \"south melbourne\"", "question": "Which Away team has a Home team of south melbourne?", "context": "CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_32 WHERE venue = \"arden street oval\"", "question": "Which Away team has a Venue of arden street oval?", "context": "CREATE TABLE table_name_32 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_82 WHERE venue = \"scg\"", "question": "Which Away team score has a Venue of scg?", "context": "CREATE TABLE table_name_82 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT school FROM table_name_28 WHERE player = \"mike rosario\"", "question": "What school has the player of mike rosario?", "context": "CREATE TABLE table_name_28 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_53 WHERE player = \"al-farouq aminu\"", "question": "What was the nba draft for al-farouq aminu?", "context": "CREATE TABLE table_name_53 (nba_draft VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_16 WHERE record = \"38\u201331\u20138\"", "question": "What was the average attendance of a team with a 38\u201331\u20138 record?", "context": "CREATE TABLE table_name_16 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_89 WHERE driver = \"bob anderson\"", "question": "What is the smallest grid for Bob Anderson?", "context": "CREATE TABLE table_name_89 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT time FROM table_name_67 WHERE score = \"0\u20133\"", "question": "What was the time when the score was 0\u20133?", "context": "CREATE TABLE table_name_67 (time VARCHAR, score VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_87 WHERE set_3 = \"25\u201321\"", "question": "What was the first set with a third set of 25\u201321?", "context": "CREATE TABLE table_name_87 (set_1 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT total_games FROM table_name_84 WHERE years = 117 AND pac_12 = \"california\"", "question": "How many total games associated with the Pac-12 of california and 117 years?", "context": "CREATE TABLE table_name_84 (total_games VARCHAR, years VARCHAR, pac_12 VARCHAR)"}, {"answer": "SELECT AVG(years) FROM table_name_60 WHERE tied = 51 AND total_games > 1184", "question": "What is the average number of years associated with 51 games tied and over 1184 total games?", "context": "CREATE TABLE table_name_60 (years INTEGER, tied VARCHAR, total_games VARCHAR)"}, {"answer": "SELECT MAX(tied) FROM table_name_8 WHERE pct < 0.5593 AND lost = 551", "question": "What is the highest number of games tied for teams with under 551 games and a percentage of under 0.5593?", "context": "CREATE TABLE table_name_8 (tied INTEGER, pct VARCHAR, lost VARCHAR)"}, {"answer": "SELECT country FROM table_name_33 WHERE airline = \"gol\"", "question": "Name the country for airline of gol", "context": "CREATE TABLE table_name_33 (country VARCHAR, airline VARCHAR)"}, {"answer": "SELECT airline FROM table_name_98 WHERE rank = 4", "question": "Name the airline for rank of 4", "context": "CREATE TABLE table_name_98 (airline VARCHAR, rank VARCHAR)"}, {"answer": "SELECT hot_digital_songs_reaction FROM table_name_81 WHERE hot_100_reaction = \"4 (+4)\"", "question": "What digital reaction has a hot 100 reaction of 4 (+4)?", "context": "CREATE TABLE table_name_81 (hot_digital_songs_reaction VARCHAR, hot_100_reaction VARCHAR)"}, {"answer": "SELECT hot_digital_songs_reaction FROM table_name_89 WHERE hot_100_reaction = \"2 (+1)\"", "question": "What digital reaction has hot 100 reaction of 2 (+1)?", "context": "CREATE TABLE table_name_89 (hot_digital_songs_reaction VARCHAR, hot_100_reaction VARCHAR)"}, {"answer": "SELECT week FROM table_name_71 WHERE hot_100_reaction = \"did not debut\" AND performer_s_ = \"natalie cole\"", "question": "Which week has hot 100 reaction as did not debut for Natalie Cole?", "context": "CREATE TABLE table_name_71 (week VARCHAR, hot_100_reaction VARCHAR, performer_s_ VARCHAR)"}, {"answer": "SELECT hot_100_reaction FROM table_name_41 WHERE week = \"top 13\" AND performer_s_ = \"kanye west\"", "question": "What is the hot 100 reaction in week of top 13 for Kanye West?", "context": "CREATE TABLE table_name_41 (hot_100_reaction VARCHAR, week VARCHAR, performer_s_ VARCHAR)"}, {"answer": "SELECT hot_digital_songs_reaction FROM table_name_20 WHERE week = \"top 5\" AND performer_s_ = \"taylor hicks\"", "question": "What is the digital reaction for week of top 5 for Taylor Hicks?", "context": "CREATE TABLE table_name_20 (hot_digital_songs_reaction VARCHAR, week VARCHAR, performer_s_ VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_78 WHERE grid > 1 AND driver = \"damon hill\"", "question": "Which Time/Retired had a grid number bigger than 1 and whose driver was Damon Hill?", "context": "CREATE TABLE table_name_78 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_name_98 WHERE driver = \"olivier panis\"", "question": "Which lap number had Olivier Panis as a driver?", "context": "CREATE TABLE table_name_98 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_15 WHERE time_retired = \"oil pressure\" AND laps > 50", "question": "what is the grid when the time/retired is oil pressure and the laps are more than 50?", "context": "CREATE TABLE table_name_15 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_61 WHERE time_retired = \"1:46:42.3\"", "question": "what is the grid when the time/retired is 1:46:42.3?", "context": "CREATE TABLE table_name_61 (grid INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_76 WHERE away_team = \"fitzroy\"", "question": "What was the attendance when Fitzroy played as the away team?", "context": "CREATE TABLE table_name_76 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_4 WHERE venue = \"western oval\"", "question": "What did the home team score at Western Oval?", "context": "CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_5 WHERE crowd > 20 OFFSET 283", "question": "Who was the home team when the attendance was more than 20,283?", "context": "CREATE TABLE table_name_5 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT high_points FROM table_name_25 WHERE game > 2 AND date = \"april 29\"", "question": "On April 29, with a game larger than 2, what is the high points?", "context": "CREATE TABLE table_name_25 (high_points VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE game = 3", "question": "What was the score for Game 3?", "context": "CREATE TABLE table_name_18 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_60 WHERE laps = 17", "question": "What is the grid total for cars that went 17 laps?", "context": "CREATE TABLE table_name_60 (grid INTEGER, laps VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_80 WHERE rank > 5 AND bronze < 1", "question": "How many golds for the nation ranked below 5 and over 1 bronze medals?", "context": "CREATE TABLE table_name_80 (gold INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_33 WHERE home_team = \"footscray\"", "question": "During footscray's home match, who was the away team?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT format FROM table_name_92 WHERE region = \"united states\" AND date = \"august 11, 2009\"", "question": "Which format had a United States region and a date of August 11, 2009?", "context": "CREATE TABLE table_name_92 (format VARCHAR, region VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE region = \"japan\"", "question": "Which date had a Japan region?", "context": "CREATE TABLE table_name_76 (date VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_name_89 WHERE catalogue = \"9362482872\"", "question": "Which region had a catalogue number of 9362482872?", "context": "CREATE TABLE table_name_89 (region VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT region FROM table_name_41 WHERE date = \"november 18, 2002\"", "question": "Which region had the date of November 18, 2002?", "context": "CREATE TABLE table_name_41 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_53 WHERE region = \"japan\" AND date = \"november 3, 2004\"", "question": "Which label had a Japan region and a date of November 3, 2004?", "context": "CREATE TABLE table_name_53 (label VARCHAR, region VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_38 WHERE format = \"cd\" AND date = \"june 25, 2002\"", "question": "Which label had a CD format and a date of June 25, 2002?", "context": "CREATE TABLE table_name_38 (label VARCHAR, format VARCHAR, date VARCHAR)"}, {"answer": "SELECT award FROM table_name_76 WHERE result = \"nominated\" AND year = 2007", "question": "What award was nominated in 2007?", "context": "CREATE TABLE table_name_76 (award VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_41 WHERE result = \"won\" AND award = \"inside soap awards\"", "question": "What year did was the Inside Soap Awards won?", "context": "CREATE TABLE table_name_41 (year INTEGER, result VARCHAR, award VARCHAR)"}, {"answer": "SELECT record FROM table_name_9 WHERE date = \"april 9, 2008\"", "question": "What was the record for the game on April 9, 2008?", "context": "CREATE TABLE table_name_9 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_34 WHERE date = \"april 9, 2008\"", "question": "Who was the leading scorer on April 9, 2008?", "context": "CREATE TABLE table_name_34 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_33 WHERE home_team = \"st kilda\"", "question": "in a game against st kilda, what was the away team's score?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_46 WHERE away_team = \"geelong\"", "question": "In the match where geelong was the away team, who was the home team?", "context": "CREATE TABLE table_name_46 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(votes) FROM table_name_67 WHERE seats > 28", "question": "What is the number of votes for the party which got more than 28 seats?", "context": "CREATE TABLE table_name_67 (votes VARCHAR, seats INTEGER)"}, {"answer": "SELECT MIN(votes) FROM table_name_86 WHERE party = \"labour\"", "question": "What is the number of votes for the Party of Labour?", "context": "CREATE TABLE table_name_86 (votes INTEGER, party VARCHAR)"}, {"answer": "SELECT percentage FROM table_name_15 WHERE seats = 80", "question": "What is the percentage of votes for the party that has Seats of 80?", "context": "CREATE TABLE table_name_15 (percentage VARCHAR, seats VARCHAR)"}, {"answer": "SELECT leader FROM table_name_18 WHERE seats < 28 AND percentage = \"54.03\" AND votes > 120 OFFSET 801", "question": "Who is the leader of the party which has Seats less than 28, a percentage of votes 54.03, and more votes than 120,801?", "context": "CREATE TABLE table_name_18 (leader VARCHAR, votes VARCHAR, seats VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT MAX(seats) FROM table_name_83 WHERE votes = 244 OFFSET 867", "question": "Which highest number of Seats has votes of 244,867?", "context": "CREATE TABLE table_name_83 (seats INTEGER, votes VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE home_team = \"melbourne\"", "question": "What was the Date of the game of the Home team of melbourne?", "context": "CREATE TABLE table_name_89 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_29 WHERE away_team = \"south melbourne\"", "question": "What was the score of the Home team in the game that had the Away team of south melbourne?", "context": "CREATE TABLE table_name_29 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_60 WHERE home_team = \"north melbourne\"", "question": "what was the away team for the north melbourne home team?", "context": "CREATE TABLE table_name_60 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_31 WHERE home_team = \"melbourne\"", "question": "what was the away team score in a game with north melbourne as home team?", "context": "CREATE TABLE table_name_31 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_15 WHERE away_team = \"st kilda\"", "question": "what was the away team with st kilda as the away team?", "context": "CREATE TABLE table_name_15 (away_team VARCHAR)"}, {"answer": "SELECT MAX(yards) FROM table_name_25 WHERE solo = 1 AND sack > 0", "question": "How many yards for the player with 1 solo tackle and over 0 sacks?", "context": "CREATE TABLE table_name_25 (yards INTEGER, solo VARCHAR, sack VARCHAR)"}, {"answer": "SELECT 3 AS _credits FROM table_name_34 WHERE hand = \"theoretical return\"", "question": "What does a hand of Theoretical return have as a 3 credit?", "context": "CREATE TABLE table_name_34 (hand VARCHAR)"}, {"answer": "SELECT 5 AS _credits FROM table_name_58 WHERE hand = \"full house\"", "question": "What does full house have as a 5 credits?", "context": "CREATE TABLE table_name_58 (hand VARCHAR)"}, {"answer": "SELECT 4 AS _credits FROM table_name_28 WHERE hand = \"straight\"", "question": "What would be the 4 credits result of a straight?", "context": "CREATE TABLE table_name_28 (hand VARCHAR)"}, {"answer": "SELECT home FROM table_name_96 WHERE score = \"2 \u2013 2\"", "question": "Who was the home team at the game that had a score of 2 \u2013 2?", "context": "CREATE TABLE table_name_96 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE visitor = \"colorado\" AND home = \"chicago\"", "question": "What was the date of the game when Colorado was the visiting team and Chicago was the home team?", "context": "CREATE TABLE table_name_36 (date VARCHAR, visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE record = \"8\u20133\u20131\"", "question": "What was the date of the game when the Avalanche had a record of 8\u20133\u20131?", "context": "CREATE TABLE table_name_34 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_3 WHERE wicket_partnership = \"5th\"", "question": "Who was the opponents of the 5th Wicket Partnership?", "context": "CREATE TABLE table_name_3 (opponents VARCHAR, wicket_partnership VARCHAR)"}, {"answer": "SELECT season FROM table_name_70 WHERE competition = \"champions league\"", "question": "In which season was there a competition in the Champions League?", "context": "CREATE TABLE table_name_70 (season VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE club = \"rsc anderlecht\"", "question": "What scores did the RSC Anderlecht club have?", "context": "CREATE TABLE table_name_68 (score VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(opening_week_nett_gross) FROM table_name_42 WHERE rank < 5 AND studio_s_ = \"reliance entertainment\"", "question": "What is the highest opening week net gross of the movie ranked higher than 5 from Reliance Entertainment?", "context": "CREATE TABLE table_name_42 (opening_week_nett_gross INTEGER, rank VARCHAR, studio_s_ VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_86 WHERE driver = \"bob evans\" AND laps < 68", "question": "Tell me the total number of Grid for Bob Evans and Laps less than 68", "context": "CREATE TABLE table_name_86 (grid VARCHAR, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_52 WHERE laps < 17 AND grid > 11 AND driver = \"alan jones\"", "question": "Tell me constructor for Laps less than 17 and Grid more than 11 for alan jones", "context": "CREATE TABLE table_name_52 (constructor VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_7 WHERE grid < 11 AND driver = \"jean-pierre jarier\"", "question": "I want the sum of Laps with Grid less than 11 for jean-pierre jarier", "context": "CREATE TABLE table_name_7 (laps INTEGER, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_39 WHERE time_retired = \"brakes\" AND grid < 14", "question": "I want the constructor for brakes and grid less than 14", "context": "CREATE TABLE table_name_39 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(episodes) FROM table_name_22 WHERE season_no = 1", "question": "How may episodes did season 1 have?", "context": "CREATE TABLE table_name_22 (episodes VARCHAR, season_no VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_41 WHERE entrant = \"larrousse f1\" AND driver = \"aguri suzuki\"", "question": "Which chassis did Aguri Suzuki drive with an entrant of Larrousse F1?", "context": "CREATE TABLE table_name_41 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_70 WHERE rounds = \"16\" AND constructor = \"ferrari\"", "question": "What was the entrant in round 16 were Ferrari was the constructor?", "context": "CREATE TABLE table_name_70 (entrant VARCHAR, rounds VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT country FROM table_name_71 WHERE icao = \"zgha\"", "question": "Tell me the country with ICAO of zgha", "context": "CREATE TABLE table_name_71 (country VARCHAR, icao VARCHAR)"}, {"answer": "SELECT icao FROM table_name_51 WHERE city = \"xi'an\"", "question": "I want the ICAO for city of xi'an", "context": "CREATE TABLE table_name_51 (icao VARCHAR, city VARCHAR)"}, {"answer": "SELECT iata FROM table_name_32 WHERE icao = \"zgkl\"", "question": "I want the IATA for ICAO of zgkl", "context": "CREATE TABLE table_name_32 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT region FROM table_name_28 WHERE icao = \"vmmc\"", "question": "I want the region for ICAO of vmmc", "context": "CREATE TABLE table_name_28 (region VARCHAR, icao VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_29 WHERE time_retired = \"+ 3 laps\" AND laps < 57", "question": "What is the high grid number for a Time/Retired of + 3 laps, and a Laps smaller than 57?", "context": "CREATE TABLE table_name_29 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_66 WHERE time_retired = \"1:36:38.887\"", "question": "Who built the car that has a Time/Retired of 1:36:38.887?", "context": "CREATE TABLE table_name_66 (constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_99 WHERE date = \"9 january 2008\"", "question": "Who was the leading scorer on 9 January 2008?", "context": "CREATE TABLE table_name_99 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_2 WHERE club = \"barcelona b\" AND wins < 11", "question": "What is the number played for the Barcelona B club, with wins under 11?", "context": "CREATE TABLE table_name_2 (played INTEGER, club VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_29 WHERE points = \"20-18\" AND wins < 4", "question": "What was the biggest draws, for wins under 4, and points of 20-18?", "context": "CREATE TABLE table_name_29 (draws INTEGER, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(goals_against) FROM table_name_68 WHERE goals_for > 35 AND goal_difference = 20", "question": "What is the average of goals against, where overall goals are more than 35 and the goal difference is 20?", "context": "CREATE TABLE table_name_68 (goals_against INTEGER, goals_for VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_41 WHERE away_team = \"richmond\"", "question": "What is the Crowd number for the Away team of Richmond?", "context": "CREATE TABLE table_name_41 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_31 WHERE venue = \"glenferrie oval\"", "question": "What is the Home team score for the Venue named Glenferrie Oval?", "context": "CREATE TABLE table_name_31 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_96 WHERE venue = \"princes park\"", "question": "What is the smallest Crowd number for the Venue named Princes Park?", "context": "CREATE TABLE table_name_96 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT notes FROM table_name_72 WHERE method = \"points\" AND event = \"adcc 2001 absolute\" AND result = \"loss\"", "question": "Tell me the notes with method of points and event of adcc 2001 absolute with result of loss", "context": "CREATE TABLE table_name_72 (notes VARCHAR, result VARCHAR, method VARCHAR, event VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_59 WHERE result = \"win\" AND method = \"points\" AND notes = \"opening round\"", "question": "Tell me the lowest date for result of win and method of points with notes of opening round", "context": "CREATE TABLE table_name_59 (date INTEGER, notes VARCHAR, result VARCHAR, method VARCHAR)"}, {"answer": "SELECT result FROM table_name_65 WHERE notes = \"quarter-finals\" AND event = \"adcc 2001 absolute\"", "question": "Name the result with notes of quarter-finals and event of adcc 2001 absolute", "context": "CREATE TABLE table_name_65 (result VARCHAR, notes VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_16 WHERE method = \"points\" AND notes = \"opening round\"", "question": "I want the event for method of points with notes of opening round", "context": "CREATE TABLE table_name_16 (event VARCHAR, method VARCHAR, notes VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_71 WHERE events < 22 AND rank < 3", "question": "How many win total which has the rank smaller than 3 and events smaller than 22", "context": "CREATE TABLE table_name_71 (wins VARCHAR, events VARCHAR, rank VARCHAR)"}, {"answer": "SELECT denomination FROM table_name_5 WHERE location = \"mt lawley\"", "question": "What denomination is mt lawley?", "context": "CREATE TABLE table_name_5 (denomination VARCHAR, location VARCHAR)"}, {"answer": "SELECT day_boarding FROM table_name_84 WHERE location = \"mt lawley\"", "question": "Is mt lawley day or boarding?", "context": "CREATE TABLE table_name_84 (day_boarding VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(founded) FROM table_name_6 WHERE location = \"claremont\"", "question": "What is the average year founded for schools in claremont?", "context": "CREATE TABLE table_name_6 (founded INTEGER, location VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_32 WHERE home_team = \"north melbourne\"", "question": "When north melbourne was the home team who was the Away team?", "context": "CREATE TABLE table_name_32 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_88 WHERE home_team = \"collingwood\"", "question": "When collingwood played as the home team who was the away team?", "context": "CREATE TABLE table_name_88 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_52 WHERE away_team = \"south melbourne\"", "question": "When the Away team was south melbourne what was the home team?", "context": "CREATE TABLE table_name_52 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(lowest) FROM table_name_24 WHERE average < 307", "question": "What is the lowest attendance for a stadium that has an average smaller than 307?", "context": "CREATE TABLE table_name_24 (lowest INTEGER, average INTEGER)"}, {"answer": "SELECT away_team AS score FROM table_name_64 WHERE home_team = \"south melbourne\"", "question": "When the home team was South Melbourne, what did the away team score?", "context": "CREATE TABLE table_name_64 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_15 WHERE bronze < 13 AND total = 11 AND gold > 4", "question": "What is the average rank of a country with less than 13 bronze medals, a total of 11 medals, and more than 4 gold?", "context": "CREATE TABLE table_name_15 (rank INTEGER, gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_58 WHERE silver = 9 AND total > 13 AND gold > 13", "question": "What is the lowest bronze a team with 9 silvers, a total larger than 13, and more than 13 gold medals has?", "context": "CREATE TABLE table_name_58 (bronze INTEGER, gold VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_6 WHERE total > 95", "question": "What is the highest number of silvers a team with more than 95 total medals has?", "context": "CREATE TABLE table_name_6 (silver INTEGER, total INTEGER)"}, {"answer": "SELECT MAX(total) FROM table_name_96 WHERE gold < 15 AND bronze < 5 AND rank > 10", "question": "What is the highest total medals a team with less than 15 gold, less than 5 bronze, and a rank larger than 10 has?", "context": "CREATE TABLE table_name_96 (total INTEGER, rank VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_95 WHERE venue = \"glenferrie oval\"", "question": "Who is the home team who plays at Glenferrie Oval?", "context": "CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_29 WHERE away_team = \"carlton\"", "question": "What did the away team Carlton score?", "context": "CREATE TABLE table_name_29 (away_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_58 WHERE tries > 4 AND points = 20 AND player = \"lee gilmour\"", "question": "What position did Lee Gilmour play while having more than 4 Tries and 20 points?", "context": "CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR, tries VARCHAR, points VARCHAR)"}, {"answer": "SELECT host FROM table_name_29 WHERE ratings = \"9.4/27\"", "question": "Who was the host that garnered ratings of 9.4/27?", "context": "CREATE TABLE table_name_29 (host VARCHAR, ratings VARCHAR)"}, {"answer": "SELECT lap_by_lap FROM table_name_29 WHERE year < 1994 AND ratings = \"8.0/21\"", "question": "Who was the lap-by-lap broadcaster before 1994 who garnered ratings of 8.0/21?", "context": "CREATE TABLE table_name_29 (lap_by_lap VARCHAR, year VARCHAR, ratings VARCHAR)"}, {"answer": "SELECT host FROM table_name_30 WHERE ratings = \"9.6/26\"", "question": "Who was the host that garnered ratings of 9.6/26?", "context": "CREATE TABLE table_name_30 (host VARCHAR, ratings VARCHAR)"}, {"answer": "SELECT ratings FROM table_name_83 WHERE host = \"chris economaki\" AND viewers = \"12.3 million\"", "question": "What were the ratings for host Chris Economaki who had 12.3 million viewers?", "context": "CREATE TABLE table_name_83 (ratings VARCHAR, host VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT network FROM table_name_74 WHERE host = \"ken squier\" AND viewers = \"13.9 million\"", "question": "Who was the network who had Ken Squier as a host and 13.9 million viewers?", "context": "CREATE TABLE table_name_74 (network VARCHAR, host VARCHAR, viewers VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_1 WHERE date = \"february 5\"", "question": "What was the lowest Attendance for Games played on the Date of February 5?", "context": "CREATE TABLE table_name_1 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_61 WHERE visitor = \"chicago\"", "question": "What was the total Attendance for Games while Chicago was the visiting Team?", "context": "CREATE TABLE table_name_61 (attendance INTEGER, visitor VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_30 WHERE fastest_lap = \"rubens barrichello\" AND round > 11", "question": "What pole position was Rubens Barrichello when he had the fastest lap and a round larger than 11?", "context": "CREATE TABLE table_name_30 (pole_position VARCHAR, fastest_lap VARCHAR, round VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_name_58 WHERE winning_driver = \"david coulthard\" AND pole_position = \"michael schumacher\" AND round < 9", "question": "Which Grand Prix did David Coulthard win with Michael Schumacher in the pole position before round 9?", "context": "CREATE TABLE table_name_58 (grand_prix VARCHAR, round VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_32 WHERE pole_position = \"david coulthard\" AND winning_driver = \"michael schumacher\"", "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_36 WHERE grand_prix = \"australian grand prix\"", "question": "Who had the fastest lap at the Australian Grand Prix?", "context": "CREATE TABLE table_name_36 (fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_46 WHERE team_1 = \"la nuova piovese (veneto a)\"", "question": "Tell me the team 2 for team 1 being la nuova piovese (veneto a)", "context": "CREATE TABLE table_name_46 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_8 WHERE team_2 = \"civitavecchiese (latium a)\"", "question": "Tell me the team 1 for team 2 being civitavecchiese (latium a)", "context": "CREATE TABLE table_name_8 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_55 WHERE team_1 = \"budoni (sardinia)\"", "question": "Tell me the 1st leg for team being budoni (Sardinia)", "context": "CREATE TABLE table_name_55 (team_1 VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_88 WHERE location = \"busch stadium (ii)\" AND time = \"3:54\"", "question": "How many attended the game at Busch Stadium (ii) when the time was 3:54?", "context": "CREATE TABLE table_name_88 (attendance VARCHAR, location VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE game > 6", "question": "What dates were the games after game 6 played?", "context": "CREATE TABLE table_name_56 (date VARCHAR, game INTEGER)"}, {"answer": "SELECT 1977 FROM table_name_9 WHERE 1972 = \"grand slam tournaments\"", "question": "What is the 1977 value that had Grand Slam Tournaments in 1972?", "context": "CREATE TABLE table_name_9 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_13 WHERE 1976 = \"grand slam tournaments\"", "question": "What is the tournament that had Grand Slam Tournaments in 1976?", "context": "CREATE TABLE table_name_13 (tournament VARCHAR)"}, {"answer": "SELECT 1976 FROM table_name_35 WHERE tournament = \"australian open\"", "question": "What is the 1976 value of the Australian Open?", "context": "CREATE TABLE table_name_35 (tournament VARCHAR)"}, {"answer": "SELECT 1977 FROM table_name_65 WHERE 1974 = \"a\"", "question": "What is the 1977 value that has a 1974 a value?", "context": "CREATE TABLE table_name_65 (Id VARCHAR)"}, {"answer": "SELECT week FROM table_name_87 WHERE record = \"4-10\"", "question": "Which week led to a record of 4-10?", "context": "CREATE TABLE table_name_87 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT week FROM table_name_91 WHERE opponent = \"san diego chargers\"", "question": "Which week was the game against the San Diego Chargers?", "context": "CREATE TABLE table_name_91 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT height FROM table_name_93 WHERE hometown = \"huntington, wv\"", "question": "What is the height of the player who is from Huntington, WV?", "context": "CREATE TABLE table_name_93 (height VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT school FROM table_name_45 WHERE hometown = \"chicago, il\"", "question": "What school is the player who has a hometown of Chicago, IL from?", "context": "CREATE TABLE table_name_45 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT college FROM table_name_67 WHERE school = \"south medford high school\"", "question": "Which college is the player from South Medford High School headed to?", "context": "CREATE TABLE table_name_67 (college VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_68 WHERE college = \"duke\"", "question": "Which school is the player who is headed to Duke from?", "context": "CREATE TABLE table_name_68 (school VARCHAR, college VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_83 WHERE college = \"duke\"", "question": "What is the hometown of the player who is headed to Duke?", "context": "CREATE TABLE table_name_83 (hometown VARCHAR, college VARCHAR)"}, {"answer": "SELECT louise FROM table_name_83 WHERE dainty_june = \"tracy venner\"", "question": "Who was Louise when Tracy Venner was Dainty June?", "context": "CREATE TABLE table_name_83 (louise VARCHAR, dainty_june VARCHAR)"}, {"answer": "SELECT dainty_june FROM table_name_5 WHERE louise = \"tammy blanchard\"", "question": "Who was Dainty June when Tammy Blanchard was Louise?", "context": "CREATE TABLE table_name_5 (dainty_june VARCHAR, louise VARCHAR)"}, {"answer": "SELECT dainty_june FROM table_name_27 WHERE herbie = \"boyd gaines\"", "question": "Who was Dainty June when Boyd Gaines was Herbie?", "context": "CREATE TABLE table_name_27 (dainty_june VARCHAR, herbie VARCHAR)"}, {"answer": "SELECT productions FROM table_name_53 WHERE rose = \"angela lansbury\" AND herbie = \"barrie ingham\"", "question": "What production had Angela Lansbury as Rose and Barrie Ingham as Herbie?", "context": "CREATE TABLE table_name_53 (productions VARCHAR, rose VARCHAR, herbie VARCHAR)"}, {"answer": "SELECT rose FROM table_name_60 WHERE productions = \"1975 broadway revival\"", "question": "Who was rose in the 1975 Broadway Revival?", "context": "CREATE TABLE table_name_60 (rose VARCHAR, productions VARCHAR)"}, {"answer": "SELECT productions FROM table_name_96 WHERE herbie = \"rex robbins\"", "question": "Which production had Rex Robbins as Herbie?", "context": "CREATE TABLE table_name_96 (productions VARCHAR, herbie VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE venue = \"vfl park\"", "question": "On what date was the venue VFL Park?", "context": "CREATE TABLE table_name_50 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE home_team = \"footscray\"", "question": "What date did Footscray play at home?", "context": "CREATE TABLE table_name_92 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_10 WHERE away_team = \"geelong\"", "question": "What did the home team score when they played the away team of Geelong?", "context": "CREATE TABLE table_name_10 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_5 WHERE team = \"boston celtics\"", "question": "What was the lowest pick number for the Boston Celtics?", "context": "CREATE TABLE table_name_5 (pick INTEGER, team VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_98 WHERE date = \"23 november 2007\"", "question": "Who is the visitor team on 23 November 2007?", "context": "CREATE TABLE table_name_98 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_61 WHERE date = \"20 november 2007\"", "question": "Who is the leading scorer of the game on 20 November 2007?", "context": "CREATE TABLE table_name_61 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT overall FROM table_name_49 WHERE player = \"petter ronnquist\"", "question": "When was petter ronnquist picked?", "context": "CREATE TABLE table_name_49 (overall VARCHAR, player VARCHAR)"}, {"answer": "SELECT venue FROM table_name_96 WHERE result = \"1\u20130\"", "question": "Which venue has a Result of 1\u20130?", "context": "CREATE TABLE table_name_96 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_98 WHERE result = \"1\u20132\"", "question": "Which venue has a Result of 1\u20132?", "context": "CREATE TABLE table_name_98 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(scored) FROM table_name_59 WHERE result = \"1\u20131\" AND date = \"4 march 2001\"", "question": "What is the highest score with a Result of 1\u20131 on 4 march 2001?", "context": "CREATE TABLE table_name_59 (scored INTEGER, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_70 WHERE competition = \"2003 eaff championship preliminary\" AND date = \"2 march 2003\"", "question": "What is the result of 2003 eaff championship preliminary on 2 march 2003?", "context": "CREATE TABLE table_name_70 (result VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT engine FROM table_name_44 WHERE driver = \"luigi villoresi\"", "question": "I want the engine for luigi villoresi", "context": "CREATE TABLE table_name_44 (engine VARCHAR, driver VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_34 WHERE entrant = \"ecurie lutetia\"", "question": "I want the chassis for entrant of ecurie lutetia", "context": "CREATE TABLE table_name_34 (chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE venue = \"princes park\"", "question": "What date was the game played at princes park?", "context": "CREATE TABLE table_name_8 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_83 WHERE venue = \"vfl park\"", "question": "What was the score of the away team when the game was played at vfl park?", "context": "CREATE TABLE table_name_83 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT kaz_hayashi FROM table_name_43 WHERE block_a = \"bushi\"", "question": "Name the kaz hayashi for block A being bushi", "context": "CREATE TABLE table_name_43 (kaz_hayashi VARCHAR, block_a VARCHAR)"}, {"answer": "SELECT minoru FROM table_name_38 WHERE block_a = \"koji kanemoto\"", "question": "Name the minoru for block A being koji kanemoto", "context": "CREATE TABLE table_name_38 (minoru VARCHAR, block_a VARCHAR)"}, {"answer": "SELECT bushi FROM table_name_45 WHERE kenny_omega = \"yang (7:27)\"", "question": "Name the BUSHI when it has kenny omega of yang (7:27)", "context": "CREATE TABLE table_name_45 (bushi VARCHAR, kenny_omega VARCHAR)"}, {"answer": "SELECT bushi FROM table_name_50 WHERE kaz_hayashi = \"kai (14:01)\"", "question": "Name the BUSHI that has kaz hayashi of kai (14:01)", "context": "CREATE TABLE table_name_50 (bushi VARCHAR, kaz_hayashi VARCHAR)"}, {"answer": "SELECT kaz_hayashi FROM table_name_49 WHERE bushi = \"yang (9:43)\"", "question": "Name the Kaz Hayashi which has BUSHI of yang (9:43)", "context": "CREATE TABLE table_name_49 (kaz_hayashi VARCHAR, bushi VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_25 WHERE race = \"dutch grand prix\"", "question": "Who was the winning driver for the Dutch Grand Prix?", "context": "CREATE TABLE table_name_25 (winning_driver VARCHAR, race VARCHAR)"}, {"answer": "SELECT song FROM table_name_23 WHERE year < 2013 AND music_director = \"yuvan shankar raja\" AND film = \"billa ii\"", "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 title FROM table_name_13 WHERE original_air_date = \"march 19, 1998\"", "question": "What title aired on March 19, 1998?", "context": "CREATE TABLE table_name_13 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT directed_by FROM table_name_1 WHERE production_code = \"k2708\"", "question": "Who directed the show with the production code k2708?", "context": "CREATE TABLE table_name_1 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT season__number FROM table_name_52 WHERE series__number = 81", "question": "What is the season for series 81?", "context": "CREATE TABLE table_name_52 (season__number VARCHAR, series__number VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE venue = \"lake oval\"", "question": "On what date was a match played at Lake Oval?", "context": "CREATE TABLE table_name_4 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_62 WHERE home_team = \"collingwood\"", "question": "At the home game in Collingwood, how much did the away team score?", "context": "CREATE TABLE table_name_62 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_34 WHERE venue = \"victoria park\"", "question": "In the game at Victoria Park, what was the number of people in the crowd?", "context": "CREATE TABLE table_name_34 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_84 WHERE year = 1974 AND venue = \"gothenburg , sweden\"", "question": "What was the tournament that happened in 1974 in gothenburg , sweden?", "context": "CREATE TABLE table_name_84 (tournament VARCHAR, year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT division FROM table_name_26 WHERE wins = \"76\"", "question": "Which MLB division has a win record of 76?", "context": "CREATE TABLE table_name_26 (division VARCHAR, wins VARCHAR)"}, {"answer": "SELECT finish FROM table_name_63 WHERE team_season = \"1980\"", "question": "What was the final rank of the Brewers in 1980?", "context": "CREATE TABLE table_name_63 (finish VARCHAR, team_season VARCHAR)"}, {"answer": "SELECT finish FROM table_name_79 WHERE win__percentage = \".585\"", "question": "What was the final rank of the Brewers when they achieved a win percentage of .585?", "context": "CREATE TABLE table_name_79 (finish VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT division FROM table_name_23 WHERE team_season = \"1987\"", "question": "Which division were the Brewers a part of in the 1987 season?", "context": "CREATE TABLE table_name_23 (division VARCHAR, team_season VARCHAR)"}, {"answer": "SELECT division FROM table_name_98 WHERE finish = \"5th\" AND losses = \"87\"", "question": "Which division of the Brewers had a 5th place ranking and a loss record of 87?", "context": "CREATE TABLE table_name_98 (division VARCHAR, finish VARCHAR, losses VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_52 WHERE opponent = \"san diego chargers\"", "question": "where was the game site when the opponent was san diego chargers?", "context": "CREATE TABLE table_name_52 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_44 WHERE week = \"9\"", "question": "who was the opponent when the week was 9?", "context": "CREATE TABLE table_name_44 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE away_team = \"geelong\"", "question": "What venue features geelong as the away side?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_65 WHERE home_team = \"essendon\"", "question": "What venue features essendon at home?", "context": "CREATE TABLE table_name_65 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_86 WHERE category = \"best director\"", "question": "Who is the nominee for best director?", "context": "CREATE TABLE table_name_86 (nominee VARCHAR, category VARCHAR)"}, {"answer": "SELECT ceremony FROM table_name_45 WHERE outcome = \"nominated\" AND nominee = \"leela chitnis\"", "question": "What ceremony was leela chitnis nominated at?", "context": "CREATE TABLE table_name_45 (ceremony VARCHAR, outcome VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_42 WHERE cfl_team = \"winnipeg blue bombers\"", "question": "what is the highest pick number of the CFL team, the winnipeg blue bombers?", "context": "CREATE TABLE table_name_42 (pick__number INTEGER, cfl_team VARCHAR)"}, {"answer": "SELECT college FROM table_name_86 WHERE pick__number = 41", "question": "Which college has 41 picks?", "context": "CREATE TABLE table_name_86 (college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT player FROM table_name_96 WHERE college = \"manitoba\"", "question": "Which player plays for the college of manitoba?", "context": "CREATE TABLE table_name_96 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT unami_delaware FROM table_name_18 WHERE thomas__1698_ = \"nacha\"", "question": "What is the Unami Delaware value for a Thomas value of nacha?", "context": "CREATE TABLE table_name_18 (unami_delaware VARCHAR, thomas__1698_ VARCHAR)"}, {"answer": "SELECT campanius__ca_1645_ FROM table_name_43 WHERE unami_delaware = \"pal\u00e9\u00b7naxk\"", "question": "What is the Campanius term for an Unami Delaware term of pal\u00e9\u00b7naxk?", "context": "CREATE TABLE table_name_43 (campanius__ca_1645_ VARCHAR, unami_delaware VARCHAR)"}, {"answer": "SELECT de_laet__1633_ FROM table_name_12 WHERE munsee_delaware = \"n\u00ed\u00b7\u0161a\"", "question": "What is the De Laet term for a Munsee Delaware term of n\u00ed\u00b7\u0161a?", "context": "CREATE TABLE table_name_12 (de_laet__1633_ VARCHAR, munsee_delaware VARCHAR)"}, {"answer": "SELECT player FROM table_name_75 WHERE round < 2", "question": "What is the name of the player picked before round 2?", "context": "CREATE TABLE table_name_75 (player VARCHAR, round INTEGER)"}, {"answer": "SELECT player FROM table_name_85 WHERE overall < 209 AND club_team = \"victoriaville tigres (qmjhl)\" AND round = 1", "question": "What is the name of the player with an overall less than 209 for the Victoriaville tigres (qmjhl), and a Round of 1?", "context": "CREATE TABLE table_name_85 (player VARCHAR, round VARCHAR, overall VARCHAR, club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_14 WHERE overall > 227", "question": "What is the name of the player with an Overall larger than 227?", "context": "CREATE TABLE table_name_14 (player VARCHAR, overall INTEGER)"}, {"answer": "SELECT MAX(overall) FROM table_name_40 WHERE round > 8 AND player = \"pavol demitra\"", "question": "What is the highest overall for a round larger than 8 for pavol demitra?", "context": "CREATE TABLE table_name_40 (overall INTEGER, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT description FROM table_name_61 WHERE livery = \"ews\"", "question": "What description does Livery of ews have?", "context": "CREATE TABLE table_name_61 (description VARCHAR, livery VARCHAR)"}, {"answer": "SELECT position FROM table_name_85 WHERE competition = \"super league 1\"", "question": "What Position has a Super League 1 Competition?", "context": "CREATE TABLE table_name_85 (position VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_54 WHERE captain = \"robbie paul\" AND lost < 5 AND main_article = \"bradford bulls 1997\"", "question": "What Competition in Main Article of Bradford Bulls 1997 have Robbie Paul as Captain with less than 5 Lost?", "context": "CREATE TABLE table_name_54 (competition VARCHAR, main_article VARCHAR, captain VARCHAR, lost VARCHAR)"}, {"answer": "SELECT captain FROM table_name_28 WHERE lost = 13", "question": "What Captain has Lost 13?", "context": "CREATE TABLE table_name_28 (captain VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_99 WHERE lost < 4 AND coach = \"francis cummins\"", "question": "How many Drawn did Coach Francis Cummins have with less than 4 Lost?", "context": "CREATE TABLE table_name_99 (drawn INTEGER, lost VARCHAR, coach VARCHAR)"}, {"answer": "SELECT horse FROM table_name_10 WHERE faults = \"did not start\" AND total > 16.16", "question": "What horse did not start and had a total of over 16.16?", "context": "CREATE TABLE table_name_10 (horse VARCHAR, faults VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_4 WHERE rider = \"christina liebherr\"", "question": "What was the total for christina liebherr?", "context": "CREATE TABLE table_name_4 (total INTEGER, rider VARCHAR)"}, {"answer": "SELECT population FROM table_name_51 WHERE germans = \"87.5%\"", "question": "What is the population of the year featuring an 87.5% German population?", "context": "CREATE TABLE table_name_51 (population VARCHAR, germans VARCHAR)"}, {"answer": "SELECT height FROM table_name_48 WHERE hometown = \"chicago, il\"", "question": "How tall is the player from Chicago, IL?", "context": "CREATE TABLE table_name_48 (height VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT college FROM table_name_26 WHERE player = \"dennis scott\"", "question": "What college does Dennis Scott attend?", "context": "CREATE TABLE table_name_26 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_20 WHERE hometown = \"bay city, tx\"", "question": "Who's from Bay City, TX?", "context": "CREATE TABLE table_name_20 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_61 WHERE player = \"labradford smith\"", "question": "Which NBA Draft had Labradford Smith?", "context": "CREATE TABLE table_name_61 (nba_draft VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_77 WHERE venue = \"windy hill\"", "question": "What was the lowest attendance at Windy Hill?", "context": "CREATE TABLE table_name_77 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_6 WHERE venue = \"princes park\"", "question": "What was the home team's score at Princes Park?", "context": "CREATE TABLE table_name_6 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_50 WHERE home_team = \"geelong\"", "question": "How much did the home team Geelong score?", "context": "CREATE TABLE table_name_50 (home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_86 WHERE away_team = \"carlton\"", "question": "What is the name of the home team that played Carlton?", "context": "CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT status FROM table_name_54 WHERE builder = \"orenstein and koppel\"", "question": "Name the status with builder of orenstein and koppel", "context": "CREATE TABLE table_name_54 (status VARCHAR, builder VARCHAR)"}, {"answer": "SELECT builder FROM table_name_60 WHERE name_number = \"joffre\"", "question": "Who was the builder for joffre", "context": "CREATE TABLE table_name_60 (builder VARCHAR, name_number VARCHAR)"}, {"answer": "SELECT venue FROM table_name_14 WHERE home_team = \"carlton\"", "question": "Where did Carlton play as the home team?", "context": "CREATE TABLE table_name_14 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_98 WHERE away_team = \"melbourne\"", "question": "Who was the home team when Melbourne was the away team?", "context": "CREATE TABLE table_name_98 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE date = \"november 20, 1988\"", "question": "What was the result on November 20, 1988?", "context": "CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT kickoff_[a_] FROM table_name_60 WHERE week = \"5\"", "question": "What time was the kickoff on week 5?", "context": "CREATE TABLE table_name_60 (kickoff_ VARCHAR, a_ VARCHAR, week VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_64 WHERE attendance = \"39,889\"", "question": "Where was the game that had an attendance of 39,889?", "context": "CREATE TABLE table_name_64 (game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_95 WHERE attendance = \"43,502\"", "question": "What was the record when the attendance was 43,502?", "context": "CREATE TABLE table_name_95 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT label FROM table_name_37 WHERE date = \"1988\" AND format = \"cd\"", "question": "What label released a CD in 1988?", "context": "CREATE TABLE table_name_37 (label VARCHAR, date VARCHAR, format VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE region = \"united kingdom\" AND catalog = \"ft 507\"", "question": "On what date did the United Kingdom have a catalog of FT 507?", "context": "CREATE TABLE table_name_86 (date VARCHAR, region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE catalog = \"ft 507\"", "question": "On what date was the Catalog FT 507?", "context": "CREATE TABLE table_name_93 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_47 WHERE date = \"1988\" AND catalog = \"54513\"", "question": "Which label had a catalog of 54513 in 1988?", "context": "CREATE TABLE table_name_47 (label VARCHAR, date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE label = \"fantasy records\" AND format = \"cd\" AND catalog = \"fcd-4513-2\"", "question": "On what date did Fantasy Records release a CD format of catalog FCD-4513-2?", "context": "CREATE TABLE table_name_54 (date VARCHAR, catalog VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_21 WHERE driver = \"john watson\" AND grid < 7", "question": "What was John Watson's total laps with a grid of less than 7?", "context": "CREATE TABLE table_name_21 (laps VARCHAR, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_44 WHERE grid = 9", "question": "How many laps were there with #9 grid?", "context": "CREATE TABLE table_name_44 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_29 WHERE laps < 33 AND grid = 14", "question": "What was the time/retired with laps less than 33 and a grid of 14?", "context": "CREATE TABLE table_name_29 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_46 WHERE driver = \"john watson\"", "question": "What was John Watson's time/retired?", "context": "CREATE TABLE table_name_46 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE no_s_ = \"14\"", "question": "What is the player with the no. 14?", "context": "CREATE TABLE table_name_41 (player VARCHAR, no_s_ VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_2 WHERE school_club_team_country = \"benetton treviso, italy\"", "question": "What is the height of the player from Benetton Treviso, Italy?", "context": "CREATE TABLE table_name_2 (height_in_ft VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT pens FROM table_name_10 WHERE conv = \"6\"", "question": "I want to know the pens with conv of 6", "context": "CREATE TABLE table_name_10 (pens VARCHAR, conv VARCHAR)"}, {"answer": "SELECT pens FROM table_name_38 WHERE tries = \"1\" AND player = \"matt alexander\" AND conv = \"4\"", "question": "Which pens has 1 tries and matt alexander as a player with conv of 4?", "context": "CREATE TABLE table_name_38 (pens VARCHAR, conv VARCHAR, tries VARCHAR, player VARCHAR)"}, {"answer": "SELECT venue FROM table_name_12 WHERE conv = \"5 players on 20 points\"", "question": "Name the venue that has conv of 5 players on 20 points", "context": "CREATE TABLE table_name_12 (venue VARCHAR, conv VARCHAR)"}, {"answer": "SELECT name FROM table_name_90 WHERE wins < 3 AND matches < 15", "question": "What are the names of those who made less than 3 wins in 15 matches?", "context": "CREATE TABLE table_name_90 (name VARCHAR, wins VARCHAR, matches VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_31 WHERE game < 2", "question": "What is the highest amount of points when the game is less than 2?", "context": "CREATE TABLE table_name_31 (high_points VARCHAR, game INTEGER)"}, {"answer": "SELECT score FROM table_name_3 WHERE date = \"april 20\"", "question": "What was the score on April 20?", "context": "CREATE TABLE table_name_3 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_70 WHERE date = \"june 11, 1995\"", "question": "Name the surface on june 11, 1995", "context": "CREATE TABLE table_name_70 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_34 WHERE date = \"september 12, 1993\"", "question": "Name the score for september 12, 1993", "context": "CREATE TABLE table_name_34 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_71 WHERE score = \"7\u20136(4), 6\u20131\"", "question": "Name the surface for score of 7\u20136(4), 6\u20131", "context": "CREATE TABLE table_name_71 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE score = \"7\u20136(4), 6\u20131\"", "question": "Name the date that had a score of 7\u20136(4), 6\u20131", "context": "CREATE TABLE table_name_98 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_19 WHERE year > 1997 AND competition = \"world group, semifinals\"", "question": "what is the result for the world group, semifinals after the year 1997?", "context": "CREATE TABLE table_name_19 (result VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_54 WHERE away_team = \"south melbourne\"", "question": "What home team played against south Melbourne?", "context": "CREATE TABLE table_name_54 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_6 WHERE home_team = \"essendon\"", "question": "What is the average crowd size for the home team essendon?", "context": "CREATE TABLE table_name_6 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_49 WHERE away_team = \"north melbourne\"", "question": "What is the home team score when north Melbourne was the away team?", "context": "CREATE TABLE table_name_49 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_33 WHERE constructor = \"brm\" AND laps < 63", "question": "What is the average grid with brm and under 63 laps?", "context": "CREATE TABLE table_name_33 (grid INTEGER, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_68 WHERE date = \"may 27\" AND class = \"gts-2\"", "question": "On what circuit is there a class gts-2 race that takes place on May 27?", "context": "CREATE TABLE table_name_68 (circuit VARCHAR, date VARCHAR, class VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_69 WHERE length = \"2 hours\"", "question": "On what circuit is there a race that lasts 2 hours?", "context": "CREATE TABLE table_name_69 (circuit VARCHAR, length VARCHAR)"}, {"answer": "SELECT class FROM table_name_23 WHERE race = \"the dodge dealers grand prix\"", "question": "What class is the dodge dealers grand prix?", "context": "CREATE TABLE table_name_23 (class VARCHAR, race VARCHAR)"}, {"answer": "SELECT length FROM table_name_95 WHERE race = \"first union six hours at the glen\"", "question": "What is the length of the First Union six hours at the Glen?", "context": "CREATE TABLE table_name_95 (length VARCHAR, race VARCHAR)"}, {"answer": "SELECT class FROM table_name_20 WHERE date = \"august 25\"", "question": "What is the class of the race that takes place on August 25?", "context": "CREATE TABLE table_name_20 (class VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE home = \"montreal\"", "question": "What was the score when Montreal was home?", "context": "CREATE TABLE table_name_94 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE result = \"w\" AND date = \"9/3/97\"", "question": "On 9/3/97, what was the score that resulted in a w?", "context": "CREATE TABLE table_name_72 (score VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_35 WHERE roll = 422", "question": "Who has a roll value of 422?", "context": "CREATE TABLE table_name_35 (name VARCHAR, roll VARCHAR)"}, {"answer": "SELECT area FROM table_name_44 WHERE decile = 10", "question": "In what area is the decile value 10?", "context": "CREATE TABLE table_name_44 (area VARCHAR, decile VARCHAR)"}, {"answer": "SELECT MAX(decile) FROM table_name_46 WHERE roll > 301 AND area = \"hauraki\"", "question": "What is the highest decile value with a roll greater than 301 in Hauraki?", "context": "CREATE TABLE table_name_46 (decile INTEGER, roll VARCHAR, area VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_85 WHERE trofeo_fast_team = \"metauro mobili-pinarello\" AND stage = \"6\"", "question": "Which Points classification has a Trofeo Fast Team of metauro mobili-pinarello, and a Stage of 6?", "context": "CREATE TABLE table_name_85 (points_classification VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_19 WHERE winner = \"lucien van impe\"", "question": "Which stage has a Winner of lucien van impe?", "context": "CREATE TABLE table_name_19 (stage VARCHAR, winner VARCHAR)"}, {"answer": "SELECT trofeo_fast_team FROM table_name_10 WHERE winner = \"alessandro paganessi\"", "question": "Which Trofeo Fast Team has a Winner of alessandro paganessi?", "context": "CREATE TABLE table_name_10 (trofeo_fast_team VARCHAR, winner VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_95 WHERE stage = \"7\"", "question": "Which General classification has a Stage of 7?", "context": "CREATE TABLE table_name_95 (general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_name_78 WHERE trofeo_fast_team = \"metauro mobili-pinarello\" AND general_classification = \"giuseppe saronni\"", "question": "Which Winner has a Trofeo Fast Team of metauro mobili-pinarello, and a General classification of giuseppe saronni?", "context": "CREATE TABLE table_name_78 (winner VARCHAR, trofeo_fast_team VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT report FROM table_name_67 WHERE circuit = \"mosport park\"", "question": "What's the report for the mosport park circuit?", "context": "CREATE TABLE table_name_67 (report VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_13 WHERE circuit = \"n\u00fcrburgring\"", "question": "Who has the pole position for the n\u00fcrburgring circuit?", "context": "CREATE TABLE table_name_13 (pole_position VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE winning_driver = \"pedro rodr\u00edguez\"", "question": "When was pedro rodr\u00edguez the winning driver?", "context": "CREATE TABLE table_name_77 (date VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT report FROM table_name_92 WHERE race = \"mexican grand prix\"", "question": "What's the report for the mexican grand prix?", "context": "CREATE TABLE table_name_92 (report VARCHAR, race VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_6 WHERE driver = \"nigel mansell\"", "question": "What is nigel mansell's time/retired?", "context": "CREATE TABLE table_name_6 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_20 WHERE venue = \"junction oval\"", "question": "What team was the away team at Junction Oval?", "context": "CREATE TABLE table_name_20 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home FROM table_name_26 WHERE visitor = \"mavericks\"", "question": "What is the home team when the visiting team is the Mavericks?", "context": "CREATE TABLE table_name_26 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_13 WHERE mintage < 10 OFFSET 000", "question": "What was the average year for a coin that had a mintage smaller than 10,000?", "context": "CREATE TABLE table_name_13 (year INTEGER, mintage INTEGER)"}, {"answer": "SELECT atsushi_aoki FROM table_name_96 WHERE black_tiger_v = \"ibushi (16:35)\"", "question": "What is he Atsushi Aoki when the Black Tiger V is ibushi (16:35)?", "context": "CREATE TABLE table_name_96 (atsushi_aoki VARCHAR, black_tiger_v VARCHAR)"}, {"answer": "SELECT akira FROM table_name_94 WHERE tiger_mask_iv = \"akira (10:05)\"", "question": "What is the Akira when Tiger Mask IV is Akira (10:05)?", "context": "CREATE TABLE table_name_94 (akira VARCHAR, tiger_mask_iv VARCHAR)"}, {"answer": "SELECT akira FROM table_name_58 WHERE milano_collection_at = \"milano (10:29)\"", "question": "What is the corresponding Akira when Milano Collection A.T is Milano (10:29)?", "context": "CREATE TABLE table_name_58 (akira VARCHAR, milano_collection_at VARCHAR)"}, {"answer": "SELECT block_a FROM table_name_49 WHERE prince_devitt = \"devitt (9:53)\"", "question": "What is Block A when Prince Devitt is Devitt (9:53)?", "context": "CREATE TABLE table_name_49 (block_a VARCHAR, prince_devitt VARCHAR)"}, {"answer": "SELECT akira FROM table_name_99 WHERE prince_devitt = \"devitt (7:20)\"", "question": "What is the Akira when Prince Devitt is Devitt (7:20)?", "context": "CREATE TABLE table_name_99 (akira VARCHAR, prince_devitt VARCHAR)"}, {"answer": "SELECT prince_devitt FROM table_name_49 WHERE block_a = \"yamato\"", "question": "What is the Prince Devitt when Block A is Yamato?", "context": "CREATE TABLE table_name_49 (prince_devitt VARCHAR, block_a VARCHAR)"}, {"answer": "SELECT league_one_second_division FROM table_name_80 WHERE club = \"millwall\"", "question": "I want the league one/second division for club of millwall", "context": "CREATE TABLE table_name_80 (league_one_second_division VARCHAR, club VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_77 WHERE away_team = \"carlton\"", "question": "What was the score of the home team when they played carlton?", "context": "CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_94 WHERE home_team = \"south melbourne\"", "question": "How many points did the visiting team score at south melbourne?", "context": "CREATE TABLE table_name_94 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_15 WHERE away_team = \"hawthorn\"", "question": "What is the total Crowd number for the Away team of Hawthorn?", "context": "CREATE TABLE table_name_15 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_72 WHERE away_team = \"geelong\"", "question": "What did the team score when playing against home in geelong?", "context": "CREATE TABLE table_name_72 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_79 WHERE home_team = \"st kilda\"", "question": "How many people watched when st kilda played at home?", "context": "CREATE TABLE table_name_79 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_69 WHERE crowd > 41 OFFSET 451", "question": "Who was the away team when the crowd was larger than 41,451?", "context": "CREATE TABLE table_name_69 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT home_team FROM table_name_82 WHERE venue = \"junction oval\"", "question": "Who was the home team when the venue was Junction Oval?", "context": "CREATE TABLE table_name_82 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT time FROM table_name_82 WHERE attendance = \"66,772\"", "question": "I want to know the time which has attendance of 66,772", "context": "CREATE TABLE table_name_82 (time VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE attendance = \"76,965\"", "question": "Name the opponent that has attendance of 76,965", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT week FROM table_name_89 WHERE attendance = \"78,301\"", "question": "Tell me the week that has an attendance of 78,301", "context": "CREATE TABLE table_name_89 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_61 WHERE week = \"3\"", "question": "I want to know the opponent that ha a week of 3", "context": "CREATE TABLE table_name_61 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_50 WHERE date = \"14 april 2007\"", "question": "How many were in attendance on 14 April 2007?", "context": "CREATE TABLE table_name_50 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT pick FROM table_name_11 WHERE position = \"catcher\" AND player = \"josh donaldson\"", "question": "What is catcher Josh Donaldson's pick number?", "context": "CREATE TABLE table_name_11 (pick VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_25 WHERE college = \"akron\"", "question": "Which players plays at Akron College?", "context": "CREATE TABLE table_name_25 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_93 WHERE player = \"jon hameister-ries\"", "question": "Which college does the player jon hameister-ries play for?", "context": "CREATE TABLE table_name_93 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_14 WHERE pick > 21 AND college_high_school_club = \"college of the sequoias\"", "question": "What is the nationality of the player with a pick larger than 21 from the College of the Sequoias?", "context": "CREATE TABLE table_name_14 (nationality VARCHAR, pick VARCHAR, college_high_school_club VARCHAR)"}, {"answer": "SELECT result FROM table_name_52 WHERE goals = \"deacon 6/6\"", "question": "I want the result for goals which has goals of deacon 6/6", "context": "CREATE TABLE table_name_52 (result VARCHAR, goals VARCHAR)"}, {"answer": "SELECT competition FROM table_name_28 WHERE venue = \"wilderspool\"", "question": "Which competition was at wilderspool?", "context": "CREATE TABLE table_name_28 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_58 WHERE score = \"82-0\"", "question": "Tell me the venue for score of 82-0", "context": "CREATE TABLE table_name_58 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE venue = \"mcalpine stadium\"", "question": "I want the date with the venue of mcalpine stadium", "context": "CREATE TABLE table_name_68 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT goals FROM table_name_54 WHERE score = \"38-28\"", "question": "Tell me the goals for score of 38-28", "context": "CREATE TABLE table_name_54 (goals VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_96 WHERE points > 11 AND driver = \"s\u00e9bastien bourdais\" AND laps < 67", "question": "Tell me the least Grid with points more than 11 and drivers being s\u00e9bastien bourdais with laps less than 67", "context": "CREATE TABLE table_name_96 (grid INTEGER, laps VARCHAR, points VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_9 WHERE grid > 9 AND driver = \"jan heylen\"", "question": "Name the most laps for grid more than 9 and the driver being jan heylen", "context": "CREATE TABLE table_name_9 (laps INTEGER, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_69 WHERE laps = 24", "question": "What is the grid when the laps were 24?", "context": "CREATE TABLE table_name_69 (grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_77 WHERE driver = \"chris amon\"", "question": "Who constructed Chris Amon's car?", "context": "CREATE TABLE table_name_77 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_76 WHERE driver = \"jack brabham\" AND laps > 90", "question": "What was Jack Brabham's highest grid when his laps were more than 90?", "context": "CREATE TABLE table_name_76 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_31 WHERE driver = \"chris amon\" AND grid < 4", "question": "What was CHris Amon's highest lap when his grid was 4?", "context": "CREATE TABLE table_name_31 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT venue FROM table_name_50 WHERE away_team = \"hawthorn\"", "question": "Where did Hawthorn have their away match against North Melbourne?", "context": "CREATE TABLE table_name_50 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_17 WHERE away_team = \"richmond\"", "question": "What was the home team score at Richmond's away game against Footscray?", "context": "CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_28 WHERE home_team = \"footscray\"", "question": "What is the size of the crowd for the home team of Footscray?", "context": "CREATE TABLE table_name_28 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_2 WHERE laps = 42", "question": "What is the Time/Retired for the car going 42 Laps?", "context": "CREATE TABLE table_name_2 (time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_22 WHERE grid < 12 AND driver = \"alexander wurz\"", "question": "How many laps for alexander wurz with a grid under 12?", "context": "CREATE TABLE table_name_22 (laps VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(evening_gown) FROM table_name_17 WHERE average < 8.23 AND interview = 8.11 AND swimsuit > 7.84", "question": "What is the lowest evening gown score a contestant with an average less than 8.23, an interview score of 8.11, and a swimsuit larger than 7.84 has?", "context": "CREATE TABLE table_name_17 (evening_gown INTEGER, swimsuit VARCHAR, average VARCHAR, interview VARCHAR)"}, {"answer": "SELECT COUNT(interview) FROM table_name_36 WHERE state = \"indiana\" AND average < 8.3", "question": "What is the total interview score a contestant from Indiana with an average smaller than 8.3 has?", "context": "CREATE TABLE table_name_36 (interview VARCHAR, state VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(swimsuit) FROM table_name_69 WHERE average > 8.48 AND interview > 8.58 AND evening_gown > 8.82 AND state = \"kansas\"", "question": "What is the highest swimsuit a contestant from Kansas with an average larger than 8.48, an interview higher than 8.58, and an evening gown higher than 8.82 has?", "context": "CREATE TABLE table_name_69 (swimsuit INTEGER, state VARCHAR, evening_gown VARCHAR, average VARCHAR, interview VARCHAR)"}, {"answer": "SELECT AVG(interview) FROM table_name_29 WHERE evening_gown < 8.82 AND state = \"louisiana\"", "question": "What is the average interview score of a contestant from Louisiana with an evening gown smaller than 8.82?", "context": "CREATE TABLE table_name_29 (interview INTEGER, evening_gown VARCHAR, state VARCHAR)"}, {"answer": "SELECT prefix FROM table_name_4 WHERE chemical_class = \"haloalkane\"", "question": "What prefix has Haloalkane as the chemical class?", "context": "CREATE TABLE table_name_4 (prefix VARCHAR, chemical_class VARCHAR)"}, {"answer": "SELECT example FROM table_name_36 WHERE formula = \"rx\"", "question": "Which example has rx as the formula?", "context": "CREATE TABLE table_name_36 (example VARCHAR, formula VARCHAR)"}, {"answer": "SELECT chemical_class FROM table_name_90 WHERE example = \"chloroethane (ethyl chloride)\"", "question": "Which chemical class uses the example Chloroethane (ethyl chloride)?", "context": "CREATE TABLE table_name_90 (chemical_class VARCHAR, example VARCHAR)"}, {"answer": "SELECT prefix FROM table_name_78 WHERE group = \"bromo\"", "question": "What prefix has Bromo as the group?", "context": "CREATE TABLE table_name_78 (prefix VARCHAR, group VARCHAR)"}, {"answer": "SELECT chemical_class FROM table_name_33 WHERE formula = \"ri\"", "question": "What is the chemical class for ri?", "context": "CREATE TABLE table_name_33 (chemical_class VARCHAR, formula VARCHAR)"}, {"answer": "SELECT prefix FROM table_name_73 WHERE chemical_class = \"iodoalkane\"", "question": "What prefix has chemical class Iodoalkane?", "context": "CREATE TABLE table_name_73 (prefix VARCHAR, chemical_class VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_89 WHERE player = \"lee trevino\" AND wins < 27", "question": "What is the rank of Lee Trevino, who had less than 27 wins?", "context": "CREATE TABLE table_name_89 (rank INTEGER, player VARCHAR, wins VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_name_14 WHERE series_no > 40 AND production_code < 213 AND season_no > 11", "question": "What date did the show with a series larger than 40, production code smaller than 213, and a season number larger than 11 air?", "context": "CREATE TABLE table_name_14 (original_air_date VARCHAR, season_no VARCHAR, series_no VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_27 WHERE season_no > 4 AND series_no = 49", "question": "Who wrote the series number 49 with a season larger than 4?", "context": "CREATE TABLE table_name_27 (written_by VARCHAR, season_no VARCHAR, series_no VARCHAR)"}, {"answer": "SELECT COUNT(nett_gross) FROM table_name_90 WHERE year = 1957", "question": "What is the total count of net gross in 1957?", "context": "CREATE TABLE table_name_90 (nett_gross VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(end_term) FROM table_name_88 WHERE title = \"prince regent of bavaria\"", "question": "What is the total End term with a Title of prince regent of bavaria?", "context": "CREATE TABLE table_name_88 (end_term INTEGER, title VARCHAR)"}, {"answer": "SELECT MIN(end_term) FROM table_name_39 WHERE start_term = 1913 AND name = \"ludwig iii\"", "question": "What is the smallest End term with a Start term of 1913, and a Name of ludwig iii?", "context": "CREATE TABLE table_name_39 (end_term INTEGER, start_term VARCHAR, name VARCHAR)"}, {"answer": "SELECT title FROM table_name_78 WHERE end_term = 1825", "question": "Which Title has an 1825 end term?", "context": "CREATE TABLE table_name_78 (title VARCHAR, end_term VARCHAR)"}, {"answer": "SELECT AVG(start_term) FROM table_name_58 WHERE end_term = 1912", "question": "What is the average Start term with a 1912 end term?", "context": "CREATE TABLE table_name_58 (start_term INTEGER, end_term VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE high_rebounds = \"evans (14)\"", "question": "What date were the high rebounds Evans (14)?", "context": "CREATE TABLE table_name_74 (date VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_11 WHERE high_rebounds = \"evans (7)\" AND high_assists = \"evans, ollie (3)\"", "question": "Which game has a high rebound of Evans (7) and a high assist of Evans, Ollie (3)?", "context": "CREATE TABLE table_name_11 (game INTEGER, high_rebounds VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT MAX(fa_cup_goals) FROM table_name_85 WHERE total_apps__sub_ = \"52\" AND total_goals < 5", "question": "What division has the highest FA Cup Goals, but a Total Goal score less than 5, and a Total Apps of 52?", "context": "CREATE TABLE table_name_85 (fa_cup_goals INTEGER, total_apps__sub_ VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT AVG(fl_cup_apps__sub_) FROM table_name_93 WHERE fl_cup_goals > 0 AND other_apps < 0", "question": "What is the average FL Cup Apps, with a FL Cup Goals greater than 0, but a Other Apps less than 0?", "context": "CREATE TABLE table_name_93 (fl_cup_apps__sub_ INTEGER, fl_cup_goals VARCHAR, other_apps VARCHAR)"}, {"answer": "SELECT COUNT(fl_cup_goals) FROM table_name_28 WHERE division = \"one\" AND other_apps > 3 AND fa_cup_goals > 0", "question": "What is Division One's total number of FL Cup Goals, with an Other Apps greater than 3, and a FA Cup Goals greater than 0?", "context": "CREATE TABLE table_name_28 (fl_cup_goals VARCHAR, fa_cup_goals VARCHAR, division VARCHAR, other_apps VARCHAR)"}, {"answer": "SELECT AVG(other_apps) FROM table_name_76 WHERE division = \"one\" AND league_goals < 1", "question": "What is Division One's average Other Apps, with a League Goal less than 1?", "context": "CREATE TABLE table_name_76 (other_apps INTEGER, division VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_14 WHERE venue = \"victoria park\"", "question": "Who plays at Victoria Park?", "context": "CREATE TABLE table_name_14 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE game > 2 AND opponent = \"indians\"", "question": "What is the score against the indians after game 2?", "context": "CREATE TABLE table_name_76 (score VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_96 WHERE driver = \"piers courage\"", "question": "What is the average grid for piers courage?", "context": "CREATE TABLE table_name_96 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_66 WHERE laps = 53", "question": "Who drove 53 laps?", "context": "CREATE TABLE table_name_66 (driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_72 WHERE time_retired = \"gearbox\" AND driver = \"george eaton\" AND grid < 17", "question": "What is the lap total for george eaton, with a grid under 17 retiring due to gearbox?", "context": "CREATE TABLE table_name_72 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_13 WHERE driver = \"denny hulme\" AND grid < 4", "question": "How many laps for denny hulme with under 4 on the grid?", "context": "CREATE TABLE table_name_13 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_39 WHERE crowd > 5 OFFSET 500", "question": "What was the score of the home team when there were more than 5,500 people in the crowd?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT SUM(crowd) FROM table_name_33 WHERE home_team = \"essendon\"", "question": "What is the sum of Crowd when Essendon was the home team?", "context": "CREATE TABLE table_name_33 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_8 WHERE away_team = \"north melbourne\"", "question": "What was the home team score when North Melbourne was the away team?", "context": "CREATE TABLE table_name_8 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT us_hot_100 FROM table_name_29 WHERE year = 2002 AND album = \"west coast bad boyz, vol. 3: poppin' collars\"", "question": "What is the U.S. Hot 100 chart number of the single off of the 2002 album west coast bad boyz, vol. 3: poppin' collars?", "context": "CREATE TABLE table_name_29 (us_hot_100 VARCHAR, year VARCHAR, album VARCHAR)"}, {"answer": "SELECT us_rap FROM table_name_98 WHERE album = \"west coast bad boyz, vol. 3: poppin' collars\"", "question": "What is the U.S. Rap chart number of the album west coast bad boyz, vol. 3: poppin' collars?", "context": "CREATE TABLE table_name_98 (us_rap VARCHAR, album VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_46 WHERE team = \"baltimore bullets\" AND pick > 6", "question": "What is the top round for the baltimore bullets with a Pick larger than 6?", "context": "CREATE TABLE table_name_46 (round INTEGER, team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_84 WHERE venue = \"lake oval\"", "question": "What team was the away team when they played at lake oval?", "context": "CREATE TABLE table_name_84 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_3 WHERE home_team = \"north melbourne\"", "question": "How many people were in the crowd when North Melbourne was the home team?", "context": "CREATE TABLE table_name_3 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(avg) FROM table_name_76 WHERE player = \"craig whelihan\" AND yards < 0", "question": "What is Craig Whelihan's average when his yards are smaller than 0?", "context": "CREATE TABLE table_name_76 (avg INTEGER, player VARCHAR, yards VARCHAR)"}, {"answer": "SELECT MAX(avg) FROM table_name_83 WHERE yards = 1229", "question": "Which largest average had 1229 yards?", "context": "CREATE TABLE table_name_83 (avg INTEGER, yards VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_8 WHERE circuit = \"silverstone\"", "question": "What is the constructor where the circuit is Silverstone?", "context": "CREATE TABLE table_name_8 (constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_42 WHERE race_name = \"viii gran premio di siracusa\"", "question": "Who is the Winning Driver in the race viii gran premio di siracusa?", "context": "CREATE TABLE table_name_42 (winning_driver VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE winning_driver = \"stirling moss\" AND race_name = \"vi grand prix de caen\"", "question": "What is the date that the winner driver is Stirling Moss in the race named vi grand prix de caen?", "context": "CREATE TABLE table_name_91 (date VARCHAR, winning_driver VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT state FROM table_name_55 WHERE location = \"39.1178\u00b0n 106.4454\u00b0w\"", "question": "Which state is the location of 39.1178\u00b0n 106.4454\u00b0w in?", "context": "CREATE TABLE table_name_55 (state VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_12 WHERE mountain_peak = \"mount elbert\"", "question": "What is the highest rank Mount Elbert has?", "context": "CREATE TABLE table_name_12 (rank INTEGER, mountain_peak VARCHAR)"}, {"answer": "SELECT mountain_range FROM table_name_3 WHERE location = \"37.3934\u00b0n 104.9201\u00b0w\"", "question": "What is the mountain range at 37.3934\u00b0n 104.9201\u00b0w?", "context": "CREATE TABLE table_name_3 (mountain_range VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_77 WHERE mountain_peak = \"blanca peak\"", "question": "What is the location of Blanca Peak?", "context": "CREATE TABLE table_name_77 (location VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT state FROM table_name_4 WHERE mountain_peak = \"west spanish peak\"", "question": "Which state is West Spanish Peak in?", "context": "CREATE TABLE table_name_4 (state VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT mountain_range FROM table_name_59 WHERE rank = 5", "question": "What is the ranked 5 mountain range?", "context": "CREATE TABLE table_name_59 (mountain_range VARCHAR, rank VARCHAR)"}, {"answer": "SELECT district_residence FROM table_name_4 WHERE name = \"choice b. randell\"", "question": "Name of choice b. Randell is the name of which District Residence?", "context": "CREATE TABLE table_name_4 (district_residence VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_32 WHERE took_office = \"march 4, 1903\"", "question": "Who has a Took Office of march 4, 1903?", "context": "CREATE TABLE table_name_32 (name VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT took_office FROM table_name_30 WHERE party = \"democrat\" AND name = \"john hancock\"", "question": "Which Took Office that has a Party of democrat, under the name of John Hancock", "context": "CREATE TABLE table_name_30 (took_office VARCHAR, party VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_67 WHERE took_office = \"march 4, 1875\"", "question": "Who has Took Office of march 4, 1875?", "context": "CREATE TABLE table_name_67 (name VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT record FROM table_name_89 WHERE date = \"june 22\"", "question": "Name the record on june 22", "context": "CREATE TABLE table_name_89 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_50 WHERE visitor = \"bulls\"", "question": "Name the total number in attendance for when the bulls visited", "context": "CREATE TABLE table_name_50 (attendance VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT MAX(swimsuit) FROM table_name_1 WHERE interview < 8.46", "question": "Name the most swimsuit for interview less than 8.46", "context": "CREATE TABLE table_name_1 (swimsuit INTEGER, interview INTEGER)"}, {"answer": "SELECT MAX(evening_gown) FROM table_name_38 WHERE average < 8.793 AND swimsuit < 8.12 AND interview = 8.51", "question": "Name the most evening gown for average less than 8.793 with interview of 8.51 and swimsuit less than 8.12", "context": "CREATE TABLE table_name_38 (evening_gown INTEGER, interview VARCHAR, average VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT AVG(starts) FROM table_name_86 WHERE wins < 0", "question": "On average, how many Starts have Wins that are smaller than 0?", "context": "CREATE TABLE table_name_86 (starts INTEGER, wins INTEGER)"}, {"answer": "SELECT MAX(top_10s) FROM table_name_53 WHERE starts = 14", "question": "Which of the top-10s has a starts value of 14?", "context": "CREATE TABLE table_name_53 (top_10s INTEGER, starts VARCHAR)"}, {"answer": "SELECT SUM(starts) FROM table_name_52 WHERE tournament = \"hsbc champions\" AND wins < 0", "question": "In the tournament of HSBC Champions, what was the sum of the Starts with Wins lower than 0?", "context": "CREATE TABLE table_name_52 (starts INTEGER, tournament VARCHAR, wins VARCHAR)"}, {"answer": "SELECT trainer FROM table_name_93 WHERE odds > 36 AND post = 11", "question": "Who trained the horse on post 11 with over 36 odds?", "context": "CREATE TABLE table_name_93 (trainer VARCHAR, odds VARCHAR, post VARCHAR)"}, {"answer": "SELECT MIN(post) FROM table_name_31 WHERE jockey = \"calvin borel\"", "question": "What is the lowest post number for calvin borel?", "context": "CREATE TABLE table_name_31 (post INTEGER, jockey VARCHAR)"}, {"answer": "SELECT horse FROM table_name_43 WHERE jockey = \"jara\"", "question": "What horse for jara?", "context": "CREATE TABLE table_name_43 (horse VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE leading_scorer = \"lebron james (25)\"", "question": "What is the date when Lebron James (25) was the lead scorer?", "context": "CREATE TABLE table_name_90 (date VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_29 WHERE gold < 0", "question": "Which Total has a Gold smaller than 0?", "context": "CREATE TABLE table_name_29 (total INTEGER, gold INTEGER)"}, {"answer": "SELECT AVG(bronze) FROM table_name_82 WHERE gold < 0", "question": "Which Bronze has a Gold smaller than 0?", "context": "CREATE TABLE table_name_82 (bronze INTEGER, gold INTEGER)"}, {"answer": "SELECT tc FROM table_name_40 WHERE wins = 1 AND races = 21", "question": "Which T.C. has a Win of 1, and a Race of 21?", "context": "CREATE TABLE table_name_40 (tc VARCHAR, wins VARCHAR, races VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_67 WHERE drivers = \"ben hanley\" AND flaps < 0", "question": "How many years have Drivers of ben hanley, and Flaps smaller than 0?", "context": "CREATE TABLE table_name_67 (year VARCHAR, drivers VARCHAR, flaps VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_97 WHERE drivers = \"adri\u00e1n vall\u00e9s\" AND year > 2006", "question": "How many Points have Drivers of adri\u00e1n vall\u00e9s, and a Year larger than 2006?", "context": "CREATE TABLE table_name_97 (points INTEGER, drivers VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(poles) FROM table_name_27 WHERE drivers = \"juan cruz \u00e1lvarez\" AND flaps > 0", "question": "How many Poles have Drivers of juan cruz \u00e1lvarez, and FLaps larger than 0?", "context": "CREATE TABLE table_name_27 (poles INTEGER, drivers VARCHAR, flaps VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_52 WHERE venue = \"victoria park\"", "question": "Who was the away team at Victoria Park?", "context": "CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT name FROM table_name_41 WHERE number < 6 AND date < 1993", "question": "What is the name of the train numbered less than 6 before 1993?", "context": "CREATE TABLE table_name_41 (name VARCHAR, number VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_31 WHERE number < 5 AND type = \"bo-bodh\"", "question": "What is the name of the bo-bodh train with a number less than 5?", "context": "CREATE TABLE table_name_31 (name VARCHAR, number VARCHAR, type VARCHAR)"}, {"answer": "SELECT record FROM table_name_41 WHERE visitor = \"st. louis\"", "question": "Name the record when the visitor is st. louis", "context": "CREATE TABLE table_name_41 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE visitor = \"calgary\"", "question": "What was the scory when calgary was visiting?", "context": "CREATE TABLE table_name_10 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT home FROM table_name_12 WHERE visitor = \"dallas\" AND date = \"february 2\"", "question": "Name the home when the visitor was dallas on february 2", "context": "CREATE TABLE table_name_12 (home VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE decision = \"turco\" AND home = \"st. louis\"", "question": "Name the date for turco decision and home of st. louis", "context": "CREATE TABLE table_name_5 (date VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT rider FROM table_name_84 WHERE speed = \"104.630mph\"", "question": "Which rider had a speed of 104.630mph?", "context": "CREATE TABLE table_name_84 (rider VARCHAR, speed VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_59 WHERE time = \"1:05.14.10\"", "question": "What is the best rank with a time of 1:05.14.10?", "context": "CREATE TABLE table_name_59 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_71 WHERE final_score = \"35-62\"", "question": "Where was the game played when the final score was 35-62?", "context": "CREATE TABLE table_name_71 (stadium VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_99 WHERE stadium = \"candlestick park\"", "question": "During the game at Candlestick Park, who was the visiting team?", "context": "CREATE TABLE table_name_99 (visiting_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_12 WHERE final_score = \"14-34\"", "question": "Which visiting team had a final score of 14-34?", "context": "CREATE TABLE table_name_12 (visiting_team VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_78 WHERE visiting_team = \"cincinnati bengals\"", "question": "What was the final score in the game against the Cincinnati Bengals?", "context": "CREATE TABLE table_name_78 (final_score VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_10 WHERE host_team = \"dallas cowboys\"", "question": "Who was the visiting team in the game against the Dallas Cowboys?", "context": "CREATE TABLE table_name_10 (visiting_team VARCHAR, host_team VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_93 WHERE outcome = \"runner-up\" AND opponent = \"ma\u0161a zec pe\u0161kiri\u010d\"", "question": "Which tournament has an Outcome of runner-up, and an Opponent of ma\u0161a zec pe\u0161kiri\u010d?", "context": "CREATE TABLE table_name_93 (tournament VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_45 WHERE score = \"6\u20134, 6\u20132\"", "question": "Which surface has a Score of 6\u20134, 6\u20132?", "context": "CREATE TABLE table_name_45 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_57 WHERE date = \"22 august 2006\"", "question": "Which surface has a Date of 22 august 2006?", "context": "CREATE TABLE table_name_57 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_95 WHERE outcome = \"runner-up\" AND surface = \"hard\" AND score = \"6\u20134, 6\u20132\"", "question": "Which tournament has an Outcome of runner-up, a Surface of hard, and a Score of 6\u20134, 6\u20132?", "context": "CREATE TABLE table_name_95 (tournament VARCHAR, score VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_37 WHERE opponent = \"marina erakovic\"", "question": "What is the outcome with marina erakovic as opponent?", "context": "CREATE TABLE table_name_37 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_53 WHERE outcome = \"winner\" AND opponent = \"dia evtimova\"", "question": "Which tournament has an Outcome of winner, and a Opponent of dia evtimova?", "context": "CREATE TABLE table_name_53 (tournament VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT title FROM table_name_5 WHERE time = \"3:22\"", "question": "What title runs for 3:22?", "context": "CREATE TABLE table_name_5 (title VARCHAR, time VARCHAR)"}, {"answer": "SELECT author_s_ FROM table_name_35 WHERE time = \"2:22\"", "question": "Who wrote the song that runs for 2:22?", "context": "CREATE TABLE table_name_35 (author_s_ VARCHAR, time VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_74 WHERE laps = 66", "question": "What Constructor had 66 Laps?", "context": "CREATE TABLE table_name_74 (constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_30 WHERE laps > 78", "question": "With Laps greater than 78, what is the lowest Grid?", "context": "CREATE TABLE table_name_30 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT AVG(laps) FROM table_name_71 WHERE driver = \"john watson\" AND grid < 11", "question": "How many Laps with a Grid smaller than 11 did John Watson have?", "context": "CREATE TABLE table_name_71 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_42 WHERE driver = \"niki lauda\" AND grid < 3", "question": "How many Laps with a Grid smaller than 3 did Driver NIki Lauda have?", "context": "CREATE TABLE table_name_42 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_21 WHERE time_retired = \"steering\" AND laps < 15", "question": "What is the low grid total for a retired due to steering in under 15 laps?", "context": "CREATE TABLE table_name_21 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_27 WHERE time_retired = \"+5 laps\"", "question": "What is the average laps that had a time/retired of +5 laps?", "context": "CREATE TABLE table_name_27 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE location = \"wonju chiak indoor gym, south korea\"", "question": "Which Opponent has Location Wonju Chiak Indoor Gym, South Korea?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_60 WHERE opponent = \"paul cahoon\" AND location = \"amsterdam, netherlands\"", "question": "Which is the lowest Round with the Opponent, Paul Cahoon and Location, Amsterdam, Netherlands?", "context": "CREATE TABLE table_name_60 (round INTEGER, opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT event FROM table_name_15 WHERE opponent = \"bernard ackah\"", "question": "Which Event has the Opponent, Bernard Ackah?", "context": "CREATE TABLE table_name_15 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT launched FROM table_name_91 WHERE laid_down = \"14 august 1942\"", "question": "when was the destroyer launched when it was laid down on 14 august 1942?", "context": "CREATE TABLE table_name_91 (launched VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT launched FROM table_name_57 WHERE builder = \"john brown, clydebank\"", "question": "what is the launched date when the builder is john brown, clydebank?", "context": "CREATE TABLE table_name_57 (launched VARCHAR, builder VARCHAR)"}, {"answer": "SELECT pennant FROM table_name_23 WHERE builder = \"yarrow, scotstoun\"", "question": "what is the pennant when the builder is yarrow, scotstoun?", "context": "CREATE TABLE table_name_23 (pennant VARCHAR, builder VARCHAR)"}, {"answer": "SELECT name FROM table_name_37 WHERE laid_down = \"28 february 1943\"", "question": "what is the name when the laid down is 28 february 1943?", "context": "CREATE TABLE table_name_37 (name VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT commissioned FROM table_name_88 WHERE builder = \"scotts, greenock\"", "question": "when was it commissioned when the destroyer was built by scotts, greenock?", "context": "CREATE TABLE table_name_88 (commissioned VARCHAR, builder VARCHAR)"}, {"answer": "SELECT launched FROM table_name_55 WHERE laid_down = \"14 august 1942\"", "question": "when was the launched date when the laid down date is 14 august 1942?", "context": "CREATE TABLE table_name_55 (launched VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT record FROM table_name_82 WHERE week < 13 AND date = \"july 12\"", "question": "What was the record for a week below 13 on July 12?", "context": "CREATE TABLE table_name_82 (record VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_92 WHERE final_score = \"w 30 \u2013 5\"", "question": "What location had a final score of W 30 \u2013 5?", "context": "CREATE TABLE table_name_92 (location VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT label FROM table_name_48 WHERE catalog = \"ch-9196\"", "question": "Which label had a catalog designation of ch-9196?", "context": "CREATE TABLE table_name_48 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_95 WHERE catalog = \"21-382a\"", "question": "Which format's catalog designation was 21-382a?", "context": "CREATE TABLE table_name_95 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_66 WHERE date = \"1984\"", "question": "Which catalog had a date year of 1984?", "context": "CREATE TABLE table_name_66 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_32 WHERE label = \"london records\"", "question": "Which format was under the London Records label?", "context": "CREATE TABLE table_name_32 (format VARCHAR, label VARCHAR)"}, {"answer": "SELECT label FROM table_name_17 WHERE region = \"united kingdom\"", "question": "Which label was in the United Kingdom region?", "context": "CREATE TABLE table_name_17 (label VARCHAR, region VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE catalog = \"ha-m 2230\"", "question": "Which date had the catalog designation of ha-m 2230?", "context": "CREATE TABLE table_name_37 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT MAX(goals_conceded__gc_) FROM table_name_84 WHERE draw__pe_ = 2 AND goals_scored__gf_ > 29 AND ____dif_ > 15", "question": "What is the maximum goals conceded for a team with 2 draws, more than 29 goals and a diff larger than 15?", "context": "CREATE TABLE table_name_84 (goals_conceded__gc_ INTEGER, ____dif_ VARCHAR, draw__pe_ VARCHAR, goals_scored__gf_ VARCHAR)"}, {"answer": "SELECT SUM(points__pts_) FROM table_name_84 WHERE won__pg_ > 9 AND goals_scored__gf_ > 40", "question": "What is the points for a team with more than 9 wins and more than 40 goals?", "context": "CREATE TABLE table_name_84 (points__pts_ INTEGER, won__pg_ VARCHAR, goals_scored__gf_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_90 WHERE competition = \"2012 africa cup of nations\"", "question": "What was the score of the game played in the 2012 Africa Cup of Nations?", "context": "CREATE TABLE table_name_90 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE competition = \"friendly\"", "question": "What is the score of the friendly competition?", "context": "CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_28 WHERE date = \"9 february 2011\"", "question": "What venue was the game played on 9 February 2011 played at?", "context": "CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE home = \"ny rangers\"", "question": "What date did NY Rangers play at home?", "context": "CREATE TABLE table_name_12 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE decision = \"smith\" AND visitor = \"colorado\"", "question": "What is the score of Colorado when they were a visitor and had a Smith decision?", "context": "CREATE TABLE table_name_32 (score VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_50 WHERE score = \"3\u20136, 6\u20133, [10\u20134]\"", "question": "Who is the runner up when the score was 3\u20136, 6\u20133, [10\u20134]?", "context": "CREATE TABLE table_name_50 (runner_up VARCHAR, score VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_92 WHERE tournament = \"s\u00e3o paulo\"", "question": "What is the name of the runner up in the Tournament of s\u00e3o paulo?", "context": "CREATE TABLE table_name_92 (runner_up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_94 WHERE winner = \"thomas enqvist\" AND runner_up = \"guy forget\"", "question": "What person is in the third place when Thomas Enqvist won and a Runner-up was guy forget?", "context": "CREATE TABLE table_name_94 (third_place VARCHAR, winner VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_15 WHERE runner_up = \"thomas enqvist\"", "question": "What tournament was Thomas Enqvist runner up?", "context": "CREATE TABLE table_name_15 (tournament VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_18 WHERE third_place = \"yevgeny kafelnikov\" AND score = \"3\u20136, 6\u20134, [10\u20133]\"", "question": "What is the name of the runner up when yevgeny kafelnikov was third place and the score was 3\u20136, 6\u20134, [10\u20133]?", "context": "CREATE TABLE table_name_18 (runner_up VARCHAR, third_place VARCHAR, score VARCHAR)"}, {"answer": "SELECT winner FROM table_name_65 WHERE third_place = \"goran ivani\u0161evi\u0107\"", "question": "What is the name of the winner when Goran Ivani\u0161evi\u0107 was in third place?", "context": "CREATE TABLE table_name_65 (winner VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT analog_channel FROM table_name_31 WHERE digital_channel = \"4.1\"", "question": "Which analog channel has a digital channel of 4.1?", "context": "CREATE TABLE table_name_31 (analog_channel VARCHAR, digital_channel VARCHAR)"}, {"answer": "SELECT digital_channel FROM table_name_65 WHERE name = \"storm tracker\"", "question": "Which digital channel is named Storm Tracker?", "context": "CREATE TABLE table_name_65 (digital_channel VARCHAR, name VARCHAR)"}, {"answer": "SELECT analog_channel FROM table_name_16 WHERE network = \"fox\"", "question": "Which analog channel is Fox on?", "context": "CREATE TABLE table_name_16 (analog_channel VARCHAR, network VARCHAR)"}, {"answer": "SELECT area_president__quorum_ FROM table_name_44 WHERE area_name = \"south america south\"", "question": "Name the area president when the area name is south america south", "context": "CREATE TABLE table_name_44 (area_president__quorum_ VARCHAR, area_name VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_66 WHERE time_retired = \"+2 laps\" AND laps < 70", "question": "Tell me the total number of Grid for Time/Retired of +2 Laps and Laps less than 70", "context": "CREATE TABLE table_name_66 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT year FROM table_name_13 WHERE actress = \"shelley winters\"", "question": "What year did Shelley Winters win?", "context": "CREATE TABLE table_name_13 (year VARCHAR, actress VARCHAR)"}, {"answer": "SELECT superlative FROM table_name_92 WHERE year > 1984 AND actress = \"gloria stuart\"", "question": "Which award was won by Gloria Stuart after 1984?", "context": "CREATE TABLE table_name_92 (superlative VARCHAR, year VARCHAR, actress VARCHAR)"}, {"answer": "SELECT superlative FROM table_name_56 WHERE actress = \"thelma ritter\"", "question": "Which award has Thelma Ritter won?", "context": "CREATE TABLE table_name_56 (superlative VARCHAR, actress VARCHAR)"}, {"answer": "SELECT MIN(points_diff) FROM table_name_37 WHERE against < 578 AND lost = 15 AND points > 26", "question": "I want the lowest points diff for against being less than 578 and lost being 15 and points more than 26", "context": "CREATE TABLE table_name_37 (points_diff INTEGER, points VARCHAR, against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_75 WHERE against = 753 AND points_diff > -114", "question": "I want the total number of points for against of 753 and points diff more than -114", "context": "CREATE TABLE table_name_75 (points VARCHAR, against VARCHAR, points_diff VARCHAR)"}, {"answer": "SELECT week FROM table_name_59 WHERE attendance = \"75,866\"", "question": "In What Week was the Attendance 75,866?", "context": "CREATE TABLE table_name_59 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_49 WHERE attendance = \"74,246\"", "question": "What Opponent has an Attendance of 74,246?", "context": "CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE week = 1", "question": "What Date is Week 1?", "context": "CREATE TABLE table_name_54 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT team FROM table_name_80 WHERE losses = \"7\" AND goals_for = 55", "question": "Which team had 7 losses and 55 goals?", "context": "CREATE TABLE table_name_80 (team VARCHAR, losses VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MIN(1995) FROM table_name_14 WHERE 1990 = 441 AND 1985 < 359", "question": "What is the 1995 GDP when 1990 GDP is 441 and 1985 GDP is less than 359?", "context": "CREATE TABLE table_name_14 (Id VARCHAR)"}, {"answer": "SELECT MAX(1985) FROM table_name_88 WHERE 1990 < 267 AND 2000 = 333 AND 2005 < 658", "question": "What is the maximum 1985 GDP for the region where 1990 GDP is less than 267, 2000 GDP is 333 and 2005 GDP is less than 658?", "context": "CREATE TABLE table_name_88 (Id VARCHAR)"}, {"answer": "SELECT COUNT(code) FROM table_name_99 WHERE type = \"v\" AND population > 7 OFFSET 747", "question": "When populatioin is greater than 7,747 and the type is V, what is the sum of code?", "context": "CREATE TABLE table_name_99 (code VARCHAR, type VARCHAR, population VARCHAR)"}, {"answer": "SELECT name FROM table_name_24 WHERE ties = 5", "question": "Who has ties of 5?", "context": "CREATE TABLE table_name_24 (name VARCHAR, ties VARCHAR)"}, {"answer": "SELECT venue FROM table_name_95 WHERE away_team = \"st kilda\"", "question": "Where did st kilda play as the away team?", "context": "CREATE TABLE table_name_95 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_66 WHERE home_team = \"essendon\"", "question": "How big of a crowd does the home team of essendon have?", "context": "CREATE TABLE table_name_66 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT mlb_draft FROM table_name_80 WHERE school = \"seton hall preparatory school\"", "question": "What is the MLB Draft status of the person who attended Seton Hall Preparatory School?", "context": "CREATE TABLE table_name_80 (mlb_draft VARCHAR, school VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_64 WHERE school = \"kennedy-kenrick catholic high school\"", "question": "Where is the Hometown of the person that attended Kennedy-Kenrick Catholic High School?", "context": "CREATE TABLE table_name_64 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT player FROM table_name_8 WHERE school = \"george washington high school\"", "question": "Which Player attended George Washington High School?", "context": "CREATE TABLE table_name_8 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_40 WHERE school = \"camarillo high school\"", "question": "Where is the Hometown that the person who attended Camarillo High School is from?", "context": "CREATE TABLE table_name_40 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_99 WHERE away_team = \"carlton\"", "question": "How many people in total have attended games where carlton played as away?", "context": "CREATE TABLE table_name_99 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_73 WHERE long < 15 AND avg = 6", "question": "Which player has a long of less than 15 and an average of 6 yards.", "context": "CREATE TABLE table_name_73 (player VARCHAR, long VARCHAR, avg VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_name_29 WHERE player = \"troy hudson\"", "question": "What years did Troy Hudson play for the Jazz?", "context": "CREATE TABLE table_name_29 (years_for_jazz VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_69 WHERE school_club_team = \"iowa state\"", "question": "What Nationality is the Iowa State team?", "context": "CREATE TABLE table_name_69 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_14 WHERE player = \"jeff hornacek\"", "question": "What Nationality is Jeff Hornacek?", "context": "CREATE TABLE table_name_14 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_16 WHERE school_club_team = \"colorado\"", "question": "What Nationality is the Colorado State team?", "context": "CREATE TABLE table_name_16 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_96 WHERE school_club_team = \"southern illinois\"", "question": "What Player is from the Southern Illinois team?", "context": "CREATE TABLE table_name_96 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_name_53 WHERE player = \"eddie hughes\"", "question": "What years did Eddie Hughes play for the Jazz?", "context": "CREATE TABLE table_name_53 (years_for_jazz VARCHAR, player VARCHAR)"}, {"answer": "SELECT species FROM table_name_63 WHERE threat_level = \"medium\"", "question": "Which Species has a medium Threat Level?", "context": "CREATE TABLE table_name_63 (species VARCHAR, threat_level VARCHAR)"}, {"answer": "SELECT overview FROM table_name_79 WHERE threat_level = \"medium\"", "question": "What is the Overview with a medium Threat Level?", "context": "CREATE TABLE table_name_79 (overview VARCHAR, threat_level VARCHAR)"}, {"answer": "SELECT threat_level FROM table_name_72 WHERE overview = \"rabbits in australia\"", "question": "What is the Threat Levels with Rabbits in Australia?", "context": "CREATE TABLE table_name_72 (threat_level VARCHAR, overview VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_81 WHERE award = \"drama desk award\" AND result = \"won\" AND category = \"outstanding choreography\"", "question": "Which nominee won the Drama Desk Award for outstanding choreography?", "context": "CREATE TABLE table_name_81 (nominee VARCHAR, category VARCHAR, award VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_98 WHERE nominee = \"best revival of a musical\"", "question": "When was the last time a nominee for Best Revival of a Musical was selected?", "context": "CREATE TABLE table_name_98 (year INTEGER, nominee VARCHAR)"}, {"answer": "SELECT award FROM table_name_57 WHERE category = \"outstanding revival of a musical\"", "question": "Which Award is the winner for Outstanding Revival of a Musical given?", "context": "CREATE TABLE table_name_57 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_20 WHERE away_team = \"south melbourne\"", "question": "Who is the home team in the game where South Melbourne was the away team?", "context": "CREATE TABLE table_name_20 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_90 WHERE week > 10 AND opponent = \"new england patriots\"", "question": "I want the result for week larger than 10 for opponent of new england patriots", "context": "CREATE TABLE table_name_90 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_17 WHERE week = 11", "question": "I want the game site for week of 11", "context": "CREATE TABLE table_name_17 (game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_6 WHERE constructor = \"arrows\" AND driver = \"mika salo\" AND grid > 13", "question": "What is the average number of laps for mika salo's arrows car with a grid over 13?", "context": "CREATE TABLE table_name_6 (laps INTEGER, grid VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_38 WHERE grid = 7", "question": "Who drove the car with a grid of 7?", "context": "CREATE TABLE table_name_38 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT report FROM table_name_72 WHERE date = \"9 march\"", "question": "Which Report is Dated 9 March?", "context": "CREATE TABLE table_name_72 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_26 WHERE opponent = \"hamilton academical\"", "question": "When Hamilton Academical is the Opponent, what is the total Attendance?", "context": "CREATE TABLE table_name_26 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_57 WHERE loss = \"volquez (1\u20134)\"", "question": "How many in attendance with a loss of volquez (1\u20134)?", "context": "CREATE TABLE table_name_57 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_15 WHERE score = \"9\u20136\"", "question": "What record has a Score of 9\u20136?", "context": "CREATE TABLE table_name_15 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_23 WHERE date = \"september 16\"", "question": "What is the average number in attendance on September 16?", "context": "CREATE TABLE table_name_23 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_49 WHERE date = \"september 8\"", "question": "What is the sum of people in attendance on September 8?", "context": "CREATE TABLE table_name_49 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT cws_best_finish FROM table_name_25 WHERE head_coach = \"jim morris\"", "question": "What was Head Coach Jim Morris's best finish?", "context": "CREATE TABLE table_name_25 (cws_best_finish VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT record FROM table_name_45 WHERE visitor = \"montreal canadiens\"", "question": "What is the record when the visiting team was the montreal canadiens?", "context": "CREATE TABLE table_name_45 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT nation FROM table_name_83 WHERE points = 187.84", "question": "What nation has 187.84 points?", "context": "CREATE TABLE table_name_83 (nation VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_90 WHERE places = \"81\"", "question": "What is the low point total for teams with 81 places?", "context": "CREATE TABLE table_name_90 (points INTEGER, places VARCHAR)"}, {"answer": "SELECT station_number FROM table_name_40 WHERE location = \"dogsthorpe\"", "question": "What is the station number of the station at Dogsthorpe?", "context": "CREATE TABLE table_name_40 (station_number VARCHAR, location VARCHAR)"}, {"answer": "SELECT type FROM table_name_92 WHERE appliances = \"1 wrl\" AND location = \"linton\"", "question": "What is the type of the station with a 1 wrl appliance in Linton?", "context": "CREATE TABLE table_name_92 (type VARCHAR, appliances VARCHAR, location VARCHAR)"}, {"answer": "SELECT appliances FROM table_name_69 WHERE location = \"st neots\"", "question": "What is the appliance at the station in St Neots?", "context": "CREATE TABLE table_name_69 (appliances VARCHAR, location VARCHAR)"}, {"answer": "SELECT registrations FROM table_name_67 WHERE district = \"cambridge\"", "question": "What is the registration of the station at Cambridge?", "context": "CREATE TABLE table_name_67 (registrations VARCHAR, district VARCHAR)"}, {"answer": "SELECT location FROM table_name_85 WHERE district = \"huntingdonshire\" AND station_number = \"c17\"", "question": "What is the location of the station at Huntingdonshire with a station number of c17?", "context": "CREATE TABLE table_name_85 (location VARCHAR, district VARCHAR, station_number VARCHAR)"}, {"answer": "SELECT registrations FROM table_name_27 WHERE type = \"retained\" AND station_number = \"c03\"", "question": "What is the registration of the station with a retained type and a station number of c03?", "context": "CREATE TABLE table_name_27 (registrations VARCHAR, type VARCHAR, station_number VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_46 WHERE round > 4", "question": "Name the nationality of the player with round more than 4", "context": "CREATE TABLE table_name_46 (nationality VARCHAR, round INTEGER)"}, {"answer": "SELECT SUM(year) FROM table_name_42 WHERE rank = \"14.0 14\"", "question": "In what Year was the Rank 14.0 14?", "context": "CREATE TABLE table_name_42 (year INTEGER, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_90 WHERE year > 1971 AND floors < 35 AND height_ft__m_ = \"19.0 477 (145)\"", "question": "After 1971, what is the Rank with a Height ft (m) of 19.0 477 (145) and less than 35 Floors?", "context": "CREATE TABLE table_name_90 (rank VARCHAR, height_ft__m_ VARCHAR, year VARCHAR, floors VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_52 WHERE rank = \"12.0 12\"", "question": "What Year has a Rank of 12.0 12?", "context": "CREATE TABLE table_name_52 (year INTEGER, rank VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_76 WHERE venue = \"vfl park\"", "question": "What did the away team score at VFL Park?", "context": "CREATE TABLE table_name_76 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_1 WHERE venue = \"lake oval\"", "question": "How many people watched the game at Lake Oval?", "context": "CREATE TABLE table_name_1 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT AVG(comp) FROM table_name_3 WHERE player = \"gino guidugli\" AND rating > 92.2", "question": "What was the Comp average, having Gino Guidugli as a player and a rating of more than 92.2?", "context": "CREATE TABLE table_name_3 (comp INTEGER, player VARCHAR, rating VARCHAR)"}, {"answer": "SELECT MAX(att) FROM table_name_9 WHERE yards < 138 AND comp > 0", "question": "For the player with yards less than 138, and Comp more than 0, what was the highest Att.?", "context": "CREATE TABLE table_name_9 (att INTEGER, yards VARCHAR, comp VARCHAR)"}, {"answer": "SELECT laps FROM table_name_49 WHERE grid = 9", "question": "How many laps for grid of 9?", "context": "CREATE TABLE table_name_49 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_68 WHERE grid < 6 AND time_retired = \"halfshaft\"", "question": "What is the high lap total for a grid less than 6, and a Time/Retired of halfshaft?", "context": "CREATE TABLE table_name_68 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_96 WHERE score = \"3\u20132\"", "question": "What is the Set 1 with a Score with 3\u20132?", "context": "CREATE TABLE table_name_96 (set_1 VARCHAR, score VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_6 WHERE set_2 = \"15\u20135\" AND set_3 = \"15\u20133\"", "question": "What is the Set 1 with a Set 2 of 15\u20135, and a Set 3 with 15\u20133?", "context": "CREATE TABLE table_name_6 (set_1 VARCHAR, set_2 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE set_1 = \"15\u20131\"", "question": "What is the Date with a Set 1 with 15\u20131?", "context": "CREATE TABLE table_name_79 (date VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_33 WHERE date = \"04 oct\" AND set_2 = \"15\u20135\"", "question": "What is the Set 3 with a Date of 04 oct, and a Set 2 with 15\u20135?", "context": "CREATE TABLE table_name_33 (set_3 VARCHAR, date VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_58 WHERE set_2 = \"15\u20136\"", "question": "What is the Set 3 with a Set 2 with 15\u20136?", "context": "CREATE TABLE table_name_58 (set_3 VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_6 WHERE total = \"45\u201312\" AND set_3 = \"15\u20132\"", "question": "What is the Set 2 with a Total of 45\u201312, and a Set 3 with 15\u20132?", "context": "CREATE TABLE table_name_6 (set_2 VARCHAR, total VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_5 WHERE time_retired = \"+6.077\" AND laps < 26", "question": "What was the grid associated with under 26 laps and a Time/Retired of +6.077?", "context": "CREATE TABLE table_name_5 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT lead FROM table_name_61 WHERE date_s__conducted = \"5 may 2011\"", "question": "On 5 May 2011, what was the lead percentage?", "context": "CREATE TABLE table_name_61 (lead VARCHAR, date_s__conducted VARCHAR)"}, {"answer": "SELECT date_s__conducted FROM table_name_25 WHERE lead = \"8.6%\"", "question": "On what date was the lead 8.6%?", "context": "CREATE TABLE table_name_25 (date_s__conducted VARCHAR, lead VARCHAR)"}, {"answer": "SELECT lifespan FROM table_name_56 WHERE imperial = \"7ft 8 in\" AND nationality = \"fiji\"", "question": "what is the lifespan when the imperial height is 7ft 8 in and the nationality is fiji?", "context": "CREATE TABLE table_name_56 (lifespan VARCHAR, imperial VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_21 WHERE metric = \"2.36m\" AND name = \"sun ming-ming\"", "question": "what is the nationality with the metric height of 2.36m named sun ming-ming?", "context": "CREATE TABLE table_name_21 (nationality VARCHAR, metric VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_83 WHERE time_retired = \"engine\" AND driver = \"teo fabi\" AND laps < 39", "question": "What is the grid total that had a retired for engine, teo fabi driving, and under 39 laps?", "context": "CREATE TABLE table_name_83 (grid INTEGER, laps VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_26 WHERE driver = \"johnny dumfries\" AND laps < 8", "question": "What is the average grid for johnny dumfries with less than 8 laps?", "context": "CREATE TABLE table_name_26 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_44 WHERE constructor = \"minardi - motori moderni\" AND grid < 18", "question": "What is the low lap total for minardi - motori moderni, and a Grid smaller than 18?", "context": "CREATE TABLE table_name_44 (laps INTEGER, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_61 WHERE grid = 12", "question": "What constructor has a 12 grid?", "context": "CREATE TABLE table_name_61 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_24 WHERE swimsuit > 9.437", "question": "What is the average where the swimsuit is larger than 9.437?", "context": "CREATE TABLE table_name_24 (average INTEGER, swimsuit INTEGER)"}, {"answer": "SELECT SUM(evening_gown) FROM table_name_84 WHERE interview = 9.22 AND preliminaries > 9.057", "question": "What is the evening gown score where the interview score is 9.22 and the preliminaries are larger than 9.057?", "context": "CREATE TABLE table_name_84 (evening_gown INTEGER, interview VARCHAR, preliminaries VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_88 WHERE swimsuit < 9.109 AND country = \"pennsylvania\" AND evening_gown < 9.163", "question": "What is Pennsylvania's average where the swimsuit is smaller than 9.109 and the evening gown is smaller than 9.163?", "context": "CREATE TABLE table_name_88 (average INTEGER, evening_gown VARCHAR, swimsuit VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(preliminaries) FROM table_name_65 WHERE swimsuit < 9.297 AND evening_gown = 9.617 AND interview > 9.143", "question": "What is the preliminaries score where the swimsuit is smaller than 9.297, the evening gown is 9.617, and the interview is larger than 9.143?", "context": "CREATE TABLE table_name_65 (preliminaries INTEGER, interview VARCHAR, swimsuit VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT screen_pixels FROM table_name_66 WHERE maker = \"amazon.com\" AND weight = \"221g (7.8oz)\"", "question": "For Amazon.com's device with a weight of 221g (7.8oz) how many screen pixels does the device have?", "context": "CREATE TABLE table_name_66 (screen_pixels VARCHAR, maker VARCHAR, weight VARCHAR)"}, {"answer": "SELECT SUM(5 AS k_wins) FROM table_name_14 WHERE runner = \"emily chebet\" AND total > 2", "question": "How many 5K wins did Emily Chebet, who had more than 2 total, have?", "context": "CREATE TABLE table_name_14 (runner VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(5 AS k_wins) FROM table_name_80 WHERE runner = \"emily chebet\" AND total > 2", "question": "How many 5K wins did Emily Chebet, who had more than 2 total, have?", "context": "CREATE TABLE table_name_80 (runner VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(peak_lessons_taught) FROM table_name_95 WHERE evaluation_average__before_april_2009_ = \"4.4\"", "question": "What is the largest number of Peak lessons taught when the Evaluation average (Before April 2009) was 4.4?", "context": "CREATE TABLE table_name_95 (peak_lessons_taught INTEGER, evaluation_average__before_april_2009_ VARCHAR)"}, {"answer": "SELECT evaluation_average__before_april_2009_ FROM table_name_23 WHERE peak_lessons_taught < 80 AND _percentage_of_negative_evaluations = \"0.8%\"", "question": "What is the mean Evaluation number (before April 2009) when the Peak lessons taught was less than 80 and the negative percentage of evaluations was 0.8%?", "context": "CREATE TABLE table_name_23 (evaluation_average__before_april_2009_ VARCHAR, peak_lessons_taught VARCHAR, _percentage_of_negative_evaluations VARCHAR)"}, {"answer": "SELECT evaluation_average__before_april_2009_ FROM table_name_41 WHERE _percentage_of_negative_evaluations = \"0.8%\" AND evaluation_average__from_april_2009_ = \"4.2\"", "question": "What is the mean Evaluation number (Before April 2009) when the percentage of negative evaluations was 0.8% and the mean Evaluation number of April 2009 was 4.2?", "context": "CREATE TABLE table_name_41 (evaluation_average__before_april_2009_ VARCHAR, _percentage_of_negative_evaluations VARCHAR, evaluation_average__from_april_2009_ VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_11 WHERE venue = \"moorabbin oval\"", "question": "What is moorabbin oval's away team?", "context": "CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_57 WHERE driver = \"karl wendlinger\"", "question": "What is Karl Wendlinger's total grid #?", "context": "CREATE TABLE table_name_57 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_13 WHERE home_team = \"fitzroy\"", "question": "Which Home team score had a Home team of Fitzroy?", "context": "CREATE TABLE table_name_13 (home_team VARCHAR)"}, {"answer": "SELECT name FROM table_name_18 WHERE replacement = \"lieve wierinck\"", "question": "Who was replaced by Lieve Wierinck?", "context": "CREATE TABLE table_name_18 (name VARCHAR, replacement VARCHAR)"}, {"answer": "SELECT SUM(gross_tonnage) FROM table_name_75 WHERE material = \"wood\" AND date_commissioned > 1846 AND ship = \"esk\"", "question": "Name the sum of gross tonnage for wood on date more tahn 1846 for comissioned and ship of esk", "context": "CREATE TABLE table_name_75 (gross_tonnage INTEGER, ship VARCHAR, material VARCHAR, date_commissioned VARCHAR)"}, {"answer": "SELECT SUM(gross_tonnage) FROM table_name_94 WHERE ship = \"isis\" AND date_commissioned < 1842", "question": "Tell me the sum of Gross Tonnage for isis ship on date commisioned less than 1842", "context": "CREATE TABLE table_name_94 (gross_tonnage INTEGER, ship VARCHAR, date_commissioned VARCHAR)"}, {"answer": "SELECT MIN(date_commissioned) FROM table_name_69 WHERE material = \"iron\" AND ship = \"rmsrhone\" AND gross_tonnage < 2 OFFSET 738", "question": "Tell me the lowest date commissioned for iron rmsrhone and gross tonnage less than 2,738", "context": "CREATE TABLE table_name_69 (date_commissioned INTEGER, gross_tonnage VARCHAR, material VARCHAR, ship VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_21 WHERE time_retired = \"+1.027\"", "question": "What Constructor has a +1.027 Time/Retired?", "context": "CREATE TABLE table_name_21 (constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_13 WHERE laps = 56", "question": "What Constructor has 56 Laps?", "context": "CREATE TABLE table_name_13 (constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_91 WHERE grid > 5 AND laps = 28", "question": "What Driver has 28 Laps and a Grid greater than 5?", "context": "CREATE TABLE table_name_91 (driver VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_80 WHERE time_retired = \"wheel\"", "question": "What is the highest Laps with a Time/Retired Wheel?", "context": "CREATE TABLE table_name_80 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_86 WHERE time_retired = \"+1.027\"", "question": "What Driver has a +1.027 Time/Retired?", "context": "CREATE TABLE table_name_86 (driver VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT result FROM table_name_78 WHERE score = \"44-20\"", "question": "What game has a score of 44-20?", "context": "CREATE TABLE table_name_78 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE venue = \"headingley stadium\"", "question": "What date was a game played at Headingley Stadium?", "context": "CREATE TABLE table_name_67 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_84 WHERE venue = \"shay stadium\"", "question": "What competition was played at Shay Stadium?", "context": "CREATE TABLE table_name_84 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT show FROM table_name_45 WHERE year < 2011 AND episode_title = \"part 3\"", "question": "Which show had a part 3 before 2011?", "context": "CREATE TABLE table_name_45 (show VARCHAR, year VARCHAR, episode_title VARCHAR)"}, {"answer": "SELECT books FROM table_name_23 WHERE gender = \"male\" AND animal_name = \"bounder\"", "question": "What are the male Bounder books?", "context": "CREATE TABLE table_name_23 (books VARCHAR, gender VARCHAR, animal_name VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_75 WHERE date = \"april 12\"", "question": "How many people attended on April 12?", "context": "CREATE TABLE table_name_75 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE no_built = 5 AND wheels = \"4-4-2t\"", "question": "On what date were 5 built with 4-4-2t wheels?", "context": "CREATE TABLE table_name_10 (date VARCHAR, no_built VARCHAR, wheels VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE loco_nos = \"421-6\"", "question": "On what date was the number of locomotives 421-6?", "context": "CREATE TABLE table_name_70 (date VARCHAR, loco_nos VARCHAR)"}, {"answer": "SELECT no_built FROM table_name_17 WHERE loco_nos = \"11-20\"", "question": "How many were built with a locomotive number of 11-20?", "context": "CREATE TABLE table_name_17 (no_built VARCHAR, loco_nos VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE wheels = \"4-4-2\" AND no_built > 5", "question": "On what date were more than 5 built with 4-4-2 wheels?", "context": "CREATE TABLE table_name_38 (date VARCHAR, wheels VARCHAR, no_built VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE no_built < 10 AND loco_nos = \"31-35\"", "question": "On what date were less than 10 built with a locomotive number of 31-35?", "context": "CREATE TABLE table_name_48 (date VARCHAR, no_built VARCHAR, loco_nos VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_8 WHERE away_team = \"collingwood\"", "question": "How many spectators watched when the away team was Collingwood?", "context": "CREATE TABLE table_name_8 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_37 WHERE away_team = \"essendon\"", "question": "What did Essendon score when they were the away team?", "context": "CREATE TABLE table_name_37 (away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_65 WHERE venue = \"brunswick street oval\"", "question": "Who was the home team at Brunswick Street Oval?", "context": "CREATE TABLE table_name_65 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_7 WHERE away_team = \"south melbourne\"", "question": "What was South Melbourne's away team score?", "context": "CREATE TABLE table_name_7 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_89 WHERE venue = \"brunswick street oval\"", "question": "Who was the away team at Brunswick Street Oval?", "context": "CREATE TABLE table_name_89 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(height__m_) FROM table_name_37 WHERE class = \"hewitt\" AND prom__m_ < 148", "question": "Tell me the lowest height for class of hewitt and prom less than 148", "context": "CREATE TABLE table_name_37 (height__m_ INTEGER, class VARCHAR, prom__m_ VARCHAR)"}, {"answer": "SELECT COUNT(prom__m_) FROM table_name_59 WHERE height__m_ < 615", "question": "Tell me the total number of prom for height less than 615", "context": "CREATE TABLE table_name_59 (prom__m_ VARCHAR, height__m_ INTEGER)"}, {"answer": "SELECT peak FROM table_name_10 WHERE prom__m_ < 147 AND height__m_ < 619", "question": "I want to know the peak which is prom less than 147 and height less than 619", "context": "CREATE TABLE table_name_10 (peak VARCHAR, prom__m_ VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT peak FROM table_name_26 WHERE prom__m_ < 147", "question": "Tell me the peak for prom being less than 147", "context": "CREATE TABLE table_name_26 (peak VARCHAR, prom__m_ INTEGER)"}, {"answer": "SELECT MIN(prom__m_) FROM table_name_62 WHERE class = \"hewitt\" AND peak = \"cushat law\" AND height__m_ > 615", "question": "Tell me the lowest prom for class of hewitt and peak of cushat law and height more than 615", "context": "CREATE TABLE table_name_62 (prom__m_ INTEGER, height__m_ VARCHAR, class VARCHAR, peak VARCHAR)"}, {"answer": "SELECT peak FROM table_name_14 WHERE height__m_ > 619 AND class = \"hewitt\" AND prom__m_ = 148", "question": "Name the peak for height more than 619 and class of hewitt with prom being 148", "context": "CREATE TABLE table_name_14 (peak VARCHAR, prom__m_ VARCHAR, height__m_ VARCHAR, class VARCHAR)"}, {"answer": "SELECT percentage_democrats FROM table_name_57 WHERE democratic__republican = \"2/4\"", "question": "What is the percentage democrats with 2/4 democrat/republican?", "context": "CREATE TABLE table_name_57 (percentage_democrats VARCHAR, democratic__republican VARCHAR)"}, {"answer": "SELECT percentage_democrats FROM table_name_45 WHERE democratic_seat_plurality = \"-3\" AND democratic__republican = \"2/5\"", "question": "What is the percentage democrats with democratic plurality of -3, and 2/5 democrat/republican?", "context": "CREATE TABLE table_name_45 (percentage_democrats VARCHAR, democratic_seat_plurality VARCHAR, democratic__republican VARCHAR)"}, {"answer": "SELECT percentage_republicans FROM table_name_62 WHERE democratic__republican = \"7/6\"", "question": "What is the percent of republicans with 7/6 democrat/republican?", "context": "CREATE TABLE table_name_62 (percentage_republicans VARCHAR, democratic__republican VARCHAR)"}, {"answer": "SELECT democratic_seat_plurality FROM table_name_94 WHERE percentage_democrats = \"29%\"", "question": "What is the democratic seat plurality with 29% democrat?", "context": "CREATE TABLE table_name_94 (democratic_seat_plurality VARCHAR, percentage_democrats VARCHAR)"}, {"answer": "SELECT democratic_seat_plurality FROM table_name_91 WHERE state_ranked_in_partisan_order = \"new hampshire\"", "question": "What is the democratic seat plurality with partisan order of New Hampshire?", "context": "CREATE TABLE table_name_91 (democratic_seat_plurality VARCHAR, state_ranked_in_partisan_order VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE visitor = \"pacers\"", "question": "What is the score of the game with Pacers as the Visitor?", "context": "CREATE TABLE table_name_32 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT home FROM table_name_11 WHERE date = \"december 5, 2007\"", "question": "Who was Home on December 5, 2007?", "context": "CREATE TABLE table_name_11 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT japanese_orthography FROM table_name_39 WHERE abbreviation = \"ndmc\"", "question": "What is the Japanese orthography for the abbreviation of ndmc?", "context": "CREATE TABLE table_name_39 (japanese_orthography VARCHAR, abbreviation VARCHAR)"}, {"answer": "SELECT english_name FROM table_name_31 WHERE provider_national_government_ = \"ministry of defense\" AND abbreviation = \"nda b\u014dei-dai(\u9632\u885b\u5927)\"", "question": "What is the english name of the ministry of defense with an abbreviation of nda b\u014dei-dai(\u9632\u885b\u5927)?", "context": "CREATE TABLE table_name_31 (english_name VARCHAR, provider_national_government_ VARCHAR, abbreviation VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_18 WHERE venue = \"victoria park\"", "question": "What did the team score when playing at home in victoria park?", "context": "CREATE TABLE table_name_18 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_95 WHERE home_team = \"st kilda\"", "question": "What did st kilda score at home?", "context": "CREATE TABLE table_name_95 (home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_16 WHERE venue = \"western oval\"", "question": "Which team plays home in western oval venue?", "context": "CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_10 WHERE laps < 53 AND driver = \"innes ireland\"", "question": "When the driver is innes ireland and they drove under 53 laps, what was the Time/Retired?", "context": "CREATE TABLE table_name_10 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_name_65 WHERE driver = \"peter arundell\"", "question": "How many laps does peter arundell have?", "context": "CREATE TABLE table_name_65 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_38 WHERE grid > 11 AND laps > 52", "question": "Which driver has a grid value larger than 11, and drove more than 52 laps?", "context": "CREATE TABLE table_name_38 (driver VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_16 WHERE away_team = \"north melbourne\"", "question": "What is the crowd for away team of north melbourne?", "context": "CREATE TABLE table_name_16 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE away_team = \"essendon\"", "question": "What is the date when the away team is essendon?", "context": "CREATE TABLE table_name_93 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_81 WHERE home = \"vancouver\" AND date = \"february 24\"", "question": "Name the visitor from vancouver on february 24", "context": "CREATE TABLE table_name_81 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT description FROM table_name_56 WHERE date = \"1962\"", "question": "Which description is dated 1962?", "context": "CREATE TABLE table_name_56 (description VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_53 WHERE venue = \"moorabbin oval\"", "question": "Moorabbin oval is home to what team?", "context": "CREATE TABLE table_name_53 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT leader_at_the_summit FROM table_name_23 WHERE year = 2005", "question": "Who was the leader at the summit for the race in 2005?", "context": "CREATE TABLE table_name_23 (leader_at_the_summit VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(stage) FROM table_name_73 WHERE category = \"1\" AND year > 2003", "question": "What is the sum of the stages for category 1 races after the year 2003?", "context": "CREATE TABLE table_name_73 (stage INTEGER, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_40 WHERE home_team = \"melbourne\"", "question": "What is the stadium of melbourne?", "context": "CREATE TABLE table_name_40 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_42 WHERE decision = \"backstrom\" AND attendance > 18 OFFSET 568", "question": "What was the record in the game where the decision was Backstrom and there were more than 18,568 in attendance?", "context": "CREATE TABLE table_name_42 (record VARCHAR, decision VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_74 WHERE team = \"getafe cf\"", "question": "For Getafe CF, what is the highest number of goals scored?", "context": "CREATE TABLE table_name_74 (goals INTEGER, team VARCHAR)"}, {"answer": "SELECT AVG(matches) FROM table_name_5 WHERE goals < 41 AND team = \"ca osasuna\" AND average < 1.06", "question": "For players with fewer than 41 goals for CA Osasuna and averages under 1.06, what is the average number of matches?", "context": "CREATE TABLE table_name_5 (matches INTEGER, average VARCHAR, goals VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_79 WHERE average = 1.58 AND matches < 38", "question": "For averages of 1.58 and matches under 38, what is the average number of goals?", "context": "CREATE TABLE table_name_79 (goals INTEGER, average VARCHAR, matches VARCHAR)"}, {"answer": "SELECT ranking FROM table_name_14 WHERE season = \"2009\"", "question": "Which Ranking has a Season of 2009?", "context": "CREATE TABLE table_name_14 (ranking VARCHAR, season VARCHAR)"}, {"answer": "SELECT champions FROM table_name_95 WHERE runner_up = \"tobol\" AND coeff = \"1.125\"", "question": "Which Champions have a Runner-up of tobol, and a Coeff of 1.125?", "context": "CREATE TABLE table_name_95 (champions VARCHAR, runner_up VARCHAR, coeff VARCHAR)"}, {"answer": "SELECT champions FROM table_name_85 WHERE coeff = \"1.000\"", "question": "Which Champion has a Coeff of 1.000?", "context": "CREATE TABLE table_name_85 (champions VARCHAR, coeff VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_62 WHERE date = \"23 april\" AND batting_2nd = \"england 5/113 (19)\"", "question": "what is the game for 23 april when batting 2nd is england 5/113 (19)?", "context": "CREATE TABLE table_name_62 (game INTEGER, date VARCHAR, batting_2nd VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_17 WHERE batting_2nd = \"new zealand 6/133 (18)\"", "question": "what is the game when batting 2nd is new zealand 6/133 (18)?", "context": "CREATE TABLE table_name_17 (game INTEGER, batting_2nd VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_25 WHERE result = \"new zealand by 4 wickets\"", "question": "what is the game when the result is new zealand by 4 wickets?", "context": "CREATE TABLE table_name_25 (game INTEGER, result VARCHAR)"}, {"answer": "SELECT batting_1st FROM table_name_20 WHERE game = 8", "question": "who is batting 1st in game 8?", "context": "CREATE TABLE table_name_20 (batting_1st VARCHAR, game VARCHAR)"}, {"answer": "SELECT playoffs_2 FROM table_name_18 WHERE season = \"2010-11\"", "question": "What is the playoffs 2 result of season 2010-11?", "context": "CREATE TABLE table_name_18 (playoffs_2 VARCHAR, season VARCHAR)"}, {"answer": "SELECT playoffs_1 FROM table_name_41 WHERE season = \"2004-05\"", "question": "What is the playoffs 1 result of season 2004-05?", "context": "CREATE TABLE table_name_41 (playoffs_1 VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_39 WHERE driver = \"alain prost\"", "question": "Which Grid did Alain Prost drive on?", "context": "CREATE TABLE table_name_39 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_44 WHERE driver = \"riccardo patrese\"", "question": "What was Riccardo Patrese's time/retired?", "context": "CREATE TABLE table_name_44 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_15 WHERE chassis = \"n180\" AND driver = \"geoff lees\"", "question": "How many rounds did geoff lees drive with chassis of n180?", "context": "CREATE TABLE table_name_15 (rounds VARCHAR, chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT tyres FROM table_name_10 WHERE driver = \"didier pironi\"", "question": "What is the tyres for Didier pironi?", "context": "CREATE TABLE table_name_10 (tyres VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_25 WHERE driver = \"jan lammers\" AND rounds = \"7-14\"", "question": "Who was the constructor of the car that Jan Lammers made 7-14 rounds in?", "context": "CREATE TABLE table_name_25 (constructor VARCHAR, driver VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT engine FROM table_name_1 WHERE tyres = \"g\" AND chassis = \"d3 d4\" AND driver = \"jan lammers\" AND rounds = \"4-6\"", "question": "What engine was used during the race driven by Jan Lammers using a chassis of d3 d4, making a tyre of g and rounds of 4-6?", "context": "CREATE TABLE table_name_1 (engine VARCHAR, rounds VARCHAR, driver VARCHAR, tyres VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT competition FROM table_name_36 WHERE venue = \"seoul\" AND result = \"4-1\"", "question": "Which Competition has a Venue of Seoul, and Result of 4-1?", "context": "CREATE TABLE table_name_36 (competition VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_76 WHERE date = \"june 12, 1997\"", "question": "What's the Result listed that has a Date of June 12, 1997?", "context": "CREATE TABLE table_name_76 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE result = \"1-0\"", "question": "What's the Score listed that has a Result of 1-0?", "context": "CREATE TABLE table_name_70 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE competition = \"1994 fifa world cup qualification\" AND date = \"may 15, 1993\"", "question": "What's the Result for the Competition of 1994 FIFA World Cup Qualification, with the Date of May 15, 1993?", "context": "CREATE TABLE table_name_14 (result VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_75 WHERE result = \"3-0\" AND venue = \"suwon\"", "question": "Which Competition had a Result of 3-0 and VEnue of Suwon?", "context": "CREATE TABLE table_name_75 (competition VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_66 WHERE competition = \"1998 fifa world cup qualification\" AND venue = \"bangkok\"", "question": "What's the Result of the Competition of 1998 FIFA World Cup Qualification with the Venue of Bangkok?", "context": "CREATE TABLE table_name_66 (result VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT decision FROM table_name_34 WHERE home = \"boston\"", "question": "Who had the decision with boston at home?", "context": "CREATE TABLE table_name_34 (decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_19 WHERE venue = \"mcg\"", "question": "Who is the home team that played at MCG?", "context": "CREATE TABLE table_name_19 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_27 WHERE home_team = \"richmond\"", "question": "What is the score of the away team that played richmond?", "context": "CREATE TABLE table_name_27 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE opponents = \"colin fleming scott lipsky\"", "question": "What is the score for the game that Colin Fleming Scott Lipsky played in?", "context": "CREATE TABLE table_name_5 (score VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_51 WHERE partner = \"dieter kindlmann\"", "question": "Which tournament was Dieter Kindlmann a partner?", "context": "CREATE TABLE table_name_51 (tournament VARCHAR, partner VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_33 WHERE apps < 22", "question": "When the Apps were smaller than 22, what's the lowest amount of goals scored in a game?", "context": "CREATE TABLE table_name_33 (goals INTEGER, apps INTEGER)"}, {"answer": "SELECT COUNT(division) FROM table_name_54 WHERE season = \"2006/07\" AND goals > 1", "question": "What's the total number of all divisions during the 2006/07 season where they scored more than 1 goal?", "context": "CREATE TABLE table_name_54 (division VARCHAR, season VARCHAR, goals VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_1 WHERE venue = \"victoria park\"", "question": "What is the average crowd at victoria park?", "context": "CREATE TABLE table_name_1 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_50 WHERE home_team = \"north melbourne\"", "question": "What is the Away team score with north melbourne as home team?", "context": "CREATE TABLE table_name_50 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_12 WHERE trofeo_fast_team = \"mapei-bricobi\" AND points_classification = \"mariano piccoli\" AND mountains_classification = \"marco pantani\" AND stage = \"22\"", "question": "Who had the general classification when the trofeo fast team was Mapei-Bricobi, the points classification went to Mariano Piccoli and the mountains classification went to Marco Pantani in stage 22?", "context": "CREATE TABLE table_name_12 (general_classification VARCHAR, stage VARCHAR, mountains_classification VARCHAR, trofeo_fast_team VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT winner FROM table_name_49 WHERE stage = \"3\"", "question": "Who was the winner in stage 3?", "context": "CREATE TABLE table_name_49 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT state FROM table_name_97 WHERE first_elected = \"1914\" AND member = \"edward jolley\"", "question": "Which state was first elected in 1914, and a Member of edward jolley?", "context": "CREATE TABLE table_name_97 (state VARCHAR, first_elected VARCHAR, member VARCHAR)"}, {"answer": "SELECT state FROM table_name_24 WHERE member = \"frederick bamford\"", "question": "Which state is frederick bamford a member of?", "context": "CREATE TABLE table_name_24 (state VARCHAR, member VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_28 WHERE party = \"labor\" AND member = \"james sharpe\"", "question": "Which first election for the labor party is James Sharpe a part of?", "context": "CREATE TABLE table_name_28 (first_elected VARCHAR, party VARCHAR, member VARCHAR)"}, {"answer": "SELECT party FROM table_name_10 WHERE member = \"sydney sampson\"", "question": "Which party is sydney sampson a member of?", "context": "CREATE TABLE table_name_10 (party VARCHAR, member VARCHAR)"}, {"answer": "SELECT position FROM table_name_32 WHERE win__number = 2 AND winner = \"doug gibson\"", "question": "What position for doug gibson with 2 wins?", "context": "CREATE TABLE table_name_32 (position VARCHAR, win__number VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(rec) FROM table_name_84 WHERE player = \"chris watton\" AND yards < 1", "question": "How many receptions does Chris Watton with yards of less than 1?", "context": "CREATE TABLE table_name_84 (rec VARCHAR, player VARCHAR, yards VARCHAR)"}, {"answer": "SELECT the_american FROM table_name_36 WHERE years < 114 AND tied > 1 AND total_games > 1022", "question": "What is the American locations with less than 114 years and more than 1 tied with more than 1022 total games?", "context": "CREATE TABLE table_name_36 (the_american VARCHAR, total_games VARCHAR, years VARCHAR, tied VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_35 WHERE home_team = \"melbourne\"", "question": "Who was the away team when Melbourne was the home team?", "context": "CREATE TABLE table_name_35 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_13 WHERE away_team = \"north melbourne\"", "question": "What is the Away team score for Away team North Melbourne?", "context": "CREATE TABLE table_name_13 (away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_13 WHERE home_team = \"richmond\"", "question": "Which Away team is associated with the Richmond Home team?", "context": "CREATE TABLE table_name_13 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT birthdate FROM table_name_63 WHERE defining_characteristics = \"pink hair\"", "question": "What is the birth date of the member with the Defining characteristic of pink hair?", "context": "CREATE TABLE table_name_63 (birthdate VARCHAR, defining_characteristics VARCHAR)"}, {"answer": "SELECT Real AS name FROM table_name_95 WHERE defining_characteristics = \"shortest band member\"", "question": "Who is the person with the defining characteristic of the shortest band member?", "context": "CREATE TABLE table_name_95 (Real VARCHAR, defining_characteristics VARCHAR)"}, {"answer": "SELECT name FROM table_name_9 WHERE costume_role = \"monster\"", "question": "What is the name of the member with a costume Role of monster?", "context": "CREATE TABLE table_name_9 (name VARCHAR, costume_role VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE venue = \"h\" AND opponent = \"newcastle united\"", "question": "What was the final score for the match played in Venue H and the opponent was Newcastle United?", "context": "CREATE TABLE table_name_33 (result VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_75 WHERE silver < 1 AND rank < 5", "question": "What is the fewest bronze medals for a team with fewer than 1 silver and rank lower than 5?", "context": "CREATE TABLE table_name_75 (bronze INTEGER, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_29 WHERE gold < 3 AND silver = 1 AND total < 3 AND rank = 3", "question": "How many bronze medals for the nation with fewer than 3 gold, 1 silver and rank of 3?", "context": "CREATE TABLE table_name_29 (bronze VARCHAR, rank VARCHAR, total VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_92 WHERE bronze = 1 AND silver > 1", "question": "What is the largest total for a nation with 1 bronze and more than 1 silver?", "context": "CREATE TABLE table_name_92 (total INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_75 WHERE silver > 1", "question": "What is the smallest total for a nation with more than 1 silver?", "context": "CREATE TABLE table_name_75 (total INTEGER, silver INTEGER)"}, {"answer": "SELECT agg FROM table_name_45 WHERE team__number2 = \"okk beograd\"", "question": "What was the aggregate for a team #2 of Okk Beograd?", "context": "CREATE TABLE table_name_45 (agg VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_73 WHERE team__number1 = \"chemie halle\"", "question": "What was the 2nd leg score for Chemie Halle?", "context": "CREATE TABLE table_name_73 (team__number1 VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_50 WHERE away_team = \"south melbourne\"", "question": "What was South Melbourne's score as the away team?", "context": "CREATE TABLE table_name_50 (away_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_70 WHERE away_team = \"geelong\"", "question": "What was the attendance when Geelong played as the away team?", "context": "CREATE TABLE table_name_70 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_27 WHERE away_team = \"footscray\"", "question": "Where did Footscray play as the away team?", "context": "CREATE TABLE table_name_27 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_54 WHERE venue = \"arden street oval\"", "question": "What was the attendance when the Arden Street Oval?", "context": "CREATE TABLE table_name_54 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_76 WHERE player = \"marc lewis (lhp)\" AND round < 20", "question": "What is the mean pick when the play is Marc Lewis (lhp) and the round is less than 20?", "context": "CREATE TABLE table_name_76 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT pick FROM table_name_76 WHERE player = \"marc lewis (lhp)\"", "question": "Which pick's player was Marc Lewis (lhp)?", "context": "CREATE TABLE table_name_76 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_29 WHERE school = \"naperville central high school\"", "question": "Which is the biggest pick for Naperville Central High School?", "context": "CREATE TABLE table_name_29 (pick INTEGER, school VARCHAR)"}, {"answer": "SELECT media_market_ranking FROM table_name_54 WHERE metropolitan_area = \"new york, new york\"", "question": "What is the media market ranking for new york, new york?", "context": "CREATE TABLE table_name_54 (media_market_ranking VARCHAR, metropolitan_area VARCHAR)"}, {"answer": "SELECT home_away FROM table_name_49 WHERE opponent = \"pride\" AND result = \"w 11-10\"", "question": "Is it home or away when opponent is Pride with a W 11-10 result?", "context": "CREATE TABLE table_name_49 (home_away VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_19 WHERE field = \"bishop kearney field\"", "question": "Who is the opponent at Bishop Kearney Field?", "context": "CREATE TABLE table_name_19 (opponent VARCHAR, field VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE home_away = \"home\" AND opponent = \"bayhawks\"", "question": "On what date were the opponents the Bayhawks at a home game?", "context": "CREATE TABLE table_name_17 (date VARCHAR, home_away VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT raion__district__or_city FROM table_name_58 WHERE bessarabian_bulgarians = \"8,600\"", "question": "What city or Raion (district) has 8,600 Bessarabian Bulgarians?", "context": "CREATE TABLE table_name_58 (raion__district__or_city VARCHAR, bessarabian_bulgarians VARCHAR)"}, {"answer": "SELECT moldovans FROM table_name_81 WHERE ukrainians = \"14,200\"", "question": "what is the Moldovans number when there are 14,200 Ukrainians?", "context": "CREATE TABLE table_name_81 (moldovans VARCHAR, ukrainians VARCHAR)"}, {"answer": "SELECT MIN(reported_isn) FROM table_name_28 WHERE citizenship = \"russia\"", "question": "Name the lowest reported isn for russia", "context": "CREATE TABLE table_name_28 (reported_isn INTEGER, citizenship VARCHAR)"}, {"answer": "SELECT AVG(reported_isn) FROM table_name_4 WHERE on_july_2007_press_release = \"no\" AND citizenship = \"kuwait\"", "question": "Name the average reported isn for july 2007 for kuwait release of no", "context": "CREATE TABLE table_name_4 (reported_isn INTEGER, on_july_2007_press_release VARCHAR, citizenship VARCHAR)"}, {"answer": "SELECT MAX(region) FROM table_name_10 WHERE population = 499", "question": "What is the highest region number with a 499 population?", "context": "CREATE TABLE table_name_10 (region INTEGER, population VARCHAR)"}, {"answer": "SELECT series FROM table_name_52 WHERE home = \"minnesota\" AND date = \"april 17\"", "question": "What was the series score on april 17 with minnesota at home?", "context": "CREATE TABLE table_name_52 (series VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_28 WHERE date = \"april 14\"", "question": "How many attended the game on april 14?", "context": "CREATE TABLE table_name_28 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_8 WHERE date = \"april 14\"", "question": "Who was at home on april 14?", "context": "CREATE TABLE table_name_8 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_91 WHERE home_team = \"melbourne\"", "question": "What is the name of the away team that played Melbourne?", "context": "CREATE TABLE table_name_91 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE venue = \"punt road oval\"", "question": "What date was the game played at Punt Road Oval?", "context": "CREATE TABLE table_name_33 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_13 WHERE away_team = \"hawthorn\"", "question": "What is the name of the home team that played against Hawthorn?", "context": "CREATE TABLE table_name_13 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_25 WHERE venue = \"kardinia park\"", "question": "What is the home team score that played at Kardinia Park?", "context": "CREATE TABLE table_name_25 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_85 WHERE driver = \"rubens barrichello\"", "question": "I want the total number of Laps for Rubens Barrichello", "context": "CREATE TABLE table_name_85 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_41 WHERE grid < 19 AND laps > 59 AND time_retired = \"+0.294\"", "question": "Tell me the driver for grid less than 19 and Laps more than 59 with time/retired of +0.294", "context": "CREATE TABLE table_name_41 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT rider FROM table_name_56 WHERE time = \"1:45.52.84\" AND rank = 8", "question": "What is the name of the rider with a time of 1:45.52.84, and a Rank of 8?", "context": "CREATE TABLE table_name_56 (rider VARCHAR, time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT team FROM table_name_10 WHERE rank < 5 AND time = \"1:37.58.38\"", "question": "What is the name of the team with a rank smaller than 5 and a time of 1:37.58.38?", "context": "CREATE TABLE table_name_10 (team VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_64 WHERE rider = \"peter symes\"", "question": "What is the highest rank for Peter Symes?", "context": "CREATE TABLE table_name_64 (rank INTEGER, rider VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_53 WHERE venue = \"glenferrie oval\"", "question": "What was the score for the away team at Glenferrie Oval?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE away_team = \"st kilda\"", "question": "When was a game played where the away team is St Kilda?", "context": "CREATE TABLE table_name_63 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_43 WHERE away_team = \"carlton\"", "question": "What was the home team score when the away team was Carlton?", "context": "CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT location FROM table_name_63 WHERE capacity = \"65,000\" AND opening = \"2016\"", "question": "What place can sit 65,000 and opens 2016?", "context": "CREATE TABLE table_name_63 (location VARCHAR, capacity VARCHAR, opening VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_99 WHERE team = \"san diego chargers\"", "question": "What is the stadium of the san diego chargers?", "context": "CREATE TABLE table_name_99 (stadium VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_64 WHERE stadium = \"vikings stadium\"", "question": "Who is the team at vikings stadium?", "context": "CREATE TABLE table_name_64 (team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT building FROM table_name_81 WHERE floors > 15 AND year = \"2013\"", "question": "For the Year 2013 what building(s) had more than 15 Floors?", "context": "CREATE TABLE table_name_81 (building VARCHAR, floors VARCHAR, year VARCHAR)"}, {"answer": "SELECT building FROM table_name_13 WHERE year = \"2013\" AND floors < 20", "question": "For the Year 2013 what building(s) had less than 20 Floors?", "context": "CREATE TABLE table_name_13 (building VARCHAR, year VARCHAR, floors VARCHAR)"}, {"answer": "SELECT venue FROM table_name_2 WHERE away_team = \"richmond\"", "question": "What location was the game played at when Richmond was the away team?", "context": "CREATE TABLE table_name_2 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE venue = \"vfl park\"", "question": "What date was the game played at vfl park?", "context": "CREATE TABLE table_name_33 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_27 WHERE away_team = \"north melbourne\"", "question": "How many people were in the crowd when the away team was north melbourne?", "context": "CREATE TABLE table_name_27 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT SUM(first_time_as_hc_climb) FROM table_name_82 WHERE no_of_hc_climbs > 1 AND no_of_times_visited > 29 AND most_recent > 2012", "question": "When was the first HC climb which, more recently than 2012, had more than 1 HC climbs, more than 29 times visited?", "context": "CREATE TABLE table_name_82 (first_time_as_hc_climb INTEGER, most_recent VARCHAR, no_of_hc_climbs VARCHAR, no_of_times_visited VARCHAR)"}, {"answer": "SELECT no_of_hc_climbs FROM table_name_35 WHERE no_of_times_visited = 1 AND most_recent > 1984 AND first_time_as_hc_climb < 1994 AND height__m_ = \"1900\"", "question": "How many HC climbs had 1 visit more recently than 1984, a first HC climb before 1994, and a height of 1900?", "context": "CREATE TABLE table_name_35 (no_of_hc_climbs VARCHAR, height__m_ VARCHAR, first_time_as_hc_climb VARCHAR, no_of_times_visited VARCHAR, most_recent VARCHAR)"}, {"answer": "SELECT height__m_ FROM table_name_69 WHERE no_of_hc_climbs > 2 AND most_recent = 2012 AND no_of_times_visited < 48 AND first_time_as_hc_climb = 1989", "question": "What is the height with more than 2 HC climbs more recent than 2012, less than 48 times visited, and a first HC climb in 1989?", "context": "CREATE TABLE table_name_69 (height__m_ VARCHAR, first_time_as_hc_climb VARCHAR, no_of_times_visited VARCHAR, no_of_hc_climbs VARCHAR, most_recent VARCHAR)"}, {"answer": "SELECT COUNT(most_recent) FROM table_name_56 WHERE height__m_ = \"2770\" AND first_time_as_hc_climb < 1992", "question": "What was the most recent year a height of 2770 m and a HC climb before 1992 was climbed?", "context": "CREATE TABLE table_name_56 (most_recent VARCHAR, height__m_ VARCHAR, first_time_as_hc_climb VARCHAR)"}, {"answer": "SELECT first_time_as_hc_climb FROM table_name_23 WHERE no_of_times_visited > 3 AND no_of_hc_climbs = 4 AND most_recent < 2013 AND height__m_ = \"1669\"", "question": "When was the first HC climb before 2013 with more than 3 times visited, more than 4 HC climbs, and a height of 1669?", "context": "CREATE TABLE table_name_23 (first_time_as_hc_climb VARCHAR, height__m_ VARCHAR, most_recent VARCHAR, no_of_times_visited VARCHAR, no_of_hc_climbs VARCHAR)"}, {"answer": "SELECT builder FROM table_name_43 WHERE pennant_number = \"d03\"", "question": "Who is the builder of Pennant d03?", "context": "CREATE TABLE table_name_43 (builder VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_30 WHERE reg_gp > 906 AND pl_gp > 99", "question": "How many picks had a Reg GP that was over 906, when the Pl GP was bigger than 99?", "context": "CREATE TABLE table_name_30 (pick__number VARCHAR, reg_gp VARCHAR, pl_gp VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_44 WHERE reg_gp < 0", "question": "Which is the smallest pick number that had a Reg GP of less than 0?", "context": "CREATE TABLE table_name_44 (pick__number INTEGER, reg_gp INTEGER)"}, {"answer": "SELECT home_team AS score FROM table_name_15 WHERE away_team = \"south melbourne\"", "question": "Name the home team score when the away team is south melbourne", "context": "CREATE TABLE table_name_15 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE home_team = \"collingwood\"", "question": "Name the date for home team of collingwood", "context": "CREATE TABLE table_name_51 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE venue = \"princes park\"", "question": "Name the date for princes park", "context": "CREATE TABLE table_name_87 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE venue = \"brunswick street oval\"", "question": "Name the date for the venue of brunswick street oval", "context": "CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_12 WHERE date = \"26 april 1948\" AND away_team = \"hawthorn\"", "question": "What was the attendence of the game on 26 April 1948 and an away team of Hawthorn?", "context": "CREATE TABLE table_name_12 (crowd VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_54 WHERE venue = \"windy hill\"", "question": "When playing at Windy Hill, what was the home team?", "context": "CREATE TABLE table_name_54 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_99 WHERE home_team = \"footscray\"", "question": "What is the average crowd when footscray is at home?", "context": "CREATE TABLE table_name_99 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_4 WHERE venue = \"windy hill\"", "question": "What is the listed crowd at windy hill?", "context": "CREATE TABLE table_name_4 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_27 WHERE venue = \"punt road oval\"", "question": "What is the away team's score at punt road oval?", "context": "CREATE TABLE table_name_27 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home FROM table_name_24 WHERE score = \"116\u2013105\"", "question": "Who was the home team at the Nuggets game that had a score of 116\u2013105?", "context": "CREATE TABLE table_name_24 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_46 WHERE time_retired = \"+2 laps\" AND grid = 20", "question": "Tell me the lowest Laps with a time/retired of +2 Laps and Grid of 20", "context": "CREATE TABLE table_name_46 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_83 WHERE driver = \"eddie irvine\"", "question": "I want the time/retired for eddie irvine", "context": "CREATE TABLE table_name_83 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE winning_driver = \"rodger ward\"", "question": "What date was Rodger Ward the winning driver?", "context": "CREATE TABLE table_name_48 (date VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_46 WHERE winning_driver = \"jack brabham\" AND race = \"monaco grand prix\"", "question": "What was the constructor when Jack Brabham was the driver at the Monaco Grand Prix?", "context": "CREATE TABLE table_name_46 (constructor VARCHAR, winning_driver VARCHAR, race VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_78 WHERE pole_position = \"joakim bonnier\"", "question": "What driver was the winner when Joakim Bonnier was in the Pole Position?", "context": "CREATE TABLE table_name_78 (winning_driver VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE tyre = \"d\" AND winning_driver = \"bruce mclaren\"", "question": "What date was the Tyre d and Bruce Mclaren won?", "context": "CREATE TABLE table_name_61 (date VARCHAR, tyre VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE pole_position = \"joakim bonnier\"", "question": "What date was Joakim Bonnier in the pole position?", "context": "CREATE TABLE table_name_21 (date VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_70 WHERE grid = 19", "question": "What is the time for the racer on grid 19?", "context": "CREATE TABLE table_name_70 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_4 WHERE grid < 7 AND laps > 35 AND driver = \"alberto ascari\"", "question": "Who made the car that Alberto Ascari went more than 35 laps on a grid less than 7?", "context": "CREATE TABLE table_name_4 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_22 WHERE laps > 9 AND grid = 7", "question": "What driver raced for more than 9 laps on grid 7?", "context": "CREATE TABLE table_name_22 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT license FROM table_name_18 WHERE actual_version = \"9.0\"", "question": "Which License has an Actual Vaersion of 9.0?", "context": "CREATE TABLE table_name_18 (license VARCHAR, actual_version VARCHAR)"}, {"answer": "SELECT system FROM table_name_15 WHERE actual_version = \"9.0\"", "question": "Which System has an Actual Version 9.0?", "context": "CREATE TABLE table_name_15 (system VARCHAR, actual_version VARCHAR)"}, {"answer": "SELECT system FROM table_name_45 WHERE name = \"gemulator\"", "question": "Which System's Name is Gemulator?", "context": "CREATE TABLE table_name_45 (system VARCHAR, name VARCHAR)"}, {"answer": "SELECT system FROM table_name_76 WHERE license = \"freeware\" AND name = \"steem\"", "question": "Which System's Name is Steem, and has a Freeware License?", "context": "CREATE TABLE table_name_76 (system VARCHAR, license VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE record = \"10\u201313\u20132\"", "question": "What was the date of the game when the Lightning had a record of 10\u201313\u20132?", "context": "CREATE TABLE table_name_96 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE record = \"9\u20138\u20131\"", "question": "What was the date of the game when the Lightning had a record of 9\u20138\u20131?", "context": "CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT decision FROM table_name_84 WHERE record = \"6\u20138\u20131\"", "question": "What was the decision of the game when the Lightning had a record of 6\u20138\u20131?", "context": "CREATE TABLE table_name_84 (decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_48 WHERE player = \"dominic uy\"", "question": "What pick was Dominic Uy?", "context": "CREATE TABLE table_name_48 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_98 WHERE pick = 33", "question": "What college did pick 33 attend?", "context": "CREATE TABLE table_name_98 (college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT elevation_msl FROM table_name_71 WHERE housing__2007_ = \"91,385\"", "question": "What is the elevation of the city with a number of 91,385 Housing dwellings in 2007?", "context": "CREATE TABLE table_name_71 (elevation_msl VARCHAR, housing__2007_ VARCHAR)"}, {"answer": "SELECT density__hab_km\u00b2_ FROM table_name_11 WHERE city_district = \"san sebasti\u00e1n\"", "question": "What is the density of San Sebasti\u00e1n?", "context": "CREATE TABLE table_name_11 (density__hab_km\u00b2_ VARCHAR, city_district VARCHAR)"}, {"answer": "SELECT density__hab_km\u00b2_ FROM table_name_5 WHERE elevation_msl = \"3,400 msl\"", "question": "What is the density of the city with an elevation of 3,400 msl?", "context": "CREATE TABLE table_name_5 (density__hab_km\u00b2_ VARCHAR, elevation_msl VARCHAR)"}, {"answer": "SELECT area_km\u00b2 FROM table_name_92 WHERE density__hab_km\u00b2_ = \"8,546.1\"", "question": "What is the area of the city with a density of 8,546.1?", "context": "CREATE TABLE table_name_92 (area_km\u00b2 VARCHAR, density__hab_km\u00b2_ VARCHAR)"}, {"answer": "SELECT area_km\u00b2 FROM table_name_72 WHERE density__hab_km\u00b2_ = \"955.6\"", "question": "What is the area of the city with a density of 955.6?", "context": "CREATE TABLE table_name_72 (area_km\u00b2 VARCHAR, density__hab_km\u00b2_ VARCHAR)"}, {"answer": "SELECT density__hab_km\u00b2_ FROM table_name_72 WHERE city_district = \"san sebasti\u00e1n\"", "question": "What is the density of San Sebasti\u00e1n?", "context": "CREATE TABLE table_name_72 (density__hab_km\u00b2_ VARCHAR, city_district VARCHAR)"}, {"answer": "SELECT result FROM table_name_45 WHERE category = \"best book of a musical\"", "question": "Which Result has a Category of best book of a musical?", "context": "CREATE TABLE table_name_45 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_88 WHERE category = \"outstanding musical\"", "question": "Which Nominee has a Category of outstanding musical?", "context": "CREATE TABLE table_name_88 (nominee VARCHAR, category VARCHAR)"}, {"answer": "SELECT time FROM table_name_20 WHERE record = \"nascar camping world truck series\"", "question": "What is the record time at the Nascar Camping World Truck Series?", "context": "CREATE TABLE table_name_20 (time VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE date = \"nascar nationwide series\"", "question": "What date was the nascar nationwide series held?", "context": "CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_12 WHERE time = \"24.521\"", "question": "Who holds the record time of 24.521 and where was it made?", "context": "CREATE TABLE table_name_12 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_79 WHERE grid = \"9\"", "question": "Which time/retired has a grid of 9?", "context": "CREATE TABLE table_name_79 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_79 WHERE grid = \"6\"", "question": "Which driver's grid is 6?", "context": "CREATE TABLE table_name_79 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_59 WHERE driver = \"juan manuel fangio\"", "question": "For which constructor does Juan Manuel Fangio drive?", "context": "CREATE TABLE table_name_59 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_name_25 WHERE grid = \"8\"", "question": "Which laps has a grid of 8?", "context": "CREATE TABLE table_name_25 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT grid FROM table_name_74 WHERE constructor = \"maserati\" AND driver = \"oscar alfredo g\u00e1lvez\"", "question": "Which grid is constructed by Maserati and driven by Oscar Alfredo G\u00e1lvez?", "context": "CREATE TABLE table_name_74 (grid VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine FROM table_name_37 WHERE driver = \"ken downing\" AND entrant = \"connaught engineering\"", "question": "what was the engine when ken downing drove an entrant from connaught engineering?", "context": "CREATE TABLE table_name_37 (engine VARCHAR, driver VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_21 WHERE driver = \"eric brandon\"", "question": "who built the car driven by eric brandon?", "context": "CREATE TABLE table_name_21 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_5 WHERE constructor = \"simca-gordini\" AND driver = \"max de terra\"", "question": "what was the chassis built by simca-gordini and driven by max de terra?", "context": "CREATE TABLE table_name_5 (chassis VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_23 WHERE driver = \"kenneth mcalpine\"", "question": "kenneth mcalpine drove from which entrant?", "context": "CREATE TABLE table_name_23 (entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_79 WHERE rounds = \"6\" AND chassis = \"52 51/52\"", "question": "with 6 rounds, and a 52 51/52 chassis, who is the driver?", "context": "CREATE TABLE table_name_79 (driver VARCHAR, rounds VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_62 WHERE opponent = \"braves\" AND record = \"56-53\"", "question": "What was the attendance when the Braves were the opponent and the record was 56-53?", "context": "CREATE TABLE table_name_62 (attendance INTEGER, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE record = \"61-57\"", "question": "Who was the opponent when the record was 61-57?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_55 WHERE driver = \"jochen rindt\"", "question": "How many laps for jochen rindt?", "context": "CREATE TABLE table_name_55 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_73 WHERE driver = \"jean-pierre beltoise\"", "question": "What is the grid total for jean-pierre beltoise?", "context": "CREATE TABLE table_name_73 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time FROM table_name_22 WHERE opponent = \"tony mendoza\"", "question": "What was the time for the event in which Tony Mendoza was the opponent?", "context": "CREATE TABLE table_name_22 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_23 WHERE time_retired = \"+23.707\" AND grid > 21", "question": "What is the average lap time for retired time of +23.707 and a Grid greater than 21?", "context": "CREATE TABLE table_name_23 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_40 WHERE venue = \"victoria park\"", "question": "Which home team plays at victoria park?", "context": "CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(avg) FROM table_name_16 WHERE yards = 6 AND rec > 1", "question": "Tell me the lowest avg for 6 yards and rec more than 1", "context": "CREATE TABLE table_name_16 (avg INTEGER, yards VARCHAR, rec VARCHAR)"}, {"answer": "SELECT SUM(long) FROM table_name_25 WHERE avg > 9.8 AND rec < 5 AND yards < 20", "question": "Name the sum of long for avg more than 9.8 with rec less than 5 and yards less than 20", "context": "CREATE TABLE table_name_25 (long INTEGER, yards VARCHAR, avg VARCHAR, rec VARCHAR)"}, {"answer": "SELECT SUM(long) FROM table_name_24 WHERE avg < 6 AND rec < 2", "question": "Name the sum of long for avg less than 6 and rec less than 2", "context": "CREATE TABLE table_name_24 (long INTEGER, avg VARCHAR, rec VARCHAR)"}, {"answer": "SELECT MIN(decile) FROM table_name_63 WHERE roll = 428", "question": "Name the lelast decile for roll of 428", "context": "CREATE TABLE table_name_63 (decile INTEGER, roll VARCHAR)"}, {"answer": "SELECT MAX(decile) FROM table_name_94 WHERE roll = 428", "question": "Name the most decile for roll of 428", "context": "CREATE TABLE table_name_94 (decile INTEGER, roll VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_18 WHERE winners = \"hawthorn\" AND season_result = \"preliminary finalist\" AND crowd < 27 OFFSET 407", "question": "What's the highest year than hawthorn won with a season result of preliminary finalist and a crowd smaller than 27,407?", "context": "CREATE TABLE table_name_18 (year INTEGER, crowd VARCHAR, winners VARCHAR, season_result VARCHAR)"}, {"answer": "SELECT scores FROM table_name_63 WHERE grand_finalist = \"hawthorn\"", "question": "What scores did grand finalist hawthorn have?", "context": "CREATE TABLE table_name_63 (scores VARCHAR, grand_finalist VARCHAR)"}, {"answer": "SELECT grand_finalist FROM table_name_89 WHERE year > 1979 AND margin < 30 AND winners = \"essendon\"", "question": "What grand finalist had a year after 1979, a margin smaller than 30, and winners of essendon?", "context": "CREATE TABLE table_name_89 (grand_finalist VARCHAR, winners VARCHAR, year VARCHAR, margin VARCHAR)"}, {"answer": "SELECT SUM(numer_of_jamaicans_granted_british_citizenship) FROM table_name_44 WHERE year = 2004 AND registration_of_a_minor_child > 640", "question": "Tell me the sum of number of jamaicans given british citizenship for 2004 and registration of a minor child more than 640", "context": "CREATE TABLE table_name_44 (numer_of_jamaicans_granted_british_citizenship INTEGER, year VARCHAR, registration_of_a_minor_child VARCHAR)"}, {"answer": "SELECT team__league_ FROM table_name_23 WHERE reg_gp < 52 AND pick__number = 130", "question": "What team played under 52 Reg GP, and picked 130?", "context": "CREATE TABLE table_name_23 (team__league_ VARCHAR, reg_gp VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(pl_gp) FROM table_name_27 WHERE rd__number > 9", "question": "What is the highest PL GP for a round greater than 9?", "context": "CREATE TABLE table_name_27 (pl_gp INTEGER, rd__number INTEGER)"}, {"answer": "SELECT title FROM table_name_1 WHERE time = \"4:22\"", "question": "Which title has a length of 4:22?", "context": "CREATE TABLE table_name_1 (title VARCHAR, time VARCHAR)"}, {"answer": "SELECT composer_s_ FROM table_name_33 WHERE time = \"2:50\"", "question": "Which composer has a track length of 2:50?", "context": "CREATE TABLE table_name_33 (composer_s_ VARCHAR, time VARCHAR)"}, {"answer": "SELECT title FROM table_name_50 WHERE guest_performer = \"black ice\" AND time = \"5:49\"", "question": "Which title has a Black Ice for a guest performer and a length of 5:49?", "context": "CREATE TABLE table_name_50 (title VARCHAR, guest_performer VARCHAR, time VARCHAR)"}, {"answer": "SELECT guest_performer FROM table_name_8 WHERE time = \"5:49\"", "question": "Which guest performer has a track length of 5:49?", "context": "CREATE TABLE table_name_8 (guest_performer VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE visitor = \"philadelphia\"", "question": "What was the score when philadelphia visited?", "context": "CREATE TABLE table_name_38 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_76 WHERE decision = \"weekes\"", "question": "How many attended the game with weekes recording the decision?", "context": "CREATE TABLE table_name_76 (attendance VARCHAR, decision VARCHAR)"}, {"answer": "SELECT Digital AS channel FROM table_name_16 WHERE owner = \"three angels broadcasting network\"", "question": "What digital channel does Three Angels Broadcasting Network own?", "context": "CREATE TABLE table_name_16 (Digital VARCHAR, owner VARCHAR)"}, {"answer": "SELECT championship FROM table_name_27 WHERE score = \"6\u20133, 2\u20136, 3\u20136, 6\u20133, 3\u20136\"", "question": "What Championship has Scores of 6\u20133, 2\u20136, 3\u20136, 6\u20133, 3\u20136?", "context": "CREATE TABLE table_name_27 (championship VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE away_team = \"geelong\"", "question": "What is the date of the game where Geelong was the away team?", "context": "CREATE TABLE table_name_43 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_61 WHERE away_team = \"geelong\"", "question": "What is the venue of the game where Geelong was the away team?", "context": "CREATE TABLE table_name_61 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE home_team = \"st kilda\"", "question": "What is the date of the game where St Kilda is the home team?", "context": "CREATE TABLE table_name_9 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_77 WHERE away_team = \"south melbourne\"", "question": "What was the home team's score of the game where South Melbourne is the away team?", "context": "CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_1 WHERE away_team = \"geelong\"", "question": "What is the away team's score of the game where the away team is Geelong?", "context": "CREATE TABLE table_name_1 (away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_11 WHERE competition = \"2004 afc asian cup qualification\" AND date = \"november 18, 2003\"", "question": "Which venue hosted the 2004 AFC Asian Cup qualification on November 18, 2003?", "context": "CREATE TABLE table_name_11 (venue VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE result = \"draw\" AND competition = \"friendly\" AND venue = \"dubai\"", "question": "On what date did a friendly competition, hosted in Dubai, result in a draw?", "context": "CREATE TABLE table_name_79 (date VARCHAR, venue VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_31 WHERE score = \"3-0\" AND date = \"december 7, 2002\"", "question": "What venue hosted a match with a 3-0 score on December 7, 2002?", "context": "CREATE TABLE table_name_31 (venue VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_23 WHERE score = \"2-0\" AND venue = \"amman\"", "question": "What competition resulted in 2-0 score, hosted in Amman?", "context": "CREATE TABLE table_name_23 (competition VARCHAR, score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE venue = \"kuwait city\"", "question": "On what date was Kuwait City a venue?", "context": "CREATE TABLE table_name_29 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_70 WHERE record = \"26\u201332\"", "question": "Who did the Mariners play when their record was 26\u201332?", "context": "CREATE TABLE table_name_70 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_37 WHERE laps = 49 AND constructor = \"vanwall\"", "question": "What was the Vanwall time/retired with 49 laps?", "context": "CREATE TABLE table_name_37 (time_retired VARCHAR, laps VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_96 WHERE time_retired = \"engine\" AND grid = 1", "question": "How many laps did the grid 1 engine have?", "context": "CREATE TABLE table_name_96 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_19 WHERE grid > 13 AND time_retired = \"engine\" AND driver = \"luigi piotti\"", "question": "What was the highest lap for Luigi Piotti with more than 13 grid and a time/retired engine?", "context": "CREATE TABLE table_name_19 (laps INTEGER, driver VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_16 WHERE position = \"cornerback\" AND round < 1", "question": "What Cornerback has the lowest Pick # and Round of less than 1?", "context": "CREATE TABLE table_name_16 (pick__number INTEGER, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_25 WHERE pick__number = 77", "question": "What is the Position of Pick #77?", "context": "CREATE TABLE table_name_25 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_52 WHERE date = \"august 12\"", "question": "How many attended the game on August 12?", "context": "CREATE TABLE table_name_52 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_62 WHERE home_team = \"hawthorn\"", "question": "What is the largest crowd with Home team of hawthorn?", "context": "CREATE TABLE table_name_62 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_91 WHERE away_team = \"fitzroy\"", "question": "What is the home team score with Fitzroy as away team?", "context": "CREATE TABLE table_name_91 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_59 WHERE venue = \"glenferrie oval\"", "question": "What is glenferrie oval's home team?", "context": "CREATE TABLE table_name_59 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT super_g FROM table_name_8 WHERE overall = \"16\"", "question": "What is the Super G value for the season that has an Overall score of 16?", "context": "CREATE TABLE table_name_8 (super_g VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_34 WHERE super_g = \"33\"", "question": "What is the oldest season that had a listed Super G score of 33?", "context": "CREATE TABLE table_name_34 (season INTEGER, super_g VARCHAR)"}, {"answer": "SELECT season FROM table_name_70 WHERE overall = \"77\"", "question": "What year's Season had an Overall of 77?", "context": "CREATE TABLE table_name_70 (season VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_13 WHERE earnings___$__ > 533 OFFSET 929", "question": "What is the high rank for players earning over $533,929?", "context": "CREATE TABLE table_name_13 (rank INTEGER, earnings___$__ INTEGER)"}, {"answer": "SELECT player FROM table_name_51 WHERE wins = 3 AND rank > 3", "question": "What player has 3 wins and ranks above 3rd?", "context": "CREATE TABLE table_name_51 (player VARCHAR, wins VARCHAR, rank VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_14 WHERE driver = \"emerson fittipaldi\"", "question": "What is the Time/Retired for emerson fittipaldi?", "context": "CREATE TABLE table_name_14 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT long FROM table_name_60 WHERE car = 26", "question": "What is the long for the player with 26 carries?", "context": "CREATE TABLE table_name_60 (long VARCHAR, car VARCHAR)"}, {"answer": "SELECT COUNT(car) FROM table_name_86 WHERE long = \"2\"", "question": "How many carries for the player with a 2 yard long?", "context": "CREATE TABLE table_name_86 (car VARCHAR, long VARCHAR)"}, {"answer": "SELECT long FROM table_name_78 WHERE car < 30 AND yards = \"0\"", "question": "What is the long for the player with under 30 carries and 0 yards?", "context": "CREATE TABLE table_name_78 (long VARCHAR, car VARCHAR, yards VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_85 WHERE division = \"central\" AND reds_season < 2000 AND losses < 81", "question": "How many wins were there in the 2000 season in the central division with less than 81 losses?", "context": "CREATE TABLE table_name_85 (wins INTEGER, losses VARCHAR, division VARCHAR, reds_season VARCHAR)"}, {"answer": "SELECT MIN(win_percentage) FROM table_name_59 WHERE gb_[c_] = \"17\" AND reds_season = 1989", "question": "What was the lowest percentages of wins in 1989 with a GB [c] of 17?", "context": "CREATE TABLE table_name_59 (win_percentage INTEGER, reds_season VARCHAR, gb_ VARCHAR, c_ VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_61 WHERE mlb_season = \"1943\"", "question": "How many losses did the 1943 MLB have?", "context": "CREATE TABLE table_name_61 (losses INTEGER, mlb_season VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_74 WHERE finish = \"7th\" AND win_percentage > 0.429 AND reds_season < 1915", "question": "What was the lowest wins in a season less than 1915 with a 7th finish and 0.429 win %?", "context": "CREATE TABLE table_name_74 (wins INTEGER, reds_season VARCHAR, finish VARCHAR, win_percentage VARCHAR)"}, {"answer": "SELECT gb_[c_] FROM table_name_98 WHERE win_percentage < 0.457 AND wins = 62 AND reds_season = 1900", "question": "In 1900 with 62 wins and a win percentage less than 0.457, what was the GB [c]?", "context": "CREATE TABLE table_name_98 (gb_ VARCHAR, c_ VARCHAR, reds_season VARCHAR, win_percentage VARCHAR, wins VARCHAR)"}, {"answer": "SELECT record FROM table_name_77 WHERE score = \"7\u20136 (12)\"", "question": "Which record has a score of 7\u20136 (12)?", "context": "CREATE TABLE table_name_77 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE record = \"59\u201359\"", "question": "On what date was the record 59\u201359?", "context": "CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_57 WHERE date = \"august 21\"", "question": "What loss occurred on August 21?", "context": "CREATE TABLE table_name_57 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(1985) FROM table_name_27 WHERE 1990 = 93", "question": "What is the highest 1985 value that has a 1990 value of 93?", "context": "CREATE TABLE table_name_27 (Id VARCHAR)"}, {"answer": "SELECT MAX(2000) FROM table_name_51 WHERE 2010 = 82 AND 2005 < 74", "question": "What is the highest 2000 value that has a 2010 value of 82 and a 2005 value less than 74?", "context": "CREATE TABLE table_name_51 (Id VARCHAR)"}, {"answer": "SELECT SUM(1995) FROM table_name_7 WHERE year = \"jiangxi\" AND 2008 > 67", "question": "What is the 1995 value with a Jiangxi year and a 2008 value bigger than 67?", "context": "CREATE TABLE table_name_7 (year VARCHAR)"}, {"answer": "SELECT MIN(2009) FROM table_name_18 WHERE 2010 = 141 AND 1985 > 165", "question": "What is the lowest 2009 value with a 2010 value of 141 and a 1985 value bigger than 165?", "context": "CREATE TABLE table_name_18 (Id VARCHAR)"}, {"answer": "SELECT SUM(1995) FROM table_name_35 WHERE 2005 > 74 AND 2008 = 84 AND 2000 < 80", "question": "What is the 1995 value with a 2005 value bigger than 74, a 2008 value of 84, and a 2000 value less than 80?", "context": "CREATE TABLE table_name_35 (Id VARCHAR)"}, {"answer": "SELECT label FROM table_name_24 WHERE year > 2004", "question": "What label is after 2004?", "context": "CREATE TABLE table_name_24 (label VARCHAR, year INTEGER)"}, {"answer": "SELECT format, _special_notes FROM table_name_23 WHERE title = \"the pact: ...of the gods\"", "question": "What is the Format and Special Notes for of the pact: ...of the gods?", "context": "CREATE TABLE table_name_23 (format VARCHAR, _special_notes VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_98 WHERE tracks = \"noxialicht\"", "question": "What movie has noxialicht as a track?", "context": "CREATE TABLE table_name_98 (title VARCHAR, tracks VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_81 WHERE rank = \"12\"", "question": "What is the lowest gold medals of a rank 12 team?", "context": "CREATE TABLE table_name_81 (gold INTEGER, rank VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_67 WHERE silver > 8 AND total = 50", "question": "What is the total number of bronze medals of the team with more than 8 silvers and a total of 50 medals?", "context": "CREATE TABLE table_name_67 (bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_65 WHERE nation = \"uzbekistan\" AND total < 24", "question": "What is the average gold medals Uzbekistan, which has less than 24 total medals, has?", "context": "CREATE TABLE table_name_65 (gold INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT open_cup FROM table_name_18 WHERE year > 1993", "question": "Which open cup was after 1993?", "context": "CREATE TABLE table_name_18 (open_cup VARCHAR, year INTEGER)"}, {"answer": "SELECT AVG(year) FROM table_name_27 WHERE playoffs = \"champion\"", "question": "Which year had playoffs of champion?", "context": "CREATE TABLE table_name_27 (year INTEGER, playoffs VARCHAR)"}, {"answer": "SELECT division FROM table_name_93 WHERE year = 1993", "question": "What divisions was in the year 1993?", "context": "CREATE TABLE table_name_93 (division VARCHAR, year VARCHAR)"}, {"answer": "SELECT uk_base FROM table_name_9 WHERE troop_carrier_group = \"441st tcg\" AND serial = \"14\"", "question": "Which UK base has 441st tcg Troop carrier group and 14 as their seir serial?", "context": "CREATE TABLE table_name_9 (uk_base VARCHAR, troop_carrier_group VARCHAR, serial VARCHAR)"}, {"answer": "SELECT drop_zone AS Time FROM table_name_27 WHERE troop_carrier_group = \"439th tcg\" AND _number_of_c_47s > 36", "question": "What is the Drop Zone time for the 439th tcg Troop Carrier Group with more tham 36 C-47s?", "context": "CREATE TABLE table_name_27 (drop_zone VARCHAR, troop_carrier_group VARCHAR, _number_of_c_47s VARCHAR)"}, {"answer": "SELECT grid FROM table_name_40 WHERE constructor = \"maserati\" AND laps = 14", "question": "What was the grid placement for the Maserati that completed 14 laps?", "context": "CREATE TABLE table_name_40 (grid VARCHAR, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_69 WHERE driver = \"tony brooks\"", "question": "What company built the car driven by Tony Brooks?", "context": "CREATE TABLE table_name_69 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE date = \"may 2\"", "question": "What is the score on the date of May 2?", "context": "CREATE TABLE table_name_54 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_74 WHERE date = \"april 30\"", "question": "What city was a visitor on the date of April 30?", "context": "CREATE TABLE table_name_74 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_5 WHERE date = \"april 22\"", "question": "On the date of April 22, which city was a visitor?", "context": "CREATE TABLE table_name_5 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_20 WHERE home = \"ottawa\" AND date = \"april 26\"", "question": "What visitor has Ottawa as a home and a date of April 26?", "context": "CREATE TABLE table_name_20 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_46 WHERE player = \"paino hehea\"", "question": "What is Paino Hehea's date of birth?", "context": "CREATE TABLE table_name_46 (date_of_birth__age_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT location FROM table_name_66 WHERE record = \"3-0\"", "question": "I want to know the location that has a record of 3-0", "context": "CREATE TABLE table_name_66 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_63 WHERE round > 1", "question": "Tell me the record for round more than 1", "context": "CREATE TABLE table_name_63 (record VARCHAR, round INTEGER)"}, {"answer": "SELECT method FROM table_name_71 WHERE opponent = \"jerry bohlander\"", "question": "I want to know the method for opponent of jerry bohlander", "context": "CREATE TABLE table_name_71 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT player FROM table_name_62 WHERE club = \"bologna milan\"", "question": "Who belongs to the Bologna Milan club?", "context": "CREATE TABLE table_name_62 (player VARCHAR, club VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_23 WHERE date = \"june 6\"", "question": "Who is the opponent on June 6?", "context": "CREATE TABLE table_name_23 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE field = \"commerce bank ballpark\"", "question": "What is the date of the game at Commerce Bank Ballpark?", "context": "CREATE TABLE table_name_67 (date VARCHAR, field VARCHAR)"}, {"answer": "SELECT result FROM table_name_98 WHERE field = \"bishop kearney field\" AND date = \"august 2\"", "question": "What is the result of the game at Bishop Kearney Field on August 2?", "context": "CREATE TABLE table_name_98 (result VARCHAR, field VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE field = \"homewood field\"", "question": "Who was the opponent of the game at Homewood field?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, field VARCHAR)"}, {"answer": "SELECT result FROM table_name_24 WHERE field = \"bishop kearney field\" AND date = \"august 2\"", "question": "What is the result of the game at Bishop Kearney Field on August 2?", "context": "CREATE TABLE table_name_24 (result VARCHAR, field VARCHAR, date VARCHAR)"}, {"answer": "SELECT time FROM table_name_92 WHERE speed = \"102.962mph\"", "question": "What is the time of the rider with a speed of 102.962mph?", "context": "CREATE TABLE table_name_92 (time VARCHAR, speed VARCHAR)"}, {"answer": "SELECT rider FROM table_name_52 WHERE time = \"1:27.37.22\"", "question": "Who is the rider who had the time of 1:27.37.22?", "context": "CREATE TABLE table_name_52 (rider VARCHAR, time VARCHAR)"}, {"answer": "SELECT rider FROM table_name_57 WHERE rank < 10 AND time = \"1:26.31.20\"", "question": "Who is the rider who has a rank lower than 10, and a time of 1:26.31.20?", "context": "CREATE TABLE table_name_57 (rider VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE circuit = \"indianapolis\"", "question": "What date was the Circuit of Indianapolis?", "context": "CREATE TABLE table_name_33 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_21 WHERE race = \"argentine grand prix\"", "question": "Who was the Constructor at the Argentine Grand Prix?", "context": "CREATE TABLE table_name_21 (constructor VARCHAR, race VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE circuit = \"indianapolis\"", "question": "What was the date of the Circuit of Indianapolis?", "context": "CREATE TABLE table_name_83 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_96 WHERE race = \"argentine grand prix\"", "question": "Who was the winning driver of the Argentine Grand Prix?", "context": "CREATE TABLE table_name_96 (winning_driver VARCHAR, race VARCHAR)"}, {"answer": "SELECT report FROM table_name_34 WHERE pole_position = \"juan manuel fangio\" AND tyre = \"c\"", "question": "What was Juan Manuel Fangio's reported pole position and the tire of C?", "context": "CREATE TABLE table_name_34 (report VARCHAR, pole_position VARCHAR, tyre VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_59 WHERE home = \"montreal\" AND date = \"march 24\"", "question": "What was the Attendance when the Home team was Montreal, on the Date of March 24?", "context": "CREATE TABLE table_name_59 (attendance INTEGER, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE date = \"march 15\"", "question": "What was the Score on March 15?", "context": "CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_48 WHERE player = \"dell curry\"", "question": "What school does Dell Curry play for?", "context": "CREATE TABLE table_name_48 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_35 WHERE player = \"john crotty\"", "question": "What school does John Crotty play for?", "context": "CREATE TABLE table_name_35 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_76 WHERE player = \"wayne cooper\"", "question": "What school does Wayne Cooper play for?", "context": "CREATE TABLE table_name_76 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_84 WHERE long > 8 AND yards = \"73\"", "question": "Who has greater than 8 Long and a 73 Yards?", "context": "CREATE TABLE table_name_84 (player VARCHAR, long VARCHAR, yards VARCHAR)"}, {"answer": "SELECT MAX(long) FROM table_name_84 WHERE yards = \"26\" AND car < 9", "question": "Who has a highest Long with 26 Yards and less than 9 Car?", "context": "CREATE TABLE table_name_84 (long INTEGER, yards VARCHAR, car VARCHAR)"}, {"answer": "SELECT MAX(long) FROM table_name_91 WHERE car = 59", "question": "Who has the highest Long with 59 Car?", "context": "CREATE TABLE table_name_91 (long INTEGER, car VARCHAR)"}, {"answer": "SELECT Previous AS rank FROM table_name_92 WHERE nationality = \"italy\" AND points > 100", "question": "Tell me the previous rank for italy with points more than 100", "context": "CREATE TABLE table_name_92 (Previous VARCHAR, nationality VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_58 WHERE nationality = \"australia\" AND points < 79", "question": "Tell me the sum of rank for australia when points are less than 79", "context": "CREATE TABLE table_name_58 (rank INTEGER, nationality VARCHAR, points VARCHAR)"}, {"answer": "SELECT s_motor_ship___s_naval_trawler FROM table_name_13 WHERE grand_total = 20", "question": "How many ships for the nation with grand total of 20?", "context": "CREATE TABLE table_name_13 (s_motor_ship___s_naval_trawler VARCHAR, grand_total VARCHAR)"}, {"answer": "SELECT escorts FROM table_name_74 WHERE cruisers = \"6\"", "question": "How many escorts does the nation with 6 cruisers have?", "context": "CREATE TABLE table_name_74 (escorts VARCHAR, cruisers VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_70 WHERE floors = 44", "question": "Which address has 44 floors?", "context": "CREATE TABLE table_name_70 (street_address VARCHAR, floors VARCHAR)"}, {"answer": "SELECT AVG(total__kg_) FROM table_name_22 WHERE bodyweight = 73.28 AND snatch < 75", "question": "What is the total for the person with 73.28 bodyweight and fewer snatches than 75?", "context": "CREATE TABLE table_name_22 (total__kg_ INTEGER, bodyweight VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT name FROM table_name_15 WHERE bodyweight = 73.6", "question": "Which person has a bodyweight of 73.6?", "context": "CREATE TABLE table_name_15 (name VARCHAR, bodyweight VARCHAR)"}, {"answer": "SELECT AVG(total__kg_) FROM table_name_7 WHERE snatch > 87.5 AND bodyweight > 74.8", "question": "What is the total for the player with more snatches than 87.5 and bodyweight more than 74.8?", "context": "CREATE TABLE table_name_7 (total__kg_ INTEGER, snatch VARCHAR, bodyweight VARCHAR)"}, {"answer": "SELECT SUM(bodyweight) FROM table_name_91 WHERE clean_ & _jerk = 82.5 AND total__kg_ < 152.5", "question": "What is the bodyweight for the player with a clean & jerk of 82.5 and total smaller than 152.5?", "context": "CREATE TABLE table_name_91 (bodyweight INTEGER, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_75 WHERE away_team = \"essendon\"", "question": "Name the home team when the away team was essendon", "context": "CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_36 WHERE home_team = \"university\"", "question": "Name the away team score for home team of university", "context": "CREATE TABLE table_name_36 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_54 WHERE away_team = \"geelong\"", "question": "Name the venue for geelong away team", "context": "CREATE TABLE table_name_54 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_6 WHERE away_team = \"richmond\"", "question": "Name the venue when the away team was richmond", "context": "CREATE TABLE table_name_6 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_25 WHERE away_team = \"geelong\"", "question": "Name the away team score for geelong away team", "context": "CREATE TABLE table_name_25 (away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_32 WHERE venue = \"brunswick street oval\"", "question": "When the venue was brunswick street oval what was the home teams score?", "context": "CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_18 WHERE artist = \"wendy fierce\"", "question": "How many draws feature artist wendy fierce?", "context": "CREATE TABLE table_name_18 (draw INTEGER, artist VARCHAR)"}, {"answer": "SELECT song FROM table_name_77 WHERE place > 2 AND draw = 1", "question": "What song is later than place 2 and has a draw number of 1?", "context": "CREATE TABLE table_name_77 (song VARCHAR, place VARCHAR, draw VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE home_team = \"collingwood\"", "question": "What day did Collingwood play as the home team?", "context": "CREATE TABLE table_name_64 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_26 WHERE venue = \"princes park\"", "question": "Who was the away team at Princes Park?", "context": "CREATE TABLE table_name_26 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_68 WHERE home_team = \"hawthorn\"", "question": "Who was Hawthorn's away opponent?", "context": "CREATE TABLE table_name_68 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_45 WHERE streak = \"l1\" AND score = \"l 95\u2013111\"", "question": "Name the record that has a stream of l1 and score of l 95\u2013111", "context": "CREATE TABLE table_name_45 (record VARCHAR, streak VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_71 WHERE visitor = \"washington wizards\"", "question": "Name the attendance for when the washington wizards was visiting", "context": "CREATE TABLE table_name_71 (attendance VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_92 WHERE driver = \"juan pablo montoya\"", "question": "What is the smallest grid for driver of juan pablo montoya?", "context": "CREATE TABLE table_name_92 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_35 WHERE time_retired = \"+1 lap\" AND constructor = \"bar - honda\"", "question": "What driver has a ime/Retired of +1 lap, and a Constructor of bar - honda?", "context": "CREATE TABLE table_name_35 (driver VARCHAR, time_retired VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT chinese_title FROM table_name_91 WHERE premiere = 31", "question": "What is the Chinese title with a premiere rating of 31?", "context": "CREATE TABLE table_name_91 (chinese_title VARCHAR, premiere VARCHAR)"}, {"answer": "SELECT SUM(premiere) FROM table_name_59 WHERE chinese_title = \"\u91ce\u883b\u5976\u5976\u5927\u6230\u6208\u5e2b\u5976\" AND peak < 41", "question": "What is the premiere rating for a Chinese title of \u91ce\u883b\u5976\u5976\u5927\u6230\u6208\u5e2b\u5976, and a Peak smaller than 41?", "context": "CREATE TABLE table_name_59 (premiere INTEGER, chinese_title VARCHAR, peak VARCHAR)"}, {"answer": "SELECT MIN(premiere) FROM table_name_7 WHERE average = 35 AND rank > 1", "question": "What is the premiere rating associated with an average of 35 ranked above 1?", "context": "CREATE TABLE table_name_7 (premiere INTEGER, average VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE venue = \"arden street oval\"", "question": "When was there a game at Arden Street Oval?", "context": "CREATE TABLE table_name_21 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_28 WHERE away_team = \"richmond\"", "question": "How big was the crowd when Richmond was the away team?", "context": "CREATE TABLE table_name_28 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_89 WHERE venue = \"arden street oval\"", "question": "Which away team plays at Arden Street Oval?", "context": "CREATE TABLE table_name_89 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_48 WHERE home_team = \"essendon\"", "question": "How many fans were at Essendon?", "context": "CREATE TABLE table_name_48 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_53 WHERE date = \"11 july 2003\"", "question": "On 11 July 2003, which athlete performed?", "context": "CREATE TABLE table_name_53 (athlete VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_27 WHERE home_team = \"luton town\"", "question": "What was the away team that played luton town?", "context": "CREATE TABLE table_name_27 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT d_45_\u221a FROM table_name_62 WHERE d_41_\u221a = \"r 20\"", "question": "Name the D 45 \u221a when it has D 41\u221a of r 20", "context": "CREATE TABLE table_name_62 (d_45_\u221a VARCHAR, d_41_\u221a VARCHAR)"}, {"answer": "SELECT d_41_\u221a FROM table_name_35 WHERE d_43_\u221a = \"r 18\"", "question": "Name the D 41 \u221a when it has D 43 \u221a of r 18", "context": "CREATE TABLE table_name_35 (d_41_\u221a VARCHAR, d_43_\u221a VARCHAR)"}, {"answer": "SELECT d_49_\u221a FROM table_name_24 WHERE d_46_\u221a = \"i 1 @\"", "question": "Name the D 49 \u221a for when D 46 \u221a of i 1 @", "context": "CREATE TABLE table_name_24 (d_49_\u221a VARCHAR, d_46_\u221a VARCHAR)"}, {"answer": "SELECT d_43_\u221a FROM table_name_89 WHERE d_46_\u221a = \"d 26\"", "question": "Name the D 43 \u221a when it has D 46 \u221a of d 26", "context": "CREATE TABLE table_name_89 (d_43_\u221a VARCHAR, d_46_\u221a VARCHAR)"}, {"answer": "SELECT d_44_\u221a FROM table_name_93 WHERE d_41_\u221a = \"r 41 +\"", "question": "Name the D 44 \u221a for when it has D 41 \u221a of r 41 +", "context": "CREATE TABLE table_name_93 (d_44_\u221a VARCHAR, d_41_\u221a VARCHAR)"}, {"answer": "SELECT d_42_\u221a FROM table_name_58 WHERE d_49_\u221a = \"r 12\"", "question": "Name the D 42 \u221a for when it has D 49 \u221a of r 12", "context": "CREATE TABLE table_name_58 (d_42_\u221a VARCHAR, d_49_\u221a VARCHAR)"}, {"answer": "SELECT goals FROM table_name_5 WHERE score = \"26-28\"", "question": "What were the goals in the game with the 26-28 final score?", "context": "CREATE TABLE table_name_5 (goals VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE date = \"19/3/00\"", "question": "What was the score of the game on 19/3/00?", "context": "CREATE TABLE table_name_60 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_47 WHERE date = \"17/9/00\"", "question": "Which competition was on 17/9/00?", "context": "CREATE TABLE table_name_47 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_64 WHERE score = \"58-4\"", "question": "Which competition ended with a score of 58-4?", "context": "CREATE TABLE table_name_64 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_92 WHERE score = \"30-20\"", "question": "Where was the game that had a final score of 30-20?", "context": "CREATE TABLE table_name_92 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE venue = \"the boulevard\" AND score = \"8-8\"", "question": "When was the game at the boulevard that ended with an 8-8 score?", "context": "CREATE TABLE table_name_72 (date VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT report FROM table_name_82 WHERE date = \"6 may\"", "question": "Name the report for 6 may", "context": "CREATE TABLE table_name_82 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_name_51 WHERE winning_driver = \"louis wagner\"", "question": "Tell me the report with winner of louis wagner", "context": "CREATE TABLE table_name_51 (report VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT report FROM table_name_16 WHERE name = \"cuban race\"", "question": "Name the report with cuban race", "context": "CREATE TABLE table_name_16 (report VARCHAR, name VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_63 WHERE winning_constructor = \"darracq\" AND name = \"cuban race\"", "question": "Name the circuit for darracq and name of cuban race", "context": "CREATE TABLE table_name_63 (circuit VARCHAR, winning_constructor VARCHAR, name VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_15 WHERE circuit = \"havana\"", "question": "Name the winning driver for havana", "context": "CREATE TABLE table_name_15 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_23 WHERE away_team = \"st kilda\"", "question": "What is the home team's score when st kilda is away?", "context": "CREATE TABLE table_name_23 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT decision FROM table_name_62 WHERE visitor = \"montreal\"", "question": "No Decision listed above has a visitor of Montreal.", "context": "CREATE TABLE table_name_62 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_42 WHERE home = \"tampa bay\" AND date = \"december 4\"", "question": "On December 4, Tampa Bay has a record of 12-13-2.", "context": "CREATE TABLE table_name_42 (record VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT remarks FROM table_name_23 WHERE rank > 2 AND alliance = \"skyteam (2012)\"", "question": "What are the remarks for the entry ranked greater than 2 with a skyteam (2012) alliance?", "context": "CREATE TABLE table_name_23 (remarks VARCHAR, rank VARCHAR, alliance VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_13 WHERE alliance = \"star alliance\" AND country = \"brazil\"", "question": "How many airlines have the star alliance and are in brazil?", "context": "CREATE TABLE table_name_13 (rank VARCHAR, alliance VARCHAR, country VARCHAR)"}, {"answer": "SELECT percent_of_slovenes_1951 FROM table_name_22 WHERE percent_of_slovenes_1991 = \"10.1%\"", "question": "What was the percentage of Slovenes in 1951 in the village that had 10.1% in 1991?", "context": "CREATE TABLE table_name_22 (percent_of_slovenes_1951 VARCHAR, percent_of_slovenes_1991 VARCHAR)"}, {"answer": "SELECT percent_of_slovenes_1991 FROM table_name_76 WHERE village__slovenian_ = \"rut\"", "question": "What was Rut's Slovenes percentage in 1991?", "context": "CREATE TABLE table_name_76 (percent_of_slovenes_1991 VARCHAR, village__slovenian_ VARCHAR)"}, {"answer": "SELECT status FROM table_name_33 WHERE unit = \"hamaoka-3\"", "question": "What is the status of the Hamaoka-3 unit?", "context": "CREATE TABLE table_name_33 (status VARCHAR, unit VARCHAR)"}, {"answer": "SELECT gross_capacity FROM table_name_17 WHERE commercial_operation = \"august 28, 1987\"", "question": "What is the gross capacity of the unit that started commercial operation on August 28, 1987?", "context": "CREATE TABLE table_name_17 (gross_capacity VARCHAR, commercial_operation VARCHAR)"}, {"answer": "SELECT commercial_operation FROM table_name_27 WHERE construction_start = \"june 10, 1971\"", "question": "When was commercial operation where construction started June 10, 1971?", "context": "CREATE TABLE table_name_27 (commercial_operation VARCHAR, construction_start VARCHAR)"}, {"answer": "SELECT gross_capacity FROM table_name_54 WHERE reactor_type = \"abwr\"", "question": "What is the gross capacity where the reactor is ABWR type?", "context": "CREATE TABLE table_name_54 (gross_capacity VARCHAR, reactor_type VARCHAR)"}, {"answer": "SELECT commercial_operation FROM table_name_42 WHERE unit = \"hamaoka-4\"", "question": "When was the Hamaoka-4 unit commercial operation date?", "context": "CREATE TABLE table_name_42 (commercial_operation VARCHAR, unit VARCHAR)"}, {"answer": "SELECT status FROM table_name_50 WHERE net_capacity = \"1212 mw\"", "question": "What is the status of the unit with a net capacity of 1212 MW?", "context": "CREATE TABLE table_name_50 (status VARCHAR, net_capacity VARCHAR)"}, {"answer": "SELECT school FROM table_name_32 WHERE player = \"rodney purvis\"", "question": "Which school did player Rodney Purvis belong to?", "context": "CREATE TABLE table_name_32 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_7 WHERE school = \"northeast high school\"", "question": "What was the NBA draft status for Northeast High School?", "context": "CREATE TABLE table_name_7 (nba_draft VARCHAR, school VARCHAR)"}, {"answer": "SELECT player FROM table_name_82 WHERE college = \"baylor\"", "question": "Which players college was Baylor?", "context": "CREATE TABLE table_name_82 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_64 WHERE player = \"alex poythress\"", "question": "What was the college for Alex Poythress?", "context": "CREATE TABLE table_name_64 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT height FROM table_name_78 WHERE player = \"alex poythress\"", "question": "What is Alex Poythress height?", "context": "CREATE TABLE table_name_78 (height VARCHAR, player VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_62 WHERE year > 2000 AND champion = \"allison fouch\"", "question": "What was Allison Fouch score in the year larger than 2000?", "context": "CREATE TABLE table_name_62 (winning_score VARCHAR, year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT COUNT(release_date) FROM table_name_89 WHERE country = \"west germany\" AND release_format = \"vinyl\"", "question": "How many release dates have a Country of west germany, and a Release format of vinyl?", "context": "CREATE TABLE table_name_89 (release_date VARCHAR, country VARCHAR, release_format VARCHAR)"}, {"answer": "SELECT label FROM table_name_31 WHERE country = \"spain\"", "question": "Which label is from Spain?", "context": "CREATE TABLE table_name_31 (label VARCHAR, country VARCHAR)"}, {"answer": "SELECT save FROM table_name_76 WHERE loss = \"santiago (2\u20132)\"", "question": "What's the save when the loss was santiago (2\u20132)?", "context": "CREATE TABLE table_name_76 (save VARCHAR, loss VARCHAR)"}, {"answer": "SELECT season FROM table_name_84 WHERE position = \"2nd\"", "question": "Which season was 2nd position?", "context": "CREATE TABLE table_name_84 (season VARCHAR, position VARCHAR)"}, {"answer": "SELECT played FROM table_name_51 WHERE division = \"nbl div2\" AND position = \"12th\"", "question": "What's the value for played when the division is nbl div2 with 12th position?", "context": "CREATE TABLE table_name_51 (played VARCHAR, division VARCHAR, position VARCHAR)"}, {"answer": "SELECT points FROM table_name_68 WHERE division = \"ebl div1\" AND played = \"22\"", "question": "What's the points when the division is ebl div1 with 22 played?", "context": "CREATE TABLE table_name_68 (points VARCHAR, division VARCHAR, played VARCHAR)"}, {"answer": "SELECT played FROM table_name_2 WHERE position = \"11th\" AND points = \"8\"", "question": "What's the value for played when points is 8 and position is 11th?", "context": "CREATE TABLE table_name_2 (played VARCHAR, position VARCHAR, points VARCHAR)"}, {"answer": "SELECT driver FROM table_name_45 WHERE grid = 13", "question": "Who was driving with a Grid of 13?", "context": "CREATE TABLE table_name_45 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_5 WHERE laps < 6", "question": "For Laps smaller than 6, what does the Grid add up to?", "context": "CREATE TABLE table_name_5 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT report FROM table_name_5 WHERE circuit = \"hockenheimring\"", "question": "What is the report status of Hockenheimring circuit?", "context": "CREATE TABLE table_name_5 (report VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_29 WHERE fastest_lap = \"clay regazzoni\" AND pole_position = \"jackie stewart\"", "question": "Who was the winning driver of the race with Clay Regazzoni as the fastest lap and Jackie stewart as the pole position?", "context": "CREATE TABLE table_name_29 (winning_driver VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT race FROM table_name_53 WHERE winning_driver = \"jacky ickx\" AND fastest_lap = \"clay regazzoni\"", "question": "Which race had Jacky Ickx as the winner and Clay Regazzoni with the fastest lap?", "context": "CREATE TABLE table_name_53 (race VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_53 WHERE grid < 5 AND driver = \"jean alesi\"", "question": "How much time does it take for jean alesi and grids lesser than 5?", "context": "CREATE TABLE table_name_53 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_18 WHERE driver = \"gerhard berger\" AND laps > 56", "question": "What is the low grid for gerhard berger for laps over 56?", "context": "CREATE TABLE table_name_18 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_42 WHERE grid = 13", "question": "If the grid is 13 who is driving?", "context": "CREATE TABLE table_name_42 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(purse__) AS $__ FROM table_name_5 WHERE tournament = \"royal caribbean golf classic\"", "question": "What is the purse total for the royal caribbean golf classic?", "context": "CREATE TABLE table_name_5 (purse__ INTEGER, tournament VARCHAR)"}, {"answer": "SELECT title FROM table_name_52 WHERE length = \"3:38\"", "question": "Which title is 3:38 long?", "context": "CREATE TABLE table_name_52 (title VARCHAR, length VARCHAR)"}, {"answer": "SELECT title FROM table_name_37 WHERE length = \"3:43\"", "question": "Which title is 3:43 long?", "context": "CREATE TABLE table_name_37 (title VARCHAR, length VARCHAR)"}, {"answer": "SELECT dance FROM table_name_28 WHERE visual_arts = \"bryon kim\"", "question": "What Dance has the Visual Arts of Bryon Kim?", "context": "CREATE TABLE table_name_28 (dance VARCHAR, visual_arts VARCHAR)"}, {"answer": "SELECT dance FROM table_name_55 WHERE year = 2004", "question": "In 2004, what is the Dance?", "context": "CREATE TABLE table_name_55 (dance VARCHAR, year VARCHAR)"}, {"answer": "SELECT artist FROM table_name_52 WHERE draw = 1", "question": "What artist had 1 draw?", "context": "CREATE TABLE table_name_52 (artist VARCHAR, draw VARCHAR)"}, {"answer": "SELECT iata FROM table_name_28 WHERE city = \"jeddah\"", "question": "Name the IATA for jeddah", "context": "CREATE TABLE table_name_28 (iata VARCHAR, city VARCHAR)"}, {"answer": "SELECT iata FROM table_name_80 WHERE city = \"jessore\"", "question": "Name the IATA for jessore", "context": "CREATE TABLE table_name_80 (iata VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_97 WHERE country = \"thailand\"", "question": "Name the city for thailand", "context": "CREATE TABLE table_name_97 (city VARCHAR, country VARCHAR)"}, {"answer": "SELECT iata FROM table_name_20 WHERE icao = \"wmkk\"", "question": "Name the IATA of wmkk", "context": "CREATE TABLE table_name_20 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE away_team = \"carlton\"", "question": "When did the away team carlton play?", "context": "CREATE TABLE table_name_88 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_20 WHERE country = \"ita\" AND rank < 13", "question": "Which constructor is from ITA with a rank less than 13?", "context": "CREATE TABLE table_name_20 (constructor VARCHAR, country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE week = 4", "question": "Who was the opponent in the Week 4 game?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_76 WHERE year < 2010 AND laps < 326", "question": "Who are the co-drivers before 2010 with under 326 laps?", "context": "CREATE TABLE table_name_76 (co_drivers VARCHAR, year VARCHAR, laps VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_45 WHERE laps < 329 AND class = \"gt2\" AND team = \"risi competizione\" AND pos = \"dnf\"", "question": "Who are the co-drivers the risi competizione gt2 class that went under 329 laps and recorded a DNF?", "context": "CREATE TABLE table_name_45 (co_drivers VARCHAR, pos VARCHAR, team VARCHAR, laps VARCHAR, class VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_24 WHERE time_retired = \"+2 laps\" AND driver = \"felice bonetto\"", "question": "Tell me the highest laps for time/retired of +2 laps and driver of felice bonetto", "context": "CREATE TABLE table_name_24 (laps INTEGER, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_41 WHERE grid > 13 AND laps < 60 AND time_retired = \"accident\"", "question": "I want to know the driver when grid is greater than 13 and laps is less than 60 with time/retired of accident", "context": "CREATE TABLE table_name_41 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT album FROM table_name_45 WHERE year > 2007", "question": "Name the album for years after 2007", "context": "CREATE TABLE table_name_45 (album VARCHAR, year INTEGER)"}, {"answer": "SELECT score FROM table_name_33 WHERE date = \"october 17, 2007\"", "question": "What was the score on october 17, 2007?", "context": "CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_71 WHERE score = \"3-0\"", "question": "What was the competition for score of 3-0", "context": "CREATE TABLE table_name_71 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE turkey_scorers = \"nihat kahveci\"", "question": "I want the date for nihat kahveci", "context": "CREATE TABLE table_name_93 (date VARCHAR, turkey_scorers VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_8 WHERE reg_gp < 0", "question": "What is the smallest pick with a Reg GP less than 0?", "context": "CREATE TABLE table_name_8 (pick__number INTEGER, reg_gp INTEGER)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_80 WHERE reg_gp > 0", "question": "What is the total of pick numbers with a Reg GP larger than 0?", "context": "CREATE TABLE table_name_80 (pick__number VARCHAR, reg_gp INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_85 WHERE faults = \"refusal\" AND rider = \"h.r.h. prince abdullah al-soud\"", "question": "What is the total points when there is a refusal fault and the rider is H.R.H. Prince Abdullah Al-Soud?", "context": "CREATE TABLE table_name_85 (points INTEGER, faults VARCHAR, rider VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_96 WHERE horse = \"chippison\"", "question": "What is the total points when the horse is Chippison?", "context": "CREATE TABLE table_name_96 (points VARCHAR, horse VARCHAR)"}, {"answer": "SELECT total_time___s__ FROM table_name_53 WHERE horse = \"pinot grigio\"", "question": "What is the total time (s) for the horse Pinot Grigio?", "context": "CREATE TABLE table_name_53 (total_time___s__ VARCHAR, horse VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_93 WHERE time___s__ = \"81.78\"", "question": "What is the average amount of points when the time (s) is 81.78?", "context": "CREATE TABLE table_name_93 (points INTEGER, time___s__ VARCHAR)"}, {"answer": "SELECT position FROM table_name_59 WHERE school = \"glades day school\"", "question": "What is the position of the player from Glades Day School?", "context": "CREATE TABLE table_name_59 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_name_78 WHERE college = \"notre dame\"", "question": "What is the position of the player who went to college of notre dame?", "context": "CREATE TABLE table_name_78 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT school FROM table_name_2 WHERE college = \"michigan\" AND hometown = \"wheaton, illinois\"", "question": "What is the school of the player who went to the college of michigan and originally comes from Wheaton, Illinois?", "context": "CREATE TABLE table_name_2 (school VARCHAR, college VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_12 WHERE driver = \"otto stuppacher\"", "question": "What Chassis was driven by Otto Stuppacher?", "context": "CREATE TABLE table_name_12 (chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_1 WHERE chassis = \"n175\" AND rounds = \"13\"", "question": "Who drove the car with the n175 chassis in round 13?", "context": "CREATE TABLE table_name_1 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_4 WHERE driver = \"john watson\"", "question": "What chassis did John Watson drive?", "context": "CREATE TABLE table_name_4 (chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_53 WHERE constellation = \"sextans\" AND declination___j2000__ = \"\u00b028\u203201\u2033\"", "question": "what is the right ascension (j2000) when the constellation is sextans and the declination (j2000) is \u00b028\u203201\u2033?", "context": "CREATE TABLE table_name_53 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, declination___j2000__ VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_10 WHERE right_ascension___j2000__ = \"10h18m58.4s\"", "question": "what is the constellation when the Right ascension ( J2000 ) is 10h18m58.4s?", "context": "CREATE TABLE table_name_10 (constellation VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT MAX(ngc_number) FROM table_name_51 WHERE declination___j2000__ = \"\u00b025\u203226\u2033\"", "question": "what is the highest ngc number when the declination (j2000) is \u00b025\u203226\u2033?", "context": "CREATE TABLE table_name_51 (ngc_number INTEGER, declination___j2000__ VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_85 WHERE home_team = \"collingwood\"", "question": "What is the score for Collingwood as the home team?", "context": "CREATE TABLE table_name_85 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_15 WHERE venue = \"princes park\"", "question": "What did the home team score at Princes Park?", "context": "CREATE TABLE table_name_15 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_68 WHERE simplified = \"\u4e0a\u676d\u53bf\" AND area < 2 OFFSET 879", "question": "What's the sum of the population for the place simplified \u4e0a\u676d\u53bf with an area smaller than 2,879?", "context": "CREATE TABLE table_name_68 (population INTEGER, simplified VARCHAR, area VARCHAR)"}, {"answer": "SELECT COUNT(density) FROM table_name_57 WHERE population > 393 OFFSET 390", "question": "What's the total number of density for the place with a population over 393,390?", "context": "CREATE TABLE table_name_57 (density VARCHAR, population INTEGER)"}, {"answer": "SELECT AVG(area) FROM table_name_20 WHERE english_name = \"xinluo district\"", "question": "What's the average area for the xinluo district?", "context": "CREATE TABLE table_name_20 (area INTEGER, english_name VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_77 WHERE date = \"july 30\"", "question": "What was the attendance on July 30?", "context": "CREATE TABLE table_name_77 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_26 WHERE result = \"0 \u2013 4\"", "question": "How many Goals have a Result of 0 \u2013 4?", "context": "CREATE TABLE table_name_26 (goals INTEGER, result VARCHAR)"}, {"answer": "SELECT goals FROM table_name_33 WHERE result = \"12 \u2013 0\"", "question": "How many goals have a Result of 12 \u2013 0?", "context": "CREATE TABLE table_name_33 (goals VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_77 WHERE date = \"9 october 2009\"", "question": "Which Result has a Date of 9 october 2009?", "context": "CREATE TABLE table_name_77 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_45 WHERE date = \"7 february 2010\"", "question": "Which Goals have a Date of 7 february 2010?", "context": "CREATE TABLE table_name_45 (goals INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_89 WHERE chassis = \"jordan 193\"", "question": "What was the first year to have a Chassis of Jordan 193?", "context": "CREATE TABLE table_name_89 (year INTEGER, chassis VARCHAR)"}, {"answer": "SELECT school FROM table_name_28 WHERE mascot = \"raiders\"", "question": "Which School's Mascot is Raiders?", "context": "CREATE TABLE table_name_28 (school VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_51 WHERE school = \"north valleys\"", "question": "What is North Valleys School Mascot?", "context": "CREATE TABLE table_name_51 (mascot VARCHAR, school VARCHAR)"}, {"answer": "SELECT SUM(enrollment) FROM table_name_66 WHERE mascot = \"cougars\"", "question": "What is the Enrollment where Cougars is a Mascot?", "context": "CREATE TABLE table_name_66 (enrollment INTEGER, mascot VARCHAR)"}, {"answer": "SELECT league FROM table_name_87 WHERE school = \"reed\"", "question": "In what League is the Reed School?", "context": "CREATE TABLE table_name_87 (league VARCHAR, school VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_23 WHERE enrollment > 2 OFFSET 464", "question": "What Mascot has an Enrollment greater than 2,464?", "context": "CREATE TABLE table_name_23 (mascot VARCHAR, enrollment INTEGER)"}, {"answer": "SELECT runner_up FROM table_name_60 WHERE third_place = \"omar camporese\"", "question": "Who was the runner-up in the tournament in which Omar Camporese held third place?", "context": "CREATE TABLE table_name_60 (runner_up VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_86 WHERE tournament = \"london\"", "question": "Who was the runner-up in the tournament in London?", "context": "CREATE TABLE table_name_86 (runner_up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE third_place = \"michael stich\"", "question": "What was the score in the tournament in which Michael Stich took third place?", "context": "CREATE TABLE table_name_32 (score VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_16 WHERE score = \"2\u20136, 7\u20136(3), [10\u20135]\"", "question": "Who holds third place in the tournament with a score of 2\u20136, 7\u20136(3), [10\u20135]?", "context": "CREATE TABLE table_name_16 (third_place VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_32 WHERE goals_against = 70 AND ties < 0", "question": "what is the least number of goals for when the goals against is 70 and the ties less than 0?", "context": "CREATE TABLE table_name_32 (goals_for INTEGER, goals_against VARCHAR, ties VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_10 WHERE wins = 9 AND ties > 0", "question": "what is the average losses when the wins is 9 and ties more than 0?", "context": "CREATE TABLE table_name_10 (losses INTEGER, wins VARCHAR, ties VARCHAR)"}, {"answer": "SELECT MIN(ties) FROM table_name_10 WHERE losses = 7 AND games_played < 10", "question": "what is the lowest number of ties when the losses is 7 and games played is less than 10?", "context": "CREATE TABLE table_name_10 (ties INTEGER, losses VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT SUM(games_played) FROM table_name_31 WHERE losses < 7 AND wins = 6 AND goals_for > 76", "question": "what is the sum of games played when the losses is less than 7, the wins is 6 and the goals for is more than 76?", "context": "CREATE TABLE table_name_31 (games_played INTEGER, goals_for VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(games_played) FROM table_name_8 WHERE goals_for < 30", "question": "what is the total number of games played when the goals for is less than 30?", "context": "CREATE TABLE table_name_8 (games_played VARCHAR, goals_for INTEGER)"}, {"answer": "SELECT SUM(wins) FROM table_name_53 WHERE team = \"ottawa hockey club\" AND games_played < 10", "question": "what is the sum of wins for the ottawa hockey club when the games played is less than 10?", "context": "CREATE TABLE table_name_53 (wins INTEGER, team VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_34 WHERE date = \"february 3, 2008\"", "question": "How many people attended the game on February 3, 2008?", "context": "CREATE TABLE table_name_34 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_17 WHERE away_team = \"collingwood\"", "question": "What is the name of the home team that played against Collingwood?", "context": "CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_50 WHERE venue = \"windy hill\"", "question": "Which Away team played at the Windy Hill Venue?", "context": "CREATE TABLE table_name_50 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_9 WHERE venue = \"glenferrie oval\"", "question": "How large of a crowd can the Glenferrie oval hold?", "context": "CREATE TABLE table_name_9 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_48 WHERE venue = \"brunswick street oval\"", "question": "How large of a crowd can the Brunswick Street Oval hold?", "context": "CREATE TABLE table_name_48 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(league) FROM table_name_67 WHERE total > 8", "question": "What is the lowest number of goals scored by a player in the normal league games where more than 8 total goals were scored?", "context": "CREATE TABLE table_name_67 (league INTEGER, total INTEGER)"}, {"answer": "SELECT AVG(fa_cup) FROM table_name_72 WHERE name = \"whelan\" AND total > 7", "question": "What is the average number of goals scored in the FA Cup by Whelan where he had more than 7 total goals?", "context": "CREATE TABLE table_name_72 (fa_cup INTEGER, name VARCHAR, total VARCHAR)"}, {"answer": "SELECT uyghur_latin___uly__ FROM table_name_14 WHERE population__2010_census_ = \"69,361\"", "question": "What is the Uyghur Latin with a population of 69,361?", "context": "CREATE TABLE table_name_14 (uyghur_latin___uly__ VARCHAR, population__2010_census_ VARCHAR)"}, {"answer": "SELECT hanyu_pinyin FROM table_name_94 WHERE area__km\u00b2_ = \"400\"", "question": "What is the Hanyu Pinyin with an area of 400?", "context": "CREATE TABLE table_name_94 (hanyu_pinyin VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT hanyu_pinyin FROM table_name_32 WHERE density___km\u00b2_ = \"39.63\"", "question": "What is the Hanyu Pinyin with a density of 39.63?", "context": "CREATE TABLE table_name_32 (hanyu_pinyin VARCHAR, density___km\u00b2_ VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_71 WHERE visitor = \"nuggets\" AND leading_scorer = \"j.r. smith (28)\"", "question": "How many people were in attendance when the visiting team was the Nuggets and the leading scorer was J.R. Smith (28)?", "context": "CREATE TABLE table_name_71 (attendance INTEGER, visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_78 WHERE date = \"23 february 2008\"", "question": "Who was the leading scorer on 23 February 2008?", "context": "CREATE TABLE table_name_78 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT nominated_for FROM table_name_95 WHERE year < 2002 AND award = \"national television awards\" AND category = \"most popular comedy performer\"", "question": "Name what was nominated in years before 2002 for most popular comedy performer at the national television awards", "context": "CREATE TABLE table_name_95 (nominated_for VARCHAR, category VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT result FROM table_name_83 WHERE award = \"bafta tv awards\"", "question": "Name the result for the bafta tv awards", "context": "CREATE TABLE table_name_83 (result VARCHAR, award VARCHAR)"}, {"answer": "SELECT category FROM table_name_26 WHERE result = \"nominated\" AND award = \"british comedy awards\"", "question": "Name the category for nominated at the british comedy awards", "context": "CREATE TABLE table_name_26 (category VARCHAR, result VARCHAR, award VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_57 WHERE category = \"most popular actress\" AND nominated_for = \"birds of a feather\"", "question": "Name the year that Birds of a feather category for most popular actress was nominated", "context": "CREATE TABLE table_name_57 (year INTEGER, category VARCHAR, nominated_for VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE constructor = \"ferrari\"", "question": "What dates did Ferrari win races?", "context": "CREATE TABLE table_name_40 (date VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_name_55 WHERE production_code = \"2395120\"", "question": "What was the original air date of the episode with production code 2395120?", "context": "CREATE TABLE table_name_55 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MAX(pts) FROM table_name_85 WHERE engine = \"ferrari v12\" AND chassis = \"ferrari 1512\" AND year > 1965", "question": "How many points for the ferrari v12 engine and ferrari 1512 chassis, after 1965?", "context": "CREATE TABLE table_name_85 (pts INTEGER, year VARCHAR, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE crowd > 30 OFFSET 495", "question": "What was the date when the crowd was larger than 30,495?", "context": "CREATE TABLE table_name_58 (date VARCHAR, crowd INTEGER)"}, {"answer": "SELECT home_team FROM table_name_59 WHERE away_team = \"carlton\"", "question": "What was the home team when Carlton was the away team?", "context": "CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_70 WHERE venue = \"lake oval\"", "question": "What was the score for the away team when they played at lake oval?", "context": "CREATE TABLE table_name_70 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_43 WHERE home_team = \"hawthorn\"", "question": "What was the score of the away team when hawthorn was the home team?", "context": "CREATE TABLE table_name_43 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_26 WHERE rank > 4 AND total > 5 AND silver < 6", "question": "How many golds for nations ranked below 4, over 5 medals, and under 6 silvers?", "context": "CREATE TABLE table_name_26 (gold VARCHAR, silver VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT rank FROM table_name_21 WHERE winning_party_2003 = \"labour\" AND swing_to_gain > 2.13 AND result = \"lab hold\" AND constituency = \"linlithgow\"", "question": "Which rank had the Labour party winning in 2003, a swing to gain that was larger than 2.13, a lab hold as a result, and which took place in the Linlithgow constituency?", "context": "CREATE TABLE table_name_21 (rank VARCHAR, constituency VARCHAR, result VARCHAR, winning_party_2003 VARCHAR, swing_to_gain VARCHAR)"}, {"answer": "SELECT winning_party_2003 FROM table_name_26 WHERE swing_to_gain < 2.92 AND result = \"ld hold\"", "question": "Which party won in 2003, that had a swing to gain of less than 2.92 and which resulted in a ld hold?", "context": "CREATE TABLE table_name_26 (winning_party_2003 VARCHAR, swing_to_gain VARCHAR, result VARCHAR)"}, {"answer": "SELECT constituency FROM table_name_72 WHERE winning_party_2003 = \"conservative\"", "question": "Which constituency had the conservative party win in 2003?", "context": "CREATE TABLE table_name_72 (constituency VARCHAR, winning_party_2003 VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_82 WHERE visiting_team = \"washington redskins\" AND date = \"september 4\"", "question": "What is the final score when the visiting team is the Washington Redskins and the date is September 4?", "context": "CREATE TABLE table_name_82 (final_score VARCHAR, visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_12 WHERE date = \"december 14\"", "question": "What is the stadium when the date of the game is December 14?", "context": "CREATE TABLE table_name_12 (stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_6 WHERE visiting_team = \"denver broncos\"", "question": "What is the name of the stadium when the visiting team is the Denver Broncos?", "context": "CREATE TABLE table_name_6 (stadium VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_74 WHERE away_team = \"melbourne\"", "question": "What was the smallest crowd when Melbourne was the away team?", "context": "CREATE TABLE table_name_74 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away FROM table_name_5 WHERE club = \"neath\"", "question": "What is the Away when the Club is Neath?", "context": "CREATE TABLE table_name_5 (away VARCHAR, club VARCHAR)"}, {"answer": "SELECT country FROM table_name_64 WHERE area_in_m\u00b2 = \"7,914\"", "question": "What country has area of 7,914 m\u00b2?", "context": "CREATE TABLE table_name_64 (country VARCHAR, area_in_m\u00b2 VARCHAR)"}, {"answer": "SELECT city FROM table_name_23 WHERE completion = \"1910-1978\"", "question": "What city was completed in 1910-1978?", "context": "CREATE TABLE table_name_23 (city VARCHAR, completion VARCHAR)"}, {"answer": "SELECT country FROM table_name_17 WHERE area_in_m\u00b2 = \"3,170\"", "question": "What is the country with area of 3,170 in m\u00b2?", "context": "CREATE TABLE table_name_17 (country VARCHAR, area_in_m\u00b2 VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_17 WHERE grid = 17", "question": "I want the time/retired for grid of 17", "context": "CREATE TABLE table_name_17 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_69 WHERE field = \"mitchel athletic complex\"", "question": "Name the opponent when the field is mitchel athletic complex", "context": "CREATE TABLE table_name_69 (opponent VARCHAR, field VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE home_away = \"away\" AND opponent = \"bayhawks\"", "question": "Name the date for when the home/away is away and the opponent is bayhawks", "context": "CREATE TABLE table_name_81 (date VARCHAR, home_away VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT field FROM table_name_43 WHERE result = \"w 12-11\"", "question": "Say the field with a result of w 12-11", "context": "CREATE TABLE table_name_43 (field VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_37 WHERE home_away = \"home\" AND result = \"w 16-15\"", "question": "Name the opponent when the result is w 16-15 and has home/away of home", "context": "CREATE TABLE table_name_37 (opponent VARCHAR, home_away VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE result = \"w 12-11\"", "question": "Name the opponent when the resultwas w 12-11", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_9 WHERE home_away = \"home\" AND date = \"july 27\"", "question": "Name the opponent which has a home/away of home and date of july 27", "context": "CREATE TABLE table_name_9 (opponent VARCHAR, home_away VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_71 WHERE venue = \"mcg\"", "question": "I want to know the home team for mcg venue", "context": "CREATE TABLE table_name_71 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_34 WHERE name = \"konchesky\"", "question": "Where did Konchesky move to?", "context": "CREATE TABLE table_name_34 (moving_to VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_94 WHERE home_team = \"essendon\"", "question": "Who is Essendon's home team?", "context": "CREATE TABLE table_name_94 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_5 WHERE away_team = \"north melbourne\"", "question": "What is the away team score for North Melbourne's home team?", "context": "CREATE TABLE table_name_5 (away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_89 WHERE home_team = \"geelong\"", "question": "What is Geelong's home team score?", "context": "CREATE TABLE table_name_89 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_27 WHERE home_team = \"st kilda\"", "question": "What is the home team score for St Kilda's home team?", "context": "CREATE TABLE table_name_27 (home_team VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_59 WHERE grid > 1 AND rank = 16", "question": "Who was #16 rank constructor with a grid of more than 1?", "context": "CREATE TABLE table_name_59 (constructor VARCHAR, grid VARCHAR, rank VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_12 WHERE rank > 10 AND driver = \"joe james\"", "question": "Who constructed Joe James car when his rank was more than 10?", "context": "CREATE TABLE table_name_12 (constructor VARCHAR, rank VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_78 WHERE laps > 182 AND qual > 134.14 AND time_retired = \"+14:21.72\" AND grid < 3", "question": "What was the rank of the car who had more than 182 laps, gris less than 3, with a qual time of more than 134.14 and a time/retired of +14:21.72?", "context": "CREATE TABLE table_name_78 (rank INTEGER, grid VARCHAR, time_retired VARCHAR, laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_35 WHERE driver = \"chuck stevenson\" AND grid < 11", "question": "How many laps did Chuck Stevenson have with a grid of less than 11?", "context": "CREATE TABLE table_name_35 (laps VARCHAR, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_46 WHERE opponent = \"san francisco 49ers\"", "question": "Which Week has an Opponent of san francisco 49ers?", "context": "CREATE TABLE table_name_46 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(snatch) FROM table_name_50 WHERE clean_ & _jerk = \"145.0\" AND bodyweight > 76.22", "question": "What is the snatch for the Clean & jerk of 145.0, and a Bodyweight larger than 76.22?", "context": "CREATE TABLE table_name_50 (snatch INTEGER, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT clean_ & _jerk FROM table_name_82 WHERE snatch < 150 AND bodyweight = 76.18", "question": "What is the Clean & jerk for the snatch less than 150 and a Bodyweight of 76.18?", "context": "CREATE TABLE table_name_82 (clean_ VARCHAR, _jerk VARCHAR, snatch VARCHAR, bodyweight VARCHAR)"}, {"answer": "SELECT MIN(bodyweight) FROM table_name_36 WHERE clean_ & _jerk = \"145.0\" AND snatch < 122.5", "question": "What is the least Bodyweight for the Clean & jerk of 145.0, and a Snatch smaller than 122.5?", "context": "CREATE TABLE table_name_36 (bodyweight INTEGER, snatch VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT clean_ & _jerk FROM table_name_36 WHERE bodyweight < 76.55 AND total__kg_ = \"\u2013\"", "question": "What is the Clean & jerk for the bodyweight less than 76.55, and the Total (kg) of \u2013?", "context": "CREATE TABLE table_name_36 (clean_ VARCHAR, _jerk VARCHAR, bodyweight VARCHAR, total__kg_ VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_17 WHERE result = \"won\"", "question": "What was the latest year that resulted in won?", "context": "CREATE TABLE table_name_17 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT position FROM table_name_35 WHERE pick = 50", "question": "Which position had a pick of 50?", "context": "CREATE TABLE table_name_35 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_1 WHERE draft = \"2008-3 2008\"", "question": "Which team had a 2008-3 2008 draft?", "context": "CREATE TABLE table_name_1 (school_club_team VARCHAR, draft VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_33 WHERE round > 2", "question": "What is the average pick after Round 2?", "context": "CREATE TABLE table_name_33 (pick INTEGER, round INTEGER)"}, {"answer": "SELECT date FROM table_name_15 WHERE result = \"loss\" AND competition = \"europe/africa group i, round robin\" AND location = \"murcia (esp)\" AND year > 1998", "question": "What is the date of the game with a loss result in the Europe/Africa Group I, Round Robin competition in Murcia (esp) after 1998?", "context": "CREATE TABLE table_name_15 (date VARCHAR, year VARCHAR, location VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_23 WHERE competition = \"europe/africa group i, play-off\"", "question": "What is the result of the Europe/Africa Group I, play-off competition?", "context": "CREATE TABLE table_name_23 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_9 WHERE location = \"murcia (esp)\" AND year < 1999 AND competition = \"europe/africa group i, round robin\"", "question": "What is the result of the europe/africa group i, round robin game in Murcia (esp) before 1999?", "context": "CREATE TABLE table_name_9 (result VARCHAR, competition VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT position FROM table_name_48 WHERE school = \"clemson\"", "question": "What position did the person from Clemson school fill?", "context": "CREATE TABLE table_name_48 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_25 WHERE round = \"round 4\" AND player = \"rudy harris\"", "question": "What was Rudy Harris' pick number in round 4?", "context": "CREATE TABLE table_name_25 (pick INTEGER, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_7 WHERE round = \"round 8\" AND position = \"kicker\"", "question": "What was the pick number for the kicker in round 8?", "context": "CREATE TABLE table_name_7 (pick VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE year = 2013", "question": "What is the result from 2013?", "context": "CREATE TABLE table_name_49 (result VARCHAR, year VARCHAR)"}, {"answer": "SELECT finals_mvp FROM table_name_26 WHERE eastern_champion = \"detroit shock\" AND western_champion = \"sacramento monarchs\"", "question": "Who is the MVP finals that includes Detroit shock from the eastern championship and Sacramento monarchs from western championship?", "context": "CREATE TABLE table_name_26 (finals_mvp VARCHAR, eastern_champion VARCHAR, western_champion VARCHAR)"}, {"answer": "SELECT result FROM table_name_83 WHERE western_champion = \"sacramento monarchs\" AND eastern_champion = \"connecticut sun\"", "question": "What is the score from the Sacramento monarchs from the west and the Connecticut sun from the east?", "context": "CREATE TABLE table_name_83 (result VARCHAR, western_champion VARCHAR, eastern_champion VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_96 WHERE category = \"best lead actress\"", "question": "Who is the nominee for Best Lead Actress?", "context": "CREATE TABLE table_name_96 (nominee VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_name_81 WHERE nominee = \"carmen salinas\"", "question": "In what category is Carmen Salinas nominated?", "context": "CREATE TABLE table_name_81 (category VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_8 WHERE category = \"best supporting actress\"", "question": "What year was there a category of Best Supporting Actress?", "context": "CREATE TABLE table_name_8 (year INTEGER, category VARCHAR)"}, {"answer": "SELECT londonborough FROM table_name_15 WHERE dialcode = \"01992\"", "question": "What Londongborough has a Dialcode of 01992?", "context": "CREATE TABLE table_name_15 (londonborough VARCHAR, dialcode VARCHAR)"}, {"answer": "SELECT dialcode FROM table_name_62 WHERE location = \"whitechapel\"", "question": "What is the Dialcode of whitechapel?", "context": "CREATE TABLE table_name_62 (dialcode VARCHAR, location VARCHAR)"}, {"answer": "SELECT postcodedistrict FROM table_name_76 WHERE location = \"eden park\"", "question": "What is the name of the Post code district that is in Eden Park?", "context": "CREATE TABLE table_name_76 (postcodedistrict VARCHAR, location VARCHAR)"}, {"answer": "SELECT post_town FROM table_name_54 WHERE dialcode = \"020\" AND location = \"hook\"", "question": "Which Post Town has a Dialcode of 020 and is located in Hook?", "context": "CREATE TABLE table_name_54 (post_town VARCHAR, dialcode VARCHAR, location VARCHAR)"}, {"answer": "SELECT dialcode FROM table_name_11 WHERE location = \"edmonton\"", "question": "What Dialcode has a location of Edmonton?", "context": "CREATE TABLE table_name_11 (dialcode VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_82 WHERE earnings__$__ < 224 OFFSET 589", "question": "Which average rank has an Earning amount that is less than $224,589?", "context": "CREATE TABLE table_name_82 (rank INTEGER, earnings__$__ INTEGER)"}, {"answer": "SELECT country FROM table_name_93 WHERE rank = 2", "question": "Which country has a rank of 2?", "context": "CREATE TABLE table_name_93 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(roll) FROM table_name_7 WHERE name = \"shelly park school\"", "question": "What is the total number on roll for Shelly Park school?", "context": "CREATE TABLE table_name_7 (roll VARCHAR, name VARCHAR)"}, {"answer": "SELECT week FROM table_name_96 WHERE record = \"0-5\"", "question": "What week was the record 0-5?", "context": "CREATE TABLE table_name_96 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT result FROM table_name_31 WHERE attendance = \"45,320\"", "question": "What was the result of the game with the attendance of 45,320?", "context": "CREATE TABLE table_name_31 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT kickoff_[a_] FROM table_name_68 WHERE date = \"september 15, 1985\"", "question": "What time was the kickoff on September 15, 1985?", "context": "CREATE TABLE table_name_68 (kickoff_ VARCHAR, a_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_74 WHERE long = \"5\" AND yards = \"6\"", "question": "Which Player had a Long of 5 and Yards of 6?", "context": "CREATE TABLE table_name_74 (player VARCHAR, long VARCHAR, yards VARCHAR)"}, {"answer": "SELECT yards FROM table_name_32 WHERE player = \"rob turner\"", "question": "How many Yards did Player Rob Turner collect?", "context": "CREATE TABLE table_name_32 (yards VARCHAR, player VARCHAR)"}, {"answer": "SELECT home FROM table_name_52 WHERE date = \"march 5\"", "question": "Who is the home team on March 5?", "context": "CREATE TABLE table_name_52 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_62 WHERE date = \"march 24\"", "question": "Who is the visitor on March 24?", "context": "CREATE TABLE table_name_62 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_57 WHERE date = \"march 24\"", "question": "Who was the home team on March 24?", "context": "CREATE TABLE table_name_57 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT assisted FROM table_name_79 WHERE solo = 6 AND sack < 5", "question": "what is the assisted when the solo is 6 and sack is less than 5?", "context": "CREATE TABLE table_name_79 (assisted VARCHAR, solo VARCHAR, sack VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_61 WHERE played > 34", "question": "How many losses had a played number that was more than 34?", "context": "CREATE TABLE table_name_61 (losses VARCHAR, played INTEGER)"}, {"answer": "SELECT MAX(goals_against) FROM table_name_79 WHERE wins = 19 AND goals_for > 53", "question": "Which highest 'goals against' number had wins of 19 and a 'goals for' number that was bigger than 53?", "context": "CREATE TABLE table_name_79 (goals_against INTEGER, wins VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_58 WHERE played > 34", "question": "Which mean number of losses had a played number that was bigger than 34?", "context": "CREATE TABLE table_name_58 (losses INTEGER, played INTEGER)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_95 WHERE played < 34", "question": "Which lowest goals for number had a played number of less than 34?", "context": "CREATE TABLE table_name_95 (goals_for INTEGER, played INTEGER)"}, {"answer": "SELECT COUNT(played) FROM table_name_29 WHERE goal_difference > 0 AND club = \"valencia cf\"", "question": "Which Played number had a goal difference of more than 0 when the club was Valencia CF?", "context": "CREATE TABLE table_name_29 (played VARCHAR, goal_difference VARCHAR, club VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE college = \"san sebastian\"", "question": "What player has a college named san sebastian?", "context": "CREATE TABLE table_name_97 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_33 WHERE pick = 45", "question": "What college has pick 45", "context": "CREATE TABLE table_name_33 (college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_name_88 WHERE season__number < 14 AND production_code > 709 AND series__number < 183", "question": "Name the air date for the seasons before 14 and series less than 183 with production code more than 709", "context": "CREATE TABLE table_name_88 (original_air_date VARCHAR, series__number VARCHAR, season__number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_name_78 WHERE series__number > 175 AND production_code < 706", "question": "Tell me the title for the production code less than 706 with series number more than 175", "context": "CREATE TABLE table_name_78 (title VARCHAR, series__number VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(series__number) FROM table_name_41 WHERE production_code = 717 AND season__number < 17", "question": "Name the least series number with production code of 717 and season number less than 17", "context": "CREATE TABLE table_name_41 (series__number INTEGER, production_code VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT can_yay\u0131nlar\u0131 FROM table_name_39 WHERE g\u00fczel\u00e7aml\u0131\u2019nin_kay\u0131p_panteri = \"\u00e7evreci peri\"", "question": "Which Can Yay\u0131nlar\u0131 has a G\u00fczel\u00e7aml\u0131\u2019nin Kay\u0131p Panteri of \u00e7evreci peri?", "context": "CREATE TABLE table_name_39 (can_yay\u0131nlar\u0131 VARCHAR, g\u00fczel\u00e7aml\u0131\u2019nin_kay\u0131p_panteri VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_76 WHERE g\u00fczel\u00e7aml\u0131\u2019s_lost_panther = \"green fairy\"", "question": "Which 2005 has a G\u00fczel\u00e7aml\u0131\u2019s Lost Panther of green fairy?", "context": "CREATE TABLE table_name_76 (g\u00fczel\u00e7aml\u0131\u2019s_lost_panther VARCHAR)"}, {"answer": "SELECT MAX(2005) FROM table_name_38 WHERE g\u00fczel\u00e7aml\u0131\u2019s_lost_panther = \"the muse\"", "question": "Which 2005 has a G\u00fczel\u00e7aml\u0131\u2019s Lost Panther of the muse?", "context": "CREATE TABLE table_name_38 (g\u00fczel\u00e7aml\u0131\u2019s_lost_panther VARCHAR)"}, {"answer": "SELECT grid FROM table_name_11 WHERE driver = \"pierre levegh\"", "question": "what is the grid when the driver is pierre levegh?", "context": "CREATE TABLE table_name_11 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT grid FROM table_name_21 WHERE laps = 2", "question": "what is the grid when the laps is 2?", "context": "CREATE TABLE table_name_21 (grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_81 WHERE driver = \"toulo de graffenried\"", "question": "what is the time/retired when the driver is toulo de graffenried?", "context": "CREATE TABLE table_name_81 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_36 WHERE grid < 13 AND constructor = \"alfa romeo\" AND laps > 12", "question": "what is the time/retired when the grid is less than 13, the constructor is alfa romeo and the laps is more than 12?", "context": "CREATE TABLE table_name_36 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_94 WHERE laps > 20", "question": "what is the grid when the laps is more than 20?", "context": "CREATE TABLE table_name_94 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT d_49_\u221a FROM table_name_37 WHERE d_47_\u221a = \"d 67 +\"", "question": "What is the D 49 \u221a when  D 47 \u221a is d 67 +?", "context": "CREATE TABLE table_name_37 (d_49_\u221a VARCHAR, d_47_\u221a VARCHAR)"}, {"answer": "SELECT d_44_\u221a FROM table_name_19 WHERE d_47_\u221a = \"r 7\"", "question": "What is the number for  D 44 \u221a when D 47 \u221a is r 7?", "context": "CREATE TABLE table_name_19 (d_44_\u221a VARCHAR, d_47_\u221a VARCHAR)"}, {"answer": "SELECT d_42_\u221a FROM table_name_6 WHERE d_45_\u221a = \"r 16\"", "question": "What is the D 42 \u221a number when the D 45 \u221a is r 16?", "context": "CREATE TABLE table_name_6 (d_42_\u221a VARCHAR, d_45_\u221a VARCHAR)"}, {"answer": "SELECT d_49_\u221a FROM table_name_19 WHERE d_41_\u221a = \"d 61 \u221a\"", "question": "What is the D 49 \u221a number when the D 41 \u221a is d 61 \u221a?", "context": "CREATE TABLE table_name_19 (d_49_\u221a VARCHAR, d_41_\u221a VARCHAR)"}, {"answer": "SELECT d_42_\u221a FROM table_name_77 WHERE d_46_\u221a = \"r 6\"", "question": "What is the D 42 \u221a figure when D 46 \u221a is r 6?", "context": "CREATE TABLE table_name_77 (d_42_\u221a VARCHAR, d_46_\u221a VARCHAR)"}, {"answer": "SELECT d_50_\u221a FROM table_name_93 WHERE d_47_\u221a = \"r 27 \u221a\"", "question": "What is the D 50 \u221a when the D 47 \u221a is r 27 \u221a?", "context": "CREATE TABLE table_name_93 (d_50_\u221a VARCHAR, d_47_\u221a VARCHAR)"}, {"answer": "SELECT player FROM table_name_94 WHERE competition = \"ballarat football league\"", "question": "Tell me the player for ballarat football league", "context": "CREATE TABLE table_name_94 (player VARCHAR, competition VARCHAR)"}, {"answer": "SELECT player FROM table_name_88 WHERE team = \"east perth\"", "question": "Tell me the player for east perth", "context": "CREATE TABLE table_name_88 (player VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE team = \"waaia\"", "question": "Tell met he score for team of waaia", "context": "CREATE TABLE table_name_67 (score VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_48 WHERE competition = \"victorian football league\"", "question": "Tell me the team for victorian football league", "context": "CREATE TABLE table_name_48 (team VARCHAR, competition VARCHAR)"}, {"answer": "SELECT debut FROM table_name_58 WHERE name = \"scott tunbridge\"", "question": "What round was the debut of Scott Tunbridge?", "context": "CREATE TABLE table_name_58 (debut VARCHAR, name VARCHAR)"}, {"answer": "SELECT debut FROM table_name_11 WHERE position = \"defender\" AND name = \"stephen laybutt\"", "question": "What round was the debut of defender Stephen Laybutt?", "context": "CREATE TABLE table_name_11 (debut VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_66 WHERE debut = \"round 6\"", "question": "What position had a debut in round 6?", "context": "CREATE TABLE table_name_66 (position VARCHAR, debut VARCHAR)"}, {"answer": "SELECT name FROM table_name_96 WHERE debut = \"round 6\"", "question": "What is the name of the player that had a debut in round 6?", "context": "CREATE TABLE table_name_96 (name VARCHAR, debut VARCHAR)"}, {"answer": "SELECT date_joined FROM table_name_27 WHERE from__club_ = \"santo andr\u00e9\"", "question": "What date did the player from Santo Andr\u00e9 debut?", "context": "CREATE TABLE table_name_27 (date_joined VARCHAR, from__club_ VARCHAR)"}, {"answer": "SELECT venue FROM table_name_64 WHERE score = \"20\u00bd\u201311\u00bd\"", "question": "what is the venue when the score is 20\u00bd\u201311\u00bd?", "context": "CREATE TABLE table_name_64 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_31 WHERE year > 2003 AND score = \"19\u00bd\u201314\u00bd\" AND venue = \"harding park golf club\"", "question": "Who is the winning team when the year is more than 2003, the score is 19\u00bd\u201314\u00bd and the venue is harding park golf club?", "context": "CREATE TABLE table_name_31 (winning_team VARCHAR, venue VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_61 WHERE us_captain = \"ken venturi\"", "question": "what is the highest year that the U.S. captain is ken venturi?", "context": "CREATE TABLE table_name_61 (year INTEGER, us_captain VARCHAR)"}, {"answer": "SELECT location FROM table_name_21 WHERE year < 1998 AND international_captain = \"david graham\"", "question": "what is the location when the year is less than 1998 and the international captain is david graham?", "context": "CREATE TABLE table_name_21 (location VARCHAR, year VARCHAR, international_captain VARCHAR)"}, {"answer": "SELECT COUNT(earnings__) AS $__ FROM table_name_64 WHERE player = \"jim colbert\" AND rank < 2", "question": "How much did jim colbert earned ranked above 2?", "context": "CREATE TABLE table_name_64 (earnings__ VARCHAR, player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE venue = \"junction oval\"", "question": "What day did the VFL play at Junction Oval?", "context": "CREATE TABLE table_name_74 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_41 WHERE home_team = \"footscray\"", "question": "Where did Footscray play as the home team?", "context": "CREATE TABLE table_name_41 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_62 WHERE home_team = \"footscray\"", "question": "Who was the opponent when Footscray played as the home team?", "context": "CREATE TABLE table_name_62 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_50 WHERE venue = \"arden street oval\"", "question": "What was the attendance when the VFL played Arden Street Oval?", "context": "CREATE TABLE table_name_50 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT loss FROM table_name_82 WHERE date = \"june 22\"", "question": "What was the score June 22?", "context": "CREATE TABLE table_name_82 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT school FROM table_name_68 WHERE hometown = \"winter park, fl\"", "question": "Which school has a hometown of winter park, FL?", "context": "CREATE TABLE table_name_68 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT college FROM table_name_68 WHERE height = \"6-4\" AND school = \"lake howell high school\"", "question": "What's the college of the player with a height of 6-4 and went to lake howell high school?", "context": "CREATE TABLE table_name_68 (college VARCHAR, height VARCHAR, school VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_51 WHERE college = \"lsu\"", "question": "What's the hometown of the player with a college of lsu?", "context": "CREATE TABLE table_name_51 (hometown VARCHAR, college VARCHAR)"}, {"answer": "SELECT height FROM table_name_72 WHERE school = \"lake howell high school\"", "question": "What's the heigh of the player who went to lake howell high school?", "context": "CREATE TABLE table_name_72 (height VARCHAR, school VARCHAR)"}, {"answer": "SELECT height FROM table_name_83 WHERE player = \"nolan smith\"", "question": "What's the heigh of nolan smith?", "context": "CREATE TABLE table_name_83 (height VARCHAR, player VARCHAR)"}, {"answer": "SELECT height FROM table_name_64 WHERE school = \"oak hill academy\"", "question": "What's the height of the player who went to oak hill academy?", "context": "CREATE TABLE table_name_64 (height VARCHAR, school VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_67 WHERE fastest_lap = \"paul russo\"", "question": "What tyre did Paul Russo have on his fastest lap?", "context": "CREATE TABLE table_name_67 (tyre VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE constructor = \"maserati\" AND fastest_lap = \"stirling moss\"", "question": "What is the date that Stirling Moss had his fastest lap in a Maserati?", "context": "CREATE TABLE table_name_28 (date VARCHAR, constructor VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_90 WHERE date = \"30 may\"", "question": "Who was the winning driver on 30 May?", "context": "CREATE TABLE table_name_90 (winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_31 WHERE race = \"belgian grand prix\"", "question": "What was the fastest lap in the Belgian Grand Prix?", "context": "CREATE TABLE table_name_31 (fastest_lap VARCHAR, race VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_15 WHERE away_team = \"hawthorn\"", "question": "Who was the home team when the away team was Hawthorn?", "context": "CREATE TABLE table_name_15 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE venue = \"windy hill\"", "question": "On what date did the game at Windy Hill take place?", "context": "CREATE TABLE table_name_24 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_69 WHERE away_team = \"hawthorn\"", "question": "What was the venue when the away team was Hawthorn?", "context": "CREATE TABLE table_name_69 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_36 WHERE venue = \"windy hill\"", "question": "What was the home team when the game was at Windy Hill?", "context": "CREATE TABLE table_name_36 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT pos FROM table_name_4 WHERE laps < 343 AND year = 2010", "question": "What position has less than 343 laps in 2010?", "context": "CREATE TABLE table_name_4 (pos VARCHAR, laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_68 WHERE team = \"panoz motor sports\" AND year < 2002", "question": "What are panoz motor sports' lowest number of laps before 2002?", "context": "CREATE TABLE table_name_68 (laps INTEGER, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(game) FROM table_name_61 WHERE high_assists = \"paul (9)\"", "question": "What's the sum of the games that had paul (9) for high assists?", "context": "CREATE TABLE table_name_61 (game INTEGER, high_assists VARCHAR)"}, {"answer": "SELECT team FROM table_name_65 WHERE high_points = \"west (20)\"", "question": "What team had a high points of west (20)?", "context": "CREATE TABLE table_name_65 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_71 WHERE game_site = \"robert f. kennedy memorial stadium\" AND attendance > 54 OFFSET 633", "question": "What week was the game played at Robert f. Kennedy memorial stadium with more than 54,633 people in attendance?", "context": "CREATE TABLE table_name_71 (week VARCHAR, game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_46 WHERE laps < 73 AND grid = 5", "question": "What is the time/retired associated with a grid of 5 and under 73 laps?", "context": "CREATE TABLE table_name_46 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT free FROM table_name_80 WHERE total = 156.67", "question": "What was the free score of the skater with a total of 156.67?", "context": "CREATE TABLE table_name_80 (free VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(figures) FROM table_name_19 WHERE free < 56.35", "question": "What was the average figure score of the skater with a free score under 56.35?", "context": "CREATE TABLE table_name_19 (figures INTEGER, free INTEGER)"}, {"answer": "SELECT opponent FROM table_name_85 WHERE round = \"1\"", "question": "Which opponent had round 1?", "context": "CREATE TABLE table_name_85 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE opponent = \"dender\" AND tournament = \"jupiler league\" AND ground = \"a\"", "question": "Which date's opponent was Dender when the tournament was in the Jupiler League and the ground was a?", "context": "CREATE TABLE table_name_52 (date VARCHAR, ground VARCHAR, opponent VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT ground FROM table_name_17 WHERE round = \"33\"", "question": "Which ground's round was 33?", "context": "CREATE TABLE table_name_17 (ground VARCHAR, round VARCHAR)"}, {"answer": "SELECT competition FROM table_name_68 WHERE final_position___round = \"2\"", "question": "Which competition had a final position/round of 2?", "context": "CREATE TABLE table_name_68 (competition VARCHAR, final_position___round VARCHAR)"}, {"answer": "SELECT first_match FROM table_name_72 WHERE final_position___round = \"third qualifying round\"", "question": "Which first match had a final position/round in the third qualifying round?", "context": "CREATE TABLE table_name_72 (first_match VARCHAR, final_position___round VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_71 WHERE gold = 2 AND total > 6", "question": "What is the lowest number of bronze medals for nations with over 6 total and 2 golds?", "context": "CREATE TABLE table_name_71 (bronze INTEGER, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_33 WHERE sport = \"karate\" AND gold > 2", "question": "What is the total number of silver medals for karate athletes with over 2 golds?", "context": "CREATE TABLE table_name_33 (silver VARCHAR, sport VARCHAR, gold VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_20 WHERE 2010 = \"1r\" AND 2011 = \"a\"", "question": "What is the 2009 value with a 1r in 2010 and A in 2011?", "context": "CREATE TABLE table_name_20 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_79 WHERE 2010 = \"a\"", "question": "What is the 2009 value with a 2010 A value?", "context": "CREATE TABLE table_name_79 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_50 WHERE 2008 = \"a\" AND 2011 = \"a\" AND 2012 = \"2r\"", "question": "What is the 2010 value with A in 2008, A in 2011, and 2r in 2012?", "context": "CREATE TABLE table_name_50 (Id VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_86 WHERE date = \"april 24\"", "question": "What is the average attendance on april 24?", "context": "CREATE TABLE table_name_86 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_85 WHERE away_team = \"richmond\"", "question": "What was the score of the away team when Richmond played?", "context": "CREATE TABLE table_name_85 (away_team VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_47 WHERE laps = 16 AND grid = 9", "question": "What company was Constructor when there were 16 laps and grid was 9?", "context": "CREATE TABLE table_name_47 (constructor VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_99 WHERE constructor = \"lotus - ford\" AND laps < 17", "question": "What is the Time/Retired when lotus - ford was constructor and the laps were less than 17?", "context": "CREATE TABLE table_name_99 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_25 WHERE time_retired = \"engine\" AND laps < 9", "question": "What is the number of the grid when there was a Time/Retired of engine and less than 9 laps?", "context": "CREATE TABLE table_name_25 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_34 WHERE venue = \"home\" AND result = \"w 3-0\"", "question": "what was the attendance for a home venue and a w 3-0 result?", "context": "CREATE TABLE table_name_34 (attendance INTEGER, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_99 WHERE venue = \"home\" AND result = \"w 3-1\"", "question": "what was the attendance at the home venue with result w 3-1?", "context": "CREATE TABLE table_name_99 (attendance INTEGER, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_77 WHERE opponent = \"rochdale\"", "question": "where did rochdale play as opponent?", "context": "CREATE TABLE table_name_77 (venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_14 WHERE stadium = \"adelaide oval\"", "question": "Which team was hosted at Adelaide Oval?", "context": "CREATE TABLE table_name_14 (away_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT year FROM table_name_29 WHERE report = \"not held\"", "question": "When was a report not held?", "context": "CREATE TABLE table_name_29 (year VARCHAR, report VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_77 WHERE home = \"vancouver\"", "question": "Who was the visitor when vancouver was at home?", "context": "CREATE TABLE table_name_77 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT decision FROM table_name_96 WHERE visitor = \"new jersey\"", "question": "What is the decision when new jersey was away?", "context": "CREATE TABLE table_name_96 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT scale FROM table_name_90 WHERE name = \"ura index\"", "question": "What is URA Index scale?", "context": "CREATE TABLE table_name_90 (scale VARCHAR, name VARCHAR)"}, {"answer": "SELECT scale FROM table_name_8 WHERE word__number < 4 AND name = \"sv_health\"", "question": "What is the scale of sv_health with a word number smaller than 4?", "context": "CREATE TABLE table_name_8 (scale VARCHAR, word__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_55 WHERE sport = \"tennis\" AND nation_of_citizenship = \"united states\"", "question": "Which tennis team is from the United States?", "context": "CREATE TABLE table_name_55 (team VARCHAR, sport VARCHAR, nation_of_citizenship VARCHAR)"}, {"answer": "SELECT nation_of_citizenship FROM table_name_12 WHERE year_of_award > 2011", "question": "What is the nation of citizenship for athletes later than 2011 year of award?", "context": "CREATE TABLE table_name_12 (nation_of_citizenship VARCHAR, year_of_award INTEGER)"}, {"answer": "SELECT constructor FROM table_name_62 WHERE grid < 5 AND driver = \"michael schumacher\"", "question": "What Constructor did Michael Schumacher have with a Grid smaller than 5?", "context": "CREATE TABLE table_name_62 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_66 WHERE time_retired = \"+1 lap\"", "question": "Which driver has a Time/Retired of +1 lap?", "context": "CREATE TABLE table_name_66 (driver VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT apparatus FROM table_name_38 WHERE score_final > 17.75", "question": "Which apparatus had a final score that was more than 17.75?", "context": "CREATE TABLE table_name_38 (apparatus VARCHAR, score_final INTEGER)"}, {"answer": "SELECT competition_description FROM table_name_46 WHERE apparatus = \"ribbon\"", "question": "Which competition description's apparatus was ribbon?", "context": "CREATE TABLE table_name_46 (competition_description VARCHAR, apparatus VARCHAR)"}, {"answer": "SELECT score_qualifying FROM table_name_94 WHERE apparatus = \"hoop\"", "question": "Which Qualifying score had hoop as an apparatus?", "context": "CREATE TABLE table_name_94 (score_qualifying VARCHAR, apparatus VARCHAR)"}, {"answer": "SELECT COUNT(score_qualifying) FROM table_name_7 WHERE score_final = 16.625", "question": "What is the sum of qualifying scores when the final score is 16.625?", "context": "CREATE TABLE table_name_7 (score_qualifying VARCHAR, score_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE venue = \"princes park\"", "question": "When was the game played at Princes Park?", "context": "CREATE TABLE table_name_20 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_88 WHERE home_team = \"melbourne\"", "question": "What did Melbourne score as the home team?", "context": "CREATE TABLE table_name_88 (home_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_40 WHERE high_school = \"malvern prep\"", "question": "What position does the player from malvern prep play?", "context": "CREATE TABLE table_name_40 (position VARCHAR, high_school VARCHAR)"}, {"answer": "SELECT team FROM table_name_44 WHERE points > 572 AND games > 29", "question": "What team scored more than 572 points and had more than 29 games?", "context": "CREATE TABLE table_name_44 (team VARCHAR, points VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_88 WHERE rank > 1 AND name = \"luis scola\"", "question": "What is the least amount of games for Luis scola with a rank greater than 1?", "context": "CREATE TABLE table_name_88 (games INTEGER, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT identity FROM table_name_48 WHERE builder = \"brighton works\"", "question": "What is the identity of the brighton works built train?", "context": "CREATE TABLE table_name_48 (identity VARCHAR, builder VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_76 WHERE date = \"may 13\"", "question": "What was the attendance on May 13?", "context": "CREATE TABLE table_name_76 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(quantity) FROM table_name_84 WHERE ptrd_nos = \"3, 15\"", "question": "What is the highest Quantity for PTRD Nos. 3, 15?", "context": "CREATE TABLE table_name_84 (quantity INTEGER, ptrd_nos VARCHAR)"}, {"answer": "SELECT COUNT(hosted) FROM table_name_85 WHERE average = 27 OFFSET 638", "question": "How many were hosted whene the average attendance was 27,638?", "context": "CREATE TABLE table_name_85 (hosted VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(last_year) FROM table_name_87 WHERE hosted > 176", "question": "What is the lowest attendance last year when more than 176 were hosted?", "context": "CREATE TABLE table_name_87 (last_year INTEGER, hosted INTEGER)"}, {"answer": "SELECT COUNT(1990) FROM table_name_49 WHERE 1970 < 10 OFFSET 522", "question": "How many 1990 growth numbers had less than 10,522 in 1970?", "context": "CREATE TABLE table_name_49 (Id VARCHAR)"}, {"answer": "SELECT MIN(1980) FROM table_name_61 WHERE 1970 = 2 OFFSET 610", "question": "Which is the lowest 1980 growth that had 2,610 in 1970?", "context": "CREATE TABLE table_name_61 (Id VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_3 WHERE grid < 4 AND time_retired = \"+ 1 lap\"", "question": "What is the high lap total that has a grid of less than 4 and a Time/Retired of + 1 lap?", "context": "CREATE TABLE table_name_3 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_62 WHERE time_retired = \"+ 1:25.475\"", "question": "How many laps associated with a Time/Retired of + 1:25.475?", "context": "CREATE TABLE table_name_62 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_76 WHERE venue = \"princes park\"", "question": "What was the home teams score when the VFL played Princes Park?", "context": "CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_99 WHERE home_team = \"geelong\"", "question": "What was the opponents score when Geelong played as home team?", "context": "CREATE TABLE table_name_99 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_80 WHERE venue = \"kardinia park\"", "question": "What was the home teams score when the VFL played at Kardinia Park?", "context": "CREATE TABLE table_name_80 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE away_team = \"fitzroy\"", "question": "When did Fitzroy play as the away team?", "context": "CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_13 WHERE apps = 234 AND rank < 8", "question": "What is the average number of goals of the player with 234 apps and a rank above 8?", "context": "CREATE TABLE table_name_13 (goals INTEGER, apps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(avg_game) FROM table_name_51 WHERE goals = 97 AND rank < 7", "question": "What is the average avg/game of the player with 97 goals and a rank above 7?", "context": "CREATE TABLE table_name_51 (avg_game INTEGER, goals VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(won__pg_) FROM table_name_85 WHERE goals_conceded__gc_ < 21 AND played__pj_ < 18", "question": "What is the highest number of games won where less than 21 games were conceded and less than 18 games were actually played?", "context": "CREATE TABLE table_name_85 (won__pg_ INTEGER, goals_conceded__gc_ VARCHAR, played__pj_ VARCHAR)"}, {"answer": "SELECT AVG(goals_conceded__gc_) FROM table_name_80 WHERE goals_scored__gf_ > 19 AND points__pts_ = 31 AND draw__pe_ > 7", "question": "What is the average number of goals conceded where more than 19 goals were scored, the team had 31 points, and more than 7 draws?", "context": "CREATE TABLE table_name_80 (goals_conceded__gc_ INTEGER, draw__pe_ VARCHAR, goals_scored__gf_ VARCHAR, points__pts_ VARCHAR)"}, {"answer": "SELECT goals_conceded__gc_ FROM table_name_32 WHERE lost__pp_ = 7 AND team__equipo_ = \"chepo f.c.\"", "question": "How many goals were conceded against the Chepo F.C. team where they lost 7 games?", "context": "CREATE TABLE table_name_32 (goals_conceded__gc_ VARCHAR, lost__pp_ VARCHAR, team__equipo_ VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_61 WHERE venue = \"junction oval\"", "question": "What was the smallest crowd at junction oval?", "context": "CREATE TABLE table_name_61 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT state FROM table_name_49 WHERE member = \"richard foster\"", "question": "What state has Richard Foster as a member?", "context": "CREATE TABLE table_name_49 (state VARCHAR, member VARCHAR)"}, {"answer": "SELECT member FROM table_name_16 WHERE electorate = \"cook\"", "question": "Which member has Cook as the electorate?", "context": "CREATE TABLE table_name_16 (member VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT driver FROM table_name_72 WHERE chassis = \"625 553 500\"", "question": "Who was the driver with chassis 625 553 500?", "context": "CREATE TABLE table_name_72 (driver VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_77 WHERE constructor = \"cooper - bristol\" AND driver = \"bob gerard\"", "question": "What was tyre that was made by cooper - bristol that was driven by bob gerard?", "context": "CREATE TABLE table_name_77 (tyre VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_77 WHERE entrant = \"officine alfieri maserati\" AND driver = \"sergio mantovani\"", "question": "Who was the constructor of the officine alfieri maserati that was driven by Sergio Mantovani?", "context": "CREATE TABLE table_name_77 (constructor VARCHAR, entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_91 WHERE driver = \"sergio mantovani\"", "question": "What tyre had Sergio Mantovani as a driver?", "context": "CREATE TABLE table_name_91 (tyre VARCHAR, driver VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_86 WHERE constructor = \"maserati\" AND tyre = \"p\" AND chassis = \"250f a6gcm\" AND driver = \"luigi villoresi\"", "question": "Can you say what was the entrant of maserati built item with a Tyre of p with a chassis of 250f a6gcm that was driven by Luigi Villoresi?", "context": "CREATE TABLE table_name_86 (entrant VARCHAR, driver VARCHAR, chassis VARCHAR, constructor VARCHAR, tyre VARCHAR)"}, {"answer": "SELECT dutch FROM table_name_18 WHERE english = \"one\"", "question": "What is the dutch word for one?", "context": "CREATE TABLE table_name_18 (dutch VARCHAR, english VARCHAR)"}, {"answer": "SELECT middle_german___luxemburgish__ FROM table_name_20 WHERE DUTCH(Limburgish) = ein", "question": "What is the Middle German (Luxemburgish) word for ein?", "context": "CREATE TABLE table_name_20 (middle_german___luxemburgish__ VARCHAR, ein VARCHAR, Limburgish VARCHAR)"}, {"answer": "SELECT middle_german___luxemburgish__ FROM table_name_58 WHERE english = \"stone\"", "question": "What is the Middle German (Luxemburgish) word for stone?", "context": "CREATE TABLE table_name_58 (middle_german___luxemburgish__ VARCHAR, english VARCHAR)"}, {"answer": "SELECT dutch FROM table_name_68 WHERE LOW_GERMAN(Groningen) = h\u00f8vd / h\u00f8vur", "question": "What is the Dutch waord for h\u00f8vd / h\u00f8vur?", "context": "CREATE TABLE table_name_68 (dutch VARCHAR, Groningen VARCHAR, h\u00f8vd VARCHAR, h\u00f8vur VARCHAR)"}, {"answer": "SELECT english FROM table_name_43 WHERE DUTCH(Limburgish) = twie", "question": "What is the English word for twie?", "context": "CREATE TABLE table_name_43 (english VARCHAR, twie VARCHAR, Limburgish VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_54 WHERE rounds = \"8\" AND chassis = \"156 158 1512\"", "question": "What is the constructor on the team with 8 rounds and a chassis of 156 158 1512?", "context": "CREATE TABLE table_name_54 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT driver FROM table_name_92 WHERE tyre = \"d\" AND chassis = \"bt11\" AND rounds = \"8\"", "question": "Who is the driver of the team with tyre d, bt11 chassis, and 8 rounds?", "context": "CREATE TABLE table_name_92 (driver VARCHAR, rounds VARCHAR, tyre VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_51 WHERE silver < 1 AND gold > 0", "question": "What is the number of bronze that silver is smaller than 1 and gold bigger than 0?", "context": "CREATE TABLE table_name_51 (bronze INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT name FROM table_name_55 WHERE nation = \"france\" AND pts_game > 3 AND points < 33", "question": "what is the name when the nation is France, the pts/game is more than 3 and points is less than 33?", "context": "CREATE TABLE table_name_55 (name VARCHAR, points VARCHAR, nation VARCHAR, pts_game VARCHAR)"}, {"answer": "SELECT pts_game FROM table_name_78 WHERE games = 5 AND name = \"charlotte barras\"", "question": "what is the pts/game for Charlotte barras and the games is 5?", "context": "CREATE TABLE table_name_78 (pts_game VARCHAR, games VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_97 WHERE nation = \"wales\" AND pts_game > 5", "question": "what is the average points when the nation is wales and the pts/game is more than 5?", "context": "CREATE TABLE table_name_97 (points INTEGER, nation VARCHAR, pts_game VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_35 WHERE venue = \"barcelona, spain\"", "question": "When is the earliest year for it is in barcelona, spain?", "context": "CREATE TABLE table_name_35 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_57 WHERE position = \"5th\" AND venue = \"santiago, chile\"", "question": "What is the average year they finished 5th in santiago, chile?", "context": "CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_42 WHERE player = \"michael holper\"", "question": "Which pick was MIchael Holper?", "context": "CREATE TABLE table_name_42 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_99 WHERE nation = \"russia (rus)\" AND silver < 2", "question": "What is the average Gold where the Nation is Russia (rus) and the number of silver is less than 2?", "context": "CREATE TABLE table_name_99 (gold INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_45 WHERE nation = \"south africa (rsa)\" AND bronze < 1", "question": "What is the total where the nation is South Africa (rsa) and bronze is less than 1?", "context": "CREATE TABLE table_name_45 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT nation FROM table_name_10 WHERE gold = 0 AND rank > 14 AND total = 1 AND silver < 1", "question": "Which nation has 0 gold, a rank greater than 14, a total of 1, and silver less than 1?", "context": "CREATE TABLE table_name_10 (nation VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_21 WHERE venue = \"vfl park\"", "question": "Tell me the home team for vfl park venue", "context": "CREATE TABLE table_name_21 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_70 WHERE venue = \"mcg\"", "question": "Tell me the home team for venue of mcg", "context": "CREATE TABLE table_name_70 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_39 WHERE venue = \"arden street oval\"", "question": "Tell me the most crowd for arden street oval venue", "context": "CREATE TABLE table_name_39 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_51 WHERE home_team = \"south melbourne\"", "question": "What was the away team's score when South Melbourne was the home team?", "context": "CREATE TABLE table_name_51 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(placings) FROM table_name_92 WHERE nation = \"east germany\"", "question": "What was the placing of the nation of East Germany?", "context": "CREATE TABLE table_name_92 (placings VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(level) FROM table_name_96 WHERE team = \"astana\" AND season > 2007", "question": "What's the highest level of team Astana since 2007?", "context": "CREATE TABLE table_name_96 (level INTEGER, team VARCHAR, season VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_52 WHERE venue = \"western oval\"", "question": "Who was the away team at Western Oval?", "context": "CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_90 WHERE away_team = \"collingwood\"", "question": "Who was the home team that played against Collingwood?", "context": "CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_2 WHERE home_team = \"richmond\"", "question": "What is the average crowd size for Richmond home games?", "context": "CREATE TABLE table_name_2 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_48 WHERE home_team = \"north melbourne\"", "question": "What is the largest crowd for North Melbourne home games?", "context": "CREATE TABLE table_name_48 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_62 WHERE home_team = \"melbourne\"", "question": "In which venue does Melbourne play as the home team?", "context": "CREATE TABLE table_name_62 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT grid FROM table_name_85 WHERE driver = \"johnny dumfries\"", "question": "Which Grid has a Driver of johnny dumfries?", "context": "CREATE TABLE table_name_85 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE date = \"22 september 1972\"", "question": "What is the score on 22 September 1972?", "context": "CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_57 WHERE date = \"3 september 1972\"", "question": "What is the venue on 3 September 1972?", "context": "CREATE TABLE table_name_57 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_name_2 WHERE date = \"april 30\"", "question": "Name the series for april 30", "context": "CREATE TABLE table_name_2 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_35 WHERE high_assists = \"west (8)\"", "question": "Name the highest game for west (8) high assists", "context": "CREATE TABLE table_name_35 (game INTEGER, high_assists VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_11 WHERE date = \"14 february\"", "question": "Which Year has a Date of 14 February?", "context": "CREATE TABLE table_name_11 (year INTEGER, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_48 WHERE date = \"20 july\"", "question": "Which Label has a Date of 20 July?", "context": "CREATE TABLE table_name_48 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_56 WHERE date = \"14 february\"", "question": "Which Label has a Date of 14 February?", "context": "CREATE TABLE table_name_56 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT choreographer_s_ FROM table_name_94 WHERE style = \"smooth waltz\" AND partner = \"lacey schwimmer\"", "question": "Who choreographed the smooth waltz with lacey schwimmer?", "context": "CREATE TABLE table_name_94 (choreographer_s_ VARCHAR, style VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_40 WHERE style = \"jazz\" AND results = \"bottom three\"", "question": "Who was the partner for the jazz piece in the bottom three?", "context": "CREATE TABLE table_name_40 (partner VARCHAR, style VARCHAR, results VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_98 WHERE venue = \"vfl park\"", "question": "For Venue vfl park, what was the home team score?", "context": "CREATE TABLE table_name_98 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE venue = \"vfl park\"", "question": "On which date was the venue of vfl park used?", "context": "CREATE TABLE table_name_37 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_17 WHERE away_team = \"north melbourne\"", "question": "What was the Average crowd when the away team was north melbourne?", "context": "CREATE TABLE table_name_17 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT max_torque_at_rpm FROM table_name_7 WHERE engine_code_s_ = \"bjb/bkc/bxe/bls\"", "question": "What is the maximum torque at rpm for the engine coded BJB/BKC/BXE/BLS?", "context": "CREATE TABLE table_name_7 (max_torque_at_rpm VARCHAR, engine_code_s_ VARCHAR)"}, {"answer": "SELECT max_power_at_rpm FROM table_name_90 WHERE displacement = \"1968cc\" AND engine_name = \"2.0 tdi\"", "question": "What is the maximum power at rpm for the engine named 2.0 TDI that has a 1968cc displacement?", "context": "CREATE TABLE table_name_90 (max_power_at_rpm VARCHAR, displacement VARCHAR, engine_name VARCHAR)"}, {"answer": "SELECT max_torque_at_rpm FROM table_name_90 WHERE engine_code_s_ = \"bmm\"", "question": "What is the maximum torque at rpm for the engine with code BMM?", "context": "CREATE TABLE table_name_90 (max_torque_at_rpm VARCHAR, engine_code_s_ VARCHAR)"}, {"answer": "SELECT max_torque_at_rpm FROM table_name_31 WHERE engine_code_s_ = \"bmm\"", "question": "What is the maximum torque at rpm for the engine with code BMM?", "context": "CREATE TABLE table_name_31 (max_torque_at_rpm VARCHAR, engine_code_s_ VARCHAR)"}, {"answer": "SELECT engine_name FROM table_name_42 WHERE max_torque_at_rpm = \"n\u00b7m ( lbf\u00b7ft ) @ 3,800\"", "question": "What is the engine name that has a maximum torque at rpm of n\u00b7m ( lbf\u00b7ft ) @ 3,800?", "context": "CREATE TABLE table_name_42 (engine_name VARCHAR, max_torque_at_rpm VARCHAR)"}, {"answer": "SELECT result FROM table_name_37 WHERE work = \"t.u.f.f. puppy\"", "question": "What was the result of t.u.f.f. puppy?", "context": "CREATE TABLE table_name_37 (result VARCHAR, work VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE competition = \"2010 world cup qualifying\"", "question": "what is the score for the 2010 world cup qualifying?", "context": "CREATE TABLE table_name_1 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT home FROM table_name_16 WHERE date = \"november 7\"", "question": "Which home has a Date of november 7?", "context": "CREATE TABLE table_name_16 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_94 WHERE date = \"november 18\"", "question": "What is the lowest attendance on November 18?", "context": "CREATE TABLE table_name_94 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE decision = \"dipietro\" AND visitor = \"carolina\"", "question": "What is the date of the game where Dipietro earned a decision and Carolina was the visiting team?", "context": "CREATE TABLE table_name_28 (date VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_50 WHERE decision = \"dipietro\" AND date = \"october 27\"", "question": "Who is the visiting team when Dipietro received a decision on October 27?", "context": "CREATE TABLE table_name_50 (visitor VARCHAR, decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE home = \"washington\"", "question": "What was the record when the home team is Washington?", "context": "CREATE TABLE table_name_57 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_57 WHERE home = \"ny islanders\" AND date = \"october 20\"", "question": "What was the score of the game on October 20 when the home team is the NY Islanders?", "context": "CREATE TABLE table_name_57 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT theme FROM table_name_73 WHERE mintage = 700", "question": "In the Endangered Wildlife Series from the Royal Canadian Mint numismatic coins printed in the 2000s, what theme had a mintage of 700?", "context": "CREATE TABLE table_name_73 (theme VARCHAR, mintage VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_10 WHERE issue_price = \"$2,995.95\" AND theme = \"grizzly bear\"", "question": "What year had an issue price of $2,995.95, and a theme of grizzly bear?", "context": "CREATE TABLE table_name_10 (year INTEGER, issue_price VARCHAR, theme VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_26 WHERE silver > 0 AND nation = \"italy\" AND gold < 29", "question": "Tell me the total for silver more than 0 for italy with gold less than 29", "context": "CREATE TABLE table_name_26 (total INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_96 WHERE total < 4 AND silver > 0", "question": "Tell me the average bronze for total less than 4 and silver more than 0", "context": "CREATE TABLE table_name_96 (bronze INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_74 WHERE silver > 0 AND bronze > 21 AND gold > 29", "question": "I want to know the total for silver more than 0 with bronze more than 21 and gold more than 29", "context": "CREATE TABLE table_name_74 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(car) FROM table_name_54 WHERE player = \"jeff smoker\"", "question": "How many carries for jeff smoker?", "context": "CREATE TABLE table_name_54 (car INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(car) FROM table_name_58 WHERE long = \"3\"", "question": "How many average carries for the player with 3 as a long?", "context": "CREATE TABLE table_name_58 (car INTEGER, long VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_24 WHERE tie_no < 7 AND away_team = \"havant & waterlooville\"", "question": "who is the home team when tie no is less than 7 and the away team is havant & waterlooville?", "context": "CREATE TABLE table_name_24 (home_team VARCHAR, tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_95 WHERE outcome = \"runner-up\" AND date = 1970", "question": "What is the Score in the final with an Outcome with runner-up, and a Date with 1970?", "context": "CREATE TABLE table_name_95 (score_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_15 WHERE opponents_in_the_final = \"rod laver fred stolle\"", "question": "What is the Tournament with a Opponents in the final with rod laver fred stolle?", "context": "CREATE TABLE table_name_15 (tournament VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_66 WHERE date > 1973 AND opponents_in_the_final = \"hank pfister sherwood stewart\"", "question": "What is the Tournament with a Date larger than 1973, with Opponents in the final with hank pfister sherwood stewart?", "context": "CREATE TABLE table_name_66 (tournament VARCHAR, date VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT partner FROM table_name_31 WHERE opponents_in_the_final = \"roy emerson rod laver\" AND date < 1975", "question": "What is the Partner with Opponents in the final with roy emerson rod laver, with Date smaller than 1975?", "context": "CREATE TABLE table_name_31 (partner VARCHAR, opponents_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT driver FROM table_name_92 WHERE laps = 45", "question": "Which driver has 45 laps?", "context": "CREATE TABLE table_name_92 (driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_16 WHERE grid < 9 AND constructor = \"ferrari\" AND driver = \"rubens barrichello\"", "question": "Which Time/Retired has a grid smaller than 9, a Ferrari construct, and is driven by Rubens Barrichello?", "context": "CREATE TABLE table_name_16 (time_retired VARCHAR, driver VARCHAR, grid VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_55 WHERE away_team = \"footscray\"", "question": "Who was the home team when the away team was Footscray?", "context": "CREATE TABLE table_name_55 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE home_team = \"north melbourne\"", "question": "What was the date of the game where North Melbourne was the home team?", "context": "CREATE TABLE table_name_65 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_35 WHERE venue = \"kardinia park\"", "question": "Which away team played at Kardinia Park?", "context": "CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT no_of_cities FROM table_name_38 WHERE voivodeship = \"elbl\u0105g voivodeship\"", "question": "Namem the number of cities that contains Voivodeship of elbl\u0105g voivodeship", "context": "CREATE TABLE table_name_38 (no_of_cities VARCHAR, voivodeship VARCHAR)"}, {"answer": "SELECT COUNT(number_of_people_1991) FROM table_name_72 WHERE village__german_ = \"rupertiberg\"", "question": "How many people in 1991 have a Village (German) of rupertiberg?", "context": "CREATE TABLE table_name_72 (number_of_people_1991 VARCHAR, village__german_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE date = \"october 30\"", "question": "What was the score on October 30?", "context": "CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_78 WHERE date = \"october 6\"", "question": "What was the attendance on October 6?", "context": "CREATE TABLE table_name_78 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_41 WHERE date = \"october 24\"", "question": "What was the record on October 24?", "context": "CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_85 WHERE date = \"october 20\"", "question": "Who was the visitor on October 20?", "context": "CREATE TABLE table_name_85 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT smoke_point FROM table_name_25 WHERE monounsaturated_fat = \"30g\"", "question": "Name the smoke point for monosaturated fat of 30g", "context": "CREATE TABLE table_name_25 (smoke_point VARCHAR, monounsaturated_fat VARCHAR)"}, {"answer": "SELECT polyunsaturated_fat FROM table_name_96 WHERE total_fat = \"100g\" AND monounsaturated_fat = \"20g (84g in high oleic variety)\"", "question": "Name the polyunsaturated fat with total fat of 100g and monounsaturated fat of 20g (84g in high oleic variety)", "context": "CREATE TABLE table_name_96 (polyunsaturated_fat VARCHAR, total_fat VARCHAR, monounsaturated_fat VARCHAR)"}, {"answer": "SELECT polyunsaturated_fat FROM table_name_39 WHERE total_fat = \"100g\" AND saturated_fat = \"7g\"", "question": "Name the polyunsaturated fat with total fat of 100g and saturated fat of 7g", "context": "CREATE TABLE table_name_39 (polyunsaturated_fat VARCHAR, total_fat VARCHAR, saturated_fat VARCHAR)"}, {"answer": "SELECT polyunsaturated_fat FROM table_name_31 WHERE saturated_fat = \"25g\"", "question": "Name the polyunsaturated fat with a saturated fat of 25g", "context": "CREATE TABLE table_name_31 (polyunsaturated_fat VARCHAR, saturated_fat VARCHAR)"}, {"answer": "SELECT total_fat FROM table_name_60 WHERE polyunsaturated_fat = \"11g\" AND monounsaturated_fat = \"45g\"", "question": "Name the total fat which has a polyunsaturated fat of 11g and monounsaturated fat of 45g", "context": "CREATE TABLE table_name_60 (total_fat VARCHAR, polyunsaturated_fat VARCHAR, monounsaturated_fat VARCHAR)"}, {"answer": "SELECT result FROM table_name_79 WHERE competition = \"friendly\" AND date = \"9 october 2010\"", "question": "Name the result for friendly competition on 9 october 2010", "context": "CREATE TABLE table_name_79 (result VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_3 WHERE competition = \"uncaf nations cup 2009\" AND goal = 6", "question": "Name the result for uncaf nations cup 2009 and 6 goal", "context": "CREATE TABLE table_name_3 (result VARCHAR, competition VARCHAR, goal VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_2 WHERE team_2 = \"la nuova piovese (veneto a)\"", "question": "Which team was team 1 that had a team 2 that was la nuova piovese (veneto a)?", "context": "CREATE TABLE table_name_2 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_4 WHERE team_2 = \"budoni (sardinia)\"", "question": "What was the 2nd leg where the team 2 was budoni (sardinia)?", "context": "CREATE TABLE table_name_4 (team_2 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_81 WHERE team_2 = \"avigliano (basilicata)\"", "question": "Which was the team 1 that had a team 2 which was avigliano (basilicata)?", "context": "CREATE TABLE table_name_81 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT cash_on_hand FROM table_name_93 WHERE after_debt = \"$82,741\"", "question": "How much cash was on hand after debt of $82,741?", "context": "CREATE TABLE table_name_93 (cash_on_hand VARCHAR, after_debt VARCHAR)"}, {"answer": "SELECT loans_received, _3q FROM table_name_24 WHERE total_debt = \"$169,256\"", "question": "What was the amount of loans received with a total debt of $169,256?", "context": "CREATE TABLE table_name_24 (loans_received VARCHAR, _3q VARCHAR, total_debt VARCHAR)"}, {"answer": "SELECT money_spent, _3q FROM table_name_19 WHERE after_debt = \"$1,757,936\"", "question": "How much money was spent when the amount after debt was $1,757,936?", "context": "CREATE TABLE table_name_19 (money_spent VARCHAR, _3q VARCHAR, after_debt VARCHAR)"}, {"answer": "SELECT after_debt FROM table_name_11 WHERE cash_on_hand = \"$651,300\"", "question": "How much is after debt when cash on hand is $651,300?", "context": "CREATE TABLE table_name_11 (after_debt VARCHAR, cash_on_hand VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_85 WHERE bronze > 0 AND nation = \"france (fra)\"", "question": "What is the lowest total when the Bronze metals are larger than 0 and the nation is France (fra)?", "context": "CREATE TABLE table_name_85 (total INTEGER, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_86 WHERE bronze = 1 AND gold = 1", "question": "What is the highest silver medal count when there is 1 Bronze medal and 1 Gold medal?", "context": "CREATE TABLE table_name_86 (silver INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_61 WHERE bronze < 1 AND silver < 1 AND gold < 1", "question": "What is the total number of medals when the Bronze, Silver, and Gold medals are smaller than 1?", "context": "CREATE TABLE table_name_61 (total VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_62 WHERE gold > 0 AND silver < 1 AND total < 1", "question": "What is the sum of the Bronze medals when the Gold medals are larger than 0, Silver medals are smaller than 1, and the total is smaller than 1?", "context": "CREATE TABLE table_name_62 (bronze INTEGER, total VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT result FROM table_name_94 WHERE date = \"11 august 2010\"", "question": "what is the result for 11 august 2010?", "context": "CREATE TABLE table_name_94 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_73 WHERE competition = \"friendly\" AND date = \"8 october 2009\"", "question": "what is the result when the competition is friendly on 8 october 2009?", "context": "CREATE TABLE table_name_73 (result VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT french_abbr FROM table_name_23 WHERE group_name = \"european progressive democrats\"", "question": "For the group name European Progressive Democrats what is the French abbr?", "context": "CREATE TABLE table_name_23 (french_abbr VARCHAR, group_name VARCHAR)"}, {"answer": "SELECT livery FROM table_name_32 WHERE description = \"20t tanker\" AND date > 1941", "question": "Which Livery has a Description of 20t tanker, with a date later than 1941?", "context": "CREATE TABLE table_name_32 (livery VARCHAR, description VARCHAR, date VARCHAR)"}, {"answer": "SELECT description FROM table_name_49 WHERE livery = \"black\" AND date < 1897 AND number_ & _name = \"scottish tar distillers no. 78\"", "question": "What's the Description for Scottish Tar Distillers No. 78, that's Livery is black, and a date prior to 1897?", "context": "CREATE TABLE table_name_49 (description VARCHAR, livery VARCHAR, date VARCHAR, number_ VARCHAR, _name VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE home = \"washington\" AND visitor = \"florida\"", "question": "What was the score of the game that Washington played at home against Florida?", "context": "CREATE TABLE table_name_23 (score VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT driver FROM table_name_12 WHERE constructor = \"brm\" AND laps > 30", "question": "What driver has BRM as a constructor and had more than 30 laps?", "context": "CREATE TABLE table_name_12 (driver VARCHAR, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_66 WHERE period = \"12 november 2012 \u2013 27 november 2012\" AND managed > 2", "question": "How many lost when the number managed is over 2 and the period is from 12 november 2012 \u2013 27 november 2012?", "context": "CREATE TABLE table_name_66 (lost VARCHAR, period VARCHAR, managed VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_10 WHERE season < 1986 AND margin = 6 AND score = \"13.16 (94) \u2013 13.10 (88)\"", "question": "What is the average attendnace for seasons before 1986, a margin of 6, and a Score of 13.16 (94) \u2013 13.10 (88)?", "context": "CREATE TABLE table_name_10 (attendance INTEGER, score VARCHAR, season VARCHAR, margin VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_46 WHERE venue = \"waverley park\" AND score = \"15.12 (102) \u2013 9.14 (68)\" AND margin > 34", "question": "When is the earliest season at waverley park, a Score of 15.12 (102) \u2013 9.14 (68), and a Margin larger than 34?", "context": "CREATE TABLE table_name_46 (season INTEGER, margin VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_30 WHERE premier = \"essendon\" AND score = \"15.12 (102) \u2013 9.14 (68)\"", "question": "How many seasons feature essendon, and a Score of 15.12 (102) \u2013 9.14 (68)?", "context": "CREATE TABLE table_name_30 (season VARCHAR, premier VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE venue = \"mcg\"", "question": "What was the date of the game at MCG?", "context": "CREATE TABLE table_name_85 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE home_team = \"geelong\"", "question": "What was the date of the game where Geelong was the home team?", "context": "CREATE TABLE table_name_18 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_21 WHERE away_team = \"footscray\"", "question": "What was the crowd size for the game where Footscray was the away team?", "context": "CREATE TABLE table_name_21 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_65 WHERE nationality = \"sweden\" AND overall = 199", "question": "What is the total round with an overall of 199 with sweden?", "context": "CREATE TABLE table_name_65 (round INTEGER, nationality VARCHAR, overall VARCHAR)"}, {"answer": "SELECT overall FROM table_name_12 WHERE nationality = \"canada\" AND round = 2", "question": "What is the total for Canada during round 2?", "context": "CREATE TABLE table_name_12 (overall VARCHAR, nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT club_team FROM table_name_1 WHERE round = 4 AND overall = 119", "question": "Which team scores 119 in round 4?", "context": "CREATE TABLE table_name_1 (club_team VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_22 WHERE visitor = \"anaheim\"", "question": "What was the attendance at the Kings game when Anaheim was the visiting team?", "context": "CREATE TABLE table_name_22 (attendance VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE record = \"8\u201311\u20131\"", "question": "What was the score of the Kings game when they had a record of 8\u201311\u20131?", "context": "CREATE TABLE table_name_27 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_2 WHERE team = \"charlotte\"", "question": "Name the high points for charlotte", "context": "CREATE TABLE table_name_2 (high_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_68 WHERE date = \"february 12\"", "question": "Name the team on february 12", "context": "CREATE TABLE table_name_68 (team VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_17 WHERE game > 54 AND date = \"february 25\"", "question": "Name the location attendance for game more than 54 on february 25", "context": "CREATE TABLE table_name_17 (location_attendance VARCHAR, game VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_67 WHERE date = \"february 27\"", "question": "Name the record for february 27", "context": "CREATE TABLE table_name_67 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_16 WHERE game = 48", "question": "Name the team for 48 game", "context": "CREATE TABLE table_name_16 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(share) FROM table_name_29 WHERE RANK(timeslot) > 3 AND viewers__m_ < 4.87", "question": "What's the average of shows that had a timeslot rank greater that 3 but still had a smaller viewership less than 4.87?", "context": "CREATE TABLE table_name_29 (share INTEGER, viewers__m_ VARCHAR, timeslot VARCHAR)"}, {"answer": "SELECT division FROM table_name_90 WHERE conference = \"afc\" AND wins = 10 AND appearances > 18", "question": "Which division in the AFC Conference had a total of 10 wins and appeared more than 18 times?", "context": "CREATE TABLE table_name_90 (division VARCHAR, appearances VARCHAR, conference VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_19 WHERE division = \"east\" AND losses = 8 AND appearances < 18", "question": "How many losses did the East Division have who appeared 18 times and lost 8?", "context": "CREATE TABLE table_name_19 (wins INTEGER, appearances VARCHAR, division VARCHAR, losses VARCHAR)"}, {"answer": "SELECT losses FROM table_name_95 WHERE appearances < 16", "question": "How many losses did the division who appeared less than 16 times have?", "context": "CREATE TABLE table_name_95 (losses VARCHAR, appearances INTEGER)"}, {"answer": "SELECT SUM(total) FROM table_name_68 WHERE silver = \"1\" AND nation = \"spain\"", "question": "How many medals for spain with 1 silver?", "context": "CREATE TABLE table_name_68 (total INTEGER, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT silver FROM table_name_48 WHERE nation = \"finland\"", "question": "How many silvers for finland?", "context": "CREATE TABLE table_name_48 (silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_62 WHERE silver = \"1\" AND bronze = \"1\" AND nation = \"spain\"", "question": "How many medals for spain that has 1 silver and 1 bronze?", "context": "CREATE TABLE table_name_62 (total VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT record FROM table_name_61 WHERE points < 98 AND opponent = \"canucks\"", "question": "What is the record when they play the canucks and have under 98 points?", "context": "CREATE TABLE table_name_61 (record VARCHAR, points VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_99 WHERE points > 86 AND opponent = \"sharks\"", "question": "How many attended the game against the sharks with over 86 points?", "context": "CREATE TABLE table_name_99 (attendance INTEGER, points VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT recorded FROM table_name_83 WHERE track > 7 AND translation = \"death\"", "question": "Name the song that has a track larger than 7 and means death.", "context": "CREATE TABLE table_name_83 (recorded VARCHAR, track VARCHAR, translation VARCHAR)"}, {"answer": "SELECT title FROM table_name_23 WHERE recorded = \"1959-09-15\" AND track = 7", "question": "Which track 7 title was recorded in 1959-09-15?", "context": "CREATE TABLE table_name_23 (title VARCHAR, recorded VARCHAR, track VARCHAR)"}, {"answer": "SELECT track FROM table_name_96 WHERE translation = \"flemish women\"", "question": "Which track translates to Flemish Women?", "context": "CREATE TABLE table_name_96 (track VARCHAR, translation VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_90 WHERE average < 489 AND highest > 778", "question": "What is the high capacity that has an average under 489 and a highest over 778?", "context": "CREATE TABLE table_name_90 (capacity INTEGER, average VARCHAR, highest VARCHAR)"}, {"answer": "SELECT other_performer_s_ FROM table_name_4 WHERE director_s_ = \"melina matsoukas\" AND album = \"loud\"", "question": "On the album titled \u201cLoud\u201d who was the other performer on the song directed by Melina Matsoukas?", "context": "CREATE TABLE table_name_4 (other_performer_s_ VARCHAR, director_s_ VARCHAR, album VARCHAR)"}, {"answer": "SELECT decision FROM table_name_44 WHERE home = \"vancouver\" AND visitor = \"winnipeg\"", "question": "What is the decision when vancouver is at home and winnipeg is away?", "context": "CREATE TABLE table_name_44 (decision VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_6 WHERE home = \"chicago\"", "question": "What is the record of the team from chicago?", "context": "CREATE TABLE table_name_6 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT venue FROM table_name_52 WHERE away_team = \"st kilda\"", "question": "Where was the away team st kilda?", "context": "CREATE TABLE table_name_52 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_90 WHERE caps = 1", "question": "Which club has 1 cap?", "context": "CREATE TABLE table_name_90 (club_province VARCHAR, caps VARCHAR)"}, {"answer": "SELECT position FROM table_name_59 WHERE club_province = \"meralomas\" AND player = \"david biddle\"", "question": "Which position has a club of Meralomas and a player named David Biddle?", "context": "CREATE TABLE table_name_59 (position VARCHAR, club_province VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(caps) FROM table_name_75 WHERE club_province = \"meralomas\" AND position = \"centre\"", "question": "What is the average number of caps for Meralomas with positions of centre?", "context": "CREATE TABLE table_name_75 (caps INTEGER, club_province VARCHAR, position VARCHAR)"}, {"answer": "SELECT scorers FROM table_name_4 WHERE score = \"9-2\"", "question": "Who are the scorers when the score is 9-2?", "context": "CREATE TABLE table_name_4 (scorers VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_94 WHERE region > 9", "question": "What is the smallest population in a region greater than 9?", "context": "CREATE TABLE table_name_94 (population INTEGER, region INTEGER)"}, {"answer": "SELECT AVG(area__km_2__) FROM table_name_80 WHERE code = 98030 AND population > 312", "question": "What is the average area for code 98030 with population over 312?", "context": "CREATE TABLE table_name_80 (area__km_2__ INTEGER, code VARCHAR, population VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_62 WHERE date = \"may 28\"", "question": "What is the attendance on may 28?", "context": "CREATE TABLE table_name_62 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_83 WHERE date = \"4 oct 2009\"", "question": "On the Date of 4 Oct 2009, who was the Runner(s)-up?", "context": "CREATE TABLE table_name_83 (runner_s__up VARCHAR, date VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_52 WHERE date = \"2 aug 2009\"", "question": "On the Date of 2 Aug 2009, who was the Runner(s)-up?", "context": "CREATE TABLE table_name_52 (runner_s__up VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_23 WHERE date = \"6 sep 2009\"", "question": "Which Tournament was on the Date 6 Sep 2009?", "context": "CREATE TABLE table_name_23 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_55 WHERE tournament = \"mynavi abc championship\"", "question": "What was the Winning score for the Mynavi ABC Championship Tournament?", "context": "CREATE TABLE table_name_55 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_29 WHERE margin_of_victory = \"5 strokes\" AND date = \"6 sep 2009\"", "question": "What was the Winning score when the Margin of victory is 5 strokes and the Date was 6 Sep 2009?", "context": "CREATE TABLE table_name_29 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_66 WHERE date = \"4 oct 2009\"", "question": "Who was the Runner(s)-up on the Date 4 Oct 2009?", "context": "CREATE TABLE table_name_66 (runner_s__up VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE third_place = \"stefan edberg\"", "question": "What is the score with third place of stefan edberg?", "context": "CREATE TABLE table_name_33 (score VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_40 WHERE tournament = \"algarve\"", "question": "Name the runner-up for algarve tournament", "context": "CREATE TABLE table_name_40 (runner_up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_25 WHERE third_place = \"magnus gustafsson\"", "question": "I want to know the tournament that has a third place of magnus gustafsson", "context": "CREATE TABLE table_name_25 (tournament VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT winner FROM table_name_11 WHERE third_place = \"fernando meligeni\"", "question": "Who was the winner when the third place was fernando meligeni?", "context": "CREATE TABLE table_name_11 (winner VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_3 WHERE winner = \"patrick rafter\"", "question": "Name the tournament for patrick rafter winning", "context": "CREATE TABLE table_name_3 (tournament VARCHAR, winner VARCHAR)"}, {"answer": "SELECT owner FROM table_name_10 WHERE trainer = \"nick zito\" AND year = \"1996\"", "question": "Who was the owner in 1996 of trainer Nick Zito?", "context": "CREATE TABLE table_name_10 (owner VARCHAR, trainer VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_40 WHERE distance = \"1-1/16\" AND jockey = \"ramon dominguez\"", "question": "What year did jockey Ramon Dominguez have a distance of 1-1/16?", "context": "CREATE TABLE table_name_40 (year VARCHAR, distance VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT owner FROM table_name_80 WHERE trainer = \"steve klesaris\"", "question": "Who was the owner of the trainer Steve Klesaris?", "context": "CREATE TABLE table_name_80 (owner VARCHAR, trainer VARCHAR)"}, {"answer": "SELECT owner FROM table_name_43 WHERE winner = \"raglan road\"", "question": "Who is the owner of the Raglan Road winner?", "context": "CREATE TABLE table_name_43 (owner VARCHAR, winner VARCHAR)"}, {"answer": "SELECT year FROM table_name_2 WHERE winner = \"burning roma\"", "question": "What year was Burning Roma the winner?", "context": "CREATE TABLE table_name_2 (year VARCHAR, winner VARCHAR)"}, {"answer": "SELECT win_loss FROM table_name_23 WHERE coach = \"peter german\"", "question": "What is the win/loss of coach Peter German?", "context": "CREATE TABLE table_name_23 (win_loss VARCHAR, coach VARCHAR)"}, {"answer": "SELECT tyres FROM table_name_14 WHERE year < 1995 AND laps = 142", "question": "Which tyre was before 1995 with 142 laps?", "context": "CREATE TABLE table_name_14 (tyres VARCHAR, year VARCHAR, laps VARCHAR)"}, {"answer": "SELECT tyres FROM table_name_89 WHERE laps > 5 AND team = \"nissan motorsports international\"", "question": "Which tyres has more than 5 laps with team nissan motorsports international?", "context": "CREATE TABLE table_name_89 (tyres VARCHAR, laps VARCHAR, team VARCHAR)"}, {"answer": "SELECT pos FROM table_name_56 WHERE tyres = \"m\" AND laps > 352", "question": "What position that has m tyres and 352 or more laps?", "context": "CREATE TABLE table_name_56 (pos VARCHAR, tyres VARCHAR, laps VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_29 WHERE team_1 = \"sestese(e16)\"", "question": "who is the team 2 when the team 1 is sestese(e16)?", "context": "CREATE TABLE table_name_29 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT MAX(base_pairs) FROM table_name_2 WHERE strain = \"unspecified\"", "question": "What is the largest base pair with a Strain of unspecified?", "context": "CREATE TABLE table_name_2 (base_pairs INTEGER, strain VARCHAR)"}, {"answer": "SELECT MIN(base_pairs) FROM table_name_21 WHERE species = \"borrelia garinii\" AND genes > 832", "question": "What is the lowst base pair with a Species of borrelia garinii, and a Genes larger than 832?", "context": "CREATE TABLE table_name_21 (base_pairs INTEGER, species VARCHAR, genes VARCHAR)"}, {"answer": "SELECT type FROM table_name_65 WHERE species = \"unspecified\" AND genes < 367", "question": "What type has an unspecified species and less than 367 genes?", "context": "CREATE TABLE table_name_65 (type VARCHAR, species VARCHAR, genes VARCHAR)"}, {"answer": "SELECT base_pairs FROM table_name_79 WHERE genes = 832", "question": "What base pair has 832 genes?", "context": "CREATE TABLE table_name_79 (base_pairs VARCHAR, genes VARCHAR)"}, {"answer": "SELECT competition FROM table_name_53 WHERE rank = 9", "question": "Which competition was ranked 9?", "context": "CREATE TABLE table_name_53 (competition VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_94 WHERE goals = \"274-357\"", "question": "What is the sum of draws with 274-357 goals?", "context": "CREATE TABLE table_name_94 (drawn INTEGER, goals VARCHAR)"}, {"answer": "SELECT MIN(played_2) FROM table_name_65 WHERE lost > 83 AND seasons = 8 AND club_1 = \"chernomorets novorossiysk\" AND drawn < 65", "question": "What is the lowest played 2 number with less than 83 losses and less than 65 draws with Chernomorets Novorossiysk in season 8?", "context": "CREATE TABLE table_name_65 (played_2 INTEGER, drawn VARCHAR, club_1 VARCHAR, lost VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_88 WHERE goals = \"562-506\" AND seasons < 13", "question": "What is the rank number with 562-506 goals before season 13?", "context": "CREATE TABLE table_name_88 (rank VARCHAR, goals VARCHAR, seasons VARCHAR)"}, {"answer": "SELECT COUNT(seasons) FROM table_name_77 WHERE goals = \"261-338\" AND lost > 111", "question": "How many seasons have goals of 261-338 with more than 111 losses?", "context": "CREATE TABLE table_name_77 (seasons VARCHAR, goals VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(seasons) FROM table_name_28 WHERE drawn = 57 AND rank = 20 AND spells > 1", "question": "What is the highest season number with 57 draws, rank 20, and more than 1 spell?", "context": "CREATE TABLE table_name_28 (seasons INTEGER, spells VARCHAR, drawn VARCHAR, rank VARCHAR)"}, {"answer": "SELECT result FROM table_name_51 WHERE venue = \"doha\"", "question": "What was the results of the game at Doha?", "context": "CREATE TABLE table_name_51 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE competition = \"1998 fifa world cup qualification\"", "question": "What was the score during the competition of 1998 fifa world cup qualification?", "context": "CREATE TABLE table_name_42 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_45 WHERE date = \"october 1, 1994\"", "question": "What is the competition that took place on October 1, 1994?", "context": "CREATE TABLE table_name_45 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_58 WHERE result = \"2-2\"", "question": "What is the competition that had a 2-2 result?", "context": "CREATE TABLE table_name_58 (competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_46 WHERE result = \"4-2\"", "question": "Where did the competition take place that had a 4-2 result?", "context": "CREATE TABLE table_name_46 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_7 WHERE result = \"5-1\"", "question": "Where was the competition that took place that had a 5-1 result?", "context": "CREATE TABLE table_name_7 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_5 WHERE tries < 1 AND position = \"fullback\"", "question": "Tell me the highest goals with tries less than 1 and fullback position", "context": "CREATE TABLE table_name_5 (goals INTEGER, tries VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(tries) FROM table_name_40 WHERE goals > 0 AND position = \"centre\" AND points < 54", "question": "Tell me the lowest tries for goals more than 0 with centre position and points less than 54", "context": "CREATE TABLE table_name_40 (tries INTEGER, points VARCHAR, goals VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_18 WHERE tries > 1 AND points < 54 AND position = \"hooker\"", "question": "I want to know the player with tries more than 1 and position of hooker with points less than 54", "context": "CREATE TABLE table_name_18 (player VARCHAR, position VARCHAR, tries VARCHAR, points VARCHAR)"}, {"answer": "SELECT player FROM table_name_56 WHERE points > 36 AND goals > 0 AND tries = 12", "question": "Tell me the player with points larger than 36 and goals more than 0 with tries of 12", "context": "CREATE TABLE table_name_56 (player VARCHAR, tries VARCHAR, points VARCHAR, goals VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_58 WHERE 2010 = \"olympic games\"", "question": "What Tournament was the 2010 Olympic Games?", "context": "CREATE TABLE table_name_58 (tournament VARCHAR)"}, {"answer": "SELECT width FROM table_name_3 WHERE entered_service = 2010", "question": "Which width had an entered service year of 2010?", "context": "CREATE TABLE table_name_3 (width VARCHAR, entered_service VARCHAR)"}, {"answer": "SELECT MAX(built) FROM table_name_44 WHERE entered_service > 2003 AND knots < 27", "question": "What is the most recent built year when the year of entering service was more recent than 2003, and the knots is less than 27?", "context": "CREATE TABLE table_name_44 (built INTEGER, entered_service VARCHAR, knots VARCHAR)"}, {"answer": "SELECT COUNT(knots) FROM table_name_11 WHERE ship = \"ms moby vincent\" AND passengers < 1.6", "question": "How many knots did the Ms Moby Vincent have when passengers was less than 1.6?", "context": "CREATE TABLE table_name_11 (knots VARCHAR, ship VARCHAR, passengers VARCHAR)"}, {"answer": "SELECT venue FROM table_name_51 WHERE away_team = \"richmond\"", "question": "Where did Richmond play as the away team?", "context": "CREATE TABLE table_name_51 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_21 WHERE opponent = \"phillies 1:15 pm\" AND date = \"april 9\"", "question": "When the phillies 1:15 pm played on April 9, what was the attendance?", "context": "CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE score = \"5-1\"", "question": "When was there a score of 5-1?", "context": "CREATE TABLE table_name_42 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_62 WHERE bronze > 1", "question": "What is the average number of silvers for nations with over 1 bronze medal?", "context": "CREATE TABLE table_name_62 (silver INTEGER, bronze INTEGER)"}, {"answer": "SELECT interregnum_ended FROM table_name_37 WHERE count_palatine_of_saxony = \"frederick augustus i, elector of saxony\"", "question": "What is the Interregnum ended for Count Palatine of Saxony of frederick augustus i, elector of saxony?", "context": "CREATE TABLE table_name_37 (interregnum_ended VARCHAR, count_palatine_of_saxony VARCHAR)"}, {"answer": "SELECT interregnum_ended FROM table_name_69 WHERE count_palatine_of_saxony = \"john george ii, elector of saxony\"", "question": "What is the Interregnum ended for Count Palatine of Saxony of john george ii, elector of saxony?", "context": "CREATE TABLE table_name_69 (interregnum_ended VARCHAR, count_palatine_of_saxony VARCHAR)"}, {"answer": "SELECT duration FROM table_name_53 WHERE count_palatine_of_the_rhine = \"charles albert, elector of bavaria\"", "question": "What is the duration for Count Palatine of the Rhine of charles albert, elector of bavaria?", "context": "CREATE TABLE table_name_53 (duration VARCHAR, count_palatine_of_the_rhine VARCHAR)"}, {"answer": "SELECT count_palatine_of_the_rhine FROM table_name_65 WHERE interregnum_began = \"2 april 1657 death of ferdinand iii\"", "question": "What is the name of the Count Palatine of the Rhine with a Interregnum began of 2 april 1657 death of ferdinand iii?", "context": "CREATE TABLE table_name_65 (count_palatine_of_the_rhine VARCHAR, interregnum_began VARCHAR)"}, {"answer": "SELECT interregnum_ended FROM table_name_78 WHERE duration = \"3 months, 6 days\"", "question": "What is the Interregnum ended for the person with a Duration of 3 months, 6 days?", "context": "CREATE TABLE table_name_78 (interregnum_ended VARCHAR, duration VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_53 WHERE home_team = \"hawthorn\"", "question": "What was the crowd size when the home team was Hawthorn?", "context": "CREATE TABLE table_name_53 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(share) FROM table_name_25 WHERE timeslot = \"8:30 p.m.\" AND air_date = \"march 27, 2008\" AND rank__overall_ > 65", "question": "What is the total share with Timeslot of 8:30 p.m., anAir Date of march 27, 2008, and a Rank greater than 65?", "context": "CREATE TABLE table_name_25 (share INTEGER, rank__overall_ VARCHAR, timeslot VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT COUNT(viewers__m_) FROM table_name_80 WHERE rank__night_ = \"n/a\" AND timeslot = \"8:30 p.m.\"", "question": "What is the total number of Viewers with a Rank (Night) of n/a, and a Timeslot of 8:30 p.m.?", "context": "CREATE TABLE table_name_80 (viewers__m_ VARCHAR, rank__night_ VARCHAR, timeslot VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_11 WHERE decision = \"mclean\" AND home = \"calgary\"", "question": "How many people attended the game when Calgary was the home team and the decision was McLean?", "context": "CREATE TABLE table_name_11 (attendance VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_38 WHERE home = \"los angeles\"", "question": "What is the record of the game when Los Angeles was the home team?", "context": "CREATE TABLE table_name_38 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_39 WHERE score = \"1 \u2013 5\"", "question": "What is the record of the game with a score of 1 \u2013 5?", "context": "CREATE TABLE table_name_39 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_97 WHERE home = \"los angeles\"", "question": "What is the least number of people to attend a game when Los Angeles was the home team?", "context": "CREATE TABLE table_name_97 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_96 WHERE tournament = \"santiago\"", "question": "who is the runner- up when the tournament is santiago?", "context": "CREATE TABLE table_name_96 (runner_up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE runner_up = \"richard krajicek\"", "question": "what is the score when the runner-up is richard krajicek?", "context": "CREATE TABLE table_name_54 (score VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_48 WHERE score = \"7-6(0), 6-3\"", "question": "what is the tournament when the score is 7-6(0), 6-3?", "context": "CREATE TABLE table_name_48 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_77 WHERE tournament = \"delray beach\"", "question": "who is third place when the tournament is delray beach?", "context": "CREATE TABLE table_name_77 (third_place VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE competition = \"continental qualifier\" AND date = \"february 23, 2003\"", "question": "What was the score in the Continental Qualifier on February 23, 2003?", "context": "CREATE TABLE table_name_63 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE competition = \"world cup qualifier\"", "question": "What was the score for the World Cup Qualifier?", "context": "CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_61 WHERE date = \"february 18, 2003\"", "question": "What was the result on February 18, 2003?", "context": "CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT commissioned FROM table_name_14 WHERE fate = \"converted to laker, 1961; still in service\"", "question": "When was the ship that had a fate of 'converted to laker, 1961; still in service' commissioned?", "context": "CREATE TABLE table_name_14 (commissioned VARCHAR, fate VARCHAR)"}, {"answer": "SELECT final_decommission FROM table_name_94 WHERE original_name = \"sachem\"", "question": "When was the ship originally named sachem finally decommissioned?", "context": "CREATE TABLE table_name_94 (final_decommission VARCHAR, original_name VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_69 WHERE home_team = \"richmond\"", "question": "What did the away team score in the game against Richmond?", "context": "CREATE TABLE table_name_69 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE no_result = 0 AND tied > 0", "question": "Which player has no 0 results and multiples ties?", "context": "CREATE TABLE table_name_41 (player VARCHAR, no_result VARCHAR, tied VARCHAR)"}, {"answer": "SELECT MIN(no_result) FROM table_name_80 WHERE lost > 5 AND _percentage_win_[a_] < 58.06", "question": "What is the low no result with more than 5 loss and a win ration lesser than 58.06?", "context": "CREATE TABLE table_name_80 (no_result INTEGER, lost VARCHAR, _percentage_win_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_73 WHERE date = \"may 12\"", "question": "Name the opponent for may 12", "context": "CREATE TABLE table_name_73 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE loss = \"schilling (5\u20132)\"", "question": "Name the date for Loss of schilling (5\u20132)", "context": "CREATE TABLE table_name_31 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_64 WHERE date = \"may 31\"", "question": "Name the record for may 31", "context": "CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_84 WHERE interview = 8.46", "question": "What was the highest average for the contestant having an interview score of 8.46?", "context": "CREATE TABLE table_name_84 (average INTEGER, interview VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE time = \"29.816\"", "question": "What day had a time of 29.816?", "context": "CREATE TABLE table_name_45 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT car_make FROM table_name_7 WHERE record = \"nascar camping world truck series\"", "question": "What kind of car has the NASCAR Camping World Truck Series record?", "context": "CREATE TABLE table_name_7 (car_make VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_6 WHERE date = \"april 6\"", "question": "Was it a home game on the date of April 6?", "context": "CREATE TABLE table_name_6 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE home = \"dallas\"", "question": "What was the date when the home team was Dallas?", "context": "CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_94 WHERE player = \"rhett mclane\"", "question": "What is Rhett Mclane's highest pick number?", "context": "CREATE TABLE table_name_94 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_9 WHERE college = \"colorado\"", "question": "What is Colorado College's lowest pick number?", "context": "CREATE TABLE table_name_9 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_34 WHERE college = \"northwestern\"", "question": "What player belongs to Northwestern College?", "context": "CREATE TABLE table_name_34 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT cfl_team FROM table_name_76 WHERE player = \"pascal masson\"", "question": "What CFL Team is Pascal Masson on?", "context": "CREATE TABLE table_name_76 (cfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT number_ & _name FROM table_name_28 WHERE date > 1954", "question": "What's the number & name for the date after 1954?", "context": "CREATE TABLE table_name_28 (number_ VARCHAR, _name VARCHAR, date INTEGER)"}, {"answer": "SELECT date FROM table_name_77 WHERE owner_s_ = \"princess royal class locomotive trust\"", "question": "What's the date for princess royal class locomotive trust?", "context": "CREATE TABLE table_name_77 (date VARCHAR, owner_s_ VARCHAR)"}, {"answer": "SELECT number_ & _name FROM table_name_72 WHERE description = \"peckett 0-4-0st\"", "question": "What's the number & name for the description peckett 0-4-0st?", "context": "CREATE TABLE table_name_72 (number_ VARCHAR, _name VARCHAR, description VARCHAR)"}, {"answer": "SELECT number_ & _name FROM table_name_10 WHERE description = \"lms fowler class 3f 0-6-0t\"", "question": "What's the number & name for a description of lms fowler class 3f 0-6-0t?", "context": "CREATE TABLE table_name_10 (number_ VARCHAR, _name VARCHAR, description VARCHAR)"}, {"answer": "SELECT driver FROM table_name_25 WHERE laps = 74 AND grid > 9", "question": "Who drive 74 laps in a grid larger than 9?", "context": "CREATE TABLE table_name_25 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT player FROM table_name_48 WHERE school_club_team_country = \"st. mary's\"", "question": "Who is the player for St. Mary's team?", "context": "CREATE TABLE table_name_48 (player VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_15 WHERE school_club_team_country = \"mississippi\"", "question": "How tall is the player from Mississippi", "context": "CREATE TABLE table_name_15 (height_in_ft VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT no_s_ FROM table_name_66 WHERE school_club_team_country = \"centenary\"", "question": "What is the player number for the player from Centenary?", "context": "CREATE TABLE table_name_66 (no_s_ VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_69 WHERE no_s_ = \"42\" AND school_club_team_country = \"long beach state\"", "question": "How tall is player 42 from Long Beach State?", "context": "CREATE TABLE table_name_69 (height_in_ft VARCHAR, no_s_ VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT network FROM table_name_47 WHERE lap_by_lap = \"bill flemming\" AND pit_reporters = \"chris economaki\"", "question": "What network has lap-by-laps by Bill Flemming, and Pit reporter Chris Economaki?", "context": "CREATE TABLE table_name_47 (network VARCHAR, lap_by_lap VARCHAR, pit_reporters VARCHAR)"}, {"answer": "SELECT lap_by_lap FROM table_name_74 WHERE year > 1973 AND pit_reporters = \"bill flemming\"", "question": "Which lap-by-lap has a year after 1973, with pit reporter Bill Flemming?", "context": "CREATE TABLE table_name_74 (lap_by_lap VARCHAR, year VARCHAR, pit_reporters VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_14 WHERE res = \"win\" AND location = \"fort lauderdale, florida, united states\" AND time = \"3:38\"", "question": "What is the lowest round for Fort Lauderdale, Florida, United States, with a win and a time of 3:38?", "context": "CREATE TABLE table_name_14 (round INTEGER, time VARCHAR, res VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_64 WHERE time = \"2:18\"", "question": "How many rounds have a time of 2:18?", "context": "CREATE TABLE table_name_64 (round VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_32 WHERE laps < 65 AND driver = \"tim schenken\"", "question": "What is the lowest Grid with fewer than 65 Laps and with Driver Tim Schenken?", "context": "CREATE TABLE table_name_32 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_98 WHERE grid = 1", "question": "What Driver has 1 in Grid?", "context": "CREATE TABLE table_name_98 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_75 WHERE driver = \"howden ganley\"", "question": "What is Driver Howden Ganley's Time/Retired?", "context": "CREATE TABLE table_name_75 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE home_team = \"hawthorn\"", "question": "On what date was Hawthorn the home team?", "context": "CREATE TABLE table_name_45 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_2 WHERE venue = \"junction oval\"", "question": "Who was the away team at Junction Oval?", "context": "CREATE TABLE table_name_2 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_93 WHERE venue = \"mcg\"", "question": "Which home team played at MCG?", "context": "CREATE TABLE table_name_93 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_95 WHERE position < 15 AND played > 38", "question": "Tell me the sum of draws for position less than 15 with played more than 38", "context": "CREATE TABLE table_name_95 (draws INTEGER, position VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_34 WHERE position < 9 AND draws > 19 AND goals_against > 27", "question": "Name the sum of played for position less than 9 and draws more than 19 with goals against more than 27", "context": "CREATE TABLE table_name_34 (played INTEGER, goals_against VARCHAR, position VARCHAR, draws VARCHAR)"}, {"answer": "SELECT recorded FROM table_name_16 WHERE translation = \"sleep my love, good night\"", "question": "Name the recorded for translation of sleep my love, good night", "context": "CREATE TABLE table_name_16 (recorded VARCHAR, translation VARCHAR)"}, {"answer": "SELECT winter FROM table_name_99 WHERE year = 1906", "question": "What is the Winter in 1906?", "context": "CREATE TABLE table_name_99 (winter VARCHAR, year VARCHAR)"}, {"answer": "SELECT driver FROM table_name_44 WHERE time_retired = \"2:45:46.2\"", "question": "Which driver has a Time/Retired of 2:45:46.2?", "context": "CREATE TABLE table_name_44 (driver VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT position FROM table_name_16 WHERE pick < 312 AND school_club_team = \"western michigan\"", "question": "What position for the western michigan product picked ahead of 312?", "context": "CREATE TABLE table_name_16 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE loser = \"green bay packers\" AND location = \"green bay\"", "question": "What date did the Chicago Bears beat the Green bay Packers 31-20?", "context": "CREATE TABLE table_name_32 (date VARCHAR, loser VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE home = \"boston bruins\"", "question": "When were the boston bruins the home team?", "context": "CREATE TABLE table_name_95 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT nat FROM table_name_50 WHERE moving_from = \"bordeaux\"", "question": "In what nation is Bordeaux?", "context": "CREATE TABLE table_name_50 (nat VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT lead FROM table_name_89 WHERE nation = \"norway\"", "question": "Who has the lead in Norway?", "context": "CREATE TABLE table_name_89 (lead VARCHAR, nation VARCHAR)"}, {"answer": "SELECT skip FROM table_name_83 WHERE second = \"joan mccusker\"", "question": "Which Skip will play Joan Mccusker?", "context": "CREATE TABLE table_name_83 (skip VARCHAR, second VARCHAR)"}, {"answer": "SELECT alternate FROM table_name_58 WHERE nation = \"sweden\"", "question": "Who is the Alternate for Sweden?", "context": "CREATE TABLE table_name_58 (alternate VARCHAR, nation VARCHAR)"}, {"answer": "SELECT third FROM table_name_56 WHERE nation = \"germany\"", "question": "Who is the third alternate for Germany?", "context": "CREATE TABLE table_name_56 (third VARCHAR, nation VARCHAR)"}, {"answer": "SELECT translation FROM table_name_78 WHERE date = 1986", "question": "Which translation was published in 1986?", "context": "CREATE TABLE table_name_78 (translation VARCHAR, date VARCHAR)"}, {"answer": "SELECT title FROM table_name_86 WHERE content = \"mysticism, spiritualism\" AND translation = \"the minaret of light\"", "question": "Which title has content including mysticism, spiritualism, and a translation of the minaret of light?", "context": "CREATE TABLE table_name_86 (title VARCHAR, content VARCHAR, translation VARCHAR)"}, {"answer": "SELECT employees__world_ FROM table_name_60 WHERE revenue__mil\u20ac_ = \"104.000\"", "question": "What is hte nuumber of employees that has a revenue of 104.000?", "context": "CREATE TABLE table_name_60 (employees__world_ VARCHAR, revenue__mil\u20ac_ VARCHAR)"}, {"answer": "SELECT headquarters FROM table_name_23 WHERE employees__world_ = 100", "question": "Which HQ is associated with a number of employees of 100?", "context": "CREATE TABLE table_name_23 (headquarters VARCHAR, employees__world_ VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_80 WHERE bronze > 1 AND rank < 11", "question": "What is the low silver medal total for nations with over 1 bronze ranked above 11?", "context": "CREATE TABLE table_name_80 (silver INTEGER, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_55 WHERE gold = 1 AND bronze > 1", "question": "What is the high total for nations with 1 gold and over 1 bronze?", "context": "CREATE TABLE table_name_55 (total INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT home FROM table_name_13 WHERE record = \"4-6-0\"", "question": "What was the home team with a 4-6-0 record?", "context": "CREATE TABLE table_name_13 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT decision FROM table_name_96 WHERE visitor = \"washington\" AND date = \"october 13\"", "question": "What was the decision of the game with Washington as the visitor team on October 13?", "context": "CREATE TABLE table_name_96 (decision VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(ngc_number) FROM table_name_7 WHERE right_ascension___j2000__ = \"05h33m30s\"", "question": "What is the average NGC number of everything with a Right ascension (J2000) of 05h33m30s?", "context": "CREATE TABLE table_name_7 (ngc_number INTEGER, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_55 WHERE ngc_number > 2068 AND constellation = \"dorado\" AND declination___j2000__ = \"\u00b012\u203243\u2033\"", "question": "What is the right ascension (J2000) with a Declination (J2000) of \u00b012\u203243\u2033, is a constellation of dorado, and has an NGC number larger than 2068?", "context": "CREATE TABLE table_name_55 (right_ascension___j2000__ VARCHAR, declination___j2000__ VARCHAR, ngc_number VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_61 WHERE ngc_number > 2090 AND right_ascension___j2000__ = \"05h52m19s\"", "question": "What type of object has an NGC number higher than 2090 and has a right ascension (J2000) of 05h52m19s?", "context": "CREATE TABLE table_name_61 (object_type VARCHAR, ngc_number VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_35 WHERE away_team = \"geelong\"", "question": "How is the crowd of the team Geelong?", "context": "CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_56 WHERE venue = \"arden street oval\"", "question": "Who has the smallest crowd in the Venue of Arden Street Oval?", "context": "CREATE TABLE table_name_56 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_35 WHERE venue = \"lake oval\"", "question": "What team has a Venue at Lake Oval?", "context": "CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE race_title = \"grand prix de trois-rivi\u00e8res\"", "question": "What day is the grand prix de trois-rivi\u00e8res?", "context": "CREATE TABLE table_name_30 (date VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT race_title FROM table_name_24 WHERE drivers = \"ron fellows\" AND date = \"aug 4\"", "question": "What race is on aug 4 with ron fellows?", "context": "CREATE TABLE table_name_24 (race_title VARCHAR, drivers VARCHAR, date VARCHAR)"}, {"answer": "SELECT distance_duration FROM table_name_3 WHERE date = \"sept 5\" AND race_title = \"le grand prix de trois-rivi\u00e8res\"", "question": "What is the distance/duration on sept 5 of le grand prix de trois-rivi\u00e8res?", "context": "CREATE TABLE table_name_3 (distance_duration VARCHAR, date VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT record FROM table_name_21 WHERE opponent = \"julio paulino\"", "question": "What is terry's record when he fights julio paulino?", "context": "CREATE TABLE table_name_21 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_78 WHERE method = \"ko (punch)\" AND opponent = \"scott smith\"", "question": "How long is the ko (punch) fight against scott smith?", "context": "CREATE TABLE table_name_78 (time VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(feet) FROM table_name_11 WHERE latitude__n_ = \"35\u00b048\u203235\u2033\" AND metres < 8 OFFSET 047", "question": "What is the average feet that has a Latitude (N) of 35\u00b048\u203235\u2033, and under 8,047m?", "context": "CREATE TABLE table_name_11 (feet INTEGER, latitude__n_ VARCHAR, metres VARCHAR)"}, {"answer": "SELECT MIN(feet) FROM table_name_22 WHERE longitude__e_ = \"76\u00b034\u203206\u2033\" AND prominence__m_ < 1 OFFSET 701", "question": "What is the lowest feet total with a Longitude (E) of 76\u00b034\u203206\u2033, and a Prominence (m) under 1,701?", "context": "CREATE TABLE table_name_22 (feet INTEGER, longitude__e_ VARCHAR, prominence__m_ VARCHAR)"}, {"answer": "SELECT player FROM table_name_75 WHERE hometown = \"wichita, ks\"", "question": "What Player comes from the Hometown of Wichita, KS?", "context": "CREATE TABLE table_name_75 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_99 WHERE hometown = \"brampton, on\"", "question": "For the Player from Brampton, ON what is their NBA Draft status?", "context": "CREATE TABLE table_name_99 (nba_draft VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT college FROM table_name_69 WHERE player = \"perry ellis\"", "question": "What was the College of Player Perry Ellis?", "context": "CREATE TABLE table_name_69 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(figures) FROM table_name_24 WHERE free = 556", "question": "What is the lowest figure score when the free is 556?", "context": "CREATE TABLE table_name_24 (figures INTEGER, free VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_39 WHERE away_team = \"south melbourne\"", "question": "What is the size of the crowd for the game where the away team South Melbourne played?", "context": "CREATE TABLE table_name_39 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_11 WHERE crowd > 30 OFFSET 100", "question": "What is the home team score when the crowd was larger than 30,100?", "context": "CREATE TABLE table_name_11 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT home_team AS score FROM table_name_5 WHERE home_team = \"hawthorn\"", "question": "How much did the home team Hawthorn score?", "context": "CREATE TABLE table_name_5 (home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_2 WHERE away_team = \"footscray\"", "question": "What was the crowd size for the game at Footscray?", "context": "CREATE TABLE table_name_2 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_35 WHERE home = \"phoenix\"", "question": "Who was the visitor when phoenix was at home?", "context": "CREATE TABLE table_name_35 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE visitor = \"philadelphia\"", "question": "What day did philadelphia visit?", "context": "CREATE TABLE table_name_31 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT song FROM table_name_86 WHERE picturization = \"vijay\"", "question": "Which song has a Picturization of Vijay?", "context": "CREATE TABLE table_name_86 (song VARCHAR, picturization VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_name_64 WHERE production_code = \"ad1c13\"", "question": "What is the air date for the episode with production code ad1c13?", "context": "CREATE TABLE table_name_64 (original_air_date VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_4 WHERE production_code = \"ad1c05\"", "question": "Who wrote the episode that has the production code ad1c05?", "context": "CREATE TABLE table_name_4 (written_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT title FROM table_name_99 WHERE production_code = \"ad1c07\"", "question": "What is the title of the episode with production code ad1c07?", "context": "CREATE TABLE table_name_99 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_98 WHERE wins > 3 AND mid_gippsland_fl = \"yarragon\" AND against < 966", "question": "What is the low draw total for yarragon teams with over 3 wins, and under 966 against?", "context": "CREATE TABLE table_name_98 (draws INTEGER, against VARCHAR, wins VARCHAR, mid_gippsland_fl VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_47 WHERE points_classification = \"bradley wiggins\"", "question": "What is the General classification for a points classification leader of Bradley Wiggins?", "context": "CREATE TABLE table_name_47 (general_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_94 WHERE mountains_classification = \"christophe moreau\" AND team_classification = \"team csc\"", "question": "What is the general classification for a mountains value of Christophe Moreau and a Team winner of Team CSC?", "context": "CREATE TABLE table_name_94 (general_classification VARCHAR, mountains_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_76 WHERE call_sign = \"kqlx\"", "question": "What is the frequency of KQLX?", "context": "CREATE TABLE table_name_76 (frequency VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_9 WHERE frequency = \"1200 am\"", "question": "What is the call sign of 1200 am?", "context": "CREATE TABLE table_name_9 (call_sign VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_67 WHERE format = \"talk\"", "question": "What is the frequency of the talk station?", "context": "CREATE TABLE table_name_67 (frequency VARCHAR, format VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_36 WHERE call_sign = \"kfnw\"", "question": "What is the frequency of KFNW?", "context": "CREATE TABLE table_name_36 (frequency VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_34 WHERE race_name = \"vii race of champions\"", "question": "What is the constructor for the VII Race of Champions?", "context": "CREATE TABLE table_name_34 (constructor VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_72 WHERE winning_driver = \"carlos reutemann\"", "question": "What is the name of the race won by driver Carlos Reutemann?", "context": "CREATE TABLE table_name_72 (race_name VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE home = \"st. louis\"", "question": "what is the date when the home is st. louis?", "context": "CREATE TABLE table_name_30 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_34 WHERE date = \"march 12\"", "question": "Where is the home on march 12?", "context": "CREATE TABLE table_name_34 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_8 WHERE date = \"march 18\"", "question": "what is the decision on the date march 18?", "context": "CREATE TABLE table_name_8 (decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(tckl) FROM table_name_9 WHERE year = \"2000\" AND p_ko_ret < 14", "question": "What is the total of TCKL in 2000 with a P/KO RET less than 14?", "context": "CREATE TABLE table_name_9 (tckl VARCHAR, year VARCHAR, p_ko_ret VARCHAR)"}, {"answer": "SELECT MAX(yards) FROM table_name_61 WHERE tckl > 51 AND sack < 2", "question": "What is the highest YARDS with a TCKL more than 51 and less than 2 SACK?", "context": "CREATE TABLE table_name_61 (yards INTEGER, tckl VARCHAR, sack VARCHAR)"}, {"answer": "SELECT COUNT(yards) FROM table_name_31 WHERE sack = 0 AND p_ko_ret < 14", "question": "What is the total of all YARDS with 0 SACK and less than 14 P/KO RET?", "context": "CREATE TABLE table_name_31 (yards VARCHAR, sack VARCHAR, p_ko_ret VARCHAR)"}, {"answer": "SELECT pick FROM table_name_91 WHERE college = \"west virginia\"", "question": "What is the pick for West Virginia college?", "context": "CREATE TABLE table_name_91 (pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT round FROM table_name_56 WHERE position = \"f/c\" AND college = \"iowa\"", "question": "What round has a position of F/C from Iowa College?", "context": "CREATE TABLE table_name_56 (round VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_49 WHERE pick = \"1\"", "question": "What nationality has a pick of 1?", "context": "CREATE TABLE table_name_49 (nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_15 WHERE round = \"1\" AND position = \"f\" AND college = \"louisville\"", "question": "Which nationality has a round of 1, and F position from Louisville?", "context": "CREATE TABLE table_name_15 (nationality VARCHAR, college VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_97 WHERE venue = \"arden street oval\"", "question": "Which team plays at the Arden Street Oval?", "context": "CREATE TABLE table_name_97 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_82 WHERE home_team = \"carlton\"", "question": "Where does Carlton play?", "context": "CREATE TABLE table_name_82 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE home = \"grizzlies\" AND visitor = \"timberwolves\"", "question": "What was the date of the game in which the home team was the Grizzlies and the visiting team was the Timberwolves?", "context": "CREATE TABLE table_name_7 (date VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT airing_date FROM table_name_91 WHERE number_of_episodes = 20 AND genre = \"costume comedy\"", "question": "What is the airing date for costume comedy that has 20 episodes?", "context": "CREATE TABLE table_name_91 (airing_date VARCHAR, number_of_episodes VARCHAR, genre VARCHAR)"}, {"answer": "SELECT year FROM table_name_24 WHERE film = \"7th heaven\"", "question": "What year was 7th heaven made?", "context": "CREATE TABLE table_name_24 (year VARCHAR, film VARCHAR)"}, {"answer": "SELECT film FROM table_name_27 WHERE year = \"1999\"", "question": "What film was made in 1999?", "context": "CREATE TABLE table_name_27 (film VARCHAR, year VARCHAR)"}, {"answer": "SELECT city FROM table_name_14 WHERE height__ft_ > 328.1 AND rank > 56 AND height__m_ = 103 AND floors < 28", "question": "what is the city with the height (ft) more than 328.1, rank higher than 56, a height (m) of 103 and floors less than 28?", "context": "CREATE TABLE table_name_14 (city VARCHAR, floors VARCHAR, height__m_ VARCHAR, height__ft_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(floors) FROM table_name_10 WHERE name = \"k\u00f6lntriangle\" AND rank < 63", "question": "what is the total of floors when the name is k\u00f6lntriangle and rank is less thank 63?", "context": "CREATE TABLE table_name_10 (floors INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(height__ft_) FROM table_name_55 WHERE name = \"messeturm\" AND floors > 55", "question": "what is the lowest height (ft) for messeturm and more than 55 floors?", "context": "CREATE TABLE table_name_55 (height__ft_ INTEGER, name VARCHAR, floors VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_90 WHERE city = \"cologne\" AND floors = 34 AND height__ft_ > 452.8", "question": "what is the rank for the city of cologne, floors is 34 and height (ft) is more than 452.8?", "context": "CREATE TABLE table_name_90 (rank VARCHAR, height__ft_ VARCHAR, city VARCHAR, floors VARCHAR)"}, {"answer": "SELECT group_position FROM table_name_50 WHERE result_f_a = \"0\u20131\" AND date = \"1 november 2006\"", "question": "Which Group position has Result F\u2013A of 0\u20131 on 1 november 2006?", "context": "CREATE TABLE table_name_50 (group_position VARCHAR, result_f_a VARCHAR, date VARCHAR)"}, {"answer": "SELECT club FROM table_name_41 WHERE bowling_style = \"right arm medium pace\" AND name = \"r. h. c. human\"", "question": "What club is R. H. C. Human who has a right arm medium pace bowling style a member of?", "context": "CREATE TABLE table_name_41 (club VARCHAR, bowling_style VARCHAR, name VARCHAR)"}, {"answer": "SELECT birth_date FROM table_name_57 WHERE batting_style = \"right-handed\" AND name = \"a. j. holmes\"", "question": "What is the birth date of A. J. Holmes who has a right-handed batting style?", "context": "CREATE TABLE table_name_57 (birth_date VARCHAR, batting_style VARCHAR, name VARCHAR)"}, {"answer": "SELECT batting_style FROM table_name_75 WHERE bowling_style = \"right arm medium pace\" AND birth_date = \"10 february 1910 (aged 29)\"", "question": "What is the batting style of the person who has a right arm medium pace bowling style and a birth date of 10 February 1910 (aged 29)?", "context": "CREATE TABLE table_name_75 (batting_style VARCHAR, bowling_style VARCHAR, birth_date VARCHAR)"}, {"answer": "SELECT weight FROM table_name_91 WHERE name_v_t_e = \"\u017eivko goci\u0107 category:articles with hcards\"", "question": "What is the weight for the v t e of \u017eivko goci\u0107 category:articles with hcards?", "context": "CREATE TABLE table_name_91 (weight VARCHAR, name_v_t_e VARCHAR)"}, {"answer": "SELECT weight FROM table_name_26 WHERE name_v_t_e = \"du\u0161ko pijetlovi\u0107 category:articles with hcards\"", "question": "What is the weight of the v t e of du\u0161ko pijetlovi\u0107 category:articles with hcards?", "context": "CREATE TABLE table_name_26 (weight VARCHAR, name_v_t_e VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_45 WHERE player = \"david o'callaghan\" AND tally = \"1-9\"", "question": "What was the total for David O'Callaghan, and a Tally of 1-9?", "context": "CREATE TABLE table_name_45 (total INTEGER, player VARCHAR, tally VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_25 WHERE tally = \"0-11\"", "question": "What is the opposition when the tally was 0-11?", "context": "CREATE TABLE table_name_25 (opposition VARCHAR, tally VARCHAR)"}, {"answer": "SELECT tally FROM table_name_44 WHERE county = \"kilkenny\" AND total = 10 AND opposition = \"waterford\"", "question": "What is the tally in Kilkenny county with 10 as the total and opposition of Waterford?", "context": "CREATE TABLE table_name_44 (tally VARCHAR, opposition VARCHAR, county VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(weeks_on_chart) FROM table_name_40 WHERE position > 3 AND year > 1977", "question": "What is the average weeks of a song with a larger than 3 position after 1977?", "context": "CREATE TABLE table_name_40 (weeks_on_chart INTEGER, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(weeks_on_chart) FROM table_name_92 WHERE position < 1", "question": "What is the sum of the weeks on a chart a song with a position less than 1 haas?", "context": "CREATE TABLE table_name_92 (weeks_on_chart INTEGER, position INTEGER)"}, {"answer": "SELECT MIN(year) FROM table_name_5 WHERE position < 1", "question": "What is the earliest year a song with a position less than 1 has?", "context": "CREATE TABLE table_name_5 (year INTEGER, position INTEGER)"}, {"answer": "SELECT tyre FROM table_name_81 WHERE entrant = \"scuderia milano\"", "question": "what is the tyre when the entrant is scuderia milano?", "context": "CREATE TABLE table_name_81 (tyre VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT driver FROM table_name_17 WHERE engine = \"era 1.5 l6 s\" AND chassis = \"era b\"", "question": "who is the driver with the engine era 1.5 l6 s and the chassis is era b?", "context": "CREATE TABLE table_name_17 (driver VARCHAR, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_75 WHERE tyre = \"d\" AND engine = \"talbot 23cv 4.5 l6\" AND chassis = \"talbot-lago t26c\" AND entrant = \"ecurie belge\"", "question": "who is the constructor when the tyre is d, the engine is talbot 23cv 4.5 l6, the chassis is talbot-lago t26c and the entrant is ecurie belge?", "context": "CREATE TABLE table_name_75 (constructor VARCHAR, entrant VARCHAR, chassis VARCHAR, tyre VARCHAR, engine VARCHAR)"}, {"answer": "SELECT kk___1 FROM table_name_79 WHERE kk___3 = \"1,100\"", "question": "What is KK -1 if KK -3 is 1,100?", "context": "CREATE TABLE table_name_79 (kk___1 VARCHAR, kk___3 VARCHAR)"}, {"answer": "SELECT kk___5 FROM table_name_38 WHERE kk___3 = \"310\"", "question": "What is KK -5 if KK - 3 is 310?", "context": "CREATE TABLE table_name_38 (kk___5 VARCHAR, kk___3 VARCHAR)"}, {"answer": "SELECT kk___5 FROM table_name_42 WHERE kk___1 = \"1,067\"", "question": "What is KK - 5 if KK - 1 is 1,067?", "context": "CREATE TABLE table_name_42 (kk___5 VARCHAR, kk___1 VARCHAR)"}, {"answer": "SELECT winner FROM table_name_74 WHERE time = \"1:12.00\" AND jockey = \"melvin a. holland\"", "question": "Who is the Winner with a Time of 1:12.00 and Melvin A. Holland as the Jockey?", "context": "CREATE TABLE table_name_74 (winner VARCHAR, time VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT year FROM table_name_71 WHERE purse = \"$83,925\"", "question": "Which Year has a Purse of $83,925?", "context": "CREATE TABLE table_name_71 (year VARCHAR, purse VARCHAR)"}, {"answer": "SELECT purse FROM table_name_10 WHERE year = \"1998\"", "question": "What is the Purse listed for the Year of 1998?", "context": "CREATE TABLE table_name_10 (purse VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner FROM table_name_9 WHERE year = \"2000\"", "question": "What's the Winner in the Year of 2000?", "context": "CREATE TABLE table_name_9 (winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner FROM table_name_43 WHERE time = \"1:10.60\" AND owner = \"leslie combs ii\"", "question": "What's the WInner with a TIme of 1:10.60, and Owner of Leslie Combs II?", "context": "CREATE TABLE table_name_43 (winner VARCHAR, time VARCHAR, owner VARCHAR)"}, {"answer": "SELECT trainer FROM table_name_33 WHERE year = \"2013\"", "question": "Who is the Trainer with the Year of 2013?", "context": "CREATE TABLE table_name_33 (trainer VARCHAR, year VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_84 WHERE away_team = \"st kilda\"", "question": "How many points did the away team of st kilda score?", "context": "CREATE TABLE table_name_84 (away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE result = \"l 13\u20139\"", "question": "Tell me the date with result of l 13\u20139", "context": "CREATE TABLE table_name_94 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_67 WHERE result = \"w 35\u20137\"", "question": "Tell me the total number of week for w 35\u20137", "context": "CREATE TABLE table_name_67 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_70 WHERE result = \"l 34\u201324\"", "question": "Tell me the average week for result of l 34\u201324", "context": "CREATE TABLE table_name_70 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT czechoslovak_president FROM table_name_99 WHERE tenure_begin = \"1950\"", "question": "Who was the President of Czechoslovakia when an ambassador's tenure began in 1950?", "context": "CREATE TABLE table_name_99 (czechoslovak_president VARCHAR, tenure_begin VARCHAR)"}, {"answer": "SELECT SUM(share) FROM table_name_2 WHERE air_date = \"november 19, 2007\"", "question": "What is the total share for an episode with an air date of November 19, 2007?", "context": "CREATE TABLE table_name_2 (share INTEGER, air_date VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_35 WHERE time_retired = \"+15.665\"", "question": "Which manufacturer has a Time/Retired of +15.665?", "context": "CREATE TABLE table_name_35 (manufacturer VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT laps FROM table_name_72 WHERE manufacturer = \"aprilia\" AND grid = 10", "question": "What were the laps of aprilia with a grid of 10?", "context": "CREATE TABLE table_name_72 (laps VARCHAR, manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_66 WHERE venue = \"junction oval\"", "question": "What was the size of the crowd at the game played at Junction Oval?", "context": "CREATE TABLE table_name_66 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE home_team = \"north melbourne\"", "question": "When was the game when North Melbourne was the home team?", "context": "CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_64 WHERE player = \"andrew jones\"", "question": "Which School/Club Team does Andrew Jones play for?", "context": "CREATE TABLE table_name_64 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_5 WHERE round < 2", "question": "Which School/Club Team did not make it to round 2?", "context": "CREATE TABLE table_name_5 (school_club_team VARCHAR, round INTEGER)"}, {"answer": "SELECT player FROM table_name_16 WHERE pick = \"24\"", "question": "Which player is the 24 pick?", "context": "CREATE TABLE table_name_16 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_72 WHERE pick = \"16\"", "question": "What is the average round of the number 16 pick?", "context": "CREATE TABLE table_name_72 (round INTEGER, pick VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_83 WHERE win__percentage < 16.7 AND played = 3", "question": "How many games were lost where the win percentage is smaller than 16.7 and the played games is 3?", "context": "CREATE TABLE table_name_83 (lost VARCHAR, win__percentage VARCHAR, played VARCHAR)"}, {"answer": "SELECT location FROM table_name_23 WHERE name = \"pine valley\"", "question": "Where is pine valley?", "context": "CREATE TABLE table_name_23 (location VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_58 WHERE location = \"augusta\"", "question": "What is augusta's low rank?", "context": "CREATE TABLE table_name_58 (rank INTEGER, location VARCHAR)"}, {"answer": "SELECT model FROM table_name_52 WHERE gcm__kg__technical_capacity = \"42000\"", "question": "Which Model has the GCM (kg) Technical Capacity of 42000?", "context": "CREATE TABLE table_name_52 (model VARCHAR, gcm__kg__technical_capacity VARCHAR)"}, {"answer": "SELECT model FROM table_name_94 WHERE gcm__kg__technical_capacity = \"35000\" AND gvm__kg__technical_capacity = \"16000\" AND engine_make_capacity = \"cummins interact 6.0-euro iii (turbo intercooler)\"", "question": "Which Model has a GCM (kg) Technical Capacity of 35000, a GVM (kg) Technical Capacity of 16000, and Cummins Interact 6.0-euro III (turbo intercooler) for the Engine?", "context": "CREATE TABLE table_name_94 (model VARCHAR, engine_make_capacity VARCHAR, gcm__kg__technical_capacity VARCHAR, gvm__kg__technical_capacity VARCHAR)"}, {"answer": "SELECT character FROM table_name_44 WHERE result = \"won\" AND year < 2006", "question": "Which character won before 2006?", "context": "CREATE TABLE table_name_44 (character VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT character FROM table_name_6 WHERE category = \"favourite maa\" AND year = 2004", "question": "In 2004 who was favourite maa?", "context": "CREATE TABLE table_name_6 (character VARCHAR, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_33 WHERE year > 2004", "question": "What were the results after 2004?", "context": "CREATE TABLE table_name_33 (result VARCHAR, year INTEGER)"}, {"answer": "SELECT category FROM table_name_62 WHERE result = \"won\" AND year < 2007", "question": "In 2007 what category won?", "context": "CREATE TABLE table_name_62 (category VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT d_48_\u221a FROM table_name_97 WHERE d_40_\u221a = \"d 37\"", "question": "What's the D 48 \u221a when the D 40 \u221a is D 37?", "context": "CREATE TABLE table_name_97 (d_48_\u221a VARCHAR, d_40_\u221a VARCHAR)"}, {"answer": "SELECT d_42_\u221a FROM table_name_14 WHERE d_46_\u221a = \"majority\u2192\"", "question": "What's the D 42 \u221a when D 46 \u221a is majority\u2192?", "context": "CREATE TABLE table_name_14 (d_42_\u221a VARCHAR, d_46_\u221a VARCHAR)"}, {"answer": "SELECT d_40_\u221a FROM table_name_23 WHERE d_43_\u221a = \"d 14\"", "question": "What's the D 40 \u221a when D 43 \u221a is d 14?", "context": "CREATE TABLE table_name_23 (d_40_\u221a VARCHAR, d_43_\u221a VARCHAR)"}, {"answer": "SELECT d_42_\u221a FROM table_name_59 WHERE d_44_\u221a = \"majority\u2192\"", "question": "What's the D 42 \u221a when D 44 \u221a is majority\u2192?", "context": "CREATE TABLE table_name_59 (d_42_\u221a VARCHAR, d_44_\u221a VARCHAR)"}, {"answer": "SELECT d_44_\u221a FROM table_name_27 WHERE d_46_\u221a = \"d 26\"", "question": "What's the D 44 \u221a when D 46 \u221a is d 26?", "context": "CREATE TABLE table_name_27 (d_44_\u221a VARCHAR, d_46_\u221a VARCHAR)"}, {"answer": "SELECT d_42_\u221a FROM table_name_13 WHERE d_43_\u221a = \"r 5\"", "question": "What's the D 42 \u221a when D 43 \u221a is r 5?", "context": "CREATE TABLE table_name_13 (d_42_\u221a VARCHAR, d_43_\u221a VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_name_67 WHERE house_name = \"benue\"", "question": "How many benue houses have been founded?", "context": "CREATE TABLE table_name_67 (founded VARCHAR, house_name VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_name_56 WHERE named_after = \"river benue\"", "question": "When is the earliest year founded for houses named after the river benue?", "context": "CREATE TABLE table_name_56 (founded INTEGER, named_after VARCHAR)"}, {"answer": "SELECT composition FROM table_name_37 WHERE founded = 1976", "question": "What composition was founded in 1976?", "context": "CREATE TABLE table_name_37 (composition VARCHAR, founded VARCHAR)"}, {"answer": "SELECT colours FROM table_name_93 WHERE house_name = \"ogun\"", "question": "What colours have a House Name of ogun?", "context": "CREATE TABLE table_name_93 (colours VARCHAR, house_name VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_34 WHERE date = \"january 6, 2008\"", "question": "What's the average attendance on january 6, 2008?", "context": "CREATE TABLE table_name_34 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE visitor = \"spurs\"", "question": "What was the score when the spurs were the visitors?", "context": "CREATE TABLE table_name_43 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT SUM(gnis_feature_id) FROM table_name_64 WHERE county = \"idaho\"", "question": "What is the total GNIS Feature ID with a County of idaho?", "context": "CREATE TABLE table_name_64 (gnis_feature_id INTEGER, county VARCHAR)"}, {"answer": "SELECT MIN(gnis_feature_id) FROM table_name_39 WHERE county = \"sheridan\"", "question": "What is the lowest GNIS Feature ID from County of sheridan?", "context": "CREATE TABLE table_name_39 (gnis_feature_id INTEGER, county VARCHAR)"}, {"answer": "SELECT state FROM table_name_91 WHERE name = \"diamond lake\" AND gnis_feature_id = 1579127", "question": "Which state has a Name of diamond lake, and a GNIS Feature ID of 1579127?", "context": "CREATE TABLE table_name_91 (state VARCHAR, name VARCHAR, gnis_feature_id VARCHAR)"}, {"answer": "SELECT directed_by FROM table_name_85 WHERE written_by = \"cyrus nowrasteh\"", "question": "Who directed the episode written cyrus nowrasteh?", "context": "CREATE TABLE table_name_85 (directed_by VARCHAR, written_by VARCHAR)"}, {"answer": "SELECT COUNT(rank__pakistan_) FROM table_name_72 WHERE world_rank < 11 AND height__m_ < 8126", "question": "What is the Rank (Pakistan) of the mountain that has a World Rank smaller than 11 and a Height smaller than 8126?", "context": "CREATE TABLE table_name_72 (rank__pakistan_ VARCHAR, world_rank VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_96 WHERE 2001 = \"4r\"", "question": "Which 2006 tournament had a 4R performance in 2001?", "context": "CREATE TABLE table_name_96 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_79 WHERE 2004 = \"1r\" AND 1998 = \"2r\"", "question": "Which tournament had a performance of 1R in 2004 and 2R in 1998?", "context": "CREATE TABLE table_name_79 (tournament VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_14 WHERE 2007 = \"3r\"", "question": "Which 1998 tournament had a performance of 3R in 2007?", "context": "CREATE TABLE table_name_14 (Id VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_14 WHERE 2006 = \"1r\" AND 2002 = \"1r\"", "question": "What's the name of the 2005 tournament that has a 1R in both 2006 and 2002?", "context": "CREATE TABLE table_name_14 (Id VARCHAR)"}, {"answer": "SELECT AVG(gross_debt_in_) AS $billions_undeflated_treas FROM table_name_1 WHERE end_of_fiscal_year > 1980 AND as__percentage_of_gdp_low_high = \"83.4-84.4\" AND debt_held_by_public__$billions_ < 7 OFFSET 552", "question": "For End of Fiscal Years past 1980 that also have as % of GDP Low-High of 83.4-84.4, and a Debt Held By Public ($Billions) smaller than 7,552 what would be the average Gross Debt in $Billions undeflated Treas. in said years?", "context": "CREATE TABLE table_name_1 (gross_debt_in_ INTEGER, debt_held_by_public__$billions_ VARCHAR, end_of_fiscal_year VARCHAR, as__percentage_of_gdp_low_high VARCHAR)"}, {"answer": "SELECT COUNT(gross_debt_in_) AS $billions_undeflated_treas FROM table_name_11 WHERE debt_held_by_public__$billions_ > 236.8 AND as__percentage_of_gdp_low_high = \"33.4\"", "question": "For End of Fiscal Year(s) with a Debt Held By Public ($Billions) larger than 236.8, and as % of GDP Low-High of 33.4 what is the sum of the number of Gross Debt in $Billions undeflated Treas.?", "context": "CREATE TABLE table_name_11 (gross_debt_in_ VARCHAR, debt_held_by_public__$billions_ VARCHAR, as__percentage_of_gdp_low_high VARCHAR)"}, {"answer": "SELECT player FROM table_name_96 WHERE round = 6", "question": "What player was selected in Round 6?", "context": "CREATE TABLE table_name_96 (player VARCHAR, round VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_6 WHERE college_junior_club_team__league_ = \"peterborough petes (ohl)\"", "question": "What is the nationality of the player who played for the Peterborough Petes (OHL)?", "context": "CREATE TABLE table_name_6 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_84 WHERE nationality = \"canada\" AND player = \"mike peca (c)\"", "question": "Which round was Mike Peca (C) of Canada selected in?", "context": "CREATE TABLE table_name_84 (round INTEGER, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_21 WHERE driver = \"ayrton senna\"", "question": "What is the smallest grid for Ayrton Senna?", "context": "CREATE TABLE table_name_21 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_47 WHERE laps > 52 AND grid > 21", "question": "What is the Time/Retired for laps higher than 52 on a grid larger than 21?", "context": "CREATE TABLE table_name_47 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_53 WHERE grid = 20", "question": "What is the sum of laps for grid 20?", "context": "CREATE TABLE table_name_53 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_6 WHERE driver = \"ayrton senna\"", "question": "What is the most laps for Ayrton Senna?", "context": "CREATE TABLE table_name_6 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT SUM(parallel_bars) FROM table_name_87 WHERE floor_exercise > 9.137 AND horizontal_bar = 9.225 AND vault > 9.5", "question": "what was the score of the parallel bars with a floor exercise score more than 9.137, vault more than 9.5 and horizontal bar of 9.225?", "context": "CREATE TABLE table_name_87 (parallel_bars INTEGER, vault VARCHAR, floor_exercise VARCHAR, horizontal_bar VARCHAR)"}, {"answer": "SELECT MAX(floor_exercise) FROM table_name_81 WHERE pommel_horse = 9.65 AND horizontal_bar > 9.475", "question": "what was the floor exercise score with a pommel horse score of 9.65 and horizontal  bar score more than 9.475?", "context": "CREATE TABLE table_name_81 (floor_exercise INTEGER, pommel_horse VARCHAR, horizontal_bar VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_4 WHERE 2008 = \"a\" AND 2010 = \"1r\"", "question": "Which tournament had A in 2008, and a 1r in 2010?", "context": "CREATE TABLE table_name_4 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_12 WHERE 2012 = \"q1\" AND 2010 = \"1r\"", "question": "What was the position for 2008, where 2012 was q1, and 2010 was 1r?", "context": "CREATE TABLE table_name_12 (Id VARCHAR)"}, {"answer": "SELECT venue FROM table_name_81 WHERE goal = 3", "question": "Which venue has a Goal of 3?", "context": "CREATE TABLE table_name_81 (venue VARCHAR, goal VARCHAR)"}, {"answer": "SELECT venue FROM table_name_28 WHERE date = \"10 september 2010\"", "question": "Which venue was used on 10 september 2010?", "context": "CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(car) FROM table_name_48 WHERE yards < 6 AND avg > 5", "question": "How many carries for the player with under 6 yards and an average of over 5?", "context": "CREATE TABLE table_name_48 (car VARCHAR, yards VARCHAR, avg VARCHAR)"}, {"answer": "SELECT MAX(long) FROM table_name_72 WHERE player = \"kevin clemens\" AND yards < 31", "question": "What was the longest carry for kevin clemens with under 31 yards total?", "context": "CREATE TABLE table_name_72 (long INTEGER, player VARCHAR, yards VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_42 WHERE venue = \"brunswick street oval\"", "question": "What was the attendance at Brunswick Street Oval?", "context": "CREATE TABLE table_name_42 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT first_day_cover_cancellation FROM table_name_4 WHERE date_of_issue = \"13 june 2005\"", "question": "What's listed as the First Day Cover Cancellation with a Date of Issue of 13 June 2005?", "context": "CREATE TABLE table_name_4 (first_day_cover_cancellation VARCHAR, date_of_issue VARCHAR)"}, {"answer": "SELECT first_day_cover_cancellation FROM table_name_68 WHERE denomination = \"$0.50\" AND date_of_issue = \"13 june 2005\"", "question": "What's the First Day Cover Cancellation with Denomination of $0.50 and Date of Issue as 13 June 2005?", "context": "CREATE TABLE table_name_68 (first_day_cover_cancellation VARCHAR, denomination VARCHAR, date_of_issue VARCHAR)"}, {"answer": "SELECT denomination FROM table_name_88 WHERE date_of_issue = \"12 april 2005\"", "question": "What's the Denomination listed for the Date of Issue 12 April 2005?", "context": "CREATE TABLE table_name_88 (denomination VARCHAR, date_of_issue VARCHAR)"}, {"answer": "SELECT paper_type FROM table_name_30 WHERE denomination = \"$0.50\" AND date_of_issue = \"4 february 2005\"", "question": "Which Paper Type has a Denomination of $0.50 and Date of Issue 4 February 2005?", "context": "CREATE TABLE table_name_30 (paper_type VARCHAR, denomination VARCHAR, date_of_issue VARCHAR)"}, {"answer": "SELECT date_of_issue FROM table_name_46 WHERE design = \"katalin kovats\"", "question": "What's the Date of Issue for Design of Katalin Kovats?", "context": "CREATE TABLE table_name_46 (date_of_issue VARCHAR, design VARCHAR)"}, {"answer": "SELECT MIN(rec) FROM table_name_57 WHERE avg > 13", "question": "What was the lowest recorded record for a player with an average larger than 13?", "context": "CREATE TABLE table_name_57 (rec INTEGER, avg INTEGER)"}, {"answer": "SELECT AVG(yards) FROM table_name_94 WHERE long < 18 AND avg > 13", "question": "How many yards were averaged by the player that had a higher than 13 average with less than 18 long?", "context": "CREATE TABLE table_name_94 (yards INTEGER, long VARCHAR, avg VARCHAR)"}, {"answer": "SELECT MAX(passenger_fleet) FROM table_name_77 WHERE airline_holding = \"wizz air\" AND current_destinations < 83", "question": "For an airline of Wizz Air and fewer than 83 destinations, what is the highest passenger fleet?", "context": "CREATE TABLE table_name_77 (passenger_fleet INTEGER, airline_holding VARCHAR, current_destinations VARCHAR)"}, {"answer": "SELECT alliance__association FROM table_name_85 WHERE rank = 40", "question": "Which alliance has a rank of 40?", "context": "CREATE TABLE table_name_85 (alliance__association VARCHAR, rank VARCHAR)"}, {"answer": "SELECT alliance__association FROM table_name_11 WHERE airline_holding = \"aeroflot group\"", "question": "For airlines named Aeroflot Group, what is the alliance?", "context": "CREATE TABLE table_name_11 (alliance__association VARCHAR, airline_holding VARCHAR)"}, {"answer": "SELECT year FROM table_name_4 WHERE position = \"linebacker\" AND pick = \"17\"", "question": "In which year was a linebacker pick 17?", "context": "CREATE TABLE table_name_4 (year VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player_name FROM table_name_42 WHERE position = \"cornerback\" AND year = 1997", "question": "What is the name of the cornerback from 1997?", "context": "CREATE TABLE table_name_42 (player_name VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT player_name FROM table_name_48 WHERE year > 1989 AND college = \"washington state\"", "question": "What is the name of the player from after 1989 from Washington State?", "context": "CREATE TABLE table_name_48 (player_name VARCHAR, year VARCHAR, college VARCHAR)"}, {"answer": "SELECT race FROM table_name_5 WHERE margin = \"8\"", "question": "Which race has a Margin of 8?", "context": "CREATE TABLE table_name_5 (race VARCHAR, margin VARCHAR)"}, {"answer": "SELECT COUNT(runners) FROM table_name_55 WHERE placing > 1", "question": "How many Runners have a Placing that isn't 1?", "context": "CREATE TABLE table_name_55 (runners VARCHAR, placing INTEGER)"}, {"answer": "SELECT MIN(runners) FROM table_name_12 WHERE placing < 1", "question": "What is the lowest number of Runners that has a Placing that isn't 1?", "context": "CREATE TABLE table_name_12 (runners INTEGER, placing INTEGER)"}, {"answer": "SELECT MIN(prize__) AS \u00a3k_ FROM table_name_87 WHERE race = \"irish derby\"", "question": "What is the lowest Prize amount for the Irish Derby Race?", "context": "CREATE TABLE table_name_87 (prize__ INTEGER, race VARCHAR)"}, {"answer": "SELECT AVG(mintage) FROM table_name_62 WHERE issue_price = \"$1,099.99\" AND artist = \"pamela stagg\"", "question": "What was the mintage having an issue price of $1,099.99, artist being Pamela Stagg?", "context": "CREATE TABLE table_name_62 (mintage INTEGER, issue_price VARCHAR, artist VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_31 WHERE issue_price = \"$1,295.95\"", "question": "What was the year that had an issue price of $1,295.95?", "context": "CREATE TABLE table_name_31 (year INTEGER, issue_price VARCHAR)"}, {"answer": "SELECT AVG(mintage) FROM table_name_75 WHERE artist = \"celia godkin\" AND year < 2010", "question": "What was the average mintage for that of artist Celia Godkin, before the year 2010?", "context": "CREATE TABLE table_name_75 (mintage INTEGER, artist VARCHAR, year VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_15 WHERE venue = \"windy hill\"", "question": "What was the away team score at Windy Hill?", "context": "CREATE TABLE table_name_15 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_66 WHERE venue = \"lake oval\"", "question": "Who was the home team at Lake Oval?", "context": "CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE venue = \"vfl park\"", "question": "On what date was the venue VFL Park?", "context": "CREATE TABLE table_name_5 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_82 WHERE venue = \"glenferrie oval\"", "question": "Which team was the home team at Glenferrie Oval?", "context": "CREATE TABLE table_name_82 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE opponent_in_the_final = \"steffi graf\" AND score_in_the_final = \"2\u20136, 0\u20136\"", "question": "What was the date when Steffi Graf was the opponent in the final and the score was 2\u20136, 0\u20136?", "context": "CREATE TABLE table_name_49 (date VARCHAR, opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_19 WHERE outcome = \"winner\" AND date = \"12 march 1989\"", "question": "What was the surface where the outcome was winner on 12 march 1989?", "context": "CREATE TABLE table_name_19 (surface VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_68 WHERE tournament = \"lugano , switzerland wta virginia slims\" AND opponent_in_the_final = \"bonnie gadusek\"", "question": "What was the outcome of the Tournament of lugano , switzerland wta virginia slims, against bonnie gadusek?", "context": "CREATE TABLE table_name_68 (outcome VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_75 WHERE opponent_in_the_final = \"sylvia hanika\" AND surface = \"hard (i)\"", "question": "What is the outcome of the match against Sylvia Hanika on a hard (i) surface?", "context": "CREATE TABLE table_name_75 (outcome VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE no_s_ = \"20\"", "question": "What player had numbers of 20", "context": "CREATE TABLE table_name_67 (player VARCHAR, no_s_ VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_47 WHERE years_for_rockets = \"1999-2004\"", "question": "Tell me the height in ft for 1999-2004", "context": "CREATE TABLE table_name_47 (height_in_ft VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT no_s_ FROM table_name_18 WHERE height_in_ft = \"6-7\"", "question": "Tell me the number for height in ft of 6-7", "context": "CREATE TABLE table_name_18 (no_s_ VARCHAR, height_in_ft VARCHAR)"}, {"answer": "SELECT player FROM table_name_13 WHERE school_club_team_country = \"missouri\"", "question": "What player had a school of missouri", "context": "CREATE TABLE table_name_13 (player VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_26 WHERE team_from = \"rimouski oc\u00e9anic\"", "question": "What pick # has a team from Rimouski Oc\u00e9anic?", "context": "CREATE TABLE table_name_26 (pick__number INTEGER, team_from VARCHAR)"}, {"answer": "SELECT player FROM table_name_45 WHERE position = \"d\" AND team_from = \"hotchkiss school\"", "question": "Who is the player from Hotchkiss School with a position of d?", "context": "CREATE TABLE table_name_45 (player VARCHAR, position VARCHAR, team_from VARCHAR)"}, {"answer": "SELECT type FROM table_name_23 WHERE distance = \"km (mi)\" AND course = \"sorrento to sapri\"", "question": "What type is the sorrento to sapri course with a distance of km (mi)?", "context": "CREATE TABLE table_name_23 (type VARCHAR, distance VARCHAR, course VARCHAR)"}, {"answer": "SELECT type FROM table_name_24 WHERE course = \"misurina to bassano del grappa\"", "question": "What type is the misurina to bassano del grappa course?", "context": "CREATE TABLE table_name_24 (type VARCHAR, course VARCHAR)"}, {"answer": "SELECT distance FROM table_name_66 WHERE course = \"chieti to macerata\"", "question": "What's the distance for the chieti to macerata course?", "context": "CREATE TABLE table_name_66 (distance VARCHAR, course VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_51 WHERE make = \"chevrolet\" AND driver = \"sterling marlin\" AND car__number < 14", "question": "Which is the lowest points value that had a Chevrolet car, whose driver was Sterling Marlin, and whose car number was less than 14?", "context": "CREATE TABLE table_name_51 (points INTEGER, car__number VARCHAR, make VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_17 WHERE make = \"chevrolet\" AND car__number < 24 AND laps = 312 AND winnings = \"$122,325\"", "question": "Which is the lowest point value that had not only a Chevrolet car, but also a car number smaller than 24, total laps of 312, and a winning purse of $122,325?", "context": "CREATE TABLE table_name_17 (points INTEGER, winnings VARCHAR, laps VARCHAR, make VARCHAR, car__number VARCHAR)"}, {"answer": "SELECT location FROM table_name_78 WHERE result = \"win\" AND opponent = \"johan mparmpagiannis\"", "question": "What is the location for the win against Johan Mparmpagiannis?", "context": "CREATE TABLE table_name_78 (location VARCHAR, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_29 WHERE opponent = \"bj\u00f6rn bregy\"", "question": "What is the method against Bj\u00f6rn Bregy?", "context": "CREATE TABLE table_name_29 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_26 WHERE opponent = \"paula mataele\"", "question": "What is the method against Paula Mataele?", "context": "CREATE TABLE table_name_26 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE location = \"vilnius, lithuania\"", "question": "What is the date of the match in Vilnius, Lithuania?", "context": "CREATE TABLE table_name_60 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT result FROM table_name_81 WHERE opponent = \"errol zimmerman\" AND date = \"2007-04-07\"", "question": "What is the result against Errol Zimmerman on 2007-04-07?", "context": "CREATE TABLE table_name_81 (result VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_75 WHERE opponent = \"martinis knyzelis\"", "question": "What is the location of the match against Martinis Knyzelis?", "context": "CREATE TABLE table_name_75 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE home_team = \"st kilda\"", "question": "What day is st kilda the home side?", "context": "CREATE TABLE table_name_87 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_29 WHERE away_team = \"melbourne\"", "question": "What is melbourne's away score?", "context": "CREATE TABLE table_name_29 (away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_1 WHERE away_team = \"geelong\"", "question": "What was the home team's score when Geelong was the away team?", "context": "CREATE TABLE table_name_1 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(1978 AS _veteran_membership) FROM table_name_66 WHERE NOT _late_1941 = \"macedonia\" AND late_1943 < 10 OFFSET 000", "question": "What is the 1978 Veteran membership with a late 1941 macedonia and a late 1943 less than 10,000?", "context": "CREATE TABLE table_name_66 (late_1943 VARCHAR, _late_1941 VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_3 WHERE season = \"2011/12\"", "question": "Which opponent has a Season of 2011/12?", "context": "CREATE TABLE table_name_3 (opponent VARCHAR, season VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE season = \"2010/11\"", "question": "Which opponent has a Season of 2010/11?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, season VARCHAR)"}, {"answer": "SELECT competition FROM table_name_56 WHERE season = \"2010/11\"", "question": "Which competition has a Season of 2010/11?", "context": "CREATE TABLE table_name_56 (competition VARCHAR, season VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_20 WHERE result = \"\u2013\"", "question": "What Opponent has a Result of \u2013?", "context": "CREATE TABLE table_name_20 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT season FROM table_name_71 WHERE result = \"6\u20139\"", "question": "Which season has a Result of 6\u20139?", "context": "CREATE TABLE table_name_71 (season VARCHAR, result VARCHAR)"}, {"answer": "SELECT round FROM table_name_53 WHERE venue = \"nicosia\" AND opponent = \"levski sofia zapad\"", "question": "Which round has a Venue of nicosia, and a Opponent of levski sofia zapad?", "context": "CREATE TABLE table_name_53 (round VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_27 WHERE score = \"22-21\"", "question": "What resulted in a score of 22-21?", "context": "CREATE TABLE table_name_27 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_97 WHERE date = \"6/7/03\"", "question": "What competition was held on the date 6/7/03", "context": "CREATE TABLE table_name_97 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE date = \"15/6/03\"", "question": "What was the score for the date of 15/6/03", "context": "CREATE TABLE table_name_84 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_5 WHERE date = \"8/6/03\"", "question": "What venue is on the date of 8/6/03", "context": "CREATE TABLE table_name_5 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_69 WHERE score = \"12-22\"", "question": "What outcome has a score of 12-22?", "context": "CREATE TABLE table_name_69 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE venue = \"jjb stadium\" AND result = \"w\"", "question": "What date is for Venue of jjb stadium, and a Result of w?", "context": "CREATE TABLE table_name_14 (date VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_71 WHERE driver = \"fran\u00e7ois cevert\"", "question": "What is the high lap total for fran\u00e7ois cevert?", "context": "CREATE TABLE table_name_71 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_83 WHERE driver = \"rolf stommelen\"", "question": "Who constructed rolf stommelen's car?", "context": "CREATE TABLE table_name_83 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_91 WHERE time_retired = \"engine\" AND grid < 9", "question": "Who drive the car that retired due to engine failure and a grid of less than 9?", "context": "CREATE TABLE table_name_91 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE record = \"izod indycar series\"", "question": "When was the race that set the record for the Izod Indycar Series?", "context": "CREATE TABLE table_name_47 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT driver FROM table_name_61 WHERE record = \"qualifying\" AND time = \"24.761\"", "question": "Which driver set the Qualifying record with a time of 24.761 seconds?", "context": "CREATE TABLE table_name_61 (driver VARCHAR, record VARCHAR, time VARCHAR)"}, {"answer": "SELECT player FROM table_name_52 WHERE position = \"guard\" AND school_club_team = \"byu\"", "question": "What Utah Jazz guard, played at BYU?", "context": "CREATE TABLE table_name_52 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_19 WHERE player = \"derek fisher\"", "question": "What college team did Derek Fisher play for?", "context": "CREATE TABLE table_name_19 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_51 WHERE school_club_team = \"utep\"", "question": "The Utah Jazz Player from UTEP was what nationality?", "context": "CREATE TABLE table_name_51 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_26 WHERE home_team = \"richmond\"", "question": "What is the name of the venue when the home team is Richmond?", "context": "CREATE TABLE table_name_26 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_40 WHERE venue = \"princes park\"", "question": "What is the home team score when the venue is Princes Park?", "context": "CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT actor FROM table_name_66 WHERE character = \"glen cole\"", "question": "What actor plays glen cole?", "context": "CREATE TABLE table_name_66 (actor VARCHAR, character VARCHAR)"}, {"answer": "SELECT AVG(final_episode) AS Count FROM table_name_99 WHERE character = \"maxine valera\"", "question": "What is the average number for a final episode featuring maxine valera?", "context": "CREATE TABLE table_name_99 (final_episode INTEGER, character VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_45 WHERE time_retired = \"2:54:23.8\"", "question": "How many laps were driven in 2:54:23.8?", "context": "CREATE TABLE table_name_45 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_43 WHERE laps < 100 AND time_retired = \"+10 laps\"", "question": "Which constructor has laps less than 100 and a time/retired +10 laps?", "context": "CREATE TABLE table_name_43 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_95 WHERE grid = 8", "question": "What are the highest number of laps for grid 8?", "context": "CREATE TABLE table_name_95 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_11 WHERE time_retired = \"+0.3\"", "question": "Which grid is the highest and has a time/retired of +0.3?", "context": "CREATE TABLE table_name_11 (grid INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_61 WHERE constructor = \"maserati\" AND laps > 23 AND grid > 7", "question": "Which driver for Maserati has more laps than 23 and a grid greater than 7?", "context": "CREATE TABLE table_name_61 (driver VARCHAR, grid VARCHAR, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_7 WHERE general_classification = \"bernard hinault\" AND trofeo_fast_team = \"bianchi\" AND winner = \"urs freuler\" AND stage = \"4\"", "question": "Which points classification shares a general classification of Bernard Hinault, a Trofeo Fast Tem of Bianchi, was won by Urs Freuler, and was stage 4?", "context": "CREATE TABLE table_name_7 (points_classification VARCHAR, stage VARCHAR, winner VARCHAR, general_classification VARCHAR, trofeo_fast_team VARCHAR)"}, {"answer": "SELECT winner FROM table_name_71 WHERE points_classification = \"giuseppe saronni\" AND trofeo_fast_team = \"bianchi\" AND stage = \"3\"", "question": "Who was the winner that had a Points Classification of Giuseppe Saronni, a Trofeo Fast Team of Bianchi, and was Stage 3?", "context": "CREATE TABLE table_name_71 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, trofeo_fast_team VARCHAR)"}, {"answer": "SELECT stage FROM table_name_57 WHERE points_classification = \"francesco moser\" AND general_classification = \"bernard hinault\"", "question": "Which stage had a Points Classification of Francesco Moser and a general classification of Bernard Hinault?", "context": "CREATE TABLE table_name_57 (stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT winner FROM table_name_85 WHERE points_classification = \"francesco moser\" AND stage = \"12\"", "question": "Who was the winner of Stage 12 with a Points Classification of Francesco Moser?", "context": "CREATE TABLE table_name_85 (winner VARCHAR, points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_51 WHERE winner = \"bernard hinault\" AND points_classification = \"francesco moser\"", "question": "Which stage was won by Bernard Hinault and had a Points classification of Francesco Moser?", "context": "CREATE TABLE table_name_51 (stage VARCHAR, winner VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT loser FROM table_name_5 WHERE date = \"december 12\" AND year = 1971", "question": "Who was the loser on December 12, 1971?", "context": "CREATE TABLE table_name_5 (loser VARCHAR, date VARCHAR, year VARCHAR)"}, {"answer": "SELECT loser FROM table_name_96 WHERE location = \"municipal stadium\" AND year > 1970", "question": "Who was the loser at Municipal Stadium after 1970?", "context": "CREATE TABLE table_name_96 (loser VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE year = 1975 AND winner = \"oakland raiders\"", "question": "What is the date where the winner was the Oakland Raiders in 1975?", "context": "CREATE TABLE table_name_95 (date VARCHAR, year VARCHAR, winner VARCHAR)"}, {"answer": "SELECT result FROM table_name_23 WHERE location = \"arrowhead stadium\" AND loser = \"kansas city chiefs\"", "question": "What is result of the game at Arrowhead Stadium where the loser was the Kansas City Chiefs?", "context": "CREATE TABLE table_name_23 (result VARCHAR, location VARCHAR, loser VARCHAR)"}, {"answer": "SELECT work FROM table_name_54 WHERE category = \"best movie\"", "question": "What was nominated for the Best Movie category?", "context": "CREATE TABLE table_name_54 (work VARCHAR, category VARCHAR)"}, {"answer": "SELECT award FROM table_name_27 WHERE work = \"scream\" AND year = 1997", "question": "Which award did Scream receive a nomination and/or win for in 1997?", "context": "CREATE TABLE table_name_27 (award VARCHAR, work VARCHAR, year VARCHAR)"}, {"answer": "SELECT category FROM table_name_52 WHERE work = \"scream\" AND award = \"international horror guild\"", "question": "What category was Scream nominated for at the International Horror Guild?", "context": "CREATE TABLE table_name_52 (category VARCHAR, work VARCHAR, award VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_35 WHERE laps < 54 AND driver = \"mark donohue\"", "question": "what is the time/retired when the laps is less than 54 and the driver is mark donohue?", "context": "CREATE TABLE table_name_35 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_39 WHERE driver = \"mario andretti\" AND laps < 54", "question": "what is the grid when the driver is mario andretti and the laps is less than 54?", "context": "CREATE TABLE table_name_39 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_25 WHERE grid = 24", "question": "how many laps were there when the grid was 24?", "context": "CREATE TABLE table_name_25 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_79 WHERE laps = 6 AND grid < 18 AND driver = \"clay regazzoni\"", "question": "what is the time/retired when the laps is 6, the grid is less than 18 and the driver is clay regazzoni?", "context": "CREATE TABLE table_name_79 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT class FROM table_name_33 WHERE quantity < 5 AND gwr_nos = \"1322\u20131323\"", "question": "Which class is smaller than 5 and the GWR is 1322\u20131323?", "context": "CREATE TABLE table_name_33 (class VARCHAR, quantity VARCHAR, gwr_nos VARCHAR)"}, {"answer": "SELECT name FROM table_name_74 WHERE province = \"central highlands\" AND term_expires = 1996", "question": "Whose term expired in 1996 and was from the province of Central Highlands?", "context": "CREATE TABLE table_name_74 (name VARCHAR, province VARCHAR, term_expires VARCHAR)"}, {"answer": "SELECT province FROM table_name_79 WHERE party = \"national\" AND name = \"ken wright\"", "question": "Ken Wright of the National Party was from which province?", "context": "CREATE TABLE table_name_79 (province VARCHAR, party VARCHAR, name VARCHAR)"}, {"answer": "SELECT venue FROM table_name_20 WHERE year = 1967", "question": "Which venue hosted a race in 1967?", "context": "CREATE TABLE table_name_20 (venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_73 WHERE year > 1966", "question": "Which tournament was held after 1966?", "context": "CREATE TABLE table_name_73 (tournament VARCHAR, year INTEGER)"}, {"answer": "SELECT venue FROM table_name_78 WHERE year = 1965", "question": "Which venue hosted a tournament in 1965?", "context": "CREATE TABLE table_name_78 (venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_17 WHERE nominee = \"best new musical\"", "question": "What is the result for the best new musical nominee?", "context": "CREATE TABLE table_name_17 (result VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_84 WHERE nominee = \"simon baker\"", "question": "How many years does simon baker appear as a nominee?", "context": "CREATE TABLE table_name_84 (year VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_44 WHERE years_for_rockets = \"2005-06\"", "question": "What is the Height for Years of Rockets of 2005-06?", "context": "CREATE TABLE table_name_44 (height_in_ft VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_78 WHERE years_for_rockets = \"2005-06\"", "question": "What is the Height for Years for Rockets of 2005-06?", "context": "CREATE TABLE table_name_78 (height_in_ft VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_99 WHERE date = \"august 15\"", "question": "What is the Attendance on august 15?", "context": "CREATE TABLE table_name_99 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_1 WHERE fastest_lap = \"nigel mansell\"", "question": "What is the constructor for the race with Nigel Mansell as the fastest lap?", "context": "CREATE TABLE table_name_1 (constructor VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_82 WHERE location = \"estoril\"", "question": "What is the fastest lap at estoril?", "context": "CREATE TABLE table_name_82 (fastest_lap VARCHAR, location VARCHAR)"}, {"answer": "SELECT race FROM table_name_9 WHERE fastest_lap = \"keke rosberg\" AND location = \"paul ricard\"", "question": "What is the race in Paul Ricard with Keke Rosberg as the fastest lap?", "context": "CREATE TABLE table_name_9 (race VARCHAR, fastest_lap VARCHAR, location VARCHAR)"}, {"answer": "SELECT race AS Winner FROM table_name_99 WHERE location = \"spa-francorchamps\"", "question": "Who was the winner at spa-francorchamps?", "context": "CREATE TABLE table_name_99 (race VARCHAR, location VARCHAR)"}, {"answer": "SELECT venue FROM table_name_11 WHERE result = \"7-2\"", "question": "Where was the game with result 7-2 played?", "context": "CREATE TABLE table_name_11 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE competition = \"friendly\" AND result = \"7-2\"", "question": "What was the score of the Friendly competition where the result was 7-2?", "context": "CREATE TABLE table_name_54 (score VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE date = \"27 january 1996\"", "question": "What was the score of the game on 27 January 1996?", "context": "CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_40 WHERE result = \"3-2\"", "question": "What is the event with a result of 3-2?", "context": "CREATE TABLE table_name_40 (competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_30 WHERE venue = \"junction oval\"", "question": "How big was the crowd size, at the Junction Oval venue?", "context": "CREATE TABLE table_name_30 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_39 WHERE away_team = \"melbourne\"", "question": "What is the visiting team of Melbourne's score?", "context": "CREATE TABLE table_name_39 (away_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_78 WHERE home_team = \"fitzroy\"", "question": "What is the average crowd size of Fitzroy's home team?", "context": "CREATE TABLE table_name_78 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MIN(build_date) FROM table_name_48 WHERE disposal = \"scrapped 1941\"", "question": "Which railway had the earliest build date and a disposal of \"Scrapped 1941?\"", "context": "CREATE TABLE table_name_48 (build_date INTEGER, disposal VARCHAR)"}, {"answer": "SELECT railway FROM table_name_68 WHERE build_date = 1911 AND loco_name = \"pyramus\"", "question": "Which railway had a loco name of Pyramus and a build date of 1911?", "context": "CREATE TABLE table_name_68 (railway VARCHAR, build_date VARCHAR, loco_name VARCHAR)"}, {"answer": "SELECT build_date FROM table_name_13 WHERE wheels = \"0-6-2 t\"", "question": "What was the build date of the railway(s) with 0-6-2 t wheels?", "context": "CREATE TABLE table_name_13 (build_date VARCHAR, wheels VARCHAR)"}, {"answer": "SELECT disbanded FROM table_name_73 WHERE league = \"ahl\"", "question": "Which disbanded is in the ahl league?", "context": "CREATE TABLE table_name_73 (disbanded VARCHAR, league VARCHAR)"}, {"answer": "SELECT championships FROM table_name_1 WHERE established > 2005", "question": "Which championship was established after 2005?", "context": "CREATE TABLE table_name_1 (championships VARCHAR, established INTEGER)"}, {"answer": "SELECT year FROM table_name_62 WHERE player = \"j.r. reid\"", "question": "Which year had J.R. Reid as a player?", "context": "CREATE TABLE table_name_62 (year VARCHAR, player VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_11 WHERE player = \"dajuan wagner\"", "question": "Which hometown is the played Dajuan Wagner from?", "context": "CREATE TABLE table_name_11 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_29 WHERE home_team = \"carlton\"", "question": "When the home team was carlton how many people were in the crowd?", "context": "CREATE TABLE table_name_29 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_95 WHERE crowd > 23 OFFSET 000", "question": "Which away team had a crowd of over 23,000 people?", "context": "CREATE TABLE table_name_95 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT home_team FROM table_name_39 WHERE venue = \"western oval\"", "question": "What's the home team for the western oval venue?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_28 WHERE venue = \"junction oval\"", "question": "What's the home team for the junction oval venue?", "context": "CREATE TABLE table_name_28 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_5 WHERE opponent = \"fenerbah\u00e7e\"", "question": "What was the result when the opponent was fenerbah\u00e7e?", "context": "CREATE TABLE table_name_5 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT apparent_magnitude FROM table_name_14 WHERE ngc_number = \"6027d\"", "question": "what is the apparent magnitude of NGC number 6027d?", "context": "CREATE TABLE table_name_14 (apparent_magnitude VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_77 WHERE home = \"grizzlies\" AND date = \"13 november 2007\"", "question": "What is the visiting team of the game with the home team Grizzlies on 13 November 2007?", "context": "CREATE TABLE table_name_77 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE home = \"mavericks\"", "question": "What is the date of the game when the Mavericks were the home team?", "context": "CREATE TABLE table_name_98 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT MIN(year_made) FROM table_name_86 WHERE wheel_arrangement = \"0-4-2t\"", "question": "Which of the lowest years had a Wheel arrangement that was 0-4-2t?", "context": "CREATE TABLE table_name_86 (year_made INTEGER, wheel_arrangement VARCHAR)"}, {"answer": "SELECT AVG(year_made) FROM table_name_85 WHERE iwcr_no = \"5\" AND year_withdrawn > 1926", "question": "What is the mean Year when the IWCR number was 5 and the Year withdrawn was bigger than 1926?", "context": "CREATE TABLE table_name_85 (year_made INTEGER, iwcr_no VARCHAR, year_withdrawn VARCHAR)"}, {"answer": "SELECT sr_no FROM table_name_87 WHERE wheel_arrangement = \"0-6-0t\" AND year_made > 1874 AND year_withdrawn = 1963", "question": "Which SR number had a wheel arrangement of 0-6-0t, the year made was more recent than 1874, and the year withdrawn was 1963?", "context": "CREATE TABLE table_name_87 (sr_no VARCHAR, year_withdrawn VARCHAR, wheel_arrangement VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT COUNT(year_made) FROM table_name_18 WHERE wheel_arrangement = \"0-4-0t\"", "question": "What is the sum number of years where the wheel arrangement of 0-4-0t?", "context": "CREATE TABLE table_name_18 (year_made VARCHAR, wheel_arrangement VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_63 WHERE attendance = \"63,001\"", "question": "What was the latest week of a game that had an attendance of 63,001?", "context": "CREATE TABLE table_name_63 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_76 WHERE nation = \"austria\" AND rank > 4", "question": "What is the total medals Austria and those with larger than rank 4 have?", "context": "CREATE TABLE table_name_76 (total VARCHAR, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_96 WHERE rank < 6 AND silver = 1 AND total > 4", "question": "What is the most gold medals that a team ranked higher than 6, have 1 silver medal, and more than 4 total medals have?", "context": "CREATE TABLE table_name_96 (gold INTEGER, total VARCHAR, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT country FROM table_name_76 WHERE opened = 2002 AND model = \"spinning coaster\" AND park = \"disney's animal kingdom\"", "question": "Which country has a rollercoaster that opened in 2002, is a spinning coaster, and is located in Disney's Animal Kingdom?", "context": "CREATE TABLE table_name_76 (country VARCHAR, park VARCHAR, opened VARCHAR, model VARCHAR)"}, {"answer": "SELECT name FROM table_name_98 WHERE opened = 2000 AND park = \"brighton pier\"", "question": "What is the name of the roller coaster that opened in 2000 in Brighton Pier?", "context": "CREATE TABLE table_name_98 (name VARCHAR, opened VARCHAR, park VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_85 WHERE date = \"may 6\"", "question": "How many attended on may 6?", "context": "CREATE TABLE table_name_85 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_67 WHERE score = \"3-17\"", "question": "Who did they lose to 3-17?", "context": "CREATE TABLE table_name_67 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_56 WHERE home_team = \"richmond\"", "question": "What venue did Richmond play at as the home team?", "context": "CREATE TABLE table_name_56 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_73 WHERE away_team = \"footscray\"", "question": "What home team played against Footscray as the away team?", "context": "CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_84 WHERE away_team = \"boreham wood\"", "question": "what was the attendance when the away team was boreham wood?", "context": "CREATE TABLE table_name_84 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(tie_no) FROM table_name_82 WHERE away_team = \"solihull moors\"", "question": "what is the tie no when the away team is solihull moors?", "context": "CREATE TABLE table_name_82 (tie_no INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_30 WHERE tie_no > 13 AND home_team = \"team bath\"", "question": "who is the away team when the tie no is more than 13 and the home team is team bath?", "context": "CREATE TABLE table_name_30 (away_team VARCHAR, tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_50 WHERE college = \"simon fraser\"", "question": "What is the Pick # of the player from Simon Fraser College?", "context": "CREATE TABLE table_name_50 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_78 WHERE winning_score = \u221210(71 - 65 - 68 - 70 = 274)", "question": "What is the margin of victory for the winning score of \u221210 (71-65-68-70=274)?", "context": "CREATE TABLE table_name_78 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_65 WHERE winning_score = \u22123(71 - 74 - 66 - 66 = 277)", "question": "Who is the runner(s)-up for a winning score of \u22123 (71-74-66-66=277)?", "context": "CREATE TABLE table_name_65 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_58 WHERE extra < 7.4 AND result = \"4th\"", "question": "What venue had less than 7.4 extra and the result of 4th?", "context": "CREATE TABLE table_name_58 (venue VARCHAR, extra VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(extra) FROM table_name_51 WHERE meeting = \"all africa games\" AND year < 2003", "question": "What is the highest extra total before 2003 at the Meeting of all africa games?", "context": "CREATE TABLE table_name_51 (extra INTEGER, meeting VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_12 WHERE extra = 8 AND result = \"3rd\"", "question": "What year has an extra of 8, and a result of 3rd?", "context": "CREATE TABLE table_name_12 (year VARCHAR, extra VARCHAR, result VARCHAR)"}, {"answer": "SELECT year FROM table_name_52 WHERE venue = \"algiers, algeria\" AND extra < 8.03 AND meeting = \"all africa games\"", "question": "What year has a venue of algiers, algeria, extra smaller than 8.03, and a Meeting of all africa games?", "context": "CREATE TABLE table_name_52 (year VARCHAR, meeting VARCHAR, venue VARCHAR, extra VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE set_3 = \"15\u20136\"", "question": "What is the Date with a Set 3 with 15\u20136?", "context": "CREATE TABLE table_name_98 (date VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_7 WHERE score = \"3\u20131\" AND set_2 = \"13\u201315\"", "question": "What is the Set 3 with a Score of 3\u20131, and has a Set 2 of 13\u201315?", "context": "CREATE TABLE table_name_7 (set_3 VARCHAR, score VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_92 WHERE score = \"3\u20130\" AND set_3 = \"15\u201312\"", "question": "What is the Set 1 with a Score of 3\u20130, and has a Set 3 of 15\u201312?", "context": "CREATE TABLE table_name_92 (set_1 VARCHAR, score VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_4 WHERE score = \"3\u20130\" AND set_3 = \"15\u201310\"", "question": "What is the Set 1 with a Score of 3\u20130, and has a Set 3 of 15\u201310?", "context": "CREATE TABLE table_name_4 (set_1 VARCHAR, score VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_42 WHERE total = \"45\u201312\"", "question": "What is the Set 2 with a Total with 45\u201312?", "context": "CREATE TABLE table_name_42 (set_2 VARCHAR, total VARCHAR)"}, {"answer": "SELECT total FROM table_name_78 WHERE score = \"3\u20130\" AND date = \"14 oct\" AND set_1 = \"15\u201312\"", "question": "What is the Total with a Score of 3\u20130, and a Date of 14 oct, and has a Set 1 of 15\u201312?", "context": "CREATE TABLE table_name_78 (total VARCHAR, set_1 VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE home_team = \"footscray\"", "question": "What was the date of the footscray home game?", "context": "CREATE TABLE table_name_46 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT time FROM table_name_90 WHERE opponent = \"martin kampmann\"", "question": "Tell me the time for martin kampmann", "context": "CREATE TABLE table_name_90 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_41 WHERE record = \"6-3\"", "question": "Tell me the sum of round for record of 6-3", "context": "CREATE TABLE table_name_41 (round INTEGER, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_52 WHERE res = \"win\" AND record = \"8-5\"", "question": "Tell me the location for win with record of 8-5", "context": "CREATE TABLE table_name_52 (location VARCHAR, res VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_71 WHERE away_team = \"north melbourne\"", "question": "In which of North Melbourne's away games was there the lowest crowd?", "context": "CREATE TABLE table_name_71 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT build_date FROM table_name_56 WHERE prr_class = \"brs24\"", "question": "What is the build date of the model with PRR Class brs24?", "context": "CREATE TABLE table_name_56 (build_date VARCHAR, prr_class VARCHAR)"}, {"answer": "SELECT SUM(total_produced) FROM table_name_13 WHERE wheel_arrangement = \"b-b\" AND prr_class = \"bs6\" AND builder\u2019s_model = \"ds-4-4-660\"", "question": "How many total units were built of Model ds-4-4-660 with a b-b wheel arrangement and a PRR Class of bs6?", "context": "CREATE TABLE table_name_13 (total_produced INTEGER, builder\u2019s_model VARCHAR, wheel_arrangement VARCHAR, prr_class VARCHAR)"}, {"answer": "SELECT build_date FROM table_name_61 WHERE prr_class = \"brs24\"", "question": "What is the build date of the model with a PRR Class of brs24?", "context": "CREATE TABLE table_name_61 (build_date VARCHAR, prr_class VARCHAR)"}, {"answer": "SELECT COUNT(roll) FROM table_name_12 WHERE name = \"te hapua school\"", "question": "What is the total number of roll for Te Hapua school?", "context": "CREATE TABLE table_name_12 (roll VARCHAR, name VARCHAR)"}, {"answer": "SELECT place_of_action FROM table_name_45 WHERE service = \"marine corps\" AND rank = \"corporal\"", "question": "Name the place of action for the marine corps and corporal rank", "context": "CREATE TABLE table_name_45 (place_of_action VARCHAR, service VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_51 WHERE laps > 60 AND driver = \"heinz-harald frentzen\"", "question": "When driver heinz-harald frentzen has a number of laps greater than 60, what is the sum of grid?", "context": "CREATE TABLE table_name_51 (grid VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_44 WHERE name = \"saint-wenceslas\" AND region < 17", "question": "What is the population total for saint-wenceslas with a region number of under 17?", "context": "CREATE TABLE table_name_44 (population INTEGER, name VARCHAR, region VARCHAR)"}, {"answer": "SELECT MIN(code) FROM table_name_98 WHERE type = \"m\" AND name = \"saint-sylv\u00e8re\" AND region < 17", "question": "What is the smallest code associated with a type of m for a region less than 17 named, named saint-sylv\u00e8re?", "context": "CREATE TABLE table_name_98 (code INTEGER, region VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT competition FROM table_name_19 WHERE venue = \"daugava stadium, riga, latvia\"", "question": "What competition was at the Daugava Stadium, Riga, Latvia?", "context": "CREATE TABLE table_name_19 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(goal) FROM table_name_81 WHERE date = \"15 november 1989\"", "question": "How many total goals were made at the game on 15 November 1989?", "context": "CREATE TABLE table_name_81 (goal VARCHAR, date VARCHAR)"}, {"answer": "SELECT captain FROM table_name_86 WHERE team = \"leeds united\"", "question": "What is the captain's name of team Leeds United?", "context": "CREATE TABLE table_name_86 (captain VARCHAR, team VARCHAR)"}, {"answer": "SELECT shirt_sponsor FROM table_name_10 WHERE captain = \"geoff thomas\"", "question": "Who is the shirt sponsor for Captain Geoff Thomas' team?", "context": "CREATE TABLE table_name_10 (shirt_sponsor VARCHAR, captain VARCHAR)"}, {"answer": "SELECT team FROM table_name_99 WHERE shirt_sponsor = \"tulip computers nv\"", "question": "What is the name of the team that Tulip Computers NV sponsors?", "context": "CREATE TABLE table_name_99 (team VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT captain FROM table_name_49 WHERE team = \"norwich city\"", "question": "What is the name of the captain for team Norwich City?", "context": "CREATE TABLE table_name_49 (captain VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_32 WHERE manager = \"graeme souness\"", "question": "What team does Graeme Souness manage?", "context": "CREATE TABLE table_name_32 (team VARCHAR, manager VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_45 WHERE grid < 5 AND driver = \"juan manuel fangio\"", "question": "what is the lowest laps when the grid is smaller than 5 and the driver is juan manuel fangio?", "context": "CREATE TABLE table_name_45 (laps INTEGER, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_18 WHERE time_retired = \"+9 laps\" AND laps > 91", "question": "what is the grid when the time/retired is +9 laps and the laps is larger than 91?", "context": "CREATE TABLE table_name_18 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_88 WHERE time_retired = \"clutch\" AND driver = \"peter collins\" AND laps < 26", "question": "what is the lowest grid when the time retired is clutch, the driver is peter collins and the laps is smaller than 26?", "context": "CREATE TABLE table_name_88 (grid INTEGER, laps VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT zone FROM table_name_41 WHERE camp_type = \"d/s\" AND area = \"bl9\"", "question": "What zone has camp type D/S in area Bl9?", "context": "CREATE TABLE table_name_41 (zone VARCHAR, camp_type VARCHAR, area VARCHAR)"}, {"answer": "SELECT name FROM table_name_51 WHERE group_s_ = 0 AND area = \"bl4\"", "question": "Which name has group 0 in Bl4 area?", "context": "CREATE TABLE table_name_51 (name VARCHAR, group_s_ VARCHAR, area VARCHAR)"}, {"answer": "SELECT zone FROM table_name_80 WHERE max_people > 23 AND group_s_ < 2 AND name = \"robbers roost\"", "question": "Which zone has max capacity of 23 in a group under 2 at Robbers Roost?", "context": "CREATE TABLE table_name_80 (zone VARCHAR, name VARCHAR, max_people VARCHAR, group_s_ VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_43 WHERE away_team = \"melbourne\"", "question": "I want to know the average crowd for away team of melbourne", "context": "CREATE TABLE table_name_43 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT driver FROM table_name_39 WHERE time_retired = \"off course\"", "question": "Which driver had a time off course?", "context": "CREATE TABLE table_name_39 (driver VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_9 WHERE grid = \"2\" AND points > 26", "question": "What is the top lap that had 2 grids and more than 26 points?", "context": "CREATE TABLE table_name_9 (laps INTEGER, grid VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_38 WHERE grid = \"6\" AND points > 19", "question": "What is the top lap that had 6 grids and more than 19 points?", "context": "CREATE TABLE table_name_38 (laps INTEGER, grid VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_30 WHERE driver = \"tristan gommendy\"", "question": "What is the average point count for tristan gommendy?", "context": "CREATE TABLE table_name_30 (points INTEGER, driver VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_88 WHERE grid = \"2\"", "question": "What is the point low with 2 grids?", "context": "CREATE TABLE table_name_88 (points INTEGER, grid VARCHAR)"}, {"answer": "SELECT dismissals FROM table_name_43 WHERE venue = \"source: cricinfo.com\"", "question": "What is the Dismissals with a Venue with source: cricinfo.com?", "context": "CREATE TABLE table_name_43 (dismissals VARCHAR, venue VARCHAR)"}, {"answer": "SELECT versus FROM table_name_37 WHERE player = \"ko otieno\" AND venue = \"bloemfontein\"", "question": "What is the Versus with a Player with ko otieno, with Venue with bloemfontein?", "context": "CREATE TABLE table_name_37 (versus VARCHAR, player VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_22 WHERE date = \"27-02-2003\"", "question": "What is the Venue with a Date with 27-02-2003?", "context": "CREATE TABLE table_name_22 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_34 WHERE versus = \"australia\"", "question": "What is the Player with Versus with australia?", "context": "CREATE TABLE table_name_34 (player VARCHAR, versus VARCHAR)"}, {"answer": "SELECT player FROM table_name_31 WHERE date = \"12-03-2003\"", "question": "What is the Player with a Date with 12-03-2003?", "context": "CREATE TABLE table_name_31 (player VARCHAR, date VARCHAR)"}, {"answer": "SELECT dismissals FROM table_name_67 WHERE player = \"source: cricinfo.com\"", "question": "What is the Dismissals with a Player with source: cricinfo.com?", "context": "CREATE TABLE table_name_67 (dismissals VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_76 WHERE visitor = \"charlotte\" AND leading_scorer = \"ricky davis (23)\"", "question": "What is the sum number of attendance when the visiting team was Charlotte and the leading scorer was Ricky Davis (23)?", "context": "CREATE TABLE table_name_76 (attendance VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_80 WHERE home = \"miami\" AND date = \"november 4\"", "question": "Which Visitor was there when the Home game was played in Miami on November 4?", "context": "CREATE TABLE table_name_80 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_1 WHERE player = \"demetris nichols\"", "question": "What nationality is Demetris Nichols?", "context": "CREATE TABLE table_name_1 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_50 WHERE round = 2 AND pick < 42", "question": "What school or team has round of 2 with less than 42 picks?", "context": "CREATE TABLE table_name_50 (school_club_team VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_86 WHERE round < 2", "question": "What position has round less than 2?", "context": "CREATE TABLE table_name_86 (position VARCHAR, round INTEGER)"}, {"answer": "SELECT venue FROM table_name_92 WHERE home_team = \"essendon\"", "question": "In what venue is Essendon the home team?", "context": "CREATE TABLE table_name_92 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_59 WHERE venue = \"windy hill\"", "question": "Who was the away team when the venue was Windy Hill?", "context": "CREATE TABLE table_name_59 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_56 WHERE away_team = \"hawthorn\"", "question": "What was the score for Hawthorn when they were the away team?", "context": "CREATE TABLE table_name_56 (away_team VARCHAR)"}, {"answer": "SELECT method FROM table_name_56 WHERE res = \"win\" AND opponent = \"natsuko kikukawa\"", "question": "What method was used that had a resulting win against opponent, Natsuko Kikukawa?", "context": "CREATE TABLE table_name_56 (method VARCHAR, res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_85 WHERE opponent = \"hikaru shinohara\" AND record = \"11-7\"", "question": "What was the highest number of rounds that had Hikaru Shinohara as an opponent and a record of 11-7?", "context": "CREATE TABLE table_name_85 (round INTEGER, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_70 WHERE record = \"11-10\"", "question": "Which method has a record of 11-10?", "context": "CREATE TABLE table_name_70 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT win__number FROM table_name_67 WHERE season = \"2004-05\"", "question": "How many wins were there in 2004-05?", "context": "CREATE TABLE table_name_67 (win__number VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(win__number) FROM table_name_2 WHERE winner = \"jim vivona\"", "question": "How many times did jim vivona win?", "context": "CREATE TABLE table_name_2 (win__number VARCHAR, winner VARCHAR)"}, {"answer": "SELECT position FROM table_name_1 WHERE team = \"morristown minutemen\"", "question": "Which position was morristown minutemen in?", "context": "CREATE TABLE table_name_1 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT season FROM table_name_75 WHERE team = \"harrisburg lunatics\"", "question": "Which season was harrisburg lunatics in?", "context": "CREATE TABLE table_name_75 (season VARCHAR, team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_8 WHERE round = \"f\"", "question": "What was the venue for Round f?", "context": "CREATE TABLE table_name_8 (venue VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE result = \"1-0\"", "question": "On what date was the Result 1-0?", "context": "CREATE TABLE table_name_33 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_31 WHERE date = \"10 november 2004\"", "question": "What was the attendance on 10 november 2004?", "context": "CREATE TABLE table_name_31 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_29 WHERE home_team = \"fitzroy\"", "question": "What is the size of the crowd when the home team is Fitzroy?", "context": "CREATE TABLE table_name_29 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_96 WHERE time_retired = \"+ 1 lap\" AND driver = \"riccardo patrese\"", "question": "How many laps did riccardo patrese do when he had a time/retird of + 1 lap?", "context": "CREATE TABLE table_name_96 (laps VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT episode FROM table_name_16 WHERE year = 2004 AND nominee_s_ = \"jenny bicks and cindy chupack\"", "question": "Name the episode for jenny bicks and cindy chupack nominees in 2004", "context": "CREATE TABLE table_name_16 (episode VARCHAR, year VARCHAR, nominee_s_ VARCHAR)"}, {"answer": "SELECT episode FROM table_name_30 WHERE year > 1999", "question": "Name the episode for year more than 1999", "context": "CREATE TABLE table_name_30 (episode VARCHAR, year INTEGER)"}, {"answer": "SELECT home_team AS score FROM table_name_13 WHERE venue = \"junction oval\"", "question": "What was the home team's score at the game held at Junction Oval?", "context": "CREATE TABLE table_name_13 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_44 WHERE venue = \"mcg\"", "question": "What was the away team's score at the game held at MCG?", "context": "CREATE TABLE table_name_44 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_53 WHERE venue = \"arden street oval\"", "question": "Who was the away team at the game held at Arden Street Oval?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_94 WHERE home_team = \"fitzroy\"", "question": "What was the size of the crowd at the game where Fitzroy was the home team?", "context": "CREATE TABLE table_name_94 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_17 WHERE silver > 6 AND total < 127 AND gold < 11", "question": "Name the most bronze for silver more than 6 and total less than 127 with gold less than 11", "context": "CREATE TABLE table_name_17 (bronze INTEGER, gold VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_18 WHERE sport = \"table tennis\" AND bronze > 0", "question": "Name the highest silver for table tennis and bronze more than 0", "context": "CREATE TABLE table_name_18 (silver INTEGER, sport VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT kickoff_[a_] FROM table_name_9 WHERE attendance = \"58,120\"", "question": "Which kickoff had an attendance of 58,120?", "context": "CREATE TABLE table_name_9 (kickoff_ VARCHAR, a_ VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT week FROM table_name_14 WHERE date = \"november 19, 1989\"", "question": "What week number did November 19, 1989 games fall on?", "context": "CREATE TABLE table_name_14 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_58 WHERE record = \"2-2\"", "question": "Which game site(s) had record of 2-2?", "context": "CREATE TABLE table_name_58 (game_site VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE kickoff_[a_] = \"1:00\" AND record = \"3-7\"", "question": "Which game had a kickoff at 1:00 and a record of 3-7?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE attendance = \"56,271\"", "question": "Which game had an attendance of 56,271?", "context": "CREATE TABLE table_name_12 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT driver FROM table_name_22 WHERE engine = \"ford cosworth dfv 3.0 v8\" AND chassis = \"ts19 ts20\"", "question": "Tell me the driver for ford cosworth dfv 3.0 v8 and chassis of ts19 ts20", "context": "CREATE TABLE table_name_22 (driver VARCHAR, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_3 WHERE driver = \"alberto colombo\" AND chassis = \"a1\"", "question": "Tell me the constructor for alberto colombo and chassis of a1", "context": "CREATE TABLE table_name_3 (constructor VARCHAR, driver VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_24 WHERE driver = \"clay regazzoni\"", "question": "Tell me the constructor for clay regazzoni", "context": "CREATE TABLE table_name_24 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_29 WHERE entrant = \"team tissot ensign\" AND driver = \"brett lunger\"", "question": "Tell me the chassis for team tissot ensign and driver of brett lunger", "context": "CREATE TABLE table_name_29 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT tyres FROM table_name_46 WHERE driver = \"hans binder\"", "question": "I want the tyres for hans binder", "context": "CREATE TABLE table_name_46 (tyres VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_54 WHERE rounds = \"1-2\" AND driver = \"divina galica\"", "question": "I want the constructor for divina galica rounds of 1-2", "context": "CREATE TABLE table_name_54 (constructor VARCHAR, rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE date = \"june 3\"", "question": "What team did the Red Sox play against on June 3?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_22 WHERE attendance = \"21,191\"", "question": "What was the Record at the game that had an attendance of 21,191?", "context": "CREATE TABLE table_name_22 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE date = \"june 17\"", "question": "What was the final score of the game on June 17?", "context": "CREATE TABLE table_name_74 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT 1 AS st_ship_delivery_date FROM table_name_87 WHERE total_number_of_ways = \"6 ways\"", "question": "What is the 1st ship delivery date of 6 ways?", "context": "CREATE TABLE table_name_87 (total_number_of_ways VARCHAR)"}, {"answer": "SELECT final FROM table_name_44 WHERE athlete = \"mohammad reza samadi\"", "question": "What was the final round result of Mohammad Reza Samadi?", "context": "CREATE TABLE table_name_44 (final VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_53 WHERE home_team = \"footscray\"", "question": "When the Home team of footscray is playing, what's the Home team score?", "context": "CREATE TABLE table_name_53 (home_team VARCHAR)"}, {"answer": "SELECT song_title FROM table_name_78 WHERE chart_peak = \"#1\" AND track = 20", "question": "What was the title of the song that peaked the charts at #1 with track 20?", "context": "CREATE TABLE table_name_78 (song_title VARCHAR, chart_peak VARCHAR, track VARCHAR)"}, {"answer": "SELECT time FROM table_name_29 WHERE song_title = \"treat me nice\"", "question": "What is the time from the song called Treat Me Nice?", "context": "CREATE TABLE table_name_29 (time VARCHAR, song_title VARCHAR)"}, {"answer": "SELECT copyright_information FROM table_name_7 WHERE publisher = \"random house\"", "question": "What was Random House's copyright information?", "context": "CREATE TABLE table_name_7 (copyright_information VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_19 WHERE isbn = 0 AND year = 1992", "question": "What was release date in 1992 with the ISBN #0?", "context": "CREATE TABLE table_name_19 (release_date VARCHAR, isbn VARCHAR, year VARCHAR)"}, {"answer": "SELECT club_team FROM table_name_70 WHERE overall = 216", "question": "What club team has 216 overall?", "context": "CREATE TABLE table_name_70 (club_team VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_67 WHERE player = \"chris phillips\"", "question": "What is the highest round played by Chris Phillips?", "context": "CREATE TABLE table_name_67 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_94 WHERE college = \"graceland\"", "question": "What player attended Graceland College?", "context": "CREATE TABLE table_name_94 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_36 WHERE cfl_team = \"toronto argonauts\"", "question": "What is the highest pick number of the CFL's Toronto Argonauts?", "context": "CREATE TABLE table_name_36 (pick__number INTEGER, cfl_team VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_89 WHERE college = \"mcmaster\"", "question": "Which pick number attended McMaster College?", "context": "CREATE TABLE table_name_89 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_98 WHERE decision = \"osgood\" AND home = \"edmonton\"", "question": "Who was the visiting team at the game where Edmonton was the home team and the decision was Osgood?", "context": "CREATE TABLE table_name_98 (visitor VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT recorded FROM table_name_63 WHERE time = \"2:12\" AND song_title = \"i want to be free\"", "question": "What is the date recorded for I Want to Be Free with a length of 2:12?", "context": "CREATE TABLE table_name_63 (recorded VARCHAR, time VARCHAR, song_title VARCHAR)"}, {"answer": "SELECT MAX(track) FROM table_name_15 WHERE time = \"1:54\" AND writer_s_ = \"gene autry and oakley haldeman\"", "question": "What is the highest track with a length of 1:54 written by Gene Autry and Oakley Haldeman?", "context": "CREATE TABLE table_name_15 (track INTEGER, time VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT song_title FROM table_name_53 WHERE track < 8 AND release_date = \"3/22/57\"", "question": "What is the title of the song with a track less than 8 released on 3/22/57?", "context": "CREATE TABLE table_name_53 (song_title VARCHAR, track VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT song_title FROM table_name_14 WHERE writer_s_ = \"kal mann and bernie lowe\"", "question": "What song title was written by Kal Mann and Bernie Lowe?", "context": "CREATE TABLE table_name_14 (song_title VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE away_team = \"north melbourne\"", "question": "What date did the Away team, North Melbourne, play Geelong?", "context": "CREATE TABLE table_name_27 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_64 WHERE driver = \"jacky ickx\"", "question": "The driver Jacky Ickx had what time/retired?", "context": "CREATE TABLE table_name_64 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_58 WHERE driver = \"jo siffert\"", "question": "What is the least number of laps for the driver Jo Siffert?", "context": "CREATE TABLE table_name_58 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_64 WHERE constructor = \"ferrari\" AND grid < 4", "question": "What is the least number of laps for the constructor Ferrari and where the grid number was less than 4?", "context": "CREATE TABLE table_name_64 (laps INTEGER, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_87 WHERE laps < 68 AND time_retired = \"injection\"", "question": "What is the total amount of grid when the laps amount was smaller than 68 and the time/retired was injection?", "context": "CREATE TABLE table_name_87 (grid INTEGER, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT baby_gender FROM table_name_66 WHERE congresswoman = \"jaime herrera beutler\"", "question": "What is the gender of Congresswoman Jaime Herrera Beutler's baby?", "context": "CREATE TABLE table_name_66 (baby_gender VARCHAR, congresswoman VARCHAR)"}, {"answer": "SELECT date_of_delivery FROM table_name_55 WHERE baby_gender = \"boy\" AND congresswoman = \"kirsten gillibrand\"", "question": "What was the delivery date of Congresswoman Kirsten Gillibrand's baby boy?", "context": "CREATE TABLE table_name_55 (date_of_delivery VARCHAR, baby_gender VARCHAR, congresswoman VARCHAR)"}, {"answer": "SELECT player FROM table_name_58 WHERE club_province = \"bulls\" AND date_of_birth__age_ = \"6 may 1978\"", "question": "Which player on the Bulls has a 6 May 1978 birthday?", "context": "CREATE TABLE table_name_58 (player VARCHAR, club_province VARCHAR, date_of_birth__age_ VARCHAR)"}, {"answer": "SELECT player FROM table_name_61 WHERE caps > 16 AND date_of_birth__age_ = \"1 february 1982\"", "question": "Which player has a 1 February 1982 birthday and more than 16 caps?", "context": "CREATE TABLE table_name_61 (player VARCHAR, caps VARCHAR, date_of_birth__age_ VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_88 WHERE 2011 = \"1r\"", "question": "Which tournament has a 2011 of 1r?", "context": "CREATE TABLE table_name_88 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_51 WHERE tournament = \"french open\"", "question": "Which 2009 tournament was french open?", "context": "CREATE TABLE table_name_51 (tournament VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_86 WHERE away_team = \"collingwood\"", "question": "When the away team was collingwood, what was the away team score?", "context": "CREATE TABLE table_name_86 (away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_72 WHERE away_team = \"richmond\"", "question": "Who was Richmond's home team opponent?", "context": "CREATE TABLE table_name_72 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_83 WHERE away_team = \"essendon\"", "question": "Where did Essendon play as the away team?", "context": "CREATE TABLE table_name_83 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT first_appearance FROM table_name_21 WHERE character = \"aiden burn csi detective\"", "question": "Where did the character of Aiden Burn csi detective first appear?", "context": "CREATE TABLE table_name_21 (first_appearance VARCHAR, character VARCHAR)"}, {"answer": "SELECT ipsos_5_25_09 FROM table_name_26 WHERE tns_sofres_5_28_09 = \"20%\"", "question": "Which Ipsos 5/25/09 has a TNS-Sofres 5/28/09 of 20%?", "context": "CREATE TABLE table_name_26 (ipsos_5_25_09 VARCHAR, tns_sofres_5_28_09 VARCHAR)"}, {"answer": "SELECT tns_sofres_5_26_09 FROM table_name_82 WHERE ipsos_5_25_09 = \"1%\"", "question": "Which TNS-Sofres 5/26/09 has an Ipsos 5/25/09 of 1%?", "context": "CREATE TABLE table_name_82 (tns_sofres_5_26_09 VARCHAR, ipsos_5_25_09 VARCHAR)"}, {"answer": "SELECT opinionway_5_18_09 FROM table_name_52 WHERE ipsos_5_16_09 = \"11%\"", "question": "Which OpinionWay 5/18/09 has an Ipsos 5/16/09 of 11%?", "context": "CREATE TABLE table_name_52 (opinionway_5_18_09 VARCHAR, ipsos_5_16_09 VARCHAR)"}, {"answer": "SELECT ipsos_5_16_09 FROM table_name_72 WHERE tns_sofres_5_28_09 = \"2.5%\"", "question": "Which Ipsos 5/16/09 has a TNS-Sofres 5/28/09 of 2.5%?", "context": "CREATE TABLE table_name_72 (ipsos_5_16_09 VARCHAR, tns_sofres_5_28_09 VARCHAR)"}, {"answer": "SELECT csa_5_20_09 FROM table_name_89 WHERE ifop__la_croix_5_15_09 = \"26%\"", "question": "Which Ipsos 5/16/09 has an Ifop- La Croix 5/15/09 of 26%?", "context": "CREATE TABLE table_name_89 (csa_5_20_09 VARCHAR, ifop__la_croix_5_15_09 VARCHAR)"}, {"answer": "SELECT viavoice_5_15_09 FROM table_name_96 WHERE csa_5_14_09 = \"5%\" AND tns_sofres_5_28_09 = \"4.5%\"", "question": "Which Viavoice 5/15/09 has a CSA 5/14/09 of 5%, and a TNS-Sofres 5/28/09 of 4.5%?", "context": "CREATE TABLE table_name_96 (viavoice_5_15_09 VARCHAR, csa_5_14_09 VARCHAR, tns_sofres_5_28_09 VARCHAR)"}, {"answer": "SELECT driver FROM table_name_75 WHERE laps = 44", "question": "What driver has 44 laps?", "context": "CREATE TABLE table_name_75 (driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_87 WHERE grid > 2 AND time_retired = \"accident\" AND constructor = \"ferrari\"", "question": "What is the average laps for a grid larger than 2, for a ferrari that got in an accident?", "context": "CREATE TABLE table_name_87 (laps INTEGER, constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT AVG(goal_difference) FROM table_name_2 WHERE draw = 7 AND played > 18", "question": "Name the average goal difference for draw of 7 and played more than 18", "context": "CREATE TABLE table_name_2 (goal_difference INTEGER, draw VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(goal_difference) FROM table_name_4 WHERE goals_against = 30 AND played < 18", "question": "Tell me the totla number of goal difference for goals against of 30 and played less than 18", "context": "CREATE TABLE table_name_4 (goal_difference VARCHAR, goals_against VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_47 WHERE played > 18", "question": "Name the total number of draw for played more than 18", "context": "CREATE TABLE table_name_47 (draw VARCHAR, played INTEGER)"}, {"answer": "SELECT pba_team FROM table_name_10 WHERE college = \"ateneo\" AND pick = 17", "question": "What PBA team is the player from Ateneo college and a pick of 17?", "context": "CREATE TABLE table_name_10 (pba_team VARCHAR, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_15 WHERE player = \"mark joseph kong\"", "question": "What is Mark Joseph Kong's pick?", "context": "CREATE TABLE table_name_15 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT pba_team FROM table_name_65 WHERE pick < 15 AND college = \"ateneo\"", "question": "What PBA team is the player from Ateneo college with a pick number smaller than 15 from?", "context": "CREATE TABLE table_name_65 (pba_team VARCHAR, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT pick FROM table_name_29 WHERE player = \"larry fonacier\"", "question": "What pick number is Larry Fonacier?", "context": "CREATE TABLE table_name_29 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(rating) FROM table_name_92 WHERE rank__timeslot_ < 3 AND rank__night_ < 8", "question": "what is the rating when the rank (timeslot) is less than 3 and the rank (night) is less than 8?", "context": "CREATE TABLE table_name_92 (rating INTEGER, rank__timeslot_ VARCHAR, rank__night_ VARCHAR)"}, {"answer": "SELECT AVG(rank__night_) FROM table_name_29 WHERE rating > 4.3 AND viewers__millions_ > 10.72", "question": "what is the rank (night) when the rating is more than 4.3 and the viewers (millions) is more than 10.72?", "context": "CREATE TABLE table_name_29 (rank__night_ INTEGER, rating VARCHAR, viewers__millions_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE venue = \"windy hill\"", "question": "When was Windy Hill used as a venue?", "context": "CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_36 WHERE venue = \"vfl park\"", "question": "Which home team plays at VFL Park?", "context": "CREATE TABLE table_name_36 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_2 WHERE away_team = \"footscray\"", "question": "Which team plays against Footscray as the home team?", "context": "CREATE TABLE table_name_2 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_99 WHERE date = \"may 28\"", "question": "What is the total audience on may 28?", "context": "CREATE TABLE table_name_99 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_93 WHERE score = \"0 \u2013 4\"", "question": "What was the the total top attendance with a score of 0 \u2013 4?", "context": "CREATE TABLE table_name_93 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT SUM(allsvenskan_titles) FROM table_name_78 WHERE stars_symbolizes = \"number of swedish championship titles\" AND club = \"aik\" AND introduced > 2000", "question": "How many allsvenskan titles did club aik have after its introduction after 2000, with stars symbolizing the number of swedish championship titles ?", "context": "CREATE TABLE table_name_78 (allsvenskan_titles INTEGER, introduced VARCHAR, stars_symbolizes VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(swedish_championship_titles) FROM table_name_62 WHERE introduced < 2006", "question": "What is the highest amount of swedish championship titles for the team that was introduced before 2006?", "context": "CREATE TABLE table_name_62 (swedish_championship_titles INTEGER, introduced INTEGER)"}, {"answer": "SELECT record FROM table_name_75 WHERE loss = \"r. springer\"", "question": "What is the record loss of R. Springer?", "context": "CREATE TABLE table_name_75 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT streak FROM table_name_77 WHERE date = \"april 12\"", "question": "What was the streak on April 12?", "context": "CREATE TABLE table_name_77 (streak VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_19 WHERE loss = \"a. benes\" AND opponent = \"rockies\"", "question": "What was the date of A. Benes loss to the Rockies?", "context": "CREATE TABLE table_name_19 (date VARCHAR, loss VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT streak FROM table_name_45 WHERE attendance = \"33,013\"", "question": "Which streak had an attendance of 33,013?", "context": "CREATE TABLE table_name_45 (streak VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT wicket_partnership FROM table_name_91 WHERE season = \"1928\"", "question": "What was the partnership in the season of 1928", "context": "CREATE TABLE table_name_91 (wicket_partnership VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(earnings___) AS $__ FROM table_name_33 WHERE player = \"jim colbert\" AND wins < 4", "question": "What are the earnings for jim colbert with under 4 wins?", "context": "CREATE TABLE table_name_33 (earnings___ VARCHAR, player VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(events) FROM table_name_34 WHERE player = \"bob murphy\"", "question": "How many events for bob murphy?", "context": "CREATE TABLE table_name_34 (events INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_62 WHERE player = \"bob murphy\" AND wins < 4", "question": "What is the rank for bob murphy with under 4 wins?", "context": "CREATE TABLE table_name_62 (rank VARCHAR, player VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(apps) FROM table_name_30 WHERE club = \"flamengo\" AND season = \"2009\" AND goals > 0", "question": "When the club is flamengo in the 2009 season, and they scored more than 0 goals, what's the sum of the Apps?", "context": "CREATE TABLE table_name_30 (apps INTEGER, goals VARCHAR, club VARCHAR, season VARCHAR)"}, {"answer": "SELECT club FROM table_name_43 WHERE goals = 0 AND apps > 0 AND season = \"2010\"", "question": "In the 2010 season what club has 0 goals and more than 0 Apps?", "context": "CREATE TABLE table_name_43 (club VARCHAR, season VARCHAR, goals VARCHAR, apps VARCHAR)"}, {"answer": "SELECT round FROM table_name_36 WHERE event = \"cage rage 17\"", "question": "What Round is the Event cage rage 17?", "context": "CREATE TABLE table_name_36 (round VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_70 WHERE time = \"1:16\"", "question": "What Event is at the Time 1:16?", "context": "CREATE TABLE table_name_70 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT title FROM table_name_93 WHERE track > 11", "question": "What is the title of the track after 11?", "context": "CREATE TABLE table_name_93 (title VARCHAR, track INTEGER)"}, {"answer": "SELECT original_album FROM table_name_92 WHERE performer = \"brad mehldau\"", "question": "On the title feature brad mehldau as the performer, what is the original album?", "context": "CREATE TABLE table_name_92 (original_album VARCHAR, performer VARCHAR)"}, {"answer": "SELECT AVG(track) FROM table_name_59 WHERE original_album = \"turbulent indigo\"", "question": "Which track has the original album turbulent indigo?", "context": "CREATE TABLE table_name_59 (track INTEGER, original_album VARCHAR)"}, {"answer": "SELECT player FROM table_name_8 WHERE position = \"center\"", "question": "What Utah Jazz player played Center?", "context": "CREATE TABLE table_name_8 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_41 WHERE years_for_jazz = \"1987-88\"", "question": "What is the nationality of all Utah Jazz Players, that played 1987-88?", "context": "CREATE TABLE table_name_41 (nationality VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_53 WHERE years_for_jazz = \"2011-present\"", "question": "What is the nationality of all Utah Jazz Players, that played 2011-present?", "context": "CREATE TABLE table_name_53 (nationality VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT player FROM table_name_74 WHERE position = \"forward\" AND school_club_team = \"southern methodist\"", "question": "What Utah Jazz Forward played for Southern Methodist?", "context": "CREATE TABLE table_name_74 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_name_52 WHERE school_club_team = \"southern methodist\"", "question": "What years did the Utah Jazz Player from Southern Methodist, Play?", "context": "CREATE TABLE table_name_52 (years_for_jazz VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_40 WHERE venue = \"mcg\"", "question": "Who was the home team at MCG?", "context": "CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_16 WHERE home_team = \"carlton\"", "question": "Who was Carlton's away team opponents?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_67 WHERE home_team = \"south melbourne\"", "question": "What was home team South Melbourne's opponents score?", "context": "CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_72 WHERE attendance = \"4,516\"", "question": "When the Attendance was 4,516, what was the Record?", "context": "CREATE TABLE table_name_72 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_13 WHERE score = \"4-10\"", "question": "When the Score was 4-10, what was the Attendance?", "context": "CREATE TABLE table_name_13 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_40 WHERE record = \"9-24\"", "question": "With a Record of 9-24, what was the Score?", "context": "CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE score = \"6-2\"", "question": "When the Score was 6-2, which Opponent was played?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE attendance = \"16,212\"", "question": "On what Date was the Attendance 16,212?", "context": "CREATE TABLE table_name_82 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_71 WHERE opponent = \"new york yankees\" AND date = \"may 12\"", "question": "What was the Attendance on May 12, when the New York Yankees were the Opponent?", "context": "CREATE TABLE table_name_71 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE venue = \"junction oval\"", "question": "Which Date has a Venue of junction oval?", "context": "CREATE TABLE table_name_39 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_79 WHERE home_team = \"melbourne\"", "question": "Which total number of Crowd has a Home team of melbourne?", "context": "CREATE TABLE table_name_79 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(1 AS st_prize__) AS $__ FROM table_name_65 WHERE location = \"florida\" AND score = \"200 (-16)\"", "question": "What is the lowest 1st prize for florida tournaments and a Score of 200 (-16)?", "context": "CREATE TABLE table_name_65 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_24 WHERE time_retired = \"+27.347\"", "question": "Which grid has a time/retired of +27.347?", "context": "CREATE TABLE table_name_24 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT singles_champions FROM table_name_9 WHERE country = \"italy\" AND city = \"trieste\"", "question": "Who was the Singles Champions in Trieste, Italy?", "context": "CREATE TABLE table_name_9 (singles_champions VARCHAR, country VARCHAR, city VARCHAR)"}, {"answer": "SELECT surface FROM table_name_30 WHERE city = \"caracas\" AND tournament = \"venezuela f5 futures\"", "question": "On what Surface will the Venezuela F5 Futures in Caracas be played?", "context": "CREATE TABLE table_name_30 (surface VARCHAR, city VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_12 WHERE tournament = \"new zealand f1 futures\"", "question": "What is the type of Surface for the New Zealand F1 Futures Tournament?", "context": "CREATE TABLE table_name_12 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT country FROM table_name_9 WHERE singles_champions = \"dennis bl\u00f6mke\" AND tournament = \"germany f13 futures\"", "question": "In what Country will Dennis Bl\u00f6mke play the Germany F13 Futures Tournament?", "context": "CREATE TABLE table_name_9 (country VARCHAR, singles_champions VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_77 WHERE driver = \"jackie stewart\"", "question": "What are the average laps for jackie stewart?", "context": "CREATE TABLE table_name_77 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT result FROM table_name_19 WHERE venue = \"fort lauderdale, florida\"", "question": "What is the result in fort lauderdale, florida?", "context": "CREATE TABLE table_name_19 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_80 WHERE goal < 2", "question": "What venue had less than 2 goals?", "context": "CREATE TABLE table_name_80 (venue VARCHAR, goal INTEGER)"}, {"answer": "SELECT AVG(crowd) FROM table_name_8 WHERE away_team = \"fitzroy\"", "question": "What was the attendance when Fitzroy played as the away team?", "context": "CREATE TABLE table_name_8 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT trainer FROM table_name_8 WHERE owner = \"robert courtney\"", "question": "Who was the trainer with Robert Courtney was owner?", "context": "CREATE TABLE table_name_8 (trainer VARCHAR, owner VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_36 WHERE trainer = \"jeff mullins\"", "question": "What year was Jeff Mullins?", "context": "CREATE TABLE table_name_36 (year INTEGER, trainer VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_48 WHERE driver = \"richard robarts\" AND laps < 36", "question": "In what grid did Richard Robarts make 36 laps?", "context": "CREATE TABLE table_name_48 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_20 WHERE grid = 18", "question": "How many laps were completed in grid 18?", "context": "CREATE TABLE table_name_20 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT venue FROM table_name_73 WHERE result = \"12th\"", "question": "What was the venue where the result was 12th?", "context": "CREATE TABLE table_name_73 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT species FROM table_name_22 WHERE genes > 2 OFFSET 030", "question": "What species has more than 2,030 genes?", "context": "CREATE TABLE table_name_22 (species VARCHAR, genes INTEGER)"}, {"answer": "SELECT genes FROM table_name_47 WHERE species = \"rubrobacter xylanophilus\"", "question": "How many genes in the species Rubrobacter Xylanophilus?", "context": "CREATE TABLE table_name_47 (genes VARCHAR, species VARCHAR)"}, {"answer": "SELECT MIN(genes) FROM table_name_66 WHERE species = \"rubrobacter xylanophilus\"", "question": "What is the lowest number of genes in Rubrobacter Xylanophilus?", "context": "CREATE TABLE table_name_66 (genes INTEGER, species VARCHAR)"}, {"answer": "SELECT AVG(base_pairs) FROM table_name_53 WHERE genes = 784", "question": "What is the average number of base pairs with 784 genes?", "context": "CREATE TABLE table_name_53 (base_pairs INTEGER, genes VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_25 WHERE standing_broad_jump__cm_ = \"207-215\"", "question": "How many points are obtained when a standing broad jump is 207-215 cm?", "context": "CREATE TABLE table_name_25 (points VARCHAR, standing_broad_jump__cm_ VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_92 WHERE grade = \"a\"", "question": "How many points are there, when the grade is A?", "context": "CREATE TABLE table_name_92 (points INTEGER, grade VARCHAR)"}, {"answer": "SELECT grade FROM table_name_43 WHERE chin_up__reps_ = \"3\"", "question": "If a person does 3 chin-up reps, what grade do they obtain?", "context": "CREATE TABLE table_name_43 (grade VARCHAR, chin_up__reps_ VARCHAR)"}, {"answer": "SELECT shuttle_run__sec_ FROM table_name_54 WHERE points = 2", "question": "How many seconds is a shuttle run that give 2 points?", "context": "CREATE TABLE table_name_54 (shuttle_run__sec_ VARCHAR, points VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_29 WHERE manner_of_departure = \"resigned\" AND team = \"real zaragoza\" AND replaced_by = \"manolo villanova\"", "question": "Tell me the outgoing manager for resigned and replaced by manolo villanova for real zaragoza", "context": "CREATE TABLE table_name_29 (outgoing_manager VARCHAR, replaced_by VARCHAR, manner_of_departure VARCHAR, team VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_64 WHERE team = \"racing santander\"", "question": "Name the replaced by for racing santander", "context": "CREATE TABLE table_name_64 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_64 WHERE laps = 14", "question": "What Grid had 14 laps completed?", "context": "CREATE TABLE table_name_64 (grid INTEGER, laps VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_91 WHERE laps = 25 AND manufacturer = \"honda\" AND time_retired = \"+54.103\"", "question": "What is the lowest Grid with 25 laps manufactured by Honda with a time of +54.103?", "context": "CREATE TABLE table_name_91 (grid INTEGER, time_retired VARCHAR, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_75 WHERE time_retired = \"+1:02.315\"", "question": "How many laps were timed at +1:02.315?", "context": "CREATE TABLE table_name_75 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT pts_rank FROM table_name_73 WHERE club = \"chicago fire\"", "question": "What is the points ranking of Chicago Fire?", "context": "CREATE TABLE table_name_73 (pts_rank VARCHAR, club VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_58 WHERE time = \"1:16\"", "question": "Who is the opponent with a time of 1:16?", "context": "CREATE TABLE table_name_58 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT round FROM table_name_64 WHERE method = \"submission\"", "question": "What round has a method of submission?", "context": "CREATE TABLE table_name_64 (round VARCHAR, method VARCHAR)"}, {"answer": "SELECT competition FROM table_name_54 WHERE result = \"win\" AND date = \"august 15, 2012\"", "question": "Which competition did he win on August 15, 2012?", "context": "CREATE TABLE table_name_54 (competition VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE date = \"august 15, 2012\"", "question": "Where was the competition on August 15, 2012?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE score = \"3-0\"", "question": "When was the competition that had a score of 3-0?", "context": "CREATE TABLE table_name_34 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_97 WHERE competition = \"uefa euro 2008 qualifying\"", "question": "What was the result of the UEFA Euro 2008 Qualifying competition?", "context": "CREATE TABLE table_name_97 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_88 WHERE player = \"steven anthony\"", "question": "What nationality is Steven Anthony?", "context": "CREATE TABLE table_name_88 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_51 WHERE nationality = \"slovakia\"", "question": "What is the highest pick number from Slovakia?", "context": "CREATE TABLE table_name_51 (pick__number INTEGER, nationality VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_70 WHERE league_from = \"russian major league\"", "question": "What is the lowest pick number for the Russian Major League?", "context": "CREATE TABLE table_name_70 (pick__number INTEGER, league_from VARCHAR)"}, {"answer": "SELECT position FROM table_name_21 WHERE league_from = \"russian major league\"", "question": "What team is from the Russian Major League?", "context": "CREATE TABLE table_name_21 (position VARCHAR, league_from VARCHAR)"}, {"answer": "SELECT league_from FROM table_name_61 WHERE pick__number > 204 AND nationality = \"canada\" AND position = \"lw\"", "question": "Which league has a pick number larger than 204 from Canada and LW as the position?", "context": "CREATE TABLE table_name_61 (league_from VARCHAR, position VARCHAR, pick__number VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT player FROM table_name_49 WHERE club_province = \"aurillac\"", "question": "Who is the player from Aurillac?", "context": "CREATE TABLE table_name_49 (player VARCHAR, club_province VARCHAR)"}, {"answer": "SELECT points FROM table_name_69 WHERE rank > 1 AND places = 33", "question": "what is the points when the rank is more than 1 and the places is 33?", "context": "CREATE TABLE table_name_69 (points VARCHAR, rank VARCHAR, places VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_40 WHERE nation = \"east germany\" AND points = 128.98 AND places < 70", "question": "what is the highest rank for east germany with points of 128.98 and places less than 70?", "context": "CREATE TABLE table_name_40 (rank INTEGER, places VARCHAR, nation VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_13 WHERE rank = 12", "question": "what is the points for rank 12?", "context": "CREATE TABLE table_name_13 (points INTEGER, rank VARCHAR)"}, {"answer": "SELECT AVG(pl_gp) FROM table_name_32 WHERE reg_gp = 97 AND pick__number < 70", "question": "What is the average PI GP when the pick is smaller tha 70 and the reg GP is 97?", "context": "CREATE TABLE table_name_32 (pl_gp INTEGER, reg_gp VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT gloss FROM table_name_69 WHERE pronunciation = \"[\u03c7d\u0259m]\"", "question": "Name the gloss for [\u03c7d\u0259m]", "context": "CREATE TABLE table_name_69 (gloss VARCHAR, pronunciation VARCHAR)"}, {"answer": "SELECT realization FROM table_name_71 WHERE gloss = \"'to be, to do'\"", "question": "Name the realization for 'to be, to do'", "context": "CREATE TABLE table_name_71 (realization VARCHAR, gloss VARCHAR)"}, {"answer": "SELECT MIN(places) FROM table_name_70 WHERE name = \"sherri baier / robin cowan\" AND rank < 1", "question": "What is the lowest number of places for Sherri Baier / Robin Cowan when ranked lower than 1?", "context": "CREATE TABLE table_name_70 (places INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT platform FROM table_name_97 WHERE system = \"nintendo ds\" AND name = \"nds4droid\"", "question": "What platform is nds4droid on for the nintendo ds?", "context": "CREATE TABLE table_name_97 (platform VARCHAR, system VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_67 WHERE license = \"proprietary (available on inquiry)\"", "question": "Who has a license of proprietary (available on inquiry)?", "context": "CREATE TABLE table_name_67 (name VARCHAR, license VARCHAR)"}, {"answer": "SELECT platform FROM table_name_93 WHERE system = \"nintendo ds\" AND license = \"gpl v2\" AND name = \"nds4droid\"", "question": "What platform is nds4droid on for the nintendo ds with a license of gpl v2?", "context": "CREATE TABLE table_name_93 (platform VARCHAR, name VARCHAR, system VARCHAR, license VARCHAR)"}, {"answer": "SELECT system FROM table_name_65 WHERE current_version = \"1.4e\"", "question": "What system has a current version of 1.4e?", "context": "CREATE TABLE table_name_65 (system VARCHAR, current_version VARCHAR)"}, {"answer": "SELECT name FROM table_name_92 WHERE license = \"gpl v2\" AND current_version = \"0.9.9\"", "question": "Who has a licence of gpl v2 and a current version of 0.9.9?", "context": "CREATE TABLE table_name_92 (name VARCHAR, license VARCHAR, current_version VARCHAR)"}, {"answer": "SELECT performance FROM table_name_11 WHERE season = 1999 AND place = \"bydgoszcz, poland\"", "question": "What was the performance length of the 1999 season in bydgoszcz, poland?", "context": "CREATE TABLE table_name_11 (performance VARCHAR, season VARCHAR, place VARCHAR)"}, {"answer": "SELECT performance FROM table_name_49 WHERE season > 2003 AND discipline = \"3000 m\"", "question": "What were the performance lengths in the 3000 m events in and after 2003?", "context": "CREATE TABLE table_name_49 (performance VARCHAR, season VARCHAR, discipline VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_19 WHERE place = \"santiago de chile, chile\"", "question": "How many seasons took place in santiago de chile, chile?", "context": "CREATE TABLE table_name_19 (season VARCHAR, place VARCHAR)"}, {"answer": "SELECT season FROM table_name_90 WHERE date = \"may 11, 2002\"", "question": "During which Season did the may 11, 2002 event take place?", "context": "CREATE TABLE table_name_90 (season VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_16 WHERE college = \"california\"", "question": "What is the average round for players from california?", "context": "CREATE TABLE table_name_16 (round INTEGER, college VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_12 WHERE nhl_team = \"vancouver canucks\" AND college_junior_club_team__league_ = \"swift current broncos (whl)\" AND round = 8", "question": "What's the Nationality of Round 8 Vancouver Canucks NHL Team of Swift Current Broncos (WHL)?", "context": "CREATE TABLE table_name_12 (nationality VARCHAR, round VARCHAR, nhl_team VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_62 WHERE away_team = \"essendon\"", "question": "When the Away team of essendon was playing, what was the Home team's score?", "context": "CREATE TABLE table_name_62 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_71 WHERE venue = \"western oval\"", "question": "For the Venue of western oval, what's the Away team playing?", "context": "CREATE TABLE table_name_71 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_82 WHERE week = \"7\"", "question": "Who was the opponent on week 7?", "context": "CREATE TABLE table_name_82 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_4 WHERE week = \"5\"", "question": "Who was the opponent on week 5?", "context": "CREATE TABLE table_name_4 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_26 WHERE score = \"107\u201397\"", "question": "Who was the leading scorer of the game that had a score of 107\u201397?", "context": "CREATE TABLE table_name_26 (leading_scorer VARCHAR, score VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_39 WHERE home = \"suns\"", "question": "Who was the visiting team when the Suns were the home team?", "context": "CREATE TABLE table_name_39 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT AVG(ties) FROM table_name_63 WHERE losses < 3 AND wins < 5 AND win_pct = \"0.800\" AND team = \"detroit lions\"", "question": "What is the average number of ties for the Detroit Lions team when they have fewer than 5 wins, fewer than 3 losses, and a win percentage of 0.800?", "context": "CREATE TABLE table_name_63 (ties INTEGER, team VARCHAR, win_pct VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_91 WHERE score = \"4\u20136, 6\u20133, 7\u20135\"", "question": "What is the most recent year in which the score was 4\u20136, 6\u20133, 7\u20135?", "context": "CREATE TABLE table_name_91 (year INTEGER, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_5 WHERE height = \"6-7\"", "question": "Which player has a height of 6-7?", "context": "CREATE TABLE table_name_5 (player VARCHAR, height VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_97 WHERE hometown = \"washington, dc\"", "question": "What is the NBA draft result of the player from Washington, DC?", "context": "CREATE TABLE table_name_97 (nba_draft VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_48 WHERE college = \"kansas\"", "question": "What is the NBA draft result of the player from the College of Kansas?", "context": "CREATE TABLE table_name_48 (nba_draft VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE school = \"la costa canyon high school\"", "question": "Who is the player from La Costa Canyon High School?", "context": "CREATE TABLE table_name_79 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT height FROM table_name_28 WHERE school = \"nacogdoches high school\"", "question": "How tall is the player from Nacogdoches High School?", "context": "CREATE TABLE table_name_28 (height VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_47 WHERE hometown = \"dallas, tx\"", "question": "What is the school of the player from Dallas, TX?", "context": "CREATE TABLE table_name_47 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT result FROM table_name_31 WHERE competition = \"world group, consolation round\"", "question": "What is the result for world group, consolation round?", "context": "CREATE TABLE table_name_31 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_47 WHERE tie_no = \"1\"", "question": "How many attended tie number 1?", "context": "CREATE TABLE table_name_47 (attendance INTEGER, tie_no VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_97 WHERE tie_no = \"3\"", "question": "How many attended tie number 3?", "context": "CREATE TABLE table_name_97 (attendance INTEGER, tie_no VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_68 WHERE player = \"tre madden\"", "question": "What is the hometown for tre madden?", "context": "CREATE TABLE table_name_68 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_20 WHERE position = \"defensive back\" AND college = \"alabama\"", "question": "What is the hometown for the player that is defensive back and went to alabama?", "context": "CREATE TABLE table_name_20 (hometown VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_19 WHERE position = \"defensive back\" AND school = \"ridge community high school\"", "question": "What is the college for the player that went to ridge community high school and is defensive back?", "context": "CREATE TABLE table_name_19 (college VARCHAR, position VARCHAR, school VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_77 WHERE type = \"informal\" AND location = \"justus lipsius building, brussels\" AND date = \"23 may\"", "question": "What is the sum of Year with a Type of informal, and a Location with justus lipsius building, brussels, and a Date with 23 may?", "context": "CREATE TABLE table_name_77 (year INTEGER, date VARCHAR, type VARCHAR, location VARCHAR)"}, {"answer": "SELECT type FROM table_name_59 WHERE location = \"justus lipsius building, brussels\" AND year = 2012 AND president = \"herman van rompuy (1st term)\" AND date = \"23 may\"", "question": "What is the Type with a Location with justus lipsius building, brussels, and a Year of 2012, and a President with herman van rompuy (1st term), and a Date with 23 may?", "context": "CREATE TABLE table_name_59 (type VARCHAR, date VARCHAR, president VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT president FROM table_name_22 WHERE location = \"justus lipsius building, brussels\" AND type = \"scheduled\" AND year > 2011 AND date = \"18\u201319 october\"", "question": "What is the President with a Location of justus lipsius building, brussels, and a Type with scheduled, and a Year larger than 2011, and a Date with 18\u201319 october?", "context": "CREATE TABLE table_name_22 (president VARCHAR, date VARCHAR, year VARCHAR, location VARCHAR, type VARCHAR)"}, {"answer": "SELECT location FROM table_name_63 WHERE year > 2011 AND president = \"herman van rompuy (2nd term)\" AND date = \"28\u201329 june\" AND type = \"scheduled\"", "question": "What is the Location with a Year larger than 2011, and a President with herman van rompuy (2nd term), and a Date of 28\u201329 june, and a Type with scheduled?", "context": "CREATE TABLE table_name_63 (location VARCHAR, type VARCHAR, date VARCHAR, year VARCHAR, president VARCHAR)"}, {"answer": "SELECT president FROM table_name_31 WHERE year > 2011 AND date = \"23 may\"", "question": "What is the President with a Year larger than 2011, and a Date with 23 may?", "context": "CREATE TABLE table_name_31 (president VARCHAR, year VARCHAR, date VARCHAR)"}, {"answer": "SELECT type FROM table_name_96 WHERE year > 2010 AND location = \"justus lipsius building, brussels\" AND president = \"herman van rompuy (2nd term)\" AND date = \"28\u201329 june\"", "question": "What is the Type with a Year larger than 2010, and a Location with justus lipsius building, brussels, and a President of herman van rompuy (2nd term), and a Date with 28\u201329 june?", "context": "CREATE TABLE table_name_96 (type VARCHAR, date VARCHAR, president VARCHAR, year VARCHAR, location VARCHAR)"}, {"answer": "SELECT competition FROM table_name_49 WHERE goal = 13", "question": "What competition has a goal number of 13?", "context": "CREATE TABLE table_name_49 (competition VARCHAR, goal VARCHAR)"}, {"answer": "SELECT SUM(yards) FROM table_name_60 WHERE asst = 19 AND totaltk = 60 AND sack > 0", "question": "What is the total of yards when asst. is 19, totaltk is 60 and sack is more than 0?", "context": "CREATE TABLE table_name_60 (yards INTEGER, sack VARCHAR, asst VARCHAR, totaltk VARCHAR)"}, {"answer": "SELECT SUM(sack) FROM table_name_40 WHERE player = \"mike green\" AND fumr < 0", "question": "what is the total sack for mike green when fumr is less than 0?", "context": "CREATE TABLE table_name_40 (sack INTEGER, player VARCHAR, fumr VARCHAR)"}, {"answer": "SELECT SUM(sack) FROM table_name_86 WHERE totaltk = 1 AND asst > 0", "question": "what is the total sack when totaltk is 1 and asst. is more than 0?", "context": "CREATE TABLE table_name_86 (sack INTEGER, totaltk VARCHAR, asst VARCHAR)"}, {"answer": "SELECT COUNT(tackles) FROM table_name_21 WHERE fumr = 0 AND totaltk = 54 AND yards < 0", "question": "what is the total number of tackles when fumr is 0, totaltk is 54 and yards is less than 0?", "context": "CREATE TABLE table_name_21 (tackles VARCHAR, yards VARCHAR, fumr VARCHAR, totaltk VARCHAR)"}, {"answer": "SELECT SUM(totaltk) FROM table_name_9 WHERE yards < 0", "question": "what is the sum of totaltk when yards is less than 0?", "context": "CREATE TABLE table_name_9 (totaltk INTEGER, yards INTEGER)"}, {"answer": "SELECT class FROM table_name_45 WHERE year > 1973 AND points = 41", "question": "What class is after 1973 with 41 points?", "context": "CREATE TABLE table_name_45 (class VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_90 WHERE points < 54 AND team = \"yamaha\" AND class = \"250cc\" AND year < 1977", "question": "How many wins for bikes with under 54 points, team yamaha, a 250cc bike, and before 1977?", "context": "CREATE TABLE table_name_90 (wins VARCHAR, year VARCHAR, class VARCHAR, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT distance FROM table_name_10 WHERE stage > 5 AND winner = \"giovanni lombardi\"", "question": "What distance did giovanni lombardi win after stage 5?", "context": "CREATE TABLE table_name_10 (distance VARCHAR, stage VARCHAR, winner VARCHAR)"}, {"answer": "SELECT gc_leader FROM table_name_51 WHERE course = \"\u00e1vila - segovia\"", "question": "Who is the GC leader at \u00e1vila - segovia?", "context": "CREATE TABLE table_name_51 (gc_leader VARCHAR, course VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_11 WHERE laps < 41 AND driver = \"pedro de la rosa\"", "question": "How many grids have less than 41 laps and a Driver of pedro de la rosa?", "context": "CREATE TABLE table_name_11 (grid VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_58 WHERE grid < 3 AND driver = \"mika h\u00e4kkinen\"", "question": "Which Time/Retired has a Grid smaller than 3, and a Driver of mika h\u00e4kkinen?", "context": "CREATE TABLE table_name_58 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_14 WHERE driver = \"toranosuke takagi\"", "question": "What are toranosuke takagi's average laps?", "context": "CREATE TABLE table_name_14 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_95 WHERE time_retired = \"+5.004\"", "question": "Which grid has a Time/Retired of +5.004?", "context": "CREATE TABLE table_name_95 (grid INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE visitor = \"atlanta\" AND date = \"november 9\"", "question": "What was the score of the game on November 9 when Atlanta was the visiting team?", "context": "CREATE TABLE table_name_73 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE home = \"tampa bay\"", "question": "What was the score of the home game at Tampa Bay?", "context": "CREATE TABLE table_name_56 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE visitor = \"atlanta\" AND home = \"ottawa\"", "question": "What was the date of the game where Ottawa was the home team and Atlanta is the visiting team?", "context": "CREATE TABLE table_name_32 (date VARCHAR, visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT result FROM table_name_39 WHERE team = \"giants\"", "question": "I want the result for team of giants", "context": "CREATE TABLE table_name_39 (result VARCHAR, team VARCHAR)"}, {"answer": "SELECT pitcher FROM table_name_8 WHERE date = \"september 6, 2006\"", "question": "Tell me the pitcher on september 6, 2006", "context": "CREATE TABLE table_name_8 (pitcher VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE team = \"rockies\"", "question": "I want the date for rockies", "context": "CREATE TABLE table_name_66 (date VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE pitcher = \"an\u00edbal s\u00e1nchez\"", "question": "I want the date for an\u00edbal s\u00e1nchez", "context": "CREATE TABLE table_name_58 (date VARCHAR, pitcher VARCHAR)"}, {"answer": "SELECT result FROM table_name_63 WHERE team = \"giants\"", "question": "I want the result for team of giants", "context": "CREATE TABLE table_name_63 (result VARCHAR, team VARCHAR)"}, {"answer": "SELECT site FROM table_name_51 WHERE date = \"september 29, 2013\"", "question": "I want the site for september 29, 2013", "context": "CREATE TABLE table_name_51 (site VARCHAR, date VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_71 WHERE apparent_magnitude = 10.5", "question": "When the apparent magnitude is 10.5, what is the right ascension?", "context": "CREATE TABLE table_name_71 (right_ascension___j2000__ VARCHAR, apparent_magnitude VARCHAR)"}, {"answer": "SELECT livery FROM table_name_57 WHERE date = \"1919\"", "question": "Which livery is from 1919?", "context": "CREATE TABLE table_name_57 (livery VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_89 WHERE record = \"80-81\"", "question": "Of the games with a record of 80-81, what was the highest attendance?", "context": "CREATE TABLE table_name_89 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT COUNT(peak) FROM table_name_34 WHERE hk_viewers = \"2.23 million\" AND rank > 2", "question": "How many entries have a HK viewers of 2.23 million, and a Rank below 2?", "context": "CREATE TABLE table_name_34 (peak VARCHAR, hk_viewers VARCHAR, rank VARCHAR)"}, {"answer": "SELECT premiere FROM table_name_95 WHERE finale < 41 AND peak < 40 AND average > 31 AND chinese_title = \"\u5b78\u8b66\u96c4\u5fc3\"", "question": "What premiere has a finale of less than 41, peak less than 40, average above 31, and a Chinese title of \u5b78\u8b66\u96c4\u5fc3?", "context": "CREATE TABLE table_name_95 (premiere VARCHAR, chinese_title VARCHAR, average VARCHAR, finale VARCHAR, peak VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_36 WHERE finale > 35 AND hk_viewers = \"2.12 million\" AND peak > 40", "question": "What is the high average that has a Finale larger than 35, a HK viewers of 2.12 million, and a Peak larger than 40?", "context": "CREATE TABLE table_name_36 (average INTEGER, peak VARCHAR, finale VARCHAR, hk_viewers VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_96 WHERE venue = \"junction oval\"", "question": "What is the score for the home team when the venue is Junction Oval?", "context": "CREATE TABLE table_name_96 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_73 WHERE venue = \"mcg\"", "question": "What is the lowest crowd number at the venue MCG?", "context": "CREATE TABLE table_name_73 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_89 WHERE place = \"jacksonville\"", "question": "Name the average round for jacksonville", "context": "CREATE TABLE table_name_89 (round INTEGER, place VARCHAR)"}, {"answer": "SELECT standing FROM table_name_59 WHERE total_points < 248 AND finished = \"3rd\" AND date = \"january 29\"", "question": "I want the standing for january 29 and finished of 3rd and total points less than 248", "context": "CREATE TABLE table_name_59 (standing VARCHAR, date VARCHAR, total_points VARCHAR, finished VARCHAR)"}, {"answer": "SELECT result FROM table_name_5 WHERE date = \"february 22\"", "question": "What was the result and score of the game on February 22?", "context": "CREATE TABLE table_name_5 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(rd__number) FROM table_name_20 WHERE pl_gp > 0 AND reg_gp < 62", "question": "What is the largest Rd# for a PI GP greater than 0 and a Reg GP less than 62?", "context": "CREATE TABLE table_name_20 (rd__number INTEGER, pl_gp VARCHAR, reg_gp VARCHAR)"}, {"answer": "SELECT team__league_ FROM table_name_12 WHERE reg_gp > 62", "question": "Which team has a Reg GP over 62?", "context": "CREATE TABLE table_name_12 (team__league_ VARCHAR, reg_gp INTEGER)"}, {"answer": "SELECT SUM(year) FROM table_name_89 WHERE position = \"12th\"", "question": "What is the total year with a Position of 12th?", "context": "CREATE TABLE table_name_89 (year INTEGER, position VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_16 WHERE time_retired = \"accident\" AND laps < 18", "question": "When a race had less than 18 laps and time/retired of accident, what was the smallest grid?", "context": "CREATE TABLE table_name_16 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_31 WHERE grid > 17 AND laps = 74", "question": "What is the time/retired for a grid over 17 with 74 laps?", "context": "CREATE TABLE table_name_31 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_76 WHERE driver = \"david coulthard\"", "question": "What is the grid total for david coulthard?", "context": "CREATE TABLE table_name_76 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE athlete = \"chris maddocks\" AND event = \"35000 m\"", "question": "What day did Chris Maddocks compete in the 35000 m?", "context": "CREATE TABLE table_name_83 (date VARCHAR, athlete VARCHAR, event VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_66 WHERE data = \"214.061km\"", "question": "Who has a walking data of 214.061km?", "context": "CREATE TABLE table_name_66 (athlete VARCHAR, data VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_11 WHERE data = \"3:10:48+\"", "question": "Who has a walking data of 3:10:48+?", "context": "CREATE TABLE table_name_11 (athlete VARCHAR, data VARCHAR)"}, {"answer": "SELECT title FROM table_name_57 WHERE original_air_date = \"october2,2002\"", "question": "what is the title of the episode with the original air date of october2,2002?", "context": "CREATE TABLE table_name_57 (title VARCHAR, original_air_date VARCHAR)"}, {"answer": "SELECT title FROM table_name_1 WHERE production_code = \"ad1a22\"", "question": "what is the title of the episode with the production code of ad1a22?", "context": "CREATE TABLE table_name_1 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT directed_by FROM table_name_38 WHERE production_code = \"ad1a26\"", "question": "who was the director of the episode with production code ad1a26?", "context": "CREATE TABLE table_name_38 (directed_by VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_71 WHERE circuit = \"oulton park\"", "question": "Who is the constructor whose circuit was Oulton Park?", "context": "CREATE TABLE table_name_71 (constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_37 WHERE circuit = \"snetterton\"", "question": "What is the name of the race for which the circuit was Snetterton?", "context": "CREATE TABLE table_name_37 (race_name VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT years_for_rockets FROM table_name_41 WHERE height_in_ft = \"6-6\" AND position = \"guard\" AND school_club_team_country = \"oklahoma\"", "question": "During what years did the Guard from Oklahoma with a height of 6-6 play for the Rockets?", "context": "CREATE TABLE table_name_41 (years_for_rockets VARCHAR, school_club_team_country VARCHAR, height_in_ft VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_22 WHERE position = \"6th\" AND competition = \"super league xvii\" AND played > 27", "question": "how many times what the position 6th, the competition was super league xvii and played was larger than 27?", "context": "CREATE TABLE table_name_22 (drawn VARCHAR, played VARCHAR, position VARCHAR, competition VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_6 WHERE caps < 69 AND scotland_career = \"1986\u20131998\"", "question": "What is the average cap number in scotland in 1986\u20131998 leass than 69?", "context": "CREATE TABLE table_name_6 (average VARCHAR, caps VARCHAR, scotland_career VARCHAR)"}, {"answer": "SELECT caps FROM table_name_20 WHERE scotland_career = \"1920\u20131923\"", "question": "Which caps was in scotland in 1920\u20131923?", "context": "CREATE TABLE table_name_20 (caps VARCHAR, scotland_career VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_93 WHERE caps < 38 AND average < 1.083", "question": "What is the goal low with caps less than 38 and an average less than 1.083?", "context": "CREATE TABLE table_name_93 (goals INTEGER, caps VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_45 WHERE caps = 38 AND average < 0.579", "question": "What is the goal top with caps of 38 and an average less than 0.579?", "context": "CREATE TABLE table_name_45 (goals INTEGER, caps VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_24 WHERE name = \"kenny miller\" AND average < 0.261", "question": "What is the low goal for kenny miller with an average smaller than 0.261?", "context": "CREATE TABLE table_name_24 (goals INTEGER, name VARCHAR, average VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_4 WHERE venue = \"victoria park\"", "question": "What home team plays at victoria park?", "context": "CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_7 WHERE home_team = \"north melbourne\"", "question": "When north melbourne played as the home team, what was the away team score?", "context": "CREATE TABLE table_name_7 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_42 WHERE venue = \"victoria park\"", "question": "What is the away team score at victoria park?", "context": "CREATE TABLE table_name_42 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(goals_against) FROM table_name_57 WHERE wins = 18 AND goal_difference = 43 AND draws < 6", "question": "What is the high goal against associated with 18 wins, a Goal Difference of 43, and under 6 draws?", "context": "CREATE TABLE table_name_57 (goals_against INTEGER, draws VARCHAR, wins VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_86 WHERE draws < 4 AND goals_for < 15", "question": "What is the average win total associated with under 4 draws, and under 15 goals?", "context": "CREATE TABLE table_name_86 (wins INTEGER, draws VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_17 WHERE venue = \"moorabbin oval\"", "question": "Who was the home team that played at Moorabbin Oval?", "context": "CREATE TABLE table_name_17 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_26 WHERE away_team = \"carlton\"", "question": "How large was the crowd when Carlton was the away team?", "context": "CREATE TABLE table_name_26 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_11 WHERE player_name = \"mark barron\"", "question": "I want the sum of year for mark barron", "context": "CREATE TABLE table_name_11 (year INTEGER, player_name VARCHAR)"}, {"answer": "SELECT year FROM table_name_13 WHERE position = \"defensive tackle\" AND college = \"lsu\"", "question": "Tell me the year for defensive tackle and college of lsu", "context": "CREATE TABLE table_name_13 (year VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_6 WHERE date = \"april 28\"", "question": "On April 28, what was the average number of people attending?", "context": "CREATE TABLE table_name_6 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_50 WHERE position = \"centre\"", "question": "Which player is a centre?", "context": "CREATE TABLE table_name_50 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_49 WHERE away_team = \"collingwood\"", "question": "What was the venue when Collingwood was the away team?", "context": "CREATE TABLE table_name_49 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_47 WHERE conv = \"0\" AND player = \"brian hightower\"", "question": "Where did Brian Hightower play when he has the Conv of 0?", "context": "CREATE TABLE table_name_47 (venue VARCHAR, conv VARCHAR, player VARCHAR)"}, {"answer": "SELECT conv FROM table_name_37 WHERE player = \"dick hyland\"", "question": "What was Dick Hyland's conv?", "context": "CREATE TABLE table_name_37 (conv VARCHAR, player VARCHAR)"}, {"answer": "SELECT tries FROM table_name_16 WHERE date = \"06/07/1996\"", "question": "How many tries took place on 06/07/1996?", "context": "CREATE TABLE table_name_16 (tries VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE date = \"07/06/1997\"", "question": "Which player played on 07/06/1997?", "context": "CREATE TABLE table_name_41 (player VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_74 WHERE away_team = \"melbourne\"", "question": "When the Away team is melbourne, what venue do they play at?", "context": "CREATE TABLE table_name_74 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(interview) FROM table_name_86 WHERE state = \"texas\" AND average > 9.531", "question": "What is the lowest interview of Texas, with an average larger than 9.531?", "context": "CREATE TABLE table_name_86 (interview INTEGER, state VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(interview) FROM table_name_23 WHERE state = \"iowa\" AND evening_gown < 9.625", "question": "What is the total interviews of Iowa, and with an evening gown smaller than 9.625?", "context": "CREATE TABLE table_name_23 (interview VARCHAR, state VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT SUM(average) FROM table_name_26 WHERE state = \"hawaii\" AND interview > 9.636", "question": "What is the sum of the average of Hawaii, with an interviewer larger than 9.636?", "context": "CREATE TABLE table_name_26 (average INTEGER, state VARCHAR, interview VARCHAR)"}, {"answer": "SELECT MAX(evening_gown) FROM table_name_8 WHERE average = 9.531 AND swimsuit < 9.449", "question": "What is the highest evening gown with an average of 9.531 and swimsuit smaller than 9.449?", "context": "CREATE TABLE table_name_8 (evening_gown INTEGER, average VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT SUM(swimsuit) FROM table_name_82 WHERE evening_gown = 9.773 AND average > 9.674", "question": "What is the sum of swimsuit with an evening gown of 9.773 and average larger than 9.674?", "context": "CREATE TABLE table_name_82 (swimsuit INTEGER, evening_gown VARCHAR, average VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_34 WHERE swimsuit < 9.545 AND state = \"iowa\" AND evening_gown > 9.625", "question": "What is the average of the swimsuit smaller than 9.545 , of Iowa, with an evening gown larger than 9.625?", "context": "CREATE TABLE table_name_34 (average INTEGER, evening_gown VARCHAR, swimsuit VARCHAR, state VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_82 WHERE date = \"1 april 2008\"", "question": "Name the leading scorer for 1 april 2008", "context": "CREATE TABLE table_name_82 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_11 WHERE date = \"16 april 2008\"", "question": "Name the home for 16 april 2008", "context": "CREATE TABLE table_name_11 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE visitor = \"bucks\" AND home = \"timberwolves\"", "question": "Name the score for bucks with timberwolves", "context": "CREATE TABLE table_name_56 (score VARCHAR, visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT sail FROM table_name_96 WHERE syndicate = \"america 3 foundation\" AND yacht = \"america 3\"", "question": "Which sail is in the America 3 Foundation syndicate on the America 3 yacht?", "context": "CREATE TABLE table_name_96 (sail VARCHAR, syndicate VARCHAR, yacht VARCHAR)"}, {"answer": "SELECT syndicate FROM table_name_8 WHERE yacht = \"stars & stripes\"", "question": "Which syndicate is associated with the stars & stripes yacht?", "context": "CREATE TABLE table_name_8 (syndicate VARCHAR, yacht VARCHAR)"}, {"answer": "SELECT yacht AS Club FROM table_name_84 WHERE syndicate = \"america 3 foundation\" AND yacht = \"america 3\"", "question": "Which Yacht Club is part of the America 3 Foundation syndicate on the America 3 yacht?", "context": "CREATE TABLE table_name_84 (yacht VARCHAR, syndicate VARCHAR)"}, {"answer": "SELECT nation FROM table_name_81 WHERE syndicate = \"america 3 foundation\" AND yacht = \"jayhawk\"", "question": "Which nation has the America 3 Foundation syndicate and the jayhawk yacht?", "context": "CREATE TABLE table_name_81 (nation VARCHAR, syndicate VARCHAR, yacht VARCHAR)"}, {"answer": "SELECT nation FROM table_name_91 WHERE sail = \"usa-18\"", "question": "Which Nation has the USA-18 sail?", "context": "CREATE TABLE table_name_91 (nation VARCHAR, sail VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_46 WHERE away_team = \"collingwood\"", "question": "How big was the crowd when collingwood visited?", "context": "CREATE TABLE table_name_46 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_19 WHERE venue = \"moorabbin oval\"", "question": "What away team is based in moorabbin oval?", "context": "CREATE TABLE table_name_19 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE player = \"af giles\"", "question": "What date did af giles play?", "context": "CREATE TABLE table_name_40 (date VARCHAR, player VARCHAR)"}, {"answer": "SELECT catches FROM table_name_59 WHERE player = \"hh dippenaar\"", "question": "How many catches does hh dippenaar have?", "context": "CREATE TABLE table_name_59 (catches VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_98 WHERE date = \"12-02-2003\"", "question": "What player has a date of 12-02-2003?", "context": "CREATE TABLE table_name_98 (player VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_18 WHERE versus = \"sri lanka\"", "question": "Who had a versus of sri lanka?", "context": "CREATE TABLE table_name_18 (player VARCHAR, versus VARCHAR)"}, {"answer": "SELECT player FROM table_name_23 WHERE date = \"19-02-2003\"", "question": "Who had a date of 19-02-2003?", "context": "CREATE TABLE table_name_23 (player VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE versus = \"source: cricinfo.com\"", "question": "What date had a versus of source: cricinfo.com?", "context": "CREATE TABLE table_name_93 (date VARCHAR, versus VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_53 WHERE home_team = \"south melbourne\"", "question": "When south Melbourne was the home team, what was the away team?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_25 WHERE away_team = \"st kilda\"", "question": "What was the smallest crowd size for away team st kilda?", "context": "CREATE TABLE table_name_25 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE visitor = \"milwaukee\"", "question": "What was the score of the game against Milwaukee?", "context": "CREATE TABLE table_name_9 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT winner FROM table_name_87 WHERE third_place = \"yannick noah\"", "question": "Was the third place winner Yannick Noah?", "context": "CREATE TABLE table_name_87 (winner VARCHAR, third_place VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_63 WHERE home_team = \"essendon\"", "question": "What was the away team score when the home team essendon was playing?", "context": "CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT record_set FROM table_name_9 WHERE superlative = \"youngest nominee\"", "question": "Who set the record for youngest nominee?", "context": "CREATE TABLE table_name_9 (record_set VARCHAR, superlative VARCHAR)"}, {"answer": "SELECT record_set FROM table_name_24 WHERE year > 2011 AND superlative = \"youngest nominee\"", "question": "After the year 2011, who was the youngest nominee?", "context": "CREATE TABLE table_name_24 (record_set VARCHAR, year VARCHAR, superlative VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_76 WHERE actress = \"quvenzhan\u00e9 wallis\"", "question": "When did Quvenzhan\u00e9 Wallis first win?", "context": "CREATE TABLE table_name_76 (year INTEGER, actress VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_20 WHERE actress = \"katharine hepburn\"", "question": "When was the last year when Katharine Hepburn won?", "context": "CREATE TABLE table_name_20 (year INTEGER, actress VARCHAR)"}, {"answer": "SELECT winner FROM table_name_53 WHERE year = \"2003\"", "question": "who was the winner in 2003?", "context": "CREATE TABLE table_name_53 (winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_90 WHERE winner = \"marie-laure taya\"", "question": "where did marie-laure taya win?", "context": "CREATE TABLE table_name_90 (venue VARCHAR, winner VARCHAR)"}, {"answer": "SELECT venue FROM table_name_17 WHERE score = \"285\"", "question": "what venue saw a score of 285?", "context": "CREATE TABLE table_name_17 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_34 WHERE time_retired = \"+ 2 laps\" AND grid = 13", "question": "What is the largest laps for Time/Retired of + 2 laps, and a Grid of 13?", "context": "CREATE TABLE table_name_34 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_42 WHERE laps > 0 AND grid = 5", "question": "What company constructed the car with more than 0 laps and shows 5 for grid?", "context": "CREATE TABLE table_name_42 (constructor VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_20 WHERE driver = \"derek warwick\"", "question": "What is the sum of laps for Derek Warwick?", "context": "CREATE TABLE table_name_20 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT years_runner_up FROM table_name_91 WHERE runners_up > 1 AND club = \"birmingham city\"", "question": "What years runner-up is Birmingham city, with over 1 runners-up?", "context": "CREATE TABLE table_name_91 (years_runner_up VARCHAR, runners_up VARCHAR, club VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_2 WHERE away_team = \"st kilda\"", "question": "Which Home team score has an Away team of st kilda?", "context": "CREATE TABLE table_name_2 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_27 WHERE venue = \"victoria park\"", "question": "Which Home team has a Venue of victoria park?", "context": "CREATE TABLE table_name_27 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT player FROM table_name_90 WHERE position = \"center\" AND school_club_team = \"washington state\"", "question": "Who was the center from Washington State?", "context": "CREATE TABLE table_name_90 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_34 WHERE player = \"paul dawkins\"", "question": "What school did Paul Dawkins play for?", "context": "CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_93 WHERE building = \"victoria hall\"", "question": "Name the place with building of victoria hall", "context": "CREATE TABLE table_name_93 (place VARCHAR, building VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_37 WHERE building = \"victoria hall\"", "question": "Name the least date for the place which has a building of victoria hall", "context": "CREATE TABLE table_name_37 (date INTEGER, building VARCHAR)"}, {"answer": "SELECT size FROM table_name_94 WHERE date > 2000", "question": "Name the size which is past 2000", "context": "CREATE TABLE table_name_94 (size VARCHAR, date INTEGER)"}, {"answer": "SELECT country FROM table_name_2 WHERE place = \"m\u00e4ntt\u00e4\"", "question": "Name the country that has m\u00e4ntt\u00e4", "context": "CREATE TABLE table_name_2 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT round FROM table_name_32 WHERE player = \"nick gillis\"", "question": "What round was Nick Gillis?", "context": "CREATE TABLE table_name_32 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT distance__km_ FROM table_name_85 WHERE station = \"funao\"", "question": "What is the distance to funao?", "context": "CREATE TABLE table_name_85 (distance__km_ VARCHAR, station VARCHAR)"}, {"answer": "SELECT station FROM table_name_91 WHERE rapid = \"\u2191\" AND distance__km_ > 3.4 AND japanese = \"\u4e0b\u9d28\u751f\"", "question": "What station has a Rapid of \u2191, is 3.4 km away, and has a Japanese title of \u4e0b\u9d28\u751f?", "context": "CREATE TABLE table_name_91 (station VARCHAR, japanese VARCHAR, rapid VARCHAR, distance__km_ VARCHAR)"}, {"answer": "SELECT location FROM table_name_77 WHERE distance__km_ < 7.1 AND rapid = \"\u25cf\"", "question": "What location is less than 7.1 km away, and has a Rapid of \u25cf?", "context": "CREATE TABLE table_name_77 (location VARCHAR, distance__km_ VARCHAR, rapid VARCHAR)"}, {"answer": "SELECT father FROM table_name_89 WHERE spouse = \"ottokar ii\" AND birth = \"1204\"", "question": "What is the name of the father who was born in 1204 and married ottokar ii?", "context": "CREATE TABLE table_name_89 (father VARCHAR, spouse VARCHAR, birth VARCHAR)"}, {"answer": "SELECT birth FROM table_name_47 WHERE ceased_to_be_queen = \"18 jun 1297\"", "question": "What is the birth date of the woman who ceased to be Queen on 18 Jun 1297?", "context": "CREATE TABLE table_name_47 (birth VARCHAR, ceased_to_be_queen VARCHAR)"}, {"answer": "SELECT spouse FROM table_name_26 WHERE father = \"leopold vi, duke of austria\"", "question": "Leopold VI, Duke of Austria is the father-in-law of which person?", "context": "CREATE TABLE table_name_26 (spouse VARCHAR, father VARCHAR)"}, {"answer": "SELECT birth FROM table_name_94 WHERE death = \"18 october 1335\"", "question": "What is the birth date of the person who died on 18 October 1335?", "context": "CREATE TABLE table_name_94 (birth VARCHAR, death VARCHAR)"}, {"answer": "SELECT marriage FROM table_name_59 WHERE death = \"6 dec 1240\"", "question": "When did the person who died on 6 Dec 1240 get married?", "context": "CREATE TABLE table_name_59 (marriage VARCHAR, death VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_38 WHERE grid < 19 AND manufacturer = \"aprilia\" AND laps < 21", "question": "What time/retired for a grid less than 19, under 21 laps, and made by aprilia?", "context": "CREATE TABLE table_name_38 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_25 WHERE rider = \"dirk heidolf\"", "question": "What is the grid for dirk heidolf?", "context": "CREATE TABLE table_name_25 (grid INTEGER, rider VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_60 WHERE venue = \"victoria park\"", "question": "What away team plays at Victoria Park?", "context": "CREATE TABLE table_name_60 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(caps) FROM table_name_96 WHERE player = \"stephen hoiles\"", "question": "How many caps does stephen hoiles have?", "context": "CREATE TABLE table_name_96 (caps INTEGER, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_19 WHERE home_team = \"st kilda\"", "question": "Which Date has a Home team of st kilda?", "context": "CREATE TABLE table_name_19 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_6 WHERE away_team = \"footscray\"", "question": "Which Venue has an Away team of footscray?", "context": "CREATE TABLE table_name_6 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_86 WHERE home_team = \"geelong\"", "question": "Which Crowd has a Home team of geelong?", "context": "CREATE TABLE table_name_86 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_13 WHERE total = 3 AND bronze < 1", "question": "What is the most silver medals a team with 3 total medals and less than 1 bronze has?", "context": "CREATE TABLE table_name_13 (silver INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_68 WHERE gold < 0", "question": "What is the least amount of silver medals a team with less than 0 gold medals has?", "context": "CREATE TABLE table_name_68 (silver INTEGER, gold INTEGER)"}, {"answer": "SELECT MAX(bronze) FROM table_name_22 WHERE silver > 2", "question": "What is the most bronze a team with more than 2 silvers has?", "context": "CREATE TABLE table_name_22 (bronze INTEGER, silver INTEGER)"}, {"answer": "SELECT SUM(bronze) FROM table_name_67 WHERE gold = 1 AND silver > 3", "question": "What is the total amount of bronze medals a team with 1 gold and more than 3 silver medals has?", "context": "CREATE TABLE table_name_67 (bronze INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_86 WHERE points = 59", "question": "What is the draw number that has 59 points?", "context": "CREATE TABLE table_name_86 (draw INTEGER, points VARCHAR)"}, {"answer": "SELECT place FROM table_name_62 WHERE artist = \"roger pontare\"", "question": "What place for roger pontare?", "context": "CREATE TABLE table_name_62 (place VARCHAR, artist VARCHAR)"}, {"answer": "SELECT song FROM table_name_41 WHERE draw < 2", "question": "What song has draw number less than 2?", "context": "CREATE TABLE table_name_41 (song VARCHAR, draw INTEGER)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_42 WHERE home_team = \"essendon\"", "question": "What was the attendance when Essendon played as the home team?", "context": "CREATE TABLE table_name_42 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_3 WHERE venue = \"windy hill\"", "question": "Who played the home team at Windy Hill?", "context": "CREATE TABLE table_name_3 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE decision = \"wall\"", "question": "What was the date of the game that had a decision of wall?", "context": "CREATE TABLE table_name_41 (date VARCHAR, decision VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_84 WHERE pole_position = \"jack brabham\" AND fastest_lap = \"graham hill\"", "question": "What is the name of the circuit when Jack Brabham is in the pole position and Graham Hill has the fastest lap?", "context": "CREATE TABLE table_name_84 (circuit VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT race FROM table_name_90 WHERE circuit = \"monaco\"", "question": "What race contains the Monaco circuit?", "context": "CREATE TABLE table_name_90 (race VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE pole_position = \"jack brabham\" AND circuit = \"spa-francorchamps\"", "question": "What is the date of the race when Jack Brabham is in the pole position and the circuit is Spa-Francorchamps?", "context": "CREATE TABLE table_name_43 (date VARCHAR, pole_position VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_1 WHERE fastest_lap = \"phil hill\"", "question": "What is the name of the circuit when Phil Hill has the fastest lap?", "context": "CREATE TABLE table_name_1 (circuit VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT SUM(reg_gp) FROM table_name_28 WHERE player = \"peter andersson\" AND pick__number < 143", "question": "What is the sum of every REG GP that Peter Andersson played as a pick# less than 143?", "context": "CREATE TABLE table_name_28 (reg_gp INTEGER, player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT COUNT(pl_gp) FROM table_name_73 WHERE player = \"anton rodin\" AND reg_gp < 0", "question": "What is the total of PI GP played by Anton Rodin with a Reg GP less than 0?", "context": "CREATE TABLE table_name_73 (pl_gp VARCHAR, player VARCHAR, reg_gp VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_32 WHERE player = \"anton rodin\" AND reg_gp > 0", "question": "What is the total pick# played by Anton Rodin with a Reg GP over 0?", "context": "CREATE TABLE table_name_32 (pick__number VARCHAR, player VARCHAR, reg_gp VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_52 WHERE laps > 67 AND driver = \"stefan bellof\"", "question": "What is the lowest grid that has over 67 laps with stefan bellof driving?", "context": "CREATE TABLE table_name_52 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_2 WHERE grid < 14 AND time_retired = \"out of fuel\"", "question": "How many laps have a grid under 14 and a time/retired of out of fuel?", "context": "CREATE TABLE table_name_2 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_21 WHERE grid < 11 AND constructor = \"renault\" AND laps > 23", "question": "Who drove the renault that went over 23 laps and had a grid under 11?", "context": "CREATE TABLE table_name_21 (driver VARCHAR, laps VARCHAR, grid VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT AVG(ngc_number) FROM table_name_59 WHERE apparent_magnitude > 14.2", "question": "What is the average NGC number that has a Apparent magnitude greater than 14.2?", "context": "CREATE TABLE table_name_59 (ngc_number INTEGER, apparent_magnitude INTEGER)"}, {"answer": "SELECT MAX(ngc_number) FROM table_name_5 WHERE declination___j2000__ = \"\u00b004\u203258\u2033\" AND apparent_magnitude > 7.3", "question": "What is the highest NGC number that has a Declination ( J2000 ) of \u00b004\u203258\u2033 and a Apparent magnitude larger than 7.3?", "context": "CREATE TABLE table_name_5 (ngc_number INTEGER, declination___j2000__ VARCHAR, apparent_magnitude VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_17 WHERE object_type = \"globular cluster\" AND ngc_number = 5986", "question": "What Constellation has a Object type of globular cluster and a NGC number of 5986?", "context": "CREATE TABLE table_name_17 (constellation VARCHAR, object_type VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_43 WHERE points < 5 AND gold < 0", "question": "For clubs that have 0 gold and less than 5 points, what is the average amount of bronze medals?", "context": "CREATE TABLE table_name_43 (bronze INTEGER, points VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_78 WHERE small_silver > 9 AND club = \"aik\" AND bronze > 8", "question": "Club aik had over 9 small silver medals and more than 8 bronze medals, how many total points did they have?", "context": "CREATE TABLE table_name_78 (points INTEGER, bronze VARCHAR, small_silver VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_68 WHERE club = \"landskrona bois\" AND rank < 18", "question": "How many points did landskrona bois get when they were ranked below 18?", "context": "CREATE TABLE table_name_68 (points VARCHAR, club VARCHAR, rank VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_29 WHERE game = 5", "question": "Who was the opponent for game 5?", "context": "CREATE TABLE table_name_29 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_name_28 WHERE pick > 30 AND position = \"c\" AND round > 4", "question": "Name the team for pick more than 30 and position of c with round more than 4", "context": "CREATE TABLE table_name_28 (team VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT number_of_decimal_digits FROM table_name_26 WHERE total_bits > 32 AND exponent < 15", "question": "What's the number of decimal digits when the total bits is more than 32 and the exponent is less than 15?", "context": "CREATE TABLE table_name_26 (number_of_decimal_digits VARCHAR, total_bits VARCHAR, exponent VARCHAR)"}, {"answer": "SELECT COUNT(significand) FROM table_name_41 WHERE number_of_decimal_digits = \"~34.0\" AND total_bits > 128", "question": "What's the total number of signicand with ~34.0 decimal digits and more than 128 total bits?", "context": "CREATE TABLE table_name_41 (significand VARCHAR, number_of_decimal_digits VARCHAR, total_bits VARCHAR)"}, {"answer": "SELECT SUM(sign) FROM table_name_98 WHERE bits_precision > 53 AND type = \"double extended (80-bit)\" AND total_bits > 80", "question": "What's the sum of sign with more than 53 bits precision, double extended (80-bit) type, and more than 80 total bits?", "context": "CREATE TABLE table_name_98 (sign INTEGER, total_bits VARCHAR, bits_precision VARCHAR, type VARCHAR)"}, {"answer": "SELECT MIN(bits_precision) FROM table_name_32 WHERE total_bits < 16", "question": "What's the lowest bits precision when the total bits are less than 16?", "context": "CREATE TABLE table_name_32 (bits_precision INTEGER, total_bits INTEGER)"}, {"answer": "SELECT SUM(years_played) FROM table_name_28 WHERE singles_win_loss = \"4-9\" AND first_year_played < 1999", "question": "How many years did the team that has a Singles win-Loss of 4-9 and first played before 1999?", "context": "CREATE TABLE table_name_28 (years_played INTEGER, singles_win_loss VARCHAR, first_year_played VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_29 WHERE record = \"12-8-1\"", "question": "What is the highest game number with a record of 12-8-1?", "context": "CREATE TABLE table_name_29 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_46 WHERE decision = \"valiquette\" AND november = 23", "question": "What is the record when the decision was valiquette on November 23?", "context": "CREATE TABLE table_name_46 (record VARCHAR, decision VARCHAR, november VARCHAR)"}, {"answer": "SELECT driver FROM table_name_45 WHERE laps > 8 AND constructor = \"ferrari\" AND grid = 8", "question": "I want the driver for Laps more than 8 and ferrari with Grid of 8", "context": "CREATE TABLE table_name_45 (driver VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT title FROM table_name_28 WHERE translation = \"vesoul\"", "question": "Which title has the Translation of vesoul?", "context": "CREATE TABLE table_name_28 (title VARCHAR, translation VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_56 WHERE year = \"1996 (11th)\" AND winner_and_nominees = \"breaking the waves\"", "question": "What was the orignal title for the winner and nominee, Breaking the Waves, in 1996 (11th)?", "context": "CREATE TABLE table_name_56 (original_title VARCHAR, year VARCHAR, winner_and_nominees VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_25 WHERE winner_and_nominees = \"secrets & lies\"", "question": "What is the original title for the winner and nominees 'Secrets & Lies'?", "context": "CREATE TABLE table_name_25 (original_title VARCHAR, winner_and_nominees VARCHAR)"}, {"answer": "SELECT country FROM table_name_69 WHERE winner_and_nominees = \"hidden agenda\"", "question": "The winner and nominee 'Hidden Agenda' is from which country?", "context": "CREATE TABLE table_name_69 (country VARCHAR, winner_and_nominees VARCHAR)"}, {"answer": "SELECT total_produced FROM table_name_49 WHERE service = \"freight\" AND builder\u2019s_model = \"u28c\"", "question": "What is the total amount of freight produced of u28c?", "context": "CREATE TABLE table_name_49 (total_produced VARCHAR, service VARCHAR, builder\u2019s_model VARCHAR)"}, {"answer": "SELECT build_date FROM table_name_80 WHERE prr_class = \"gf30a\"", "question": "What is the build date for PRR Class gf30a?", "context": "CREATE TABLE table_name_80 (build_date VARCHAR, prr_class VARCHAR)"}, {"answer": "SELECT prr_class FROM table_name_80 WHERE wheel_arrangement = \"c-c\" AND total_produced < 15", "question": "What is the PRR class for wheel arrangement c-c and total less than 15?", "context": "CREATE TABLE table_name_80 (prr_class VARCHAR, wheel_arrangement VARCHAR, total_produced VARCHAR)"}, {"answer": "SELECT builder\u2019s_model FROM table_name_61 WHERE service = \"freight\" AND prr_class = \"gf28a\"", "question": "What was the model for PRR class of gf28a freight?", "context": "CREATE TABLE table_name_61 (builder\u2019s_model VARCHAR, service VARCHAR, prr_class VARCHAR)"}, {"answer": "SELECT queens FROM table_name_21 WHERE manhattan = \"189,524\"", "question": "Who got 189,524 votes?", "context": "CREATE TABLE table_name_21 (queens VARCHAR, manhattan VARCHAR)"}, {"answer": "SELECT owner FROM table_name_51 WHERE frequency = \"103.3 fm\"", "question": "Which owner has the frequency of 103.3 FM?", "context": "CREATE TABLE table_name_51 (owner VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_25 WHERE format = \"classic country\"", "question": "What is the call sign of the Classic Country Music station?", "context": "CREATE TABLE table_name_25 (call_sign VARCHAR, format VARCHAR)"}, {"answer": "SELECT name FROM table_name_88 WHERE call_sign = \"kdsu\"", "question": "Which owner has the call sign of KDSU?", "context": "CREATE TABLE table_name_88 (name VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_62 WHERE name = \"thunder 106.1\"", "question": "What is the call sign for Thunder 106.1?", "context": "CREATE TABLE table_name_62 (call_sign VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_45 WHERE format = \"contemporary christian music\" AND frequency = \"97.9 fm\"", "question": "Which owner has a Contemporary Christian music station on 97.9 FM?", "context": "CREATE TABLE table_name_45 (name VARCHAR, format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_35 WHERE visitor = \"pistons\"", "question": "Who was the leading scorer in the game where the visiting team was the Pistons?", "context": "CREATE TABLE table_name_35 (leading_scorer VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_96 WHERE leading_scorer = \"tim duncan (24)\" AND home = \"spurs\"", "question": "How many people attended the game where the leading scorer was Tim Duncan (24), and the home team was the Spurs?", "context": "CREATE TABLE table_name_96 (attendance INTEGER, leading_scorer VARCHAR, home VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_53 WHERE time_retired = \"water leak\" AND grid > 12", "question": "What is the mean number of laps where Time/retired was a water leak and the grid number was bigger than 12?", "context": "CREATE TABLE table_name_53 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_60 WHERE time_retired = \"spun off\" AND driver = \"nick heidfeld\"", "question": "What is the mean number of laps when time/retired was spun off and the driver was Nick Heidfeld?", "context": "CREATE TABLE table_name_60 (laps INTEGER, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_55 WHERE driver = \"luciano burti\"", "question": "What is the sum grid number when the driver was Luciano Burti?", "context": "CREATE TABLE table_name_55 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_5 WHERE laps > 3 AND driver = \"jarno trulli\"", "question": "Which constructor had a laps number bigger than 3 when the driver was Jarno Trulli?", "context": "CREATE TABLE table_name_5 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT head_of_household FROM table_name_32 WHERE married_filing_jointly_or_qualified_widow_er_ = \"$137,051\u2013$208,850\"", "question": "Name the head of household for married filing jointly or qualified widow(er) being $137,051\u2013$208,850", "context": "CREATE TABLE table_name_32 (head_of_household VARCHAR, married_filing_jointly_or_qualified_widow_er_ VARCHAR)"}, {"answer": "SELECT married_filing_jointly_or_qualified_widow_er_ FROM table_name_61 WHERE head_of_household = \"$117,451\u2013$190,200\"", "question": "Name the married filing jointly or qualified widow(er) with head of household being $117,451\u2013$190,200", "context": "CREATE TABLE table_name_61 (married_filing_jointly_or_qualified_widow_er_ VARCHAR, head_of_household VARCHAR)"}, {"answer": "SELECT married_filing_separately FROM table_name_77 WHERE single = \"$0\u2013$8,350\"", "question": "Name the married filing separately for single of $0\u2013$8,350", "context": "CREATE TABLE table_name_77 (married_filing_separately VARCHAR, single VARCHAR)"}, {"answer": "SELECT head_of_household FROM table_name_89 WHERE married_filing_separately = \"$104,426\u2013$186,475\"", "question": "Name the head of household that has married filing separately of $104,426\u2013$186,475", "context": "CREATE TABLE table_name_89 (head_of_household VARCHAR, married_filing_separately VARCHAR)"}, {"answer": "SELECT marginal_ordinary_income_tax_rate FROM table_name_40 WHERE head_of_household = \"$372,951+\"", "question": "Name the marginal ordinary income tax rate that has a head of household of $372,951+", "context": "CREATE TABLE table_name_40 (marginal_ordinary_income_tax_rate VARCHAR, head_of_household VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_48 WHERE fgm___fga = \"11-28\" AND number < 7", "question": "What is the point average for the game that has FGM-FGA of 11-28 and a number smaller than 7?", "context": "CREATE TABLE table_name_48 (points INTEGER, fgm___fga VARCHAR, number VARCHAR)"}, {"answer": "SELECT MIN(floors) FROM table_name_82 WHERE name = \"dubai marriott harbour hotel & suites\"", "question": "What is the lowest number of floors recorded for buildings built by Dubai Marriott Harbour Hotel & Suites?", "context": "CREATE TABLE table_name_82 (floors INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_55 WHERE year > 2006 AND floors > 101", "question": "What is the name of the building housing more than 101 floors, that was built after 2006?", "context": "CREATE TABLE table_name_55 (name VARCHAR, year VARCHAR, floors VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_41 WHERE date = \"4 july 1981\" AND away_team = \"essendon\"", "question": "What was the crowd size on 4 july 1981, and a Away team of essendon?", "context": "CREATE TABLE table_name_41 (crowd VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE away_team = \"essendon\"", "question": "When did essendon play away?", "context": "CREATE TABLE table_name_53 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT category FROM table_name_95 WHERE result = \"won\" AND year = 1998 AND award = \"sundance film festival\"", "question": "Which category won the Sundance Film Festival award in 1998?", "context": "CREATE TABLE table_name_95 (category VARCHAR, award VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT category FROM table_name_20 WHERE result = \"nominated\" AND film_or_series = \"the wire\" AND year > 2005", "question": "Which award category was the film series The Wire nominated for after 2005?", "context": "CREATE TABLE table_name_20 (category VARCHAR, year VARCHAR, result VARCHAR, film_or_series VARCHAR)"}, {"answer": "SELECT result FROM table_name_43 WHERE category = \"outstanding supporting actress in a drama series\" AND year = 2009", "question": "What was the result for the nominee for Outstanding Supporting Actress in a Drama Series in 2009?", "context": "CREATE TABLE table_name_43 (result VARCHAR, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE away_team = \"st kilda\"", "question": "When st kilda played as the away team, what date was that?", "context": "CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE home_team = \"fitzroy\"", "question": "On what date did Fitzroy play as the home team?", "context": "CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT antonio_thomas FROM table_name_24 WHERE hikaru_sato = \"tanaka (8:09)\"", "question": "Name the antonio thomas for Hikaru Sato of tanaka (8:09)", "context": "CREATE TABLE table_name_24 (antonio_thomas VARCHAR, hikaru_sato VARCHAR)"}, {"answer": "SELECT block_a FROM table_name_85 WHERE antonio_thomas = \"kondo (13:24)\"", "question": "Tell me the block A for antonio thomas of kondo (13:24)", "context": "CREATE TABLE table_name_85 (block_a VARCHAR, antonio_thomas VARCHAR)"}, {"answer": "SELECT minoru FROM table_name_22 WHERE hikaru_sato = \"x\" AND super_crazy = \"yang (8:36)\"", "question": "Name the minoru that has a hikaru sato of x and super crazy of yang (8:36)", "context": "CREATE TABLE table_name_22 (minoru VARCHAR, hikaru_sato VARCHAR, super_crazy VARCHAR)"}, {"answer": "SELECT record FROM table_name_68 WHERE visitor = \"atlanta\"", "question": "Atlanta was a visitor on December 8, what was their record?", "context": "CREATE TABLE table_name_68 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT team FROM table_name_43 WHERE matches = 13", "question": "Tell me the team which has matches of 13", "context": "CREATE TABLE table_name_43 (team VARCHAR, matches VARCHAR)"}, {"answer": "SELECT SUM(win__percentage) FROM table_name_55 WHERE drawn > 35", "question": "Tell me the sum of win % for drawn being larger than 35", "context": "CREATE TABLE table_name_55 (win__percentage INTEGER, drawn INTEGER)"}, {"answer": "SELECT MAX(win__percentage) FROM table_name_91 WHERE drawn = 13", "question": "Name the most win % for 13 drawn", "context": "CREATE TABLE table_name_91 (win__percentage INTEGER, drawn VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_53 WHERE matches = 6", "question": "Name the average lost for matches of 6", "context": "CREATE TABLE table_name_53 (lost INTEGER, matches VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_89 WHERE grid = 18", "question": "What was the time recorded for grid 18?", "context": "CREATE TABLE table_name_89 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_83 WHERE track < 16 AND recorded = \"2/3/56\" AND song_title = \"lawdy miss clawdy\"", "question": "What catalogue has a track less than 16 and 2/3/56 recorded with a song titled Lawdy Miss Clawdy?", "context": "CREATE TABLE table_name_83 (catalogue VARCHAR, song_title VARCHAR, track VARCHAR, recorded VARCHAR)"}, {"answer": "SELECT MAX(track) FROM table_name_87 WHERE song_title = \"rip it up\"", "question": "What is the highest track for the song Rip it Up?", "context": "CREATE TABLE table_name_87 (track INTEGER, song_title VARCHAR)"}, {"answer": "SELECT SUM(track) FROM table_name_12 WHERE catalogue = \"epa 4054\" AND time = \"2:05\"", "question": "What is the sum of every track with a catalogue of EPA 4054 with a 2:05 length?", "context": "CREATE TABLE table_name_12 (track INTEGER, catalogue VARCHAR, time VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_82 WHERE time = \"2:10\"", "question": "What catalogue has a length of 2:10?", "context": "CREATE TABLE table_name_82 (catalogue VARCHAR, time VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_59 WHERE track > 4 AND recorded = \"1/12/57\" AND time = \"2:31\"", "question": "When was the release date of a track greater than 4, 1/12/57 recorded, and a length of 2:31?", "context": "CREATE TABLE table_name_59 (release_date VARCHAR, time VARCHAR, track VARCHAR, recorded VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_31 WHERE catalogue = \"epa 4054\" AND recorded = \"1/12/57\"", "question": "When was the cataglogue EPA 4054 released with a 1/12/57 recorded?", "context": "CREATE TABLE table_name_31 (release_date VARCHAR, catalogue VARCHAR, recorded VARCHAR)"}, {"answer": "SELECT school FROM table_name_82 WHERE height = \"6-9\"", "question": "Tell me the school with a height of 6-9", "context": "CREATE TABLE table_name_82 (school VARCHAR, height VARCHAR)"}, {"answer": "SELECT school FROM table_name_65 WHERE height = \"6-4\"", "question": "Which school did the player have a height of 6-4?", "context": "CREATE TABLE table_name_65 (school VARCHAR, height VARCHAR)"}, {"answer": "SELECT college FROM table_name_32 WHERE player = \"paul davis\"", "question": "Tell me the college that paul davis went to", "context": "CREATE TABLE table_name_32 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_name_14 WHERE player = \"jason fraser\"", "question": "Tell me the school that jason fraser went to", "context": "CREATE TABLE table_name_14 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT result FROM table_name_98 WHERE attendance = \"68,436\"", "question": "What is the result of the game with 68,436 attending?", "context": "CREATE TABLE table_name_98 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_38 WHERE college = \"lsu\"", "question": "What is the NBA Draft status of the person who went to college at LSU?", "context": "CREATE TABLE table_name_38 (nba_draft VARCHAR, college VARCHAR)"}, {"answer": "SELECT height FROM table_name_53 WHERE player = \"kenny williams\"", "question": "What is Player Kenny Williams' Height?", "context": "CREATE TABLE table_name_53 (height VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_name_37 WHERE player = \"billy owens\"", "question": "What School did Player Billy Owens attend?", "context": "CREATE TABLE table_name_37 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_name_74 WHERE player = \"alonzo mourning\"", "question": "What School did Player Alonzo Mourning attend?", "context": "CREATE TABLE table_name_74 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_16 WHERE total > 1 AND gold < 2 AND rank = 2", "question": "How many bronze's on average for nations with over 1 total, less than 2 golds, ranked 2nd?", "context": "CREATE TABLE table_name_16 (bronze INTEGER, rank VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_89 WHERE total < 3 AND rank = 6 AND bronze > 1", "question": "How many silvers on average for nations with less than 3 total, ranked 6, and over 1 bronze?", "context": "CREATE TABLE table_name_89 (silver INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE record = \"1-0\"", "question": "What is the date of the Cubs game when the Cubs had a record of 1-0?", "context": "CREATE TABLE table_name_2 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_56 WHERE record = \"4-4\"", "question": "Who did the Cubs play when they had a record of 4-4?", "context": "CREATE TABLE table_name_56 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_21 WHERE call_letters = \"wmad\"", "question": "What is the frequency of WMAD?", "context": "CREATE TABLE table_name_21 (frequency VARCHAR, call_letters VARCHAR)"}, {"answer": "SELECT ifop_5_11_09 FROM table_name_23 WHERE opinionway_5_11_09 = \"2%\" AND ipsos_3_14_09 = \"2%\"", "question": "Name the lfop 5/11/09 with opinion way of 5/11/09 of 2% and lpsos 3/14/09 of 2%", "context": "CREATE TABLE table_name_23 (ifop_5_11_09 VARCHAR, opinionway_5_11_09 VARCHAR, ipsos_3_14_09 VARCHAR)"}, {"answer": "SELECT ifop_4_24_09 FROM table_name_43 WHERE opinionway_4_17_09 = \"5%\" AND party = \"left front\"", "question": "Name the lfop 4/24/09 for opinionway of 4/17/09 of 5% for party of left front", "context": "CREATE TABLE table_name_43 (ifop_4_24_09 VARCHAR, opinionway_4_17_09 VARCHAR, party VARCHAR)"}, {"answer": "SELECT ifop_5_11_09 FROM table_name_18 WHERE ifop_1_9_09 = \"5%\"", "question": "Name the lfop for 5/11/09 with lfop 1/9/09 of 5%", "context": "CREATE TABLE table_name_18 (ifop_5_11_09 VARCHAR, ifop_1_9_09 VARCHAR)"}, {"answer": "SELECT csa_4_16_09 FROM table_name_17 WHERE opinionway_4_17_09 = \"12%\"", "question": "Name the csa 4/16/09 for opinionway being 4/17/09 of 12%", "context": "CREATE TABLE table_name_17 (csa_4_16_09 VARCHAR, opinionway_4_17_09 VARCHAR)"}, {"answer": "SELECT ipsos_3_14_09 FROM table_name_33 WHERE ifop_11_12_08 = \"7%\" AND opinionway_4_17_09 = \"5%\"", "question": "Name the lpsos 3/14/09 for opinionway of 4/17/09 of 5% and lfof 11/12/08 of 7%", "context": "CREATE TABLE table_name_33 (ipsos_3_14_09 VARCHAR, ifop_11_12_08 VARCHAR, opinionway_4_17_09 VARCHAR)"}, {"answer": "SELECT results_2004 FROM table_name_18 WHERE party = \"npa\"", "question": "Name the 2004 results for npa", "context": "CREATE TABLE table_name_18 (results_2004 VARCHAR, party VARCHAR)"}, {"answer": "SELECT decision FROM table_name_14 WHERE visitor = \"tampa bay\"", "question": "What was the decision when Tampa Bay was the visitor?", "context": "CREATE TABLE table_name_14 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_14 WHERE date = \"february 21\"", "question": "Which visitor visited on February 21?", "context": "CREATE TABLE table_name_14 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE venue = \"victoria park\"", "question": "What date is the Victoria Park venue?", "context": "CREATE TABLE table_name_3 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_16 WHERE home_team = \"fitzroy\"", "question": "What Away team is from Fitzroy?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home FROM table_name_85 WHERE visitor = \"lakers\"", "question": "Who was the home team that played the Lakers?", "context": "CREATE TABLE table_name_85 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_85 WHERE 2006 = \"a\" AND 2008 = \"1r\"", "question": "Which tournament had a 2008 result of 1R?", "context": "CREATE TABLE table_name_85 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_91 WHERE 2007 = \"a\" AND 2011 = \"a\"", "question": "Which tournament in 2012 had a 2007 and 2011 finishes of \"A\"?", "context": "CREATE TABLE table_name_91 (Id VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_44 WHERE 2006 = \"a\" AND 2010 = \"1r\"", "question": "Which tournament in 2013 had a 2010 finish of 1R?", "context": "CREATE TABLE table_name_44 (Id VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_71 WHERE away_team = \"melbourne\"", "question": "Which home team score has an Away team of melbourne?", "context": "CREATE TABLE table_name_71 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_47 WHERE home_team = \"geelong\"", "question": "What is the highest crowd for Home team of geelong?", "context": "CREATE TABLE table_name_47 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_85 WHERE performance = \"60.73m\" AND age__years_ > 45", "question": "What is the year when the performance is 60.73m and the age (years) is more than 45?", "context": "CREATE TABLE table_name_85 (year VARCHAR, performance VARCHAR, age__years_ VARCHAR)"}, {"answer": "SELECT MAX(age__years_) FROM table_name_45 WHERE place = \"1st\" AND performance = \"62.20m\"", "question": "What is the highest age (years) that the 1st place had a performance of 62.20m?", "context": "CREATE TABLE table_name_45 (age__years_ INTEGER, place VARCHAR, performance VARCHAR)"}, {"answer": "SELECT place FROM table_name_65 WHERE performance = \"60.73m\"", "question": "What is the place when the performance is 60.73m?", "context": "CREATE TABLE table_name_65 (place VARCHAR, performance VARCHAR)"}, {"answer": "SELECT kaz_hayashi FROM table_name_47 WHERE block_a = \"shuji kondo\"", "question": "Name the kaz hayashi with block A of Shuji Kondo", "context": "CREATE TABLE table_name_47 (kaz_hayashi VARCHAR, block_a VARCHAR)"}, {"answer": "SELECT block_a FROM table_name_93 WHERE toshizo = \"shuji kondo\"", "question": "Name the block A for shuji kondo", "context": "CREATE TABLE table_name_93 (block_a VARCHAR, toshizo VARCHAR)"}, {"answer": "SELECT nosawa_rongai FROM table_name_97 WHERE block_a = \"petey williams\"", "question": "Name the NOSAWA Rongai for petey williams", "context": "CREATE TABLE table_name_97 (nosawa_rongai VARCHAR, block_a VARCHAR)"}, {"answer": "SELECT score FROM table_name_61 WHERE champion = \"nannette hill\"", "question": "What was the score when Nannette Hill was the champion?", "context": "CREATE TABLE table_name_61 (score VARCHAR, champion VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_74 WHERE away_team = \"melbourne\"", "question": "What score did the opposing home team have against Melbourne", "context": "CREATE TABLE table_name_74 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_76 WHERE away_team = \"st kilda\"", "question": "Name the venue where St Kilda was the opposing away team", "context": "CREATE TABLE table_name_76 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE venue = \"lake oval\"", "question": "Which Date has a Venue of lake oval?", "context": "CREATE TABLE table_name_36 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_79 WHERE away_team = \"collingwood\"", "question": "Which Crowd has an Away team of collingwood?", "context": "CREATE TABLE table_name_79 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT AVG(rd__number) FROM table_name_82 WHERE player = \"steve hazlett\" AND pl_gp < 0", "question": "When Steve Hazlett is the Player, and the PI GP is under 0, what is the average Rd #?", "context": "CREATE TABLE table_name_82 (rd__number INTEGER, player VARCHAR, pl_gp VARCHAR)"}, {"answer": "SELECT player FROM table_name_71 WHERE pl_gp > 0 AND rd__number = 1", "question": "Which Player has a PI GP over 0 and a Rd # of 1?", "context": "CREATE TABLE table_name_71 (player VARCHAR, pl_gp VARCHAR, rd__number VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_9 WHERE rd__number < 1", "question": "Which Pick # is the highest and has the Rd # is under 1?", "context": "CREATE TABLE table_name_9 (pick__number INTEGER, rd__number INTEGER)"}, {"answer": "SELECT MIN(pl_gp) FROM table_name_53 WHERE reg_gp = 1 AND player = \"murray bannerman\" AND pick__number < 58", "question": "What is the lowest PI GP when the Reg GP is 1, Murray Bannerman is the Player, and the Pick # is under 58?", "context": "CREATE TABLE table_name_53 (pl_gp INTEGER, pick__number VARCHAR, reg_gp VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(top_25) FROM table_name_33 WHERE events = 5 AND cuts_made < 3", "question": "Tell me the average top 25 with events of 5 and cuts madde less than 3", "context": "CREATE TABLE table_name_33 (top_25 INTEGER, events VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_5 WHERE wins > 1", "question": "Tell me the highest cuts made with wins more than 1", "context": "CREATE TABLE table_name_5 (cuts_made INTEGER, wins INTEGER)"}, {"answer": "SELECT MAX(wins) FROM table_name_71 WHERE cuts_made > 5", "question": "I want to know the highest wins for cuts made more than 5", "context": "CREATE TABLE table_name_71 (wins INTEGER, cuts_made INTEGER)"}, {"answer": "SELECT SUM(top_5) FROM table_name_98 WHERE events < 12 AND top_25 < 0", "question": "Tell me the sum of top 5 with events less than 12 and top 25 less than 0", "context": "CREATE TABLE table_name_98 (top_5 INTEGER, events VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_94 WHERE away_team = \"south melbourne\"", "question": "What was the biggest crowd when South Melbourne was an away team?", "context": "CREATE TABLE table_name_94 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_9 WHERE date = \"8 march 2008\"", "question": "How many people attended the game on 8 March 2008?", "context": "CREATE TABLE table_name_9 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_15 WHERE home_team = \"geelong\"", "question": "What is the Away team score when they played Geelong as the Home team?", "context": "CREATE TABLE table_name_15 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_73 WHERE home_team = \"carlton\"", "question": "What did Carlton score when they were the Home team?", "context": "CREATE TABLE table_name_73 (home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_53 WHERE away_team = \"fitzroy\"", "question": "What is the name of the Home team that played Fitzroy as the Away team?", "context": "CREATE TABLE table_name_53 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_31 WHERE grade = \"a\"", "question": "What is the total number of points when the grade was A?", "context": "CREATE TABLE table_name_31 (points INTEGER, grade VARCHAR)"}, {"answer": "SELECT standing_broad_jump__cm_ FROM table_name_67 WHERE grade = \"b\"", "question": "Which standing broad jump (cm) had the b grade?", "context": "CREATE TABLE table_name_67 (standing_broad_jump__cm_ VARCHAR, grade VARCHAR)"}, {"answer": "SELECT grade FROM table_name_54 WHERE chin_up__reps_ = \"9-10\"", "question": "Which grade did the chin-up (reps) 9-10 receive?", "context": "CREATE TABLE table_name_54 (grade VARCHAR, chin_up__reps_ VARCHAR)"}, {"answer": "SELECT year FROM table_name_99 WHERE comp = \"33\"", "question": "What year was the comp 33?", "context": "CREATE TABLE table_name_99 (year VARCHAR, comp VARCHAR)"}, {"answer": "SELECT ravg FROM table_name_51 WHERE year = \"1984\"", "question": "In 1984, what was the RAvg?", "context": "CREATE TABLE table_name_51 (ravg VARCHAR, year VARCHAR)"}, {"answer": "SELECT ratt FROM table_name_85 WHERE year = \"1983\"", "question": "In 1983, what was the RAtt?", "context": "CREATE TABLE table_name_85 (ratt VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_name_67 WHERE rate = \"94.1\"", "question": "What team has a 94.1 rating?", "context": "CREATE TABLE table_name_67 (team VARCHAR, rate VARCHAR)"}, {"answer": "SELECT year FROM table_name_60 WHERE ratt = \"1\" AND comp = \"49\"", "question": "What year has a RAtt of 1 and a comp of 49?", "context": "CREATE TABLE table_name_60 (year VARCHAR, ratt VARCHAR, comp VARCHAR)"}, {"answer": "SELECT loss FROM table_name_98 WHERE date = \"august 7\"", "question": "Who recorded the loss on august 7?", "context": "CREATE TABLE table_name_98 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_7 WHERE away_team = \"st kilda\"", "question": "When the away team was st kilda, what did the home team score?", "context": "CREATE TABLE table_name_7 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_98 WHERE home_team = \"geelong\"", "question": "When the home team was geelong, what did the away team score?", "context": "CREATE TABLE table_name_98 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT artist FROM table_name_11 WHERE issue_price = \"$8,159.95\"", "question": "Which Artist has an Issue Price of $8,159.95?", "context": "CREATE TABLE table_name_11 (artist VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT MIN(mintage) FROM table_name_9 WHERE artist = \"royal canadian mint engravers\" AND issue_price = \"$10,199.95\" AND year > 2009", "question": "What is the lowest Mintage for the Artist Royal Canadian Mint Engravers, in the Year 2009, with an Issue Price of $10,199.95?", "context": "CREATE TABLE table_name_9 (mintage INTEGER, year VARCHAR, artist VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT SUM(mintage) FROM table_name_75 WHERE artist = \"steve hepburn\"", "question": "What is the sum of Artist Steve Hepburn's Mintage?", "context": "CREATE TABLE table_name_75 (mintage INTEGER, artist VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_35 WHERE artist = \"royal canadian mint engravers\" AND mintage < 200", "question": "What is the average Year for the Royal Canadian Mint Engravers Artist when the Mintage is under 200?", "context": "CREATE TABLE table_name_35 (year INTEGER, artist VARCHAR, mintage VARCHAR)"}, {"answer": "SELECT MAX(mintage) FROM table_name_46 WHERE artist = \"royal canadian mint engravers\" AND year > 2008", "question": "When the Year is over 2008, what is the highest Mintage for the Royal Canadian Mint Engravers Artist?", "context": "CREATE TABLE table_name_46 (mintage INTEGER, artist VARCHAR, year VARCHAR)"}, {"answer": "SELECT until FROM table_name_76 WHERE name = \"jos\u00e9 luis s\u00e1nchez sol\u00e1\"", "question": "When did Jos\u00e9 Luis S\u00e1nchez Sol\u00e1 end his term of coaching?", "context": "CREATE TABLE table_name_76 (until VARCHAR, name VARCHAR)"}, {"answer": "SELECT class FROM table_name_72 WHERE manufacturer = \"eastleigh works\" AND year_made = \"1914\" AND year_s__withdrawn = \"1959\"", "question": "What is the class of the locomotive with an Eastleigh Works manufacturer, made in 1914, and withdrawn in 1959?", "context": "CREATE TABLE table_name_72 (class VARCHAR, year_s__withdrawn VARCHAR, manufacturer VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT class FROM table_name_47 WHERE wheel_arrangement = \"4-6-0\" AND quantity_made = \"14\"", "question": "What is the class of the locomotive with a wheel arrangement of 4-6-0 and a quantity made of 14?", "context": "CREATE TABLE table_name_47 (class VARCHAR, wheel_arrangement VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT fleet_number_s_ FROM table_name_59 WHERE quantity_made = \"1\"", "question": "What is the fleet number of the locomotive with 1 quantity made?", "context": "CREATE TABLE table_name_59 (fleet_number_s_ VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_68 WHERE away_team = \"st kilda\"", "question": "In games where st kilda was the away team, what was the smallest crowd?", "context": "CREATE TABLE table_name_68 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_7 WHERE home_team = \"fitzroy\"", "question": "In fitzroy's match where they were the home team, how much did they score?", "context": "CREATE TABLE table_name_7 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_4 WHERE venue = \"mcg\"", "question": "What was the score for the home team who plays their matches at the mcg venue?", "context": "CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(earnings__) AS $__ FROM table_name_50 WHERE wins = 4 AND rank > 4", "question": "Which player has the lowest earnings and has at least 4 wins and is ranked higher than 4?", "context": "CREATE TABLE table_name_50 (earnings__ INTEGER, wins VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_8 WHERE earnings__$__ > 720 OFFSET 134", "question": "How many wins do the players that earned more than 720,134 have?", "context": "CREATE TABLE table_name_8 (wins INTEGER, earnings__$__ INTEGER)"}, {"answer": "SELECT MAX(rank) FROM table_name_70 WHERE earnings__$__ < 395 OFFSET 386", "question": "Who is the highest ranked player that has earnings below 395,386?", "context": "CREATE TABLE table_name_70 (rank INTEGER, earnings__$__ INTEGER)"}, {"answer": "SELECT game FROM table_name_82 WHERE rams_points = 0", "question": "In what Game did Rams Points equal 0?", "context": "CREATE TABLE table_name_82 (game VARCHAR, rams_points VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_54 WHERE record = \"6-0\"", "question": "What Opponent has a 6-0 Record?", "context": "CREATE TABLE table_name_54 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(interview) FROM table_name_4 WHERE average < 8.697 AND evening_gown < 8.73 AND state = \"north dakota\" AND swimsuit > 8.41", "question": "What is the sum of the interview scores from North Dakota that have averages less than 8.697, evening gown scores less than 8.73, and swimsuit scores greater than 8.41?", "context": "CREATE TABLE table_name_4 (interview INTEGER, swimsuit VARCHAR, state VARCHAR, average VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT SUM(swimsuit) FROM table_name_77 WHERE evening_gown < 8.77 AND state = \"missouri\" AND average < 8.823", "question": "What is the sum of the swimsuit scores from Missouri that have evening gown scores less than 8.77 and average scores less than 8.823?", "context": "CREATE TABLE table_name_77 (swimsuit INTEGER, average VARCHAR, evening_gown VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(swimsuit) FROM table_name_19 WHERE average < 8.823 AND evening_gown < 8.69 AND interview = 8.27", "question": "What is the total number of swimsuit scores that have average scores less than 8.823, evening gown scores less than 8.69, and interview scores equal to 8.27?", "context": "CREATE TABLE table_name_19 (swimsuit VARCHAR, interview VARCHAR, average VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT MIN(swimsuit) FROM table_name_85 WHERE interview < 8.56 AND evening_gown > 8.54", "question": "What is the lowest swimsuit score where the contestant scored less than 8.56 in the interview and greater than 8.54 in the evening gown?", "context": "CREATE TABLE table_name_85 (swimsuit INTEGER, interview VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT SUM(evening_gown) FROM table_name_4 WHERE interview < 8.77 AND swimsuit = 7.8 AND average < 8.2", "question": "What is the sum of the evening gown scores where the interview score is less than 8.77, the swimsuit score is equal to 7.8, and the average score is less than 8.2?", "context": "CREATE TABLE table_name_4 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_96 WHERE tie_no = \"13\"", "question": "What was the attendance for the game that has a tie number of 13?", "context": "CREATE TABLE table_name_96 (attendance INTEGER, tie_no VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_82 WHERE away_team = \"forest green rovers\"", "question": "What is the average attendance when the Forest Green Rovers is the away team?", "context": "CREATE TABLE table_name_82 (attendance INTEGER, away_team VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_48 WHERE rider = \"troy corser\" AND laps < 22", "question": "What is the grid number for troy corser with under 22 laps?", "context": "CREATE TABLE table_name_48 (grid INTEGER, rider VARCHAR, laps VARCHAR)"}, {"answer": "SELECT rider FROM table_name_11 WHERE laps < 22 AND grid = 2", "question": "What rider went under 22 laps with grid number 2?", "context": "CREATE TABLE table_name_11 (rider VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT country_region FROM table_name_76 WHERE languages = \"vietnamese\"", "question": "What country speaks Vietnamese?", "context": "CREATE TABLE table_name_76 (country_region VARCHAR, languages VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_44 WHERE team = \"250cc honda\" AND time = \"1:27.57.28\"", "question": "What ranking did Team 250cc Honda end up in when it finished a race with a time of 1:27.57.28?", "context": "CREATE TABLE table_name_44 (rank VARCHAR, team VARCHAR, time VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_57 WHERE grid = 8", "question": "Tell me the constructor for grid of 8", "context": "CREATE TABLE table_name_57 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_10 WHERE driver = \"heinz-harald frentzen\"", "question": "I want the total number of Grids for heinz-harald frentzen", "context": "CREATE TABLE table_name_10 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_97 WHERE home_team = \"north melbourne\"", "question": "What is the average crowd for the home team of North Melbourne?", "context": "CREATE TABLE table_name_97 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_77 WHERE date = \"12 march 2008\"", "question": "Who was the visiting team on 12 March 2008?", "context": "CREATE TABLE table_name_77 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_70 WHERE visitor = \"trail blazers\"", "question": "Who was the home team where Trail Blazers were the visitor?", "context": "CREATE TABLE table_name_70 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT home FROM table_name_7 WHERE visitor = \"bucks\" AND date = \"11 march 2008\"", "question": "In the game on 11 March 2008 with a visiting team of Bucks, who was the home team?", "context": "CREATE TABLE table_name_7 (home VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_18 WHERE driver = \"robin montgomerie-charrington\" AND grid < 15", "question": "How many laps for robin montgomerie-charrington, and a Grid smaller than 15?", "context": "CREATE TABLE table_name_18 (laps VARCHAR, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_9 WHERE silver = 0 AND bronze < 0", "question": "What is the mean number of totals with no silvers and a bronze number less than 0?", "context": "CREATE TABLE table_name_9 (total INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_76 WHERE rank < 4 AND bronze > 9", "question": "What is the least number of Silvers with a ranking of less than 4 where the bronze number was larger than 9?", "context": "CREATE TABLE table_name_76 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_60 WHERE silver < 0", "question": "Which mean rank had a silver number smaller than 0?", "context": "CREATE TABLE table_name_60 (rank INTEGER, silver INTEGER)"}, {"answer": "SELECT MIN(total) FROM table_name_99 WHERE rank = 4 AND silver > 3", "question": "What is the least total number with a rank of 4 and a total silver number bigger than 3?", "context": "CREATE TABLE table_name_99 (total INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT category FROM table_name_7 WHERE award = \"2nd melon music awards\"", "question": "Name the category for 2nd melon music awards", "context": "CREATE TABLE table_name_7 (category VARCHAR, award VARCHAR)"}, {"answer": "SELECT award FROM table_name_30 WHERE result = \"won\" AND category = \"hall of fame\"", "question": "Name the award won in the hall of fame", "context": "CREATE TABLE table_name_30 (award VARCHAR, result VARCHAR, category VARCHAR)"}, {"answer": "SELECT nomination FROM table_name_59 WHERE year = 2011 AND result = \"won\"", "question": "Name the nomination in 2011 that won", "context": "CREATE TABLE table_name_59 (nomination VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_98 WHERE year = 2010 AND award = \"bgm cyworld\"", "question": "Name the result in 2010 for bgm cyworld", "context": "CREATE TABLE table_name_98 (result VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT COUNT(car__number) FROM table_name_68 WHERE make = \"chevrolet\" AND laps = 363", "question": "What is the car # of the Chevrolet that complete 363 laps?", "context": "CREATE TABLE table_name_68 (car__number VARCHAR, make VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_88 WHERE winnings = \"$127,541\" AND car__number > 31", "question": "How many points did the driver who won $127,541 driving car #31 get?", "context": "CREATE TABLE table_name_88 (points INTEGER, winnings VARCHAR, car__number VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_80 WHERE year < 1999 AND role = \"kim da-rim\"", "question": "What is the english title of the film before 1999 with a role of kim da-rim?", "context": "CREATE TABLE table_name_80 (english_title VARCHAR, year VARCHAR, role VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_96 WHERE romanization = \"lee jae-su-eui nan\"", "question": "What English title for the Romanization of lee jae-su-eui nan?", "context": "CREATE TABLE table_name_96 (english_title VARCHAR, romanization VARCHAR)"}, {"answer": "SELECT romanization FROM table_name_81 WHERE english_title = \"my old sweetheart\"", "question": "What is the Romanization for my old sweetheart?", "context": "CREATE TABLE table_name_81 (romanization VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_56 WHERE role = \"chae soo-yeon\"", "question": "What is the English of chae soo-yeon?", "context": "CREATE TABLE table_name_56 (english_title VARCHAR, role VARCHAR)"}, {"answer": "SELECT MIN(Highest) AS position FROM table_name_22 WHERE album_title = \"10 years of hits\" AND sales > 870 OFFSET 000", "question": "What is the lowest high position for 10 years of hits, and over 870,000 sales?", "context": "CREATE TABLE table_name_22 (Highest INTEGER, album_title VARCHAR, sales VARCHAR)"}, {"answer": "SELECT AVG(Highest) AS position FROM table_name_69 WHERE album_title = \"unwritten\"", "question": "What is the average high position for the album unwritten?", "context": "CREATE TABLE table_name_69 (Highest INTEGER, album_title VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE race_title = \"grand prix de monaco\"", "question": "When did the Grand Prix de Monaco race?", "context": "CREATE TABLE table_name_13 (date VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_79 WHERE round = 16", "question": "What circuit had 16 rounds?", "context": "CREATE TABLE table_name_79 (circuit VARCHAR, round VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_name_82 WHERE round = 9", "question": "Which Grand Prix had 9 rounds?", "context": "CREATE TABLE table_name_82 (grand_prix VARCHAR, round VARCHAR)"}, {"answer": "SELECT base_fares FROM table_name_18 WHERE fare_categories = \"senior/disabled\"", "question": "What is the Base Fare in the senior/disabled category?", "context": "CREATE TABLE table_name_18 (base_fares VARCHAR, fare_categories VARCHAR)"}, {"answer": "SELECT 30 - day_pass FROM table_name_74 WHERE base_fares = \"$3\"", "question": "Which 30-day Pass has a Base Fare of $3?", "context": "CREATE TABLE table_name_74 (day_pass VARCHAR, base_fares VARCHAR)"}, {"answer": "SELECT length FROM table_name_29 WHERE year = \"2012-2013\"", "question": "What is the length for years 2012-2013?", "context": "CREATE TABLE table_name_29 (length VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine_type FROM table_name_77 WHERE length = \"ft (m)\" AND year = \"2003\" AND numbers = \"6600-6684 (84 buses)\"", "question": "If length is ft (m) with numbers of 6600-6684 (84 buses) for 2003, what is the engine type?", "context": "CREATE TABLE table_name_77 (engine_type VARCHAR, numbers VARCHAR, length VARCHAR, year VARCHAR)"}, {"answer": "SELECT length FROM table_name_38 WHERE numbers = \"2600-2825 (223 buses)\"", "question": "For numbers of 2600-2825 (223 buses), what is the length?", "context": "CREATE TABLE table_name_38 (length VARCHAR, numbers VARCHAR)"}, {"answer": "SELECT length FROM table_name_52 WHERE year = \"2003\" AND make_ & _model = \"nabi 35-lfw\"", "question": "What is the lenth of a 2003 Make & Model of nabi 35-lfw?", "context": "CREATE TABLE table_name_52 (length VARCHAR, year VARCHAR, make_ VARCHAR, _model VARCHAR)"}, {"answer": "SELECT length FROM table_name_92 WHERE engine_type = \"diesel\" AND numbers = \"tbd (13 buses)\"", "question": "What is the length for a diesel engine with numbers of tbd (13 buses)?", "context": "CREATE TABLE table_name_92 (length VARCHAR, engine_type VARCHAR, numbers VARCHAR)"}, {"answer": "SELECT year FROM table_name_79 WHERE make_ & _model = \"mci d4000n\"", "question": "What year has a make & model of mci d4000n?", "context": "CREATE TABLE table_name_79 (year VARCHAR, make_ VARCHAR, _model VARCHAR)"}, {"answer": "SELECT type FROM table_name_75 WHERE date = \"8 dec 16\" AND ship = \"duchess of cornwall\"", "question": "What type has a Date of 8 dec 16, and a Ship of duchess of cornwall?", "context": "CREATE TABLE table_name_75 (type VARCHAR, date VARCHAR, ship VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_62 WHERE ship = \"minteh\"", "question": "Which nationality has a Ship of minteh?", "context": "CREATE TABLE table_name_62 (nationality VARCHAR, ship VARCHAR)"}, {"answer": "SELECT SUM(tonnage_grt) FROM table_name_23 WHERE type = \"cargo ship\" AND nationality = \"norway\"", "question": "What is the total Tonnage GRT with a Type of cargo ship, and a Nationality of norway?", "context": "CREATE TABLE table_name_23 (tonnage_grt INTEGER, type VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE ship = \"hallbjorg\"", "question": "Which Date has a Ship of hallbjorg?", "context": "CREATE TABLE table_name_87 (date VARCHAR, ship VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_24 WHERE total = \"45\u201331\"", "question": "What is the score of set 3 when the total is 45\u201331?", "context": "CREATE TABLE table_name_24 (set_3 VARCHAR, total VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_61 WHERE set_3 = \"15\u20136\"", "question": "What is the score for set 2 when set 3 was 15\u20136?", "context": "CREATE TABLE table_name_61 (set_2 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT total FROM table_name_68 WHERE set_1 = \"15\u201311\"", "question": "What is the total when the score of set 1 was 15\u201311?", "context": "CREATE TABLE table_name_68 (total VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT total FROM table_name_5 WHERE set_1 = \"15\u201311\"", "question": "What is the total when the score of set 1 is 15\u201311?", "context": "CREATE TABLE table_name_5 (total VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE total = \"25\u201345\"", "question": "On what date was the total 25\u201345?", "context": "CREATE TABLE table_name_50 (date VARCHAR, total VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_59 WHERE away_team = \"st kilda\"", "question": "What was St Kilda's score as the Away team?", "context": "CREATE TABLE table_name_59 (away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_5 WHERE venue = \"vfl park\"", "question": "At the venue Vfl Park, what was the Home team score?", "context": "CREATE TABLE table_name_5 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(reg_gp) FROM table_name_66 WHERE player = \"daniel rahimi\" AND rd__number > 3", "question": "How many Reg GP does daniel rahimi have with a rd # greater than 3?", "context": "CREATE TABLE table_name_66 (reg_gp VARCHAR, player VARCHAR, rd__number VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_90 WHERE player = \"michael grabner\" AND reg_gp < 20", "question": "What is the lowest Pick # with michael grabner and less than 20 Reg GP?", "context": "CREATE TABLE table_name_90 (pick__number INTEGER, player VARCHAR, reg_gp VARCHAR)"}, {"answer": "SELECT class FROM table_name_31 WHERE peak = \"fountains fell south top\"", "question": "Which class has a peak named fountains fell south top?", "context": "CREATE TABLE table_name_31 (class VARCHAR, peak VARCHAR)"}, {"answer": "SELECT SUM(prom__m_) FROM table_name_72 WHERE peak = \"great knoutberry hill\"", "question": "What is the total of Prom in M for Peak great knoutberry hill?", "context": "CREATE TABLE table_name_72 (prom__m_ INTEGER, peak VARCHAR)"}, {"answer": "SELECT AVG(height__m_) FROM table_name_45 WHERE class = \"hewitt\" AND prom__m_ < 86 AND peak = \"gragareth\"", "question": "What is the average height for hewitt class, with prom less than 86, and a Peak of gragareth?", "context": "CREATE TABLE table_name_45 (height__m_ INTEGER, peak VARCHAR, class VARCHAR, prom__m_ VARCHAR)"}, {"answer": "SELECT movie FROM table_name_20 WHERE co_singers = \"selva nambi\"", "question": "In which movie is Selva Nambi a co-singer?", "context": "CREATE TABLE table_name_20 (movie VARCHAR, co_singers VARCHAR)"}, {"answer": "SELECT music_director FROM table_name_3 WHERE year = 1994", "question": "Who was the music director in 1994?", "context": "CREATE TABLE table_name_3 (music_director VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_45 WHERE nominee = \"denis lawson\"", "question": "What years was Denis Lawson nominated for an award?", "context": "CREATE TABLE table_name_45 (year VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE nominee = \"jason pennycooke\"", "question": "Did Jason Pennycooke win the award he was nominated for?", "context": "CREATE TABLE table_name_14 (result VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_60 WHERE nominee = \"best musical revival\"", "question": "How many years was Best Musical Revival nominated?", "context": "CREATE TABLE table_name_60 (year VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT award FROM table_name_95 WHERE category = \"best actor in a musical\" AND nominee = \"denis lawson\"", "question": "What award was Denis Lawson nominated for in the Best Actor in a Musical category?", "context": "CREATE TABLE table_name_95 (award VARCHAR, category VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_26 WHERE outcome = \"winner\" AND date = \"5 november 2011\"", "question": "Which opponent has an Outcome of winner, and a Date of 5 november 2011?", "context": "CREATE TABLE table_name_26 (opponent VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE score = \"4\u20136, 2\u20136\"", "question": "Which date has a Score of 4\u20136, 2\u20136?", "context": "CREATE TABLE table_name_92 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE opponent = \"juan m\u00f3naco\" AND score = \"6\u20132, 4\u20136, 7\u20136 (7\u20133)\"", "question": "Which date has a Opponent of juan m\u00f3naco, and a Score of 6\u20132, 4\u20136, 7\u20136 (7\u20133)?", "context": "CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_16 WHERE opponent = \"fernando verdasco\"", "question": "Which outcome has a Opponent of fernando verdasco?", "context": "CREATE TABLE table_name_16 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_41 WHERE opponent = \"fernando verdasco\"", "question": "Which surface has an Opponent of fernando verdasco?", "context": "CREATE TABLE table_name_41 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_40 WHERE date = \"5 november 2011\"", "question": "Which surface has a Date of 5 november 2011?", "context": "CREATE TABLE table_name_40 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_16 WHERE venue = \"mcg\"", "question": "When the Venue was mcg what was the sum of all Crowds for that venue?", "context": "CREATE TABLE table_name_16 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE away_team = \"essendon\"", "question": "If the Away team is essendon, what was the Date they played?", "context": "CREATE TABLE table_name_62 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE away_team = \"essendon\"", "question": "On what Date did the Away team essendon play?", "context": "CREATE TABLE table_name_11 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE home_team = \"north melbourne\"", "question": "When the Home team was north melbourne what was the Date of the game?", "context": "CREATE TABLE table_name_49 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_72 WHERE date = \"september 1\"", "question": "What was the record as of September 1?", "context": "CREATE TABLE table_name_72 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_48 WHERE date = \"september 1\"", "question": "What was the losing score on September 1?", "context": "CREATE TABLE table_name_48 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT 1988 FROM table_name_88 WHERE 1987 = \"1r\"", "question": "What is the 1988 value when the 1987 value was 1r?", "context": "CREATE TABLE table_name_88 (Id VARCHAR)"}, {"answer": "SELECT 1981 FROM table_name_97 WHERE tournament = \"wimbledon\"", "question": "What is the 1981 value at the Tournament of Wimbledon?", "context": "CREATE TABLE table_name_97 (tournament VARCHAR)"}, {"answer": "SELECT name FROM table_name_86 WHERE opened = \"2004\" AND park = \"bobbejaanland\"", "question": "What is the name of the rollercoaster that opened in 2004 in bobbejaanland?", "context": "CREATE TABLE table_name_86 (name VARCHAR, opened VARCHAR, park VARCHAR)"}, {"answer": "SELECT status FROM table_name_89 WHERE opened = \"2008\" AND model = \"junior coaster\"", "question": "What is the status of the junior coaster model that opened in 2008?", "context": "CREATE TABLE table_name_89 (status VARCHAR, opened VARCHAR, model VARCHAR)"}, {"answer": "SELECT model FROM table_name_16 WHERE status = \"operating\" AND name = \"thor's hammer\"", "question": "What is the model for Thor's Hammer which is listed as operating?", "context": "CREATE TABLE table_name_16 (model VARCHAR, status VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_80 WHERE model = \"euro-fighter\" AND opened = \"2011\"", "question": "What is the name of the coaster that opened in 2011 and is a euro-fighter model?", "context": "CREATE TABLE table_name_80 (name VARCHAR, model VARCHAR, opened VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_9 WHERE race_name = \"iv j.c.c. jersey road race\"", "question": "Which driver won the iv j.c.c. jersey road race?", "context": "CREATE TABLE table_name_9 (winning_driver VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_73 WHERE points = 34 AND losses = 3", "question": "What's the total number of games that had more than 34 points and exactly 3 losses?", "context": "CREATE TABLE table_name_73 (games VARCHAR, points VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_14 WHERE points < 19 AND games > 36", "question": "What's the total number of losses with less than 19 points and more than 36 games?", "context": "CREATE TABLE table_name_14 (losses VARCHAR, points VARCHAR, games VARCHAR)"}, {"answer": "SELECT season FROM table_name_78 WHERE points < 26 AND games > 18 AND losses = 13", "question": "Which season has less than 26 points, more than 18 games, and exactly 13 losses?", "context": "CREATE TABLE table_name_78 (season VARCHAR, losses VARCHAR, points VARCHAR, games VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_71 WHERE away_team = \"south melbourne\"", "question": "What is the highest crowd number of the game where the away team was south melbourne?", "context": "CREATE TABLE table_name_71 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_73 WHERE away_team = \"north melbourne\"", "question": "What is the home team score that played the away team of north melbourne?", "context": "CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_47 WHERE venue = \"princes park\"", "question": "What is the away team score of the game that was played at princes park?", "context": "CREATE TABLE table_name_47 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_13 WHERE home_team = \"carlton\"", "question": "If the Home team is carlton, what's the lowest Crowd found?", "context": "CREATE TABLE table_name_13 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT block_a FROM table_name_14 WHERE el_nosawa_mendoza = \"kondo (7:08)\"", "question": "What is the Block A value for an El NOSAWA Mendoza value of kondo (7:08)?", "context": "CREATE TABLE table_name_14 (block_a VARCHAR, el_nosawa_mendoza VARCHAR)"}, {"answer": "SELECT pepe_michinoku FROM table_name_28 WHERE ryuji_hijikata = \"sabin (12:33)\"", "question": "What is the PEPE Michinoku value for a Ryuji Hijikata value of sabin (12:33)?", "context": "CREATE TABLE table_name_28 (pepe_michinoku VARCHAR, ryuji_hijikata VARCHAR)"}, {"answer": "SELECT shuji_kondo FROM table_name_2 WHERE pepe_michinoku = \"sabin (14:43)\"", "question": "What is the Shuji Kondo value related to a PEPE Michinoku value of sabin (14:43)?", "context": "CREATE TABLE table_name_2 (shuji_kondo VARCHAR, pepe_michinoku VARCHAR)"}, {"answer": "SELECT declination___j2000__ FROM table_name_80 WHERE ngc_number > 5750", "question": "Tell me the declination with NGC number larger than 5750", "context": "CREATE TABLE table_name_80 (declination___j2000__ VARCHAR, ngc_number INTEGER)"}, {"answer": "SELECT final_position___round FROM table_name_22 WHERE competition = \"fa community shield\"", "question": "Tell me the final position for fa community shield", "context": "CREATE TABLE table_name_22 (final_position___round VARCHAR, competition VARCHAR)"}, {"answer": "SELECT first_match FROM table_name_84 WHERE last_match = \"11 may 2008\"", "question": "Name the first match for 11 may 2008", "context": "CREATE TABLE table_name_84 (first_match VARCHAR, last_match VARCHAR)"}, {"answer": "SELECT COUNT(lifetime_india_distributor_share) FROM table_name_39 WHERE year < 2009", "question": "What is the total number of Lifetime India Distributor share earlier than 2009?", "context": "CREATE TABLE table_name_39 (lifetime_india_distributor_share VARCHAR, year INTEGER)"}, {"answer": "SELECT date FROM table_name_66 WHERE home_team = \"south melbourne\"", "question": "When did South Melbourne play as the home team?", "context": "CREATE TABLE table_name_66 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_36 WHERE away_team = \"st kilda\"", "question": "What was the largest amount of spectators when St Kilda was the away team?", "context": "CREATE TABLE table_name_36 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_83 WHERE away_team = \"richmond\"", "question": "What was Richmond's score when it was the away team?", "context": "CREATE TABLE table_name_83 (away_team VARCHAR)"}, {"answer": "SELECT declination___j2000__ FROM table_name_77 WHERE constellation = \"hydra\" AND right_ascension___j2000__ = \"10h46m44.9s\"", "question": "what is the declination (j2000) that has a constellation of hydra and a right ascension (j2000) of 10h46m44.9s?", "context": "CREATE TABLE table_name_77 (declination___j2000__ VARCHAR, constellation VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT MAX(ngc_number) FROM table_name_12 WHERE object_type = \"lenticular galaxy\" AND constellation = \"hydra\"", "question": "What is the ngc number when the object type is lenticular galaxy and the constellation is hydra?", "context": "CREATE TABLE table_name_12 (ngc_number INTEGER, object_type VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_98 WHERE ngc_number = 3314", "question": "what is the object type when the ngc number is 3314?", "context": "CREATE TABLE table_name_98 (object_type VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT AVG(ngc_number) FROM table_name_70 WHERE constellation = \"leo\" AND declination___j2000__ = \"\u00b042\u203213\u2033\"", "question": "what is the ngc number when the constellation is leo and the declination (j2000) is \u00b042\u203213\u2033?", "context": "CREATE TABLE table_name_70 (ngc_number INTEGER, constellation VARCHAR, declination___j2000__ VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_58 WHERE ngc_number < 3384 AND constellation = \"hydra\" AND object_type = \"spiral galaxy\"", "question": "what is the right ascension (j2000) with the ngc number less than 3384, the constellation is hydra and the object type is spiral galaxy?", "context": "CREATE TABLE table_name_58 (right_ascension___j2000__ VARCHAR, object_type VARCHAR, ngc_number VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT competition FROM table_name_95 WHERE date = \"october 7, 2011\"", "question": "What competition was played on October 7, 2011?", "context": "CREATE TABLE table_name_95 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE year = 1992 AND result = \"loss\"", "question": "What's the score for 1992, with the result of a loss?", "context": "CREATE TABLE table_name_65 (score VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT national_league FROM table_name_80 WHERE club = \"limoges csp\" AND national_cup = \"french basketball cup\"", "question": "What national league has limoges csp, and french basketball cup?", "context": "CREATE TABLE table_name_80 (national_league VARCHAR, club VARCHAR, national_cup VARCHAR)"}, {"answer": "SELECT club FROM table_name_97 WHERE national_cup = \"turkish basketball cup\" AND european_cup = \"fiba eurochallenge (3rd tier)\"", "question": "What is the club that has the turkish basketball cup and fiba eurochallenge (3rd tier)?", "context": "CREATE TABLE table_name_97 (club VARCHAR, national_cup VARCHAR, european_cup VARCHAR)"}, {"answer": "SELECT national_cup FROM table_name_91 WHERE club = \"fc barcelona\"", "question": "What national cup has fc barcelona?", "context": "CREATE TABLE table_name_91 (national_cup VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(ddr3_speed) FROM table_name_15 WHERE model = \"e-350\"", "question": "Name the average DDR3 speed for model e-350", "context": "CREATE TABLE table_name_15 (ddr3_speed INTEGER, model VARCHAR)"}, {"answer": "SELECT loss FROM table_name_10 WHERE date = \"august 21\"", "question": "who lost on august 21?", "context": "CREATE TABLE table_name_10 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_21 WHERE opponent = \"expos\" AND date = \"august 10\"", "question": "On August 10, what was the record against the Expos?", "context": "CREATE TABLE table_name_21 (record VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_91 WHERE driver = \"lorenzo bandini\" AND grid < 3", "question": "What is the average laps for lorenzo bandini with a grid under 3?", "context": "CREATE TABLE table_name_91 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_28 WHERE laps < 53 AND grid < 14 AND time_retired = \"differential\"", "question": "What driver has under 53 laps, a grid smaller than 14, and a time/retired of differential?", "context": "CREATE TABLE table_name_28 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT music FROM table_name_63 WHERE uncut_run_time = \"95 minutes\"", "question": "What music is in the film with an Uncut run time of 95 minutes?", "context": "CREATE TABLE table_name_63 (music VARCHAR, uncut_run_time VARCHAR)"}, {"answer": "SELECT country FROM table_name_10 WHERE music = \"nino oliviero\"", "question": "What country is the film that has music of nino oliviero?", "context": "CREATE TABLE table_name_10 (country VARCHAR, music VARCHAR)"}, {"answer": "SELECT music FROM table_name_53 WHERE year < 1963", "question": "What music is in the film before 1963?", "context": "CREATE TABLE table_name_53 (music VARCHAR, year INTEGER)"}, {"answer": "SELECT music FROM table_name_23 WHERE year = 1962", "question": "What music is in the film before 1962?", "context": "CREATE TABLE table_name_23 (music VARCHAR, year VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_75 WHERE away_team = \"north melbourne\"", "question": "Which team played as the home team when north melbourne played as away?", "context": "CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_37 WHERE pick__number = 53", "question": "what is the position of pick #53?", "context": "CREATE TABLE table_name_37 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT position FROM table_name_54 WHERE player = \"andrew paopao\"", "question": "what is the position for andrew paopao?", "context": "CREATE TABLE table_name_54 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT venue FROM table_name_11 WHERE home_team = \"south melbourne\"", "question": "In which venue is South Melbourne the home team?", "context": "CREATE TABLE table_name_11 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_80 WHERE home_team = \"south melbourne\"", "question": "When South Melbourne was the home team, who was the away team?", "context": "CREATE TABLE table_name_80 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_16 WHERE home_team = \"hawthorn\"", "question": "What venue is Hawthorn the home team at?", "context": "CREATE TABLE table_name_16 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_97 WHERE city_area = \"chester\"", "question": "What is the capacity for the arena in Chester?", "context": "CREATE TABLE table_name_97 (capacity VARCHAR, city_area VARCHAR)"}, {"answer": "SELECT arena FROM table_name_8 WHERE capacity = \"1,100\"", "question": "Which arena has a capactiy of 1,100?", "context": "CREATE TABLE table_name_8 (arena VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT last_season FROM table_name_90 WHERE team = \"scottish rocks\"", "question": "What is the last season that the Scottish Rocks played?", "context": "CREATE TABLE table_name_90 (last_season VARCHAR, team VARCHAR)"}, {"answer": "SELECT arena FROM table_name_32 WHERE capacity = \"800\" AND team = \"milton keynes lions\"", "question": "Which arena has the Milton Keynes Lions and a capacity of 800?", "context": "CREATE TABLE table_name_32 (arena VARCHAR, capacity VARCHAR, team VARCHAR)"}, {"answer": "SELECT last_season FROM table_name_65 WHERE team = \"worcester wolves\"", "question": "What is the last season the Worcester Wolves played?", "context": "CREATE TABLE table_name_65 (last_season VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_17 WHERE city_area = \"birmingham & telford\"", "question": "Which team is from Birmingham & Telford?", "context": "CREATE TABLE table_name_17 (team VARCHAR, city_area VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_5 WHERE rank < 3 AND events > 10", "question": "Who has the least wins when ranked above 3 with over 10 events?", "context": "CREATE TABLE table_name_5 (wins INTEGER, rank VARCHAR, events VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_62 WHERE events = 8 AND player = \"billy casper\" AND earnings___$__ < 71 OFFSET 979", "question": "How many wins for billy casper over 8 events and uner $71,979 in earnings?", "context": "CREATE TABLE table_name_62 (wins INTEGER, earnings___$__ VARCHAR, events VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_11 WHERE earnings___$__ < 71 OFFSET 979", "question": "What is the lowest rank for a player earning $71,979?", "context": "CREATE TABLE table_name_11 (rank INTEGER, earnings___$__ INTEGER)"}, {"answer": "SELECT gdp___bn__ FROM table_name_67 WHERE capital = \"ioannina\"", "question": "What was the Gdp (bn) for the region that has ioannina as its Capital?", "context": "CREATE TABLE table_name_67 (gdp___bn__ VARCHAR, capital VARCHAR)"}, {"answer": "SELECT region FROM table_name_65 WHERE area__km\u00b2_ = \"9,451\"", "question": "Which Region has an Area of 9,451km\u00b2?", "context": "CREATE TABLE table_name_65 (region VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT capital FROM table_name_73 WHERE population = \"308,610\"", "question": "Which capital has a population of 308,610?", "context": "CREATE TABLE table_name_73 (capital VARCHAR, population VARCHAR)"}, {"answer": "SELECT region FROM table_name_70 WHERE area__km\u00b2_ = \"14,037\"", "question": "Which Region has an area of 14,037km\u00b2?", "context": "CREATE TABLE table_name_70 (region VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT gdp___bn__ FROM table_name_74 WHERE area__sq_mi_ = \"7,263\"", "question": "What is the GDP for the region with an area of 7,263 sq. mi.?", "context": "CREATE TABLE table_name_74 (gdp___bn__ VARCHAR, area__sq_mi_ VARCHAR)"}, {"answer": "SELECT population FROM table_name_43 WHERE area__sq_mi_ = \"6,004\"", "question": "What is the population for the region with an area of 6,004 sq. Mi.?", "context": "CREATE TABLE table_name_43 (population VARCHAR, area__sq_mi_ VARCHAR)"}, {"answer": "SELECT MIN(episode__number) FROM table_name_42 WHERE airdate = \"october 31, 2001\"", "question": "What is the lowest episode # with an air date of October 31, 2001?", "context": "CREATE TABLE table_name_42 (episode__number INTEGER, airdate VARCHAR)"}, {"answer": "SELECT AVG(episode__number) FROM table_name_65 WHERE location = \"tanzania\" AND _number_in_season > 5", "question": "What is the average episode # located in Tanzania and whose # in season is larger than 5?", "context": "CREATE TABLE table_name_65 (episode__number INTEGER, location VARCHAR, _number_in_season VARCHAR)"}, {"answer": "SELECT AVG(episode__number) FROM table_name_75 WHERE episode_name = \"the origin of donnie (part 1)\"", "question": "What is the average episode # with a name of the origin of Donnie (part 1)?", "context": "CREATE TABLE table_name_75 (episode__number INTEGER, episode_name VARCHAR)"}, {"answer": "SELECT airdate FROM table_name_50 WHERE _number_in_season = 5", "question": "Which air date has 5 for # in season?", "context": "CREATE TABLE table_name_50 (airdate VARCHAR, _number_in_season VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE home_team = \"melbourne\"", "question": "What venue is home for the Melbourne team?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT license FROM table_name_83 WHERE system = \"amiga\" AND name = \"pocketuae\"", "question": "Which License has a System of amiga, and a Name of pocketuae?", "context": "CREATE TABLE table_name_83 (license VARCHAR, system VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_46 WHERE license = \"gpl\" AND actual_version = \"0.8.29wip4\"", "question": "What name has a License of gpl, and an Actual version of 0.8.29wip4?", "context": "CREATE TABLE table_name_46 (name VARCHAR, license VARCHAR, actual_version VARCHAR)"}, {"answer": "SELECT platform FROM table_name_38 WHERE actual_version = \"0.147\"", "question": "Which platform has an Actual version of 0.147?", "context": "CREATE TABLE table_name_38 (platform VARCHAR, actual_version VARCHAR)"}, {"answer": "SELECT name FROM table_name_47 WHERE license = \"gpl\" AND platform = \"windows\"", "question": "Which name has a License of gpl, and a Platform of windows?", "context": "CREATE TABLE table_name_47 (name VARCHAR, license VARCHAR, platform VARCHAR)"}, {"answer": "SELECT system FROM table_name_80 WHERE name = \"mess\"", "question": "Which system is named mess?", "context": "CREATE TABLE table_name_80 (system VARCHAR, name VARCHAR)"}, {"answer": "SELECT platform FROM table_name_96 WHERE actual_version = \"0.8.29\"", "question": "Which Platform has an Actual version of 0.8.29?", "context": "CREATE TABLE table_name_96 (platform VARCHAR, actual_version VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_46 WHERE category = \"best supporting actress\" AND award = \"asian film awards\"", "question": "What's the earliest year that had a category of best supporting actress at the asian film awards?", "context": "CREATE TABLE table_name_46 (year INTEGER, category VARCHAR, award VARCHAR)"}, {"answer": "SELECT award FROM table_name_22 WHERE category = \"best supporting actress\"", "question": "Which award show had the category of best supporting actress?", "context": "CREATE TABLE table_name_22 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT result FROM table_name_61 WHERE nominated_work = \"white valentine\"", "question": "Did the nominated work of white valentine win an award?", "context": "CREATE TABLE table_name_61 (result VARCHAR, nominated_work VARCHAR)"}, {"answer": "SELECT category FROM table_name_9 WHERE year = 2013 AND nominated_work = \"the berlin file\"", "question": "Which category was the berlin file up to win in 2013?", "context": "CREATE TABLE table_name_9 (category VARCHAR, year VARCHAR, nominated_work VARCHAR)"}, {"answer": "SELECT final_position___round FROM table_name_88 WHERE competition = \"uefa cup\"", "question": "What is the final position/round of the UEFA cup?", "context": "CREATE TABLE table_name_88 (final_position___round VARCHAR, competition VARCHAR)"}, {"answer": "SELECT last_match FROM table_name_60 WHERE final_position___round = \"group stage\"", "question": "When the final position/round is group stage, when is the last match?", "context": "CREATE TABLE table_name_60 (last_match VARCHAR, final_position___round VARCHAR)"}, {"answer": "SELECT last_year FROM table_name_65 WHERE first_year = \"1937\" AND publisher = \"dc comics\"", "question": "When did the DC Comics title that debuted in 1937 end?", "context": "CREATE TABLE table_name_65 (last_year VARCHAR, first_year VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT publisher FROM table_name_13 WHERE title = \"weird war tales\"", "question": "Who published Weird War Tales?", "context": "CREATE TABLE table_name_13 (publisher VARCHAR, title VARCHAR)"}, {"answer": "SELECT last_year FROM table_name_75 WHERE first_year = \"1982\"", "question": "When did the comic which came out in 1982 end?", "context": "CREATE TABLE table_name_75 (last_year VARCHAR, first_year VARCHAR)"}, {"answer": "SELECT title FROM table_name_61 WHERE first_year = \"1950\" AND publisher = \"ec comics\" AND last_year = \"1953\"", "question": "Which EC Comics title ran from 1950 to 1953?", "context": "CREATE TABLE table_name_61 (title VARCHAR, last_year VARCHAR, first_year VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT first_year FROM table_name_41 WHERE title = \"popgun\"", "question": "What is the first year for Popgun?", "context": "CREATE TABLE table_name_41 (first_year VARCHAR, title VARCHAR)"}, {"answer": "SELECT region FROM table_name_91 WHERE date = \"november 10, 2007\" AND format = \"cd\"", "question": "What's the region for an item on November 10, 2007 that's a cd?", "context": "CREATE TABLE table_name_91 (region VARCHAR, date VARCHAR, format VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_97 WHERE label = \"columbia\" AND region = \"united states\" AND format = \"cd/dvd\"", "question": "What's the catalog number for a record from columbia formatted in a cd/dvd that's from the United States region?", "context": "CREATE TABLE table_name_97 (catalog VARCHAR, format VARCHAR, label VARCHAR, region VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_1 WHERE label = \"columbia\" AND date = \"december 11, 2007\" AND region = \"canada\"", "question": "What's the catalog number for a December 11, 2007 record from columbia formatted in a that's from Canada?", "context": "CREATE TABLE table_name_1 (catalog VARCHAR, region VARCHAR, label VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_84 WHERE venue = \"princes park\"", "question": "What is the average crowd size at Princes Park?", "context": "CREATE TABLE table_name_84 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_42 WHERE free_practice_driver_s_ = \"n/a\" AND chassis = \"005\" AND driver = \"takuma sato\"", "question": "who is the constructor when the free practice driver(s) is n/a, the chassis is 005 and the driver is takuma sato?", "context": "CREATE TABLE table_name_42 (constructor VARCHAR, driver VARCHAR, free_practice_driver_s_ VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_57 WHERE entrant = \"scuderia ferrari marlboro\"", "question": "what is the rounds when the entrant is scuderia ferrari marlboro?", "context": "CREATE TABLE table_name_57 (rounds VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_3 WHERE entrant = \"mild seven renault f1 team\" AND driver = \"jarno trulli\"", "question": "what is the chassis when the entrant is mild seven renault f1 team and the driver is jarno trulli?", "context": "CREATE TABLE table_name_3 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine_\u2020 FROM table_name_34 WHERE tyre = \"m\" AND driver = \"fernando alonso\"", "question": "what is the engine when the tyre is m and the driver is fernando alonso?", "context": "CREATE TABLE table_name_34 (engine_\u2020 VARCHAR, tyre VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_41 WHERE driver = \"juan pablo montoya\"", "question": "who is the constructor when the driver is juan pablo montoya?", "context": "CREATE TABLE table_name_41 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_39 WHERE record = \"86-56\"", "question": "How many people attended the game with a record of 86-56", "context": "CREATE TABLE table_name_39 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE record = \"90-60\"", "question": "Name the date that had a record of 90-60", "context": "CREATE TABLE table_name_31 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(sinclair_total) FROM table_name_5 WHERE rank = 3 AND world_record__kg_ < 217", "question": "What was the highest Sinclair Total that had a rank of 3, but a World Record smaller than 217?", "context": "CREATE TABLE table_name_5 (sinclair_total INTEGER, rank VARCHAR, world_record__kg_ VARCHAR)"}, {"answer": "SELECT venue FROM table_name_95 WHERE away_team = \"collingwood\"", "question": "What is the name of the venue that they away team Collingwood played at?", "context": "CREATE TABLE table_name_95 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE away_team = \"carlton\"", "question": "What date did Carlton play as the away team?", "context": "CREATE TABLE table_name_54 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_76 WHERE venue = \"windy hill\"", "question": "What was the home team's score at Windy Hill?", "context": "CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_48 WHERE laps < 17 AND constructor = \"sauber - petronas\"", "question": "What is the lowest grid value with fewer than 17 laps and constructor Sauber - Petronas?", "context": "CREATE TABLE table_name_48 (grid INTEGER, laps VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_79 WHERE laps > 51 AND driver = \"cristiano da matta\"", "question": "Which Time/Retired entry has greater than 51 laps and driver Cristiano da Matta?", "context": "CREATE TABLE table_name_79 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(ties) FROM table_name_57 WHERE team = \"montreal victorias\" AND goals_against < 24", "question": "How many ties did the Montreal Victorias have with a GA of less than 24?", "context": "CREATE TABLE table_name_57 (ties INTEGER, team VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_28 WHERE record = \"3:40.8\"", "question": "How many years was the record 3:40.8?", "context": "CREATE TABLE table_name_28 (year VARCHAR, record VARCHAR)"}, {"answer": "SELECT event FROM table_name_79 WHERE year < 1964 AND athlete = \"l\u00e1szl\u00f3 t\u00e1bori gunnar nielsen\"", "question": "What event is before 1964 and has an athlete of l\u00e1szl\u00f3 t\u00e1bori gunnar nielsen?", "context": "CREATE TABLE table_name_79 (event VARCHAR, year VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_27 WHERE home = \"kings\"", "question": "Who is the leading scorer of the game where the Kings is the home team?", "context": "CREATE TABLE table_name_27 (leading_scorer VARCHAR, home VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_19 WHERE date = \"march 2, 2008\"", "question": "Who is the visitor team of the game on March 2, 2008?", "context": "CREATE TABLE table_name_19 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_67 WHERE home = \"lakers\"", "question": "What is the attendance total of the game with the Lakers as the home team?", "context": "CREATE TABLE table_name_67 (attendance VARCHAR, home VARCHAR)"}, {"answer": "SELECT week FROM table_name_89 WHERE attendance = \"39,056\"", "question": "Which week had 39,056 people in attendance?", "context": "CREATE TABLE table_name_89 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT kickoff_[a_] FROM table_name_25 WHERE week = \"3\"", "question": "What is the kickoff time for week 3?", "context": "CREATE TABLE table_name_25 (kickoff_ VARCHAR, a_ VARCHAR, week VARCHAR)"}, {"answer": "SELECT kickoff_[a_] FROM table_name_12 WHERE game_site = \"hubert h. humphrey metrodome\"", "question": "What is the kickoff time for the Hubert H. Humphrey Metrodome?", "context": "CREATE TABLE table_name_12 (kickoff_ VARCHAR, a_ VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_10 WHERE date = \"september 13, 1992\"", "question": "Who was the opponent on September 13, 1992?", "context": "CREATE TABLE table_name_10 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_53 WHERE date = \"november 1, 1992\"", "question": "What is the result on November 1, 1992?", "context": "CREATE TABLE table_name_53 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_84 WHERE home_team = \"melbourne\"", "question": "What was the away score when the home team was Melbourne?", "context": "CREATE TABLE table_name_84 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_72 WHERE home_team = \"collingwood\"", "question": "Who played Collingwood?", "context": "CREATE TABLE table_name_72 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_78 WHERE home_team = \"essendon\"", "question": "How big was the crowd for Essendon?", "context": "CREATE TABLE table_name_78 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_5 WHERE away_team = \"north melbourne\"", "question": "Which team played against North Melbourne as the home team?", "context": "CREATE TABLE table_name_5 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_40 WHERE venue = \"punt road oval\"", "question": "Which home team plays at Punt Road Oval?", "context": "CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_75 WHERE venue = \"punt road oval\"", "question": "Which team plays at Punt Road Oval?", "context": "CREATE TABLE table_name_75 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_58 WHERE venue = \"corio oval\"", "question": "What did the away team score at corio oval?", "context": "CREATE TABLE table_name_58 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_54 WHERE attendance = \"65,537\"", "question": "Who did the cowboys play when 65,537 attended?", "context": "CREATE TABLE table_name_54 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_13 WHERE opponents = \"antonia xenia tout nata\u0161a zori\u0107\"", "question": "What is the name of the tournament when antonia xenia tout nata\u0161a zori\u0107 was the opponenet?", "context": "CREATE TABLE table_name_13 (tournament VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE opponents = \"georgie stoop emily webley-smith\"", "question": "What date was georgie stoop emily webley-smith the opponent?", "context": "CREATE TABLE table_name_33 (date VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT surface FROM table_name_44 WHERE opponents = \"iryna bremond valeria savinykh\"", "question": "What is the surface of the match when the opponent was iryna bremond valeria savinykh?", "context": "CREATE TABLE table_name_44 (surface VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_19 WHERE tournament = \"sutton\"", "question": "What is the name of the opponent for the Sutton tournament?", "context": "CREATE TABLE table_name_19 (opponents VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_15 WHERE partner = \"anastasia pivovarova\"", "question": "What is the name of the opponent when anastasia pivovarova was the partner?", "context": "CREATE TABLE table_name_15 (opponents VARCHAR, partner VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_53 WHERE home_team = \"south melbourne\"", "question": "What is south melbourne's home side score?", "context": "CREATE TABLE table_name_53 (home_team VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_98 WHERE entrant = \"david brown corporation\" AND driver = \"roy salvadori\"", "question": "What rounds did Roy Salvadori drive for David Brown Corporation?", "context": "CREATE TABLE table_name_98 (rounds VARCHAR, entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT result FROM table_name_17 WHERE year > 2007", "question": "What are the results for years after 2007?", "context": "CREATE TABLE table_name_17 (result VARCHAR, year INTEGER)"}, {"answer": "SELECT character FROM table_name_1 WHERE result = \"won\" AND year > 2003", "question": "Which characters after 2003 won?", "context": "CREATE TABLE table_name_1 (character VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT category FROM table_name_54 WHERE for_the_show = \"kasautii zindagii kay\" AND year = 2006", "question": "For 2006 what category has the Show of kasautii zindagii kay?", "context": "CREATE TABLE table_name_54 (category VARCHAR, for_the_show VARCHAR, year VARCHAR)"}, {"answer": "SELECT character FROM table_name_43 WHERE year = 2005", "question": "What is the character for 2005?", "context": "CREATE TABLE table_name_43 (character VARCHAR, year VARCHAR)"}, {"answer": "SELECT category FROM table_name_21 WHERE year < 2012", "question": "What is a category before 2012?", "context": "CREATE TABLE table_name_21 (category VARCHAR, year INTEGER)"}, {"answer": "SELECT natural_change FROM table_name_74 WHERE crude_death_rate__per_1000_ = 8.7 AND live_births < 472", "question": "What is natural change with a crude death rate of 8.7 and less than 472 live births?", "context": "CREATE TABLE table_name_74 (natural_change VARCHAR, crude_death_rate__per_1000_ VARCHAR, live_births VARCHAR)"}, {"answer": "SELECT owner_s_ FROM table_name_34 WHERE description = \"operational\"", "question": "What owner or owners have an operational description?", "context": "CREATE TABLE table_name_34 (owner_s_ VARCHAR, description VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE livery = \"operational\"", "question": "What is the date for the Operational Livery?", "context": "CREATE TABLE table_name_51 (date VARCHAR, livery VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE description = \"undergoing overhaul, restoration or repairs\"", "question": "What is the date listed for the item that has undergoing overhaul, restoration or repairs listed under description?", "context": "CREATE TABLE table_name_62 (date VARCHAR, description VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_43 WHERE venue = \"mcg\"", "question": "Who is the home team that played at MCG?", "context": "CREATE TABLE table_name_43 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_32 WHERE venue = \"arden street oval\"", "question": "What is the size of the smallest crowd that watched a game at Arden Street Oval?", "context": "CREATE TABLE table_name_32 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_21 WHERE home_team = \"hawthorn\"", "question": "What is the score of the away team who played home team Hawthorn?", "context": "CREATE TABLE table_name_21 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_67 WHERE home_team = \"footscray\"", "question": "Who is the away team that played home team Footscray?", "context": "CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_44 WHERE away_team = \"fitzroy\"", "question": "How many people attended the game where Fitzroy was the away team?", "context": "CREATE TABLE table_name_44 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT ngc_number FROM table_name_16 WHERE constellation = \"leo\" AND object_type = \"irregular galaxy\"", "question": "I want the NGC number for leo of irregular galaxy", "context": "CREATE TABLE table_name_16 (ngc_number VARCHAR, constellation VARCHAR, object_type VARCHAR)"}, {"answer": "SELECT MAX(ngc_number) FROM table_name_57 WHERE right_ascension___j2000__ = \"09h40m28.5s\"", "question": "Tell me the highest NGC number for right ascension of 09h40m28.5s", "context": "CREATE TABLE table_name_57 (ngc_number INTEGER, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_37 WHERE object_type = \"open cluster\"", "question": "What is the constellation for open cluster?", "context": "CREATE TABLE table_name_37 (constellation VARCHAR, object_type VARCHAR)"}, {"answer": "SELECT event FROM table_name_75 WHERE athlete = \"tatyana lebedeva\"", "question": "Which event was Tatyana Lebedeva in?", "context": "CREATE TABLE table_name_75 (event VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT event FROM table_name_25 WHERE athlete = \"fatima whitbread trine hattestad\"", "question": "What event was Fatima Whitbread Trine Hattestad in?", "context": "CREATE TABLE table_name_25 (event VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT record FROM table_name_80 WHERE athlete = \"milcah chemos\"", "question": "What is Milcah Chemos' record?", "context": "CREATE TABLE table_name_80 (record VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT record FROM table_name_23 WHERE date = \"4 september 2009\" AND event = \"400 m\"", "question": "What is the record for the 400 m event on 4 september 2009?", "context": "CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_14 WHERE date = \"26 august 2005\"", "question": "What event was on 26 August 2005?", "context": "CREATE TABLE table_name_14 (event VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE nationality = \"bulgaria\" AND event = \"discus throw\"", "question": "What was the date of the discus throw for Bulgaria?", "context": "CREATE TABLE table_name_40 (date VARCHAR, nationality VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE ground = \"a\" AND opponent = \"cartagena\"", "question": "What is the date ground A and Cartagena as an opponent?", "context": "CREATE TABLE table_name_50 (date VARCHAR, ground VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT ground FROM table_name_16 WHERE match < 2", "question": "What ground has a match smaller than 2?", "context": "CREATE TABLE table_name_16 (ground VARCHAR, match INTEGER)"}, {"answer": "SELECT score1 FROM table_name_53 WHERE competition_or_tour = \"friendly\" AND match = 7", "question": "What is the score of the competition of friendly, at match 7?", "context": "CREATE TABLE table_name_53 (score1 VARCHAR, competition_or_tour VARCHAR, match VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_29 WHERE nationality = \"canada\" AND draft < 1985 AND player = \"brian bradley\"", "question": "What was the lowest Pick number of Player Brian Bradley from Canada, in a Draft year before 1985?", "context": "CREATE TABLE table_name_29 (pick INTEGER, player VARCHAR, nationality VARCHAR, draft VARCHAR)"}, {"answer": "SELECT round FROM table_name_4 WHERE pick > 231 AND draft > 1988 AND player = \"adam cracknell\"", "question": "Which Round was Player Adam Cracknell Picked after 231 in a Draft year after 1988?", "context": "CREATE TABLE table_name_4 (round VARCHAR, player VARCHAR, pick VARCHAR, draft VARCHAR)"}, {"answer": "SELECT COUNT(yards) FROM table_name_99 WHERE avg = 9 AND rec = 1", "question": "Name the total number of yards for avg of 9 and rec of 1", "context": "CREATE TABLE table_name_99 (yards VARCHAR, avg VARCHAR, rec VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_69 WHERE points_for < 79 AND games_played = 10 AND point_differential < 34", "question": "What is the highest number of losses that the team incurred while scoring less than 79 points in 10 games with a point differential less than 34?", "context": "CREATE TABLE table_name_69 (losses INTEGER, point_differential VARCHAR, points_for VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT player FROM table_name_85 WHERE date_of_birth__age_when_delisted_ = \"13 february 1987 (aged 24)\"", "question": "Which Player has a Date of Birth (Age When Delisted) of 13 February 1987 (aged 24)?", "context": "CREATE TABLE table_name_85 (player VARCHAR, date_of_birth__age_when_delisted_ VARCHAR)"}, {"answer": "SELECT senior_list FROM table_name_84 WHERE date_of_birth__age_when_delisted_ = \"5 june 1984 (aged 23)\"", "question": "What is listed under Senior List for Date of Birth (Age When Delisted) of 5 June 1984 (aged 23)?", "context": "CREATE TABLE table_name_84 (senior_list VARCHAR, date_of_birth__age_when_delisted_ VARCHAR)"}, {"answer": "SELECT AVG(year_began_making_autos) FROM table_name_30 WHERE year_joined_gm = 1917", "question": "What is the average year to begin making autos for a brand that joined GM in 1917?", "context": "CREATE TABLE table_name_30 (year_began_making_autos INTEGER, year_joined_gm VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE home_team = \"melbourne\"", "question": "Name the date with a home team of melbourne", "context": "CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_40 WHERE home_team = \"collingwood\"", "question": "Name the venue for collingwood home team", "context": "CREATE TABLE table_name_40 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT year FROM table_name_7 WHERE gen_secretary = \"silvana jansen\"", "question": "Which year has a Gen.-Secretary of silvana jansen?", "context": "CREATE TABLE table_name_7 (year VARCHAR, gen_secretary VARCHAR)"}, {"answer": "SELECT Vice AS president FROM table_name_29 WHERE president = \"daniel masny\" AND treasurer = \"rebecca t. altmann\"", "question": "Which Vice President has a President of daniel masny, and a Treasurer of rebecca t. altmann?", "context": "CREATE TABLE table_name_29 (Vice VARCHAR, president VARCHAR, treasurer VARCHAR)"}, {"answer": "SELECT president FROM table_name_89 WHERE year = \"2002-2003, second semester\"", "question": "Who was president Year of 2002-2003, second semester?", "context": "CREATE TABLE table_name_89 (president VARCHAR, year VARCHAR)"}, {"answer": "SELECT treasurer FROM table_name_74 WHERE president = \"sebastian ihler\"", "question": "Which treasurer has a President of sebastian ihler?", "context": "CREATE TABLE table_name_74 (treasurer VARCHAR, president VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_1 WHERE surface = \"grass\"", "question": "Which opponent used a grass surface?", "context": "CREATE TABLE table_name_1 (opponent VARCHAR, surface VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_3 WHERE score = \"6\u20137 (0\u20137) , 6\u20132, 4\u20136\"", "question": "Which tournament had a score of  6\u20137 (0\u20137) , 6\u20132, 4\u20136?", "context": "CREATE TABLE table_name_3 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_72 WHERE lost < 4", "question": "Tell me the total number of points for lost less than 4", "context": "CREATE TABLE table_name_72 (points VARCHAR, lost INTEGER)"}, {"answer": "SELECT SUM(drawn) FROM table_name_81 WHERE lost < 0", "question": "I want the sum of drawn for lost less than 0", "context": "CREATE TABLE table_name_81 (drawn INTEGER, lost INTEGER)"}, {"answer": "SELECT points_difference FROM table_name_29 WHERE points = 14", "question": "I want the points difference for points of 14", "context": "CREATE TABLE table_name_29 (points_difference VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_59 WHERE gold > 0 AND total > 32 AND silver < 23", "question": "Tell me the sum of rank for when gold is more than 0 and silver less than 23 with total more than 32", "context": "CREATE TABLE table_name_59 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_34 WHERE nation = \"liechtenstein\" AND bronze > 4", "question": "Tell me the sum of silver for liechtenstein and bronze more than 4", "context": "CREATE TABLE table_name_34 (silver INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_70 WHERE score = \"6\u20134, 4\u20136, 7\u20135\"", "question": "Which tournament had a score of 6\u20134, 4\u20136, 7\u20135?", "context": "CREATE TABLE table_name_70 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_7 WHERE score = \"7\u20135, 2\u20136, 7\u20136\"", "question": "Which tournament had a score of 7\u20135, 2\u20136, 7\u20136?", "context": "CREATE TABLE table_name_7 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_89 WHERE surface = \"hard\" AND score = \"6\u20133, 3\u20136, 7\u20135\"", "question": "Who was the opponent in the final in which the court surface was hard and the score was 6\u20133, 3\u20136, 7\u20135?", "context": "CREATE TABLE table_name_89 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_90 WHERE score = \"6\u20134, 6\u20131\"", "question": "What was the court surface when the score was 6\u20134, 6\u20131?", "context": "CREATE TABLE table_name_90 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE opponent_in_the_final = \"gwinyai tongoona\"", "question": "On what date was the opponent in the final Gwinyai Tongoona?", "context": "CREATE TABLE table_name_62 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT record FROM table_name_13 WHERE visitor = \"golden state warriors\" AND date = \"11/18\"", "question": "What was the record from the Golden State Warriors on 11/18?", "context": "CREATE TABLE table_name_13 (record VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT class FROM table_name_95 WHERE wheels = \"4-4-0\" AND no_built < 40", "question": "What class has 4-4-0 wheels and was less than number 40 built?", "context": "CREATE TABLE table_name_95 (class VARCHAR, wheels VARCHAR, no_built VARCHAR)"}, {"answer": "SELECT space_crusade FROM table_name_7 WHERE english = \"finnish\"", "question": "Name the space crusade when the english is of finnish", "context": "CREATE TABLE table_name_7 (space_crusade VARCHAR, english VARCHAR)"}, {"answer": "SELECT space_crusade FROM table_name_92 WHERE genestealers = \"genr\u00f8vere (gene robbers)\"", "question": "Name the space crusade which has Genestealers of genr\u00f8vere (gene robbers)", "context": "CREATE TABLE table_name_92 (space_crusade VARCHAR, genestealers VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE winners = \"galatasaray\" AND runners_up = \"trabzonspor\" AND year = 1990", "question": "What was Galatasaray score when when he won in 1990 and Trabzonspor was the runner-up?", "context": "CREATE TABLE table_name_24 (score VARCHAR, year VARCHAR, winners VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_15 WHERE prize_money = \"\u00a31,000,000\"", "question": "How many matches were there in the round with \u00a31,000,000 in prize money?", "context": "CREATE TABLE table_name_15 (matches VARCHAR, prize_money VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE matches = 1", "question": "What was the date for a round that only had 1 match?", "context": "CREATE TABLE table_name_36 (date VARCHAR, matches VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE away_team = \"hawthorn\"", "question": "What date did Hawthorn play as the away team?", "context": "CREATE TABLE table_name_87 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_43 WHERE college = \"wisconsin\"", "question": "What is the hometown for a college in Wisconsin?", "context": "CREATE TABLE table_name_43 (hometown VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_92 WHERE position = \"linebacker\" AND school = \"lessburg high school\"", "question": "Which college has a linebacker from Lessburg High School?", "context": "CREATE TABLE table_name_92 (college VARCHAR, position VARCHAR, school VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_49 WHERE week = 11", "question": "Which opponent has a week of 11?", "context": "CREATE TABLE table_name_49 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_46 WHERE date = \"december 4, 1976\" AND attendance < 57 OFFSET 366", "question": "Which December 4, 1976 week has an attendance less than 57,366?", "context": "CREATE TABLE table_name_46 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT comune FROM table_name_52 WHERE total__km\u00b2_ > 70.99", "question": "Who has a larger than 70.99 km2?", "context": "CREATE TABLE table_name_52 (comune VARCHAR, total__km\u00b2_ INTEGER)"}, {"answer": "SELECT MIN(area__km\u00b2_) FROM table_name_26 WHERE province = \"napoli\" AND comune = \"piano di sorrento\" AND total__km\u00b2_ < 121.14", "question": "What is the Piano di Sorrento, Napoli lowest km2 with a total smaller than 121.14 km2?", "context": "CREATE TABLE table_name_26 (area__km\u00b2_ INTEGER, total__km\u00b2_ VARCHAR, province VARCHAR, comune VARCHAR)"}, {"answer": "SELECT writer FROM table_name_85 WHERE producer_executive_producer = \"dka, jl, as\"", "question": "Which writer had a producer DKA, JL, AS?", "context": "CREATE TABLE table_name_85 (writer VARCHAR, producer_executive_producer VARCHAR)"}, {"answer": "SELECT film_title FROM table_name_68 WHERE director = \"lu\"", "question": "Name the film that Lu directed.", "context": "CREATE TABLE table_name_68 (film_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT writer FROM table_name_22 WHERE film_title = \"toy story\"", "question": "Who wrote Toy Story?", "context": "CREATE TABLE table_name_22 (writer VARCHAR, film_title VARCHAR)"}, {"answer": "SELECT writer FROM table_name_13 WHERE voiced_character_s_ = \"jdr, bb, tn, lr, ps\"", "question": "Which writer had voice characters of JDR, BB, TN, LR, PS?", "context": "CREATE TABLE table_name_13 (writer VARCHAR, voiced_character_s_ VARCHAR)"}, {"answer": "SELECT sound FROM table_name_77 WHERE producer_executive_producer = \"jl\"", "question": "Who was the sound producer that worked under Executive Producer JL?", "context": "CREATE TABLE table_name_77 (sound VARCHAR, producer_executive_producer VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_44 WHERE venue = \"mcg\"", "question": "What was the away team at mcg?", "context": "CREATE TABLE table_name_44 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT name FROM table_name_17 WHERE country = \"nga\"", "question": "What is the name of the player from NGA?", "context": "CREATE TABLE table_name_17 (name VARCHAR, country VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_64 WHERE transfer_fee = \"undisclosed\" AND name = \"odjidja-ofoe\"", "question": "Where is Odjidja-Ofoe, with an undisclosed transfer fee, moving to?", "context": "CREATE TABLE table_name_64 (moving_to VARCHAR, transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_96 WHERE transfer_fee = \"undisclosed\" AND moving_to = \"nacional\"", "question": "What country is the player, with an undisclosed transfer fee and moving to Nacional, from?", "context": "CREATE TABLE table_name_96 (country VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_82 WHERE name = \"odjidja-ofoe\"", "question": "What is Odjidja-Ofoe's transfer fee?", "context": "CREATE TABLE table_name_82 (transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_2 WHERE country = \"cod\"", "question": "What is the name of the player from Cod?", "context": "CREATE TABLE table_name_2 (name VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_36 WHERE moving_to = \"hamburger sv\"", "question": "What country is the player moving to Hamburger SV from?", "context": "CREATE TABLE table_name_36 (country VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT driver FROM table_name_25 WHERE entrant = \"arrows racing team\" AND rounds = \"1-3\"", "question": "Which Driver has an Entrant of Arrows Racing Team and Rounds 1-3?", "context": "CREATE TABLE table_name_25 (driver VARCHAR, entrant VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_50 WHERE rounds = \"all\" AND driver = \"bruno giacomelli\"", "question": "Which Constructor has Rounds, All and Driver, Bruno Giacomelli?", "context": "CREATE TABLE table_name_50 (constructor VARCHAR, rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_39 WHERE runner_s__up = \"damien mcgrane\"", "question": "What was the winning score when Damien McGrane was runner-up?", "context": "CREATE TABLE table_name_39 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_97 WHERE tournament = \"alfred dunhill links championship\"", "question": "Who were the runners-up at the Alfred Dunhill Links Championship?", "context": "CREATE TABLE table_name_97 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_89 WHERE laps > 137 AND rank < 8", "question": "Name the highest grid for Laps more than 137 and rank is less than 8", "context": "CREATE TABLE table_name_89 (grid INTEGER, laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_73 WHERE grid < 20 AND driver = \"dick rathmann\" AND qual > 130.92", "question": "I want the total number of rank for Grid less than 20 and dick rathmann and Qual more than 130.92", "context": "CREATE TABLE table_name_73 (rank VARCHAR, qual VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT nation FROM table_name_70 WHERE gold = \"1\" AND bronze = \"1\" AND total = 2", "question": "Which nation won 1 gold medal and 1 bronze, for a total of 2 medals?", "context": "CREATE TABLE table_name_70 (nation VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_61 WHERE home = \"trail blazers\"", "question": "What is the name of the Leading scorer when the Home was the Trail blazers?", "context": "CREATE TABLE table_name_61 (leading_scorer VARCHAR, home VARCHAR)"}, {"answer": "SELECT SUM(ngc_number) FROM table_name_31 WHERE object_type = \"spiral galaxy\" AND right_ascension___j2000__ = \"08h14m40.4s\"", "question": "I want the sum of NGC number for spiral galaxy and right acension of 08h14m40.4s", "context": "CREATE TABLE table_name_31 (ngc_number INTEGER, object_type VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_59 WHERE object_type = \"open cluster\" AND ngc_number > 2547", "question": "Tell me the right ascension for open cluster and NGC number more than 2547", "context": "CREATE TABLE table_name_59 (right_ascension___j2000__ VARCHAR, object_type VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_56 WHERE declination___j2000__ = \"\u00b045\u2032\" AND right_ascension___j2000__ = \"07h58m\"", "question": "I want the constellation for declination for \u00b045\u2032 and right ascension of 07h58m", "context": "CREATE TABLE table_name_56 (constellation VARCHAR, declination___j2000__ VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT ngc_number FROM table_name_92 WHERE right_ascension___j2000__ = \"08h11m13.6s\"", "question": "I want the NGC number for right ascension of 08h11m13.6s", "context": "CREATE TABLE table_name_92 (ngc_number VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_31 WHERE home_team = \"north melbourne\"", "question": "What is the average crowd when the home team is north melbourne?", "context": "CREATE TABLE table_name_31 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_45 WHERE venue = \"mcg\"", "question": "What is the crowd total at mcg?", "context": "CREATE TABLE table_name_45 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(mintage) FROM table_name_42 WHERE animal = \"red breasted nuthatch\" AND year < 2007", "question": "How many Red Breasted Nuthatch coins created before 2007 were minted, on average?", "context": "CREATE TABLE table_name_42 (mintage INTEGER, animal VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_46 WHERE animal = \"downy woodpecker\"", "question": "What year was the downy woodpecker coin created?", "context": "CREATE TABLE table_name_46 (year INTEGER, animal VARCHAR)"}, {"answer": "SELECT artist FROM table_name_40 WHERE year < 2010", "question": "Which artist created coins before 2010?", "context": "CREATE TABLE table_name_40 (artist VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(game) FROM table_name_3 WHERE team = \"boston\"", "question": "What is the game number against the team Boston?", "context": "CREATE TABLE table_name_3 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE game = 23", "question": "What is the date of game 23?", "context": "CREATE TABLE table_name_27 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT percent_of_slovenes_1951 FROM table_name_31 WHERE village__german_ = \"roach\"", "question": "What percentage of Slovenes lived in the village of Roach in 1951?", "context": "CREATE TABLE table_name_31 (percent_of_slovenes_1951 VARCHAR, village__german_ VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE away_team = \"south melbourne\"", "question": "Which Venue has an Away team of south melbourne?", "context": "CREATE TABLE table_name_89 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_3 WHERE away_team = \"melbourne\"", "question": "What did the Melbourne team score in their away game?", "context": "CREATE TABLE table_name_3 (away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_91 WHERE venue = \"arden street oval\"", "question": "Which Home team plays at the arden street oval Venue?", "context": "CREATE TABLE table_name_91 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_58 WHERE home_team = \"hawthorn\"", "question": "What is Home team Venue for the hawthorn team?", "context": "CREATE TABLE table_name_58 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_29 WHERE venue = \"princes park\"", "question": "What Home team plays at the princes park Venue?", "context": "CREATE TABLE table_name_29 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_away FROM table_name_96 WHERE opponent = \"rattlers\" AND field = \"united sports training center\"", "question": "Was the game against the Rattlers at the United Sports Training Center a home game or an away game?", "context": "CREATE TABLE table_name_96 (home_away VARCHAR, opponent VARCHAR, field VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_65 WHERE field = \"multi-sport field\"", "question": "What was the opponent for the game at Multi-sport Field?", "context": "CREATE TABLE table_name_65 (opponent VARCHAR, field VARCHAR)"}, {"answer": "SELECT result FROM table_name_15 WHERE home_away = \"away\" AND date = \"august 4\"", "question": "What is the result of the away game played on August 4?", "context": "CREATE TABLE table_name_15 (result VARCHAR, home_away VARCHAR, date VARCHAR)"}, {"answer": "SELECT field FROM table_name_63 WHERE date = \"july 12\"", "question": "On which field was the game played on July 12?", "context": "CREATE TABLE table_name_63 (field VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_53 WHERE scored = 1 AND competition = \"2006 fifa world cup qualification\"", "question": "At what venue did Sigurd Rushfeldt score 1 point in the 2006 FIFA World Cup Qualification competition?", "context": "CREATE TABLE table_name_53 (venue VARCHAR, scored VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE scored < 2 AND competition = \"uefa euro 2004 qualifying\"", "question": "What date did Sigurd Rushfeldt score less than 2 points in the UEFA Euro 2004 qualifying competition?", "context": "CREATE TABLE table_name_24 (date VARCHAR, scored VARCHAR, competition VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_21 WHERE date = \"february 17, 2002\"", "question": "What is the tournament on February 17, 2002?", "context": "CREATE TABLE table_name_21 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_87 WHERE player = \"mitsuo kato\"", "question": "How many goals does mitsuo kato have?", "context": "CREATE TABLE table_name_87 (goals INTEGER, player VARCHAR)"}, {"answer": "SELECT engine FROM table_name_99 WHERE entrant = \"scuderia ferrari\" AND driver = \"raymond sommer\"", "question": "Which engine has the entrant scuderia ferrari and is driven by Raymond Sommer?", "context": "CREATE TABLE table_name_99 (engine VARCHAR, entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_51 WHERE driver = \"reg parnell\"", "question": "What Chassis does Reg Parnell drive?", "context": "CREATE TABLE table_name_51 (chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT speed FROM table_name_65 WHERE rank > 8 AND rider = \"ryan mccay\"", "question": "What is Ryan McCay's speed that has a rank better than 8?", "context": "CREATE TABLE table_name_65 (speed VARCHAR, rank VARCHAR, rider VARCHAR)"}, {"answer": "SELECT team FROM table_name_18 WHERE speed = \"113.316mph\"", "question": "What's the name of the team that went 113.316mph?", "context": "CREATE TABLE table_name_18 (team VARCHAR, speed VARCHAR)"}, {"answer": "SELECT team FROM table_name_81 WHERE rank < 7 AND rider = \"matts nilsson\"", "question": "What's Matts Nilsson's team that's ranked better than 7?", "context": "CREATE TABLE table_name_81 (team VARCHAR, rank VARCHAR, rider VARCHAR)"}, {"answer": "SELECT AVG(drop_zone) AS Time FROM table_name_22 WHERE drop_zone = \"n\" AND troop_carrier_group = \"1st pathfinder prov.\"", "question": "What is the average drop zone time in the N drop zone for the 1st Pathfinder Prov.?", "context": "CREATE TABLE table_name_22 (drop_zone INTEGER, troop_carrier_group VARCHAR)"}, {"answer": "SELECT uk_base FROM table_name_42 WHERE airborne_unit = \"pathfinders\"", "question": "Which UK Base has an airborne unit of Pathfinders?", "context": "CREATE TABLE table_name_42 (uk_base VARCHAR, airborne_unit VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_94 WHERE game = 1", "question": "What was the number of high assists for game 1?", "context": "CREATE TABLE table_name_94 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT chief_judge FROM table_name_35 WHERE reason_for_termination = \"retirement\"", "question": "Tell me the chief judge which has reason for termination of retirement", "context": "CREATE TABLE table_name_35 (chief_judge VARCHAR, reason_for_termination VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_41 WHERE high_rebounds = \"boozer (13)\"", "question": "For boozer (13) what is the high assists and high rebounds?", "context": "CREATE TABLE table_name_41 (high_assists VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT score FROM table_name_40 WHERE game < 4 AND high_points = \"williams (28)\"", "question": "What is the score for the game that is less than 4 and a high points of williams (28)?", "context": "CREATE TABLE table_name_40 (score VARCHAR, game VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_1 WHERE round_3 = \"did not advance\" AND event = \"76 kg\"", "question": "Which athlete in the 76 kg class, did not advance at the end of Round 3.", "context": "CREATE TABLE table_name_1 (athlete VARCHAR, round_3 VARCHAR, event VARCHAR)"}, {"answer": "SELECT owner FROM table_name_99 WHERE post_position < 4 AND jockey = \"todd pletcher\"", "question": "Who owns the horse with a post position of less than 4 with jockey todd pletcher?", "context": "CREATE TABLE table_name_99 (owner VARCHAR, post_position VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_50 WHERE horse_name = \"hard spun\"", "question": "What jockey is on hard spun?", "context": "CREATE TABLE table_name_50 (jockey VARCHAR, horse_name VARCHAR)"}, {"answer": "SELECT horse_name FROM table_name_84 WHERE jockey = \"todd pletcher\" AND post_time_odds = \"14.20-1\"", "question": "What horse does todd pletcher ride with odds of 14.20-1?", "context": "CREATE TABLE table_name_84 (horse_name VARCHAR, jockey VARCHAR, post_time_odds VARCHAR)"}, {"answer": "SELECT owner FROM table_name_87 WHERE lengths_behind = \"5\u00bd\"", "question": "Who the Owner that has a Lengths Behind of 5\u00bd?", "context": "CREATE TABLE table_name_87 (owner VARCHAR, lengths_behind VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_57 WHERE caps = \"3\" AND name = \"gabriel quak jun yi\"", "question": "What is the date of birth and age of Gabriel Quak Jun Yi with 3 caps?", "context": "CREATE TABLE table_name_57 (date_of_birth__age_ VARCHAR, caps VARCHAR, name VARCHAR)"}, {"answer": "SELECT club FROM table_name_80 WHERE name = \"hafiz abu sujad\"", "question": "Which club is associated with Hafiz Abu Sujad?", "context": "CREATE TABLE table_name_80 (club VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_45 WHERE nation = \"west germany\" AND bronze > 0", "question": "What is the sum of a rank whose nation is West Germany and has bronze larger than 0?", "context": "CREATE TABLE table_name_45 (rank INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_52 WHERE total < 3 AND nation = \"poland\" AND rank > 4", "question": "What is the total of Bronze with a total smaller than 3, and a nation of Poland, and a rank larger than 4?", "context": "CREATE TABLE table_name_52 (bronze VARCHAR, rank VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT money_spent, _2q FROM table_name_69 WHERE total_receipts = \"$1,117,566\"", "question": "How much money was spent in 2Q when the total receipts were $1,117,566?", "context": "CREATE TABLE table_name_69 (money_spent VARCHAR, _2q VARCHAR, total_receipts VARCHAR)"}, {"answer": "SELECT money_raised, _2q FROM table_name_28 WHERE total_receipts = \"$63,075,927\"", "question": "How much money was raised in the 2Q when the total receipts were $63,075,927?", "context": "CREATE TABLE table_name_28 (money_raised VARCHAR, _2q VARCHAR, total_receipts VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_4 WHERE driver = \"peter gethin\" AND grid < 25", "question": "When the driver peter gethin has a grid less than 25, what is the average number of laps?", "context": "CREATE TABLE table_name_4 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_96 WHERE time_retired = \"+ 2 laps\" AND driver = \"mike hailwood\" AND grid > 12", "question": "When the driver mike hailwood has a grid greater than 12 and a Time/Retired of + 2 laps, what is the average number of laps?", "context": "CREATE TABLE table_name_96 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_43 WHERE away_team = \"south melbourne\"", "question": "Which team was the home team when playing South Melbourne?", "context": "CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_48 WHERE away_team = \"richmond\"", "question": "What did the home team when they played Richmond?", "context": "CREATE TABLE table_name_48 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT stage_reached FROM table_name_23 WHERE venue = \"edmonton green\"", "question": "What is the stage reached for venue edmonton green?", "context": "CREATE TABLE table_name_23 (stage_reached VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_64 WHERE club_team = \"garmisch-partenkirchen riessersee sc (germany 2)\"", "question": "What is the average round for Club team of garmisch-partenkirchen riessersee sc (germany 2)?", "context": "CREATE TABLE table_name_64 (round INTEGER, club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_15 WHERE opponent = \"st kilda\" AND team = \"richmond\"", "question": "What richmond player played against st kilda?", "context": "CREATE TABLE table_name_15 (player VARCHAR, opponent VARCHAR, team VARCHAR)"}, {"answer": "SELECT player FROM table_name_66 WHERE year = 2000", "question": "What player played in 2000?", "context": "CREATE TABLE table_name_66 (player VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_77 WHERE opponent = \"geelong\" AND player = \"john roberts\"", "question": "What year for geelong player john roberts?", "context": "CREATE TABLE table_name_77 (year VARCHAR, opponent VARCHAR, player VARCHAR)"}, {"answer": "SELECT authority FROM table_name_7 WHERE roll = 40", "question": "What's the authority when the roll is 40?", "context": "CREATE TABLE table_name_7 (authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT authority FROM table_name_79 WHERE roll < 234 AND area = \"massey east\"", "question": "What's the authority when the roll is less than 234 for the massey east area?", "context": "CREATE TABLE table_name_79 (authority VARCHAR, roll VARCHAR, area VARCHAR)"}, {"answer": "SELECT roll FROM table_name_66 WHERE decile > 6 AND name = \"summerland primary\"", "question": "What's the roll for summerland primary when decile is over 6?", "context": "CREATE TABLE table_name_66 (roll VARCHAR, decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_22 WHERE delivered = \"1839/08\"", "question": "What is the name where the delivered date is 1839/08?", "context": "CREATE TABLE table_name_22 (name VARCHAR, delivered VARCHAR)"}, {"answer": "SELECT original_us_air_date FROM table_name_80 WHERE original_canadian_air_date = \"december 9, 2007\"", "question": "What is the Original U.S. air-date for the Original Canadian air-date of december 9, 2007?", "context": "CREATE TABLE table_name_80 (original_us_air_date VARCHAR, original_canadian_air_date VARCHAR)"}, {"answer": "SELECT original_canadian_air_date FROM table_name_98 WHERE director = \"michael tolkin\"", "question": "What is the Original Canadian air-date that was directed by Michael Tolkin?", "context": "CREATE TABLE table_name_98 (original_canadian_air_date VARCHAR, director VARCHAR)"}, {"answer": "SELECT original_canadian_air_date FROM table_name_25 WHERE director = \"mark rydell\"", "question": "What was the Original Canadian air-date for the episode directed by mark rydell?", "context": "CREATE TABLE table_name_25 (original_canadian_air_date VARCHAR, director VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_71 WHERE venue = \"junction oval\"", "question": "Which home team's venue is junction oval?", "context": "CREATE TABLE table_name_71 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_56 WHERE away_team = \"melbourne\"", "question": "Which venue was melbourne the away team of?", "context": "CREATE TABLE table_name_56 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_39 WHERE away_team = \"footscray\"", "question": "What was the home teams score against the away team footscray?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(long) FROM table_name_18 WHERE player = \"ramon richardson\" AND avg > 5.5", "question": "What is the average long that Ramon Richardson played and an average greater than 5.5?", "context": "CREATE TABLE table_name_18 (long INTEGER, player VARCHAR, avg VARCHAR)"}, {"answer": "SELECT MIN(yards) FROM table_name_56 WHERE avg < 3", "question": "Which has and average less than 3 and the lowest yards?", "context": "CREATE TABLE table_name_56 (yards INTEGER, avg INTEGER)"}, {"answer": "SELECT AVG(rec) FROM table_name_2 WHERE yards = 40 AND avg > 10", "question": "What is the average rec that is greater than 10 and has 40 yards?", "context": "CREATE TABLE table_name_2 (rec INTEGER, yards VARCHAR, avg VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_52 WHERE game = 31", "question": "What was the high assists for game 31?", "context": "CREATE TABLE table_name_52 (high_assists VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_name_79 WHERE game = 39", "question": "What team played in game 39?", "context": "CREATE TABLE table_name_79 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_30 WHERE game = 42", "question": "How many people attended game 42?", "context": "CREATE TABLE table_name_30 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_40 WHERE sport = \"shooting\" AND bronze < 0", "question": "What is the highest Shooting Total with a Bronze less than 0?", "context": "CREATE TABLE table_name_40 (total INTEGER, sport VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_77 WHERE bronze > 1 AND sport = \"total\" AND gold < 1", "question": "What is the lowest Silver in the Total Sport has less than 1 Gold and more than 1 Bronze?", "context": "CREATE TABLE table_name_77 (silver INTEGER, gold VARCHAR, bronze VARCHAR, sport VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_9 WHERE sport = \"football\" AND silver > 1", "question": "What is the football Bronze with more than 1 Silver?", "context": "CREATE TABLE table_name_9 (bronze INTEGER, sport VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_74 WHERE total > 1 AND gold = 1 AND bronze > 2", "question": "With 1 Gold, more than 2 Bronze and Total greater than 1, what is the Silver?", "context": "CREATE TABLE table_name_74 (silver INTEGER, bronze VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_86 WHERE silver > 1 AND sport = \"total\" AND gold > 1", "question": "With more than 1 Gold and Silver and Total Sport, what is the Total?", "context": "CREATE TABLE table_name_86 (total INTEGER, gold VARCHAR, silver VARCHAR, sport VARCHAR)"}, {"answer": "SELECT year FROM table_name_78 WHERE distance_duration = \"44 laps\" AND driver = \"robin buck\"", "question": "What year does robin buck go 44 laps?", "context": "CREATE TABLE table_name_78 (year VARCHAR, distance_duration VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_94 WHERE team = \"wal-mart / tide\"", "question": "How many years does Team wal-mart / tide participate?", "context": "CREATE TABLE table_name_94 (year VARCHAR, team VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE result = \"11\u20130\"", "question": "Which score has a Result of 11\u20130?", "context": "CREATE TABLE table_name_65 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_23 WHERE score = \"1\u20131\"", "question": "Which result has a Score of 1\u20131?", "context": "CREATE TABLE table_name_23 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE result = \"11\u20130\"", "question": "Which score has a Result of 11\u20130?", "context": "CREATE TABLE table_name_73 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_40 WHERE record = \"11-32-11\"", "question": "What is the score of the game with an 11-32-11 record?", "context": "CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_33 WHERE visitor = \"new jersey\" AND record = \"11-35-12\"", "question": "What is the home team of the game where New Jersey was the visitor team and the record was 11-35-12?", "context": "CREATE TABLE table_name_33 (home VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_74 WHERE home = \"chicago\"", "question": "What is the visitor team of the game with Chicago as the home team?", "context": "CREATE TABLE table_name_74 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE visitor = \"new jersey\" AND date = \"february 27\"", "question": "What is the score of the game on February 27 with New Jersey as the visitor team?", "context": "CREATE TABLE table_name_25 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_72 WHERE date = \"february 3\"", "question": "What is the home team of the game on February 3?", "context": "CREATE TABLE table_name_72 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_29 WHERE home = \"buffalo\"", "question": "Who is the visitor team of the game where Buffalo was the home team?", "context": "CREATE TABLE table_name_29 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT driver FROM table_name_98 WHERE grid = 18", "question": "What driver has grid number 18?", "context": "CREATE TABLE table_name_98 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_72 WHERE laps < 70 AND grid > 15 AND driver = \"timo glock\"", "question": "What is the time or retired time for timo glock with under 70 laps and a grid number greater than 15?", "context": "CREATE TABLE table_name_72 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(area_in_km\u00b2) FROM table_name_68 WHERE original_name = \"kecamatan bogor timur\" AND number_of_settlements_and_villages > 6", "question": "Kecamatan Bogor Timur has more than 6 villages, what is the area in km\u00b2?", "context": "CREATE TABLE table_name_68 (area_in_km\u00b2 INTEGER, original_name VARCHAR, number_of_settlements_and_villages VARCHAR)"}, {"answer": "SELECT SUM(area_in_km\u00b2) FROM table_name_78 WHERE original_name = \"kecamatan bogor tengah\" AND number_of_settlements_and_villages < 11", "question": "There are less than 11 settlements in Kecamatan Bogor Tengah, what is the area in km\u00b2?", "context": "CREATE TABLE table_name_78 (area_in_km\u00b2 INTEGER, original_name VARCHAR, number_of_settlements_and_villages VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_9 WHERE nation = \"luxembourg\"", "question": "Luxembourg received how many gold medals?", "context": "CREATE TABLE table_name_9 (gold INTEGER, nation VARCHAR)"}, {"answer": "SELECT SUM(tonnage) FROM table_name_73 WHERE type_of_ship = \"twin screw ro-ro motorship\" AND date_entered_service = \"11 february 1983\"", "question": "what is the sum of tonnage when the type of ship is twin screw ro-ro motorship and the date entered service is 11 february 1983?", "context": "CREATE TABLE table_name_73 (tonnage INTEGER, type_of_ship VARCHAR, date_entered_service VARCHAR)"}, {"answer": "SELECT MIN(tonnage) FROM table_name_21 WHERE date_entered_service = \"11 february 1983\"", "question": "what is the least tonnage for the ship(s) that entered service on 11 february 1983?", "context": "CREATE TABLE table_name_21 (tonnage INTEGER, date_entered_service VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_17 WHERE silver > 2 AND total = 12", "question": "What's the sum of gold where silver is more than 2 and the total is 12?", "context": "CREATE TABLE table_name_17 (gold INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_16 WHERE total = 4 AND nation = \"liechtenstein\" AND silver < 2", "question": "What's the lowest gold with a total of 4 and less than 2 silver for liechtenstein?", "context": "CREATE TABLE table_name_16 (gold INTEGER, silver VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_96 WHERE total < 23 AND rank > 10", "question": "What's the total number of gold where the total is less than 23 and the rank is over 10?", "context": "CREATE TABLE table_name_96 (gold VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_58 WHERE rank > 9 AND gold < 1", "question": "What's the sum of total where the rank is over 9 and the gold is less than 1?", "context": "CREATE TABLE table_name_58 (total VARCHAR, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(location_attendance) FROM table_name_69 WHERE team = \"timberwolves\"", "question": "What was the attendance number for the Timberwolves game?", "context": "CREATE TABLE table_name_69 (location_attendance INTEGER, team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_91 WHERE home_team = \"richmond\"", "question": "What is the combined of Crowd when richmond played at home?", "context": "CREATE TABLE table_name_91 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_74 WHERE result = \"3\u20136, 6\u20132, 4\u20136\"", "question": "What opponent has a result of 3\u20136, 6\u20132, 4\u20136?", "context": "CREATE TABLE table_name_74 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE edition = \"1991 world group i\" AND opponent = \"li fang\"", "question": "When was the 1991 world group I with the opponent of Li Fang?", "context": "CREATE TABLE table_name_2 (date VARCHAR, edition VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_15 WHERE date = \"july 15, 1984\"", "question": "On July 15, 1984 what surface was used?", "context": "CREATE TABLE table_name_15 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_name_95 WHERE opponent = \"mercedes paz\" AND result = \"4\u20136, 6\u20131, 6\u20133\"", "question": "For what round was the opponent mercedes paz with a result of 4\u20136, 6\u20131, 6\u20133?", "context": "CREATE TABLE table_name_95 (round VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT surface FROM table_name_30 WHERE date = \"july 17, 1983\"", "question": "What surface was used on July 17, 1983?", "context": "CREATE TABLE table_name_30 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_58 WHERE date = \"october 8, 1985\"", "question": "What was the result on October 8, 1985?", "context": "CREATE TABLE table_name_58 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_28 WHERE pl_gp > 55", "question": "Name the highest pick number for PI GP more than 55", "context": "CREATE TABLE table_name_28 (pick__number INTEGER, pl_gp INTEGER)"}, {"answer": "SELECT MIN(rd__number) FROM table_name_13 WHERE pl_gp > 0 AND pick__number > 51", "question": "Name the least RD number that has PI GP more than 0 and pick # more than 51", "context": "CREATE TABLE table_name_13 (rd__number INTEGER, pl_gp VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE away_team = \"footscray\"", "question": "What day did Footscray play as the away team?", "context": "CREATE TABLE table_name_34 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_40 WHERE home_team = \"hawthorn\"", "question": "What was Hawthorn's away teams opponents score?", "context": "CREATE TABLE table_name_40 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_83 WHERE date = \"april 17\"", "question": "What was the attendance of april 17?", "context": "CREATE TABLE table_name_83 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_98 WHERE record = \"21-34\"", "question": "What was the loss of the Mariners game when they had a record of 21-34?", "context": "CREATE TABLE table_name_98 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_30 WHERE record = \"33-45\"", "question": "Who did the Mariners play when they had a record of 33-45?", "context": "CREATE TABLE table_name_30 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_96 WHERE record = \"22-35\"", "question": "What was the loss of the Mariners game when they had a record of 22-35?", "context": "CREATE TABLE table_name_96 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_65 WHERE attendance = \"35,614\"", "question": "What was the record for the game attended by 35,614 spectators?", "context": "CREATE TABLE table_name_65 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_5 WHERE date = \"april 8\"", "question": "What is the record for April 8?", "context": "CREATE TABLE table_name_5 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_53 WHERE record = \"1-1\"", "question": "What was the attendance for the game that has a record of 1-1?", "context": "CREATE TABLE table_name_53 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_79 WHERE attendance = \"35,305\"", "question": "What is the record for the game with an attendance of 35,305?", "context": "CREATE TABLE table_name_79 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_39 WHERE driver = \"louis rosier\" AND laps > 78", "question": "what is the grid when the driver is louis rosier and the laps is more than 78?", "context": "CREATE TABLE table_name_39 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_51 WHERE driver = \"toulo de graffenried\"", "question": "what is the time/retired when the driver is toulo de graffenried?", "context": "CREATE TABLE table_name_51 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_99 WHERE driver = \"tony rolt\" AND grid < 10", "question": "what is the laps when the driver is tony rolt and the grid is less than 10?", "context": "CREATE TABLE table_name_99 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_74 WHERE constructor = \"maserati\" AND laps = 90", "question": "what is the time/retired when the constructor is maserati and the laps is 90?", "context": "CREATE TABLE table_name_74 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_57 WHERE venue = \"a\" AND date = \"16 october 2004\"", "question": "What is the average Attendance at Venue A on 16 October 2004?", "context": "CREATE TABLE table_name_57 (attendance INTEGER, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_34 WHERE opponent = \"middlesbrough\" AND venue = \"a\"", "question": "What is the lowest Attendance when Middlesbrough played at Venue A?", "context": "CREATE TABLE table_name_34 (attendance INTEGER, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT sponsor_s_ FROM table_name_18 WHERE _number_of_cosponsors < 200 AND date_introduced = \"february 28, 2005\"", "question": "Who was the sponsor for the bill introduced February 28, 2005 with cosponsors less than 200?", "context": "CREATE TABLE table_name_18 (sponsor_s_ VARCHAR, _number_of_cosponsors VARCHAR, date_introduced VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_68 WHERE nominated_work = \"herself\" AND event = \"mtv movie awards\"", "question": "What year was Herself nominated at the MTV Movie Awards?", "context": "CREATE TABLE table_name_68 (year INTEGER, nominated_work VARCHAR, event VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_84 WHERE home_team = \"essendon\"", "question": "What is the average amount of spectators when Essendon played as the home team?", "context": "CREATE TABLE table_name_84 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_96 WHERE venue = \"mcg\"", "question": "What did the away team score at MCG?", "context": "CREATE TABLE table_name_96 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_28 WHERE away_team = \"geelong\"", "question": "Where was the game when Geelong was the away team?", "context": "CREATE TABLE table_name_28 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_72 WHERE venue = \"arden street oval\"", "question": "What team was the away team at Arden Street Oval?", "context": "CREATE TABLE table_name_72 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(diameter__km_) FROM table_name_71 WHERE latitude < 14 AND name = \"xenia\" AND longitude > 249.4", "question": "What in Xenia's Diameter in km, with a latitude of 14 and a longitude of 249.4?", "context": "CREATE TABLE table_name_71 (diameter__km_ VARCHAR, longitude VARCHAR, latitude VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(latitude) FROM table_name_18 WHERE diameter__km_ < 12.8 AND longitude < 208", "question": "What is the latitude for a crater with a diameter of 12.8 km and a longitude of 208?", "context": "CREATE TABLE table_name_18 (latitude INTEGER, diameter__km_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_75 WHERE winning_score = 67 - 66 - 65 - 69 = 267", "question": "Who was the Runner(s)-up in the race with a winning score of 67-66-65-69=267?", "context": "CREATE TABLE table_name_75 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE tournament = \"masters tournament\"", "question": "When was the Masters Tournament?", "context": "CREATE TABLE table_name_9 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_48 WHERE runner_s__up = \"justin rose\"", "question": "What is the margin of victory in the race where Justin Rose was the runner-up?", "context": "CREATE TABLE table_name_48 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_87 WHERE date = \"7 aug 2011\"", "question": "What tournament took place on 7 Aug 2011?", "context": "CREATE TABLE table_name_87 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT day_2 FROM table_name_23 WHERE day_1 = \"4:05.096\"", "question": "For the team that had 4:05.096, what was their day 2?", "context": "CREATE TABLE table_name_23 (day_2 VARCHAR, day_1 VARCHAR)"}, {"answer": "SELECT team FROM table_name_34 WHERE day_1 = \"3:18.513\"", "question": "Which team had 3:18.513 on day 1?", "context": "CREATE TABLE table_name_34 (team VARCHAR, day_1 VARCHAR)"}, {"answer": "SELECT behind FROM table_name_26 WHERE class = \"gt2\" AND day_2 = \"3:59.820\"", "question": "For the team with a class of gt2 and 3:59.820 on day 2, what was the behind?", "context": "CREATE TABLE table_name_26 (behind VARCHAR, class VARCHAR, day_2 VARCHAR)"}, {"answer": "SELECT team FROM table_name_78 WHERE day_2 = \"3:47.761\"", "question": "Which team was 3:47.761 on day 2?", "context": "CREATE TABLE table_name_78 (team VARCHAR, day_2 VARCHAR)"}, {"answer": "SELECT class FROM table_name_18 WHERE behind = \"+44.780\"", "question": "What is the class of the team that has a behind of +44.780?", "context": "CREATE TABLE table_name_18 (class VARCHAR, behind VARCHAR)"}, {"answer": "SELECT behind FROM table_name_72 WHERE day_2 = \"3:42.162\"", "question": "For the team with 3:42.162 on day 2, what was the behind?", "context": "CREATE TABLE table_name_72 (behind VARCHAR, day_2 VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_42 WHERE 1996 = \"qf\"", "question": "Which one of the tournaments had a QF in 1996?", "context": "CREATE TABLE table_name_42 (tournament VARCHAR)"}, {"answer": "SELECT 1996 FROM table_name_92 WHERE tournament = \"wimbledon\"", "question": "What is the value for the Wimbledon tournament in 1996?", "context": "CREATE TABLE table_name_92 (tournament VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_26 WHERE position = \"center\" AND player = \"ann wauters\"", "question": "What year is center Ann Wauters?", "context": "CREATE TABLE table_name_26 (year INTEGER, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_54 WHERE position = \"guard\" AND wnba_team = \"seattle storm\"", "question": "What is the earliest year that includes a Seattle Storm guard?", "context": "CREATE TABLE table_name_54 (year INTEGER, position VARCHAR, wnba_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_31 WHERE year < 2000 AND college_country = \"usc\"", "question": "Regarding players before 2000, what is the USC player's position?", "context": "CREATE TABLE table_name_31 (position VARCHAR, year VARCHAR, college_country VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_79 WHERE college_country = \"baylor\"", "question": "What is the earliest year a Baylor player made the list?", "context": "CREATE TABLE table_name_79 (year INTEGER, college_country VARCHAR)"}, {"answer": "SELECT position FROM table_name_93 WHERE player = \"sue bird\"", "question": "What is Sue Bird's position?", "context": "CREATE TABLE table_name_93 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT builder FROM table_name_52 WHERE class = \"terrier\"", "question": "Which Builder has a Class of Terrier?", "context": "CREATE TABLE table_name_52 (builder VARCHAR, class VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_62 WHERE laps < 68 AND grid > 20 AND driver = \"thierry boutsen\"", "question": "who is the constructor when the laps is less than 68, the grid is more than 20 and the driver is thierry boutsen?", "context": "CREATE TABLE table_name_62 (constructor VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT laps FROM table_name_29 WHERE time_retired = \"turbo\" AND grid < 14", "question": "what is the laps when the time/retired is turbo and the grid is less than 14?", "context": "CREATE TABLE table_name_29 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_23 WHERE laps < 4", "question": "what is the time/retired when the laps is less than 4?", "context": "CREATE TABLE table_name_23 (time_retired VARCHAR, laps INTEGER)"}, {"answer": "SELECT MAX(goals) FROM table_name_34 WHERE club = \"total\" AND apps < 120", "question": "Name the most goals for total club and apps less than 120", "context": "CREATE TABLE table_name_34 (goals INTEGER, club VARCHAR, apps VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_51 WHERE games = 75", "question": "How many goals are associated with 75 games?", "context": "CREATE TABLE table_name_51 (goals INTEGER, games VARCHAR)"}, {"answer": "SELECT position FROM table_name_75 WHERE years_for_rockets = \"2004-05\"", "question": "What is the position for the Rockets years of 2004-05?", "context": "CREATE TABLE table_name_75 (position VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT AVG(no_s_) FROM table_name_14 WHERE years_for_rockets = \"2004-05\"", "question": "What is the average number of years for the Houston Rockets 2004-05?", "context": "CREATE TABLE table_name_14 (no_s_ INTEGER, years_for_rockets VARCHAR)"}, {"answer": "SELECT position FROM table_name_4 WHERE years_for_rockets = \"1992-93\"", "question": "For the years 1992-93, what position did he play for the Houston Rockets?", "context": "CREATE TABLE table_name_4 (position VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT SUM(no_s_) FROM table_name_92 WHERE position = \"forward\" AND school_club_team_country = \"oregon state\"", "question": "What is the total number of years did he play the forward position and what school/club/team/country of Oregon State did he play?", "context": "CREATE TABLE table_name_92 (no_s_ INTEGER, position VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_16 WHERE player = \"bruce fleisher\" AND events > 31", "question": "How many wins for bruce fleisher with over 31 events?", "context": "CREATE TABLE table_name_16 (wins INTEGER, player VARCHAR, events VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_74 WHERE events < 26 AND wins < 2", "question": "What is the average rank for players with under 26 events and less than 2 wins?", "context": "CREATE TABLE table_name_74 (rank INTEGER, events VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(earnings___) AS $__ FROM table_name_90 WHERE events = 34 AND wins > 2", "question": "What is the high earnings for players with 34 events and over 2 wins?", "context": "CREATE TABLE table_name_90 (earnings___ INTEGER, events VARCHAR, wins VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_83 WHERE 2009 = \"2r\" AND 2010 = \"sf\"", "question": "Which tournament had a 2R categorization in 2009 and SF in 2010?", "context": "CREATE TABLE table_name_83 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_14 WHERE 2008 = \"2r\" AND 2011 = \"2r\"", "question": "What is the categorization in 2009 when it was 2R in 2008 and 2011?", "context": "CREATE TABLE table_name_14 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_13 WHERE 2008 = \"a\" AND 2011 = \"1r\"", "question": "What is the categorization in 2012 when it was A in 2008 and 1R in 2011?", "context": "CREATE TABLE table_name_13 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_10 WHERE 2008 = \"a\" AND 2011 = \"a\" AND 2012 = \"qf\"", "question": "What is the categorization in 2010 when it was A in 2008 and 20011 while being QF in 2012?", "context": "CREATE TABLE table_name_10 (Id VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_28 WHERE home_team = \"richmond\"", "question": "What was the score against home team, Richmond?", "context": "CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_3 WHERE home_team = \"fitzroy\"", "question": "What is Fitzroy's smallest crowd size?", "context": "CREATE TABLE table_name_3 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_19 WHERE opponent = \"naomi cavaday\"", "question": "When was naomi cavaday the opponent?", "context": "CREATE TABLE table_name_19 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE opponent = \"andrea g\u00e1miz\"", "question": "When was andrea g\u00e1miz the opponent?", "context": "CREATE TABLE table_name_97 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE score = \"6\u20134, 6\u20132\" AND surface = \"clay\"", "question": "Who is the opponent when the score was 6\u20134, 6\u20132 and the surface was clay?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, score VARCHAR, surface VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_97 WHERE home_team = \"essendon\"", "question": "What was the smallest crowd at a home game for essendon?", "context": "CREATE TABLE table_name_97 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_70 WHERE driver = \"riccardo patrese\"", "question": "Tell me the time/retired for riccardo patrese", "context": "CREATE TABLE table_name_70 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_12 WHERE grid = 24", "question": "I want the time/retired for grid of 24", "context": "CREATE TABLE table_name_12 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_69 WHERE grid > 9 AND laps < 26 AND constructor = \"ferrari\"", "question": "I want the driver for ferrari who made Laps less than 26 and grids more than 9", "context": "CREATE TABLE table_name_69 (driver VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_60 WHERE laps = 52", "question": "Tell me the total number of grid for laps of 52", "context": "CREATE TABLE table_name_60 (grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT record FROM table_name_48 WHERE date = \"january 10\"", "question": "What's the record for january 10?", "context": "CREATE TABLE table_name_48 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE decision = \"hasek\" AND date = \"january 5\"", "question": "What's the score on january 5 with a hasek decision?", "context": "CREATE TABLE table_name_28 (score VARCHAR, decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT club_team FROM table_name_97 WHERE overall > 131 AND round = 8 AND player = \"kaj linna\"", "question": "What Club team has an average of 8, plays kaj linna, and has an overall larger than 131?", "context": "CREATE TABLE table_name_97 (club_team VARCHAR, player VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_64 WHERE player = \"bryan berard\"", "question": "What round does Bryan Berard do?", "context": "CREATE TABLE table_name_64 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(gross_tonnage) FROM table_name_57 WHERE entered_service = \"april 1919\"", "question": "Tell me the average gross tonnage for april 1919 entered service", "context": "CREATE TABLE table_name_57 (gross_tonnage INTEGER, entered_service VARCHAR)"}, {"answer": "SELECT COUNT(gross_tonnage) FROM table_name_51 WHERE entered_service = \"1903\"", "question": "I want the total number of gross tonnage when entered service was 1903", "context": "CREATE TABLE table_name_51 (gross_tonnage VARCHAR, entered_service VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_9 WHERE player = \"henry shefflin\" AND matches > 4", "question": "what is the rank when the player is henry shefflin and the matches is higher than 4?", "context": "CREATE TABLE table_name_9 (rank INTEGER, player VARCHAR, matches VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_31 WHERE total = 39 AND county = \"dublin\" AND matches < 4", "question": "what is the rank when the total is 39 in the county of dublin and the matches is less than 4?", "context": "CREATE TABLE table_name_31 (rank INTEGER, matches VARCHAR, total VARCHAR, county VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_19 WHERE date = \"november 12, 1972\"", "question": "Who was the opponent on November 12, 1972?", "context": "CREATE TABLE table_name_19 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT builder\u2019s_model FROM table_name_83 WHERE total_produced > 40 AND build_date = \"1966\"", "question": "Who built the train in 1966 with over 40 produced?", "context": "CREATE TABLE table_name_83 (builder\u2019s_model VARCHAR, total_produced VARCHAR, build_date VARCHAR)"}, {"answer": "SELECT prr_class FROM table_name_4 WHERE wheel_arrangement = \"b-b\" AND service = \"freight\" AND build_date = \"1967\"", "question": "What is the PRR class of the freight train built in 1967 with a b-b wheel arrangement?", "context": "CREATE TABLE table_name_4 (prr_class VARCHAR, build_date VARCHAR, wheel_arrangement VARCHAR, service VARCHAR)"}, {"answer": "SELECT prr_class FROM table_name_33 WHERE wheel_arrangement = \"a1a-a1a\"", "question": "What PRR class has a Wheel arrangement of a1a-a1a?", "context": "CREATE TABLE table_name_33 (prr_class VARCHAR, wheel_arrangement VARCHAR)"}, {"answer": "SELECT MIN(zone) FROM table_name_88 WHERE managed_by = \"southern\" AND platforms < 2", "question": "Which Zone is the lowest when Managed By Southern and has Platforms under 2?", "context": "CREATE TABLE table_name_88 (zone INTEGER, managed_by VARCHAR, platforms VARCHAR)"}, {"answer": "SELECT MAX(platforms) FROM table_name_15 WHERE stations = \"centrale tram stop\"", "question": "What would be the highest Platforms for the Centrale Tram Stop Stations?", "context": "CREATE TABLE table_name_15 (platforms INTEGER, stations VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_9 WHERE laps > 61", "question": "How many grids had more than 61 laps?", "context": "CREATE TABLE table_name_9 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT MAX(pick) FROM table_name_57 WHERE player = \"parnell dickinson\" AND round < 7", "question": "When parnell dickinson was the player and the rounds were under 7, what's the highest pick?", "context": "CREATE TABLE table_name_57 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_51 WHERE position = \"linebacker\" AND school = \"utah state\"", "question": "When the school picking is utah state for the position of linebacker, what's the sum of those rounds?", "context": "CREATE TABLE table_name_51 (round INTEGER, position VARCHAR, school VARCHAR)"}, {"answer": "SELECT laps FROM table_name_38 WHERE grid < 2", "question": "what is the laps when the grid is less than 2?", "context": "CREATE TABLE table_name_38 (laps VARCHAR, grid INTEGER)"}, {"answer": "SELECT constructor FROM table_name_66 WHERE grid > 23 AND driver = \"piercarlo ghinzani\"", "question": "who is the constructor when the grid is more than 23 and the driver is piercarlo ghinzani?", "context": "CREATE TABLE table_name_66 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_36 WHERE venue = \"gothenburg, sweden\"", "question": "When is the latest year the venue is in gothenburg, sweden?", "context": "CREATE TABLE table_name_36 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_69 WHERE venue = \"gothenburg, sweden\"", "question": "When is the earliest year the venue is in gothenburg, sweden?", "context": "CREATE TABLE table_name_69 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_41 WHERE tournament = \"european indoor championships\" AND year > 1974", "question": "What is the result of the european indoor championships after 1974?", "context": "CREATE TABLE table_name_41 (result VARCHAR, tournament VARCHAR, year VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_33 WHERE venue = \"western oval\"", "question": "In Western Oval, what was the away team score?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(places) FROM table_name_14 WHERE name = \"adrian vasile\" AND points < 127.74", "question": "What is the place number for adrian vasile with less than 127.74 points?", "context": "CREATE TABLE table_name_14 (places INTEGER, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(sp) + fs FROM table_name_84 WHERE points = 131.02 AND rank > 15", "question": "What is the highest SP+FS that has 131.02 Points, and a Rank larger than 15?", "context": "CREATE TABLE table_name_84 (fs VARCHAR, sp INTEGER, points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(evening_gown) FROM table_name_31 WHERE interview > 9.36 AND country = \"tennessee\" AND average > 9.75", "question": "What is the highest evening gown score of the contestant from Tennessee with an interview score larger than 9.36 and an average larger than 9.75 have?", "context": "CREATE TABLE table_name_31 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(average) FROM table_name_86 WHERE swimsuit < 9.32", "question": "What is the average of the contestant with a swimsuit less than 9.32?", "context": "CREATE TABLE table_name_86 (average INTEGER, swimsuit INTEGER)"}, {"answer": "SELECT MAX(swimsuit) FROM table_name_63 WHERE interview > 9.55 AND evening_gown = 9.75 AND average > 9.67", "question": "What is the highest swimsuit score of the contestant with a higher than 9.55 interview score, and evening gown of 9.75, and an average higher than 9.67?", "context": "CREATE TABLE table_name_63 (swimsuit INTEGER, average VARCHAR, interview VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT country FROM table_name_19 WHERE swimsuit = 9.46", "question": "What is the country of the contestant with a swimsuit of 9.46?", "context": "CREATE TABLE table_name_19 (country VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE goal = 24", "question": "On what date did Goal 24 take place?", "context": "CREATE TABLE table_name_76 (date VARCHAR, goal VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_60 WHERE team_1 = \"valletta\"", "question": "What is the team 2 for team 1 of Valletta?", "context": "CREATE TABLE table_name_60 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT defensive FROM table_name_97 WHERE rookie = \"craig point\" AND week = 6", "question": "Who played defensive when the rookie Craig Point was playing during week 6?", "context": "CREATE TABLE table_name_97 (defensive VARCHAR, rookie VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_6 WHERE transition = \"pat mccready\"", "question": "What was the first week that had a transition with Pat Mccready?", "context": "CREATE TABLE table_name_6 (week INTEGER, transition VARCHAR)"}, {"answer": "SELECT rookie FROM table_name_6 WHERE defensive = \"matt vinc\" AND offensive = \"pat maddalena\"", "question": "Who was the rookie who played when Matt Vinc was defensive and Pat Maddalena was offensive?", "context": "CREATE TABLE table_name_6 (rookie VARCHAR, defensive VARCHAR, offensive VARCHAR)"}, {"answer": "SELECT overall FROM table_name_16 WHERE transition = \"josh sims\"", "question": "Who played as overall when Josh Sims was transition?", "context": "CREATE TABLE table_name_16 (overall VARCHAR, transition VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_98 WHERE venue = \"glenferrie oval\"", "question": "How large was the crowd at Glenferrie Oval?", "context": "CREATE TABLE table_name_98 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT actor FROM table_name_62 WHERE character = \"ariadne oliver\"", "question": "who is the actor of the character ariadne oliver?", "context": "CREATE TABLE table_name_62 (actor VARCHAR, character VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_15 WHERE driver = \"ralph firman\" AND laps < 18", "question": "What is the largest grid with a Driver of ralph firman, and a Lap smaller than 18?", "context": "CREATE TABLE table_name_15 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_65 WHERE grid > 3 AND driver = \"kimi r\u00e4ikk\u00f6nen\"", "question": "What time/retired has a Grid larger than 3, and a Driver of kimi r\u00e4ikk\u00f6nen?", "context": "CREATE TABLE table_name_65 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE date = \"december 31\"", "question": "What is the score on December 31?", "context": "CREATE TABLE table_name_13 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(team_1) FROM table_name_89 WHERE agg = \"asolo fonte (veneto b)\"", "question": "What's the lowest team 1 number that had asolo fonte (veneto b) as the Agg.?", "context": "CREATE TABLE table_name_89 (team_1 INTEGER, agg VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_22 WHERE driver = \"kazuyoshi hoshino\" AND laps < 71", "question": "What is the grid total for kazuyoshi hoshino with under 71 laps?", "context": "CREATE TABLE table_name_22 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_35 WHERE laps > 72 AND grid = 2", "question": "What driver has grid 2 and over 72 laps?", "context": "CREATE TABLE table_name_35 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_88 WHERE grid = 23", "question": "What is the time/retired for grid 23?", "context": "CREATE TABLE table_name_88 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(top_25) FROM table_name_32 WHERE events < 35 AND tournament = \"the open championship\"", "question": "What is the average of the top-25 of those with less than 35 events in the Open Championship?", "context": "CREATE TABLE table_name_32 (top_25 INTEGER, events VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT SUM(events) FROM table_name_50 WHERE tournament = \"the open championship\" AND cuts_made < 0", "question": "What is the total number of events the Open Championship has with less than 0 cuts?", "context": "CREATE TABLE table_name_50 (events INTEGER, tournament VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT COUNT(events) FROM table_name_44 WHERE top_25 < 0", "question": "What is the total number of events with a top-25 less than 0?", "context": "CREATE TABLE table_name_44 (events VARCHAR, top_25 INTEGER)"}, {"answer": "SELECT COUNT(top_25) FROM table_name_92 WHERE top_10 > 2 AND cuts_made < 29", "question": "What is the total number of top-25 with a top-10 bigger than 2 and less than 29 cuts?", "context": "CREATE TABLE table_name_92 (top_25 VARCHAR, top_10 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(events) FROM table_name_30 WHERE tournament = \"the open championship\" AND top_10 < 0", "question": "What is the lowest number of events the Open Championship has with a less than 0 top-10?", "context": "CREATE TABLE table_name_30 (events INTEGER, tournament VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_46 WHERE home_team = \"hawthorn\"", "question": "What is the score for the away team when they played Hawthorn?", "context": "CREATE TABLE table_name_46 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_51 WHERE score = \"30-44\"", "question": "Which result has a Score of 30-44?", "context": "CREATE TABLE table_name_51 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_35 WHERE goals = \"h.paul 8/9\"", "question": "Which venue has h.paul 8/9 goals?", "context": "CREATE TABLE table_name_35 (venue VARCHAR, goals VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE venue = \"valley parade\" AND date = \"10/6/01\"", "question": "What is the score at valley parade on 10/6/01?", "context": "CREATE TABLE table_name_74 (score VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_31 WHERE date = \"16/4/01\"", "question": "Which competition has a Date of 16/4/01?", "context": "CREATE TABLE table_name_31 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT occupation FROM table_name_11 WHERE riding = \"labrador\"", "question": "What is the occupation of the candidate that has a riding of labrador?", "context": "CREATE TABLE table_name_11 (occupation VARCHAR, riding VARCHAR)"}, {"answer": "SELECT AVG(sinclair_coefficient) FROM table_name_61 WHERE sinclair_total = 477.2772023 AND weight_class__kg_ > 105", "question": "What is the average sinclair coefficient with a Sinclair Total of 477.2772023, and a Weight Class (kg) larger than 105?", "context": "CREATE TABLE table_name_61 (sinclair_coefficient INTEGER, sinclair_total VARCHAR, weight_class__kg_ VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_1 WHERE date = \"may 6\"", "question": "Name the least attendance for may 6", "context": "CREATE TABLE table_name_1 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT owner FROM table_name_26 WHERE language = \"english\" AND name = \"espn international sports\"", "question": "Which ESPN international sports owner speaks English?", "context": "CREATE TABLE table_name_26 (owner VARCHAR, language VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_56 WHERE group = \"animated\"", "question": "Which type is filed under the Group Animated?", "context": "CREATE TABLE table_name_56 (type VARCHAR, group VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE opponent = \"newcastle united\" AND result = \"2\u20131\"", "question": "Which Date has an Opponent of newcastle united, and a Result of 2\u20131?", "context": "CREATE TABLE table_name_66 (date VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE opponent = \"manchester united\" AND venue = \"a\"", "question": "Which Date has an Opponent of manchester united, and a Venue A?", "context": "CREATE TABLE table_name_31 (date VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_18 WHERE home_team = \"collingwood\"", "question": "In the game where Collingwood is the home team what is the score of the away team?", "context": "CREATE TABLE table_name_18 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_11 WHERE home_team = \"richmond\"", "question": "What is the home teamscore for Richmond?", "context": "CREATE TABLE table_name_11 (home_team VARCHAR)"}, {"answer": "SELECT contestant FROM table_name_10 WHERE start_bmi = 42.2", "question": "What contestant had a starting BMI of 42.2?", "context": "CREATE TABLE table_name_10 (contestant VARCHAR, start_bmi VARCHAR)"}, {"answer": "SELECT recent_bmi FROM table_name_49 WHERE start_bmi < 46.3 AND season = \"season 8\"", "question": "What is the recent BMI on season 8 for the person who's BMI started under 46.3?", "context": "CREATE TABLE table_name_49 (recent_bmi VARCHAR, start_bmi VARCHAR, season VARCHAR)"}, {"answer": "SELECT college FROM table_name_11 WHERE pick < 6 AND pba_team = \"shell turbo chargers\"", "question": "Which college has a pick below 6 for the PBA team the Shell Turbo Chargers?", "context": "CREATE TABLE table_name_11 (college VARCHAR, pick VARCHAR, pba_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_5 WHERE home_team = \"richmond\"", "question": "What's the crowd population of the home team located in Richmond?", "context": "CREATE TABLE table_name_5 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_24 WHERE home_team = \"footscray\"", "question": "What is the visiting team that has a home team related to footscray?", "context": "CREATE TABLE table_name_24 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_62 WHERE away_team = \"fitzroy\"", "question": "Which Home team has an Away team of fitzroy?", "context": "CREATE TABLE table_name_62 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_31 WHERE away_team = \"south melbourne\"", "question": "What did the home team score when the away team was South Melbourne?", "context": "CREATE TABLE table_name_31 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_46 WHERE home_team = \"richmond\"", "question": "What venue is the home field of Richmond?", "context": "CREATE TABLE table_name_46 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_59 WHERE venue = \"princes park\"", "question": "What was the score of the away team in the match at Princes Park?", "context": "CREATE TABLE table_name_59 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_3 WHERE venue = \"western oval\"", "question": "What was the score of the home team in the match at Western Oval?", "context": "CREATE TABLE table_name_3 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT party FROM table_name_55 WHERE ifop_5_30_09 = \"2.5%\"", "question": "Who had an Iflop of 2.5%?", "context": "CREATE TABLE table_name_55 (party VARCHAR, ifop_5_30_09 VARCHAR)"}, {"answer": "SELECT ipsos_5_30_09 FROM table_name_16 WHERE bva_6_1_09 = \"3%\"", "question": "When BVA was 3%, what was the Ipsos?", "context": "CREATE TABLE table_name_16 (ipsos_5_30_09 VARCHAR, bva_6_1_09 VARCHAR)"}, {"answer": "SELECT party FROM table_name_69 WHERE ipsos_6_3_09 = \"27%\"", "question": "Who had an Ipsos of 27%?", "context": "CREATE TABLE table_name_69 (party VARCHAR, ipsos_6_3_09 VARCHAR)"}, {"answer": "SELECT tns_sofres_6_2_09 FROM table_name_2 WHERE ifop_5_30_09 = \"5%\"", "question": "What was the TNS-Sofres when the Iflop was 5%?", "context": "CREATE TABLE table_name_2 (tns_sofres_6_2_09 VARCHAR, ifop_5_30_09 VARCHAR)"}, {"answer": "SELECT party FROM table_name_71 WHERE results_2004 = \"0.00%\"", "question": "Who had 0.00% in 2004?", "context": "CREATE TABLE table_name_71 (party VARCHAR, results_2004 VARCHAR)"}, {"answer": "SELECT tns_sofres_6_2_09 FROM table_name_51 WHERE ipsos_6_3_09 = \"27%\"", "question": "What's the TNS-Sofres when Ipsos was 27%?", "context": "CREATE TABLE table_name_51 (tns_sofres_6_2_09 VARCHAR, ipsos_6_3_09 VARCHAR)"}, {"answer": "SELECT venue FROM table_name_47 WHERE away_team = \"fitzroy\"", "question": "In the match where fitzroy was the away team, where was the venue?", "context": "CREATE TABLE table_name_47 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT stage__winner_ FROM table_name_17 WHERE general_classification = \"vladimir karpets\" AND team_classification = \"relax-gam\" AND points_classification = \"denis menchov\"", "question": "Which Stage (Winner) has a Vladimir Karpets General classification and a Team classification of relax-gam, and a Points classification of Denis Menchov?", "context": "CREATE TABLE table_name_17 (stage__winner_ VARCHAR, points_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT team_classification FROM table_name_88 WHERE general_classification = \"vladimir karpets\" AND mountains_classification = \"no award\"", "question": "Which Team classification has a General classification of Vladimir Karpets and a Mountains classification of No Award?", "context": "CREATE TABLE table_name_88 (team_classification VARCHAR, general_classification VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT sprints_classification FROM table_name_18 WHERE points_classification = \"mark cavendish\" AND team_classification = \"caisse d'epargne\"", "question": "What Sprints classification has the Points classification, Mark Cavendish and Team classification, Caisse D'epargne?", "context": "CREATE TABLE table_name_18 (sprints_classification VARCHAR, points_classification VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT SUM(until) FROM table_name_80 WHERE titles = \"5\"", "question": "What is the total Until when the Titles was 5?", "context": "CREATE TABLE table_name_80 (until INTEGER, titles VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_53 WHERE team_1 = \"aalborg bk\"", "question": "When Team 1 is Aalborg BK, what is the 1st Leg?", "context": "CREATE TABLE table_name_53 (team_1 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_47 WHERE team_2 = \"partizan\"", "question": "When Partizan is Team 2, what is the Agg?", "context": "CREATE TABLE table_name_47 (agg VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_32 WHERE team_1 = \"aalborg bk\"", "question": "When Aalborg BK is Team 1, what is the 1st leg?", "context": "CREATE TABLE table_name_32 (team_1 VARCHAR)"}, {"answer": "SELECT story_timeline FROM table_name_67 WHERE published < 1984 AND in_order_of_publication = \"first\"", "question": "What is the story timeline that was published first prior to 1984?", "context": "CREATE TABLE table_name_67 (story_timeline VARCHAR, published VARCHAR, in_order_of_publication VARCHAR)"}, {"answer": "SELECT COUNT(published) FROM table_name_86 WHERE in_order_of_publication = \"first\"", "question": "How many total publications were the first of the series?", "context": "CREATE TABLE table_name_86 (published VARCHAR, in_order_of_publication VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_name_56 WHERE year < 1998 AND network = \"fox\"", "question": "Who did the play-by-play before 1998 on Fox network?", "context": "CREATE TABLE table_name_56 (play_by_play VARCHAR, year VARCHAR, network VARCHAR)"}, {"answer": "SELECT play_by_play FROM table_name_15 WHERE year < 1992 AND ice_level_reporters = \"mike emrick\"", "question": "Who did the play-by-play before 1992 with the Ice level reporter Mike Emrick?", "context": "CREATE TABLE table_name_15 (play_by_play VARCHAR, year VARCHAR, ice_level_reporters VARCHAR)"}, {"answer": "SELECT ice_level_reporters FROM table_name_58 WHERE color_commentator_s_ = \"john davidson\" AND play_by_play = \"marv albert\" AND year > 1992", "question": "Who is the Ice level reporter after 1992 with the color commentator John Davidson and the play-by-play Marv Albert?", "context": "CREATE TABLE table_name_58 (ice_level_reporters VARCHAR, year VARCHAR, color_commentator_s_ VARCHAR, play_by_play VARCHAR)"}, {"answer": "SELECT network FROM table_name_66 WHERE play_by_play = \"marv albert\" AND year < 1994", "question": "What is the network with the play-by-play Marv Albert before 1994?", "context": "CREATE TABLE table_name_66 (network VARCHAR, play_by_play VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_45 WHERE home_team = \"carlton\"", "question": "What was the total crowd of the Carlton game?", "context": "CREATE TABLE table_name_45 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(long) FROM table_name_83 WHERE player = \"charles pauley\" AND yards < 60", "question": "What was the highest long of Charles Pauley with fewer than 60 yards?", "context": "CREATE TABLE table_name_83 (long INTEGER, player VARCHAR, yards VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE date = \"may 26\"", "question": "\ufeffWhat is the score of the game on May 26?", "context": "CREATE TABLE table_name_14 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_13 WHERE date = \"may 22\"", "question": "What was the location and attendance on the May 22 game?", "context": "CREATE TABLE table_name_13 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT final_placing FROM table_name_12 WHERE poles = 0 AND races > 16 AND podiums = 16", "question": "What is the final placing of the team with 0 ples, more than 16 races, and 16 podiums?", "context": "CREATE TABLE table_name_12 (final_placing VARCHAR, podiums VARCHAR, poles VARCHAR, races VARCHAR)"}, {"answer": "SELECT SUM(podiums) FROM table_name_92 WHERE final_placing = \"14th\" AND season > 2008 AND races < 1", "question": "What is the sum of podiums of the teams with a final placing of 14th, seasons after 2008, and less than 1 races?", "context": "CREATE TABLE table_name_92 (podiums INTEGER, races VARCHAR, final_placing VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_30 WHERE wins > 0 AND final_placing = \"1st\"", "question": "What is the total number of seasons with more than 0 wins and a 1st final placing?", "context": "CREATE TABLE table_name_30 (season VARCHAR, wins VARCHAR, final_placing VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_12 WHERE poles > 0 AND podiums < 3", "question": "What is the average wins of a team with more than 0 ples and less than 3 podiums?", "context": "CREATE TABLE table_name_12 (wins INTEGER, poles VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT ends FROM table_name_53 WHERE transfer_fee = \"free\" AND goals = 0 AND name = \"roy carroll\"", "question": "I want the ends for transfer fee of free and goals being 0 for roy carroll", "context": "CREATE TABLE table_name_53 (ends VARCHAR, name VARCHAR, transfer_fee VARCHAR, goals VARCHAR)"}, {"answer": "SELECT COUNT(ends) FROM table_name_67 WHERE name = \"filip \u0161ebo\" AND goals > 2", "question": "I want the total number of ends for filip \u0161ebo and Goals more than 2", "context": "CREATE TABLE table_name_67 (ends VARCHAR, name VARCHAR, goals VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_34 WHERE away_team = \"richmond\"", "question": "How big was the crowd of away team Richmond?", "context": "CREATE TABLE table_name_34 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_53 WHERE away_team = \"geelong\"", "question": "How much did the away team Geelong score?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_28 WHERE day_in_release = \"friday\" AND day_of_week > 2", "question": "What is the average year for releases on Friday and weeks larger than 2 days?", "context": "CREATE TABLE table_name_28 (year INTEGER, day_in_release VARCHAR, day_of_week VARCHAR)"}, {"answer": "SELECT COUNT(win_percentage) FROM table_name_89 WHERE postseason = \"did not qualify\" AND rank > 8", "question": "What number of win% has a postseason of did not qualify and rank larger than 8?", "context": "CREATE TABLE table_name_89 (win_percentage VARCHAR, postseason VARCHAR, rank VARCHAR)"}, {"answer": "SELECT year FROM table_name_18 WHERE rank > 5", "question": "What year ranked larger than 5?", "context": "CREATE TABLE table_name_18 (year VARCHAR, rank INTEGER)"}, {"answer": "SELECT postseason FROM table_name_54 WHERE win_percentage > 0.40700000000000003 AND games < 108 AND rank = 1", "question": "What postseason has a win% between 0.40700000000000003 and 108 with a rank of 1?", "context": "CREATE TABLE table_name_54 (postseason VARCHAR, rank VARCHAR, win_percentage VARCHAR, games VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_7 WHERE driver = \"eddie irvine\"", "question": "How many laps in total does the driver named Eddie Irvine have?", "context": "CREATE TABLE table_name_7 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_91 WHERE venue = \"western oval\"", "question": "What's the average crowd size when the venue is western oval?", "context": "CREATE TABLE table_name_91 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT team FROM table_name_64 WHERE average < 1.12 AND goalkeeper = \"carlos s\u00e1nchez\"", "question": "What team has Carlos S\u00e1nchez as a goalkeeper and an average below 1.12?", "context": "CREATE TABLE table_name_64 (team VARCHAR, average VARCHAR, goalkeeper VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_14 WHERE goalkeeper = \"jacobo\" AND matches > 32", "question": "What is the average of the team who has Jacobo as a goalkeeper and has played more than 32 matches?", "context": "CREATE TABLE table_name_14 (average INTEGER, goalkeeper VARCHAR, matches VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_57 WHERE away_team = \"fitzroy\"", "question": "What home team played Fitzroy?", "context": "CREATE TABLE table_name_57 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT network FROM table_name_36 WHERE play_by_play = \"john wells\"", "question": "Which network has a play-by-play announcer of John Wells?", "context": "CREATE TABLE table_name_36 (network VARCHAR, play_by_play VARCHAR)"}, {"answer": "SELECT colour_commentator_s_ FROM table_name_24 WHERE network = \"cbc\" AND year = 1987", "question": "On CBC, who was the colour commentator in 1987?", "context": "CREATE TABLE table_name_24 (colour_commentator_s_ VARCHAR, network VARCHAR, year VARCHAR)"}, {"answer": "SELECT colour_commentator_s_ FROM table_name_58 WHERE play_by_play = \"bob cole\"", "question": "Who was the colour commentator when the play-by-play announcer was Bob Cole?", "context": "CREATE TABLE table_name_58 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR)"}, {"answer": "SELECT studio_host FROM table_name_38 WHERE play_by_play = \"bob cole\" AND colour_commentator_s_ = \"harry neale\"", "question": "Who is the studio host that has a play-by-play announcer of Bob Cole and a colour commentator of Harry Neale?", "context": "CREATE TABLE table_name_38 (studio_host VARCHAR, play_by_play VARCHAR, colour_commentator_s_ VARCHAR)"}, {"answer": "SELECT colour_commentator_s_ FROM table_name_17 WHERE studio_host = \"dave hodge\" AND year = 1981", "question": "In 1981, with a studio host of Dave Hodge, who was the colour commentator?", "context": "CREATE TABLE table_name_17 (colour_commentator_s_ VARCHAR, studio_host VARCHAR, year VARCHAR)"}, {"answer": "SELECT song FROM table_name_19 WHERE artist = \"mor ve \u00f6tesi\"", "question": "What Song is by the Artist 'mor ve \u00f6tesi'?", "context": "CREATE TABLE table_name_19 (song VARCHAR, artist VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE home_team = \"richmond\"", "question": "What date did the home team Richmond play?", "context": "CREATE TABLE table_name_34 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_95 WHERE home_team = \"hawthorn\"", "question": "What size was the biggest crowd that watched the home team Hawthorn play?", "context": "CREATE TABLE table_name_95 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MAX(caps) FROM table_name_55 WHERE position = \"lock\" AND club_province = \"vicenza rangers\"", "question": "What is the high cap total for a lock with the vicenza rangers?", "context": "CREATE TABLE table_name_55 (caps INTEGER, position VARCHAR, club_province VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_19 WHERE player = \"nese malifa\"", "question": "When was nese malifa born?", "context": "CREATE TABLE table_name_19 (date_of_birth__age_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_3 WHERE player = \"jj gagiano\"", "question": "What position for jj gagiano?", "context": "CREATE TABLE table_name_3 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_66 WHERE caps = 41", "question": "What club/province has 41 caps?", "context": "CREATE TABLE table_name_66 (club_province VARCHAR, caps VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE grand_prix = \"australian grand prix\"", "question": "Name the date for the australian grand prix.", "context": "CREATE TABLE table_name_12 (date VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_33 WHERE pole_position = \"damon hill\" AND location = \"magny-cours\"", "question": "Who did the fastest lap when pole position was damon hill and the location was magny-cours?", "context": "CREATE TABLE table_name_33 (fastest_lap VARCHAR, pole_position VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE grand_prix = \"canadian grand prix\"", "question": "What was the date for the canadian grand prix?", "context": "CREATE TABLE table_name_65 (date VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT SUM(foundation) FROM table_name_79 WHERE japanese_orthography = \"\u56fd\u7acb\u770b\u8b77\u5927\u5b66\u6821\"", "question": "What is the number of the Foundation with Japanese orthography of \u56fd\u7acb\u770b\u8b77\u5927\u5b66\u6821?", "context": "CREATE TABLE table_name_79 (foundation INTEGER, japanese_orthography VARCHAR)"}, {"answer": "SELECT MIN(yards) FROM table_name_30 WHERE avg = 7 AND long < 7", "question": "what is the least yards when the average is 7 and the long is less than 7?", "context": "CREATE TABLE table_name_30 (yards INTEGER, avg VARCHAR, long VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_32 WHERE driver = \"ralph firman\" AND grid > 19", "question": "What is the average laps for ralph firman with a grid of over 19?", "context": "CREATE TABLE table_name_32 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT grid FROM table_name_53 WHERE laps = 6", "question": "What grid features 6 laps?", "context": "CREATE TABLE table_name_53 (grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(asts) FROM table_name_35 WHERE school_country = \"boston college\" AND rebs > 63", "question": "What's the sum of asts for boston college with a rebs over 63?", "context": "CREATE TABLE table_name_35 (asts INTEGER, school_country VARCHAR, rebs VARCHAR)"}, {"answer": "SELECT pos FROM table_name_52 WHERE asts < 117", "question": "What's the pos for an asts less than 117?", "context": "CREATE TABLE table_name_52 (pos VARCHAR, asts INTEGER)"}, {"answer": "SELECT COUNT(release_date) FROM table_name_7 WHERE country = \"canada\"", "question": "How many release dates has Canada had?", "context": "CREATE TABLE table_name_7 (release_date VARCHAR, country VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_67 WHERE time_retired = \"engine\" AND grid = 1", "question": "What constructor is grid 1 with a time/retired of engine?", "context": "CREATE TABLE table_name_67 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_34 WHERE grid = 14", "question": "Who constructed grid 14?", "context": "CREATE TABLE table_name_34 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_53 WHERE 2004 = \"a\" AND 2003 = \"a\" AND 2012 = \"3r\"", "question": "I want to know the 2001 that has a 2004 of a and 2003 of a with 2012 of 3r", "context": "CREATE TABLE table_name_53 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_87 WHERE 2001 = \"wta premier 5 tournaments\"", "question": "Tell me the 2008 for when 2001 of wta premier 5 tournaments", "context": "CREATE TABLE table_name_87 (Id VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_87 WHERE 2001 = \"wta premier 5 tournaments\"", "question": "I want to know the 2013 when 2001 was wta premier 5 tournaments", "context": "CREATE TABLE table_name_87 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_14 WHERE 2010 = \"olympic games\"", "question": "Tell me the 2007 for 2010 olympic games", "context": "CREATE TABLE table_name_14 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_61 WHERE 2012 = \"21\"", "question": "Tell me the 2004 for 2012 of 21", "context": "CREATE TABLE table_name_61 (Id VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_97 WHERE home_team = \"richmond\"", "question": "When Richmond was the Home team, who was the away team?", "context": "CREATE TABLE table_name_97 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_29 WHERE venue = \"corio oval\"", "question": "Which home team plays in the Corio Oval venue?", "context": "CREATE TABLE table_name_29 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_60 WHERE venue = \"emcg\"", "question": "When the game was played at the EMCG venue, who was the away team?", "context": "CREATE TABLE table_name_60 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_55 WHERE driver = \"jenson button\"", "question": "who is the constructor when the driver is jenson button?", "context": "CREATE TABLE table_name_55 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT grid FROM table_name_79 WHERE time_retired = \"+27.112\"", "question": "what is the grid when the time/retired is +27.112?", "context": "CREATE TABLE table_name_79 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_88 WHERE driver = \"huub rothengatter\" AND grid < 24", "question": "I want the fewest Laps for Huub Rothengatter and grid less than 24", "context": "CREATE TABLE table_name_88 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_47 WHERE laps = 47 AND driver = \"ren\u00e9 arnoux\"", "question": "Tell me the time/retired with Laps of 47 and driver of ren\u00e9 arnoux", "context": "CREATE TABLE table_name_47 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(oricon) FROM table_name_17 WHERE romaji_title = \"nakitakunalu\"", "question": "Which Oricon has a Romaji title of nakitakunalu?", "context": "CREATE TABLE table_name_17 (oricon INTEGER, romaji_title VARCHAR)"}, {"answer": "SELECT reference FROM table_name_92 WHERE release_date = \"1996/10/10\"", "question": "Which Reference has a Release date of 1996/10/10?", "context": "CREATE TABLE table_name_92 (reference VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT occupation FROM table_name_38 WHERE residence = \"windsor junction\"", "question": "What is the occupation of the candidate that resides in Windsor Junction?", "context": "CREATE TABLE table_name_38 (occupation VARCHAR, residence VARCHAR)"}, {"answer": "SELECT COUNT(votes) FROM table_name_48 WHERE rank = \"3rd\" AND candidate = \"mary louise lorefice\"", "question": "How many votes did 3rd ranking candidate Mary Louise Lorefice receive?", "context": "CREATE TABLE table_name_48 (votes VARCHAR, rank VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT occupation FROM table_name_35 WHERE candidate = \"mary louise lorefice\"", "question": "What occupation does Mary Louise Lorefice have?", "context": "CREATE TABLE table_name_35 (occupation VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE away_team = \"essendon\"", "question": "When was the game at Essendon?", "context": "CREATE TABLE table_name_83 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_25 WHERE grid = 8", "question": "Who is the constructor with the grid of 8?", "context": "CREATE TABLE table_name_25 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_95 WHERE grid < 3 AND laps = 45", "question": "what is the time/retired when the grid is less than 3 and 45 laps?", "context": "CREATE TABLE table_name_95 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_43 WHERE driver = \"jackie stewart\"", "question": "what is the most laps for driver jackie stewart?", "context": "CREATE TABLE table_name_43 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_56 WHERE driver = \"richard attwood\"", "question": "what is the time/retired for driver richard attwood?", "context": "CREATE TABLE table_name_56 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT d_41 FROM table_name_33 WHERE r_51 = \"r 11\"", "question": "Tell me the D 41 and R 51 of r 11", "context": "CREATE TABLE table_name_33 (d_41 VARCHAR, r_51 VARCHAR)"}, {"answer": "SELECT d_46 FROM table_name_35 WHERE d_44 = \"r 17\"", "question": "I want the D 46 which has a D 44 of r 17", "context": "CREATE TABLE table_name_35 (d_46 VARCHAR, d_44 VARCHAR)"}, {"answer": "SELECT d_41 FROM table_name_63 WHERE d_43 = \"d 18\"", "question": "Tell me the D 41 for D 43 of d 18", "context": "CREATE TABLE table_name_63 (d_41 VARCHAR, d_43 VARCHAR)"}, {"answer": "SELECT d_47 FROM table_name_44 WHERE d_46 = \"r 35\"", "question": "Tell me the D 47 for D 46 of r 35", "context": "CREATE TABLE table_name_44 (d_47 VARCHAR, d_46 VARCHAR)"}, {"answer": "SELECT d_42 FROM table_name_41 WHERE r_51 = \"r 11\"", "question": "I want the D 42 with R 51 of r 11", "context": "CREATE TABLE table_name_41 (d_42 VARCHAR, r_51 VARCHAR)"}, {"answer": "SELECT r_53 FROM table_name_95 WHERE d_41 = \"r 21\"", "question": "I want the R 53 of D 41 of r 21", "context": "CREATE TABLE table_name_95 (r_53 VARCHAR, d_41 VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_30 WHERE gold > 0 AND nation = \"switzerland\"", "question": "What is the low silver total for switzerland with over 0 golds?", "context": "CREATE TABLE table_name_30 (silver INTEGER, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_93 WHERE bronze = 10", "question": "What is the silver total for nations with 10 bronze medals?", "context": "CREATE TABLE table_name_93 (silver INTEGER, bronze VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_5 WHERE nation = \"lithuania\" AND silver < 2", "question": "What is the gold total for lithuania with under 2 silvers?", "context": "CREATE TABLE table_name_5 (gold INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_68 WHERE venue = \"moorabbin oval\"", "question": "What was the score for the home team that played at Moorabbin Oval?", "context": "CREATE TABLE table_name_68 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT screen_size__inch_ FROM table_name_73 WHERE intro_year = \"2006\" AND model = \"iliad\"", "question": "Name the size of the screen that came out in 2006 and is iliad", "context": "CREATE TABLE table_name_73 (screen_size__inch_ VARCHAR, intro_year VARCHAR, model VARCHAR)"}, {"answer": "SELECT report FROM table_name_25 WHERE race = \"belgian grand prix\"", "question": "Which Report includes the Belgian Grand Prix Race?", "context": "CREATE TABLE table_name_25 (report VARCHAR, race VARCHAR)"}, {"answer": "SELECT report FROM table_name_95 WHERE location = \"monaco\"", "question": "Which Report includes Monaco?", "context": "CREATE TABLE table_name_95 (report VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE fastest_lap = \"gunnar nilsson\"", "question": "On what date did Gunnar Nilsson make the fastest lap?", "context": "CREATE TABLE table_name_38 (date VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_71 WHERE race = \"german grand prix\"", "question": "Who had the fastest lap for the German Grand Prix?", "context": "CREATE TABLE table_name_71 (fastest_lap VARCHAR, race VARCHAR)"}, {"answer": "SELECT format FROM table_name_15 WHERE catalog = \"3645\" AND date > 1981 AND label = \"luaka bop\"", "question": "What is the format for the album under the label, luaka bop, that had a catalog number of 3645 and dated after 1981?", "context": "CREATE TABLE table_name_15 (format VARCHAR, label VARCHAR, catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_2 WHERE catalog = \"3645\" AND format = \"cd\" AND label = \"luaka bop\"", "question": "what is the earliest date for the album that had a catalog number of 3645, was formatted as a cd and was under the luaka bop label?", "context": "CREATE TABLE table_name_2 (date INTEGER, label VARCHAR, catalog VARCHAR, format VARCHAR)"}, {"answer": "SELECT label FROM table_name_42 WHERE catalog = \"3645\" AND date > 1987", "question": "Under what label was the album with the catalog of 3645 and came out later than 1987?", "context": "CREATE TABLE table_name_42 (label VARCHAR, catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_59 WHERE home = \"toronto\" AND game__number > 63", "question": "What is the points where Toronto was the home team and the game number was larger than 63?", "context": "CREATE TABLE table_name_59 (points INTEGER, home VARCHAR, game__number VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_85 WHERE driver = \"mike spence\" AND grid > 12", "question": "How many laps did mike spence complete grids above 12?", "context": "CREATE TABLE table_name_85 (laps VARCHAR, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_70 WHERE constructor = \"brm\" AND grid = 12", "question": "How many average laps did brm complete in grids larger than 12?", "context": "CREATE TABLE table_name_70 (laps INTEGER, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_17 WHERE grid > 3 AND time_retired = \"accident\"", "question": "Who drove in grids more than 3 and exited in an accident?", "context": "CREATE TABLE table_name_17 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT grid FROM table_name_21 WHERE driver = \"jim clark\"", "question": "In what grid did jim clark drive in?", "context": "CREATE TABLE table_name_21 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_3 WHERE date = \"21 jul 2007\"", "question": "Which opponent has a date 21 jul 2007?", "context": "CREATE TABLE table_name_3 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_91 WHERE home_team = \"melbourne\"", "question": "What was the venue of the Melbourne team?", "context": "CREATE TABLE table_name_91 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_45 WHERE constructor = \"maserati\" AND circuit = \"aintree\" AND winning_driver = \"stirling moss\"", "question": "What was the race that featured stirling moss winning with a maserati at aintree?", "context": "CREATE TABLE table_name_45 (race_name VARCHAR, winning_driver VARCHAR, constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT report FROM table_name_98 WHERE circuit = \"caen\"", "question": "What does the Circuit of caen report?", "context": "CREATE TABLE table_name_98 (report VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_51 WHERE race_name = \"iv grand prix de caen\"", "question": "Who is the winning drive of iv grand prix de caen?", "context": "CREATE TABLE table_name_51 (winning_driver VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT ship_types_delivered FROM table_name_32 WHERE yard_name = \"froemming brothers\"", "question": "What types of ships were made at the Froemming Brothers ship yard?", "context": "CREATE TABLE table_name_32 (ship_types_delivered VARCHAR, yard_name VARCHAR)"}, {"answer": "SELECT appearances FROM table_name_5 WHERE goals = 36", "question": "What is the amount of apperances of the person who had 36 goals?", "context": "CREATE TABLE table_name_5 (appearances VARCHAR, goals VARCHAR)"}, {"answer": "SELECT name FROM table_name_7 WHERE points = 151.66", "question": "Tell me the name with points of 151.66", "context": "CREATE TABLE table_name_7 (name VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_98 WHERE places < 94 AND points < 169.8 AND nation = \"japan\"", "question": "Tell me the total number of rank for places less than 94 and points less than 169.8 for japan", "context": "CREATE TABLE table_name_98 (rank VARCHAR, nation VARCHAR, places VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(sp) + fs FROM table_name_75 WHERE rank > 8 AND nation = \"netherlands\" AND points > 127.26", "question": "Tell me the total number of SP+FS with rank more than 8 for the netherlands and points more than 127.26", "context": "CREATE TABLE table_name_75 (fs VARCHAR, sp VARCHAR, points VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(sp) + fs FROM table_name_28 WHERE places = 60 AND points > 151.66", "question": "Name the total number of SP+FS for places of 60 and points more than 151.66", "context": "CREATE TABLE table_name_28 (fs VARCHAR, sp VARCHAR, places VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(sp) + fs FROM table_name_2 WHERE places < 94 AND name = \"renata baierova\"", "question": "Name the average SP+FS with places less tha 94 for renata baierova", "context": "CREATE TABLE table_name_2 (fs VARCHAR, sp INTEGER, places VARCHAR, name VARCHAR)"}, {"answer": "SELECT color FROM table_name_14 WHERE model__number = \"pd-kb400w\"", "question": "What color is model # pd-kb400w?", "context": "CREATE TABLE table_name_14 (color VARCHAR, model__number VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_name_29 WHERE swimsuit > 6.89 AND evening_gown > 7.76 AND state = \"illinois\" AND interview > 8.57", "question": "What's the lowest average for a swimsuit over 6.89, evening gown over 7.76, and an interview over 8.57 in illinois?", "context": "CREATE TABLE table_name_29 (average INTEGER, interview VARCHAR, state VARCHAR, swimsuit VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT MAX(swimsuit) FROM table_name_13 WHERE average < 8.073 AND evening_gown < 8.31 AND interview > 8.23 AND state = \"georgia\"", "question": "What's the highest swimsuit for an average less than 8.073, evening gown less than 8.31, and an interview over 8.23 in georgia?", "context": "CREATE TABLE table_name_13 (swimsuit INTEGER, state VARCHAR, interview VARCHAR, average VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT MIN(swimsuit) FROM table_name_43 WHERE state = \"utah\" AND interview > 8.53", "question": "What's utah's lowest swimsuit with an interview over 8.53?", "context": "CREATE TABLE table_name_43 (swimsuit INTEGER, state VARCHAR, interview VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_66 WHERE date = \"october 9, 1938\"", "question": "What week was October 9, 1938?", "context": "CREATE TABLE table_name_66 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_42 WHERE away_team = \"collingwood\"", "question": "What home team played Collingwood as the away team?", "context": "CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_77 WHERE venue = \"junction oval\"", "question": "What was the score of the away team at Junction Oval?", "context": "CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_96 WHERE driver = \"giancarlo fisichella\"", "question": "Who built giancarlo fisichella's car?", "context": "CREATE TABLE table_name_96 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_66 WHERE driver = \"mika salo\" AND grid > 17", "question": "What is the high lap total for mika salo with a grid greater than 17?", "context": "CREATE TABLE table_name_66 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT location FROM table_name_4 WHERE country = \"scotland\" AND name = \"muirfield\"", "question": "Where was the location with Muirfield in Scotland?", "context": "CREATE TABLE table_name_4 (location VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE name = \"pieroni\"", "question": "Name the country for pieroni", "context": "CREATE TABLE table_name_46 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_90 WHERE type = \"6-month loan\" AND moving_from = \"lens\"", "question": "Name the country for 6-month loan and moving from of lens", "context": "CREATE TABLE table_name_90 (country VARCHAR, type VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_88 WHERE transfer_window = \"summer\" AND name = \"schollen\"", "question": "Name the transfer fee with a transfer window of summer for schollen", "context": "CREATE TABLE table_name_88 (transfer_fee VARCHAR, transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_9 WHERE moving_from = \"1. fc n\u00fcrnberg\"", "question": "Name the name that has moving of 1. fc n\u00fcrnberg.", "context": "CREATE TABLE table_name_9 (name VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT country FROM table_name_4 WHERE name = \"pol\u00e1k\"", "question": "Name the country with pol\u00e1k", "context": "CREATE TABLE table_name_4 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_11 WHERE away_team = \"north melbourne\"", "question": "What was the home team score at North Melbourne's away game?", "context": "CREATE TABLE table_name_11 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_47 WHERE away_team = \"richmond\"", "question": "What was Collingwood's score at the home match against Richmond?", "context": "CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_14 WHERE grid > 24", "question": "What is the lowest number of laps with a grid larger than 24?", "context": "CREATE TABLE table_name_14 (laps INTEGER, grid INTEGER)"}, {"answer": "SELECT MAX(grid) FROM table_name_5 WHERE driver = \"jo siffert\" AND laps > 12", "question": "For Jo Siffert, what was the highest grid with the number of laps above 12?", "context": "CREATE TABLE table_name_5 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_23 WHERE driver = \"gerhard berger\"", "question": "What is the average number of laps when Gerhard Berger is the driver?", "context": "CREATE TABLE table_name_23 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_9 WHERE laps > 50 AND grid = 7", "question": "What is the name of the constructor who has more than 50 laps and a grid of 7?", "context": "CREATE TABLE table_name_9 (constructor VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT title FROM table_name_50 WHERE production_code = \"ad1b04\"", "question": "What is the title of the episode with a production code of ad1b04?", "context": "CREATE TABLE table_name_50 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT time FROM table_name_22 WHERE event = \"tfc 21\"", "question": "Name the time for event of tfc 21", "context": "CREATE TABLE table_name_22 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT sport FROM table_name_7 WHERE gold > 0 AND silver = 2", "question": "What sport has a Gold larger than 0, and a Silver of 2?", "context": "CREATE TABLE table_name_7 (sport VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_29 WHERE \"total\" > 18 AND sport = \"total\" AND silver < 143", "question": "What is the lowest Bronze that has a Total larger than 18 and a Silver smaller than 143?", "context": "CREATE TABLE table_name_29 (bronze INTEGER, silver VARCHAR, sport VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_13 WHERE bronze > 19 AND total < 125", "question": "How many total Silver has a Bronze larger than 19 and a Total smaller than 125?", "context": "CREATE TABLE table_name_13 (silver INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_7 WHERE bronze > 10 AND silver > 28 AND gold = 58", "question": "What is the highest total Bronze larger than 10, Silver larger than 28, and a Gold of 58?", "context": "CREATE TABLE table_name_7 (total INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_97 WHERE gold > 0 AND silver < 4 AND sport = \"football\" AND bronze > 1", "question": "What is the lowest Total that has a Gold larger than 0, Silver smaller than 4, Sport of football, and a Bronze larger than 1?", "context": "CREATE TABLE table_name_97 (total INTEGER, bronze VARCHAR, sport VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_77 WHERE grid = 9", "question": "what is the time/retired when the grid is 9?", "context": "CREATE TABLE table_name_77 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_5 WHERE driver = \"ron flockhart\"", "question": "what is the number of laps when the driver is ron flockhart?", "context": "CREATE TABLE table_name_5 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine FROM table_name_72 WHERE power = \"114hp (85kw)\"", "question": "What Engine has a Power of 114hp (85kw)?", "context": "CREATE TABLE table_name_72 (engine VARCHAR, power VARCHAR)"}, {"answer": "SELECT torque FROM table_name_68 WHERE engine = \"amc power tech i6\"", "question": "What Torque has an AMC Power Tech I6 Engine?", "context": "CREATE TABLE table_name_68 (torque VARCHAR, engine VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_57 WHERE power = \"185hp (138kw)\"", "question": "What Displacement has 185hp (138kw) Power o", "context": "CREATE TABLE table_name_57 (displacement VARCHAR, power VARCHAR)"}, {"answer": "SELECT venue FROM table_name_47 WHERE home_team = \"collingwood\"", "question": "What venue features collingwood as the home side?", "context": "CREATE TABLE table_name_47 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_17 WHERE game_site = \"veterans stadium\"", "question": "What's the attendance numbers for veterans stadium?", "context": "CREATE TABLE table_name_17 (attendance VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT school FROM table_name_79 WHERE player = \"michael dunigan\"", "question": "What is the name of the school that has a player named Michael Dunigan?", "context": "CREATE TABLE table_name_79 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT religion FROM table_name_73 WHERE assumed_office < 2005 AND former_experience = \"commissioner of health\"", "question": "Name the religion for Former Experience of commissioner of health and assumed office before 2005", "context": "CREATE TABLE table_name_73 (religion VARCHAR, assumed_office VARCHAR, former_experience VARCHAR)"}, {"answer": "SELECT MIN(assumed_office) FROM table_name_60 WHERE name = \"madeleine bordallo\"", "question": "Tell me the loewst assume office for madeleine bordallo", "context": "CREATE TABLE table_name_60 (assumed_office INTEGER, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_60 WHERE game = 82", "question": "Which team had a game of 82?", "context": "CREATE TABLE table_name_60 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_77 WHERE venue = \"junction oval\"", "question": "How many people attended the game at Junction Oval?", "context": "CREATE TABLE table_name_77 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_34 WHERE decision = \"gerber\" AND home = \"boston\"", "question": "What was the score for Boston's Home game that had Gerber as the decision?", "context": "CREATE TABLE table_name_34 (score VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_27 WHERE date = \"march 25\"", "question": "What was the record for the game on March 25?", "context": "CREATE TABLE table_name_27 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_51 WHERE home = \"anaheim\"", "question": "Who was the Decision at Anaheim's home game?", "context": "CREATE TABLE table_name_51 (decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT driver FROM table_name_79 WHERE chassis = \"tg183b tg184\"", "question": "Who is the driver of the chassis that is tg183b tg184?", "context": "CREATE TABLE table_name_79 (driver VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_20 WHERE tyres = \"p\" AND driver = \"pierluigi martini\"", "question": "What was the engine belonging to Pierluigi Martini with a Tyre of P?", "context": "CREATE TABLE table_name_20 (engine VARCHAR, tyres VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine FROM table_name_85 WHERE rounds = \"10-13\"", "question": "What was the featured in Engine through rounds 10-13?", "context": "CREATE TABLE table_name_85 (engine VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_22 WHERE driver = \"nigel mansell\"", "question": "Nigel Mansell was the driver in what Entrant?", "context": "CREATE TABLE table_name_22 (entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE name__location_ = \"belyanitsky, ivanovo, and balino\"", "question": "What Date does the Name (location) Belyanitsky, Ivanovo, and Balino have?", "context": "CREATE TABLE table_name_28 (date VARCHAR, name__location_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE home_team = \"north melbourne\"", "question": "What day did North Melbourne play as the home team?", "context": "CREATE TABLE table_name_52 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_20 WHERE venue = \"arden street oval\"", "question": "Who was the away team at Arden Street Oval?", "context": "CREATE TABLE table_name_20 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT ordinary_income_rate FROM table_name_42 WHERE short_term_capital_gain_rate = \"28%\"", "question": "What is the ordinary income rate when short-term capital gain rate is 28%?", "context": "CREATE TABLE table_name_42 (ordinary_income_rate VARCHAR, short_term_capital_gain_rate VARCHAR)"}, {"answer": "SELECT short_term_capital_gain_rate FROM table_name_29 WHERE long_term_gain_on_collectibles = \"15%\"", "question": "What is short-term capital gain rate with long-term gain on collectibles at 15%?", "context": "CREATE TABLE table_name_29 (short_term_capital_gain_rate VARCHAR, long_term_gain_on_collectibles VARCHAR)"}, {"answer": "SELECT long_term_gain_on_collectibles FROM table_name_48 WHERE ordinary_income_rate = \"15%\"", "question": "What long-term gain for collectibles coincides with ordinary income rate 15%?", "context": "CREATE TABLE table_name_48 (long_term_gain_on_collectibles VARCHAR, ordinary_income_rate VARCHAR)"}, {"answer": "SELECT SUM(decile) FROM table_name_99 WHERE authority = \"state\" AND roll = 120", "question": "What is the Decile with a State Authority and a roll of 120?", "context": "CREATE TABLE table_name_99 (decile INTEGER, authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT MAX(roll) FROM table_name_98 WHERE decile < 8 AND authority = \"state\" AND name = \"orere school\"", "question": "What is the highest Roll of Orere School with a Decile less than 8 with a State Authority?", "context": "CREATE TABLE table_name_98 (roll INTEGER, name VARCHAR, decile VARCHAR, authority VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_63 WHERE away_team = \"melbourne\"", "question": "What home team score has a Away team of melbourne?", "context": "CREATE TABLE table_name_63 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_16 WHERE home_team = \"richmond\"", "question": "What away team is the home team richmond?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_4 WHERE driver = \"giancarlo fisichella\" AND laps < 52", "question": "When Giancarlo Fisichella was the Driver and there were less than 52 Laps, what was the highest Grid?", "context": "CREATE TABLE table_name_4 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_11 WHERE grid < 17 AND laps < 52 AND driver = \"olivier panis\"", "question": "Which Constructor has a Grid less than 17, Laps under 52, and Olivier Panis as the Driver?", "context": "CREATE TABLE table_name_11 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_91 WHERE college = \"idaho state\"", "question": "Which 2006 cfl draft pick played college ball at Idaho state?", "context": "CREATE TABLE table_name_91 (pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_22 WHERE college = \"toronto\"", "question": "What position did the CFL player drafted out of college of toronto in 2007 play?", "context": "CREATE TABLE table_name_22 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT date_of_death FROM table_name_97 WHERE date_of_birth = \"28 may 1371\"", "question": "What was the Date of Death of the person whose Date of Birth was 28 May 1371?", "context": "CREATE TABLE table_name_97 (date_of_death VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT reign FROM table_name_25 WHERE date_of_birth = \"22 march 1459\"", "question": "What was the Reign of the person whose Date of Birth was 22 March 1459?", "context": "CREATE TABLE table_name_25 (reign VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_23 WHERE record = \"33-33\"", "question": "Tell me the average year with a record of 33-33", "context": "CREATE TABLE table_name_23 (year INTEGER, record VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_18 WHERE record = \"39-31\"", "question": "Name the total number of years for a 39-31 record", "context": "CREATE TABLE table_name_18 (year VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_98 WHERE manager = \"gene hassell\" AND finish = \"6th\"", "question": "Name the least year for gene hassell manager and 6th finish", "context": "CREATE TABLE table_name_98 (year INTEGER, manager VARCHAR, finish VARCHAR)"}, {"answer": "SELECT finish FROM table_name_64 WHERE record = \"39-31\"", "question": "Name the finish for a 39-31 record", "context": "CREATE TABLE table_name_64 (finish VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(goal_difference) FROM table_name_59 WHERE club = \"ud alzira\" AND played > 38", "question": "What is the lowest goal difference for the club ud alzira, with a played larger than 38?", "context": "CREATE TABLE table_name_59 (goal_difference INTEGER, club VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(goal_difference) FROM table_name_27 WHERE goals_against < 33 AND draws > 13", "question": "What is the goal difference sum that has goals against smaller than 33, draws larger than 13?", "context": "CREATE TABLE table_name_27 (goal_difference INTEGER, goals_against VARCHAR, draws VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_27 WHERE name = \"damia\"", "question": "Name the transfer fee for damia", "context": "CREATE TABLE table_name_27 (transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_24 WHERE transfer_fee = \"free\" AND status = \"transfer\" AND name = \"rodri\"", "question": "Name the moving to with a transfer fee of free with a transfer status for rodri", "context": "CREATE TABLE table_name_24 (moving_to VARCHAR, name VARCHAR, transfer_fee VARCHAR, status VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE venue = \"western oval\"", "question": "When was the game played at the Western Oval venue?", "context": "CREATE TABLE table_name_23 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT livery FROM table_name_33 WHERE serial_no = \"83-1010\"", "question": "What is the livery of the locomotive with a serial number 83-1010?", "context": "CREATE TABLE table_name_33 (livery VARCHAR, serial_no VARCHAR)"}, {"answer": "SELECT livery FROM table_name_86 WHERE serial_no = \"83-1011\"", "question": "What is the livery on the locomotive with a serial number 83-1011?", "context": "CREATE TABLE table_name_86 (livery VARCHAR, serial_no VARCHAR)"}, {"answer": "SELECT locomotive FROM table_name_74 WHERE gauge = \"standard\" AND serial_no = \"83-1015\"", "question": "What is the locomotive with a standard gauge and a serial number of 83-1015?", "context": "CREATE TABLE table_name_74 (locomotive VARCHAR, gauge VARCHAR, serial_no VARCHAR)"}, {"answer": "SELECT entered_service FROM table_name_76 WHERE gauge = \"broad\" AND serial_no = \"83-1018\"", "question": "What is the date of entered service for the locomotive with a broad gauge and a serial no of 83-1018?", "context": "CREATE TABLE table_name_76 (entered_service VARCHAR, gauge VARCHAR, serial_no VARCHAR)"}, {"answer": "SELECT venue FROM table_name_13 WHERE date = \"october 16, 1996\"", "question": "What was the venue on October 16, 1996?", "context": "CREATE TABLE table_name_13 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE result = \"win\" AND competition = \"1998 fifa world cup qualification\" AND date = \"october 30, 1996\"", "question": "What's the score at the October 30, 1996 1998 fifa world cup qualification with a result of win?", "context": "CREATE TABLE table_name_58 (score VARCHAR, date VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE competition = \"friendship cup\"", "question": "When was the friendship cup?", "context": "CREATE TABLE table_name_37 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MIN(cars_per_set) FROM table_name_88 WHERE year_built = \"1977-1979\" AND number > 32", "question": "What is the smallest number for Cars per Set built in 1977-1979 larger than 32?", "context": "CREATE TABLE table_name_88 (cars_per_set INTEGER, year_built VARCHAR, number VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_name_30 WHERE cars_per_set < 9", "question": "What is the largest number of cars per set that is less than 9?", "context": "CREATE TABLE table_name_30 (number INTEGER, cars_per_set INTEGER)"}, {"answer": "SELECT year_built FROM table_name_10 WHERE class = \"class 253\" AND number > 18", "question": "What year was the class 253 larger than 18 built?", "context": "CREATE TABLE table_name_10 (year_built VARCHAR, class VARCHAR, number VARCHAR)"}, {"answer": "SELECT margin FROM table_name_34 WHERE championship = \"masters tournament (2)\"", "question": "What is the margin for the Masters Tournament (2) championship?", "context": "CREATE TABLE table_name_34 (margin VARCHAR, championship VARCHAR)"}, {"answer": "SELECT 54 AS _holes FROM table_name_33 WHERE runner_s__up = \"phil mickelson\"", "question": "What is the round of 54 holes in which Phil Mickelson was the runner-up?", "context": "CREATE TABLE table_name_33 (runner_s__up VARCHAR)"}, {"answer": "SELECT home FROM table_name_27 WHERE date = \"april 14\"", "question": "What is the home team of the April 14 game?", "context": "CREATE TABLE table_name_27 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE visitor = \"detroit\"", "question": "What is the date of the game with Detroit as the visitor team?", "context": "CREATE TABLE table_name_23 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT viewers__m_ FROM table_name_73 WHERE share = 1 AND rating > 0.7000000000000001 AND rank___number_ = \"100/102\"", "question": "How many vieweres for the episode with a share of 1, a Rating larger than 0.7000000000000001, and a Rank (#) of 100/102?", "context": "CREATE TABLE table_name_73 (viewers__m_ VARCHAR, rank___number_ VARCHAR, share VARCHAR, rating VARCHAR)"}, {"answer": "SELECT lead_tpt FROM table_name_68 WHERE bass = \"kevin tomanka\" AND alto_1 = \"alan moffett\"", "question": "Name the lead tpt for bass of kevin tomanka and alto 1 of alan moffett", "context": "CREATE TABLE table_name_68 (lead_tpt VARCHAR, bass VARCHAR, alto_1 VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_86 WHERE venue = \"moorabbin oval\"", "question": "What was the crowd size at the moorabbin oval venue?", "context": "CREATE TABLE table_name_86 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_28 WHERE away_team = \"collingwood\"", "question": "What did the home team score against the away team collingwood?", "context": "CREATE TABLE table_name_28 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT 1 AS _letter FROM table_name_10 WHERE amino_acid = \"asparagine\"", "question": "what is the 1-letter for the amino acid asparagine?", "context": "CREATE TABLE table_name_10 (amino_acid VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_40 WHERE home_team = \"north melbourne\"", "question": "What was home team North Melbourne's opponents score?", "context": "CREATE TABLE table_name_40 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_16 WHERE home_team = \"melbourne\"", "question": "What was Melbourne's score as the home team?", "context": "CREATE TABLE table_name_16 (home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_63 WHERE venue = \"junction oval\"", "question": "Who was the away team at Junction Oval?", "context": "CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT usca FROM table_name_67 WHERE total < 14 AND joint_music_award = \"1\" AND mrhma = \"2\" AND rthk = \"3\"", "question": "What is the USCA that's Total is smaller than 14, with 1 Joint Music Award, MRHMA of 2, and RTHK of 3?", "context": "CREATE TABLE table_name_67 (usca VARCHAR, rthk VARCHAR, mrhma VARCHAR, total VARCHAR, joint_music_award VARCHAR)"}, {"answer": "SELECT total FROM table_name_99 WHERE joint_music_award = \"1\" AND rthk = \"4\" AND usca = \"4\"", "question": "What is the Total with a Joint Music Award of 1, RTHK of 4, and USCA of 4?", "context": "CREATE TABLE table_name_99 (total VARCHAR, usca VARCHAR, joint_music_award VARCHAR, rthk VARCHAR)"}, {"answer": "SELECT joint_music_award FROM table_name_81 WHERE year < 2006 AND rthk = \"1\"", "question": "How many Joint Music Awards were there with a RTHK of 1, in a Year before 2006?", "context": "CREATE TABLE table_name_81 (joint_music_award VARCHAR, year VARCHAR, rthk VARCHAR)"}, {"answer": "SELECT joint_music_award FROM table_name_32 WHERE total > 18 AND year > 2007", "question": "How many Joint Music Awards are there when the Total is larger than 18, in a Year after 2007?", "context": "CREATE TABLE table_name_32 (joint_music_award VARCHAR, total VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_47 WHERE semi = 49.19", "question": "Which lane did the athlete swim in who had a semi-final time of 49.19?", "context": "CREATE TABLE table_name_47 (lane INTEGER, semi VARCHAR)"}, {"answer": "SELECT species FROM table_name_70 WHERE gender = \"male\"", "question": "Which species is male?", "context": "CREATE TABLE table_name_70 (species VARCHAR, gender VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_71 WHERE venue = \"junction oval\"", "question": "What was the home teams score at Junction Oval?", "context": "CREATE TABLE table_name_71 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT president FROM table_name_6 WHERE presidency > 7", "question": "What President has a Presidency greater than 7?", "context": "CREATE TABLE table_name_6 (president VARCHAR, presidency INTEGER)"}, {"answer": "SELECT MAX(presidency) FROM table_name_8 WHERE left_office = \"1998\" AND took_office > 1974", "question": "What is the highest Presidency that Took Office after 1974 and Left Office in 1998?", "context": "CREATE TABLE table_name_8 (presidency INTEGER, left_office VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT SUM(took_office) FROM table_name_42 WHERE left_office = \"incumbent\"", "question": "What is the Took Office Date of the Presidency that Left Office Incumbent?", "context": "CREATE TABLE table_name_42 (took_office INTEGER, left_office VARCHAR)"}, {"answer": "SELECT MAX(took_office) FROM table_name_22 WHERE left_office = \"1998\"", "question": "What was the greatest Took Office dates that Left Office in 1998?", "context": "CREATE TABLE table_name_22 (took_office INTEGER, left_office VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_76 WHERE driver = \"andrea de cesaris\"", "question": "What is the average Laps for andrea de cesaris?", "context": "CREATE TABLE table_name_76 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_81 WHERE laps > 51 AND driver = \"jj lehto\"", "question": "What is the lowest Grid for jj lehto with over 51 laps?", "context": "CREATE TABLE table_name_81 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_83 WHERE time_retired = \"+2 laps\" AND laps < 51", "question": "What is the average Grid that has a Time/Retired of +2 laps, and under 51 laps?", "context": "CREATE TABLE table_name_83 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_48 WHERE venue = \"victoria park\"", "question": "What's the Home teams Venue near Victoria Park?", "context": "CREATE TABLE table_name_48 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_33 WHERE home_team = \"footscray\"", "question": "What is the Home team with a crowd relevant to footscray?", "context": "CREATE TABLE table_name_33 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_91 WHERE home = \"nashville\"", "question": "What is the team's record when they play nashville at home?", "context": "CREATE TABLE table_name_91 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT decision FROM table_name_22 WHERE visitor = \"phoenix\"", "question": "What is the decision when they're at phoenix?", "context": "CREATE TABLE table_name_22 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE tournament = \"frankfurt\"", "question": "What was the score in the Tournament of Frankfurt?", "context": "CREATE TABLE table_name_66 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winner FROM table_name_56 WHERE tournament = \"graz-seiersberg\"", "question": "Who was the winner in the Tournament of Graz-Seiersberg?", "context": "CREATE TABLE table_name_56 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_68 WHERE winner = \"paul haarhuis\"", "question": "Who earned third place when the winner was Paul Haarhuis?", "context": "CREATE TABLE table_name_68 (third_place VARCHAR, winner VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_35 WHERE time_retired = \"differential\" AND grid > 2", "question": "what is the most laps with the time/retired is differential and the grid is more than 2?", "context": "CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_94 WHERE grid = 5", "question": "what is the least laps when the grid is 5?", "context": "CREATE TABLE table_name_94 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT deleted FROM table_name_8 WHERE name = \"anniston army depot (se industrial area)\"", "question": "On what date was Anniston Army Depot (SE Industrial Area) deleted?", "context": "CREATE TABLE table_name_8 (deleted VARCHAR, name VARCHAR)"}, {"answer": "SELECT county FROM table_name_68 WHERE listed = \"09/21/1984\" AND construction_completed = \"07/19/2000\"", "question": "In what county is the entry that has a Construction Completed date of 07/19/2000 and a Listed date of 09/21/1984 located?", "context": "CREATE TABLE table_name_68 (county VARCHAR, listed VARCHAR, construction_completed VARCHAR)"}, {"answer": "SELECT deleted FROM table_name_35 WHERE listed = \"09/21/1984\" AND name = \"stauffer chemical company (lemoyne plant)\"", "question": "On what date was Stauffer Chemical Company (Lemoyne Plant), which was listed on 09/21/1984, deleted?", "context": "CREATE TABLE table_name_35 (deleted VARCHAR, listed VARCHAR, name VARCHAR)"}, {"answer": "SELECT proposed FROM table_name_56 WHERE cerclis_id = \"al0001058056\"", "question": "What was the Proposed date of the entry that has a CERCLIS ID of al0001058056?", "context": "CREATE TABLE table_name_56 (proposed VARCHAR, cerclis_id VARCHAR)"}, {"answer": "SELECT first_appearance FROM table_name_60 WHERE year = 1966 AND name = \"x-2-y\"", "question": "What first appeared in 1966 in the comic X-2-Y?", "context": "CREATE TABLE table_name_60 (first_appearance VARCHAR, year VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_75 WHERE sport = \"baseball\" AND class = \"aaa\"", "question": "Which baseball team is class AAA?", "context": "CREATE TABLE table_name_75 (team VARCHAR, sport VARCHAR, class VARCHAR)"}, {"answer": "SELECT venue FROM table_name_55 WHERE away_team = \"collingwood\"", "question": "Where does Collingwood play their games?", "context": "CREATE TABLE table_name_55 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_20 WHERE player = \"robert nkemdiche\"", "question": "Which position does Robert Nkemdiche play?", "context": "CREATE TABLE table_name_20 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_59 WHERE player = \"reuben foster\"", "question": "What is Reuben Foster's college?", "context": "CREATE TABLE table_name_59 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_68 WHERE hometown = \"muscle shoals, alabama\"", "question": "Which position does the player from Muscle Shoals, Alabama play?", "context": "CREATE TABLE table_name_68 (position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE college = \"virginia\"", "question": "Which player is attending college at Virginia?", "context": "CREATE TABLE table_name_43 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_94 WHERE school = \"hoover high school\"", "question": "Which player attended Hoover High School?", "context": "CREATE TABLE table_name_94 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE opponent = \"giants\" AND date = \"may 12\"", "question": "What is the team's record on may 12 when they play the giants?", "context": "CREATE TABLE table_name_58 (record VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_32 WHERE visitor = \"san jose\" AND date = \"may 4\"", "question": "What is the attendance at the game where San Jose was the visitor on May 4?", "context": "CREATE TABLE table_name_32 (attendance VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_30 WHERE date = \"may 2\"", "question": "Who was the home team on the May 2 game?", "context": "CREATE TABLE table_name_30 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE crowd > 20 OFFSET 000", "question": "What date is the crowd larger than 20,000?", "context": "CREATE TABLE table_name_56 (date VARCHAR, crowd INTEGER)"}, {"answer": "SELECT record FROM table_name_85 WHERE score = \"11-10\"", "question": "What was the record when the score was 11-10?", "context": "CREATE TABLE table_name_85 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_9 WHERE attendance = \"22,713\"", "question": "What was the record when the attendance was 22,713?", "context": "CREATE TABLE table_name_9 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_14 WHERE record = \"49-61\"", "question": "What was the attendance at the game when the record was 49-61?", "context": "CREATE TABLE table_name_14 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE opponent = \"detroit tigers\" AND attendance = \"38,639\"", "question": "On what date was there a game in which the opponent was the Detroit Tigers, and the attendance was 38,639?", "context": "CREATE TABLE table_name_24 (date VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT software FROM table_name_78 WHERE cost___usd__ = \"free\" AND latest_stable_date__version_ = \"1.1\"", "question": "What is the free sotware with the latest stable date version of 1.1?", "context": "CREATE TABLE table_name_78 (software VARCHAR, cost___usd__ VARCHAR, latest_stable_date__version_ VARCHAR)"}, {"answer": "SELECT software FROM table_name_87 WHERE latest_stable_date__version_ = \"0.6.1\"", "question": "Name the software with the latest stable date of 0.6.1", "context": "CREATE TABLE table_name_87 (software VARCHAR, latest_stable_date__version_ VARCHAR)"}, {"answer": "SELECT cost___usd__ FROM table_name_48 WHERE latest_stable_date__version_ = \"online\"", "question": "Name the cost for latest stable date of online", "context": "CREATE TABLE table_name_48 (cost___usd__ VARCHAR, latest_stable_date__version_ VARCHAR)"}, {"answer": "SELECT birth_place FROM table_name_83 WHERE monarchs_served = \"george v\" AND entered_office = \"23 october 1922\"", "question": "What is the birth place of the prime minister who served George V and entered office on 23 October 1922?", "context": "CREATE TABLE table_name_83 (birth_place VARCHAR, monarchs_served VARCHAR, entered_office VARCHAR)"}, {"answer": "SELECT political_party FROM table_name_5 WHERE monarchs_served = \"george v\" AND birth_place = \"manchester\"", "question": "To which political party did the prime minister who served under George V and was born in Manchester belong?", "context": "CREATE TABLE table_name_5 (political_party VARCHAR, monarchs_served VARCHAR, birth_place VARCHAR)"}, {"answer": "SELECT left_office FROM table_name_49 WHERE entered_office = \"7 december 1916\"", "question": "What date did the prime minister who entered office on 7 December 1916 leave office?", "context": "CREATE TABLE table_name_49 (left_office VARCHAR, entered_office VARCHAR)"}, {"answer": "SELECT monarchs_served FROM table_name_18 WHERE name = \"stanley baldwin (1st ministry)\"", "question": "What monarch(s) did Stanley Baldwin (1st ministry) serve?", "context": "CREATE TABLE table_name_18 (monarchs_served VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE game_site = \"rich stadium\"", "question": "What is the date of the game played at rich stadium?", "context": "CREATE TABLE table_name_60 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT college FROM table_name_38 WHERE player = \"chito victolero\"", "question": "What college has Chito Victolero?", "context": "CREATE TABLE table_name_38 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_43 WHERE player = \"jojo manalo\"", "question": "What college has Jojo Manalo?", "context": "CREATE TABLE table_name_43 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_52 WHERE college = \"perpetual help\" AND pba_team = \"coca-cola tigers\"", "question": "What is the pick number for the College of Perpetual help with the Coca-Cola Tigers as a PBA team?", "context": "CREATE TABLE table_name_52 (pick VARCHAR, college VARCHAR, pba_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE date = \"may 5\"", "question": "What is the score of the game on May 5?", "context": "CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_1 WHERE attendance = \"18,084\"", "question": "What is the record of the game with 18,084 in attendance?", "context": "CREATE TABLE table_name_1 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_36 WHERE date = \"may 30\"", "question": "What is the record of the game on May 30?", "context": "CREATE TABLE table_name_36 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_34 WHERE tournament = \"zurich\"", "question": "Who won third place in the Zurich Tournament?", "context": "CREATE TABLE table_name_34 (third_place VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winner FROM table_name_79 WHERE score = \"7\u20136 (7\u20133) , 2\u20136, [10\u20136]\"", "question": "Who was the winner with a score of 7\u20136 (7\u20133) , 2\u20136, [10\u20136]?", "context": "CREATE TABLE table_name_79 (winner VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_23 WHERE winner = \"thomas enqvist\"", "question": "Which tournament did Thomas Enqvist win?", "context": "CREATE TABLE table_name_23 (tournament VARCHAR, winner VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_59 WHERE runner_up = \"tim henman\"", "question": "Which tournament was Tim Henman the runner-up in?", "context": "CREATE TABLE table_name_59 (tournament VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT venue FROM table_name_40 WHERE runs = \"153\"", "question": "What is the venue where 153 runs were scored?", "context": "CREATE TABLE table_name_40 (venue VARCHAR, runs VARCHAR)"}, {"answer": "SELECT partnerships FROM table_name_17 WHERE versus = \"namibia\" AND runs = \"166*\"", "question": "What is the partnership in the game with 166* runs and an opponent of Namibia?", "context": "CREATE TABLE table_name_17 (partnerships VARCHAR, versus VARCHAR, runs VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE versus = \"south africa\" AND wicket = \"2nd\"", "question": "What is the date of the game against South Africa and 2nd wickets?", "context": "CREATE TABLE table_name_66 (date VARCHAR, versus VARCHAR, wicket VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_79 WHERE date = \"11 june 1966\" AND home_team = \"carlton\"", "question": "Who was the Away team that played at Carlton on 11 June 1966?", "context": "CREATE TABLE table_name_79 (away_team VARCHAR, date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_93 WHERE home_team = \"carlton\"", "question": "What was the smallest crowd at a home game of carlton?", "context": "CREATE TABLE table_name_93 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT title FROM table_name_43 WHERE year = \"n.m.\"", "question": "What's the title for year n.m.?", "context": "CREATE TABLE table_name_43 (title VARCHAR, year VARCHAR)"}, {"answer": "SELECT language FROM table_name_87 WHERE translator = \"ritah meltser and amatsyah porat\"", "question": "What is the language for translators ritah meltser and amatsyah porat?", "context": "CREATE TABLE table_name_87 (language VARCHAR, translator VARCHAR)"}, {"answer": "SELECT MIN(pages) FROM table_name_39 WHERE title = \"al-jiniral fi matahatihi\"", "question": "What's the fewest number of pages for the title al-jiniral fi matahatihi?", "context": "CREATE TABLE table_name_39 (pages INTEGER, title VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE name = \"zouave\"", "question": "What is the date for Zouave?", "context": "CREATE TABLE table_name_99 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE name = \"granville\"", "question": "What is the date for the name of Granville?", "context": "CREATE TABLE table_name_39 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_84 WHERE date = \"17 march 1943\" AND sunk_by = \"u-305\"", "question": "What is the name of the ship sunk by U-305 on 17 March 1943?", "context": "CREATE TABLE table_name_84 (name VARCHAR, date VARCHAR, sunk_by VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE visitor = \"jazz\" AND leading_scorer = \"mehmet okur (22)\"", "question": "Which date's visitor was jazz, when the leading scorer was Mehmet Okur (22)?", "context": "CREATE TABLE table_name_4 (date VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT club FROM table_name_27 WHERE european_cup = \"fiba european champion's cup\" AND national_cup = \"italian cup\"", "question": "What Club has Fiba European Champion's Cup and an Italian Cup?", "context": "CREATE TABLE table_name_27 (club VARCHAR, european_cup VARCHAR, national_cup VARCHAR)"}, {"answer": "SELECT european_cup FROM table_name_24 WHERE national_league = \"israeli premier league\"", "question": "What European Cup is in Israeli Premier League?", "context": "CREATE TABLE table_name_24 (european_cup VARCHAR, national_league VARCHAR)"}, {"answer": "SELECT season FROM table_name_4 WHERE european_cup = \"euroleague\" AND national_cup = \"greek cup\"", "question": "Which season is Euroleague with Greek Cup?", "context": "CREATE TABLE table_name_4 (season VARCHAR, european_cup VARCHAR, national_cup VARCHAR)"}, {"answer": "SELECT european_cup FROM table_name_78 WHERE season = \"1990-91\"", "question": "Which European Cup is in the 1990-91 season?", "context": "CREATE TABLE table_name_78 (european_cup VARCHAR, season VARCHAR)"}, {"answer": "SELECT european_cup FROM table_name_91 WHERE season = \"2006-07\"", "question": "Which European Cup is in the 2006-07 season?", "context": "CREATE TABLE table_name_91 (european_cup VARCHAR, season VARCHAR)"}, {"answer": "SELECT national_league FROM table_name_7 WHERE season = \"1969-70\"", "question": "Which National League is in 1969-70 season?", "context": "CREATE TABLE table_name_7 (national_league VARCHAR, season VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_77 WHERE apparent_magnitude = 13", "question": "what is the right ascension (j2000) when the apparent magnitude is 13?", "context": "CREATE TABLE table_name_77 (right_ascension___j2000__ VARCHAR, apparent_magnitude VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_61 WHERE right_ascension___j2000__ = \"09h51m54.0s\"", "question": "what is the constellation when the right ascension (j2000) is 09h51m54.0s?", "context": "CREATE TABLE table_name_61 (constellation VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT MIN(apparent_magnitude) FROM table_name_66 WHERE object_type = \"spiral galaxy\" AND constellation = \"leo minor\" AND ngc_number > 3021", "question": "what is the lowest apparent magnitude when the object type is spiral galaxy, the constellation is leo minor and the ngc number is more than 3021?", "context": "CREATE TABLE table_name_66 (apparent_magnitude INTEGER, ngc_number VARCHAR, object_type VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_45 WHERE goals_for = 58 AND losses = 12 AND goal_difference < 21", "question": "Name the total number of Draws when goals for is 58 and losses is 12 when goal differences is less than 21", "context": "CREATE TABLE table_name_45 (draws VARCHAR, goal_difference VARCHAR, goals_for VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_66 WHERE draws < 11 AND points = \"54+16\" AND goals_against < 39", "question": "How many goals for where there when draws are less than 11, points of is 54+16 and goals against are less than 39?", "context": "CREATE TABLE table_name_66 (goals_for VARCHAR, goals_against VARCHAR, draws VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_67 WHERE points = \"31-7\" AND position = 16 AND goals_for < 35", "question": "Name the total number of played when points of is 31-7, position is 16 and goals for is less than 35", "context": "CREATE TABLE table_name_67 (played VARCHAR, goals_for VARCHAR, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(goal_difference) FROM table_name_49 WHERE position > 20", "question": "Name the total number of goal difference when the position is more than 20", "context": "CREATE TABLE table_name_49 (goal_difference VARCHAR, position INTEGER)"}, {"answer": "SELECT SUM(draws) FROM table_name_82 WHERE position < 17 AND wins < 11", "question": "Name the sum of draws when the position is less than 17 and wins is less than 11", "context": "CREATE TABLE table_name_82 (draws INTEGER, position VARCHAR, wins VARCHAR)"}, {"answer": "SELECT position_in_2012 FROM table_name_93 WHERE last_title = \"n/a\" AND first_season = \"2011\"", "question": "what is the position is 2012 when the last title is n/a and the first season is 2011?", "context": "CREATE TABLE table_name_93 (position_in_2012 VARCHAR, last_title VARCHAR, first_season VARCHAR)"}, {"answer": "SELECT last_title FROM table_name_91 WHERE titles > 12 AND position_in_2012 = \"7th\"", "question": "what is the last title when the titles is more than 12 and the position in 2012 is 7th", "context": "CREATE TABLE table_name_91 (last_title VARCHAR, titles VARCHAR, position_in_2012 VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_30 WHERE placings = \"28.5\" AND total < 92.7", "question": "What is the rank number for a placing of 28.5 and a total less than 92.7?", "context": "CREATE TABLE table_name_30 (rank VARCHAR, placings VARCHAR, total VARCHAR)"}, {"answer": "SELECT placings FROM table_name_15 WHERE total < 96.07 AND nation = \"united states\"", "question": "What is the placing value for a total less than 96.07 in the United States?", "context": "CREATE TABLE table_name_15 (placings VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_57 WHERE rank = 11", "question": "What is the total for Rank 11?", "context": "CREATE TABLE table_name_57 (total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_25 WHERE nation = \"switzerland\"", "question": "What is the sum of all total values for Switzerland?", "context": "CREATE TABLE table_name_25 (total INTEGER, nation VARCHAR)"}, {"answer": "SELECT rank FROM table_name_66 WHERE total = 92.7", "question": "What rank goes to a total of 92.7?", "context": "CREATE TABLE table_name_66 (rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT name FROM table_name_60 WHERE rank > 3 AND placings = \"64\"", "question": "Who has a rank great than 3 and a placing of 64?", "context": "CREATE TABLE table_name_60 (name VARCHAR, rank VARCHAR, placings VARCHAR)"}, {"answer": "SELECT COUNT(horizontal_bar) FROM table_name_68 WHERE team = \"japan (jpn)\" AND parallel_bars < 38.924", "question": "How many Horizontal Bars have a Team of japan (jpn), and Parallel Bars smaller than 38.924?", "context": "CREATE TABLE table_name_68 (horizontal_bar VARCHAR, team VARCHAR, parallel_bars VARCHAR)"}, {"answer": "SELECT COUNT(pommel_horse) FROM table_name_16 WHERE rings = 37.461 AND total < 229.507", "question": "How many pommel Horses have Rings of 37.461, and a Total smaller than 229.507?", "context": "CREATE TABLE table_name_16 (pommel_horse VARCHAR, rings VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_52 WHERE vault = 38.437 AND floor_exercise < 37.524", "question": "What is the sum of totals with a Vault of 38.437, and a Floor Exercise smaller than 37.524?", "context": "CREATE TABLE table_name_52 (total VARCHAR, vault VARCHAR, floor_exercise VARCHAR)"}, {"answer": "SELECT COUNT(pommel_horse) FROM table_name_52 WHERE total < 230.019 AND team = \"china (chn)\" AND vault < 38.437", "question": "How many pommel horses have a Total smaller than 230.019, a Team of china (chn), and a Vault smaller than 38.437?", "context": "CREATE TABLE table_name_52 (pommel_horse VARCHAR, vault VARCHAR, total VARCHAR, team VARCHAR)"}, {"answer": "SELECT title FROM table_name_98 WHERE year > 1943 AND studio = \"rko\" AND role = \"dolly\"", "question": "What is the title where the studio was RKO, the role was Dolly, and the year was later than 1943?", "context": "CREATE TABLE table_name_98 (title VARCHAR, role VARCHAR, year VARCHAR, studio VARCHAR)"}, {"answer": "SELECT director FROM table_name_61 WHERE studio = \"wb\" AND year < 1945 AND title = \"to have and have not\"", "question": "Who was the director for To Have and Have Not, earlier than 1945 with WB studio?", "context": "CREATE TABLE table_name_61 (director VARCHAR, title VARCHAR, studio VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_96 WHERE director = \"raoul walsh\" AND title = \"the horn blows at midnight\"", "question": "What year was The Horn Blows at Midnight, directed by Raoul Walsh?", "context": "CREATE TABLE table_name_96 (year INTEGER, director VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_66 WHERE director = \"raoul walsh\" AND year > 1945", "question": "What title was directed by Raoul Walsh later than 1945?", "context": "CREATE TABLE table_name_66 (title VARCHAR, director VARCHAR, year VARCHAR)"}, {"answer": "SELECT studio FROM table_name_77 WHERE year = 1943 AND title = \"the hard way\"", "question": "What was the studio for The Hard Way in 1943?", "context": "CREATE TABLE table_name_77 (studio VARCHAR, year VARCHAR, title VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_39 WHERE venue = \"lake oval\"", "question": "Which team plays at Lake Oval?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_92 WHERE venue = \"brunswick street oval\"", "question": "What was the away score when they played at Brunswick Street Oval?", "context": "CREATE TABLE table_name_92 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_13 WHERE home_team = \"south melbourne\"", "question": "Where was South Melbourne played?", "context": "CREATE TABLE table_name_13 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_89 WHERE week > 14 AND opponent = \"dallas cowboys\"", "question": "Where week is greater than 14 and Opponent is Dallas Cowboys, what is the result?", "context": "CREATE TABLE table_name_89 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_31 WHERE week > 7 AND attendance = \"66,251\"", "question": "Where week is greater than 7 and attendance is 66,251 what is the result?", "context": "CREATE TABLE table_name_31 (result VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE attendance = \"79,431\"", "question": "Where attendance is 79,431 what is date?", "context": "CREATE TABLE table_name_61 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_89 WHERE date = \"september 13, 1998\"", "question": "Where Date is september 13, 1998 what is result?", "context": "CREATE TABLE table_name_89 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_30 WHERE venue = \"junction oval\"", "question": "What did the away team score at Junction oval?", "context": "CREATE TABLE table_name_30 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE home = \"ny islanders\" AND visitor = \"montreal\"", "question": "Name the score when the home is ny islanders and the visitor is montreal", "context": "CREATE TABLE table_name_86 (score VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE decision = \"dipietro\" AND visitor = \"philadelphia\"", "question": "Name the score when the decision is dipietro and the visitor is philadelphia", "context": "CREATE TABLE table_name_76 (score VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE decision = \"dipietro\" AND visitor = \"ny islanders\" AND home = \"colorado\"", "question": "Name the score when it had a decision of dipietro and visitor of ny islanders with home of colorado", "context": "CREATE TABLE table_name_80 (score VARCHAR, home VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_97 WHERE visitor = \"carolina\"", "question": "Name the least attendance with carolina visitor", "context": "CREATE TABLE table_name_97 (attendance INTEGER, visitor VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE away_team = \"carlton\"", "question": "What Venue had Carlton has the Away team?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_14 WHERE high_points = \"clippers\"", "question": "What is the record when Clippers have the high points?", "context": "CREATE TABLE table_name_14 (record VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_51 WHERE high_rebounds = \"ot\"", "question": "What had the high points when OT had high rebounds?", "context": "CREATE TABLE table_name_51 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE high_points = \"suns\" AND record = \"33\u201313\"", "question": "On what date did the Suns have high points with a record of 33\u201313?", "context": "CREATE TABLE table_name_8 (date VARCHAR, high_points VARCHAR, record VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_20 WHERE location_attendance = \"20,562\"", "question": "Who has the high assists when location attendance is 20,562?", "context": "CREATE TABLE table_name_20 (high_assists VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_94 WHERE silver < 1 AND total > 3", "question": "Which Bronze has a Silver smaller than 1, and a Total larger than 3?", "context": "CREATE TABLE table_name_94 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_60 WHERE nation = \"united states\" AND total > 5", "question": "Which Gold has a Nation of united states, and a Total larger than 5?", "context": "CREATE TABLE table_name_60 (gold INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_28 WHERE nation = \"argentina\" AND silver < 0", "question": "Which Bronze has a Nation of argentina, and a Silver smaller than 0?", "context": "CREATE TABLE table_name_28 (bronze INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_15 WHERE silver = 2 AND total < 5", "question": "Which Bronze has a Silver of 2, and a Total smaller than 5?", "context": "CREATE TABLE table_name_15 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_14 WHERE away_team = \"carlton\"", "question": "How many spectators were at the away team Carlton?", "context": "CREATE TABLE table_name_14 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT school AS Colors FROM table_name_70 WHERE enrolment > 1000 AND school = \"the friends' school\"", "question": "What school colors for the friends' school with over 1000 enrolled?", "context": "CREATE TABLE table_name_70 (school VARCHAR, enrolment VARCHAR)"}, {"answer": "SELECT MIN(enrolment) FROM table_name_67 WHERE founded > 1995", "question": "What is the low enrolment for schools founded after 1995?", "context": "CREATE TABLE table_name_67 (enrolment INTEGER, founded INTEGER)"}, {"answer": "SELECT location FROM table_name_65 WHERE school = \"the friends' school\"", "question": "WHere is the friends' school?", "context": "CREATE TABLE table_name_65 (location VARCHAR, school VARCHAR)"}, {"answer": "SELECT system FROM table_name_58 WHERE current_version = \"3.0.0\"", "question": "What is the System with the Current version 3.0.0?", "context": "CREATE TABLE table_name_58 (system VARCHAR, current_version VARCHAR)"}, {"answer": "SELECT name FROM table_name_35 WHERE license = \"gpl\" AND current_version = \"1.72\"", "question": "What is the Name when the License is gpl and the Current Version is 1.72?", "context": "CREATE TABLE table_name_35 (name VARCHAR, license VARCHAR, current_version VARCHAR)"}, {"answer": "SELECT system FROM table_name_63 WHERE license = \"gpl\" AND current_version = \"1.72\"", "question": "What is the System when the Licence is gpl and the Current Version is 1.72?", "context": "CREATE TABLE table_name_63 (system VARCHAR, license VARCHAR, current_version VARCHAR)"}, {"answer": "SELECT system FROM table_name_9 WHERE license = \"freeware\"", "question": "What is the System with a freeware License?", "context": "CREATE TABLE table_name_9 (system VARCHAR, license VARCHAR)"}, {"answer": "SELECT license FROM table_name_98 WHERE platform = \"windows\" AND name = \"altirra\"", "question": "What is the License when the Platform is windows and the Name is Altirra?", "context": "CREATE TABLE table_name_98 (license VARCHAR, platform VARCHAR, name VARCHAR)"}, {"answer": "SELECT platform FROM table_name_55 WHERE current_version = \"0.6.2\"", "question": "What Platform has a Current Version 0.6.2?", "context": "CREATE TABLE table_name_55 (platform VARCHAR, current_version VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_11 WHERE date = \"october 9, 1983\"", "question": "What is the average attendance on October 9, 1983?", "context": "CREATE TABLE table_name_11 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_19 WHERE date = \"september 4, 1983\"", "question": "What is the lowest attendance on September 4, 1983?", "context": "CREATE TABLE table_name_19 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_51 WHERE year_opened = \"1970\"", "question": "What is the mascot whose school opened in 1970?", "context": "CREATE TABLE table_name_51 (mascot VARCHAR, year_opened VARCHAR)"}, {"answer": "SELECT principal FROM table_name_92 WHERE mascot = \"patriots\"", "question": "What principal has a school mascot of the patriots?", "context": "CREATE TABLE table_name_92 (principal VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT venue FROM table_name_43 WHERE score = \"24\u201328\"", "question": "What was the venue when the score was 24\u201328?", "context": "CREATE TABLE table_name_43 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_96 WHERE school = \"stanford university\"", "question": "What is the lowest pick when the School is Stanford University?", "context": "CREATE TABLE table_name_96 (pick INTEGER, school VARCHAR)"}, {"answer": "SELECT team FROM table_name_67 WHERE pick = 40", "question": "What Team has a Pick of 40?", "context": "CREATE TABLE table_name_67 (team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE away_team = \"hawthorn\"", "question": "What date was the away team Hawthorn?", "context": "CREATE TABLE table_name_78 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_82 WHERE wins = 0 AND win__percentage > 0", "question": "What is the high loss total for players with zero wins and a win % greater than 0?", "context": "CREATE TABLE table_name_82 (losses INTEGER, wins VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT win__percentage FROM table_name_7 WHERE starts = 3", "question": "What is the win % for the QB with 3 starts?", "context": "CREATE TABLE table_name_7 (win__percentage VARCHAR, starts VARCHAR)"}, {"answer": "SELECT venue FROM table_name_90 WHERE away_team = \"geelong\"", "question": "What venue did geelong play an away game?", "context": "CREATE TABLE table_name_90 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_28 WHERE away_team = \"melbourne\"", "question": "What home team played an away team of melbourne?", "context": "CREATE TABLE table_name_28 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_53 WHERE overall = \"130\"", "question": "Which player had an overall pick of 130?", "context": "CREATE TABLE table_name_53 (player VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_8 WHERE player = \"corey cowick\"", "question": "What round was Corey Cowick picked?", "context": "CREATE TABLE table_name_8 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_20 WHERE club_team = \"miami university (ccha)\"", "question": "What position does the player from the Miami University (CCHA) club team play?", "context": "CREATE TABLE table_name_20 (position VARCHAR, club_team VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_63 WHERE team = \"north melbourne\" AND player = \"hamish mcintosh\"", "question": "What most recent year had North Melbourne as a team and Hamish Mcintosh as a player?", "context": "CREATE TABLE table_name_63 (year INTEGER, team VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE opponent = \"essendon\" AND player = \"steven clark\"", "question": "Which score had Essendon as an opponent and Steven Clark as a player?", "context": "CREATE TABLE table_name_53 (score VARCHAR, opponent VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_86 WHERE outcome = \"behind\" AND opponent = \"brisbane bears\"", "question": "Which team got a Behind outcome and had an opponent of Brisbane Bears?", "context": "CREATE TABLE table_name_86 (team VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE home_team = \"north melbourne\"", "question": "When did the north melbourne team play?", "context": "CREATE TABLE table_name_7 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_81 WHERE venue = \"junction oval\"", "question": "Who was the away team at junction oval?", "context": "CREATE TABLE table_name_81 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_17 WHERE venue = \"junction oval\"", "question": "What was the home team's score at junction oval?", "context": "CREATE TABLE table_name_17 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_20 WHERE away_team = \"essendon\"", "question": "What venue was essendon the away team?", "context": "CREATE TABLE table_name_20 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_16 WHERE venue = \"kardinia park\"", "question": "Who is the home team at kardinia park?", "context": "CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(storage_stability) FROM table_name_30 WHERE toxicity_as_blood_agent > 8 AND agent = \"arsine\" AND field_stability < 5", "question": "What is the storage stability of Arsine with a toxicity of 8, and field stability less than 5?", "context": "CREATE TABLE table_name_30 (storage_stability INTEGER, field_stability VARCHAR, toxicity_as_blood_agent VARCHAR, agent VARCHAR)"}, {"answer": "SELECT COUNT(field_stability) FROM table_name_5 WHERE agent = \"cyanogen bromide\" AND effectiveness_as_blood_agent > 9", "question": "What is the field stability of Cyanogen Bromide that has an effectiveness of 9?", "context": "CREATE TABLE table_name_5 (field_stability VARCHAR, agent VARCHAR, effectiveness_as_blood_agent VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_47 WHERE venue = \"mcg\"", "question": "When the Venue is mcg what is the Home team?", "context": "CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_84 WHERE away_team = \"hawthorn\"", "question": "When the Away team was hawthorn, what's the Home team?", "context": "CREATE TABLE table_name_84 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT total__kg_ FROM table_name_49 WHERE clean_ & _jerk = 135 AND snatch = 115", "question": "What is the total associated with a Clean & jerk of 135, and a Snatch of 115?", "context": "CREATE TABLE table_name_49 (total__kg_ VARCHAR, snatch VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT MAX(bodyweight) FROM table_name_37 WHERE clean_ & _jerk > 120 AND total__kg_ = 245", "question": "What is the highest Bodyweight associated with a Clean & jerk larger than 120, and a Total (kg) of 245?", "context": "CREATE TABLE table_name_37 (bodyweight INTEGER, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT SUM(total__kg_) FROM table_name_26 WHERE snatch < 110 AND clean_ & _jerk > 120", "question": "What is the sum Total (kg) associated with a Snatch less than 110, and a Clean & jerk larger than 120?", "context": "CREATE TABLE table_name_26 (total__kg_ INTEGER, snatch VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT COUNT(snatch) FROM table_name_48 WHERE clean_ & _jerk < 142.5 AND bodyweight < 55.58 AND total__kg_ > 210", "question": "How many people have a Clean & jerk smaller than 142.5, a Bodyweight smaller than 55.58, and a Total (kg) larger than 210?", "context": "CREATE TABLE table_name_48 (snatch VARCHAR, total__kg_ VARCHAR, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_28 WHERE apparent_magnitude > 10.6 AND declination___j2000__ = \"\u00b044\u203207\u2033\"", "question": "Tell me the object type which has an apparent magnitude more than 10.6 and declination of \u00b044\u203207\u2033", "context": "CREATE TABLE table_name_28 (object_type VARCHAR, apparent_magnitude VARCHAR, declination___j2000__ VARCHAR)"}, {"answer": "SELECT declination___j2000__ FROM table_name_12 WHERE apparent_magnitude > 10.4 AND ngc_number = 5112", "question": "Tell me the declination with apparent magnitude more than 10.4 and NGC number of 5112", "context": "CREATE TABLE table_name_12 (declination___j2000__ VARCHAR, apparent_magnitude VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT event FROM table_name_33 WHERE method = \"submission (triangle choke)\" AND opponent = \"thiago tavares\"", "question": "Which event has a Method of submission (triangle choke), and an Opponent of thiago tavares?", "context": "CREATE TABLE table_name_33 (event VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT res FROM table_name_32 WHERE round = \"3\" AND opponent = \"keith wisniewski\"", "question": "What is the result with a Round of 3, and an Opponent of keith wisniewski?", "context": "CREATE TABLE table_name_32 (res VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_11 WHERE opponent = \"eddie miller\"", "question": "Which time has eddie miller as opponent?", "context": "CREATE TABLE table_name_11 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(rd__number) FROM table_name_2 WHERE player = \"dane jackson\" AND pick__number > 44", "question": "What's the average Rd number for dane jackson with a pick number over 44?", "context": "CREATE TABLE table_name_2 (rd__number INTEGER, player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_34 WHERE player = \"corrie d'alessio\" AND rd__number > 6", "question": "What's the largest pick number for corrie d'alessio with a rd number over 6?", "context": "CREATE TABLE table_name_34 (pick__number INTEGER, player VARCHAR, rd__number VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_29 WHERE score = \"121\u201385\"", "question": "Who was the visiting team at the Cavaliers game that had a score of 121\u201385?", "context": "CREATE TABLE table_name_29 (visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE home_team = \"melbourne\"", "question": "On what date did Melbourne play as the home team?", "context": "CREATE TABLE table_name_45 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_52 WHERE venue = \"western oval\"", "question": "What team owns the Venue of western oval?", "context": "CREATE TABLE table_name_52 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_1 WHERE venue = \"victoria park\"", "question": "What did the Victoria park home team score?", "context": "CREATE TABLE table_name_1 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_98 WHERE home_team = \"geelong\"", "question": "What was the crowd size when geelong played home?", "context": "CREATE TABLE table_name_98 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_99 WHERE venue = \"td banknorth garden\" AND series = \"montreal leads 3-1\"", "question": "Name the most that attendend when the venue was td banknorth garden and the series of montreal leads 3-1", "context": "CREATE TABLE table_name_99 (attendance INTEGER, venue VARCHAR, series VARCHAR)"}, {"answer": "SELECT decision FROM table_name_14 WHERE visitor = \"boston bruins\"", "question": "Name the decision for boston bruins visitor", "context": "CREATE TABLE table_name_14 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_67 WHERE nation = \"egypt\" AND gold < 2", "question": "What is the average total medals Egypt, who has less than 2 gold, has?", "context": "CREATE TABLE table_name_67 (total INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_49 WHERE nation = \"egypt\" AND silver < 0", "question": "What is the total number of gold medals Egypt, who has less than 0 silver, has?", "context": "CREATE TABLE table_name_49 (gold VARCHAR, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_76 WHERE silver < 3 AND bronze > 5", "question": "What is the highest gold a team with less than 3 silver and more than 5 bronze medals has?", "context": "CREATE TABLE table_name_76 (gold INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT rank FROM table_name_2 WHERE bronze = 1 AND gold = 0", "question": "What is the rank of the team with 1 bronze and 0 gold medals?", "context": "CREATE TABLE table_name_2 (rank VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(_percentage_of_pop) FROM table_name_17 WHERE country__or_dependent_territory_ = \"tunisia\" AND average_relative_annual_growth___percentage_ < 1.03", "question": "What is the average % of population Tunisia, which has an average relative annual growth smaller than 1.03?", "context": "CREATE TABLE table_name_17 (_percentage_of_pop INTEGER, country__or_dependent_territory_ VARCHAR, average_relative_annual_growth___percentage_ VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_45 WHERE venue = \"kardinia park\"", "question": "Who was the home team at Kardinia Park?", "context": "CREATE TABLE table_name_45 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_15 WHERE home_team = \"footscray\"", "question": "What was Footscray's score as the home team?", "context": "CREATE TABLE table_name_15 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE home = \"suns\"", "question": "On what date was there a competition in which the home team was the Suns?", "context": "CREATE TABLE table_name_17 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_41 WHERE visitor = \"suns\"", "question": "In the competition in which the visiting team was the Suns, who was the leading scorer?", "context": "CREATE TABLE table_name_41 (leading_scorer VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_11 WHERE home = \"mavericks\"", "question": "What was the record in the competition in which the home team was the Mavericks?", "context": "CREATE TABLE table_name_11 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_33 WHERE movie = \"rangam\"", "question": "What's the average year a Rangam movie came out?", "context": "CREATE TABLE table_name_33 (year INTEGER, movie VARCHAR)"}, {"answer": "SELECT song_title FROM table_name_84 WHERE movie = \"amma cheppindi\"", "question": "What was the name of the song in Amma Cheppindi?", "context": "CREATE TABLE table_name_84 (song_title VARCHAR, movie VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_12 WHERE movie = \"thuppakki\"", "question": "What was the average year that Thuppakki movies came out?", "context": "CREATE TABLE table_name_12 (year INTEGER, movie VARCHAR)"}, {"answer": "SELECT SUM(games_played) FROM table_name_89 WHERE goals_scored = \"2\"", "question": "How many games had 2 goals scored?", "context": "CREATE TABLE table_name_89 (games_played INTEGER, goals_scored VARCHAR)"}, {"answer": "SELECT result FROM table_name_74 WHERE week = 11", "question": "What was the result week 11?", "context": "CREATE TABLE table_name_74 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(democratic_votes) FROM table_name_21 WHERE other_votes < 18 AND _percentage_of_r_votes = \"52.63% ANd_votes_since_1856 < 38\"", "question": "Name the total number of democratic votes when the other votes are less than  18 and the percentage of R votes are 52.63% and votes since 1856 less than 38", "context": "CREATE TABLE table_name_21 (democratic_votes VARCHAR, other_votes VARCHAR, _percentage_of_r_votes VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE opponent = \"panathinaikos\"", "question": "On what Date was the Opponent Panathinaikos?", "context": "CREATE TABLE table_name_14 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_57 WHERE home_team = \"st kilda\"", "question": "How many people attended games with st kilda as the home side?", "context": "CREATE TABLE table_name_57 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_32 WHERE crowd > 32 OFFSET 485", "question": "Who is the home team when the crowd is over 32,485?", "context": "CREATE TABLE table_name_32 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT AVG(floors) FROM table_name_40 WHERE city = \"mecca\" AND rank < 12", "question": "What is the average number of floors for buildings in mecca ranked above 12?", "context": "CREATE TABLE table_name_40 (floors INTEGER, city VARCHAR, rank VARCHAR)"}, {"answer": "SELECT city FROM table_name_87 WHERE rank < 5 AND name = \"lamar tower 1\"", "question": "What city is the lamar tower 1, ranked above 5?", "context": "CREATE TABLE table_name_87 (city VARCHAR, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT city FROM table_name_33 WHERE floors > 57", "question": "What city has a building with over 57 floors?", "context": "CREATE TABLE table_name_33 (city VARCHAR, floors INTEGER)"}, {"answer": "SELECT COUNT(laps) FROM table_name_32 WHERE driver = \"ant\u00f4nio pizzonia\"", "question": "How many laps did ant\u00f4nio pizzonia do?", "context": "CREATE TABLE table_name_32 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_99 WHERE time_retired = \"handling\"", "question": "What is the constructor for time/retired of handling?", "context": "CREATE TABLE table_name_99 (constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_71 WHERE venue = \"windy hill\"", "question": "What was the away team's score at windy hill?", "context": "CREATE TABLE table_name_71 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_59 WHERE nationality = \"sweden\" AND position = \"right wing\"", "question": "What is the highest round of a player from Sweden who plays right wing?", "context": "CREATE TABLE table_name_59 (round INTEGER, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_81 WHERE round < 4 AND overall = \"17\"", "question": "What is the position of a player from a round less than 4 and an overall of 17?", "context": "CREATE TABLE table_name_81 (position VARCHAR, round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_23 WHERE overall = \"138\"", "question": "What is the average round of a player with an overall of 138?", "context": "CREATE TABLE table_name_23 (round INTEGER, overall VARCHAR)"}, {"answer": "SELECT player FROM table_name_77 WHERE nationality = \"sweden\" AND round > 3", "question": "Who is the player from Sweden from a round after 3?", "context": "CREATE TABLE table_name_77 (player VARCHAR, nationality VARCHAR, round VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_52 WHERE club_team = \"link\u00f6pings hc (se)\"", "question": "What is the nationality of a player from link\u00f6pings hc (se)?", "context": "CREATE TABLE table_name_52 (nationality VARCHAR, club_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_17 WHERE home_team = \"st kilda\"", "question": "What is the crowd size for st kilda as the home team?", "context": "CREATE TABLE table_name_17 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(pages) FROM table_name_36 WHERE translated_title = \"thistle among roses\"", "question": "I want the sum of pages for thistle among roses", "context": "CREATE TABLE table_name_36 (pages INTEGER, translated_title VARCHAR)"}, {"answer": "SELECT manager FROM table_name_3 WHERE fund = \"fmc corporation pension fund\"", "question": "Who is the manager for FMC Corporation pension fund?", "context": "CREATE TABLE table_name_3 (manager VARCHAR, fund VARCHAR)"}, {"answer": "SELECT position FROM table_name_28 WHERE character = \"frank tripp\"", "question": "What was the position of Frank Tripp?", "context": "CREATE TABLE table_name_28 (position VARCHAR, character VARCHAR)"}, {"answer": "SELECT final_episode FROM table_name_72 WHERE episodes_credited = 187", "question": "What was the final episode credited of 187?", "context": "CREATE TABLE table_name_72 (final_episode VARCHAR, episodes_credited VARCHAR)"}, {"answer": "SELECT class FROM table_name_66 WHERE no_built = 55", "question": "Which class at 55 built?", "context": "CREATE TABLE table_name_66 (class VARCHAR, no_built VARCHAR)"}, {"answer": "SELECT loco_nos FROM table_name_80 WHERE class = \"e3\"", "question": "What is the Loco Nos of the e3 class?", "context": "CREATE TABLE table_name_80 (loco_nos VARCHAR, class VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_17 WHERE venue = \"junction oval\"", "question": "How many people attended Junction Oval?", "context": "CREATE TABLE table_name_17 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_97 WHERE away_team = \"fitzroy\"", "question": "What was the score of the team that played against Fitzroy?", "context": "CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_7 WHERE city = \"melfi\"", "question": "What is the name of the stadium for the city of melfi?", "context": "CREATE TABLE table_name_7 (stadium VARCHAR, city VARCHAR)"}, {"answer": "SELECT SUM(capacity) FROM table_name_96 WHERE stadium = \"pasquale ianniello\"", "question": "What is the total capacity for the stadium of pasquale ianniello?", "context": "CREATE TABLE table_name_96 (capacity INTEGER, stadium VARCHAR)"}, {"answer": "SELECT city FROM table_name_25 WHERE airport = \"jaffna airport\"", "question": "What city is Jaffna Airport in?", "context": "CREATE TABLE table_name_25 (city VARCHAR, airport VARCHAR)"}, {"answer": "SELECT city FROM table_name_84 WHERE icao = \"tba\"", "question": "Which city has an ICAO of TBA?", "context": "CREATE TABLE table_name_84 (city VARCHAR, icao VARCHAR)"}, {"answer": "SELECT player FROM table_name_99 WHERE college = \"wyoming\"", "question": "Which player went to the College of Wyoming?", "context": "CREATE TABLE table_name_99 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_6 WHERE away_team = \"richmond\"", "question": "What was the smallest crowd at a game when Richmond was the away team?", "context": "CREATE TABLE table_name_6 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_80 WHERE crowd > 24 OFFSET 520", "question": "Who was the home team at the game that had a crowd of over 24,520?", "context": "CREATE TABLE table_name_80 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT COUNT(since) FROM table_name_24 WHERE name = \"belletti\"", "question": "Name the total number of since for belletti", "context": "CREATE TABLE table_name_24 (since VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_7 WHERE nat = \"ita\" AND transfer_fee = \"youth system\"", "question": "Name the highest goals for youth system and ita", "context": "CREATE TABLE table_name_7 (goals INTEGER, nat VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_84 WHERE grid > 3 AND driver = \"eddie irvine\"", "question": "What is the time/retired for eddie irvine with a grid of greater than 3?", "context": "CREATE TABLE table_name_84 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_99 WHERE grid > 17 AND time_retired = \"collision\"", "question": "How many laps had a grid of greater than 17 and retired due to collision?", "context": "CREATE TABLE table_name_99 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_15 WHERE nation = \"south korea\" AND gold < 1", "question": "How many silvers for south korea with under 1 gold medal?", "context": "CREATE TABLE table_name_15 (silver INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_25 WHERE nation = \"uganda\" AND total < 3", "question": "How many golds for uganda with under 3 total medals?", "context": "CREATE TABLE table_name_25 (gold INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_78 WHERE rank < 7 AND gold < 3 AND total < 10", "question": "How many bronzes for nations ranked above 7, under 3 golds, and under 10 total medals?", "context": "CREATE TABLE table_name_78 (bronze VARCHAR, total VARCHAR, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT week FROM table_name_82 WHERE result = \"l 24-10\"", "question": "Which week has a result showing L 24-10?", "context": "CREATE TABLE table_name_82 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT week FROM table_name_85 WHERE kickoff_[a_] = \"1:00\" AND record = \"4-5-1\"", "question": "Which week has a Kickoff time of 1:00 with a record of 4-5-1?", "context": "CREATE TABLE table_name_85 (week VARCHAR, record VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT week FROM table_name_58 WHERE record = \"5-7-1\"", "question": "Which week has a record of 5-7-1?", "context": "CREATE TABLE table_name_58 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_79 WHERE game_site = \"metropolitan stadium\"", "question": "Who is the opponent on the game that will be played at metropolitan stadium?", "context": "CREATE TABLE table_name_79 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_85 WHERE venue = \"kardinia park\"", "question": "What did the away team score at Kardinia Park?", "context": "CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_38 WHERE venue = \"junction oval\"", "question": "What was the away team's score in Junction Oval?", "context": "CREATE TABLE table_name_38 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_24 WHERE venue = \"moorabbin oval\"", "question": "What did the away team score at Moorabbin Oval?", "context": "CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_56 WHERE time_retired = \"engine\" AND laps > 50", "question": "Who constructed the car that has a Time/Retired of engine, and over 50 laps?", "context": "CREATE TABLE table_name_56 (constructor VARCHAR, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_30 WHERE laps < 75 AND grid < 15 AND driver = \"ronnie peterson\"", "question": "What is the time/retired for ronnie peterson with under 75 laps and a grid under 15?", "context": "CREATE TABLE table_name_30 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT location FROM table_name_74 WHERE owgr_points > 6 AND winner = \"ryu hyun-woo\"", "question": "What is the location of the tournament with more than 6 OWGR points and Ryu Hyun-Woo as the winner?", "context": "CREATE TABLE table_name_74 (location VARCHAR, owgr_points VARCHAR, winner VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_24 WHERE venue = \"arden street oval\"", "question": "Who was the away team at Arden Street Oval?", "context": "CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT team FROM table_name_10 WHERE assists > 118 AND rank < 2", "question": "I want the team with assists greater than 118 and rank less than 2", "context": "CREATE TABLE table_name_10 (team VARCHAR, assists VARCHAR, rank VARCHAR)"}, {"answer": "SELECT region FROM table_name_25 WHERE rank = 5", "question": "What region has a 5 rank?", "context": "CREATE TABLE table_name_25 (region VARCHAR, rank VARCHAR)"}, {"answer": "SELECT mountain_peak FROM table_name_29 WHERE mountain_range = \"spanish peaks\"", "question": "Which mountain peak has spanish peaks?", "context": "CREATE TABLE table_name_29 (mountain_peak VARCHAR, mountain_range VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE home_team = \"essendon\"", "question": "What date did Essendon play as the home team?", "context": "CREATE TABLE table_name_83 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_27 WHERE venue = \"windy hill\"", "question": "What was the attendance at Windy Hill?", "context": "CREATE TABLE table_name_27 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_83 WHERE venue = \"vfl park\"", "question": "What was the smallest crowd of vfl park?", "context": "CREATE TABLE table_name_83 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_40 WHERE venue = \"kardinia park\"", "question": "What was the away team score at kardinia park?", "context": "CREATE TABLE table_name_40 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_63 WHERE home_team = \"north melbourne\"", "question": "Who was the away team at the home game of north melbourne?", "context": "CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT AVG(yards__red_tees_) FROM table_name_27 WHERE hole = \"1\" AND par__white_tees_ > 4", "question": "What is the average number of yards on a red tee that has a hole of 1 and a par above 4?", "context": "CREATE TABLE table_name_27 (yards__red_tees_ INTEGER, hole VARCHAR, par__white_tees_ VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_9 WHERE nation = \"netherlands\"", "question": "How many bronzes did netherlands win?", "context": "CREATE TABLE table_name_9 (bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT nation FROM table_name_13 WHERE total = 6", "question": "What is the nation for 6 total?", "context": "CREATE TABLE table_name_13 (nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_50 WHERE total > 2 AND gold = \"1\" AND silver = \"4\"", "question": "What is the bronze when silver is 4 and gold is 1 and the total is more than 2", "context": "CREATE TABLE table_name_50 (bronze VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT gold FROM table_name_20 WHERE nation = \"netherlands\"", "question": "Tell me the gold for netherlands", "context": "CREATE TABLE table_name_20 (gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_58 WHERE home_team = \"richmond\"", "question": "Which Away team score has a Home team of richmond?", "context": "CREATE TABLE table_name_58 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_72 WHERE away_team = \"carlton\"", "question": "Which Home team score has an Away team of carlton?", "context": "CREATE TABLE table_name_72 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(no_in_series) FROM table_name_38 WHERE director = \"jefferson kibbee\" AND production_code = \"2398191\"", "question": "What is the total series numbers that is directed by Jefferson Kibbee and has a production code of 2398191?", "context": "CREATE TABLE table_name_38 (no_in_series INTEGER, director VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT 1 AS st_edition FROM table_name_77 WHERE episode = \"4\"", "question": "What is the 1st Edition for the Episode 4?", "context": "CREATE TABLE table_name_77 (episode VARCHAR)"}, {"answer": "SELECT 1 AS st_edition FROM table_name_16 WHERE episode = \"11\"", "question": "What is the 1st Edition for Episode 11?", "context": "CREATE TABLE table_name_16 (episode VARCHAR)"}, {"answer": "SELECT 3 AS rd_edition FROM table_name_90 WHERE episode = \"4\"", "question": "What is the 3rd Edition for Episode 4?", "context": "CREATE TABLE table_name_90 (episode VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_25 WHERE crowd > 4 OFFSET 000", "question": "Which home teams had crowds larger than 4,000?", "context": "CREATE TABLE table_name_25 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT date FROM table_name_31 WHERE venue = \"western oval\"", "question": "I want to know the date for western oval venue", "context": "CREATE TABLE table_name_31 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT declination___j2000__ FROM table_name_34 WHERE right_ascension___j2000__ = \"11h53m41.9s\"", "question": "What is the declination with a right ascension of 11h53m41.9s?", "context": "CREATE TABLE table_name_34 (declination___j2000__ VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_58 WHERE team_1 = \"chelsea\"", "question": "What is the 1st leg when team 1 is Chelsea?", "context": "CREATE TABLE table_name_58 (team_1 VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_32 WHERE away_team = \"fitzroy\"", "question": "What was the away team score, when the away team was Fitzroy?", "context": "CREATE TABLE table_name_32 (away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_70 WHERE away_team = \"melbourne\"", "question": "What is the name of the home team when the away team was Melbourne?", "context": "CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_50 WHERE venue = \"emcg\"", "question": "What is the name of the home team that has a venue called EMCG?", "context": "CREATE TABLE table_name_50 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_5 WHERE away_team = \"melbourne\"", "question": "What is the name of the venue where the game played had an away team of Melbourne?", "context": "CREATE TABLE table_name_5 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_33 WHERE diff > -16 AND points = 19 AND against > 24", "question": "What is the average number lost with a difference of -16, 19 points, and more than 24 against?", "context": "CREATE TABLE table_name_33 (lost INTEGER, against VARCHAR, diff VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_79 WHERE points = 25", "question": "What is the highest number of losses with 25 points?", "context": "CREATE TABLE table_name_79 (lost INTEGER, points VARCHAR)"}, {"answer": "SELECT SUM(diff) FROM table_name_48 WHERE drawn = 9 AND played > 18", "question": "What is the sum of the difference for 9 draws and over 18 played?", "context": "CREATE TABLE table_name_48 (diff INTEGER, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_36 WHERE lost < 2", "question": "What is the lowest number drawn with less than 2 lost?", "context": "CREATE TABLE table_name_36 (drawn INTEGER, lost INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_40 WHERE played < 18", "question": "What is the sum of all points when number played is less than 18?", "context": "CREATE TABLE table_name_40 (points INTEGER, played INTEGER)"}, {"answer": "SELECT date FROM table_name_48 WHERE score = \"6\u20134, 6\u20133\"", "question": "Which date has a Score of 6\u20134, 6\u20133?", "context": "CREATE TABLE table_name_48 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(pl_gp) FROM table_name_79 WHERE reg_gp > 3", "question": "What is the total PI GP that a Reg GP has larger than 3?", "context": "CREATE TABLE table_name_79 (pl_gp VARCHAR, reg_gp INTEGER)"}, {"answer": "SELECT AVG(reg_gp) FROM table_name_84 WHERE pick__number > 210", "question": "What average Reg GP has a pick # larger than 210?", "context": "CREATE TABLE table_name_84 (reg_gp INTEGER, pick__number INTEGER)"}, {"answer": "SELECT result FROM table_name_47 WHERE goals = \"deacon 2/5\"", "question": "Which result has a Goal of deacon 2/5?", "context": "CREATE TABLE table_name_47 (result VARCHAR, goals VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE goals = \"deacon 4/4, withers 1 dg\"", "question": "Which date has a Goal of deacon 4/4, withers 1 dg?", "context": "CREATE TABLE table_name_32 (date VARCHAR, goals VARCHAR)"}, {"answer": "SELECT goals FROM table_name_70 WHERE date = \"8/4/04\"", "question": "What are the goals for 8/4/04?", "context": "CREATE TABLE table_name_70 (goals VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_84 WHERE result = \"w\" AND goals = \"deacon 5/5\"", "question": "Which venue has a Result of w, and a Goal of deacon 5/5?", "context": "CREATE TABLE table_name_84 (venue VARCHAR, result VARCHAR, goals VARCHAR)"}, {"answer": "SELECT result FROM table_name_38 WHERE goals = \"deacon 3/5, bridge 2/2\"", "question": "Which result has a Goal of deacon 3/5, bridge 2/2?", "context": "CREATE TABLE table_name_38 (result VARCHAR, goals VARCHAR)"}, {"answer": "SELECT competition FROM table_name_52 WHERE goals = \"deacon 10/10\" AND score = \"40\u201312\"", "question": "Which competition has a Goal of deacon 10/10, and a Score of 40\u201312?", "context": "CREATE TABLE table_name_52 (competition VARCHAR, goals VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(pl_gp) FROM table_name_16 WHERE reg_gp < 5 AND team__league_ = \"seattle thunderbirds\" AND pick__number < 131", "question": "What is the total number of playoff games played by the Seattle Thunderbirds team where the number of regular games played is less than 5 and pick number is less than 131?", "context": "CREATE TABLE table_name_16 (pl_gp VARCHAR, pick__number VARCHAR, reg_gp VARCHAR, team__league_ VARCHAR)"}, {"answer": "SELECT player FROM table_name_51 WHERE pl_gp > 0", "question": "What player has a number of playoff games played greater than 0?", "context": "CREATE TABLE table_name_51 (player VARCHAR, pl_gp INTEGER)"}, {"answer": "SELECT SUM(reg_gp) FROM table_name_17 WHERE player = \"morgan clark\" AND rd__number < 7", "question": "What is the sum of the number of regular games played by Morgan Clark with the number of road games less than 7?", "context": "CREATE TABLE table_name_17 (reg_gp INTEGER, player VARCHAR, rd__number VARCHAR)"}, {"answer": "SELECT player FROM table_name_64 WHERE pl_gp > 0", "question": "What player has a number of playoff games played greater than 0?", "context": "CREATE TABLE table_name_64 (player VARCHAR, pl_gp INTEGER)"}, {"answer": "SELECT pick__number FROM table_name_70 WHERE rd__number > 3 AND pl_gp > 0", "question": "What is the pick number for the player from higher than round 3 and a PI GP bigger than 0?", "context": "CREATE TABLE table_name_70 (pick__number VARCHAR, rd__number VARCHAR, pl_gp VARCHAR)"}, {"answer": "SELECT MIN(reg_gp) FROM table_name_26 WHERE player = \"larry courville\" AND pl_gp < 0", "question": "What is the lowest regular GP Larry Courville, who has a PI GP smaller than 0, has?", "context": "CREATE TABLE table_name_26 (reg_gp INTEGER, player VARCHAR, pl_gp VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_40 WHERE home_team = \"essendon\"", "question": "What was Essendon's opponents away score?", "context": "CREATE TABLE table_name_40 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_9 WHERE venue = \"corio oval\"", "question": "What was the attendance at Corio Oval?", "context": "CREATE TABLE table_name_9 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_3 WHERE away_team = \"collingwood\"", "question": "When collingwood played as the away team what did they score?", "context": "CREATE TABLE table_name_3 (away_team VARCHAR)"}, {"answer": "SELECT location FROM table_name_64 WHERE name = \"evans\"", "question": "What was the locaction of the Evans test blast?", "context": "CREATE TABLE table_name_64 (location VARCHAR, name VARCHAR)"}, {"answer": "SELECT yield FROM table_name_39 WHERE location = \"nts area 3s\"", "question": "What was the yield for a blast that was in nts area 3s?", "context": "CREATE TABLE table_name_39 (yield VARCHAR, location VARCHAR)"}, {"answer": "SELECT purpose FROM table_name_54 WHERE name = \"quay\"", "question": "What was the purpose of the Quay test blast?", "context": "CREATE TABLE table_name_54 (purpose VARCHAR, name VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_29 WHERE apparent_magnitude > 11.8", "question": "For an apparent magnitude greater than 11.8 what Right ascension value is assigned?", "context": "CREATE TABLE table_name_29 (right_ascension___j2000__ VARCHAR, apparent_magnitude INTEGER)"}, {"answer": "SELECT MIN(apparent_magnitude) FROM table_name_31 WHERE constellation = \"hydra\"", "question": "What is the least apparent magnitude for all constellations from hydra?", "context": "CREATE TABLE table_name_31 (apparent_magnitude INTEGER, constellation VARCHAR)"}, {"answer": "SELECT MAX(car) FROM table_name_56 WHERE yards > 155", "question": "What is the highest Car with more than 155 yards?", "context": "CREATE TABLE table_name_56 (car INTEGER, yards INTEGER)"}, {"answer": "SELECT page_count FROM table_name_39 WHERE author = \"stefano d'arrigo\"", "question": "How many pages were in the book by Stefano D'Arrigo?", "context": "CREATE TABLE table_name_39 (page_count VARCHAR, author VARCHAR)"}, {"answer": "SELECT author FROM table_name_42 WHERE language = \"english\" AND book_title = \"sironia, texas\"", "question": "Which author wrote Sironia, Texas in English?", "context": "CREATE TABLE table_name_42 (author VARCHAR, language VARCHAR, book_title VARCHAR)"}, {"answer": "SELECT edition_publisher FROM table_name_9 WHERE author = \"xavier herbert\"", "question": "Who is the edition/publisher for Xavier Herbert?", "context": "CREATE TABLE table_name_9 (edition_publisher VARCHAR, author VARCHAR)"}, {"answer": "SELECT language FROM table_name_17 WHERE book_title = \"miss macintosh, my darling\"", "question": "What language is the book Miss Macintosh, My Darling in?", "context": "CREATE TABLE table_name_17 (language VARCHAR, book_title VARCHAR)"}, {"answer": "SELECT edition_publisher FROM table_name_5 WHERE language = \"italian\" AND page_size = \"8 inches (20cm) x 5.4 inches (14cm)\"", "question": "Who published in Italian with a page size of 8 inches (20cm) x 5.4 inches (14cm)?", "context": "CREATE TABLE table_name_5 (edition_publisher VARCHAR, language VARCHAR, page_size VARCHAR)"}, {"answer": "SELECT COUNT(avg) FROM table_name_25 WHERE long = 10", "question": "What is the total average for long 10?", "context": "CREATE TABLE table_name_25 (avg VARCHAR, long VARCHAR)"}, {"answer": "SELECT college FROM table_name_86 WHERE team = \"boston celtics\" AND round = \"7\"", "question": "Name the college that has 7 rounds and boston celtics team", "context": "CREATE TABLE table_name_86 (college VARCHAR, team VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_86 WHERE team = \"baltimore bullets\" AND college = \"texas tech\"", "question": "Name the position that has baltimore bullets and college of texas tech", "context": "CREATE TABLE table_name_86 (position VARCHAR, team VARCHAR, college VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_91 WHERE team = \"milwaukee hawks\"", "question": "What is the nationality for milwaukee hawks?", "context": "CREATE TABLE table_name_91 (nationality VARCHAR, team VARCHAR)"}, {"answer": "SELECT name FROM table_name_99 WHERE proposed = \"06/24/1988\"", "question": "What is the name of the superfund that was proposed on 06/24/1988?", "context": "CREATE TABLE table_name_99 (name VARCHAR, proposed VARCHAR)"}, {"answer": "SELECT team FROM table_name_40 WHERE game = 4", "question": "Which team was played against in game 4?", "context": "CREATE TABLE table_name_40 (team VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_49 WHERE high_rebounds = \"a. horford (10)\" AND high_points = \"j. johnson (21)\"", "question": "What is the location attendance of the game with A. Horford (10) as the highest rebounds and J. Johnson (21) as the highest points?", "context": "CREATE TABLE table_name_49 (location_attendance VARCHAR, high_rebounds VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT championship FROM table_name_53 WHERE opponent = \"jeff borowiak\"", "question": "During what Championship was the Opponent Jeff Borowiak?", "context": "CREATE TABLE table_name_53 (championship VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(date) FROM table_name_76 WHERE score = \"3\u20136, 6\u20134, 3\u20136, 6\u20131, 6\u20132\"", "question": "On what Date was the Score of 3\u20136, 6\u20134, 3\u20136, 6\u20131, 6\u20132", "context": "CREATE TABLE table_name_76 (date INTEGER, score VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_80 WHERE engine = \"talbot l6\" AND driver = \"eug\u00e8ne chaboud\"", "question": "What is the Entrant with a Engine of talbot l6, and Eug\u00e8ne Chaboud was the driver?", "context": "CREATE TABLE table_name_80 (entrant VARCHAR, engine VARCHAR, driver VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_1 WHERE tyre = \"p\" AND constructor = \"alfa romeo\"", "question": "What entrant has a P tyre and was constructed by Alfa Romeo?", "context": "CREATE TABLE table_name_1 (entrant VARCHAR, tyre VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT country FROM table_name_93 WHERE score = \"274\" AND runner_s__up = \"virginie lagoutte-cl\u00e9ment\"", "question": "I want the country for score of 274 and runner-up of virginie lagoutte-cl\u00e9ment", "context": "CREATE TABLE table_name_93 (country VARCHAR, score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE year = \"2004\"", "question": "Tell me the date for 2004", "context": "CREATE TABLE table_name_35 (date VARCHAR, year VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_7 WHERE winner = \"nikki garrett\"", "question": "What is the margin of victory for nikki garrett?", "context": "CREATE TABLE table_name_7 (margin_of_victory VARCHAR, winner VARCHAR)"}, {"answer": "SELECT result FROM table_name_17 WHERE venue = \"n\" AND attendance > 20 OFFSET 664", "question": "I want to see the result for venue of n and attendance more than 20,664", "context": "CREATE TABLE table_name_17 (result VARCHAR, venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_51 WHERE venue = \"a\"", "question": "Tell me the result for venue of a", "context": "CREATE TABLE table_name_51 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_49 WHERE venue = \"n\" AND round = \"f\"", "question": "I want to know the average attendance for n venue and f round", "context": "CREATE TABLE table_name_49 (attendance INTEGER, venue VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_40 WHERE time_retired = \"exhaust\" AND grid < 15", "question": "In grid 15, how many laps were there before ending with a time of exhaust?", "context": "CREATE TABLE table_name_40 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT year_made FROM table_name_67 WHERE class = \"undine\"", "question": "What year was class of undine?", "context": "CREATE TABLE table_name_67 (year_made VARCHAR, class VARCHAR)"}, {"answer": "SELECT quantity_preserved FROM table_name_17 WHERE quantity_made = \"15\"", "question": "What was the quantity preserved for quantity made of 15?", "context": "CREATE TABLE table_name_17 (quantity_preserved VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT year_made FROM table_name_52 WHERE class = \"hercules\"", "question": "Name the year for hercules", "context": "CREATE TABLE table_name_52 (year_made VARCHAR, class VARCHAR)"}, {"answer": "SELECT AVG(entered_service) FROM table_name_73 WHERE builder = \"tom smith\" AND number < 7007", "question": "When did the tom smith built train enter service with a number under 7007?", "context": "CREATE TABLE table_name_73 (entered_service INTEGER, builder VARCHAR, number VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_68 WHERE edition = \"1985 world group i\"", "question": "Who is the opponent for the 1985 World Group i edition?", "context": "CREATE TABLE table_name_68 (opponent VARCHAR, edition VARCHAR)"}, {"answer": "SELECT cash_on_hand FROM table_name_60 WHERE after_debt = \"$327,094\"", "question": "What is the amount of cash on hand that has an after debt of $327,094", "context": "CREATE TABLE table_name_60 (cash_on_hand VARCHAR, after_debt VARCHAR)"}, {"answer": "SELECT total_receipts FROM table_name_83 WHERE candidate = \"mike gravel\"", "question": "How many receipts does Mike Gravel have?", "context": "CREATE TABLE table_name_83 (total_receipts VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT money_raised, _3q FROM table_name_75 WHERE cash_on_hand = \"$5,821,587\"", "question": "How much money has been raised that has $5,821,587 cash on hand?", "context": "CREATE TABLE table_name_75 (money_raised VARCHAR, _3q VARCHAR, cash_on_hand VARCHAR)"}, {"answer": "SELECT after_debt FROM table_name_90 WHERE total_receipts = \"$379,794\"", "question": "What is the after debt has receipts of $379,794?", "context": "CREATE TABLE table_name_90 (after_debt VARCHAR, total_receipts VARCHAR)"}, {"answer": "SELECT money_spent, _3q FROM table_name_43 WHERE candidate = \"dennis kucinich\"", "question": "How much money has Candidate Dennis Kucinich spent?", "context": "CREATE TABLE table_name_43 (money_spent VARCHAR, _3q VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_15 WHERE away_team = \"south melbourne\"", "question": "What is the crowd size when the away team was South Melbourne?", "context": "CREATE TABLE table_name_15 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_78 WHERE venue = \"junction oval\"", "question": "What was the crowd size at Junction Oval?", "context": "CREATE TABLE table_name_78 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE venue = \"junction oval\"", "question": "What was the date of the game at Junction Oval?", "context": "CREATE TABLE table_name_3 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_41 WHERE away_team = \"carlton\"", "question": "What was the away score for Carlton?", "context": "CREATE TABLE table_name_41 (away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_12 WHERE venue = \"mcg\"", "question": "Who was the away team at MCG?", "context": "CREATE TABLE table_name_12 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT d_48 FROM table_name_14 WHERE d_50 = \"d 30\"", "question": "What is the D 48 when the D 50 is d 30?", "context": "CREATE TABLE table_name_14 (d_48 VARCHAR, d_50 VARCHAR)"}, {"answer": "SELECT d_47 FROM table_name_92 WHERE d_49 = \"r 32\"", "question": "What is the D 47 when the D 49 is r 32?", "context": "CREATE TABLE table_name_92 (d_47 VARCHAR, d_49 VARCHAR)"}, {"answer": "SELECT d_50 FROM table_name_77 WHERE d_43 = \"r 43\"", "question": "What is the D 50 when the D 43 is r 43?", "context": "CREATE TABLE table_name_77 (d_50 VARCHAR, d_43 VARCHAR)"}, {"answer": "SELECT d_42 FROM table_name_17 WHERE d_50 = \"d 31\"", "question": "What is the D 42 when the D 50 is d 31?", "context": "CREATE TABLE table_name_17 (d_42 VARCHAR, d_50 VARCHAR)"}, {"answer": "SELECT d_50 FROM table_name_84 WHERE d_41 = \"d 41\"", "question": "What is the D 50 when the D 41 is d 41?", "context": "CREATE TABLE table_name_84 (d_50 VARCHAR, d_41 VARCHAR)"}, {"answer": "SELECT d_50 FROM table_name_65 WHERE d_41 = \"d 41\"", "question": "What is the D 50 when the D 41 is d 41?", "context": "CREATE TABLE table_name_65 (d_50 VARCHAR, d_41 VARCHAR)"}, {"answer": "SELECT yard_name FROM table_name_19 WHERE ship_types_delivered = \"n3 type, v4 type\" AND total_vessels_built_for_usmc = \"13 ships for usmc\"", "question": "what is the yard name when the ship types delivered is n3 type, v4 type and the total vessels built for usmc is 13 ships for usmc?", "context": "CREATE TABLE table_name_19 (yard_name VARCHAR, ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR)"}, {"answer": "SELECT ship_types_delivered FROM table_name_21 WHERE total_vessels_built_for_usmc = \"13 ships for usmc (plus 37 more for usn)\"", "question": "what is the ship types delivered when the total vessels built for usmc is 13 ships for usmc (plus 37 more for usn)?", "context": "CREATE TABLE table_name_21 (ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_43 WHERE year > 1994 AND class = \"wsc\"", "question": "Who were the co drivers past 1994 in the WSC class?", "context": "CREATE TABLE table_name_43 (co_drivers VARCHAR, year VARCHAR, class VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE home_team = \"footscray\"", "question": "What day did Footscray play as the home team?", "context": "CREATE TABLE table_name_20 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT report FROM table_name_13 WHERE date = \"10 october\"", "question": "What is the report for 10 october?", "context": "CREATE TABLE table_name_13 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT race AS Winner FROM table_name_58 WHERE pole_position = \"james hunt\" AND fastest_lap = \"james hunt\" AND date = \"15 august\"", "question": "Who was the race winner with a pole position james hunt, and a Fastest Lap of james hunt, and a Date of 15 august?", "context": "CREATE TABLE table_name_58 (race VARCHAR, date VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT race FROM table_name_25 WHERE pole_position = \"jacques laffite\"", "question": "What race has a Pole Position of Jacques Laffite?", "context": "CREATE TABLE table_name_25 (race VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_95 WHERE race = \"swedish grand prix\"", "question": "What is the Pole Position of the Swedish Grand Prix?", "context": "CREATE TABLE table_name_95 (pole_position VARCHAR, race VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE location = \"zandvoort\"", "question": "What was the date when the location was Zandvoort?", "context": "CREATE TABLE table_name_72 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(chapters) FROM table_name_86 WHERE director = \"elmer clifton\"", "question": "How many chapters did Elmer Clifton direct?", "context": "CREATE TABLE table_name_86 (chapters VARCHAR, director VARCHAR)"}, {"answer": "SELECT spouse FROM table_name_54 WHERE father = \"ferdinand i of the two sicilies\"", "question": "Who is the spouse of the queen who is the daughter of Ferdinand I of the two sicilies?", "context": "CREATE TABLE table_name_54 (spouse VARCHAR, father VARCHAR)"}, {"answer": "SELECT entered_service FROM table_name_29 WHERE serial_no = \"85-1222\"", "question": "What is the entered service date for serial number 85-1222?", "context": "CREATE TABLE table_name_29 (entered_service VARCHAR, serial_no VARCHAR)"}, {"answer": "SELECT locomotive FROM table_name_44 WHERE name = \"city of benalla\"", "question": "What is the locomotive for the city of Benalla?", "context": "CREATE TABLE table_name_44 (locomotive VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_95 WHERE locomotive = \"n464\"", "question": "What is the name for the locomotive n464?", "context": "CREATE TABLE table_name_95 (name VARCHAR, locomotive VARCHAR)"}, {"answer": "SELECT name FROM table_name_9 WHERE locomotive = \"n474\"", "question": "What is the name for the locomotive n474?", "context": "CREATE TABLE table_name_9 (name VARCHAR, locomotive VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_40 WHERE venue = \"windy hill\"", "question": "What is the home team score at windy hill?", "context": "CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_32 WHERE away_team = \"st kilda\"", "question": "What is the largest crowd for an Away team of st kilda?", "context": "CREATE TABLE table_name_32 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT played_in FROM table_name_55 WHERE points_for = \"119\"", "question": "Where was the match that had 119 points for played?", "context": "CREATE TABLE table_name_55 (played_in VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT played_in FROM table_name_36 WHERE matches = \"16\"", "question": "Where were 16 matches played?", "context": "CREATE TABLE table_name_36 (played_in VARCHAR, matches VARCHAR)"}, {"answer": "SELECT matches FROM table_name_81 WHERE points_for = \"240\"", "question": "What match had 240 points for?", "context": "CREATE TABLE table_name_81 (matches VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE date = \"26 july 1930\"", "question": "What was the score on 26 July 1930?", "context": "CREATE TABLE table_name_62 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT laps FROM table_name_60 WHERE grid > 15 AND driver = \"innes ireland\"", "question": "How many laps did Innes Ireland make when he had a grid more than 15?", "context": "CREATE TABLE table_name_60 (laps VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_34 WHERE driver = \"jack brabham\" AND laps > 65", "question": "What is the grid for Jack Brabham with more than 65 laps?", "context": "CREATE TABLE table_name_34 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_92 WHERE grid = 5", "question": "Who drove grid 5?", "context": "CREATE TABLE table_name_92 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE visitor = \"rockets\"", "question": "What is the date of the game with the Rockets as the visitor team?", "context": "CREATE TABLE table_name_3 (date VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT position FROM table_name_88 WHERE years_for_rockets = \"1981\"", "question": "What was the position of the player who played for the Rockets during 1981?", "context": "CREATE TABLE table_name_88 (position VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT school_club_team_country FROM table_name_53 WHERE no_s_ < 4", "question": "What school, club team, or country did the player with a number smaller than 4 come from?", "context": "CREATE TABLE table_name_53 (school_club_team_country VARCHAR, no_s_ INTEGER)"}, {"answer": "SELECT no_s_ FROM table_name_29 WHERE school_club_team_country = \"virginia\"", "question": "What is the number of the player who came from Virginia?", "context": "CREATE TABLE table_name_29 (no_s_ VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_6 WHERE laps > 56 AND grid = 5", "question": "What is the Time/Retired with over 56 laps and a grid of 5?", "context": "CREATE TABLE table_name_6 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_10 WHERE tyre = \"p\" AND entrant = \"officine alfieri maserati\"", "question": "Who is the driver when the tyre is p and the entrant is officine alfieri maserati?", "context": "CREATE TABLE table_name_10 (driver VARCHAR, tyre VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_78 WHERE chassis = \"talbot-lago t26c\" AND driver = \"charles pozzi\"", "question": "Who is the constructor when the chassis is talbot-lago t26c and the driver is charles pozzi?", "context": "CREATE TABLE table_name_78 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_87 WHERE entrant = \"sa alfa romeo\" AND driver = \"luigi fagioli\"", "question": "What is the tyre when the entrant is sa alfa romeo and the driver is luigi fagioli?", "context": "CREATE TABLE table_name_87 (tyre VARCHAR, entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_90 WHERE engine = \"talbot l6\" AND driver = \"pierre levegh\"", "question": "Who is the entrant when the engine is talbot l6 and the driver is pierre levegh?", "context": "CREATE TABLE table_name_90 (entrant VARCHAR, engine VARCHAR, driver VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_88 WHERE chassis = \"ferrari 125\"", "question": "Who is the entrant when the chassis is ferrari 125?", "context": "CREATE TABLE table_name_88 (entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_17 WHERE tyre = \"d\" AND constructor = \"era\" AND driver = \"bob gerard\"", "question": "what is the engine when the tyre is d, the constructor is era and the driver is bob gerard?", "context": "CREATE TABLE table_name_17 (engine VARCHAR, driver VARCHAR, tyre VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE record = \"39-62\"", "question": "What was the score when the record was 39-62?", "context": "CREATE TABLE table_name_29 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE record = \"35-57\"", "question": "What was the date when the record was 35-57?", "context": "CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_20 WHERE record = \"34-56\"", "question": "What was the loss when the record was 34-56?", "context": "CREATE TABLE table_name_20 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_37 WHERE home_team = \"geelong\"", "question": "What is the name of the away team that played Geelong?", "context": "CREATE TABLE table_name_37 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_40 WHERE away_team = \"fitzroy\"", "question": "What is the smallest crowd size for away team Fitzroy?", "context": "CREATE TABLE table_name_40 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT builder FROM table_name_71 WHERE br_no = 30782", "question": "Which Builder has BR No. 30782?", "context": "CREATE TABLE table_name_71 (builder VARCHAR, br_no VARCHAR)"}, {"answer": "SELECT title FROM table_name_75 WHERE production_code = \"k1504\"", "question": "What is the title of the episode with a production code of K1504?", "context": "CREATE TABLE table_name_75 (title VARCHAR, production_code VARCHAR)"}, {"answer": "SELECT AVG(series__number) FROM table_name_42 WHERE directed_by = \"matthew penn\"", "question": "What is the average of the Series #s that were directed by Matthew Penn?", "context": "CREATE TABLE table_name_42 (series__number INTEGER, directed_by VARCHAR)"}, {"answer": "SELECT COUNT(series__number) FROM table_name_20 WHERE season__number < 22 AND directed_by = \"matthew penn\"", "question": "How many episodes did Matthew Penn direct before season 22?", "context": "CREATE TABLE table_name_20 (series__number VARCHAR, season__number VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_90 WHERE attendance > 18 OFFSET 680", "question": "What Visiting Team(s) had an Attendance of over 18,680", "context": "CREATE TABLE table_name_90 (visitor VARCHAR, attendance INTEGER)"}, {"answer": "SELECT MIN(attendance) FROM table_name_34 WHERE visitor = \"nashville\"", "question": "When Nashville was the visiting team what was the lowest Attendance shown?", "context": "CREATE TABLE table_name_34 (attendance INTEGER, visitor VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_81 WHERE grid = 16", "question": "What is the time/retired for the driver with 16 grids?", "context": "CREATE TABLE table_name_81 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_89 WHERE time_retired = \"1:56:18.22\"", "question": "What is the smallest grid for a time/retired of 1:56:18.22?", "context": "CREATE TABLE table_name_89 (grid INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_18 WHERE date = \"september 28\"", "question": "Who was the opponent on September 28?", "context": "CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_58 WHERE save = \"||33,389||87\u201362\"", "question": "Who was the opponent in the game with save ||33,389||87\u201362?", "context": "CREATE TABLE table_name_58 (opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_76 WHERE save = \"||33,723||93\u201364\"", "question": "Who was the opponent in the game with save ||33,723||93\u201364?", "context": "CREATE TABLE table_name_76 (opponent VARCHAR, save VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE date = \"september 8\"", "question": "What was the score on September 8?", "context": "CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_92 WHERE years_for_jazz = \"1984-85\"", "question": "Which nationality has Years for Jazz of 1984-85?", "context": "CREATE TABLE table_name_92 (nationality VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT position FROM table_name_9 WHERE nationality = \"united states\" AND player = \"roger powell\"", "question": "Which position has a Nationality of united states, and a Player of roger powell?", "context": "CREATE TABLE table_name_9 (position VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_name_48 WHERE player = \"milt palacio\"", "question": "What years does milt palacio play?", "context": "CREATE TABLE table_name_48 (years_for_jazz VARCHAR, player VARCHAR)"}, {"answer": "SELECT years_for_jazz FROM table_name_17 WHERE school_club_team = \"colorado state\"", "question": "Which years have a School/Club Team of colorado state?", "context": "CREATE TABLE table_name_17 (years_for_jazz VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT years FROM table_name_64 WHERE engine_code = \"m47d20\" AND model = \"318td (diesel)\"", "question": "During which years was the Model 318td (diesel) with the Engine code of m47d20 manufactured?", "context": "CREATE TABLE table_name_64 (years VARCHAR, engine_code VARCHAR, model VARCHAR)"}, {"answer": "SELECT torque FROM table_name_73 WHERE engine_code = \"m54b25\"", "question": "What is the Torque of the model with the engine code of M54B25?", "context": "CREATE TABLE table_name_73 (torque VARCHAR, engine_code VARCHAR)"}, {"answer": "SELECT torque FROM table_name_27 WHERE model = \"320td (diesel)\"", "question": "What is the Torque of the Model 320td (diesel)?", "context": "CREATE TABLE table_name_27 (torque VARCHAR, model VARCHAR)"}, {"answer": "SELECT years FROM table_name_11 WHERE engine_code = \"m54b25\"", "question": "During which years was the model with the Engine code of m54b25 manufactured?", "context": "CREATE TABLE table_name_11 (years VARCHAR, engine_code VARCHAR)"}, {"answer": "SELECT model FROM table_name_72 WHERE years = \"2001\u20132004\" AND torque = \"n\u00b7m (lb\u00b7ft) @ 3750\" AND engine_code = \"n42b18 / n46b18\"", "question": "Which model was made from 2001\u20132004, with a Torque of n\u00b7m (lb\u00b7ft) @ 3750, and an Engine code of n42b18 / n46b18?", "context": "CREATE TABLE table_name_72 (model VARCHAR, engine_code VARCHAR, years VARCHAR, torque VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE score = \"1-12\"", "question": "What was the date of the Mariners game that had a score of 1-12?", "context": "CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE attendance = \"6,707\"", "question": "What was the date of the Mariners game that had an attendance of 6,707?", "context": "CREATE TABLE table_name_8 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE loss = \"segui (0-5)\"", "question": "What was the date of the Mariners game that had a loss of Segui (0-5)?", "context": "CREATE TABLE table_name_77 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_91 WHERE attendance = \"9,065\"", "question": "What was the loss of the Mariners game that had an attendance of 9,065?", "context": "CREATE TABLE table_name_91 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_49 WHERE attendance = \"7,893\"", "question": "Who was the Mariners opponent at the game attended by 7,893?", "context": "CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT surface FROM table_name_88 WHERE tournament = \"aptos\"", "question": "What is the tournament surface at Aptos?", "context": "CREATE TABLE table_name_88 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE opponent_in_the_final = \"paul goldstein\"", "question": "What was the final score of the Paul Goldstein match?", "context": "CREATE TABLE table_name_96 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_69 WHERE date = \"november 23, 1998\"", "question": "Who played the final match on November 23, 1998?", "context": "CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE opponent_in_the_final = \"paul goldstein\"", "question": "What date did Paul Goldstein play the final?", "context": "CREATE TABLE table_name_69 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_83 WHERE opponent_in_the_final = \"takao suzuki\"", "question": "What was the surface type at Takao Suzuki?", "context": "CREATE TABLE table_name_83 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE date = \"september 11, 2006\"", "question": "What were the scores on September 11, 2006?", "context": "CREATE TABLE table_name_95 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_83 WHERE date = \"may 9\"", "question": "Who did they lose to on may 9?", "context": "CREATE TABLE table_name_83 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_27 WHERE driver = \"pedro de la rosa\"", "question": "What is Pedro De La Rosa's total number of Grid?", "context": "CREATE TABLE table_name_27 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_91 WHERE time_retired = \"+37.311\"", "question": "Which constructor has a Time/Retired of +37.311?", "context": "CREATE TABLE table_name_91 (constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_38 WHERE driver = \"mika h\u00e4kkinen\"", "question": "What is the time/retired for mika h\u00e4kkinen", "context": "CREATE TABLE table_name_38 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT title FROM table_name_68 WHERE audience = \"4.629.000\"", "question": "Which title had an audience of 4.629.000?", "context": "CREATE TABLE table_name_68 (title VARCHAR, audience VARCHAR)"}, {"answer": "SELECT audience FROM table_name_36 WHERE episode = \"21\"", "question": "What was the audience for Episode 21?", "context": "CREATE TABLE table_name_36 (audience VARCHAR, episode VARCHAR)"}, {"answer": "SELECT share FROM table_name_82 WHERE audience = \"3.944.000\"", "question": "What was the share when the audience was 3.944.000?", "context": "CREATE TABLE table_name_82 (share VARCHAR, audience VARCHAR)"}, {"answer": "SELECT audience FROM table_name_74 WHERE title = \"mi amigo el monstruo\"", "question": "What was the audience for Mi Amigo el Monstruo?", "context": "CREATE TABLE table_name_74 (audience VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_67 WHERE share = \"19,9%\"", "question": "Which title has a share of 19,9%", "context": "CREATE TABLE table_name_67 (title VARCHAR, share VARCHAR)"}, {"answer": "SELECT share FROM table_name_12 WHERE audience = \"4.693.000\"", "question": "Which share had an audience of 4.693.000?", "context": "CREATE TABLE table_name_12 (share VARCHAR, audience VARCHAR)"}, {"answer": "SELECT venue FROM table_name_24 WHERE away_team = \"carlton\"", "question": "what was the venue that hosted Carlton as the away team?", "context": "CREATE TABLE table_name_24 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE away_team = \"collingwood\"", "question": "What was the date of the Collingwood away game?", "context": "CREATE TABLE table_name_38 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_54 WHERE team = \"new york knicks\" AND position = \"c\"", "question": "Who is the player that plays position c on the New York Knicks?", "context": "CREATE TABLE table_name_54 (player VARCHAR, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_42 WHERE pick = \"1\"", "question": "What is the position of the pick 1 player?", "context": "CREATE TABLE table_name_42 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE team = \"fort wayne pistons\" AND position = \"f\"", "question": "Who is the player that plays position f from Fort Wayne Pistons?", "context": "CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT round FROM table_name_32 WHERE college = \"oregon\"", "question": "Which round is the player from Oregon from?", "context": "CREATE TABLE table_name_32 (round VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_37 WHERE goals_against < 56 AND games_played > 7 AND wins < 6", "question": "How many goals for occurred when the goals against was less than 56 and games played was larger than 7 with less than 6 wins?", "context": "CREATE TABLE table_name_37 (goals_for VARCHAR, wins VARCHAR, goals_against VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_93 WHERE games_played = 7 AND goals_against < 46 AND goals_for > 34", "question": "What is the smallest number of wins with 7 games played and goals against less than 46 when goals for is more than 34?", "context": "CREATE TABLE table_name_93 (wins INTEGER, goals_for VARCHAR, games_played VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT AVG(ties) FROM table_name_41 WHERE goals_against < 56 AND team = \"ottawa hockey club\" AND goals_for > 47", "question": "What is the average number of ties when goals against is less than 56 for Ottawa Hockey Club and the goals for is more than 47?", "context": "CREATE TABLE table_name_41 (ties INTEGER, goals_for VARCHAR, goals_against VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_75 WHERE games_played < 8 AND wins < 3", "question": "How many losses occurred with less than 8 games played and less than 3 wins?", "context": "CREATE TABLE table_name_75 (losses VARCHAR, games_played VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(goals_against) FROM table_name_65 WHERE goals_for < 48 AND ties < 0", "question": "How many goals against were scored when the goals for is less than 48 with 0 ties?", "context": "CREATE TABLE table_name_65 (goals_against VARCHAR, goals_for VARCHAR, ties VARCHAR)"}, {"answer": "SELECT position FROM table_name_26 WHERE school_club_team_country = \"valparaiso\"", "question": "Name the position for the player that is from valparaiso", "context": "CREATE TABLE table_name_26 (position VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_35 WHERE position = \"guard\" AND school_club_team_country = \"north carolina-charlotte\"", "question": "Name the height in feet for the guard from north carolina-charlotte", "context": "CREATE TABLE table_name_35 (height_in_ft VARCHAR, position VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_80 WHERE school_club_team_country = \"valparaiso\"", "question": "Name the height in feet for the player from valparaiso", "context": "CREATE TABLE table_name_80 (height_in_ft VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT school_club_team_country FROM table_name_11 WHERE height_in_ft = \"6-5\"", "question": "Name the school/club team/country for the player that is 6-5 ft", "context": "CREATE TABLE table_name_11 (school_club_team_country VARCHAR, height_in_ft VARCHAR)"}, {"answer": "SELECT no_s_ FROM table_name_4 WHERE height_in_ft = \"6-7\" AND position = \"guard\"", "question": "Name the numbers for the player with a height in ft of 6-7 for the guard", "context": "CREATE TABLE table_name_4 (no_s_ VARCHAR, height_in_ft VARCHAR, position VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_59 WHERE school_club_team_country = \"wyoming\"", "question": "Name the height in ft for the player from wyoming", "context": "CREATE TABLE table_name_59 (height_in_ft VARCHAR, school_club_team_country VARCHAR)"}, {"answer": "SELECT college FROM table_name_29 WHERE cfl_team = \"calgary stampeders\"", "question": "Which college did the Calgary Stampeders recruit from?", "context": "CREATE TABLE table_name_29 (college VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_87 WHERE co_singer = \"solo\" AND film_name = \"bhagya debata\"", "question": "Which year has the Co-singer solo and a Film name of bhagya debata?", "context": "CREATE TABLE table_name_87 (year INTEGER, co_singer VARCHAR, film_name VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE grand_prix = \"portuguese grand prix\"", "question": "What date is the Portuguese Grand Prix?", "context": "CREATE TABLE table_name_30 (date VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_48 WHERE location = \"imola\"", "question": "Which winning driver is located in Imola?", "context": "CREATE TABLE table_name_48 (winning_driver VARCHAR, location VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_98 WHERE grand_prix = \"portuguese grand prix\"", "question": "What is the Pole Position of the Portuguese Grand Prix?", "context": "CREATE TABLE table_name_98 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE location = \"long beach\"", "question": "On what date did a race occur at Long Beach?", "context": "CREATE TABLE table_name_76 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT race FROM table_name_63 WHERE pole_position = \"jody scheckter\"", "question": "What race had Jody Scheckter hold pole position?", "context": "CREATE TABLE table_name_63 (race VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT race AS Winner FROM table_name_63 WHERE race = \"south african grand prix\"", "question": "Who won the South African Grand Prix?", "context": "CREATE TABLE table_name_63 (race VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_87 WHERE race = \"german grand prix\"", "question": "Who had the fastest lap at the German Grand Prix?", "context": "CREATE TABLE table_name_87 (fastest_lap VARCHAR, race VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_5 WHERE race = \"united states grand prix\"", "question": "What is the Tyre for the united states grand prix?", "context": "CREATE TABLE table_name_5 (tyre VARCHAR, race VARCHAR)"}, {"answer": "SELECT result FROM table_name_59 WHERE competition = \"1948 og\"", "question": "What was the result of the 1948 og competition?", "context": "CREATE TABLE table_name_59 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_48 WHERE driver = \"rolf stommelen\"", "question": "I want the lowest Grid for Rolf Stommelen", "context": "CREATE TABLE table_name_48 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_68 WHERE grid < 20 AND laps = 6", "question": "I want the constructor for grid less than 20 and Laps of 6", "context": "CREATE TABLE table_name_68 (constructor VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT german FROM table_name_59 WHERE year > 1910 AND other = \"143\" AND hungarian = \"32\"", "question": "What is the german total population after 1910 with an other total of 143 and 32 hungarians?", "context": "CREATE TABLE table_name_59 (german VARCHAR, hungarian VARCHAR, year VARCHAR, other VARCHAR)"}, {"answer": "SELECT year FROM table_name_4 WHERE notes = \"200 m\" AND position = \"3rd\"", "question": "What year did Naoki Tsukahara finish 3rd in the 200 m race?", "context": "CREATE TABLE table_name_4 (year VARCHAR, notes VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_67 WHERE home = \"dallas\" AND date = \"may 12\"", "question": "What is the attendance at the Dallas home game on may 12?", "context": "CREATE TABLE table_name_67 (attendance VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_83 WHERE rank = 2", "question": "What nationality is the player ranked 2?", "context": "CREATE TABLE table_name_83 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_49 WHERE player = \"mike hill\" AND rank < 4", "question": "How many wins for mike hill ranked below 4?", "context": "CREATE TABLE table_name_49 (wins VARCHAR, player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_10 WHERE player = \"trevor cann\"", "question": "What is Trevor Cann's nationality?", "context": "CREATE TABLE table_name_10 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_60 WHERE player = \"kent patterson\"", "question": "What is Kent Patterson's nationality?", "context": "CREATE TABLE table_name_60 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT unit FROM table_name_27 WHERE pennant_number = 82", "question": "Which unit has a Pennant Number of 82?", "context": "CREATE TABLE table_name_27 (unit VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT MAX(pennant_number) FROM table_name_54 WHERE ships_in_class = \"raahe\"", "question": "What is the highest pennant number with ships in raahe class?", "context": "CREATE TABLE table_name_54 (pennant_number INTEGER, ships_in_class VARCHAR)"}, {"answer": "SELECT MAX(pennant_number) FROM table_name_61 WHERE ships_in_class = \"pori\"", "question": "What is the highest pennant number with ships in pori class?", "context": "CREATE TABLE table_name_61 (pennant_number INTEGER, ships_in_class VARCHAR)"}, {"answer": "SELECT competition FROM table_name_90 WHERE score = \"2-1\"", "question": "What is the name of the competition that ended with a score of 2-1?", "context": "CREATE TABLE table_name_90 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_63 WHERE score = \"1-3\"", "question": "What is the name of the competition that ended with a score of 1-3?", "context": "CREATE TABLE table_name_63 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_5 WHERE date = \"28 october 2013\"", "question": "At which venue did the game on 28 october 2013 take place?", "context": "CREATE TABLE table_name_5 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_74 WHERE score = \"2-1\"", "question": "What is the Competition name of the competition that ended with a score of 2-1?", "context": "CREATE TABLE table_name_74 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT year FROM table_name_70 WHERE engine = \"yamaha v12\" AND chassis = \"brabham bt60y\"", "question": "In what year did a car have a yamaha v12 engine and a brabham bt60y chassis", "context": "CREATE TABLE table_name_70 (year VARCHAR, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_31 WHERE chassis = \"mclaren mp4/10b\"", "question": "waht is the last year with a mclaren mp4/10b chassis", "context": "CREATE TABLE table_name_31 (year INTEGER, chassis VARCHAR)"}, {"answer": "SELECT AVG(pts) FROM table_name_58 WHERE chassis = \"mclaren mp4/10b\" AND year < 1995", "question": "before 1995 waht is the aveage pts for a mclaren mp4/10b chassis", "context": "CREATE TABLE table_name_58 (pts INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_84 WHERE entrant = \"ligier gitanes blondes\"", "question": "what is the most recent year for a ligier gitanes blondes", "context": "CREATE TABLE table_name_84 (year INTEGER, entrant VARCHAR)"}, {"answer": "SELECT SUM(average) FROM table_name_62 WHERE interview = 8.75 AND evening_gown > 8.75", "question": "What is the total number of averages with an interview of 8.75 when the evening gown number was bigger than 8.75?", "context": "CREATE TABLE table_name_62 (average INTEGER, interview VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT SUM(interview) FROM table_name_64 WHERE evening_gown < 8.82 AND state = \"kentucky\" AND average > 8.85", "question": "What is the total number of interviews where the evening gown number is less than 8.82, the state is Kentucky, and the average is more than 8.85?", "context": "CREATE TABLE table_name_64 (interview INTEGER, average VARCHAR, evening_gown VARCHAR, state VARCHAR)"}, {"answer": "SELECT SUM(average) FROM table_name_96 WHERE swimsuit = 8.42 AND evening_gown < 8.71", "question": "How many averages had a swimsuit number of 8.42 and an evening gown number that was less than 8.71?", "context": "CREATE TABLE table_name_96 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT state FROM table_name_70 WHERE average < 8.67 AND swimsuit = 8.27 AND evening_gown = 8.78 AND interview = 8.52", "question": "Which state had an average of less than 8.67, a swimsuit score of 8.27, an evening gown score of 8.78, and an interview number of 8.52?", "context": "CREATE TABLE table_name_70 (state VARCHAR, interview VARCHAR, evening_gown VARCHAR, average VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT record FROM table_name_82 WHERE visitor = \"nashville\"", "question": "What is the record when the visitor was Nashville?", "context": "CREATE TABLE table_name_82 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE venue = \"pietermaritzburg\"", "question": "When was a competition held at Pietermaritzburg?", "context": "CREATE TABLE table_name_83 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT bowling_figures_wickets_runs__overs_ FROM table_name_19 WHERE venue = \"pietermaritzburg\"", "question": "What were the bowling figures for the competition at Pietermaritzburg?", "context": "CREATE TABLE table_name_19 (bowling_figures_wickets_runs__overs_ VARCHAR, venue VARCHAR)"}, {"answer": "SELECT versus FROM table_name_82 WHERE bowling_figures_wickets_runs__overs_ = \"5-33 (10)\"", "question": "Who was the opponent during the competition in which the bowling figures were 5-33 (10)?", "context": "CREATE TABLE table_name_82 (versus VARCHAR, bowling_figures_wickets_runs__overs_ VARCHAR)"}, {"answer": "SELECT bowling_figures_wickets_runs__overs_ FROM table_name_42 WHERE bowler = \"gd mcgrath\"", "question": "What were GD Mcgrath's bowling figures?", "context": "CREATE TABLE table_name_42 (bowling_figures_wickets_runs__overs_ VARCHAR, bowler VARCHAR)"}, {"answer": "SELECT bowling_figures_wickets_runs__overs_ FROM table_name_43 WHERE venue = \"port elizabeth\" AND versus = \"australia\"", "question": "During the competition at Port Elizabeth, where the opponent was Australia, what were the bowling figures?", "context": "CREATE TABLE table_name_43 (bowling_figures_wickets_runs__overs_ VARCHAR, venue VARCHAR, versus VARCHAR)"}, {"answer": "SELECT MIN(floors) FROM table_name_33 WHERE rank > 1 AND building = \"the trillium (residential)\"", "question": "What is the lowest amount of floors after rank 1 in the Trillium (residential) building?", "context": "CREATE TABLE table_name_33 (floors INTEGER, rank VARCHAR, building VARCHAR)"}, {"answer": "SELECT MIN(floors) FROM table_name_4 WHERE completed < 1970 AND rank > 14", "question": "What is the lowest amount of floors in the building completed before 1970 ranked more than 14?", "context": "CREATE TABLE table_name_4 (floors INTEGER, completed VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(floors) FROM table_name_11 WHERE height = \"70m (233ft)\" AND building = \"tupper building (educational)\"", "question": "What is the largest amount of floors in the 70m (233ft) Tupper building (educational)?", "context": "CREATE TABLE table_name_11 (floors INTEGER, height VARCHAR, building VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_52 WHERE laps = 23 AND time_retired = \"+45.195\"", "question": "Which manufacturer has 23 laps and a time of +45.195?", "context": "CREATE TABLE table_name_52 (manufacturer VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_8 WHERE rider = \"sylvain guintoli\"", "question": "What is the sum of Sylvain Guintoli's laps?", "context": "CREATE TABLE table_name_8 (laps INTEGER, rider VARCHAR)"}, {"answer": "SELECT runs FROM table_name_75 WHERE strike_rate = \"101.42\"", "question": "How many runs were scored when the strike rate was 101.42?", "context": "CREATE TABLE table_name_75 (runs VARCHAR, strike_rate VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_4 WHERE product = \"grain\"", "question": "What was the amount of grain in 2001?", "context": "CREATE TABLE table_name_4 (product VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_51 WHERE product = \"oil terminal\"", "question": "What is the amount of oil terminal in 2004?", "context": "CREATE TABLE table_name_51 (product VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_34 WHERE 2001 = \"514,000 tonnes\"", "question": "What is the 2003 statistic for the product that had 514,000 tonnes in 2001?", "context": "CREATE TABLE table_name_34 (Id VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_7 WHERE 2001 = \"452,000 tonnes\"", "question": "What is the 2002 statistic for the product that had 452,000 tonnes in 2001?", "context": "CREATE TABLE table_name_7 (Id VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_91 WHERE 2002 = \"2,360,000 tonnes\"", "question": "What is the 2001 statistic for the product that had 2,360,000 tonnes in 2002?", "context": "CREATE TABLE table_name_91 (Id VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_94 WHERE product = \"general cargo\"", "question": "What is the 2003 statistic for general cargo?", "context": "CREATE TABLE table_name_94 (product VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_30 WHERE venue = \"mcg\"", "question": "What did the home team score at MCG?", "context": "CREATE TABLE table_name_30 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_44 WHERE home_team = \"south melbourne\"", "question": "What did the away team score when playing South Melbourne?", "context": "CREATE TABLE table_name_44 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE away_team = \"north melbourne\"", "question": "When did the game with North Melbourne as the away team take place?", "context": "CREATE TABLE table_name_89 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE away_team = \"south melbourne\"", "question": "If the Away team was south melbourne what Date did they play?", "context": "CREATE TABLE table_name_57 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_67 WHERE home_team = \"essendon\"", "question": "When the Home team of essendon is playing what is the Away team score?", "context": "CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_22 WHERE manner_of_departure = \"resigned\" AND outgoing_manager = \"gordon wylde\"", "question": "I wan the date of vacancy for departure of resigned and outgoing manager of gordon wylde", "context": "CREATE TABLE table_name_22 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_73 WHERE date_of_appointment = \"12 october 2007\"", "question": "I want the replaced for date of appointment being 12 october 2007", "context": "CREATE TABLE table_name_73 (replaced_by VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT team FROM table_name_52 WHERE date_of_vacancy = \"28 february\"", "question": "I want the team for date of vacancy being 28 february", "context": "CREATE TABLE table_name_52 (team VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_87 WHERE date_of_appointment = \"12 october 2007\"", "question": "I want the manner of departure for date of appointment being 12 october 2007", "context": "CREATE TABLE table_name_87 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE circuit = \"syracuse\"", "question": "Which date was the syracuse circuit?", "context": "CREATE TABLE table_name_67 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE race_name = \"x gran premio di napoli\"", "question": "Which date was the x gran premio di napoli?", "context": "CREATE TABLE table_name_7 (date VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT report FROM table_name_25 WHERE date = \"22 september\"", "question": "What report happened on 22 september?", "context": "CREATE TABLE table_name_25 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_name_33 WHERE winning_driver = \"peter collins\" AND circuit = \"syracuse\"", "question": "Which report has a Winning driver of peter collins, and a Circuit of syracuse?", "context": "CREATE TABLE table_name_33 (report VARCHAR, winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT appointed_by FROM table_name_73 WHERE judge = \"edward e. cushman\"", "question": "Who appointed Judge Edward E. Cushman?", "context": "CREATE TABLE table_name_73 (appointed_by VARCHAR, judge VARCHAR)"}, {"answer": "SELECT Chief AS judge FROM table_name_37 WHERE judge = \"jack edward tanner\"", "question": "Who was Judge Jack Edward Tanner's chief judge?", "context": "CREATE TABLE table_name_37 (Chief VARCHAR, judge VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_41 WHERE caps = 11 AND position = \"prop\"", "question": "What is the date of birth of the player that has 11 caps and plays the prop position?", "context": "CREATE TABLE table_name_41 (date_of_birth__age_ VARCHAR, caps VARCHAR, position VARCHAR)"}, {"answer": "SELECT club_province FROM table_name_49 WHERE caps = 12", "question": "What club or province is the player with 12 caps from?", "context": "CREATE TABLE table_name_49 (club_province VARCHAR, caps VARCHAR)"}, {"answer": "SELECT position FROM table_name_47 WHERE club_province = \"newcastle\" AND caps < 24 AND player = \"toby flood\"", "question": "What position does Toby Flood, who is from Newcastle and has fewer than 24 caps, play?", "context": "CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR, club_province VARCHAR, caps VARCHAR)"}, {"answer": "SELECT winningteam FROM table_name_76 WHERE losingteam = \"newcastle breakers\"", "question": "Which team beat the Newcastle Breakers?", "context": "CREATE TABLE table_name_76 (winningteam VARCHAR, losingteam VARCHAR)"}, {"answer": "SELECT losingteam FROM table_name_82 WHERE cup_finaldate = \"20 august 1989\"", "question": "What team lost on 20 August 1989?", "context": "CREATE TABLE table_name_82 (losingteam VARCHAR, cup_finaldate VARCHAR)"}, {"answer": "SELECT cup_finaldate FROM table_name_44 WHERE winningteam = \"brisbane lions (1)\"", "question": "On what date did the Brisbane Lions (1) win?", "context": "CREATE TABLE table_name_44 (cup_finaldate VARCHAR, winningteam VARCHAR)"}, {"answer": "SELECT winningteam FROM table_name_20 WHERE cup_final_attendance = \"8,132\"", "question": "What was the winning team with the 8,132 final attendance?", "context": "CREATE TABLE table_name_20 (winningteam VARCHAR, cup_final_attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_48 WHERE date = \"august 2\"", "question": "What was the attendance on August 2?", "context": "CREATE TABLE table_name_48 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE attendance = \"31,220\"", "question": "What is the date where the attendance was 31,220?", "context": "CREATE TABLE table_name_62 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_8 WHERE date = \"august 4\"", "question": "What was the team's record on August 4?", "context": "CREATE TABLE table_name_8 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE attendance = \"48,041\"", "question": "What was the date when the attendance was 48,041?", "context": "CREATE TABLE table_name_84 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_44 WHERE partnering = \"ricardo hocevar\"", "question": "Who are the finals opponents for the match with partner Ricardo Hocevar?", "context": "CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_4 WHERE date = \"june 23, 2003\"", "question": "Who were the opponents of the final on June 23, 2003?", "context": "CREATE TABLE table_name_4 (opponents_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_37 WHERE venue = \"glenferrie oval\"", "question": "Who was the home side at glenferrie oval?", "context": "CREATE TABLE table_name_37 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_2 WHERE episode__number = \"38 (16)\"", "question": "Who is the author of Episode 38 (16)?", "context": "CREATE TABLE table_name_2 (written_by VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT original_airdate FROM table_name_65 WHERE episode__number = \"29 (7)\"", "question": "When did Episode 29 (7) originally air?", "context": "CREATE TABLE table_name_65 (original_airdate VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT episode__number FROM table_name_23 WHERE original_airdate = \"april 5, 1998\"", "question": "What is the episode # of the episode that aired on April 5, 1998?", "context": "CREATE TABLE table_name_23 (episode__number VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_42 WHERE original_airdate = \"march 1, 1998\"", "question": "Who wrote the episode that originally aired on March 1, 1998?", "context": "CREATE TABLE table_name_42 (written_by VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_35 WHERE 2000 = \"3r\"", "question": "what tournament has 2000 of 3r?", "context": "CREATE TABLE table_name_35 (tournament VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_42 WHERE 1991 = \"4r\"", "question": "what 2001 has 1991 of 4r?", "context": "CREATE TABLE table_name_42 (Id VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_22 WHERE 2002 = \"4r\" AND 2005 = \"4r\"", "question": "what 1989 has 2002 of 4r and 2005 of 4r?", "context": "CREATE TABLE table_name_22 (Id VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_34 WHERE crowd > 28 OFFSET 536", "question": "What team played in front of 28,536 at an away stadium?", "context": "CREATE TABLE table_name_34 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT home_team AS score FROM table_name_25 WHERE home_team = \"fitzroy\"", "question": "What was Fitzroy score at their home stadium?", "context": "CREATE TABLE table_name_25 (home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_43 WHERE home_team = \"st kilda\"", "question": "Who faced off against St Kilda at their home?", "context": "CREATE TABLE table_name_43 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(top_25) FROM table_name_42 WHERE events > 15", "question": "What is the low number of top 25s in an event with over 15 appearances?", "context": "CREATE TABLE table_name_42 (top_25 INTEGER, events INTEGER)"}, {"answer": "SELECT AVG(rank) FROM table_name_8 WHERE day_of_week = \"wednesday\" AND year < 2012 AND studio_s_ = \"reliance entertainment\"", "question": "What is the average rank of the Reliance Entertainment movie with an opening day on Wednesday before 2012?", "context": "CREATE TABLE table_name_8 (rank INTEGER, studio_s_ VARCHAR, day_of_week VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(opening_day_net_gross) FROM table_name_90 WHERE studio_s_ = \"reliance entertainment\" AND year < 2011", "question": "What is the opening day net gross a Reliance Entertainment movie before 2011 had?", "context": "CREATE TABLE table_name_90 (opening_day_net_gross INTEGER, studio_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT studio_s_ FROM table_name_89 WHERE movie = \"ra.one\"", "question": "What is the studio of ra.one?", "context": "CREATE TABLE table_name_89 (studio_s_ VARCHAR, movie VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_78 WHERE day_of_week = \"friday\" AND rank = 10", "question": "What is the year of the movie with an opening day on Friday with a rank 10?", "context": "CREATE TABLE table_name_78 (year VARCHAR, day_of_week VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(sack) FROM table_name_1 WHERE solo = 24 AND tackles > 25.5 AND yards > 0", "question": "What is the lowest Sack with a Solo of 24, with Tackles larger than 25.5, with Yards larger than 0?", "context": "CREATE TABLE table_name_1 (sack INTEGER, yards VARCHAR, solo VARCHAR, tackles VARCHAR)"}, {"answer": "SELECT COUNT(solo) FROM table_name_33 WHERE player = \"sean mcinerney\" AND yards > 0", "question": "What is the total number of Solo with a Player with sean mcinerney, and Yards larger than 0?", "context": "CREATE TABLE table_name_33 (solo VARCHAR, player VARCHAR, yards VARCHAR)"}, {"answer": "SELECT SUM(total_capacity__mwe_) FROM table_name_86 WHERE power_plant = \"ramakkalmedu\"", "question": "At the power plant located in ramakkalmedu, what is the sum of the total capacity (MWe)?", "context": "CREATE TABLE table_name_86 (total_capacity__mwe_ INTEGER, power_plant VARCHAR)"}, {"answer": "SELECT producer FROM table_name_79 WHERE power_plant = \"chennai mohan\"", "question": "What company is the producer in the chennai mohan power plant?", "context": "CREATE TABLE table_name_79 (producer VARCHAR, power_plant VARCHAR)"}, {"answer": "SELECT producer FROM table_name_99 WHERE location = \"poolavadi\"", "question": "What company is the producer at the poolavadi location", "context": "CREATE TABLE table_name_99 (producer VARCHAR, location VARCHAR)"}, {"answer": "SELECT producer FROM table_name_64 WHERE location = \"kethanur\"", "question": "What company is known as the producer at the kethanur location?", "context": "CREATE TABLE table_name_64 (producer VARCHAR, location VARCHAR)"}, {"answer": "SELECT feathered__fxx_ FROM table_name_37 WHERE duration = \"11 min, 34 sec\"", "question": "When the duration was 11 min, 34 sec, what was the feathered (Fxx)?", "context": "CREATE TABLE table_name_37 (feathered__fxx_ VARCHAR, duration VARCHAR)"}, {"answer": "SELECT city FROM table_name_6 WHERE date = \"5th\" AND name = \"guelferbytanus b\"", "question": "I want to know the city for guelferbytanus b and the 5th", "context": "CREATE TABLE table_name_6 (city VARCHAR, date VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_51 WHERE date = \"9th\" AND sign = \"g e\"", "question": "Name the country for the 9th and sign of g e", "context": "CREATE TABLE table_name_51 (country VARCHAR, date VARCHAR, sign VARCHAR)"}, {"answer": "SELECT content FROM table_name_54 WHERE sign = \"g e\"", "question": "Name the content for sign of g e", "context": "CREATE TABLE table_name_54 (content VARCHAR, sign VARCHAR)"}, {"answer": "SELECT city FROM table_name_22 WHERE name = \"athous lavrensis\"", "question": "Name the city for athous lavrensis", "context": "CREATE TABLE table_name_22 (city VARCHAR, name VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_22 WHERE dist__miles_ = \"4\" AND runner_up = \"not known\"", "question": "Which race had a distance of 4 miles where the runner-up was not known?", "context": "CREATE TABLE table_name_22 (race_name VARCHAR, dist__miles_ VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE home = \"jazz\" AND visitor = \"bulls\"", "question": "What date did the Jazz play the Bulls at home?", "context": "CREATE TABLE table_name_91 (date VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_30 WHERE date = \"february 26\"", "question": "On February 26, who was the leading scorer?", "context": "CREATE TABLE table_name_30 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_83 WHERE leading_scorer = \"carlos boozer (23)\"", "question": "What's the record of Carlos Boozer (23) as the leading scorer?", "context": "CREATE TABLE table_name_83 (record VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE leading_scorer = \"carlos boozer (23)\"", "question": "What date was Carlos Boozer (23) the leading scorer?", "context": "CREATE TABLE table_name_50 (date VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_96 WHERE date = \"february 9\"", "question": "Who was the leading scorer on February 9?", "context": "CREATE TABLE table_name_96 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE leading_scorer = \"deron williams (29)\" AND visitor = \"hornets\"", "question": "While the Hornets were visiting, what date was Deron Williams (29) the leading scorer?", "context": "CREATE TABLE table_name_94 (date VARCHAR, leading_scorer VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT ships_in_class FROM table_name_52 WHERE class = \"kuha class\"", "question": "Tell me the ships in classs for kuha class", "context": "CREATE TABLE table_name_52 (ships_in_class VARCHAR, class VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_20 WHERE constructor = \"talbot-lago - talbot\" AND laps < 83 AND driver = \"johnny claes\"", "question": "How many grids have a Constructor of talbot-lago - talbot, a Laps under 83, and a driver of johnny claes?", "context": "CREATE TABLE table_name_20 (grid VARCHAR, driver VARCHAR, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_86 WHERE away_team = \"geelong\"", "question": "When the away team is Geelong, what is the highest crowd count?", "context": "CREATE TABLE table_name_86 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_23 WHERE venue = \"princes park\"", "question": "What is the total crowd count for the venue Princes Park?", "context": "CREATE TABLE table_name_23 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_port FROM table_name_62 WHERE pennant = \"m40\"", "question": "What is the home port of m40?", "context": "CREATE TABLE table_name_62 (home_port VARCHAR, pennant VARCHAR)"}, {"answer": "SELECT navy FROM table_name_84 WHERE home_port = \"portsmouth\" AND commissioned > 1983 AND name = \"middleton\"", "question": "What is the navy for middleton with a home port of portsmouth after 1983?", "context": "CREATE TABLE table_name_84 (navy VARCHAR, name VARCHAR, home_port VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT date_of_death FROM table_name_4 WHERE name = \"charles iii\"", "question": "When did Charles III die?", "context": "CREATE TABLE table_name_4 (date_of_death VARCHAR, name VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_76 WHERE winning_driver = \"giuseppe farina\"", "question": "What is the fastest lap of the race where Giuseppe Farina was the winning driver?", "context": "CREATE TABLE table_name_76 (fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT report FROM table_name_92 WHERE constructor = \"ferrari\" AND circuit = \"monza\"", "question": "What is the report status of the race with Ferrari as the constructor and a monza circuit?", "context": "CREATE TABLE table_name_92 (report VARCHAR, constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_26 WHERE fastest_lap = \"juan manuel fangio\" AND winning_driver = \"giuseppe farina\"", "question": "What is the constructor of the race with Juan Manuel Fangio as the fastest lap and Giuseppe Farina as the winning driver?", "context": "CREATE TABLE table_name_26 (constructor VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_21 WHERE fastest_lap = \"giuseppe farina\" AND race = \"british grand prix\"", "question": "Who was the winning driver of the British Grand Prix where Giuseppe Farina had the fastest lap?", "context": "CREATE TABLE table_name_21 (winning_driver VARCHAR, fastest_lap VARCHAR, race VARCHAR)"}, {"answer": "SELECT race FROM table_name_99 WHERE tyre = \"p\" AND winning_driver = \"juan manuel fangio\"", "question": "What is the race that had a tyre of p and Juan Manuel Fangio as the winning driver?", "context": "CREATE TABLE table_name_99 (race VARCHAR, tyre VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT SUM(quantity) FROM table_name_76 WHERE type = \"2-4-2t\"", "question": "What is the Quantity of Type 2-4-2t?", "context": "CREATE TABLE table_name_76 (quantity INTEGER, type VARCHAR)"}, {"answer": "SELECT SUM(quantity) FROM table_name_71 WHERE date = \"1900\"", "question": "What was the Quantity on Date 1900?", "context": "CREATE TABLE table_name_71 (quantity INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(quantity) FROM table_name_59 WHERE type = \"2-4-2t\"", "question": "What is the Quantity of type 2-4-2t?", "context": "CREATE TABLE table_name_59 (quantity VARCHAR, type VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_70 WHERE time_retired = \"engine\" AND qual < 138.75", "question": "What is the smallest grid with a Time/Retired of engine, and a qual of less than 138.75?", "context": "CREATE TABLE table_name_70 (grid INTEGER, time_retired VARCHAR, qual VARCHAR)"}, {"answer": "SELECT laps FROM table_name_40 WHERE rank > 13 AND time_retired = \"accident\" AND qual < 136.98", "question": "What laps have a rank larger than 13 and the Time/Retired is accident, and a Qual smaller than 136.98?", "context": "CREATE TABLE table_name_40 (laps VARCHAR, qual VARCHAR, rank VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT position FROM table_name_32 WHERE player = \"sal martinez\"", "question": "What position is Sal Martinez?", "context": "CREATE TABLE table_name_32 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_67 WHERE time_retired = \"+2:06.0\"", "question": "Who constructed the car that has a Time/Retired of +2:06.0?", "context": "CREATE TABLE table_name_67 (constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_65 WHERE grid < 15 AND time_retired = \"transmission\"", "question": "What is the lap total for the grid under 15 that retired due to transmission?", "context": "CREATE TABLE table_name_65 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_47 WHERE grid < 10 AND laps > 76 AND driver = \"juan manuel fangio\"", "question": "Who constructed juan manuel fangio's car with over 76 laps and a grid under 10?", "context": "CREATE TABLE table_name_47 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_29 WHERE grid < 20 AND driver = \"johnny herbert\"", "question": "what is the sum of laps when grid is less than 20 and johnny herbert is driving?", "context": "CREATE TABLE table_name_29 (laps INTEGER, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_43 WHERE constructor = \"ferrari\" AND time_retired = \"+1:06.683\"", "question": "who is the driver for the car constructed by ferrari with a time/retired of +1:06.683?", "context": "CREATE TABLE table_name_43 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_81 WHERE grid = 11", "question": "who is the driver when grid is 11?", "context": "CREATE TABLE table_name_81 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_72 WHERE result = \"30-12\"", "question": "Who was the opponent with a score of 30-12?", "context": "CREATE TABLE table_name_72 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE result = \"40-20\"", "question": "Who was the opponent with a score of 40-20?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE away_team = \"geelong\"", "question": "When did Geelong play as the away team?", "context": "CREATE TABLE table_name_31 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(capacity__mw_) FROM table_name_17 WHERE notes = \"under construction\"", "question": "What is the total capacity (MW) of the farm that is noted as being under construction?", "context": "CREATE TABLE table_name_17 (capacity__mw_ VARCHAR, notes VARCHAR)"}, {"answer": "SELECT state_province FROM table_name_72 WHERE wind_farm = \"tehachapi pass wind farm\"", "question": "Which state is Tehachapi Pass Wind Farm located in?", "context": "CREATE TABLE table_name_72 (state_province VARCHAR, wind_farm VARCHAR)"}, {"answer": "SELECT wind_farm FROM table_name_58 WHERE country = \"usa\" AND notes = \"multiple farms\"", "question": "Which wind farm is in the USA and is noted as having multiple farms?", "context": "CREATE TABLE table_name_58 (wind_farm VARCHAR, country VARCHAR, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_name_86 WHERE capacity__mw_ = 343", "question": "What special notes are included for the windfarm with a capacity (MW) of 343?", "context": "CREATE TABLE table_name_86 (notes VARCHAR, capacity__mw_ VARCHAR)"}, {"answer": "SELECT SUM(capacity__mw_) FROM table_name_72 WHERE state_province = \"gansu\"", "question": "What is the total capacity (MW) of the windfarm located in the state/province of Gansu?", "context": "CREATE TABLE table_name_72 (capacity__mw_ INTEGER, state_province VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_23 WHERE venue = \"arden street oval\"", "question": "In the game held at Arden Street Oval, what was the score of the home team?", "context": "CREATE TABLE table_name_23 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_93 WHERE venue = \"kardinia park\"", "question": "How many people in total have attended games at Kardinia Park?", "context": "CREATE TABLE table_name_93 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_96 WHERE venue = \"arden street oval\"", "question": "Which game at Arden Street Oval had the lowest attendance?", "context": "CREATE TABLE table_name_96 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_49 WHERE away_team = \"footscray\"", "question": "Where was the game against the away team Footscray held?", "context": "CREATE TABLE table_name_49 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_96 WHERE played > 42", "question": "What is the average number of points for clubs that have played more than 42 times?", "context": "CREATE TABLE table_name_96 (points INTEGER, played INTEGER)"}, {"answer": "SELECT COUNT(goals_against) FROM table_name_68 WHERE played > 42", "question": "What is the total number of goals scored against clubs that have played more than 42 times?", "context": "CREATE TABLE table_name_68 (goals_against VARCHAR, played INTEGER)"}, {"answer": "SELECT date FROM table_name_74 WHERE home_team = \"geelong\"", "question": "On which date did Geelong play at home?", "context": "CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_32 WHERE venue = \"windy hill\"", "question": "Which home team has a venue of windy hill?", "context": "CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_87 WHERE home_team = \"essendon\"", "question": "If essendon is the home team, what venue did they play at?", "context": "CREATE TABLE table_name_87 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_3 WHERE home_team = \"richmond\"", "question": "When the home team is richmond, what was the away team playing?", "context": "CREATE TABLE table_name_3 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date_of_birth__age_ FROM table_name_20 WHERE position = \"lock\" AND caps = 10", "question": "When was the lock with 10 caps born?", "context": "CREATE TABLE table_name_20 (date_of_birth__age_ VARCHAR, position VARCHAR, caps VARCHAR)"}, {"answer": "SELECT laps FROM table_name_41 WHERE driver = \"jean-christophe boullion\"", "question": "What were the laps of driver Jean-Christophe Boullion?", "context": "CREATE TABLE table_name_41 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_70 WHERE year = \"2007-08\"", "question": "What Playoffs were held during the years of 2007-08?", "context": "CREATE TABLE table_name_70 (playoffs VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE away_team = \"richmond\"", "question": "On which date did Richmond play as an away team?", "context": "CREATE TABLE table_name_4 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_61 WHERE home_team = \"melbourne\"", "question": "What away team did Melbourne play as the home team?", "context": "CREATE TABLE table_name_61 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT chapter FROM table_name_14 WHERE founding_date > 2012", "question": "Which chapter was founded later than 2012?", "context": "CREATE TABLE table_name_14 (chapter VARCHAR, founding_date INTEGER)"}, {"answer": "SELECT chapter FROM table_name_65 WHERE city = \"lubbock\"", "question": "What is the chapter in Lubbock?", "context": "CREATE TABLE table_name_65 (chapter VARCHAR, city VARCHAR)"}, {"answer": "SELECT MAX(interview) FROM table_name_66 WHERE swimsuit = 8.857 AND average > 9.097", "question": "What was the highest Interview score from a contestant who had a swimsuit score of 8.857 and an Average score over 9.097?", "context": "CREATE TABLE table_name_66 (interview INTEGER, swimsuit VARCHAR, average VARCHAR)"}, {"answer": "SELECT year FROM table_name_26 WHERE top_25 = 0 AND earnings__$_ > 0", "question": "What year has a Top 25 of 0, and a Earnings ($) larger than 0?", "context": "CREATE TABLE table_name_26 (year VARCHAR, top_25 VARCHAR, earnings__$_ VARCHAR)"}, {"answer": "SELECT MAX(top_25) FROM table_name_53 WHERE money_list_rank = \"232\" AND cuts_made < 2", "question": "What is the highest Top 25 with a Money list rank of 232 and Cuts smaller than 2?", "context": "CREATE TABLE table_name_53 (top_25 INTEGER, money_list_rank VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(earnings__) AS $_ FROM table_name_93 WHERE money_list_rank = \"6\" AND starts < 22", "question": "What is the smallest Earnings that has a Money list rank of 6 and Starts smaller than 22?", "context": "CREATE TABLE table_name_93 (earnings__ INTEGER, money_list_rank VARCHAR, starts VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_47 WHERE top_10 < 8 AND wins > 0", "question": "What is the highest number of Cuts made that has a Top 10 smaller than 8 and Wins larger than 0?", "context": "CREATE TABLE table_name_47 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(starts) FROM table_name_66 WHERE cuts_made = 2 AND top_25 > 0 AND earnings__$_ < 338 OFFSET 067", "question": "How many Starts that have Cuts made of 2, Top 25 larger than 0, and Earnings ($) smaller than 338,067?", "context": "CREATE TABLE table_name_66 (starts VARCHAR, earnings__$_ VARCHAR, cuts_made VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT event FROM table_name_70 WHERE round = 1 AND res = \"win\" AND record = \"15-4\"", "question": "Which event was in round 1, resulted in a win, and a record of 15-4?", "context": "CREATE TABLE table_name_70 (event VARCHAR, record VARCHAR, round VARCHAR, res VARCHAR)"}, {"answer": "SELECT res FROM table_name_43 WHERE time = \"5:00\" AND record = \"14-4\"", "question": "What is the result when the time was 5:00 and a record of 14-4?", "context": "CREATE TABLE table_name_43 (res VARCHAR, time VARCHAR, record VARCHAR)"}, {"answer": "SELECT wins FROM table_name_79 WHERE club = \"ayr united\"", "question": "How many wins did Ayr United have?", "context": "CREATE TABLE table_name_79 (wins VARCHAR, club VARCHAR)"}, {"answer": "SELECT last_final_lost FROM table_name_84 WHERE wins = \"3\" AND last_win = \"2001\"", "question": "When was the final loss of the club last won in 2001 and has a total of 3 wins?", "context": "CREATE TABLE table_name_84 (last_final_lost VARCHAR, wins VARCHAR, last_win VARCHAR)"}, {"answer": "SELECT last_win FROM table_name_34 WHERE last_final_lost = \"2011\"", "question": "When was the last win for the club that had a final loss in 2011?", "context": "CREATE TABLE table_name_34 (last_win VARCHAR, last_final_lost VARCHAR)"}, {"answer": "SELECT wins FROM table_name_33 WHERE runners_up = \"8\"", "question": "How many wins did the 8 time runner-up have?", "context": "CREATE TABLE table_name_33 (wins VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT wins FROM table_name_42 WHERE last_win = \"2000\"", "question": "How many wins did the club have with the last win in 2000?", "context": "CREATE TABLE table_name_42 (wins VARCHAR, last_win VARCHAR)"}, {"answer": "SELECT SUM(car) FROM table_name_83 WHERE player = \"jeremiah pope\"", "question": "What are the carries of the player Jeremiah Pope?", "context": "CREATE TABLE table_name_83 (car INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_58 WHERE home_team = \"fitzroy\"", "question": "What was the largest crowd that was in attendance for fitzroy?", "context": "CREATE TABLE table_name_58 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_69 WHERE team = \"st. louis bombers\" AND position = \"g\"", "question": "Who plays g position for the st. louis bombers?", "context": "CREATE TABLE table_name_69 (player VARCHAR, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_15 WHERE position = \"f\" AND college = \"depauw\"", "question": "Who plays f position for depauw?", "context": "CREATE TABLE table_name_15 (player VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_39 WHERE college = \"saint louis\"", "question": "What position does the saint louis player play?", "context": "CREATE TABLE table_name_39 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE college = \"sam houston state\"", "question": "Who plays for sam houston state?", "context": "CREATE TABLE table_name_79 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_73 WHERE points = \"30-8\" AND goals_for > 25", "question": "How many positions have Points of 30-8 and more than 25 goals?", "context": "CREATE TABLE table_name_73 (position VARCHAR, points VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_41 WHERE club = \"ue figueres\" AND goal_difference > 16", "question": "What is the lowest play with ue figueres club and a goal difference more than 16?", "context": "CREATE TABLE table_name_41 (played INTEGER, club VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_20 WHERE wins = 8 AND goals_against > 58", "question": "How many played have 8 wins and more than 58 goals against?", "context": "CREATE TABLE table_name_20 (played VARCHAR, wins VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT withdrawn FROM table_name_72 WHERE gsr_class = \"296\"", "question": "What is withdrawn with a GSR Class of 296?", "context": "CREATE TABLE table_name_72 (withdrawn VARCHAR, gsr_class VARCHAR)"}, {"answer": "SELECT inchicore_class FROM table_name_4 WHERE gsr_class = \"235\"", "question": "What Inchicore Class has a GSR Class of 235?", "context": "CREATE TABLE table_name_4 (inchicore_class VARCHAR, gsr_class VARCHAR)"}, {"answer": "SELECT inchicore_class FROM table_name_60 WHERE gswr_class < 268 AND type = \"0-4-2t\"", "question": "What Inchicore Class has a GSWR Class smaller than 268, and a Type of 0-4-2t?", "context": "CREATE TABLE table_name_60 (inchicore_class VARCHAR, gswr_class VARCHAR, type VARCHAR)"}, {"answer": "SELECT gswr_class FROM table_name_80 WHERE year = \"1893\"", "question": "Which GSWR Class is from 1893?", "context": "CREATE TABLE table_name_80 (gswr_class VARCHAR, year VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_name_5 WHERE run_time = \"24:57\"", "question": "On the episode that had a run time of 24:57, how many million viewers were there?", "context": "CREATE TABLE table_name_5 (viewers__in_millions_ VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT year FROM table_name_32 WHERE record = \"4-21\"", "question": "What year had a record of 4-21?", "context": "CREATE TABLE table_name_32 (year VARCHAR, record VARCHAR)"}, {"answer": "SELECT reg_season FROM table_name_7 WHERE record = \"16-12\"", "question": "What regular season had a record of 16-12?", "context": "CREATE TABLE table_name_7 (reg_season VARCHAR, record VARCHAR)"}, {"answer": "SELECT reg_season FROM table_name_87 WHERE record = \"20-10\"", "question": "What is the regular season info that had a record of 20-10?", "context": "CREATE TABLE table_name_87 (reg_season VARCHAR, record VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_9 WHERE team__number1 = \"asfa rabat\"", "question": "Tell me the 1st leg for asfa rabat", "context": "CREATE TABLE table_name_9 (team__number1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_61 WHERE team__number1 = \"alemannia aachen\"", "question": "Tell me the 2nd leg for alemannia aachen", "context": "CREATE TABLE table_name_61 (team__number1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_10 WHERE team__number2 = \"antwerp bc\"", "question": "Tell me the 1st leg for antwerp bc", "context": "CREATE TABLE table_name_10 (team__number2 VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_name_78 WHERE team__number1 = \"handelsministerium vienna\"", "question": "Tell me the team 2 for handelsministerium vienna", "context": "CREATE TABLE table_name_78 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE away_team = \"melbourne\"", "question": "On what date did the away team Melbourne play?", "context": "CREATE TABLE table_name_83 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_56 WHERE away_team = \"south melbourne\"", "question": "What home team played the away team South Melbourne?", "context": "CREATE TABLE table_name_56 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(area__sq_mi_) FROM table_name_88 WHERE county = \"greenville county\"", "question": "Which is the largest area in Greenville County, by square mile?", "context": "CREATE TABLE table_name_88 (area__sq_mi_ INTEGER, county VARCHAR)"}, {"answer": "SELECT SUM(2010 AS _census_population) FROM table_name_9 WHERE county = \"oconee county\" AND area__sq_mi_ < 674", "question": "Which is the total number in the 2010 Census in Oconee County where the area in square miles was less than 674?", "context": "CREATE TABLE table_name_9 (county VARCHAR, area__sq_mi_ VARCHAR)"}, {"answer": "SELECT particle FROM table_name_61 WHERE rest_mass_mev___c_2 = \"1192.642(24)\"", "question": "Which Particle has a Rest mass MeV/c 2 of 1192.642(24)?", "context": "CREATE TABLE table_name_61 (particle VARCHAR, rest_mass_mev___c_2 VARCHAR)"}, {"answer": "SELECT particle FROM table_name_41 WHERE isospin_i = \"1\" AND commonly_decays_to = \"p + + \u03c0 0 or n 0 + \u03c0 +\"", "question": "Which Particle has an Isospin I of 1 and Commonly decays to p + + \u03c0 0 or n 0 + \u03c0 +?", "context": "CREATE TABLE table_name_41 (particle VARCHAR, isospin_i VARCHAR, commonly_decays_to VARCHAR)"}, {"answer": "SELECT rest_mass_mev___c_2 FROM table_name_58 WHERE makeup = \"u s s\" AND spin___parity___j_p = \"3\u20442 +\"", "question": "When the Makeup is u s s and the Spin (Parity) J P of 3\u20442 +, what is the Rest mass MeV/C2?", "context": "CREATE TABLE table_name_58 (rest_mass_mev___c_2 VARCHAR, makeup VARCHAR, spin___parity___j_p VARCHAR)"}, {"answer": "SELECT particle FROM table_name_37 WHERE isospin_i = \"1\u20442\" AND symbol = \"\u03be \u22170 (1530)\"", "question": "Which Particle has an Isospin I of 1\u20442, and a Symbol of \u03be \u22170 (1530)?", "context": "CREATE TABLE table_name_37 (particle VARCHAR, isospin_i VARCHAR, symbol VARCHAR)"}, {"answer": "SELECT particle FROM table_name_85 WHERE makeup = \"d s s\" AND spin___parity___j_p = \"3\u20442 +\"", "question": "Which Particle has a Makeup of d s s and a Spin (Parity) J P of 3\u20442 +?", "context": "CREATE TABLE table_name_85 (particle VARCHAR, makeup VARCHAR, spin___parity___j_p VARCHAR)"}, {"answer": "SELECT particle FROM table_name_11 WHERE rest_mass_mev___c_2 = \"1383.7\u00b11.0\"", "question": "Which Particle has a Rest mass MeV/c 2 of 1383.7\u00b11.0?", "context": "CREATE TABLE table_name_11 (particle VARCHAR, rest_mass_mev___c_2 VARCHAR)"}, {"answer": "SELECT title FROM table_name_83 WHERE year = 2003 AND genre = \"rap\"", "question": "What was the title of Ashanti's 2003 rap song?", "context": "CREATE TABLE table_name_83 (title VARCHAR, year VARCHAR, genre VARCHAR)"}, {"answer": "SELECT MAX(tries) FROM table_name_49 WHERE player = \"paul sykes\" AND points > 0", "question": "How many tries did the player Paul Sykes take when he earned 0 points?", "context": "CREATE TABLE table_name_49 (tries INTEGER, player VARCHAR, points VARCHAR)"}, {"answer": "SELECT position FROM table_name_74 WHERE goals = 0 AND points = 28 AND player = \"mike forshaw\"", "question": "Mike Forshaw had 0 goals and 28 points. What is his position?", "context": "CREATE TABLE table_name_74 (position VARCHAR, player VARCHAR, goals VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_47 WHERE venue = \"brunswick street oval\"", "question": "How big is the Venue of Brunswick Street Oval?", "context": "CREATE TABLE table_name_47 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_24 WHERE away_team = \"north melbourne\"", "question": "What is the Away Team score of North Melbourne?", "context": "CREATE TABLE table_name_24 (away_team VARCHAR)"}, {"answer": "SELECT killed FROM table_name_55 WHERE unit = \"personal staff\"", "question": "What was the number of Personal Staff Units Killed?", "context": "CREATE TABLE table_name_55 (killed VARCHAR, unit VARCHAR)"}, {"answer": "SELECT complement FROM table_name_53 WHERE killed = \"0 off 0 men\" AND wounded = \"0 off 0 men\" AND unit = \"artillery corps\"", "question": "What was the Complement of Artillery Corps Units that had 0 off 0 men Killed or Wounded?", "context": "CREATE TABLE table_name_53 (complement VARCHAR, unit VARCHAR, killed VARCHAR, wounded VARCHAR)"}, {"answer": "SELECT wounded FROM table_name_79 WHERE complement = \"83 off 9 men\"", "question": "How many were Wounded while in a Unit with a Complement of 83 off 9 Men?", "context": "CREATE TABLE table_name_79 (wounded VARCHAR, complement VARCHAR)"}, {"answer": "SELECT missing FROM table_name_89 WHERE killed = \"0 off 0 men\" AND wounded = \"0 off 0 men\" AND unit = \"royal waggon train\"", "question": "How many of the Royal Waggon Train Unit were Missing while having a Killed of 0 off 0 men and a Wounded of 0 off 0 men?", "context": "CREATE TABLE table_name_89 (missing VARCHAR, unit VARCHAR, killed VARCHAR, wounded VARCHAR)"}, {"answer": "SELECT wounded FROM table_name_24 WHERE killed = \"0 off 0 men\" AND unit = \"artillery corps\"", "question": "How many were Wounded in the Artillery Corps unit while having 0 off 0 men Killed?", "context": "CREATE TABLE table_name_24 (wounded VARCHAR, killed VARCHAR, unit VARCHAR)"}, {"answer": "SELECT surface FROM table_name_38 WHERE opponent = \"yevgeny kafelnikov\"", "question": "What suface during the game that had Yevgeny Kafelnikov as an opponent?", "context": "CREATE TABLE table_name_38 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_63 WHERE opponent = \"san jose sabercats\"", "question": "What was the earliest week that the Storm played the San Jose Sabercats?", "context": "CREATE TABLE table_name_63 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_33 WHERE score = \"\u2020 4\u20134 \u2020\"", "question": "How many were in attendance when the score was \u2020 4\u20134 \u2020?", "context": "CREATE TABLE table_name_33 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_95 WHERE runner_up = \"livingston\"", "question": "How many people were watching when Livingston was the runner-up?", "context": "CREATE TABLE table_name_95 (attendance VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_36 WHERE laps > 52 AND driver = \"andrea de adamich\"", "question": "what average grid has laps larger than 52 and contains the driver of andrea de adamich?", "context": "CREATE TABLE table_name_36 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_34 WHERE driver = \"graham hill\" AND grid > 18", "question": "what's the highest lap that contains the driver of graham hill and a grid that is larger than 18?", "context": "CREATE TABLE table_name_34 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_81 WHERE time_retired = \"piston\" AND laps < 15", "question": "what's the average grid that has a time/retired piston and laps smaller than 15?", "context": "CREATE TABLE table_name_81 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT tuner FROM table_name_86 WHERE season > 2004 AND driver = \"gaurav gill\" AND team = \"team mrf\" AND governing_body = \"mai\"", "question": "Who is the tuner after season 2004 with Gaurav Gill as the driver, Team MRF, and Mai governing body?", "context": "CREATE TABLE table_name_86 (tuner VARCHAR, governing_body VARCHAR, team VARCHAR, season VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_37 WHERE tuner = \"n. leelakrishnan\" AND governing_body = \"mai\" AND season = 2003", "question": "Who is the driver in season 2003 with a tuner of N. Leelakrishnan and a Mai governing body?", "context": "CREATE TABLE table_name_37 (driver VARCHAR, season VARCHAR, tuner VARCHAR, governing_body VARCHAR)"}, {"answer": "SELECT tuner FROM table_name_23 WHERE team = \"mrf\"", "question": "Who is the turner on Team MRF?", "context": "CREATE TABLE table_name_23 (tuner VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_34 WHERE driver = \"farad bathena\"", "question": "What is the earliest season with driver Farad Bathena?", "context": "CREATE TABLE table_name_34 (season INTEGER, driver VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_63 WHERE league = \"major league soccer\" AND season = \"2005\"", "question": "Which Major League Soccer team for the 2005 season has the lowest goals?", "context": "CREATE TABLE table_name_63 (goals INTEGER, league VARCHAR, season VARCHAR)"}, {"answer": "SELECT AVG(apps) FROM table_name_43 WHERE league = \"major league soccer\" AND club = \"seattle sounders fc\" AND goals < 0", "question": "What are the average apps for the Major League Soccer team club for the Seattle Sounders FC that has goals less than 0?", "context": "CREATE TABLE table_name_43 (apps INTEGER, goals VARCHAR, league VARCHAR, club VARCHAR)"}, {"answer": "SELECT icelandic FROM table_name_59 WHERE danish = \"bl\u00e5t/bl\u00e5\"", "question": "Which Icelandic has a Danish of bl\u00e5t/bl\u00e5?", "context": "CREATE TABLE table_name_59 (icelandic VARCHAR, danish VARCHAR)"}, {"answer": "SELECT icelandic FROM table_name_47 WHERE norwegian__nynorsk_ = \"kvitt/kvit\"", "question": "Which Icelandic has a Norwegian (nynorsk) of kvitt/kvit?", "context": "CREATE TABLE table_name_47 (icelandic VARCHAR, norwegian__nynorsk_ VARCHAR)"}, {"answer": "SELECT faroese FROM table_name_83 WHERE english = \"white\"", "question": "Which Faroese has an English of white?", "context": "CREATE TABLE table_name_83 (faroese VARCHAR, english VARCHAR)"}, {"answer": "SELECT norwegian__nynorsk_ FROM table_name_12 WHERE danish = \"farvel\"", "question": "Which Norwegian (nynorsk) has a Danish of farvel?", "context": "CREATE TABLE table_name_12 (norwegian__nynorsk_ VARCHAR, danish VARCHAR)"}, {"answer": "SELECT english FROM table_name_69 WHERE danish = \"r\u00f8dt/r\u00f8d\"", "question": "Which English has a Danish of r\u00f8dt/r\u00f8d?", "context": "CREATE TABLE table_name_69 (english VARCHAR, danish VARCHAR)"}, {"answer": "SELECT congress FROM table_name_97 WHERE _number_of_cosponsors = 44", "question": "What number of Congress has 44 cosponsors?", "context": "CREATE TABLE table_name_97 (congress VARCHAR, _number_of_cosponsors VARCHAR)"}, {"answer": "SELECT sponsor FROM table_name_43 WHERE date_introduced = \"april 22, 2004\"", "question": "Who was the sponsor on April 22, 2004?", "context": "CREATE TABLE table_name_43 (sponsor VARCHAR, date_introduced VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE home = \"new york rangers\"", "question": "What is the score of the game when the New York Rangers were the home team?", "context": "CREATE TABLE table_name_98 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE date = \"8 october 1961\"", "question": "What was the result on 8 October 1961?", "context": "CREATE TABLE table_name_26 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_33 WHERE date = \"27 april 1964\"", "question": "What was the venue of the game on 27 April 1964?", "context": "CREATE TABLE table_name_33 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_1 WHERE away_team = \"hawthorn\"", "question": "What is the home team score when the away team was Hawthorn?", "context": "CREATE TABLE table_name_1 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE opponent_in_the_final = \"divij sharan\"", "question": "What was the score of the game against Divij Sharan?", "context": "CREATE TABLE table_name_56 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE surface = \"hard\" AND opponent_in_the_final = \"peter gojowczyk\"", "question": "What was the score of the match that was a played on a hard surface against Peter Gojowczyk?", "context": "CREATE TABLE table_name_85 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_59 WHERE record = \"43-34\"", "question": "How many attended the game with a record of 43-34?", "context": "CREATE TABLE table_name_59 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_81 WHERE partner = \"michelle strebel\"", "question": "Who was Manuela Maleeva opponent when she played a match partnered with michelle strebel?", "context": "CREATE TABLE table_name_81 (opponents VARCHAR, partner VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_61 WHERE pct__percentage > 0.685", "question": "When the percent is larger than 0.685, what is the average number of points scored?", "context": "CREATE TABLE table_name_61 (points INTEGER, pct__percentage INTEGER)"}, {"answer": "SELECT MIN(pct__percentage) FROM table_name_90 WHERE points < 37", "question": "When less than 37 points are scored, what's the lowest Pct % found?", "context": "CREATE TABLE table_name_90 (pct__percentage INTEGER, points INTEGER)"}, {"answer": "SELECT round FROM table_name_82 WHERE event = \"rings: king of kings 2000 block a\" AND record = \"6-1\"", "question": "How many rounds did the event rings: king of kings 2000 block a have with a record of 6-1?", "context": "CREATE TABLE table_name_82 (round VARCHAR, event VARCHAR, record VARCHAR)"}, {"answer": "SELECT time FROM table_name_72 WHERE event = \"adrenaline mma 3\"", "question": "How long was the fight 'adrenaline mma 3'?", "context": "CREATE TABLE table_name_72 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_60 WHERE opponent = \"john salter\"", "question": "What was roberto travern's record when he fought against john salter?", "context": "CREATE TABLE table_name_60 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_16 WHERE venue = \"mcg\"", "question": "What was the score of the away team at the MCG?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_1 WHERE grid > 20 AND time_retired = \"accident\"", "question": "Who constructed the car with a grid larger than 20 that got in an accident?", "context": "CREATE TABLE table_name_1 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT position FROM table_name_6 WHERE cfl_team = \"montreal alouettes (via edmonton)\"", "question": "Which Position has a CFL Team of montreal alouettes (via edmonton)?", "context": "CREATE TABLE table_name_6 (position VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_23 WHERE cfl_team = \"montreal alouettes (via hamilton via winnipeg)\"", "question": "Which Player has a CFL Team of montreal alouettes (via hamilton via winnipeg)?", "context": "CREATE TABLE table_name_23 (player VARCHAR, cfl_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_35 WHERE player = \"patrick macdonald\"", "question": "Which Position has a Player of patrick macdonald?", "context": "CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(series) FROM table_name_54 WHERE sixth_place = \"joan tena\"", "question": "What series had Joan Tena in sixth place?", "context": "CREATE TABLE table_name_54 (series INTEGER, sixth_place VARCHAR)"}, {"answer": "SELECT sixth_place FROM table_name_34 WHERE series = 7", "question": "Who was in sixth place in series 7?", "context": "CREATE TABLE table_name_34 (sixth_place VARCHAR, series VARCHAR)"}, {"answer": "SELECT sixth_place FROM table_name_19 WHERE fifth_place = \"hugo salazar\"", "question": "Who was sixth place when Hugo Salazar was fifth place?", "context": "CREATE TABLE table_name_19 (sixth_place VARCHAR, fifth_place VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_78 WHERE fifth_place = \"fran dieli\"", "question": "Who was third place when Fran Dieli was fifth place?", "context": "CREATE TABLE table_name_78 (third_place VARCHAR, fifth_place VARCHAR)"}, {"answer": "SELECT order_and_title FROM table_name_88 WHERE elevated = \"1261, december 17\" AND faction = \"angevin\"", "question": "What is the Order and Title with an Elevated with 1261, december 17, and a Faction with angevin?", "context": "CREATE TABLE table_name_88 (order_and_title VARCHAR, elevated VARCHAR, faction VARCHAR)"}, {"answer": "SELECT elector FROM table_name_5 WHERE nationality = \"roman\" AND elevator = \"urban iv\" AND elevated = \"1261, december 17\"", "question": "What is the Elector with a Nationality with roman, and an Elevator of urban iv, and an Elevated with 1261, december 17?", "context": "CREATE TABLE table_name_5 (elector VARCHAR, elevated VARCHAR, nationality VARCHAR, elevator VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_36 WHERE elector = \"bertrand de saint-martin\"", "question": "What is the Nationality with an Elector with bertrand de saint-martin?", "context": "CREATE TABLE table_name_36 (nationality VARCHAR, elector VARCHAR)"}, {"answer": "SELECT order_and_title FROM table_name_6 WHERE nationality = \"roman\" AND elector = \"matteo orsini rosso\"", "question": "What is the Order and Title with a Nationality with roman, and an Elector with matteo orsini rosso?", "context": "CREATE TABLE table_name_6 (order_and_title VARCHAR, nationality VARCHAR, elector VARCHAR)"}, {"answer": "SELECT elector FROM table_name_56 WHERE faction = \"roman\" AND elevated = \"1244, may 28\"", "question": "What is the Elector with a Faction of roman, and an Elevated with 1244, may 28?", "context": "CREATE TABLE table_name_56 (elector VARCHAR, faction VARCHAR, elevated VARCHAR)"}, {"answer": "SELECT mult FROM table_name_73 WHERE release_date = \"q4 2007\" AND model_number = \"pentium dual-core t2310\"", "question": "What is the mult value of the microprocessor with a release date q4 2007 and model number pentium dual-core t2310?", "context": "CREATE TABLE table_name_73 (mult VARCHAR, release_date VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_91 WHERE model_number = \"pentium dual-core t3400\"", "question": "What is the L2 cache of the microprocessor with model number pentium dual-core t3400?", "context": "CREATE TABLE table_name_91 (l2_cache VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_name_32 WHERE model_number = \"pentium dual-core t2330\"", "question": "What is the release price (USD) of the microprocessor with a model number pentium dual-core t2330?", "context": "CREATE TABLE table_name_32 (release_price___usd__ VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE fastest_lap = \"patrick tambay\"", "question": "What day did Patrick Tambay have the fastest lap?", "context": "CREATE TABLE table_name_35 (date VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_41 WHERE location = \"spa-francorchamps\"", "question": "Who held the pole position in SPA-Francorchamps?", "context": "CREATE TABLE table_name_41 (pole_position VARCHAR, location VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_24 WHERE location = \"long beach\"", "question": "Who was the Long Beach constructor?", "context": "CREATE TABLE table_name_24 (constructor VARCHAR, location VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_53 WHERE home_team = \"st kilda\"", "question": "What did St Kilda score when they were the home team?", "context": "CREATE TABLE table_name_53 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_6 WHERE away_team = \"south melbourne\"", "question": "What did the home team score when South Melbourne was the away team?", "context": "CREATE TABLE table_name_6 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_13 WHERE date = \"april 12, 2008\"", "question": "Name the leading scorer for april 12, 2008", "context": "CREATE TABLE table_name_13 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_52 WHERE venue = \"brunswick street oval\"", "question": "What was the score for the home team that played at Brunswick Street Oval?", "context": "CREATE TABLE table_name_52 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT name FROM table_name_49 WHERE seasons = \"1981\" AND order > 807", "question": "what is the name for seasons 1981 and an order more than 807?", "context": "CREATE TABLE table_name_49 (name VARCHAR, seasons VARCHAR, order VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_63 WHERE venue = \"lake oval\"", "question": "What away team played in Lake Oval?", "context": "CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_30 WHERE 2009 = \"11\"", "question": "Which tournament was on 2009 with 11?", "context": "CREATE TABLE table_name_30 (tournament VARCHAR)"}, {"answer": "SELECT driver FROM table_name_57 WHERE laps = 59 AND grid = 11", "question": "What driver went 59 laps on grid 11?", "context": "CREATE TABLE table_name_57 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_38 WHERE grid = \"22\"", "question": "Which driver has a grid value of 22?", "context": "CREATE TABLE table_name_38 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_29 WHERE driver = \"jean alesi\"", "question": "What is the value of time/retired for Jean Alesi?", "context": "CREATE TABLE table_name_29 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_name_53 WHERE time_retired = \"electrical\" AND driver = \"rubens barrichello\"", "question": "When the time/retired is electrical how many laps did Rubens Barrichello have?", "context": "CREATE TABLE table_name_53 (laps VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_name_73 WHERE driver = \"eddie irvine\"", "question": "How many laps did Eddie Irvine have?", "context": "CREATE TABLE table_name_73 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE home = \"hornets\" AND visitor = \"clippers\"", "question": "In the game where the Hornets were the home team and Clippers the visiting team, what is the score?", "context": "CREATE TABLE table_name_9 (score VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT finish FROM table_name_13 WHERE qual = \"99.550\"", "question": "Which finish has a 99.550 Qual?", "context": "CREATE TABLE table_name_13 (finish VARCHAR, qual VARCHAR)"}, {"answer": "SELECT qual FROM table_name_4 WHERE laps < 200 AND start = \"11\"", "question": "Which Qual with laps less than 200 and an 11 start?", "context": "CREATE TABLE table_name_4 (qual VARCHAR, laps VARCHAR, start VARCHAR)"}, {"answer": "SELECT rank FROM table_name_78 WHERE start = \"totals\"", "question": "Which rank is the start of totals?", "context": "CREATE TABLE table_name_78 (rank VARCHAR, start VARCHAR)"}, {"answer": "SELECT year FROM table_name_31 WHERE laps = 112", "question": "Which year has 112 laps?", "context": "CREATE TABLE table_name_31 (year VARCHAR, laps VARCHAR)"}, {"answer": "SELECT surface FROM table_name_47 WHERE score_in_the_final = \"0\u20136, 4\u20136\"", "question": "On what surface was the score in the final 0\u20136, 4\u20136?", "context": "CREATE TABLE table_name_47 (surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_82 WHERE tournament = \"$25,000 glasgow, great britain\"", "question": "What score in the final had a tournament of $25,000 Glasgow, Great Britain?", "context": "CREATE TABLE table_name_82 (score_in_the_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_77 WHERE score_in_the_final = \"4\u20136, 3\u20136\"", "question": "Which surface has a score in the final of 4\u20136, 3\u20136?", "context": "CREATE TABLE table_name_77 (surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_44 WHERE nation = \"united states\" AND total > 1", "question": "how many times is the nation listed as united states with the total more than 1?", "context": "CREATE TABLE table_name_44 (silver VARCHAR, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_30 WHERE rank < 2 AND bronze > 0", "question": "what is the lowest total when the rank is less than 2 and bronze is more than 0?", "context": "CREATE TABLE table_name_30 (total INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT nation FROM table_name_62 WHERE total = 1 AND bronze < 1 AND rank = 3", "question": "what is the nation with a total of 1, bronze smaller than 1 and a rank of 3?", "context": "CREATE TABLE table_name_62 (nation VARCHAR, rank VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_6 WHERE silver < 0", "question": "what is the rank when silver is less than 0?", "context": "CREATE TABLE table_name_6 (rank INTEGER, silver INTEGER)"}, {"answer": "SELECT AVG(silver) FROM table_name_6 WHERE gold = 2 AND rank > 1", "question": "what is the amount of silver when gold is 2 and the rank is more than 1?", "context": "CREATE TABLE table_name_6 (silver INTEGER, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT home FROM table_name_9 WHERE decision = \"kolzig\" AND date = \"november 5\"", "question": "Which home has a Decision of kolzig, and a Date of november 5?", "context": "CREATE TABLE table_name_9 (home VARCHAR, decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE decision = \"johnson\"", "question": "Which score has a Decision of johnson?", "context": "CREATE TABLE table_name_29 (score VARCHAR, decision VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE home = \"washington\" AND visitor = \"florida\" AND record = \"8-15-2\"", "question": "Which date has a Home of washington, a Visitor of florida, and a Record of 8-15-2?", "context": "CREATE TABLE table_name_78 (date VARCHAR, record VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_69 WHERE record = \"5-9-0\"", "question": "What is the total of attendance with a Record of 5-9-0?", "context": "CREATE TABLE table_name_69 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE date = \"november 2\"", "question": "Which score has a Date of november 2?", "context": "CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT length FROM table_name_29 WHERE junctions = \"sh 359 us 59\" AND route_name = \"fm 2895\"", "question": "What's the length of route FM 2895 with junctions sh 359 us 59?", "context": "CREATE TABLE table_name_29 (length VARCHAR, junctions VARCHAR, route_name VARCHAR)"}, {"answer": "SELECT termini FROM table_name_2 WHERE junctions = \"i-35 fm 3338 sh 255\"", "question": "What's the termini of the route with junctions of i-35 fm 3338 sh 255?", "context": "CREATE TABLE table_name_2 (termini VARCHAR, junctions VARCHAR)"}, {"answer": "SELECT junctions FROM table_name_98 WHERE termini = \"aguilares, texas us 59\"", "question": "What are the junctions of the route with termini aguilares, texas us 59?", "context": "CREATE TABLE table_name_98 (junctions VARCHAR, termini VARCHAR)"}, {"answer": "SELECT route_name FROM table_name_49 WHERE termini = \"fm 1472 sh 255\"", "question": "What route has termini of fm 1472 sh 255?", "context": "CREATE TABLE table_name_49 (route_name VARCHAR, termini VARCHAR)"}, {"answer": "SELECT termini FROM table_name_40 WHERE population_area = \"aguilares\"", "question": "What termini does the route with a population Area of aguilares have?", "context": "CREATE TABLE table_name_40 (termini VARCHAR, population_area VARCHAR)"}, {"answer": "SELECT length FROM table_name_99 WHERE junctions = \"ur 1472 sh 255\"", "question": "What's the length of the route with junctions of ur 1472 sh 255?", "context": "CREATE TABLE table_name_99 (length VARCHAR, junctions VARCHAR)"}, {"answer": "SELECT champion FROM table_name_47 WHERE location = \"morrisville, nc\" AND semi_finalist__number2 = \"clemson\"", "question": "Which champion was from the location of Morrisville, NC, and whose SemiFinalist #2 of Clemson?", "context": "CREATE TABLE table_name_47 (champion VARCHAR, location VARCHAR, semi_finalist__number2 VARCHAR)"}, {"answer": "SELECT champion FROM table_name_78 WHERE score = \"12-1\"", "question": "Which champion got a score of 12-1?", "context": "CREATE TABLE table_name_78 (champion VARCHAR, score VARCHAR)"}, {"answer": "SELECT champion FROM table_name_36 WHERE year = 2005 AND semi_finalist__number1 = \"western carolina\"", "question": "Who was champion in 2005 where the semi-finalist was #1 in western Carolina?", "context": "CREATE TABLE table_name_36 (champion VARCHAR, year VARCHAR, semi_finalist__number1 VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_66 WHERE year < 2006 AND champion = \"elon\"", "question": "Which runner-up placed in a year prior to 2006 and whose Champion was Elon?", "context": "CREATE TABLE table_name_66 (runner_up VARCHAR, year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT wheel_arrangement FROM table_name_5 WHERE builder\u2019s_model = \"cf-16-4\" AND total_produced = 16", "question": "What is the wheel arrangement of cf-16-4, and 16 produced?", "context": "CREATE TABLE table_name_5 (wheel_arrangement VARCHAR, builder\u2019s_model VARCHAR, total_produced VARCHAR)"}, {"answer": "SELECT power_output FROM table_name_88 WHERE wheel_arrangement = \"b-b\" AND build_date = \"1952\"", "question": "What is the power of b-b wheel arrangement, built in 1952?", "context": "CREATE TABLE table_name_88 (power_output VARCHAR, wheel_arrangement VARCHAR, build_date VARCHAR)"}, {"answer": "SELECT build_date FROM table_name_36 WHERE service = \"freight\" AND wheel_arrangement = \"c-c\"", "question": "When was the build date for c-c wheel arrangement and freight service?", "context": "CREATE TABLE table_name_36 (build_date VARCHAR, service VARCHAR, wheel_arrangement VARCHAR)"}, {"answer": "SELECT build_date FROM table_name_14 WHERE prr_class = \"ff20\" AND builder\u2019s_model = \"erie built\"", "question": "When was the build date for ff20 PRR class and erie built builder's model?", "context": "CREATE TABLE table_name_14 (build_date VARCHAR, prr_class VARCHAR, builder\u2019s_model VARCHAR)"}, {"answer": "SELECT AVG(debut) FROM table_name_33 WHERE player = \"radoslava topalova\" AND years_played < 2", "question": "what is the debut when the play er is radoslava topalova and the years played is less than 2?", "context": "CREATE TABLE table_name_33 (debut INTEGER, player VARCHAR, years_played VARCHAR)"}, {"answer": "SELECT average_attendance FROM table_name_46 WHERE season = \"2011\" AND games < 519 AND _number_of_teams > 14 AND sport = \"association football\"", "question": "What was the average attendance of the 2011 season that had games smaller than 519 with several teams bigger than 14 that were also part of the sport of association football?", "context": "CREATE TABLE table_name_46 (average_attendance VARCHAR, sport VARCHAR, _number_of_teams VARCHAR, season VARCHAR, games VARCHAR)"}, {"answer": "SELECT SUM(average_attendance) FROM table_name_11 WHERE games = 1311", "question": "What was the total number of average attendance for games of 1311?", "context": "CREATE TABLE table_name_11 (average_attendance INTEGER, games VARCHAR)"}, {"answer": "SELECT season FROM table_name_72 WHERE _number_of_teams > 14 AND league = \"super rugby\"", "question": "When was the season that had more teams larger than 14 in the super rugby league?", "context": "CREATE TABLE table_name_72 (season VARCHAR, _number_of_teams VARCHAR, league VARCHAR)"}, {"answer": "SELECT label FROM table_name_96 WHERE catalog__number = \"83061-2\"", "question": "What is the label for the album with a catalog number of 83061-2?", "context": "CREATE TABLE table_name_96 (label VARCHAR, catalog__number VARCHAR)"}, {"answer": "SELECT catalog__number FROM table_name_36 WHERE region = \"united kingdom\"", "question": "What is the catalog number of the album whose region is the United Kingdom?", "context": "CREATE TABLE table_name_36 (catalog__number VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_name_60 WHERE catalog__number = \"7567-83061-2\"", "question": "What is the region for the album with a catalog number of 7567-83061-2?", "context": "CREATE TABLE table_name_60 (region VARCHAR, catalog__number VARCHAR)"}, {"answer": "SELECT label FROM table_name_84 WHERE catalog__number = \"83061-4\"", "question": "What is the label for the album with a catalog number of 83061-4?", "context": "CREATE TABLE table_name_84 (label VARCHAR, catalog__number VARCHAR)"}, {"answer": "SELECT catalog__number FROM table_name_8 WHERE label = \"atlantic records\" AND region = \"united states\"", "question": "What is the catalog number of the album whose label is Atlantic Records and region is the United States?", "context": "CREATE TABLE table_name_8 (catalog__number VARCHAR, label VARCHAR, region VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_78 WHERE position = \"center\" AND player = \"rafael ara\u00fajo\"", "question": "What school/club team did the center Rafael Ara\u00fajo play for?", "context": "CREATE TABLE table_name_78 (school_club_team VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_53 WHERE position = \"guard\" AND school_club_team = \"florida international\"", "question": "What is the nationality of the guard who played for Florida International?", "context": "CREATE TABLE table_name_53 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE position = \"guard/forward\"", "question": "What player had the position guard/forward?", "context": "CREATE TABLE table_name_83 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT driver FROM table_name_62 WHERE laps = 45", "question": "Who is the driver for laps of 45", "context": "CREATE TABLE table_name_62 (driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_90 WHERE date = \"december 17\"", "question": "Who was the visiting team on December 17?", "context": "CREATE TABLE table_name_90 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_31 WHERE visitor = \"miami\" AND home = \"washington\"", "question": "How many people were at Washington's home game against Miami?", "context": "CREATE TABLE table_name_31 (attendance VARCHAR, visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_63 WHERE visitor = \"minnesota\"", "question": "Who was the home team that played against the visiting team Minnesota?", "context": "CREATE TABLE table_name_63 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_17 WHERE record = \"17-7\"", "question": "What was total attendance on the day they went 17-7?", "context": "CREATE TABLE table_name_17 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE date = \"april 22\"", "question": "What was the score on April 22?", "context": "CREATE TABLE table_name_53 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT event FROM table_name_88 WHERE quarterfinal = \"zhamash l 1\u20132\"", "question": "What event had zhamash l 1\u20132 in the quarterfinal?", "context": "CREATE TABLE table_name_88 (event VARCHAR, quarterfinal VARCHAR)"}, {"answer": "SELECT semifinal FROM table_name_4 WHERE athlete = \"hossein ojaghi\"", "question": "Hossein Ojaghi participated in what semifinal.", "context": "CREATE TABLE table_name_4 (semifinal VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT event FROM table_name_29 WHERE quarterfinal = \"did not advance\" AND athlete = \"alireza rouzbahani\"", "question": "Alireza Rouzbahani did not advance to the quarterfinal in what event?", "context": "CREATE TABLE table_name_29 (event VARCHAR, quarterfinal VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_38 WHERE goals_against > 288 AND lost < 34", "question": "How many games have more than 288 goals and less than 34 losses?", "context": "CREATE TABLE table_name_38 (games VARCHAR, goals_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(tied) FROM table_name_57 WHERE points < 100 AND goals_for = 277", "question": "What is the lowest tie with less than 100 points and 277 goals?", "context": "CREATE TABLE table_name_57 (tied INTEGER, points VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT team FROM table_name_94 WHERE position = \"g\"", "question": "What is the team with position G?", "context": "CREATE TABLE table_name_94 (team VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_33 WHERE college = \"illinois\"", "question": "What is the player from Illinois?", "context": "CREATE TABLE table_name_33 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT phone FROM table_name_46 WHERE address = \"53 dayton road\"", "question": "What is the phone number of the station located at 53 Dayton Road?", "context": "CREATE TABLE table_name_46 (phone VARCHAR, address VARCHAR)"}, {"answer": "SELECT engine_company FROM table_name_35 WHERE address = \"89 rope ferry road\"", "question": "What is the name of the engine company that is located at 89 Rope Ferry Road?", "context": "CREATE TABLE table_name_35 (engine_company VARCHAR, address VARCHAR)"}, {"answer": "SELECT record FROM table_name_24 WHERE visitor = \"trail blazers\"", "question": "What was the Record of the game in which the Trail Blazers was the visiting team?", "context": "CREATE TABLE table_name_24 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE competition = \"friendly match\" AND result = \"1-1\"", "question": "What was the date of the friendly match, ending in a result of 1-1?", "context": "CREATE TABLE table_name_30 (date VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_28 WHERE venue = \"as-salt\"", "question": "What was the result of the game held at the As-Salt venue?", "context": "CREATE TABLE table_name_28 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT record FROM table_name_56 WHERE date = \"may 17\"", "question": "What was the team's record on May 17?", "context": "CREATE TABLE table_name_56 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT zone FROM table_name_30 WHERE opponents = \"m\u0103d\u0103lina gojnea monica niculescu\"", "question": "Which zone had m\u0103d\u0103lina gojnea monica niculescu as the opponent?", "context": "CREATE TABLE table_name_30 (zone VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT against FROM table_name_94 WHERE opponents = \"m\u0103d\u0103lina gojnea monica niculescu\"", "question": "Who was against the opponents, m\u0103d\u0103lina gojnea monica niculescu?", "context": "CREATE TABLE table_name_94 (against VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT surface FROM table_name_7 WHERE opponents = \"margit r\u00fc\u00fctel anett schutting\"", "question": "What was the surface on the game with margit r\u00fc\u00fctel anett schutting as the opponent?", "context": "CREATE TABLE table_name_7 (surface VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT zone FROM table_name_64 WHERE against = \"estonia\"", "question": "What is the zone of the game played against Estonia?", "context": "CREATE TABLE table_name_64 (zone VARCHAR, against VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_36 WHERE date = \"february 24\"", "question": "Who had the high rebounds on February 24?", "context": "CREATE TABLE table_name_36 (high_rebounds VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_49 WHERE date = \"february 10\"", "question": "On February 10, what was the location attendance?", "context": "CREATE TABLE table_name_49 (location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_40 WHERE econ = \"4.23\"", "question": "Tell me the player with econ of 4.23", "context": "CREATE TABLE table_name_40 (player VARCHAR, econ VARCHAR)"}, {"answer": "SELECT runs FROM table_name_15 WHERE player = \"b lee\"", "question": "Tell me the runs for b lee", "context": "CREATE TABLE table_name_15 (runs VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_91 WHERE overs = \"87.4\"", "question": "Tell me the player with overs of 87.4", "context": "CREATE TABLE table_name_91 (player VARCHAR, overs VARCHAR)"}, {"answer": "SELECT runs FROM table_name_80 WHERE econ = \"3.63\"", "question": "Tell me the runs for econ of 3.63", "context": "CREATE TABLE table_name_80 (runs VARCHAR, econ VARCHAR)"}, {"answer": "SELECT wkts FROM table_name_13 WHERE econ = \"4.23\"", "question": "Tell me the wkts for econ of 4.23", "context": "CREATE TABLE table_name_13 (wkts VARCHAR, econ VARCHAR)"}, {"answer": "SELECT overs FROM table_name_66 WHERE mdns = \"4\"", "question": "Tell me the overs for mdns of 4", "context": "CREATE TABLE table_name_66 (overs VARCHAR, mdns VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_43 WHERE away_team = \"collingwood\"", "question": "If collingwood is playing away, who played as the home team?", "context": "CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_7 WHERE venue = \"kardinia park\"", "question": "What was the away teams score when they played at kardinia park?", "context": "CREATE TABLE table_name_7 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_29 WHERE away_team = \"carlton\"", "question": "What's the highest turnout when carlton was playing as the away team?", "context": "CREATE TABLE table_name_29 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_69 WHERE crowd > 27 OFFSET 463", "question": "What away team played when the crowd was over 27,463 people?", "context": "CREATE TABLE table_name_69 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT marriage FROM table_name_28 WHERE spouse = \"antoinette jeanne yvonne boegner\"", "question": "On waht date did Antoinette Jeanne Yvonne Boegner get married?", "context": "CREATE TABLE table_name_28 (marriage VARCHAR, spouse VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_3 WHERE home_team = \"north melbourne\"", "question": "What is the largest Crowd number for the Home team of North Melbourne?", "context": "CREATE TABLE table_name_3 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_19 WHERE away_team = \"south melbourne\"", "question": "What home team did South Melbourne play as the away team?", "context": "CREATE TABLE table_name_19 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_30 WHERE away_team = \"hawthorn\"", "question": "What did the home team score against the away team Hawthorn?", "context": "CREATE TABLE table_name_30 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_38 WHERE venue = \"western oval\"", "question": "In the Western Oval venue, what is the average crowd?", "context": "CREATE TABLE table_name_38 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_23 WHERE away_team = \"richmond\"", "question": "When Richmond is the away team, what is the crowd size?", "context": "CREATE TABLE table_name_23 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT name FROM table_name_60 WHERE round = 8", "question": "Who is the person from round 8?", "context": "CREATE TABLE table_name_60 (name VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_48 WHERE school = \"arizona\" AND pick > 100", "question": "What is the round for Arizona with a pick over 100?", "context": "CREATE TABLE table_name_48 (round INTEGER, school VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_66 WHERE position = \"wide receiver\" AND name = \"johnny holloway\"", "question": "What pick had a wide receiver named johnny holloway?", "context": "CREATE TABLE table_name_66 (pick VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_61 WHERE home_team = \"saskatoon accelerators\"", "question": "Which score has a Home Team of saskatoon accelerators?", "context": "CREATE TABLE table_name_61 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_56 WHERE stadium = \"servus centre\" AND date = \"march 7\"", "question": "Which Visiting Team has a Stadium of servus centre on march 7?", "context": "CREATE TABLE table_name_56 (visiting_team VARCHAR, stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_82 WHERE stadium = \"servus centre\"", "question": "Which Visiting Team has a Stadium of servus centre?", "context": "CREATE TABLE table_name_82 (visiting_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT COUNT(heavy_attacks) FROM table_name_29 WHERE luftflotte_2_sorties = 450", "question": "How many heavy attacks did the 450 Luftflotte 2 conduct?", "context": "CREATE TABLE table_name_29 (heavy_attacks VARCHAR, luftflotte_2_sorties VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_40 WHERE grid = 19", "question": "What is the time/retired for grid 19?", "context": "CREATE TABLE table_name_40 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_14 WHERE laps > 73 AND driver = \"bruce mclaren\"", "question": "What is the grid total for bruce mclaren with over 73 laps?", "context": "CREATE TABLE table_name_14 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT film FROM table_name_66 WHERE year = 1971", "question": "What film was released in 1971?", "context": "CREATE TABLE table_name_66 (film VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_79 WHERE player = \"steve bartalo\"", "question": "When was steve bartalo picked?", "context": "CREATE TABLE table_name_79 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_57 WHERE position = \"cornerback\"", "question": "What player is a cornerback?", "context": "CREATE TABLE table_name_57 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_85 WHERE venue = \"windy hill\"", "question": "Windy hill is the home to what team?", "context": "CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_49 WHERE score = \"1-5\"", "question": "What is the name of the competition with a score of 1-5?", "context": "CREATE TABLE table_name_49 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_37 WHERE opponents = \"sv werder bremen\" AND score = \"1-2\"", "question": "What is the name of the competition with opponents of Sv Werder Bremen and a score of 1-2?", "context": "CREATE TABLE table_name_37 (competition VARCHAR, opponents VARCHAR, score VARCHAR)"}, {"answer": "SELECT reg_season FROM table_name_16 WHERE avg_attendance < 942", "question": "What regular season result had an average attendance less than 942?", "context": "CREATE TABLE table_name_16 (reg_season VARCHAR, avg_attendance INTEGER)"}, {"answer": "SELECT league FROM table_name_31 WHERE playoffs = \"lost semifinal\"", "question": "Which league had a playoffs result of a lost semifinal?", "context": "CREATE TABLE table_name_31 (league VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT reg_season FROM table_name_67 WHERE avg_attendance > 3 OFFSET 170", "question": "What regular season result had an average attendance bigger than 3,170?", "context": "CREATE TABLE table_name_67 (reg_season VARCHAR, avg_attendance INTEGER)"}, {"answer": "SELECT COUNT(length__miles_) FROM table_name_95 WHERE east_or_north_terminus = \"ne 2 in lincoln\"", "question": "what is the length (miles) when the east or north terminus is ne 2 in lincoln?", "context": "CREATE TABLE table_name_95 (length__miles_ VARCHAR, east_or_north_terminus VARCHAR)"}, {"answer": "SELECT MAX(length__miles_) FROM table_name_19 WHERE name = \"l-56g\"", "question": "what is the length (miles) when the name is l-56g?", "context": "CREATE TABLE table_name_19 (length__miles_ INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE west_or_south_terminus = \"ne 112 west of blue springs\"", "question": "what is the name when the west or south terminus is ne 112 west of blue springs?", "context": "CREATE TABLE table_name_63 (name VARCHAR, west_or_south_terminus VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_38 WHERE constructor = \"benetton - renault\" AND driver = \"johnny herbert\"", "question": "What is the Time/Retired value for Driver Johnny Herbert with Constructor Benetton - Renault", "context": "CREATE TABLE table_name_38 (time_retired VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_50 WHERE laps = \"66\" AND constructor = \"jordan - peugeot\" AND grid = \"5\"", "question": "What is the Time/Retired value for constructor Jordan - Peugeot with 66 laps and grid value 5?", "context": "CREATE TABLE table_name_50 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_7 WHERE driver = \"pedro diniz\"", "question": "What is the Time/Retired value of driver Pedro Diniz?", "context": "CREATE TABLE table_name_7 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_45 WHERE grid = \"18\"", "question": "Which driver has grid value of 18?", "context": "CREATE TABLE table_name_45 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_54 WHERE grid = \"5\"", "question": "What is the constructor with grid value 5?", "context": "CREATE TABLE table_name_54 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT grid FROM table_name_57 WHERE time_retired = \"accident\"", "question": "What is the grid value which has Time/Retired value of accident?", "context": "CREATE TABLE table_name_57 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_35 WHERE visitor = \"trail blazers\"", "question": "Who was the leading scorer that was a visitor of the Trail Blazers?", "context": "CREATE TABLE table_name_35 (leading_scorer VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_51 WHERE home = \"clippers\"", "question": "Who is the leading scorer when they were at home of the Clippers?", "context": "CREATE TABLE table_name_51 (leading_scorer VARCHAR, home VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_38 WHERE date = \"january 19, 2008\"", "question": "Who was the visitor on January 19, 2008?", "context": "CREATE TABLE table_name_38 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE visitor = \"magic\" AND home = \"clippers\"", "question": "What was the score when there was a visitor of Magic and at home with the Clippers?", "context": "CREATE TABLE table_name_54 (score VARCHAR, visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_28 WHERE goals < 1 AND player = \"keith j. miller\" AND debut_year > 1974", "question": "How many games for keith j. miller, who debuted after 1974 with less than 1 goal?", "context": "CREATE TABLE table_name_28 (games INTEGER, debut_year VARCHAR, goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_62 WHERE away_team = \"carlton\"", "question": "What is the highest crowd when carlton is the away team?", "context": "CREATE TABLE table_name_62 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_72 WHERE venue = \"mcg\"", "question": "What is the highest crowd at mcg?", "context": "CREATE TABLE table_name_72 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_87 WHERE time_retired = \"+1.837\"", "question": "How many grids are associated with a Time/Retired of +1.837?", "context": "CREATE TABLE table_name_87 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_99 WHERE college = \"ucla\"", "question": "What is the hometown of the player that attends UCLA?", "context": "CREATE TABLE table_name_99 (hometown VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_32 WHERE school = \"wichita heights high school\"", "question": "What college is getting a player that attends Wichita Heights High School?", "context": "CREATE TABLE table_name_32 (college VARCHAR, school VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_83 WHERE player = \"cody zeller\"", "question": "What is the hometown of Cody Zeller?", "context": "CREATE TABLE table_name_83 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE hometown = \"washington, in\"", "question": "What player's hometown is Washington, IN?", "context": "CREATE TABLE table_name_83 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT _percentage_2006 FROM table_name_12 WHERE seats_2001 < 23 AND seats_2006 > 4 AND _percentage_2001 = 25.4", "question": "What is the %2006 that has fewer seats than 23 in Seats 2001, more seats than 4 in 2006 Seats, and a % in 2001 of 25.4?", "context": "CREATE TABLE table_name_12 (_percentage_2006 VARCHAR, _percentage_2001 VARCHAR, seats_2001 VARCHAR, seats_2006 VARCHAR)"}, {"answer": "SELECT SUM(seats_2001) FROM table_name_30 WHERE _percentage_2001 > 61.4 AND _percentage_2006 < 54.1", "question": "When the %2001 is more than 61.4, and the %2006 fewer than 54.1, how many Seats in 2001 were there?", "context": "CREATE TABLE table_name_30 (seats_2001 INTEGER, _percentage_2001 VARCHAR, _percentage_2006 VARCHAR)"}, {"answer": "SELECT MAX(seats_2006) FROM table_name_79 WHERE parties_and_voter_communities = \"christian democratic union of germany\" AND _percentage_2006 > 24.6", "question": "What is the highest number of Seats 2006 held by the Christian Democratic Union of Germany Party/Voter Community, with a %2006 higher than 24.6?", "context": "CREATE TABLE table_name_79 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR)"}, {"answer": "SELECT MAX(seats_2006) FROM table_name_5 WHERE parties_and_voter_communities = \"b\u00fcrger f\u00fcr gro\u00df-rohrheim\" AND _percentage_2006 < 21.3", "question": "What is the highest number of Seats 2006 held by the communities of B\u00fcrger F\u00fcr Gro\u00df-Rohrheim Party/Voter Community, with a %2006 less than 21.3?", "context": "CREATE TABLE table_name_5 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR)"}, {"answer": "SELECT AVG(_percentage_2006) FROM table_name_52 WHERE _percentage_2001 > 62.5", "question": "What is the %2006 when the %2001 was more than 62.5?", "context": "CREATE TABLE table_name_52 (_percentage_2006 INTEGER, _percentage_2001 INTEGER)"}, {"answer": "SELECT SUM(losses) FROM table_name_56 WHERE team = \"montreal hockey club\" AND goals_against > 15", "question": "What is the sum of the losses by the Montreal Hockey Club, who have more than 15 Goals Against?", "context": "CREATE TABLE table_name_56 (losses INTEGER, team VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_18 WHERE ties > 0", "question": "What is the largest Goals For by a team that has more than 0 ties?", "context": "CREATE TABLE table_name_18 (goals_for INTEGER, ties INTEGER)"}, {"answer": "SELECT SUM(ties) FROM table_name_40 WHERE goals_for = 25 AND wins > 5", "question": "How many ties do teams with 25 Goals For and more than 5 wins have?", "context": "CREATE TABLE table_name_40 (ties INTEGER, goals_for VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(goals_against) FROM table_name_18 WHERE wins > 5", "question": "What is the lowest Goals Against by a team with more than 5 wins?", "context": "CREATE TABLE table_name_18 (goals_against INTEGER, wins INTEGER)"}, {"answer": "SELECT COUNT(ties) FROM table_name_98 WHERE losses < 3", "question": "What is the total number of ties a team with less than 3 losses have?", "context": "CREATE TABLE table_name_98 (ties VARCHAR, losses INTEGER)"}, {"answer": "SELECT race_name FROM table_name_61 WHERE winning_driver = \"stirling moss\" AND date = \"16 april\"", "question": "Tell me the race name where stirling moss won on 16 april", "context": "CREATE TABLE table_name_61 (race_name VARCHAR, winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_name_25 WHERE circuit = \"modena\"", "question": "Tell me the report for circuit of modena", "context": "CREATE TABLE table_name_25 (report VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_17 WHERE constructor = \"ferrari\" AND date = \"25 april\"", "question": "Tell me the race name for ferrari on 25 april", "context": "CREATE TABLE table_name_17 (race_name VARCHAR, constructor VARCHAR, date VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_22 WHERE race_name = \"vii kanonloppet\"", "question": "Name the constructor for vii kanonloppet", "context": "CREATE TABLE table_name_22 (constructor VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_55 WHERE date = \"may 7\"", "question": "Who is the opponent on May 7?", "context": "CREATE TABLE table_name_55 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_90 WHERE home_team = \"carlton\"", "question": "When the Home team was Carlton, what was the Away team score?", "context": "CREATE TABLE table_name_90 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_37 WHERE chassis = \"fw20\"", "question": "Who was the constructor for a FW20 chassis?", "context": "CREATE TABLE table_name_37 (constructor VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine_\u2020 FROM table_name_86 WHERE chassis = \"mp4-13\" AND driver = \"david coulthard\"", "question": "What engine did David Coulthard have in his mp4-13 chassis?", "context": "CREATE TABLE table_name_86 (engine_\u2020 VARCHAR, chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE outcome = \"runner-up\" AND opponent_in_the_final = \"gilles simon\"", "question": "Which date has an Outcome of runner-up, and an Opponent in the final of gilles simon?", "context": "CREATE TABLE table_name_86 (date VARCHAR, outcome VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_33 WHERE date = \"28 july 2013\"", "question": "Who was the opponent on the 28 july 2013 final?", "context": "CREATE TABLE table_name_33 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE score_in_the_final = \"4\u20136, 3\u20136\"", "question": "Which date has a Score in the final of 4\u20136, 3\u20136?", "context": "CREATE TABLE table_name_11 (date VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT prefix FROM table_name_75 WHERE formula = \"rsor'\"", "question": "What is the prefix for the formula of Rsor'?", "context": "CREATE TABLE table_name_75 (prefix VARCHAR, formula VARCHAR)"}, {"answer": "SELECT group FROM table_name_66 WHERE formula = \"rncs\"", "question": "Which group has the RNCS formula?", "context": "CREATE TABLE table_name_66 (group VARCHAR, formula VARCHAR)"}, {"answer": "SELECT formula FROM table_name_13 WHERE chemical_class = \"thial\"", "question": "Which formula has a thial as a chemical class?", "context": "CREATE TABLE table_name_13 (formula VARCHAR, chemical_class VARCHAR)"}, {"answer": "SELECT suffix FROM table_name_17 WHERE prefix = \"isothiocyanato- (-ncs)\"", "question": "Which suffix has the prefix of isothiocyanato- (-ncs)?", "context": "CREATE TABLE table_name_17 (suffix VARCHAR, prefix VARCHAR)"}, {"answer": "SELECT suffix FROM table_name_77 WHERE prefix = \"thiocyanato- (-scn)\"", "question": "Which item has the suffix containing thiocyanato- (-scn) as a prefix?", "context": "CREATE TABLE table_name_77 (suffix VARCHAR, prefix VARCHAR)"}, {"answer": "SELECT formula FROM table_name_7 WHERE chemical_class = \"thial\"", "question": "Which formula has thial as a chemical class?", "context": "CREATE TABLE table_name_7 (formula VARCHAR, chemical_class VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE away_team = \"fitzroy\"", "question": "If fitzroy is the Away team, what Date did they play?", "context": "CREATE TABLE table_name_97 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_89 WHERE date = \"15 july 1967\" AND away_team = \"fitzroy\"", "question": "When the Away team is fitzroy on the Date of 15 july 1967, what was the Home team playing?", "context": "CREATE TABLE table_name_89 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_5 WHERE away_team = \"st kilda\"", "question": "Which Venue has an Away team of st kilda?", "context": "CREATE TABLE table_name_5 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(place) FROM table_name_90 WHERE draw < 2", "question": "What place has a draw smaller than 2?", "context": "CREATE TABLE table_name_90 (place INTEGER, draw INTEGER)"}, {"answer": "SELECT launch_date__utc_ FROM table_name_32 WHERE cospar_id_satcat_\u2116 = \"1995-022a\"", "question": "What is the launch date of the satellite with a COSPAR ID of 1995-022a?", "context": "CREATE TABLE table_name_32 (launch_date__utc_ VARCHAR, cospar_id_satcat_\u2116 VARCHAR)"}, {"answer": "SELECT cospar_id_satcat_\u2116 FROM table_name_20 WHERE launch_vehicle = \"titan iv(401)a\"", "question": "What is the COSPAR ID of the satellite with a titan iv(401)a launch vehicle?", "context": "CREATE TABLE table_name_20 (cospar_id_satcat_\u2116 VARCHAR, launch_vehicle VARCHAR)"}, {"answer": "SELECT launch_designation FROM table_name_53 WHERE cospar_id_satcat_\u2116 = \"2009-001a\"", "question": "What is the launch designation of the satellite with a 2009-001a COSPAR ID?", "context": "CREATE TABLE table_name_53 (launch_designation VARCHAR, cospar_id_satcat_\u2116 VARCHAR)"}, {"answer": "SELECT launch_site FROM table_name_71 WHERE cospar_id_satcat_\u2116 = \"2003-041a\"", "question": "What is the launch site of the satellite with a 2003-041a COSPAR ID?", "context": "CREATE TABLE table_name_71 (launch_site VARCHAR, cospar_id_satcat_\u2116 VARCHAR)"}, {"answer": "SELECT construction_completed FROM table_name_1 WHERE cerclis_id = \"ard092916188\"", "question": "What construction has a CERCLIS ID of ard092916188?", "context": "CREATE TABLE table_name_1 (construction_completed VARCHAR, cerclis_id VARCHAR)"}, {"answer": "SELECT cerclis_id FROM table_name_16 WHERE deleted = \"04/07/2008\"", "question": "What CERCLIS ID is Deleted of 04/07/2008?", "context": "CREATE TABLE table_name_16 (cerclis_id VARCHAR, deleted VARCHAR)"}, {"answer": "SELECT construction_completed FROM table_name_48 WHERE listed = \"09/08/1983\" AND deleted = \"\u2013\" AND name = \"mid-south wood products\"", "question": "What construction has a Listed 09/08/1983, and a Deleted of \u2013, and a Name of mid-south wood products?", "context": "CREATE TABLE table_name_48 (construction_completed VARCHAR, name VARCHAR, listed VARCHAR, deleted VARCHAR)"}, {"answer": "SELECT construction_completed FROM table_name_49 WHERE listed = \"09/08/1983\" AND name = \"cecil lindsey\"", "question": "What is the Construction that has a Listed 09/08/1983, and a Name of cecil lindsey?", "context": "CREATE TABLE table_name_49 (construction_completed VARCHAR, listed VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_63 WHERE venue = \"kardinia park\"", "question": "What was the attendance at Kardinia Park?", "context": "CREATE TABLE table_name_63 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE week = 16", "question": "What was the Date of Week 16?", "context": "CREATE TABLE table_name_43 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE home = \"colorado\"", "question": "What date was Colorado the home team?", "context": "CREATE TABLE table_name_85 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_69 WHERE decision = \"backstrom\" AND date = \"november 28\"", "question": "What was the record for the game on November 28 when the decision was Backstrom?", "context": "CREATE TABLE table_name_69 (record VARCHAR, decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_26 WHERE record = \"11\u20138\u20132\"", "question": "What team was the home team when the record was 11\u20138\u20132?", "context": "CREATE TABLE table_name_26 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE home = \"edmonton\"", "question": "What was the score when Edmonton was the home team?", "context": "CREATE TABLE table_name_10 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT MAX(pl_gp) FROM table_name_97 WHERE pick__number > 159 AND reg_gp > 0", "question": "Tell me the highest PI GP with pick # greater than 159 and reg GP more than 0", "context": "CREATE TABLE table_name_97 (pl_gp INTEGER, pick__number VARCHAR, reg_gp VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_34 WHERE away_team = \"south melbourne\"", "question": "In the match where south melbourne was the away team, who was the home team?", "context": "CREATE TABLE table_name_34 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_48 WHERE team_1 = \"barcelona\"", "question": "Which Team 2 faced Team 1 from Barcelona?", "context": "CREATE TABLE table_name_48 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_34 WHERE team_1 = \"galatasaray\"", "question": "Which first leg had Galatasaray as Team 1?", "context": "CREATE TABLE table_name_34 (team_1 VARCHAR)"}, {"answer": "SELECT event FROM table_name_8 WHERE time = \"2:19\"", "question": "What was the name of the Event with a time of 2:19?", "context": "CREATE TABLE table_name_8 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_76 WHERE opponent = \"joe lauzon\"", "question": "Where was match which had Joe Lauzon as an opponent?", "context": "CREATE TABLE table_name_76 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT name FROM table_name_78 WHERE city = \"frankfurt\" AND years_as_tallest = \"1990\u20131997\"", "question": "What is the name of the building that was the tallest from 1990\u20131997 in Frankfurt?", "context": "CREATE TABLE table_name_78 (name VARCHAR, city VARCHAR, years_as_tallest VARCHAR)"}, {"answer": "SELECT MAX(height__ft_) FROM table_name_58 WHERE height__m_ < 122", "question": "For a height less than 122 meters, what is the greatest height in feet?", "context": "CREATE TABLE table_name_58 (height__ft_ INTEGER, height__m_ INTEGER)"}, {"answer": "SELECT MAX(height__ft_) FROM table_name_66 WHERE city = \"cologne\"", "question": "How high was the highest building in feet in the city of cologne?", "context": "CREATE TABLE table_name_66 (height__ft_ INTEGER, city VARCHAR)"}, {"answer": "SELECT MIN(height__ft_) FROM table_name_24 WHERE city = \"frankfurt\" AND height__m_ = 257 AND floors < 55", "question": "What is the smallest height (ft) of a building in Frankfurt with a height (m) of 257 and less than 55 floors?", "context": "CREATE TABLE table_name_24 (height__ft_ INTEGER, floors VARCHAR, city VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT height__m_ FROM table_name_66 WHERE city = \"frankfurt\" AND height__ft_ = 850", "question": "What is the height in meters for a building in Frankfurt that is 850 feet tall?", "context": "CREATE TABLE table_name_66 (height__m_ VARCHAR, city VARCHAR, height__ft_ VARCHAR)"}, {"answer": "SELECT mintage FROM table_name_76 WHERE theme = \"toronto maple leafs\" AND issue_price < 24.95", "question": "What is the mintage of the coin with a Toronto Maple Leafs theme and an issue price below 24.95?", "context": "CREATE TABLE table_name_76 (mintage VARCHAR, theme VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_39 WHERE away_team = \"collingwood\"", "question": "What was Collingwood's score in their away game?", "context": "CREATE TABLE table_name_39 (away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_14 WHERE away_team = \"geelong\"", "question": "Where did Geelong play as the away team?", "context": "CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE race_name = \"i dessau autobahnspinne\"", "question": "On what date was the I Dessau Autobahnspinne race?", "context": "CREATE TABLE table_name_66 (date VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_8 WHERE circuit = \"sachsenring\"", "question": "Who was the winning driver in the Sachsenring circuit?", "context": "CREATE TABLE table_name_8 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_98 WHERE player = \"terry mills\"", "question": "Where is Terry Mills from?", "context": "CREATE TABLE table_name_98 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE race = \"mexican grand prix\"", "question": "When is the Mexican grand prix?", "context": "CREATE TABLE table_name_24 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT school FROM table_name_67 WHERE height = \"6-8\"", "question": "The person with a Height of 6-8 went to which School?", "context": "CREATE TABLE table_name_67 (school VARCHAR, height VARCHAR)"}, {"answer": "SELECT college FROM table_name_68 WHERE player = \"dorian finney-smith\"", "question": "What College did Player Dorian Finney-Smith play for?", "context": "CREATE TABLE table_name_68 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_66 WHERE height = \"6-10\" AND college = \"lsu\"", "question": "Which Player has a height of 6-10, and went to College at LSU?", "context": "CREATE TABLE table_name_66 (player VARCHAR, height VARCHAR, college VARCHAR)"}, {"answer": "SELECT school FROM table_name_41 WHERE player = \"tyrone johnson\"", "question": "Which School did Player Tyrone Johnson attend?", "context": "CREATE TABLE table_name_41 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_name_42 WHERE player = \"tyrone johnson\"", "question": "Which School did Player Tyrone Johnson attend?", "context": "CREATE TABLE table_name_42 (school VARCHAR, player VARCHAR)"}, {"answer": "SELECT rider FROM table_name_17 WHERE time = \"1:23.32.41\"", "question": "Who had the time of 1:23.32.41?", "context": "CREATE TABLE table_name_17 (rider VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_24 WHERE rank < 8 AND speed = \"104.567mph\"", "question": "What is the time of the rider who has a rank smaller than 8 and speed of 104.567mph?", "context": "CREATE TABLE table_name_24 (time VARCHAR, rank VARCHAR, speed VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_14 WHERE venue = \"junction oval\"", "question": "What is the home team at the Junction Oval venue?", "context": "CREATE TABLE table_name_14 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE away_team = \"richmond\"", "question": "What is the date where the away team is Richmond?", "context": "CREATE TABLE table_name_30 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_53 WHERE fastest_lap = \"john surtees\" AND winning_driver = \"john surtees\"", "question": "Name the circuit when the fastest lap was john surtees and the winning driver was john surtees.", "context": "CREATE TABLE table_name_53 (circuit VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_59 WHERE circuit = \"monza\"", "question": "Name the winning driver with circuit of monza", "context": "CREATE TABLE table_name_59 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_35 WHERE date = \"8 september\"", "question": "Name the pole position for 8 september", "context": "CREATE TABLE table_name_35 (pole_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_45 WHERE race = \"belgian grand prix\"", "question": "Name the winning driver for belgian grand prix", "context": "CREATE TABLE table_name_45 (winning_driver VARCHAR, race VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_97 WHERE race = \"italian grand prix\"", "question": "Name the circuit for italian grand prix", "context": "CREATE TABLE table_name_97 (circuit VARCHAR, race VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_3 WHERE driver = \"giancarlo fisichella\"", "question": "How many grid numbers were there for the driver Giancarlo Fisichella?", "context": "CREATE TABLE table_name_3 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_93 WHERE constructor = \"ferrari\" AND time_retired = \"fuel pressure\"", "question": "What is the mean number of laps for the constructor Ferrari when the time/retired was fuel pressure?", "context": "CREATE TABLE table_name_93 (laps INTEGER, constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT grid FROM table_name_20 WHERE driver = \"michael schumacher\"", "question": "What is the grid when the driver was Michael Schumacher?", "context": "CREATE TABLE table_name_20 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_99 WHERE grid = 7", "question": "How many laps had a grid number of 7?", "context": "CREATE TABLE table_name_99 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_1 WHERE grid < 17 AND driver = \"giancarlo fisichella\"", "question": "Which lap number had a grid number of less than 17 when the driver was Giancarlo Fisichella?", "context": "CREATE TABLE table_name_1 (laps VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_36 WHERE circuit = \"monza\"", "question": "Name the winning driver for circuit of monza", "context": "CREATE TABLE table_name_36 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE fastest_lap = \"jody scheckter\" AND race = \"french grand prix\"", "question": "Tell me the date for jody scheckter being the fastest lap at the french grand prix", "context": "CREATE TABLE table_name_14 (date VARCHAR, fastest_lap VARCHAR, race VARCHAR)"}, {"answer": "SELECT date FROM table_name_50 WHERE circuit = \"interlagos\"", "question": "Name the date for circuit of interlagos", "context": "CREATE TABLE table_name_50 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT event FROM table_name_74 WHERE opponent = \"vinny magalh\u00e3es\"", "question": "What was the event for vinny magalh\u00e3es?", "context": "CREATE TABLE table_name_74 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE opponent = \"renato ferreira\"", "question": "What was the date for renato ferreira?", "context": "CREATE TABLE table_name_9 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_88 WHERE date = 2009 AND opponent = \"leonardo chocolate\"", "question": "What was the event with leonardo chocolate in 2009?", "context": "CREATE TABLE table_name_88 (event VARCHAR, date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE date = 2009 AND opponent = \"gerardi rinaldi\"", "question": "What was the result for the opponent being gerardi rinaldi in 2009?", "context": "CREATE TABLE table_name_14 (result VARCHAR, date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT eastern__number1 FROM table_name_23 WHERE week = 5", "question": "Tell me the eastern #1 for week of 5", "context": "CREATE TABLE table_name_23 (eastern__number1 VARCHAR, week VARCHAR)"}, {"answer": "SELECT eastern__number2 FROM table_name_23 WHERE western__number2 = \"oakland\"", "question": "Tell me the eastern #2 for western #2 of oakland", "context": "CREATE TABLE table_name_23 (eastern__number2 VARCHAR, western__number2 VARCHAR)"}, {"answer": "SELECT week FROM table_name_37 WHERE eastern__number2 = \"houston\"", "question": "Tell me the wekk for eastern #2 of houston", "context": "CREATE TABLE table_name_37 (week VARCHAR, eastern__number2 VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_74 WHERE away_team = \"carlton\"", "question": "Which home team played against the away team Carlton?", "context": "CREATE TABLE table_name_74 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE home_team = \"collingwood\"", "question": "Where was the game played where the home team was Collingwood?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_44 WHERE crowd > 25 OFFSET 603", "question": "What is the home score with a crowd larger than 25,603?", "context": "CREATE TABLE table_name_44 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT date FROM table_name_41 WHERE home_team = \"south melbourne\"", "question": "What is the date of the home team from South Melbourne?", "context": "CREATE TABLE table_name_41 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_88 WHERE home_team = \"fitzroy\"", "question": "What is the score of the away team with the home team Fitzroy?", "context": "CREATE TABLE table_name_88 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_63 WHERE away_team = \"footscray\"", "question": "What venue did the away team footscray play at?", "context": "CREATE TABLE table_name_63 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_75 WHERE away_team = \"melbourne\"", "question": "When melbourne was the away team, what was the lowest crowd turnout they had?", "context": "CREATE TABLE table_name_75 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_63 WHERE venue = \"glenferrie oval\"", "question": "Which away team plays at the venue glenferrie oval?", "context": "CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(2005) FROM table_name_75 WHERE 2009 = 19 AND 2010 < 21", "question": "Tell me the lowest 2005 for 2010 less than 21 for 2009 being 19", "context": "CREATE TABLE table_name_75 (Id VARCHAR)"}, {"answer": "SELECT COUNT(2010) FROM table_name_85 WHERE 2009 < 14 AND 2008 < 15 AND 2005 = 3", "question": "Name the total number of 2010 for when 2009 is less than 14, 2008 is less than 15 and 2005 is 3", "context": "CREATE TABLE table_name_85 (Id VARCHAR)"}, {"answer": "SELECT AVG(2008) FROM table_name_21 WHERE year = \"beijing\" AND 2005 > 2", "question": "Name the average 2008 for beijing and 2005 more than 2", "context": "CREATE TABLE table_name_21 (year VARCHAR)"}, {"answer": "SELECT MIN(2008) FROM table_name_45 WHERE year = \"guizhou\" AND 2005 < 31", "question": "Name the lowest 2008 for guizhou when 2005 is less than 31", "context": "CREATE TABLE table_name_45 (year VARCHAR)"}, {"answer": "SELECT SUM(2010) FROM table_name_53 WHERE 2000 = 17 AND 2005 > 16", "question": "Name the sum of 2010 for 2000 of 17 and 2005 more than 16", "context": "CREATE TABLE table_name_53 (Id VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_7 WHERE venue = \"mcg\"", "question": "What is the total of crowd at Venue of mcg?", "context": "CREATE TABLE table_name_7 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT COUNT(region) FROM table_name_76 WHERE area__km_2__ = 58.81", "question": "Tell me the number of regions with an area of 58.81", "context": "CREATE TABLE table_name_76 (region VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_63 WHERE bronze < 0", "question": "what is the rank when the bronze is less than 0?", "context": "CREATE TABLE table_name_63 (rank VARCHAR, bronze INTEGER)"}, {"answer": "SELECT MAX(rank) FROM table_name_83 WHERE bronze < 1 AND total < 1", "question": "what is the highest rank when the bronze is less than 1 and the total is less than 1?", "context": "CREATE TABLE table_name_83 (rank INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_70 WHERE gold < 0", "question": "what is the lowest amount of silver when the gold is less than 0?", "context": "CREATE TABLE table_name_70 (silver INTEGER, gold INTEGER)"}, {"answer": "SELECT AVG(gold) FROM table_name_5 WHERE rank > 5", "question": "what is the average number of gold when the rank is more than 5?", "context": "CREATE TABLE table_name_5 (gold INTEGER, rank INTEGER)"}, {"answer": "SELECT MAX(silver) FROM table_name_50 WHERE gold = 0 AND nation = \"soviet union\"", "question": "what is the highest amount of silver when gold is 0 for soviet union?", "context": "CREATE TABLE table_name_50 (silver INTEGER, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT position FROM table_name_35 WHERE player = \"adam rachel\"", "question": "What position does adam rachel play?", "context": "CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE first_team_appearances > 1 AND first_team_goals = 32", "question": "What player has over 1 first apperance and over 32 first team goals?", "context": "CREATE TABLE table_name_97 (player VARCHAR, first_team_appearances VARCHAR, first_team_goals VARCHAR)"}, {"answer": "SELECT AVG(speed) FROM table_name_31 WHERE year < 1974 AND passengers > 1.73", "question": "What is the average speed for ships before 1974 with over 1.73 passengers?", "context": "CREATE TABLE table_name_31 (speed INTEGER, year VARCHAR, passengers VARCHAR)"}, {"answer": "SELECT COUNT(vessels) FROM table_name_11 WHERE ship_name = \"aqua jewel\"", "question": "How many vessels are named aqua jewel?", "context": "CREATE TABLE table_name_11 (vessels VARCHAR, ship_name VARCHAR)"}, {"answer": "SELECT COUNT(district) FROM table_name_40 WHERE place_of_birth = \"baltimore city\" AND delegate = \"cheryl glenn\"", "question": "How many districts in Baltimore City does Cheryl Glenn dictate?", "context": "CREATE TABLE table_name_40 (district VARCHAR, place_of_birth VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT party FROM table_name_61 WHERE district = 41 AND delegate = \"jill p. carter\"", "question": "Which party belongs to district 41, and is delegated by Jill P. Carter?", "context": "CREATE TABLE table_name_61 (party VARCHAR, district VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT place_of_birth FROM table_name_31 WHERE took_office > 1982 AND district < 43 AND committee = \"health and government operations\"", "question": "Where was the place of birth for the delegate who took office after 1982, delegates a district smaller than 43 and belongs to a Health and Government operations committee?", "context": "CREATE TABLE table_name_31 (place_of_birth VARCHAR, committee VARCHAR, took_office VARCHAR, district VARCHAR)"}, {"answer": "SELECT place_of_birth FROM table_name_24 WHERE committee = \"judiciary\" AND district = 43", "question": "Where was the delegate belonging to the Judiciary committee of district 43 born?", "context": "CREATE TABLE table_name_24 (place_of_birth VARCHAR, committee VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(district) FROM table_name_30 WHERE delegate = \"cheryl glenn\" AND took_office > 2006", "question": "What is the largest district for delegate Cheryl Glenn, that she had taken after 2006?", "context": "CREATE TABLE table_name_30 (district INTEGER, delegate VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT MAX(placings) FROM table_name_82 WHERE name = \"marie mcneil / robert mccall\" AND points < 168.58", "question": "What is the highest placing for  marie mcneil / robert mccall, with less than 168.58?", "context": "CREATE TABLE table_name_82 (placings INTEGER, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE home = \"mavericks\"", "question": "What was the date of the Mavericks home game?", "context": "CREATE TABLE table_name_25 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT MAX(displacement__cc_) FROM table_name_12 WHERE model = \"r fwd auto phase1\"", "question": "What is the highest displacement value for the R Fwd Auto Phase1?", "context": "CREATE TABLE table_name_12 (displacement__cc_ INTEGER, model VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_51 WHERE venue = \"lake oval\"", "question": "What team played at lake oval while away?", "context": "CREATE TABLE table_name_51 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_18 WHERE gold < 1 AND bronze = 0 AND total < 2", "question": "Name the number of silver when gold is less than 1 and bronze is 0 when total is less than 2", "context": "CREATE TABLE table_name_18 (silver VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT traffic_direction FROM table_name_88 WHERE street = \"70th street\"", "question": "What is the traffic direction of 70th street?", "context": "CREATE TABLE table_name_88 (traffic_direction VARCHAR, street VARCHAR)"}, {"answer": "SELECT traffic_direction FROM table_name_8 WHERE west = \"2nd avenue\" AND _number_of_lanes = \"1\" AND street = \"64th street\"", "question": "What is the traffic direction of 64th street with 2nd avenue to the west and 1 lane?", "context": "CREATE TABLE table_name_8 (traffic_direction VARCHAR, street VARCHAR, west VARCHAR, _number_of_lanes VARCHAR)"}, {"answer": "SELECT traffic_direction FROM table_name_94 WHERE street = \"97th street\"", "question": "What is the traffic direction of 97th street?", "context": "CREATE TABLE table_name_94 (traffic_direction VARCHAR, street VARCHAR)"}, {"answer": "SELECT _number_of_lanes FROM table_name_43 WHERE street = \"20th street\"", "question": "What is the # of lanes on 20th street?", "context": "CREATE TABLE table_name_43 (_number_of_lanes VARCHAR, street VARCHAR)"}, {"answer": "SELECT driver FROM table_name_40 WHERE entrant = \"marlboro mclaren peugeot\"", "question": "Who drove the Marlboro Mclaren Peugeot?", "context": "CREATE TABLE table_name_40 (driver VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_93 WHERE entrant = \"team lotus\" AND driver = \"mika salo\"", "question": "What tyre did Mika Salo use for team Lotus?", "context": "CREATE TABLE table_name_93 (tyre VARCHAR, entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_99 WHERE entrant = \"tourtel larrousse f1\"", "question": "Which driver drove the Tourtel Larrousse F1?", "context": "CREATE TABLE table_name_99 (driver VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_92 WHERE rounds = \"all\" AND driver = \"gerhard berger\"", "question": "Who constructed Gerhard Berger car that went all rounds?", "context": "CREATE TABLE table_name_92 (constructor VARCHAR, rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_64 WHERE home = \"phoenix\" AND record = \"2\u20135\u20130\"", "question": "Who visited phoenix with a Record of 2\u20135\u20130?", "context": "CREATE TABLE table_name_64 (visitor VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT decision FROM table_name_17 WHERE record = \"3\u20135\u20130\"", "question": "What decision had a Record of 3\u20135\u20130?", "context": "CREATE TABLE table_name_17 (decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_38 WHERE home = \"phoenix\" AND record = \"1\u20130\u20130\"", "question": "What is the low attendance was based in phoenix with a Record of 1\u20130\u20130?", "context": "CREATE TABLE table_name_38 (attendance INTEGER, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE home = \"phoenix\" AND record = \"3\u20136\u20130\"", "question": "What was the score did phoenix have with a Record of 3\u20136\u20130 at home?", "context": "CREATE TABLE table_name_88 (score VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_95 WHERE home = \"anaheim\"", "question": "What was the record while at home in Anaheim?", "context": "CREATE TABLE table_name_95 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT inning FROM table_name_86 WHERE team = \"minnesota twins\" AND date = \"06-07-1961\"", "question": "Which inning were the Minnesota Twins in on 06-07-1961?", "context": "CREATE TABLE table_name_86 (inning VARCHAR, team VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_16 WHERE venue = \"arden street oval\"", "question": "Who was the away team at the game held at Arden Street Oval?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_91 WHERE away_team = \"footscray\"", "question": "What is the name of the venue that away team footscray played at?", "context": "CREATE TABLE table_name_91 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE venue = \"princes park\"", "question": "What date was the game played at princes park?", "context": "CREATE TABLE table_name_74 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(track) FROM table_name_75 WHERE recorded = \"1964-01-08\"", "question": "How many tracks were Recorded 1964-01-08?", "context": "CREATE TABLE table_name_75 (track VARCHAR, recorded VARCHAR)"}, {"answer": "SELECT translation FROM table_name_61 WHERE composer = \"jacques brel, rod mckuen\"", "question": "WhatTranslation has a Composer of jacques brel, rod mckuen?", "context": "CREATE TABLE table_name_61 (translation VARCHAR, composer VARCHAR)"}, {"answer": "SELECT recorded FROM table_name_31 WHERE track > 2 AND translation = \"the last meal\"", "question": "Which recording has a Track larger than 2, and a Translation of the last meal?", "context": "CREATE TABLE table_name_31 (recorded VARCHAR, track VARCHAR, translation VARCHAR)"}, {"answer": "SELECT title FROM table_name_90 WHERE track = 3", "question": "Which title has a Track of 3?", "context": "CREATE TABLE table_name_90 (title VARCHAR, track VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE home = \"new jersey\" AND record = \"7-23-7\"", "question": "When was the home game when the New Jersey team's record became 7-23-7?", "context": "CREATE TABLE table_name_9 (date VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT college FROM table_name_86 WHERE pick = 11", "question": "What college has a pick of 11?", "context": "CREATE TABLE table_name_86 (college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_28 WHERE college = \"florida state\"", "question": "What is the average pick of Florida State?", "context": "CREATE TABLE table_name_28 (pick INTEGER, college VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_63 WHERE college = \"san diego state\"", "question": "What is the average pick of San Diego State?", "context": "CREATE TABLE table_name_63 (pick INTEGER, college VARCHAR)"}, {"answer": "SELECT MIN(sp) + fs FROM table_name_64 WHERE name = \"miljan begovic\" AND placings > 189", "question": "What is the lowest value for SP+FS for Miljan Begovic with a greater than 189 place?", "context": "CREATE TABLE table_name_64 (fs VARCHAR, sp INTEGER, name VARCHAR, placings VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_42 WHERE rank < 12 AND name = \"david santee\"", "question": "What is the average points value for a rank less than 12 for David Santee?", "context": "CREATE TABLE table_name_42 (points INTEGER, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_44 WHERE points = 185.16 AND sp + fs > 5", "question": "What is the total number for Rank with 185.16 points and a SP+FS value greater than 5?", "context": "CREATE TABLE table_name_44 (rank VARCHAR, points VARCHAR, sp VARCHAR, fs VARCHAR)"}, {"answer": "SELECT MAX(sp) + fs FROM table_name_27 WHERE points > 164.56 AND rank > 1 AND name = \"mitsuru matsumura\"", "question": "What is the largest value for SP+FS with more than 164.56 points for Mitsuru Matsumura in a Rank greater than 1?", "context": "CREATE TABLE table_name_27 (fs VARCHAR, sp INTEGER, name VARCHAR, points VARCHAR, rank VARCHAR)"}, {"answer": "SELECT variant__with_niqqud__ FROM table_name_84 WHERE phonetic_realisation = \"[[[|u]]]\"", "question": "When phonetic realisation is [[[|u]]], what is the variant with niqqud?", "context": "CREATE TABLE table_name_84 (variant__with_niqqud__ VARCHAR, phonetic_realisation VARCHAR)"}, {"answer": "SELECT variant__with_niqqud__ FROM table_name_53 WHERE phonemic_value = \"/v/\" AND without_niqqud = \"as middle letter: \u05d5\u05d5\"", "question": "When a variant without niqqud is as middle letter: \u05d5\u05d5 with a phonemic value of /v/, what is the variant with niqqud?", "context": "CREATE TABLE table_name_53 (variant__with_niqqud__ VARCHAR, phonemic_value VARCHAR, without_niqqud VARCHAR)"}, {"answer": "SELECT phonetic_realisation FROM table_name_12 WHERE phonemic_value = \"/v/\" AND without_niqqud = \"as initial letter: \u05d5\"", "question": "What is the phonetic realisation if the phonemic value is /v/ and the without niqqud is as initial letter: \u05d5?", "context": "CREATE TABLE table_name_12 (phonetic_realisation VARCHAR, phonemic_value VARCHAR, without_niqqud VARCHAR)"}, {"answer": "SELECT english_example FROM table_name_96 WHERE variant__with_niqqud__ = \"\u05d5\u05b9\"", "question": "Give me an english example of a variant with niqqud of \u05d5\u05b9?", "context": "CREATE TABLE table_name_96 (english_example VARCHAR, variant__with_niqqud__ VARCHAR)"}, {"answer": "SELECT variant__with_niqqud__ FROM table_name_77 WHERE phonetic_realisation = \"[[[|v]]]\"", "question": "What is the variant with niqqud for a phonetic realisation of [[[|v]]]?", "context": "CREATE TABLE table_name_77 (variant__with_niqqud__ VARCHAR, phonetic_realisation VARCHAR)"}, {"answer": "SELECT phonetic_realisation FROM table_name_61 WHERE without_niqqud = \"as final letter: \u05d5 or \u05d9\u05d5\"", "question": "If a variant without niqqud is as final letter: \u05d5 or \u05d9\u05d5, what is the phonetic realisation?", "context": "CREATE TABLE table_name_61 (phonetic_realisation VARCHAR, without_niqqud VARCHAR)"}, {"answer": "SELECT position FROM table_name_96 WHERE pick = 113", "question": "What position does pick 113 play?", "context": "CREATE TABLE table_name_96 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT school FROM table_name_7 WHERE pick > 225 AND player = \"victor jones\"", "question": "What is the school of Victor Jones, who was picked further than number 225?", "context": "CREATE TABLE table_name_7 (school VARCHAR, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_68 WHERE school = \"virginia tech\"", "question": "What is the total pick number of Virginia Tech?", "context": "CREATE TABLE table_name_68 (pick VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_name_57 WHERE school = \"north carolina\"", "question": "What is the position of a player from North Carolina?", "context": "CREATE TABLE table_name_57 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_4 WHERE home_team = \"st kilda\"", "question": "What is the home team score of St Kilda?", "context": "CREATE TABLE table_name_4 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_19 WHERE home_team = \"collingwood\"", "question": "What is the date for home team Collingwood?", "context": "CREATE TABLE table_name_19 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_52 WHERE home_team = \"st kilda\"", "question": "What is the home team score for St Kilda?", "context": "CREATE TABLE table_name_52 (home_team VARCHAR)"}, {"answer": "SELECT named AS after FROM table_name_97 WHERE diameter__km_ < 19.2 AND latitude > -37.5 AND longitude < 67.3", "question": "Tell me the named after for diameter less than 19.2 and latitude more than -37.5 with longitude less than 67.3", "context": "CREATE TABLE table_name_97 (named VARCHAR, longitude VARCHAR, diameter__km_ VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT named AS after FROM table_name_61 WHERE latitude = 6.4", "question": "Tell me the named for latitude of 6.4", "context": "CREATE TABLE table_name_61 (named VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT name FROM table_name_80 WHERE longitude > 103.8 AND latitude = -11.4", "question": "Tell me the name for longitude more than 103.8 and latitude of -11.4", "context": "CREATE TABLE table_name_80 (name VARCHAR, longitude VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT SUM(longitude) FROM table_name_65 WHERE diameter__km_ = 22.6 AND latitude < -12.4", "question": "Tell me the sum of longitude for diameter being 22.6 and latitude less than -12.4", "context": "CREATE TABLE table_name_65 (longitude INTEGER, diameter__km_ VARCHAR, latitude VARCHAR)"}, {"answer": "SELECT overall FROM table_name_48 WHERE nationality = \"united states\" AND player = \"doug sproule\"", "question": "What was the overall pick for Doug Sproule of the United States?", "context": "CREATE TABLE table_name_48 (overall VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(viewers__m_) FROM table_name_69 WHERE share > 13", "question": "what is the lowest viewers (m) when the share is more than 13?", "context": "CREATE TABLE table_name_69 (viewers__m_ INTEGER, share INTEGER)"}, {"answer": "SELECT AVG(rating) FROM table_name_46 WHERE air_date = \"november 23, 2007\"", "question": "what is the average rating when the air date is november 23, 2007?", "context": "CREATE TABLE table_name_46 (rating INTEGER, air_date VARCHAR)"}, {"answer": "SELECT COUNT(viewers__m_) FROM table_name_12 WHERE rating = 6.4 AND share > 11", "question": "what is the total viewers (m) when the rating is 6.4 and the share is more than 11?", "context": "CREATE TABLE table_name_12 (viewers__m_ VARCHAR, rating VARCHAR, share VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_58 WHERE directed_by = \"terry ingram\"", "question": "Who wrote the episode that was directed by Terry Ingram?", "context": "CREATE TABLE table_name_58 (written_by VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT title FROM table_name_38 WHERE directed_by = \"roy dupuis\"", "question": "What is the title of the episode that was directed by Roy Dupuis?", "context": "CREATE TABLE table_name_38 (title VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT directed_by FROM table_name_10 WHERE original_airdate = \"february 25, 2001\"", "question": "Who directed the episode that originally aired on February 25, 2001?", "context": "CREATE TABLE table_name_10 (directed_by VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT episode__number FROM table_name_95 WHERE original_airdate = \"january 21, 2001\"", "question": "What is the episode # of the episode that originally aired on January 21, 2001?", "context": "CREATE TABLE table_name_95 (episode__number VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT directed_by FROM table_name_21 WHERE episode__number = \"92 (4)\"", "question": "Who directed episode # 92 (4)?", "context": "CREATE TABLE table_name_21 (directed_by VARCHAR, episode__number VARCHAR)"}, {"answer": "SELECT stream_s__and___or_lake_s_ FROM table_name_42 WHERE date_founded = 1959", "question": "what is the stream(s) and / or lake(s) when the date founded is 1959?", "context": "CREATE TABLE table_name_42 (stream_s__and___or_lake_s_ VARCHAR, date_founded VARCHAR)"}, {"answer": "SELECT area_in_acres__ha_ FROM table_name_20 WHERE park_name = \"bald eagle state park\"", "question": "What is the area in acres (ha) for the park bald eagle state park?", "context": "CREATE TABLE table_name_20 (area_in_acres__ha_ VARCHAR, park_name VARCHAR)"}, {"answer": "SELECT MAX(date_founded) FROM table_name_6 WHERE county_or_counties = \"elk county\"", "question": "what is the most recent date founded in elk county?", "context": "CREATE TABLE table_name_6 (date_founded INTEGER, county_or_counties VARCHAR)"}, {"answer": "SELECT COUNT(date_founded) FROM table_name_77 WHERE park_name = \"beltzville state park\"", "question": "how many parks are name beltzville state park?", "context": "CREATE TABLE table_name_77 (date_founded VARCHAR, park_name VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_23 WHERE total < 1", "question": "Which rank has a total smaller than 1?", "context": "CREATE TABLE table_name_23 (rank INTEGER, total INTEGER)"}, {"answer": "SELECT year FROM table_name_47 WHERE english_title = \"the ocean\"", "question": "What is the year for the ocean?", "context": "CREATE TABLE table_name_47 (year VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT representing FROM table_name_59 WHERE original_title = \"om fjorten dage\"", "question": "Name the representation for om fjorten dage", "context": "CREATE TABLE table_name_59 (representing VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT representing FROM table_name_35 WHERE original_title = \"englar alheimsins\"", "question": "Name the representing for englar alheimsins", "context": "CREATE TABLE table_name_35 (representing VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_53 WHERE year < 1977 AND author = \"lagercrantz olof lagercrantz\"", "question": "Name the original title for years before 1977 and author of lagercrantz olof lagercrantz", "context": "CREATE TABLE table_name_53 (original_title VARCHAR, year VARCHAR, author VARCHAR)"}, {"answer": "SELECT representing FROM table_name_82 WHERE original_title = \"ingenj\u00f6r andr\u00e9es luftf\u00e4rd\"", "question": "Name the representating for ingenj\u00f6r andr\u00e9es luftf\u00e4rd", "context": "CREATE TABLE table_name_82 (representing VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT distance FROM table_name_26 WHERE type = \"team time trial\"", "question": "What is the distance for the team time trial?", "context": "CREATE TABLE table_name_26 (distance VARCHAR, type VARCHAR)"}, {"answer": "SELECT course FROM table_name_99 WHERE date = \"13 may\"", "question": "What was the course on 13 may?", "context": "CREATE TABLE table_name_99 (course VARCHAR, date VARCHAR)"}, {"answer": "SELECT type FROM table_name_83 WHERE course = \"rest day\" AND date = \"21 may\"", "question": "What type has rest day as a course and was on 21 may?", "context": "CREATE TABLE table_name_83 (type VARCHAR, course VARCHAR, date VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_3 WHERE winning_driver = \"innes ireland\"", "question": "What's the race name that the driver Innes Ireland won?", "context": "CREATE TABLE table_name_3 (race_name VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE visitor = \"charlotte bobcats\"", "question": "What's the score in the home game against the Charlotte Bobcats?", "context": "CREATE TABLE table_name_48 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE venue = \"victoria park\"", "question": "What was the date of the game played at Victoria Park?", "context": "CREATE TABLE table_name_80 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_71 WHERE crowd > 13 OFFSET 557", "question": "Who was the home team when the crowd was larger than 13,557?", "context": "CREATE TABLE table_name_71 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT venue FROM table_name_57 WHERE away_team = \"richmond\"", "question": "Where did Richmond play as the away team?", "context": "CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT years_competed FROM table_name_97 WHERE nickname = \"panthers\"", "question": "Tell me the years competed for panthers", "context": "CREATE TABLE table_name_97 (years_competed VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT SUM(release_date) FROM table_name_32 WHERE media = \"cd\" AND country = \"uk\" AND music_label = \"eg records\"", "question": "What is the release date of the CD by EG Records in the UK?", "context": "CREATE TABLE table_name_32 (release_date INTEGER, music_label VARCHAR, media VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(release_date) FROM table_name_46 WHERE music_label = \"editions eg\" AND country = \"netherlands\"", "question": "What is the release date by Editions EG in the Netherlands?", "context": "CREATE TABLE table_name_46 (release_date INTEGER, music_label VARCHAR, country VARCHAR)"}, {"answer": "SELECT music_label FROM table_name_36 WHERE catalogue_number = \"enocd 10\"", "question": "What is the music label with the catalogue number enocd 10?", "context": "CREATE TABLE table_name_36 (music_label VARCHAR, catalogue_number VARCHAR)"}, {"answer": "SELECT AVG(release_date) FROM table_name_86 WHERE music_label = \"virgin\"", "question": "What is the release date by Virgin?", "context": "CREATE TABLE table_name_86 (release_date INTEGER, music_label VARCHAR)"}, {"answer": "SELECT team FROM table_name_49 WHERE coach = \"yuriy hruznov\"", "question": "Which team has Yuriy Hruznov as coach?", "context": "CREATE TABLE table_name_49 (team VARCHAR, coach VARCHAR)"}, {"answer": "SELECT location FROM table_name_38 WHERE team = \"dynamo-2\"", "question": "Where is Dynamo-2 located?", "context": "CREATE TABLE table_name_38 (location VARCHAR, team VARCHAR)"}, {"answer": "SELECT location FROM table_name_81 WHERE team = \"shakhtar-2\"", "question": "Where is Shakhtar-2 located?", "context": "CREATE TABLE table_name_81 (location VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(1 AS st_prize__) AS $__ FROM table_name_71 WHERE score = \"207 (-9)\" AND tournament = \"gte northwest classic\"", "question": "For the gte northwest classic with the score of 207 (-9), what is the average 1st prize ($)", "context": "CREATE TABLE table_name_71 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_prize__) AS $__ FROM table_name_56 WHERE date = \"sep 18\"", "question": "For sep 18 what is the total number of 1 prize ($)", "context": "CREATE TABLE table_name_56 (date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_99 WHERE location = \"virginia\"", "question": "What is the winner for Virginia?", "context": "CREATE TABLE table_name_99 (winner VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE tournament = \"gte north classic\"", "question": "On what date was the gte north classic tournament?", "context": "CREATE TABLE table_name_81 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_81 WHERE venue = \"princes park\"", "question": "What home team plays at princes park?", "context": "CREATE TABLE table_name_81 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_78 WHERE home_team = \"fitzroy\"", "question": "Where does the home team fitzroy play?", "context": "CREATE TABLE table_name_78 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT extra FROM table_name_30 WHERE result = \"2nd\" AND year < 2005", "question": "Which extra resulted in 2nd before 2005?", "context": "CREATE TABLE table_name_30 (extra VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_27 WHERE result = \"2nd\" AND year < 2005", "question": "Which venue resulted in 2nd before 2005?", "context": "CREATE TABLE table_name_27 (venue VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_22 WHERE loss = \"wakefield (7\u201310)\"", "question": "What was the attendance at the Red Sox game that had a loss of Wakefield (7\u201310)?", "context": "CREATE TABLE table_name_22 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_74 WHERE record = \"77\u201367\"", "question": "What was the loss of the Red Sox game when they had a record of 77\u201367?", "context": "CREATE TABLE table_name_74 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_36 WHERE runner_up = \"pat cash\"", "question": "Which Tournament has Pat Cash as a runner-up?", "context": "CREATE TABLE table_name_36 (tournament VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT winner FROM table_name_32 WHERE third_place = \"mikael pernfors\" AND tournament = \"hong kong\"", "question": "Who is the winner for the Tournament in Hong Kong with a third place winner named Mikael Pernfors?", "context": "CREATE TABLE table_name_32 (winner VARCHAR, third_place VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_75 WHERE event = \"10000 m\"", "question": "What was the nationality of the athlete that ran the 10000 m event?", "context": "CREATE TABLE table_name_75 (nationality VARCHAR, event VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_60 WHERE wins < 21 AND club = \"palam\u00f3s cf\" AND goals_for < 40", "question": "What is the number of points of palam\u00f3s cf, which has less than 21 wins and less than 40 goals?", "context": "CREATE TABLE table_name_60 (points VARCHAR, goals_for VARCHAR, wins VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_25 WHERE goals_against > 46 AND wins = 10 AND goal_difference = -24", "question": "Which club has more than 46 goals, 10 wins, and a goal difference of -24?", "context": "CREATE TABLE table_name_25 (club VARCHAR, goal_difference VARCHAR, goals_against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_11 WHERE away_team = \"richmond\"", "question": "What is Richmond score as the away team?", "context": "CREATE TABLE table_name_11 (away_team VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_97 WHERE round < 2", "question": "Tell me the pole position with round less than 2", "context": "CREATE TABLE table_name_97 (pole_position VARCHAR, round INTEGER)"}, {"answer": "SELECT fastest_lap FROM table_name_18 WHERE round = 16", "question": "I want the fastest lap for round of 16", "context": "CREATE TABLE table_name_18 (fastest_lap VARCHAR, round VARCHAR)"}, {"answer": "SELECT record FROM table_name_72 WHERE home = \"nashville\"", "question": "Which Record has a home of Nashville?", "context": "CREATE TABLE table_name_72 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_67 WHERE date = \"january 17\"", "question": "Which Visitor played on January 17?", "context": "CREATE TABLE table_name_67 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE visitor = \"nashville\" AND decision = \"ellis\" AND game > 32", "question": "Which game later than number 32 had both Ellis for the decision and Nashville as the visiting team?", "context": "CREATE TABLE table_name_59 (record VARCHAR, game VARCHAR, visitor VARCHAR, decision VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_28 WHERE game > 29 AND attendance > 18 OFFSET 584", "question": "Who was the visiting team in the game sometime after number 29 that had 18,584 atttendees?", "context": "CREATE TABLE table_name_28 (visitor VARCHAR, game VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT vca_155 FROM table_name_7 WHERE vcpc = \"75km/h (47mph)\"", "question": "If there is a VCPC of 75km/h (47mph) what is the VCA?", "context": "CREATE TABLE table_name_7 (vca_155 VARCHAR, vcpc VARCHAR)"}, {"answer": "SELECT vctp FROM table_name_86 WHERE vcrt = \"7.62mm (0.3in) fn mag 60-20 machine gun\"", "question": "If there is a VCRT of 7.62mm (0.3in) fn mag 60-20 machine gun, what is the VCTP of that?", "context": "CREATE TABLE table_name_86 (vctp VARCHAR, vcrt VARCHAR)"}, {"answer": "SELECT airing_date FROM table_name_21 WHERE genre = \"modern drama\" AND number_of_episodes > 21", "question": "What is the airing date for a modern drama with more than 21 episodes?", "context": "CREATE TABLE table_name_21 (airing_date VARCHAR, genre VARCHAR, number_of_episodes VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_33 WHERE race = \"german grand prix\"", "question": "What was the Constructor for the German Grand Prix Race?", "context": "CREATE TABLE table_name_33 (constructor VARCHAR, race VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_36 WHERE fastest_lap = \"derek warwick\"", "question": "What was the Constructor for the race that had Derek Warwick as its Fastest Lap?", "context": "CREATE TABLE table_name_36 (constructor VARCHAR, fastest_lap VARCHAR)"}, {"answer": "SELECT race FROM table_name_78 WHERE fastest_lap = \"niki lauda\" AND location = \"brands hatch\"", "question": "What Brands Hatch race had Niki Lauda as its Fastest Lap?", "context": "CREATE TABLE table_name_78 (race VARCHAR, fastest_lap VARCHAR, location VARCHAR)"}, {"answer": "SELECT report FROM table_name_32 WHERE location = \"monaco\"", "question": "What was the Report for the Monaco race?", "context": "CREATE TABLE table_name_32 (report VARCHAR, location VARCHAR)"}, {"answer": "SELECT nation FROM table_name_75 WHERE total = 59", "question": "What was the nation that had 59 totals?", "context": "CREATE TABLE table_name_75 (nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE winning_driver = \"ayrton senna\" AND location = \"imola\"", "question": "On what date did Ayrton Senna win at Imola?", "context": "CREATE TABLE table_name_92 (date VARCHAR, winning_driver VARCHAR, location VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_4 WHERE winning_driver = \"ayrton senna\" AND date = \"23 april\"", "question": "Who had the fastest lap of the race that Ayrton Senna won on 23 April?", "context": "CREATE TABLE table_name_4 (fastest_lap VARCHAR, winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_name_25 WHERE location = \"jerez\"", "question": "Which Grand Prix is located in Jerez?", "context": "CREATE TABLE table_name_25 (grand_prix VARCHAR, location VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_82 WHERE location = \"jerez\"", "question": "Who had the pole position in Jerez?", "context": "CREATE TABLE table_name_82 (pole_position VARCHAR, location VARCHAR)"}, {"answer": "SELECT report FROM table_name_84 WHERE winning_driver = \"ayrton senna\" AND date = \"27 august\"", "question": "What is the report for the race that Ayrton Senna won on 27 August?", "context": "CREATE TABLE table_name_84 (report VARCHAR, winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_26 WHERE nation = \"united states\" AND silver > 3", "question": "What is the sum of gold medals for the United States with silver medal count greater than 3?", "context": "CREATE TABLE table_name_26 (gold INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_72 WHERE silver > 6 AND nation = \"norway\" AND gold > 10", "question": "What is the total number of medals of Norway with a silver medal count greater than 6 and a gold medal count greater than 10?", "context": "CREATE TABLE table_name_72 (total VARCHAR, gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_14 WHERE gold < 6 AND nation = \"italy\" AND total > 10", "question": "What is the lowest bronze medal count for Italy with fewer than 6 gold medals and greater than 10 total medals?", "context": "CREATE TABLE table_name_14 (bronze INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_38 WHERE rank > 7 AND total = 6 AND bronze < 2", "question": "On average, what is the number of silver medals for nations ranking higher than 7, with a total of 6 medals and fewer than 2 bronze medals?", "context": "CREATE TABLE table_name_38 (silver INTEGER, bronze VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_4 WHERE bronze > 2 AND rank > 3 AND nation = \"united states\" AND silver > 3", "question": "For the United States, with greater than 2 bronze metals, greater than 3 silver medals, and a rank higher than 3, what is the highest total number of medals?", "context": "CREATE TABLE table_name_4 (total INTEGER, silver VARCHAR, nation VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT player FROM table_name_36 WHERE years_for_jazz = \"1975-79\"", "question": "Which player was active in Jazz in 1975-79?", "context": "CREATE TABLE table_name_36 (player VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_47 WHERE position = \"guard\" AND school_club_team = \"bowling green\"", "question": "What is the nationality for the guard position from Bowling Green?", "context": "CREATE TABLE table_name_47 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_86 WHERE school_club_team = \"auburn\"", "question": "Who is the player from Auburn?", "context": "CREATE TABLE table_name_86 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_81 WHERE position = \"shooting guard\"", "question": "Which player is a shooting guard?", "context": "CREATE TABLE table_name_81 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_59 WHERE years_for_jazz = \"2002-03\"", "question": "Which position was active in Jazz in 2002-03?", "context": "CREATE TABLE table_name_59 (position VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT COUNT(swimsuit) FROM table_name_39 WHERE evening_gown = 8.329 AND average < 8.497", "question": "Name the total number of swimsuits when evening gown is 8.329 and average is less than 8.497", "context": "CREATE TABLE table_name_39 (swimsuit VARCHAR, evening_gown VARCHAR, average VARCHAR)"}, {"answer": "SELECT SUM(swimsuit) FROM table_name_67 WHERE average < 7.362 AND evening_gown < 6.983", "question": "Name the sum of swimsuit when the evening gown is less than 6.983 and the average is less than 7.362", "context": "CREATE TABLE table_name_67 (swimsuit INTEGER, average VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT MAX(interview) FROM table_name_7 WHERE state = \"minnesota\" AND average > 7.901", "question": "Name the most interview for minnesota and average more than 7.901", "context": "CREATE TABLE table_name_7 (interview INTEGER, state VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(decile) FROM table_name_70 WHERE roll > 325 AND area = \"warkworth\"", "question": "Name the highest Decile for roll more than 325 and area of warkworth", "context": "CREATE TABLE table_name_70 (decile INTEGER, roll VARCHAR, area VARCHAR)"}, {"answer": "SELECT authority FROM table_name_22 WHERE roll = 54", "question": "Name the authority for roll of 54", "context": "CREATE TABLE table_name_22 (authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT score1 FROM table_name_69 WHERE match = 2", "question": "What was the score of Match 2?", "context": "CREATE TABLE table_name_69 (score1 VARCHAR, match VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE home_team = \"essendon\"", "question": "When did Essendon play at home?", "context": "CREATE TABLE table_name_15 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_12 WHERE away_team = \"north melbourne\"", "question": "What was Collingwood's score when they played against North Melbourne at home?", "context": "CREATE TABLE table_name_12 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_77 WHERE away_team = \"melbourne\"", "question": "What was the home team score at Melbourne's away match?", "context": "CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_60 WHERE home_team = \"hawthorn\"", "question": "How many people were in attendance at Hawthorn's home match?", "context": "CREATE TABLE table_name_60 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT capital FROM table_name_1 WHERE voivodeship_separate_city = \"bia\u0142ostockie\"", "question": "what is the capital with the Voivodeship Separate city of bia\u0142ostockie?", "context": "CREATE TABLE table_name_1 (capital VARCHAR, voivodeship_separate_city VARCHAR)"}, {"answer": "SELECT population_in_1000__1931_ FROM table_name_14 WHERE car_plates__since_1937_ = \"80-84\"", "question": "between car plates of 80-84 what is the population in 1000 in year 1931?", "context": "CREATE TABLE table_name_14 (population_in_1000__1931_ VARCHAR, car_plates__since_1937_ VARCHAR)"}, {"answer": "SELECT population_in_1000__1931_ FROM table_name_62 WHERE car_plates__since_1937_ = \"35-39\"", "question": "tell me the population in 1000(1931) that has car plates since 1937 of 35-39.", "context": "CREATE TABLE table_name_62 (population_in_1000__1931_ VARCHAR, car_plates__since_1937_ VARCHAR)"}, {"answer": "SELECT capital FROM table_name_7 WHERE area_in_1000km\u00b2__1930_ = \"20,4\"", "question": "tell me the name of the capital with an area of 20,4.", "context": "CREATE TABLE table_name_7 (capital VARCHAR, area_in_1000km\u00b2__1930_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE opponent = \"wales\"", "question": "When did they play against Wales?", "context": "CREATE TABLE table_name_41 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE date = \"29/09/07\"", "question": "What was the result on 29/09/07?", "context": "CREATE TABLE table_name_14 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_52 WHERE date = \"25/08/07\"", "question": "What was the competition on 25/08/07?", "context": "CREATE TABLE table_name_52 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(pos) FROM table_name_42 WHERE time = \"20:39.171\"", "question": "What position is associated with a Time of 20:39.171?", "context": "CREATE TABLE table_name_42 (pos INTEGER, time VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_76 WHERE best_time = \"01:46.367\"", "question": "How many points associated with a Best time of 01:46.367?", "context": "CREATE TABLE table_name_76 (points INTEGER, best_time VARCHAR)"}, {"answer": "SELECT COUNT(reg_gp) FROM table_name_44 WHERE rd__number = 7 AND player = \"ilya krikunov\" AND pick__number > 223", "question": "What is the total reg gp of Ilya Krikunov, who has a round of 7 and a pick number larger than 223?", "context": "CREATE TABLE table_name_44 (reg_gp VARCHAR, pick__number VARCHAR, rd__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pl_gp) FROM table_name_69 WHERE pick__number = 49 AND reg_gp < 0", "question": "What is the total PI GP of the player with a pick number 49 and a reg gp less than 0?", "context": "CREATE TABLE table_name_69 (pl_gp VARCHAR, pick__number VARCHAR, reg_gp VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_16 WHERE pl_gp < 0", "question": "What is the pick # of the player with a PI GP less than 0?", "context": "CREATE TABLE table_name_16 (pick__number INTEGER, pl_gp INTEGER)"}, {"answer": "SELECT SUM(reg_gp) FROM table_name_83 WHERE rd__number < 2", "question": "What is the reg gp of the player with a round number less than 2?", "context": "CREATE TABLE table_name_83 (reg_gp INTEGER, rd__number INTEGER)"}, {"answer": "SELECT AVG(pl_gp) FROM table_name_19 WHERE rd__number = 5 AND pick__number > 151", "question": "What is the average PI GP of the player from round 5 with a pick # larger than 151?", "context": "CREATE TABLE table_name_19 (pl_gp INTEGER, rd__number VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_57 WHERE declination___j2000__ = \"\u00b032\u203239\u2033\"", "question": "What constellation has a Declination ( J2000 ) of \u00b032\u203239\u2033?", "context": "CREATE TABLE table_name_57 (constellation VARCHAR, declination___j2000__ VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_15 WHERE league_from = \"elitserien (sweden)\"", "question": "What is the lowest pick from Elitserien (Sweden)?", "context": "CREATE TABLE table_name_15 (pick__number INTEGER, league_from VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_8 WHERE away_team = \"richmond\"", "question": "How many spectators were at the game where Richmond was the away team?", "context": "CREATE TABLE table_name_8 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT location FROM table_name_59 WHERE college_name = \"kanyakumari government medical college\"", "question": "What is the location of the kanyakumari government medical college?", "context": "CREATE TABLE table_name_59 (location VARCHAR, college_name VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_89 WHERE estd = \"1982\" AND location = \"coimbatore\"", "question": "Where is the coimbatore affilation that was established in 1982?", "context": "CREATE TABLE table_name_89 (affiliation VARCHAR, estd VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_16 WHERE district = \"salem district\"", "question": "What is the location of the salem district?", "context": "CREATE TABLE table_name_16 (location VARCHAR, district VARCHAR)"}, {"answer": "SELECT location FROM table_name_73 WHERE district = \"tiruchirappalli district\"", "question": "What is the location of the tiruchirappalli district?", "context": "CREATE TABLE table_name_73 (location VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_name_93 WHERE college_name = \"thanjavur medical college\"", "question": "What is the district where the thanjavur medical college is located?", "context": "CREATE TABLE table_name_93 (district VARCHAR, college_name VARCHAR)"}, {"answer": "SELECT location FROM table_name_42 WHERE college_name = \"coimbatore medical college\"", "question": "Where is the location of the coimbatore medical college?", "context": "CREATE TABLE table_name_42 (location VARCHAR, college_name VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_25 WHERE grid > 9 AND driver = \"rolf stommelen\"", "question": "What is the Time/Retired when the grid is larger than 9 and Rolf Stommelen is the driver?", "context": "CREATE TABLE table_name_25 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_76 WHERE time_retired = \"differential\"", "question": "What is the highest number of laps when the Time/Retired is differential?", "context": "CREATE TABLE table_name_76 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_82 WHERE laps < 14 AND grid < 16 AND time_retired = \"not classified\"", "question": "Who is the driver when the laps are smaller than 14, the grid is smaller than 16, and the Time/retired is not classified?", "context": "CREATE TABLE table_name_82 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_69 WHERE laps < 14 AND driver = \"reine wisell\"", "question": "What is the average grid when the laps are smaller than 14 and Reine Wisell is the driver?", "context": "CREATE TABLE table_name_69 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_72 WHERE engine = \"renault rs8 3.0 v10\" AND driver = \"damon hill\"", "question": "Who is the entrant with a driver Damon Hill and a Renault RS8 3.0 V10 engine?", "context": "CREATE TABLE table_name_72 (entrant VARCHAR, engine VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_2 WHERE rounds = \"all\" AND engine = \"peugeot a12 ev5 3.0 v10\"", "question": "Who is the constructor of the car with a Peugeot A12 EV5 3.0 V10 engine that competed in all rounds?", "context": "CREATE TABLE table_name_2 (constructor VARCHAR, rounds VARCHAR, engine VARCHAR)"}, {"answer": "SELECT engine FROM table_name_28 WHERE rounds = \"all\" AND entrant = \"scuderia ferrari\"", "question": "What kind of engine is in the car for Scuderia Ferrari that went all rounds?", "context": "CREATE TABLE table_name_28 (engine VARCHAR, rounds VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_50 WHERE chassis = \"196\"", "question": "Who is the constructor of the 196 chassis?", "context": "CREATE TABLE table_name_50 (constructor VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT home FROM table_name_81 WHERE visitor = \"kings\"", "question": "Name the home with visitor of kings", "context": "CREATE TABLE table_name_81 (home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_84 WHERE visitor = \"cavaliers\"", "question": "Name the total number of attendance when the cavaliers visited", "context": "CREATE TABLE table_name_84 (attendance VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_name_93 WHERE year = 2006", "question": "Which mixed doubles was featured in 2006?", "context": "CREATE TABLE table_name_93 (mixed_doubles VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_62 WHERE venue = \"corio oval\"", "question": "In the games at corio oval, what was the highest crowd?", "context": "CREATE TABLE table_name_62 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_29 WHERE venue = \"corio oval\"", "question": "In the match as corio oval, who was the away team?", "context": "CREATE TABLE table_name_29 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(communes) FROM table_name_83 WHERE cantons > 10 AND area__square_km_ = 1 OFFSET 589", "question": "How many communes associated with over 10 cantons and an area (Square km) of 1,589?", "context": "CREATE TABLE table_name_83 (communes INTEGER, cantons VARCHAR, area__square_km_ VARCHAR)"}, {"answer": "SELECT decision FROM table_name_83 WHERE date = \"january 12\"", "question": "Which team won the game on January 12?", "context": "CREATE TABLE table_name_83 (decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_70 WHERE away_team = \"geelong\"", "question": "Who was the home team against Geelong?", "context": "CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_70 WHERE venue = \"mcg\"", "question": "What was the attendance when the VFL played MCG?", "context": "CREATE TABLE table_name_70 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT security_forces FROM table_name_15 WHERE civilians = \"67\"", "question": "Name the security forces with civilians of 67", "context": "CREATE TABLE table_name_15 (security_forces VARCHAR, civilians VARCHAR)"}, {"answer": "SELECT insurgents FROM table_name_75 WHERE civilians = \"49\"", "question": "Name the insurgents for civilians being 49", "context": "CREATE TABLE table_name_75 (insurgents VARCHAR, civilians VARCHAR)"}, {"answer": "SELECT security_forces FROM table_name_81 WHERE civilians = \"67\"", "question": "Name the security forces with civilians being 67", "context": "CREATE TABLE table_name_81 (security_forces VARCHAR, civilians VARCHAR)"}, {"answer": "SELECT security_forces FROM table_name_82 WHERE year = \"2009\"", "question": "Name the security forces for 2009", "context": "CREATE TABLE table_name_82 (security_forces VARCHAR, year VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_85 WHERE chassis = \"p57 p61\"", "question": "What tyre has a chassis of p57 p61?", "context": "CREATE TABLE table_name_85 (tyre VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_94 WHERE grid = 1", "question": "what is the highest laps when the grid is 1?", "context": "CREATE TABLE table_name_94 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_92 WHERE swimming_time__pts_ = \"2:20.93 (1232)\"", "question": "How many athletes had a Swimming Time (pts) of 2:20.93 (1232)?", "context": "CREATE TABLE table_name_92 (total VARCHAR, swimming_time__pts_ VARCHAR)"}, {"answer": "SELECT riding_penalties__pts_ FROM table_name_83 WHERE swimming_time__pts_ = \"2:18.16 (1264)\"", "question": "What is the riding penaltie (pts) for the athlete that has a Swimming Time (pts) of 2:18.16 (1264)?", "context": "CREATE TABLE table_name_83 (riding_penalties__pts_ VARCHAR, swimming_time__pts_ VARCHAR)"}, {"answer": "SELECT owner_s_ FROM table_name_18 WHERE date = 1956 AND description = \"mark 1 pos\"", "question": "Which owner has a description of Mark 1 pos and is dated 1956?", "context": "CREATE TABLE table_name_18 (owner_s_ VARCHAR, date VARCHAR, description VARCHAR)"}, {"answer": "SELECT owner_s_ FROM table_name_30 WHERE date = 1953 AND description = \"mark 1 ck\"", "question": "Which owner has a description of Mark 1 CK and is dated 1953?", "context": "CREATE TABLE table_name_30 (owner_s_ VARCHAR, date VARCHAR, description VARCHAR)"}, {"answer": "SELECT name_athlete FROM table_name_97 WHERE semi = \"1:43.79\"", "question": "Who was the athlete who had SEMI of 1:43.79?", "context": "CREATE TABLE table_name_97 (name_athlete VARCHAR, semi VARCHAR)"}, {"answer": "SELECT final FROM table_name_1 WHERE lane = 4", "question": "What were the final time for the swimmer on lane 4?", "context": "CREATE TABLE table_name_1 (final VARCHAR, lane VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_21 WHERE stadium = \"lambeau field\"", "question": "What is the final score of the game at lambeau field?", "context": "CREATE TABLE table_name_21 (final_score VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_73 WHERE candidate_name = \"aliyya qadi\" AND votes < 1421", "question": "What rank is aliyya qadi with less than 1421 votes?", "context": "CREATE TABLE table_name_73 (rank INTEGER, candidate_name VARCHAR, votes VARCHAR)"}, {"answer": "SELECT candidate_name FROM table_name_61 WHERE votes > 279 AND rank < 50 AND gender = \"\u2640\" AND list = \"al-ahd\"", "question": "Which candidate has more than 279 votes, rank less than 50, is \u2640 and al-ahd?", "context": "CREATE TABLE table_name_61 (candidate_name VARCHAR, list VARCHAR, gender VARCHAR, votes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_48 WHERE category = \"favorite male replacement\" AND nominee = \"ben vereen\"", "question": "What is the first year that the Favorite Male Replacement category had Ben Vereen as a nominee?", "context": "CREATE TABLE table_name_48 (year INTEGER, category VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT award_ceremony FROM table_name_52 WHERE category = \"outstanding actress in a musical\" AND nominee = \"kristin chenoweth\"", "question": "What year was Kristin Chenoweth nominated in the category of outstanding actress in a musical?", "context": "CREATE TABLE table_name_52 (award_ceremony VARCHAR, category VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_87 WHERE result = \"nominated\" AND category = \"favorite male replacement\" AND nominee = \"aaron tveit\"", "question": "What year was Aaron Tveit nominated in the Favorite Male Replacement category?", "context": "CREATE TABLE table_name_87 (year INTEGER, nominee VARCHAR, result VARCHAR, category VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_39 WHERE placings = 58", "question": "Tell me the sum of rank for placings of 58", "context": "CREATE TABLE table_name_39 (rank INTEGER, placings VARCHAR)"}, {"answer": "SELECT MIN(placings) FROM table_name_30 WHERE nation = \"united kingdom\" AND rank < 13", "question": "Tell me the lowest placings for United Kingdom and rank less than 13", "context": "CREATE TABLE table_name_30 (placings INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_75 WHERE placings > 123 AND points > 88.06", "question": "I want to know the highest rank with placings more than 123 and points greater than 88.06", "context": "CREATE TABLE table_name_75 (rank INTEGER, placings VARCHAR, points VARCHAR)"}, {"answer": "SELECT driver FROM table_name_65 WHERE entrant = \"scuderia ambrosiana\"", "question": "Who is the drive for an Entrant of Scuderia Ambrosiana?", "context": "CREATE TABLE table_name_65 (driver VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_72 WHERE entrant = \"automobiles talbot-darracq\" AND driver = \"pierre levegh\"", "question": "Which of the Rounds has an Entrant of automobiles Talbot-Darracq, and Pierre Levegh as the driver?", "context": "CREATE TABLE table_name_72 (rounds VARCHAR, entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_80 WHERE entrant = \"enrico plat\u00e9\"", "question": "Who is the driver for the Entract of Enrico Plat\u00e9?", "context": "CREATE TABLE table_name_80 (driver VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_79 WHERE driver = \"luigi fagioli\"", "question": "Which of the entrants had Luigi Fagioli as a driver?", "context": "CREATE TABLE table_name_79 (entrant VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_94 WHERE constructor = \"era\" AND entrant = \"t.a.s.o. mathieson\"", "question": "Who is the driver whose Constructor was Era, and whose entrant was T.A.S.O. Mathieson?", "context": "CREATE TABLE table_name_94 (driver VARCHAR, constructor VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_15 WHERE rounds = \"7\" AND entrant = \"ecurie rosier\"", "question": "Which chassis had Rounds of 7, and an Entrant of Ecurie Rosier?", "context": "CREATE TABLE table_name_15 (chassis VARCHAR, rounds VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_79 WHERE winning_driver = \"riccardo patrese\"", "question": "Who is the winner constructor with driver riccardo patrese?", "context": "CREATE TABLE table_name_79 (winning_constructor VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_42 WHERE date = \"5 april\"", "question": "What is the highest round on 5 april?", "context": "CREATE TABLE table_name_42 (round INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE location = \"hermanos rodr\u00edguez\"", "question": "Which date was hermanos rodr\u00edguez the location?", "context": "CREATE TABLE table_name_37 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT record FROM table_name_92 WHERE date = \"may 3\"", "question": "Name the record for may 3", "context": "CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_68 WHERE date = \"may 1\"", "question": "Name the total number in attendance for may 1", "context": "CREATE TABLE table_name_68 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_20 WHERE date = \"may 29\"", "question": "Name the loss on may 29", "context": "CREATE TABLE table_name_20 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(cuts_made) FROM table_name_62 WHERE wins < 1 AND top_5 = 1 AND top_10 > 4", "question": "How many cuts were made when there weren't any wins but had a top-5 of 1 and a top 10 larger than 4?", "context": "CREATE TABLE table_name_62 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT college FROM table_name_36 WHERE player = \"shabazz muhammad\"", "question": "Which college has a Player of shabazz muhammad?", "context": "CREATE TABLE table_name_36 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT height FROM table_name_11 WHERE player = \"nerlens noel\"", "question": "How tall is nerlens noel?", "context": "CREATE TABLE table_name_11 (height VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_47 WHERE hometown = \"flower mound, tx\"", "question": "Who is from flower mound, tx?", "context": "CREATE TABLE table_name_47 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_58 WHERE player = \"shabazz muhammad\"", "question": "Where is shabazz muhammad from?", "context": "CREATE TABLE table_name_58 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_35 WHERE date = \"july 21\"", "question": "What was the opponent for july 21?", "context": "CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_95 WHERE date = \"july 24\"", "question": "What was the record on july 24?", "context": "CREATE TABLE table_name_95 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_77 WHERE grid < 15 AND laps = 77 AND time_retired = \"+ 0.771\"", "question": "Who constructed the car with a grid under 15, 77 laps, and a Time/Retired of + 0.771?", "context": "CREATE TABLE table_name_77 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_29 WHERE laps > 74 AND driver = \"damon hill\"", "question": "What is the average grid for damon hill with over 74 laps?", "context": "CREATE TABLE table_name_29 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT pos FROM table_name_81 WHERE school_club_team = \"jacksonville\"", "question": "Which position has a School/club team of jacksonville?", "context": "CREATE TABLE table_name_81 (pos VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_21 WHERE pick = 13", "question": "How many rounds have a Pick of 13?", "context": "CREATE TABLE table_name_21 (round INTEGER, pick VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_91 WHERE school_club_team = \"pan american\"", "question": "How many rounds have School/club team of pan american?", "context": "CREATE TABLE table_name_91 (round INTEGER, school_club_team VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_41 WHERE points = \"25\"", "question": "What is the chassis when there is 25 points?", "context": "CREATE TABLE table_name_41 (chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_3 WHERE year < 1979 AND chassis = \"ferrari 312b2\"", "question": "How many points were there before 1979 with a ferrari 312b2 chassis?", "context": "CREATE TABLE table_name_3 (points VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT year FROM table_name_3 WHERE points = \"29 (32)\"", "question": "What year were there 29 (32) points?", "context": "CREATE TABLE table_name_3 (year VARCHAR, points VARCHAR)"}, {"answer": "SELECT result FROM table_name_87 WHERE round = \"4 leg 2\"", "question": "What result occurs when the round is 4 leg 2?", "context": "CREATE TABLE table_name_87 (result VARCHAR, round VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_98 WHERE home_team = \"fitzroy\"", "question": "What did fitzroy score at their home game?", "context": "CREATE TABLE table_name_98 (home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_16 WHERE venue = \"western oval\"", "question": "Which away team played at western oval?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT surface FROM table_name_83 WHERE partner = \"yew-ming si\"", "question": "Which surface had Yew-Ming Si as a partner?", "context": "CREATE TABLE table_name_83 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT result FROM table_name_73 WHERE rank = 1", "question": "What was the result of rank 1?", "context": "CREATE TABLE table_name_73 (result VARCHAR, rank VARCHAR)"}, {"answer": "SELECT type FROM table_name_70 WHERE date = \"1 june\"", "question": "What type has a date of 1 june?", "context": "CREATE TABLE table_name_70 (type VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE type = \"hilly stage\"", "question": "What was the date with a hilly stage?", "context": "CREATE TABLE table_name_16 (date VARCHAR, type VARCHAR)"}, {"answer": "SELECT winner FROM table_name_21 WHERE date = \"18 may\"", "question": "What is the name of the winner on 18 may?", "context": "CREATE TABLE table_name_21 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE course = \"moena to aprica\"", "question": "What date was moena to aprica the course?", "context": "CREATE TABLE table_name_13 (date VARCHAR, course VARCHAR)"}, {"answer": "SELECT winner FROM table_name_35 WHERE type = \"plain stage\" AND course = \"nola to sora\"", "question": "What is the name of the winner with a type of plain stage and a Course of nola to sora?", "context": "CREATE TABLE table_name_35 (winner VARCHAR, type VARCHAR, course VARCHAR)"}, {"answer": "SELECT text_symbol FROM table_name_68 WHERE border = \"red\" AND type_of_sign = \"warning\"", "question": "Which sign has a red border and a warning sign?", "context": "CREATE TABLE table_name_68 (text_symbol VARCHAR, border VARCHAR, type_of_sign VARCHAR)"}, {"answer": "SELECT border FROM table_name_86 WHERE background_colour = \"yellow\" AND shape = \"triangular\"", "question": "Which sign had a yellow background and a triangular shape?", "context": "CREATE TABLE table_name_86 (border VARCHAR, background_colour VARCHAR, shape VARCHAR)"}, {"answer": "SELECT text_symbol FROM table_name_42 WHERE border = \"red\"", "question": "Which sign has a red border?", "context": "CREATE TABLE table_name_42 (text_symbol VARCHAR, border VARCHAR)"}, {"answer": "SELECT background_colour FROM table_name_43 WHERE type_of_sign = \"mandatory instructions\"", "question": "Which color is the background of the mandatory instructions?", "context": "CREATE TABLE table_name_43 (background_colour VARCHAR, type_of_sign VARCHAR)"}, {"answer": "SELECT background_colour FROM table_name_25 WHERE border = \"white\" AND type_of_sign = \"information\"", "question": "What is the color of the background of the white border and sign of information?", "context": "CREATE TABLE table_name_25 (background_colour VARCHAR, border VARCHAR, type_of_sign VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_56 WHERE nation = \"italy\" AND bronze > 1", "question": "What is the average total of Italy and has a bronze larger than 1?", "context": "CREATE TABLE table_name_56 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_8 WHERE nation = \"russia\" AND rank > 1", "question": "What amount of Gold does Russia have and have a rank larger than 1?", "context": "CREATE TABLE table_name_8 (gold INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_83 WHERE total = 1 AND silver < 0", "question": "What is the sum of the ranks with a total of 1 and silver less than 0.", "context": "CREATE TABLE table_name_83 (rank INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT player FROM table_name_69 WHERE position = \"linebacker\" AND pick > 28", "question": "Which Player is linebacker and has a pick larger than 28?", "context": "CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_99 WHERE player = \"melvin johnson\"", "question": "What was the lowest round that Melvin Johnson played?", "context": "CREATE TABLE table_name_99 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_96 WHERE semi_finalist__number1 = \"south florida\"", "question": "Who was the runner-up at the South Florida Semi-Finalist #1?", "context": "CREATE TABLE table_name_96 (runner_up VARCHAR, semi_finalist__number1 VARCHAR)"}, {"answer": "SELECT champion FROM table_name_46 WHERE location = \"snellville, ga\" AND year = \"2006\"", "question": "Who was the Champion in Snellville, GA in 2006?", "context": "CREATE TABLE table_name_46 (champion VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT champion FROM table_name_53 WHERE runner_up = \"elon\"", "question": "Who won when Elon was the runner-up?", "context": "CREATE TABLE table_name_53 (champion VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT year FROM table_name_9 WHERE score = \"8-5\"", "question": "What year saw a score of 8-5?", "context": "CREATE TABLE table_name_9 (year VARCHAR, score VARCHAR)"}, {"answer": "SELECT semi_finalist__number2 FROM table_name_59 WHERE year = \"2007\"", "question": "Who was the Semi-Finalist #2 in 2007?", "context": "CREATE TABLE table_name_59 (semi_finalist__number2 VARCHAR, year VARCHAR)"}, {"answer": "SELECT semi_finalist__number2 FROM table_name_26 WHERE year = \"2001\"", "question": "Who was the Semi-Finalist #2 in 2001?", "context": "CREATE TABLE table_name_26 (semi_finalist__number2 VARCHAR, year VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_70 WHERE location = \"arizona\"", "question": "What tournament is in Arizona?", "context": "CREATE TABLE table_name_70 (tournament VARCHAR, location VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_60 WHERE crowd > 21 OFFSET 000", "question": "Which away team had a crowd bigger than 21,000?", "context": "CREATE TABLE table_name_60 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT AVG(rank) FROM table_name_88 WHERE points < \"166\".96 AND places = \"166\"", "question": "What is the rank for points less than 166.96, and a Places of 166?", "context": "CREATE TABLE table_name_88 (rank INTEGER, points VARCHAR, places VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_21 WHERE points > 120.44 AND nation = \"east germany\" AND sp + fs = 3", "question": "What is the rank for more than 120.44 points in East Germany and a SP+FS of 3?", "context": "CREATE TABLE table_name_21 (rank VARCHAR, points VARCHAR, nation VARCHAR, sp VARCHAR, fs VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_94 WHERE places = \"233\" AND sp + fs < 27", "question": "What is the rank when 233 shows for places and SP+FS smaller than 27?", "context": "CREATE TABLE table_name_94 (rank VARCHAR, places VARCHAR, sp VARCHAR, fs VARCHAR)"}, {"answer": "SELECT AVG(sp) + fs FROM table_name_14 WHERE name = \"denise biellmann\" AND rank > 5", "question": "What is the average SP+FS for Denise Biellmann, and a Rank larger than 5?", "context": "CREATE TABLE table_name_14 (fs VARCHAR, sp INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_84 WHERE nation = \"east germany\" AND places = \"88\"", "question": "What is the number of points for east germany, and a Places of 88?", "context": "CREATE TABLE table_name_84 (points INTEGER, nation VARCHAR, places VARCHAR)"}, {"answer": "SELECT years FROM table_name_82 WHERE engine = \"5.7l hemi v8\"", "question": "what is the years for engin 5.7l hemi v8?", "context": "CREATE TABLE table_name_82 (years VARCHAR, engine VARCHAR)"}, {"answer": "SELECT years FROM table_name_51 WHERE notes = \"laredo, limited, overland\" AND engine = \"5.7l hemi v8\"", "question": "what is the years when the notes is laredo, limited, overland and the engine is 5.7l hemi v8?", "context": "CREATE TABLE table_name_51 (years VARCHAR, notes VARCHAR, engine VARCHAR)"}, {"answer": "SELECT torque FROM table_name_69 WHERE notes = \"laredo, limited, overland\" AND engine = \"5.7l hemi v8\"", "question": "what is the torque when the notes are laredo, limited, overland and the engine is 5.7l hemi v8?", "context": "CREATE TABLE table_name_69 (torque VARCHAR, notes VARCHAR, engine VARCHAR)"}, {"answer": "SELECT driver FROM table_name_21 WHERE constructor = \"ferrari\" AND laps = 57", "question": "Who drove the ferrari that went 57 laps?", "context": "CREATE TABLE table_name_21 (driver VARCHAR, constructor VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(place) FROM table_name_7 WHERE name = \"r. wenzel\" AND until > 1934", "question": "What place did R. Wenzel, who was active after 1934, have?", "context": "CREATE TABLE table_name_7 (place INTEGER, name VARCHAR, until VARCHAR)"}, {"answer": "SELECT time FROM table_name_75 WHERE round = \"n/a\" AND opponent = \"mikhail ilyukhin\"", "question": "What's the time for a round of n/a when the opponent is mikhail ilyukhin?", "context": "CREATE TABLE table_name_75 (time VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_54 WHERE grand_prix = \"portuguese grand prix\"", "question": "What is the pole position of the Portuguese Grand Prix?", "context": "CREATE TABLE table_name_54 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_93 WHERE round = 1", "question": "What is the pole position of the grand prix with 1 round?", "context": "CREATE TABLE table_name_93 (pole_position VARCHAR, round VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_41 WHERE grand_prix = \"hungarian grand prix\"", "question": "What is the pole position of the Hungarian Grand Prix?", "context": "CREATE TABLE table_name_41 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_27 WHERE grand_prix = \"belgian grand prix\"", "question": "What is the pole position of the Belgian Grand Prix?", "context": "CREATE TABLE table_name_27 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_name_50 WHERE fastest_lap = \"gerhard berger\" AND pole_position = \"michael schumacher\"", "question": "What is the grand prix with Gerhard Berger as the fastest lap and Michael Schumacher as the pole position?", "context": "CREATE TABLE table_name_50 (grand_prix VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT declination___j2000__ FROM table_name_55 WHERE constellation = \"ophiuchus\" AND apparent_magnitude < 8.6 AND right_ascension___j2000__ = \"16h47m14.5s\"", "question": "Tell me the declination for consellaion of ophiuchus and apparent magnitude less than 8.6 with right ascension of 16h47m14.5s", "context": "CREATE TABLE table_name_55 (declination___j2000__ VARCHAR, right_ascension___j2000__ VARCHAR, constellation VARCHAR, apparent_magnitude VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_2 WHERE object_type = \"globular cluster\" AND apparent_magnitude = 8.5 AND ngc_number = 6273", "question": "Tell me the right ascensuon for object type of globular cluster and apparent magnitude of 8.5 and NGC number of 6273", "context": "CREATE TABLE table_name_2 (right_ascension___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR, apparent_magnitude VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE home_team = \"st kilda\"", "question": "When was the game played where St Kilda was the home team?", "context": "CREATE TABLE table_name_4 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_65 WHERE away_team = \"melbourne\"", "question": "What was the home team score with an away team of Melbourne?", "context": "CREATE TABLE table_name_65 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_56 WHERE home_team = \"footscray\"", "question": "Which away team played the home team of Footscray?", "context": "CREATE TABLE table_name_56 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT age_on_leaving FROM table_name_43 WHERE political_party = \"conservative\" AND left_house = \"2001\"", "question": "How old was the conservative party member that left the house in 2001?", "context": "CREATE TABLE table_name_43 (age_on_leaving VARCHAR, political_party VARCHAR, left_house VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_21 WHERE points > 14 AND arena = \"staples center\"", "question": "What was the lowest Attendance for the Staples Center Arena when the Points were over 14?", "context": "CREATE TABLE table_name_21 (attendance INTEGER, points VARCHAR, arena VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_40 WHERE date = \"12 january 2008\"", "question": "Name the leading scorer for 12 january 2008", "context": "CREATE TABLE table_name_40 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_4 WHERE date = \"21 january 2008\"", "question": "Name the record for 21 january 2008", "context": "CREATE TABLE table_name_4 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE away_team = \"melbourne\"", "question": "what is the date when the away team is melbourne?", "context": "CREATE TABLE table_name_48 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_57 WHERE venue = \"glenferrie oval\"", "question": "What is the score for the home team for the venue glenferrie oval?", "context": "CREATE TABLE table_name_57 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_5 WHERE away_team = \"south melbourne\"", "question": "What was South Melbourne's score when they played as the away team?", "context": "CREATE TABLE table_name_5 (away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_31 WHERE home_team = \"north melbourne\"", "question": "What was the attendance for the North Melbourne's home game?", "context": "CREATE TABLE table_name_31 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_83 WHERE home_team = \"st kilda\"", "question": "What is the name of the venue where home team st kilda played?", "context": "CREATE TABLE table_name_83 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_60 WHERE away_team = \"carlton\"", "question": "What is the home team score that played away team carlton?", "context": "CREATE TABLE table_name_60 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT ratings FROM table_name_86 WHERE year < 2004 AND lap_by_lap = \"mike joy\"", "question": "When the Year is smaller than 2004, and Mike Joy is the Lap-by-lap, what are the Ratings?", "context": "CREATE TABLE table_name_86 (ratings VARCHAR, year VARCHAR, lap_by_lap VARCHAR)"}, {"answer": "SELECT network FROM table_name_90 WHERE lap_by_lap = \"bill weber\"", "question": "Which Network has Bill Weber for the Lap-by-lap?", "context": "CREATE TABLE table_name_90 (network VARCHAR, lap_by_lap VARCHAR)"}, {"answer": "SELECT pre_race_host FROM table_name_87 WHERE lap_by_lap = \"mike joy\" AND year = 2005", "question": "Who was the Pre-Race Host when Mike Joy was the Lap-by-lap in the Year 2005?", "context": "CREATE TABLE table_name_87 (pre_race_host VARCHAR, lap_by_lap VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_7 WHERE ratings = \"10.9/23\"", "question": "How many Years have Ratings of 10.9/23?", "context": "CREATE TABLE table_name_7 (year VARCHAR, ratings VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_57 WHERE venue = \"lake oval\"", "question": "What is the home team of lake oval's score?", "context": "CREATE TABLE table_name_57 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE venue = \"victoria park\"", "question": "When was victoria park used as a venue?", "context": "CREATE TABLE table_name_18 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE away_team = \"fitzroy\"", "question": "Which date has an Away team of fitzroy?", "context": "CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_96 WHERE home_team = \"carlton\"", "question": "What is the largest crowd for a Home team of carlton?", "context": "CREATE TABLE table_name_96 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_42 WHERE away_team = \"melbourne\"", "question": "When the Away team is melbourne, what's the lowest Crowd attended?", "context": "CREATE TABLE table_name_42 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_99 WHERE away_team = \"essendon\"", "question": "When the Away team is essendon, what's the Home team score?", "context": "CREATE TABLE table_name_99 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE venue = \"brunswick street oval\"", "question": "If the Venue is brunswick street oval, what date was the game played ?", "context": "CREATE TABLE table_name_81 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT first FROM table_name_39 WHERE country = \"trinidad and tobago\" AND last = \"hutchinson\" AND year < 2004", "question": "Name the first for countries of trinidad and tobago for hutchinson for years before 2004", "context": "CREATE TABLE table_name_39 (first VARCHAR, year VARCHAR, country VARCHAR, last VARCHAR)"}, {"answer": "SELECT sport FROM table_name_40 WHERE country = \"canada\" AND year = 2004", "question": "Name the sport for canada in 2004", "context": "CREATE TABLE table_name_40 (sport VARCHAR, country VARCHAR, year VARCHAR)"}, {"answer": "SELECT last FROM table_name_95 WHERE year < 2000 AND sport = \"softball\"", "question": "Name the last for softball before 2000", "context": "CREATE TABLE table_name_95 (last VARCHAR, year VARCHAR, sport VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_68 WHERE sport = \"swimming\" AND first = \"mike\"", "question": "Name the sum of year for swimming and first of mike", "context": "CREATE TABLE table_name_68 (year INTEGER, sport VARCHAR, first VARCHAR)"}, {"answer": "SELECT sport FROM table_name_44 WHERE country = \"puerto rico\" AND year = 2000", "question": "Name the sport for puerto rico and year of 2000", "context": "CREATE TABLE table_name_44 (sport VARCHAR, country VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_67 WHERE team = \"discovery channel\"", "question": "Cumulative point total for all teams playing on the Discovery Channel?", "context": "CREATE TABLE table_name_67 (points VARCHAR, team VARCHAR)"}, {"answer": "SELECT name FROM table_name_44 WHERE nationality = \"belgium\"", "question": "Which player is from Belgium?", "context": "CREATE TABLE table_name_44 (name VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_42 WHERE home = \"kings\"", "question": "Who was the visiting team that played against the Kings?", "context": "CREATE TABLE table_name_42 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT player FROM table_name_25 WHERE round > 5 AND position = \"c\"", "question": "Tell me the player for round more than 5 and position of c", "context": "CREATE TABLE table_name_25 (player VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_70 WHERE player = \"carl hagelin\"", "question": "Tell me the college for carl hagelin", "context": "CREATE TABLE table_name_70 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_88 WHERE points = 0 AND chassis = \"toleman tg181\"", "question": "Which year has a total of 0 points and a chassis of Toleman tg181?", "context": "CREATE TABLE table_name_88 (year INTEGER, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_20 WHERE engine = \"renault ef15 1.5 v6 t\" AND points > 5", "question": "What is the latest year that has more than 5 points and a renault ef15 1.5 v6 t engine?", "context": "CREATE TABLE table_name_20 (year INTEGER, engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_36 WHERE chassis = \"toleman tg183\"", "question": "Which year had a toleman tg183 chassis?", "context": "CREATE TABLE table_name_36 (year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT time FROM table_name_13 WHERE rider = \"tony myres\"", "question": "What is the time for tony myres?", "context": "CREATE TABLE table_name_13 (time VARCHAR, rider VARCHAR)"}, {"answer": "SELECT speed FROM table_name_41 WHERE rider = \"andy reynolds\"", "question": "Name the speed for andy reynolds", "context": "CREATE TABLE table_name_41 (speed VARCHAR, rider VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_54 WHERE team = \"348cc petty manx\"", "question": "Name the total number of rank for 348cc petty manx", "context": "CREATE TABLE table_name_54 (rank VARCHAR, team VARCHAR)"}, {"answer": "SELECT speed FROM table_name_13 WHERE time = \"1:36.46.93\"", "question": "Name the speed for 1:36.46.93", "context": "CREATE TABLE table_name_13 (speed VARCHAR, time VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_54 WHERE away_team = \"melbourne\"", "question": "What is the away team score of Melbourne?", "context": "CREATE TABLE table_name_54 (away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_86 WHERE away_team = \"south melbourne\"", "question": "What is the away team score for South Melbourne?", "context": "CREATE TABLE table_name_86 (away_team VARCHAR)"}, {"answer": "SELECT prime_mover FROM table_name_87 WHERE model = \"fm cfa-16-4\"", "question": "What is Prime Mover of Model FM CFA-16-4?", "context": "CREATE TABLE table_name_87 (prime_mover VARCHAR, model VARCHAR)"}, {"answer": "SELECT MAX(purse__) AS $__ FROM table_name_80 WHERE location = \"illinois\"", "question": "what was the purse ($) in illinois?", "context": "CREATE TABLE table_name_80 (purse__ INTEGER, location VARCHAR)"}, {"answer": "SELECT winner FROM table_name_21 WHERE score = \"199 (-14)\" AND date = \"oct 31\"", "question": "who won with a score of 199 (-14) on oct 31?", "context": "CREATE TABLE table_name_21 (winner VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_6 WHERE city = \"santiago de compostela\"", "question": "How many years did he play in santiago de compostela?", "context": "CREATE TABLE table_name_6 (year INTEGER, city VARCHAR)"}, {"answer": "SELECT SUM(finale) FROM table_name_64 WHERE chinese_title = \"\u5973\u4eba\u5514\u6613\u505a\"", "question": "What is the Total Finale of \u5973\u4eba\u5514\u6613\u505a?", "context": "CREATE TABLE table_name_64 (finale INTEGER, chinese_title VARCHAR)"}, {"answer": "SELECT MIN(premiere) FROM table_name_25 WHERE peak > 35 AND rank = 10 AND finale > 33", "question": "What is the lowest Premiere peaking at more than 35 with a Rank of 10 and Finale greater than 33?", "context": "CREATE TABLE table_name_25 (premiere INTEGER, finale VARCHAR, peak VARCHAR, rank VARCHAR)"}, {"answer": "SELECT chinese_title FROM table_name_60 WHERE hk_viewers = \"2.07 million\" AND premiere = 32", "question": "What is the Chinese Title Premiering 32 with 2.07 million HK viewers?", "context": "CREATE TABLE table_name_60 (chinese_title VARCHAR, hk_viewers VARCHAR, premiere VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_70 WHERE english_title = \"men in pain\" AND finale < 33", "question": "What is the Average of Men in Pain with a Finale of less than 33?", "context": "CREATE TABLE table_name_70 (average INTEGER, english_title VARCHAR, finale VARCHAR)"}, {"answer": "SELECT chinese_title FROM table_name_3 WHERE average = 32 AND peak < 38 AND rank = 7", "question": "What Chinese Title Ranking #7 has an Average of 32 and Peak less than 38?", "context": "CREATE TABLE table_name_3 (chinese_title VARCHAR, rank VARCHAR, average VARCHAR, peak VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_9 WHERE venue = \"corio oval\"", "question": "What is the average crowd size for corio oval?", "context": "CREATE TABLE table_name_9 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_32 WHERE venue = \"brunswick street oval\"", "question": "What is the average crowd size for Brunswick street oval?", "context": "CREATE TABLE table_name_32 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE year > 1992 AND location = \"murcia\" AND score = \"0-3\"", "question": "What day did the team play in murcia with a score of 0-3 after 1992?", "context": "CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR, year VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_96 WHERE competition = \"europe/africa zone, group i, round robin\" AND result = \"win\" AND year < 1998", "question": "What location did the team win before 1998 in the europe/africa zone, group i, round robin?", "context": "CREATE TABLE table_name_96 (location VARCHAR, year VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE score = \"1-2\" AND year = 1994", "question": "What day did they record a score of 1-2 in 1994?", "context": "CREATE TABLE table_name_55 (date VARCHAR, score VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(matches) FROM table_name_91 WHERE country = \"austria germany\" AND rank < 5", "question": "When the country is austria germany and the rank is kept under 5, what's the average number of matches played?", "context": "CREATE TABLE table_name_91 (matches INTEGER, country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT country FROM table_name_85 WHERE name = \"pele\"", "question": "Which country does the player pele belong to?", "context": "CREATE TABLE table_name_85 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_94 WHERE attendance = 42 OFFSET 707", "question": "What is the earliest game that had 42,707 attending?", "context": "CREATE TABLE table_name_94 (game INTEGER, attendance VARCHAR)"}, {"answer": "SELECT SUM(figures) FROM table_name_13 WHERE total < 117.78", "question": "What is the sum of the figure skating scores whose total is less than 117.78?", "context": "CREATE TABLE table_name_13 (figures INTEGER, total INTEGER)"}, {"answer": "SELECT MIN(total) FROM table_name_81 WHERE nation = \"west germany\" AND rank = 20 AND figures < 74.85", "question": "What is the lowest total score among skaters from West Germany with a rank of 20 and a figure skating score less than 74.85?", "context": "CREATE TABLE table_name_81 (total INTEGER, figures VARCHAR, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT placings FROM table_name_72 WHERE total > 131.26 AND name = \"jacqueline du bief\"", "question": "How many placings did Jacqueline du Bief earn where her total score is greater than 131.26?", "context": "CREATE TABLE table_name_72 (placings VARCHAR, total VARCHAR, name VARCHAR)"}, {"answer": "SELECT placings FROM table_name_34 WHERE free < 524.3 AND total < 1170.1 AND name = \"per cock-clausen\"", "question": "Can you tell me the Placings that hasthe Free smaller than 524.3, and the Total smaller than 1170.1, and the Name of per cock-clausen?", "context": "CREATE TABLE table_name_34 (placings VARCHAR, name VARCHAR, free VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(figures) FROM table_name_63 WHERE placings = 34 AND total > 1247.51", "question": "Can you tell me the average Figures that has the Placings of 34, and the Total larger than 1247.51?", "context": "CREATE TABLE table_name_63 (figures INTEGER, placings VARCHAR, total VARCHAR)"}, {"answer": "SELECT result FROM table_name_99 WHERE opponent = \"columbus destroyers\"", "question": "What is the result where the opponent is Columbus Destroyers?", "context": "CREATE TABLE table_name_99 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE home_away_game = \"away\" AND week = 8", "question": "What is the date of the away game in week 8?", "context": "CREATE TABLE table_name_2 (date VARCHAR, home_away_game VARCHAR, week VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_name_24 WHERE fastest_lap = \"gerhard berger\" AND pole_position = \"jacques villeneuve\"", "question": "Which grand prix had gerhard berger in his fastest lap and a jacques villeneuve pole position?", "context": "CREATE TABLE table_name_24 (grand_prix VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT 2003 AS _result FROM table_name_97 WHERE council = \"falkirk\"", "question": "What's the 2003 result for the falkirk council?", "context": "CREATE TABLE table_name_97 (council VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_70 WHERE manner_of_departure = \"fired\" AND replaced_by = \"albert cartier\"", "question": "On which date was the manager fired and replaced by Albert Cartier?", "context": "CREATE TABLE table_name_70 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_70 WHERE team = \"anderlecht\"", "question": "What was the manner of departure for the team Anderlecht?", "context": "CREATE TABLE table_name_70 (manner_of_departure VARCHAR, team VARCHAR)"}, {"answer": "SELECT manner_of_departure FROM table_name_52 WHERE date_of_appointment = \"27 december 2007\"", "question": "What was the manner of depature when the date of appointment was 27 December 2007?", "context": "CREATE TABLE table_name_52 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_46 WHERE team = \"brussels\" AND date_of_vacancy = \"22 december 2007\"", "question": "Who was the replacement for the Brussels team with a date of vacancy of 22 December 2007?", "context": "CREATE TABLE table_name_46 (replaced_by VARCHAR, team VARCHAR, date_of_vacancy VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_9 WHERE manner_of_departure = \"fired\" AND replaced_by = \"albert cartier\"", "question": "What was the date of vacancy where the replacement was Albert Cartier and the manager was fired?", "context": "CREATE TABLE table_name_9 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT tallangatta_dfl FROM table_name_49 WHERE against > 1013 AND losses > 2", "question": "What is the Tallangatta DFL losses greater than 2 and an against greater than 1013", "context": "CREATE TABLE table_name_49 (tallangatta_dfl VARCHAR, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(byes) FROM table_name_5 WHERE against > 1479 AND wins > 5 AND draws < 0", "question": "What are the average byes that are greater than 1479, wins greater than 5 and 0 draws?", "context": "CREATE TABLE table_name_5 (byes INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_84 WHERE rank > 3 AND floors = 28", "question": "Tell me the average year for rank more than 3 and 28 floors", "context": "CREATE TABLE table_name_84 (year INTEGER, rank VARCHAR, floors VARCHAR)"}, {"answer": "SELECT name FROM table_name_75 WHERE rank < 6 AND year > 1974", "question": "I want the name for rank less than 6 and year more than 1974", "context": "CREATE TABLE table_name_75 (name VARCHAR, rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_80 WHERE total > 4 AND nation = \"great britain\"", "question": "What is the average rank of Great Britain when their total is over 4?", "context": "CREATE TABLE table_name_80 (rank INTEGER, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_63 WHERE nation = \"france\" AND rank > 14", "question": "What is the total number of Silvers held by France when their rank was over 14?", "context": "CREATE TABLE table_name_63 (silver VARCHAR, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_76 WHERE venue = \"princes park\"", "question": "Who was the home team at the game held at Princes Park?", "context": "CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_39 WHERE away_team = \"hawthorn\"", "question": "Who was the home team when Hawthorn was the away team?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT record FROM table_name_21 WHERE loss = \"hernandez (3\u20135)\"", "question": "What was the Rockies record at their game that had a loss of Hernandez (3\u20135)?", "context": "CREATE TABLE table_name_21 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT engine FROM table_name_30 WHERE tyres = \"g\" AND driver = \"elio de angelis\"", "question": "What engine has g tyres and is driven by elio de angelis?", "context": "CREATE TABLE table_name_30 (engine VARCHAR, tyres VARCHAR, driver VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_8 WHERE driver = \"elio de angelis\"", "question": "What rounds does elio de angelis drive?", "context": "CREATE TABLE table_name_8 (rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_93 WHERE chassis = \"fw06 fw07\" AND driver = \"alan jones\"", "question": "Who is the constructor for driver alan jones using a chassis of fw06 fw07?", "context": "CREATE TABLE table_name_93 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine FROM table_name_94 WHERE driver = \"james hunt\"", "question": "What engine does driver james hunt have?", "context": "CREATE TABLE table_name_94 (engine VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine FROM table_name_1 WHERE rounds = \"5-6\"", "question": "What's the engine used for rounds 5-6?", "context": "CREATE TABLE table_name_1 (engine VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_41 WHERE venue = \"princes park\"", "question": "Who was the home team at Princes Park?", "context": "CREATE TABLE table_name_41 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_33 WHERE team = \"holden racing team\" AND winner = \"mark skaife todd kelly\"", "question": "Tell me the city/state for the holden racing team with winner of mark skaife todd kelly", "context": "CREATE TABLE table_name_33 (city___state VARCHAR, team VARCHAR, winner VARCHAR)"}, {"answer": "SELECT engine_configuration FROM table_name_80 WHERE engine_name = \"1.2 mpi\"", "question": "What is the engine configuration of the 1.2 mpi engine?", "context": "CREATE TABLE table_name_80 (engine_configuration VARCHAR, engine_name VARCHAR)"}, {"answer": "SELECT max_torque_at_rpm FROM table_name_11 WHERE engine_name = \"1.2 mpi\"", "question": "What is the max torque of the 1.2 mpi engine?", "context": "CREATE TABLE table_name_11 (max_torque_at_rpm VARCHAR, engine_name VARCHAR)"}, {"answer": "SELECT long FROM table_name_93 WHERE player = \"charles frederick\"", "question": "Tell me the long for charles frederick", "context": "CREATE TABLE table_name_93 (long VARCHAR, player VARCHAR)"}, {"answer": "SELECT avg FROM table_name_65 WHERE yards = \"1\"", "question": "Tell me the average for 1 yards", "context": "CREATE TABLE table_name_65 (avg VARCHAR, yards VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_86 WHERE laps = 75 AND driver = \"pedro de la rosa\"", "question": "Which time/retired had 75 laps and Pedro de la Rosa as a driver?", "context": "CREATE TABLE table_name_86 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(no_in_season) FROM table_name_73 WHERE directed_by = \"robert berlinger\" AND no_in_series = 30", "question": "What is the total number in the season for the #30 Robert Berlinger series?", "context": "CREATE TABLE table_name_73 (no_in_season VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_name_84 WHERE title = \"julie gets validated\"", "question": "When did Julie gets Validated originally air?", "context": "CREATE TABLE table_name_84 (original_air_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT written_by FROM table_name_36 WHERE no_in_series = 24", "question": "Who was the number 24 series written by?", "context": "CREATE TABLE table_name_36 (written_by VARCHAR, no_in_series VARCHAR)"}, {"answer": "SELECT original_air_date FROM table_name_87 WHERE written_by = \"boyd hale\" AND title = \"julie gets validated\"", "question": "When did Boyd Hale's Julie gets Validated originally air?", "context": "CREATE TABLE table_name_87 (original_air_date VARCHAR, written_by VARCHAR, title VARCHAR)"}, {"answer": "SELECT queens FROM table_name_57 WHERE brooklyn = \"201,866\"", "question": "What was the Queens number when Brooklyn was 201,866?", "context": "CREATE TABLE table_name_57 (queens VARCHAR, brooklyn VARCHAR)"}, {"answer": "SELECT manhattan FROM table_name_21 WHERE richmond_[staten_is] = \"78%\"", "question": "Which Manhattan number appeared when Richmond (Staten Island) was 78%?", "context": "CREATE TABLE table_name_21 (manhattan VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_61 WHERE away_team = \"fitzroy\"", "question": "What did the home team score against Fitzroy?", "context": "CREATE TABLE table_name_61 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_24 WHERE week = 2", "question": "Who is the listed opponent in Week 2?", "context": "CREATE TABLE table_name_24 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE attendance = \"45,024\"", "question": "What date has attendance listed as 45,024?", "context": "CREATE TABLE table_name_11 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_82 WHERE rd__number < 11 AND player = \"mattias ohlund\" AND pl_gp > 52", "question": "What numbered pick was mattias ohlund, with over 52 PL GP, and also a round under 11?", "context": "CREATE TABLE table_name_82 (pick__number INTEGER, pl_gp VARCHAR, rd__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(reg_gp) FROM table_name_35 WHERE player = \"mattias ohlund\"", "question": "How many reg GP for mattias ohlund?", "context": "CREATE TABLE table_name_35 (reg_gp VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_57 WHERE opponent = \"expos\"", "question": "What is the average attendance against the expos?", "context": "CREATE TABLE table_name_57 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_11 WHERE date = \"april 12\"", "question": "What is the team's record on april 12?", "context": "CREATE TABLE table_name_11 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_2 WHERE date = \"april 19\"", "question": "Who did the team play on april 19?", "context": "CREATE TABLE table_name_2 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT aspect FROM table_name_23 WHERE channel = 26.5", "question": "What is the Aspect of Channel 26.5?", "context": "CREATE TABLE table_name_23 (aspect VARCHAR, channel VARCHAR)"}, {"answer": "SELECT programming FROM table_name_98 WHERE channel = 26.5", "question": "Which Programming is on Channel 26.5?", "context": "CREATE TABLE table_name_98 (programming VARCHAR, channel VARCHAR)"}, {"answer": "SELECT programming FROM table_name_89 WHERE channel < 26.5 AND video = \"480i\" AND psip_short_name = \"jtv\"", "question": "Which Programming is on a channel less than 26.5, has a Video of 480i and a PSIP Short Name of jtv?", "context": "CREATE TABLE table_name_89 (programming VARCHAR, psip_short_name VARCHAR, channel VARCHAR, video VARCHAR)"}, {"answer": "SELECT laps FROM table_name_56 WHERE driver = \"ronnie peterson\"", "question": "What number of laps were done by driver Ronnie Peterson?", "context": "CREATE TABLE table_name_56 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_2 WHERE time_retired = \"fuel system\"", "question": "Which driver had a time/retired of fuel system?", "context": "CREATE TABLE table_name_2 (driver VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_27 WHERE time_retired = \"engine\" AND laps < 45 AND driver = \"giancarlo baghetti\"", "question": "What is the sum of grids with an engine in Time/Retired with less than 45 laps for Giancarlo Baghetti?", "context": "CREATE TABLE table_name_27 (grid INTEGER, driver VARCHAR, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT grid FROM table_name_97 WHERE laps = 35", "question": "I want the Grid for Laps of 35", "context": "CREATE TABLE table_name_97 (grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT batting_style FROM table_name_95 WHERE player = \"jonty rhodes\"", "question": "What is Jonty Rhodes's batting style?", "context": "CREATE TABLE table_name_95 (batting_style VARCHAR, player VARCHAR)"}, {"answer": "SELECT bowling_style FROM table_name_52 WHERE first_class_team = \"griqualand west\"", "question": "What bowling style does First Class Team, Griqualand West have?", "context": "CREATE TABLE table_name_52 (bowling_style VARCHAR, first_class_team VARCHAR)"}, {"answer": "SELECT batting_style FROM table_name_85 WHERE player = \"makhaya ntini\"", "question": "What is the batting style of Makhaya Ntini?", "context": "CREATE TABLE table_name_85 (batting_style VARCHAR, player VARCHAR)"}, {"answer": "SELECT region FROM table_name_1 WHERE host = \"university of southern california\"", "question": "What region is the host university of southern california located?", "context": "CREATE TABLE table_name_1 (region VARCHAR, host VARCHAR)"}, {"answer": "SELECT state FROM table_name_81 WHERE city = \"knoxville\"", "question": "In which state is the city of knoxville?", "context": "CREATE TABLE table_name_81 (state VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_58 WHERE state = \"texas\" AND venue = \"frank erwin center\"", "question": "Which city in Texas hosts the Frank Erwin center?", "context": "CREATE TABLE table_name_58 (city VARCHAR, state VARCHAR, venue VARCHAR)"}, {"answer": "SELECT region FROM table_name_36 WHERE city = \"austin\"", "question": "In what region is the city of Austin?", "context": "CREATE TABLE table_name_36 (region VARCHAR, city VARCHAR)"}, {"answer": "SELECT chuck_devore FROM table_name_97 WHERE other = \"4%\"", "question": "What is the polling result for Chuck DeVore which has a corresponding polling result of 4% for Other?", "context": "CREATE TABLE table_name_97 (chuck_devore VARCHAR, other VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_82 WHERE silver < 1 AND rank > 3", "question": "What is the total when silver is less than 1 and rank larger than 3?", "context": "CREATE TABLE table_name_82 (total VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_72 WHERE nation = \"canada\" AND silver < 0", "question": "What is the number of bronze for Canada and silver is less than 0?", "context": "CREATE TABLE table_name_72 (bronze INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_48 WHERE silver < 1 AND nation = \"canada\" AND bronze < 0", "question": "What is the largest gold when silver is less than 1 for Canada and bronze is less than 0?", "context": "CREATE TABLE table_name_48 (gold INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_64 WHERE nation = \"germany\" AND rank < 2", "question": "What is the silver for Germany and less than 2?", "context": "CREATE TABLE table_name_64 (silver INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT score FROM table_name_4 WHERE date = \"december 3\"", "question": "Tell me the score for december 3", "context": "CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_47 WHERE date = \"december 3\"", "question": "Tell me the record for december 3", "context": "CREATE TABLE table_name_47 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_86 WHERE visitor = \"dallas\"", "question": "Name the record for dallas visitor", "context": "CREATE TABLE table_name_86 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE date = \"december 5\"", "question": "Name the score for december 5", "context": "CREATE TABLE table_name_36 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_6 WHERE venue = \"princes park\"", "question": "Who is Princes Park's home team?", "context": "CREATE TABLE table_name_6 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_30 WHERE away_team = \"north melbourne\"", "question": "Who is North Melbourne's home team?", "context": "CREATE TABLE table_name_30 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT year_8_1st_quad FROM table_name_67 WHERE year_9_2nd_quad = \"bggs\" AND crew > 2006", "question": "In the Crews beyond 2006 what was the Year 8 1st Quads that exists in the same row that had the year 9 2nd Quads of BGGS?", "context": "CREATE TABLE table_name_67 (year_8_1st_quad VARCHAR, year_9_2nd_quad VARCHAR, crew VARCHAR)"}, {"answer": "SELECT year_8_1st_quad FROM table_name_5 WHERE year_9_2nd_quad = \"stm\" AND year_9_1st_quad = \"som\" AND year_8_3rd_quad = \"sta\"", "question": "For the Crew with Year 9 2nd Quads of STM, Year 9 1st Quads of SOM, and a Year 8 3rd Quads of STA what was the Year 8 1st Quads?", "context": "CREATE TABLE table_name_5 (year_8_1st_quad VARCHAR, year_8_3rd_quad VARCHAR, year_9_2nd_quad VARCHAR, year_9_1st_quad VARCHAR)"}, {"answer": "SELECT character FROM table_name_59 WHERE category = \"sexiest female\" AND award = \"british soap awards\"", "question": "Which character was in the sexiest female category of the British Soap Awards?", "context": "CREATE TABLE table_name_59 (character VARCHAR, category VARCHAR, award VARCHAR)"}, {"answer": "SELECT film_or_series FROM table_name_2 WHERE result = \"nominated\" AND category = \"best fansite\"", "question": "Which film or series was nominated in the category of best fansite?", "context": "CREATE TABLE table_name_2 (film_or_series VARCHAR, result VARCHAR, category VARCHAR)"}, {"answer": "SELECT venue FROM table_name_38 WHERE home_team = \"essendon\"", "question": "Where does Essendon play their home games?", "context": "CREATE TABLE table_name_38 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_30 WHERE venue = \"victoria park\"", "question": "What team plays their home games in Victoria Park?", "context": "CREATE TABLE table_name_30 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_22 WHERE report = \"sd.hr\" AND score = \"3\u20131\" AND date = \"14 apr 2001\"", "question": "What is the total attendance with a Report of sd.hr, and a Score of 3\u20131, and a Date of 14 apr 2001?", "context": "CREATE TABLE table_name_22 (attendance INTEGER, date VARCHAR, report VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(production_code) FROM table_name_6 WHERE written_by = \"brian egeston\" AND season__number > 5", "question": "What is the highest production code when the writer was brian egeston after season 5?", "context": "CREATE TABLE table_name_6 (production_code INTEGER, written_by VARCHAR, season__number VARCHAR)"}, {"answer": "SELECT record FROM table_name_63 WHERE home = \"chicago\"", "question": "What was the record when chicago was the home team?", "context": "CREATE TABLE table_name_63 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_58 WHERE home_team = \"hawthorn\"", "question": "How many people were in the crowd when the Home Team was Hawthorn?", "context": "CREATE TABLE table_name_58 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_66 WHERE laps = 88", "question": "What's the average Grid with Laps of 88?", "context": "CREATE TABLE table_name_66 (grid INTEGER, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_21 WHERE time_retired = \"+6 laps\"", "question": "Which driver has a Time/Retired of +6 laps?", "context": "CREATE TABLE table_name_21 (driver VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_21 WHERE home_team = \"hawthorn\"", "question": "What did Hawthorn score as the home team?", "context": "CREATE TABLE table_name_21 (home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_22 WHERE home_team = \"south melbourne\"", "question": "What team played South Melbourne at their home game?", "context": "CREATE TABLE table_name_22 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_59 WHERE away_team = \"geelong\"", "question": "What team played Geelong at their away game?", "context": "CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_60 WHERE 1991 = \"4r\"", "question": "What is the 1989 result of the tournament in which Katerina Maleeva finished 4r in 1991?", "context": "CREATE TABLE table_name_60 (Id VARCHAR)"}, {"answer": "SELECT 1989 FROM table_name_94 WHERE 1986 = \"nh\"", "question": "What is the 1989 result of the tournament in which Katerina finished nh in 1986?", "context": "CREATE TABLE table_name_94 (Id VARCHAR)"}, {"answer": "SELECT total FROM table_name_88 WHERE rank = \"did not participate\"", "question": "What is the total of the ranks that did not participate?", "context": "CREATE TABLE table_name_88 (total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT decile FROM table_name_55 WHERE authority = \"state integrated\" AND name = \"westminster christian school\"", "question": "What is the decile for Westminster Christian School with a state integrated authority?", "context": "CREATE TABLE table_name_55 (decile VARCHAR, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT years FROM table_name_45 WHERE authority = \"state integrated\" AND decile = \"9\"", "question": "What are the years when the authority was state integrated and a decile of 9?", "context": "CREATE TABLE table_name_45 (years VARCHAR, authority VARCHAR, decile VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_30 WHERE venue = \"moorabbin oval\"", "question": "What did the team score while away in moorabbin oval?", "context": "CREATE TABLE table_name_30 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE tournament = \"general foods pga seniors' championship\"", "question": "When was the general foods pga seniors' championship tournament?", "context": "CREATE TABLE table_name_66 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_86 WHERE record = \"3\u201316\"", "question": "What was the attendance on location when the record was 3\u201316?", "context": "CREATE TABLE table_name_86 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE high_rebounds = \"two-way tie (8)\"", "question": "On what date was a two-way tie (8) the high rebound?", "context": "CREATE TABLE table_name_3 (date VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_20 WHERE away_team = \"richmond\"", "question": "What is the home team score with Away team Richmond?", "context": "CREATE TABLE table_name_20 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_89 WHERE venue = \"victoria park\"", "question": "What is the smallest crowd for victoria park?", "context": "CREATE TABLE table_name_89 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT MAX(clean_) & _jerk FROM table_name_92 WHERE total__kg_ = \"200.0\" AND snatch > 87.5", "question": "what is the highest clean & jerk when total (kg) is 200.0 and snatch is more than 87.5?", "context": "CREATE TABLE table_name_92 (_jerk VARCHAR, clean_ INTEGER, total__kg_ VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT AVG(bodyweight) FROM table_name_89 WHERE snatch = 80", "question": "what is the average bodyweight when snatch is 80?", "context": "CREATE TABLE table_name_89 (bodyweight INTEGER, snatch VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_92 WHERE venue = \"windy hill\"", "question": "What did the home team score at Windy Hill?", "context": "CREATE TABLE table_name_92 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_49 WHERE home_team = \"richmond\"", "question": "When the home team was Richmond, what was the largest crowd?", "context": "CREATE TABLE table_name_49 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT AVG(1 AS st_prize__) AS $__ FROM table_name_55 WHERE location = \"tennessee\"", "question": "Tell me the average 1st prize for tennessee", "context": "CREATE TABLE table_name_55 (location VARCHAR)"}, {"answer": "SELECT winner FROM table_name_97 WHERE tournament = \"comfort classic\"", "question": "Tell me the winner of the comfort classic", "context": "CREATE TABLE table_name_97 (winner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT COUNT(pct) FROM table_name_13 WHERE losses < 1 AND finals = 4", "question": "How many percentages have losses fewer than 1 with finals appearances of 4?", "context": "CREATE TABLE table_name_13 (pct VARCHAR, losses VARCHAR, finals VARCHAR)"}, {"answer": "SELECT minimum_age_at_1st_dose FROM table_name_28 WHERE number_of_doses = \"3 doses\" AND dose = \"2-3 drops\"", "question": "Name the least age for the 1st dose for 3 doses of 2-3 drops", "context": "CREATE TABLE table_name_28 (minimum_age_at_1st_dose VARCHAR, number_of_doses VARCHAR, dose VARCHAR)"}, {"answer": "SELECT number_of_doses FROM table_name_13 WHERE vaccine = \"bacillus calmette-gu\u00e9rin\"", "question": "How many doses for the bacillus calmette-gu\u00e9rin?", "context": "CREATE TABLE table_name_13 (number_of_doses VARCHAR, vaccine VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_42 WHERE away_team = \"carlton\"", "question": "What team did team carlton play while away?", "context": "CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_77 WHERE venue = \"windy hill\"", "question": "What home team plays at Windy Hill?", "context": "CREATE TABLE table_name_77 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT 2 AS nd_party FROM table_name_66 WHERE election = \"1918\"", "question": "What was the 2nd Party in the 1918 Election?", "context": "CREATE TABLE table_name_66 (election VARCHAR)"}, {"answer": "SELECT 3 AS rd_party FROM table_name_35 WHERE election = \"1922\"", "question": "What was the 3rd Party in the Election of 1922?", "context": "CREATE TABLE table_name_35 (election VARCHAR)"}, {"answer": "SELECT MAX(erp_w) FROM table_name_6 WHERE frequency_mhz < 91.1", "question": "What is the ERP W number where the frequency is smaller than 91.1?", "context": "CREATE TABLE table_name_6 (erp_w INTEGER, frequency_mhz INTEGER)"}, {"answer": "SELECT home_team AS score FROM table_name_69 WHERE home_team = \"collingwood\"", "question": "What was the score of Collingwood?", "context": "CREATE TABLE table_name_69 (home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_83 WHERE away_team = \"south melbourne\"", "question": "Where did South Melbourne play?", "context": "CREATE TABLE table_name_83 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_79 WHERE home_team = \"north melbourne\"", "question": "What is the venue of North Melbourne?", "context": "CREATE TABLE table_name_79 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT loss FROM table_name_20 WHERE opponent = \"coyotes\"", "question": "What was the loss from the coyotes as opponents?", "context": "CREATE TABLE table_name_20 (loss VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT final_episode FROM table_name_93 WHERE actor = \"rob estes\"", "question": "What was the last episode featuring Rob Estes?", "context": "CREATE TABLE table_name_93 (final_episode VARCHAR, actor VARCHAR)"}, {"answer": "SELECT block FROM table_name_23 WHERE cospar_id = \"1995-060a\"", "question": "What block has a COSPAR ID of 1995-060a?", "context": "CREATE TABLE table_name_23 (block VARCHAR, cospar_id VARCHAR)"}, {"answer": "SELECT rocket FROM table_name_41 WHERE block = \"block i\" AND cospar_id = \"1995-060a\"", "question": "What rocket has a Block of block i and a COSPAR ID of 1995-060a?", "context": "CREATE TABLE table_name_41 (rocket VARCHAR, block VARCHAR, cospar_id VARCHAR)"}, {"answer": "SELECT name FROM table_name_2 WHERE rocket = \"titan iv(401)b\" AND block = \"block i/ii hybrid\"", "question": "What name has a Rocket of titan iv(401)b and a Block of block i/ii hybrid?", "context": "CREATE TABLE table_name_2 (name VARCHAR, rocket VARCHAR, block VARCHAR)"}, {"answer": "SELECT rocket FROM table_name_30 WHERE block = \"block i/ii hybrid\"", "question": "What rocket has a block i/ii hybrid?", "context": "CREATE TABLE table_name_30 (rocket VARCHAR, block VARCHAR)"}, {"answer": "SELECT rocket FROM table_name_31 WHERE cospar_id = \"2002-001a\"", "question": "What rocket has a COSPAR ID of 2002-001a?", "context": "CREATE TABLE table_name_31 (rocket VARCHAR, cospar_id VARCHAR)"}, {"answer": "SELECT cospar_id FROM table_name_40 WHERE launch_date_time__utc_ = \"1995-11-06, 05:15:01\"", "question": "What COSPAR ID has a Launch date/time (UTC) of 1995-11-06, 05:15:01?", "context": "CREATE TABLE table_name_40 (cospar_id VARCHAR, launch_date_time__utc_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE competition = \"super league xii\" AND date = \"15/04/07\"", "question": "On 15/04/07 in the competition Super League XII, what was the score?", "context": "CREATE TABLE table_name_94 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE date = \"21/07/07\"", "question": "On 21/07/07, what was the score?", "context": "CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_48 WHERE season = \"1907\"", "question": "What was the venue of season 1907?", "context": "CREATE TABLE table_name_48 (venue VARCHAR, season VARCHAR)"}, {"answer": "SELECT bowling FROM table_name_23 WHERE season = \"1907\"", "question": "What is the bowling score of season 1907?", "context": "CREATE TABLE table_name_23 (bowling VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_62 WHERE player = \"tich freeman\" AND opponent = \"v warwickshire\"", "question": "Which season did Tich Freeman play against opponent V Warwickshire?", "context": "CREATE TABLE table_name_62 (season VARCHAR, player VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_45 WHERE home_team = \"south melbourne\"", "question": "What was South Melbourne's score as the home team?", "context": "CREATE TABLE table_name_45 (home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_4 WHERE home_team = \"essendon\"", "question": "How many points did the home team Essendon score?", "context": "CREATE TABLE table_name_4 (home_team VARCHAR)"}, {"answer": "SELECT character FROM table_name_91 WHERE episodes > 22", "question": "What character is in over 22 episodes?", "context": "CREATE TABLE table_name_91 (character VARCHAR, episodes INTEGER)"}, {"answer": "SELECT MIN(episodes) FROM table_name_35 WHERE actor = \"anabel barnston\"", "question": "What is the lowest number of episodes for anabel barnston?", "context": "CREATE TABLE table_name_35 (episodes INTEGER, actor VARCHAR)"}, {"answer": "SELECT character FROM table_name_51 WHERE episodes < 23 AND actor = \"dani harmer\"", "question": "What character is played by dani harmer for under 23 episodes?", "context": "CREATE TABLE table_name_51 (character VARCHAR, episodes VARCHAR, actor VARCHAR)"}, {"answer": "SELECT COUNT(episodes) FROM table_name_35 WHERE duration = \"3\"", "question": "How many episodes have a duration of 3?", "context": "CREATE TABLE table_name_35 (episodes VARCHAR, duration VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_7 WHERE home_team = \"collingwood\"", "question": "What is the name of the away team who play Collingwood?", "context": "CREATE TABLE table_name_7 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE home_team = \"collingwood\"", "question": "What date did Collingwood play as the home team?", "context": "CREATE TABLE table_name_75 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(year_of_disaffiliation) FROM table_name_31 WHERE station = \"chch-tv\" AND year_of_affiliation > 2001", "question": "What is the most recent year of disaffiliation of a CHCH-TV station that affiliated after 2001?", "context": "CREATE TABLE table_name_31 (year_of_disaffiliation INTEGER, station VARCHAR, year_of_affiliation VARCHAR)"}, {"answer": "SELECT MIN(year_of_disaffiliation) FROM table_name_74 WHERE city_of_license_market = \"hamilton, ontario\"", "question": "What is the earliest year of disaffiliation of a CHCH-TV station, licensed in Hamilton, Ontario?", "context": "CREATE TABLE table_name_74 (year_of_disaffiliation INTEGER, city_of_license_market VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_29 WHERE nation = \"west germany\" AND silver < 2", "question": "How many bronze medals did west germany win when they had less than 2 silver medals?", "context": "CREATE TABLE table_name_29 (bronze INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_70 WHERE total > 2 AND gold > 2", "question": "How many bronze medals were won when the total was larger than 2 and the more than 2 gold medals were won?", "context": "CREATE TABLE table_name_70 (bronze INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_62 WHERE bronze > 2", "question": "How many gold medals were won when more than 2 bronze medals were won?", "context": "CREATE TABLE table_name_62 (gold INTEGER, bronze INTEGER)"}, {"answer": "SELECT MIN(pl_gp) FROM table_name_18 WHERE pick__number = 235 AND rd__number > 12", "question": "What was the PI GP fpr pick# 235 for Rd# larger than 12?", "context": "CREATE TABLE table_name_18 (pl_gp INTEGER, pick__number VARCHAR, rd__number VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_89 WHERE away_team = \"south melbourne\"", "question": "What was the largest crowd when South Melbourne was the away team?", "context": "CREATE TABLE table_name_89 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_53 WHERE home_team = \"richmond\"", "question": "What is richmond's scores when they are the home team?", "context": "CREATE TABLE table_name_53 (home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_32 WHERE away_team = \"south melbourne\"", "question": "What is south melbourne's scores when they are the away team?", "context": "CREATE TABLE table_name_32 (away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_1 WHERE venue = \"windy hill\"", "question": "What dates were the matches at windy hill?", "context": "CREATE TABLE table_name_1 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_50 WHERE driver = \"piero taruffi\"", "question": "What is the average number of laps for the driver Piero Taruffi?", "context": "CREATE TABLE table_name_50 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_23 WHERE laps = 12 AND grid < 10", "question": "Which driver has 12 laps and a grid of less than 10?", "context": "CREATE TABLE table_name_23 (driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT illustration FROM table_name_76 WHERE design = \"tim nokes\" AND first_day_cover_cancellation = \"calgary, alberta\"", "question": "What is the Illustration with a Design of tim nokes, and a First Day Cover Cancellation with calgary, alberta?", "context": "CREATE TABLE table_name_76 (illustration VARCHAR, design VARCHAR, first_day_cover_cancellation VARCHAR)"}, {"answer": "SELECT date_of_issue FROM table_name_3 WHERE theme = \"mental health\"", "question": "What is the Date of Issue with a Theme with mental health?", "context": "CREATE TABLE table_name_3 (date_of_issue VARCHAR, theme VARCHAR)"}, {"answer": "SELECT theme FROM table_name_55 WHERE design = \"sputnik design partners\"", "question": "What is the Theme with a Design with sputnik design partners?", "context": "CREATE TABLE table_name_55 (theme VARCHAR, design VARCHAR)"}, {"answer": "SELECT paper_type FROM table_name_11 WHERE first_day_cover_cancellation = \"ottawa, on\"", "question": "What is the Paper Type with a First Day Cover Cancellation with ottawa, on?", "context": "CREATE TABLE table_name_11 (paper_type VARCHAR, first_day_cover_cancellation VARCHAR)"}, {"answer": "SELECT paper_type FROM table_name_51 WHERE illustration = \"martin dee, ubc public affairs\"", "question": "What is the Paper Type with an Illustration with martin dee, ubc public affairs?", "context": "CREATE TABLE table_name_51 (paper_type VARCHAR, illustration VARCHAR)"}, {"answer": "SELECT theme FROM table_name_28 WHERE paper_type = \"tullis russell coatings\" AND date_of_issue = \"1 october 2008\"", "question": "What is the Theme with a Paper Type of tullis russell coatings, and a Date with Issue of 1 october 2008?", "context": "CREATE TABLE table_name_28 (theme VARCHAR, paper_type VARCHAR, date_of_issue VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_73 WHERE away_team = \"lewes\"", "question": "What is the tie number when the away team is Lewes?", "context": "CREATE TABLE table_name_73 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_5 WHERE home_team = \"cheltenham town\"", "question": "What is the away team when the home team is Cheltenham Town?", "context": "CREATE TABLE table_name_5 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_76 WHERE tie_no = \"34\"", "question": "What is the home team of the game with tie number 34?", "context": "CREATE TABLE table_name_76 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_33 WHERE tie_no = \"31\"", "question": "What is the away team of the game with tie number 31?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT SUM(goals_for) FROM table_name_50 WHERE wins < 4 AND losses > 6", "question": "How many goals for were scored for the team(s) that won fewer than 4 games and lost more than 6?", "context": "CREATE TABLE table_name_50 (goals_for INTEGER, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_37 WHERE games_played > 8", "question": "What is the average losses for the team(s) that played more than 8 games?", "context": "CREATE TABLE table_name_37 (losses INTEGER, games_played INTEGER)"}, {"answer": "SELECT fleet_size FROM table_name_73 WHERE class = \"vanguard 0-6-0dh\"", "question": "What is the fleet size of the Vanguard 0-6-0dh class?", "context": "CREATE TABLE table_name_73 (fleet_size VARCHAR, class VARCHAR)"}, {"answer": "SELECT introduced FROM table_name_64 WHERE type = \"electro-diesel locomotive\"", "question": "What is the year of introduction for the Electro-Diesel locomotive?", "context": "CREATE TABLE table_name_64 (introduced VARCHAR, type VARCHAR)"}, {"answer": "SELECT AVG(fleet_size) FROM table_name_3 WHERE type = \"shunter\" AND introduced = \"1959\"", "question": "What is the average fleet size for the Shunter type introduced in 1959?", "context": "CREATE TABLE table_name_3 (fleet_size INTEGER, type VARCHAR, introduced VARCHAR)"}, {"answer": "SELECT MIN(fleet_size) FROM table_name_87 WHERE type = \"shunter\" AND introduced = \"1953\"", "question": "What is the smallest fleet size with a type of shunter introduced in 1953?", "context": "CREATE TABLE table_name_87 (fleet_size INTEGER, type VARCHAR, introduced VARCHAR)"}, {"answer": "SELECT MIN(viewers__m_) FROM table_name_65 WHERE air_date = \"january 24, 2008\" AND rating > 3.6", "question": "What show that was aired on January 24, 2008 with a rating larger than 3.6 had the lowest viewers? How Many Viewers in the millions?", "context": "CREATE TABLE table_name_65 (viewers__m_ INTEGER, air_date VARCHAR, rating VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_20 WHERE chassis = \"sf01\"", "question": "Which round has a car with a chassis of sf01?", "context": "CREATE TABLE table_name_20 (rounds VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT country FROM table_name_22 WHERE average < 9.6 AND interview > 9.22 AND swimsuit > 9.46", "question": "Which country has swimsuit more than 9.46 and interview more than 9.22 with average less than 9.6?", "context": "CREATE TABLE table_name_22 (country VARCHAR, swimsuit VARCHAR, average VARCHAR, interview VARCHAR)"}, {"answer": "SELECT COUNT(evening_gown) FROM table_name_57 WHERE swimsuit < 9.36 AND average < 9.23", "question": "Which is the total number of evening gowns for swimsui less than 9.36 and average less than 9.23?", "context": "CREATE TABLE table_name_57 (evening_gown VARCHAR, swimsuit VARCHAR, average VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_name_42 WHERE interview > 9.57 AND country = \"delaware\" AND evening_gown > 9.77", "question": "Name the lowest average for interview more than 9.57 and delaware and evening gown more than 9.77", "context": "CREATE TABLE table_name_42 (average INTEGER, evening_gown VARCHAR, interview VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(swimsuit) FROM table_name_31 WHERE average > 9.23 AND country = \"delaware\" AND interview > 9.73", "question": "Name the sum of swimsuit for average more than 9.23 for delaware for interview more than 9.73", "context": "CREATE TABLE table_name_31 (swimsuit INTEGER, interview VARCHAR, average VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(average) FROM table_name_99 WHERE interview > 9.57 AND swimsuit > 9.65", "question": "Name the sum of average for interview more than 9.57 and swimsuit more than 9.65", "context": "CREATE TABLE table_name_99 (average INTEGER, interview VARCHAR, swimsuit VARCHAR)"}, {"answer": "SELECT evening_gown FROM table_name_90 WHERE swimsuit > 9.51 AND country = \"maryland\"", "question": "Name the evening gown for swimsuit more than 9.51 for maryland", "context": "CREATE TABLE table_name_90 (evening_gown VARCHAR, swimsuit VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(points_awarded__platinum_) FROM table_name_51 WHERE points_awarded__gold_ = 9 AND points_awarded__silver_ > 6", "question": "What points awarded are higher than 6 but smaller than 9", "context": "CREATE TABLE table_name_51 (points_awarded__platinum_ INTEGER, points_awarded__gold_ VARCHAR, points_awarded__silver_ VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_50 WHERE pole_position = \"jacky ickx\" AND race = \"canadian grand prix\"", "question": "In the Canadian Grand Prix, what tyre was used when Jacky Ickx held pole position?", "context": "CREATE TABLE table_name_50 (tyre VARCHAR, pole_position VARCHAR, race VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_16 WHERE tyre = \"d\" AND pole_position = \"jochen rindt\" AND fastest_lap = \"jackie stewart\"", "question": "When Jackie Stewart had the fastest lap and Jochen Rindt held the pole position with a D tyre, what was the circuit?", "context": "CREATE TABLE table_name_16 (circuit VARCHAR, fastest_lap VARCHAR, tyre VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_28 WHERE winning_driver = \"jochen rindt\"", "question": "What was the circuit when Jochen Rindt won?", "context": "CREATE TABLE table_name_28 (circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_81 WHERE circuit = \"kyalami\"", "question": "What tyre was used in Kyalami?", "context": "CREATE TABLE table_name_81 (tyre VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT driver FROM table_name_11 WHERE grid = 10", "question": "Which driver had a grid number of 10?", "context": "CREATE TABLE table_name_11 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_55 WHERE grid < 3 AND time_retired = \"1:34:31.522\"", "question": "Which constructor had a grid number of less than 3 and where the Time/Retired was 1:34:31.522?", "context": "CREATE TABLE table_name_55 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_22 WHERE time_retired = \"collision\" AND grid < 18 AND driver = \"nick heidfeld\"", "question": "Which constructor had a Time/Retired of collision, where the grid number was less than 18 and Nick Heidfeld was the driver?", "context": "CREATE TABLE table_name_22 (constructor VARCHAR, driver VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT record FROM table_name_64 WHERE date = \"may 20\"", "question": "What was the record on May 20?", "context": "CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT height_in_ft FROM table_name_70 WHERE no_s_ = \"24\"", "question": "What is the height in feet of player number 24?", "context": "CREATE TABLE table_name_70 (height_in_ft VARCHAR, no_s_ VARCHAR)"}, {"answer": "SELECT school_club_team_country FROM table_name_27 WHERE years_for_rockets = \"1967-68\"", "question": "Who is the school, club, team or country that the Rockets played for 1967-68?", "context": "CREATE TABLE table_name_27 (school_club_team_country VARCHAR, years_for_rockets VARCHAR)"}, {"answer": "SELECT player FROM table_name_48 WHERE position = \"infielder\" AND hometown = \"atlanta, ga\"", "question": "Which player has a Position of infielder, and a Hometown of atlanta, ga?", "context": "CREATE TABLE table_name_48 (player VARCHAR, position VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT mlb_draft FROM table_name_7 WHERE school = \"green valley high school\"", "question": "What MLB draft has a School of green valley high school?", "context": "CREATE TABLE table_name_7 (mlb_draft VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_name_26 WHERE school = \"green valley high school\"", "question": "Which position has a School of green valley high school?", "context": "CREATE TABLE table_name_26 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT position FROM table_name_61 WHERE player = \"chad hutchinson\"", "question": "Which position has a Player of chad hutchinson?", "context": "CREATE TABLE table_name_61 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_71 WHERE school = \"petal high school\"", "question": "Which position has a School of petal high school?", "context": "CREATE TABLE table_name_71 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE week = 8", "question": "What is the date of week 8?", "context": "CREATE TABLE table_name_23 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_4 WHERE attendance = 48 OFFSET 102", "question": "Which week has the lowest attendance of 48,102?", "context": "CREATE TABLE table_name_4 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT year FROM table_name_68 WHERE runs = \"144\"", "question": "What was the year with runs of 144?", "context": "CREATE TABLE table_name_68 (year VARCHAR, runs VARCHAR)"}, {"answer": "SELECT city_country FROM table_name_51 WHERE venue = \"adelaide oval\"", "question": "Name the place where adelaide oval is", "context": "CREATE TABLE table_name_51 (city_country VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(zone) FROM table_name_64 WHERE stations = \"waddon marsh tram stop\"", "question": "Name the average zone for waddon marsh tram stop", "context": "CREATE TABLE table_name_64 (zone INTEGER, stations VARCHAR)"}, {"answer": "SELECT stations FROM table_name_58 WHERE managed_by = \"tramlink\" AND zone = 5 AND platforms = 1", "question": "Name the stations for zone 5 and 1 platform by tramlink", "context": "CREATE TABLE table_name_58 (stations VARCHAR, platforms VARCHAR, managed_by VARCHAR, zone VARCHAR)"}, {"answer": "SELECT COUNT(platforms) FROM table_name_41 WHERE stations = \"waddon railway station\"", "question": "Name the total number of platforms that waddon railway station has", "context": "CREATE TABLE table_name_41 (platforms VARCHAR, stations VARCHAR)"}, {"answer": "SELECT AVG(zone) FROM table_name_54 WHERE stations = \"waddon railway station\" AND platforms > 2", "question": "Name the average zone for waddon railway station and has more than 2 platforms", "context": "CREATE TABLE table_name_54 (zone INTEGER, stations VARCHAR, platforms VARCHAR)"}, {"answer": "SELECT record FROM table_name_20 WHERE opponent = \"bob ostovich\"", "question": "What is Bob Ostovich's opponents record?", "context": "CREATE TABLE table_name_20 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_72 WHERE opponent = \"jimmy smith\"", "question": "What location is Jimmy Smith fighting in?", "context": "CREATE TABLE table_name_72 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT away FROM table_name_22 WHERE record = \"7-4\" AND win__percentage = 0.637 AND season = \"2010\"", "question": "What is the away score with a record of 7-4, win% of 0.637, and 2010 season?", "context": "CREATE TABLE table_name_22 (away VARCHAR, season VARCHAR, record VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT MIN(win__percentage) FROM table_name_53 WHERE away = \"3-2\" AND season = \"2011\"", "question": "What was the lowest win% with an away score of 3-2 in 2011 season?", "context": "CREATE TABLE table_name_53 (win__percentage INTEGER, away VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(win__percentage) FROM table_name_66 WHERE season = \"1999-2013\"", "question": "What is the lowest win% in the 1999-2013 season?", "context": "CREATE TABLE table_name_66 (win__percentage INTEGER, season VARCHAR)"}, {"answer": "SELECT record FROM table_name_99 WHERE year = 1925", "question": "What's the record during 1925?", "context": "CREATE TABLE table_name_99 (record VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_2 WHERE event = \"discus throw\"", "question": "What is the earliest year that the discus throw event occur?", "context": "CREATE TABLE table_name_2 (year INTEGER, event VARCHAR)"}, {"answer": "SELECT haydon FROM table_name_68 WHERE ben_tahir = \"33\"", "question": "What Haydon had a 33 Ben-Tahir?", "context": "CREATE TABLE table_name_68 (haydon VARCHAR, ben_tahir VARCHAR)"}, {"answer": "SELECT gauthier FROM table_name_65 WHERE liscumb = \"15\"", "question": "What Gauthier had a 15 Liscumb?", "context": "CREATE TABLE table_name_65 (gauthier VARCHAR, liscumb VARCHAR)"}, {"answer": "SELECT ben_tahir FROM table_name_82 WHERE liscumb = \"6\" AND libweshya = \"3\"", "question": "What Ben-Tahir has a 6 Liscumb and 3 Libweshya?", "context": "CREATE TABLE table_name_82 (ben_tahir VARCHAR, liscumb VARCHAR, libweshya VARCHAR)"}, {"answer": "SELECT bello FROM table_name_35 WHERE liscumb = \"27\" AND libweshya = \"6539\"", "question": "What Bello has a 27 Liscumb and 6539 Libweshya?", "context": "CREATE TABLE table_name_35 (bello VARCHAR, liscumb VARCHAR, libweshya VARCHAR)"}, {"answer": "SELECT furtenbacher FROM table_name_6 WHERE liscumb = \"6\" AND lawrance = \"10\" AND ben_tahir = \"24\"", "question": "What is the Furtenbacher with a 6 Liscumb, 10 Lawrance, and a 24 Ben-Tahir?", "context": "CREATE TABLE table_name_6 (furtenbacher VARCHAR, ben_tahir VARCHAR, liscumb VARCHAR, lawrance VARCHAR)"}, {"answer": "SELECT ben_tahir FROM table_name_92 WHERE doucet = \"3269\"", "question": "What is the Ben-Tahir with a 3269 Doucet?", "context": "CREATE TABLE table_name_92 (ben_tahir VARCHAR, doucet VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_68 WHERE loss = \"k. gross (1-1)\"", "question": "How many attended the game that was a Loss of k. gross (1-1)?", "context": "CREATE TABLE table_name_68 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE tie_no = \"65\"", "question": "What is the score of the game with tie number 65?", "context": "CREATE TABLE table_name_23 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_91 WHERE attendance = \"160\"", "question": "Which Home team had attendance 160?", "context": "CREATE TABLE table_name_91 (home_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_79 WHERE decision = \"ellis\" AND visitor = \"vancouver\"", "question": "What is the record of the game with a decision of Ellis and Vancouver as the visitor?", "context": "CREATE TABLE table_name_79 (record VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_45 WHERE decision = \"mason\" AND home = \"nashville\"", "question": "What is the record of the game with Mason as the decision and Nashville as the home team?", "context": "CREATE TABLE table_name_45 (record VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE decision = \"ellis\" AND visitor = \"st. louis\"", "question": "What is the date with Ellis as the decision and St. Louis as the visitor?", "context": "CREATE TABLE table_name_27 (date VARCHAR, decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_67 WHERE record = \"31\u201331\u20138\"", "question": "Which visiting team had a record of 31\u201331\u20138?", "context": "CREATE TABLE table_name_67 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_45 WHERE player = \"jeff lebo\"", "question": "Where is Jeff Lebo's hometown?", "context": "CREATE TABLE table_name_45 (hometown VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_49 WHERE hometown = \"houston, tx\"", "question": "Who is the player from Houston, TX?", "context": "CREATE TABLE table_name_49 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_99 WHERE entrant = \"rotary watches stanley brm\" AND chassis = \"brm p207\" AND points > 0", "question": "What is the earliest year with an entry from Rotary Watches Stanley BRM and a BRM P207 with more than 0 points?", "context": "CREATE TABLE table_name_99 (year INTEGER, points VARCHAR, entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT points FROM table_name_68 WHERE year < 1977 AND engine = \"cosworth v8\" AND entrant = \"hb bewaking alarm systems\"", "question": "How many points were there in a year earlier than 1977, a Cosworth V8 engine, and an entry from HB Bewaking alarm systems?", "context": "CREATE TABLE table_name_68 (points VARCHAR, entrant VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT report FROM table_name_88 WHERE race = \"argentine grand prix\"", "question": "What is the report for the race of Argentine Grand Prix?", "context": "CREATE TABLE table_name_88 (report VARCHAR, race VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_22 WHERE pole_position = \"jerry hoyt\"", "question": "What is the Tyre when Jerry Hoyt was the pole position?", "context": "CREATE TABLE table_name_22 (tyre VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_89 WHERE tyre = \"c\" AND pole_position = \"eugenio castellotti\"", "question": "Who was the constructor when Eugenio Castellotti was the pole position and the race had a C tyre?", "context": "CREATE TABLE table_name_89 (constructor VARCHAR, tyre VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_2 WHERE constructor = \"mercedes\" AND race = \"british grand prix\"", "question": "What was the fastest lap time at the British Grand Prix with Mercedes as the constructor?", "context": "CREATE TABLE table_name_2 (fastest_lap VARCHAR, constructor VARCHAR, race VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_20 WHERE high_rebounds = \"nick collison (14)\"", "question": "Who scored the High points in the game with High rebounds by Nick Collison (14)?", "context": "CREATE TABLE table_name_20 (high_points VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_41 WHERE source = \"fcbarcelona.cat\" AND country = \"fra\" AND name = \"henry\"", "question": "What is henry transfer fee at fcbarcelona.cat in fra?", "context": "CREATE TABLE table_name_41 (transfer_fee VARCHAR, name VARCHAR, source VARCHAR, country VARCHAR)"}, {"answer": "SELECT grid FROM table_name_57 WHERE time_retired = \"hydraulics\"", "question": "What was the Grid with a hydraulics time/required?", "context": "CREATE TABLE table_name_57 (grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT grid FROM table_name_24 WHERE constructor = \"toyota\" AND time_retired = \"+1:09.718\"", "question": "What is the grid with a Toyota constructor and +1:09.718 as time/retired?", "context": "CREATE TABLE table_name_24 (grid VARCHAR, constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT grid FROM table_name_55 WHERE laps = \"71\" AND driver = \"allan mcnish\"", "question": "What is the grid with 71 laps and the driver, Allan McNish.", "context": "CREATE TABLE table_name_55 (grid VARCHAR, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_name_60 WHERE driver = \"jacques villeneuve\"", "question": "How many laps did Jacques Villeneuve have?", "context": "CREATE TABLE table_name_60 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_50 WHERE driver = \"heinz-harald frentzen\"", "question": "What is the constructor of the driver Heinz-Harald Frentzen?", "context": "CREATE TABLE table_name_50 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT rank FROM table_name_66 WHERE year = \"2012\" AND out_of > 176", "question": "Tell me the rank for year of 2012 and out of larger than 176", "context": "CREATE TABLE table_name_66 (rank VARCHAR, year VARCHAR, out_of VARCHAR)"}, {"answer": "SELECT year FROM table_name_11 WHERE rank > 35 AND out_of = 167", "question": "Tell me the year for rank more than 35 and out of 167", "context": "CREATE TABLE table_name_11 (year VARCHAR, rank VARCHAR, out_of VARCHAR)"}, {"answer": "SELECT uci_points FROM table_name_88 WHERE team = \"rabobank\"", "question": "How many UCI points did Rabobank score?", "context": "CREATE TABLE table_name_88 (uci_points VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_81 WHERE country = \"france\" AND uci_points = \"15\"", "question": "What team in France had 15 UCi points?", "context": "CREATE TABLE table_name_81 (team VARCHAR, country VARCHAR, uci_points VARCHAR)"}, {"answer": "SELECT country FROM table_name_24 WHERE assets_us$billion = \"x\" AND inception = \"2007\" AND abbreviation = \"adic\"", "question": "Which country has assets of x, an inception of 2007, and an abbreviation of adic?", "context": "CREATE TABLE table_name_24 (country VARCHAR, abbreviation VARCHAR, assets_us$billion VARCHAR, inception VARCHAR)"}, {"answer": "SELECT abbreviation FROM table_name_88 WHERE country = \"libya\"", "question": "What's the abbreviation for libya?", "context": "CREATE TABLE table_name_88 (abbreviation VARCHAR, country VARCHAR)"}, {"answer": "SELECT origin FROM table_name_1 WHERE abbreviation = \"atf\"", "question": "What's the origin for the country abbreviated atf?", "context": "CREATE TABLE table_name_1 (origin VARCHAR, abbreviation VARCHAR)"}, {"answer": "SELECT inception FROM table_name_47 WHERE assets_us$billion = \"25.5\" AND abbreviation = \"psf\"", "question": "What's the inception for the country with 25.5 billion USD in assets and an abbreviation of psf?", "context": "CREATE TABLE table_name_47 (inception VARCHAR, assets_us$billion VARCHAR, abbreviation VARCHAR)"}, {"answer": "SELECT country FROM table_name_61 WHERE abbreviation = \"kia\"", "question": "Which country has an abbreviation of kia?", "context": "CREATE TABLE table_name_61 (country VARCHAR, abbreviation VARCHAR)"}, {"answer": "SELECT abbreviation FROM table_name_79 WHERE inception = \"1999\" AND assets_us$billion = \"7.1\"", "question": "What's the abbreviation for the country with an inception of 1999 and US$Billion assets of 7.1?", "context": "CREATE TABLE table_name_79 (abbreviation VARCHAR, inception VARCHAR, assets_us$billion VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_47 WHERE home_team = \"essendon\"", "question": "What was the opponent of the home team of essendon?", "context": "CREATE TABLE table_name_47 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT cast FROM table_name_80 WHERE director = \"b. reeves eason and joseph kane\"", "question": "Tell me the cast for b. reeves eason and joseph kane", "context": "CREATE TABLE table_name_80 (cast VARCHAR, director VARCHAR)"}, {"answer": "SELECT director FROM table_name_29 WHERE serial_title = \"heroes of the wild\"", "question": "I want the director for heroes of the wild", "context": "CREATE TABLE table_name_29 (director VARCHAR, serial_title VARCHAR)"}, {"answer": "SELECT year FROM table_name_13 WHERE serial_title = \"the three musketeers\"", "question": "I want the year for the three musketeers", "context": "CREATE TABLE table_name_13 (year VARCHAR, serial_title VARCHAR)"}, {"answer": "SELECT cast FROM table_name_75 WHERE director = \"colbert clark and armand schaefer\" AND serial_title = \"burn 'em up barnes\"", "question": "I want the cast for director of colbert clark and armand schaefer for burn 'em up barnes", "context": "CREATE TABLE table_name_75 (cast VARCHAR, director VARCHAR, serial_title VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_69 WHERE venue = \"kardinia park\"", "question": "How large was the crowd at the Kardinia Park venue games?", "context": "CREATE TABLE table_name_69 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_3 WHERE away_team = \"carlton\"", "question": "What was the score of the Home team that played against Carlton's Away game?", "context": "CREATE TABLE table_name_3 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT pick FROM table_name_42 WHERE player = \"mark hayes\"", "question": "What was the pick number when mark hayes was drafted?", "context": "CREATE TABLE table_name_42 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_93 WHERE pick = 63", "question": "Which team had a pick of 63?", "context": "CREATE TABLE table_name_93 (school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_44 WHERE position = \"linebacker\" AND pick < 288", "question": "Which team had a position of linebacker with a pick smaller of 288?", "context": "CREATE TABLE table_name_44 (school_club_team VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_70 WHERE round < 8 AND school_club_team = \"louisville\"", "question": "What player did louisville pick when the round was below 8?", "context": "CREATE TABLE table_name_70 (player VARCHAR, round VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_81 WHERE score = \"3\u20136, 6\u20133, 6\u20130\"", "question": "What was the outcome of the game that had a score of 3\u20136, 6\u20133, 6\u20130?", "context": "CREATE TABLE table_name_81 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_77 WHERE score = \"7\u20135, 6\u20133\" AND date = \"27 july 2003\"", "question": "On 27 July 2003 what was the outcome of the game that resulted in a score of 7\u20135, 6\u20133?", "context": "CREATE TABLE table_name_77 (outcome VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE opponent_in_the_final = \"lenka novotn\u00e1\"", "question": "What was the final score of the game against Lenka Novotn\u00e1?", "context": "CREATE TABLE table_name_29 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_23 WHERE surface = \"clay\" AND score = \"6\u20134, 6\u20134\"", "question": "In the surface of clay who was the opponent in the game resulting in a score of 6\u20134, 6\u20134?", "context": "CREATE TABLE table_name_23 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE opponent_in_the_final = \"ana ivanovic\"", "question": "What was the final score of the game against opponent Ana Ivanovic?", "context": "CREATE TABLE table_name_75 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_12 WHERE time_retired = \"+58.182\" AND laps < 67", "question": "What is the total grid number where the time/retired is +58.182 and the lap number is less than 67?", "context": "CREATE TABLE table_name_12 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT name_of_horse FROM table_name_77 WHERE year_inducted = 2011 AND broodmare_sire = \"cowboy p-12\"", "question": "What horse was induced in 2011 with a sire of cowboy p-12?", "context": "CREATE TABLE table_name_77 (name_of_horse VARCHAR, year_inducted VARCHAR, broodmare_sire VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_65 WHERE away_team = \"hawthorn\"", "question": "Who was the home team that played against hawthorn?", "context": "CREATE TABLE table_name_65 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_15 WHERE home_team = \"collingwood\"", "question": "Who was the away team playing against collingwood?", "context": "CREATE TABLE table_name_15 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_65 WHERE venue = \"punt road oval\"", "question": "What was the biggest crowd at punt road oval?", "context": "CREATE TABLE table_name_65 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_56 WHERE venue = \"windy hill\"", "question": "Who is the home team based at windy hill?", "context": "CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_45 WHERE silver < 23 AND rank > 5 AND bronze = 6", "question": "What is the low gold total for nations with under 23 silvers, ranked beloe 5, and 6 bronzes?", "context": "CREATE TABLE table_name_45 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_61 WHERE gold = 3 AND bronze < 5", "question": "What is the high silver total for nations with 3 golds and under 5 bronzes?", "context": "CREATE TABLE table_name_61 (silver INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_60 WHERE bronze < 6 AND gold > 3", "question": "How many silvers for nations with over 3 golds and under 6 bronzes?", "context": "CREATE TABLE table_name_60 (silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_13 WHERE venue = \"corio oval\"", "question": "What was the smallest crowd in games at the corio oval?", "context": "CREATE TABLE table_name_13 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_52 WHERE away_team = \"melbourne\"", "question": "In the match where Melbourne was the away team, how much did they score?", "context": "CREATE TABLE table_name_52 (away_team VARCHAR)"}, {"answer": "SELECT decision FROM table_name_99 WHERE visitor = \"buffalo\"", "question": "Who had the decision when buffalo was the visitor?", "context": "CREATE TABLE table_name_99 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT venue FROM table_name_85 WHERE away_team = \"north melbourne\"", "question": "Tell me the venue for north melbourne", "context": "CREATE TABLE table_name_85 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT name FROM table_name_19 WHERE listed = \"03/31/1989\" AND county = \"spartanburg\"", "question": "What name has a listed of 03/31/1989 in spartanburg county?", "context": "CREATE TABLE table_name_19 (name VARCHAR, listed VARCHAR, county VARCHAR)"}, {"answer": "SELECT proposed FROM table_name_65 WHERE listed = \"12/16/1994\" AND county = \"beaufort\"", "question": "What date was proposed when the listed date was 12/16/1994 in the County of beaufort?", "context": "CREATE TABLE table_name_65 (proposed VARCHAR, listed VARCHAR, county VARCHAR)"}, {"answer": "SELECT name FROM table_name_97 WHERE listed = \"02/21/1990\" AND cerclis_id = \"scd980844005\"", "question": "What name was listed 02/21/1990, and a CERCLIS ID of scd980844005?", "context": "CREATE TABLE table_name_97 (name VARCHAR, listed VARCHAR, cerclis_id VARCHAR)"}, {"answer": "SELECT county FROM table_name_64 WHERE cerclis_id = \"scd037405362\"", "question": "What county has a CERCLIS ID of scd037405362?", "context": "CREATE TABLE table_name_64 (county VARCHAR, cerclis_id VARCHAR)"}, {"answer": "SELECT name FROM table_name_44 WHERE county = \"charleston\" AND cerclis_id = \"scd980711279\"", "question": "What is the name for Charleston County with a CERCLIS ID of scd980711279?", "context": "CREATE TABLE table_name_44 (name VARCHAR, county VARCHAR, cerclis_id VARCHAR)"}, {"answer": "SELECT name FROM table_name_42 WHERE listed = \"11/21/1989\"", "question": "What is the name for the listed date of 11/21/1989?", "context": "CREATE TABLE table_name_42 (name VARCHAR, listed VARCHAR)"}, {"answer": "SELECT category FROM table_name_54 WHERE result = \"nominated\" AND nominee = \"gene barry\"", "question": "Which category was Gene Barry nominated in?", "context": "CREATE TABLE table_name_54 (category VARCHAR, result VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT year FROM table_name_44 WHERE award = \"drama desk award\" AND result = \"won\" AND nominee = \"george hearn\"", "question": "What year was the Drama Desk award won by nominee George Hearn?", "context": "CREATE TABLE table_name_44 (year VARCHAR, nominee VARCHAR, award VARCHAR, result VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_8 WHERE grid = 5", "question": "What is the time/retired for grid 5?", "context": "CREATE TABLE table_name_8 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE opponent = \"liberia\" AND score = \"1-0\"", "question": "When was the event that had Liberia as an opponent and resulted in a 1-0 score?", "context": "CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE competition = \"2014 world cup qualification\" AND location = \"kampala\" AND opponent = \"angola\"", "question": "When was the 2014 World Cup Qualification in Kampala that had Angola as an opponent", "context": "CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR, competition VARCHAR, location VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_61 WHERE zone = \"europe/africa group i\"", "question": "Who was the Europe/Africa group i's opponent?", "context": "CREATE TABLE table_name_61 (opponent VARCHAR, zone VARCHAR)"}, {"answer": "SELECT zone FROM table_name_42 WHERE round = \"semifinal\" AND against = \"israel\" AND opponent = \"anna smashnova\"", "question": "What zone was the Semifinal game played against Israel with Anna Smashnova as the opponent?", "context": "CREATE TABLE table_name_42 (zone VARCHAR, opponent VARCHAR, round VARCHAR, against VARCHAR)"}, {"answer": "SELECT surface FROM table_name_61 WHERE opponent = \"shahar pe'er\"", "question": "What surface was played on against Shahar Pe'er?", "context": "CREATE TABLE table_name_61 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT years FROM table_name_15 WHERE distance = \"marathon\" AND wins = 3", "question": "I want the years for marathon distance and wins of 3", "context": "CREATE TABLE table_name_15 (years VARCHAR, distance VARCHAR, wins VARCHAR)"}, {"answer": "SELECT country FROM table_name_72 WHERE athlete = \"ziedonis za\u013ckalns\"", "question": "Name the country for athlete of ziedonis za\u013ckalns", "context": "CREATE TABLE table_name_72 (country VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_12 WHERE result = \"l 49\u201321\"", "question": "I want the attendance which has a result of l 49\u201321", "context": "CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_12 WHERE result = \"l 26\u20133\"", "question": "Tell me the attendance with a result of l 26\u20133", "context": "CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_26 WHERE date = \"december 19, 2004\"", "question": "I want to know the lowest week with a date of december 19, 2004", "context": "CREATE TABLE table_name_26 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_81 WHERE team = \"new orleans\"", "question": "What is the attendance of the location where New Orleans's team plays?", "context": "CREATE TABLE table_name_81 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_30 WHERE high_points = \"raymond felton (26)\"", "question": "Which team has the high points of Raymond Felton (26)?", "context": "CREATE TABLE table_name_30 (team VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_48 WHERE grid = 7", "question": "What is the time of the driver on grid 7?", "context": "CREATE TABLE table_name_48 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_75 WHERE grid = 2", "question": "Which Constructor has grid 2?", "context": "CREATE TABLE table_name_75 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_1 WHERE laps = 55", "question": "What is the highest grid that has 55 laps?", "context": "CREATE TABLE table_name_1 (grid INTEGER, laps VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_53 WHERE home_team = \"richmond\"", "question": "Who was Richmond's away team opponent?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_78 WHERE venue = \"vfl park\"", "question": "What was the away score at VFL Park?", "context": "CREATE TABLE table_name_78 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_87 WHERE home_team = \"richmond\"", "question": "Tell me the home team score for richmond home team", "context": "CREATE TABLE table_name_87 (home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_6 WHERE date = \"8 june 1931\" AND away_team = \"st kilda\"", "question": "Tell me the venue for 8 june 1931 for st kilda away team", "context": "CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_76 WHERE home_team = \"fitzroy\"", "question": "When fitzroy was the home team, how much did the away team score?", "context": "CREATE TABLE table_name_76 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_56 WHERE home_team = \"essendon\"", "question": "When essendon was the home team, how much did they score?", "context": "CREATE TABLE table_name_56 (home_team VARCHAR)"}, {"answer": "SELECT time FROM table_name_6 WHERE opponent = \"shintaro ishiwatari\"", "question": "What is shintaro ishiwatari's time?", "context": "CREATE TABLE table_name_6 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_90 WHERE opponent = \"sakae kasuya\"", "question": "How many rounds have an Opponent of sakae kasuya?", "context": "CREATE TABLE table_name_90 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_55 WHERE method = \"decision(majority)\" AND opponent = \"keisuke yamada\"", "question": "Which time has a Method of decision(majority), and an Opponent of keisuke yamada?", "context": "CREATE TABLE table_name_55 (time VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_33 WHERE event = \"shooto\" AND round = 2 AND opponent = \"issei tamura\"", "question": "Which method has an Event of shooto, a Round of 2, and an Opponent of issei tamura?", "context": "CREATE TABLE table_name_33 (method VARCHAR, opponent VARCHAR, event VARCHAR, round VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_24 WHERE venue = \"punt road oval\"", "question": "What is the away team that played at punt road oval?", "context": "CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_81 WHERE venue = \"windy hill\"", "question": "What is the home team score that played at windy hill?", "context": "CREATE TABLE table_name_81 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_31 WHERE away_team = \"geelong\"", "question": "How big was the crowd at the game the away team geelong played at?", "context": "CREATE TABLE table_name_31 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_91 WHERE race_name = \"i news of the world trophy\"", "question": "Which constructor has a race called I News of the World Trophy?", "context": "CREATE TABLE table_name_91 (constructor VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_53 WHERE circuit = \"goodwood\"", "question": "Which Constructor has the goodwood circuit?", "context": "CREATE TABLE table_name_53 (constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_26 WHERE race_name = \"vii rand grand prix\"", "question": "What driver won the VII Rand Grand Prix?", "context": "CREATE TABLE table_name_26 (winning_driver VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_50 WHERE circuit = \"pergusa\"", "question": "What is the name of the race that has the pergusa Circuit?", "context": "CREATE TABLE table_name_50 (race_name VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_83 WHERE away_team = \"collingwood\"", "question": "What is the scoreof the away team Collingwood?", "context": "CREATE TABLE table_name_83 (away_team VARCHAR)"}, {"answer": "SELECT team FROM table_name_68 WHERE driver = \"jean alesi\" AND engine_\u2020 = \"acer 01a\"", "question": "Jean Alesi, drives the Acer 01A engine for which team?", "context": "CREATE TABLE table_name_68 (team VARCHAR, driver VARCHAR, engine_\u2020 VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_84 WHERE driver = \"alex yoong\"", "question": "Who built Alex Yoong's car?", "context": "CREATE TABLE table_name_84 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_60 WHERE player = \"jim colbert\"", "question": "What's jim colbert's highest rank?", "context": "CREATE TABLE table_name_60 (rank INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_7 WHERE player = \"hale irwin\"", "question": "What's hale irwin's average rank?", "context": "CREATE TABLE table_name_7 (rank INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(avg) FROM table_name_70 WHERE long = 32", "question": "What is the sum of averages with a long value of 32?", "context": "CREATE TABLE table_name_70 (avg INTEGER, long VARCHAR)"}, {"answer": "SELECT track AS time FROM table_name_80 WHERE disc > 2 AND track < 22 AND english_title = \"younger girl\"", "question": "Which Track time has a Disc larger than 2, a Track smaller than 22, and an English title of younger girl?", "context": "CREATE TABLE table_name_80 (track VARCHAR, english_title VARCHAR, disc VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_44 WHERE disc < 12 AND artist = \"k\u014dz\u014d murashita\"", "question": "Which Japanese title has a Disc smaller than 12, and an Artist of k\u014dz\u014d murashita?", "context": "CREATE TABLE table_name_44 (japanese_title VARCHAR, disc VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MAX(track) FROM table_name_12 WHERE japanese_title = \"\u30e1\u30ed\u30c7\u30a3\u30fc\"", "question": "Which track has a Japanese title of \u30e1\u30ed\u30c7\u30a3\u30fc?", "context": "CREATE TABLE table_name_12 (track INTEGER, japanese_title VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_2 WHERE time_retired = \"clutch\"", "question": "What Grid has a Time/Retired of clutch?", "context": "CREATE TABLE table_name_2 (grid INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_88 WHERE laps > 34 AND grid < 15 AND driver = \"damon hill\"", "question": "What is the Time/Retired with more Laps than 34, a Grid smaller than 15, and Driver Damon Hill?", "context": "CREATE TABLE table_name_88 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT laps FROM table_name_89 WHERE grid < 11 AND driver = \"david coulthard\"", "question": "How many Laps Did Driver David Coulthard have on a Grid smaller than 11?", "context": "CREATE TABLE table_name_89 (laps VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT type FROM table_name_14 WHERE course = \"orta san giulio to milan\"", "question": "What type of race took place on the course Orta San Giulio to Milan?", "context": "CREATE TABLE table_name_14 (type VARCHAR, course VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE course = \"vasto to campitello matese\"", "question": "When did the course Vasto to Campitello Matese took place?", "context": "CREATE TABLE table_name_25 (date VARCHAR, course VARCHAR)"}, {"answer": "SELECT winner FROM table_name_49 WHERE course = \"brescia\"", "question": "Who won the course Brescia?", "context": "CREATE TABLE table_name_49 (winner VARCHAR, course VARCHAR)"}, {"answer": "SELECT league FROM table_name_90 WHERE year = \"1996\"", "question": "Name the league for 1996", "context": "CREATE TABLE table_name_90 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_name_16 WHERE year = \"1994\"", "question": "Name the league for 1994", "context": "CREATE TABLE table_name_16 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_name_2 WHERE reg_season = \"1st\"", "question": "Tell me the league with a regular 1st season", "context": "CREATE TABLE table_name_2 (league VARCHAR, reg_season VARCHAR)"}, {"answer": "SELECT LNER AS class FROM table_name_31 WHERE class = \"6db\"", "question": "What LNER Class has a Class of 6db?", "context": "CREATE TABLE table_name_31 (LNER VARCHAR, class VARCHAR)"}, {"answer": "SELECT LNER AS class FROM table_name_86 WHERE class = \"3\"", "question": "What LNER Class has a Class of 3?", "context": "CREATE TABLE table_name_86 (LNER VARCHAR, class VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_95 WHERE reg_gp = 0 AND pl_gp > 0", "question": "Which mean pick number had a Reg GP of 0, and a Pl GP that was bigger than 0?", "context": "CREATE TABLE table_name_95 (pick__number INTEGER, reg_gp VARCHAR, pl_gp VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_43 WHERE rd__number < 6 AND player = \"bob dailey\" AND reg_gp > 257", "question": "What is the highest Pick number that had a road number that was less than 6, featured Bob Dailey as a player, and which had a Reg GP bigger than 257?", "context": "CREATE TABLE table_name_43 (pick__number INTEGER, reg_gp VARCHAR, rd__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(pl_gp) FROM table_name_90 WHERE reg_gp = 0 AND rd__number > 8 AND pick__number > 146", "question": "What is the sum number of Pl GP when the Reg GP was 0, the Rd number was bigger than 8, and the pick number was bigger than 146?", "context": "CREATE TABLE table_name_90 (pl_gp VARCHAR, pick__number VARCHAR, reg_gp VARCHAR, rd__number VARCHAR)"}, {"answer": "SELECT birth_state FROM table_name_74 WHERE name = \"charles cotesworth pinckney\" AND election_year = 1808", "question": "What was the birth state of Charles Cotesworth Pinckney who was elected in 1808?", "context": "CREATE TABLE table_name_74 (birth_state VARCHAR, name VARCHAR, election_year VARCHAR)"}, {"answer": "SELECT postseason FROM table_name_20 WHERE team = \"nebraska\"", "question": "How many postseason titles has Nebraska received?", "context": "CREATE TABLE table_name_20 (postseason VARCHAR, team VARCHAR)"}, {"answer": "SELECT loss FROM table_name_3 WHERE date = \"august 20\"", "question": "What is the lost On August 20", "context": "CREATE TABLE table_name_3 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_70 WHERE save = \"\u2013\" AND record = \"94\u201336\"", "question": "WHAT IS THE NUMBER OF Attendance  WITH A RECORD 94\u201336", "context": "CREATE TABLE table_name_70 (attendance INTEGER, save VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_99 WHERE loss = \"paniagua (3\u20133)\"", "question": "WHICH Attendance that has a Loss of paniagua (3\u20133)?", "context": "CREATE TABLE table_name_99 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_59 WHERE venue = \"arden street oval\"", "question": "How many points did the away team score at Arden Street Oval?", "context": "CREATE TABLE table_name_59 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_16 WHERE home_team = \"footscray\"", "question": "In what venue does Footscray play?", "context": "CREATE TABLE table_name_16 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT pos FROM table_name_39 WHERE race = \"24 hours of le mans\" AND co_driver = \"jackie oliver\"", "question": "What position did Co-driver Jackie Oliver finish in the 24 hours of Le Mans?", "context": "CREATE TABLE table_name_39 (pos VARCHAR, race VARCHAR, co_driver VARCHAR)"}, {"answer": "SELECT co_driver FROM table_name_46 WHERE year = 1970 AND race = \"targa florio\"", "question": "Who was the co-driver in 1970 for the race of Targa Florio?", "context": "CREATE TABLE table_name_46 (co_driver VARCHAR, year VARCHAR, race VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_5 WHERE grid = 13", "question": "Which vehicle has a Grid of 13?", "context": "CREATE TABLE table_name_5 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_51 WHERE laps = 80 AND grid > 2", "question": "What's the Time/Retired of 80 laps with a Grid larger than 2?", "context": "CREATE TABLE table_name_51 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE team = \"detroit\" AND game > 3", "question": "Tell me the date for detroit and game more than 3", "context": "CREATE TABLE table_name_53 (date VARCHAR, team VARCHAR, game VARCHAR)"}, {"answer": "SELECT team FROM table_name_83 WHERE high_assists = \"nelson (5)\"", "question": "Name the team with high assists of nelson (5)", "context": "CREATE TABLE table_name_83 (team VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE high_rebounds = \"howard (8)\"", "question": "Name the score for howard (8) high rebounds", "context": "CREATE TABLE table_name_44 (score VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_34 WHERE date = \"october 11\" AND game > 4", "question": "Where Date is october 11, and game greater than 4 what is the lowest attendance?", "context": "CREATE TABLE table_name_34 (attendance INTEGER, date VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_43 WHERE date = \"october 7\" AND game > 1", "question": "Where date is october 7 and game greater than 1, what is the highest attendance?", "context": "CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR, game VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_40 WHERE date = \"october 14\"", "question": "Where Date is october 14 what is the attendance?", "context": "CREATE TABLE table_name_40 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_90 WHERE venue = \"mcg\"", "question": "Which away team had a venue of mcg?", "context": "CREATE TABLE table_name_90 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_25 WHERE venue = \"punt road oval\"", "question": "When did the away team score at Punt Road Oval?", "context": "CREATE TABLE table_name_25 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_12 WHERE home_team = \"north melbourne\"", "question": "How many points did North Melbourne score?", "context": "CREATE TABLE table_name_12 (home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_22 WHERE date = \"march 4\"", "question": "What was the score on March 4?", "context": "CREATE TABLE table_name_22 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE high_assists = \"raymond felton (6)\" AND high_points = \"jason richardson (42)\"", "question": "On which date was Raymond Felton (6) the high assists and Jason Richardson (42) the high points?", "context": "CREATE TABLE table_name_32 (date VARCHAR, high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_32 WHERE team = \"golden state\"", "question": "What is the location attendance when the team is Golden State?", "context": "CREATE TABLE table_name_32 (location_attendance VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_89 WHERE visitor = \"magic\"", "question": "Which record has a Visitor of magic?", "context": "CREATE TABLE table_name_89 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE home = \"grizzlies\" AND leading_scorer = \"rudy gay (18)\"", "question": "Which score has a Home of grizzlies, and a Leading scorer of rudy gay (18)?", "context": "CREATE TABLE table_name_62 (score VARCHAR, home VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_66 WHERE home = \"grizzlies\" AND record = \"10\u201328\"", "question": "Which leading scorer has a Home of grizzlies, and a Record of 10\u201328?", "context": "CREATE TABLE table_name_66 (leading_scorer VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE away_team = \"carlton\"", "question": "If the Away team was carlton, what Date did they play?", "context": "CREATE TABLE table_name_97 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_34 WHERE home = \"chicago\" AND score = \"3 \u2013 2\"", "question": "What is the Visitor with a Home with chicago, and a Score of 3 \u2013 2?", "context": "CREATE TABLE table_name_34 (visitor VARCHAR, home VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE date = \"may 2\"", "question": "What is the Score with a Date with may 2?", "context": "CREATE TABLE table_name_47 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE home = \"colorado\" AND date = \"may 11\"", "question": "What is the Score with a Home of colorado, and a Date with may 11?", "context": "CREATE TABLE table_name_72 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_82 WHERE visitor = \"chicago\" AND series = \"3 \u2013 2\"", "question": "What is the Home with a Visitor of chicago, and a Series with 3 \u2013 2?", "context": "CREATE TABLE table_name_82 (home VARCHAR, visitor VARCHAR, series VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_50 WHERE series = \"3 \u2013 2\"", "question": "What is the Visitor with a Series with 3 \u2013 2?", "context": "CREATE TABLE table_name_50 (visitor VARCHAR, series VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_35 WHERE score = \"4 \u2013 3\"", "question": "What is the Visitor with a Score with 4 \u2013 3?", "context": "CREATE TABLE table_name_35 (visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_84 WHERE 2011 = \"1r\" AND 2010 = \"1r\"", "question": "What is the 2007 value with 1r in 2011 and 1r in 2010?", "context": "CREATE TABLE table_name_84 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_13 WHERE 2010 = \"1r\" AND 2006 = \"2r\"", "question": "What is the 2012 value with 1r in 2010 and 2r in 2006?", "context": "CREATE TABLE table_name_13 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_28 WHERE tournament = \"australian open\"", "question": "What is the 2010 value for the Australian Open?", "context": "CREATE TABLE table_name_28 (tournament VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_68 WHERE 2009 = \"a\" AND 2011 = \"a\" AND 2007 = \"a\"", "question": "What is the 2006 value of the 2009 A value, 2011 A value, and A as the 2007 value?", "context": "CREATE TABLE table_name_68 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_8 WHERE 2007 = \"3r\"", "question": "What is the 2006 value with 3r in 2007?", "context": "CREATE TABLE table_name_8 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_22 WHERE 2008 = \"479\"", "question": "What is the 2012 value with 479 in 2008?", "context": "CREATE TABLE table_name_22 (Id VARCHAR)"}, {"answer": "SELECT builder FROM table_name_16 WHERE pennant = \"r90\"", "question": "What is the building for the r90 pennant?", "context": "CREATE TABLE table_name_16 (builder VARCHAR, pennant VARCHAR)"}, {"answer": "SELECT pennant FROM table_name_8 WHERE builder = \"denny, dumbarton\"", "question": "What is the pennant with Denny, Dumbarton as the builder?", "context": "CREATE TABLE table_name_8 (pennant VARCHAR, builder VARCHAR)"}, {"answer": "SELECT laid_down FROM table_name_37 WHERE pennant = \"r29\"", "question": "What is the laid down date of the destroyer with a r29 pennant?", "context": "CREATE TABLE table_name_37 (laid_down VARCHAR, pennant VARCHAR)"}, {"answer": "SELECT location___state FROM table_name_92 WHERE date = \"16 jun\"", "question": "What is the location/state of the race on 16 Jun?", "context": "CREATE TABLE table_name_92 (location___state VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(heat) FROM table_name_65 WHERE race_title = \"lakeside\"", "question": "What is the lowest heat of the Lakeside race?", "context": "CREATE TABLE table_name_65 (heat INTEGER, race_title VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_42 WHERE away_team = \"footscray\"", "question": "When the Away team is footscray, what is the Home team playing?", "context": "CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_91 WHERE venue = \"vfl park\"", "question": "Which Away team plays at the Venue vfl park?", "context": "CREATE TABLE table_name_91 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_87 WHERE opponent = \"washington redskins\"", "question": "Name the least week for opponent of washington redskins", "context": "CREATE TABLE table_name_87 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_49 WHERE week = 10", "question": "Name the tv time for week 10", "context": "CREATE TABLE table_name_49 (tv_time VARCHAR, week VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_51 WHERE grid > 6 AND laps = 57", "question": "What is the Time/Retired for a Grid larger than 6, and 57 laps?", "context": "CREATE TABLE table_name_51 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT grid FROM table_name_12 WHERE driver = \"denny hulme\"", "question": "What grid for denny hulme?", "context": "CREATE TABLE table_name_12 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_66 WHERE time_retired = \"tyre\" AND grid > 10", "question": "How many laps for a Time/Retired of tyre, and a Grid larger than 10?", "context": "CREATE TABLE table_name_66 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT outcomes FROM table_name_93 WHERE rocket_launch = \"rehnuma-11\"", "question": "What Outcome has a Rocket launch of rehnuma-11?", "context": "CREATE TABLE table_name_93 (outcomes VARCHAR, rocket_launch VARCHAR)"}, {"answer": "SELECT institutional_authority FROM table_name_67 WHERE rocket_launch = \"rehnuma-10\"", "question": "Which Institutional authority has a Rocket launch of rehnuma-10?", "context": "CREATE TABLE table_name_67 (institutional_authority VARCHAR, rocket_launch VARCHAR)"}, {"answer": "SELECT derivatives FROM table_name_57 WHERE launch_date = \"july 15, 1970; 15:05 gmt\"", "question": "Which Derivative has a Launch Date of july 15, 1970; 15:05 gmt?", "context": "CREATE TABLE table_name_57 (derivatives VARCHAR, launch_date VARCHAR)"}, {"answer": "SELECT outcomes FROM table_name_32 WHERE launch_date = \"march 18, 1964; 14:50 gmt\"", "question": "Which Outcome has a Launch Date of march 18, 1964; 14:50 gmt?", "context": "CREATE TABLE table_name_32 (outcomes VARCHAR, launch_date VARCHAR)"}, {"answer": "SELECT mission FROM table_name_47 WHERE launch_date = \"december 30, 1970; 14:50 gmt\"", "question": "Which Mission has a Launch Date of december 30, 1970; 14:50 gmt?", "context": "CREATE TABLE table_name_47 (mission VARCHAR, launch_date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_72 WHERE date = \"3/2\"", "question": "What team was the visitor on 3/2?", "context": "CREATE TABLE table_name_72 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_56 WHERE venue = \"kardinia park\"", "question": "What is the home team score for kardinia park?", "context": "CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT realization FROM table_name_5 WHERE phoneme = \"/i/\" AND example = \"/id\u02d0a/\"", "question": "Name the realization for phoneme of /i/ and example of /id\u02d0a/", "context": "CREATE TABLE table_name_5 (realization VARCHAR, phoneme VARCHAR, example VARCHAR)"}, {"answer": "SELECT phoneme FROM table_name_13 WHERE realization = \"[\u026aj]\"", "question": "Name the phoneme for realizaiton of [\u026aj]", "context": "CREATE TABLE table_name_13 (phoneme VARCHAR, realization VARCHAR)"}, {"answer": "SELECT example FROM table_name_46 WHERE environment = \"#_x\"", "question": "Name the example when the environment is #_x", "context": "CREATE TABLE table_name_46 (example VARCHAR, environment VARCHAR)"}, {"answer": "SELECT example FROM table_name_36 WHERE realization = \"[\u0250]\"", "question": "Name the example when the realization is [\u0250]", "context": "CREATE TABLE table_name_36 (example VARCHAR, realization VARCHAR)"}, {"answer": "SELECT phoneme FROM table_name_78 WHERE example = \"/ums\u0281/\"", "question": "Name the phoneme when the example is /ums\u0281/", "context": "CREATE TABLE table_name_78 (phoneme VARCHAR, example VARCHAR)"}, {"answer": "SELECT phoneme FROM table_name_16 WHERE realization = \"[\u0251]\"", "question": "Name the phoneme when the realizationis [\u0251]", "context": "CREATE TABLE table_name_16 (phoneme VARCHAR, realization VARCHAR)"}, {"answer": "SELECT power FROM table_name_84 WHERE engine_code = \"m44b19\"", "question": "What is the power of the engine with an engine code m44b19?", "context": "CREATE TABLE table_name_84 (power VARCHAR, engine_code VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_80 WHERE driver = \"piercarlo ghinzani\" AND laps > 3", "question": "What is the highest numbered grid for piercarlo ghinzani with over 3 laps?", "context": "CREATE TABLE table_name_80 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_31 WHERE grid > 18 AND time_retired = \"electrical\"", "question": "How many laps for a grid of over 18 and retired due to electrical failure?", "context": "CREATE TABLE table_name_31 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_36 WHERE venue = \"junction oval\"", "question": "What was the average crowd attendance for the Junction Oval venue?", "context": "CREATE TABLE table_name_36 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_87 WHERE venue = \"princes park\"", "question": "What is the home team for the Princes Park venue?", "context": "CREATE TABLE table_name_87 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_36 WHERE home_team = \"footscray\"", "question": "What is the average home team score for Footscray?", "context": "CREATE TABLE table_name_36 (home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_19 WHERE away_team = \"geelong\"", "question": "Which home teams had Geelong as the away team?", "context": "CREATE TABLE table_name_19 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE opponent = \"giants\" AND attendance > 24 OFFSET 100", "question": "When did the Rockies play the Giants with an attendance over 24,100?", "context": "CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE record = \"61\u201366\"", "question": "What is the date of the game when the Rockies had a record of 61\u201366?", "context": "CREATE TABLE table_name_91 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(seasons) FROM table_name_71 WHERE coach = \"john mcfadden\"", "question": "How many seasons has John Mcfadden coached?", "context": "CREATE TABLE table_name_71 (seasons VARCHAR, coach VARCHAR)"}, {"answer": "SELECT SUM(annual_ridership__2012_) FROM table_name_52 WHERE stations = 13 AND lines > 4", "question": "What is the number of annual ridership with a station that has more than 13 stations and larger than 4 lines?", "context": "CREATE TABLE table_name_52 (annual_ridership__2012_ INTEGER, stations VARCHAR, lines VARCHAR)"}, {"answer": "SELECT COUNT(lines) FROM table_name_44 WHERE stations < 44 AND rider_per_mile < 881", "question": "How many lines have fewer than 44 stations and fewer than 881 riders per mile?", "context": "CREATE TABLE table_name_44 (lines VARCHAR, stations VARCHAR, rider_per_mile VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_61 WHERE position = \"7th\"", "question": "What is the highest season for the 7th position?", "context": "CREATE TABLE table_name_61 (season INTEGER, position VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_42 WHERE tournament = \"blenheim\"", "question": "Who is the opponent in the final of the Tournament of Blenheim?", "context": "CREATE TABLE table_name_42 (opponent_in_the_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_3 WHERE date = \"august 14, 2006\"", "question": "Who is the opponent in the final on August 14, 2006?", "context": "CREATE TABLE table_name_3 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_20 WHERE surface = \"clay\" AND tournament = \"lyneham\"", "question": "Who is the opponent in the final with a clay surface at the Tournament of Lyneham?", "context": "CREATE TABLE table_name_20 (opponent_in_the_final VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_46 WHERE score = \"6\u20132, 6\u20131\"", "question": "On what surface was the score 6\u20132, 6\u20131?", "context": "CREATE TABLE table_name_46 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE tournament = \"cordenons\"", "question": "What is the score for the Tournament of Cordenons?", "context": "CREATE TABLE table_name_12 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE surface = \"clay\" AND opponent_in_the_final = \"cyril saulnier\"", "question": "On what date was the surface clay with Cyril Saulnier as the opponent in the final?", "context": "CREATE TABLE table_name_28 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT artist FROM table_name_9 WHERE mintage = 500", "question": "Which artist has a Mintage of 500?", "context": "CREATE TABLE table_name_9 (artist VARCHAR, mintage VARCHAR)"}, {"answer": "SELECT artist FROM table_name_20 WHERE issue_price = \"$1,541.95\"", "question": "Which Artist has an Issue Price of $1,541.95?", "context": "CREATE TABLE table_name_20 (artist VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_69 WHERE surface = \"hard\" AND score = \"6\u20133 7\u20136(5)\"", "question": "Who is the opponent in the final on a hard surface with a score of 6\u20133 7\u20136(5)?", "context": "CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_90 WHERE tournament = \"lahore\"", "question": "Who is the opponent in the Tournament of Lahore final?", "context": "CREATE TABLE table_name_90 (opponent_in_the_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE opponent_in_the_final = \"toshiaki sakai\" AND surface = \"grass\"", "question": "On what date did the opponent in the Toshiaki Sakai final play on a grass surface?", "context": "CREATE TABLE table_name_99 (date VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_78 WHERE tournament = \"lahore\" AND score = \"4\u20136 6\u20133 6\u20134\"", "question": "On what surface did a score of 4\u20136 6\u20133 6\u20134 occur at the Tournament of Lahore?", "context": "CREATE TABLE table_name_78 (surface VARCHAR, tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_73 WHERE opponent_in_the_final = \"toshiaki sakai\" AND surface = \"grass\"", "question": "Which tournament had Toshiaki Sakai as an opponent in the final on a grass surface?", "context": "CREATE TABLE table_name_73 (tournament VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE date = \"may 15\"", "question": "what was the score on the game that happened on May 15?", "context": "CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT status FROM table_name_8 WHERE country = \"bel\" AND transfer_window = \"winter\"", "question": "What is the status of bel with a Transfer window of winter?", "context": "CREATE TABLE table_name_8 (status VARCHAR, country VARCHAR, transfer_window VARCHAR)"}, {"answer": "SELECT name FROM table_name_92 WHERE moving_to = \"union\" AND country = \"cmr\"", "question": "What is the union moving name and is from cmr?", "context": "CREATE TABLE table_name_92 (name VARCHAR, moving_to VARCHAR, country VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_78 WHERE country = \"bel\"", "question": "What is the transfer window for bel?", "context": "CREATE TABLE table_name_78 (transfer_window VARCHAR, country VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_16 WHERE name = \"habarugira\"", "question": "What is the transfer period for habarugira?", "context": "CREATE TABLE table_name_16 (transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_76 WHERE away_team = \"north melbourne\"", "question": "How big was the crowd in game that featured the visiting team of north melbourne?", "context": "CREATE TABLE table_name_76 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_79 WHERE total < 1", "question": "How many bronze medals for the nation with less than 1 total?", "context": "CREATE TABLE table_name_79 (bronze INTEGER, total INTEGER)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_36 WHERE rank < 2 AND gold < 0", "question": "How many bronze medals for the nation ranked above 2, and under 0 golds?", "context": "CREATE TABLE table_name_36 (bronze VARCHAR, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_30 WHERE nation = \"japan\" AND gold > 1", "question": "How many silvers for japan (1 gold)?", "context": "CREATE TABLE table_name_30 (silver INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT authority FROM table_name_18 WHERE roll = 651", "question": "Which authority had a role of 651?", "context": "CREATE TABLE table_name_18 (authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT MIN(decile) FROM table_name_79 WHERE roll = 651", "question": "For the roll of 651, what was the lowest Decile?", "context": "CREATE TABLE table_name_79 (decile INTEGER, roll VARCHAR)"}, {"answer": "SELECT years FROM table_name_1 WHERE authority = \"state\" AND name = \"redhill school\"", "question": "What were the years for Redhill school, authority of state?", "context": "CREATE TABLE table_name_1 (years VARCHAR, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(roll) FROM table_name_53 WHERE area = \"karaka\"", "question": "What was the sum roll of Karaka area?", "context": "CREATE TABLE table_name_53 (roll INTEGER, area VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_50 WHERE away_team = \"north melbourne\"", "question": "What home team played North Melbourne?", "context": "CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_41 WHERE round > 4 AND position = \"right wing\"", "question": "What is the nationality of the player with a round after 4 and plays right wing?", "context": "CREATE TABLE table_name_41 (nationality VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_62 WHERE position = \"left wing\" AND player = \"ondrej roman\"", "question": "What is the college/junior/club team (league) of left wing Ondrej Roman?", "context": "CREATE TABLE table_name_62 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_69 WHERE venue = \"lake oval\"", "question": "Who played in lake oval while away?", "context": "CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_21 WHERE result = \"w 31-16\"", "question": "What week number saw a w 31-16 result?", "context": "CREATE TABLE table_name_21 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE week < 8 AND result = \"bye\"", "question": "When was the game before week 8 with a result of bye?", "context": "CREATE TABLE table_name_44 (date VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_21 WHERE opponent = \"new york giants\"", "question": "What week number had the New York Giants as opponent?", "context": "CREATE TABLE table_name_21 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_94 WHERE grid < 6 AND laps < 49", "question": "Who built the under grid 6 car with under 49 laps?", "context": "CREATE TABLE table_name_94 (constructor VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_40 WHERE grid = 2", "question": "Who built the grid 2 car?", "context": "CREATE TABLE table_name_40 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_7 WHERE laps < 65 AND time_retired = \"suspension\"", "question": "Who built the car that retired due to suspension before 65 laps?", "context": "CREATE TABLE table_name_7 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT valley_vista FROM table_name_39 WHERE dysart = \"1668\"", "question": "What Valley Vista has a Dysart of 1668?", "context": "CREATE TABLE table_name_39 (valley_vista VARCHAR, dysart VARCHAR)"}, {"answer": "SELECT valley_vista FROM table_name_47 WHERE willow_canyon = \"2169\"", "question": "What Valley Vista has a Willow Canyon of 2169?", "context": "CREATE TABLE table_name_47 (valley_vista VARCHAR, willow_canyon VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_2 WHERE venue = \"lake oval\"", "question": "How many people were in the crowd at Lake Oval?", "context": "CREATE TABLE table_name_2 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_88 WHERE date = \"27 june 1981\" AND venue = \"vfl park\"", "question": "What team was the home team on 27 june 1981, at vfl park?", "context": "CREATE TABLE table_name_88 (home_team VARCHAR, date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_99 WHERE chassis = \"56\"", "question": "What is the tyre with a 56 chassis?", "context": "CREATE TABLE table_name_99 (tyre VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT country FROM table_name_20 WHERE gdp__nominal_ = \"$29.9 billion\"", "question": "Which country has a GDP (nominal) of $29.9 billion?", "context": "CREATE TABLE table_name_20 (country VARCHAR, gdp__nominal_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE gdp__nominal_ = \"$29.9 billion\"", "question": "Which country has a GDP (nominal) of $29.9 billion?", "context": "CREATE TABLE table_name_46 (country VARCHAR, gdp__nominal_ VARCHAR)"}, {"answer": "SELECT gdp__nominal_ FROM table_name_98 WHERE population = \"5,550,239\"", "question": "Which GDP (nominal) has a Population of 5,550,239?", "context": "CREATE TABLE table_name_98 (gdp__nominal_ VARCHAR, population VARCHAR)"}, {"answer": "SELECT population FROM table_name_63 WHERE gdp__nominal_ = \"$6.4 billion\"", "question": "Which population has a GDP (nominal) of $6.4 billion?", "context": "CREATE TABLE table_name_63 (population VARCHAR, gdp__nominal_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_30 WHERE gdp__nominal_ = \"$29.9 billion\"", "question": "Which country has a GDP (nominal) of $29.9 billion?", "context": "CREATE TABLE table_name_30 (country VARCHAR, gdp__nominal_ VARCHAR)"}, {"answer": "SELECT gdp_per_capita__nominal_ FROM table_name_16 WHERE population = \"5,125,693\"", "question": "What is the GDP (nominal) with Population of 5,125,693?", "context": "CREATE TABLE table_name_16 (gdp_per_capita__nominal_ VARCHAR, population VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_79 WHERE points = 9", "question": "What is the earliest year for 9 points?", "context": "CREATE TABLE table_name_79 (year INTEGER, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_90 WHERE chassis = \"jaguar r3\"", "question": "What is the low score for the jaguar r3 chasis?", "context": "CREATE TABLE table_name_90 (points INTEGER, chassis VARCHAR)"}, {"answer": "SELECT notes FROM table_name_78 WHERE displacement = \"220cid (3,604cc)\"", "question": "What is the notes when the displacement is 220cid (3,604cc)?", "context": "CREATE TABLE table_name_78 (notes VARCHAR, displacement VARCHAR)"}, {"answer": "SELECT engine FROM table_name_91 WHERE notes = \"srt8\"", "question": "What is then engine when the notes state srt8?", "context": "CREATE TABLE table_name_91 (engine VARCHAR, notes VARCHAR)"}, {"answer": "SELECT power FROM table_name_43 WHERE displacement = \"182cid (2,988cc)\" AND notes = \"eu spec\"", "question": "What is the power when the displacement is 182cid (2,988cc) and the notes are eu spec?", "context": "CREATE TABLE table_name_43 (power VARCHAR, displacement VARCHAR, notes VARCHAR)"}, {"answer": "SELECT engine FROM table_name_52 WHERE years = \"2012-\"", "question": "What is the engine for year 2012-?", "context": "CREATE TABLE table_name_52 (engine VARCHAR, years VARCHAR)"}, {"answer": "SELECT record FROM table_name_96 WHERE home = \"columbus\" AND date = \"march 7\"", "question": "What is the record of the match with Columbus as the home team on March 7?", "context": "CREATE TABLE table_name_96 (record VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_20 WHERE date = \"march 18\"", "question": "What is the record of the game on March 18?", "context": "CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT height FROM table_name_72 WHERE college = \"wyoming\" AND name = \"guy frazier\"", "question": "Which height has a College of wyoming, and a Name of guy frazier?", "context": "CREATE TABLE table_name_72 (height VARCHAR, college VARCHAR, name VARCHAR)"}, {"answer": "SELECT season FROM table_name_33 WHERE location = \"athens\" AND winners = \"panathinaikos\"", "question": "Which season's winner is Panathinaikos and is located in Athens?", "context": "CREATE TABLE table_name_33 (season VARCHAR, location VARCHAR, winners VARCHAR)"}, {"answer": "SELECT recorded FROM table_name_34 WHERE translation = \"hate\"", "question": "What is the date recorded of Hate?", "context": "CREATE TABLE table_name_34 (recorded VARCHAR, translation VARCHAR)"}, {"answer": "SELECT composer FROM table_name_36 WHERE track < 4", "question": "Who is the composer on the tracks less than 4?", "context": "CREATE TABLE table_name_36 (composer VARCHAR, track INTEGER)"}, {"answer": "SELECT title FROM table_name_83 WHERE track = 7", "question": "What is the title of track 7?", "context": "CREATE TABLE table_name_83 (title VARCHAR, track VARCHAR)"}, {"answer": "SELECT recorded FROM table_name_73 WHERE track = 8", "question": "What is the recorded date of track 8?", "context": "CREATE TABLE table_name_73 (recorded VARCHAR, track VARCHAR)"}, {"answer": "SELECT SUM(no_built) FROM table_name_19 WHERE unit_nos = \"375301-310\"", "question": "How many number Builts had unit numbers of 375301-310?", "context": "CREATE TABLE table_name_19 (no_built INTEGER, unit_nos VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE home = \"montreal\" AND record = \"40\u201324\u20136\"", "question": "What was the score of the game where Montreal was the home team and the Devils had a record of 40\u201324\u20136?", "context": "CREATE TABLE table_name_91 (score VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_29 WHERE stores = \"140\"", "question": "Which location has 140 stores?", "context": "CREATE TABLE table_name_29 (location VARCHAR, stores VARCHAR)"}, {"answer": "SELECT year_opened FROM table_name_4 WHERE mall_name = \"short pump town center\"", "question": "Which year did the Short Pump Town Center Mall open?", "context": "CREATE TABLE table_name_4 (year_opened VARCHAR, mall_name VARCHAR)"}, {"answer": "SELECT retail_space_sq_feet__m\u00b2_ FROM table_name_70 WHERE mall_name = \"stony point fashion park\"", "question": "What is the retail space of the Stony Point Fashion Park Mall?", "context": "CREATE TABLE table_name_70 (retail_space_sq_feet__m\u00b2_ VARCHAR, mall_name VARCHAR)"}, {"answer": "SELECT mall_name FROM table_name_3 WHERE stores = \"140\"", "question": "Which Mall has 140 stores?", "context": "CREATE TABLE table_name_3 (mall_name VARCHAR, stores VARCHAR)"}, {"answer": "SELECT match FROM table_name_33 WHERE date = \"30 january 1938\"", "question": "What match was on 30 january 1938?", "context": "CREATE TABLE table_name_33 (match VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_75 WHERE match = \"napoli-roma\"", "question": "What was the result of the napoli-roma match?", "context": "CREATE TABLE table_name_75 (result VARCHAR, match VARCHAR)"}, {"answer": "SELECT player FROM table_name_15 WHERE school = \"seattle prep\"", "question": "What is the player that is from seattle prep?", "context": "CREATE TABLE table_name_15 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_31 WHERE height = \"6-0\"", "question": "What is the hometown of the player which has a height of 6-0?", "context": "CREATE TABLE table_name_31 (hometown VARCHAR, height VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_54 WHERE college = \"washington\"", "question": "What is the hometown for the player that went to the college of washington", "context": "CREATE TABLE table_name_54 (hometown VARCHAR, college VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_3 WHERE venue = \"princes park\"", "question": "What was the away team's score at Princes Park?", "context": "CREATE TABLE table_name_3 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE away_team = \"richmond\"", "question": "When did Richmond play an away game against Collingwood?", "context": "CREATE TABLE table_name_36 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT AVG(league) AS Cup FROM table_name_64 WHERE fa_cup > 0 AND league = 5", "question": "How many league cup goals on average for players with over 0 FA cup and 5 league goals?", "context": "CREATE TABLE table_name_64 (league INTEGER, fa_cup VARCHAR)"}, {"answer": "SELECT MIN(fa_cup) FROM table_name_58 WHERE name = \"viduka\" AND europe < 2", "question": "What is the low FA cup goals for viduka with under 2 europe goals?", "context": "CREATE TABLE table_name_58 (fa_cup INTEGER, name VARCHAR, europe VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_55 WHERE association = \"american music awards\" AND category = \"favorite rap/hip-hop new artist\"", "question": "Who won the most recent favorite rap/hip-hop new artist at the American music awards?", "context": "CREATE TABLE table_name_55 (year INTEGER, association VARCHAR, category VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE leading_scorer = \"maurice williams (25)\" AND score = \"102\u2013105\"", "question": "What is the Date with a Leading scorer with maurice williams (25), and a Score with 102\u2013105?", "context": "CREATE TABLE table_name_24 (date VARCHAR, leading_scorer VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE home = \"hornets\"", "question": "What is the Score with a Home with hornets?", "context": "CREATE TABLE table_name_54 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE visitor = \"bucks\" AND leading_scorer = \"maurice williams (25)\"", "question": "What is the Score with a Visitor of bucks, and a Leading scorer with maurice williams (25)?", "context": "CREATE TABLE table_name_81 (score VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT record FROM table_name_49 WHERE leading_scorer = \"andrew bogut (29)\"", "question": "What is the Record with a Leading scorer with andrew bogut (29)?", "context": "CREATE TABLE table_name_49 (record VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT record FROM table_name_38 WHERE leading_scorer = \"maurice williams (25)\" AND date = \"27 january 2008\"", "question": "What is the Record with a Leading scorer with maurice williams (25), and a Date with 27 january 2008?", "context": "CREATE TABLE table_name_38 (record VARCHAR, leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_12 WHERE score = \"80\u201387\" AND visitor = \"bucks\"", "question": "What is the Record with a Score with 80\u201387, and a Visitor with bucks?", "context": "CREATE TABLE table_name_12 (record VARCHAR, score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_74 WHERE player = \"tom boswell\"", "question": "What is the nationality of the player Tom Boswell?", "context": "CREATE TABLE table_name_74 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_18 WHERE school_club_team = \"duke\"", "question": "What is the nationality of the player from Duke?", "context": "CREATE TABLE table_name_18 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_31 WHERE school_club_team = \"florida international\"", "question": "What position did the player from Florida International play?", "context": "CREATE TABLE table_name_31 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_4 WHERE school_club_team = \"ucla\"", "question": "What is the nationality of the player from UCLA?", "context": "CREATE TABLE table_name_4 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT AVG(attendance_g) FROM table_name_48 WHERE tms > 18", "question": "What was Attendance/G with Tms more than 18?", "context": "CREATE TABLE table_name_48 (attendance_g INTEGER, tms INTEGER)"}, {"answer": "SELECT chassis FROM table_name_37 WHERE entrant = \"john mecom\"", "question": "Which chassis had an entrant of John Mecom?", "context": "CREATE TABLE table_name_37 (chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_27 WHERE entrant = \"ecurie nationale suisse\"", "question": "What tyre was used for an entrant of Ecurie Nationale Suisse?", "context": "CREATE TABLE table_name_27 (tyre VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_40 WHERE driver = \"hap sharp\"", "question": "Which rounds was Hap Sharp a driver in?", "context": "CREATE TABLE table_name_40 (rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_38 WHERE title = \"jotei\"", "question": "what is the year when the title is jotei?", "context": "CREATE TABLE table_name_38 (year INTEGER, title VARCHAR)"}, {"answer": "SELECT original_channel FROM table_name_67 WHERE year < 2006 AND note = \"supporting\"", "question": "what is the original channel when the year is before 2006 and the note is supporting?", "context": "CREATE TABLE table_name_67 (original_channel VARCHAR, year VARCHAR, note VARCHAR)"}, {"answer": "SELECT original_channel FROM table_name_61 WHERE note = \"co-star\" AND year = 2012", "question": "what is the original channel when the note is co-star in year 2012?", "context": "CREATE TABLE table_name_61 (original_channel VARCHAR, note VARCHAR, year VARCHAR)"}, {"answer": "SELECT original_channel FROM table_name_7 WHERE year > 2012", "question": "what is the original channel when the year is after 2012?", "context": "CREATE TABLE table_name_7 (original_channel VARCHAR, year INTEGER)"}, {"answer": "SELECT year FROM table_name_5 WHERE note = \"supporting\" AND title = \"rokumeikan\"", "question": "what is the year when the note is supporting and the title is rokumeikan?", "context": "CREATE TABLE table_name_5 (year VARCHAR, note VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_71 WHERE year > 2011 AND original_channel = \"nhk\"", "question": "what is the title when the year is after 2011 and the original channel is nhk?", "context": "CREATE TABLE table_name_71 (title VARCHAR, year VARCHAR, original_channel VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_91 WHERE fastest_lap = \"lorenzo bandini\" AND pole_position = \"lorenzo bandini\"", "question": "On which circuit does lorenzo bandini have the fastest lap as well as the pole position?", "context": "CREATE TABLE table_name_91 (circuit VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT race FROM table_name_72 WHERE pole_position = \"jim clark\" AND circuit = \"monaco\"", "question": "At what race does jim clark has a Pole position on the Circuit of monaco?", "context": "CREATE TABLE table_name_72 (race VARCHAR, pole_position VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT report FROM table_name_32 WHERE circuit = \"reims\"", "question": "Which Report is on the Circuit of reims?", "context": "CREATE TABLE table_name_32 (report VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE circuit = \"brands hatch\"", "question": "On what Date is there a race on the Circuit of brands hatch?", "context": "CREATE TABLE table_name_77 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_21 WHERE fastest_lap = \"lorenzo bandini\" AND pole_position = \"lorenzo bandini\"", "question": "Who is the Winnning driver in which lorenzo bandini has the fastest lap as well as the Pole position?", "context": "CREATE TABLE table_name_21 (winning_driver VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE tyre = \"d\" AND circuit = \"monaco\"", "question": "On what date is there a Tryre of d at the Circuit of monaco?", "context": "CREATE TABLE table_name_91 (date VARCHAR, tyre VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE against = \"morocco\" AND surface = \"hard\"", "question": "What's the date that Morocco has an Against along with a surface of hard?", "context": "CREATE TABLE table_name_46 (date VARCHAR, against VARCHAR, surface VARCHAR)"}, {"answer": "SELECT round FROM table_name_51 WHERE surface = \"hard\" AND opponent = \"jelena simic\"", "question": "What's Round has a Surface of hard and Opponent of Jelena Simic?", "context": "CREATE TABLE table_name_51 (round VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_95 WHERE constructor = \"ferrari\" AND race_name = \"xv grand prix de l'albigeois\"", "question": "What driver won in the xv grand prix de l'albigeois in a vehicle by ferrari?", "context": "CREATE TABLE table_name_95 (winning_driver VARCHAR, constructor VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT MAX(date) FROM table_name_4 WHERE description = \"br-built inspection saloon\"", "question": "What is the latest death with a description of BR-Built inspection saloon?", "context": "CREATE TABLE table_name_4 (date INTEGER, description VARCHAR)"}, {"answer": "SELECT number_ & _name FROM table_name_57 WHERE description = \"stanier (period iii) full brake\"", "question": "What is the identifying number for a description of Stanier (Period III) full brake?", "context": "CREATE TABLE table_name_57 (number_ VARCHAR, _name VARCHAR, description VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE number_ & _name = \"no. 37817\"", "question": "What is the date with identifying number of No. 37817?", "context": "CREATE TABLE table_name_86 (date VARCHAR, number_ VARCHAR, _name VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_18 WHERE release_format = \"standard cd\" AND country = \"north america\"", "question": "What is the release date for the standard cd release format in north america?", "context": "CREATE TABLE table_name_18 (release_date VARCHAR, release_format VARCHAR, country VARCHAR)"}, {"answer": "SELECT cat_no FROM table_name_23 WHERE label_s_ = \"mute\" AND release_format = \"standard cd\"", "question": "What is  the cat no for the label mute and the standard cd format?", "context": "CREATE TABLE table_name_23 (cat_no VARCHAR, label_s_ VARCHAR, release_format VARCHAR)"}, {"answer": "SELECT AVG(rating) FROM table_name_51 WHERE night_rank = \"11\" AND timeslot_rank > 4", "question": "What is the rating for the episode with the night rank of 11 and timeslot rank is larger than 4?", "context": "CREATE TABLE table_name_51 (rating INTEGER, night_rank VARCHAR, timeslot_rank VARCHAR)"}, {"answer": "SELECT MIN(share) FROM table_name_67 WHERE viewers__m_ < 8.78 AND timeslot_rank < 4", "question": "What is the smallest share for a timeslot ranking less than 4 and fewer viewers than 8.78 million?", "context": "CREATE TABLE table_name_67 (share INTEGER, viewers__m_ VARCHAR, timeslot_rank VARCHAR)"}, {"answer": "SELECT SUM(rating) FROM table_name_69 WHERE viewers__m_ = 13.47 AND overall_rank > 6", "question": "What is the rating of the episode with 13.47 million viewers and overall rank larger than 6?", "context": "CREATE TABLE table_name_69 (rating INTEGER, viewers__m_ VARCHAR, overall_rank VARCHAR)"}, {"answer": "SELECT AVG(overall_rank) FROM table_name_39 WHERE share = 6 AND timeslot_rank < 4", "question": "What is the rank of the episode with a share of 6 and timeslot rank smaller than 4?", "context": "CREATE TABLE table_name_39 (overall_rank INTEGER, share VARCHAR, timeslot_rank VARCHAR)"}, {"answer": "SELECT premierships FROM table_name_40 WHERE venue = \"queensland raceway\"", "question": "How many premierships for the queensland raceway?", "context": "CREATE TABLE table_name_40 (premierships VARCHAR, venue VARCHAR)"}, {"answer": "SELECT premierships FROM table_name_25 WHERE league = \"commonwealth bank trophy\"", "question": "How many premierships for the commonwealth bank trophy league?", "context": "CREATE TABLE table_name_25 (premierships VARCHAR, league VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_66 WHERE pick = 4", "question": "In which round was there a pick of 4?", "context": "CREATE TABLE table_name_66 (round INTEGER, pick VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_66 WHERE position = \"offensive tackle\"", "question": "How many rounds were there an offensive tackle position?", "context": "CREATE TABLE table_name_66 (round VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_44 WHERE player = \"mike ford\" AND round > 228", "question": "What was the pick number in round 228 for Mike Ford?", "context": "CREATE TABLE table_name_44 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT year FROM table_name_9 WHERE driver = \"e. meyer\"", "question": "What year was E. Meyer the driver?", "context": "CREATE TABLE table_name_9 (year VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_2 WHERE constructor = \"bugatti\" AND location = \"anfa\"", "question": "What is the name of the driver of the vehicle constructed by Bugatti in Anfa?", "context": "CREATE TABLE table_name_2 (driver VARCHAR, constructor VARCHAR, location VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_99 WHERE location = \"not held\" AND year = \"1933\"", "question": "What company constructed the vehicle in the location not held in 1933?", "context": "CREATE TABLE table_name_99 (constructor VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_61 WHERE driver = \"not held\"", "question": "What company constructed the vehicle when the driver shows as not held?", "context": "CREATE TABLE table_name_61 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_18 WHERE year = \"1955\"", "question": "What is the name of the driver in 1955?", "context": "CREATE TABLE table_name_18 (driver VARCHAR, year VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_48 WHERE \"report\" = \"report\" AND year = \"1955\"", "question": "What is the name of the constructor when report shows report in 1955?", "context": "CREATE TABLE table_name_48 (constructor VARCHAR, year VARCHAR)"}, {"answer": "SELECT induction FROM table_name_93 WHERE years = \"1975\u20131976\"", "question": "What is the inductioin for 1975\u20131976?", "context": "CREATE TABLE table_name_93 (induction VARCHAR, years VARCHAR)"}, {"answer": "SELECT power FROM table_name_73 WHERE years = \"1972\"", "question": "What is the power of an engine of 1972?", "context": "CREATE TABLE table_name_73 (power VARCHAR, years VARCHAR)"}, {"answer": "SELECT venue FROM table_name_99 WHERE away_team = \"richmond\"", "question": "In the game where richmond was the away team, what venue was it played at?", "context": "CREATE TABLE table_name_99 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE home_team = \"fitzroy\"", "question": "On what date did the match where fitzroy was the home team occur?", "context": "CREATE TABLE table_name_90 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(apps) FROM table_name_79 WHERE country = \"honduras\" AND goals < 2 AND team = \"club deportivo victoria\" AND division > 1", "question": "What is the smallest apps in Honduras with less than 2 goals for Club Deportivo Victoria in a division over 1?", "context": "CREATE TABLE table_name_79 (apps INTEGER, division VARCHAR, team VARCHAR, country VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_8 WHERE driver = \"jacques villeneuve\" AND laps > 36", "question": "What grid for jacques villeneuve with over 36 laps?", "context": "CREATE TABLE table_name_8 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_69 WHERE driver = \"tarso marques\"", "question": "What were the lowest laps of Tarso Marques?", "context": "CREATE TABLE table_name_69 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_68 WHERE time_retired = \"spun off\" AND laps > 64", "question": "What's the average Grid for those who spun off after Lap 64?", "context": "CREATE TABLE table_name_68 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_27 WHERE time_retired = \"+ 1:33.141\" AND laps < 70", "question": "What is the grid total that has a Time/Retired of + 1:33.141, and under 70 laps?", "context": "CREATE TABLE table_name_27 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_42 WHERE constructor = \"tyrrell - yamaha\" AND time_retired = \"+ 1 lap\"", "question": "What is the high lap total for tyrrell - yamaha, and a Time/Retired of + 1 lap?", "context": "CREATE TABLE table_name_42 (laps INTEGER, constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_12 WHERE grid = 14", "question": "What is the low lap total for a grid of 14?", "context": "CREATE TABLE table_name_12 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_54 WHERE driver = \"martin brundle\" AND grid < 10", "question": "How many laps for martin brundle with a grid of less than 10?", "context": "CREATE TABLE table_name_54 (laps VARCHAR, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_72 WHERE domestic_cup = \"quarterfinals\"", "question": "What was the average points in the quarterfinals domestic cup?", "context": "CREATE TABLE table_name_72 (points INTEGER, domestic_cup VARCHAR)"}, {"answer": "SELECT level FROM table_name_22 WHERE domestic_cup = \"quarterfinals\"", "question": "Which level is quarterfinals domestic cup?", "context": "CREATE TABLE table_name_22 (level VARCHAR, domestic_cup VARCHAR)"}, {"answer": "SELECT format FROM table_name_78 WHERE catalogue = \"148615\"", "question": "What format is catalogue 148615 in?", "context": "CREATE TABLE table_name_78 (format VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT region FROM table_name_7 WHERE date = \"june 8, 2004\"", "question": "Which region was on June 8, 2004?", "context": "CREATE TABLE table_name_7 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_94 WHERE catalogue = \"wpcr13504\"", "question": "What format is catalogue WPCR13504 in?", "context": "CREATE TABLE table_name_94 (format VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT format FROM table_name_79 WHERE catalogue = \"9362486152\" AND region = \"australia\"", "question": "What format is the Catalogue 9362486152 from the region of Australia in?", "context": "CREATE TABLE table_name_79 (format VARCHAR, catalogue VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_name_50 WHERE catalogue = \"9362486152\" AND date = \"september 3, 2004\"", "question": "What region is the catalogue number 9362486152 that was from September 3, 2004 from?", "context": "CREATE TABLE table_name_50 (region VARCHAR, catalogue VARCHAR, date VARCHAR)"}, {"answer": "SELECT region FROM table_name_88 WHERE date = \"june 8, 2004\"", "question": "What region is the catalogue released on June 8, 2004 from?", "context": "CREATE TABLE table_name_88 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE home_team = \"carlton\"", "question": "What day is carlton the home side?", "context": "CREATE TABLE table_name_87 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_23 WHERE away_team = \"south melbourne\"", "question": "What is the home team's score when south melbourne is away?", "context": "CREATE TABLE table_name_23 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT listed FROM table_name_17 WHERE cerclis_id = \"msd004006995\"", "question": "Tell me the listed when cerclis id is msd004006995", "context": "CREATE TABLE table_name_17 (listed VARCHAR, cerclis_id VARCHAR)"}, {"answer": "SELECT AVG(rank__timeslot_) FROM table_name_2 WHERE rating > 2.9 AND rating / SHARE(18 - 49) = 2.6 / 8 AND rank__night_ > 5", "question": "What is the timeslor rank for the episode with larger than 2.9 rating, rating/share of 2.6/8 and rank for the night higher than 5?", "context": "CREATE TABLE table_name_2 (rank__timeslot_ INTEGER, rank__night_ VARCHAR, rating VARCHAR)"}, {"answer": "SELECT MIN(rating) FROM table_name_27 WHERE rank__night_ < 7 AND rank__timeslot_ < 5 AND episode > 6", "question": "What is the smallest rating with nightly rank smaller than 7, timeslot rank smaller than 5 and eposide after episode 6?", "context": "CREATE TABLE table_name_27 (rating INTEGER, episode VARCHAR, rank__night_ VARCHAR, rank__timeslot_ VARCHAR)"}, {"answer": "SELECT MIN(rank__night_) FROM table_name_91 WHERE rating / SHARE(18 - 49) = 2.6 / 8 AND episode > 1", "question": "What is the lowest nightly rank for an episode after episode 1 with a rating/share of 2.6/8?", "context": "CREATE TABLE table_name_91 (rank__night_ INTEGER, episode VARCHAR, rating VARCHAR)"}, {"answer": "SELECT AVG(rank__timeslot_) FROM table_name_97 WHERE rating < 2.6 AND share > 4", "question": "What is the timeslot rank when the rating is smaller than 2.6 and the share is more than 4?", "context": "CREATE TABLE table_name_97 (rank__timeslot_ INTEGER, rating VARCHAR, share VARCHAR)"}, {"answer": "SELECT MIN(rank__timeslot_) FROM table_name_29 WHERE rating < 2.6", "question": "What is the smallest timeslot rank when the rating is smaller than 2.6?", "context": "CREATE TABLE table_name_29 (rank__timeslot_ INTEGER, rating INTEGER)"}, {"answer": "SELECT away_team FROM table_name_24 WHERE venue = \"kardinia park\"", "question": "What away team played at Kardinia Park?", "context": "CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_82 WHERE home_team = \"hawthorn\"", "question": "What team played Hawthorn?", "context": "CREATE TABLE table_name_82 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_19 WHERE goals_against < 21", "question": "What is the total wins with less than 21 goals taken?", "context": "CREATE TABLE table_name_19 (wins INTEGER, goals_against INTEGER)"}, {"answer": "SELECT date FROM table_name_96 WHERE game = 59", "question": "What is the date of game 59?", "context": "CREATE TABLE table_name_96 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT player FROM table_name_16 WHERE position = \"lock\" AND caps = 1", "question": "What player is a lock with 1 cap?", "context": "CREATE TABLE table_name_16 (player VARCHAR, position VARCHAR, caps VARCHAR)"}, {"answer": "SELECT position FROM table_name_41 WHERE club_province = \"newport gwent dragons\" AND caps < 87 AND player = \"ceri sweeney\"", "question": "What position does ceri sweeney with under 87 caps of the newport gwent dragons play?", "context": "CREATE TABLE table_name_41 (position VARCHAR, player VARCHAR, club_province VARCHAR, caps VARCHAR)"}, {"answer": "SELECT player FROM table_name_36 WHERE caps = 12", "question": "What player has 12 caps?", "context": "CREATE TABLE table_name_36 (player VARCHAR, caps VARCHAR)"}, {"answer": "SELECT shuji_kondo FROM table_name_90 WHERE mazada = \"x\" AND ryuji_hijikata = \"hijikata (14:24)\"", "question": "Tell me the Shuji Kondo for MAZADA of X with Ryuji Hijikata of hijikata (14:24)", "context": "CREATE TABLE table_name_90 (shuji_kondo VARCHAR, mazada VARCHAR, ryuji_hijikata VARCHAR)"}, {"answer": "SELECT el_samurai FROM table_name_30 WHERE mazada = \"x\" AND ryuji_hijikata = \"draw (30:00)\"", "question": "Name the El samurai with MAZADA of x for Ryuji Hijikata of draw (30:00)", "context": "CREATE TABLE table_name_30 (el_samurai VARCHAR, mazada VARCHAR, ryuji_hijikata VARCHAR)"}, {"answer": "SELECT mazada FROM table_name_67 WHERE el_samurai = \"mazada (16:22)\"", "question": "Name the MAZADA for El Samurai of mazada (16:22)", "context": "CREATE TABLE table_name_67 (mazada VARCHAR, el_samurai VARCHAR)"}, {"answer": "SELECT shuji_kondo FROM table_name_61 WHERE mazada = \"hijikata (14:24)\"", "question": "Name the Shuji Kondo for MAZADA of hijikata (14:24)", "context": "CREATE TABLE table_name_61 (shuji_kondo VARCHAR, mazada VARCHAR)"}, {"answer": "SELECT SUM(withdrawn) FROM table_name_78 WHERE builder = \"ac cars\" AND introduced < 1958", "question": "when was the building withdrawn when the builder was ac cars and was introduced before 1958?", "context": "CREATE TABLE table_name_78 (withdrawn INTEGER, builder VARCHAR, introduced VARCHAR)"}, {"answer": "SELECT decision FROM table_name_44 WHERE date = \"october 5\"", "question": "What was the decision on october 5?", "context": "CREATE TABLE table_name_44 (decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_41 WHERE venue = \"victoria park\"", "question": "Who played home team at Victoria Park?", "context": "CREATE TABLE table_name_41 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT season FROM table_name_34 WHERE goals > 0 AND apps < 33", "question": "What Season has Goals greater than 0 and less than 33 Apps?", "context": "CREATE TABLE table_name_34 (season VARCHAR, goals VARCHAR, apps VARCHAR)"}, {"answer": "SELECT SUM(car) FROM table_name_65 WHERE avg = 4.7 AND long > 30", "question": "How many carries for the RB averaging 4.7, and a long of over 30 yards?", "context": "CREATE TABLE table_name_65 (car INTEGER, avg VARCHAR, long VARCHAR)"}, {"answer": "SELECT MIN(avg) FROM table_name_43 WHERE player = \"kevin swayne\" AND long > 7", "question": "How many yards did kevin swayne average, with a long carry over 7?", "context": "CREATE TABLE table_name_43 (avg INTEGER, player VARCHAR, long VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_59 WHERE song_title = \"harbor lights\"", "question": "What is the catalogue for Harbor Lights as a title?", "context": "CREATE TABLE table_name_59 (catalogue VARCHAR, song_title VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_51 WHERE track = 27", "question": "What cataglogue has 27 tracks?", "context": "CREATE TABLE table_name_51 (catalogue VARCHAR, track VARCHAR)"}, {"answer": "SELECT first_year_played FROM table_name_12 WHERE doubles_w_l = \"8\u20133\"", "question": "Which year first played with Double W-L of 8\u20133?", "context": "CREATE TABLE table_name_12 (first_year_played VARCHAR, doubles_w_l VARCHAR)"}, {"answer": "SELECT height_ft___m FROM table_name_28 WHERE year > 1983 AND name = \"phoenix tower\"", "question": "What is the height that has a year after 1983 and is named Phoenix Tower?", "context": "CREATE TABLE table_name_28 (height_ft___m VARCHAR, year VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_87 WHERE name = \"1500 louisiana street\"", "question": "What is the oldest year listed with the 1500 Louisiana Street name?", "context": "CREATE TABLE table_name_87 (year INTEGER, name VARCHAR)"}, {"answer": "SELECT height_ft___m FROM table_name_32 WHERE rank = \"11\"", "question": "What is the Height of rank 11?", "context": "CREATE TABLE table_name_32 (height_ft___m VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(enrolment) FROM table_name_82 WHERE denomination = \"anglican\" AND day_boarding = \"day\" AND founded > 1929", "question": "What is the largest enrollment for anglican day schools founded after 1929?", "context": "CREATE TABLE table_name_82 (enrolment INTEGER, founded VARCHAR, denomination VARCHAR, day_boarding VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_44 WHERE call_sign = \"w244bk\"", "question": "What city of license is associated with call sign w244bk?", "context": "CREATE TABLE table_name_44 (city_of_license VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_52 WHERE frequency_mhz < 107.7 AND call_sign = \"w247aq\"", "question": "What city of license has a Frequency under 107.7, and a call sign of w247aq?", "context": "CREATE TABLE table_name_52 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT team FROM table_name_19 WHERE high_assists = \"earl watson (6)\" AND date = \"january 19\"", "question": "Which team was played against on the game where Earl Watson (6) had the highest assists on January 19?", "context": "CREATE TABLE table_name_19 (team VARCHAR, high_assists VARCHAR, date VARCHAR)"}, {"answer": "SELECT singular_word FROM table_name_18 WHERE singular_abbreviation = \"p.\"", "question": "A singular abbreviation of p. is used for what singular word?", "context": "CREATE TABLE table_name_18 (singular_word VARCHAR, singular_abbreviation VARCHAR)"}, {"answer": "SELECT singular_word FROM table_name_82 WHERE plural_abbreviation = \"pp.\"", "question": "A plural abbreviation of pp. is used for what singular word?", "context": "CREATE TABLE table_name_82 (singular_word VARCHAR, plural_abbreviation VARCHAR)"}, {"answer": "SELECT singular_word FROM table_name_24 WHERE plural_word = \"hands\"", "question": "The plural word of hands uses what singular word?", "context": "CREATE TABLE table_name_24 (singular_word VARCHAR, plural_word VARCHAR)"}, {"answer": "SELECT plural_abbreviation FROM table_name_21 WHERE plural_word = \"following lines or pages\"", "question": "The plural word of following lines or pages has what plural abbreviation?", "context": "CREATE TABLE table_name_21 (plural_abbreviation VARCHAR, plural_word VARCHAR)"}, {"answer": "SELECT plural_word FROM table_name_94 WHERE plural_abbreviation = \"ll.\"", "question": "The plural abbreviation of ll. uses what plural word?", "context": "CREATE TABLE table_name_94 (plural_word VARCHAR, plural_abbreviation VARCHAR)"}, {"answer": "SELECT plural_word FROM table_name_20 WHERE singular_word = \"hand\"", "question": "The singular word of hand uses what plural word?", "context": "CREATE TABLE table_name_20 (plural_word VARCHAR, singular_word VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_76 WHERE home_team = \"st kilda\"", "question": "How much did the home team st kilda score?", "context": "CREATE TABLE table_name_76 (home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_84 WHERE crowd > 7 OFFSET 500", "question": "When the crowd was larger than 7,500 what was the away teams score?", "context": "CREATE TABLE table_name_84 (away_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_42 WHERE venue = \"junction oval\"", "question": "What's the total number of people to attend games at junction oval?", "context": "CREATE TABLE table_name_42 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_62 WHERE venue = \"victoria park\"", "question": "How many people have attended victoria park?", "context": "CREATE TABLE table_name_62 (crowd VARCHAR, venue VARCHAR)"}, {"answer": "SELECT number_of_votes FROM table_name_79 WHERE election = 1941", "question": "How many people voted in the election of 1941?", "context": "CREATE TABLE table_name_79 (number_of_votes VARCHAR, election VARCHAR)"}, {"answer": "SELECT candidate FROM table_name_99 WHERE outcome_of_election = \"lost\" AND number_of_votes = \"770,046\"", "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_82 WHERE share_of_votes = \"61.47%\"", "question": "Which candidate won 61.47% of the votes?", "context": "CREATE TABLE table_name_82 (candidate VARCHAR, share_of_votes VARCHAR)"}, {"answer": "SELECT share_of_votes FROM table_name_26 WHERE election = 1969", "question": "What percentage of votes did the candidate win in the election of 1969?", "context": "CREATE TABLE table_name_26 (share_of_votes VARCHAR, election VARCHAR)"}, {"answer": "SELECT gwr_nos FROM table_name_79 WHERE quantity < 2 AND m & swj_nos = \"9\"", "question": "Which GWR numbers had a quantity less than 2 when the M&SWJ number was 9?", "context": "CREATE TABLE table_name_79 (gwr_nos VARCHAR, quantity VARCHAR, m VARCHAR, swj_nos VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_68 WHERE type = \"2-6-0\"", "question": "Which manucfaturer's type was 2-6-0?", "context": "CREATE TABLE table_name_68 (manufacturer VARCHAR, type VARCHAR)"}, {"answer": "SELECT score FROM table_name_61 WHERE record = \"14\u201310\u20132\"", "question": "What was the score of the game when the Devils had a record of 14\u201310\u20132?", "context": "CREATE TABLE table_name_61 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE record = \"21\u201314\u20133\"", "question": "What was the date of the game when the Devils had a record of 21\u201314\u20133?", "context": "CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT distance FROM table_name_7 WHERE winning_horse = \"summer doldrums\"", "question": "What distance did the winning horse run in the Summer Doldrums.", "context": "CREATE TABLE table_name_7 (distance VARCHAR, winning_horse VARCHAR)"}, {"answer": "SELECT winning_horse FROM table_name_81 WHERE winning_jockey = \"rafael bejarano\"", "question": "Who is the jockey for the winning horse Rafael Bejarano?", "context": "CREATE TABLE table_name_81 (winning_horse VARCHAR, winning_jockey VARCHAR)"}, {"answer": "SELECT track FROM table_name_29 WHERE distance = \"6 furlongs\" AND race = \"spectacular bid stakes\"", "question": "What is the race with the track distance of 6 furlongs and spectacular bid stakes?", "context": "CREATE TABLE table_name_29 (track VARCHAR, distance VARCHAR, race VARCHAR)"}, {"answer": "SELECT race FROM table_name_57 WHERE winning_horse = \"dominican\" AND distance = \"1-1/16 miles\"", "question": "what race did Dominican win with a distance of 1-1/16 miles?", "context": "CREATE TABLE table_name_57 (race VARCHAR, winning_horse VARCHAR, distance VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_66 WHERE result = \"1st\" AND year > 1973", "question": "What tournament since 1973 has a result of 1st?", "context": "CREATE TABLE table_name_66 (tournament VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_31 WHERE extra = \"400 m hurdles\"", "question": "In what tournament was there an extra of 400 m hurdles?", "context": "CREATE TABLE table_name_31 (tournament VARCHAR, extra VARCHAR)"}, {"answer": "SELECT result FROM table_name_97 WHERE year = 1973", "question": "What was the Result in Year 1973?", "context": "CREATE TABLE table_name_97 (result VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_95 WHERE extra = \"800 m\" AND tournament = \"european indoor championships\" AND result = \"2nd\"", "question": "In which year was the Tournament of european indoor championships played where the Extra was 800 m and the Result was 2nd?", "context": "CREATE TABLE table_name_95 (year VARCHAR, result VARCHAR, extra VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT player FROM table_name_29 WHERE hometown = \"chula vista, ca\"", "question": "What player is from Chula Vista, Ca?", "context": "CREATE TABLE table_name_29 (player VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT mlb_draft FROM table_name_80 WHERE player = \"shaun boyd\"", "question": "What MLB draft has Shaun Boyd?", "context": "CREATE TABLE table_name_80 (mlb_draft VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_96 WHERE round > 2 AND player = \"bert robertsson (d)\"", "question": "what is the college/junior/club team (league) when the round is more than 2 and the player is bert robertsson (d)?", "context": "CREATE TABLE table_name_96 (college_junior_club_team__league_ VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_82 WHERE round < 7", "question": "what is the college/junior/club team (league) when the round is less than 7?", "context": "CREATE TABLE table_name_82 (college_junior_club_team__league_ VARCHAR, round INTEGER)"}, {"answer": "SELECT nhl_team FROM table_name_92 WHERE round = 10", "question": "what is the nhl team for round 10?", "context": "CREATE TABLE table_name_92 (nhl_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_90 WHERE player = \"troy creurer (d)\"", "question": "what is the highest round when the player is troy creurer (d)?", "context": "CREATE TABLE table_name_90 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_10 WHERE week = 3", "question": "Who was the opponent on week 3?", "context": "CREATE TABLE table_name_10 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT chapter FROM table_name_65 WHERE location = \"normal, illinois\"", "question": "What chapter is located in Normal, Illinois?", "context": "CREATE TABLE table_name_65 (chapter VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(pos) FROM table_name_79 WHERE league = \"tb2l\" AND postseason = \"promoted champion\"", "question": "What is the average position for tb2l teams promoted champion?", "context": "CREATE TABLE table_name_79 (pos INTEGER, league VARCHAR, postseason VARCHAR)"}, {"answer": "SELECT COUNT(pos) FROM table_name_51 WHERE postseason = \"promoted\" AND tier < 2", "question": "How many teams were promoted in the postseason in a tier above 2?", "context": "CREATE TABLE table_name_51 (pos VARCHAR, postseason VARCHAR, tier VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_48 WHERE venue = \"windy hill\"", "question": "What is the Home team score At Windy Hill?", "context": "CREATE TABLE table_name_48 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT partner FROM table_name_10 WHERE score_in_the_final = \"2\u20136, 7\u20136, 7\u20136\"", "question": "Who is the partner in the final with a score of 2\u20136, 7\u20136, 7\u20136?", "context": "CREATE TABLE table_name_10 (partner VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_66 WHERE outcome = \"runner-up\" AND partner = \"ivan lendl\" AND score_in_the_final = \"2\u20136, 6\u20137\"", "question": "On what surface was Ivan Lendl a partner with a runner-up outcome and final score of 2\u20136, 6\u20137?", "context": "CREATE TABLE table_name_66 (surface VARCHAR, score_in_the_final VARCHAR, outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_97 WHERE venue = \"mcg\"", "question": "What was the highest crowd at the venue MCG?", "context": "CREATE TABLE table_name_97 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_8 WHERE venue = \"windy hill\"", "question": "What is the away team score at the Windy Hill venue?", "context": "CREATE TABLE table_name_8 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_53 WHERE away_team = \"melbourne\"", "question": "Where was the game when Melbourne was the away team?", "context": "CREATE TABLE table_name_53 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_70 WHERE venue = \"brunswick street oval\"", "question": "What was the away score when the game was at Brunswick Street Oval?", "context": "CREATE TABLE table_name_70 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_28 WHERE circuit = \"calder park\"", "question": "How many rounds were run at Calder Park?", "context": "CREATE TABLE table_name_28 (round VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT state FROM table_name_74 WHERE circuit = \"sandown\"", "question": "In which state can you find the Sandown circuit?", "context": "CREATE TABLE table_name_74 (state VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_84 WHERE state = \"new south wales\"", "question": "How many rounds were run in New South Wales?", "context": "CREATE TABLE table_name_84 (round VARCHAR, state VARCHAR)"}, {"answer": "SELECT driver FROM table_name_42 WHERE year = \"1969\"", "question": "Who is the driver from 1969?", "context": "CREATE TABLE table_name_42 (driver VARCHAR, year VARCHAR)"}, {"answer": "SELECT driver FROM table_name_83 WHERE year = \"1964\"", "question": "Who was the driver in 1964?", "context": "CREATE TABLE table_name_83 (driver VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(diff) FROM table_name_68 WHERE drawn = 6 AND played > 18", "question": "What is the highest diff with drawn of 6 and play larger than 18?", "context": "CREATE TABLE table_name_68 (diff INTEGER, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_85 WHERE lost < 5 AND points > 41", "question": "How many games were played when the loss is less than 5 and points greater than 41?", "context": "CREATE TABLE table_name_85 (played INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT genes FROM table_name_13 WHERE species = \"burkholderia pseudomallei\" AND base_pairs = \"4,126,292\"", "question": "How many genes are in species burkholderia pseudomallei with 4,126,292 base pairs?", "context": "CREATE TABLE table_name_13 (genes VARCHAR, species VARCHAR, base_pairs VARCHAR)"}, {"answer": "SELECT strain FROM table_name_50 WHERE genes = \"1,312\"", "question": "Which strain has 1,312 genes?", "context": "CREATE TABLE table_name_50 (strain VARCHAR, genes VARCHAR)"}, {"answer": "SELECT genes FROM table_name_94 WHERE base_pairs = \"4,895,836\"", "question": "Which gene has 4,895,836 base pairs?", "context": "CREATE TABLE table_name_94 (genes VARCHAR, base_pairs VARCHAR)"}, {"answer": "SELECT species FROM table_name_58 WHERE genes = \"3,441\"", "question": "Which species has 3,441 genes?", "context": "CREATE TABLE table_name_58 (species VARCHAR, genes VARCHAR)"}, {"answer": "SELECT base_pairs FROM table_name_90 WHERE strain = \"tohamai\"", "question": "How many base pairs are there in the tohamai strain?", "context": "CREATE TABLE table_name_90 (base_pairs VARCHAR, strain VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_86 WHERE venue = \"junction oval\"", "question": "What was the home team score at junction oval?", "context": "CREATE TABLE table_name_86 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_46 WHERE venue = \"western oval\"", "question": "What was the away team score at western oval?", "context": "CREATE TABLE table_name_46 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_50 WHERE venue = \"kardinia park\"", "question": "what is the lowest crowd at kardinia park", "context": "CREATE TABLE table_name_50 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE tournament = \"budapest\"", "question": "What was the score for the tournament in Budapest?", "context": "CREATE TABLE table_name_14 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_96 WHERE winner = \"patrick rafter\"", "question": "Which tournament did Patrick Rafter win?", "context": "CREATE TABLE table_name_96 (tournament VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_name_60 WHERE score = \"6\u20137(4), 7\u20136(3), [11\u20139]\"", "question": "Which winner won by a score of 6\u20137(4), 7\u20136(3), [11\u20139]?", "context": "CREATE TABLE table_name_60 (winner VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_53 WHERE runner_up = \"goran ivani\u0161evi\u0107\" AND tournament = \"algarve\"", "question": "what was the score when goran ivani\u0161evi\u0107 was runner up and the tournament was in algarve?", "context": "CREATE TABLE table_name_53 (score VARCHAR, runner_up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE winner = \"stefan edberg\"", "question": "What was the score when Stefan Edberg won?", "context": "CREATE TABLE table_name_64 (score VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE away_team = \"south melbourne\"", "question": "Which Date has an Away team of south melbourne?", "context": "CREATE TABLE table_name_42 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_26 WHERE venue = \"mcg\"", "question": "What is the Away team score for mcg?", "context": "CREATE TABLE table_name_26 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_98 WHERE home_team = \"collingwood\"", "question": "What is the total Crowd with a Home team of collingwood?", "context": "CREATE TABLE table_name_98 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_99 WHERE venue = \"mcg\"", "question": "When mcg is the Venue what's the Away team?", "context": "CREATE TABLE table_name_99 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_1 WHERE date = \"19 july 1980\" AND away_team = \"footscray\"", "question": "When the Away team footscray played on the Date of 19 july 1980, what was the amount of people in the Crowd?", "context": "CREATE TABLE table_name_1 (crowd VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_49 WHERE home_team = \"collingwood\"", "question": "When the Home team of collingwood played, what was the opposing Away team score?", "context": "CREATE TABLE table_name_49 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_65 WHERE crowd > 23 OFFSET 327", "question": "When the Crowd is larger than 23,327, what Home team is playing?", "context": "CREATE TABLE table_name_65 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT away_team FROM table_name_81 WHERE venue = \"vfl park\"", "question": "When vfl park is the venue what's the Away team playing?", "context": "CREATE TABLE table_name_81 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE home_team = \"collingwood\"", "question": "If collingwood was the Home team, what Date did they play?", "context": "CREATE TABLE table_name_71 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT club FROM table_name_4 WHERE capacity = \"25138\"", "question": "Which club has a capacity of 25138?", "context": "CREATE TABLE table_name_4 (club VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT Rank IN Respective AS divisions FROM table_name_60 WHERE capacity = \"4100\"", "question": "What Rank in Respective Divisions has a capacity of 4100?", "context": "CREATE TABLE table_name_60 (Rank VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_76 WHERE club = \"west ham united\"", "question": "What stadium has a club of west ham united?", "context": "CREATE TABLE table_name_76 (stadium VARCHAR, club VARCHAR)"}, {"answer": "SELECT result FROM table_name_73 WHERE week = 16", "question": "What was the result of week 16?", "context": "CREATE TABLE table_name_73 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE score = \"4-3\"", "question": "What is the date of the game with a score of 4-3?", "context": "CREATE TABLE table_name_41 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE date = \"8 sep 1990\"", "question": "What is the score of the game on 8 Sep 1990?", "context": "CREATE TABLE table_name_92 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_64 WHERE competition = \"division 1\" AND venue = \"stamford bridge\"", "question": "Who is the opposition on the division 1 game at Stamford Bridge?", "context": "CREATE TABLE table_name_64 (opposition VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT rank FROM table_name_26 WHERE total < 9 AND bronze < 2 AND nation = \"france\"", "question": "Which rank has a total less than 9, less than 2 bronze, and from France?", "context": "CREATE TABLE table_name_26 (rank VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT rank FROM table_name_25 WHERE silver > 1 AND gold > 1 AND bronze > 4", "question": "Which rank has more than 1 silver, more than 1 gold, and more than 4 bronze?", "context": "CREATE TABLE table_name_25 (rank VARCHAR, bronze VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_71 WHERE total < 3 AND bronze = 1 AND gold > 0", "question": "How many silver have a Total smaller than 3, a Bronze of 1, and a Gold larger than 0?", "context": "CREATE TABLE table_name_71 (silver INTEGER, gold VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_15 WHERE nation = \"new zealand\" AND total < 2", "question": "How many gold have a National of New Zealand with a total less than 2?", "context": "CREATE TABLE table_name_15 (gold INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT winner FROM table_name_19 WHERE year = 2003", "question": "Who won in 2003?", "context": "CREATE TABLE table_name_19 (winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_58 WHERE winner = \"scatman\"", "question": "What is the average year for scatman winning?", "context": "CREATE TABLE table_name_58 (year INTEGER, winner VARCHAR)"}, {"answer": "SELECT trainer FROM table_name_24 WHERE time = \"1:09.40\"", "question": "Who trained the horse with time of 1:09.40?", "context": "CREATE TABLE table_name_24 (trainer VARCHAR, time VARCHAR)"}, {"answer": "SELECT venue FROM table_name_83 WHERE tournament = \"mediterranean games\"", "question": "Where was the mediterranean games held?", "context": "CREATE TABLE table_name_83 (venue VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_75 WHERE venue = \"turin, italy\"", "question": "When was the last time a venue was held in turin, italy?", "context": "CREATE TABLE table_name_75 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_3 WHERE tournament = \"universiade\" AND year = 1959", "question": "Where was the universiade held in 1959?", "context": "CREATE TABLE table_name_3 (venue VARCHAR, tournament VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_65 WHERE venue = \"stockholm, sweden\"", "question": "How many year was the venue in stockholm, sweden used?", "context": "CREATE TABLE table_name_65 (year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT report FROM table_name_21 WHERE location = \"tripoli\" AND year > 1928 AND driver = \"baconin borzacchini\"", "question": "What is a report for a race with Baconin Borzacchini in Tripoli in a year after 1928?", "context": "CREATE TABLE table_name_21 (report VARCHAR, driver VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_2 WHERE year < 1937 AND driver = \"achille varzi\"", "question": "What was the constructor of the car that Achille Varzi drove before 1937?", "context": "CREATE TABLE table_name_2 (constructor VARCHAR, year VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_89 WHERE year > 1935 AND driver = \"hermann lang\"", "question": "What was the constructor of the car that Hermann Lang drove after 1935?", "context": "CREATE TABLE table_name_89 (constructor VARCHAR, year VARCHAR, driver VARCHAR)"}, {"answer": "SELECT works_number FROM table_name_39 WHERE date = \"1916\" AND number = \"153\"", "question": "What is the Works Number that has a Number of 153 in 1916?", "context": "CREATE TABLE table_name_39 (works_number VARCHAR, date VARCHAR, number VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE works_number = \"7\"", "question": "On what Date was the Works Number 7?", "context": "CREATE TABLE table_name_18 (date VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT builder FROM table_name_86 WHERE works_number = \"16272\"", "question": "Which Builder has a Works Number of 16272?", "context": "CREATE TABLE table_name_86 (builder VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE works_number = \"12\"", "question": "On what Date was the Works Number 12?", "context": "CREATE TABLE table_name_99 (date VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT venue FROM table_name_72 WHERE home_team = \"south melbourne\"", "question": "Where did South Melbourne play as the home team?", "context": "CREATE TABLE table_name_72 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_66 WHERE home_team = \"st kilda\"", "question": "What was the attendance when St Kilda played as the home team?", "context": "CREATE TABLE table_name_66 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT driver FROM table_name_55 WHERE grid = \"18\"", "question": "Which driver had a grid number of 18?", "context": "CREATE TABLE table_name_55 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_71 WHERE driver = \"shinji nakano\"", "question": "Which constructor had Shinji Nakano as a driver?", "context": "CREATE TABLE table_name_71 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_10 WHERE venue = \"glenferrie oval\"", "question": "What was the home team score at Glenferrie Oval?", "context": "CREATE TABLE table_name_10 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE data = \"19:29\"", "question": "What date has a Data of 19:29?", "context": "CREATE TABLE table_name_39 (date VARCHAR, data VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_74 WHERE event = \"35 km\"", "question": "Which athlete has a 35 km event?", "context": "CREATE TABLE table_name_74 (athlete VARCHAR, event VARCHAR)"}, {"answer": "SELECT nation FROM table_name_22 WHERE team = \"discovery channel\"", "question": "What nation is the cyclist from team discovery channel?", "context": "CREATE TABLE table_name_22 (nation VARCHAR, team VARCHAR)"}, {"answer": "SELECT nation FROM table_name_95 WHERE uci_protour_points = 25", "question": "What nation is the cyclist hat has a UCI ProTour Points of 25?", "context": "CREATE TABLE table_name_95 (nation VARCHAR, uci_protour_points VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE venue = \"punt road oval\"", "question": "What day did the VFL play Punt Road Oval?", "context": "CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_74 WHERE venue = \"western oval\"", "question": "What was the home teams score at Western Oval?", "context": "CREATE TABLE table_name_74 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(1 AS st_prize__) AS $__ FROM table_name_54 WHERE score = \"207 (-9)\" AND purse__$__ > 800 OFFSET 000", "question": "What is the first prize amount of the person who has a score of 207 (-9) and a purse amount of more than 800,000?", "context": "CREATE TABLE table_name_54 (score VARCHAR, purse__$__ VARCHAR)"}, {"answer": "SELECT isbn FROM table_name_42 WHERE first_edition = \"may 2011\"", "question": "What is the ISBN of the book with a first edition in May 2011?", "context": "CREATE TABLE table_name_42 (isbn VARCHAR, first_edition VARCHAR)"}, {"answer": "SELECT first_edition FROM table_name_50 WHERE isbn = \"978-0785166252\"", "question": "Which first edition has an ISBN of 978-0785166252?", "context": "CREATE TABLE table_name_50 (first_edition VARCHAR, isbn VARCHAR)"}, {"answer": "SELECT first_edition FROM table_name_60 WHERE pages = \"264\" AND isbn = \"978-0785111832\"", "question": "Which first edition has 264 pages and the ISBN of 978-0785111832?", "context": "CREATE TABLE table_name_60 (first_edition VARCHAR, pages VARCHAR, isbn VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_46 WHERE home_team = \"collingwood\"", "question": "How many people were in the crowd at collingwood's home game?", "context": "CREATE TABLE table_name_46 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_62 WHERE home_team = \"fitzroy\"", "question": "What did the away team score when playing against fitzroy?", "context": "CREATE TABLE table_name_62 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT serial_no FROM table_name_71 WHERE colour = \"black\" AND pilot_car_no > 2 AND engine_no = 1008", "question": "What is the serial number of the pilot car that is black, has a pilot car number larger than 2, and an engine number of 1008?", "context": "CREATE TABLE table_name_71 (serial_no VARCHAR, engine_no VARCHAR, colour VARCHAR, pilot_car_no VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_35 WHERE time_retired = \"accident\"", "question": "What is the low lap total that has a Time or Retired of accident?", "context": "CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE position = \"fly-half\"", "question": "Which player was a fly-half?", "context": "CREATE TABLE table_name_79 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(caps) FROM table_name_36 WHERE player = \"ryota asano\"", "question": "What is the mean number of caps for Ryota Asano?", "context": "CREATE TABLE table_name_36 (caps INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(caps) FROM table_name_67 WHERE player = \"ryota asano\"", "question": "What is the mean number of caps for Ryota Asano?", "context": "CREATE TABLE table_name_67 (caps INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_24 WHERE position = \"forward\" AND school_club_team = \"grambling state\"", "question": "Who is the forward from Grambling State?", "context": "CREATE TABLE table_name_24 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_96 WHERE position = \"guard\" AND school_club_team = \"utah\"", "question": "What is the nationality of the guard who plays at Utah?", "context": "CREATE TABLE table_name_96 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_14 WHERE school_club_team = \"tampa\"", "question": "What is the position of the player from Tampa?", "context": "CREATE TABLE table_name_14 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_73 WHERE years_for_jazz = \"1974-79\"", "question": "What is the nationality of the player on the Jazz from 1974-79?", "context": "CREATE TABLE table_name_73 (nationality VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT player FROM table_name_91 WHERE school_club_team = \"tampa\"", "question": "Who is the player who went to school at Tampa?", "context": "CREATE TABLE table_name_91 (player VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_60 WHERE years_for_jazz = \"1974-79\"", "question": "What is the nationality of the player on the Jazz from 1974-79?", "context": "CREATE TABLE table_name_60 (nationality VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_67 WHERE venue = \"glenferrie oval\"", "question": "What was the score of the away team at the the glenferrie oval?", "context": "CREATE TABLE table_name_67 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT institution FROM table_name_55 WHERE location = \"athens, ga, us\"", "question": "What institution is located in athens, ga, us?", "context": "CREATE TABLE table_name_55 (institution VARCHAR, location VARCHAR)"}, {"answer": "SELECT status FROM table_name_64 WHERE founded = 1996", "question": "What is the status of the institution that was founded in 1996?", "context": "CREATE TABLE table_name_64 (status VARCHAR, founded VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE runs = \"332\"", "question": "During runs 332, what was the venue?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, runs VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE runs = \"270\"", "question": "Which player's runs are 270?", "context": "CREATE TABLE table_name_43 (player VARCHAR, runs VARCHAR)"}, {"answer": "SELECT venue FROM table_name_92 WHERE season = \"1935\"", "question": "During season 1935, what was the venue?", "context": "CREATE TABLE table_name_92 (venue VARCHAR, season VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE player = \"les ames\"", "question": "For player Les Ames, what was the venue?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE grand_prix = \"austrian grand prix\"", "question": "When was the Austrian Grand Prix?", "context": "CREATE TABLE table_name_7 (date VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT points FROM table_name_24 WHERE draw > 3 AND place = 3", "question": "How many points has a draw greater than 3 and 3rd place?", "context": "CREATE TABLE table_name_24 (points VARCHAR, draw VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(events) FROM table_name_27 WHERE player = \"miller barber\"", "question": "Name the average events for miller barber", "context": "CREATE TABLE table_name_27 (events INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_86 WHERE earnings___$__ = 130 OFFSET 002", "question": "Name the most wins for earnings of 130,002", "context": "CREATE TABLE table_name_86 (wins INTEGER, earnings___$__ VARCHAR)"}, {"answer": "SELECT year FROM table_name_70 WHERE label = \"latenight weeknight\" AND release_title = \"neverchanger\"", "question": "What year was Neverchanger with the label of Latenight weeknight?", "context": "CREATE TABLE table_name_70 (year VARCHAR, label VARCHAR, release_title VARCHAR)"}, {"answer": "SELECT year FROM table_name_26 WHERE release_type = \"cd album\" AND released_as = \"ethereal 77\"", "question": "What year was Ethereal 77, which has a CD album release type?", "context": "CREATE TABLE table_name_26 (year VARCHAR, release_type VARCHAR, released_as VARCHAR)"}, {"answer": "SELECT SUM(platform) FROM table_name_98 WHERE frequency__per_hour_ = 4 AND destination = \"west croydon\"", "question": "what is the platform when the frequency (per hour) is 4 and the destination is west croydon?", "context": "CREATE TABLE table_name_98 (platform INTEGER, frequency__per_hour_ VARCHAR, destination VARCHAR)"}, {"answer": "SELECT MAX(platform) FROM table_name_32 WHERE frequency__per_hour_ = 4 AND operator = \"london overground\" AND destination = \"west croydon\"", "question": "what is the highest platform number when the frequency (per hour) is 4, the operator is london overground and the destination is west croydon?", "context": "CREATE TABLE table_name_32 (platform INTEGER, destination VARCHAR, frequency__per_hour_ VARCHAR, operator VARCHAR)"}, {"answer": "SELECT team FROM table_name_77 WHERE qual_1 = \"1:17.481\"", "question": "What is the name of the team with a qual 1 time of 1:17.481?", "context": "CREATE TABLE table_name_77 (team VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_49 WHERE best = \"1:18.067\"", "question": "What is the qual 1 for the best of 1:18.067?", "context": "CREATE TABLE table_name_49 (qual_1 VARCHAR, best VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_94 WHERE qual_2 = \"no time\" AND best = \"1:16.776\"", "question": "What is the qual 1 when the qual 2 has no time and the best is 1:16.776?", "context": "CREATE TABLE table_name_94 (qual_1 VARCHAR, qual_2 VARCHAR, best VARCHAR)"}, {"answer": "SELECT name FROM table_name_59 WHERE team = \"minardi team usa\" AND qual_1 = \"1:17.481\"", "question": "What person on team Minardi Team USA with a qual of 1:17.481?", "context": "CREATE TABLE table_name_59 (name VARCHAR, team VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT name FROM table_name_2 WHERE qual_1 = \"1:16.850\"", "question": "What is the name of the person with a qual 1 time of 1:16.850?", "context": "CREATE TABLE table_name_2 (name VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_49 WHERE qual_1 = \"1:16.841\"", "question": "What is the qual 2 when the qual 1 is 1:16.841?", "context": "CREATE TABLE table_name_49 (qual_2 VARCHAR, qual_1 VARCHAR)"}, {"answer": "SELECT monarch FROM table_name_67 WHERE heir = \"robert curthose\" AND reason = \"father became king\"", "question": "Who is the Monarch whose Heir is Robert Curthose when the Reason is that the father became king?", "context": "CREATE TABLE table_name_67 (monarch VARCHAR, heir VARCHAR, reason VARCHAR)"}, {"answer": "SELECT monarch FROM table_name_60 WHERE status = \"succession unclear 1100-1103\"", "question": "Which Monarch has succession unclear 1100-1103 as his Status?", "context": "CREATE TABLE table_name_60 (monarch VARCHAR, status VARCHAR)"}, {"answer": "SELECT reason FROM table_name_7 WHERE became_heir = \"1103\"", "question": "Which Reason is given when 1103 is the date for Became heir?", "context": "CREATE TABLE table_name_7 (reason VARCHAR, became_heir VARCHAR)"}, {"answer": "SELECT status FROM table_name_11 WHERE monarch = \"henry i\" AND reason = \"succession unclear 1100-1103\"", "question": "What is the Status when Henry I is the Monarch and the Reason is succession unclear 1100-1103?", "context": "CREATE TABLE table_name_11 (status VARCHAR, monarch VARCHAR, reason VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_31 WHERE entrant = \"hb bewaking team ensign\" AND rounds = \"13\"", "question": "Name the tyre for hb bewaking team ensign with rounds of 13", "context": "CREATE TABLE table_name_31 (tyre VARCHAR, entrant VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_90 WHERE engine = \"ford cosworth dfv 3.0 v8\" AND chassis = \"751\"", "question": "Name the round for engine of ford cosworth dfv 3.0 v8 with chassis fo 751", "context": "CREATE TABLE table_name_90 (rounds VARCHAR, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_24 WHERE tyre = \"g\" AND driver = \"carlos reutemann\"", "question": "Name the chassis for tyre of g and carlos reutemann", "context": "CREATE TABLE table_name_24 (chassis VARCHAR, tyre VARCHAR, driver VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_27 WHERE chassis = \"gh1\"", "question": "Name the entrant for chassis of gh1", "context": "CREATE TABLE table_name_27 (entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_82 WHERE entrant = \"stanley brm\"", "question": "Name the rounds for stanley brm", "context": "CREATE TABLE table_name_82 (rounds VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT tottenham_hotspur_career FROM table_name_26 WHERE goals = \"10\" AND nationality = \"england\" AND position = \"df\" AND club_apps = \"118\"", "question": "What were the years of the Tottenham Hotspur career for the player with 10 goals, from England, played the df position, and had 118 club apps?", "context": "CREATE TABLE table_name_26 (tottenham_hotspur_career VARCHAR, club_apps VARCHAR, position VARCHAR, goals VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT position FROM table_name_72 WHERE nationality = \"england\" AND goals = \"62\"", "question": "What is the position of the player from England with 62 goals?", "context": "CREATE TABLE table_name_72 (position VARCHAR, nationality VARCHAR, goals VARCHAR)"}, {"answer": "SELECT goals FROM table_name_8 WHERE nationality = \"england\" AND position = \"mf\" AND club_apps = \"170\"", "question": "How many goals did the player from England who played the position of mf and had 170 club apps had?", "context": "CREATE TABLE table_name_8 (goals VARCHAR, club_apps VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT goals FROM table_name_69 WHERE club_apps = \"229\"", "question": "How many goals did the player with 229 club apps have?", "context": "CREATE TABLE table_name_69 (goals VARCHAR, club_apps VARCHAR)"}, {"answer": "SELECT award_ceremony FROM table_name_18 WHERE nominee = \"emilio pichardo as bobby strong\"", "question": "For which Award Ceremony was Emilio Pichardo as Bobby Strong nominated?", "context": "CREATE TABLE table_name_18 (award_ceremony VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT nominee FROM table_name_38 WHERE category = \"best female performer\"", "question": "Who was nominated for best female performer?", "context": "CREATE TABLE table_name_38 (nominee VARCHAR, category VARCHAR)"}, {"answer": "SELECT area FROM table_name_76 WHERE decile = \"8\"", "question": "What area is the school with a decile of 8 in?", "context": "CREATE TABLE table_name_76 (area VARCHAR, decile VARCHAR)"}, {"answer": "SELECT name FROM table_name_27 WHERE authority = \"state\" AND roll = 318", "question": "Which school has a state authority and a roll of 318?", "context": "CREATE TABLE table_name_27 (name VARCHAR, authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT area FROM table_name_87 WHERE authority = \"state\" AND name = \"torbay school\"", "question": "In what area is torbay school with a state authority?", "context": "CREATE TABLE table_name_87 (area VARCHAR, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT Regular AS season FROM table_name_25 WHERE tournament < 2 AND total > 0 AND team = \"kansas\"", "question": "How many regular season titles did Kansas receive when they received fewer than 2 tournament titles and more than 0 total titles?", "context": "CREATE TABLE table_name_25 (Regular VARCHAR, team VARCHAR, tournament VARCHAR, total VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_65 WHERE laps < 66 AND grid < 10 AND driver = \"heinz-harald frentzen\"", "question": "What is the time of retirement with Laps smaller than 66, a grid less than 10, and a Driver of heinz-harald frentzen?", "context": "CREATE TABLE table_name_65 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT laps FROM table_name_96 WHERE driver = \"olivier panis\"", "question": "How many laps does olivier panis have?", "context": "CREATE TABLE table_name_96 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_39 WHERE away_team = \"geelong\"", "question": "Which home team played against Geelong?", "context": "CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_62 WHERE away_team = \"north melbourne\"", "question": "How large was the crowd when North Melbourne played as the away team?", "context": "CREATE TABLE table_name_62 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_13 WHERE home_team = \"hawthorn\"", "question": "Who is the away team that played home team Hawthorn?", "context": "CREATE TABLE table_name_13 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_46 WHERE away_team = \"footscray\"", "question": "What is the name of the home team that played away team Footscray?", "context": "CREATE TABLE table_name_46 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_3 WHERE venue = \"mcg\"", "question": "Who is the home team that played at venue MCG?", "context": "CREATE TABLE table_name_3 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT first_appearance FROM table_name_26 WHERE portrayed_by = \"chad williams\"", "question": "What is the name of the first appearance when Chad Williams is a portrayal?", "context": "CREATE TABLE table_name_26 (first_appearance VARCHAR, portrayed_by VARCHAR)"}, {"answer": "SELECT character FROM table_name_10 WHERE portrayed_by = \"elias koteas\"", "question": "Which character is portrayed by Elias Koteas?", "context": "CREATE TABLE table_name_10 (character VARCHAR, portrayed_by VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_97 WHERE venue = \"vfl park\"", "question": "What is the Home Team Score at VFL Park?", "context": "CREATE TABLE table_name_97 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_64 WHERE venue = \"windy hill\"", "question": "What is the Home Team Score at Windy Hill?", "context": "CREATE TABLE table_name_64 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE away_team = \"carlton\"", "question": "On what Date is Carlton the Away Team?", "context": "CREATE TABLE table_name_98 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT competition FROM table_name_68 WHERE result = \"3-1\"", "question": "Which competition with a result of 3-1?", "context": "CREATE TABLE table_name_68 (competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(ligue_1_titles) FROM table_name_80 WHERE position_in_2012_13 = \"010 12th\" AND number_of_seasons_in_ligue_1 > 56", "question": "I want to know the lowest ligue 1 titles for position in 2012-13 of 010 12th and number of seasons in ligue 1 more than 56", "context": "CREATE TABLE table_name_80 (ligue_1_titles INTEGER, position_in_2012_13 VARCHAR, number_of_seasons_in_ligue_1 VARCHAR)"}, {"answer": "SELECT position_in_2012_13 FROM table_name_69 WHERE number_of_seasons_in_ligue_1 = 30 AND ligue_1_titles = 1", "question": "Tell me the position in 2012-13 and number of seasons in leigue 1 of 30 with ligue 1 titles of 1", "context": "CREATE TABLE table_name_69 (position_in_2012_13 VARCHAR, number_of_seasons_in_ligue_1 VARCHAR, ligue_1_titles VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_4 WHERE hometown = \"kingston, pa\"", "question": "What is the NBA draft result of the player from Kingston, PA?", "context": "CREATE TABLE table_name_4 (nba_draft VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_67 WHERE height = \"6-7\"", "question": "What is the NBA draft result of the player with a height of 6-7?", "context": "CREATE TABLE table_name_67 (nba_draft VARCHAR, height VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_56 WHERE player = \"dwayne washington\"", "question": "What is the NBA draft result of Dwayne Washington?", "context": "CREATE TABLE table_name_56 (nba_draft VARCHAR, player VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_61 WHERE school = \"dunbar high school\"", "question": "What is the NBA draft result of the player from Dunbar High School?", "context": "CREATE TABLE table_name_61 (nba_draft VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_35 WHERE college = \"michigan\"", "question": "What is the school of the player from the College of Michigan?", "context": "CREATE TABLE table_name_35 (school VARCHAR, college VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_89 WHERE venue = \"mcg\"", "question": "What was the away team score for the game played at MCG?", "context": "CREATE TABLE table_name_89 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_27 WHERE venue = \"victoria park\"", "question": "What was the home team's score at Victoria Park?", "context": "CREATE TABLE table_name_27 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE venue = \"shay stadium\"", "question": "What is the score at shay stadium?", "context": "CREATE TABLE table_name_96 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_50 WHERE venue = \"valley parade\" AND date = \"4/7/02\"", "question": "What is the result at valley parade on 4/7/02?", "context": "CREATE TABLE table_name_50 (result VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_3 WHERE goals = \"deacon 8/8\" AND score = \"32-14\"", "question": "Which competition has a Goal of deacon 8/8 and a Score of 32-14?", "context": "CREATE TABLE table_name_3 (competition VARCHAR, goals VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_78 WHERE driver = \"martin brundle\"", "question": "What is the top grid that is driven by martin brundle?", "context": "CREATE TABLE table_name_78 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_88 WHERE grid = 13", "question": "What is the grid 13 time score?", "context": "CREATE TABLE table_name_88 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_90 WHERE driver = \"thierry boutsen\" AND laps < 44", "question": "Which grid is lower for thierry boutsen which laps less than 44?", "context": "CREATE TABLE table_name_90 (grid INTEGER, driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT player FROM table_name_9 WHERE height = \"6-2\"", "question": "Which player is 6-2?", "context": "CREATE TABLE table_name_9 (player VARCHAR, height VARCHAR)"}, {"answer": "SELECT laid_down FROM table_name_55 WHERE ship = \"hyperion\"", "question": "What is the Laid down for the Hyperion ship?", "context": "CREATE TABLE table_name_55 (laid_down VARCHAR, ship VARCHAR)"}, {"answer": "SELECT ship FROM table_name_48 WHERE pennant_number = \"h55\"", "question": "What is the name of the ship that had a Pennant number of h55?", "context": "CREATE TABLE table_name_48 (ship VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT worldwide_gross FROM table_name_60 WHERE movie = \"jab tak hai jaan\"", "question": "How did the jab tak hai jaan movie gross worldwide?", "context": "CREATE TABLE table_name_60 (worldwide_gross VARCHAR, movie VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_29 WHERE director = \"ayan mukerji\"", "question": "What is average year for ayan mukerji?", "context": "CREATE TABLE table_name_29 (year INTEGER, director VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_46 WHERE home_team = \"melbourne\"", "question": "When melbourne was the home team what was their score?", "context": "CREATE TABLE table_name_46 (home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE time = \"20:10\"", "question": "What date had a time of 20:10?", "context": "CREATE TABLE table_name_25 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT episode_title FROM table_name_1 WHERE original_airdate = \"march 31, 2008\"", "question": "What is the title of the episode that originally aired on March 31, 2008?", "context": "CREATE TABLE table_name_1 (episode_title VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT episode_no FROM table_name_23 WHERE original_airdate = \"february 4, 2008\"", "question": "What is the episode number of the episode that originally aired on February 4, 2008?", "context": "CREATE TABLE table_name_23 (episode_no VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_22 WHERE venue = \"kardinia park\"", "question": "at kardinia park, what was the away team's score?", "context": "CREATE TABLE table_name_22 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_74 WHERE venue = \"kardinia park\"", "question": "what was the largest attendance at kardinia park?", "context": "CREATE TABLE table_name_74 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_62 WHERE venue = \"western oval\"", "question": "Who was the Home team at the Western Oval location?", "context": "CREATE TABLE table_name_62 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_64 WHERE driver = \"patrick tambay\"", "question": "What's the average of the amount of laps for the driver patrick tambay?", "context": "CREATE TABLE table_name_64 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_63 WHERE grid > 6 AND constructor = \"renault\" AND time_retired = \"ignition\"", "question": "When renault is the constructor, the grid is over 6, and the time was labeled ignition, what's the largest amount of laps on record?", "context": "CREATE TABLE table_name_63 (laps INTEGER, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT world_ranking__1_ FROM table_name_54 WHERE ranking_la__2_ = \"5th\" AND year_of_publication = \"2008\"", "question": "In 2008, what was the world ranking that ranked 5th in L.A.?", "context": "CREATE TABLE table_name_54 (world_ranking__1_ VARCHAR, ranking_la__2_ VARCHAR, year_of_publication VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_24 WHERE goals_for > 34 AND goals_against > 63", "question": "what is the total number of played when the goals for is more than 34 and goals against is more than 63?", "context": "CREATE TABLE table_name_24 (played VARCHAR, goals_for VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT COUNT(goal_difference) FROM table_name_51 WHERE club = \"cf extremadura\" AND played < 38", "question": "what is the total number of goal different when the club is cf extremadura and the played is less than 38?", "context": "CREATE TABLE table_name_51 (goal_difference VARCHAR, club VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_86 WHERE goal_difference < 17 AND club = \"getafe cf\" AND goals_for > 30", "question": "what is the average points when the goal difference is less than 17, the club is getafe cf and the goals for is more than 30?", "context": "CREATE TABLE table_name_86 (points INTEGER, goals_for VARCHAR, goal_difference VARCHAR, club VARCHAR)"}, {"answer": "SELECT SUM(goals_for) FROM table_name_50 WHERE position < 8 AND losses < 10 AND goals_against < 35 AND played < 38", "question": "what is the sum of goals for when the position is less than 8, the losses is less than 10 the goals against is less than 35 and played is less than 38?", "context": "CREATE TABLE table_name_50 (goals_for INTEGER, played VARCHAR, goals_against VARCHAR, position VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_18 WHERE rank = \"12\" AND nation = \"vietnam\"", "question": "what is the highest gold when the rank is 12 for the nation vietnam?", "context": "CREATE TABLE table_name_18 (gold INTEGER, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT total FROM table_name_88 WHERE rank = \"4\"", "question": "what is the total when the rank is 4?", "context": "CREATE TABLE table_name_88 (total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_77 WHERE gold = 1 AND bronze > 0", "question": "what is the nation when the gold is 1 and bronze is larger than 0?", "context": "CREATE TABLE table_name_77 (nation VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_72 WHERE engine = \"ferrari 038 3.5 v12\"", "question": "Which entrant has Ferrari 038 3.5 v12 engine?", "context": "CREATE TABLE table_name_72 (entrant VARCHAR, engine VARCHAR)"}, {"answer": "SELECT founded FROM table_name_69 WHERE institution = \"lynn university\"", "question": "What is the date that the Institution of Lynn University was founded on?", "context": "CREATE TABLE table_name_69 (founded VARCHAR, institution VARCHAR)"}, {"answer": "SELECT loss FROM table_name_60 WHERE score = \"5-1\"", "question": "What's the Loss listed with a Score of 5-1?", "context": "CREATE TABLE table_name_60 (loss VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE record = \"3-5\"", "question": "Which Date has a record of 3-5?", "context": "CREATE TABLE table_name_76 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE record = \"6-9\"", "question": "Which Date has a Record of 6-9?", "context": "CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_31 WHERE opponent = \"california angels\" AND attendance = \"57,762\"", "question": "What's the Loss listed for the Opponent of California Angels and has an Attendance of 57,762?", "context": "CREATE TABLE table_name_31 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE attendance = \"9,535\"", "question": "Which Date has an Attendance of 9,535?", "context": "CREATE TABLE table_name_73 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE date = \"april 23\"", "question": "What is the Score for the Date of April 23?", "context": "CREATE TABLE table_name_69 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_22 WHERE venue = \"victoria park\"", "question": "What was the average crowd size at Victoria Park?", "context": "CREATE TABLE table_name_22 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_40 WHERE away_team = \"north melbourne\"", "question": "What is the crowd size of the match featuring North Melbourne as the away team?", "context": "CREATE TABLE table_name_40 (crowd INTEGER, away_team VARCHAR)"}, {"answer": "SELECT team FROM table_name_96 WHERE high_rebounds = \"smith (10)\"", "question": "Name the team which has high rebounds of smith (10)", "context": "CREATE TABLE table_name_96 (team VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_36 WHERE away_team = \"melbourne\"", "question": "What team was the home team against Melbourne?", "context": "CREATE TABLE table_name_36 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_30 WHERE away_team = \"carlton\"", "question": "What did the home team score when Carlton played as the Away team?", "context": "CREATE TABLE table_name_30 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_58 WHERE home_team = \"south melbourne\"", "question": "How many people attended the home game for South Melbourne?", "context": "CREATE TABLE table_name_58 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_99 WHERE venue = \"vfl park\"", "question": "What was the home team score at VFL Park?", "context": "CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_98 WHERE time_retired = \"gearbox\" AND laps < 3", "question": "How many grids have a Time/Retired of gearbox, and Laps smaller than 3?", "context": "CREATE TABLE table_name_98 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_70 WHERE driver = \"masten gregory\"", "question": "What is masten gregory's average lap?", "context": "CREATE TABLE table_name_70 (laps INTEGER, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_21 WHERE grid = 2", "question": "Which Time/Retired has a Grid of 2?", "context": "CREATE TABLE table_name_21 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_51 WHERE rounds = \"14-15\" AND engine = \"ford cosworth dfv 3.0 v8\" AND chassis = \"m23\"", "question": "When the engine Ford Cosworth DFV 3.0 v8 has a chassis of m23 and in rounds 14-15, what is its Tyre?", "context": "CREATE TABLE table_name_51 (tyre VARCHAR, chassis VARCHAR, rounds VARCHAR, engine VARCHAR)"}, {"answer": "SELECT driver FROM table_name_7 WHERE chassis = \"ts16\"", "question": "Which driver uses the ts16 chassis?", "context": "CREATE TABLE table_name_7 (driver VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT home FROM table_name_95 WHERE date = \"april 20\"", "question": "What is the home team of the game on April 20?", "context": "CREATE TABLE table_name_95 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_name_73 WHERE visitor = \"vancouver\" AND date = \"april 16\"", "question": "What is the series score of the game with Vancouver as the visiting team on April 16?", "context": "CREATE TABLE table_name_73 (series VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT series FROM table_name_55 WHERE date = \"april 16\"", "question": "What is the series score of the game on April 16?", "context": "CREATE TABLE table_name_55 (series VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_51 WHERE date = \"27 april 1974\" AND venue = \"mcg\"", "question": "Tell me the away team score for 27 april 1974 and veue of mcg", "context": "CREATE TABLE table_name_51 (away_team VARCHAR, date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_74 WHERE home_team = \"richmond\"", "question": "I want to see the away team the has a home team of richmond", "context": "CREATE TABLE table_name_74 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_42 WHERE stage = \"group g\" AND date = \"mar 8, 1998\"", "question": "What venue did group g play at on Mar 8, 1998?", "context": "CREATE TABLE table_name_42 (venue VARCHAR, stage VARCHAR, date VARCHAR)"}, {"answer": "SELECT stage FROM table_name_34 WHERE venue = \"romania\"", "question": "Which stage was being played in Romania?", "context": "CREATE TABLE table_name_34 (stage VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_85 WHERE competition = \"1999 fifa world cup qualification (uefa)\" AND date = \"nov 23, 1997\"", "question": "What was the score of the 1999 fifa world cup qualification (uefa) on Nov 23, 1997?", "context": "CREATE TABLE table_name_85 (result VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_79 WHERE date = \"nov 23, 2006\"", "question": "What was being played on Nov 23, 2006?", "context": "CREATE TABLE table_name_79 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_28 WHERE venue = \"windy hill\"", "question": "What is the lowest crowd at windy hill?", "context": "CREATE TABLE table_name_28 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_79 WHERE home_team = \"richmond\"", "question": "What is the lowest crowd with home team richmond?", "context": "CREATE TABLE table_name_79 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_55 WHERE total > 12 AND gold < 5", "question": "When there are more than 12 total medals and less than 5 gold medals, how many bronze medals are there?", "context": "CREATE TABLE table_name_55 (bronze VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_61 WHERE nation = \"united states\" AND total > 25", "question": "When the united states won a total number of medals larger than 25, what was the lowest amount of Bronze medals won?", "context": "CREATE TABLE table_name_61 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_28 WHERE total < 17 AND nation = \"poland\" AND gold > 1", "question": "When the nation of poland had less than 17 medals but more than 1 gold medal, what's the Highest number of bronze medals?", "context": "CREATE TABLE table_name_28 (bronze INTEGER, gold VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_43 WHERE silver > 0 AND gold < 5 AND bronze < 0", "question": "If there are more than 0 Silver medals, less than 5 gold medals, and no bronze medals, what was the total number of medals?", "context": "CREATE TABLE table_name_43 (total VARCHAR, bronze VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(ngc_number) FROM table_name_28 WHERE declination___j2000__ = \"\u00b015\u203255\u2033\" AND apparent_magnitude > 10", "question": "What's the total number of NGC that has a Declination ( J2000 ) of \u00b015\u203255\u2033, and an Apparent magnitude greater than 10?", "context": "CREATE TABLE table_name_28 (ngc_number INTEGER, declination___j2000__ VARCHAR, apparent_magnitude VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_56 WHERE apparent_magnitude > 9.6 AND right_ascension___j2000__ = \"17h59m02.0s\"", "question": "Which object has an Apparent magnitude larger than 9.6, and a Right ascension ( J2000 ) of 17h59m02.0s?", "context": "CREATE TABLE table_name_56 (object_type VARCHAR, apparent_magnitude VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT strain FROM table_name_35 WHERE genes = \"5,566\"", "question": "Which species of bacteria has 5,566 genes?", "context": "CREATE TABLE table_name_35 (strain VARCHAR, genes VARCHAR)"}, {"answer": "SELECT strain FROM table_name_24 WHERE species = \"thiomicrospira crunogena\"", "question": "What is the Strain name of Species Thiomicrospira crunogena?", "context": "CREATE TABLE table_name_24 (strain VARCHAR, species VARCHAR)"}, {"answer": "SELECT location FROM table_name_21 WHERE record = \"5-3\"", "question": "Name the location of record 5-3", "context": "CREATE TABLE table_name_21 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_45 WHERE NOT percentage = \"56%\" AND loss < 4", "question": "What's the rank for a team that has a percentage of 56% and a loss smaller than 4?", "context": "CREATE TABLE table_name_45 (rank INTEGER, loss VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT MIN(yards) FROM table_name_3 WHERE long = 34 AND avg < 12.6", "question": "Name the lowest yards for 34 long and avg less than 12.6", "context": "CREATE TABLE table_name_3 (yards INTEGER, long VARCHAR, avg VARCHAR)"}, {"answer": "SELECT team FROM table_name_63 WHERE sponsor = \"chameleon sunglasses\"", "question": "What team is sponsored by chameleon sunglasses?", "context": "CREATE TABLE table_name_63 (team VARCHAR, sponsor VARCHAR)"}, {"answer": "SELECT team FROM table_name_8 WHERE make = \"buick regal\" AND driver = \"bobby hillin jr. (r)\"", "question": "What team does bobby hillin jr. (r) drive a buick regal for?", "context": "CREATE TABLE table_name_8 (team VARCHAR, make VARCHAR, driver VARCHAR)"}, {"answer": "SELECT team FROM table_name_14 WHERE sponsor = \"w.h. bolin\"", "question": "What team is sponsored by w.h. bolin?", "context": "CREATE TABLE table_name_14 (team VARCHAR, sponsor VARCHAR)"}, {"answer": "SELECT driver FROM table_name_82 WHERE sponsor = \"w.h. bolin\"", "question": "Who drives for the sponsor w.h. bolin?", "context": "CREATE TABLE table_name_82 (driver VARCHAR, sponsor VARCHAR)"}, {"answer": "SELECT sponsor FROM table_name_18 WHERE driver = \"neil bonnett\"", "question": "Who sponsors driver neil bonnett?", "context": "CREATE TABLE table_name_18 (sponsor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT channel FROM table_name_82 WHERE description = \"public broadcaster\"", "question": "What channel has a description of the public broadcaster?", "context": "CREATE TABLE table_name_82 (channel VARCHAR, description VARCHAR)"}, {"answer": "SELECT channel FROM table_name_39 WHERE financed_by = \"commercials\"", "question": "What was the channel that was financed by commercials?", "context": "CREATE TABLE table_name_39 (channel VARCHAR, financed_by VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_10 WHERE constructor = \"minardi - fondmetal\" AND driver = \"marc gen\u00e9\" AND grid > 20", "question": "Which entry has the highest laps of those with constructor Minardi - Fondmetal, driver Marc Gen\u00e9, and a grid larger than 20?", "context": "CREATE TABLE table_name_10 (laps INTEGER, grid VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_7 WHERE laps > 66 AND driver = \"michael schumacher\"", "question": "What is the sum of grid values of driver Michael Schumacher with lap counts larger than 66?", "context": "CREATE TABLE table_name_7 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_17 WHERE laps = 62", "question": "Which driver has 62 laps?", "context": "CREATE TABLE table_name_17 (driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_99 WHERE constructor = \"mclaren - mercedes\" AND driver = \"david coulthard\" AND laps < 66", "question": "What is the highest grid value with constructor Mclaren - Mercedes, driver David Coulthard, and has fewer than 66 laps?", "context": "CREATE TABLE table_name_99 (grid INTEGER, laps VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_99 WHERE grid = 17", "question": "What is the highest number of laps for grid 17?", "context": "CREATE TABLE table_name_99 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_8 WHERE driver = \"roger williamson\"", "question": "None of the rounds has Roger Williamson as a driver.", "context": "CREATE TABLE table_name_8 (rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_60 WHERE driver = \"alain prost\"", "question": "What is the time/retired for alain prost?", "context": "CREATE TABLE table_name_60 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_30 WHERE grid = 9", "question": "What is the time/retired for grid 9?", "context": "CREATE TABLE table_name_30 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_65 WHERE time_retired = \"suspension\"", "question": "Who had to retire due to suspension?", "context": "CREATE TABLE table_name_65 (driver VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT class FROM table_name_40 WHERE sport = \"volleyball\" AND year = 2000", "question": "What class is volleyball in 2000?", "context": "CREATE TABLE table_name_40 (class VARCHAR, sport VARCHAR, year VARCHAR)"}, {"answer": "SELECT record FROM table_name_89 WHERE class = \"3a\" AND sport = \"volleyball\"", "question": "What is the team's record in 3a volleyball?", "context": "CREATE TABLE table_name_89 (record VARCHAR, class VARCHAR, sport VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_62 WHERE home_team = \"melbourne\"", "question": "Who was the away team at Melbourne's home game?", "context": "CREATE TABLE table_name_62 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_42 WHERE venue = \"corio oval\"", "question": "What was the away team score at Corio Oval?", "context": "CREATE TABLE table_name_42 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_37 WHERE tail_code = \"oy\" AND weapon_systems_officer = \"capt charles b. debellevue\"", "question": "Which Call Sign that has a Tail Code of oy belong to Weapon Systems Officer Capt Charles B. Debellevue?", "context": "CREATE TABLE table_name_37 (call_sign VARCHAR, tail_code VARCHAR, weapon_systems_officer VARCHAR)"}, {"answer": "SELECT tail_code FROM table_name_29 WHERE weapon_systems_officer = \"capt charles b. debellevue\"", "question": "Which Tail Code belongs to Weapon Systems Officer Capt Charles B. Debellevue?", "context": "CREATE TABLE table_name_29 (tail_code VARCHAR, weapon_systems_officer VARCHAR)"}, {"answer": "SELECT aircraft FROM table_name_37 WHERE call_sign = \"paula 01\"", "question": "Which Aircraft has the Call Sign Paula 01?", "context": "CREATE TABLE table_name_37 (aircraft VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_80 WHERE tail_code = \"ed\"", "question": "Which Call Sign that has Tail Code ed?", "context": "CREATE TABLE table_name_80 (call_sign VARCHAR, tail_code VARCHAR)"}, {"answer": "SELECT aircraft FROM table_name_27 WHERE weapon_systems_officer = \"capt charles b. debellevue\"", "question": "Which aircraft Weapon Systems Officer Capt Charles B. Debellevue belongs on?", "context": "CREATE TABLE table_name_27 (aircraft VARCHAR, weapon_systems_officer VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_96 WHERE losses = 2", "question": "What is the lowest amount of wins of someone who has 2 losses?", "context": "CREATE TABLE table_name_96 (wins INTEGER, losses VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_29 WHERE against > 1249 AND losses < 17", "question": "What is the largest amount of wins of someone who has an against score greater than 1249 and a number of losses less than 17?", "context": "CREATE TABLE table_name_29 (wins INTEGER, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_23 WHERE winning_driver = \"stirling moss\" AND circuit = \"oulton park\"", "question": "What is the name of race that has a winning driver of Stirling moss and a Circuit of oulton park?", "context": "CREATE TABLE table_name_23 (race_name VARCHAR, winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_27 WHERE constructor = \"brm\"", "question": "Who is the winning driver that has a construction of brm?", "context": "CREATE TABLE table_name_27 (winning_driver VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_15 WHERE rank = \"12\"", "question": "What is the high bronze total for nations ranked 12?", "context": "CREATE TABLE table_name_15 (bronze INTEGER, rank VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_23 WHERE date = \"may 3, 1998\"", "question": "What was the winning score on May 3, 1998?", "context": "CREATE TABLE table_name_23 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT role FROM table_name_26 WHERE registration = \"s5-hpg s5-hpc\"", "question": "What is the role of the aircraft that has a registration of s5-hpg s5-hpc?", "context": "CREATE TABLE table_name_26 (role VARCHAR, registration VARCHAR)"}, {"answer": "SELECT origin FROM table_name_67 WHERE registration = \"s5-hpb\"", "question": "What is the country of origin of the aircraft with a registration s5-hpb?", "context": "CREATE TABLE table_name_67 (origin VARCHAR, registration VARCHAR)"}, {"answer": "SELECT role FROM table_name_41 WHERE origin = \"european union\"", "question": "What is the role of the aircraft that originates from the European Union?", "context": "CREATE TABLE table_name_41 (role VARCHAR, origin VARCHAR)"}, {"answer": "SELECT role FROM table_name_51 WHERE registration = \"s5-hpb\"", "question": "What is the role of the aircraft that has a registration of s5-hpb?", "context": "CREATE TABLE table_name_51 (role VARCHAR, registration VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_90 WHERE height = \"6-10\"", "question": "Which Hometown has a Height of 6-10?", "context": "CREATE TABLE table_name_90 (hometown VARCHAR, height VARCHAR)"}, {"answer": "SELECT nba_draft FROM table_name_10 WHERE school = \"bishop o'connell high school\"", "question": "What is the NBA Draft for the School Bishop O'Connell High School?", "context": "CREATE TABLE table_name_10 (nba_draft VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_65 WHERE hometown = \"winter park, fl\"", "question": "Which School is located in Winter Park, FL (Hometown)?", "context": "CREATE TABLE table_name_65 (school VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_83 WHERE school = \"bishop luers high school\"", "question": "When the School is Bishop Luers High School, what is the Hometown?", "context": "CREATE TABLE table_name_83 (hometown VARCHAR, school VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_11 WHERE college = \"villanova\"", "question": "What is the Hometown for Villanova College?", "context": "CREATE TABLE table_name_11 (hometown VARCHAR, college VARCHAR)"}, {"answer": "SELECT home FROM table_name_31 WHERE record = \"18\u201318\u20131\"", "question": "Who was the home team at the game when the Thrashers had a record of 18\u201318\u20131?", "context": "CREATE TABLE table_name_31 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE decision = \"lehtonen\" AND attendance > 17 OFFSET 731", "question": "What was the date of the game with a decision of Lehtonen and attended by more than 17,731 people?", "context": "CREATE TABLE table_name_70 (date VARCHAR, decision VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_38 WHERE time_retired = \"+1 lap\" AND driver = \"johnny herbert\"", "question": "What is the average grid for johnny herbert with a Time/Retired of +1 lap?", "context": "CREATE TABLE table_name_38 (grid INTEGER, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_25 WHERE venue = \"mcg\"", "question": "Who was the away team at mcg?", "context": "CREATE TABLE table_name_25 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_25 WHERE venue = \"princes park\"", "question": "Who was the home team at princes park?", "context": "CREATE TABLE table_name_25 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_32 WHERE constellation = \"orion\" AND ngc_number > 2174 AND declination___j2000__ = \"\u00b048\u203206\u2033\"", "question": "Which Object type has a Constellation of orion, and an NGC number larger than 2174, and a Declination (J2000) of \u00b048\u203206\u2033?", "context": "CREATE TABLE table_name_32 (object_type VARCHAR, declination___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_98 WHERE constellation = \"mensa\" AND ngc_number > 2171", "question": "Which Right ascension (J2000) has a Constellation of mensa, and an NGC number larger than 2171?", "context": "CREATE TABLE table_name_98 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT MAX(ngc_number) FROM table_name_61 WHERE object_type = \"open cluster\" AND right_ascension___j2000__ = \"06h01m06s\"", "question": "Which NGC number has an Object type of open cluster, and a Right ascension (J2000) of 06h01m06s?", "context": "CREATE TABLE table_name_61 (ngc_number INTEGER, object_type VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_37 WHERE ngc_number = 2171", "question": "Which Object type has an NGC number of 2171?", "context": "CREATE TABLE table_name_37 (object_type VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT end_date FROM table_name_8 WHERE governor = \"richard j. oglesby\" AND term = \"1885\u20131889\"", "question": "What is the end date of the term for Governor of richard j. oglesby, and a Term of 1885\u20131889?", "context": "CREATE TABLE table_name_8 (end_date VARCHAR, governor VARCHAR, term VARCHAR)"}, {"answer": "SELECT site FROM table_name_5 WHERE orbit = \"leo\" AND decay___utc__ = \"still in orbit\" AND function = \"magnetosphere research\"", "question": "What site has an orbit of Leo, a decay (UTC) of still in orbit, and a magnetosphere research?", "context": "CREATE TABLE table_name_5 (site VARCHAR, function VARCHAR, orbit VARCHAR, decay___utc__ VARCHAR)"}, {"answer": "SELECT date_and_time___utc__ FROM table_name_23 WHERE orbit = \"sub-orbital\" AND function = \"aeronomy research\" AND rocket = \"nike orion\" AND site = \"poker flat\"", "question": "What date and time has a sub-orbital of orbit, a function of aeronomy research, and a Nike Orion rocket, as well as a Poker Flat site?", "context": "CREATE TABLE table_name_23 (date_and_time___utc__ VARCHAR, site VARCHAR, rocket VARCHAR, orbit VARCHAR, function VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_29 WHERE winning_score = \"2 and 1\"", "question": "what is the tournament when the winning score is 2 and 1?", "context": "CREATE TABLE table_name_29 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_30 WHERE tournament = \"travelers championship\"", "question": "what is the margin of victory for the tournament travelers championship?", "context": "CREATE TABLE table_name_30 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_69 WHERE tournament = \"waste management phoenix open\"", "question": "what is the margin of victory for the waste management phoenix open tournament?", "context": "CREATE TABLE table_name_69 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_26 WHERE winning_score = \u221216(68 - 70 - 65 - 65 = 268)", "question": "who is the runner-up when the winning score is \u221216 (68-70-65-65=268)?", "context": "CREATE TABLE table_name_26 (runner_up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT game_4 FROM table_name_8 WHERE position = \"wing\" AND game_1 = \"michael o'connor\"", "question": "For which Game 4 did Michael O'Connor play wing position?", "context": "CREATE TABLE table_name_8 (game_4 VARCHAR, position VARCHAR, game_1 VARCHAR)"}, {"answer": "SELECT game_4 FROM table_name_41 WHERE game_3 = \"david boyle\"", "question": "For which Game 4, did David Boyle play in Game 3?", "context": "CREATE TABLE table_name_41 (game_4 VARCHAR, game_3 VARCHAR)"}, {"answer": "SELECT game_1 FROM table_name_88 WHERE position = \"fullback\"", "question": "Which Game 1 has a fullback?", "context": "CREATE TABLE table_name_88 (game_1 VARCHAR, position VARCHAR)"}, {"answer": "SELECT game_4 FROM table_name_27 WHERE game_1 = \"michael o'connor\"", "question": "For which Game 4 did Michael O'Connor play during Game 1?", "context": "CREATE TABLE table_name_27 (game_4 VARCHAR, game_1 VARCHAR)"}, {"answer": "SELECT position FROM table_name_20 WHERE game_2 = \"andrew farrar\"", "question": "During Game 2, which position did Andrew Farrar play?", "context": "CREATE TABLE table_name_20 (position VARCHAR, game_2 VARCHAR)"}, {"answer": "SELECT game_4 FROM table_name_52 WHERE game_2 = \"brett kenny\"", "question": "During which Game 4, did Brett Kenny play Game 2?", "context": "CREATE TABLE table_name_52 (game_4 VARCHAR, game_2 VARCHAR)"}, {"answer": "SELECT location FROM table_name_98 WHERE left = 1975 AND type = \"private\" AND founded = 1891", "question": "Where was the former private member that was founded in 1891 and left in 1975?", "context": "CREATE TABLE table_name_98 (location VARCHAR, founded VARCHAR, left VARCHAR, type VARCHAR)"}, {"answer": "SELECT SUM(places) FROM table_name_38 WHERE nation = \"soviet union\" AND rank > 11", "question": "what is the places when for the soviet union with a rank more than 11?", "context": "CREATE TABLE table_name_38 (places INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT name FROM table_name_4 WHERE nation = \"soviet union\" AND points = 185", "question": "what is the name when the nation is soviet union and the points is 185?", "context": "CREATE TABLE table_name_4 (name VARCHAR, nation VARCHAR, points VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_22 WHERE laps < 3 AND grid = 15", "question": "What constructor has less than 3 laps and grid 15?", "context": "CREATE TABLE table_name_22 (constructor VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_25 WHERE away_team = \"collingwood\"", "question": "Which Home team has an Away team of collingwood?", "context": "CREATE TABLE table_name_25 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_3 WHERE losses = 4 AND draws = 0 AND wins > 14", "question": "Name the lowest against for when wins are greater than 14, draws is 0 and losses are 4", "context": "CREATE TABLE table_name_3 (against INTEGER, wins VARCHAR, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_92 WHERE byes < 0", "question": "Name the sum against for byes less than 0", "context": "CREATE TABLE table_name_92 (against INTEGER, byes INTEGER)"}, {"answer": "SELECT SUM(draws) FROM table_name_6 WHERE wins = 16 AND losses < 2", "question": "Name the sum of draws for losses less than 2 and wins of 16", "context": "CREATE TABLE table_name_6 (draws INTEGER, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_48 WHERE finish = \"17\"", "question": "How few laps were finished in 17?", "context": "CREATE TABLE table_name_48 (laps INTEGER, finish VARCHAR)"}, {"answer": "SELECT qual FROM table_name_55 WHERE year = \"1966\"", "question": "What is 1966's Qual rating?", "context": "CREATE TABLE table_name_55 (qual VARCHAR, year VARCHAR)"}, {"answer": "SELECT start FROM table_name_78 WHERE finish = \"10\"", "question": "What race has a finish time of 10?", "context": "CREATE TABLE table_name_78 (start VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_85 WHERE rank = \"30\"", "question": "What is the lowest lap with a rank of 30?", "context": "CREATE TABLE table_name_85 (laps INTEGER, rank VARCHAR)"}, {"answer": "SELECT finish FROM table_name_9 WHERE start = \"32\"", "question": "What finish time started at 32?", "context": "CREATE TABLE table_name_9 (finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_59 WHERE country = \"united states\" AND wins < 3", "question": "Who is the lowest ranked player from the United States that has less than 3 Wins?", "context": "CREATE TABLE table_name_59 (rank INTEGER, country VARCHAR, wins VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE visitor = \"edmonton\"", "question": "What is the score of the game that had a visiting team of Edmonton?", "context": "CREATE TABLE table_name_93 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE home = \"colorado\" AND visitor = \"winnipeg\"", "question": "What is the record of the game that had a home team of Colorado, and a visiting team of Winnipeg?", "context": "CREATE TABLE table_name_59 (record VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_85 WHERE date = \"february 15\"", "question": "What team was visiting on February 15?", "context": "CREATE TABLE table_name_85 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT theme FROM table_name_22 WHERE issue_price = \"$489.95\" AND year > 2005", "question": "What theme had an issue price of $489.95 after 2005?", "context": "CREATE TABLE table_name_22 (theme VARCHAR, issue_price VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_61 WHERE theme = \"timber trade\"", "question": "What year was the timber trade?", "context": "CREATE TABLE table_name_61 (year INTEGER, theme VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_9 WHERE issue_price = \"$697.95\"", "question": "What year has an issue price of $697.95?", "context": "CREATE TABLE table_name_9 (year VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT engine FROM table_name_66 WHERE driver = \"jean-pierre jarier\" AND chassis = \"pc4\"", "question": "What was the engine driven by Jean-Pierre Jarier and has a chassis of PC4?", "context": "CREATE TABLE table_name_66 (engine VARCHAR, driver VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT season FROM table_name_87 WHERE winners = \"dundee united\"", "question": "What Season had Dundee United as a Winner?", "context": "CREATE TABLE table_name_87 (season VARCHAR, winners VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE venue = \"hampden park\" AND runners_up = \"rangers\" AND winners = \"hibernian\"", "question": "What is the Score of the Rangers' Runner-ups and Hibernian Winners in Hampden Park?", "context": "CREATE TABLE table_name_17 (score VARCHAR, winners VARCHAR, venue VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_75 WHERE venue = \"broadwood stadium\"", "question": "What Runners-up have a Venue in Broadwood Stadium?", "context": "CREATE TABLE table_name_75 (runners_up VARCHAR, venue VARCHAR)"}, {"answer": "SELECT completed FROM table_name_91 WHERE pennant_number = \"h63\"", "question": "When is the completed date of the destroyer with a pennant number h63?", "context": "CREATE TABLE table_name_91 (completed VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT completed FROM table_name_50 WHERE pennant_number = \"h59\"", "question": "When is the completed date of the destroyer with a pennant number h59?", "context": "CREATE TABLE table_name_50 (completed VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT ship FROM table_name_89 WHERE pennant_number = \"h05\"", "question": "What ship has a pennant number h05?", "context": "CREATE TABLE table_name_89 (ship VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT ship FROM table_name_5 WHERE pennant_number = \"h05\"", "question": "What ship has a pennant number h05?", "context": "CREATE TABLE table_name_5 (ship VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT launched FROM table_name_13 WHERE completed = \"25 february 1936\"", "question": "What is the launched date of the destroyer completed 25 February 1936?", "context": "CREATE TABLE table_name_13 (launched VARCHAR, completed VARCHAR)"}, {"answer": "SELECT launched FROM table_name_28 WHERE completed = \"1 july 1936\"", "question": "What is the launched date of the destroyer completed 1 July 1936?", "context": "CREATE TABLE table_name_28 (launched VARCHAR, completed VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_65 WHERE venue = \"western oval\"", "question": "What was the home team score when the VFL played at Western Oval?", "context": "CREATE TABLE table_name_65 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_26 WHERE away_team = \"north melbourne\"", "question": "Who was North Melbourne's home opponent?", "context": "CREATE TABLE table_name_26 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_86 WHERE venue = \"princes park\"", "question": "What was the home team score when the VFL played at Princes Park?", "context": "CREATE TABLE table_name_86 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(ave__no) FROM table_name_98 WHERE name = \"albula alps\" AND height__m_ > 3418", "question": "Which sum of AVE-No has a Name of albula alps, and a Height (m) larger than 3418?", "context": "CREATE TABLE table_name_98 (ave__no INTEGER, name VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT MIN(height__m_) FROM table_name_97 WHERE name = \"plessur alps\" AND ave__no > 63", "question": "Which Height (m) has a Name of plessur alps, and a AVE-No larger than 63?", "context": "CREATE TABLE table_name_97 (height__m_ INTEGER, name VARCHAR, ave__no VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE height__m_ = 2980", "question": "Which Name has a Height (m) of 2980?", "context": "CREATE TABLE table_name_63 (name VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT MIN(ave__no) FROM table_name_28 WHERE name = \"livigno alps\"", "question": "Which AVE-No has a Name of livigno alps?", "context": "CREATE TABLE table_name_28 (ave__no INTEGER, name VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_13 WHERE fastest_lap = \"michael schumacher\" AND constructor = \"ferrari\" AND pole_position = \"jenson button\"", "question": "Who was the winning driver when pole position was jenson button, the fastest lap was michael schumacher and the car was ferrari?", "context": "CREATE TABLE table_name_13 (winning_driver VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_36 WHERE winning_driver = \"michael schumacher\" AND grand_prix = \"san marino grand prix\"", "question": "What was the pole position at the san marino grand prix with michael schumacher as winning driver?", "context": "CREATE TABLE table_name_36 (pole_position VARCHAR, winning_driver VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_name_23 WHERE pole_position = \"kimi r\u00e4ikk\u00f6nen\"", "question": "Name the Grand Prix for pole position of kimi r\u00e4ikk\u00f6nen", "context": "CREATE TABLE table_name_23 (grand_prix VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT category FROM table_name_8 WHERE established = 1990", "question": "Which is the category of the group was establishe in 1990?", "context": "CREATE TABLE table_name_8 (category VARCHAR, established VARCHAR)"}, {"answer": "SELECT category FROM table_name_76 WHERE event_name = \"touchdown atlantic\"", "question": "What is the category of the touchdown atlantic?", "context": "CREATE TABLE table_name_76 (category VARCHAR, event_name VARCHAR)"}, {"answer": "SELECT result FROM table_name_85 WHERE date = \"13 october 2004\"", "question": "Name the result for 13 october 2004", "context": "CREATE TABLE table_name_85 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE competition = \"friendly\" AND venue = \"rheinpark stadion, vaduz\"", "question": "Name the date that has a friendly competition at rheinpark stadion, vaduz", "context": "CREATE TABLE table_name_71 (date VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_67 WHERE circuit = \"oulton park\" AND winning_driver = \"john surtees\"", "question": "Who is the constructor of John Surtees's Oulton Park circuit car?", "context": "CREATE TABLE table_name_67 (constructor VARCHAR, circuit VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_90 WHERE constructor = \"matra\"", "question": "Which race was Matra the constructor?", "context": "CREATE TABLE table_name_90 (race_name VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT race_name FROM table_name_74 WHERE circuit = \"hockenheim\"", "question": "Which race was at Hockenheim circuit?", "context": "CREATE TABLE table_name_74 (race_name VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_22 WHERE constructor = \"brm\" AND race_name = \"xii spring trophy\"", "question": "Who was the winner of the XII Spring Trophy race with BRM as the constructor?", "context": "CREATE TABLE table_name_22 (winning_driver VARCHAR, constructor VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_69 WHERE venue = \"victoria park\"", "question": "What is the away team at victoria park?", "context": "CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_38 WHERE venue = \"junction oval\"", "question": "Which away team is from junction oval?", "context": "CREATE TABLE table_name_38 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT term_in_office FROM table_name_42 WHERE member = \"hon peter morris\"", "question": "What was the term of Hon Peter Morris?", "context": "CREATE TABLE table_name_42 (term_in_office VARCHAR, member VARCHAR)"}, {"answer": "SELECT party FROM table_name_34 WHERE electorate = \"lindsay\"", "question": "What party is the member that has an electorate of Lindsay?", "context": "CREATE TABLE table_name_34 (party VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_65 WHERE grid < 4 AND driver = \"juan pablo montoya\"", "question": "What is the low lap total for the under 4 grid car driven by juan pablo montoya?", "context": "CREATE TABLE table_name_65 (laps INTEGER, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_43 WHERE grid = 11", "question": "Who drove the grid 11 car?", "context": "CREATE TABLE table_name_43 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_34 WHERE laps > 69", "question": "What is the grid total for cars with over 69 laps?", "context": "CREATE TABLE table_name_34 (grid VARCHAR, laps INTEGER)"}, {"answer": "SELECT time_retired FROM table_name_80 WHERE laps = 22 AND grid = 29", "question": "What is the time/retired with 22 laps and a grid of 29?", "context": "CREATE TABLE table_name_80 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_58 WHERE time_retired = \"+6.643\" AND grid < 2", "question": "What is the highest number of laps with a time of +6.643 and grid less than 2?", "context": "CREATE TABLE table_name_58 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT dates_active FROM table_name_93 WHERE deaths = \"204\"", "question": "When was there 204 deaths?", "context": "CREATE TABLE table_name_93 (dates_active VARCHAR, deaths VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_74 WHERE bowling_style = \"right arm fast\"", "question": "When is the birth date of player with right arm fast style?", "context": "CREATE TABLE table_name_74 (date_of_birth VARCHAR, bowling_style VARCHAR)"}, {"answer": "SELECT batting_style FROM table_name_32 WHERE bowling_style = \"right arm medium\" AND player = \"stuart williams\"", "question": "What batting style corresponds to a bowling style of right arm medium for Stuart Williams?", "context": "CREATE TABLE table_name_32 (batting_style VARCHAR, bowling_style VARCHAR, player VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_11 WHERE player = \"mervyn dillon\"", "question": "What is the birth date for Mervyn Dillon?", "context": "CREATE TABLE table_name_11 (date_of_birth VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_98 WHERE player = \"michael ruffin\"", "question": "What position does Michael Ruffin play?", "context": "CREATE TABLE table_name_98 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_72 WHERE position = \"center\"", "question": "What is the nationality of the center?", "context": "CREATE TABLE table_name_72 (nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_30 WHERE years_for_jazz = \"1977-79\"", "question": "What is the nationality of the Jazz player 1977-79?", "context": "CREATE TABLE table_name_30 (nationality VARCHAR, years_for_jazz VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_53 WHERE nationality = \"united states\" AND position = \"guard\"", "question": "Tell me the School/Club team of the player from the United States that play'de guard?", "context": "CREATE TABLE table_name_53 (school_club_team VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_69 WHERE player = \"bill robinzine\"", "question": "What nationality is Bill Robinzine?", "context": "CREATE TABLE table_name_69 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(season) FROM table_name_95 WHERE position = \"10th\"", "question": "What is the average of seasons for 10th place finishes?", "context": "CREATE TABLE table_name_95 (season INTEGER, position VARCHAR)"}, {"answer": "SELECT season FROM table_name_81 WHERE position = \"2nd\"", "question": "What season was there a 2nd place finish?", "context": "CREATE TABLE table_name_81 (season VARCHAR, position VARCHAR)"}, {"answer": "SELECT level FROM table_name_21 WHERE season > 2003 AND division = \"kakkonen (second division)\" AND position = \"12th\"", "question": "What level for seasons after 2003, a Division of kakkonen (second division), and a Position of 12th?", "context": "CREATE TABLE table_name_21 (level VARCHAR, position VARCHAR, season VARCHAR, division VARCHAR)"}, {"answer": "SELECT streak FROM table_name_61 WHERE date = \"april 2\"", "question": "What was the streak on April 2?", "context": "CREATE TABLE table_name_61 (streak VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_9 WHERE leading_scorer = \"jones : 20\"", "question": "Who was the visiting team when the leading scorer was Jones : 20?", "context": "CREATE TABLE table_name_9 (visitor VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT viewers__in_millions_ FROM table_name_69 WHERE season = \"1\"", "question": "How many people watched season 1?", "context": "CREATE TABLE table_name_69 (viewers__in_millions_ VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(pl_gp) FROM table_name_44 WHERE pick__number < 122 AND player = \"rob flockhart\" AND rd__number < 3", "question": "What is the PI GP of Rob Flockhart, who has a pick # less than 122 and a round # less than 3?", "context": "CREATE TABLE table_name_44 (pl_gp INTEGER, rd__number VARCHAR, pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(reg_gp) FROM table_name_69 WHERE rd__number > 2 AND pick__number = 80 AND pl_gp > 0", "question": "What is the lowest reg gp of the player with a round # more than 2, a pick # of 80, and a PI GP larger than 0?", "context": "CREATE TABLE table_name_69 (reg_gp INTEGER, pl_gp VARCHAR, rd__number VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(fips_code) FROM table_name_58 WHERE coordinates = \"41.827547, -74.118478\" AND land___sq_mi__ < 1.196", "question": "Name the highest FIPS code for coordinates of 41.827547, -74.118478 and land less than 1.196", "context": "CREATE TABLE table_name_58 (fips_code INTEGER, coordinates VARCHAR, land___sq_mi__ VARCHAR)"}, {"answer": "SELECT cdp_name FROM table_name_58 WHERE fips_code = 3659708", "question": "Name the CDP name for FIPS code of 3659708", "context": "CREATE TABLE table_name_58 (cdp_name VARCHAR, fips_code VARCHAR)"}, {"answer": "SELECT fips_code FROM table_name_36 WHERE county = \"wyoming\" AND cdp_name = \"pike\"", "question": "Name the FIPS code for county of wyoming and CDP name of pike", "context": "CREATE TABLE table_name_36 (fips_code VARCHAR, county VARCHAR, cdp_name VARCHAR)"}, {"answer": "SELECT SUM(land___sq_mi__) FROM table_name_80 WHERE ansi_code = 2390496 AND pop__2010_ < 7 OFFSET 284", "question": "Name the sum of land for ANSI code of 2390496 and population less than 7,284", "context": "CREATE TABLE table_name_80 (land___sq_mi__ INTEGER, ansi_code VARCHAR, pop__2010_ VARCHAR)"}, {"answer": "SELECT COUNT(sack) FROM table_name_46 WHERE tackles > 1 AND assisted < 3 AND yards > 0", "question": "How many sacks for the player with over 1 tackle, under 3 assisted tackles, and over 0 yards?", "context": "CREATE TABLE table_name_46 (sack VARCHAR, yards VARCHAR, tackles VARCHAR, assisted VARCHAR)"}, {"answer": "SELECT design FROM table_name_33 WHERE denomination = \"$1.18\"", "question": "What stamp design has a denomination of $1.18?", "context": "CREATE TABLE table_name_33 (design VARCHAR, denomination VARCHAR)"}, {"answer": "SELECT denomination FROM table_name_34 WHERE date_of_issue = \"8 january 2009\"", "question": "What is the denomination for the stamp issued 8 January 2009?", "context": "CREATE TABLE table_name_34 (denomination VARCHAR, date_of_issue VARCHAR)"}, {"answer": "SELECT date_of_issue FROM table_name_43 WHERE design = \"john belisle, kosta tsetsekas\"", "question": "What date was the John Belisle, Kosta Tsetsekas stamp issued?", "context": "CREATE TABLE table_name_43 (date_of_issue VARCHAR, design VARCHAR)"}, {"answer": "SELECT first_day_cover_cancellation FROM table_name_31 WHERE design = \"karen smith design\"", "question": "What is the first day cover cancellation for the Karen Smith Design stamp?", "context": "CREATE TABLE table_name_31 (first_day_cover_cancellation VARCHAR, design VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE competition = \"2008 africa cup of nations\"", "question": "What is the date of Competition of 2008 africa cup of nations?", "context": "CREATE TABLE table_name_37 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE date = \"22 january 2008\"", "question": "What is the score on 22 january 2008?", "context": "CREATE TABLE table_name_88 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_86 WHERE date = \"22 january 2008\"", "question": "Which venue was used 22 january 2008?", "context": "CREATE TABLE table_name_86 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_47 WHERE score = \"1\u20130\" AND competition = \"2014 fifa world cup qualification\"", "question": "What result has a Score of 1\u20130, and a Competition of 2014 fifa world cup qualification?", "context": "CREATE TABLE table_name_47 (result VARCHAR, score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE competition = \"2014 fifa world cup qualification\" AND score = \"1\u20130\"", "question": "What date was the Competition of 2014 fifa world cup qualification, with a Score of 1\u20130?", "context": "CREATE TABLE table_name_26 (date VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT object_type FROM table_name_77 WHERE right_ascension___j2000__ = \"11h10m42.8s\"", "question": "what is the object type when the right ascension (j2000) is 11h10m42.8s?", "context": "CREATE TABLE table_name_77 (object_type VARCHAR, right_ascension___j2000__ VARCHAR)"}, {"answer": "SELECT declination___j2000__ FROM table_name_90 WHERE ngc_number > 3593", "question": "what is the declination (j2000) when the ngc number is higher than 3593?", "context": "CREATE TABLE table_name_90 (declination___j2000__ VARCHAR, ngc_number INTEGER)"}, {"answer": "SELECT constellation FROM table_name_24 WHERE object_type = \"spiral galaxy\" AND ngc_number < 3593 AND right_ascension___j2000__ = \"11h05m48.9s\"", "question": "what is the constellation when the object type is spiral galaxy, the ngc number is less than 3593 and the right ascension (j2000) is 11h05m48.9s?", "context": "CREATE TABLE table_name_24 (constellation VARCHAR, right_ascension___j2000__ VARCHAR, object_type VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT right_ascension___j2000__ FROM table_name_41 WHERE ngc_number = 3576", "question": "what is the right ascension (j2000) when the ngc number is 3576?", "context": "CREATE TABLE table_name_41 (right_ascension___j2000__ VARCHAR, ngc_number VARCHAR)"}, {"answer": "SELECT driver FROM table_name_18 WHERE grid = \"18\"", "question": "Who is the driver when the grid is 18?", "context": "CREATE TABLE table_name_18 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_42 WHERE grid = \"19\"", "question": "What is the time/retired when the grid is 19?", "context": "CREATE TABLE table_name_42 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_56 WHERE away_team = \"st kilda\"", "question": "What was St Kilda's home team opponents score?", "context": "CREATE TABLE table_name_56 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE home_team = \"hawthorn\"", "question": "When did Hawthorn play at home?", "context": "CREATE TABLE table_name_27 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_18 WHERE away_team = \"st kilda\"", "question": "How many people were in attendance at St Kilda's away match?", "context": "CREATE TABLE table_name_18 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE description = \"british rail class 111 tslrb\"", "question": "What is the date of the British Rail class 111 tslrb description?", "context": "CREATE TABLE table_name_40 (date VARCHAR, description VARCHAR)"}, {"answer": "SELECT number_ & _name FROM table_name_65 WHERE date = \"undergoing overhaul, restoration or repairs\"", "question": "What is the number & name with an Undergoing overhaul, restoration or repairs date?", "context": "CREATE TABLE table_name_65 (number_ VARCHAR, _name VARCHAR, date VARCHAR)"}, {"answer": "SELECT number_ & _name FROM table_name_78 WHERE date = \"1958\"", "question": "What is the number & name of the livery in 1958?", "context": "CREATE TABLE table_name_78 (number_ VARCHAR, _name VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_71 WHERE silver > 5 AND total = 29 AND bronze < 16", "question": "What is the lowest rank for a nation with 29 total medals, over 5 silvers, and under 16 bronze?", "context": "CREATE TABLE table_name_71 (rank INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_39 WHERE gold = 26 AND silver > 17", "question": "What is the highest rank for a nation with 26 golds and over 17 silvers?", "context": "CREATE TABLE table_name_39 (rank INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_15 WHERE date = \"november 16, 2004\"", "question": "What is the catalog number with the date November 16, 2004?", "context": "CREATE TABLE table_name_15 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE label = \"sony bmg, epic\" AND catalog = \"5187482\"", "question": "What is the date of the item with a label of Sony BMG, Epic and a Catalog number 5187482?", "context": "CREATE TABLE table_name_82 (date VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_61 WHERE region = \"canada\" AND format = \"cd/dvd\"", "question": "Which Catalog has a Region of Canada and a Format of cd/dvd?", "context": "CREATE TABLE table_name_61 (catalog VARCHAR, region VARCHAR, format VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE region = \"europe\" AND format = \"cd\"", "question": "What is the date for a CD format with a Region of Europe?", "context": "CREATE TABLE table_name_54 (date VARCHAR, region VARCHAR, format VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_28 WHERE school_club_team = \"la salle\"", "question": "What nationality is the la salle team?", "context": "CREATE TABLE table_name_28 (nationality VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_24 WHERE player = \"jim les\"", "question": "What's the nationality of jim les?", "context": "CREATE TABLE table_name_24 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_24 WHERE nationality = \"spain\"", "question": "Which player has a nationality of spain?", "context": "CREATE TABLE table_name_24 (player VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT position FROM table_name_75 WHERE school_club_team = \"nebraska\"", "question": "What position is listed for the nebraska team?", "context": "CREATE TABLE table_name_75 (position VARCHAR, school_club_team VARCHAR)"}, {"answer": "SELECT home FROM table_name_95 WHERE decision = \"ward\" AND date = \"october 24\"", "question": "On October 24, who played at home when there was a decision of Ward?", "context": "CREATE TABLE table_name_95 (home VARCHAR, decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT laps FROM table_name_53 WHERE grid = 8", "question": "How many laps are there for grid 8?", "context": "CREATE TABLE table_name_53 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_46 WHERE grid = 8", "question": "What is the driver for Grid 8?", "context": "CREATE TABLE table_name_46 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_29 WHERE driver = \"clay regazzoni\"", "question": "What is the average grid for Clay Regazzoni?", "context": "CREATE TABLE table_name_29 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_6 WHERE grid < 21 AND driver = \"renzo zorzi\"", "question": "What is the average laps for the grid smaller than 21 for Renzo Zorzi?", "context": "CREATE TABLE table_name_6 (laps INTEGER, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_87 WHERE grid = 9", "question": "What is the average laps for Grid 9?", "context": "CREATE TABLE table_name_87 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT constituted FROM table_name_86 WHERE party = \"labor\" AND name = \"scullin ministry\"", "question": "Name the constituted for labor and scullin ministry", "context": "CREATE TABLE table_name_86 (constituted VARCHAR, party VARCHAR, name VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_70 WHERE home_team = \"south melbourne\"", "question": "Who was South Melbourne's away team opponents?", "context": "CREATE TABLE table_name_70 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT leading_scorer FROM table_name_62 WHERE date = \"november 2, 2007\"", "question": "Who was the leading scorer on November 2, 2007?", "context": "CREATE TABLE table_name_62 (leading_scorer VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_24 WHERE home = \"hawks\"", "question": "What was the attendance when the Hawks played?", "context": "CREATE TABLE table_name_24 (attendance VARCHAR, home VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_39 WHERE \"total\" > 72 AND nation = \"total\" AND silver < 112", "question": "How many bronzes are there for the total nation with 112 silver and a total of 72?", "context": "CREATE TABLE table_name_39 (bronze INTEGER, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_53 WHERE total < 82 AND nation = \"san marino\" AND gold < 3", "question": "What is the highest bronze for San Marino with less than 82 total and less than 3 golds?", "context": "CREATE TABLE table_name_53 (bronze INTEGER, gold VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_92 WHERE bronze > 11 AND total = 29", "question": "How many golds were there when there was more than 11 bronze and 29 in total?", "context": "CREATE TABLE table_name_92 (gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_66 WHERE silver < 7 AND nation = \"montenegro\" AND gold > 4", "question": "What was Montenegro's average bronze with less than 7 silver and more than 4 golds?", "context": "CREATE TABLE table_name_66 (bronze INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_71 WHERE silver > 15 AND nation = \"iceland\"", "question": "How many golds were there for Iceland with more than 15 silver?", "context": "CREATE TABLE table_name_71 (gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_97 WHERE silver < 10 AND nation = \"andorra\" AND bronze > 5", "question": "What was Andorra's total with less than 10 silver and more than 5 bronze?", "context": "CREATE TABLE table_name_97 (total INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT roll FROM table_name_45 WHERE decile = \"6\" AND name = \"poroti school\"", "question": "What is the roll number of Poroti school, which has a 6 decile?", "context": "CREATE TABLE table_name_45 (roll VARCHAR, decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT roll FROM table_name_76 WHERE authority = \"state\" AND area = \"waiotira\"", "question": "What is the roll number of the school with a state authority in Waiotira?", "context": "CREATE TABLE table_name_76 (roll VARCHAR, authority VARCHAR, area VARCHAR)"}, {"answer": "SELECT area FROM table_name_33 WHERE decile = \"2\" AND roll = \"222\"", "question": "What is the area of the school with a decile of 2 and a roll number 222?", "context": "CREATE TABLE table_name_33 (area VARCHAR, decile VARCHAR, roll VARCHAR)"}, {"answer": "SELECT decile FROM table_name_38 WHERE area = \"purua\"", "question": "WHat is the decile of the school in Purua?", "context": "CREATE TABLE table_name_38 (decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT away_team AS score FROM table_name_2 WHERE home_team = \"essendon\"", "question": "what is the away team score when the home team is essendon?", "context": "CREATE TABLE table_name_2 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(tied) FROM table_name_98 WHERE total_games < 1183 AND years = 121 AND lost > 541", "question": "How many total ties had less than 1183 total games, 121 years, and more than 541 losses?", "context": "CREATE TABLE table_name_98 (tied VARCHAR, lost VARCHAR, total_games VARCHAR, years VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_2 WHERE years > 122 AND total_games > 1244", "question": "How many losses had more than 122 years and more than 1244 total games?", "context": "CREATE TABLE table_name_2 (lost INTEGER, years VARCHAR, total_games VARCHAR)"}, {"answer": "SELECT MIN(earnings__) AS $__ FROM table_name_65 WHERE wins > 24", "question": "What is the lowest earnings for a player with over 24 wins?", "context": "CREATE TABLE table_name_65 (earnings__ INTEGER, wins INTEGER)"}, {"answer": "SELECT constructor FROM table_name_28 WHERE laps = 45 AND qual < 142.29 AND driver = \"chuck weyant\"", "question": "Which constructor has Chuck Weyant as a driver, 45 laps, and a qual of less than 142.29?", "context": "CREATE TABLE table_name_28 (constructor VARCHAR, driver VARCHAR, laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_75 WHERE qual = 144.02", "question": "Which time/retired has a qual of 144.02?", "context": "CREATE TABLE table_name_75 (time_retired VARCHAR, qual VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_63 WHERE driver = \"vic elford\" AND engine = \"ford cosworth dfv 3.0 v8\"", "question": "Which rounds did Vic Elford with a Ford cosworth dfv 3.0 v8 engine have?", "context": "CREATE TABLE table_name_63 (rounds VARCHAR, driver VARCHAR, engine VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_93 WHERE rounds = \"all\" AND tyre = \"g\" AND driver = \"bruce mclaren\"", "question": "What is the chassis for Bruce Mclaren with all rounds and a g tyre?", "context": "CREATE TABLE table_name_93 (chassis VARCHAR, driver VARCHAR, rounds VARCHAR, tyre VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_59 WHERE college_junior_club_team__league_ = \"mississauga icedogs (ohl)\"", "question": "What is the NHL team that has a team (League) of Mississauga Icedogs (ohl)?", "context": "CREATE TABLE table_name_59 (nhl_team VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_97 WHERE home_team = \"melbourne victory\"", "question": "Im the match where the home team is Melbourne Victory, what was the crowd attendance?", "context": "CREATE TABLE table_name_97 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE round = \"playoff\"", "question": "What was the score of the match that took place in the playoff round?", "context": "CREATE TABLE table_name_31 (score VARCHAR, round VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_79 WHERE away_team = \"newcastle jets\"", "question": "In the match where newcastle jets was the away team, what was the crown attendance?", "context": "CREATE TABLE table_name_79 (crowd VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE date = \"1990-10-21\"", "question": "What team was the opponent on 1990-10-21?", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_42 WHERE year < 1987", "question": "What was the competition earlier than 1987?", "context": "CREATE TABLE table_name_42 (competition VARCHAR, year INTEGER)"}, {"answer": "SELECT event FROM table_name_16 WHERE placed = \"bronze\" AND year < 1987", "question": "What event placed bronze earlier than 1987?", "context": "CREATE TABLE table_name_16 (event VARCHAR, placed VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE date = \"november 13, 2005\"", "question": "What was the score for the match on November 13, 2005?", "context": "CREATE TABLE table_name_20 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_70 WHERE surface = \"clay\" AND date = \"july 17, 2005\"", "question": "What tournament took place on July 17, 2005, with a clay surface?", "context": "CREATE TABLE table_name_70 (tournament VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_8 WHERE laps > 72", "question": "What is the highest Grid with over 72 laps?", "context": "CREATE TABLE table_name_8 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT AVG(laps) FROM table_name_78 WHERE time_retired = \"+1:14.801\"", "question": "What is the average number of laps associated with a Time/Retired of +1:14.801?", "context": "CREATE TABLE table_name_78 (laps INTEGER, time_retired VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE circuit = \"wanneroo park\"", "question": "What date is the circuit at wanneroo park?", "context": "CREATE TABLE table_name_64 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT team FROM table_name_5 WHERE race_title = \"calder\"", "question": "What team has a title of calder?", "context": "CREATE TABLE table_name_5 (team VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT laps FROM table_name_39 WHERE time_retired = \"+1:08.491\"", "question": "Tell me the Laps for time/retired of +1:08.491", "context": "CREATE TABLE table_name_39 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_56 WHERE constructor = \"toyota\" AND grid = 13", "question": "Tell me the highest laps for toyota and grid of 13", "context": "CREATE TABLE table_name_56 (laps INTEGER, constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_48 WHERE laps = 20", "question": "I want the Driver with Laps of 20", "context": "CREATE TABLE table_name_48 (driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_84 WHERE driver = \"giancarlo fisichella\"", "question": "Tell me the sum of Grid for giancarlo fisichella", "context": "CREATE TABLE table_name_84 (grid INTEGER, driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE venue = \"vfl park\"", "question": "What date was the venue at VFL park?", "context": "CREATE TABLE table_name_97 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_73 WHERE home_team = \"melbourne\"", "question": "What was the crowd attendance when the home team was Melbourne?", "context": "CREATE TABLE table_name_73 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_30 WHERE venue = \"lake oval\"", "question": "What was the away team when the venue was Lake Oval?", "context": "CREATE TABLE table_name_30 (away_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_7 WHERE home_team = \"carlton\"", "question": "What was the away team when the home team was Carlton?", "context": "CREATE TABLE table_name_7 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_27 WHERE round = 11 AND pick = 302", "question": "What player is picked 302 in round 11?", "context": "CREATE TABLE table_name_27 (player VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT laps FROM table_name_41 WHERE driver = \"jackie oliver\"", "question": "How many laps did Jackie Oliver do?", "context": "CREATE TABLE table_name_41 (laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_68 WHERE grid > 7 AND constructor = \"lotus - ford\" AND time_retired = \"+ 2 laps\"", "question": "How many laps with a grid larger than 7 did a Lotus - Ford do with a Time/Retired of + 2 laps?", "context": "CREATE TABLE table_name_68 (laps INTEGER, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_19 WHERE ngc_number < 5457", "question": "What is the name of the constellation that has a NGC number smaller tha 5457?", "context": "CREATE TABLE table_name_19 (constellation VARCHAR, ngc_number INTEGER)"}, {"answer": "SELECT MIN(apparent_magnitude) FROM table_name_67 WHERE declination___j2000__ = \"\u00b039\u203245\u2033\"", "question": "What is the Apparent magnitude of a Declination (J2000) of \u00b039\u203245\u2033?", "context": "CREATE TABLE table_name_67 (apparent_magnitude INTEGER, declination___j2000__ VARCHAR)"}, {"answer": "SELECT supercharger_gear_ratio FROM table_name_22 WHERE octane_rating = \"68\"", "question": "Which supercharger gear ratio has a Octane rating of 68?", "context": "CREATE TABLE table_name_22 (supercharger_gear_ratio VARCHAR, octane_rating VARCHAR)"}, {"answer": "SELECT elite_eight FROM table_name_56 WHERE conference = \"big west\"", "question": "What is the elite eight result for the big west?", "context": "CREATE TABLE table_name_56 (elite_eight VARCHAR, conference VARCHAR)"}, {"answer": "SELECT votes__percentage FROM table_name_24 WHERE candidate = \"cliff breitkreuz\"", "question": "What is the vote % for Cliff Breitkreuz?", "context": "CREATE TABLE table_name_24 (votes__percentage VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_36 WHERE driver = \"damon hill\"", "question": "What is the time/retired for damon hill?", "context": "CREATE TABLE table_name_36 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_4 WHERE time_retired = \"+1 lap\" AND driver = \"olivier panis\"", "question": "Who constructed olivier panis' car that retired after +1 lap?", "context": "CREATE TABLE table_name_4 (constructor VARCHAR, time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_22 WHERE high_points = \"hamilton (24)\"", "question": "What is the high assists of Hamilton (24)?", "context": "CREATE TABLE table_name_22 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT series FROM table_name_32 WHERE high_points = \"prince (23)\"", "question": "What series had a high points of Prince (23)?", "context": "CREATE TABLE table_name_32 (series VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT category FROM table_name_18 WHERE awards = \"british soap awards\" AND result = \"nominated\"", "question": "What category of the British Soap Awards resulted in nominated?", "context": "CREATE TABLE table_name_18 (category VARCHAR, awards VARCHAR, result VARCHAR)"}, {"answer": "SELECT category FROM table_name_38 WHERE year = 2010 AND result = \"nominated\" AND awards = \"british soap awards\"", "question": "What category was nominated in 2010 fo the British Soap Awards?", "context": "CREATE TABLE table_name_38 (category VARCHAR, awards VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT country FROM table_name_14 WHERE name = \"dyer\"", "question": "Which country is Dyer from?", "context": "CREATE TABLE table_name_14 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_32 WHERE moving_from = \"everton\"", "question": "What country is the athlete moving from Everton from?", "context": "CREATE TABLE table_name_32 (country VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_32 WHERE 2009 = \"2r\"", "question": "Name the tournament for 2009 2r", "context": "CREATE TABLE table_name_32 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_7 WHERE 2009 = \"2r\" AND tournament = \"wimbledon\"", "question": "Name the 2011 for 2009 being 2r at wimbledon", "context": "CREATE TABLE table_name_7 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_19 WHERE 2009 = \"1r\"", "question": "Name the 2012 for 2009 of 1r", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_7 WHERE home_team = \"south melbourne\"", "question": "Who was the away team when the home team was South Melbourne?", "context": "CREATE TABLE table_name_7 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(swimsuit) FROM table_name_35 WHERE evening_gown > 9.48 AND country = \"florida\" AND interview > 8.94", "question": "What is the total swimsuit number with gowns larger than 9.48 with interviews larger than 8.94 in florida?", "context": "CREATE TABLE table_name_35 (swimsuit VARCHAR, interview VARCHAR, evening_gown VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(average) FROM table_name_70 WHERE swimsuit < 9.62 AND country = \"colorado\"", "question": "What is the total average for swimsuits smaller than 9.62 in Colorado?", "context": "CREATE TABLE table_name_70 (average INTEGER, swimsuit VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_86 WHERE total = 47", "question": "What was the bronze medal count of the team that finished with 47 total medals?", "context": "CREATE TABLE table_name_86 (bronze INTEGER, total VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_41 WHERE bronze = 8", "question": "What is the silver medal count of the team that finished with 8 bronze medals?", "context": "CREATE TABLE table_name_41 (silver INTEGER, bronze VARCHAR)"}, {"answer": "SELECT status FROM table_name_10 WHERE athlete = \"ren\u00e9 hoppe\"", "question": "What is the status of ren\u00e9 hoppe?", "context": "CREATE TABLE table_name_10 (status VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_17 WHERE country = \"switzerland\" AND gold < 7 AND silver < 3", "question": "How many times does Switzerland have under 7 golds and less than 3 silvers?", "context": "CREATE TABLE table_name_17 (total VARCHAR, silver VARCHAR, country VARCHAR, gold VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_87 WHERE gold < 7 AND total = 14", "question": "What athlete has less than 7 gold and 14 total medals?", "context": "CREATE TABLE table_name_87 (athlete VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(crowd) FROM table_name_13 WHERE home_team = \"hawthorn\"", "question": "What is the average crowd size for the home team hawthorn?", "context": "CREATE TABLE table_name_13 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_48 WHERE home_team = \"st kilda\"", "question": "Where does St Kilda play?", "context": "CREATE TABLE table_name_48 (venue VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_76 WHERE away_team = \"fitzroy\"", "question": "Who was the home team when Fitzroy was the away team?", "context": "CREATE TABLE table_name_76 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_43 WHERE venue = \"kardinia park\"", "question": "What was the home team score at Kardinia Park?", "context": "CREATE TABLE table_name_43 (home_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(crowd) FROM table_name_2 WHERE home_team = \"carlton\"", "question": "What was the lowest crowd size for the Carlton at home?", "context": "CREATE TABLE table_name_2 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT engine FROM table_name_57 WHERE rounds = \"7\" AND driver = \"geki\"", "question": "Name the engine with rounds of 7 with geki driver", "context": "CREATE TABLE table_name_57 (engine VARCHAR, rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_24 WHERE rounds = \"3\"", "question": "Name the driver for 3 rounds", "context": "CREATE TABLE table_name_24 (driver VARCHAR, rounds VARCHAR)"}, {"answer": "SELECT COUNT(crowd) FROM table_name_6 WHERE home_team = \"north melbourne\"", "question": "What was the attendance of the North Melbourne's home game?", "context": "CREATE TABLE table_name_6 (crowd VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_36 WHERE home_team = \"fitzroy\"", "question": "What was the attendance at the Fitzroy home game?", "context": "CREATE TABLE table_name_36 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MAX(crowd) FROM table_name_46 WHERE home_team = \"richmond\"", "question": "What was Richmond's highest attendance?", "context": "CREATE TABLE table_name_46 (crowd INTEGER, home_team VARCHAR)"}, {"answer": "SELECT ground FROM table_name_49 WHERE match = 4", "question": "Which ground is match 4 held on?", "context": "CREATE TABLE table_name_49 (ground VARCHAR, match VARCHAR)"}, {"answer": "SELECT game FROM table_name_15 WHERE team = \"chicago\"", "question": "Which game number did they play the Chicago team?", "context": "CREATE TABLE table_name_15 (game VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE location_attendance = \"air canada centre 19,800\"", "question": "What was the season record when the location attendance was Air Canada Centre 19,800?", "context": "CREATE TABLE table_name_26 (record VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_29 WHERE home = \"ny rangers\"", "question": "Name the visitor for home of ny rangers", "context": "CREATE TABLE table_name_29 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT label FROM table_name_25 WHERE media = \"cd\" AND release_date = 2004", "question": "What is the label for a CD released in 2004?", "context": "CREATE TABLE table_name_25 (label VARCHAR, media VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT label FROM table_name_89 WHERE release_date = 1982 AND country = \"us\"", "question": "Who made a release in the US in 1982?", "context": "CREATE TABLE table_name_89 (label VARCHAR, release_date VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_88 WHERE venue = \"arden street oval\"", "question": "In the match where the venue was arden street oval, what was the crowd attendance?", "context": "CREATE TABLE table_name_88 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT SUM(crowd) FROM table_name_58 WHERE venue = \"punt road oval\"", "question": "What was the crowd attendance in the match at punt road oval?", "context": "CREATE TABLE table_name_58 (crowd INTEGER, venue VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_32 WHERE crowd > 21 OFFSET 188", "question": "What was the score when the home team had a crowd larger than 21,188?", "context": "CREATE TABLE table_name_32 (home_team VARCHAR, crowd INTEGER)"}, {"answer": "SELECT venue FROM table_name_23 WHERE away_team = \"north melbourne\"", "question": "Where did north melbourne play while away?", "context": "CREATE TABLE table_name_23 (venue VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team AS score FROM table_name_10 WHERE away_team = \"north melbourne\"", "question": "What did the team score at home in north melbourne?", "context": "CREATE TABLE table_name_10 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_54 WHERE grid < 2", "question": "What was the time of the driver in grid 2?", "context": "CREATE TABLE table_name_54 (time_retired VARCHAR, grid INTEGER)"}, {"answer": "SELECT time_retired FROM table_name_51 WHERE grid < 14 AND driver = \"carroll shelby\"", "question": "What time did Carroll Shelby have in Grid 14?", "context": "CREATE TABLE table_name_51 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_85 WHERE laps < 62 AND constructor = \"ferrari\"", "question": "What time did the ferrari car that finished 62 laps have?", "context": "CREATE TABLE table_name_85 (time_retired VARCHAR, laps VARCHAR, constructor VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE visitor = \"knicks\" AND attendance > 18 OFFSET 165", "question": "What is the date of the game where the vistor team was the Knicks and more than 18,165 were in attendance?", "context": "CREATE TABLE table_name_11 (date VARCHAR, visitor VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_79 WHERE driver = \"teo fabi\" AND grid < 9", "question": "Whats teo fabi average lap time while having less than 9 grids?", "context": "CREATE TABLE table_name_79 (laps INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT driver FROM table_name_12 WHERE grid = 19", "question": "Which driver drove in grid 19?", "context": "CREATE TABLE table_name_12 (driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_5 WHERE date = \"april 29\"", "question": "Who was the opponent on April 29?", "context": "CREATE TABLE table_name_5 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_50 WHERE date = \"april 17\"", "question": "How many attended the game on April 17?", "context": "CREATE TABLE table_name_50 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_86 WHERE date = \"april 3\"", "question": "What is the record on April 3?", "context": "CREATE TABLE table_name_86 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT weight FROM table_name_33 WHERE internal_storage = \"16-64 gb\" AND wireless_network = \"wi-fi, 3g\"", "question": "What is the weight of the display that has an internal storage of 16-64 GB and uses a wi-fi, 3G wireless network?", "context": "CREATE TABLE table_name_33 (weight VARCHAR, internal_storage VARCHAR, wireless_network VARCHAR)"}, {"answer": "SELECT wireless_network FROM table_name_6 WHERE screen_type = \"lcd\" AND internal_storage = \"4 gb\"", "question": "Which wireless network did LCD displays with 4 GB of internal storage use?", "context": "CREATE TABLE table_name_6 (wireless_network VARCHAR, screen_type VARCHAR, internal_storage VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_98 WHERE wins < 15 AND against = 1228", "question": "What's the lowest number of draws when the wins are less than 15, and against is 1228?", "context": "CREATE TABLE table_name_98 (draws INTEGER, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_72 WHERE against > 1228 AND wins < 1", "question": "What's the sum of draws for against larger than 1228 with fewer than 1 wins?", "context": "CREATE TABLE table_name_72 (draws INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT dates FROM table_name_27 WHERE lifetime_achievement = \"jim jarmusch\"", "question": "On what dates did Jim Jarmusch win the Lifetime Achievement?", "context": "CREATE TABLE table_name_27 (dates VARCHAR, lifetime_achievement VARCHAR)"}, {"answer": "SELECT home FROM table_name_45 WHERE visitor = \"colorado\" AND record = \"26\u201315\u20139\"", "question": "Which team was the home team when Colorado was the visitor and the record became 26\u201315\u20139?", "context": "CREATE TABLE table_name_45 (home VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE record = \"25\u201314\u20139\"", "question": "What was the score when the record became 25\u201314\u20139?", "context": "CREATE TABLE table_name_78 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE record = \"26\u201314\u20139\"", "question": "What was the date the record became 26\u201314\u20139?", "context": "CREATE TABLE table_name_35 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_88 WHERE visitor = \"colorado\" AND record = \"22\u201313\u20136\"", "question": "What team was the home team when Colorado was the visitor and the record became 22\u201313\u20136?", "context": "CREATE TABLE table_name_88 (home VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT venue FROM table_name_55 WHERE tournament = \"asian games\"", "question": "What's the venue for the asian games tournament?", "context": "CREATE TABLE table_name_55 (venue VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_48 WHERE result = \"6th\"", "question": "Which tournament resulted in 6th place?", "context": "CREATE TABLE table_name_48 (tournament VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_19 WHERE venue = \"doha, qatar\"", "question": "What's the latest year that Doha, Qatar hosted a tournament?", "context": "CREATE TABLE table_name_19 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_81 WHERE venue = \"doha, qatar\"", "question": "What's the average of all years tournaments were hosted in Doha, Qatar?", "context": "CREATE TABLE table_name_81 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_68 WHERE position = \"running back\" AND round > 1 AND college = \"fresno state\"", "question": "What is the overall draft number for the running back drafted after round 1 from fresno state?", "context": "CREATE TABLE table_name_68 (overall INTEGER, college VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_25 WHERE college = \"notre dame\"", "question": "What is the overall total for players drafted from notre dame?", "context": "CREATE TABLE table_name_25 (overall INTEGER, college VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_23 WHERE silver > 1", "question": "Name the sum of gold which has a silver more than 1", "context": "CREATE TABLE table_name_23 (gold INTEGER, silver INTEGER)"}, {"answer": "SELECT AVG(rank) FROM table_name_15 WHERE nation = \"west germany\" AND gold > 1", "question": "Name the average rank for west germany when gold is more than 1", "context": "CREATE TABLE table_name_15 (rank INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_86 WHERE bronze > 1", "question": "Name the average rank for when bronze is more than 1", "context": "CREATE TABLE table_name_86 (rank INTEGER, bronze INTEGER)"}, {"answer": "SELECT SUM(gold) FROM table_name_87 WHERE silver < 0", "question": "I want the sum of gold for silver being less than 0", "context": "CREATE TABLE table_name_87 (gold INTEGER, silver INTEGER)"}, {"answer": "SELECT polling_dates FROM table_name_41 WHERE alex_munter = \"25%\" AND polling_firm = \"decima\"", "question": "What dates does Alex Munter have 25% and the polling firm of Decima?", "context": "CREATE TABLE table_name_41 (polling_dates VARCHAR, alex_munter VARCHAR, polling_firm VARCHAR)"}, {"answer": "SELECT terry_kilrea__dropped_out_ FROM table_name_63 WHERE polling_firm = \"holinshed\" AND bob_chiarelli = \"22.5%\"", "question": "What are the polling dates for polling firm Holinshed when Terry Kilrea dropped out and Bob Chiarelli has 22.5%?", "context": "CREATE TABLE table_name_63 (terry_kilrea__dropped_out_ VARCHAR, polling_firm VARCHAR, bob_chiarelli VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE outcome = \"runner up\" AND opponent = \"lu jiaxiang\"", "question": "What is Date, when Outcome is \"Runner Up\", and when Opponent is \"Lu Jiaxiang\"?", "context": "CREATE TABLE table_name_91 (date VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_8 WHERE tournament = \"phuket , thailand\"", "question": "What is Opponent, when Tournament is \"Phuket , Thailand\"?", "context": "CREATE TABLE table_name_8 (opponent VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_87 WHERE tournament = \"saint joseph , united states\"", "question": "What is Surface, when Tournament is \"Saint Joseph , United States\"?", "context": "CREATE TABLE table_name_87 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_98 WHERE opponent = \"lu jiaxiang\"", "question": "What is Tournament, when Opponent is \"Lu Jiaxiang\"?", "context": "CREATE TABLE table_name_98 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_90 WHERE tournament = \"chiang mai , thailand\"", "question": "What is Outcome, when Tournament is \"Chiang Mai , Thailand\"?", "context": "CREATE TABLE table_name_90 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_97 WHERE date = \"19 september 2012\"", "question": "What is Outcome, when Date is \"19 September 2012\"?", "context": "CREATE TABLE table_name_97 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(poles) FROM table_name_59 WHERE races < 4", "question": "What Poles have Races smaller than 4?", "context": "CREATE TABLE table_name_59 (poles INTEGER, races INTEGER)"}, {"answer": "SELECT COUNT(points) FROM table_name_39 WHERE series = \"italian formula renault 2.0\" AND poles < 0", "question": "What is the sum of Points with a Series of italian formula renault 2.0, and Poles smaller than 0?", "context": "CREATE TABLE table_name_39 (points VARCHAR, series VARCHAR, poles VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_67 WHERE wins > 0 AND position = \"12th\" AND poles > 0", "question": "What is the total number of Points with Wins larger than 0, a Position of 12th, and Poles larger than 0?", "context": "CREATE TABLE table_name_67 (points INTEGER, poles VARCHAR, wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_19 WHERE position = \"20th\" AND poles < 0", "question": "What is the smallest Wins with a Position of 20th, and Poles smaller than 0?", "context": "CREATE TABLE table_name_19 (wins INTEGER, position VARCHAR, poles VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE location = \"madrid, esp\"", "question": "What is the date of the match located in Madrid, Esp?", "context": "CREATE TABLE table_name_69 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT miss_maja_pilipinas FROM table_name_55 WHERE second_runner_up = \"maria penson\"", "question": "Can you tell me the Miss Pilipinas that has the Second runner-up of maria penson?", "context": "CREATE TABLE table_name_55 (miss_maja_pilipinas VARCHAR, second_runner_up VARCHAR)"}, {"answer": "SELECT miss_maja_pilipinas FROM table_name_30 WHERE year = 1969", "question": "Can you tell me the Miss Maja Pilipinas that has the Year of 1969?", "context": "CREATE TABLE table_name_30 (miss_maja_pilipinas VARCHAR, year VARCHAR)"}, {"answer": "SELECT third_runner_up FROM table_name_80 WHERE year = 1969", "question": "Can you tell me the Third runner-up that has the Year of 1969?", "context": "CREATE TABLE table_name_80 (third_runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT byes FROM table_name_91 WHERE against < 1466 AND losses < 6", "question": "Which Byes have an Against smaller than 1466, and Losses smaller than 6?", "context": "CREATE TABLE table_name_91 (byes VARCHAR, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_47 WHERE week = 2", "question": "What was week 2's opponent?", "context": "CREATE TABLE table_name_47 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_91 WHERE attendance = 20 OFFSET 112", "question": "Which Week has an Attendance of 20,112?", "context": "CREATE TABLE table_name_91 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_37 WHERE make = \"dodge intrepid\"", "question": "What is the margin of victory of the Dodge Intrepid?", "context": "CREATE TABLE table_name_37 (margin_of_victory VARCHAR, make VARCHAR)"}, {"answer": "SELECT MIN(car__number) FROM table_name_22 WHERE sponsor = \"ups\" AND season < 2001", "question": "What is the lowest car number sponsored by UPS before 2001?", "context": "CREATE TABLE table_name_22 (car__number INTEGER, sponsor VARCHAR, season VARCHAR)"}, {"answer": "SELECT sponsor FROM table_name_46 WHERE winning_driver = \"greg biffle\" AND date = \"april 14\"", "question": "Who sponsored Greg Biffle's win on April 14?", "context": "CREATE TABLE table_name_46 (sponsor VARCHAR, winning_driver VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(car__number) FROM table_name_40 WHERE sponsor = \"post-it / national guard\"", "question": "What is the highest car number sponsored by Post-It / National Guard?", "context": "CREATE TABLE table_name_40 (car__number INTEGER, sponsor VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_9 WHERE car__number > 17 AND sponsor = \"ups\"", "question": "How many seasons has UPS sponsored a car with a number larger than 17?", "context": "CREATE TABLE table_name_9 (season VARCHAR, car__number VARCHAR, sponsor VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_61 WHERE set_1 = \"29\u201327\"", "question": "What shows for set 2 when Set 1 is 29\u201327?", "context": "CREATE TABLE table_name_61 (set_2 VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT time FROM table_name_48 WHERE set_1 = \"21\u201325\"", "question": "What is the time when the set 1 is 21\u201325?", "context": "CREATE TABLE table_name_48 (time VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE set_3 = \"26\u201328\"", "question": "What is the score when the set 3 is 26\u201328?", "context": "CREATE TABLE table_name_5 (score VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE set_3 = \"26\u201328\"", "question": "What is the Score when the set 3 is 26\u201328?", "context": "CREATE TABLE table_name_68 (score VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_95 WHERE total = \"78\u201392\"", "question": "What is the set 3 when the total is 78\u201392?", "context": "CREATE TABLE table_name_95 (set_3 VARCHAR, total VARCHAR)"}, {"answer": "SELECT total FROM table_name_95 WHERE set_1 = \"21\u201325\"", "question": "What is the total when the set 1 is 21\u201325?", "context": "CREATE TABLE table_name_95 (total VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_75 WHERE draw < 51 AND wins > 6", "question": "How many total losses were with less than 51 draws but more than 6 wins?", "context": "CREATE TABLE table_name_75 (losses VARCHAR, draw VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_86 WHERE against > 6 AND draw = 51", "question": "How many matches has 51 draws and more than 6 against?", "context": "CREATE TABLE table_name_86 (matches INTEGER, against VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_80 WHERE against > 165", "question": "How many wins has more than 165 against?", "context": "CREATE TABLE table_name_80 (wins INTEGER, against INTEGER)"}, {"answer": "SELECT AVG(draw) FROM table_name_47 WHERE losses < 35 AND matches = 136 AND against < 146", "question": "How many draws have less than 35 losses with 136 matches and less than 146 against?", "context": "CREATE TABLE table_name_47 (draw INTEGER, against VARCHAR, losses VARCHAR, matches VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_84 WHERE wins > 15", "question": "How many Againsts have more than 15 wins?", "context": "CREATE TABLE table_name_84 (against VARCHAR, wins INTEGER)"}, {"answer": "SELECT AVG(byes) FROM table_name_7 WHERE losses > 0 AND against > 3049", "question": "Which Byes have Losses larger than 0, and an Against larger than 3049?", "context": "CREATE TABLE table_name_7 (byes INTEGER, losses VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(points_1) FROM table_name_62 WHERE position = 7 AND drawn > 6", "question": "What is the total number of Points 1, when Position is \"7\", and when Drawn is greater than 6?", "context": "CREATE TABLE table_name_62 (points_1 VARCHAR, position VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_2 WHERE team = \"cheadle town\" AND drawn > 7", "question": "What is the highest Goals For, when Team is \"Cheadle Town\", and when Drawn is greater than 7?", "context": "CREATE TABLE table_name_2 (goals_for INTEGER, team VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_44 WHERE points_1 > 23 AND goals_for = 77", "question": "What is the sum of Position, when Points 1 is greater than 23, and when Goals For is \"77\"?", "context": "CREATE TABLE table_name_44 (position INTEGER, points_1 VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT played FROM table_name_91 WHERE goal_difference = \"+51\"", "question": "What is Played, when Goal Difference is \"+51\"?", "context": "CREATE TABLE table_name_91 (played VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE surface = \"carpet\"", "question": "What is Date, when Surface is \"Carpet\"?", "context": "CREATE TABLE table_name_24 (date VARCHAR, surface VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_82 WHERE date = \"6 october 2008\"", "question": "What is Tournament, when Date is \"6 October 2008\"?", "context": "CREATE TABLE table_name_82 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_4 WHERE tournament = \"sunderland , united kingdom\"", "question": "What is Surface, when Tournament is \"Sunderland , United Kingdom\"?", "context": "CREATE TABLE table_name_4 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_58 WHERE outgoing_manager = \"istv\u00e1n s\u00e1ndor\"", "question": "Who replaced Istv\u00e1n S\u00e1ndor?", "context": "CREATE TABLE table_name_58 (replaced_by VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_name_60 WHERE outgoing_manager = \"l\u00e1szl\u00f3 dajka\"", "question": "What is the position that has the outgoing manager l\u00e1szl\u00f3 Dajka?", "context": "CREATE TABLE table_name_60 (position_in_table VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_77 WHERE outgoing_manager = \"zolt\u00e1n varga\"", "question": "When was outgoing manager Zolt\u00e1n Varga appointed?", "context": "CREATE TABLE table_name_77 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE date = \"05 dec\"", "question": "Can you tell me the Score that has the Date of 05 dec?", "context": "CREATE TABLE table_name_28 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(points__pts_) FROM table_name_26 WHERE won__pg_ > 17", "question": "What is the average number of points of the team with more than 17 pg won?", "context": "CREATE TABLE table_name_26 (points__pts_ INTEGER, won__pg_ INTEGER)"}, {"answer": "SELECT COUNT(won__pg_) FROM table_name_67 WHERE goals_conceded__gc_ = 64 AND goals_scored__gf_ > 33", "question": "What is the total number of pg won of the team with 64 goals conceded and more than 33 goals scored?", "context": "CREATE TABLE table_name_67 (won__pg_ VARCHAR, goals_conceded__gc_ VARCHAR, goals_scored__gf_ VARCHAR)"}, {"answer": "SELECT SUM(draw__pe_) FROM table_name_28 WHERE team__equipo_ = \"plaza amador\" AND won__pg_ < 6", "question": "What is the sum of the pe draw of team plaza amador, who has less than 6 pg won?", "context": "CREATE TABLE table_name_28 (draw__pe_ INTEGER, team__equipo_ VARCHAR, won__pg_ VARCHAR)"}, {"answer": "SELECT SUM(place__posici\u00f3n_) FROM table_name_70 WHERE points__pts_ > 49 AND goals_scored__gf_ < 54", "question": "What is the sum of the places of the team with more than 49 points and less than 54 goals scored?", "context": "CREATE TABLE table_name_70 (place__posici\u00f3n_ INTEGER, points__pts_ VARCHAR, goals_scored__gf_ VARCHAR)"}, {"answer": "SELECT away FROM table_name_15 WHERE home = \"2-2\"", "question": "WHAT IS THE AWAY WITH HOME AT 2-2?", "context": "CREATE TABLE table_name_15 (away VARCHAR, home VARCHAR)"}, {"answer": "SELECT league FROM table_name_63 WHERE home = \"1-1\"", "question": "WHAT IS THE LEAGUE WITH HOME 1-1?", "context": "CREATE TABLE table_name_63 (league VARCHAR, home VARCHAR)"}, {"answer": "SELECT weight FROM table_name_31 WHERE club = \"uralochka zlatoust\" AND date_of_birth = \"1981-02-24\"", "question": "What is the Weight of the person born 1981-02-24 from the Uralochka Zlatoust club ?", "context": "CREATE TABLE table_name_31 (weight VARCHAR, club VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT SUM(number_of_households) FROM table_name_43 WHERE median_household_income = \"$44,718\"", "question": "What is the sum of households that makes a median household income of $44,718?", "context": "CREATE TABLE table_name_43 (number_of_households INTEGER, median_household_income VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_96 WHERE county = \"baraga\" AND number_of_households < 3 OFFSET 444", "question": "What is the highest population for Baraga County with less than 3,444 households?", "context": "CREATE TABLE table_name_96 (population INTEGER, county VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT player FROM table_name_3 WHERE score = 68 - 70 - 68 - 66 = 272", "question": "Which golfer had a score of 68-70-68-66=272?", "context": "CREATE TABLE table_name_3 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_62 WHERE score = 67 - 67 - 66 - 68 = 268", "question": "What place was the golfer with a score of 67-67-66-68=268 ranked in?", "context": "CREATE TABLE table_name_62 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT category FROM table_name_37 WHERE nominated = \"maite perroni\" AND year < 2009", "question": "Which category was Maite Perroni nominated for earlier than 2009?", "context": "CREATE TABLE table_name_37 (category VARCHAR, nominated VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_78 WHERE award = \"tv adicto golden awards\" AND category = \"female revelation\"", "question": "In what year was there an award for TV Adicto Golden Awards and the category Female Revelation?", "context": "CREATE TABLE table_name_78 (year VARCHAR, award VARCHAR, category VARCHAR)"}, {"answer": "SELECT winner FROM table_name_49 WHERE team_classification = \"silence-lotto\"", "question": "What winner has silence-lotto as the team classification?", "context": "CREATE TABLE table_name_49 (winner VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_45 WHERE mountains_classification = \"david de la fuente\" AND points_classification = \"thor hushovd\"", "question": "What general classification has david de la fuente as mountains classification, and thor hushovd as points classification?", "context": "CREATE TABLE table_name_45 (general_classification VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_26 WHERE points_classification = \"levi leipheimer\"", "question": "What general classification has levi leipheimer as points classification?", "context": "CREATE TABLE table_name_26 (general_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT team_classification FROM table_name_26 WHERE points_classification = \"alejandro valverde\" AND winner = \"alejandro valverde\" AND stage = \"3\"", "question": "What team classification has alejandro valverde as points classification, with alejandro valverde as the winner, with 3 as the stage?", "context": "CREATE TABLE table_name_26 (team_classification VARCHAR, stage VARCHAR, points_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_name_14 WHERE mountains_classification = \"pierre rolland\" AND stage = \"7\"", "question": "What winner has pierre rolland as mountains classification, with 7 as the stage?", "context": "CREATE TABLE table_name_14 (winner VARCHAR, mountains_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_96 WHERE stage = \"4\"", "question": "What general classification has 4 as the stage?", "context": "CREATE TABLE table_name_96 (general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_9 WHERE goals_against = 111", "question": "What are the lowest lost has 111 as the goals against?", "context": "CREATE TABLE table_name_9 (lost INTEGER, goals_against VARCHAR)"}, {"answer": "SELECT MAX(goals_against) FROM table_name_4 WHERE position = 15", "question": "What is the highest goals against that has 15 as position?", "context": "CREATE TABLE table_name_4 (goals_against INTEGER, position VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_71 WHERE goals_for = 30 AND points > 24", "question": "Hiw many losses have 30 for the goals with points greater than 24?", "context": "CREATE TABLE table_name_71 (losses VARCHAR, goals_for VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_26 WHERE goals_for < 56 AND position = 10 AND goals_against < 45", "question": "How many draws have goals for less than 56, 10 as the postion, with goals against less than 45?", "context": "CREATE TABLE table_name_26 (draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_8 WHERE points = 31 AND wins > 12 AND goal_difference < 11", "question": "What is the highest draws that have 31 for points, wins greater than 12, with a goal difference less than 11?", "context": "CREATE TABLE table_name_8 (draws INTEGER, goal_difference VARCHAR, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_66 WHERE game = \"game 4\"", "question": "Name Road Team of Game of game 4?", "context": "CREATE TABLE table_name_66 (road_team VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE road_team = \"chicago\" AND result = \"88-85 (ot)\"", "question": "Which Date has a Road Team of chicago, and a Result of 88-85 (ot)?", "context": "CREATE TABLE table_name_33 (date VARCHAR, road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_3 WHERE date = \"june 12\"", "question": "Which Home Team is on june 12?", "context": "CREATE TABLE table_name_3 (home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_79 WHERE date = \"june 5\"", "question": "Which Result that is on june 5?", "context": "CREATE TABLE table_name_79 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE result = \"86-87\"", "question": "Which Date has Result of 86-87?", "context": "CREATE TABLE table_name_58 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_86 WHERE game = \"game 1\"", "question": "Which Result has a Game of game 1?", "context": "CREATE TABLE table_name_86 (result VARCHAR, game VARCHAR)"}, {"answer": "SELECT miss_maja_pilipinas FROM table_name_30 WHERE binibining_pilipinas_tourism = \"not awarded\" AND binibining_pilipinas_universe = \"anjanette abayari\"", "question": "What Miss Maja Pilipinas has a Binibining Pilipinas-Tourism of not awarded, and a Binibining Pilipinas-Universe of anjanette abayari?", "context": "CREATE TABLE table_name_30 (miss_maja_pilipinas VARCHAR, binibining_pilipinas_tourism VARCHAR, binibining_pilipinas_universe VARCHAR)"}, {"answer": "SELECT binibining_pilipinas_international FROM table_name_7 WHERE year > 1990 AND binibining_pilipinas_universe = \"maria lourdes gonzalez\"", "question": "What Binibining Pilipinas-International has a Year larger than 1990, and a Binibining Pilipinas-Universe of maria lourdes gonzalez?", "context": "CREATE TABLE table_name_7 (binibining_pilipinas_international VARCHAR, year VARCHAR, binibining_pilipinas_universe VARCHAR)"}, {"answer": "SELECT first_runner_up FROM table_name_40 WHERE miss_maja_pilipinas = \"nanette prodigalidad\"", "question": "What First runner-up has a Miss Maja Pilipinas of nanette prodigalidad?", "context": "CREATE TABLE table_name_40 (first_runner_up VARCHAR, miss_maja_pilipinas VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_90 WHERE binibining_pilipinas_international = \"jessie alice salones dixson\"", "question": "What is the smallest Year with a Binibining Pilipinas-International of jessie alice salones dixson?", "context": "CREATE TABLE table_name_90 (year INTEGER, binibining_pilipinas_international VARCHAR)"}, {"answer": "SELECT binibining_pilipinas_international FROM table_name_2 WHERE year = 1975", "question": "What Binibining Pilipinas-International has a Year of 1975?", "context": "CREATE TABLE table_name_2 (binibining_pilipinas_international VARCHAR, year VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_47 WHERE player = \"jesper parnevik\"", "question": "What is To par, when Player is \"Jesper Parnevik\"?", "context": "CREATE TABLE table_name_47 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE place = \"1\"", "question": "What is Player, when Place is \"1\"?", "context": "CREATE TABLE table_name_43 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_74 WHERE country = \"united states\" AND player = \"mark brooks\"", "question": "What is To par, when Country is \"United States\", and when Player is \"Mark Brooks\"?", "context": "CREATE TABLE table_name_74 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_17 WHERE player = \"phil mickelson\"", "question": "What is Place, when Player is \"Phil Mickelson\"?", "context": "CREATE TABLE table_name_17 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE player = \"brad faxon\"", "question": "What is Score, when Player is \"Brad Faxon\"?", "context": "CREATE TABLE table_name_68 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(edition) FROM table_name_64 WHERE year > 2003 AND third = \"tikve\u0161\" AND runner_up = \"sileks\"", "question": "What was the edition after 2003 when the Third was Tikve\u0161 and Sileks was the runner-up?", "context": "CREATE TABLE table_name_64 (edition INTEGER, runner_up VARCHAR, year VARCHAR, third VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_7 WHERE edition = 14", "question": "What was the latest year with an edition of 14?", "context": "CREATE TABLE table_name_7 (year INTEGER, edition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_28 WHERE date = \"18/03/2006\"", "question": "What was the venue for the game on 18/03/2006?", "context": "CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE place = \"t8\"", "question": "What was the score when the place was t8?", "context": "CREATE TABLE table_name_96 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_32 WHERE score = 71 - 66 - 66 - 71 = 274", "question": "What country scored 71-66-66-71=274?", "context": "CREATE TABLE table_name_32 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_2 WHERE score = 66 - 65 - 66 - 72 = 269", "question": "What country scored 66-65-66-72=269?", "context": "CREATE TABLE table_name_2 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_94 WHERE place = \"t3\" AND country = \"united states\"", "question": "What was the money for place t3 and United States?", "context": "CREATE TABLE table_name_94 (money___$__ VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_52 WHERE player = \"jeff sluman\"", "question": "What country does Jeff Sluman play for?", "context": "CREATE TABLE table_name_52 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_70 WHERE place = \"t8\" AND score = 71 - 66 - 66 - 71 = 274", "question": "What was the to par for place t8 and a score of 71-66-66-71=274?", "context": "CREATE TABLE table_name_70 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_47 WHERE away_team = \"fleetwood town\"", "question": "What home team played against Fleetwood Town?", "context": "CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_66 WHERE frequency = 1300", "question": "What callsign has 1300 as the frequency?", "context": "CREATE TABLE table_name_66 (callsign VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_66 WHERE club = \"f.c. igea virtus barcellona\"", "question": "What's the name of the stadium when the club was F.C. Igea Virtus Barcellona?", "context": "CREATE TABLE table_name_66 (stadium VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_30 WHERE club = \"f.c. igea virtus barcellona\"", "question": "What was the largest capacity when the club was F.C. Igea Virtus Barcellona?", "context": "CREATE TABLE table_name_30 (capacity INTEGER, club VARCHAR)"}, {"answer": "SELECT name FROM table_name_90 WHERE total = 34", "question": "Who had a total of 34?", "context": "CREATE TABLE table_name_90 (name VARCHAR, total VARCHAR)"}, {"answer": "SELECT highest_rank FROM table_name_60 WHERE total < 30 AND name = \"takat\u014driki\"", "question": "What rank is Takat\u014driki having less than 30 total?", "context": "CREATE TABLE table_name_60 (highest_rank VARCHAR, total VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_42 WHERE first = \"november 1966\"", "question": "What was the total when the first was November 1966?", "context": "CREATE TABLE table_name_42 (total INTEGER, first VARCHAR)"}, {"answer": "SELECT last FROM table_name_72 WHERE total > 26 AND first = \"january 2001\"", "question": "What is the last when the first was January 2001 and more than 26 total?", "context": "CREATE TABLE table_name_72 (last VARCHAR, total VARCHAR, first VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_87 WHERE last = \"september 1970\"", "question": "What is the greatest total when the last was September 1970?", "context": "CREATE TABLE table_name_87 (total INTEGER, last VARCHAR)"}, {"answer": "SELECT highest_rank FROM table_name_53 WHERE name = \"takat\u014driki\"", "question": "What rank is Takat\u014driki?", "context": "CREATE TABLE table_name_53 (highest_rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_55 WHERE pts = \"54 (73)\"", "question": "What year has 54 (73) points?", "context": "CREATE TABLE table_name_55 (year INTEGER, pts VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_90 WHERE year > 1967", "question": "What is the chassis more recent than 1967?", "context": "CREATE TABLE table_name_90 (chassis VARCHAR, year INTEGER)"}, {"answer": "SELECT AVG(year) FROM table_name_19 WHERE chassis = \"lotus 25\"", "question": "What is the year of the Lotus 25 chassis?", "context": "CREATE TABLE table_name_19 (year INTEGER, chassis VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_97 WHERE chassis = \"lotus 18\"", "question": "What is the year of the Lotus 18 chassis?", "context": "CREATE TABLE table_name_97 (year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_16 WHERE district = \"minnesota 2\"", "question": "What is First Elected, when District is \"Minnesota 2\"?", "context": "CREATE TABLE table_name_16 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_name_19 WHERE party = \"republican\" AND district = \"minnesota 1\"", "question": "What is the lowest First Elected, when Party is \"Republican\", and when District is \"Minnesota 1\"?", "context": "CREATE TABLE table_name_19 (first_elected INTEGER, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_name_10 WHERE results = \"re-elected\" AND first_elected > 1990 AND district = \"minnesota 4\"", "question": "What is Party, when Results is \"Re-Elected\", when First Elected is greater than 1990, and when District is \"Minnesota 4\"?", "context": "CREATE TABLE table_name_10 (party VARCHAR, district VARCHAR, results VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_75 WHERE results = \"re-elected\" AND party = \"democratic\" AND district = \"minnesota 7\"", "question": "What is Incumbent, when Results is \"Re-Elected\", when Party is \"Democratic\", and when District is \"Minnesota 7\"?", "context": "CREATE TABLE table_name_75 (incumbent VARCHAR, district VARCHAR, results VARCHAR, party VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE place = \"t5\" AND country = \"united states\"", "question": "Which Score has a Place of t5, and a Country of united states?", "context": "CREATE TABLE table_name_30 (score VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE player = \"seve ballesteros\"", "question": "Name The Score of Player of seve ballesteros?", "context": "CREATE TABLE table_name_86 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_60 WHERE place = \"2\"", "question": "Which Country has a Place of 2?", "context": "CREATE TABLE table_name_60 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT wins FROM table_name_80 WHERE losses = 5", "question": "How many wins did they have when they had 5 losses?", "context": "CREATE TABLE table_name_80 (wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_48 WHERE against < 1544 AND wins = 13 AND draws > 0", "question": "How many byes did they have against smaller than 1544, 13 wins, and draws larger than 0?", "context": "CREATE TABLE table_name_48 (byes VARCHAR, draws VARCHAR, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_55 WHERE draws > 0", "question": "How many byes has a draw larger than 0?", "context": "CREATE TABLE table_name_55 (byes VARCHAR, draws INTEGER)"}, {"answer": "SELECT MIN(against) FROM table_name_84 WHERE wins < 9 AND draws < 0", "question": "What is the lowest against that has less than 9 wins, and draws smaller than 0?", "context": "CREATE TABLE table_name_84 (against INTEGER, wins VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_84 WHERE byes < 0", "question": "What is the total number of wins that has byes less than 0?", "context": "CREATE TABLE table_name_84 (wins VARCHAR, byes INTEGER)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_16 WHERE score = 75 - 74 - 72 - 67 = 288", "question": "What is the most money for the score 75-74-72-67=288?", "context": "CREATE TABLE table_name_16 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT american FROM table_name_11 WHERE australian = \"\u0259\u0289\"", "question": "What's the American pronunciation when the Australian is \u0259\u0289?", "context": "CREATE TABLE table_name_11 (american VARCHAR, australian VARCHAR)"}, {"answer": "SELECT 17 AS th_c FROM table_name_68 WHERE british = \"\u0259\u028a\"", "question": "What is the 17th c. pronunciation when the british is \u0259\u028a?", "context": "CREATE TABLE table_name_68 (british VARCHAR)"}, {"answer": "SELECT british FROM table_name_44 WHERE american = \"i\" AND australian = \"i\"", "question": "What's the British pronunciation when the American and Australian is i?", "context": "CREATE TABLE table_name_44 (british VARCHAR, american VARCHAR, australian VARCHAR)"}, {"answer": "SELECT height FROM table_name_15 WHERE weight = \"kg (lb)\" AND club = \"sainte-foy\" AND pos = \"cf\"", "question": "What is the Height if the weight is kg (lb), the club is Sainte-foy and the pos is cf?", "context": "CREATE TABLE table_name_15 (height VARCHAR, pos VARCHAR, weight VARCHAR, club VARCHAR)"}, {"answer": "SELECT height FROM table_name_48 WHERE club = \"sainte-foy\" AND name = \"val\u00e9rie dionne\"", "question": "What is the height of val\u00e9rie dionne at Club Sainte-Foy?", "context": "CREATE TABLE table_name_48 (height VARCHAR, club VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_64 WHERE date_of_birth = \"1980-07-29\"", "question": "Who has a Date of Birth 1980-07-29?", "context": "CREATE TABLE table_name_64 (name VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT team_name FROM table_name_84 WHERE schools = \"cisne fairfield\"", "question": "What is the name of the team from cisne fairfield school?", "context": "CREATE TABLE table_name_84 (team_name VARCHAR, schools VARCHAR)"}, {"answer": "SELECT team_name FROM table_name_80 WHERE schools = \"goreville vienna\"", "question": "What is the name of the team from goreville vienna school?", "context": "CREATE TABLE table_name_80 (team_name VARCHAR, schools VARCHAR)"}, {"answer": "SELECT colors FROM table_name_77 WHERE host = \"christopher\"", "question": "What are the colors of the team hosted by Christopher?", "context": "CREATE TABLE table_name_77 (colors VARCHAR, host VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_99 WHERE team_2 = \"renova\"", "question": "What is team 1 if Renova is team 2?", "context": "CREATE TABLE table_name_99 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_96 WHERE score = 76 - 70 - 76 - 76 = 298", "question": "What is the highest to par for the 76-70-76-76=298 score?", "context": "CREATE TABLE table_name_96 (to_par INTEGER, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE to_par = 12 AND country = \"jersey\"", "question": "What score has a to par of 12 and is from Jersey?", "context": "CREATE TABLE table_name_25 (score VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_55 WHERE to_par = 15 AND country = \"united states\"", "question": "What is the average money for a to par of 15, and is from the United States?", "context": "CREATE TABLE table_name_55 (money___ INTEGER, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS $__ FROM table_name_49 WHERE place = \"t2\" AND country = \"united states\" AND player = \"leo diegel\"", "question": "What is the total amount of money that has a t2 place, is from the United States for player Leo Diegel?", "context": "CREATE TABLE table_name_49 (money___ VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_3 WHERE money___$__ < 188 AND score = 74 - 76 - 73 - 75 = 298", "question": "What county has less than $188 and a score of 74-76-73-75=298?", "context": "CREATE TABLE table_name_3 (country VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_27 WHERE location = \"winnipeg, manitoba , canada\"", "question": "What is Opponent, when Location is \"Winnipeg, Manitoba , Canada\"?", "context": "CREATE TABLE table_name_27 (opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT res FROM table_name_81 WHERE location = \"butte, montana , united states\" AND opponent = \"jerome smith\"", "question": "What is Res., when Location is \"Butte, Montana , United States\", and when Opponent is \"Jerome Smith\"?", "context": "CREATE TABLE table_name_81 (res VARCHAR, location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_40 WHERE time = \"3:20\"", "question": "What is Method, when Time is \"3:20\"?", "context": "CREATE TABLE table_name_40 (method VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_86 WHERE opponent = \"mario rinaldi\"", "question": "What is Location, when Opponent is \"Mario Rinaldi\"?", "context": "CREATE TABLE table_name_86 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_19 WHERE time_retired = \"+0.785\" AND laps > 29", "question": "How much Grid has a Time/Retired of +0.785, and Laps larger than 29?", "context": "CREATE TABLE table_name_19 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT grid FROM table_name_61 WHERE laps > 8 AND manufacturer = \"honda\" AND time_retired = \"retirement\"", "question": "Which Grid has more than 8 Laps, and a Manufacturer of honda, and a Time/Retired of retirement?", "context": "CREATE TABLE table_name_61 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_97 WHERE grid < 5 AND time_retired = \"retirement\"", "question": "How many Laps have a Grid smaller than 5, and a Time/Retired of retirement?", "context": "CREATE TABLE table_name_97 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_78 WHERE laps < 14 AND rider = \"darren barton\"", "question": "Which Time/Retired has Laps smaller than 14, and a Rider of darren barton?", "context": "CREATE TABLE table_name_78 (time_retired VARCHAR, laps VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_39 WHERE goals_for < 21", "question": "What was the lowest lost entry for a team with fewer than 21 goals for?", "context": "CREATE TABLE table_name_39 (lost INTEGER, goals_for INTEGER)"}, {"answer": "SELECT COUNT(position) FROM table_name_68 WHERE played > 24", "question": "What was the position has a played entry of more than 24?", "context": "CREATE TABLE table_name_68 (position VARCHAR, played INTEGER)"}, {"answer": "SELECT MAX(position) FROM table_name_10 WHERE team = \"nelson\" AND played > 24", "question": "What is the highest position for Nelson, with a played entry of more than 24?", "context": "CREATE TABLE table_name_10 (position INTEGER, team VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_78 WHERE team = \"newton\" AND drawn < 5", "question": "What was the average Lost entry for Newton, for games with a drawn less than 5?", "context": "CREATE TABLE table_name_78 (lost INTEGER, team VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_40 WHERE drawn < 6 AND goals_against < 44 AND points_1 = \"27\"", "question": "What is the highest lost entry that has a drawn entry less than 6, goals against less than 44, and a points 1 entry of 27?", "context": "CREATE TABLE table_name_40 (lost INTEGER, points_1 VARCHAR, drawn VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT name FROM table_name_78 WHERE snatch = \"157.0\"", "question": "Who has a Snatch of 157.0?", "context": "CREATE TABLE table_name_78 (name VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT SUM(bodyweight) FROM table_name_98 WHERE snatch = \"153.0\"", "question": "What is the total bodyweight of everyone that has a Snatch of 153.0?", "context": "CREATE TABLE table_name_98 (bodyweight INTEGER, snatch VARCHAR)"}, {"answer": "SELECT rank FROM table_name_86 WHERE name = \"battersea power station\"", "question": "What ranking is the Battersea Power Station?", "context": "CREATE TABLE table_name_86 (rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT rank FROM table_name_51 WHERE floors = \"01.0 87\"", "question": "What ranking is the structure with 01.0 87 floors?", "context": "CREATE TABLE table_name_51 (rank VARCHAR, floors VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_25 WHERE date = \"oct. 26\"", "question": "What is the highest Attendance, when Date is \"Oct. 26\"?", "context": "CREATE TABLE table_name_25 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(opponents) FROM table_name_79 WHERE raiders_points > 38 AND attendance > 51 OFFSET 267", "question": "What is the lowest Opponents, when Raiders Poinsts is greater than 38, and when Attendance is greater than 51,267?", "context": "CREATE TABLE table_name_79 (opponents INTEGER, raiders_points VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(opponents) FROM table_name_16 WHERE raiders_points = 42 AND attendance < 52 OFFSET 505", "question": "What is the total number of Opponents, when Raiders Points is \"42\", when Attendance is less than 52,505?", "context": "CREATE TABLE table_name_16 (opponents VARCHAR, raiders_points VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(raiders_first_downs) FROM table_name_21 WHERE date = \"nov. 2\" AND raiders_points > 42", "question": "What is the total number of Raiders First Downs, when Date is \"Nov. 2\", and when Raiders Points is greater than 42?", "context": "CREATE TABLE table_name_21 (raiders_first_downs VARCHAR, date VARCHAR, raiders_points VARCHAR)"}, {"answer": "SELECT AVG(tournaments) FROM table_name_90 WHERE highest_rank = \"maegashira 1\"", "question": "What is the average Tournaments, when Highest Rank is \"Maegashira 1\"?", "context": "CREATE TABLE table_name_90 (tournaments INTEGER, highest_rank VARCHAR)"}, {"answer": "SELECT top_division_debut FROM table_name_67 WHERE tournaments = 12 AND name = \"yamamotoyama\"", "question": "What is Top Division Debut, when Tournaments is \"12\", and when Name is \"Yamamotoyama\"?", "context": "CREATE TABLE table_name_67 (top_division_debut VARCHAR, tournaments VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(tournaments) FROM table_name_76 WHERE name = \"baruto\"", "question": "What is the lowest Tournaments, when Name is \"Baruto\"?", "context": "CREATE TABLE table_name_76 (tournaments INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(tournaments) FROM table_name_13 WHERE pro_debut = \"july 2002\"", "question": "What is the highest Tournaments, when Pro Debut is \"July 2002\"?", "context": "CREATE TABLE table_name_13 (tournaments INTEGER, pro_debut VARCHAR)"}, {"answer": "SELECT pro_debut FROM table_name_68 WHERE tournaments > 11 AND highest_rank = \"maegashira 1\"", "question": "What is Pro Debut, when Tournament is greater than 11, and when Highest Rank is \"Maegashira 1\"?", "context": "CREATE TABLE table_name_68 (pro_debut VARCHAR, tournaments VARCHAR, highest_rank VARCHAR)"}, {"answer": "SELECT COUNT(league_cup_goals) FROM table_name_90 WHERE total_goals = 0 AND name = \"delroy facey\"", "question": "How many League Cup Goals have 0 as the total goals, with delroy facey as the name?", "context": "CREATE TABLE table_name_90 (league_cup_goals VARCHAR, total_goals VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(total_goals) FROM table_name_80 WHERE total_apps = \"0 (3)\" AND league_goals < 0", "question": "How many total goals have 0 (3) as total apps, with league goals less than 0?", "context": "CREATE TABLE table_name_80 (total_goals VARCHAR, total_apps VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT MIN(league_goals) FROM table_name_46 WHERE fa_cup_apps = \"0\" AND total_apps = \"1 (3)\"", "question": "What is the lowest league goals that have 0 as the FA Cup Apps, with 1 (3) as totals apps?", "context": "CREATE TABLE table_name_46 (league_goals INTEGER, fa_cup_apps VARCHAR, total_apps VARCHAR)"}, {"answer": "SELECT stockholm FROM table_name_54 WHERE malm\u00f6 = \"2\"", "question": "What was Stockholm's score when Malmo scored 2?", "context": "CREATE TABLE table_name_54 (stockholm VARCHAR, malm\u00f6 VARCHAR)"}, {"answer": "SELECT v\u00e4xj\u00f6 FROM table_name_53 WHERE karlstad = \"1\"", "question": "What did Vaxjo score when Karlstad scored 1?", "context": "CREATE TABLE table_name_53 (v\u00e4xj\u00f6 VARCHAR, karlstad VARCHAR)"}, {"answer": "SELECT sundsvall FROM table_name_94 WHERE falun = \"2\"", "question": "What did Sundsvall score when Falun scored 2?", "context": "CREATE TABLE table_name_94 (sundsvall VARCHAR, falun VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_21 WHERE norrk\u00f6ping = \"12\"", "question": "What was the highest total when Norrkoping scored 12?", "context": "CREATE TABLE table_name_21 (total INTEGER, norrk\u00f6ping VARCHAR)"}, {"answer": "SELECT \u00f6rebro FROM table_name_67 WHERE ume\u00e5 = \"2\"", "question": "What did Orebro score when Umea scored 2?", "context": "CREATE TABLE table_name_67 (\u00f6rebro VARCHAR, ume\u00e5 VARCHAR)"}, {"answer": "SELECT result FROM table_name_38 WHERE attendance = \"80,886\"", "question": "What was the result of the game that was attended by 80,886 people?", "context": "CREATE TABLE table_name_38 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_76 WHERE attendance = \"72,703\"", "question": "What was the result of the game that was attended by 72,703 people?", "context": "CREATE TABLE table_name_76 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_56 WHERE attendance = \"41,650\"", "question": "What was the result of the game that was attended by 41,650 people?", "context": "CREATE TABLE table_name_56 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE opponent_number = \"indiana\"", "question": "When was the game against Indiana?", "context": "CREATE TABLE table_name_78 (date VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT country FROM table_name_98 WHERE score > 69 AND player = \"brian henninger\"", "question": "Which country is Brian Henninger from, who had a score larger than 69?", "context": "CREATE TABLE table_name_98 (country VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_name_45 WHERE player = \"darren clarke\"", "question": "What is Darren Clarke's total score?", "context": "CREATE TABLE table_name_45 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_3 WHERE date = \"9 february 1988\"", "question": "Who was the away team on 9 February 1988?", "context": "CREATE TABLE table_name_3 (away_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_45 WHERE home_team = \"everton\" AND date = \"30 january 1988\"", "question": "Who was the away team on 30 January 1988, when the home team was Everton?", "context": "CREATE TABLE table_name_45 (away_team VARCHAR, home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_41 WHERE tie_no = \"2\"", "question": "On which date was the Tie no 2?", "context": "CREATE TABLE table_name_41 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_51 WHERE home_team = \"manchester united\"", "question": "What was the Tie no when Manchester United was the home team?", "context": "CREATE TABLE table_name_51 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE tie_no = \"9\"", "question": "What was the score when the Tie no was 9?", "context": "CREATE TABLE table_name_56 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_94 WHERE home_team = \"mauritius\"", "question": "Which away team goes against the home team Mauritius?", "context": "CREATE TABLE table_name_94 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_13 WHERE home_team = \"zambia\"", "question": "Who is the away team that goes against Team Zambia?", "context": "CREATE TABLE table_name_13 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_80 WHERE tie_no = \"3\"", "question": "Which away team has Tie no 3?", "context": "CREATE TABLE table_name_80 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_88 WHERE home_team = \"everton\"", "question": "What is the away team playing at Everton?", "context": "CREATE TABLE table_name_88 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_72 WHERE away_team = \"bradford city\"", "question": "What is the home team that Bradford City is playing against?", "context": "CREATE TABLE table_name_72 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT location FROM table_name_99 WHERE method = \"decision (unanimous)\" AND res = \"win x\"", "question": "Which Location has a Method of decision (unanimous), and Res of win x?", "context": "CREATE TABLE table_name_99 (location VARCHAR, method VARCHAR, res VARCHAR)"}, {"answer": "SELECT round FROM table_name_26 WHERE time = \"0:37\"", "question": "Which Round has a Time of 0:37?", "context": "CREATE TABLE table_name_26 (round VARCHAR, time VARCHAR)"}, {"answer": "SELECT res FROM table_name_20 WHERE record = \"16-6\"", "question": "Which result has a Record of 16-6?", "context": "CREATE TABLE table_name_20 (res VARCHAR, record VARCHAR)"}, {"answer": "SELECT champion FROM table_name_82 WHERE score = \"9\u20131\"", "question": "What Champion had a Score of 9\u20131?", "context": "CREATE TABLE table_name_82 (champion VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_87 WHERE place = \"3\"", "question": "What score has 3 as the place?", "context": "CREATE TABLE table_name_87 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT player FROM table_name_12 WHERE place = \"t7\" AND country = \"united states\"", "question": "What player has t7 as the place, with tje United States as the country?", "context": "CREATE TABLE table_name_12 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE player = \"hal sutton\"", "question": "What score has hal sutton as the player?", "context": "CREATE TABLE table_name_17 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT artist FROM table_name_64 WHERE year > 2012 AND format = \"cd, lp\"", "question": "Who was the artist after 2012 with CD, LP as the format?", "context": "CREATE TABLE table_name_64 (artist VARCHAR, year VARCHAR, format VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_50 WHERE type = \"ep\" AND title = \"die shaolin affen ep\"", "question": "What year had a title of Die Shaolin Affen EP and EP as the type?", "context": "CREATE TABLE table_name_50 (year INTEGER, type VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_67 WHERE format = \"cd\" AND artist = \"misfits\"", "question": "What is the title of the Misfits with a CD format?", "context": "CREATE TABLE table_name_67 (title VARCHAR, format VARCHAR, artist VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_15 WHERE rank = \"2\" AND silver < 3", "question": "What was the highest number of bronze medals for the entry with rank 2 and fewer than 3 silver medals?", "context": "CREATE TABLE table_name_15 (bronze INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_19 WHERE total < 4 AND nation = \"brazil\" AND bronze > 1", "question": "What is the average number of gold medals won by Brazil for entries with more than 1 bronze medal but a total smaller than 4?", "context": "CREATE TABLE table_name_19 (gold INTEGER, bronze VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_43 WHERE total = 4 AND rank = \"3\"", "question": "What is the sum of silver medals for the entry with rank 3 and a total of 4 medals?", "context": "CREATE TABLE table_name_43 (silver INTEGER, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT season FROM table_name_98 WHERE goals = \"1\"", "question": "What season had a goal of 1?", "context": "CREATE TABLE table_name_98 (season VARCHAR, goals VARCHAR)"}, {"answer": "SELECT club FROM table_name_82 WHERE country = \"netherlands\" AND goals = \"22\"", "question": "What club was in Netherlands and had 22 goals?", "context": "CREATE TABLE table_name_82 (club VARCHAR, country VARCHAR, goals VARCHAR)"}, {"answer": "SELECT season FROM table_name_29 WHERE country = \"belgium\" AND goals = \"1\"", "question": "What season had Belgium and 1 goal?", "context": "CREATE TABLE table_name_29 (season VARCHAR, country VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_66 WHERE category = \"best film\"", "question": "Which Year has a Category of best film?", "context": "CREATE TABLE table_name_66 (year INTEGER, category VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_35 WHERE party = \"democratic\" AND district = \"washington 7\"", "question": "Who is the incumbent from the democratic party in the washington 7 district?", "context": "CREATE TABLE table_name_35 (incumbent VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_name_86 WHERE incumbent = \"dave reichert\"", "question": "When was the earliest incumbent dave reichert was first elected?", "context": "CREATE TABLE table_name_86 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_name_29 WHERE incumbent = \"norm dicks\"", "question": "What is the total of the first elected year of incumbent norm dicks?", "context": "CREATE TABLE table_name_29 (first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_name_91 WHERE district = \"washington 8\"", "question": "What is the total of the first elected year of the incumbent from the washington 8 district?", "context": "CREATE TABLE table_name_91 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT MAX(start) FROM table_name_83 WHERE finish > 3 AND manufacturer = \"ford\" AND year > 1969", "question": "WHAT IS THE START THAT HAS A FINISH BIGGER THAN 3, FROM FORD, AFTER 1969?", "context": "CREATE TABLE table_name_83 (start INTEGER, year VARCHAR, finish VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_5 WHERE year > 1966 AND start < 5 AND team = \"wood\" AND finish = 35", "question": "WHAT MANUFACTURER AFTER 1966 HAD A START SMALLER THAN 5, A WOOD TEAM AND FINISHED 35?", "context": "CREATE TABLE table_name_5 (manufacturer VARCHAR, finish VARCHAR, team VARCHAR, year VARCHAR, start VARCHAR)"}, {"answer": "SELECT COUNT(finish) FROM table_name_6 WHERE start < 20 AND year = 1969", "question": "WHAT WAS THE FINISH NUMBER WITH A START SMALLER THAN 20 IN 1969?", "context": "CREATE TABLE table_name_6 (finish VARCHAR, start VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(pleasure) FROM table_name_69 WHERE psychological_dependence > 1.9 AND drug = \"benzodiazepines\"", "question": "What is the total number of Pleasure(s), when Psychological Dependence is greater than 1.9, and when Drug is \"Benzodiazepines\"?", "context": "CREATE TABLE table_name_69 (pleasure VARCHAR, psychological_dependence VARCHAR, drug VARCHAR)"}, {"answer": "SELECT MAX(psychological_dependence) FROM table_name_55 WHERE pleasure < 2.3 AND drug = \"cannabis\" AND physical_dependence < 0.8", "question": "What is the highest Psychological Dependence, when Pleasure is less than 2.3, when Drug is \"Cannabis\", and when Physical Dependence is less than 0.8?", "context": "CREATE TABLE table_name_55 (psychological_dependence INTEGER, physical_dependence VARCHAR, pleasure VARCHAR, drug VARCHAR)"}, {"answer": "SELECT AVG(mean) FROM table_name_98 WHERE drug = \"alcohol\" AND psychological_dependence > 1.9", "question": "What is the average Mean, when Drug is \"Alcohol\", and when Psychological Dependence is greater than 1.9?", "context": "CREATE TABLE table_name_98 (mean INTEGER, drug VARCHAR, psychological_dependence VARCHAR)"}, {"answer": "SELECT COUNT(psychological_dependence) FROM table_name_91 WHERE pleasure = 2.3 AND mean < 1.9300000000000002", "question": "What is the total number of Psychological Dependence, when Pleasure is \"2.3\", and when Mean is less than 1.9300000000000002?", "context": "CREATE TABLE table_name_91 (psychological_dependence VARCHAR, pleasure VARCHAR, mean VARCHAR)"}, {"answer": "SELECT SUM(pleasure) FROM table_name_57 WHERE drug = \"lsd\" AND psychological_dependence > 1.1", "question": "What is the sum of Pleasure, when Drug is \"LSD\", and when Psychological Dependence is greater than 1.1?", "context": "CREATE TABLE table_name_57 (pleasure INTEGER, drug VARCHAR, psychological_dependence VARCHAR)"}, {"answer": "SELECT country FROM table_name_87 WHERE domestic_tournament = \"2008 indian premier league\" AND team = \"rajasthan royals\"", "question": "What Country's team is Rajasthan Royals at the 2008 Indian Premier League?", "context": "CREATE TABLE table_name_87 (country VARCHAR, domestic_tournament VARCHAR, team VARCHAR)"}, {"answer": "SELECT domestic_tournament FROM table_name_42 WHERE team = \"chennai super kings\"", "question": "What is the Domestic Tournament with Chennai Super Kings Team?", "context": "CREATE TABLE table_name_42 (domestic_tournament VARCHAR, team VARCHAR)"}, {"answer": "SELECT group FROM table_name_42 WHERE team = \"dolphins\"", "question": "What is the Dolphins Group?", "context": "CREATE TABLE table_name_42 (group VARCHAR, team VARCHAR)"}, {"answer": "SELECT player FROM table_name_81 WHERE year_s__won = \"1978\"", "question": "Who is the player that won in the year 1978?", "context": "CREATE TABLE table_name_81 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT country FROM table_name_58 WHERE score = 73 - 71 - 76 - 70 = 290", "question": "What is the Country of the Player with a Score of 73-71-76-70=290?", "context": "CREATE TABLE table_name_58 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_30 WHERE player = \"lawson little\"", "question": "What is Lawson Little's Money ($) amount?", "context": "CREATE TABLE table_name_30 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_2 WHERE to_par = \"e\"", "question": "What is the Money ($) amount of the Player with a To par of e?", "context": "CREATE TABLE table_name_2 (money___$__ VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_8 WHERE money___$__ = \"playoff\" AND score = 72 - 69 - 73 - 73 = 287", "question": "What Country has a Player with Playoff Money with a Score of 72-69-73-73=287?", "context": "CREATE TABLE table_name_8 (country VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_25 WHERE player = \"ben hogan\"", "question": "What is Ben Hogan's Place?", "context": "CREATE TABLE table_name_25 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_32 WHERE score = 73 - 75 - 71 - 73 = 292", "question": "What is the Place of the Player with a Score of 73-75-71-73=292?", "context": "CREATE TABLE table_name_32 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(byes) FROM table_name_63 WHERE wins = 11 AND losses < 5", "question": "How many byes when there are 11 wins and fewer than 5 losses?", "context": "CREATE TABLE table_name_63 (byes INTEGER, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_90 WHERE wins < 0", "question": "How many losses when there are less than 0 wins?", "context": "CREATE TABLE table_name_90 (losses VARCHAR, wins INTEGER)"}, {"answer": "SELECT MAX(against) FROM table_name_83 WHERE central_murray = \"nyah nyah west utd\" AND losses > 11", "question": "What are the most againsts with more than 11 losses and central murray is Nyah Nyah West Utd?", "context": "CREATE TABLE table_name_83 (against INTEGER, central_murray VARCHAR, losses VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_19 WHERE money___\u00a3__ > 7 OFFSET 750", "question": "What is the To par of the player with Money of 7,750 or more?", "context": "CREATE TABLE table_name_19 (to_par VARCHAR, money___\u00a3__ INTEGER)"}, {"answer": "SELECT provider FROM table_name_10 WHERE up__up_to_kbit_s_ = 1180", "question": "who is the provider when up (up to kbit/s) is 1180?", "context": "CREATE TABLE table_name_10 (provider VARCHAR, up__up_to_kbit_s_ VARCHAR)"}, {"answer": "SELECT MAX(down__up_to_kbit_s_) FROM table_name_26 WHERE resale = \"yes\" AND up__up_to_kbit_s_ = 1180 AND provider = \"1&1\"", "question": "what is the highest down (up to kbits/s) when resale is yes, up ( up to kbit/s) is 1180 and provider is 1&1?", "context": "CREATE TABLE table_name_26 (down__up_to_kbit_s_ INTEGER, provider VARCHAR, resale VARCHAR, up__up_to_kbit_s_ VARCHAR)"}, {"answer": "SELECT resale FROM table_name_41 WHERE down__up_to_kbit_s_ = 24000", "question": "what is the resale when the down (up to kbit/s) is 24000?", "context": "CREATE TABLE table_name_41 (resale VARCHAR, down__up_to_kbit_s_ VARCHAR)"}, {"answer": "SELECT AVG(down__up_to_kbit_s_) FROM table_name_73 WHERE provider = \"willy.tel\" AND up__up_to_kbit_s_ > 1984", "question": "What is the average down (up to kbit/s) when the provider is willy.tel and the up (kbit/s) is more than 1984?", "context": "CREATE TABLE table_name_73 (down__up_to_kbit_s_ INTEGER, provider VARCHAR, up__up_to_kbit_s_ VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_62 WHERE gold > 0 AND bronze < 0", "question": "How many totals have a Gold larger than 0, and a Bronze smaller than 0?", "context": "CREATE TABLE table_name_62 (total VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_57 WHERE bronze > 1 AND gold > 0", "question": "Which Total has a Bronze larger than 1, and a Gold larger than 0?", "context": "CREATE TABLE table_name_57 (total INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_22 WHERE player = \"eugene mcdowell\"", "question": "What country is Eugene McDowell from?", "context": "CREATE TABLE table_name_22 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_75 WHERE player = \"mario elie\" AND round < 7", "question": "When was Mario Elie picked in a round before 7?", "context": "CREATE TABLE table_name_75 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_99 WHERE school_club_team = \"north carolina state\" AND pick > 91", "question": "In what round did someone from North Carolina State get picked larger than 91?", "context": "CREATE TABLE table_name_99 (round VARCHAR, school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT results FROM table_name_32 WHERE category = \"best new actor in lead role(female)\"", "question": "Which Results have a Category of the best new actor in lead role(female)?", "context": "CREATE TABLE table_name_32 (results VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_name_72 WHERE year = 2008", "question": "What was the category in 2008?", "context": "CREATE TABLE table_name_72 (category VARCHAR, year VARCHAR)"}, {"answer": "SELECT character FROM table_name_68 WHERE category = \"favourite naya sadasya\"", "question": "Which Character has a Category of favourite naya sadasya?", "context": "CREATE TABLE table_name_68 (character VARCHAR, category VARCHAR)"}, {"answer": "SELECT show FROM table_name_77 WHERE award = \"indian television academy awards\"", "question": "Which Show has an Award of indian television academy awards?", "context": "CREATE TABLE table_name_77 (show VARCHAR, award VARCHAR)"}, {"answer": "SELECT award FROM table_name_77 WHERE year > 2008", "question": "What award was won after 2008?", "context": "CREATE TABLE table_name_77 (award VARCHAR, year INTEGER)"}, {"answer": "SELECT date FROM table_name_73 WHERE injured = \"21\"", "question": "On what Date did the massacre result with 21 Injured?", "context": "CREATE TABLE table_name_73 (date VARCHAR, injured VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_20 WHERE winner = \"rohan onslow\" AND circuit = \"oran park raceway\"", "question": "What is City / State, when Winner is \"Rohan Onslow\", and when Circuit is \"Oran Park Raceway\"?", "context": "CREATE TABLE table_name_20 (city___state VARCHAR, winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winner FROM table_name_92 WHERE city___state = \"mallala , south australia\" AND team = \"elfin sports cars\"", "question": "What is Winner, when City / State is \"Mallala , South Australia\", and when Team is \"Elfin Sports Cars\"?", "context": "CREATE TABLE table_name_92 (winner VARCHAR, city___state VARCHAR, team VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_54 WHERE team = \"r.j.macarthur onslow\" AND city___state = \"sydney , new south wales\"", "question": "What is Circuit, when Team is \"R.J.MacArthur Onslow\", and when City / State is \"Sydney , New South Wales\"?", "context": "CREATE TABLE table_name_54 (circuit VARCHAR, team VARCHAR, city___state VARCHAR)"}, {"answer": "SELECT winner FROM table_name_29 WHERE team = \"r.j.macarthur onslow\" AND circuit = \"oran park raceway\"", "question": "What is Winner, when Team is \"R.J.MacArthur Onslow\", and when Circuit is \"Oran Park Raceway\"?", "context": "CREATE TABLE table_name_29 (winner VARCHAR, team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_19 WHERE city___state = \"mallala , south australia\" AND team = \"r.j.macarthur onslow\"", "question": "What is Date, when City / State is \"Mallala , South Australia\", and when Team is \"R.J.MacArthur Onslow\"?", "context": "CREATE TABLE table_name_19 (date VARCHAR, city___state VARCHAR, team VARCHAR)"}, {"answer": "SELECT winner FROM table_name_50 WHERE date = \"20 august\"", "question": "What is Winner, when Date is \"20 August\"?", "context": "CREATE TABLE table_name_50 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT actor FROM table_name_45 WHERE result = \"nominated\" AND category = \"best actress\"", "question": "What actor was nominated for best actress?", "context": "CREATE TABLE table_name_45 (actor VARCHAR, result VARCHAR, category VARCHAR)"}, {"answer": "SELECT year FROM table_name_80 WHERE film = \"bullets over broadway\" AND category = \"best supporting actress\" AND actor = \"jennifer tilly\"", "question": "What year was Jennifer Tilly's Film of Bullets Over Broadway up in the best supporting actress category?", "context": "CREATE TABLE table_name_80 (year VARCHAR, actor VARCHAR, film VARCHAR, category VARCHAR)"}, {"answer": "SELECT result FROM table_name_78 WHERE year > 1989 AND category = \"best supporting actress\" AND actor = \"samantha morton\"", "question": "What is the result of Samantha Morton being up for best supporting actress in a year later than 1989?", "context": "CREATE TABLE table_name_78 (result VARCHAR, actor VARCHAR, year VARCHAR, category VARCHAR)"}, {"answer": "SELECT film FROM table_name_56 WHERE actor = \"dianne wiest\"", "question": "What film was Dianne Wiest in?", "context": "CREATE TABLE table_name_56 (film VARCHAR, actor VARCHAR)"}, {"answer": "SELECT class FROM table_name_84 WHERE quantity < 10 AND number_s_ = \"names\"", "question": "Which class has fewer than 10 and number(s) names?", "context": "CREATE TABLE table_name_84 (class VARCHAR, quantity VARCHAR, number_s_ VARCHAR)"}, {"answer": "SELECT type FROM table_name_88 WHERE quantity < 6 AND number_s_ = \"5201\"", "question": "What is the type with a quantity of fewer than 6 and number(s) 5201?", "context": "CREATE TABLE table_name_88 (type VARCHAR, quantity VARCHAR, number_s_ VARCHAR)"}, {"answer": "SELECT SUM(byes) FROM table_name_13 WHERE against < 737", "question": "How many byes were then when there were less than 737 against?", "context": "CREATE TABLE table_name_13 (byes INTEGER, against INTEGER)"}, {"answer": "SELECT COUNT(wins) FROM table_name_27 WHERE byes > 3", "question": "How many wins were there when the byes were more than 3?", "context": "CREATE TABLE table_name_27 (wins VARCHAR, byes INTEGER)"}, {"answer": "SELECT MIN(wins) FROM table_name_5 WHERE draws > 0", "question": "How many wins were there when draws were more than 0?", "context": "CREATE TABLE table_name_5 (wins INTEGER, draws INTEGER)"}, {"answer": "SELECT COUNT(wins) FROM table_name_93 WHERE glenelg_fl = \"bahgallah\" AND byes > 3", "question": "How many wins did Glenelg FL of bahgallah have when there were more than 3 byes?", "context": "CREATE TABLE table_name_93 (wins VARCHAR, glenelg_fl VARCHAR, byes VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE opponent_in_final = \"guy forget\"", "question": "What is Date, when Opponent in Final is \"Guy Forget\"?", "context": "CREATE TABLE table_name_64 (date VARCHAR, opponent_in_final VARCHAR)"}, {"answer": "SELECT opponent_in_final FROM table_name_12 WHERE date = \"13 january 1992\"", "question": "What is Opponent in Final, when Date is \"13 January 1992\"?", "context": "CREATE TABLE table_name_12 (opponent_in_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_final FROM table_name_31 WHERE surface = \"hard\" AND date = \"13 january 1992\"", "question": "What is Opponent in Final, when Surface is \"Hard\", and when Date is \"13 January 1992\"?", "context": "CREATE TABLE table_name_31 (opponent_in_final VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT height FROM table_name_23 WHERE date_of_birth = \"1979-06-12\"", "question": "What is the Height of the Player with a Date of Birth of 1979-06-12?", "context": "CREATE TABLE table_name_23 (height VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT height FROM table_name_19 WHERE date_of_birth = \"1982-07-05\"", "question": "What is the Height of the Player with a Date of Birth of 1982-07-05?", "context": "CREATE TABLE table_name_19 (height VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT height FROM table_name_38 WHERE date_of_birth = \"1982-07-05\"", "question": "What is the Height of the Player with a Date of Birth of 1982-07-05?", "context": "CREATE TABLE table_name_38 (height VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT weight FROM table_name_54 WHERE date_of_birth = \"1979-09-26\"", "question": "What is the Weight of the Player with a Date of Birth of 1979-09-26?", "context": "CREATE TABLE table_name_54 (weight VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT pos FROM table_name_41 WHERE name = \"elise norwood\"", "question": "What is Elise Norwood's Pos.?", "context": "CREATE TABLE table_name_41 (pos VARCHAR, name VARCHAR)"}, {"answer": "SELECT club FROM table_name_61 WHERE date_of_birth = \"1977-02-03\"", "question": "What is the Club of the Player with a Date of Birth of 1977-02-03?", "context": "CREATE TABLE table_name_61 (club VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT home FROM table_name_69 WHERE away = \"1-5\"", "question": "What home has 1-5 as the away?", "context": "CREATE TABLE table_name_69 (home VARCHAR, away VARCHAR)"}, {"answer": "SELECT league FROM table_name_18 WHERE away = \"2-3\"", "question": "What league has 2-3 as the away?", "context": "CREATE TABLE table_name_18 (league VARCHAR, away VARCHAR)"}, {"answer": "SELECT away FROM table_name_82 WHERE home = \"1-4\"", "question": "What away has 1-4 as the home?", "context": "CREATE TABLE table_name_82 (away VARCHAR, home VARCHAR)"}, {"answer": "SELECT teams FROM table_name_96 WHERE away = \"1-5\"", "question": "What teams has 1-5 as the away?", "context": "CREATE TABLE table_name_96 (teams VARCHAR, away VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE series = \"atcc round 6\"", "question": "What Date had a Series of ATCC Round 6?", "context": "CREATE TABLE table_name_28 (date VARCHAR, series VARCHAR)"}, {"answer": "SELECT winner FROM table_name_96 WHERE circuit = \"lakeside international raceway\" AND series = \"amc round 4\"", "question": "Who was the Winner in the AMC Round 4 at Lakeside International Raceway?", "context": "CREATE TABLE table_name_96 (winner VARCHAR, circuit VARCHAR, series VARCHAR)"}, {"answer": "SELECT week_15__final__dec_9 FROM table_name_98 WHERE week_9_oct_29 = \"washington (6-1)\"", "question": "What is the week 15 result for the team that had a week 9 result of Washington (6-1)?", "context": "CREATE TABLE table_name_98 (week_15__final__dec_9 VARCHAR, week_9_oct_29 VARCHAR)"}, {"answer": "SELECT week_10_nov_5 FROM table_name_71 WHERE week_15__final__dec_9 = \"illinois (10-1)\"", "question": "What is the week 10 result for the tean when the week 15 result is Illinois (10-1)?", "context": "CREATE TABLE table_name_71 (week_10_nov_5 VARCHAR, week_15__final__dec_9 VARCHAR)"}, {"answer": "SELECT week_10_nov_5 FROM table_name_13 WHERE week_9_oct_29 = \"dropped: maryland south carolina\"", "question": "What is the week 10 result where the week 9 result was Dropped: Maryland South Carolina?", "context": "CREATE TABLE table_name_13 (week_10_nov_5 VARCHAR, week_9_oct_29 VARCHAR)"}, {"answer": "SELECT week_13_nov_26 FROM table_name_18 WHERE week_14_dec_3 = \"maryland (10-1)\"", "question": "What is the week 13 result where the week 14 resulted in Maryland (10-1)?", "context": "CREATE TABLE table_name_18 (week_13_nov_26 VARCHAR, week_14_dec_3 VARCHAR)"}, {"answer": "SELECT week_14_dec_3 FROM table_name_17 WHERE week_11_nov_12 = \"michigan (7-2)\"", "question": "What happened in week 14 when week 11's result was Michigan (7-2)?", "context": "CREATE TABLE table_name_17 (week_14_dec_3 VARCHAR, week_11_nov_12 VARCHAR)"}, {"answer": "SELECT week_12_nov_19 FROM table_name_20 WHERE week_13_nov_26 = \"tennessee (9-1)\"", "question": "What happened in week 12 when week 13 resulted in Tennessee (9-1)?", "context": "CREATE TABLE table_name_20 (week_12_nov_19 VARCHAR, week_13_nov_26 VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_16 WHERE total < 10 AND gold < 0", "question": "What is the fewest bronze medals when the total medals is less than 10, and the gold medals less than 0?", "context": "CREATE TABLE table_name_16 (bronze INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_34 WHERE rank = \"8\" AND total > 2", "question": "With 8 as the rank, and a total of more than 2 medals what is the average bronze medals?", "context": "CREATE TABLE table_name_34 (bronze INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_64 WHERE rank = \"8\"", "question": "What is the maximum total medals when the rank is 8?", "context": "CREATE TABLE table_name_64 (total INTEGER, rank VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_25 WHERE bronze < 49 AND silver = 22 AND total < 60", "question": "What is the largest number of gold medals when the bronze medals is less than 49, and there is 22 silver medals, and the total is less than 60?", "context": "CREATE TABLE table_name_25 (gold INTEGER, total VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_89 WHERE rank = \"total\" AND gold > 59", "question": "When the number of gold medals is greater than 59, and the rank is total, what is the average bronze medals?", "context": "CREATE TABLE table_name_89 (bronze INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_78 WHERE silver > 14", "question": "What is the smallest number of medals a country with more than 14 silver has?", "context": "CREATE TABLE table_name_78 (total INTEGER, silver INTEGER)"}, {"answer": "SELECT SUM(rank) FROM table_name_67 WHERE gold > 2 AND total < 31 AND silver < 5", "question": "What is the rank of a country with more than 2 gold, less than 5 silver, and less than 31 total medals?", "context": "CREATE TABLE table_name_67 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE place = \"t3\" AND player = \"phil mickelson\"", "question": "WHat was the score for Phil Mickelson when he placed t3?", "context": "CREATE TABLE table_name_60 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_72 WHERE country = \"south africa\"", "question": "What place did the golfer take whose country is South Africa?", "context": "CREATE TABLE table_name_72 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT result FROM table_name_95 WHERE game_site = \"jeppesen stadium\"", "question": "What was the result of the game played at Jeppesen Stadium?", "context": "CREATE TABLE table_name_95 (result VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_71 WHERE date = \"november 12, 1961\" AND attendance < 7 OFFSET 859", "question": "What week was the game played on November 12, 1961, with an attendance of 7,859 played?", "context": "CREATE TABLE table_name_71 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT decade FROM table_name_92 WHERE artist = \"the replacements\"", "question": "What decade is the artist the replacements?", "context": "CREATE TABLE table_name_92 (decade VARCHAR, artist VARCHAR)"}, {"answer": "SELECT SUM(number_of_households) FROM table_name_76 WHERE median_family_income = \"$65,240\" AND population > 744 OFFSET 344", "question": "What is the number of households in the county with median income of $65,240 and population greater than 744,344?", "context": "CREATE TABLE table_name_76 (number_of_households INTEGER, median_family_income VARCHAR, population VARCHAR)"}, {"answer": "SELECT population FROM table_name_93 WHERE county = \"tioga\"", "question": "What is the population of Tioga county?", "context": "CREATE TABLE table_name_93 (population VARCHAR, county VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_7 WHERE laps > 9 AND grid < 2", "question": "Which Constructor has Laps larger than 9, and a Grid smaller than 2?", "context": "CREATE TABLE table_name_7 (constructor VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_name_54 WHERE player = \"filiberto rivera\"", "question": "What's filiberto rivera's height?", "context": "CREATE TABLE table_name_54 (height VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_86 WHERE position = \"sg\"", "question": "Who has a position of sg?", "context": "CREATE TABLE table_name_86 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE height = 2.16", "question": "Who has a height of 2.16?", "context": "CREATE TABLE table_name_41 (player VARCHAR, height VARCHAR)"}, {"answer": "SELECT MAX(height) FROM table_name_19 WHERE position = \"c\" AND current_club = \"unicaja malaga\"", "question": "What's the tallest height for c position in current club unicaja malaga?", "context": "CREATE TABLE table_name_19 (height INTEGER, position VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_1 WHERE home_team = \"southend united\"", "question": "What was the attendance when the Southend United was the home team?", "context": "CREATE TABLE table_name_1 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_53 WHERE tie_no = \"replay\" AND home_team = \"northampton town\"", "question": "Who was the away team that played Northampton Town at home with a tie number of replay?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR, tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_43 WHERE opponent_in_the_final = \"simone colombo\"", "question": "Which Outcome has an Opponent in the final of simone colombo?", "context": "CREATE TABLE table_name_43 (outcome VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT SUM(glyph) FROM table_name_96 WHERE binary < 111001 AND octal < 65 AND hexadecimal < 30", "question": "What is the sum of the glyph with a binary less than 111001, an octal less than 65, and a hexadecimal less than 30?", "context": "CREATE TABLE table_name_96 (glyph INTEGER, hexadecimal VARCHAR, binary VARCHAR, octal VARCHAR)"}, {"answer": "SELECT AVG(hexadecimal) FROM table_name_62 WHERE decimal < 53 AND octal < 61 AND glyph > 0", "question": "What is the average hexadecimal with a decimal less than 53, an octal less than 61, and a glyph greater than 0?", "context": "CREATE TABLE table_name_62 (hexadecimal INTEGER, glyph VARCHAR, decimal VARCHAR, octal VARCHAR)"}, {"answer": "SELECT MIN(octal) FROM table_name_82 WHERE hexadecimal = 30 AND glyph < 0", "question": "What is the lowest octal with a 30 hexadecimal and less than 0 glyphs?", "context": "CREATE TABLE table_name_82 (octal INTEGER, hexadecimal VARCHAR, glyph VARCHAR)"}, {"answer": "SELECT AVG(hexadecimal) FROM table_name_2 WHERE decimal > 57", "question": "What is the average hexadecimal with a decimal greater than 57?", "context": "CREATE TABLE table_name_2 (hexadecimal INTEGER, decimal INTEGER)"}, {"answer": "SELECT AVG(decimal) FROM table_name_12 WHERE binary = 110010 AND glyph > 2", "question": "What is the average decimal with a 110010 binary and a glyph greater than 2?", "context": "CREATE TABLE table_name_12 (decimal INTEGER, binary VARCHAR, glyph VARCHAR)"}, {"answer": "SELECT SUM(glyph) FROM table_name_4 WHERE hexadecimal = 38 AND binary < 111000", "question": "What is the sum of the glyph with a 38 hexadecimal and a binary less than 111000?", "context": "CREATE TABLE table_name_4 (glyph INTEGER, hexadecimal VARCHAR, binary VARCHAR)"}, {"answer": "SELECT record FROM table_name_40 WHERE opponent = \"atlanta falcons\"", "question": "What was the record in the game where the opponent wasd the atlanta falcons?", "context": "CREATE TABLE table_name_40 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_63 WHERE game_site = \"tulane stadium\"", "question": "What was the highest attendance at a game that was played in tulane stadium?", "context": "CREATE TABLE table_name_63 (attendance INTEGER, game_site VARCHAR)"}, {"answer": "SELECT COUNT(category) FROM table_name_10 WHERE start = \"brioude\" AND stage < 7", "question": "What is the category for the year when Brioude started and the stage is less than 7?", "context": "CREATE TABLE table_name_10 (category VARCHAR, start VARCHAR, stage VARCHAR)"}, {"answer": "SELECT COUNT(stage) FROM table_name_74 WHERE category < 1", "question": "What is the stage number when the category is less than 1?", "context": "CREATE TABLE table_name_74 (stage VARCHAR, category INTEGER)"}, {"answer": "SELECT home FROM table_name_31 WHERE season = \"1948-49\"", "question": "For the 1948-49 season, what was the At Home record?", "context": "CREATE TABLE table_name_31 (home VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_33 WHERE away = \"2-2\" AND home = \"1-0\"", "question": "In which season was the Away record 2-2 and At Home record 1-0?", "context": "CREATE TABLE table_name_33 (season VARCHAR, away VARCHAR, home VARCHAR)"}, {"answer": "SELECT league FROM table_name_7 WHERE season = \"1958-59\"", "question": "In the 1958-59 season, what league did the team play in?", "context": "CREATE TABLE table_name_7 (league VARCHAR, season VARCHAR)"}, {"answer": "SELECT teams FROM table_name_6 WHERE league = \"bundesliga\" AND away = \"2-1\"", "question": "What team played in the Bundesliga league with an Away record of 2-1?", "context": "CREATE TABLE table_name_6 (teams VARCHAR, league VARCHAR, away VARCHAR)"}, {"answer": "SELECT teams FROM table_name_46 WHERE season = \"1995-96\"", "question": "What team(s) played in the 1995-96 season?", "context": "CREATE TABLE table_name_46 (teams VARCHAR, season VARCHAR)"}, {"answer": "SELECT away FROM table_name_40 WHERE home = \"1-2\" AND league = \"bundesliga\"", "question": "Playing in the Bundesliga league, what was the Away record for the team with an At Home record of 1-2?", "context": "CREATE TABLE table_name_40 (away VARCHAR, home VARCHAR, league VARCHAR)"}, {"answer": "SELECT date_performed FROM table_name_58 WHERE main_contestant = \"karanvir bohra\"", "question": "Which Date performed has a Main contestant of karanvir bohra?", "context": "CREATE TABLE table_name_58 (date_performed VARCHAR, main_contestant VARCHAR)"}, {"answer": "SELECT date_performed FROM table_name_12 WHERE position = \"bottom 3\" AND scores_by_each_individual_judge = 5 + 5 + 4 = 14", "question": "Which Date performed has a Position of bottom 3, and Scores by each individual judge of 5 + 5 + 4 = 14?", "context": "CREATE TABLE table_name_12 (date_performed VARCHAR, position VARCHAR, scores_by_each_individual_judge VARCHAR)"}, {"answer": "SELECT status FROM table_name_52 WHERE co_contestant__yaar_vs_pyaar_ = \"tina sachdev\"", "question": "Which Status has a Co-contestant (Yaar vs. Pyaar) of tina sachdev?", "context": "CREATE TABLE table_name_52 (status VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT status FROM table_name_29 WHERE co_contestant__yaar_vs_pyaar_ = \"tina parekh\"", "question": "Which Status has a Co-contestant (Yaar vs. Pyaar) of tina parekh?", "context": "CREATE TABLE table_name_29 (status VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT total_score_week FROM table_name_38 WHERE status = \"eliminated\" AND scores_by_each_individual_judge = 5 + 5 + 4 = 14", "question": "Which Total score/week has a Status of eliminated, and Scores by each individual judge of 5 + 5 + 4 = 14?", "context": "CREATE TABLE table_name_38 (total_score_week VARCHAR, status VARCHAR, scores_by_each_individual_judge VARCHAR)"}, {"answer": "SELECT scores_by_each_individual_judge FROM table_name_87 WHERE date_performed = \"august 7\" AND main_contestant = \"karanvir bohra\"", "question": "Which Scores by each individual judge has a Date performed of august 7, and a Main contestant of karanvir bohra?", "context": "CREATE TABLE table_name_87 (scores_by_each_individual_judge VARCHAR, date_performed VARCHAR, main_contestant VARCHAR)"}, {"answer": "SELECT name FROM table_name_21 WHERE moving_to = \"triestina\"", "question": "Who is moving to Triestina?", "context": "CREATE TABLE table_name_21 (name VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_97 WHERE moving_to = \"panionios\"", "question": "What is the transfer window of the player moving to Panionios?", "context": "CREATE TABLE table_name_97 (transfer_window VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT type FROM table_name_91 WHERE moving_to = \"panionios\"", "question": "What is the type for the Panionios moving to?", "context": "CREATE TABLE table_name_91 (type VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_15 WHERE nat = \"arg esp\"", "question": "Where is the nationality of Arg Esp moving to?", "context": "CREATE TABLE table_name_15 (moving_to VARCHAR, nat VARCHAR)"}, {"answer": "SELECT name FROM table_name_84 WHERE type = \"loan\" AND moving_to = \"chelsea\"", "question": "Who is moving to Chelsea on loan?", "context": "CREATE TABLE table_name_84 (name VARCHAR, type VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT digital FROM table_name_24 WHERE provider = \"virgin [analogue]\"", "question": "What is the digital of Virgin [analogue]?", "context": "CREATE TABLE table_name_24 (digital VARCHAR, provider VARCHAR)"}, {"answer": "SELECT provider FROM table_name_83 WHERE free_or_pay = \"pay\" AND transmission = \"analogue cable\"", "question": "Which provider is pay with analogue cable?", "context": "CREATE TABLE table_name_83 (provider VARCHAR, free_or_pay VARCHAR, transmission VARCHAR)"}, {"answer": "SELECT no_of_channels FROM table_name_87 WHERE transmission = \"analogue satellite\" AND provider = \"sky [analogue]\"", "question": "How many analogue satellite channels does Sky [Analogue] have?", "context": "CREATE TABLE table_name_87 (no_of_channels VARCHAR, transmission VARCHAR, provider VARCHAR)"}, {"answer": "SELECT years FROM table_name_27 WHERE transmission = \"analogue cable\" AND no_of_channels = \"35\"", "question": "What years are listed for analogue cable with 35 channels?", "context": "CREATE TABLE table_name_27 (years VARCHAR, transmission VARCHAR, no_of_channels VARCHAR)"}, {"answer": "SELECT week_14_nov_27 FROM table_name_37 WHERE week_13_nov_20 = \"nebraska (8-2)\"", "question": "What was Week 14 when Week 13 was Nebraska (8-2)?", "context": "CREATE TABLE table_name_37 (week_14_nov_27 VARCHAR, week_13_nov_20 VARCHAR)"}, {"answer": "SELECT week_15__final__dec_3 FROM table_name_50 WHERE week_12_nov_13 = \"notre dame (7-2)\"", "question": "What was Week 15 when Week 12 was Notre Dame (7-2)?", "context": "CREATE TABLE table_name_50 (week_15__final__dec_3 VARCHAR, week_12_nov_13 VARCHAR)"}, {"answer": "SELECT week_11_nov_6 FROM table_name_99 WHERE week_10_oct_30 = \"nebraska (7-1)\"", "question": "What was Week 11 when Week 10 had Nebraska (7-1)?", "context": "CREATE TABLE table_name_99 (week_11_nov_6 VARCHAR, week_10_oct_30 VARCHAR)"}, {"answer": "SELECT week_15__final__dec_3 FROM table_name_69 WHERE week_12_nov_13 = \"washington (9-1)\"", "question": "What was Week 15 when Week 12 was Washington (9-1)?", "context": "CREATE TABLE table_name_69 (week_15__final__dec_3 VARCHAR, week_12_nov_13 VARCHAR)"}, {"answer": "SELECT surface FROM table_name_64 WHERE date = \"15 february 1988\"", "question": "What Surface has a Date of 15 february 1988?", "context": "CREATE TABLE table_name_64 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE score_in_the_final = \"3\u20136, 2\u20136, 4\u20136\"", "question": "What Date has a Score in the final of 3\u20136, 2\u20136, 4\u20136?", "context": "CREATE TABLE table_name_4 (date VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_57 WHERE date = \"19 september 1988\"", "question": "What Opponent in the final has a Date of 19 september 1988?", "context": "CREATE TABLE table_name_57 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT championship FROM table_name_66 WHERE date = \"26 may 1986\"", "question": "What Championship has a Date of 26 may 1986?", "context": "CREATE TABLE table_name_66 (championship VARCHAR, date VARCHAR)"}, {"answer": "SELECT championship FROM table_name_16 WHERE score_in_the_final = \"2\u20136, 6\u20132, 7\u20135\"", "question": "What Championship has a Score in the final of 2\u20136, 6\u20132, 7\u20135?", "context": "CREATE TABLE table_name_16 (championship VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_77 WHERE overall = 86", "question": "What was the lowest pick number with an overall 86?", "context": "CREATE TABLE table_name_77 (pick__number INTEGER, overall VARCHAR)"}, {"answer": "SELECT name FROM table_name_45 WHERE pick__number > 5 AND college = \"washington\"", "question": "What is the name of a pick more than 5 at Washington College?", "context": "CREATE TABLE table_name_45 (name VARCHAR, pick__number VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(pick__number) FROM table_name_27 WHERE name = \"anthony maddox\"", "question": "What is the sum of the Pick # Anthony Maddox?", "context": "CREATE TABLE table_name_27 (pick__number INTEGER, name VARCHAR)"}, {"answer": "SELECT standard_order FROM table_name_69 WHERE traditional_chinese = \"\u570b\u6ba4\"", "question": "Which number is \u570b\u6ba4?", "context": "CREATE TABLE table_name_69 (standard_order VARCHAR, traditional_chinese VARCHAR)"}, {"answer": "SELECT traditional_chinese FROM table_name_14 WHERE standard_order > 9 AND simplified_chinese = \"\u56fd\u6b87\"", "question": "What is the Traditional Chinese of \u56fd\u6b87 which is over 9?", "context": "CREATE TABLE table_name_14 (traditional_chinese VARCHAR, standard_order VARCHAR, simplified_chinese VARCHAR)"}, {"answer": "SELECT english_translation FROM table_name_93 WHERE simplified_chinese = \"\u5c71\u9b3c\"", "question": "What is the English translation of \u5c71\u9b3c?", "context": "CREATE TABLE table_name_93 (english_translation VARCHAR, simplified_chinese VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_43 WHERE mls_cup = 4 AND us_open_cup > 1", "question": "What is the total where there are 4 MLS Cups and more US Open Cups than 1?", "context": "CREATE TABLE table_name_43 (total VARCHAR, mls_cup VARCHAR, us_open_cup VARCHAR)"}, {"answer": "SELECT race_3 FROM table_name_93 WHERE points > 36 AND race_1 = 2", "question": "Which race 3 has points greater than 36, and 2 as the race 1?", "context": "CREATE TABLE table_name_93 (race_3 VARCHAR, points VARCHAR, race_1 VARCHAR)"}, {"answer": "SELECT SUM(race_1) FROM table_name_45 WHERE race_3 = \"5\" AND points < 59", "question": "How many race 1's have 5 as the race 3, with points less than 59?", "context": "CREATE TABLE table_name_45 (race_1 INTEGER, race_3 VARCHAR, points VARCHAR)"}, {"answer": "SELECT driver FROM table_name_94 WHERE points < 17", "question": "What driver has points less than 17?", "context": "CREATE TABLE table_name_94 (driver VARCHAR, points INTEGER)"}, {"answer": "SELECT player FROM table_name_25 WHERE country = \"south africa\" AND score = 76 - 75 - 73 - 71 = 295", "question": "Who is from south africa and has a score of 76-75-73-71=295?", "context": "CREATE TABLE table_name_25 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(to_par) FROM table_name_96 WHERE country = \"australia\" AND score = 76 - 70 - 75 - 72 = 293", "question": "What is the lowest to par of a player from australia with a score of 76-70-75-72=293?", "context": "CREATE TABLE table_name_96 (to_par INTEGER, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_68 WHERE score = 76 - 70 - 75 - 72 = 293", "question": "What is the money with a Score of 76-70-75-72=293?", "context": "CREATE TABLE table_name_68 (money___\u00a3__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT title FROM table_name_91 WHERE developer = \"2play mobile\" AND genre = \"action\"", "question": "What is Title, when Developer is \"2Play Mobile\", and when Genre is \"Action\"?", "context": "CREATE TABLE table_name_91 (title VARCHAR, developer VARCHAR, genre VARCHAR)"}, {"answer": "SELECT MAX(version) FROM table_name_38 WHERE release_date = \"2011-04-01\"", "question": "What is the highest Version, when Release Date is \"2011-04-01\"?", "context": "CREATE TABLE table_name_38 (version INTEGER, release_date VARCHAR)"}, {"answer": "SELECT version FROM table_name_39 WHERE genre = \"action\" AND title = \"hairball\"", "question": "What is Version, when Genre is \"Action\", and when Title is \"Hairball\"?", "context": "CREATE TABLE table_name_39 (version VARCHAR, genre VARCHAR, title VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_73 WHERE total = \"45:40\"", "question": "What is the Set 1 of the 45:40 Total?", "context": "CREATE TABLE table_name_73 (set_1 VARCHAR, total VARCHAR)"}, {"answer": "SELECT total FROM table_name_41 WHERE set_1 = \"24:26\"", "question": "What is the Total of the 24:26 Set 1?", "context": "CREATE TABLE table_name_41 (total VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT total FROM table_name_58 WHERE set_2 = \"21:12\"", "question": "What is the Total of Set 2 of 21:12?", "context": "CREATE TABLE table_name_58 (total VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT total FROM table_name_86 WHERE set_2 = \"24:22\"", "question": "What is the Total of Set 2 of 24:22?", "context": "CREATE TABLE table_name_86 (total VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE set_2 = \"21:12\"", "question": "What is the date of the 21:12 Set 2?", "context": "CREATE TABLE table_name_17 (date VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT torque FROM table_name_15 WHERE engine = \"5.8l v12\"", "question": "What is the torque of the 5.8l v12 engine?", "context": "CREATE TABLE table_name_15 (torque VARCHAR, engine VARCHAR)"}, {"answer": "SELECT torque FROM table_name_72 WHERE engine = \"6.3l v12\"", "question": "What is the torque of the 6.3l v12 engine?", "context": "CREATE TABLE table_name_72 (torque VARCHAR, engine VARCHAR)"}, {"answer": "SELECT 0 AS _100km_h__62mph_ FROM table_name_20 WHERE engine = \"supercharged 5.4l v8\"", "question": "What is the 0-100km/h (62mph) of the supercharged 5.4l v8 engine?", "context": "CREATE TABLE table_name_20 (engine VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_98 WHERE per_capita_income = \"$18,884\" AND number_of_households < 14 OFFSET 485", "question": "What is the population when the  Per capita income of $18,884, and a Number of households smaller than 14,485?", "context": "CREATE TABLE table_name_98 (population INTEGER, per_capita_income VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT place FROM table_name_99 WHERE player = \"ben crenshaw\"", "question": "What is Place, when Player is \"Ben Crenshaw\"?", "context": "CREATE TABLE table_name_99 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(kneel) FROM table_name_59 WHERE stand < 187 AND prone = 197 AND qual > 576", "question": "What is the highest kneel with a stand less than 187, and a 197 prone, and a qual more than 576?", "context": "CREATE TABLE table_name_59 (kneel INTEGER, qual VARCHAR, stand VARCHAR, prone VARCHAR)"}, {"answer": "SELECT SUM(stand) FROM table_name_31 WHERE qual > 589", "question": "What is the sum of the stand with a qual more than 589?", "context": "CREATE TABLE table_name_31 (stand INTEGER, qual INTEGER)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_26 WHERE team_1 = \"remo (pa)\"", "question": "What is the 1st leg in the match where Remo (PA) is team 1?", "context": "CREATE TABLE table_name_26 (team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_17 WHERE team_2 = \"fluminense (rj)\"", "question": "Who is team 1 where team 2 is Fluminense (RJ)?", "context": "CREATE TABLE table_name_17 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE competition = \"friendly\" AND venue = \"dreisamstadion, freiburg\"", "question": "What is the venue for the friendly competition at Dreisamstadion, Freiburg?", "context": "CREATE TABLE table_name_52 (score VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_96 WHERE venue = \"dreisamstadion, freiburg\"", "question": "What is the result at Dreisamstadion, Freiburg?", "context": "CREATE TABLE table_name_96 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT team FROM table_name_16 WHERE position = \"lhp\" AND pick = 23", "question": "What is Team, when Position is \"LHP\", and when Pick is \"23\"?", "context": "CREATE TABLE table_name_16 (team VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_86 WHERE player = \"todd van poppel\"", "question": "What is the highest Pick, when Player is \"Todd Van Poppel\"?", "context": "CREATE TABLE table_name_86 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_48 WHERE pick = 26", "question": "What is Player, when Pick is \"26\"?", "context": "CREATE TABLE table_name_48 (player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_15 WHERE hometown_school = \"westlake, california\"", "question": "What is Posititon, when Hometown/School is \"Westlake, California\"?", "context": "CREATE TABLE table_name_15 (position VARCHAR, hometown_school VARCHAR)"}, {"answer": "SELECT player FROM table_name_61 WHERE position = \"ss\" AND pick = 11", "question": "What is Player, when Position is \"SS\", and when Pick is \"11\"?", "context": "CREATE TABLE table_name_61 (player VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT population FROM table_name_38 WHERE county = \"sargent\"", "question": "What is the Population of Sargent County?", "context": "CREATE TABLE table_name_38 (population VARCHAR, county VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_86 WHERE silver = 0 AND total > 2", "question": "What is the rank for the nation with 0 silver medals and a total larger than 2?", "context": "CREATE TABLE table_name_86 (rank INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_55 WHERE bronze = 39 AND total < 120", "question": "What is the least silvers where there are 39 bronzes and the total is less than 120?", "context": "CREATE TABLE table_name_55 (silver INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_74 WHERE mountains_classification = \"david loosli\" AND stage = \"3\"", "question": "What's the general classification of stage 3 with David Loosli as the mountains classification?", "context": "CREATE TABLE table_name_74 (general_classification VARCHAR, mountains_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_42 WHERE stage = \"final\"", "question": "What's the points classification when the stage was final?", "context": "CREATE TABLE table_name_42 (points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_29 WHERE team_classification = \"gerolsteiner\"", "question": "What is the stage of Gerolsteiner?", "context": "CREATE TABLE table_name_29 (stage VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_82 WHERE general_classification = \"kim kirchen\" AND stage = \"7\"", "question": "What's the mountains classification of Stage 7 when Kim Kirchen was the general classification?", "context": "CREATE TABLE table_name_82 (mountains_classification VARCHAR, general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT team_classification FROM table_name_21 WHERE general_classification = \"kim kirchen\"", "question": "What was Kim Kirchen's team classification?", "context": "CREATE TABLE table_name_21 (team_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT player FROM table_name_24 WHERE to_par = \"+1\" AND score = 73 - 71 - 71 = 217", "question": "What Player has a To par of +1 and a Score of 73-71-71=217?", "context": "CREATE TABLE table_name_24 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_12 WHERE to_par = \"+1\" AND score = 73 - 71 - 73 = 217", "question": "What Player's had a To par of +1 and a Score of 73-71-73=217?", "context": "CREATE TABLE table_name_12 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE player = \"fuzzy zoeller\"", "question": "What is Fuzzy Zoeller's Score?", "context": "CREATE TABLE table_name_56 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_85 WHERE score = 71 - 73 - 71 = 215", "question": "What is the Country of the Player with a Score of 71-73-71=215?", "context": "CREATE TABLE table_name_85 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_72 WHERE to_par = \"\u20134\"", "question": "What is the Country of the Player with a To par of \u20134?", "context": "CREATE TABLE table_name_72 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_38 WHERE to_par = \"+1\" AND score = 75 - 69 - 73 = 217", "question": "What is the Country of the Player with a To par of +1 and a Score of 75-69-73=217?", "context": "CREATE TABLE table_name_38 (country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_97 WHERE goals_against = 24 AND played < 30", "question": "Which Position has 24 Goals against, and a Played smaller than 30?", "context": "CREATE TABLE table_name_97 (position INTEGER, goals_against VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_9 WHERE club = \"cf calvo sotelo\" AND goal_difference > -3", "question": "Which Points have a Club of cf calvo sotelo, and a Goal Difference larger than -3?", "context": "CREATE TABLE table_name_9 (points INTEGER, club VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_63 WHERE position = 16 AND goals_against < 58", "question": "Which Draws have a Position of 16, and less than 58 Goals against?", "context": "CREATE TABLE table_name_63 (draws INTEGER, position VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_75 WHERE draws > 6 AND club = \"cd mestalla\" AND goals_against > 44", "question": "Which Losses have Draws larger than 6, and a Club of cd mestalla, and Goals against larger than 44?", "context": "CREATE TABLE table_name_75 (losses INTEGER, goals_against VARCHAR, draws VARCHAR, club VARCHAR)"}, {"answer": "SELECT SUM(goals_against) FROM table_name_54 WHERE goals_for < 33 AND points < 16", "question": "How many Goals against have Goals for smaller than 33, and Points smaller than 16?", "context": "CREATE TABLE table_name_54 (goals_against INTEGER, goals_for VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE game_site = \"griffith stadium\"", "question": "What Date was the Game at Griffith Stadium?", "context": "CREATE TABLE table_name_9 (date VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_4 WHERE date = \"bye\"", "question": "What attendance is listed against the date of bye?", "context": "CREATE TABLE table_name_4 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE week = 3", "question": "What date is week 3?", "context": "CREATE TABLE table_name_77 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT floors FROM table_name_89 WHERE location = \"tower hill\"", "question": "Which Floors has a Location of tower hill?", "context": "CREATE TABLE table_name_89 (floors VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_18 WHERE floors = \"03.0 n/a\"", "question": "Which Location has a Floors of 03.0 n/a?", "context": "CREATE TABLE table_name_18 (location VARCHAR, floors VARCHAR)"}, {"answer": "SELECT height_metres___ft FROM table_name_89 WHERE floors = \"05.0 n/a\"", "question": "Name the Height metres / ft of Floors of 05.0 n/a?", "context": "CREATE TABLE table_name_89 (height_metres___ft VARCHAR, floors VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_14 WHERE height_metres___ft = \"01.0 27 / 90\"", "question": "Name the Years as tallest that has Height metres / ft of 01.0 27 / 90?", "context": "CREATE TABLE table_name_14 (years_as_tallest VARCHAR, height_metres___ft VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_95 WHERE height_metres___ft = \"07.0 150 / 493 [b ]\"", "question": "Name the Years as tallest has a Height metres / ft of 07.0 150 / 493 [b ]?", "context": "CREATE TABLE table_name_95 (years_as_tallest VARCHAR, height_metres___ft VARCHAR)"}, {"answer": "SELECT height_metres___ft FROM table_name_68 WHERE years_as_tallest = \"1098\u20131310\"", "question": "Name the Height metres / ft of Years with tallest of 1098\u20131310?", "context": "CREATE TABLE table_name_68 (height_metres___ft VARCHAR, years_as_tallest VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_name_2 WHERE place = \"t5\"", "question": "How many scores have a Place of t5?", "context": "CREATE TABLE table_name_2 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_33 WHERE score < 70 AND player = \"matt kowal\"", "question": "Which To Par has a Score smaller than 70, and a Player of matt kowal?", "context": "CREATE TABLE table_name_33 (to_par VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_59 WHERE to_par = \"\u20131\"", "question": "Which Score has a To Par of \u20131?", "context": "CREATE TABLE table_name_59 (score INTEGER, to_par VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE catalog = 88697185162 AND region = \"canada\"", "question": "what is the date for catolog 88697185162 when the region is canada?", "context": "CREATE TABLE table_name_9 (date VARCHAR, catalog VARCHAR, region VARCHAR)"}, {"answer": "SELECT parish__prestegjeld_ FROM table_name_44 WHERE church_name = \"vangsnes kyrkje\"", "question": "Which parish has a church named Vangsnes Kyrkje?", "context": "CREATE TABLE table_name_44 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT sub_parish__sokn_ FROM table_name_19 WHERE year_built = \"1866\"", "question": "Which Sub-Parish has a church built in 1866?", "context": "CREATE TABLE table_name_19 (sub_parish__sokn_ VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT year_built FROM table_name_83 WHERE church_name = \"hopperstad stavkyrkje\"", "question": "When was the Hopperstad Stavkyrkje built?", "context": "CREATE TABLE table_name_83 (year_built VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT year_built FROM table_name_43 WHERE location_of_the_church = \"arnafjord\"", "question": "When was the church in Arnafjord built?", "context": "CREATE TABLE table_name_43 (year_built VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT sub_parish__sokn_ FROM table_name_39 WHERE location_of_the_church = \"fresvik\"", "question": "What is the Sub-Parish called that has a church located in Fresvik?", "context": "CREATE TABLE table_name_39 (sub_parish__sokn_ VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT church_name FROM table_name_94 WHERE sub_parish__sokn_ = \"fresvik\"", "question": "What is the church in the Sub-Parish of Fresvik called?", "context": "CREATE TABLE table_name_94 (church_name VARCHAR, sub_parish__sokn_ VARCHAR)"}, {"answer": "SELECT time FROM table_name_15 WHERE city = \"sheffield\"", "question": "What is the time for Sheffield?", "context": "CREATE TABLE table_name_15 (time VARCHAR, city VARCHAR)"}, {"answer": "SELECT total FROM table_name_33 WHERE slalom_points = \"3.18\"", "question": "What are the total points for the skier with 3.18 slalom points?", "context": "CREATE TABLE table_name_33 (total VARCHAR, slalom_points VARCHAR)"}, {"answer": "SELECT place FROM table_name_38 WHERE downhill_points = 7.73", "question": "What place is the skier with 7.73 downhill points?", "context": "CREATE TABLE table_name_38 (place VARCHAR, downhill_points VARCHAR)"}, {"answer": "SELECT SUM(downhill_points) FROM table_name_50 WHERE total = \"9.31\"", "question": "What are the downhill points for the skier with total of 9.31 points?", "context": "CREATE TABLE table_name_50 (downhill_points INTEGER, total VARCHAR)"}, {"answer": "SELECT rank_points FROM table_name_87 WHERE score_points = \"11\"", "question": "What is the rank for the player where there are 11 points?", "context": "CREATE TABLE table_name_87 (rank_points VARCHAR, score_points VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_18 WHERE total = \"11\" AND event = \"wc munich\" AND score_points = \"6\"", "question": "Which shooter had a total of 11 at the WC Munich with a score of 6?", "context": "CREATE TABLE table_name_18 (shooter VARCHAR, score_points VARCHAR, total VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_10 WHERE score_points = \"10\"", "question": "What is the event where there are 10 score points?", "context": "CREATE TABLE table_name_10 (event VARCHAR, score_points VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_63 WHERE total = \"defending champion\"", "question": "Who is the shooter that is the Defending Champion?", "context": "CREATE TABLE table_name_63 (shooter VARCHAR, total VARCHAR)"}, {"answer": "SELECT owner FROM table_name_73 WHERE name = \"mrt 1 hd\"", "question": "Which owner had MRT 1 HD?", "context": "CREATE TABLE table_name_73 (owner VARCHAR, name VARCHAR)"}, {"answer": "SELECT programming FROM table_name_71 WHERE name = \"mrt sobraniski kanal\"", "question": "What is the programming for mrt sobraniski kanal?", "context": "CREATE TABLE table_name_71 (programming VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_73 WHERE programming = \"general\" AND owner = \"tv kanal 5\"", "question": "What is the type for a general programming and the owner tv kanal 5?", "context": "CREATE TABLE table_name_73 (type VARCHAR, programming VARCHAR, owner VARCHAR)"}, {"answer": "SELECT programming FROM table_name_20 WHERE name = \"kanal 5\"", "question": "What is the programming for Kanal 5?", "context": "CREATE TABLE table_name_20 (programming VARCHAR, name VARCHAR)"}, {"answer": "SELECT surface FROM table_name_91 WHERE date = \"march 2, 1997\"", "question": "What was the surface on march 2, 1997?", "context": "CREATE TABLE table_name_91 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_16 WHERE partner = \"magdalena maleeva\"", "question": "What was the result when the partner was magdalena maleeva?", "context": "CREATE TABLE table_name_16 (result VARCHAR, partner VARCHAR)"}, {"answer": "SELECT edition FROM table_name_34 WHERE partner = \"magdalena maleeva\"", "question": "What edition had magdalena maleeva as partner?", "context": "CREATE TABLE table_name_34 (edition VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_23 WHERE edition = \"1988 world group i\"", "question": "Who was partner for the 1988 world group i edition?", "context": "CREATE TABLE table_name_23 (partner VARCHAR, edition VARCHAR)"}, {"answer": "SELECT result FROM table_name_4 WHERE date = \"july 16, 1992\"", "question": "What was the result on july 16, 1992?", "context": "CREATE TABLE table_name_4 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT event FROM table_name_70 WHERE position = \"8th\"", "question": "What is the event that is in 8th position?", "context": "CREATE TABLE table_name_70 (event VARCHAR, position VARCHAR)"}, {"answer": "SELECT event FROM table_name_37 WHERE year < 1989", "question": "What is the event in a year before 1989?", "context": "CREATE TABLE table_name_37 (event VARCHAR, year INTEGER)"}, {"answer": "SELECT MIN(total) FROM table_name_24 WHERE year_s__won = \"1964\"", "question": "What is the total medals in 1964?", "context": "CREATE TABLE table_name_24 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT COUNT(kills) FROM table_name_32 WHERE percentage > 0.313 AND total_attempts > 1035 AND assists > 57", "question": "How many kills when percentage is more than 0.313, attempts are more than 1035 and assists are larger than 57?", "context": "CREATE TABLE table_name_32 (kills VARCHAR, assists VARCHAR, percentage VARCHAR, total_attempts VARCHAR)"}, {"answer": "SELECT MAX(percentage) FROM table_name_66 WHERE total_blocks > 361", "question": "What is the highest percentage when there are more than 361 blocks?", "context": "CREATE TABLE table_name_66 (percentage INTEGER, total_blocks INTEGER)"}, {"answer": "SELECT AVG(total_blocks) FROM table_name_78 WHERE digs < 210 AND total_attempts > 1116", "question": "What is the total blocks when there are less than 210 digs and the total attempts are more than 1116?", "context": "CREATE TABLE table_name_78 (total_blocks INTEGER, digs VARCHAR, total_attempts VARCHAR)"}, {"answer": "SELECT english FROM table_name_26 WHERE german = \"leben\"", "question": "Which English has German of leben?", "context": "CREATE TABLE table_name_26 (english VARCHAR, german VARCHAR)"}, {"answer": "SELECT plautdietsch FROM table_name_61 WHERE dutch = \"maken\"", "question": "Which Plautdietsch has Dutch of maken?", "context": "CREATE TABLE table_name_61 (plautdietsch VARCHAR, dutch VARCHAR)"}, {"answer": "SELECT english FROM table_name_26 WHERE dutch = \"tong\"", "question": "Which English has Dutch of tong?", "context": "CREATE TABLE table_name_26 (english VARCHAR, dutch VARCHAR)"}, {"answer": "SELECT english FROM table_name_64 WHERE plautdietsch = \"aupel\"", "question": "Which English has Plautdietsch of aupel?", "context": "CREATE TABLE table_name_64 (english VARCHAR, plautdietsch VARCHAR)"}, {"answer": "SELECT english FROM table_name_37 WHERE dutch = \"maken\"", "question": "Which English has Dutch of maken?", "context": "CREATE TABLE table_name_37 (english VARCHAR, dutch VARCHAR)"}, {"answer": "SELECT country FROM table_name_21 WHERE year_s__won = \"1988\"", "question": "Can you tell me the Country that has the Year(s) Won of 1988?", "context": "CREATE TABLE table_name_21 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_60 WHERE to_par < 10 AND country = \"south korea\"", "question": "Can you tell me the average Total that has the To par smaller than 10, and the Country of south korea?", "context": "CREATE TABLE table_name_60 (total INTEGER, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_62 WHERE country = \"united states\" AND total > 152", "question": "Can you tell me the Year(s) Won that has the Country of united states, and the Total larger than 152?", "context": "CREATE TABLE table_name_62 (year_s__won VARCHAR, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_18 WHERE to_par > 5 AND total < 155 AND country = \"united states\"", "question": "Can you tell me the Year(s) Won that has the To par larger than 5, and the Total smaller than 155, and the Country of united states?", "context": "CREATE TABLE table_name_18 (year_s__won VARCHAR, country VARCHAR, to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT player FROM table_name_34 WHERE total > 293 AND year_s__won = \"1989\"", "question": "What golfer has a greater than 293 total, and won in 1989?", "context": "CREATE TABLE table_name_34 (player VARCHAR, total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_16 WHERE to_par = \"+3\"", "question": "What is the maximum total when the To par is +3?", "context": "CREATE TABLE table_name_16 (total INTEGER, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_52 WHERE total = 281", "question": "What golfer has 281 as their total?", "context": "CREATE TABLE table_name_52 (player VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(capacity) FROM table_name_95 WHERE stadium = \"tsentral stadium (batumi)\"", "question": "What is the highest capacity of the tsentral stadium (batumi)?", "context": "CREATE TABLE table_name_95 (capacity INTEGER, stadium VARCHAR)"}, {"answer": "SELECT clubs FROM table_name_17 WHERE stadium = \"evgrapi shevardnadze stadium\"", "question": "What clubs are in the evgrapi shevardnadze stadium?", "context": "CREATE TABLE table_name_17 (clubs VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_27 WHERE clubs = \"zooveti tbilisi\"", "question": "What is the stadium of the zooveti tbilisi club?", "context": "CREATE TABLE table_name_27 (stadium VARCHAR, clubs VARCHAR)"}, {"answer": "SELECT college FROM table_name_79 WHERE player = \"jim leonhard category:articles with hcards\"", "question": "What college had Jim Leonhard Category:articles with hcards?", "context": "CREATE TABLE table_name_79 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT original_nfl_team FROM table_name_25 WHERE player = \"rashied davis category:articles with hcards\"", "question": "Who's the original team for Rashied Davis Category:articles with hcards?", "context": "CREATE TABLE table_name_25 (original_nfl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_94 WHERE player = \"lance moore category:articles with hcards\"", "question": "What college has Lance Moore Category:articles with hcards?", "context": "CREATE TABLE table_name_94 (college VARCHAR, player VARCHAR)"}, {"answer": "SELECT original_nfl_team FROM table_name_31 WHERE pos = \"s\" AND college = \"georgia tech\"", "question": "What's the original NFL team when the POS is S and college is Georgia Tech?", "context": "CREATE TABLE table_name_31 (original_nfl_team VARCHAR, pos VARCHAR, college VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_32 WHERE child = \"oliver buell\"", "question": "What is the date of birth of Oliver Buell's child?", "context": "CREATE TABLE table_name_32 (date_of_birth VARCHAR, child VARCHAR)"}, {"answer": "SELECT father FROM table_name_30 WHERE date_of_birth = \"january 2, 1842\"", "question": "Who is the father that was born on January 2, 1842?", "context": "CREATE TABLE table_name_30 (father VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT father FROM table_name_58 WHERE mother = \"presendia huntington buell\"", "question": "Who is the father of the child whose mother is Presendia Huntington Buell?", "context": "CREATE TABLE table_name_58 (father VARCHAR, mother VARCHAR)"}, {"answer": "SELECT place FROM table_name_24 WHERE score = 69 - 69 = 138 AND country = \"germany\"", "question": "What was the place in Germany with a score of 69-69=138?", "context": "CREATE TABLE table_name_24 (place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_73 WHERE place = \"t6\" AND player = \"eduardo romero\"", "question": "What is the country that has a place of T6 that Eduardo Romero plays for?", "context": "CREATE TABLE table_name_73 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_96 WHERE country = \"scotland\"", "question": "What is the to par for Scotland?", "context": "CREATE TABLE table_name_96 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE player = \"darren clarke\"", "question": "What is the score for Darren Clarke?", "context": "CREATE TABLE table_name_73 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_17 WHERE place = \"t6\" AND score = 69 - 69 = 138 AND player = \"niclas fasth\"", "question": "What is the country that has a place of T6, a socre of 69-69=138, and where Niclas Fasth played?", "context": "CREATE TABLE table_name_17 (country VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_42 WHERE against = 1017 AND wins > 12", "question": "What's the total losses that has more than 12 wins and 1017 against?", "context": "CREATE TABLE table_name_42 (losses VARCHAR, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_43 WHERE benalla_dfl = \"tatong\"", "question": "What's the most wins of Tatong?", "context": "CREATE TABLE table_name_43 (wins INTEGER, benalla_dfl VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_13 WHERE benalla_dfl = \"longwood\" AND against < 1944", "question": "What's the most number of byes for Longwood having less than 1944 against?", "context": "CREATE TABLE table_name_13 (byes INTEGER, benalla_dfl VARCHAR, against VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_21 WHERE draws < 0", "question": "What is the smallest number against when the draws are less than 0?", "context": "CREATE TABLE table_name_21 (against INTEGER, draws INTEGER)"}, {"answer": "SELECT AVG(byes) FROM table_name_54 WHERE benalla_dfl = \"bonnie doon\" AND wins > 16", "question": "What are the average byes of Bonnie Doon having more than 16 wins?", "context": "CREATE TABLE table_name_54 (byes INTEGER, benalla_dfl VARCHAR, wins VARCHAR)"}, {"answer": "SELECT club FROM table_name_91 WHERE city = \"rovigo\"", "question": "What is Rovigo's Club?", "context": "CREATE TABLE table_name_91 (club VARCHAR, city VARCHAR)"}, {"answer": "SELECT 2007 AS _08_season FROM table_name_15 WHERE club = \"a.s. gubbio 1910\"", "question": "What 2007-08 had A.S. Gubbio 1910 Club?", "context": "CREATE TABLE table_name_15 (club VARCHAR)"}, {"answer": "SELECT country FROM table_name_49 WHERE total = 295", "question": "Which country had a total of 295?", "context": "CREATE TABLE table_name_49 (country VARCHAR, total VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE home_team = \"west ham united\"", "question": "On what Date is West Ham United the Home team?", "context": "CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE score = \"4\u20131\"", "question": "On what Date was the Score 4\u20131?", "context": "CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_68 WHERE tie_no = \"1\"", "question": "What is the Away team of Tie no 1?", "context": "CREATE TABLE table_name_68 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_37 WHERE away_team = \"crystal palace\"", "question": "What is the Tie no when Crystal Palace is the Away team?", "context": "CREATE TABLE table_name_37 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_66 WHERE tie_no = \"11\"", "question": "What is the Home team of Tie no 11?", "context": "CREATE TABLE table_name_66 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE home_team = \"west ham united\"", "question": "On what Date is West Ham United the Home team?", "context": "CREATE TABLE table_name_84 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT week_4 FROM table_name_10 WHERE week_1 = \"sheila levell\"", "question": "What kind of Week 4 has a Week 1 of sheila levell?", "context": "CREATE TABLE table_name_10 (week_4 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_15 WHERE week_4 = \"araya robinson\"", "question": "What kind of Week 2 has a Week 4 of araya robinson?", "context": "CREATE TABLE table_name_15 (week_2 VARCHAR, week_4 VARCHAR)"}, {"answer": "SELECT week_4 FROM table_name_65 WHERE week_2 = \"tiffany logan\"", "question": "What kind of Week 4 has a Week 2 of tiffany logan?", "context": "CREATE TABLE table_name_65 (week_4 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_68 WHERE week_1 = \"mandy ashford\"", "question": "what kind of Week 5 that has a Week 1 of mandy ashford?", "context": "CREATE TABLE table_name_68 (week_5 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_91 WHERE week_1 = \"mandy ashford\"", "question": "What kind of Week 2 that has a Week 1 of mandy ashford?", "context": "CREATE TABLE table_name_91 (week_2 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_81 WHERE week_1 = \"mackenzie ryan\"", "question": "What Week 2 that has a Week 1 of mackenzie ryan?", "context": "CREATE TABLE table_name_81 (week_2 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT name FROM table_name_70 WHERE weight = \"head coach: aleksandr kabanov\"", "question": "What is the name when weight shows head coach: Aleksandr Kabanov?", "context": "CREATE TABLE table_name_70 (name VARCHAR, weight VARCHAR)"}, {"answer": "SELECT park_and_ride_lot FROM table_name_97 WHERE station_name = \"temple square\"", "question": "What is the park & ride lot for the Temple Square station?", "context": "CREATE TABLE table_name_97 (park_and_ride_lot VARCHAR, station_name VARCHAR)"}, {"answer": "SELECT park_and_ride_lot FROM table_name_53 WHERE station_name = \"temple square\"", "question": "For the Temple Square station, what is the park & ride lot name?", "context": "CREATE TABLE table_name_53 (park_and_ride_lot VARCHAR, station_name VARCHAR)"}, {"answer": "SELECT station_name FROM table_name_99 WHERE opening_year = \"2013\" AND park_and_ride_lot = \"no\"", "question": "Which station was opened in 2013, with no park & ride lot?", "context": "CREATE TABLE table_name_99 (station_name VARCHAR, opening_year VARCHAR, park_and_ride_lot VARCHAR)"}, {"answer": "SELECT free_fare_zone FROM table_name_65 WHERE station_name = \"arena\"", "question": "Where is the free fare zone for the Arena station?", "context": "CREATE TABLE table_name_65 (free_fare_zone VARCHAR, station_name VARCHAR)"}, {"answer": "SELECT statistic FROM table_name_70 WHERE name = \"calvin abueva calvin abueva\"", "question": "Calvin Abueva Calvin Abueva had what statistic?", "context": "CREATE TABLE table_name_70 (statistic VARCHAR, name VARCHAR)"}, {"answer": "SELECT statistic FROM table_name_79 WHERE opponent = \"ssc-r\"", "question": "When the opposing team was SSC-R what was the statistic?", "context": "CREATE TABLE table_name_79 (statistic VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT name FROM table_name_70 WHERE opponent = \"ssc-r\"", "question": "When SSC-R is the opponent what is the name?", "context": "CREATE TABLE table_name_70 (name VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT stage FROM table_name_7 WHERE statistic = \"most points\"", "question": "With a statistic of most points, what is the stage?", "context": "CREATE TABLE table_name_7 (stage VARCHAR, statistic VARCHAR)"}, {"answer": "SELECT total FROM table_name_49 WHERE opponent = \"csb uphds\"", "question": "When the opposing team was CSB UPHDS what was the total?", "context": "CREATE TABLE table_name_49 (total VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT name FROM table_name_93 WHERE statistic = \"most assists\"", "question": "Who had the statistic of most assists?", "context": "CREATE TABLE table_name_93 (name VARCHAR, statistic VARCHAR)"}, {"answer": "SELECT swimmer FROM table_name_64 WHERE year < 2011 AND time = \"53.06\"", "question": "What is Swimmer, when Year is less than 2011, and when Time is \"53.06\"?", "context": "CREATE TABLE table_name_64 (swimmer VARCHAR, year VARCHAR, time VARCHAR)"}, {"answer": "SELECT school FROM table_name_17 WHERE event = \"100 backstroke\"", "question": "What is School, when Event is \"100 Backstroke\"?", "context": "CREATE TABLE table_name_17 (school VARCHAR, event VARCHAR)"}, {"answer": "SELECT school FROM table_name_65 WHERE year < 2013 AND event = \"100 breaststroke\"", "question": "What is School, when Year is less than 2013, and when Event is \"100 Breaststroke\"?", "context": "CREATE TABLE table_name_65 (school VARCHAR, year VARCHAR, event VARCHAR)"}, {"answer": "SELECT time FROM table_name_98 WHERE year > 2011 AND event = \"800 freestyle relay\"", "question": "What is Time, when Year is greater than 2011, and when Event is \"800 Freestyle Relay\"?", "context": "CREATE TABLE table_name_98 (time VARCHAR, year VARCHAR, event VARCHAR)"}, {"answer": "SELECT year FROM table_name_37 WHERE time = \"1:47.55\"", "question": "What is Year, when Time is \"1:47.55\"?", "context": "CREATE TABLE table_name_37 (year VARCHAR, time VARCHAR)"}, {"answer": "SELECT surface FROM table_name_46 WHERE opponent_in_the_final = \"yaroslava shvedova\"", "question": "What is the Surface of the match against Yaroslava Shvedova?", "context": "CREATE TABLE table_name_46 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_86 WHERE score_in_the_final = \"5\u20137, 6\u20137 (2\u20137)\"", "question": "What is the Surface of the match with a Score in the final of 5\u20137, 6\u20137 (2\u20137)?", "context": "CREATE TABLE table_name_86 (surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_9 WHERE surface = \"clay\" AND score_in_the_final = \"4\u20136, 3\u20136\"", "question": "Who is the Opponent in the final of the match played on Clay Surface with a Score in the final of 4\u20136, 3\u20136?", "context": "CREATE TABLE table_name_9 (opponent_in_the_final VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE surface = \"clay\" AND score_in_the_final = \"6\u20132, 7\u20135\"", "question": "On what Date is the match played on Clay Surface with a Score in the final of 6\u20132, 7\u20135?", "context": "CREATE TABLE table_name_32 (date VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_71 WHERE nationality = \"finland\"", "question": "WHAT IS THE NHL TEAM OF FINLAND?", "context": "CREATE TABLE table_name_71 (nhl_team VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT AVG(to_iran) FROM table_name_9 WHERE survived < 9 AND aircraft = \"ussr an-26\" AND damaged > 3", "question": "What's the to Iran with fewer than 9 survivors, more than 3 damaged, and an ussr an-26 aircraft?", "context": "CREATE TABLE table_name_9 (to_iran INTEGER, damaged VARCHAR, survived VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT AVG(destroyed) FROM table_name_17 WHERE 1990 > 12 AND damaged > 1 AND to_iran < 4 AND survived = 6", "question": "What's the average destroyed with a 1990 over 12, more than 1 damaged, 6 survivors, and a to Iran less than 4?", "context": "CREATE TABLE table_name_17 (destroyed INTEGER, survived VARCHAR, to_iran VARCHAR, damaged VARCHAR)"}, {"answer": "SELECT AVG(survived) FROM table_name_53 WHERE to_iran < 1 AND aircraft = \"brazil tucano\" AND destroyed > 1", "question": "What's the average survived with a to Iran less than 1, more than 1 destroyed, and a brazil tucano aircraft?", "context": "CREATE TABLE table_name_53 (survived INTEGER, destroyed VARCHAR, to_iran VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_53 WHERE attendance = \"568\"", "question": "What home team played when there was an attendance of 568?", "context": "CREATE TABLE table_name_53 (home_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_30 WHERE home_team = \"horsham\"", "question": "What away team did Horsham play?", "context": "CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_30 WHERE away_team = \"hinckley united\"", "question": "What home team played Hinckley United?", "context": "CREATE TABLE table_name_30 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(pts) FROM table_name_37 WHERE engine = \"ferrari tipo 033 v6 tc\" AND year > 1987", "question": "How many points have an Engine of ferrari tipo 033 v6 tc, and a Year larger than 1987?", "context": "CREATE TABLE table_name_37 (pts INTEGER, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT team_chassis FROM table_name_46 WHERE year > 1987", "question": "Which Team/Chassis has a Year larger than 1987?", "context": "CREATE TABLE table_name_46 (team_chassis VARCHAR, year INTEGER)"}, {"answer": "SELECT MAX(pts) FROM table_name_90 WHERE engine = \"ferrari tipo 033 v6 tc\" AND year < 1987", "question": "How many points have an Engine of ferrari tipo 033 v6 tc, and a Year smaller than 1987?", "context": "CREATE TABLE table_name_90 (pts INTEGER, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT team_chassis FROM table_name_66 WHERE pts < 65", "question": "Which Team/Chassis has less than 65 points?", "context": "CREATE TABLE table_name_66 (team_chassis VARCHAR, pts INTEGER)"}, {"answer": "SELECT score FROM table_name_99 WHERE tie_no = \"32\"", "question": "What is the score if the Tie no is 32?", "context": "CREATE TABLE table_name_99 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_78 WHERE home_team = \"scunthorpe united\"", "question": "What is the Tie no for Scunthorpe United?", "context": "CREATE TABLE table_name_78 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_91 WHERE away_team = \"stoke city\"", "question": "Which home team played against Stoke City?", "context": "CREATE TABLE table_name_91 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_67 WHERE tie_no = \"14\"", "question": "Which away team has a Tie no of 14?", "context": "CREATE TABLE table_name_67 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE home_team = \"watford\" AND tie_no = \"2\"", "question": "On what date does Watford have a Tie no of 2?", "context": "CREATE TABLE table_name_45 (date VARCHAR, home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT l1_cache FROM table_name_35 WHERE fsb_speed = \"800mhz\" AND clock_speed = \"1.2ghz\"", "question": "Which L1 Cache has an FSB speed of 800mhz and a clock speed of 1.2ghz?", "context": "CREATE TABLE table_name_35 (l1_cache VARCHAR, fsb_speed VARCHAR, clock_speed VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE player = \"tom kite\"", "question": "What is the score of Player Tom Kite?", "context": "CREATE TABLE table_name_17 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_35 WHERE score = 69 - 69 - 73 = 211", "question": "What is the To Par that has a 69-69-73=211 score?", "context": "CREATE TABLE table_name_35 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_23 WHERE place = \"t1\" AND score = 66 - 71 - 66 = 203", "question": "What is the Top that has a 66-71-66=203 score and a place of t1?", "context": "CREATE TABLE table_name_23 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE to_par = \"+1\" AND score = 71 - 67 - 73 = 211", "question": "What player has a To Par of +1 with a score of 71-67-73=211?", "context": "CREATE TABLE table_name_89 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_91 WHERE score = 72 - 68 - 78 - 71 = 289", "question": "Which Player has a Score of 72-68-78-71=289?", "context": "CREATE TABLE table_name_91 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_33 WHERE score = 66", "question": "What is the Place for the 66 Score?", "context": "CREATE TABLE table_name_33 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_89 WHERE score = 67 AND player = \"phil mickelson\"", "question": "What Country has a 67 score by Phil Mickelson?", "context": "CREATE TABLE table_name_89 (country VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_96 WHERE week_3 = \"cathi o'malley\"", "question": "When Cathi O'Malley was featured in Week 3, who was the cyber girl for Week 5?", "context": "CREATE TABLE table_name_96 (week_5 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_11 WHERE week_3 = \"star zemba\"", "question": "When Star Zemba was featured in Week 3, who was the cyber girl for Week 2?", "context": "CREATE TABLE table_name_11 (week_2 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_3 FROM table_name_11 WHERE week_2 = \"heather christensen\"", "question": "When Heather Christensen was featured in Week 2, who was the cyber girl for Week 3?", "context": "CREATE TABLE table_name_11 (week_3 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_36 WHERE week_2 = \"audra lynn\"", "question": "When Audra Lynn was featured in Week 2, who was the cyber girl for Week 5?", "context": "CREATE TABLE table_name_36 (week_5 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_48 WHERE team_1 = \"tirana\"", "question": "What is Agg., when Team 1 is \"Tirana\"?", "context": "CREATE TABLE table_name_48 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_57 WHERE team_2 = \"dunaferr\"", "question": "What is 2nd Leg, when Team 2 is \"Dunaferr\"?", "context": "CREATE TABLE table_name_57 (team_2 VARCHAR)"}, {"answer": "SELECT elimination FROM table_name_74 WHERE time = \"13:43\"", "question": "What is the elimination number for the time 13:43?", "context": "CREATE TABLE table_name_74 (elimination VARCHAR, time VARCHAR)"}, {"answer": "SELECT elimination FROM table_name_87 WHERE eliminated_by = \"sonjay dutt\"", "question": "What Elimination number is listed againt Eliminated by Sonjay Dutt?", "context": "CREATE TABLE table_name_87 (elimination VARCHAR, eliminated_by VARCHAR)"}, {"answer": "SELECT elimination FROM table_name_2 WHERE eliminated_by = \"sonjay dutt\"", "question": "What Elimination number is listed againt Eliminated by Sonjay Dutt?", "context": "CREATE TABLE table_name_2 (elimination VARCHAR, eliminated_by VARCHAR)"}, {"answer": "SELECT time FROM table_name_15 WHERE wrestler = \"jimmy rave\"", "question": "What time is listed against the Wrestler Jimmy Rave?", "context": "CREATE TABLE table_name_15 (time VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT wrestler FROM table_name_63 WHERE elimination = \"5\"", "question": "Which Wrestler has an Elimination of 5?", "context": "CREATE TABLE table_name_63 (wrestler VARCHAR, elimination VARCHAR)"}, {"answer": "SELECT time FROM table_name_21 WHERE elimination = \"2\"", "question": "What time is listed against Elimination number 2?", "context": "CREATE TABLE table_name_21 (time VARCHAR, elimination VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE place = \"2\"", "question": "What score has 2 as the place?", "context": "CREATE TABLE table_name_78 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(money___) AS \u00a3__ FROM table_name_8 WHERE to_par = \"+8\" AND score = 73 - 72 - 72 - 71 = 288", "question": "What is the average money (\u00a3) that has +8 as the to par, with 73-72-72-71=288 as the score?", "context": "CREATE TABLE table_name_8 (money___ INTEGER, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_2 WHERE place = \"t6\" AND player = \"seve ballesteros\"", "question": "What country has t6 as the place, with seve ballesteros as the player?", "context": "CREATE TABLE table_name_2 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_64 WHERE champion = \"john mcenroe\"", "question": "What year weas John McEnroe the champion?", "context": "CREATE TABLE table_name_64 (year INTEGER, champion VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_66 WHERE champion = \"bj\u00f6rn borg\" AND year > 1978", "question": "Who was the runner-up, when the champion was Bj\u00f6rn Borg after 1978?", "context": "CREATE TABLE table_name_66 (runner_up VARCHAR, champion VARCHAR, year VARCHAR)"}, {"answer": "SELECT champion FROM table_name_90 WHERE runner_up = \"jimmy connors\" AND year < 1978", "question": "Who was the champion earlier than 1978 when the runner-up was Jimmy Connors?", "context": "CREATE TABLE table_name_90 (champion VARCHAR, runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT municipality FROM table_name_84 WHERE code = 2401", "question": "Which municipality has the code 2401?", "context": "CREATE TABLE table_name_84 (municipality VARCHAR, code VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_name_62 WHERE county = \"stockholm county\" AND municipality = \"danderyd municipality\" AND code < 162", "question": "What is the population of Danderyd municipality in Stockholm County with a code lower than 162?", "context": "CREATE TABLE table_name_62 (population VARCHAR, code VARCHAR, county VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT total_area FROM table_name_53 WHERE code < 1862 AND density__per_km_2_land_ = 21.6", "question": "What is the total area for a code less than 1862 and a density (per km 2 land) of 21.6?", "context": "CREATE TABLE table_name_53 (total_area VARCHAR, code VARCHAR, density__per_km_2_land_ VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_45 WHERE to_par = \"e\"", "question": "what total was the lowest and had a to par of e?", "context": "CREATE TABLE table_name_45 (total INTEGER, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_85 WHERE country = \"united states\" AND total = 144", "question": "Which player played in the united states and scored a total of 144 points?", "context": "CREATE TABLE table_name_85 (player VARCHAR, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT trailing_party % votes FROM table_name_74 WHERE party_won = \"bharatiya janta party\" AND trailing_party = \"indian national congress\"", "question": "What is Trailing Party % Votes, when Party Won is \"Bharatiya Janta Party\", and when Trailing Party is \"Indian National Congress\"?", "context": "CREATE TABLE table_name_74 (trailing_party VARCHAR, votes VARCHAR, party_won VARCHAR)"}, {"answer": "SELECT members_of_parliament FROM table_name_97 WHERE trailing_party = \"bharatiya lok dal\"", "question": "What is Members of Parliament, when Trailing Party is \"Bharatiya Lok Dal\"?", "context": "CREATE TABLE table_name_97 (members_of_parliament VARCHAR, trailing_party VARCHAR)"}, {"answer": "SELECT trailing_party FROM table_name_74 WHERE party_won = \"janata dal\" AND year = 1996", "question": "What is Trailing Party, when Party Won is \"Janata Dal\", and when Year is \"1996\"?", "context": "CREATE TABLE table_name_74 (trailing_party VARCHAR, party_won VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_53 WHERE lok_sabha = \"4th lok sabha\"", "question": "What is the lowest Year, when Lok Sabha is \"4th Lok Sabha\"?", "context": "CREATE TABLE table_name_53 (year INTEGER, lok_sabha VARCHAR)"}, {"answer": "SELECT player FROM table_name_96 WHERE score = 68", "question": "Who scored a 68?", "context": "CREATE TABLE table_name_96 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_91 WHERE rider = \"ryuichi kiyonari\"", "question": "How many  Grid has a Rider of ryuichi kiyonari?", "context": "CREATE TABLE table_name_91 (grid INTEGER, rider VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_24 WHERE bike = \"ducati 1098 rs 08\" AND rider = \"max biaggi\"", "question": "Name the lowest Grid which has a Bike of ducati 1098 rs 08 and a Rider of max biaggi?", "context": "CREATE TABLE table_name_24 (grid INTEGER, bike VARCHAR, rider VARCHAR)"}, {"answer": "SELECT rider FROM table_name_33 WHERE time = \"+59.304\"", "question": "Name the Rider which has a Time of +59.304?", "context": "CREATE TABLE table_name_33 (rider VARCHAR, time VARCHAR)"}, {"answer": "SELECT rider FROM table_name_98 WHERE laps < 11 AND bike = \"kawasaki zx-10r\" AND grid = 8", "question": "Name the Rider which has Laps smaller than 11 and a Bike of kawasaki zx-10r, and a Grid of 8?", "context": "CREATE TABLE table_name_98 (rider VARCHAR, grid VARCHAR, laps VARCHAR, bike VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_1 WHERE player = \"karrie webb\"", "question": "What is the total for player karrie webb?", "context": "CREATE TABLE table_name_1 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_75 WHERE total > 157", "question": "What years did the player with a total larger than 157 have wins?", "context": "CREATE TABLE table_name_75 (year_s__won VARCHAR, total INTEGER)"}, {"answer": "SELECT SUM(to_par) FROM table_name_52 WHERE player = \"meg mallon\" AND total > 157", "question": "What is the sum of the to par of player meg mallon, who had a total greater than 157?", "context": "CREATE TABLE table_name_52 (to_par INTEGER, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_71 WHERE to_par = 7", "question": "What is the highest total of the player with a 7 to par?", "context": "CREATE TABLE table_name_71 (total INTEGER, to_par VARCHAR)"}, {"answer": "SELECT assists FROM table_name_4 WHERE player = \"steve walker\"", "question": "How many assists did Steve Walker have?", "context": "CREATE TABLE table_name_4 (assists VARCHAR, player VARCHAR)"}, {"answer": "SELECT goals FROM table_name_84 WHERE assists = \"33\" AND games = \"85\"", "question": "How many goals did the player score who had 33 assists in 85 games?", "context": "CREATE TABLE table_name_84 (goals VARCHAR, assists VARCHAR, games VARCHAR)"}, {"answer": "SELECT points FROM table_name_79 WHERE player = \"denis pederson\"", "question": "How many points did Denis Pederson have?", "context": "CREATE TABLE table_name_79 (points VARCHAR, player VARCHAR)"}, {"answer": "SELECT xenon FROM table_name_29 WHERE helium = \"5.1\"", "question": "Which Xenon has a Helium of 5.1?", "context": "CREATE TABLE table_name_29 (xenon VARCHAR, helium VARCHAR)"}, {"answer": "SELECT neon FROM table_name_95 WHERE argon = \"\u2212189.6\"", "question": "Which Neon has a Argon of \u2212189.6?", "context": "CREATE TABLE table_name_95 (neon VARCHAR, argon VARCHAR)"}, {"answer": "SELECT physical_property FROM table_name_13 WHERE helium = \"0.0693\"", "question": "Which Physical property has a Helium of 0.0693?", "context": "CREATE TABLE table_name_13 (physical_property VARCHAR, helium VARCHAR)"}, {"answer": "SELECT argon FROM table_name_56 WHERE neon = \"0.484\"", "question": "Name the Argon which has a Neon of 0.484?", "context": "CREATE TABLE table_name_56 (argon VARCHAR, neon VARCHAR)"}, {"answer": "SELECT krypton FROM table_name_36 WHERE physical_property = \"critical pressure (atm)\"", "question": "Which Krypton has a Physical property of critical pressure (atm)?", "context": "CREATE TABLE table_name_36 (krypton VARCHAR, physical_property VARCHAR)"}, {"answer": "SELECT helium FROM table_name_54 WHERE argon = \"\u2212189.6\"", "question": "which Helium has a Argon of \u2212189.6?", "context": "CREATE TABLE table_name_54 (helium VARCHAR, argon VARCHAR)"}, {"answer": "SELECT venue FROM table_name_46 WHERE opposing_teams = \"south africa\" AND date = \"17/06/2000\"", "question": "What is Venue, when Opposing Teams is \"South Africa\", and when Date is \"17/06/2000\"?", "context": "CREATE TABLE table_name_46 (venue VARCHAR, opposing_teams VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_11 WHERE opposing_teams = \"south africa\" AND status = \"first test\"", "question": "What is the sum of Against, when Opposing Teams is \"South Africa\", and when Status is \"First Test\"?", "context": "CREATE TABLE table_name_11 (against INTEGER, opposing_teams VARCHAR, status VARCHAR)"}, {"answer": "SELECT opposing_teams FROM table_name_96 WHERE status = \"test match\" AND date = \"25/11/2000\"", "question": "What is Opposing Teams, when Status is \"Test Match\", and when Date is \"25/11/2000\"?", "context": "CREATE TABLE table_name_96 (opposing_teams VARCHAR, status VARCHAR, date VARCHAR)"}, {"answer": "SELECT against FROM table_name_55 WHERE venue = \"twickenham , london\" AND date = \"04/03/2000\"", "question": "What is Against, when Venue is \"Twickenham , London\", and when Date is \"04/03/2000\"?", "context": "CREATE TABLE table_name_55 (against VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT status FROM table_name_63 WHERE venue = \"stadio flaminio , rome\"", "question": "What is the Statue, when Venue is \"Stadio Flaminio , Rome\"?", "context": "CREATE TABLE table_name_63 (status VARCHAR, venue VARCHAR)"}, {"answer": "SELECT h___a FROM table_name_50 WHERE date = \"24 january 2009\"", "question": "What is the H/A of the game on 24 january 2009?", "context": "CREATE TABLE table_name_50 (h___a VARCHAR, date VARCHAR)"}, {"answer": "SELECT year FROM table_name_90 WHERE rank_final = \"6\"", "question": "What year was the rank final of 6?", "context": "CREATE TABLE table_name_90 (year VARCHAR, rank_final VARCHAR)"}, {"answer": "SELECT rank_final FROM table_name_41 WHERE year < 2007", "question": "What was the rank final before 2007?", "context": "CREATE TABLE table_name_41 (rank_final VARCHAR, year INTEGER)"}, {"answer": "SELECT district FROM table_name_8 WHERE incumbent = \"richard neal\"", "question": "What is District, when Incumbent is \"Richard Neal\"?", "context": "CREATE TABLE table_name_8 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_name_40 WHERE district = \"massachusetts 10\"", "question": "What is the lowest First Elected, when District is \"Massachusetts 10\"?", "context": "CREATE TABLE table_name_40 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT AVG(first_elected) FROM table_name_49 WHERE district = \"massachusetts 3\"", "question": "What is the average First Elected, when District is \"Massachusetts 3\"?", "context": "CREATE TABLE table_name_49 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT lost FROM table_name_35 WHERE tries_against = \"30\"", "question": "What team lost with 30 tries against?", "context": "CREATE TABLE table_name_35 (lost VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT lost FROM table_name_73 WHERE points_for = \"142\"", "question": "Who lost with 142 points for?", "context": "CREATE TABLE table_name_73 (lost VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_83 WHERE tries_for = \"67\"", "question": "How many tries against for the team with 67 tries for?", "context": "CREATE TABLE table_name_83 (tries_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT club FROM table_name_79 WHERE tries_for = \"101\"", "question": "Which club has 101 tries for?", "context": "CREATE TABLE table_name_79 (club VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_16 WHERE tries_for = \"67\"", "question": "What is the try bonus for the team with 67 tries for?", "context": "CREATE TABLE table_name_16 (try_bonus VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT lost FROM table_name_5 WHERE tries_against = \"77\"", "question": "What is the team that lost with 77 tries against?", "context": "CREATE TABLE table_name_5 (lost VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT AVG(fighting_spirit) FROM table_name_55 WHERE name = \"tsurugamine\" AND technique < 10", "question": "Which Fighting Spirit has a Name of tsurugamine, and a Technique smaller than 10?", "context": "CREATE TABLE table_name_55 (fighting_spirit INTEGER, name VARCHAR, technique VARCHAR)"}, {"answer": "SELECT COUNT(technique) FROM table_name_89 WHERE highest_rank = \"yokozuna\" AND total > 11", "question": "How much Technique has the Highest rank of yokozuna, and a Total larger than 11?", "context": "CREATE TABLE table_name_89 (technique VARCHAR, highest_rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(fighting_spirit) FROM table_name_25 WHERE total = 13 AND technique < 1", "question": "How much Fighting Spirit has a Total of 13, and a Technique smaller than 1?", "context": "CREATE TABLE table_name_25 (fighting_spirit INTEGER, total VARCHAR, technique VARCHAR)"}, {"answer": "SELECT years FROM table_name_31 WHERE name = \"asashio\"", "question": "What are asashio's years?", "context": "CREATE TABLE table_name_31 (years VARCHAR, name VARCHAR)"}, {"answer": "SELECT county FROM table_name_88 WHERE precincts = \"33/33\"", "question": "Which County has a Precincts of 33/33?", "context": "CREATE TABLE table_name_88 (county VARCHAR, precincts VARCHAR)"}, {"answer": "SELECT t_wyka FROM table_name_1 WHERE precincts = \"51/55\"", "question": "Name the T. Wyka has a Precincts of 51/55?", "context": "CREATE TABLE table_name_1 (t_wyka VARCHAR, precincts VARCHAR)"}, {"answer": "SELECT precincts FROM table_name_88 WHERE g_hager = \"2,260 (15%)\"", "question": "Which Precincts has a G. Hager of 2,260 (15%)?", "context": "CREATE TABLE table_name_88 (precincts VARCHAR, g_hager VARCHAR)"}, {"answer": "SELECT g_hager FROM table_name_49 WHERE e_greenberg = \"266 (14%)\"", "question": "Name the G. Hager of E. Greenberg of 266 (14%)?", "context": "CREATE TABLE table_name_49 (g_hager VARCHAR, e_greenberg VARCHAR)"}, {"answer": "SELECT precincts FROM table_name_86 WHERE county = \"passaic\"", "question": "Which Precincts has a County of passaic?", "context": "CREATE TABLE table_name_86 (precincts VARCHAR, county VARCHAR)"}, {"answer": "SELECT e_greenberg FROM table_name_34 WHERE t_wyka = \"10,793 (70%)\"", "question": "Which E. Greenberg has a T. Wyka of 10,793 (70%)?", "context": "CREATE TABLE table_name_34 (e_greenberg VARCHAR, t_wyka VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE finish = \"t41\" AND country = \"england\"", "question": "Which player from England finished in T41?", "context": "CREATE TABLE table_name_43 (player VARCHAR, finish VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_78 WHERE year_s__won = \"1998\"", "question": "From which country is the player that won in 1998?", "context": "CREATE TABLE table_name_78 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT total FROM table_name_57 WHERE year_s__won = \"1997\"", "question": "In 1997, what was the final total?", "context": "CREATE TABLE table_name_57 (total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_14 WHERE player = \"justin leonard\"", "question": "What was the To Par score for player Justin Leonard?", "context": "CREATE TABLE table_name_14 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT points FROM table_name_30 WHERE games = \"348\"", "question": "How many points were scored by the player who played 348 games?", "context": "CREATE TABLE table_name_30 (points VARCHAR, games VARCHAR)"}, {"answer": "SELECT points FROM table_name_86 WHERE games = \"363\"", "question": "How many points were scored by the player who played 363 games?", "context": "CREATE TABLE table_name_86 (points VARCHAR, games VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_49 WHERE manner_of_departure = \"end of contract\" AND date_of_appointment = \"dec. 16, 2008\"", "question": "What kind of Replaced has a Manner of departure of end of contract on dec. 16, 2008?", "context": "CREATE TABLE table_name_49 (replaced_by VARCHAR, manner_of_departure VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_95 WHERE outgoing_manager = \"guillermo sanguinetti\"", "question": "What kind of Replaced has a Outgoing manager of guillermo sanguinetti?", "context": "CREATE TABLE table_name_95 (replaced_by VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_71 WHERE team = \"gimnasia y esgrima (lp)\"", "question": "What kind of Replaced has a Team of gimnasia y esgrima (lp)?", "context": "CREATE TABLE table_name_71 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_75 WHERE position_in_table = \"15th (c)\"", "question": "Which Team has a Position in table of 15th (c)?", "context": "CREATE TABLE table_name_75 (team VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT team FROM table_name_55 WHERE position_in_table = \"15th (a)\" AND outgoing_manager = \"claudio borghi\"", "question": "Which Team that has a Position in table of 15th (a) and a Outgoing manager of claudio borghi?", "context": "CREATE TABLE table_name_55 (team VARCHAR, position_in_table VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT team FROM table_name_14 WHERE date_of_appointment = \"sep. 20, 2008\"", "question": "Which Team has a Date of appointment on sep. 20, 2008?", "context": "CREATE TABLE table_name_14 (team VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_59 WHERE position < 6 AND wins > 11 AND points = 36 AND played > 30", "question": "What was the highest number of losses for a position less than 6, with more than 11 wins and 36 points, with a played entry of more than 30?", "context": "CREATE TABLE table_name_59 (losses INTEGER, played VARCHAR, points VARCHAR, position VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_51 WHERE goals_against < 49 AND draws = 9 AND goals_for = 39 AND points < 31", "question": "What is the total number of wins for the entry that has fewer than 49 goals against, 39 goals for, 9 draws, and fewer than 31 points?", "context": "CREATE TABLE table_name_51 (wins VARCHAR, points VARCHAR, goals_for VARCHAR, goals_against VARCHAR, draws VARCHAR)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_99 WHERE losses > 12 AND wins > 10 AND points < 29 AND draws > 3", "question": "What is the average number of goals for entries with more than 12 losses, more than 10 wins, more than 3 draws, and fewer than 29 points?", "context": "CREATE TABLE table_name_99 (goals_for INTEGER, draws VARCHAR, points VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_82 WHERE draws > 4 AND club = \"cd orense\" AND points > 36", "question": "What is the highest number of wins for club Cd Orense, with points greater than 36 and more than 4 draws?", "context": "CREATE TABLE table_name_82 (wins INTEGER, points VARCHAR, draws VARCHAR, club VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_65 WHERE position < 1", "question": "What is the total number of played for the entry with a position of less than 1?", "context": "CREATE TABLE table_name_65 (played INTEGER, position INTEGER)"}, {"answer": "SELECT record FROM table_name_99 WHERE time = \"3:53\"", "question": "For the match that lasted 3:53 minutes, what was the final record?", "context": "CREATE TABLE table_name_99 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_18 WHERE event = \"ufc 154\"", "question": "Where was the UFC 154 match held?", "context": "CREATE TABLE table_name_18 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_40 WHERE team_1 = \"rc cannes\"", "question": "What is the 1st leg that has a Rc Cannes Team 1?", "context": "CREATE TABLE table_name_40 (team_1 VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_45 WHERE points > 40 AND wins = 16 AND loses < 3", "question": "What is the lowest positioned club with points greater than 40, 16 wins and losses less than 3?", "context": "CREATE TABLE table_name_45 (position INTEGER, loses VARCHAR, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_84 WHERE wins = 2 AND loses > 13", "question": "What is the lowest positioned team with 2 wins and losses greater than 13?", "context": "CREATE TABLE table_name_84 (position INTEGER, wins VARCHAR, loses VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_88 WHERE goals_conceded < 26 AND draws = 1 AND goals_scored < 74", "question": "What is the smallest number of wins where goals conceded are below 26, draws are 1 and goals scored are below 74?", "context": "CREATE TABLE table_name_88 (wins INTEGER, goals_scored VARCHAR, goals_conceded VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_60 WHERE points < 25 AND goals_scored = 22 AND club = \"minija kretinga\" AND goals_conceded < 39", "question": "For the club Minija Kretinga, what's the lowest number of wins with points smaller than 25, goals at 22 and goals conceded below 39?", "context": "CREATE TABLE table_name_60 (wins INTEGER, goals_conceded VARCHAR, club VARCHAR, points VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT place FROM table_name_50 WHERE silver = \"valeri postoianov ( urs )\" AND year > 1969 AND bronze = \"alexander gazov ( urs )\"", "question": "In which Place was the Silver won by valeri postoianov ( urs ) later than 1969 and the Bronze won by alexander gazov ( urs )?", "context": "CREATE TABLE table_name_50 (place VARCHAR, bronze VARCHAR, silver VARCHAR, year VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_59 WHERE place = \"melbourne\"", "question": "Who won the Bronze at Melbourne?", "context": "CREATE TABLE table_name_59 (bronze VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_3 WHERE silver = \"vladimir vesselov ( urs )\"", "question": "In what Place was the Silver won by vladimir vesselov ( urs )?", "context": "CREATE TABLE table_name_3 (place VARCHAR, silver VARCHAR)"}, {"answer": "SELECT award FROM table_name_66 WHERE result = \"nominated\" AND film = \"sankranthi\"", "question": "What is Award, when Result is \"Nominated\", and when Film is \"Sankranthi\"?", "context": "CREATE TABLE table_name_66 (award VARCHAR, result VARCHAR, film VARCHAR)"}, {"answer": "SELECT award FROM table_name_35 WHERE category = \"best actor\" AND year < 1988", "question": "What is Award, when Category is \"Best Actor\", and when Year is less than 1988?", "context": "CREATE TABLE table_name_35 (award VARCHAR, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_18 WHERE award = \"vamsi berkley award\" AND category = \"best actor\"", "question": "What is the total number of Year, when Award is \"Vamsi Berkley Award\", and when Category is \"Best Actor\"?", "context": "CREATE TABLE table_name_18 (year VARCHAR, award VARCHAR, category VARCHAR)"}, {"answer": "SELECT result FROM table_name_87 WHERE film = \"dharma chakram\" AND award = \"nandi award for best actor\"", "question": "What is Result, when Film is \"Dharma Chakram\", and when Award is \"Nandi Award for Best Actor\"?", "context": "CREATE TABLE table_name_87 (result VARCHAR, film VARCHAR, award VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_11 WHERE date = \"dec 8\"", "question": "What is Opponent, when Date is \"Dec 8\"?", "context": "CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE date = \"nov 28\"", "question": "What is Score, when Date is \"Nov 28\"?", "context": "CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE score = \"80-79\"", "question": "What is Date, when Score is \"80-79\"?", "context": "CREATE TABLE table_name_8 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT record FROM table_name_11 WHERE opponent = \"new york knicks\"", "question": "What is Record, when Opponent is \"New York Knicks\"?", "context": "CREATE TABLE table_name_11 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE opponent = \"@ new york knicks\"", "question": "What is Score, when Opponent is \"@ New York Knicks\"?", "context": "CREATE TABLE table_name_9 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_19 WHERE opponent = \"rochester royals\"", "question": "What is Result, when Opponent is \"Rochester Royals\"?", "context": "CREATE TABLE table_name_19 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_59 WHERE venue = \"strathclyde homes stadium\"", "question": "What was the Result at Strathclyde Homes Stadium?", "context": "CREATE TABLE table_name_59 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE country = \"spain\"", "question": "Name the Score of spain?", "context": "CREATE TABLE table_name_99 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_20 WHERE to_par = \"\u22122\"", "question": "Which Country has a To par of \u22122? Question 2", "context": "CREATE TABLE table_name_20 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT place FROM table_name_1 WHERE to_par = \"\u22121\" AND player = \"don pooley\"", "question": "Which Place has a To par of \u22121 and don pooley?", "context": "CREATE TABLE table_name_1 (place VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT result FROM table_name_24 WHERE week = 15", "question": "What is week 15's result?", "context": "CREATE TABLE table_name_24 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_31 WHERE opponent = \"cleveland browns\"", "question": "What week did Cleveland Browns played?", "context": "CREATE TABLE table_name_31 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_43 WHERE name = \"grella\"", "question": "What is the Highest Goals for Grella?", "context": "CREATE TABLE table_name_43 (goals INTEGER, name VARCHAR)"}, {"answer": "SELECT notes FROM table_name_67 WHERE name = \"grella\"", "question": "What is in the Notes for Player Name Grella?", "context": "CREATE TABLE table_name_67 (notes VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_24 WHERE round > 5 AND player = \"matthew tassone\"", "question": "Who position did matthew tassone who was drafted after round 5 play?", "context": "CREATE TABLE table_name_24 (position VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(_percentage_hydropower) FROM table_name_80 WHERE _percentage_oil < 24.5 AND country = \"united arab emirates\" AND _percentage_nuclear_power < 0", "question": "what is the highest % hydropower when the % oil is less than 24.5, country is united arab emirates and the % nuclear power is 0?", "context": "CREATE TABLE table_name_80 (_percentage_hydropower INTEGER, _percentage_nuclear_power VARCHAR, _percentage_oil VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(_percentage_hydropower) FROM table_name_59 WHERE _percentage_coal = 4.9 AND _percentage_nuclear_power > 0", "question": "what is the highest % hydropower when % coal is 4.9 and % nuclear power is more than 0?", "context": "CREATE TABLE table_name_59 (_percentage_hydropower INTEGER, _percentage_coal VARCHAR, _percentage_nuclear_power VARCHAR)"}, {"answer": "SELECT MAX(electricity_production__kw_h), _billion_ FROM table_name_19 WHERE _percentage_other_renewable = 0.4 AND _percentage_coal = 0 AND _percentage_hydropower > 99", "question": "what is the highest electricity production (kw/h, billion) when the % other renewable is 0.4, % coal is 0 and % hydropower is more than 99?", "context": "CREATE TABLE table_name_19 (_billion_ VARCHAR, electricity_production__kw_h INTEGER, _percentage_hydropower VARCHAR, _percentage_other_renewable VARCHAR, _percentage_coal VARCHAR)"}, {"answer": "SELECT player FROM table_name_94 WHERE round = 6", "question": "Who is the player in round 6?", "context": "CREATE TABLE table_name_94 (player VARCHAR, round VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_66 WHERE player = \"louis leblanc\"", "question": "What college did Louis LeBlanc attend?", "context": "CREATE TABLE table_name_66 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(goals_against) FROM table_name_41 WHERE goals_for > 52 AND losses < 10", "question": "How many goals against total did the team with more than 52 goals and fewer than 10 losses have?", "context": "CREATE TABLE table_name_41 (goals_against INTEGER, goals_for VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_14 WHERE club = \"levante ud\" AND goal_difference < 6", "question": "What was the low number of draws for Levante Ud when their goal difference was smaller than 6?", "context": "CREATE TABLE table_name_14 (draws INTEGER, club VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_80 WHERE draws < 0", "question": "What is the average entry in the against column with draws smaller than 0?", "context": "CREATE TABLE table_name_80 (against INTEGER, draws INTEGER)"}, {"answer": "SELECT SUM(losses) FROM table_name_75 WHERE portland_dfl = \"westerns\" AND draws > 1", "question": "What is the total number of losses that has draws larger than 1 and a Portland DFL of westerns?", "context": "CREATE TABLE table_name_75 (losses INTEGER, portland_dfl VARCHAR, draws VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_94 WHERE byes > 0", "question": "What is the sum of draws for all byes larger than 0?", "context": "CREATE TABLE table_name_94 (draws INTEGER, byes INTEGER)"}, {"answer": "SELECT SUM(byes) FROM table_name_11 WHERE portland_dfl = \"westerns\" AND losses > 14", "question": "What is the sum of byes for losses larger than 14 for a Portland DFL of westerns?", "context": "CREATE TABLE table_name_11 (byes INTEGER, portland_dfl VARCHAR, losses VARCHAR)"}, {"answer": "SELECT result FROM table_name_85 WHERE opponent_number = \"at 2 usc\"", "question": "What was the result when the opponent was at 2 usc?", "context": "CREATE TABLE table_name_85 (result VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT result FROM table_name_52 WHERE date = \"10/08/1988\"", "question": "What was the result on 10/08/1988?", "context": "CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank__number FROM table_name_53 WHERE result = \"w42-14\"", "question": "What was the rank# of the opponent when the result of the game was w42-14?", "context": "CREATE TABLE table_name_53 (rank__number VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_15 WHERE attendance = \"56,500\"", "question": "What was the result of the game that had 56,500 in attendance?", "context": "CREATE TABLE table_name_15 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT rank__number FROM table_name_57 WHERE attendance = \"93,829\"", "question": "What was the rank# of the opponent when there was 93,829 in attendance?", "context": "CREATE TABLE table_name_57 (rank__number VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE rank__number = \"5\" AND opponent_number = \"stanford\"", "question": "On what date was the game played where the opponent was Stanford, ranked #5?", "context": "CREATE TABLE table_name_24 (date VARCHAR, rank__number VARCHAR, opponent_number VARCHAR)"}, {"answer": "SELECT number_of_electorates__2009_ FROM table_name_21 WHERE reserved_for___sc___st__none_ = \"total:\"", "question": "Which Number of electorates (2009) has a Reserved for (SC / ST /None) of total:?", "context": "CREATE TABLE table_name_21 (number_of_electorates__2009_ VARCHAR, reserved_for___sc___st__none_ VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_37 WHERE year > 1973", "question": "What tournament took place after 1973?", "context": "CREATE TABLE table_name_37 (tournament VARCHAR, year INTEGER)"}, {"answer": "SELECT tournament FROM table_name_14 WHERE extra = \"200 m\" AND year < 1972", "question": "What tournament took place before 1972 with an extra of 200 m?", "context": "CREATE TABLE table_name_14 (tournament VARCHAR, extra VARCHAR, year VARCHAR)"}, {"answer": "SELECT current_code FROM table_name_20 WHERE type = \"club trophy\" AND years = \"1867 only\"", "question": "What is the current code for the club trophy, in 1867 only?", "context": "CREATE TABLE table_name_20 (current_code VARCHAR, type VARCHAR, years VARCHAR)"}, {"answer": "SELECT location FROM table_name_64 WHERE original_code = \"victorian rules\"", "question": "What is the location of the original code for victorian rules?", "context": "CREATE TABLE table_name_64 (location VARCHAR, original_code VARCHAR)"}, {"answer": "SELECT location FROM table_name_69 WHERE type = \"club trophy\"", "question": "What is the location for the club trophy?", "context": "CREATE TABLE table_name_69 (location VARCHAR, type VARCHAR)"}, {"answer": "SELECT location FROM table_name_52 WHERE type = \"club trophy\" AND years = \"1867 only\"", "question": "What is the location for the club trophy from the year 1867 only?", "context": "CREATE TABLE table_name_52 (location VARCHAR, type VARCHAR, years VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE tournament = \"tampere , finland\"", "question": "What is Score, when Tournament is \"Tampere , Finland\"?", "context": "CREATE TABLE table_name_24 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_31 WHERE opponent = \"ji\u0159\u00ed van\u011bk\"", "question": "What is Surface, when Opponent is \"Ji\u0159\u00ed Van\u011bk\"?", "context": "CREATE TABLE table_name_31 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE opponent = \"ivo min\u00e1\u0159\"", "question": "What is Score, when Opponent is \"Ivo Min\u00e1\u0159\"?", "context": "CREATE TABLE table_name_52 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE opponent = \"daniel gimeno-traver\"", "question": "What is Score, when Opponent is \"Daniel Gimeno-Traver\"?", "context": "CREATE TABLE table_name_38 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_50 WHERE moves = 37 AND result = \"\u00bd\u2013\u00bd\"", "question": "What is Tournament, when Moves is \"37\", and when Result is \"\u00bd\u2013\u00bd\"?", "context": "CREATE TABLE table_name_50 (tournament VARCHAR, moves VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_77 WHERE year > 1999 AND white = \"kramnik\" AND tournament = \"mainz cc champions duel (5)\"", "question": "What is Result, when Year is greater than 1999, when White is \"Kramnik\", and when Tournament is \"Mainz CC Champions Duel (5)\"?", "context": "CREATE TABLE table_name_77 (result VARCHAR, tournament VARCHAR, year VARCHAR, white VARCHAR)"}, {"answer": "SELECT opening FROM table_name_77 WHERE white = \"kramnik\" AND year < 2001 AND tournament = \"siemens giants\"", "question": "What is Opening, when White is Kramnik, when Year is less than 2001, and when Tournament is \"Siemens Giants\"?", "context": "CREATE TABLE table_name_77 (opening VARCHAR, tournament VARCHAR, white VARCHAR, year VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_46 WHERE black = \"kramnik\" AND result = \"\u00bd\u2013\u00bd\" AND moves = 40", "question": "What is Tournament, when Black is \"Kramnik\", when Result is \"\u00bd\u2013\u00bd\", and when Moves is \"40\"?", "context": "CREATE TABLE table_name_46 (tournament VARCHAR, moves VARCHAR, black VARCHAR, result VARCHAR)"}, {"answer": "SELECT location FROM table_name_9 WHERE opponent = \"jae young kim\"", "question": "What was the location where the opponent was Jae Young Kim?", "context": "CREATE TABLE table_name_9 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_46 WHERE opponent = \"jose carlos oliveira\"", "question": "Which event was the opponent jose carlos oliveira?", "context": "CREATE TABLE table_name_46 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_87 WHERE opponent = \"bobby rehman\"", "question": "How many rounds was the bout against bobby rehman?", "context": "CREATE TABLE table_name_87 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_89 WHERE record = \"12-5\"", "question": "Where was the location when the record was 12-5?", "context": "CREATE TABLE table_name_89 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT dvd_title FROM table_name_57 WHERE region_1 = \"n/a\" AND no_of_discs > 3", "question": "Which DVD Title has a Region 1 of n/a and greater than 3 in No. of Discs?", "context": "CREATE TABLE table_name_57 (dvd_title VARCHAR, region_1 VARCHAR, no_of_discs VARCHAR)"}, {"answer": "SELECT region_1 FROM table_name_83 WHERE no_of_episodes = 12 AND region_2 = \"18 august 2008\"", "question": "Which region 1 has 12 Episodes and a Region 2 of 18 August 2008?", "context": "CREATE TABLE table_name_83 (region_1 VARCHAR, no_of_episodes VARCHAR, region_2 VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_14 WHERE tries_against = \"140\"", "question": "WHAT TRIES HAVE TRIES AGAINST AT 140?", "context": "CREATE TABLE table_name_14 (tries_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_1 WHERE played = \"22\" AND points_against = \"784\"", "question": "WHAT IS THE TRIES AGAINST WITH PLAYED 22, POINTS AGAINST 784?", "context": "CREATE TABLE table_name_1 (tries_against VARCHAR, played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_36 WHERE points_for = \"190\"", "question": "WHAT IS THE TRIES WITH POINTS 190?", "context": "CREATE TABLE table_name_36 (tries_for VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT points FROM table_name_89 WHERE tries_for = \"55\"", "question": "WHAT IS THE POINTS WITH 55 TRIES?", "context": "CREATE TABLE table_name_89 (points VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT lost FROM table_name_32 WHERE losing_bonus = \"1\" AND points_for = \"148\"", "question": "WHAT IS THE LOST WITH 1 LOSING BONUS, 148 POINTS?", "context": "CREATE TABLE table_name_32 (lost VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_31 WHERE points_for = \"190\"", "question": "WHAT IS THE LOSING BONUS WITH 190 POINTS?", "context": "CREATE TABLE table_name_31 (losing_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_99 WHERE position = \"guard\"", "question": "What is the sum of the pick of the guard position player?", "context": "CREATE TABLE table_name_99 (pick INTEGER, position VARCHAR)"}, {"answer": "SELECT nfl_club FROM table_name_60 WHERE pick = 153", "question": "What is the NFL club with pick # 153?", "context": "CREATE TABLE table_name_60 (nfl_club VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_58 WHERE round < 13 AND pick = 74", "question": "Who is the player from a round less than 13 and has a pick of 74?", "context": "CREATE TABLE table_name_58 (player VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_47 WHERE round = 13 AND position = \"center\"", "question": "Who is the player from round 13 that plays center?", "context": "CREATE TABLE table_name_47 (player VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT nfl_club FROM table_name_39 WHERE pick < 74 AND round > 2", "question": "What is the NFL club with a pick less than 74 and a round greater than 2?", "context": "CREATE TABLE table_name_39 (nfl_club VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT conference_semifinals FROM table_name_73 WHERE record = \"55\u201327\"", "question": "Which Conference Semifinals has a Record of 55\u201327?", "context": "CREATE TABLE table_name_73 (conference_semifinals VARCHAR, record VARCHAR)"}, {"answer": "SELECT conference_semifinals FROM table_name_57 WHERE conference_finals = \"\u2020 denotes division championship\"", "question": "Which Conference Semifinals has a Conference Finals of \u2020 denotes division championship?", "context": "CREATE TABLE table_name_57 (conference_semifinals VARCHAR, conference_finals VARCHAR)"}, {"answer": "SELECT conference_finals FROM table_name_32 WHERE seed = \"\u2020 denotes division championship\"", "question": "Which Conference Finals has a Seed of \u2020 denotes division championship?", "context": "CREATE TABLE table_name_32 (conference_finals VARCHAR, seed VARCHAR)"}, {"answer": "SELECT rank FROM table_name_43 WHERE publication = \"the observer music monthly\"", "question": "What rank is the publication the observer music monthly?", "context": "CREATE TABLE table_name_43 (rank VARCHAR, publication VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_10 WHERE publication = \"the observer music monthly\"", "question": "What is the publication the observer music monthly highest year?", "context": "CREATE TABLE table_name_10 (year INTEGER, publication VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_71 WHERE venue = \"candlestick park\" AND date = \"december 27\"", "question": "What is the average Attendance, when Venue is \"Candlestick Park\", and when Date is \"December 27\"?", "context": "CREATE TABLE table_name_71 (attendance INTEGER, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_32 WHERE date = \"november 22\"", "question": "What is Result, when Date is \"November 22\"?", "context": "CREATE TABLE table_name_32 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_54 WHERE venue = \"candlestick park\" AND date = \"november 25\"", "question": "What is the average Attendance, when Venue is \"Candlestick Park\", and when Date is \"November 25\"?", "context": "CREATE TABLE table_name_54 (attendance INTEGER, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_55 WHERE silver = \"tatiana ryabkina\" AND gold = \"anne margrethe hausken\"", "question": "What bronze has tatiana ryabkina as the silver, anne margrethe hausken as the gold?", "context": "CREATE TABLE table_name_55 (bronze VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT label FROM table_name_14 WHERE format = \"cd\" AND region = \"australia\"", "question": "What label is in CD format in Australia?", "context": "CREATE TABLE table_name_14 (label VARCHAR, format VARCHAR, region VARCHAR)"}, {"answer": "SELECT label FROM table_name_96 WHERE catalog = \"crg3p-90054\"", "question": "What is the label for catalog number CRG3P-90054?", "context": "CREATE TABLE table_name_96 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_40 WHERE label = \"mca\"", "question": "What is the format for the MCA label?", "context": "CREATE TABLE table_name_40 (format VARCHAR, label VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_33 WHERE label = \"grilled cheese\"", "question": "What is the catalog number for the Grilled Cheese label?", "context": "CREATE TABLE table_name_33 (catalog VARCHAR, label VARCHAR)"}, {"answer": "SELECT region FROM table_name_15 WHERE format = \"cd\" AND label = \"mca\"", "question": "Which region has the format CD and label MCA?", "context": "CREATE TABLE table_name_15 (region VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT format FROM table_name_50 WHERE region = \"united states\" AND date = \"january 12, 2010\" AND label = \"mightier than sword\"", "question": "What is the format for the label Mightier than Sword on January 12, 2010 in the United States?", "context": "CREATE TABLE table_name_50 (format VARCHAR, label VARCHAR, region VARCHAR, date VARCHAR)"}, {"answer": "SELECT station FROM table_name_15 WHERE height_above_sea_level__m_ = \"54m\" AND \"closed\" = \"closed\"", "question": "Which station that sat 54m above seal level is now Closed?", "context": "CREATE TABLE table_name_15 (station VARCHAR, height_above_sea_level__m_ VARCHAR)"}, {"answer": "SELECT closed FROM table_name_6 WHERE opened < 1877 AND distance_from_wellington = \"2.44km\"", "question": "Opened prior to 1877 only 2.44km from Wellington, when did this station close?", "context": "CREATE TABLE table_name_6 (closed VARCHAR, opened VARCHAR, distance_from_wellington VARCHAR)"}, {"answer": "SELECT height_above_sea_level__m_ FROM table_name_2 WHERE opened < 1887 AND distance_from_wellington = \"175.67km\"", "question": "What is the height above sea level for the station opened 175.67km from Wellington prior to 1887?", "context": "CREATE TABLE table_name_2 (height_above_sea_level__m_ VARCHAR, opened VARCHAR, distance_from_wellington VARCHAR)"}, {"answer": "SELECT height_above_sea_level__m_ FROM table_name_22 WHERE opened > 1876 AND distance_from_wellington = \"604.53km\"", "question": "For the station opened after 1876 at 604.53km from Wellington, what is the height above sea level?", "context": "CREATE TABLE table_name_22 (height_above_sea_level__m_ VARCHAR, opened VARCHAR, distance_from_wellington VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_81 WHERE attendance = \"70,012\"", "question": "Who was the opponent at the game attended by 70,012?", "context": "CREATE TABLE table_name_81 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE week > 2 AND result = \"l 16\u201310\"", "question": "What is the date of the post-week 2 game with a result of l 16\u201310?", "context": "CREATE TABLE table_name_58 (date VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_27 WHERE player = \"justin leonard\" AND total < 297", "question": "What is the highest to par number for Justin Leonard when the total is less than 297?", "context": "CREATE TABLE table_name_27 (to_par INTEGER, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT total FROM table_name_99 WHERE finish = \"t44\"", "question": "What is the total when the finish was t44?", "context": "CREATE TABLE table_name_99 (total VARCHAR, finish VARCHAR)"}, {"answer": "SELECT country FROM table_name_79 WHERE total > 293 AND to_par < 17", "question": "What country has a total larger than 293, and a to par less than 17?", "context": "CREATE TABLE table_name_79 (country VARCHAR, total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT agg FROM table_name_48 WHERE team_1 = \"karaorman\"", "question": "When Karaorman is Team 1, what is the Agg.?", "context": "CREATE TABLE table_name_48 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT week_3 FROM table_name_78 WHERE week_6 = \"26.05\"", "question": "What is week 3 when week 6 is 26.05?", "context": "CREATE TABLE table_name_78 (week_3 VARCHAR, week_6 VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_96 WHERE week_2 = \"36.80\" AND week_4 = \"39.75\"", "question": "What is week 5 when week 2 is 36.80, and week 4 is 39.75?", "context": "CREATE TABLE table_name_96 (week_5 VARCHAR, week_2 VARCHAR, week_4 VARCHAR)"}, {"answer": "SELECT week_4 FROM table_name_26 WHERE week_3 = \"35.40\"", "question": "What is week 4 if week 3 is 35.40?", "context": "CREATE TABLE table_name_26 (week_4 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_7 FROM table_name_62 WHERE week_3 = \"35.90\"", "question": "What is week 7 when week 3 is 35.90?", "context": "CREATE TABLE table_name_62 (week_7 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_6 FROM table_name_22 WHERE week_7 = \"evicted\" AND week_4 = \"evicted\" AND week_3 = \"evicted\" AND week_2 = \"29.35\"", "question": "What is week 6 when week 7, week 4, and week 3 are evicted and week 2 29.35?", "context": "CREATE TABLE table_name_22 (week_6 VARCHAR, week_2 VARCHAR, week_3 VARCHAR, week_7 VARCHAR, week_4 VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_3 WHERE week_6 = \"evicted\" AND week_2 = \"34.55\"", "question": "What is week 5 when week 6 is evicted, and week 2 is 34.55?", "context": "CREATE TABLE table_name_3 (week_5 VARCHAR, week_6 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT SUM(purse__) AS \u00a5_ FROM table_name_42 WHERE year > 2012", "question": "How much is the purse worth (\u00a5) after 2012?", "context": "CREATE TABLE table_name_42 (purse__ INTEGER, year INTEGER)"}, {"answer": "SELECT place FROM table_name_72 WHERE score = 67 - 67 = 134", "question": "What place had a score of 67-67=134?", "context": "CREATE TABLE table_name_72 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_52 WHERE place = \"t3\" AND score = 70 - 65 = 135", "question": "What country placed t3 with a score of 70-65=135?", "context": "CREATE TABLE table_name_52 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_71 WHERE country = \"united states\" AND place = \"t6\" AND score = 67 - 69 = 136", "question": "What player placed t6 for the United States with a score of 67-69=136?", "context": "CREATE TABLE table_name_71 (player VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_59 WHERE round = \"group a - match 1\"", "question": "What is Competition, when Round is \"Group A - Match 1\"?", "context": "CREATE TABLE table_name_59 (competition VARCHAR, round VARCHAR)"}, {"answer": "SELECT date_and_time FROM table_name_2 WHERE competition = \"serie a\" AND result = \"0-3\"", "question": "What is Date and Time, when Competition is \"Serie A\", and when Result is \"0-3\"?", "context": "CREATE TABLE table_name_2 (date_and_time VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_1 WHERE round = \"8 a\"", "question": "What is Competition, when Round is \"8 A\"?", "context": "CREATE TABLE table_name_1 (competition VARCHAR, round VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_80 WHERE frequency > 1380", "question": "What is City of License, when Frequency is greater than 1380?", "context": "CREATE TABLE table_name_80 (city_of_license VARCHAR, frequency INTEGER)"}, {"answer": "SELECT brand FROM table_name_68 WHERE frequency = 640", "question": "What is Brand, when Frequency is \"640\"?", "context": "CREATE TABLE table_name_68 (brand VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT AVG(frequency) FROM table_name_87 WHERE type = \"norte\u00f1o\" AND brand = \"la cotorra\"", "question": "What is the average Frequency, when Type is \"Norte\u00f1o\", and when Brand is \"La Cotorra\"?", "context": "CREATE TABLE table_name_87 (frequency INTEGER, type VARCHAR, brand VARCHAR)"}, {"answer": "SELECT type FROM table_name_97 WHERE frequency = 1480", "question": "What is Type, when Frequency is \"1480\"?", "context": "CREATE TABLE table_name_97 (type VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT SUM(frequency) FROM table_name_13 WHERE type = \"christian pop\"", "question": "What is the sum of Frequency, when Type is \"Christian Pop\"?", "context": "CREATE TABLE table_name_13 (frequency INTEGER, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_50 WHERE callsign = \"xetam\"", "question": "What is the Type, when Callsign is \"Xetam\"?", "context": "CREATE TABLE table_name_50 (type VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT chief_judge FROM table_name_42 WHERE appointed_by = \"reagan category:articles with hcards\"", "question": "Which Chief Judge has Appointed by of reagan category:articles with hcards?", "context": "CREATE TABLE table_name_42 (chief_judge VARCHAR, appointed_by VARCHAR)"}, {"answer": "SELECT senior_status FROM table_name_18 WHERE chief_judge = \"\u2014\" AND reason_for_termination = \"death\" AND active_service = \"1967\u20131983\"", "question": "Which Senior status has a Chief Judge of \u2014, a Reason for termination of death, and Active service of 1967\u20131983?", "context": "CREATE TABLE table_name_18 (senior_status VARCHAR, active_service VARCHAR, chief_judge VARCHAR, reason_for_termination VARCHAR)"}, {"answer": "SELECT senior_status FROM table_name_7 WHERE appointed_by = \"l. johnson category:articles with hcards\" AND born_died = \"1918\u20132009\"", "question": "Which Senior status has Appointed by of l. johnson category:articles with hcards, and Born/Died of 1918\u20132009?", "context": "CREATE TABLE table_name_7 (senior_status VARCHAR, appointed_by VARCHAR, born_died VARCHAR)"}, {"answer": "SELECT chief_judge FROM table_name_23 WHERE active_service = \"1873\u20131875\"", "question": "Which Chief Judge has Active service of 1873\u20131875?", "context": "CREATE TABLE table_name_23 (chief_judge VARCHAR, active_service VARCHAR)"}, {"answer": "SELECT reason_for_termination FROM table_name_14 WHERE appointed_by = \"eisenhower category:articles with hcards\"", "question": "Which Reason for termination has Appointed by of eisenhower category:articles with hcards?", "context": "CREATE TABLE table_name_14 (reason_for_termination VARCHAR, appointed_by VARCHAR)"}, {"answer": "SELECT senior_status FROM table_name_30 WHERE chief_judge = \"1991\u20131995\"", "question": "Which Senior status has a Chief Judge of 1991\u20131995?", "context": "CREATE TABLE table_name_30 (senior_status VARCHAR, chief_judge VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE home_team = \"wolverhampton wanderers\"", "question": "When did the Wolverhampton Wanderers play at home?", "context": "CREATE TABLE table_name_52 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT notes FROM table_name_88 WHERE year = 2004", "question": "What are 2004's notes?", "context": "CREATE TABLE table_name_88 (notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_57 WHERE silver = \"yuri omeltchenko\"", "question": "What year did Yuri Omeltchenko win Silver?", "context": "CREATE TABLE table_name_57 (year VARCHAR, silver VARCHAR)"}, {"answer": "SELECT silver FROM table_name_53 WHERE year = 2000", "question": "Who won Silver in 2000?", "context": "CREATE TABLE table_name_53 (silver VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE date = \"april 12\"", "question": "What is the score on April 12?", "context": "CREATE TABLE table_name_88 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE date = \"april 5\"", "question": "What is the score on April 5?", "context": "CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_13 WHERE matches = \"6\"", "question": "What was the result when there were 6 matches?", "context": "CREATE TABLE table_name_13 (result VARCHAR, matches VARCHAR)"}, {"answer": "SELECT year FROM table_name_85 WHERE result = \"did not qualify\"", "question": "What year was the result did not qualify?", "context": "CREATE TABLE table_name_85 (year VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_99 WHERE year = \"2008\"", "question": "What was the result in 2008?", "context": "CREATE TABLE table_name_99 (result VARCHAR, year VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_92 WHERE score = 69 - 72 = 141 AND player = \"tim herron\"", "question": "What was the to par score for Tim Herron, who had a score of 69-72=141?", "context": "CREATE TABLE table_name_92 (to_par VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_40 WHERE score = 70 - 71 = 141", "question": "Which golfer finished with a score of 70-71=141?", "context": "CREATE TABLE table_name_40 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_17 WHERE to_par = \"+1\" AND player = \"adam scott\"", "question": "In what place did Adam Scott, who had a to par score of +1, finish?", "context": "CREATE TABLE table_name_17 (place VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_19 WHERE score = 66 - 74 = 140", "question": "In what place did the golfer that scored 66-74=140 finish?", "context": "CREATE TABLE table_name_19 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_4 WHERE place = \"t2\"", "question": "Which player has a place of t2?", "context": "CREATE TABLE table_name_4 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE player = \"nick faldo\"", "question": "What is the score for Nick Faldo?", "context": "CREATE TABLE table_name_83 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_46 WHERE geelong_fl = \"leopold\" AND wins > 11", "question": "What's the average against of Leopold with more than 11 wins?", "context": "CREATE TABLE table_name_46 (against INTEGER, geelong_fl VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_99 WHERE against < 1706 AND geelong_fl = \"leopold\"", "question": "How many total wins for Leopold that had fewer than 1706 against?", "context": "CREATE TABLE table_name_99 (wins INTEGER, against VARCHAR, geelong_fl VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_22 WHERE losses > 6 AND geelong_fl = \"st josephs\" AND against < 1250", "question": "What is the largest number of draws of St Josephs with losses greater than 6 and less than 1250 against?", "context": "CREATE TABLE table_name_22 (draws INTEGER, against VARCHAR, losses VARCHAR, geelong_fl VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_34 WHERE losses = 14 AND byes > 0", "question": "What is the total number of against when they had 14 losses and more than 0 byes?", "context": "CREATE TABLE table_name_34 (against INTEGER, losses VARCHAR, byes VARCHAR)"}, {"answer": "SELECT classification FROM table_name_82 WHERE dennis_kucinich = \"3%\" AND _percentage_of_all = \"53%\"", "question": "What is Classification, when Dennis Kucinich is \"3%\", and when % of All is \"53%\"?", "context": "CREATE TABLE table_name_82 (classification VARCHAR, dennis_kucinich VARCHAR, _percentage_of_all VARCHAR)"}, {"answer": "SELECT dennis_kucinich FROM table_name_38 WHERE _percentage_of_all = \"53%\"", "question": "What is Dennis Kucinich, when % of All is \"53%\"?", "context": "CREATE TABLE table_name_38 (dennis_kucinich VARCHAR, _percentage_of_all VARCHAR)"}, {"answer": "SELECT john_edwards FROM table_name_41 WHERE john_kerry = \"70%\"", "question": "What is John Edwards, when John Kerry is \"70%\"?", "context": "CREATE TABLE table_name_41 (john_edwards VARCHAR, john_kerry VARCHAR)"}, {"answer": "SELECT dennis_kucinich FROM table_name_48 WHERE classification = \"democrat\"", "question": "What is Dennis Kucinich, when Classification is \"Democrat\"?", "context": "CREATE TABLE table_name_48 (dennis_kucinich VARCHAR, classification VARCHAR)"}, {"answer": "SELECT john_kerry FROM table_name_94 WHERE john_edwards = \"20%\"", "question": "What is John Kerry, when John Edwards is \"20%\"?", "context": "CREATE TABLE table_name_94 (john_kerry VARCHAR, john_edwards VARCHAR)"}, {"answer": "SELECT _percentage_of_all FROM table_name_52 WHERE dennis_kucinich = \"5%\"", "question": "What is % of All, when Dennis Kucinich is \"5%\"?", "context": "CREATE TABLE table_name_52 (_percentage_of_all VARCHAR, dennis_kucinich VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE round = \"second round\"", "question": "What is the date of the second round?", "context": "CREATE TABLE table_name_66 (date VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_52 WHERE date = \"26 august 1995\"", "question": "What is the round on 26 August 1995?", "context": "CREATE TABLE table_name_52 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_name_41 WHERE date = \"13 october 1984\"", "question": "What is the round played on 13 October 1984?", "context": "CREATE TABLE table_name_41 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_75 WHERE home = \"ssv ulm 1846\"", "question": "What is the result for SSV ULM 1846?", "context": "CREATE TABLE table_name_75 (result VARCHAR, home VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_76 WHERE moving_to = \"alianza atl\u00e9tico\" AND name = \"v. zapata\"", "question": "What is the transfer window when moving to alianza atl\u00e9tico by the name of v. zapata?", "context": "CREATE TABLE table_name_76 (transfer_window VARCHAR, moving_to VARCHAR, name VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_74 WHERE type = \"loaned out\" AND name = \"tragodara\"", "question": "Where is moving to the type loaned out under the name tragodara?", "context": "CREATE TABLE table_name_74 (moving_to VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_19 WHERE moving_to = \"atl\u00e9tico minero\"", "question": "What is the name when moving to atl\u00e9tico minero?", "context": "CREATE TABLE table_name_19 (name VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT type FROM table_name_28 WHERE moving_to = \"alianza atl\u00e9tico\"", "question": "what is the type movinig to alianza atl\u00e9tico?", "context": "CREATE TABLE table_name_28 (type VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT name FROM table_name_74 WHERE moving_to = \"atl\u00e9tico minero\"", "question": "what is the name moving to atl\u00e9tico minero?", "context": "CREATE TABLE table_name_74 (name VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT surface FROM table_name_45 WHERE date = \"15 august 2009\"", "question": "What is the surface on 15 August 2009?", "context": "CREATE TABLE table_name_45 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(seats) FROM table_name_9 WHERE change = -1 AND party = \"others\" AND _percentage_votes > 0", "question": "How many seats does the party of others have with a change of -1 and more than 0% votes?", "context": "CREATE TABLE table_name_9 (seats INTEGER, _percentage_votes VARCHAR, change VARCHAR, party VARCHAR)"}, {"answer": "SELECT MIN(seats) FROM table_name_28 WHERE _percentage_change = -3.7 AND _percentage_votes > 4.7", "question": "What are the fewest seats with a -3.7% change and more than 4.7% votes?", "context": "CREATE TABLE table_name_28 (seats INTEGER, _percentage_change VARCHAR, _percentage_votes VARCHAR)"}, {"answer": "SELECT SUM(change) FROM table_name_89 WHERE _percentage_votes < 4.7 AND seats > 0", "question": "What is the change number with fewer than 4.7% votes and more than 0 seats?", "context": "CREATE TABLE table_name_89 (change INTEGER, _percentage_votes VARCHAR, seats VARCHAR)"}, {"answer": "SELECT MIN(seats) FROM table_name_12 WHERE _percentage_votes < 5.4 AND change > -1", "question": "What are the fewest seats with fewer than 5.4% seats and more than -1 change?", "context": "CREATE TABLE table_name_12 (seats INTEGER, _percentage_votes VARCHAR, change VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_84 WHERE partner = \"olga lugina\" AND tournament = \"poitiers , france itf $25,000\"", "question": "What was the score where Olga Lugina played in the Tournament of poitiers , france itf $25,000?", "context": "CREATE TABLE table_name_84 (score_in_the_final VARCHAR, partner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_13 WHERE partner = \"ruxandra dragomir\"", "question": "What surface did Ruxandra Dragomir play on?", "context": "CREATE TABLE table_name_13 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT partner FROM table_name_72 WHERE opponents_in_the_final = \"lenka cenkov\u00e1 kate\u0159ina \u0161i\u0161kov\u00e1\"", "question": "Who had the opponent of Lenka Cenkov\u00e1 kate\u0159ina \u0161i\u0161kov\u00e1 in the final?", "context": "CREATE TABLE table_name_72 (partner VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_95 WHERE opponents_in_the_final = \"els callens nancy feber\"", "question": "What tournament had an opponent of Els Callens Nancy Feber?", "context": "CREATE TABLE table_name_95 (tournament VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_18 WHERE winning_constructor = \"mercer\"", "question": "What kind of Winning driver has a Winning constructor of mercer?", "context": "CREATE TABLE table_name_18 (winning_driver VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_33 WHERE winning_constructor = \"mercedes\" AND name = \"elgin trophy\"", "question": "Which Winning driver has a Winning constructor of mercedes, and a Name of elgin trophy?", "context": "CREATE TABLE table_name_33 (winning_driver VARCHAR, winning_constructor VARCHAR, name VARCHAR)"}, {"answer": "SELECT report FROM table_name_77 WHERE name = \"tourist trophy\"", "question": "Name the Report of tourist trophy?", "context": "CREATE TABLE table_name_77 (report VARCHAR, name VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_96 WHERE date = \"31 may\" AND circuit = \"madonie\"", "question": "Name the Winning constructor on 31 may and a Circuit of madonie?", "context": "CREATE TABLE table_name_96 (winning_constructor VARCHAR, date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE winning_constructor = \"mercedes\" AND circuit = \"elgin\"", "question": "Name the Date of mercedes, and a Circuit of elgin?", "context": "CREATE TABLE table_name_57 (date VARCHAR, winning_constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_91 WHERE winning_constructor = \"mercedes\" AND date = \"22 august\"", "question": "Name the Winning driver of mercedes on 22 august?", "context": "CREATE TABLE table_name_91 (winning_driver VARCHAR, winning_constructor VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_76 WHERE coach = \"rashid budaj\"", "question": "Which stadium did Rashid Budaj coach?", "context": "CREATE TABLE table_name_76 (stadium VARCHAR, coach VARCHAR)"}, {"answer": "SELECT coach FROM table_name_67 WHERE city = \"al farwaniyah\"", "question": "Who coached for al farwaniyah?", "context": "CREATE TABLE table_name_67 (coach VARCHAR, city VARCHAR)"}, {"answer": "SELECT coach FROM table_name_58 WHERE club = \"qadsia\"", "question": "Who was the coach for qadsia?", "context": "CREATE TABLE table_name_58 (coach VARCHAR, club VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_3 WHERE club = \"kuwait\"", "question": "Which stadium had the club Kuwait?", "context": "CREATE TABLE table_name_3 (stadium VARCHAR, club VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE year = \"1990\"", "question": "What's the score in 1990?", "context": "CREATE TABLE table_name_29 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT champion FROM table_name_3 WHERE name = \"philips open\" AND runner_up = \"javier s\u00e1nchez\"", "question": "Who was the champion of the Philips Open with a runner-up of Javier S\u00e1nchez?", "context": "CREATE TABLE table_name_3 (champion VARCHAR, name VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE name = \"nice international championships\" AND champion = \"bj\u00f6rn borg\"", "question": "What's the score of the Nice International Championships where Bj\u00f6rn Borg was the champion?", "context": "CREATE TABLE table_name_93 (score VARCHAR, name VARCHAR, champion VARCHAR)"}, {"answer": "SELECT year FROM table_name_58 WHERE score = \"6\u20132, 2\u20136, 5\u20137, 7\u20136, 8\u20136\"", "question": "What year had a score of 6\u20132, 2\u20136, 5\u20137, 7\u20136, 8\u20136?", "context": "CREATE TABLE table_name_58 (year VARCHAR, score VARCHAR)"}, {"answer": "SELECT name FROM table_name_88 WHERE champion = \"henrik sundstr\u00f6m\"", "question": "What's the name when Henrik Sundstr\u00f6m was champion?", "context": "CREATE TABLE table_name_88 (name VARCHAR, champion VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE away_team = \"bolton wanderers\"", "question": "When the away team was Bolton Wanderers, what was the score?", "context": "CREATE TABLE table_name_83 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_76 WHERE date = \"30/01/1991\" AND away_team = \"liverpool\"", "question": "On the date of 30/01/1991, when the away team was Liverpool, what was the score?", "context": "CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE tie_no = \"1\"", "question": "When the tie no was 1, what was the score?", "context": "CREATE TABLE table_name_44 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE home_team = \"shrewsbury town\"", "question": "When the home team was Shrewsbury town, what was the score?", "context": "CREATE TABLE table_name_54 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_12 WHERE home_team = \"woking\"", "question": "When the home team was Woking, what was the tie no?", "context": "CREATE TABLE table_name_12 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_98 WHERE away_team = \"cambridge city\"", "question": "How many people attended the game against away team Cambridge City?", "context": "CREATE TABLE table_name_98 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_37 WHERE away_team = \"aylesbury vale\"", "question": "Who was the home team that played against Aylesbury Vale?", "context": "CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_12 WHERE tie_no = \"44\"", "question": "Which home team has 44 ties?", "context": "CREATE TABLE table_name_12 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_74 WHERE home_team = \"witton albion\"", "question": "How many people attended the game with home team Witton Albion?", "context": "CREATE TABLE table_name_74 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_51 WHERE home_team = \"billericay town\"", "question": "What was the attendance at the Billericay Town home game?", "context": "CREATE TABLE table_name_51 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_79 WHERE away_team = \"ashford town (middx)\"", "question": "What was the tie number of the away game for Ashford Town (Middx)?", "context": "CREATE TABLE table_name_79 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_34 WHERE home_team = \"billericay town\"", "question": "What was the attendance at the Billericay Town home game?", "context": "CREATE TABLE table_name_34 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_6 WHERE attendance = \"81\"", "question": "Who was the away team at the game attended by 81?", "context": "CREATE TABLE table_name_6 (away_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE tie_no = \"5\"", "question": "What score has a tie of 5?", "context": "CREATE TABLE table_name_55 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE tie_no = \"3\"", "question": "What was the date of the game that tied at 3?", "context": "CREATE TABLE table_name_56 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT european_release_date FROM table_name_50 WHERE north_american_release_date = \"2013-03-05\"", "question": "What is European Release Date, when North American Release Date is \"2013-03-05\"?", "context": "CREATE TABLE table_name_50 (european_release_date VARCHAR, north_american_release_date VARCHAR)"}, {"answer": "SELECT japanese_release_date FROM table_name_34 WHERE australia_release_date = \"2006-03-23\"", "question": "What is Japanese Release Date, when Australia Release Date is \"2006-03-23\"?", "context": "CREATE TABLE table_name_34 (japanese_release_date VARCHAR, australia_release_date VARCHAR)"}, {"answer": "SELECT north_american_release_date FROM table_name_17 WHERE japanese_release_date = \"2011-06-23\"", "question": "What is North American Release Date, when Japanese Release Date is \"2011-06-23\"?", "context": "CREATE TABLE table_name_17 (north_american_release_date VARCHAR, japanese_release_date VARCHAR)"}, {"answer": "SELECT SUM(goal_difference) FROM table_name_3 WHERE draws = 8 AND goals_against = 32 AND wins < 12", "question": "What is the goal difference when there are fewer than 12 wins, 32 goals against and 8 draws?", "context": "CREATE TABLE table_name_3 (goal_difference INTEGER, wins VARCHAR, draws VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MIN(goal_difference) FROM table_name_85 WHERE position > 16", "question": "What's the lowest goal difference when the position is higher than 16?", "context": "CREATE TABLE table_name_85 (goal_difference INTEGER, position INTEGER)"}, {"answer": "SELECT venue FROM table_name_11 WHERE opposing_teams = \"new zealand\" AND date = \"22/11/1997\"", "question": "Which venue was the opposing team New Zealand on 22/11/1997?", "context": "CREATE TABLE table_name_11 (venue VARCHAR, opposing_teams VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE against = 25 AND opposing_teams = \"australia\"", "question": "What day was the opposing team Australia and the against 25?", "context": "CREATE TABLE table_name_77 (date VARCHAR, against VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT status FROM table_name_9 WHERE opposing_teams = \"south africa\"", "question": "What was the status for the opposing team South Africa?", "context": "CREATE TABLE table_name_9 (status VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT AVG(league_goals) FROM table_name_98 WHERE fa_cup_goals = \"0\" AND position = \"mf\" AND league_cup_apps = \"0\" AND name = \"ben thornley\"", "question": "What is the League Goals when the FA Cup Goals are 0, position is mf, League Cup Apps of 0, and name is Ben Thornley?", "context": "CREATE TABLE table_name_98 (league_goals INTEGER, name VARCHAR, league_cup_apps VARCHAR, fa_cup_goals VARCHAR, position VARCHAR)"}, {"answer": "SELECT total_apps FROM table_name_55 WHERE league_cup_apps = \"0 (1)\" AND position = \"df\"", "question": "What is the Total Apps when League Cup Apps is 0 (1), and position is df?", "context": "CREATE TABLE table_name_55 (total_apps VARCHAR, league_cup_apps VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(total_goals) FROM table_name_64 WHERE name = \"mark ward\"", "question": "What is the total goals for Mark Ward?", "context": "CREATE TABLE table_name_64 (total_goals INTEGER, name VARCHAR)"}, {"answer": "SELECT party FROM table_name_85 WHERE name = \"jackie goldberg\"", "question": "What is the political party of Jackie Goldberg?", "context": "CREATE TABLE table_name_85 (party VARCHAR, name VARCHAR)"}, {"answer": "SELECT years_in_assembly FROM table_name_71 WHERE name = \"christine kehoe\"", "question": "During what years was Christine Kehoe in Assembly?", "context": "CREATE TABLE table_name_71 (years_in_assembly VARCHAR, name VARCHAR)"}, {"answer": "SELECT years_in_assembly FROM table_name_54 WHERE residence = \"san francisco\"", "question": "What were the San Francisco resident's years in assembly?", "context": "CREATE TABLE table_name_54 (years_in_assembly VARCHAR, residence VARCHAR)"}, {"answer": "SELECT party FROM table_name_75 WHERE residence = \"san diego\"", "question": "What political party does the person from San Diego belong to?", "context": "CREATE TABLE table_name_75 (party VARCHAR, residence VARCHAR)"}, {"answer": "SELECT opposing_teams FROM table_name_18 WHERE date = \"06/02/1988\"", "question": "Which Opposing Teams is on 06/02/1988?", "context": "CREATE TABLE table_name_18 (opposing_teams VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE status = \"five nations\" AND venue = \"twickenham , london\" AND opposing_teams = \"ireland\"", "question": "When Status of five nations, and a Venue of twickenham , london, and a Opposing Teams of ireland are in?", "context": "CREATE TABLE table_name_42 (date VARCHAR, opposing_teams VARCHAR, status VARCHAR, venue VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_12 WHERE opponents = \"cambridge united\"", "question": "What's the attendance when the opponents are cambridge united?", "context": "CREATE TABLE table_name_12 (attendance VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_85 WHERE opponents = \"dundalk\"", "question": "What's the average attendance when the opponents are dundalk?", "context": "CREATE TABLE table_name_85 (attendance INTEGER, opponents VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_42 WHERE h___a = \"a\" AND opponents = \"wolverhampton wanderers\"", "question": "What's the total attendance for H/A of A and opponents of wolverhampton wanderers?", "context": "CREATE TABLE table_name_42 (attendance VARCHAR, h___a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_44 WHERE gold < 4", "question": "Which Total has a Gold smaller than 4?", "context": "CREATE TABLE table_name_44 (total INTEGER, gold INTEGER)"}, {"answer": "SELECT MAX(rank) FROM table_name_17 WHERE nation = \"china (chn)\" AND bronze < 4", "question": "Which Rank has a Nation of china (chn), and a Bronze smaller than 4?", "context": "CREATE TABLE table_name_17 (rank INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_20 WHERE bronze < 13 AND nation = \"netherlands (ned)\" AND gold > 4", "question": "How much Total has a Bronze smaller than 13, and a Nation of netherlands (ned), and a Gold larger than 4?", "context": "CREATE TABLE table_name_20 (total VARCHAR, gold VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT website FROM table_name_82 WHERE founded < 1897 AND suburb_town = \"adaminaby\"", "question": "Which website was founded before 1897, and is located in Adaminaby?", "context": "CREATE TABLE table_name_82 (website VARCHAR, founded VARCHAR, suburb_town VARCHAR)"}, {"answer": "SELECT AVG(founded) FROM table_name_31 WHERE years = \"k-6\" AND suburb_town = \"broken hill\"", "question": "What is the average year founded that is located in Broken Hill and has school years of k-6?", "context": "CREATE TABLE table_name_31 (founded INTEGER, years VARCHAR, suburb_town VARCHAR)"}, {"answer": "SELECT suburb_town FROM table_name_11 WHERE years = \"k-6\" AND founded < 1875 AND school = \"ashfield public school\"", "question": "What suburb/town has school years of k-6, was founded before 1875, and has Ashfield Public School as its school?", "context": "CREATE TABLE table_name_11 (suburb_town VARCHAR, school VARCHAR, years VARCHAR, founded VARCHAR)"}, {"answer": "SELECT founded FROM table_name_65 WHERE school = \"airds high school\"", "question": "What is the year Airds High School was founded?", "context": "CREATE TABLE table_name_65 (founded VARCHAR, school VARCHAR)"}, {"answer": "SELECT website FROM table_name_76 WHERE founded = 1921", "question": "Which website has 1921 as the year founded?", "context": "CREATE TABLE table_name_76 (website VARCHAR, founded VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_80 WHERE rank_points = \"defending champion\"", "question": "What Score points has a Rank points of defending champion?", "context": "CREATE TABLE table_name_80 (score_points VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT rank_points FROM table_name_40 WHERE event = \"wc beijing\" AND score_points = \"11\"", "question": "What Rank points has an Event of wc beijing, and Score points of 11?", "context": "CREATE TABLE table_name_40 (rank_points VARCHAR, event VARCHAR, score_points VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_9 WHERE total = \"28\"", "question": "What Shooter has a Total of 28?", "context": "CREATE TABLE table_name_9 (shooter VARCHAR, total VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_21 WHERE event = \"wc beijing\" AND total = \"16\" AND rank_points = \"4\"", "question": "What Shooter has an Event of wc beijing, a Total of 16, and Rank points of 4?", "context": "CREATE TABLE table_name_21 (shooter VARCHAR, rank_points VARCHAR, event VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_13 WHERE venue = \"murrayfield, edinburgh\"", "question": "What is the average against of Murrayfield, Edinburgh?", "context": "CREATE TABLE table_name_13 (against INTEGER, venue VARCHAR)"}, {"answer": "SELECT status FROM table_name_70 WHERE opposing_teams = \"wales\"", "question": "What is the status of the Wales opposing team?", "context": "CREATE TABLE table_name_70 (status VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE against = 7", "question": "What date has an against of 7?", "context": "CREATE TABLE table_name_95 (date VARCHAR, against VARCHAR)"}, {"answer": "SELECT district FROM table_name_1 WHERE first_elected > 1998 AND party = \"democratic\" AND incumbent = \"steve israel\"", "question": "What District was Incumbent Steve Israel First elected after 1998 in the Democratic party?", "context": "CREATE TABLE table_name_1 (district VARCHAR, incumbent VARCHAR, first_elected VARCHAR, party VARCHAR)"}, {"answer": "SELECT results FROM table_name_48 WHERE first_elected < 1982", "question": "What are the results of a first elected prior to year 1982?", "context": "CREATE TABLE table_name_48 (results VARCHAR, first_elected INTEGER)"}, {"answer": "SELECT incumbent FROM table_name_45 WHERE party = \"democratic\" AND results = \"re-elected\" AND first_elected > 1992 AND district = \"new york 1\"", "question": "Who is the Incumbent of the Democratic Party at an election after 1992 in the New York 1 District who was Re-elected?", "context": "CREATE TABLE table_name_45 (incumbent VARCHAR, district VARCHAR, first_elected VARCHAR, party VARCHAR, results VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_28 WHERE player = \"gene sauers\"", "question": "What is Gene Sauers' to par?", "context": "CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_77 WHERE country = \"united states\" AND player = \"john daly\"", "question": "Where is john daly of united states from?", "context": "CREATE TABLE table_name_77 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_69 WHERE city = \"el paso\" AND population > 672 OFFSET 538", "question": "What is the average rank of the city of el paso, which has a population greater than 672,538?", "context": "CREATE TABLE table_name_69 (rank INTEGER, city VARCHAR, population VARCHAR)"}, {"answer": "SELECT state FROM table_name_99 WHERE rank < 10 AND city = \"denver\"", "question": "What is the state of the city of denver, which has a rank less than 10?", "context": "CREATE TABLE table_name_99 (state VARCHAR, rank VARCHAR, city VARCHAR)"}, {"answer": "SELECT result FROM table_name_29 WHERE round < 3 AND location = \"auckland, new zealand\" AND method = \"tko\"", "question": "What is the result when the round is less than 3, the location is in Auckland, New Zealand, and tko is the method?", "context": "CREATE TABLE table_name_29 (result VARCHAR, method VARCHAR, round VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_95 WHERE record = \"4-0\"", "question": "What is the smallest round to have a record of 4-0?", "context": "CREATE TABLE table_name_95 (round INTEGER, record VARCHAR)"}, {"answer": "SELECT result FROM table_name_55 WHERE round > 3", "question": "What is the result of a round greater than 3?", "context": "CREATE TABLE table_name_55 (result VARCHAR, round INTEGER)"}, {"answer": "SELECT event FROM table_name_92 WHERE opponent = \"toa naketoatama\"", "question": "Which event has Toa Naketoatama as an opponent?", "context": "CREATE TABLE table_name_92 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(killed) FROM table_name_4 WHERE injured = \"15\" AND year < 1987", "question": "How many kills have 15 as the injured, with a year prior to 1987?", "context": "CREATE TABLE table_name_4 (killed INTEGER, injured VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE opposing_teams = \"south africa\" AND venue = \"vodacom park , bloemfontein\"", "question": "What is Date, when Opposing Teams is \"South Africa\", and when Venus is \"Vodacom Park , Bloemfontein\"?", "context": "CREATE TABLE table_name_22 (date VARCHAR, opposing_teams VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_74 WHERE status = \"2007 rugby world cup\" AND opposing_teams = \"u.s.a.\"", "question": "What is the average Against, when Status is \"2007 Rugby World Cup\", and when Opposing Teams is \"U.S.A.\"?", "context": "CREATE TABLE table_name_74 (against INTEGER, status VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT venue FROM table_name_22 WHERE status = \"2007 rugby world cup\" AND against < 22 AND date = \"08/09/2007\"", "question": "What is Venue, when Status is \"2007 Rugby World Cup\", when Against is less than 22, and when Date is \"08/09/2007\"?", "context": "CREATE TABLE table_name_22 (venue VARCHAR, date VARCHAR, status VARCHAR, against VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_42 WHERE status = \"first test\" AND date = \"26/05/2007\"", "question": "What is the lowest Against, when Status is \"First Test\", and when Date is \"26/05/2007\"?", "context": "CREATE TABLE table_name_42 (against INTEGER, status VARCHAR, date VARCHAR)"}, {"answer": "SELECT opposing_teams FROM table_name_35 WHERE against = 20 AND venue = \"twickenham , london\"", "question": "What is Opposing Teams, when Against is \"20\", and when Venue is \"Twickenham , London\"?", "context": "CREATE TABLE table_name_35 (opposing_teams VARCHAR, against VARCHAR, venue VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE opponent = \"danilo pereira\"", "question": "What is the record when Danilo Pereira was the opponent?", "context": "CREATE TABLE table_name_58 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_55 WHERE opponent = \"edson claas vieira\"", "question": "Which event had Edson Claas Vieira as an opponent?", "context": "CREATE TABLE table_name_55 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_2 WHERE opponent = \"rafael cavalcante\"", "question": "Which method was used when Rafael Cavalcante was the opponent?", "context": "CREATE TABLE table_name_2 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_38 WHERE opponent = \"alessio sakara\"", "question": "Which method was used when Alessio Sakara was the opponent?", "context": "CREATE TABLE table_name_38 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE record = \"3-8\"", "question": "Who is the opponent when the record is 3-8?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(population_2006_census) FROM table_name_66 WHERE local_government_area = \"alexandrina council\" AND rank < 19", "question": "What was the 2006 population for the local government area of alexandrina council whose rank was smaller than 19?", "context": "CREATE TABLE table_name_66 (population_2006_census INTEGER, local_government_area VARCHAR, rank VARCHAR)"}, {"answer": "SELECT total_fat FROM table_name_60 WHERE smoke_point = \"\u00b0c ()\" AND saturated_fat = \"25g\"", "question": "What is the total fat with a smoke point of \u00b0c (), 25g of saturated fat?", "context": "CREATE TABLE table_name_60 (total_fat VARCHAR, smoke_point VARCHAR, saturated_fat VARCHAR)"}, {"answer": "SELECT total_fat FROM table_name_63 WHERE polyunsaturated_fat = \"11g\" AND monounsaturated_fat = \"73g\"", "question": "What is the total fat when the polyunsaturated fat is 11g, and Monounsaturated fat is 73g?", "context": "CREATE TABLE table_name_63 (total_fat VARCHAR, polyunsaturated_fat VARCHAR, monounsaturated_fat VARCHAR)"}, {"answer": "SELECT smoke_point FROM table_name_97 WHERE total_fat = \"100g\" AND monounsaturated_fat = \"46g\"", "question": "What is the smoke point with a total fat of 100g, and monounsaturated fat of 46g?", "context": "CREATE TABLE table_name_97 (smoke_point VARCHAR, total_fat VARCHAR, monounsaturated_fat VARCHAR)"}, {"answer": "SELECT monounsaturated_fat FROM table_name_32 WHERE saturated_fat = \"39g\"", "question": "What shows for monounsaturated fat when the saturated fat is 39g?", "context": "CREATE TABLE table_name_32 (monounsaturated_fat VARCHAR, saturated_fat VARCHAR)"}, {"answer": "SELECT smoke_point FROM table_name_24 WHERE polyunsaturated_fat = \"69g (4g in high oleic variety)\"", "question": "What is the smoke point when the polyunsaturated fat is 69g (4g in high oleic variety)?", "context": "CREATE TABLE table_name_24 (smoke_point VARCHAR, polyunsaturated_fat VARCHAR)"}, {"answer": "SELECT saturated_fat FROM table_name_63 WHERE total_fat = \"100g\" AND polyunsaturated_fat = \"69g (4g in high oleic variety)\"", "question": "What is the saturated fat when the total fat is 100g, and polyunsaturated fat is 69g (4g in high oleic variety)?", "context": "CREATE TABLE table_name_63 (saturated_fat VARCHAR, total_fat VARCHAR, polyunsaturated_fat VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_26 WHERE score = \"2\u20132\"", "question": "What is the Tie No with a Score of 2\u20132?", "context": "CREATE TABLE table_name_26 (tie_no VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE away_team = \"crystal palace\"", "question": "What is the Date of the Crystal Palace Away game?", "context": "CREATE TABLE table_name_33 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_20 WHERE tie_no = \"2\"", "question": "What is the Home team of Tie no 2?", "context": "CREATE TABLE table_name_20 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_36 WHERE tie_no = \"2\"", "question": "What is the Home team of tie no 2?", "context": "CREATE TABLE table_name_36 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_7 WHERE laps < 24 AND bike = \"honda cbr1000rr\" AND rider = \"jason pridmore\"", "question": "What is the average Grid, when Laps is less than 24, when Bike is \"Honda CBR1000RR\", and when Rider is \"Jason Pridmore\"?", "context": "CREATE TABLE table_name_7 (grid INTEGER, rider VARCHAR, laps VARCHAR, bike VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_78 WHERE bike = \"yamaha yzf-r1\" AND rider = \"david checa\" AND grid > 18", "question": "What is the highest Laps, when Bike is \"Yamaha YZF-R1\", when Rider is \"David Checa\", and when Grid is greater than 18?", "context": "CREATE TABLE table_name_78 (laps INTEGER, grid VARCHAR, bike VARCHAR, rider VARCHAR)"}, {"answer": "SELECT SUM(grid) FROM table_name_60 WHERE time = \"+16.687\"", "question": "What is the sum of Grid, when Time is \"+16.687\"?", "context": "CREATE TABLE table_name_60 (grid INTEGER, time VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_78 WHERE laps > 24", "question": "What is the total number of Grid, when Laps is greater than 24?", "context": "CREATE TABLE table_name_78 (grid VARCHAR, laps INTEGER)"}, {"answer": "SELECT runner_up FROM table_name_27 WHERE season > 2 AND total_prize_money = \"$108,000\"", "question": "Who was the runner-up after season 2 when the total prize money was $108,000?", "context": "CREATE TABLE table_name_27 (runner_up VARCHAR, season VARCHAR, total_prize_money VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_17 WHERE total_prize_money = \"$108,000\"", "question": "What was the highest season number with a total prize of $108,000?", "context": "CREATE TABLE table_name_17 (season INTEGER, total_prize_money VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_13 WHERE runner_up = \"aisha jefcoate\"", "question": "What is the earliest season where Aisha Jefcoate was the runner-up?", "context": "CREATE TABLE table_name_13 (season INTEGER, runner_up VARCHAR)"}, {"answer": "SELECT potential_prize_money FROM table_name_70 WHERE mole = \"petrina edge\"", "question": "When the Mole was Petrina Edge, what was the potential prize money?", "context": "CREATE TABLE table_name_70 (potential_prize_money VARCHAR, mole VARCHAR)"}, {"answer": "SELECT share FROM table_name_12 WHERE weekly_rank = \"8\" AND date = \"15 june\"", "question": "Which Share has a weekly Rank of 8 and is dated 15 June?", "context": "CREATE TABLE table_name_12 (share VARCHAR, weekly_rank VARCHAR, date VARCHAR)"}, {"answer": "SELECT weekly_rank FROM table_name_82 WHERE official_ratings__millions_ = 11.58", "question": "Which Weekly Rank has an Official ratings (millions) of 11.58?", "context": "CREATE TABLE table_name_82 (weekly_rank VARCHAR, official_ratings__millions_ VARCHAR)"}, {"answer": "SELECT show FROM table_name_39 WHERE date = \"9 june\"", "question": "Which Show is dated 9 June?", "context": "CREATE TABLE table_name_39 (show VARCHAR, date VARCHAR)"}, {"answer": "SELECT weekly_rank FROM table_name_8 WHERE official_ratings__millions_ > 5.2 AND show = \"live final\"", "question": "Which Weekly Rank for a Live Final Show has an Official Ratings (millions) greater than 5.2?", "context": "CREATE TABLE table_name_8 (weekly_rank VARCHAR, official_ratings__millions_ VARCHAR, show VARCHAR)"}, {"answer": "SELECT status FROM table_name_9 WHERE opposing_teams = \"scotland\"", "question": "What is the status with the opposing team of Scotland?", "context": "CREATE TABLE table_name_9 (status VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_16 WHERE venue = \"twickenham, london\" AND status = \"five nations\" AND opposing_teams = \"ireland\"", "question": "What is the lowest against score for Twickenham, London with the status of Five Nations against Ireland?", "context": "CREATE TABLE table_name_16 (against INTEGER, opposing_teams VARCHAR, venue VARCHAR, status VARCHAR)"}, {"answer": "SELECT venue FROM table_name_31 WHERE against < 7", "question": "Which Venue has a Against smaller than 7?", "context": "CREATE TABLE table_name_31 (venue VARCHAR, against INTEGER)"}, {"answer": "SELECT date FROM table_name_71 WHERE status = \"five nations\" AND against = 7", "question": "When has a Status of five nations, and a Against of 7?", "context": "CREATE TABLE table_name_71 (date VARCHAR, status VARCHAR, against VARCHAR)"}, {"answer": "SELECT venue FROM table_name_16 WHERE against > 13", "question": "Which Venue has a Against larger than 13?", "context": "CREATE TABLE table_name_16 (venue VARCHAR, against INTEGER)"}, {"answer": "SELECT MAX(against) FROM table_name_91 WHERE venue = \"wembley stadium , london\"", "question": "Name the Against which has a Venue of wembley stadium , london?", "context": "CREATE TABLE table_name_91 (against INTEGER, venue VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_29 WHERE byes < 1", "question": "Which wins have less than 1 bye?", "context": "CREATE TABLE table_name_29 (wins INTEGER, byes INTEGER)"}, {"answer": "SELECT MIN(against) FROM table_name_38 WHERE losses > 10 AND wins < 4 AND club = \"dunolly\"", "question": "Which Against has Losses larger than 10, and Wins smaller than 4, and a Club of dunolly?", "context": "CREATE TABLE table_name_38 (against INTEGER, club VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(byes) FROM table_name_45 WHERE against < 1297 AND club = \"avoca\" AND wins > 12", "question": "Which Byes has an Against smaller than 1297, and a Club of avoca, and Wins larger than 12?", "context": "CREATE TABLE table_name_45 (byes INTEGER, wins VARCHAR, against VARCHAR, club VARCHAR)"}, {"answer": "SELECT kit_factory FROM table_name_90 WHERE manufacturer = \"jabiru\" AND model = \"j250\"", "question": "What Kit/Factory has a J250 model made by Jabiru?", "context": "CREATE TABLE table_name_90 (kit_factory VARCHAR, manufacturer VARCHAR, model VARCHAR)"}, {"answer": "SELECT birth FROM table_name_12 WHERE marriage = \"11 july 1643\"", "question": "When was the duchess, who was married on 11 july 1643, born?", "context": "CREATE TABLE table_name_12 (birth VARCHAR, marriage VARCHAR)"}, {"answer": "SELECT birth FROM table_name_91 WHERE name = \"anne of lorraine\"", "question": "When was anne of lorraine born?", "context": "CREATE TABLE table_name_91 (birth VARCHAR, name VARCHAR)"}, {"answer": "SELECT death FROM table_name_56 WHERE spouse = \"philippe\"", "question": "When did the duchess, who was married to philippe, die?", "context": "CREATE TABLE table_name_56 (death VARCHAR, spouse VARCHAR)"}, {"answer": "SELECT ceased_to_be_duchess FROM table_name_59 WHERE marriage = \"22 may 1657\"", "question": "When did the woman, who was married 22 may 1657, cease to be the duchess?", "context": "CREATE TABLE table_name_59 (ceased_to_be_duchess VARCHAR, marriage VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE tie_no = \"3\"", "question": "What is the score of the game with a tie no of 3?", "context": "CREATE TABLE table_name_14 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_33 WHERE date = \"23 january 1982\" AND home_team = \"sunderland\"", "question": "Who did home team sunderland play on 23 january 1982?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE date = \"23 january 1982\" AND away_team = \"queens park rangers\"", "question": "What is the score of the game against away team queens park rangers on 23 january 1982?", "context": "CREATE TABLE table_name_63 (score VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE tie_no = \"6\"", "question": "What is the score of the game with a tie no of 6?", "context": "CREATE TABLE table_name_21 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE date = \"23 january 1982\" AND home_team = \"gillingham\"", "question": "What is the score of the game home team gillingham played on 23 january 1982?", "context": "CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_15 WHERE home_team = \"huddersfield town\"", "question": "What is the tie no of the game that home team huddersfield town played?", "context": "CREATE TABLE table_name_15 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home FROM table_name_89 WHERE record = \"2-0\"", "question": "What is the home team of the game with a 2-0 record?", "context": "CREATE TABLE table_name_89 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE record = \"3-0\"", "question": "What is the score of the game with a 3-0 record?", "context": "CREATE TABLE table_name_67 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_98 WHERE date = \"april 4\"", "question": "What is the visitor team on April 4?", "context": "CREATE TABLE table_name_98 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_45 WHERE visitor = \"chicago black hawks\" AND record = \"3-1\"", "question": "What is the score of the game with the chicago black hawks as the visitor and a 3-1 record?", "context": "CREATE TABLE table_name_45 (score VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT instant_messaging FROM table_name_64 WHERE telephony = \"yes with integrated sametime\"", "question": "What is Instant Messaging, when Telephony is \"Yes with integrated Sametime\"?", "context": "CREATE TABLE table_name_64 (instant_messaging VARCHAR, telephony VARCHAR)"}, {"answer": "SELECT videoconferencing FROM table_name_24 WHERE synchronous_conferencing = \"no\" AND web_conferencing = \"no\" AND faxing = \"yes\"", "question": "What is Videoconferencing, when Synchronous Conferencing is \"No\", when Web Conferencing is \"No\", and when Faxing is \"Yes\"?", "context": "CREATE TABLE table_name_24 (videoconferencing VARCHAR, faxing VARCHAR, synchronous_conferencing VARCHAR, web_conferencing VARCHAR)"}, {"answer": "SELECT videoconferencing FROM table_name_82 WHERE data_conferencing = \"no\" AND web_conferencing = \"no\"", "question": "What is Videoconferencing, when Data Conferencing is \"No\", and when Web Conferencing is \"No\"?", "context": "CREATE TABLE table_name_82 (videoconferencing VARCHAR, data_conferencing VARCHAR, web_conferencing VARCHAR)"}, {"answer": "SELECT application_sharing FROM table_name_40 WHERE web_conferencing = \"web conferencing\"", "question": "What is Application Sharing, when Web Conferencing is \"Web Conferencing\"?", "context": "CREATE TABLE table_name_40 (application_sharing VARCHAR, web_conferencing VARCHAR)"}, {"answer": "SELECT instant_messaging FROM table_name_48 WHERE electronic_meeting_system = \"yes\" AND name = \"microsoft sharepoint\"", "question": "What is Instant Messaging, when Electronic Meeting System is \"Yes\", and when Name is \"Microsoft Sharepoint\"?", "context": "CREATE TABLE table_name_48 (instant_messaging VARCHAR, electronic_meeting_system VARCHAR, name VARCHAR)"}, {"answer": "SELECT instant_messaging FROM table_name_26 WHERE telephony = \"yes with integrated sametime\"", "question": "What is Instant Messaging, when Telephony is \"Yes with integrated Sametime\"?", "context": "CREATE TABLE table_name_26 (instant_messaging VARCHAR, telephony VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_78 WHERE outcome = \"winner\" AND opponents = \"eddie dibbs harold solomon\"", "question": "What Tournament has an Outcome of winner, and Opponents of eddie dibbs harold solomon?", "context": "CREATE TABLE table_name_78 (tournament VARCHAR, outcome VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT partner FROM table_name_59 WHERE score = \"3\u20136, 2\u20136\"", "question": "What Partner has a Score of 3\u20136, 2\u20136?", "context": "CREATE TABLE table_name_59 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_65 WHERE partner = \"tom gorman\"", "question": "What Tournament has a Partner of tom gorman?", "context": "CREATE TABLE table_name_65 (tournament VARCHAR, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_2 WHERE opponents = \"bob hewitt frew mcmillan\"", "question": "What Outcome has Opponents of bob hewitt frew mcmillan?", "context": "CREATE TABLE table_name_2 (outcome VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT opposing_teams FROM table_name_36 WHERE date = \"11/02/1961\"", "question": "Who was the name of the opposing team on 11/02/1961?", "context": "CREATE TABLE table_name_36 (opposing_teams VARCHAR, date VARCHAR)"}, {"answer": "SELECT opposing_teams FROM table_name_14 WHERE against < 5", "question": "Which Opposing team had an Against smaller Than 5?", "context": "CREATE TABLE table_name_14 (opposing_teams VARCHAR, against INTEGER)"}, {"answer": "SELECT status FROM table_name_91 WHERE date = \"07/01/1961\"", "question": "What is the status for 07/01/1961?", "context": "CREATE TABLE table_name_91 (status VARCHAR, date VARCHAR)"}, {"answer": "SELECT position FROM table_name_22 WHERE player = \"karl singer\"", "question": "What position does Karl Singer play?", "context": "CREATE TABLE table_name_22 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_37 WHERE position = \"offensive tackle\" AND afl_team = \"new york jets\"", "question": "Which player is an offensive tackle for the New York Jets?", "context": "CREATE TABLE table_name_37 (player VARCHAR, position VARCHAR, afl_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_42 WHERE player = \"mike dennis\"", "question": "What position does Mike Dennis play?", "context": "CREATE TABLE table_name_42 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT afl_team FROM table_name_14 WHERE position = \"offensive tackle\" AND pick = 4", "question": "Which AFL team has a pick 4 for the offensive tackle position?", "context": "CREATE TABLE table_name_14 (afl_team VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT country FROM table_name_88 WHERE name = \"sodje\"", "question": "From which country was Sodje loaned?", "context": "CREATE TABLE table_name_88 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT loan_club FROM table_name_35 WHERE name = \"c. dickinson\"", "question": "From which club is player C. Dickinson?", "context": "CREATE TABLE table_name_35 (loan_club VARCHAR, name VARCHAR)"}, {"answer": "SELECT fate FROM table_name_26 WHERE ship = \"bremen\"", "question": "What is the fate for the Bremen ship?", "context": "CREATE TABLE table_name_26 (fate VARCHAR, ship VARCHAR)"}, {"answer": "SELECT original_operator FROM table_name_54 WHERE builder = \"ag vulcan\" AND ship = \"prinzess irene\"", "question": "Who is the original operator for the AG Vulcan builder and the Prinzess Irene ship?", "context": "CREATE TABLE table_name_54 (original_operator VARCHAR, builder VARCHAR, ship VARCHAR)"}, {"answer": "SELECT tonnage FROM table_name_9 WHERE builder = \"ag vulcan\" AND original_operator = \"ndl\" AND ship = \"prinzess irene\"", "question": "What is the Tonnage that has builder AG Vulcan, and the original operator NDL, and the ship, Prinzess Irene?", "context": "CREATE TABLE table_name_9 (tonnage VARCHAR, ship VARCHAR, builder VARCHAR, original_operator VARCHAR)"}, {"answer": "SELECT player FROM table_name_60 WHERE score = 68 - 71 - 70 = 208", "question": "Who has a Score of 68-71-70=208?", "context": "CREATE TABLE table_name_60 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_55 WHERE to_par = \"-9\" AND score = 70 - 69 - 68 = 207", "question": "Which country has -9 to par with a Score of 70-69-68=207?", "context": "CREATE TABLE table_name_55 (country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_5 WHERE player = \"tiger woods\"", "question": "What is Tiger Woods' to par?", "context": "CREATE TABLE table_name_5 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_85 WHERE tie_no = \"replay\" AND home_team = \"peterborough united\"", "question": "Which away team played against Peterborough United, with a tie no of replay?", "context": "CREATE TABLE table_name_85 (away_team VARCHAR, tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MIN(matches) FROM table_name_19 WHERE wickets > 16 AND best = \"3/15\" AND econ < 8", "question": "What are the lowest matches that have wickets greater than 16, 3/15 as the best, and an econ less than 8?", "context": "CREATE TABLE table_name_19 (matches INTEGER, econ VARCHAR, wickets VARCHAR, best VARCHAR)"}, {"answer": "SELECT COUNT(econ) FROM table_name_27 WHERE s_rate = 13.76 AND runs < 325", "question": "How many econs have 13.76 as the S/Rate, with runs less than 325?", "context": "CREATE TABLE table_name_27 (econ VARCHAR, s_rate VARCHAR, runs VARCHAR)"}, {"answer": "SELECT AVG(wickets) FROM table_name_24 WHERE overs > 44 AND player = \"danish kaneria\" AND average > 13.8", "question": "What is the average wickets that have overs greater than 44, danish kaneria as the player, with an average greater than 13.8?", "context": "CREATE TABLE table_name_24 (wickets INTEGER, average VARCHAR, overs VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(5) + _inns FROM table_name_40 WHERE player = \"tyron henderson\" AND wickets < 21", "question": "How many 5+/inns have tyron henderson as the player, with wickets less than 21?", "context": "CREATE TABLE table_name_40 (_inns VARCHAR, player VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT surface FROM table_name_42 WHERE partner = \"robert haybittel\"", "question": "What is the surface when the partner was Robert Haybittel?", "context": "CREATE TABLE table_name_42 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT ratings__5_capital_cities_ FROM table_name_82 WHERE episode_no = \"wonder drug\"", "question": "What was the rating of the episode Wonder Drug?", "context": "CREATE TABLE table_name_82 (ratings__5_capital_cities_ VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_77 WHERE date = \"may 12\"", "question": "Who was the winning team on May 12?", "context": "CREATE TABLE table_name_77 (winning_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_46 WHERE circuit = \"circuit zolder\"", "question": "Who was the winning team for circuit zolder?", "context": "CREATE TABLE table_name_46 (winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_1 WHERE round = \"3\"", "question": "Who was the winning team for round 3?", "context": "CREATE TABLE table_name_1 (winning_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_11 WHERE date = \"july 13\"", "question": "Who was the winning team on July 13?", "context": "CREATE TABLE table_name_11 (winning_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_95 WHERE venue = \"narbonne , france\"", "question": "Name the highest Year which has a Venue of narbonne , france?", "context": "CREATE TABLE table_name_95 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_5 WHERE year > 1990 AND venue = \"seville , spain\"", "question": "Which Competition has a Year larger than 1990 in seville , spain?", "context": "CREATE TABLE table_name_5 (competition VARCHAR, year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_71 WHERE venue = \"latakia , syria\"", "question": "COunt the Year which has a Venue of latakia , syria?", "context": "CREATE TABLE table_name_71 (year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT position FROM table_name_93 WHERE event = \"4x400 m relay\" AND venue = \"stuttgart , germany\"", "question": "Which  Position has an Event of 4x400 m relay, and a Venue of stuttgart , germany?", "context": "CREATE TABLE table_name_93 (position VARCHAR, event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_80 WHERE competition = \"european indoor championships\" AND venue = \"budapest , hungary\"", "question": "Which Year has a Competition of european indoor championships, and a Venue of budapest , hungary?", "context": "CREATE TABLE table_name_80 (year INTEGER, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_84 WHERE engine = \"opc-challenge\" AND driver = \"satrio hermanto\"", "question": "How many rounds did satrio hermanto go with an opc-challenge engine?", "context": "CREATE TABLE table_name_84 (rounds VARCHAR, engine VARCHAR, driver VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_27 WHERE driver = \"fr\u00e9d\u00e9ric vervisch\"", "question": "How many rounds did fr\u00e9d\u00e9ric vervisch go?", "context": "CREATE TABLE table_name_27 (rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_46 WHERE driver = \"shirley van der lof\"", "question": "How many rounds did shirley van der lof go?", "context": "CREATE TABLE table_name_46 (rounds VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine FROM table_name_2 WHERE class = \"c\" AND team = \"hs technik motorsport\" AND driver = \"philipp eng\"", "question": "What c class engine did philipp eng and team hs technik motorsport use?", "context": "CREATE TABLE table_name_2 (engine VARCHAR, driver VARCHAR, class VARCHAR, team VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_74 WHERE engine = \"volkswagen\" AND driver = \"rahel frey\"", "question": "What is the chassis of rahel frey's volkswagen engine?", "context": "CREATE TABLE table_name_74 (chassis VARCHAR, engine VARCHAR, driver VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_80 WHERE against = 1465 AND wins > 7", "question": "What is the greatest number of losses when the against is 1465 and there are more than 7 wins?", "context": "CREATE TABLE table_name_80 (losses INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_36 WHERE wins < 12 AND golden_rivers = \"moulamein\" AND draws < 0", "question": "What is the total of against matches when there are less than 12 wins, less than 0 draws, and Moulamein is the golden river?", "context": "CREATE TABLE table_name_36 (against INTEGER, draws VARCHAR, wins VARCHAR, golden_rivers VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_1 WHERE golden_rivers = \"hay\" AND byes > 2", "question": "What is the total losses when Hay is the golden river and there are more than 2 byes?", "context": "CREATE TABLE table_name_1 (losses VARCHAR, golden_rivers VARCHAR, byes VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_76 WHERE against = 1465 AND byes < 2", "question": "What is the total number of draws when there are 1465 against matches and less than 2 byes?", "context": "CREATE TABLE table_name_76 (draws VARCHAR, against VARCHAR, byes VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_22 WHERE draws > 0 AND against = 1390", "question": "What is the greatest number of losses when there are more than 0 draws and 1390 against matches?", "context": "CREATE TABLE table_name_22 (losses INTEGER, draws VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_76 WHERE byes > 2", "question": "What is the highest number of wins when there are more than 2 byes?", "context": "CREATE TABLE table_name_76 (wins INTEGER, byes INTEGER)"}, {"answer": "SELECT SUM(pct) FROM table_name_70 WHERE wins > 72 AND name = \"john yovicsin\"", "question": "Which percent has Wins larger than 72, and a Name of john yovicsin?", "context": "CREATE TABLE table_name_70 (pct INTEGER, wins VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(ties) FROM table_name_75 WHERE years = \"1919\u20131925\" AND pct > 0.734", "question": "How many Ties have Years of 1919\u20131925, and a Pct larger than 0.734?", "context": "CREATE TABLE table_name_75 (ties INTEGER, years VARCHAR, pct VARCHAR)"}, {"answer": "SELECT SUM(pct) FROM table_name_89 WHERE years = \"1957\u20131970\" AND wins < 78", "question": "Which Pct has Years of 1957\u20131970, and Wins smaller than 78?", "context": "CREATE TABLE table_name_89 (pct INTEGER, years VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_18 WHERE years = \"1881\" AND pct > 0.75", "question": "Which Wins have Years of 1881, and a Pct larger than 0.75?", "context": "CREATE TABLE table_name_18 (wins INTEGER, years VARCHAR, pct VARCHAR)"}, {"answer": "SELECT genre FROM table_name_41 WHERE year_recorded = \"1929\"", "question": "What's the genre of the song recorded in 1929?", "context": "CREATE TABLE table_name_41 (genre VARCHAR, year_recorded VARCHAR)"}, {"answer": "SELECT year_inducted FROM table_name_59 WHERE \"label\" = \"label\"", "question": "What's the year inducted for the label of label?", "context": "CREATE TABLE table_name_59 (year_inducted VARCHAR)"}, {"answer": "SELECT genre FROM table_name_26 WHERE year_recorded = \"1929\"", "question": "What genre is the song recorded in 1929?", "context": "CREATE TABLE table_name_26 (genre VARCHAR, year_recorded VARCHAR)"}, {"answer": "SELECT genre FROM table_name_56 WHERE year_recorded = \"1926\"", "question": "What genre is the song recorded in 1926?", "context": "CREATE TABLE table_name_56 (genre VARCHAR, year_recorded VARCHAR)"}, {"answer": "SELECT party FROM table_name_23 WHERE residence = \"san diego\"", "question": "Which Party has a Residence of san diego?", "context": "CREATE TABLE table_name_23 (party VARCHAR, residence VARCHAR)"}, {"answer": "SELECT years_in_senate FROM table_name_23 WHERE years_in_assembly = \"2010\u2013present\" AND name = \"toni atkins\"", "question": "Which Years in Senate  has a Years in Assembly of 2010\u2013present, and toni atkins?", "context": "CREATE TABLE table_name_23 (years_in_senate VARCHAR, years_in_assembly VARCHAR, name VARCHAR)"}, {"answer": "SELECT party FROM table_name_12 WHERE years_in_senate = \"\u2014\" AND years_in_assembly = \"2012\u2013present\"", "question": "Which Party has Years in Senate of \u2014, and  Years in Assembly of 2012\u2013present?", "context": "CREATE TABLE table_name_12 (party VARCHAR, years_in_senate VARCHAR, years_in_assembly VARCHAR)"}, {"answer": "SELECT residence FROM table_name_60 WHERE name = \"rich gordon\"", "question": "Show the Residence whose Name is rich gordon?", "context": "CREATE TABLE table_name_60 (residence VARCHAR, name VARCHAR)"}, {"answer": "SELECT years_in_assembly FROM table_name_27 WHERE name = \"toni atkins\"", "question": "Which Years in Assembly has a Name of toni atkins?", "context": "CREATE TABLE table_name_27 (years_in_assembly VARCHAR, name VARCHAR)"}, {"answer": "SELECT party FROM table_name_77 WHERE years_in_assembly = \"2008\u2013present\" AND name = \"tom ammiano\"", "question": "Which Party has Years in Assembly of 2008\u2013present, and a Name of tom ammiano?", "context": "CREATE TABLE table_name_77 (party VARCHAR, years_in_assembly VARCHAR, name VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_34 WHERE total < 291 AND to_par = \"+10\" AND player = \"raymond floyd\"", "question": "In what year(s) did Raymond Floyd have a total of less than 291 and a To par of +10?", "context": "CREATE TABLE table_name_34 (year_s__won VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_61 WHERE total < 284 AND player = \"jeff sluman\"", "question": "What was Jeff Sluman's To par when his total was smaller than 284?", "context": "CREATE TABLE table_name_61 (to_par VARCHAR, total VARCHAR, player VARCHAR)"}, {"answer": "SELECT finish FROM table_name_83 WHERE country = \"united states\" AND player = \"lanny wadkins\"", "question": "What was the finish for Lanny Wadkins of the United States?", "context": "CREATE TABLE table_name_83 (finish VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_55 WHERE to_par = \"+11\"", "question": "Which player had a To par of +11?", "context": "CREATE TABLE table_name_55 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_9 WHERE year_s__won = \"1983\"", "question": "From which country was the player whose year(s) won was 1983?", "context": "CREATE TABLE table_name_9 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT total FROM table_name_70 WHERE finish = \"t66\"", "question": "What is the total for the player whose finish was t66?", "context": "CREATE TABLE table_name_70 (total VARCHAR, finish VARCHAR)"}, {"answer": "SELECT type FROM table_name_7 WHERE delivered = \"1857-59\"", "question": "What is the type of the locomotive which was delivered in 1857-59?", "context": "CREATE TABLE table_name_7 (type VARCHAR, delivered VARCHAR)"}, {"answer": "SELECT MIN(quantity) FROM table_name_50 WHERE type = \"1b n2\" AND retired = \"1907-12\"", "question": "What is the lowest quantity of the 1b n2 type, which was retired in 1907-12?", "context": "CREATE TABLE table_name_50 (quantity INTEGER, type VARCHAR, retired VARCHAR)"}, {"answer": "SELECT district FROM table_name_40 WHERE incumbent = \"jim moran\"", "question": "What district is Jim Moran the incumbent for.", "context": "CREATE TABLE table_name_40 (district VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_name_61 WHERE first_elected < 2004 AND incumbent = \"eric cantor\"", "question": "What was the election result before 2004 where Eric Cantor was the incumbent?", "context": "CREATE TABLE table_name_61 (results VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT common_english FROM table_name_50 WHERE italian = \"san gallo\"", "question": "What is the common English for the Italian word san gallo?", "context": "CREATE TABLE table_name_50 (common_english VARCHAR, italian VARCHAR)"}, {"answer": "SELECT italian FROM table_name_44 WHERE common_english = \"glarus\"", "question": "What is the italian word for Glarus?", "context": "CREATE TABLE table_name_44 (italian VARCHAR, common_english VARCHAR)"}, {"answer": "SELECT common_english FROM table_name_81 WHERE abbr = \"ai\"", "question": "What is the common english word with the abbr of ai?", "context": "CREATE TABLE table_name_81 (common_english VARCHAR, abbr VARCHAR)"}, {"answer": "SELECT abbr FROM table_name_65 WHERE italian = \"argovia\"", "question": "What is the abbr of argovia?", "context": "CREATE TABLE table_name_65 (abbr VARCHAR, italian VARCHAR)"}, {"answer": "SELECT french FROM table_name_72 WHERE common_english = \"fribourg\"", "question": "What is the french word for fribourg?", "context": "CREATE TABLE table_name_72 (french VARCHAR, common_english VARCHAR)"}, {"answer": "SELECT abbr FROM table_name_75 WHERE common_english = \"zug\"", "question": "What is the abbr for zug?", "context": "CREATE TABLE table_name_75 (abbr VARCHAR, common_english VARCHAR)"}, {"answer": "SELECT finish FROM table_name_61 WHERE date = \"june 1, 2008\"", "question": "What is the Finish on June 1, 2008?", "context": "CREATE TABLE table_name_61 (finish VARCHAR, date VARCHAR)"}, {"answer": "SELECT track FROM table_name_56 WHERE location = \"louisville, kentucky\"", "question": "What is the Track in Louisville, Kentucky?", "context": "CREATE TABLE table_name_56 (track VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_73 WHERE date = \"march 30, 2008\"", "question": "What is the Location of the Event on March 30, 2008?", "context": "CREATE TABLE table_name_73 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT race FROM table_name_43 WHERE purse = \"$300,000\"", "question": "What Race has a Purse of $300,000?", "context": "CREATE TABLE table_name_43 (race VARCHAR, purse VARCHAR)"}, {"answer": "SELECT purse FROM table_name_33 WHERE date = \"january 3, 2010\"", "question": "What is the Purse on January 3, 2010?", "context": "CREATE TABLE table_name_33 (purse VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_17 WHERE country = \"united states\" AND score = 71 - 70 - 72 - 68 = 281", "question": "What did United States place when the score was 71-70-72-68=281?", "context": "CREATE TABLE table_name_17 (place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_94 WHERE country = \"united states\" AND player = \"lanny wadkins\"", "question": "What was the average money for United States when Lanny Wadkins played?", "context": "CREATE TABLE table_name_94 (money___ INTEGER, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_92 WHERE score = 71 - 70 - 72 - 68 = 281", "question": "What was the to par when the score was 71-70-72-68=281?", "context": "CREATE TABLE table_name_92 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_58 WHERE attendance = 117", "question": "What is the away team of the game with an attendance of 117?", "context": "CREATE TABLE table_name_58 (away_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT career_sr FROM table_name_66 WHERE 1996 = \"a\" AND tournament = \"madrid (stuttgart)\"", "question": "Madrid (Stuttgart) tournament with a 1996 of A has this for a Career SR?", "context": "CREATE TABLE table_name_66 (career_sr VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT election FROM table_name_11 WHERE first_party = \"conservative\" AND first_member = \"rowland smith\" AND second_member = \"sir henry wilmot, bt\"", "question": "Which election has a conservative first party, Rowland Smith as first member, and Sir Henry Wilmot, Bt as second member?", "context": "CREATE TABLE table_name_11 (election VARCHAR, second_member VARCHAR, first_party VARCHAR, first_member VARCHAR)"}, {"answer": "SELECT first_party FROM table_name_50 WHERE second_member = \"charles robert colvile\" AND second_party = \"liberal\"", "question": "Which of the first parties has second member as  Charles Robert Colvile, and a liberal second party?", "context": "CREATE TABLE table_name_50 (first_party VARCHAR, second_member VARCHAR, second_party VARCHAR)"}, {"answer": "SELECT election FROM table_name_40 WHERE second_member = \"charles robert colvile\" AND first_party = \"conservative\" AND first_member = \"william mundy\"", "question": "Which election has second member Charles Robert Colvile, a conservative first party, and first member William Mundy?", "context": "CREATE TABLE table_name_40 (election VARCHAR, first_member VARCHAR, second_member VARCHAR, first_party VARCHAR)"}, {"answer": "SELECT second_party FROM table_name_31 WHERE second_member = \"charles robert colvile\" AND first_party = \"conservative\" AND first_member = \"william mundy\"", "question": "Which of the second parties has second member Charles Robert Colvile, a conservative first party, and first member William Mundy?", "context": "CREATE TABLE table_name_31 (second_party VARCHAR, first_member VARCHAR, second_member VARCHAR, first_party VARCHAR)"}, {"answer": "SELECT first_member FROM table_name_79 WHERE election = \"1868\"", "question": "Who is the first member in the 1868 election?", "context": "CREATE TABLE table_name_79 (first_member VARCHAR, election VARCHAR)"}, {"answer": "SELECT source FROM table_name_14 WHERE type = \"transfer\" AND nat = \"mex\"", "question": "WHAT IS THE SOURCE WITH A TYPE OF TRANSFER AND MEX?", "context": "CREATE TABLE table_name_14 (source VARCHAR, type VARCHAR, nat VARCHAR)"}, {"answer": "SELECT name FROM table_name_53 WHERE moving_to = \"bayer leverkusen\"", "question": "WHAT IS THE NAME WITH BAYER LEVERKUSEN?", "context": "CREATE TABLE table_name_53 (name VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT name FROM table_name_74 WHERE transfer_fee = \"free\" AND moving_to = \"retired\"", "question": "WHAT NAME HAS A FREE TRANSFER FREE AND RETIRED?", "context": "CREATE TABLE table_name_74 (name VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_62 WHERE type = \"transfer\" AND name = \"dos santos\"", "question": "WHAT TRANSFER FEE HAS A TYPE OF TRANSFER FOR DOS SANTOS?", "context": "CREATE TABLE table_name_62 (transfer_fee VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(all_around) FROM table_name_68 WHERE total = 37.75", "question": "What is the sum of the all around with a 37.75 total?", "context": "CREATE TABLE table_name_68 (all_around INTEGER, total VARCHAR)"}, {"answer": "SELECT AVG(final) FROM table_name_12 WHERE all_around > 19.4 AND total > 39.9", "question": "What is the average final with an all around larger than 19.4 and total more than 39.9?", "context": "CREATE TABLE table_name_12 (final INTEGER, all_around VARCHAR, total VARCHAR)"}, {"answer": "SELECT name FROM table_name_48 WHERE dates_active = \"season aggregates\"", "question": "What is the name of the storm active during season aggregates?", "context": "CREATE TABLE table_name_48 (name VARCHAR, dates_active VARCHAR)"}, {"answer": "SELECT report FROM table_name_92 WHERE status = \"tour match\" AND against < 22", "question": "What report has tour match as the status, with an against less than 22?", "context": "CREATE TABLE table_name_92 (report VARCHAR, status VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_66 WHERE venue = \"asba park, kimberley\"", "question": "How many againsts have asba park, kimberley as the venue?", "context": "CREATE TABLE table_name_66 (against INTEGER, venue VARCHAR)"}, {"answer": "SELECT status FROM table_name_2 WHERE opposing_team = \"gauteng falcons\"", "question": "What status has gauteng falcons as the opposing team?", "context": "CREATE TABLE table_name_2 (status VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT opposing_team FROM table_name_12 WHERE status = \"second test\"", "question": "What opposing team has second test as the status?", "context": "CREATE TABLE table_name_12 (opposing_team VARCHAR, status VARCHAR)"}, {"answer": "SELECT report FROM table_name_81 WHERE opposing_team = \"gauteng falcons\"", "question": "What report has gauteng falcons as the opposing team?", "context": "CREATE TABLE table_name_81 (report VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT status FROM table_name_34 WHERE against = 18", "question": "What status has 18 as the against?", "context": "CREATE TABLE table_name_34 (status VARCHAR, against VARCHAR)"}, {"answer": "SELECT receipts_per_arrival_2010__col_2___col_1____usd__ FROM table_name_71 WHERE selected_caribbean_and_n_latin_america_countries = \"colombia (1)\"", "question": "What is the number of recepits per arrival in 2010 (col 2)/(col 1) USD with colombia (1) as the selected carribean and latin american country?", "context": "CREATE TABLE table_name_71 (receipts_per_arrival_2010__col_2___col_1____usd__ VARCHAR, selected_caribbean_and_n_latin_america_countries VARCHAR)"}, {"answer": "SELECT 17 AS th_c FROM table_name_76 WHERE initial_syllable_open_semi_open_unstressed_vowels = \"o /\u0275/\"", "question": "What is 17th c., when Initial-Syllable Open/Semi-Open Unstressed Vowels is \"o /\u0275/\"?", "context": "CREATE TABLE table_name_76 (initial_syllable_open_semi_open_unstressed_vowels VARCHAR)"}, {"answer": "SELECT british FROM table_name_12 WHERE examples = \"november, rotunda, colossus, proscenium\"", "question": "What is British, when Examples is \"November, rotunda, colossus, proscenium\"?", "context": "CREATE TABLE table_name_12 (british VARCHAR, examples VARCHAR)"}, {"answer": "SELECT american FROM table_name_23 WHERE british = \"\u026a, \u0259\" AND initial_syllable_open_semi_open_unstressed_vowels = \"\u00e6 /\u0268/\"", "question": "What is American, when British is \"\u026a, \u0259\", and when Initial-Syllable Open/Semi-Open Unstressed Vowels is \"\u00e6 /\u0268/\"?", "context": "CREATE TABLE table_name_23 (american VARCHAR, british VARCHAR, initial_syllable_open_semi_open_unstressed_vowels VARCHAR)"}, {"answer": "SELECT initial_syllable_open_semi_open_unstressed_vowels FROM table_name_15 WHERE australian = \"\u0259\"", "question": "What is Initial-Syllable Open/Semi-Open Unstresses Vowels, when Australian is \"\u0259\"?", "context": "CREATE TABLE table_name_15 (initial_syllable_open_semi_open_unstressed_vowels VARCHAR, australian VARCHAR)"}, {"answer": "SELECT australian FROM table_name_12 WHERE british = \"a\u026a, \u026a, \u0259\"", "question": "What is Australian, when British is \"a\u026a, \u026a, \u0259\"?", "context": "CREATE TABLE table_name_12 (australian VARCHAR, british VARCHAR)"}, {"answer": "SELECT american FROM table_name_7 WHERE initial_syllable_open_semi_open_unstressed_vowels = \"y /a\u026a, \u0268/\"", "question": "What is American, when Initial-Syllable Open/Semi-Open Unstressed Vowels is \"y /a\u026a, \u0268/\"?", "context": "CREATE TABLE table_name_7 (american VARCHAR, initial_syllable_open_semi_open_unstressed_vowels VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE catalog = \"rcd 10160\"", "question": "What is the date for catalog RCD 10160?", "context": "CREATE TABLE table_name_15 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT country FROM table_name_45 WHERE format = \"cd\" AND catalog = \"rcd 10523\"", "question": "What country has CD format and catalog RCD 10523?", "context": "CREATE TABLE table_name_45 (country VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT country FROM table_name_83 WHERE date = \"october 20, 1976\"", "question": "Which country is dated October 20, 1976?", "context": "CREATE TABLE table_name_83 (country VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_65 WHERE catalog = \"cdzap22\"", "question": "Which label has the catalog CDZAP22?", "context": "CREATE TABLE table_name_65 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE country = \"united kingdom\" AND catalog = \"cdzap22\"", "question": "What is the date for the catalog CDZAP22 in the United Kingdom?", "context": "CREATE TABLE table_name_69 (date VARCHAR, country VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT place FROM table_name_84 WHERE score = 66 AND country = \"united states\" AND player = \"dudley hart\"", "question": "What is Place, when Score is \"66\", when Country is \"United States\", and when Player is \"Dudley Hart\"?", "context": "CREATE TABLE table_name_84 (place VARCHAR, player VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_32 WHERE place = \"1\"", "question": "What is the lowest Score, when Place is \"1\"?", "context": "CREATE TABLE table_name_32 (score INTEGER, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_25 WHERE score = 66 AND player = \"brad faxon\"", "question": "What is To Par, when Score is \"66\", and when Player is \"Brad Faxon\"?", "context": "CREATE TABLE table_name_25 (to_par VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_1 WHERE year > 2008 AND championship = \"paul hunter classic\"", "question": "What is the Opponent in the final after 2008 at the Paul Hunter Classic?", "context": "CREATE TABLE table_name_1 (opponent_in_the_final VARCHAR, year VARCHAR, championship VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_name_40 WHERE results = \"lost re-election democratic gain\" AND incumbent = \"john hostettler\"", "question": "What is the latest year for first elected with john hostettler as incumbent and a result of lost re-election democratic gain?", "context": "CREATE TABLE table_name_40 (first_elected INTEGER, results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT owner_operator FROM table_name_18 WHERE from_to = \"kambalda to esperance\"", "question": "Who is the owner/operator of the line from Kambalda to Esperance?", "context": "CREATE TABLE table_name_18 (owner_operator VARCHAR, from_to VARCHAR)"}, {"answer": "SELECT name__year_commissioned_ FROM table_name_74 WHERE from_to = \"karratha to port hedland\"", "question": "What is the name of the line from Karratha to Port Hedland?", "context": "CREATE TABLE table_name_74 (name__year_commissioned_ VARCHAR, from_to VARCHAR)"}, {"answer": "SELECT maximum_diameter FROM table_name_57 WHERE name__year_commissioned_ = \"mid west gas pipeline (1999)\"", "question": "What is the maximum diameter of the Mid West Gas Pipeline (1999)?", "context": "CREATE TABLE table_name_57 (maximum_diameter VARCHAR, name__year_commissioned_ VARCHAR)"}, {"answer": "SELECT owner_operator FROM table_name_85 WHERE licence_number = \"pl 59\"", "question": "Who is the owner operator who has license number PL 59?", "context": "CREATE TABLE table_name_85 (owner_operator VARCHAR, licence_number VARCHAR)"}, {"answer": "SELECT licence_number FROM table_name_14 WHERE maximum_diameter = \"400 mm\"", "question": "What is the license number where the maximum diameter is 400 mm?", "context": "CREATE TABLE table_name_14 (licence_number VARCHAR, maximum_diameter VARCHAR)"}, {"answer": "SELECT name__year_commissioned_ FROM table_name_7 WHERE licence_number = \"pl 22\"", "question": "What is the name where the license number is PL 22?", "context": "CREATE TABLE table_name_7 (name__year_commissioned_ VARCHAR, licence_number VARCHAR)"}, {"answer": "SELECT venue FROM table_name_5 WHERE against = 16", "question": "Which venue has 16 against?", "context": "CREATE TABLE table_name_5 (venue VARCHAR, against VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_52 WHERE status = \"five nations\" AND opposing_teams = \"wales\"", "question": "What is the against for the opposing team of Wales with the status of Five Nations?", "context": "CREATE TABLE table_name_52 (against INTEGER, status VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_77 WHERE rank > 4 AND player = \"dean minors\"", "question": "Can you tell me the average Average that has the Rank larger than 4, and the Player of dean minors?", "context": "CREATE TABLE table_name_77 (average INTEGER, rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT venue FROM table_name_54 WHERE runner_up = \"john zibnack\"", "question": "What is the venue where john zibnack was the runner-up?", "context": "CREATE TABLE table_name_54 (venue VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT winner FROM table_name_14 WHERE location = \"des moines, iowa\" AND runner_up = \"p.h. finkbank\"", "question": "Who is the winner in des moines, iowa where p.h. finkbank was the runner-up?", "context": "CREATE TABLE table_name_14 (winner VARCHAR, location VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT location FROM table_name_63 WHERE runner_up = \"ed c. kingsley\" AND year = \"1939\"", "question": "What is the location where ed c. kingsley was the runner-up in 1939?", "context": "CREATE TABLE table_name_63 (location VARCHAR, runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner FROM table_name_81 WHERE runner_up = \"mark fuller\"", "question": "Who is the winner when mark fuller was the runner-up?", "context": "CREATE TABLE table_name_81 (winner VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT venue FROM table_name_86 WHERE year = \"2002\"", "question": "What is the venue in 2002?", "context": "CREATE TABLE table_name_86 (venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_78 WHERE year = \"1901\"", "question": "Who is the runner-up in 1901?", "context": "CREATE TABLE table_name_78 (runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT australian FROM table_name_81 WHERE short_vowels = \"e /\u025b/\"", "question": "What Australian sound is equivalent to e /\u025b/?", "context": "CREATE TABLE table_name_81 (australian VARCHAR, short_vowels VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE home = \"new york islanders\"", "question": "What was the score of the game when they played at new york islanders?", "context": "CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT r_epp FROM table_name_90 WHERE j_thiessen = \"tjoatj\"", "question": "Which of the R. Epp, has J Thiessen of Tjoatj?", "context": "CREATE TABLE table_name_90 (r_epp VARCHAR, j_thiessen VARCHAR)"}, {"answer": "SELECT r_epp FROM table_name_97 WHERE ed_zacharias = \"rollen, jerolt, golt\"", "question": "Which of the R. Epp, has Ed Zacharias from Rollen, Jerolt, Golt?", "context": "CREATE TABLE table_name_97 (r_epp VARCHAR, ed_zacharias VARCHAR)"}, {"answer": "SELECT a_dyck FROM table_name_68 WHERE j_thiessen = \"du\"", "question": "Which of the A. Dyck has J. Thiessen of Du?", "context": "CREATE TABLE table_name_68 (a_dyck VARCHAR, j_thiessen VARCHAR)"}, {"answer": "SELECT h_rempel FROM table_name_31 WHERE j_j_neufeld = \"sajen\"", "question": "Which of the H. Rempel has J. J. Neufeld of Sajen?", "context": "CREATE TABLE table_name_31 (h_rempel VARCHAR, j_j_neufeld VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_20 WHERE status = \"six nations\" AND date = \"30/03/2003\"", "question": "What is the sum of Against, when Status is \"Six Nations\", and when Date is \"30/03/2003\"?", "context": "CREATE TABLE table_name_20 (against INTEGER, status VARCHAR, date VARCHAR)"}, {"answer": "SELECT opposing_teams FROM table_name_86 WHERE against < 6", "question": "What is Opposing Teams, when Against is less than 6?", "context": "CREATE TABLE table_name_86 (opposing_teams VARCHAR, against INTEGER)"}, {"answer": "SELECT date FROM table_name_87 WHERE against = 22", "question": "What is Date, when Against is \"22\"?", "context": "CREATE TABLE table_name_87 (date VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(money___) AS \u00a3__ FROM table_name_44 WHERE country = \"south africa\"", "question": "What shows for money (\u00a3) when South Africa is the country?", "context": "CREATE TABLE table_name_44 (money___ INTEGER, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_66 WHERE player = \"lanny wadkins\"", "question": "What is the To par when Lanny Wadkins is the player?", "context": "CREATE TABLE table_name_66 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE outcome = \"runner-up\" AND tournament = \"marco island\"", "question": "What was the score of the marco island tournament match when Kathleen Horvath won runner-up?", "context": "CREATE TABLE table_name_91 (score VARCHAR, outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_55 WHERE date = \"july 6, 1987\"", "question": "What was the tournament that was on july 6, 1987?", "context": "CREATE TABLE table_name_55 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT position FROM table_name_94 WHERE pick = 246", "question": "What is pick 246's position?", "context": "CREATE TABLE table_name_94 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_58 WHERE player = \"chuck bryant\" AND nfl_club = \"san diego chargers\"", "question": "Which Pick has a Player of chuck bryant, and an NFL Club of san diego chargers?", "context": "CREATE TABLE table_name_58 (pick VARCHAR, player VARCHAR, nfl_club VARCHAR)"}, {"answer": "SELECT position FROM table_name_29 WHERE nfl_club = \"pittsburgh steelers\"", "question": "What is the position of the pittsburgh steelers?", "context": "CREATE TABLE table_name_29 (position VARCHAR, nfl_club VARCHAR)"}, {"answer": "SELECT nfl_club FROM table_name_43 WHERE player = \"sam tidmore\" AND pick = 81", "question": "Which NFL Club has a Player of sam tidmore, and a Pick of 81?", "context": "CREATE TABLE table_name_43 (nfl_club VARCHAR, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT club FROM table_name_1 WHERE round = \"group stage round 1 and 5\"", "question": "Which club had round of group stage round 1 and 5?", "context": "CREATE TABLE table_name_1 (club VARCHAR, round VARCHAR)"}, {"answer": "SELECT aggregate FROM table_name_54 WHERE round = \"first round\" AND club = \"k.s.v. waregem\"", "question": "What is the aggregate for the first round for K.S.V. Waregem?", "context": "CREATE TABLE table_name_54 (aggregate VARCHAR, round VARCHAR, club VARCHAR)"}, {"answer": "SELECT away FROM table_name_40 WHERE round = \"second round\"", "question": "What is the away where the round is the second round?", "context": "CREATE TABLE table_name_40 (away VARCHAR, round VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_name_60 WHERE run_time = \"24:44\"", "question": "What was the broadcaste date for the episode with a run time of 24:44?", "context": "CREATE TABLE table_name_60 (broadcast_date VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT episode FROM table_name_65 WHERE viewers__in_millions_ = \"9.1\"", "question": "Which Episode had 9.1 million viewers?", "context": "CREATE TABLE table_name_65 (episode VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_45 WHERE previous_team__league_ = \"kingston frontenacs ( ohl )\" AND player = \"anthony stewart category:articles with hcards\"", "question": "What is Country, when Previous Team (League) is \"Kingston Frontenacs ( OHL )\", and when Player is \"Anthony Stewart Category:Articles with hCards\"?", "context": "CREATE TABLE table_name_45 (country VARCHAR, previous_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_80 WHERE pick = \"3\" AND position = \"defense\" AND year < 2010", "question": "What is Player, when Pick is \"3\", when Position is \"Defense\", and when Year is less than 2010?", "context": "CREATE TABLE table_name_80 (player VARCHAR, year VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_81 WHERE year < 2000 AND player = \"radek dvorak category:articles with hcards\"", "question": "What is Position, when Year is less than 2000, and when Player is \"Radek Dvorak Category:Articles with hCards\"?", "context": "CREATE TABLE table_name_81 (position VARCHAR, year VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_90 WHERE previous_team__league_ = \"medicine hat tigers ( whl )\" AND year < 2002", "question": "What is Player, when Previous Team (League) is \"Medicine Hat Tigers ( WHL )\", and when Year is less than 2002?", "context": "CREATE TABLE table_name_90 (player VARCHAR, previous_team__league_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT country FROM table_name_93 WHERE year = 1994", "question": "What is Country, when Year is \"1994\"?", "context": "CREATE TABLE table_name_93 (country VARCHAR, year VARCHAR)"}, {"answer": "SELECT episode FROM table_name_13 WHERE viewers__in_millions_ = \"7.8\"", "question": "What episode has 7.8 million viewers?", "context": "CREATE TABLE table_name_13 (episode VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT episode FROM table_name_51 WHERE run_time = \"25:12\"", "question": "What episode has a run time of 25:12?", "context": "CREATE TABLE table_name_51 (episode VARCHAR, run_time VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_name_46 WHERE viewers__in_millions_ = \"7.0\"", "question": "What is the broadcast date with 7.0 million viewers?", "context": "CREATE TABLE table_name_46 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_66 WHERE player = \"dave stockton\"", "question": "What is the average total for Dave Stockton?", "context": "CREATE TABLE table_name_66 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(to_par) FROM table_name_38 WHERE country = \"united states\" AND year_s__won = \"1967\" AND total > 146", "question": "What is the sum of the to par for the United States in the winning year of 1967, and has a total of more than 146?", "context": "CREATE TABLE table_name_38 (to_par INTEGER, total VARCHAR, country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT score FROM table_name_42 WHERE away_team = \"arsenal\"", "question": "What is the score for the game in which Arsenal was the away team?", "context": "CREATE TABLE table_name_42 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE tie_no = \"15\"", "question": "What is the score for the tie number 15?", "context": "CREATE TABLE table_name_13 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_78 WHERE manner_of_departure = \"end of tenure as caretaker\" AND replaced_by = \"jesper hansen\"", "question": "What Outgoing manager left at his end of tenure as caretaker and was Replaced by Jesper Hansen?", "context": "CREATE TABLE table_name_78 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT team FROM table_name_52 WHERE position_in_table = \"pre-season\" AND manner_of_departure = \"end of tenure as caretaker\"", "question": "What Team's Pre-Season Manager's manner of departure was the end of tenure as caretaker?", "context": "CREATE TABLE table_name_52 (team VARCHAR, position_in_table VARCHAR, manner_of_departure VARCHAR)"}, {"answer": "SELECT place FROM table_name_87 WHERE player = \"fredrik jacobson\"", "question": "What place is Fredrik Jacobson from?", "context": "CREATE TABLE table_name_87 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_98 WHERE score < 67 AND place = \"t1\" AND player = \"tiger woods\"", "question": "What is the to par of Tiger Woods, where his score was less than 67, and he was in t1 place?", "context": "CREATE TABLE table_name_98 (to_par VARCHAR, player VARCHAR, score VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_33 WHERE player = \"brad faxon\"", "question": "What place is player Brad Faxon from?", "context": "CREATE TABLE table_name_33 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_90 WHERE country = \"sweden\"", "question": "What is Sweden's lowest score?", "context": "CREATE TABLE table_name_90 (score INTEGER, country VARCHAR)"}, {"answer": "SELECT sub_parish__sogn_ FROM table_name_92 WHERE year_built > 1894 AND parish__prestegjeld_ = \"jostedal parish\"", "question": "Which Sub-Parish (Sogn) was built after 1894 in the Parish (Prestegjeld) of jostedal parish?", "context": "CREATE TABLE table_name_92 (sub_parish__sogn_ VARCHAR, year_built VARCHAR, parish__prestegjeld_ VARCHAR)"}, {"answer": "SELECT sub_parish__sogn_ FROM table_name_30 WHERE parish__prestegjeld_ = \"hafslo parish\" AND church_name = \"hafslo kyrkje\"", "question": "Which Sub-Parish (Sogn) is in the Parish (Prestegjeld) of hafslo parish and has a church called Hafslo Kyrkje?", "context": "CREATE TABLE table_name_30 (sub_parish__sogn_ VARCHAR, parish__prestegjeld_ VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT sub_parish__sogn_ FROM table_name_52 WHERE parish__prestegjeld_ = \"hafslo parish\" AND location_of_the_church = \"urnes\"", "question": "Which Sub-Parish (Sogn) is in the Parish (Prestegjeld) of hafslo parish and is located in the Church of Urnes?", "context": "CREATE TABLE table_name_52 (sub_parish__sogn_ VARCHAR, parish__prestegjeld_ VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT sub_parish__sogn_ FROM table_name_66 WHERE year_built < 1883 AND parish__prestegjeld_ = \"jostedal parish\" AND location_of_the_church = \"gaupne\"", "question": "Which Sub-Parish (Sogn) was built before 1883 in the Parish (Prestegjeld) of jostedal parish and is located in the Church of Gaupne?", "context": "CREATE TABLE table_name_66 (sub_parish__sogn_ VARCHAR, location_of_the_church VARCHAR, year_built VARCHAR, parish__prestegjeld_ VARCHAR)"}, {"answer": "SELECT sub_parish__sogn_ FROM table_name_99 WHERE church_name = \"jostedal kyrkje\"", "question": "Which Sub-Parish (Sogn) has a church named Jostedal Kyrkje?", "context": "CREATE TABLE table_name_99 (sub_parish__sogn_ VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT national_title FROM table_name_11 WHERE miss_international = \"ikumi yoshimatsu\"", "question": "What's the national title of miss international ikumi yoshimatsu?", "context": "CREATE TABLE table_name_11 (national_title VARCHAR, miss_international VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_6 WHERE country_territory = \"philippines\"", "question": "What's the earliest year the philippines won?", "context": "CREATE TABLE table_name_6 (year INTEGER, country_territory VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_51 WHERE country_territory = \"lebanon\"", "question": "What's the average year lebanon won?", "context": "CREATE TABLE table_name_51 (year INTEGER, country_territory VARCHAR)"}, {"answer": "SELECT country_territory FROM table_name_33 WHERE miss_international = \"ma\u0142gorzata ro\u017cniecka\"", "question": "What country or territory is ma\u0142gorzata ro\u017cniecka from?", "context": "CREATE TABLE table_name_33 (country_territory VARCHAR, miss_international VARCHAR)"}, {"answer": "SELECT teams FROM table_name_84 WHERE league = \"regionalliga s\u00fcd\"", "question": "Which team had a league of regionalliga s\u00fcd?", "context": "CREATE TABLE table_name_84 (teams VARCHAR, league VARCHAR)"}, {"answer": "SELECT home FROM table_name_79 WHERE season = \"1949-50\"", "question": "What was the home for season 1949-50?", "context": "CREATE TABLE table_name_79 (home VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_2 WHERE home = \"2-3\"", "question": "Which season had a home 2-3?", "context": "CREATE TABLE table_name_2 (season VARCHAR, home VARCHAR)"}, {"answer": "SELECT teams FROM table_name_80 WHERE season = \"1954-55\"", "question": "Which team had a season 1954-55?", "context": "CREATE TABLE table_name_80 (teams VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_33 WHERE away = \"2-0\"", "question": "What season has an away 2-0?", "context": "CREATE TABLE table_name_33 (season VARCHAR, away VARCHAR)"}, {"answer": "SELECT teams FROM table_name_75 WHERE home = \"2-3\"", "question": "What team has a home of 2-3?", "context": "CREATE TABLE table_name_75 (teams VARCHAR, home VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_35 WHERE nation = \"lithuania\" AND silver > 0", "question": "What is the total that wehn Lithuania is the nation, and Silver is more than 0?", "context": "CREATE TABLE table_name_35 (total INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_73 WHERE bronze > 0 AND gold > 1 AND nation = \"japan\" AND silver < 0", "question": "What is the rank when bronze was more than 0, gold more than 1, Nation is japan, and silver less than 0?", "context": "CREATE TABLE table_name_73 (rank INTEGER, silver VARCHAR, nation VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_24 WHERE total < 1", "question": "What is the rank when the total is less than 1?", "context": "CREATE TABLE table_name_24 (rank INTEGER, total INTEGER)"}, {"answer": "SELECT MAX(total) FROM table_name_89 WHERE silver > 0 AND bronze < 0", "question": "What is the total when silver is more than 0, and bronze less than 0?", "context": "CREATE TABLE table_name_89 (total INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_10 WHERE nation = \"serbia\" AND gold > 0", "question": "What is the rank that when Serbia is the nation, and gold is larger than 0?", "context": "CREATE TABLE table_name_10 (rank INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_50 WHERE to_par < 12 AND player = \"john daly\"", "question": "Which Year(s) won has a To par smaller than 12, and a Player of john daly?", "context": "CREATE TABLE table_name_50 (year_s__won VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_21 WHERE to_par = 12 AND country = \"fiji\"", "question": "Which Player has a To par of 12, and a Country of fiji?", "context": "CREATE TABLE table_name_21 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_17 WHERE to_par > 12", "question": "Which Total has a To par larger than 12?", "context": "CREATE TABLE table_name_17 (total INTEGER, to_par INTEGER)"}, {"answer": "SELECT SUM(to_par) FROM table_name_32 WHERE total > 149 AND country = \"united states\" AND year_s__won = \"1997\"", "question": "How much To par has a Total larger than 149, and a Country of united states, and a Year(s) won of 1997?", "context": "CREATE TABLE table_name_32 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR, country VARCHAR)"}, {"answer": "SELECT network FROM table_name_34 WHERE rank > 5 AND show = \"2012 summer olympics closing ceremony in london\"", "question": "Which Network has a Rank larger than 5, a Show of 2012 summer olympics closing ceremony in london?", "context": "CREATE TABLE table_name_34 (network VARCHAR, rank VARCHAR, show VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_20 WHERE network = \"bbc one\" AND number_of_viewers = \"30.15million\"", "question": "Which Rank has a Network of bbc one, and a Number of Viewers of 30.15million? Question 2", "context": "CREATE TABLE table_name_20 (rank INTEGER, network VARCHAR, number_of_viewers VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE rank > 2 AND network = \"itv\"", "question": "When has a Rank larger than 2 and a Network of itv?", "context": "CREATE TABLE table_name_13 (date VARCHAR, rank VARCHAR, network VARCHAR)"}, {"answer": "SELECT term_of_office FROM table_name_1 WHERE state = \"nsw\" AND member = \"leonard reynolds\"", "question": "What is the Term of office for Leonard Reynolds of NSW?", "context": "CREATE TABLE table_name_1 (term_of_office VARCHAR, state VARCHAR, member VARCHAR)"}, {"answer": "SELECT state FROM table_name_3 WHERE electorate = \"cunningham\"", "question": "What state shows for Cunningham?", "context": "CREATE TABLE table_name_3 (state VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT electorate FROM table_name_16 WHERE term_of_office = \"1955\u20131972\" AND member = \"peter howson\"", "question": "What is the Electorate when the term of office was 1955\u20131972, for Peter Howson?", "context": "CREATE TABLE table_name_16 (electorate VARCHAR, term_of_office VARCHAR, member VARCHAR)"}, {"answer": "SELECT party FROM table_name_29 WHERE term_of_office = \"1951\u20131966\" AND state = \"sa\"", "question": "What party has a term of office of 1951\u20131966, and a State of sa?", "context": "CREATE TABLE table_name_29 (party VARCHAR, term_of_office VARCHAR, state VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_48 WHERE arena = \"jobing.com arena\"", "question": "What was the Attendance at Jobing.com Arena?", "context": "CREATE TABLE table_name_48 (attendance VARCHAR, arena VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE loss = \"leneveu (1\u20130\u20131)\"", "question": "What is the Date of the game with a Loss of Leneveu (1\u20130\u20131)?", "context": "CREATE TABLE table_name_75 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE record = \"2\u20131\u20131\"", "question": "What is the Date with a game with a Record of 2\u20131\u20131?", "context": "CREATE TABLE table_name_68 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE arena = \"jobing.com arena\"", "question": "What is the Score at Jobing.com Arena?", "context": "CREATE TABLE table_name_30 (score VARCHAR, arena VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_40 WHERE date = \"september 26\"", "question": "What is the Opponent of the game on September 26?", "context": "CREATE TABLE table_name_40 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_68 WHERE region = \"united states\" AND format = \"cassette\"", "question": "What Label has a Region of united states, and a Format of cassette?", "context": "CREATE TABLE table_name_68 (label VARCHAR, region VARCHAR, format VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE label = \"grilled cheese\"", "question": "What Date has a Label of grilled cheese?", "context": "CREATE TABLE table_name_25 (date VARCHAR, label VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_5 WHERE label = \"geffen records / universal music special markets\"", "question": "What Catalog has a Label of geffen records / universal music special markets?", "context": "CREATE TABLE table_name_5 (catalog VARCHAR, label VARCHAR)"}, {"answer": "SELECT label FROM table_name_88 WHERE format = \"cd\" AND catalog = \"crgd 86136\"", "question": "What Label has a Format of cd, and a Catalog of crgd 86136?", "context": "CREATE TABLE table_name_88 (label VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_47 WHERE catalog = \"crgd 86136\"", "question": "What Region has a Catalog of crgd 86136?", "context": "CREATE TABLE table_name_47 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_13 WHERE catalog = \"486 136-2\"", "question": "What Label has a Catalog of 486 136-2?", "context": "CREATE TABLE table_name_13 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_98 WHERE result = \"0-3\"", "question": "Which Opponent has a Result of 0-3?", "context": "CREATE TABLE table_name_98 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_35 WHERE result = \"1-0\" AND venue = \"h\" AND round = \"sf\"", "question": "What is the total attendance with a 1-0 result, at Venue H, and Round SF?", "context": "CREATE TABLE table_name_35 (attendance INTEGER, round VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_27 WHERE venue = \"h\" AND round = \"r2\"", "question": "What is the lowest attendance at Venue H in Round R2?", "context": "CREATE TABLE table_name_27 (attendance INTEGER, venue VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_64 WHERE opponent = \"club brugge\" AND venue = \"a\"", "question": "What is the highest attendance for the opponents Club Brugge in Venue A?", "context": "CREATE TABLE table_name_64 (attendance INTEGER, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT round FROM table_name_67 WHERE opponent = \"cska sofia\" AND venue = \"a\"", "question": "What is the round for the opponent CSKA Sofia in Venue A?", "context": "CREATE TABLE table_name_67 (round VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT player FROM table_name_17 WHERE place = \"t10\"", "question": "What player placed t10?", "context": "CREATE TABLE table_name_17 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT MAX(score) FROM table_name_93 WHERE player = \"bernhard langer\"", "question": "What was Bernhard Langer's highest score?", "context": "CREATE TABLE table_name_93 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_35 WHERE country = \"united states\" AND player = \"craig stadler\"", "question": "What was Craig Stadler's lowest score for United states?", "context": "CREATE TABLE table_name_35 (score INTEGER, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_96 WHERE country = \"ireland\"", "question": "What Money (\u00a3) has a Country of ireland?", "context": "CREATE TABLE table_name_96 (money___\u00a3__ VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_2 WHERE place = \"t10\"", "question": "What Player has a Place of t10?", "context": "CREATE TABLE table_name_2 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_85 WHERE score = 71 - 73 - 71 - 71 = 286", "question": "What To par has a Score of 71-73-71-71=286?", "context": "CREATE TABLE table_name_85 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_92 WHERE to_par = \"\u20134\"", "question": "What Place has a To par of \u20134?", "context": "CREATE TABLE table_name_92 (place VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE place = \"t8\" AND country = \"scotland\"", "question": "What Score has a Place of t8, and a Country of scotland?", "context": "CREATE TABLE table_name_86 (score VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_52 WHERE country = \"united states\" AND score = 67 - 66 - 78 - 77 = 288", "question": "What To par has a Country of united states, and a Score of 67-66-78-77=288?", "context": "CREATE TABLE table_name_52 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_14 WHERE country = \"united states\" AND to_par = \"+3\"", "question": "What is the average Money ( $ ), when Country is \"United States\", and when To par is \"+3\"?", "context": "CREATE TABLE table_name_14 (money___ INTEGER, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_4 WHERE player = \"morgan pressel\"", "question": "What is Money ( $ ), when Player is \"Morgan Pressel\"?", "context": "CREATE TABLE table_name_4 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_94 WHERE player = \"mi hyun kim\"", "question": "What is Place, when Player is \"Mi Hyun Kim\"?", "context": "CREATE TABLE table_name_94 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(tonnage) FROM table_name_78 WHERE date = \"30 march 1943\"", "question": "What was the tonnage on 30 march 1943?", "context": "CREATE TABLE table_name_78 (tonnage INTEGER, date VARCHAR)"}, {"answer": "SELECT fate FROM table_name_44 WHERE date = \"27 june 1942\"", "question": "What was the fate on 27 june 1942?", "context": "CREATE TABLE table_name_44 (fate VARCHAR, date VARCHAR)"}, {"answer": "SELECT tonnage FROM table_name_91 WHERE date = \"12 september 1942\"", "question": "What was the tonnage on 12 september 1942?", "context": "CREATE TABLE table_name_91 (tonnage VARCHAR, date VARCHAR)"}, {"answer": "SELECT fate FROM table_name_56 WHERE nationality = \"yugoslavia\"", "question": "What was Yugoslavia's fate?", "context": "CREATE TABLE table_name_56 (fate VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT status FROM table_name_95 WHERE name = \"ins ranvir\"", "question": "What is the status of the ship INS Ranvir?", "context": "CREATE TABLE table_name_95 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT builder FROM table_name_69 WHERE name = \"ins rana\"", "question": "Who was the builder of the ship INS Rana?", "context": "CREATE TABLE table_name_69 (builder VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_70 WHERE points = \"248 (sf: 217)\"", "question": "What year shows 248 (sf: 217) points?", "context": "CREATE TABLE table_name_70 (year VARCHAR, points VARCHAR)"}, {"answer": "SELECT place FROM table_name_98 WHERE year > 2007 AND points = \"141 (sf:83)\"", "question": "What is the place later than 2007, with 141 (sf:83) points?", "context": "CREATE TABLE table_name_98 (place VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT artist FROM table_name_31 WHERE year = 2007 AND composer = \"hayko\"", "question": "What artist shows 2007 and composer of Hayko?", "context": "CREATE TABLE table_name_31 (artist VARCHAR, year VARCHAR, composer VARCHAR)"}, {"answer": "SELECT place FROM table_name_31 WHERE player = \"corey pavin\"", "question": "What place is Corey Pavin in?", "context": "CREATE TABLE table_name_31 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_73 WHERE average < 1 AND played > 38 AND team = \"gimnasia de la plata\"", "question": "How many Points have an Average smaller than 1, a Played larger than 38, and a Team of gimnasia de la plata?", "context": "CREATE TABLE table_name_73 (points INTEGER, team VARCHAR, average VARCHAR, played VARCHAR)"}, {"answer": "SELECT atomic_property FROM table_name_57 WHERE helium = \"4.16\"", "question": "Which Atomic property has Helium of 4.16?", "context": "CREATE TABLE table_name_57 (atomic_property VARCHAR, helium VARCHAR)"}, {"answer": "SELECT krypton FROM table_name_4 WHERE neon = \"10\"", "question": "Which Krypton has Neon of 10?", "context": "CREATE TABLE table_name_4 (krypton VARCHAR, neon VARCHAR)"}, {"answer": "SELECT radon FROM table_name_62 WHERE neon = \"4.79\"", "question": "Which Radon has Neon of 4.79?", "context": "CREATE TABLE table_name_62 (radon VARCHAR, neon VARCHAR)"}, {"answer": "SELECT neon FROM table_name_91 WHERE atomic_property = \"average valence electron energy (avee)\"", "question": "Which Neon has Atomic property of average valence electron energy (avee)?", "context": "CREATE TABLE table_name_91 (neon VARCHAR, atomic_property VARCHAR)"}, {"answer": "SELECT radon FROM table_name_65 WHERE atomic_property = \"outer shell electron configuration\"", "question": "Which Radon has Atomic property of outer shell electron configuration?", "context": "CREATE TABLE table_name_65 (radon VARCHAR, atomic_property VARCHAR)"}, {"answer": "SELECT xenon FROM table_name_25 WHERE neon = \"20.1797(6)\"", "question": "Which Xenon has Neon of 20.1797(6)?", "context": "CREATE TABLE table_name_25 (xenon VARCHAR, neon VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_46 WHERE away_team = \"eastwood town\"", "question": "What is the highest attendance of the game with eastwood town as the away team?", "context": "CREATE TABLE table_name_46 (attendance INTEGER, away_team VARCHAR)"}, {"answer": "SELECT place FROM table_name_4 WHERE player = \"scott mccarron\"", "question": "What place is Scott McCarron in?", "context": "CREATE TABLE table_name_4 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT weight FROM table_name_59 WHERE name = \"alexandr elke\"", "question": "What is Alexandr Elke's Weight?", "context": "CREATE TABLE table_name_59 (weight VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_76 WHERE club = \"dinamo moscow\" AND pos = \"d\"", "question": "What is the Name of the D Player from the Dinamo Moscow Club?", "context": "CREATE TABLE table_name_76 (name VARCHAR, club VARCHAR, pos VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_50 WHERE club = \"csk vmf moscow\"", "question": "What is the Date of Birth of the Player from the CSK VMF Moscow Club?", "context": "CREATE TABLE table_name_50 (date_of_birth VARCHAR, club VARCHAR)"}, {"answer": "SELECT weight FROM table_name_31 WHERE club = \"dshnk almaty\" AND height = \"m (ft 6in)\"", "question": "What is the Weight of the Player from DSHNK Almaty Club with a Height of m (ft 6in)?", "context": "CREATE TABLE table_name_31 (weight VARCHAR, club VARCHAR, height VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_28 WHERE goals_against < 43 AND wins > 14 AND played > 38", "question": "Which Position has Goals against smaller than 43, and Wins larger than 14, and Played larger than 38?", "context": "CREATE TABLE table_name_28 (position INTEGER, played VARCHAR, goals_against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_17 WHERE position < 16 AND wins < 19 AND goals_against < 32", "question": "Which Goals for has a Position smaller than 16, and Wins smaller than 19, and Goals against smaller than 32?", "context": "CREATE TABLE table_name_17 (goals_for INTEGER, goals_against VARCHAR, position VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_30 WHERE goals_against = 32 AND played > 38", "question": "Which Points have Goals against of 32, and Played larger than 38?", "context": "CREATE TABLE table_name_30 (points INTEGER, goals_against VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_90 WHERE goals_against < 59 AND goals_for > 32 AND draws > 9 AND points > 35", "question": "Which Position has Goals against smaller than 59, and Goals for larger than 32, and Draws larger than 9, and Points larger than 35?", "context": "CREATE TABLE table_name_90 (position INTEGER, points VARCHAR, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT district FROM table_name_21 WHERE party = \"republican\" AND results = \"re-elected\"", "question": "What district re-elected a Republican?", "context": "CREATE TABLE table_name_21 (district VARCHAR, party VARCHAR, results VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_84 WHERE first_elected = 1987", "question": "Which incumbent was first elected in 1987?", "context": "CREATE TABLE table_name_84 (incumbent VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT country FROM table_name_63 WHERE money___$__ < 216", "question": "From which country is the player who made less than $216?", "context": "CREATE TABLE table_name_63 (country VARCHAR, money___$__ INTEGER)"}, {"answer": "SELECT place FROM table_name_71 WHERE country = \"united states\" AND money___$__ > 216 AND score = 74 - 70 - 71 - 69 = 284", "question": "Where did the player place who is from the United States, who made more than $216, and whose score was 74-70-71-69=284?", "context": "CREATE TABLE table_name_71 (place VARCHAR, country VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_17 WHERE place = \"t5\" AND score = 72 - 71 - 73 - 78 = 294", "question": "Which player placed in t5 and had a score of 72-71-73-78=294?", "context": "CREATE TABLE table_name_17 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(year_of_recording) FROM table_name_14 WHERE conductor = \"libor pesek\"", "question": "What is the year that a record was recorded with Libor Pesek as conductor?", "context": "CREATE TABLE table_name_14 (year_of_recording INTEGER, conductor VARCHAR)"}, {"answer": "SELECT record_company FROM table_name_51 WHERE pianist = \"solomon cutner\"", "question": "What record company did pianist Solomon Cutner record for?", "context": "CREATE TABLE table_name_51 (record_company VARCHAR, pianist VARCHAR)"}, {"answer": "SELECT record_company FROM table_name_72 WHERE year_of_recording > 1996 AND conductor = \"mikhail snitko\"", "question": "What record company did conductor Mikhail Snitko record for after 1996?", "context": "CREATE TABLE table_name_72 (record_company VARCHAR, year_of_recording VARCHAR, conductor VARCHAR)"}, {"answer": "SELECT event FROM table_name_51 WHERE total = \"28\"", "question": "Which event had a total of 28?", "context": "CREATE TABLE table_name_51 (event VARCHAR, total VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_64 WHERE rank_points = \"8\" AND event = \"wc kerrville\"", "question": "Who was the shooter when the rank points was 8 and the event was WC Kerrville?", "context": "CREATE TABLE table_name_64 (shooter VARCHAR, rank_points VARCHAR, event VARCHAR)"}, {"answer": "SELECT total FROM table_name_79 WHERE score_points = \"12\" AND rank_points = \"15\"", "question": "What was the total when the score points was 12 and the rank points was 15?", "context": "CREATE TABLE table_name_79 (total VARCHAR, score_points VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE competition = \"champions league\" AND result = \"win\"", "question": "What is the score at the Champions League, when the result shows win?", "context": "CREATE TABLE table_name_25 (score VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_8 WHERE opponent = \"randers\"", "question": "What was the competition when the opponent was the Randers?", "context": "CREATE TABLE table_name_8 (competition VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE competition = \"uefa cup\" AND opponent = \"palermo\"", "question": "What is the result of the UEFA Cup, against Palermo?", "context": "CREATE TABLE table_name_49 (result VARCHAR, competition VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE competition = \"uefa cup\" AND opponent = \"panathinaikos\"", "question": "What date was the UEFA Cup against Panathinaikos?", "context": "CREATE TABLE table_name_29 (date VARCHAR, competition VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT total_deaths FROM table_name_78 WHERE israeli_and_or_foreigner_wounded = \"0\" AND other_deaths = \"0\" AND total_casualties = \"1\"", "question": "What is the total number of deaths of the attack with 0 Israelis or foreigners wounded, 0 other deaths, and a total casualty of 1?", "context": "CREATE TABLE table_name_78 (total_deaths VARCHAR, total_casualties VARCHAR, israeli_and_or_foreigner_wounded VARCHAR, other_deaths VARCHAR)"}, {"answer": "SELECT israeli_and_or_foreigner_wounded FROM table_name_45 WHERE israeli_deaths > 1", "question": "How many Israelis and or foreigners were wounded in the attack with more than 1 Israeli death?", "context": "CREATE TABLE table_name_45 (israeli_and_or_foreigner_wounded VARCHAR, israeli_deaths INTEGER)"}, {"answer": "SELECT other_deaths FROM table_name_81 WHERE israeli_and_or_foreigner_wounded = \"242\"", "question": "How many other deaths were in the attack with 242 Israelis and/or foreigners wounded?", "context": "CREATE TABLE table_name_81 (other_deaths VARCHAR, israeli_and_or_foreigner_wounded VARCHAR)"}, {"answer": "SELECT COUNT(israeli_deaths) FROM table_name_37 WHERE total_casualties = \"0\" AND total_deaths = \"0\"", "question": "What is the total number of Israeli deaths in the attack with 0 total casulaties and 0 total deaths?", "context": "CREATE TABLE table_name_37 (israeli_deaths VARCHAR, total_casualties VARCHAR, total_deaths VARCHAR)"}, {"answer": "SELECT place FROM table_name_11 WHERE score = 69 - 68 - 69 - 70 = 276", "question": "What place did the golfer who had a score of 69-68-69-70=276 finish in?", "context": "CREATE TABLE table_name_11 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_14 WHERE player = \"mike weir\"", "question": "What was the to par score for Mike Weir?", "context": "CREATE TABLE table_name_14 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_77 WHERE player = \"jay haas\"", "question": "What country was Jay Haas representing?", "context": "CREATE TABLE table_name_77 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_48 WHERE place = \"t7\" AND player = \"peter oosterhuis\"", "question": "What country has the t7 place, and player Peter Oosterhuis?", "context": "CREATE TABLE table_name_48 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE player = \"sandy lyle\"", "question": "What is the score for Sandy Lyle?", "context": "CREATE TABLE table_name_93 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT name FROM table_name_74 WHERE league_cup_goals > 0 AND total_goals < 13 AND league_cup_apps = \"4\"", "question": "Who is the player that has scored more than 0 league cup goals, but has than 13 total goals, and 4 league cup appearances total?", "context": "CREATE TABLE table_name_74 (name VARCHAR, league_cup_apps VARCHAR, league_cup_goals VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT MIN(league_goals) FROM table_name_84 WHERE fa_cup_goals = \"0\" AND fa_cup_apps = \"0\" AND position = \"df\" AND total_apps = \"3\"", "question": "Who has the lowest league total goals with 0 FA cup goals and no FA cup appearances, plays the DF position and has appeared in total of 3 times?", "context": "CREATE TABLE table_name_84 (league_goals INTEGER, total_apps VARCHAR, position VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT MIN(_number_of_episodes) FROM table_name_75 WHERE date_released = \"15 december 2011\"", "question": "What is the lowest # Of Episodes, when Date Released is \"15 December 2011\"?", "context": "CREATE TABLE table_name_75 (_number_of_episodes INTEGER, date_released VARCHAR)"}, {"answer": "SELECT date_released FROM table_name_33 WHERE _number_of_discs > 4", "question": "What Date Released, when # Of Discs is greater than 4?", "context": "CREATE TABLE table_name_33 (date_released VARCHAR, _number_of_discs INTEGER)"}, {"answer": "SELECT season FROM table_name_97 WHERE _number_of_episodes = 10 AND date_released = \"1 april 2010\"", "question": "What is Season, when # Of Episodes is \"10\", and when Date Released is \"1 April 2010\"?", "context": "CREATE TABLE table_name_97 (season VARCHAR, _number_of_episodes VARCHAR, date_released VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE home_team = \"sheffield united\"", "question": "What was the score when Sheffield United was the home team?", "context": "CREATE TABLE table_name_37 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_74 WHERE home_team = \"newton heath\"", "question": "Who was the away team against Newton Heath?", "context": "CREATE TABLE table_name_74 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_40 WHERE tie_no = \"11\"", "question": "What is the home team when the tie is 11?", "context": "CREATE TABLE table_name_40 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT SUM(league_goals) FROM table_name_95 WHERE position = \"df\" AND league_cup_apps = \"0\" AND total_apps = \"7\" AND flt_goals < 0", "question": "What is the sum of League Goals, when Position is \"DF\", when League Cup Apps is \"0\", when Total Apps is \"7\", and when FLT Goals is less than 0?", "context": "CREATE TABLE table_name_95 (league_goals INTEGER, flt_goals VARCHAR, total_apps VARCHAR, position VARCHAR, league_cup_apps VARCHAR)"}, {"answer": "SELECT COUNT(fa_cup_goals) FROM table_name_47 WHERE flt_goals > 0", "question": "What is the total number of FA Cup Goals, when FLT Goals is greater than 0?", "context": "CREATE TABLE table_name_47 (fa_cup_goals VARCHAR, flt_goals INTEGER)"}, {"answer": "SELECT MIN(fa_cup_goals) FROM table_name_10 WHERE total_goals > 0 AND league_goals = 4 AND fa_cup_apps = \"1\" AND league_cup_goals > 0", "question": "What is the lowest FA Cup Goals, when Total Goals is greater than 0, when League Goals is \"4\", when FA Cup Apps is \"1\", and when League Cup Goals is greater than 0?", "context": "CREATE TABLE table_name_10 (fa_cup_goals INTEGER, league_cup_goals VARCHAR, fa_cup_apps VARCHAR, total_goals VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_6 WHERE team = \"newman/haas racing\" AND laps < 40", "question": "How many points for Newman/Haas Racing with fewer than 40 laps?", "context": "CREATE TABLE table_name_6 (points INTEGER, team VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_32 WHERE points < 2 AND grid > 4 AND team = \"american spirit team johansson\"", "question": "Which driver has fewer than 2 points, larger grid that 4 and is on American Spirit Team Johansson?", "context": "CREATE TABLE table_name_32 (driver VARCHAR, team VARCHAR, points VARCHAR, grid VARCHAR)"}, {"answer": "SELECT week_11_nov_16 FROM table_name_50 WHERE week_13_nov_30 = \"wisconsin (10-1)\"", "question": "What is the week 11 nov 16 standing with wisconsin (10-1) on week 13 Nov 30?", "context": "CREATE TABLE table_name_50 (week_11_nov_16 VARCHAR, week_13_nov_30 VARCHAR)"}, {"answer": "SELECT week_13_nov_30 FROM table_name_36 WHERE week_11_nov_16 = \"usc (7-3)\"", "question": "What is the week 13 Nov 30 standing with USC (7-3) on week 11 Nov 16?", "context": "CREATE TABLE table_name_36 (week_13_nov_30 VARCHAR, week_11_nov_16 VARCHAR)"}, {"answer": "SELECT week_8_oct_26 FROM table_name_1 WHERE week_12_nov_23 = \"georgia tech (8-2)\"", "question": "What is the week 8 Oct 26 standing with georgia tech (8-2) on week 12 Nov 23?", "context": "CREATE TABLE table_name_1 (week_8_oct_26 VARCHAR, week_12_nov_23 VARCHAR)"}, {"answer": "SELECT week_14__final__dec_7 FROM table_name_97 WHERE week_8_oct_26 = \"florida (6-1)\"", "question": "What is the week 14 (final) dec 7 standing with Florida (6-1) on week 8 Oct 26?", "context": "CREATE TABLE table_name_97 (week_14__final__dec_7 VARCHAR, week_8_oct_26 VARCHAR)"}, {"answer": "SELECT name FROM table_name_58 WHERE source = \"soenderjyske.dk\"", "question": "What player is associated with soenderjyske.dk?", "context": "CREATE TABLE table_name_58 (name VARCHAR, source VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_94 WHERE type = \"transfer\" AND name = \"gravgaard\"", "question": "What is the transfer fee for Gravgaard?", "context": "CREATE TABLE table_name_94 (transfer_fee VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT result FROM table_name_50 WHERE moves > 41 AND year = 2007 AND opening = \"c42 petrov's defence\"", "question": "What's the result when there's more than 41 moves with an opening of c42 petrov's defence in 2007?", "context": "CREATE TABLE table_name_50 (result VARCHAR, opening VARCHAR, moves VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(moves) FROM table_name_52 WHERE result = \"\u00bd\u2013\u00bd\" AND year < 1999 AND black = \"anand\"", "question": "What's the total number of moves with a result of  \u00bd\u2013\u00bd and a black of Anand before 1999?", "context": "CREATE TABLE table_name_52 (moves VARCHAR, black VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT black FROM table_name_56 WHERE moves = 24 AND tournament = \"dortmund\"", "question": "What's the black with 24 moves in the dortmund tournament?", "context": "CREATE TABLE table_name_56 (black VARCHAR, moves VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opening FROM table_name_83 WHERE white = \"anand\" AND moves < 61 AND result = \"\u00bd\u2013\u00bd\"", "question": "What's the opening when white is Anand with fewer than 61 moves for a result of  \u00bd\u2013\u00bd?", "context": "CREATE TABLE table_name_83 (opening VARCHAR, result VARCHAR, white VARCHAR, moves VARCHAR)"}, {"answer": "SELECT white FROM table_name_20 WHERE black = \"anand\" AND result = \"\u00bd\u2013\u00bd\" AND moves = 39 AND opening = \"d37 queen's gambit declined\"", "question": "What's the white for a black of Anand, a result of  \u00bd\u2013\u00bd, 39 moves, and an opening of d37 queen's gambit declined?", "context": "CREATE TABLE table_name_20 (white VARCHAR, opening VARCHAR, moves VARCHAR, black VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_name_26 WHERE english_translation = \"we the lovers\" AND place > 1", "question": "What is the lowest draw that has We The Lovers for the english translation, with a place greater than 1?", "context": "CREATE TABLE table_name_26 (draw INTEGER, english_translation VARCHAR, place VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_93 WHERE language = \"french\" AND place < 1", "question": "How many draws have french as the language, with a place less than 1?", "context": "CREATE TABLE table_name_93 (draw INTEGER, language VARCHAR, place VARCHAR)"}, {"answer": "SELECT MAX(tonnage) FROM table_name_73 WHERE flag = \"canada\"", "question": "What is the Tonnage of the ship from Canada?", "context": "CREATE TABLE table_name_73 (tonnage INTEGER, flag VARCHAR)"}, {"answer": "SELECT place FROM table_name_60 WHERE country = \"zimbabwe\"", "question": "In what place did the golfer representing Zimbabwe finish?", "context": "CREATE TABLE table_name_60 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_23 WHERE score < 71 AND player = \"des smyth\"", "question": "In what place did Des Smyth, who scored less than 71, finish?", "context": "CREATE TABLE table_name_23 (place VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT spaceport FROM table_name_82 WHERE launcher = \"saturn ib\" AND launch_complex = \"lc34\"", "question": "What is the spaceport location that houses the LC34 complex and uses the Saturn IB launcher?", "context": "CREATE TABLE table_name_82 (spaceport VARCHAR, launcher VARCHAR, launch_complex VARCHAR)"}, {"answer": "SELECT spacecraft FROM table_name_7 WHERE launcher = \"titan ii\"", "question": "Which spacecraft were launched by the Titan II?", "context": "CREATE TABLE table_name_7 (spacecraft VARCHAR, launcher VARCHAR)"}, {"answer": "SELECT launcher FROM table_name_80 WHERE spacecraft = \"apollo-soyuz\"", "question": "What was the launcher vehicle for Apollo-Soyuz?", "context": "CREATE TABLE table_name_80 (launcher VARCHAR, spacecraft VARCHAR)"}, {"answer": "SELECT launch_complex FROM table_name_35 WHERE launcher = \"soyuz (r)\" AND flights = \"14 orbital\"", "question": "Which complex used the Soyuz (r) launcher to facilitate 14 orbital flights?", "context": "CREATE TABLE table_name_35 (launch_complex VARCHAR, launcher VARCHAR, flights VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_79 WHERE tournament = \"year end ranking\"", "question": "what is 2008 when the tournament is year end ranking?", "context": "CREATE TABLE table_name_79 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_66 WHERE tournament = \"cincinnati masters\"", "question": "what is 2012 when the tournament is cincinnati masters?", "context": "CREATE TABLE table_name_66 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_79 WHERE 2012 = \"3r\" AND 2009 = \"2r\"", "question": "what is 2008 when 2012 is 3r and 2009 is 2r?", "context": "CREATE TABLE table_name_79 (Id VARCHAR)"}, {"answer": "SELECT height_ft__m_ FROM table_name_51 WHERE year = 1907", "question": "How tall is the structure built in 1907?", "context": "CREATE TABLE table_name_51 (height_ft__m_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT name FROM table_name_90 WHERE floors > 34", "question": "Which building has more than 34 floors?", "context": "CREATE TABLE table_name_90 (name VARCHAR, floors INTEGER)"}, {"answer": "SELECT MIN(gold) FROM table_name_7 WHERE bronze = 0 AND silver < 2", "question": "Which rank has 0 bronze and 2 silver?", "context": "CREATE TABLE table_name_7 (gold INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_34 WHERE gold < 4 AND total = 1 AND rank > 6", "question": "How much silver does the rank have that has gold smaller than 4, and a total of 1 and a rank larger than 6?", "context": "CREATE TABLE table_name_34 (silver INTEGER, rank VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_34 WHERE silver > 0 AND bronze = 4 AND total < 10", "question": "Which rank has a more than 0 silver, 4 bronze, and a total smaller than 10?", "context": "CREATE TABLE table_name_34 (rank INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_19 WHERE silver = 3 AND bronze > 3", "question": "How much gold does the tank have that has 3 silver and more than 3 bronze?", "context": "CREATE TABLE table_name_19 (gold VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_14 WHERE silver < 0", "question": "What is the total number that 0 silver?", "context": "CREATE TABLE table_name_14 (total VARCHAR, silver INTEGER)"}, {"answer": "SELECT score FROM table_name_7 WHERE to_par > 17 AND player = \"mike brady\"", "question": "Which Score has a To par larger than 17, and a Player of mike brady?", "context": "CREATE TABLE table_name_7 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_83 WHERE money___$__ = 150 AND player = \"bobby cruickshank\"", "question": "Which Place that has Money of 150, and a Player of bobby cruickshank?", "context": "CREATE TABLE table_name_83 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_26 WHERE to_par < 15 AND score = 74 - 74 - 74 - 75 = 297", "question": "Which Place has a To par smaller than 15, and a Score of 74-74-74-75=297?", "context": "CREATE TABLE table_name_26 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE tie_no = \"8\"", "question": "What is the score when the tie number is 8?", "context": "CREATE TABLE table_name_84 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE tie_no = \"6\"", "question": "What is the score when the tie number is 6?", "context": "CREATE TABLE table_name_58 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_46 WHERE home_team = \"middlesbrough\"", "question": "What is the tie number for Middlesbrough?", "context": "CREATE TABLE table_name_46 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT status FROM table_name_33 WHERE date = \"15/04/1967\"", "question": "What status has 15/04/1967 as the date?", "context": "CREATE TABLE table_name_33 (status VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_95 WHERE opposing_teams = \"scotland\"", "question": "What venue has Scotland as the opposing teams?", "context": "CREATE TABLE table_name_95 (venue VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT status FROM table_name_71 WHERE opposing_teams = \"france\"", "question": "What status has France as the opposing teams?", "context": "CREATE TABLE table_name_71 (status VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT week_4 FROM table_name_50 WHERE week_9 = \"all housemates\"", "question": "What kind of Week 4  has a Week 9 of all housemates?", "context": "CREATE TABLE table_name_50 (week_4 VARCHAR, week_9 VARCHAR)"}, {"answer": "SELECT week_3 FROM table_name_2 WHERE week_9 = \"ejected (day 3)\"", "question": "Which Week 3 has a Week 9 of ejected (day 3)?", "context": "CREATE TABLE table_name_2 (week_3 VARCHAR, week_9 VARCHAR)"}, {"answer": "SELECT week_1 FROM table_name_24 WHERE week_8 = \"not eligible\" AND week_9 = \"no nominations\" AND week_3 = \"cyril\"", "question": "What kind of Week 1 has a Week 8 of not eligible, and a Week 9 of no nominations, and a Week 3 of cyril? Question 3", "context": "CREATE TABLE table_name_24 (week_1 VARCHAR, week_3 VARCHAR, week_8 VARCHAR, week_9 VARCHAR)"}, {"answer": "SELECT week_7 FROM table_name_83 WHERE week_5 = \"evicted (day 15)\"", "question": "What kind of Week 7 has a Week 5 of evicted (day 15)?", "context": "CREATE TABLE table_name_83 (week_7 VARCHAR, week_5 VARCHAR)"}, {"answer": "SELECT week_6 FROM table_name_80 WHERE week_2 = \"see notes 2 , 3 , 4\"", "question": "What kind of Week 6 has a Week 2 of see notes 2 , 3 , 4?", "context": "CREATE TABLE table_name_80 (week_6 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_35 WHERE wins > 11 AND geelong_fl = \"st josephs\"", "question": "Which Against has more than 11 wins, and a Geelong FL of st josephs?", "context": "CREATE TABLE table_name_35 (against INTEGER, wins VARCHAR, geelong_fl VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_17 WHERE loss = \"hiller (3\u20132)\"", "question": "What is the Attendance of the game with a Loss of Hiller (3\u20132)?", "context": "CREATE TABLE table_name_17 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_85 WHERE home_team = \"tottenham hotspur\"", "question": "Who is the away team that tottenham hotspur played?", "context": "CREATE TABLE table_name_85 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE date = \"29 january 1983\" AND away_team = \"chelsea\"", "question": "What was the score of the game with away team chelsea on 29 january 1983?", "context": "CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE home_team = \"torquay united\"", "question": "What date was the game that home team torquay united played?", "context": "CREATE TABLE table_name_76 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_9 WHERE away_team = \"watford\"", "question": "Who is the team that played away team watford?", "context": "CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE home_team = \"crystal palace\"", "question": "What date was the game when home team crystal palace played?", "context": "CREATE TABLE table_name_93 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT country FROM table_name_18 WHERE player = \"retief goosen\"", "question": "What country is Retief Goosen from?", "context": "CREATE TABLE table_name_18 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_27 WHERE place = \"1\"", "question": "What Player is in Place 1?", "context": "CREATE TABLE table_name_27 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_39 WHERE place = \"1\"", "question": "What is the Country of the Player in Place 1?", "context": "CREATE TABLE table_name_39 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_89 WHERE to_par = \"\u201310\" AND score = 67 - 67 - 66 = 200", "question": "What is the Place of the Player with a To par of \u201310 and a Score of 67-67-66=200?", "context": "CREATE TABLE table_name_89 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_92 WHERE points > 99 AND club = \"barcelona\"", "question": "Can you tell me the total number of Rank that has the Points larger than 99, and the Club of barcelona?", "context": "CREATE TABLE table_name_92 (rank VARCHAR, points VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_76 WHERE tie_no < 8 AND away_team = \"eastwood town\"", "question": "How many people on average attended when Eastwood Town was the away team, and the tie number was less than 8?", "context": "CREATE TABLE table_name_76 (attendance INTEGER, tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE attendance < 848 AND home_team = \"crowborough athletic\"", "question": "The game with home team Crowborough Athletic, with an attendance less than 848 had what as the score?", "context": "CREATE TABLE table_name_38 (score VARCHAR, attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_76 WHERE home_team = \"bashley\"", "question": "The game with Bashley as the home team had what maximum attendance?", "context": "CREATE TABLE table_name_76 (attendance INTEGER, home_team VARCHAR)"}, {"answer": "SELECT COUNT(tie_no) FROM table_name_5 WHERE away_team = \"harlow town\"", "question": "What is the tie number total when Harlow Town is the away team?", "context": "CREATE TABLE table_name_5 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT artist FROM table_name_58 WHERE draw > 15", "question": "Which artist has a draw greater than 15?", "context": "CREATE TABLE table_name_58 (artist VARCHAR, draw INTEGER)"}, {"answer": "SELECT MAX(place) FROM table_name_97 WHERE artist = \"jacques raymond\" AND draw > 14", "question": "What was the highest place a song by Jacques Raymond reached, with a draw over 14?", "context": "CREATE TABLE table_name_97 (place INTEGER, artist VARCHAR, draw VARCHAR)"}, {"answer": "SELECT craft FROM table_name_15 WHERE location = \"coniston water\"", "question": "What is the Craft used at Coniston Water?", "context": "CREATE TABLE table_name_15 (craft VARCHAR, location VARCHAR)"}, {"answer": "SELECT speed FROM table_name_80 WHERE location = \"lake mead\"", "question": "What is the Speed at Lake Mead?", "context": "CREATE TABLE table_name_80 (speed VARCHAR, location VARCHAR)"}, {"answer": "SELECT goals FROM table_name_16 WHERE ratio = 0.29", "question": "Which Goals have a Ratio of 0.29?", "context": "CREATE TABLE table_name_16 (goals VARCHAR, ratio VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_12 WHERE current_club = \"real madrid\" AND ratio < 1.08 AND rank < 5", "question": "Which Goals have a Current Club of real madrid, and a Ratio smaller than 1.08, and a Rank smaller than 5?", "context": "CREATE TABLE table_name_12 (goals INTEGER, rank VARCHAR, current_club VARCHAR, ratio VARCHAR)"}, {"answer": "SELECT current_club FROM table_name_20 WHERE rank = 4", "question": "Which Current Club has a Rank of 4?", "context": "CREATE TABLE table_name_20 (current_club VARCHAR, rank VARCHAR)"}, {"answer": "SELECT second_party FROM table_name_71 WHERE first_party = \"conservative\" AND election = \"1834\"", "question": "What is the second party that has a conservative first party in the 1834 election?", "context": "CREATE TABLE table_name_71 (second_party VARCHAR, first_party VARCHAR, election VARCHAR)"}, {"answer": "SELECT second_member FROM table_name_3 WHERE first_member = \"sir rowland hill, bt\" AND second_party = \"conservative\"", "question": "Who is the second member with first member Sir Rowland Hill, BT, and a conservative second party?", "context": "CREATE TABLE table_name_3 (second_member VARCHAR, first_member VARCHAR, second_party VARCHAR)"}, {"answer": "SELECT first_party FROM table_name_18 WHERE second_member = \"hon. rowland hill\" AND election = \"1857\"", "question": "What is the first party with second member Hon. Rowland Hill, in the 1857 election?", "context": "CREATE TABLE table_name_18 (first_party VARCHAR, second_member VARCHAR, election VARCHAR)"}, {"answer": "SELECT second_member FROM table_name_54 WHERE second_party = \"whig\" AND election = \"1834\"", "question": "Who is the second member that is a second party Whig in the 1834 election?", "context": "CREATE TABLE table_name_54 (second_member VARCHAR, second_party VARCHAR, election VARCHAR)"}, {"answer": "SELECT second_party FROM table_name_95 WHERE first_party = \"conservative\" AND second_member = \"john cotes\"", "question": "What is the second party that has a conservative first party and second member John Cotes?", "context": "CREATE TABLE table_name_95 (second_party VARCHAR, first_party VARCHAR, second_member VARCHAR)"}, {"answer": "SELECT place FROM table_name_84 WHERE score = 69 - 68 = 137", "question": "What place is the player with a score of 69-68=137?", "context": "CREATE TABLE table_name_84 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE place = \"t10\" AND country = \"zimbabwe\"", "question": "What's the score for the t10 player from zimbabwe?", "context": "CREATE TABLE table_name_19 (score VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_61 WHERE place = \"t10\" AND country = \"australia\"", "question": "What's the score of the t10 player from australia?", "context": "CREATE TABLE table_name_61 (score VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_51 WHERE player = \"bob tway\"", "question": "What's bob tway's score?", "context": "CREATE TABLE table_name_51 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_54 WHERE place = \"t10\" AND country = \"united states\" AND score = 67 - 73 = 140", "question": "What Player has a Place of t10, a Country of united states, and a Score of 67-73=140?", "context": "CREATE TABLE table_name_54 (player VARCHAR, place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_89 WHERE player = \"seve ballesteros\"", "question": "What Place has a Player of seve ballesteros?", "context": "CREATE TABLE table_name_89 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_74 WHERE player = \"nick faldo\"", "question": "What Country has a Player of nick faldo?", "context": "CREATE TABLE table_name_74 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_74 WHERE place = \"t10\" AND score = 67 - 73 = 140", "question": "What To par has a Place of t10, and a Score of 67-73=140?", "context": "CREATE TABLE table_name_74 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE place = \"t6\" AND country = \"united states\" AND player = \"fred couples\"", "question": "What Score has a Place of t6, a Country of united states, and a Player of fred couples?", "context": "CREATE TABLE table_name_7 (score VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_15 WHERE score = 68 - 66 = 134", "question": "What To par has a Score of 68-66=134?", "context": "CREATE TABLE table_name_15 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT provider FROM table_name_90 WHERE free_or_pay = \"pay\" AND years = \"2006\u2013\" AND transmission = \"iptv and digital terrestrial\"", "question": "Name the  Provider that has a pay in 2006\u2013, and a Transmission of iptv and digital terrestrial?", "context": "CREATE TABLE table_name_90 (provider VARCHAR, transmission VARCHAR, free_or_pay VARCHAR, years VARCHAR)"}, {"answer": "SELECT years FROM table_name_16 WHERE transmission = \"digital satellite\" AND on_demand = \"no\" AND free_or_pay = \"free + ppv\"", "question": "Name the Years which have Transmission of digital satellite, an On demand of no, and a Free or pay of free + ppv?", "context": "CREATE TABLE table_name_16 (years VARCHAR, free_or_pay VARCHAR, transmission VARCHAR, on_demand VARCHAR)"}, {"answer": "SELECT free_or_pay FROM table_name_26 WHERE years = \"2006\u2013\" AND provider = \"bt tv (formerly bt vision)\"", "question": "What kind of Free or pay has Years of 2006\u2013 and a Provider of bt tv (formerly bt vision)?", "context": "CREATE TABLE table_name_26 (free_or_pay VARCHAR, years VARCHAR, provider VARCHAR)"}, {"answer": "SELECT years FROM table_name_58 WHERE free_or_pay = \"free + pay\"", "question": "Name the Years that have a  free + pay?", "context": "CREATE TABLE table_name_58 (years VARCHAR, free_or_pay VARCHAR)"}, {"answer": "SELECT on_demand FROM table_name_24 WHERE free_or_pay = \"free\" AND provider = \"freesat\"", "question": "Which On demandhas a Free or pay of free and a Provider of freesat?", "context": "CREATE TABLE table_name_24 (on_demand VARCHAR, free_or_pay VARCHAR, provider VARCHAR)"}, {"answer": "SELECT on_demand FROM table_name_25 WHERE free_or_pay = \"pay\" AND provider = \"virgin media (formerly ntl:telewest)\"", "question": "Which On demand has a pay and a Provider of virgin media (formerly ntl:telewest)?", "context": "CREATE TABLE table_name_25 (on_demand VARCHAR, free_or_pay VARCHAR, provider VARCHAR)"}, {"answer": "SELECT region FROM table_name_5 WHERE name = \"tv uskana\"", "question": "What is the region for tv uskana?", "context": "CREATE TABLE table_name_5 (region VARCHAR, name VARCHAR)"}, {"answer": "SELECT region FROM table_name_69 WHERE name = \"tv vtv\"", "question": "What is the region for tv vtv?", "context": "CREATE TABLE table_name_69 (region VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_67 WHERE opponent = \"buffalo bills\"", "question": "What is the highest Week with the Opponent Buffalo Bills?", "context": "CREATE TABLE table_name_67 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT competition FROM table_name_60 WHERE result = \"france 46-16 scotland\"", "question": "Which Competition has a Result of france 46-16 scotland?", "context": "CREATE TABLE table_name_60 (competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT percentage FROM table_name_86 WHERE district > 2 AND party = \"independent\"", "question": "Which Percentage has a District larger than 2, and a Party of independent?", "context": "CREATE TABLE table_name_86 (percentage VARCHAR, district VARCHAR, party VARCHAR)"}, {"answer": "SELECT COUNT(vote) FROM table_name_52 WHERE seat = \"house a\" AND percentage = \"75.44%\" AND district < 11", "question": "How many votes have a Seat of house A, and a Percentage of 75.44%, and a District smaller than 11?", "context": "CREATE TABLE table_name_52 (vote VARCHAR, district VARCHAR, seat VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT nation FROM table_name_45 WHERE bronze > 1 AND silver < 3", "question": "What nation has more than 1 bronze and less than 3 silver?", "context": "CREATE TABLE table_name_45 (nation VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_43 WHERE bronze = 9 AND total < 27", "question": "What's the highest number of silver for 9 bronze and less than 27 total?", "context": "CREATE TABLE table_name_43 (silver INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT market_share FROM table_name_53 WHERE assets__usd__millions = 25 AND rank = \"23\"", "question": "What is the Market Share that has Assets of 25 Million and a rank of 23?", "context": "CREATE TABLE table_name_53 (market_share VARCHAR, assets__usd__millions VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(assets__usd__millions) FROM table_name_37 WHERE bank = \"equity bank\" AND number_of_branches < 44", "question": "What is the highest Assets (USD) Millions from Equity Bank and less than 44 branches?", "context": "CREATE TABLE table_name_37 (assets__usd__millions INTEGER, bank VARCHAR, number_of_branches VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE attendance = \"349\"", "question": "What is Score, when Attendance is \"349\"?", "context": "CREATE TABLE table_name_66 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE away_team = \"newcastle benfield\"", "question": "What is Score, when Away Team is \"Newcastle Benfield\"?", "context": "CREATE TABLE table_name_18 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE tie_no = \"30\"", "question": "What is Score, when Tie No is \"30\"?", "context": "CREATE TABLE table_name_82 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE tie_no = \"109\"", "question": "What is Score, when Tie No is \"109\"?", "context": "CREATE TABLE table_name_67 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_23 WHERE tie_no = \"37\"", "question": "What is Away Team, when Tie No is \"37\"?", "context": "CREATE TABLE table_name_23 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT australian FROM table_name_79 WHERE american = \"\u0251\"", "question": "What is the Australian for the American \u0251?", "context": "CREATE TABLE table_name_79 (australian VARCHAR, american VARCHAR)"}, {"answer": "SELECT australian FROM table_name_79 WHERE letter = \"i /\u026a/\"", "question": "What is the Australian equivalent to i /\u026a/?", "context": "CREATE TABLE table_name_79 (australian VARCHAR, letter VARCHAR)"}, {"answer": "SELECT british FROM table_name_93 WHERE australian = \"\u0254\"", "question": "What is the British for the Australian \u0254?", "context": "CREATE TABLE table_name_93 (british VARCHAR, australian VARCHAR)"}, {"answer": "SELECT american FROM table_name_62 WHERE british = \"\u0259\"", "question": "What is the American version of the British \u0259?", "context": "CREATE TABLE table_name_62 (american VARCHAR, british VARCHAR)"}, {"answer": "SELECT examples FROM table_name_51 WHERE australian = \"\u00e6\"", "question": "What are the examples for the Australian \u00e6?", "context": "CREATE TABLE table_name_51 (examples VARCHAR, australian VARCHAR)"}, {"answer": "SELECT letter FROM table_name_74 WHERE british = \"\u0252\"", "question": "What is the letter for the Brisish \u0252?", "context": "CREATE TABLE table_name_74 (letter VARCHAR, british VARCHAR)"}, {"answer": "SELECT 2 AS nd_member FROM table_name_34 WHERE elected = \"1555\"", "question": "Who is the second member that was elected in 1555?", "context": "CREATE TABLE table_name_34 (elected VARCHAR)"}, {"answer": "SELECT dissolved FROM table_name_95 WHERE elected = \"1553\"", "question": "Who was dissolved that was elected in 1553?", "context": "CREATE TABLE table_name_95 (dissolved VARCHAR, elected VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_27 WHERE nationality = \"canada\" AND player = \"dennis maxwell\"", "question": "Which Pick has a Nationality of canada, and a Player of dennis maxwell?", "context": "CREATE TABLE table_name_27 (pick VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE draft = 1994 AND pick > 8 AND round = \"10\" AND nationality = \"canada\"", "question": "Which Player has a Draft of 1994, a Pick larger than 8, a Round of 10, and a Nationality of canada?", "context": "CREATE TABLE table_name_89 (player VARCHAR, nationality VARCHAR, round VARCHAR, draft VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_16 WHERE round = \"7\" AND pick > 187 AND nationality = \"united states\" AND draft > 2000", "question": "Which Player has a Round of 7, a Pick larger than 187, a Nationality of united states, and a Draft larger than 2000?", "context": "CREATE TABLE table_name_16 (player VARCHAR, draft VARCHAR, nationality VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_82 WHERE round = \"9\" AND pick = 263", "question": "Which Player has a Round of 9, and a Pick of 263?", "context": "CREATE TABLE table_name_82 (player VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT AVG(draft) FROM table_name_56 WHERE round = \"1\" AND nationality = \"canada\" AND pick = \"1\" AND player = \"vincent lecavalier\"", "question": "Which Draft has a Round of 1, a Nationality of canada, a Pick of 1, and a Player of vincent lecavalier?", "context": "CREATE TABLE table_name_56 (draft INTEGER, player VARCHAR, pick VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT penalties FROM table_name_88 WHERE pim = \"34.5\"", "question": "What penalties has P.I.M. of 34.5?", "context": "CREATE TABLE table_name_88 (penalties VARCHAR, pim VARCHAR)"}, {"answer": "SELECT wins FROM table_name_82 WHERE wpct = \"0.2\"", "question": "What wins has WPct of 0.2?", "context": "CREATE TABLE table_name_82 (wins VARCHAR, wpct VARCHAR)"}, {"answer": "SELECT wpct FROM table_name_7 WHERE \"wins\" = \"wins\"", "question": "What WPct has wins of wins?", "context": "CREATE TABLE table_name_7 (wpct VARCHAR)"}, {"answer": "SELECT assists FROM table_name_11 WHERE points = \"10\"", "question": "What assists has points of 10?", "context": "CREATE TABLE table_name_11 (assists VARCHAR, points VARCHAR)"}, {"answer": "SELECT losses FROM table_name_13 WHERE team = \"japan\"", "question": "What losses consist of the team of japan?", "context": "CREATE TABLE table_name_13 (losses VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_26 WHERE teams = \"chiefs\" AND losses > 1", "question": "How many wins have more than 1 loss and a team of chiefs?", "context": "CREATE TABLE table_name_26 (wins INTEGER, teams VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(loss) FROM table_name_75 WHERE name = \"antwon bailey\" AND gain > 227", "question": "What was the total yards lost by antwon bailey when he gained 227?", "context": "CREATE TABLE table_name_75 (loss INTEGER, name VARCHAR, gain VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_56 WHERE points > 51 AND goals_against > 23 AND losses = 5", "question": "How many wins when points are more than 51, goals against are more than 23 and losses are 5?", "context": "CREATE TABLE table_name_56 (wins VARCHAR, losses VARCHAR, points VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_36 WHERE points > 19 AND position < 12 AND played < 30", "question": "How many wins when there are more than 19 points, place smaller than 12, and fewer than 30 played?", "context": "CREATE TABLE table_name_36 (wins INTEGER, played VARCHAR, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_43 WHERE position > 16", "question": "What is the number played by the team in place greater than 16?", "context": "CREATE TABLE table_name_43 (played INTEGER, position INTEGER)"}, {"answer": "SELECT 2 AS nd_round FROM table_name_63 WHERE team_2 = \"girondins de bordeaux (d1)\"", "question": "What are the 2nd round results for the match with Girondins de Bordeaux (d1) as Team 2?", "context": "CREATE TABLE table_name_63 (team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_round FROM table_name_6 WHERE team_2 = \"us valenciennes (d1)\"", "question": "What was the 1st round result that had US Valenciennes (d1) as Team 2?", "context": "CREATE TABLE table_name_6 (team_2 VARCHAR)"}, {"answer": "SELECT score FROM table_name_87 WHERE team_2 = \"usl dunkerque (d2)\"", "question": "What was the Score of the match with USL Dunkerque (d2) as Team 2?", "context": "CREATE TABLE table_name_87 (score VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT club FROM table_name_88 WHERE head_coach = \"manuel fernandes\"", "question": "What club does Manuel Fernandes coach?", "context": "CREATE TABLE table_name_88 (club VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT head_coach FROM table_name_17 WHERE city = \"estoril\"", "question": "Who is the head coach for the club from Estoril?", "context": "CREATE TABLE table_name_17 (head_coach VARCHAR, city VARCHAR)"}, {"answer": "SELECT head_coach FROM table_name_71 WHERE city = \"aveiro\"", "question": "Who is the head coach for the club from Aveiro?", "context": "CREATE TABLE table_name_71 (head_coach VARCHAR, city VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_36 WHERE team_2 = \"iskra odintsovo\"", "question": "What is Team 1, when Team 2 is \"Iskra Odintsovo\"?", "context": "CREATE TABLE table_name_36 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_45 WHERE team_1 = \"portol palma mallorca\"", "question": "What is 1st Leg, when Team 1 is \"Portol Palma Mallorca\"?", "context": "CREATE TABLE table_name_45 (team_1 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_35 WHERE team_1 = \"noliko maaseik\"", "question": "What is Agg., when Team 1 is \"Noliko Maaseik\"?", "context": "CREATE TABLE table_name_35 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT position FROM table_name_60 WHERE players = \"jake johnson\"", "question": "What is Jake Johnson's position?", "context": "CREATE TABLE table_name_60 (position VARCHAR, players VARCHAR)"}, {"answer": "SELECT bats_throws FROM table_name_87 WHERE players = \"clayton allison\"", "question": "What side does Clayton Allison Bat/Throw from?", "context": "CREATE TABLE table_name_87 (bats_throws VARCHAR, players VARCHAR)"}, {"answer": "SELECT bats_throws FROM table_name_9 WHERE players = \"ryan overland\"", "question": "What side does Ryan Overland Bat/Throws from?", "context": "CREATE TABLE table_name_9 (bats_throws VARCHAR, players VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_90 WHERE team_2 = \"pelister\"", "question": "What is the 2nd leg of pelister team 2?", "context": "CREATE TABLE table_name_90 (team_2 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_20 WHERE team_2 = \"cementarnica\"", "question": "What is the team 1 with cementarnica as team 2?", "context": "CREATE TABLE table_name_20 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_6 WHERE team_1 = \"turnovo\"", "question": "What is the team 2 with turnovo as team 1?", "context": "CREATE TABLE table_name_6 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_92 WHERE team_2 = \"tikve\u0161\"", "question": "What is the team 1 with tikve\u0161 as team 2?", "context": "CREATE TABLE table_name_92 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT place FROM table_name_77 WHERE score = 69 - 69 = 138 AND country = \"united states\"", "question": "What is Place, when Score is \"69-69=138\", and when Country is \"United States\"?", "context": "CREATE TABLE table_name_77 (place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_20 WHERE score = 69 - 69 = 138 AND player = \"ian poulter\"", "question": "What is Country, when Score is \"69-69=138\", and when Player is \"Ian Poulter\"?", "context": "CREATE TABLE table_name_20 (country VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE country = \"scotland\"", "question": "What is Score, when Country is \"Scotland\"?", "context": "CREATE TABLE table_name_47 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE country = \"united states\" AND player = \"bob tway\"", "question": "What is Score, when Country is \"United States\", and when Player is \"Bob Tway\"?", "context": "CREATE TABLE table_name_43 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE player = \"ernie els\"", "question": "What is Score, when Player is \"Ernie Els\"?", "context": "CREATE TABLE table_name_15 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_33 WHERE overall = 244", "question": "What is the smallest Pick with Overall of 244?", "context": "CREATE TABLE table_name_33 (pick INTEGER, overall VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_88 WHERE overall > 17 AND player_name = \"dave adams category:articles with hcards\" AND year > 1963", "question": "What is the smallest Pick with Overall larger than 17, a Player name of dave adams category:articles with hcards, and a Year larger than 1963?", "context": "CREATE TABLE table_name_88 (pick INTEGER, year VARCHAR, overall VARCHAR, player_name VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_35 WHERE player_name = \"dave adams category:articles with hcards\" AND round < 23", "question": "What is the greatest Year with a Player name of dave adams category:articles with hcards, and a Round smaller than 23?", "context": "CREATE TABLE table_name_35 (year INTEGER, player_name VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_15 WHERE res = \"win\" AND opponent = \"demian maia\"", "question": "Name the Round that has Res of win and an Opponent of demian maia?", "context": "CREATE TABLE table_name_15 (round INTEGER, res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_2 WHERE opponent = \"kendall grove\"", "question": "which Event that has an Opponent of kendall grove?", "context": "CREATE TABLE table_name_2 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_61 WHERE event = \"ufc 123\"", "question": "When has an Event of ufc 123?", "context": "CREATE TABLE table_name_61 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT region FROM table_name_77 WHERE country = \"laos\"", "question": "The country of Laos is in what region?", "context": "CREATE TABLE table_name_77 (region VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_80 WHERE internetlists = \"\u2014\" AND onisecurityfiltering = \"\u2014\"", "question": "What is the name of the country that has internetlists of \u2014, and ONIsecurityfiltering of \u2014?", "context": "CREATE TABLE table_name_80 (country VARCHAR, internetlists VARCHAR, onisecurityfiltering VARCHAR)"}, {"answer": "SELECT onitoolsfiltering FROM table_name_62 WHERE fhfreepressreport = \"54\" AND onisocialfiltering = \"ne\"", "question": "With a FHFreepressreport of 54, and ne as ONIsocialfiltering, what is the ONItoolsfiltering?", "context": "CREATE TABLE table_name_62 (onitoolsfiltering VARCHAR, fhfreepressreport VARCHAR, onisocialfiltering VARCHAR)"}, {"answer": "SELECT results FROM table_name_90 WHERE district = \"arizona 1\"", "question": "What were the Results in Arizona 1 District?", "context": "CREATE TABLE table_name_90 (results VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_name_90 WHERE party = \"republican\" AND results = \"re-elected\" AND first_elected = 2000", "question": "What Republican District had Incumbent First Elected in 2000 then Re-elected?", "context": "CREATE TABLE table_name_90 (district VARCHAR, first_elected VARCHAR, party VARCHAR, results VARCHAR)"}, {"answer": "SELECT AVG(first_elected) FROM table_name_18 WHERE incumbent = \"john shadegg\"", "question": "What is John Shadegg's First Elected date?", "context": "CREATE TABLE table_name_18 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE opponent = \"lamine ouahab\"", "question": "On which date was the opponent lamine ouahab?", "context": "CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE round = \"1r\" AND result = \"2\u20136, 5\u20137, 2\u20136\"", "question": "On what date did the match take place in a round of 1r and have a result 2\u20136, 5\u20137, 2\u20136?", "context": "CREATE TABLE table_name_62 (date VARCHAR, round VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_37 WHERE round = \"1r\" AND surface = \"hard\" AND against = \"tunisia\"", "question": "What is the result of the match in round 1r against tunisia and on a hard surface?", "context": "CREATE TABLE table_name_37 (result VARCHAR, against VARCHAR, round VARCHAR, surface VARCHAR)"}, {"answer": "SELECT against FROM table_name_19 WHERE round = \"2r\" AND surface = \"clay\"", "question": "Who was the match against when on a clay surface during round 2r?", "context": "CREATE TABLE table_name_19 (against VARCHAR, round VARCHAR, surface VARCHAR)"}, {"answer": "SELECT round FROM table_name_34 WHERE edition = \"2010 davis cup europe/africa group ii\" AND against = \"cyprus\"", "question": "What round had a amtch against cyprus and an edition of 2010 davis cup europe/africa group ii?", "context": "CREATE TABLE table_name_34 (round VARCHAR, edition VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_37 WHERE time = 10.56", "question": "What is the most recent year with a time of 10.56?", "context": "CREATE TABLE table_name_37 (year INTEGER, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE opponents = \"astley bridge 'a'\"", "question": "When was the game played against Astley Bridge 'a'?", "context": "CREATE TABLE table_name_56 (date VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_93 WHERE week_4 = \"nicole woodruff\"", "question": "Who was the girl of the week after nicole woodruff in the same month?", "context": "CREATE TABLE table_name_93 (week_5 VARCHAR, week_4 VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_65 WHERE week_2 = \"brianne bailey\"", "question": "Who was the girl of the week 3 weeks after brianne bailey in the same month?", "context": "CREATE TABLE table_name_65 (week_5 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_47 WHERE week_4 = \"terri lynn farrow\"", "question": "Who was the girl of the week 2 weeks before terri lynn farrow in the same month?", "context": "CREATE TABLE table_name_47 (week_2 VARCHAR, week_4 VARCHAR)"}, {"answer": "SELECT tries FROM table_name_13 WHERE points = 20", "question": "How many tries did the player have which ended with 20 Points?", "context": "CREATE TABLE table_name_13 (tries VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_14 WHERE date = \"february 2\" AND attendance < 16 OFFSET 874", "question": "What is the average Points, when Date is \"February 2\", and when Attendance is less than 16,874?", "context": "CREATE TABLE table_name_14 (points INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_72 WHERE date = \"february 4\" AND points < 57", "question": "What is the lowest Attendance, when Date is \"February 4\", and when Points is less than 57?", "context": "CREATE TABLE table_name_72 (attendance INTEGER, date VARCHAR, points VARCHAR)"}, {"answer": "SELECT years FROM table_name_93 WHERE total = \"1\" AND sport = \"softball\"", "question": "For a total of 1 and the sport of softball what were the years?", "context": "CREATE TABLE table_name_93 (years VARCHAR, total VARCHAR, sport VARCHAR)"}, {"answer": "SELECT total FROM table_name_39 WHERE years = \"1925\"", "question": "What was the total for the year of 1925?", "context": "CREATE TABLE table_name_39 (total VARCHAR, years VARCHAR)"}, {"answer": "SELECT label FROM table_name_19 WHERE format = \"limited edition cd/dvd\"", "question": "Which label is in a limited edition cd/dvd format?", "context": "CREATE TABLE table_name_19 (label VARCHAR, format VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE country = \"united kingdom\" AND format = \"lp\"", "question": "What is the date for the United Kingdom with an LP format?", "context": "CREATE TABLE table_name_88 (date VARCHAR, country VARCHAR, format VARCHAR)"}, {"answer": "SELECT format FROM table_name_37 WHERE country = \"japan\"", "question": "Which format is in Japan?", "context": "CREATE TABLE table_name_37 (format VARCHAR, country VARCHAR)"}, {"answer": "SELECT format FROM table_name_70 WHERE country = \"united kingdom\" AND catalogue__number = \"886973273913 (gowow012)\"", "question": "What is the format of catalog number 886973273913 (gowow012) in the United Kingdom?", "context": "CREATE TABLE table_name_70 (format VARCHAR, country VARCHAR, catalogue__number VARCHAR)"}, {"answer": "SELECT MIN(apps) FROM table_name_29 WHERE club = \"barcelona\" AND season = \"1996/97\" AND rank < 7", "question": "Which Apps have a Club of barcelona, and a Season of 1996/97, and a Rank smaller than 7?", "context": "CREATE TABLE table_name_29 (apps INTEGER, rank VARCHAR, club VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_7 WHERE club = \"real madrid\" AND rank < 6 AND goals < 121", "question": "Which Season has a Club of real madrid, and a Rank smaller than 6, and less than 121 goals?", "context": "CREATE TABLE table_name_7 (season VARCHAR, goals VARCHAR, club VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(apps) FROM table_name_48 WHERE rank > 2 AND goals < 102", "question": "How many Apps have a Rank larger than 2, and Goals smaller than 102?", "context": "CREATE TABLE table_name_48 (apps INTEGER, rank VARCHAR, goals VARCHAR)"}, {"answer": "SELECT season FROM table_name_61 WHERE rank < 4 AND club = \"barcelona\" AND goals < 115", "question": "Which Season has a Rank smaller than 4, and a Club of barcelona, and less than 115 goals?", "context": "CREATE TABLE table_name_61 (season VARCHAR, goals VARCHAR, rank VARCHAR, club VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE total = 147 AND country = \"spain\"", "question": "What player has a 147 total from Spain?", "context": "CREATE TABLE table_name_97 (player VARCHAR, total VARCHAR, country VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_58 WHERE total = 146", "question": "What year was the 146 total?", "context": "CREATE TABLE table_name_58 (year_s__won VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_39 WHERE player = \"paul lawrie\"", "question": "What country is Paul Lawrie from?", "context": "CREATE TABLE table_name_39 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT fuel FROM table_name_50 WHERE output = \"ps (kw; hp) @6000 rpm\"", "question": "Which Fuel has an Output of ps (kw; hp) @6000 rpm?", "context": "CREATE TABLE table_name_50 (fuel VARCHAR, output VARCHAR)"}, {"answer": "SELECT torque FROM table_name_21 WHERE volume = \"1896 cc\" AND co_2 = \"140 g/km\"", "question": "Which Torque has a Volume of 1896 cc, and a CO 2 of 140 g/km?", "context": "CREATE TABLE table_name_21 (torque VARCHAR, volume VARCHAR, co_2 VARCHAR)"}, {"answer": "SELECT venue FROM table_name_62 WHERE year < 1986 AND position = \"6th\"", "question": "What Venue has a Year smaller than 1986, and a Position of 6th?", "context": "CREATE TABLE table_name_62 (venue VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_78 WHERE time = \"3:01.78\"", "question": "What Position has a Time of 3:01.78?", "context": "CREATE TABLE table_name_78 (position VARCHAR, time VARCHAR)"}, {"answer": "SELECT event FROM table_name_77 WHERE competition = \"world championships\"", "question": "What Event has a Competition of world championships?", "context": "CREATE TABLE table_name_77 (event VARCHAR, competition VARCHAR)"}, {"answer": "SELECT time FROM table_name_77 WHERE year = 1984", "question": "What Time has a Year of 1984?", "context": "CREATE TABLE table_name_77 (time VARCHAR, year VARCHAR)"}, {"answer": "SELECT competition FROM table_name_52 WHERE year < 1983", "question": "What Competition has a Year smaller than 1983?", "context": "CREATE TABLE table_name_52 (competition VARCHAR, year INTEGER)"}, {"answer": "SELECT SUM(weight) FROM table_name_78 WHERE year = \"senior\" AND height = \"6\u201310\"", "question": "What is the Weight of the Senior Player with a Height of 6\u201310?", "context": "CREATE TABLE table_name_78 (weight INTEGER, year VARCHAR, height VARCHAR)"}, {"answer": "SELECT year FROM table_name_20 WHERE weight < 230 AND home_town = \"san antonio, texas\"", "question": "What is the Year of the Player with a Weight of 230 or less from San Antonio, Texas?", "context": "CREATE TABLE table_name_20 (year VARCHAR, weight VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT height FROM table_name_54 WHERE year = \"sophomore\" AND position = \"guard\" AND weight = 185", "question": "What is the Height of the Sophomore Guard weighing 185?", "context": "CREATE TABLE table_name_54 (height VARCHAR, weight VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT year FROM table_name_45 WHERE weight = 185", "question": "What is the Year of the Player weighing 185?", "context": "CREATE TABLE table_name_45 (year VARCHAR, weight VARCHAR)"}, {"answer": "SELECT club FROM table_name_15 WHERE location = \"thomson, victoria\"", "question": "Which club is located in Thomson, Victoria?", "context": "CREATE TABLE table_name_15 (club VARCHAR, location VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_25 WHERE years_in_gfl = \"1986-1988\"", "question": "What is the nickname of the team who was in the GFL from 1986-1988?", "context": "CREATE TABLE table_name_25 (nickname VARCHAR, years_in_gfl VARCHAR)"}, {"answer": "SELECT location FROM table_name_90 WHERE nickname = \"tigers\"", "question": "Which location did the Tigers have?", "context": "CREATE TABLE table_name_90 (location VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_59 WHERE club = \"geelong west cricket & football club\"", "question": "What was the nickname of the team in the Geelong West Cricket & Football Club?", "context": "CREATE TABLE table_name_59 (nickname VARCHAR, club VARCHAR)"}, {"answer": "SELECT gfl_premierships FROM table_name_70 WHERE nickname = \"magpies\"", "question": "What GLF Premiership did the Magpies have?", "context": "CREATE TABLE table_name_70 (gfl_premierships VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_93 WHERE club = \"east geelong\"", "question": "What was the nickname of the team in the East Geelong club?", "context": "CREATE TABLE table_name_93 (nickname VARCHAR, club VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_6 WHERE finish = \"t27\"", "question": "What year has a winning finish of T27?", "context": "CREATE TABLE table_name_6 (year_s__won VARCHAR, finish VARCHAR)"}, {"answer": "SELECT finish FROM table_name_76 WHERE country = \"england\"", "question": "What was the finish for England?", "context": "CREATE TABLE table_name_76 (finish VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_14 WHERE year_s__won = \"1991\"", "question": "What county won in 1991?", "context": "CREATE TABLE table_name_14 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_40 WHERE to_par = \"+9\"", "question": "What is the highest total to par of +9?", "context": "CREATE TABLE table_name_40 (total INTEGER, to_par VARCHAR)"}, {"answer": "SELECT status FROM table_name_77 WHERE against = 12", "question": "What Status has Against of 12?", "context": "CREATE TABLE table_name_77 (status VARCHAR, against VARCHAR)"}, {"answer": "SELECT venue FROM table_name_46 WHERE date = \"17/03/1990\"", "question": "What Venue has a Date of 17/03/1990?", "context": "CREATE TABLE table_name_46 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_30 WHERE attendance = \"43,272\"", "question": "How many weeks had an Attendance of 43,272?", "context": "CREATE TABLE table_name_30 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_37 WHERE date = \"december 12, 1993\"", "question": "Who played on december 12, 1993?", "context": "CREATE TABLE table_name_37 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE opposing_team = \"united states\"", "question": "What day was United States the opposing team?", "context": "CREATE TABLE table_name_92 (date VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT opposing_team FROM table_name_5 WHERE status = \"second test\"", "question": "What was the opposing team for the second test?", "context": "CREATE TABLE table_name_5 (opposing_team VARCHAR, status VARCHAR)"}, {"answer": "SELECT opposing_team FROM table_name_30 WHERE status = \"second test\"", "question": "What was the opposing team for the second test?", "context": "CREATE TABLE table_name_30 (opposing_team VARCHAR, status VARCHAR)"}, {"answer": "SELECT round FROM table_name_40 WHERE venue = \"canberra stadium\"", "question": "What round was in canberra stadium?", "context": "CREATE TABLE table_name_40 (round VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_87 WHERE opponent = \"cronulla sharks\"", "question": "What is the venue of the match with cronulla sharks as the opponent?", "context": "CREATE TABLE table_name_87 (venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_75 WHERE venue = \"toyota stadium\"", "question": "Who is the opponent at toyota stadium?", "context": "CREATE TABLE table_name_75 (opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE opponent = \"sydney roosters\"", "question": "What is the score of the match with the sydney roosters as the opponent?", "context": "CREATE TABLE table_name_83 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_49 WHERE opponent = \"cronulla sharks\"", "question": "What is the venue of the match with the cronulla sharks as the opponent?", "context": "CREATE TABLE table_name_49 (venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_9 WHERE game = \"4\"", "question": "What Location Attendance has a Game of 4?", "context": "CREATE TABLE table_name_9 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE location_attendance = \"reunion arena\"", "question": "What Date has a Location Attendance of reunion arena?", "context": "CREATE TABLE table_name_44 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_68 WHERE location_attendance = \"delta center\" AND opponent = \"vs vancouver grizzlies\"", "question": "What Record has a Location Attendance of delta center, and an Opponent of vs vancouver grizzlies?", "context": "CREATE TABLE table_name_68 (record VARCHAR, location_attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_66 WHERE opponent = \"at denver nuggets\"", "question": "What Location Attendance has an Opponent of at denver nuggets?", "context": "CREATE TABLE table_name_66 (location_attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_99 WHERE opponent = \"vs washington wizards\"", "question": "What Record has an Opponent of vs washington wizards?", "context": "CREATE TABLE table_name_99 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_91 WHERE game = \"14\"", "question": "What Location Attendance has a Game of 14?", "context": "CREATE TABLE table_name_91 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_name_86 WHERE partnering = \"robin ammerlaan\" AND opponents_in_final = \"shingo kunieda maikel scheffers\"", "question": "What was the final score of the game against shingo kunieda maikel scheffers when robin ammerlaan was Ronald Vink's partner?", "context": "CREATE TABLE table_name_86 (score_in_final VARCHAR, partnering VARCHAR, opponents_in_final VARCHAR)"}, {"answer": "SELECT championship FROM table_name_71 WHERE partnering = \"maikel scheffers\" AND year > 2007 AND opponents_in_final = \"stephane houdet nicolas peiffer\"", "question": "What championship tournament did Ronald Vink play in with maikel scheffers as his partner in 2007 against stephane houdet nicolas peiffer?", "context": "CREATE TABLE table_name_71 (championship VARCHAR, opponents_in_final VARCHAR, partnering VARCHAR, year VARCHAR)"}, {"answer": "SELECT screen_size FROM table_name_8 WHERE bluetooth = \"no\" AND model = \"s45 (australia only)\"", "question": "What is the screen size of the s45 (Australia only) Model with no bluetooth?", "context": "CREATE TABLE table_name_8 (screen_size VARCHAR, bluetooth VARCHAR, model VARCHAR)"}, {"answer": "SELECT bluetooth FROM table_name_31 WHERE model = \"s90i\"", "question": "Does the S90i model have bluetooth?", "context": "CREATE TABLE table_name_31 (bluetooth VARCHAR, model VARCHAR)"}, {"answer": "SELECT bluetooth FROM table_name_31 WHERE model = \"s35\"", "question": "Does the s35 model have bluetooth?", "context": "CREATE TABLE table_name_31 (bluetooth VARCHAR, model VARCHAR)"}, {"answer": "SELECT height FROM table_name_49 WHERE club = \"havk mladost\"", "question": "What is the height for club Havk Mladost?", "context": "CREATE TABLE table_name_49 (height VARCHAR, club VARCHAR)"}, {"answer": "SELECT height FROM table_name_45 WHERE name = \"nikola frankovi\u0107\"", "question": "What is the height for Nikola Frankovi\u0107?", "context": "CREATE TABLE table_name_45 (height VARCHAR, name VARCHAR)"}, {"answer": "SELECT weight FROM table_name_95 WHERE name = \"damir buri\u0107\"", "question": "What is the weight of Damir Buri\u0107?", "context": "CREATE TABLE table_name_95 (weight VARCHAR, name VARCHAR)"}, {"answer": "SELECT total FROM table_name_70 WHERE rank_points = \"15\" AND event = \"wc beijing\"", "question": "What is Total, when Rank Points is \"15\", and when Event is \"WC Beijing\"?", "context": "CREATE TABLE table_name_70 (total VARCHAR, rank_points VARCHAR, event VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_12 WHERE event = \"wc rio de janeiro\" AND rank_points = \"10\"", "question": "What is Score Points, when Event is \"WC Rio De Janeiro\", and when Rank Points is \"10\"?", "context": "CREATE TABLE table_name_12 (score_points VARCHAR, event VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_51 WHERE total = \"21\"", "question": "What is Shooter, when Total is \"21\"?", "context": "CREATE TABLE table_name_51 (shooter VARCHAR, total VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_81 WHERE shooter = \"sandra kolly ( sui )\"", "question": "What is Score Points, when Shooter is \"Sandra Kolly ( SUI )\"?", "context": "CREATE TABLE table_name_81 (score_points VARCHAR, shooter VARCHAR)"}, {"answer": "SELECT rank_points FROM table_name_77 WHERE event = \"wc milan\" AND shooter = \"lalita yauhleuskaya ( aus )\"", "question": "What is Rank Points, when Event is \"WC Milan\", and when Shooter is \"Lalita Yauhleuskaya ( AUS )\"?", "context": "CREATE TABLE table_name_77 (rank_points VARCHAR, event VARCHAR, shooter VARCHAR)"}, {"answer": "SELECT rank_points FROM table_name_12 WHERE total = \"17\" AND shooter = \"lalita yauhleuskaya ( aus )\"", "question": "What is Rank Points, when Total is \"17\", and when Shooter is \"Lalita Yauhleuskaya ( AUS )\"?", "context": "CREATE TABLE table_name_12 (rank_points VARCHAR, total VARCHAR, shooter VARCHAR)"}, {"answer": "SELECT artist FROM table_name_32 WHERE week = \"top 6\"", "question": "Which Artist is listed as having Top 6 in Week", "context": "CREATE TABLE table_name_32 (artist VARCHAR, week VARCHAR)"}, {"answer": "SELECT song_sung FROM table_name_17 WHERE artist = \"luther vandross\" AND week = \"top 20\"", "question": "Which song was sung by Artist Luther Vandross in the Week Top 20?", "context": "CREATE TABLE table_name_17 (song_sung VARCHAR, artist VARCHAR, week VARCHAR)"}, {"answer": "SELECT artist FROM table_name_54 WHERE week = \"top 12\"", "question": "Which Artist has a Week of Top 12?", "context": "CREATE TABLE table_name_54 (artist VARCHAR, week VARCHAR)"}, {"answer": "SELECT status FROM table_name_32 WHERE artist = \"freddie jackson\"", "question": "What Status does Freddie Jackson have?", "context": "CREATE TABLE table_name_32 (status VARCHAR, artist VARCHAR)"}, {"answer": "SELECT song_sung FROM table_name_14 WHERE status = \"eliminated\"", "question": "Which Song Sung has a Status of Eliminated?", "context": "CREATE TABLE table_name_14 (song_sung VARCHAR, status VARCHAR)"}, {"answer": "SELECT place FROM table_name_95 WHERE score = 71 - 69 - 66 = 206", "question": "What is the place of the player with a 71-69-66=206 score?", "context": "CREATE TABLE table_name_95 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_44 WHERE score = 71 - 66 - 64 = 201", "question": "What is the place of the player with a 71-66-64=201 score?", "context": "CREATE TABLE table_name_44 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_91 WHERE player = \"peter senior\"", "question": "What is the to par of player peter senior?", "context": "CREATE TABLE table_name_91 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT finalist FROM table_name_30 WHERE year = 2008", "question": "What is Finalist, when Year is \"2008\"?", "context": "CREATE TABLE table_name_30 (finalist VARCHAR, year VARCHAR)"}, {"answer": "SELECT place FROM table_name_37 WHERE year > 2006 AND champion = \"asvel\"", "question": "What is Place, when Year is greater than 2006, and when Champion is \"Asvel\"?", "context": "CREATE TABLE table_name_37 (place VARCHAR, year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT champion FROM table_name_71 WHERE year > 2007 AND finalist = \"asvel\"", "question": "What is Champion, when Year is greater than 2007, and when Finalist is \"Asvel\"?", "context": "CREATE TABLE table_name_71 (champion VARCHAR, year VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT 2 AS nd_party FROM table_name_82 WHERE election = \"1865\"", "question": "What is 2nd Party, when Election is \"1865\"?", "context": "CREATE TABLE table_name_82 (election VARCHAR)"}, {"answer": "SELECT first_member FROM table_name_95 WHERE election = \"1871 by-election\"", "question": "What is First Member, when Election is \"1871 by-election\"?", "context": "CREATE TABLE table_name_95 (first_member VARCHAR, election VARCHAR)"}, {"answer": "SELECT 1 AS st_party FROM table_name_18 WHERE first_member = \"peter john locke king\" AND second_member = \"james watney\"", "question": "What is 1st Party, when First Member is \"Peter John Locke King\", and when Second Member is \"James Watney\"?", "context": "CREATE TABLE table_name_18 (first_member VARCHAR, second_member VARCHAR)"}, {"answer": "SELECT second_member FROM table_name_99 WHERE election = \"1835\"", "question": "What is Second Member, when Election is \"1835\"?", "context": "CREATE TABLE table_name_99 (second_member VARCHAR, election VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_64 WHERE goals_against = 45 AND goals_for < 65", "question": "How much Played has Goals Against of 45, and Goals For smaller than 65?", "context": "CREATE TABLE table_name_64 (played INTEGER, goals_against VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT COUNT(goals_against) FROM table_name_40 WHERE position = 4", "question": "How many Goals Against have a Position of 4?", "context": "CREATE TABLE table_name_40 (goals_against VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_65 WHERE bronze < 1 AND gold > 0", "question": "What is the highest total when bronze is less than 1 and gold more than 0?", "context": "CREATE TABLE table_name_65 (total INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_89 WHERE rank = 5 AND nation = \"poland\" AND gold < 0", "question": "what is the sum of bronze when the rank is 5, the nation is poland and gold is less than 0?", "context": "CREATE TABLE table_name_89 (bronze INTEGER, gold VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_99 WHERE rank = 3 AND nation = \"france\" AND bronze < 0", "question": "what is the sum of silver when the rank is 3, nation is france and bronze is less than 0?", "context": "CREATE TABLE table_name_99 (silver INTEGER, bronze VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_4 WHERE nation = \"china\" AND bronze > 0", "question": "How many times is the nation china and bronze more than 0?", "context": "CREATE TABLE table_name_4 (rank VARCHAR, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_82 WHERE rank > 3 AND bronze > 1", "question": "How many times is the rank higher than 3 and bronze more than 1?", "context": "CREATE TABLE table_name_82 (gold VARCHAR, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_98 WHERE bronze = 1 AND rank < 2 AND gold > 4", "question": "what is the least silver when bronze is 1, rank is less than 2 and gold is more than 4?", "context": "CREATE TABLE table_name_98 (silver INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_2 WHERE against = 2177 AND byes < 4", "question": "What is the average value for Draws, when Against is \"2177\", and when Byes is less than 4?", "context": "CREATE TABLE table_name_2 (draws INTEGER, against VARCHAR, byes VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_22 WHERE wins = 16 AND against < 772", "question": "What is the total number of Losses, when Wins is \"16\", and when Against is less than 772?", "context": "CREATE TABLE table_name_22 (losses VARCHAR, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_12 WHERE losses = 0 AND byes > 4", "question": "What is the lowest value for Draws, when Losses is \"0\", and when Byes is greater than 4?", "context": "CREATE TABLE table_name_12 (draws INTEGER, losses VARCHAR, byes VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_64 WHERE wins < 16 AND benalla_dfl = \"swanpool\" AND against < 2177", "question": "What is the highest value for Byes, when Wins is less than 16, when Benalla DFL is \"Swanpool\", and when Against is less than 2177?", "context": "CREATE TABLE table_name_64 (byes INTEGER, against VARCHAR, wins VARCHAR, benalla_dfl VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_61 WHERE against < 1794 AND losses = 6 AND draws < 0", "question": "What is the highest value for Byes, when Against is less than 1794, when Losses is \"6\", and when Draws is less than 0?", "context": "CREATE TABLE table_name_61 (byes INTEGER, draws VARCHAR, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT teams FROM table_name_89 WHERE season = \"1950-51\"", "question": "what is the teams for season 1950-51?", "context": "CREATE TABLE table_name_89 (teams VARCHAR, season VARCHAR)"}, {"answer": "SELECT league FROM table_name_93 WHERE season = \"1955-56\"", "question": "What is the league for season 1955-56?", "context": "CREATE TABLE table_name_93 (league VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(year_drafted) FROM table_name_9 WHERE fcsl_team = \"winter park\" AND round = \"4th\"", "question": "What is the drafted year when the FCSL Team was Winter Park, in the 4th round?", "context": "CREATE TABLE table_name_9 (year_drafted INTEGER, fcsl_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT fcsl_team FROM table_name_22 WHERE mlb_team = \"toronto blue jays\" AND round = \"4th\"", "question": "What is the FCSL Team when the MLB Team is Toronto Blue Jays, in the 4th round?", "context": "CREATE TABLE table_name_22 (fcsl_team VARCHAR, mlb_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE player = \"john fought\"", "question": "What was John Fought's score?", "context": "CREATE TABLE table_name_96 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_5 WHERE place = \"t8\" AND country = \"argentina\"", "question": "What is the to par of the player from Argentina with a t8 place?", "context": "CREATE TABLE table_name_5 (to_par VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_62 WHERE score = 68 - 67 - 69 - 71 = 275", "question": "How much money does the player with a 68-67-69-71=275 score have?", "context": "CREATE TABLE table_name_62 (money___\u00a3__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_9 WHERE place = \"t1\" AND player = \"wayne grady\"", "question": "What is the country of t1 place player wayne grady?", "context": "CREATE TABLE table_name_9 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_78 WHERE score = 68 - 71 - 68 - 72 = 279", "question": "How much money does the player with a 68-71-68-72=279 score have?", "context": "CREATE TABLE table_name_78 (money___\u00a3__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_20 WHERE score = 69 - 70 - 72 - 64 = 275", "question": "How much money does the player with a 69-70-72-64=275 score have?", "context": "CREATE TABLE table_name_20 (money___\u00a3__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_21 WHERE place = \"t8\" AND score = 74 - 72 - 75 - 71 = 292", "question": "What was the money when the place was t8 and the score was 74-72-75-71=292?", "context": "CREATE TABLE table_name_21 (money___$__ VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_82 WHERE score = 74 - 72 - 75 - 71 = 292", "question": "What was the average money when the score was 74-72-75-71=292?", "context": "CREATE TABLE table_name_82 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_94 WHERE player = \"tim simpson\"", "question": "What was Tim Simpson's place?", "context": "CREATE TABLE table_name_94 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_16 WHERE place = \"3\"", "question": "What country placed 3?", "context": "CREATE TABLE table_name_16 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(barrow_island_australia) FROM table_name_94 WHERE draugen_north_sea = 17 AND mutineer_exeter_australia < 6", "question": "What is the average Barrow Island Australia when Draugen north sea is 17 and Mutineer-Exeter Australia is smaller than 6?", "context": "CREATE TABLE table_name_94 (barrow_island_australia INTEGER, draugen_north_sea VARCHAR, mutineer_exeter_australia VARCHAR)"}, {"answer": "SELECT MAX(cpc_blend_kazakhstan) FROM table_name_48 WHERE barrow_island_australia < 12", "question": "What is the highest CPC blend Kazakhstan number when Barrow Island Australia is smaller than 12?", "context": "CREATE TABLE table_name_48 (cpc_blend_kazakhstan INTEGER, barrow_island_australia INTEGER)"}, {"answer": "SELECT MIN(cpc_blend_kazakhstan) FROM table_name_38 WHERE draugen_north_sea = 17", "question": "What is the lowest CPC Blend Kazakhstan number when Draugen North Sea is 17?", "context": "CREATE TABLE table_name_38 (cpc_blend_kazakhstan INTEGER, draugen_north_sea VARCHAR)"}, {"answer": "SELECT name FROM table_name_7 WHERE winning_driver = \"eugenio silvani\"", "question": "What race did eugenio silvani win?", "context": "CREATE TABLE table_name_7 (name VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT name FROM table_name_19 WHERE winning_constructor = \"mercedes\"", "question": "Which race did Mercedes win?", "context": "CREATE TABLE table_name_19 (name VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_41 WHERE winning_constructor = \"alfa romeo\"", "question": "Which circuit did alfa romeo win?", "context": "CREATE TABLE table_name_41 (circuit VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT number_range FROM table_name_60 WHERE quantity = \"56\"", "question": "What is the number range for the 56 quantity?", "context": "CREATE TABLE table_name_60 (number_range VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT team FROM table_name_39 WHERE year < 1987 AND manufacturer = \"chrysler\" AND start = \"28\"", "question": "Which team in 1987 had a start of 28 and drove a chrysler?", "context": "CREATE TABLE table_name_39 (team VARCHAR, start VARCHAR, year VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT party FROM table_name_33 WHERE district = \"tennessee 8\"", "question": "What is Party, when District is \"Tennessee 8\"?", "context": "CREATE TABLE table_name_33 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_name_28 WHERE party = \"democratic\" AND district = \"tennessee 5\"", "question": "What is the total number of First Elected, when Party is \"Democratic\", and when District is \"Tennessee 5\"?", "context": "CREATE TABLE table_name_28 (first_elected VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT MIN(first_elected) FROM table_name_38 WHERE results = \"re-elected\" AND incumbent = \"lincoln davis\"", "question": "What is the lowest First Elected, when Results is \"Re-elected\", and when Incumbent is \"Lincoln Davis\"?", "context": "CREATE TABLE table_name_38 (first_elected INTEGER, results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_name_24 WHERE results = \"re-elected\" AND incumbent = \"lincoln davis\"", "question": "What is the highest First Elected, when Results is \"Re-elected\", and when Incumbent is \"Lincoln Davis\"?", "context": "CREATE TABLE table_name_24 (first_elected INTEGER, results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT status FROM table_name_86 WHERE against = 44", "question": "What is the Status of the 44 Against?", "context": "CREATE TABLE table_name_86 (status VARCHAR, against VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE against = 42", "question": "What is the date of the 42 Against?", "context": "CREATE TABLE table_name_8 (date VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_24 WHERE player = \"seve ballesteros\"", "question": "What is the total number for Seve Ballesteros?", "context": "CREATE TABLE table_name_24 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(to_par) FROM table_name_91 WHERE player = \"bob charles\"", "question": "What is the lowest to par for Bob Charles?", "context": "CREATE TABLE table_name_91 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT name FROM table_name_7 WHERE date_of_birth = \"1982-01-29\"", "question": "Who is born on 1982-01-29?", "context": "CREATE TABLE table_name_7 (name VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT pos FROM table_name_52 WHERE date_of_birth = \"1976-09-20\"", "question": "What is the position played by the man born on 1976-09-20?", "context": "CREATE TABLE table_name_52 (pos VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT country FROM table_name_78 WHERE score = 72 - 72 - 72 = 216", "question": "What country was the golfer with a score of 72-72-72=216 representing?", "context": "CREATE TABLE table_name_78 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT division_two FROM table_name_26 WHERE premier_division = \"leominster town\"", "question": "Which Division Two team were champions as the same time the Premier Division Leominster town team were champs?", "context": "CREATE TABLE table_name_26 (division_two VARCHAR, premier_division VARCHAR)"}, {"answer": "SELECT season FROM table_name_63 WHERE division_three = \"hampton park rangers\"", "question": "Which Season was the Division Three Hampton Park Rangers champions?", "context": "CREATE TABLE table_name_63 (season VARCHAR, division_three VARCHAR)"}, {"answer": "SELECT season FROM table_name_92 WHERE division_two = \"fownhope reserves\"", "question": "Which Season was the Division Two Fownhope Reserves champions?", "context": "CREATE TABLE table_name_92 (season VARCHAR, division_two VARCHAR)"}, {"answer": "SELECT division_one FROM table_name_61 WHERE division_two = \"hereford lads club colts\"", "question": "What Division One team were champions at the same time the Division Two Hereford Lads Club Colts were champs?", "context": "CREATE TABLE table_name_61 (division_one VARCHAR, division_two VARCHAR)"}, {"answer": "SELECT season FROM table_name_24 WHERE premier_division = \"ewyas harold\" AND division_three = \"stoke prior\"", "question": "Which year were both the Premier Division Ewyas Harold and Division Three Stoke Prior champions?", "context": "CREATE TABLE table_name_24 (season VARCHAR, premier_division VARCHAR, division_three VARCHAR)"}, {"answer": "SELECT engine FROM table_name_85 WHERE output = \"ps (kw; hp) @4700 rpm\"", "question": "What engine has an output of ps (kw; hp) @4700 rpm?", "context": "CREATE TABLE table_name_85 (engine VARCHAR, output VARCHAR)"}, {"answer": "SELECT COUNT(0 AS _100km_h), s FROM table_name_19 WHERE output = \"ps (kw; hp) @4000 rpm\"", "question": "What is the 0\u2013100km/h,s for the output of ps (kw; hp) @4000 rpm?", "context": "CREATE TABLE table_name_19 (s VARCHAR, output VARCHAR)"}, {"answer": "SELECT opposing_teams FROM table_name_83 WHERE date = \"08/02/1969\"", "question": "Who were the opposing teams on 08/02/1969?", "context": "CREATE TABLE table_name_83 (opposing_teams VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_19 WHERE date = \"12/04/1969\"", "question": "What is the highest number against on 12/04/1969?", "context": "CREATE TABLE table_name_19 (against INTEGER, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_33 WHERE against > 8 AND opposing_teams = \"ireland\"", "question": "What is the venue of the match with more than 8 against and ireland as the opposing team?", "context": "CREATE TABLE table_name_33 (venue VARCHAR, against VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT place FROM table_name_30 WHERE player = \"mark brooks\"", "question": "which Place has a Player of mark brooks?", "context": "CREATE TABLE table_name_30 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_48 WHERE player = \"justin leonard\"", "question": "Which Place has a Player of justin leonard?", "context": "CREATE TABLE table_name_48 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_17 WHERE country = \"united states\" AND score = 67 - 71 = 138", "question": "Name the Place which has a Score of 67-71=138, united states?", "context": "CREATE TABLE table_name_17 (place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_99 WHERE to_par = \"\u20136\"", "question": "Name the Player which has a To par of \u20136?", "context": "CREATE TABLE table_name_99 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT record FROM table_name_15 WHERE week = 11", "question": "What was their record on week 11?", "context": "CREATE TABLE table_name_15 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_20 WHERE game_site = \"atlanta-fulton county stadium\"", "question": "Who did they play at Atlanta-Fulton County Stadium?", "context": "CREATE TABLE table_name_20 (opponent VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT record FROM table_name_25 WHERE game_site = \"riverfront stadium\"", "question": "What was their record when they played at Riverfront Stadium?", "context": "CREATE TABLE table_name_25 (record VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT label FROM table_name_41 WHERE english_title = \"another she\"", "question": "What is Another She's Label?", "context": "CREATE TABLE table_name_41 (label VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT label FROM table_name_92 WHERE chinese__simplified_ = \"\u4f60 \u670b\u53cb\"", "question": "What is \u4f60 \u670b\u53cb's Label?", "context": "CREATE TABLE table_name_92 (label VARCHAR, chinese__simplified_ VARCHAR)"}, {"answer": "SELECT label FROM table_name_27 WHERE release_date = \"december 7, 2012\"", "question": "What Label was Released on December 7, 2012?", "context": "CREATE TABLE table_name_27 (label VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_11 WHERE chinese__simplified_ = \"\u4f60 \u670b\u53cb\"", "question": "What is \u4f60 \u670b\u53cb's English title?", "context": "CREATE TABLE table_name_11 (english_title VARCHAR, chinese__simplified_ VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_89 WHERE english_title = \"your friend\"", "question": "What is the Release date of the Album Your Friend?", "context": "CREATE TABLE table_name_89 (release_date VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_18 WHERE champion = \"0\" AND fourth_place = \"0\" AND rank = 6", "question": "What was the runner-up when champion is 0, 4th place is 0 and rank is 6?", "context": "CREATE TABLE table_name_18 (runner_up VARCHAR, rank VARCHAR, champion VARCHAR, fourth_place VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_12 WHERE rank = 7", "question": "What is the runner-up for rank of 7?", "context": "CREATE TABLE table_name_12 (runner_up VARCHAR, rank VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_51 WHERE total = 5", "question": "What is the runner-up when the total is 5?", "context": "CREATE TABLE table_name_51 (runner_up VARCHAR, total VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE team_2 = \"stade lavallois (d1)\"", "question": "What was the score of team 2 Stade Lavallois (D1)?", "context": "CREATE TABLE table_name_5 (score VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT displacement_cc FROM table_name_94 WHERE year = \"1965\"", "question": "What is the CC displacement for 1965?", "context": "CREATE TABLE table_name_94 (displacement_cc VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_25 WHERE type = \"grand prix\" AND engine = \"i8\" AND displacement_cc = \"1500\"", "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 type FROM table_name_11 WHERE model = \"6cm\"", "question": "What type of car has the model 6cm?", "context": "CREATE TABLE table_name_11 (type VARCHAR, model VARCHAR)"}, {"answer": "SELECT displacement_cc FROM table_name_13 WHERE engine = \"i6\" AND year = \"1936\"", "question": "What cc displacement has an i6 engine in 1936?", "context": "CREATE TABLE table_name_13 (displacement_cc VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT type FROM table_name_40 WHERE engine = \"v16\"", "question": "What type of car has the v16 engine?", "context": "CREATE TABLE table_name_40 (type VARCHAR, engine VARCHAR)"}, {"answer": "SELECT COUNT(year_s__won) FROM table_name_95 WHERE player = \"justin leonard\" AND to_par < 9", "question": "What is the total number of years won by Justin Leonard with a to par under 9?", "context": "CREATE TABLE table_name_95 (year_s__won VARCHAR, player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_12 WHERE country = \"scotland\" AND year_s__won = 1985", "question": "What is the highest total for Scotland with a year won of 1985?", "context": "CREATE TABLE table_name_12 (total INTEGER, country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT date__opening_ FROM table_name_47 WHERE opening_film = \"another myanmar, mae sot\"", "question": "What is Date (Opening), when Opening Film is \"Another Myanmar, Mae Sot\"?", "context": "CREATE TABLE table_name_47 (date__opening_ VARCHAR, opening_film VARCHAR)"}, {"answer": "SELECT date__closing_ FROM table_name_95 WHERE opening_film = \"deconstruction of korean housewife\"", "question": "What is Date (Closing), when Opening Film is \"Deconstruction of Korean Housewife\"?", "context": "CREATE TABLE table_name_95 (date__closing_ VARCHAR, opening_film VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_39 WHERE date__opening_ = \"september 21\"", "question": "What is the total number of Year(s), when Date (Opening) is \"September 21\"?", "context": "CREATE TABLE table_name_39 (year VARCHAR, date__opening_ VARCHAR)"}, {"answer": "SELECT date__opening_ FROM table_name_5 WHERE year < 2010 AND date__closing_ = \"september 28\"", "question": "What is Date (Opening), when Year is less than 2010, and when Date (Closing) is \"September 28\"?", "context": "CREATE TABLE table_name_5 (date__opening_ VARCHAR, year VARCHAR, date__closing_ VARCHAR)"}, {"answer": "SELECT date__closing_ FROM table_name_83 WHERE year > 2011", "question": "What is Date (Closing), when Year is greater than 2011?", "context": "CREATE TABLE table_name_83 (date__closing_ VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(earnings_per_share__) AS \u00a2_ FROM table_name_38 WHERE net_profit__us_$m_ > 66 AND year_to_april < 2010", "question": "Name the number of Earnings per share (\u00a2) which has a Net profit (US $m) larger than 66, and a Year to April smaller than 2010?", "context": "CREATE TABLE table_name_38 (earnings_per_share__ VARCHAR, net_profit__us_$m_ VARCHAR, year_to_april VARCHAR)"}, {"answer": "SELECT COUNT(ebit__us_) AS $m_ FROM table_name_46 WHERE year_to_april = 2011 AND earnings_per_share__\u00a2_ > 47", "question": "Name the total number of EBIT (US $m) in 2011 and a Earnings per share (\u00a2) larger than 47?", "context": "CREATE TABLE table_name_46 (ebit__us_ VARCHAR, year_to_april VARCHAR, earnings_per_share__\u00a2_ VARCHAR)"}, {"answer": "SELECT SUM(earnings_per_share__) AS \u00a2_ FROM table_name_34 WHERE year_to_april < 2012 AND revenue__us_$million_ = 432.6 AND ebit__us_$m_ < 150.5", "question": "Count the  Earnings per share (\u00a2) in April smaller than 2012, a Revenue (US $million) of 432.6 and a EBIT (US $m) smaller than 150.5?", "context": "CREATE TABLE table_name_34 (earnings_per_share__ INTEGER, ebit__us_$m_ VARCHAR, year_to_april VARCHAR, revenue__us_$million_ VARCHAR)"}, {"answer": "SELECT COUNT(ebit__us_) AS $m_ FROM table_name_35 WHERE revenue__us_$million_ > 434.8 AND net_profit__us_$m_ > 96.4", "question": "COunt the EBIT (US $m) which has a Revenue (US $million) larger than 434.8 and a Net profit (US $m) larger than 96.4?", "context": "CREATE TABLE table_name_35 (ebit__us_ VARCHAR, revenue__us_$million_ VARCHAR, net_profit__us_$m_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_57 WHERE player = \"barry richter\"", "question": "What position does Barry Richter play?", "context": "CREATE TABLE table_name_57 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_24 WHERE college_junior_club_team = \"michigan state university (ncaa)\" AND player = \"mark hirth\"", "question": "What nationality is Mark Hirth from Michigan State University (NCAA)?", "context": "CREATE TABLE table_name_24 (nationality VARCHAR, college_junior_club_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_45 WHERE player = \"rob white\"", "question": "What NHL team does Rob White play on?", "context": "CREATE TABLE table_name_45 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_50 WHERE position = \"d\" AND college_junior_club_team = \"university of maine (ncaa)\"", "question": "What is the pick number for position of D from the University of Maine (NCAA)?", "context": "CREATE TABLE table_name_50 (pick__number VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_94 WHERE position = \"left wing\" AND nationality = \"canada\"", "question": "What college/junior/club team is a left wing from Canada?", "context": "CREATE TABLE table_name_94 (college_junior_club_team VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT AVG(last_cf) FROM table_name_44 WHERE cf_appearances < 4 AND cf_wins < 1 AND team = \"st. louis blues\"", "question": "What is the average last cf of the st. louis blues, who has less than 4 cf appearances and less than 1 cf wins?", "context": "CREATE TABLE table_name_44 (last_cf INTEGER, team VARCHAR, cf_appearances VARCHAR, cf_wins VARCHAR)"}, {"answer": "SELECT MIN(cf_wins) FROM table_name_1 WHERE cf_appearances > 4 AND last_cf = 2013 AND team = \"chicago blackhawks\" AND cup_wins > 2", "question": "What is the lowest number of cf wins of the chicago blackhawks, which has more than 4 cf appearances, a last cf in 2013, and more than 2 cup wins?", "context": "CREATE TABLE table_name_1 (cf_wins INTEGER, cup_wins VARCHAR, team VARCHAR, cf_appearances VARCHAR, last_cf VARCHAR)"}, {"answer": "SELECT MIN(last_cf) FROM table_name_90 WHERE cf_appearances = 2 AND cup_wins = 0 AND cf_wins < 0", "question": "What is the lowest number of last cfs of the team with 2 cf appearances, 0 cup wins, and less than 0 cf wins?", "context": "CREATE TABLE table_name_90 (last_cf INTEGER, cf_wins VARCHAR, cf_appearances VARCHAR, cup_wins VARCHAR)"}, {"answer": "SELECT pos FROM table_name_52 WHERE team = \"audi sport north america\" AND year > 2008", "question": "What position did the driver from Audi Sport North America finish in the race after 2008?", "context": "CREATE TABLE table_name_52 (pos VARCHAR, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT event FROM table_name_40 WHERE rank_points = \"8\" AND total = \"20\"", "question": "What event has 8 as the rank points, with 20 as the total?", "context": "CREATE TABLE table_name_40 (event VARCHAR, rank_points VARCHAR, total VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_43 WHERE event = \"wc munich\" AND rank_points = \"8\"", "question": "What shooter has wc munich as the event, and 8 as the rank points?", "context": "CREATE TABLE table_name_43 (shooter VARCHAR, event VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_19 WHERE rank_points = \"olympic gold medalist\"", "question": "What score points have olympic gold medalist as the rank points?", "context": "CREATE TABLE table_name_19 (score_points VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT place FROM table_name_95 WHERE to_par = \"\u20135\" AND player = \"nick faldo\"", "question": "With a To par of \u20135, what is Nick Faldo's Place?", "context": "CREATE TABLE table_name_95 (place VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_29 WHERE player = \"fuzzy zoeller\"", "question": "What is Fuzzy Zoeller's To par?", "context": "CREATE TABLE table_name_29 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT governments FROM table_name_23 WHERE party = \"kadima\"", "question": "What is the Government the has the Kadima Party?", "context": "CREATE TABLE table_name_23 (governments VARCHAR, party VARCHAR)"}, {"answer": "SELECT rank_points FROM table_name_42 WHERE score_points = \"olympic silver medalist\"", "question": "Which Rank points has a Score points of olympic silver medalist?", "context": "CREATE TABLE table_name_42 (rank_points VARCHAR, score_points VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_84 WHERE rank_points = \"8\" AND event = \"wc milan\"", "question": "Which Shooter has a Rank points of 8 and a Event of wc milan?", "context": "CREATE TABLE table_name_84 (shooter VARCHAR, rank_points VARCHAR, event VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_9 WHERE event = \"og beijing\" AND rank_points = \"olympic gold medalist\"", "question": "Which Score points has an Event of og beijing, and Rank points of olympic gold medalist?", "context": "CREATE TABLE table_name_9 (score_points VARCHAR, event VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_27 WHERE event = \"wc milan\" AND total = \"23\"", "question": "Name Event of wc milan and a Total of 23?", "context": "CREATE TABLE table_name_27 (score_points VARCHAR, event VARCHAR, total VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_42 WHERE rank_points = \"10\" AND event = \"wc milan\"", "question": "which Score points has a Rank points of 10, and an Event of wc milan?", "context": "CREATE TABLE table_name_42 (score_points VARCHAR, rank_points VARCHAR, event VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE player = \"willie goggin\"", "question": "What was willie goggin's score?", "context": "CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_39 WHERE country = \"united states\" AND money___$__ > 0 AND player = \"craig wood\"", "question": "Which Place has a Country of united states, and a Money ($) larger than 0, and a Player of craig wood?", "context": "CREATE TABLE table_name_39 (place VARCHAR, player VARCHAR, country VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT home FROM table_name_61 WHERE date = \"march 7\"", "question": "What is the home team on March 7?", "context": "CREATE TABLE table_name_61 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_74 WHERE date = \"october 30\"", "question": "What is the record on October 30?", "context": "CREATE TABLE table_name_74 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_39 WHERE date = \"february 19\"", "question": "What is the record on February 19?", "context": "CREATE TABLE table_name_39 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_39 WHERE player = \"d. a. weibring\"", "question": "What was d. a. weibring's to par?", "context": "CREATE TABLE table_name_39 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_11 WHERE score = 71 - 74 - 68 = 213", "question": "For which to par was the score 71-74-68=213?", "context": "CREATE TABLE table_name_11 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_35 WHERE score = 70 - 72 - 70 = 212", "question": "What player scored 70-72-70=212?", "context": "CREATE TABLE table_name_35 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_11 WHERE score = 72 - 69 - 68 = 209", "question": "What is the to par for the score 72-69-68=209?", "context": "CREATE TABLE table_name_11 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_7 WHERE place = \"t9\" AND country = \"australia\"", "question": "What was Australia's to par when the place was t9?", "context": "CREATE TABLE table_name_7 (to_par VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_51 WHERE to_par = \"+2\" AND player = \"mark o'meara\"", "question": "Wht did Mark O'Meara place when the to par was +2?", "context": "CREATE TABLE table_name_51 (place VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_69 WHERE wins = 15 AND position > 3", "question": "What is the total number of losses for entries with 15 wins and a position larger than 3?", "context": "CREATE TABLE table_name_69 (losses INTEGER, wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT goal_difference FROM table_name_97 WHERE draws > 6 AND position > 12 AND wins < 9", "question": "What is the goal difference for entries with more than 6 draws, a position lower than 12, and fewer than 9 wins?", "context": "CREATE TABLE table_name_97 (goal_difference VARCHAR, wins VARCHAR, draws VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_63 WHERE club = \"melilla cf\" AND goal_difference < -10", "question": "What is the position of club Melilla CF, with a goal difference smaller than -10?", "context": "CREATE TABLE table_name_63 (position INTEGER, club VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT SUM(goals_against) FROM table_name_22 WHERE position > 14 AND played < 30", "question": "What is the sum of goals against for positions higher than 14, with fewer than 30 played?", "context": "CREATE TABLE table_name_22 (goals_against INTEGER, position VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_61 WHERE points > 32 AND goal_difference < 23 AND goals_against = 36 AND played < 30", "question": "What is the average number of wins for entries with more than 32 points, a goal difference smaller than 23, and a Goals against of 36, and a Played smaller than 30?", "context": "CREATE TABLE table_name_61 (wins INTEGER, played VARCHAR, goals_against VARCHAR, points VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT location FROM table_name_78 WHERE year > 2006 AND score = \"6\u20133, 6\u20133\"", "question": "Which Location has a Year larger than 2006, and a Score of 6\u20133, 6\u20133?", "context": "CREATE TABLE table_name_78 (location VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE year > 2004 AND champion = \"ga\u00ebl monfils\"", "question": "Which Score has a Year larger than 2004, and a Champion of ga\u00ebl monfils?", "context": "CREATE TABLE table_name_68 (score VARCHAR, year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_49 WHERE year < 2008 AND champion = \"jos\u00e9 acasuso\"", "question": "Which Runner-up has a Year smaller than 2008, and a Champion of jos\u00e9 acasuso?", "context": "CREATE TABLE table_name_49 (runner_up VARCHAR, year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT champion FROM table_name_96 WHERE runner_up = \"florian mayer\" AND score = \"7\u20136(6), 4\u20136, 7\u20135\"", "question": "Which Champion has a Runner-up of florian mayer, and a Score of 7\u20136(6), 4\u20136, 7\u20135?", "context": "CREATE TABLE table_name_96 (champion VARCHAR, runner_up VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_89 WHERE outcome = \"winner\" AND opponent = \"byron black\"", "question": "WHAT IS THE SCORE WITH A WINNER AND OPPONENT BYRON BLACK?", "context": "CREATE TABLE table_name_89 (score VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_69 WHERE games_played < 22", "question": "What is the number of points of the match with less than 22 games played?", "context": "CREATE TABLE table_name_69 (points VARCHAR, games_played INTEGER)"}, {"answer": "SELECT COUNT(loses) FROM table_name_96 WHERE position = 4 AND goals_conceded < 23", "question": "What is the total number of loses of the club with a 4 position and less than 23 goals conceded?", "context": "CREATE TABLE table_name_96 (loses VARCHAR, position VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT MIN(games_played) FROM table_name_40 WHERE goals_conceded > 25 AND goals_scored > 17 AND position = 7", "question": "What is the lowest number of games played of the club with more than 25 goals conceded, more than 17 goals scored, and a position of 7?", "context": "CREATE TABLE table_name_40 (games_played INTEGER, position VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT MIN(loses) FROM table_name_30 WHERE goals_scored > 42 AND goals_conceded > 20 AND draws < 3", "question": "What is the lowest number of loses of the club with more than 42 goals scored, more than 20 goals conceded, and less than 3 draws?", "context": "CREATE TABLE table_name_30 (loses INTEGER, draws VARCHAR, goals_scored VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_64 WHERE goals_conceded > 23 AND position > 12", "question": "What is the average number of points of the club with more than 23 goals conceded and a position larger than 12?", "context": "CREATE TABLE table_name_64 (points INTEGER, goals_conceded VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_80 WHERE name = \"coe\"", "question": "How many goals did coe get?", "context": "CREATE TABLE table_name_80 (goals INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(ends) FROM table_name_80 WHERE transfer_fee = \"dkk 14m\"", "question": "What is the total number of ends when the transfer fee was dkk 14m?", "context": "CREATE TABLE table_name_80 (ends VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT name FROM table_name_39 WHERE transfer_fee = \"dkk 6m\"", "question": "Who had a transfer fee of dkk 6m?", "context": "CREATE TABLE table_name_39 (name VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT place FROM table_name_83 WHERE score = 68 - 68 = 136 AND player = \"craig parry\"", "question": "Craig Parry with a score of 68-68=136 is in what place?", "context": "CREATE TABLE table_name_83 (place VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_21 WHERE country = \"spain\"", "question": "What place is the golfer in who is from Spain?", "context": "CREATE TABLE table_name_21 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_47 WHERE score = 72 - 65 = 137", "question": "For what country does the golfer play who has a score of 72-65=137?", "context": "CREATE TABLE table_name_47 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_6 WHERE player = \"steve pate\"", "question": "Golfer Steve Pate is in what place?", "context": "CREATE TABLE table_name_6 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT bolton_wanderers_career FROM table_name_77 WHERE apps = 293", "question": "Which Bolton Wanderers career has 293 Apps?", "context": "CREATE TABLE table_name_77 (bolton_wanderers_career VARCHAR, apps VARCHAR)"}, {"answer": "SELECT bolton_wanderers_career FROM table_name_75 WHERE total > 404 AND position = \"fw\" AND apps < 492 AND goals = \"79\"", "question": "Which Bolton Wanderers career has a Total larger than 404, and a Position of fw, and Apps less than 492, and 79 Goals?", "context": "CREATE TABLE table_name_75 (bolton_wanderers_career VARCHAR, goals VARCHAR, apps VARCHAR, total VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(apps) FROM table_name_42 WHERE goals = \"28\" AND total < 191", "question": "How many apps have 28 goals, and a Total smaller than 191?", "context": "CREATE TABLE table_name_42 (apps INTEGER, goals VARCHAR, total VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE home_team = \"sheffield wednesday\"", "question": "On what Date is Sheffield Wednesday the Home team?", "context": "CREATE TABLE table_name_61 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_61 WHERE away_team = \"blackburn rovers\"", "question": "What is the Tie no of the Blackburn Rovers Away game?", "context": "CREATE TABLE table_name_61 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_33 WHERE score = \"2\u20130\" AND home_team = \"wolverhampton wanderers\"", "question": "What is the Away team at the Wolverhampton Wanderers Home game with a Score of 2\u20130?", "context": "CREATE TABLE table_name_33 (away_team VARCHAR, score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_70 WHERE away_team = \"blackburn rovers\"", "question": "What is the Home team at the Blackburn Rovers Away game?", "context": "CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_17 WHERE score = \"2\u20133\"", "question": "What is the Home team in the game with a Score of 2\u20133?", "context": "CREATE TABLE table_name_17 (home_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_98 WHERE team_2 = \"lyon\"", "question": "What is the 1st leg with Team 2 Lyon?", "context": "CREATE TABLE table_name_98 (team_2 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_81 WHERE team_2 = \"sporting cp\"", "question": "Which team is Team 1 with a Team 2 being Sporting CP?", "context": "CREATE TABLE table_name_81 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_54 WHERE team_1 = \"servette\"", "question": "What is the second leg for Team 1 Servette?", "context": "CREATE TABLE table_name_54 (team_1 VARCHAR)"}, {"answer": "SELECT 1999 FROM table_name_47 WHERE tournament = \"us open\"", "question": "What was the 1999 Tournament at the US Open?", "context": "CREATE TABLE table_name_47 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_38 WHERE 1988 = \"a\" AND 1999 = \"2r\"", "question": "What tournament was an A 1988, and a 2R 1999?", "context": "CREATE TABLE table_name_38 (tournament VARCHAR)"}, {"answer": "SELECT 1991 FROM table_name_92 WHERE 1999 = \"2r\"", "question": "What is the 1991 for 2R 1999?", "context": "CREATE TABLE table_name_92 (Id VARCHAR)"}, {"answer": "SELECT 1999 FROM table_name_45 WHERE 1991 = \"a\" AND 1997 = \"1r\"", "question": "What is the 1999 for an A 1991, and a 1r 1997?", "context": "CREATE TABLE table_name_45 (Id VARCHAR)"}, {"answer": "SELECT 1991 FROM table_name_34 WHERE 1996 = \"2r\"", "question": "What is the 1991 with a 2r 1996?", "context": "CREATE TABLE table_name_34 (Id VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE attendance > 74 OFFSET 382", "question": "When was the Attendance larger than 74,382?", "context": "CREATE TABLE table_name_36 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT venue FROM table_name_16 WHERE status = \"five nations\" AND against = 22", "question": "Which venue has a status of Five Nations and an against of 22?", "context": "CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_73 WHERE opponent = \"brett chism\"", "question": "What is the sum of the rounds of the match with brett chism as the opponent?", "context": "CREATE TABLE table_name_73 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_8 WHERE time = \"5:00\" AND event = \"wild bill's fight night 21\"", "question": "What is the lwoest round of wild bill's fight night 21 at 5:00?", "context": "CREATE TABLE table_name_8 (round INTEGER, time VARCHAR, event VARCHAR)"}, {"answer": "SELECT country FROM table_name_99 WHERE to_par < 7 AND place = \"1\"", "question": "Which Country has a To par smaller than 7, and a Place of 1?", "context": "CREATE TABLE table_name_99 (country VARCHAR, to_par VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_64 WHERE country = \"australia\" AND score = 70 - 70 - 72 = 212", "question": "Which Place has a Country of australia, and a Score of 70-70-72=212?", "context": "CREATE TABLE table_name_64 (place VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE place = \"t9\" AND country = \"sweden\"", "question": "What was sweden's score in T9 place?", "context": "CREATE TABLE table_name_27 (score VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_47 WHERE country = \"england\" AND place = \"t9\" AND player = \"graeme storm\"", "question": "Which To par has a Country of england, and a Place of t9, and a Player of graeme storm?", "context": "CREATE TABLE table_name_47 (to_par INTEGER, player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT distance FROM table_name_39 WHERE venue = \"belgrade\"", "question": "What is Distance, when Venue is \"Belgrade\"?", "context": "CREATE TABLE table_name_39 (distance VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE athlete = \"yussuf alli\"", "question": "What is Date, when Athlete is \"Yussuf Alli\"?", "context": "CREATE TABLE table_name_15 (date VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT distance FROM table_name_57 WHERE athlete = \"irving saladino\"", "question": "What is Distance, when Athlete is \"Irving Saladino\"?", "context": "CREATE TABLE table_name_57 (distance VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_12 WHERE nation = \"nigeria\"", "question": "What is Athlete, when Nation is \"Nigeria\"?", "context": "CREATE TABLE table_name_12 (athlete VARCHAR, nation VARCHAR)"}, {"answer": "SELECT nation FROM table_name_67 WHERE date = \"2004-07-22\"", "question": "What is Nation, when Date is \"2004-07-22\"?", "context": "CREATE TABLE table_name_67 (nation VARCHAR, date VARCHAR)"}, {"answer": "SELECT distance FROM table_name_18 WHERE date = \"2008-01-12\"", "question": "What is Distance, when Date is \"2008-01-12\"?", "context": "CREATE TABLE table_name_18 (distance VARCHAR, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_58 WHERE result = \"w 48\u201320\"", "question": "What is the Week of the game with a Result of w 48\u201320?", "context": "CREATE TABLE table_name_58 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT record FROM table_name_82 WHERE result = \"l 14\u201316\"", "question": "What is the Record of the game with a Result of l 14\u201316?", "context": "CREATE TABLE table_name_82 (record VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE record = \"2\u20133\u20131\"", "question": "What is the Date of the game with a Record of 2\u20133\u20131?", "context": "CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_41 WHERE round = \"32\"", "question": "What opponent has 32 as the round?", "context": "CREATE TABLE table_name_41 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT year_ceremony FROM table_name_53 WHERE english_title = \"kelin\"", "question": "What year was Kelin nominated?", "context": "CREATE TABLE table_name_53 (year_ceremony VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_49 WHERE score = 76 - 71 - 78 - 67 = 292", "question": "What was the to par score in the match that had a score of 76-71-78-67=292?", "context": "CREATE TABLE table_name_49 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_88 WHERE player = \"robert allenby\"", "question": "What is Robert Allenby's average to par score?", "context": "CREATE TABLE table_name_88 (to_par INTEGER, player VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_1 WHERE 2009 = \"1r\" AND 2012 = \"w\"", "question": "Can you tell me the Tournament that has the 2009 of 1r, and the 2012 of w?", "context": "CREATE TABLE table_name_1 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_44 WHERE 2008 = \"grand slam tournaments\"", "question": "Can you tell me the 2010 that has the 2008 of grand slam tournaments?", "context": "CREATE TABLE table_name_44 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_50 WHERE 2011 = \"a\"", "question": "Can you tell me the 2009 that has the 2011 of A?", "context": "CREATE TABLE table_name_50 (Id VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_28 WHERE total = 155", "question": "What is the to par for the player with total of 155?", "context": "CREATE TABLE table_name_28 (to_par INTEGER, total VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_31 WHERE notes = \"2.5km, 16controls\"", "question": "Who won Bronze with Notes of 2.5km, 16controls?", "context": "CREATE TABLE table_name_31 (bronze VARCHAR, notes VARCHAR)"}, {"answer": "SELECT gold FROM table_name_32 WHERE year > 2004 AND notes = \"2.73km, 14controls\"", "question": "Who won Gold later than 2004 with Notes of 2.73km, 14controls?", "context": "CREATE TABLE table_name_32 (gold VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_60 WHERE notes = \"2.5km, 14controls\"", "question": "Who won Bronze with notes of 2.5km, 14controls?", "context": "CREATE TABLE table_name_60 (bronze VARCHAR, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_name_77 WHERE year < 2006 AND silver = \"jenny johansson\"", "question": "What are the Notes against a Silver for Jenny Johansson earlier than 2006?", "context": "CREATE TABLE table_name_77 (notes VARCHAR, year VARCHAR, silver VARCHAR)"}, {"answer": "SELECT constituency_number FROM table_name_8 WHERE name = \"meerut\"", "question": "What is the Constituency number for Meerut?", "context": "CREATE TABLE table_name_8 (constituency_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_38 WHERE constituency_number = \"48\"", "question": "What is the name for the constituency at number 48?", "context": "CREATE TABLE table_name_38 (name VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT rank FROM table_name_19 WHERE bronze > 3", "question": "When bronze is more than 3, what is the rank?", "context": "CREATE TABLE table_name_19 (rank VARCHAR, bronze INTEGER)"}, {"answer": "SELECT SUM(gold) FROM table_name_17 WHERE rank = \"7\" AND silver < 0", "question": "When rank is 7 and silver is less than 0, what is the total gold?", "context": "CREATE TABLE table_name_17 (gold INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT player FROM table_name_84 WHERE country = \"wales\"", "question": "What player is from Wales?", "context": "CREATE TABLE table_name_84 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_78 WHERE score = 73 - 68 - 66 = 207", "question": "What player scored 73-68-66=207?", "context": "CREATE TABLE table_name_78 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE player = \"seve ballesteros\"", "question": "What Seve Ballesteros's score?", "context": "CREATE TABLE table_name_82 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_59 WHERE player = \"craig parry\"", "question": "What country is Craig Parry from?", "context": "CREATE TABLE table_name_59 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_69 WHERE score = 66 - 73 - 69 = 208", "question": "What country has a score of 66-73-69=208?", "context": "CREATE TABLE table_name_69 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_36 WHERE result = \"74-71\"", "question": "What is Road Team, when Result is \"74-71\"?", "context": "CREATE TABLE table_name_36 (road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_54 WHERE date = \"april 3\"", "question": "What is Result, when Date is \"April 3\"?", "context": "CREATE TABLE table_name_54 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_47 WHERE road_team = \"syracuse\" AND result = \"96-89\"", "question": "What is Game, when Road Team is \"Syracuse\", and when Result is \"96-89\"?", "context": "CREATE TABLE table_name_47 (game VARCHAR, road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_58 WHERE date = \"april 10\"", "question": "What is Home Team, when Date is \"April 10\"?", "context": "CREATE TABLE table_name_58 (home_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_77 WHERE road_team = \"syracuse\" AND result = \"109-82\"", "question": "What is Game, when Road Team is \"Syracuse\", and when Result is \"109-82\"?", "context": "CREATE TABLE table_name_77 (game VARCHAR, road_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT road_team FROM table_name_29 WHERE date = \"april 10\"", "question": "What is Road Team, when Date is \"April 10\"?", "context": "CREATE TABLE table_name_29 (road_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_26 WHERE player = \"neil colzie\" AND pick < 24", "question": "What was the earliest round with Neil Colzie and a pick smaller than 24?", "context": "CREATE TABLE table_name_26 (round INTEGER, player VARCHAR, pick VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE tie_no = \"replay\" AND away_team = \"watford\"", "question": "What was the score of the replay game when watford was the away team?", "context": "CREATE TABLE table_name_84 (score VARCHAR, tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_8 WHERE away_team = \"walsall\"", "question": "Who was the home team when walsall was the away team?", "context": "CREATE TABLE table_name_8 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT name FROM table_name_15 WHERE venue = \"hong kong\"", "question": "What is Name, when Venue is \"Hong Kong\"?", "context": "CREATE TABLE table_name_15 (name VARCHAR, venue VARCHAR)"}, {"answer": "SELECT name FROM table_name_71 WHERE venue = \"motherwell\"", "question": "What is Name, when Venue is \"Motherwell\"?", "context": "CREATE TABLE table_name_71 (name VARCHAR, venue VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_95 WHERE champions = \"stefan edberg\" AND year = 1987", "question": "In 1987, what is the Runners-up when Stefan Edberg is Champion?", "context": "CREATE TABLE table_name_95 (runners_up VARCHAR, champions VARCHAR, year VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_80 WHERE champions = \"ivan lendl\" AND name_of_tournament = \"seiko super tennis\" AND year < 1990", "question": "What were the Runners-up prior to 1990 when Ivan Lendl was Champion in the Seiko Super Tennis Tournament?", "context": "CREATE TABLE table_name_80 (runners_up VARCHAR, year VARCHAR, champions VARCHAR, name_of_tournament VARCHAR)"}, {"answer": "SELECT name_of_tournament FROM table_name_84 WHERE champions = \"boris becker\" AND score = \"7\u20136, 6\u20134\"", "question": "In What Tournament did Boris Becker have a Score of 7\u20136, 6\u20134?", "context": "CREATE TABLE table_name_84 (name_of_tournament VARCHAR, champions VARCHAR, score VARCHAR)"}, {"answer": "SELECT external_weapon FROM table_name_17 WHERE shield_animal = \"falcon\"", "question": "What is the external weapon with the falcon shield animal?", "context": "CREATE TABLE table_name_17 (external_weapon VARCHAR, shield_animal VARCHAR)"}, {"answer": "SELECT cart FROM table_name_47 WHERE shield_animal = \"serpent\"", "question": "What cart has a serpent shield animal?", "context": "CREATE TABLE table_name_47 (cart VARCHAR, shield_animal VARCHAR)"}, {"answer": "SELECT external_weapon FROM table_name_26 WHERE knight = \"zeke\"", "question": "What is the external weapon of knight zeke?", "context": "CREATE TABLE table_name_26 (external_weapon VARCHAR, knight VARCHAR)"}, {"answer": "SELECT shield_animal FROM table_name_57 WHERE knight = \"phil\"", "question": "What is the shield animal of knight phil?", "context": "CREATE TABLE table_name_57 (shield_animal VARCHAR, knight VARCHAR)"}, {"answer": "SELECT external_weapon FROM table_name_59 WHERE cart = \"ramhead cart\"", "question": "What is the external weapon with a ramhead cart?", "context": "CREATE TABLE table_name_59 (external_weapon VARCHAR, cart VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE away_team = \"sheffield wednesday\"", "question": "On what date was the away team Sheffield Wednesday?", "context": "CREATE TABLE table_name_51 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_81 WHERE away_team = \"hartlepool united\"", "question": "What was the tie number for the game with an away team of Hartlepool United?", "context": "CREATE TABLE table_name_81 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_16 WHERE tie_no = \"16\"", "question": "What was the score in Tie number 16?", "context": "CREATE TABLE table_name_16 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT duration FROM table_name_47 WHERE province = \"zeeland\"", "question": "What is the duration of the commissioner from the zeeland province?", "context": "CREATE TABLE table_name_47 (duration VARCHAR, province VARCHAR)"}, {"answer": "SELECT round FROM table_name_83 WHERE h___a = \"a\" AND opponents = \"sheffield united\"", "question": "Rich round has an H/A of A and the opponent Sheffield United?", "context": "CREATE TABLE table_name_83 (round VARCHAR, h___a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT SUM(population__2008_) FROM table_name_1 WHERE capital = \"sanniquellie\" AND created > 1964", "question": "What is the population (2008) when the capital was Sanniquellie, created later than 1964?", "context": "CREATE TABLE table_name_1 (population__2008_ INTEGER, capital VARCHAR, created VARCHAR)"}, {"answer": "SELECT MAX(population__2008_) FROM table_name_69 WHERE created < 1857 AND county = \"sinoe\"", "question": "What is the highest population (2008) created earlier than 1857, and the county was Sinoe?", "context": "CREATE TABLE table_name_69 (population__2008_ INTEGER, created VARCHAR, county VARCHAR)"}, {"answer": "SELECT MIN(created) FROM table_name_33 WHERE map_number = 10", "question": "What is the earliest created year when the map# was 10?", "context": "CREATE TABLE table_name_33 (created INTEGER, map_number VARCHAR)"}, {"answer": "SELECT venue FROM table_name_47 WHERE score = \"0\u20130\"", "question": "What is the Venue of the game with a Score of 0\u20130?", "context": "CREATE TABLE table_name_47 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_58 WHERE competition = \"friendly\" AND score = \"1\u20134\"", "question": "What is the Venue of the Friendly Competition with a Score of 1\u20134?", "context": "CREATE TABLE table_name_58 (venue VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_49 WHERE competition = \"wcq5\"", "question": "What is the Venue of the WCQ5 Competition?", "context": "CREATE TABLE table_name_49 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE score = \"2\u20130\"", "question": "What is the Date of the Competition with a Score of 2\u20130?", "context": "CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_1 WHERE score = \"0\u20132\"", "question": "What is the Venue of the Competition with a Score of 0\u20132?", "context": "CREATE TABLE table_name_1 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE score = \"2\u20130\"", "question": "What is the Venue of the Competition with a Score of 2\u20130?", "context": "CREATE TABLE table_name_89 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT binary_meaning FROM table_name_91 WHERE symbol = \"p\"", "question": "What is the binary meaning for symbol p?", "context": "CREATE TABLE table_name_91 (binary_meaning VARCHAR, symbol VARCHAR)"}, {"answer": "SELECT si_meaning FROM table_name_40 WHERE symbol = \"m\"", "question": "What;s the SI Meaning for symbol m?", "context": "CREATE TABLE table_name_40 (si_meaning VARCHAR, symbol VARCHAR)"}, {"answer": "SELECT size_difference FROM table_name_29 WHERE prefix = \"exa\"", "question": "What is the size difference for exa?", "context": "CREATE TABLE table_name_29 (size_difference VARCHAR, prefix VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE champion = \"masahiro kawamura\"", "question": "What is the score of champion masahiro kawamura?", "context": "CREATE TABLE table_name_32 (score VARCHAR, champion VARCHAR)"}, {"answer": "SELECT dates FROM table_name_6 WHERE tournament_location = \"ibaraki country club\" AND champion = \"masahiro kawamura\"", "question": "What dates was champion masahiro kawamura at the ibaraki country club tournament?", "context": "CREATE TABLE table_name_6 (dates VARCHAR, tournament_location VARCHAR, champion VARCHAR)"}, {"answer": "SELECT champion FROM table_name_96 WHERE purse = \"\u00a5200,000,000\"", "question": "Who is the champion with a \u00a5200,000,000 purse?", "context": "CREATE TABLE table_name_96 (champion VARCHAR, purse VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_34 WHERE nationality = \"canada\" AND draft < 1970 AND pick = 7", "question": "What round had Canada with a draft of 1970 and a pick of 7?", "context": "CREATE TABLE table_name_34 (round INTEGER, pick VARCHAR, nationality VARCHAR, draft VARCHAR)"}, {"answer": "SELECT placement_in_miss_universe FROM table_name_72 WHERE delegate = \"janine mari raymundo tugonon\"", "question": "Which Placement in Miss Universe has a Delegate of janine mari raymundo tugonon?", "context": "CREATE TABLE table_name_72 (placement_in_miss_universe VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT placement_in_miss_universe FROM table_name_3 WHERE delegate = \"armi barbara quiray crespo\"", "question": "Which Placement in Miss Universe is  armi barbara quiray crespo?", "context": "CREATE TABLE table_name_3 (placement_in_miss_universe VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT delegate FROM table_name_96 WHERE placement_in_miss_universe = \"fourth runner-up\" AND hometown = \"makati , rizal\"", "question": "Which Delegate has a Placement in Miss Universe of fourth runner-up, and a Hometown of makati , rizal?", "context": "CREATE TABLE table_name_96 (delegate VARCHAR, placement_in_miss_universe VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT placement_in_miss_universe FROM table_name_4 WHERE delegate = \"rosita cornell capuyon\"", "question": "What kind of Placement in Miss Universe that rosita cornell capuyon is in?", "context": "CREATE TABLE table_name_4 (placement_in_miss_universe VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_50 WHERE delegate = \"jennifer tarol barrientos\"", "question": "Which Year jennifer tarol barrientos is in?", "context": "CREATE TABLE table_name_50 (year INTEGER, delegate VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_18 WHERE competition = \"world championships\" AND notes = 39.01", "question": "WHAT YEAR WAS THE WORLD CHAMPIONSHIPS IN WITH NOTES OF 39.01?", "context": "CREATE TABLE table_name_18 (year INTEGER, competition VARCHAR, notes VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_99 WHERE player = \"angela park\"", "question": "What's the sum of money ($) that angela park has won?", "context": "CREATE TABLE table_name_99 (money___ INTEGER, player VARCHAR)"}, {"answer": "SELECT pick FROM table_name_10 WHERE position = \"dt\" AND round > 1 AND overall < 155 AND year = \"1952\"", "question": "What number was the pick for the position of DT in 1952, after round 1, where the overall was less than 155?", "context": "CREATE TABLE table_name_10 (pick VARCHAR, year VARCHAR, overall VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT nfl_team FROM table_name_91 WHERE overall > 118 AND pick > 9 AND round > 5 AND position = \"de\"", "question": "Which NFL team chose a position of DE when the pick was larger than 9, after round 5, and the overal was larger than 118?", "context": "CREATE TABLE table_name_91 (nfl_team VARCHAR, position VARCHAR, round VARCHAR, overall VARCHAR, pick VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_63 WHERE 2007 = \"1r\" AND 2002 = \"q2\"", "question": "What is 2006, when 2007 is \"1R\", and when 2002 is \"Q2\"?", "context": "CREATE TABLE table_name_63 (Id VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_99 WHERE 2007 = \"1r\" AND 2008 = \"q1\"", "question": "What is 2001, when 2007 is \"1R\", and when 2008 is \"Q1\"?", "context": "CREATE TABLE table_name_99 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_90 WHERE 2003 = \"a\"", "question": "What is Tournament, when 2003 is \"A\"?", "context": "CREATE TABLE table_name_90 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_55 WHERE tournament = \"french open\"", "question": "What is 2012, when Tournament is \"French Open\"?", "context": "CREATE TABLE table_name_55 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_35 WHERE 2012 = \"grand slam tournaments\"", "question": "What is Tournament, when 2012 is \"Grand Slam Tournaments\"?", "context": "CREATE TABLE table_name_35 (tournament VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_81 WHERE 2010 = \"grand slam tournaments\"", "question": "What is 2004, when 2010 is \"Grand Slam Tournaments\"?", "context": "CREATE TABLE table_name_81 (Id VARCHAR)"}, {"answer": "SELECT member FROM table_name_36 WHERE electorate = \"southern melbourne\"", "question": "Which Member has an Electorate of southern melbourne?", "context": "CREATE TABLE table_name_36 (member VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_7 WHERE member = \"h.b. higgins\"", "question": "When was H.B. Higgins first elected?", "context": "CREATE TABLE table_name_7 (first_elected VARCHAR, member VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_37 WHERE draws > 0", "question": "What is the highest number of byes when draws are larger than 0?", "context": "CREATE TABLE table_name_37 (byes INTEGER, draws INTEGER)"}, {"answer": "SELECT MIN(losses) FROM table_name_24 WHERE wins < 15 AND golden_rivers = \"quambatook\" AND draws > 0", "question": "What is the lowest amount of losses when the goldne rivers is quambatook, wins are smaller than 15 and draws larger than 0?", "context": "CREATE TABLE table_name_24 (losses INTEGER, draws VARCHAR, wins VARCHAR, golden_rivers VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_43 WHERE wins < 12 AND golden_rivers = \"ultima\" AND byes > 2", "question": "How many losses did the golden rivers of ultima have when wins were less than 12 and byes larger than 2?", "context": "CREATE TABLE table_name_43 (losses VARCHAR, byes VARCHAR, wins VARCHAR, golden_rivers VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_2 WHERE golden_rivers = \"hay\"", "question": "How many losses did the Golden rivers of hay have?", "context": "CREATE TABLE table_name_2 (losses INTEGER, golden_rivers VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_59 WHERE wins = 9", "question": "What is the total number of byes when the wins were 9?", "context": "CREATE TABLE table_name_59 (byes VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_15 WHERE against = 989 AND wins < 12", "question": "What is th average dras when wins are less than 12 and the against is 989?", "context": "CREATE TABLE table_name_15 (draws INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(pole) FROM table_name_88 WHERE class = \"125 cc\" AND wchmp > 1", "question": "What is the highest pole for class 125 cc and a WChmp more than 1?", "context": "CREATE TABLE table_name_88 (pole INTEGER, class VARCHAR, wchmp VARCHAR)"}, {"answer": "SELECT MAX(flap) FROM table_name_5 WHERE class = \"500 cc\"", "question": "What is the highest flap for class 500 cc?", "context": "CREATE TABLE table_name_5 (flap INTEGER, class VARCHAR)"}, {"answer": "SELECT result_f___a FROM table_name_87 WHERE league_position = \"1st\" AND date = \"4 january 1994\"", "question": "Name the Result F \u2013 A that has a League position of 1st on  4 january 1994?", "context": "CREATE TABLE table_name_87 (result_f___a VARCHAR, league_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT thai_name FROM table_name_75 WHERE abbr = \"\u0e21\u0e35.\u0e04.\"", "question": "What is the Thai name for the word abbreviated \u0e21\u0e35.\u0e04.?", "context": "CREATE TABLE table_name_75 (thai_name VARCHAR, abbr VARCHAR)"}, {"answer": "SELECT english_name FROM table_name_23 WHERE abbr = \"\u0e1e.\u0e22.\"", "question": "What is the English word that is abbreviated \u0e1e.\u0e22.?", "context": "CREATE TABLE table_name_23 (english_name VARCHAR, abbr VARCHAR)"}, {"answer": "SELECT transcription FROM table_name_11 WHERE english_name = \"march\"", "question": "What is the transcription for the English word March?", "context": "CREATE TABLE table_name_11 (transcription VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT zodiac_sign FROM table_name_81 WHERE english_name = \"march\"", "question": "What is the zodiac sign for the English March?", "context": "CREATE TABLE table_name_81 (zodiac_sign VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT abbr FROM table_name_22 WHERE zodiac_sign = \"capricorn\"", "question": "What is the abbreviation for the sign of Capricorn?", "context": "CREATE TABLE table_name_22 (abbr VARCHAR, zodiac_sign VARCHAR)"}, {"answer": "SELECT transcription FROM table_name_98 WHERE english_name = \"march\"", "question": "What is the transcription for the English March?", "context": "CREATE TABLE table_name_98 (transcription VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE edition = \"1988 world group i\" AND result = \"7\u20136 (7\u20135) , 6\u20133\"", "question": "What date was the 1988 world group i edition with a result of 7\u20136 (7\u20135) , 6\u20133?", "context": "CREATE TABLE table_name_69 (date VARCHAR, edition VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_8 WHERE date = \"april 24, 1999\"", "question": "Who was the opponent on april 24, 1999?", "context": "CREATE TABLE table_name_8 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_97 WHERE surface = \"clay\" AND date = \"july 17, 1992\"", "question": "What's the result for the clay surface edition on july 17, 1992?", "context": "CREATE TABLE table_name_97 (result VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_name_83 WHERE result = \"6\u20137 (6\u20138) , 1\u20136\"", "question": "What round had a result of 6\u20137 (6\u20138) , 1\u20136?", "context": "CREATE TABLE table_name_83 (round VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_75 WHERE result = \"7\u20136 (7\u20135) , 6\u20133\"", "question": "Who was the opponent when the result was 7\u20136 (7\u20135) , 6\u20133?", "context": "CREATE TABLE table_name_75 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT edition FROM table_name_2 WHERE surface = \"clay\" AND opponent = \"miho saeki\"", "question": "What clay surface edition had an opponent of miho saeki?", "context": "CREATE TABLE table_name_2 (edition VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_47 WHERE country = \"spain\"", "question": "What is To par, when Country is \"Spain\"?", "context": "CREATE TABLE table_name_47 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_55 WHERE player = \"jos\u00e9 mar\u00eda olaz\u00e1bal\"", "question": "What is Country, when Player is \"Jos\u00e9 Mar\u00eda Olaz\u00e1bal\"?", "context": "CREATE TABLE table_name_55 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_49 WHERE player = \"john cook\"", "question": "What is Place, when Player is \"John Cook\"?", "context": "CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE country = \"united states\" AND player = \"raymond floyd\"", "question": "What is Score, when Country is \"United States\", and when Player is \"Raymond Floyd\"?", "context": "CREATE TABLE table_name_98 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_59 WHERE player = \"larry rinker\"", "question": "What is To par, when Player is \"Larry Rinker\"?", "context": "CREATE TABLE table_name_59 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_98 WHERE place = \"t8\" AND score = 70 - 67 = 137", "question": "What is Country, when Place is \"T8\", and when Score is \"70-67=137\"?", "context": "CREATE TABLE table_name_98 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_25 WHERE score < 69 AND player = \"sandy lyle\"", "question": "What Country is player Sandy Lyle from when she scored less than 69?", "context": "CREATE TABLE table_name_25 (country VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_64 WHERE player = \"philip parkin\"", "question": "What is the to par of Philip Parkin?", "context": "CREATE TABLE table_name_64 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_68 WHERE opponent = \"chelsea\"", "question": "What was the lowest attendance was the opponent was chelsea?", "context": "CREATE TABLE table_name_68 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_61 WHERE pos = \"cb\" AND height = \"m (ft 4in)\"", "question": "What is the Date of Birth of the CB Player with a Height of m (ft 4in)?", "context": "CREATE TABLE table_name_61 (date_of_birth VARCHAR, pos VARCHAR, height VARCHAR)"}, {"answer": "SELECT country FROM table_name_42 WHERE place = \"t4\" AND score = 66 - 73 = 139", "question": "Which country had a t4 place and scored 66-73=139?", "context": "CREATE TABLE table_name_42 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_37 WHERE place = \"t1\" AND country = \"scotland\"", "question": "Who placed t1 in Scotland?", "context": "CREATE TABLE table_name_37 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_32 WHERE to_par = \"e\" AND score = 71 - 69 = 140", "question": "Who had a to par of e and scored 71-69=140?", "context": "CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_35 WHERE place = \"t10\" AND player = \"colin montgomerie\"", "question": "What is the to par for t10 and Colin Montgomerie?", "context": "CREATE TABLE table_name_35 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_97 WHERE score = 71 - 69 = 140", "question": "What country scored 71-69=140?", "context": "CREATE TABLE table_name_97 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT week FROM table_name_67 WHERE result = \"bye\"", "question": "What week's game had a result of bye?", "context": "CREATE TABLE table_name_67 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE week = \"9\"", "question": "What was the record at week 9?", "context": "CREATE TABLE table_name_26 (record VARCHAR, week VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_31 WHERE player = \"vijay singh\"", "question": "What is the to par of player vijay singh?", "context": "CREATE TABLE table_name_31 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_87 WHERE money___\u00a3__ = \"playoff\" AND country = \"united states\"", "question": "Who is the player with playoff money from the United States?", "context": "CREATE TABLE table_name_87 (player VARCHAR, money___\u00a3__ VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_82 WHERE country = \"new zealand\"", "question": "What is the place of the player from New Zealand?", "context": "CREATE TABLE table_name_82 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_76 WHERE country = \"united states\" AND place = \"t1\"", "question": "What is the to par of the player from the United States with a t1 place?", "context": "CREATE TABLE table_name_76 (to_par VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_54 WHERE score = 72 - 70 - 71 - 72 = 285", "question": "How much money does the player with a 72-70-71-72=285 score have?", "context": "CREATE TABLE table_name_54 (money___\u00a3__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT save FROM table_name_67 WHERE score = \"7-6\"", "question": "What is the save of the game with a 7-6 score?", "context": "CREATE TABLE table_name_67 (save VARCHAR, score VARCHAR)"}, {"answer": "SELECT save FROM table_name_79 WHERE loss = \"moran (1-2)\"", "question": "What is the save of the game where moran (1-2) lost?", "context": "CREATE TABLE table_name_79 (save VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_71 WHERE date = \"june 15\"", "question": "Who was the opponent on June 15?", "context": "CREATE TABLE table_name_71 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT save FROM table_name_49 WHERE opponent = \"rice\"", "question": "What is the save of the game with rice as the opponent?", "context": "CREATE TABLE table_name_49 (save VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(goals_against) FROM table_name_38 WHERE played > 34", "question": "What is the lowest Goals Agains, when Played is greater than 34?", "context": "CREATE TABLE table_name_38 (goals_against INTEGER, played INTEGER)"}, {"answer": "SELECT MIN(lost) FROM table_name_88 WHERE goals_for > 52 AND points_1 = \"44\" AND drawn < 8", "question": "What is the lowest Lost, when Goals For is greater than 52, when Points 1 is \"44\", and when Drawn is less than 8?", "context": "CREATE TABLE table_name_88 (lost INTEGER, drawn VARCHAR, goals_for VARCHAR, points_1 VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_91 WHERE played < 34", "question": "What is the total number of Lost, when Played is less than 34?", "context": "CREATE TABLE table_name_91 (lost VARCHAR, played INTEGER)"}, {"answer": "SELECT song FROM table_name_53 WHERE year = 2010 AND us_r & b = \"100\"", "question": "Which song has a U.S. R&B 100 in 2010?", "context": "CREATE TABLE table_name_53 (song VARCHAR, year VARCHAR, us_r VARCHAR, b VARCHAR)"}, {"answer": "SELECT champion FROM table_name_69 WHERE location = \"sopot\" AND year < 2006 AND score = \"6\u20134, 6\u20137(7), 6\u20133\"", "question": "What is the Champion at Sopot prior to 2006 with a Score of 6\u20134, 6\u20137(7), 6\u20133?", "context": "CREATE TABLE table_name_69 (champion VARCHAR, score VARCHAR, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_77 WHERE location = \"sopot\" AND score = \"2\u20136, 6\u20132, 6\u20133\"", "question": "In what Year was the match at Sopot with a Score of 2\u20136, 6\u20132, 6\u20133?", "context": "CREATE TABLE table_name_77 (year VARCHAR, location VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_94 WHERE podiums = \"0\" AND position = \"nc\u2020\"", "question": "Which Team has Podiums of 0, and a Position of nc\u2020?", "context": "CREATE TABLE table_name_94 (team VARCHAR, podiums VARCHAR, position VARCHAR)"}, {"answer": "SELECT wins FROM table_name_99 WHERE team = \"scuderia toro rosso\" AND poles = \"0\" AND races = \"16\"", "question": "Which Wins has a Team of scuderia toro rosso, Poles of 0, and Races of 16?", "context": "CREATE TABLE table_name_99 (wins VARCHAR, races VARCHAR, team VARCHAR, poles VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_44 WHERE podiums = \"0\" AND races = \"16\"", "question": "Which Season has Podiums of 0, and Races of 16?", "context": "CREATE TABLE table_name_44 (season INTEGER, podiums VARCHAR, races VARCHAR)"}, {"answer": "SELECT wins FROM table_name_40 WHERE podiums = \"0\" AND series = \"masters of formula 3\"", "question": "Which Wins has Podiums of 0, and a Series of masters of formula 3?", "context": "CREATE TABLE table_name_40 (wins VARCHAR, podiums VARCHAR, series VARCHAR)"}, {"answer": "SELECT method FROM table_name_49 WHERE time = \"4:52\"", "question": "What was the method used when the time was 4:52?", "context": "CREATE TABLE table_name_49 (method VARCHAR, time VARCHAR)"}, {"answer": "SELECT res FROM table_name_66 WHERE time = \"4:15\"", "question": "What was the result when the time was 4:15?", "context": "CREATE TABLE table_name_66 (res VARCHAR, time VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_65 WHERE player = \"jani hakanpaa\"", "question": "What is the nationality of player Jani Hakanpaa?", "context": "CREATE TABLE table_name_65 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT league_from FROM table_name_69 WHERE nhl_team = \"atlanta thrashers (from dallas) 6\"", "question": "From which league is the player chosen by the Atlanta Thrashers (from Dallas) 6?", "context": "CREATE TABLE table_name_69 (league_from VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT number_of_households FROM table_name_71 WHERE county = \"yadkin\"", "question": "How many households have yadkin as the county?", "context": "CREATE TABLE table_name_71 (number_of_households VARCHAR, county VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_11 WHERE year > 2010 AND round < 1", "question": "What is the highest pick for a year after 2010, and a round smaller than 1?", "context": "CREATE TABLE table_name_11 (pick INTEGER, year VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_41 WHERE year > 2010 AND round > 1", "question": "What is the highest pick for a year after 2010 and a round larger than 1?", "context": "CREATE TABLE table_name_41 (pick INTEGER, year VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_95 WHERE year = 2009 AND round < 2 AND nba_club = \"denver nuggets\"", "question": "What is the sum for the pick of the year 2009, and a round smaller than 2 and an NBA Club Denver Nuggets?", "context": "CREATE TABLE table_name_95 (pick INTEGER, nba_club VARCHAR, year VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_23 WHERE first_round = \"0\" AND finals < 5", "question": "Can you tell me the total number of Total that has the First round of 0, and the Finals smaller than 5?", "context": "CREATE TABLE table_name_23 (total VARCHAR, first_round VARCHAR, finals VARCHAR)"}, {"answer": "SELECT AVG(conference_finals) FROM table_name_32 WHERE finals < 5", "question": "Can you tell me the average Conference Finals that has Finals smaller than 5?", "context": "CREATE TABLE table_name_32 (conference_finals INTEGER, finals INTEGER)"}, {"answer": "SELECT finals FROM table_name_80 WHERE conference_finals < 12 AND semifinals = 0 AND total = 3", "question": "Can you tell me the Finals that has the Conference Finals smaller than 12, and the Semifinals of 0, and the Total of 3?", "context": "CREATE TABLE table_name_80 (finals VARCHAR, total VARCHAR, conference_finals VARCHAR, semifinals VARCHAR)"}, {"answer": "SELECT more_than_$80, 000 FROM table_name_60 WHERE percent_of_total = \"2.2%\"", "question": "Which have more than $80k and a total percent of 2.2%?", "context": "CREATE TABLE table_name_60 (more_than_$80 VARCHAR, percent_of_total VARCHAR)"}, {"answer": "SELECT label FROM table_name_53 WHERE country = \"canada\" AND format = \"cd/digital download\"", "question": "Which Label has a Country of canada, and a Format of cd/digital download?", "context": "CREATE TABLE table_name_53 (label VARCHAR, country VARCHAR, format VARCHAR)"}, {"answer": "SELECT format FROM table_name_40 WHERE date = \"14 october 2008\" AND label = \"eagle eye media\"", "question": "Which Format has a Date of 14 october 2008, and a Label of eagle eye media?", "context": "CREATE TABLE table_name_40 (format VARCHAR, date VARCHAR, label VARCHAR)"}, {"answer": "SELECT label FROM table_name_61 WHERE country = \"united kingdom\" AND date = \"22 september 2008\" AND catalogue_number_s_ = \"eredv711\"", "question": "Which Label has a Country of united kingdom, a Date of 22 september 2008, and a Catalogue number(s) of eredv711?", "context": "CREATE TABLE table_name_61 (label VARCHAR, catalogue_number_s_ VARCHAR, country VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_94 WHERE catalogue_number_s_ = \"eredv711\"", "question": "Which Country has a Catalogue number(s) of eredv711?", "context": "CREATE TABLE table_name_94 (country VARCHAR, catalogue_number_s_ VARCHAR)"}, {"answer": "SELECT format FROM table_name_33 WHERE label = \"eagle eye media\" AND catalogue_number_s_ = \"\u2014\" AND country = \"united states\"", "question": "Which Format has a Label of eagle eye media, a Catalogue number(s) of \u2014, and a Country of united states?", "context": "CREATE TABLE table_name_33 (format VARCHAR, country VARCHAR, label VARCHAR, catalogue_number_s_ VARCHAR)"}, {"answer": "SELECT format FROM table_name_23 WHERE label = \"eagle records\" AND catalogue_number_s_ = \"edgcd391\"", "question": "Which Format has a Label of eagle records, and a Catalogue number(s) of edgcd391?", "context": "CREATE TABLE table_name_23 (format VARCHAR, label VARCHAR, catalogue_number_s_ VARCHAR)"}, {"answer": "SELECT height FROM table_name_58 WHERE date_of_birth = \"1978-02-16\"", "question": "What is the Height of the Player with a Date of Birth of 1978-02-16?", "context": "CREATE TABLE table_name_58 (height VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT name FROM table_name_46 WHERE pos = \"d\" AND date_of_birth = \"1983-07-19\"", "question": "What is the Name of the D Player born on 1983-07-19?", "context": "CREATE TABLE table_name_46 (name VARCHAR, pos VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT pos FROM table_name_64 WHERE name = \"eftychia karagianni\"", "question": "What is Eftychia Karagianni Pos.?", "context": "CREATE TABLE table_name_64 (pos VARCHAR, name VARCHAR)"}, {"answer": "SELECT track FROM table_name_28 WHERE artist = \"lcd soundsystem\"", "question": "What is the track that from lcd soundsystem?", "context": "CREATE TABLE table_name_28 (track VARCHAR, artist VARCHAR)"}, {"answer": "SELECT COUNT(uefa_cup) FROM table_name_44 WHERE total > 3", "question": "What is the total number of UEFA Cup(s), when Total is greater than 3?", "context": "CREATE TABLE table_name_44 (uefa_cup VARCHAR, total INTEGER)"}, {"answer": "SELECT MIN(polish_cup) FROM table_name_47 WHERE position = \"midfielder\" AND player = \"miroslav radovi\u0107\" AND ekstraklasa < 1", "question": "What is the lowest Polish Cup, when Position is \"Midfielder\", when Player is \"Miroslav Radovi\u0107\", and when Ekstraklasa is less than 1?", "context": "CREATE TABLE table_name_47 (polish_cup INTEGER, ekstraklasa VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(polish_cup) FROM table_name_34 WHERE player = \"maciej iwa\u0144ski\" AND ekstraklasa < 1", "question": "What is the sum of Polish Cup, when Player is \"Maciej Iwa\u0144ski\", and when Ekstraklasa is less than 1?", "context": "CREATE TABLE table_name_34 (polish_cup INTEGER, player VARCHAR, ekstraklasa VARCHAR)"}, {"answer": "SELECT 2 AS nd_party FROM table_name_53 WHERE election = \"1885\"", "question": "What 2nd Party has an Election of 1885?", "context": "CREATE TABLE table_name_53 (election VARCHAR)"}, {"answer": "SELECT 2 AS nd_party FROM table_name_11 WHERE election = \"1834\"", "question": "What 2nd Party has an Election of 1834?", "context": "CREATE TABLE table_name_11 (election VARCHAR)"}, {"answer": "SELECT 2 AS nd_member FROM table_name_43 WHERE election = \"1833 by-election\"", "question": "What 2nd Member has an Election of 1833 by-election?", "context": "CREATE TABLE table_name_43 (election VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_66 WHERE player = \"steve pate\"", "question": "Golfer Steve Pate has what To par?", "context": "CREATE TABLE table_name_66 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT result FROM table_name_91 WHERE opponent = \"boston patriots\"", "question": "What was the score when they played the Boston Patriots?", "context": "CREATE TABLE table_name_91 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(apps) FROM table_name_7 WHERE rank = 8 AND season = \"2012/13\"", "question": "How many apps for the rank of 8 in the 2012/13 season?", "context": "CREATE TABLE table_name_7 (apps INTEGER, rank VARCHAR, season VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE champion = \"nacional\" AND venue = \"centenario\" AND runner_up = \"river plate\"", "question": "What was the score when Nacional was the champion, River Plate was the runner-up, and the venue was Centenario?", "context": "CREATE TABLE table_name_13 (score VARCHAR, runner_up VARCHAR, champion VARCHAR, venue VARCHAR)"}, {"answer": "SELECT champion FROM table_name_57 WHERE runner_up = \"atl\u00e9tico wanderers\"", "question": "Who was the champion when atl\u00e9tico wanderers was the runner-up?", "context": "CREATE TABLE table_name_57 (champion VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT city FROM table_name_55 WHERE venue = \"san lorenzo centenario\"", "question": "In which city is the San Lorenzo Centenario venue located?", "context": "CREATE TABLE table_name_55 (city VARCHAR, venue VARCHAR)"}, {"answer": "SELECT surface FROM table_name_98 WHERE date = \"31 may 2010\"", "question": "The game played 31 May 2010 was played on what surface?", "context": "CREATE TABLE table_name_98 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_63 WHERE date = \"16 september 2012\"", "question": "What tournament was played 16 September 2012?", "context": "CREATE TABLE table_name_63 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_22 WHERE date = \"26 july 2010\"", "question": "What is the score of the game played 26 July 2010?", "context": "CREATE TABLE table_name_22 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_92 WHERE opponent = \"paul-henri mathieu\"", "question": "The match against Paul-Henri Mathieu had what outcome?", "context": "CREATE TABLE table_name_92 (outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_35 WHERE country = \"south africa\"", "question": "What is South Africa's to par?", "context": "CREATE TABLE table_name_35 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_20 WHERE finish = \"t20\"", "question": "Who had a finish of t20?", "context": "CREATE TABLE table_name_20 (player VARCHAR, finish VARCHAR)"}, {"answer": "SELECT AVG(pujehun) FROM table_name_10 WHERE measure = \"female enrollment\"", "question": "What is the average pjehun measured by female enrollment?", "context": "CREATE TABLE table_name_10 (pujehun INTEGER, measure VARCHAR)"}, {"answer": "SELECT MAX(pujehun) FROM table_name_9 WHERE kenema > 559 AND kambia = \"45,653\" AND tonkolili > 113 OFFSET 926", "question": "What is the highest pjuehun with a kenema greater than 559, a kambia of 45,653, and a tonkolili greater than 113,926?", "context": "CREATE TABLE table_name_9 (pujehun INTEGER, tonkolili VARCHAR, kenema VARCHAR, kambia VARCHAR)"}, {"answer": "SELECT SUM(kono) FROM table_name_38 WHERE bonthe > 21 OFFSET 238", "question": "What is the sum of the kono with a bonthe greater than 21,238?", "context": "CREATE TABLE table_name_38 (kono INTEGER, bonthe INTEGER)"}, {"answer": "SELECT party FROM table_name_50 WHERE results = \"re-elected\" AND first_elected = 2000", "question": "What party is the person who was first elected in 2000 and was re-elected?", "context": "CREATE TABLE table_name_50 (party VARCHAR, results VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT report FROM table_name_93 WHERE set_3 = \"21\u201325\"", "question": "Which report has a Set 3 value of 21\u201325?", "context": "CREATE TABLE table_name_93 (report VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT time FROM table_name_70 WHERE set_3 = \"25\u201314\"", "question": "What was the Time when Set 3 was 25\u201314?", "context": "CREATE TABLE table_name_70 (time VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE time = \"18:00\" AND set_1 = \"22\u201325\"", "question": "When was there a Time of 18:00, and a Set 1 of 22\u201325?", "context": "CREATE TABLE table_name_92 (date VARCHAR, time VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_64 WHERE concacaf = 0 AND mls_cup < 6", "question": "How many Totals have a CONCACAF of 0, and an MLS Cup smaller than 6?", "context": "CREATE TABLE table_name_64 (total VARCHAR, concacaf VARCHAR, mls_cup VARCHAR)"}, {"answer": "SELECT AVG(mls_cup) FROM table_name_43 WHERE other > 9 AND total < 72", "question": "Which MLS Cup has another larger than 9, and a Total smaller than 72?", "context": "CREATE TABLE table_name_43 (mls_cup INTEGER, other VARCHAR, total VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_62 WHERE result = \"not nominated\" AND film_title_used_in_nomination = \"the color of fame\"", "question": "What year has a not nominated result and a nomination title of \"the color of fame\"?", "context": "CREATE TABLE table_name_62 (year__ceremony_ VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_1 WHERE film_title_used_in_nomination = \"brecha en el silencio\"", "question": "What's the original title of the nomination title, \"brecha en el silencio\"?", "context": "CREATE TABLE table_name_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_84 WHERE film_title_used_in_nomination = \"sangrador\"", "question": "What year has a nomination title of \"sangrador\"?", "context": "CREATE TABLE table_name_84 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_81 WHERE original_title = \"el tinte de la fama\"", "question": "What year has a original title of \"el tinte de la fama\"?", "context": "CREATE TABLE table_name_81 (year__ceremony_ VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT result FROM table_name_25 WHERE director = \"elia schneider\" AND film_title_used_in_nomination = \"punto y raya\"", "question": "What's the result for director elia schneider's punto y raya?", "context": "CREATE TABLE table_name_25 (result VARCHAR, director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_4 WHERE total = \"20\"", "question": "What is the score points when the total is 20?", "context": "CREATE TABLE table_name_4 (score_points VARCHAR, total VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_99 WHERE event = \"wc kerrville\" AND rank_points = \"8\"", "question": "What is the score points in WC Kerrville, when rank was points of 8?", "context": "CREATE TABLE table_name_99 (score_points VARCHAR, event VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_35 WHERE total = \"16\"", "question": "What is the score points when the total is 16?", "context": "CREATE TABLE table_name_35 (score_points VARCHAR, total VARCHAR)"}, {"answer": "SELECT score_points FROM table_name_53 WHERE rank_points = \"3\"", "question": "What is the score points when the rank points is 3?", "context": "CREATE TABLE table_name_53 (score_points VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT total FROM table_name_50 WHERE score_points = \"olympic bronze medalist\"", "question": "What is the total when the score points show Olympic bronze medalist?", "context": "CREATE TABLE table_name_50 (total VARCHAR, score_points VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_82 WHERE circuit = \"lasarte\"", "question": "What Winning constructor has a Circuit of lasarte?", "context": "CREATE TABLE table_name_82 (winning_constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE winning_driver = \"ugo sivocci\"", "question": "What Date has a Winning driver of ugo sivocci?", "context": "CREATE TABLE table_name_61 (date VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT report FROM table_name_72 WHERE winning_driver = \"mario razzauti\"", "question": "What Report has a Winning driver of mario razzauti?", "context": "CREATE TABLE table_name_72 (report VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE circuit = \"cremona\"", "question": "What Date has a Circuit of cremona?", "context": "CREATE TABLE table_name_36 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT name FROM table_name_56 WHERE winning_constructor = \"ansaldo\"", "question": "What Name has a Winning constructor of ansaldo?", "context": "CREATE TABLE table_name_56 (name VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_43 WHERE winning_constructor = \"sunbeam\"", "question": "What Winning driver has a Winning constructor of sunbeam?", "context": "CREATE TABLE table_name_43 (winning_driver VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_98 WHERE bronze < 0", "question": "What is the average total for 0 bronze?", "context": "CREATE TABLE table_name_98 (total INTEGER, bronze INTEGER)"}, {"answer": "SELECT title FROM table_name_17 WHERE lyricist_s_ = \"roz\" AND arranger_s_ = \"yongmin lee\"", "question": "What is the title of the track with lyricist ROZ and arranger Yongmin Lee?", "context": "CREATE TABLE table_name_17 (title VARCHAR, lyricist_s_ VARCHAR, arranger_s_ VARCHAR)"}, {"answer": "SELECT lyricist_s_ FROM table_name_36 WHERE composer_s_ = \"haewon park\"", "question": "Who was the lyricist for composer Haewon Park?", "context": "CREATE TABLE table_name_36 (lyricist_s_ VARCHAR, composer_s_ VARCHAR)"}, {"answer": "SELECT time FROM table_name_79 WHERE arranger_s_ = \"roz\"", "question": "What are the lengths of the tracks arranged by ROZ?", "context": "CREATE TABLE table_name_79 (time VARCHAR, arranger_s_ VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_19 WHERE winner = \"caroline lubrez\"", "question": "How many years did caroline lubrez win?", "context": "CREATE TABLE table_name_19 (year INTEGER, winner VARCHAR)"}, {"answer": "SELECT MAX(area_km_2) FROM table_name_46 WHERE official_name = \"stanley\" AND population > 1 OFFSET 817", "question": "Which Area km 2 has an Official Name of stanley, and a Population larger than 1,817?", "context": "CREATE TABLE table_name_46 (area_km_2 INTEGER, official_name VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(area_km_2) FROM table_name_61 WHERE population = 1 OFFSET 215", "question": "How much Area km 2 have a Population of 1,215?", "context": "CREATE TABLE table_name_61 (area_km_2 VARCHAR, population VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_name_36 WHERE population < 879 AND area_km_2 > 537.62", "question": "Which Census Ranking has a Population smaller than 879, and an Area km 2 larger than 537.62?", "context": "CREATE TABLE table_name_36 (census_ranking VARCHAR, population VARCHAR, area_km_2 VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_name_94 WHERE area_km_2 > 753.06 AND official_name = \"stanley\"", "question": "Which Census Ranking has an Area km 2 larger than 753.06, and an Official Name of stanley?", "context": "CREATE TABLE table_name_94 (census_ranking VARCHAR, area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT MIN(area_km_2) FROM table_name_61 WHERE official_name = \"southampton\" AND population > 1 OFFSET 601", "question": "Which Area km 2 has an Official Name of southampton, and a Population larger than 1,601?", "context": "CREATE TABLE table_name_61 (area_km_2 INTEGER, official_name VARCHAR, population VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_72 WHERE team = \"kirkby town\" AND goals_for > 83", "question": "What is Kirkby Town's lowest lost with more than 83 goals?", "context": "CREATE TABLE table_name_72 (lost INTEGER, team VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_74 WHERE points_1 = \"27 2\" AND drawn < 9", "question": "What is the lowest position with points 1 of 27 2 and fewer than 9 drawn?", "context": "CREATE TABLE table_name_74 (position INTEGER, points_1 VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT goal_difference FROM table_name_35 WHERE position = 15", "question": "What is the goal difference number with a position of 15?", "context": "CREATE TABLE table_name_35 (goal_difference VARCHAR, position VARCHAR)"}, {"answer": "SELECT english_translation FROM table_name_23 WHERE lyricist_s_ = \"giorgos moukidis\" AND original_album = \"ena (new edition)\"", "question": "What is English Translation, when Lyricist(s) is \"Giorgos Moukidis\", and when Original Album is \"Ena (New Edition)\"", "context": "CREATE TABLE table_name_23 (english_translation VARCHAR, lyricist_s_ VARCHAR, original_album VARCHAR)"}, {"answer": "SELECT original_album FROM table_name_23 WHERE time = \"3:39\"", "question": "What is Original Album, when Time is \"3:39\"?", "context": "CREATE TABLE table_name_23 (original_album VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_32 WHERE composer_s_ = \"kyriakos papadopoulos\"", "question": "What is Time, when Composer(s) is \"Kyriakos Papadopoulos\"?", "context": "CREATE TABLE table_name_32 (time VARCHAR, composer_s_ VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_9 WHERE date = \"march 27\"", "question": "Who was the visitor on March 27?", "context": "CREATE TABLE table_name_9 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_34 WHERE date = \"february 8\"", "question": "What was the score of the game on February 8?", "context": "CREATE TABLE table_name_34 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_1 WHERE date = \"december 4\"", "question": "What was their record on December 4?", "context": "CREATE TABLE table_name_1 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE home = \"pittsburgh penguins\" AND date = \"february 21\"", "question": "What was the score on February 21 when the home team was the Pittsburgh Penguins?", "context": "CREATE TABLE table_name_6 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(money___) AS $__ FROM table_name_1 WHERE to_par > 26", "question": "WHAT IS THE LOWEST MONEY WITH TO PAR LARGER THAN 26?", "context": "CREATE TABLE table_name_1 (money___ INTEGER, to_par INTEGER)"}, {"answer": "SELECT score FROM table_name_96 WHERE money___$__ = 85 AND player = \"clarence hackney\"", "question": "WHAT IS THE SCORE WITH $85 FOR CLARENCE HACKNEY?", "context": "CREATE TABLE table_name_96 (score VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(money___) AS $__ FROM table_name_2 WHERE score = 74 - 74 - 76 - 74 = 298", "question": "WHAT IS THE LOWEST MONEY WITH 74-74-76-74=298 SCORE?", "context": "CREATE TABLE table_name_2 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_96 WHERE date = \"september 14, 1980\"", "question": "What is the week number for the date of September 14, 1980?", "context": "CREATE TABLE table_name_96 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_48 WHERE result = \"l 14\u20139\"", "question": "What week was the result l 14\u20139?", "context": "CREATE TABLE table_name_48 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_2 WHERE attendance = 44 OFFSET 132", "question": "What is the week number with attendance of 44,132?", "context": "CREATE TABLE table_name_2 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT winner FROM table_name_42 WHERE circuit = \"eastern creek raceway\"", "question": "Who was the winner for the circuit Eastern Creek Raceway?", "context": "CREATE TABLE table_name_42 (winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_45 WHERE winner = \"darren hossack\" AND circuit = \"phillip island grand prix circuit\"", "question": "What was the city for the winner Darren Hossack at the circuit of phillip island grand prix circuit?", "context": "CREATE TABLE table_name_45 (city___state VARCHAR, winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_48 WHERE circuit = \"mallala motor sport park\"", "question": "What city was the circuit of mallala motor sport park?", "context": "CREATE TABLE table_name_48 (city___state VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_85 WHERE place = \"t1\" AND country = \"india\"", "question": "Which To par has a Place of t1, and a Country of india?", "context": "CREATE TABLE table_name_85 (to_par VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_77 WHERE player = \"brian gay\"", "question": "What is Brian Gay's place?", "context": "CREATE TABLE table_name_77 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_4 WHERE score < 70 AND place = \"t3\" AND player = \"andr\u00e9s romero\"", "question": "Which Country has a Score smaller than 70, and a Place of t3, and a Player of andr\u00e9s romero?", "context": "CREATE TABLE table_name_4 (country VARCHAR, player VARCHAR, score VARCHAR, place VARCHAR)"}, {"answer": "SELECT order_year FROM table_name_86 WHERE length__ft_ = \"30\" AND model = \"05.505\"", "question": "What order year has a 30 Length (ft.) and 05.505 model?", "context": "CREATE TABLE table_name_86 (order_year VARCHAR, length__ft_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT builder FROM table_name_93 WHERE order_year = \"2001-02\"", "question": "What builder has a 2001-02 order year?", "context": "CREATE TABLE table_name_93 (builder VARCHAR, order_year VARCHAR)"}, {"answer": "SELECT order_year FROM table_name_89 WHERE builder = \"obi\" AND length__ft_ = \"30\" AND model = \"05.505\"", "question": "What is the order year of obi builder and 05.505 model that is 30 feet long?", "context": "CREATE TABLE table_name_89 (order_year VARCHAR, model VARCHAR, builder VARCHAR, length__ft_ VARCHAR)"}, {"answer": "SELECT career FROM table_name_23 WHERE pct < 1 AND player = \"serhiy konovalov\"", "question": "What is the career of player serhiy konovalov, who has less than 1 pct.?", "context": "CREATE TABLE table_name_23 (career VARCHAR, pct VARCHAR, player VARCHAR)"}, {"answer": "SELECT career FROM table_name_38 WHERE player = \"andriy husyn\"", "question": "What is the career of player andriy husyn?", "context": "CREATE TABLE table_name_38 (career VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_97 WHERE working_horses = \"3900.1\" AND cows < 3852.1", "question": "What is the earliest year that has fewer than 3852.1 cows and 3900.1 working horses?", "context": "CREATE TABLE table_name_97 (year INTEGER, working_horses VARCHAR, cows VARCHAR)"}, {"answer": "SELECT bulls FROM table_name_58 WHERE oxen > 113.8 AND sheep_and_goats > 4533.4 AND cows < 3987 AND total_horses > 5056.5", "question": "What is the number of bulls that has oxen larger than 113.8, and a sheep and goats larger than 4533.4, and a cows smaller than 3987, and a total horses larger than 5056.5?", "context": "CREATE TABLE table_name_58 (bulls VARCHAR, total_horses VARCHAR, cows VARCHAR, oxen VARCHAR, sheep_and_goats VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_81 WHERE pigs < 2089.2", "question": "How many years had fewer than 2089.2 pigs?", "context": "CREATE TABLE table_name_81 (year VARCHAR, pigs INTEGER)"}, {"answer": "SELECT MIN(total_horses) FROM table_name_65 WHERE total_cattle < 6274.1 AND oxen < 156.5 AND bulls = \"40.0\" AND cows < 3377", "question": "What was the lowest total number of horses that has a total cattle smaller than 6274.1, and a oxen smaller than 156.5, and a bulls of 40.0, and fewer than 3377 cows?", "context": "CREATE TABLE table_name_65 (total_horses INTEGER, cows VARCHAR, bulls VARCHAR, total_cattle VARCHAR, oxen VARCHAR)"}, {"answer": "SELECT MIN(sheep_and_goats) FROM table_name_42 WHERE year > 1931 AND cows < 2518 AND total_horses > 2604.8", "question": "What is the lowest number of sheep and goats after 1931, with fewer than 2518 cows and more than 2604.8 horses?", "context": "CREATE TABLE table_name_42 (sheep_and_goats INTEGER, total_horses VARCHAR, year VARCHAR, cows VARCHAR)"}, {"answer": "SELECT decision FROM table_name_10 WHERE record = \"31-43-2\"", "question": "For the game ending with a record of 31-43-2, what was the decision?", "context": "CREATE TABLE table_name_10 (decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT decision FROM table_name_22 WHERE record = \"28-35-1\"", "question": "For the game that ended with a record of 28-35-1, what was the decision?", "context": "CREATE TABLE table_name_22 (decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_76 WHERE opponent = \"phoenix coyotes\"", "question": "WHAT IS THE HIGHEST ATTENDANCE FOR THE PHOENIX COYOTES?", "context": "CREATE TABLE table_name_76 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT decision FROM table_name_10 WHERE date = \"november 28\"", "question": "WHAT IS THE DECISION FOR NOVEMBER 28?", "context": "CREATE TABLE table_name_10 (decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT mission FROM table_name_13 WHERE location = \"rome\"", "question": "what is the mission when the location is rome?", "context": "CREATE TABLE table_name_13 (mission VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_42 WHERE type = \"embassy\" AND mission = \"panama\"", "question": "what is the location when the type is embassy and the mission is panama?", "context": "CREATE TABLE table_name_42 (location VARCHAR, type VARCHAR, mission VARCHAR)"}, {"answer": "SELECT mission FROM table_name_18 WHERE location = \"brasilia\"", "question": "what is the mission when the location is brasilia?", "context": "CREATE TABLE table_name_18 (mission VARCHAR, location VARCHAR)"}, {"answer": "SELECT type FROM table_name_62 WHERE position = \"ambassador\" AND location = \"rabat\"", "question": "what is the type when the position is ambassador and the location is rabat?", "context": "CREATE TABLE table_name_62 (type VARCHAR, position VARCHAR, location VARCHAR)"}, {"answer": "SELECT wins FROM table_name_19 WHERE pct = \".848\"", "question": "How many wins when the pct, is .848?", "context": "CREATE TABLE table_name_19 (wins VARCHAR, pct VARCHAR)"}, {"answer": "SELECT season FROM table_name_35 WHERE losses = \"34\"", "question": "Which season had 34 losses?", "context": "CREATE TABLE table_name_35 (season VARCHAR, losses VARCHAR)"}, {"answer": "SELECT finish FROM table_name_17 WHERE season = \"playoffs\"", "question": "What was the finish in the playoffs season?", "context": "CREATE TABLE table_name_17 (finish VARCHAR, season VARCHAR)"}, {"answer": "SELECT wins FROM table_name_10 WHERE league = \"playoffs\"", "question": "What is the number of wins in the playoffs league?", "context": "CREATE TABLE table_name_10 (wins VARCHAR, league VARCHAR)"}, {"answer": "SELECT league FROM table_name_47 WHERE losses = \"0\"", "question": "What is the league with 0 losses?", "context": "CREATE TABLE table_name_47 (league VARCHAR, losses VARCHAR)"}, {"answer": "SELECT place FROM table_name_13 WHERE score = 72 - 66 - 75 = 213", "question": "In what place is the player with a score of 72-66-75=213?", "context": "CREATE TABLE table_name_13 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_70 WHERE score = 68 - 71 - 76 = 215", "question": "From what country is the player with a score of 68-71-76=215?", "context": "CREATE TABLE table_name_70 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_8 WHERE score = 68 - 69 - 73 = 210", "question": "Which player has a score of 68-69-73=210", "context": "CREATE TABLE table_name_8 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE finish = \"t66\"", "question": "Who has a finish of t66?", "context": "CREATE TABLE table_name_89 (player VARCHAR, finish VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_93 WHERE player = \"wayne grady\"", "question": "What is Wayne Grady's total?", "context": "CREATE TABLE table_name_93 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT gr\u00fcne FROM table_name_14 WHERE rett\u00f6 = \"0.6%\" AND state = \"tyrol\"", "question": "What percent did GR\u00dcNE get in Tyrol where RETT\u00d6 got 0.6%?", "context": "CREATE TABLE table_name_14 (gr\u00fcne VARCHAR, rett\u00f6 VARCHAR, state VARCHAR)"}, {"answer": "SELECT rett\u00f6 FROM table_name_81 WHERE linke = \"0.1%\" AND fritz = \"1.3%\"", "question": "What percent did RETT\u00d6 get in the state where LINKE got 0.1%, and FRITZ got 1.3%?", "context": "CREATE TABLE table_name_81 (rett\u00f6 VARCHAR, linke VARCHAR, fritz VARCHAR)"}, {"answer": "SELECT gr\u00fcne FROM table_name_14 WHERE fritz = \"1.3%\"", "question": "What percent did GR\u00dcNE get in the state where FRITZ got 1.3%?", "context": "CREATE TABLE table_name_14 (gr\u00fcne VARCHAR, fritz VARCHAR)"}, {"answer": "SELECT linke FROM table_name_99 WHERE state = \"tyrol\"", "question": "What percent did LINKE get in Tyrol?", "context": "CREATE TABLE table_name_99 (linke VARCHAR, state VARCHAR)"}, {"answer": "SELECT stark FROM table_name_58 WHERE state = \"upper austria\"", "question": "What percent did STARK get in upper austria?", "context": "CREATE TABLE table_name_58 (stark VARCHAR, state VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_45 WHERE date = \"27/03/1971\"", "question": "What's the lowest against on 27/03/1971?", "context": "CREATE TABLE table_name_45 (against INTEGER, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_16 WHERE against > 14 AND opposing_teams = \"scotland\" AND status = \"five nations\"", "question": "What venue has an against over 14, an opposing team of scotland, and a status of five nations?", "context": "CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT player FROM table_name_57 WHERE place = \"t4\" AND score = 71 - 74 - 66 = 211", "question": "What is the T4 Place Player with a Score of 71-74-66=211?", "context": "CREATE TABLE table_name_57 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE to_par = \"\u20131\" AND player = \"henrik stenson\"", "question": "With a To par of \u20131, what is Player Henrik Stenson's Score?", "context": "CREATE TABLE table_name_48 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_89 WHERE score = 73 - 67 - 68 = 208", "question": "What is the To par of the Player with a Score of 73-67-68=208?", "context": "CREATE TABLE table_name_89 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT project_management FROM table_name_9 WHERE blogs = \"no\" AND xml_forms_management_and_workflow = \"no\" AND enterprise_search = \"no\" AND social_software = \"no\"", "question": "WHAT IS THE PM THAT HAS NO BLOGS, NO XML Forms Management and workflow, NO SEARCH, AND NO SOCIAL SOFTWARE?", "context": "CREATE TABLE table_name_9 (project_management VARCHAR, social_software VARCHAR, enterprise_search VARCHAR, blogs VARCHAR, xml_forms_management_and_workflow VARCHAR)"}, {"answer": "SELECT charting FROM table_name_96 WHERE blogs = \"no\" AND discussion = \"no\"", "question": "WHAT CHARTING HAS NO BLOGS OR DISCUSSION?", "context": "CREATE TABLE table_name_96 (charting VARCHAR, blogs VARCHAR, discussion VARCHAR)"}, {"answer": "SELECT social_software FROM table_name_18 WHERE discussion = \"no\" AND time_tracking = \"no\" AND charting = \"no\"", "question": "WHAT IS THE SOCIAL SOFTWARE WITH NO DISCUSSION, NO TIME TRACKING, AND NO CHARTING?", "context": "CREATE TABLE table_name_18 (social_software VARCHAR, charting VARCHAR, discussion VARCHAR, time_tracking VARCHAR)"}, {"answer": "SELECT bookmarking, _tagging, _rating_and_comments FROM table_name_1 WHERE list_management = \"no\" AND charting = \"no\" AND web_publishing = \"no\" AND name = \"microsoft exchange server\"", "question": "WHAT IS THE BOOKMARKING, TAGGING, RATING AND COMMENTS WITH NO LIST MANAGEMENT, NO CHARTING, NO WEB PUBLISHING, OF MICROSOFT EXCHANGE SERVER?", "context": "CREATE TABLE table_name_1 (bookmarking VARCHAR, _tagging VARCHAR, _rating_and_comments VARCHAR, name VARCHAR, web_publishing VARCHAR, list_management VARCHAR, charting VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_71 WHERE date_sent = \"september 4, 2001\" AND distance___ly__ < 57.4", "question": "What is Constellation, when Date Sent is \"September 4, 2001\", and when Distance ( ly ) is less than 57.4?", "context": "CREATE TABLE table_name_71 (constellation VARCHAR, date_sent VARCHAR, distance___ly__ VARCHAR)"}, {"answer": "SELECT date_sent FROM table_name_71 WHERE constellation = \"delphinus\"", "question": "What is Date, when Constellation is \"Delphinus\"?", "context": "CREATE TABLE table_name_71 (date_sent VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT COUNT(distance___ly__) FROM table_name_34 WHERE constellation = \"draco\"", "question": "What is the total number of Distance ( ly ), when Constellation is \"Draco\"?", "context": "CREATE TABLE table_name_34 (distance___ly__ VARCHAR, constellation VARCHAR)"}, {"answer": "SELECT date_sent FROM table_name_75 WHERE signal_power___kw__ < 126 AND arrival_date = \"january 2059\" AND hd_designation = \"hd193664\"", "question": "What is Date Sent, when Signal Power ( kW ) is less than 126, when Arrival Date is \"January 2059\", and when HD Designation is \"HD193664\"?", "context": "CREATE TABLE table_name_75 (date_sent VARCHAR, hd_designation VARCHAR, signal_power___kw__ VARCHAR, arrival_date VARCHAR)"}, {"answer": "SELECT constellation FROM table_name_82 WHERE hd_designation = \"hd197076\"", "question": "What is Constellation, when HD Designation is \"HD197076\"?", "context": "CREATE TABLE table_name_82 (constellation VARCHAR, hd_designation VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE score = \"6\u20134, 6\u20134\" AND opponent = \"leonardo tavares\"", "question": "What date was the match against leonardo tavares with a score of 6\u20134, 6\u20134?", "context": "CREATE TABLE table_name_4 (date VARCHAR, score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE opponent = \"adri\u00e1n men\u00e9ndez-maceiras\"", "question": "What date was the match against adri\u00e1n men\u00e9ndez-maceiras?", "context": "CREATE TABLE table_name_9 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_83 WHERE golden_rivers = \"quambatook\" AND against < 1129", "question": "What is the highest number of wins for Quambatook when Against is less than 1129?", "context": "CREATE TABLE table_name_83 (wins INTEGER, golden_rivers VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_20 WHERE wins < 3", "question": "What is the total number of draws when there are fewer than 3 wins?", "context": "CREATE TABLE table_name_20 (draws VARCHAR, wins INTEGER)"}, {"answer": "SELECT COUNT(draws) FROM table_name_7 WHERE losses > 11 AND wins < 4 AND golden_rivers = \"wakool\"", "question": "What is the total number of draws for Wakool when there are more than 11 losses and fewer than 4 wins?", "context": "CREATE TABLE table_name_7 (draws VARCHAR, golden_rivers VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT country FROM table_name_66 WHERE score = 69 - 74 = 143", "question": "Which Country has a Score of 69-74=143?", "context": "CREATE TABLE table_name_66 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_36 WHERE to_par < 5 AND score = 70 - 72 = 142", "question": "Which Player has a To Par smaller than 5, and a Score of 70-72=142?", "context": "CREATE TABLE table_name_36 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE player = \"frank moore\"", "question": "What was Frank Moore's score?", "context": "CREATE TABLE table_name_81 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE home_team = \"birmingham city\"", "question": "What was the score of the game that home team birmingham city played?", "context": "CREATE TABLE table_name_84 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE away_team = \"northampton town\"", "question": "What date was the game when away team northampton town played?", "context": "CREATE TABLE table_name_43 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_16 WHERE home_team = \"woking\"", "question": "Who was the team who played home team woking?", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home FROM table_name_81 WHERE league = \"3rd liga (iii)\"", "question": "What is the home for the league 3rd liga (iii)?", "context": "CREATE TABLE table_name_81 (home VARCHAR, league VARCHAR)"}, {"answer": "SELECT home FROM table_name_11 WHERE league = \"3rd liga\" AND away = \"4-0\"", "question": "What is the home for league 3rd liga, and an away of 4-0?", "context": "CREATE TABLE table_name_11 (home VARCHAR, league VARCHAR, away VARCHAR)"}, {"answer": "SELECT home FROM table_name_1 WHERE away = \"4-0\"", "question": "What is the home for the away of 4-0?", "context": "CREATE TABLE table_name_1 (home VARCHAR, away VARCHAR)"}, {"answer": "SELECT season FROM table_name_89 WHERE league = \"3rd liga\" AND away = \"1-0\"", "question": "What season has a league 3rd liga, and away of 1-0?", "context": "CREATE TABLE table_name_89 (season VARCHAR, league VARCHAR, away VARCHAR)"}, {"answer": "SELECT teams FROM table_name_66 WHERE season = \"2009-10\"", "question": "What team has a season of 2009-10?", "context": "CREATE TABLE table_name_66 (teams VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(goals_against) FROM table_name_21 WHERE points > 25 AND club = \"sd indautxu\" AND position > 3", "question": "What is the highest Goals Against, when Points is greater than 25, when Club is \"SD Indautxu\", and when Position is greater than 3?", "context": "CREATE TABLE table_name_21 (goals_against INTEGER, position VARCHAR, points VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_48 WHERE draws < 2", "question": "What is the total number of Wins, when Draws is less than 2?", "context": "CREATE TABLE table_name_48 (wins VARCHAR, draws INTEGER)"}, {"answer": "SELECT AVG(wins) FROM table_name_96 WHERE played < 30", "question": "What is the average Wins, when Played is less than 30?", "context": "CREATE TABLE table_name_96 (wins INTEGER, played INTEGER)"}, {"answer": "SELECT COUNT(wins) FROM table_name_93 WHERE draws < 5 AND goals_against > 49 AND played > 30", "question": "What is the total number of Wins, when Draws is less than 5, when Goals is greater than 49, and when Played is greater than 30?", "context": "CREATE TABLE table_name_93 (wins VARCHAR, played VARCHAR, draws VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MIN(goal_difference) FROM table_name_1 WHERE position = 7 AND played > 30", "question": "What is the lowest Goal Difference, when Position is \"7\", and when Played is greater than 30?", "context": "CREATE TABLE table_name_1 (goal_difference INTEGER, position VARCHAR, played VARCHAR)"}, {"answer": "SELECT week_4 FROM table_name_26 WHERE week_3 = \"laura nicole\"", "question": "What is the week 3, prior to the when the week 4 was Laura Nicole?", "context": "CREATE TABLE table_name_26 (week_4 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_99 WHERE week_4 = \"miranda jordan\"", "question": "What was the week 2 prior to the when Miranda Jordan was the week 4?", "context": "CREATE TABLE table_name_99 (week_2 VARCHAR, week_4 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_60 WHERE week_3 = \"brittany alyse\"", "question": "What was the week 2 prior to the when Brittany Alyse was week 3?", "context": "CREATE TABLE table_name_60 (week_2 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_36 WHERE week_1 = \"dani dior\"", "question": "What is the week 5 after Dani Dior as week 1?", "context": "CREATE TABLE table_name_36 (week_5 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_40 WHERE week_3 = \"lara leverence\"", "question": "What was the week 2 before Lara Leverence was week 3?", "context": "CREATE TABLE table_name_40 (week_2 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_24 WHERE total < 1", "question": "What is the total number of bronzes that is less than 1 in total?", "context": "CREATE TABLE table_name_24 (bronze VARCHAR, total INTEGER)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_97 WHERE gold < 2 AND silver > 1", "question": "What is the total number of bronze that has less than 2 gold, and more than 1 silver?", "context": "CREATE TABLE table_name_97 (bronze VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_75 WHERE gold < 1 AND silver = 0 AND bronze = 1 AND total < 1", "question": "What is the lowest rank with less than 1 gold, 0 silver, 1 bronze, and a total less than 1?", "context": "CREATE TABLE table_name_75 (rank INTEGER, total VARCHAR, bronze VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_64 WHERE gold < 0", "question": "What is the average bronze for less than 0 gold?", "context": "CREATE TABLE table_name_64 (bronze INTEGER, gold INTEGER)"}, {"answer": "SELECT COUNT(total) FROM table_name_51 WHERE bronze < 8 AND nation = \"netherlands\" AND rank < 16", "question": "What is the total number for less than 8 bronze, the Netherlands nation, and is ranked less than 16?", "context": "CREATE TABLE table_name_51 (total VARCHAR, rank VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT city FROM table_name_57 WHERE status = \"active\" AND us_state_district = \"california\" AND greek_designation = \"established colony\"", "question": "What California city has an active status and a greek designation of established colony?", "context": "CREATE TABLE table_name_57 (city VARCHAR, greek_designation VARCHAR, status VARCHAR, us_state_district VARCHAR)"}, {"answer": "SELECT greek_designation FROM table_name_74 WHERE us_state_district = \"new york\" AND charter_date = \"april 23, 2005\"", "question": "What's the greek designation of the new york chapter with a charter date of april 23, 2005?", "context": "CREATE TABLE table_name_74 (greek_designation VARCHAR, us_state_district VARCHAR, charter_date VARCHAR)"}, {"answer": "SELECT collegiate_institution FROM table_name_56 WHERE status = \"active\" AND charter_date = \"march 30, 2002\"", "question": "What collegiate institution has an active status and a charter date of march 30, 2002?", "context": "CREATE TABLE table_name_56 (collegiate_institution VARCHAR, status VARCHAR, charter_date VARCHAR)"}, {"answer": "SELECT greek_designation FROM table_name_28 WHERE city = \"riverside\"", "question": "What's the greek designation of the city riverside?", "context": "CREATE TABLE table_name_28 (greek_designation VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_9 WHERE charter_date = \"november 24, 1999\"", "question": "What city has a charter date of november 24, 1999?", "context": "CREATE TABLE table_name_9 (city VARCHAR, charter_date VARCHAR)"}, {"answer": "SELECT us_state_district FROM table_name_51 WHERE charter_date = \"april 17, 2011\"", "question": "What state or district has a charter date of april 17, 2011?", "context": "CREATE TABLE table_name_51 (us_state_district VARCHAR, charter_date VARCHAR)"}, {"answer": "SELECT MIN(all_around) FROM table_name_70 WHERE total = 19.85 AND hoop < 9.85", "question": "What is the smallest all around when the total is 19.85 and the hoop is less than 9.85?", "context": "CREATE TABLE table_name_70 (all_around INTEGER, total VARCHAR, hoop VARCHAR)"}, {"answer": "SELECT AVG(hoop) FROM table_name_37 WHERE all_around < 9.7", "question": "What is the average hoop when the all around is less than 9.7?", "context": "CREATE TABLE table_name_37 (hoop INTEGER, all_around INTEGER)"}, {"answer": "SELECT median_family_income FROM table_name_76 WHERE median_household_income = \"$50,717\"", "question": "What is Median Family Income, when Median Household Income is \"$50,717\"?", "context": "CREATE TABLE table_name_76 (median_family_income VARCHAR, median_household_income VARCHAR)"}, {"answer": "SELECT MAX(number_of_households) FROM table_name_57 WHERE per_capita_income = \"$25,557\" AND population < 22 OFFSET 330", "question": "What is the highest Number of Households, when Per Capita Income is \"$25,557\", and when Population is less than \"22,330\"?", "context": "CREATE TABLE table_name_57 (number_of_households INTEGER, per_capita_income VARCHAR, population VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_80 WHERE per_capita_income = \"$16,330\"", "question": "What is the lowest Population, when Per Capita Income is \"$16,330\"?", "context": "CREATE TABLE table_name_80 (population INTEGER, per_capita_income VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_86 WHERE per_capita_income = \"$17,168\" AND number_of_households > 3 OFFSET 287", "question": "What is the highest Population, when Per Capita Income is \"$17,168\", and when Number of Households is greater than 3,287?", "context": "CREATE TABLE table_name_86 (population INTEGER, per_capita_income VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT place FROM table_name_1 WHERE score = 70 - 68 = 138 AND player = \"andrew magee\"", "question": "What is Place, when Score is \"70-68=138\", and when Player is \"Andrew Magee\"?", "context": "CREATE TABLE table_name_1 (place VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_57 WHERE place = \"t5\" AND score = 70 - 68 = 138", "question": "What is To par, when Place is \"T5\", and when Score is \"70-68=138\"?", "context": "CREATE TABLE table_name_57 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE place = \"t5\" AND country = \"united states\" AND player = \"davis love iii\"", "question": "What is Score, when Place is \"T5\", when Country is \"United States\", and when Player is \"Davis Love III\"?", "context": "CREATE TABLE table_name_21 (score VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_51 WHERE country = \"united states\" AND place = \"t10\" AND score = 68 - 71 = 139", "question": "What is Player, when Country is \"United States\", when Place is \"T10\", and when Score is \"68-71=139\"?", "context": "CREATE TABLE table_name_51 (player VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE player = \"vijay singh\"", "question": "What is Score, when Player is \"Vijay Singh\"?", "context": "CREATE TABLE table_name_81 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_7 WHERE to_par = \"\u20132\" AND country = \"wales\"", "question": "Which Player has a To par of \u20132, and a Country of wales?", "context": "CREATE TABLE table_name_7 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE to_par = \"\u20133\" AND player = \"santiago luna\"", "question": "Which Score has a To par of \u20133, and a Player of santiago luna?", "context": "CREATE TABLE table_name_69 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_17 WHERE score = 67 AND country = \"united states\"", "question": "Which Player has a Score of 67 in united states?", "context": "CREATE TABLE table_name_17 (player VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_51 WHERE tournament = \"schenectady, u.s.\"", "question": "What are the Opponents at the Schenectady, U.S. Tournament?", "context": "CREATE TABLE table_name_51 (opponents_in_the_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_29 WHERE date = \"august 20, 2007\"", "question": "What was the outcome of the August 20, 2007 match?", "context": "CREATE TABLE table_name_29 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_2 WHERE date = \"august 20, 2007\"", "question": "What was the score in the August 20, 2007 match?", "context": "CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_20 WHERE date = \"july 13, 2008\"", "question": "Which tournament was held on July 13, 2008?", "context": "CREATE TABLE table_name_20 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_49 WHERE date = \"september 20, 2010\"", "question": "Who was the opponent in the September 20, 2010 match?", "context": "CREATE TABLE table_name_49 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE tournament = \"izmir cup\" AND opponent = \"somdev devvarman\"", "question": "What date was the Izmir Cup in which \u0130lhan played against Somdev Devvarman?", "context": "CREATE TABLE table_name_35 (date VARCHAR, tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_25 WHERE player = \"tom lehman\"", "question": "What years did Tom Lehman win?", "context": "CREATE TABLE table_name_25 (year_s__won VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_26 WHERE year_s__won = \"1995\"", "question": "What was the total To Par for the winner in 1995?", "context": "CREATE TABLE table_name_26 (to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_96 WHERE event = \"100 m hurdles\" AND competition = \"world championships\" AND venue = \"osaka, japan\"", "question": "How many years had a 100 m hurdles event at the world championships in Osaka, Japan?", "context": "CREATE TABLE table_name_96 (year INTEGER, venue VARCHAR, event VARCHAR, competition VARCHAR)"}, {"answer": "SELECT position FROM table_name_8 WHERE venue = \"valencia, spain\"", "question": "What was the position of the event held in Valencia, Spain?", "context": "CREATE TABLE table_name_8 (position VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_98 WHERE venue = \"berlin, germany\" AND event = \"100 m hurdles\"", "question": "What was the earliest year that an event held in Berlin, Germany had a 100 m hurdles event?", "context": "CREATE TABLE table_name_98 (year INTEGER, venue VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_3 WHERE venue = \"valencia, spain\"", "question": "What even was held in Valencia, Spain?", "context": "CREATE TABLE table_name_3 (event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT time FROM table_name_4 WHERE competition = \"tim trophy\" AND opponent = \"juventus\"", "question": "What is the time of the tim trophy competition where juventus was the opponent?", "context": "CREATE TABLE table_name_4 (time VARCHAR, competition VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT competition FROM table_name_27 WHERE date = \"15 august 2008\"", "question": "What is the competition on 15 August 2008?", "context": "CREATE TABLE table_name_27 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_3 WHERE competition = \"friendly match\" AND date = \"24 july 2008\"", "question": "What is the score of the friendly match competition on 24 July 2008?", "context": "CREATE TABLE table_name_3 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT ground FROM table_name_83 WHERE competition = \"tim trophy\" AND time = \"23:00 cet\"", "question": "What is the ground of the tim trophy competition, which had a time of 23:00 cet?", "context": "CREATE TABLE table_name_83 (ground VARCHAR, competition VARCHAR, time VARCHAR)"}, {"answer": "SELECT competition FROM table_name_91 WHERE time = \"23:00 cet\"", "question": "What competition is at 23:00 cet?", "context": "CREATE TABLE table_name_91 (competition VARCHAR, time VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_89 WHERE date = \"march 20, 1994\"", "question": "What is the outcome on March 20, 1994?", "context": "CREATE TABLE table_name_89 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_78 WHERE surface = \"hard\" AND date = \"february 25, 1996\"", "question": "What tournament had a hard surface on February 25, 1996?", "context": "CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_60 WHERE surface = \"hard\" AND opponent_in_the_final = \"hiromi nagano\"", "question": "What is the score in the final with a hard surface and is against Hiromi Nagano?", "context": "CREATE TABLE table_name_60 (score_in_the_final VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_91 WHERE surface = \"clay\" AND date = \"april 21, 1996\"", "question": "What is the total outcome for the clay surface on April 21, 1996?", "context": "CREATE TABLE table_name_91 (outcome VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT aircraft FROM table_name_3 WHERE location = \"s of avion\"", "question": "What aircraft is located at S of Avion?", "context": "CREATE TABLE table_name_3 (aircraft VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(unit) FROM table_name_20 WHERE aircraft = \"f.e.2b\" AND location = \"logeast\"", "question": "What is the Unit for the Aircraft F.e.2b, located in Logeast?", "context": "CREATE TABLE table_name_20 (unit INTEGER, aircraft VARCHAR, location VARCHAR)"}, {"answer": "SELECT official_name FROM table_name_63 WHERE census_ranking = \"1,229 of 5,008\"", "question": "What is the name of the place that has a census ranking of 1,229 of 5,008?", "context": "CREATE TABLE table_name_63 (official_name VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT area_km_2 FROM table_name_38 WHERE official_name = \"sackville\"", "question": "How large, in square kilometers, is Sackville?", "context": "CREATE TABLE table_name_38 (area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT official_name FROM table_name_38 WHERE population < 1 OFFSET 429", "question": "What is the name(s) of the place(s) with a population of less than 1,429?", "context": "CREATE TABLE table_name_38 (official_name VARCHAR, population INTEGER)"}, {"answer": "SELECT score FROM table_name_93 WHERE points = 33", "question": "What score has 33 as the points?", "context": "CREATE TABLE table_name_93 (score VARCHAR, points VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE arena = \"joe louis arena\"", "question": "What date has joe louis arena as the arena?", "context": "CREATE TABLE table_name_53 (date VARCHAR, arena VARCHAR)"}, {"answer": "SELECT competition FROM table_name_4 WHERE date = \"2 june 1992\"", "question": "What competition was played on 2 June 1992?", "context": "CREATE TABLE table_name_4 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE result = \"3-0\" AND competition = \"friendly match\"", "question": "What date was a friendly match played that ended in a 3-0 score?", "context": "CREATE TABLE table_name_74 (date VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE date = \"5 september 2001\"", "question": "What was the score of the match played on 5 September 2001?", "context": "CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_2 WHERE competition = \"friendly match\" AND date = \"2 june 1992\"", "question": "In what stadium was the friendly match on 2 June 1992 played in?", "context": "CREATE TABLE table_name_2 (venue VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE competition = \"1998 fifa world cup qualification\"", "question": "What was the score of the 1998 FIFA World Cup qualification competition?", "context": "CREATE TABLE table_name_25 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE competition = \"welsh rugby union challenge trophy\" AND result = \"34-34\"", "question": "Name the Date has a Competition of welsh rugby union challenge trophy and a Result of 34-34? Question 1", "context": "CREATE TABLE table_name_72 (date VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_56 WHERE nationality___opponent = \"new zealand\"", "question": "Name the Result of new zealand Nationality / Opponent?", "context": "CREATE TABLE table_name_56 (result VARCHAR, nationality___opponent VARCHAR)"}, {"answer": "SELECT nationality___opponent FROM table_name_25 WHERE date = \"10 january 1998\"", "question": "Name Nationality / Opponent on 10 january 1998?", "context": "CREATE TABLE table_name_25 (nationality___opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT ground FROM table_name_25 WHERE date = \"18 january 1998\"", "question": "Name The Ground on 18 january 1998?", "context": "CREATE TABLE table_name_25 (ground VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality___opponent FROM table_name_63 WHERE competition = \"welsh rugby union challenge trophy\" AND result = \"38-29\"", "question": "Name the Nationality / Opponent of the Competition of welsh rugby union challenge trophy and a Result of 38-29?", "context": "CREATE TABLE table_name_63 (nationality___opponent VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_64 WHERE nationality___opponent = \"rosario\"", "question": "Name the Nationality / Opponent of rosario?", "context": "CREATE TABLE table_name_64 (competition VARCHAR, nationality___opponent VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_4 WHERE team_2 = \"universidad nacional\"", "question": "What team 1 has a team 2 of universidad nacional?", "context": "CREATE TABLE table_name_4 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_82 WHERE team_1 = \"harbour view\"", "question": "What team 2 has a team 1 of harbour view?", "context": "CREATE TABLE table_name_82 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_62 WHERE team_2 = \"san francisco\"", "question": "What's the 2nd leg for team 2 san francisco?", "context": "CREATE TABLE table_name_62 (team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_50 WHERE team_1 = \"alajuelense\"", "question": "What's the 1st leg of team 1 alajuelense?", "context": "CREATE TABLE table_name_50 (team_1 VARCHAR)"}, {"answer": "SELECT format FROM table_name_51 WHERE catalog = \"660-51-015\"", "question": "What was the format for catalog 660-51-015?", "context": "CREATE TABLE table_name_51 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_77 WHERE year = \"may 1974\"", "question": "Which region had the year May 1974?", "context": "CREATE TABLE table_name_77 (region VARCHAR, year VARCHAR)"}, {"answer": "SELECT region FROM table_name_17 WHERE year = \"march 10, 1998\"", "question": "Which region had a year March 10, 1998?", "context": "CREATE TABLE table_name_17 (region VARCHAR, year VARCHAR)"}, {"answer": "SELECT first_party FROM table_name_82 WHERE year < 1857 AND first_member = \"lord john hay\"", "question": "What is the first party for Lord John Hay earlier than 1857?", "context": "CREATE TABLE table_name_82 (first_party VARCHAR, year VARCHAR, first_member VARCHAR)"}, {"answer": "SELECT second_member FROM table_name_10 WHERE year > 1790 AND first_member = \"john williams\"", "question": "Who is the second member more recently than 1790 when John Williams is the first member?", "context": "CREATE TABLE table_name_10 (second_member VARCHAR, year VARCHAR, first_member VARCHAR)"}, {"answer": "SELECT second_member FROM table_name_15 WHERE first_party = \"tory\" AND year < 1804 AND first_member = \"henry isherwood\"", "question": "Who is the second member ewarlier than 1804 when Tory Henry Isherwood is the first member?", "context": "CREATE TABLE table_name_15 (second_member VARCHAR, first_member VARCHAR, first_party VARCHAR, year VARCHAR)"}, {"answer": "SELECT second_member FROM table_name_14 WHERE first_member = \"rt hon. edward stanley\"", "question": "Who is the second member when RT Hon. Edward Stanley is the first member?", "context": "CREATE TABLE table_name_14 (second_member VARCHAR, first_member VARCHAR)"}, {"answer": "SELECT second_party FROM table_name_88 WHERE first_party = \"tory\" AND year = 1820", "question": "What is the second party where the first party is Tory and the year is 1820?", "context": "CREATE TABLE table_name_88 (second_party VARCHAR, first_party VARCHAR, year VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE year_s__won = \"1993\"", "question": "Who is the player who won in 1993?", "context": "CREATE TABLE table_name_83 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_68 WHERE finish = \"t71\"", "question": "What years did the player with a t71 finish win?", "context": "CREATE TABLE table_name_68 (year_s__won VARCHAR, finish VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_84 WHERE player = \"payne stewart\"", "question": "What year did player payne stewart win?", "context": "CREATE TABLE table_name_84 (year_s__won VARCHAR, player VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_84 WHERE finish = \"t3\"", "question": "What year did the player with a t3 finish win?", "context": "CREATE TABLE table_name_84 (year_s__won VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_25 WHERE finish = \"t41\"", "question": "What is the lowest total of the player with a t41 finish?", "context": "CREATE TABLE table_name_25 (total INTEGER, finish VARCHAR)"}, {"answer": "SELECT battle FROM table_name_24 WHERE bulgarian_commander = \"gavril radomir\"", "question": "In what Battle was Bulgarian Commander of Gavril Radomir?", "context": "CREATE TABLE table_name_24 (battle VARCHAR, bulgarian_commander VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE result = \"bulgarian victory\" AND battle = \"battle of arcadiopolis\"", "question": "What is the Date of the Bulgarian Victory at the Battle of Arcadiopolis?", "context": "CREATE TABLE table_name_55 (date VARCHAR, result VARCHAR, battle VARCHAR)"}, {"answer": "SELECT bulgarian_commander FROM table_name_41 WHERE battle = \"battle of thessalonica\" AND date = \"autumn 1040\"", "question": "What is the Bulgarian Commander in Autumn 1040 at the Battle of Thessalonica?", "context": "CREATE TABLE table_name_41 (bulgarian_commander VARCHAR, battle VARCHAR, date VARCHAR)"}, {"answer": "SELECT byzantine_commander FROM table_name_44 WHERE result = \"bulgarian victory\" AND battle = \"siege of lovech\"", "question": "What is the Byzantine Commander with a Bulgarian Victory at the Siege of Lovech?", "context": "CREATE TABLE table_name_44 (byzantine_commander VARCHAR, result VARCHAR, battle VARCHAR)"}, {"answer": "SELECT result FROM table_name_85 WHERE battle = \"battle of marcellae\" AND date = \"756\"", "question": "What is the Result of the Battle of Marcellae in 756?", "context": "CREATE TABLE table_name_85 (result VARCHAR, battle VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE result = \"bulgarian victory\" AND bulgarian_commander = \"gavril radomir\"", "question": "What is the date of Gavril Radomir's Bulgarian Victory?", "context": "CREATE TABLE table_name_15 (date VARCHAR, result VARCHAR, bulgarian_commander VARCHAR)"}, {"answer": "SELECT wind FROM table_name_18 WHERE rank < 6 AND location = \"new york city\"", "question": "What was the wind at New York City when the rank was smaller than 6?", "context": "CREATE TABLE table_name_18 (wind VARCHAR, rank VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_94 WHERE location = \"kingston\"", "question": "What was the highest rink for Kingston?", "context": "CREATE TABLE table_name_94 (rank INTEGER, location VARCHAR)"}, {"answer": "SELECT AVG(first_elected) FROM table_name_75 WHERE district = \"south carolina 2\"", "question": "What is the average first elected for the district South Carolina 2?", "context": "CREATE TABLE table_name_75 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_82 WHERE party = \"republican\"", "question": "Who was the first elected for the republican party?", "context": "CREATE TABLE table_name_82 (first_elected VARCHAR, party VARCHAR)"}, {"answer": "SELECT party FROM table_name_91 WHERE district = \"south carolina 2\"", "question": "What party has the South Carolina 2 district?", "context": "CREATE TABLE table_name_91 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT type FROM table_name_46 WHERE name = \"cassano\"", "question": "What is the type for Cassano?", "context": "CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT nat FROM table_name_53 WHERE name = \"diogo\"", "question": "What nationality is Diogo?", "context": "CREATE TABLE table_name_53 (nat VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_79 WHERE transfer_window = \"winter\" AND moving_from = \"roma\"", "question": "What is the name of the player with a winter transfer window moving from Roma?", "context": "CREATE TABLE table_name_79 (name VARCHAR, transfer_window VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT pressure FROM table_name_80 WHERE name = \"ken\"", "question": "What pressure is Ken?", "context": "CREATE TABLE table_name_80 (pressure VARCHAR, name VARCHAR)"}, {"answer": "SELECT round FROM table_name_84 WHERE loser = \"barbara hawcroft\"", "question": "In which round was Barbara Hawcroft the loser?", "context": "CREATE TABLE table_name_84 (round VARCHAR, loser VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_13 WHERE loser = \"nerida gregory\"", "question": "In which year is Nerida Gregory listed as the loser?", "context": "CREATE TABLE table_name_13 (year INTEGER, loser VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_32 WHERE grand_slam = \"australian open\" AND loser = \"misaki doi\"", "question": "In which year did Misaki Doi lose the Australian Open Grand Slam?", "context": "CREATE TABLE table_name_32 (year INTEGER, grand_slam VARCHAR, loser VARCHAR)"}, {"answer": "SELECT AVG(polish_cup) FROM table_name_20 WHERE puchat_ligi > 0", "question": "Which Polish Cup has a Puchat Ligi larger than 0?", "context": "CREATE TABLE table_name_20 (polish_cup INTEGER, puchat_ligi INTEGER)"}, {"answer": "SELECT player FROM table_name_43 WHERE total = 3 AND ekstraklasa < 3 AND uefa_cup = 2", "question": "Which Player has a Total of 3, and an Ekstraklasa smaller than 3, and a UEFA Cup of 2?", "context": "CREATE TABLE table_name_43 (player VARCHAR, uefa_cup VARCHAR, total VARCHAR, ekstraklasa VARCHAR)"}, {"answer": "SELECT MIN(puchat_ligi) FROM table_name_64 WHERE uefa_cup < 2 AND player = \"takesure chinyama\"", "question": "Which Puchat Ligi has a UEFA Cup smaller than 2, and a Player of takesure chinyama?", "context": "CREATE TABLE table_name_64 (puchat_ligi INTEGER, uefa_cup VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(ekstraklasa) FROM table_name_98 WHERE total < 3", "question": "How much Ekstraklasa has a Total smaller than 3?", "context": "CREATE TABLE table_name_98 (ekstraklasa INTEGER, total INTEGER)"}, {"answer": "SELECT SUM(puchat_ligi) FROM table_name_46 WHERE total < 5 AND ekstraklasa > 1", "question": "How much Puchat Ligi has a Total smaller than 5, and an Ekstraklasa larger than 1?", "context": "CREATE TABLE table_name_46 (puchat_ligi INTEGER, total VARCHAR, ekstraklasa VARCHAR)"}, {"answer": "SELECT player FROM table_name_74 WHERE to_par > 11 AND total < 155", "question": "Which player has a to par greater than 11, with a total less than 155?", "context": "CREATE TABLE table_name_74 (player VARCHAR, to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_6 WHERE to_par < 13 AND player = \"wayne grady\"", "question": "What country has a to par less than 13, with wayne grady as the player?", "context": "CREATE TABLE table_name_6 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(points_1) FROM table_name_36 WHERE drawn = 5 AND goal_difference = \"+58\" AND lost > 4", "question": "Which Points 1 has Drawn of 5, and a Goal Difference of +58, and a Lost larger than 4?", "context": "CREATE TABLE table_name_36 (points_1 INTEGER, lost VARCHAR, drawn VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_13 WHERE goals_against > 92", "question": "Which Lost has Goals Against larger than 92?", "context": "CREATE TABLE table_name_13 (lost INTEGER, goals_against INTEGER)"}, {"answer": "SELECT MAX(points_1) FROM table_name_11 WHERE team = \"atherton collieries\" AND position < 8", "question": "Which Points 1 has a Team of atherton collieries, and a Position smaller than 8?", "context": "CREATE TABLE table_name_11 (points_1 INTEGER, team VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_72 WHERE position = 7 AND drawn < 7", "question": "How much Played has a Position of 7, and a Drawn smaller than 7?", "context": "CREATE TABLE table_name_72 (played INTEGER, position VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_5 WHERE points_1 = 51 AND lost > 5", "question": "How much Drawn has Points 1 of 51, and a Lost larger than 5?", "context": "CREATE TABLE table_name_5 (drawn VARCHAR, points_1 VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(introduced) FROM table_name_30 WHERE seating = \"115\"", "question": "When was the aircraft introduced that could seat 115 people?", "context": "CREATE TABLE table_name_30 (introduced INTEGER, seating VARCHAR)"}, {"answer": "SELECT retired FROM table_name_91 WHERE notes = \"replaced by 737-300s\"", "question": "What year was the aircraft retired when it was replaced by 737-300s?", "context": "CREATE TABLE table_name_91 (retired VARCHAR, notes VARCHAR)"}, {"answer": "SELECT aircraft FROM table_name_83 WHERE retired = \"\u2014\" AND introduced = 2004", "question": "What aircraft was introduced in 2004 and has a retired of \u2014?", "context": "CREATE TABLE table_name_83 (aircraft VARCHAR, retired VARCHAR, introduced VARCHAR)"}, {"answer": "SELECT aircraft FROM table_name_88 WHERE seating = \"148/9\"", "question": "Which aircraft has 148/9 seating?", "context": "CREATE TABLE table_name_88 (aircraft VARCHAR, seating VARCHAR)"}, {"answer": "SELECT seating FROM table_name_6 WHERE notes = \"in service\" AND introduced = 2008", "question": "How many people can be seated on the aircraft that was introduced in 2008 and has notes of in service?", "context": "CREATE TABLE table_name_6 (seating VARCHAR, notes VARCHAR, introduced VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_55 WHERE previous_team = \"detroit pistons\"", "question": "What is the nationality of the player who was previously with the Detroit Pistons?", "context": "CREATE TABLE table_name_55 (nationality VARCHAR, previous_team VARCHAR)"}, {"answer": "SELECT career_with_the_franchise FROM table_name_47 WHERE years_of_nba_experience_[a_] < 9 AND pos = \"f/c\" AND previous_team = \"phoenix suns\"", "question": "What is the career with the franchise of the f/c player with fewer than 9 years of NBA experience who previously played for the Phoenix Suns?", "context": "CREATE TABLE table_name_47 (career_with_the_franchise VARCHAR, previous_team VARCHAR, pos VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_79 WHERE home_team = \"bournemouth\"", "question": "What was the tie number when Bournemouth was the home team?", "context": "CREATE TABLE table_name_79 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_83 WHERE home_team = \"norwich city\"", "question": "Who was the away team when the home team was Norwich City?", "context": "CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE home_team = \"wimbledon\"", "question": "On what date was Wimbledon the home team?", "context": "CREATE TABLE table_name_81 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE away_team = \"west ham united\"", "question": "On what date was the away team West Ham United?", "context": "CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE away_team = \"bournemouth\"", "question": "On what date was the away team Bournemouth?", "context": "CREATE TABLE table_name_24 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT district FROM table_name_41 WHERE name = \"abhayapuri south\"", "question": "What district has abhayapuri south as the name?", "context": "CREATE TABLE table_name_41 (district VARCHAR, name VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_69 WHERE gold > 1 AND silver < 3 AND rank < 5", "question": "Which Bronze has a Gold larger than 1, and a Silver smaller than 3, and a Rank smaller than 5?", "context": "CREATE TABLE table_name_69 (bronze VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_90 WHERE gold > 1 AND bronze = 4 AND silver < 1", "question": "Which Rank has a Gold larger than 1, and a Bronze of 4, and a Silver smaller than 1?", "context": "CREATE TABLE table_name_90 (rank INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_91 WHERE gold = 3 AND bronze = 4 AND total > 8", "question": "Which Rank has a Gold of 3, and a Bronze of 4, and a Total larger than 8?", "context": "CREATE TABLE table_name_91 (rank INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_87 WHERE rank < 10 AND silver > 3 AND gold > 3", "question": "How much Total has a Rank smaller than 10, and a Silver larger than 3, and a Gold larger than 3?", "context": "CREATE TABLE table_name_87 (total INTEGER, gold VARCHAR, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_37 WHERE rank = 9 AND silver < 2", "question": "Which Total has a Rank of 9, and a Silver smaller than 2?", "context": "CREATE TABLE table_name_37 (total INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT event FROM table_name_21 WHERE name = \"xu zhilin\"", "question": "What event had Xu Zhilin competing?", "context": "CREATE TABLE table_name_21 (event VARCHAR, name VARCHAR)"}, {"answer": "SELECT sport FROM table_name_26 WHERE name = \"ma yuxi\"", "question": "What sport has Ma Yuxi in it?", "context": "CREATE TABLE table_name_26 (sport VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_36 WHERE first = \"antonio pompa-baldi italy\"", "question": "How many years is Antonio Pompa-Baldi Italy first?", "context": "CREATE TABLE table_name_36 (year VARCHAR, first VARCHAR)"}, {"answer": "SELECT fourth FROM table_name_98 WHERE second = \"anders martinson usa\"", "question": "Who is fourth when Anders Martinson USA is second?", "context": "CREATE TABLE table_name_98 (fourth VARCHAR, second VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_47 WHERE club = \"abuls smiltene\" AND goals_for < 18", "question": "Can you tell me the sum of Wins that has the Club of abuls smiltene, and the Goals smaller than 18?", "context": "CREATE TABLE table_name_47 (wins INTEGER, club VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_42 WHERE goal_difference > -24 AND draws > 7", "question": "Can you tell me the average Wins that has the Goal Difference larger than -24, and the Draws larger than 7?", "context": "CREATE TABLE table_name_42 (wins INTEGER, goal_difference VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_5 WHERE goal_difference < 64 AND played > 30", "question": "Can you tell me the highest Draws that has the Goal Difference smaller than 64, and the Played larger than 30?", "context": "CREATE TABLE table_name_5 (draws INTEGER, goal_difference VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_67 WHERE played < 30", "question": "Can you tell me the highest Points that has the Played smaller than 30?", "context": "CREATE TABLE table_name_67 (points INTEGER, played INTEGER)"}, {"answer": "SELECT AVG(rank) FROM table_name_57 WHERE bronze < 1 AND silver > 1", "question": "What rank was the country with no bronze but at least 1 silver medals?", "context": "CREATE TABLE table_name_57 (rank INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_48 WHERE bronze = 1 AND total = 3 AND rank > 7", "question": "What is the smallest number of gold medals a country with 1 bronze, and a total of 3 medals which is lower than rank 7?", "context": "CREATE TABLE table_name_48 (gold INTEGER, rank VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_23 WHERE total = 7", "question": "What is the smallest number of gold medals a country with 7 medals has?", "context": "CREATE TABLE table_name_23 (gold INTEGER, total VARCHAR)"}, {"answer": "SELECT host_city FROM table_name_35 WHERE games = \"vii\"", "question": "Can you tell me the Host City that has the Games of vii?", "context": "CREATE TABLE table_name_35 (host_city VARCHAR, games VARCHAR)"}, {"answer": "SELECT nominated_work FROM table_name_68 WHERE year > 2006 AND award = \"drama desk award\" AND category = \"outstanding featured actor in a musical\"", "question": "What was the nominated work after 2006, that was awarded the Drama Desk award and the Outstanding featured actor in a musical?", "context": "CREATE TABLE table_name_68 (nominated_work VARCHAR, category VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_25 WHERE category = \"outstanding featured actor in a musical\" AND nominated_work = \"evita\"", "question": "What year was Evita nominated for outstanding featured actor in a musical?", "context": "CREATE TABLE table_name_25 (year VARCHAR, category VARCHAR, nominated_work VARCHAR)"}, {"answer": "SELECT nominated_work FROM table_name_29 WHERE result = \"nominated\" AND award = \"drama league award\" AND year < 2007", "question": "What was the nominated work, nominated for the drama league award before 2007?", "context": "CREATE TABLE table_name_29 (nominated_work VARCHAR, year VARCHAR, result VARCHAR, award VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_2 WHERE date = \"7 august\"", "question": "Who had the pole position on 7 August?", "context": "CREATE TABLE table_name_2 (pole_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_team FROM table_name_6 WHERE circuit = \"zandvoort\"", "question": "Who was the winning team at Zandvoort?", "context": "CREATE TABLE table_name_6 (winning_team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_39 WHERE wins < 6 AND south_west_dfl = \"sandford\"", "question": "Which Losses have Wins smaller than 6, and a South West DFL of sandford?", "context": "CREATE TABLE table_name_39 (losses INTEGER, wins VARCHAR, south_west_dfl VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_17 WHERE draws = 2 AND losses < 4", "question": "How much Against has Draws of 2, and Losses smaller than 4?", "context": "CREATE TABLE table_name_17 (against INTEGER, draws VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_51 WHERE south_west_dfl = \"coleraine\" AND against < 891", "question": "How many Losses have South West DFL of coleraine, and an Against smaller than 891?", "context": "CREATE TABLE table_name_51 (losses VARCHAR, south_west_dfl VARCHAR, against VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_48 WHERE goals_for = 47 AND wins < 14", "question": "What is the lowest played number when goals for is 47, and wins is smaller than 14?", "context": "CREATE TABLE table_name_48 (played INTEGER, goals_for VARCHAR, wins VARCHAR)"}, {"answer": "SELECT club FROM table_name_26 WHERE wins = 13 AND goals_against < 48 AND position = 4", "question": "What Club has 13 wins, goals against less than 48, and a position of 4?", "context": "CREATE TABLE table_name_26 (club VARCHAR, position VARCHAR, wins VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_92 WHERE goals_against = 59 AND goals_for < 24", "question": "What is the lowest position number when goals against was 59, and a goals for is smaller than 24?", "context": "CREATE TABLE table_name_92 (position INTEGER, goals_against VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MAX(goals_against) FROM table_name_12 WHERE points > 31 AND goal_difference < 9 AND wins = 13 AND draws > 6", "question": "What is the highest goals against when points are larger than 31, the goal difference is smaller than 9, wins are 13, and draws are larger than 6?", "context": "CREATE TABLE table_name_12 (goals_against INTEGER, draws VARCHAR, wins VARCHAR, points VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_52 WHERE points > 32 AND wins > 18", "question": "What is the lowest played number when points are larger than 32, and a wins are larger than 18?", "context": "CREATE TABLE table_name_52 (played INTEGER, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_35 WHERE status = \"six nations\" AND date = \"02/03/2002\"", "question": "Can you tell me the highest Against that has the Status of six nations, and the Date of 02/03/2002?", "context": "CREATE TABLE table_name_35 (against INTEGER, status VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_44 WHERE date = \"23/03/2002\"", "question": "Can you tell me the average Against thaylt has the Date of 23/03/2002?", "context": "CREATE TABLE table_name_44 (against INTEGER, date VARCHAR)"}, {"answer": "SELECT population FROM table_name_15 WHERE area = \"11\"", "question": "What is the population of area of 11?", "context": "CREATE TABLE table_name_15 (population VARCHAR, area VARCHAR)"}, {"answer": "SELECT traditional FROM table_name_14 WHERE population = \"44,803\"", "question": "What shows for traditional when the population was 44,803?", "context": "CREATE TABLE table_name_14 (traditional VARCHAR, population VARCHAR)"}, {"answer": "SELECT population FROM table_name_8 WHERE area = \"4,575\"", "question": "What is the population when the area is 4,575?", "context": "CREATE TABLE table_name_8 (population VARCHAR, area VARCHAR)"}, {"answer": "SELECT simplified FROM table_name_13 WHERE density = \"52\"", "question": "What shows for simplified when the density is 52?", "context": "CREATE TABLE table_name_13 (simplified VARCHAR, density VARCHAR)"}, {"answer": "SELECT density FROM table_name_33 WHERE simplified = \"\u5357\u5c71\u533a\"", "question": "What is the density when simplified shows \u5357\u5c71\u533a?", "context": "CREATE TABLE table_name_33 (density VARCHAR, simplified VARCHAR)"}, {"answer": "SELECT pinyin FROM table_name_22 WHERE simplified = \"\u5357\u5c71\u533a\"", "question": "What is the pinyin when the simplified shows \u5357\u5c71\u533a?", "context": "CREATE TABLE table_name_22 (pinyin VARCHAR, simplified VARCHAR)"}, {"answer": "SELECT country FROM table_name_26 WHERE player = \"greg norman\"", "question": "What country does Greg Norman represent?", "context": "CREATE TABLE table_name_26 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_11 WHERE total = 286", "question": "What years won have a total of 286?", "context": "CREATE TABLE table_name_11 (year_s__won VARCHAR, total VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE total = 295", "question": "Which player had a total of 295?", "context": "CREATE TABLE table_name_22 (player VARCHAR, total VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_10 WHERE total = 291", "question": "What is the To par when there was a total of 291?", "context": "CREATE TABLE table_name_10 (to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT years_of_daylight_service FROM table_name_7 WHERE builder = \"alco\"", "question": "What is the year of daylight service when the builder was Alco?", "context": "CREATE TABLE table_name_7 (years_of_daylight_service VARCHAR, builder VARCHAR)"}, {"answer": "SELECT 2006 AS _07_season FROM table_name_64 WHERE team = \"kf fush\u00eb kosova\"", "question": "What is 2006-07 Season, when Team is \"KF Fush\u00eb Kosova\"?", "context": "CREATE TABLE table_name_64 (team VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_40 WHERE total = 145 AND country = \"united states\"", "question": "What is Year(s) Won, when Total is \"145\", and when Country is \"United States\"?", "context": "CREATE TABLE table_name_40 (year_s__won VARCHAR, total VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(to_par) FROM table_name_97 WHERE total < 148 AND year_s__won = \"1959 , 1968 , 1974\"", "question": "What is the lowest To par, when Total is greater than 148, and when Year(s) Won is \"1959 , 1968 , 1974\"?", "context": "CREATE TABLE table_name_97 (to_par INTEGER, total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT country FROM table_name_20 WHERE to_par = 1 AND player = \"seve ballesteros\"", "question": "What is Country, when To par is \"1\", and when Player is \"Seve Ballesteros\"?", "context": "CREATE TABLE table_name_20 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_81 WHERE year_s__won = \"1966 , 1970 , 1978\" AND to_par < 4", "question": "What is the sum of Total, when Year(s) Won is \"1966 , 1970 , 1978\", and when To par is less than 4?", "context": "CREATE TABLE table_name_81 (total INTEGER, year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_19 WHERE total < 148 AND player = \"gary player\"", "question": "What is Country, when Total is less than 148, and when Player is \"Gary Player\"?", "context": "CREATE TABLE table_name_19 (country VARCHAR, total VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_7 WHERE total < 148 AND country = \"south africa\"", "question": "What is To par, when Total is less than 148, and when Country is \"South Africa\"?", "context": "CREATE TABLE table_name_7 (to_par VARCHAR, total VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(age_at_appointment) FROM table_name_58 WHERE portfolio_attachment = \"security\"", "question": "What is the average age at appointment of those attached to security?", "context": "CREATE TABLE table_name_58 (age_at_appointment INTEGER, portfolio_attachment VARCHAR)"}, {"answer": "SELECT distance FROM table_name_59 WHERE date = \"saturday, august 23\"", "question": "What was the distance of the race on saturday, august 23?", "context": "CREATE TABLE table_name_59 (distance VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_70 WHERE distance = \"175.6km\"", "question": "Who was the winner of the race that had a distance of 175.6km?", "context": "CREATE TABLE table_name_70 (winner VARCHAR, distance VARCHAR)"}, {"answer": "SELECT winner FROM table_name_18 WHERE date = \"wednesday, august 27\"", "question": "Who won the race on wednesday, august 27?", "context": "CREATE TABLE table_name_18 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT distance FROM table_name_71 WHERE route = \"maldegem > brussels\"", "question": "What is the distance of the maldegem > brussels route?", "context": "CREATE TABLE table_name_71 (distance VARCHAR, route VARCHAR)"}, {"answer": "SELECT winner FROM table_name_63 WHERE route = \"mechelen > mechelen\"", "question": "Who was the winner of the mechelen > mechelen route?", "context": "CREATE TABLE table_name_63 (winner VARCHAR, route VARCHAR)"}, {"answer": "SELECT imap_shared FROM table_name_93 WHERE web_ui = \"web ui\"", "question": "What IMAP sharing options exist for software with a web UI?", "context": "CREATE TABLE table_name_93 (imap_shared VARCHAR, web_ui VARCHAR)"}, {"answer": "SELECT total FROM table_name_3 WHERE event = \"wc belgrade\" AND rank_points = \"10\"", "question": "What's the total for the wc belgrade event with 10 rank points?", "context": "CREATE TABLE table_name_3 (total VARCHAR, event VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT total FROM table_name_72 WHERE rank_points = \"olympic gold medalist\"", "question": "That's the total for rank points of olympic gold medalist?", "context": "CREATE TABLE table_name_72 (total VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_51 WHERE score_points = \"defending champion\"", "question": "Who's the shooter with score points of defending champion?", "context": "CREATE TABLE table_name_51 (shooter VARCHAR, score_points VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_57 WHERE total = \"25\"", "question": "Who's the shooter with a total of 25?", "context": "CREATE TABLE table_name_57 (shooter VARCHAR, total VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_32 WHERE score_points = \"13\" AND rank_points = \"10\"", "question": "Who's the shooter with 13 score points and 10 rank points?", "context": "CREATE TABLE table_name_32 (shooter VARCHAR, score_points VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_95 WHERE top_goal_scorer = \"khaled msakni (10)\" AND final_standing < 12", "question": "What is the highest points when the top goal scorer was Khaled Msakni (10), and the final standing is less than 12?", "context": "CREATE TABLE table_name_95 (points INTEGER, top_goal_scorer VARCHAR, final_standing VARCHAR)"}, {"answer": "SELECT final_standing FROM table_name_58 WHERE years = \"1981\u201382\"", "question": "What is the final standing in 1981\u201382?", "context": "CREATE TABLE table_name_58 (final_standing VARCHAR, years VARCHAR)"}, {"answer": "SELECT event FROM table_name_76 WHERE position = \"4th\" AND year = 2007", "question": "Which event had 4th place and took place in the year 2007?", "context": "CREATE TABLE table_name_76 (event VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_14 WHERE score = \"4 & 3\" AND winner = \"michael bonallack\"", "question": "What runner-up has 4 & 3 as the score, with michael bonallack as the winner?", "context": "CREATE TABLE table_name_14 (runner_up VARCHAR, score VARCHAR, winner VARCHAR)"}, {"answer": "SELECT venue FROM table_name_83 WHERE score = \"3 & 2\" AND year = \"1965\"", "question": "What venue has 3 & 2 as the score, and 1965 as the year?", "context": "CREATE TABLE table_name_83 (venue VARCHAR, score VARCHAR, year VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_95 WHERE year = \"2008\"", "question": "What runner-up has 2008 as the year?", "context": "CREATE TABLE table_name_95 (runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner FROM table_name_70 WHERE venue = \"royal st george's golf club\" AND year = \"1969\"", "question": "What winner has royal st george's golf club as the venue, and 1969 as the year?", "context": "CREATE TABLE table_name_70 (winner VARCHAR, venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_6 WHERE year = \"1925\"", "question": "What runner-up has 1925 as the year?", "context": "CREATE TABLE table_name_6 (runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_3 WHERE runner_up = \"john davies\" AND winner = \"warren humphreys\"", "question": "What year has John Davies as the runner-up, with warren humphreys as the winner?", "context": "CREATE TABLE table_name_3 (year VARCHAR, runner_up VARCHAR, winner VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_71 WHERE goals = 27", "question": "What country is the player who scored 27 goals from?", "context": "CREATE TABLE table_name_71 (nationality VARCHAR, goals VARCHAR)"}, {"answer": "SELECT years FROM table_name_62 WHERE goals = 27", "question": "For the player that scored 27 goals, what years did he score them?", "context": "CREATE TABLE table_name_62 (years VARCHAR, goals VARCHAR)"}, {"answer": "SELECT finish FROM table_name_33 WHERE total < 282", "question": "In what place(s) did the player(s) with a total less than 282 finish?", "context": "CREATE TABLE table_name_33 (finish VARCHAR, total INTEGER)"}, {"answer": "SELECT finish FROM table_name_94 WHERE total > 284 AND to_par = \"+5\" AND player = \"nick faldo\"", "question": "In what place did Nick Faldo, who had more than 284 points and a to par score of +5, finish?", "context": "CREATE TABLE table_name_94 (finish VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT mandate_end FROM table_name_44 WHERE office = \"prime minister\" AND name_a = \"agathe uwilingiyimana\"", "question": "When did Prime Minister Agathe Uwilingiyimana's mandate end?", "context": "CREATE TABLE table_name_44 (mandate_end VARCHAR, office VARCHAR, name_a VARCHAR)"}, {"answer": "SELECT power_output__kw_ FROM table_name_29 WHERE number_in_class = 5", "question": "What is the power output for class 5?", "context": "CREATE TABLE table_name_29 (power_output__kw_ VARCHAR, number_in_class VARCHAR)"}, {"answer": "SELECT class FROM table_name_75 WHERE power_output__kw_ > 700 AND number_in_class = 48", "question": "Which class has a power output larger than 700 and a class of 48?", "context": "CREATE TABLE table_name_75 (class VARCHAR, power_output__kw_ VARCHAR, number_in_class VARCHAR)"}, {"answer": "SELECT week_8_oct_26 FROM table_name_44 WHERE week_7_oct_19 = \"syarcuse (4-2)\"", "question": "What is the Week 8 result of the team that lost to syarcuse (4-2) in Week 7?", "context": "CREATE TABLE table_name_44 (week_8_oct_26 VARCHAR, week_7_oct_19 VARCHAR)"}, {"answer": "SELECT week_1_sept_7 FROM table_name_15 WHERE preseason = \"colorado state\"", "question": "What is the Week 1 result of Colorado State?", "context": "CREATE TABLE table_name_15 (week_1_sept_7 VARCHAR, preseason VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_95 WHERE district = \"colorado 4\"", "question": "Who is the incumbent for the Colorado 4 district?", "context": "CREATE TABLE table_name_95 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_name_41 WHERE party = \"republican\" AND results = \"retired to run for governor democratic gain\"", "question": "What district is the incumbent Republican and the incumbent retired to run for governor democratic gain?", "context": "CREATE TABLE table_name_41 (district VARCHAR, party VARCHAR, results VARCHAR)"}, {"answer": "SELECT party FROM table_name_66 WHERE district = \"colorado 6\"", "question": "In Colorado 6 district what is the party?", "context": "CREATE TABLE table_name_66 (party VARCHAR, district VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_76 WHERE surface = \"clay\" AND score_in_the_final = \"6\u20131, 3\u20136, 6\u20132\"", "question": "Which tournament had a clay surface and a score of 6\u20131, 3\u20136, 6\u20132?", "context": "CREATE TABLE table_name_76 (tournament VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_name_39 WHERE score_in_the_final = \"4\u20136, 4\u20136\"", "question": "How many days had a score of 4\u20136, 4\u20136?", "context": "CREATE TABLE table_name_39 (date VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_85 WHERE year_won = 1988", "question": "What was the To Par of Tiger Woods who won in 1988?", "context": "CREATE TABLE table_name_85 (to_par VARCHAR, year_won VARCHAR)"}, {"answer": "SELECT team_sites FROM table_name_59 WHERE name = \"microsoft sharepoint\"", "question": "What is the team sites entry for Microsoft Sharepoint?", "context": "CREATE TABLE table_name_59 (team_sites VARCHAR, name VARCHAR)"}, {"answer": "SELECT extranet FROM table_name_72 WHERE intranet = \"yes\" AND name = \"microsoft exchange server\"", "question": "If the intranet entry is Yes, what is the extranet entry for Microsoft Exchange server?", "context": "CREATE TABLE table_name_72 (extranet VARCHAR, intranet VARCHAR, name VARCHAR)"}, {"answer": "SELECT team_sites FROM table_name_53 WHERE public = \"no\" AND developer = \"yes\"", "question": "What is the team sites entry that has a public entry of No and a developer entry of Yes?", "context": "CREATE TABLE table_name_53 (team_sites VARCHAR, public VARCHAR, developer VARCHAR)"}, {"answer": "SELECT name FROM table_name_34 WHERE public = \"yes\" AND personal_sites = \"no\" AND team_sites = \"no\"", "question": "What is the name for the entry that has a public of Yes, a personal sites of No, and a team sites of No?", "context": "CREATE TABLE table_name_34 (name VARCHAR, team_sites VARCHAR, public VARCHAR, personal_sites VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE developer = \"yes\" AND personal_sites = \"no\"", "question": "What is the name of the entry that has a developer entry of Yes and a personal sites entry of No?", "context": "CREATE TABLE table_name_61 (name VARCHAR, developer VARCHAR, personal_sites VARCHAR)"}, {"answer": "SELECT line_name FROM table_name_90 WHERE nimt_junction = \"ohakune junction\"", "question": "What Line has Ohakune Junction as its NIMT?", "context": "CREATE TABLE table_name_90 (line_name VARCHAR, nimt_junction VARCHAR)"}, {"answer": "SELECT line_name FROM table_name_4 WHERE terminus = \"newmarket junction\"", "question": "What line has Newmarket Junction terminus?", "context": "CREATE TABLE table_name_4 (line_name VARCHAR, terminus VARCHAR)"}, {"answer": "SELECT terminus FROM table_name_37 WHERE length = \"3.5km\"", "question": "What terminus is 3.5km in lenght?", "context": "CREATE TABLE table_name_37 (terminus VARCHAR, length VARCHAR)"}, {"answer": "SELECT line_name FROM table_name_7 WHERE nimt_junction = \"huntly\"", "question": "What line has Junction of Huntly NIMT", "context": "CREATE TABLE table_name_7 (line_name VARCHAR, nimt_junction VARCHAR)"}, {"answer": "SELECT AVG(final) FROM table_name_42 WHERE all_around > 19.35 AND total > 40", "question": "What is the average final with an all around greater than 19.35 and a total over 40?", "context": "CREATE TABLE table_name_42 (final INTEGER, all_around VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(final) FROM table_name_26 WHERE place > 2 AND nation = \"finland\" AND all_around > 18.9", "question": "What is the sum of the final for finland, who placed greater than 2 and had an all around larger than 18.9?", "context": "CREATE TABLE table_name_26 (final INTEGER, all_around VARCHAR, place VARCHAR, nation VARCHAR)"}, {"answer": "SELECT place FROM table_name_66 WHERE money___\u00a3__ = \"140,000\" AND score = 68 - 68 - 75 - 68 = 279", "question": "What is the place of the player with \u00a3140,000 and a 68-68-75-68=279 score?", "context": "CREATE TABLE table_name_66 (place VARCHAR, money___\u00a3__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_61 WHERE place = \"t1\" AND player = \"stuart appleby\"", "question": "What is the country of player stuart appleby, who has a t1 place?", "context": "CREATE TABLE table_name_61 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_45 WHERE money___\u00a3__ = \"77,500\" AND player = \"sergio garc\u00eda\"", "question": "What is the place of player sergio garc\u00eda, who has \u00a377,500?", "context": "CREATE TABLE table_name_45 (place VARCHAR, money___\u00a3__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_92 WHERE score = 73 - 70 - 70 - 65 = 278", "question": "What is the to par of the player with a 73-70-70-65=278 score?", "context": "CREATE TABLE table_name_92 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE money___\u00a3__ = \"140,000\"", "question": "Who is the player with \u00a3140,000?", "context": "CREATE TABLE table_name_97 (player VARCHAR, money___\u00a3__ VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE time = \"56.49\"", "question": "What is Date, when Time is \"56.49\"?", "context": "CREATE TABLE table_name_90 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT event FROM table_name_6 WHERE date = \"19 december 2009\"", "question": "What is Event, when Date is \"19 December 2009\"?", "context": "CREATE TABLE table_name_6 (event VARCHAR, date VARCHAR)"}, {"answer": "SELECT time FROM table_name_62 WHERE meet = \"duel in the pool\" AND date = \"19 december 2009\"", "question": "What is Time, when Meet is \"Duel in the Pool\", and when Date is \"19 December 2009\"?", "context": "CREATE TABLE table_name_62 (time VARCHAR, meet VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_72 WHERE event = \"100m butterfly\"", "question": "What is the Location, when Event is \"100m Butterfly\"?", "context": "CREATE TABLE table_name_72 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE meet = \"world championships\" AND nationality = \"united states\" AND time = \"1:46.68\"", "question": "What is Date, when Meet is \"World Championships\", when Nationality is \"United States\", and when Time is \"1:46.68\"?", "context": "CREATE TABLE table_name_86 (date VARCHAR, time VARCHAR, meet VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT event FROM table_name_41 WHERE meet = \"world championships\" AND time = \"20.51\"", "question": "What is Event, when Meet is \"World Championships\", and when Time is \"20.51\"?", "context": "CREATE TABLE table_name_41 (event VARCHAR, meet VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(number_of_households) FROM table_name_30 WHERE median_household_income = \"$31,176\" AND population < 25 OFFSET 607", "question": "What is the highest number of households with a median household income of $31,176, and a population of 25,607?", "context": "CREATE TABLE table_name_30 (number_of_households INTEGER, median_household_income VARCHAR, population VARCHAR)"}, {"answer": "SELECT median_household_income FROM table_name_68 WHERE county = \"cape girardeau\"", "question": "What is the median household income for Cape Girardeau?", "context": "CREATE TABLE table_name_68 (median_household_income VARCHAR, county VARCHAR)"}, {"answer": "SELECT colourist_s FROM table_name_89 WHERE letterer_s = \"albers\" AND story_title = \"broken glass (part 3)\"", "question": "Who is the Colourist that has a Story Title of Broken Glass (part 3) and a Letterer of Albers?", "context": "CREATE TABLE table_name_89 (colourist_s VARCHAR, letterer_s VARCHAR, story_title VARCHAR)"}, {"answer": "SELECT cover_date FROM table_name_59 WHERE story_title = \"spacehikers (part 2)\"", "question": "What is the Cover Date of the Story Title Spacehikers (Part 2)?", "context": "CREATE TABLE table_name_59 (cover_date VARCHAR, story_title VARCHAR)"}, {"answer": "SELECT story_title FROM table_name_60 WHERE letterer_s = \"albers\"", "question": "What is the Story Title that has Albers as the Letterer?", "context": "CREATE TABLE table_name_60 (story_title VARCHAR, letterer_s VARCHAR)"}, {"answer": "SELECT drivers FROM table_name_23 WHERE laps = 133 AND class = \"oc\"", "question": "Who are the drivers with 133 laps in OC class?", "context": "CREATE TABLE table_name_23 (drivers VARCHAR, laps VARCHAR, class VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_62 WHERE class = \"oc\" AND qual_pos = 7", "question": "What are the most laps for the Qual position of 7 in the OC class?", "context": "CREATE TABLE table_name_62 (laps INTEGER, class VARCHAR, qual_pos VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_17 WHERE team = \"perkins engineering\"", "question": "What are Perkins Engineering's fewest laps?", "context": "CREATE TABLE table_name_17 (laps INTEGER, team VARCHAR)"}, {"answer": "SELECT class FROM table_name_48 WHERE qual_pos = 30", "question": "Which class has a Qual position of 30?", "context": "CREATE TABLE table_name_48 (class VARCHAR, qual_pos VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_36 WHERE version = \"1.0\" AND category = \"utilities\" AND developer = \"microsoft\" AND title = \"msn money\"", "question": "What Release date has a Version of 1.0, a Category of utilities, a Developer of microsoft, and a Title of msn money?", "context": "CREATE TABLE table_name_36 (release_date VARCHAR, title VARCHAR, developer VARCHAR, version VARCHAR, category VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_86 WHERE category = \"utilities\" AND developer = \"microsoft\" AND title = \"chord finder\"", "question": "What Release date has a Category of utilities, a Developer of microsoft, and a Title of chord finder?", "context": "CREATE TABLE table_name_86 (release_date VARCHAR, title VARCHAR, category VARCHAR, developer VARCHAR)"}, {"answer": "SELECT developer FROM table_name_12 WHERE release_date = \"2010-12-16\" AND title = \"facebook\"", "question": "What Developer has a Release date of 2010-12-16, and a Title of facebook?", "context": "CREATE TABLE table_name_12 (developer VARCHAR, release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_83 WHERE version = \"1.0.0.3\"", "question": "What Title has a Version of 1.0.0.3?", "context": "CREATE TABLE table_name_83 (title VARCHAR, version VARCHAR)"}, {"answer": "SELECT version FROM table_name_77 WHERE title = \"alarm clock\"", "question": "What Version has a Title of alarm clock?", "context": "CREATE TABLE table_name_77 (version VARCHAR, title VARCHAR)"}, {"answer": "SELECT version FROM table_name_34 WHERE developer = \"dino games\" AND title = \"metronome\"", "question": "What Version has a Developer of dino games, and a Title of metronome?", "context": "CREATE TABLE table_name_34 (version VARCHAR, developer VARCHAR, title VARCHAR)"}, {"answer": "SELECT venue FROM table_name_39 WHERE opposing_teams = \"wales\"", "question": "Where did Wales play?", "context": "CREATE TABLE table_name_39 (venue VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT venue FROM table_name_47 WHERE against = 19", "question": "What venue has 19 against?", "context": "CREATE TABLE table_name_47 (venue VARCHAR, against VARCHAR)"}, {"answer": "SELECT award_ceremony FROM table_name_87 WHERE nominee = \"sarah travis\" AND category = \"best orchestrations\"", "question": "Which Award Ceremony has a Nominee of sarah travis, and a Category of the best orchestrations?", "context": "CREATE TABLE table_name_87 (award_ceremony VARCHAR, nominee VARCHAR, category VARCHAR)"}, {"answer": "SELECT MAX(year_signed) FROM table_name_79 WHERE reason_for_separation = \"\u2020\" AND year_separated = \"1997\"", "question": "What is the most current year signed for separation of \u2020 and a separation year of 1997?", "context": "CREATE TABLE table_name_79 (year_signed INTEGER, reason_for_separation VARCHAR, year_separated VARCHAR)"}, {"answer": "SELECT chinese_name FROM table_name_58 WHERE english_name = \"andy lau\"", "question": "What is the Chinese name for the English name Andy Lau?", "context": "CREATE TABLE table_name_58 (chinese_name VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT year_separated FROM table_name_74 WHERE reason_for_separation = \"capital stopped recording music\" AND english_name = \"wilfred lau\"", "question": "What year was Wilfred Lau separated because Capital stopped recording music?", "context": "CREATE TABLE table_name_74 (year_separated VARCHAR, reason_for_separation VARCHAR, english_name VARCHAR)"}, {"answer": "SELECT english_name FROM table_name_30 WHERE year_signed > 1974 AND chinese_name = \"\u8607\u6c38\u5eb7\"", "question": "What is the English name for the Chinese name of \u8607\u6c38\u5eb7 later than 1974?", "context": "CREATE TABLE table_name_30 (english_name VARCHAR, year_signed VARCHAR, chinese_name VARCHAR)"}, {"answer": "SELECT year_signed FROM table_name_82 WHERE year_separated = \"1987\" AND chinese_name = \"\u8607\u6c38\u5eb7\"", "question": "What was the signed year for the Chinese name \u8607\u6c38\u5eb7 who separated in 1987?", "context": "CREATE TABLE table_name_82 (year_signed VARCHAR, year_separated VARCHAR, chinese_name VARCHAR)"}, {"answer": "SELECT site FROM table_name_44 WHERE date = \"october 7\"", "question": "WHAT IS THE SITE ON OCTOBER 7?", "context": "CREATE TABLE table_name_44 (site VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE rank__number = \"6\"", "question": "WHAT DATE HAD 6 RANK?", "context": "CREATE TABLE table_name_51 (date VARCHAR, rank__number VARCHAR)"}, {"answer": "SELECT opponent_number FROM table_name_37 WHERE date = \"october 7\"", "question": "WHAT OPPONENT WAS ON OCTOBER 7?", "context": "CREATE TABLE table_name_37 (opponent_number VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank__number FROM table_name_48 WHERE result = \"w13-3\"", "question": "WHAT RANK HAD A RESULT OF W13-3?", "context": "CREATE TABLE table_name_48 (rank__number VARCHAR, result VARCHAR)"}, {"answer": "SELECT original_nfl_team FROM table_name_51 WHERE college = \"oregon\" AND pos = \"dt\"", "question": "What is the original NFL team of the College of Oregon DT Player?", "context": "CREATE TABLE table_name_51 (original_nfl_team VARCHAR, college VARCHAR, pos VARCHAR)"}, {"answer": "SELECT player FROM table_name_6 WHERE college = \"iowa state\"", "question": "What Player is from Iowa State?", "context": "CREATE TABLE table_name_6 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT result FROM table_name_35 WHERE attendance = \"77,702\"", "question": "What was the result of the game that had 77,702 people in attendance?", "context": "CREATE TABLE table_name_35 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE opponent = \"indianapolis colts\"", "question": "On what day did the team play the Indianapolis Colts?", "context": "CREATE TABLE table_name_26 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_18 WHERE goals_against < 63 AND team = \"nelson\" AND lost > 16", "question": "What is the average Played, when Goals Against is less than 63, when Team is \"Nelson\", and when Lost is greater than 16?", "context": "CREATE TABLE table_name_18 (played INTEGER, lost VARCHAR, goals_against VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_68 WHERE points_1 = \"41\"", "question": "What is the total number of Goals For, when Points 1 is \"41\"?", "context": "CREATE TABLE table_name_68 (goals_for VARCHAR, points_1 VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_21 WHERE lost > 15 AND team = \"cheadle town\" AND drawn > 8", "question": "What is the lowest Position, when Lost is greater than 15, when Team is Cheadle Town, and when Drawn is greater than 8?", "context": "CREATE TABLE table_name_21 (position INTEGER, drawn VARCHAR, lost VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_75 WHERE points_1 = \"39\" AND goals_against > 49", "question": "What is the lowest Position, when Points 1 is \"39\", and when Goals Against is greater than 49?", "context": "CREATE TABLE table_name_75 (position INTEGER, points_1 VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT season FROM table_name_72 WHERE head_coach = \"jonas kazlauskas\" AND europe = \"champions cup group stage\"", "question": "WHAT SEASON HAD COACH JONAS KAZLAUSKAS AT champions cup group stage?", "context": "CREATE TABLE table_name_72 (season VARCHAR, head_coach VARCHAR, europe VARCHAR)"}, {"answer": "SELECT lkf_cup FROM table_name_69 WHERE europe = \"euroleague group stage\" AND regional_competitions = \"bbl elite division finalist\"", "question": "WHAT IS THE LKF CUP WITH euroleague group stage AND bbl elite division finalist?", "context": "CREATE TABLE table_name_69 (lkf_cup VARCHAR, europe VARCHAR, regional_competitions VARCHAR)"}, {"answer": "SELECT europe FROM table_name_68 WHERE head_coach = \"vainauskas , sakalauskas\" AND regional_competitions = \"nebl finalist\"", "question": "WHAT IS THE ERUPE WITH HEAD COACH vainauskas , sakalauskas AND WITH NEBL FINALIST?", "context": "CREATE TABLE table_name_68 (europe VARCHAR, head_coach VARCHAR, regional_competitions VARCHAR)"}, {"answer": "SELECT australian FROM table_name_79 WHERE examples = \"illyria, cf. cirrhosis\"", "question": "What is the entry for the Australian sound that has an example of illyria, cf. cirrhosis?", "context": "CREATE TABLE table_name_79 (australian VARCHAR, examples VARCHAR)"}, {"answer": "SELECT examples FROM table_name_73 WHERE american = \"\u026a, \u0259\" AND semi_closed_initial_unstressed_vowels = \"y /\u0268/\"", "question": "What is the example for the American of \u026a, \u0259, and a Semi-closed initial unstressed vowels of y /\u0268/?", "context": "CREATE TABLE table_name_73 (examples VARCHAR, american VARCHAR, semi_closed_initial_unstressed_vowels VARCHAR)"}, {"answer": "SELECT field FROM table_name_88 WHERE opponent = \"cannons\" AND result = \"w 16-11\"", "question": "What field is an opponent of cannons and resulted with w 16-11?", "context": "CREATE TABLE table_name_88 (field VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_89 WHERE field = \"texas stadium\"", "question": "what is the result from texas stadium?", "context": "CREATE TABLE table_name_89 (result VARCHAR, field VARCHAR)"}, {"answer": "SELECT field FROM table_name_46 WHERE result = \"w 18-12\"", "question": "What field resulted with w 18-12?", "context": "CREATE TABLE table_name_46 (field VARCHAR, result VARCHAR)"}, {"answer": "SELECT field FROM table_name_63 WHERE result = \"w 18-12\"", "question": "What field had results of w 18-12?", "context": "CREATE TABLE table_name_63 (field VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_1 WHERE goals_for > 48 AND wins < 19 AND goals_against < 44 AND draws > 5", "question": "WHAT ARE THE HIGHEST POINTS WITH GOALS LARGER THAN 48, WINS LESS THAN 19, GOALS AGAINST SMALLER THAN 44, DRAWS LARGER THAN 5?", "context": "CREATE TABLE table_name_1 (points INTEGER, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_73 WHERE wins < 14 AND club = \"sd indauchu\" AND position > 12", "question": "WHAT ARE THE TOTAL NUMBER OF POINTS WITH WINS SMALLER THAN 14, AT SD INDAUCHU, POSITION BIGGER THAN 12?", "context": "CREATE TABLE table_name_73 (points VARCHAR, position VARCHAR, wins VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_9 WHERE draws < 6 AND losses < 7", "question": "WHAT ARE THE GOALS WITH DRAWS SMALLER THAN 6, AND LOSSES SMALLER THAN 7?", "context": "CREATE TABLE table_name_9 (goals_for INTEGER, draws VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(2010) FROM table_name_9 WHERE 2007 > 4.6 AND 2006 = 8.2", "question": "How many 2010s have a 2007 greater than 4.6, and 8.2 as a 2006?", "context": "CREATE TABLE table_name_9 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_21 WHERE 2006 < 6.9 AND 2008 > 1.6 AND 2007 = 2", "question": "What 2010 has a 2006 less than 6.9, a 2008 greater than 1.6, and 2 for 2007?", "context": "CREATE TABLE table_name_21 (Id VARCHAR)"}, {"answer": "SELECT COUNT(2008) FROM table_name_82 WHERE 2006 = 6.9 AND 2007 < 7.1", "question": "How many 2008s have 6.9 as a 2006, with a 2007 less than 7.1?", "context": "CREATE TABLE table_name_82 (Id VARCHAR)"}, {"answer": "SELECT MAX(2010) FROM table_name_80 WHERE 2009 < 6.5 AND 2008 = 0.4 AND 2007 < 0.5", "question": "What is the highest 2010 that has a 2009 less than 6.5, 0.4 as the 2008, with a 2007 less than 0.5?", "context": "CREATE TABLE table_name_80 (Id VARCHAR)"}, {"answer": "SELECT SUM(2007) FROM table_name_71 WHERE 2006 = 0.2 AND 2010 < 0.1", "question": "How many 2007s have 0.2 as a 2006, with a 2010 less than 0.1?", "context": "CREATE TABLE table_name_71 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_41 WHERE outcome = \"runner-up\" AND score = \"4\u20136, 3\u20136\"", "question": "What Tournament has an Outcome of runner-up, and a Score of 4\u20136, 3\u20136?", "context": "CREATE TABLE table_name_41 (tournament VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_18 WHERE date = \"1 september 2008\"", "question": "What Surface has a Date of 1 september 2008?", "context": "CREATE TABLE table_name_18 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE opponent = \"nina bratchikova\"", "question": "What Score has an Opponent of nina bratchikova?", "context": "CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_61 WHERE tournament = \"pune, india\"", "question": "What Surface has a Tournament of pune, india?", "context": "CREATE TABLE table_name_61 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_64 WHERE date = \"20 december 2010\"", "question": "What Tournament has a Date of 20 december 2010?", "context": "CREATE TABLE table_name_64 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_6 WHERE score = \"5\u20137, 2\u20136\"", "question": "What Tournament has a Score of 5\u20137, 2\u20136?", "context": "CREATE TABLE table_name_6 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_7 WHERE score = 71 - 70 = 141", "question": "Which Place has a Score of 71-70=141?", "context": "CREATE TABLE table_name_7 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_76 WHERE score = 69 - 66 = 135", "question": "Which Country has a Score of 69-66=135?", "context": "CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_33 WHERE to_par = \"\u20139\"", "question": "Which Country has a To par of \u20139?", "context": "CREATE TABLE table_name_33 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_14 WHERE country = \"united states\" AND score = 71 - 70 = 141", "question": "Which To par has a Country of united states, and a Score of 71-70=141?", "context": "CREATE TABLE table_name_14 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_5 WHERE to_par = \"\u20135\" AND country = \"england\"", "question": "Which Player has a To par of \u20135, and a Country of england?", "context": "CREATE TABLE table_name_5 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT category FROM table_name_89 WHERE award = \"monte carlo tv festival awards\" AND year > 2010", "question": "Which Category has an Award of monte carlo tv festival awards, and a Year larger than 2010?", "context": "CREATE TABLE table_name_89 (category VARCHAR, award VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_42 WHERE result = \"nominated\"", "question": "How many years have a Result of nominated?", "context": "CREATE TABLE table_name_42 (year VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_82 WHERE category = \"outstanding actor (drama)\"", "question": "Which Result has a Category of outstanding actor (drama)?", "context": "CREATE TABLE table_name_82 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT result FROM table_name_45 WHERE award = \"virgin media tv awards\"", "question": "Which Result has an Award of virgin media tv awards?", "context": "CREATE TABLE table_name_45 (result VARCHAR, award VARCHAR)"}, {"answer": "SELECT prize_money FROM table_name_60 WHERE round = \"second round qualifying\"", "question": "What is the prize money for the second round qualifying that is listed?", "context": "CREATE TABLE table_name_60 (prize_money VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_83 WHERE outcome = \"runner-up\" AND championship = \"indian wells\"", "question": "How many years have runner-up as the outcome, and indian wells as the championship?", "context": "CREATE TABLE table_name_83 (year INTEGER, outcome VARCHAR, championship VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE year = 2000", "question": "What score has 2000 as the year?", "context": "CREATE TABLE table_name_80 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT surface FROM table_name_63 WHERE championship = \"indian wells\" AND outcome = \"winner\"", "question": "What surface has indian wells as the championship, with winner as the outcome?", "context": "CREATE TABLE table_name_63 (surface VARCHAR, championship VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_16 WHERE to_par > 12", "question": "Which average money has a To par larger than 12?", "context": "CREATE TABLE table_name_16 (money___ INTEGER, to_par INTEGER)"}, {"answer": "SELECT country FROM table_name_18 WHERE to_par < 6 AND money___$__ > 700 AND score = 69 - 73 - 70 - 71 = 283", "question": "Which Country has a To par smaller than 6, and a Money ($) larger than 700, and a Score of 69-73-70-71=283?", "context": "CREATE TABLE table_name_18 (country VARCHAR, to_par VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_76 WHERE place = \"t10\" AND player = \"denny shute\" AND to_par > 12", "question": "Which average money has a Place of t10, and a Player of denny shute, and a To par larger than 12?", "context": "CREATE TABLE table_name_76 (money___ INTEGER, to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_93 WHERE money___$__ = 0 AND place = \"t10\"", "question": "Which Country has a Money ($) of 0, and a Place of t10?", "context": "CREATE TABLE table_name_93 (country VARCHAR, money___$__ VARCHAR, place VARCHAR)"}, {"answer": "SELECT MAX(flap) FROM table_name_97 WHERE bike = \"honda nsr500\" AND race > 16", "question": "What is the highest FLap by a Honda NSR500 bike after Race 16?", "context": "CREATE TABLE table_name_97 (flap INTEGER, bike VARCHAR, race VARCHAR)"}, {"answer": "SELECT COUNT(tonnage__grt_) FROM table_name_8 WHERE nationality = \"united kingdom\" AND date = \"27 june 1941\"", "question": "How much tonnage Tonnage (GRT) has a Nationality of united kingdom, and a Date of 27 june 1941?", "context": "CREATE TABLE table_name_8 (tonnage__grt_ VARCHAR, nationality VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_39 WHERE date = \"8 may 1942\"", "question": "Which Nationality has a Date of 8 may 1942?", "context": "CREATE TABLE table_name_39 (nationality VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_39 WHERE nationality = \"canada\" AND draft < 1973", "question": "What is Canada's highest round before 1973?", "context": "CREATE TABLE table_name_39 (round INTEGER, nationality VARCHAR, draft VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_17 WHERE title_of_work = \"saber\" AND category = \"best action\"", "question": "What year was The Saber nominated for best action?", "context": "CREATE TABLE table_name_17 (year INTEGER, title_of_work VARCHAR, category VARCHAR)"}, {"answer": "SELECT award FROM table_name_93 WHERE year < 2013 AND title_of_work = \"saber\" AND category = \"best action\"", "question": "What was awarded before 2013 to the Saber in the category of Best Action?", "context": "CREATE TABLE table_name_93 (award VARCHAR, category VARCHAR, year VARCHAR, title_of_work VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE plant_patent_number = \"us plant patent 12098\"", "question": "What date had the patent number US plant patent 12098?", "context": "CREATE TABLE table_name_97 (date VARCHAR, plant_patent_number VARCHAR)"}, {"answer": "SELECT mutated_from FROM table_name_39 WHERE plant_patent_number = \"us plant patent 9645\"", "question": "What's the mutated having a patent number of US plant patent 9645?", "context": "CREATE TABLE table_name_39 (mutated_from VARCHAR, plant_patent_number VARCHAR)"}, {"answer": "SELECT plant_patent_number FROM table_name_63 WHERE habit = \"standard\" AND mutated_from = \"yakata 7001\"", "question": "What's the patent number when it was mutated from Yakata 7001 and a standard habit?", "context": "CREATE TABLE table_name_63 (plant_patent_number VARCHAR, habit VARCHAR, mutated_from VARCHAR)"}, {"answer": "SELECT plant_patent_number FROM table_name_21 WHERE \"inventor\" = \"fukuda\"", "question": "What's the patent number of Fukuda?", "context": "CREATE TABLE table_name_21 (plant_patent_number VARCHAR)"}, {"answer": "SELECT \"inventor\" FROM table_name_2 WHERE habit = \"spur\" AND pattern = \"stripe\" AND mutated_from = \"redsport type 2\"", "question": "Who's the inventor when it was mutated from Redsport Type 2, has a stripe pattern and a spur habit?", "context": "CREATE TABLE table_name_2 (mutated_from VARCHAR, habit VARCHAR, pattern VARCHAR)"}, {"answer": "SELECT mutated_from FROM table_name_19 WHERE assignee = \"auvil\"", "question": "What's the mutated of Auvil?", "context": "CREATE TABLE table_name_19 (mutated_from VARCHAR, assignee VARCHAR)"}, {"answer": "SELECT model FROM table_name_37 WHERE top_speed = \"231km/h (143mph)\"", "question": "Which model has a top speed of 231km/h (143mph)?", "context": "CREATE TABLE table_name_37 (model VARCHAR, top_speed VARCHAR)"}, {"answer": "SELECT 0 AS _100km_h__62mph_ FROM table_name_26 WHERE model = \"slk200k\" AND top_speed = \"236km/h (147mph)\"", "question": "How fast can the SLK200K, with a top speed of 236km/h (147mph), accelerate to 100km/h (62mph)?", "context": "CREATE TABLE table_name_26 (model VARCHAR, top_speed VARCHAR)"}, {"answer": "SELECT 0 AS _100km_h__62mph_ FROM table_name_68 WHERE top_speed = \"208km/h (129mph)\"", "question": "What is the 0\u2013100km/h (62mph) acceleration of the model with a top speed of 208km/h (129mph)?", "context": "CREATE TABLE table_name_68 (top_speed VARCHAR)"}, {"answer": "SELECT top_speed FROM table_name_4 WHERE model = \"slk200k\" AND power = \"122kw (163hp)\"", "question": "What is the top speed of the SLK200K that produces 122kw (163hp)?", "context": "CREATE TABLE table_name_4 (top_speed VARCHAR, model VARCHAR, power VARCHAR)"}, {"answer": "SELECT latin FROM table_name_80 WHERE greek = \"\u03bc\"", "question": "What is the Latin term for the Greek symbol \u03bc?", "context": "CREATE TABLE table_name_80 (latin VARCHAR, greek VARCHAR)"}, {"answer": "SELECT role FROM table_name_78 WHERE closing_broadway_cast = \"adam grupper\"", "question": "Which role had a closing broadway cast of Adam Grupper?", "context": "CREATE TABLE table_name_78 (role VARCHAR, closing_broadway_cast VARCHAR)"}, {"answer": "SELECT original_us_tour_cast FROM table_name_75 WHERE original_broadway_cast = \"kevin chamberlin\"", "question": "What was the original US Tour cast when the original broadway was Kevin Chamberlin?", "context": "CREATE TABLE table_name_75 (original_us_tour_cast VARCHAR, original_broadway_cast VARCHAR)"}, {"answer": "SELECT original_nonequity_tour_cast FROM table_name_49 WHERE original_broadway_cast = \"kevin chamberlin\"", "question": "What was the original nonequity tour when the original broadway was Kevin Chamberlin?", "context": "CREATE TABLE table_name_49 (original_nonequity_tour_cast VARCHAR, original_broadway_cast VARCHAR)"}, {"answer": "SELECT role FROM table_name_8 WHERE original_broadway_cast = \"adam riegler\"", "question": "What was the role when the original broadway was Adam Riegler?", "context": "CREATE TABLE table_name_8 (role VARCHAR, original_broadway_cast VARCHAR)"}, {"answer": "SELECT AVG(international) FROM table_name_78 WHERE domestic = 669 AND year < 2005", "question": "What is the number for the international with 669 domestic earlier than 2005?", "context": "CREATE TABLE table_name_78 (international INTEGER, domestic VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE date = \"14 march 2004\"", "question": "What was the score on 14 march 2004?", "context": "CREATE TABLE table_name_39 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT season FROM table_name_75 WHERE winners = \"hibernian\" AND finalists = \"kilmarnock\"", "question": "In what season was Kilmarnock a finalist and Hibernian the winner?", "context": "CREATE TABLE table_name_75 (season VARCHAR, winners VARCHAR, finalists VARCHAR)"}, {"answer": "SELECT finalists FROM table_name_53 WHERE season = \"1972\u201373\"", "question": "Who were the finalists in the 1972\u201373 season?", "context": "CREATE TABLE table_name_53 (finalists VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_21 WHERE score = \"2\u20131\" AND winners = \"rangers\"", "question": "In which season did the Rangers win with a score of 2\u20131?", "context": "CREATE TABLE table_name_21 (season VARCHAR, score VARCHAR, winners VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE winners = \"motherwell\"", "question": "When did Motherwell win?", "context": "CREATE TABLE table_name_15 (date VARCHAR, winners VARCHAR)"}, {"answer": "SELECT MIN(burglary) FROM table_name_90 WHERE forcible_rape = \"39.1\" AND motor_vehicle_theft < 568.8", "question": "What is the smallest rate of burglary when forcible rape is 39.1 and motor vehicle theft is less than 568.8?", "context": "CREATE TABLE table_name_90 (burglary INTEGER, forcible_rape VARCHAR, motor_vehicle_theft VARCHAR)"}, {"answer": "SELECT SUM(murder_and_non_negligent_manslaughter) FROM table_name_86 WHERE larceny_theft = \"3,693.9\" AND burglary > 1 OFFSET 027.0", "question": "What is the total rate of murder and non-negligent manslaughter when larceny-theft is 3,693.9 and burglary is more than 1,027.0?", "context": "CREATE TABLE table_name_86 (murder_and_non_negligent_manslaughter INTEGER, larceny_theft VARCHAR, burglary VARCHAR)"}, {"answer": "SELECT name FROM table_name_80 WHERE district = \"total:\"", "question": "What is the name for district total:?", "context": "CREATE TABLE table_name_80 (name VARCHAR, district VARCHAR)"}, {"answer": "SELECT AVG(number_of_electorates__2009_) FROM table_name_6 WHERE name = \"modi nagar\"", "question": "What is the electorates in 2009 for Modi Nagar?", "context": "CREATE TABLE table_name_6 (number_of_electorates__2009_ INTEGER, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE match_day > 33 AND date = \"12 may\"", "question": "Who was the opponent on 12 May, when the match day was more than 33?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, match_day VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(issue_date) FROM table_name_6 WHERE highest_position = 3", "question": "What is the largest issue date for an album that reached position of 3?", "context": "CREATE TABLE table_name_6 (issue_date INTEGER, highest_position VARCHAR)"}, {"answer": "SELECT record FROM table_name_66 WHERE date = \"march 16\"", "question": "What is the record on March 16?", "context": "CREATE TABLE table_name_66 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_51 WHERE date = \"january 23\"", "question": "What was the score on January 23?", "context": "CREATE TABLE table_name_51 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_17 WHERE total = 157", "question": "How many strokes off par was the player who scored 157?", "context": "CREATE TABLE table_name_17 (to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(to_par) FROM table_name_96 WHERE year_s__won = \"1977\" AND total > 155", "question": "Which player who won in 1977 and scored great than 155 was the closest to par?", "context": "CREATE TABLE table_name_96 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_88 WHERE to_par = 11", "question": "What country was the player who was 11 off par from?", "context": "CREATE TABLE table_name_88 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_90 WHERE tie_no = \"16\"", "question": "What was the Home team in Tie no 16?", "context": "CREATE TABLE table_name_90 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE tie_no = \"9\"", "question": "What is the Date of Tie no 9?", "context": "CREATE TABLE table_name_61 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_4 WHERE tie_no = \"2\"", "question": "What is the Score in Tie 2?", "context": "CREATE TABLE table_name_4 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_98 WHERE home_team = \"scarborough\"", "question": "What is the Tie no when Scarborough is the Home team?", "context": "CREATE TABLE table_name_98 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_75 WHERE score = \"2\u20132\" AND away_team = \"swansea city\"", "question": "What is the Tie no when Swansea City is the Away team with a Score of 2\u20132?", "context": "CREATE TABLE table_name_75 (tie_no VARCHAR, score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT name FROM table_name_50 WHERE constituency_number = \"5\"", "question": "What is the name of constituency 5?", "context": "CREATE TABLE table_name_50 (name VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT label FROM table_name_16 WHERE date_of_release = \"september 20, 2005\"", "question": "What label is released on September 20, 2005?", "context": "CREATE TABLE table_name_16 (label VARCHAR, date_of_release VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_13 WHERE all_around = 10 AND rope > 10", "question": "What is the lowest total with an all around of 10 and a rope higher than 10?", "context": "CREATE TABLE table_name_13 (total INTEGER, all_around VARCHAR, rope VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_56 WHERE name = \"bianka panova\" AND place < 1", "question": "What is Bianka Panova's highest total with lower than place 1?", "context": "CREATE TABLE table_name_56 (total INTEGER, name VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_5 WHERE rope < 9.8 AND name = \"milena reljin\"", "question": "What is Milena Reljin's place with a smaller than 9.8 rope?", "context": "CREATE TABLE table_name_5 (place VARCHAR, rope VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_62 WHERE record = \"24-23\"", "question": "What is the highest game with a 24-23 record?", "context": "CREATE TABLE table_name_62 (game INTEGER, record VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_32 WHERE record = \"1-0\" AND hornets_score > 100", "question": "What is the highest game with a 1-0 record, and the Hornets scored more than 100?", "context": "CREATE TABLE table_name_32 (game INTEGER, record VARCHAR, hornets_score VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_63 WHERE name = \"daniel moro\"", "question": "When was Daniel Moro born?", "context": "CREATE TABLE table_name_63 (date_of_birth VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE money___$__ = 450", "question": "What was the score for the player than won $450?", "context": "CREATE TABLE table_name_64 (score VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT place FROM table_name_21 WHERE money___$__ = 350", "question": "What place did the player that took won $350 finish in?", "context": "CREATE TABLE table_name_21 (place VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT player FROM table_name_53 WHERE score = 71 - 73 - 68 - 75 = 287", "question": "Which player had a score of 71-73-68-75=287?", "context": "CREATE TABLE table_name_53 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT year FROM table_name_93 WHERE name = \"dong shihou, 29 (\u8463\u4e16\u4faf)\"", "question": "What is Year, when Name is \"Dong Shihou, 29 (\u8463\u4e16\u4faf)\"?", "context": "CREATE TABLE table_name_93 (year VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_23 WHERE location = \"dz\"", "question": "What is Name, when Location is \"DZ\"?", "context": "CREATE TABLE table_name_23 (name VARCHAR, location VARCHAR)"}, {"answer": "SELECT injured FROM table_name_98 WHERE date = \"09.15 sep. 15\"", "question": "What is Injured, when Date is \"09.15 Sep. 15\"?", "context": "CREATE TABLE table_name_98 (injured VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE name = \"guay, albert , 32\"", "question": "What is Date, when Name is \"Guay, Albert , 32\"?", "context": "CREATE TABLE table_name_48 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_7 WHERE rider = \"fonsi nieto\"", "question": "What is the highest grid for rider Fonsi Nieto?", "context": "CREATE TABLE table_name_7 (grid INTEGER, rider VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_2 WHERE time = \"+7.951\"", "question": "What was the total number of Laps for the rider whose time was +7.951?", "context": "CREATE TABLE table_name_2 (laps VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_37 WHERE rider = \"shuhei aoyama\" AND grid > 24", "question": "What was the highest number of laps for rider Shuhei Aoyama in a grid higher than 24?", "context": "CREATE TABLE table_name_37 (laps INTEGER, rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT grid FROM table_name_75 WHERE bike = \"honda cbr1000rr\" AND rider = \"russell holland\"", "question": "What was the grid for rider Russell Holland, riding a Honda CBR1000rr?", "context": "CREATE TABLE table_name_75 (grid VARCHAR, bike VARCHAR, rider VARCHAR)"}, {"answer": "SELECT rider FROM table_name_46 WHERE laps = 14 AND grid > 23 AND bike = \"honda cbr1000rr\" AND time = \"+1'04.877\"", "question": "Who was the rider who went 14 laps on a Honda CBR1000rr, with a time of +1'04.877 on a grid larger than 23?", "context": "CREATE TABLE table_name_46 (rider VARCHAR, time VARCHAR, bike VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_90 WHERE award = \"drama desk award\" AND nominated_work = \"the mineola twins\"", "question": "What is the earliest year with a Drama Desk award when the Mineola Twins was a nominated work?", "context": "CREATE TABLE table_name_90 (year INTEGER, award VARCHAR, nominated_work VARCHAR)"}, {"answer": "SELECT nominated_work FROM table_name_67 WHERE category = \"best performance by a leading actress in a play\" AND year < 2007", "question": "Which nominated work is in the category of best performance by a leading actress in a play earlier than 2007?", "context": "CREATE TABLE table_name_67 (nominated_work VARCHAR, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_54 WHERE nominated_work = \"the mineola twins\" AND category = \"outstanding actress in a play\" AND award = \"drama desk award\"", "question": "What is the most recent year that the Mineola Twins was nominated for outstanding actress in a play and a Drama Desk award?", "context": "CREATE TABLE table_name_54 (year INTEGER, award VARCHAR, nominated_work VARCHAR, category VARCHAR)"}, {"answer": "SELECT result FROM table_name_6 WHERE award = \"outer critics circle award\" AND year < 2004", "question": "What is the result for the Outer Critics Circle award earlier than 2004?", "context": "CREATE TABLE table_name_6 (result VARCHAR, award VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_62 WHERE nominated_work = \"the house of blue leaves\" AND category = \"outstanding actress in a play\"", "question": "In what year was The House of Blue Leaves nominated for outstanding actress in a play?", "context": "CREATE TABLE table_name_62 (year INTEGER, nominated_work VARCHAR, category VARCHAR)"}, {"answer": "SELECT country FROM table_name_75 WHERE total < 284", "question": "Which Country has a Total smaller than 284?", "context": "CREATE TABLE table_name_75 (country VARCHAR, total INTEGER)"}, {"answer": "SELECT to_par FROM table_name_15 WHERE year_s__won = \"1983\"", "question": "Which To par  has a Year(s) won of 1983?", "context": "CREATE TABLE table_name_15 (to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_53 WHERE player = \"dave stockton\"", "question": "How many Total has a Player of dave stockton?", "context": "CREATE TABLE table_name_53 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_73 WHERE year = 1973 AND surface = \"clay\"", "question": "What was the result in 1973 when the surface was clay?", "context": "CREATE TABLE table_name_73 (outcome VARCHAR, year VARCHAR, surface VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_25 WHERE year = 1975", "question": "What was the outcome in 1975?", "context": "CREATE TABLE table_name_25 (outcome VARCHAR, year VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_84 WHERE surface = \"clay\" AND partner = \"margaret court\" AND year = 1975", "question": "Who was Margaret Court's opponent on clay in 1975?", "context": "CREATE TABLE table_name_84 (opponents VARCHAR, year VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_90 WHERE central_murray = \"tooleybuc manangatang\" AND wins < 13", "question": "What is the number of against when Central Murray is Tooleybuc Manangatang and there are fewer than 13 wins?", "context": "CREATE TABLE table_name_90 (against INTEGER, central_murray VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(byes) FROM table_name_84 WHERE draws < 0", "question": "How many byes when the draws are fewer than 0?", "context": "CREATE TABLE table_name_84 (byes INTEGER, draws INTEGER)"}, {"answer": "SELECT SUM(byes) FROM table_name_27 WHERE central_murray = \"woorineen\" AND losses > 13", "question": "What is the byes for Woorineen when losses are more than 13?", "context": "CREATE TABLE table_name_27 (byes INTEGER, central_murray VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_7 WHERE losses = 4 AND against < 1281", "question": "How many wins when there are 4 losses and against are fewer than 1281?", "context": "CREATE TABLE table_name_7 (wins INTEGER, losses VARCHAR, against VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_24 WHERE losses = 11 AND wins < 5", "question": "How many against when losses are 11 and wins are fewer than 5?", "context": "CREATE TABLE table_name_24 (against INTEGER, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE to_par = \"\u20137\" AND country = \"spain\"", "question": "which Player has a To par of \u20137, and a Country of spain?", "context": "CREATE TABLE table_name_67 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT doctor FROM table_name_40 WHERE published = \"june 2003\"", "question": "What doctor published on June 2003?", "context": "CREATE TABLE table_name_40 (doctor VARCHAR, published VARCHAR)"}, {"answer": "SELECT title FROM table_name_99 WHERE doctor = \"1st\" AND published = \"november 2001\"", "question": "What title was published on November 2001 and has a 1st Doctor?", "context": "CREATE TABLE table_name_99 (title VARCHAR, doctor VARCHAR, published VARCHAR)"}, {"answer": "SELECT title FROM table_name_74 WHERE doctor = \"8th\" AND published = \"january 2003\"", "question": "What is the title of the 8th doctor published in January 2003?", "context": "CREATE TABLE table_name_74 (title VARCHAR, doctor VARCHAR, published VARCHAR)"}, {"answer": "SELECT companion_s_ FROM table_name_7 WHERE author = \"dave stone\"", "question": "What is the companion for the author Dave Stone?", "context": "CREATE TABLE table_name_7 (companion_s_ VARCHAR, author VARCHAR)"}, {"answer": "SELECT player FROM table_name_29 WHERE year_s__won = \"1989\"", "question": "What Player won the PGA in 1989?", "context": "CREATE TABLE table_name_29 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT player FROM table_name_42 WHERE country = \"northern ireland\"", "question": "Which player is from Northern Ireland?", "context": "CREATE TABLE table_name_42 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE score = 69 - 68 - 68 = 205", "question": "What player has a score of 69-68-68=205?", "context": "CREATE TABLE table_name_43 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_90 WHERE attendance > 63 OFFSET 369", "question": "Which Week has an Attendance larger than 63,369?", "context": "CREATE TABLE table_name_90 (week INTEGER, attendance INTEGER)"}, {"answer": "SELECT result FROM table_name_43 WHERE date = \"september 26\"", "question": "What was the result on september 26?", "context": "CREATE TABLE table_name_43 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_71 WHERE game_site = \"oakland-alameda county coliseum\" AND attendance > 52 OFFSET 169", "question": "Which Week has a Game site of oakland-alameda county coliseum, and an Attendance larger than 52,169?", "context": "CREATE TABLE table_name_71 (week INTEGER, game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT player FROM table_name_80 WHERE score = 68 - 71 = 139", "question": "What is Player, when Score is \"68-71=139\"?", "context": "CREATE TABLE table_name_80 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_99 WHERE player = \"tom watson\"", "question": "What is Country, when Player is \"Tom Watson\"?", "context": "CREATE TABLE table_name_99 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_64 WHERE date = \"08/06/1985\"", "question": "How many against on the date of  08/06/1985?", "context": "CREATE TABLE table_name_64 (against INTEGER, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_80 WHERE date = \"30/03/1985\"", "question": "What is the venue for the match on 30/03/1985?", "context": "CREATE TABLE table_name_80 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT status FROM table_name_19 WHERE against = 24", "question": "What is the status of the match with 24 against?", "context": "CREATE TABLE table_name_19 (status VARCHAR, against VARCHAR)"}, {"answer": "SELECT opposing_teams FROM table_name_76 WHERE status = \"second test\"", "question": "Who was the opposing team when the status is second test?", "context": "CREATE TABLE table_name_76 (opposing_teams VARCHAR, status VARCHAR)"}, {"answer": "SELECT status FROM table_name_81 WHERE against > 13 AND opposing_teams = \"wales\"", "question": "What is the status when Wales is the opposing team and there are more than 13 against?", "context": "CREATE TABLE table_name_81 (status VARCHAR, against VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT MIN(number_of_households) FROM table_name_77 WHERE median_family_income = \"$41,778\" AND population > 38 OFFSET 319", "question": "What is the lowest number of households for the entry with a median income of $41,778 and a population greater than 38,319?", "context": "CREATE TABLE table_name_77 (number_of_households INTEGER, median_family_income VARCHAR, population VARCHAR)"}, {"answer": "SELECT church FROM table_name_71 WHERE stops = \"27\"", "question": "Which Church has 27 stops?", "context": "CREATE TABLE table_name_71 (church VARCHAR, stops VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_12 WHERE round = \"round 6\"", "question": "Who is the opponent(s) in round 6?", "context": "CREATE TABLE table_name_12 (opponents VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_81 WHERE sport = \"soccer\" AND college = \"virginia\"", "question": "In what year was the winner a soccer player from Virginia?", "context": "CREATE TABLE table_name_81 (year INTEGER, sport VARCHAR, college VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_75 WHERE winner = \"morgan brian\"", "question": "In what year did Morgan Brian win?", "context": "CREATE TABLE table_name_75 (year INTEGER, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_name_63 WHERE college = \"connecticut\" AND hometown = \"north syracuse, ny\"", "question": "Who is the winner who attended college at Connecticut and is from North Syracuse, NY?", "context": "CREATE TABLE table_name_63 (winner VARCHAR, college VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_33 WHERE college = \"usc\"", "question": "What is the hometown of the player who went to college at USC?", "context": "CREATE TABLE table_name_33 (hometown VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_42 WHERE against = 1547 AND wins > 3", "question": "What is the lowest Draws, when Against is \"1547\", and when Wins is greater than 3?", "context": "CREATE TABLE table_name_42 (draws INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_70 WHERE losses = 6 AND draws > 0", "question": "What is the total number of Wins, when Losses is \"6\", and when Draws is greater than \"0\"?", "context": "CREATE TABLE table_name_70 (wins VARCHAR, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_6 WHERE byes < 2", "question": "What is the lowest Draws, when Byes is less than 2?", "context": "CREATE TABLE table_name_6 (draws INTEGER, byes INTEGER)"}, {"answer": "SELECT COUNT(draws) FROM table_name_21 WHERE against = 1134 AND byes < 2", "question": "What is the total number of Draws, when Against is \"1134\", and when Byes is less than 2?", "context": "CREATE TABLE table_name_21 (draws VARCHAR, against VARCHAR, byes VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_85 WHERE against < 1033 AND golden_rivers = \"nullawil\" AND byes < 2", "question": "What is the sum of Wins, when Against is less than 1033, when Golden Rivers is \"Nullawil\", and when Byes is less than 2?", "context": "CREATE TABLE table_name_85 (wins INTEGER, byes VARCHAR, against VARCHAR, golden_rivers VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_26 WHERE competition = \"european championships\" AND notes = \"66.81 m\"", "question": "Which Year has a Competition of european championships, and Notes of 66.81 m?", "context": "CREATE TABLE table_name_26 (year INTEGER, competition VARCHAR, notes VARCHAR)"}, {"answer": "SELECT position FROM table_name_3 WHERE venue = \"berlin, germany\"", "question": "Which Position has a Venue of berlin, germany?", "context": "CREATE TABLE table_name_3 (position VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_87 WHERE venue = \"arles, france\"", "question": "Which competition was held in Arles, France?", "context": "CREATE TABLE table_name_87 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT m1a1_abrams FROM table_name_8 WHERE m60a3_patton = \"t (short tons)\"", "question": "What is the M1A1 when the M60A3 was T (Short Tons)?", "context": "CREATE TABLE table_name_8 (m1a1_abrams VARCHAR, m60a3_patton VARCHAR)"}, {"answer": "SELECT m60a3_patton FROM table_name_17 WHERE m1a1_abrams = \"t (short tons)\"", "question": "What is the M60A3 when the M1A1 is T (Short Tons)?", "context": "CREATE TABLE table_name_17 (m60a3_patton VARCHAR, m1a1_abrams VARCHAR)"}, {"answer": "SELECT m60a3_patton FROM table_name_66 WHERE m1a1_abrams = \"km (mi)\"", "question": "What is the M60A3 that has an M1A1 of Km (mi)?", "context": "CREATE TABLE table_name_66 (m60a3_patton VARCHAR, m1a1_abrams VARCHAR)"}, {"answer": "SELECT m60a3_patton FROM table_name_28 WHERE leclerc = \"40 rounds\"", "question": "What is the M60A3 that has 40 rounds as Leclerc?", "context": "CREATE TABLE table_name_28 (m60a3_patton VARCHAR, leclerc VARCHAR)"}, {"answer": "SELECT lince FROM table_name_8 WHERE leclerc = \"hp (kw)\"", "question": "What's the lince when Leclerc was Hp (kw)?", "context": "CREATE TABLE table_name_8 (lince VARCHAR, leclerc VARCHAR)"}, {"answer": "SELECT m1a1_abrams FROM table_name_92 WHERE lince = \"t (short tons)\"", "question": "What is the M1A1 when the Lince was T (Short Tons)?", "context": "CREATE TABLE table_name_92 (m1a1_abrams VARCHAR, lince VARCHAR)"}, {"answer": "SELECT distance FROM table_name_73 WHERE time = \"2:20.00\"", "question": "Which Distance has a Time of 2:20.00?", "context": "CREATE TABLE table_name_73 (distance VARCHAR, time VARCHAR)"}, {"answer": "SELECT distance FROM table_name_16 WHERE event = \"breaststroke\" AND location = \"beijing, chn\"", "question": "Which Distance has an Event of breaststroke, and a Location of beijing, chn?", "context": "CREATE TABLE table_name_16 (distance VARCHAR, event VARCHAR, location VARCHAR)"}, {"answer": "SELECT meet FROM table_name_5 WHERE time = \"1:04.84\"", "question": "What Meet has a Time of 1:04.84?", "context": "CREATE TABLE table_name_5 (meet VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_58 WHERE viewer_rank___number_ = \"#4\"", "question": "What season had a viewer rank of #4?", "context": "CREATE TABLE table_name_58 (season VARCHAR, viewer_rank___number_ VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_43 WHERE households_viewers__in_millions_ < 25.4 AND viewer_rank___number_ = \"#6\"", "question": "Which season had less than 25.4 viewers and had a viewer rank of #6?", "context": "CREATE TABLE table_name_43 (season INTEGER, households_viewers__in_millions_ VARCHAR, viewer_rank___number_ VARCHAR)"}, {"answer": "SELECT season AS premiere FROM table_name_12 WHERE viewer_rank___number_ = \"#6\"", "question": "When did the season premiere that had a viewer rank of #6?", "context": "CREATE TABLE table_name_12 (season VARCHAR, viewer_rank___number_ VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_16 WHERE rank = \"2\" AND silver < 2", "question": "What is the total number of gold medals of the ranked 2nd nation, which has less than 2 silvers?", "context": "CREATE TABLE table_name_16 (gold VARCHAR, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_47 WHERE silver = 0 AND bronze > 1", "question": "What is the total number of gold medals of the nation with 0 silver and more than 1 bronze?", "context": "CREATE TABLE table_name_47 (gold VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_3 WHERE total > 13 AND gold > 10 AND silver < 22", "question": "What is the lowest number of bronze of the nation with more than 13 total medals, more than 10 gold medals, and less than 22 silvers?", "context": "CREATE TABLE table_name_3 (bronze INTEGER, silver VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT main_date FROM table_name_81 WHERE number_of_fixtures = 20", "question": "What was the main date of the round with 20 fixtures?", "context": "CREATE TABLE table_name_81 (main_date VARCHAR, number_of_fixtures VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_name_97 WHERE number_of_fixtures < 8 AND round = \"semi-finals\"", "question": "What were the new entries for the Semi-Finals round with fewer than 8 fixtures?", "context": "CREATE TABLE table_name_97 (new_entries_this_round VARCHAR, number_of_fixtures VARCHAR, round VARCHAR)"}, {"answer": "SELECT club FROM table_name_59 WHERE home_ground = \"central reserve\"", "question": "What was the club when home ground was Central Reserve?", "context": "CREATE TABLE table_name_59 (club VARCHAR, home_ground VARCHAR)"}, {"answer": "SELECT gfl_premierships FROM table_name_4 WHERE home_ground = \"leopold memorial park\"", "question": "What's the GFL Premiership when the home ground was Leopold Memorial Park?", "context": "CREATE TABLE table_name_4 (gfl_premierships VARCHAR, home_ground VARCHAR)"}, {"answer": "SELECT location FROM table_name_39 WHERE years_in_gfl = \"1988-\"", "question": "What's the location where the Years in GFL was 1988-?", "context": "CREATE TABLE table_name_39 (location VARCHAR, years_in_gfl VARCHAR)"}, {"answer": "SELECT home_ground FROM table_name_15 WHERE nickname = \"lions\"", "question": "What's the home ground of the Lions?", "context": "CREATE TABLE table_name_15 (home_ground VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT location FROM table_name_37 WHERE years_in_gfl = \"1979-\" AND nickname = \"saints\"", "question": "What is the location of the Saints having 1979- as Years in GFL?", "context": "CREATE TABLE table_name_37 (location VARCHAR, years_in_gfl VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT type FROM table_name_34 WHERE ends = 2013 AND transfer_window = \"summer\" AND moving_from = \"kalmar ff\"", "question": "What is the type of the player who ended in 2013, had a summer transfer window, and moved from kalmar ff?", "context": "CREATE TABLE table_name_34 (type VARCHAR, moving_from VARCHAR, ends VARCHAR, transfer_window VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_38 WHERE type = \"transfer\" AND transfer_window = \"summer\" AND ends < 2013", "question": "Where did the player with a transfer type, a summer transfer window, and ended before 2013 move from?", "context": "CREATE TABLE table_name_38 (moving_from VARCHAR, ends VARCHAR, type VARCHAR, transfer_window VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_8 WHERE name = \"larsson\"", "question": "What is the transfer window for larsson?", "context": "CREATE TABLE table_name_8 (transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(ends) FROM table_name_81 WHERE nat = \"swe\" AND transfer_window = \"summer\"", "question": "What is the average end year of the player from swe and a summer transfer window?", "context": "CREATE TABLE table_name_81 (ends INTEGER, nat VARCHAR, transfer_window VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_26 WHERE date = \"2 december 2012\"", "question": "What was the outcome on 2 December 2012?", "context": "CREATE TABLE table_name_26 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_name_97 WHERE tournament = \"$10,000 \u2013 tarakan , indonesia f2\"", "question": "What is the score of the final in $10,000 \u2013 tarakan , indonesia f2?", "context": "CREATE TABLE table_name_97 (score_in_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT place FROM table_name_60 WHERE score = 70 - 72 - 69 = 211", "question": "What was the place for the score 70-72-69=211?", "context": "CREATE TABLE table_name_60 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE place = \"t9\" AND score = 73 - 69 - 74 = 216", "question": "What was the player for t9 and a score of 73-69-74=216?", "context": "CREATE TABLE table_name_97 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_50 WHERE player = \"stacy lewis\"", "question": "What was Stacy Lewis' place?", "context": "CREATE TABLE table_name_50 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_87 WHERE tie_no = \"13\"", "question": "What was the score when the tie no was 13?", "context": "CREATE TABLE table_name_87 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_31 WHERE away_team = \"burnley\"", "question": "What was the score when Burnley was the away team?", "context": "CREATE TABLE table_name_31 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_32 WHERE finish = \"66\"", "question": "What is the To par when the finish is 66?", "context": "CREATE TABLE table_name_32 (to_par VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_58 WHERE finish = \"t46\" AND year_s__won = \"1981, 1987\"", "question": "When the year won is 1981, 1987, and the finish is t46, what is the lowest total?", "context": "CREATE TABLE table_name_58 (total INTEGER, finish VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_25 WHERE finish = \"68\"", "question": "Which year was won with a finish of 68", "context": "CREATE TABLE table_name_25 (year_s__won VARCHAR, finish VARCHAR)"}, {"answer": "SELECT AVG(snatch) FROM table_name_19 WHERE total__kg_ > 318 AND bodyweight = 84.15", "question": "WHTA IS THE SNATCH WITH A TOTAL OF LARGER THAN 318 KG AND BODY WEIGHT OF 84.15?", "context": "CREATE TABLE table_name_19 (snatch INTEGER, total__kg_ VARCHAR, bodyweight VARCHAR)"}, {"answer": "SELECT MIN(snatch) FROM table_name_45 WHERE total__kg_ < 318 AND clean_ & _jerk > 175", "question": "WHAT IS THE SNATCH WITH TOTAL KG SMALLER THAN 318, AND CLEAN JERK LARGER THAN 175?", "context": "CREATE TABLE table_name_45 (snatch INTEGER, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE killed = \"2\" AND location = \"jaffa\"", "question": "What date has 2 for killed, and jaffa as the location?", "context": "CREATE TABLE table_name_44 (date VARCHAR, killed VARCHAR, location VARCHAR)"}, {"answer": "SELECT injured FROM table_name_9 WHERE location = \"skierlik\"", "question": "What is the injured that has skierlik as the location?", "context": "CREATE TABLE table_name_9 (injured VARCHAR, location VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_46 WHERE team_1 = \"union berlin\"", "question": "What is the 2nd leg that Team 1 is Union Berlin?", "context": "CREATE TABLE table_name_46 (team_1 VARCHAR)"}, {"answer": "SELECT apps FROM table_name_81 WHERE ratio = 0.52 AND goals = 150", "question": "What is the Apps for the player with 150 Goals and a Ratio of 0.52?", "context": "CREATE TABLE table_name_81 (apps VARCHAR, ratio VARCHAR, goals VARCHAR)"}, {"answer": "SELECT team FROM table_name_42 WHERE circuit = \"symmons plains raceway\"", "question": "Which team won at the symmons plains raceway?", "context": "CREATE TABLE table_name_42 (team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT team FROM table_name_5 WHERE circuit = \"winton motor raceway\"", "question": "Which team won at winton motor raceway?", "context": "CREATE TABLE table_name_5 (team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_71 WHERE series = \"atcc round 7\"", "question": "Which circuit was the atcc round 7 at?", "context": "CREATE TABLE table_name_71 (circuit VARCHAR, series VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_68 WHERE team = \"winfield team nissan\" AND series = \"tooheys 1000\"", "question": "Which circuit did winfield team nissan win for the tooheys 1000?", "context": "CREATE TABLE table_name_68 (circuit VARCHAR, team VARCHAR, series VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE series = \"tooheys 1000\"", "question": "What is the date for the tooheys 1000?", "context": "CREATE TABLE table_name_44 (date VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_name_49 WHERE city___state = \"sydney, new south wales\"", "question": "what series was in sydney, new south wales?", "context": "CREATE TABLE table_name_49 (series VARCHAR, city___state VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_86 WHERE \u00f8_pts > 1.26 AND games = 1458", "question": "What was the rank for 1.26 \u00d8-Pts in game 1458?", "context": "CREATE TABLE table_name_86 (rank VARCHAR, \u00f8_pts VARCHAR, games VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_61 WHERE partner = \"marcella mesker\" AND score = \"6\u20134, 4\u20136, 4\u20136\"", "question": "What is the Outcome of the match with Partner Marcella Mesker and a Score of 6\u20134, 4\u20136, 4\u20136?", "context": "CREATE TABLE table_name_61 (outcome VARCHAR, partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_30 WHERE score = \"2\u20136, 6\u20134, 7\u20136\"", "question": "What is the Surface of the match with a Score of 2\u20136, 6\u20134, 7\u20136?", "context": "CREATE TABLE table_name_30 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_77 WHERE date = \"october 5, 1987\"", "question": "What is the Surface of the match played on October 5, 1987?", "context": "CREATE TABLE table_name_77 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE partner = \"marcella mesker\" AND score = \"0\u20136, 2\u20136\"", "question": "What is the Date of the match with a Score of 0\u20136, 2\u20136 with Partner Marcella Mesker?", "context": "CREATE TABLE table_name_57 (date VARCHAR, partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_73 WHERE date = \"may 3, 1982\"", "question": "Who is the Opponents on May 3, 1982?", "context": "CREATE TABLE table_name_73 (opponents VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE outcome = \"runner-up\" AND date = \"may 21, 1984\"", "question": "What is the Score of the match on May 21, 1984 with Outcome of runner-up?", "context": "CREATE TABLE table_name_94 (score VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE event = \"200m individual medley\"", "question": "What is the date of the 200m individual medley?", "context": "CREATE TABLE table_name_70 (date VARCHAR, event VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_20 WHERE team_2 = \"olympique lyonnais (d2)\"", "question": "Which team was team 1 in the match where team 2 was olympique lyonnais (d2)?", "context": "CREATE TABLE table_name_20 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE team_1 = \"paris sg (d1)\"", "question": "What was the score of the match where paris sg (d1) was team 1?", "context": "CREATE TABLE table_name_63 (score VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT week FROM table_name_77 WHERE result = \"w 23\u201322\"", "question": "Which Week has a Result of w 23\u201322?", "context": "CREATE TABLE table_name_77 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE result = \"bye\"", "question": "When was there a bye result?", "context": "CREATE TABLE table_name_32 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE attendance = \"65,806\"", "question": "When was the attendance 65,806?", "context": "CREATE TABLE table_name_40 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_43 WHERE week > 16", "question": "Who was the opponent after week 16?", "context": "CREATE TABLE table_name_43 (opponent VARCHAR, week INTEGER)"}, {"answer": "SELECT commissioned FROM table_name_78 WHERE laid_down = \"6 september 2003\"", "question": "What is Commissioned, when Laid Down is \"6 September 2003\"?", "context": "CREATE TABLE table_name_78 (commissioned VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT launched FROM table_name_63 WHERE laid_down = \"31 october 1981\"", "question": "What is Launched, when Laid Down is \"31 October 1981\"?", "context": "CREATE TABLE table_name_63 (launched VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT ship FROM table_name_54 WHERE commissioned = \"13 march 1982\"", "question": "What is Ship, when Commissioned is \"13 March 1982\"?", "context": "CREATE TABLE table_name_54 (ship VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT launched FROM table_name_50 WHERE commissioned = \"25 july 1998\"", "question": "What is Launched, when Commissioned is \"25 July 1998\"?", "context": "CREATE TABLE table_name_50 (launched VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT laid_down FROM table_name_85 WHERE hull_number = \"cvn-69\"", "question": "What is Laid Down, when Hull Number is \"CVN-69\"?", "context": "CREATE TABLE table_name_85 (laid_down VARCHAR, hull_number VARCHAR)"}, {"answer": "SELECT laid_down FROM table_name_90 WHERE commissioned = \"11 november 1989\"", "question": "What is Laid Down, when Commissioned is \"11 November 1989\"?", "context": "CREATE TABLE table_name_90 (laid_down VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT position FROM table_name_67 WHERE entrant = \"j ampt\"", "question": "Can you tell me the Position that has the Entrant of j ampt?", "context": "CREATE TABLE table_name_67 (position VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_77 WHERE laps = 17", "question": "Can you tell me the Entrant that has the Laps of 17?", "context": "CREATE TABLE table_name_77 (entrant VARCHAR, laps VARCHAR)"}, {"answer": "SELECT position FROM table_name_41 WHERE driver = \"bib stillwell\"", "question": "Can you tell me the Position that has the Driver of bib stillwell?", "context": "CREATE TABLE table_name_41 (position VARCHAR, driver VARCHAR)"}, {"answer": "SELECT result FROM table_name_70 WHERE attendance = \"41,429\"", "question": "What are the results for a game with an attendance of 41,429?", "context": "CREATE TABLE table_name_70 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent_number FROM table_name_1 WHERE attendance = \"48,165\"", "question": "Who were the opponents when there was an attendance of 48,165?", "context": "CREATE TABLE table_name_1 (opponent_number VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_41 WHERE attendance = \"82,113\"", "question": "What are the results for the game with 82,113 attending?", "context": "CREATE TABLE table_name_41 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT week_4 FROM table_name_12 WHERE week_3 = \"mikaela james\"", "question": "Who was the girl on week 4 after week 3's Mikaela James?", "context": "CREATE TABLE table_name_12 (week_4 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_1 FROM table_name_23 WHERE week_3 = \"ava hart\"", "question": "Who was the girl on week 1 that was previous to week 3's Ava Hart?", "context": "CREATE TABLE table_name_23 (week_1 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_73 WHERE week_4 = \"chelsie loraine\"", "question": "Who was the girl on week 2 that was previous to week 4's Chelsie Loraine?", "context": "CREATE TABLE table_name_73 (week_2 VARCHAR, week_4 VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_72 WHERE week_3 = \"mikaela james\"", "question": "Who was the girl on week 5 that came after week 3's Mikaela James?", "context": "CREATE TABLE table_name_72 (week_5 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_1 FROM table_name_12 WHERE week_2 = \"kamila sulewska\"", "question": "Who was the girl on week 1 that preceded week 2's Kamila Sulewska?", "context": "CREATE TABLE table_name_12 (week_1 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_21 WHERE week_3 = \"shelly louise\"", "question": "Who was the girl on week 5 that came after week 3's Shelly Louise?", "context": "CREATE TABLE table_name_21 (week_5 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT 1987 AS _88 FROM table_name_24 WHERE points = 136", "question": "What is 1987-88, when Points is \"136\"?", "context": "CREATE TABLE table_name_24 (points VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_13 WHERE points = \"22\" AND goals_conceded < 26", "question": "Name the the highest Draw which has Points of 22 and Goals Conceded smaller than 26?", "context": "CREATE TABLE table_name_13 (draw INTEGER, points VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_23 WHERE goals_scored < 18 AND lost > 10", "question": "Name the highest Played of Goals Scored smaller than 18 and a Lost larger than 10?", "context": "CREATE TABLE table_name_23 (played INTEGER, goals_scored VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_72 WHERE points = \"0*\"", "question": "Name the average Played with a Points of 0*?", "context": "CREATE TABLE table_name_72 (played INTEGER, points VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_59 WHERE lost = 0 AND goals_scored > 0", "question": "Count the Draw which has Lost of 0, and a Goals Scored larger than 0?", "context": "CREATE TABLE table_name_59 (draw INTEGER, lost VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT AVG(goals_conceded) FROM table_name_48 WHERE draw = 0 AND played > 0", "question": "Name the Goals Conceded  which has a Draw of 0 and a Played larger than 0?", "context": "CREATE TABLE table_name_48 (goals_conceded INTEGER, draw VARCHAR, played VARCHAR)"}, {"answer": "SELECT rank FROM table_name_74 WHERE total < 13 AND nation = \"mixed team\"", "question": "What is the rank for the Mixed Team nation with a total of less than 13?", "context": "CREATE TABLE table_name_74 (rank VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_98 WHERE silver < 0", "question": "What is the total number of bronze medals for teams with less than 0 silver?", "context": "CREATE TABLE table_name_98 (bronze VARCHAR, silver INTEGER)"}, {"answer": "SELECT AVG(bronze) FROM table_name_87 WHERE silver > 1 AND total < 9", "question": "What is the average number of bronze medals when the team's silver are more than 1 but the total medals are less than 9?", "context": "CREATE TABLE table_name_87 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT military_and_or_civilian_wounded FROM table_name_39 WHERE civilian_deaths = \"unknown\" AND total_deaths__not_including_foreigners_ = \"unknown\"", "question": "How many military or civilians were wounded in the conflict that had an unknown number of civilian and total deaths?", "context": "CREATE TABLE table_name_39 (military_and_or_civilian_wounded VARCHAR, civilian_deaths VARCHAR, total_deaths__not_including_foreigners_ VARCHAR)"}, {"answer": "SELECT civilian_deaths FROM table_name_21 WHERE military_deaths = \"231\"", "question": "How many civilians died in the conflict that left 231 members of the military dead?", "context": "CREATE TABLE table_name_21 (civilian_deaths VARCHAR, military_deaths VARCHAR)"}, {"answer": "SELECT civilian_deaths FROM table_name_19 WHERE total_deaths__not_including_foreigners_ = \"178\"", "question": "How many civilians died in the conflict that left 178, excluding foreigners, dead?", "context": "CREATE TABLE table_name_19 (civilian_deaths VARCHAR, total_deaths__not_including_foreigners_ VARCHAR)"}, {"answer": "SELECT military_deaths FROM table_name_38 WHERE total_casualties = \"531\"", "question": "How many members of the military died in the conflict that had a total of 531 casualties?", "context": "CREATE TABLE table_name_38 (military_deaths VARCHAR, total_casualties VARCHAR)"}, {"answer": "SELECT civilian_deaths FROM table_name_95 WHERE total_casualties = \"1,130\"", "question": "How many civilians died in the conflict that had a total of 1,130 casualties?", "context": "CREATE TABLE table_name_95 (civilian_deaths VARCHAR, total_casualties VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE week = 15", "question": "Which team was the opponent on week 15?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_44 WHERE finish = \"t47\"", "question": "What is the average Total, when Finish is \"T47\"?", "context": "CREATE TABLE table_name_44 (total INTEGER, finish VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_37 WHERE total < 297 AND finish = \"1\"", "question": "What is To par, when Total is less than 297, and when Finish is \"1\"?", "context": "CREATE TABLE table_name_37 (to_par VARCHAR, total VARCHAR, finish VARCHAR)"}, {"answer": "SELECT official_itv1_rating FROM table_name_96 WHERE episode = \"auditions 4\"", "question": "What is the Official ITV1 rating for auditions 4?", "context": "CREATE TABLE table_name_96 (official_itv1_rating VARCHAR, episode VARCHAR)"}, {"answer": "SELECT MIN(official_itv1_rating) FROM table_name_32 WHERE share = \"45.4%\"", "question": "What is the lowest official ITV1 rating with 45.4% share?", "context": "CREATE TABLE table_name_32 (official_itv1_rating INTEGER, share VARCHAR)"}, {"answer": "SELECT COUNT(goals_against) FROM table_name_48 WHERE wins > 12 AND club = \"ud las palmas\" AND position > 5", "question": "How many Goals against have Wins larger than 12, and a Club of ud las palmas, and a Position larger than 5?", "context": "CREATE TABLE table_name_48 (goals_against VARCHAR, position VARCHAR, wins VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(goals_against) FROM table_name_65 WHERE points < 26 AND goals_for < 38 AND position > 14 AND goal_difference < -32", "question": "Which Goals against has Points smaller than 26, and Goals for smaller than 38, and a Position larger than 14, and a Goal Difference smaller than -32?", "context": "CREATE TABLE table_name_65 (goals_against INTEGER, goal_difference VARCHAR, position VARCHAR, points VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT AVG(goals_against) FROM table_name_15 WHERE club = \"cd castell\u00f3n\" AND points < 24", "question": "Which Goals against have a Club of cd castell\u00f3n, and Points smaller than 24?", "context": "CREATE TABLE table_name_15 (goals_against INTEGER, club VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_51 WHERE goals_against < 34 AND wins < 13", "question": "How much Played has Goals against smaller than 34, and Wins smaller than 13?", "context": "CREATE TABLE table_name_51 (played INTEGER, goals_against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_94 WHERE position < 4 AND wins > 16 AND points = 38 AND goals_against > 35", "question": "Which Played has a Position smaller than 4, and Wins larger than 16, and Points of 38, and Goals against larger than 35?", "context": "CREATE TABLE table_name_94 (played INTEGER, goals_against VARCHAR, points VARCHAR, position VARCHAR, wins VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_99 WHERE country = \"france\"", "question": "What is the To Par score for the player from France?", "context": "CREATE TABLE table_name_99 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE score = 70 - 69 - 69 = 208", "question": "What is the name of the player with an overall score of 70-69-69=208?", "context": "CREATE TABLE table_name_41 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_38 WHERE score = 71 - 68 - 69 = 208", "question": "What is the To Par score for the player with an overall score of 71-68-69=208?", "context": "CREATE TABLE table_name_38 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_name_68 WHERE champion = \"anke huber\"", "question": "What location did Anke Huber win the championship?", "context": "CREATE TABLE table_name_68 (location VARCHAR, champion VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_26 WHERE year = 1999", "question": "Who won the runner-up in 1999?", "context": "CREATE TABLE table_name_26 (runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE champion = \"flavia pennetta\"", "question": "What was the score when Flavia Pennetta won the championship?", "context": "CREATE TABLE table_name_67 (score VARCHAR, champion VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_96 WHERE s_rate < 133.72 AND team = \"yorkshire carnegie\"", "question": "How many Matches have an S/Rate smaller than 133.72, and a Team of yorkshire carnegie?", "context": "CREATE TABLE table_name_96 (matches VARCHAR, s_rate VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_27 WHERE balls < 258 AND inns = 10 AND matches < 12", "question": "Which Team has Balls smaller than 258, and Inns of 10, and Matches smaller than 12?", "context": "CREATE TABLE table_name_27 (team VARCHAR, matches VARCHAR, balls VARCHAR, inns VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_87 WHERE balls < 224 AND average > 38.25 AND s_rate > 139.09", "question": "How many Matches have Balls smaller than 224, and an Average larger than 38.25, and an S/Rate larger than 139.09?", "context": "CREATE TABLE table_name_87 (matches INTEGER, s_rate VARCHAR, balls VARCHAR, average VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_56 WHERE grand_prix = \"dutch tt\"", "question": "What was the fastest lap for Grand Prix dutch tt?", "context": "CREATE TABLE table_name_56 (fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT race_winner FROM table_name_47 WHERE circuit = \"sachsenring\"", "question": "Who won the race circuit of sachsenring?", "context": "CREATE TABLE table_name_47 (race_winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT race_winner FROM table_name_97 WHERE fastest_lap = \"daijiro hiura\" AND date = \"march 29\"", "question": "Who won with the fastest lap of daijiro hiura on March 29?", "context": "CREATE TABLE table_name_97 (race_winner VARCHAR, fastest_lap VARCHAR, date VARCHAR)"}, {"answer": "SELECT year FROM table_name_35 WHERE total = \"2\" AND la_matches = \"0\"", "question": "What year had a total of 2 and LA matches of 0?", "context": "CREATE TABLE table_name_35 (year VARCHAR, total VARCHAR, la_matches VARCHAR)"}, {"answer": "SELECT year FROM table_name_9 WHERE total = \"9\"", "question": "What year was the total 9?", "context": "CREATE TABLE table_name_9 (year VARCHAR, total VARCHAR)"}, {"answer": "SELECT week_4 FROM table_name_8 WHERE week_5 = \"[month ended]\" AND week_2 = \"april ireland\"", "question": "Who is in week 4 if week 5 is [month ended] and week 2 is April Ireland?", "context": "CREATE TABLE table_name_8 (week_4 VARCHAR, week_5 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_3 FROM table_name_64 WHERE week_2 = \"nikki fiction\"", "question": "Who is week 3 if week 2 is Nikki Fiction?", "context": "CREATE TABLE table_name_64 (week_3 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_1 FROM table_name_3 WHERE week_3 = \"natasha budhi\"", "question": "Who is week 1 if week 3 is Natasha Budhi?", "context": "CREATE TABLE table_name_3 (week_1 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_68 WHERE week_2 = \"jenna jordan\"", "question": "Who is week 5 if week 2 is Jenna Jordan?", "context": "CREATE TABLE table_name_68 (week_5 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_65 WHERE week_3 = \"sara stokes\"", "question": "Who is week 2 if week 3 is Sara Stokes?", "context": "CREATE TABLE table_name_65 (week_2 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_3 FROM table_name_47 WHERE week_1 = \"amanda batt\"", "question": "Who is week 3 if week 1 is Amanda Batt?", "context": "CREATE TABLE table_name_47 (week_3 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_29 WHERE total < 1", "question": "What average bronze has a total less than 1?", "context": "CREATE TABLE table_name_29 (bronze INTEGER, total INTEGER)"}, {"answer": "SELECT AVG(gold) FROM table_name_63 WHERE nation = \"china (chn)\" AND bronze > 1", "question": "What average gold has China (chn) as the nation with a bronze greater than 1?", "context": "CREATE TABLE table_name_63 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_96 WHERE bronze > 4", "question": "Which is the highest gold that has a bronze greater than 4?", "context": "CREATE TABLE table_name_96 (gold INTEGER, bronze INTEGER)"}, {"answer": "SELECT date FROM table_name_84 WHERE against < 32 AND opposing_teams = \"australia\"", "question": "What date has fewer than 32 against and the opposing team of Australia?", "context": "CREATE TABLE table_name_84 (date VARCHAR, against VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_64 WHERE status = \"test match\"", "question": "What is the average against for a test match?", "context": "CREATE TABLE table_name_64 (against INTEGER, status VARCHAR)"}, {"answer": "SELECT venue FROM table_name_90 WHERE against > 9 AND status = \"second test\"", "question": "Which venue has more than 9 against and a status of second test?", "context": "CREATE TABLE table_name_90 (venue VARCHAR, against VARCHAR, status VARCHAR)"}, {"answer": "SELECT status FROM table_name_52 WHERE against = 35", "question": "Which status has an against of 35?", "context": "CREATE TABLE table_name_52 (status VARCHAR, against VARCHAR)"}, {"answer": "SELECT music FROM table_name_64 WHERE dance = \"modern\"", "question": "What was the music for the modern dance?", "context": "CREATE TABLE table_name_64 (music VARCHAR, dance VARCHAR)"}, {"answer": "SELECT place FROM table_name_29 WHERE dance = \"tango\" AND points_jury = \"24 (7,5,6,6)\"", "question": "What was the place for the tango dance when the points was jury of 24 (7,5,6,6)?", "context": "CREATE TABLE table_name_29 (place VARCHAR, dance VARCHAR, points_jury VARCHAR)"}, {"answer": "SELECT AVG(qualifying_goals) FROM table_name_3 WHERE player = \"jack froggatt\" AND finals_goals > 0", "question": "What is the Average Qualifying Goals for Jack Froggatt where the Final Goals is greater than 0?", "context": "CREATE TABLE table_name_3 (qualifying_goals INTEGER, player VARCHAR, finals_goals VARCHAR)"}, {"answer": "SELECT player FROM table_name_90 WHERE total_goals > 1 AND qualifying_goals < 3", "question": "Which Player has a Total Goals greater than 1 and Qualifying Goals smaller than 3?", "context": "CREATE TABLE table_name_90 (player VARCHAR, total_goals VARCHAR, qualifying_goals VARCHAR)"}, {"answer": "SELECT COUNT(total_goals) FROM table_name_1 WHERE player = \"stan mortensen\" AND qualifying_goals > 3", "question": "What is the total number of Total Goals scored by Stan Mortensen where the Qualifying Goals is greater than 3?", "context": "CREATE TABLE table_name_1 (total_goals VARCHAR, player VARCHAR, qualifying_goals VARCHAR)"}, {"answer": "SELECT AVG(finals_goals) FROM table_name_40 WHERE total_goals < 1", "question": "What is the Average Finals Goals if the Total Goals is less than 1?", "context": "CREATE TABLE table_name_40 (finals_goals INTEGER, total_goals INTEGER)"}, {"answer": "SELECT SUM(score) FROM table_name_51 WHERE country = \"australia\" AND to_par = \"e\" AND player = \"adam scott\"", "question": "What was Adam Scott's total score when playing in Australia with a to par of e?", "context": "CREATE TABLE table_name_51 (score INTEGER, player VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE player = \"fredrik jacobson\"", "question": "What was Fredrik Jacobson's score?", "context": "CREATE TABLE table_name_88 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_95 WHERE away_team = \"leyton orient\"", "question": "WHAT IS THE HOME TEAM WITH AN AWAY OF LEYTON ORIENT?", "context": "CREATE TABLE table_name_95 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_52 WHERE home_team = \"brighton & hove albion\"", "question": "WHAT IS NO TIE FROM brighton & hove albion?", "context": "CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_11 WHERE date = \"october 5\"", "question": "What was the result for the game on October 5?", "context": "CREATE TABLE table_name_11 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT fa_cup_apps FROM table_name_73 WHERE total_goals < 4 AND league_cup_goals = 0 AND league_apps = \"8 (10)\"", "question": "What is the FA Cup Apps when total goals is smaller than 4, League Cup Goals is 0, and League Apps is 8 (10)?", "context": "CREATE TABLE table_name_73 (fa_cup_apps VARCHAR, league_apps VARCHAR, total_goals VARCHAR, league_cup_goals VARCHAR)"}, {"answer": "SELECT MIN(total_goals) FROM table_name_89 WHERE position = \"df\" AND fa_cup_goals < 0", "question": "What is the lowest total goals when position is df, and FA Cup Goals is smaller than 0?", "context": "CREATE TABLE table_name_89 (total_goals INTEGER, position VARCHAR, fa_cup_goals VARCHAR)"}, {"answer": "SELECT AVG(viewers__m_) FROM table_name_82 WHERE episode = \"school council\"", "question": "What Viewers (m) has an Episode of school council?", "context": "CREATE TABLE table_name_82 (viewers__m_ INTEGER, episode VARCHAR)"}, {"answer": "SELECT MAX(viewers__m_) FROM table_name_54 WHERE rating = \"1.7\" AND episode = \"the game of life\"", "question": "What Viewers (m) has a Rating of 1.7, and an Episode of the game of life?", "context": "CREATE TABLE table_name_54 (viewers__m_ INTEGER, rating VARCHAR, episode VARCHAR)"}, {"answer": "SELECT viewers__m_ FROM table_name_64 WHERE episode = \"40 days\"", "question": "What Viewers (m) has an Episode of 40 days?", "context": "CREATE TABLE table_name_64 (viewers__m_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT episode FROM table_name_35 WHERE rating = \"1.8\" AND viewers__m_ < 2.73", "question": "What Episode has a Rating of 1.8, and Viewers (m) smaller than 2.73?", "context": "CREATE TABLE table_name_35 (episode VARCHAR, rating VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT rating FROM table_name_96 WHERE viewers__m_ = 2.73", "question": "What Rating has Viewers (m) of 2.73?", "context": "CREATE TABLE table_name_96 (rating VARCHAR, viewers__m_ VARCHAR)"}, {"answer": "SELECT episode FROM table_name_17 WHERE share = \"tba\"", "question": "What Episode has a Share of tba?", "context": "CREATE TABLE table_name_17 (episode VARCHAR, share VARCHAR)"}, {"answer": "SELECT partner FROM table_name_68 WHERE date = 1979 AND opponents_in_the_final = \"heinz g\u00fcnthardt bob hewitt\"", "question": "Name the Partner which is in 1979, and Opponents in the final of heinz g\u00fcnthardt bob hewitt?", "context": "CREATE TABLE table_name_68 (partner VARCHAR, date VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_74 WHERE opponents_in_the_final = \"mark edmondson sherwood stewart\" AND tournament = \"dallas , u.s.\"", "question": "which Surface has Opponents in the final of mark edmondson sherwood stewart, and a Tournament of dallas , u.s.?", "context": "CREATE TABLE table_name_74 (surface VARCHAR, opponents_in_the_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT SUM(date) FROM table_name_23 WHERE tournament = \"paris indoor , france\"", "question": "Name the date of Tournament of paris indoor , france?", "context": "CREATE TABLE table_name_23 (date INTEGER, tournament VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_82 WHERE surface = \"hard\" AND score_in_the_final = \"6\u20132, 6\u20134\"", "question": "Name the Outcome has a Surface of hard, and a Score in the final of 6\u20132, 6\u20134?", "context": "CREATE TABLE table_name_82 (outcome VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_87 WHERE score_in_the_final = \"6\u20133, 6\u20132\" AND opponents_in_the_final = \"mansour bahrami diego p\u00e9rez\"", "question": "Name the Surface which has a Score in the final of 6\u20133, 6\u20132 and  Opponents in the final of mansour bahrami diego p\u00e9rez?", "context": "CREATE TABLE table_name_87 (surface VARCHAR, score_in_the_final VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT res FROM table_name_27 WHERE time = \"11:58\"", "question": "Which Res has a Time of 11:58?", "context": "CREATE TABLE table_name_27 (res VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_33 WHERE opponent = \"jerry bohlander\"", "question": "What was jerry bohlander's time?", "context": "CREATE TABLE table_name_33 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT total FROM table_name_91 WHERE coppa_italia = 0 AND champions_league = 1 AND serie_a < 2 AND name = \"mauro camoranesi\"", "question": "What was the total of Mauro Camoranesi when coppa italia was 0, champions league was 1 and less than 2 serie A?", "context": "CREATE TABLE table_name_91 (total VARCHAR, name VARCHAR, serie_a VARCHAR, coppa_italia VARCHAR, champions_league VARCHAR)"}, {"answer": "SELECT AVG(serie_a) FROM table_name_79 WHERE coppa_italia = 5", "question": "What's the Serie A when the coppa italia was 5?", "context": "CREATE TABLE table_name_79 (serie_a INTEGER, coppa_italia VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_62 WHERE champions_league = 0 AND serie_a > 1 AND coppa_italia < 0", "question": "What's the total when the champions league was 0, the coppa italia was less than 0, and the Serie A was more than 1?", "context": "CREATE TABLE table_name_62 (total INTEGER, coppa_italia VARCHAR, champions_league VARCHAR, serie_a VARCHAR)"}, {"answer": "SELECT SUM(champions_league) FROM table_name_40 WHERE serie_a = 1 AND total > 1 AND coppa_italia > 2", "question": "What is the championsleague when the total was greater than 1, the coppa italia was more than 2, and the Serie A was 1?", "context": "CREATE TABLE table_name_40 (champions_league INTEGER, coppa_italia VARCHAR, serie_a VARCHAR, total VARCHAR)"}, {"answer": "SELECT combined FROM table_name_53 WHERE victories = 14", "question": "Can you tell me the Combined that has the Victories of 14?", "context": "CREATE TABLE table_name_53 (combined VARCHAR, victories VARCHAR)"}, {"answer": "SELECT giant_slalom FROM table_name_14 WHERE combined = \"1\" AND country = \"united states\" AND victories > 11", "question": "Can you tell me the Giant Slalom that has the Combined of 1, and the Country of united states, and the Victories larger than 11?", "context": "CREATE TABLE table_name_14 (giant_slalom VARCHAR, victories VARCHAR, combined VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_84 WHERE player = \"bob charles\"", "question": "What is Bob Charles' To par?", "context": "CREATE TABLE table_name_84 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_17 WHERE to_par = \"+11\"", "question": "What is the Total for the Player with a To par of +11?", "context": "CREATE TABLE table_name_17 (total INTEGER, to_par VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_24 WHERE to_par = \"\u201313\"", "question": "What is the Total of the Player with a To par of \u201313?", "context": "CREATE TABLE table_name_24 (total INTEGER, to_par VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_94 WHERE position = \"guard\" AND name = \"kerri shields\"", "question": "What is Guard Kerri Shields Hometown?", "context": "CREATE TABLE table_name_94 (hometown VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_69 WHERE hometown = \"albuquerque, new mexico\"", "question": "What is the Name of the Player from Albuquerque, New Mexico?", "context": "CREATE TABLE table_name_69 (name VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_19 WHERE home__2nd_leg_ = \"newell's old boys\"", "question": "What was the score of the 2nd leg when Newell's Old Boys played at home?", "context": "CREATE TABLE table_name_19 (home__2nd_leg_ VARCHAR)"}, {"answer": "SELECT home__2nd_leg_ FROM table_name_19 WHERE aggregate = \"2-0\"", "question": "Which team played at home for the second leg and has aggregate score of 2-0?", "context": "CREATE TABLE table_name_19 (home__2nd_leg_ VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_57 WHERE home__2nd_leg_ = \"gimnasia de mendoza\"", "question": "What was the score on the first leg when gimnasia de mendoza played at home for the second leg?", "context": "CREATE TABLE table_name_57 (home__2nd_leg_ VARCHAR)"}, {"answer": "SELECT home__2nd_leg_ FROM table_name_39 WHERE aggregate = \"2-4\"", "question": "Which team played at home for the second leg and has an aggregate score of 2-4?", "context": "CREATE TABLE table_name_39 (home__2nd_leg_ VARCHAR, aggregate VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_84 WHERE home__2nd_leg_ = \"atl\u00e9tico tucum\u00e1n\"", "question": "What was the 2nd leg score when atl\u00e9tico tucum\u00e1n played at home?", "context": "CREATE TABLE table_name_84 (home__2nd_leg_ VARCHAR)"}, {"answer": "SELECT record FROM table_name_85 WHERE res = \"win\" AND time = \"5:00\" AND round > 3", "question": "What is the record of the match with a win res., a 5:00 time, and more than 3 rounds?", "context": "CREATE TABLE table_name_85 (record VARCHAR, round VARCHAR, res VARCHAR, time VARCHAR)"}, {"answer": "SELECT method FROM table_name_22 WHERE opponent = \"georges st-pierre\"", "question": "What is the method of opponent georges st-pierre?", "context": "CREATE TABLE table_name_22 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_46 WHERE round = 3 AND event = \"fightfest 2\"", "question": "What is the location of fightfest 2, which has 3 rounds?", "context": "CREATE TABLE table_name_46 (location VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_21 WHERE time = \"1:19\"", "question": "Who is the opponent with a time of 1:19?", "context": "CREATE TABLE table_name_21 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_81 WHERE record = \"0-1\"", "question": "Who is the opponent with a 0-1 record?", "context": "CREATE TABLE table_name_81 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(rank_by_average) FROM table_name_12 WHERE total_points > 392 AND average = 24.8", "question": "What is the total rank with more than 392 total points and an 24.8 average?", "context": "CREATE TABLE table_name_12 (rank_by_average VARCHAR, total_points VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_62 WHERE place < 3 AND total_points < 433 AND rank_by_average < 2", "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 COUNT(average) FROM table_name_34 WHERE total_points = 54 AND rank_by_average < 10", "question": "What is the total average with 54 total points and a rank less than 10?", "context": "CREATE TABLE table_name_34 (average VARCHAR, total_points VARCHAR, rank_by_average VARCHAR)"}, {"answer": "SELECT COUNT(rank_by_average) FROM table_name_99 WHERE number_of_dances = 2 AND total_points > 37", "question": "What is the total rank by average for 2 dances, which have more than 37 total points?", "context": "CREATE TABLE table_name_99 (rank_by_average VARCHAR, number_of_dances VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT championship FROM table_name_86 WHERE opponent_in_the_final = \"aaron krickstein\" AND score_in_the_final = \"7\u20135, 6\u20132\"", "question": "What Championship has an Opponent in the final of aaron krickstein, and a Score in the final of 7\u20135, 6\u20132?", "context": "CREATE TABLE table_name_86 (championship VARCHAR, opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_44 WHERE surface = \"hard\" AND championship = \"washington, d.c. , u.s.\" AND opponent_in_the_final = \"ivan lendl\"", "question": "What Score in the final has a Surface of hard, a Championship of washington, d.c. , u.s., and an Opponent in the final of ivan lendl?", "context": "CREATE TABLE table_name_44 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR, championship VARCHAR)"}, {"answer": "SELECT MAX(number_of_seasons_in_liga_mx) FROM table_name_27 WHERE club = \"cruz azul\"", "question": "What is the highest Number of seasons in Liga MX for Club cruz azul?", "context": "CREATE TABLE table_name_27 (number_of_seasons_in_liga_mx INTEGER, club VARCHAR)"}, {"answer": "SELECT MAX(number_of_seasons_in_liga_mx) FROM table_name_33 WHERE club = \"cruz azul\" AND number_of_seasons_in_top_division > 68", "question": "What is the highest Number of seasons in Liga MX for Club cruz azul, when their season in the top division is higher than 68?", "context": "CREATE TABLE table_name_33 (number_of_seasons_in_liga_mx INTEGER, club VARCHAR, number_of_seasons_in_top_division VARCHAR)"}, {"answer": "SELECT COUNT(top_division_titles) FROM table_name_55 WHERE number_of_seasons_in_top_division > 40 AND first_season_of_current_spell_in_top_division = \"1943-44\" AND number_of_seasons_in_liga_mx > 89", "question": "What is the total number of Top division titles for the club that has more than 40 seasons in top division, a First season of current spell in top division of 1943-44, and more than 89 seasons in Liga MX?", "context": "CREATE TABLE table_name_55 (top_division_titles VARCHAR, number_of_seasons_in_liga_mx VARCHAR, number_of_seasons_in_top_division VARCHAR, first_season_of_current_spell_in_top_division VARCHAR)"}, {"answer": "SELECT SUM(top_division_titles) FROM table_name_66 WHERE number_of_seasons_in_liga_mx > 42 AND club = \"guadalajara\"", "question": "How many top division titles does Club Guadalajara have, with more than 42 seasons in Liga MX?", "context": "CREATE TABLE table_name_66 (top_division_titles INTEGER, number_of_seasons_in_liga_mx VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_32 WHERE number_of_seasons_in_liga_mx < 40 AND number_of_seasons_in_top_division = 65", "question": "Which club has fewer than 40 seasons in Liga MX and 65 seasons in the top division?", "context": "CREATE TABLE table_name_32 (club VARCHAR, number_of_seasons_in_liga_mx VARCHAR, number_of_seasons_in_top_division VARCHAR)"}, {"answer": "SELECT SUM(number) FROM table_name_4 WHERE location = \"bois de warville\" AND time < 810", "question": "What number is in Bois de Warville with a time less than 810?", "context": "CREATE TABLE table_name_4 (number INTEGER, location VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(time) FROM table_name_24 WHERE number = 21", "question": "What is number 21's highest time?", "context": "CREATE TABLE table_name_24 (time INTEGER, number VARCHAR)"}, {"answer": "SELECT SUM(number) FROM table_name_89 WHERE opponent = \"fokker d.vii\" AND time = 1655", "question": "What number with the opponent Fokker D.vii have with a time of 1655?", "context": "CREATE TABLE table_name_89 (number INTEGER, opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_5 WHERE time > 1040 AND aircraft = \"spad xiii\" AND number < 22 AND location = \"dun-sur-meuse\"", "question": "Who is the opponent with a time higher than 1040, a Spad xiii aircraft in Dun-Sur-Meuse with a lower number than 22?", "context": "CREATE TABLE table_name_5 (opponent VARCHAR, location VARCHAR, number VARCHAR, time VARCHAR, aircraft VARCHAR)"}, {"answer": "SELECT SUM(number) FROM table_name_66 WHERE opponent = \"fokker d.vii\" AND time = 600", "question": "What number has the opponent Fokker d.vii with a time of 600?", "context": "CREATE TABLE table_name_66 (number INTEGER, opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT name FROM table_name_27 WHERE floors > 36 AND years_as_tallest = \"1986\u20131992\"", "question": "What is the Name of the Building with 36 or more Floors with Years as tallest of 1986\u20131992?", "context": "CREATE TABLE table_name_27 (name VARCHAR, floors VARCHAR, years_as_tallest VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_55 WHERE height_ft__m_ = \"145 (44)\"", "question": "What is the Years as tallest of the Building with a Height ft (m) of 145 (44)?", "context": "CREATE TABLE table_name_55 (years_as_tallest VARCHAR, height_ft__m_ VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_70 WHERE floors = 17", "question": "What is the Street Address of the Building with 17 Floors?", "context": "CREATE TABLE table_name_70 (street_address VARCHAR, floors VARCHAR)"}, {"answer": "SELECT name FROM table_name_28 WHERE street_address = \"100 north tampa street\"", "question": "What is the Name of the Building at 100 North Tampa Street?", "context": "CREATE TABLE table_name_28 (name VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT away FROM table_name_68 WHERE round = \"q3\"", "question": "What away is there for the q3 round?", "context": "CREATE TABLE table_name_68 (away VARCHAR, round VARCHAR)"}, {"answer": "SELECT aggregate FROM table_name_56 WHERE opponents = \"bayer leverkusen\"", "question": "What is the Aggregate of Bayer Leverkusen opponents?", "context": "CREATE TABLE table_name_56 (aggregate VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT competition FROM table_name_80 WHERE venue = \"serravalle, san marino\"", "question": "What is the competition that was at serravalle, san marino?", "context": "CREATE TABLE table_name_80 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_78 WHERE result = \"won\" AND competition = \"friendly\" AND date = \"28 may 2012\"", "question": "Where was the friendly competition that Andriy Yarmolenko won on 28 may 2012?", "context": "CREATE TABLE table_name_78 (venue VARCHAR, date VARCHAR, result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_2 WHERE venue = \"kyiv, ukraine\"", "question": "What is the result of the game at kyiv, ukraine?", "context": "CREATE TABLE table_name_2 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT style FROM table_name_59 WHERE choreographer = \"luda and oliver\"", "question": "What is the Style of the dance by Choreographer Luda and Oliver?", "context": "CREATE TABLE table_name_59 (style VARCHAR, choreographer VARCHAR)"}, {"answer": "SELECT results FROM table_name_44 WHERE choreographer = \"kelly aykers\"", "question": "What is the Result of the dance Choreographed by Kelly Aykers?", "context": "CREATE TABLE table_name_44 (results VARCHAR, choreographer VARCHAR)"}, {"answer": "SELECT style FROM table_name_12 WHERE results = \"safe\" AND choreographer = \"nacho pop\"", "question": "What is the Style of the dance Choreographed by Nacho Pop with result of safe?", "context": "CREATE TABLE table_name_12 (style VARCHAR, results VARCHAR, choreographer VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_18 WHERE total > 2 AND gold = 21 AND bronze > 12", "question": "What is the rank with a higher than 2 total, 21 gold and more than 12 bronze?", "context": "CREATE TABLE table_name_18 (rank INTEGER, bronze VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_74 WHERE silver > 1 AND nation = \"germany\"", "question": "How many golds does Germany have with more than 1 silver?", "context": "CREATE TABLE table_name_74 (gold INTEGER, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_87 WHERE pick = 20", "question": "What is the total number of rounds of the player with a pick of 20?", "context": "CREATE TABLE table_name_87 (round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT player FROM table_name_15 WHERE draft = 1971 AND pick > 7", "question": "Who is the player from the 1971 draft with a pick greater than 7?", "context": "CREATE TABLE table_name_15 (player VARCHAR, draft VARCHAR, pick VARCHAR)"}, {"answer": "SELECT COUNT(premier) FROM table_name_67 WHERE second = 55", "question": "What is the total number of Premier, when Second is \"55\"?", "context": "CREATE TABLE table_name_67 (premier VARCHAR, second VARCHAR)"}, {"answer": "SELECT COUNT(second) FROM table_name_5 WHERE first > 18 AND season = \"1992-93\" AND premier > 16", "question": "What is the total number of Second, when First is greater than 18, when Season is 1992-93, and when Premier is greater than 16?", "context": "CREATE TABLE table_name_5 (second VARCHAR, premier VARCHAR, first VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_2 WHERE second = 55", "question": "What is the lowest Total, when Second is \"55\"?", "context": "CREATE TABLE table_name_2 (total INTEGER, second VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_23 WHERE season = \"1996-97\" AND second < 33", "question": "What is the highest Total, when Season is \"1996-97\", and when Second is less than 33?", "context": "CREATE TABLE table_name_23 (total INTEGER, season VARCHAR, second VARCHAR)"}, {"answer": "SELECT SUM(second) FROM table_name_1 WHERE total < 70 AND premier < 20 AND first > 18", "question": "What is the sum of Second, when Total is less than 70, when Premier is less than 20, and when First is greater than 18?", "context": "CREATE TABLE table_name_1 (second INTEGER, first VARCHAR, total VARCHAR, premier VARCHAR)"}, {"answer": "SELECT season FROM table_name_54 WHERE goals = \"27\" AND points = \"58\"", "question": "In what season were there 27 goals and 58 points?", "context": "CREATE TABLE table_name_54 (season VARCHAR, goals VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_38 WHERE goals = \"28\" AND games = \"47\"", "question": "What are the points in the season with 47 games and 28 goals?", "context": "CREATE TABLE table_name_38 (points VARCHAR, goals VARCHAR, games VARCHAR)"}, {"answer": "SELECT goals FROM table_name_29 WHERE games = \"47\"", "question": "How many goals were there in game 47?", "context": "CREATE TABLE table_name_29 (goals VARCHAR, games VARCHAR)"}, {"answer": "SELECT SUM(snatch) FROM table_name_79 WHERE total__kg_ < 257", "question": "How much Snatch has a Total (kg) smaller than 257?", "context": "CREATE TABLE table_name_79 (snatch INTEGER, total__kg_ INTEGER)"}, {"answer": "SELECT MIN(snatch) FROM table_name_25 WHERE clean_ & _jerk = 180 AND bodyweight < 69.83", "question": "Which Snatch has a Clean & Jerk of 180, and a Bodyweight smaller than 69.83?", "context": "CREATE TABLE table_name_25 (snatch INTEGER, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT COUNT(military_deaths) FROM table_name_41 WHERE military_and_or_civilian_wounded = \"78\" AND total_deaths > 27", "question": "What is the total number of military deaths when there are 78 military and/or civilian wounded and more than 27 total deaths?", "context": "CREATE TABLE table_name_41 (military_deaths VARCHAR, military_and_or_civilian_wounded VARCHAR, total_deaths VARCHAR)"}, {"answer": "SELECT AVG(military_deaths) FROM table_name_22 WHERE civilian_deaths__including_foreigners_ < 38 AND military_and_or_civilian_wounded = \"33\"", "question": "What is the average number of military deaths when there are fewer than 38 civilian deaths (including foreigners) and 33 military and/or civilian wounded?", "context": "CREATE TABLE table_name_22 (military_deaths INTEGER, civilian_deaths__including_foreigners_ VARCHAR, military_and_or_civilian_wounded VARCHAR)"}, {"answer": "SELECT total_casualties FROM table_name_47 WHERE total_deaths = 12 AND military_deaths > 1", "question": "What is the total number of casualties when there are 12 total deaths and more than 1 military death?", "context": "CREATE TABLE table_name_47 (total_casualties VARCHAR, total_deaths VARCHAR, military_deaths VARCHAR)"}, {"answer": "SELECT total FROM table_name_13 WHERE score_points = \"11\"", "question": "which Total has a Score points of 11?", "context": "CREATE TABLE table_name_13 (total VARCHAR, score_points VARCHAR)"}, {"answer": "SELECT total FROM table_name_27 WHERE rank_points = \"olympic bronze medalist\"", "question": "Which Total has an olympic bronze medalist?", "context": "CREATE TABLE table_name_27 (total VARCHAR, rank_points VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_40 WHERE score_points = \"olympic silver medalist\"", "question": "Which Shooter has Score points of olympic silver medalist?", "context": "CREATE TABLE table_name_40 (shooter VARCHAR, score_points VARCHAR)"}, {"answer": "SELECT rank_points FROM table_name_75 WHERE event = \"wc beijing\" AND score_points = \"13\" AND total = \"18\"", "question": "Name the Rank points which have an Event of wc beijing, and Score points of 13, and a Total of 18?", "context": "CREATE TABLE table_name_75 (rank_points VARCHAR, total VARCHAR, event VARCHAR, score_points VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_91 WHERE original_title = \"cilv\u0113ka b\u0113rns\"", "question": "What is the Film title used in nomination of Cilv\u0113ka B\u0113rns?", "context": "CREATE TABLE table_name_91 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_61 WHERE year__ceremony_ = \"1992 (65th)\"", "question": "What is the Original Title of the 1992 (65th) Film", "context": "CREATE TABLE table_name_61 (original_title VARCHAR, year__ceremony_ VARCHAR)"}, {"answer": "SELECT director FROM table_name_55 WHERE film_title_used_in_nomination = \"gulf stream under the iceberg\"", "question": "What is the Director of Gulf Stream Under the Iceberg?", "context": "CREATE TABLE table_name_55 (director VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_36 WHERE director = \"aigars grauba\"", "question": "What is the Original Title of the movie directed by Aigars Grauba?", "context": "CREATE TABLE table_name_36 (original_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT british FROM table_name_55 WHERE letter = \"o /o\u028a/\"", "question": "What is the British letter with o /o\u028a/?", "context": "CREATE TABLE table_name_55 (british VARCHAR, letter VARCHAR)"}, {"answer": "SELECT letter FROM table_name_40 WHERE british = \"a\u026a\"", "question": "Which letter has the British a\u026a?", "context": "CREATE TABLE table_name_40 (letter VARCHAR, british VARCHAR)"}, {"answer": "SELECT american FROM table_name_65 WHERE australian = \"\u0259\u0289\"", "question": "What does American have if Australia has \u0259\u0289?", "context": "CREATE TABLE table_name_65 (american VARCHAR, australian VARCHAR)"}, {"answer": "SELECT british FROM table_name_10 WHERE american = \"\u0259\"", "question": "What is the British letter if American is \u0259?", "context": "CREATE TABLE table_name_10 (british VARCHAR, american VARCHAR)"}, {"answer": "SELECT australian FROM table_name_67 WHERE british = \"\u026a\" AND letter = \"\u00e6 /i/\"", "question": "What is the Australian letter with a British of \u026a and a letter of \u00e6 /i/??", "context": "CREATE TABLE table_name_67 (australian VARCHAR, british VARCHAR, letter VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_74 WHERE home_team = \"sheffield united\"", "question": "What is sheffield united's away team?", "context": "CREATE TABLE table_name_74 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_67 WHERE away_team = \"middlesbrough\"", "question": "How many people attended the Away team of middlesbrough?", "context": "CREATE TABLE table_name_67 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE away_team = \"middlesbrough\"", "question": "Which Score has an Away team of middlesbrough?", "context": "CREATE TABLE table_name_98 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_81 WHERE street_address = \"01.0 10 light street\"", "question": "WHAT IS THE YEARS AS TALLEST WITH 01.0 10 light street?", "context": "CREATE TABLE table_name_81 (years_as_tallest VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT SUM(floors) FROM table_name_57 WHERE street_address = \"01.0 10 light street\"", "question": "WHAT IS THE FLOOR NUMBERS WITH 01.0 10 light street?", "context": "CREATE TABLE table_name_57 (floors INTEGER, street_address VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_10 WHERE floors < 24 AND street_address = \"05.0 210 north charles street\"", "question": "WHAT IS THE YEAR'S TALLEST VALUE WITH FLOORS LESS THAN 24, AND 05.0 210 north charles street?", "context": "CREATE TABLE table_name_10 (years_as_tallest VARCHAR, floors VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE street_address = \"01.0 10 light street\"", "question": "WHAT IS THE NAME WITH 01.0 10 light street?", "context": "CREATE TABLE table_name_63 (name VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT name FROM table_name_20 WHERE height = \"m (ft 1in)\"", "question": "What is the Name of the Player with a Height of m (ft 1in)?", "context": "CREATE TABLE table_name_20 (name VARCHAR, height VARCHAR)"}, {"answer": "SELECT weight FROM table_name_43 WHERE name = \"tatyana gubina\"", "question": "What is Tatyana Gubina's Weight?", "context": "CREATE TABLE table_name_43 (weight VARCHAR, name VARCHAR)"}, {"answer": "SELECT pos FROM table_name_86 WHERE name = \"alyona klimenko\"", "question": "What is Alyona Klimenko's Pos.?", "context": "CREATE TABLE table_name_86 (pos VARCHAR, name VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_23 WHERE total > 2 AND rank < 2", "question": "How many third places has a total greater than 2 and a rank less than 2?", "context": "CREATE TABLE table_name_23 (third_place VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT r_bacon FROM table_name_98 WHERE county = \"passaic\"", "question": "What is the number for R Bacon in Passaic County?", "context": "CREATE TABLE table_name_98 (r_bacon VARCHAR, county VARCHAR)"}, {"answer": "SELECT d_shulman FROM table_name_9 WHERE c_abate = \"728 (43%)\"", "question": "What is the number for D. Shulman if C. Abate has 728 (43%)", "context": "CREATE TABLE table_name_9 (d_shulman VARCHAR, c_abate VARCHAR)"}, {"answer": "SELECT county FROM table_name_4 WHERE c_abate = \"728 (43%)\"", "question": "Which county has 728 (43%) listed under C. Abate?", "context": "CREATE TABLE table_name_4 (county VARCHAR, c_abate VARCHAR)"}, {"answer": "SELECT d_shulman FROM table_name_12 WHERE county = \"warren\"", "question": "What are the numbers for D. Shulman in Warren County?", "context": "CREATE TABLE table_name_12 (d_shulman VARCHAR, county VARCHAR)"}, {"answer": "SELECT county FROM table_name_51 WHERE precincts = \"90/90\"", "question": "Which County has Precincts of 90/90?", "context": "CREATE TABLE table_name_51 (county VARCHAR, precincts VARCHAR)"}, {"answer": "SELECT county FROM table_name_92 WHERE r_bacon = \"438 (4%)\"", "question": "Which county has 438 (4%) listed under R. Bacon?", "context": "CREATE TABLE table_name_92 (county VARCHAR, r_bacon VARCHAR)"}, {"answer": "SELECT format FROM table_name_57 WHERE album = \"pacific ocean blue\" AND year = 1991", "question": "What is the format of the album Pacific Ocean Blue in 1991?", "context": "CREATE TABLE table_name_57 (format VARCHAR, album VARCHAR, year VARCHAR)"}, {"answer": "SELECT artist FROM table_name_38 WHERE catalog__number = \"zk 34354\"", "question": "Who is the artist with catalog number ZK 34354?", "context": "CREATE TABLE table_name_38 (artist VARCHAR, catalog__number VARCHAR)"}, {"answer": "SELECT height FROM table_name_19 WHERE name = \"james stanton\"", "question": "How tall is player James Stanton?", "context": "CREATE TABLE table_name_19 (height VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_58 WHERE club = \"sydney university lions\"", "question": "Which player is on the roster for the Sydney University Lions?", "context": "CREATE TABLE table_name_58 (name VARCHAR, club VARCHAR)"}, {"answer": "SELECT height FROM table_name_63 WHERE name = \"james stanton\"", "question": "What is the height of player James Stanton?", "context": "CREATE TABLE table_name_63 (height VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(draft) FROM table_name_89 WHERE round > 2 AND nationality = \"united states\" AND pick < 113", "question": "What is the highest draft after round 2, is from the United States and has picked less than 113?", "context": "CREATE TABLE table_name_89 (draft INTEGER, pick VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT AVG(draft) FROM table_name_45 WHERE pick > 42 AND player = \"grant eakin\" AND round > 8", "question": "What is the average draft with a pick larger than 42, and player Grant Eakin after round 8?", "context": "CREATE TABLE table_name_45 (draft INTEGER, round VARCHAR, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT venue FROM table_name_9 WHERE competition = \"2000 afc asian cup qualification\"", "question": "What venue was the 2000 AFC Asian Cup qualification held at?", "context": "CREATE TABLE table_name_9 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_40 WHERE matches < 29", "question": "What were the lowest goals when the matches were smaller than 29?", "context": "CREATE TABLE table_name_40 (goals INTEGER, matches INTEGER)"}, {"answer": "SELECT MIN(matches) FROM table_name_42 WHERE goals > 36", "question": "What is the lowest match for goals larger than 36?", "context": "CREATE TABLE table_name_42 (matches INTEGER, goals INTEGER)"}, {"answer": "SELECT SUM(sno) FROM table_name_53 WHERE completion_schedule = \"2013\"", "question": "For the 2013 completion schedule, what is the total S.no.?", "context": "CREATE TABLE table_name_53 (sno INTEGER, completion_schedule VARCHAR)"}, {"answer": "SELECT completion_schedule FROM table_name_96 WHERE state = \"himachal pradesh\" AND total_capacity__mw_ = 800", "question": "What is the completion schedule for himachal pradesh state with a total capacity (MW) of 800?", "context": "CREATE TABLE table_name_96 (completion_schedule VARCHAR, state VARCHAR, total_capacity__mw_ VARCHAR)"}, {"answer": "SELECT MIN(sno) FROM table_name_9 WHERE state = \"jammu & kashmir\" AND completion_schedule = \"2016\"", "question": "When the completion schedule is 2016 for the state of jammu & kashmir, what is the smallest S.no.?", "context": "CREATE TABLE table_name_9 (sno INTEGER, state VARCHAR, completion_schedule VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_32 WHERE 2012 = \"a\" AND 2011 = \"1r\" AND tournament = \"shanghai masters\"", "question": "What is the 2009 value of the shanghai masters, which was A in 2012 and 1r in 2011?", "context": "CREATE TABLE table_name_32 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_34 WHERE 2008 = \"a\" AND 2012 = \"a\" AND 2009 = \"a\" AND tournament = \"paris masters\"", "question": "What is the 2011 value of the paris masters, which had A in 2008, A in 2012, A in 2009?", "context": "CREATE TABLE table_name_34 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_45 WHERE tournament = \"hamburg masters\"", "question": "What is the 2012 of the hamburg masters?", "context": "CREATE TABLE table_name_45 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_30 WHERE tournament = \"hamburg masters\"", "question": "What is the 2008 value of the hamburg masters?", "context": "CREATE TABLE table_name_30 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_19 WHERE 2012 = \"lq\" AND 2011 = \"2r\" AND 2008 = \"lq\"", "question": "What is the 2009 value with lq in 2012, 2r in 2011, and lq in 2008?", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_97 WHERE 2012 = \"a\" AND tournament = \"monte carlo masters\"", "question": "What is the 2010 value of the monte carlo masters, which had A in 2012?", "context": "CREATE TABLE table_name_97 (tournament VARCHAR)"}, {"answer": "SELECT COUNT(quantity) FROM table_name_93 WHERE drg_number_s_ = \"e 62 01\u2013e 62 05\"", "question": "What is the quantity when the DRG was E 62 01\u2013E 62 05?", "context": "CREATE TABLE table_name_93 (quantity VARCHAR, drg_number_s_ VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_88 WHERE partnering = \"graydon oliver\"", "question": "Which Opponent in the final has a Partnering of graydon oliver?", "context": "CREATE TABLE table_name_88 (opponent_in_the_final VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE partnering = \"dmitry tursunov\"", "question": "which Score has a Partnering of dmitry tursunov?", "context": "CREATE TABLE table_name_63 (score VARCHAR, partnering VARCHAR)"}, {"answer": "SELECT score FROM table_name_17 WHERE opponent_in_the_final = \"chris haggard robbie koenig\"", "question": "Which Score has an Opponent in the final of chris haggard robbie koenig?", "context": "CREATE TABLE table_name_17 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT partnering FROM table_name_11 WHERE score = \"7\u20136 7 , 6\u20131\"", "question": "Which Partnering has a Score of 7\u20136 7 , 6\u20131?", "context": "CREATE TABLE table_name_11 (partnering VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_92 WHERE tournament = \"valencia , spain\"", "question": "Name the Surface that of Tournament of valencia , spain?", "context": "CREATE TABLE table_name_92 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_52 WHERE date = \"july 4, 2005\"", "question": "Name the Opponent in the final on july 4, 2005?", "context": "CREATE TABLE table_name_52 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT result_f_a FROM table_name_55 WHERE league_position = \"1st\" AND date = \"21 february 2009\"", "question": "What was the Result F\u2013A on 21 February 2009, when the league position was 1st?", "context": "CREATE TABLE table_name_55 (result_f_a VARCHAR, league_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_99 WHERE player = \"john westin\"", "question": "What club does John Westin play for?", "context": "CREATE TABLE table_name_99 (college_junior_club_team__league_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_58 WHERE position = \"left wing\"", "question": "In what round was a left wing drafted?", "context": "CREATE TABLE table_name_58 (round VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_30 WHERE round = 5", "question": "What player was drafted in Round 5?", "context": "CREATE TABLE table_name_30 (player VARCHAR, round VARCHAR)"}, {"answer": "SELECT finish FROM table_name_1 WHERE year_s__won = \"1991\"", "question": "Where did the player who won in 1991 finish?", "context": "CREATE TABLE table_name_1 (finish VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT player FROM table_name_24 WHERE country = \"scotland\"", "question": "Which player is from scotland?", "context": "CREATE TABLE table_name_24 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT lyrics__l____music__m_ FROM table_name_60 WHERE draw = 5", "question": "What are the Lyrics (l) / Music (m) when the draw was 5?", "context": "CREATE TABLE table_name_60 (lyrics__l____music__m_ VARCHAR, draw VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE competition = \"friendly\"", "question": "What score has friendly as the competition?", "context": "CREATE TABLE table_name_11 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_6 WHERE date = \"15 november 1986\" AND away_team = \"chelmsford city\"", "question": "Playing against Chelmsford City on 15 November 1986, who was the home team?", "context": "CREATE TABLE table_name_6 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_21 WHERE away_team = \"lincoln city\"", "question": "When Lincoln City was the away team what is the tie number?", "context": "CREATE TABLE table_name_21 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE away_team = \"rochdale\"", "question": "When was the game played that had Rochdale as the away team?", "context": "CREATE TABLE table_name_95 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_52 WHERE home_team = \"scunthorpe united\"", "question": "Scunthorpe United as the home team has what tie number?", "context": "CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE date = \"6 december 1986\"", "question": "The game played on 6 December 1986 had what score?", "context": "CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT type FROM table_name_56 WHERE quantity = \"124\"", "question": "WHAT IS THE TYPE WITH 124?", "context": "CREATE TABLE table_name_56 (type VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE total = \"28:42\"", "question": "What is Score, when Total is \"28:42\"?", "context": "CREATE TABLE table_name_32 (score VARCHAR, total VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE set_1 = \"20:22\"", "question": "What is Date, when Set 1 is \"20:22\"?", "context": "CREATE TABLE table_name_49 (date VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_48 WHERE set_2 = \"21:18\"", "question": "What is Set 1, when Set 2 is \"21:18\"?", "context": "CREATE TABLE table_name_48 (set_1 VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_2 FROM table_name_81 WHERE total = \"52:44\"", "question": "What is Set 2, when Total is \"52:44\"?", "context": "CREATE TABLE table_name_81 (set_2 VARCHAR, total VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_57 WHERE tie_no = \"4\"", "question": "What is the away team with a 4 tie no.?", "context": "CREATE TABLE table_name_57 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE away_team = \"southampton\"", "question": "What is the date southampton was the away team?", "context": "CREATE TABLE table_name_52 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE home_team = \"tottenham hotspur\"", "question": "What is the score of the home team tottenham hotspur?", "context": "CREATE TABLE table_name_94 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE date = \"16 december 1987\"", "question": "What was the score of the game on 16 december 1987?", "context": "CREATE TABLE table_name_36 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_16 WHERE away_team = \"hereford united\"", "question": "Who played against the away team hereford united?", "context": "CREATE TABLE table_name_16 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_4 WHERE away_team = \"hereford united\"", "question": "Who played against away team hereford united?", "context": "CREATE TABLE table_name_4 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT clubs FROM table_name_59 WHERE position_in_1959_1960 = \"1\"", "question": "Which club was in Position 1 in 1959-1960?", "context": "CREATE TABLE table_name_59 (clubs VARCHAR, position_in_1959_1960 VARCHAR)"}, {"answer": "SELECT season_joined_league FROM table_name_28 WHERE settlements = \"\u00e9vora\"", "question": "In which season did the \u00e9vora settlements join the league?", "context": "CREATE TABLE table_name_28 (season_joined_league VARCHAR, settlements VARCHAR)"}, {"answer": "SELECT position_in_1959_1960 FROM table_name_45 WHERE seasons_at_this_level = \"14 seasons\"", "question": "What was the position in 1959-1960 for the club that had 14 seasons at this level?", "context": "CREATE TABLE table_name_45 (position_in_1959_1960 VARCHAR, seasons_at_this_level VARCHAR)"}, {"answer": "SELECT position_in_1959_1960 FROM table_name_19 WHERE clubs = \"sporting de braga\"", "question": "What was the position in 1959-1960 for the Sporting De Braga club?", "context": "CREATE TABLE table_name_19 (position_in_1959_1960 VARCHAR, clubs VARCHAR)"}, {"answer": "SELECT season_joined_league FROM table_name_54 WHERE seasons_at_this_level = \"15 seasons\"", "question": "What is the \"season joined league\" for the club that had 15 seasons at this level?", "context": "CREATE TABLE table_name_54 (season_joined_league VARCHAR, seasons_at_this_level VARCHAR)"}, {"answer": "SELECT country FROM table_name_79 WHERE score = 71 - 66 - 72 - 72 = 281", "question": "What country has a score of 71-66-72-72=281?", "context": "CREATE TABLE table_name_79 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(money___) AS \u00a3__ FROM table_name_90 WHERE player = \"payne stewart\"", "question": "What is the total amount of money that Payne Stewart has?", "context": "CREATE TABLE table_name_90 (money___ INTEGER, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_92 WHERE player = \"nick faldo\"", "question": "What country has player Nick Faldo?", "context": "CREATE TABLE table_name_92 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_40 WHERE score = 64 - 73 - 74 - 69 = 280", "question": "What is the to par for the score 64-73-74-69=280?", "context": "CREATE TABLE table_name_40 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_89 WHERE carriers = \"china eastern airlines, korean air\" AND passengers > 97 OFFSET 055", "question": "What is the lowest rank for China Eastern Airlines, Korean Air with more passengers than 97,055?", "context": "CREATE TABLE table_name_89 (rank INTEGER, carriers VARCHAR, passengers VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_45 WHERE passengers > 73 OFFSET 754", "question": "What is the smallest rank for passengers more than 73,754?", "context": "CREATE TABLE table_name_45 (rank INTEGER, passengers INTEGER)"}, {"answer": "SELECT carriers FROM table_name_19 WHERE rank = 20", "question": "Which carrier is ranked 20?", "context": "CREATE TABLE table_name_19 (carriers VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_4 WHERE passengers < 124 OFFSET 296", "question": "What is the highest rank when there are fewer than 124,296 passengers?", "context": "CREATE TABLE table_name_4 (rank INTEGER, passengers INTEGER)"}, {"answer": "SELECT 2013 FROM table_name_76 WHERE tournament = \"grand slam tournaments\"", "question": "What's the 2013 result for the grand slam tournaments?", "context": "CREATE TABLE table_name_76 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_20 WHERE 2006 = \"a\"", "question": "What's the 2010 result when 2006 is a?", "context": "CREATE TABLE table_name_20 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_47 WHERE 2003 = \"a\"", "question": "What tournament has a 2003 of a?", "context": "CREATE TABLE table_name_47 (tournament VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_83 WHERE 2003 = \"a\"", "question": "What's the 2007 result when 2003 is a?", "context": "CREATE TABLE table_name_83 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_25 WHERE 2010 = \"2r\" AND 2013 = \"w\"", "question": "What's the 2011 result when 2010 is 2r and 2013 is w?", "context": "CREATE TABLE table_name_25 (Id VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_64 WHERE 2001 = \"sf\"", "question": "What's the 2005 result when 2001 is sf?", "context": "CREATE TABLE table_name_64 (Id VARCHAR)"}, {"answer": "SELECT binibining_pilipinas_world FROM table_name_72 WHERE second_runner_up = \"sonia santiago\"", "question": "Which Binibining Pilipinas-World has a Second runner-up of sonia santiago?", "context": "CREATE TABLE table_name_72 (binibining_pilipinas_world VARCHAR, second_runner_up VARCHAR)"}, {"answer": "SELECT year FROM table_name_54 WHERE binibining_pilipinas_international = \"alma concepcion\"", "question": "Which Year has a Binibining Pilipinas International of alma concepcion?", "context": "CREATE TABLE table_name_54 (year VARCHAR, binibining_pilipinas_international VARCHAR)"}, {"answer": "SELECT binibining_pilipinas_international FROM table_name_24 WHERE binibining_pilipinas_world = \"sharmaine gutierrez\"", "question": "Which Binibining Pilipinas International has a Binibining Pilipinas-World of sharmaine gutierrez?", "context": "CREATE TABLE table_name_24 (binibining_pilipinas_international VARCHAR, binibining_pilipinas_world VARCHAR)"}, {"answer": "SELECT result FROM table_name_9 WHERE site = \"rice stadium \u2022 houston, tx\"", "question": "Which Result has a Site of rice stadium \u2022 houston, tx?", "context": "CREATE TABLE table_name_9 (result VARCHAR, site VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_29 WHERE site = \"razorback stadium \u2022 fayetteville, ar\" AND date = \"october 7, 1967\"", "question": "What Opponent has a Site of razorback stadium \u2022 fayetteville, ar, and a Date of october 7, 1967?", "context": "CREATE TABLE table_name_29 (opponent VARCHAR, site VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_63 WHERE site = \"war memorial stadium \u2022 little rock, ar\" AND result = \"l6\u20137\"", "question": "What Opponent has a Site of war memorial stadium \u2022 little rock, ar, and a Result of l6\u20137?", "context": "CREATE TABLE table_name_63 (opponent VARCHAR, site VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_86 WHERE date = \"october 14, 1967\"", "question": "What Result has a Date of october 14, 1967?", "context": "CREATE TABLE table_name_86 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_13 WHERE result = \"l12\u201321\"", "question": "What Attendance has a Result of l12\u201321?", "context": "CREATE TABLE table_name_13 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT site FROM table_name_83 WHERE attendance = \"53,000\" AND date = \"october 21, 1967\"", "question": "What Site has Attendance of 53,000, and a Date of october 21, 1967?", "context": "CREATE TABLE table_name_83 (site VARCHAR, attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT region FROM table_name_51 WHERE format_s_ = \"cd\" AND label = \"toshiba emi\"", "question": "What region is the toshiba emi label with a cd format?", "context": "CREATE TABLE table_name_51 (region VARCHAR, format_s_ VARCHAR, label VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE catalog = \"asw 28033\"", "question": "What is the dage of catalog asw 28033?", "context": "CREATE TABLE table_name_68 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE region = \"japan\"", "question": "What is the date with a Japan region?", "context": "CREATE TABLE table_name_70 (date VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_name_72 WHERE format_s_ = \"lp\" AND date = \"4 august 2008\"", "question": "What region has a lp format on 4 August 2008?", "context": "CREATE TABLE table_name_72 (region VARCHAR, format_s_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT region FROM table_name_4 WHERE date = \"11 august 2008\"", "question": "What region is on 11 August 2008?", "context": "CREATE TABLE table_name_4 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(pos) FROM table_name_93 WHERE h_a_n = \"neutral\" AND inn > 2", "question": "What is the position with a neutral H/A/N and more than 2 innings?", "context": "CREATE TABLE table_name_93 (pos INTEGER, h_a_n VARCHAR, inn VARCHAR)"}, {"answer": "SELECT venue FROM table_name_85 WHERE h_a_n = \"neutral\" AND pos < 3 AND score = \"141\"", "question": "Which venue has a neutral H/A/N, lower than position 3 and a score of 141?", "context": "CREATE TABLE table_name_85 (venue VARCHAR, score VARCHAR, h_a_n VARCHAR, pos VARCHAR)"}, {"answer": "SELECT h_a_n FROM table_name_13 WHERE score = \"105*\u2660\"", "question": "Which H/A/N has a score of 105*\u2660?", "context": "CREATE TABLE table_name_13 (h_a_n VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(goals_scored) FROM table_name_78 WHERE played < 34 AND draw > 2", "question": "What is the average goals scored when less than 34 were played and there were more than 2 draws?", "context": "CREATE TABLE table_name_78 (goals_scored INTEGER, played VARCHAR, draw VARCHAR)"}, {"answer": "SELECT AVG(goals_scored) FROM table_name_48 WHERE points = \"44\" AND place > 5", "question": "What is the average goals scored of the team who scored 44 points and placed higher than 5?", "context": "CREATE TABLE table_name_48 (goals_scored INTEGER, points VARCHAR, place VARCHAR)"}, {"answer": "SELECT MIN(place) FROM table_name_41 WHERE goals_conceded = 36 AND lost > 6", "question": "What is the lowest place of the team who conceded 36 goals and lost more than 6 times?", "context": "CREATE TABLE table_name_41 (place INTEGER, goals_conceded VARCHAR, lost VARCHAR)"}, {"answer": "SELECT games FROM table_name_36 WHERE losses > 1 AND percent = 0.5 AND wins = 2", "question": "what is games when the losses is more than 1, percent is 0.5 and wins is 2?", "context": "CREATE TABLE table_name_36 (games VARCHAR, wins VARCHAR, losses VARCHAR, percent VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_53 WHERE percent > 0.4 AND teams = \"chargers~\"", "question": "what is the average wins when percent is more than 0.4 and teams is chargers~?", "context": "CREATE TABLE table_name_53 (wins INTEGER, percent VARCHAR, teams VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_31 WHERE teams = \"lions\" AND percent > 0", "question": "What is the average wins when teams is lions and the percent is more than 0?", "context": "CREATE TABLE table_name_31 (wins INTEGER, teams VARCHAR, percent VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_23 WHERE losses < 1 AND teams = \"rams\" AND games > 8", "question": "what is the highest wins when the losses is less than 1, team is rams and the games is more than 8?", "context": "CREATE TABLE table_name_23 (wins INTEGER, games VARCHAR, losses VARCHAR, teams VARCHAR)"}, {"answer": "SELECT category FROM table_name_35 WHERE opponent = \"matthew barton\"", "question": "What category is Matthew Barton?", "context": "CREATE TABLE table_name_35 (category VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT launched FROM table_name_33 WHERE commissioned = \"november 1975\" AND bow_number = \"ps-18\"", "question": "When did the ship commissioned in November 1975 with a bow number of ps-18 launch?", "context": "CREATE TABLE table_name_33 (launched VARCHAR, commissioned VARCHAR, bow_number VARCHAR)"}, {"answer": "SELECT launched FROM table_name_22 WHERE commissioned = \"july 1948\" AND bow_number = \"ps-31\"", "question": "When did the ship that was commissioned July 1948 with a bow number of ps-31 launch?", "context": "CREATE TABLE table_name_22 (launched VARCHAR, commissioned VARCHAR, bow_number VARCHAR)"}, {"answer": "SELECT commissioned FROM table_name_78 WHERE ship_name = \"brp miguel malvar\"", "question": "When was the ship BRP Miguel Malvar commissioned?", "context": "CREATE TABLE table_name_78 (commissioned VARCHAR, ship_name VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_50 WHERE area_km_2 < 342.4 AND official_name = \"northfield\"", "question": "What is the population of northfield parish that has an area less than 342.4?", "context": "CREATE TABLE table_name_50 (population INTEGER, area_km_2 VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_32 WHERE census_ranking = \"579 of 5,008\"", "question": "What is the population of the parish with a census ranking of 579 of 5,008?", "context": "CREATE TABLE table_name_32 (population INTEGER, census_ranking VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_78 WHERE area_km_2 = 304.06", "question": "What is the population of the parish that has an area of 304.06?", "context": "CREATE TABLE table_name_78 (population INTEGER, area_km_2 VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_85 WHERE notes = \"1500 m\" AND competition = \"world junior championships\"", "question": "What is the earliest year the world junior championships has 1500 m notes?", "context": "CREATE TABLE table_name_85 (year INTEGER, notes VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_2 WHERE notes = \"5000 m\" AND year = 2009 AND position = \"1st\"", "question": "Which venue had 5000 m notes in 2009 with a 1st position?", "context": "CREATE TABLE table_name_2 (venue VARCHAR, position VARCHAR, notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_50 WHERE position = \"7th (heats)\"", "question": "What is the average year with 7th (heats) position?", "context": "CREATE TABLE table_name_50 (year INTEGER, position VARCHAR)"}, {"answer": "SELECT method FROM table_name_55 WHERE opponent = \"kenneth allen\"", "question": "What Method was used with opponent Kenneth Allen?", "context": "CREATE TABLE table_name_55 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT remarks FROM table_name_38 WHERE country_of_origin = \"norway\"", "question": "What is the remark for Norway?", "context": "CREATE TABLE table_name_38 (remarks VARCHAR, country_of_origin VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_7 WHERE opponents = \"kaizer chiefs\"", "question": "How many people attended the game against the Kaizer Chiefs?", "context": "CREATE TABLE table_name_7 (attendance INTEGER, opponents VARCHAR)"}, {"answer": "SELECT result_f___a FROM table_name_11 WHERE h___a = \"h\" AND attendance > 31 OFFSET 727", "question": "What is the result F-A with an H/A of h and more than 31,727 attending?", "context": "CREATE TABLE table_name_11 (result_f___a VARCHAR, h___a VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT player FROM table_name_23 WHERE college_junior_club_team__league_ = \"val d'or foreurs ( qmjhl )\"", "question": "What is Player, when College/Junior/Club Team (League) is \"Val d'Or Foreurs ( QMJHL )\"?", "context": "CREATE TABLE table_name_23 (player VARCHAR, college_junior_club_team__league_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_53 WHERE player = \"magnus nygren\"", "question": "What is the Position, when Player is \"Magnus Nygren\"?", "context": "CREATE TABLE table_name_53 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_30 WHERE round < 5 AND nationality = \"canada\" AND college_junior_club_team__league_ = \"saint john sea dogs ( qmjhl )\"", "question": "What is Position, when Round is less than 5, when Nationality is \"Canada\", and when College/Junior/Club Team (League) is \"Saint John Sea Dogs ( QMJHL )\"?", "context": "CREATE TABLE table_name_30 (position VARCHAR, college_junior_club_team__league_ VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_18 WHERE position = \"defence\" AND nationality = \"canada\" AND round < 5 AND player = \"josiah didier\"", "question": "What is College/Junior/Club Team (League), when Position is \"Defence\", when Nationality is \"Canada\", when Round is less than 5, and when Player is \"Josiah Didier\"?", "context": "CREATE TABLE table_name_18 (college_junior_club_team__league_ VARCHAR, player VARCHAR, round VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_39 WHERE player = \"ian baker-finch\"", "question": "count the  the average Total of ian baker-finch?", "context": "CREATE TABLE table_name_39 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_62 WHERE year_s__won = \"1963\"", "question": "Which Country has a Year(s) won of 1963?", "context": "CREATE TABLE table_name_62 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_72 WHERE score = 68 - 69 - 67 - 73 = 277", "question": "What is the money for the player with a score of 68-69-67-73=277?", "context": "CREATE TABLE table_name_72 (money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_55 WHERE score = 72 - 71 - 65 - 69 = 277", "question": "What is the to par of the player with a 72-71-65-69=277 score?", "context": "CREATE TABLE table_name_55 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_73 WHERE money___$__ = \"playoff\" AND score = 66 - 67 - 70 - 67 = 270", "question": "What is the country of the player with playoff money and a score of 66-67-70-67=270?", "context": "CREATE TABLE table_name_73 (country VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_24 WHERE score = 76 - 70 - 65 - 68 = 279", "question": "How much money does the player with a score of 76-70-65-68=279 have?", "context": "CREATE TABLE table_name_24 (money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE money___$__ = \"112,500\" AND player = \"darren clarke\"", "question": "What is the score of player darren clarke, who has $112,500?", "context": "CREATE TABLE table_name_72 (score VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_59 WHERE country = \"united states\" AND player = \"notah begay iii\"", "question": "What is the to par of player notah begay iii from the United States?", "context": "CREATE TABLE table_name_59 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT song FROM table_name_65 WHERE draw > 4 AND place = \"1st\"", "question": "What song has a draw more than 4 in 1st place?", "context": "CREATE TABLE table_name_65 (song VARCHAR, draw VARCHAR, place VARCHAR)"}, {"answer": "SELECT weight FROM table_name_96 WHERE name = \"\u00e1d\u00e1m steinmetz category:articles with hcards\"", "question": "Name the Weight of \u00e1d\u00e1m steinmetz category:articles with hcards?", "context": "CREATE TABLE table_name_96 (weight VARCHAR, name VARCHAR)"}, {"answer": "SELECT weight FROM table_name_10 WHERE name = \"bal\u00e1zs h\u00e1rai category:articles with hcards\"", "question": "Name the Weight which has a Name of bal\u00e1zs h\u00e1rai category:articles with hcards?", "context": "CREATE TABLE table_name_10 (weight VARCHAR, name VARCHAR)"}, {"answer": "SELECT 2012 AS _club FROM table_name_23 WHERE name = \"norbert hosny\u00e1nszky category:articles with hcards\"", "question": "Name the 012 club which has of norbert hosny\u00e1nszky category:articles with hcards?", "context": "CREATE TABLE table_name_23 (name VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_78 WHERE venue = \"twickenham , london\" AND status = \"six nations\" AND opposing_teams = \"france\"", "question": "What is the lowest Against, when Venue is \"Twickenham , London\", when Status is \"Six Nations\", and when Opposing Teams is \"France\"?", "context": "CREATE TABLE table_name_78 (against INTEGER, opposing_teams VARCHAR, venue VARCHAR, status VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_63 WHERE date = \"27/02/2005\"", "question": "What is the total number of Against, when Date is \"27/02/2005\"?", "context": "CREATE TABLE table_name_63 (against VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_29 WHERE date = \"27/02/2005\"", "question": "What is the highest Against, when Date is \"27/02/2005\"?", "context": "CREATE TABLE table_name_29 (against INTEGER, date VARCHAR)"}, {"answer": "SELECT status FROM table_name_16 WHERE opposing_teams = \"italy\"", "question": "What is Status, when Opposing Teams is \"Italy\"?", "context": "CREATE TABLE table_name_16 (status VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT name FROM table_name_75 WHERE apparent_magnitude < 11.4 AND ra___j2000__ = \"04h17m35.8s\"", "question": "Which Name has Apparent Magnitude smaller than 11.4, and R.A. (J2000) of 04h17m35.8s?", "context": "CREATE TABLE table_name_75 (name VARCHAR, apparent_magnitude VARCHAR, ra___j2000__ VARCHAR)"}, {"answer": "SELECT ra___j2000__ FROM table_name_68 WHERE name = \"ngc 1543\"", "question": "Which R.A. (J2000) has a Name of ngc 1543?", "context": "CREATE TABLE table_name_68 (ra___j2000__ VARCHAR, name VARCHAR)"}, {"answer": "SELECT dec___j2000__ FROM table_name_31 WHERE redshift__km__s__ = \"1331 \u00b1 3\"", "question": "Which Dec. (J2000) has a Redshift (km/ s) of 1331 \u00b1 3?", "context": "CREATE TABLE table_name_31 (dec___j2000__ VARCHAR, redshift__km__s__ VARCHAR)"}, {"answer": "SELECT ra___j2000__ FROM table_name_64 WHERE name = \"ngc 1515\"", "question": "Which R.A. (J2000) has a Name of ngc 1515?", "context": "CREATE TABLE table_name_64 (ra___j2000__ VARCHAR, name VARCHAR)"}, {"answer": "SELECT ra___j2000__ FROM table_name_22 WHERE apparent_magnitude = 11.7 AND dec___j2000__ = \"\u00b007\u203206\u2033\"", "question": "Which R.A. (J2000) has Apparent Magnitude of 11.7, and Dec. (J2000) of \u00b007\u203206\u2033?", "context": "CREATE TABLE table_name_22 (ra___j2000__ VARCHAR, apparent_magnitude VARCHAR, dec___j2000__ VARCHAR)"}, {"answer": "SELECT player FROM table_name_66 WHERE to_par = \"+11\"", "question": "Which player had a To par of +11?", "context": "CREATE TABLE table_name_66 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_47 WHERE finish = \"t48\" AND year_s__won = \"1997\"", "question": "Who won in 1997 with a finish of t48?", "context": "CREATE TABLE table_name_47 (player VARCHAR, finish VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT player FROM table_name_33 WHERE country = \"united states\" AND total = 297", "question": "What player from the United States had a total of 297?", "context": "CREATE TABLE table_name_33 (player VARCHAR, country VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_19 WHERE year_s__won = \"1988\"", "question": "Which country won in 1988?", "context": "CREATE TABLE table_name_19 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT party FROM table_name_95 WHERE term_start = \"5 august 1999\"", "question": "Which party had a term start of 5 august 1999?", "context": "CREATE TABLE table_name_95 (party VARCHAR, term_start VARCHAR)"}, {"answer": "SELECT term_end FROM table_name_40 WHERE minister = \"danny ayalon\"", "question": "What term end had minister Danny Ayalon?", "context": "CREATE TABLE table_name_40 (term_end VARCHAR, minister VARCHAR)"}, {"answer": "SELECT governments FROM table_name_60 WHERE party = \"yisrael beiteinu\"", "question": "Which goverment had a party of yisrael beiteinu?", "context": "CREATE TABLE table_name_60 (governments VARCHAR, party VARCHAR)"}, {"answer": "SELECT minister FROM table_name_82 WHERE party = \"labor party\" AND governments = \"26\"", "question": "Who was the minister of the labor party and had 26 goverments?", "context": "CREATE TABLE table_name_82 (minister VARCHAR, party VARCHAR, governments VARCHAR)"}, {"answer": "SELECT category FROM table_name_44 WHERE year < 2011", "question": "What is the category that came before 2011?", "context": "CREATE TABLE table_name_44 (category VARCHAR, year INTEGER)"}, {"answer": "SELECT year FROM table_name_58 WHERE award = \"premios carlos gardel 2009\"", "question": "What is the year of the Premios Carlos Gardel 2009 award?", "context": "CREATE TABLE table_name_58 (year VARCHAR, award VARCHAR)"}, {"answer": "SELECT height FROM table_name_25 WHERE contestant = \"andrea suarez lazaro\"", "question": "What is Andrea Suarez Lazaro's height?", "context": "CREATE TABLE table_name_25 (height VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT height FROM table_name_95 WHERE contestant = \"niurbi encarnaci\u00f3n ynoa\"", "question": "What is niurbi encarnaci\u00f3n ynoa's height?", "context": "CREATE TABLE table_name_95 (height VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT province, _community FROM table_name_13 WHERE hometown = \"jamao afuera\"", "question": "What is the province for Jamao Afuera?", "context": "CREATE TABLE table_name_13 (province VARCHAR, _community VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT geographical_regions FROM table_name_1 WHERE hometown = \"imbert\"", "question": "What is the geographical region for hometown Imbert?", "context": "CREATE TABLE table_name_1 (geographical_regions VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT name_of_ship FROM table_name_64 WHERE date = \"20february1942\"", "question": "What is the Name of the Ship attacked on 20February1942?", "context": "CREATE TABLE table_name_64 (name_of_ship VARCHAR, date VARCHAR)"}, {"answer": "SELECT name_of_ship FROM table_name_96 WHERE fate = \"sunk at\" AND time = \"01:00\"", "question": "Which ship was sunk at 01:00?", "context": "CREATE TABLE table_name_96 (name_of_ship VARCHAR, fate VARCHAR, time VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_73 WHERE score = 68 - 72 - 73 = 213", "question": "What is the to par for the 68-72-73=213 score?", "context": "CREATE TABLE table_name_73 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_56 WHERE score = 69 - 70 - 72 = 211", "question": "What is the to par for the 69-70-72=211 score?", "context": "CREATE TABLE table_name_56 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_72 WHERE country = \"united states\" AND score = 67 - 71 - 73 = 211", "question": "What is the to par for the United States with a 67-71-73=211 score?", "context": "CREATE TABLE table_name_72 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_16 WHERE place = \"t4\" AND score = 67 - 71 - 73 = 211", "question": "What country has t4 place and a 67-71-73=211 score?", "context": "CREATE TABLE table_name_16 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_43 WHERE country = \"australia\" AND score = 73 - 69 - 71 = 213", "question": "What is the to par for Australia and a 73-69-71=213 score?", "context": "CREATE TABLE table_name_43 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_name_31 WHERE partner = \"app\" AND population_served > 2000 AND design_flow__lpm_ = 375", "question": "What Location has a Partner of app, a Population Served larger than 2000, and a Design flow (LPM) of 375?", "context": "CREATE TABLE table_name_31 (location VARCHAR, design_flow__lpm_ VARCHAR, partner VARCHAR, population_served VARCHAR)"}, {"answer": "SELECT construction_start FROM table_name_39 WHERE inauguration_date = \"2010 june\"", "question": "What Construction Start has an Inauguration Date of 2010 june?", "context": "CREATE TABLE table_name_39 (construction_start VARCHAR, inauguration_date VARCHAR)"}, {"answer": "SELECT construction_start FROM table_name_99 WHERE design_flow__lpm_ = 1300", "question": "What Construction Start has a Design flow (LPM) of 1300?", "context": "CREATE TABLE table_name_99 (construction_start VARCHAR, design_flow__lpm_ VARCHAR)"}, {"answer": "SELECT location FROM table_name_40 WHERE design_flow__lpm_ < 1900 AND construction_start = \"2006 june\"", "question": "What Location has a Design flow (LPM) smaller than 1900, and a Construction Start of 2006 june?", "context": "CREATE TABLE table_name_40 (location VARCHAR, design_flow__lpm_ VARCHAR, construction_start VARCHAR)"}, {"answer": "SELECT partner FROM table_name_2 WHERE construction_start = \"2008 january\"", "question": "What Partner has a Construction Start of 2008 january?", "context": "CREATE TABLE table_name_2 (partner VARCHAR, construction_start VARCHAR)"}, {"answer": "SELECT SUM(design_flow__lpm_) FROM table_name_6 WHERE partner = \"app\" AND construction_start = \"2008 january\" AND population_served > 3500", "question": "What is the total Design flow (LPM) with a Partner of app, a Construction Start of 2008 january, and a Population Served larger than 3500?", "context": "CREATE TABLE table_name_6 (design_flow__lpm_ INTEGER, population_served VARCHAR, partner VARCHAR, construction_start VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_76 WHERE player = \"sandy lyle\"", "question": "What is Sandy Lyle's To Par?", "context": "CREATE TABLE table_name_76 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE country = \"australia\" AND place = \"t1\"", "question": "What is Australia's score where they were in place t1?", "context": "CREATE TABLE table_name_43 (score VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_16 WHERE country = \"wales\"", "question": "What place has Wales as a country?", "context": "CREATE TABLE table_name_16 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_28 WHERE country = \"australia\" AND player = \"peter senior\"", "question": "What is the To Par of Peter Senior from Australia?", "context": "CREATE TABLE table_name_28 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE to_par = \"+1\" AND country = \"england\" AND player = \"howard clark\"", "question": "What is the score of Howard Clark from England with a To Par of +1?", "context": "CREATE TABLE table_name_55 (score VARCHAR, player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE to_par = \"+1\" AND country = \"spain\"", "question": "What is the score of the player with a To Par of +1 from Spain?", "context": "CREATE TABLE table_name_54 (score VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT status FROM table_name_39 WHERE opposing_teams = \"u.s.a.\"", "question": "Who won the event against U.S.A.?", "context": "CREATE TABLE table_name_39 (status VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT venue FROM table_name_3 WHERE against = 15 AND date = \"10/11/2001\"", "question": "Where was the match on 10/11/2001 against 15?", "context": "CREATE TABLE table_name_3 (venue VARCHAR, against VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_81 WHERE status = \"six nations\" AND venue = \"lansdowne road, dublin\"", "question": "What is the lowest against team in the Six Nations status in Lansdowne Road, Dublin?", "context": "CREATE TABLE table_name_81 (against INTEGER, status VARCHAR, venue VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_54 WHERE 2010 = \"1r\" AND 2007 = \"a\" AND 2009 = \"1r\"", "question": "What 2008 has 1r as a 2010, A as the 2007, and 1r as the 2009?", "context": "CREATE TABLE table_name_54 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_40 WHERE 2007 = \"a\" AND 2010 = \"2r\"", "question": "What 2008 has A as the 2007, and 2r as the 2010?", "context": "CREATE TABLE table_name_40 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_58 WHERE 2011 = \"lq\"", "question": "What 2009 has lq as the 2011?", "context": "CREATE TABLE table_name_58 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_33 WHERE 2007 = \"345\"", "question": "What 2009 has 345 as the 2007?", "context": "CREATE TABLE table_name_33 (Id VARCHAR)"}, {"answer": "SELECT nation FROM table_name_24 WHERE sport = \"weightlifting\" AND pinyin = \"k\u00f9k\u00e8 q\u00fand\u01ceo\"", "question": "What nation has a sport of weightlifting and a pinyin of k\u00f9k\u00e8 q\u00fand\u01ceo?", "context": "CREATE TABLE table_name_24 (nation VARCHAR, sport VARCHAR, pinyin VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE team = \"glentoran\" AND venue = \"windsor park, belfast\"", "question": "What day did Glentoran play at Windsor Park, Belfast?", "context": "CREATE TABLE table_name_34 (date VARCHAR, team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE score = \"1-0\"", "question": "What day was the score 1-0?", "context": "CREATE TABLE table_name_39 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT team FROM table_name_40 WHERE score = \"2-1\"", "question": "Which team scored 2-1?", "context": "CREATE TABLE table_name_40 (team VARCHAR, score VARCHAR)"}, {"answer": "SELECT 1998 FROM table_name_60 WHERE 2003 = \"2r\"", "question": "What is the 1998 value with 2r in 2003?", "context": "CREATE TABLE table_name_60 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_60 WHERE 1994 = \"2r\"", "question": "What is the 2004 value with 2r in 1994?", "context": "CREATE TABLE table_name_60 (Id VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_10 WHERE 1994 = \"1r\" AND tournament = \"french open\"", "question": "What is the 2003 value for the french open, which has a 1r in 1994?", "context": "CREATE TABLE table_name_10 (tournament VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_50 WHERE 1998 = \"1r\" AND 1994 = \"1r\" AND career = \"7-12\"", "question": "What is the 2003 value with a 1r in 1998, a 14 in 1994, and a 7-12 career?", "context": "CREATE TABLE table_name_50 (career VARCHAR)"}, {"answer": "SELECT driver FROM table_name_50 WHERE fin_pos = 8", "question": "Which driver finished in position 8?", "context": "CREATE TABLE table_name_50 (driver VARCHAR, fin_pos VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_85 WHERE driver = \"marco andretti\" AND fin_pos > 19", "question": "What is the average grid for Marco Andretti with a finishing position higher than 19?", "context": "CREATE TABLE table_name_85 (grid INTEGER, driver VARCHAR, fin_pos VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_53 WHERE car_no = 98", "question": "What is Car number 98's lowest grid?", "context": "CREATE TABLE table_name_53 (grid INTEGER, car_no VARCHAR)"}, {"answer": "SELECT MAX(laps) AS Led FROM table_name_26 WHERE grid < 4 AND fin_pos = 15", "question": "What is the highest Laps Led with a grid of less than 4 and a finishing position of 15?", "context": "CREATE TABLE table_name_26 (laps INTEGER, grid VARCHAR, fin_pos VARCHAR)"}, {"answer": "SELECT AVG(qiangshu) FROM table_name_45 WHERE rank > 4 AND jianshu < 9.22", "question": "What is the average Qiangshu lower than rank 4 and less than 9.22 Jianshu?", "context": "CREATE TABLE table_name_45 (qiangshu INTEGER, rank VARCHAR, jianshu VARCHAR)"}, {"answer": "SELECT AVG(jianshu) FROM table_name_29 WHERE rank < 2 AND qiangshu < 9.85", "question": "What is the average Jianshu higher than rank 2, with a Qiangshu smaller than 9.85?", "context": "CREATE TABLE table_name_29 (jianshu INTEGER, rank VARCHAR, qiangshu VARCHAR)"}, {"answer": "SELECT became_consort FROM table_name_86 WHERE spouse = \"louis ii\"", "question": "On what date did the woman married to Louis II become consort?", "context": "CREATE TABLE table_name_86 (became_consort VARCHAR, spouse VARCHAR)"}, {"answer": "SELECT date FROM table_name_8 WHERE record = \"32\u201331\u20136\"", "question": "What is the Date of the game when the Record is 32\u201331\u20136?", "context": "CREATE TABLE table_name_8 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_66 WHERE arena = \"honda center\" AND date = \"march 29\"", "question": "What is the Opponent at the Honda Center on March 29?", "context": "CREATE TABLE table_name_66 (opponent VARCHAR, arena VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_3 WHERE record = \"34\u201331\u20136\"", "question": "What is the Opponent when the Record is 34\u201331\u20136?", "context": "CREATE TABLE table_name_3 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE away_team = \"minehead\"", "question": "What is Date, when Away Team is \"Minehead\"?", "context": "CREATE TABLE table_name_13 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE away_team = \"barnet\"", "question": "What is Date, when Away Team is \"Barnet\"?", "context": "CREATE TABLE table_name_7 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_69 WHERE home_team = \"hull city\"", "question": "What is Tie no, when Home Team is \"Hull City\"?", "context": "CREATE TABLE table_name_69 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_3 WHERE home_team = \"swindon town\"", "question": "What is Away Team, when Home Team is \"Swindon Town\"?", "context": "CREATE TABLE table_name_3 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_30 WHERE home_team = \"boston united\"", "question": "What is Away Team, when Home Team is \"Boston United\"?", "context": "CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE player = \"nick faldo\"", "question": "What was Nick Faldo's score?", "context": "CREATE TABLE table_name_73 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_18 WHERE place = \"t8\" AND score = 71 - 71 - 71 = 213", "question": "What country placed t8 and scored 71-71-71=213?", "context": "CREATE TABLE table_name_18 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_23 WHERE score = 67 - 73 - 73 = 213", "question": "What was the place when the score was 67-73-73=213?", "context": "CREATE TABLE table_name_23 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_12 WHERE score = 70 - 69 - 74 = 213", "question": "What was the place when the score was 70-69-74=213?", "context": "CREATE TABLE table_name_12 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_26 WHERE country = \"united states\" AND player = \"fred couples\"", "question": "What was United States place when the player was Fred Couples?", "context": "CREATE TABLE table_name_26 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_82 WHERE 2008 = \"a\" AND 2011 = \"a\"", "question": "WHAT IS THE TOURNAMENT WITH 2008 AND 2011 WITH A?", "context": "CREATE TABLE table_name_82 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_35 WHERE 2005 = \"1r\"", "question": "WHAT IS THE 2012 WITH 2005 OF 1R?", "context": "CREATE TABLE table_name_35 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_93 WHERE 2012 = \"2r\" AND tournament = \"miami masters\"", "question": "WHAT IS THE 2010 WITH 2012 OF 2R AT MIAMI MASTERS?", "context": "CREATE TABLE table_name_93 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_84 WHERE tournament = \"win-loss\" AND 2005 = \"a\"", "question": "WHAT IS THE 2008 WITH TOURNAMENT OF WIN-LOSS, AND 2005 A?", "context": "CREATE TABLE table_name_84 (tournament VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_5 WHERE tournament = \"madrid masters\"", "question": "WHAT IS THE 2007 AT MADRID MASTERS?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_67 WHERE 2007 = \"a\" AND 2008 = \"3r\"", "question": "WHAT IS THE 2011 WITH 2007 AT A AND2 008 AT 3R?", "context": "CREATE TABLE table_name_67 (Id VARCHAR)"}, {"answer": "SELECT game_title FROM table_name_48 WHERE metacritic = \"85/100\" AND year_released < 2010", "question": "What game was released before 2010 with a Metacritic of 85/100?", "context": "CREATE TABLE table_name_48 (game_title VARCHAR, metacritic VARCHAR, year_released VARCHAR)"}, {"answer": "SELECT metacritic FROM table_name_76 WHERE year_released > 2005 AND platform = \"playstation 3\" AND gamerankings = \"84.44%\"", "question": "What is the Metacritic released after 2005, with a Platform of playstation 3 and a GameRankings of 84.44%?", "context": "CREATE TABLE table_name_76 (metacritic VARCHAR, gamerankings VARCHAR, year_released VARCHAR, platform VARCHAR)"}, {"answer": "SELECT gamerankings FROM table_name_40 WHERE metacritic = \"83/100\" AND year_released = 2011", "question": "What is the GameRankings Released of 2011 with a Metacritic of 83/100?", "context": "CREATE TABLE table_name_40 (gamerankings VARCHAR, metacritic VARCHAR, year_released VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_7 WHERE attendance < 26 OFFSET 048", "question": "How many weeks have an attendance less than 26,048?", "context": "CREATE TABLE table_name_7 (week INTEGER, attendance INTEGER)"}, {"answer": "SELECT record FROM table_name_44 WHERE game_site = \"bears stadium\" AND opponent = \"new york titans\"", "question": "What was the record when the Denver Broncos played the New York Titans at Bears Stadium?", "context": "CREATE TABLE table_name_44 (record VARCHAR, game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_78 WHERE date = \"december 9, 1962\"", "question": "What was the result of the match on December 9, 1962?", "context": "CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_18 WHERE score = 70 - 68 - 68 - 71 = 277", "question": "What is To par, when Score is \"70-68-68-71=277\"?", "context": "CREATE TABLE table_name_18 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE date = \"12 september 1990\"", "question": "What is the score of the match on 12 September 1990?", "context": "CREATE TABLE table_name_29 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT league_from FROM table_name_87 WHERE position = \"g\"", "question": "For what league was the player in G position drafted?", "context": "CREATE TABLE table_name_87 (league_from VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_13 WHERE player = \"greg mckegg\"", "question": "What pick number was player Greg McKegg?", "context": "CREATE TABLE table_name_13 (pick__number INTEGER, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_28 WHERE player = \"tony jacklin\"", "question": "What Place has a Player of tony jacklin?", "context": "CREATE TABLE table_name_28 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_49 WHERE player = \"bernhard langer\"", "question": "What Place has a Player of bernhard langer?", "context": "CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_86 WHERE country = \"west germany\"", "question": "What Player has a Country of west germany?", "context": "CREATE TABLE table_name_86 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_20 WHERE to_par = \"\u20132\"", "question": "What Player has a To par of \u20132?", "context": "CREATE TABLE table_name_20 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_11 WHERE place = \"t2\" AND country = \"united states\"", "question": "What To par has a Place of t2, and a Country of united states?", "context": "CREATE TABLE table_name_11 (to_par VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE place = \"t2\" AND country = \"england\"", "question": "What Score has a Place of t2, and a Country of england?", "context": "CREATE TABLE table_name_75 (score VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_52 WHERE club = \"cwmtwrch rfc\"", "question": "How many tries were there for club cwmtwrch rfc?", "context": "CREATE TABLE table_name_52 (tries_against VARCHAR, club VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_75 WHERE tries_against = \"69\"", "question": "What is the draw when the tries against was 69?", "context": "CREATE TABLE table_name_75 (drawn VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_51 WHERE lost = \"13\" AND drawn = \"2\"", "question": "What is the try bonus when the loss is 13 and the draw is 2?", "context": "CREATE TABLE table_name_51 (try_bonus VARCHAR, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(finish) FROM table_name_39 WHERE team = \"buck baker\" AND start < 13", "question": "What is the average Finish, when Team is \"Buck Baker\", and when Start is less than 13?", "context": "CREATE TABLE table_name_39 (finish INTEGER, team VARCHAR, start VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_42 WHERE start = 11", "question": "What is the average Year, when Start is \"11\"?", "context": "CREATE TABLE table_name_42 (year INTEGER, start VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_14 WHERE finish = 29 AND start < 24", "question": "What is the lowest Year, when Finish is \"29\", and when Start is less than 24?", "context": "CREATE TABLE table_name_14 (year INTEGER, finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_29 WHERE finish = 51 AND start < 64", "question": "What is the highest Year, when Finish is \"51\", and when Start is less than 64?", "context": "CREATE TABLE table_name_29 (year INTEGER, finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_97 WHERE finish > 29 AND start < 23 AND year = 1973", "question": "What is Manufacturer, when Finish is greater than 29, when Start is less than 23, and when Year is \"1973\"?", "context": "CREATE TABLE table_name_97 (manufacturer VARCHAR, year VARCHAR, finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT opposing_teams FROM table_name_7 WHERE against = 11", "question": "What is the opposing team with 11 against?", "context": "CREATE TABLE table_name_7 (opposing_teams VARCHAR, against VARCHAR)"}, {"answer": "SELECT venue FROM table_name_26 WHERE opposing_teams = \"argentina\" AND status = \"test match\"", "question": "What is the venue where Argentina was the opposing team in a test match?", "context": "CREATE TABLE table_name_26 (venue VARCHAR, opposing_teams VARCHAR, status VARCHAR)"}, {"answer": "SELECT status FROM table_name_18 WHERE against > 16 AND opposing_teams = \"france\"", "question": "What is the status of the game against France with more than 16 against?", "context": "CREATE TABLE table_name_18 (status VARCHAR, against VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE status = \"five nations\" AND against = 23", "question": "On what date is there a status of Five Nations and an against of 23?", "context": "CREATE TABLE table_name_10 (date VARCHAR, status VARCHAR, against VARCHAR)"}, {"answer": "SELECT model FROM table_name_82 WHERE number_built < 6.526 AND chassis_code = \"w109.015\"", "question": "What model has a number built smaller than 6.526, and the Chassis code w109.015?", "context": "CREATE TABLE table_name_82 (model VARCHAR, number_built VARCHAR, chassis_code VARCHAR)"}, {"answer": "SELECT record FROM table_name_30 WHERE game_site = \"tiger stadium\"", "question": "What was the record at Tiger Stadium?", "context": "CREATE TABLE table_name_30 (record VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_38 WHERE date = \"september 19, 1971\" AND week > 1", "question": "What was the attendance on September 19, 1971, after week 1?", "context": "CREATE TABLE table_name_38 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_32 WHERE rank = \"1\"", "question": "How many Bronze medals did the team ranked 1 win?", "context": "CREATE TABLE table_name_32 (bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date_from FROM table_name_50 WHERE position = \"mf\" AND name = \"jennison myrie-williams\"", "question": "What is the date for the MF position and player Jennison Myrie-Williams?", "context": "CREATE TABLE table_name_50 (date_from VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_92 WHERE team = \"zamora\" AND average > 0.89", "question": "What Goals has a Team of zamora, and Average larger than 0.89?", "context": "CREATE TABLE table_name_92 (goals INTEGER, team VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_94 WHERE average > 1", "question": "What is the sum of Goals win an Average larger than 1?", "context": "CREATE TABLE table_name_94 (goals VARCHAR, average INTEGER)"}, {"answer": "SELECT MIN(matches) FROM table_name_26 WHERE goalkeeper = \"jos\u00e9 berm\u00fadez\" AND goals > 18", "question": "What is the smallest Matches with a Goalkeeper of jos\u00e9 berm\u00fadez, and Goals larger than 18?", "context": "CREATE TABLE table_name_26 (matches INTEGER, goalkeeper VARCHAR, goals VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_30 WHERE goals = 18 AND average > 0.55", "question": "What is the total of Matches with Goals of 18, and an Average larger than 0.55?", "context": "CREATE TABLE table_name_30 (matches INTEGER, goals VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_80 WHERE goals < 34 AND matches > 30 AND team = \"cultural leonesa\"", "question": "What is the largest Average with Goals smaller than 34, Matches larger than 30, and a Team of cultural leonesa?", "context": "CREATE TABLE table_name_80 (average INTEGER, team VARCHAR, goals VARCHAR, matches VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_52 WHERE score = 78 - 74 - 71 - 75 = 298", "question": "Which To par has a Score of 78-74-71-75=298?", "context": "CREATE TABLE table_name_52 (to_par INTEGER, score VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_42 WHERE country = \"united states\" AND money___$__ = 90", "question": "How much To par has a Country of united states, and a Money ($) of 90?", "context": "CREATE TABLE table_name_42 (to_par VARCHAR, country VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_name_77 WHERE prize_money = \"\u00a35,000\"", "question": "What is are the highest matches with \u00a35,000 in prize money?", "context": "CREATE TABLE table_name_77 (matches INTEGER, prize_money VARCHAR)"}, {"answer": "SELECT prize_money FROM table_name_40 WHERE matches > 1 AND new_entries_this_round = \"102\"", "question": "What is the prize money amount after match 1, with 102 new entries to the round?", "context": "CREATE TABLE table_name_40 (prize_money VARCHAR, matches VARCHAR, new_entries_this_round VARCHAR)"}, {"answer": "SELECT place FROM table_name_23 WHERE player = \"darren clarke\"", "question": "In what place did Darren Clarke finish?", "context": "CREATE TABLE table_name_23 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE player = \"ernie els\"", "question": "What was Ernie Els's score?", "context": "CREATE TABLE table_name_86 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_29 WHERE player = \"tom lehman\"", "question": "In what place did Tom Lehman finish?", "context": "CREATE TABLE table_name_29 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_59 WHERE score = 68 - 70 - 69 = 207", "question": "In what place did the golfer that scored 68-70-69=207 finish?", "context": "CREATE TABLE table_name_59 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_1 WHERE drivers = \"glenn seton gregg hansford\"", "question": "What were the highest laps for glenn seton gregg hansford?", "context": "CREATE TABLE table_name_1 (laps INTEGER, drivers VARCHAR)"}, {"answer": "SELECT drivers FROM table_name_86 WHERE laps = 101", "question": "What driver had 101 laps?", "context": "CREATE TABLE table_name_86 (drivers VARCHAR, laps VARCHAR)"}, {"answer": "SELECT position FROM table_name_7 WHERE fa_cup_apps = \"0\" AND name = \"gary barnett\"", "question": "Gary Barnett who has been in 0 FA Cups plays what position?", "context": "CREATE TABLE table_name_7 (position VARCHAR, fa_cup_apps VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(league_cup_goals) FROM table_name_23 WHERE fa_cup_apps = \"0\" AND position = \"mf\" AND league_apps = \"1\" AND total_goals < 0", "question": "What is the maximum league cup goals when there has been 0 FA cup appearances, and MF is the position, with 1 league appearance, and smaller than 0 total goals?", "context": "CREATE TABLE table_name_23 (league_cup_goals INTEGER, total_goals VARCHAR, league_apps VARCHAR, fa_cup_apps VARCHAR, position VARCHAR)"}, {"answer": "SELECT flt_apps FROM table_name_62 WHERE total_goals < 5 AND fa_cup_apps = \"3\" AND position = \"mf\" AND league_goals = 4", "question": "How many FLT appearances for the player with less than 5 total goals, and 3 FA Cup appearances, 4 league goals, and plays MF?", "context": "CREATE TABLE table_name_62 (flt_apps VARCHAR, league_goals VARCHAR, position VARCHAR, total_goals VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT opponent_number FROM table_name_28 WHERE attendance = \"87,453\"", "question": "Who was the opponent when the attendance was 87,453?", "context": "CREATE TABLE table_name_28 (opponent_number VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_42 WHERE rank__number = \"4\"", "question": "What was the attendance when they had a ranking of #4?", "context": "CREATE TABLE table_name_42 (attendance VARCHAR, rank__number VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_68 WHERE draw = 5 AND points > 43", "question": "What's the average Played for a draw of 5 and more than 43 points?", "context": "CREATE TABLE table_name_68 (played INTEGER, draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT govt_salary FROM table_name_19 WHERE romanised_name = \"chen wei-on, kenneth\"", "question": "What is the government salary of the Undersecretary with a Romanised name of Chen Wei-On, Kenneth?", "context": "CREATE TABLE table_name_19 (govt_salary VARCHAR, romanised_name VARCHAR)"}, {"answer": "SELECT portfolio_attachment FROM table_name_47 WHERE age_at_appointment = 48 AND chinese_name = \"\u6881\u9cf3\u5100\"", "question": "What is the portfolio attachment of the Undersecretary appointed at age 48 with a Chinese name of \u6881\u9cf3\u5100?", "context": "CREATE TABLE table_name_47 (portfolio_attachment VARCHAR, age_at_appointment VARCHAR, chinese_name VARCHAR)"}, {"answer": "SELECT romanised_name FROM table_name_84 WHERE portfolio_attachment = \"education\"", "question": "What is the Romanised name of the Undersecretary with an education portfolio attachment?", "context": "CREATE TABLE table_name_84 (romanised_name VARCHAR, portfolio_attachment VARCHAR)"}, {"answer": "SELECT MAX(top_10s) FROM table_name_30 WHERE wins < 0", "question": "What is the best top 10 when there are fewer than 0 wins?", "context": "CREATE TABLE table_name_30 (top_10s INTEGER, wins INTEGER)"}, {"answer": "SELECT moving_from FROM table_name_31 WHERE name = \"naylor\"", "question": "Where did naylor move from?", "context": "CREATE TABLE table_name_31 (moving_from VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_26 WHERE ends = \"2011\" AND transfer_fee = \"free\" AND source = \"leeds united\"", "question": "What type ends in 2011, has a free transfer fee, and is sourced in leeds united?", "context": "CREATE TABLE table_name_26 (type VARCHAR, source VARCHAR, ends VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT type FROM table_name_92 WHERE country = \"sco\"", "question": "What is the type of sco country?", "context": "CREATE TABLE table_name_92 (type VARCHAR, country VARCHAR)"}, {"answer": "SELECT type FROM table_name_32 WHERE ends = \"2009\"", "question": "What is the type that ends in 2009?", "context": "CREATE TABLE table_name_32 (type VARCHAR, ends VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_70 WHERE transfer_window = \"summer\" AND name = \"assoumani\"", "question": "What is the transfer fee of assoumani, who has a summer transfer window?", "context": "CREATE TABLE table_name_70 (transfer_fee VARCHAR, transfer_window VARCHAR, name VARCHAR)"}, {"answer": "SELECT ends FROM table_name_5 WHERE transfer_fee = \"free\" AND moving_from = \"middlesbrough\"", "question": "What is the ends with a free transfer fee and was moved from middlesbrough?", "context": "CREATE TABLE table_name_5 (ends VARCHAR, transfer_fee VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_71 WHERE attendance = 51 OFFSET 558", "question": "Which Week has Attendance of 51,558?", "context": "CREATE TABLE table_name_71 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_2 WHERE result = \"w 24-14\" AND week < 7", "question": "Which Attendance has a Result of w 24-14, and a Week smaller than 7?", "context": "CREATE TABLE table_name_2 (attendance INTEGER, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_48 WHERE opponent = \"at los angeles rams\" AND week > 12", "question": "Which Attendance has an Opponent of at los angeles rams, and a Week larger than 12?", "context": "CREATE TABLE table_name_48 (attendance INTEGER, opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT method FROM table_name_83 WHERE record = \"4-0\"", "question": "Which method has a record of 4-0?", "context": "CREATE TABLE table_name_83 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_86 WHERE method = \"decision\" AND location = \"martigues, france\"", "question": "What is the record when the method is decision and the location is Martigues, France?", "context": "CREATE TABLE table_name_86 (record VARCHAR, method VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_97 WHERE method = \"decision\" AND opponent = \"nikos tsoukalas\"", "question": "Which location has a method of decision and Nikos Tsoukalas for an opponent?", "context": "CREATE TABLE table_name_97 (location VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_33 WHERE location = \"auckland, new zealand\" AND result = \"win\" AND opponent = \"darren berry\"", "question": "What is the method when the location is Auckland, New Zealand, Darren Berry as the opponent, and resulted in a win?", "context": "CREATE TABLE table_name_33 (method VARCHAR, opponent VARCHAR, location VARCHAR, result VARCHAR)"}, {"answer": "SELECT location FROM table_name_29 WHERE record = \"9-7\"", "question": "What is the location when the record is 9-7?", "context": "CREATE TABLE table_name_29 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_66 WHERE method = \"ko\" AND result = \"win\" AND record = \"2-0\"", "question": "What is the location when KO is the method, the result is a win, and the record is 2-0?", "context": "CREATE TABLE table_name_66 (location VARCHAR, record VARCHAR, method VARCHAR, result VARCHAR)"}, {"answer": "SELECT total_casualties FROM table_name_54 WHERE military_and_or_civilian_wounded = \"1,200+\"", "question": "What are the total casualties with 1,200+ military and/or civilian wounded?", "context": "CREATE TABLE table_name_54 (total_casualties VARCHAR, military_and_or_civilian_wounded VARCHAR)"}, {"answer": "SELECT military_deaths FROM table_name_92 WHERE total_casualties = \"1,615\"", "question": "How many military deaths were there when there were 1,615 total casualties?", "context": "CREATE TABLE table_name_92 (military_deaths VARCHAR, total_casualties VARCHAR)"}, {"answer": "SELECT military_deaths FROM table_name_15 WHERE military_and_or_civilian_wounded = \"1,200+\"", "question": "How many military deaths were there when there were 1,200+ military and/or civilian wounded?", "context": "CREATE TABLE table_name_15 (military_deaths VARCHAR, military_and_or_civilian_wounded VARCHAR)"}, {"answer": "SELECT total_deaths FROM table_name_33 WHERE total_casualties = \"6\"", "question": "How many deaths were there when the total casualties were 6?", "context": "CREATE TABLE table_name_33 (total_deaths VARCHAR, total_casualties VARCHAR)"}, {"answer": "SELECT country FROM table_name_29 WHERE score = 70 - 68 - 71 - 71 = 280", "question": "Which country scored 70-68-71-71=280?", "context": "CREATE TABLE table_name_29 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT champions FROM table_name_26 WHERE semi_finalists = \"1 (2009)\"", "question": "What champions have 1 (2009) as the semi-finalists?", "context": "CREATE TABLE table_name_26 (champions VARCHAR, semi_finalists VARCHAR)"}, {"answer": "SELECT fourth_place FROM table_name_26 WHERE runners_up = \"2 (1999, 2005)\"", "question": "What fourth-place has 2 (1999, 2005) as the runner(s)-up?", "context": "CREATE TABLE table_name_26 (fourth_place VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT semi_finalists FROM table_name_1 WHERE fourth_place = \"2 (1993, 2003)\"", "question": "What semi-finalists has 2 (1993, 2003) as the fourth-place?", "context": "CREATE TABLE table_name_1 (semi_finalists VARCHAR, fourth_place VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_75 WHERE champions = \"1 (2013)\"", "question": "What runner(s)-up has 1 (2013) as the champions?", "context": "CREATE TABLE table_name_75 (runners_up VARCHAR, champions VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_78 WHERE team = \"vit\u00f3ria de guimar\u00e3es\"", "question": "What was the day of vacancy for vit\u00f3ria de guimar\u00e3es?", "context": "CREATE TABLE table_name_78 (date_of_vacancy VARCHAR, team VARCHAR)"}, {"answer": "SELECT outgoing_manage FROM table_name_53 WHERE incoming_manager = \"augusto in\u00e1cio\"", "question": "Who was the outgoing manager when the incoming manager was augusto in\u00e1cio?", "context": "CREATE TABLE table_name_53 (outgoing_manage VARCHAR, incoming_manager VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_71 WHERE team = \"atl\u00e9tico ciudad\" AND average > 0.61", "question": "How many matches did Atl\u00e9tico Ciudad have with an average higher than 0.61?", "context": "CREATE TABLE table_name_71 (matches VARCHAR, team VARCHAR, average VARCHAR)"}, {"answer": "SELECT goalkeeper FROM table_name_15 WHERE goals < 24", "question": "Who is the goalkeeper with fewer than 24 goals?", "context": "CREATE TABLE table_name_15 (goalkeeper VARCHAR, goals INTEGER)"}, {"answer": "SELECT MAX(losses) FROM table_name_52 WHERE goals_for = 45 AND played < 38", "question": "What was the highest amount of losses when there were 45 goals and the play was smaller than 38?", "context": "CREATE TABLE table_name_52 (losses INTEGER, goals_for VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_25 WHERE wins > 15 AND goal_difference > 35", "question": "What were the lowest goals when there were mor than 15 wins and the goal difference was larger than 35?", "context": "CREATE TABLE table_name_25 (goals_for INTEGER, wins VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_89 WHERE goals_for < 45 AND points < 18", "question": "What were the highest losses when the goal was smaller than 45 and the points was smaller than 18?", "context": "CREATE TABLE table_name_89 (losses INTEGER, goals_for VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(goals_against) FROM table_name_32 WHERE position > 19 AND goals_for < 36", "question": "What were the highest goals against when the position was larger than 19 and the goals smaller than 36?", "context": "CREATE TABLE table_name_32 (goals_against INTEGER, position VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT SUM(to_par) FROM table_name_53 WHERE total < 148", "question": "What is the to par for the player with fewer than 148 total points?", "context": "CREATE TABLE table_name_53 (to_par INTEGER, total INTEGER)"}, {"answer": "SELECT years FROM table_name_10 WHERE school = \"vaucluse public school\"", "question": "What school year is vaucluse public school?", "context": "CREATE TABLE table_name_10 (years VARCHAR, school VARCHAR)"}, {"answer": "SELECT website FROM table_name_11 WHERE founded = 1872", "question": "What are the websites of schools that were founded in 1872?", "context": "CREATE TABLE table_name_11 (website VARCHAR, founded VARCHAR)"}, {"answer": "SELECT AVG(founded) FROM table_name_13 WHERE suburb_town = \"vineyard\"", "question": "On average, when were vineyard schools founded?", "context": "CREATE TABLE table_name_13 (founded INTEGER, suburb_town VARCHAR)"}, {"answer": "SELECT surface FROM table_name_75 WHERE date > 1979 AND championship = \"melbourne indoor, australia\" AND score = \"2\u20136, 6\u20132, 6\u20132\"", "question": "What was the surface later than 1979, for the Melbourne Indoor, Australia, and the score was 2\u20136, 6\u20132, 6\u20132?", "context": "CREATE TABLE table_name_75 (surface VARCHAR, score VARCHAR, date VARCHAR, championship VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_76 WHERE championship = \"monterrey wct, mexico\"", "question": "What is the earliest date when the championship was Monterrey WCT, Mexico?", "context": "CREATE TABLE table_name_76 (date INTEGER, championship VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE outcome = \"runner-up\" AND date < 1975", "question": "What is the score when the outcome was runner-up, earlier than 1975?", "context": "CREATE TABLE table_name_25 (score VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_23 WHERE geelong_fl = \"newtown & chilwell\" AND wins > 11", "question": "How many Losses have a Geelong FL of newtown & chilwell, and more than 11 wins?", "context": "CREATE TABLE table_name_23 (losses VARCHAR, geelong_fl VARCHAR, wins VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE share = \"39.1%\"", "question": "When were the shares 39.1%?", "context": "CREATE TABLE table_name_84 (date VARCHAR, share VARCHAR)"}, {"answer": "SELECT show FROM table_name_81 WHERE date = \"19 april\"", "question": "Which show aired on 19 april?", "context": "CREATE TABLE table_name_81 (show VARCHAR, date VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_91 WHERE film_title_used_in_nomination = \"street days\"", "question": "What was the original title for the film used in nomination of street days?", "context": "CREATE TABLE table_name_91 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_36 WHERE film_title_used_in_nomination = \"keep smiling\"", "question": "What was the original title for the film used in nomination of keep smiling?", "context": "CREATE TABLE table_name_36 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT ticket_sold___available FROM table_name_30 WHERE ticket_grossing = \"$348,674\"", "question": "How many tickets were sold and how many were available for the shows that grossed $348,674?", "context": "CREATE TABLE table_name_30 (ticket_sold___available VARCHAR, ticket_grossing VARCHAR)"}, {"answer": "SELECT production FROM table_name_67 WHERE result = \"nominated\" AND year = 2009 AND award_ceremony = \"helpmann awards\"", "question": "Which Production in 2009 had a Result of Nominated at the Helpmann awards Award Ceremony?", "context": "CREATE TABLE table_name_67 (production VARCHAR, award_ceremony VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT award_ceremony FROM table_name_2 WHERE role = \"glinda\" AND year = 2009", "question": "Which Award Ceremony in 2009 has a Role of Glinda?", "context": "CREATE TABLE table_name_2 (award_ceremony VARCHAR, role VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_13 WHERE production = \"wicked\" AND award_ceremony = \"helpmann awards\"", "question": "Which Year saw the Production of Wicked at the Helpmann Awards Award ceremony?", "context": "CREATE TABLE table_name_13 (year VARCHAR, production VARCHAR, award_ceremony VARCHAR)"}, {"answer": "SELECT result FROM table_name_48 WHERE year = 2013", "question": "What was the Result in 2013?", "context": "CREATE TABLE table_name_48 (result VARCHAR, year VARCHAR)"}, {"answer": "SELECT rider FROM table_name_64 WHERE laps < 22 AND grid > 19 AND time = \"retirement\" AND bike = \"kawasaki zx-6r\"", "question": "Who was the rider riding the Kawasaki ZX-6r, that rode less than 22 laps, and the grid was greater than 19, and retirement was the time?", "context": "CREATE TABLE table_name_64 (rider VARCHAR, bike VARCHAR, time VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_44 WHERE laps > 22", "question": "What is the maximum grid when the laps were greater than 22?", "context": "CREATE TABLE table_name_44 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT MIN(grid) FROM table_name_83 WHERE laps > 22", "question": "What is the minimum grid when there was more than 22 laps?", "context": "CREATE TABLE table_name_83 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT SUM(laps) FROM table_name_96 WHERE bike = \"honda cbr600rr\" AND grid = 7", "question": "How many total laps were ridden when the grid was 7 and the rider rode the Honda CBR600RR?", "context": "CREATE TABLE table_name_96 (laps INTEGER, bike VARCHAR, grid VARCHAR)"}, {"answer": "SELECT sign FROM table_name_5 WHERE fall = \"venus\"", "question": "Which sign has a fall of Venus?", "context": "CREATE TABLE table_name_5 (sign VARCHAR, fall VARCHAR)"}, {"answer": "SELECT exaltation FROM table_name_21 WHERE fall = \"moon\"", "question": "Which exaltation has a fall of moon?", "context": "CREATE TABLE table_name_21 (exaltation VARCHAR, fall VARCHAR)"}, {"answer": "SELECT exaltation FROM table_name_98 WHERE domicile = \"saturn\" AND fall = \"jupiter\"", "question": "Which exaltation has a domicile of Saturn and a fall of Jupiter?", "context": "CREATE TABLE table_name_98 (exaltation VARCHAR, domicile VARCHAR, fall VARCHAR)"}, {"answer": "SELECT exaltation FROM table_name_10 WHERE domicile = \"saturn\" AND sign = \"capricorn\"", "question": "Which exaltation has a domicile of Saturn and Capricorn as a sign?", "context": "CREATE TABLE table_name_10 (exaltation VARCHAR, domicile VARCHAR, sign VARCHAR)"}, {"answer": "SELECT detriment FROM table_name_89 WHERE domicile = \"mercury\" AND sign = \"virgo\"", "question": "Which detriment has a domicile of mercury and Virgo as a sign?", "context": "CREATE TABLE table_name_89 (detriment VARCHAR, domicile VARCHAR, sign VARCHAR)"}, {"answer": "SELECT exaltation FROM table_name_75 WHERE detriment = \"saturn\" AND sign = \"cancer\"", "question": "Which exaltation has a detriment of Saturn and Cancer as a sign?", "context": "CREATE TABLE table_name_75 (exaltation VARCHAR, detriment VARCHAR, sign VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_96 WHERE points_against = \"234\"", "question": "What was the draw when the points against was 234?", "context": "CREATE TABLE table_name_96 (drawn VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_56 WHERE points_for = \"608\"", "question": "What was the try bonus when the points for was 608?", "context": "CREATE TABLE table_name_56 (try_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT team FROM table_name_71 WHERE previous_team = \"san diego rockets\" AND pos = \"f\"", "question": "Which Team has a Previous team of san diego rockets, and a Position of f?", "context": "CREATE TABLE table_name_71 (team VARCHAR, previous_team VARCHAR, pos VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_30 WHERE previous_team = \"new york knicks\" AND years_of_nba_experience_[a_] > 3", "question": "Which Nationality has a Previous team of new york knicks, and more than 3 Years of NBA experience?", "context": "CREATE TABLE table_name_30 (nationality VARCHAR, previous_team VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_45 WHERE team_2 = \"manchester united\"", "question": "What is team 1 when team 2 is Manchester United?", "context": "CREATE TABLE table_name_45 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_70 WHERE team_1 = \"milan\"", "question": "What is the agg when team 1 is Milan?", "context": "CREATE TABLE table_name_70 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT team FROM table_name_74 WHERE rank = 10", "question": "Which team is ranked #10?", "context": "CREATE TABLE table_name_74 (team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT cyclist FROM table_name_96 WHERE uci_protour_points = 40", "question": "Which cyclist has UCI ProTour points of 40?", "context": "CREATE TABLE table_name_96 (cyclist VARCHAR, uci_protour_points VARCHAR)"}, {"answer": "SELECT province, _community FROM table_name_43 WHERE contestant = \"tatiana vargas rosales\"", "question": "What is the province with a contestant of tatiana vargas rosales?", "context": "CREATE TABLE table_name_43 (province VARCHAR, _community VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT province, _community FROM table_name_81 WHERE contestant = \"elixandra tobias carasco\"", "question": "Which province has the contestant elixandra tobias carasco?", "context": "CREATE TABLE table_name_81 (province VARCHAR, _community VARCHAR, contestant VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_59 WHERE 2009 = \"a\"", "question": "What is 2011, when 2009 is \"A\"?", "context": "CREATE TABLE table_name_59 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_77 WHERE tournament = \"year-end ranking\"", "question": "What is 2009, when Tournament is \"Year-End Ranking\"?", "context": "CREATE TABLE table_name_77 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_73 WHERE 2012 = \"1r\"", "question": "What is 2011, when 2012 is \"1R\"?", "context": "CREATE TABLE table_name_73 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_44 WHERE 2009 = \"a\"", "question": "What is 2012, when 2009 is \"A\"?", "context": "CREATE TABLE table_name_44 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_99 WHERE 2012 = \"a\" AND tournament = \"french open\"", "question": "What is 2011, when 2012 is \"A\", and when Tournament is \"French Open\"?", "context": "CREATE TABLE table_name_99 (tournament VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_71 WHERE opposing_teams = \"wales\"", "question": "What is the largest Against with an Opposing Teams of wales?", "context": "CREATE TABLE table_name_71 (against INTEGER, opposing_teams VARCHAR)"}, {"answer": "SELECT status FROM table_name_49 WHERE date = \"18/03/1989\"", "question": "What Status has a Date of 18/03/1989?", "context": "CREATE TABLE table_name_49 (status VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE status = \"five nations\" AND against = 0", "question": "What Venue has a Status of five nations, and Against of 0?", "context": "CREATE TABLE table_name_89 (venue VARCHAR, status VARCHAR, against VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_55 WHERE date = \"18/02/1989\"", "question": "What is the smallest Against with a Date of 18/02/1989?", "context": "CREATE TABLE table_name_55 (against INTEGER, date VARCHAR)"}, {"answer": "SELECT additional_notes FROM table_name_79 WHERE location = \"cotabato\"", "question": "What are the additional notes for Cotabato?", "context": "CREATE TABLE table_name_79 (additional_notes VARCHAR, location VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE location = \"kunlong\"", "question": "What country in Kunlong in?", "context": "CREATE TABLE table_name_46 (country VARCHAR, location VARCHAR)"}, {"answer": "SELECT perpetrator FROM table_name_85 WHERE location = \"baghdad\"", "question": "Who went on a rampage in Baghdad?", "context": "CREATE TABLE table_name_85 (perpetrator VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_19 WHERE total < 1", "question": "What's the rank that has a total of less than 1?", "context": "CREATE TABLE table_name_19 (rank INTEGER, total INTEGER)"}, {"answer": "SELECT SUM(bronze) FROM table_name_63 WHERE gold = 1 AND silver < 3", "question": "What's the bronze medal count when the silver is less than 3 and the gold is 1?", "context": "CREATE TABLE table_name_63 (bronze INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_42 WHERE rank = 2 AND total > 21", "question": "What's the gold medal count ranked 2 with a total of more than 21?", "context": "CREATE TABLE table_name_42 (gold VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_89 WHERE bronze = 5 AND gold < 8", "question": "What's the smallest total with a bronze count of 5 and a gold count less than 8?", "context": "CREATE TABLE table_name_89 (total INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT party FROM table_name_7 WHERE results = \"re-elected\" AND first_elected < 2002", "question": "What is the party for the representative who was first elected before 2002 and the results were re-elected?", "context": "CREATE TABLE table_name_7 (party VARCHAR, results VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_name_71 WHERE incumbent = \"john sullivan\"", "question": "Incumbent John Sullivan has what as biggest first elected?", "context": "CREATE TABLE table_name_71 (first_elected INTEGER, incumbent VARCHAR)"}, {"answer": "SELECT location FROM table_name_24 WHERE years_member = \"1963\u20131968\"", "question": "What Location has Years Member of 1963\u20131968?", "context": "CREATE TABLE table_name_24 (location VARCHAR, years_member VARCHAR)"}, {"answer": "SELECT school FROM table_name_17 WHERE colors = \"navy blue orange\"", "question": "What School has Colors of navy blue orange?", "context": "CREATE TABLE table_name_17 (school VARCHAR, colors VARCHAR)"}, {"answer": "SELECT years_member FROM table_name_47 WHERE school = \"cairo high school\"", "question": "What Years Member has a School of cairo high school?", "context": "CREATE TABLE table_name_47 (years_member VARCHAR, school VARCHAR)"}, {"answer": "SELECT colors FROM table_name_61 WHERE school = \"sesser high school\"", "question": "What Colors has a School of sesser high school?", "context": "CREATE TABLE table_name_61 (colors VARCHAR, school VARCHAR)"}, {"answer": "SELECT colors FROM table_name_17 WHERE school = \"zeigler high school\"", "question": "What Colors has a School of zeigler high school?", "context": "CREATE TABLE table_name_17 (colors VARCHAR, school VARCHAR)"}, {"answer": "SELECT nickname_s_ FROM table_name_65 WHERE location = \"elkville, illinois\"", "question": "What Nickname(s) has a Location of elkville, illinois?", "context": "CREATE TABLE table_name_65 (nickname_s_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT season_1 FROM table_name_5 WHERE season_7 = \"david chilton\"", "question": "Which Season 1 has a Season 7 of david chilton?", "context": "CREATE TABLE table_name_5 (season_1 VARCHAR, season_7 VARCHAR)"}, {"answer": "SELECT MAX(seat) FROM table_name_85 WHERE season_6 = \"kevin o'leary\"", "question": "Which Seat has a Season 6 of kevin o'leary?", "context": "CREATE TABLE table_name_85 (seat INTEGER, season_6 VARCHAR)"}, {"answer": "SELECT season_7 FROM table_name_98 WHERE season_6 = \"jim treliving\"", "question": "Which Season 7 has a Season 6 of jim treliving?", "context": "CREATE TABLE table_name_98 (season_7 VARCHAR, season_6 VARCHAR)"}, {"answer": "SELECT season_7 FROM table_name_89 WHERE seat > 1 AND season_3 = \"w. brett wilson\"", "question": "Which Season 7 has a Seat larger than 1, and a Season 3 of w. brett wilson?", "context": "CREATE TABLE table_name_89 (season_7 VARCHAR, seat VARCHAR, season_3 VARCHAR)"}, {"answer": "SELECT season_3 FROM table_name_93 WHERE season_7 = \"jim treliving\"", "question": "Which Season 3 has a Season 7 of jim treliving?", "context": "CREATE TABLE table_name_93 (season_3 VARCHAR, season_7 VARCHAR)"}, {"answer": "SELECT weekly_winner FROM table_name_85 WHERE air_date = \"july 4, 2008\"", "question": "What is Weekly Winner, when Air Date is \"July 4, 2008\"?", "context": "CREATE TABLE table_name_85 (weekly_winner VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT rating FROM table_name_7 WHERE air_date = \"july 24, 2008*\" AND weekly_winner = \"sales rep. oscar ledezma\"", "question": "What is Rating, when Air Date is \"July 24, 2008*\", and when Weekly Winner is \"Sales Rep. Oscar Ledezma\"?", "context": "CREATE TABLE table_name_7 (rating VARCHAR, air_date VARCHAR, weekly_winner VARCHAR)"}, {"answer": "SELECT 18 AS _49 FROM table_name_45 WHERE weekly_winner = \"youth counselor justin meece\"", "question": "What is 18-49, when Weekly Winner is \"Youth Counselor Justin Meece\"?", "context": "CREATE TABLE table_name_45 (weekly_winner VARCHAR)"}, {"answer": "SELECT viewers FROM table_name_64 WHERE air_date = \"july 4, 2008\"", "question": "What is Viewers, when Air Date is \"July 4, 2008\"?", "context": "CREATE TABLE table_name_64 (viewers VARCHAR, air_date VARCHAR)"}, {"answer": "SELECT air_date FROM table_name_19 WHERE rating = \"n/a\" AND weekly_winner = \"wedding dj chris dixon\"", "question": "What is Air Date, when Rating is \"N/A\", and when Weekly Winner is \"Wedding DJ Chris Dixon\"?", "context": "CREATE TABLE table_name_19 (air_date VARCHAR, rating VARCHAR, weekly_winner VARCHAR)"}, {"answer": "SELECT record FROM table_name_36 WHERE date = \"dec 16\"", "question": "What was the record for Dec 16?", "context": "CREATE TABLE table_name_36 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_9 WHERE 2011 = \"qf\"", "question": "What is the 2010 with a qf in 2011?", "context": "CREATE TABLE table_name_9 (Id VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_71 WHERE tournament = \"grand slam tournaments\"", "question": "What is the 2013 of the grand slam tournaments?", "context": "CREATE TABLE table_name_71 (tournament VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_49 WHERE 2010 = \"2r\" AND 2011 = \"qf\"", "question": "What is the 2013 with a 2r in 2010 and a qf in 2011?", "context": "CREATE TABLE table_name_49 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_32 WHERE 2010 = \"1r\"", "question": "What is the 2011 with 1r in 2010?", "context": "CREATE TABLE table_name_32 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_96 WHERE 2009 = \"a\" AND 2010 = \"2r\"", "question": "What is the 2012 with A in 2009 and 2r in 2010?", "context": "CREATE TABLE table_name_96 (Id VARCHAR)"}, {"answer": "SELECT poison_klesha FROM table_name_29 WHERE pali = \"moha avijja\"", "question": "What is the poison/klesha word for moha avijja in pali?", "context": "CREATE TABLE table_name_29 (poison_klesha VARCHAR, pali VARCHAR)"}, {"answer": "SELECT poison_klesha FROM table_name_14 WHERE tibetan = \"gti mug ma rig pa\"", "question": "What is the poision/klesha word for the tibetan word gti mug ma rig pa?", "context": "CREATE TABLE table_name_14 (poison_klesha VARCHAR, tibetan VARCHAR)"}, {"answer": "SELECT pali FROM table_name_87 WHERE poison_klesha = \"pride\"", "question": "What is the pali word for pride in poison/klesha?", "context": "CREATE TABLE table_name_87 (pali VARCHAR, poison_klesha VARCHAR)"}, {"answer": "SELECT pali FROM table_name_64 WHERE tibetan = \"phrag dog\"", "question": "What is the pali word for phrag dog in tibetan?", "context": "CREATE TABLE table_name_64 (pali VARCHAR, tibetan VARCHAR)"}, {"answer": "SELECT pali FROM table_name_77 WHERE sanskrit = \"r\u0101ga\"", "question": "What is the pali word for r\u0101ga in sanskrit?", "context": "CREATE TABLE table_name_77 (pali VARCHAR, sanskrit VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_12 WHERE away_team = \"southend manor\" AND tie_no < 93", "question": "What is the attendance total when Southend Manor is the away team and there are less than 93 ties?", "context": "CREATE TABLE table_name_12 (attendance VARCHAR, away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE attendance < 83 AND away_team = \"raunds town\"", "question": "What is the score when the attendance is less than 83 and Raunds Town is the away team?", "context": "CREATE TABLE table_name_91 (score VARCHAR, attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_46 WHERE pick__number < 205 AND team_from = \"michigan state spartans\"", "question": "Who was the player that was picked at a number less than 205 from the Michigan State Spartans?", "context": "CREATE TABLE table_name_46 (player VARCHAR, pick__number VARCHAR, team_from VARCHAR)"}, {"answer": "SELECT AVG(density__per_km\u00b2_) FROM table_name_40 WHERE no_munic = 53", "question": "What is the average Density of 53 No. munic.?", "context": "CREATE TABLE table_name_40 (density__per_km\u00b2_ INTEGER, no_munic VARCHAR)"}, {"answer": "SELECT status FROM table_name_46 WHERE venue = \"sydney sports ground , sydney\"", "question": "Name the Status of Venue of sydney sports ground , sydney?", "context": "CREATE TABLE table_name_46 (status VARCHAR, venue VARCHAR)"}, {"answer": "SELECT status FROM table_name_16 WHERE opposing_teams = \"wales\"", "question": "Which Status has a Opposing Teams of wales?", "context": "CREATE TABLE table_name_16 (status VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE venue = \"lancaster park , christchurch\"", "question": "WHICH Date has a Venue of lancaster park , christchurch?", "context": "CREATE TABLE table_name_14 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT team FROM table_name_32 WHERE player = \"dave coggin\"", "question": "WHAT IS THE TEAM WITH DAVE COGGIN?", "context": "CREATE TABLE table_name_32 (team VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_93 WHERE position = \"of\" AND pick = 24", "question": "WHAT IS THE TEAM WITH AN OF POSITION AND PICK OF 24?", "context": "CREATE TABLE table_name_93 (team VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_44 WHERE team = \"boston red sox\" AND player = \"corey jenkins\"", "question": "WHAT IS THE POSITION WITH BOSTON RED SOX FOR COREY JENKINS?", "context": "CREATE TABLE table_name_44 (position VARCHAR, team VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_88 WHERE hometown_school = \"upland high school\"", "question": "WHAT PLAYER HAS UPLAND HIGH SCHOOL?", "context": "CREATE TABLE table_name_88 (player VARCHAR, hometown_school VARCHAR)"}, {"answer": "SELECT player FROM table_name_55 WHERE team = \"oakland athletics\"", "question": "WHAT PLAYER HAS THE OAKLAND ATHLETICS?", "context": "CREATE TABLE table_name_55 (player VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_59 WHERE pick > 29", "question": "WHAT TEAM HAS A PICK LARGER THAN 29?", "context": "CREATE TABLE table_name_59 (team VARCHAR, pick INTEGER)"}, {"answer": "SELECT name FROM table_name_44 WHERE killed = \"8\" AND country = \"israel\"", "question": "Which rampage killed 8 in Israel?", "context": "CREATE TABLE table_name_44 (name VARCHAR, killed VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_29 WHERE killed = \"14\" AND year = 1965", "question": "What coutry had a rampaged killing 14 in 1965?", "context": "CREATE TABLE table_name_29 (country VARCHAR, killed VARCHAR, year VARCHAR)"}, {"answer": "SELECT club FROM table_name_9 WHERE drawn = \"0\" AND try_bonus = \"5\"", "question": "What is Club, when Drawn is \"0\", and when Try Bonus is \"5\"?", "context": "CREATE TABLE table_name_9 (club VARCHAR, drawn VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT club FROM table_name_15 WHERE points = \"82\"", "question": "What is Club, when Points is \"82\"?", "context": "CREATE TABLE table_name_15 (club VARCHAR, points VARCHAR)"}, {"answer": "SELECT played FROM table_name_62 WHERE points_against = \"374\"", "question": "What is Played, when Points Against is \"374\"?", "context": "CREATE TABLE table_name_62 (played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_77 WHERE try_bonus = \"try bonus\"", "question": "What is Points Against, when Try Bonus is \"Try bonus\"?", "context": "CREATE TABLE table_name_77 (points_against VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_51 WHERE losing_bonus = \"1\" AND points_for = \"179\"", "question": "What is Try Bonus, when Losing Bonus is \"1\", and when Points For is \"179\"?", "context": "CREATE TABLE table_name_51 (try_bonus VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_64 WHERE club = \"tycroes rfc\"", "question": "What is Points For, when Club is \"Tycroes RFC\"?", "context": "CREATE TABLE table_name_64 (points_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE cause = \"gas explosion\" AND death_toll < 63 AND location = \"penygraig\"", "question": "When has a cause of gas explosion, a Death toll smaller than 63, and a Location of penygraig?", "context": "CREATE TABLE table_name_60 (date VARCHAR, location VARCHAR, cause VARCHAR, death_toll VARCHAR)"}, {"answer": "SELECT location FROM table_name_97 WHERE cause = \"gas explosion\" AND death_toll > 38 AND date = \"10 june\"", "question": "Where has a cause of gas explosion, a Death toll larger than 38 on 10 june?", "context": "CREATE TABLE table_name_97 (location VARCHAR, date VARCHAR, cause VARCHAR, death_toll VARCHAR)"}, {"answer": "SELECT year FROM table_name_86 WHERE location = \"dinas\" AND date = \"13 january\"", "question": "Which Year has a Location of dinas on 13 january?", "context": "CREATE TABLE table_name_86 (year VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_87 WHERE cause = \"firedamp\" AND death_toll > 11", "question": "Which Year has a cause of firedamp and a Death toll larger than 11?", "context": "CREATE TABLE table_name_87 (year INTEGER, cause VARCHAR, death_toll VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_15 WHERE cause = \"gas explosion\" AND colliery = \"tylorstown colliery\" AND death_toll > 57", "question": "Count the lowest Year which has gas explosion, Colliery of tylorstown colliery, and a Death toll larger than 57?", "context": "CREATE TABLE table_name_15 (year INTEGER, death_toll VARCHAR, cause VARCHAR, colliery VARCHAR)"}, {"answer": "SELECT colliery FROM table_name_76 WHERE death_toll = 7", "question": "Which Colliery has a Death toll of 7?", "context": "CREATE TABLE table_name_76 (colliery VARCHAR, death_toll VARCHAR)"}, {"answer": "SELECT score_1 FROM table_name_46 WHERE tie_no = \"6\"", "question": "What is the Score 1 of Tie no 6?", "context": "CREATE TABLE table_name_46 (score_1 VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_10 WHERE tie_no = \"3\"", "question": "What is the Attendance of Tie no 3?", "context": "CREATE TABLE table_name_10 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_94 WHERE away_team = \"hereford united\"", "question": "What is the Attendance at the Hereford United Away game?", "context": "CREATE TABLE table_name_94 (attendance VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_19 WHERE tie_no = \"11\"", "question": "What is the Home team of Tie no 11?", "context": "CREATE TABLE table_name_19 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_83 WHERE away_team = \"hereford united\"", "question": "What is the Tie no of Hereford United's Away game?", "context": "CREATE TABLE table_name_83 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score_1 FROM table_name_55 WHERE attendance = \"2,571\"", "question": "What is the Score 1 of the game with Attendance of 2,571?", "context": "CREATE TABLE table_name_55 (score_1 VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(clubs_remaining) FROM table_name_25 WHERE new_entries_this_round = \"34\" AND clubs_involved > 34", "question": "What is the sum of the clubs remaining with 34 new entries this round and more than 34 clubs involved?", "context": "CREATE TABLE table_name_25 (clubs_remaining INTEGER, new_entries_this_round VARCHAR, clubs_involved VARCHAR)"}, {"answer": "SELECT clubs_involved FROM table_name_63 WHERE clubs_remaining = 16", "question": "What are the clubs involved with 16 clubs remaining?", "context": "CREATE TABLE table_name_63 (clubs_involved VARCHAR, clubs_remaining VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_67 WHERE total > 19.42 AND taijiquan < 9.87", "question": "What is the total rank of the athlete with a total larger than 19.42 and a taijiquan less than 9.87?", "context": "CREATE TABLE table_name_67 (rank VARCHAR, total VARCHAR, taijiquan VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_89 WHERE taijiquan > 9.42 AND total = 19.02", "question": "What is the lowest rank of the athlete with a taijiquan greater than 9.42 and a 19.02 total?", "context": "CREATE TABLE table_name_89 (rank INTEGER, taijiquan VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(taijijian) FROM table_name_20 WHERE taijiquan = 9.87 AND total < 19.77", "question": "What is the highest taijijian with a 9.87 taijiquan and a total less than 19.77?", "context": "CREATE TABLE table_name_20 (taijijian INTEGER, taijiquan VARCHAR, total VARCHAR)"}, {"answer": "SELECT week_3 FROM table_name_33 WHERE week_1 = \"demi jessica\"", "question": "Who is the cyber girl in week 3 when Demi Jessica was the cyber girl in week 1?", "context": "CREATE TABLE table_name_33 (week_3 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT week_4 FROM table_name_75 WHERE week_2 = \"lexi lombardelli\"", "question": "What is the name of the cyber girl in week 4 when Lexi Lombardelli was the cyber girl in week 2?", "context": "CREATE TABLE table_name_75 (week_4 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_1 FROM table_name_69 WHERE week_3 = \"alinna d penta\"", "question": "When Alinna D Penta was the cyber girl in week 3, who was the cyber girl in week 1?", "context": "CREATE TABLE table_name_69 (week_1 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_5 FROM table_name_95 WHERE week_3 = \"felicia taylor\"", "question": "Felicia Taylor was cyber girl in week 3, so who was the cyber girl in week 5?", "context": "CREATE TABLE table_name_95 (week_5 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_3 FROM table_name_54 WHERE week_2 = \"ashley lowe\"", "question": "Who is the cyber girl in week 3 when Ashley Lowe was the cyber girl in week 2?", "context": "CREATE TABLE table_name_54 (week_3 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_2 FROM table_name_90 WHERE week_4 = \"diane deluna\"", "question": "When Diane Deluna was the cyber girl in week 4 who was the cyber girl in week 2?", "context": "CREATE TABLE table_name_90 (week_2 VARCHAR, week_4 VARCHAR)"}, {"answer": "SELECT round FROM table_name_54 WHERE year > 2011", "question": "Which Round has a Year later than 2011?", "context": "CREATE TABLE table_name_54 (round VARCHAR, year INTEGER)"}, {"answer": "SELECT date FROM table_name_72 WHERE result = \"3\u20132\" AND score = \"6\u20130, 6\u20134\"", "question": "When was the Result of 3\u20132, with a Score of 6\u20130, 6\u20134?", "context": "CREATE TABLE table_name_72 (date VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_8 WHERE opponent_s_ = \"anna-lena gr\u00f6nefeld tatjana malek\"", "question": "Which Surface has an Opponent(s) of anna-lena gr\u00f6nefeld tatjana malek?", "context": "CREATE TABLE table_name_8 (surface VARCHAR, opponent_s_ VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_12 WHERE date = \"5\u20136 february\"", "question": "Which Year has a Date of 5\u20136 february?", "context": "CREATE TABLE table_name_12 (year INTEGER, date VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_64 WHERE tie_no = \"27\"", "question": "What home team has 27 as the tie no.?", "context": "CREATE TABLE table_name_64 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE tie_no = \"1\"", "question": "What date has 1 as the tie no.?", "context": "CREATE TABLE table_name_60 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE away_team = \"west ham united\"", "question": "What score has west ham united as the away team?", "context": "CREATE TABLE table_name_46 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_71 WHERE away_team = \"southampton\"", "question": "What home team has Southampton as the away team?", "context": "CREATE TABLE table_name_71 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT current_club FROM table_name_50 WHERE height = 1.96", "question": "What current club has a Height of 1.96?", "context": "CREATE TABLE table_name_50 (current_club VARCHAR, height VARCHAR)"}, {"answer": "SELECT year_born__age_ FROM table_name_85 WHERE position = \"f/c\"", "question": "What is the Age of f/c Posiiton?", "context": "CREATE TABLE table_name_85 (year_born__age_ VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_45 WHERE score = 70 - 68 - 70 = 208", "question": "Who is the player with a score of 70-68-70=208?", "context": "CREATE TABLE table_name_45 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_38 WHERE score = 70 - 68 - 70 = 208", "question": "What place is the player with score of 70-68-70=208 from?", "context": "CREATE TABLE table_name_38 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT name_in_malay FROM table_name_55 WHERE foundation = \"iptura\"", "question": "What is the name for Malay with a foundation in Iptura?", "context": "CREATE TABLE table_name_55 (name_in_malay VARCHAR, foundation VARCHAR)"}, {"answer": "SELECT acronym FROM table_name_34 WHERE name_in_malay = \"kolej komuniti sungai petani\"", "question": "What is the acronym for the name Malay of Kolej Komuniti Sungai Petani?", "context": "CREATE TABLE table_name_34 (acronym VARCHAR, name_in_malay VARCHAR)"}, {"answer": "SELECT acronym FROM table_name_21 WHERE name_in_english = \"northern management and technological institute\"", "question": "What is the acronym for the English name Northern management and technological institute?", "context": "CREATE TABLE table_name_21 (acronym VARCHAR, name_in_english VARCHAR)"}, {"answer": "SELECT location FROM table_name_85 WHERE foundation = \"kkspe\"", "question": "What is the location of the Kkspe Foundation?", "context": "CREATE TABLE table_name_85 (location VARCHAR, foundation VARCHAR)"}, {"answer": "SELECT country FROM table_name_24 WHERE place = \"t3\" AND score = 67 - 70 = 137", "question": "What is Country, when Place is \"T3\", and when Score is \"67-70=137\"?", "context": "CREATE TABLE table_name_24 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE player = \"david toms\"", "question": "What is Score, when Player is \"David Toms\"?", "context": "CREATE TABLE table_name_64 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE player = \"tom lehman\"", "question": "What is Score, when Player is \"Tom Lehman\"?", "context": "CREATE TABLE table_name_1 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT title FROM table_name_18 WHERE format = \"mono lp\" AND label = \"pye\"", "question": "What is the Title of the Pye Label mono LP release?", "context": "CREATE TABLE table_name_18 (title VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT catalog_nr FROM table_name_41 WHERE format = \"stereo lp\" AND label = \"epic\" AND title = \"for little ones\"", "question": "What is the Catalog-Nr of the Epic Label Stereo LP named For Little Ones?", "context": "CREATE TABLE table_name_41 (catalog_nr VARCHAR, title VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT COUNT(area_km_2) FROM table_name_60 WHERE census_ranking = \"3,129 of 5,008\" AND population < 460", "question": "What is the total area with the census ranking of 3,129 of 5,008, and a Population smaller than 460?", "context": "CREATE TABLE table_name_60 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR)"}, {"answer": "SELECT COUNT(area_km_2) FROM table_name_66 WHERE census_ranking = \"3,129 of 5,008\" AND population > 460", "question": "What is the total area with the Census Ranking of 3,129 of 5,008, and a Population larger than 460?", "context": "CREATE TABLE table_name_66 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR)"}, {"answer": "SELECT census_ranking FROM table_name_17 WHERE area_km_2 > 578.28", "question": "What census ranking has an area greater than 578.28 km2?", "context": "CREATE TABLE table_name_17 (census_ranking VARCHAR, area_km_2 INTEGER)"}, {"answer": "SELECT position FROM table_name_78 WHERE player = \"jani lajunen\"", "question": "What is the position for Jani Lajunen?", "context": "CREATE TABLE table_name_78 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_20 WHERE nationality = \"united states\" AND player = \"jeffrey foss\"", "question": "What is the round number when nationality was United States, and player is Jeffrey Foss?", "context": "CREATE TABLE table_name_20 (round VARCHAR, nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_20 WHERE round > 2 AND position = \"(d)\"", "question": "What player has a round larger than 2, and position of (d)?", "context": "CREATE TABLE table_name_20 (player VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_24 WHERE position = \"(d)\" AND college = \"sc bern ( swiss )\"", "question": "What is the nationality for the position of (d), and college was SC Bern ( Swiss )?", "context": "CREATE TABLE table_name_24 (nationality VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_91 WHERE run_1 > 54.95 AND run_2 = 56.19", "question": "Who is the athlete with a run 1 larger than 54.95 and a 56.19 run 2?", "context": "CREATE TABLE table_name_91 (athlete VARCHAR, run_1 VARCHAR, run_2 VARCHAR)"}, {"answer": "SELECT MAX(run_2) FROM table_name_54 WHERE athlete = \"eric neilson\" AND run_3 > 55.97", "question": "What is the highest run 2 of athlete eric neilson, who has a run 3 larger than 55.97?", "context": "CREATE TABLE table_name_54 (run_2 INTEGER, athlete VARCHAR, run_3 VARCHAR)"}, {"answer": "SELECT MAX(run_3) FROM table_name_86 WHERE run_2 = 55.44", "question": "What is the highest run 3 of the athlete with a 55.44 run 2?", "context": "CREATE TABLE table_name_86 (run_3 INTEGER, run_2 VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_47 WHERE run_1 < 54.13 AND run_3 = 55.21", "question": "Who is the athlete with a run 1 less than 54.13 and a 55.21 run 3?", "context": "CREATE TABLE table_name_47 (athlete VARCHAR, run_1 VARCHAR, run_3 VARCHAR)"}, {"answer": "SELECT SUM(run_1) FROM table_name_40 WHERE run_2 > 55.24 AND athlete = \"matthias guggenberger\"", "question": "What is the sum of the run 1 of athlete matthias guggenberger, who has a run 2 greater than 55.24?", "context": "CREATE TABLE table_name_40 (run_1 INTEGER, run_2 VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT dissolved FROM table_name_31 WHERE assembled = \"3 june 1467\"", "question": "What is the dissolved date of the parliament assembled on 3 June 1467?", "context": "CREATE TABLE table_name_31 (dissolved VARCHAR, assembled VARCHAR)"}, {"answer": "SELECT dissolved FROM table_name_58 WHERE assembled = \"4 november 1461\"", "question": "What is the dissolved date of the parliament assembled on 4 November 1461?", "context": "CREATE TABLE table_name_58 (dissolved VARCHAR, assembled VARCHAR)"}, {"answer": "SELECT 2 AS nd_member FROM table_name_46 WHERE elected = \"1461\"", "question": "Who is the 2nd member elected in 1461?", "context": "CREATE TABLE table_name_46 (elected VARCHAR)"}, {"answer": "SELECT dissolved FROM table_name_53 WHERE summoned = \"28 february 1467\"", "question": "What is the dissolved date of the parliament summoned on 28 February 1467?", "context": "CREATE TABLE table_name_53 (dissolved VARCHAR, summoned VARCHAR)"}, {"answer": "SELECT 2 AS nd_member FROM table_name_96 WHERE assembled = \"30 march 1298\"", "question": "What is 2nd Member, when Assembled is \"30 March 1298\"?", "context": "CREATE TABLE table_name_96 (assembled VARCHAR)"}, {"answer": "SELECT 1 AS st_member FROM table_name_82 WHERE summoned = \"14 july 1302\"", "question": "What is 1st Member, when Summoned is \"14 July 1302\"?", "context": "CREATE TABLE table_name_82 (summoned VARCHAR)"}, {"answer": "SELECT assembled FROM table_name_55 WHERE summoned = \"6 october 1297\"", "question": "What is Assembled, when Summoned is \"6 October 1297\"?", "context": "CREATE TABLE table_name_55 (assembled VARCHAR, summoned VARCHAR)"}, {"answer": "SELECT summoned FROM table_name_23 WHERE elected = \"march 1298\"", "question": "What is Summoned, when Elected is \"March 1298\"?", "context": "CREATE TABLE table_name_23 (summoned VARCHAR, elected VARCHAR)"}, {"answer": "SELECT planet FROM table_name_31 WHERE sanskrit_word = \"budha\"", "question": "Which Planet has a Sanskrit word of budha?", "context": "CREATE TABLE table_name_31 (planet VARCHAR, sanskrit_word VARCHAR)"}, {"answer": "SELECT thai_name FROM table_name_55 WHERE transcription = \"wan phruehatsabodi\"", "question": "WHich Thai name has a Transcription of wan phruehatsabodi?", "context": "CREATE TABLE table_name_55 (thai_name VARCHAR, transcription VARCHAR)"}, {"answer": "SELECT thai_name FROM table_name_29 WHERE transcription = \"wan phruehatsabodi\"", "question": "Show the Thai name of wan phruehatsabodi?", "context": "CREATE TABLE table_name_29 (thai_name VARCHAR, transcription VARCHAR)"}, {"answer": "SELECT color FROM table_name_19 WHERE thai_name = \"\u0e27\u0e31\u0e19\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35\"", "question": "Show the Color which has a Thai name of \u0e27\u0e31\u0e19\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35?", "context": "CREATE TABLE table_name_19 (color VARCHAR, thai_name VARCHAR)"}, {"answer": "SELECT color FROM table_name_16 WHERE transcription = \"wan suk\"", "question": "Which Color has a Transcription of wan suk?", "context": "CREATE TABLE table_name_16 (color VARCHAR, transcription VARCHAR)"}, {"answer": "SELECT english_name FROM table_name_54 WHERE color = \"green\"", "question": "Which English name has a Color of green?", "context": "CREATE TABLE table_name_54 (english_name VARCHAR, color VARCHAR)"}, {"answer": "SELECT place FROM table_name_70 WHERE player = \"gil morgan\"", "question": "What is Gil Morgan's Place?", "context": "CREATE TABLE table_name_70 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_43 WHERE to_par = \"\u20135\"", "question": "What is the Place of the Player with a To par of \u20135?", "context": "CREATE TABLE table_name_43 (place VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_11 WHERE money___$__ = 137 AND score = 73 - 70 - 73 - 74 = 290", "question": "Which Player has a Money ($) of 137, and a Score of 73-70-73-74=290?", "context": "CREATE TABLE table_name_11 (player VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_69 WHERE money___$__ = 350 AND player = \"henry picard\"", "question": "Which To Par has a Money ($) of 350, and a Player of henry picard?", "context": "CREATE TABLE table_name_69 (to_par VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_15 WHERE category = \"best actor in a musical\"", "question": "What year had Best Actor in a Musical as a category?", "context": "CREATE TABLE table_name_15 (year INTEGER, category VARCHAR)"}, {"answer": "SELECT secretary FROM table_name_12 WHERE social_ao = \"lieke de boer\"", "question": "What Secretary has a Social AO of lieke de boer?", "context": "CREATE TABLE table_name_12 (secretary VARCHAR, social_ao VARCHAR)"}, {"answer": "SELECT social_ao FROM table_name_39 WHERE external_co = \"elena buscher\" AND president = \"harm van leeuwen\"", "question": "What Social AO has an External CO of elena buscher, and a President of harm van leeuwen?", "context": "CREATE TABLE table_name_39 (social_ao VARCHAR, external_co VARCHAR, president VARCHAR)"}, {"answer": "SELECT social_ao FROM table_name_83 WHERE external_co = \"simonas savickas\" AND internal_co = \"pieter kuijsten\"", "question": "What Social AO has an External CO of simonas savickas, and an Internal CO of pieter kuijsten?", "context": "CREATE TABLE table_name_83 (social_ao VARCHAR, external_co VARCHAR, internal_co VARCHAR)"}, {"answer": "SELECT secretary FROM table_name_90 WHERE internal_co = \"isabel voets\"", "question": "What Secretary has an Internal CO of isabel voets?", "context": "CREATE TABLE table_name_90 (secretary VARCHAR, internal_co VARCHAR)"}, {"answer": "SELECT academic_ao FROM table_name_20 WHERE president = \"harm van leeuwen\"", "question": "What Academic AO has a President of harm van leeuwen?", "context": "CREATE TABLE table_name_20 (academic_ao VARCHAR, president VARCHAR)"}, {"answer": "SELECT social_ao FROM table_name_68 WHERE president = \"harm van leeuwen\"", "question": "What Social AO has a President of harm van leeuwen?", "context": "CREATE TABLE table_name_68 (social_ao VARCHAR, president VARCHAR)"}, {"answer": "SELECT country FROM table_name_3 WHERE to_par = \"+2\" AND player = \"bernhard langer\"", "question": "Which country has a to par of +2 for Bernhard Langer?", "context": "CREATE TABLE table_name_3 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_41 WHERE score = 72 AND player = \"andrew brooks\"", "question": "Which country has a score of 72 by Andrew Brooks?", "context": "CREATE TABLE table_name_41 (country VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE to_par = \"+1\" AND player = \"anders forsbrand\"", "question": "What is Anders Forsbrand's score with a to par of +1?", "context": "CREATE TABLE table_name_64 (score VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT road_number FROM table_name_75 WHERE type = \"dead end\" AND rank = \"22\"", "question": "What is the rad number for the dead end in rank 22?", "context": "CREATE TABLE table_name_75 (road_number VARCHAR, type VARCHAR, rank VARCHAR)"}, {"answer": "SELECT name FROM table_name_42 WHERE type = \"dead end\" AND rank = \"22\"", "question": "What is the name of the dead end type ranked 22?", "context": "CREATE TABLE table_name_42 (name VARCHAR, type VARCHAR, rank VARCHAR)"}, {"answer": "SELECT type FROM table_name_6 WHERE rank = \"13\"", "question": "What is the type ranked 13?", "context": "CREATE TABLE table_name_6 (type VARCHAR, rank VARCHAR)"}, {"answer": "SELECT name FROM table_name_79 WHERE points = 1344", "question": "Who had 1344 points?", "context": "CREATE TABLE table_name_79 (name VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_62 WHERE against > 1136 AND losses < 15 AND golden_rivers = \"ultima\" AND byes < 2", "question": "What was the total number of wins that had an against greater than 1136 but losses less than 15 with Ultima with less than 2 byes?", "context": "CREATE TABLE table_name_62 (wins INTEGER, byes VARCHAR, golden_rivers VARCHAR, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_62 WHERE byes < 2", "question": "What's the average number of wins for those with less than 2 byes?", "context": "CREATE TABLE table_name_62 (wins INTEGER, byes INTEGER)"}, {"answer": "SELECT MAX(losses) FROM table_name_20 WHERE wins > 13", "question": "What's the greatest losses for those with more than 13 wins?", "context": "CREATE TABLE table_name_20 (losses INTEGER, wins INTEGER)"}, {"answer": "SELECT MAX(wins) FROM table_name_17 WHERE losses = 7 AND draws > 0", "question": "What was the greatest number of wins for a team that had 7 losses and more than 0 draws?", "context": "CREATE TABLE table_name_17 (wins INTEGER, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT SUM(byes) FROM table_name_85 WHERE wins = 7 AND against > 1412", "question": "What's the number of byes for someone who had 7 wins and an against number greater than 1412?", "context": "CREATE TABLE table_name_85 (byes INTEGER, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_11 WHERE byes > 2", "question": "What's the total wins of a team with more than 2 byes?", "context": "CREATE TABLE table_name_11 (wins VARCHAR, byes INTEGER)"}, {"answer": "SELECT player FROM table_name_81 WHERE finish = \"t16\"", "question": "Who had a finish of t16?", "context": "CREATE TABLE table_name_81 (player VARCHAR, finish VARCHAR)"}, {"answer": "SELECT country FROM table_name_75 WHERE player = \"jack nicklaus\"", "question": "What country is jack nicklaus from?", "context": "CREATE TABLE table_name_75 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_46 WHERE total = 272", "question": "Who has a total of 272?", "context": "CREATE TABLE table_name_46 (player VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_46 WHERE year_s__won = \"1977\"", "question": "What country won in 1977?", "context": "CREATE TABLE table_name_46 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_59 WHERE artist = \"de spelbrekers\" AND points < 0", "question": "Can you tell me the total number of Draw that has the Artist of de spelbrekers, and the Points smaller than 0?", "context": "CREATE TABLE table_name_59 (draw VARCHAR, artist VARCHAR, points VARCHAR)"}, {"answer": "SELECT artist FROM table_name_66 WHERE draw < 16 AND english_translation = \"lullaby\"", "question": "Can you tell me the Artist that has the Draw smaller than 16, and the English translation of lullaby?", "context": "CREATE TABLE table_name_66 (artist VARCHAR, draw VARCHAR, english_translation VARCHAR)"}, {"answer": "SELECT english_translation FROM table_name_61 WHERE artist = \"camillo felgen\"", "question": "Can you tell me the English translation that has the Artist of camillo felgen?", "context": "CREATE TABLE table_name_61 (english_translation VARCHAR, artist VARCHAR)"}, {"answer": "SELECT AVG(population) FROM table_name_59 WHERE area_km_2 > 3.09 AND status = \"town\"", "question": "What is the population of the town with an area larger than 3.09?", "context": "CREATE TABLE table_name_59 (population INTEGER, area_km_2 VARCHAR, status VARCHAR)"}, {"answer": "SELECT AVG(area_km_2) FROM table_name_97 WHERE census_ranking = \"636 of 5,008\"", "question": "What is the area of the community with a census ranking of 636 of 5,008?", "context": "CREATE TABLE table_name_97 (area_km_2 INTEGER, census_ranking VARCHAR)"}, {"answer": "SELECT MAX(area_km_2) FROM table_name_45 WHERE status = \"village\" AND official_name = \"drummond\"", "question": "What is the area of drummond village?", "context": "CREATE TABLE table_name_45 (area_km_2 INTEGER, status VARCHAR, official_name VARCHAR)"}, {"answer": "SELECT status FROM table_name_67 WHERE census_ranking = \"2,418 of 5,008\"", "question": "What is the status of the community with a census ranking of 2,418 of 5,008?", "context": "CREATE TABLE table_name_67 (status VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT MAX(area_km_2) FROM table_name_92 WHERE status = \"village\" AND census_ranking = \"1,442 of 5,008\" AND population < 1 OFFSET 778", "question": "What is the area of the village with a census ranking of 1,442 of 5,008 and a population less than 1,778?", "context": "CREATE TABLE table_name_92 (area_km_2 INTEGER, population VARCHAR, status VARCHAR, census_ranking VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_86 WHERE to_par < 16 AND total = 151", "question": "WHAT YEAR HAS A TO PAR SMALLER THAN 16, TOTAL 151?", "context": "CREATE TABLE table_name_86 (year_s__won VARCHAR, to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_30 WHERE to_par = 10", "question": "WHAT IS THE TOTAL WITH A TO PAR OF 10?", "context": "CREATE TABLE table_name_30 (total INTEGER, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE total < 151 AND to_par = 8", "question": "WHAT IS THE PLAYER WITH TOTAL LESS THAN 151, TO PAR OF 8?", "context": "CREATE TABLE table_name_41 (player VARCHAR, total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT player FROM table_name_31 WHERE total < 4 AND scottish_cup = 0 AND league_cup > 0", "question": "Who is the player who has a total less than 4, no scottish cups, and a league cup greater than 0?", "context": "CREATE TABLE table_name_31 (player VARCHAR, league_cup VARCHAR, total VARCHAR, scottish_cup VARCHAR)"}, {"answer": "SELECT SUM(scottish_cup) FROM table_name_47 WHERE league_cup < 2 AND total > 6 AND position = \"forward\"", "question": "What is the sum of the scottish cup of the forward player with less than 2 league cups and a total greater than 6?", "context": "CREATE TABLE table_name_47 (scottish_cup INTEGER, position VARCHAR, league_cup VARCHAR, total VARCHAR)"}, {"answer": "SELECT kilgore__r_ FROM table_name_47 WHERE potts__i_ = \"4%\" AND kaine__d_ = \"47%\" AND date = \"october 30, 2005\"", "question": "What was Kilgore's percentage when Potts (I) had 4% and Kaine (D) 47%, in the poll from October 30, 2005?", "context": "CREATE TABLE table_name_47 (kilgore__r_ VARCHAR, date VARCHAR, potts__i_ VARCHAR, kaine__d_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE potts__i_ = \"9%\"", "question": "On which date did Potts (I) poll at 9%?", "context": "CREATE TABLE table_name_92 (date VARCHAR, potts__i_ VARCHAR)"}, {"answer": "SELECT kaine__d_ FROM table_name_43 WHERE source = \"rasmussen\" AND date = \"october 24, 2005\"", "question": "What was Kaine's (D) percentage in the Rasmussen poll on October 24, 2005?", "context": "CREATE TABLE table_name_43 (kaine__d_ VARCHAR, source VARCHAR, date VARCHAR)"}, {"answer": "SELECT kaine__d_ FROM table_name_55 WHERE date = \"october 30, 2005\"", "question": "What was Kaine's (D) percentage in the poll on October 30, 2005?", "context": "CREATE TABLE table_name_55 (kaine__d_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT kilgore__r_ FROM table_name_95 WHERE potts__i_ = \"1%\"", "question": "What was Kilgore's (R) percentage when Potts (I) polled at 1%?", "context": "CREATE TABLE table_name_95 (kilgore__r_ VARCHAR, potts__i_ VARCHAR)"}, {"answer": "SELECT kaine__d_ FROM table_name_7 WHERE date = \"september 19, 2005\"", "question": "What was Kaine's (D) percentage in the poll on september 19, 2005?", "context": "CREATE TABLE table_name_7 (kaine__d_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_85 WHERE country = \"united states\" AND player = \"jay haas\"", "question": "What is To par, when Country is \"United States\", and when Player is \"Jay Haas\"?", "context": "CREATE TABLE table_name_85 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_71 WHERE score = 68 - 67 - 75 - 70 = 280", "question": "What is Player, when Score is \"68-67-75-70=280\"?", "context": "CREATE TABLE table_name_71 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE competition = \"friendly\" AND date = \"23 january 2010\"", "question": "What is the result of the friendly competition on 23 January 2010?", "context": "CREATE TABLE table_name_49 (result VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_61 WHERE result = \"w\" AND date = \"3 march 2010\"", "question": "What is the venue of the match with a w result on 3 March 2010?", "context": "CREATE TABLE table_name_61 (venue VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_24 WHERE notes = \"5.19km, 18controls\"", "question": "What is the lowest Year, when Notes is \"5.19km, 18controls\"?", "context": "CREATE TABLE table_name_24 (year INTEGER, notes VARCHAR)"}, {"answer": "SELECT notes FROM table_name_96 WHERE year = 2010", "question": "What is Notes, when Year is \"2010\"?", "context": "CREATE TABLE table_name_96 (notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_64 WHERE runner_s__up = \"in-kyung kim\"", "question": "What winning score has in-kyung kim as the runner(s)-up?", "context": "CREATE TABLE table_name_64 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_74 WHERE tournament = \"kraft nabisco championship\"", "question": "What winning score has kraft nabisco championship as the tournament?", "context": "CREATE TABLE table_name_74 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_97 WHERE name = \"grand prix de la marne\"", "question": "What Winning constructor has a Name of grand prix de la marne?", "context": "CREATE TABLE table_name_97 (winning_constructor VARCHAR, name VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_11 WHERE circuit = \"saint-rapha\u00ebl\"", "question": "What kind of the Winning driver has a Circuit of saint-rapha\u00ebl?", "context": "CREATE TABLE table_name_11 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT report FROM table_name_28 WHERE winning_constructor = \"maserati\" AND name = \"monza grand prix\"", "question": "Name the Report with Winning constructor of maserati, and a Name of monza grand prix?", "context": "CREATE TABLE table_name_28 (report VARCHAR, winning_constructor VARCHAR, name VARCHAR)"}, {"answer": "SELECT report FROM table_name_70 WHERE name = \"lyon grand prix\"", "question": "Name the Report has a Name of lyon grand prix?", "context": "CREATE TABLE table_name_70 (report VARCHAR, name VARCHAR)"}, {"answer": "SELECT report FROM table_name_29 WHERE winning_driver = \"heinrich-joachim von morgen\"", "question": "Name the Report which has heinrich-joachim von morgen?", "context": "CREATE TABLE table_name_29 (report VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE draft < 1975 AND round < 6", "question": "Which player had a draft before 1975 and before round 6?", "context": "CREATE TABLE table_name_79 (player VARCHAR, draft VARCHAR, round VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE opponent_team = \"belgium\" AND opponent = \"kirsten flipkens\"", "question": "What is Score, when Opponent Team is Belgium, and when Opponent is Kirsten Flipkens?", "context": "CREATE TABLE table_name_83 (score VARCHAR, opponent_team VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_94 WHERE round = \"world group\"", "question": "What is Opponent, when Round is World Group?", "context": "CREATE TABLE table_name_94 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT surface FROM table_name_51 WHERE edition = 2012 AND outcome = \"winner\"", "question": "What is Surface, when Edition is 2012, and when Outcome is Winner?", "context": "CREATE TABLE table_name_51 (surface VARCHAR, edition VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE outcome = \"loser\" AND edition = 2011", "question": "What is Score, when Outcome is Loser, and when Edition is 2011?", "context": "CREATE TABLE table_name_32 (score VARCHAR, outcome VARCHAR, edition VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE edition = 2011 AND surface = \"hard (i)\"", "question": "What is Score, when Edition is 2011, and when Surface is Hard (i)?", "context": "CREATE TABLE table_name_37 (score VARCHAR, edition VARCHAR, surface VARCHAR)"}, {"answer": "SELECT round FROM table_name_7 WHERE opponent_team = \"slovakia\" AND outcome = \"loser\" AND edition > 2010", "question": "What is Round, when Opponent Team is Slovakia, when Outcome is Loser, and when Edition is greater than 2010?", "context": "CREATE TABLE table_name_7 (round VARCHAR, edition VARCHAR, opponent_team VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_7 WHERE record = \"4\u20137\u20131\"", "question": "In what Week was the Record 4\u20137\u20131?", "context": "CREATE TABLE table_name_7 (week INTEGER, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE attendance = \"63,546\"", "question": "On what Date was the Attendance 63,546?", "context": "CREATE TABLE table_name_62 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_19 WHERE attendance = \"17,737\"", "question": "In what Week was the Attendance 17,737?", "context": "CREATE TABLE table_name_19 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_26 WHERE week > 10 AND opponent = \"philadelphia eagles\"", "question": "What is the Result of the game after Week 10 against Philadelphia Eagles?", "context": "CREATE TABLE table_name_26 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_28 WHERE week = 11", "question": "What is the Opponent on Week 11?", "context": "CREATE TABLE table_name_28 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(wnba_game_average) FROM table_name_11 WHERE average = \"9,290 (4th)\" AND total_for_year < 157 OFFSET 934", "question": "What is the largest WNBA game average with 9,290 (4th) is the average, and less than 157,934 is the total for the year?", "context": "CREATE TABLE table_name_11 (wnba_game_average INTEGER, average VARCHAR, total_for_year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_59 WHERE total_for_year < 105 OFFSET 005", "question": "How many years in all was less than 105,005 the total for the year?", "context": "CREATE TABLE table_name_59 (year VARCHAR, total_for_year INTEGER)"}, {"answer": "SELECT MAX(sellouts) FROM table_name_89 WHERE year = 2008 AND total_for_year < 161 OFFSET 369", "question": "What is the maximum sellouts for the 2008 year, with less than 161,369 total for year?", "context": "CREATE TABLE table_name_89 (sellouts INTEGER, year VARCHAR, total_for_year VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_name_48 WHERE party = \"republican\" AND district = \"louisiana 7\"", "question": "What is the highest First Elected, when Party is \"Republican\", and when District is \"Louisiana 7\"?", "context": "CREATE TABLE table_name_48 (first_elected INTEGER, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_name_76 WHERE results = \"re-elected\" AND district = \"louisiana 5\"", "question": "What is Party, when Results is \"Re-Elected\", and when District is \"Louisiana 5\"?", "context": "CREATE TABLE table_name_76 (party VARCHAR, results VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_name_52 WHERE incumbent = \"rodney alexander\"", "question": "What is Party, when Incumbent is \"Rodney Alexander\"?", "context": "CREATE TABLE table_name_52 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT results FROM table_name_93 WHERE first_elected < 1988", "question": "What is Results, when First Elected is less than 1988?", "context": "CREATE TABLE table_name_93 (results VARCHAR, first_elected INTEGER)"}, {"answer": "SELECT incumbent FROM table_name_7 WHERE district = \"louisiana 4\"", "question": "What is Incumbent, when District is \"Louisiana 4\"?", "context": "CREATE TABLE table_name_7 (incumbent VARCHAR, district VARCHAR)"}, {"answer": "SELECT finish FROM table_name_33 WHERE car_number = \"6\"", "question": "What's the finish for car number 6?", "context": "CREATE TABLE table_name_33 (finish VARCHAR, car_number VARCHAR)"}, {"answer": "SELECT speed_rank FROM table_name_11 WHERE year = \"1963\"", "question": "What's the speed rank in 1963?", "context": "CREATE TABLE table_name_11 (speed_rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_50 WHERE result = \"runner-up\" AND wins = 1 AND year < 2006", "question": "What is the total of Losses with a Result of runner-up, Wins of 1, and a Year smaller than 2006?", "context": "CREATE TABLE table_name_50 (losses INTEGER, year VARCHAR, result VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_60 WHERE result = \"runner-up\" AND losses > 1", "question": "What is the smallest Draws with a Result of runner-up, and Losses larger than 1?", "context": "CREATE TABLE table_name_60 (draws INTEGER, result VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_34 WHERE result = \"champions\" AND matches > 5", "question": "What is the number of Year with a Result of champions, and Matches larger than 5?", "context": "CREATE TABLE table_name_34 (year VARCHAR, result VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_48 WHERE losses > 1", "question": "What is the greatest Wins with Losses larger than 1?", "context": "CREATE TABLE table_name_48 (wins INTEGER, losses INTEGER)"}, {"answer": "SELECT SUM(year) FROM table_name_93 WHERE wins = 1 AND losses < 1", "question": "What is the total number of Year with Wins of 1, and Losses smaller than 1?", "context": "CREATE TABLE table_name_93 (year INTEGER, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_26 WHERE matches < 5 AND year = 1994", "question": "What is the greatest Wins with Matches smaller than 5, and a Year of 1994?", "context": "CREATE TABLE table_name_26 (wins INTEGER, matches VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE opponent = \"motherwell\" AND venue = \"fir park\"", "question": "On what date was Motherwell the opponent at Fir Park?", "context": "CREATE TABLE table_name_77 (date VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT round FROM table_name_37 WHERE venue = \"st. mirren park\" AND attendance > 4 OFFSET 555", "question": "What is the round at St. Mirren Park with more than 4,555 people attending?", "context": "CREATE TABLE table_name_37 (round VARCHAR, venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_62 WHERE away_team = \"banbury united\" AND tie_no > 102", "question": "What's the sum of attendance when banbury united is the away team and tie no is over 102?", "context": "CREATE TABLE table_name_62 (attendance INTEGER, away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT SUM(tie_no) FROM table_name_76 WHERE home_team = \"burgess hill town\"", "question": "What's the sum of tie no for home team burgess hill town?", "context": "CREATE TABLE table_name_76 (tie_no INTEGER, home_team VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_22 WHERE county = \"deuel\" AND number_of_households < 1 OFFSET 819", "question": "What is the highest population of Deuel county's 1,819 households?", "context": "CREATE TABLE table_name_22 (population INTEGER, county VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT competition FROM table_name_88 WHERE venue = \"away\" AND opponent = \"bracknell bees\"", "question": "When the venue is away and the opponents are the bracknell bees, what is the competition?", "context": "CREATE TABLE table_name_88 (competition VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_76 WHERE venue = \"away\" AND date = \"28th\"", "question": "What opponent played on the 28th with a venue of away?", "context": "CREATE TABLE table_name_76 (opponent VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE date = \"20th\"", "question": "What was the venue on the 20th?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE venue = \"home\" AND opponent = \"peterborough phantoms\"", "question": "When did the peterborough phantoms play at a venue of home?", "context": "CREATE TABLE table_name_25 (date VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_10 WHERE result = \"2-0 l\"", "question": "Which opponent has a result of 2-0 l?", "context": "CREATE TABLE table_name_10 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_73 WHERE competition = \"challenge\" AND result = \"8-2 w\"", "question": "Which opponent completed a challenge competition with a result of 8-2 w?", "context": "CREATE TABLE table_name_73 (opponent VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT round FROM table_name_43 WHERE race = \"int. adac preis von zweibr\u00fccken\"", "question": "What shows for round when the race was Int. Adac Preis Von Zweibr\u00fccken?", "context": "CREATE TABLE table_name_43 (round VARCHAR, race VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_43 WHERE circuit = \"norisring\"", "question": "What is the round for the Norisring circuit?", "context": "CREATE TABLE table_name_43 (round INTEGER, circuit VARCHAR)"}, {"answer": "SELECT race FROM table_name_45 WHERE round < 8 AND date = \"6 july\"", "question": "What race was a round smaller than 8,  on 6 july?", "context": "CREATE TABLE table_name_45 (race VARCHAR, round VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_name_92 WHERE race = \"int. adac-preis der tourenwagen von sachsen-anhalt\"", "question": "What is the round for the Int. Adac-Preis Der Tourenwagen Von Sachsen-Anhalt?", "context": "CREATE TABLE table_name_92 (round VARCHAR, race VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_29 WHERE attendance = 56 OFFSET 023", "question": "What week were there 56,023 people in attendance?", "context": "CREATE TABLE table_name_29 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_45 WHERE week > 9 AND date = \"november 20, 1983\"", "question": "What is the attendance number later than week 9 on November 20, 1983?", "context": "CREATE TABLE table_name_45 (attendance VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_45 WHERE date < 1979 AND opponent_in_the_final = \"bill scanlon\"", "question": "What is Surface, when Date is less than 1979, and when Opponent in the Final is \"Bill Scanlon\"?", "context": "CREATE TABLE table_name_45 (surface VARCHAR, date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_98 WHERE opponent_in_the_final = \"john mcenroe\" AND championship = \"los angeles , u.s.\"", "question": "What is Score in The Final, when Opponent in The Final is \"John McEnroe\", and when Championship is \"Los Angeles , U.S.\"?", "context": "CREATE TABLE table_name_98 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_98 WHERE opponent_in_the_final = \"bill scanlon\"", "question": "What is Outcome, when Opponent in The Final is \"Bill Scanlon\"?", "context": "CREATE TABLE table_name_98 (outcome VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_34 WHERE player = \"bernhard langer\"", "question": "Which To par has a Player of bernhard langer?", "context": "CREATE TABLE table_name_34 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_33 WHERE country = \"united states\" AND player = \"raymond floyd\"", "question": "Which Score has a Country of united states, and a Player of raymond floyd?", "context": "CREATE TABLE table_name_33 (score VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_56 WHERE place = \"t6\" AND player = \"nick faldo\"", "question": "Which To par has a Place of t6, and a Player of nick faldo?", "context": "CREATE TABLE table_name_56 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_59 WHERE place = \"t2\" AND player = \"mark james\"", "question": "Which To par has a Place of t2, and a Player of mark james?", "context": "CREATE TABLE table_name_59 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_2 WHERE place = \"t10\" AND player = \"tony jacklin\"", "question": "Which Country has a Place of t10, and a Player of tony jacklin?", "context": "CREATE TABLE table_name_2 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_37 WHERE score = 71 - 74 - 70 = 215", "question": "Which Country has a Score of 71-74-70=215?", "context": "CREATE TABLE table_name_37 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_39 WHERE wins < 4 AND against = 2510 AND byes > 0", "question": "How many losses for the team with less than 4 wins, more than 0 byes and 2510 against?", "context": "CREATE TABLE table_name_39 (losses INTEGER, byes VARCHAR, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_64 WHERE against = 1800 AND draws > 0", "question": "How many wins for team with 1800 Against and more than 0 byes?", "context": "CREATE TABLE table_name_64 (wins INTEGER, against VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_42 WHERE against < 814", "question": "What is the least wins for a team with against less than 814?", "context": "CREATE TABLE table_name_42 (wins INTEGER, against INTEGER)"}, {"answer": "SELECT MIN(losses) FROM table_name_28 WHERE wins = 3 AND against > 1919", "question": "How many losses for the team with 3 wins and more than 1919 against?", "context": "CREATE TABLE table_name_28 (losses INTEGER, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_22 WHERE 2011 = \"1r\" AND 2000 = \"1r\"", "question": "What is the 2002 result where 2011 and 2000 are 1R?", "context": "CREATE TABLE table_name_22 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_34 WHERE 2003 = \"325\"", "question": "What is the 2008 result where 2003 is 325?", "context": "CREATE TABLE table_name_34 (Id VARCHAR)"}, {"answer": "SELECT 2002 FROM table_name_38 WHERE 2006 = \"a\" AND 2010 = \"q1\"", "question": "What is the 2002 result when 2006 is A and 2010 is Q1?", "context": "CREATE TABLE table_name_38 (Id VARCHAR)"}, {"answer": "SELECT MIN(year_completed) FROM table_name_31 WHERE dam_type = \"concrete gravity\" AND impounded_body_of_water = \"deep creek reservoir\"", "question": "Which Year completed has a Dam type of concrete gravity, and an Impounded body of water of deep creek reservoir?", "context": "CREATE TABLE table_name_31 (year_completed INTEGER, dam_type VARCHAR, impounded_body_of_water VARCHAR)"}, {"answer": "SELECT dam_type FROM table_name_90 WHERE year_completed = 1961", "question": "Which dam type was completed in 1961?", "context": "CREATE TABLE table_name_90 (dam_type VARCHAR, year_completed VARCHAR)"}, {"answer": "SELECT MAX(year_completed) FROM table_name_25 WHERE dam_type = \"earthfill embankment\" AND dam_constructed = \"khancoban dam\"", "question": "Which Year completed has a Dam type of earthfill embankment, and a Dam constructed of khancoban dam?", "context": "CREATE TABLE table_name_25 (year_completed INTEGER, dam_type VARCHAR, dam_constructed VARCHAR)"}, {"answer": "SELECT reservoir_capacity FROM table_name_41 WHERE impounded_body_of_water = \"tumut two pondage\"", "question": "Which Reservoir capacity has an Impounded body of water of tumut two pondage?", "context": "CREATE TABLE table_name_41 (reservoir_capacity VARCHAR, impounded_body_of_water VARCHAR)"}, {"answer": "SELECT companion__in_order_from_star_ FROM table_name_58 WHERE semimajor_axis___au__ = \"0.1886 +0.083 \u22120.0104\"", "question": "What Companion (in order from star) has a Semimajor axis (AU) of 0.1886 +0.083 \u22120.0104?", "context": "CREATE TABLE table_name_58 (companion__in_order_from_star_ VARCHAR, semimajor_axis___au__ VARCHAR)"}, {"answer": "SELECT inclination FROM table_name_81 WHERE eccentricity = \"0.06 +0.06 \u22120.11\"", "question": "What Inclination has Eccentricity of 0.06 +0.06 \u22120.11?", "context": "CREATE TABLE table_name_81 (inclination VARCHAR, eccentricity VARCHAR)"}, {"answer": "SELECT companion__in_order_from_star_ FROM table_name_10 WHERE orbital_period___s_day__ = \"9.6184 +0.0050 \u22120.0049\"", "question": "What Companion (in order from star) has an Orbital period (s day) of 9.6184 +0.0050 \u22120.0049?", "context": "CREATE TABLE table_name_10 (companion__in_order_from_star_ VARCHAR, orbital_period___s_day__ VARCHAR)"}, {"answer": "SELECT inclination FROM table_name_9 WHERE mass = \"\u2265 6.6 +1.1 \u22121.0 m\u2295\"", "question": "What Inclination has a Mass of \u2265 6.6 +1.1 \u22121.0 m\u2295?", "context": "CREATE TABLE table_name_9 (inclination VARCHAR, mass VARCHAR)"}, {"answer": "SELECT semimajor_axis___au__ FROM table_name_86 WHERE companion__in_order_from_star_ = \"g\"", "question": "What Semimajor axis (AU) has a Companion (in order from star) of g?", "context": "CREATE TABLE table_name_86 (semimajor_axis___au__ VARCHAR, companion__in_order_from_star_ VARCHAR)"}, {"answer": "SELECT semimajor_axis___au__ FROM table_name_73 WHERE mass = \"\u2265 3.5 \u00b1 1.4 m\u2295\"", "question": "What Semimajor axis (AU) has a Mass of \u2265 3.5 \u00b1 1.4 m\u2295?", "context": "CREATE TABLE table_name_73 (semimajor_axis___au__ VARCHAR, mass VARCHAR)"}, {"answer": "SELECT slalom FROM table_name_2 WHERE country = \"switzerland\"", "question": "What Slalom was Switzerland in?", "context": "CREATE TABLE table_name_2 (slalom VARCHAR, country VARCHAR)"}, {"answer": "SELECT package_version FROM table_name_74 WHERE carrier = \"telus mobility\"", "question": "WHAT IS THE PACKAGE VERSION WITH TELUS MOBILITY?", "context": "CREATE TABLE table_name_74 (package_version VARCHAR, carrier VARCHAR)"}, {"answer": "SELECT package_version FROM table_name_9 WHERE device = \"blackberry storm 9530\" AND applications = \"5.0.0.419\" AND carrier = \"mts mobility\"", "question": "WHAT IS THE PACKAGE VERSION FOR blackberry storm 9530, APPLICATION 5.0.0.419, AND MTS MOBILITY?", "context": "CREATE TABLE table_name_9 (package_version VARCHAR, carrier VARCHAR, device VARCHAR, applications VARCHAR)"}, {"answer": "SELECT carrier FROM table_name_37 WHERE package_version = \"5.0.0.742\"", "question": "WHAT IS THE CARRIER WITH 5.0.0.742 VERSION?", "context": "CREATE TABLE table_name_37 (carrier VARCHAR, package_version VARCHAR)"}, {"answer": "SELECT carrier FROM table_name_25 WHERE package_version = \"4.7.0.208\"", "question": "WHAT IS THE CARRIER FOR 4.7.0.208 VERSION?", "context": "CREATE TABLE table_name_25 (carrier VARCHAR, package_version VARCHAR)"}, {"answer": "SELECT device FROM table_name_18 WHERE carrier = \"mts mobility\"", "question": "WHAT IS THE DEVICE WITH MTS MOBILITY?", "context": "CREATE TABLE table_name_18 (device VARCHAR, carrier VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_93 WHERE to_par = 15", "question": "How much money was there when the to par was 15?", "context": "CREATE TABLE table_name_93 (money___ INTEGER, to_par VARCHAR)"}, {"answer": "SELECT years FROM table_name_97 WHERE model = \"250\"", "question": "What are the years for the 250 model?", "context": "CREATE TABLE table_name_97 (years VARCHAR, model VARCHAR)"}, {"answer": "SELECT power FROM table_name_67 WHERE chassis_code = \"w123.130\"", "question": "What is the power of the Chassis code w123.130?", "context": "CREATE TABLE table_name_67 (power VARCHAR, chassis_code VARCHAR)"}, {"answer": "SELECT engine FROM table_name_53 WHERE chassis_code = \"w123.026\"", "question": "What Engine does the w123.026 chassis have?", "context": "CREATE TABLE table_name_53 (engine VARCHAR, chassis_code VARCHAR)"}, {"answer": "SELECT chassis_code FROM table_name_63 WHERE power = \"ps (kw; hp) @ 4200\" AND model = \"200d\"", "question": "What Chassis code has a 200d model and a Power of ps (kw; hp) @ 4200?", "context": "CREATE TABLE table_name_63 (chassis_code VARCHAR, power VARCHAR, model VARCHAR)"}, {"answer": "SELECT height_ft__m_ FROM table_name_90 WHERE name = \"regions bank building\"", "question": "What is the height in ft and m of the regions bank building?", "context": "CREATE TABLE table_name_90 (height_ft__m_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_9 WHERE name = \"van antwerp building\"", "question": "What is the street address of the van antwerp building?", "context": "CREATE TABLE table_name_9 (street_address VARCHAR, name VARCHAR)"}, {"answer": "SELECT height_ft__m_ FROM table_name_12 WHERE floors < 11", "question": "What is the hight in ft and m of the building with less than 11 floors?", "context": "CREATE TABLE table_name_12 (height_ft__m_ VARCHAR, floors INTEGER)"}, {"answer": "SELECT COUNT(against) FROM table_name_54 WHERE opposing_teams = \"italy\"", "question": "What is the against when the opposing team is Italy?", "context": "CREATE TABLE table_name_54 (against VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT COUNT(goals_per_match) FROM table_name_12 WHERE name = \"cha bum-kun\"", "question": "What is Cha Bum-Kun's average number of goals per match?", "context": "CREATE TABLE table_name_12 (goals_per_match VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(caps) FROM table_name_97 WHERE name = \"jon dahl tomasson\" AND goals_per_match < 0.46", "question": "How many caps does Jon Dahl Tomasson, who has less than 0.46 goals per match, have?", "context": "CREATE TABLE table_name_97 (caps VARCHAR, name VARCHAR, goals_per_match VARCHAR)"}, {"answer": "SELECT club FROM table_name_61 WHERE city = \"vila do conde\"", "question": "What is the club from Vila Do Conde?", "context": "CREATE TABLE table_name_61 (club VARCHAR, city VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_88 WHERE city = \"braga\"", "question": "What is the stadium for the city of Braga?", "context": "CREATE TABLE table_name_88 (stadium VARCHAR, city VARCHAR)"}, {"answer": "SELECT round FROM table_name_16 WHERE player = \"kelsey tessier\"", "question": "In what round was Kelsey Tessier drafted?", "context": "CREATE TABLE table_name_16 (round VARCHAR, player VARCHAR)"}, {"answer": "SELECT Local AS mission FROM table_name_8 WHERE mission = \"mauritius\"", "question": "What is Local Mission, when Mission is \"Mauritius\"?", "context": "CREATE TABLE table_name_8 (Local VARCHAR, mission VARCHAR)"}, {"answer": "SELECT local_position FROM table_name_92 WHERE mission = \"paraguay\"", "question": "What is Local Position, when Mission is \"Paraguay\"?", "context": "CREATE TABLE table_name_92 (local_position VARCHAR, mission VARCHAR)"}, {"answer": "SELECT local_location FROM table_name_68 WHERE resident_country = \"belgium\" AND mission = \"poland\"", "question": "What is Local Location, when Resident Country is \"Belgium\", and when Mission is \"Poland\"?", "context": "CREATE TABLE table_name_68 (local_location VARCHAR, resident_country VARCHAR, mission VARCHAR)"}, {"answer": "SELECT resident_country FROM table_name_79 WHERE local_location = \"copenhagen\"", "question": "What is Resident Country, when Local Location is \"Copenhagen\"?", "context": "CREATE TABLE table_name_79 (resident_country VARCHAR, local_location VARCHAR)"}, {"answer": "SELECT player FROM table_name_66 WHERE place = \"1\"", "question": "What is Player, when Place is \"1\"?", "context": "CREATE TABLE table_name_66 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE country = \"united states\" AND place = \"t3\" AND player = \"phil blackmar\"", "question": "What is Score, when Country is \"United States\", when Place is \"T3\", and when Player is \"Phil Blackmar\"?", "context": "CREATE TABLE table_name_10 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_25 WHERE country = \"australia\"", "question": "What is To Par, when Country is \"Australia\"?", "context": "CREATE TABLE table_name_25 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_41 WHERE player = \"vijay singh\"", "question": "What is Score, when Player is \"Vijay Singh\"?", "context": "CREATE TABLE table_name_41 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT surface FROM table_name_67 WHERE date = \"23 october 2000\"", "question": "What type of surface did they play on 23 October 2000?", "context": "CREATE TABLE table_name_67 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_14 WHERE date = \"21 july 1997\"", "question": "What type of surface did they play on 21 July 1997", "context": "CREATE TABLE table_name_14 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_92 WHERE championship = \"estoril, portugal\"", "question": "what was the score of the Championship match played in Estoril, Portugal?", "context": "CREATE TABLE table_name_92 (score_in_the_final VARCHAR, championship VARCHAR)"}, {"answer": "SELECT championship FROM table_name_31 WHERE opponent_in_the_final = \"tommy haas\"", "question": "What was the name of the opponent Tommy Haas played in the Championship?", "context": "CREATE TABLE table_name_31 (championship VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_48 WHERE date = \"18 january 1999\"", "question": "What was the score of the match played on 18 January 1999?", "context": "CREATE TABLE table_name_48 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT season FROM table_name_15 WHERE opponent = \"roma\"", "question": "What season has roma as the opponent?", "context": "CREATE TABLE table_name_15 (season VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT ship_type FROM table_name_47 WHERE disposition_of_ship = \"prize\" AND tonnage < 151", "question": "What is the Ship Type of the Prize Disposition of ship and a tonnage less than 151?", "context": "CREATE TABLE table_name_47 (ship_type VARCHAR, disposition_of_ship VARCHAR, tonnage VARCHAR)"}, {"answer": "SELECT MAX(tonnage) FROM table_name_35 WHERE ship_type = \"brig\" AND disposition_of_ship = \"prize\"", "question": "What is the highest tonnage of the Brig Ship Type and the disposition of Ship of Prize?", "context": "CREATE TABLE table_name_35 (tonnage INTEGER, ship_type VARCHAR, disposition_of_ship VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_34 WHERE country = \"england\" AND score < 71", "question": "What's the to par for england when the score is less than 71?", "context": "CREATE TABLE table_name_34 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(1985 AS _1986) FROM table_name_33 WHERE total_points = 124", "question": "What is the lowest total for 1985-1986 when the total points are 124?", "context": "CREATE TABLE table_name_33 (total_points VARCHAR)"}, {"answer": "SELECT year_born__age_ FROM table_name_41 WHERE current_club = \"sporting al riyadi beirut\" AND position = \"pf\"", "question": "Which Year born (Age) has a Current Club of sporting al riyadi beirut, and a Position of pf?", "context": "CREATE TABLE table_name_41 (year_born__age_ VARCHAR, current_club VARCHAR, position VARCHAR)"}, {"answer": "SELECT current_club FROM table_name_97 WHERE player = \"bassem balaa\"", "question": "Which Current Club has a Player of bassem balaa?", "context": "CREATE TABLE table_name_97 (current_club VARCHAR, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_43 WHERE year = 1968", "question": "What was the round in 1968?", "context": "CREATE TABLE table_name_43 (round VARCHAR, year VARCHAR)"}, {"answer": "SELECT round FROM table_name_19 WHERE year < 1987", "question": "What is the round for a year earlier than 1987?", "context": "CREATE TABLE table_name_19 (round VARCHAR, year INTEGER)"}, {"answer": "SELECT round FROM table_name_92 WHERE grand_slam = \"davis cup\"", "question": "What is the round when Grand Slam was the Davis Cup?", "context": "CREATE TABLE table_name_92 (round VARCHAR, grand_slam VARCHAR)"}, {"answer": "SELECT grand_slam FROM table_name_35 WHERE year = 1987 AND round = \"first round\" AND winner = \"ivan lendl\"", "question": "What is the grand slam in 1987, when round shows first round, and Ivan Lendl won?", "context": "CREATE TABLE table_name_35 (grand_slam VARCHAR, winner VARCHAR, year VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(win__percentage) FROM table_name_40 WHERE manager = \"juan carlos ch\u00e1vez\" AND lost < 4", "question": "What is the highes win % that manager juan carlos ch\u00e1vez's team had when they lost less than 4 times?", "context": "CREATE TABLE table_name_40 (win__percentage INTEGER, manager VARCHAR, lost VARCHAR)"}, {"answer": "SELECT district FROM table_name_33 WHERE party = \"republican\" AND first_elected = 1998", "question": "In which district is the incumbent a republican first elected in 1998?", "context": "CREATE TABLE table_name_33 (district VARCHAR, party VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT party FROM table_name_57 WHERE incumbent = \"virginia foxx\"", "question": "What is the party affiliation of Virginia Foxx?", "context": "CREATE TABLE table_name_57 (party VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT event FROM table_name_29 WHERE winning_driver = \"laurent aiello laurent aiello\" AND round > 1 AND circuit = \"wunstorf\"", "question": "What is Event, when Winning Driver is \"Laurent Aiello Laurent Aiello\", when Round is greater than 1, and when Circuit is \"Wunstorf\"?", "context": "CREATE TABLE table_name_29 (event VARCHAR, circuit VARCHAR, winning_driver VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE round = 2", "question": "What is Date, when Round is \"2\"?", "context": "CREATE TABLE table_name_38 (date VARCHAR, round VARCHAR)"}, {"answer": "SELECT event FROM table_name_62 WHERE round = 10", "question": "What is Event, when Round is \"10\"?", "context": "CREATE TABLE table_name_62 (event VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE round < 10 AND circuit = \"norisring\"", "question": "What is Date, when Round is less than 10, and when Circuit is \"Norisring\"?", "context": "CREATE TABLE table_name_18 (date VARCHAR, round VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT MAX(goal_difference) FROM table_name_54 WHERE played > 34", "question": "What is the highest goal difference of the club with more than 34 played?", "context": "CREATE TABLE table_name_54 (goal_difference INTEGER, played INTEGER)"}, {"answer": "SELECT COUNT(points) FROM table_name_76 WHERE goal_difference > 17 AND played > 34", "question": "What is the total number of points of the club with a goal difference greater than 17 and more than 34 played?", "context": "CREATE TABLE table_name_76 (points VARCHAR, goal_difference VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(goal_difference) FROM table_name_10 WHERE club = \"real betis\" AND wins < 18", "question": "What is the lowest goal difference of club real betis, who has less than 18 wins?", "context": "CREATE TABLE table_name_10 (goal_difference INTEGER, club VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_68 WHERE played > 34", "question": "What is the sum of the points of the club with more than 34 played?", "context": "CREATE TABLE table_name_68 (points INTEGER, played INTEGER)"}, {"answer": "SELECT MIN(played) FROM table_name_59 WHERE wins > 15 AND goals_against < 42", "question": "What is the lowest number played of the club with more than 15 wins and less than 42 goals against?", "context": "CREATE TABLE table_name_59 (played INTEGER, wins VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_81 WHERE goal_difference < 21 AND draws = 4 AND losses < 21", "question": "What is the total number of wins of the club with a goal difference less than 21, 4 draws, and less than 21 losses?", "context": "CREATE TABLE table_name_81 (wins VARCHAR, losses VARCHAR, goal_difference VARCHAR, draws VARCHAR)"}, {"answer": "SELECT round FROM table_name_42 WHERE phase = \"qualifying\" AND draw_date = \"16 july 2010\"", "question": "What is the round for the qualifying phase with a draw date on 16 July 2010?", "context": "CREATE TABLE table_name_42 (round VARCHAR, phase VARCHAR, draw_date VARCHAR)"}, {"answer": "SELECT finish FROM table_name_18 WHERE player = \"jack nicklaus\"", "question": "Jack Nicklaus finished in what place?", "context": "CREATE TABLE table_name_18 (finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_5 WHERE to_par = \"+2\" AND finish = \"t22\"", "question": "What year (s) won was +2 the To par, and t22 the finish?", "context": "CREATE TABLE table_name_5 (year_s__won VARCHAR, to_par VARCHAR, finish VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_73 WHERE total > 294 AND country = \"united states\" AND player = \"lee trevino\"", "question": "Lee Trevino of the United States with a total greater than 294 had what To par?", "context": "CREATE TABLE table_name_73 (to_par VARCHAR, player VARCHAR, total VARCHAR, country VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_20 WHERE total < 294 AND country = \"spain\"", "question": "The golfer from Spain with a total less than 294 won in what year (s)?", "context": "CREATE TABLE table_name_20 (year_s__won VARCHAR, total VARCHAR, country VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_13 WHERE pick__number < 130 AND player = \"tyler bunz\"", "question": "Which Nationality has a Pick # smaller than 130 and a Player of tyler bunz? Question 1", "context": "CREATE TABLE table_name_13 (nationality VARCHAR, pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT league_from FROM table_name_48 WHERE player = \"louis domingue\"", "question": "Which League from has a Player of louis domingue?", "context": "CREATE TABLE table_name_48 (league_from VARCHAR, player VARCHAR)"}, {"answer": "SELECT league_from FROM table_name_13 WHERE nhl_team = \"san jose sharks (from carolina) 3\"", "question": "Which League from has a NHL team of san jose sharks (from carolina) 3?", "context": "CREATE TABLE table_name_13 (league_from VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_78 WHERE team_from = \"s\u00f6dert\u00e4lje sk\"", "question": "Name the Nationality of s\u00f6dert\u00e4lje sk?", "context": "CREATE TABLE table_name_78 (nationality VARCHAR, team_from VARCHAR)"}, {"answer": "SELECT team_from FROM table_name_59 WHERE pick__number = 148", "question": "Which Team has a Pick # of 148?", "context": "CREATE TABLE table_name_59 (team_from VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_22 WHERE league_from = \"ontario hockey league\" AND player = \"tony dehart\"", "question": "Which team has a League from of ontario hockey league, and a Player of tony dehart?", "context": "CREATE TABLE table_name_22 (nhl_team VARCHAR, league_from VARCHAR, player VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_40 WHERE place = \"t4\" AND player = \"nick price\"", "question": "What is T4 Place Player Nick Price's Money?", "context": "CREATE TABLE table_name_40 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_44 WHERE place = \"1\"", "question": "What is the To par of the Place 1 Player?", "context": "CREATE TABLE table_name_44 (to_par VARCHAR, place VARCHAR)"}, {"answer": "SELECT player FROM table_name_40 WHERE score = 69 - 68 - 66 - 70 = 273", "question": "What Player's Score is 69-68-66-70=273?", "context": "CREATE TABLE table_name_40 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_54 WHERE to_par = \"\u22126\"", "question": "What Player's To par is \u22126?", "context": "CREATE TABLE table_name_54 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_3 WHERE to_par > 3 AND year_s__won = \"1979\"", "question": "Which Country has a To par larger than 3, and a Year(s) won of 1979? Question 1", "context": "CREATE TABLE table_name_3 (country VARCHAR, to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT MIN(to_par) FROM table_name_42 WHERE country = \"australia\" AND year_s__won = \"1990\"", "question": "Which To par has a Country of australia, and a Year(s) won of 1990?", "context": "CREATE TABLE table_name_42 (to_par INTEGER, country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT city FROM table_name_34 WHERE province = \"cantabria\"", "question": "Which city is in Cantabria?", "context": "CREATE TABLE table_name_34 (city VARCHAR, province VARCHAR)"}, {"answer": "SELECT city FROM table_name_89 WHERE name_in_english = \"socialist party of the extremadurian people\"", "question": "What is the name of the city with the Socialist Party of the Extremadurian People?", "context": "CREATE TABLE table_name_89 (city VARCHAR, name_in_english VARCHAR)"}, {"answer": "SELECT province FROM table_name_31 WHERE party = \"partido socialista del pueblo extreme\u00f1o\"", "question": "Which province has the partido Socialista del Pueblo Extreme\u00f1o party?", "context": "CREATE TABLE table_name_31 (province VARCHAR, party VARCHAR)"}, {"answer": "SELECT date_of_registration FROM table_name_38 WHERE province = \"madrid\" AND party = \"partido radical\"", "question": "When was the Partido radical party in Madrid registered?", "context": "CREATE TABLE table_name_38 (date_of_registration VARCHAR, province VARCHAR, party VARCHAR)"}, {"answer": "SELECT province FROM table_name_11 WHERE city = \"pamplona\"", "question": "Which province is Pamplona located in?", "context": "CREATE TABLE table_name_11 (province VARCHAR, city VARCHAR)"}, {"answer": "SELECT date_of_registration FROM table_name_60 WHERE name_in_english = \"canarian workers socialist union\"", "question": "On what date was the Canarian Workers Socialist Union registered?", "context": "CREATE TABLE table_name_60 (date_of_registration VARCHAR, name_in_english VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_37 WHERE total = 8 AND nation = \"hungary\" AND silver > 2", "question": "What is the lowest rank of Hungary where there was a total of 8 medals, including 2 silver?", "context": "CREATE TABLE table_name_37 (rank INTEGER, silver VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_11 WHERE nation = \"great britain\" AND bronze < 16", "question": "What is the highest rank of Great Britain who has less than 16 bronze?", "context": "CREATE TABLE table_name_11 (rank INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT injured FROM table_name_98 WHERE killed = \"29\"", "question": "What was the injured entry for the row with a killed entry of 29?", "context": "CREATE TABLE table_name_98 (injured VARCHAR, killed VARCHAR)"}, {"answer": "SELECT location FROM table_name_81 WHERE year > 1993 AND killed = \"100.9\"", "question": "What location has a killed of 100.9, and a year later than 1993?", "context": "CREATE TABLE table_name_81 (location VARCHAR, year VARCHAR, killed VARCHAR)"}, {"answer": "SELECT injured FROM table_name_16 WHERE country = \"venezuela\"", "question": "What was the injured entry for Venezuela?", "context": "CREATE TABLE table_name_16 (injured VARCHAR, country VARCHAR)"}, {"answer": "SELECT ages FROM table_name_48 WHERE dance = \"cha-cha-cha\" AND pair = \"mitchell & jessica\"", "question": "How old were Mitchell & Jessica when they danced the Cha-Cha-Cha?", "context": "CREATE TABLE table_name_48 (ages VARCHAR, dance VARCHAR, pair VARCHAR)"}, {"answer": "SELECT pair FROM table_name_2 WHERE dance = \"cha-cha-cha\" AND date = \"november 18, 2008\"", "question": "Who danced the Cha-Cha-Cha on November 18, 2008?", "context": "CREATE TABLE table_name_2 (pair VARCHAR, dance VARCHAR, date VARCHAR)"}, {"answer": "SELECT pair FROM table_name_14 WHERE date = \"october 14, 2008\" AND dance = \"samba\"", "question": "Who danced the Samba on October 14, 2008?", "context": "CREATE TABLE table_name_14 (pair VARCHAR, date VARCHAR, dance VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_38 WHERE nationality = \"canada\" AND year < 1974 AND player = \"yvon bouillon\"", "question": "What was the pic for Canada for player Yvon Bouillon earlier than 1974?", "context": "CREATE TABLE table_name_38 (pick INTEGER, player VARCHAR, nationality VARCHAR, year VARCHAR)"}, {"answer": "SELECT competition FROM table_name_33 WHERE score = \"3-0\"", "question": "What was the competition when the score was 3-0?", "context": "CREATE TABLE table_name_33 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT position FROM table_name_18 WHERE round < 7 AND name = \"akin ayodele\"", "question": "Akin Ayodele drafted before round 7 plays what position?", "context": "CREATE TABLE table_name_18 (position VARCHAR, round VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(overall) FROM table_name_60 WHERE round < 4 AND college = \"tennessee\" AND pick__number > 9", "question": "What is the total overall for the pick that went before round 4, who went to Tennessee for college, and was picked at a number bigger than 9?", "context": "CREATE TABLE table_name_60 (overall INTEGER, pick__number VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_40 WHERE round < 7 AND college = \"tennessee\"", "question": "What is the pick number average for the player who was drafted before round 7, and went to college at Tennessee?", "context": "CREATE TABLE table_name_40 (pick__number INTEGER, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_48 WHERE home = \"chicago black hawks\" AND record = \"1-1\"", "question": "What visiting team played at the home of the Chicago Black Hawks with a record of 1-1?", "context": "CREATE TABLE table_name_48 (visitor VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_7 WHERE record = \"4-3\"", "question": "What home team has a record of 4-3?", "context": "CREATE TABLE table_name_7 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_49 WHERE record = \"4-3\"", "question": "What visiting team has a record of 4-3?", "context": "CREATE TABLE table_name_49 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(league_cup) FROM table_name_99 WHERE championship < 3 AND total < 2 AND fa_cup > 0", "question": "What is the highest league up with less than 3 championships, a total less than 2, and a FA cup larger than 0?", "context": "CREATE TABLE table_name_99 (league_cup INTEGER, fa_cup VARCHAR, championship VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_59 WHERE championship < 1", "question": "What is the average total for less than 1 championship?", "context": "CREATE TABLE table_name_59 (total INTEGER, championship INTEGER)"}, {"answer": "SELECT COUNT(total) FROM table_name_9 WHERE championship < 2 AND league_cup > 1", "question": "What i the total number of championships less than 2, and a league cup larger than 1?", "context": "CREATE TABLE table_name_9 (total VARCHAR, championship VARCHAR, league_cup VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_10 WHERE score = \"2\u20131\" AND away_team = \"telford united\"", "question": "What home team has a score of 2\u20131, when the away team was Telford United?", "context": "CREATE TABLE table_name_10 (home_team VARCHAR, score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE away_team = \"wrexham\"", "question": "What was the score when the way team was Wrexham?", "context": "CREATE TABLE table_name_12 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_32 WHERE tie_no = \"1\"", "question": "What is the home team when the Tie no is 1?", "context": "CREATE TABLE table_name_32 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE player = \"eduardo romero\"", "question": "What was Eduardo Romero's score?", "context": "CREATE TABLE table_name_59 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_26 WHERE score = 67 - 71 - 70 = 208", "question": "Where was the score 67-71-70=208?", "context": "CREATE TABLE table_name_26 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_26 WHERE country = \"united states\" AND place = \"t9\" AND player = \"fred couples\"", "question": "What was the score when Fred Couples played in the United States and placed t9?", "context": "CREATE TABLE table_name_26 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_15 WHERE player = \"gary koch\"", "question": "What country does Gary Koch play for?", "context": "CREATE TABLE table_name_15 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_7 WHERE country = \"zimbabwe\"", "question": "Who plays for Zimbabwe?", "context": "CREATE TABLE table_name_7 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_60 WHERE place = \"4\"", "question": "What was the To par when the place was 4?", "context": "CREATE TABLE table_name_60 (to_par VARCHAR, place VARCHAR)"}, {"answer": "SELECT current_club FROM table_name_45 WHERE position = \"sg/sf\" AND height < 1.96", "question": "What is the current club with a position of sg/sf and a height less than 1.96?", "context": "CREATE TABLE table_name_45 (current_club VARCHAR, position VARCHAR, height VARCHAR)"}, {"answer": "SELECT year_born__age_ FROM table_name_18 WHERE player = \"rowan barrett\"", "question": "What year was Rowan Barrett born?", "context": "CREATE TABLE table_name_18 (year_born__age_ VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(height) FROM table_name_37 WHERE player = \"rans brempong\"", "question": "What is the lowest height for Rans Brempong?", "context": "CREATE TABLE table_name_37 (height INTEGER, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE result = \"0\u20133\"", "question": "When was the result 0\u20133?", "context": "CREATE TABLE table_name_48 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_95 WHERE date = \"9 september 2009\"", "question": "What is the result of the match on 9 September 2009?", "context": "CREATE TABLE table_name_95 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT name FROM table_name_34 WHERE date_from = \"13 august 2008\"", "question": "What is the name of the player that was loaned out on 13 August 2008 ?", "context": "CREATE TABLE table_name_34 (name VARCHAR, date_from VARCHAR)"}, {"answer": "SELECT date_to FROM table_name_12 WHERE name = \"febian brandy\" AND date_from = \"2 february 2009\"", "question": "When was febian brandy loaned out until, when was loaned out on 2 february 2009.?", "context": "CREATE TABLE table_name_12 (date_to VARCHAR, name VARCHAR, date_from VARCHAR)"}, {"answer": "SELECT date_to FROM table_name_78 WHERE name = \"james chester\"", "question": "When was james chester loaned out until ?", "context": "CREATE TABLE table_name_78 (date_to VARCHAR, name VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_65 WHERE date_from = \"27 november 2008\"", "question": "Where did the player loaned out on 27 november 2008 move to ?", "context": "CREATE TABLE table_name_65 (moving_to VARCHAR, date_from VARCHAR)"}, {"answer": "SELECT date_to FROM table_name_90 WHERE name = \"ron-robert zieler\"", "question": "When was ron-robert zieler loaned out until ?", "context": "CREATE TABLE table_name_90 (date_to VARCHAR, name VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_18 WHERE date_to = \"30 june 2009\" AND pos = \"mf\"", "question": "Where did the player in Pos mf, move to until 30 june 2009 ?", "context": "CREATE TABLE table_name_18 (moving_to VARCHAR, date_to VARCHAR, pos VARCHAR)"}, {"answer": "SELECT name FROM table_name_87 WHERE replacement = \"michael skibbe\"", "question": "What is the name of the manager who was replaced by michael skibbe?", "context": "CREATE TABLE table_name_87 (name VARCHAR, replacement VARCHAR)"}, {"answer": "SELECT club FROM table_name_22 WHERE replacement = \"aykut kocaman\"", "question": "What is the club the used aykut kocaman as the replacement?", "context": "CREATE TABLE table_name_22 (club VARCHAR, replacement VARCHAR)"}, {"answer": "SELECT date_of_appointment FROM table_name_80 WHERE name = \"nejat biyedi\u0107\"", "question": "What is the date of appointment of nejat biyedi\u0107?", "context": "CREATE TABLE table_name_80 (date_of_appointment VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE location_attendance = \"wachovia center\"", "question": "When did they play at the wachovia center?", "context": "CREATE TABLE table_name_75 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT game FROM table_name_86 WHERE location_attendance = \"amway arena\"", "question": "What game number was played at amway arena?", "context": "CREATE TABLE table_name_86 (game VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_18 WHERE silver = 1 AND rank < 2", "question": "How many medals were won total for the country that won 1 silver and was ranked 2 or lower?", "context": "CREATE TABLE table_name_18 (total VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_65 WHERE gold > 0 AND rank > 1 AND total < 4", "question": "How many silvers did the country with more than 0 gold and a rank above 1 win that had a total less than 4?", "context": "CREATE TABLE table_name_65 (silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_25 WHERE total > 5", "question": "How many bronzes were won by the country with a total higher than 5?", "context": "CREATE TABLE table_name_25 (bronze INTEGER, total INTEGER)"}, {"answer": "SELECT SUM(bronze) FROM table_name_34 WHERE rank > 3 AND silver > 0", "question": "How many bronzes were won for the country that had a larger than 3 rank and a silver win count above 0?", "context": "CREATE TABLE table_name_34 (bronze INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(other) FROM table_name_28 WHERE us_open_cup > 0 AND concacaf = 0", "question": "What is the highest value for Other that has CONCACAF value of 0 a U.S. Open Cup larger than 0?", "context": "CREATE TABLE table_name_28 (other INTEGER, us_open_cup VARCHAR, concacaf VARCHAR)"}, {"answer": "SELECT subregion FROM table_name_41 WHERE no_p = 4 AND pop_area__1_km\u00b2_ = 534", "question": "Which Subregion has a No P. of 4, and a Pop/Area (1/km\u00b2) of 534?", "context": "CREATE TABLE table_name_41 (subregion VARCHAR, no_p VARCHAR, pop_area__1_km\u00b2_ VARCHAR)"}, {"answer": "SELECT AVG(pop_area__1_km\u00b2_) FROM table_name_84 WHERE no_p > 1 AND name = \"albergaria-a-velha\"", "question": "Which Pop/Area (1/km\u00b2) has a No P. larger than 1, and a Name of albergaria-a-velha?", "context": "CREATE TABLE table_name_84 (pop_area__1_km\u00b2_ INTEGER, no_p VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(area__km\u00b2_) FROM table_name_39 WHERE pop = 17 OFFSET 089", "question": "Which Area (km\u00b2) is the lowest one that has a Population of 17,089?", "context": "CREATE TABLE table_name_39 (area__km\u00b2_ INTEGER, pop VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_68 WHERE tie_no = \"replay\" AND date = \"4 february 1987\" AND away_team = \"luton town\"", "question": "Who was the home team on 4 February 1987 when Luton Town was away team and there was no replay?", "context": "CREATE TABLE table_name_68 (home_team VARCHAR, away_team VARCHAR, tie_no VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_51 WHERE date = \"31 january 1987\" AND home_team = \"wimbledon\"", "question": "Who was the away team on 31 January 1987 when the home team was Wimbledon?", "context": "CREATE TABLE table_name_51 (away_team VARCHAR, date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT height__ft_ FROM table_name_53 WHERE country = \"macedonia\"", "question": "How high is Macedonia's highest point?", "context": "CREATE TABLE table_name_53 (height__ft_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT theme FROM table_name_96 WHERE winner = \"dani\"", "question": "What is the theme with dani as the winner?", "context": "CREATE TABLE table_name_96 (theme VARCHAR, winner VARCHAR)"}, {"answer": "SELECT notes FROM table_name_76 WHERE theme = \"patience\"", "question": "What are the notes of the patience theme?", "context": "CREATE TABLE table_name_76 (notes VARCHAR, theme VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_85 WHERE position = \"(c)\"", "question": "what is the round when the position is (c)?", "context": "CREATE TABLE table_name_85 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_3 WHERE player = \"jake gardiner\"", "question": "what is the round for jake gardiner?", "context": "CREATE TABLE table_name_3 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_27 WHERE round > 1 AND nationality = \"canada\" AND position = \"(d)\"", "question": "what is the college/junior/club team (league) when the round is higher than 1, the nationality is canada and the position is (d)?", "context": "CREATE TABLE table_name_27 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT position FROM table_name_13 WHERE round > 3 AND nationality = \"united states\" AND player = \"nick pryor\"", "question": "what is the position when the round is higher than 3, the nationality is united states and the player is nick pryor?", "context": "CREATE TABLE table_name_13 (position VARCHAR, player VARCHAR, round VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT college_junior_club_team__league_ FROM table_name_52 WHERE position = \"(c)\" AND round > 2", "question": "what is the college/junior/club team (league) when the position is (c) and the round is higher than 2?", "context": "CREATE TABLE table_name_52 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_38 WHERE south_west_dfl = \"heathmere\" AND wins > 11", "question": "When the team Heathmere of the South West DFL won more than 11 games, what is the maximum byes?", "context": "CREATE TABLE table_name_38 (byes INTEGER, south_west_dfl VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_9 WHERE draws > 0 AND against > 1401", "question": "What is the most games lost when the against is greater than 1401, and the draws greater than 0?", "context": "CREATE TABLE table_name_9 (losses INTEGER, draws VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_52 WHERE against < 2514 AND byes < 0", "question": "What is the maximum draws when less than 2514 is the against, and less than 0 byes?", "context": "CREATE TABLE table_name_52 (draws INTEGER, against VARCHAR, byes VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_83 WHERE losses = 17", "question": "What is the wins average when 17 games were lost?", "context": "CREATE TABLE table_name_83 (wins INTEGER, losses VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_81 WHERE city = \"debrecen\"", "question": "What stadium is in the city of Debrecen?", "context": "CREATE TABLE table_name_81 (stadium VARCHAR, city VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_69 WHERE rank = \"5\" AND bronze < 14", "question": "What is the number of silver when rank was 5, and a bronze was smaller than 14?", "context": "CREATE TABLE table_name_69 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_92 WHERE silver = 0 AND total < 1", "question": "What is the highest bronze number when silver is 0, and the total is smaller than 1?", "context": "CREATE TABLE table_name_92 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_4 WHERE nation = \"argentina\" AND gold < 0", "question": "What is the total when the nation was Argentina, and a Goldwas smaller than 0?", "context": "CREATE TABLE table_name_4 (total VARCHAR, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT nation FROM table_name_96 WHERE bronze < 7 AND gold > 0 AND total > 7 AND silver < 3", "question": "What is the nation when bronze is less than 7, gold is larger than 0, total is larger than 7, and silver is smaller than 3?", "context": "CREATE TABLE table_name_96 (nation VARCHAR, silver VARCHAR, total VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE h___a = \"a\" AND league_position = \"2nd\" AND opponents = \"manchester city\"", "question": "What date was the game against manchester city when they had a league position of 2nd?", "context": "CREATE TABLE table_name_22 (date VARCHAR, opponents VARCHAR, h___a VARCHAR, league_position VARCHAR)"}, {"answer": "SELECT result_f___a FROM table_name_95 WHERE date = \"6 march 1993\"", "question": "What is the result F-A of the game on 6 march 1993?", "context": "CREATE TABLE table_name_95 (result_f___a VARCHAR, date VARCHAR)"}, {"answer": "SELECT result_f___a FROM table_name_93 WHERE date = \"3 may 1993\"", "question": "What is the result F-A of the game on 3 may 1993?", "context": "CREATE TABLE table_name_93 (result_f___a VARCHAR, date VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_32 WHERE date = \"18 nov 1989\" AND home_team = \"doncaster rovers\"", "question": "What is Tie no, when Date is \"18 Nov 1989\", and when Home Team is \"Doncaster Rovers\"?", "context": "CREATE TABLE table_name_32 (tie_no VARCHAR, date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE away_team = \"yeovil town\"", "question": "What is Score, when Away Team is \"Yeovil Town\"?", "context": "CREATE TABLE table_name_43 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_46 WHERE tie_no = \"27\"", "question": "What is Home Team, when Tie no is \"27\"?", "context": "CREATE TABLE table_name_46 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE tie_no = \"37\"", "question": "What is Date, when Tie no is \"37\"?", "context": "CREATE TABLE table_name_97 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_85 WHERE date = \"22 nov 1989\" AND away_team = \"bath city\"", "question": "What is Home Team, when Date is \"22 Nov 1989\", and when Away Team is \"Bath City\"?", "context": "CREATE TABLE table_name_85 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT year FROM table_name_84 WHERE play_by_play = \"don earle\"", "question": "What year was the play-by-play for Don Earle?", "context": "CREATE TABLE table_name_84 (year VARCHAR, play_by_play VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_92 WHERE score = 68 AND player = \"tom kite\"", "question": "What is Tom Kite with a Score of 68's To Par?", "context": "CREATE TABLE table_name_92 (to_par VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_78 WHERE player = \"tom kite\"", "question": "What is Tom Kite's Place?", "context": "CREATE TABLE table_name_78 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT televote_points FROM table_name_49 WHERE jury_points = \"0\" AND draw = 23", "question": "What is the televote points for 0 jury points and 23 draws?", "context": "CREATE TABLE table_name_49 (televote_points VARCHAR, jury_points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT district FROM table_name_98 WHERE first_elected = 2000 AND party = \"republican\"", "question": "What district was a republican first elected in 2000?", "context": "CREATE TABLE table_name_98 (district VARCHAR, first_elected VARCHAR, party VARCHAR)"}, {"answer": "SELECT district FROM table_name_99 WHERE first_elected > 2000 AND incumbent = \"russ carnahan\"", "question": "In what district was incumbent Russ Carnahan elected after 2000?", "context": "CREATE TABLE table_name_99 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE loser = \"leicester city\"", "question": "For which venue did Leicester City lose?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, loser VARCHAR)"}, {"answer": "SELECT season FROM table_name_13 WHERE winner = \"stoke city\"", "question": "What season did Stoke City win?", "context": "CREATE TABLE table_name_13 (season VARCHAR, winner VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_17 WHERE venue = \"st andrew's\"", "question": "What was the attendance for St Andrew's?", "context": "CREATE TABLE table_name_17 (attendance VARCHAR, venue VARCHAR)"}, {"answer": "SELECT season FROM table_name_5 WHERE winner = \"wolverhampton wanderers\"", "question": "What season did Wolverhampton Wanderers win?", "context": "CREATE TABLE table_name_5 (season VARCHAR, winner VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_23 WHERE erp_w = 75", "question": "Which Call sign has an ERP W of 75?", "context": "CREATE TABLE table_name_23 (call_sign VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT class FROM table_name_19 WHERE facility_id > 85076 AND call_sign = \"k289au\"", "question": "Which Class has a Facility ID greater than 85076 and a Call Sign of K289au?", "context": "CREATE TABLE table_name_19 (class VARCHAR, facility_id VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT year FROM table_name_77 WHERE nominee = \"jack cole\"", "question": "What year was jack cole nominated?", "context": "CREATE TABLE table_name_77 (year VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT award_ceremony FROM table_name_10 WHERE nominee = \"howard bay and patton campbell\"", "question": "What award ceremony was howard bay and patton campbell nominated?", "context": "CREATE TABLE table_name_10 (award_ceremony VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_13 WHERE date = \"may 9\"", "question": "What is Visitor, when Date is \"May 9\"?", "context": "CREATE TABLE table_name_13 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE home = \"montreal canadiens\" AND date = \"may 16\"", "question": "What is Score, when Home is \"Montreal Canadiens\", and when Date is \"May 16\"?", "context": "CREATE TABLE table_name_79 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE date = \"may 11\"", "question": "What is Score, when Date is \"May 11\"?", "context": "CREATE TABLE table_name_97 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_77 WHERE home = \"chicago black hawks\" AND date = \"may 4\"", "question": "What is Visitor, when Home is \"Chicago Black Hawks\", and when Date is \"May 4\"?", "context": "CREATE TABLE table_name_77 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE record = \"2-0\"", "question": "What is Score, when Record is \"2-0\"?", "context": "CREATE TABLE table_name_95 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_70 WHERE date = \"14 may\"", "question": "Which tournament included the round played on 14 May?", "context": "CREATE TABLE table_name_70 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_name_91 WHERE date = \"10 may\"", "question": "Which round was played on 10 May?", "context": "CREATE TABLE table_name_91 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT language FROM table_name_24 WHERE points > 119 AND place > 5", "question": "what is the language when the points is more than 119 and the place is higher than 5?", "context": "CREATE TABLE table_name_24 (language VARCHAR, points VARCHAR, place VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_37 WHERE national_final = \"4th\" AND points < 139", "question": "what is the highest place when the national final is 4th and the points is less than 139?", "context": "CREATE TABLE table_name_37 (place INTEGER, national_final VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(place) FROM table_name_95 WHERE language = \"croatian\"", "question": "what is the lowest place when the language is croatian?", "context": "CREATE TABLE table_name_95 (place INTEGER, language VARCHAR)"}, {"answer": "SELECT language FROM table_name_18 WHERE english_translation = \"come to me\"", "question": "what is the language when the english translation is come to me?", "context": "CREATE TABLE table_name_18 (language VARCHAR, english_translation VARCHAR)"}, {"answer": "SELECT song FROM table_name_50 WHERE points > 64 AND national_final = \"4th\" AND draw > 3", "question": "what is the song when the points is more than 64, the national final is 4th and draw is more than 3?", "context": "CREATE TABLE table_name_50 (song VARCHAR, draw VARCHAR, points VARCHAR, national_final VARCHAR)"}, {"answer": "SELECT category FROM table_name_95 WHERE result = \"nominated\" AND award = \"drama desk award\" AND nominee = \"nathan lane\"", "question": "What is Category, when Result is \"Nominated\", when Award is \"Drama Desk Award\", and when Nominee is \"Nathan Lane\"?", "context": "CREATE TABLE table_name_95 (category VARCHAR, nominee VARCHAR, result VARCHAR, award VARCHAR)"}, {"answer": "SELECT category FROM table_name_95 WHERE result = \"won\" AND nominee = \"bebe neuwirth\"", "question": "What is Category, when Result is \"Won\", and when Nominee is \"Bebe Neuwirth\"?", "context": "CREATE TABLE table_name_95 (category VARCHAR, result VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_68 WHERE result = \"nominated\" AND category = \"outstanding actor in a musical\" AND award = \"drama desk award\"", "question": "What is the total number of Year, when Result is \"Nominated\", when Category is \"Outstanding Actor in a Musical\", and when Award is \"Drama Desk Award\"?", "context": "CREATE TABLE table_name_68 (year VARCHAR, award VARCHAR, result VARCHAR, category VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_84 WHERE award = \"outer critics circle award\" AND nominee = \"nathan lane\"", "question": "What is the sum of Year, when Award is \"Outer Critics Circle Award\", and when Nominee is \"Nathan Lane\"?", "context": "CREATE TABLE table_name_84 (year INTEGER, award VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT name FROM table_name_54 WHERE builder = \"kerr stuart\"", "question": "What is Name, when Builder is \"Kerr Stuart\"?", "context": "CREATE TABLE table_name_54 (name VARCHAR, builder VARCHAR)"}, {"answer": "SELECT built FROM table_name_42 WHERE works_number = \"717\"", "question": "What is Built, when Works Number is \"717\"?", "context": "CREATE TABLE table_name_42 (built VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT type FROM table_name_50 WHERE works_number = \"unknown\"", "question": "What is Type, when Works Number is \"unknown\"?", "context": "CREATE TABLE table_name_50 (type VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_27 WHERE race = \"adac gro\u00dfer preis der tourenwagen\"", "question": "What is the circuit for the ADAC gro\u00dfer preis der tourenwagen race?", "context": "CREATE TABLE table_name_27 (circuit VARCHAR, race VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE winning_driver = \"fabrizio giovanardi christian abt\"", "question": "What is the date that Fabrizio Giovanardi Christian Abt won?", "context": "CREATE TABLE table_name_12 (date VARCHAR, winning_driver VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_83 WHERE tie_no = \"16\"", "question": "What home team has 16 as the tie no.?", "context": "CREATE TABLE table_name_83 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE away_team = \"hull city\"", "question": "What score has hull city as the away team?", "context": "CREATE TABLE table_name_9 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_89 WHERE tie_no = \"12\"", "question": "What away team has 12 as the tie no.?", "context": "CREATE TABLE table_name_89 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE tie_no = \"11\"", "question": "What date has 11 as the tie no.?", "context": "CREATE TABLE table_name_48 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_80 WHERE away_team = \"blackpool\"", "question": "What home team has blackpool as the away team?", "context": "CREATE TABLE table_name_80 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT surface FROM table_name_24 WHERE opponents = \"sergiy stakhovsky mikhail youzhny\"", "question": "What was the surface when the opponent was sergiy stakhovsky mikhail youzhny?", "context": "CREATE TABLE table_name_24 (surface VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE opponents = \"luk\u00e1\u0161 dlouh\u00fd leander paes\"", "question": "What was the score for the opponent luk\u00e1\u0161 dlouh\u00fd leander paes?", "context": "CREATE TABLE table_name_75 (score VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE surface = \"hard\" AND partner = \"marc gicquel\"", "question": "What day was there a hard surface when the partner was Marc Gicquel?", "context": "CREATE TABLE table_name_64 (date VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT AVG(total__kg_) FROM table_name_3 WHERE snatch = 84 AND bodyweight < 57.35", "question": "What is the total (kg) when the snatch was 84, and bodyweight was less than 57.35?", "context": "CREATE TABLE table_name_3 (total__kg_ INTEGER, snatch VARCHAR, bodyweight VARCHAR)"}, {"answer": "SELECT AVG(clean_) & _jerk FROM table_name_8 WHERE total__kg_ > 204 AND snatch > 98", "question": "What is the clean & jerk when the total (kg) is more than 204, and snatch is more than 98?", "context": "CREATE TABLE table_name_8 (_jerk VARCHAR, clean_ INTEGER, total__kg_ VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT SUM(total__kg_) FROM table_name_94 WHERE bodyweight > 57.8 AND clean_ & _jerk < 103", "question": "What is the total (kg when the bodyweight is more than 57.8, and the clean & jerk is less than 103?", "context": "CREATE TABLE table_name_94 (total__kg_ INTEGER, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)"}, {"answer": "SELECT overall FROM table_name_16 WHERE pick__number < 20", "question": "What is the Overall of the pick less than 20?", "context": "CREATE TABLE table_name_16 (overall VARCHAR, pick__number INTEGER)"}, {"answer": "SELECT name FROM table_name_45 WHERE position = \"cornerback\" AND college = \"wisconsin\"", "question": "What is the name of the cornerback from Wisconsin college?", "context": "CREATE TABLE table_name_45 (name VARCHAR, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_77 WHERE name = \"pat thomas\"", "question": "What college is Pat Thomas from?", "context": "CREATE TABLE table_name_77 (college VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(top_10) FROM table_name_89 WHERE events < 39 AND top_5 = 1 AND cuts_made > 5", "question": "What is the best top-10 result when events are fewer than 39, top-5 is 1 and more than 5 cuts are made?", "context": "CREATE TABLE table_name_89 (top_10 INTEGER, cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_31 WHERE top_5 > 1", "question": "How many cuts made when the top-5 is greater than 1?", "context": "CREATE TABLE table_name_31 (cuts_made INTEGER, top_5 INTEGER)"}, {"answer": "SELECT MAX(top_5) FROM table_name_93 WHERE top_10 = 1 AND wins > 0", "question": "What is the best top-5 when top-10 is 1 and there are more than 0 wins?", "context": "CREATE TABLE table_name_93 (top_5 INTEGER, top_10 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_33 WHERE top_5 = 0 AND top_10 = 1 AND events < 12", "question": "What is the number of cuts made when the top-5 is 0, top-10 is 1 and events are fewer than 12?", "context": "CREATE TABLE table_name_33 (cuts_made INTEGER, events VARCHAR, top_5 VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_14 WHERE team_2 = \"leeds united\"", "question": "What was the 1st leg for Team 2, Leeds United?", "context": "CREATE TABLE table_name_14 (team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_79 WHERE team_2 = \"slovan liberec\"", "question": "What was the 1st leg for Team 2, Slovan Liberec?", "context": "CREATE TABLE table_name_79 (team_2 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_13 WHERE team_2 = \"slovan liberec\"", "question": "Which Team 1, has Team 2, Slovan Liberec?", "context": "CREATE TABLE table_name_13 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE home_team = \"west bromwich albion\"", "question": "What is the date of the match with west bromwich albion as the home team?", "context": "CREATE TABLE table_name_90 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(apps) FROM table_name_35 WHERE season > 2008 AND team = \"kairat\" AND level < 1", "question": "What is the highest Apps of kairat after 2008 and a Level smaller than 1?", "context": "CREATE TABLE table_name_35 (apps INTEGER, level VARCHAR, season VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(level) FROM table_name_90 WHERE apps = 27 AND season > 2006", "question": "What is the total Level with 27 Apps after 2006?", "context": "CREATE TABLE table_name_90 (level INTEGER, apps VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(apps) FROM table_name_22 WHERE level > 1", "question": "What is the lowest Apps with more than 1 level?", "context": "CREATE TABLE table_name_22 (apps INTEGER, level INTEGER)"}, {"answer": "SELECT SUM(level) FROM table_name_7 WHERE season = 2007", "question": "what is the total levels in 2007?", "context": "CREATE TABLE table_name_7 (level INTEGER, season VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_3 WHERE award_ceremony = \"laurence olivier award\" AND result = \"won\" AND nominee = \"imelda staunton\"", "question": "How many times is the award ceremony laurence olivier award, result is won and the nominee is imelda staunton?", "context": "CREATE TABLE table_name_3 (year VARCHAR, nominee VARCHAR, award_ceremony VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_28 WHERE category = \"best sound design\"", "question": "what is the result when the category is best sound design?", "context": "CREATE TABLE table_name_28 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_74 WHERE draws > 1", "question": "What's the total byes for more than 1 draw?", "context": "CREATE TABLE table_name_74 (byes VARCHAR, draws INTEGER)"}, {"answer": "SELECT hometown_school FROM table_name_79 WHERE pick > 30 AND position = \"of\" AND team = \"cleveland indians\"", "question": "What Hometown/School had a pick above 30, position of OF and team of Cleveland Indians?", "context": "CREATE TABLE table_name_79 (hometown_school VARCHAR, team VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_76 WHERE position = \"ss\"", "question": "What's the highest pick for SS position?", "context": "CREATE TABLE table_name_76 (pick INTEGER, position VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_68 WHERE team = \"minnesota twins\"", "question": "What pick did the Minnesota Twins have?", "context": "CREATE TABLE table_name_68 (pick INTEGER, team VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_97 WHERE losses < 2", "question": "What is the average Draws, when Losses is less than 2?", "context": "CREATE TABLE table_name_97 (draws INTEGER, losses INTEGER)"}, {"answer": "SELECT AVG(wins) FROM table_name_51 WHERE against < 1786 AND losses < 4 AND byes < 2", "question": "What is the average Wins, when Against is less than 1786, when Losses is less than 4, and when Byes is less than 2?", "context": "CREATE TABLE table_name_51 (wins INTEGER, byes VARCHAR, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT country FROM table_name_2 WHERE class___type = \"three masted full rigged ship\"", "question": "What is Country, when Class / Type is \"Three masted full rigged ship\"?", "context": "CREATE TABLE table_name_2 (country VARCHAR, class___type VARCHAR)"}, {"answer": "SELECT builder FROM table_name_35 WHERE country = \"united kingdom\" AND location = \"chatham, kent\"", "question": "What is Builder, when Country is \"United Kingdom\", and when Location is \"Chatham, Kent\"?", "context": "CREATE TABLE table_name_35 (builder VARCHAR, country VARCHAR, location VARCHAR)"}, {"answer": "SELECT builder FROM table_name_67 WHERE ship = \"arizona\"", "question": "What is Builder, when Ship is \"Arizona\"?", "context": "CREATE TABLE table_name_67 (builder VARCHAR, ship VARCHAR)"}, {"answer": "SELECT location FROM table_name_33 WHERE class___type = \"sloop\"", "question": "What is Location, when Class / Type is \"Sloop\"?", "context": "CREATE TABLE table_name_33 (location VARCHAR, class___type VARCHAR)"}, {"answer": "SELECT country FROM table_name_38 WHERE builder = \"sheerness dockyard\"", "question": "What is Country, when Builder is \"Sheerness Dockyard\"?", "context": "CREATE TABLE table_name_38 (country VARCHAR, builder VARCHAR)"}, {"answer": "SELECT builder FROM table_name_80 WHERE location = \"govan , scotland\"", "question": "What is Builder, when Location is \"Govan , Scotland\"?", "context": "CREATE TABLE table_name_80 (builder VARCHAR, location VARCHAR)"}, {"answer": "SELECT britain__2013_ FROM table_name_1 WHERE us__2013_ = \"ruby\"", "question": "What was Britain's (2013) birthstone when the U.S (2013) birthstone was ruby?", "context": "CREATE TABLE table_name_1 (britain__2013_ VARCHAR, us__2013_ VARCHAR)"}, {"answer": "SELECT us__1912_ FROM table_name_34 WHERE us__2013_ = \"amethyst\"", "question": "What was the U.S birthstone in 1912 when in 2013 the birthstone was amethyst?", "context": "CREATE TABLE table_name_34 (us__1912_ VARCHAR, us__2013_ VARCHAR)"}, {"answer": "SELECT 15 AS th__20th_century FROM table_name_34 WHERE us__2013_ = \"amethyst\"", "question": "What was the U.S birthstone in the 15th-20th century when in 2013 it was amethyst?", "context": "CREATE TABLE table_name_34 (us__2013_ VARCHAR)"}, {"answer": "SELECT month FROM table_name_76 WHERE us__2013_ = \"ruby\"", "question": "Which month in 2013 did the U.S. use the ruby birthstone?", "context": "CREATE TABLE table_name_76 (month VARCHAR, us__2013_ VARCHAR)"}, {"answer": "SELECT hindu FROM table_name_77 WHERE us__1912_ = \"sapphire\"", "question": "In 1912 when the U.S used sapphire, what was the Hindu birthstone?", "context": "CREATE TABLE table_name_77 (hindu VARCHAR, us__1912_ VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_67 WHERE delegate = \"rachel muyot soriano\"", "question": "What's the hometown of rachel muyot soriano?", "context": "CREATE TABLE table_name_67 (hometown VARCHAR, delegate VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_80 WHERE pageant = \"miss internet www\" AND result = \"second runner-up\"", "question": "What's the latest year the miss internet www pageant had a result of second runner-up?", "context": "CREATE TABLE table_name_80 (year INTEGER, pageant VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE tie_no = \"19\"", "question": "On what Date is Tie no 19?", "context": "CREATE TABLE table_name_36 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_38 WHERE home_team = \"walsall\"", "question": "What is the Ti no of the Walsall Home game?", "context": "CREATE TABLE table_name_38 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE tie_no = \"21\"", "question": "What is the Date of Tie no 21?", "context": "CREATE TABLE table_name_13 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT race_title FROM table_name_26 WHERE year = 1948", "question": "Which race happened in 1948?", "context": "CREATE TABLE table_name_26 (race_title VARCHAR, year VARCHAR)"}, {"answer": "SELECT championship FROM table_name_77 WHERE year < 1952 AND race_title = \"grand prix watkins glen\" AND drivers = \"miles collier\"", "question": "Was the Grand Prix Watkins GLen that Miles Collier raced in before 1952 a championship?", "context": "CREATE TABLE table_name_77 (championship VARCHAR, drivers VARCHAR, year VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT drivers FROM table_name_21 WHERE year = 1949", "question": "Who drove in races in 1949?", "context": "CREATE TABLE table_name_21 (drivers VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_99 WHERE silver > 7 AND gold > 73", "question": "What is the lowest Total, when Silver is greater than 7, and when Gold is greater than 73?", "context": "CREATE TABLE table_name_99 (total INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT total FROM table_name_81 WHERE silver < 65 AND bronze > \"4\" AND rank = \"4\"", "question": "What is Total, when Silver is less than 65, when Bronze is greater than 4, and when Rank is \"4\"?", "context": "CREATE TABLE table_name_81 (total VARCHAR, rank VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_47 WHERE gold < 0", "question": "What is the average Silver, when Gold is less than 0?", "context": "CREATE TABLE table_name_47 (silver INTEGER, gold INTEGER)"}, {"answer": "SELECT height FROM table_name_95 WHERE name = \"manuela zanchi\"", "question": "What is Height, when Name is \"Manuela Zanchi\"?", "context": "CREATE TABLE table_name_95 (height VARCHAR, name VARCHAR)"}, {"answer": "SELECT pos FROM table_name_53 WHERE height = \"m (ft 6in)\" AND name = \"martina miceli\"", "question": "What is Pos., when Height is \"m (ft 6in)\", and when Name is \"Martina Miceli\"?", "context": "CREATE TABLE table_name_53 (pos VARCHAR, height VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(killed) FROM table_name_34 WHERE perpetrator = \"basobas, florentino\"", "question": "How many kills did basobas, florentino have?", "context": "CREATE TABLE table_name_34 (killed INTEGER, perpetrator VARCHAR)"}, {"answer": "SELECT AVG(killed) FROM table_name_54 WHERE perpetrator = \"wirjo, 42\"", "question": "What is the average number of people killed with a Perpetrator of wirjo, 42?", "context": "CREATE TABLE table_name_54 (killed INTEGER, perpetrator VARCHAR)"}, {"answer": "SELECT injured FROM table_name_68 WHERE location = \"borneo\"", "question": "How many are injured in Borneo?", "context": "CREATE TABLE table_name_68 (injured VARCHAR, location VARCHAR)"}, {"answer": "SELECT points FROM table_name_32 WHERE goals = \"79\" AND games = \"38\"", "question": "How many points were scored by the player with 79 goals and who played 38 games?", "context": "CREATE TABLE table_name_32 (points VARCHAR, goals VARCHAR, games VARCHAR)"}, {"answer": "SELECT games FROM table_name_61 WHERE assists = \"127\"", "question": "How many games were played by the player with 127 assists?", "context": "CREATE TABLE table_name_61 (games VARCHAR, assists VARCHAR)"}, {"answer": "SELECT games FROM table_name_52 WHERE pen_min = \"22\"", "question": "How many games were played by the player who had 22 penalty minutes?", "context": "CREATE TABLE table_name_52 (games VARCHAR, pen_min VARCHAR)"}, {"answer": "SELECT assists FROM table_name_45 WHERE pen_min = \"54\"", "question": "How many assists did the player with 54 penalty minutes have?", "context": "CREATE TABLE table_name_45 (assists VARCHAR, pen_min VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_95 WHERE name = \"john davis\"", "question": "What is John Davis's home town?", "context": "CREATE TABLE table_name_95 (hometown VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE event = \"1500m freestyle\"", "question": "What is the date of the 1500m freestyle event?", "context": "CREATE TABLE table_name_91 (date VARCHAR, event VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_66 WHERE time = \"1:51.51\"", "question": "What is the nationality of the event with a 1:51.51 time?", "context": "CREATE TABLE table_name_66 (nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_54 WHERE event = \"100m freestyle\"", "question": "What is the time of the 100m freestyle event?", "context": "CREATE TABLE table_name_54 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE time = \"1:54.00\"", "question": "What is the date of the event with a 1:54.00 time?", "context": "CREATE TABLE table_name_25 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT event FROM table_name_59 WHERE date = \"18 december 2009\"", "question": "What event is on 18 December 2009?", "context": "CREATE TABLE table_name_59 (event VARCHAR, date VARCHAR)"}, {"answer": "SELECT album FROM table_name_44 WHERE composer_s_ = \"jimmie lee sloas\"", "question": "Jimmie Lee Sloas was the composer for what album?", "context": "CREATE TABLE table_name_44 (album VARCHAR, composer_s_ VARCHAR)"}, {"answer": "SELECT composer_s_ FROM table_name_93 WHERE chr_chart_peak = 2", "question": "Which composer had a CHR chart peak at #2?", "context": "CREATE TABLE table_name_93 (composer_s_ VARCHAR, chr_chart_peak VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE venue = \"westport\"", "question": "What was the date for Westport?", "context": "CREATE TABLE table_name_33 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_61 WHERE week = \"1\"", "question": "What is the home team in week 1?", "context": "CREATE TABLE table_name_61 (home_team VARCHAR, week VARCHAR)"}, {"answer": "SELECT week FROM table_name_92 WHERE away_team = \"auckland\"", "question": "In what week was the away team Auckland?", "context": "CREATE TABLE table_name_92 (week VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_58 WHERE week = \"1\"", "question": "What is the venue for week 1?", "context": "CREATE TABLE table_name_58 (venue VARCHAR, week VARCHAR)"}, {"answer": "SELECT title FROM table_name_79 WHERE year = \"1991\"", "question": "What is the title in 1991?", "context": "CREATE TABLE table_name_79 (title VARCHAR, year VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_42 WHERE series = \"atcc round 4\"", "question": "In what City/State did the ATCC Round 4 series take place?", "context": "CREATE TABLE table_name_42 (city___state VARCHAR, series VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_62 WHERE series = \"atcc round 4\"", "question": "In what City/State did the ATCC Round 4 series take place?", "context": "CREATE TABLE table_name_62 (city___state VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_name_16 WHERE winner = \"paul morris\"", "question": "Which series was won by Paul Morris?", "context": "CREATE TABLE table_name_16 (series VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE series = \"winfield triple challenge\"", "question": "On which date did the Winfield Triple Challenge series take place?", "context": "CREATE TABLE table_name_61 (date VARCHAR, series VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_64 WHERE team = \"peter jackson racing\" AND series = \"atcc round 4\"", "question": "What was the circuit for Team Peter Jackson Racing in the ATCC Round 4 series?", "context": "CREATE TABLE table_name_64 (circuit VARCHAR, team VARCHAR, series VARCHAR)"}, {"answer": "SELECT player FROM table_name_11 WHERE team_from = \"south shore kings\"", "question": "Which Player has a Team from of south shore kings?", "context": "CREATE TABLE table_name_11 (player VARCHAR, team_from VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_97 WHERE league_from = \"western hockey league\" AND pick__number < 23 AND team_from = \"prince george cougars\"", "question": "Which NHL team has a League from of western hockey league and a Pick # smaller than 23 and a Team from of prince george cougars?", "context": "CREATE TABLE table_name_97 (nhl_team VARCHAR, team_from VARCHAR, league_from VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT position FROM table_name_61 WHERE pick__number < 26 AND player = \"jack campbell\"", "question": "Which Position has a Pick # smaller than 26 and a Player of jack campbell?", "context": "CREATE TABLE table_name_61 (position VARCHAR, pick__number VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_5 WHERE player = \"willie klein\" AND to_par > 13", "question": "How much money did Willie Klein take home from the game in which he had a to par score larger than 13?", "context": "CREATE TABLE table_name_5 (money___ INTEGER, player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_21 WHERE date = \"september 11, 1988\"", "question": "What was the attendance on September 11, 1988?", "context": "CREATE TABLE table_name_21 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_41 WHERE week = 1", "question": "What was the attendance on week 1?", "context": "CREATE TABLE table_name_41 (attendance VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_2 WHERE points = 34 AND draws > 13", "question": "What was the lowest win when there were 34 points and more than 13 draws?", "context": "CREATE TABLE table_name_2 (wins INTEGER, points VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_87 WHERE goals_scored > 64 AND position < 2", "question": "What was the highest win when there were more than 64 goals scored and a position smaller than 2?", "context": "CREATE TABLE table_name_87 (wins INTEGER, goals_scored VARCHAR, position VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_66 WHERE replaced_by = \"sandy clark\"", "question": "Who is the Outgoing Manager replaced by Sandy Clark?", "context": "CREATE TABLE table_name_66 (outgoing_manager VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_80 WHERE outgoing_manager = \"tommy mclean\"", "question": "What is the Date of vacancy for Tommy McLean?", "context": "CREATE TABLE table_name_80 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT COUNT(goals_scored) FROM table_name_74 WHERE points > 45", "question": "What is the total number of Goals scored that has more than 45 Points?", "context": "CREATE TABLE table_name_74 (goals_scored VARCHAR, points INTEGER)"}, {"answer": "SELECT COUNT(goals_conceded) FROM table_name_47 WHERE draws < 5 AND loses > 4 AND wins > 9", "question": "What was the total number of Goals conceded when there were more than 4 losses, less than 5 draws, and more than 9 wins?", "context": "CREATE TABLE table_name_47 (goals_conceded VARCHAR, wins VARCHAR, draws VARCHAR, loses VARCHAR)"}, {"answer": "SELECT SUM(goals_scored) FROM table_name_79 WHERE games_played < 20", "question": "What is the sum of Goals scored when there was less than 20 Games played?", "context": "CREATE TABLE table_name_79 (goals_scored INTEGER, games_played INTEGER)"}, {"answer": "SELECT country FROM table_name_32 WHERE to_par = \"\u20132\" AND player = \"jim thorpe\"", "question": "Which Country has a To par of \u20132, and a Player of jim thorpe?", "context": "CREATE TABLE table_name_32 (country VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_95 WHERE country = \"united states\" AND to_par = \"\u20135\"", "question": "Name the  Place which has To par of \u20135, in united states?", "context": "CREATE TABLE table_name_95 (place VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_4 WHERE player = \"payne stewart\"", "question": "Name the To par of payne stewart?", "context": "CREATE TABLE table_name_4 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_39 WHERE country = \"united states\" AND to_par = \"\u20133\"", "question": "WHo has a Country of united states and a To par of \u20133?", "context": "CREATE TABLE table_name_39 (player VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT power_plant FROM table_name_97 WHERE year_of_commission = 2008", "question": "What power plant was commissioned in 2008?", "context": "CREATE TABLE table_name_97 (power_plant VARCHAR, year_of_commission VARCHAR)"}, {"answer": "SELECT nominated_work FROM table_name_29 WHERE category = \"popularity award (actor in a motion picture)\"", "question": "What is the Nominated work of popularity award (actor in a motion picture)?", "context": "CREATE TABLE table_name_29 (nominated_work VARCHAR, category VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_83 WHERE opponent = \"san diego chargers\"", "question": "What is the game site of the game with the san diego chargers as the opponent?", "context": "CREATE TABLE table_name_83 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT 1 AS st_round FROM table_name_44 WHERE team_1 = \"toulouse fc (d1)\"", "question": "What is the first round when team 1 was toulouse fc (d1)?", "context": "CREATE TABLE table_name_44 (team_1 VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE player = \"shahar pe'er\"", "question": "What is Shahar Pe'er's record?", "context": "CREATE TABLE table_name_57 (record VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_37 WHERE place = \"t3\" AND player = \"fred couples\"", "question": "Which country placed t3 and had the player Fred Couples?", "context": "CREATE TABLE table_name_37 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_74 WHERE score = 68 - 66 = 134 AND player = \"fred couples\"", "question": "What is the to par for Fred Couples when the score is 68-66=134?", "context": "CREATE TABLE table_name_74 (to_par VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_60 WHERE score = 66 - 68 = 134", "question": "Which country scored 66-68=134?", "context": "CREATE TABLE table_name_60 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_61 WHERE player = \"fred couples\"", "question": "What did Fred Couples place?", "context": "CREATE TABLE table_name_61 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_50 WHERE score = 68 - 66 = 134", "question": "What player scored 68-66=134?", "context": "CREATE TABLE table_name_50 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_12 WHERE to_par = \"+5\" AND score = 70 - 70 - 71 - 74 = 285", "question": "What Player has a To par of +5 with a Score of 70-70-71-74=285?", "context": "CREATE TABLE table_name_12 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_88 WHERE score = 73 - 67 - 74 - 71 = 285", "question": "What is the Place of the Player with a Score of 73-67-74-71=285?", "context": "CREATE TABLE table_name_88 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_92 WHERE place = \"t9\" AND score = 73 - 67 - 74 - 71 = 285", "question": "What T9 Place Player had a Score of 73-67-74-71=285?", "context": "CREATE TABLE table_name_92 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_53 WHERE place = \"t8\"", "question": "Who is the player with a t8 place?", "context": "CREATE TABLE table_name_53 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_53 WHERE place = \"t8\" AND score = 68 - 71 - 69 - 72 = 280", "question": "What is the average amount of money of players in t8 place with a 68-71-69-72=280 score?", "context": "CREATE TABLE table_name_53 (money___ INTEGER, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_59 WHERE player = \"vijay singh\"", "question": "What is the country of player vijay singh?", "context": "CREATE TABLE table_name_59 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT result_f_a FROM table_name_96 WHERE h___a = \"h\" AND round = \"quarter-final first leg\"", "question": "What is the Result F-A that was the quarter-final first leg round with a H/A of h?", "context": "CREATE TABLE table_name_96 (result_f_a VARCHAR, h___a VARCHAR, round VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_13 WHERE score = \"3 - 2\" AND decision = \"raycroft\" AND record = \"25-29-1\"", "question": "What was the opponent when the score was 3 - 2,  and the decision was Raycroft, with a record of 25-29-1?", "context": "CREATE TABLE table_name_13 (opponent VARCHAR, record VARCHAR, score VARCHAR, decision VARCHAR)"}, {"answer": "SELECT position FROM table_name_90 WHERE league_from = \"western hockey league\" AND team_from = \"everett silvertips\"", "question": "Which Position has a League from of western hockey league, and a Team from of everett silvertips?", "context": "CREATE TABLE table_name_90 (position VARCHAR, league_from VARCHAR, team_from VARCHAR)"}, {"answer": "SELECT player FROM table_name_13 WHERE position = \"rw\" AND league_from = \"western hockey league\"", "question": "Which Player has a Position of rw, and a League from of western hockey league?", "context": "CREATE TABLE table_name_13 (player VARCHAR, position VARCHAR, league_from VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_44 WHERE nationality = \"canada\" AND team_from = \"sudbury wolves\"", "question": "Which Pick # has a Nationality of canada, and a Team from of sudbury wolves?", "context": "CREATE TABLE table_name_44 (pick__number INTEGER, nationality VARCHAR, team_from VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_61 WHERE league_from = \"ontario hockey league\" AND nationality = \"united states\" AND team_from = \"brampton battalion\"", "question": "Which Pick # has a League from of ontario hockey league, a Nationality of united states, and a Team from of brampton battalion?", "context": "CREATE TABLE table_name_61 (pick__number VARCHAR, team_from VARCHAR, league_from VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT league_from FROM table_name_95 WHERE position = \"lw\" AND pick__number > 34 AND player = \"bradley ross\"", "question": "Which League from has a Position of lw, a Pick # larger than 34, and a Player of bradley ross?", "context": "CREATE TABLE table_name_95 (league_from VARCHAR, player VARCHAR, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT position FROM table_name_99 WHERE team_from = \"ottawa 67's\" AND pick__number < 47", "question": "Which Position has a Team from of ottawa 67's, and a Pick # smaller than 47?", "context": "CREATE TABLE table_name_99 (position VARCHAR, team_from VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_10 WHERE party = \"republican\" AND district = \"pennsylvania 9\"", "question": "Who is the republican Incumbent for Pennsylvania 9?", "context": "CREATE TABLE table_name_10 (incumbent VARCHAR, party VARCHAR, district VARCHAR)"}, {"answer": "SELECT results FROM table_name_71 WHERE incumbent = \"bill shuster\"", "question": "What are the results for Bill Shuster?", "context": "CREATE TABLE table_name_71 (results VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT MAX(first_elected) FROM table_name_56 WHERE district = \"pennsylvania 10\"", "question": "What is the greatest first elected for Pennsylvania 10?", "context": "CREATE TABLE table_name_56 (first_elected INTEGER, district VARCHAR)"}, {"answer": "SELECT country FROM table_name_59 WHERE finish = \"t8\"", "question": "What country had a Finish of t8?", "context": "CREATE TABLE table_name_59 (country VARCHAR, finish VARCHAR)"}, {"answer": "SELECT player FROM table_name_78 WHERE to_par = \"+2\"", "question": "What Player had a To Par of +2?", "context": "CREATE TABLE table_name_78 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_32 WHERE finish = \"t8\"", "question": "What is the To Par of the player with a t8 Finish?", "context": "CREATE TABLE table_name_32 (to_par VARCHAR, finish VARCHAR)"}, {"answer": "SELECT height_ft__m_ FROM table_name_44 WHERE floors = 22 AND year = 1985", "question": "How tall is the building built in 1985 with 22 floors?", "context": "CREATE TABLE table_name_44 (height_ft__m_ VARCHAR, floors VARCHAR, year VARCHAR)"}, {"answer": "SELECT height_ft__m_ FROM table_name_5 WHERE rank = \"13\"", "question": "How tall is the building ranked #13?", "context": "CREATE TABLE table_name_5 (height_ft__m_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT miss_universe_philippines FROM table_name_82 WHERE first_runner_up = \"danielle casta\u00f1o\" AND binibining_pilipinas_world = \"janina san miguel\"", "question": "Who won Miss Universe Philippines when the first runner-up was Danielle Casta\u00f1o and Janina San Miguel won Binibining Pilipinas-World?", "context": "CREATE TABLE table_name_82 (miss_universe_philippines VARCHAR, first_runner_up VARCHAR, binibining_pilipinas_world VARCHAR)"}, {"answer": "SELECT miss_universe_philippines FROM table_name_86 WHERE second_runner_up = \"regina hahn\"", "question": "Who won Miss Universe Philippines when Regina Hahn was second runner-up?", "context": "CREATE TABLE table_name_86 (miss_universe_philippines VARCHAR, second_runner_up VARCHAR)"}, {"answer": "SELECT second_runner_up FROM table_name_46 WHERE miss_universe_philippines = \"bianca manalo\"", "question": "When Bianca Manalo won Miss Universe Philippines who was the second runner-up?", "context": "CREATE TABLE table_name_46 (second_runner_up VARCHAR, miss_universe_philippines VARCHAR)"}, {"answer": "SELECT order FROM table_name_18 WHERE title = \"deacon of ss. cosma e damiano\"", "question": "What order has the title Deacon of SS. Cosma E Damiano?", "context": "CREATE TABLE table_name_18 (order VARCHAR, title VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_25 WHERE 2008 = \"a\" AND 2011 = \"a\" AND tournament = \"paris masters\"", "question": "What is 2009, when 2008 is \"A\", when 2011 is \"A\", and when Tournament is \"Paris Masters\"?", "context": "CREATE TABLE table_name_25 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_91 WHERE 2009 = \"a\" AND tournament = \"madrid masters\"", "question": "What is 2008, when 2009 is \"A\", and when Tournament is \"Madrid Masters\"?", "context": "CREATE TABLE table_name_91 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_16 WHERE 2012 = \"a\" AND 2011 = \"a\" AND 2008 = \"a\"", "question": "What is Tournament, when 2012 is \"A\", when 2011 is \"A\", and when 2008 is \"A\"?", "context": "CREATE TABLE table_name_16 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_62 WHERE 2011 = \"q2\"", "question": "What is 2009, when 2011 is \"Q2\"?", "context": "CREATE TABLE table_name_62 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_39 WHERE tournament = \"year-end ranking\"", "question": "What is 2011, when Tournament is \"Year-End Ranking\"?", "context": "CREATE TABLE table_name_39 (tournament VARCHAR)"}, {"answer": "SELECT total FROM table_name_40 WHERE player = \"mark o'meara\"", "question": "What was Mark O'Meara's total?", "context": "CREATE TABLE table_name_40 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_87 WHERE player = \"tom watson\"", "question": "What year did Tom Watson win?", "context": "CREATE TABLE table_name_87 (year_s__won VARCHAR, player VARCHAR)"}, {"answer": "SELECT 1 AS st_member FROM table_name_53 WHERE elected = \"1511/12\"", "question": "Who was the 1st member elected in 1511/12?", "context": "CREATE TABLE table_name_53 (elected VARCHAR)"}, {"answer": "SELECT 1 AS st_member FROM table_name_51 WHERE dissolved = \"23 february 1510\"", "question": "Who was the 1st member of the parliament that was dissolved 23 february 1510?", "context": "CREATE TABLE table_name_51 (dissolved VARCHAR)"}, {"answer": "SELECT 1 AS st_member FROM table_name_44 WHERE elected = \"1541/42\"", "question": "Who was the 1st member that was elected in 1541/42?", "context": "CREATE TABLE table_name_44 (elected VARCHAR)"}, {"answer": "SELECT 2 AS nd_member FROM table_name_19 WHERE assembled = \"3 november 1529\"", "question": "Who was the 2nd member of the parliament that was assembled on 3 november 1529?", "context": "CREATE TABLE table_name_19 (assembled VARCHAR)"}, {"answer": "SELECT 2 AS nd_member FROM table_name_37 WHERE assembled = \"3 november 1529\"", "question": "Who was the 2nd member of the parliament that was assembled on 3 november 1529?", "context": "CREATE TABLE table_name_37 (assembled VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE competition = \"emerging nations tournament\" AND result = \"scotland 34-9 russia\"", "question": "What date was the competition of the Emerging Nations Tournament and a result of Scotland 34-9 Russia?", "context": "CREATE TABLE table_name_51 (date VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT number_s_ FROM table_name_43 WHERE quantity = \"1\" AND year_s__of_manufacture = \"1841\"", "question": "What number was manufactured 1 in 1841?", "context": "CREATE TABLE table_name_43 (number_s_ VARCHAR, quantity VARCHAR, year_s__of_manufacture VARCHAR)"}, {"answer": "SELECT quantity FROM table_name_55 WHERE class = \"b v\"", "question": "What is the quantity of class B V?", "context": "CREATE TABLE table_name_55 (quantity VARCHAR, class VARCHAR)"}, {"answer": "SELECT number_s_ FROM table_name_50 WHERE quantity = \"24\"", "question": "What number corresponds to the quantity of 24?", "context": "CREATE TABLE table_name_50 (number_s_ VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT date_of_birth FROM table_name_45 WHERE name = \"tim wollthan\"", "question": "What is Tim Wollthan's Date of Birth?", "context": "CREATE TABLE table_name_45 (date_of_birth VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_5 WHERE club = \"spandau 04\" AND height = \"m (ft 4in)\" AND pos = \"d\"", "question": "What D Player with a Height of m (ft 4in) is in the Spandau 04 Club?", "context": "CREATE TABLE table_name_5 (name VARCHAR, pos VARCHAR, club VARCHAR, height VARCHAR)"}, {"answer": "SELECT club FROM table_name_18 WHERE date_of_birth = \"1979-01-29\"", "question": "What is the Club of the Player with a Date of Birth of 1979-01-29?", "context": "CREATE TABLE table_name_18 (club VARCHAR, date_of_birth VARCHAR)"}, {"answer": "SELECT weight FROM table_name_61 WHERE club = \"spandau 04\" AND height = \"m (ft 5in)\"", "question": "What is the Weight of the Spandau 04 Player with a Height of m (ft 5in)?", "context": "CREATE TABLE table_name_61 (weight VARCHAR, club VARCHAR, height VARCHAR)"}, {"answer": "SELECT pos FROM table_name_1 WHERE club = \"spandau 04\" AND name = \"jens pohlmann\"", "question": "What is Spandau 04 Player Jens Pohlmann's Pos.?", "context": "CREATE TABLE table_name_1 (pos VARCHAR, club VARCHAR, name VARCHAR)"}, {"answer": "SELECT player FROM table_name_62 WHERE country = \"ireland\"", "question": "Which play is from Ireland?", "context": "CREATE TABLE table_name_62 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_18 WHERE player = \"howard clark\"", "question": "Which country is Howard Clark from?", "context": "CREATE TABLE table_name_18 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_78 WHERE total > 40 AND gold < 25 AND bronze > 15", "question": "What is the most silver medals won among nations that won more than 40 medals total, less than 25 of them being gold, and more than 15 of them being bronze?", "context": "CREATE TABLE table_name_78 (silver INTEGER, bronze VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT finish FROM table_name_55 WHERE total < 292 AND year_s__won = \"1978\"", "question": "Of the 1978 winners, who had finish totals smaller than 292?", "context": "CREATE TABLE table_name_55 (finish VARCHAR, total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT finish FROM table_name_19 WHERE total = 292 AND player = \"david graham\"", "question": "What were the finishes by David Graham with totals lower than 292?", "context": "CREATE TABLE table_name_19 (finish VARCHAR, total VARCHAR, player VARCHAR)"}, {"answer": "SELECT finish FROM table_name_79 WHERE country = \"australia\"", "question": "What is Australia\u00b4s finish?", "context": "CREATE TABLE table_name_79 (finish VARCHAR, country VARCHAR)"}, {"answer": "SELECT church_name FROM table_name_29 WHERE location_of_the_church = \"flor\u00f8\"", "question": "What is the name of the church that is located in flor\u00f8?", "context": "CREATE TABLE table_name_29 (church_name VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT church_name FROM table_name_8 WHERE location_of_the_church = \"eikefjord\"", "question": "What is the name of the church that is located in eikefjord?", "context": "CREATE TABLE table_name_8 (church_name VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT parish__prestegjeld_ FROM table_name_80 WHERE church_name = \"stavang kyrkje\"", "question": "In which Parish (Prestegjeld) is the church called Stavang Kyrkje?", "context": "CREATE TABLE table_name_80 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT sub_parish__sokn_ FROM table_name_30 WHERE year_built = \"1957\" AND location_of_the_church = \"stavang\"", "question": "What is the Sub-Parish (Sokn) that was built in 1957 in the location of Stavang?", "context": "CREATE TABLE table_name_30 (sub_parish__sokn_ VARCHAR, year_built VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT year_built FROM table_name_29 WHERE location_of_the_church = \"flor\u00f8\"", "question": "In what year was the church located in flor\u00f8 built?", "context": "CREATE TABLE table_name_29 (year_built VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT parish__prestegjeld_ FROM table_name_2 WHERE year_built = \"1907\"", "question": "Which Parish (Prestegjeld) was built in 1907?", "context": "CREATE TABLE table_name_2 (parish__prestegjeld_ VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_65 WHERE sideline_reporters = \"sara orlesky and farhan lalji\"", "question": "What's the average year that sara orlesky and farhan lalji are the sideline reporters?", "context": "CREATE TABLE table_name_65 (year INTEGER, sideline_reporters VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_83 WHERE date = \"september 29\"", "question": "What was the attendance on september 29?", "context": "CREATE TABLE table_name_83 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_71 WHERE date = \"september 8\"", "question": "What was the attendance on september 8?", "context": "CREATE TABLE table_name_71 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_84 WHERE result = \"l 10\u201330\" AND attendance > 57 OFFSET 312", "question": "Which Week has a Result of l 10\u201330, and an Attendance larger than 57,312?", "context": "CREATE TABLE table_name_84 (week INTEGER, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_33 WHERE tie_no = \"3\"", "question": "What is Date, when Tie no is \"3\"?", "context": "CREATE TABLE table_name_33 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE away_team = \"brentford\"", "question": "What is Date, when Away Team is \"Brentford\"?", "context": "CREATE TABLE table_name_62 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE home_team = \"everton\"", "question": "What is Date, when Home Team is \"Everton\"?", "context": "CREATE TABLE table_name_6 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_83 WHERE home_team = \"west ham united\"", "question": "What is Away Team, when Home Team is \"West Ham United\"?", "context": "CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_22 WHERE balls = 148", "question": "What is Venue, when Balls is \"148\"?", "context": "CREATE TABLE table_name_22 (venue VARCHAR, balls VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE score = \"101\"", "question": "What is Name, when Score is \"101\"?", "context": "CREATE TABLE table_name_63 (name VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE venue = \"taunton\" AND name = \"sc ganguly\"", "question": "What is Date, when Venue is \"Taunton\", and when Name is \"SC Ganguly\"?", "context": "CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR, name VARCHAR)"}, {"answer": "SELECT balls FROM table_name_3 WHERE venue = \"bristol\" AND score = \"104*\"", "question": "What is Balls, when Venue is \"Bristol\", and when Score is \"104*\"?", "context": "CREATE TABLE table_name_3 (balls VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_10 WHERE bronze < 0", "question": "What is the number of silver when bronze is less than 0?", "context": "CREATE TABLE table_name_10 (silver VARCHAR, bronze INTEGER)"}, {"answer": "SELECT MAX(gold) FROM table_name_68 WHERE silver < 1 AND rank = 12 AND total < 3", "question": "What is the gold when silver is less than 1, rank is 12, and total is less than 3?", "context": "CREATE TABLE table_name_68 (gold INTEGER, total VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_62 WHERE rank < 3 AND silver < 1", "question": "What shows for gold when the rank is less than 3, and silver less than 1?", "context": "CREATE TABLE table_name_62 (gold INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_1 WHERE gold = 1 AND rank > 4 AND bronze = 0", "question": "What is the total when gold is 1, and rank is more than 4, and bronze is 0?", "context": "CREATE TABLE table_name_1 (total VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_8 WHERE silver = 1 AND rank < 4 AND gold > 1", "question": "What shows for bronze when silver is 1, rank is smaller than 4, and gold is larger than 1?", "context": "CREATE TABLE table_name_8 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_52 WHERE silver = 1 AND rank > 3 AND total < 2 AND bronze < 0", "question": "What is the gold when silver is 1, rank is larger than 3, total is smaller than 2, bronze is smaller than 0?", "context": "CREATE TABLE table_name_52 (gold INTEGER, bronze VARCHAR, total VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT player FROM table_name_63 WHERE country = \"france\"", "question": "What player is from France?", "context": "CREATE TABLE table_name_63 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_93 WHERE player = \"s.k. ho\"", "question": "What place is S.K. Ho in?", "context": "CREATE TABLE table_name_93 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_90 WHERE score = 74 - 70 = 144 AND country = \"scotland\"", "question": "What player is from Scotland and has a score of 74-70=144?", "context": "CREATE TABLE table_name_90 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_79 WHERE country = \"south africa\"", "question": "Which player is from South Africa?", "context": "CREATE TABLE table_name_79 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_97 WHERE score = 72 - 72 = 144", "question": "What country is the player with a score of 72-72=144 from?", "context": "CREATE TABLE table_name_97 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT geelong_dfl FROM table_name_87 WHERE wins > 4 AND losses = 8", "question": "Which Geelong DFL has 8 losses and more than 4 wins?", "context": "CREATE TABLE table_name_87 (geelong_dfl VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(number_of_examinees) FROM table_name_47 WHERE year > 2005 AND pass_percentage = \"78.35%\" AND number_of_passed_students < 297", "question": "What number of examines after 2005 has a pass percentage of 78.35% with less than 297 students?", "context": "CREATE TABLE table_name_47 (number_of_examinees VARCHAR, number_of_passed_students VARCHAR, year VARCHAR, pass_percentage VARCHAR)"}, {"answer": "SELECT venue FROM table_name_93 WHERE founded > 1967 AND league = \"north american soccer league\"", "question": "Which venue was founded after 1967 and had the league North American Soccer League?", "context": "CREATE TABLE table_name_93 (venue VARCHAR, founded VARCHAR, league VARCHAR)"}, {"answer": "SELECT venue FROM table_name_31 WHERE founded < 2000 AND sport = \"basketball\"", "question": "Which venue was fouded before 2000 for basketball?", "context": "CREATE TABLE table_name_31 (venue VARCHAR, founded VARCHAR, sport VARCHAR)"}, {"answer": "SELECT club FROM table_name_43 WHERE sport = \"football\" AND venue = \"mitchel athletic field\"", "question": "Which club had football at Mitchel Athletic Field?", "context": "CREATE TABLE table_name_43 (club VARCHAR, sport VARCHAR, venue VARCHAR)"}, {"answer": "SELECT club FROM table_name_25 WHERE founded = 1962", "question": "Which club was founded in 1962?", "context": "CREATE TABLE table_name_25 (club VARCHAR, founded VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_52 WHERE country = \"united states\" AND year_s__won = \"1986\"", "question": "What is the total sum of the player from the United States who won in 1986?", "context": "CREATE TABLE table_name_52 (total INTEGER, country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_36 WHERE total < 300 AND to_par = 9", "question": "What year did the player with a total less than 300 and a to par of 9 have a win?", "context": "CREATE TABLE table_name_36 (year_s__won VARCHAR, total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_9 WHERE player = \"john mahaffey\" AND total < 298", "question": "What is total number of the to par of player john mahaffey, who has a total less than 298?", "context": "CREATE TABLE table_name_9 (to_par VARCHAR, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_90 WHERE year_s__won = \"1979\"", "question": "What is the sum of the total of the player who won in 1979?", "context": "CREATE TABLE table_name_90 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT country FROM table_name_70 WHERE total > 300", "question": "What is the country of the player who has a total larger than 300?", "context": "CREATE TABLE table_name_70 (country VARCHAR, total INTEGER)"}, {"answer": "SELECT shropshire_senior_cup FROM table_name_44 WHERE points > 78 AND fa_cup = \"pre\"", "question": "What is the Shropshire Senior Cup when points are greater than 78 and FA Cup is pre?", "context": "CREATE TABLE table_name_44 (shropshire_senior_cup VARCHAR, points VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT season FROM table_name_17 WHERE points = 78", "question": "What season had 78 points?", "context": "CREATE TABLE table_name_17 (season VARCHAR, points VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE result = \"draw\" AND opponent = \"arema malang\"", "question": "For the match against Arema Malang that ended in a draw, what was the final score?", "context": "CREATE TABLE table_name_64 (score VARCHAR, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE date = \"april 11, 2007\"", "question": "What was the final score for the match held on April 11, 2007?", "context": "CREATE TABLE table_name_68 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_90 WHERE score = \"0-0\" AND date = \"april 11, 2007\"", "question": "What was the location for the match held on April 11, 2007, which ended with a score of 0-0?", "context": "CREATE TABLE table_name_90 (venue VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_63 WHERE score = \"0-0\" AND date = \"march 7, 2007\"", "question": "What was the location for the match held on March 7, 2007, which ended with a score of 0-0?", "context": "CREATE TABLE table_name_63 (venue VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT constituency_number FROM table_name_87 WHERE name = \"amritpur\"", "question": "Amritpur has what constituency number?", "context": "CREATE TABLE table_name_87 (constituency_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT reserved_for___sc___st__none_ FROM table_name_87 WHERE name = \"kaimganj\"", "question": "Kaimganj has what reserved for (SC / ST /None)?", "context": "CREATE TABLE table_name_87 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_30 WHERE player = \"bob tway\"", "question": "Which country is bob tway from?", "context": "CREATE TABLE table_name_30 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_59 WHERE year_s__won = \"1986\"", "question": "Which country won in 1986?", "context": "CREATE TABLE table_name_59 (country VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_63 WHERE country = \"fiji\"", "question": "What is Fiji's lowest total?", "context": "CREATE TABLE table_name_63 (total INTEGER, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_17 WHERE score = 72 - 66 - 72 = 210", "question": "What Country had a Player with a Score of 72-66-72=210?", "context": "CREATE TABLE table_name_17 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_96 WHERE to_par = \"\u20136\"", "question": "What is the Place of the Player with a To par of \u20136?", "context": "CREATE TABLE table_name_96 (place VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT place FROM table_name_86 WHERE score = 68 - 73 - 76 = 217", "question": "What is the Place of the Player with a Score of 68-73-76=217?", "context": "CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_59 WHERE player = \"justin leonard\"", "question": "What is Justin Leonard's To par?", "context": "CREATE TABLE table_name_59 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT architecture_version FROM table_name_10 WHERE model = \"1b\"", "question": "What is the architecture version of Model 1b?", "context": "CREATE TABLE table_name_10 (architecture_version VARCHAR, model VARCHAR)"}, {"answer": "SELECT name___generation FROM table_name_90 WHERE architecture_version = \"mips-iii 64-bit\" AND model = \"2b\"", "question": "What is the name of the architecture version of the MIPS-III 64-bit, and model 2b?", "context": "CREATE TABLE table_name_90 (name___generation VARCHAR, architecture_version VARCHAR, model VARCHAR)"}, {"answer": "SELECT event FROM table_name_1 WHERE time = \"2:08\"", "question": "What is the event with a 2:08 time?", "context": "CREATE TABLE table_name_1 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT wheels FROM table_name_99 WHERE builder = \"baldwin locomotive works\"", "question": "What type of wheels did the locomotive have that was built by Baldwin Locomotive Works?", "context": "CREATE TABLE table_name_99 (wheels VARCHAR, builder VARCHAR)"}, {"answer": "SELECT venue FROM table_name_89 WHERE against = 25", "question": "Which Venue has Against of 25?", "context": "CREATE TABLE table_name_89 (venue VARCHAR, against VARCHAR)"}, {"answer": "SELECT venue FROM table_name_82 WHERE against < 6", "question": "Which Venue has Against smaller than 6?", "context": "CREATE TABLE table_name_82 (venue VARCHAR, against INTEGER)"}, {"answer": "SELECT utah FROM table_name_7 WHERE colorado = \"bush\" AND new_mexico = \"bush\"", "question": "What's the value for utah when colorado and new mexico are bush?", "context": "CREATE TABLE table_name_7 (utah VARCHAR, colorado VARCHAR, new_mexico VARCHAR)"}, {"answer": "SELECT oklahoma FROM table_name_6 WHERE texas = \"kennedy\"", "question": "What's the value for oklahoma when texas is kennedy?", "context": "CREATE TABLE table_name_6 (oklahoma VARCHAR, texas VARCHAR)"}, {"answer": "SELECT utah FROM table_name_80 WHERE texas = \"humphrey\"", "question": "What's the value for utah when texas is humphrey?", "context": "CREATE TABLE table_name_80 (utah VARCHAR, texas VARCHAR)"}, {"answer": "SELECT arizona FROM table_name_83 WHERE colorado = \"nixon\" AND nevada = \"nixon\" AND texas = \"humphrey\"", "question": "What's the value for arizona when colorado and nevada are nixon, and texas is humphrey?", "context": "CREATE TABLE table_name_83 (arizona VARCHAR, texas VARCHAR, colorado VARCHAR, nevada VARCHAR)"}, {"answer": "SELECT oklahoma FROM table_name_94 WHERE nevada = \"clinton\" AND colorado = \"clinton\"", "question": "What's the value for oklahoma when nevada and colorado are clinton?", "context": "CREATE TABLE table_name_94 (oklahoma VARCHAR, nevada VARCHAR, colorado VARCHAR)"}, {"answer": "SELECT arizona FROM table_name_50 WHERE utah = \"eisenhower\"", "question": "What's the value for arizona when utah is eisenhower?", "context": "CREATE TABLE table_name_50 (arizona VARCHAR, utah VARCHAR)"}, {"answer": "SELECT ad_freq FROM table_name_84 WHERE show_name = \"american top 40\"", "question": "How often are there ads during American Top 40?", "context": "CREATE TABLE table_name_84 (ad_freq VARCHAR, show_name VARCHAR)"}, {"answer": "SELECT time FROM table_name_94 WHERE show_name = \"classic hits\"", "question": "When does Classic Hits air?", "context": "CREATE TABLE table_name_94 (time VARCHAR, show_name VARCHAR)"}, {"answer": "SELECT role FROM table_name_4 WHERE pick__number = 18", "question": "What is Pick #18's Role?", "context": "CREATE TABLE table_name_4 (role VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT foundation FROM table_name_5 WHERE name_in_english = \"tanjung puteri technical secondary school\"", "question": "What is the foundation for the institution whose name in English is tanjung puteri technical secondary school?", "context": "CREATE TABLE table_name_5 (foundation VARCHAR, name_in_english VARCHAR)"}, {"answer": "SELECT location FROM table_name_95 WHERE name_in_malay = \"kolej kemahiran belia nasional, pontian\"", "question": "What is the location of the institution whose name in Malay is kolej kemahiran belia nasional, pontian?", "context": "CREATE TABLE table_name_95 (location VARCHAR, name_in_malay VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_97 WHERE score = 68 - 69 - 68 - 72 = 277", "question": "What was the average money when the score was 68-69-68-72=277?", "context": "CREATE TABLE table_name_97 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_37 WHERE score = 69 - 68 - 67 - 69 = 273", "question": "What was the highest money when the score was 69-68-67-69=273?", "context": "CREATE TABLE table_name_37 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_89 WHERE country = \"south africa\"", "question": "What did South Africa place?", "context": "CREATE TABLE table_name_89 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_95 WHERE place = \"t2\" AND score = 68 - 69 - 68 - 72 = 277", "question": "What county placed t2 and scored 68-69-68-72=277?", "context": "CREATE TABLE table_name_95 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT milan___san_remo FROM table_name_81 WHERE li\u00e8ge_bastogne_li\u00e8ge = \"danilo di luca ( ita )\"", "question": "Name the Milan \u2013 San Remo which has a Li\u00e8ge\u2013Bastogne\u2013Li\u00e8ge of danilo di luca ( ita )?", "context": "CREATE TABLE table_name_81 (milan___san_remo VARCHAR, li\u00e8ge_bastogne_li\u00e8ge VARCHAR)"}, {"answer": "SELECT giro_di_lombardia FROM table_name_38 WHERE paris_roubaix = \"servais knaven ( ned )\"", "question": "Which Giro di Lombardia has a Paris\u2013Roubaix of servais knaven ( ned )?", "context": "CREATE TABLE table_name_38 (giro_di_lombardia VARCHAR, paris_roubaix VARCHAR)"}, {"answer": "SELECT giro_di_lombardia FROM table_name_22 WHERE tour_of_flanders = \"tom boonen ( bel )\" AND paris_roubaix = \"fabian cancellara ( sui )\"", "question": "what kind of Giro di Lombardiahas a Tour of Flanders of tom boonen ( bel ), and a Paris\u2013Roubaix of fabian cancellara ( sui )?", "context": "CREATE TABLE table_name_22 (giro_di_lombardia VARCHAR, tour_of_flanders VARCHAR, paris_roubaix VARCHAR)"}, {"answer": "SELECT cargo__tonnes_ FROM table_name_90 WHERE international__non_cis_ = \"297 421\"", "question": "What are the cargo tonnes when the international (non-CIS) is 297 421?", "context": "CREATE TABLE table_name_90 (cargo__tonnes_ VARCHAR, international__non_cis_ VARCHAR)"}, {"answer": "SELECT aircraft_landings FROM table_name_27 WHERE cargo__tonnes_ = \"18 344\"", "question": "How manu aircraft landings when the cargo tonnes are 18 344?", "context": "CREATE TABLE table_name_27 (aircraft_landings VARCHAR, cargo__tonnes_ VARCHAR)"}, {"answer": "SELECT domestic FROM table_name_61 WHERE cargo__tonnes_ = \"25 866\"", "question": "What is the domestic figure when cargo tonnes equal 25 866?", "context": "CREATE TABLE table_name_61 (domestic VARCHAR, cargo__tonnes_ VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_53 WHERE passenger_change = \"+32,9%\"", "question": "What is the year that saw a passenger change of +32,9%?", "context": "CREATE TABLE table_name_53 (year VARCHAR, passenger_change VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_32 WHERE cargo__tonnes_ = \"13 585\"", "question": "What year had cargo tonnes of 13 585?", "context": "CREATE TABLE table_name_32 (year INTEGER, cargo__tonnes_ VARCHAR)"}, {"answer": "SELECT round FROM table_name_31 WHERE event = \"ufc 86\"", "question": "What round did the event UFC 86 take place?", "context": "CREATE TABLE table_name_31 (round VARCHAR, event VARCHAR)"}, {"answer": "SELECT method FROM table_name_25 WHERE round = \"1\" AND location = \"aruba\"", "question": "What method was there in round 1 when the location was Aruba?", "context": "CREATE TABLE table_name_25 (method VARCHAR, round VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_91 WHERE event = \"ufc: fight for the troops\"", "question": "What location was the event ufc: fight for the troops?", "context": "CREATE TABLE table_name_91 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE visiting_team = \"st. louis rams\" AND result = \"26-0\"", "question": "When was the game that had the St. Louis Rams as visiting team and resulted in a score of 26-0?", "context": "CREATE TABLE table_name_49 (date VARCHAR, visiting_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE venue = \"candlestick park\"", "question": "What date(s) was the game(s) at Candlestick Park?", "context": "CREATE TABLE table_name_30 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT year FROM table_name_45 WHERE opponent_in_the_final = \"john higgins category:articles with hcards\"", "question": "What year was the opponent in the final john higgins category:articles with hcards?", "context": "CREATE TABLE table_name_45 (year VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT church_name FROM table_name_38 WHERE year_built = 1600", "question": "Which church was built in 1600?", "context": "CREATE TABLE table_name_38 (church_name VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT location_of_the_church FROM table_name_51 WHERE year_built = 1914", "question": "What is the Location of the Church that was built in the year 1914?", "context": "CREATE TABLE table_name_51 (location_of_the_church VARCHAR, year_built VARCHAR)"}, {"answer": "SELECT location_of_the_church FROM table_name_64 WHERE sub_parish__sokn_ = \"rugsund\"", "question": "Where is the Church that has a Sub-Parish (Sokn) of rugsund?", "context": "CREATE TABLE table_name_64 (location_of_the_church VARCHAR, sub_parish__sokn_ VARCHAR)"}, {"answer": "SELECT AVG(year_built) FROM table_name_67 WHERE parish___prestegjeld__ = \"bremanger parish\" AND location_of_the_church = \"bremanger\"", "question": "Which Year Built has a Parish (Prestegjeld) of bremanger parish, and a Location of the Church of bremanger?", "context": "CREATE TABLE table_name_67 (year_built INTEGER, parish___prestegjeld__ VARCHAR, location_of_the_church VARCHAR)"}, {"answer": "SELECT actor_required FROM table_name_29 WHERE actor_in_original_production = \"robert austin\"", "question": "Who is the required actor when Robert Austin was the actor in the original production?", "context": "CREATE TABLE table_name_29 (actor_required VARCHAR, actor_in_original_production VARCHAR)"}, {"answer": "SELECT actor_in_original_production FROM table_name_69 WHERE gameplan = \"troy stephens\"", "question": "Who is the actor in the original production when Troy Stephens is the GamePlan?", "context": "CREATE TABLE table_name_69 (actor_in_original_production VARCHAR, gameplan VARCHAR)"}, {"answer": "SELECT gameplan FROM table_name_71 WHERE actor_in_original_production = \"jacqueline king\"", "question": "Who is the GamePlan when Jacqueline King is the actor in the original production?", "context": "CREATE TABLE table_name_71 (gameplan VARCHAR, actor_in_original_production VARCHAR)"}, {"answer": "SELECT gameplan FROM table_name_29 WHERE roleplay = \"arabella lazenby\"", "question": "Who is the GamePlan when Arabella Lazenby is the RolePlay actor?", "context": "CREATE TABLE table_name_29 (gameplan VARCHAR, roleplay VARCHAR)"}, {"answer": "SELECT actor_required FROM table_name_24 WHERE flatspin = \"edna stricken\"", "question": "Who is the actor required when Edna Stricken is the FlatSpin actor?", "context": "CREATE TABLE table_name_24 (actor_required VARCHAR, flatspin VARCHAR)"}, {"answer": "SELECT 1 AS st_round FROM table_name_33 WHERE team_1 = \"lb ch\u00e2teauroux (d2)\"", "question": "What shows for the 1st round when the team 1 was Lb Ch\u00e2teauroux (d2)?", "context": "CREATE TABLE table_name_33 (team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_round FROM table_name_63 WHERE team_1 = \"rc strasbourg (d1)\"", "question": "What shows for 2nd round when the team 1 was Rc Strasbourg (d1)?", "context": "CREATE TABLE table_name_63 (team_1 VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_80 WHERE tie_no = 23", "question": "Who was the Home team in Tie #23?", "context": "CREATE TABLE table_name_80 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_90 WHERE tie_no = 28", "question": "What was the final score in Tie #28?", "context": "CREATE TABLE table_name_90 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE to_par > 15 AND money___$__ > 116 AND player = \"billy burke\"", "question": "What score has a to par greater than 15, money ($) greater than 116, with billy burke as the player?", "context": "CREATE TABLE table_name_81 (score VARCHAR, player VARCHAR, to_par VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT player FROM table_name_57 WHERE place = \"t3\" AND country = \"england united states\"", "question": "What player has t3 as the place, with england united states as the country?", "context": "CREATE TABLE table_name_57 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(money___) AS $__ FROM table_name_75 WHERE place = \"t8\" AND to_par > 19", "question": "What is the lowest money ($) that has t8 as the place, with a to par greater than 19?", "context": "CREATE TABLE table_name_75 (money___ INTEGER, place VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE money___$__ > 400 AND player = \"gene sarazen\"", "question": "What score has money ($) greater than 400, with gene sarazen as the player?", "context": "CREATE TABLE table_name_99 (score VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_38 WHERE to_par < 7 AND total = 148", "question": "Which Country has a To par smaller than 7, and a Total of 148?", "context": "CREATE TABLE table_name_38 (country VARCHAR, to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT player FROM table_name_93 WHERE country = \"south africa\"", "question": "Which player is from south africa?", "context": "CREATE TABLE table_name_93 (player VARCHAR, country VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_61 WHERE total > 148 AND to_par < 17 AND country = \"new zealand\"", "question": "Which Year(s) won has a Total larger than 148, and a To par smaller than 17, and a Country of new zealand?", "context": "CREATE TABLE table_name_61 (year_s__won VARCHAR, country VARCHAR, total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT event FROM table_name_86 WHERE name = \"dorcus inzikuru\"", "question": "In what Event did Dorcus Inzikuru compete?", "context": "CREATE TABLE table_name_86 (event VARCHAR, name VARCHAR)"}, {"answer": "SELECT games FROM table_name_60 WHERE name = \"patrick etolu\"", "question": "In what Games did Patrick Etolu compete?", "context": "CREATE TABLE table_name_60 (games VARCHAR, name VARCHAR)"}, {"answer": "SELECT medal FROM table_name_71 WHERE sport = \"boxing\" AND games = \"1970 edinburgh\" AND name = \"james odwori\"", "question": "What Medal did James Odwori receive for Boxing in the 1970 Edinburgh Games?", "context": "CREATE TABLE table_name_71 (medal VARCHAR, name VARCHAR, sport VARCHAR, games VARCHAR)"}, {"answer": "SELECT medal FROM table_name_25 WHERE event = \"light heavyweight\"", "question": "What is the Medal for the Player in the Light Heavyweight event?", "context": "CREATE TABLE table_name_25 (medal VARCHAR, event VARCHAR)"}, {"answer": "SELECT games FROM table_name_54 WHERE medal = \"silver\" AND event = \"light heavyweight\"", "question": "At what Games did the competitor win a Silver medal in the light heavyweight event?", "context": "CREATE TABLE table_name_54 (games VARCHAR, medal VARCHAR, event VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_26 WHERE away_team = \"ipswich town\"", "question": "What is the Tie no for Away Team Ipswich Town?", "context": "CREATE TABLE table_name_26 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE home_team = \"middlesbrough\"", "question": "What is the Date of the Middlesbrough Home game?", "context": "CREATE TABLE table_name_42 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_40 WHERE score = \"1\u20130\"", "question": "What is the Home team in the Game with a Score of 1\u20130?", "context": "CREATE TABLE table_name_40 (home_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE away_team = \"everton\"", "question": "What is the Date of the Everton Away game?", "context": "CREATE TABLE table_name_95 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_28 WHERE finish = \"t31\"", "question": "When the finish was t31 what was the To par?", "context": "CREATE TABLE table_name_28 (to_par VARCHAR, finish VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE finish = \"t15\"", "question": "Who had a finish of t15?", "context": "CREATE TABLE table_name_67 (player VARCHAR, finish VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_59 WHERE total = 290", "question": "When the total was 290 what was the To par?", "context": "CREATE TABLE table_name_59 (to_par VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_47 WHERE player = \"seve ballesteros\"", "question": "What is the Total for Seve Ballesteros?", "context": "CREATE TABLE table_name_47 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT result FROM table_name_23 WHERE nominee = \"declan donnellan\"", "question": "What was the result of Declan Donnellan's nomination?", "context": "CREATE TABLE table_name_23 (result VARCHAR, nominee VARCHAR)"}, {"answer": "SELECT result FROM table_name_81 WHERE category = \"best actor in a musical\"", "question": "What was the result of the Best Actor in a Musical category?", "context": "CREATE TABLE table_name_81 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT player FROM table_name_26 WHERE total = 287", "question": "WHAT IS THE PLAYER WITH 287?", "context": "CREATE TABLE table_name_26 (player VARCHAR, total VARCHAR)"}, {"answer": "SELECT country FROM table_name_25 WHERE player = \"jack nicklaus\"", "question": "WHAT COUNTRY HAS A PLAYER NAMED JACK NICKLAUS?", "context": "CREATE TABLE table_name_25 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE country = \"united states\" AND place = \"6\"", "question": "What is Player, when Country is \"United States\", and when Place is \"6\"?", "context": "CREATE TABLE table_name_41 (player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_74 WHERE score = 69 - 69 - 76 - 69 = 283", "question": "What is the average Money ( $ ), when Score is \"69-69-76-69=283\"?", "context": "CREATE TABLE table_name_74 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_98 WHERE to_par = \"+1\" AND score = 72 - 71 - 70 - 72 = 285", "question": "What is Country, when To par is \"+1\", and when Score is \"72-71-70-72=285\"?", "context": "CREATE TABLE table_name_98 (country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_41 WHERE score = 70 - 70 - 68 - 70 = 278", "question": "What is Place, when Score is \"70-70-68-70=278\"?", "context": "CREATE TABLE table_name_41 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT network FROM table_name_83 WHERE year > 1990 AND colour_commentator_s_ = \"chris walby\"", "question": "For which network was Chris Walby the color commentator after 1990?", "context": "CREATE TABLE table_name_83 (network VARCHAR, year VARCHAR, colour_commentator_s_ VARCHAR)"}, {"answer": "SELECT pregame_host FROM table_name_51 WHERE year < 1992 AND play_by_play = \"bob irving\"", "question": "Who was the pregame host before 1992 when there was a play by play of Bob Irving?", "context": "CREATE TABLE table_name_51 (pregame_host VARCHAR, year VARCHAR, play_by_play VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_74 WHERE year_won < 1991 AND to_par < 14", "question": "What is the total of the player who won before 1991 and has a to par less than 14?", "context": "CREATE TABLE table_name_74 (total VARCHAR, year_won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_48 WHERE year_won < 1993 AND player = \"jeff sluman\" AND total > 154", "question": "What is the total to par of player jeff sluman, who won before 1993 and has a total greater than 154?", "context": "CREATE TABLE table_name_48 (to_par VARCHAR, total VARCHAR, year_won VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_20 WHERE player = \"rich beem\" AND to_par > 17", "question": "What is the sum of the total of player rich beem, who has a to par greater than 17?", "context": "CREATE TABLE table_name_20 (total INTEGER, player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT away FROM table_name_34 WHERE round = \"semifinals\"", "question": "Who was the away team in the semifinals?", "context": "CREATE TABLE table_name_34 (away VARCHAR, round VARCHAR)"}, {"answer": "SELECT home FROM table_name_34 WHERE club = \"auxerre\"", "question": "What is the home record for the Auxerre club?", "context": "CREATE TABLE table_name_34 (home VARCHAR, club VARCHAR)"}, {"answer": "SELECT home FROM table_name_85 WHERE club = \"maccabi tel-aviv\"", "question": "What is the home record for the Maccabi Tel-Aviv club?", "context": "CREATE TABLE table_name_85 (home VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_88 WHERE date = \"16/03/1996\"", "question": "What is the total number of Against, when Date is \"16/03/1996\"?", "context": "CREATE TABLE table_name_88 (against VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_58 WHERE against > 9 AND date = \"03/02/1996\"", "question": "What is Venue, when Against is greater than 9, and when Date is \"03/02/1996\"?", "context": "CREATE TABLE table_name_58 (venue VARCHAR, against VARCHAR, date VARCHAR)"}, {"answer": "SELECT status FROM table_name_16 WHERE opposing_teams = \"scotland\"", "question": "What is Status, when Opposing Teams is \"Scotland\"?", "context": "CREATE TABLE table_name_16 (status VARCHAR, opposing_teams VARCHAR)"}, {"answer": "SELECT venue FROM table_name_44 WHERE date = \"14/12/1996\"", "question": "What is Venue, when Date is \"14/12/1996\"?", "context": "CREATE TABLE table_name_44 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_28 WHERE status = \"five nations\" AND date = \"16/03/1996\"", "question": "What is the average Against, when Status is \"Five Nations\", and when Date is \"16/03/1996\"?", "context": "CREATE TABLE table_name_28 (against INTEGER, status VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_35 WHERE team = \"aston martin racing\" AND pos = \"6th\"", "question": "In what year did the team of aston martin racing have a position of 6th?", "context": "CREATE TABLE table_name_35 (year VARCHAR, team VARCHAR, pos VARCHAR)"}, {"answer": "SELECT highest_rank FROM table_name_44 WHERE name = \"yoshiazuma\"", "question": "Which Rank is Highest for Yoshiazuma?", "context": "CREATE TABLE table_name_44 (highest_rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT top_division_debut FROM table_name_12 WHERE tournaments < 88 AND name = \"kitazakura\"", "question": "Which Top Division debut for Kitazakura has Tournaments less than 88?", "context": "CREATE TABLE table_name_12 (top_division_debut VARCHAR, tournaments VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(tournaments) FROM table_name_46 WHERE highest_rank = \"maegashira 13\"", "question": "What is the lowest Tournaments with Highest Rank of Maegashira 13?", "context": "CREATE TABLE table_name_46 (tournaments INTEGER, highest_rank VARCHAR)"}, {"answer": "SELECT city FROM table_name_74 WHERE winner = \"hallescher fc\" AND year = 2008", "question": "What was the city where Hallescher FC won in 2008?", "context": "CREATE TABLE table_name_74 (city VARCHAR, winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner FROM table_name_58 WHERE finalist = \"fc gr\u00fcn-wei\u00df wolfen\"", "question": "Who was the winner of fc gr\u00fcn-wei\u00df wolfen?", "context": "CREATE TABLE table_name_58 (winner VARCHAR, finalist VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_31 WHERE year > 2012", "question": "What was the stadium past 2012?", "context": "CREATE TABLE table_name_31 (stadium VARCHAR, year INTEGER)"}, {"answer": "SELECT AVG(year) FROM table_name_28 WHERE country = \"u.s.\" AND location = \"edmond , ok\"", "question": "What is the average Year, when Country is \"U.S.\", and when Location is \"Edmond , OK\"?", "context": "CREATE TABLE table_name_28 (year INTEGER, country VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(killed) FROM table_name_93 WHERE perpetrator = \"sherrill, patrick henry , 44\"", "question": "What is the lowest Killed, when Perpetrator is \"Sherrill, Patrick Henry , 44\"?", "context": "CREATE TABLE table_name_93 (killed INTEGER, perpetrator VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_8 WHERE losses < 16 AND wins < 11 AND goal_difference > -9", "question": "What was the highest goals with fewer than 16 losses, fewer than 11 wins, and a goal difference greater than -9?", "context": "CREATE TABLE table_name_8 (goals_for INTEGER, goal_difference VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_74 WHERE goals_against < 51 AND points > 39 AND goal_difference < 13", "question": "What is the highest wins entry with fewer than 51 goals, more than 39 points, and a goal difference smaller than 13?", "context": "CREATE TABLE table_name_74 (wins INTEGER, goal_difference VARCHAR, goals_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_46 WHERE goal_difference < 33 AND position < 13 AND goals_for = 42", "question": "What is the lowest wins entry that has a goal difference less than 33, position higher than 13, and 42 goals?", "context": "CREATE TABLE table_name_46 (wins INTEGER, goals_for VARCHAR, goal_difference VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_62 WHERE draws > 7 AND wins > 8 AND losses > 5", "question": "What is the total number of goals for entries that have more than 7 draws, 8 wins, and more than 5 losses?", "context": "CREATE TABLE table_name_62 (goals_for VARCHAR, losses VARCHAR, draws VARCHAR, wins VARCHAR)"}, {"answer": "SELECT city FROM table_name_86 WHERE stadium = \"est\u00e1dio dr. magalh\u00e3es pessoa\"", "question": "What city is the Stadium est\u00e1dio dr. magalh\u00e3es pessoa in?", "context": "CREATE TABLE table_name_86 (city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT city FROM table_name_93 WHERE stadium = \"est\u00e1dio cidade de barcelos\"", "question": "What city is the Stadium est\u00e1dio cidade de barcelos in?", "context": "CREATE TABLE table_name_93 (city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT club FROM table_name_36 WHERE head_coach = \"casemiro mior\"", "question": "Head Coach casemiro mior is at which Club?", "context": "CREATE TABLE table_name_36 (club VARCHAR, head_coach VARCHAR)"}, {"answer": "SELECT city FROM table_name_79 WHERE club = \"braga\"", "question": "What City is the Club braga in?", "context": "CREATE TABLE table_name_79 (city VARCHAR, club VARCHAR)"}, {"answer": "SELECT 2002 AS _2003_season FROM table_name_20 WHERE city = \"aveiro\"", "question": "What place is listed in the 2002-2003 season for the City of Aveiro?", "context": "CREATE TABLE table_name_20 (city VARCHAR)"}, {"answer": "SELECT 1 AS st_round FROM table_name_25 WHERE team_1 = \"fc nantes (d1)\"", "question": "What is the 1st round with fc nantes (d1) as team 1?", "context": "CREATE TABLE table_name_25 (team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_66 WHERE team_2 = \"n\u00eemes olympique (d2)\"", "question": "What is the team 1 with n\u00eemes olympique (d2) as team 2?", "context": "CREATE TABLE table_name_66 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT lyrics FROM table_name_48 WHERE date = \"august 10, 2005\" AND catalog_number = \"tocp-66427\"", "question": "In what language is the Lyrics of the release on August 10, 2005 with Catalog number of TOCP-66427?", "context": "CREATE TABLE table_name_48 (lyrics VARCHAR, date VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT label FROM table_name_8 WHERE date = \"june 6, 2005\" AND region = \"germany\" AND format = \"cd\"", "question": "What is the Label of the CD released in Germany on June 6, 2005?", "context": "CREATE TABLE table_name_8 (label VARCHAR, format VARCHAR, date VARCHAR, region VARCHAR)"}, {"answer": "SELECT region FROM table_name_46 WHERE label = \"emi\" AND format = \"4 x vinyl\" AND catalog_number = \"560 6111\"", "question": "What is the Region of the EMI 4 x vinyl release bearing Catalog number 560 6111?", "context": "CREATE TABLE table_name_46 (region VARCHAR, catalog_number VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT lyrics FROM table_name_59 WHERE catalog_number = \"560 6111\"", "question": "What language is the Lyrics of the release with Catalog number 560 6111?", "context": "CREATE TABLE table_name_59 (lyrics VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT region FROM table_name_77 WHERE catalog_number = \"3 12046 2\"", "question": "What is the Region of the release with Catalog number 3 12046 2?", "context": "CREATE TABLE table_name_77 (region VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT label FROM table_name_25 WHERE date = \"september 19, 2008\" AND region = \"germany\"", "question": "What is the Label of the September 19, 2008 release in Germany?", "context": "CREATE TABLE table_name_25 (label VARCHAR, date VARCHAR, region VARCHAR)"}, {"answer": "SELECT edition_s_ FROM table_name_82 WHERE region = \"germany\"", "question": "What is the Edition of the release in Germany?", "context": "CREATE TABLE table_name_82 (edition_s_ VARCHAR, region VARCHAR)"}, {"answer": "SELECT format_s_ FROM table_name_40 WHERE date = \"september 23, 2008\"", "question": "What is the Format(s) of the release on September 23, 2008?", "context": "CREATE TABLE table_name_40 (format_s_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_2 WHERE region = \"germany\" AND date = \"april 24, 2009\"", "question": "What is the Label of the release on April 24, 2009 in Germany?", "context": "CREATE TABLE table_name_2 (label VARCHAR, region VARCHAR, date VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_10 WHERE idle_power = \"100mw\" AND model_number = \"nano u3400\"", "question": "What is the L2 Cache for Model Number nano u3400 with an Idle Power of 100mw?", "context": "CREATE TABLE table_name_10 (l2_cache VARCHAR, idle_power VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT COUNT(cores) FROM table_name_33 WHERE clock_speed = \"1.3ghz\"", "question": "What is the total Cores with a Clock Speed of 1.3ghz?", "context": "CREATE TABLE table_name_33 (cores VARCHAR, clock_speed VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_5 WHERE score = 68 - 74 - 71 - 77 = 290", "question": "What's the to par for the score of 68-74-71-77=290?", "context": "CREATE TABLE table_name_5 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_87 WHERE place = \"t3\" AND score = 74 - 74 - 71 - 69 = 288", "question": "What's the money ($) for the t3 place and the score of 74-74-71-69=288?", "context": "CREATE TABLE table_name_87 (money___$__ VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE money___$__ = \"22,500\"", "question": "What's the score for $22,500?", "context": "CREATE TABLE table_name_62 (score VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_58 WHERE place = \"t1\" AND score = 70 - 72 - 73 - 72 = 287", "question": "What's the to par for the t1 place with a score of 70-72-73-72=287?", "context": "CREATE TABLE table_name_58 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(annual_interchanges__millions__2011_12) FROM table_name_28 WHERE rank > 26 AND location = \"liverpool\" AND annual_entry_exit__millions__2011_12 < 14.209 AND number_of_platforms > 10", "question": "What's the average annual interchange for a rank over 26 in liverpool with an annual entry/exit less than 14.209 and more than 10 platforms?", "context": "CREATE TABLE table_name_28 (annual_interchanges__millions__2011_12 INTEGER, number_of_platforms VARCHAR, annual_entry_exit__millions__2011_12 VARCHAR, rank VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(annual_interchanges__millions__2011_12) FROM table_name_82 WHERE railway_station = \"wimbledon\"", "question": "What's the highest annual interchange for wimbledon railway station?", "context": "CREATE TABLE table_name_82 (annual_interchanges__millions__2011_12 INTEGER, railway_station VARCHAR)"}, {"answer": "SELECT MIN(total_passengers__millions__2011_12) FROM table_name_32 WHERE annual_entry_exit__millions__2011_12 = 36.609", "question": "What's the lowest number of total passengers (millions) for an annual entry/exit of 36.609?", "context": "CREATE TABLE table_name_32 (total_passengers__millions__2011_12 INTEGER, annual_entry_exit__millions__2011_12 VARCHAR)"}, {"answer": "SELECT rank FROM table_name_83 WHERE annual_interchanges__millions__2011_12 < 1.99 AND annual_entry_exit__millions__2011_12 < 13.835 AND total_passengers__millions__2011_12 > 13.772", "question": "What rank has an annual interchange less than 1.99 million, an annual entry/exit less than 13.835 million, and more than 13.772 million total passengers?", "context": "CREATE TABLE table_name_83 (rank VARCHAR, total_passengers__millions__2011_12 VARCHAR, annual_interchanges__millions__2011_12 VARCHAR, annual_entry_exit__millions__2011_12 VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_91 WHERE location = \"liverpool\" AND number_of_platforms > 3 AND annual_interchanges__millions__2011_12 < 0.778", "question": "How many ranks are in liverpool with more than 3 platforms and an annual interchange less than 0.778 million?", "context": "CREATE TABLE table_name_91 (rank VARCHAR, annual_interchanges__millions__2011_12 VARCHAR, location VARCHAR, number_of_platforms VARCHAR)"}, {"answer": "SELECT AVG(number_of_households) FROM table_name_61 WHERE per_capita_income = \"$21,571\" AND population < 9 OFFSET 783", "question": "Which Number of households has Per capita income of $21,571, and a Population smaller than 9,783?", "context": "CREATE TABLE table_name_61 (number_of_households INTEGER, per_capita_income VARCHAR, population VARCHAR)"}, {"answer": "SELECT AVG(number_of_households) FROM table_name_98 WHERE county = \"cook\" AND population < 5 OFFSET 176", "question": "Which Number of households has a County of cook, and Population smaller than 5,176?", "context": "CREATE TABLE table_name_98 (number_of_households INTEGER, county VARCHAR, population VARCHAR)"}, {"answer": "SELECT per_capita_income FROM table_name_38 WHERE median_family_income = \"$50,755\"", "question": "What Per capita income has a Median family income of $50,755?", "context": "CREATE TABLE table_name_38 (per_capita_income VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT number_of_households FROM table_name_73 WHERE median_family_income = \"$58,491\"", "question": "What Number of households have a Median family income of $58,491?", "context": "CREATE TABLE table_name_73 (number_of_households VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_91 WHERE score = 68 - 70 = 138", "question": "What was the to par score of the golfer that had a score of 68-70=138?", "context": "CREATE TABLE table_name_91 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_63 WHERE score = 69 - 71 = 140", "question": "Which golfer had a score of 69-71=140?", "context": "CREATE TABLE table_name_63 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_37 WHERE place = \"t3\" AND player = \"billy mayfair\"", "question": "Which country is t3 finisher billy mayfair from?", "context": "CREATE TABLE table_name_37 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_62 WHERE player = \"jodie mudd\"", "question": "Which Country has a Player of jodie mudd?", "context": "CREATE TABLE table_name_62 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS \u00a3__ FROM table_name_72 WHERE player = \"jodie mudd\"", "question": "Which Money (\u00a3) has a Player of jodie mudd?", "context": "CREATE TABLE table_name_72 (money___ VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(money___) AS \u00a3__ FROM table_name_56 WHERE player = \"nick faldo\"", "question": "What is the total Money (\u00a3) of Player of nick faldo?", "context": "CREATE TABLE table_name_56 (money___ INTEGER, player VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS \u00a3__ FROM table_name_61 WHERE place = \"t6\" AND player = \"ian baker-finch\"", "question": "What is the total Money (\u00a3) with a Place of t6, and a Player of ian baker-finch?", "context": "CREATE TABLE table_name_61 (money___ VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_20 WHERE goals_against < 63 AND lost < 6", "question": "What position was the team who had less then 63 goals against and less than 6 losses?", "context": "CREATE TABLE table_name_20 (position INTEGER, goals_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_30 WHERE points_1 = \"37\" AND goals_against < 60", "question": "How many times did the team lose who had 1 of 37 points and less than 60 goals against?", "context": "CREATE TABLE table_name_30 (lost INTEGER, points_1 VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_97 WHERE goal_difference = \"+2\" AND goals_for = 52 AND drawn < 9", "question": "How many times did the team lose who had a goal difference of +2, 52 goals for, and less than 9 draws?", "context": "CREATE TABLE table_name_97 (lost INTEGER, drawn VARCHAR, goal_difference VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_76 WHERE position < 12 AND team = \"clitheroe\" AND lost > 4", "question": "How many draws did clitheroe have when their position was less than 12 and they lost less than 4 times?", "context": "CREATE TABLE table_name_76 (drawn INTEGER, lost VARCHAR, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT reserved_for___sc___st__none_ FROM table_name_40 WHERE name = \"uklana\"", "question": "What is the reserved for (ST/ST/None) when it was Uklana?", "context": "CREATE TABLE table_name_40 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT constituency_number FROM table_name_37 WHERE district = \"bhiwani\"", "question": "Bhiwani district have what constituency number?", "context": "CREATE TABLE table_name_37 (constituency_number VARCHAR, district VARCHAR)"}, {"answer": "SELECT constituency_number FROM table_name_40 WHERE number_of_electorates__2009_ > 152 OFFSET 958", "question": "What is the constituency number with electorates (2009) number larger than 152,958?", "context": "CREATE TABLE table_name_40 (constituency_number VARCHAR, number_of_electorates__2009_ INTEGER)"}, {"answer": "SELECT date_performed FROM table_name_89 WHERE main_contestant = \"jatin shah\" AND co_contestant__yaar_vs_pyaar_ = \"shalini chandran\"", "question": "What is the date of the performance by Jatin Shah and co-contestant is Shalini Chandran?", "context": "CREATE TABLE table_name_89 (date_performed VARCHAR, main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT scores_by_each_individual_judge FROM table_name_10 WHERE total_score_week = \"41/60\" AND co_contestant__yaar_vs_pyaar_ = \"shalini chandran\"", "question": "What are the scores when total score/week is 41/60 and co-contestant is Shalini Chandran?", "context": "CREATE TABLE table_name_10 (scores_by_each_individual_judge VARCHAR, total_score_week VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_21 WHERE main_contestant = \"vishal singh\" AND scores_by_each_individual_judge = 1 + 7 + 5 = 13", "question": "What position is there when the main contestant is Vishal Singh and the scores are 1 + 7 + 5 = 13?", "context": "CREATE TABLE table_name_21 (position VARCHAR, main_contestant VARCHAR, scores_by_each_individual_judge VARCHAR)"}, {"answer": "SELECT main_contestant FROM table_name_33 WHERE co_contestant__yaar_vs_pyaar_ = \"shalini chandran\"", "question": "Who is the main contestant when the co-contestant (yaar vs. pyaar) is Shalini Chandran?", "context": "CREATE TABLE table_name_33 (main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)"}, {"answer": "SELECT main_contestant FROM table_name_11 WHERE status = \"eliminated\" AND scores_by_each_individual_judge = 1 + 7 + 5 = 13", "question": "Who is the main contestant eliminated with a score of 1 + 7 + 5 = 13?", "context": "CREATE TABLE table_name_11 (main_contestant VARCHAR, status VARCHAR, scores_by_each_individual_judge VARCHAR)"}, {"answer": "SELECT series_4 FROM table_name_27 WHERE seat = 1", "question": "What shows for series 4 when the seat shows 1?", "context": "CREATE TABLE table_name_27 (series_4 VARCHAR, seat VARCHAR)"}, {"answer": "SELECT AVG(seat) FROM table_name_81 WHERE series_3 = \"dana b\u00e9rov\u00e1\"", "question": "What is the seat number when Series 3 shows Dana B\u00e9rov\u00e1?", "context": "CREATE TABLE table_name_81 (seat INTEGER, series_3 VARCHAR)"}, {"answer": "SELECT partner FROM table_name_2 WHERE tournament = \"algiers 2, algeria\"", "question": "Who was the Partner in the Algiers 2, Algeria Tournament?", "context": "CREATE TABLE table_name_2 (partner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_80 WHERE partner = \"rushmi chakravarthi\"", "question": "Who were the Opponents in the Match with Partner Rushmi Chakravarthi?", "context": "CREATE TABLE table_name_80 (opponents VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE score = \"6\u20134, 7\u20135\"", "question": "What is the Date of the Match with a Score of 6\u20134, 7\u20135?", "context": "CREATE TABLE table_name_27 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(loses) FROM table_name_83 WHERE position < 8 AND games_played < 30", "question": "What is the fewest loses for the club that is below 8 in position, and had played less than 30 games?", "context": "CREATE TABLE table_name_83 (loses INTEGER, position VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT SUM(loses) FROM table_name_54 WHERE draws < 4 AND goals_conceded < 105 AND position > 2 AND goals_scored < 38", "question": "What is the loses total when there is less than 4 draws, less than 105 conceded goals, less than 38 goals scored, and the club is positioned greater than 2?", "context": "CREATE TABLE table_name_54 (loses INTEGER, goals_scored VARCHAR, position VARCHAR, draws VARCHAR, goals_conceded VARCHAR)"}, {"answer": "SELECT SUM(goals_conceded) FROM table_name_16 WHERE points > 58 AND wins < 27 AND draws < 1", "question": "How many total goals conceded are there when the points are greater than 58, less than 27 wins, and less than 1 draws?", "context": "CREATE TABLE table_name_16 (goals_conceded INTEGER, draws VARCHAR, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(goals_scored) FROM table_name_71 WHERE games_played < 30", "question": "How many total goals scored when less than 30 games have been played?", "context": "CREATE TABLE table_name_71 (goals_scored VARCHAR, games_played INTEGER)"}, {"answer": "SELECT AVG(goals_scored) FROM table_name_18 WHERE games_played < 30", "question": "When less than 30 games have been played what is the average goals scored?", "context": "CREATE TABLE table_name_18 (goals_scored INTEGER, games_played INTEGER)"}, {"answer": "SELECT league_cup_apps FROM table_name_76 WHERE league_cup_goals > 0", "question": "What is the league cup app with league cup goals more than 0?", "context": "CREATE TABLE table_name_76 (league_cup_apps VARCHAR, league_cup_goals INTEGER)"}, {"answer": "SELECT fa_cup_apps FROM table_name_60 WHERE league_cup_goals = 0 AND total_apps = \"43\"", "question": "What is the fa cup apps with 0 league cup goals, and a total of 43 apps?", "context": "CREATE TABLE table_name_60 (fa_cup_apps VARCHAR, league_cup_goals VARCHAR, total_apps VARCHAR)"}, {"answer": "SELECT MAX(flt_goals) FROM table_name_3 WHERE league_cup_goals = 0 AND position = \"gk\" AND league_cup_apps = \"2\"", "question": "What is the highest FLT goals with 0 league cup goals, a GK position, and 2 league cup apps?", "context": "CREATE TABLE table_name_3 (flt_goals INTEGER, league_cup_apps VARCHAR, league_cup_goals VARCHAR, position VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE venue = \"sam nujoma stadium, windhoek, namibia\"", "question": "On what date is the venue Sam Nujoma Stadium, Windhoek, Namibia?", "context": "CREATE TABLE table_name_87 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_48 WHERE number_of_clubs = 14 AND winners = \"dalian shide\" AND fourth_placed = \"chongqing longxin\"", "question": "Who was in third place when the Winner was Dalian Shide, Chongqing Longxin was 4th and 14 clubs?", "context": "CREATE TABLE table_name_48 (third_place VARCHAR, fourth_placed VARCHAR, number_of_clubs VARCHAR, winners VARCHAR)"}, {"answer": "SELECT SUM(season) FROM table_name_1 WHERE winners = \"dalian wanda\" AND fourth_placed = \"yanbian aodong\"", "question": "What season had Dalian Wanda as the winner with Yanbian Aodong winning 4th?", "context": "CREATE TABLE table_name_1 (season INTEGER, winners VARCHAR, fourth_placed VARCHAR)"}, {"answer": "SELECT AVG(number_of_clubs) FROM table_name_66 WHERE fourth_placed = \"shenzhen jianlibao\" AND season < 2003", "question": "What is the number of clubs before 2003 with a 4th place winner of Shenzhen Jianlibao?", "context": "CREATE TABLE table_name_66 (number_of_clubs INTEGER, fourth_placed VARCHAR, season VARCHAR)"}, {"answer": "SELECT AVG(number_of_clubs) FROM table_name_35 WHERE winners = \"dalian shide\" AND fourth_placed = \"sichuan quanxing\"", "question": "What is the number of clubs when Dalian Shide won and Sichuan Quanxing won 4th?", "context": "CREATE TABLE table_name_35 (number_of_clubs INTEGER, winners VARCHAR, fourth_placed VARCHAR)"}, {"answer": "SELECT winners FROM table_name_34 WHERE runners_up = \"guangzhou apollo\"", "question": "Who was the winner when the runner-up was Guangzhou Apollo?", "context": "CREATE TABLE table_name_34 (winners VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT SUM(byes) FROM table_name_39 WHERE against = 972 AND wins > 11", "question": "How many Byes have an Against of 972, and more than 11 wins?", "context": "CREATE TABLE table_name_39 (byes INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_87 WHERE lexton_plains = \"skipton\"", "question": "Which Byes have a Lexton Plains of skipton?", "context": "CREATE TABLE table_name_87 (byes INTEGER, lexton_plains VARCHAR)"}, {"answer": "SELECT lost FROM table_name_33 WHERE drawn = \"0\" AND tries_against = \"41\"", "question": "What is the value for Lost when Drawn is 0, and Tries against is 41?", "context": "CREATE TABLE table_name_33 (lost VARCHAR, drawn VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_47 WHERE club = \"furnace united rfc\"", "question": "What is the drawn value for furnace united rfc?", "context": "CREATE TABLE table_name_47 (drawn VARCHAR, club VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_87 WHERE club = \"burry port rfc\"", "question": "What tries against value does burry port rfc have?", "context": "CREATE TABLE table_name_87 (tries_against VARCHAR, club VARCHAR)"}, {"answer": "SELECT MIN(staterooms) FROM table_name_44 WHERE comments = \"diesel-electric hybrid engines\" AND length = \"443 feet\" AND guests > 190", "question": "Of the ships with diesel-electric hybrid engines, length of 443 feet, and over 190 guests, what is the lowest number of staterooms?", "context": "CREATE TABLE table_name_44 (staterooms INTEGER, guests VARCHAR, comments VARCHAR, length VARCHAR)"}, {"answer": "SELECT wins FROM table_name_47 WHERE year > 1987 AND points < 188", "question": "How many wins for the year that is later than 1987 and has points less than 188?", "context": "CREATE TABLE table_name_47 (wins VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT machine FROM table_name_59 WHERE rank = \"4th\" AND wins = 2", "question": "What is the name of the machine that ranked  4th and has 2 wins?", "context": "CREATE TABLE table_name_59 (machine VARCHAR, rank VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_20 WHERE year = 1994", "question": "How many wins were there in 1994?", "context": "CREATE TABLE table_name_20 (wins INTEGER, year VARCHAR)"}, {"answer": "SELECT rank FROM table_name_34 WHERE wins > 2 AND points > 204", "question": "What is the rank associated with the team that has more than 2 wins and has greater than 204 points?", "context": "CREATE TABLE table_name_34 (rank VARCHAR, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_80 WHERE player = \"pong escobal\"", "question": "How many picks have a Player of pong escobal?", "context": "CREATE TABLE table_name_80 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT pba_team FROM table_name_61 WHERE college = \"nu\"", "question": "Which PBA team has a College of nu?", "context": "CREATE TABLE table_name_61 (pba_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT place_of_birth FROM table_name_65 WHERE elevator = \"lucius iii\" AND cardinalatial_title = \"deacon of s. giorgio in velabro\"", "question": "What is the birth place for someone elevated by Lucius III, and has the Cardinalatial title of Deacon of S. Giorgio in Velabro?", "context": "CREATE TABLE table_name_65 (place_of_birth VARCHAR, elevator VARCHAR, cardinalatial_title VARCHAR)"}, {"answer": "SELECT place_of_birth FROM table_name_94 WHERE elector = \"laborante de panormo\"", "question": "What is the place of birth for the elector Laborante de Panormo?", "context": "CREATE TABLE table_name_94 (place_of_birth VARCHAR, elector VARCHAR)"}, {"answer": "SELECT elector FROM table_name_86 WHERE cardinalatial_title = \"deacon of ss. cosma e damiano\"", "question": "Who is the elector that has the cardinalatial title of Deacon of SS. Cosma e Damiano?", "context": "CREATE TABLE table_name_86 (elector VARCHAR, cardinalatial_title VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_14 WHERE cardinalatial_title = \"deacon of ss. sergio e bacco\"", "question": "Who is the elevator with the cardinalatial title of Deacon of SS. Sergio e Bacco?", "context": "CREATE TABLE table_name_14 (elevator VARCHAR, cardinalatial_title VARCHAR)"}, {"answer": "SELECT SUM(premier_league) FROM table_name_20 WHERE fa_cup = 0 AND total = 1 AND UEfa_cup > 1", "question": "How much Premier League has an FA Cup of 0, and a Total of 1, and a UEFA Cup larger than 1?", "context": "CREATE TABLE table_name_20 (premier_league INTEGER, UEfa_cup VARCHAR, fa_cup VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_9 WHERE premier_league < 6 AND league_cup > 0", "question": "How many totals have a Premier League smaller than 6, and a League Cup larger than 0?", "context": "CREATE TABLE table_name_9 (total INTEGER, premier_league VARCHAR, league_cup VARCHAR)"}, {"answer": "SELECT AVG(fa_cup) FROM table_name_24 WHERE total < 1", "question": "Which FA Cup has a Total smaller than 1?", "context": "CREATE TABLE table_name_24 (fa_cup INTEGER, total INTEGER)"}, {"answer": "SELECT COUNT(week) FROM table_name_26 WHERE attendance = \"68,932\" AND opponent = \"indianapolis colts\"", "question": "What week is the opponent the Indianapolis Colts with an attendance of 68,932?", "context": "CREATE TABLE table_name_26 (week VARCHAR, attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_86 WHERE week < 10 AND result = \"l 12-15\"", "question": "What was the attendance for the week before 10 with a result of L 12-15", "context": "CREATE TABLE table_name_86 (attendance VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_17 WHERE result = \"l 17-31\"", "question": "What week has a result of L 17-31 first?", "context": "CREATE TABLE table_name_17 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_24 WHERE attendance = \"70,721\"", "question": "What was the score for the game that attendance was 70,721?", "context": "CREATE TABLE table_name_24 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_8 WHERE result = \"safe\" AND dance = \"salsa\"", "question": "What week was she safe for a salsa dance?", "context": "CREATE TABLE table_name_8 (week INTEGER, result VARCHAR, dance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_37 WHERE result = \"loss\" AND location = \"westbury, ny\"", "question": "Who was the opponent with the loss in Westbury, NY?", "context": "CREATE TABLE table_name_37 (opponent VARCHAR, result VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE \"type\" = \"type\"", "question": "What is the date where the type is type?", "context": "CREATE TABLE table_name_4 (date VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_2 WHERE silver < 2 AND gold = 4 AND bronze > 2", "question": "What is the total rank for the player with less than 2 silvers, 4 golds, and more than 2 bronze?", "context": "CREATE TABLE table_name_2 (rank VARCHAR, bronze VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_78 WHERE silver > 1 AND gold = 1 AND total < 6", "question": "What is the sum of rank with more than 1 silver medal, 1 gold medal, and less than 6?", "context": "CREATE TABLE table_name_78 (rank INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE circuit = \"winton motor raceway\"", "question": "What's the date of the circuit Winton Motor Raceway?", "context": "CREATE TABLE table_name_21 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_16 WHERE circuit = \"hidden valley raceway\"", "question": "What's the city/state of Hidden Valley Raceway?", "context": "CREATE TABLE table_name_16 (city___state VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE circuit = \"bahrain international circuit\"", "question": "What's the date of Bahrain International Circuit?", "context": "CREATE TABLE table_name_95 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_11 WHERE winner = \"event cancelled\"", "question": "What's the circuit that had an event cancelled?", "context": "CREATE TABLE table_name_11 (circuit VARCHAR, winner VARCHAR)"}, {"answer": "SELECT distance FROM table_name_57 WHERE feature = \"ridge\"", "question": "what is the distance for ridge?", "context": "CREATE TABLE table_name_57 (distance VARCHAR, feature VARCHAR)"}, {"answer": "SELECT latitude FROM table_name_70 WHERE distance = \"42.5km\"", "question": "what is the latitude when the distance is 42.5km?", "context": "CREATE TABLE table_name_70 (latitude VARCHAR, distance VARCHAR)"}, {"answer": "SELECT feature FROM table_name_60 WHERE name = \"bird ridge\"", "question": "what is the feature named bird ridge?", "context": "CREATE TABLE table_name_60 (feature VARCHAR, name VARCHAR)"}, {"answer": "SELECT distance FROM table_name_89 WHERE name = \"mj\u00e5kollen\"", "question": "what is the distance for mj\u00e5kollen?", "context": "CREATE TABLE table_name_89 (distance VARCHAR, name VARCHAR)"}, {"answer": "SELECT distance FROM table_name_27 WHERE bearing = \"297\u00b0\"", "question": "what is the distance for bearing 297\u00b0?", "context": "CREATE TABLE table_name_27 (distance VARCHAR, bearing VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_8 WHERE year = 2007", "question": "What platform has a year of 2007?", "context": "CREATE TABLE table_name_8 (platform_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT game FROM table_name_13 WHERE year = 2011", "question": "Which game was released in 2011?", "context": "CREATE TABLE table_name_13 (game VARCHAR, year VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_38 WHERE year < 2009 AND game = \"wii sports\"", "question": "What platform came out before 2009 with the game wii sports?", "context": "CREATE TABLE table_name_38 (platform_s_ VARCHAR, year VARCHAR, game VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_32 WHERE lane < 6 AND rank = 1", "question": "What nationality has a lane less than 6, with 1 as the rank?", "context": "CREATE TABLE table_name_32 (nationality VARCHAR, lane VARCHAR, rank VARCHAR)"}, {"answer": "SELECT time FROM table_name_63 WHERE lane < 5 AND nationality = \"poland\"", "question": "What time has a lane less than 5, with Poland as the nationality?", "context": "CREATE TABLE table_name_63 (time VARCHAR, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_62 WHERE time = \"1:53.70\"", "question": "How many lanes have 1:53.70 as the time?", "context": "CREATE TABLE table_name_62 (lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_22 WHERE name = \"chen yin\" AND lane > 8", "question": "How many ranks have chen yin as the name, with a lane greater than 8?", "context": "CREATE TABLE table_name_22 (rank INTEGER, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_96 WHERE time = \"1:55.35\"", "question": "What nationality has 1:55.35 as the time?", "context": "CREATE TABLE table_name_96 (nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_25 WHERE rank > 8", "question": "How many lanes have a rank greater than 8?", "context": "CREATE TABLE table_name_25 (lane INTEGER, rank INTEGER)"}, {"answer": "SELECT home FROM table_name_14 WHERE country = \"sweden\"", "question": "Where in Sweden is the home of the Swedish team?", "context": "CREATE TABLE table_name_14 (home VARCHAR, country VARCHAR)"}, {"answer": "SELECT third FROM table_name_23 WHERE second = \"xu xiaoming\"", "question": "Who is third to Xu Xiaoming at second?", "context": "CREATE TABLE table_name_23 (third VARCHAR, second VARCHAR)"}, {"answer": "SELECT lead FROM table_name_84 WHERE home = \"saskatoon, saskatchewan\"", "question": "Who is the lead for the team from Saskatoon, Saskatchewan?", "context": "CREATE TABLE table_name_84 (lead VARCHAR, home VARCHAR)"}, {"answer": "SELECT second FROM table_name_38 WHERE lead = \"euan byers\"", "question": "Who is second on the team with Euan Byers at lead?", "context": "CREATE TABLE table_name_38 (second VARCHAR, lead VARCHAR)"}, {"answer": "SELECT third FROM table_name_23 WHERE home = \"madison, wisconsin\" AND skip = \"craig brown\"", "question": "Who is the third on the team from Madison, Wisconsin that has Craig Brown as skip?", "context": "CREATE TABLE table_name_23 (third VARCHAR, home VARCHAR, skip VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE opponent = \"chicago bears\"", "question": "On which date was the opponent the Chicago Bears?", "context": "CREATE TABLE table_name_54 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_40 WHERE date = \"october 30, 1983\"", "question": "Which week was on october 30, 1983?", "context": "CREATE TABLE table_name_40 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_13 WHERE previous_conference = \"independent\" AND location = \"leo\"", "question": "What is the Mascot for the team from leo that had a Previous Conference value of independent?", "context": "CREATE TABLE table_name_13 (mascot VARCHAR, previous_conference VARCHAR, location VARCHAR)"}, {"answer": "SELECT school FROM table_name_81 WHERE ihsaa_class__football_class = \"3a/2a\"", "question": "What School had 3a/2a as the value for IHSAA Class/ Football Class?", "context": "CREATE TABLE table_name_81 (school VARCHAR, ihsaa_class__football_class VARCHAR)"}, {"answer": "SELECT COUNT(july_1), _2013_projection FROM table_name_58 WHERE rank = \"27\"", "question": "How many July 1, 2013 projections have a Rank of 27?", "context": "CREATE TABLE table_name_58 (_2013_projection VARCHAR, july_1 VARCHAR, rank VARCHAR)"}, {"answer": "SELECT format FROM table_name_94 WHERE call_sign = \"cite-fm-1\"", "question": "What is the format for the one which has a call sign of cite-fm-1?", "context": "CREATE TABLE table_name_94 (format VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT COUNT(dolphins_points) FROM table_name_80 WHERE attendance = 52 OFFSET 860", "question": "What'd the total Dolphin points when there was an attendance of 52,860?", "context": "CREATE TABLE table_name_80 (dolphins_points VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_77 WHERE dolphins_points < 24 AND opponent = \"new england patriots\"", "question": "What's the most in attendance when the Dolphins points were less than 24 and, they played the New England Patriots?", "context": "CREATE TABLE table_name_77 (attendance INTEGER, dolphins_points VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT district FROM table_name_2 WHERE reserved_for___sc___st__none_ = \"sc\" AND constituency_number = \"169\"", "question": "Which district had SC reserved and 169 Constituents?", "context": "CREATE TABLE table_name_2 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT reserved_for___sc___st__none_ FROM table_name_72 WHERE constituency_number = \"169\"", "question": "What was reserved in the district that has 169 constituents?", "context": "CREATE TABLE table_name_72 (reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT 1995 FROM table_name_81 WHERE 1997 = \"lq\" AND 1989 = \"1r\"", "question": "What is 1995 Grand Slam Tournament if 1997 is LQ and 1989 is 1R?", "context": "CREATE TABLE table_name_81 (Id VARCHAR)"}, {"answer": "SELECT 1996 FROM table_name_4 WHERE 1994 = \"lq\" AND 1992 = \"3r\"", "question": "What is 1996 Grand Slam Tournament if 1994 is LQ and 1992 is 3R?", "context": "CREATE TABLE table_name_4 (Id VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_88 WHERE 1993 = \"grand slam tournaments\"", "question": "What is 1994 Grand Slam Tournament if 1993 is also grand slam tournaments?", "context": "CREATE TABLE table_name_88 (Id VARCHAR)"}, {"answer": "SELECT 1995 FROM table_name_96 WHERE 1990 = \"lq\"", "question": "What is 1995 Grand Slam Tournament if 1990 is LQ?", "context": "CREATE TABLE table_name_96 (Id VARCHAR)"}, {"answer": "SELECT 1990 FROM table_name_33 WHERE 1996 = \"grand slam tournaments\"", "question": "What is 1995 Grand Slam Tournament if 1996 is also grand slam tournaments?", "context": "CREATE TABLE table_name_33 (Id VARCHAR)"}, {"answer": "SELECT 1987 FROM table_name_71 WHERE 1989 = \"grand slam tournaments\"", "question": "What is 1987 Grand Slam Tournament if 1989 is also grand slam tournaments?", "context": "CREATE TABLE table_name_71 (Id VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_61 WHERE opponent = \"new york jets\"", "question": "How many people attended the home game against the New York Jets?", "context": "CREATE TABLE table_name_61 (attendance INTEGER, opponent VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_28 WHERE date = \"september 14, 1968\"", "question": "How many people attended the September 14, 1968 game?", "context": "CREATE TABLE table_name_28 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT director FROM table_name_51 WHERE production_number = \"9368\"", "question": "Who is the director of the production number 9368?", "context": "CREATE TABLE table_name_51 (director VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT title FROM table_name_78 WHERE director = \"chuck jones\" AND production_number = \"9537\"", "question": "What is the title with chuck jones as the director and the production number 9537?", "context": "CREATE TABLE table_name_78 (title VARCHAR, director VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_40 WHERE series = \"mm\" AND title = \"tom thumb in trouble\"", "question": "What is the release date of the mm series, which has the title tom thumb in trouble?", "context": "CREATE TABLE table_name_40 (release_date VARCHAR, series VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_92 WHERE series = \"mm\" AND title = \"confederate honey\"", "question": "What is the release date of the mm series which has the title confederate honey?", "context": "CREATE TABLE table_name_92 (release_date VARCHAR, series VARCHAR, title VARCHAR)"}, {"answer": "SELECT AVG(start) FROM table_name_33 WHERE team = \"andretti green racing\" AND finish > 3 AND year < 2007", "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 MIN(start) FROM table_name_62 WHERE year > 2008", "question": "What is the lowest start in a year after 2008?", "context": "CREATE TABLE table_name_62 (start INTEGER, year INTEGER)"}, {"answer": "SELECT finish FROM table_name_73 WHERE start < 25", "question": "What finish has a start smaller than 25?", "context": "CREATE TABLE table_name_73 (finish VARCHAR, start INTEGER)"}, {"answer": "SELECT COUNT(start) FROM table_name_53 WHERE team = \"rahal letterman\" AND year = 2006", "question": "Where did the team of Rahal Letterman in 2006 start?", "context": "CREATE TABLE table_name_53 (start VARCHAR, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_51 WHERE chassis = \"dallara\" AND team = \"andretti green racing\" AND finish < 8", "question": "What year did Team of Andretti Green Racing have a finish smaller than 8 with a Dallara chassis?", "context": "CREATE TABLE table_name_51 (year VARCHAR, finish VARCHAR, chassis VARCHAR, team VARCHAR)"}, {"answer": "SELECT director FROM table_name_93 WHERE release_date = \"2004-03-31\" AND characters = \"daffy (as duck dodgers)\"", "question": "What director has 2004-03-31 as the release date, with daffy (as duck dodgers) as the character?", "context": "CREATE TABLE table_name_93 (director VARCHAR, release_date VARCHAR, characters VARCHAR)"}, {"answer": "SELECT title FROM table_name_98 WHERE characters = \"daffy (as duck dodgers)\"", "question": "What title has daffy (as duck dodgers) as the character?", "context": "CREATE TABLE table_name_98 (title VARCHAR, characters VARCHAR)"}, {"answer": "SELECT series FROM table_name_46 WHERE director = \"dan povenmire\" AND title = \"museum scream\"", "question": "What series has dan povenmire as the director, with museum scream as the title?", "context": "CREATE TABLE table_name_46 (series VARCHAR, director VARCHAR, title VARCHAR)"}, {"answer": "SELECT MAX(number_of_electorates__2009_) FROM table_name_86 WHERE district = \"raisen\" AND constituency_number = \"142\"", "question": "What was the highest number of 2009 electorates for Raisen when the consituency number was 142?", "context": "CREATE TABLE table_name_86 (number_of_electorates__2009_ INTEGER, district VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT COUNT(population_density__per_km\u00b2_) FROM table_name_98 WHERE name = \"total northern villages\" AND population__2006_ > 11414", "question": "How much Population density (per km\u00b2) has a Name of total northern villages, and a Population (2006) larger than 11414?", "context": "CREATE TABLE table_name_98 (population_density__per_km\u00b2_ VARCHAR, name VARCHAR, population__2006_ VARCHAR)"}, {"answer": "SELECT MAX(population_density__per_km\u00b2_) FROM table_name_90 WHERE change___percentage_ > 4.9 AND land_area__km\u00b2_ < 15.59 AND population__2011_ > 790", "question": "Which Population density (per km\u00b2) has a Change (%) larger than 4.9, and a Land area (km\u00b2) smaller than 15.59, and a Population (2011) larger than 790?", "context": "CREATE TABLE table_name_90 (population_density__per_km\u00b2_ INTEGER, population__2011_ VARCHAR, change___percentage_ VARCHAR, land_area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT SUM(population__2011_) FROM table_name_28 WHERE land_area__km\u00b2_ > 15.69 AND population_density__per_km\u00b2_ > 57.3", "question": "How much Population (2011) has a Land area (km\u00b2) larger than 15.69, and a Population density (per km\u00b2) larger than 57.3?", "context": "CREATE TABLE table_name_28 (population__2011_ INTEGER, land_area__km\u00b2_ VARCHAR, population_density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT MAX(land_area__km\u00b2_) FROM table_name_12 WHERE population_density__per_km\u00b2_ > 112.6 AND population__2006_ > 785 AND name = \"pinehouse\"", "question": "Which Land area (km\u00b2) has a Population density (per km\u00b2) larger than 112.6, and a Population (2006) larger than 785, and a Name of pinehouse?", "context": "CREATE TABLE table_name_12 (land_area__km\u00b2_ INTEGER, name VARCHAR, population_density__per_km\u00b2_ VARCHAR, population__2006_ VARCHAR)"}, {"answer": "SELECT MAX(withdrawn) FROM table_name_18 WHERE number = \"32 (2nd)\" AND converted < 1966", "question": "With a converted less than 1966 and a number of 32 (2nd), what is the largest number listed for withdrawn?", "context": "CREATE TABLE table_name_18 (withdrawn INTEGER, number VARCHAR, converted VARCHAR)"}, {"answer": "SELECT average FROM table_name_47 WHERE matches = \"11\"", "question": "What is the average when the matches are 11?", "context": "CREATE TABLE table_name_47 (average VARCHAR, matches VARCHAR)"}, {"answer": "SELECT overs FROM table_name_88 WHERE matches = \"10\"", "question": "What is the overs when the matches are 10?", "context": "CREATE TABLE table_name_88 (overs VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MIN(car__number) FROM table_name_39 WHERE driver = \"ryan newman\" AND pos > 10", "question": "Which Car # has a Driver of ryan newman, and a Position larger than 10?", "context": "CREATE TABLE table_name_39 (car__number INTEGER, driver VARCHAR, pos VARCHAR)"}, {"answer": "SELECT AVG(car__number) FROM table_name_95 WHERE team = \"hendrick motorsports\" AND driver = \"mark martin\" AND pos > 4", "question": "Which Car # has a Team of hendrick motorsports, and a Driver of mark martin, and a Position larger than 4?", "context": "CREATE TABLE table_name_95 (car__number INTEGER, pos VARCHAR, team VARCHAR, driver VARCHAR)"}, {"answer": "SELECT time FROM table_name_24 WHERE local_networked = \"local\" AND ad_freq = \"20 minutes\" AND news_freq = \"n/a after 7pm news\"", "question": "Which time has a local/networked value of Local, ad frequency of every 20 minutes, and news frequency of n/a after 7PM news?", "context": "CREATE TABLE table_name_24 (time VARCHAR, news_freq VARCHAR, local_networked VARCHAR, ad_freq VARCHAR)"}, {"answer": "SELECT time FROM table_name_84 WHERE news_freq = \"1 hour\" AND show_name = \"best mix overnight\"", "question": "Which time has a news frequency of 1 hour and show name of Best Mix Overnight?", "context": "CREATE TABLE table_name_84 (time VARCHAR, news_freq VARCHAR, show_name VARCHAR)"}, {"answer": "SELECT ad_freq FROM table_name_58 WHERE show_name = \"health matters\"", "question": "What is the ad frequency for the show named Health Matters?", "context": "CREATE TABLE table_name_58 (ad_freq VARCHAR, show_name VARCHAR)"}, {"answer": "SELECT news_freq FROM table_name_73 WHERE show_name = \"locker room\"", "question": "What is the news frequency for the show Locker Room?", "context": "CREATE TABLE table_name_73 (news_freq VARCHAR, show_name VARCHAR)"}, {"answer": "SELECT local_networked FROM table_name_38 WHERE ad_freq = \"n/a\"", "question": "What is the local/networked value for the show with an ad frequency of N/A?", "context": "CREATE TABLE table_name_38 (local_networked VARCHAR, ad_freq VARCHAR)"}, {"answer": "SELECT time FROM table_name_94 WHERE rank > 2 AND country = \"france\"", "question": "When france had a rank larger than 2, what was their time?", "context": "CREATE TABLE table_name_94 (time VARCHAR, rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT time FROM table_name_13 WHERE country = \"kazakhstan\"", "question": "What was the time for the country of kazakhstan?", "context": "CREATE TABLE table_name_13 (time VARCHAR, country VARCHAR)"}, {"answer": "SELECT athletes FROM table_name_82 WHERE country = \"germany\"", "question": "What athletes represented the country of germany?", "context": "CREATE TABLE table_name_82 (athletes VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_38 WHERE time = \"1:42.054\"", "question": "What was the rank for the finish time of 1:42.054?", "context": "CREATE TABLE table_name_38 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT country FROM table_name_81 WHERE rank < 7 AND time = \"1:43.189\"", "question": "Which country had a rank smaller than 7 and a time of 1:43.189?", "context": "CREATE TABLE table_name_81 (country VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT club FROM table_name_35 WHERE runners_up = 1 AND last_final_won = \"1999\"", "question": "what is the club when the runners-up is 1 and the last final won is 1999?", "context": "CREATE TABLE table_name_35 (club VARCHAR, runners_up VARCHAR, last_final_won VARCHAR)"}, {"answer": "SELECT last_final_won FROM table_name_13 WHERE runners_up = 1 AND club = \"rijeka\"", "question": "what is the last final won when runners-up is 1 and club is rijeka?", "context": "CREATE TABLE table_name_13 (last_final_won VARCHAR, runners_up VARCHAR, club VARCHAR)"}, {"answer": "SELECT COUNT(winners) FROM table_name_11 WHERE runners_up < 0", "question": "How many times is runners-up less than 0?", "context": "CREATE TABLE table_name_11 (winners VARCHAR, runners_up INTEGER)"}, {"answer": "SELECT COUNT(game) FROM table_name_29 WHERE result = \"4\u20130\" AND attendance > 12 OFFSET 256", "question": "How many games have a Result of 4\u20130, and an Attendance larger than 12,256?", "context": "CREATE TABLE table_name_29 (game VARCHAR, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_22 WHERE venue = \"away\" AND game < 43 AND opponent = \"bournemouth\"", "question": "Which Result has a Venue of away, and a Game smaller than 43, and an Opponent of bournemouth?", "context": "CREATE TABLE table_name_22 (result VARCHAR, opponent VARCHAR, venue VARCHAR, game VARCHAR)"}, {"answer": "SELECT result FROM table_name_54 WHERE venue = \"home\" AND date = \"3 october 1987\"", "question": "Which Result has a Venue of home, and a Date of 3 october 1987?", "context": "CREATE TABLE table_name_54 (result VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE year = \"1993\"", "question": "What is the score of 1993?", "context": "CREATE TABLE table_name_91 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT name FROM table_name_77 WHERE runner_up = \"sania mirza elena vesnina\"", "question": "What is the Name when the runner-up was Sania Mirza Elena Vesnina?", "context": "CREATE TABLE table_name_77 (name VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT name FROM table_name_97 WHERE score = \"6\u20133, 6\u20133\"", "question": "What is the name with a Score of 6\u20133, 6\u20133?", "context": "CREATE TABLE table_name_97 (name VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_name_50 WHERE year = \"2009\"", "question": "What was the location in 2009?", "context": "CREATE TABLE table_name_50 (location VARCHAR, year VARCHAR)"}, {"answer": "SELECT railway_number_s_ FROM table_name_28 WHERE class = \"d(rebuild)\"", "question": "What's the railway number of a D(rebuild) class?", "context": "CREATE TABLE table_name_28 (railway_number_s_ VARCHAR, class VARCHAR)"}, {"answer": "SELECT MIN(quantity_rebuilt) FROM table_name_50 WHERE class = \"t2a\"", "question": "What the least quantity having a T2A class?", "context": "CREATE TABLE table_name_50 (quantity_rebuilt INTEGER, class VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_15 WHERE react = 0.185 AND time < 20.9", "question": "Which lane did the swimmer who had a Reaction time of 0.185 and a time of 20.9 swim in?", "context": "CREATE TABLE table_name_15 (lane INTEGER, react VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_15 WHERE nationality = \"slovenia\" AND lane < 9", "question": "What was the 200-metre time for the swimmer from Slovenia in lane 9?", "context": "CREATE TABLE table_name_15 (time VARCHAR, nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_49 WHERE time < 21.2 AND lane < 7 AND nationality = \"dominica\"", "question": "Who was the swimmer from Dominica who had a time of 21.2 and swam in lane 7?", "context": "CREATE TABLE table_name_49 (athlete VARCHAR, nationality VARCHAR, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT player FROM table_name_35 WHERE pick > 53 AND position = \"defensive tackle\"", "question": "What player had a pick higher than 53, and a position of defensive tackle?", "context": "CREATE TABLE table_name_35 (player VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT team FROM table_name_95 WHERE player = \"jim garcia category:articles with hcards\"", "question": "What team is Jim Garcia category:Articles with Hcards on?", "context": "CREATE TABLE table_name_95 (team VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick FROM table_name_90 WHERE college = \"purdue\"", "question": "Who is the pick from the Purdue College?", "context": "CREATE TABLE table_name_90 (pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT marcin_do\u0142\u0119ga___pol__ FROM table_name_76 WHERE world_record = \"olympic record\" AND snatch = \"total\"", "question": "What shows for Marcin Do\u0142\u0119ga ( POL )when the world record shows olympic record, and a Snatch of total?", "context": "CREATE TABLE table_name_76 (marcin_do\u0142\u0119ga___pol__ VARCHAR, world_record VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT snatch FROM table_name_1 WHERE marcin_do\u0142\u0119ga___pol__ = \"430kg\"", "question": "What is the snatch when Marcin Do\u0142\u0119ga ( POL ) was 430kg?", "context": "CREATE TABLE table_name_1 (snatch VARCHAR, marcin_do\u0142\u0119ga___pol__ VARCHAR)"}, {"answer": "SELECT w\u0142adys\u0142awowo_, _poland FROM table_name_85 WHERE world_record = \"clean & jerk\"", "question": "What shows for W\u0142adys\u0142awowo, Poland when the world record was clean & jerk?", "context": "CREATE TABLE table_name_85 (w\u0142adys\u0142awowo_ VARCHAR, _poland VARCHAR, world_record VARCHAR)"}, {"answer": "SELECT w\u0142adys\u0142awowo_, _poland FROM table_name_83 WHERE world_record = \"olympic record\" AND marcin_do\u0142\u0119ga___pol__ = \"olympic standard\" AND snatch = \"clean & jerk\"", "question": "What shows for W\u0142adys\u0142awowo, Poland when the world record shows olympic record, a Marcin Do\u0142\u0119ga (POL) is olympic standard, and Snatch is clean & jerk?", "context": "CREATE TABLE table_name_83 (w\u0142adys\u0142awowo_ VARCHAR, _poland VARCHAR, snatch VARCHAR, world_record VARCHAR, marcin_do\u0142\u0119ga___pol__ VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE catalog = \"0-6700-30838-2-9\"", "question": "What date has 0-6700-30838-2-9 for a catalog?", "context": "CREATE TABLE table_name_88 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE catalog = \"reveal50cd/lp\" AND region = \"united kingdom\"", "question": "What's the date in the United Kingdom having a catalog of reveal50cd/lp?", "context": "CREATE TABLE table_name_3 (date VARCHAR, catalog VARCHAR, region VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE competition = \"king's cup 1996\"", "question": "What day was king's cup 1996?", "context": "CREATE TABLE table_name_49 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE competition = \"king's cup 1996\"", "question": "What was the score for king's cup 1996?", "context": "CREATE TABLE table_name_50 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_61 WHERE score = \"5-1\"", "question": "What was the result when the score was 5-1?", "context": "CREATE TABLE table_name_61 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_4 WHERE 2012 = \"a\" AND 2010 = \"q2\"", "question": "What tournament had an A in 2012 and Q2 in 2010?", "context": "CREATE TABLE table_name_4 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_10 WHERE 2009 = \"q2\"", "question": "What's the 2010 when they had a Q2 in 2009?", "context": "CREATE TABLE table_name_10 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_83 WHERE 2008 = \"q3\" AND tournament = \"wimbledon\"", "question": "What's the 2012 during Wimbledon and had a Q3 in 2008?", "context": "CREATE TABLE table_name_83 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_74 WHERE 2012 = \"a\" AND 2011 = \"a\"", "question": "What's the tournament name when they had an A in 2011 & 2012?", "context": "CREATE TABLE table_name_74 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_22 WHERE 2009 = \"205\"", "question": "What's the 2012 when 2009 was 205?", "context": "CREATE TABLE table_name_22 (Id VARCHAR)"}, {"answer": "SELECT COUNT(col__m_) FROM table_name_15 WHERE prominence__m_ = 2 OFFSET 344", "question": "How much Col (m) has a Prominence (m) of 2,344?", "context": "CREATE TABLE table_name_15 (col__m_ VARCHAR, prominence__m_ VARCHAR)"}, {"answer": "SELECT AVG(prominence__m_) FROM table_name_21 WHERE col__m_ = 350", "question": "Which Prominence (m) has a Col (m) of 350?", "context": "CREATE TABLE table_name_21 (prominence__m_ INTEGER, col__m_ VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_87 WHERE country = \"lithuania\"", "question": "Who was the athlete from Lithuania?", "context": "CREATE TABLE table_name_87 (athlete VARCHAR, country VARCHAR)"}, {"answer": "SELECT votes FROM table_name_90 WHERE opponent = \"jeannemarie devolites davis\" AND year = \"1995-special\"", "question": "How many votes did Jeannemarie Devolites Davis get in 1995-Special?", "context": "CREATE TABLE table_name_90 (votes VARCHAR, opponent VARCHAR, year VARCHAR)"}, {"answer": "SELECT subject FROM table_name_35 WHERE year = \"2007\"", "question": "Who was the subject for the year of 2007?", "context": "CREATE TABLE table_name_35 (subject VARCHAR, year VARCHAR)"}, {"answer": "SELECT party FROM table_name_51 WHERE votes > 4 OFFSET 478", "question": "Which party has a voting total greater than 4,478?", "context": "CREATE TABLE table_name_51 (party VARCHAR, votes INTEGER)"}, {"answer": "SELECT type FROM table_name_58 WHERE nat = \"geo\"", "question": "Which Type has a Nat of geo?", "context": "CREATE TABLE table_name_58 (type VARCHAR, nat VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_26 WHERE nat = \"ned\"", "question": "Which Moving from has a Nat of ned?", "context": "CREATE TABLE table_name_26 (moving_from VARCHAR, nat VARCHAR)"}, {"answer": "SELECT MAX(ends) FROM table_name_41 WHERE name = \"zambrano\"", "question": "Which Ends have a Name of zambrano?", "context": "CREATE TABLE table_name_41 (ends INTEGER, name VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_10 WHERE moving_from = \"youth system\" AND nat = \"mar\"", "question": "Which Transfer fee has a Moving from of youth system, and a Nat of mar?", "context": "CREATE TABLE table_name_10 (transfer_fee VARCHAR, moving_from VARCHAR, nat VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_27 WHERE ends > 2011 AND moving_from = \"psv\"", "question": "Which Transfer fee has Ends larger than 2011, and a Moving from of psv?", "context": "CREATE TABLE table_name_27 (transfer_fee VARCHAR, ends VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT result FROM table_name_60 WHERE horse = \"toscane\" AND event = \"freestyle test\"", "question": "What is the result for the Toscane Horse in the freestyle test?", "context": "CREATE TABLE table_name_60 (result VARCHAR, horse VARCHAR, event VARCHAR)"}, {"answer": "SELECT horse FROM table_name_69 WHERE result = \"66.452\"", "question": "What horse has a 66.452 result?", "context": "CREATE TABLE table_name_69 (horse VARCHAR, result VARCHAR)"}, {"answer": "SELECT event FROM table_name_57 WHERE athlete = \"sjerstin vermeulen\" AND result = \"66.452\"", "question": "What event did Sjerstin Vermeulen receive a 66.452 result?", "context": "CREATE TABLE table_name_57 (event VARCHAR, athlete VARCHAR, result VARCHAR)"}, {"answer": "SELECT class FROM table_name_66 WHERE event = \"championship test\" AND result = \"62.516\"", "question": "What class had a Championship Test event with a 62.516 result?", "context": "CREATE TABLE table_name_66 (class VARCHAR, event VARCHAR, result VARCHAR)"}, {"answer": "SELECT horse FROM table_name_18 WHERE result = \"65.863\"", "question": "What horse has a 65.863 result?", "context": "CREATE TABLE table_name_18 (horse VARCHAR, result VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_88 WHERE model = \"1400\"", "question": "What is the displacement for the model 1400?", "context": "CREATE TABLE table_name_88 (displacement VARCHAR, model VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_20 WHERE fuel_system = \"carburettor\" AND power = \"ps (kw; hp)\" AND model = \"2000\"", "question": "What is the displacement when the fuel system is carburettor, and a power of ps (kw; hp), and also has a model of 2000?", "context": "CREATE TABLE table_name_20 (displacement VARCHAR, model VARCHAR, fuel_system VARCHAR, power VARCHAR)"}, {"answer": "SELECT engine FROM table_name_29 WHERE model = \"1600\" AND years = \"1975-84\"", "question": "What engine with the years of 1975-84 has a model of 1600?", "context": "CREATE TABLE table_name_29 (engine VARCHAR, model VARCHAR, years VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_78 WHERE model = \"2000\"", "question": "What displacement has a model of 2000?", "context": "CREATE TABLE table_name_78 (displacement VARCHAR, model VARCHAR)"}, {"answer": "SELECT engine FROM table_name_9 WHERE years = \"1975-84\" AND displacement = \"1585cc\"", "question": "What engine with years of 1975-84 has a displacement of 1585cc?", "context": "CREATE TABLE table_name_9 (engine VARCHAR, years VARCHAR, displacement VARCHAR)"}, {"answer": "SELECT power FROM table_name_40 WHERE years = \"1975-84\"", "question": "What is the power for the years 1975-84?", "context": "CREATE TABLE table_name_40 (power VARCHAR, years VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_92 WHERE team_2 = \"teram\"", "question": "What is the 2nd leg in match with team 2 of Teram?", "context": "CREATE TABLE table_name_92 (team_2 VARCHAR)"}, {"answer": "SELECT result FROM table_name_66 WHERE date = \"december 15, 2002\"", "question": "What was the result of the December 15, 2002 game?", "context": "CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE attendance = \"69,024\"", "question": "What date was the game that was attended by 69,024?", "context": "CREATE TABLE table_name_52 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE week = 17", "question": "On what date was the week 17 game?", "context": "CREATE TABLE table_name_37 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT model FROM table_name_85 WHERE seats = 29 AND built = \"1941\u20131942\"", "question": "What is the Model of the Engine with 29 Seats Built in 1941\u20131942?", "context": "CREATE TABLE table_name_85 (model VARCHAR, seats VARCHAR, built VARCHAR)"}, {"answer": "SELECT quantity FROM table_name_65 WHERE model = \"pg-2901\"", "question": "What is the Quantity of the engine Model PG-2901?", "context": "CREATE TABLE table_name_65 (quantity VARCHAR, model VARCHAR)"}, {"answer": "SELECT reason_of_departure FROM table_name_69 WHERE date_outgoing = \"august 1, 2008\"", "question": "Why did the manager who departed on August 1, 2008 leave?", "context": "CREATE TABLE table_name_69 (reason_of_departure VARCHAR, date_outgoing VARCHAR)"}, {"answer": "SELECT date_of_replacement FROM table_name_54 WHERE reason_of_departure = \"sacked\" AND team = \"psis semarang\"", "question": "On what date did the manager for PSIS Semarang take over for the manager that was sacked?", "context": "CREATE TABLE table_name_54 (date_of_replacement VARCHAR, reason_of_departure VARCHAR, team VARCHAR)"}, {"answer": "SELECT reason_of_departure FROM table_name_84 WHERE date_outgoing = \"august 1, 2008\"", "question": "Why did the manager who departed on August 1, 2008 leave?", "context": "CREATE TABLE table_name_84 (reason_of_departure VARCHAR, date_outgoing VARCHAR)"}, {"answer": "SELECT date_outgoing FROM table_name_12 WHERE outgoing_manager = \"peter butler\"", "question": "When did Peter Butler leave his team?", "context": "CREATE TABLE table_name_12 (date_outgoing VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT date_of_replacement FROM table_name_98 WHERE date_outgoing = \"august 20, 2008\"", "question": "When did the manager take over for the manager that left on August 20, 2008?", "context": "CREATE TABLE table_name_98 (date_of_replacement VARCHAR, date_outgoing VARCHAR)"}, {"answer": "SELECT competition FROM table_name_99 WHERE notes = \"1.90 m\"", "question": "In which competition(s) did Ilju\u0161t\u0161enko jump 1.90 m?", "context": "CREATE TABLE table_name_99 (competition VARCHAR, notes VARCHAR)"}, {"answer": "SELECT position FROM table_name_48 WHERE year < 2008 AND competition = \"european championships\"", "question": "In which position did Ilju\u0161t\u0161enko finish in the European Championships held prior to 2008?", "context": "CREATE TABLE table_name_48 (position VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT year FROM table_name_70 WHERE venue = \"barcelona, spain\"", "question": "In what year did Ilju\u0161t\u0161enko compete in Barcelona, Spain?", "context": "CREATE TABLE table_name_70 (year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(number_of_electorates__2009_) FROM table_name_56 WHERE constituency_number = \"56\"", "question": "What's the number of electorates for constituency number 56?", "context": "CREATE TABLE table_name_56 (number_of_electorates__2009_ INTEGER, constituency_number VARCHAR)"}, {"answer": "SELECT tour_apps FROM table_name_57 WHERE career_caps = 15", "question": "What is the tour Apps when the career caps show 15?", "context": "CREATE TABLE table_name_57 (tour_apps VARCHAR, career_caps VARCHAR)"}, {"answer": "SELECT COUNT(career_caps) FROM table_name_78 WHERE position = \"full back\" AND tour_apps < 29", "question": "What is the number of career caps for a full back, when tour Apps is smaller than 29?", "context": "CREATE TABLE table_name_78 (career_caps VARCHAR, position VARCHAR, tour_apps VARCHAR)"}, {"answer": "SELECT career_caps FROM table_name_73 WHERE position = \"half-back\" AND tests > 3", "question": "What is the career caps for half-back, when tests is more than 3?", "context": "CREATE TABLE table_name_73 (career_caps VARCHAR, position VARCHAR, tests VARCHAR)"}, {"answer": "SELECT name FROM table_name_22 WHERE tour_apps > 7 AND tests > 4 AND career_caps = 20", "question": "What name has tour Apps larger than 7, tests larger than 4, and a Career caps of 20?", "context": "CREATE TABLE table_name_22 (name VARCHAR, career_caps VARCHAR, tour_apps VARCHAR, tests VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_64 WHERE grid < 21 AND time_retired = \"engine\"", "question": "What constructor has a grid less than 21, and time/retired of engine?", "context": "CREATE TABLE table_name_64 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_11 WHERE entrant = \"fred saunders\"", "question": "When the entrant is fred saunders what is the driver?", "context": "CREATE TABLE table_name_11 (driver VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_47 WHERE entrant = \"fred saunders\"", "question": "What's the lowest grid with and entrant of fred saunders?", "context": "CREATE TABLE table_name_47 (grid INTEGER, entrant VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_55 WHERE driver = \"emerson fittipaldi\"", "question": "What is the time/retired for the driver emerson fittipaldi?", "context": "CREATE TABLE table_name_55 (time_retired VARCHAR, driver VARCHAR)"}, {"answer": "SELECT artist FROM table_name_86 WHERE label = \"columbia\" AND standard_number = \"cocc-72073\"", "question": "Which Artist has the Label of Columbia and the Standard number of COCC-72073?", "context": "CREATE TABLE table_name_86 (artist VARCHAR, label VARCHAR, standard_number VARCHAR)"}, {"answer": "SELECT type FROM table_name_42 WHERE artist = \"hiroyuki takami\"", "question": "What Type has the Artist of Hiroyuki Takami?", "context": "CREATE TABLE table_name_42 (type VARCHAR, artist VARCHAR)"}, {"answer": "SELECT title FROM table_name_27 WHERE label = \"columbia\" AND standard_number = \"codc-8760\"", "question": "What Title has the Label of Columbia and Standard number of CODC-8760?", "context": "CREATE TABLE table_name_27 (title VARCHAR, label VARCHAR, standard_number VARCHAR)"}, {"answer": "SELECT type FROM table_name_71 WHERE name__wade_giles_ = \"kuang-hsing\"", "question": "What is the type of Kuang-Hsing?", "context": "CREATE TABLE table_name_71 (type VARCHAR, name__wade_giles_ VARCHAR)"}, {"answer": "SELECT type FROM table_name_25 WHERE characters = \"\u5ee3\u4e19\"", "question": "What type has the characters \u5ee3\u4e19?", "context": "CREATE TABLE table_name_25 (type VARCHAR, characters VARCHAR)"}, {"answer": "SELECT name__wade_giles_ FROM table_name_87 WHERE characters = \"\u5ee3\u4ea8\"", "question": "What's the name that has the characters \u5ee3\u4ea8?", "context": "CREATE TABLE table_name_87 (name__wade_giles_ VARCHAR, characters VARCHAR)"}, {"answer": "SELECT type FROM table_name_48 WHERE characters = \"\u5ee3\u5229\"", "question": "What type has the characters \u5ee3\u5229?", "context": "CREATE TABLE table_name_48 (type VARCHAR, characters VARCHAR)"}, {"answer": "SELECT type FROM table_name_50 WHERE name__pinyin_ = \"guangjia\"", "question": "What is the type of Guangjia?", "context": "CREATE TABLE table_name_50 (type VARCHAR, name__pinyin_ VARCHAR)"}, {"answer": "SELECT soap_opera FROM table_name_81 WHERE rank > 1 AND character = \"emily bishop\"", "question": "What soap opera has a rank larger than 1, and a Character named Emily Bishop?", "context": "CREATE TABLE table_name_81 (soap_opera VARCHAR, rank VARCHAR, character VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_81 WHERE years = \"1960\u2014\"", "question": "What is the highest Rank 1960\u2014?", "context": "CREATE TABLE table_name_81 (rank INTEGER, years VARCHAR)"}, {"answer": "SELECT actor FROM table_name_84 WHERE duration = \"61 years\"", "question": "What is the name of the actor with a duration of 61 years?", "context": "CREATE TABLE table_name_84 (actor VARCHAR, duration VARCHAR)"}, {"answer": "SELECT years FROM table_name_4 WHERE duration = \"52 years\" AND actor = \"eileen derbyshire\"", "question": "What are the years for Eileen Derbyshire with a duration of 52 years?", "context": "CREATE TABLE table_name_4 (years VARCHAR, duration VARCHAR, actor VARCHAR)"}, {"answer": "SELECT soap_opera FROM table_name_33 WHERE years = \"1960\u20131965, 1965\u20131983, 1984\u20132010\"", "question": "What soap opera was on 1960\u20131965, 1965\u20131983, 1984\u20132010?", "context": "CREATE TABLE table_name_33 (soap_opera VARCHAR, years VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_54 WHERE country = \"australia\"", "question": "Who are the rowers for Australia?", "context": "CREATE TABLE table_name_54 (rowers VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_36 WHERE country = \"italy\"", "question": "What's Italy's rank?", "context": "CREATE TABLE table_name_36 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_89 WHERE home = \"link\u00f6pings hc\" AND round > 20 AND date = \"saturday, november 22\"", "question": "Who is the visitor team on Saturday, November 22 when link\u00f6pings hc was the home team and there were more than 20 rounds?", "context": "CREATE TABLE table_name_89 (visitor VARCHAR, date VARCHAR, home VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_30 WHERE home = \"link\u00f6pings hc\" AND date = \"monday, november 10\" AND round > 18", "question": "What is the lowest attendance on Monday, November 10 when link\u00f6pings hc was the home team and there were more than 18 rounds?", "context": "CREATE TABLE table_name_30 (attendance INTEGER, round VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_6 WHERE venue = \"axa sports center\" AND round = 20", "question": "Who is the visitor at the axa sports center in round 20?", "context": "CREATE TABLE table_name_6 (visitor VARCHAR, venue VARCHAR, round VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_7 WHERE date = \"november 6, 1966\"", "question": "What is the Attendance of the game on November 6, 1966?", "context": "CREATE TABLE table_name_7 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_78 WHERE date = \"november 6, 1966\"", "question": "What is the Result of the game on November 6, 1966?", "context": "CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT club FROM table_name_91 WHERE time = \"4:03.63\"", "question": "Who is the club with a 4:03.63 time?", "context": "CREATE TABLE table_name_91 (club VARCHAR, time VARCHAR)"}, {"answer": "SELECT green_communist FROM table_name_59 WHERE socialist = \"41.0%\"", "question": "What was the Green-Communist percentage in the poll in which the Socialist Party earned 41.0%?", "context": "CREATE TABLE table_name_59 (green_communist VARCHAR, socialist VARCHAR)"}, {"answer": "SELECT green_communist FROM table_name_1 WHERE lead = \"9.7%\"", "question": "What is the Green-Communist percentage in the poll showing a 9.7% lead?", "context": "CREATE TABLE table_name_1 (green_communist VARCHAR, lead VARCHAR)"}, {"answer": "SELECT result FROM table_name_87 WHERE date = \"9 october 2012\"", "question": "what is the result on 9 october 2012?", "context": "CREATE TABLE table_name_87 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE venue = \"stade g\u00e9n\u00e9ral seyni kountch\u00e9, niamey\" AND competition = \"friendly\" AND date = \"9 october 2012\"", "question": "what is the score when the venue is stade g\u00e9n\u00e9ral seyni kountch\u00e9, niamey, the competition is friendly and the date is 9 october 2012?", "context": "CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR, venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_54 WHERE venue = \"stade g\u00e9n\u00e9ral seyni kountch\u00e9, niamey\" AND competition = \"friendly\" AND date = \"9 october 2012\"", "question": "what is the result when the venue is stade g\u00e9n\u00e9ral seyni kountch\u00e9, niamey, the competition is friendly and the date is 9 october 2012?", "context": "CREATE TABLE table_name_54 (result VARCHAR, date VARCHAR, venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_75 WHERE date = \"10 august 2011\"", "question": "what is the competition on 10 august 2011?", "context": "CREATE TABLE table_name_75 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE venue = \"stade g\u00e9n\u00e9ral seyni kountch\u00e9 , niamey\"", "question": "what is the date when the venue is stade g\u00e9n\u00e9ral seyni kountch\u00e9 , niamey?", "context": "CREATE TABLE table_name_10 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT place FROM table_name_7 WHERE athlete = \"manfred kokot\"", "question": "What place has manfred kokot as the athlete?", "context": "CREATE TABLE table_name_7 (place VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_73 WHERE place = \"reno\"", "question": "What athlete has reno as the place?", "context": "CREATE TABLE table_name_73 (athlete VARCHAR, place VARCHAR)"}, {"answer": "SELECT campus FROM table_name_12 WHERE year_opened = \"1970\"", "question": "What campus opened in 1970?", "context": "CREATE TABLE table_name_12 (campus VARCHAR, year_opened VARCHAR)"}, {"answer": "SELECT year_opened FROM table_name_76 WHERE students = \"na\" AND size = \"10 acres\"", "question": "What year was the school opened that has a size of 10 acres and students of na?", "context": "CREATE TABLE table_name_76 (year_opened VARCHAR, students VARCHAR, size VARCHAR)"}, {"answer": "SELECT location FROM table_name_86 WHERE size = \"245 acres\"", "question": "What location was the campus that has a size of 245 acres?", "context": "CREATE TABLE table_name_86 (location VARCHAR, size VARCHAR)"}, {"answer": "SELECT campus FROM table_name_79 WHERE year_opened = \"1977\"", "question": "What campus was opened in 1977?", "context": "CREATE TABLE table_name_79 (campus VARCHAR, year_opened VARCHAR)"}, {"answer": "SELECT location FROM table_name_57 WHERE students = \"na\" AND year_opened = \"2005\"", "question": "What location was the campus opened in 2005 with students listed as na?", "context": "CREATE TABLE table_name_57 (location VARCHAR, students VARCHAR, year_opened VARCHAR)"}, {"answer": "SELECT type FROM table_name_14 WHERE rank < 70 AND province = \"british columbia\" AND capacity___mw__ > 2 OFFSET 480", "question": "what is the type when the rank is smaller than 70, the province is british columbia and the capacity (mw) is more than 2,480?", "context": "CREATE TABLE table_name_14 (type VARCHAR, capacity___mw__ VARCHAR, rank VARCHAR, province VARCHAR)"}, {"answer": "SELECT MIN(capacity___mw__) FROM table_name_99 WHERE rank < 46 AND province = \"newfoundland and labrador\"", "question": "what is the least capacity (mw) when the rank is less than 46 and the province is newfoundland and labrador?", "context": "CREATE TABLE table_name_99 (capacity___mw__ INTEGER, rank VARCHAR, province VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_67 WHERE type = \"hydro\" AND name = \"grand rapids generating station\" AND capacity___mw__ > 479", "question": "what is the lowest rank when the type is hydro, the name is grand rapids generating station and the capacity (mw) is more than 479?", "context": "CREATE TABLE table_name_67 (rank INTEGER, capacity___mw__ VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT province FROM table_name_42 WHERE rank > 24 AND name = \"laforge-2\"", "question": "what is the province when the rank is higher than 24 and the name is laforge-2?", "context": "CREATE TABLE table_name_42 (province VARCHAR, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_15 WHERE type = \"hydro\" AND capacity___mw__ < 478 AND rank > 85 AND province = \"quebec\"", "question": "what is the name when the type is hydro, the capacity (mw) is less than 478, the rank is more than 85 and the province is quebec?", "context": "CREATE TABLE table_name_15 (name VARCHAR, province VARCHAR, rank VARCHAR, type VARCHAR, capacity___mw__ VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_60 WHERE team = \"toyota team tom's\" AND laps > 64", "question": "How many years have toyota team tom's as the team, with Laps greater than 64?", "context": "CREATE TABLE table_name_60 (year VARCHAR, team VARCHAR, laps VARCHAR)"}, {"answer": "SELECT round FROM table_name_91 WHERE date = \"11/11/1992\"", "question": "What round was on 11/11/1992?", "context": "CREATE TABLE table_name_91 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_82 WHERE date = \"08/12/1992\"", "question": "What is the total against on 08/12/1992?", "context": "CREATE TABLE table_name_82 (against INTEGER, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_6 WHERE date = \"24/11/1992\"", "question": "What is the venue of 24/11/1992?", "context": "CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT round FROM table_name_37 WHERE against < 1", "question": "What round has less than 1 against?", "context": "CREATE TABLE table_name_37 (round VARCHAR, against INTEGER)"}, {"answer": "SELECT COUNT(gold) FROM table_name_64 WHERE nation = \"germany (ger)\" AND rank < 15", "question": "How many gold medals for germany (GER) having a rank less than 15?", "context": "CREATE TABLE table_name_64 (gold VARCHAR, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_89 WHERE rank > 5 AND bronze > 2", "question": "How many silver medals when the bronze is more than 2 and having a rank more than 5?", "context": "CREATE TABLE table_name_89 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_86 WHERE bronze < 0", "question": "What's the average number of silver medals when bronze is less than 0?", "context": "CREATE TABLE table_name_86 (silver INTEGER, bronze INTEGER)"}, {"answer": "SELECT AVG(silver) FROM table_name_44 WHERE nation = \"germany (ger)\" AND bronze > 3", "question": "What's the average number of silver medals for germany (GER) having more than 3 bronze?", "context": "CREATE TABLE table_name_44 (silver INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT notes FROM table_name_85 WHERE time = \"6:31.16\"", "question": "What are the notes for 6:31.16?", "context": "CREATE TABLE table_name_85 (notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_64 WHERE time = \"6:29.56\"", "question": "What rowers have a 6:29.56 time?", "context": "CREATE TABLE table_name_64 (rowers VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_43 WHERE notes = \"fb\" AND country = \"canada\"", "question": "What is the time with FB notes for Canada?", "context": "CREATE TABLE table_name_43 (time VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_38 WHERE time = \"6:49.28\"", "question": "What country has a time of 6:49.28?", "context": "CREATE TABLE table_name_38 (country VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(tries_for) FROM table_name_69 WHERE points_against > 87 AND tries_against < 28 AND points_diff = \"+63\"", "question": "Which Tries for has Points against larger than 87, and Tries against smaller than 28, and Points diff of +63?", "context": "CREATE TABLE table_name_69 (tries_for INTEGER, points_diff VARCHAR, points_against VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT MIN(points_for) FROM table_name_38 WHERE points_against < 93 AND tries_for > 25", "question": "Which Points for has Points against smaller than 93, and Tries for larger than 25?", "context": "CREATE TABLE table_name_38 (points_for INTEGER, points_against VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT MAX(tries_for) FROM table_name_12 WHERE points_against < 124 AND points_for < 241 AND tries_against < 11", "question": "Which Tries for has Points against smaller than 124, and Points for smaller than 241, and Tries against smaller than 11?", "context": "CREATE TABLE table_name_12 (tries_for INTEGER, tries_against VARCHAR, points_against VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT COUNT(tries_against) FROM table_name_48 WHERE team = \"dinamo bucure\u015fti\" AND tries_for < 19", "question": "How many Tries against have a Team of dinamo bucure\u015fti, and Tries for smaller than 19?", "context": "CREATE TABLE table_name_48 (tries_against VARCHAR, team VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_59 WHERE attendance = 48 OFFSET 667", "question": "What week had attendance of 48,667?", "context": "CREATE TABLE table_name_59 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT song FROM table_name_72 WHERE draw < 4 AND percentage = \"32.22%\"", "question": "What Song has a Draw of less than 4 with a Percentage of 32.22%?", "context": "CREATE TABLE table_name_72 (song VARCHAR, draw VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT artist FROM table_name_50 WHERE place < 3 AND percentage = \"38.60%\"", "question": "What Artist has a Place of 3 or less with a Percentage of 38.60%?", "context": "CREATE TABLE table_name_50 (artist VARCHAR, place VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT AVG(place) FROM table_name_54 WHERE artist = \"monika kirovska\" AND draw < 1", "question": "What is the Place of Draw 1 by Artist Monika Kirovska?", "context": "CREATE TABLE table_name_54 (place INTEGER, artist VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MAX(byes) FROM table_name_55 WHERE wins > 11 AND against > 1118 AND hampden_fl = \"terang-mortlake\"", "question": "What were the most byes of Terang-Mortlake when they had more than 11 wins and more than 1118 against?", "context": "CREATE TABLE table_name_55 (byes INTEGER, hampden_fl VARCHAR, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_91 WHERE hampden_fl = \"south warrambool\"", "question": "How many wins did South Warrambool have?", "context": "CREATE TABLE table_name_91 (wins INTEGER, hampden_fl VARCHAR)"}, {"answer": "SELECT AVG(byes) FROM table_name_50 WHERE wins > 16", "question": "How many byes when there are more than 16 wins?", "context": "CREATE TABLE table_name_50 (byes INTEGER, wins INTEGER)"}, {"answer": "SELECT MIN(byes) FROM table_name_3 WHERE against = 1946 AND wins > 2", "question": "What is the least amount of Byes when there are more than 2 wins and 1946 against?", "context": "CREATE TABLE table_name_3 (byes INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_59 WHERE draws < 1 AND losses > 4", "question": "How many wins when the draws are less than 1 and more than 4 losses?", "context": "CREATE TABLE table_name_59 (wins INTEGER, draws VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(pop__2010_) FROM table_name_25 WHERE geo_id = 3805373380 AND water__sqmi_ < 5.729", "question": "What was the lowest population of the GEO ID 3805373380 and the water square mileage smaller than 5.729?", "context": "CREATE TABLE table_name_25 (pop__2010_ INTEGER, geo_id VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT MIN(geo_id) FROM table_name_29 WHERE longitude = -102.158045 AND water__sqmi_ > 0.979", "question": "What is the lowest GEO ID for the longitude of -102.158045 and the water in square miles larger than 0.979?", "context": "CREATE TABLE table_name_29 (geo_id INTEGER, longitude VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT AVG(ansi_code) FROM table_name_39 WHERE township = \"sherman\" AND water__sqmi_ < 0.005", "question": "What is the average ANSI code for the town of Sherman and the smaller of the water area in square miles than 0.005?", "context": "CREATE TABLE table_name_39 (ansi_code INTEGER, township VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT AVG(longitude) FROM table_name_46 WHERE water__sqmi_ = 0.093 AND geo_id > 3808174460", "question": "What is the average longitude for the water area of 0.093 and has a GEO ID tag larger than 3808174460?", "context": "CREATE TABLE table_name_46 (longitude INTEGER, water__sqmi_ VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT country FROM table_name_86 WHERE author = \"based on sophocles and euripides\"", "question": "Which Country's Author is based on Sophocles and Euripides?", "context": "CREATE TABLE table_name_86 (country VARCHAR, author VARCHAR)"}, {"answer": "SELECT author FROM table_name_93 WHERE company = \"ruth kanner theatre group\"", "question": "Which Author's Company is Ruth Kanner Theatre Group?", "context": "CREATE TABLE table_name_93 (author VARCHAR, company VARCHAR)"}, {"answer": "SELECT play FROM table_name_98 WHERE country = \"cyprus\" AND company = \"magdalena zira theatre\"", "question": "Which Play is from Cyprus, from the Company Magdalena Zira Theatre?", "context": "CREATE TABLE table_name_98 (play VARCHAR, country VARCHAR, company VARCHAR)"}, {"answer": "SELECT country FROM table_name_82 WHERE play = \"electra and orestes, the trial\"", "question": "Which Country is the Play Electra and Orestes, The Trial from?", "context": "CREATE TABLE table_name_82 (country VARCHAR, play VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_66 WHERE lane = 4", "question": "How much total time was in lane 4?", "context": "CREATE TABLE table_name_66 (time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_98 WHERE react > 0.20400000000000001 AND time > 45.56", "question": "Which Rank has a Reaction time larger than 0.20400000000000001, and a Time larger than 45.56?", "context": "CREATE TABLE table_name_98 (rank INTEGER, react VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_3 WHERE lane > 7 AND athlete = \"michael mathieu\" AND react > 0.203", "question": "How many ranks have more than 7 lanes, and an Athlete of michael mathieu, and a Reaction time larger than 0.203?", "context": "CREATE TABLE table_name_3 (rank INTEGER, react VARCHAR, lane VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT SUM(time) FROM table_name_15 WHERE react < 0.20400000000000001 AND rank = 1", "question": "Which Time has a Reaction smaller than 0.20400000000000001, and a Rank of 1?", "context": "CREATE TABLE table_name_15 (time INTEGER, react VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(top_25) FROM table_name_60 WHERE events < 12 AND top_5 > 0", "question": "What's the average Top-25, that has an Events that's smaller than 12, and has a Top-5 that is larger than 0?", "context": "CREATE TABLE table_name_60 (top_25 INTEGER, events VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT AVG(cuts_made) FROM table_name_17 WHERE top_5 = 3 AND top_10 < 5", "question": "What's the listed average of Cuts made that has a Top-5 of 3, and a Top-10 that's smaller than 5?", "context": "CREATE TABLE table_name_17 (cuts_made INTEGER, top_5 VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT COUNT(top_25) FROM table_name_61 WHERE events < 10", "question": "What's the sum of Top-25 that has an Events that is smaller than 10?", "context": "CREATE TABLE table_name_61 (top_25 VARCHAR, events INTEGER)"}, {"answer": "SELECT COUNT(top_10) FROM table_name_87 WHERE events > 16 AND top_5 > 5", "question": "What's the sum of Top-10 that has Events that's larger than 16, and has a Top-5 that's also larger than 5?", "context": "CREATE TABLE table_name_87 (top_10 VARCHAR, events VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT MIN(cuts_made) FROM table_name_50 WHERE tournament = \"pga championship\" AND top_5 < 2", "question": "What is the lowest Cuts made that has a Tournament of PGA Championship, and has a Top-5 that is smaller than 2?", "context": "CREATE TABLE table_name_50 (cuts_made INTEGER, tournament VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT episode FROM table_name_64 WHERE year < 2004 AND nominee_s_ = \"john wells\"", "question": "When the nominee(s) is john wells what is the episode for a year before 2004?", "context": "CREATE TABLE table_name_64 (episode VARCHAR, year VARCHAR, nominee_s_ VARCHAR)"}, {"answer": "SELECT result FROM table_name_57 WHERE nominee_s_ = \"janine sherman\"", "question": "What is the result when the nominee(s) of janine sherman?", "context": "CREATE TABLE table_name_57 (result VARCHAR, nominee_s_ VARCHAR)"}, {"answer": "SELECT result FROM table_name_64 WHERE year > 2003 AND nominee_s_ = \"john wells\"", "question": "What is the result for a year after 2003, when the nominee(s) is john wells?", "context": "CREATE TABLE table_name_64 (result VARCHAR, year VARCHAR, nominee_s_ VARCHAR)"}, {"answer": "SELECT purse FROM table_name_94 WHERE distance = \"1-1/16\" AND year = 2003", "question": "What is the purse in 2003, which had a 1-1/16 distance?", "context": "CREATE TABLE table_name_94 (purse VARCHAR, distance VARCHAR, year VARCHAR)"}, {"answer": "SELECT trainer FROM table_name_5 WHERE winner = \"skylighter\"", "question": "Who is the trainer of the winner skylighter?", "context": "CREATE TABLE table_name_5 (trainer VARCHAR, winner VARCHAR)"}, {"answer": "SELECT distance FROM table_name_85 WHERE time = \"1:46.32\"", "question": "What is the distance with a 1:46.32 time?", "context": "CREATE TABLE table_name_85 (distance VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_81 WHERE time = \"1:42.85\"", "question": "What is the average year with a 1:42.85 time?", "context": "CREATE TABLE table_name_81 (year INTEGER, time VARCHAR)"}, {"answer": "SELECT distance FROM table_name_18 WHERE year = 2006", "question": "What is the distance in 2006?", "context": "CREATE TABLE table_name_18 (distance VARCHAR, year VARCHAR)"}, {"answer": "SELECT director FROM table_name_12 WHERE title = \"clean pastures\"", "question": "Who was the director of Clean Pastures?", "context": "CREATE TABLE table_name_12 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_14 WHERE production_num = \"8181\"", "question": "What was the release date for Production Number 8181?", "context": "CREATE TABLE table_name_14 (release_date VARCHAR, production_num VARCHAR)"}, {"answer": "SELECT series FROM table_name_28 WHERE director = \"frank tashlin\" AND production_num = \"8053\"", "question": "What series was directed by Frank Tashlin and has the production number, 8053?", "context": "CREATE TABLE table_name_28 (series VARCHAR, director VARCHAR, production_num VARCHAR)"}, {"answer": "SELECT series FROM table_name_38 WHERE title = \"egghead rides again\"", "question": "What series was called Egghead Rides Again?", "context": "CREATE TABLE table_name_38 (series VARCHAR, title VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_56 WHERE away_team = \"port vale\"", "question": "What is the Tie no of the Port Vale Away game?", "context": "CREATE TABLE table_name_56 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE home_team = \"halifax town\"", "question": "What is the Score of the Halifax Town Home game?", "context": "CREATE TABLE table_name_30 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE home_team = \"scarborough\"", "question": "What is the Score of the Scarborough Home game?", "context": "CREATE TABLE table_name_72 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT college FROM table_name_8 WHERE team = \"boston patriots\"", "question": "Which college did the player who went to the Boston Patriots go to?", "context": "CREATE TABLE table_name_8 (college VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_20 WHERE college = \"lsu\"", "question": "What was the highest pick number of the player who went to LSU in college?", "context": "CREATE TABLE table_name_20 (pick INTEGER, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_54 WHERE pick = 136", "question": "Which college did the player picked number 136 go to?", "context": "CREATE TABLE table_name_54 (college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT college FROM table_name_95 WHERE pick > 130 AND team = \"new york jets\"", "question": "Which college did the player picked larger than 130 by the New York Jets go to?", "context": "CREATE TABLE table_name_95 (college VARCHAR, pick VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_2 WHERE name = \"emily seebohm\"", "question": "What lane was Emily Seebohm in?", "context": "CREATE TABLE table_name_2 (lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT quantity FROM table_name_50 WHERE railway_number_s_ = \"263\"", "question": "What is the quantity for railway 263?", "context": "CREATE TABLE table_name_50 (quantity VARCHAR, railway_number_s_ VARCHAR)"}, {"answer": "SELECT year_s__of_manufacture FROM table_name_35 WHERE railway_number_s_ = \"26 (ii) \u202663 (ii) , 188\u2013193\"", "question": "What are the year(s) of manufacture for railway number(s) 26 (ii) \u202663 (ii) , 188\u2013193?", "context": "CREATE TABLE table_name_35 (year_s__of_manufacture VARCHAR, railway_number_s_ VARCHAR)"}, {"answer": "SELECT railway_number_s_ FROM table_name_47 WHERE year_s__of_manufacture = \"1905\u20131906\"", "question": "What are the railway number(s) for year(s) of manufacture of 1905\u20131906?", "context": "CREATE TABLE table_name_47 (railway_number_s_ VARCHAR, year_s__of_manufacture VARCHAR)"}, {"answer": "SELECT player FROM table_name_69 WHERE position = \"rb\" AND team = \"oakland\"", "question": "Who is the rb player from team oakland?", "context": "CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_93 WHERE college = \"ohio state\"", "question": "What is the team of the player from ohio state?", "context": "CREATE TABLE table_name_93 (team VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_38 WHERE country = \"uzbekistan\" AND time > 11.44", "question": "What is the highest rank in Uzbekistan with a time larger than 11.44?", "context": "CREATE TABLE table_name_38 (rank INTEGER, country VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(heat) FROM table_name_54 WHERE rank = 30", "question": "What is the average heat ranked at 30?", "context": "CREATE TABLE table_name_54 (heat INTEGER, rank VARCHAR)"}, {"answer": "SELECT AVG(time) FROM table_name_29 WHERE rank = 61", "question": "What is the average time in a rank of 61?", "context": "CREATE TABLE table_name_29 (time INTEGER, rank VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_name_97 WHERE vehicle = \"2003 holden commodore ute\"", "question": "How much Capacity has a Vehicle of 2003 holden commodore ute?", "context": "CREATE TABLE table_name_97 (capacity VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT navigator FROM table_name_37 WHERE total_time = \"08:29\"", "question": "Which Navigator has a Total Time of 08:29?", "context": "CREATE TABLE table_name_37 (navigator VARCHAR, total_time VARCHAR)"}, {"answer": "SELECT MIN(capacity) FROM table_name_61 WHERE class = \"cm22\" AND vehicle = \"1999 subaru impreza wrx sti\"", "question": "Which Capacity has a Class of cm22, and a Vehicle of 1999 subaru impreza wrx sti?", "context": "CREATE TABLE table_name_61 (capacity INTEGER, class VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT driver FROM table_name_21 WHERE capacity < 5700 AND total_time = \"08:29\"", "question": "Which Driver has a Capacity smaller than 5700, and a Total Time of 08:29?", "context": "CREATE TABLE table_name_21 (driver VARCHAR, capacity VARCHAR, total_time VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_43 WHERE byes > 0", "question": "What is the total number of losses for teams with more than 0 byes?", "context": "CREATE TABLE table_name_43 (losses VARCHAR, byes INTEGER)"}, {"answer": "SELECT SUM(draws) FROM table_name_67 WHERE against = 1731 AND losses < 10", "question": "What is the sum of draws for teams with against of 1731 and under 10 losses?", "context": "CREATE TABLE table_name_67 (draws INTEGER, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_35 WHERE director = \"friz freleng\" AND title = \"tree cornered tweety\"", "question": "When was Tree Cornered Tweety, directed by Friz Freleng, released?", "context": "CREATE TABLE table_name_35 (release_date VARCHAR, director VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_68 WHERE title = \"too hop to handle\"", "question": "When was Too Hop to Handle released?", "context": "CREATE TABLE table_name_68 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT series FROM table_name_85 WHERE title = \"barbary coast bunny\"", "question": "From which series is the title Barbary Coast Bunny?", "context": "CREATE TABLE table_name_85 (series VARCHAR, title VARCHAR)"}, {"answer": "SELECT lyrics__l____music__m_ FROM table_name_76 WHERE place = \"23\"", "question": "Who did the Lyrics (l) / Music (m) for the song in 23 Place?", "context": "CREATE TABLE table_name_76 (lyrics__l____music__m_ VARCHAR, place VARCHAR)"}, {"answer": "SELECT votes FROM table_name_11 WHERE artist = \"filipa batista\"", "question": "What are the Votes for the Song by Artist Filipa Batista?", "context": "CREATE TABLE table_name_11 (votes VARCHAR, artist VARCHAR)"}, {"answer": "SELECT votes FROM table_name_6 WHERE place = \"9\"", "question": "What is the Votes for the Song in Place 9?", "context": "CREATE TABLE table_name_6 (votes VARCHAR, place VARCHAR)"}, {"answer": "SELECT artist FROM table_name_28 WHERE place = \"withdrawn\"", "question": "What is the Artist of the Song with a Place of withdrawn?", "context": "CREATE TABLE table_name_28 (artist VARCHAR, place VARCHAR)"}, {"answer": "SELECT week FROM table_name_91 WHERE result = \"l 38-21\"", "question": "Which week had a result of L 38-21?", "context": "CREATE TABLE table_name_91 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_96 WHERE week > 8 AND attendance = \"72,190\"", "question": "Who was the opponent after week 8 that had 72,190 people in attendance?", "context": "CREATE TABLE table_name_96 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT gold FROM table_name_55 WHERE year > 1982 AND place = \"moscow\"", "question": "Who won the Gold Medal in Moscow after the year 1982?", "context": "CREATE TABLE table_name_55 (gold VARCHAR, year VARCHAR, place VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_70 WHERE rank < 8 AND silver > 6 AND bronze = 20", "question": "What is the lowest total that has a rank less than 8, a silver greater than 6, and 20 as the bronze?", "context": "CREATE TABLE table_name_70 (total INTEGER, bronze VARCHAR, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_8 WHERE gold > 3 AND nation = \"soviet union (urs)\" AND bronze > 26", "question": "What is the average silver that has a gold greater than 3, with soviet union (urs) as the nation, and a bronze greater than 26?", "context": "CREATE TABLE table_name_8 (silver INTEGER, bronze VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_82 WHERE total = 57 AND bronze > 20", "question": "What is the highest silver that has 57 as the total, with a bronze greater than 20?", "context": "CREATE TABLE table_name_82 (silver INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT rank FROM table_name_20 WHERE gold > 0 AND bronze = 0 AND nation = \"germany (ger)\"", "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 COUNT(bronze) FROM table_name_31 WHERE total = 1 AND nation = \"spain (esp)\" AND gold > 0", "question": "How many bronzes have 1 as the total, with spain (esp) as the nation, and a gold greater than 0?", "context": "CREATE TABLE table_name_31 (bronze VARCHAR, gold VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(prominence__m_) FROM table_name_37 WHERE peak = \"nakanai mountains high point\" AND elevation__m_ < 2 OFFSET 316", "question": "Which Prominence (m) has a Peak of nakanai mountains high point, and an Elevation (m) smaller than 2,316?", "context": "CREATE TABLE table_name_37 (prominence__m_ INTEGER, peak VARCHAR, elevation__m_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_89 WHERE player = \"jason fitzgerald\"", "question": "What position Jason Fitzgerald played?", "context": "CREATE TABLE table_name_89 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_9 WHERE player = \"jason romano\"", "question": "Jason Romano played for what team?", "context": "CREATE TABLE table_name_9 (team VARCHAR, player VARCHAR)"}, {"answer": "SELECT dimensions FROM table_name_96 WHERE output = \"180w\"", "question": "What are the dimensions of the amp with a 180W output?", "context": "CREATE TABLE table_name_96 (dimensions VARCHAR, output VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_53 WHERE total = 22 AND county = \"fermanagh\"", "question": "Which player was from Fermanagh and had an average score of 22?", "context": "CREATE TABLE table_name_53 (average INTEGER, total VARCHAR, county VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_90 WHERE player = \"oisin mcconville\" AND matches < 5", "question": "How many total points did Oisin McConville have from his 5 matches?", "context": "CREATE TABLE table_name_90 (total VARCHAR, player VARCHAR, matches VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_16 WHERE date = \"october 30, 1977\" AND week > 7", "question": "How many attendances have October 30, 1977 as the date, with a week greater than 7?", "context": "CREATE TABLE table_name_16 (attendance VARCHAR, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_82 WHERE result = \"l 42-35\" AND week < 13", "question": "What is the lowest attendance that has l 42-35 as the result, with a week less than 13?", "context": "CREATE TABLE table_name_82 (attendance INTEGER, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT name FROM table_name_44 WHERE heat < 3 AND nationality = \"south korea\"", "question": "Who is from south korea and has a heat less than 3?", "context": "CREATE TABLE table_name_44 (name VARCHAR, heat VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MAX(heat) FROM table_name_2 WHERE nationality = \"spain\" AND lane < 7", "question": "What is the highest heat of the athlete from spain with a lane less than 7?", "context": "CREATE TABLE table_name_2 (heat INTEGER, nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_78 WHERE nationality = \"japan\" AND time = \"4:37.35\" AND heat < 3", "question": "What is the average lane of the athlete from japan with a time of 4:37.35 and a heat less than 3?", "context": "CREATE TABLE table_name_78 (lane INTEGER, heat VARCHAR, nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_45 WHERE bronze = 4 AND silver > 5", "question": "What is the lowest Gold count if the Bronze is 4 and Silver is greater than 5?", "context": "CREATE TABLE table_name_45 (gold INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_50 WHERE gold > 17", "question": "What is the Average for Silver medals that have more than 17 Golds?", "context": "CREATE TABLE table_name_50 (silver INTEGER, gold INTEGER)"}, {"answer": "SELECT MAX(silver) FROM table_name_38 WHERE total > 14 AND bronze > 15", "question": "What is the highest number of Silver medals with a Total greater than 14 and more than 15 Bronze medals?", "context": "CREATE TABLE table_name_38 (silver INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT music___director FROM table_name_69 WHERE co___singer = \"hemachandra\" AND film = \"khaleja\"", "question": "Who is the music-director for the song from the film khaleja who had a co-singer of hemachandra?", "context": "CREATE TABLE table_name_69 (music___director VARCHAR, co___singer VARCHAR, film VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE att = 354", "question": "What was the score for the matchup having attendance of 354?", "context": "CREATE TABLE table_name_25 (score VARCHAR, att VARCHAR)"}, {"answer": "SELECT nation FROM table_name_79 WHERE total < 10 AND bronze < 1 AND rank = \"11\"", "question": "What nation had a medal total of less than 10, less than 1 bronze medal, in rank 11?", "context": "CREATE TABLE table_name_79 (nation VARCHAR, rank VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT gold FROM table_name_44 WHERE silver = 3 AND total = 10", "question": "How many gold medals did the team that won a total of 10 medals and 3 silver medals win?", "context": "CREATE TABLE table_name_44 (gold VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_41 WHERE bronze > 11", "question": "What is the total number of medals won by teams that won more than 11 bronze medals?", "context": "CREATE TABLE table_name_41 (total VARCHAR, bronze INTEGER)"}, {"answer": "SELECT MIN(react) FROM table_name_53 WHERE country = \"united states\" AND lane < 4", "question": "What is the lowest react of the athlete from the United States who has a lane less than 4?", "context": "CREATE TABLE table_name_53 (react INTEGER, country VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(react) FROM table_name_62 WHERE country = \"sri lanka\" AND lane > 8", "question": "What is the lowest of the athlete from sri lanka who has a lane greater than 8?", "context": "CREATE TABLE table_name_62 (react INTEGER, country VARCHAR, lane VARCHAR)"}, {"answer": "SELECT AVG(react) FROM table_name_4 WHERE athlete = \"muna lee\" AND rank > 3", "question": "What is the average react of athlete muna lee, who is ranked greater than 3?", "context": "CREATE TABLE table_name_4 (react INTEGER, athlete VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_8 WHERE time > 22.57 AND react < 0.245 AND country = \"cuba\"", "question": "What is the average lane of the athlete from cuba who has a time greater than 22.57 and react less than 0.245?", "context": "CREATE TABLE table_name_8 (lane INTEGER, country VARCHAR, time VARCHAR, react VARCHAR)"}, {"answer": "SELECT AVG(react) FROM table_name_11 WHERE time < 22.29 AND rank > 1", "question": "What is the average react of the athlete with a time less than 22.29 and a rank greater than 1?", "context": "CREATE TABLE table_name_11 (react INTEGER, time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_22 WHERE date = \"december 7, 2003\"", "question": "Who is the Opponent on December 7, 2003?", "context": "CREATE TABLE table_name_22 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_40 WHERE attendance = \"73,578\"", "question": "What is the Tv Time of the game with an Attendance of 73,578?", "context": "CREATE TABLE table_name_40 (tv_time VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(result) FROM table_name_7 WHERE name = \"wallace spearmon\" AND reaction_time > 0.167", "question": "What is the highest result for Wallace Spearmon when the reaction time is greater than 0.167?", "context": "CREATE TABLE table_name_7 (result INTEGER, name VARCHAR, reaction_time VARCHAR)"}, {"answer": "SELECT result FROM table_name_12 WHERE lane = 3", "question": "What was the result for Lane 3?", "context": "CREATE TABLE table_name_12 (result VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(result) FROM table_name_66 WHERE reaction_time > 0.185 AND name = \"christian malcolm\" AND lane > 3", "question": "What is the lowest result for Christian Malcolm with a reaction time greater than 0.185 and a lane higher than 3?", "context": "CREATE TABLE table_name_66 (result INTEGER, lane VARCHAR, reaction_time VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(conceded) FROM table_name_71 WHERE draws = 1 AND scored > 14", "question": "What are the lowest conceded with 1 draw, and a score larger than 14?", "context": "CREATE TABLE table_name_71 (conceded INTEGER, draws VARCHAR, scored VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_38 WHERE scored > 13 AND draws > 7", "question": "What are the lowest losses with more than 13 scored, and more than 7 draws?", "context": "CREATE TABLE table_name_38 (losses INTEGER, scored VARCHAR, draws VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_37 WHERE points < 8", "question": "What is the average played for less than 8 points?", "context": "CREATE TABLE table_name_37 (played INTEGER, points INTEGER)"}, {"answer": "SELECT competition FROM table_name_73 WHERE result = \"1\u20132\"", "question": "What competition has a Result of 1\u20132?", "context": "CREATE TABLE table_name_73 (competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_33 WHERE country = \"hun\"", "question": "What is moving from fee in Hun country?", "context": "CREATE TABLE table_name_33 (moving_from VARCHAR, country VARCHAR)"}, {"answer": "SELECT type FROM table_name_81 WHERE country = \"aut\"", "question": "What is thr type in Aut country?", "context": "CREATE TABLE table_name_81 (type VARCHAR, country VARCHAR)"}, {"answer": "SELECT owner FROM table_name_8 WHERE format = \"adult hits\"", "question": "Who is the owner of the radio station that plays adult hits?", "context": "CREATE TABLE table_name_8 (owner VARCHAR, format VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_7 WHERE owner = \"astral media\"", "question": "What is the call sign for the radio owned by astral media?", "context": "CREATE TABLE table_name_7 (call_sign VARCHAR, owner VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_6 WHERE owner = \"bell media\" AND call_sign = \"chsu-fm\"", "question": "What is the frequency for the radio owned by bell media with a call sign of chsu-fm?", "context": "CREATE TABLE table_name_6 (frequency VARCHAR, owner VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT branding FROM table_name_44 WHERE frequency = \"1150 am\"", "question": "What is the branding for the radio with a frequency of 1150 am?", "context": "CREATE TABLE table_name_44 (branding VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT format FROM table_name_8 WHERE frequency = \"00 96.3 fm\"", "question": "What was the format for the radio with a frequency of 00 96.3 fm?", "context": "CREATE TABLE table_name_8 (format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT owner FROM table_name_90 WHERE frequency = \"0 101.5 fm\"", "question": "Who is the owner of the radio frequency of 0 101.5 fm?", "context": "CREATE TABLE table_name_90 (owner VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_44 WHERE name = \"matt targett\" AND lane > 7", "question": "how many times is the name matt targett and the lane higher than 7?", "context": "CREATE TABLE table_name_44 (time VARCHAR, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MAX(time) FROM table_name_30 WHERE rank < 5 AND name = \"eamon sullivan\"", "question": "what is the highest time when the rank is less than 5 and the name is eamon sullivan?", "context": "CREATE TABLE table_name_30 (time INTEGER, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_97 WHERE lane > 4 AND name = \"dominik meichtry\"", "question": "what is the average rank when the lane is more than 4 and the name is dominik meichtry?", "context": "CREATE TABLE table_name_97 (rank INTEGER, lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT 2012 AS _employees__total_ FROM table_name_63 WHERE rank__2012_ = 7", "question": "What is the 2012 Employees (Total) when the rank (2012) is 7?", "context": "CREATE TABLE table_name_63 (rank__2012_ VARCHAR)"}, {"answer": "SELECT SUM(2010 AS _employees__total_) FROM table_name_1 WHERE employer = \"university of alberta\"", "question": "What shows for 2010 Employees (Total) when the employer is University of Alberta?", "context": "CREATE TABLE table_name_1 (employer VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_9 WHERE name = \"190 south lasalle street\"", "question": "What year was the 190 South Lasalle Street?", "context": "CREATE TABLE table_name_9 (year INTEGER, name VARCHAR)"}, {"answer": "SELECT rank FROM table_name_94 WHERE time = \"4:00.191\"", "question": "What rank has a Time of 4:00.191?", "context": "CREATE TABLE table_name_94 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_5 WHERE country = \"brazil\"", "question": "What is the time for Brazil?", "context": "CREATE TABLE table_name_5 (time VARCHAR, country VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE format = \"cd (limited edition steel-box)\" AND country = \"united kingdom\"", "question": "what is the date when the format is cd (limited edition steel-box) from united kingdom?", "context": "CREATE TABLE table_name_16 (date VARCHAR, format VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_61 WHERE format = \"cd\" AND label = \"sony music\" AND catalogue_no = \"sicp-2055\"", "question": "What is the country that has the format of cd, the label of sony music and the catalogue no sicp-2055?", "context": "CREATE TABLE table_name_61 (country VARCHAR, catalogue_no VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT format FROM table_name_28 WHERE country = \"united kingdom\" AND date = \"20 october 2008\"", "question": "what is the format for the country united kingdom on 20 october 2008?", "context": "CREATE TABLE table_name_28 (format VARCHAR, country VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalogue_no FROM table_name_12 WHERE format = \"cd (limited edition steel-box)\" AND country = \"germany\"", "question": "what is the catalogue no when the format is cd (limited edition steel-box) and the country is germany?", "context": "CREATE TABLE table_name_12 (catalogue_no VARCHAR, format VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_11 WHERE rank = \"4\" AND silver > 2", "question": "Which Total has a Rank of 4, and a Silver larger than 2?", "context": "CREATE TABLE table_name_11 (total INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_44 WHERE rank = \"5\" AND bronze > 3", "question": "How much Total has a Rank of 5, and a Bronze larger than 3?", "context": "CREATE TABLE table_name_44 (total INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_1 WHERE nation = \"total\" AND bronze < 18", "question": "Which Silver has a Nation of total, and a Bronze smaller than 18?", "context": "CREATE TABLE table_name_1 (silver INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_58 WHERE nation = \"total\" AND \"total\" < 54", "question": "How much Silver has a Nation of total, and a Total smaller than 54?", "context": "CREATE TABLE table_name_58 (silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT result FROM table_name_68 WHERE award = \"best current affairs presenter\"", "question": "What was the result for the award for best current affairs presenter?", "context": "CREATE TABLE table_name_68 (result VARCHAR, award VARCHAR)"}, {"answer": "SELECT award FROM table_name_84 WHERE organisation = \"lianhe zaobao\"", "question": "Which award was given to Lianhe Zaobao?", "context": "CREATE TABLE table_name_84 (award VARCHAR, organisation VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_4 WHERE series = \"mm\" AND title = \"feather finger\"", "question": "What's the release date of Feather Finger with an MM Series?", "context": "CREATE TABLE table_name_4 (release_date VARCHAR, series VARCHAR, title VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_12 WHERE venue = \"h\" AND result = \"0\u20131\" AND date = \"29 august 1998\"", "question": "Which Opponent has a Venue of h, and a Result of 0\u20131, and a Date of 29 august 1998?", "context": "CREATE TABLE table_name_12 (opponent VARCHAR, date VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_30 WHERE result = \"1\u20131\" AND date = \"28 november 1998\"", "question": "Which Opponent has a Result of 1\u20131, and a Date of 28 november 1998?", "context": "CREATE TABLE table_name_30 (opponent VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_82 WHERE date = \"14 november 1998\"", "question": "What was the venue on 14 november 1998?", "context": "CREATE TABLE table_name_82 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_3 WHERE draw > 1 AND points = 49", "question": "Which Place is the highest one that has a Draw larger than 1, and 49 Points?", "context": "CREATE TABLE table_name_3 (place INTEGER, draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT song FROM table_name_90 WHERE points < 54 AND draw < 4 AND place < 10", "question": "Which Song has Points smaller than 54, and a Draw smaller than 4, and a Place smaller than 10?", "context": "CREATE TABLE table_name_90 (song VARCHAR, place VARCHAR, points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_30 WHERE total = 54", "question": "What is the bronze number when the total is 54/", "context": "CREATE TABLE table_name_30 (bronze INTEGER, total VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_34 WHERE silver < 0", "question": "What is the least bronze number when the silver is less than 0?", "context": "CREATE TABLE table_name_34 (bronze INTEGER, silver INTEGER)"}, {"answer": "SELECT MIN(silver) FROM table_name_4 WHERE total > 2 AND bronze = 3 AND gold > 0 AND rank = \"1\"", "question": "What is the least silver when the total is more than 2, bronze is 3, gold is more than 0, and rank is 1?", "context": "CREATE TABLE table_name_4 (silver INTEGER, rank VARCHAR, gold VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_44 WHERE total > 2 AND bronze < 3 AND rank = \"7\"", "question": "What is the number of silver when the total is more than 2, and bronze is less than 3, with  a rank of 7?", "context": "CREATE TABLE table_name_44 (silver VARCHAR, rank VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(time) FROM table_name_94 WHERE lane < 4 AND rank > 6", "question": "Which Time has a Lane smaller than 4, and a Rank larger than 6?", "context": "CREATE TABLE table_name_94 (time INTEGER, lane VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_18 WHERE nationality = \"france\" AND name = \"alain bernard\" AND lane < 6", "question": "Which Rank has a Nationality of france, and a Name of alain bernard, and a Lane smaller than 6?", "context": "CREATE TABLE table_name_18 (rank INTEGER, lane VARCHAR, nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_99 WHERE rank > 1 AND time < 22.12 AND lane < 4 AND name = \"ashley callus\"", "question": "Which Nationality has a Rank larger than 1, and a Time smaller than 22.12, and a Lane smaller than 4, and a Name of ashley callus?", "context": "CREATE TABLE table_name_99 (nationality VARCHAR, name VARCHAR, lane VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_62 WHERE date = \"8 october 2008\"", "question": "When the date is 8 october 2008 what is the sum of attendance?", "context": "CREATE TABLE table_name_62 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE against = \"pohang steelers\"", "question": "What date has an against of pohang steelers?", "context": "CREATE TABLE table_name_2 (date VARCHAR, against VARCHAR)"}, {"answer": "SELECT weekday FROM table_name_68 WHERE against = \"kashima antlers\"", "question": "What weekday has an against of kashima antlers?", "context": "CREATE TABLE table_name_68 (weekday VARCHAR, against VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE game = 4", "question": "What was the final score of Game #4?", "context": "CREATE TABLE table_name_14 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT level FROM table_name_26 WHERE leading_scorer_1 = \"tom greaves 8\"", "question": "Which Level has a Leading scorer 1 of tom greaves 8?", "context": "CREATE TABLE table_name_26 (level VARCHAR, leading_scorer_1 VARCHAR)"}, {"answer": "SELECT leading_scorer_1 FROM table_name_8 WHERE season = \"2010\u201311\"", "question": "Which Leading scorer 1 has a Season of 2010\u201311?", "context": "CREATE TABLE table_name_8 (leading_scorer_1 VARCHAR, season VARCHAR)"}, {"answer": "SELECT leading_scorer_1 FROM table_name_2 WHERE leaguecontested = \"northern premier league premier division\" AND fa_cup = \"2q\"", "question": "Which Leading scorer 1 has a League Contested of northern premier league premier division, and an FA Cup of 2q?", "context": "CREATE TABLE table_name_2 (leading_scorer_1 VARCHAR, leaguecontested VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT AVG(level) FROM table_name_45 WHERE leaguecontested = \"northern premier league premier division\" AND season = \"2011\u201312\"", "question": "Which Level has a League Contested of northern premier league premier division, and a Season of 2011\u201312?", "context": "CREATE TABLE table_name_45 (level INTEGER, leaguecontested VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(top_5) FROM table_name_36 WHERE cuts_made = 1", "question": "What is the least Top-5 when 1 is the cuts made?", "context": "CREATE TABLE table_name_36 (top_5 INTEGER, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(top_5) FROM table_name_12 WHERE events < 0", "question": "With events less than 0, what is the fewest Top-5?", "context": "CREATE TABLE table_name_12 (top_5 INTEGER, events INTEGER)"}, {"answer": "SELECT AVG(wins) FROM table_name_79 WHERE cuts_made < 0", "question": "How many wins of average has cuts made less than 0?", "context": "CREATE TABLE table_name_79 (wins INTEGER, cuts_made INTEGER)"}, {"answer": "SELECT COUNT(events) FROM table_name_58 WHERE top_5 = 2 AND cuts_made = 4 AND wins < 0", "question": "How many events total is the Top-5 2, and 4 is the cuts made, and less than 0 wins?", "context": "CREATE TABLE table_name_58 (events VARCHAR, wins VARCHAR, top_5 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_15 WHERE tournament = \"the open championship\" AND cuts_made > 3", "question": "In the Open Championship with more than 3 cuts made, what is the average wins?", "context": "CREATE TABLE table_name_15 (wins INTEGER, tournament VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT lane FROM table_name_23 WHERE heat < 3 AND nationality = \"barbados\"", "question": "What lane did the barbados swimmer compete in before heat 3?", "context": "CREATE TABLE table_name_23 (lane VARCHAR, heat VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT time FROM table_name_24 WHERE heat > 3 AND lane < 5 AND rank = 5", "question": "What was the time of the 5th ranked swimmer who swam after heat 3 and was in a lane under 5?", "context": "CREATE TABLE table_name_24 (time VARCHAR, rank VARCHAR, heat VARCHAR, lane VARCHAR)"}, {"answer": "SELECT AVG(population) FROM table_name_17 WHERE area__km_2__ < 433.7 AND code = 23013", "question": "What is the average population for an area less than 433.7km and a 23013 code?", "context": "CREATE TABLE table_name_17 (population INTEGER, area__km_2__ VARCHAR, code VARCHAR)"}, {"answer": "SELECT COUNT(code) FROM table_name_54 WHERE place = \"amadiba\"", "question": "What is the total code number for Amadiba?", "context": "CREATE TABLE table_name_54 (code VARCHAR, place VARCHAR)"}, {"answer": "SELECT COUNT(capacity) FROM table_name_61 WHERE club = \"leicester tigers\"", "question": "What is the total capacity for the Leicester Tigers?", "context": "CREATE TABLE table_name_61 (capacity VARCHAR, club VARCHAR)"}, {"answer": "SELECT city_town FROM table_name_3 WHERE stadium = \"welford road\"", "question": "What town has the Welford Road Stadium?", "context": "CREATE TABLE table_name_3 (city_town VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_97 WHERE player = \"david rose\"", "question": "What year was the player David Rose?", "context": "CREATE TABLE table_name_97 (year INTEGER, player VARCHAR)"}, {"answer": "SELECT median_family_income FROM table_name_23 WHERE per_capita_income = \"$24,114\"", "question": "What is the median family income when the per capita is $24,114?", "context": "CREATE TABLE table_name_23 (median_family_income VARCHAR, per_capita_income VARCHAR)"}, {"answer": "SELECT median_household_income FROM table_name_56 WHERE per_capita_income = \"$21,585\"", "question": "What is the median household income when the per capita is $21,585?", "context": "CREATE TABLE table_name_56 (median_household_income VARCHAR, per_capita_income VARCHAR)"}, {"answer": "SELECT AVG(population) FROM table_name_48 WHERE median_family_income = \"$48,446\" AND number_of_households > 35 OFFSET 343", "question": "What is the population where the median family income is $48,446 and there are more than 35,343 households?", "context": "CREATE TABLE table_name_48 (population INTEGER, median_family_income VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT AVG(population) FROM table_name_83 WHERE median_household_income = \"$87,832\" AND number_of_households < 64 OFFSET 886", "question": "What is the population where the median household income is $87,832 and there are fewer than 64,886 households?", "context": "CREATE TABLE table_name_83 (population INTEGER, median_household_income VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT score1 FROM table_name_20 WHERE competition_or_tour = \"major league soccer all-star game\"", "question": "What is the score 1 for the major league soccer all-star game?", "context": "CREATE TABLE table_name_20 (score1 VARCHAR, competition_or_tour VARCHAR)"}, {"answer": "SELECT score1 FROM table_name_85 WHERE ground = \"h\"", "question": "What is the score 1 with a h ground?", "context": "CREATE TABLE table_name_85 (score1 VARCHAR, ground VARCHAR)"}, {"answer": "SELECT scorers FROM table_name_34 WHERE ground = \"a\" AND date = \"1 august 2008\"", "question": "Who are the scorers on 1 August 2008, where the ground was A?", "context": "CREATE TABLE table_name_34 (scorers VARCHAR, ground VARCHAR, date VARCHAR)"}, {"answer": "SELECT ground FROM table_name_98 WHERE opponent = \"portsmouth reserves\"", "question": "What ground had Portsmouth reserves as an opponent?", "context": "CREATE TABLE table_name_98 (ground VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT ground FROM table_name_17 WHERE match < 6 AND opponent = \"chelsea reserves\"", "question": "What ground had a match smaller than 6 and Chelsea Reserves as the opponent?", "context": "CREATE TABLE table_name_17 (ground VARCHAR, match VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT team FROM table_name_53 WHERE losses > 5 AND position = 12", "question": "Which Team has Losses larger than 5, and a Position of 12?", "context": "CREATE TABLE table_name_53 (team VARCHAR, losses VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_70 WHERE position > 4 AND losses > 5 AND conceded = 15 AND scored > 11", "question": "How many Points have a Position larger than 4, and Losses larger than 5, and a Conceded of 15, and a Scored larger than 11?", "context": "CREATE TABLE table_name_70 (points VARCHAR, scored VARCHAR, conceded VARCHAR, position VARCHAR, losses VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_79 WHERE played < 12", "question": "How many positions have Played smaller than 12?", "context": "CREATE TABLE table_name_79 (position INTEGER, played INTEGER)"}, {"answer": "SELECT elector FROM table_name_51 WHERE faction = \"italian\" AND nationality = \"prato\"", "question": "Who was the Prato Elector with a faction of Italian?", "context": "CREATE TABLE table_name_51 (elector VARCHAR, faction VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_74 WHERE elector = \"jacques d'euse\"", "question": "What's the elevator of Jacques D'euse?", "context": "CREATE TABLE table_name_74 (elevator VARCHAR, elector VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_97 WHERE elevator = \"nicholas iii\"", "question": "What's the nationality for Nicholas III?", "context": "CREATE TABLE table_name_97 (nationality VARCHAR, elevator VARCHAR)"}, {"answer": "SELECT MIN(mintage) FROM table_name_93 WHERE artist = \"dora de p\u00e9dery-hunt\" AND year < 2002", "question": "What is the fewest mintage from Dora de P\u00e9dery-Hunt, and the year was before 2002?", "context": "CREATE TABLE table_name_93 (mintage INTEGER, artist VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(mintage) FROM table_name_57 WHERE theme = \"common eider\" AND year < 2008", "question": "What is the most mintage with common eider as the theme, and the year less than 2008?", "context": "CREATE TABLE table_name_57 (mintage INTEGER, theme VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_18 WHERE theme = \"25th anniversary loonie\" AND mintage < 35 OFFSET 000", "question": "What is the earliest year when the 25th Anniversary Loonie was the theme, and the mintage was less than 35,000?", "context": "CREATE TABLE table_name_18 (year INTEGER, theme VARCHAR, mintage VARCHAR)"}, {"answer": "SELECT artist FROM table_name_50 WHERE issue_price = \"$49.95\" AND year = 2010", "question": "Who was the artist that had $49.95 as the issue price for the 2010 year?", "context": "CREATE TABLE table_name_50 (artist VARCHAR, issue_price VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_78 WHERE home_team = \"southern\"", "question": "What is the score for the southern home team?", "context": "CREATE TABLE table_name_78 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT time FROM table_name_82 WHERE home_team = \"southern\"", "question": "What time is it for the southern home team?", "context": "CREATE TABLE table_name_82 (time VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT result FROM table_name_78 WHERE date = \"november 24, 1946\"", "question": "What is the Result of the game on November 24, 1946?", "context": "CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_48 WHERE date = \"september 6, 1946\"", "question": "What is the Week number on September 6, 1946?", "context": "CREATE TABLE table_name_48 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE record = \"5-3\"", "question": "What is the Date of the game with a Record of 5-3?", "context": "CREATE TABLE table_name_53 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_86 WHERE country = \"great britain\"", "question": "What was the lowest ranking rower from Great Britain?", "context": "CREATE TABLE table_name_86 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT notes FROM table_name_48 WHERE rank > 2 AND time = \"7:00:46\"", "question": "What are the notes for the rower in ranks over 2 and having a time of 7:00:46?", "context": "CREATE TABLE table_name_48 (notes VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT programming FROM table_name_62 WHERE video = \"audio only\"", "question": "Which Programming has a Video of audio only?", "context": "CREATE TABLE table_name_62 (programming VARCHAR, video VARCHAR)"}, {"answer": "SELECT video FROM table_name_49 WHERE channel = 25.3", "question": "Which Video has a Channel of 25.3?", "context": "CREATE TABLE table_name_49 (video VARCHAR, channel VARCHAR)"}, {"answer": "SELECT video FROM table_name_14 WHERE aspect = \"16:9\"", "question": "Which Video has an Aspect of 16:9?", "context": "CREATE TABLE table_name_14 (video VARCHAR, aspect VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE michael_signer = \"4%\"", "question": "On which date did Michael Signer earn 4%?", "context": "CREATE TABLE table_name_62 (date VARCHAR, michael_signer VARCHAR)"}, {"answer": "SELECT source FROM table_name_54 WHERE michael_signer = \"5%\"", "question": "Which polling source gave Michael Signer 5%?", "context": "CREATE TABLE table_name_54 (source VARCHAR, michael_signer VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE undecided = \"42%\"", "question": "Which date had the undecided percentage at 42%?", "context": "CREATE TABLE table_name_10 (date VARCHAR, undecided VARCHAR)"}, {"answer": "SELECT rich_savage FROM table_name_90 WHERE jody_wagner = \"30%\"", "question": "What is the Rich Savage percentage in the poll with Jody Wagner at 30%?", "context": "CREATE TABLE table_name_90 (rich_savage VARCHAR, jody_wagner VARCHAR)"}, {"answer": "SELECT rich_savage FROM table_name_82 WHERE undecided = \"68%\"", "question": "What is the Rich Savage percentage in the poll that had undecideds at 68%?", "context": "CREATE TABLE table_name_82 (rich_savage VARCHAR, undecided VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_40 WHERE record = \"31-24\"", "question": "Who was the opponent when the record was 31-24?", "context": "CREATE TABLE table_name_40 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE game = \"48\"", "question": "What was the score of Game 48?", "context": "CREATE TABLE table_name_43 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_19 WHERE location_attendance = \"madison square garden\"", "question": "Who was the opponent at the game at Madison Square Garden?", "context": "CREATE TABLE table_name_19 (opponent VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_54 WHERE location_attendance = \"great western forum\"", "question": "What was the score of the game at Great Western Forum?", "context": "CREATE TABLE table_name_54 (score VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT romaji_title FROM table_name_78 WHERE japanese_title = \"\u82b1\u3088\u308a\u7537\u5b502\uff08\u30ea\u30bf\u30fc\u30f3\u30ba\uff09\"", "question": "Which Romaji Title has a Japanese Title of \u82b1\u3088\u308a\u7537\u5b502\uff08\u30ea\u30bf\u30fc\u30f3\u30ba\uff09?", "context": "CREATE TABLE table_name_78 (romaji_title VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT romaji_title FROM table_name_65 WHERE tv_station = \"fuji tv\" AND average_ratings = \"12.41%\"", "question": "Which Romaji Title has a TV Station of fuji tv, and Average Ratings of 12.41%?", "context": "CREATE TABLE table_name_65 (romaji_title VARCHAR, tv_station VARCHAR, average_ratings VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_12 WHERE episodes > 9 AND romaji_title = \"haikei, chichiue-sama\"", "question": "Which Japanese Title has more than 9 Episodes, and a Romaji Title of haikei, chichiue-sama?", "context": "CREATE TABLE table_name_12 (japanese_title VARCHAR, episodes VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT romaji_title FROM table_name_24 WHERE episodes = 11 AND tv_station = \"fuji tv\" AND average_ratings = \"14.9%\"", "question": "Which Romaji Title has 11 Episodes, and a TV Station of fuji tv, and Average Ratings of 14.9%?", "context": "CREATE TABLE table_name_24 (romaji_title VARCHAR, average_ratings VARCHAR, episodes VARCHAR, tv_station VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE year > 1995 AND episode = \"season 6\"", "question": "What was the result of nomination for Season 6 after 1995?", "context": "CREATE TABLE table_name_49 (result VARCHAR, year VARCHAR, episode VARCHAR)"}, {"answer": "SELECT category FROM table_name_73 WHERE nominee_s_ = \"john frank levey\" AND year > 1995", "question": "What was the category of the award that John Frank Levey was nominated for after 1995?", "context": "CREATE TABLE table_name_73 (category VARCHAR, nominee_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT english_translation FROM table_name_12 WHERE language = \"french\" AND artist = \"rachel\"", "question": "What is the English Translation for the French song by the Artist Rachel?", "context": "CREATE TABLE table_name_12 (english_translation VARCHAR, language VARCHAR, artist VARCHAR)"}, {"answer": "SELECT song FROM table_name_69 WHERE artist = \"robert cogoi\"", "question": "What is the Song by Artist Robert Cogoi?", "context": "CREATE TABLE table_name_69 (song VARCHAR, artist VARCHAR)"}, {"answer": "SELECT points FROM table_name_64 WHERE draw > 7 AND artist = \"sabahudin kurt\"", "question": "How many Points were awarded to Sabahudin Kurt with a Draw is greater than 7?", "context": "CREATE TABLE table_name_64 (points VARCHAR, draw VARCHAR, artist VARCHAR)"}, {"answer": "SELECT COUNT(converted) FROM table_name_71 WHERE number = \"35\" AND withdrawn < 1952", "question": "How much Converted has a Number of 35, and a Withdrawn smaller than 1952?", "context": "CREATE TABLE table_name_71 (converted VARCHAR, number VARCHAR, withdrawn VARCHAR)"}, {"answer": "SELECT AVG(latitude) FROM table_name_15 WHERE water__sqmi_ < 2.106 AND county = \"dickey\" AND pop__2010_ < 95", "question": "What is the average latitude for townships in Dickey county with water under 2.106 sqmi and population under 95?", "context": "CREATE TABLE table_name_15 (latitude INTEGER, pop__2010_ VARCHAR, water__sqmi_ VARCHAR, county VARCHAR)"}, {"answer": "SELECT MAX(geo_id) FROM table_name_99 WHERE land___sqmi__ > 38.117 AND water__sqmi_ > 2.065", "question": "What is the highest GEO ID for land masses over 38.117 sq mi and over 2.065 sq mi of water?", "context": "CREATE TABLE table_name_99 (geo_id INTEGER, land___sqmi__ VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT COUNT(geo_id) FROM table_name_28 WHERE water__sqmi_ > 0.587 AND township = \"riggin\" AND ansi_code > 1759257", "question": "What is the number of GEO IDs for areas in Riggin township with water area over 0.587 sq mi and ANSI codes over 1759257?", "context": "CREATE TABLE table_name_28 (geo_id VARCHAR, ansi_code VARCHAR, water__sqmi_ VARCHAR, township VARCHAR)"}, {"answer": "SELECT class FROM table_name_94 WHERE identifier = \"cbf-fm-14\"", "question": "What's the class when the identifier is cbf-fm-14?", "context": "CREATE TABLE table_name_94 (class VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_47 WHERE identifier = \"cbf-fm-9\"", "question": "What's the frequency when the identifier is cbf-fm-9?", "context": "CREATE TABLE table_name_47 (frequency VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT recnet FROM table_name_38 WHERE identifier = \"cbf-fm-20\"", "question": "What's the RECNet when the identifier is cbf-fm-20?", "context": "CREATE TABLE table_name_38 (recnet VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT recnet FROM table_name_9 WHERE power = \"199 watts\"", "question": "What's the RECNet when the power is 199 watts?", "context": "CREATE TABLE table_name_9 (recnet VARCHAR, power VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_14 WHERE class = \"a\" AND identifier = \"cbf-fm-14\"", "question": "What's the frequency when the identifier is cbf-fm-14 having a class of A?", "context": "CREATE TABLE table_name_14 (frequency VARCHAR, class VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT ag FROM table_name_73 WHERE d3 & 4 = \"46\" AND transmitter = \"seaham\"", "question": "What is the A.G. value associated with D3&4 of 46 and transmitter of Seaham?", "context": "CREATE TABLE table_name_73 (ag VARCHAR, transmitter VARCHAR, d3 VARCHAR)"}, {"answer": "SELECT ag FROM table_name_71 WHERE d3 & 4 = \"41\"", "question": "What is the AG value associated with a D3&4 of 41?", "context": "CREATE TABLE table_name_71 (ag VARCHAR, d3 VARCHAR)"}, {"answer": "SELECT label FROM table_name_45 WHERE date = \"15 december 1992\"", "question": "which Label is in 15 december 1992?", "context": "CREATE TABLE table_name_45 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT album FROM table_name_53 WHERE artist = \"various artists (compilation)\" AND label = \"laface\"", "question": "Which Album has an Artist of various artists (compilation), and a Label of laface?", "context": "CREATE TABLE table_name_53 (album VARCHAR, artist VARCHAR, label VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE album = \"l'un n'emp\u00eache pas l'autre\"", "question": "When has an Album of l'un n'emp\u00eache pas l'autre?", "context": "CREATE TABLE table_name_14 (date VARCHAR, album VARCHAR)"}, {"answer": "SELECT track_s_ FROM table_name_86 WHERE date = \"18 november 1985\"", "question": "Which Track(s) is on 18 november 1985?", "context": "CREATE TABLE table_name_86 (track_s_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_61 WHERE album = \"so red the rose\"", "question": "Which Label that has an Album of so red the rose?", "context": "CREATE TABLE table_name_61 (label VARCHAR, album VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_75 WHERE name = \"natalie coughlin\" AND rank > 1", "question": "What is the least lane number that Natalie Coughlin was in when she was ranked greater than 1?", "context": "CREATE TABLE table_name_75 (lane INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_49 WHERE time = \"6:36.05\"", "question": "Who is the Athlete with a rowing Time of 6:36.05?", "context": "CREATE TABLE table_name_49 (athlete VARCHAR, time VARCHAR)"}, {"answer": "SELECT song FROM table_name_9 WHERE artist = \"sex pistols\"", "question": "What song was made by the sex pistols?", "context": "CREATE TABLE table_name_9 (song VARCHAR, artist VARCHAR)"}, {"answer": "SELECT song FROM table_name_66 WHERE band_tour_venue = \"6. tool (usa) encore\"", "question": "What song has the band tour vnue of 6. tool (usa) encore?", "context": "CREATE TABLE table_name_66 (song VARCHAR, band_tour_venue VARCHAR)"}, {"answer": "SELECT total FROM table_name_15 WHERE a_score < 6.6 AND b_score = 8.925", "question": "What is the total when the A score was less than 6.6, and the B score was 8.925?", "context": "CREATE TABLE table_name_15 (total VARCHAR, a_score VARCHAR, b_score VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_89 WHERE position < 4 AND b_score > 9.125 AND a_score < 6.6", "question": "What total has a position smaller than 4, a B score higher than 9.125, and an A score less than 6.6?", "context": "CREATE TABLE table_name_89 (total INTEGER, a_score VARCHAR, position VARCHAR, b_score VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE away_team = \"watford\"", "question": "What is the score when watford was the away team?", "context": "CREATE TABLE table_name_59 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE home_team = \"york city\"", "question": "What is the score when york city was the home team?", "context": "CREATE TABLE table_name_91 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE game > 29 AND record = \"24-6\"", "question": "What score has a game greater than 29, with 24-6 as the record?", "context": "CREATE TABLE table_name_6 (score VARCHAR, game VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_61 WHERE opponent = \"@ detroit\"", "question": "What record has @ detroit as the opponent?", "context": "CREATE TABLE table_name_61 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_95 WHERE high_points = \"mcwilliams-franklin (22)\"", "question": "What high assists have McWilliams-franklin (22) as the high points?", "context": "CREATE TABLE table_name_95 (high_assists VARCHAR, high_points VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_31 WHERE location_attendance = \"uic pavilion 3,520\"", "question": "What high assists have uic pavilion 3,520 as the location/attendance?", "context": "CREATE TABLE table_name_31 (high_assists VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT game FROM table_name_94 WHERE high_rebounds = \"jones (10)\"", "question": "What game has jones (10) as the high rebounds?", "context": "CREATE TABLE table_name_94 (game VARCHAR, high_rebounds VARCHAR)"}, {"answer": "SELECT cores FROM table_name_28 WHERE release_price___usd__ = \"$426\"", "question": "How many cores does the processor with a release price of $426 have?", "context": "CREATE TABLE table_name_28 (cores VARCHAR, release_price___usd__ VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_50 WHERE model_number = \"core i7-3610qe\"", "question": "What was the frequency of the Core i7-3610QE?", "context": "CREATE TABLE table_name_50 (frequency VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT cores FROM table_name_3 WHERE release_date = \"april 2012\" AND release_price___usd__ = \"$393\" AND part_number_s_ = \"av8063801117503\"", "question": "How many cores does the processor released in April 2012 with a price of $393 and part number av8063801117503 have?", "context": "CREATE TABLE table_name_3 (cores VARCHAR, part_number_s_ VARCHAR, release_date VARCHAR, release_price___usd__ VARCHAR)"}, {"answer": "SELECT area_km\u00b2 FROM table_name_45 WHERE country = \"japan\"", "question": "What is Japan's Area km\u00b2?", "context": "CREATE TABLE table_name_45 (area_km\u00b2 VARCHAR, country VARCHAR)"}, {"answer": "SELECT island FROM table_name_98 WHERE density__per_km\u00b2_ = \"1,368\"", "question": "Which island has a density (per km\u00b2) of 1,368?", "context": "CREATE TABLE table_name_98 (island VARCHAR, density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_32 WHERE density__per_km\u00b2_ = \"6,814\"", "question": "Which country has a density (per km\u00b2) of 6,814?", "context": "CREATE TABLE table_name_32 (country VARCHAR, density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT island FROM table_name_20 WHERE population = \"9,520 (2000)\"", "question": "Which island has a population of 9,520 (2000)?", "context": "CREATE TABLE table_name_20 (island VARCHAR, population VARCHAR)"}, {"answer": "SELECT area_km\u00b2 FROM table_name_99 WHERE population = \"99,685 (2008)\"", "question": "What is the area km\u00b2 for a population of 99,685 (2008)?", "context": "CREATE TABLE table_name_99 (area_km\u00b2 VARCHAR, population VARCHAR)"}, {"answer": "SELECT island FROM table_name_43 WHERE country = \"united kingdom\"", "question": "Which island is in the United Kingdom?", "context": "CREATE TABLE table_name_43 (island VARCHAR, country VARCHAR)"}, {"answer": "SELECT pitcher FROM table_name_40 WHERE location = \"kingdome\" AND season = \"1983\"", "question": "Who is the pitcher from the 1983 season in location Kingdome?", "context": "CREATE TABLE table_name_40 (pitcher VARCHAR, location VARCHAR, season VARCHAR)"}, {"answer": "SELECT pitcher FROM table_name_5 WHERE opponent = \"cleveland indians\" AND season = \"1994\"", "question": "Who is the pitcher from the 1994 season that had the Cleveland Indians as an opponent?", "context": "CREATE TABLE table_name_5 (pitcher VARCHAR, opponent VARCHAR, season VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_11 WHERE decision = \"w\" AND season = \"2011\"", "question": "Who is the opponent for the 2011 season with a decision of W?", "context": "CREATE TABLE table_name_11 (opponent VARCHAR, decision VARCHAR, season VARCHAR)"}, {"answer": "SELECT season FROM table_name_60 WHERE location = \"safeco field\" AND decision = \"l\" AND opponent = \"boston red sox\"", "question": "What season was played at Safeco Field, against the Boston Red Sox, with a decision of L?", "context": "CREATE TABLE table_name_60 (season VARCHAR, opponent VARCHAR, location VARCHAR, decision VARCHAR)"}, {"answer": "SELECT decision FROM table_name_35 WHERE opponent = \"new york yankees\" AND season = \"1983\"", "question": "What was the decision for the 1983 season for the game played against the New York Yankees?", "context": "CREATE TABLE table_name_35 (decision VARCHAR, opponent VARCHAR, season VARCHAR)"}, {"answer": "SELECT encoding FROM table_name_44 WHERE tracks__side = \"80\" AND sectors__track = \"11\"", "question": "what is the encoding when the tracks/side is 80  and sectors/track is 11?", "context": "CREATE TABLE table_name_44 (encoding VARCHAR, tracks__side VARCHAR, sectors__track VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_16 WHERE total < 2", "question": "What is the highest bronze for less than 2 total trophies?", "context": "CREATE TABLE table_name_16 (bronze INTEGER, total INTEGER)"}, {"answer": "SELECT MAX(total) FROM table_name_64 WHERE finish = \"t64\" AND year_won > 2006", "question": "Which Total has a Finish of t64, and a Year won larger than 2006?", "context": "CREATE TABLE table_name_64 (total INTEGER, finish VARCHAR, year_won VARCHAR)"}, {"answer": "SELECT AVG(year_won) FROM table_name_6 WHERE finish = \"t24\" AND country = \"england\"", "question": "Which year won has a Finish of t24, and a Country of england?", "context": "CREATE TABLE table_name_6 (year_won INTEGER, finish VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_45 WHERE total > 2 AND silver < 1 AND rank > 10 AND gold < 0", "question": "What is the smallest bronze value for countries with totals over 2, golds of 0, silvers under 1, and ranks over 10?", "context": "CREATE TABLE table_name_45 (bronze INTEGER, gold VARCHAR, rank VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT school FROM table_name_53 WHERE previous_conference = \"lost river\" AND enrollment = \"a\"", "question": "Which school has an enrollment of A and had lost river as their previous conference?", "context": "CREATE TABLE table_name_53 (school VARCHAR, previous_conference VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT AVG(year_joined) FROM table_name_43 WHERE county = 277", "question": "What is the average year joined of the 277 county?", "context": "CREATE TABLE table_name_43 (year_joined INTEGER, county VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_71 WHERE county < 228", "question": "What is the IHSAA class of the county that is less than 228?", "context": "CREATE TABLE table_name_71 (ihsaa_class VARCHAR, county INTEGER)"}, {"answer": "SELECT engine FROM table_name_12 WHERE transmission = \"4-speed automatic\" AND acceleration_0_100km_h__0_62mph_ = \"10.4 s\"", "question": "What is the engine when the transmission was 4-speed automatic, and acceleration 0\u2013100km/h (0\u201362mph) was 10.4 s?", "context": "CREATE TABLE table_name_12 (engine VARCHAR, transmission VARCHAR, acceleration_0_100km_h__0_62mph_ VARCHAR)"}, {"answer": "SELECT power FROM table_name_49 WHERE acceleration_0_100km_h__0_62mph_ = \"9.1 s\"", "question": "What is the Power when the acceleration 0\u2013100km/h (0\u201362mph) is 9.1 s?", "context": "CREATE TABLE table_name_49 (power VARCHAR, acceleration_0_100km_h__0_62mph_ VARCHAR)"}, {"answer": "SELECT transmission FROM table_name_99 WHERE engine = \"2.0l\" AND acceleration_0_100km_h__0_62mph_ = \"10.5 s\"", "question": "What is the transmission when the engine is 2.0l, and acceleration 0\u2013100km/h (0\u201362mph) is 10.5 s?", "context": "CREATE TABLE table_name_99 (transmission VARCHAR, engine VARCHAR, acceleration_0_100km_h__0_62mph_ VARCHAR)"}, {"answer": "SELECT production FROM table_name_5 WHERE engine = \"2.7l\" AND acceleration_0_100km_h__0_62mph_ = \"8.5 s\"", "question": "What is the production when engine is 2.7l, and acceleration 0\u2013100km/h (0\u201362mph) is 8.5 s?", "context": "CREATE TABLE table_name_5 (production VARCHAR, engine VARCHAR, acceleration_0_100km_h__0_62mph_ VARCHAR)"}, {"answer": "SELECT transmission FROM table_name_29 WHERE production = \"2002-2005\"", "question": "What is the transmission when the production was 2002-2005?", "context": "CREATE TABLE table_name_29 (transmission VARCHAR, production VARCHAR)"}, {"answer": "SELECT acceleration_0_100km_h__0_62mph_ FROM table_name_69 WHERE transmission = \"5-speed manual\"", "question": "What is the acceleration 0\u2013100km/h (0\u201362mph) when the transmission is 5-speed manual?", "context": "CREATE TABLE table_name_69 (acceleration_0_100km_h__0_62mph_ VARCHAR, transmission VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_68 WHERE developer_s_ = \"bethesda game studios\"", "question": "What is the highest year for the Bethesda Game Studios Developer?", "context": "CREATE TABLE table_name_68 (year INTEGER, developer_s_ VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_99 WHERE game = \"the elder scrolls v: skyrim\"", "question": "What is the lowest year for the game called The Elder Scrolls v: Skyrim?", "context": "CREATE TABLE table_name_99 (year INTEGER, game VARCHAR)"}, {"answer": "SELECT genre FROM table_name_33 WHERE developer_s_ = \"naughty dog\"", "question": "What game was developed by Naughty Dog?", "context": "CREATE TABLE table_name_33 (genre VARCHAR, developer_s_ VARCHAR)"}, {"answer": "SELECT imed_avicenna_listed FROM table_name_31 WHERE regional_offshore = \"offshore\" AND country_territory = \"saint kitts and nevis\" AND degree = \"md\" AND established < 2000", "question": "What is the imed/avicenna listed for a medical school offshore in saint kitts and nevis which was established before 2000 and will give you an MD?", "context": "CREATE TABLE table_name_31 (imed_avicenna_listed VARCHAR, established VARCHAR, degree VARCHAR, regional_offshore VARCHAR, country_territory VARCHAR)"}, {"answer": "SELECT country_territory FROM table_name_15 WHERE imed_avicenna_listed = \"both\" AND established = 1969", "question": "What country has a medical school established in 1969 with both an IMED and avicenna?", "context": "CREATE TABLE table_name_15 (country_territory VARCHAR, imed_avicenna_listed VARCHAR, established VARCHAR)"}, {"answer": "SELECT AVG(established) FROM table_name_86 WHERE country_territory = \"dominican republic\"", "question": "What is the average year that the medical school in dominican republic was established?", "context": "CREATE TABLE table_name_86 (established INTEGER, country_territory VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_99 WHERE against = 1637 AND byes > 0", "question": "What are the most wins with byes more than 0 and 1637 against?", "context": "CREATE TABLE table_name_99 (wins INTEGER, against VARCHAR, byes VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_78 WHERE losses > 4 AND sunrayia_fl = \"red cliffs\" AND against > 2422", "question": "What are the total byes for the Red Cliffs with more than 4 losses and more than 2422 against?", "context": "CREATE TABLE table_name_78 (byes VARCHAR, against VARCHAR, losses VARCHAR, sunrayia_fl VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_45 WHERE sunrayia_fl = \"wentworth\" AND byes < 0", "question": "What's the total wins for Wentworth with less than 0 byes?", "context": "CREATE TABLE table_name_45 (wins VARCHAR, sunrayia_fl VARCHAR, byes VARCHAR)"}, {"answer": "SELECT venue FROM table_name_40 WHERE opponent = \"sunderland\" AND result = \"1-1\"", "question": "Which venue had an opponent of Sunderland and a result of a 1-1 draw?", "context": "CREATE TABLE table_name_40 (venue VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_2 WHERE opponent = \"middlesbrough\" AND result = \"3-1\"", "question": "What is the number of attendance values for ties having an opponent of Middlesbrough and result of 3-1?", "context": "CREATE TABLE table_name_2 (attendance VARCHAR, opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_35 WHERE result = \"3-0\"", "question": "Which venue ended in a 3-0 result?", "context": "CREATE TABLE table_name_35 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_7 WHERE result = \"0-5\"", "question": "Where was a 0-5 game played?", "context": "CREATE TABLE table_name_7 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_38 WHERE matches < 3", "question": "What is the average rank of a player with fewer than 3 matches?", "context": "CREATE TABLE table_name_38 (rank INTEGER, matches INTEGER)"}, {"answer": "SELECT opponent FROM table_name_24 WHERE date = \"april 21\"", "question": "Who was the opponent on April 21?", "context": "CREATE TABLE table_name_24 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_25 WHERE location_attendance = \"the omni\" AND date = \"april 12\"", "question": "What's the record on April 12 when the location was The Omni?", "context": "CREATE TABLE table_name_25 (record VARCHAR, location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE \"score\" = \"score\"", "question": "What date was the score \"score\"?", "context": "CREATE TABLE table_name_91 (date VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE game = \"77\"", "question": "What's the score of game 77?", "context": "CREATE TABLE table_name_20 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE record = \"43-34\"", "question": "What date had a record of 43-34?", "context": "CREATE TABLE table_name_17 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT artist FROM table_name_5 WHERE percentage = \"17.14%\"", "question": "What Artist had a Percentage of 17.14%?", "context": "CREATE TABLE table_name_5 (artist VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT percentage FROM table_name_73 WHERE place = 5", "question": "What Percentage has a Place of 5?", "context": "CREATE TABLE table_name_73 (percentage VARCHAR, place VARCHAR)"}, {"answer": "SELECT br_number FROM table_name_5 WHERE lms_number > 14768", "question": "Which BR number has an LMS number over 14768?", "context": "CREATE TABLE table_name_5 (br_number VARCHAR, lms_number INTEGER)"}, {"answer": "SELECT frequency FROM table_name_42 WHERE city_of_license = \"belleville\"", "question": "what is the frequency when the city of license is belleville?", "context": "CREATE TABLE table_name_42 (frequency VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT class FROM table_name_17 WHERE power = \"22500 watts\"", "question": "what is the class when the power is 22500 watts?", "context": "CREATE TABLE table_name_17 (class VARCHAR, power VARCHAR)"}, {"answer": "SELECT class FROM table_name_60 WHERE identifier = \"cjbc-1-fm\"", "question": "what is the class when the identifier is cjbc-1-fm?", "context": "CREATE TABLE table_name_60 (class VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT recnet FROM table_name_68 WHERE city_of_license = \"peterborough\"", "question": "what is the recnet when the city of license is peterborough?", "context": "CREATE TABLE table_name_68 (recnet VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT power FROM table_name_71 WHERE city_of_license = \"belleville\"", "question": "what is the power when the city of license is belleville?", "context": "CREATE TABLE table_name_71 (power VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT identifier FROM table_name_17 WHERE power = \"22500 watts\"", "question": "what is the identifier when the power is 22500 watts?", "context": "CREATE TABLE table_name_17 (identifier VARCHAR, power VARCHAR)"}, {"answer": "SELECT MIN(opponents) FROM table_name_80 WHERE date = \"nov. 25\"", "question": "What is the Opponents in the game with a Date of nov. 25?", "context": "CREATE TABLE table_name_80 (opponents INTEGER, date VARCHAR)"}, {"answer": "SELECT games FROM table_name_96 WHERE name = \"leandro love\"", "question": "How many games does leandro love have?", "context": "CREATE TABLE table_name_96 (games VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_84 WHERE years = \"2007/08\" AND name = \"joe keenan\" AND assists > 1", "question": "What is the lowest number of goals joe keenan, who has more than 1 assists, had in 2007/08?", "context": "CREATE TABLE table_name_84 (goals INTEGER, assists VARCHAR, years VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_37 WHERE games = \"9 (0)\" AND assists < 0", "question": "What is the lowest number of goals of the player with 9 (0) games and less than 0 assists?", "context": "CREATE TABLE table_name_37 (goals INTEGER, games VARCHAR, assists VARCHAR)"}, {"answer": "SELECT finals FROM table_name_14 WHERE goals > 0 AND assists = 8", "question": "How many finals had more than 0 goals and 8 assists?", "context": "CREATE TABLE table_name_14 (finals VARCHAR, goals VARCHAR, assists VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_6 WHERE nationality = \"united states\" AND time = \"58.06\" AND heat > 5", "question": "When the nationality is united states, and the time is 58.06, and the heat is larger than 5 what is the lowest rank?", "context": "CREATE TABLE table_name_6 (rank INTEGER, heat VARCHAR, nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_67 WHERE lane > 6 AND heat = 3 AND nationality = \"colombia\"", "question": "What is the highest rank when the lane is larger than 6, and the heat is 3, and the nationality is colombia?", "context": "CREATE TABLE table_name_67 (rank INTEGER, nationality VARCHAR, lane VARCHAR, heat VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_16 WHERE heat > 7", "question": "What is the total lane for a heat larger than 7?", "context": "CREATE TABLE table_name_16 (lane VARCHAR, heat INTEGER)"}, {"answer": "SELECT MAX(heat) FROM table_name_22 WHERE nationality = \"poland\" AND lane < 6", "question": "What is the highest heat when the nationality is poland, and the lane is smaller than 6?", "context": "CREATE TABLE table_name_22 (heat INTEGER, nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT SUM(lead_pitch_mm) FROM table_name_28 WHERE body_width_mm > 10.16", "question": "Which Lead Pitch/mm has a Body Width/mm larger than 10.16?", "context": "CREATE TABLE table_name_28 (lead_pitch_mm INTEGER, body_width_mm INTEGER)"}, {"answer": "SELECT SUM(body_width_mm) FROM table_name_66 WHERE part_number = \"tsop40/44\" AND body_length_mm < 18.42", "question": "How much Body Width/mm has a Part Number of tsop40/44, and a Body Length/mm smaller than 18.42?", "context": "CREATE TABLE table_name_66 (body_width_mm INTEGER, part_number VARCHAR, body_length_mm VARCHAR)"}, {"answer": "SELECT MAX(lead_pitch_mm) FROM table_name_13 WHERE part_number = \"tsop24/28\"", "question": "Which Lead Pitch/mm has a Part Number of tsop24/28?", "context": "CREATE TABLE table_name_13 (lead_pitch_mm INTEGER, part_number VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_40 WHERE gold = 1 AND bronze > 0", "question": "What is the highest amount of silver when gold is 1 and bronze larger than 0?", "context": "CREATE TABLE table_name_40 (silver INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(time) FROM table_name_48 WHERE reaction_time = 0.164", "question": "What is the Time of the Athlete with a Reaction time of 0.164?", "context": "CREATE TABLE table_name_48 (time INTEGER, reaction_time VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_34 WHERE lane = 4", "question": "What is the Time of the Athlete in Lane 4?", "context": "CREATE TABLE table_name_34 (time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_82 WHERE reaction_time < 0.218 AND time > 44.74 AND nationality = \"great britain\"", "question": "What is the Lane of the Athlete from Great Britain with a Reaction time of less than 0.218 and a Time larger than 44.74?", "context": "CREATE TABLE table_name_82 (lane INTEGER, nationality VARCHAR, reaction_time VARCHAR, time VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_29 WHERE week = 3", "question": "What is the time in week 3?", "context": "CREATE TABLE table_name_29 (tv_time VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_61 WHERE attendance = \"73,572\"", "question": "What is the week with attendance of 73,572?", "context": "CREATE TABLE table_name_61 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_94 WHERE opponent = \"san diego chargers\"", "question": "What week was the opponent the San Diego Chargers?", "context": "CREATE TABLE table_name_94 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_63 WHERE result = \"l 38\u201321\"", "question": "What week was the result of l 38\u201321?", "context": "CREATE TABLE table_name_63 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_60 WHERE county = \"galway\" AND total > 13", "question": "What's the total of Rank for the County of Galway and has a Total that's larger than 13?", "context": "CREATE TABLE table_name_60 (rank INTEGER, county VARCHAR, total VARCHAR)"}, {"answer": "SELECT county FROM table_name_53 WHERE opposition = \"antrim\" AND player = \"bernie forde\"", "question": "What County has an Opposition of Antrim and the Player Bernie Forde?", "context": "CREATE TABLE table_name_53 (county VARCHAR, opposition VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_49 WHERE county = \"offaly\" AND player = \"mark corrigan\" AND total < 8", "question": "What's the highest Rank for the County of Offaly, the Player of Mark Corrigan, and the Total that is smaller than 8?", "context": "CREATE TABLE table_name_49 (rank INTEGER, total VARCHAR, county VARCHAR, player VARCHAR)"}, {"answer": "SELECT channel FROM table_name_41 WHERE opponent = \"washington redskins\"", "question": "Which Channel has an Opponent of washington redskins?", "context": "CREATE TABLE table_name_41 (channel VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_57 WHERE channel = \"espn\" AND date = \"september 5, 2002\"", "question": "Which attendance has a Channel of espn, and a Date of september 5, 2002?", "context": "CREATE TABLE table_name_57 (attendance VARCHAR, channel VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_30 WHERE result = \"w 27\u201320\"", "question": "Which Date has a Result of w 27\u201320?", "context": "CREATE TABLE table_name_30 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT week FROM table_name_35 WHERE attendance = \"63,447\"", "question": "Which Week has an Attendance of 63,447?", "context": "CREATE TABLE table_name_35 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE stadium = \"giants stadium\" AND week < 13 AND opponent = \"seattle seahawks\"", "question": "Which Date has a Stadium of giants stadium, and a Week smaller than 13, and an Opponent of seattle seahawks?", "context": "CREATE TABLE table_name_79 (date VARCHAR, opponent VARCHAR, stadium VARCHAR, week VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_79 WHERE react = 0.185", "question": "Who was the athlete with react of 0.185?", "context": "CREATE TABLE table_name_79 (athlete VARCHAR, react VARCHAR)"}, {"answer": "SELECT MIN(react) FROM table_name_90 WHERE lane > 3 AND time < 20.3 AND nationality = \"zimbabwe\" AND rank > 1", "question": "What's the smallest react of Zimbabwe, ranked after 1 in a lane after 3 and a time less than 20.3?", "context": "CREATE TABLE table_name_90 (react INTEGER, rank VARCHAR, nationality VARCHAR, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(white__both_hispanic_and_non_hispanic_) FROM table_name_77 WHERE black__both_hispanic_and_non_hispanic_ = 9.9 AND hispanic__of_any_race_ < 99.5", "question": "What is the total number of white (Hispanic/Non-Hispanic) having a black (Hispanic/Non-Hispanic) of 9.9 and Hispanic under 99.5?", "context": "CREATE TABLE table_name_77 (white__both_hispanic_and_non_hispanic_ VARCHAR, black__both_hispanic_and_non_hispanic_ VARCHAR, hispanic__of_any_race_ VARCHAR)"}, {"answer": "SELECT AVG(black__both_hispanic_and_non_hispanic_) FROM table_name_99 WHERE white__both_hispanic_and_non_hispanic_ < 61.9 AND multiracial__both_hispanic_and_non_hispanic_ < 12.5 AND hispanic__of_any_race_ < 99.4", "question": "What is the average black value (Hispanic/Non-Hispanic) having a white (Hispanic/Non-Hispanic) under 61.9, Multiracial (Hispanic/Non-Hispanic) under 12.5 and Hispanic under 99.4?", "context": "CREATE TABLE table_name_99 (black__both_hispanic_and_non_hispanic_ INTEGER, hispanic__of_any_race_ VARCHAR, white__both_hispanic_and_non_hispanic_ VARCHAR, multiracial__both_hispanic_and_non_hispanic_ VARCHAR)"}, {"answer": "SELECT MAX(amerindian__both_hispanic_and_non_hispanic_) FROM table_name_67 WHERE black__both_hispanic_and_non_hispanic_ = 15.7 AND white__both_hispanic_and_non_hispanic_ > 69.5", "question": "What is the highest Amerindian (Hispanic/Non-Hispanic) value having a Black (Hispanic/Non-Hispanic) of 15.7 and White (Hispanic/Non-Hispanic) over 69.5?", "context": "CREATE TABLE table_name_67 (amerindian__both_hispanic_and_non_hispanic_ INTEGER, black__both_hispanic_and_non_hispanic_ VARCHAR, white__both_hispanic_and_non_hispanic_ VARCHAR)"}, {"answer": "SELECT black__both_hispanic_and_non_hispanic_ FROM table_name_63 WHERE white__both_hispanic_and_non_hispanic_ < 80.6 AND n_asia__both_hispanic_and_non_hispanic_ = 0.1 AND amerindian__both_hispanic_and_non_hispanic_ < 0.6000000000000001 AND municipality__2010_ = \"vega baja\"", "question": "What is the Black (Hispanic/Non-Hispanic) value having a white (Hispanic/Non-Hispanic) under 80.6, Asian (Hispanic/Non-Hispanic) of 0.1, Amerindian (Hispanic/Non-Hispanic) under 0.6000000000000001, and municipality of Vega Baja?", "context": "CREATE TABLE table_name_63 (black__both_hispanic_and_non_hispanic_ VARCHAR, municipality__2010_ VARCHAR, amerindian__both_hispanic_and_non_hispanic_ VARCHAR, white__both_hispanic_and_non_hispanic_ VARCHAR, n_asia__both_hispanic_and_non_hispanic_ VARCHAR)"}, {"answer": "SELECT season FROM table_name_81 WHERE pos = \"3rd\" AND pld = \"36\" AND div = \"bbl\"", "question": "What season had 3rd position, a 36 pld, and a bbl div?", "context": "CREATE TABLE table_name_81 (season VARCHAR, div VARCHAR, pos VARCHAR, pld VARCHAR)"}, {"answer": "SELECT season FROM table_name_87 WHERE pld = \"36\" AND div = \"bbl\" AND pos = \"6th\"", "question": "What season has 36 pld, a bbl div, and 6th position?", "context": "CREATE TABLE table_name_87 (season VARCHAR, pos VARCHAR, pld VARCHAR, div VARCHAR)"}, {"answer": "SELECT season FROM table_name_40 WHERE pos = \"6th\" AND pts = \"36\"", "question": "What season had 6th position and 36 points?", "context": "CREATE TABLE table_name_40 (season VARCHAR, pos VARCHAR, pts VARCHAR)"}, {"answer": "SELECT season FROM table_name_21 WHERE pos = \"1st\" AND pld = \"33\" AND pts = \"58\"", "question": "What season had 1st position, 33 pld, and 58 points?", "context": "CREATE TABLE table_name_21 (season VARCHAR, pts VARCHAR, pos VARCHAR, pld VARCHAR)"}, {"answer": "SELECT school FROM table_name_21 WHERE mascot = \"generals\"", "question": "Which School has a Mascot of generals?", "context": "CREATE TABLE table_name_21 (school VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT school FROM table_name_76 WHERE ihsaa_class = \"aaa\" AND mascot = \"saints\"", "question": "Which School has an IHSAA Class of aaa, and a Mascot of saints?", "context": "CREATE TABLE table_name_76 (school VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_name_48 WHERE location = \"lagrange\" AND mascot = \"panthers\"", "question": "What is the highest enrollment in Lagrange where the mascot is panthers?", "context": "CREATE TABLE table_name_48 (enrollment INTEGER, location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM table_name_3 WHERE school = \"hamilton community\"", "question": "What is the enrollment at the school of Hamilton community?", "context": "CREATE TABLE table_name_3 (enrollment INTEGER, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_62 WHERE ihsaa_class = \"aa\" AND location = \"butler\"", "question": "What school that has a IHSAA Class of AA, in Butler?", "context": "CREATE TABLE table_name_62 (school VARCHAR, ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_62 WHERE school = \"hamilton community\"", "question": "What is the mascot at Hamilton Community?", "context": "CREATE TABLE table_name_62 (mascot VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_80 WHERE location = \"lagrange\" AND ihsaa_class = \"aaa\"", "question": "What school is in Lagrange, with an IHSAA Class of aaa?", "context": "CREATE TABLE table_name_80 (school VARCHAR, location VARCHAR, ihsaa_class VARCHAR)"}, {"answer": "SELECT school FROM table_name_11 WHERE location = \"ligonier\"", "question": "What school is in Ligonier?", "context": "CREATE TABLE table_name_11 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_71 WHERE years = \"2000\u20132012\" AND silver > 2 AND bronze = 0 AND rank < 70", "question": "What is the total in 2000\u20132012, with more than 2 silver, 0 Bronze, and a Rank smaller than 70?", "context": "CREATE TABLE table_name_71 (total INTEGER, rank VARCHAR, bronze VARCHAR, years VARCHAR, silver VARCHAR)"}, {"answer": "SELECT nation FROM table_name_39 WHERE sport = \"shooting\" AND total = 7 AND years = \"1920\"", "question": "What nation scored 7 in shooting in 1920?", "context": "CREATE TABLE table_name_39 (nation VARCHAR, years VARCHAR, sport VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_59 WHERE player = \"pete laframboise\"", "question": "What's the average Round of Pete Laframboise?", "context": "CREATE TABLE table_name_59 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_97 WHERE pick = 100", "question": "What country is Pick 100?", "context": "CREATE TABLE table_name_97 (nationality VARCHAR, pick VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_50 WHERE country = \"great britain\"", "question": "Who were the rowers for Great britain?", "context": "CREATE TABLE table_name_50 (rowers VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_27 WHERE rank < 3 AND time = \"7:28.66\"", "question": "What country has a time of 7:28.66 and a rank less than 3?", "context": "CREATE TABLE table_name_27 (country VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT notes FROM table_name_65 WHERE rank > 1 AND time = \"7:42.92\"", "question": "What are the notes when the time was 7:42.92 and the rank is more than 1?", "context": "CREATE TABLE table_name_65 (notes VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE tie_no = \"11\"", "question": "What's the score of Tie number 11?", "context": "CREATE TABLE table_name_48 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_3 WHERE away_team = \"mansfield town\"", "question": "What's the tie number when the away team was Mansfield Town?", "context": "CREATE TABLE table_name_3 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE away_team = \"newcastle united\"", "question": "What date was Newcastle United the away team?", "context": "CREATE TABLE table_name_42 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_95 WHERE home_team = \"brighton & hove albion\"", "question": "Who was the away team when Brighton & Hove Albion was home?", "context": "CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_96 WHERE home_team = \"chelsea\"", "question": "What's the tie number of Chelsea when they were home?", "context": "CREATE TABLE table_name_96 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE home_team = \"orient\"", "question": "What's the score when Orient was home?", "context": "CREATE TABLE table_name_10 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT designer FROM table_name_42 WHERE restaurant_name = \"the citizen\"", "question": "What designer has a restaurant named The Citizen?", "context": "CREATE TABLE table_name_42 (designer VARCHAR, restaurant_name VARCHAR)"}, {"answer": "SELECT original_name FROM table_name_4 WHERE designer = \"glen peloso\" AND location = \"n/a\"", "question": "What is the original name of the place by designer Glen Peloso with a Location of n/a?", "context": "CREATE TABLE table_name_4 (original_name VARCHAR, designer VARCHAR, location VARCHAR)"}, {"answer": "SELECT chef FROM table_name_6 WHERE location = \"toronto, on\" AND original_name = \"n/a\" AND restaurant_name = \"bagel world\"", "question": "What chef that has a location in Toronto, ON, that has n/a as the original name, and a Restaurant Name of Bagel World?", "context": "CREATE TABLE table_name_6 (chef VARCHAR, restaurant_name VARCHAR, location VARCHAR, original_name VARCHAR)"}, {"answer": "SELECT restaurant_name FROM table_name_93 WHERE original_name = \"essence\"", "question": "What is the name of the restaurant originally named Essence?", "context": "CREATE TABLE table_name_93 (restaurant_name VARCHAR, original_name VARCHAR)"}, {"answer": "SELECT designer FROM table_name_53 WHERE restaurant_name = \"cork & cabbage\"", "question": "What designer has a restaurant named of Cork & Cabbage?", "context": "CREATE TABLE table_name_53 (designer VARCHAR, restaurant_name VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_55 WHERE punishment = \"six month suspension from iihf\"", "question": "Which athlete had a six month suspension from IIHF?", "context": "CREATE TABLE table_name_55 (athlete VARCHAR, punishment VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_4 WHERE total < 3 AND silver > 0", "question": "How many bronze medals did the team have with 0 total silver and less than 3 total medals?", "context": "CREATE TABLE table_name_4 (bronze VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_41 WHERE silver > 4 AND nation = \"total\" AND gold < 30", "question": "What is the total number of bronze medals for the team with more than 4 silver and less than 30 gold medals?", "context": "CREATE TABLE table_name_41 (bronze VARCHAR, gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(penalty_points) FROM table_name_30 WHERE judge_e = \"72.22\"", "question": "what is the least penalty points when the judge e is 72.22?", "context": "CREATE TABLE table_name_30 (penalty_points INTEGER, judge_e VARCHAR)"}, {"answer": "SELECT judge_e FROM table_name_80 WHERE judge_c = \"56.67\" AND rider = \"dag albert\"", "question": "what is the judge e when judge c is 56.67 and the rider is dag albert?", "context": "CREATE TABLE table_name_80 (judge_e VARCHAR, judge_c VARCHAR, rider VARCHAR)"}, {"answer": "SELECT nation FROM table_name_30 WHERE penalty_points < 40.2 AND judge_e = \"82.22\"", "question": "what is the nation when the penalty points is less than 40.2 and judge e is 82.22?", "context": "CREATE TABLE table_name_30 (nation VARCHAR, penalty_points VARCHAR, judge_e VARCHAR)"}, {"answer": "SELECT rank FROM table_name_67 WHERE judge_m = \"65.93\" AND judge_e = \"65.56\"", "question": "what is the rank when judge m is 65.93 and judge e is 65.56?", "context": "CREATE TABLE table_name_67 (rank VARCHAR, judge_m VARCHAR, judge_e VARCHAR)"}, {"answer": "SELECT horse FROM table_name_5 WHERE rank = \"69\"", "question": "what is the horse that ranked 69?", "context": "CREATE TABLE table_name_5 (horse VARCHAR, rank VARCHAR)"}, {"answer": "SELECT production_number FROM table_name_52 WHERE director = \"friz freleng\" AND title = \"wacky worm, the\"", "question": "Name the Production Number with a Director of friz freleng, and a Title of wacky worm, the?", "context": "CREATE TABLE table_name_52 (production_number VARCHAR, director VARCHAR, title VARCHAR)"}, {"answer": "SELECT series FROM table_name_2 WHERE production_number = \"95, br 1254\"", "question": "Name the Series  with Production Number of 95, br 1254?", "context": "CREATE TABLE table_name_2 (series VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT series FROM table_name_96 WHERE title = \"elmer's pet rabbit\"", "question": "Name the Series with a Title of elmer's pet rabbit?", "context": "CREATE TABLE table_name_96 (series VARCHAR, title VARCHAR)"}, {"answer": "SELECT boarding_day FROM table_name_36 WHERE type = \"old\" AND house = \"saunderites\"", "question": "What is the Boarding/Day value for a type of old and house of Saunderites?", "context": "CREATE TABLE table_name_36 (boarding_day VARCHAR, type VARCHAR, house VARCHAR)"}, {"answer": "SELECT house FROM table_name_60 WHERE abbr = \"g\"", "question": "Which house has an abbreviation of G?", "context": "CREATE TABLE table_name_60 (house VARCHAR, abbr VARCHAR)"}, {"answer": "SELECT house FROM table_name_31 WHERE boarding_day = \"day\"", "question": "Which house has a Boarding/Day value of Day?", "context": "CREATE TABLE table_name_31 (house VARCHAR, boarding_day VARCHAR)"}, {"answer": "SELECT house FROM table_name_24 WHERE abbr = \"d\"", "question": "Which house has an abbreviation of D?", "context": "CREATE TABLE table_name_24 (house VARCHAR, abbr VARCHAR)"}, {"answer": "SELECT type FROM table_name_91 WHERE colour = \"dark blue\"", "question": "Which type has a color of Dark Blue?", "context": "CREATE TABLE table_name_91 (type VARCHAR, colour VARCHAR)"}, {"answer": "SELECT total_tackles FROM table_name_9 WHERE games = \"16\" AND solo = \"88\"", "question": "what is the total tackles when the games is 16 and solo is 88?", "context": "CREATE TABLE table_name_9 (total_tackles VARCHAR, games VARCHAR, solo VARCHAR)"}, {"answer": "SELECT team FROM table_name_90 WHERE sacks = \"0\" AND season < 1998", "question": "what is the team when sacks is 0 and the season is earlier than 1998?", "context": "CREATE TABLE table_name_90 (team VARCHAR, sacks VARCHAR, season VARCHAR)"}, {"answer": "SELECT solo FROM table_name_82 WHERE total_tackles = \"6\"", "question": "what is solo when total tackles is 6?", "context": "CREATE TABLE table_name_82 (solo VARCHAR, total_tackles VARCHAR)"}, {"answer": "SELECT MIN(fa_cup_goals) FROM table_name_10 WHERE name = \"dick taylor\" AND league_goals < 0", "question": "How many FA cup goals did dick taylor score in the year that he had 0 league goals?", "context": "CREATE TABLE table_name_10 (fa_cup_goals INTEGER, name VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT COUNT(total_goals) FROM table_name_64 WHERE league_cup_apps = \"2\" AND fa_cup_goals < 0", "question": "What is the goals number of goals for the player who had 2 league cup apps and 0 FA cup goals?", "context": "CREATE TABLE table_name_64 (total_goals VARCHAR, league_cup_apps VARCHAR, fa_cup_goals VARCHAR)"}, {"answer": "SELECT result FROM table_name_76 WHERE week = 11", "question": "What was the result of week 11?", "context": "CREATE TABLE table_name_76 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_32 WHERE name = \"lisbeth trickett\"", "question": "What is Lisbeth Trickett's time?", "context": "CREATE TABLE table_name_32 (time VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_61 WHERE time < 57.05", "question": "What is the average rank for 57.05 time?", "context": "CREATE TABLE table_name_61 (rank INTEGER, time INTEGER)"}, {"answer": "SELECT COUNT(lane) FROM table_name_95 WHERE nationality = \"great britain\" AND time > 57.78", "question": "What lane is from Great Britain and a 57.78 time?", "context": "CREATE TABLE table_name_95 (lane VARCHAR, nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT owner FROM table_name_33 WHERE broadcasting_area = \"sanam pao\"", "question": "Who's the owner of Sanam Pao as the broadcasting area?", "context": "CREATE TABLE table_name_33 (owner VARCHAR, broadcasting_area VARCHAR)"}, {"answer": "SELECT owner FROM table_name_89 WHERE broadcasting_hours = \"24-hours\" AND channel___bkk__ = \"3/32 (vhf/uhf)\"", "question": "Who's the owner of channel 3/32 (vhf/uhf) broadcasting 24-hours?", "context": "CREATE TABLE table_name_89 (owner VARCHAR, broadcasting_hours VARCHAR, channel___bkk__ VARCHAR)"}, {"answer": "SELECT owner FROM table_name_28 WHERE name = \"thai pbs\"", "question": "Who's the owner of Thai PBS?", "context": "CREATE TABLE table_name_28 (owner VARCHAR, name VARCHAR)"}, {"answer": "SELECT network FROM table_name_99 WHERE name = \"bbtv channel 7\"", "question": "What's the network of BBTV Channel 7?", "context": "CREATE TABLE table_name_99 (network VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_65 WHERE channel___bkk__ = \"29 (uhf)\"", "question": "What's the name of Channel 29 (UHF)?", "context": "CREATE TABLE table_name_65 (name VARCHAR, channel___bkk__ VARCHAR)"}, {"answer": "SELECT broadcasting_hours FROM table_name_47 WHERE network = \"nbt\"", "question": "What's the broadcasting hours of NBT?", "context": "CREATE TABLE table_name_47 (broadcasting_hours VARCHAR, network VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_93 WHERE date = \"may 26, 1996\"", "question": "Who were the runners-up in the tournament on May 26, 1996?", "context": "CREATE TABLE table_name_93 (runner_s__up VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_20 WHERE runner_s__up = \"val skinner\"", "question": "Which tournament had a runner-up of Val Skinner?", "context": "CREATE TABLE table_name_20 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_39 WHERE date = \"apr 29, 2001\"", "question": "What was Rosie's winning score on Apr 29, 2001?", "context": "CREATE TABLE table_name_39 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_14 WHERE production_number = \"1018, br 1352\"", "question": "What was the release date of the feature with a production number of 1018, BR 1352?", "context": "CREATE TABLE table_name_14 (release_date VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT name FROM table_name_70 WHERE constituency_number = \"150\"", "question": "what is the name when the constituency number is 150?", "context": "CREATE TABLE table_name_70 (name VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT COUNT(number_of_electorates__2009_) FROM table_name_97 WHERE name = \"govindpura\"", "question": "what is the total number of electorates (2009) when the name is govindpura?", "context": "CREATE TABLE table_name_97 (number_of_electorates__2009_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_85 WHERE province = \"si sa ket\" AND bronze < 14", "question": "What is the rank of Si Sa Ket province with less than 14 bronze medals?", "context": "CREATE TABLE table_name_85 (rank VARCHAR, province VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_86 WHERE silver < 40 AND rank = 3", "question": "How many total medals does rank 3 with less than 40 silver medals?", "context": "CREATE TABLE table_name_86 (total INTEGER, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_26 WHERE bronze = 25 AND rank < 9", "question": "How many average gold medals for provinces higher than rank 9 with 25 bronzes?", "context": "CREATE TABLE table_name_26 (gold INTEGER, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT engine_code FROM table_name_76 WHERE model = \"xdrive25i\"", "question": "What is the engine code for the Xdrive25i?", "context": "CREATE TABLE table_name_76 (engine_code VARCHAR, model VARCHAR)"}, {"answer": "SELECT torque FROM table_name_80 WHERE power = \"hp (kw; ps)@5800\"", "question": "What is the torque on the model with power of hp (kw; ps)@5800?", "context": "CREATE TABLE table_name_80 (torque VARCHAR, power VARCHAR)"}, {"answer": "SELECT torque FROM table_name_97 WHERE engine_code = \"n46b20\" AND power = \"ps (kw; hp)@6400\"", "question": "What is the torque when engine code is N46B20 and power is ps (kw; hp)@6400?", "context": "CREATE TABLE table_name_97 (torque VARCHAR, engine_code VARCHAR, power VARCHAR)"}, {"answer": "SELECT power FROM table_name_18 WHERE model = \"xdrive28i sdrive28i\"", "question": "What is the power for the model xdrive28i sdrive28i?", "context": "CREATE TABLE table_name_18 (power VARCHAR, model VARCHAR)"}, {"answer": "SELECT model FROM table_name_27 WHERE years = \"2011 2012-\"", "question": "What is the model that was made in the years 2011 2012-?", "context": "CREATE TABLE table_name_27 (model VARCHAR, years VARCHAR)"}, {"answer": "SELECT engine_code FROM table_name_9 WHERE model = \"xdrive35i\"", "question": "What is the engine code for the model  xdrive35i?", "context": "CREATE TABLE table_name_9 (engine_code VARCHAR, model VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_25 WHERE school = \"burbank high school\"", "question": "What is the Athlete from Burbank High School?", "context": "CREATE TABLE table_name_25 (athlete VARCHAR, school VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE school = \"ferris high school\"", "question": "What is the Date of the Athlete from Ferris High School?", "context": "CREATE TABLE table_name_17 (date VARCHAR, school VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_67 WHERE city = \"riverbank, california\"", "question": "What is the Athlete from Riverbank, California?", "context": "CREATE TABLE table_name_67 (athlete VARCHAR, city VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE school = \"marshfield high school\"", "question": "What is the Date of the Player from Marshfield High School?", "context": "CREATE TABLE table_name_63 (date VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_72 WHERE date = \"june 4, 2011\"", "question": "What is the School of the Player with a Date of June 4, 2011?", "context": "CREATE TABLE table_name_72 (school VARCHAR, date VARCHAR)"}, {"answer": "SELECT episodes FROM table_name_62 WHERE tv_station = \"tbs\" AND japanese_title = \"\u30af\u30ed\u30b5\u30ae\"", "question": "What episodes was the show \u30af\u30ed\u30b5\u30ae shown on TBS?", "context": "CREATE TABLE table_name_62 (episodes VARCHAR, tv_station VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT romaji_title FROM table_name_43 WHERE tv_station = \"tbs\" AND episodes < 11", "question": "What is the Romanji Title of a show on TBS with less than 11 episodes?", "context": "CREATE TABLE table_name_43 (romaji_title VARCHAR, tv_station VARCHAR, episodes VARCHAR)"}, {"answer": "SELECT COUNT(episodes) FROM table_name_13 WHERE japanese_title = \"\u30af\u30ed\u30b5\u30ae\"", "question": "What is the total number of episodes for \u30af\u30ed\u30b5\u30ae?", "context": "CREATE TABLE table_name_13 (episodes VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT average_ratings FROM table_name_24 WHERE japanese_title = \"\u30d7\u30ea\u30de\u30c0\u30e0\"", "question": "What are the average ratings for \u30d7\u30ea\u30de\u30c0\u30e0?", "context": "CREATE TABLE table_name_24 (average_ratings VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT SUM(score_final) FROM table_name_42 WHERE rank_final = 2 AND year < 2008", "question": "Which Score-Final has a Rank-Final of 2, and a Year smaller than 2008?", "context": "CREATE TABLE table_name_42 (score_final INTEGER, rank_final VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_22 WHERE rank_final < 7 AND competition_description = \"olympic games\" AND score_final < 186.525", "question": "How many years have a Rank-Final smaller than 7, and a Competition Description of olympic games, and a Score-Final smaller than 186.525?", "context": "CREATE TABLE table_name_22 (year INTEGER, score_final VARCHAR, rank_final VARCHAR, competition_description VARCHAR)"}, {"answer": "SELECT MAX(score_final) FROM table_name_61 WHERE apparatus = \"floor exercise\"", "question": "Which Score-Final has an Apparatus of floor exercise?", "context": "CREATE TABLE table_name_61 (score_final INTEGER, apparatus VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_15 WHERE apparatus = \"uneven bars\" AND rank_final < 3", "question": "Which Year is the first one that has an Apparatus of uneven bars, and a Rank-Final smaller than 3?", "context": "CREATE TABLE table_name_15 (year INTEGER, apparatus VARCHAR, rank_final VARCHAR)"}, {"answer": "SELECT name FROM table_name_62 WHERE constituency_number = \"84\"", "question": "Who has a constituency of 84?", "context": "CREATE TABLE table_name_62 (name VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_99 WHERE time = \"1:15\"", "question": "What the round with the time 1:15?", "context": "CREATE TABLE table_name_99 (round INTEGER, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_15 WHERE opponent = \"lyoto machida\"", "question": "What's the location when the opponent was Lyoto Machida?", "context": "CREATE TABLE table_name_15 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_91 WHERE 2010 = \"2r\" AND tournament = \"us open\"", "question": "What is the 2007 result when the 2010 result was 2r, at the US Open?", "context": "CREATE TABLE table_name_91 (tournament VARCHAR)"}, {"answer": "SELECT MAX(a_score) FROM table_name_38 WHERE total < 15.95 AND position < 7 AND b_score > 8.225", "question": "What is the A score for the person with a total less than 15.95, position less than 7, and B score more than 8.225?", "context": "CREATE TABLE table_name_38 (a_score INTEGER, b_score VARCHAR, total VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(b_score) FROM table_name_85 WHERE total = 16.325 AND a_score > 7.3", "question": "What is the B score for the person with a total of 16.325 and an A score of more than 7.3?", "context": "CREATE TABLE table_name_85 (b_score INTEGER, total VARCHAR, a_score VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_40 WHERE total < 16.65 AND a_score = 7.4", "question": "What is the Position of the person with a total less than 16.65 and an A score of 7.4?", "context": "CREATE TABLE table_name_40 (position INTEGER, total VARCHAR, a_score VARCHAR)"}, {"answer": "SELECT network FROM table_name_14 WHERE city_of_license = \"pachuca, hidalgo\"", "question": "What's the network in Pachuca, Hidalgo?", "context": "CREATE TABLE table_name_14 (network VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT network FROM table_name_1 WHERE d_erp = \"\u2022\" AND callsign = \"xhtm\"", "question": "What's the network that has a callsign of XHTM and a D ERP of \u2022?", "context": "CREATE TABLE table_name_1 (network VARCHAR, d_erp VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_21 WHERE d_erp = \"100kw\"", "question": "What's the city of license having a D ERP of 100kw?", "context": "CREATE TABLE table_name_21 (city_of_license VARCHAR, d_erp VARCHAR)"}, {"answer": "SELECT d_erp FROM table_name_12 WHERE city_of_license = \"san martin texmelucan, puebla\"", "question": "What's the D ERP in San Martin Texmelucan, Puebla?", "context": "CREATE TABLE table_name_12 (d_erp VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT district FROM table_name_54 WHERE constituency_number = \"98\"", "question": "What district has 98 constituencies?", "context": "CREATE TABLE table_name_54 (district VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_70 WHERE year = \"2012\"", "question": "What are the highest points with 2012 as the year?", "context": "CREATE TABLE table_name_70 (points INTEGER, year VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_name_55 WHERE points < 88 AND goals < 0", "question": "What are the highest matches that have points less than 88, and goals less than 0?", "context": "CREATE TABLE table_name_55 (matches INTEGER, points VARCHAR, goals VARCHAR)"}, {"answer": "SELECT SUM(tries) FROM table_name_33 WHERE goals > 0", "question": "How many tries have goals greater than 0?", "context": "CREATE TABLE table_name_33 (tries INTEGER, goals INTEGER)"}, {"answer": "SELECT MIN(points) FROM table_name_48 WHERE year = \"2013\" AND goals < 0", "question": "What are the lowest points with 2013 as the year, and goals less than 0?", "context": "CREATE TABLE table_name_48 (points INTEGER, year VARCHAR, goals VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_56 WHERE points = 28 AND matches > 11", "question": "How many goals have 28 as the points, and matches greater than 11?", "context": "CREATE TABLE table_name_56 (goals VARCHAR, points VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_54 WHERE rider = \"russell holland\" AND grid < 10", "question": "Which Laps have a Rider of russell holland, and a Grid smaller than 10?", "context": "CREATE TABLE table_name_54 (laps INTEGER, rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_14 WHERE bike = \"kawasaki zx-6r\" AND time = \"+26.891\"", "question": "Which Laps have a Bike of kawasaki zx-6r, and a Time of +26.891?", "context": "CREATE TABLE table_name_14 (laps INTEGER, bike VARCHAR, time VARCHAR)"}, {"answer": "SELECT rider FROM table_name_61 WHERE time = \"retirement\" AND grid > 5", "question": "Which Rider has a Time of retirement, and a Grid larger than 5?", "context": "CREATE TABLE table_name_61 (rider VARCHAR, time VARCHAR, grid VARCHAR)"}, {"answer": "SELECT rider FROM table_name_73 WHERE laps < 18 AND grid = 24", "question": "Which Rider has less than 18 laps, and a Grid of 24?", "context": "CREATE TABLE table_name_73 (rider VARCHAR, laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE round = \"2nd round 2nd leg\"", "question": "What is the date of the 2nd round 2nd leg?", "context": "CREATE TABLE table_name_63 (date VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_40 WHERE opposing_team = \"gillingham\" AND against < 3", "question": "What is the Round against Gillingham with an Against smaller than 3?", "context": "CREATE TABLE table_name_40 (round VARCHAR, opposing_team VARCHAR, against VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_15 WHERE points = 42 AND played < 36", "question": "What's the draw that's played less than 36 and has 42 points?", "context": "CREATE TABLE table_name_15 (draw INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_21 WHERE goals_scored < 38 AND points < 10", "question": "What the lost that has less than 10 points and less than 38 goals scored?", "context": "CREATE TABLE table_name_21 (lost INTEGER, goals_scored VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_26 WHERE team = \"alianza\" AND draw < 6", "question": "what the most lost for Alianza with a draw less than 6?", "context": "CREATE TABLE table_name_26 (lost INTEGER, team VARCHAR, draw VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_87 WHERE goals_scored > 63 AND place < 3", "question": "What the lost in place less than 3 and having more than 63 goals scored?", "context": "CREATE TABLE table_name_87 (lost INTEGER, goals_scored VARCHAR, place VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_15 WHERE apps > 39 AND player = \"\u00fcmit karan\" AND rate > 0.58", "question": "What is the total Rank for \u00fcmit karan when Apps is more than 39 and Rate is more than 0.58?", "context": "CREATE TABLE table_name_15 (rank INTEGER, rate VARCHAR, apps VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(rate) FROM table_name_43 WHERE rank > 10", "question": "When rank is more than 10, what is the total rate?", "context": "CREATE TABLE table_name_43 (rate INTEGER, rank INTEGER)"}, {"answer": "SELECT winning_amount FROM table_name_51 WHERE contestant_name = \"himesh reshammiya\"", "question": "What winning amount has himesh reshammiya as the contestant name?", "context": "CREATE TABLE table_name_51 (winning_amount VARCHAR, contestant_name VARCHAR)"}, {"answer": "SELECT eliminated_contestant FROM table_name_25 WHERE date_premiered__2009_ = \"october 10\"", "question": "What eliminated contestant has October 10, 2009 as the date premiered?", "context": "CREATE TABLE table_name_25 (eliminated_contestant VARCHAR, date_premiered__2009_ VARCHAR)"}, {"answer": "SELECT date_premiered__2009_ FROM table_name_40 WHERE contestant_name = \"kareena kapoor\"", "question": "What date premiered (2009) has kareena kapoor as the contestant name?", "context": "CREATE TABLE table_name_40 (date_premiered__2009_ VARCHAR, contestant_name VARCHAR)"}, {"answer": "SELECT episode__number FROM table_name_66 WHERE eliminated_contestant = \"govinda & david dhawan\"", "question": "What episode # has govinda & david dhawan as the eliminated contestant?", "context": "CREATE TABLE table_name_66 (episode__number VARCHAR, eliminated_contestant VARCHAR)"}, {"answer": "SELECT winning_amount FROM table_name_2 WHERE date_premiered__2009_ = \"may 30\"", "question": "What is the winning amount that has May 30, 2009 as the date premiered?", "context": "CREATE TABLE table_name_2 (winning_amount VARCHAR, date_premiered__2009_ VARCHAR)"}, {"answer": "SELECT reserved_for___sc___st__none_ FROM table_name_39 WHERE name = \"lahar\"", "question": "What is the Reserved For of Lahar?", "context": "CREATE TABLE table_name_39 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(clock_speed__mhz_) FROM table_name_75 WHERE introduced = \"january 1986\"", "question": "What is the least clock speed (MHz) with January 1986 as introduced?", "context": "CREATE TABLE table_name_75 (clock_speed__mhz_ INTEGER, introduced VARCHAR)"}, {"answer": "SELECT MIN(clock_speed__mhz_) FROM table_name_36 WHERE introduced = \"april 1986\"", "question": "With April 1986 as the introduced, what is the least clock speed (MHz)?", "context": "CREATE TABLE table_name_36 (clock_speed__mhz_ INTEGER, introduced VARCHAR)"}, {"answer": "SELECT processor FROM table_name_58 WHERE model = \"powerbook 100\"", "question": "The Powerbook 100 model has what processor?", "context": "CREATE TABLE table_name_58 (processor VARCHAR, model VARCHAR)"}, {"answer": "SELECT discontinued FROM table_name_45 WHERE model = \"lisa 2\"", "question": "When was the Lisa 2 model discontinued?", "context": "CREATE TABLE table_name_45 (discontinued VARCHAR, model VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_33 WHERE notes = \"fa\" AND time = \"6:41.45\"", "question": "Who are the rowers with a time of 6:41.45 and notes of FA?", "context": "CREATE TABLE table_name_33 (rowers VARCHAR, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_6 WHERE country = \"united states\"", "question": "Who are the rowers from the United States?", "context": "CREATE TABLE table_name_6 (rowers VARCHAR, country VARCHAR)"}, {"answer": "SELECT time FROM table_name_76 WHERE country = \"ukraine\"", "question": "What time did the team from Ukraine have?", "context": "CREATE TABLE table_name_76 (time VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_26 WHERE notes = \"fa\" AND time = \"6:41.45\"", "question": "What is the rank for the team that had a time of 6:41.45 and note FA?", "context": "CREATE TABLE table_name_26 (rank INTEGER, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_77 WHERE country = \"australia\"", "question": "What rank was the team from Australia?", "context": "CREATE TABLE table_name_77 (rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(game) FROM table_name_6 WHERE date = \"july 31\"", "question": "What is the highest game that has July 31 as the date?", "context": "CREATE TABLE table_name_6 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(river_mile) FROM table_name_34 WHERE location_[l_] = \"greenup, kentucky\"", "question": "What is the total of the River Mile in Greenup, Kentucky?", "context": "CREATE TABLE table_name_34 (river_mile INTEGER, location_ VARCHAR, l_ VARCHAR)"}, {"answer": "SELECT river_mile FROM table_name_32 WHERE lock_side = \"rdb\" AND pool_length__miles_ = \"55.4\"", "question": "What is the River Mile with a RDB lock side and a pool length of 55.4?", "context": "CREATE TABLE table_name_32 (river_mile VARCHAR, lock_side VARCHAR, pool_length__miles_ VARCHAR)"}, {"answer": "SELECT MAX(river_mile) FROM table_name_71 WHERE pool_length__miles_ = \"42.2\" AND lock_lift_drop__in_feet_ = \"21\"", "question": "What is the highest River Mile that has a pool length of 42.2 miles or a lock/lift drop of 21 feet?", "context": "CREATE TABLE table_name_71 (river_mile INTEGER, pool_length__miles_ VARCHAR, lock_lift_drop__in_feet_ VARCHAR)"}, {"answer": "SELECT location_[l_] FROM table_name_8 WHERE river_mile > 938.9 AND locks_ & _dam = \"olmsted locks and dam\"", "question": "What is the location of the river mile that is larger than 938.9, and Olmsted Locks and Dam?", "context": "CREATE TABLE table_name_8 (location_ VARCHAR, l_ VARCHAR, river_mile VARCHAR, locks_ VARCHAR, _dam VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_4 WHERE time = \"8:13.67\"", "question": "What is the lowest ranking for 8:13.67?", "context": "CREATE TABLE table_name_4 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_57 WHERE country = \"kazakhstan\"", "question": "What is the time for Kazakhstan?", "context": "CREATE TABLE table_name_57 (time VARCHAR, country VARCHAR)"}, {"answer": "SELECT notes FROM table_name_8 WHERE country = \"south africa\"", "question": "What are the notes for South Africa?", "context": "CREATE TABLE table_name_8 (notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_29 WHERE rank > 5", "question": "What country is ranked higher than 5?", "context": "CREATE TABLE table_name_29 (country VARCHAR, rank INTEGER)"}, {"answer": "SELECT COUNT(rank) FROM table_name_24 WHERE notes = \"fc\" AND country = \"south africa\"", "question": "What is the total rank and fc notes from South Africa?", "context": "CREATE TABLE table_name_24 (rank VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT series FROM table_name_15 WHERE director = \"friz freleng\" AND production_number = 1614", "question": "From what series was the title with a production number of 1614 that was directed by Friz Freleng?", "context": "CREATE TABLE table_name_15 (series VARCHAR, director VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT result FROM table_name_39 WHERE record = \"1-3\"", "question": "What is the Result of the event with a Record of 1-3?", "context": "CREATE TABLE table_name_39 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT round FROM table_name_61 WHERE record = \"5-4\"", "question": "What is the Round of the event with a Record of 5-4?", "context": "CREATE TABLE table_name_61 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(latitude) FROM table_name_51 WHERE land___sqmi__ > 35.747 AND water__sqmi_ = 0 AND geo_id < 3809981860 AND township = \"van meter\"", "question": "What was the latitude for van meter who had a land(sqmi) larger than 35.747, Water(sqmi) of 0 and a GEO ID smaller than 3809981860?", "context": "CREATE TABLE table_name_51 (latitude VARCHAR, township VARCHAR, geo_id VARCHAR, land___sqmi__ VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT MAX(pop__2010_) FROM table_name_85 WHERE latitude = 48.853051 AND water__sqmi_ < 0.9590000000000001", "question": "What was the population fo the township with a Latitude of 48.853051, and a Water (sqmi) smaller than 0.9590000000000001?", "context": "CREATE TABLE table_name_85 (pop__2010_ INTEGER, latitude VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT MAX(ansi_code) FROM table_name_63 WHERE water__sqmi_ = 0 AND township = \"van meter\" AND longitude > -98.444062", "question": "Van Meter has a water(sqmi) of 0 and a longitude larger than -98.444062, what was their highest ANSI code?", "context": "CREATE TABLE table_name_63 (ansi_code INTEGER, longitude VARCHAR, water__sqmi_ VARCHAR, township VARCHAR)"}, {"answer": "SELECT MIN(water__sqmi_) FROM table_name_47 WHERE county = \"dickey\" AND longitude < -98.444062", "question": "What was the lowest water(sqmi) in the county of dickey where the longitude was smaller than -98.444062?", "context": "CREATE TABLE table_name_47 (water__sqmi_ INTEGER, county VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT coach FROM table_name_36 WHERE team = \"northamptonshire steelbacks\"", "question": "Who is the coach for the Northamptonshire Steelbacks?", "context": "CREATE TABLE table_name_36 (coach VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_36 WHERE location = \"leicester\"", "question": "Which team is located in Leicester?", "context": "CREATE TABLE table_name_36 (team VARCHAR, location VARCHAR)"}, {"answer": "SELECT team FROM table_name_5 WHERE county = \"sussex\"", "question": "Which team is in Sussex county?", "context": "CREATE TABLE table_name_5 (team VARCHAR, county VARCHAR)"}, {"answer": "SELECT home_ground FROM table_name_96 WHERE location = \"canterbury\"", "question": "What is the home ground for the team located in Canterbury?", "context": "CREATE TABLE table_name_96 (home_ground VARCHAR, location VARCHAR)"}, {"answer": "SELECT captain FROM table_name_28 WHERE coach = \"giles white\"", "question": "Who is the captain of the team coached by Giles White?", "context": "CREATE TABLE table_name_28 (captain VARCHAR, coach VARCHAR)"}, {"answer": "SELECT division FROM table_name_68 WHERE team = \"derbyshire falcons\"", "question": "Which division is the Derbyshire Falcons in?", "context": "CREATE TABLE table_name_68 (division VARCHAR, team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_52 WHERE home_team = \"derby county\"", "question": "Which tie number had a home team of Derby County?", "context": "CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE away_team = \"stoke city\"", "question": "What was the score of the tie with an away team of Stoke City?", "context": "CREATE TABLE table_name_50 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT artist FROM table_name_70 WHERE draw < 14 AND points < 73 AND language = \"turkish\"", "question": "Which Artist has a Draw smaller than 14, and Points less than 73, and a Language of turkish?", "context": "CREATE TABLE table_name_70 (artist VARCHAR, language VARCHAR, draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_1 WHERE artist = \"mia martini\"", "question": "How many points does mia martini have?", "context": "CREATE TABLE table_name_1 (points VARCHAR, artist VARCHAR)"}, {"answer": "SELECT artist FROM table_name_92 WHERE english_translation = \"all this is music\"", "question": "Which Artist has an English translation of all this is music?", "context": "CREATE TABLE table_name_92 (artist VARCHAR, english_translation VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_96 WHERE place = \"grenoble\"", "question": "What athlete has a Grenoble place?", "context": "CREATE TABLE table_name_96 (athlete VARCHAR, place VARCHAR)"}, {"answer": "SELECT pick FROM table_name_76 WHERE college = \"syracuse\"", "question": "What is the Pick number of the Player from Syracuse?", "context": "CREATE TABLE table_name_76 (pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_68 WHERE pick > 44 AND position = \"offensive guard\" AND college = \"mississippi state\"", "question": "What is the Offensive Guard Player from Mississippi State College with a Pick number larter than 44?", "context": "CREATE TABLE table_name_68 (player VARCHAR, college VARCHAR, pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_name_47 WHERE team = \"denver broncos\"", "question": "What is the College of the Pick from Denver Broncos?", "context": "CREATE TABLE table_name_47 (college VARCHAR, team VARCHAR)"}, {"answer": "SELECT 2008 AS _status FROM table_name_15 WHERE democratic = \"rosa delauro\"", "question": "What's the 2008 Status of Rosa Delauro?", "context": "CREATE TABLE table_name_15 (democratic VARCHAR)"}, {"answer": "SELECT incumbent FROM table_name_63 WHERE republican = \"bo itshaky\"", "question": "Who was the incumbent when Bo Itshaky was the Republican?", "context": "CREATE TABLE table_name_63 (incumbent VARCHAR, republican VARCHAR)"}, {"answer": "SELECT republican FROM table_name_49 WHERE district > 4", "question": "Who was the Republican in the district more than 4?", "context": "CREATE TABLE table_name_49 (republican VARCHAR, district INTEGER)"}, {"answer": "SELECT republican FROM table_name_27 WHERE green = \"harold burbank\"", "question": "Who was the Republican when the green was Harold Burbank?", "context": "CREATE TABLE table_name_27 (republican VARCHAR, green VARCHAR)"}, {"answer": "SELECT democratic FROM table_name_40 WHERE incumbent = \"christopher shays\"", "question": "Who was the Democratic when then Incumbent was Christopher Shays?", "context": "CREATE TABLE table_name_40 (democratic VARCHAR, incumbent VARCHAR)"}, {"answer": "SELECT director FROM table_name_35 WHERE title = \"antz\"", "question": "Who is the director of Antz?", "context": "CREATE TABLE table_name_35 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT studio_s_ FROM table_name_71 WHERE director = \"philip frank messina\"", "question": "What studio has the director Philip Frank Messina?", "context": "CREATE TABLE table_name_71 (studio_s_ VARCHAR, director VARCHAR)"}, {"answer": "SELECT clubs FROM table_name_43 WHERE round = \"first round\"", "question": "What are the club number for the first round?", "context": "CREATE TABLE table_name_43 (clubs VARCHAR, round VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_name_82 WHERE clubs = \"48 \u2192 32\"", "question": "when there were 48 \u2192 32 clubs?", "context": "CREATE TABLE table_name_82 (new_entries_this_round VARCHAR, clubs VARCHAR)"}, {"answer": "SELECT location FROM table_name_94 WHERE time = \"1:37\"", "question": "Where was the fight that took a time of 1:37?", "context": "CREATE TABLE table_name_94 (location VARCHAR, time VARCHAR)"}, {"answer": "SELECT res FROM table_name_79 WHERE time = \"15:00\" AND opponent = \"kiuma kunioku\"", "question": "What was the resolution of the fight against kiuma kunioku with a time of 15:00?", "context": "CREATE TABLE table_name_79 (res VARCHAR, time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_67 WHERE nation = \"poland\"", "question": "What is the average number of bronze medals won by Poland?", "context": "CREATE TABLE table_name_67 (bronze INTEGER, nation VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_90 WHERE total > 1 AND bronze < 10 AND nation = \"switzerland\" AND silver > 1", "question": "What is the average number of gold medals Switzerland received when they ranked larger than 1st and received fewer than 10 bronze medals and more than 1 silver medal?", "context": "CREATE TABLE table_name_90 (gold INTEGER, silver VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_7 WHERE col__m_ > 0", "question": "What is the rank when the col is larger than 0?", "context": "CREATE TABLE table_name_7 (rank VARCHAR, col__m_ INTEGER)"}, {"answer": "SELECT AVG(elevation__m_) FROM table_name_22 WHERE country = \"vanuatu\" AND rank < 3", "question": "What is the elevation of Vanuatu, when the rank is smaller than 3?", "context": "CREATE TABLE table_name_22 (elevation__m_ INTEGER, country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT platform FROM table_name_89 WHERE title = \"super mario all-stars\"", "question": "What's the platform of Super Mario All-Stars?", "context": "CREATE TABLE table_name_89 (platform VARCHAR, title VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_44 WHERE wins < 4 AND against > 1728", "question": "What is the average number of losses when there are more than 4 wins, and the against matches is more than 1728?", "context": "CREATE TABLE table_name_44 (losses INTEGER, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_41 WHERE wins = 1 AND against < 1728", "question": "What is the total number of draws when there is 1 Win, and less than 1728 against matches?", "context": "CREATE TABLE table_name_41 (draws VARCHAR, wins VARCHAR, against VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_80 WHERE losses < 2", "question": "What is the highest number of wins when there are less than 2 losses?", "context": "CREATE TABLE table_name_80 (wins INTEGER, losses INTEGER)"}, {"answer": "SELECT MAX(losses) FROM table_name_92 WHERE club = \"cobden\" AND wins < 1", "question": "What is the highest number of losses for the Cobden club when there is less than 1 win?", "context": "CREATE TABLE table_name_92 (losses INTEGER, club VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_43 WHERE club = \"terang\" AND draws < 0", "question": "What is the average number of wins for the Terang Club, when there are less than 0 draws?", "context": "CREATE TABLE table_name_43 (wins INTEGER, club VARCHAR, draws VARCHAR)"}, {"answer": "SELECT 2 AS nd_place_team FROM table_name_93 WHERE host_location = \"tulsa, ok\" AND year < 1956", "question": "Who was the 2nd place team when the location was Tulsa, OK before 1956?", "context": "CREATE TABLE table_name_93 (host_location VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_9 WHERE location = \"koror, palau\"", "question": "In what Year is the Location of the Festival Koror, Palau?", "context": "CREATE TABLE table_name_9 (year INTEGER, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_40 WHERE iteration = \"10th\"", "question": "What is the Location of the 10th Iteration?", "context": "CREATE TABLE table_name_40 (location VARCHAR, iteration VARCHAR)"}, {"answer": "SELECT SUM(county) FROM table_name_16 WHERE party = \"people before profit\" AND borough > 0", "question": "How many counties have people before profit as the party, and a borough greater than 0?", "context": "CREATE TABLE table_name_16 (county INTEGER, party VARCHAR, borough VARCHAR)"}, {"answer": "SELECT SUM(county) FROM table_name_54 WHERE total = 2 AND city = 0 AND town < 1", "question": "How many counties have 2 as the total, 0 as the city with a town less than 1?", "context": "CREATE TABLE table_name_54 (county INTEGER, town VARCHAR, total VARCHAR, city VARCHAR)"}, {"answer": "SELECT AVG(city) FROM table_name_70 WHERE total < 2 AND borough > 0", "question": "What average city has a total less than 2, with a borough greater than 0?", "context": "CREATE TABLE table_name_70 (city INTEGER, total VARCHAR, borough VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_21 WHERE lane = 5", "question": "What is the rank # of the swimmer in Lane 5?", "context": "CREATE TABLE table_name_21 (rank VARCHAR, lane VARCHAR)"}, {"answer": "SELECT total_fat FROM table_name_33 WHERE smoke_point = \"\u00b0c ()\" AND polyunsaturated_fat = \"37g\"", "question": "What is the total fat with a smoke point of \u00b0c () and 37g of polyunsaturated fat?", "context": "CREATE TABLE table_name_33 (total_fat VARCHAR, smoke_point VARCHAR, polyunsaturated_fat VARCHAR)"}, {"answer": "SELECT saturated_fat FROM table_name_6 WHERE polyunsaturated_fat = \"28g\"", "question": "What is the saturated fat with 28g of polyunsaturated fat?", "context": "CREATE TABLE table_name_6 (saturated_fat VARCHAR, polyunsaturated_fat VARCHAR)"}, {"answer": "SELECT monounsaturated_fat FROM table_name_22 WHERE saturated_fat = \"15g\"", "question": "What is the monounsaturated fat with 15g of saturated fat?", "context": "CREATE TABLE table_name_22 (monounsaturated_fat VARCHAR, saturated_fat VARCHAR)"}, {"answer": "SELECT saturated_fat FROM table_name_94 WHERE total_fat = \"100g\" AND polyunsaturated_fat = \"11g\"", "question": "What is the saturated fat with a total fat of 100g and 11g of polyunsaturated fat?", "context": "CREATE TABLE table_name_94 (saturated_fat VARCHAR, total_fat VARCHAR, polyunsaturated_fat VARCHAR)"}, {"answer": "SELECT monounsaturated_fat FROM table_name_85 WHERE smoke_point = \"\u00b0c ()\" AND total_fat = \"100g\" AND polyunsaturated_fat = \"11g\" AND saturated_fat = \"14g\"", "question": "What is the monounsaturated fat with a smoke point of \u00b0c (), a total fat of 100g, 11g of polyunsaturated fat, and 14g of saturated fat?", "context": "CREATE TABLE table_name_85 (monounsaturated_fat VARCHAR, saturated_fat VARCHAR, polyunsaturated_fat VARCHAR, smoke_point VARCHAR, total_fat VARCHAR)"}, {"answer": "SELECT polyunsaturated_fat FROM table_name_28 WHERE smoke_point = \"\u00b0c ()\" AND total_fat = \"100g\" AND monounsaturated_fat = \"63g\"", "question": "What is the polyunsaturated fat with a smoke point of \u00b0c (), a total fat of 100g and 63g of monounsaturated fat?", "context": "CREATE TABLE table_name_28 (polyunsaturated_fat VARCHAR, monounsaturated_fat VARCHAR, smoke_point VARCHAR, total_fat VARCHAR)"}, {"answer": "SELECT win__percentage FROM table_name_14 WHERE 2003 = \"atp world tour finals\"", "question": "What is the win % of the 2003 atp world tour finals?", "context": "CREATE TABLE table_name_14 (win__percentage VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_64 WHERE 2011 = \"grand slam tournaments\"", "question": "What is the 2006 value of the 2011 grand slam tournaments?", "context": "CREATE TABLE table_name_64 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_38 WHERE 2009 = \"1r\"", "question": "What is the 2007 value with a 1r in 2009?", "context": "CREATE TABLE table_name_38 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_48 WHERE 2006 = \"4r\" AND 2004 = \"1r\" AND 2009 = \"4r\"", "question": "What is the 2007 value with a 4r in 2006, a 1r in 2004, and a 4r in 2009?", "context": "CREATE TABLE table_name_48 (Id VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_91 WHERE away_team = \"rivercity rage\"", "question": "who is the home team when the away team is rivercity rage?", "context": "CREATE TABLE table_name_91 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT winner FROM table_name_64 WHERE score = \"71-62\"", "question": "who is the winner when the score is 71-62?", "context": "CREATE TABLE table_name_64 (winner VARCHAR, score VARCHAR)"}, {"answer": "SELECT winner FROM table_name_48 WHERE home_team = \"sioux falls storm\" AND year < 2012", "question": "who is the winner when the home team is sioux falls storm and the year is earlier than 2012?", "context": "CREATE TABLE table_name_48 (winner VARCHAR, home_team VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE away_team = \"rivercity rage\"", "question": "what is the score when the away team is rivercity rage?", "context": "CREATE TABLE table_name_99 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_37 WHERE score = \"59-32\"", "question": "what is the year when the score is 59-32?", "context": "CREATE TABLE table_name_37 (year INTEGER, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_77 WHERE established > 1948", "question": "What is the venue established after 1948?", "context": "CREATE TABLE table_name_77 (venue VARCHAR, established INTEGER)"}, {"answer": "SELECT league FROM table_name_26 WHERE established < 1930 AND club = \"rayo vallecano\"", "question": "What is the league established before 1930 with the rayo vallecano club?", "context": "CREATE TABLE table_name_26 (league VARCHAR, established VARCHAR, club VARCHAR)"}, {"answer": "SELECT sport FROM table_name_64 WHERE club = \"rayo vallecano\"", "question": "What sport is the rayo vallecano club in?", "context": "CREATE TABLE table_name_64 (sport VARCHAR, club VARCHAR)"}, {"answer": "SELECT sport FROM table_name_46 WHERE club = \"cb estudiantes\"", "question": "What sport is the cb estudiantes club in?", "context": "CREATE TABLE table_name_46 (sport VARCHAR, club VARCHAR)"}, {"answer": "SELECT label FROM table_name_57 WHERE catalogue__number = \"cad 2014 cd\"", "question": "What is the label for CAD 2014 CD?", "context": "CREATE TABLE table_name_57 (label VARCHAR, catalogue__number VARCHAR)"}, {"answer": "SELECT format FROM table_name_40 WHERE catalogue__number = \"gad 2014 cd\" AND date = \"july 6, 1998\"", "question": "What is the format for the catalogue number GAD 2014 CD on July 6, 1998?", "context": "CREATE TABLE table_name_40 (format VARCHAR, catalogue__number VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_52 WHERE draws < 0", "question": "How many wins are there when the draws are less than 0?", "context": "CREATE TABLE table_name_52 (wins INTEGER, draws INTEGER)"}, {"answer": "SELECT MAX(losses) FROM table_name_7 WHERE wins = 5 AND draws < 0", "question": "What are the most losses when there are 5 wins and draws less than 0?", "context": "CREATE TABLE table_name_7 (losses INTEGER, wins VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_84 WHERE club = \"terang\" AND draws < 0", "question": "What are the most wins of Terang with the draws less than 0?", "context": "CREATE TABLE table_name_84 (wins INTEGER, club VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_74 WHERE losses < 3 AND draws > 0", "question": "What is the lowest against when the draws are more than 0 and the losses are less than 3?", "context": "CREATE TABLE table_name_74 (against INTEGER, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_18 WHERE against < 630 AND club = \"warrnambool\" AND wins > 6", "question": "What are the least losses of Warrnambool with more than 6 wins and less than 630 against?", "context": "CREATE TABLE table_name_18 (losses INTEGER, wins VARCHAR, against VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_23 WHERE losses > 3 AND club = \"cobden\"", "question": "What are the draws of Cobden when there are more than 3 losses?", "context": "CREATE TABLE table_name_23 (draws INTEGER, losses VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_80 WHERE silver = 0 AND rank = \"17\" AND gold < 1", "question": "What average bronze has 0 as the silver, 17 as the rank, and a gold less than 1?", "context": "CREATE TABLE table_name_80 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_33 WHERE bronze = 2 AND total > 4", "question": "What is the lowest silver that has 2 as the bronze, with a total greater than 4?", "context": "CREATE TABLE table_name_33 (silver INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_81 WHERE total < \"11\" AND rank = \"11\" AND gold < 1", "question": "How many bronzes have a total less than 11, with 11 as the rank, and a gold less than 1?", "context": "CREATE TABLE table_name_81 (bronze VARCHAR, gold VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT memory FROM table_name_93 WHERE socket = \"socket g1\" AND turbo = \"1/1/6/9\"", "question": "What is the memory with a socket g1 and a 1/1/6/9 turbo?", "context": "CREATE TABLE table_name_93 (memory VARCHAR, socket VARCHAR, turbo VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_92 WHERE l3_cache = \"6 mb\" AND part_number_s_ = \"by80607005259aabx80607i7740qm\"", "question": "What is the release date of the 6 mb L3 cache with the part number by80607005259aabx80607i7740qm?", "context": "CREATE TABLE table_name_92 (release_date VARCHAR, l3_cache VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_name_55 WHERE artist = \"beathoven\" AND place < 16", "question": "What was the lowest draw for Beathoven when the place was smaller than 16?", "context": "CREATE TABLE table_name_55 (draw INTEGER, artist VARCHAR, place VARCHAR)"}, {"answer": "SELECT song FROM table_name_17 WHERE draw < 20 AND artist = \"luca barbarossa\"", "question": "What Luca Barbarossa song had a draw smaller than 20?", "context": "CREATE TABLE table_name_17 (song VARCHAR, draw VARCHAR, artist VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_17 WHERE location = \"sec tournament\"", "question": "Who did they play at sec tournament?", "context": "CREATE TABLE table_name_17 (opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_10 WHERE record = \"9-1-0\"", "question": "Where was the game played when their record was 9-1-0?", "context": "CREATE TABLE table_name_10 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT director FROM table_name_67 WHERE writer = \"russell t davies and james moran\"", "question": "Who was the director of the episode written by Russell T Davies and James Moran?", "context": "CREATE TABLE table_name_67 (director VARCHAR, writer VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_95 WHERE drawn = 1 AND played > 14", "question": "Which Points have Drawn of 1, and a Played larger than 14?", "context": "CREATE TABLE table_name_95 (points INTEGER, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_34 WHERE drawn > 1 AND played < 14", "question": "Which Position has Drawn larger than 1, and a Played smaller than 14?", "context": "CREATE TABLE table_name_34 (position INTEGER, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_30 WHERE drawn > 1 AND played > 14", "question": "Which Lost has Drawn larger than 1, and a Played larger than 14?", "context": "CREATE TABLE table_name_30 (lost INTEGER, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_23 WHERE points > 15 AND name = \"ev pegnitz\"", "question": "How much Lost has Points larger than 15, and a Name of ev pegnitz?", "context": "CREATE TABLE table_name_23 (lost VARCHAR, points VARCHAR, name VARCHAR)"}, {"answer": "SELECT english_translation FROM table_name_10 WHERE artist = \"ann christine\"", "question": "what is the english translation when the artist is ann christine?", "context": "CREATE TABLE table_name_10 (english_translation VARCHAR, artist VARCHAR)"}, {"answer": "SELECT player FROM table_name_3 WHERE pick < 126 AND team = \"houston oilers\"", "question": "What player was picked earlier than 126 by the Houston Oilers?", "context": "CREATE TABLE table_name_3 (player VARCHAR, pick VARCHAR, team VARCHAR)"}, {"answer": "SELECT college FROM table_name_88 WHERE pick > 122 AND team = \"boston patriots\"", "question": "What college was picked later than 122 by the Boston Patriots?", "context": "CREATE TABLE table_name_88 (college VARCHAR, pick VARCHAR, team VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_65 WHERE player = \"geoff ogilvy\"", "question": "what is the to par for geoff ogilvy?", "context": "CREATE TABLE table_name_65 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_88 WHERE player = \"geoff ogilvy\"", "question": "what is the country for geoff ogilvy?", "context": "CREATE TABLE table_name_88 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_93 WHERE player = \"retief goosen\"", "question": "what is the to par for retief goosen?", "context": "CREATE TABLE table_name_93 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_55 WHERE player = \"jim furyk\"", "question": "how many times is the player jim furyk?", "context": "CREATE TABLE table_name_55 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_50 WHERE time > 20.75 AND react < 0.166", "question": "What is the lowest lane in which an athlete got a time larger than 20.75 and a react smaller than 0.166?", "context": "CREATE TABLE table_name_50 (lane INTEGER, time VARCHAR, react VARCHAR)"}, {"answer": "SELECT MAX(react) FROM table_name_72 WHERE time < 20.58 AND athlete = \"christian malcolm\"", "question": "What is Christian Malcolm\u00b4s highest react when his time was below 20.58?", "context": "CREATE TABLE table_name_72 (react INTEGER, time VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT position FROM table_name_67 WHERE year_[a_] > 2011 AND pick = \"28\"", "question": "what is the position when the year [A} is after 2011 and the pick is 28?", "context": "CREATE TABLE table_name_67 (position VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT player_name FROM table_name_5 WHERE pick = \"22\" AND year_[a_] > 1979", "question": "Who is the player when the pick is 22 and the year [A] is after 1979?", "context": "CREATE TABLE table_name_5 (player_name VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT player_name FROM table_name_75 WHERE pick = \"15\" AND year_[a_] = 2000", "question": "who is the player when the pick is 15 and the year [A] is 2000?", "context": "CREATE TABLE table_name_75 (player_name VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_45 WHERE score = 66 - 72 - 70 = 207", "question": "Which country was the player from who scored 66-72-70=207?", "context": "CREATE TABLE table_name_45 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_6 WHERE score = 70 - 69 - 68 = 207", "question": "What place was the player who scored 70-69-68=207?", "context": "CREATE TABLE table_name_6 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_12 WHERE place = \"t10\" AND score = 66 - 72 - 70 = 207", "question": "What country was the player in t10 place with a score of 66-72-70=207?", "context": "CREATE TABLE table_name_12 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_66 WHERE country = \"united states\" AND player = \"cristie kerr\"", "question": "What is the to par of United States' Cristie Kerr?", "context": "CREATE TABLE table_name_66 (to_par VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT original_artist FROM table_name_87 WHERE length = \"3:00\"", "question": "Who is the original artist of the 3:00 song?", "context": "CREATE TABLE table_name_87 (original_artist VARCHAR, length VARCHAR)"}, {"answer": "SELECT song FROM table_name_59 WHERE length = \"3:34\"", "question": "Which song lasts 3:34?", "context": "CREATE TABLE table_name_59 (song VARCHAR, length VARCHAR)"}, {"answer": "SELECT song FROM table_name_86 WHERE length = \"4:08\"", "question": "Which song lasts 4:08?", "context": "CREATE TABLE table_name_86 (song VARCHAR, length VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_96 WHERE nation = \"romania\" AND silver > 1", "question": "How many bronze medals for Romania when the silver count is more than 1?", "context": "CREATE TABLE table_name_96 (bronze INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT manager FROM table_name_96 WHERE losses < 287 AND wins < 80 AND years = \"1904\" AND wpct = 0.296", "question": "Which manager had less than 287 losses, less than 80 wins, a win percentage of 0.296, and was employed in 1904?", "context": "CREATE TABLE table_name_96 (manager VARCHAR, wpct VARCHAR, years VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT us_hot_100 FROM table_name_95 WHERE us_r & b = \"13\"", "question": "Which U.S. Hot has 13 as the U.S. R&B?", "context": "CREATE TABLE table_name_95 (us_hot_100 VARCHAR, us_r VARCHAR, b VARCHAR)"}, {"answer": "SELECT us_rap FROM table_name_15 WHERE album = \"life in the concrete jungle\"", "question": "What U.S. Rap has life in the concrete jungle as the album?", "context": "CREATE TABLE table_name_15 (us_rap VARCHAR, album VARCHAR)"}, {"answer": "SELECT notes FROM table_name_27 WHERE built = \"19th century\"", "question": "What are the Notes of the Mill Built in the 19th Century?", "context": "CREATE TABLE table_name_27 (notes VARCHAR, built VARCHAR)"}, {"answer": "SELECT type FROM table_name_84 WHERE name_of_mill = \"molen de stud\"", "question": "What is the Type of Mill at Molen de Stud?", "context": "CREATE TABLE table_name_84 (type VARCHAR, name_of_mill VARCHAR)"}, {"answer": "SELECT name_of_mill FROM table_name_73 WHERE built = \"1802\"", "question": "What is the Name of the Mill Built in 1802?", "context": "CREATE TABLE table_name_73 (name_of_mill VARCHAR, built VARCHAR)"}, {"answer": "SELECT location FROM table_name_50 WHERE built = \"early 19th century\"", "question": "What is the Location of the Mill Built in the Early 19th Century?", "context": "CREATE TABLE table_name_50 (location VARCHAR, built VARCHAR)"}, {"answer": "SELECT record FROM table_name_58 WHERE home = \"san francisco 49ers\" AND visitor = \"philadelphia eagles\"", "question": "What was the record for the game played by the home team San Francisco 49ers and visitor Philadelphia Eagles?", "context": "CREATE TABLE table_name_58 (record VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE date = \"september 27\"", "question": "What is the record for the game played on September 27?", "context": "CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_6 WHERE artist = \"henri d\u00e8s\" AND points < 8", "question": "What is the highest place of a song by Henri D\u00e8s that has fewer than 8 points?", "context": "CREATE TABLE table_name_6 (place INTEGER, artist VARCHAR, points VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_82 WHERE date = \"november 22, 2008\" AND result = \"1-0\"", "question": "What team was 2 on November 22, 2008 when the result was 1-0?", "context": "CREATE TABLE table_name_82 (team_2 VARCHAR, date VARCHAR, result VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_32 WHERE team_1 = \"tatung\" AND ground = \"national pei men senior high school\"", "question": "What team was 2 when Tatung was team 1 at National Pei Men Senior High School?", "context": "CREATE TABLE table_name_32 (team_2 VARCHAR, team_1 VARCHAR, ground VARCHAR)"}, {"answer": "SELECT ground FROM table_name_36 WHERE result = \"0-4\"", "question": "Where was the game played that has a result of 0-4?", "context": "CREATE TABLE table_name_36 (ground VARCHAR, result VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_90 WHERE team_1 = \"taipower\" AND result = \"0-1\"", "question": "What team is 2 when 1 is Taipower and the result is 0-1?", "context": "CREATE TABLE table_name_90 (team_2 VARCHAR, team_1 VARCHAR, result VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_32 WHERE ground = \"pailing sport park\" AND result = \"0-4\"", "question": "What team is 2 when the game result is 0-4 at Pailing Sport Park?", "context": "CREATE TABLE table_name_32 (team_2 VARCHAR, ground VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_24 WHERE draw < 12 AND artist = \"philipp kirkorov\" AND place < 17", "question": "What is the total point value when there are less than 12 draws, the rank is less than 17, and Philipp Kirkorov is the artist?", "context": "CREATE TABLE table_name_24 (points VARCHAR, place VARCHAR, draw VARCHAR, artist VARCHAR)"}, {"answer": "SELECT SUM(place) FROM table_name_22 WHERE draw < 16 AND english_translation = \"in love with you\" AND points < 1", "question": "What is the total ranking when there are less than 16 draws, less than 1 point, and the English translation is in love with you?", "context": "CREATE TABLE table_name_22 (place INTEGER, points VARCHAR, draw VARCHAR, english_translation VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_83 WHERE points > 31 AND place > 6 AND english_translation = \"listen to me\"", "question": "What is the highest draw number when there are more than 31 points, a rank greater than 6, and the English translation is listen to me?", "context": "CREATE TABLE table_name_83 (draw INTEGER, english_translation VARCHAR, points VARCHAR, place VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_15 WHERE county = \"green\"", "question": "What was the population of Green County?", "context": "CREATE TABLE table_name_15 (population INTEGER, county VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE opponent = \"minnesota\"", "question": "What was the score of the game against Minnesota?", "context": "CREATE TABLE table_name_69 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_21 WHERE date = \"july 7\"", "question": "What player had the high point on July 7?", "context": "CREATE TABLE table_name_21 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_6 WHERE single = \"i can't stay\"", "question": "What's the format of the single, I Can't Stay?", "context": "CREATE TABLE table_name_6 (format VARCHAR, single VARCHAR)"}, {"answer": "SELECT backed_with FROM table_name_24 WHERE record_label = \"wild world\" AND date > 2008", "question": "What's the Backed after 2008 with a label of Wild World?", "context": "CREATE TABLE table_name_24 (backed_with VARCHAR, record_label VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(date) FROM table_name_74 WHERE other_details = \"1000 copies\"", "question": "What's the date for Details of 1000 copies?", "context": "CREATE TABLE table_name_74 (date INTEGER, other_details VARCHAR)"}, {"answer": "SELECT nation FROM table_name_62 WHERE athlete = \"paavo nurmi\" AND medal_count < 12", "question": "What nation has paavo nurmi as the athlete, with a medal count less than 12?", "context": "CREATE TABLE table_name_62 (nation VARCHAR, athlete VARCHAR, medal_count VARCHAR)"}, {"answer": "SELECT sport FROM table_name_4 WHERE medal_count = 17", "question": "Which sport has 17 as the medal count?", "context": "CREATE TABLE table_name_4 (sport VARCHAR, medal_count VARCHAR)"}, {"answer": "SELECT record_medal_event FROM table_name_33 WHERE sport = \"athletics\" AND athlete = \"robert garrett\" AND medal_count < 3", "question": "What record medal event has athletics as the sport, with robert garrett as the athlete, and a medal count less than 3?", "context": "CREATE TABLE table_name_33 (record_medal_event VARCHAR, medal_count VARCHAR, sport VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_21 WHERE week = 3", "question": "What is the Opponent of the game in Week 3?", "context": "CREATE TABLE table_name_21 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_84 WHERE date = \"december 12, 2004\"", "question": "What is the Attendance of the game on December 12, 2004?", "context": "CREATE TABLE table_name_84 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_53 WHERE opponent = \"jacksonville jaguars\"", "question": "What is the Attendance of the game against Jacksonville Jaguars?", "context": "CREATE TABLE table_name_53 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE money___\u00a3__ = \"90,400\" AND country = \"south africa\" AND player = \"thomas aiken\"", "question": "Which Score has a Money ( \u00a3 ) of 90,400, and a Country of south africa, and a Player of thomas aiken? Question 1", "context": "CREATE TABLE table_name_38 (score VARCHAR, player VARCHAR, money___\u00a3__ VARCHAR, country VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_11 WHERE country = \"australia\"", "question": "How much Money( \u00a3 )australia has ?", "context": "CREATE TABLE table_name_11 (money___\u00a3__ VARCHAR, country VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_50 WHERE country = \"south africa\" AND to_par = \"+1\" AND player = \"ernie els\"", "question": "Count the Money ( \u00a3 ) of south africa with a To par of +1, and a Player of ernie els?", "context": "CREATE TABLE table_name_50 (money___\u00a3__ VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT place FROM table_name_22 WHERE player = \"tom watson\"", "question": "Where has a Player of tom watson?", "context": "CREATE TABLE table_name_22 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE to_par = \"+1\" AND country = \"sweden\"", "question": "Which Score has a To par of +1 in sweden?", "context": "CREATE TABLE table_name_67 (score VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_77 WHERE player = \"thomas aiken\"", "question": "Which To par is of thomas aiken?", "context": "CREATE TABLE table_name_77 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(expenditures_on_r) & d__billions_of_us$_, _ppp__ FROM table_name_32 WHERE country_region = \"croatia\" AND year > 2007", "question": "What is the average expenditures on R&D for Croatia after 2007?", "context": "CREATE TABLE table_name_32 (_ppp__ VARCHAR, d__billions_of_us$_ VARCHAR, expenditures_on_r INTEGER, country_region VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(expenditures_on_r) & d__billions_of_us$_, _ppp__ FROM table_name_94 WHERE country_region = \"poland\" AND year > 2011", "question": "What is the lowest expenditures on R&D for Poland after 2011?", "context": "CREATE TABLE table_name_94 (_ppp__ VARCHAR, d__billions_of_us$_ VARCHAR, expenditures_on_r INTEGER, country_region VARCHAR, year VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_66 WHERE round = \"first round\" AND competition = \"uefa cup\" AND score = \"3\u20131 (h), 2\u20130 (a)\"", "question": "What is the Opposition in the First Round of the UEFA Cup with a Score of 3\u20131 (h), 2\u20130 (a)?", "context": "CREATE TABLE table_name_66 (opposition VARCHAR, score VARCHAR, round VARCHAR, competition VARCHAR)"}, {"answer": "SELECT season FROM table_name_24 WHERE score = \"0\u20132 (a), 3\u20131 (h)\"", "question": "What is the Season of the game with a Score of 0\u20132 (a), 3\u20131 (h)?", "context": "CREATE TABLE table_name_24 (season VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_name_83 WHERE year_joined = 1966 AND previous_conference = \"noble county\" AND school = \"wawaka\"", "question": "Which Location has a Year Joined of 1966, and a Previous Conference of noble county, and a School of wawaka?", "context": "CREATE TABLE table_name_83 (location VARCHAR, school VARCHAR, year_joined VARCHAR, previous_conference VARCHAR)"}, {"answer": "SELECT SUM(year_left) FROM table_name_13 WHERE location = \"howe\"", "question": "How much Year Left has a Location of howe?", "context": "CREATE TABLE table_name_13 (year_left INTEGER, location VARCHAR)"}, {"answer": "SELECT school FROM table_name_8 WHERE year_left = 1966 AND mascot = \"indians\"", "question": "Which School has a Year Left of 1966, and a Mascot of indians?", "context": "CREATE TABLE table_name_8 (school VARCHAR, year_left VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_21 WHERE elector = \"giacomo colonna\"", "question": "Who was the Elevator of Giacomo Colonna?", "context": "CREATE TABLE table_name_21 (elevator VARCHAR, elector VARCHAR)"}, {"answer": "SELECT elevated FROM table_name_7 WHERE elevator = \"nicholas iii\" AND cardinalatial_order_and_title = \"cardinal-deacon of s. eustachio\"", "question": "What is the date of elevation for the Cardinal elevated by Nicholas III to the title of Cardinal-Deacon of S. Eustachio?", "context": "CREATE TABLE table_name_7 (elevated VARCHAR, elevator VARCHAR, cardinalatial_order_and_title VARCHAR)"}, {"answer": "SELECT elevated FROM table_name_91 WHERE cardinalatial_order_and_title = \"cardinal-priest of s. pudenziana\"", "question": "What was the date of elevation for the cardinal given the order and title of Cardinal-Priest of S. Pudenziana?", "context": "CREATE TABLE table_name_91 (elevated VARCHAR, cardinalatial_order_and_title VARCHAR)"}, {"answer": "SELECT games_behind__gb_ FROM table_name_49 WHERE division__div_ = \"oklahoma city thunder\"", "question": "What are the games behind for the Oklahoma City Thunder division?", "context": "CREATE TABLE table_name_49 (games_behind__gb_ VARCHAR, division__div_ VARCHAR)"}, {"answer": "SELECT highest_elevation FROM table_name_93 WHERE lowest_point = \"allaine river, national border\"", "question": "What is the highest elevation of a place where the lowest point is the Allaine River, National border?", "context": "CREATE TABLE table_name_93 (highest_elevation VARCHAR, lowest_point VARCHAR)"}, {"answer": "SELECT lowest_elevation FROM table_name_62 WHERE highest_point = \"mont raimeux\"", "question": "What is the lowest elevation value whose highest point is Mont Raimeux?", "context": "CREATE TABLE table_name_62 (lowest_elevation VARCHAR, highest_point VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_19 WHERE lowest_point = \"lake geneva\" AND canton = \"vaud\"", "question": "What rank is Vaud with the lowest point is Lake Geneva?", "context": "CREATE TABLE table_name_19 (rank INTEGER, lowest_point VARCHAR, canton VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_4 WHERE canton = \"schaffhausen\"", "question": "Wich rank is given to the Canton of Schaffhausen?", "context": "CREATE TABLE table_name_4 (rank INTEGER, canton VARCHAR)"}, {"answer": "SELECT highest_elevation FROM table_name_7 WHERE highest_point = \"schnebelhorn\"", "question": "What is the highest elevation for the highest point of Schnebelhorn?", "context": "CREATE TABLE table_name_7 (highest_elevation VARCHAR, highest_point VARCHAR)"}, {"answer": "SELECT highest_point FROM table_name_85 WHERE canton = \"vaud\"", "question": "What is the Canton of Vaud's highest point?", "context": "CREATE TABLE table_name_85 (highest_point VARCHAR, canton VARCHAR)"}, {"answer": "SELECT type FROM table_name_18 WHERE in_service > 2 AND vessel = \"kobben class\"", "question": "What type of ship is a Kobben class vessel that has been in service longer than 2?", "context": "CREATE TABLE table_name_18 (type VARCHAR, in_service VARCHAR, vessel VARCHAR)"}, {"answer": "SELECT unit FROM table_name_74 WHERE type = \"submarine\" AND origin = \"norway\"", "question": "What is the unit for a submarine type ship from Norway?", "context": "CREATE TABLE table_name_74 (unit VARCHAR, type VARCHAR, origin VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_50 WHERE record = \"32-25\"", "question": "Who was the opponent with a 32-25 record?", "context": "CREATE TABLE table_name_50 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_4 WHERE record = \"35-28\"", "question": "What is the location/ attendance for a 35-28 record?", "context": "CREATE TABLE table_name_4 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_38 WHERE result = \"nominated\" AND nominee_s_ = \"neal baer\"", "question": "What is the latest year when Neal Baer was a nominee, and the result was nominated?", "context": "CREATE TABLE table_name_38 (year INTEGER, result VARCHAR, nominee_s_ VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_91 WHERE nominee_s_ = \"neal baer\"", "question": "That is the total year that Neal Baer is a nominee?", "context": "CREATE TABLE table_name_91 (year INTEGER, nominee_s_ VARCHAR)"}, {"answer": "SELECT episode FROM table_name_52 WHERE result = \"nominated\" AND nominee_s_ = \"walon green, joe sachs\"", "question": "For what episode was the nominee (s) Walon Green, Joe Sachs nominated as a result?", "context": "CREATE TABLE table_name_52 (episode VARCHAR, result VARCHAR, nominee_s_ VARCHAR)"}, {"answer": "SELECT result FROM table_name_23 WHERE nominee_s_ = \"neal baer\"", "question": "Nominee Neal Baer had what result?", "context": "CREATE TABLE table_name_23 (result VARCHAR, nominee_s_ VARCHAR)"}, {"answer": "SELECT episode FROM table_name_25 WHERE year > 1998 AND nominee_s_ = \"john wells\"", "question": "What episode after 1998 had John Wells as the nominee?", "context": "CREATE TABLE table_name_25 (episode VARCHAR, year VARCHAR, nominee_s_ VARCHAR)"}, {"answer": "SELECT 153 AS kg FROM table_name_27 WHERE world_record = \"clean & jerk\"", "question": "Who has the world record of 153kg in the clean & jerk?", "context": "CREATE TABLE table_name_27 (world_record VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_29 WHERE sspec_number = \"slbeq(d0)\"", "question": "What's the release date for the processor spec number SLBEQ(d0)?", "context": "CREATE TABLE table_name_29 (release_date VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_27 WHERE model_number = \"core i7-940\"", "question": "What's the release date of model number CORE I7-940?", "context": "CREATE TABLE table_name_27 (release_date VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_name_12 WHERE i_o_bus = \"1 \u00d7 6.4 gt/s qpi\" AND part_number_s_ = \"bx80601975at80601002274aa\"", "question": "What's the release price of the processor with the part number bx80601975at80601002274aa, and has 1 \u00d7 6.4 gt/s qpi I/O?", "context": "CREATE TABLE table_name_12 (release_price___usd__ VARCHAR, i_o_bus VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_name_76 WHERE frequency = \"3.2 ghz\" AND i_o_bus = \"1 \u00d7 6.4 gt/s qpi\"", "question": "What's the release price of a processor that has a frequency of 3.2 ghz and 1 \u00d7 6.4 gt/s qpi I/O?", "context": "CREATE TABLE table_name_76 (release_price___usd__ VARCHAR, frequency VARCHAR, i_o_bus VARCHAR)"}, {"answer": "SELECT SUM(aids_orphans_as__percentage_of_orphans) FROM table_name_41 WHERE double__aids_related_ = \"41,000\" AND paternal__total_ > 442 OFFSET 000", "question": "What is the number of AIDS Orphans as % of Orphans when the Double (AIDS Related) number is 41,000, and the Paternal (Total) is larger than 442,000?", "context": "CREATE TABLE table_name_41 (aids_orphans_as__percentage_of_orphans INTEGER, double__aids_related_ VARCHAR, paternal__total_ VARCHAR)"}, {"answer": "SELECT MIN(total_orphans__total_) FROM table_name_66 WHERE total_orphans__aids_related_ = \"< 100\" AND maternal__total_ < 31 OFFSET 000", "question": "What is the Total Orphans number when the number of Total Orphans (AIDS Related) is < 100, and the Maternal (Total) is smaller than 31,000?", "context": "CREATE TABLE table_name_66 (total_orphans__total_ INTEGER, total_orphans__aids_related_ VARCHAR, maternal__total_ VARCHAR)"}, {"answer": "SELECT term_start FROM table_name_94 WHERE party = \"meretz\"", "question": "What's the term start date for Meretz?", "context": "CREATE TABLE table_name_94 (term_start VARCHAR, party VARCHAR)"}, {"answer": "SELECT SUM(clubs_involved) FROM table_name_88 WHERE clubs_remaining = 2", "question": "How many clubs are involved when the clubs remaining are 2?", "context": "CREATE TABLE table_name_88 (clubs_involved INTEGER, clubs_remaining VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_name_87 WHERE leagues_entering_at_this_round = \"tff third league & turkish regional amateur league\"", "question": "How many new entries when the leagues entering in the round are tff third league & turkish regional amateur league?", "context": "CREATE TABLE table_name_87 (new_entries_this_round VARCHAR, leagues_entering_at_this_round VARCHAR)"}, {"answer": "SELECT MIN(clubs_remaining) FROM table_name_65 WHERE round = \"second round\"", "question": "What is the number of clubs remaining in the second round?", "context": "CREATE TABLE table_name_65 (clubs_remaining INTEGER, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_51 WHERE clubs_involved = 4", "question": "Which round has 4 clubs involved?", "context": "CREATE TABLE table_name_51 (round VARCHAR, clubs_involved VARCHAR)"}, {"answer": "SELECT MIN(clubs_involved) FROM table_name_59 WHERE winners_from_previous_round = \"4\" AND clubs_remaining > 4", "question": "How many clubs are involved when there are 4 winners from the previous rounds and more than 4 clubs remaining?", "context": "CREATE TABLE table_name_59 (clubs_involved INTEGER, winners_from_previous_round VARCHAR, clubs_remaining VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_29 WHERE score = \"4 \u2013 2\"", "question": "What is the Away team at the game with a Score of 4 \u2013 2?", "context": "CREATE TABLE table_name_29 (away_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_34 WHERE attendance = \"4,658\"", "question": "What is the Tie no of the game with an Attendance of 4,658?", "context": "CREATE TABLE table_name_34 (tie_no VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_80 WHERE away_team = \"lincoln city\"", "question": "What is the Home team at the Lincoln City Away game?", "context": "CREATE TABLE table_name_80 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_4 WHERE score = \"1 \u2013 0\" AND attendance = \"1,791\"", "question": "What is the Away team at the game with a Score of 1 \u2013 0 and Attendance of 1,791?", "context": "CREATE TABLE table_name_4 (away_team VARCHAR, score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_98 WHERE score = \"2 \u2013 2\"", "question": "What is the Home team of the game with a Score of 2 \u2013 2?", "context": "CREATE TABLE table_name_98 (home_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_94 WHERE score = \"0 \u2013 0\"", "question": "What is the Attendance of the game with a Score of 0 \u2013 0?", "context": "CREATE TABLE table_name_94 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_36 WHERE developer_s_ = \"nintendo ead, monolith soft\"", "question": "What year had Nintendo EAD, Monolith Soft as developers?", "context": "CREATE TABLE table_name_36 (year INTEGER, developer_s_ VARCHAR)"}, {"answer": "SELECT location FROM table_name_48 WHERE designer = \"glen peloso\" AND restaurant_name = \"joe boo's cookoos\"", "question": "what is the location when the designer is glen peloso and the restaurant is joe boo's cookoos?", "context": "CREATE TABLE table_name_48 (location VARCHAR, designer VARCHAR, restaurant_name VARCHAR)"}, {"answer": "SELECT AVG(year_joined__or_joining_) FROM table_name_57 WHERE city = \"aurora\"", "question": "What year did the team from City of Aurora join?", "context": "CREATE TABLE table_name_57 (year_joined__or_joining_ INTEGER, city VARCHAR)"}, {"answer": "SELECT COUNT(enrollment_08_09) FROM table_name_93 WHERE school = \"franklin county\"", "question": "What was the total enrollment 08-09 of Franklin County?", "context": "CREATE TABLE table_name_93 (enrollment_08_09 VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_79 WHERE team_name = \"pirates\"", "question": "What school has a team called the Pirates?", "context": "CREATE TABLE table_name_79 (school VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_1 WHERE time = \"1:00.61\"", "question": "What is the rank of the team with a time of 1:00.61?", "context": "CREATE TABLE table_name_1 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_93 WHERE time = \"1:00.66\"", "question": "What's the lane with a time of 1:00.66?", "context": "CREATE TABLE table_name_93 (lane INTEGER, time VARCHAR)"}, {"answer": "SELECT rank FROM table_name_43 WHERE time = \"59.65\"", "question": "What's the rank when the time was 59.65?", "context": "CREATE TABLE table_name_43 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_64 WHERE opponent = \"new york\"", "question": "What is the record when they played New York?", "context": "CREATE TABLE table_name_64 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT county FROM table_name_24 WHERE year_joined = 1964 AND location = \"montezuma\"", "question": "Can you tell me the County that has the Year Joined of 1964, and the Location of montezuma?", "context": "CREATE TABLE table_name_24 (county VARCHAR, year_joined VARCHAR, location VARCHAR)"}, {"answer": "SELECT conference_joined FROM table_name_67 WHERE location = \"terre haute\" AND mascot = \"golden bears\"", "question": "Can you tell me the Conference Joined that has the Location of terre haute, and the Mascot of golden bears?", "context": "CREATE TABLE table_name_67 (conference_joined VARCHAR, location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_70 WHERE school = \"rosedale\"", "question": "Can you tell me the Mascot that has the School of rosedale?", "context": "CREATE TABLE table_name_70 (mascot VARCHAR, school VARCHAR)"}, {"answer": "SELECT conference_joined FROM table_name_88 WHERE mascot = \"little sycamores\"", "question": "Can you tell me the Conference Joined that has the Mascot of little sycamores?", "context": "CREATE TABLE table_name_88 (conference_joined VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT location FROM table_name_69 WHERE mascot = \"lakers\"", "question": "Can you tell me the Location that has the Mascot of lakers?", "context": "CREATE TABLE table_name_69 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT time FROM table_name_55 WHERE team = \"348cc k4 honda\" AND speed = \"97.743mph\"", "question": "What is the time of the rider from the 348cc K4 Honda team with a speed of 97.743mph?", "context": "CREATE TABLE table_name_55 (time VARCHAR, team VARCHAR, speed VARCHAR)"}, {"answer": "SELECT lane FROM table_name_30 WHERE time = \"8:34.25\"", "question": "What is the Lane of the swimmer with a Time of 8:34.25?", "context": "CREATE TABLE table_name_30 (lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT name FROM table_name_40 WHERE heat = 2 AND time = \"9:04.86\"", "question": "What is the Name of the swimmer with a Time of 9:04.86 in Heat 2?", "context": "CREATE TABLE table_name_40 (name VARCHAR, heat VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_21 WHERE round = 1 AND time = \"1:25\"", "question": "What is the Location of the Event in Round 1 with a Time of 1:25?", "context": "CREATE TABLE table_name_21 (location VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_52 WHERE last_appearance < 1984 AND appearances > 17 AND first_appearance < 1961 AND position = \"mf\"", "question": "What is the average goals when the last appearance was before 1984, there were more than 17 appearances, the first appearance was before 1961 and the position was mf?", "context": "CREATE TABLE table_name_52 (goals INTEGER, position VARCHAR, first_appearance VARCHAR, last_appearance VARCHAR, appearances VARCHAR)"}, {"answer": "SELECT school FROM table_name_18 WHERE year_left = 1966", "question": "what is the school that left in 1966?", "context": "CREATE TABLE table_name_18 (school VARCHAR, year_left VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_19 WHERE year_joined > 1952 AND school = \"moores hill\"", "question": "what is the mascot for moores hill that joined later than 1952?", "context": "CREATE TABLE table_name_19 (mascot VARCHAR, year_joined VARCHAR, school VARCHAR)"}, {"answer": "SELECT conference_joined FROM table_name_58 WHERE county = \"69 ripley\" AND year_joined = 1952 AND location = \"versailles\"", "question": "what is the conference joined for the county 69 ripley in 1952 in versailles?", "context": "CREATE TABLE table_name_58 (conference_joined VARCHAR, location VARCHAR, county VARCHAR, year_joined VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_91 WHERE county = \"78 switzerland\"", "question": "who is the mascot of the county 78 switzerland?", "context": "CREATE TABLE table_name_91 (mascot VARCHAR, county VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_52 WHERE lane < 8 AND nationality = \"canada\" AND rank < 8", "question": "What is the total time of the athlete from Canada with a lane less than 8 and a rank less than 8?", "context": "CREATE TABLE table_name_52 (time VARCHAR, rank VARCHAR, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(react) FROM table_name_53 WHERE time < 20.05 AND lane < 6", "question": "What is the total react number with a time less than 20.05 and a lane less than 6?", "context": "CREATE TABLE table_name_53 (react VARCHAR, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT AVG(react) FROM table_name_59 WHERE name = \"bryan barnett\" AND lane < 2", "question": "What is the average react of bryan barnett, who has a lane less than 2?", "context": "CREATE TABLE table_name_59 (react INTEGER, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT year_left FROM table_name_68 WHERE team_name = \"hornets\"", "question": "What year did the Hornets leave the conference?", "context": "CREATE TABLE table_name_68 (year_left VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT city FROM table_name_65 WHERE year_left = \"1949\"", "question": "In what city was the team that left the conference in 1949 based?", "context": "CREATE TABLE table_name_65 (city VARCHAR, year_left VARCHAR)"}, {"answer": "SELECT year_joined FROM table_name_6 WHERE city = \"winamac\"", "question": "What year did the team based in the city of Winamac join the conference?", "context": "CREATE TABLE table_name_6 (year_joined VARCHAR, city VARCHAR)"}, {"answer": "SELECT county FROM table_name_3 WHERE year_left = \"1993\"", "question": "From what county was the team that left the conference in 1993?", "context": "CREATE TABLE table_name_3 (county VARCHAR, year_left VARCHAR)"}, {"answer": "SELECT school FROM table_name_63 WHERE year_left = \"1992\"", "question": "From what school was the team that left the conference in 1992?", "context": "CREATE TABLE table_name_63 (school VARCHAR, year_left VARCHAR)"}, {"answer": "SELECT year_joined FROM table_name_10 WHERE school = \"western\"", "question": "In what year did the team from the Western school join the conference?", "context": "CREATE TABLE table_name_10 (year_joined VARCHAR, school VARCHAR)"}, {"answer": "SELECT AVG(place) FROM table_name_77 WHERE points < 1", "question": "What is the place when less than 1 point is scored?", "context": "CREATE TABLE table_name_77 (place INTEGER, points INTEGER)"}, {"answer": "SELECT MAX(draw) FROM table_name_36 WHERE points = 23", "question": "What is the highest draw number when 23 points are scored?", "context": "CREATE TABLE table_name_36 (draw INTEGER, points VARCHAR)"}, {"answer": "SELECT MIN(heat) FROM table_name_40 WHERE time = \"1:02.85\" AND lane > 7", "question": "What is the lowest heat that had a time of 1:02.85 in a lane larger than 7?", "context": "CREATE TABLE table_name_40 (heat INTEGER, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_75 WHERE heat < 7 AND name = \"elizabeth simmonds\"", "question": "What is the sum of the lanes before heat 7 that elizabeth simmonds swam?", "context": "CREATE TABLE table_name_75 (lane INTEGER, heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT s\u00fcdbayern FROM table_name_27 WHERE year = 1928", "question": "What's the S\u00fcdbayern in 1928?", "context": "CREATE TABLE table_name_27 (s\u00fcdbayern VARCHAR, year VARCHAR)"}, {"answer": "SELECT w\u00fcrttemberg FROM table_name_51 WHERE baden = \"karlsruher fv\" AND year > 1931", "question": "What's the W\u00fcrttemberg for Karlsruher FV happening after 1931?", "context": "CREATE TABLE table_name_51 (w\u00fcrttemberg VARCHAR, baden VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_78 WHERE baden = \"freiburger fc\"", "question": "What's the year that has a Baden Freiburger FC?", "context": "CREATE TABLE table_name_78 (year VARCHAR, baden VARCHAR)"}, {"answer": "SELECT w\u00fcrttemberg FROM table_name_42 WHERE year < 1929", "question": "What's the W\u00fcrttemberg in the year before 1929?", "context": "CREATE TABLE table_name_42 (w\u00fcrttemberg VARCHAR, year INTEGER)"}, {"answer": "SELECT nordbayern FROM table_name_92 WHERE year < 1932 AND w\u00fcrttemberg = \"union b\u00f6ckingen\"", "question": "What's the Nordbayern with a W\u00fcrttemberg of Union B\u00f6ckingen in the year before 1932?", "context": "CREATE TABLE table_name_92 (nordbayern VARCHAR, year VARCHAR, w\u00fcrttemberg VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_83 WHERE score = \"w 76-66\"", "question": "What was the high rebounds for the game that had a score of w 76-66?", "context": "CREATE TABLE table_name_83 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_79 WHERE record = \"16-6\"", "question": "What was the location/attendance for the game with a record of 16-6?", "context": "CREATE TABLE table_name_79 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_24 WHERE lane > 1 AND rank > 5 AND name = \"hsu chi-chieh\"", "question": "What is the nationality with a lane larger than 1, and a rank larger than 5, for Hsu Chi-Chieh?", "context": "CREATE TABLE table_name_24 (nationality VARCHAR, name VARCHAR, lane VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_31 WHERE time = \"1:56.64\" AND rank < 7", "question": "What is the lane with a time of 1:56.64, and a tank smaller than 7?", "context": "CREATE TABLE table_name_31 (lane VARCHAR, time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_84 WHERE nationality = \"japan\"", "question": "What is the rank of Japan?", "context": "CREATE TABLE table_name_84 (rank VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT time FROM table_name_54 WHERE nationality = \"russia\"", "question": "What is the time for Russia?", "context": "CREATE TABLE table_name_54 (time VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT nation FROM table_name_27 WHERE silver > 0 AND rank = \"1\"", "question": "What nation has more than 0 silver medals and is ranked 1?", "context": "CREATE TABLE table_name_27 (nation VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_66 WHERE total > 3 AND silver > 6", "question": "What is the rank of the country with total more than 3 and more than 6 silver?", "context": "CREATE TABLE table_name_66 (rank VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_54 WHERE gold > \"1\" AND bronze = 3 AND rank = \"1\" AND total < 12", "question": "What is the most silver won by the country with more than 1 gold, 3 bronze, ranked 1, and less than 12 as the total?", "context": "CREATE TABLE table_name_54 (silver INTEGER, total VARCHAR, rank VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT nation FROM table_name_58 WHERE total < 11 AND silver < 1 AND bronze < 1", "question": "What nation has a total less than 11, more than 1 silver and less than 1 bronze?", "context": "CREATE TABLE table_name_58 (nation VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_76 WHERE nation = \"norway\"", "question": "What is the most silver won by Norway?", "context": "CREATE TABLE table_name_76 (silver INTEGER, nation VARCHAR)"}, {"answer": "SELECT district FROM table_name_27 WHERE constituency_number = \"60\"", "question": "What district has a constituency of 60?", "context": "CREATE TABLE table_name_27 (district VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT district FROM table_name_88 WHERE name = \"rajnagar\"", "question": "What is district has a name of Rajnagar?", "context": "CREATE TABLE table_name_88 (district VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE away_team = \"brentford\"", "question": "What was the score for the away team of Brentford?", "context": "CREATE TABLE table_name_25 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_13 WHERE away_team = \"crewe alexandra\"", "question": "What was the score of the tied game or the away team of Crewe Alexandra?", "context": "CREATE TABLE table_name_13 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE away_team = \"wrexham\"", "question": "What was the date of the game for the Wrexham away team?", "context": "CREATE TABLE table_name_17 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_27 WHERE home_team = \"hartlepool united\"", "question": "What was the date of the game for the HartlePool United team?", "context": "CREATE TABLE table_name_27 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tickets_sold___available FROM table_name_18 WHERE venue = \"long beach arena\"", "question": "What is the number of tickets sold and available for the concert at Long Beach Arena?", "context": "CREATE TABLE table_name_18 (tickets_sold___available VARCHAR, venue VARCHAR)"}, {"answer": "SELECT city FROM table_name_42 WHERE venue = \"arco arena\"", "question": "Which city has a venue of the Arco Arena?", "context": "CREATE TABLE table_name_42 (city VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_92 WHERE opponent = \"kazushi sakuraba\"", "question": "What is the lowest round that has kazushi sakuraba as the opponent?", "context": "CREATE TABLE table_name_92 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_51 WHERE nation = \"japan (jpn)\" AND total < 5", "question": "Japan (JPN) with a total of less than 5, has what average gold medals?", "context": "CREATE TABLE table_name_51 (gold INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_86 WHERE gold > 0 AND silver < 0", "question": "What is the average bronze medal when gold is greater than 0, and there is less than 0 silver medals?", "context": "CREATE TABLE table_name_86 (bronze INTEGER, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_2 WHERE rank > 2 AND total < 2 AND silver > 0", "question": "What is the sum of bronze medals when the rank is greater than 2, and less than 2 total medals with silver medals being more than 0?", "context": "CREATE TABLE table_name_2 (bronze VARCHAR, silver VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_23 WHERE rank > 4 AND silver > 0 AND bronze < 1", "question": "With a greater than 4 rank, and the silver medal greater than 0, and the bronze medal less than 1, what is the average total?", "context": "CREATE TABLE table_name_23 (total INTEGER, bronze VARCHAR, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_49 WHERE bronze > 5", "question": "What is the fewest gold medals when the bronze medals is greater than 5?", "context": "CREATE TABLE table_name_49 (gold INTEGER, bronze INTEGER)"}, {"answer": "SELECT player FROM table_name_89 WHERE team = \"oakland raiders\"", "question": "What is the player when the team is oakland raiders?", "context": "CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_30 WHERE college = \"virginia tech\"", "question": "What is the team when the college is virginia tech?", "context": "CREATE TABLE table_name_30 (team VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_74 WHERE team = \"new york jets\"", "question": "What college has a team of new york jets?", "context": "CREATE TABLE table_name_74 (college VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_74 WHERE pick > 30 AND college = \"saginaw valley state\"", "question": "What team has a pick larger than 30, when the college is saginaw valley state?", "context": "CREATE TABLE table_name_74 (team VARCHAR, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_61 WHERE college = \"saginaw valley state\"", "question": "What is the highest pick when the college is saginaw valley state?", "context": "CREATE TABLE table_name_61 (pick INTEGER, college VARCHAR)"}, {"answer": "SELECT record FROM table_name_37 WHERE opponent = \"akiko inoue\"", "question": "what is the record when the opponent is akiko inoue?", "context": "CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_7 WHERE location = \"tokyo, japan\" AND record = \"6-1\"", "question": "what is the even when the location is tokyo, japan and the record is 6-1?", "context": "CREATE TABLE table_name_7 (event VARCHAR, location VARCHAR, record VARCHAR)"}, {"answer": "SELECT range FROM table_name_7 WHERE name = \"mount fukushima\" AND rank = 38", "question": "Which range includes Mount Fukushima, and is ranked 38?", "context": "CREATE TABLE table_name_7 (range VARCHAR, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(altitude__meters_) FROM table_name_93 WHERE range = \"belgica mountains\" AND name = \"mount launoit\"", "question": "What is the altitude (meters) is associated with the Name Mount Launoit, with the range as Belgica Mountains?", "context": "CREATE TABLE table_name_93 (altitude__meters_ INTEGER, range VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(altitude__meters_) FROM table_name_72 WHERE range = \"m\u00fchlig-hofmann mountains\" AND rank < 10", "question": "What is the Altitude (meters) associated with a rank smaller than 10, and the range M\u00fchlig-Hofmann Mountains?", "context": "CREATE TABLE table_name_72 (altitude__meters_ VARCHAR, range VARCHAR, rank VARCHAR)"}, {"answer": "SELECT name FROM table_name_79 WHERE range = \"sivorgfjella\" AND rank > 69 AND altitude__meters_ < 2154", "question": "What name is associated with a rank greater than 69, an altitude (meters) smaller than 2154, and a range of Sivorgfjella?", "context": "CREATE TABLE table_name_79 (name VARCHAR, altitude__meters_ VARCHAR, range VARCHAR, rank VARCHAR)"}, {"answer": "SELECT name FROM table_name_41 WHERE rank < 24 AND altitude__meters_ = 3085", "question": "What name is associated with a rank of less than 24, and an altitude (meters) of 3085?", "context": "CREATE TABLE table_name_41 (name VARCHAR, rank VARCHAR, altitude__meters_ VARCHAR)"}, {"answer": "SELECT primary_conference FROM table_name_56 WHERE ihsaa_football_class = \"a\" AND school = \"south decatur\"", "question": "What is the primary conference with a IHSAA Football Class of A, at South Decatur school?", "context": "CREATE TABLE table_name_56 (primary_conference VARCHAR, ihsaa_football_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT location FROM table_name_28 WHERE county = \"30 hancock\"", "question": "What is the Location with a county of 30 Hancock?", "context": "CREATE TABLE table_name_28 (location VARCHAR, county VARCHAR)"}, {"answer": "SELECT county FROM table_name_36 WHERE ihsaa_football_class = \"a\" AND mascot = \"royals\"", "question": "What county has an IHSAA Football Class of A, and a Mascot of royals?", "context": "CREATE TABLE table_name_36 (county VARCHAR, ihsaa_football_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT school FROM table_name_74 WHERE county = \"69 ripley\"", "question": "What school has a county of 69 ripley?", "context": "CREATE TABLE table_name_74 (school VARCHAR, county VARCHAR)"}, {"answer": "SELECT enrollment FROM table_name_9 WHERE mascot = \"fighting '59ers\"", "question": "What is the enrollment for the school with the mascot of the Fighting '59ers?", "context": "CREATE TABLE table_name_9 (enrollment VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT nation FROM table_name_32 WHERE total < 2 AND bronze < 1 AND silver = 1", "question": "What nation has a total less than 2, silver of 1 and bronze less than 1?", "context": "CREATE TABLE table_name_32 (nation VARCHAR, silver VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_25 WHERE bronze = 3 AND gold < 1 AND silver < 0", "question": "What's the total with silver being less than 0, less than 1 gold, and 3 bronze?", "context": "CREATE TABLE table_name_25 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT time FROM table_name_43 WHERE heat > 4 AND nationality = \"australia\"", "question": "What's Australia's time in the heat more than 4?", "context": "CREATE TABLE table_name_43 (time VARCHAR, heat VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_43 WHERE heat = 3 AND name = \"sara isakovi\u010d\"", "question": "What's Sara Isakovi\u010d's lane number that had a heat of 3?", "context": "CREATE TABLE table_name_43 (lane INTEGER, heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_64 WHERE time = \"2:08.54\"", "question": "What's the heat that was timed 2:08.54?", "context": "CREATE TABLE table_name_64 (heat VARCHAR, time VARCHAR)"}, {"answer": "SELECT director FROM table_name_94 WHERE title = \"fish tales\"", "question": "Who is the Director of Fish Tales?", "context": "CREATE TABLE table_name_94 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_40 WHERE release_date = \"1936-08-29\"", "question": "What was released on 1936-08-29?", "context": "CREATE TABLE table_name_40 (title VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_50 WHERE title = \"milk and money\"", "question": "What is the release date of Milk and Money?", "context": "CREATE TABLE table_name_50 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_95 WHERE title = \"i wanna play house\"", "question": "What is the release date of I Wanna Play House?", "context": "CREATE TABLE table_name_95 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT director FROM table_name_31 WHERE title = \"little beau porky\"", "question": "Who is the director of Little Beau Porky?", "context": "CREATE TABLE table_name_31 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_59 WHERE title = \"the blow out\"", "question": "What is the release date of The Blow Out?", "context": "CREATE TABLE table_name_59 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT author FROM table_name_18 WHERE company = \"buzz productions theater\"", "question": "Who was the author for company Buzz Productions Theater?", "context": "CREATE TABLE table_name_18 (author VARCHAR, company VARCHAR)"}, {"answer": "SELECT country FROM table_name_15 WHERE play = \"cyclops\"", "question": "What country had the play Cyclops?", "context": "CREATE TABLE table_name_15 (country VARCHAR, play VARCHAR)"}, {"answer": "SELECT country FROM table_name_5 WHERE play = \"medea\"", "question": "What country had the play Medea?", "context": "CREATE TABLE table_name_5 (country VARCHAR, play VARCHAR)"}, {"answer": "SELECT play FROM table_name_18 WHERE country = \"belgium\"", "question": "What play is from the country Belgium?", "context": "CREATE TABLE table_name_18 (play VARCHAR, country VARCHAR)"}, {"answer": "SELECT play FROM table_name_67 WHERE author = \"aeschylus\" AND base = \"athens\"", "question": "What play has a base of Athens and was written by Aeschylus?", "context": "CREATE TABLE table_name_67 (play VARCHAR, author VARCHAR, base VARCHAR)"}, {"answer": "SELECT company FROM table_name_45 WHERE country = \"greece\" AND author = \"aeschylus\"", "question": "What is the company from Greece with author Aeschylus?", "context": "CREATE TABLE table_name_45 (company VARCHAR, country VARCHAR, author VARCHAR)"}, {"answer": "SELECT coaster_name FROM table_name_40 WHERE year_opened = \"1978\" AND track = \"wooden\"", "question": "What is the coaster name that was opened in 1978, and have wooden track?", "context": "CREATE TABLE table_name_40 (coaster_name VARCHAR, year_opened VARCHAR, track VARCHAR)"}, {"answer": "SELECT year_opened FROM table_name_57 WHERE coaster_name = \"le monstre\"", "question": "Which year opened has le monstre coaster?", "context": "CREATE TABLE table_name_57 (year_opened VARCHAR, coaster_name VARCHAR)"}, {"answer": "SELECT coaster_name FROM table_name_87 WHERE location = \"sandusky, ohio\"", "question": "Which coaster is located in sandusky, Ohio?", "context": "CREATE TABLE table_name_87 (coaster_name VARCHAR, location VARCHAR)"}, {"answer": "SELECT year_opened FROM table_name_50 WHERE location = \"west mifflin, pennsylvania\"", "question": "Which year opened is located in west mifflin, pennsylvania?", "context": "CREATE TABLE table_name_50 (year_opened VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(league_cup_goals) FROM table_name_14 WHERE fa_cup_goals > 0 AND fa_cup_apps > 2", "question": "What is the lowest league cup goals for the entry with fa cup goals greater than 0 and FA cup apps larger than 2?", "context": "CREATE TABLE table_name_14 (league_cup_goals INTEGER, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT SUM(league_cup_apps) FROM table_name_63 WHERE fa_cup_goals > 0 AND fa_cup_apps < 2", "question": "What is the sum of league cup appearances for the players with FA cup goals larger than 0 and FA cup appearances less than 2?", "context": "CREATE TABLE table_name_63 (league_cup_apps INTEGER, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT MAX(league_cup_apps) FROM table_name_81 WHERE league_cup_goals = 0 AND fa_cup_apps = 2 AND league_goals = 4", "question": "What is the highest league cup appearances for the player with league cup goals of 0, and FA cup appearances of 2, and 4 league goals?", "context": "CREATE TABLE table_name_81 (league_cup_apps INTEGER, league_goals VARCHAR, league_cup_goals VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT game FROM table_name_32 WHERE location_attendance = \"omni coliseum\" AND score = \"w 105-95\"", "question": "What game was played at Omni Coliseum with a w 105-95 score?", "context": "CREATE TABLE table_name_32 (game VARCHAR, location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE record = \"10-8\"", "question": "When did the team have a 10-8 record?", "context": "CREATE TABLE table_name_26 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE record = \"11-8\"", "question": "When was 11-8 the record?", "context": "CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_24 WHERE drawn < 2 AND lost < 9 AND points > 24", "question": "What is the total number for the position that has less than 2 draws, less than 9 losses and more than 24?", "context": "CREATE TABLE table_name_24 (position VARCHAR, points VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_62 WHERE drawn > 0 AND lost < 3 AND points < 27", "question": "What is the highest played with more than 0 draws, less than 3 losses, and less than 27 points?", "context": "CREATE TABLE table_name_62 (played INTEGER, points VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_90 WHERE points = 8 AND position > 6", "question": "What is the total number played with 8 points and a position more than 6?", "context": "CREATE TABLE table_name_90 (played VARCHAR, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_71 WHERE drawn = 1 AND points < 7", "question": "What is the total number played with 1 drawn, and less than 7 points?", "context": "CREATE TABLE table_name_71 (played VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_40 WHERE bronze > 1 AND total > 48", "question": "What is the most silver when bronze is more than 1 and total is more than 48?", "context": "CREATE TABLE table_name_40 (silver INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_94 WHERE total = 9", "question": "what is the most bronze when the total is 9?", "context": "CREATE TABLE table_name_94 (bronze INTEGER, total VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_51 WHERE nation = \"soviet union\" AND total < 11", "question": "what is the least bronze when the nation is soviet union and the total is less than 11?", "context": "CREATE TABLE table_name_51 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT category FROM table_name_84 WHERE nominee_s_ = \"hy conrad\" AND year = 2003", "question": "What is the category when Hy Conrad nominated in 2003?", "context": "CREATE TABLE table_name_84 (category VARCHAR, nominee_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(long) FROM table_name_28 WHERE gain < 0", "question": "What is the long figure when gain is less than 0?", "context": "CREATE TABLE table_name_28 (long INTEGER, gain INTEGER)"}, {"answer": "SELECT AVG(loss) FROM table_name_12 WHERE avg_g < 16.7 AND long > 4 AND gain = 104", "question": "What is the loss when the average/gain is less than 16.7, gain is 104 and long is larger than 4?", "context": "CREATE TABLE table_name_12 (loss INTEGER, gain VARCHAR, avg_g VARCHAR, long VARCHAR)"}, {"answer": "SELECT time FROM table_name_9 WHERE notes = \"sc/d\" AND country = \"estonia\"", "question": "What is the time for Estonia with sc/d notes?", "context": "CREATE TABLE table_name_9 (time VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT time FROM table_name_55 WHERE notes = \"sc/d\" AND rank > 5", "question": "What is the time for the rank after 5 with sc/d notes?", "context": "CREATE TABLE table_name_55 (time VARCHAR, notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT time FROM table_name_26 WHERE athlete = \"law hiu fung\"", "question": "What was Law Hiu Fung's time?", "context": "CREATE TABLE table_name_26 (time VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT time FROM table_name_27 WHERE notes = \"sc/d\" AND rank > 5", "question": "What is the time for the rank after 5 with sc/d notes?", "context": "CREATE TABLE table_name_27 (time VARCHAR, notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_56 WHERE notes = \"sa/b\" AND time = \"6:52.70\"", "question": "What is the highest rank for a 6:52.70 time and notes of sa/b?", "context": "CREATE TABLE table_name_56 (rank INTEGER, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_31 WHERE name = \"paul biedermann\"", "question": "What is the lowest rank that has paul biedermann as the name?", "context": "CREATE TABLE table_name_31 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_32 WHERE rank = 2", "question": "What nationality has 2 as the rank?", "context": "CREATE TABLE table_name_32 (nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_38 WHERE name = \"nimrod shapira bar-or\"", "question": "What is the highest lane that has nimrod shapira bar-or as the name?", "context": "CREATE TABLE table_name_38 (lane INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_44 WHERE result = \"nominated\"", "question": "What is the latest year they were nominated?", "context": "CREATE TABLE table_name_44 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_22 WHERE category = \"choice tv actor: drama\"", "question": "What is the result of the choice tv actor: drama category?", "context": "CREATE TABLE table_name_22 (result VARCHAR, category VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_85 WHERE position < 8 AND played < 14", "question": "Which Drawn has a Position smaller than 8, and a Played smaller than 14?", "context": "CREATE TABLE table_name_85 (drawn INTEGER, position VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_24 WHERE drawn < 2 AND lost = 12 AND name = \"ev bad w\u00f6rishofen\"", "question": "Which Points have a Drawn smaller than 2, and a Lost of 12, and a Name of ev bad w\u00f6rishofen?", "context": "CREATE TABLE table_name_24 (points INTEGER, name VARCHAR, drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT place FROM table_name_74 WHERE player = \"lee westwood\"", "question": "What place did Lee Westwood finish in?", "context": "CREATE TABLE table_name_74 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_15 WHERE score = 67 - 68 = 135", "question": "What is the to par score of the player that had a score of 67-68=135?", "context": "CREATE TABLE table_name_15 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT televote_points FROM table_name_43 WHERE final_points = \"2\"", "question": "What Televote Points had a Final Points score of 2?", "context": "CREATE TABLE table_name_43 (televote_points VARCHAR, final_points VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_43 WHERE televote_points = \"8\"", "question": "Which Draw had 8 Televote Points?", "context": "CREATE TABLE table_name_43 (draw VARCHAR, televote_points VARCHAR)"}, {"answer": "SELECT jury_points FROM table_name_5 WHERE televote_points = \"3\"", "question": "What was the Jury Points value when there were 3 Televote Points?", "context": "CREATE TABLE table_name_5 (jury_points VARCHAR, televote_points VARCHAR)"}, {"answer": "SELECT player FROM table_name_3 WHERE to_par = \"+4\" AND year_s__won = \"1995\"", "question": "Which player was +4 to par and won the Open in 1995?", "context": "CREATE TABLE table_name_3 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT player FROM table_name_81 WHERE to_par = \"+8\"", "question": "Which player has a to par of +8?", "context": "CREATE TABLE table_name_81 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT country FROM table_name_16 WHERE rank < 2", "question": "What country is ranked smaller than 2?", "context": "CREATE TABLE table_name_16 (country VARCHAR, rank INTEGER)"}, {"answer": "SELECT rank FROM table_name_70 WHERE time = \"6:50.48\"", "question": "What is the rank when the time is 6:50.48?", "context": "CREATE TABLE table_name_70 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_56 WHERE notes = \"sa/b\" AND time = \"6:39.07\"", "question": "What is the highest rank with the notes of sa/b, and a time of 6:39.07?", "context": "CREATE TABLE table_name_56 (rank INTEGER, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT notes FROM table_name_31 WHERE rank > 4 AND country = \"south korea\"", "question": "What shows for notes when rank is more than 4, and country is South Korea?", "context": "CREATE TABLE table_name_31 (notes VARCHAR, rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT first_issue FROM table_name_89 WHERE title = \"bamboo blade\"", "question": "What is the First Issue date of Bamboo Blade?", "context": "CREATE TABLE table_name_89 (first_issue VARCHAR, title VARCHAR)"}, {"answer": "SELECT first_issue FROM table_name_1 WHERE last_issue = \"july 2010\"", "question": "What is the First issue date of the title with a Last Issue of July 2010?", "context": "CREATE TABLE table_name_1 (first_issue VARCHAR, last_issue VARCHAR)"}, {"answer": "SELECT first_issue FROM table_name_85 WHERE title = \"soul eater\"", "question": "What is the First Issue date of Soul Eater?", "context": "CREATE TABLE table_name_85 (first_issue VARCHAR, title VARCHAR)"}, {"answer": "SELECT author FROM table_name_87 WHERE first_issue = \"september 2010\"", "question": "What is the Author of the Title with a First Issue of September 2010?", "context": "CREATE TABLE table_name_87 (author VARCHAR, first_issue VARCHAR)"}, {"answer": "SELECT author FROM table_name_1 WHERE last_issue = \"ongoing\"", "question": "What is the Author of the Title with an Ongoing Last Issue?", "context": "CREATE TABLE table_name_1 (author VARCHAR, last_issue VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_61 WHERE team = \"presidente hayes\" AND draws > 4", "question": "What is the highest number of losses for Presidente Hayes, when the draws were more than 4?", "context": "CREATE TABLE table_name_61 (losses INTEGER, team VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_90 WHERE position > 6 AND conceded < 19", "question": "What is the number of wins when position was larger than 6, and conceded was smaller than 19?", "context": "CREATE TABLE table_name_90 (wins VARCHAR, position VARCHAR, conceded VARCHAR)"}, {"answer": "SELECT losses FROM table_name_36 WHERE draws < 4 AND points = 9", "question": "What is the number of losses when there were less than 4 draws, and points were 9?", "context": "CREATE TABLE table_name_36 (losses VARCHAR, draws VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_25 WHERE scored < 26 AND conceded > 23", "question": "What is the number of wins when scored was less than 26, and conceded was larger than 23?", "context": "CREATE TABLE table_name_25 (wins INTEGER, scored VARCHAR, conceded VARCHAR)"}, {"answer": "SELECT series FROM table_name_61 WHERE season = 2009", "question": "What was the series in season 2009?", "context": "CREATE TABLE table_name_61 (series VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_67 WHERE points = 97 AND season < 2009", "question": "What was the lowest amount of wins before season 2009 for 97 points?", "context": "CREATE TABLE table_name_67 (wins INTEGER, points VARCHAR, season VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_29 WHERE season > 2008 AND podiums > 6", "question": "How many wins had a podium larger than 6 after season 2008?", "context": "CREATE TABLE table_name_29 (wins VARCHAR, season VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE week > 1 AND opponent = \"detroit lions\"", "question": "what is the date for the week larger than 1 and the opponent detroit lions?", "context": "CREATE TABLE table_name_23 (date VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_41 WHERE attendance = 54 OFFSET 714", "question": "what is the lowest week when the attendance is 54,714?", "context": "CREATE TABLE table_name_41 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_9 WHERE react = 0.248", "question": "Which Athlete has a Reaction of 0.248?", "context": "CREATE TABLE table_name_9 (athlete VARCHAR, react VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_98 WHERE react = 0.198 AND time < 46.3", "question": "Which Rank has a Reaction of 0.198, and a Time smaller than 46.3?", "context": "CREATE TABLE table_name_98 (rank INTEGER, react VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_8 WHERE time > 47.83", "question": "Which Lane has a Time larger than 47.83?", "context": "CREATE TABLE table_name_8 (lane INTEGER, time INTEGER)"}, {"answer": "SELECT AVG(react) FROM table_name_16 WHERE rank < 4 AND nationality = \"trinidad and tobago\" AND time > 45.13", "question": "Which Reaction has a Rank smaller than 4, and a Nationality of trinidad and tobago, and a Time larger than 45.13?", "context": "CREATE TABLE table_name_16 (react INTEGER, time VARCHAR, rank VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(rank_final) FROM table_name_68 WHERE year > 2008 AND apparatus = \"balance beam\" AND rank_qualifying > 4", "question": "Count the Rank-Final which has a Year larger than 2008, and an Apparatus of balance beam, and a Rank-Qualifying larger than 4?", "context": "CREATE TABLE table_name_68 (rank_final VARCHAR, rank_qualifying VARCHAR, year VARCHAR, apparatus VARCHAR)"}, {"answer": "SELECT MIN(score_final) FROM table_name_26 WHERE rank_final = 7 AND year > 2009", "question": "Which the lowest Score-Fina has a Rank-Final of 7 and a Year larger than 2009?", "context": "CREATE TABLE table_name_26 (score_final INTEGER, rank_final VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_8 WHERE rank_final < 2 AND apparatus = \"team\" AND score_qualifying < 248.275", "question": "Name the Year with a Rank-Final smaller than 2, an Apparatus of team, and a Score-Qualifying smaller than 248.275?", "context": "CREATE TABLE table_name_8 (year INTEGER, score_qualifying VARCHAR, rank_final VARCHAR, apparatus VARCHAR)"}, {"answer": "SELECT pick FROM table_name_54 WHERE position = \"defensive end\" AND team = \"new york jets\"", "question": "What's the pick for the New York jets with a defensive end?", "context": "CREATE TABLE table_name_54 (pick VARCHAR, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT pick FROM table_name_94 WHERE college = \"georgia tech\"", "question": "What's the pick for Georgia tech?", "context": "CREATE TABLE table_name_94 (pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_54 WHERE position = \"halfback\"", "question": "Who plays halfback?", "context": "CREATE TABLE table_name_54 (player VARCHAR, position VARCHAR)"}, {"answer": "SELECT team FROM table_name_1 WHERE college = \"washington\"", "question": "Who is the team for Washington College?", "context": "CREATE TABLE table_name_1 (team VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_98 WHERE attendance = 93 OFFSET 039", "question": "What is the Rank of the game with an Attendance of 93,039?", "context": "CREATE TABLE table_name_98 (rank VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT fuel_system FROM table_name_60 WHERE model = \"diesel engines\"", "question": "What fuel system does the diesel engines model have?", "context": "CREATE TABLE table_name_60 (fuel_system VARCHAR, model VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_64 WHERE model = \"petrol engines\"", "question": "What is the displacement for the petrol engines model?", "context": "CREATE TABLE table_name_64 (displacement VARCHAR, model VARCHAR)"}, {"answer": "SELECT number_of_electorates__2009_ FROM table_name_94 WHERE name = \"gwalior rural\"", "question": "What is the size of the 2009 electorate for Gwalior Rural?", "context": "CREATE TABLE table_name_94 (number_of_electorates__2009_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT eliminated FROM table_name_74 WHERE entered > 3 AND time = \"35:55\"", "question": "Who was eliminated that entered after number 3 and lasted 35:55?", "context": "CREATE TABLE table_name_74 (eliminated VARCHAR, entered VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_30 WHERE position = \"13th\"", "question": "What is the average year in which the finish position was 13th?", "context": "CREATE TABLE table_name_30 (year INTEGER, position VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_68 WHERE competition = \"olympic games\"", "question": "What is the average year for the Olympic Games?", "context": "CREATE TABLE table_name_68 (year INTEGER, competition VARCHAR)"}, {"answer": "SELECT label FROM table_name_22 WHERE catalog = \"rtradcd491\" AND date = \"september 20, 2008\"", "question": "What is the Label of the September 20, 2008 release with Catalog number RTRADCD491?", "context": "CREATE TABLE table_name_22 (label VARCHAR, catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_41 WHERE catalog = \"rtradcd491\" AND date = \"september 22, 2008\"", "question": "What is the Format of the September 22, 2008 release with Catalog number RTRADCD491?", "context": "CREATE TABLE table_name_41 (format VARCHAR, catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_15 WHERE catalog = \"rtradlp491\"", "question": "What is the Format of the release with Catalog number RTRADLP491?", "context": "CREATE TABLE table_name_15 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_51 WHERE catalog = \"2508668\"", "question": "What is the Label of the Release with Catalog number 2508668?", "context": "CREATE TABLE table_name_51 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_86 WHERE catalog = \"2508668\"", "question": "What is the Format of the release with Catalog number 2508668?", "context": "CREATE TABLE table_name_86 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_29 WHERE label = \"warner music canada\"", "question": "What is the Region of the Warner Music Canada Label release?", "context": "CREATE TABLE table_name_29 (region VARCHAR, label VARCHAR)"}, {"answer": "SELECT developer_s_ FROM table_name_68 WHERE game = \"portal\"", "question": "Who were the developers for Portal?", "context": "CREATE TABLE table_name_68 (developer_s_ VARCHAR, game VARCHAR)"}, {"answer": "SELECT developer_s_ FROM table_name_71 WHERE year > 2010 AND genre = \"action rpg\"", "question": "Who were the developers for the Action RPG made after 2010?", "context": "CREATE TABLE table_name_71 (developer_s_ VARCHAR, year VARCHAR, genre VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_4 WHERE iata = \"tr\"", "question": "Which Callsign has an IATA of tr?", "context": "CREATE TABLE table_name_4 (callsign VARCHAR, iata VARCHAR)"}, {"answer": "SELECT commenced_operations FROM table_name_10 WHERE airline = \"valuair\"", "question": "Which Commenced operations have an Airline of valuair?", "context": "CREATE TABLE table_name_10 (commenced_operations VARCHAR, airline VARCHAR)"}, {"answer": "SELECT MAX(commenced_operations) FROM table_name_39 WHERE airline = \"valuair\"", "question": "Which Commenced operations have an Airline of valuair?", "context": "CREATE TABLE table_name_39 (commenced_operations INTEGER, airline VARCHAR)"}, {"answer": "SELECT iata FROM table_name_14 WHERE icao = \"slk\"", "question": "Which IATA has a ICAO of slk?", "context": "CREATE TABLE table_name_14 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT SUM(viewers) FROM table_name_71 WHERE rank < 2", "question": "How many Viewers have a Rank smaller than 2?", "context": "CREATE TABLE table_name_71 (viewers INTEGER, rank INTEGER)"}, {"answer": "SELECT COUNT(longitude) FROM table_name_20 WHERE ansi_code < 1036534 AND water__sqmi_ = 0 AND geo_id > 3809959540", "question": "What is the longitude for the Township that has a ANSI code less than 1036534, a water (sqmi) of 0, and a GEO ID greater than 3809959540?", "context": "CREATE TABLE table_name_20 (longitude VARCHAR, geo_id VARCHAR, ansi_code VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT COUNT(pop__2010_) FROM table_name_24 WHERE longitude = -97.578927", "question": "What is the population in 2010 for the longitude of -97.578927?", "context": "CREATE TABLE table_name_24 (pop__2010_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT SUM(pop__2010_) FROM table_name_17 WHERE land___sqmi__ < 34.424 AND county = \"mountrail\" AND geo_id < 3806159940", "question": "What is the total population in 2010 for the township located in Mountrail which has land less than 34.424 sq miles and a GEO ID less than 3806159940?", "context": "CREATE TABLE table_name_17 (pop__2010_ INTEGER, geo_id VARCHAR, land___sqmi__ VARCHAR, county VARCHAR)"}, {"answer": "SELECT MAX(latitude) FROM table_name_4 WHERE ansi_code > 1759541 AND pop__2010_ = 72", "question": "What is the highest recorded latitude for the township that has an ANSI code greater than 1759541 and a population in 2010 of 72?", "context": "CREATE TABLE table_name_4 (latitude INTEGER, ansi_code VARCHAR, pop__2010_ VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_97 WHERE rank > 1 AND lane > 7 AND nationality = \"china\"", "question": "Which Athlete has a Rank larger than 1, and a Lane larger than 7, and a Nationality of china?", "context": "CREATE TABLE table_name_97 (athlete VARCHAR, nationality VARCHAR, rank VARCHAR, lane VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_36 WHERE time > 13.59 AND rank > 8", "question": "How many Lanes have a Time larger than 13.59, and a Rank larger than 8?", "context": "CREATE TABLE table_name_36 (lane INTEGER, time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_92 WHERE nationality = \"france\" AND rank > 8", "question": "How many lanes have a Nationality of france, and a Rank larger than 8?", "context": "CREATE TABLE table_name_92 (lane INTEGER, nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT game FROM table_name_92 WHERE developer_s_ = \"nintendo\" AND platform_s_ = \"gamecube\"", "question": "What game was developed by Nintendo for the Gamecube platform?", "context": "CREATE TABLE table_name_92 (game VARCHAR, developer_s_ VARCHAR, platform_s_ VARCHAR)"}, {"answer": "SELECT genre FROM table_name_50 WHERE game = \"super mario galaxy\"", "question": "What is the genre of Super Mario Galaxy?", "context": "CREATE TABLE table_name_50 (genre VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_57 WHERE rank_among_provinces < 5", "question": "What is the highest population for the province having a rank under 5?", "context": "CREATE TABLE table_name_57 (population INTEGER, rank_among_provinces INTEGER)"}, {"answer": "SELECT comp FROM table_name_1 WHERE date = \"1998-04-22\"", "question": "What's the comp for 1998-04-22?", "context": "CREATE TABLE table_name_1 (comp VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE venue = \"olympic stadium tokyo, japan\"", "question": "What's the score at Olympic Stadium Tokyo, Japan?", "context": "CREATE TABLE table_name_49 (score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT comp FROM table_name_60 WHERE venue = \"olympic stadium tokyo, japan\"", "question": "What's the comp in Olympic Stadium Tokyo, Japan?", "context": "CREATE TABLE table_name_60 (comp VARCHAR, venue VARCHAR)"}, {"answer": "SELECT report FROM table_name_31 WHERE venue = \"king baudouin stadium brussels, belgium\"", "question": "What's the report in King Baudouin Stadium Brussels, Belgium?", "context": "CREATE TABLE table_name_31 (report VARCHAR, venue VARCHAR)"}, {"answer": "SELECT percentage_lost FROM table_name_93 WHERE starting_weight__kg_ > 102 AND weight_lost__kg_ = 46.9", "question": "What is the Percentage Lost for the contestant with a starting weight above 102 kg who lost 46.9 kg?", "context": "CREATE TABLE table_name_93 (percentage_lost VARCHAR, starting_weight__kg_ VARCHAR, weight_lost__kg_ VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_95 WHERE time = \"1:57.71\"", "question": "What lane has a time of 1:57.71?", "context": "CREATE TABLE table_name_95 (lane INTEGER, time VARCHAR)"}, {"answer": "SELECT name FROM table_name_32 WHERE rank > 3 AND lane < 6 AND time = \"1:58.15\"", "question": "Who had a larger rank than 3, less than 6 lanes, and a time of 1:58.15?", "context": "CREATE TABLE table_name_32 (name VARCHAR, time VARCHAR, rank VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(crude_death_rate__per_1000_) FROM table_name_51 WHERE deaths = \"768\" AND crude_birth_rate__per_1000_ < 29.7", "question": "Which Crude death rate (per 1000) has Deaths of 768, and a Crude birth rate (per 1000) smaller than 29.7?", "context": "CREATE TABLE table_name_51 (crude_death_rate__per_1000_ INTEGER, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_91 WHERE opponent = \"perth glory\" AND round = \"9\"", "question": "Which Attendance has an Opponent of perth glory, and a Round of 9?", "context": "CREATE TABLE table_name_91 (attendance INTEGER, opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_91 WHERE rider = \"darren gilpin\"", "question": "What is the lowest rank of rider darren gilpin?", "context": "CREATE TABLE table_name_91 (rank INTEGER, rider VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_66 WHERE rider = \"colin martin\"", "question": "What is the highest rank of rider colin martin?", "context": "CREATE TABLE table_name_66 (rank INTEGER, rider VARCHAR)"}, {"answer": "SELECT tuesday FROM table_name_77 WHERE monday = \"fox sports primetime\"", "question": "What is shown on Tuesday when Monday is showing Fox Sports Primetime?", "context": "CREATE TABLE table_name_77 (tuesday VARCHAR, monday VARCHAR)"}, {"answer": "SELECT friday FROM table_name_25 WHERE tuesday = \"jay mohr sports\"", "question": "What is shown on Friday when Tuesday is Jay Mohr Sports?", "context": "CREATE TABLE table_name_25 (friday VARCHAR, tuesday VARCHAR)"}, {"answer": "SELECT friday FROM table_name_36 WHERE monday = \"fox sports primetime\"", "question": "What is shown on Friday when Monday is Fox Sports Primetime?", "context": "CREATE TABLE table_name_36 (friday VARCHAR, monday VARCHAR)"}, {"answer": "SELECT tuesday FROM table_name_71 WHERE thursday = \"fox sports tonight (ends 1 am next day)\"", "question": "What is shown on Tuesday when Thursday shows Fox Sports Tonight (ends 1 am next day)?", "context": "CREATE TABLE table_name_71 (tuesday VARCHAR, thursday VARCHAR)"}, {"answer": "SELECT tuesday FROM table_name_59 WHERE wednesday = \"fox sports tonight (ends 1 am next day)\"", "question": "What is shown on Tuesday when Wednesday is Fox Sports Tonight (ends 1 am next day)?", "context": "CREATE TABLE table_name_59 (tuesday VARCHAR, wednesday VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_37 WHERE class = \"4c3h\"", "question": "Which capacity has the class 4c3h?", "context": "CREATE TABLE table_name_37 (capacity VARCHAR, class VARCHAR)"}, {"answer": "SELECT navigator FROM table_name_3 WHERE driver = \"james\"", "question": "What is the navigator for James?", "context": "CREATE TABLE table_name_3 (navigator VARCHAR, driver VARCHAR)"}, {"answer": "SELECT total_time FROM table_name_44 WHERE margin = \"04:02\" AND driver = \"coad\"", "question": "How much time did Coad make when the margin was 04:02?", "context": "CREATE TABLE table_name_44 (total_time VARCHAR, margin VARCHAR, driver VARCHAR)"}, {"answer": "SELECT class FROM table_name_40 WHERE capacity < 3384 AND navigator = \"ferguson\"", "question": "What class has a capacity smaller than 3384 for Ferguson?", "context": "CREATE TABLE table_name_40 (class VARCHAR, capacity VARCHAR, navigator VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_97 WHERE draw = 21 AND points > 36", "question": "What is the total number of places for a song with a draw of 21 and more than 36 points?", "context": "CREATE TABLE table_name_97 (place VARCHAR, draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_61 WHERE opponent = \"phoenix\" AND record = \"29-17\"", "question": "What is the lowest numbered game against Phoenix with a record of 29-17?", "context": "CREATE TABLE table_name_61 (game INTEGER, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT soap_opera FROM table_name_4 WHERE duration = \"18 years\" AND character = \"miley byrne\"", "question": "what is the soap opera when the duration is 18 years and the character is miley byrne?", "context": "CREATE TABLE table_name_4 (soap_opera VARCHAR, duration VARCHAR, character VARCHAR)"}, {"answer": "SELECT years FROM table_name_17 WHERE duration = \"13 years\" AND character = \"renee phelan\"", "question": "what is the years when the duration is 13 years and the character is renee phelan?", "context": "CREATE TABLE table_name_17 (years VARCHAR, duration VARCHAR, character VARCHAR)"}, {"answer": "SELECT years FROM table_name_21 WHERE soap_opera = \"glenroe\" AND actor = \"mick lally\"", "question": "what is the years when the soap opera is glenroe and the actor is mick lally?", "context": "CREATE TABLE table_name_21 (years VARCHAR, soap_opera VARCHAR, actor VARCHAR)"}, {"answer": "SELECT actor FROM table_name_8 WHERE character = \"dinny byrne\"", "question": "who is the actor when the character is dinny byrne?", "context": "CREATE TABLE table_name_8 (actor VARCHAR, character VARCHAR)"}, {"answer": "SELECT soap_opera FROM table_name_11 WHERE actor = \"dave duffy\"", "question": "what is the soap opera when the actor is dave duffy?", "context": "CREATE TABLE table_name_11 (soap_opera VARCHAR, actor VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE tie_no = \"11\"", "question": "What is the score for the game with an 11 tie number?", "context": "CREATE TABLE table_name_50 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE away_team = \"ipswich town\"", "question": "What date was Ipswich Town the away team?", "context": "CREATE TABLE table_name_76 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT owner FROM table_name_29 WHERE format = \"hot adult contemporary\"", "question": "Who is the owner with a Hot Adult Contemporary format?", "context": "CREATE TABLE table_name_29 (owner VARCHAR, format VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_43 WHERE branding = \"the q\"", "question": "What's the call sign of The Q?", "context": "CREATE TABLE table_name_43 (call_sign VARCHAR, branding VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_60 WHERE branding = \"jack fm\"", "question": "What's the call sign for Jack FM?", "context": "CREATE TABLE table_name_60 (call_sign VARCHAR, branding VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_47 WHERE saar = \"fk pirmasens\" AND hessen = \"wormatia worms\"", "question": "What is the average year for a Saar of FK Pirmasens and Hessen of Wormatia Worms?", "context": "CREATE TABLE table_name_47 (year INTEGER, saar VARCHAR, hessen VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_96 WHERE main = \"eintracht frankfurt\" AND rhein = \"waldhof mannheim\" AND saar = \"fk pirmasens\" AND hessen = \"wormatia worms\"", "question": "What is the smallest year for a Main of Eintracht Frankfurt, Rhein of Waldhof Mannheim, Sarr of FK Pirmasens, and Hessen of Wormatia Worms?", "context": "CREATE TABLE table_name_96 (year INTEGER, hessen VARCHAR, saar VARCHAR, main VARCHAR, rhein VARCHAR)"}, {"answer": "SELECT year FROM table_name_3 WHERE main = \"eintracht frankfurt\" AND hessen = \"fsv mainz 05\"", "question": "Which year has a Main of Eintracht Frankfurt and Hessen of FSV Mainz 05?", "context": "CREATE TABLE table_name_3 (year VARCHAR, main VARCHAR, hessen VARCHAR)"}, {"answer": "SELECT hessen FROM table_name_23 WHERE saar = \"fk pirmasens\"", "question": "Who was the Hessen the year that Saar was FK Pirmasens?", "context": "CREATE TABLE table_name_23 (hessen VARCHAR, saar VARCHAR)"}, {"answer": "SELECT series FROM table_name_33 WHERE director = \"jack king\" AND title = \"buddy the woodsman\"", "question": "What's the series of Buddy The Woodsman by director Jack King?", "context": "CREATE TABLE table_name_33 (series VARCHAR, director VARCHAR, title VARCHAR)"}, {"answer": "SELECT director FROM table_name_12 WHERE series = \"mm\" AND production_num < 6494 AND release_date = \"1934-09-15\"", "question": "Who was the director of the movie having a release date of 1934-09-15, an MM Series and a production number less than 6494?", "context": "CREATE TABLE table_name_12 (director VARCHAR, release_date VARCHAR, series VARCHAR, production_num VARCHAR)"}, {"answer": "SELECT director FROM table_name_80 WHERE title = \"buddy of the apes\"", "question": "Who's the director of Buddy of the Apes?", "context": "CREATE TABLE table_name_80 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_77 WHERE production_num > 6209 AND series = \"mm\" AND director = \"friz freleng\" AND release_date = \"1934-11-03\"", "question": "What's the title of the film directed by Friz Freleng with an MM Series, production number greater than 6209 and a release date of 1934-11-03?", "context": "CREATE TABLE table_name_77 (title VARCHAR, release_date VARCHAR, director VARCHAR, production_num VARCHAR, series VARCHAR)"}, {"answer": "SELECT MIN(time) FROM table_name_85 WHERE athlete = \"paulo villar\" AND lane < 9", "question": "What is the lowest time for Paulo Villar in lane 9?", "context": "CREATE TABLE table_name_85 (time INTEGER, athlete VARCHAR, lane VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_78 WHERE lane = 4", "question": "What is the nationality of lane 4?", "context": "CREATE TABLE table_name_78 (nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_55 WHERE time = 13.21", "question": "What is the nationality with a 13.21 time?", "context": "CREATE TABLE table_name_55 (nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT increase_in_net_assets FROM table_name_16 WHERE total_expenses = \"$5,617,236\"", "question": "What increase in net assets also has $5,617,236 as the total expenses?", "context": "CREATE TABLE table_name_16 (increase_in_net_assets VARCHAR, total_expenses VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_79 WHERE silver = 1 AND nation = \"puerto rico\" AND total < 1", "question": "How many Gold medals did Puerto Rico receive with 1 Silver and a Total of 1 or less?", "context": "CREATE TABLE table_name_79 (gold VARCHAR, total VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_90 WHERE bronze < 7 AND silver = 1 AND rank > 9", "question": "What is the Total number of medals for the Nation with 7 or less Bronze medals and 1 Silver medal with a Rank of 9 or larger?", "context": "CREATE TABLE table_name_90 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_73 WHERE bronze > 10", "question": "How many Silver medals did the Nation with 10 or more Bronze receive?", "context": "CREATE TABLE table_name_73 (silver INTEGER, bronze INTEGER)"}, {"answer": "SELECT AVG(wins) FROM table_name_72 WHERE draws < 0", "question": "what is the average wins when draws is less than 0?", "context": "CREATE TABLE table_name_72 (wins INTEGER, draws INTEGER)"}, {"answer": "SELECT AVG(losses) FROM table_name_58 WHERE club = \"warrnambool\" AND wins < 12", "question": "what is the average losses when the club is warrnambool and wins is less than 12?", "context": "CREATE TABLE table_name_58 (losses INTEGER, club VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_75 WHERE club = \"terang\" AND draws < 0", "question": "what is the most losses when the club is terang and draws is less than 0?", "context": "CREATE TABLE table_name_75 (losses INTEGER, club VARCHAR, draws VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_6 WHERE wins > 6 AND club = \"camperdown\" AND against > 1238", "question": "What is the sum of losses when wins is more than 6, club is camperdown and against is more than 1238?", "context": "CREATE TABLE table_name_6 (losses INTEGER, against VARCHAR, wins VARCHAR, club VARCHAR)"}, {"answer": "SELECT drew FROM table_name_52 WHERE round = \"third place\" AND season = \"1999-2000\"", "question": "What is the drew for the 1999-2000 season when they were in third place?", "context": "CREATE TABLE table_name_52 (drew VARCHAR, round VARCHAR, season VARCHAR)"}, {"answer": "SELECT competition FROM table_name_17 WHERE lost = \"1\" AND drew = \"3\" AND played = \"9\"", "question": "What competition did they have 1 lost, 3 draws, and played 9 games?", "context": "CREATE TABLE table_name_17 (competition VARCHAR, played VARCHAR, lost VARCHAR, drew VARCHAR)"}, {"answer": "SELECT drew FROM table_name_23 WHERE played = \"9\" AND lost = \"3\"", "question": "What is the number of draws when the played 9 and lost 3?", "context": "CREATE TABLE table_name_23 (drew VARCHAR, played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(cable_channel) FROM table_name_38 WHERE call_sign = \"cbft-dt\"", "question": "How many cable channels have callsign CBFT-DT?", "context": "CREATE TABLE table_name_38 (cable_channel VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT MIN(digital_psip) FROM table_name_81 WHERE call_sign = \"cftu-dt\" AND broadcast_channel > 29", "question": "What is the lowest Digital PSIP for channels over 29 with callsign CFTU-DT?", "context": "CREATE TABLE table_name_81 (digital_psip INTEGER, call_sign VARCHAR, broadcast_channel VARCHAR)"}, {"answer": "SELECT digital_psip FROM table_name_14 WHERE broadcast_channel > 15 AND call_sign = \"cftu-dt\"", "question": "What is the Digital PSIP for channels over 15 with callsign CFTU-DT?", "context": "CREATE TABLE table_name_14 (digital_psip VARCHAR, broadcast_channel VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT location FROM table_name_12 WHERE home_ground = \"mong kok stadium\"", "question": "Where was the location of the Mong Kok Stadium?", "context": "CREATE TABLE table_name_12 (location VARCHAR, home_ground VARCHAR)"}, {"answer": "SELECT club FROM table_name_95 WHERE home_ground = \"n/a\"", "question": "Which club, had a home ground of n/a?", "context": "CREATE TABLE table_name_95 (club VARCHAR, home_ground VARCHAR)"}, {"answer": "SELECT location FROM table_name_25 WHERE league_division = \"first division\" AND club = \"sun pegasus\"", "question": "What is the location for the first division, Sun Pegasus Club?", "context": "CREATE TABLE table_name_25 (location VARCHAR, league_division VARCHAR, club VARCHAR)"}, {"answer": "SELECT league_division FROM table_name_29 WHERE club = \"sai kung\"", "question": "What division is Sai Kung in?", "context": "CREATE TABLE table_name_29 (league_division VARCHAR, club VARCHAR)"}, {"answer": "SELECT league_division FROM table_name_6 WHERE club = \"sun source\"", "question": "What league is Sun Source in?", "context": "CREATE TABLE table_name_6 (league_division VARCHAR, club VARCHAR)"}, {"answer": "SELECT model FROM table_name_26 WHERE years = \"2004-\"", "question": "What was the model that had years 2004-?", "context": "CREATE TABLE table_name_26 (model VARCHAR, years VARCHAR)"}, {"answer": "SELECT torque AS @rpm FROM table_name_75 WHERE model = \"sl 65 amg\"", "question": "What was the torque@rpm of the sl 65 amg?", "context": "CREATE TABLE table_name_75 (torque VARCHAR, model VARCHAR)"}, {"answer": "SELECT model FROM table_name_67 WHERE years = \"2004-\"", "question": "What was the model that had years 2004-?", "context": "CREATE TABLE table_name_67 (model VARCHAR, years VARCHAR)"}, {"answer": "SELECT ihsaa_class AS Football FROM table_name_15 WHERE year_joined = 1968", "question": "What is the IHSAA Class for football for the team joining in 1968?", "context": "CREATE TABLE table_name_15 (ihsaa_class VARCHAR, year_joined VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_3 WHERE school = \"tipton\"", "question": "What is the IHSAA class for Tipton?", "context": "CREATE TABLE table_name_3 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_54 WHERE time___sec__ = 11.14", "question": "What is the rank for the person with time 11.14?", "context": "CREATE TABLE table_name_54 (rank INTEGER, time___sec__ VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_76 WHERE notes = \"q, pb\" AND time___sec__ = 11.15 AND lane > 7", "question": "What is the rank when time is 11.15 and lane is bigger than 7 with notes Q, PB?", "context": "CREATE TABLE table_name_76 (rank INTEGER, lane VARCHAR, notes VARCHAR, time___sec__ VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_31 WHERE notes = \"q, sb\" AND time___sec__ < 11.22", "question": "What is the lane for notes Q, SB and time less than 11.22?", "context": "CREATE TABLE table_name_31 (lane INTEGER, notes VARCHAR, time___sec__ VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_15 WHERE time___sec__ > 11.22 AND rank < 5", "question": "Which athlete is ranked less than 5 with time over 11.22?", "context": "CREATE TABLE table_name_15 (athlete VARCHAR, time___sec__ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_55 WHERE nationality = \"australia\" AND reaction < 0.138", "question": "How many lanes does Australia have with a reaction smaller than 0.138?", "context": "CREATE TABLE table_name_55 (lane VARCHAR, nationality VARCHAR, reaction VARCHAR)"}, {"answer": "SELECT name FROM table_name_80 WHERE reaction > 0.17400000000000002 AND lane > 6", "question": "Who had a reaction larger than 0.17400000000000002 and a lane larger than 6?", "context": "CREATE TABLE table_name_80 (name VARCHAR, reaction VARCHAR, lane VARCHAR)"}, {"answer": "SELECT in_service_for_nal FROM table_name_10 WHERE ship = \"ms vistafjord\"", "question": "The ship MS Vistafjord has what in service for NAL?", "context": "CREATE TABLE table_name_10 (in_service_for_nal VARCHAR, ship VARCHAR)"}, {"answer": "SELECT tonnage FROM table_name_90 WHERE built < 1973 AND ship = \"ssbergensfjord\"", "question": "The ship SSBergensfjord built before 1973 has what tonnage?", "context": "CREATE TABLE table_name_90 (tonnage VARCHAR, built VARCHAR, ship VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_52 WHERE time = 50.92", "question": "Which nationality has a time of 50.92?", "context": "CREATE TABLE table_name_52 (nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(time) FROM table_name_82 WHERE lane < 5 AND nationality = \"united states\"", "question": "What is the time with fewer than 5 lanes for the United States?", "context": "CREATE TABLE table_name_82 (time INTEGER, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT att_cmp FROM table_name_21 WHERE gp_gs = \"7-1\"", "question": "Which Att-Cmp has a GP-GS of 7-1?", "context": "CREATE TABLE table_name_21 (att_cmp VARCHAR, gp_gs VARCHAR)"}, {"answer": "SELECT att_cmp FROM table_name_21 WHERE td_int = \"7-8\"", "question": "Which Att-Cmp has a TD-INT of 7-8?", "context": "CREATE TABLE table_name_21 (att_cmp VARCHAR, td_int VARCHAR)"}, {"answer": "SELECT td_int FROM table_name_87 WHERE effic > 111.4", "question": "Which TD-INT has an Effic larger than 111.4?", "context": "CREATE TABLE table_name_87 (td_int VARCHAR, effic INTEGER)"}, {"answer": "SELECT COUNT(losses) FROM table_name_94 WHERE wins < 6 AND draws < 0", "question": "What is the total number of losses with less than 6 wins and less than 0 draws?", "context": "CREATE TABLE table_name_94 (losses VARCHAR, wins VARCHAR, draws VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_74 WHERE losses < 10 AND draws > 0 AND wins > 7", "question": "What is the average number of against with less than 10 losses, more than 0 draws, and more than 7 wins?", "context": "CREATE TABLE table_name_74 (against INTEGER, wins VARCHAR, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_31 WHERE losses > 0 AND against = 1526", "question": "What is the total number of byes with more than 0 losses and 1526 against?", "context": "CREATE TABLE table_name_31 (byes VARCHAR, losses VARCHAR, against VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_81 WHERE byes > 2", "question": "What is the lowest number of draws with more than 2 byes?", "context": "CREATE TABLE table_name_81 (draws INTEGER, byes INTEGER)"}, {"answer": "SELECT MIN(against) FROM table_name_33 WHERE wins < 16 AND wimmera_fl = \"warrack eagles\"", "question": "What is the lowest against of the wimmera fl warrack eagles, which have less than 16 wins?", "context": "CREATE TABLE table_name_33 (against INTEGER, wins VARCHAR, wimmera_fl VARCHAR)"}, {"answer": "SELECT COUNT(races_ridden) FROM table_name_94 WHERE nationality = \"german\" AND races_won < 10", "question": "How many races did the German racer that won less than 10 races ride?", "context": "CREATE TABLE table_name_94 (races_ridden VARCHAR, nationality VARCHAR, races_won VARCHAR)"}, {"answer": "SELECT AVG(win_average) FROM table_name_50 WHERE nationality = \"german\" AND name = \"rudi altig\" AND races_ridden > 79", "question": "What is the average win as a percentage of German racer Rudi Altig, who has ridden in over 79 races?", "context": "CREATE TABLE table_name_50 (win_average INTEGER, races_ridden VARCHAR, nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_name_40 WHERE cuts_made > 39", "question": "what is the highest top-5 when cuts made is more than 39?", "context": "CREATE TABLE table_name_40 (top_5 INTEGER, cuts_made INTEGER)"}, {"answer": "SELECT MAX(events) FROM table_name_64 WHERE wins > 0 AND cuts_made > 14", "question": "what is the highest events when wins is more than 0 and cuts made is more than 14?", "context": "CREATE TABLE table_name_64 (events INTEGER, wins VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MAX(top_5) FROM table_name_97 WHERE wins > 1", "question": "what is the highest top-5 when wins is more than 1?", "context": "CREATE TABLE table_name_97 (top_5 INTEGER, wins INTEGER)"}, {"answer": "SELECT COUNT(top_5) FROM table_name_6 WHERE tournament = \"masters tournament\" AND top_10 < 2", "question": "How many times is the tournament the masters tournament and the top-10 is less than 2?", "context": "CREATE TABLE table_name_6 (top_5 VARCHAR, tournament VARCHAR, top_10 VARCHAR)"}, {"answer": "SELECT rank FROM table_name_40 WHERE rider = \"noel patterson\"", "question": "What ran has noel patterson as the rider?", "context": "CREATE TABLE table_name_40 (rank VARCHAR, rider VARCHAR)"}, {"answer": "SELECT time FROM table_name_15 WHERE rider = \"jules croft\"", "question": "What time has jules croft as the rider?", "context": "CREATE TABLE table_name_15 (time VARCHAR, rider VARCHAR)"}, {"answer": "SELECT team FROM table_name_79 WHERE rider = \"adam barclay\"", "question": "What team has adam barclay as the rider?", "context": "CREATE TABLE table_name_79 (team VARCHAR, rider VARCHAR)"}, {"answer": "SELECT round FROM table_name_26 WHERE h___a = \"hurst\"", "question": "What Round has h/a hurst", "context": "CREATE TABLE table_name_26 (round VARCHAR, h___a VARCHAR)"}, {"answer": "SELECT result_f___a FROM table_name_63 WHERE round = \"round 1 replay\"", "question": "what game ended f-a with a round of round 1 replay", "context": "CREATE TABLE table_name_63 (result_f___a VARCHAR, round VARCHAR)"}, {"answer": "SELECT h___a FROM table_name_34 WHERE round = \"round 2\"", "question": "what is the h/a round of round 2", "context": "CREATE TABLE table_name_34 (h___a VARCHAR, round VARCHAR)"}, {"answer": "SELECT role_episode FROM table_name_21 WHERE year > 2006 AND recipients_and_nominees = \"ellen burstyn\"", "question": "What was the Role/Episode after 2006 with Ellen Burstyn as a recipient and nominee?", "context": "CREATE TABLE table_name_21 (role_episode VARCHAR, year VARCHAR, recipients_and_nominees VARCHAR)"}, {"answer": "SELECT category FROM table_name_71 WHERE recipients_and_nominees = \"outstanding main title design\"", "question": "For which Category was Outstanding Main Title Design a Recipient and nominee?", "context": "CREATE TABLE table_name_71 (category VARCHAR, recipients_and_nominees VARCHAR)"}, {"answer": "SELECT category FROM table_name_60 WHERE year < 2009 AND role_episode = \"libby goldstein and junie lowry-johnson\"", "question": "Which Category was from before 2009 with a Role/Episode of Libby Goldstein and Junie Lowry-Johnson?", "context": "CREATE TABLE table_name_60 (category VARCHAR, year VARCHAR, role_episode VARCHAR)"}, {"answer": "SELECT category FROM table_name_50 WHERE recipients_and_nominees = \"libby goldstein and junie lowry-johnson\"", "question": "Which Category were Libby Goldstein and Junie Lowry-Johnson recipients and nominees for?", "context": "CREATE TABLE table_name_50 (category VARCHAR, recipients_and_nominees VARCHAR)"}, {"answer": "SELECT MAX(runners) FROM table_name_68 WHERE jockey = \"frankie dettori\" AND placing > 1", "question": "what is the highest runners when the jockey is frankie dettori and the placing is higher than 1?", "context": "CREATE TABLE table_name_68 (runners INTEGER, jockey VARCHAR, placing VARCHAR)"}, {"answer": "SELECT race FROM table_name_48 WHERE jockey = \"frankie dettori\" AND margin > 3 AND course = \"yarmouth\"", "question": "what is the race when the jockey is frankie dettori, the margin is more than 3 and the course is yarmouth?", "context": "CREATE TABLE table_name_48 (race VARCHAR, course VARCHAR, jockey VARCHAR, margin VARCHAR)"}, {"answer": "SELECT partnering FROM table_name_52 WHERE score = \"6-4, 2-6, 7-6\"", "question": "Who is the Partner in the match with a Score of 6-4, 2-6, 7-6?", "context": "CREATE TABLE table_name_52 (partnering VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_87 WHERE result = \"won\" AND date = \"september 13, 1996\"", "question": "what is the competition when the result is won and the date is september 13, 1996?", "context": "CREATE TABLE table_name_87 (competition VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE competition = \"1996 tiger cup\" AND result = \"drew\"", "question": "what is the date when the competition is 1996 tiger cup and the result is drew?", "context": "CREATE TABLE table_name_60 (date VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE competition = \"1995 southeast asian games\"", "question": "what is the score when the competition is 1995 southeast asian games?", "context": "CREATE TABLE table_name_1 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_37 WHERE venue = \"singapore\" AND date = \"september 8, 1996\"", "question": "what is the result when the venue is singapore on september 8, 1996?", "context": "CREATE TABLE table_name_37 (result VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_11 WHERE result = \"won\" AND score = \"8-0\"", "question": "what is the competition when the result is won and the score is 8-0?", "context": "CREATE TABLE table_name_11 (competition VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT laps FROM table_name_87 WHERE points < 1 AND team = \"dale coyne racing\" AND grid > 13", "question": "Waht laps have points smaller than 1, and a team of dale coyne racing, and the grid larger than 13?", "context": "CREATE TABLE table_name_87 (laps VARCHAR, grid VARCHAR, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_12 WHERE team = \"team player's\" AND grid = 9 AND points > 10", "question": "What is the total number of laps for a team of team player's, and has a grid of 9, and points larger than 10?", "context": "CREATE TABLE table_name_12 (laps VARCHAR, points VARCHAR, team VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_70 WHERE time_retired = \"+30.7 secs\" AND laps < 165", "question": "What is the lowest points for a time/retired of +30.7 secs, and laps smaller than 165?", "context": "CREATE TABLE table_name_70 (points INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT team__number2 FROM table_name_88 WHERE team__number1 = \"liege basket\"", "question": "Who was the team 2 in the game with a team 1 of Liege Basket?", "context": "CREATE TABLE table_name_88 (team__number2 VARCHAR, team__number1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_77 WHERE team__number2 = \"kk borac\"", "question": "What was the 2nd leg score in the matchup with a team 2 of KK Borac?", "context": "CREATE TABLE table_name_77 (team__number2 VARCHAR)"}, {"answer": "SELECT serial_numbers FROM table_name_28 WHERE class = \"4-8-4 \u2014 oooooooo \u2014 northern\"", "question": "What are the serial numbers for the locomotives of Class 4-8-4 \u2014 oooooooo \u2014 northern?", "context": "CREATE TABLE table_name_28 (serial_numbers VARCHAR, class VARCHAR)"}, {"answer": "SELECT fleet_number_s_ FROM table_name_27 WHERE serial_numbers = \"68056\"", "question": "What is the fleet number for the model with Serial number 68056?", "context": "CREATE TABLE table_name_27 (fleet_number_s_ VARCHAR, serial_numbers VARCHAR)"}, {"answer": "SELECT serial_numbers FROM table_name_82 WHERE year_made = \"1930\"", "question": "What is the serial number of the model made in 1930?", "context": "CREATE TABLE table_name_82 (serial_numbers VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT wheel_arrangement FROM table_name_75 WHERE year_s__retired = \"1955\"", "question": "What is the wheel arrangement for the model that was retired in 1955?", "context": "CREATE TABLE table_name_75 (wheel_arrangement VARCHAR, year_s__retired VARCHAR)"}, {"answer": "SELECT MIN(matches) FROM table_name_99 WHERE clubs = \"46 \u2192 32\"", "question": "What is the lowest number of matches that has a Clubs of 46 \u2192 32?", "context": "CREATE TABLE table_name_99 (matches INTEGER, clubs VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_name_22 WHERE round = \"third round\"", "question": "What is the highest number of matches that has a round of Third Round?", "context": "CREATE TABLE table_name_22 (matches INTEGER, round VARCHAR)"}, {"answer": "SELECT prize_money FROM table_name_58 WHERE round = \"final\"", "question": "What is the prize money for the final round?", "context": "CREATE TABLE table_name_58 (prize_money VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE new_entries_this_round = \"44\"", "question": "What is the date for the row with a new entries this round of 44?", "context": "CREATE TABLE table_name_71 (date VARCHAR, new_entries_this_round VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_97 WHERE wins = 11 AND losses < 7", "question": "Which Against has Wins of 11, and Losses smaller than 7?", "context": "CREATE TABLE table_name_97 (against INTEGER, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT draws FROM table_name_18 WHERE losses > 8 AND hampden_fl = \"terang-mortlake\"", "question": "Which Draws have Losses larger than 8, and a Hampden FL of terang-mortlake?", "context": "CREATE TABLE table_name_18 (draws VARCHAR, losses VARCHAR, hampden_fl VARCHAR)"}, {"answer": "SELECT AVG(byes) FROM table_name_38 WHERE losses < 4", "question": "Which Byes have Losses smaller than 4?", "context": "CREATE TABLE table_name_38 (byes INTEGER, losses INTEGER)"}, {"answer": "SELECT COUNT(draws) FROM table_name_39 WHERE losses < 10 AND wins = 13 AND byes < 2", "question": "What's the total draws when the losses are less than 10, less than 2 byes, and 13 wins?", "context": "CREATE TABLE table_name_39 (draws VARCHAR, byes VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_97 WHERE wimmera_fl = \"ararat\" AND byes < 2", "question": "What's the total draws for Ararat when the byes are less than 2?", "context": "CREATE TABLE table_name_97 (draws INTEGER, wimmera_fl VARCHAR, byes VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_91 WHERE wins = 8 AND byes < 2", "question": "What's the total losses when there are 8 wins and less than 2 byes?", "context": "CREATE TABLE table_name_91 (losses INTEGER, wins VARCHAR, byes VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_24 WHERE against < 1211 AND wimmera_fl = \"horsham saints\" AND wins > 13", "question": "What's the least losses for Horsham Saints with more than 13 wins and less than 1211 against?", "context": "CREATE TABLE table_name_24 (losses INTEGER, wins VARCHAR, against VARCHAR, wimmera_fl VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_30 WHERE losses < 1", "question": "What are the draws when the losses are less than 1?", "context": "CREATE TABLE table_name_30 (draws INTEGER, losses INTEGER)"}, {"answer": "SELECT MIN(wins) FROM table_name_82 WHERE against = 1348 AND draws < 0", "question": "What are the amount of wins when the draws are less than 0 and the against is 1348?", "context": "CREATE TABLE table_name_82 (wins INTEGER, against VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(city_area_km_2__) FROM table_name_1 WHERE headquartered_city = \"vehari city\" AND serial_no > 36", "question": "What was the total city area for vehari city with a serial number bigger than 36?", "context": "CREATE TABLE table_name_1 (city_area_km_2__ VARCHAR, headquartered_city VARCHAR, serial_no VARCHAR)"}, {"answer": "SELECT MIN(city_population__2009_) FROM table_name_15 WHERE city_area_km_2__ = 6 AND district = \"rajanpur district\" AND serial_no < 29", "question": "What was the lowest city population for the district of rajanpur district with a area of 6 km squared and a serial number less than 29?", "context": "CREATE TABLE table_name_15 (city_population__2009_ INTEGER, serial_no VARCHAR, city_area_km_2__ VARCHAR, district VARCHAR)"}, {"answer": "SELECT SUM(serial_no) FROM table_name_22 WHERE headquartered_city = \"narowal city\"", "question": "What is the sum of the serial numbers for narowal city?", "context": "CREATE TABLE table_name_22 (serial_no INTEGER, headquartered_city VARCHAR)"}, {"answer": "SELECT SUM(city_area_km_2__) FROM table_name_32 WHERE district = \"bahawalnagar district\" AND city_population__2009_ > 134 OFFSET 936", "question": "What is the sum of the area for the bahawalnagar district with a population more than 134,936?", "context": "CREATE TABLE table_name_32 (city_area_km_2__ INTEGER, district VARCHAR, city_population__2009_ VARCHAR)"}, {"answer": "SELECT district FROM table_name_9 WHERE city_area_km_2__ < 12 AND serial_no = 35", "question": "What district was the city with an area smaller than 12 square kilometers and a serial number of 35?", "context": "CREATE TABLE table_name_9 (district VARCHAR, city_area_km_2__ VARCHAR, serial_no VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_20 WHERE school = \"usc\" AND pick > 158", "question": "After pick number 158, what is the next round a USC player was picked?", "context": "CREATE TABLE table_name_20 (round INTEGER, school VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_88 WHERE round > 2 AND pick < 183 AND player = \"jim obradovich\"", "question": "Jim Obradovich, picked after round 2, but before pick 183, plays what position?", "context": "CREATE TABLE table_name_88 (position VARCHAR, player VARCHAR, round VARCHAR, pick VARCHAR)"}, {"answer": "SELECT time FROM table_name_95 WHERE notes = \"q\" AND country = \"australia\"", "question": "What time has q as the notes, and Australia as the country?", "context": "CREATE TABLE table_name_95 (time VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT notes FROM table_name_64 WHERE rank > 2 AND country = \"mexico\"", "question": "What notes have a rank greater than 2, with mexico as the country?", "context": "CREATE TABLE table_name_64 (notes VARCHAR, rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_22 WHERE silver > 0 AND total < 1", "question": "What is the sum of bronzes for teams with more than 0 silver and a total under 1?", "context": "CREATE TABLE table_name_22 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_55 WHERE bronze = 1 AND total > 2 AND silver < 3", "question": "What is the average number of golds for teams with 1 bronze, less than 3 silver, and a total over 2?", "context": "CREATE TABLE table_name_55 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT yacht AS Type FROM table_name_94 WHERE loa__metres_ = 15.15", "question": "What type of yacht has a LOA of 15.15 metres?", "context": "CREATE TABLE table_name_94 (yacht VARCHAR, loa__metres_ VARCHAR)"}, {"answer": "SELECT soap_opera FROM table_name_81 WHERE character = \"teemu luotola\"", "question": "What Soap Opera with the character Teemu Luotola?", "context": "CREATE TABLE table_name_81 (soap_opera VARCHAR, character VARCHAR)"}, {"answer": "SELECT beer FROM table_name_67 WHERE recorded = 4.08", "question": "What beer has a record of 4.08?", "context": "CREATE TABLE table_name_67 (beer VARCHAR, recorded VARCHAR)"}, {"answer": "SELECT round FROM table_name_64 WHERE opposing_team = \"manchester united\"", "question": "Which round has an Opposing Team of manchester united?", "context": "CREATE TABLE table_name_64 (round VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE against > 0", "question": "Which Date has an Against larger than 0?", "context": "CREATE TABLE table_name_28 (date VARCHAR, against INTEGER)"}, {"answer": "SELECT MIN(against) FROM table_name_69 WHERE round = \"fourth round\"", "question": "Which Against has a Round of fourth round?", "context": "CREATE TABLE table_name_69 (against INTEGER, round VARCHAR)"}, {"answer": "SELECT venue FROM table_name_1 WHERE date = \"17/02/2008\"", "question": "What was the venue on 17/02/2008?", "context": "CREATE TABLE table_name_1 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(quantity) FROM table_name_87 WHERE year_s__of_manufacture = \"1921/23\" AND seats = \"40\"", "question": "What is the average quantity for coaches manufactured in 1921/23, and had 40 seats?", "context": "CREATE TABLE table_name_87 (quantity INTEGER, year_s__of_manufacture VARCHAR, seats VARCHAR)"}, {"answer": "SELECT class_to_1928 FROM table_name_21 WHERE year_s__of_manufacture = \"1921/23\" AND class_from_1928 = \"bci-21\"", "question": "Which class to 1928 value had years of manufacture of 1921/23 and class from 1928 of BCi-21?", "context": "CREATE TABLE table_name_21 (class_to_1928 VARCHAR, year_s__of_manufacture VARCHAR, class_from_1928 VARCHAR)"}, {"answer": "SELECT MIN(quantity) FROM table_name_79 WHERE class_to_1928 = \"bdi-21\"", "question": "What is the smallest quantity having a Class to 1928 of BDi-21?", "context": "CREATE TABLE table_name_79 (quantity INTEGER, class_to_1928 VARCHAR)"}, {"answer": "SELECT class_from_1928 FROM table_name_88 WHERE class_to_1928 = \"bdi-21\"", "question": "Which class from 1928 had a class to 1928 of BDi-21?", "context": "CREATE TABLE table_name_88 (class_from_1928 VARCHAR, class_to_1928 VARCHAR)"}, {"answer": "SELECT remarks FROM table_name_99 WHERE class_from_1928 = \"cid-21b\"", "question": "What were the remarks for the coach having a class from 1928 of Cid-21B?", "context": "CREATE TABLE table_name_99 (remarks VARCHAR, class_from_1928 VARCHAR)"}, {"answer": "SELECT SUM(b_score) FROM table_name_2 WHERE total > 15.325 AND a_score < 6.4", "question": "Which B Score has a Total larger than 15.325, and an A Score smaller than 6.4?", "context": "CREATE TABLE table_name_2 (b_score INTEGER, total VARCHAR, a_score VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_79 WHERE a_score = 6.5 AND position > 5", "question": "Which Total has an A Score of 6.5, and a Position larger than 5?", "context": "CREATE TABLE table_name_79 (total INTEGER, a_score VARCHAR, position VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE week = 11", "question": "What is the date of week 11?", "context": "CREATE TABLE table_name_20 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_27 WHERE opponent = \"chicago bears\"", "question": "What is the latest week when the chicago bears are the opponent?", "context": "CREATE TABLE table_name_27 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT song FROM table_name_41 WHERE place > 4", "question": "What song placed higher than#4?", "context": "CREATE TABLE table_name_41 (song VARCHAR, place INTEGER)"}, {"answer": "SELECT artist FROM table_name_33 WHERE draw > 4", "question": "Who is the artist that drew higher than 4?", "context": "CREATE TABLE table_name_33 (artist VARCHAR, draw INTEGER)"}, {"answer": "SELECT COUNT(starts) FROM table_name_47 WHERE driver = \"nasser al-attiyah\" AND points > 1", "question": "What's the total starts with more points than 1 and the driver is Nasser Al-Attiyah?", "context": "CREATE TABLE table_name_47 (starts VARCHAR, driver VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(podiums) FROM table_name_82 WHERE finishes = 5 AND starts > 6", "question": "What's the smallest number of podiums having more than 6 starts and 5 finishes?", "context": "CREATE TABLE table_name_82 (podiums INTEGER, finishes VARCHAR, starts VARCHAR)"}, {"answer": "SELECT COUNT(stage_wins) FROM table_name_41 WHERE finishes > 1 AND podiums < 1 AND driver = \"federico villagra\" AND starts < 8", "question": "What's the number of stage wins for Federico Villagra having more than 1 finish, less than 8 starts and less than 1 podium?", "context": "CREATE TABLE table_name_41 (stage_wins VARCHAR, starts VARCHAR, driver VARCHAR, finishes VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT SUM(finishes) FROM table_name_57 WHERE podiums = 0 AND stage_wins = 0 AND driver = \"lambros athanassoulas\"", "question": "What's the finishes for Lambros Athanassoulas having 0 podiums and 0 stage wins?", "context": "CREATE TABLE table_name_57 (finishes INTEGER, driver VARCHAR, podiums VARCHAR, stage_wins VARCHAR)"}, {"answer": "SELECT AVG(number_of_electorates__2003_) FROM table_name_80 WHERE reserved_for___sc___st__none_ = \"sc\" AND constituency_number = \"50\"", "question": "What is the average number of electorates (2003) reserved for sc with a constituency number of 50?", "context": "CREATE TABLE table_name_80 (number_of_electorates__2003_ INTEGER, reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT MIN(finals) FROM table_name_52 WHERE pre_season > 0", "question": "Which Finals have a Pre-Season larger than 0?", "context": "CREATE TABLE table_name_52 (finals INTEGER, pre_season INTEGER)"}, {"answer": "SELECT COUNT(a_league) FROM table_name_85 WHERE pre_season > 0", "question": "How much A-League has a Pre-Season larger than 0?", "context": "CREATE TABLE table_name_85 (a_league VARCHAR, pre_season INTEGER)"}, {"answer": "SELECT last_issue FROM table_name_49 WHERE title = \"aron's absurd armada\"", "question": "What is the last issue entry for Aron's Absurd Armada?", "context": "CREATE TABLE table_name_49 (last_issue VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_39 WHERE first_issue = \"august 2010\"", "question": "What is the title that was first published in August 2010?", "context": "CREATE TABLE table_name_39 (title VARCHAR, first_issue VARCHAR)"}, {"answer": "SELECT title FROM table_name_44 WHERE last_issue = \"ongoing\" AND first_issue = \"february 2009\"", "question": "What is the title that was first published in February 2009 and is still ongoing?", "context": "CREATE TABLE table_name_44 (title VARCHAR, last_issue VARCHAR, first_issue VARCHAR)"}, {"answer": "SELECT last_issue FROM table_name_55 WHERE title = \"time and again\"", "question": "What is the last issue entry of Time and Again?", "context": "CREATE TABLE table_name_55 (last_issue VARCHAR, title VARCHAR)"}, {"answer": "SELECT rank FROM table_name_44 WHERE react < 0.168 AND nationality = \"virgin islands\"", "question": "What the rank of the Virgin Islands athlete with react under 0.168?", "context": "CREATE TABLE table_name_44 (rank VARCHAR, react VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_44 WHERE athlete = \"chris brown\" AND react > 0.244", "question": "What is the lowest rank for Chris Brown with react greater than 0.244?", "context": "CREATE TABLE table_name_44 (rank INTEGER, athlete VARCHAR, react VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_38 WHERE nationality = \"belgium\" AND react > 0.162", "question": "What is the highest rank of an athlete from Belgium with react greater than 0.162?", "context": "CREATE TABLE table_name_38 (rank INTEGER, nationality VARCHAR, react VARCHAR)"}, {"answer": "SELECT MAX(2008) FROM table_name_35 WHERE 2009 = 3.4 AND 2005 > 2.9", "question": "What's the 2008 that has 3.4 in 2009 and more than 2.9 in 2005?", "context": "CREATE TABLE table_name_35 (Id VARCHAR)"}, {"answer": "SELECT SUM(2006) FROM table_name_46 WHERE 2007 < 6.7 AND 2009 < 3.4", "question": "What's the 2006 if there's less than 6.7 in 2007 and less than 3.4 in 2009?", "context": "CREATE TABLE table_name_46 (Id VARCHAR)"}, {"answer": "SELECT COUNT(2005) FROM table_name_1 WHERE 2010 < 43.8 AND 2007 < 29.5 AND 2009 > 4.9 AND 2006 > 10.2", "question": "What's the total in 2005 if there's more than 10.2 in 2006, less than 29.5 in 2007, more than 4.9 in 2009 and less than 43.8 in 2010?", "context": "CREATE TABLE table_name_1 (Id VARCHAR)"}, {"answer": "SELECT MIN(2009) FROM table_name_45 WHERE 2005 = 11.8 AND 2006 < 12.6", "question": "What is the 2009 when there's 11.8 in 2005 and less than 12.6 in 2006?", "context": "CREATE TABLE table_name_45 (Id VARCHAR)"}, {"answer": "SELECT MAX(2005) FROM table_name_36 WHERE 2007 < 42 AND tv_station__operator_ = \"tv3\" AND 2010 < 29.5", "question": "What's the 2005 of TV3 when there is less than 42 in 2007 and less than 29.5 in 2010?", "context": "CREATE TABLE table_name_36 (tv_station__operator_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE partner = \"alexander krasnorutskiy\" AND score = \"6\u20133, 4\u20136, 6\u20132\"", "question": "What date had Alexander Krasnorutskiy as a partner with a score of 6\u20133, 4\u20136, 6\u20132?", "context": "CREATE TABLE table_name_2 (date VARCHAR, partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_93 WHERE mascot = \"eagles\" AND city = \"evansville\"", "question": "Which IHSAA Class has a Mascot of eagles, and a City of evansville?", "context": "CREATE TABLE table_name_93 (ihsaa_class VARCHAR, mascot VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_54 WHERE school = \"indianapolis brebeuf\"", "question": "Which City has a School of indianapolis brebeuf?", "context": "CREATE TABLE table_name_54 (city VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_32 WHERE school = \"indianapolis tindley\"", "question": "How much Enrollment has a School of indianapolis tindley?", "context": "CREATE TABLE table_name_32 (enrollment VARCHAR, school VARCHAR)"}, {"answer": "SELECT county FROM table_name_70 WHERE ihsaa_class = \"aaaa\" AND mascot = \"cardinals\"", "question": "Which County has an IHSAA Class of aaaa, and a Mascot of cardinals?", "context": "CREATE TABLE table_name_70 (county VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT COUNT(total_goals) FROM table_name_27 WHERE league_cup_goals < 0", "question": "How many Total Goals values have 0 League Cup Goals?", "context": "CREATE TABLE table_name_27 (total_goals VARCHAR, league_cup_goals INTEGER)"}, {"answer": "SELECT MIN(fa_cup_goals) FROM table_name_55 WHERE fa_cup_apps = \"4\" AND total_apps = \"49\" AND total_goals > 17", "question": "What is the smallest number of FA Cup Goals for players with 4 FA Cup Appearances, 49 Total Appearances, and more than 17 total goals?", "context": "CREATE TABLE table_name_55 (fa_cup_goals INTEGER, total_goals VARCHAR, fa_cup_apps VARCHAR, total_apps VARCHAR)"}, {"answer": "SELECT AVG(league_goals) FROM table_name_26 WHERE fa_cup_goals < 0", "question": "What is the average number of League Goals for palyers with 0 FA Cup Goals?", "context": "CREATE TABLE table_name_26 (league_goals INTEGER, fa_cup_goals INTEGER)"}, {"answer": "SELECT MAX(silver) FROM table_name_54 WHERE total = \"4\" AND bronze < 1", "question": "what is the highest silver when the total is 4 and bronze is less than 1?", "context": "CREATE TABLE table_name_54 (silver INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_2 WHERE bronze = 1 AND total = \"6\" AND silver < 3", "question": "what is the gold when the bronze is 1, total is 6 and silver is less than 3?", "context": "CREATE TABLE table_name_2 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT province, _community FROM table_name_82 WHERE geographical_regions = \"el cibao\" AND height > 1.8", "question": "What is province of community with height larger than 1.8 and is in el cibao region?", "context": "CREATE TABLE table_name_82 (province VARCHAR, _community VARCHAR, geographical_regions VARCHAR, height VARCHAR)"}, {"answer": "SELECT contestant FROM table_name_7 WHERE height < 1.79 AND hometown = \"santo domingo este\"", "question": "What contestant is from santo domingo este and has height smaller than 1.79?", "context": "CREATE TABLE table_name_7 (contestant VARCHAR, height VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT previous_conference FROM table_name_46 WHERE year_joined = \"1932\" AND mascot = \"tigers\"", "question": "what is the previous conference when the year joined is 1932 and the mascot is tigers?", "context": "CREATE TABLE table_name_46 (previous_conference VARCHAR, year_joined VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT school FROM table_name_60 WHERE location = \"rochester\"", "question": "what is the school when the location is rochester?", "context": "CREATE TABLE table_name_60 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_71 WHERE school = \"muncie burris\"", "question": "what is the location when the school is muncie burris?", "context": "CREATE TABLE table_name_71 (location VARCHAR, school VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_25 WHERE school = \"warsaw\"", "question": "what is the mascot when the school is warsaw?", "context": "CREATE TABLE table_name_25 (mascot VARCHAR, school VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_82 WHERE county = \"43 kosciusko\"", "question": "what is the mascot when the county is 43 kosciusko?", "context": "CREATE TABLE table_name_82 (mascot VARCHAR, county VARCHAR)"}, {"answer": "SELECT county FROM table_name_36 WHERE year_left = \"1998\"", "question": "what is the county when the year left is 1998?", "context": "CREATE TABLE table_name_36 (county VARCHAR, year_left VARCHAR)"}, {"answer": "SELECT film FROM table_name_23 WHERE category = \"best actress \u2013 musical or comedy\" AND lost_to = \"nicole kidman ( moulin rouge! )\"", "question": "which Film has a Category of best actress \u2013 musical or comedy, and a Lost to of nicole kidman ( moulin rouge! )?", "context": "CREATE TABLE table_name_23 (film VARCHAR, category VARCHAR, lost_to VARCHAR)"}, {"answer": "SELECT category FROM table_name_40 WHERE result = \"nominated\" AND lost_to = \"jennifer westfeldt ( kissing jessica stein )\"", "question": "which Category has a Result of nominated, and a Lost to of jennifer westfeldt ( kissing jessica stein )?", "context": "CREATE TABLE table_name_40 (category VARCHAR, result VARCHAR, lost_to VARCHAR)"}, {"answer": "SELECT lost_to FROM table_name_35 WHERE year = 2000", "question": "Which the Lost to is in 2000", "context": "CREATE TABLE table_name_35 (lost_to VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_2 WHERE opponent = \"pittsburgh steelers\" AND opponents > 0", "question": "What is the average attendance for games against the Pittsburgh Steelers when the opponents scored more than 0 points?", "context": "CREATE TABLE table_name_2 (attendance INTEGER, opponent VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT team FROM table_name_8 WHERE position = \"offensive guard\" AND pick < 154", "question": "Who is the team that has a pick less than 154 and an offensive guard position?", "context": "CREATE TABLE table_name_8 (team VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_94 WHERE game = 24", "question": "What is the Attendance of Game 24?", "context": "CREATE TABLE table_name_94 (attendance INTEGER, game VARCHAR)"}, {"answer": "SELECT venue FROM table_name_91 WHERE score_f_a = \"1\u20132\" AND game = 41", "question": "What is the Venue of Game 41 with a Score F\u2013A of 1\u20132?", "context": "CREATE TABLE table_name_91 (venue VARCHAR, score_f_a VARCHAR, game VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_30 WHERE date = \"february 19, 1996\"", "question": "Who are the opponents in the February 19, 1996 final?", "context": "CREATE TABLE table_name_30 (opponents_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_24 WHERE date = \"march 22, 1993\"", "question": "What was the final score on March 22, 1993?", "context": "CREATE TABLE table_name_24 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_57 WHERE date = \"june 9, 1997\"", "question": "What is the outcome on June 9, 1997?", "context": "CREATE TABLE table_name_57 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT school FROM table_name_50 WHERE ihsaa_class = \"aaa\" AND mascot = \"tiger cubs\"", "question": "What school has an  IHSAA Class of aaa, and their mascot is Tiger Cubs?", "context": "CREATE TABLE table_name_50 (school VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT ihsaa_football_class FROM table_name_16 WHERE county = \"67 putnam\" AND school = \"greencastle\"", "question": "What is the IHSAA Football Class for county 67 putnam at Greencastle?", "context": "CREATE TABLE table_name_16 (ihsaa_football_class VARCHAR, county VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_27 WHERE enrollment > 533 AND ihsaa_football_class = \"aa\"", "question": "What school has more than 533 enrolled and is an IHSAA Football Class of aa?", "context": "CREATE TABLE table_name_27 (school VARCHAR, enrollment VARCHAR, ihsaa_football_class VARCHAR)"}, {"answer": "SELECT location FROM table_name_1 WHERE ihsaa_class = \"aaa\" AND enrollment > 590", "question": "Where is the IHSAA Class of aaa school with more than 590 enrolled?", "context": "CREATE TABLE table_name_1 (location VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT location FROM table_name_4 WHERE days_held = \"111\"", "question": "Which location has 111 as the days held?", "context": "CREATE TABLE table_name_4 (location VARCHAR, days_held VARCHAR)"}, {"answer": "SELECT days_held FROM table_name_2 WHERE reign = \"1\" AND wrestlers = \"eden black\"", "question": "What days held has 1 as the reign with eden black as the wrestlers?", "context": "CREATE TABLE table_name_2 (days_held VARCHAR, reign VARCHAR, wrestlers VARCHAR)"}, {"answer": "SELECT wrestlers FROM table_name_71 WHERE event = \"summer brawl 2006\"", "question": "What wrestlers have summer brawl 2006 as the event?", "context": "CREATE TABLE table_name_71 (wrestlers VARCHAR, event VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_87 WHERE laps > 154", "question": "What is the average amount of points larger than 154 laps?", "context": "CREATE TABLE table_name_87 (points INTEGER, laps INTEGER)"}, {"answer": "SELECT home_team FROM table_name_68 WHERE away_team = \"crystal palace\"", "question": "What home team played against Crystal Palace?", "context": "CREATE TABLE table_name_68 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT MIN(win__percentage) FROM table_name_39 WHERE record = \"0-2\" AND apps > 2", "question": "What is the lowest win % with a 0-2 record and more than 2 apps?", "context": "CREATE TABLE table_name_39 (win__percentage INTEGER, record VARCHAR, apps VARCHAR)"}, {"answer": "SELECT MIN(apps) FROM table_name_33 WHERE rank = 3 AND win__percentage < 0", "question": "What is the lowest apps for rank 3 and 0% wins?", "context": "CREATE TABLE table_name_33 (apps INTEGER, rank VARCHAR, win__percentage VARCHAR)"}, {"answer": "SELECT artist FROM table_name_87 WHERE peak_position < 2 AND sales > 200 OFFSET 000", "question": "What artist had a peak position under 2, and more than 200,000 in sales?", "context": "CREATE TABLE table_name_87 (artist VARCHAR, peak_position VARCHAR, sales VARCHAR)"}, {"answer": "SELECT points FROM table_name_39 WHERE place < 2", "question": "Which points has place smaller than 2?", "context": "CREATE TABLE table_name_39 (points VARCHAR, place INTEGER)"}, {"answer": "SELECT size FROM table_name_61 WHERE year_joined < 1974 AND ihsaa_class = \"aa\" AND _number___county = \"89 wayne\" AND school = \"centerville\"", "question": "What's the size of Centerville in 89 Wayne county with an IHSAA class of AA in the year before 1974?", "context": "CREATE TABLE table_name_61 (size VARCHAR, school VARCHAR, _number___county VARCHAR, year_joined VARCHAR, ihsaa_class VARCHAR)"}, {"answer": "SELECT year_joined FROM table_name_66 WHERE school = \"hagerstown\"", "question": "What's the year that Hagerstown joined?", "context": "CREATE TABLE table_name_66 (year_joined VARCHAR, school VARCHAR)"}, {"answer": "SELECT _number___county FROM table_name_8 WHERE location = \"fountain city\"", "question": "What county is Fountain City?", "context": "CREATE TABLE table_name_8 (_number___county VARCHAR, location VARCHAR)"}, {"answer": "SELECT previous_conference FROM table_name_88 WHERE size > 287 AND location = \"fountain city\"", "question": "What's the previous conference of Fountain City with a size more than 287?", "context": "CREATE TABLE table_name_88 (previous_conference VARCHAR, size VARCHAR, location VARCHAR)"}, {"answer": "SELECT social_democratic FROM table_name_94 WHERE date_released = \"october 10, 1999\"", "question": "What is the social democrat released on October 10, 1999?", "context": "CREATE TABLE table_name_94 (social_democratic VARCHAR, date_released VARCHAR)"}, {"answer": "SELECT green_communist FROM table_name_82 WHERE lead = \"15.5%\"", "question": "What is the green-communist with a 15.5% lead?", "context": "CREATE TABLE table_name_82 (green_communist VARCHAR, lead VARCHAR)"}, {"answer": "SELECT left_bloc FROM table_name_33 WHERE socialist = \"49.0%\"", "question": "What is the left bloc with a 49.0% socialist?", "context": "CREATE TABLE table_name_33 (left_bloc VARCHAR, socialist VARCHAR)"}, {"answer": "SELECT polling_institute FROM table_name_81 WHERE social_democratic = \"30.7%\"", "question": "Which polling institute has a 30.7% for social democratic?", "context": "CREATE TABLE table_name_81 (polling_institute VARCHAR, social_democratic VARCHAR)"}, {"answer": "SELECT week FROM table_name_7 WHERE result = \"w 31-21\"", "question": "What is the week with w 31-21 result?", "context": "CREATE TABLE table_name_7 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_74 WHERE week = 7", "question": "In week 7, what was the average attendance?", "context": "CREATE TABLE table_name_74 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_28 WHERE date = \"september 10, 1979\"", "question": "Who was the opponent on september 10, 1979?", "context": "CREATE TABLE table_name_28 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date_of_release FROM table_name_16 WHERE title = \"twenty\"", "question": "When was twenty released?", "context": "CREATE TABLE table_name_16 (date_of_release VARCHAR, title VARCHAR)"}, {"answer": "SELECT date_of_release FROM table_name_15 WHERE title = \"god & guns\"", "question": "On what date was god & guns released?", "context": "CREATE TABLE table_name_15 (date_of_release VARCHAR, title VARCHAR)"}, {"answer": "SELECT billboard_peak FROM table_name_93 WHERE label = \"sanctuary\" AND date_of_release = \"september 12, 2000\"", "question": "What was the Billboard peak for the album released on September 12, 2000 by sanctuary?", "context": "CREATE TABLE table_name_93 (billboard_peak VARCHAR, label VARCHAR, date_of_release VARCHAR)"}, {"answer": "SELECT billboard_peak FROM table_name_52 WHERE title = \"god & guns\"", "question": "Where did god & guns peak on the Billboard?", "context": "CREATE TABLE table_name_52 (billboard_peak VARCHAR, title VARCHAR)"}, {"answer": "SELECT billboard_peak FROM table_name_95 WHERE label = \"mca\" AND date_of_release = \"february 2, 1976\"", "question": "What was the Billboard peak for the album released on February 2, 1976 by MCA?", "context": "CREATE TABLE table_name_95 (billboard_peak VARCHAR, label VARCHAR, date_of_release VARCHAR)"}, {"answer": "SELECT venue FROM table_name_31 WHERE status = \"tour match\" AND against > 0 AND opposing_team = \"eastern province\"", "question": "What venue was the tour match against eastern province played at with more than 0 against?", "context": "CREATE TABLE table_name_31 (venue VARCHAR, opposing_team VARCHAR, status VARCHAR, against VARCHAR)"}, {"answer": "SELECT status FROM table_name_20 WHERE against > 22", "question": "What is the status of the game where there was more than 22 against?", "context": "CREATE TABLE table_name_20 (status VARCHAR, against INTEGER)"}, {"answer": "SELECT game FROM table_name_41 WHERE opponents = \"14\"", "question": "In which game did the opponents score 14 points?", "context": "CREATE TABLE table_name_41 (game VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT streak FROM table_name_18 WHERE date = \"dec. 12\"", "question": "What was the streak after the game on Dec. 12?", "context": "CREATE TABLE table_name_18 (streak VARCHAR, date VARCHAR)"}, {"answer": "SELECT amt_30__desktop_ FROM table_name_76 WHERE feature = \"vlan settings for intel amt network interfaces\"", "question": "What's the AMT 3.0 when it has a feature of Vlan Settings for Intel AMT Network Interfaces?", "context": "CREATE TABLE table_name_76 (amt_30__desktop_ VARCHAR, feature VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_5 WHERE bronze = 0 AND rank < 2", "question": "What is the number of silver when bronze is 0, and rank is less than 2?", "context": "CREATE TABLE table_name_5 (silver INTEGER, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_64 WHERE total = 1 AND gold = 1", "question": "What is the silver when the Total is 1, and Gold is 1?", "context": "CREATE TABLE table_name_64 (silver INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_35 WHERE total < 1", "question": "What is the number of silver when the total is less than 1?", "context": "CREATE TABLE table_name_35 (silver VARCHAR, total INTEGER)"}, {"answer": "SELECT MAX(silver) FROM table_name_92 WHERE rank < 1", "question": "What is the largest silver number when the rank is smaller than 1?", "context": "CREATE TABLE table_name_92 (silver INTEGER, rank INTEGER)"}, {"answer": "SELECT AVG(bronze) FROM table_name_58 WHERE total < 1", "question": "What is the number of bronze when the total is smaller than 1?", "context": "CREATE TABLE table_name_58 (bronze INTEGER, total INTEGER)"}, {"answer": "SELECT MAX(bronze) FROM table_name_69 WHERE silver > 0 AND rank > 3", "question": "What is the highest number of bronze when silver is larger than 0, rank is larger than 3?", "context": "CREATE TABLE table_name_69 (bronze INTEGER, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_73 WHERE rank = \"12\" AND bronze > 0", "question": "What is the lowest number of silvers for countries in rank 12 with more than 0 bronze?", "context": "CREATE TABLE table_name_73 (silver INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_43 WHERE rank = \"5\" AND total > 6", "question": "What is the most number of silvers for teams in rank 5 with more than 6 total medals?", "context": "CREATE TABLE table_name_43 (silver INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_59 WHERE total = 3 AND silver < 2", "question": "What is the fewest number of golds for teams with a total of 3 and fewer than 2 silvers?", "context": "CREATE TABLE table_name_59 (gold INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_60 WHERE percentage_wins = \"52.11%\" AND flags < 8", "question": "What's the number of wins when the flags were less than 8 and 52.11% of wins?", "context": "CREATE TABLE table_name_60 (wins VARCHAR, percentage_wins VARCHAR, flags VARCHAR)"}, {"answer": "SELECT MAX(flags) FROM table_name_90 WHERE wins = 473 AND losses < 633", "question": "What's the most flags that had 473 wins and less than 633 losses?", "context": "CREATE TABLE table_name_90 (flags INTEGER, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT wins FROM table_name_77 WHERE flags > 6 AND draws > 10 AND club = \"south warrnambool\"", "question": "How many wins did South Warrnambool have that had more than 6 flags and a draw greater than 10?", "context": "CREATE TABLE table_name_77 (wins VARCHAR, club VARCHAR, flags VARCHAR, draws VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_8 WHERE club = \"warrnambool\" AND draws < 19", "question": "What are the losses of Warrnambool with a draw less than 19?", "context": "CREATE TABLE table_name_8 (losses INTEGER, club VARCHAR, draws VARCHAR)"}, {"answer": "SELECT location FROM table_name_63 WHERE rank_final = \"10\"", "question": "What is the Location of the Competition with a Rank-Final of 10?", "context": "CREATE TABLE table_name_63 (location VARCHAR, rank_final VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_61 WHERE silver = 2 AND nation = \"bulgaria (bul)\" AND rank < 18", "question": "How many gold medals for Bulgaria (BUL) with 2 silvers and a less than 18 rank?", "context": "CREATE TABLE table_name_61 (gold INTEGER, rank VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_35 WHERE rank > 6 AND nation = \"great britain (gbr)\" AND silver > 1", "question": "What's the most bronze medals for Great Britain (GBR) with more than 1 silver and ranked more than 6?", "context": "CREATE TABLE table_name_35 (bronze INTEGER, silver VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_29 WHERE bronze = 2 AND gold < 2", "question": "What's the total silver medals having less than 2 gold and 2 bronze?", "context": "CREATE TABLE table_name_29 (silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT name FROM table_name_72 WHERE championship > 2 AND total > 4 AND fa_cup > 0", "question": "Which Name has a Championship larger than 2, and a Total larger than 4, and an FA Cup larger than 0?", "context": "CREATE TABLE table_name_72 (name VARCHAR, fa_cup VARCHAR, championship VARCHAR, total VARCHAR)"}, {"answer": "SELECT video FROM table_name_1 WHERE channel < 35.66 AND programming = \"nhk world\"", "question": "Which Video has a Channel smaller than 35.66, and a Programming of nhk world?", "context": "CREATE TABLE table_name_1 (video VARCHAR, channel VARCHAR, programming VARCHAR)"}, {"answer": "SELECT video FROM table_name_53 WHERE psip_short_name = \"rt\"", "question": "Which Video has a PSIP Short Name of rt?", "context": "CREATE TABLE table_name_53 (video VARCHAR, psip_short_name VARCHAR)"}, {"answer": "SELECT programming FROM table_name_14 WHERE channel = 35.4", "question": "Which Programming has a Channel of 35.4?", "context": "CREATE TABLE table_name_14 (programming VARCHAR, channel VARCHAR)"}, {"answer": "SELECT COUNT(vuelta_wins) FROM table_name_31 WHERE country = \"ireland\" AND points > 4", "question": "How many times is the country ireland and points more than 4?", "context": "CREATE TABLE table_name_31 (vuelta_wins VARCHAR, country VARCHAR, points VARCHAR)"}, {"answer": "SELECT format FROM table_name_24 WHERE catalog = \"mhcp-66\"", "question": "What is the format for the MHCP-66 Catalog?", "context": "CREATE TABLE table_name_24 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_21 WHERE date = \"august 20, 1965\"", "question": "What Catalog came out on August 20, 1965?", "context": "CREATE TABLE table_name_21 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_62 WHERE format = \"lp\" AND label = \"simply vinyl\"", "question": "What is the catalog with an LP Format and under the Simply Vinyl label?", "context": "CREATE TABLE table_name_62 (catalog VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE format = \"cd\" AND label = \"columbia/legacy\" AND country = \"uk\"", "question": "What date had a CD format, under Columbia/Legacy from the UK?", "context": "CREATE TABLE table_name_77 (date VARCHAR, country VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT country FROM table_name_20 WHERE format = \"lp\" AND catalog = \"s 31503\"", "question": "What country has an LP format, catalog s 31503?", "context": "CREATE TABLE table_name_20 (country VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_96 WHERE catalog = \"cl 2372\"", "question": "What is the format for Catalog CL 2372?", "context": "CREATE TABLE table_name_96 (format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT event FROM table_name_61 WHERE tournament = \"european championships\" AND year = 2006", "question": "What event has european championships as the tournament, with 2006 as the year?", "context": "CREATE TABLE table_name_61 (event VARCHAR, tournament VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_64 WHERE tournament = \"international meeting & national championships\"", "question": "What average year has international meeting & national championships as the tournament?", "context": "CREATE TABLE table_name_64 (year INTEGER, tournament VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_52 WHERE tournament = \"hypo-meeting\" AND points = \"8002\"", "question": "What is the lowest year that has hypo-meeting as the tournament, with 8002 as the points?", "context": "CREATE TABLE table_name_52 (year INTEGER, tournament VARCHAR, points VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_58 WHERE time = \"4:17\"", "question": "Who was the opponent in the match that lasted 4:17?", "context": "CREATE TABLE table_name_58 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_21 WHERE round < 3 AND method = \"submission (triangle choke)\"", "question": "Where was the match that lasted less than 3 rounds and was won by submission (triangle choke)?", "context": "CREATE TABLE table_name_21 (location VARCHAR, round VARCHAR, method VARCHAR)"}, {"answer": "SELECT event FROM table_name_55 WHERE opponent = \"carlos alexandre pereira\"", "question": "Which event had Carlos Alexandre Pereira as opponent?", "context": "CREATE TABLE table_name_55 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT location FROM table_name_44 WHERE res = \"win\" AND time = \"4:16\"", "question": "Where was the match that resulted in a win in 4:16 held?", "context": "CREATE TABLE table_name_44 (location VARCHAR, res VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_name_1 WHERE median_family_income = \"$50,553\"", "question": "What's the population that has a median family income of $50,553?", "context": "CREATE TABLE table_name_1 (population VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_58 WHERE country = \"egypt\"", "question": "What is the highest rank for the team of egypt?", "context": "CREATE TABLE table_name_58 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_50 WHERE notes = \"q\" AND country = \"egypt\"", "question": "Who was the athlete from egypt with q in the notes?", "context": "CREATE TABLE table_name_50 (athlete VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT 2 AS fm__mhz_ FROM table_name_91 WHERE service_area = \"sw ireland\"", "question": "What is the 2FM for SW Ireland?", "context": "CREATE TABLE table_name_91 (service_area VARCHAR)"}, {"answer": "SELECT event FROM table_name_18 WHERE medal = \"gold\" AND name = \"duncan white\"", "question": "Name Event of Medal of gold and a Name of duncan white?", "context": "CREATE TABLE table_name_18 (event VARCHAR, medal VARCHAR, name VARCHAR)"}, {"answer": "SELECT event FROM table_name_60 WHERE games = \"1950 auckland\" AND medal = \"bronze\"", "question": "Name the Event of the Games of 1950 auckland and a Medal of bronze?", "context": "CREATE TABLE table_name_60 (event VARCHAR, games VARCHAR, medal VARCHAR)"}, {"answer": "SELECT medal FROM table_name_14 WHERE name = \"alex obeyesekera\"", "question": "Which Medal has a Name of alex obeyesekera?", "context": "CREATE TABLE table_name_14 (medal VARCHAR, name VARCHAR)"}, {"answer": "SELECT event FROM table_name_69 WHERE medal = \"gold\" AND name = \"barney henricus\"", "question": "Which Event has a Medal of gold and a Name of barney henricus?", "context": "CREATE TABLE table_name_69 (event VARCHAR, medal VARCHAR, name VARCHAR)"}, {"answer": "SELECT event FROM table_name_93 WHERE name = \"sudesh peiris\"", "question": "Name the Event of sudesh peiris?", "context": "CREATE TABLE table_name_93 (event VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_59 WHERE developer_s_ = \"bioware\"", "question": "What year was the developer(s) Bioware?", "context": "CREATE TABLE table_name_59 (year INTEGER, developer_s_ VARCHAR)"}, {"answer": "SELECT genre FROM table_name_9 WHERE year > 2009 AND platform_s_ = \"playstation 3\"", "question": "What is the genre for 2009 on Playstation 3?", "context": "CREATE TABLE table_name_9 (genre VARCHAR, year VARCHAR, platform_s_ VARCHAR)"}, {"answer": "SELECT result FROM table_name_87 WHERE recipients_and_nominees = \"outstanding achievement in drama\" AND year = 1995", "question": "Which result has a recipients and nominees of outstanding achievement in drama with 1995 as the year?", "context": "CREATE TABLE table_name_87 (result VARCHAR, recipients_and_nominees VARCHAR, year VARCHAR)"}, {"answer": "SELECT recipients_and_nominees FROM table_name_93 WHERE category = \"outstanding achievement in drama\" AND year = 1994", "question": "What recipients and nominees have outstanding achievement in drama as the category with 1994 as the year?", "context": "CREATE TABLE table_name_93 (recipients_and_nominees VARCHAR, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_48 WHERE role_episode = \"outstanding achievement in drama\" AND year < 1995", "question": "What result has outstanding achievement in drama, as the role/episode with a year prior to 1995?", "context": "CREATE TABLE table_name_48 (result VARCHAR, role_episode VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_37 WHERE gymnast = \"danny pinheiro rodrigues ( fra )\" AND position < 7", "question": "What is the total for Danny Pinheiro Rodrigues ( fra ), in a Position smaller than 7?", "context": "CREATE TABLE table_name_37 (total INTEGER, gymnast VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_87 WHERE gymnast = \"chen yibing ( chn )\" AND b_score < 9.225", "question": "What is the total for Chen Yibing ( chn ), when his B Score was smaller than 9.225?", "context": "CREATE TABLE table_name_87 (total VARCHAR, gymnast VARCHAR, b_score VARCHAR)"}, {"answer": "SELECT COUNT(a_score) FROM table_name_54 WHERE b_score > 9.05 AND total < 16.525", "question": "What is the A Score when the B Score is more than 9.05, and the total is less than 16.525?", "context": "CREATE TABLE table_name_54 (a_score VARCHAR, b_score VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_58 WHERE gymnast = \"oleksandr vorobiov ( ukr )\" AND total > 16.25", "question": "What is the position for Oleksandr Vorobiov ( ukr ), when the total was larger than 16.25?", "context": "CREATE TABLE table_name_58 (position VARCHAR, gymnast VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_40 WHERE gymnast = \"robert stanescu ( rou )\" AND b_score > 8.75", "question": "What is the total for Robert Stanescu ( rou ), when the B Score is larger than 8.75?", "context": "CREATE TABLE table_name_40 (total INTEGER, gymnast VARCHAR, b_score VARCHAR)"}, {"answer": "SELECT notes FROM table_name_75 WHERE country = \"poland\"", "question": "Poland has what notes?", "context": "CREATE TABLE table_name_75 (notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT rank FROM table_name_85 WHERE country = \"croatia\"", "question": "What is Croatia's rank?", "context": "CREATE TABLE table_name_85 (rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_32 WHERE rank = 5", "question": "When rank is 5, what is the rowers?", "context": "CREATE TABLE table_name_32 (rowers VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_33 WHERE country = \"denmark\"", "question": "What is the average rank for Denmark?", "context": "CREATE TABLE table_name_33 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT term_end FROM table_name_6 WHERE party = \"kadima\" AND term_start = \"18 january 2006\"", "question": "What is the end of the term for Kadima that started on 18 January 2006?", "context": "CREATE TABLE table_name_6 (term_end VARCHAR, party VARCHAR, term_start VARCHAR)"}, {"answer": "SELECT minister FROM table_name_35 WHERE term_start = \"4 may 2006\"", "question": "Whose term started on 4 May 2006?", "context": "CREATE TABLE table_name_35 (minister VARCHAR, term_start VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_71 WHERE gold < 2 AND rank = \"29\" AND total > 3", "question": "What's the number of bronze when they are ranked 29, had a total more than 3 and less than 2 golds?", "context": "CREATE TABLE table_name_71 (bronze INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_51 WHERE silver < 2 AND total > 4 AND rank = \"33\"", "question": "What's the bronze medal count for Rank 33 when the silver count was less than 2 and the total was more than 4?", "context": "CREATE TABLE table_name_51 (bronze INTEGER, rank VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_45 WHERE bronze < 5 AND gold > 0 AND rank = \"22\"", "question": "How many silver for rank 22 when gold count was more than 0 and Bronze count was less than 5?", "context": "CREATE TABLE table_name_45 (silver INTEGER, rank VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_64 WHERE nation = \"south africa (rsa)\" AND total > 16", "question": "What's the bronze count for South Africa (RSA) with a total more than 16?", "context": "CREATE TABLE table_name_64 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(election) FROM table_name_29 WHERE president = \"leonardo marras\" AND inhabitants < 227 OFFSET 063", "question": "What was the lowest election result for President Leonardo Marras with an area smaller than 227,063 people?", "context": "CREATE TABLE table_name_29 (election INTEGER, president VARCHAR, inhabitants VARCHAR)"}, {"answer": "SELECT party FROM table_name_33 WHERE president = \"stefano baccelli\"", "question": "What is the party affiliation for President Stefano Baccelli?", "context": "CREATE TABLE table_name_33 (party VARCHAR, president VARCHAR)"}, {"answer": "SELECT AVG(election) FROM table_name_50 WHERE province = \"grosseto\" AND established < 1766", "question": "What is the average election result for the province of Grosseto from 1766 and prior?", "context": "CREATE TABLE table_name_50 (election INTEGER, province VARCHAR, established VARCHAR)"}, {"answer": "SELECT COUNT(all_bills_cosponsored) FROM table_name_80 WHERE all_amendments_sponsored < 15 AND all_bills_sponsored = 6 AND all_amendments_cosponsored < 0", "question": "What is the total number of all bills co-sponsored associated with all amendments sponsored under 15, all bills sponsored of 6, and 0 amendments cosponsored?", "context": "CREATE TABLE table_name_80 (all_bills_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR, all_amendments_sponsored VARCHAR, all_bills_sponsored VARCHAR)"}, {"answer": "SELECT MIN(all_amendments_sponsored) FROM table_name_52 WHERE bills_originally_cosponsored = 150 AND all_bills_cosponsored > 247", "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 MAX(all_bills_cosponsored) FROM table_name_22 WHERE all_bills_sponsored < 24 AND all_amendments_sponsored < 16", "question": "What is the highest number of bills cosponsored associated with under 24 bills sponsored and under 16 amendments sponsored?", "context": "CREATE TABLE table_name_22 (all_bills_cosponsored INTEGER, all_bills_sponsored VARCHAR, all_amendments_sponsored VARCHAR)"}, {"answer": "SELECT MAX(all_amendments_cosponsored) FROM table_name_25 WHERE amendments_originally_cosponsored = 53 AND all_bills_sponsored > 54", "question": "What is the highest number of amendments cosponsored associated with 53 amendments originally cosponsored and over 54 bills sponsored?", "context": "CREATE TABLE table_name_25 (all_amendments_cosponsored INTEGER, amendments_originally_cosponsored VARCHAR, all_bills_sponsored VARCHAR)"}, {"answer": "SELECT all_bills_sponsored FROM table_name_57 WHERE bills_originally_cosponsored > 113 AND all_amendments_cosponsored < 47", "question": "What is the number of bills sponsored associated with over 113 bills originally cosponsored and under 47 amendments cosponsored?", "context": "CREATE TABLE table_name_57 (all_bills_sponsored VARCHAR, bills_originally_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_88 WHERE heat = 1 AND nationality = \"uzbekistan\"", "question": "What is the Lane of the swimmer from Uzbekistan in Heat 1?", "context": "CREATE TABLE table_name_88 (lane VARCHAR, heat VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT station FROM table_name_18 WHERE frequency = \"873khz\"", "question": "Which station has a frequency of 873khz?", "context": "CREATE TABLE table_name_18 (station VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT transmitter_location FROM table_name_87 WHERE station = \"voice of vietnam\"", "question": "Where is the transmitter located for the station voice of vietnam", "context": "CREATE TABLE table_name_87 (transmitter_location VARCHAR, station VARCHAR)"}, {"answer": "SELECT station FROM table_name_79 WHERE country_of_origin = \"china\" AND frequency = \"684khz\"", "question": "Which station is from China and has a frequency of 684khz?", "context": "CREATE TABLE table_name_79 (station VARCHAR, country_of_origin VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT tally FROM table_name_76 WHERE opposition = \"westmeath\"", "question": "Name the Tally of an Opposition of westmeath?", "context": "CREATE TABLE table_name_76 (tally VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT horizontal_bar FROM table_name_18 WHERE pommel_horse = \"n/a\" AND position < 27 AND parallel_bars = \"15.800\"", "question": "What is the horizontal bar score with a pommel horse of n/a, and the position is less than 27, and the parallel bars score is 15.800?", "context": "CREATE TABLE table_name_18 (horizontal_bar VARCHAR, parallel_bars VARCHAR, pommel_horse VARCHAR, position VARCHAR)"}, {"answer": "SELECT floor FROM table_name_1 WHERE position < 21 AND total < 81.2 AND pommel_horse = \"13.925\"", "question": "What is the score of the floor when the position is less than 21, and less than 81.2 total, and the pommel horse score is 13.925?", "context": "CREATE TABLE table_name_1 (floor VARCHAR, pommel_horse VARCHAR, position VARCHAR, total VARCHAR)"}, {"answer": "SELECT gymnast FROM table_name_83 WHERE floor = \"14.800\"", "question": "Who is the gymnast with a floor score of 14.800?", "context": "CREATE TABLE table_name_83 (gymnast VARCHAR, floor VARCHAR)"}, {"answer": "SELECT horizontal_bar FROM table_name_60 WHERE pommel_horse = \"15.250\"", "question": "What horizontal bar score also has a pommel horse score of 15.250?", "context": "CREATE TABLE table_name_60 (horizontal_bar VARCHAR, pommel_horse VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_8 WHERE parallel_bars = \"14.625\"", "question": "With a parallel bars score of 14.625 what is the average total?", "context": "CREATE TABLE table_name_8 (total INTEGER, parallel_bars VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_21 WHERE time = \"3:43.491\"", "question": "What is the Rank of the Athletes with a Time of 3:43.491?", "context": "CREATE TABLE table_name_21 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT notes FROM table_name_41 WHERE country = \"germany\"", "question": "What are the Notes of the Athletes from Germany?", "context": "CREATE TABLE table_name_41 (notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_65 WHERE country = \"ukraine\"", "question": "What is the Rank of the Athletes from Ukraine?", "context": "CREATE TABLE table_name_65 (rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT location FROM table_name_13 WHERE winning_skip = \"sherry middaugh\"", "question": "What location did Sherry Middaugh win in?", "context": "CREATE TABLE table_name_13 (location VARCHAR, winning_skip VARCHAR)"}, {"answer": "SELECT event FROM table_name_11 WHERE winning_skip = \"patti lank\"", "question": "What event did Patti Lank have the winning skip?", "context": "CREATE TABLE table_name_11 (event VARCHAR, winning_skip VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE runner_up_skip = \"binia feltscher-beeli\"", "question": "What date shows Binia Feltscher-Beeli as the runner-up skip?", "context": "CREATE TABLE table_name_68 (date VARCHAR, runner_up_skip VARCHAR)"}, {"answer": "SELECT runner_up_skip FROM table_name_61 WHERE winning_skip = \"julie reddick\"", "question": "What person was the runner-up skip when Julie Reddick was the winning skip?", "context": "CREATE TABLE table_name_61 (runner_up_skip VARCHAR, winning_skip VARCHAR)"}, {"answer": "SELECT yellow_109_percentage FROM table_name_94 WHERE brazil_100_percentage = \"0,43407\"", "question": "What's the Yellow fertility rate when Brazil is 0,43407?", "context": "CREATE TABLE table_name_94 (yellow_109_percentage VARCHAR, brazil_100_percentage VARCHAR)"}, {"answer": "SELECT SUM(area__km_2__) FROM table_name_59 WHERE population__2011_ = 110", "question": "What is the sum of the area in km with a population of 110 in 2011?", "context": "CREATE TABLE table_name_59 (area__km_2__ INTEGER, population__2011_ VARCHAR)"}, {"answer": "SELECT AVG(population__2006_) FROM table_name_14 WHERE population__2011_ > 5 AND area__km_2__ = 5.84", "question": "What is the average population in 2006 that has more than 5 people in 2011 and an area 5.84km?", "context": "CREATE TABLE table_name_14 (population__2006_ INTEGER, population__2011_ VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_67 WHERE react = 0.216", "question": "What is the lowest lane with a 0.216 react?", "context": "CREATE TABLE table_name_67 (lane INTEGER, react VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_87 WHERE lane < 2", "question": "What is the total rank for the lane before 2?", "context": "CREATE TABLE table_name_87 (rank INTEGER, lane INTEGER)"}, {"answer": "SELECT genre FROM table_name_29 WHERE year = 2007", "question": "What genre is the game from the year 2007?", "context": "CREATE TABLE table_name_29 (genre VARCHAR, year VARCHAR)"}, {"answer": "SELECT game FROM table_name_39 WHERE platform_s_ = \"playstation 3\" AND year < 2009", "question": "What is the Game that came out before the year 2009 for the Playstation 3?", "context": "CREATE TABLE table_name_39 (game VARCHAR, platform_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_90 WHERE game = \"the legend of zelda: twilight princess\"", "question": "What is the earliest year that had the Legend of Zelda: Twilight Princess game?", "context": "CREATE TABLE table_name_90 (year INTEGER, game VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_70 WHERE date = \"november 15, 1981\"", "question": "Who was the opponent on November 15, 1981?", "context": "CREATE TABLE table_name_70 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(debut_year) FROM table_name_95 WHERE player = \"noel carroll\" AND games < 12", "question": "Which Debut year has a Player of noel carroll, and Games smaller than 12?", "context": "CREATE TABLE table_name_95 (debut_year INTEGER, player VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_4 WHERE player = \"noel carroll\"", "question": "Which Goals have a Player of noel carroll?", "context": "CREATE TABLE table_name_4 (goals INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(debut_year) FROM table_name_39 WHERE years_at_club = \"1950\u20131951\" AND games > 14", "question": "How many debut years have Years at club of 1950\u20131951, and Games larger than 14?", "context": "CREATE TABLE table_name_39 (debut_year INTEGER, years_at_club VARCHAR, games VARCHAR)"}, {"answer": "SELECT title FROM table_name_85 WHERE label = \"origianal sound entertainment\"", "question": "Which title has origianal sound entertainment as its label?", "context": "CREATE TABLE table_name_85 (title VARCHAR, label VARCHAR)"}, {"answer": "SELECT MAX(year_of_release) FROM table_name_71 WHERE title = \"greatest hits\"", "question": "What was the latest year of release for the greatest hits title?", "context": "CREATE TABLE table_name_71 (year_of_release INTEGER, title VARCHAR)"}, {"answer": "SELECT label FROM table_name_39 WHERE country_of_release = \"eu\"", "question": "When the country of release is EU, what is the label name?", "context": "CREATE TABLE table_name_39 (label VARCHAR, country_of_release VARCHAR)"}, {"answer": "SELECT MAX(latitude) FROM table_name_24 WHERE township = \"kingsley\" AND geo_id > 3803942820", "question": "what is the highest latitude when the township is kingsley and the geo id is higher than 3803942820?", "context": "CREATE TABLE table_name_24 (latitude INTEGER, township VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT AVG(latitude) FROM table_name_57 WHERE water__sqmi_ = 0.058 AND ansi_code < 1759683", "question": "what is the latitude when water (sqmi) is 0.058 and the ansi code is less than 1759683?", "context": "CREATE TABLE table_name_57 (latitude INTEGER, water__sqmi_ VARCHAR, ansi_code VARCHAR)"}, {"answer": "SELECT MAX(geo_id) FROM table_name_1 WHERE longitude = -98.435797 AND land___sqmi__ < 36.039", "question": "what is the geo id when the longitude is -98.435797 and the land (sqmi) is less than 36.039?", "context": "CREATE TABLE table_name_1 (geo_id INTEGER, longitude VARCHAR, land___sqmi__ VARCHAR)"}, {"answer": "SELECT MIN(year_joined) FROM table_name_93 WHERE mascot = \"pioneers\"", "question": "Name the lowest Year Joined which has a Mascot of pioneers?", "context": "CREATE TABLE table_name_93 (year_joined INTEGER, mascot VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_32 WHERE mascot = \"pioneers\"", "question": "Name the IHSAA Class of Mascot of pioneers?", "context": "CREATE TABLE table_name_32 (ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_8 WHERE county = \"55 morgan\" AND school = \"mooresville\"", "question": "Name the IHSAA Class of 55 morgan and a School of mooresville?", "context": "CREATE TABLE table_name_8 (ihsaa_class VARCHAR, county VARCHAR, school VARCHAR)"}, {"answer": "SELECT location FROM table_name_35 WHERE mascot = \"quakers\"", "question": "where is Mascot of quakers?", "context": "CREATE TABLE table_name_35 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_2 WHERE school = \"decatur central\"", "question": "What kind of IHSAA Class has a School of decatur central?", "context": "CREATE TABLE table_name_2 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT studio_s_ FROM table_name_57 WHERE year < 2004 AND director = \"peter lord nick park\"", "question": "What studio had the director Peter Lord Nick Park before 2004?", "context": "CREATE TABLE table_name_57 (studio_s_ VARCHAR, year VARCHAR, director VARCHAR)"}, {"answer": "SELECT studio_s_ FROM table_name_92 WHERE year = 2007 AND director = \"paul greengrass\"", "question": "What studio did Paul Greengrass direct in 2007?", "context": "CREATE TABLE table_name_92 (studio_s_ VARCHAR, year VARCHAR, director VARCHAR)"}, {"answer": "SELECT SUM(a_score) FROM table_name_1 WHERE b_score > 9.15 AND position = \"2nd\"", "question": "What is the A score when the B score is more than 9.15 and the gymnast was in the 2nd position?", "context": "CREATE TABLE table_name_1 (a_score INTEGER, b_score VARCHAR, position VARCHAR)"}, {"answer": "SELECT quantity FROM table_name_20 WHERE year_s__of_manufacture = \"1900\" AND class = \"mc\"", "question": "what is the quantity when the year of manufacture is 1900 and the class is mc?", "context": "CREATE TABLE table_name_20 (quantity VARCHAR, year_s__of_manufacture VARCHAR, class VARCHAR)"}, {"answer": "SELECT class FROM table_name_96 WHERE quantity = 4", "question": "what is the class when the quantity is 4?", "context": "CREATE TABLE table_name_96 (class VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE week = 8", "question": "Who were the opponents on Week 8?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT change__12_11_ FROM table_name_8 WHERE city = \"agadir\"", "question": "When the city is agadir what is the change (12/11)?", "context": "CREATE TABLE table_name_8 (change__12_11_ VARCHAR, city VARCHAR)"}, {"answer": "SELECT catalog_number FROM table_name_30 WHERE a_side = \"venus demilo\"", "question": "What is the catalog number of Venus Demilo's A-side?", "context": "CREATE TABLE table_name_30 (catalog_number VARCHAR, a_side VARCHAR)"}, {"answer": "SELECT year FROM table_name_46 WHERE b_side = \"just squeeze me\"", "question": "What year did the B-Side of Just Squeeze Me come out?", "context": "CREATE TABLE table_name_46 (year VARCHAR, b_side VARCHAR)"}, {"answer": "SELECT label FROM table_name_92 WHERE catalog_number = \"817\"", "question": "What label has the 817 catalog?", "context": "CREATE TABLE table_name_92 (label VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT a_side FROM table_name_75 WHERE b_side = \"it never entered my mind, part 2\"", "question": "What is the A-side for it Never Entered My Mind, Part 2?", "context": "CREATE TABLE table_name_75 (a_side VARCHAR, b_side VARCHAR)"}, {"answer": "SELECT a_side FROM table_name_87 WHERE catalog_number = \"902\"", "question": "What is the A-side for catalog 902?", "context": "CREATE TABLE table_name_87 (a_side VARCHAR, catalog_number VARCHAR)"}, {"answer": "SELECT class FROM table_name_10 WHERE type = \"a1 bm\"", "question": "What is the class of the a1 bm type?", "context": "CREATE TABLE table_name_10 (class VARCHAR, type VARCHAR)"}, {"answer": "SELECT quantity FROM table_name_5 WHERE class = \"aw\"", "question": "What is the quantity of the aw class?", "context": "CREATE TABLE table_name_5 (quantity VARCHAR, class VARCHAR)"}, {"answer": "SELECT class FROM table_name_6 WHERE quantity = \"1\"", "question": "What is the class with 1 quantity?", "context": "CREATE TABLE table_name_6 (class VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT railway_number_s_ FROM table_name_3 WHERE class = \"aw\"", "question": "What is the railway number of the aw class?", "context": "CREATE TABLE table_name_3 (railway_number_s_ VARCHAR, class VARCHAR)"}, {"answer": "SELECT game FROM table_name_80 WHERE record = \"31-15\"", "question": "What was the game when the record was 31-15?", "context": "CREATE TABLE table_name_80 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE score = \"w 106-100\"", "question": "What was the date of the game with a score of W 106-100?", "context": "CREATE TABLE table_name_2 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT speed FROM table_name_26 WHERE rank = \"1\"", "question": "What is the speed for rank 1?", "context": "CREATE TABLE table_name_26 (speed VARCHAR, rank VARCHAR)"}, {"answer": "SELECT team FROM table_name_92 WHERE rank = \"ret\" AND rider = \"frank a applebee\"", "question": "What team has a Rank Ret, and rider Frank A Applebee?", "context": "CREATE TABLE table_name_92 (team VARCHAR, rank VARCHAR, rider VARCHAR)"}, {"answer": "SELECT internet_explorer FROM table_name_91 WHERE chrome = \"29.07%\"", "question": "What internet explorer has 29.07% for the chrome?", "context": "CREATE TABLE table_name_91 (internet_explorer VARCHAR, chrome VARCHAR)"}, {"answer": "SELECT other_mozilla FROM table_name_71 WHERE safari = \"9.41%\"", "question": "What is the other mozilla that has 9.41% for the safari?", "context": "CREATE TABLE table_name_71 (other_mozilla VARCHAR, safari VARCHAR)"}, {"answer": "SELECT other_mozilla FROM table_name_80 WHERE period = \"january 2010\"", "question": "What other mozilla has January 2010 as the period?", "context": "CREATE TABLE table_name_80 (other_mozilla VARCHAR, period VARCHAR)"}, {"answer": "SELECT internet_explorer FROM table_name_31 WHERE safari = \"7.89%\" AND chrome = \"8.22%\"", "question": "What internet explorer has 7.89% as the safari, and 8.22% as the chrome?", "context": "CREATE TABLE table_name_31 (internet_explorer VARCHAR, safari VARCHAR, chrome VARCHAR)"}, {"answer": "SELECT period FROM table_name_66 WHERE other_mozilla = \"0.25%\"", "question": "What period has 0.25% as the other mozilla?", "context": "CREATE TABLE table_name_66 (period VARCHAR, other_mozilla VARCHAR)"}, {"answer": "SELECT socket FROM table_name_75 WHERE release_price___usd__ = \"$378\" AND turbo = \"6/6/8/9\"", "question": "Which socket goes with the item with release price of $378 and turbo of 6/6/8/9?", "context": "CREATE TABLE table_name_75 (socket VARCHAR, release_price___usd__ VARCHAR, turbo VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_65 WHERE model_number = \"core i7-2635qm\"", "question": "What is the L2 cache for the core i7-2635QM?", "context": "CREATE TABLE table_name_65 (l2_cache VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT release_price___usd__ FROM table_name_96 WHERE gpu_frequency = \"standard power, embedded\"", "question": "What is the release price for the GPU frequency of standard power, embedded?", "context": "CREATE TABLE table_name_96 (release_price___usd__ VARCHAR, gpu_frequency VARCHAR)"}, {"answer": "SELECT socket FROM table_name_40 WHERE turbo = \"8/8/10/11\"", "question": "What is the socked when the turbo is 8/8/10/11?", "context": "CREATE TABLE table_name_40 (socket VARCHAR, turbo VARCHAR)"}, {"answer": "SELECT round FROM table_name_42 WHERE record = \"1-0\"", "question": "Which round did the bout that led to a 1-0 record end in?", "context": "CREATE TABLE table_name_42 (round VARCHAR, record VARCHAR)"}, {"answer": "SELECT time FROM table_name_73 WHERE lane < 2 AND nationality = \"spain\"", "question": "Which Time has a Lane smaller than 2, and a Nationality of spain?", "context": "CREATE TABLE table_name_73 (time VARCHAR, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_39 WHERE name = \"miguel molina\"", "question": "How many Heats have a Name of miguel molina?", "context": "CREATE TABLE table_name_39 (heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT league FROM table_name_46 WHERE fa_cup = \"qr4\" AND fa_trophy = \"qf\"", "question": "what is the league when the fa cup is qr4 and the fa trophy is qf?", "context": "CREATE TABLE table_name_46 (league VARCHAR, fa_cup VARCHAR, fa_trophy VARCHAR)"}, {"answer": "SELECT fa_trophy FROM table_name_66 WHERE leading_scorer = \"lee gregory (8)\"", "question": "what is the fa trophy when the leading scorer is lee gregory (8)?", "context": "CREATE TABLE table_name_66 (fa_trophy VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT year FROM table_name_81 WHERE position = \"1/22 promoted\" AND leading_scorer = \"james dean (27)\"", "question": "what is the year when the position is 1/22 promoted and the leading scorer is james dean (27)?", "context": "CREATE TABLE table_name_81 (year VARCHAR, position VARCHAR, leading_scorer VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_52 WHERE home_team = \"altrincham\"", "question": "When the Altrincham was the home team what was the tie no?", "context": "CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_77 WHERE home_team = \"crawley town\"", "question": "Crawley Town as the home team has what as the tie no?", "context": "CREATE TABLE table_name_77 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_47 WHERE rank > 2 AND time = \"55.77\"", "question": "What is the nationality of the swimmer with a rank over 2 with a time of 55.77?", "context": "CREATE TABLE table_name_47 (nationality VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(heat) FROM table_name_51 WHERE nationality = \"czech republic\" AND rank > 41", "question": "What is the earliest heat with a finisher from the Czech Republic and a rank over 41?", "context": "CREATE TABLE table_name_51 (heat INTEGER, nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_38 WHERE name = \"gregor tait\" AND lane > 6", "question": "What is the total number of heats with a finisher named Gregor Tait in lanes over 6?", "context": "CREATE TABLE table_name_38 (heat VARCHAR, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT time FROM table_name_47 WHERE rank = 40", "question": "What is the time of the swimmer in rank 40?", "context": "CREATE TABLE table_name_47 (time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT series FROM table_name_35 WHERE director = \"norm mccabe\" AND title = \"tokio jokio\"", "question": "From what series was Tokio Jokio, directed by Norm McCabe?", "context": "CREATE TABLE table_name_35 (series VARCHAR, director VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_71 WHERE title = \"inki and the minah bird\"", "question": "When was Inki and the Minah Bird released?", "context": "CREATE TABLE table_name_71 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT series FROM table_name_66 WHERE title = \"peck up your troubles\"", "question": "From what series is Peck Up Your Troubles?", "context": "CREATE TABLE table_name_66 (series VARCHAR, title VARCHAR)"}, {"answer": "SELECT SUM(civil_liberties) FROM table_name_78 WHERE political_rights = 6 AND president = \"yoweri museveni\" AND year = 1993", "question": "When the president was Yoweri Museveni, and the year was 1993, with rank of 6 under political rights, what was the total of civil liberties?", "context": "CREATE TABLE table_name_78 (civil_liberties INTEGER, year VARCHAR, political_rights VARCHAR, president VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_39 WHERE status = \"not free\" AND civil_liberties < 7 AND political_rights < 6", "question": "What is the year average when not free was the status, and less than 7 was the civil liberties, and less than 6 political rights?", "context": "CREATE TABLE table_name_39 (year INTEGER, political_rights VARCHAR, status VARCHAR, civil_liberties VARCHAR)"}, {"answer": "SELECT MIN(political_rights) FROM table_name_54 WHERE year = 1976", "question": "What is the least political rights rank in 1976?", "context": "CREATE TABLE table_name_54 (political_rights INTEGER, year VARCHAR)"}, {"answer": "SELECT average_ratings FROM table_name_38 WHERE episodes > 9 AND japanese_title = \"\u30db\u30bf\u30eb\u30ce\u30d2\u30ab\u30ea\"", "question": "What is average ratings for Japanese title of \u30db\u30bf\u30eb\u30ce\u30d2\u30ab\u30ea, with episodes larger than 9?", "context": "CREATE TABLE table_name_38 (average_ratings VARCHAR, episodes VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT MIN(episodes) FROM table_name_65 WHERE average_ratings = \"8.7%\"", "question": "Which episodes has the lowest average ratings of 8.7%?", "context": "CREATE TABLE table_name_65 (episodes INTEGER, average_ratings VARCHAR)"}, {"answer": "SELECT romaji_title FROM table_name_94 WHERE japanese_title = \"\u83ca\u6b21\u90ce\u3068\u3055\u304d 3\"", "question": "Which romaji title, has Japanese title of \u83ca\u6b21\u90ce\u3068\u3055\u304d 3?", "context": "CREATE TABLE table_name_94 (romaji_title VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT tv_station FROM table_name_45 WHERE episodes > 10 AND romaji_title = \"tantei gakuen q\"", "question": "Which TV station, has romaji title of tantei gakuen q and episodes larger than 10?", "context": "CREATE TABLE table_name_45 (tv_station VARCHAR, episodes VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT almaty_, _kazakhstan FROM table_name_17 WHERE sergey_filimonov___kaz__ = \"210kg\"", "question": "What is the Almaty, Kazakhstan when Sergey Filimonov ( KAZ ) is 210kg?", "context": "CREATE TABLE table_name_17 (almaty_ VARCHAR, _kazakhstan VARCHAR, sergey_filimonov___kaz__ VARCHAR)"}, {"answer": "SELECT sergey_filimonov___kaz__ FROM table_name_69 WHERE \"snatch\" = \"snatch\"", "question": "What shows for Sergey Filimonov (KAZ) when the Snatch shows snatch?", "context": "CREATE TABLE table_name_69 (sergey_filimonov___kaz__ VARCHAR)"}, {"answer": "SELECT almaty_, _kazakhstan FROM table_name_42 WHERE sergey_filimonov___kaz__ = \"210kg\"", "question": "What is the Almaty, Kazakhstan when the Sergey Filimonov (KAZ) is 210kg?", "context": "CREATE TABLE table_name_42 (almaty_ VARCHAR, _kazakhstan VARCHAR, sergey_filimonov___kaz__ VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_89 WHERE role = \"main\" AND character = \"guan yu (\u95dc\u7fbd)\"", "question": "What year was the main role a character named Guan Yu (\u95dc\u7fbd)?", "context": "CREATE TABLE table_name_89 (year INTEGER, role VARCHAR, character VARCHAR)"}, {"answer": "SELECT english FROM table_name_88 WHERE character = \"lin ming kuan (\u6797\u660e\u5bec)\"", "question": "What is the English character for Lin Ming Kuan (\u6797\u660e\u5bec)?", "context": "CREATE TABLE table_name_88 (english VARCHAR, character VARCHAR)"}, {"answer": "SELECT character FROM table_name_85 WHERE year > 2010 AND role = \"lead role\" AND chinese_title = \"\u6200\u590f38\u2103\"", "question": "What character has a Year larger than 2010 with a lead role, and Chinese Title of \u6200\u590f38\u2103?", "context": "CREATE TABLE table_name_85 (character VARCHAR, chinese_title VARCHAR, year VARCHAR, role VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_27 WHERE character = \"wu ji wei (\u7121\u6975\u5a01)\"", "question": "What is the year that has a character named Wu Ji Wei (\u7121\u6975\u5a01)?", "context": "CREATE TABLE table_name_27 (year INTEGER, character VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_81 WHERE opponent = \"aleksandr pitchkounov\"", "question": "Which Round has an Opponent of aleksandr pitchkounov?", "context": "CREATE TABLE table_name_81 (round INTEGER, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_92 WHERE round = 5 AND event = \"mt one\"", "question": "Which Result has a Round of 5, and an Event of mt one?", "context": "CREATE TABLE table_name_92 (result VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_66 WHERE against > 924 AND club = \"mortlake\" AND losses < 14", "question": "Mortlake club has more than 924 against, less than 14 losses, and how many total draws?", "context": "CREATE TABLE table_name_66 (draws VARCHAR, losses VARCHAR, against VARCHAR, club VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_39 WHERE club = \"cobden\" AND draws > 2", "question": "What is the total number of wins for Cobden club when there are more than 2 draws?", "context": "CREATE TABLE table_name_39 (wins INTEGER, club VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_28 WHERE against = 797 AND wins > 10", "question": "When against is 797 and wins is more than 10, what is the sum of draws?", "context": "CREATE TABLE table_name_28 (draws VARCHAR, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_63 WHERE wins < 9 AND club = \"warrnambool\"", "question": "Club warrnambool has less than 9 wins and what average of draws?", "context": "CREATE TABLE table_name_63 (draws INTEGER, wins VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_11 WHERE club = \"mortlake\" AND wins < 0", "question": "What is the average number of draws for Mortlake club when they have less than 0 wins?", "context": "CREATE TABLE table_name_11 (draws INTEGER, club VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(foreign_population) FROM table_name_26 WHERE population__2004_ > 234733", "question": "Which Foreign population has a Population (2004) larger than 234733?", "context": "CREATE TABLE table_name_26 (foreign_population INTEGER, population__2004_ INTEGER)"}, {"answer": "SELECT AVG(population__2004_) FROM table_name_38 WHERE moroccan_population > 234506", "question": "Which Population (2004) has a Moroccan population larger than 234506?", "context": "CREATE TABLE table_name_38 (population__2004_ INTEGER, moroccan_population INTEGER)"}, {"answer": "SELECT date FROM table_name_98 WHERE opponent = \"vfl sindelfingen\"", "question": "What date was the opponent VFL Sindelfingen?", "context": "CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE attendance = \"1,804\"", "question": "What date was the attendance 1,804?", "context": "CREATE TABLE table_name_44 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_98 WHERE attendance = \"628\"", "question": "Who was the opponent with an attendance of 628?", "context": "CREATE TABLE table_name_98 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT bike FROM table_name_24 WHERE grid > 17 AND laps < 8 AND rider = \"milos cihak\"", "question": "What bike has a grid greater than 17, laps less than 8, with milos cihak as the rider?", "context": "CREATE TABLE table_name_24 (bike VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_89 WHERE rider = \"gregorio lavilla\"", "question": "What is the highest grid that has gregorio lavilla as the rider?", "context": "CREATE TABLE table_name_89 (grid INTEGER, rider VARCHAR)"}, {"answer": "SELECT rider FROM table_name_64 WHERE laps < 20 AND bike = \"ducati 1098 rs 08\" AND time = \"accident\" AND grid < 14", "question": "What rider has laps less than 20, a ducati 1098 rs 08 as the bike, with accident as the time, and a grid less than 14?", "context": "CREATE TABLE table_name_64 (rider VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR, bike VARCHAR)"}, {"answer": "SELECT SUM(overs) FROM table_name_33 WHERE runs = 5231 AND matches < 37", "question": "How many overs when there are 5231 runs and fewer than 37 matches?", "context": "CREATE TABLE table_name_33 (overs INTEGER, runs VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MIN(wickets) FROM table_name_84 WHERE career = \"1946-1960\" AND maidens > 419", "question": "What are the fewest wickets when player's career spanned 1946-1960 and maidens were more than 419?", "context": "CREATE TABLE table_name_84 (wickets INTEGER, career VARCHAR, maidens VARCHAR)"}, {"answer": "SELECT MAX(wickets) FROM table_name_55 WHERE maidens > 630 AND best = \"7/72\"", "question": "What is the largest number of wickets when there are more than 630 maidens and a best of 7/72?", "context": "CREATE TABLE table_name_55 (wickets INTEGER, maidens VARCHAR, best VARCHAR)"}, {"answer": "SELECT name FROM table_name_53 WHERE overs < 2047.3 AND wickets > 200 AND average > 29.02", "question": "Who has fewer than 2047.3 overs, more than 200 wickets and an average of 29.02?", "context": "CREATE TABLE table_name_53 (name VARCHAR, average VARCHAR, overs VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_60 WHERE competition = \"scottish cup\" AND date = \"29.02.2000\"", "question": "How many people attended the Scottish Cup on 29.02.2000?", "context": "CREATE TABLE table_name_60 (attendance VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_90 WHERE competition = \"league cup\" AND season = \"2007-08\"", "question": "What was the score of the league cup in the 2007-08 season?", "context": "CREATE TABLE table_name_90 (score VARCHAR, competition VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_39 WHERE season = \"2010-11\" AND score = \"2\u20130\"", "question": "What is the attendance in the game in the 2010-11 season, when the score was 2\u20130?", "context": "CREATE TABLE table_name_39 (attendance INTEGER, season VARCHAR, score VARCHAR)"}, {"answer": "SELECT 1 AS st_place_team FROM table_name_84 WHERE year > 1956", "question": "What team was in 1st plate in a year later than 1956?", "context": "CREATE TABLE table_name_84 (year INTEGER)"}, {"answer": "SELECT base FROM table_name_59 WHERE company = \"theatro technis karolos koun\"", "question": "Which base has a company of Theatro Technis Karolos Koun?", "context": "CREATE TABLE table_name_59 (base VARCHAR, company VARCHAR)"}, {"answer": "SELECT company FROM table_name_74 WHERE author = \"aristophanes\" AND play = \"plutus\"", "question": "Which company has an author of Aristophanes and play of Plutus?", "context": "CREATE TABLE table_name_74 (company VARCHAR, author VARCHAR, play VARCHAR)"}, {"answer": "SELECT author FROM table_name_22 WHERE company = \"semeio theatre\"", "question": "Which author has a company of the Semeio Theatre?", "context": "CREATE TABLE table_name_22 (author VARCHAR, company VARCHAR)"}, {"answer": "SELECT play FROM table_name_47 WHERE company = \"radu stanca national theatre\"", "question": "Which play was done by the Radu Stanca National Theatre company?", "context": "CREATE TABLE table_name_47 (play VARCHAR, company VARCHAR)"}, {"answer": "SELECT play FROM table_name_96 WHERE base = \"aosta\"", "question": "Which play had a base of Aosta?", "context": "CREATE TABLE table_name_96 (play VARCHAR, base VARCHAR)"}, {"answer": "SELECT country FROM table_name_33 WHERE base = \"athens\" AND company = \"attis theatre\"", "question": "What is the country of the play based in Athens at the Attis Theatre company?", "context": "CREATE TABLE table_name_33 (country VARCHAR, base VARCHAR, company VARCHAR)"}, {"answer": "SELECT class FROM table_name_14 WHERE quantity > 96", "question": "Which Class has a Quantity larger than 96?", "context": "CREATE TABLE table_name_14 (class VARCHAR, quantity INTEGER)"}, {"answer": "SELECT COUNT(quantity) FROM table_name_11 WHERE type = \"1\u2032c1\u2032 h2t\"", "question": "How much Quantity has a Type of 1\u2032c1\u2032 h2t?", "context": "CREATE TABLE table_name_11 (quantity VARCHAR, type VARCHAR)"}, {"answer": "SELECT class FROM table_name_85 WHERE type = \"1\u2032c n2t\"", "question": "Which Class has a Type of 1\u2032c n2t?", "context": "CREATE TABLE table_name_85 (class VARCHAR, type VARCHAR)"}, {"answer": "SELECT year_s__of_manufacture FROM table_name_90 WHERE quantity > 39 AND type = \"1\u2032c1\u2032 h2t\"", "question": "Which Year(s) of manufacture has a Quantity larger than 39, and a Type of 1\u2032c1\u2032 h2t?", "context": "CREATE TABLE table_name_90 (year_s__of_manufacture VARCHAR, quantity VARCHAR, type VARCHAR)"}, {"answer": "SELECT year_s__of_manufacture FROM table_name_13 WHERE quantity = 2 AND type = \"b n2t\"", "question": "Which Year(s) of manufacture has a Quantity of 2, and a Type of b n2t?", "context": "CREATE TABLE table_name_13 (year_s__of_manufacture VARCHAR, quantity VARCHAR, type VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_18 WHERE lost > 4 AND points < 18 AND team = \"atl\u00e9tico verag\u00fcense\"", "question": "what is the highest place when lost is more than 4, points is less than 18 and team is Team of atl\u00e9tico verag\u00fcense?", "context": "CREATE TABLE table_name_18 (place INTEGER, team VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(lost) FROM table_name_72 WHERE place > 4 AND goals_scored = 12 AND points > 4", "question": "what is the least lost when the place is higher than 4, goals scored is 12 and points is more than 4?", "context": "CREATE TABLE table_name_72 (lost INTEGER, points VARCHAR, place VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_85 WHERE team = \"tauro\" AND played < 18", "question": "how many times is the team tauro and played less than 18?", "context": "CREATE TABLE table_name_85 (place VARCHAR, team VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_39 WHERE points = 36 AND place > 2", "question": "what is the least played when points is 36 and place is more than 2?", "context": "CREATE TABLE table_name_39 (played INTEGER, points VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_97 WHERE goals_conceded = 14 AND goals_scored < 32", "question": "what is the average points when goals conceded is 14 and goals scored is less than 32?", "context": "CREATE TABLE table_name_97 (points INTEGER, goals_conceded VARCHAR, goals_scored VARCHAR)"}, {"answer": "SELECT result FROM table_name_63 WHERE week > 1 AND attendance = \"69,149\" AND opponent = \"seattle seahawks\"", "question": "Playing against the Seattle Seahawks in a week after week 1 before 69,149 people what was the result of the game?", "context": "CREATE TABLE table_name_63 (result VARCHAR, opponent VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_23 WHERE date = \"bye\"", "question": "How many weeks in total has bye as the date?", "context": "CREATE TABLE table_name_23 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_58 WHERE player = \"tiger woods\"", "question": "What country does Tiger Woods come from?", "context": "CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT ri_song_hui___prk__ FROM table_name_49 WHERE world_record = \"olympic record\" AND \"snatch\" = \"snatch\"", "question": "What's the Ri Song-Hui when the olympic record is the world record and snatch was snatch?", "context": "CREATE TABLE table_name_49 (ri_song_hui___prk__ VARCHAR, world_record VARCHAR)"}, {"answer": "SELECT 102 AS kg FROM table_name_56 WHERE ri_song_hui___prk__ = \"226kg\"", "question": "What's the 102kg when the Ri Song-Hui was 226kg?", "context": "CREATE TABLE table_name_56 (ri_song_hui___prk__ VARCHAR)"}, {"answer": "SELECT 102 AS kg FROM table_name_56 WHERE world_record = \"olympic record\" AND \"snatch\" = \"snatch\"", "question": "What's the 102kg when the snatch was snatch and the olympic record was the world record?", "context": "CREATE TABLE table_name_56 (world_record VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_82 WHERE team = \"texas rangers\"", "question": "What was the average pick made by the Texas Rangers?", "context": "CREATE TABLE table_name_82 (pick INTEGER, team VARCHAR)"}, {"answer": "SELECT hometown_school FROM table_name_18 WHERE team = \"san diego padres\" AND player = \"bob geren\"", "question": "What was the home town of Bob Geren, picked by the San Diego Padres?", "context": "CREATE TABLE table_name_18 (hometown_school VARCHAR, team VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_94 WHERE player = \"jon perlman\"", "question": "What was the position of Jon Perlman?", "context": "CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT college FROM table_name_73 WHERE position = \"tackle\" AND pick < 87", "question": "What college has a pick smaller than 87 for the position of tackle?", "context": "CREATE TABLE table_name_73 (college VARCHAR, position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT college FROM table_name_51 WHERE pick = 85", "question": "What college had the pick of 85?", "context": "CREATE TABLE table_name_51 (college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_96 WHERE club = \"mortlake\" AND against < 970", "question": "What are the least losses of Mortlake having less than 970 against?", "context": "CREATE TABLE table_name_96 (losses INTEGER, club VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_30 WHERE draws > 0", "question": "What's the total against when the draws are more than 0?", "context": "CREATE TABLE table_name_30 (against VARCHAR, draws INTEGER)"}, {"answer": "SELECT COUNT(wins) FROM table_name_92 WHERE draws < 0", "question": "What's the total wins when the draws are less than 0?", "context": "CREATE TABLE table_name_92 (wins VARCHAR, draws INTEGER)"}, {"answer": "SELECT MIN(against) FROM table_name_50 WHERE club = \"cobden\" AND draws > 0", "question": "What's the least against number for Cobden with draws more than 0?", "context": "CREATE TABLE table_name_50 (against INTEGER, club VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_43 WHERE draws > 0", "question": "What's the most against when the draws are more than 0?", "context": "CREATE TABLE table_name_43 (against INTEGER, draws INTEGER)"}, {"answer": "SELECT SUM(wins) FROM table_name_46 WHERE against = 1261", "question": "What are the total wins when there are 1261 against?", "context": "CREATE TABLE table_name_46 (wins INTEGER, against VARCHAR)"}, {"answer": "SELECT notes FROM table_name_33 WHERE time = \"1:42.309\"", "question": "What is the notes entry for the row with a Time of 1:42.309?", "context": "CREATE TABLE table_name_33 (notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_96 WHERE country = \"china\"", "question": "What is the rank for China?", "context": "CREATE TABLE table_name_96 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT time FROM table_name_54 WHERE notes = \"qs\" AND country = \"cuba\"", "question": "What is the time for Cuba, with a notes entry of QS?", "context": "CREATE TABLE table_name_54 (time VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_17 WHERE date = \"october 10, 1976\"", "question": "What is the Week number on October 10, 1976?", "context": "CREATE TABLE table_name_17 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE result = \"l 33\u201314\"", "question": "What is the Date of the game with a Result of L 33\u201314?", "context": "CREATE TABLE table_name_89 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT augmented_fifth FROM table_name_48 WHERE major_third = \"d\"", "question": "The Major third of D has what for the Augmented fifth?", "context": "CREATE TABLE table_name_48 (augmented_fifth VARCHAR, major_third VARCHAR)"}, {"answer": "SELECT minor_seventh FROM table_name_29 WHERE major_third = \"c\"", "question": "A major third of C has what listed for the Minor seventh?", "context": "CREATE TABLE table_name_29 (minor_seventh VARCHAR, major_third VARCHAR)"}, {"answer": "SELECT chord FROM table_name_23 WHERE minor_seventh = \"f\"", "question": "What is the listed chord for a Minor seventh of F?", "context": "CREATE TABLE table_name_23 (chord VARCHAR, minor_seventh VARCHAR)"}, {"answer": "SELECT episode FROM table_name_71 WHERE rank = 1", "question": "Which Episode has a Rank of 1?", "context": "CREATE TABLE table_name_71 (episode VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rally_hq FROM table_name_62 WHERE rally_name = \"adac rally deutschland\"", "question": "Where was adac rally deutschland's rally HQ?", "context": "CREATE TABLE table_name_62 (rally_hq VARCHAR, rally_name VARCHAR)"}, {"answer": "SELECT rally_hq FROM table_name_9 WHERE round = 1", "question": "Where was the Rally HQ for Round 1?", "context": "CREATE TABLE table_name_9 (rally_hq VARCHAR, round VARCHAR)"}, {"answer": "SELECT support_category FROM table_name_67 WHERE round = 9", "question": "Which Support Category had a Round score of 9?", "context": "CREATE TABLE table_name_67 (support_category VARCHAR, round VARCHAR)"}, {"answer": "SELECT surface FROM table_name_58 WHERE rally_hq = \"salou\"", "question": "What Surface had a Rally HQ of salou?", "context": "CREATE TABLE table_name_58 (surface VARCHAR, rally_hq VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_85 WHERE nationality = \"czech republic\" AND time > 21.05", "question": "What is the lowest lane in the Czech Republic and a time larger than 21.05?", "context": "CREATE TABLE table_name_85 (lane INTEGER, nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_31 WHERE rank > 2 AND nationality = \"guyana\"", "question": "What is the highest lane with a rank larger than 2 in Guyana?", "context": "CREATE TABLE table_name_31 (lane INTEGER, rank VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_61 WHERE athlete = \"solomon bayoh\" AND time < 22.16", "question": "What is the sum rank of Solomon Bayoh when his time was smaller than 22.16?", "context": "CREATE TABLE table_name_61 (rank INTEGER, athlete VARCHAR, time VARCHAR)"}, {"answer": "SELECT artist FROM table_name_18 WHERE album = \"soul\"", "question": "Who is the artist of the album Soul?", "context": "CREATE TABLE table_name_18 (artist VARCHAR, album VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_51 WHERE time < 11.13 AND country = \"belgium\"", "question": "who is the athlete when the time is less than 11.13 and the country is belgium?", "context": "CREATE TABLE table_name_51 (athlete VARCHAR, time VARCHAR, country VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_33 WHERE rank < 13 AND time > 11.13 AND country = \"bahamas\" AND heat > 2", "question": "who is the athlete when the rank is less than 13, time more than 11.13, country is bahamas and the heat more than 2?", "context": "CREATE TABLE table_name_33 (athlete VARCHAR, heat VARCHAR, country VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(heat) FROM table_name_89 WHERE athlete = \"anita pistone\"", "question": "what is the heat when the athlete is anita pistone?", "context": "CREATE TABLE table_name_89 (heat INTEGER, athlete VARCHAR)"}, {"answer": "SELECT COUNT(time) FROM table_name_8 WHERE rank > 29 AND athlete = \"barbara pierre\" AND heat < 5", "question": "how many times is the rank more than 29, the athlete is barbara pierre and the heat less than 5?", "context": "CREATE TABLE table_name_8 (time VARCHAR, heat VARCHAR, rank VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_83 WHERE location = \"linton\"", "question": "Which IHSAA Class has a Location of linton?", "context": "CREATE TABLE table_name_83 (ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_86 WHERE lost > 10 AND points < 5", "question": "What is the sum of matches played for teams with more than 10 losses and under 5 points?", "context": "CREATE TABLE table_name_86 (played INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_56 WHERE points > 5 AND drawn = 3 AND lost < 2", "question": "What is the total number of positions for teams with more than 5 points, 3 draws, and under 2 losses?", "context": "CREATE TABLE table_name_56 (position VARCHAR, lost VARCHAR, points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_95 WHERE lost < 4 AND points < 21", "question": "What is the average number of losses for teams with under 4 losses and under 21 points?", "context": "CREATE TABLE table_name_95 (drawn INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_85 WHERE attendance = \"2,029\"", "question": "What is the home team at the game with an Attendance of 2,029?", "context": "CREATE TABLE table_name_85 (home_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_73 WHERE attendance = \"1,730\"", "question": "What is the away team at the game with an Attendance of 1,730?", "context": "CREATE TABLE table_name_73 (away_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_18 WHERE tie_no = \"2\"", "question": "What is the away team at the game with a Tie no of 2?", "context": "CREATE TABLE table_name_18 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT f_laps FROM table_name_94 WHERE points = \"n/a\" AND poles = \"1\" AND wins = \"0\"", "question": "What F/Laps listing has entries of n/a Points, 1 Poles, and 0 Wins?", "context": "CREATE TABLE table_name_94 (f_laps VARCHAR, wins VARCHAR, points VARCHAR, poles VARCHAR)"}, {"answer": "SELECT series FROM table_name_96 WHERE season < 2003 AND podiums = \"1\" AND points = \"n/a\"", "question": "What Series has a season that is older than 2003 with a Podiums entry of 1 and a Points entry that is n/a?", "context": "CREATE TABLE table_name_96 (series VARCHAR, points VARCHAR, season VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT podiums FROM table_name_74 WHERE series = \"world rally championship\"", "question": "What Podiums listing has a World Rally Championship series entry?", "context": "CREATE TABLE table_name_74 (podiums VARCHAR, series VARCHAR)"}, {"answer": "SELECT races FROM table_name_15 WHERE points = \"n/a\" AND wins = \"0\" AND position = \"6th\"", "question": "What races have n/a Points, 0 Wins, and 6th Position entries?", "context": "CREATE TABLE table_name_15 (races VARCHAR, position VARCHAR, points VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_34 WHERE team = \"prema powerteam\" AND series = \"masters of formula three\"", "question": "What is the most recent season for the Prema Powerteam with a Masters of Formula Three series?", "context": "CREATE TABLE table_name_34 (season INTEGER, team VARCHAR, series VARCHAR)"}, {"answer": "SELECT podiums FROM table_name_38 WHERE f_laps = \"0\" AND points = \"39\"", "question": "What listing for Podiums has 0 F/laps and 39 points?", "context": "CREATE TABLE table_name_38 (podiums VARCHAR, f_laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT loss FROM table_name_75 WHERE record = \"20\u201316\u20139\"", "question": "Which Loss has a Record of 20\u201316\u20139?", "context": "CREATE TABLE table_name_75 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE record = \"19\u201316\u20138\"", "question": "Which Date has a Record of 19\u201316\u20138?", "context": "CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT time FROM table_name_35 WHERE lane = 8", "question": "Can you tell me the Time that has the Lane of 8?", "context": "CREATE TABLE table_name_35 (time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_67 WHERE lane = 4", "question": "Can you tell me the Total number of Rankthat has the Lane of 4?", "context": "CREATE TABLE table_name_67 (rank VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_49 WHERE nationality = \"australia\" AND name = \"leisel jones\" AND lane > 4", "question": "Can you tell me the lowest Rank that has the Nationality of australia, and the Name of leisel jones, and the Lane larger than 4?", "context": "CREATE TABLE table_name_49 (rank INTEGER, lane VARCHAR, nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_10 WHERE rank = 4", "question": "Can you tell me the Name that has the Rank of 4?", "context": "CREATE TABLE table_name_10 (name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_7 WHERE opposing_team = \"bristol city\"", "question": "What is the highest Against for a game against Bristol City?", "context": "CREATE TABLE table_name_7 (against INTEGER, opposing_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE opposing_team = \"oxford united\"", "question": "What was the date of the game against Oxford United?", "context": "CREATE TABLE table_name_87 (date VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT country FROM table_name_41 WHERE rank = 4", "question": "What country is ranked number 4?", "context": "CREATE TABLE table_name_41 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT notes FROM table_name_47 WHERE rank = 1", "question": "What are the notes from the rank of 1?", "context": "CREATE TABLE table_name_47 (notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_41 WHERE notes = \"fa\"", "question": "What rowers have FA as the notes?", "context": "CREATE TABLE table_name_41 (rowers VARCHAR, notes VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_81 WHERE time = \"7:09.06\"", "question": "What is the lowest rank has 7:09.06 as the time?", "context": "CREATE TABLE table_name_81 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT notes FROM table_name_62 WHERE rank = 2", "question": "What notes have 2 as the rank?", "context": "CREATE TABLE table_name_62 (notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT match FROM table_name_91 WHERE opponent = \"bishop's stortford\"", "question": "What was the match that happened in Bishop's Stortford?", "context": "CREATE TABLE table_name_91 (match VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score1 FROM table_name_99 WHERE opponent = \"thurrock\"", "question": "What was the final score for the Thurrock?", "context": "CREATE TABLE table_name_99 (score1 VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_80 WHERE mascot = \"raiders\"", "question": "Which IHSAA class has a mascot of the Raiders?", "context": "CREATE TABLE table_name_80 (ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT school FROM table_name_25 WHERE mascot = \"panthers\"", "question": "Which school has a mascot of the Panthers?", "context": "CREATE TABLE table_name_25 (school VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT time FROM table_name_96 WHERE notes = \"sa/b\" AND country = \"italy\"", "question": "What's Italy's time when the notes were SA/B?", "context": "CREATE TABLE table_name_96 (time VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT rank FROM table_name_15 WHERE country = \"italy\"", "question": "What is Italy's rank?", "context": "CREATE TABLE table_name_15 (rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT COUNT(appearances) FROM table_name_15 WHERE club = \"rayo vallecano\" AND goals > 37", "question": "How many appearances did the player for the Rayo Vallecano club that scored more than 37 goals make?", "context": "CREATE TABLE table_name_15 (appearances VARCHAR, club VARCHAR, goals VARCHAR)"}, {"answer": "SELECT player FROM table_name_32 WHERE eliminated = \"episode 4\"", "question": "Who's the player that was eliminated on episode 4?", "context": "CREATE TABLE table_name_32 (player VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT player FROM table_name_65 WHERE placing = \"20th place\"", "question": "Who is the player in 20th place?", "context": "CREATE TABLE table_name_65 (player VARCHAR, placing VARCHAR)"}, {"answer": "SELECT original_season FROM table_name_15 WHERE placing = \"11th place\"", "question": "What's the original season in 11th place?", "context": "CREATE TABLE table_name_15 (original_season VARCHAR, placing VARCHAR)"}, {"answer": "SELECT player FROM table_name_50 WHERE eliminated = \"episode 5\"", "question": "Who's the player eliminated on episode 5?", "context": "CREATE TABLE table_name_50 (player VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT player FROM table_name_36 WHERE gender = \"male\" AND original_season = \"rw: key west\"", "question": "Who's the player that's male and on the original season of RW: Key West?", "context": "CREATE TABLE table_name_36 (player VARCHAR, gender VARCHAR, original_season VARCHAR)"}, {"answer": "SELECT player FROM table_name_59 WHERE original_season = \"fresh meat\" AND eliminated = \"episode 8\"", "question": "Who's the player eliminated on episode 8 of Fresh Meat?", "context": "CREATE TABLE table_name_59 (player VARCHAR, original_season VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT status FROM table_name_94 WHERE name = \"agamemnon\"", "question": "The boat named Agamemnon has what status?", "context": "CREATE TABLE table_name_94 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT status FROM table_name_54 WHERE name = \"ajax\"", "question": "What status does the boat Ajax have?", "context": "CREATE TABLE table_name_54 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(upper_index_mj__nm_3) FROM table_name_70 WHERE upper_index_kcal__nm_3 = 19 OFFSET 376", "question": "What is the average upper index MJ/Nm 3 for the upper index Kcal/Nm 3 entry of 19,376?", "context": "CREATE TABLE table_name_70 (upper_index_mj__nm_3 INTEGER, upper_index_kcal__nm_3 VARCHAR)"}, {"answer": "SELECT COUNT(upper_index_kcal__nm_3) FROM table_name_59 WHERE fuel_gas = \"iso-butane\" AND lower_index_mj__nm_3 < 84.71", "question": "What is the Upper index Kcal/ Nm 3 of iso-butane, and a Lower index MJ/ Nm 3 smaller than 84.71?", "context": "CREATE TABLE table_name_59 (upper_index_kcal__nm_3 VARCHAR, fuel_gas VARCHAR, lower_index_mj__nm_3 VARCHAR)"}, {"answer": "SELECT AVG(lower_index_kcal__nm_3) FROM table_name_5 WHERE lower_index_mj__nm_3 = 74.54 AND upper_index_kcal__nm_3 < 19 OFFSET 376", "question": "What is the Lower index Kcal/ Nm 3 entry, for the row with entries of an Upper index Kcal/ Nm 3 smaller than 19,376, and a Lower index MJ/ Nm 3 of 74.54?", "context": "CREATE TABLE table_name_5 (lower_index_kcal__nm_3 INTEGER, lower_index_mj__nm_3 VARCHAR, upper_index_kcal__nm_3 VARCHAR)"}, {"answer": "SELECT SUM(upper_index_kcal__nm_3) FROM table_name_93 WHERE lower_index_mj__nm_3 = 47.91 AND upper_index_mj__nm_3 > 53.28", "question": "What is the entry for Upper index Kcal/ Nm 3 for the row with an entry that has a Lower index MJ/ Nm 3 of 47.91, and an Upper index MJ/ Nm 3 larger than 53.28?", "context": "CREATE TABLE table_name_93 (upper_index_kcal__nm_3 INTEGER, lower_index_mj__nm_3 VARCHAR, upper_index_mj__nm_3 VARCHAR)"}, {"answer": "SELECT SUM(upper_index_kcal__nm_3) FROM table_name_1 WHERE lower_index_mj__nm_3 > 47.91 AND fuel_gas = \"propylene\" AND upper_index_mj__nm_3 > 77.04", "question": "What is the entry for Upper index Kcal/ Nm 3 for the row with an entry that has a Lower index MJ/ Nm 3 larger than 47.91, for propylene, and an Upper index MJ/ Nm 3 larger than 77.04?", "context": "CREATE TABLE table_name_1 (upper_index_kcal__nm_3 INTEGER, upper_index_mj__nm_3 VARCHAR, lower_index_mj__nm_3 VARCHAR, fuel_gas VARCHAR)"}, {"answer": "SELECT AVG(match) FROM table_name_37 WHERE ground = \"h\" AND opponent = \"chelsea under 18s\"", "question": "What match number has a ground of H and the opponent Chelsea under 18s?", "context": "CREATE TABLE table_name_37 (match INTEGER, ground VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE match < 14 AND ground = \"h\" AND opponent = \"aston villa under 18s\"", "question": "On what date is there a match lower than 14 with a ground of H and the opponent Aston Villa under 18s?", "context": "CREATE TABLE table_name_11 (date VARCHAR, opponent VARCHAR, match VARCHAR, ground VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE score1 = \"2 - 4\" AND opponent = \"chelsea under 18s\"", "question": "On what date is there a score1 of 2 - 4 with the opponent Chelsea under 18s?", "context": "CREATE TABLE table_name_69 (date VARCHAR, score1 VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT ticket_price_s_ FROM table_name_7 WHERE venue = \"canadian national exhibition stadium\"", "question": "What is the ticket price at Canadian National Exhibition Stadium?", "context": "CREATE TABLE table_name_7 (ticket_price_s_ VARCHAR, venue VARCHAR)"}, {"answer": "SELECT ticket_price_s_ FROM table_name_96 WHERE venue = \"red rocks amphitheatre\"", "question": "What was the ticket price at Red Rocks Amphitheatre?", "context": "CREATE TABLE table_name_96 (ticket_price_s_ VARCHAR, venue VARCHAR)"}, {"answer": "SELECT ticket_price_s_ FROM table_name_56 WHERE date_s_ = \"september 16, 1986\"", "question": "What was the ticket price on September 16, 1986?", "context": "CREATE TABLE table_name_56 (ticket_price_s_ VARCHAR, date_s_ VARCHAR)"}, {"answer": "SELECT opposition FROM table_name_72 WHERE total = 10", "question": "Who was the opposition for the player who has a total of 10 points?", "context": "CREATE TABLE table_name_72 (opposition VARCHAR, total VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE county = \"dublin\"", "question": "Which player is from County Dublin?", "context": "CREATE TABLE table_name_89 (player VARCHAR, county VARCHAR)"}, {"answer": "SELECT AVG(metropolitan_population__2006__millions) FROM table_name_38 WHERE metropolitan_area = \"lima\" AND gdp__ppp__us$_per_capita > 13 OFFSET 100", "question": "What is the average 2006 metropolitan population of Lima with a GDP per capita over $13,100?", "context": "CREATE TABLE table_name_38 (metropolitan_population__2006__millions INTEGER, metropolitan_area VARCHAR, gdp__ppp__us$_per_capita VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_22 WHERE time = \"1:47.70\"", "question": "Who placed highest with a time of 1:47.70?", "context": "CREATE TABLE table_name_22 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT MIN(prominence__m_) FROM table_name_67 WHERE elevation__m_ = 3 OFFSET 095", "question": "Which Prominence (m) has an Elevation (m) of 3,095?", "context": "CREATE TABLE table_name_67 (prominence__m_ INTEGER, elevation__m_ VARCHAR)"}, {"answer": "SELECT duration FROM table_name_53 WHERE character = \"witold latoszek\"", "question": "How long did Witold Latoszek character lasted?", "context": "CREATE TABLE table_name_53 (duration VARCHAR, character VARCHAR)"}, {"answer": "SELECT MAX(no_in_season) FROM table_name_72 WHERE written_by = \"chris hawkshaw\"", "question": "Which episode was the last written by chris hawkshaw this season?", "context": "CREATE TABLE table_name_72 (no_in_season INTEGER, written_by VARCHAR)"}, {"answer": "SELECT MAX(2007) FROM table_name_61 WHERE change_06_07 = \"14.7%\"", "question": "What is the greatest 2007 when the change 06-07 was 14.7%?", "context": "CREATE TABLE table_name_61 (change_06_07 VARCHAR)"}, {"answer": "SELECT completed FROM table_name_32 WHERE laid_down = \"21 august 1925\"", "question": "when was the ship completed when laid down is 21 august 1925?", "context": "CREATE TABLE table_name_32 (completed VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT completed FROM table_name_25 WHERE name = \"satsuki dd-27\"", "question": "When was satsuki dd-27 completed?", "context": "CREATE TABLE table_name_25 (completed VARCHAR, name VARCHAR)"}, {"answer": "SELECT launched FROM table_name_36 WHERE builder = \"fujinagata shipyards, japan\" AND laid_down = \"20 october 1924\"", "question": "when was the ship launched when it was laid down 20 october 1924 and built by fujinagata shipyards, japan?", "context": "CREATE TABLE table_name_36 (launched VARCHAR, builder VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT completed FROM table_name_31 WHERE laid_down = \"23 march 1926\"", "question": "when was the ship completed that was laid down on 23 march 1926?", "context": "CREATE TABLE table_name_31 (completed VARCHAR, laid_down VARCHAR)"}, {"answer": "SELECT laid_down FROM table_name_43 WHERE completed = \"3 july 1926\"", "question": "when was the ship laid down when it was completed on 3 july 1926?", "context": "CREATE TABLE table_name_43 (laid_down VARCHAR, completed VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE location_attendance = \"chicago stadium\"", "question": "What was the score of the game at the Chicago Stadium?", "context": "CREATE TABLE table_name_38 (score VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE record = \"46-31\"", "question": "What was the date of the game when the record was 46-31?", "context": "CREATE TABLE table_name_9 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE location_attendance = \"chicago stadium\"", "question": "What was the score of the game at the Chicago Stadium?", "context": "CREATE TABLE table_name_67 (score VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_16 WHERE lane = 5", "question": "What is the Rank of the Swimmer in Lane 5?", "context": "CREATE TABLE table_name_16 (rank INTEGER, lane VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_41 WHERE time = 49 AND lane > 7", "question": "What is the Rank of the swimmer with a Time of 49 in Lane 7 or larger?", "context": "CREATE TABLE table_name_41 (rank VARCHAR, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_24 WHERE rank = 8", "question": "What is the Lane of the swimmer with a Rank of 8?", "context": "CREATE TABLE table_name_24 (lane INTEGER, rank VARCHAR)"}, {"answer": "SELECT level FROM table_name_54 WHERE season > 2010", "question": "What Level has a Season larger than 2010?", "context": "CREATE TABLE table_name_54 (level VARCHAR, season INTEGER)"}, {"answer": "SELECT administration FROM table_name_56 WHERE season = 2000", "question": "What Adminstration has a Season of 2000?", "context": "CREATE TABLE table_name_56 (administration VARCHAR, season VARCHAR)"}, {"answer": "SELECT position FROM table_name_21 WHERE season > 2000 AND level = \"tier 3\"", "question": "What Position has a Season larger than 2000 with a Level of Tier 3?", "context": "CREATE TABLE table_name_21 (position VARCHAR, season VARCHAR, level VARCHAR)"}, {"answer": "SELECT position FROM table_name_85 WHERE level = \"tier 4\" AND season < 2003", "question": "What Position has a Level of tier 4 with a Season smaller than 2003?", "context": "CREATE TABLE table_name_85 (position VARCHAR, level VARCHAR, season VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_74 WHERE opponent = \"new york\"", "question": "Who had the most rebounds in the game against New York?", "context": "CREATE TABLE table_name_74 (high_rebounds VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_10 WHERE game = 30", "question": "Who was the opponent for game 30?", "context": "CREATE TABLE table_name_10 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_75 WHERE location = \"mohegan sun arena\" AND record = \"24-7\"", "question": "Who had the most rebounds in the game at the Mohegan Sun Arena that led to a 24-7 record?", "context": "CREATE TABLE table_name_75 (high_rebounds VARCHAR, location VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_22 WHERE date = \"september 21, 1980\"", "question": "How many people attended the September 21, 1980 game?", "context": "CREATE TABLE table_name_22 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_72 WHERE date = 1602 AND greater_doubles < 16", "question": "Which Total has a Date of 1602, and Greater Doubles smaller than 16?", "context": "CREATE TABLE table_name_72 (total INTEGER, date VARCHAR, greater_doubles VARCHAR)"}, {"answer": "SELECT COUNT(size__steps_) FROM table_name_26 WHERE just_ratio = \"10:9\" AND size__cents_ > 160", "question": "What is the value of the size (steps) that has just ratio 10:9 and a size (cents) more than 160", "context": "CREATE TABLE table_name_26 (size__steps_ VARCHAR, just_ratio VARCHAR, size__cents_ VARCHAR)"}, {"answer": "SELECT audio FROM table_name_28 WHERE just_ratio = \"21:20\"", "question": "what is the value of the audio with a just ratio 21:20", "context": "CREATE TABLE table_name_28 (audio VARCHAR, just_ratio VARCHAR)"}, {"answer": "SELECT error FROM table_name_65 WHERE size__steps_ > 5 AND just__cents_ = 536.95", "question": "What is the error that has a size (steps) more than 5 and a just (cents) value 536.95", "context": "CREATE TABLE table_name_65 (error VARCHAR, size__steps_ VARCHAR, just__cents_ VARCHAR)"}, {"answer": "SELECT AVG(size__cents_) FROM table_name_33 WHERE interval_name = \"major third\" AND size__steps_ > 5", "question": "What is the average size (cents) with an interval of major third and size (steps) more than 5", "context": "CREATE TABLE table_name_33 (size__cents_ INTEGER, interval_name VARCHAR, size__steps_ VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_49 WHERE place > 7 AND draw = 4", "question": "What is the average number of points for places over 7 and having a draw order of 4?", "context": "CREATE TABLE table_name_49 (points INTEGER, place VARCHAR, draw VARCHAR)"}, {"answer": "SELECT COUNT(league_goals) FROM table_name_93 WHERE fa_cup_goals = 0 AND league_apps = \"10\"", "question": "How many league goals did the player with 10 league apps and 0 FA cup goals have?", "context": "CREATE TABLE table_name_93 (league_goals VARCHAR, fa_cup_goals VARCHAR, league_apps VARCHAR)"}, {"answer": "SELECT SUM(league_goals) FROM table_name_80 WHERE total_goals = 8 AND league_cup_goals > 0", "question": "What was the sum of league goals where the toal was 8 and league cup goals were larger than 0?", "context": "CREATE TABLE table_name_80 (league_goals INTEGER, total_goals VARCHAR, league_cup_goals VARCHAR)"}, {"answer": "SELECT average_ratings FROM table_name_92 WHERE episodes = 11 AND japanese_title = \"\u30b5\u30d7\u30ea\"", "question": "For the Japanese title \u30b5\u30d7\u30ea that had 11 episodes, what is the average ratings?", "context": "CREATE TABLE table_name_92 (average_ratings VARCHAR, episodes VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT AVG(episodes) FROM table_name_32 WHERE average_ratings = \"10.3%\"", "question": "When the average ratings is 10.3%, what is the average episodes?", "context": "CREATE TABLE table_name_32 (episodes INTEGER, average_ratings VARCHAR)"}, {"answer": "SELECT MIN(episodes) FROM table_name_40 WHERE romaji_title = \"regatta~kimi to ita eien~\"", "question": "What is the fewest episodes with the Romaji title Regatta~Kimi to Ita Eien~?", "context": "CREATE TABLE table_name_40 (episodes INTEGER, romaji_title VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_34 WHERE romaji_title = \"hanayome wa yakudoshi!\"", "question": "With the Romaji title of Hanayome Wa Yakudoshi!, what is the Japanese title?", "context": "CREATE TABLE table_name_34 (japanese_title VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_89 WHERE episodes < 11 AND romaji_title = \"regatta~kimi to ita eien~\"", "question": "For what Japanese title is there less than 11 episodes and the Romaji title is Regatta~Kimi to Ita Eien~?", "context": "CREATE TABLE table_name_89 (japanese_title VARCHAR, episodes VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT MAX(episodes) FROM table_name_52 WHERE average_ratings = \"18.8%\"", "question": "what is the most episodes when the average ratings is 18.8%?", "context": "CREATE TABLE table_name_52 (episodes INTEGER, average_ratings VARCHAR)"}, {"answer": "SELECT episodes FROM table_name_47 WHERE tv_station = \"ntv\" AND japanese_title = \"\u305f\u3063\u305f\u3072\u3068\u3064\u306e\u604b\"", "question": "How many episodes when the tv station is ntv and the japanese title is \u305f\u3063\u305f\u3072\u3068\u3064\u306e\u604b?", "context": "CREATE TABLE table_name_47 (episodes VARCHAR, tv_station VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT tv_station FROM table_name_17 WHERE romaji_title = \"kazoku~tsuma no fuzai\u30fbotto no sonzai~\"", "question": "what is the tv station when the romaji title is kazoku~tsuma no fuzai\u30fbotto no sonzai~?", "context": "CREATE TABLE table_name_17 (tv_station VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT tv_station FROM table_name_36 WHERE average_ratings = \"19.5%\"", "question": "what is the tv station when the average ratings is 19.5%?", "context": "CREATE TABLE table_name_36 (tv_station VARCHAR, average_ratings VARCHAR)"}, {"answer": "SELECT AVG(year_joined) FROM table_name_22 WHERE year_left < 2003", "question": "Of all the schools that left before 2003, what is the average year joined?", "context": "CREATE TABLE table_name_22 (year_joined INTEGER, year_left INTEGER)"}, {"answer": "SELECT COUNT(year_joined) FROM table_name_48 WHERE mascot = \"ingots\" AND year_left > 2007", "question": "What year did the Ingots, who left after 2007, join?", "context": "CREATE TABLE table_name_48 (year_joined VARCHAR, mascot VARCHAR, year_left VARCHAR)"}, {"answer": "SELECT original_release FROM table_name_27 WHERE writer_s_ = \"dallas frazier\"", "question": "What is the original Release date of the Track written by Dallas Frazier?", "context": "CREATE TABLE table_name_27 (original_release VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT original_artist FROM table_name_64 WHERE length = \"2:38\"", "question": "What is the Original Artis of the Track with a Length of 2:38?", "context": "CREATE TABLE table_name_64 (original_artist VARCHAR, length VARCHAR)"}, {"answer": "SELECT song_title FROM table_name_7 WHERE length = \"2:50\"", "question": "What Song has a Length of 2:50?", "context": "CREATE TABLE table_name_7 (song_title VARCHAR, length VARCHAR)"}, {"answer": "SELECT title FROM table_name_4 WHERE year < 2011 AND network = \"kbs2\" AND genre = \"drama\"", "question": "What's the title when the genre is drama and network of KBS2 happening before 2011?", "context": "CREATE TABLE table_name_4 (title VARCHAR, genre VARCHAR, year VARCHAR, network VARCHAR)"}, {"answer": "SELECT title FROM table_name_31 WHERE genre = \"drama\" AND network = \"kbs2\" AND year = 2011", "question": "What's the title when the genre is drama with a network of KBS2 happening in 2011?", "context": "CREATE TABLE table_name_31 (title VARCHAR, year VARCHAR, genre VARCHAR, network VARCHAR)"}, {"answer": "SELECT network FROM table_name_25 WHERE year = 2011", "question": "What's the network in 2011?", "context": "CREATE TABLE table_name_25 (network VARCHAR, year VARCHAR)"}, {"answer": "SELECT hangul___japanese FROM table_name_55 WHERE year < 2014 AND role = \"baek seung-jo\"", "question": "What's the Hangul/Japanese that happened before 2014 having a role of Baek Seung-Jo?", "context": "CREATE TABLE table_name_55 (hangul___japanese VARCHAR, year VARCHAR, role VARCHAR)"}, {"answer": "SELECT hangul___japanese FROM table_name_80 WHERE genre = \"drama\" AND title = \"boys over flowers\"", "question": "What's the Hangul/Japanese of Boys Over Flowers that's drama?", "context": "CREATE TABLE table_name_80 (hangul___japanese VARCHAR, genre VARCHAR, title VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_56 WHERE location = \"monon\"", "question": "What is the IHSAA class in monon?", "context": "CREATE TABLE table_name_56 (ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_69 WHERE enrollment = 395", "question": "What is the IHSAA class with 395 in enrollment?", "context": "CREATE TABLE table_name_69 (ihsaa_class VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT school FROM table_name_8 WHERE mascot = \"rebels\"", "question": "What school has rebels as their mascot?", "context": "CREATE TABLE table_name_8 (school VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_61 WHERE ihsaa_class = \"aa\"", "question": "What is the total enrollment of the aa IHSAA class?", "context": "CREATE TABLE table_name_61 (enrollment VARCHAR, ihsaa_class VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_name_39 WHERE school = \"pioneer\"", "question": "What is the lowest enrollment at the pioneer school?", "context": "CREATE TABLE table_name_39 (enrollment INTEGER, school VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM table_name_34 WHERE ihsaa_class = \"a\" AND location = \"wolcott\"", "question": "What is the average enrollment of the IHSAA A class in wolcott?", "context": "CREATE TABLE table_name_34 (enrollment INTEGER, ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(shirt_no) FROM table_name_24 WHERE height < 190 AND player = \"henry bell cisnero\"", "question": "What is the Shirt No for Henry Bell Cisnero whose height is less than 190?", "context": "CREATE TABLE table_name_24 (shirt_no INTEGER, height VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(shirt_no) FROM table_name_9 WHERE height = 188", "question": "What is the Shirt No for the person whose height is 188?", "context": "CREATE TABLE table_name_9 (shirt_no INTEGER, height VARCHAR)"}, {"answer": "SELECT MAX(height) FROM table_name_15 WHERE position = \"libero\"", "question": "What is the height of the person whose position is Libero?", "context": "CREATE TABLE table_name_15 (height INTEGER, position VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_69 WHERE free = 47.667 AND technical < 47.417", "question": "What is the total for the person with free of 47.667, and technical less than 47.417?", "context": "CREATE TABLE table_name_69 (total INTEGER, free VARCHAR, technical VARCHAR)"}, {"answer": "SELECT MAX(technical) FROM table_name_77 WHERE athlete = \"jiang tingting & jiang wenwen\" AND total > 96.334", "question": "What is the technical number for Jiang Tingting & Jiang Wenwen, and the total was more than 96.334?", "context": "CREATE TABLE table_name_77 (technical INTEGER, athlete VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(free) FROM table_name_87 WHERE athlete = \"apolline dreyfuss & lila meesseman-bakir\" AND total > 90.333", "question": "What is the free of Apolline Dreyfuss & Lila Meesseman-Bakir, when the total was larger than 90.333?", "context": "CREATE TABLE table_name_87 (free INTEGER, athlete VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_53 WHERE played > 14", "question": "What is the average number of games drawn among teams that played over 14 games?", "context": "CREATE TABLE table_name_53 (drawn INTEGER, played INTEGER)"}, {"answer": "SELECT COUNT(points) FROM table_name_52 WHERE played > 14", "question": "What is the total number of points combined from the teams that played over 14 games?", "context": "CREATE TABLE table_name_52 (points VARCHAR, played INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_17 WHERE lost > 3 AND name = \"esc riverrats geretsried\"", "question": "How many points did the ESC Riverrats Geretsried, who lost more than 3 games, score?", "context": "CREATE TABLE table_name_17 (points INTEGER, lost VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(drawn) FROM table_name_37 WHERE lost > 13", "question": "What is the average number of games drawn among the teams that lost over 13 games?", "context": "CREATE TABLE table_name_37 (drawn INTEGER, lost INTEGER)"}, {"answer": "SELECT date_of_vacancy FROM table_name_45 WHERE manner_of_departure = \"sacked\" AND team = \"nejapa\"", "question": "What is the date of vacancy when the manner of departure is sacked and the team is nejapa?", "context": "CREATE TABLE table_name_45 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, team VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_54 WHERE date_of_appointment = \"1 january 2009\"", "question": "what is the date of vacancy when the date of appointment is 1 january 2009?", "context": "CREATE TABLE table_name_54 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_70 WHERE position_in_table = \"10th\" AND team = \"balboa\"", "question": "what is the date of vacancy when the position in table is 10th and the team is balboa?", "context": "CREATE TABLE table_name_70 (date_of_vacancy VARCHAR, position_in_table VARCHAR, team VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_58 WHERE position_in_table = \"5th\"", "question": "Who replaced when the position in table is 5th?", "context": "CREATE TABLE table_name_58 (replaced_by VARCHAR, position_in_table VARCHAR)"}, {"answer": "SELECT outgoing_manager FROM table_name_16 WHERE replaced_by = \"pablo centrone\"", "question": "Who is the outgoing manager when they were replaced by pablo centrone?", "context": "CREATE TABLE table_name_16 (outgoing_manager VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_2 WHERE team = \"firpo\" AND replaced_by = \"oscar benitez\"", "question": "what is the date of vacancy when the team is firpo and replaced by is oscar benitez?", "context": "CREATE TABLE table_name_2 (date_of_vacancy VARCHAR, team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT country FROM table_name_15 WHERE notes = \"qs\" AND rank = 8", "question": "Which country was ranked 8 and noted as qs?", "context": "CREATE TABLE table_name_15 (country VARCHAR, notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT notes FROM table_name_80 WHERE rank = 1", "question": "What are the notes for the contestants that were ranked #1?", "context": "CREATE TABLE table_name_80 (notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE date = \"12/21/1973\"", "question": "Who did the Hawks play on 12/21/1973?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank FROM table_name_22 WHERE name = \"tricia flores\"", "question": "What rank does Tricia Flores have?", "context": "CREATE TABLE table_name_22 (rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_10 WHERE group = \"b\" AND mark = \"6.33\"", "question": "Who is in group B and has a mark of 6.33?", "context": "CREATE TABLE table_name_10 (name VARCHAR, group VARCHAR, mark VARCHAR)"}, {"answer": "SELECT mark FROM table_name_73 WHERE group = \"a\" AND nationality = \"grenada\"", "question": "What is the mark for Grenada in group A?", "context": "CREATE TABLE table_name_73 (mark VARCHAR, group VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT name FROM table_name_40 WHERE group = \"b\" AND mark = \"6.17\"", "question": "Who has a mark of 6.17 in group B?", "context": "CREATE TABLE table_name_40 (name VARCHAR, group VARCHAR, mark VARCHAR)"}, {"answer": "SELECT rank FROM table_name_7 WHERE name = \"tatyana lebedeva\"", "question": "What rank does Tatyana Lebedeva have?", "context": "CREATE TABLE table_name_7 (rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT rank FROM table_name_85 WHERE mark = \"nm\" AND nationality = \"india\"", "question": "What rank has a mark of NM and is from India?", "context": "CREATE TABLE table_name_85 (rank VARCHAR, mark VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_94 WHERE rank < 3 AND tally = \"2-5\"", "question": "What is the sum of totals for ranks under 3 with tallies of 2-5?", "context": "CREATE TABLE table_name_94 (total INTEGER, rank VARCHAR, tally VARCHAR)"}, {"answer": "SELECT player FROM table_name_56 WHERE rank = 8 AND tally = \"1-5\"", "question": "Which player had a rank of 8 and tally of 1-5?", "context": "CREATE TABLE table_name_56 (player VARCHAR, rank VARCHAR, tally VARCHAR)"}, {"answer": "SELECT SUM(no_in_series) FROM table_name_5 WHERE written_by = \"sam meikle\" AND no_in_season = 21", "question": "What is the sum of the numbers in series written by sam meikle, which have 21 numbers in the season?", "context": "CREATE TABLE table_name_5 (no_in_series INTEGER, written_by VARCHAR, no_in_season VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE location_attendance = \"alexander memorial coliseum\" AND record = \"0-1\"", "question": "What was the score for the game played in Alexander Memorial Coliseum when the record was 0-1?", "context": "CREATE TABLE table_name_32 (score VARCHAR, location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE location_attendance = \"seattle center coliseum\"", "question": "When was the game played that was at the Seattle Center Coliseum?", "context": "CREATE TABLE table_name_54 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_98 WHERE location_attendance = \"alexander memorial coliseum\" AND date = \"october 16\"", "question": "What is the least game that was played in Alexander Memorial Coliseum on October 16?", "context": "CREATE TABLE table_name_98 (game INTEGER, location_attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_87 WHERE date = \"october 16\"", "question": "What average game was played on October 16?", "context": "CREATE TABLE table_name_87 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_56 WHERE game = 2", "question": "On what day was game 2 played?", "context": "CREATE TABLE table_name_56 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT AVG(tourism_receipts__2011___millions_of_us) AS $_ FROM table_name_41 WHERE tourist_arrivals__2011___millions_ < 1.141 AND tourism_receipts__2011___us$_per_arrival_ > 1 OFFSET 449", "question": "What is the average tourism receipts in millions of US dollars in 2011 with less than 1.141 million of 2011 tourist arrivals and more than 1,449 tourism receipts in 2011 US dollars per arrival?", "context": "CREATE TABLE table_name_41 (tourism_receipts__2011___millions_of_us INTEGER, tourist_arrivals__2011___millions_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR)"}, {"answer": "SELECT tourism_competitiveness__2011___ttci_ FROM table_name_90 WHERE country = \"venezuela\"", "question": "What is the tourism competitiveness in 2011 of venezuela?", "context": "CREATE TABLE table_name_90 (tourism_competitiveness__2011___ttci_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(tourism_receipts__2011___us) AS $_per_capita_ FROM table_name_99 WHERE tourism_receipts__2003___as__percentage_of_gdp_ = \"19.4\" AND tourism_receipts__2011___us$_per_arrival_ < 655", "question": "What is the highest number of tourism receipts in 2011 US $ per capita with 19.4 % of GDP in 2003 tourism receipts and less than 655 US $ per arrival in 2011 tourism receipts?", "context": "CREATE TABLE table_name_99 (tourism_receipts__2011___us INTEGER, tourism_receipts__2003___as__percentage_of_gdp_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ 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", "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 MAX(tourist_arrivals__2011___millions_) FROM table_name_92 WHERE tourism_competitiveness__2011___ttci_ = \"3.82\" AND tourism_receipts__2011___us$_per_arrival_ > 1 OFFSET 102", "question": "What is the highest tourism arrivals in 2011 in millions with a 3.82 tourism competitiveness in 2011 and more than 1,102 US$ per arrival in 2011 tourism receipts?", "context": "CREATE TABLE table_name_92 (tourist_arrivals__2011___millions_ INTEGER, tourism_competitiveness__2011___ttci_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR)"}, {"answer": "SELECT year FROM table_name_36 WHERE runner_up = \"wisconsin\"", "question": "In what year was Wisconsin the runner-up?", "context": "CREATE TABLE table_name_36 (year VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT arena FROM table_name_43 WHERE runner_up = \"north dakota\"", "question": "In what arena was the North Dakota the runner-up?", "context": "CREATE TABLE table_name_43 (arena VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE arena = \"broadmoor arena\"", "question": "What was the score of the game at the Broadmoor Arena?", "context": "CREATE TABLE table_name_38 (score VARCHAR, arena VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_43 WHERE year < 2008 AND arena = \"broadmoor arena\"", "question": "Who was the runner-up at the Broadmoor Arena before 2008?", "context": "CREATE TABLE table_name_43 (runner_up VARCHAR, year VARCHAR, arena VARCHAR)"}, {"answer": "SELECT year FROM table_name_41 WHERE arena = \"pepsi arena\"", "question": "In what year was the competition at the Pepsi Arena?", "context": "CREATE TABLE table_name_41 (year VARCHAR, arena VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_56 WHERE record = \"53-24\"", "question": "Which opponent has a 53-24 record?", "context": "CREATE TABLE table_name_56 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_10 WHERE game = \"73\"", "question": "Who was the opponent for game 73?", "context": "CREATE TABLE table_name_10 (opponent VARCHAR, game VARCHAR)"}, {"answer": "SELECT replaced_by FROM table_name_10 WHERE team = \"milton keynes dons\"", "question": "who is the replacement when the team is milton keynes dons?", "context": "CREATE TABLE table_name_10 (replaced_by VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_50 WHERE position_in_table = \"24th\" AND date_of_appointment = \"15 september 2008\"", "question": "what is the team with the position in table of 24th and the date of appointment 15 september 2008?", "context": "CREATE TABLE table_name_50 (team VARCHAR, position_in_table VARCHAR, date_of_appointment VARCHAR)"}, {"answer": "SELECT position_in_table FROM table_name_11 WHERE team = \"hartlepool united\"", "question": "what is the position in table when the team is hartlepool united?", "context": "CREATE TABLE table_name_11 (position_in_table VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_20 WHERE replaced_by = \"geraint williams\"", "question": "what is the team geraint williams is the replacement?", "context": "CREATE TABLE table_name_20 (team VARCHAR, replaced_by VARCHAR)"}, {"answer": "SELECT date_of_vacancy FROM table_name_25 WHERE position_in_table = \"16th\" AND outgoing_manager = \"russell slade\"", "question": "what is the date of vacancy when the position in table is 16th and the outgoing manager is russell slade?", "context": "CREATE TABLE table_name_25 (date_of_vacancy VARCHAR, position_in_table VARCHAR, outgoing_manager VARCHAR)"}, {"answer": "SELECT years FROM table_name_33 WHERE finals = \"10 (0)\"", "question": "What years have 10 (0) in the finals?", "context": "CREATE TABLE table_name_33 (years VARCHAR, finals VARCHAR)"}, {"answer": "SELECT a_league FROM table_name_54 WHERE finals = \"6 (1)\" AND name = \"leigh broxham\"", "question": "What A-League has 6 (1) for the finals, and leigh broxham as the name?", "context": "CREATE TABLE table_name_54 (a_league VARCHAR, finals VARCHAR, name VARCHAR)"}, {"answer": "SELECT finals FROM table_name_40 WHERE name = \"grant brebner\"", "question": "What finals have grant brebner as the name?", "context": "CREATE TABLE table_name_40 (finals VARCHAR, name VARCHAR)"}, {"answer": "SELECT years FROM table_name_12 WHERE finals = \"9 (0)\" AND a_league = \"133 (1)\"", "question": "What years have 9 (0) as the finals and 133 (1) as the A-League?", "context": "CREATE TABLE table_name_12 (years VARCHAR, finals VARCHAR, a_league VARCHAR)"}, {"answer": "SELECT years FROM table_name_77 WHERE finals = \"9 (3)\"", "question": "What years have 9 (3) as the finals?", "context": "CREATE TABLE table_name_77 (years VARCHAR, finals VARCHAR)"}, {"answer": "SELECT years FROM table_name_74 WHERE total = \"101 (16)\"", "question": "What years have 101 (16) as the total?", "context": "CREATE TABLE table_name_74 (years VARCHAR, total VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_59 WHERE notes = \"sc/d\" AND time = \"7:26.85\"", "question": "Who has a time of 7:26.85 and notes of sc/d?", "context": "CREATE TABLE table_name_59 (athlete VARCHAR, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT notes FROM table_name_71 WHERE rank < 6 AND athlete = \"ioannis christou\"", "question": "Ioannis Christou with a rank smaller than 6 has what notes?", "context": "CREATE TABLE table_name_71 (notes VARCHAR, rank VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT notes FROM table_name_62 WHERE distance > 7 AND location = \"aplin\"", "question": "Which Notes have a Distance larger than 7, and a Location of aplin?", "context": "CREATE TABLE table_name_62 (notes VARCHAR, distance VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(distance) FROM table_name_73 WHERE county = \"faulkner\" AND total < 1.5", "question": "How much Distance has a County of faulkner, and a Total smaller than 1.5?", "context": "CREATE TABLE table_name_73 (distance INTEGER, county VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(distance) FROM table_name_87 WHERE notes = \"north end terminus of ar 155\"", "question": "How much Distance has Notes of north end terminus of ar 155?", "context": "CREATE TABLE table_name_87 (distance INTEGER, notes VARCHAR)"}, {"answer": "SELECT COUNT(latitude) FROM table_name_69 WHERE water__sqmi_ < 0", "question": "How much Latitude has a Water (sqmi) smaller than 0?", "context": "CREATE TABLE table_name_69 (latitude VARCHAR, water__sqmi_ INTEGER)"}, {"answer": "SELECT MIN(land___sqmi__) FROM table_name_49 WHERE geo_id < 3800587900", "question": "Which Land (sqmi) has a GEO ID smaller than 3800587900?", "context": "CREATE TABLE table_name_49 (land___sqmi__ INTEGER, geo_id INTEGER)"}, {"answer": "SELECT MIN(water__sqmi_) FROM table_name_22 WHERE township = \"yorktown\" AND geo_id < 3802187940", "question": "Which Water (sqmi) has a Township of yorktown, and a GEO ID smaller than 3802187940?", "context": "CREATE TABLE table_name_22 (water__sqmi_ INTEGER, township VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT school FROM table_name_92 WHERE position = \"p\" AND player = \"jeff urban\"", "question": "What school had Jeff Urban playing at the p position?", "context": "CREATE TABLE table_name_92 (school VARCHAR, position VARCHAR, player VARCHAR)"}, {"answer": "SELECT school FROM table_name_27 WHERE team = \"kansas city royals\"", "question": "What school has the Kansas City Royals for a team?", "context": "CREATE TABLE table_name_27 (school VARCHAR, team VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE location = \"mexico city\" AND winner = \"vampiro\"", "question": "What is the date of the match where vampiro was the winner in Mexico City?", "context": "CREATE TABLE table_name_40 (date VARCHAR, location VARCHAR, winner VARCHAR)"}, {"answer": "SELECT wager FROM table_name_94 WHERE winner = \"vampiro\" AND date = \"august 23, 1992\"", "question": "What is the wager on August 23, 1992 where vampiro was the winner?", "context": "CREATE TABLE table_name_94 (wager VARCHAR, winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_14 WHERE winner = \"shocker\"", "question": "What is the location where shocker was the winner?", "context": "CREATE TABLE table_name_14 (location VARCHAR, winner VARCHAR)"}, {"answer": "SELECT location FROM table_name_27 WHERE loser = \"aaron grundy\"", "question": "What is the location where aaron grundy was the loser?", "context": "CREATE TABLE table_name_27 (location VARCHAR, loser VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_4 WHERE 1999 = \"qf\"", "question": "What is the 1994 when QF is 1999?", "context": "CREATE TABLE table_name_4 (Id VARCHAR)"}, {"answer": "SELECT 1991 FROM table_name_26 WHERE 1997 = \"18\"", "question": "What is the 1991 when 1997 is 18?", "context": "CREATE TABLE table_name_26 (Id VARCHAR)"}, {"answer": "SELECT 1991 FROM table_name_25 WHERE 1999 = \"14\"", "question": "What's the 1991 when 1999 is 14?", "context": "CREATE TABLE table_name_25 (Id VARCHAR)"}, {"answer": "SELECT 1996 FROM table_name_44 WHERE 1997 = \"3r\"", "question": "What's the 1996 when 1997 is 3R?", "context": "CREATE TABLE table_name_44 (Id VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_46 WHERE 1996 = \"3r\"", "question": "What is 1994 when 1996 is 3R?", "context": "CREATE TABLE table_name_46 (Id VARCHAR)"}, {"answer": "SELECT 1996 FROM table_name_72 WHERE tournament = \"us open\"", "question": "What is 1996 during the US Open?", "context": "CREATE TABLE table_name_72 (tournament VARCHAR)"}, {"answer": "SELECT standard_name FROM table_name_49 WHERE version = \"adsl2\" AND downstream_rate = \"01.5 1.5 mbit/s\"", "question": "What's the standard name with an ADSL2 version and a 01.5 1.5 mbit/s downstream rate?", "context": "CREATE TABLE table_name_49 (standard_name VARCHAR, version VARCHAR, downstream_rate VARCHAR)"}, {"answer": "SELECT downstream_rate FROM table_name_2 WHERE version = \"adsl\" AND standard_name = \"itu g.992.2\"", "question": "What's the downstream rate for the Itu g.992.2 having a version of ADSL?", "context": "CREATE TABLE table_name_2 (downstream_rate VARCHAR, version VARCHAR, standard_name VARCHAR)"}, {"answer": "SELECT version FROM table_name_97 WHERE standard_name = \"itu g.992.3 annex j\"", "question": "What's the version of Itu g.992.3 Annex J?", "context": "CREATE TABLE table_name_97 (version VARCHAR, standard_name VARCHAR)"}, {"answer": "SELECT version FROM table_name_81 WHERE downstream_rate = \"20.0 mbit/s\"", "question": "What's the version that has a 20.0 mbit/s downstream rate?", "context": "CREATE TABLE table_name_81 (version VARCHAR, downstream_rate VARCHAR)"}, {"answer": "SELECT upstream_rate FROM table_name_60 WHERE version = \"adsl\" AND standard_name = \"itu g.992.2\"", "question": "What's the upstream rate for Itu g.992.2 with a version of ADSL?", "context": "CREATE TABLE table_name_60 (upstream_rate VARCHAR, version VARCHAR, standard_name VARCHAR)"}, {"answer": "SELECT games FROM table_name_12 WHERE finals = \"1 (0)\" AND w_league = \"28 (1)\"", "question": "How many games does the player with 1 (0) finals and a w-league of 28 (1) have?", "context": "CREATE TABLE table_name_12 (games VARCHAR, finals VARCHAR, w_league VARCHAR)"}, {"answer": "SELECT years FROM table_name_36 WHERE goals > 2 AND games = \"11 (2)\"", "question": "What year had more than 2 goals and 11 (2) games?", "context": "CREATE TABLE table_name_36 (years VARCHAR, goals VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_52 WHERE w_league = \"8 (2)\"", "question": "What is the lowest number of goals with 8 (2) w-leagues?", "context": "CREATE TABLE table_name_52 (goals INTEGER, w_league VARCHAR)"}, {"answer": "SELECT MIN(uefa_champions_league) FROM table_name_9 WHERE la_liga = 17 AND copa_del_rey > 0", "question": "Which UEFA Champions League has a La Liga of 17, and a Copa del Rey larger than 0?", "context": "CREATE TABLE table_name_9 (uefa_champions_league INTEGER, la_liga VARCHAR, copa_del_rey VARCHAR)"}, {"answer": "SELECT SUM(copa_del_rey) FROM table_name_63 WHERE name = \"guti\" AND fifa_club_world_championship < 0", "question": "Which Copa del Rey has a Name of guti, and a FIFA Club World Championship smaller than 0?", "context": "CREATE TABLE table_name_63 (copa_del_rey INTEGER, name VARCHAR, fifa_club_world_championship VARCHAR)"}, {"answer": "SELECT SUM(copa_del_rey) FROM table_name_80 WHERE la_liga < 0", "question": "Which Copa del Rey has a La Liga smaller than 0?", "context": "CREATE TABLE table_name_80 (copa_del_rey INTEGER, la_liga INTEGER)"}, {"answer": "SELECT MIN(fifa_club_world_championship) FROM table_name_56 WHERE uefa_champions_league = 0 AND total < 3 AND name = \"geremi\"", "question": "Which FIFA Club World Championship has a UEFA Champions League of 0, and a Total smaller than 3, and a Name of geremi?", "context": "CREATE TABLE table_name_56 (fifa_club_world_championship INTEGER, name VARCHAR, uefa_champions_league VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_82 WHERE country = \"hungary\"", "question": "What is the average rank for Hungary?", "context": "CREATE TABLE table_name_82 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_36 WHERE time = \"3:19.167\"", "question": "What country has a time of 3:19.167?", "context": "CREATE TABLE table_name_36 (country VARCHAR, time VARCHAR)"}, {"answer": "SELECT notes FROM table_name_85 WHERE time = \"3:19.167\"", "question": "What are the notes for the time at 3:19.167?", "context": "CREATE TABLE table_name_85 (notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT certification FROM table_name_88 WHERE album = \"closer: the best of sarah mclachlan\"", "question": "What was the album Closer: The Best of Sarah Mclachlan certified as?", "context": "CREATE TABLE table_name_88 (certification VARCHAR, album VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_95 WHERE rider = \"gregorio lavilla\" AND grid > 13", "question": "What is the average Laps that have gregorio lavilla as the rider, with a grid greater than 13?", "context": "CREATE TABLE table_name_95 (laps INTEGER, rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT bike FROM table_name_20 WHERE grid = 26", "question": "What bike has 26 as the grid?", "context": "CREATE TABLE table_name_20 (bike VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_80 WHERE time = \"+44.866\" AND laps > 25", "question": "What is the highest grid that has +44.866 as the time, with laps greater than 25?", "context": "CREATE TABLE table_name_80 (grid INTEGER, time VARCHAR, laps VARCHAR)"}, {"answer": "SELECT high_points FROM table_name_53 WHERE date = \"june 16\"", "question": "who has the high points on june 16?", "context": "CREATE TABLE table_name_53 (high_points VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_84 WHERE date = \"november 2, 2003\"", "question": "What was the attendance on november 2, 2003?", "context": "CREATE TABLE table_name_84 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT 193 FROM table_name_77 WHERE height = 2.05", "question": "What is the 1.93 that is 2.05 in height?", "context": "CREATE TABLE table_name_77 (height VARCHAR)"}, {"answer": "SELECT 193 FROM table_name_69 WHERE name = \"svetlana shkolina\"", "question": "What is the 1.93 for Svetlana Shkolina?", "context": "CREATE TABLE table_name_69 (name VARCHAR)"}, {"answer": "SELECT name FROM table_name_50 WHERE nationality = \"ukraine\" AND 193 = \"xxo\"", "question": "What is the name for the play from the Ukraine, and a 1.93 xxo?", "context": "CREATE TABLE table_name_50 (name VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT europe FROM table_name_68 WHERE rank = \"4\" AND top_goalscorer = \"karl-heinz rummenigge\" AND goals = 14", "question": "What country in Europe is ranked 4, with top goal scorer Karl-Heinz Rummenigge with 14 goals?", "context": "CREATE TABLE table_name_68 (europe VARCHAR, goals VARCHAR, rank VARCHAR, top_goalscorer VARCHAR)"}, {"answer": "SELECT rank FROM table_name_49 WHERE avgatt = \"52 574\"", "question": "Wha is the rank for 52 574 avg. att?", "context": "CREATE TABLE table_name_49 (rank VARCHAR, avgatt VARCHAR)"}, {"answer": "SELECT europe FROM table_name_83 WHERE goals > 14 AND avgatt = \"52 538\"", "question": "What european country had more than 14 goals, and 52 538 avg att?", "context": "CREATE TABLE table_name_83 (europe VARCHAR, goals VARCHAR, avgatt VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_30 WHERE points = \"0\" AND country = \"germany\" AND seasons = \"1999\"", "question": "What's the least amount of wins for Germany in the 1999 season having 0 points?", "context": "CREATE TABLE table_name_30 (wins INTEGER, seasons VARCHAR, points VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_51 WHERE points = \"0\" AND podiums < 0", "question": "How many wins when the points are 0 and podiums are less than 0?", "context": "CREATE TABLE table_name_51 (wins INTEGER, points VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT SUM(fastest_laps) FROM table_name_2 WHERE poles = 0 AND podiums = 0 AND seasons = \"1995\"", "question": "What's the fastest laps during the 1995 season having poles & podiums at 0?", "context": "CREATE TABLE table_name_2 (fastest_laps INTEGER, seasons VARCHAR, poles VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_73 WHERE award = \"venice film festival\" AND title = \"lust, caution\"", "question": "How many years have an Award of venice film festival, and a Title of lust, caution?", "context": "CREATE TABLE table_name_73 (year VARCHAR, award VARCHAR, title VARCHAR)"}, {"answer": "SELECT category FROM table_name_45 WHERE year > 1996 AND result = \"won\" AND title = \"brokeback mountain\" AND award = \"golden globe award\"", "question": "Which Category has a Year larger than 1996, and a Result of won, and a Title of brokeback mountain, and an Award of golden globe award?", "context": "CREATE TABLE table_name_45 (category VARCHAR, award VARCHAR, title VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT title FROM table_name_14 WHERE year < 2001 AND award = \"independent spirit awards\"", "question": "Which Title has a Year smaller than 2001, and an Award of independent spirit awards?", "context": "CREATE TABLE table_name_14 (title VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_30 WHERE points = 17", "question": "Which chassis has 17 points?", "context": "CREATE TABLE table_name_30 (chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_33 WHERE total_games = 186", "question": "What is the average draw for 186 games?", "context": "CREATE TABLE table_name_33 (draw INTEGER, total_games VARCHAR)"}, {"answer": "SELECT SUM(total_games) FROM table_name_34 WHERE number_of_seasons < 2 AND draw > 7", "question": "What is the number of games for less than 2 seasons and more than 7 draws?", "context": "CREATE TABLE table_name_34 (total_games INTEGER, number_of_seasons VARCHAR, draw VARCHAR)"}, {"answer": "SELECT COUNT(loss) FROM table_name_56 WHERE total_games < 48 AND draw < 7", "question": "What is the total number of losses for less than 48 games, and less than 7 draws?", "context": "CREATE TABLE table_name_56 (loss VARCHAR, total_games VARCHAR, draw VARCHAR)"}, {"answer": "SELECT COUNT(total_games) FROM table_name_26 WHERE loss > 18 AND league = \"total\" AND draw > 317", "question": "What is the total number of games with more than 18 loses, a Total League, and more than 317 draws?", "context": "CREATE TABLE table_name_26 (total_games VARCHAR, draw VARCHAR, loss VARCHAR, league VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_91 WHERE player = \"bobby ryan\"", "question": "What is Bobby Ryan's nationality?", "context": "CREATE TABLE table_name_91 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_65 WHERE team = \"peter stuyvesant international racing\"", "question": "What's the location of the team Peter Stuyvesant International Racing?", "context": "CREATE TABLE table_name_65 (city___state VARCHAR, team VARCHAR)"}, {"answer": "SELECT winner FROM table_name_27 WHERE circuit = \"adelaide international raceway\"", "question": "Who was the winner of the Adelaide International Raceway circuit?", "context": "CREATE TABLE table_name_27 (winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE circuit = \"surfers paradise international raceway\"", "question": "What date has the Surfers Paradise International Raceway circuit?", "context": "CREATE TABLE table_name_52 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT race_title FROM table_name_73 WHERE team = \"dick johnson racing\"", "question": "What is the race title of Dick Johnson Racing?", "context": "CREATE TABLE table_name_73 (race_title VARCHAR, team VARCHAR)"}, {"answer": "SELECT career_win_loss FROM table_name_3 WHERE 1995 = \"atp masters series\"", "question": "What is the career win-loss for the ATP Masters Series?", "context": "CREATE TABLE table_name_3 (career_win_loss VARCHAR)"}, {"answer": "SELECT home_ground_s_ FROM table_name_11 WHERE name = \"melville cricket club\"", "question": "What's the Home ground(s) listed for the Name Melville Cricket Club?", "context": "CREATE TABLE table_name_11 (home_ground_s_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_4 WHERE captain = \"aaron heal\"", "question": "What Name has the Captain Aaron Heal?", "context": "CREATE TABLE table_name_4 (name VARCHAR, captain VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_40 WHERE name = \"university cricket club\"", "question": "What's the Nickname listed for the Name of University Cricket Club?", "context": "CREATE TABLE table_name_40 (nickname VARCHAR, name VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_82 WHERE location = \"southern river\"", "question": "What Nickname has a Location of Southern River?", "context": "CREATE TABLE table_name_82 (nickname VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_name_74 WHERE nickname = \"storm\"", "question": "What is the Name listed for the Nickname of Storm?", "context": "CREATE TABLE table_name_74 (name VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT name FROM table_name_67 WHERE location = \"bayswater\"", "question": "What Name has the Location of Bayswater?", "context": "CREATE TABLE table_name_67 (name VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_39 WHERE from_album = \"the thing\"", "question": "How many years have a Form album of the thing?", "context": "CREATE TABLE table_name_39 (year INTEGER, from_album VARCHAR)"}, {"answer": "SELECT label - Nr FROM table_name_78 WHERE year < 1968 AND label = \"world pacific\" AND from_album = \"chile con soul\"", "question": "Which Label-Nr has a Year smaller than 1968, and a Label of world pacific, and an album of chile con soul?", "context": "CREATE TABLE table_name_78 (label VARCHAR, Nr VARCHAR, from_album VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_15 WHERE label - Nr = 88146", "question": "Which Year has a Label-Nr of 88146?", "context": "CREATE TABLE table_name_15 (year VARCHAR, label VARCHAR, Nr VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_84 WHERE from_album = \"heat wave\"", "question": "How many years were there albums by heat wave?", "context": "CREATE TABLE table_name_84 (year INTEGER, from_album VARCHAR)"}, {"answer": "SELECT title FROM table_name_4 WHERE from_album = \"tough talk\" AND label - Nr = x - 371", "question": "Which Title has an album of tough talk, and a Label-Nr of x-371?", "context": "CREATE TABLE table_name_4 (title VARCHAR, from_album VARCHAR, label VARCHAR, Nr VARCHAR, x VARCHAR)"}, {"answer": "SELECT MIN(floors) FROM table_name_59 WHERE name = \"joyus housing\" AND rank < 2", "question": "What is the lowest number of floors for the number 2 ranked Joyus Housing?", "context": "CREATE TABLE table_name_59 (floors INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT floors FROM table_name_72 WHERE rank > 41 AND city = \"parel\"", "question": "What is the number of floors when the r Rank larger than 41, and a City of parel?", "context": "CREATE TABLE table_name_72 (floors VARCHAR, rank VARCHAR, city VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_46 WHERE city = \"sewri\"", "question": "What is the rank for the city of sewri?", "context": "CREATE TABLE table_name_46 (rank VARCHAR, city VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_79 WHERE status = \"proposed\" AND floors = 80 AND name = \"celestia spaces 4\"", "question": "What rank has a status of proposed, with 80 floors for Celestia Spaces 4?", "context": "CREATE TABLE table_name_79 (rank INTEGER, name VARCHAR, status VARCHAR, floors VARCHAR)"}, {"answer": "SELECT english FROM table_name_48 WHERE bulgarian = \"\u0431\u044f\u0445\u0430 \u0447\u0443\u043b\u0438\"", "question": "What's the English Pluperfect when the Bulgarian is \u0431\u044f\u0445\u0430 \u0447\u0443\u043b\u0438?", "context": "CREATE TABLE table_name_48 (english VARCHAR, bulgarian VARCHAR)"}, {"answer": "SELECT italian FROM table_name_83 WHERE english = \"we had heard\"", "question": "What's the Italian Pluperfect when the English is We Had Heard?", "context": "CREATE TABLE table_name_83 (italian VARCHAR, english VARCHAR)"}, {"answer": "SELECT portuguese FROM table_name_25 WHERE french = \"ils/elles avaient entendu\"", "question": "What is the Portuguese Pluperfect when the French is Ils/Elles Avaient Entendu?", "context": "CREATE TABLE table_name_25 (portuguese VARCHAR, french VARCHAR)"}, {"answer": "SELECT german FROM table_name_85 WHERE macedonian = \"\u0431\u0435\u0448\u0435 \u0441\u043b\u0443\u0448\u043d\u0430\u043b/-\u0430/-\u043e\"", "question": "What's the German Pluperfect when the Macedonian is \u0431\u0435\u0448\u0435 \u0441\u043b\u0443\u0448\u043d\u0430\u043b/-\u0430/-\u043e?", "context": "CREATE TABLE table_name_85 (german VARCHAR, macedonian VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_83 WHERE nation = \"italy\" AND total < 5", "question": "What is the least amount of silver for Italy with a total less than 5?", "context": "CREATE TABLE table_name_83 (silver INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_47 WHERE nation = \"austria\" AND bronze < 1", "question": "What is the total for Austria when there is less than 1 bronze?", "context": "CREATE TABLE table_name_47 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_53 WHERE silver > 3 AND rank = \"2\"", "question": "What is the total when silver is more than 3, and rank is 2?", "context": "CREATE TABLE table_name_53 (total INTEGER, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_19 WHERE total > 1 AND bronze = 0 AND rank = \"5\"", "question": "What is the gold number when total is more than 1, and bronze is 0, and rank is 5?", "context": "CREATE TABLE table_name_19 (gold INTEGER, rank VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE time = \"7:30 pm et\"", "question": "What date was the episode that aired at 7:30 pm ET?", "context": "CREATE TABLE table_name_26 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE episode = \"one\"", "question": "What date did episode one air on?", "context": "CREATE TABLE table_name_38 (date VARCHAR, episode VARCHAR)"}, {"answer": "SELECT venue FROM table_name_2 WHERE competition = \"2010 fifa world cup qualification\"", "question": "At what venue was the 2010 FIFA World Cup Qualification?", "context": "CREATE TABLE table_name_2 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT discipline FROM table_name_68 WHERE tournament = \"summer olympics\" AND year = 2008", "question": "What is the discipline for the summer Olympics in 2008?", "context": "CREATE TABLE table_name_68 (discipline VARCHAR, tournament VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_85 WHERE extra = \"45.08 s\"", "question": "What venue has an extra of 45.08 S?", "context": "CREATE TABLE table_name_85 (venue VARCHAR, extra VARCHAR)"}, {"answer": "SELECT extra FROM table_name_28 WHERE result = \"4th\" AND tournament = \"ncaa championships\"", "question": "What is the extra when the result is 4th at the NCAA Championships?", "context": "CREATE TABLE table_name_28 (extra VARCHAR, result VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_60 WHERE extra = \"3:06.94 s\"", "question": "What tournament had an extra of 3:06.94 s?", "context": "CREATE TABLE table_name_60 (tournament VARCHAR, extra VARCHAR)"}, {"answer": "SELECT MIN(time) FROM table_name_66 WHERE nationality = \"jamaica\" AND lane > 4 AND rank < 1", "question": "Name the lowest Time of jamaica with a Lane larger than 4 and a Rank smaller than 1?", "context": "CREATE TABLE table_name_66 (time INTEGER, rank VARCHAR, nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_39 WHERE lane = 5 AND time < 11.06", "question": "Name the lowest Rank with a Lane of 5 and a Time smaller than 11.06?", "context": "CREATE TABLE table_name_39 (rank INTEGER, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_97 WHERE name = \"carmelita jeter\" AND time < 11.08", "question": "Name the lowest Rank of carmelita jeter with a Time smaller than 11.08?", "context": "CREATE TABLE table_name_97 (rank INTEGER, name VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_50 WHERE points = 98", "question": "When the points are 98 what is the draw?", "context": "CREATE TABLE table_name_50 (draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT 188 AS kg FROM table_name_96 WHERE world_record = \"clean & jerk\"", "question": "For what 188kg is the world record clean & jerk?", "context": "CREATE TABLE table_name_96 (world_record VARCHAR)"}, {"answer": "SELECT year FROM table_name_96 WHERE opponent_in_the_final = \"brenda schultz-mccarthy\" AND score = \"6\u20137(5), 2\u20136\"", "question": "What year had a score of 6\u20137(5), 2\u20136 and opponent of Brenda Schultz-Mccarthy?", "context": "CREATE TABLE table_name_96 (year VARCHAR, opponent_in_the_final VARCHAR, score VARCHAR)"}, {"answer": "SELECT year FROM table_name_90 WHERE score = \"4\u20136, 7\u20136, 7\u20135\"", "question": "What year had a score of 4\u20136, 7\u20136, 7\u20135?", "context": "CREATE TABLE table_name_90 (year VARCHAR, score VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_78 WHERE home_team = \"citizen team a\"", "question": "Who was the away team for the match with a home team of Citizen Team A?", "context": "CREATE TABLE table_name_78 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_51 WHERE home_team = \"citizen team a\"", "question": "What was the score for the match with a home team of Citizen Team A?", "context": "CREATE TABLE table_name_51 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_97 WHERE away_team = \"convoy sun hei team b\"", "question": "Who was the home team in the match that had an away team of Convoy Sun Hei Team B?", "context": "CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT time FROM table_name_30 WHERE away_team = \"happy valley team b\"", "question": "What time did the match with an away team of Happy Valley Team B start?", "context": "CREATE TABLE table_name_30 (time VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_98 WHERE team__number2 = \"sumykhimprom\"", "question": "What is the 2nd leg when second team is Sumykhimprom?", "context": "CREATE TABLE table_name_98 (team__number2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_53 WHERE team__number1 = \"csu sibiu\"", "question": "What is the 1st leg when team number 1 is CSU SIBIU?", "context": "CREATE TABLE table_name_53 (team__number1 VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_99 WHERE laps < 100 AND points > 0", "question": "Which Time/Retired has Laps smaller than 100, and Points larger than 0?", "context": "CREATE TABLE table_name_99 (time_retired VARCHAR, laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_72 WHERE time_retired = \"+ 4 laps\" AND grid > 18", "question": "Which Laps have a Time/Retired of + 4 laps, and a Grid larger than 18?", "context": "CREATE TABLE table_name_72 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT team FROM table_name_33 WHERE laps = 100 AND time_retired = \"+8.6 secs\"", "question": "Which Team has Laps of 100, and a Time/Retired of +8.6 secs?", "context": "CREATE TABLE table_name_33 (team VARCHAR, laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT strike_rate FROM table_name_97 WHERE matches = \"9\"", "question": "What strike rate is 9 the matches?", "context": "CREATE TABLE table_name_97 (strike_rate VARCHAR, matches VARCHAR)"}, {"answer": "SELECT player FROM table_name_89 WHERE strike_rate = \"79.62\"", "question": "Which player has 79.62 as the strike rate?", "context": "CREATE TABLE table_name_89 (player VARCHAR, strike_rate VARCHAR)"}, {"answer": "SELECT strike_rate FROM table_name_24 WHERE matches = \"10\" AND runs = \"469\"", "question": "With 10 as matches, and 469 runs, what is the strike rate?", "context": "CREATE TABLE table_name_24 (strike_rate VARCHAR, matches VARCHAR, runs VARCHAR)"}, {"answer": "SELECT balls FROM table_name_36 WHERE strike_rate = \"70.10\"", "question": "When the strike rate is 70.10, what is the balls?", "context": "CREATE TABLE table_name_36 (balls VARCHAR, strike_rate VARCHAR)"}, {"answer": "SELECT nation FROM table_name_89 WHERE time = \"51.35\" AND heat_semifinal_final = \"final\"", "question": "What nation has a time of 51.35 in the final heat?", "context": "CREATE TABLE table_name_89 (nation VARCHAR, time VARCHAR, heat_semifinal_final VARCHAR)"}, {"answer": "SELECT heat_semifinal_final FROM table_name_41 WHERE time = \"48.97\"", "question": "Which heat, semifinal or final has a time of 48.97?", "context": "CREATE TABLE table_name_41 (heat_semifinal_final VARCHAR, time VARCHAR)"}, {"answer": "SELECT heat_semifinal_final FROM table_name_31 WHERE time = \"25.00\"", "question": "What heat, semifinal or final has a time of 25.00?", "context": "CREATE TABLE table_name_31 (heat_semifinal_final VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE event = \"men's 100m breaststroke\" AND heat_semifinal_final = \"heat 6\"", "question": "What date was the men's 100m breaststroke in heat 6?", "context": "CREATE TABLE table_name_74 (date VARCHAR, event VARCHAR, heat_semifinal_final VARCHAR)"}, {"answer": "SELECT result FROM table_name_89 WHERE 400 = \"o\" AND name = \"marion buisson\"", "question": "Marion Buisson with a 4.00 of o had what result?", "context": "CREATE TABLE table_name_89 (result VARCHAR, name VARCHAR)"}, {"answer": "SELECT 400 FROM table_name_51 WHERE nationality = \"germany\" AND name = \"anastasija reiberger\"", "question": "Anastasija Reiberger from Germany had what 4.00?", "context": "CREATE TABLE table_name_51 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_24 WHERE group = \"b\" AND result = \"4.30\" AND name = \"alana boyd\"", "question": "Alana Boyd of group B with a 4.30 result has what nationality?", "context": "CREATE TABLE table_name_24 (nationality VARCHAR, name VARCHAR, group VARCHAR, result VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_87 WHERE name = \"roslinda samsu\"", "question": "Roslinda Samsu has what nationality?", "context": "CREATE TABLE table_name_87 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_49 WHERE name = \"marion buisson\"", "question": "What nation is Marion Buisson playing for?", "context": "CREATE TABLE table_name_49 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_80 WHERE country = \"canada\"", "question": "Who is the rower from Canada?", "context": "CREATE TABLE table_name_80 (rowers VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_6 WHERE notes = \"r\" AND country = \"australia\"", "question": "What is the sum of the rank of the rower with an r note from Australia?", "context": "CREATE TABLE table_name_6 (rank INTEGER, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_98 WHERE rank < 2", "question": "What is the country with a rank less than 2?", "context": "CREATE TABLE table_name_98 (country VARCHAR, rank INTEGER)"}, {"answer": "SELECT notes FROM table_name_41 WHERE athlete = \"gabriella bascelli\"", "question": "What notes did Gabriella Bascelli receive?", "context": "CREATE TABLE table_name_41 (notes VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_62 WHERE time = \"7:31.90\"", "question": "What rank did the time of 7:31.90 receive?", "context": "CREATE TABLE table_name_62 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT romaji_title FROM table_name_64 WHERE japanese_title = \"\u5973\u738b\u306e\u6559\u5ba4\"", "question": "Which Romaji Title has a Japanese Title of \u5973\u738b\u306e\u6559\u5ba4?", "context": "CREATE TABLE table_name_64 (romaji_title VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT SUM(episodes) FROM table_name_29 WHERE romaji_title = \"slow dance\"", "question": "How many Episodes have a Romaji Title of slow dance?", "context": "CREATE TABLE table_name_29 (episodes INTEGER, romaji_title VARCHAR)"}, {"answer": "SELECT COUNT(episodes) FROM table_name_90 WHERE romaji_title = \"dragon zakura\"", "question": "How many Episodes have a Romaji Title of dragon zakura?", "context": "CREATE TABLE table_name_90 (episodes VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT format FROM table_name_89 WHERE label = \"columbia\" AND catalog < 88697411432 AND date = \"october 24, 2008\"", "question": "Which Format has a Label of columbia, and a Catalog smaller than 88697411432, and a Date of october 24, 2008?", "context": "CREATE TABLE table_name_89 (format VARCHAR, date VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT AVG(catalog) FROM table_name_73 WHERE date = \"july 15, 2011\"", "question": "Which Catalog has a Date of july 15, 2011?", "context": "CREATE TABLE table_name_73 (catalog INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_57 WHERE date = \"july 21, 2008\"", "question": "Which opponent was on July 21, 2008?", "context": "CREATE TABLE table_name_57 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE surface = \"clay\" AND opponent = \"irina falconi\"", "question": "What was the date of the tournament with a clay surface and an opponent of Irina Falconi?", "context": "CREATE TABLE table_name_43 (date VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_5 WHERE date = \"may 10, 2009\"", "question": "Who was the opponent on May 10, 2009?", "context": "CREATE TABLE table_name_5 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_16 WHERE home_team = \"bath city\"", "question": "What is the score of the home team, bath city?", "context": "CREATE TABLE table_name_16 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE away_team = \"southport\"", "question": "What was the score for the away team southport?", "context": "CREATE TABLE table_name_13 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_21 WHERE away_team = \"lincoln city\"", "question": "What is the home team that had an away team of lincoln city?", "context": "CREATE TABLE table_name_21 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE away_team = \"wycombe wanderers\"", "question": "What date had a game with wycombe wanderers as the away team?", "context": "CREATE TABLE table_name_28 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT COUNT(place) FROM table_name_80 WHERE artist = \"august\u0117\" AND draw < 6", "question": "How many places have an Artist of august\u0117, and a Draw smaller than 6?", "context": "CREATE TABLE table_name_80 (place VARCHAR, artist VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_71 WHERE place = \"thun\"", "question": "What is the latest year the world championships were held in Thun?", "context": "CREATE TABLE table_name_71 (year INTEGER, place VARCHAR)"}, {"answer": "SELECT gold FROM table_name_21 WHERE place = \"phoenix\"", "question": "Who won gold when the world championships were held in Phoenix?", "context": "CREATE TABLE table_name_21 (gold VARCHAR, place VARCHAR)"}, {"answer": "SELECT MIN(ansi_code) FROM table_name_18 WHERE longitude > -101.333926 AND geo_id < 3806700900 AND township = \"adler\" AND land___sqmi__ > 35.84", "question": "What is the smallest ANSI code for adler township when Longitude is more than -101.333926, GEO ID is less than 3806700900, and Land ( sqmi ) is more than 35.84?", "context": "CREATE TABLE table_name_18 (ansi_code INTEGER, land___sqmi__ VARCHAR, township VARCHAR, longitude VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT AVG(latitude) FROM table_name_72 WHERE land___sqmi__ < 35.874 AND pop__2010_ > 35 AND county = \"cass\" AND water__sqmi_ = 0.008", "question": "Cass county has 0.008 Water (sqmi), less than 35.874 Land (sqmi), more than 35 Pop. (2010), and what average latitude?", "context": "CREATE TABLE table_name_72 (latitude INTEGER, water__sqmi_ VARCHAR, county VARCHAR, land___sqmi__ VARCHAR, pop__2010_ VARCHAR)"}, {"answer": "SELECT county FROM table_name_4 WHERE latitude < 46.935364 AND geo_id = 3801700500", "question": "In what county is the latitude less than 46.935364 and GEO ID is 3801700500?", "context": "CREATE TABLE table_name_4 (county VARCHAR, latitude VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_33 WHERE score = \"35-14\"", "question": "Who was the opponent at the game with a score of 35-14?", "context": "CREATE TABLE table_name_33 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_21 WHERE record = \"5-1\"", "question": "What was the result of the game when the record was 5-1?", "context": "CREATE TABLE table_name_21 (result VARCHAR, record VARCHAR)"}, {"answer": "SELECT result FROM table_name_49 WHERE opponent = \"los angeles dons\"", "question": "What was the result of the game against the Los Angeles Dons?", "context": "CREATE TABLE table_name_49 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_75 WHERE venue = \"bydgoszcz, poland\" AND event = \"junior team\"", "question": "Which Year has a Venue of bydgoszcz, poland, and an Event of junior team?", "context": "CREATE TABLE table_name_75 (year INTEGER, venue VARCHAR, event VARCHAR)"}, {"answer": "SELECT venue FROM table_name_72 WHERE year < 2009 AND event = \"3000 m\" AND competition = \"world youth championships\"", "question": "Which Venue has a Year smaller than 2009, and an Event of 3000 m, and a Competition of world youth championships?", "context": "CREATE TABLE table_name_72 (venue VARCHAR, competition VARCHAR, year VARCHAR, event VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_94 WHERE competition = \"commonwealth youth games\"", "question": "Which Year has a Competition of commonwealth youth games?", "context": "CREATE TABLE table_name_94 (year INTEGER, competition VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_86 WHERE year = 1986", "question": "What is the total for 1986?", "context": "CREATE TABLE table_name_86 (rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE year < 1954 AND floors > 15", "question": "What is the name before 1954 with more than 15 floors?", "context": "CREATE TABLE table_name_61 (name VARCHAR, year VARCHAR, floors VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_86 WHERE name = \"el paso natural gas company building\"", "question": "What is the lowest rank for El Paso Natural Gas Company Building?", "context": "CREATE TABLE table_name_86 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT rank FROM table_name_64 WHERE province = \"gauteng\"", "question": "What is the rank of the gauteng province?", "context": "CREATE TABLE table_name_64 (rank VARCHAR, province VARCHAR)"}, {"answer": "SELECT MIN(population_estimate__2013_) FROM table_name_57 WHERE percentage = 23.7", "question": "What is the lowest 2013 population estimate of the province with a 23.7 percentage?", "context": "CREATE TABLE table_name_57 (population_estimate__2013_ INTEGER, percentage VARCHAR)"}, {"answer": "SELECT years_runner_up FROM table_name_81 WHERE team = \"duisburg\"", "question": "What year(s) was Duisburg runner-up?", "context": "CREATE TABLE table_name_81 (years_runner_up VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_48 WHERE notes = \"18.04 m wl\"", "question": "What was the earliest year with a note of 18.04 m wl?", "context": "CREATE TABLE table_name_48 (year INTEGER, notes VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE year < 2011 AND competition = \"world junior championships\"", "question": "What venue had a competition of World Junior Championships before 2011?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT developer_s_ FROM table_name_46 WHERE game = \"call of duty: black ops\"", "question": "Who was the developer of Call of Duty: Black Ops?", "context": "CREATE TABLE table_name_46 (developer_s_ VARCHAR, game VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_65 WHERE genre = \"third-person shooter\"", "question": "What is the platform for the game of the third-person shooter genre?", "context": "CREATE TABLE table_name_65 (platform_s_ VARCHAR, genre VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_95 WHERE year = 2007", "question": "What is the platform of the game from 2007?", "context": "CREATE TABLE table_name_95 (platform_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT developer_s_ FROM table_name_4 WHERE game = \"resident evil 4\"", "question": "Who was the developer of Resident Evil 4?", "context": "CREATE TABLE table_name_4 (developer_s_ VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_52 WHERE name = \"flori lang\" AND time < 22.27", "question": "What was the rank of flori lang when his time was less than 22.27", "context": "CREATE TABLE table_name_52 (rank INTEGER, name VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_59 WHERE heat > 12 AND rank = 38 AND time > 22.67", "question": "What lane had a heat after 12, a rank of 38 and a time larger than 22.67?", "context": "CREATE TABLE table_name_59 (lane INTEGER, time VARCHAR, heat VARCHAR, rank VARCHAR)"}, {"answer": "SELECT game FROM table_name_14 WHERE record = \"27-12\"", "question": "What game has 27-12 record?", "context": "CREATE TABLE table_name_14 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE record = \"21-11\"", "question": "What date was the record 21-11?", "context": "CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_33 WHERE score = \"w 95-93\"", "question": "What is the location/attendance for the w 95-93 score?", "context": "CREATE TABLE table_name_33 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_95 WHERE record = \"26-11\"", "question": "What is the location/attendance with a 26-11 record?", "context": "CREATE TABLE table_name_95 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_44 WHERE record = \"26-12\"", "question": "Which opponent has a 26-12 record?", "context": "CREATE TABLE table_name_44 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT time FROM table_name_95 WHERE rower = \"lee ka man\"", "question": "What is Lee Ka Man's Time?", "context": "CREATE TABLE table_name_95 (time VARCHAR, rower VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_35 WHERE time = \"8:23.02\"", "question": "What is the Rank of the rower with a Time of 8:23.02?", "context": "CREATE TABLE table_name_35 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_40 WHERE rank = \"7\" AND bronze < 0", "question": "What is the most gold when the rank is 7 and bronze is less than 0?", "context": "CREATE TABLE table_name_40 (gold INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_33 WHERE total = 7", "question": "what is the most gold when the total is 7?", "context": "CREATE TABLE table_name_33 (gold INTEGER, total VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_71 WHERE rank = \"10\" AND silver < 0", "question": "what is the least gold when the rank is 10 and silver is less than 0?", "context": "CREATE TABLE table_name_71 (gold INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_24 WHERE nation = \"sweden (swe)\" AND silver < 0", "question": "what is the lowest total when the nation is sweden (swe) and silver is less than 0?", "context": "CREATE TABLE table_name_24 (total INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_64 WHERE silver > 2 AND bronze = 12 AND gold < 12", "question": "what is the average total when silver is more than 2, bronze is 12 and gold is less than 12?", "context": "CREATE TABLE table_name_64 (total INTEGER, gold VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(longitude) FROM table_name_38 WHERE latitude = 48.930222 AND geo_id < 3806755660", "question": "What is the longitude with a latitude of 48.930222 with a Geo ID smaller than 3806755660?", "context": "CREATE TABLE table_name_38 (longitude VARCHAR, latitude VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT latitude FROM table_name_18 WHERE land___sqmi__ < 34.401 AND geo_id < 3807157722 AND longitude = -98.475995", "question": "What is the latitude that has a sqmi smaller than 34.401, a Geo ID smaller than 3807157722, and a Longitude of -98.475995?", "context": "CREATE TABLE table_name_18 (latitude VARCHAR, longitude VARCHAR, land___sqmi__ VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT COUNT(longitude) FROM table_name_68 WHERE township = \"nogosek\" AND geo_id > 3809357060", "question": "What is the total longitude of Nogosek and a GEO ID larger than 3809357060?", "context": "CREATE TABLE table_name_68 (longitude VARCHAR, township VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT SUM(band) FROM table_name_46 WHERE power__w_ < 400", "question": "What Band number has a Power (W) of 400 or less?", "context": "CREATE TABLE table_name_46 (band INTEGER, power__w_ INTEGER)"}, {"answer": "SELECT MAX(band) FROM table_name_33 WHERE power__w_ > 400", "question": "What Band's Power (W) is 400 or less?", "context": "CREATE TABLE table_name_33 (band INTEGER, power__w_ INTEGER)"}, {"answer": "SELECT wavelength FROM table_name_53 WHERE frequency__mhz_ = \"14.050\u201314.150\"", "question": "What is the Wavelength of Frequency (MHz) 14.050\u201314.150?", "context": "CREATE TABLE table_name_53 (wavelength VARCHAR, frequency__mhz_ VARCHAR)"}, {"answer": "SELECT recipients_and_nominees FROM table_name_73 WHERE year = 1994", "question": "Who are the recipients in 1994?", "context": "CREATE TABLE table_name_73 (recipients_and_nominees VARCHAR, year VARCHAR)"}, {"answer": "SELECT recipients_and_nominees FROM table_name_30 WHERE role_episode = \"david duchovny\" AND result = \"won\"", "question": "Who are the recipients that won for David Duchovny role/episode?", "context": "CREATE TABLE table_name_30 (recipients_and_nominees VARCHAR, role_episode VARCHAR, result VARCHAR)"}, {"answer": "SELECT category FROM table_name_37 WHERE year = 1998 AND role_episode = \"david duchovny\"", "question": "What's the category in 1998 with the role/episode of David Duchovny?", "context": "CREATE TABLE table_name_37 (category VARCHAR, year VARCHAR, role_episode VARCHAR)"}, {"answer": "SELECT network FROM table_name_69 WHERE aspect = \"4:3\" AND channel > 31.4", "question": "Which network has more than 31.4 channels with a 4:3 aspect?", "context": "CREATE TABLE table_name_69 (network VARCHAR, aspect VARCHAR, channel VARCHAR)"}, {"answer": "SELECT video FROM table_name_97 WHERE aspect = \"4:3\" AND channel = 31.2", "question": "Which video is on channel 31.2 with a 4:3 aspect?", "context": "CREATE TABLE table_name_97 (video VARCHAR, aspect VARCHAR, channel VARCHAR)"}, {"answer": "SELECT video FROM table_name_77 WHERE aspect = \"16:9\"", "question": "Which video has a 16:9 aspect?", "context": "CREATE TABLE table_name_77 (video VARCHAR, aspect VARCHAR)"}, {"answer": "SELECT constituency_number FROM table_name_94 WHERE reserved_for___sc___st__none_ = \"none\" AND district = \"seoni\"", "question": "What's the constituency number of the Seoni district and has none reserved?", "context": "CREATE TABLE table_name_94 (constituency_number VARCHAR, reserved_for___sc___st__none_ VARCHAR, district VARCHAR)"}, {"answer": "SELECT district FROM table_name_64 WHERE reserved_for___sc___st__none_ = \"none\" AND name = \"paraswada\"", "question": "What is the district of Paraswada with none reserved?", "context": "CREATE TABLE table_name_64 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT reserved_for___sc___st__none_ FROM table_name_43 WHERE constituency_number = \"108\"", "question": "What's the reserved number for constituency number 108?", "context": "CREATE TABLE table_name_43 (reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT name FROM table_name_65 WHERE constituency_number = \"108\"", "question": "What's the name of Constituency number 108?", "context": "CREATE TABLE table_name_65 (name VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_77 WHERE bronze > 1 AND silver = 0 AND gold < 0", "question": "What is the lowest total medals when there were 0 gold medals, 0 silver medals, and more than 1 bronze medal?", "context": "CREATE TABLE table_name_77 (total INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_49 WHERE total < 8 AND rank = 9 AND silver < 0", "question": "What is the sum of the bronze medals when there were less than 8 total medals, 0 silver medals and a rank of 9?", "context": "CREATE TABLE table_name_49 (bronze INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_19 WHERE rank > 4 AND total = 2 AND silver > 0", "question": "What nation had a rank higher than 4, a total of 2 medals and more than 0 silver medals?", "context": "CREATE TABLE table_name_19 (nation VARCHAR, silver VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_9 WHERE total > 5 AND gold > 6", "question": "What was the average rank for the team that had more than 5 medals and more than 6 gold medals?", "context": "CREATE TABLE table_name_9 (rank INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT artist FROM table_name_7 WHERE draw > 4 AND points < 5", "question": "Which artist has a draw higher than 4 and fewer than 5 points?", "context": "CREATE TABLE table_name_7 (artist VARCHAR, draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT artist FROM table_name_42 WHERE points = 13", "question": "Which artist has 13 points?", "context": "CREATE TABLE table_name_42 (artist VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(b_score) FROM table_name_4 WHERE a_score < 6.5", "question": "What is the greatest B score when the A score was less than 6.5?", "context": "CREATE TABLE table_name_4 (b_score INTEGER, a_score INTEGER)"}, {"answer": "SELECT time FROM table_name_66 WHERE notes = \"sa/b\" AND country = \"great britain\"", "question": "What is the Time of the Great Britain players with Notes of SA/B?", "context": "CREATE TABLE table_name_66 (time VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_99 WHERE notes = \"fc\" AND time = \"7:41.97\"", "question": "What is the Rowers of the race with a Time of 7:41.97 and Notes of FC?", "context": "CREATE TABLE table_name_99 (rowers VARCHAR, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_66 WHERE opponent = \"minnesota vikings\"", "question": "What is the Week of the game against the Minnesota Vikings?", "context": "CREATE TABLE table_name_66 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_71 WHERE opponent = \"green bay packers\"", "question": "What is the Week of the game against Green Bay Packers?", "context": "CREATE TABLE table_name_71 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_46 WHERE result = \"l 20-14\"", "question": "What is the Attendance of the game with a Result of L 20-14?", "context": "CREATE TABLE table_name_46 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_93 WHERE date = \"october 5, 2003\"", "question": "What is the Week number on October 5, 2003?", "context": "CREATE TABLE table_name_93 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_78 WHERE attendance = \"62,123\"", "question": "What is the Week number with an Attendance of 62,123?", "context": "CREATE TABLE table_name_78 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT SUM(number_of_households) FROM table_name_58 WHERE county = \"ottawa\"", "question": "How many households are in Ottawa?", "context": "CREATE TABLE table_name_58 (number_of_households INTEGER, county VARCHAR)"}, {"answer": "SELECT SUM(enrollment) FROM table_name_28 WHERE location = \"culver\"", "question": "What is the sum of enrollments for schools located in Culver?", "context": "CREATE TABLE table_name_28 (enrollment INTEGER, location VARCHAR)"}, {"answer": "SELECT year_joined FROM table_name_46 WHERE enrollment = 413", "question": "Which year did the school with enrollment of 413 join?", "context": "CREATE TABLE table_name_46 (year_joined VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_83 WHERE category = \"best play\"", "question": "How many years was Reasons to be Pretty nominated for best play?", "context": "CREATE TABLE table_name_83 (year VARCHAR, category VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_56 WHERE category = \"best performance by a leading actor in a play\"", "question": "What is the first year that Reasons to be Pretty had a nominee for best performance by a leading actor in a play?", "context": "CREATE TABLE table_name_56 (year INTEGER, category VARCHAR)"}, {"answer": "SELECT match_report FROM table_name_23 WHERE date = \"28 february 2009\"", "question": "What is the match report from the game played on 28 february 2009?", "context": "CREATE TABLE table_name_23 (match_report VARCHAR, date VARCHAR)"}, {"answer": "SELECT match_report FROM table_name_4 WHERE date = \"25 april 2009\"", "question": "What is the match report from the game played on 25 april 2009?", "context": "CREATE TABLE table_name_4 (match_report VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_2 WHERE opponents = \"east fife\" AND date = \"3 january 2009\"", "question": "Where was the game played on 3 january 2009 against east fife?", "context": "CREATE TABLE table_name_2 (venue VARCHAR, opponents VARCHAR, date VARCHAR)"}, {"answer": "SELECT match_report FROM table_name_13 WHERE venue = \"stark's park\" AND competition = \"second division\" AND date = \"23 august 2008\"", "question": "What is the match report for the game that was played on 23 august 2008 in stark's park during the second division competition?", "context": "CREATE TABLE table_name_13 (match_report VARCHAR, date VARCHAR, venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT match_report FROM table_name_29 WHERE opponents = \"stirling albion\" AND venue = \"forthbank stadium\"", "question": "What is the match report for the game played at forthbank stadium against stirling albion?", "context": "CREATE TABLE table_name_29 (match_report VARCHAR, opponents VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(quantity) FROM table_name_85 WHERE drg_number_s_ = \"99 011\"", "question": "What is average quantity, when DRG number is 99 011?", "context": "CREATE TABLE table_name_85 (quantity INTEGER, drg_number_s_ VARCHAR)"}, {"answer": "SELECT railway_number_s_ FROM table_name_19 WHERE quantity = 3", "question": "Which railway number has 3 quantity?", "context": "CREATE TABLE table_name_19 (railway_number_s_ VARCHAR, quantity VARCHAR)"}, {"answer": "SELECT drg_number_s_ FROM table_name_32 WHERE railway_number_s_ = \"xxx\"", "question": "Which DRG number has xxx railway number?", "context": "CREATE TABLE table_name_32 (drg_number_s_ VARCHAR, railway_number_s_ VARCHAR)"}, {"answer": "SELECT quantity FROM table_name_58 WHERE axle_arrangement___uic___bauart = \"c n2t\" AND drg_number_s_ = \"99 093\"", "question": "Which quantity has Axle arrangement (UIC)bauart of c n2t, and DRG number 99 093?", "context": "CREATE TABLE table_name_58 (quantity VARCHAR, axle_arrangement___uic___bauart VARCHAR, drg_number_s_ VARCHAR)"}, {"answer": "SELECT song FROM table_name_8 WHERE date = \"march 8, 2008\"", "question": "What song came out on March 8, 2008?", "context": "CREATE TABLE table_name_8 (song VARCHAR, date VARCHAR)"}, {"answer": "SELECT topic_of_the_show FROM table_name_5 WHERE date = \"march 15, 2008\"", "question": "What was the topic of the show on March 15, 2008?", "context": "CREATE TABLE table_name_5 (topic_of_the_show VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_82 WHERE against > 1244 AND losses < 8", "question": "When against is more than 1244 with less than 8 losses, what is the average of wins?", "context": "CREATE TABLE table_name_82 (wins INTEGER, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT name FROM table_name_76 WHERE ref_number > 8 AND location = \"anawan street\"", "question": "What is the name of the mill located on Anawan Street with a reference number larger than 8?", "context": "CREATE TABLE table_name_76 (name VARCHAR, ref_number VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_name_7 WHERE ref_number < 55 AND built = 1910 AND construction = \"red brick\"", "question": "What is the name of the mill constructed of red brick in 1910 with a reference number lower than 55?", "context": "CREATE TABLE table_name_7 (name VARCHAR, construction VARCHAR, ref_number VARCHAR, built VARCHAR)"}, {"answer": "SELECT location FROM table_name_7 WHERE built < 1872 AND name = \"durfee mill no. 1\"", "question": "What is the location of the Durfee Mill No. 1, built before 1872 ?", "context": "CREATE TABLE table_name_7 (location VARCHAR, built VARCHAR, name VARCHAR)"}, {"answer": "SELECT location FROM table_name_99 WHERE ref_number = 44", "question": "What is the location of the mill with a reference number of 44?", "context": "CREATE TABLE table_name_99 (location VARCHAR, ref_number VARCHAR)"}, {"answer": "SELECT construction FROM table_name_89 WHERE name__wade_giles_ = \"fu-hsing\"", "question": "Which Construction is named of fu-hsing?", "context": "CREATE TABLE table_name_89 (construction VARCHAR, name__wade_giles_ VARCHAR)"}, {"answer": "SELECT construction FROM table_name_69 WHERE name__wade_giles_ = \"heng-hai\"", "question": "which Construction is named heng-hai?", "context": "CREATE TABLE table_name_69 (construction VARCHAR, name__wade_giles_ VARCHAR)"}, {"answer": "SELECT characters FROM table_name_33 WHERE construction = \"1873, foochow navy yard\"", "question": "Who  has a Construction of 1873, foochow navy yard?", "context": "CREATE TABLE table_name_33 (characters VARCHAR, construction VARCHAR)"}, {"answer": "SELECT name__pinyin_ FROM table_name_64 WHERE name__wade_giles_ = \"fu-ching\"", "question": "Which Name (pinyin) is named fu-ching?", "context": "CREATE TABLE table_name_64 (name__pinyin_ VARCHAR, name__wade_giles_ VARCHAR)"}, {"answer": "SELECT characters FROM table_name_1 WHERE construction = \"1870, foochow navy yard\" AND name__wade_giles_ = \"fu-hsing\"", "question": "Who has a Construction of 1870, foochow navy yard, and a Name (Wade Giles) of fu-hsing?", "context": "CREATE TABLE table_name_1 (characters VARCHAR, construction VARCHAR, name__wade_giles_ VARCHAR)"}, {"answer": "SELECT label FROM table_name_16 WHERE release = \"liebesgr\u00fcsse aus ost-berlin\"", "question": "Which Label has a Release of liebesgr\u00fcsse aus ost-berlin?", "context": "CREATE TABLE table_name_16 (label VARCHAR, release VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_20 WHERE games_played > 5", "question": "What is the rank of the person with more than 5 games played?", "context": "CREATE TABLE table_name_20 (rank INTEGER, games_played INTEGER)"}, {"answer": "SELECT COUNT(gold) FROM table_name_61 WHERE bronze > 1 AND silver > 1 AND rank = \"total\"", "question": "How many golds have a bronze greater than 1, a silver greater than 1, with total as the rank?", "context": "CREATE TABLE table_name_61 (gold VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_27 WHERE bronze > 1 AND nation = \"total\" AND silver < 18", "question": "How many golds have a bronze greater than 1, total as the nation, and a silver less than 18?", "context": "CREATE TABLE table_name_27 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_51 WHERE nation = \"west germany\"", "question": "How many bronzes have west germany as the nation?", "context": "CREATE TABLE table_name_51 (bronze INTEGER, nation VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_86 WHERE nation = \"denmark\" AND total < 1", "question": "How many golds have denmark as the nation, with a total less than 1?", "context": "CREATE TABLE table_name_86 (gold VARCHAR, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_60 WHERE gold = 1 AND rank = \"12\" AND silver > 0", "question": "How many totals have 1 for the gold, 12 for the rank, and a sliver greater than 0?", "context": "CREATE TABLE table_name_60 (total VARCHAR, silver VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_15 WHERE bronze = 1 AND total = 1 AND rank = \"17\" AND gold < 0", "question": "What is the lowest silver that has 1 for the bronze, 1 as the total, 17 as the rank, with a gold less than 0?", "context": "CREATE TABLE table_name_15 (silver INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT first_publisher FROM table_name_31 WHERE year < 1999", "question": "What is the First Publisher prior to 1999?", "context": "CREATE TABLE table_name_31 (first_publisher VARCHAR, year INTEGER)"}, {"answer": "SELECT isbn FROM table_name_48 WHERE year = 1999", "question": "What is the ISBN in 1999?", "context": "CREATE TABLE table_name_48 (isbn VARCHAR, year VARCHAR)"}, {"answer": "SELECT isbn FROM table_name_54 WHERE japanese_title = \"\u9727\u306e\u8a2a\u554f\u8005 (kiri no h\u014dmonsha)\"", "question": "What is the ISBN of Japanese Title of \u9727\u306e\u8a2a\u554f\u8005 (kiri no h\u014dmonsha)?", "context": "CREATE TABLE table_name_54 (isbn VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT first_publisher FROM table_name_8 WHERE year = 2007", "question": "What is the First Publisher in 2007?", "context": "CREATE TABLE table_name_8 (first_publisher VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_80 WHERE first_publisher = \"kodansha novels\" AND english_title = \"tokyo nightmare\"", "question": "What is the Year of Kodansha Novels' Tokyo Nightmare?", "context": "CREATE TABLE table_name_80 (year VARCHAR, first_publisher VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_37 WHERE isbn = \"isbn 4-06-182042-7\"", "question": "What Year has an ISBN OF ISBN 4-06-182042-7?", "context": "CREATE TABLE table_name_37 (year INTEGER, isbn VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_53 WHERE gold < 0", "question": "What is the bronze number for the nation with less than 0 gold?", "context": "CREATE TABLE table_name_53 (bronze INTEGER, gold INTEGER)"}, {"answer": "SELECT january FROM table_name_26 WHERE region = \"eastman\"", "question": "What is the January climate figure for Eastman?", "context": "CREATE TABLE table_name_26 (january VARCHAR, region VARCHAR)"}, {"answer": "SELECT city FROM table_name_49 WHERE july = \"23/9\u00b0c (73/48\u00b0f)\"", "question": "In what city is the July temperature 23/9\u00b0c (73/48\u00b0f)?", "context": "CREATE TABLE table_name_49 (city VARCHAR, july VARCHAR)"}, {"answer": "SELECT july FROM table_name_23 WHERE annual_precipitation = \"514mm (20.2in)\"", "question": "What is the July temperature where the annual precipitation is 514mm (20.2in)?", "context": "CREATE TABLE table_name_23 (july VARCHAR, annual_precipitation VARCHAR)"}, {"answer": "SELECT july FROM table_name_32 WHERE plant_hardiness_zone = \"2b\" AND january = \"\u221212/\u221223\u00b0c (10-9\u00b0f)\"", "question": "What is the July temperature where plant hardiness zone is 2B and January figure is \u221212/\u221223\u00b0c (10-9\u00b0f)?", "context": "CREATE TABLE table_name_32 (july VARCHAR, plant_hardiness_zone VARCHAR, january VARCHAR)"}, {"answer": "SELECT plant_hardiness_zone FROM table_name_36 WHERE region = \"northern\" AND annual_precipitation = \"443mm (17.4in)\"", "question": "What is the plant hardiness zone in the Northern region where the annual precipitation is 443mm (17.4in)?", "context": "CREATE TABLE table_name_36 (plant_hardiness_zone VARCHAR, region VARCHAR, annual_precipitation VARCHAR)"}, {"answer": "SELECT city FROM table_name_52 WHERE plant_hardiness_zone = \"2b\" AND january = \"\u221212/\u221223\u00b0c (10/-9\u00b0f)\"", "question": "In what city is the plant hardiness zone 2B and January temp is \u221212/\u221223\u00b0c (10/-9\u00b0f)?", "context": "CREATE TABLE table_name_52 (city VARCHAR, plant_hardiness_zone VARCHAR, january VARCHAR)"}, {"answer": "SELECT total_apps FROM table_name_78 WHERE name = \"paul wilson\"", "question": "What is the Total Apps listing for Paul Wilson?", "context": "CREATE TABLE table_name_78 (total_apps VARCHAR, name VARCHAR)"}, {"answer": "SELECT winner FROM table_name_84 WHERE course = \"milan circuit race\"", "question": "Who was the winner at Milan Circuit Race?", "context": "CREATE TABLE table_name_84 (winner VARCHAR, course VARCHAR)"}, {"answer": "SELECT winner FROM table_name_67 WHERE course = \"rest day\"", "question": "Who was the winner at Rest Day course?", "context": "CREATE TABLE table_name_67 (winner VARCHAR, course VARCHAR)"}, {"answer": "SELECT type FROM table_name_39 WHERE course = \"sestri levante to riomaggiore\"", "question": "What's the type on Sestri Levante to Riomaggiore?", "context": "CREATE TABLE table_name_39 (type VARCHAR, course VARCHAR)"}, {"answer": "SELECT player FROM table_name_49 WHERE events = 12", "question": "Which player competed in 12 events?", "context": "CREATE TABLE table_name_49 (player VARCHAR, events VARCHAR)"}, {"answer": "SELECT MAX(finishes) FROM table_name_48 WHERE points < 337 AND stage_wins = 2 AND wins > 0", "question": "what is the highest finishes when the points is less than 337, the stage wins is 2 and the wins is more than 0?", "context": "CREATE TABLE table_name_48 (finishes INTEGER, wins VARCHAR, points VARCHAR, stage_wins VARCHAR)"}, {"answer": "SELECT AVG(starts) FROM table_name_94 WHERE chassis = \"focus rs wrc 08\" AND finishes > 27", "question": "what is the average starts when the chassis is focus rs wrc 08 and finishes is more than 27?", "context": "CREATE TABLE table_name_94 (starts INTEGER, chassis VARCHAR, finishes VARCHAR)"}, {"answer": "SELECT SUM(finishes) FROM table_name_90 WHERE points > 337 AND starts > 26", "question": "what is the finishes when points is more than 337 and starts is more than 26?", "context": "CREATE TABLE table_name_90 (finishes INTEGER, points VARCHAR, starts VARCHAR)"}, {"answer": "SELECT AVG(starts) FROM table_name_35 WHERE podiums > 0 AND stage_wins > 39 AND points > 456", "question": "what is the average starts when the podiums is more than 0, stage wins is more than 39 and points is more than 456?", "context": "CREATE TABLE table_name_35 (starts INTEGER, points VARCHAR, podiums VARCHAR, stage_wins VARCHAR)"}, {"answer": "SELECT school FROM table_name_35 WHERE mascot = \"squires\"", "question": "Which School has a Mascot of squires?", "context": "CREATE TABLE table_name_35 (school VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT school FROM table_name_43 WHERE _number___county = \"85 wabash\" AND ihsaa_football_class = \"a\" AND mascot = \"norsemen\"", "question": "Which School has a #/ County of 85 wabash, and an IHSAA Football Class of A, and a Mascot of norsemen?", "context": "CREATE TABLE table_name_43 (school VARCHAR, mascot VARCHAR, _number___county VARCHAR, ihsaa_football_class VARCHAR)"}, {"answer": "SELECT ihsaa_football_class FROM table_name_99 WHERE school = \"whitko\"", "question": "Which IHSAA Football Class has a School of whitko?", "context": "CREATE TABLE table_name_99 (ihsaa_football_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT ihsaa_football_class FROM table_name_50 WHERE location = \"wabash\" AND school = \"wabash\"", "question": "Which IHSAA Football Class has a Location of wabash, and a School of wabash?", "context": "CREATE TABLE table_name_50 (ihsaa_football_class VARCHAR, location VARCHAR, school VARCHAR)"}, {"answer": "SELECT AVG(to_par) FROM table_name_88 WHERE player = \"davis love iii\" AND total > 149", "question": "With a Total of more than 149, what is Davis Love III's To par?", "context": "CREATE TABLE table_name_88 (to_par INTEGER, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_87 WHERE year_won > 1993 AND to_par = 6", "question": "What is the Total of the Player with a To par of 6 and Year won after 1993?", "context": "CREATE TABLE table_name_87 (total INTEGER, year_won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT COUNT(year_won) FROM table_name_93 WHERE player = \"davis love iii\" AND total < 149", "question": "What is the Year won of Davis Love III with a Total of less than 149?", "context": "CREATE TABLE table_name_93 (year_won VARCHAR, player VARCHAR, total VARCHAR)"}, {"answer": "SELECT genre FROM table_name_14 WHERE game = \"mass effect\"", "question": "What is the genre of the Mass Effect game?", "context": "CREATE TABLE table_name_14 (genre VARCHAR, game VARCHAR)"}, {"answer": "SELECT genre FROM table_name_72 WHERE year = \"2006\"", "question": "What is the genre of the game from 2006?", "context": "CREATE TABLE table_name_72 (genre VARCHAR, year VARCHAR)"}, {"answer": "SELECT genre FROM table_name_85 WHERE developer_s_ = \"nintendo ead\"", "question": "What is the genre of the game developed by Nintendo EAD?", "context": "CREATE TABLE table_name_85 (genre VARCHAR, developer_s_ VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_53 WHERE year = \"2006\"", "question": "What is the platform of the game built in 2006?", "context": "CREATE TABLE table_name_53 (platform_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT game FROM table_name_53 WHERE developer_s_ = \"ubisoft montreal\"", "question": "What game was developed by Ubisoft Montreal?", "context": "CREATE TABLE table_name_53 (game VARCHAR, developer_s_ VARCHAR)"}, {"answer": "SELECT genre FROM table_name_32 WHERE game = \"portal 2\"", "question": "What is the genre for Portal 2?", "context": "CREATE TABLE table_name_32 (genre VARCHAR, game VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_88 WHERE game = \"portal 2\"", "question": "Which platforms can you play Portal 2 on?", "context": "CREATE TABLE table_name_88 (platform_s_ VARCHAR, game VARCHAR)"}, {"answer": "SELECT meet FROM table_name_4 WHERE event = \"1500m freestyle\"", "question": "What event had the 1500m freestyle?", "context": "CREATE TABLE table_name_4 (meet VARCHAR, event VARCHAR)"}, {"answer": "SELECT name FROM table_name_92 WHERE country = \"italy\" AND giro_wins = 0 AND young_rider = 0 AND maglia_rosa < 3", "question": "Who is from italy has 0 giro wins, 0 young rider and less than 3 maglia rosa?", "context": "CREATE TABLE table_name_92 (name VARCHAR, maglia_rosa VARCHAR, young_rider VARCHAR, country VARCHAR, giro_wins VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_18 WHERE nation = \"united kingdom\" AND silver < 0", "question": "How many bronze medals for the United Kingdom when the silver was less than 0?", "context": "CREATE TABLE table_name_18 (bronze INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_65 WHERE total > 2 AND nation = \"west germany\"", "question": "How many bronze medals for West Germany having a total more than 2?", "context": "CREATE TABLE table_name_65 (bronze VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_21 WHERE rank = \"11\" AND gold < 0", "question": "What is the amount of silver for rank 11 having less than 0 gold?", "context": "CREATE TABLE table_name_21 (silver INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT rank FROM table_name_44 WHERE silver < 3 AND bronze > 1 AND nation = \"bulgaria\"", "question": "What rank is Bulgaria with less than 3 silver and more than 1 bronze?", "context": "CREATE TABLE table_name_44 (rank VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_60 WHERE stage = \"17\"", "question": "What is the mountains classification when stage is 17?", "context": "CREATE TABLE table_name_60 (mountains_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_name_45 WHERE points_classification = \"robbie mcewen\" AND mountains_classification = \"jos\u00e9 rujano\"", "question": "Who was the winner when points classification is Robbie Mcewen, and a Mountains classification is Jos\u00e9 Rujano?", "context": "CREATE TABLE table_name_45 (winner VARCHAR, points_classification VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT trofeo_fast_team FROM table_name_34 WHERE stage = \"19\"", "question": "What is the Trofeo Fast Team when stage is 19?", "context": "CREATE TABLE table_name_34 (trofeo_fast_team VARCHAR, stage VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_19 WHERE intergiro_classification = \"sven krau\u00df\" AND mountains_classification = \"koldo gil\" AND trofeo_super_team = \"liquigas-bianchi\" AND stage = \"9\"", "question": "What is the points classification when the Intergiro classification is Sven Krau\u00df, and the mountains classification is koldo gil, Trofeo Super Team is Liquigas-Bianchi, and stage is 9?", "context": "CREATE TABLE table_name_19 (points_classification VARCHAR, stage VARCHAR, trofeo_super_team VARCHAR, intergiro_classification VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT intergiro_classification FROM table_name_16 WHERE points_classification = \"paolo bettini\" AND trofeo_super_team = \"davitamon-lotto\" AND mountains_classification = \"jos\u00e9 rujano\"", "question": "What is the Intergiro classification when the points classification is Paolo Bettini, Trofeo Super Team is Davitamon-Lotto, and the Mountains classification is Jos\u00e9 Rujano?", "context": "CREATE TABLE table_name_16 (intergiro_classification VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR, trofeo_super_team VARCHAR)"}, {"answer": "SELECT stage FROM table_name_67 WHERE points_classification = \"danilo di luca\" AND mountains_classification = \"jos\u00e9 rujano\" AND general_classification = \"danilo di luca\"", "question": "What is the Stage when the points classification is Danilo Di Luca, Mountains classification is Jos\u00e9 Rujano, and general classification is Danilo Di Luca?", "context": "CREATE TABLE table_name_67 (stage VARCHAR, general_classification VARCHAR, points_classification VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT AVG(geo_id) FROM table_name_4 WHERE latitude < 46.57958 AND longitude = -102.109898 AND land___sqmi__ > 35.99", "question": "What is the average GEO ID with a latitude less than 46.57958, a latitude of -102.109898 and more than 35.99 square miles of land?", "context": "CREATE TABLE table_name_4 (geo_id INTEGER, land___sqmi__ VARCHAR, latitude VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT geo_id FROM table_name_83 WHERE longitude = -102.693028", "question": "What GEO ID has a longitude of -102.693028?", "context": "CREATE TABLE table_name_83 (geo_id VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT MAX(latitude) FROM table_name_69 WHERE water__sqmi_ > 0.518 AND longitude < -99.830606 AND pop__2010_ = 18", "question": "What is the highest latitude when there are more than 0.518 square miles of water, a longitude less than -99.830606, and a population of 18?", "context": "CREATE TABLE table_name_69 (latitude INTEGER, pop__2010_ VARCHAR, water__sqmi_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_30 WHERE nationality = \"australia\"", "question": "What is the average lane for Australia?", "context": "CREATE TABLE table_name_30 (lane INTEGER, nationality VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_54 WHERE name = \"josefin lillhage\"", "question": "What is the highest rank for Josefin Lillhage?", "context": "CREATE TABLE table_name_54 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_97 WHERE final = \"quarter (1)\"", "question": "What was the attendance for the final quarter (1)?", "context": "CREATE TABLE table_name_97 (attendance VARCHAR, final VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_21 WHERE score = \"1 - 1 dodd 38'\"", "question": "What stadium had the score 1 - 1 dodd 38'?", "context": "CREATE TABLE table_name_21 (stadium VARCHAR, score VARCHAR)"}, {"answer": "SELECT method FROM table_name_78 WHERE event = \"pride 17\"", "question": "What method was used in the Pride 17 event?", "context": "CREATE TABLE table_name_78 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT rank FROM table_name_57 WHERE highest_floor > 50", "question": "What is the Rank of the building that has a Highest floor larger than 50?", "context": "CREATE TABLE table_name_57 (rank VARCHAR, highest_floor INTEGER)"}, {"answer": "SELECT MAX(free) FROM table_name_87 WHERE total = 81.167 AND rank > 23", "question": "what is the most free when the total is 81.167 and the rank is higher than 23?", "context": "CREATE TABLE table_name_87 (free INTEGER, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(tracks) FROM table_name_7 WHERE unformatted_capacity_per_side = \"2000kb\"", "question": "How many tracks have an unformatted capacity per side of 2000kb?", "context": "CREATE TABLE table_name_7 (tracks VARCHAR, unformatted_capacity_per_side VARCHAR)"}, {"answer": "SELECT unformatted_capacity_per_side FROM table_name_42 WHERE size = \"8in\"", "question": "What is the unformatted capacity per side if the size is 8in?", "context": "CREATE TABLE table_name_42 (unformatted_capacity_per_side VARCHAR, size VARCHAR)"}, {"answer": "SELECT COUNT(tracks) FROM table_name_93 WHERE density = \"single\"", "question": "How many tracks have a single density?", "context": "CREATE TABLE table_name_93 (tracks VARCHAR, density VARCHAR)"}, {"answer": "SELECT elevated FROM table_name_77 WHERE cardinalatial_title = \"priest of ss. xii apostoli\"", "question": "What's listed for Elevatated that has Cardinalatial title of Priest of SS. XII Apostoli?", "context": "CREATE TABLE table_name_77 (elevated VARCHAR, cardinalatial_title VARCHAR)"}, {"answer": "SELECT elector FROM table_name_33 WHERE place_of_birth = \"san severino\"", "question": "What Elector has the Place of birth of San Severino?", "context": "CREATE TABLE table_name_33 (elector VARCHAR, place_of_birth VARCHAR)"}, {"answer": "SELECT cardinalatial_title FROM table_name_40 WHERE elevated = \"december 18, 1182\" AND place_of_birth = \"lucca\" AND elector = \"pandolfo\"", "question": "What's the Cardinalatial Title has the Elevated of December 18, 1182, the Place of birth of Lucca, and the Electo rof Pandolfo?", "context": "CREATE TABLE table_name_40 (cardinalatial_title VARCHAR, elector VARCHAR, elevated VARCHAR, place_of_birth VARCHAR)"}, {"answer": "SELECT elevated FROM table_name_25 WHERE cardinalatial_title = \"priest of s. eusebio and archbishop of benevento\"", "question": "What's listed for the Elevated with a Cardinalatial title of Priest of S. Eusebio and Archbishop of Benevento?", "context": "CREATE TABLE table_name_25 (elevated VARCHAR, cardinalatial_title VARCHAR)"}, {"answer": "SELECT elector FROM table_name_4 WHERE place_of_birth = \"bavaria\"", "question": "What Elector has the Place of Birth listed as Bavaria?", "context": "CREATE TABLE table_name_4 (elector VARCHAR, place_of_birth VARCHAR)"}, {"answer": "SELECT total_apps FROM table_name_16 WHERE league_apps = \"41\" AND total_goals > 1", "question": "What are the total apps that have 41 as the League apps, with total goals greater than 1?", "context": "CREATE TABLE table_name_16 (total_apps VARCHAR, league_apps VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT AVG(league_goals) FROM table_name_18 WHERE total_apps = \"2 (1)\"", "question": "What are the average league goals that have 2 (1) as the total apps?", "context": "CREATE TABLE table_name_18 (league_goals INTEGER, total_apps VARCHAR)"}, {"answer": "SELECT MAX(league_goals) FROM table_name_46 WHERE name = \"barry endean\" AND fa_cup_apps > 0", "question": "What is the highest league goals that have barry endean as the name, wirh FA cup apps greater than 0?", "context": "CREATE TABLE table_name_46 (league_goals INTEGER, name VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT school FROM table_name_81 WHERE team_name = \"panthers\" AND year_left = \"1968\"", "question": "Which school left in 1968 and has the team name of Panthers?", "context": "CREATE TABLE table_name_81 (school VARCHAR, team_name VARCHAR, year_left VARCHAR)"}, {"answer": "SELECT year_left FROM table_name_89 WHERE school = \"north dearborn\"", "question": "What year did a team from North Dearborn leave?", "context": "CREATE TABLE table_name_89 (year_left VARCHAR, school VARCHAR)"}, {"answer": "SELECT city FROM table_name_48 WHERE county = \"40 jennings\" AND school = \"north vernon\"", "question": "Which city has a school of North Vernon and a county of 40 Jennings?", "context": "CREATE TABLE table_name_48 (city VARCHAR, county VARCHAR, school VARCHAR)"}, {"answer": "SELECT year_joined FROM table_name_5 WHERE school = \"jennings county\"", "question": "What year did a school from Jennings County join?", "context": "CREATE TABLE table_name_5 (year_joined VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_24 WHERE team_name = \"red devils\"", "question": "Which school are the Red Devils from?", "context": "CREATE TABLE table_name_24 (school VARCHAR, team_name VARCHAR)"}, {"answer": "SELECT school FROM table_name_57 WHERE city = \"brookville\"", "question": "Which school comes from Brookville?", "context": "CREATE TABLE table_name_57 (school VARCHAR, city VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_70 WHERE lane = 3", "question": "What's the lowest rank of Lane 3?", "context": "CREATE TABLE table_name_70 (rank INTEGER, lane VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_62 WHERE time < 24.72 AND rank = 4", "question": "What's the highest lane of rank 4 with a time less than 24.72?", "context": "CREATE TABLE table_name_62 (lane INTEGER, time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(time) FROM table_name_50 WHERE lane < 4 AND name = \"britta steffen\"", "question": "What's the time of Britta Steffen in a lane less than 4?", "context": "CREATE TABLE table_name_50 (time INTEGER, lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_74 WHERE nationality = \"united states\" AND time < 24.63", "question": "What's the lowest rank of the United States with a time less than 24.63?", "context": "CREATE TABLE table_name_74 (rank INTEGER, nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT duration FROM table_name_98 WHERE soap_opera = \"the archers\" AND actor = \"norman painting\"", "question": "What's the duration of the Archers with Norman Painting as an actor?", "context": "CREATE TABLE table_name_98 (duration VARCHAR, soap_opera VARCHAR, actor VARCHAR)"}, {"answer": "SELECT duration FROM table_name_45 WHERE soap_opera = \"the archers\" AND actor = \"pauline seville\"", "question": "What's the duration of the Archers with Pauline Seville acting?", "context": "CREATE TABLE table_name_45 (duration VARCHAR, soap_opera VARCHAR, actor VARCHAR)"}, {"answer": "SELECT actor FROM table_name_14 WHERE soap_opera = \"the archers\" AND character = \"martha woodford\"", "question": "Who's the actor for the Archers having a character of Martha Woodford?", "context": "CREATE TABLE table_name_14 (actor VARCHAR, soap_opera VARCHAR, character VARCHAR)"}, {"answer": "SELECT character FROM table_name_34 WHERE actor = \"margot boyd\"", "question": "Who's the character when Margot Boyd was acting?", "context": "CREATE TABLE table_name_34 (character VARCHAR, actor VARCHAR)"}, {"answer": "SELECT notes FROM table_name_56 WHERE time = \"6:34.51\"", "question": "What were the notes for the time of 6:34.51?", "context": "CREATE TABLE table_name_56 (notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT rank FROM table_name_51 WHERE time = \"6:24.35\"", "question": "What is the rank for the rowers with the time of 6:24.35?", "context": "CREATE TABLE table_name_51 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_14 WHERE notes = \"r\" AND country = \"portugal\"", "question": "Which rowers represented portugal and had notes of r?", "context": "CREATE TABLE table_name_14 (rowers VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_4 WHERE country = \"portugal\"", "question": "Which rowers represented the country of portugal?", "context": "CREATE TABLE table_name_4 (rowers VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(races) FROM table_name_61 WHERE points = \"9\" AND poles < 0", "question": "what is the average races when points is 9 and poles is less than 0?", "context": "CREATE TABLE table_name_61 (races INTEGER, points VARCHAR, poles VARCHAR)"}, {"answer": "SELECT series FROM table_name_7 WHERE wins < 3 AND points = \"9\" AND podiums = 1", "question": "what is the series when wins is less than 3, points is 9 and podiums is 1?", "context": "CREATE TABLE table_name_7 (series VARCHAR, podiums VARCHAR, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_48 WHERE races > 14 AND position = \"9th\" AND wins < 0", "question": "how many times is races more than 14, position is 9th and wins less than 0?", "context": "CREATE TABLE table_name_48 (season VARCHAR, wins VARCHAR, races VARCHAR, position VARCHAR)"}, {"answer": "SELECT runner_up_skip FROM table_name_51 WHERE event = \"mac ice classic\"", "question": "Who was the runner-up during the Mac Ice Classic?", "context": "CREATE TABLE table_name_51 (runner_up_skip VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE runner_up_skip = \"stu harris\"", "question": "What's the date when Stu Harris was the Runner-up?", "context": "CREATE TABLE table_name_58 (date VARCHAR, runner_up_skip VARCHAR)"}, {"answer": "SELECT location FROM table_name_33 WHERE event = \"ramada perth masters\"", "question": "What's the location of the Ramada Perth Masters event?", "context": "CREATE TABLE table_name_33 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_49 WHERE winning_skip = \"kevin martin\" AND event = \"the national\"", "question": "What's the location of the National event with Kevin Martin winning?", "context": "CREATE TABLE table_name_49 (location VARCHAR, winning_skip VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_91 WHERE runner_up_skip = \"randy ferbey\" AND location = \"gander, newfoundland and labrador\"", "question": "What's the event that happened in Gander, Newfoundland and Labrador with Randy Ferbey runner-up?", "context": "CREATE TABLE table_name_91 (event VARCHAR, runner_up_skip VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_97 WHERE event = \"the national\"", "question": "What's the location of the National event?", "context": "CREATE TABLE table_name_97 (location VARCHAR, event VARCHAR)"}, {"answer": "SELECT arena FROM table_name_13 WHERE date = \"october 10\"", "question": "Which Arena has a Date of october 10?", "context": "CREATE TABLE table_name_13 (arena VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_13 WHERE score = \"4\u20133\" AND points < 5", "question": "Which Attendance has a Score of 4\u20133, and Points smaller than 5?", "context": "CREATE TABLE table_name_13 (attendance INTEGER, score VARCHAR, points VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_20 WHERE arena = \"arrowhead pond of anaheim\" AND points < 5", "question": "Which Attendance has an Arena of arrowhead pond of anaheim, and Points smaller than 5?", "context": "CREATE TABLE table_name_20 (attendance VARCHAR, arena VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_30 WHERE arena = \"arrowhead pond of anaheim\" AND points = 5", "question": "How much Attendance has an Arena of arrowhead pond of anaheim, and Points of 5?", "context": "CREATE TABLE table_name_30 (attendance INTEGER, arena VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(1969) FROM table_name_18 WHERE 1967 < 0.73 AND 1964 > 0.07", "question": "How much 1969 has a 1967 smaller than 0.73, and a 1964 larger than 0.07?", "context": "CREATE TABLE table_name_18 (Id VARCHAR)"}, {"answer": "SELECT MIN(1964) FROM table_name_85 WHERE country = \"united states\" AND 1969 < 7.3", "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(1965) FROM table_name_38 WHERE 1962 = 0.35000000000000003 AND 1967 < 0.53", "question": "Which 1965 has a 1962 of 0.35000000000000003, and a 1967 smaller than 0.53?", "context": "CREATE TABLE table_name_38 (Id VARCHAR)"}, {"answer": "SELECT cross_code_debut FROM table_name_68 WHERE player = \"bev risman\"", "question": "What is Bev Risman's Cross Code Debut?", "context": "CREATE TABLE table_name_68 (cross_code_debut VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_25 WHERE cross_code_debut = \"rl test gb v france\"", "question": "What is the Player with a Cross Code Debut of RL Test GB v France?", "context": "CREATE TABLE table_name_25 (player VARCHAR, cross_code_debut VARCHAR)"}, {"answer": "SELECT year FROM table_name_73 WHERE cross_code_debut = \"rl test v wales\" AND player = \"keith smith\"", "question": "In what Year is Keith Smith's Cross Code Debut RL Test v Wales?", "context": "CREATE TABLE table_name_73 (year VARCHAR, cross_code_debut VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE year = \"1967\"", "question": "What is the Date of the Int'l Debut of 1967?", "context": "CREATE TABLE table_name_66 (date VARCHAR, year VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE year = \"1974\"", "question": "What is the Player in the Int'l Debut of 1974?", "context": "CREATE TABLE table_name_41 (player VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_73 WHERE time = \"24.83\" AND heat < 11", "question": "What lane has a time of 24.83 and a heat less than 11?", "context": "CREATE TABLE table_name_73 (lane INTEGER, time VARCHAR, heat VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_94 WHERE name = \"chinyere pigot\"", "question": "What is the total number of heat for Chinyere Pigot?", "context": "CREATE TABLE table_name_94 (heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_69 WHERE lane = 1 AND nationality = \"mauritius\"", "question": "What is the name for lane 1, from Mauritius?", "context": "CREATE TABLE table_name_69 (name VARCHAR, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT player FROM table_name_21 WHERE total < 287 AND year_s__won = \"1988\"", "question": "Who won in 1988 with a total less than 287?", "context": "CREATE TABLE table_name_21 (player VARCHAR, total VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT country FROM table_name_21 WHERE player = \"larry mize\"", "question": "What country is Larry Mize from?", "context": "CREATE TABLE table_name_21 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_87 WHERE total < 1", "question": "What is the lowest number of bronze medals for a nation with fewer than 1 total medal?", "context": "CREATE TABLE table_name_87 (bronze INTEGER, total INTEGER)"}, {"answer": "SELECT team FROM table_name_26 WHERE rider = \"frank hulbert\"", "question": "What team is Frank Hulbert on?", "context": "CREATE TABLE table_name_26 (team VARCHAR, rider VARCHAR)"}, {"answer": "SELECT rank FROM table_name_95 WHERE rider = \"martin geiger\"", "question": "What was Martin Geiger's rank?", "context": "CREATE TABLE table_name_95 (rank VARCHAR, rider VARCHAR)"}, {"answer": "SELECT rank FROM table_name_86 WHERE rider = \"tom silver\"", "question": "What was Tom Silver's rank?", "context": "CREATE TABLE table_name_86 (rank VARCHAR, rider VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE debut = \"age 18 v plymouth , 14 august 2012\" AND born = \"portsmouth\"", "question": "Who was the player with a debut of age 18 v plymouth , 14 august 2012, and born in Portsmouth?", "context": "CREATE TABLE table_name_97 (player VARCHAR, debut VARCHAR, born VARCHAR)"}, {"answer": "SELECT born FROM table_name_63 WHERE current_club = \"elfsborg\"", "question": "Where was the player whose Current Club Elfsborg born?", "context": "CREATE TABLE table_name_63 (born VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT debut FROM table_name_82 WHERE born = \"poole\"", "question": "What is the debut for the person born in Poole?", "context": "CREATE TABLE table_name_82 (debut VARCHAR, born VARCHAR)"}, {"answer": "SELECT current_club FROM table_name_9 WHERE player = \"sam magri\"", "question": "What is the club for Sam Magri?", "context": "CREATE TABLE table_name_9 (current_club VARCHAR, player VARCHAR)"}, {"answer": "SELECT manager FROM table_name_54 WHERE current_club = \"atl\u00e9tico baleares\"", "question": "What is the name of the manager of the Atl\u00e9tico Baleares?", "context": "CREATE TABLE table_name_54 (manager VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT best_blocker FROM table_name_94 WHERE league_champion = \"queens of pain\" AND cantsleep_award = \"chassis crass (brooklyn)\"", "question": "Who was the best blocker for the year that has a League Champion of queens of pain, and a C.A.N.T.S.L.E.E.P. Award of chassis crass (brooklyn)?", "context": "CREATE TABLE table_name_94 (best_blocker VARCHAR, league_champion VARCHAR, cantsleep_award VARCHAR)"}, {"answer": "SELECT arena FROM table_name_2 WHERE points > 28 AND date = \"december 14\"", "question": "Which Arena has Points larger than 28, and a Date of december 14?", "context": "CREATE TABLE table_name_2 (arena VARCHAR, points VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_39 WHERE arena = \"bell centre\"", "question": "How many Points have an Arena of bell centre?", "context": "CREATE TABLE table_name_39 (points VARCHAR, arena VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_86 WHERE loss = \"divis (0\u20133\u20130)\" AND points < 38", "question": "How much Attendance has a Loss of divis (0\u20133\u20130), and Points smaller than 38?", "context": "CREATE TABLE table_name_86 (attendance INTEGER, loss VARCHAR, points VARCHAR)"}, {"answer": "SELECT 2 AS nd_run FROM table_name_69 WHERE rank < 6 AND total = 3", "question": "What 2nd run has a less than 6 rank, and 3 as the total?", "context": "CREATE TABLE table_name_69 (rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_55 WHERE game = \"call of duty 4: modern warfare\"", "question": "What is the sum number of year when Call of Duty 4: Modern Warfare was the game?", "context": "CREATE TABLE table_name_55 (year VARCHAR, game VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_35 WHERE genre = \"action\"", "question": "What is the earliest year when action was the genre?", "context": "CREATE TABLE table_name_35 (year INTEGER, genre VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_38 WHERE developer_s_ = \"ubisoft montreal\"", "question": "What is the smallest year when Ubisoft Montreal was the developer (s)?", "context": "CREATE TABLE table_name_38 (year INTEGER, developer_s_ VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_63 WHERE game = \"call of duty 4: modern warfare\"", "question": "What is the latest year when Call of Duty 4: Modern Warfare was the game?", "context": "CREATE TABLE table_name_63 (year INTEGER, game VARCHAR)"}, {"answer": "SELECT Lieutenant AS governor FROM table_name_21 WHERE left_office = \"january 14, 1929\"", "question": "Who was Lieutenant Governor to the governor that left office on January 14, 1929?", "context": "CREATE TABLE table_name_21 (Lieutenant VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT governor FROM table_name_88 WHERE took_office = \"january 8, 1877\"", "question": "Which governor took office on January 8, 1877?", "context": "CREATE TABLE table_name_88 (governor VARCHAR, took_office VARCHAR)"}, {"answer": "SELECT Lieutenant AS governor FROM table_name_90 WHERE left_office = \"october 16, 2000\"", "question": "Who was lieutenant governor to the governor that left office on October 16, 2000?", "context": "CREATE TABLE table_name_90 (Lieutenant VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT terms FROM table_name_46 WHERE left_office = \"august 4, 1825\"", "question": "How many terms did the governor that left office on August 4, 1825 serve?", "context": "CREATE TABLE table_name_46 (terms VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_84 WHERE school = \"shakamak\"", "question": "Which IHSAA Class has a School of shakamak?", "context": "CREATE TABLE table_name_84 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT county FROM table_name_32 WHERE school = \"bloomfield\"", "question": "Which County has a School of bloomfield?", "context": "CREATE TABLE table_name_32 (county VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_56 WHERE school = \"shakamak\"", "question": "How much Enrollment has a School of shakamak?", "context": "CREATE TABLE table_name_56 (enrollment VARCHAR, school VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_10 WHERE mascot = \"bulldogs\"", "question": "Which IHSAA Class has a Mascot of bulldogs?", "context": "CREATE TABLE table_name_10 (ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT 1996 FROM table_name_53 WHERE 1986 = \"1r\"", "question": "What's the 1996 if 1986 has a 1R?", "context": "CREATE TABLE table_name_53 (Id VARCHAR)"}, {"answer": "SELECT 1986 FROM table_name_51 WHERE 1991 = \"qf\" AND 1998 = \"3r\"", "question": "What's the 1986 if 1991 has a QF and 1998 has a 3R?", "context": "CREATE TABLE table_name_51 (Id VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_99 WHERE 1999 = \"1r\" AND 1995 = \"3r\" AND 1993 = \"1r\"", "question": "What's the 1997 if 1993 has a 1R, 1995 has a 3R, and 1999 has a 1R?", "context": "CREATE TABLE table_name_99 (Id VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_84 WHERE 1995 = \"1r\"", "question": "What's the 1994 if 1995 has a 1R?", "context": "CREATE TABLE table_name_84 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_6 WHERE 1992 = \"a\"", "question": "What's the tournament when 1992 is A?", "context": "CREATE TABLE table_name_6 (tournament VARCHAR)"}, {"answer": "SELECT 1997 FROM table_name_72 WHERE 1999 = \"1r\" AND 1992 = \"qf\" AND 1995 = \"1r\"", "question": "What's the 1997 when 1992 is QF, 1995 is 1R, and 1999 is 1R?", "context": "CREATE TABLE table_name_72 (Id VARCHAR)"}, {"answer": "SELECT MAX(league_cup_apps) FROM table_name_74 WHERE league_cup_goals = 0 AND name = \"jimmy lawson\"", "question": "What's the most league cup apps for Jimmy Lawson having 0 league cup goals?", "context": "CREATE TABLE table_name_74 (league_cup_apps INTEGER, league_cup_goals VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(total_goals) FROM table_name_91 WHERE fa_cup_goals = 0 AND name = \"alan sweeney\" AND league_cup_apps < 0", "question": "What's the total goals for Alan Sweeney having 0 FA Cup goals and fewer than 0 League Cup apps?", "context": "CREATE TABLE table_name_91 (total_goals INTEGER, league_cup_apps VARCHAR, fa_cup_goals VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(league_cup_apps) FROM table_name_15 WHERE league_goals < 0", "question": "What's the total number of league cup apps when the league goals were less than 0?", "context": "CREATE TABLE table_name_15 (league_cup_apps VARCHAR, league_goals INTEGER)"}, {"answer": "SELECT location FROM table_name_15 WHERE date = \"september 3\"", "question": "Where was the September 3 game?", "context": "CREATE TABLE table_name_15 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_2 WHERE date = \"september 12\"", "question": "Which game was on September 12?", "context": "CREATE TABLE table_name_2 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT rank FROM table_name_4 WHERE county = \"cork\"", "question": "What is cork's rank?", "context": "CREATE TABLE table_name_4 (rank VARCHAR, county VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_27 WHERE county = \"cork\" AND rank > 2", "question": "How many totals does cork have whose rank is larger than 2?", "context": "CREATE TABLE table_name_27 (total INTEGER, county VARCHAR, rank VARCHAR)"}, {"answer": "SELECT matches FROM table_name_7 WHERE tally = \"1-38\"", "question": "Which Matches have a Tally of 1-38?", "context": "CREATE TABLE table_name_7 (matches VARCHAR, tally VARCHAR)"}, {"answer": "SELECT silver FROM table_name_7 WHERE bronze > 0 AND total < 54 AND nation = \"spain\"", "question": "How many silver medals did spain have when they had more than 0 bronze medals and less than 54 total medals?", "context": "CREATE TABLE table_name_7 (silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_78 WHERE silver < 0", "question": "What was the highest number of gold medals when there were 0 silver medals?", "context": "CREATE TABLE table_name_78 (gold INTEGER, silver INTEGER)"}, {"answer": "SELECT COUNT(rank) FROM table_name_4 WHERE notes = \"r\" AND country = \"brazil\"", "question": "What's Brazil's rank when it has notes of R?", "context": "CREATE TABLE table_name_4 (rank VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT peak_position FROM table_name_21 WHERE date = \"10 june 1998\"", "question": "Which Peak Position has a Date of 10 june 1998?", "context": "CREATE TABLE table_name_21 (peak_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_name_85 WHERE date = \"june 3, 2000\"", "question": "What Report is on June 3, 2000?", "context": "CREATE TABLE table_name_85 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT report FROM table_name_18 WHERE date = \"november 15, 2000\"", "question": "What is the Report on November 15, 2000?", "context": "CREATE TABLE table_name_18 (report VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_45 WHERE date = \"october 7, 2000\"", "question": "What is the Score on October 7, 2000?", "context": "CREATE TABLE table_name_45 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT santo_domingo_, _dominican FROM table_name_79 WHERE world_record = \"clean & jerk\"", "question": "What is the figure for Santo Domingo, Dominican for the world record in the clean & jerk?", "context": "CREATE TABLE table_name_79 (santo_domingo_ VARCHAR, _dominican VARCHAR, world_record VARCHAR)"}, {"answer": "SELECT AVG(fips_code) FROM table_name_70 WHERE area = \"114.76 sq mi (297.23 sq km)\" AND population__2010_ < 166 OFFSET 327", "question": "What is the FIPS code for the municipality that has an area of 114.76 sq mi (297.23 sq km) and had a 2010 population of less than 166,327?", "context": "CREATE TABLE table_name_70 (fips_code INTEGER, area VARCHAR, population__2010_ VARCHAR)"}, {"answer": "SELECT AVG(founded) FROM table_name_9 WHERE municipality = \"yauco\" AND population__2010_ > 42 OFFSET 043", "question": "In what year was Yauco, which had over 42,043 people in 2010, founded?", "context": "CREATE TABLE table_name_9 (founded INTEGER, municipality VARCHAR, population__2010_ VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_67 WHERE result = \"l 38-20\" AND week < 9", "question": "What is the attendance for a week smaller than 9 with a result of L 38-20?", "context": "CREATE TABLE table_name_67 (attendance INTEGER, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT school FROM table_name_67 WHERE ihsaa_class = \"a\" AND enrollment_08_09 = 244", "question": "Can you tell me the School that has the IHSAA Class of a, and the Enrollment 08-09 off 244?", "context": "CREATE TABLE table_name_67 (school VARCHAR, ihsaa_class VARCHAR, enrollment_08_09 VARCHAR)"}, {"answer": "SELECT county FROM table_name_17 WHERE location = \"shelbyville\"", "question": "Can you tell me the County that has the Location of shelbyville?", "context": "CREATE TABLE table_name_17 (county VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(deaths) FROM table_name_1 WHERE fate = \"damaged\" AND tonnage___grt__ < 4 OFFSET 917", "question": "How many Deaths have a Fate of damaged, and a Tonnage (GRT) smaller than 4,917?", "context": "CREATE TABLE table_name_1 (deaths VARCHAR, fate VARCHAR, tonnage___grt__ VARCHAR)"}, {"answer": "SELECT tonnage___grt__ FROM table_name_11 WHERE fate = \"sunk\" AND deaths < 17 AND date = \"16 november 1940\"", "question": "Which Tonnage has a Fate of sunk, and Deaths smaller than 17, and a Date of 16 november 1940?", "context": "CREATE TABLE table_name_11 (tonnage___grt__ VARCHAR, date VARCHAR, fate VARCHAR, deaths VARCHAR)"}, {"answer": "SELECT SUM(tonnage___grt__) FROM table_name_83 WHERE fate = \"sunk\" AND flag = \"great britain\" AND date = \"26 september 1940\" AND deaths = 2", "question": "How much tonnage has a Fate of sunk, and a Flag of great britain, and a Date of 26 september 1940, and Deaths of 2?", "context": "CREATE TABLE table_name_83 (tonnage___grt__ INTEGER, deaths VARCHAR, date VARCHAR, fate VARCHAR, flag VARCHAR)"}, {"answer": "SELECT MIN(tonnage___grt__) FROM table_name_84 WHERE date = \"26 september 1940\" AND ship_name = \"ashantian\"", "question": "Which tonnage has a Date of 26 september 1940, and a Ship Name of ashantian?", "context": "CREATE TABLE table_name_84 (tonnage___grt__ INTEGER, date VARCHAR, ship_name VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_85 WHERE country = \"brazil\" AND rank < 8", "question": "What is the highest lane for Brazil, ranked less than 8?", "context": "CREATE TABLE table_name_85 (lane INTEGER, country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(total_population) FROM table_name_12 WHERE male < 789", "question": "What is the total population with less than 789 males?", "context": "CREATE TABLE table_name_12 (total_population VARCHAR, male INTEGER)"}, {"answer": "SELECT MIN(female) FROM table_name_66 WHERE district = \"hiroo 1-ch\u014dme\" AND number_of_households > 1 OFFSET 666", "question": "What is the lowest female number of the hiroo 1-ch\u014dme district, which has more than 1,666 households?", "context": "CREATE TABLE table_name_66 (female INTEGER, district VARCHAR, number_of_households VARCHAR)"}, {"answer": "SELECT COUNT(female) FROM table_name_65 WHERE total_population < 2 OFFSET 195", "question": "What is the total number of females where the total population is less than 2,195?", "context": "CREATE TABLE table_name_65 (female VARCHAR, total_population INTEGER)"}, {"answer": "SELECT outcome FROM table_name_13 WHERE partner = \"iryna bremond\"", "question": "What was the outcome when the partner was Iryna Bremond?", "context": "CREATE TABLE table_name_13 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_90 WHERE score = \"6\u20133, 2\u20136, [10\u20138]\"", "question": "What tournament had a Score of 6\u20133, 2\u20136, [10\u20138]?", "context": "CREATE TABLE table_name_90 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT partner FROM table_name_28 WHERE surface = \"clay\" AND outcome = \"runner-up\" AND score = \"4\u20136, 1\u20136\"", "question": "Who was the partner when the surface was clay, and outcome was runner-up, with a score of 4\u20136, 1\u20136?", "context": "CREATE TABLE table_name_28 (partner VARCHAR, score VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT rank FROM table_name_46 WHERE athletes = \"manuel cortina mart\u00ednez\"", "question": "What is the rank of Manuel Cortina Mart\u00ednez?", "context": "CREATE TABLE table_name_46 (rank VARCHAR, athletes VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_23 WHERE time = \"1:40.626\"", "question": "What is the rank if the person with a time of 1:40.626?", "context": "CREATE TABLE table_name_23 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_62 WHERE time = \"1:44.757\"", "question": "What is the rank of the person with a time of 1:44.757?", "context": "CREATE TABLE table_name_62 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_97 WHERE country = \"israel\"", "question": "What is the rank of Israel?", "context": "CREATE TABLE table_name_97 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT athletes FROM table_name_97 WHERE country = \"myanmar\"", "question": "What is the name of the athlete from Myanmar?", "context": "CREATE TABLE table_name_97 (athletes VARCHAR, country VARCHAR)"}, {"answer": "SELECT notes FROM table_name_48 WHERE rank > 2 AND time = \"1:48.179\"", "question": "What are the notes for the person ranked larger than 2, and a time of 1:48.179?", "context": "CREATE TABLE table_name_48 (notes VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(chorley) FROM table_name_99 WHERE preston = 6 AND west_lancashire < 4", "question": "What is the lowest Chorley with a 6 Preston and a 4 for West Lancashire?", "context": "CREATE TABLE table_name_99 (chorley INTEGER, preston VARCHAR, west_lancashire VARCHAR)"}, {"answer": "SELECT AVG(fylde) FROM table_name_57 WHERE burnley < 0", "question": "What is the average rating for a Flyde that has a Burnley less than 0?", "context": "CREATE TABLE table_name_57 (fylde INTEGER, burnley INTEGER)"}, {"answer": "SELECT MAX(west_lancashire) FROM table_name_15 WHERE pendle > 1 AND rossendale > 2", "question": "What is the highest rated West Lancashire with a Pendle greater than 1 and a Rossendale more than 2?", "context": "CREATE TABLE table_name_15 (west_lancashire INTEGER, pendle VARCHAR, rossendale VARCHAR)"}, {"answer": "SELECT AVG(chorley) FROM table_name_96 WHERE rossendale > 0 AND party = \"labour\" AND pendle < 1", "question": "What was the average Chorley for the Labour party that had a Rossendale greater than 0 and a Pendle less than 1?", "context": "CREATE TABLE table_name_96 (chorley INTEGER, pendle VARCHAR, rossendale VARCHAR, party VARCHAR)"}, {"answer": "SELECT season FROM table_name_79 WHERE top_goalscorer = \"sch\u00e4dlich\"", "question": "In what season was Sch\u00e4dlich the top goalscorer?", "context": "CREATE TABLE table_name_79 (season VARCHAR, top_goalscorer VARCHAR)"}, {"answer": "SELECT avgatt FROM table_name_90 WHERE rank = \"5\"", "question": "What is the average attendance when the rank is 5?", "context": "CREATE TABLE table_name_90 (avgatt VARCHAR, rank VARCHAR)"}, {"answer": "SELECT speed FROM table_name_13 WHERE rider = \"chris swallow\"", "question": "What is the Speed for Chris Swallow?", "context": "CREATE TABLE table_name_13 (speed VARCHAR, rider VARCHAR)"}, {"answer": "SELECT speed FROM table_name_36 WHERE rank > 2 AND team = \"500cc norton manx\"", "question": "What is the speed when the rank is larger than 2, and team is 500cc norton manx?", "context": "CREATE TABLE table_name_36 (speed VARCHAR, rank VARCHAR, team VARCHAR)"}, {"answer": "SELECT time FROM table_name_94 WHERE rider = \"alan oversby\"", "question": "What is the time for Alan Oversby?", "context": "CREATE TABLE table_name_94 (time VARCHAR, rider VARCHAR)"}, {"answer": "SELECT speed FROM table_name_28 WHERE rank < 3 AND time = \"1:06.19.90\"", "question": "What is the Speed when the rank is smaller than 3, and time is 1:06.19.90?", "context": "CREATE TABLE table_name_28 (speed VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT team FROM table_name_36 WHERE time = \"1:11.19.89\"", "question": "What is the team when the time is 1:11.19.89?", "context": "CREATE TABLE table_name_36 (team VARCHAR, time VARCHAR)"}, {"answer": "SELECT actor FROM table_name_83 WHERE character = \"helga beimer\"", "question": "Which actor plays the character Helga Beimer?", "context": "CREATE TABLE table_name_83 (actor VARCHAR, character VARCHAR)"}, {"answer": "SELECT character FROM table_name_13 WHERE actor = \"nadine spru\u00df\"", "question": "How long did the soap opera run in which Nadine Spru\u00df acted in?", "context": "CREATE TABLE table_name_13 (character VARCHAR, actor VARCHAR)"}, {"answer": "SELECT duration FROM table_name_2 WHERE character = \"clemens richter\"", "question": "How many years did the soap opera run in which the character Clemens Richter was included?", "context": "CREATE TABLE table_name_2 (duration VARCHAR, character VARCHAR)"}, {"answer": "SELECT years FROM table_name_88 WHERE soap_opera = \"marienhof\" AND duration = \"10 years\" AND actor = \"leonore capell\"", "question": "What years did Marienhof run, which featured Leonore Capell and lasted 10 years?", "context": "CREATE TABLE table_name_88 (years VARCHAR, actor VARCHAR, soap_opera VARCHAR, duration VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE week = 6", "question": "Who was the opponent in week 6?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_86 WHERE opponent = \"carolina panthers\"", "question": "What's the result when the Carolina Panthers were the opponent?", "context": "CREATE TABLE table_name_86 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE result = \"w 41-0\"", "question": "What date had a result of W 41-0?", "context": "CREATE TABLE table_name_29 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_95 WHERE week > 16", "question": "What's the attendance when the week was more than 16?", "context": "CREATE TABLE table_name_95 (attendance VARCHAR, week INTEGER)"}, {"answer": "SELECT year FROM table_name_5 WHERE tournament = \"world half marathon championships\" AND result = \"3rd\"", "question": "What was the year of the World Half Marathon Championships with a result of 3rd?", "context": "CREATE TABLE table_name_5 (year VARCHAR, tournament VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_67 WHERE year = 2001", "question": "What was the result of the tournament in 2001?", "context": "CREATE TABLE table_name_67 (result VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_89 WHERE navigator = \"macneall\"", "question": "What is the average capacity for the vehicle having a navigator of Macneall?", "context": "CREATE TABLE table_name_89 (capacity INTEGER, navigator VARCHAR)"}, {"answer": "SELECT vehicle FROM table_name_8 WHERE class = \"cm14\"", "question": "Which vehicle had a class of CM14?", "context": "CREATE TABLE table_name_8 (vehicle VARCHAR, class VARCHAR)"}, {"answer": "SELECT driver FROM table_name_86 WHERE class = \"cm22\" AND navigator = \"macneall\"", "question": "Who was the driver of the vehicle having class of CM22 and navigator of Macneall?", "context": "CREATE TABLE table_name_86 (driver VARCHAR, class VARCHAR, navigator VARCHAR)"}, {"answer": "SELECT total_time FROM table_name_79 WHERE navigator = \"vandenberg\"", "question": "What is the total time of the vehicle having a navigator of Vandenberg?", "context": "CREATE TABLE table_name_79 (total_time VARCHAR, navigator VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_86 WHERE gold > 2 AND total < 14 AND silver = 4", "question": "What is the bronze with more than 2 gold and less than 14 total and 4 silver?", "context": "CREATE TABLE table_name_86 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_83 WHERE total = 11", "question": "How many silvers are there with a total of 11?", "context": "CREATE TABLE table_name_83 (silver INTEGER, total VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_81 WHERE gold > 2 AND nation = \"germany\"", "question": "How many silvers are there with more than 2 golds in Germany?", "context": "CREATE TABLE table_name_81 (silver VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(reaction) FROM table_name_53 WHERE heat > 1 AND name = \"brigitte foster-hylton\"", "question": "What is the average reaction for brigitte foster-hylton after heat 1?", "context": "CREATE TABLE table_name_53 (reaction INTEGER, heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT round FROM table_name_32 WHERE home_team = \"pohang steelers\"", "question": "What round did the home team Pohang Steelers play?", "context": "CREATE TABLE table_name_32 (round VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_28 WHERE away_team = \"pohang steelers\"", "question": "What is the latest round for Pohang Steelers as the away team?", "context": "CREATE TABLE table_name_28 (round INTEGER, away_team VARCHAR)"}, {"answer": "SELECT album FROM table_name_51 WHERE remix = \"dead guys remix\" AND year > 2003", "question": "what is the album when the remix is dead guys remix and the year is after 2003?", "context": "CREATE TABLE table_name_51 (album VARCHAR, remix VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_96 WHERE player = \"joselito escobar\"", "question": "What is Joselito Escobar's Pick number?", "context": "CREATE TABLE table_name_96 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE college = \"east\" AND pick = 3", "question": "What is the Pick 3 Player from East College?", "context": "CREATE TABLE table_name_67 (player VARCHAR, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pba_team FROM table_name_96 WHERE college = \"ateneo de manila\"", "question": "What is Ateneo de Manila's PBA Team?", "context": "CREATE TABLE table_name_96 (pba_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_65 WHERE pick < 3 AND pba_team = \"alaska milkmen\"", "question": "What is the College of the Player from PBA Team Alaska Milkmen with a Pick number of 3 or less?", "context": "CREATE TABLE table_name_65 (college VARCHAR, pick VARCHAR, pba_team VARCHAR)"}, {"answer": "SELECT college FROM table_name_31 WHERE pba_team = \"san miguel beermen\"", "question": "What is the College of the Player from San Miguel Beermen PBA Team?", "context": "CREATE TABLE table_name_31 (college VARCHAR, pba_team VARCHAR)"}, {"answer": "SELECT Web AS client FROM table_name_18 WHERE client = \"x\" AND project = \"goto servers vnc java server (gsvncj)\"", "question": "who is the web client when the client is x and the project is goto servers vnc java server (gsvncj)?", "context": "CREATE TABLE table_name_18 (Web VARCHAR, client VARCHAR, project VARCHAR)"}, {"answer": "SELECT color_quality FROM table_name_9 WHERE relay = \"\u2713\"", "question": "what is the color quality when the relay is \u2713?", "context": "CREATE TABLE table_name_9 (color_quality VARCHAR, relay VARCHAR)"}, {"answer": "SELECT proxy FROM table_name_59 WHERE image_quality = \"\u2713\" AND encryption = \"ssl\" AND license = \"proprietary\"", "question": "what is the proxy when the image quality is \u2713, the encryption is ssl and the license is proprietary?", "context": "CREATE TABLE table_name_59 (proxy VARCHAR, license VARCHAR, image_quality VARCHAR, encryption VARCHAR)"}, {"answer": "SELECT image_quality FROM table_name_32 WHERE multiple_sessions = \"x\" AND authentication = \"\u2713\" AND date = \"may 15, 2007\"", "question": "what is the image quality when the multiple sessions is x, the authentication is \u2713 and the date is may 15, 2007?", "context": "CREATE TABLE table_name_32 (image_quality VARCHAR, date VARCHAR, multiple_sessions VARCHAR, authentication VARCHAR)"}, {"answer": "SELECT cores FROM table_name_76 WHERE l3_cache = \"8 mb\" AND model_number = \"core i7-860\"", "question": "What is listed for the Cores that has the L3 cache of 8 MB and Model number of Core i7-860?", "context": "CREATE TABLE table_name_76 (cores VARCHAR, l3_cache VARCHAR, model_number VARCHAR)"}, {"answer": "SELECT memory FROM table_name_32 WHERE turbo = \"2/2/4/5\" AND release_date = \"may 2010\"", "question": "What Memory has a Turbo of 2/2/4/5 and the Release date of May 2010?", "context": "CREATE TABLE table_name_32 (memory VARCHAR, turbo VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_30 WHERE sspec_number = \"slbjg(b1)\"", "question": "What Model number has the sSpec numebr of SLBJG(B1)?", "context": "CREATE TABLE table_name_30 (model_number VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT turbo FROM table_name_29 WHERE release_price___usd__ = \"$583\"", "question": "What Turbo has the Release price (USD) of $583?", "context": "CREATE TABLE table_name_29 (turbo VARCHAR, release_price___usd__ VARCHAR)"}, {"answer": "SELECT MIN(prominence__m_) FROM table_name_87 WHERE elevation__m_ = 3 OFFSET 615", "question": "What is the lowest prominence for a peak with elevation of 3,615 meters?", "context": "CREATE TABLE table_name_87 (prominence__m_ INTEGER, elevation__m_ VARCHAR)"}, {"answer": "SELECT COUNT(col__m_) FROM table_name_86 WHERE elevation__m_ = 2 OFFSET 308", "question": "What is the Col entry for the peak with an elevation of 2,308 meters?", "context": "CREATE TABLE table_name_86 (col__m_ VARCHAR, elevation__m_ VARCHAR)"}, {"answer": "SELECT actor FROM table_name_64 WHERE character = \"rachel mckenna\"", "question": "who is the actor that played rachel mckenna?", "context": "CREATE TABLE table_name_64 (actor VARCHAR, character VARCHAR)"}, {"answer": "SELECT actor FROM table_name_31 WHERE soap_opera = \"shortland street\" AND years = \"1993\u20131999, 2001\u20132003, 2007, 2009\u2014\"", "question": "who is the actor for shortland street for the years 1993\u20131999, 2001\u20132003, 2007, 2009\u2014?", "context": "CREATE TABLE table_name_31 (actor VARCHAR, soap_opera VARCHAR, years VARCHAR)"}, {"answer": "SELECT soap_opera FROM table_name_10 WHERE years = \"2000\u20132004, 2005\u2014\"", "question": "what is the soap opera when the years are 2000\u20132004, 2005\u2014?", "context": "CREATE TABLE table_name_10 (soap_opera VARCHAR, years VARCHAR)"}, {"answer": "SELECT character FROM table_name_47 WHERE duration = \"11 years\"", "question": "what is the character with the duration of 11 years?", "context": "CREATE TABLE table_name_47 (character VARCHAR, duration VARCHAR)"}, {"answer": "SELECT soap_opera FROM table_name_48 WHERE actor = \"elin sogn\"", "question": "what is the soap opera for elin sogn?", "context": "CREATE TABLE table_name_48 (soap_opera VARCHAR, actor VARCHAR)"}, {"answer": "SELECT station FROM table_name_73 WHERE owned_since = 2011 AND channel___tv___rf__ = \"27\"", "question": "What station was owned since 2011, and a channel (tv/rf) of 27?", "context": "CREATE TABLE table_name_73 (station VARCHAR, owned_since VARCHAR, channel___tv___rf__ VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_58 WHERE owned_since > 1991 AND channel___tv___rf__ = \"42\"", "question": "What affiliation has an owned since larger than 1991, and also has a channel (tv/rf) of 42?", "context": "CREATE TABLE table_name_58 (affiliation VARCHAR, owned_since VARCHAR, channel___tv___rf__ VARCHAR)"}, {"answer": "SELECT city_of_license__market FROM table_name_75 WHERE owned_since < 2011 AND affiliation = \"abc\" AND channel___tv___rf__ = \"9 (22)\"", "question": "What city of license/market has an owned since before 2011,and a affiliation of abc and channel (tv/rf) of 9 (22)?", "context": "CREATE TABLE table_name_75 (city_of_license__market VARCHAR, channel___tv___rf__ VARCHAR, owned_since VARCHAR, affiliation VARCHAR)"}, {"answer": "SELECT SUM(prominence__m_) FROM table_name_69 WHERE elevation__m_ = 2 OFFSET 024", "question": "COunt the sum of Prominence (m) of an Elevation (m) of 2,024?", "context": "CREATE TABLE table_name_69 (prominence__m_ INTEGER, elevation__m_ VARCHAR)"}, {"answer": "SELECT AVG(prominence__m_) FROM table_name_9 WHERE col__m_ < 0", "question": "Count the Prominence (m) of Col (m) smaller than 0?", "context": "CREATE TABLE table_name_9 (prominence__m_ INTEGER, col__m_ INTEGER)"}, {"answer": "SELECT MIN(col__m_) FROM table_name_50 WHERE peak = \"pico basil\u00e9\" AND prominence__m_ < 3 OFFSET 011", "question": "Name the lowest Col (m) with a Peak of pico basil\u00e9, and a Prominence (m) smaller than 3,011?", "context": "CREATE TABLE table_name_50 (col__m_ INTEGER, peak VARCHAR, prominence__m_ VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_81 WHERE tv_time = \"fox 4:15et\"", "question": "What is the Week of the game with TV Time of Fox 4:15ET?", "context": "CREATE TABLE table_name_81 (week VARCHAR, tv_time VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_51 WHERE date = \"december 27, 2003\"", "question": "What is the TV Time of the game on December 27, 2003?", "context": "CREATE TABLE table_name_51 (tv_time VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_97 WHERE attendance = \"68,436\"", "question": "What is the Opponent at the game with Attendance of 68,436?", "context": "CREATE TABLE table_name_97 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_7 WHERE opponent = \"cincinnati bengals\"", "question": "What is the Attendance at the game against the Cincinnati Bengals?", "context": "CREATE TABLE table_name_7 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE week > 3 AND result = \"l 10\u20136\"", "question": "What is the Opponent of the game after Week 3 with a Result of L 10\u20136?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE tv_time = \"cbs 1:00et\" AND result = \"w 22\u201316\"", "question": "What is the Date of the Game with a Result of w 22\u201316 in TV Time of CBS 1:00ET?", "context": "CREATE TABLE table_name_90 (date VARCHAR, tv_time VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_81 WHERE attendance = \"47,678\"", "question": "At what Venue was the Attendance 47,678?", "context": "CREATE TABLE table_name_81 (venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_6 WHERE date = \"new zealand scores in bold\"", "question": "What is the Attendance of New Zealand Scores in bold?", "context": "CREATE TABLE table_name_6 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT lost FROM table_name_55 WHERE drawn = \"2\" AND bonus_points = \"6\"", "question": "What is the number of lost games when 2 were drawn, and there were 6 bonus points?", "context": "CREATE TABLE table_name_55 (lost VARCHAR, drawn VARCHAR, bonus_points VARCHAR)"}, {"answer": "SELECT bonus_points FROM table_name_28 WHERE drawn = \"4\"", "question": "What is the number of bonus points when there are 4 drawn?", "context": "CREATE TABLE table_name_28 (bonus_points VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT bonus_points FROM table_name_83 WHERE drawn = \"2\" AND points_against = \"599\"", "question": "What is the number of bonus points when there are 2 drawn and the points against is 599?", "context": "CREATE TABLE table_name_83 (bonus_points VARCHAR, drawn VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT lost FROM table_name_32 WHERE played = \"26\" AND points = \"83\"", "question": "What is the lost number when the team played 26 games and there were 83 points?", "context": "CREATE TABLE table_name_32 (lost VARCHAR, played VARCHAR, points VARCHAR)"}, {"answer": "SELECT lost FROM table_name_58 WHERE drawn = \"2\" AND points_against = \"572\"", "question": "What is the lost number for the team with 2 drawn games, and 572 points against?", "context": "CREATE TABLE table_name_58 (lost VARCHAR, drawn VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT bonus_points FROM table_name_63 WHERE drawn = \"2\" AND points_for = \"475\"", "question": "What is the number of bonus points for the team with 2 drawn games and 475 points?", "context": "CREATE TABLE table_name_63 (bonus_points VARCHAR, drawn VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_23 WHERE name = \"helguera\"", "question": "What is the transfer fee for Helguera?", "context": "CREATE TABLE table_name_23 (transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_25 WHERE moving_from = \"celta de vigo\"", "question": "What was the transfer fee when the moving from was celta de Vigo?", "context": "CREATE TABLE table_name_25 (transfer_fee VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_21 WHERE moving_from = \"fenerbah\u00e7e\"", "question": "What was the transfer window with a moving from of fenerbah\u00e7e?", "context": "CREATE TABLE table_name_21 (transfer_window VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT nat FROM table_name_97 WHERE moving_from = \"espanyol\"", "question": "What nation had a moving from of espanyol?", "context": "CREATE TABLE table_name_97 (nat VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_79 WHERE ends = 2007", "question": "What was the transfer fee for the player with an ends of 2007?", "context": "CREATE TABLE table_name_79 (transfer_fee VARCHAR, ends VARCHAR)"}, {"answer": "SELECT series FROM table_name_85 WHERE release_date = \"1946-03-16\"", "question": "What is the Series of the Filmography with a Release date of 1946-03-16?", "context": "CREATE TABLE table_name_85 (series VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT director FROM table_name_76 WHERE production_number = \"11-14\"", "question": "Who is the Director of the Filmography with Production Number of 11-14?", "context": "CREATE TABLE table_name_76 (director VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT series FROM table_name_1 WHERE release_date = \"1946-01-05\"", "question": "What is the Series of the Filmography with Release date of 1946-01-05?", "context": "CREATE TABLE table_name_1 (series VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT series FROM table_name_37 WHERE production_number = \"m-4-15\"", "question": "What is the Series of the Filmography with a Production Number of M-4-15?", "context": "CREATE TABLE table_name_37 (series VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT venue FROM table_name_26 WHERE score = \"4-0\" AND competition = \"2002 tiger cup\"", "question": "What venue has a score of 4-0 with the 2002 Tiger Cup listed as the competition?", "context": "CREATE TABLE table_name_26 (venue VARCHAR, score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_47 WHERE score = \"1-3\"", "question": "What competition has a score of 1-3?", "context": "CREATE TABLE table_name_47 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_32 WHERE date = \"november 17, 2003\"", "question": "What competition listed is dated November 17, 2003?", "context": "CREATE TABLE table_name_32 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_4 WHERE date = \"february 22, 2003\"", "question": "What venue listed is dated February 22, 2003?", "context": "CREATE TABLE table_name_4 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_88 WHERE competition = \"friendly\"", "question": "What venue is listed as having a competition titled Friendly?", "context": "CREATE TABLE table_name_88 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT notes FROM table_name_24 WHERE time___sec__ > 23.34 AND rank = 8", "question": "Which Notes have a Time larger than 23.34, and a Rank of 8?", "context": "CREATE TABLE table_name_24 (notes VARCHAR, time___sec__ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(week) FROM table_name_68 WHERE date = \"december 21, 1969\"", "question": "In what week was the December 21, 1969 game?", "context": "CREATE TABLE table_name_68 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT opposing_team FROM table_name_14 WHERE venue = \"rectory ground, devonport\"", "question": "Which Opposing Team has a Venue of rectory ground, devonport?", "context": "CREATE TABLE table_name_14 (opposing_team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE opposing_team = \"mid-districts\"", "question": "When has an Opposing Team of mid-districts?", "context": "CREATE TABLE table_name_72 (date VARCHAR, opposing_team VARCHAR)"}, {"answer": "SELECT class__old__to_1868 FROM table_name_47 WHERE quantity > 8", "question": "Can you tell me the Class (old) to 1868 that has the Quantity larger than 8?", "context": "CREATE TABLE table_name_47 (class__old__to_1868 VARCHAR, quantity INTEGER)"}, {"answer": "SELECT date FROM table_name_20 WHERE year = \"2008\"", "question": "What was the date of the Cross Code debut that had an Int'l Debut in the year 2008?", "context": "CREATE TABLE table_name_20 (date VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_92 WHERE player = \"coenraad breytenbach\"", "question": "What year did Coenraad Breytenbach have their Int'l Debut?", "context": "CREATE TABLE table_name_92 (year VARCHAR, player VARCHAR)"}, {"answer": "SELECT george_h_w_bush FROM table_name_84 WHERE result = \"no opinion\"", "question": "What percent of respondents had no opinion on George H.W. Bush?", "context": "CREATE TABLE table_name_84 (george_h_w_bush VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_91 WHERE time = \"dns\" AND name = \"christian kubusch\" AND heat > 2", "question": "What was Christian Kubusch's lane when the heat was more than 2 and time was DNS?", "context": "CREATE TABLE table_name_91 (lane INTEGER, heat VARCHAR, time VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_19 WHERE nationality = \"bulgaria\"", "question": "What's Bulgaria's lane?", "context": "CREATE TABLE table_name_19 (lane INTEGER, nationality VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_40 WHERE nationality = \"great britain\" AND heat < 3", "question": "What's Great Britain's lane with a heat less than 3?", "context": "CREATE TABLE table_name_40 (lane INTEGER, nationality VARCHAR, heat VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_93 WHERE nationality = \"spain\" AND heat < 4", "question": "What's Spain's lane with a heat less than 4?", "context": "CREATE TABLE table_name_93 (lane INTEGER, nationality VARCHAR, heat VARCHAR)"}, {"answer": "SELECT AVG(heat) FROM table_name_99 WHERE lane < 3 AND time = \"14:48.39\"", "question": "What's the heat in the lane less than 3 with a time of 14:48.39?", "context": "CREATE TABLE table_name_99 (heat INTEGER, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(heat) FROM table_name_61 WHERE nationality = \"china\" AND name = \"zhang lin\" AND lane > 6", "question": "What's China's heat for Zhang Lin in a lane after 6?", "context": "CREATE TABLE table_name_61 (heat INTEGER, lane VARCHAR, nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_72 WHERE year = 1994", "question": "Who won bronze in 1994?", "context": "CREATE TABLE table_name_72 (bronze VARCHAR, year VARCHAR)"}, {"answer": "SELECT position FROM table_name_46 WHERE pick < 63 AND college = \"oklahoma\"", "question": "Which position was picked before 63, for Oklahoma College?", "context": "CREATE TABLE table_name_46 (position VARCHAR, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_68 WHERE position = \"offensive tackle\"", "question": "Which College has a Position of Offensive Tackle?", "context": "CREATE TABLE table_name_68 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT player FROM table_name_21 WHERE balls = 50", "question": "Which player had 50 balls?", "context": "CREATE TABLE table_name_21 (player VARCHAR, balls VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_37 WHERE director = \"friz freleng\" AND production_number > 1496 AND series = \"mm\" AND title = \"apes of wrath\"", "question": "What date was Apes of Wrath written by Friz Freleng, production number higher than 1496 from series mm released?", "context": "CREATE TABLE table_name_37 (release_date VARCHAR, title VARCHAR, series VARCHAR, director VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT SUM(production_number) FROM table_name_18 WHERE director = \"robert mckimson\" AND series = \"mm\" AND title = \"people are bunny\"", "question": "What is the production number directed by Robert McKimson in series mm titled People Are Bunny?", "context": "CREATE TABLE table_name_18 (production_number INTEGER, title VARCHAR, director VARCHAR, series VARCHAR)"}, {"answer": "SELECT series FROM table_name_63 WHERE director = \"abe levitow\" AND release_date = \"1959-06-27\"", "question": "What was the series of the episode directed by Abe Levitow released on 1959-06-27?", "context": "CREATE TABLE table_name_63 (series VARCHAR, director VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_93 WHERE production_number < 1495 AND director = \"robert mckimson\" AND title = \"mouse-placed kitten\"", "question": "What is the release date of the episode named Mouse-Placed Kitten with an episode number less than 1495 directed by Robert McKimson?", "context": "CREATE TABLE table_name_93 (release_date VARCHAR, title VARCHAR, production_number VARCHAR, director VARCHAR)"}, {"answer": "SELECT player FROM table_name_50 WHERE round > 8", "question": "Which Player has a Round larger than 8?", "context": "CREATE TABLE table_name_50 (player VARCHAR, round INTEGER)"}, {"answer": "SELECT nationality FROM table_name_25 WHERE player = \"tom cassidy\"", "question": "What is tom cassidy's nationality?", "context": "CREATE TABLE table_name_25 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_7 WHERE pick > 70 AND round < 7", "question": "Which College/Junior/Club Team has a Pick larger than 70, and a Round smaller than 7?", "context": "CREATE TABLE table_name_7 (college_junior_club_team VARCHAR, pick VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_87 WHERE round > 8", "question": "Which Player has a Round larger than 8?", "context": "CREATE TABLE table_name_87 (player VARCHAR, round INTEGER)"}, {"answer": "SELECT county FROM table_name_74 WHERE location = \"edinburgh\"", "question": "Which County has a Location of edinburgh?", "context": "CREATE TABLE table_name_74 (county VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(enrollment) FROM table_name_32 WHERE location = \"hope\"", "question": "COunt the average Enrollment in hope?", "context": "CREATE TABLE table_name_32 (enrollment INTEGER, location VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_10 WHERE ihsaa_class = \"aa\" AND enrollment > 369", "question": "Which Mascot has IHSAA Class of aa, and a Enrollment larger than 369?", "context": "CREATE TABLE table_name_10 (mascot VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT MIN(league_goals) FROM table_name_1 WHERE league_apps = \"1\" AND fa_cup_goals > 0", "question": "what is the lowest league goals when the league apps is 1 and the fa cup goals is more than 0?", "context": "CREATE TABLE table_name_1 (league_goals INTEGER, league_apps VARCHAR, fa_cup_goals VARCHAR)"}, {"answer": "SELECT MAX(fa_cup_goals) FROM table_name_75 WHERE total_goals > 3 AND total_apps = \"31 (1)\"", "question": "what is the highest fa cup goals when the total goals is more than 3 and total apps is 31 (1)?", "context": "CREATE TABLE table_name_75 (fa_cup_goals INTEGER, total_goals VARCHAR, total_apps VARCHAR)"}, {"answer": "SELECT league_goals FROM table_name_50 WHERE fa_cup_goals > 0 AND fa_cup_apps = \"2\" AND league_apps = \"45\"", "question": "what is the league goals when the fa cup goals is higher than 0, the fa cup apps is 2 and the league apps is 45?", "context": "CREATE TABLE table_name_50 (league_goals VARCHAR, league_apps VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT COUNT(total_goals) FROM table_name_40 WHERE total_apps = \"1\" AND name = \"bob mountain\" AND fa_cup_goals < 0", "question": "how many times is the total apps 1 and the fa cup goals less than 0 for bob mountain?", "context": "CREATE TABLE table_name_40 (total_goals VARCHAR, fa_cup_goals VARCHAR, total_apps VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_42 WHERE venue = \"a\" AND opponent = \"west ham united\"", "question": "What is the highest attendance for the match against west ham united at the venue of a?", "context": "CREATE TABLE table_name_42 (attendance INTEGER, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT country FROM table_name_84 WHERE score = 67", "question": "Which Country has a Score of 67?", "context": "CREATE TABLE table_name_84 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_64 WHERE player = \"momoko ueda\"", "question": "Which To par has a Player of momoko ueda?", "context": "CREATE TABLE table_name_64 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_87 WHERE player = \"johanna head\"", "question": "Which To par has a Player of johanna head?", "context": "CREATE TABLE table_name_87 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT notes FROM table_name_48 WHERE country = \"denmark\"", "question": "What is the notes for the team from Denmark?", "context": "CREATE TABLE table_name_48 (notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_94 WHERE notes = \"sc/d\" AND rank = 6", "question": "Which athlete had a rank of 6 and notes of sc/d?", "context": "CREATE TABLE table_name_94 (athlete VARCHAR, notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT country FROM table_name_56 WHERE notes = \"sc/d\" AND athlete = \"latt shwe zin\"", "question": "Which country is the athlete latt shwe zin with notes of sc/d from?", "context": "CREATE TABLE table_name_56 (country VARCHAR, notes VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT hr_no FROM table_name_36 WHERE lms_no = 14758", "question": "What's the HR number when the LMS number is 14758?", "context": "CREATE TABLE table_name_36 (hr_no VARCHAR, lms_no VARCHAR)"}, {"answer": "SELECT AVG(cr_no) FROM table_name_23 WHERE works = \"hawthorn leslie 3100\" AND lms_no < 14761", "question": "What's the CR number that has an LMS number less than 14761 and works of Hawthorn Leslie 3100?", "context": "CREATE TABLE table_name_23 (cr_no INTEGER, works VARCHAR, lms_no VARCHAR)"}, {"answer": "SELECT hr_no FROM table_name_75 WHERE built = \"9/1915\" AND lms_no = 14757", "question": "What's the HR Number when the LMS number is 14757 and has a built of 9/1915?", "context": "CREATE TABLE table_name_75 (hr_no VARCHAR, built VARCHAR, lms_no VARCHAR)"}, {"answer": "SELECT built FROM table_name_57 WHERE cr_no > 940 AND lms_no = 14760", "question": "What's the built date when the CR number is more than 940 and the LMS number is 14760?", "context": "CREATE TABLE table_name_57 (built VARCHAR, cr_no VARCHAR, lms_no VARCHAR)"}, {"answer": "SELECT home FROM table_name_44 WHERE visitor = \"modo hockey\" AND date = \"thursday, december 11\"", "question": "What is the Home team of the event on Thursday, December 11 with Visitor Modo Hockey?", "context": "CREATE TABLE table_name_44 (home VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT chinese__traditional_ FROM table_name_36 WHERE english_title = \"sunrise\"", "question": "What is the traditional Chinese name for the record titled Sunrise?", "context": "CREATE TABLE table_name_36 (chinese__traditional_ VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT chinese__traditional_ FROM table_name_66 WHERE chinese__simplified_ = \"\u5d07\u62dc\"", "question": "What would be the traditional Chinese name tat is simplified as \u5d07\u62dc?", "context": "CREATE TABLE table_name_66 (chinese__traditional_ VARCHAR, chinese__simplified_ VARCHAR)"}, {"answer": "SELECT chinese__traditional_ FROM table_name_54 WHERE label = \"rock records\" AND english_title = \"grown up overnight\"", "question": "What traditional Chinese name would the Rock Records release Grown up Overnight be given?", "context": "CREATE TABLE table_name_54 (chinese__traditional_ VARCHAR, label VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT chinese__traditional_ FROM table_name_84 WHERE english_title = \"beautiful\"", "question": "What is the traditional Chinese name for the record Beautiful?", "context": "CREATE TABLE table_name_84 (chinese__traditional_ VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT album_number FROM table_name_66 WHERE chinese__simplified_ = \"\u60c5\u6b4c\u6ca1\u6709\u544a\u8bc9\u4f60\"", "question": "What is the album number for the record \u60c5\u6b4c\u6ca1\u6709\u544a\u8bc9\u4f60, simplified from the traditional Chinese name?", "context": "CREATE TABLE table_name_66 (album_number VARCHAR, chinese__simplified_ VARCHAR)"}, {"answer": "SELECT chinese__simplified_ FROM table_name_21 WHERE album_number = \"9th\"", "question": "What is the simplified Chinese name for the 9th album?", "context": "CREATE TABLE table_name_21 (chinese__simplified_ VARCHAR, album_number VARCHAR)"}, {"answer": "SELECT eliminated AS by FROM table_name_18 WHERE tag_team = \"jindrak and cade\"", "question": "Which Eliminated has a Tag Team of jindrak and cade?", "context": "CREATE TABLE table_name_18 (eliminated VARCHAR, tag_team VARCHAR)"}, {"answer": "SELECT eliminated AS by FROM table_name_42 WHERE entered < 2", "question": "Which Eliminated has an Entered smaller than 2?", "context": "CREATE TABLE table_name_42 (eliminated VARCHAR, entered INTEGER)"}, {"answer": "SELECT tag_team FROM table_name_94 WHERE entered = 6", "question": "Name the Tag Team with Entered of 6?", "context": "CREATE TABLE table_name_94 (tag_team VARCHAR, entered VARCHAR)"}, {"answer": "SELECT tag_team FROM table_name_42 WHERE eliminated = \"5\"", "question": "Name Tag Team with a Eliminated of 5?", "context": "CREATE TABLE table_name_42 (tag_team VARCHAR, eliminated VARCHAR)"}, {"answer": "SELECT tag_team FROM table_name_10 WHERE time = \"03:34\"", "question": "Name the Tag Team with a Time of 03:34?", "context": "CREATE TABLE table_name_10 (tag_team VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(episodes) FROM table_name_17 WHERE tv_station = \"ntv\" AND japanese_title = \"\u3042\u3044\u306e\u3046\u305f\"", "question": "Which Episodes have a TV Station of ntv, and a Japanese Title of \u3042\u3044\u306e\u3046\u305f?", "context": "CREATE TABLE table_name_17 (episodes INTEGER, tv_station VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT tv_station FROM table_name_54 WHERE average_ratings = \"16.89%\"", "question": "Which TV Station has Average Ratings of 16.89%?", "context": "CREATE TABLE table_name_54 (tv_station VARCHAR, average_ratings VARCHAR)"}, {"answer": "SELECT MAX(episodes) FROM table_name_79 WHERE tv_station = \"tbs\" AND japanese_title = \"\u4eca\u591c\u3072\u3068\u308a\u306e\u30d9\u30c3\u30c9\u3067\"", "question": "Which Episodes have a TV Station of tbs, and a Japanese Title of \u4eca\u591c\u3072\u3068\u308a\u306e\u30d9\u30c3\u30c9\u3067?", "context": "CREATE TABLE table_name_79 (episodes INTEGER, tv_station VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_58 WHERE tv_station = \"tbs\" AND romaji_title = \"hana yori dango\"", "question": "Which Japanese Title has a TV Station of tbs, and a Romaji Title of hana yori dango?", "context": "CREATE TABLE table_name_58 (japanese_title VARCHAR, tv_station VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_68 WHERE tie_no = \"4\"", "question": "Who was the away team with a tie number of 4?", "context": "CREATE TABLE table_name_68 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE tie_no = \"32\"", "question": "What date was the tie number of 32?", "context": "CREATE TABLE table_name_46 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE tie_no = \"replay\" AND home_team = \"mansfield town\"", "question": "What was the score when the tie number was a replay and the home team was mansfield town?", "context": "CREATE TABLE table_name_59 (score VARCHAR, tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_42 WHERE score = 67 - 68 - 76 = 211", "question": "what is the to par when the score is 67-68-76=211?", "context": "CREATE TABLE table_name_42 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_51 WHERE player = \"tom watson\"", "question": "what is the score for tom watson?", "context": "CREATE TABLE table_name_51 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_37 WHERE place = \"t10\" AND score = 67 - 72 - 72 = 211", "question": "who is the player when the place is t10 and the score is 67-72-72=211?", "context": "CREATE TABLE table_name_37 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_31 WHERE player = \"bryce molder\"", "question": "what is the place for bryce molder?", "context": "CREATE TABLE table_name_31 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_72 WHERE player = \"mathew goggin\"", "question": "what is the to par for mathew goggin?", "context": "CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(quantity) FROM table_name_86 WHERE axle_arrangement = \"2\u2032c h2\"", "question": "Which Quantity has an Axle arrangement of 2\u2032c h2?", "context": "CREATE TABLE table_name_86 (quantity INTEGER, axle_arrangement VARCHAR)"}, {"answer": "SELECT year_s__of_manufacture FROM table_name_92 WHERE axle_arrangement = \"2\u2032b n2\"", "question": "Which Year(s) of manufacture has an Axle arrangement of 2\u2032b n2?", "context": "CREATE TABLE table_name_92 (year_s__of_manufacture VARCHAR, axle_arrangement VARCHAR)"}, {"answer": "SELECT rank FROM table_name_81 WHERE time = \"5:56.73\"", "question": "Which Rank has a Time of 5:56.73?", "context": "CREATE TABLE table_name_81 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT rank FROM table_name_70 WHERE notes = \"fb\" AND time = \"5:57.31\"", "question": "Which Rank has Notes of fb, and a Time of 5:57.31?", "context": "CREATE TABLE table_name_70 (rank VARCHAR, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(2007) FROM table_name_96 WHERE country_or_territory = \"china\" AND 2002 < 670 OFFSET 099", "question": "Which 2007 has a Country or territory of china, and a 2002 smaller than 670,099?", "context": "CREATE TABLE table_name_96 (country_or_territory VARCHAR)"}, {"answer": "SELECT SUM(giro_wins) FROM table_name_29 WHERE jerseys = 2 AND country = \"portugal\" AND young_rider > 0", "question": "what is the giro wins when jerseys is 2, country is portugal and young rider is more than 0?", "context": "CREATE TABLE table_name_29 (giro_wins INTEGER, young_rider VARCHAR, jerseys VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(jerseys) FROM table_name_72 WHERE points = 0 AND different_holders < 3 AND giro_wins < 1 AND young_rider > 1", "question": "what is the highest jersey when points is 0, different holders is less than 3, giro wins is less than 1 and young rider is more than 1?", "context": "CREATE TABLE table_name_72 (jerseys INTEGER, young_rider VARCHAR, giro_wins VARCHAR, points VARCHAR, different_holders VARCHAR)"}, {"answer": "SELECT COUNT(jerseys) FROM table_name_78 WHERE young_rider > 0 AND country = \"france\" AND points < 1", "question": "how many times is young rider more than 0, country is france and points less than 1?", "context": "CREATE TABLE table_name_78 (jerseys VARCHAR, points VARCHAR, young_rider VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(different_holders) FROM table_name_93 WHERE country = \"ireland\" AND giro_wins < 1", "question": "what is the least different holders when the country is ireland and giro wins is less than 1?", "context": "CREATE TABLE table_name_93 (different_holders INTEGER, country VARCHAR, giro_wins VARCHAR)"}, {"answer": "SELECT speed FROM table_name_1 WHERE rider = \"brian mateer\"", "question": "What is Brian Mateer's Speed?", "context": "CREATE TABLE table_name_1 (speed VARCHAR, rider VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_36 WHERE team = \"250cc honda\" AND speed = \"111.072mph\"", "question": "What is the Rank of the Rider with a Speed of 111.072mph in Team 250CC Honda?", "context": "CREATE TABLE table_name_36 (rank INTEGER, team VARCHAR, speed VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_6 WHERE time = \"1:08.80\"", "question": "What is the Nationality of the swimmer with a Time of 1:08.80?", "context": "CREATE TABLE table_name_6 (nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_20 WHERE name = \"anna khlistunova\"", "question": "What is Anna Khlistunova's Nationality?", "context": "CREATE TABLE table_name_20 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT penalty FROM table_name_42 WHERE team = \"det\" AND player = \"andreas lilja\"", "question": "What is the penalty for the DET team player Andreas Lilja?", "context": "CREATE TABLE table_name_42 (penalty VARCHAR, team VARCHAR, player VARCHAR)"}, {"answer": "SELECT penalty FROM table_name_19 WHERE player = \"jonathan toews\"", "question": "What is the penalty for Jonathan Toews?", "context": "CREATE TABLE table_name_19 (penalty VARCHAR, player VARCHAR)"}, {"answer": "SELECT period FROM table_name_49 WHERE player = \"ben eager\"", "question": "What is the period for Ben Eager?", "context": "CREATE TABLE table_name_49 (period VARCHAR, player VARCHAR)"}, {"answer": "SELECT period FROM table_name_52 WHERE team = \"det\" AND time = \"11:27\"", "question": "What is the period for the DET Team with a time of 11:27?", "context": "CREATE TABLE table_name_52 (period VARCHAR, team VARCHAR, time VARCHAR)"}, {"answer": "SELECT player FROM table_name_35 WHERE penalty = \"holding\" AND team = \"det\"", "question": "What player has a penalty of holding on the DET team?", "context": "CREATE TABLE table_name_35 (player VARCHAR, penalty VARCHAR, team VARCHAR)"}, {"answer": "SELECT time FROM table_name_36 WHERE period = \"1st\" AND player = \"dustin byfuglien\"", "question": "What time does Dustin Byfuglien have in 1st period?", "context": "CREATE TABLE table_name_36 (time VARCHAR, period VARCHAR, player VARCHAR)"}, {"answer": "SELECT competition FROM table_name_85 WHERE result = \"2-0\" AND location = \"ferreiras\" AND assist_pass = \"casey nogueira\"", "question": "Which competition has a result of 2-0 in Ferreiras with an assist/pass by Casey Nogueira?", "context": "CREATE TABLE table_name_85 (competition VARCHAR, assist_pass VARCHAR, result VARCHAR, location VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE lineup = \"match reports\"", "question": "What is the score with the Lineup match reports?", "context": "CREATE TABLE table_name_5 (score VARCHAR, lineup VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE assist_pass = \"shannon boxx\"", "question": "On what date is there an assist/pass by Shannon Boxx?", "context": "CREATE TABLE table_name_92 (date VARCHAR, assist_pass VARCHAR)"}, {"answer": "SELECT assist_pass FROM table_name_80 WHERE location = \"ferreiras\"", "question": "Which assist/pass is in Ferreiras?", "context": "CREATE TABLE table_name_80 (assist_pass VARCHAR, location VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_34 WHERE type = \"career end\" AND name = \"willy sagnol\"", "question": "Willy Sagnol with a type as career end had what has the transfer fee?", "context": "CREATE TABLE table_name_34 (transfer_fee VARCHAR, type VARCHAR, name VARCHAR)"}, {"answer": "SELECT nat FROM table_name_15 WHERE transfer_window = \"summer\" AND type = \"transfer\" AND name = \"marcell jansen\"", "question": "Marcell Jansen with a transfer window of summer, and of transfer as type is from what nation?", "context": "CREATE TABLE table_name_15 (nat VARCHAR, name VARCHAR, transfer_window VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_2 WHERE nat = \"ger\" AND name = \"marcell jansen\"", "question": "Marcell Jansen of the nation GER has what for the type?", "context": "CREATE TABLE table_name_2 (type VARCHAR, nat VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_72 WHERE transfer_window = \"winter\" AND transfer_fee = \"free\"", "question": "What player had a transfer window of winter, and free as the transfer fee?", "context": "CREATE TABLE table_name_72 (name VARCHAR, transfer_window VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT name FROM table_name_85 WHERE transfer_window = \"summer\" AND nat = \"ger\" AND transfer_fee = \"n/a\"", "question": "Which player from GER has a transfer window of summer, and a transfer fee of n/a?", "context": "CREATE TABLE table_name_85 (name VARCHAR, transfer_fee VARCHAR, transfer_window VARCHAR, nat VARCHAR)"}, {"answer": "SELECT MAX(year_left) FROM table_name_3 WHERE conference_joined = \"sagamore\" AND year_joined > 1942", "question": "What's the highest Year Left that's got a Conference Joined of Sagamore with a Year Joined larger than 1942?", "context": "CREATE TABLE table_name_3 (year_left INTEGER, conference_joined VARCHAR, year_joined VARCHAR)"}, {"answer": "SELECT MAX(year_left) FROM table_name_81 WHERE school = \"danville\"", "question": "What's the highest Year Left for the School of Danville?", "context": "CREATE TABLE table_name_81 (year_left INTEGER, school VARCHAR)"}, {"answer": "SELECT time FROM table_name_70 WHERE lane = 4", "question": "What was lane 4's time?", "context": "CREATE TABLE table_name_70 (time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT part_number_s_ FROM table_name_56 WHERE l2_cache = \"2 \u00d7 256 kb\" AND frequency = \"1.8 ghz\"", "question": "What's the part number of the processor that has an 1.8 ghz frequency and 2 \u00d7 256 kb L@ Cache?", "context": "CREATE TABLE table_name_56 (part_number_s_ VARCHAR, l2_cache VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT sspec_number FROM table_name_57 WHERE i_o_bus = \"ultra-low power\"", "question": "What's the sSpec number of the processor having an ultra-low power I/O?", "context": "CREATE TABLE table_name_57 (sspec_number VARCHAR, i_o_bus VARCHAR)"}, {"answer": "SELECT cores FROM table_name_81 WHERE socket = \"bga-1023\" AND release_date = \"february 2011\"", "question": "What the cores with a release date of February 2011 and a BGA-1023 socket?", "context": "CREATE TABLE table_name_81 (cores VARCHAR, socket VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT l3_cache FROM table_name_63 WHERE i_o_bus = \"standard power\"", "question": "What's the L3 Cache that has a standard power I/O?", "context": "CREATE TABLE table_name_63 (l3_cache VARCHAR, i_o_bus VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_77 WHERE frequency = \"2.8 ghz\"", "question": "What's the release date of the processor with 2.8 ghz of frequency?", "context": "CREATE TABLE table_name_77 (release_date VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT round FROM table_name_24 WHERE venue = \"westpac stadium\" AND away = \"newcastle jets\"", "question": "What round was the match at Westpac Stadium that had the Newcastle Jets as the away team?", "context": "CREATE TABLE table_name_24 (round VARCHAR, venue VARCHAR, away VARCHAR)"}, {"answer": "SELECT weekday FROM table_name_86 WHERE away = \"perth glory\"", "question": "On what weekday was the match that had Perth Glory as the away team?", "context": "CREATE TABLE table_name_86 (weekday VARCHAR, away VARCHAR)"}, {"answer": "SELECT british_record FROM table_name_70 WHERE guernsey_record = \"32-8-0\"", "question": "What is the British record for the fish with a Guernsey record of 32-8-0?", "context": "CREATE TABLE table_name_70 (british_record VARCHAR, guernsey_record VARCHAR)"}, {"answer": "SELECT year FROM table_name_75 WHERE guernsey_record = \"2-3-12\"", "question": "What year was the Guernsey record of 2-3-12 set?", "context": "CREATE TABLE table_name_75 (year VARCHAR, guernsey_record VARCHAR)"}, {"answer": "SELECT guernsey_record FROM table_name_80 WHERE location = \"bordeaux harbour\"", "question": "What was the guernsey record set with a fish caught at Bordeaux Harbour?", "context": "CREATE TABLE table_name_80 (guernsey_record VARCHAR, location VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_21 WHERE production_num < 5038 AND characters = \"bosko\"", "question": "When was the film released that a less than 5038 production number and was of the character Bosko?", "context": "CREATE TABLE table_name_21 (release_date VARCHAR, production_num VARCHAR, characters VARCHAR)"}, {"answer": "SELECT title FROM table_name_4 WHERE production_num = 4645", "question": "With 4645 as the production number what was the title?", "context": "CREATE TABLE table_name_4 (title VARCHAR, production_num VARCHAR)"}, {"answer": "SELECT MIN(production_num) FROM table_name_56 WHERE title = \"bosko's fox hunt\"", "question": "The film titled Bosko's fox hunt had what as the smallest production number?", "context": "CREATE TABLE table_name_56 (production_num INTEGER, title VARCHAR)"}, {"answer": "SELECT MIN(production_num) FROM table_name_85 WHERE series = \"lt\" AND title = \"dumb patrol\"", "question": "What is the smallest production number for the LT series with the Dumb Patrol title?", "context": "CREATE TABLE table_name_85 (production_num INTEGER, series VARCHAR, title VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_72 WHERE home_team_s_ = \"v\u00e9lez s\u00e1rsfield\"", "question": "What was the average capacity for v\u00e9lez s\u00e1rsfield?", "context": "CREATE TABLE table_name_72 (capacity INTEGER, home_team_s_ VARCHAR)"}, {"answer": "SELECT city FROM table_name_5 WHERE home_team_s_ = \"tigre\"", "question": "What city was the home team Tigre?", "context": "CREATE TABLE table_name_5 (city VARCHAR, home_team_s_ VARCHAR)"}, {"answer": "SELECT province FROM table_name_72 WHERE city = \"mendoza\" AND stadium = \"feliciano gambarte\"", "question": "What province is in Mendoza with a stadium feliciano gambarte?", "context": "CREATE TABLE table_name_72 (province VARCHAR, city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE week > 9 AND tv_time = \"abc 8:00pm\"", "question": "On what date was there a tv time of ABC 8:00pm and after week 9?", "context": "CREATE TABLE table_name_58 (date VARCHAR, week VARCHAR, tv_time VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_50 WHERE genre = \"first-person shooter\"", "question": "What is total number of years that has genre of first-person shooter?", "context": "CREATE TABLE table_name_50 (year INTEGER, genre VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_36 WHERE genre = \"action-adventure\"", "question": "Which year is the lowest for genre of action-adventure?", "context": "CREATE TABLE table_name_36 (year INTEGER, genre VARCHAR)"}, {"answer": "SELECT \"normalised\" AS _transliteration FROM table_name_9 WHERE roman_equivalent = \"i\"", "question": "what is the \"normalized\" transliteration for Roman i", "context": "CREATE TABLE table_name_9 (roman_equivalent VARCHAR)"}, {"answer": "SELECT normal_environment_of_occurrence__in_native_words_ FROM table_name_86 WHERE proto_germanic_origin = \"/ai/\"", "question": "what is the normal environment of occurrence that has a Proto-Germanic origin /ai/", "context": "CREATE TABLE table_name_86 (normal_environment_of_occurrence__in_native_words_ VARCHAR, proto_germanic_origin VARCHAR)"}, {"answer": "SELECT MIN(against) FROM table_name_66 WHERE status = \"tour match\" AND venue = \"ravenhill , belfast\"", "question": "Which the lowest Against has a Status of tour match, and a Venue of ravenhill , belfast?", "context": "CREATE TABLE table_name_66 (against INTEGER, status VARCHAR, venue VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_73 WHERE venue = \"twickenham , london\" AND date = \"25 november 1978\"", "question": "Name the average Against that has a Venue of twickenham , london on 25 november 1978?", "context": "CREATE TABLE table_name_73 (against INTEGER, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(against) FROM table_name_30 WHERE date = \"21 november 1978\"", "question": "Name the highest Against on 21 november 1978?", "context": "CREATE TABLE table_name_30 (against INTEGER, date VARCHAR)"}, {"answer": "SELECT against FROM table_name_31 WHERE venue = \"brewery field , bridgend\"", "question": "Name the Against of Venue of brewery field , bridgend?", "context": "CREATE TABLE table_name_31 (against VARCHAR, venue VARCHAR)"}, {"answer": "SELECT status FROM table_name_98 WHERE against > 15", "question": "Name the Status with an Against larger than 15?", "context": "CREATE TABLE table_name_98 (status VARCHAR, against INTEGER)"}, {"answer": "SELECT home_team FROM table_name_16 WHERE away_team = \"newcastle united\"", "question": "Who is the home team when the away team is newcastle united?", "context": "CREATE TABLE table_name_16 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_20 WHERE away_team = \"wolverhampton wanderers\"", "question": "who is the home team when the away team is wolverhampton wanderers?", "context": "CREATE TABLE table_name_20 (home_team VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE tie_no = \"9\"", "question": "what is the date when the tie no is 9?", "context": "CREATE TABLE table_name_46 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_7 WHERE tie_no = \"7\"", "question": "who is the away team when the tie no is 7?", "context": "CREATE TABLE table_name_7 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE home_team = \"sunderland\"", "question": "what is the score when the home team is sunderland?", "context": "CREATE TABLE table_name_91 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT title FROM table_name_81 WHERE director = \"friz freleng\" AND production_number = \"443\"", "question": "What is the name of the title that was directed by Friz Freleng and has a production number of 443?", "context": "CREATE TABLE table_name_81 (title VARCHAR, director VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT title FROM table_name_21 WHERE production_number = \"627\"", "question": "Which title has a production number of 627?", "context": "CREATE TABLE table_name_21 (title VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT film FROM table_name_21 WHERE year < 2002 AND category = \"outstanding actress\"", "question": "what is the film when the year is earlier than 2002 and the category is outstanding actress?", "context": "CREATE TABLE table_name_21 (film VARCHAR, year VARCHAR, category VARCHAR)"}, {"answer": "SELECT COUNT(latitude) FROM table_name_45 WHERE land___sqmi__ > 34.846 AND geo_id < 3805529660 AND township = \"greenland\" AND ansi_code > 1036405", "question": "What is the total latitude of the greenland township with more than 34.846 sqmi of land, a geo id less than 3805529660, and an ANSI code greater than 1036405?", "context": "CREATE TABLE table_name_45 (latitude VARCHAR, ansi_code VARCHAR, township VARCHAR, land___sqmi__ VARCHAR, geo_id VARCHAR)"}, {"answer": "SELECT SUM(land___sqmi__) FROM table_name_36 WHERE ansi_code < 1036538 AND pop__2010_ < 42 AND longitude > -99.442872 AND water__sqmi_ > 0.882", "question": "What is the sum of the land in sq mi with an ansi code less than 1036538, a 2010 population less than 42, a longitude greater than -99.442872, and more than 0.882 sq mi of water?", "context": "CREATE TABLE table_name_36 (land___sqmi__ INTEGER, water__sqmi_ VARCHAR, longitude VARCHAR, ansi_code VARCHAR, pop__2010_ VARCHAR)"}, {"answer": "SELECT MAX(water__sqmi_) FROM table_name_91 WHERE land___sqmi__ > 33.576 AND township = \"glenila\" AND latitude > 48.832189", "question": "What is the highest water (sq mi) of the township glenila, which has more than 33.576 sq mi of land and a latitude greater than 48.832189?", "context": "CREATE TABLE table_name_91 (water__sqmi_ INTEGER, latitude VARCHAR, land___sqmi__ VARCHAR, township VARCHAR)"}, {"answer": "SELECT SUM(pop__2010_) FROM table_name_64 WHERE latitude > 47.710905 AND longitude = -101.79876 AND land___sqmi__ < 35.695", "question": "What is the sum of the 2010 population with a latitude greater than 47.710905, a longitude of -101.79876, and less than 35.695 sq mi of land?", "context": "CREATE TABLE table_name_64 (pop__2010_ INTEGER, land___sqmi__ VARCHAR, latitude VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT MIN(land___sqmi__) FROM table_name_27 WHERE longitude = -99.172785 AND water__sqmi_ < 0.973", "question": "What is the lowest land in sq mi with a longitude of -99.172785 and less than 0.973 sq mi of water?", "context": "CREATE TABLE table_name_27 (land___sqmi__ INTEGER, longitude VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT name FROM table_name_19 WHERE position = \"head coach\"", "question": "Who was the head coach?", "context": "CREATE TABLE table_name_19 (name VARCHAR, position VARCHAR)"}, {"answer": "SELECT name FROM table_name_49 WHERE year_at_cu = \"1st\" AND alma_mater = \"dayton ('07)\"", "question": "Who has the alma mater of Dayton ('07), and was in their 1st year at CU?", "context": "CREATE TABLE table_name_49 (name VARCHAR, year_at_cu VARCHAR, alma_mater VARCHAR)"}, {"answer": "SELECT year_at_cu FROM table_name_8 WHERE experience < 1 AND position = \"video services\"", "question": "What year at CU is the person in video services with an experience less than 1?", "context": "CREATE TABLE table_name_8 (year_at_cu VARCHAR, experience VARCHAR, position VARCHAR)"}, {"answer": "SELECT experience FROM table_name_29 WHERE year_at_cu = \"1st\" AND position = \"graduate assistant\"", "question": "The graduate assistant who was in the 1st year at CU has what experience?", "context": "CREATE TABLE table_name_29 (experience VARCHAR, year_at_cu VARCHAR, position VARCHAR)"}, {"answer": "SELECT name FROM table_name_86 WHERE experience > 19 AND alma_mater = \"eastern nazarene ('74)\"", "question": "What person has the alma mater of Eastern Nazarene ('74), and greater than 19 experience?", "context": "CREATE TABLE table_name_86 (name VARCHAR, experience VARCHAR, alma_mater VARCHAR)"}, {"answer": "SELECT COUNT(engine_capacity) FROM table_name_50 WHERE transmission = \"a4\" AND mpg_us_urban > 19 AND mpg_us_extra_urban > 38.6 AND model = \"aveo\"", "question": "What is the total engine capacity of the a4 transmission, which has an urban mpg-US greater than 19, an mpg-us extra-urban greater than 38.6, and an aveo model?", "context": "CREATE TABLE table_name_50 (engine_capacity VARCHAR, model VARCHAR, mpg_us_extra_urban VARCHAR, transmission VARCHAR, mpg_us_urban VARCHAR)"}, {"answer": "SELECT MAX(engine_capacity) FROM table_name_25 WHERE manufacturer = \"bmw\" AND mpg_uk_extra_urban = 52.3 AND co_2_g_km = 176 AND mpg_us_urban > 27.3", "question": "What is the highest engine capacity with a bmw manufacturer, an mpg-UK extra-urban of 52.3, a 176 CO 2 g/km, and an mpg-us urban greater than 27.3?", "context": "CREATE TABLE table_name_25 (engine_capacity INTEGER, mpg_us_urban VARCHAR, co_2_g_km VARCHAR, manufacturer VARCHAR, mpg_uk_extra_urban VARCHAR)"}, {"answer": "SELECT mpg_uk_combined FROM table_name_89 WHERE mpg_uk_urban__cold_ > 26.6 AND transmission = \"m5\" AND fuel_type = \"diesel\" AND engine_capacity < 1560", "question": "What is the mpg-uk combined with an mpg-uk urban (cold) greater than 26.6, a m5 transmission, a diesel fuel type, and an engine capacity less than 1560?", "context": "CREATE TABLE table_name_89 (mpg_uk_combined VARCHAR, engine_capacity VARCHAR, fuel_type VARCHAR, mpg_uk_urban__cold_ VARCHAR, transmission VARCHAR)"}, {"answer": "SELECT l_100km_urban__cold_ FROM table_name_24 WHERE co_2_g_km < 222 AND mpg_us_urban > 17.8 AND mpg_uk_extra_urban = 55.4 AND engine_capacity > 1560", "question": "What is the l/100km urban (cold) with a CO 2 g/km less than 222, an mpg-us urban greater than 17.8, an mpg-uk extra-urban of 55.4, and an engine capacity greater than 1560?", "context": "CREATE TABLE table_name_24 (l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, mpg_uk_extra_urban VARCHAR, co_2_g_km VARCHAR, mpg_us_urban VARCHAR)"}, {"answer": "SELECT model FROM table_name_6 WHERE green_rating = \"g\" AND manufacturer = \"chrysler jeep\" AND l_100km_urban__cold_ < 18 AND mpg_uk_combined = 27.7", "question": "What model has a g green rating, has chrysler jeep as a manufacturer, has an l/100km urban (cold) less than 18, and has an mpg-uk combined of 27.7?", "context": "CREATE TABLE table_name_6 (model VARCHAR, mpg_uk_combined VARCHAR, l_100km_urban__cold_ VARCHAR, green_rating VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT league_cup_apps FROM table_name_54 WHERE total_goals < 2 AND total_apps = \"12\"", "question": "what is the league cup apps when the total goals is less than 2 and the total apps is 12?", "context": "CREATE TABLE table_name_54 (league_cup_apps VARCHAR, total_goals VARCHAR, total_apps VARCHAR)"}, {"answer": "SELECT AVG(fa_cup_goals) FROM table_name_96 WHERE league_cup_apps = \"2\" AND fa_cup_apps = \"3\" AND league_goals = 3", "question": "what is the average ga cup goals when the league cup apps is 2, the fa cup apps is 3 and the league goals is 3?", "context": "CREATE TABLE table_name_96 (fa_cup_goals INTEGER, league_goals VARCHAR, league_cup_apps VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT MAX(fa_cup_goals) FROM table_name_96 WHERE flt_goals > 0", "question": "what is the highest fa cup goals when flt goals is more than 0?", "context": "CREATE TABLE table_name_96 (fa_cup_goals INTEGER, flt_goals INTEGER)"}, {"answer": "SELECT total_apps FROM table_name_80 WHERE league_apps = \"4 (2)\"", "question": "what is the total apps when the league apps is 4 (2)?", "context": "CREATE TABLE table_name_80 (total_apps VARCHAR, league_apps VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_44 WHERE total > 9 AND gold = 14", "question": "How much Silver has a Total larger than 9, and a Gold of 14?", "context": "CREATE TABLE table_name_44 (silver VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT rank FROM table_name_24 WHERE total > 9 AND gold > 6", "question": "Which Rank has a Total larger than 9, and a Gold larger than 6?", "context": "CREATE TABLE table_name_24 (rank VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_36 WHERE rank = \"4\" AND bronze < 12", "question": "How much Silver has a Rank of 4, and a Bronze smaller than 12?", "context": "CREATE TABLE table_name_36 (silver VARCHAR, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_68 WHERE total = 9", "question": "How many bronzes have a Total of 9?", "context": "CREATE TABLE table_name_68 (bronze INTEGER, total VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_37 WHERE nation = \"mongolia\" AND total > 18", "question": "How much Gold has a Nation of mongolia, and a Total larger than 18?", "context": "CREATE TABLE table_name_37 (gold INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT lok_sabha FROM table_name_13 WHERE party_affiliation = \"dravida munnetra kazhagam\" AND duration = \"1999-04\"", "question": "What is the Lok Sabha for Dravida Munnetra Kazhagam, in 1999-04?", "context": "CREATE TABLE table_name_13 (lok_sabha VARCHAR, party_affiliation VARCHAR, duration VARCHAR)"}, {"answer": "SELECT duration FROM table_name_86 WHERE lok_sabha = \"fifth\"", "question": "What is the duration when Lok Sabha shows fifth?", "context": "CREATE TABLE table_name_86 (duration VARCHAR, lok_sabha VARCHAR)"}, {"answer": "SELECT result FROM table_name_50 WHERE date = \"december 20, 1970\"", "question": "What was the result for the game played on December 20, 1970?", "context": "CREATE TABLE table_name_50 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_50 WHERE week = 2", "question": "What was the result for week 2?", "context": "CREATE TABLE table_name_50 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_36 WHERE notes = \"fb\" AND time = \"6:47.30\"", "question": "What is the rank of the athletes that have Notes of fb, and a Time of 6:47.30?", "context": "CREATE TABLE table_name_36 (rank INTEGER, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_80 WHERE time = \"6:36.65\"", "question": "What is the least rank for athletes with a time of 6:36.65?", "context": "CREATE TABLE table_name_80 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT AVG(react) FROM table_name_36 WHERE rank > 8", "question": "What is the average react for a rank more than 8?", "context": "CREATE TABLE table_name_36 (react INTEGER, rank INTEGER)"}, {"answer": "SELECT MAX(rank) FROM table_name_4 WHERE react = 0.198 AND time > 20.42", "question": "What is the highest rank for the react of 0.198, and the time more than 20.42?", "context": "CREATE TABLE table_name_4 (rank INTEGER, react VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(time) FROM table_name_70 WHERE lane > 6 AND nationality = \"canada\" AND react < 0.151", "question": "What is the sum of time with a lane larger than 6, a nationality of canada, and the react smaller than 0.151?", "context": "CREATE TABLE table_name_70 (time INTEGER, react VARCHAR, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT human_gene__protein_ FROM table_name_41 WHERE yeast_ortholog = \"rad26\"", "question": "What human gene has a yeast ortholog of RAD26?", "context": "CREATE TABLE table_name_41 (human_gene__protein_ VARCHAR, yeast_ortholog VARCHAR)"}, {"answer": "SELECT human_gene__protein_ FROM table_name_27 WHERE mouse_ortholog = \"lig1\"", "question": "What is the human gene that has a mouse ortholog of LIG1?", "context": "CREATE TABLE table_name_27 (human_gene__protein_ VARCHAR, mouse_ortholog VARCHAR)"}, {"answer": "SELECT yeast_ortholog FROM table_name_19 WHERE subpathway = \"ggr\" AND genecards_entry = \"cetn2\"", "question": "What is the yeast ortholog that has a subpathway of GGR and GeneCards entry CETN2?", "context": "CREATE TABLE table_name_19 (yeast_ortholog VARCHAR, subpathway VARCHAR, genecards_entry VARCHAR)"}, {"answer": "SELECT yeast_ortholog FROM table_name_18 WHERE mouse_ortholog = \"mms19\"", "question": "What is the yeast ortholog of mouse ortholog MMS19?", "context": "CREATE TABLE table_name_18 (yeast_ortholog VARCHAR, mouse_ortholog VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_67 WHERE opponent = \"vladimir zednik\"", "question": "What is the Tournament against Vladimir Zednik?", "context": "CREATE TABLE table_name_67 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_95 WHERE score = \"4\u20136, 6\u20137, 3\u20136\"", "question": "What Tournament had a Score of 4\u20136, 6\u20137, 3\u20136?", "context": "CREATE TABLE table_name_95 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE outcome = \"runner-up\" AND opponent = \"tim gullikson\"", "question": "What is the Score of the of the Tournament against Tim Gullikson with Outcome of runner-up?", "context": "CREATE TABLE table_name_68 (score VARCHAR, outcome VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT doha_, _qatar FROM table_name_17 WHERE snatch = \"total\"", "question": "What is the Doha, Qatar when the snatch is total?", "context": "CREATE TABLE table_name_17 (doha_ VARCHAR, _qatar VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT doha_, _qatar FROM table_name_93 WHERE snatch = \"clean & jerk\"", "question": "What is the Doha, Qatar when the snatch is clean & jerk?", "context": "CREATE TABLE table_name_93 (doha_ VARCHAR, _qatar VARCHAR, snatch VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_3 WHERE name = \"stephen myler\" AND tries < 0", "question": "How many Points have a Name of stephen myler, and Tries smaller than 0?", "context": "CREATE TABLE table_name_3 (points INTEGER, name VARCHAR, tries VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_34 WHERE college = \"new mexico\"", "question": "What is the pick number for New Mexico?", "context": "CREATE TABLE table_name_34 (pick INTEGER, college VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE team = \"denver broncos\"", "question": "What player is from the Denver Broncos?", "context": "CREATE TABLE table_name_43 (player VARCHAR, team VARCHAR)"}, {"answer": "SELECT college FROM table_name_38 WHERE team = \"new york jets\"", "question": "Which college has their team as the New York Jets?", "context": "CREATE TABLE table_name_38 (college VARCHAR, team VARCHAR)"}, {"answer": "SELECT constituency_number FROM table_name_73 WHERE name = \"total:\"", "question": "What is the Constituency Number of Total:?", "context": "CREATE TABLE table_name_73 (constituency_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT district FROM table_name_43 WHERE constituency_number = \"22\"", "question": "Which District is Constituency number 22?", "context": "CREATE TABLE table_name_43 (district VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT MIN(number_of_electorates__2003_) FROM table_name_85 WHERE district = \"bhind\" AND reserved_for___sc___st__none_ = \"none\" AND constituency_number = \"11\"", "question": "What is the lowest number of Electorates (2003) in District bhind, Reserved for none, and Constituency Number 11?", "context": "CREATE TABLE table_name_85 (number_of_electorates__2003_ INTEGER, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_31 WHERE pick = 33", "question": "What school/club had pick 33?", "context": "CREATE TABLE table_name_31 (school_club_team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_81 WHERE date = \"october 16, 2005\"", "question": "What attendance has October 16, 2005 as the date?", "context": "CREATE TABLE table_name_81 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_25 WHERE week < 16 AND date = \"october 31, 2005\"", "question": "What result has a week less than 16, and October 31, 2005 as the date?", "context": "CREATE TABLE table_name_25 (result VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_37 WHERE manager = \"bobby dews\" AND playoffs = \"lost in 1st round\"", "question": "Which Year has a Manager of bobby dews, and Playoffs of lost in 1st round?", "context": "CREATE TABLE table_name_37 (year INTEGER, manager VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_74 WHERE record = \"73-65\"", "question": "How many years have a Record of 73-65?", "context": "CREATE TABLE table_name_74 (year VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_33 WHERE year > 1974 AND finish = \"3rd\"", "question": "Which Record has a Year larger than 1974, and a Finish of 3rd?", "context": "CREATE TABLE table_name_33 (record VARCHAR, year VARCHAR, finish VARCHAR)"}, {"answer": "SELECT song FROM table_name_14 WHERE year < 1994 AND uk_chart = \"42\"", "question": "Which Song of the Year was 42 on the UK charts prior to 1994?", "context": "CREATE TABLE table_name_14 (song VARCHAR, year VARCHAR, uk_chart VARCHAR)"}, {"answer": "SELECT uk_chart FROM table_name_84 WHERE artist = \"scott fitzgerald\"", "question": "Where did Scott Fitzgerald rank on the UK charts?", "context": "CREATE TABLE table_name_84 (uk_chart VARCHAR, artist VARCHAR)"}, {"answer": "SELECT uk_chart FROM table_name_33 WHERE year > 1961 AND at_eurovision = \"2nd\" AND artist = \"michael ball\"", "question": "Where did the song by Michael Ball, which placed 2nd in Eurovision prior to 1961, place on the UK charts?", "context": "CREATE TABLE table_name_33 (uk_chart VARCHAR, artist VARCHAR, year VARCHAR, at_eurovision VARCHAR)"}, {"answer": "SELECT 3 AS rd_day FROM table_name_65 WHERE year < 2012 AND finish_position = \"33rd\"", "question": "What is the 3rd day result for years under 2012 and a finish position of 33rd?", "context": "CREATE TABLE table_name_65 (year VARCHAR, finish_position VARCHAR)"}, {"answer": "SELECT origin FROM table_name_57 WHERE in_service = 1", "question": "For the vessel with a listed In service of 1, what is the origin given?", "context": "CREATE TABLE table_name_57 (origin VARCHAR, in_service VARCHAR)"}, {"answer": "SELECT MIN(in_service) FROM table_name_71 WHERE vessel = \"xavery czernicki class\"", "question": "What is the lowest listed In service for a vessel of xavery czernicki class?", "context": "CREATE TABLE table_name_71 (in_service INTEGER, vessel VARCHAR)"}, {"answer": "SELECT vessel FROM table_name_72 WHERE type = \"logistic support\"", "question": "Which vessel has a type of logistic support?", "context": "CREATE TABLE table_name_72 (vessel VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_77 WHERE vessel = \"lublin class\"", "question": "What is the type for a vessel of lublin class?", "context": "CREATE TABLE table_name_77 (type VARCHAR, vessel VARCHAR)"}, {"answer": "SELECT MAX(in_service) FROM table_name_37 WHERE unit = \"12th minesweeper squadron\"", "question": "What is the highest In service for a vessel with a listed Unit of 12th minesweeper squadron?", "context": "CREATE TABLE table_name_37 (in_service INTEGER, unit VARCHAR)"}, {"answer": "SELECT type FROM table_name_49 WHERE unit = \"naval base swinoujscie (auxiliary squadron)\"", "question": "What is the type for a vessel with a listed unit of naval base swinoujscie (auxiliary squadron)?", "context": "CREATE TABLE table_name_49 (type VARCHAR, unit VARCHAR)"}, {"answer": "SELECT rider FROM table_name_44 WHERE team = \"600cc yamaha\"", "question": "Which rider was on the 600cc Yamaha team?", "context": "CREATE TABLE table_name_44 (rider VARCHAR, team VARCHAR)"}, {"answer": "SELECT speed FROM table_name_55 WHERE rider = \"john hildreth\"", "question": "What was John Hildreth's speed?", "context": "CREATE TABLE table_name_55 (speed VARCHAR, rider VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_29 WHERE time = \"22:29\"", "question": "What is the average draw number of an entrant with a time of 22:29?", "context": "CREATE TABLE table_name_29 (draw INTEGER, time VARCHAR)"}, {"answer": "SELECT brand FROM table_name_28 WHERE entrant = \"mark henry\"", "question": "What is Mark Henry's brand?", "context": "CREATE TABLE table_name_28 (brand VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT author___editor___source FROM table_name_86 WHERE world_ranking__1_ = \"35\" AND countries_sampled > 100", "question": "Who is the Author/Editor/Source for more than 100 countries sampled and has a 35 world ranking?", "context": "CREATE TABLE table_name_86 (author___editor___source VARCHAR, world_ranking__1_ VARCHAR, countries_sampled VARCHAR)"}, {"answer": "SELECT SUM(countries_sampled) FROM table_name_71 WHERE year_of_publication = \"2010\" AND world_ranking__1_ = \"33\" AND ranking_in_latin_america__2_ < 3", "question": "How many countries sampled has a world ranking of 33 in 2010 and less than 3 ranking in Latin America?", "context": "CREATE TABLE table_name_71 (countries_sampled INTEGER, ranking_in_latin_america__2_ VARCHAR, year_of_publication VARCHAR, world_ranking__1_ VARCHAR)"}, {"answer": "SELECT world_ranking__1_ FROM table_name_87 WHERE year_of_publication = \"2011\" AND ranking_in_latin_america__2_ > 3 AND countries_sampled > 142", "question": "What's the world ranking in 2011 having more than 142 countries sampled, and more than a 3 for ranking in Latin America?", "context": "CREATE TABLE table_name_87 (world_ranking__1_ VARCHAR, countries_sampled VARCHAR, year_of_publication VARCHAR, ranking_in_latin_america__2_ VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_44 WHERE tie_no = \"20\"", "question": "What home team has a tie no of 20?", "context": "CREATE TABLE table_name_44 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE score = \"3\u20133\" AND away_team = \"barnet\"", "question": "What date was the score 3\u20133, and away team was Barnet?", "context": "CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_12 WHERE home_team = \"wimbledon\"", "question": "What is the Tie no when Wimbledon is the home team?", "context": "CREATE TABLE table_name_12 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE tie_no = \"replay\" AND away_team = \"york city\"", "question": "What is the score when the Tie no is replay, and the away team is York City?", "context": "CREATE TABLE table_name_43 (score VARCHAR, tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_83 WHERE away_team = \"chester\"", "question": "What is the Tie no when Chester is the away team?", "context": "CREATE TABLE table_name_83 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT broadcast_date FROM table_name_39 WHERE viewership__millions_ = 9.65", "question": "What is the broadcast date of the episode with 9.65 million viewers?", "context": "CREATE TABLE table_name_39 (broadcast_date VARCHAR, viewership__millions_ VARCHAR)"}, {"answer": "SELECT MIN(viewership__millions_) FROM table_name_54 WHERE broadcast_date = \"7 september 2001\"", "question": "What is the lowest viewership in millions of the episode broadcast on 7 September 2001?", "context": "CREATE TABLE table_name_54 (viewership__millions_ INTEGER, broadcast_date VARCHAR)"}, {"answer": "SELECT episode_number FROM table_name_79 WHERE broadcast_date = \"21 september 2001\"", "question": "What is the episode number of the episode broadcast on 21 September 2001?", "context": "CREATE TABLE table_name_79 (episode_number VARCHAR, broadcast_date VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_65 WHERE points = 8 AND place > 8", "question": "How many times is the points 8 and the place larger than 8?", "context": "CREATE TABLE table_name_65 (draw VARCHAR, points VARCHAR, place VARCHAR)"}, {"answer": "SELECT AVG(draw) FROM table_name_62 WHERE place = 5 AND points > 15", "question": "what is the average draw when the place is 5 and points more than 15?", "context": "CREATE TABLE table_name_62 (draw INTEGER, place VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_54 WHERE points < 11 AND language = \"norwegian\"", "question": "what is the highest draw when points is less than 11 and language is norwegian?", "context": "CREATE TABLE table_name_54 (draw INTEGER, points VARCHAR, language VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_62 WHERE pba_team = \"purefoods tender juicy hotdogs\"", "question": "What is the total number of picks from the PBA team of purefoods tender juicy hotdogs?", "context": "CREATE TABLE table_name_62 (pick VARCHAR, pba_team VARCHAR)"}, {"answer": "SELECT pba_team FROM table_name_50 WHERE college = \"santo tomas\"", "question": "What is the pba team for the player who went to santo tomas college?", "context": "CREATE TABLE table_name_50 (pba_team VARCHAR, college VARCHAR)"}, {"answer": "SELECT pba_team FROM table_name_41 WHERE pick < 11 AND player = \"roberto jabar\"", "question": "What is the PBA team for roberto jabar who was picked before number 11?", "context": "CREATE TABLE table_name_41 (pba_team VARCHAR, pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT most_spoken_language FROM table_name_91 WHERE code > 70403 AND area__km_2__ > 3.79 AND population > 73 OFFSET 283", "question": "What is the Most Spoken language in the Place with Code 70403 with an Area (km 2) larger than 3.79 and a Population larger than 73,283?", "context": "CREATE TABLE table_name_91 (most_spoken_language VARCHAR, population VARCHAR, code VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT COUNT(population) FROM table_name_51 WHERE area__km_2__ > 498.77", "question": "What is the Population of the Place with an Area (km 2) larger than 498.77?", "context": "CREATE TABLE table_name_51 (population VARCHAR, area__km_2__ INTEGER)"}, {"answer": "SELECT MIN(population) FROM table_name_66 WHERE code < 70409 AND area__km_2__ < 5.97 AND place = \"tshepiso\"", "question": "What is the Population of Tshepiso with a Code of 70409 or smaller and an Area (km 2) smaller than 5.97?", "context": "CREATE TABLE table_name_66 (population INTEGER, place VARCHAR, code VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT time FROM table_name_76 WHERE react > 0.187 AND athlete = \"paul hession\"", "question": "What the time of Paul Hession with more than an 0.187 react?", "context": "CREATE TABLE table_name_76 (time VARCHAR, react VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_85 WHERE react < 0.164 AND time = \"20.45\"", "question": "What's the lane number when time was 20.45 and the react was less than 0.164?", "context": "CREATE TABLE table_name_85 (lane INTEGER, react VARCHAR, time VARCHAR)"}, {"answer": "SELECT 1958 FROM table_name_67 WHERE 1957 = \"2\" AND 1956 = \"3\"", "question": "what is 1958 when 1957 is 2 and 1956 is 3?", "context": "CREATE TABLE table_name_67 (Id VARCHAR)"}, {"answer": "SELECT 1955 FROM table_name_78 WHERE 1961 = \"n/a\"", "question": "what is 1955 when 1961 is n/a?", "context": "CREATE TABLE table_name_78 (Id VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE tie_no = \"7\"", "question": "What date has 7 as the tie no.?", "context": "CREATE TABLE table_name_80 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT year FROM table_name_87 WHERE venue = \"beijing\"", "question": "Which year was held in beijing?", "context": "CREATE TABLE table_name_87 (year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_88 WHERE venue = \"eindhoven\"", "question": "How many years had a Venue of eindhoven?", "context": "CREATE TABLE table_name_88 (year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_92 WHERE venue = \"manchester\" AND year = 2009", "question": "Which Competition has a Venue of manchester in 2009?", "context": "CREATE TABLE table_name_92 (competition VARCHAR, venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_4 WHERE position = \"2nd\" AND notes = \"-63kg\" AND venue = \"manchester\"", "question": "Which Year has a Position of 2nd, and Notes of -63kg, and a Venue of manchester?", "context": "CREATE TABLE table_name_4 (year VARCHAR, venue VARCHAR, position VARCHAR, notes VARCHAR)"}, {"answer": "SELECT best FROM table_name_12 WHERE name = \"rodolfo lav\u00edn\"", "question": "Name the the Best of rodolfo lav\u00edn", "context": "CREATE TABLE table_name_12 (best VARCHAR, name VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_15 WHERE team = \"american spirit team johansson\" AND best = \"59.073\"", "question": "Name the Qual 2 of a Team of american spirit team johansson and a Best of 59.073?", "context": "CREATE TABLE table_name_15 (qual_2 VARCHAR, team VARCHAR, best VARCHAR)"}, {"answer": "SELECT best FROM table_name_47 WHERE qual_2 = \"58.700\"", "question": "Name the Best which has a Qual 2 of 58.700?", "context": "CREATE TABLE table_name_47 (best VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_98 WHERE qual_2 = \"58.861\"", "question": "Which Qual 1 has a Qual 2 of 58.861?", "context": "CREATE TABLE table_name_98 (qual_1 VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_76 WHERE qual_2 = \"59.822\"", "question": "Which Qual 1 has a Qual 2 of 59.822?", "context": "CREATE TABLE table_name_76 (qual_1 VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_91 WHERE team = \"team player's\" AND best = \"58.405\"", "question": "Which Qual 1 has a Team of team player's, and a Best of 58.405?", "context": "CREATE TABLE table_name_91 (qual_1 VARCHAR, team VARCHAR, best VARCHAR)"}, {"answer": "SELECT height__m_ FROM table_name_19 WHERE nation = \"sweden (swe)\" AND weight__kg_ = \"102\"", "question": "what is the height (m) when the nation is sweden (swe) and the weight (kg) is 102?", "context": "CREATE TABLE table_name_19 (height__m_ VARCHAR, nation VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT nation FROM table_name_35 WHERE world_rank = \"2\" AND birth_date = \"1976-12-20\"", "question": "what is the nation when the world rank is 2 and the birth date is 1976-12-20?", "context": "CREATE TABLE table_name_35 (nation VARCHAR, world_rank VARCHAR, birth_date VARCHAR)"}, {"answer": "SELECT nation FROM table_name_88 WHERE world_rank = \"6\" AND birth_date = \"1971-07-31\"", "question": "what is the nation when the world rank is 6 and the birth date is 1971-07-31?", "context": "CREATE TABLE table_name_88 (nation VARCHAR, world_rank VARCHAR, birth_date VARCHAR)"}, {"answer": "SELECT birth_date FROM table_name_3 WHERE weight__kg_ = \"100\" AND world_rank = \"2\"", "question": "what is the birth date when the weight (kg) is 100 and the world rank is 2?", "context": "CREATE TABLE table_name_3 (birth_date VARCHAR, weight__kg_ VARCHAR, world_rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_83 WHERE height__m_ = \"1.91\" AND weight__kg_ = \"99\"", "question": "what is the nation when the height (m) is 1.91 and the weight (kg) is 99?", "context": "CREATE TABLE table_name_83 (nation VARCHAR, height__m_ VARCHAR, weight__kg_ VARCHAR)"}, {"answer": "SELECT height__m_ FROM table_name_89 WHERE birth_date = \"1968-07-01\"", "question": "what is the height (m) when the birth date is 1968-07-01?", "context": "CREATE TABLE table_name_89 (height__m_ VARCHAR, birth_date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_80 WHERE time = \"2:12.56\"", "question": "What is the nationality of the athlete with a time of 2:12.56?", "context": "CREATE TABLE table_name_80 (nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_40 WHERE name = \"sara nordenstam\"", "question": "What time did Sara Nordenstam get?", "context": "CREATE TABLE table_name_40 (time VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_52 WHERE name = \"jessica pengelly\"", "question": "What nationality is Jessica Pengelly?", "context": "CREATE TABLE table_name_52 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT league_apps FROM table_name_38 WHERE flt_apps = \"1\" AND total_goals > 0 AND league_goals > 1", "question": "What league apps with 1 flt apps, 0 goals, and more than 1 league goals?", "context": "CREATE TABLE table_name_38 (league_apps VARCHAR, league_goals VARCHAR, flt_apps VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT COUNT(league_goals) FROM table_name_14 WHERE name = \"simon charlton\"", "question": "What is the total number of league goals for Simon Charlton?", "context": "CREATE TABLE table_name_14 (league_goals VARCHAR, name VARCHAR)"}, {"answer": "SELECT place FROM table_name_35 WHERE score = 65 - 70 - 72 = 207", "question": "What was the place when the score was 65-70-72=207?", "context": "CREATE TABLE table_name_35 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE place = \"4\"", "question": "What was the score for place 4?", "context": "CREATE TABLE table_name_21 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT player FROM table_name_93 WHERE score = 67 - 73 - 70 = 210", "question": "Who scored 67-73-70=210?", "context": "CREATE TABLE table_name_93 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(poles) FROM table_name_61 WHERE wins = 0 AND top_5 = 0 AND position = \"66th\"", "question": "What is the lowest poles that have 0 as a win, 0 as the top 5, with 66th as the postion?", "context": "CREATE TABLE table_name_61 (poles INTEGER, position VARCHAR, wins VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT Music AS director FROM table_name_7 WHERE year = 1971 AND movie__in_kannada__ = \"kalyani\"", "question": "Who was the music director in 1971 for the movie Kalyani?", "context": "CREATE TABLE table_name_7 (Music VARCHAR, year VARCHAR, movie__in_kannada__ VARCHAR)"}, {"answer": "SELECT county FROM table_name_99 WHERE median_family_income = \"$50,227\"", "question": "Which county has a median family income of $50,227?", "context": "CREATE TABLE table_name_99 (county VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_86 WHERE 2010 = \"not held\"", "question": "What is the tournament when 2010 is not held?", "context": "CREATE TABLE table_name_86 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_98 WHERE 2008 = \"a\" AND 2012 = \"1r\" AND 2010 = \"q2\" AND 2011 = \"2r\"", "question": "What shows for 2009 when 2008 is A, 2012 is 1r, 2010 is q2, and 2011 is 2r?", "context": "CREATE TABLE table_name_98 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_93 WHERE 2010 = \"q2\" AND 2009 = \"1r\"", "question": "What is the tournament when 2010 is q2, and 2009 is 1r?", "context": "CREATE TABLE table_name_93 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_26 WHERE 2007 = \"wta premier 5 tournaments\"", "question": "What is the tournament when 2007 is WTA Premier 5 tournaments?", "context": "CREATE TABLE table_name_26 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_64 WHERE 2012 = \"q2\"", "question": "What is the tournament when 2012 is q2?", "context": "CREATE TABLE table_name_64 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_2 WHERE 2010 = \"138\"", "question": "What shows for 2008 when 2010 is 138?", "context": "CREATE TABLE table_name_2 (Id VARCHAR)"}, {"answer": "SELECT country FROM table_name_55 WHERE time = \"7:03.91\"", "question": "Which country timed at 7:03.91?", "context": "CREATE TABLE table_name_55 (country VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_87 WHERE country = \"denmark\"", "question": "What did Denmark time at?", "context": "CREATE TABLE table_name_87 (time VARCHAR, country VARCHAR)"}, {"answer": "SELECT internet_explorer FROM table_name_47 WHERE firefox = \"24.98%\"", "question": "What was the internet explorer % when firefox was 24.98%?", "context": "CREATE TABLE table_name_47 (internet_explorer VARCHAR, firefox VARCHAR)"}, {"answer": "SELECT firefox FROM table_name_95 WHERE chrome = \"23.90%\"", "question": "What was the percentage of firefox was chrome was 23.90%", "context": "CREATE TABLE table_name_95 (firefox VARCHAR, chrome VARCHAR)"}, {"answer": "SELECT safari FROM table_name_98 WHERE internet_explorer = \"20.27%\"", "question": "What was the percentage of safari when internet explorer was 20.27%?", "context": "CREATE TABLE table_name_98 (safari VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT firefox FROM table_name_86 WHERE chrome = \"25.08%\"", "question": "What was the firefox % was chrome was 25.08%?", "context": "CREATE TABLE table_name_86 (firefox VARCHAR, chrome VARCHAR)"}, {"answer": "SELECT safari FROM table_name_10 WHERE firefox = \"24.66%\"", "question": "What was the percentage of safari when firefox was 24.66%", "context": "CREATE TABLE table_name_10 (safari VARCHAR, firefox VARCHAR)"}, {"answer": "SELECT label FROM table_name_77 WHERE date = \"february 18, 2009\"", "question": "Which label released on February 18, 2009?", "context": "CREATE TABLE table_name_77 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE format = \"cd\" AND label = \"avex entertainment\"", "question": "When did Avex Entertainment release a CD?", "context": "CREATE TABLE table_name_22 (date VARCHAR, format VARCHAR, label VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE label = \"hollywood records\" AND format = \"digital download\"", "question": "When did Hollywood Records release a digital download?", "context": "CREATE TABLE table_name_87 (date VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT edition FROM table_name_69 WHERE date = \"september 23, 2008\" AND region = \"united states\"", "question": "What kind of edition was released September 23, 2008 from the United States?", "context": "CREATE TABLE table_name_69 (edition VARCHAR, date VARCHAR, region VARCHAR)"}, {"answer": "SELECT format FROM table_name_55 WHERE date = \"april 16, 2009\"", "question": "What format was released April 16, 2009?", "context": "CREATE TABLE table_name_55 (format VARCHAR, date VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_6 WHERE branding = \"1062 dxki koronadal\"", "question": "What's the call sign if the branding is 1062 DXKI Koronadal?", "context": "CREATE TABLE table_name_6 (call_sign VARCHAR, branding VARCHAR)"}, {"answer": "SELECT branding FROM table_name_5 WHERE frequency = \"1233khz\"", "question": "What's the branding for frequency 1233khz?", "context": "CREATE TABLE table_name_5 (branding VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_17 WHERE power__kw_ = \"20kw\"", "question": "What's the call sign that has 20kw of power?", "context": "CREATE TABLE table_name_17 (call_sign VARCHAR, power__kw_ VARCHAR)"}, {"answer": "SELECT location FROM table_name_89 WHERE branding = \"1116 dxas zamboanga\"", "question": "What's the location when the branding is 1116 DXAS Zamboanga?", "context": "CREATE TABLE table_name_89 (location VARCHAR, branding VARCHAR)"}, {"answer": "SELECT location FROM table_name_22 WHERE frequency = \"1197khz\"", "question": "What's the location of the 1197khz frequency?", "context": "CREATE TABLE table_name_22 (location VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_50 WHERE power__kw_ = \"10kw\" AND call_sign = \"dyfr\"", "question": "What's the frequency of the call sign DYFR with 10KW of power?", "context": "CREATE TABLE table_name_50 (frequency VARCHAR, power__kw_ VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_38 WHERE country = \"hungary\"", "question": "What is Hungary's highest Rank?", "context": "CREATE TABLE table_name_38 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT notes FROM table_name_31 WHERE rank = 4", "question": "What is the Notes of the Country with a Rank of 4?", "context": "CREATE TABLE table_name_31 (notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT country FROM table_name_14 WHERE time = \"6:14.84\"", "question": "What country had a Time of 6:14.84?", "context": "CREATE TABLE table_name_14 (country VARCHAR, time VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_36 WHERE lane = 5 AND time = \"7:08.04\"", "question": "Which Nationality has a Lane of 5, and a Time of 7:08.04?", "context": "CREATE TABLE table_name_36 (nationality VARCHAR, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(heat) FROM table_name_16 WHERE rank = 8", "question": "Which Heat has a Rank of 8?", "context": "CREATE TABLE table_name_16 (heat INTEGER, rank VARCHAR)"}, {"answer": "SELECT season FROM table_name_88 WHERE finals = \"out of playoffs.\"", "question": "Which Season has Finals of out of playoffs.?", "context": "CREATE TABLE table_name_88 (season VARCHAR, finals VARCHAR)"}, {"answer": "SELECT assist_pass FROM table_name_22 WHERE location = \"albufeira\"", "question": "What's Albufeira's assist/pass?", "context": "CREATE TABLE table_name_22 (assist_pass VARCHAR, location VARCHAR)"}, {"answer": "SELECT lineup FROM table_name_42 WHERE assist_pass = \"unassisted\"", "question": "What's the lineup when the assist/pass was Unassisted?", "context": "CREATE TABLE table_name_42 (lineup VARCHAR, assist_pass VARCHAR)"}, {"answer": "SELECT date FROM table_name_13 WHERE result = \"3-1\" AND location = \"hague\"", "question": "What date was the result 3-1 in Hague?", "context": "CREATE TABLE table_name_13 (date VARCHAR, result VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_35 WHERE rank = \"total\" AND silver < 10", "question": "what is the total when the rank is total and the silver is less than 10?", "context": "CREATE TABLE table_name_35 (total INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_93 WHERE gold < 0", "question": "what is the least silver when gold is 0?", "context": "CREATE TABLE table_name_93 (silver INTEGER, gold INTEGER)"}, {"answer": "SELECT COUNT(silver) FROM table_name_85 WHERE total = 30 AND bronze > 10", "question": "what is the total silver when total is 30 and bronze is more than 10?", "context": "CREATE TABLE table_name_85 (silver VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_37 WHERE bronze > 1 AND nation = \"hong kong (hkg)\" AND gold < 3", "question": "what is the total when bronze is more than 1, nation is hong kong (hkg) and gold is less than 3?", "context": "CREATE TABLE table_name_37 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT position FROM table_name_92 WHERE class = \"a\" AND laps = 125", "question": "The driver in class A with 125 laps is in what position?", "context": "CREATE TABLE table_name_92 (position VARCHAR, class VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_53 WHERE entrant = \"peter hopwood\"", "question": "Peter Hopwood has how many laps in all?", "context": "CREATE TABLE table_name_53 (laps VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT class FROM table_name_65 WHERE laps = 66", "question": "For what class is the laps 66?", "context": "CREATE TABLE table_name_65 (class VARCHAR, laps VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_78 WHERE average > 6.33 AND rank = 1", "question": "What is the number of matches with an average larger than 6.33, with a rank of 1?", "context": "CREATE TABLE table_name_78 (matches INTEGER, average VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_41 WHERE matches < 3 AND rank < 2", "question": "What is the total when matches is less than 3, and rank is smaller than 2?", "context": "CREATE TABLE table_name_41 (total INTEGER, matches VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_27 WHERE tally = \"3\u201311\" AND matches > 4", "question": "What is the average when the tally is 3\u201311, with more than 4 matches??", "context": "CREATE TABLE table_name_27 (average VARCHAR, tally VARCHAR, matches VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_23 WHERE average = 6.33", "question": "What rank has an average of 6.33?", "context": "CREATE TABLE table_name_23 (rank INTEGER, average VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_6 WHERE pos = \"dnf\"", "question": "What is the average number of laps with a dnf pos.?", "context": "CREATE TABLE table_name_6 (laps INTEGER, pos VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_77 WHERE country = \"guam\"", "question": "What is the lowest Rank for a Guam Player?", "context": "CREATE TABLE table_name_77 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_83 WHERE country = \"guam\"", "question": "What is the Rank of the Guam Player?", "context": "CREATE TABLE table_name_83 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_8 WHERE result = \"l 20\u201313\" AND attendance > 49 OFFSET 598", "question": "Which Week has a Result of l 20\u201313, and an Attendance larger than 49,598?", "context": "CREATE TABLE table_name_8 (week INTEGER, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_12 WHERE opponent = \"at san francisco 49ers\" AND attendance < 34 OFFSET 354", "question": "How many weeks have an Opponent of at san francisco 49ers, and an Attendance smaller than 34,354?", "context": "CREATE TABLE table_name_12 (week VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT result FROM table_name_3 WHERE opponent = \"washington redskins\"", "question": "Which Result has an Opponent of washington redskins?", "context": "CREATE TABLE table_name_3 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_78 WHERE opponent = \"dallas cowboys\"", "question": "What week did the dallas cowboys play?", "context": "CREATE TABLE table_name_78 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT AVG(react) FROM table_name_53 WHERE time < 20.05 AND nationality = \"jamaica\" AND lane > 5", "question": "Name the average React of the Time smaller than 20.05 in jamaica with a Lane larger than 5?", "context": "CREATE TABLE table_name_53 (react INTEGER, lane VARCHAR, time VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT fencing_victories__pts_ FROM table_name_61 WHERE shooting_score__pts_ = \"187 (1180)\" AND total < 5640", "question": "Which Fencing Victories (pts) has a Shooting Score (pts) of 187 (1180) and a Total smaller than 5640? Question 1", "context": "CREATE TABLE table_name_61 (fencing_victories__pts_ VARCHAR, shooting_score__pts_ VARCHAR, total VARCHAR)"}, {"answer": "SELECT equestrian_time__pts_ FROM table_name_3 WHERE athlete = \"omnia fakhry ( egy )\"", "question": "Which Equestrian Time (pts) has an Athlete of omnia fakhry ( egy )?", "context": "CREATE TABLE table_name_3 (equestrian_time__pts_ VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT shooting_score__pts_ FROM table_name_7 WHERE total > 5464 AND athlete = \"heather fell ( gbr )\"", "question": "Which Shooting Score (pts) has a Total larger than 5464 and a Athlete of heather fell ( gbr )?", "context": "CREATE TABLE table_name_7 (shooting_score__pts_ VARCHAR, total VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT fencing_victories__pts_ FROM table_name_78 WHERE equestrian_time__pts_ = \"67.88 (1144)\"", "question": "Which Fencing Victories (pts) that has a Equestrian Time (pts) of 67.88 (1144)?", "context": "CREATE TABLE table_name_78 (fencing_victories__pts_ VARCHAR, equestrian_time__pts_ VARCHAR)"}, {"answer": "SELECT fencing_victories__pts_ FROM table_name_68 WHERE total = 5640", "question": "Which Fencing Victories (pts) has a Total of 5640?", "context": "CREATE TABLE table_name_68 (fencing_victories__pts_ VARCHAR, total VARCHAR)"}, {"answer": "SELECT position FROM table_name_24 WHERE pick < 15 AND college = \"rice\"", "question": "What position did the player from Rice College play who was picked under 15?", "context": "CREATE TABLE table_name_24 (position VARCHAR, pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_72 WHERE pick = 14", "question": "What position did pick 14 play?", "context": "CREATE TABLE table_name_72 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_34 WHERE position = \"linebacker\" AND team = \"denver broncos\"", "question": "What pick number did the linebacker from the denver broncos get?", "context": "CREATE TABLE table_name_34 (pick VARCHAR, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT college FROM table_name_3 WHERE position = \"quarterback\"", "question": "What college was the quarterback from?", "context": "CREATE TABLE table_name_3 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_3 WHERE team = \"san diego chargers\"", "question": "What is the lowest number pick from san diego chargers?", "context": "CREATE TABLE table_name_3 (pick INTEGER, team VARCHAR)"}, {"answer": "SELECT years FROM table_name_72 WHERE type_code = \"cubic centimetres (cuin) v8 ( m273 )\"", "question": "Which Years has a Type/code of cubic centimetres (cuin) v8 ( m273 )?", "context": "CREATE TABLE table_name_72 (years VARCHAR, type_code VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_37 WHERE name = \"sun yang\" AND lane < 2", "question": "What is the total heat number of sun yang, who has a lane less than 2?", "context": "CREATE TABLE table_name_37 (heat VARCHAR, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT name FROM table_name_35 WHERE time = \"3:50.90\"", "question": "Who has a time of 3:50.90?", "context": "CREATE TABLE table_name_35 (name VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_47 WHERE heat = 5 AND lane = 3", "question": "What is the time of lane 3 in heat 5?", "context": "CREATE TABLE table_name_47 (time VARCHAR, heat VARCHAR, lane VARCHAR)"}, {"answer": "SELECT heat FROM table_name_77 WHERE lane = 3 AND time = \"3:45.57\"", "question": "What is the heat with a time of 3:45.57 in lane 3?", "context": "CREATE TABLE table_name_77 (heat VARCHAR, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_31 WHERE time = \"6:39.49\"", "question": "Who are the Rowers with a Time of 6:39.49?", "context": "CREATE TABLE table_name_31 (rowers VARCHAR, time VARCHAR)"}, {"answer": "SELECT country FROM table_name_11 WHERE rank = 4", "question": "What is the Country of the rowers with a Rank of 4?", "context": "CREATE TABLE table_name_11 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT county FROM table_name_85 WHERE mascot = \"red ramblers\"", "question": "What counties mascot are the Red Ramblers?", "context": "CREATE TABLE table_name_85 (county VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_40 WHERE county = \"83 vermillion\"", "question": "What is the IHSAA class when the county was 83 vermillion?", "context": "CREATE TABLE table_name_40 (ihsaa_class VARCHAR, county VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_27 WHERE location = \"rockville\"", "question": "What is the enrollment number for Rockville?", "context": "CREATE TABLE table_name_27 (enrollment VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_87 WHERE opponent = \"minnesota vikings\"", "question": "What is the Attendance of the game against Minnesota Vikings?", "context": "CREATE TABLE table_name_87 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(score) FROM table_name_71 WHERE player = \"s\u00f8ren kjeldsen\"", "question": "what is the average score for s\u00f8ren kjeldsen?", "context": "CREATE TABLE table_name_71 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_31 WHERE club = \"south warrnambool\" AND draws < 0", "question": "What's the against of South Warrnambool when the draw is less than 0?", "context": "CREATE TABLE table_name_31 (against INTEGER, club VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_29 WHERE against < 1299 AND wins > 7 AND club = \"warrnambool\" AND losses < 2", "question": "What's the smallest draw of Warrnambool when the against was less than 1299, more than 7 wins, and less than 2 losses?", "context": "CREATE TABLE table_name_29 (draws INTEGER, losses VARCHAR, club VARCHAR, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_47 WHERE losses = 13 AND draws > 0", "question": "What's the against when the draw was more than 0 and had 13 losses?", "context": "CREATE TABLE table_name_47 (against VARCHAR, losses VARCHAR, draws VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_86 WHERE losses > 2 AND wins > 3 AND draws > 0", "question": "What's the against when there were more than 2 losses, more than 3 wins, and draws more than 0?", "context": "CREATE TABLE table_name_86 (against INTEGER, draws VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_81 WHERE club = \"camperdown\" AND against < 945", "question": "What's the highest amount of losses of Camperdown when the against was less than 945?", "context": "CREATE TABLE table_name_81 (losses INTEGER, club VARCHAR, against VARCHAR)"}, {"answer": "SELECT SUM(league_goals) FROM table_name_51 WHERE fa_cup_goals > 0", "question": "what is the sum of league goals when the fa cup goals is more than 0?", "context": "CREATE TABLE table_name_51 (league_goals INTEGER, fa_cup_goals INTEGER)"}, {"answer": "SELECT AVG(league_cup_goals) FROM table_name_98 WHERE league_cup_apps = 4 AND league_goals < 4 AND fa_cup_apps = \"1\" AND total_apps = \"35\"", "question": "what is the average league cup goals when the league cup apps is 4, league goals is less than 4, fa cup apps is 1 and total apps is 35?", "context": "CREATE TABLE table_name_98 (league_cup_goals INTEGER, total_apps VARCHAR, fa_cup_apps VARCHAR, league_cup_apps VARCHAR, league_goals VARCHAR)"}, {"answer": "SELECT AVG(league_cup_goals) FROM table_name_78 WHERE position = \"df\" AND total_goals > 4", "question": "what is the average league cup goals when the position is df and total goals is more than 4?", "context": "CREATE TABLE table_name_78 (league_cup_goals INTEGER, position VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT AVG(fa_cup_goals) FROM table_name_80 WHERE fa_cup_apps = \"0\" AND total_goals < 1 AND position = \"df\"", "question": "what is the average fa cup goals when the fa cup apps is 0, total goals is less than 1 and position is df?", "context": "CREATE TABLE table_name_80 (fa_cup_goals INTEGER, position VARCHAR, fa_cup_apps VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_67 WHERE score = \"0.586\"", "question": "What year had a score of 0.586?", "context": "CREATE TABLE table_name_67 (year VARCHAR, score VARCHAR)"}, {"answer": "SELECT n_africa_rank FROM table_name_54 WHERE year = 2012 AND cplp_rank = \"n/a\"", "question": "What's the n Africa in 2012 with an N/A as the CPLP?", "context": "CREATE TABLE table_name_54 (n_africa_rank VARCHAR, year VARCHAR, cplp_rank VARCHAR)"}, {"answer": "SELECT finals_venue FROM table_name_23 WHERE number_of_delegates = \"82\"", "question": "What was the final venue for 82 delegates?", "context": "CREATE TABLE table_name_23 (finals_venue VARCHAR, number_of_delegates VARCHAR)"}, {"answer": "SELECT artist FROM table_name_86 WHERE record_label = \"vertigo\"", "question": "Which Artist has a Record label of vertigo?", "context": "CREATE TABLE table_name_86 (artist VARCHAR, record_label VARCHAR)"}, {"answer": "SELECT president FROM table_name_57 WHERE c_span_2009 = \"21\"", "question": "Who is the president when c-span 2009 is 21?", "context": "CREATE TABLE table_name_57 (president VARCHAR, c_span_2009 VARCHAR)"}, {"answer": "SELECT c_span_2009 FROM table_name_80 WHERE times_2008 * * = \"08\"", "question": "what is c-span 2009 when times 2008** is 08?", "context": "CREATE TABLE table_name_80 (c_span_2009 VARCHAR, times_2008 VARCHAR)"}, {"answer": "SELECT siena_2002 FROM table_name_96 WHERE president = \"andrew jackson\"", "question": "what is siena 2002 when the president is andrew jackson?", "context": "CREATE TABLE table_name_96 (siena_2002 VARCHAR, president VARCHAR)"}, {"answer": "SELECT location FROM table_name_14 WHERE home_ground = \"mong kok stadium\"", "question": "Which Location has a Home Ground of Mong kok stadium?", "context": "CREATE TABLE table_name_14 (location VARCHAR, home_ground VARCHAR)"}, {"answer": "SELECT club FROM table_name_14 WHERE league_division = \"first division\"", "question": "Which club is in the First division?", "context": "CREATE TABLE table_name_14 (club VARCHAR, league_division VARCHAR)"}, {"answer": "SELECT home_ground FROM table_name_39 WHERE location = \"n/a\" AND club = \"kcdrsc\"", "question": "What is the Home Ground with the Location n/a for the Club kcdrsc?", "context": "CREATE TABLE table_name_39 (home_ground VARCHAR, location VARCHAR, club VARCHAR)"}, {"answer": "SELECT league_division FROM table_name_29 WHERE location = \"n/a\"", "question": "What League/Division has a Location of n/a?", "context": "CREATE TABLE table_name_29 (league_division VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_67 WHERE league_division = \"second division\" AND position_in_2012_13 = \"4th, third division (promoted)\"", "question": "What Location is in the second division and has 4th, third division (promoted) as its Position in 2012-13?", "context": "CREATE TABLE table_name_67 (location VARCHAR, league_division VARCHAR, position_in_2012_13 VARCHAR)"}, {"answer": "SELECT rank FROM table_name_76 WHERE time = \"7:16.13\"", "question": "What was the rank of the team who raced at a time of 7:16.13?", "context": "CREATE TABLE table_name_76 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_19 WHERE country = \"greece\"", "question": "What is the total number of rank for the country of greece?", "context": "CREATE TABLE table_name_19 (rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_67 WHERE rank < 5 AND notes = \"fb\"", "question": "What country were the athletes where ranked smaller than 5 with notes listed as fb?", "context": "CREATE TABLE table_name_67 (country VARCHAR, rank VARCHAR, notes VARCHAR)"}, {"answer": "SELECT time FROM table_name_63 WHERE country = \"united states\"", "question": "What is the time for the race with the United States?", "context": "CREATE TABLE table_name_63 (time VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(shirt_no) FROM table_name_63 WHERE birth_date = \"april 12, 1986 (age27)\"", "question": "What shirt No has a Birth Date of April 12, 1986 (age27)?", "context": "CREATE TABLE table_name_63 (shirt_no INTEGER, birth_date VARCHAR)"}, {"answer": "SELECT position FROM table_name_54 WHERE height > 179 AND player = \"ezgi arslan\"", "question": "What position that has a Height larger than 179, and Player is Ezgi Arslan?", "context": "CREATE TABLE table_name_54 (position VARCHAR, height VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(shirt_no) FROM table_name_11 WHERE position = \"setter\" AND nationality = \"italy\" AND height > 172", "question": "What is the shirt no with a position of setter, a nationality of Italy, and height larger than 172?", "context": "CREATE TABLE table_name_11 (shirt_no INTEGER, height VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT player FROM table_name_36 WHERE position = \"middle blocker\" AND nationality = \"turkey\" AND shirt_no = 8", "question": "What player that has a position of middle blocker, a Nationality of Turkey, and shirt no is 8?", "context": "CREATE TABLE table_name_36 (player VARCHAR, shirt_no VARCHAR, position VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT player FROM table_name_90 WHERE nationality = \"turkey\" AND height < 183 AND shirt_no < 19 AND birth_date = \"june 27, 1993 (age20)\"", "question": "What player that has a Nationality of Turkey, a Height smaller than 183, a shirt no smaller than 19, and a birth date of June 27, 1993 (age20)?", "context": "CREATE TABLE table_name_90 (player VARCHAR, birth_date VARCHAR, shirt_no VARCHAR, nationality VARCHAR, height VARCHAR)"}, {"answer": "SELECT nation FROM table_name_3 WHERE gold = 29", "question": "Which nation won 29 gold medals?", "context": "CREATE TABLE table_name_3 (nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_51 WHERE total = 1 AND rank = \"12\" AND gold < 1", "question": "What is the fewest number of bronze medals won among the nations ranked 12 that won no gold medals and 1 medal overall?", "context": "CREATE TABLE table_name_51 (bronze INTEGER, gold VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_98 WHERE frequency_mhz > 89.3 AND city_of_license = \"portales, new mexico\"", "question": "What is the FCC info for the translator with frequency over 89.3MHz and licensd in Portales, New Mexico?", "context": "CREATE TABLE table_name_98 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT ship FROM table_name_30 WHERE location = \"devonport, devon\"", "question": "Which ship was launched from Devonport, Devon?", "context": "CREATE TABLE table_name_30 (ship VARCHAR, location VARCHAR)"}, {"answer": "SELECT country FROM table_name_41 WHERE builder = \"royal dockyard\" AND ship = \"pegasus\"", "question": "What country was the Pegasus, build by Royal Dockyard, from?", "context": "CREATE TABLE table_name_41 (country VARCHAR, builder VARCHAR, ship VARCHAR)"}, {"answer": "SELECT builder FROM table_name_60 WHERE country = \"united kingdom\" AND ship = \"gannet\"", "question": "Who was the builder of Gannet from the United Kingdom?", "context": "CREATE TABLE table_name_60 (builder VARCHAR, country VARCHAR, ship VARCHAR)"}, {"answer": "SELECT builder FROM table_name_12 WHERE ship = \"nor\"", "question": "Who was the builder of Nor?", "context": "CREATE TABLE table_name_12 (builder VARCHAR, ship VARCHAR)"}, {"answer": "SELECT builder FROM table_name_37 WHERE country = \"norway\" AND ship = \"brage\"", "question": "Who was the builder of Brage from Norway?", "context": "CREATE TABLE table_name_37 (builder VARCHAR, country VARCHAR, ship VARCHAR)"}, {"answer": "SELECT country FROM table_name_23 WHERE builder = \"karljohansverns verft\" AND ship = \"brage\"", "question": "What country was Brage, built by karljohansverns verft, from?", "context": "CREATE TABLE table_name_23 (country VARCHAR, builder VARCHAR, ship VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_31 WHERE total = 11 AND gold < 8", "question": "Which Silver has a Total of 11, and a Gold smaller than 8?", "context": "CREATE TABLE table_name_31 (silver INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_37 WHERE total = 1 AND rank = \"12\"", "question": "Which Silver has a Total of 1, and a Rank of 12?", "context": "CREATE TABLE table_name_37 (silver INTEGER, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT ihsaa_football_class FROM table_name_71 WHERE school = \"wood memorial\"", "question": "Which IHSAA Football Class has a School of wood memorial?", "context": "CREATE TABLE table_name_71 (ihsaa_football_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT ihsaa_football_class FROM table_name_14 WHERE county = \"77 sullivan\" AND school = \"union dugger\"", "question": "Which IHSAA Football Class has a County of 77 sullivan, and a School of union dugger?", "context": "CREATE TABLE table_name_14 (ihsaa_football_class VARCHAR, county VARCHAR, school VARCHAR)"}, {"answer": "SELECT ihsaa_football_class FROM table_name_17 WHERE enrollment = 406", "question": "Which IHSAA Football Class has an Enrollment of 406?", "context": "CREATE TABLE table_name_17 (ihsaa_football_class VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT MAX(size) FROM table_name_69 WHERE county = \"62 perry\"", "question": "Which Size has a County of 62 perry?", "context": "CREATE TABLE table_name_69 (size INTEGER, county VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_84 WHERE size > 511", "question": "Which IHSAA Class has a Size larger than 511?", "context": "CREATE TABLE table_name_84 (ihsaa_class VARCHAR, size INTEGER)"}, {"answer": "SELECT ihsaa_class FROM table_name_4 WHERE school = \"mitchell\"", "question": "Which IHSAA Class has a School of mitchell?", "context": "CREATE TABLE table_name_4 (ihsaa_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT county FROM table_name_95 WHERE size > 258 AND mascot = \"commodores\"", "question": "Which County has a Size larger than 258, and a Mascot of commodores?", "context": "CREATE TABLE table_name_95 (county VARCHAR, size VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT lineup FROM table_name_33 WHERE match = \"2\"", "question": "What was her place in the lineup on match 2?", "context": "CREATE TABLE table_name_33 (lineup VARCHAR, match VARCHAR)"}, {"answer": "SELECT record FROM table_name_55 WHERE date = \"2/17/1974\"", "question": "What is the record of the game played on 2/17/1974?", "context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_91 WHERE opposition = \"79,122\"", "question": "Which stadium had the opposition of 79,122?", "context": "CREATE TABLE table_name_91 (stadium VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT notes FROM table_name_52 WHERE rank = 1", "question": "What are the notes of the number 1 rank?", "context": "CREATE TABLE table_name_52 (notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_30 WHERE notes = \"fb\" AND time = \"5:54.57\"", "question": "What's the rank if the time was 5:54.57 and FB in notes?", "context": "CREATE TABLE table_name_30 (rank VARCHAR, notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_96 WHERE time = \"5:54.57\"", "question": "Who are the rowers with the time of 5:54.57?", "context": "CREATE TABLE table_name_96 (rowers VARCHAR, time VARCHAR)"}, {"answer": "SELECT notes FROM table_name_31 WHERE country = \"united states\"", "question": "What are the notes of the United States?", "context": "CREATE TABLE table_name_31 (notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT gold FROM table_name_28 WHERE bronze > 1 AND total < 10 AND silver = 3", "question": "What is the gold for a bronze larger than 1, with a total smaller than 10, and a silver of 3?", "context": "CREATE TABLE table_name_28 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_23 WHERE silver > 2 AND gold > 1 AND nation = \"total\"", "question": "What is the average total when the silver is larger than 2, and a gold larger than 1, and a nation of total?", "context": "CREATE TABLE table_name_23 (total INTEGER, nation VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_5 WHERE rank = \"11\" AND bronze < 1", "question": "When the rank is 11, and bronze a smaller than 1 what is the lowest total?", "context": "CREATE TABLE table_name_5 (total INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(a_score) FROM table_name_50 WHERE b_score = 9.05 AND position > 6", "question": "What was the A Score when the B Score was 9.05, and position was larger than 6?", "context": "CREATE TABLE table_name_50 (a_score INTEGER, b_score VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_70 WHERE b_score = 9.15 AND gymnast = \"cheng fei ( chn )\"", "question": "What is the total when the B Score was 9.15 for Cheng Fei ( chn )?", "context": "CREATE TABLE table_name_70 (total INTEGER, b_score VARCHAR, gymnast VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_47 WHERE b_score < 9.05 AND total = 15.275 AND a_score > 6.4", "question": "What was their position when the score of B was less than 9.05, a total was 15.275, and A Score larger than 6.4?", "context": "CREATE TABLE table_name_47 (position INTEGER, a_score VARCHAR, b_score VARCHAR, total VARCHAR)"}, {"answer": "SELECT position FROM table_name_57 WHERE b_score > 8.975 AND gymnast = \"ekaterina kramarenko ( rus )\"", "question": "What is their position when the b score is more than 8.975 for Ekaterina Kramarenko ( rus )?", "context": "CREATE TABLE table_name_57 (position VARCHAR, b_score VARCHAR, gymnast VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_16 WHERE genre = \"third-person shooter\"", "question": "What year had Third-Person Shooter?", "context": "CREATE TABLE table_name_16 (year INTEGER, genre VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_93 WHERE game = \"portal\"", "question": "What year was Portal?", "context": "CREATE TABLE table_name_93 (year INTEGER, game VARCHAR)"}, {"answer": "SELECT developer_s_ FROM table_name_22 WHERE genre = \"adventure\"", "question": "Who was the developer(s) of the genre Adventure?", "context": "CREATE TABLE table_name_22 (developer_s_ VARCHAR, genre VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_80 WHERE genre = \"rpg\"", "question": "What's the platform of the genre RPG?", "context": "CREATE TABLE table_name_80 (platform_s_ VARCHAR, genre VARCHAR)"}, {"answer": "SELECT genre FROM table_name_41 WHERE developer_s_ = \"lionhead studios\"", "question": "What's the genre of developer(s) Lionhead Studios?", "context": "CREATE TABLE table_name_41 (genre VARCHAR, developer_s_ VARCHAR)"}, {"answer": "SELECT year FROM table_name_57 WHERE genre = \"adventure\"", "question": "What's year was the genre Adventure?", "context": "CREATE TABLE table_name_57 (year VARCHAR, genre VARCHAR)"}, {"answer": "SELECT elevated FROM table_name_75 WHERE cardinalatial_order_and_title = \"cardinal-deacon of s. giorgio in velabro\"", "question": "When was Cardinal-Deacon of S. Giorgio in Velabro elevated?", "context": "CREATE TABLE table_name_75 (elevated VARCHAR, cardinalatial_order_and_title VARCHAR)"}, {"answer": "SELECT cardinalatial_order_and_title FROM table_name_84 WHERE elector = \"pedro mart\u00ednez de luna y gotor\"", "question": "What is the Cardinalatial order and title that Pedro Mart\u00ednez de Luna y Gotor elevated?", "context": "CREATE TABLE table_name_84 (cardinalatial_order_and_title VARCHAR, elector VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_49 WHERE cardinalatial_order_and_title = \"cardinal-priest of ss. xii apostoli\"", "question": "What is the nationality of the elector withe the Cardinalatial order and title of Cardinal-Priest of Ss. XII Apostoli?", "context": "CREATE TABLE table_name_49 (nationality VARCHAR, cardinalatial_order_and_title VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_47 WHERE runner_s__up = \"jack nicklaus\"", "question": "What Tournament had Jack Nicklaus as Runner(s)-up?", "context": "CREATE TABLE table_name_47 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE winning_score = \u22129(65 - 71 - 68 - 67 = 271)", "question": "What is the Date of the Tournament with a Winning score of \u22129 (65-71-68-67=271)?", "context": "CREATE TABLE table_name_55 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_15 WHERE runner_s__up = \"jack nicklaus\"", "question": "What is the Winning Score of the Tournament with Jack Nicklaus as Runner(s)-up?", "context": "CREATE TABLE table_name_15 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_70 WHERE tournament = \"kemper open\"", "question": "What is the Runner(s)-up of the Kemper Open Tournament?", "context": "CREATE TABLE table_name_70 (runner_s__up VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT week FROM table_name_33 WHERE date = \"december 19, 2004\"", "question": "What week has December 19, 2004 as the date?", "context": "CREATE TABLE table_name_33 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_74 WHERE tv_time = \"espn 8:30pm\"", "question": "What is the highest week that has espn 8:30pm as the TV time?", "context": "CREATE TABLE table_name_74 (week INTEGER, tv_time VARCHAR)"}, {"answer": "SELECT result FROM table_name_36 WHERE opponent = \"miami dolphins\"", "question": "What result has miami dolphins as the opponent?", "context": "CREATE TABLE table_name_36 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_88 WHERE heat = 3 AND lane > 3 AND nationality = \"chinese taipei\"", "question": "What is the Time of the swimmer from Chinese Taipei in Heat 3?", "context": "CREATE TABLE table_name_88 (time VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR)"}, {"answer": "SELECT AVG(dolphins_points) FROM table_name_88 WHERE opponent = \"buffalo bills\" AND attendance < 69 OFFSET 313", "question": "What's the Dolphin Points when the attendance was less than 69,313 and had an opponent of the Buffalo Bills?", "context": "CREATE TABLE table_name_88 (dolphins_points INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_53 WHERE attendance = 71 OFFSET 962", "question": "What's the game with an attendance of 71,962?", "context": "CREATE TABLE table_name_53 (game INTEGER, attendance VARCHAR)"}, {"answer": "SELECT Final AS week_12 FROM table_name_8 WHERE week_1 = \"deepak p rahul\" AND week_3 = \"amit carol\"", "question": "What was the week 12 standing for the housemate that nominated Deepak P Rahul in week 1 and Amit Carol in week 3?", "context": "CREATE TABLE table_name_8 (Final VARCHAR, week_1 VARCHAR, week_3 VARCHAR)"}, {"answer": "SELECT week_6 FROM table_name_60 WHERE week_3 = \"kashmera rakhi\" AND week_1 = \"amit bobby\"", "question": "Who did the housemate that nominated Kashmera Rakhi in week 3 and Amit Bobby in week 1 nominate in week 6?", "context": "CREATE TABLE table_name_60 (week_6 VARCHAR, week_3 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT week_8 FROM table_name_52 WHERE week_1 = \"carol roopali\"", "question": "Who did the housemate that nominated Carol Roopali in week 1 nominate in week 8?", "context": "CREATE TABLE table_name_52 (week_8 VARCHAR, week_1 VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_92 WHERE ihsaa_football_class = \"aa\" AND school = \"centerville\"", "question": "What is the IHSAA class of Centerville, which plays IHSAA class AA football?", "context": "CREATE TABLE table_name_92 (ihsaa_class VARCHAR, ihsaa_football_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT location FROM table_name_99 WHERE ihsaa_football_class = \"aa\" AND school = \"winchester community\"", "question": "Winchester Community school, which plays IHSAA class AA football, is located where?", "context": "CREATE TABLE table_name_99 (location VARCHAR, ihsaa_football_class VARCHAR, school VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_51 WHERE size < 400 AND mascot = \"tigers\"", "question": "What is the IHSAA class of the school with less than 400 students and a mascot of the Tigers?", "context": "CREATE TABLE table_name_51 (ihsaa_class VARCHAR, size VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT county FROM table_name_81 WHERE ihsaa_football_class = \"a\" AND size < 301", "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 MIN(game) FROM table_name_53 WHERE score = \"102-104\"", "question": "What is the lowest game when the score is 102-104?", "context": "CREATE TABLE table_name_53 (game INTEGER, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE game = 4", "question": "what is the score for game 4?", "context": "CREATE TABLE table_name_49 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT series FROM table_name_88 WHERE game = 4", "question": "what is the series for game 4?", "context": "CREATE TABLE table_name_88 (series VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(pendle) FROM table_name_47 WHERE burnley < 0", "question": "Which Pendle has a Burnley smaller than 0?", "context": "CREATE TABLE table_name_47 (pendle INTEGER, burnley INTEGER)"}, {"answer": "SELECT COUNT(rossendale) FROM table_name_95 WHERE fylde < 0", "question": "How much Rossendale has a Fylde smaller than 0?", "context": "CREATE TABLE table_name_95 (rossendale VARCHAR, fylde INTEGER)"}, {"answer": "SELECT SUM(hyndburn) FROM table_name_52 WHERE fylde > 3", "question": "How much Hyndburn has a Fylde larger than 3?", "context": "CREATE TABLE table_name_52 (hyndburn INTEGER, fylde INTEGER)"}, {"answer": "SELECT SUM(burnley) FROM table_name_97 WHERE fylde < 1 AND rossendale > 0", "question": "How much Burnley has a Fylde smaller than 1, and a Rossendale larger than 0?", "context": "CREATE TABLE table_name_97 (burnley INTEGER, fylde VARCHAR, rossendale VARCHAR)"}, {"answer": "SELECT years FROM table_name_45 WHERE soap_opera = \"un posto al sole\" AND actor = \"riccardo polizzy carbonelli\"", "question": "What are the years that have un posto al sole as the soap opera, with riccardo polizzy carbonelli as the actor?", "context": "CREATE TABLE table_name_45 (years VARCHAR, soap_opera VARCHAR, actor VARCHAR)"}, {"answer": "SELECT years FROM table_name_26 WHERE duration = \"18 years\" AND actor = \"patrizio rispo\"", "question": "What years have a duration of 18 years, and patrizio rispo as the actor?", "context": "CREATE TABLE table_name_26 (years VARCHAR, duration VARCHAR, actor VARCHAR)"}, {"answer": "SELECT years FROM table_name_33 WHERE duration = \"15 years\" AND character = \"giulia poggi\"", "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_18 WHERE actor = \"claudia ruffo\"", "question": "What years have claudia ruffo as the actor?", "context": "CREATE TABLE table_name_18 (years VARCHAR, actor VARCHAR)"}, {"answer": "SELECT duration FROM table_name_42 WHERE actor = \"pietro genuardi\"", "question": "What is the duration that has pietro genuardi as the actor?", "context": "CREATE TABLE table_name_42 (duration VARCHAR, actor VARCHAR)"}, {"answer": "SELECT soap_opera FROM table_name_84 WHERE duration = \"13 years\" AND actor = \"marina giulia cavalli\"", "question": "What is the soap opera that has a duration of 13 years, with marina giulia cavalli as the actor?", "context": "CREATE TABLE table_name_84 (soap_opera VARCHAR, duration VARCHAR, actor VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_76 WHERE date = \"december 14, 1958\" AND week > 12", "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 COUNT(week) FROM table_name_38 WHERE opponent = \"chicago bears\"", "question": "What is the total for the week in the game against the Chicago Bears", "context": "CREATE TABLE table_name_38 (week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_40 WHERE date = \"december 14, 1958\" AND week > 12", "question": "What is the highest attendance for December 14, 1958 for after week 12", "context": "CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR, week VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_88 WHERE year > 2003 AND score = \"6\u20130, 6\u20133\"", "question": "What is the Outcome of the Match played after 2003 with a Score of 6\u20130, 6\u20133?", "context": "CREATE TABLE table_name_88 (outcome VARCHAR, year VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_22 WHERE score = \"6\u20131, 6\u20131\"", "question": "What is the Outcome of the match with a Score of 6\u20131, 6\u20131?", "context": "CREATE TABLE table_name_22 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT name FROM table_name_23 WHERE rank = 5", "question": "Who has rank 5?", "context": "CREATE TABLE table_name_23 (name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_90 WHERE rank = 4", "question": "Which nationality has rank 4?", "context": "CREATE TABLE table_name_90 (nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_5 WHERE original_title = \"matrimonio all'italiana\"", "question": "What title was used in the nomination of Matrimonio All'Italiana?", "context": "CREATE TABLE table_name_5 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT language FROM table_name_11 WHERE category = \"best actor\" AND original_title = \"pelle erobreren\"", "question": "What language was the film Pelle Erobreren, which received the best actor nomination, in?", "context": "CREATE TABLE table_name_11 (language VARCHAR, category VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_43 WHERE language = \"spanish\" AND original_title = \"traffic\"", "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_20 WHERE original_title = \"una giornata particolare\"", "question": "What title was used in the nomination of Una Giornata Particolare?", "context": "CREATE TABLE table_name_20 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE position = \"back\" AND year > 1964 AND test_debut = \"1st rl test v new zealand\"", "question": "What date has a Position of back, later than 1964, and a Test debut of 1st rl test v new zealand?", "context": "CREATE TABLE table_name_98 (date VARCHAR, test_debut VARCHAR, position VARCHAR, year 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\"", "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 cross_code_debut FROM table_name_87 WHERE year > 1958 AND player = \"dick thornett\"", "question": "What is the cross-code debut later than 1958 for Dick Thornett?", "context": "CREATE TABLE table_name_87 (cross_code_debut VARCHAR, year VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_79 WHERE cross_code_debut = \"1st ru test v ireland\"", "question": "What position has a Cross-code debut of 1st ru test v ireland?", "context": "CREATE TABLE table_name_79 (position VARCHAR, cross_code_debut VARCHAR)"}, {"answer": "SELECT time FROM table_name_4 WHERE away_team = \"shatin\"", "question": "What was the time for the match with away team Shatin?", "context": "CREATE TABLE table_name_4 (time VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT time FROM table_name_47 WHERE away_team = \"convoy sun hei team a\"", "question": "What was the time for the match with away team Convoy Sun Hei Team A?", "context": "CREATE TABLE table_name_47 (time VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_45 WHERE time = \"18:30\"", "question": "What was the away team for the match that had a time of 18:30?", "context": "CREATE TABLE table_name_45 (away_team VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_28 WHERE away_team = \"mutual team b\"", "question": "What was the time for the match with away team Mutual Team B?", "context": "CREATE TABLE table_name_28 (time VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT time FROM table_name_17 WHERE home_team = \"hkssf\"", "question": "What was the time for the match that had a a home team of HKSSF?", "context": "CREATE TABLE table_name_17 (time VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_78 WHERE date = \"december 26, 1982\"", "question": "How many people attended on december 26, 1982?", "context": "CREATE TABLE table_name_78 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_12 WHERE wins < 11 AND wimmera_fl = \"minyip murtoa\" AND losses < 6", "question": "How many Byes have Wins smaller than 11, and a Wimmera FL of minyip murtoa, and Losses smaller than 6?", "context": "CREATE TABLE table_name_12 (byes VARCHAR, losses VARCHAR, wins VARCHAR, wimmera_fl VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_42 WHERE against < 1018 AND wins < 14", "question": "Which Losses have an Against smaller than 1018, and Wins smaller than 14?", "context": "CREATE TABLE table_name_42 (losses INTEGER, against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(byes) FROM table_name_56 WHERE against > 1018 AND wimmera_fl = \"horsham diggers\"", "question": "Which Byes have an Against larger than 1018, and a Wimmera FL of horsham diggers?", "context": "CREATE TABLE table_name_56 (byes INTEGER, against VARCHAR, wimmera_fl VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_35 WHERE wimmera_fl = \"minyip murtoa\"", "question": "Which Losses have a Wimmera FL of minyip murtoa?", "context": "CREATE TABLE table_name_35 (losses INTEGER, wimmera_fl VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_68 WHERE losses < 5 AND wimmera_fl = \"warrack eagles\" AND draws < 0", "question": "Which Against has Losses smaller than 5, and a Wimmera FL of warrack eagles, and Draws smaller than 0?", "context": "CREATE TABLE table_name_68 (against INTEGER, draws VARCHAR, losses VARCHAR, wimmera_fl VARCHAR)"}, {"answer": "SELECT country FROM table_name_6 WHERE name = \"spence\"", "question": "Which country has Spence in the name section?", "context": "CREATE TABLE table_name_6 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_85 WHERE status = \"transferred\" AND moving_to = \"released\" AND name = \"solano\"", "question": "Which country has the status of transferred, moving to of released, and Solano as the listed name?", "context": "CREATE TABLE table_name_85 (country VARCHAR, name VARCHAR, status VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_46 WHERE name = \"mccartney\"", "question": "What is the transfer fee for the country that has the name McCartney listed?", "context": "CREATE TABLE table_name_46 (transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_57 WHERE status = \"loaned\" AND moving_to = \"leyton orient\"", "question": "What is the name listed for the country that has a status of loaned and a moving to listed as leyton orient?", "context": "CREATE TABLE table_name_57 (name VARCHAR, status VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_53 WHERE country = \"nir\"", "question": "What is the transfer fee for the country of Nir?", "context": "CREATE TABLE table_name_53 (transfer_fee VARCHAR, country VARCHAR)"}, {"answer": "SELECT fastest_lap FROM table_name_50 WHERE winning_driver = \"adam christodoulou\" AND pole_position = \"adam christodoulou\"", "question": "Who had the fastest lap when adam christodoulou was the winning driver and had the pole position?", "context": "CREATE TABLE table_name_50 (fastest_lap VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE circuit = \"snetterton\" AND fastest_lap = \"riki christodoulou\"", "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 pole_position FROM table_name_10 WHERE fastest_lap = \"adam christodoulou\" AND circuit = \"rockingham\"", "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 bonus_points FROM table_name_47 WHERE points_against = \"448\"", "question": "What bonus points have 448 as the points against?", "context": "CREATE TABLE table_name_47 (bonus_points VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_92 WHERE games = \"30\" AND total_points = \"73\"", "question": "What points for have 30 as the game, and 73 as the total points?", "context": "CREATE TABLE table_name_92 (points_for VARCHAR, games VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_49 WHERE points_for = \"416\" AND points_against = \"533\"", "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 match_points FROM table_name_8 WHERE points_against = \"755\"", "question": "What match points have 755 as the points against?", "context": "CREATE TABLE table_name_8 (match_points VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT games FROM table_name_47 WHERE club = \"colomiers\"", "question": "What games have colomiers as the club?", "context": "CREATE TABLE table_name_47 (games VARCHAR, club VARCHAR)"}, {"answer": "SELECT lost FROM table_name_52 WHERE match_points = \"84\"", "question": "Which lost has 84 as the match points?", "context": "CREATE TABLE table_name_52 (lost VARCHAR, match_points VARCHAR)"}, {"answer": "SELECT constituency_number FROM table_name_37 WHERE name = \"udaipura\"", "question": "How many constituents does udaipura have?", "context": "CREATE TABLE table_name_37 (constituency_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_14 WHERE name = \"henrique barbosa\"", "question": "What lane was Henrique Barbosa in?", "context": "CREATE TABLE table_name_14 (lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT game FROM table_name_82 WHERE year < 2010 AND genre = \"role-playing game\"", "question": "What game was before 2010 and was a role-playing game?", "context": "CREATE TABLE table_name_82 (game VARCHAR, year VARCHAR, genre VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_11 WHERE game = \"red dead redemption\"", "question": "What was the platform of Red Dead Redemption?", "context": "CREATE TABLE table_name_11 (platform_s_ VARCHAR, game VARCHAR)"}, {"answer": "SELECT developer_s_ FROM table_name_50 WHERE platform_s_ = \"wii\"", "question": "Who was the developer of Wii?", "context": "CREATE TABLE table_name_50 (developer_s_ VARCHAR, platform_s_ VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_95 WHERE game = \"the walking dead\"", "question": "What year was The Walking Dead?", "context": "CREATE TABLE table_name_95 (year VARCHAR, game VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_43 WHERE developer_s_ = \"telltale games\"", "question": "What was the platform when the developer was Telltale Games?", "context": "CREATE TABLE table_name_43 (platform_s_ VARCHAR, developer_s_ VARCHAR)"}, {"answer": "SELECT game FROM table_name_71 WHERE developer_s_ = \"rockstar games\"", "question": "What is the game of developer Rockstar Games?", "context": "CREATE TABLE table_name_71 (game VARCHAR, developer_s_ VARCHAR)"}, {"answer": "SELECT COUNT(elevation__m_) FROM table_name_18 WHERE prominence__m_ > 2 OFFSET 876", "question": "How much Elevation (m) has a Prominence (m) larger than 2,876?", "context": "CREATE TABLE table_name_18 (elevation__m_ VARCHAR, prominence__m_ INTEGER)"}, {"answer": "SELECT date FROM table_name_11 WHERE home_team = \"millwall\"", "question": "When was millwall the home team?", "context": "CREATE TABLE table_name_11 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE away_team = \"arsenal\"", "question": "What was the score when Arsenal was the away team?", "context": "CREATE TABLE table_name_49 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_53 WHERE score = \"2\u20130\"", "question": "Which away team had a Score of 2\u20130?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE away_team = \"arsenal\"", "question": "When was Arsenal was the away team?", "context": "CREATE TABLE table_name_17 (date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT date_released FROM table_name_53 WHERE green_communist = \"9.7%\"", "question": "What's the date released when there was 9.7% of Green communist?", "context": "CREATE TABLE table_name_53 (date_released VARCHAR, green_communist VARCHAR)"}, {"answer": "SELECT green_communist FROM table_name_41 WHERE polling_institute = \"euroteste/jn\"", "question": "What's the green communist when Euroteste/JN is the polling Institute?", "context": "CREATE TABLE table_name_41 (green_communist VARCHAR, polling_institute VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_78 WHERE \"total\" > 2 AND rank = \"total\" AND gold > 44", "question": "What is the most silver medals when the total is more than 2 medals, and with a rank of total, and the number of gold medals is greater than 44?", "context": "CREATE TABLE table_name_78 (silver INTEGER, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_16 WHERE bronze = 0 AND rank = \"19\" AND silver < 1", "question": "What is the fewest gold medals when there is 0 bronze medals, and the rank is 19, and silver medals are less than 1?", "context": "CREATE TABLE table_name_16 (gold INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_18 WHERE silver < 1 AND nation = \"belgium (bel)\" AND gold < 0", "question": "What is the largest amount of bronze medals when the silver medals are less than 1, and Belgium (BEL) is the nation, and the gold medals are less than 0?", "context": "CREATE TABLE table_name_18 (bronze INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_83 WHERE silver < 1 AND total < 2", "question": "With silver medals less than 1, and total medals less than 2, what is the most bronze medals?", "context": "CREATE TABLE table_name_83 (bronze INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(byes) FROM table_name_80 WHERE wins = 14 AND losses > 2", "question": "Can you tell me the total number of Byes that has the Wins of 14, and the Losses larger than 2?", "context": "CREATE TABLE table_name_80 (byes VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_11 WHERE against = 1132 AND losses < 7", "question": "Can you tell me the average Wins that has the Against of 1132, and the Losses smaller than 7?", "context": "CREATE TABLE table_name_11 (wins INTEGER, against VARCHAR, losses VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE location_attendance = \"the spectrum\"", "question": "What was the date for the game that had a Location/Attendance of the spectrum?", "context": "CREATE TABLE table_name_92 (date VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE location_attendance = \"skydome\"", "question": "Who was the opponent when they played at the Skydome?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_61 WHERE date = \"january 17\"", "question": "What was the record on January 17?", "context": "CREATE TABLE table_name_61 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_69 WHERE record = \"19-17\"", "question": "What was the location and attendance when the record was 19-17?", "context": "CREATE TABLE table_name_69 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT city FROM table_name_26 WHERE year_joined > 1963 AND conference_joined = \"independents\"", "question": "What city joined the Independents conference after 1963?", "context": "CREATE TABLE table_name_26 (city VARCHAR, year_joined VARCHAR, conference_joined VARCHAR)"}, {"answer": "SELECT MIN(year_joined) FROM table_name_94 WHERE city = \"gary\" AND mascot = \"tornado\"", "question": "What is the year that the Gary team with mascot of the Tornado joined?", "context": "CREATE TABLE table_name_94 (year_joined INTEGER, city VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT previous_conference FROM table_name_88 WHERE conference_joined = \"indiana lake shore\" AND mascot = \"governors\"", "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 MAX(year_left) FROM table_name_25 WHERE mascot = \"roughriders\"", "question": "What is the year that the Roughriders left the conference?", "context": "CREATE TABLE table_name_25 (year_left INTEGER, mascot VARCHAR)"}, {"answer": "SELECT conference_joined FROM table_name_5 WHERE city = \"valparaiso\"", "question": "What conference did the city of Valparaiso join?", "context": "CREATE TABLE table_name_5 (conference_joined VARCHAR, city VARCHAR)"}, {"answer": "SELECT duration FROM table_name_93 WHERE character = \"bartha zsolt\"", "question": "What is the duration of the character Bartha Zsolt?", "context": "CREATE TABLE table_name_93 (duration VARCHAR, character VARCHAR)"}, {"answer": "SELECT COUNT(loss) FROM table_name_81 WHERE name = \"jake sharp\" AND long < 30", "question": "How many losses have jake sharp as the name, with a long less than 30?", "context": "CREATE TABLE table_name_81 (loss VARCHAR, name VARCHAR, long VARCHAR)"}, {"answer": "SELECT AVG(long) FROM table_name_72 WHERE gain = 1581 AND loss < 308", "question": "What is the average long that has 1581 as a gain, with a loss less than 308?", "context": "CREATE TABLE table_name_72 (long INTEGER, gain VARCHAR, loss VARCHAR)"}, {"answer": "SELECT SUM(gain) FROM table_name_27 WHERE long > 8 AND avg_g = 124.9", "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(long) FROM table_name_11 WHERE gain < 379 AND avg_g = 0.8", "question": "How many longs have a gain less than 379, and 0.8 as an avg/g?", "context": "CREATE TABLE table_name_11 (long INTEGER, gain VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT MIN(gain) FROM table_name_35 WHERE name = \"toben opurum\" AND avg_g < 54.1", "question": "What is the lowest gain that has toben opurum as the name, with an avg/g less than 54.1?", "context": "CREATE TABLE table_name_35 (gain INTEGER, name VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT driver FROM table_name_72 WHERE grid < 17 AND points > 0 AND laps = 87 AND time_retired = \"1:48:11.023\"", "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 MAX(points) FROM table_name_56 WHERE grid > 7 AND driver = \"alex tagliani\" AND laps < 85", "question": "Which Points have a Grid larger than 7, and a Driver of alex tagliani, and a Lapse smaller than 85?", "context": "CREATE TABLE table_name_56 (points INTEGER, laps VARCHAR, grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE competition = \"uefa euro 2008 qualification\"", "question": "What date has uefa euro 2008 qualification as the competition?", "context": "CREATE TABLE table_name_55 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_79 WHERE competition = \"friendly\" AND venue = \"pretoria, south africa\"", "question": "What date has friendly as the competition, with pretoria, South Africa as the venue?", "context": "CREATE TABLE table_name_79 (date VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(score_final) FROM table_name_15 WHERE competition_description = \"american cup\" AND year < 2009", "question": "What is the lowest final score of the American Cup competition before 2009?", "context": "CREATE TABLE table_name_15 (score_final INTEGER, competition_description VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_95 WHERE week < 7 AND opponent = \"bye\"", "question": "What is the result for the game before week 7 against BYE?", "context": "CREATE TABLE table_name_95 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE week > 16", "question": "What was the date for the game after week 16?", "context": "CREATE TABLE table_name_74 (date VARCHAR, week INTEGER)"}, {"answer": "SELECT attendance FROM table_name_61 WHERE opponent = \"tampa bay buccaneers\"", "question": "What was the attendance for the game against tampa bay buccaneers?", "context": "CREATE TABLE table_name_61 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE week > 5 AND attendance = \"62,262\"", "question": "What was the date of the game after week 5 with 62,262 fans attending?", "context": "CREATE TABLE table_name_82 (date VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT location FROM table_name_31 WHERE record = \"5\u20132\u20131\"", "question": "Which Location has a Record of 5\u20132\u20131?", "context": "CREATE TABLE table_name_31 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_1 WHERE event = \"inoki bom-ba-ye 2002\"", "question": "Which Record has an Event of inoki bom-ba-ye 2002?", "context": "CREATE TABLE table_name_1 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_80 WHERE record = \"2\u20130\"", "question": "Which Opponent has a Record of 2\u20130?", "context": "CREATE TABLE table_name_80 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_62 WHERE round > 2 AND event = \"bellator 38\"", "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 SUM(pick) FROM table_name_30 WHERE player = \"john jones\"", "question": "What was John Jones's pick#?", "context": "CREATE TABLE table_name_30 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_62 WHERE hometown_school = \"atlanta, ga\"", "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 monday_to_friday FROM table_name_34 WHERE ma\u00f1ana_es_para_siempre = \"impreuna pentru totdeauna\"", "question": "What is Ma\u00f1ana es para siempre of impreuna pentru totdeauna from Monday to Friday?", "context": "CREATE TABLE table_name_34 (monday_to_friday VARCHAR, ma\u00f1ana_es_para_siempre VARCHAR)"}, {"answer": "SELECT monday_to_friday FROM table_name_87 WHERE el_canal_de_las_estrellas = \"pop tv\"", "question": "When does the El Canal de las Estrellas of pop tv show from Monday to Friday?", "context": "CREATE TABLE table_name_87 (monday_to_friday VARCHAR, el_canal_de_las_estrellas VARCHAR)"}, {"answer": "SELECT SUM(enrollment) FROM table_name_85 WHERE ihsaa_football_class = \"aaaa\"", "question": "What is the enrollment for the AAAA class in IHSAA?", "context": "CREATE TABLE table_name_85 (enrollment INTEGER, ihsaa_football_class VARCHAR)"}, {"answer": "SELECT ihsaa_football_class FROM table_name_93 WHERE location = \"culver\"", "question": "What is the IHSAA Football class at Culver?", "context": "CREATE TABLE table_name_93 (ihsaa_football_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_86 WHERE mascot = \"lancers\"", "question": "What school has the Lancers as their mascot?", "context": "CREATE TABLE table_name_86 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_97 WHERE school = \"laville\"", "question": "What is the total enrollment at Laville?", "context": "CREATE TABLE table_name_97 (enrollment VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(avg) FROM table_name_30 WHERE rank > 9", "question": "What is the highest average for teams ranked higher than 9?", "context": "CREATE TABLE table_name_30 (avg INTEGER, rank INTEGER)"}, {"answer": "SELECT 2008 AS _club FROM table_name_69 WHERE name = \"nadia centoni category:articles with hcards\"", "question": "What is the name of the 2008 club with Nadia Centoni Category:Articles with hCards?", "context": "CREATE TABLE table_name_69 (name VARCHAR)"}, {"answer": "SELECT 2008 AS _club FROM table_name_71 WHERE name = \"francesca piccinini category:articles with hcards\"", "question": "Which 2008 club has the name Francesca Piccinini Category:Articles with hCards?", "context": "CREATE TABLE table_name_71 (name VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_41 WHERE against = 1314", "question": "What is the least amount of wins when against is 1314?", "context": "CREATE TABLE table_name_41 (wins INTEGER, against VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_29 WHERE wins = 8 AND club = \"south warrnambool\" AND draws < 0", "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 AVG(wins) FROM table_name_20 WHERE against > 1155 AND club = \"warrnambool\" AND draws > 0", "question": "What is the number of wins when the against is larger than 1155, for Warrnambool, with more than 0 draws?", "context": "CREATE TABLE table_name_20 (wins INTEGER, draws VARCHAR, against VARCHAR, club VARCHAR)"}, {"answer": "SELECT score FROM table_name_87 WHERE 2012 = \"15.0%\"", "question": "What score has 15.0% as the 2012?", "context": "CREATE TABLE table_name_87 (score VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_31 WHERE 2009 = \"14.2%\"", "question": "What 2008 has 14.2% as the 2009?", "context": "CREATE TABLE table_name_31 (Id VARCHAR)"}, {"answer": "SELECT score FROM table_name_16 WHERE 2012 = \"15.0%\"", "question": "What score has 15.0% as the 2012?", "context": "CREATE TABLE table_name_16 (score VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_49 WHERE 2007 = \"18.5%\"", "question": "What 2009 has 18.5% as the 2007?", "context": "CREATE TABLE table_name_49 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_33 WHERE 2010 = \"12.7%\"", "question": "What 2011 has 12.7% as the 2010?", "context": "CREATE TABLE table_name_33 (Id VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_44 WHERE result = \"l 24-0\"", "question": "What is the Week of the game with a Result of L 24-0?", "context": "CREATE TABLE table_name_44 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_17 WHERE date = \"december 18, 1960\"", "question": "What is the Week number on December 18, 1960?", "context": "CREATE TABLE table_name_17 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT pick FROM table_name_3 WHERE position = \"defensive end\"", "question": "Which pick played the Defensive End position?", "context": "CREATE TABLE table_name_3 (pick VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_41 WHERE position = \"linebacker\" AND round < 3", "question": "How many picks were taken before round 3 and played Linebacker?", "context": "CREATE TABLE table_name_41 (pick VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_88 WHERE total = 9", "question": "What is the average number of silver medals won among nations that won 9 medals total?", "context": "CREATE TABLE table_name_88 (silver INTEGER, total VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_63 WHERE pick > 179", "question": "Which Round has a Pick larger than 179?", "context": "CREATE TABLE table_name_63 (round INTEGER, pick INTEGER)"}, {"answer": "SELECT MAX(pick) FROM table_name_33 WHERE player = \"jamar martin\"", "question": "What is jamar martin's highest pick?", "context": "CREATE TABLE table_name_33 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT team FROM table_name_91 WHERE rank > 4 AND speed = \"104.574mph\"", "question": "What teams rank is higher than 4 with a speed of 104.574mph?", "context": "CREATE TABLE table_name_91 (team VARCHAR, rank VARCHAR, speed VARCHAR)"}, {"answer": "SELECT team FROM table_name_32 WHERE rider = \"anthony redmond\"", "question": "What team does Anthony Redmond ride for?", "context": "CREATE TABLE table_name_32 (team VARCHAR, rider VARCHAR)"}, {"answer": "SELECT speed FROM table_name_86 WHERE rank < 3 AND time = \"1:03.41.86\"", "question": "What was the speed with a time of 1:03.41.86 and a rank smaller than 3?", "context": "CREATE TABLE table_name_86 (speed VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT school FROM table_name_11 WHERE enrollment > 473 AND ihsaa_class = \"aaa\" AND _number___county = \"72 scott\"", "question": "What school in 72 Scott county has an enrollment more than 473 with an AAA IHSAA Class?", "context": "CREATE TABLE table_name_11 (school VARCHAR, _number___county VARCHAR, enrollment VARCHAR, ihsaa_class VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_34 WHERE enrollment < 627 AND ihsaa_class = \"aa\" AND school = \"eastern pekin\"", "question": "What's the mascot of Eastern Pekin having less than 627 enrolled and an AA for their IHSAA Class?", "context": "CREATE TABLE table_name_34 (mascot VARCHAR, school VARCHAR, enrollment VARCHAR, ihsaa_class VARCHAR)"}, {"answer": "SELECT MAX(enrollment) FROM table_name_88 WHERE ihsaa_class = \"aaa\" AND mascot = \"dragons\"", "question": "What's the most enrolled having the dragons for a mascot and an AAA for the IHSAA Class?", "context": "CREATE TABLE table_name_88 (enrollment INTEGER, ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT _number___county FROM table_name_54 WHERE enrollment < 774 AND school = \"eastern pekin\"", "question": "What's the county of Eastern Pekin school with fewer than 774 enrolled?", "context": "CREATE TABLE table_name_54 (_number___county VARCHAR, enrollment VARCHAR, school VARCHAR)"}, {"answer": "SELECT location FROM table_name_28 WHERE ihsaa_class = \"aaa\" AND mascot = \"panthers\"", "question": "What's the location of the school having the panthers as a mascot with an AAA for the IHSAA Class?", "context": "CREATE TABLE table_name_28 (location VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_1 WHERE mascot = \"musketeers\"", "question": "What's the IHSAA Class when the mascot was the Musketeers?", "context": "CREATE TABLE table_name_1 (ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT director FROM table_name_74 WHERE title = \"chaser on the rocks\"", "question": "Who was the director of Chaser on the Rocks?", "context": "CREATE TABLE table_name_74 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT characters FROM table_name_80 WHERE title = \"suppressed duck\"", "question": "What are the characters from the movie Suppressed Duck?", "context": "CREATE TABLE table_name_80 (characters VARCHAR, title VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_7 WHERE player = \"jay bruchak\" AND round < 6", "question": "How many picks on average did Jay Bruchak have before round 6?", "context": "CREATE TABLE table_name_7 (pick INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_13 WHERE pick > 148 AND player = \"pierre bland\"", "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 MIN(round) FROM table_name_16 WHERE college = \"purdue\" AND pick > 10", "question": "What was the earliest round that Purdue had a pick larger than 10?", "context": "CREATE TABLE table_name_16 (round INTEGER, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT COUNT(pick) FROM table_name_31 WHERE player = \"jay bruchak\"", "question": "How many picks did Jay Bruchak have?", "context": "CREATE TABLE table_name_31 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT round FROM table_name_85 WHERE home = \"alianza\"", "question": "In what round was the Alianza home game?", "context": "CREATE TABLE table_name_85 (round VARCHAR, home VARCHAR)"}, {"answer": "SELECT away FROM table_name_48 WHERE round = \"round 16\"", "question": "What was the visiting team that played a round 16 game?", "context": "CREATE TABLE table_name_48 (away VARCHAR, round VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_68 WHERE attendance = 62 OFFSET 289", "question": "How many weeks have an Attendance of 62,289?", "context": "CREATE TABLE table_name_68 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_57 WHERE attendance > 65 OFFSET 070", "question": "Which Week has an Attendance larger than 65,070?", "context": "CREATE TABLE table_name_57 (week INTEGER, attendance INTEGER)"}, {"answer": "SELECT MIN(week) FROM table_name_58 WHERE opponent = \"atlanta falcons\" AND attendance < 63 OFFSET 114", "question": "Which Week has an Opponent of atlanta falcons, and an Attendance smaller than 63,114?", "context": "CREATE TABLE table_name_58 (week INTEGER, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT tms FROM table_name_59 WHERE season = \"2013\"", "question": "which Tms has a Season of 2013?", "context": "CREATE TABLE table_name_59 (tms VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(population) FROM table_name_19 WHERE code > 90902 AND area__km_2__ < 1 OFFSET 335.47", "question": "What's the population with a code more than 90902 and an area less than 1,335.47?", "context": "CREATE TABLE table_name_19 (population INTEGER, code VARCHAR, area__km_2__ VARCHAR)"}, {"answer": "SELECT MAX(area__km_2__) FROM table_name_72 WHERE place = \"bochum part 2\" AND population < 15 OFFSET 911", "question": "What's the most area of Bochum Part 2 with a population less than 15,911?", "context": "CREATE TABLE table_name_72 (area__km_2__ INTEGER, place VARCHAR, population VARCHAR)"}, {"answer": "SELECT original_nfl_team FROM table_name_31 WHERE pos = \"cb\"", "question": "What is the Original NFL team of the CB Player?", "context": "CREATE TABLE table_name_31 (original_nfl_team VARCHAR, pos VARCHAR)"}, {"answer": "SELECT college FROM table_name_70 WHERE conf = \"swc\" AND pos = \"wr\"", "question": "What is the College of the WR Player from SWC Conf?", "context": "CREATE TABLE table_name_70 (college VARCHAR, conf VARCHAR, pos VARCHAR)"}, {"answer": "SELECT player FROM table_name_5 WHERE college = \"memphis\"", "question": "What Player is from the College of memphis?", "context": "CREATE TABLE table_name_5 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT college FROM table_name_70 WHERE pos = \"lb\" AND conf = \"big ten\"", "question": "What is the College of the LB Player with Big Ten Conf.?", "context": "CREATE TABLE table_name_70 (college VARCHAR, pos VARCHAR, conf VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_92 WHERE wins = 11 AND losses > 7", "question": "How many draws are there when there are 11 wins, and more than 7 losses?", "context": "CREATE TABLE table_name_92 (draws INTEGER, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_20 WHERE losses < 3 AND wins > 16", "question": "What is the draws when there are less than 3 losses and more than 16 wins?", "context": "CREATE TABLE table_name_20 (draws INTEGER, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_33 WHERE losses = 5 AND against > 1205", "question": "What is the wins when there are 5 losses, and against is more than 1205?", "context": "CREATE TABLE table_name_33 (wins INTEGER, losses VARCHAR, against VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_20 WHERE sunrayia_fl = \"red cliffs\" AND against > 2294", "question": "What is the losses when Sunrayia FL is Red Cliffs, and the against is more than 2294?", "context": "CREATE TABLE table_name_20 (losses INTEGER, sunrayia_fl VARCHAR, against VARCHAR)"}, {"answer": "SELECT COUNT(against) FROM table_name_73 WHERE losses < 3 AND wins > 16", "question": "What is the number against when losses are smaller than 3, and wins arelarger than 16?", "context": "CREATE TABLE table_name_73 (against VARCHAR, losses VARCHAR, wins VARCHAR)"}, {"answer": "SELECT notes FROM table_name_33 WHERE call_sign = \"cfun-fm-1\"", "question": "What is the Notes of the Frequency with Call sign CFUN-FM-1?", "context": "CREATE TABLE table_name_33 (notes VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT format FROM table_name_65 WHERE notes = \"licensed to hope\" AND frequency = \"fm 100.5\"", "question": "What is the Format of FM 100.5 Licensed to Hope?", "context": "CREATE TABLE table_name_65 (format VARCHAR, notes VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT notes FROM table_name_82 WHERE call_sign = \"cbue-fm\"", "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 AVG(dynamo) FROM table_name_25 WHERE draw > 0 AND played < 15 AND spartak > 1", "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 MAX(spartak) FROM table_name_42 WHERE played < 15 AND dynamo < 3", "question": "what is the highest spartak when played is less than 15 and dynamo is less than 3?", "context": "CREATE TABLE table_name_42 (spartak INTEGER, played VARCHAR, dynamo VARCHAR)"}, {"answer": "SELECT MAX(draw) FROM table_name_19 WHERE competition = \"soviet league\" AND dynamo > 34", "question": "what is the most draw when the competition is soviet league and dynamo is more than 34?", "context": "CREATE TABLE table_name_19 (draw INTEGER, competition VARCHAR, dynamo VARCHAR)"}, {"answer": "SELECT SUM(spartak) FROM table_name_54 WHERE played = 102 AND draw < 19", "question": "what is the sum of spartak when played is 102 and draw is less than 19?", "context": "CREATE TABLE table_name_54 (spartak INTEGER, played VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MIN(dynamo) FROM table_name_12 WHERE spartak > 9 AND competition = \"totals\" AND draw > 24", "question": "what is the least dynamo when spartak is more than 9, competition is totals and draw is more than 24?", "context": "CREATE TABLE table_name_12 (dynamo INTEGER, draw VARCHAR, spartak VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_85 WHERE week > 8 AND opponent = \"washington redskins\"", "question": "What's the result when the Washington Redskins were the opponents on a week after 8?", "context": "CREATE TABLE table_name_85 (result VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT 445 FROM table_name_46 WHERE nationality = \"poland\" AND name = \"anna rogowska\"", "question": "What is the 4.45 for Anna Rogowska from Poland?", "context": "CREATE TABLE table_name_46 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT 445 FROM table_name_5 WHERE name = \"yelena isinbayeva\"", "question": "What is the 4.45 for Yelena Isinbayeva?", "context": "CREATE TABLE table_name_5 (name VARCHAR)"}, {"answer": "SELECT AVG(result) FROM table_name_7 WHERE name = \"anna rogowska\"", "question": "What is Anna Rogowska's average result?", "context": "CREATE TABLE table_name_7 (result INTEGER, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_13 WHERE 445 = \"o\" AND 455 = \"xo\"", "question": "What national has 4.45 for o and 4.55 for xo?", "context": "CREATE TABLE table_name_13 (nationality VARCHAR)"}, {"answer": "SELECT SUM(staterooms) FROM table_name_62 WHERE year_built = 2008 AND crew < 28", "question": "What is the sum of staterooms in with a year buit of 2008, and a crew less than 28?", "context": "CREATE TABLE table_name_62 (staterooms INTEGER, year_built VARCHAR, crew VARCHAR)"}, {"answer": "SELECT COUNT(guests) FROM table_name_89 WHERE ship_name = \"rv indochina\" AND crew < 28", "question": "What is the total for guests with a ship name of rv indochina, and a crew smaller than 28?", "context": "CREATE TABLE table_name_89 (guests VARCHAR, ship_name VARCHAR, crew VARCHAR)"}, {"answer": "SELECT country FROM table_name_4 WHERE total = 111 AND day_1 = 69", "question": "what is the country when the total is 111 and the day 1 is 69?", "context": "CREATE TABLE table_name_4 (country VARCHAR, total VARCHAR, day_1 VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_62 WHERE day_1 < 71 AND country = \"romania\"", "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 COUNT(rank) FROM table_name_77 WHERE athlete = \"jin di\" AND total < 118", "question": "how many times is the athlete jin di and the total less than 118?", "context": "CREATE TABLE table_name_77 (rank VARCHAR, athlete VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_6 WHERE nat = \"geo\" AND ends > 2010", "question": "What is the highest goal for a GEO nat., that ended after 2010?", "context": "CREATE TABLE table_name_6 (goals INTEGER, nat VARCHAR, ends VARCHAR)"}, {"answer": "SELECT venue FROM table_name_20 WHERE year = 2006 AND competition = \"asian games\" AND event = \"400 m\"", "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_7 WHERE event = \"4x400 m relay\" AND competition = \"asian championships\"", "question": "what is the venue when the event is 4x400 m relay and the competition is asian championships?", "context": "CREATE TABLE table_name_7 (venue VARCHAR, event VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_93 WHERE competition = \"asian games\" AND event = \"4x400 m relay\" AND year = 2002", "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 spokespersons FROM table_name_7 WHERE commentator = \"pierre tchernia\" AND voting_order = 11", "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 SUM(voting_order) FROM table_name_50 WHERE commentator = \"bunny carr\"", "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 commentator FROM table_name_35 WHERE spokespersons = \"michael aspel\"", "question": "Who was the commentator when the spokesperson was michael aspel?", "context": "CREATE TABLE table_name_35 (commentator VARCHAR, spokespersons VARCHAR)"}, {"answer": "SELECT voting_order FROM table_name_95 WHERE commentator = \"renato tagliani\"", "question": "What was the voting order when the commentator was renato tagliani?", "context": "CREATE TABLE table_name_95 (voting_order VARCHAR, commentator VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_15 WHERE total < 1", "question": "Which Bronze has a Total smaller than 1?", "context": "CREATE TABLE table_name_15 (bronze INTEGER, total INTEGER)"}, {"answer": "SELECT COUNT(silver) FROM table_name_95 WHERE bronze > 1 AND gold = 0 AND rank < 4", "question": "How much Silver has a Bronze larger than 1, and a Gold of 0, and a Rank smaller than 4?", "context": "CREATE TABLE table_name_95 (silver VARCHAR, rank VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_7 WHERE rank = 4 AND gold < 0", "question": "Which Bronze has a Rank of 4, and a Gold smaller than 0?", "context": "CREATE TABLE table_name_7 (bronze INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_78 WHERE bronze < 2 AND silver = 0 AND rank > 3", "question": "How much Gold has a Bronze smaller than 2, and a Silver of 0, and a Rank larger than 3?", "context": "CREATE TABLE table_name_78 (gold INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT percentage__2011_ FROM table_name_13 WHERE population__2006_ > 120 AND percentage__2006_ = \"45.22%\"", "question": "What percentage of the 2011 population had a mother tongue language that was spoken by 45.22% of the population in 2006 (over 120)?", "context": "CREATE TABLE table_name_13 (percentage__2011_ VARCHAR, population__2006_ VARCHAR, percentage__2006_ VARCHAR)"}, {"answer": "SELECT COUNT(population__2011_) FROM table_name_49 WHERE population__2006_ = 120", "question": "What is the total number of people in 2011 speaking the mother tongue language spoken by 120 in 2006?", "context": "CREATE TABLE table_name_49 (population__2011_ VARCHAR, population__2006_ VARCHAR)"}, {"answer": "SELECT MAX(population__2006_) FROM table_name_12 WHERE mother_tongue = \"romanian\"", "question": "How many people ha Romanian as their mother tongue in 2006?", "context": "CREATE TABLE table_name_12 (population__2006_ INTEGER, mother_tongue VARCHAR)"}, {"answer": "SELECT mother_tongue FROM table_name_94 WHERE population__2006_ = 300", "question": "What is the mother tongue language shared by 300 people in 2006?", "context": "CREATE TABLE table_name_94 (mother_tongue VARCHAR, population__2006_ VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_64 WHERE english_translation = \"long live life\" AND draw < 2", "question": "What's the total number of points when the English translation is Long Live Life and the draw is less than 2?", "context": "CREATE TABLE table_name_64 (points VARCHAR, english_translation VARCHAR, draw VARCHAR)"}, {"answer": "SELECT language FROM table_name_65 WHERE draw = 9", "question": "What's the language of Draw number 9?", "context": "CREATE TABLE table_name_65 (language VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_87 WHERE language = \"portuguese\"", "question": "What are the lowest points when the language is Portuguese?", "context": "CREATE TABLE table_name_87 (points INTEGER, language VARCHAR)"}, {"answer": "SELECT island FROM table_name_74 WHERE summit = \"haleakal\u0101\"", "question": "What's the island with a summit of Haleakal\u0101?", "context": "CREATE TABLE table_name_74 (island VARCHAR, summit VARCHAR)"}, {"answer": "SELECT MIN(col__m_) FROM table_name_96 WHERE island = \"island of moloka\u02bbi\" AND rank < 6", "question": "What's the lowest Col ranked less than 6 with an Island of Moloka\u02bbi?", "context": "CREATE TABLE table_name_96 (col__m_ INTEGER, island VARCHAR, rank VARCHAR)"}, {"answer": "SELECT col__m_ FROM table_name_84 WHERE rank > 4 AND summit = \"kawaikini\"", "question": "What's the col (m) ranked more than 4 with a summit of Kawaikini?", "context": "CREATE TABLE table_name_84 (col__m_ VARCHAR, rank VARCHAR, summit VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_80 WHERE col__m_ < 33 AND summit = \"haleakal\u0101\"", "question": "What's the rank when the col (m) is less than 33 and has a summit of Haleakal\u0101?", "context": "CREATE TABLE table_name_80 (rank INTEGER, col__m_ VARCHAR, summit VARCHAR)"}, {"answer": "SELECT summit FROM table_name_72 WHERE col__m_ = 0 AND rank < 2", "question": "What's the summit when the rank is less than 2 and has a col (m) of 0?", "context": "CREATE TABLE table_name_72 (summit VARCHAR, col__m_ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT year FROM table_name_58 WHERE edition = \"41st\"", "question": "Which Year has an Edition of 41st?", "context": "CREATE TABLE table_name_58 (year VARCHAR, edition VARCHAR)"}, {"answer": "SELECT no_of_events FROM table_name_13 WHERE country = \"trinidad and tobago\" AND date = \"march 30-april 1\"", "question": "How many Events have a Country of trinidad and tobago, and a Date of march 30-april 1?", "context": "CREATE TABLE table_name_13 (no_of_events VARCHAR, country VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_93 WHERE top_team = \"jam\" AND edition = \"31st\"", "question": "Which Country has a Top Team of jam, and an Edition of 31st?", "context": "CREATE TABLE table_name_93 (country VARCHAR, top_team VARCHAR, edition VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_62 WHERE partner = \"brett steven\"", "question": "What was the outcome of the final with a partner of Brett Steven?", "context": "CREATE TABLE table_name_62 (outcome VARCHAR, partner VARCHAR)"}, {"answer": "SELECT surface FROM table_name_84 WHERE tournament = \"italy f28\"", "question": "On what type of surface was the tournament of Italy f28?", "context": "CREATE TABLE table_name_84 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_8 WHERE tournament = \"senegal f2\"", "question": "Who was the opponent in the final of the Senegal f2 tournament>", "context": "CREATE TABLE table_name_8 (opponent_in_the_final VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE date = \"december 12, 1998\"", "question": "What's the score on December 12, 1998?", "context": "CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_93 WHERE score = \"7-1\"", "question": "What was the venue when the score was 7-1?", "context": "CREATE TABLE table_name_93 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE competition = \"friendly\"", "question": "What's the score of the friendly competition?", "context": "CREATE TABLE table_name_18 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_59 WHERE venue = \"singapore\"", "question": "What's the competition that happened in Singapore?", "context": "CREATE TABLE table_name_59 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_97 WHERE competition = \"1995 southeast asian games\"", "question": "What's the venue of the 1995 Southeast Asian Games?", "context": "CREATE TABLE table_name_97 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date_of_inauguration FROM table_name_71 WHERE \"lifespan\" = \"lifespan\"", "question": "What was the date of the inauguration in the row with an entry of lifespan in the lifespan column?", "context": "CREATE TABLE table_name_71 (date_of_inauguration VARCHAR)"}, {"answer": "SELECT date_of_death FROM table_name_76 WHERE date_of_inauguration = \"date of inauguration\"", "question": "What was the date of death entry in the row that has a date of inauguration entry of date of inauguration?", "context": "CREATE TABLE table_name_76 (date_of_death VARCHAR, date_of_inauguration VARCHAR)"}, {"answer": "SELECT length_of_retirement FROM table_name_49 WHERE president = \"sharma, shankar shankar dayal sharma\"", "question": "What is the length of retirement for president Sharma, Shankar Shankar Dayal Sharma?", "context": "CREATE TABLE table_name_49 (length_of_retirement VARCHAR, president VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_67 WHERE place < 1", "question": "How many draw is in a place that is less than 1?", "context": "CREATE TABLE table_name_67 (draw VARCHAR, place INTEGER)"}, {"answer": "SELECT AVG(draw) FROM table_name_31 WHERE artist = \"emilya valenti\"", "question": "Emilya Valenti has what draw average?", "context": "CREATE TABLE table_name_31 (draw INTEGER, artist 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 \u9640\u69cd\u5e2b\u59d0\"", "question": "What's the airing date of Armed Reaction \u9640\u69cd\u5e2b\u59d0 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_1 WHERE number_of_episodes = 62", "question": "What's the airing date for the show with 62 episodes?", "context": "CREATE TABLE table_name_1 (airing_date VARCHAR, number_of_episodes VARCHAR)"}, {"answer": "SELECT official_website FROM table_name_33 WHERE number_of_episodes > 22 AND english_title__chinese_title_ = \"burning flame \u70c8\u706b\u96c4\u5fc3\"", "question": "What's the official website of Burning Flame \u70c8\u706b\u96c4\u5fc3 with 22 episodes?", "context": "CREATE TABLE table_name_33 (official_website VARCHAR, number_of_episodes VARCHAR, english_title__chinese_title_ VARCHAR)"}, {"answer": "SELECT position FROM table_name_44 WHERE a_score > 7", "question": "what is the position for the competitor that has a score more than 7", "context": "CREATE TABLE table_name_44 (position VARCHAR, a_score INTEGER)"}, {"answer": "SELECT MIN(b_score) FROM table_name_40 WHERE position = \"5th\" AND a_score < 7", "question": "what is the score for the 5th position and a score less than 7", "context": "CREATE TABLE table_name_40 (b_score INTEGER, position VARCHAR, a_score VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_8 WHERE position = \"8th\" AND a_score > 6.6", "question": "what is the total scored for the 8th position and a score more than 6.6", "context": "CREATE TABLE table_name_8 (total INTEGER, position VARCHAR, a_score VARCHAR)"}, {"answer": "SELECT meet FROM table_name_33 WHERE time = \"7:55.02\"", "question": "What is the Meet of the Event with a Time of 7:55.02?", "context": "CREATE TABLE table_name_33 (meet VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_93 WHERE time = \"2:22.32\"", "question": "What is the Location of the Event with a Time of 2:22.32?", "context": "CREATE TABLE table_name_93 (location VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(body_width_mm) FROM table_name_48 WHERE lead_pitch_mm < 0.55 AND body_length_mm > 18.4", "question": "Which Body Width/mm has a Lead Pitch/mm smaller than 0.55, and a Body Length/mm larger than 18.4?", "context": "CREATE TABLE table_name_48 (body_width_mm INTEGER, lead_pitch_mm VARCHAR, body_length_mm VARCHAR)"}, {"answer": "SELECT AVG(body_length_mm) FROM table_name_9 WHERE lead_pitch_mm < 0.5", "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 COUNT(body_width_mm) FROM table_name_50 WHERE body_length_mm = 18.4 AND pins = \"40\"", "question": "How much Body Width/mm has a Body Length/mm of 18.4, and Pins of 40?", "context": "CREATE TABLE table_name_50 (body_width_mm VARCHAR, body_length_mm VARCHAR, pins VARCHAR)"}, {"answer": "SELECT MIN(body_width_mm) FROM table_name_63 WHERE lead_pitch_mm < 0.55 AND part_number = \"tsop48\"", "question": "Which Body Width/mm has a Lead Pitch/mm smaller than 0.55, and a Part Number of tsop48?", "context": "CREATE TABLE table_name_63 (body_width_mm INTEGER, lead_pitch_mm VARCHAR, part_number VARCHAR)"}, {"answer": "SELECT MAX(lead_pitch_mm) FROM table_name_1 WHERE part_number = \"tsop40\" AND body_length_mm > 18.4", "question": "Which Lead Pitch/mm has a Part Number of tsop40, and a Body Length/mm larger than 18.4?", "context": "CREATE TABLE table_name_1 (lead_pitch_mm INTEGER, part_number VARCHAR, body_length_mm VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_10 WHERE time = \"3:15\"", "question": "What was the least attendance when the time was 3:15?", "context": "CREATE TABLE table_name_10 (attendance INTEGER, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE game < 5 AND location = \"oakland-alameda county coliseum\" AND time = \"3:40\"", "question": "What date was at Oakland-Alameda County Coliseum with a time of 3:40 and a game less than 5?", "context": "CREATE TABLE table_name_6 (date VARCHAR, time VARCHAR, game VARCHAR, location VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_36 WHERE gold > 1 AND total > 11 AND silver > 5", "question": "Which Bronze has a Gold larger than 1, and a Total larger than 11, and a Silver larger than 5?", "context": "CREATE TABLE table_name_36 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_67 WHERE gold > 2", "question": "How many silvers have more than 2 golds?", "context": "CREATE TABLE table_name_67 (silver VARCHAR, gold INTEGER)"}, {"answer": "SELECT firefox_, _other_mozilla FROM table_name_12 WHERE chrome = \"1.93%\"", "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 internet_explorer FROM table_name_97 WHERE chrome = \"24.91%\"", "question": "What percentage of browsers were using Internet Explorer during the period in which 24.91% were using Chrome?", "context": "CREATE TABLE table_name_97 (internet_explorer VARCHAR, chrome VARCHAR)"}, {"answer": "SELECT chrome FROM table_name_88 WHERE internet_explorer = \"72.03%\"", "question": "What percentage of browsers were using Chrome during the period in which 72.03% were using Internet Explorer?", "context": "CREATE TABLE table_name_88 (chrome VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT safari FROM table_name_57 WHERE chrome = \"2.05%\"", "question": "What percentage of browsers were using Safari during the period in which 2.05% were using Chrome?", "context": "CREATE TABLE table_name_57 (safari VARCHAR, chrome VARCHAR)"}, {"answer": "SELECT chrome FROM table_name_22 WHERE opera = \"0.30%\" AND safari = \"6.77%\"", "question": "What percentage of browsers were using Chrome during the period in which 0.30% were using Opera and 6.77% were using Safari?", "context": "CREATE TABLE table_name_22 (chrome VARCHAR, opera VARCHAR, safari VARCHAR)"}, {"answer": "SELECT tv_network_s_ FROM table_name_42 WHERE country = \"brazil\"", "question": "Which TV network was located in Brazil?", "context": "CREATE TABLE table_name_42 (tv_network_s_ VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_27 WHERE series_premiere = \"unknown\" AND tv_network_s_ = \"mbc action\"", "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 weekly_schedule FROM table_name_97 WHERE tv_network_s_ = \"sky italia\"", "question": "What is the weekly schedule for the network sky italia?", "context": "CREATE TABLE table_name_97 (weekly_schedule VARCHAR, tv_network_s_ VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_73 WHERE bronze > 6 AND silver > 18", "question": "How many Gold medals for the Nations with 6 or more Bronze medals and 18 or more Silver?", "context": "CREATE TABLE table_name_73 (gold INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_98 WHERE nation = \"soviet union\"", "question": "How many Gold medals did the Soviet Union receive?", "context": "CREATE TABLE table_name_98 (gold INTEGER, nation VARCHAR)"}, {"answer": "SELECT name FROM table_name_43 WHERE pos = \"cf\"", "question": "What's the name of the person in the CF Pos?", "context": "CREATE TABLE table_name_43 (name VARCHAR, pos VARCHAR)"}, {"answer": "SELECT league_cup_apps FROM table_name_83 WHERE fa_cup_apps = \"5\"", "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 MIN(league_goals) FROM table_name_43 WHERE position = \"fw\" AND total_goals > 9 AND league_cup_goals > 4", "question": "What is the lowest league goals that has fw as the position, total goals greater than 9, with league cup goals greater than 4?", "context": "CREATE TABLE table_name_43 (league_goals INTEGER, league_cup_goals VARCHAR, position VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_11 WHERE event = \"team\" AND venue = \"vilamoura, portugal\"", "question": "What is the earliest year that a team event was included at Vilamoura, Portugal?", "context": "CREATE TABLE table_name_11 (year INTEGER, event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT event FROM table_name_96 WHERE year < 2001 AND result = \"16th\"", "question": "In which event before 2001 did the athlete place 16th?", "context": "CREATE TABLE table_name_96 (event VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_24 WHERE result = \"25th\"", "question": "In which tournament was the result 25th?", "context": "CREATE TABLE table_name_24 (tournament VARCHAR, result VARCHAR)"}, {"answer": "SELECT artist FROM table_name_28 WHERE draw > 6 AND place > 14", "question": "What artist has more than 6 draws, and in a place higher than 14?", "context": "CREATE TABLE table_name_28 (artist VARCHAR, draw VARCHAR, place VARCHAR)"}, {"answer": "SELECT social_democratic FROM table_name_33 WHERE democratic_and_social_centre = \"10.0% 22 seats\"", "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_86 WHERE democratic_and_social_centre = \"4.4% 4 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 number_of_teams FROM table_name_66 WHERE top_goalscorer_s_ = \"not awarded\" AND year = \"2007 details\"", "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 location FROM table_name_91 WHERE best_goalkeeper = \"164 (8.2)\"", "question": "What is the location of the tournament where the best goalkeeper had 164 (8.2)?", "context": "CREATE TABLE table_name_91 (location VARCHAR, best_goalkeeper VARCHAR)"}, {"answer": "SELECT section FROM table_name_30 WHERE level = \"tier 2\" AND season = 1996", "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 administration FROM table_name_21 WHERE division = \"ykk\u00f6nen (first division)\" AND position = \"1st\" AND season = 1996", "question": "What is the administration when the division was Ykk\u00f6nen (first division), and they were in the 1st position in 1996?", "context": "CREATE TABLE table_name_21 (administration VARCHAR, season VARCHAR, division VARCHAR, position VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_81 WHERE actor_actress = \"emma thompson\" AND category = \"best supporting actress\"", "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 category FROM table_name_51 WHERE actor_actress = \"al pacino\" AND film_title_used_in_nomination = \"glengarry glen ross\"", "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 year__ceremony_ FROM table_name_26 WHERE category = \"best actress\" AND actor_actress = \"sigourney weaver\"", "question": "What is the year when sigourney weaver was nominated for best actress?", "context": "CREATE TABLE table_name_26 (year__ceremony_ VARCHAR, category VARCHAR, actor_actress VARCHAR)"}, {"answer": "SELECT year__ceremony_ FROM table_name_30 WHERE result = \"nominee\" AND actor_actress = \"holly hunter\"", "question": "What year was holly hunter a nominee?", "context": "CREATE TABLE table_name_30 (year__ceremony_ VARCHAR, result VARCHAR, actor_actress VARCHAR)"}, {"answer": "SELECT per_capita_income FROM table_name_61 WHERE median_family_income = \"$40,492\"", "question": "What is the per capita income of the county with a median family income of $40,492?", "context": "CREATE TABLE table_name_61 (per_capita_income VARCHAR, median_family_income VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_21 WHERE result = \"won\" AND role_episode = \"fox mulder\"", "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 year FROM table_name_82 WHERE role_episode = \"david duchovny\"", "question": "what is the year when the role/episode is david duchovny?", "context": "CREATE TABLE table_name_82 (year VARCHAR, role_episode VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE week = 9", "question": "What date has 9 as the week?", "context": "CREATE TABLE table_name_21 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_16 WHERE tally = \"0-8\"", "question": "What is the average total of the 0-8 tally?", "context": "CREATE TABLE table_name_16 (total INTEGER, tally VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_6 WHERE opposition = \"tipperary\"", "question": "What is the total rank of the match with tipperary as the opposition?", "context": "CREATE TABLE table_name_6 (rank VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_62 WHERE player = \"tommy ring\" AND rank > 1", "question": "What is the lowest total of player tommy ring, who has a rank greater than 1?", "context": "CREATE TABLE table_name_62 (total INTEGER, player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_5 WHERE opposition = \"offaly\" AND total > 9", "question": "What is the average rank of the match where offaly was the opposition and the total was greater than 9?", "context": "CREATE TABLE table_name_5 (rank INTEGER, opposition VARCHAR, total VARCHAR)"}, {"answer": "SELECT municipality FROM table_name_34 WHERE party = \"lega friuli-vg\" AND election < 2011", "question": "Which municipality has a party of Lega Friuli-VG that won elections before 2011?", "context": "CREATE TABLE table_name_34 (municipality VARCHAR, party VARCHAR, election VARCHAR)"}, {"answer": "SELECT party FROM table_name_99 WHERE mayor = \"ettore romoli\"", "question": "Which party is Ettore Romoli from?", "context": "CREATE TABLE table_name_99 (party VARCHAR, mayor VARCHAR)"}, {"answer": "SELECT campus FROM table_name_59 WHERE location = \"brgy. alangilan, batangas city\"", "question": "What campus is in Brgy. Alangilan, Batangas City?", "context": "CREATE TABLE table_name_59 (campus VARCHAR, location VARCHAR)"}, {"answer": "SELECT founded FROM table_name_41 WHERE location = \"balayan, batangas\"", "question": "When was the Balayan, Batangas campus founded?", "context": "CREATE TABLE table_name_41 (founded VARCHAR, location VARCHAR)"}, {"answer": "SELECT executive_director FROM table_name_84 WHERE type = \"extension\" AND location = \"lemery, batangas\"", "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 COUNT(silver) FROM table_name_81 WHERE gold > 0 AND rank = \"14\" AND bronze > 4", "question": "What is number of silver for the country with more than 0 gold, rank of 14, and more than 4 bronze?", "context": "CREATE TABLE table_name_81 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_19 WHERE rank = \"19\"", "question": "What is the number of gold for the country ranked 19?", "context": "CREATE TABLE table_name_19 (gold INTEGER, rank VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_83 WHERE bronze < 0", "question": "What is the least amount of silver when there is less than 0 bronze?", "context": "CREATE TABLE table_name_83 (silver INTEGER, bronze INTEGER)"}, {"answer": "SELECT MAX(bronze) FROM table_name_99 WHERE total = 14 AND gold > 6", "question": "What is the most bronze when the total is 14, and there are more than 6 gold?", "context": "CREATE TABLE table_name_99 (bronze INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT 187 AS kg FROM table_name_79 WHERE snatch = \"clean & jerk\"", "question": "Who has 187kg and a Snatch of Clean & Jerk?", "context": "CREATE TABLE table_name_79 (snatch VARCHAR)"}, {"answer": "SELECT reserved_for___sc___st__none_ FROM table_name_81 WHERE constituency_number = \"203\"", "question": "What is the Reserved for (SC / ST /None) when the constituency number is 203?", "context": "CREATE TABLE table_name_81 (reserved_for___sc___st__none_ VARCHAR, constituency_number 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\"", "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 other FROM table_name_95 WHERE firefox = \"21.22%\"", "question": "What percentage of users were using other browsers according to the source that reported 21.22% were using Firefox?", "context": "CREATE TABLE table_name_95 (other VARCHAR, firefox VARCHAR)"}, {"answer": "SELECT firefox FROM table_name_60 WHERE source = \"w3counter\"", "question": "According to W3Counter, what percentage of browsers used Firefox?", "context": "CREATE TABLE table_name_60 (firefox VARCHAR, source VARCHAR)"}, {"answer": "SELECT firefox FROM table_name_22 WHERE internet_explorer = \"21.70%\"", "question": "What percentage of users were using Firefox according to the source that reported 21.70% used Internet Explorer?", "context": "CREATE TABLE table_name_22 (firefox VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT source FROM table_name_43 WHERE chrome = \"32.60%\"", "question": "Which source reported 32.60% of browsers used Chrome?", "context": "CREATE TABLE table_name_43 (source VARCHAR, chrome VARCHAR)"}, {"answer": "SELECT firefox FROM table_name_66 WHERE safari = \"15.40%\"", "question": "What percentage of users were using Firefox according to the source that reported 15.40% used Safari?", "context": "CREATE TABLE table_name_66 (firefox VARCHAR, safari VARCHAR)"}, {"answer": "SELECT internet_explorer FROM table_name_53 WHERE firefox = \"20.01%\"", "question": "What percentage of users were using Internet Explorer according to the source that reported 20.01% used Firefox?", "context": "CREATE TABLE table_name_53 (internet_explorer VARCHAR, firefox VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_7 WHERE team = \"rothmans honda\" AND year = 1992", "question": "How many points did team Rothmans Honda have in 1992?", "context": "CREATE TABLE table_name_7 (points INTEGER, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT class FROM table_name_66 WHERE year < 1990 AND points = 33", "question": "What class before 1990 has points of 33?", "context": "CREATE TABLE table_name_66 (class VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_74 WHERE year = 1992", "question": "How many total points were in 1992?", "context": "CREATE TABLE table_name_74 (points VARCHAR, year VARCHAR)"}, {"answer": "SELECT class FROM table_name_58 WHERE wins > 0 AND year = 1992", "question": "In 1992, what class has higher wins than 0?", "context": "CREATE TABLE table_name_58 (class VARCHAR, wins VARCHAR, year VARCHAR)"}, {"answer": "SELECT class FROM table_name_34 WHERE team = \"honda britain\" AND points > 0", "question": "What was the class that team Honda Britain was in with points higher than 0?", "context": "CREATE TABLE table_name_34 (class VARCHAR, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(fa_cup_goals) FROM table_name_55 WHERE league_cup_apps > 0 AND name = \"trevor cherry\"", "question": "Which FA Cup Goals have League Cup Apps larger than 0, and a Name of trevor cherry?", "context": "CREATE TABLE table_name_55 (fa_cup_goals INTEGER, league_cup_apps VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(league_goals) FROM table_name_43 WHERE league_cup_goals < 0", "question": "How many League Goals have League Cup Goals smaller than 0?", "context": "CREATE TABLE table_name_43 (league_goals INTEGER, league_cup_goals INTEGER)"}, {"answer": "SELECT 2009 FROM table_name_56 WHERE 2011 = \"1r\" AND tournament = \"australian open\"", "question": "What's the 2009 of the Australian Open having a 1R in 2011?", "context": "CREATE TABLE table_name_56 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_87 WHERE 2011 = \"1r\" AND tournament = \"australian open\"", "question": "What's the 2008 of the Australian Open when the 2011 was 1R?", "context": "CREATE TABLE table_name_87 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_17 WHERE 2011 = \"1r\" AND 2010 = \"2r\" AND tournament = \"us open\"", "question": "What's the 2008 of the US Open when 2010 was 2R and 2011 was 1R?", "context": "CREATE TABLE table_name_17 (tournament VARCHAR)"}, {"answer": "SELECT MIN(number_of_episodes) FROM table_name_22 WHERE airing_date = \"12 jan- 6 feb\"", "question": "What is the lowest number of episodes in a series with an airing date of 12 jan- 6 feb?", "context": "CREATE TABLE table_name_22 (number_of_episodes INTEGER, airing_date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_40 WHERE opponent_in_the_final = \"petra mandula patricia wartusch\"", "question": "What tournament has petra mandula patricia wartusch as the opponent in the final?", "context": "CREATE TABLE table_name_40 (tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE opponent_in_the_final = \"kimberly po nathalie tauziat\"", "question": "What date has kimberly po nathalie tauziat as the opponent in the final?", "context": "CREATE TABLE table_name_92 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE date = \"february 12, 2006\"", "question": "What score has February 12, 2006 as the date?", "context": "CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_69 WHERE date = \"october 9, 2005\"", "question": "What opponent in the final has October 9, 2005 as the date?", "context": "CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_20 WHERE player = \"bo bae song\"", "question": "What is the to par for Bo Bae Song?", "context": "CREATE TABLE table_name_20 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_70 WHERE place = \"t1\" AND player = \"jiyai shin\"", "question": "What is the to par for Jiyai Shin when the place is t1?", "context": "CREATE TABLE table_name_70 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_49 WHERE place = \"t1\" AND player = \"jiyai shin\"", "question": "What is the to par for Jiyai Shin in place t1?", "context": "CREATE TABLE table_name_49 (to_par VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE place = \"t9\" AND player = \"laura diaz\"", "question": "What was Laura Diaz's score for place t9?", "context": "CREATE TABLE table_name_72 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_65 WHERE player = \"bo bae song\"", "question": "What country does Bo Bae Song play for?", "context": "CREATE TABLE table_name_65 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_37 WHERE nation = \"brazil\" AND total > 55", "question": "How many gold medals did Brazil win with a total of more than 55 medals?", "context": "CREATE TABLE table_name_37 (gold INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_38 WHERE silver > 2 AND bronze < 2", "question": "How many teams won more than 2 silver medals and fewer than 2 Bronze medals?", "context": "CREATE TABLE table_name_38 (rank VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_92 WHERE nation = \"greece\"", "question": "What is the fewest gold medals won by Greece?", "context": "CREATE TABLE table_name_92 (gold INTEGER, nation VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_55 WHERE nation = \"united states\" AND bronze < 4", "question": "What is the lowest rank of the United States, with fewer than 4 bronze medals?", "context": "CREATE TABLE table_name_55 (rank INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_83 WHERE silver < 2 AND bronze < 4", "question": "What is the highest number of gold medals won by a team that won fewer than 2 silver and fewer than 4 bronze medals?", "context": "CREATE TABLE table_name_83 (gold INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(react) FROM table_name_72 WHERE lane < 4 AND rank > 4 AND time > 23.22", "question": "Which React has a Lane smaller than 4, and a Rank larger than 4, and a Time larger than 23.22?", "context": "CREATE TABLE table_name_72 (react INTEGER, time VARCHAR, lane VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(against) FROM table_name_67 WHERE draws = 0 AND losses = 16", "question": "What shows for against when draws are 0, and losses are 16?", "context": "CREATE TABLE table_name_67 (against INTEGER, draws VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_59 WHERE draws > 1 AND byes > 0", "question": "What is the highest number of wins when draws are larger than 1, and byes are larger than 0?", "context": "CREATE TABLE table_name_59 (wins INTEGER, draws VARCHAR, byes VARCHAR)"}, {"answer": "SELECT team FROM table_name_24 WHERE winners = 1 AND years_runners_up = \"2007\"", "question": "Which team were runners-up in 2007 and had 1 under winners?", "context": "CREATE TABLE table_name_24 (team VARCHAR, winners VARCHAR, years_runners_up VARCHAR)"}, {"answer": "SELECT COUNT(winners) FROM table_name_31 WHERE years_won = \"1983\"", "question": "What is the sum of winners when 1983 is the years won?", "context": "CREATE TABLE table_name_31 (winners VARCHAR, years_won VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_72 WHERE total = 12", "question": "Which Rank has a Total of 12?", "context": "CREATE TABLE table_name_72 (rank INTEGER, total VARCHAR)"}, {"answer": "SELECT rank FROM table_name_12 WHERE opposition = \"limerick\"", "question": "Which Rank has an Opposition of limerick?", "context": "CREATE TABLE table_name_12 (rank VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_37 WHERE tally = \"0-10\" AND opposition = \"cork\"", "question": "How much Rank has a Tally of 0-10, and an Opposition of cork?", "context": "CREATE TABLE table_name_37 (rank VARCHAR, tally VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_18 WHERE rank < 3 AND county = \"cork\"", "question": "Which Total has a Rank smaller than 3, and a County of cork?", "context": "CREATE TABLE table_name_18 (total INTEGER, rank VARCHAR, county VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_36 WHERE tally = \"4-0\"", "question": "Which Rank has a Tally of 4-0?", "context": "CREATE TABLE table_name_36 (rank INTEGER, tally VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_60 WHERE rank > 3 AND time > 45.63 AND react < 0.28800000000000003 AND athlete = \"geiner mosquera\"", "question": "Which Lane has a Rank larger than 3, and a Time larger than 45.63, and a Reaction smaller than 0.28800000000000003, and an Athlete of geiner mosquera?", "context": "CREATE TABLE table_name_60 (lane INTEGER, athlete VARCHAR, react VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(react) FROM table_name_24 WHERE athlete = \"alleyne francique\" AND lane > 9", "question": "How many reactions have an Athlete of alleyne francique, and a Lane larger than 9?", "context": "CREATE TABLE table_name_24 (react VARCHAR, athlete VARCHAR, lane VARCHAR)"}, {"answer": "SELECT year FROM table_name_67 WHERE waterford_score = \"6-08 (24)\"", "question": "What yeae has 6-08 (24) as a waterford score?", "context": "CREATE TABLE table_name_67 (year VARCHAR, waterford_score VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_95 WHERE competition = \"all-ireland hurling final\" AND waterford_score = \"6-08 (24)\"", "question": "What is the lowest year that has all-ireland hurling final as the competition, and 6-08 (24) as the waterford score?", "context": "CREATE TABLE table_name_95 (year INTEGER, competition VARCHAR, waterford_score VARCHAR)"}, {"answer": "SELECT waterford_score FROM table_name_7 WHERE year < 1963 AND competition = \"all-ireland hurling final replay\"", "question": "What is the waterford score that has a year prior to 1963, with all-ireland hurling final replay as the competition?", "context": "CREATE TABLE table_name_7 (waterford_score VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT rounds FROM table_name_28 WHERE team = \"rml racing silverline\" AND drivers = \"james nash\"", "question": "What rounds did RML Racing Silverline and James Nash compete?", "context": "CREATE TABLE table_name_28 (rounds VARCHAR, team VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT class FROM table_name_28 WHERE drivers = \"rob collard\"", "question": "What class is Rob Collard in?", "context": "CREATE TABLE table_name_28 (class VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT car_spec FROM table_name_68 WHERE team = \"airwaves bmw\" AND drivers = \"rob collard\"", "question": "What is the car specs for team Airwaves BMW's driver Rob Collard?", "context": "CREATE TABLE table_name_68 (car_spec VARCHAR, team VARCHAR, drivers VARCHAR)"}, {"answer": "SELECT language FROM table_name_83 WHERE name = \"tv3\"", "question": "What is the language of TV3?", "context": "CREATE TABLE table_name_83 (language VARCHAR, name VARCHAR)"}, {"answer": "SELECT group FROM table_name_70 WHERE name = \"espn international sports\"", "question": "What is the group of ESPN International Sports?", "context": "CREATE TABLE table_name_70 (group VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_74 WHERE name = \"espn international sports\"", "question": "What is the type of station for ESPN International Sports?", "context": "CREATE TABLE table_name_74 (type VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_18 WHERE group = \"movies\"", "question": "What is the type of station that is in the movies group?", "context": "CREATE TABLE table_name_18 (type VARCHAR, group VARCHAR)"}, {"answer": "SELECT name FROM table_name_6 WHERE total = 22", "question": "What is the name of the person with a total of 22?", "context": "CREATE TABLE table_name_6 (name VARCHAR, total VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_82 WHERE athlete = \"henry carr\" AND time = \"20.3y\"", "question": "What's the nationality of Henry Carr having a time of 20.3y?", "context": "CREATE TABLE table_name_82 (nationality VARCHAR, athlete VARCHAR, time VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_53 WHERE athlete = \"livio berruti\"", "question": "What's the nationality of Livio Berruti?", "context": "CREATE TABLE table_name_53 (nationality VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_70 WHERE time = \"20.6\" AND athlete = \"ray norton\"", "question": "What's the nationality of Ray norton with a time of 20.6?", "context": "CREATE TABLE table_name_70 (nationality VARCHAR, time VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT SUM(prominence__m_) FROM table_name_39 WHERE country = \"slovakia\"", "question": "What is the sum of the prominence in m of slovakia?", "context": "CREATE TABLE table_name_39 (prominence__m_ INTEGER, country VARCHAR)"}, {"answer": "SELECT prominence__m_ FROM table_name_57 WHERE col__m_ > 738", "question": "What is the prominence in m of a col in m greater than 738?", "context": "CREATE TABLE table_name_57 (prominence__m_ VARCHAR, col__m_ INTEGER)"}, {"answer": "SELECT MIN(col__m_) FROM table_name_69 WHERE peak = \"gerlachovsk\u00fd \u0161t\u00edt\" AND elevation__m_ > 2 OFFSET 655", "question": "Whta is the lowest col in m of gerlachovsk\u00fd \u0161t\u00edt peak, which has an elevation greater than 2,655 m?", "context": "CREATE TABLE table_name_69 (col__m_ INTEGER, peak VARCHAR, elevation__m_ VARCHAR)"}, {"answer": "SELECT AVG(prominence__m_) FROM table_name_48 WHERE peak = \"pietrosul rodnei\" AND elevation__m_ < 2 OFFSET 303", "question": "What is the average prominence in m of pietrosul rodnei peak, which has an elevation less than 2,303?", "context": "CREATE TABLE table_name_48 (prominence__m_ INTEGER, peak VARCHAR, elevation__m_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_9 WHERE comp = \"og\"", "question": "What is the Score of the Shooter with a Comp of OG?", "context": "CREATE TABLE table_name_9 (score VARCHAR, comp VARCHAR)"}, {"answer": "SELECT SUM(b_score) FROM table_name_70 WHERE total > 16.125 AND position = \"3rd\"", "question": "What is the B Score when the total is more than 16.125, and position is 3rd?", "context": "CREATE TABLE table_name_70 (b_score INTEGER, total VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(a_score) FROM table_name_61 WHERE b_score = 9.15 AND total = 16.05", "question": "What is the lowest A Score when the B Score is 9.15, and total is 16.05?", "context": "CREATE TABLE table_name_61 (a_score INTEGER, b_score VARCHAR, total VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_39 WHERE time = \"7:14.64\"", "question": "Who had a time of 7:14.64?", "context": "CREATE TABLE table_name_39 (athlete VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_9 WHERE athlete = \"lassi karonen\"", "question": "What rank was Lassi Karonen?", "context": "CREATE TABLE table_name_9 (rank VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_10 WHERE time = \"7:52.53\"", "question": "What was the rank when then time was 7:52.53?", "context": "CREATE TABLE table_name_10 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_73 WHERE notes = \"q\" AND country = \"germany\"", "question": "Who was the athlete from Germany with notes of Q?", "context": "CREATE TABLE table_name_73 (athlete VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT rank FROM table_name_74 WHERE country = \"germany\"", "question": "What rank is Germany?", "context": "CREATE TABLE table_name_74 (rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_71 WHERE country = \"hong kong\"", "question": "Who was the athlete from Hong Kong?", "context": "CREATE TABLE table_name_71 (athlete VARCHAR, country VARCHAR)"}, {"answer": "SELECT school FROM table_name_75 WHERE conference_joined = \"northeast corner\" AND mascot = \"blazers\"", "question": "Which school has a mascot of the Blazers and in the Northeast Corner conference?", "context": "CREATE TABLE table_name_75 (school VARCHAR, conference_joined VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_80 WHERE ihsaa_class___football_class = \"2a/2a\"", "question": "Which mascot has an IHSAA Class and Football class of 2A/2A?", "context": "CREATE TABLE table_name_80 (mascot VARCHAR, ihsaa_class___football_class VARCHAR)"}, {"answer": "SELECT player FROM table_name_33 WHERE round < 3", "question": "Which player was selected in rounds under 3?", "context": "CREATE TABLE table_name_33 (player VARCHAR, round INTEGER)"}, {"answer": "SELECT MAX(water__sqmi_) FROM table_name_91 WHERE pop__2010_ = 359 AND longitude < -97.176811", "question": "Which Water (sqmi) has a Pop (2010) of 359, and a Longitude smaller than -97.176811?", "context": "CREATE TABLE table_name_91 (water__sqmi_ INTEGER, pop__2010_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT MIN(land___sqmi__) FROM table_name_79 WHERE water__sqmi_ < 0.04 AND longitude = -96.794706", "question": "Which Land (sqmi) has a Water (sqmi) smaller than 0.04, and a Longitude of -96.794706?", "context": "CREATE TABLE table_name_79 (land___sqmi__ INTEGER, water__sqmi_ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT SUM(latitude) FROM table_name_9 WHERE water__sqmi_ = 0.267 AND ansi_code > 1759605", "question": "How much Latitude has a Water (sqmi) of 0.267, and an ANSI code larger than 1759605?", "context": "CREATE TABLE table_name_9 (latitude INTEGER, water__sqmi_ VARCHAR, ansi_code VARCHAR)"}, {"answer": "SELECT MIN(ansi_code) FROM table_name_48 WHERE geo_id > 3809927140 AND water__sqmi_ < 0.492 AND pop__2010_ = 37 AND latitude > 48.245979", "question": "Which ANSI code has a GEO ID larger than 3809927140, and a Water (sqmi) smaller than 0.492, and a Pop (2010) of 37, and a Latitude larger than 48.245979?", "context": "CREATE TABLE table_name_48 (ansi_code INTEGER, latitude VARCHAR, pop__2010_ VARCHAR, geo_id VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT owner FROM table_name_64 WHERE frequency = \"00 99.3\"", "question": "What is the Owner of Frequency 00 99.3?", "context": "CREATE TABLE table_name_64 (owner VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT branding FROM table_name_70 WHERE frequency = \"00 94.5\"", "question": "What is the Branding of Frequency 00 94.5?", "context": "CREATE TABLE table_name_70 (branding VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_33 WHERE owner = \"ckua radio foundation\"", "question": "What is the Call Sign of the Frequency by Owner CKUA Radio Foundation?", "context": "CREATE TABLE table_name_33 (call_sign VARCHAR, owner VARCHAR)"}, {"answer": "SELECT owner FROM table_name_40 WHERE format = \"first nations community radio\"", "question": "What is the Owner of the Frequency with a Format of First Nations Community Radio?", "context": "CREATE TABLE table_name_40 (owner VARCHAR, format VARCHAR)"}, {"answer": "SELECT school FROM table_name_78 WHERE previous_conference = \"none (new school)\" AND year_joined > 1960 AND location = \"versailles\"", "question": "Which School has a Previous Conference of none (new school), and a Year Joined larger than 1960, and a Location of versailles?", "context": "CREATE TABLE table_name_78 (school VARCHAR, location VARCHAR, previous_conference VARCHAR, year_joined VARCHAR)"}, {"answer": "SELECT location FROM table_name_95 WHERE previous_conference = \"independents\" AND mascot = \"hilltoppers\"", "question": "Which Location has a Previous Conference of independents, and a Mascot of hilltoppers?", "context": "CREATE TABLE table_name_95 (location VARCHAR, previous_conference VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT AVG(year_joined) FROM table_name_88 WHERE size > 93 AND previous_conference = \"none (new school)\" AND mascot = \"rebels\"", "question": "Which Year Joined has a Size larger than 93, and a Previous Conference of none (new school), and a Mascot of rebels?", "context": "CREATE TABLE table_name_88 (year_joined INTEGER, mascot VARCHAR, size VARCHAR, previous_conference VARCHAR)"}, {"answer": "SELECT COUNT(year_joined) FROM table_name_68 WHERE size < 417 AND ihsaa_class = \"a\" AND school = \"jac-cen-del\"", "question": "How many years Joined have a Size smaller than 417, and an IHSAA Class of A, and a School of jac-cen-del?", "context": "CREATE TABLE table_name_68 (year_joined VARCHAR, school VARCHAR, size VARCHAR, ihsaa_class VARCHAR)"}, {"answer": "SELECT COUNT(1957) FROM table_name_71 WHERE 1955 < 0.63 AND 1952 > 0.22", "question": "What is the 1957 number when the 1955 is smaller than 0.63, and 1952 is larger than 0.22?", "context": "CREATE TABLE table_name_71 (Id VARCHAR)"}, {"answer": "SELECT SUM(1952) FROM table_name_37 WHERE 1954 > 4.2", "question": "What is the 1952 rate when the 1954 is more than 4.2?", "context": "CREATE TABLE table_name_37 (Id VARCHAR)"}, {"answer": "SELECT SUM(1955) FROM table_name_7 WHERE 1956 > 2.9 AND 1953 > 4.5", "question": "What is the 1955 rate when the 1956 is more than 2.9, and 1953 is larger than 4.5?", "context": "CREATE TABLE table_name_7 (Id VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_97 WHERE result = \"bottom 3\" AND partner = \"endre jansen\"", "question": "In what Week resulting in the bottom 3 was Endre Jansen Partner?", "context": "CREATE TABLE table_name_97 (week INTEGER, result VARCHAR, partner VARCHAR)"}, {"answer": "SELECT dance FROM table_name_16 WHERE result = \"safe\" AND week = 1", "question": "What Dance in Week 1 resulted in Safe?", "context": "CREATE TABLE table_name_16 (dance VARCHAR, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_16 WHERE dance = \"locking\"", "question": "In what Week was the Locking Dance?", "context": "CREATE TABLE table_name_16 (week INTEGER, dance VARCHAR)"}, {"answer": "SELECT position FROM table_name_5 WHERE round = 7 AND pick__number < 214", "question": "What position has 7 as the round, with a pick # less than 214?", "context": "CREATE TABLE table_name_5 (position VARCHAR, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_name_95 WHERE round > 1 AND player = \"dylan mcfarland\"", "question": "What college has a round greater than 1, with dylan mcfarland as the player?", "context": "CREATE TABLE table_name_95 (college VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_44 WHERE pick__number > 207", "question": "What player has a pick # greater than 207?", "context": "CREATE TABLE table_name_44 (player VARCHAR, pick__number INTEGER)"}, {"answer": "SELECT artist FROM table_name_42 WHERE certification = \"4x platinum\"", "question": "Which artist had a 4x platinum?", "context": "CREATE TABLE table_name_42 (artist VARCHAR, certification VARCHAR)"}, {"answer": "SELECT MAX(peak_position) FROM table_name_48 WHERE album = \"one of the boys\"", "question": "What was the highest peak position for the album one of the boys?", "context": "CREATE TABLE table_name_48 (peak_position INTEGER, album VARCHAR)"}, {"answer": "SELECT COUNT(sales) FROM table_name_31 WHERE peak_position = 1 AND certification = \"6x platinum\"", "question": "How many sales had a peak position of 1 and a certification of 6x platinum?", "context": "CREATE TABLE table_name_31 (sales VARCHAR, peak_position VARCHAR, certification VARCHAR)"}, {"answer": "SELECT album FROM table_name_25 WHERE certification = \"3x platinum\" AND peak_position = 6", "question": "What album had a peak position of 6 and a certification of 3x platinum?", "context": "CREATE TABLE table_name_25 (album VARCHAR, certification VARCHAR, peak_position VARCHAR)"}, {"answer": "SELECT COUNT(sales) FROM table_name_44 WHERE peak_position > 2 AND certification = \"3x platinum\"", "question": "How many sales had a peak position more than 2 and a Certification of 3x platinum?", "context": "CREATE TABLE table_name_44 (sales VARCHAR, peak_position VARCHAR, certification VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_18 WHERE time = \"7:39.70\"", "question": "Who were the rowers who had a time of 7:39.70?", "context": "CREATE TABLE table_name_18 (rowers VARCHAR, time VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_51 WHERE rank < 4 AND country = \"china\"", "question": "Who were the rowers from china wh had a rank smaller than 4?", "context": "CREATE TABLE table_name_51 (rowers VARCHAR, rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT notes FROM table_name_26 WHERE country = \"denmark\"", "question": "What is the notes for the rowers from denmark?", "context": "CREATE TABLE table_name_26 (notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_21 WHERE nation = \"austria\" AND total > 6", "question": "Which Bronze has a Nation of austria, and a Total larger than 6?", "context": "CREATE TABLE table_name_21 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT rank FROM table_name_13 WHERE silver = 1 AND gold = 0 AND nation = \"austria\"", "question": "Which Rank has a Silver of 1, and a Gold of 0, and a Nation of austria?", "context": "CREATE TABLE table_name_13 (rank VARCHAR, nation VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_67 WHERE rank = \"5\" AND bronze < 0", "question": "Which Total has a Rank of 5, and a Bronze smaller than 0?", "context": "CREATE TABLE table_name_67 (total INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_37 WHERE bronze = 5 AND silver < 1", "question": "Which Total has a Bronze of 5, and a Silver smaller than 1?", "context": "CREATE TABLE table_name_37 (total INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_25 WHERE formula = \"grand prix\"", "question": "What is the highest year with a formula of Grand Prix?", "context": "CREATE TABLE table_name_25 (year INTEGER, formula VARCHAR)"}, {"answer": "SELECT formula FROM table_name_64 WHERE driver = \"john moore-brabazon\"", "question": "Which formula had a driver of John Moore-Brabazon?", "context": "CREATE TABLE table_name_64 (formula VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_51 WHERE year < 1905", "question": "Which driver had a year under 1905?", "context": "CREATE TABLE table_name_51 (driver VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_name_46 WHERE formula = \"grand prix\"", "question": "How many years had a formula of Grand Prix?", "context": "CREATE TABLE table_name_46 (year VARCHAR, formula VARCHAR)"}, {"answer": "SELECT location FROM table_name_15 WHERE driver = \"george heath\"", "question": "Which location was won by George Heath?", "context": "CREATE TABLE table_name_15 (location VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(2010) FROM table_name_64 WHERE country = \"ghana\"", "question": "What is the 2010 total for ghana?", "context": "CREATE TABLE table_name_64 (country VARCHAR)"}, {"answer": "SELECT country FROM table_name_73 WHERE airport = \"nnamdi azikiwe international airport\"", "question": "Which country is the nnamdi azikiwe international airport in?", "context": "CREATE TABLE table_name_73 (country VARCHAR, airport VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_79 WHERE nationality = \"kenya\" AND react > 0.212", "question": "What is the average lane for Kenya with react larger than 0.212?", "context": "CREATE TABLE table_name_79 (lane INTEGER, nationality VARCHAR, react VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_34 WHERE athlete = \"tim maeyens\"", "question": "what is the highest rank for tim maeyens?", "context": "CREATE TABLE table_name_34 (rank INTEGER, athlete VARCHAR)"}, {"answer": "SELECT notes FROM table_name_24 WHERE athlete = \"andre vonarburg\"", "question": "what is the notes for andre vonarburg?", "context": "CREATE TABLE table_name_24 (notes VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_13 WHERE country = \"greece\"", "question": "Who is the athlete from greece?", "context": "CREATE TABLE table_name_13 (athlete VARCHAR, country VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_10 WHERE rank < 2", "question": "who is the athlete with the rank smaller than 2?", "context": "CREATE TABLE table_name_10 (athlete VARCHAR, rank INTEGER)"}, {"answer": "SELECT notes FROM table_name_86 WHERE time = \"7:38.87\"", "question": "what is the notes for the athlete with the time of 7:38.87?", "context": "CREATE TABLE table_name_86 (notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_74 WHERE silver = 4 AND total > 6", "question": "What is the sum of the gold medals of the nation with 4 silvers and more than 6 total medals?", "context": "CREATE TABLE table_name_74 (gold INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_4 WHERE nation = \"west germany\" AND gold > 0", "question": "What is the highest number of bronze medals of west germany, which has more than 0 golds?", "context": "CREATE TABLE table_name_4 (bronze INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_2 WHERE bronze > 2 AND silver > 0 AND nation = \"soviet union\"", "question": "What is the average total medals of the soviet union, which has more than 2 bronze and more than 0 silver medals?", "context": "CREATE TABLE table_name_2 (total INTEGER, nation VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_32 WHERE ship = \"europa\" AND dates = \"14 \u2013 23 october\"", "question": "What year did the ship Europa, have the dates of 14 \u2013 23 October?", "context": "CREATE TABLE table_name_32 (year INTEGER, ship VARCHAR, dates VARCHAR)"}, {"answer": "SELECT days, _hours, _minutes FROM table_name_81 WHERE dates = \"21 \u2013 26 october\"", "question": "What is the Days, hours, minutes for 21 \u2013 26 October?", "context": "CREATE TABLE table_name_81 (days VARCHAR, _hours VARCHAR, _minutes VARCHAR, dates VARCHAR)"}, {"answer": "SELECT year_joined FROM table_name_83 WHERE mascot = \"vikings\"", "question": "Which year did the school with the mascot of the Vikings join?", "context": "CREATE TABLE table_name_83 (year_joined VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_name_64 WHERE recorded_at = \"funhouse studios\" AND time = \"3:27\"", "question": "Who wrote the album recorded at funhouse studios with a time of 3:27?", "context": "CREATE TABLE table_name_64 (writer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR)"}, {"answer": "SELECT performer_s_ FROM table_name_45 WHERE recorded_at = \"the cabin in the woods studio\" AND time = \"3:16\"", "question": "Who performed the song recorded at the Cabin in the Woods Studio with a Time of 3:16?", "context": "CREATE TABLE table_name_45 (performer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR)"}, {"answer": "SELECT league_cup_goals FROM table_name_45 WHERE league_cup_apps = \"1 (1)\"", "question": "Which League Cup Goals have a League Cup Apps of 1 (1)?", "context": "CREATE TABLE table_name_45 (league_cup_goals VARCHAR, league_cup_apps VARCHAR)"}, {"answer": "SELECT fa_cup_apps FROM table_name_90 WHERE total_goals > 6 AND fa_cup_goals < 1", "question": "Which FA Cup Apps have Total Goals larger than 6, and an FA Cup Goals smaller than 1?", "context": "CREATE TABLE table_name_90 (fa_cup_apps VARCHAR, total_goals VARCHAR, fa_cup_goals VARCHAR)"}, {"answer": "SELECT COUNT(league_goals) FROM table_name_84 WHERE fa_cup_apps = \"0 (1)\"", "question": "How many League Goals have an FA Cup Apps of 0 (1)?", "context": "CREATE TABLE table_name_84 (league_goals VARCHAR, fa_cup_apps VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_55 WHERE player = \"will wilcox\"", "question": "What is the lowest round number in which Will Wilcox was selected?", "context": "CREATE TABLE table_name_55 (round INTEGER, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_7 WHERE college = \"tennessee-chattanooga\"", "question": "Which player went to college at Tennessee-Chattanooga?", "context": "CREATE TABLE table_name_7 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(col__m_) FROM table_name_88 WHERE elevation__m_ < 1 OFFSET 624", "question": "Which Col (m) has an Elevation (m) smaller than 1,624?", "context": "CREATE TABLE table_name_88 (col__m_ INTEGER, elevation__m_ INTEGER)"}, {"answer": "SELECT SUM(elevation__m_) FROM table_name_45 WHERE prominence__m_ > 1 OFFSET 754", "question": "How much Elevation (m) has a Prominence (m) larger than 1,754?", "context": "CREATE TABLE table_name_45 (elevation__m_ INTEGER, prominence__m_ INTEGER)"}, {"answer": "SELECT MIN(1 AS st_half) FROM table_name_21 WHERE score > 621 AND rank = 35", "question": "What is the lowest first half when the score is larger than 621 and the rank 35?", "context": "CREATE TABLE table_name_21 (score VARCHAR, rank VARCHAR)"}, {"answer": "SELECT grid FROM table_name_72 WHERE points > 10 AND time_retired = \"+13.7 secs\"", "question": "Which Grid has Points larger than 10 and a Time/Retired of +13.7 secs?", "context": "CREATE TABLE table_name_72 (grid VARCHAR, points VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT team FROM table_name_67 WHERE points = 0 AND grid > 13 AND driver = \"alex yoong\"", "question": "Which Team has Points of 0, a Grid larger than 13, and a Driver of alex yoong?", "context": "CREATE TABLE table_name_67 (team VARCHAR, driver VARCHAR, points VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_75 WHERE rank = \"19\" AND gold < 2", "question": "What is the hioghest amount of silver medals for a nation ranked higher than 19 and less than 2 gold medals?", "context": "CREATE TABLE table_name_75 (silver INTEGER, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT nation FROM table_name_67 WHERE silver = 11", "question": "What nation finished with 11 silver medals?", "context": "CREATE TABLE table_name_67 (nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT pick FROM table_name_75 WHERE player = \"benito cheng\"", "question": "What is Benito Cheng's Pick number?", "context": "CREATE TABLE table_name_75 (pick VARCHAR, player VARCHAR)"}, {"answer": "SELECT pba_team FROM table_name_42 WHERE player = \"richard bachmann\"", "question": "What is Richard Bachmann's PBA team?", "context": "CREATE TABLE table_name_42 (pba_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT pick FROM table_name_55 WHERE college = \"far eastern\" AND player = \"johnny abarrientos\"", "question": "What is Far Eastern College Johnny Abarrientos' Pick number?", "context": "CREATE TABLE table_name_55 (pick VARCHAR, college VARCHAR, player VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_14 WHERE tie_no = \"10\"", "question": "What home team has 10 as the tie no?", "context": "CREATE TABLE table_name_14 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE tie_no = \"7\"", "question": "What is the game score when the tie no is 7?", "context": "CREATE TABLE table_name_7 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_82 WHERE date = \"10 january 1979\" AND tie_no = \"17\"", "question": "Who was the away team on 10 January 1979 who had a tie no of 17?", "context": "CREATE TABLE table_name_82 (away_team VARCHAR, date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE tie_no = \"2\"", "question": "When was the game that has tie no 2?", "context": "CREATE TABLE table_name_91 (date VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_44 WHERE event = \"golden trophy 1999\"", "question": "What round did the match at the Golden Trophy 1999 event end?", "context": "CREATE TABLE table_name_44 (round INTEGER, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_33 WHERE record = \"8\u20135\u20131\"", "question": "What event had a record of 8\u20135\u20131?", "context": "CREATE TABLE table_name_33 (event VARCHAR, record VARCHAR)"}, {"answer": "SELECT hdr_output___exr_, _hdr, _logluv_, _etc_ FROM table_name_63 WHERE \"name\" = \"name\"", "question": "What's the HDR Output that has a name of name?", "context": "CREATE TABLE table_name_63 (hdr_output___exr_ VARCHAR, _hdr VARCHAR, _logluv_ VARCHAR, _etc_ VARCHAR)"}, {"answer": "SELECT exposure_fusion FROM table_name_38 WHERE name = \"panoramaplus x4\"", "question": "What's the exposure fusion of Panoramaplus x4?", "context": "CREATE TABLE table_name_38 (exposure_fusion VARCHAR, name VARCHAR)"}, {"answer": "SELECT hdr_output___exr_, _hdr, _logluv_, _etc_ FROM table_name_35 WHERE name = \"photovista panorama\"", "question": "What's the HDR output of Photovista Panorama?", "context": "CREATE TABLE table_name_35 (hdr_output___exr_ VARCHAR, _hdr VARCHAR, _logluv_ VARCHAR, _etc_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT location FROM table_name_72 WHERE capacity = \"101,119\"", "question": "Which location has 101,119 as the capacity?", "context": "CREATE TABLE table_name_72 (location VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_68 WHERE location = \"university park, pa\"", "question": "What is the lowest rank that has university park, pa as the location?", "context": "CREATE TABLE table_name_68 (rank INTEGER, location VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_13 WHERE rank > 6 AND capacity = \"94,392\"", "question": "What home team has a rank greater than 6, and 94,392 as the capacity?", "context": "CREATE TABLE table_name_13 (home_team VARCHAR, rank VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT builder FROM table_name_98 WHERE name = \"uss cambridge\"", "question": "Who was the builder for the USS cambridge?", "context": "CREATE TABLE table_name_98 (builder VARCHAR, name VARCHAR)"}, {"answer": "SELECT laid_down FROM table_name_17 WHERE name = \"uss cambridge\"", "question": "What year was the USS Cambridge laid down?", "context": "CREATE TABLE table_name_17 (laid_down VARCHAR, name VARCHAR)"}, {"answer": "SELECT game FROM table_name_82 WHERE record = \"11-12\"", "question": "What was the number of the game when the record was 11-12?", "context": "CREATE TABLE table_name_82 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_4 WHERE game = \"16\"", "question": "What was the score of Game 16?", "context": "CREATE TABLE table_name_4 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_54 WHERE record = \"9-6\"", "question": "What was the location and attendance at the game when the record was 9-6?", "context": "CREATE TABLE table_name_54 (location_attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE round__leg_ = \"3\"", "question": "What date has 3 as the round (leg)?", "context": "CREATE TABLE table_name_88 (date VARCHAR, round__leg_ VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_87 WHERE result = \"nominated\" AND film = \"bridget jones: the edge of reason\"", "question": "What was the year of Bridget Jones: The Edge of Reason that was nominated?", "context": "CREATE TABLE table_name_87 (year INTEGER, result VARCHAR, film VARCHAR)"}, {"answer": "SELECT lost_to FROM table_name_74 WHERE film = \"chicago\"", "question": "Who was the loss to for the film Chicago?", "context": "CREATE TABLE table_name_74 (lost_to VARCHAR, film VARCHAR)"}, {"answer": "SELECT ihsaa_football_class FROM table_name_79 WHERE ihsaa_class = \"aaa\" AND location = \"nashville\"", "question": "Which IHSAA Football Class has a IHSAA Class of aaa, and a Location of nashville?", "context": "CREATE TABLE table_name_79 (ihsaa_football_class VARCHAR, ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_63 WHERE enrollment = 640", "question": "Which Mascot has an Enrollment of 640?", "context": "CREATE TABLE table_name_63 (mascot VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_96 WHERE location = \"brazil\"", "question": "Which IHSAA Class has a Location of brazil?", "context": "CREATE TABLE table_name_96 (ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT school FROM table_name_55 WHERE enrollment = 908", "question": "Which School has a Enrollment of 908?", "context": "CREATE TABLE table_name_55 (school VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT currency FROM table_name_34 WHERE code = \"sek\"", "question": "What type of currency has a code of SEK?", "context": "CREATE TABLE table_name_34 (currency VARCHAR, code VARCHAR)"}, {"answer": "SELECT code FROM table_name_34 WHERE currency = \"croatian kuna\"", "question": "What code is used to represent the currency of Croatian Kuna?", "context": "CREATE TABLE table_name_34 (code VARCHAR, currency VARCHAR)"}, {"answer": "SELECT model FROM table_name_68 WHERE chassis_code = \"w116.036\"", "question": "What's the model that has chassis code W116.036?", "context": "CREATE TABLE table_name_68 (model VARCHAR, chassis_code VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE year = \"1992\"", "question": "What the score of the 1992 game?", "context": "CREATE TABLE table_name_71 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE runners_up = \"tsv siegen\"", "question": "What is the score when TSV Siegen was the runner-up?", "context": "CREATE TABLE table_name_59 (score VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT year FROM table_name_30 WHERE venue = \"bad neuenahr eppelborn\"", "question": "What year was the game at Bad Neuenahr Eppelborn?", "context": "CREATE TABLE table_name_30 (year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_65 WHERE runners_up = \"tennis borussia berlin\" AND score = \"4 \u2013 2 *\"", "question": "What was the venue when the runner up was Tennis Borussia Berlin, and the score was 4 \u2013 2 *?", "context": "CREATE TABLE table_name_65 (venue VARCHAR, runners_up VARCHAR, score VARCHAR)"}, {"answer": "SELECT runners_up FROM table_name_2 WHERE venue = \"bergisch gladbach\" AND year = \"1983\"", "question": "What team was runner-up at Bergisch Gladbach in 1983?", "context": "CREATE TABLE table_name_2 (runners_up VARCHAR, venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT time FROM table_name_77 WHERE lane = 7", "question": "What was the time of the swimmer in lane 7?", "context": "CREATE TABLE table_name_77 (time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT rank FROM table_name_23 WHERE time = \"1:55.40\"", "question": "What was the rank of the swimmer with a time of 1:55.40?", "context": "CREATE TABLE table_name_23 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE game = \"13\"", "question": "What was the date for game 13?", "context": "CREATE TABLE table_name_14 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT record FROM table_name_72 WHERE opponent = \"st. louis cardinals\"", "question": "What is the record for the opponent St. Louis Cardinals?", "context": "CREATE TABLE table_name_72 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_42 WHERE game = \"8\"", "question": "What is the record for Game 8?", "context": "CREATE TABLE table_name_42 (record VARCHAR, game VARCHAR)"}, {"answer": "SELECT mobile FROM table_name_31 WHERE opera = \"2.62%\"", "question": "What percentage of users were using mobile browsers during the period in which 2.62% were using Opera?", "context": "CREATE TABLE table_name_31 (mobile VARCHAR, opera VARCHAR)"}, {"answer": "SELECT mobile FROM table_name_28 WHERE chrome = \"9.00%\"", "question": "What percentage of users were using mobile browsers during the period in which 9.00% were using Chrome?", "context": "CREATE TABLE table_name_28 (mobile VARCHAR, chrome VARCHAR)"}, {"answer": "SELECT safari FROM table_name_96 WHERE firefox = \"30.82%\"", "question": "What percentage of users were using Safari during the period in which 30.82% were using Firefox?", "context": "CREATE TABLE table_name_96 (safari VARCHAR, firefox VARCHAR)"}, {"answer": "SELECT internet_explorer FROM table_name_66 WHERE mobile = \"2.1%\"", "question": "What percentage of users were using Internet Explorer during the period in which 2.1% were using mobile browsers?", "context": "CREATE TABLE table_name_66 (internet_explorer VARCHAR, mobile VARCHAR)"}, {"answer": "SELECT other_mozilla FROM table_name_58 WHERE chrome = \"9.00%\"", "question": "What percentage of users were using other Mozilla browsers during the period in which 9.00% were using Chrome?", "context": "CREATE TABLE table_name_58 (other_mozilla VARCHAR, chrome VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE result = \"w 14-10\"", "question": "What date has w 14-10 as the result?", "context": "CREATE TABLE table_name_94 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_29 WHERE week < 12 AND date = \"november 25, 1965\"", "question": "What opponent has a week less than 12, with November 25, 1965 as the date?", "context": "CREATE TABLE table_name_29 (opponent VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_70 WHERE date = \"september 19, 1965\" AND attendance < 46 OFFSET 941", "question": "What is the lowest week that has September 19, 1965 as the date, with an attendance less than 46,941?", "context": "CREATE TABLE table_name_70 (week INTEGER, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_66 WHERE attendance = 51 OFFSET 499", "question": "What is the lowest week that has 51,499 as the attendance?", "context": "CREATE TABLE table_name_66 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_18 WHERE format = \"active rock\"", "question": "What is the frequency for the active rock format?", "context": "CREATE TABLE table_name_18 (frequency VARCHAR, format VARCHAR)"}, {"answer": "SELECT branding FROM table_name_66 WHERE frequency = \"fm 88.9\"", "question": "What is the branding for fm 88.9?", "context": "CREATE TABLE table_name_66 (branding VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT owner FROM table_name_38 WHERE branding = \"rock 97.7\"", "question": "What is the name of the owner of rock 97.7?", "context": "CREATE TABLE table_name_38 (owner VARCHAR, branding VARCHAR)"}, {"answer": "SELECT branding FROM table_name_15 WHERE call_sign = \"cbxp-fm\"", "question": "What is the branding for cbxp-fm?", "context": "CREATE TABLE table_name_15 (branding VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_34 WHERE format = \"country\" AND frequency = \"fm 93.1\"", "question": "What is the call sign for country station fm 93.1?", "context": "CREATE TABLE table_name_34 (call_sign VARCHAR, format VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_65 WHERE format = \"country\" AND owner = \"jim pattison group\"", "question": "What is the frequency for the country station owned by Jim Pattison Group?", "context": "CREATE TABLE table_name_65 (frequency VARCHAR, format VARCHAR, owner VARCHAR)"}, {"answer": "SELECT game FROM table_name_60 WHERE location_attendance = \"los angeles memorial sports arena\"", "question": "What game was located at the Los Angeles Memorial Sports Arena?", "context": "CREATE TABLE table_name_60 (game VARCHAR, location_attendance VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_44 WHERE score = \"w 106-81\"", "question": "What is the location for the game with a score of w 106-81?", "context": "CREATE TABLE table_name_44 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_26 WHERE game = \"4\"", "question": "Where is the location of Game 4?", "context": "CREATE TABLE table_name_26 (location_attendance VARCHAR, game VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_89 WHERE rank = 2", "question": "What is the lane total when rank is 2?", "context": "CREATE TABLE table_name_89 (lane INTEGER, rank VARCHAR)"}, {"answer": "SELECT time FROM table_name_56 WHERE name = \"gemma spofforth\"", "question": "Gemma Spofforth has what time?", "context": "CREATE TABLE table_name_56 (time VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(floors) FROM table_name_9 WHERE pinnacle_height_ft__m_ = \"1,136 (346)\" AND pinn_rank > 4", "question": "Which Floors have a Pinnacle height ft (m) of 1,136 (346), and a Pinn Rank larger than 4?", "context": "CREATE TABLE table_name_9 (floors INTEGER, pinnacle_height_ft__m_ VARCHAR, pinn_rank VARCHAR)"}, {"answer": "SELECT SUM(std_rank) FROM table_name_97 WHERE name = \"311 south wacker drive\" AND year > 1990", "question": "How much Standard Rank has a Name of 311 south wacker drive, and a Year larger than 1990?", "context": "CREATE TABLE table_name_97 (std_rank INTEGER, name VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(floors) FROM table_name_92 WHERE pinnacle_height_ft__m_ = \"995 (303)\" AND std_rank > 6", "question": "Which Floors have a Pinnacle height ft (m) of 995 (303), and an Std Rank larger than 6?", "context": "CREATE TABLE table_name_92 (floors INTEGER, pinnacle_height_ft__m_ VARCHAR, std_rank VARCHAR)"}, {"answer": "SELECT AVG(time) FROM table_name_24 WHERE rank > 2 AND name = \"andy turner\"", "question": "What is the average time with a rank lower than 2 for Andy Turner?", "context": "CREATE TABLE table_name_24 (time INTEGER, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE year > 1981 AND location = \"morocco\"", "question": "What was the date for morocco when the year was lerger than 1981?", "context": "CREATE TABLE table_name_34 (date VARCHAR, year VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_80 WHERE city = \"casablanca\"", "question": "What is the lowest year when the city is casablanca?", "context": "CREATE TABLE table_name_80 (year INTEGER, city VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_31 WHERE city = \"san juan\"", "question": "What year was the expansion in the city of San Juan?", "context": "CREATE TABLE table_name_31 (year VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_50 WHERE location = \"netherlands\"", "question": "What city was located in the Netherlands?", "context": "CREATE TABLE table_name_50 (city VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_88 WHERE year = 1971 AND city = \"tokyo\"", "question": "What location had a year of 1971 and a city of Tokyo?", "context": "CREATE TABLE table_name_88 (location VARCHAR, year VARCHAR, city VARCHAR)"}, {"answer": "SELECT award FROM table_name_62 WHERE year < 2005", "question": "What award did they win before 2005?", "context": "CREATE TABLE table_name_62 (award VARCHAR, year INTEGER)"}, {"answer": "SELECT date FROM table_name_44 WHERE home_team = \"southend united\"", "question": "When was Southend United the home team?", "context": "CREATE TABLE table_name_44 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_4 WHERE date = \"13 december 1975\" AND away_team = \"halifax town\"", "question": "For the game on 13 December 1975 with Halifax Town as the away team what was the score?", "context": "CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_69 WHERE tie_no = \"6\"", "question": "Who was the away team when 6 was the tie no?", "context": "CREATE TABLE table_name_69 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE tie_no = \"13\"", "question": "The game with 13 as the tie no had what as the score?", "context": "CREATE TABLE table_name_69 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT conference_joined FROM table_name_40 WHERE year_joined = 1954 AND mascot = \"beavers\"", "question": "Which conference joined in 1954 with a beavers mascot?", "context": "CREATE TABLE table_name_40 (conference_joined VARCHAR, year_joined VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT romaji_title FROM table_name_79 WHERE tv_station = \"tbs\" AND japanese_title = \"around40\u301c\u6ce8\u6587\u306e\u591a\u3044\u30aa\u30f3\u30ca\u305f\u3061\u301c\"", "question": "What is the Romanji title for around40\u301c\u6ce8\u6587\u306e\u591a\u3044\u30aa\u30f3\u30ca\u305f\u3061\u301c on TBS?", "context": "CREATE TABLE table_name_79 (romaji_title VARCHAR, tv_station VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT tv_station FROM table_name_25 WHERE average_ratings = \"14.7%\"", "question": "What station has average ratings of 14.7%?", "context": "CREATE TABLE table_name_25 (tv_station VARCHAR, average_ratings VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_70 WHERE episodes > 10 AND tv_station = \"tbs\" AND average_ratings = \"14.8%\"", "question": "What is the Japanese title for the episode bigger than 10 on TBS with average ratings of 14.8%?", "context": "CREATE TABLE table_name_70 (japanese_title VARCHAR, average_ratings VARCHAR, episodes VARCHAR, tv_station VARCHAR)"}, {"answer": "SELECT AVG(episodes) FROM table_name_64 WHERE average_ratings = \"7.4%\"", "question": "What episode has average ratings of 7.4%?", "context": "CREATE TABLE table_name_64 (episodes INTEGER, average_ratings VARCHAR)"}, {"answer": "SELECT MIN(episodes) FROM table_name_98 WHERE tv_station = \"fuji tv\" AND romaji_title = \"absolute boyfriend\"", "question": "What is the episode on Fuji TV titled Absolute Boyfriend?", "context": "CREATE TABLE table_name_98 (episodes INTEGER, tv_station VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT COUNT(episodes) FROM table_name_39 WHERE tv_station = \"nhk\" AND average_ratings = \"9.2%\"", "question": "What is the episode on NHK with average ratings of 9.2%?", "context": "CREATE TABLE table_name_39 (episodes VARCHAR, tv_station VARCHAR, average_ratings VARCHAR)"}, {"answer": "SELECT school FROM table_name_86 WHERE year_joined > 1926 AND mascot = \"vikings\"", "question": "Which School has a Year Joined larger than 1926, and a Mascot of vikings?", "context": "CREATE TABLE table_name_86 (school VARCHAR, year_joined VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_76 WHERE school = \"logansport community\"", "question": "Which Mascot has a School of logansport community?", "context": "CREATE TABLE table_name_76 (mascot VARCHAR, school VARCHAR)"}, {"answer": "SELECT previous_conference FROM table_name_22 WHERE ihsaa_class___football_soccer = \"4a/5a/2a\" AND year_joined > 1926", "question": "Which Previous Conference has an IHSAA Class/ Football/ Soccer of 4a/5a/2a, and a Year Joined larger than 1926?", "context": "CREATE TABLE table_name_22 (previous_conference VARCHAR, ihsaa_class___football_soccer VARCHAR, year_joined VARCHAR)"}, {"answer": "SELECT _number___county FROM table_name_13 WHERE year_joined > 1926 AND previous_conference = \"olympic\"", "question": "Which #/ County has a Year Joined larger than 1926, and a Previous Conference of olympic?", "context": "CREATE TABLE table_name_13 (_number___county VARCHAR, year_joined VARCHAR, previous_conference VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE competition = \"1996 asian cup qualification\" AND date = \"june 29, 1996\"", "question": "What is the Score of the 1996 Asian Cup Qualification on June 29, 1996?", "context": "CREATE TABLE table_name_24 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_3 WHERE competition = \"king's cup 1998\"", "question": "What was the Venue of the King's Cup 1998?", "context": "CREATE TABLE table_name_3 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_11 WHERE score = \"4-1\"", "question": "What is the Venue of the Competition with a Score of 4-1?", "context": "CREATE TABLE table_name_11 (venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT enrollment FROM table_name_4 WHERE primary_conference = \"mid-hoosier\" AND county = \"16 decatur\" AND ihsaa_class = \"aa\"", "question": "Which Enrollment has a Primary Conference of mid-hoosier, and a County of 16 decatur, and an IHSAA Class of aa?", "context": "CREATE TABLE table_name_4 (enrollment VARCHAR, ihsaa_class VARCHAR, primary_conference VARCHAR, county VARCHAR)"}, {"answer": "SELECT location FROM table_name_79 WHERE school = \"indian creek\"", "question": "Where is Indian Creek school located?", "context": "CREATE TABLE table_name_79 (location VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_73 WHERE location = \"trafalgar\"", "question": "Which school is located in trafalgar?", "context": "CREATE TABLE table_name_73 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_24 WHERE location = \"charlottesville\"", "question": "Which IHSAA Class is located in charlottesville?", "context": "CREATE TABLE table_name_24 (ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT country FROM table_name_7 WHERE notes = \"sa/b\" AND rank = 2", "question": "Which country had notes of sa/b and a rank of 2?", "context": "CREATE TABLE table_name_7 (country VARCHAR, notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_28 WHERE country = \"great britain\"", "question": "What was the rank for Great Britain?", "context": "CREATE TABLE table_name_28 (rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_76 WHERE week = 12", "question": "What was the tv time for the game on week 12?", "context": "CREATE TABLE table_name_76 (tv_time VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_68 WHERE opponent = \"miami dolphins\"", "question": "What was the attendance for the game against miami dolphins?", "context": "CREATE TABLE table_name_68 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_54 WHERE attendance = \"67,715\"", "question": "What is the result of the game with 67,715 fans attending?", "context": "CREATE TABLE table_name_54 (result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_77 WHERE attendance = \"90,287\"", "question": "Who was the opponent for the game that had 90,287 in attendance?", "context": "CREATE TABLE table_name_77 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT team FROM table_name_53 WHERE period = \"1st\" AND time = \"12:37\"", "question": "What is the team with 1st period at 12:37?", "context": "CREATE TABLE table_name_53 (team VARCHAR, period VARCHAR, time VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_83 WHERE time = \"6:02.46\"", "question": "who is the athlete with the time 6:02.46?", "context": "CREATE TABLE table_name_83 (athlete VARCHAR, time VARCHAR)"}, {"answer": "SELECT country FROM table_name_3 WHERE rank = 6", "question": "what is the country for rank 6?", "context": "CREATE TABLE table_name_3 (country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT notes FROM table_name_59 WHERE rank < 2", "question": "what is the notes when the rank is less than 2?", "context": "CREATE TABLE table_name_59 (notes VARCHAR, rank INTEGER)"}, {"answer": "SELECT SUM(rank) FROM table_name_88 WHERE athlete = \"hauffe, seifert, kaeufer, adamski\"", "question": "what is the rank for athlete hauffe, seifert, kaeufer, adamski?", "context": "CREATE TABLE table_name_88 (rank INTEGER, athlete VARCHAR)"}, {"answer": "SELECT notes FROM table_name_77 WHERE time = \"6:05.21\"", "question": "what is the notes for the time 6:05.21?", "context": "CREATE TABLE table_name_77 (notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT discoverer_s_ FROM table_name_41 WHERE aphelion__au_ > 97 AND year_discovered = 2004", "question": "Who was the discoverer of the object with an Aphelion above 97 in 2004?", "context": "CREATE TABLE table_name_41 (discoverer_s_ VARCHAR, aphelion__au_ VARCHAR, year_discovered VARCHAR)"}, {"answer": "SELECT model_number FROM table_name_69 WHERE part_number_s_ = \"cl8064701510101\"", "question": "What model number has part number cl8064701510101?", "context": "CREATE TABLE table_name_69 (model_number VARCHAR, part_number_s_ VARCHAR)"}, {"answer": "SELECT i_o_bus FROM table_name_65 WHERE release_price___usd__ = \"$657\"", "question": "What is the I/O bus entry for the processor with a release price of $657?", "context": "CREATE TABLE table_name_65 (i_o_bus VARCHAR, release_price___usd__ VARCHAR)"}, {"answer": "SELECT l2_cache FROM table_name_96 WHERE gpu_model = \"iris pro graphics 5200\" AND frequency = \"2.6 ghz\"", "question": "What is the L2 cache for the processor with iris pro graphics 5200 and frequency of 2.6 ghz?", "context": "CREATE TABLE table_name_96 (l2_cache VARCHAR, gpu_model VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_14 WHERE release_price___usd__ = \"$383\" AND sspec_number = \"sr15f(c0)\"", "question": "What is the frequency of the processor released at $383, with a sSpec of sr15f(c0)?", "context": "CREATE TABLE table_name_14 (frequency VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT gpu_frequency FROM table_name_27 WHERE release_date = \"june 2013\" AND sspec_number = \"sr17l(c0)\"", "question": "What is the GPU frequency for the processor released in June 2013, with a sSpec number of sr17l(c0)?", "context": "CREATE TABLE table_name_27 (gpu_frequency VARCHAR, release_date VARCHAR, sspec_number VARCHAR)"}, {"answer": "SELECT l3_cache FROM table_name_3 WHERE release_price___usd__ = \"$440\"", "question": "What is the L3 cache of the processor with a release price of $440?", "context": "CREATE TABLE table_name_3 (l3_cache VARCHAR, release_price___usd__ VARCHAR)"}, {"answer": "SELECT os_x FROM table_name_88 WHERE name = \"home media center\"", "question": "What is the OS X for the Home Media Center?", "context": "CREATE TABLE table_name_88 (os_x VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_55 WHERE windows = \"partial\"", "question": "What is the name when Windows is partial?", "context": "CREATE TABLE table_name_55 (name VARCHAR, windows VARCHAR)"}, {"answer": "SELECT license FROM table_name_11 WHERE name = \"rygel\"", "question": "What is the license for Rygel?", "context": "CREATE TABLE table_name_11 (license VARCHAR, name VARCHAR)"}, {"answer": "SELECT license FROM table_name_91 WHERE name = \"jriver media center\"", "question": "What is the license for Jriver Media Center?", "context": "CREATE TABLE table_name_91 (license VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_42 WHERE last_aired = \"august 20, 2010\"", "question": "Of the series that last aired August 20, 2010, what is the lowest number of seasons?", "context": "CREATE TABLE table_name_42 (season INTEGER, last_aired VARCHAR)"}, {"answer": "SELECT SUM(episodes) FROM table_name_53 WHERE first_aired = \"april 8, 2011\"", "question": "Of the series that first aired April 8, 2011, what is the total number of episodes?", "context": "CREATE TABLE table_name_53 (episodes INTEGER, first_aired VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_83 WHERE position > 6 AND a_score < 7.6", "question": "What's the total when the position was more than 6 and had an A Score of less than 7.6?", "context": "CREATE TABLE table_name_83 (total INTEGER, position VARCHAR, a_score VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_98 WHERE a_score < 6.9", "question": "What's the total when A Score was less than 6.9?", "context": "CREATE TABLE table_name_98 (total INTEGER, a_score INTEGER)"}, {"answer": "SELECT SUM(water__sqmi_) FROM table_name_68 WHERE land___sqmi__ = 35.918 AND longitude < -97.115459", "question": "What's the total of Water (sqmi) with a Land (sqmi) of 35.918 and has a Longitude that is smaller than -97.115459?", "context": "CREATE TABLE table_name_68 (water__sqmi_ INTEGER, land___sqmi__ VARCHAR, longitude VARCHAR)"}, {"answer": "SELECT COUNT(longitude) FROM table_name_1 WHERE ansi_code = 1036573 AND water__sqmi_ < 0.404", "question": "What;s the total of Longitude with an ANSI code of 1036573 and has Water (sqmi) that is smaller than 0.404?", "context": "CREATE TABLE table_name_1 (longitude VARCHAR, ansi_code VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT MIN(longitude) FROM table_name_31 WHERE latitude = 46.843963 AND water__sqmi_ < 0.052000000000000005", "question": "What's the lowest listed longitude that has a Latitude of 46.843963 and Water (sqmi) that is smaller than 0.052000000000000005?", "context": "CREATE TABLE table_name_31 (longitude INTEGER, latitude VARCHAR, water__sqmi_ VARCHAR)"}, {"answer": "SELECT SUM(heat) FROM table_name_46 WHERE rank > 7", "question": "What is the total heat ranked higher than 7?", "context": "CREATE TABLE table_name_46 (heat INTEGER, rank INTEGER)"}, {"answer": "SELECT cyclist FROM table_name_90 WHERE nation = \"australia\"", "question": "Which cyclist is from Australia?", "context": "CREATE TABLE table_name_90 (cyclist VARCHAR, nation VARCHAR)"}, {"answer": "SELECT nation FROM table_name_13 WHERE heat = 4 AND rank = 8", "question": "Which nation has a heat of 4, and is ranked 8?", "context": "CREATE TABLE table_name_13 (nation VARCHAR, heat VARCHAR, rank VARCHAR)"}, {"answer": "SELECT position FROM table_name_35 WHERE player = \"john curtice\"", "question": "What is John Curtice's position?", "context": "CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_24 WHERE school = \"seton hall university\"", "question": "What player is from Seton Hall University?", "context": "CREATE TABLE table_name_24 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_51 WHERE position = \"ss, p\" AND team = \"minnesota twins\"", "question": "What is the lowest pick of a player for the SS, P Position for the Minnesota Twins?", "context": "CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(v_band) FROM table_name_53 WHERE ka_band < 33 AND q_band = 1", "question": "What is the average v-band for Ka-band values under 33 and Q-bands of 1?", "context": "CREATE TABLE table_name_53 (v_band INTEGER, ka_band VARCHAR, q_band VARCHAR)"}, {"answer": "SELECT award FROM table_name_90 WHERE year < 2004 AND episode = \"\u2014\"", "question": "What award has a year earlier than 2004 and the episode shows \u2014?", "context": "CREATE TABLE table_name_90 (award VARCHAR, year VARCHAR, episode VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_14 WHERE nominee = \"\u2014\" AND result = \"nominated\"", "question": "What year has a Nominee of \u2014, and a Result of nominated?", "context": "CREATE TABLE table_name_14 (year INTEGER, nominee VARCHAR, result VARCHAR)"}, {"answer": "SELECT country FROM table_name_60 WHERE play = \"electra\"", "question": "What is the Country of the Play Electra?", "context": "CREATE TABLE table_name_60 (country VARCHAR, play VARCHAR)"}, {"answer": "SELECT play FROM table_name_59 WHERE base = \"athens\" AND company = \"dance theatre roes\"", "question": "What is the Athens Base play with Dance Theatre Roes Company?", "context": "CREATE TABLE table_name_59 (play VARCHAR, base VARCHAR, company VARCHAR)"}, {"answer": "SELECT author FROM table_name_24 WHERE play = \"electra\"", "question": "Who is the author of the Play Electra?", "context": "CREATE TABLE table_name_24 (author VARCHAR, play VARCHAR)"}, {"answer": "SELECT country FROM table_name_25 WHERE author = \"aristophanes\"", "question": "Waht is the Country of the play by Author Aristophanes?", "context": "CREATE TABLE table_name_25 (country VARCHAR, author VARCHAR)"}, {"answer": "SELECT country FROM table_name_52 WHERE base = \"mecklenburg\" AND play = \"the libation bearers\"", "question": "What Country has the Play The Libation Bearers a Base of Mecklenburg?", "context": "CREATE TABLE table_name_52 (country VARCHAR, base VARCHAR, play VARCHAR)"}, {"answer": "SELECT series FROM table_name_78 WHERE title = \"boyhood daze\"", "question": "Which series had a title of Boyhood Daze?", "context": "CREATE TABLE table_name_78 (series VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_8 WHERE title = \"rabbit romeo\"", "question": "What was the release date of Rabbit Romeo?", "context": "CREATE TABLE table_name_8 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_42 WHERE title = \"three little bops\"", "question": "What was the release date of Three Little Bops?", "context": "CREATE TABLE table_name_42 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT MIN(money_list_rank) FROM table_name_2 WHERE lpga_wins < 2 AND year = 2005 AND earnings__$_ < 615 OFFSET 499", "question": "In 2005 the earnings is less than 615,499 with less than 2 LPGA wins and what smallest Money list rank?", "context": "CREATE TABLE table_name_2 (money_list_rank INTEGER, earnings__$_ VARCHAR, lpga_wins VARCHAR, year VARCHAR)"}, {"answer": "SELECT team_name FROM table_name_42 WHERE school = \"hammond bishop noll\"", "question": "What is the team name from Hammond Bishop Noll?", "context": "CREATE TABLE table_name_42 (team_name VARCHAR, school VARCHAR)"}, {"answer": "SELECT city FROM table_name_83 WHERE previous_counference = \"lake\" AND ihsaa_class = \"3a\"", "question": "What city has a team in IHSAA class 3a, and previous conference of lake?", "context": "CREATE TABLE table_name_83 (city VARCHAR, previous_counference VARCHAR, ihsaa_class VARCHAR)"}, {"answer": "SELECT AVG(enrollment_08_09) FROM table_name_28 WHERE previous_counference = \"lake\" AND ihsaa_class = \"3a\"", "question": "What is the average enrollment 08=09, for the team that had a previous conference of lake and IHSAA class of 3A?", "context": "CREATE TABLE table_name_28 (enrollment_08_09 INTEGER, previous_counference VARCHAR, ihsaa_class VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE tournament = \"kroger classic\"", "question": "What is the Date of the Kroger Classic Tournament?", "context": "CREATE TABLE table_name_64 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE tournament = \"ameritech senior open\"", "question": "What is the Date of the Ameritech Senior Open?", "context": "CREATE TABLE table_name_61 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_89 WHERE winning_score = \u221216(66 - 64 - 67 = 197)", "question": "What Tournament has a Winning score of \u221216 (66-64-67=197)?", "context": "CREATE TABLE table_name_89 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT wu_xing___\u4e94\u884c__ FROM table_name_80 WHERE korean___rr__ = \"\uc784 (im)\"", "question": "What is Wu Xing (\u4e94\u884c) with Korean (RR) of \uc784 (im)?", "context": "CREATE TABLE table_name_80 (wu_xing___\u4e94\u884c__ VARCHAR, korean___rr__ VARCHAR)"}, {"answer": "SELECT manchu___m\u00f6llendorff__ FROM table_name_48 WHERE wu_xing_correlations = \"\u5357 south\" AND wuu_wuupin = \"ting44\"", "question": "What's Manchu (M\u00f6llendorff) with the Wi Xing Correltation of  \u5357 South, along with Wuu Wuupin of ting44?", "context": "CREATE TABLE table_name_48 (manchu___m\u00f6llendorff__ VARCHAR, wu_xing_correlations VARCHAR, wuu_wuupin VARCHAR)"}, {"answer": "SELECT japanese_title FROM table_name_19 WHERE tv_station = \"ntv\"", "question": "Which Japanese Title has a TV Station of ntv?", "context": "CREATE TABLE table_name_19 (japanese_title VARCHAR, tv_station VARCHAR)"}, {"answer": "SELECT tv_station FROM table_name_43 WHERE romaji_title = \"kegareta shita\"", "question": "Which TV Station has a Romaji Title of kegareta shita?", "context": "CREATE TABLE table_name_43 (tv_station VARCHAR, romaji_title VARCHAR)"}, {"answer": "SELECT theme_song_s_ FROM table_name_54 WHERE japanese_title = \"\u604b\u306b\u304a\u3061\u305f\u3089\uff5e\u50d5\u306e\u6210\u529f\u306e\u79d8\u5bc6\uff5e\"", "question": "Which Theme Song(s) has a Japanese Title of \u604b\u306b\u304a\u3061\u305f\u3089\uff5e\u50d5\u306e\u6210\u529f\u306e\u79d8\u5bc6\uff5e?", "context": "CREATE TABLE table_name_54 (theme_song_s_ VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT MIN(number_of_electorates__2009_) FROM table_name_2 WHERE name = \"churai\"", "question": "Churai has what as the fewest number of electorates?", "context": "CREATE TABLE table_name_2 (number_of_electorates__2009_ INTEGER, name VARCHAR)"}, {"answer": "SELECT title FROM table_name_86 WHERE release_date = \"1938-12-17\" AND production_num = \"8610\"", "question": "what is the title when the release date is 1938-12-17 and the production number is 8610?", "context": "CREATE TABLE table_name_86 (title VARCHAR, release_date VARCHAR, production_num VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_54 WHERE date = \"july 8, 2007\"", "question": "The match played July 8, 2007 had what outcome?", "context": "CREATE TABLE table_name_54 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_54 WHERE opponent_in_the_final = \"evie dominikovic\"", "question": "The final match played against Evie Dominikovic was played on what surface?", "context": "CREATE TABLE table_name_54 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_42 WHERE opponent_in_the_final = \"olga blahotov\u00e1\"", "question": "Olga Blahotov\u00e1 was the opponent in the final at what tournament?", "context": "CREATE TABLE table_name_42 (tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE opponent_in_the_final = \"ashley harkleroad\"", "question": "In the final against Ashley Harkleroad what was the score?", "context": "CREATE TABLE table_name_21 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT time FROM table_name_83 WHERE opponent = \"takaichi hirayama\"", "question": "At what time did the opponent Takaichi Hirayama have an event?", "context": "CREATE TABLE table_name_83 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_42 WHERE opponent = \"gabriel veiga\"", "question": "In which round was Gabriel Veiga the opponent?", "context": "CREATE TABLE table_name_42 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_86 WHERE round = \"3\" AND res = \"loss\" AND event = \"juiz de fora - fight 1\"", "question": "Which method had a 3 rounds, result in a loss and the Juiz de Fora - fight 1 event?", "context": "CREATE TABLE table_name_86 (method VARCHAR, event VARCHAR, round VARCHAR, res VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_55 WHERE record = \"4-2\"", "question": "Which opponent has a record of 4-2?", "context": "CREATE TABLE table_name_55 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT country FROM table_name_91 WHERE athlete = \"zhang xiuyun\"", "question": "what is the country for zhang xiuyun?", "context": "CREATE TABLE table_name_91 (country VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT country FROM table_name_56 WHERE athlete = \"fabiana beltrame\"", "question": "what is the country for fabiana beltrame?", "context": "CREATE TABLE table_name_56 (country VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT notes FROM table_name_44 WHERE time = \"7:58.71\"", "question": "what is the notes when the time is 7:58.71?", "context": "CREATE TABLE table_name_44 (notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_73 WHERE time = \"7:52.65\"", "question": "what is the highest rank when the time is 7:52.65?", "context": "CREATE TABLE table_name_73 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT country FROM table_name_55 WHERE notes = \"sa/b\" AND rank > 1 AND athlete = \"zhang xiuyun\"", "question": "what is the country when the nots is sa/b, the rank is more than 1 and the athlete is zhang xiuyun?", "context": "CREATE TABLE table_name_55 (country VARCHAR, athlete VARCHAR, notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_30 WHERE rank < 17 AND total = \"119\"", "question": "Who had a rank under 17 with a total of 119?", "context": "CREATE TABLE table_name_30 (athlete VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT round FROM table_name_2 WHERE result = \"2-1\" AND venue = \"a\"", "question": "What round has 2-1 as the result, and A as the venue?", "context": "CREATE TABLE table_name_2 (round VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(time) FROM table_name_64 WHERE nationality = \"south africa\" AND lane > 3", "question": "What is the most time for the swimmer from South Africa who was in a lane greater than 3?", "context": "CREATE TABLE table_name_64 (time INTEGER, nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT school FROM table_name_44 WHERE enrollment = 887", "question": "Which school has enrollment of 887?", "context": "CREATE TABLE table_name_44 (school VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_64 WHERE pick__number < 236 AND position = \"offensive guard\"", "question": "what is the round when the pick # is less than 236 and the position is offensive guard?", "context": "CREATE TABLE table_name_64 (round INTEGER, pick__number VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_9 WHERE round = 3", "question": "what is the position in round 3?", "context": "CREATE TABLE table_name_9 (position VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_99 WHERE pick = 8", "question": "What is the Position of the Pick 8 Player?", "context": "CREATE TABLE table_name_99 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT high_assists FROM table_name_85 WHERE score = \"w 71-56\"", "question": "Which High assists has a Score of w 71-56?", "context": "CREATE TABLE table_name_85 (high_assists VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_40 WHERE high_assists = \"whalen (5)\"", "question": "Which Score has a High assists of whalen (5)?", "context": "CREATE TABLE table_name_40 (score VARCHAR, high_assists VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_94 WHERE game < 9 AND opponent = \"detroit\"", "question": "Which High rebounds has a Game smaller than 9, and a Opponent of detroit?", "context": "CREATE TABLE table_name_94 (high_rebounds VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT high_rebounds FROM table_name_62 WHERE score = \"w 81-69\"", "question": "Which High rebounds has a Score of w 81-69?", "context": "CREATE TABLE table_name_62 (high_rebounds VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_10 WHERE result = \"fernando verdasco\"", "question": "Which Surface has a Result of fernando verdasco?", "context": "CREATE TABLE table_name_10 (surface VARCHAR, result VARCHAR)"}, {"answer": "SELECT NOT COUNT AS event FROM table_name_42 WHERE winner = \"clay\"", "question": "How many events did clay win?", "context": "CREATE TABLE table_name_42 (COUNT VARCHAR, winner VARCHAR)"}, {"answer": "SELECT surface FROM table_name_59 WHERE opponent = \"rafael nadal\" AND NOT event = 2", "question": "Which Surface has an Opponent of rafael nadal, and an Event of 2?", "context": "CREATE TABLE table_name_59 (surface VARCHAR, opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE result = \"iv\u00e1n navarro\"", "question": "Who is iv\u00e1n navarro's opponent?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT NOT MAX AS event FROM table_name_23 WHERE surface = \"semifinal\" AND winner = \"hard (i)\"", "question": "Which Event has a Surface of semifinal, and a Winner of hard (i)?", "context": "CREATE TABLE table_name_23 (MAX VARCHAR, surface VARCHAR, winner VARCHAR)"}, {"answer": "SELECT leader_at_the_summit FROM table_name_82 WHERE year < 1956 AND finish = \"carcassonne\"", "question": "Who was the leader at the summit earlier than 1956, when Carcassonne shows for finish?", "context": "CREATE TABLE table_name_82 (leader_at_the_summit VARCHAR, year VARCHAR, finish VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_90 WHERE finish = \"toulouse\" AND stage > 12", "question": "What year was finish Toulouse, and stage was larger than 12?", "context": "CREATE TABLE table_name_90 (year INTEGER, finish VARCHAR, stage VARCHAR)"}, {"answer": "SELECT MAX(stage) FROM table_name_36 WHERE year > 1948 AND leader_at_the_summit = \"group\" AND finish = \"bagn\u00e8res-de-bigorre\"", "question": "What is the highest stage number for a year later than 1948, leader at the summit was group, and finish was Bagn\u00e8res-De-Bigorre?", "context": "CREATE TABLE table_name_36 (stage INTEGER, finish VARCHAR, year VARCHAR, leader_at_the_summit VARCHAR)"}, {"answer": "SELECT vacator FROM table_name_6 WHERE reason_for_change = \"resigned november 10, 1965\"", "question": "which Vacator has a Reason for change of resigned november 10, 1965?", "context": "CREATE TABLE table_name_6 (vacator VARCHAR, reason_for_change VARCHAR)"}, {"answer": "SELECT reason_for_change FROM table_name_54 WHERE state__class_ = \"tennessee (2)\"", "question": "Which Reason has a State (class) of tennessee (2)?", "context": "CREATE TABLE table_name_54 (reason_for_change VARCHAR, state__class_ VARCHAR)"}, {"answer": "SELECT state__class_ FROM table_name_54 WHERE successor = \"harry f. byrd, jr. (d)\"", "question": "Which State (class) has a Successor of harry f. byrd, jr. (d)? Question", "context": "CREATE TABLE table_name_54 (state__class_ VARCHAR, successor VARCHAR)"}, {"answer": "SELECT country FROM table_name_33 WHERE col__m_ = 1374", "question": "Which country has a Col (m) of 1374?", "context": "CREATE TABLE table_name_33 (country VARCHAR, col__m_ VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_94 WHERE years_at_club = \"1971\u20131974\" AND debut_year > 1971", "question": "How many Games have Years at club of 1971\u20131974, and a Debut year larger than 1971?", "context": "CREATE TABLE table_name_94 (games INTEGER, years_at_club VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_89 WHERE years_at_club = \"1974\u20131975\" AND goals = 4", "question": "Which Games have Years at club of 1974\u20131975, and Goals of 4?", "context": "CREATE TABLE table_name_89 (games INTEGER, years_at_club VARCHAR, goals VARCHAR)"}, {"answer": "SELECT years_at_club FROM table_name_10 WHERE games < 7 AND goals > 2 AND player = \"john frazer\"", "question": "Which Years at club have Games smaller than 7, and Goals larger than 2, and a Player of john frazer?", "context": "CREATE TABLE table_name_10 (years_at_club VARCHAR, player VARCHAR, games VARCHAR, goals VARCHAR)"}, {"answer": "SELECT AVG(games) FROM table_name_5 WHERE years_at_club = \"1977\" AND goals = 17 AND debut_year < 1977", "question": "Which Games have Years at club of 1977, and Goals of 17, and a Debut year smaller than 1977?", "context": "CREATE TABLE table_name_5 (games INTEGER, debut_year VARCHAR, years_at_club VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_57 WHERE games < 41 AND player = \"mark amos\"", "question": "Which Goals have Games smaller than 41, and a Player of mark amos?", "context": "CREATE TABLE table_name_57 (goals INTEGER, games VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_78 WHERE name = \"melaine walker\"", "question": "What is Melaine Walker's Rank?", "context": "CREATE TABLE table_name_78 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_84 WHERE heat = 4 AND rank < 23 AND result = \"55.91\"", "question": "What is the Name of the Player with a Rank of 23 or less, Heat of 4 and Result of 55.91?", "context": "CREATE TABLE table_name_84 (name VARCHAR, result VARCHAR, heat VARCHAR, rank VARCHAR)"}, {"answer": "SELECT heat FROM table_name_54 WHERE rank < 18 AND result = \"55.15\"", "question": "What is the Heat of the Player with a Rank of 18 or less and Result of 55.15?", "context": "CREATE TABLE table_name_54 (heat VARCHAR, rank VARCHAR, result VARCHAR)"}, {"answer": "SELECT quantity_preserved FROM table_name_11 WHERE fleet_number_s_ = \"3000\u20133015\"", "question": "What is the quantity preserved for fleet number(s) 3000\u20133015?", "context": "CREATE TABLE table_name_11 (quantity_preserved VARCHAR, fleet_number_s_ VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_34 WHERE wheel_arrangement = \"4-6-6-4\" AND class = \"z-7\"", "question": "What manufacturer has a wheel arrangement of 4-6-6-4, and a Class of z-7?", "context": "CREATE TABLE table_name_34 (manufacturer VARCHAR, wheel_arrangement VARCHAR, class VARCHAR)"}, {"answer": "SELECT year_made FROM table_name_98 WHERE fleet_number_s_ = \"5000\"", "question": "What is the Year for fleet number 5000?", "context": "CREATE TABLE table_name_98 (year_made VARCHAR, fleet_number_s_ VARCHAR)"}, {"answer": "SELECT year_made FROM table_name_63 WHERE quantity_made = \"4\"", "question": "What year made has a Quantity made of 4?", "context": "CREATE TABLE table_name_63 (year_made VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT quantity_preserved FROM table_name_19 WHERE serial_numbers = \"mallet and simple articulated locomotives\"", "question": "What is the quantity preserved for the serial number of mallet and simple articulated locomotives?", "context": "CREATE TABLE table_name_19 (quantity_preserved VARCHAR, serial_numbers VARCHAR)"}, {"answer": "SELECT silver FROM table_name_20 WHERE gold > 1 AND total < 97 AND nation = \"estonia\"", "question": "How many silver medals did Estonia, which won more than 1 gold and less than 97 medals total, win?", "context": "CREATE TABLE table_name_20 (silver VARCHAR, nation VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_65 WHERE nation = \"denmark\"", "question": "How many gold medals did Denmark win?", "context": "CREATE TABLE table_name_65 (gold INTEGER, nation VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_59 WHERE bronze > 27 AND total < 305", "question": "What is the total number of gold medals won among nations that won more than 27 bronze and less than 305 medals total?", "context": "CREATE TABLE table_name_59 (gold VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_88 WHERE silver > 4 AND bronze > 14 AND total = 97", "question": "How many gold medals were won by the nation that won over 4 silver medals, over 14 bronze, and 97 medals total?", "context": "CREATE TABLE table_name_88 (gold VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(championship) FROM table_name_85 WHERE league_cup = 1 AND total = \"17\"", "question": "What is the highest championship that has 1 as the league cup, and 17 as the total?", "context": "CREATE TABLE table_name_85 (championship INTEGER, league_cup VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(league_cup) FROM table_name_70 WHERE fa_cup < 0", "question": "How many league cups have an FA Cup less than 0?", "context": "CREATE TABLE table_name_70 (league_cup VARCHAR, fa_cup INTEGER)"}, {"answer": "SELECT AVG(rank) FROM table_name_48 WHERE silver > 1 AND gold < 11 AND bronze = 2 AND nation = \"west germany (frg)\"", "question": "What is the average rank of west germany (frg), which has more than 1 silver, less than 11 gold, and 2 bronze medals?", "context": "CREATE TABLE table_name_48 (rank INTEGER, nation VARCHAR, bronze VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE nation = \"russia\" AND place = \"beijing, china\" AND athlete = \"yelena isinbayeva\"", "question": "What's the date when Yelena Isinbayeva for Russia was in Beijing, China?", "context": "CREATE TABLE table_name_82 (date VARCHAR, athlete VARCHAR, nation VARCHAR, place VARCHAR)"}, {"answer": "SELECT performance FROM table_name_89 WHERE athlete = \"dire tune\"", "question": "What's the performance of Dire Tune?", "context": "CREATE TABLE table_name_89 (performance VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT place FROM table_name_33 WHERE performance = \"14:11.15\"", "question": "What place had 14:11.15 as the performance?", "context": "CREATE TABLE table_name_33 (place VARCHAR, performance VARCHAR)"}, {"answer": "SELECT event FROM table_name_51 WHERE nation = \"ethiopia\" AND performance = \"14:11.15\"", "question": "What's the event that had a performance of 14:11.15 by Ethiopia?", "context": "CREATE TABLE table_name_51 (event VARCHAR, nation VARCHAR, performance VARCHAR)"}, {"answer": "SELECT position FROM table_name_96 WHERE pick > 94 AND team = \"boston patriots\"", "question": "What was the position of the player picked after 94, by the Boston Patriots?", "context": "CREATE TABLE table_name_96 (position VARCHAR, pick VARCHAR, team VARCHAR)"}, {"answer": "SELECT college FROM table_name_50 WHERE pick = 93", "question": "What college had the 93 pick?", "context": "CREATE TABLE table_name_50 (college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE competition = \"euro 2004 q.\"", "question": "What venue has euro 2004 q. as the competition?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT county FROM table_name_72 WHERE school = \"whiteland community\"", "question": "What county is Whiteland Community School in?", "context": "CREATE TABLE table_name_72 (county VARCHAR, school VARCHAR)"}, {"answer": "SELECT county FROM table_name_25 WHERE ihsaa_football_class = \"aaaaa\" AND mascot = \"grizzly cubs\"", "question": "What county has a football team in IHSAA class AAAAA and a school macot of the Grizzly Cubs?", "context": "CREATE TABLE table_name_25 (county VARCHAR, ihsaa_football_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT county FROM table_name_71 WHERE mascot = \"pioneers\"", "question": "What county has a school mascot of the Pioneers?", "context": "CREATE TABLE table_name_71 (county VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_34 WHERE location = \"indianapolis\"", "question": "What are the IHSAA classes of the Indianapolis schools?", "context": "CREATE TABLE table_name_34 (ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT song FROM table_name_52 WHERE points < 53 AND place > 8 AND draw > 1", "question": "Which Song has Points smaller than 53, and a Place larger than 8, and a Draw larger than 1?", "context": "CREATE TABLE table_name_52 (song VARCHAR, draw VARCHAR, points VARCHAR, place VARCHAR)"}, {"answer": "SELECT green_communist FROM table_name_64 WHERE left_bloc = \"3.6%\"", "question": "What is the result for the Green-Communist party when the Left Bloc has 3.6%?", "context": "CREATE TABLE table_name_64 (green_communist VARCHAR, left_bloc VARCHAR)"}, {"answer": "SELECT green_communist FROM table_name_87 WHERE left_bloc = \"3.0%\"", "question": "What is the result for the Green-Communist party when the Left Bloc has 3.0%?", "context": "CREATE TABLE table_name_87 (green_communist VARCHAR, left_bloc VARCHAR)"}, {"answer": "SELECT date_released FROM table_name_35 WHERE left_bloc = \"3.2%\"", "question": "What is the date released when the Left Bloc had 3.2%?", "context": "CREATE TABLE table_name_35 (date_released VARCHAR, left_bloc VARCHAR)"}, {"answer": "SELECT cardinalatial_order_and_title FROM table_name_26 WHERE elevated = \"circa 1116\"", "question": "What is the cardinalatial order of the elector elevated circa 1116?", "context": "CREATE TABLE table_name_26 (cardinalatial_order_and_title VARCHAR, elevated VARCHAR)"}, {"answer": "SELECT elevated FROM table_name_13 WHERE nationality = \"pisa\"", "question": "When was the elector from pisa elevated?", "context": "CREATE TABLE table_name_13 (elevated VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT cardinalatial_order_and_title FROM table_name_92 WHERE elector = \"bosone\"", "question": "What is the cardinalatial order and title of bosone?", "context": "CREATE TABLE table_name_92 (cardinalatial_order_and_title VARCHAR, elector VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_83 WHERE nationality = \"crema\"", "question": "Who is the elevator from crema?", "context": "CREATE TABLE table_name_83 (elevator VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT name FROM table_name_16 WHERE heat > 4 AND lane = 4 AND nationality = \"australia\"", "question": "What is the name of the swimmer from Australia in lane 4 with a heat larger than 4?", "context": "CREATE TABLE table_name_16 (name VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(heat) FROM table_name_5 WHERE time = \"2:34.94\"", "question": "What is the lowest heat number for a swimmer with a time of 2:34.94?", "context": "CREATE TABLE table_name_5 (heat INTEGER, time VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_29 WHERE nationality = \"ukraine\" AND react < 0.26", "question": "What is the rank of the player from Ukraine with react less than 0.26?", "context": "CREATE TABLE table_name_29 (rank VARCHAR, nationality VARCHAR, react VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_81 WHERE result = \"w 21-17\" AND attendance > 45 OFFSET 254", "question": "What was the highest week with a w 21-17 result, and more than 45,254 in attendance?", "context": "CREATE TABLE table_name_81 (week INTEGER, result VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT proto_germanic FROM table_name_3 WHERE old_english = \"/d/\"", "question": "What's the Proto-Germanic when the Old English is /d/?", "context": "CREATE TABLE table_name_3 (proto_germanic VARCHAR, old_english VARCHAR)"}, {"answer": "SELECT proto_germanic FROM table_name_41 WHERE german = \"/s/ or /ts/\"", "question": "What's the Proto Germanic when then German is /s/ or /ts/?", "context": "CREATE TABLE table_name_41 (proto_germanic VARCHAR, german VARCHAR)"}, {"answer": "SELECT dutch FROM table_name_66 WHERE old_english = \"/d/\"", "question": "What's the Dutch when then Old English is /d/?", "context": "CREATE TABLE table_name_66 (dutch VARCHAR, old_english VARCHAR)"}, {"answer": "SELECT west_germanic FROM table_name_90 WHERE german = \"/s/ or /ts/\"", "question": "What's the West Germanic when the German is /s/ or /ts/?", "context": "CREATE TABLE table_name_90 (west_germanic VARCHAR, german VARCHAR)"}, {"answer": "SELECT proto_germanic FROM table_name_48 WHERE german = \"/t/\"", "question": "What's the Proto-Germanic when the German is /t/?", "context": "CREATE TABLE table_name_48 (proto_germanic VARCHAR, german VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_49 WHERE country = \"japan\"", "question": "What is the to par for japan", "context": "CREATE TABLE table_name_49 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_4 WHERE money___$__ = \"187,500\" AND score = 66 - 75 - 71 - 69 = 281", "question": "what player has $187,500 and score 66-75-71-69=281", "context": "CREATE TABLE table_name_4 (player VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_74 WHERE score = 66 - 74 - 68 - 73 = 281", "question": "what place has score 66-74-68-73=281", "context": "CREATE TABLE table_name_74 (place VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_37 WHERE place = \"t10\"", "question": "what player has place t10", "context": "CREATE TABLE table_name_37 (player VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_83 WHERE money___$__ = \"242,813\" AND score = 68 - 72 - 74 - 66 = 280", "question": "what is the to par for $242,813 with score 68-72-74-66=280", "context": "CREATE TABLE table_name_83 (to_par VARCHAR, money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT school FROM table_name_59 WHERE size > 408 AND mascot = \"pacers\"", "question": "Which School has a Size larger than 408, and a Mascot of pacers?", "context": "CREATE TABLE table_name_59 (school VARCHAR, size VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT SUM(size) FROM table_name_76 WHERE ihsaa_class = \"aa\" AND location = \"milan\"", "question": "Which Size has an IHSAA Class of aa, and a Location of milan?", "context": "CREATE TABLE table_name_76 (size INTEGER, ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT county FROM table_name_36 WHERE mascot = \"pacers\"", "question": "Which County has a Mascot of pacers?", "context": "CREATE TABLE table_name_36 (county VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_30 WHERE county = \"69 ripley\" AND ihsaa_class = \"aa\" AND school = \"south ripley\"", "question": "Which Mascot has a County of 69 ripley, and an IHSAA Class of aa, and a School of south ripley?", "context": "CREATE TABLE table_name_30 (mascot VARCHAR, school VARCHAR, county VARCHAR, ihsaa_class VARCHAR)"}, {"answer": "SELECT name FROM table_name_32 WHERE heat = 7 AND lane = 5", "question": "Who was in Lane 5 and had a heat of 7?", "context": "CREATE TABLE table_name_32 (name VARCHAR, heat VARCHAR, lane VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_22 WHERE heat = 4 AND nationality = \"hungary\"", "question": "What lane number was Hungary and had a heat of 4?", "context": "CREATE TABLE table_name_22 (lane VARCHAR, heat VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE score = \"690.3\"", "question": "What's the date when the score was 690.3?", "context": "CREATE TABLE table_name_77 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_94 WHERE comp = \"ech\" AND date = \"1989\"", "question": "What's the place of 1989 with a comp of ECH?", "context": "CREATE TABLE table_name_94 (place VARCHAR, comp VARCHAR, date VARCHAR)"}, {"answer": "SELECT shooter FROM table_name_59 WHERE score = \"686.4\"", "question": "Who was the shooter with a score of 686.4?", "context": "CREATE TABLE table_name_59 (shooter VARCHAR, score VARCHAR)"}, {"answer": "SELECT year FROM table_name_81 WHERE game = \"borderlands 2\"", "question": "what is the year for borderlands 2?", "context": "CREATE TABLE table_name_81 (year VARCHAR, game VARCHAR)"}, {"answer": "SELECT year FROM table_name_53 WHERE game = \"dead space 2\"", "question": "what is the year for the game dead space 2?", "context": "CREATE TABLE table_name_53 (year VARCHAR, game VARCHAR)"}, {"answer": "SELECT developer_s_ FROM table_name_8 WHERE game = \"demon's souls\"", "question": "who is the developers for demon's souls?", "context": "CREATE TABLE table_name_8 (developer_s_ VARCHAR, game VARCHAR)"}, {"answer": "SELECT year FROM table_name_88 WHERE standalone = \"zaxxon\"", "question": "In what year is Zaxxon the Standalone?", "context": "CREATE TABLE table_name_88 (year VARCHAR, standalone VARCHAR)"}, {"answer": "SELECT standalone FROM table_name_43 WHERE console = \"space invaders\"", "question": "What is the Standalone in the year when Space Invaders is the Console?", "context": "CREATE TABLE table_name_43 (standalone VARCHAR, console VARCHAR)"}, {"answer": "SELECT standalone FROM table_name_99 WHERE arcade = \"tron\"", "question": "What is the Standalone when Tron is the Arcade?", "context": "CREATE TABLE table_name_99 (standalone VARCHAR, arcade VARCHAR)"}, {"answer": "SELECT console FROM table_name_59 WHERE arcade = \"space invaders\"", "question": "What is the Console when Space Invaders is the Arcade?", "context": "CREATE TABLE table_name_59 (console VARCHAR, arcade VARCHAR)"}, {"answer": "SELECT position FROM table_name_6 WHERE team = \"arizona diamondbacks\"", "question": "What position does the player from the Arizona Diamondbacks play?", "context": "CREATE TABLE table_name_6 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT school FROM table_name_30 WHERE position = \"p\" AND team = \"kansas city royals\" AND player = \"jay gehrke\"", "question": "What school did P Jay Gehrke of the Kansas City Royals attend?", "context": "CREATE TABLE table_name_30 (school VARCHAR, player VARCHAR, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT country FROM table_name_31 WHERE athletes = \"adam van koeverden\"", "question": "What country does Adam van Koeverden play for?", "context": "CREATE TABLE table_name_31 (country VARCHAR, athletes VARCHAR)"}, {"answer": "SELECT pick FROM table_name_63 WHERE school = \"jasper hs (jasper, texas)\"", "question": "what is the pick when the school is jasper hs (jasper, texas)?", "context": "CREATE TABLE table_name_63 (pick VARCHAR, school VARCHAR)"}, {"answer": "SELECT player FROM table_name_99 WHERE position = \"p\" AND team = \"oakland athletics\"", "question": "who is the player when the position is p and the team is oakland athletics?", "context": "CREATE TABLE table_name_99 (player VARCHAR, position VARCHAR, team VARCHAR)"}, {"answer": "SELECT school FROM table_name_1 WHERE team = \"new york yankees\"", "question": "what is the school when the team is new york yankees?", "context": "CREATE TABLE table_name_1 (school VARCHAR, team VARCHAR)"}, {"answer": "SELECT player FROM table_name_24 WHERE school = \"spring hs (spring, texas)\"", "question": "who is the player when the school is spring hs (spring, texas)?", "context": "CREATE TABLE table_name_24 (player VARCHAR, school VARCHAR)"}, {"answer": "SELECT melamine_content_mg_kg_ FROM table_name_31 WHERE samples_failed > 1 AND product = \"\u82f1\u96c4\u724c\u5b30\u5e7c\u5152\u914d\u65b9\u4e73\u7c89\"", "question": "What's the melamine content of \u82f1\u96c4\u724c\u5b30\u5e7c\u5152\u914d\u65b9\u4e73\u7c89 having more than 1 samples failed?", "context": "CREATE TABLE table_name_31 (melamine_content_mg_kg_ VARCHAR, samples_failed VARCHAR, product VARCHAR)"}, {"answer": "SELECT MAX(melamine_content_mg_kg_) FROM table_name_48 WHERE producer = \"guangzhou jinding dairy products factory\" AND samples_failed > 1", "question": "What's the most melamine content that has more than 1 samples failed and produced by Guangzhou Jinding Dairy Products Factory?", "context": "CREATE TABLE table_name_48 (melamine_content_mg_kg_ INTEGER, producer VARCHAR, samples_failed VARCHAR)"}, {"answer": "SELECT product FROM table_name_88 WHERE melamine_content_mg_kg_ < 98.6 AND samples_failed > 1 AND samples_taken < 3", "question": "What's the product that has less than 98.6 melamine content, more than 1 sample failed and took less than 3 samples?", "context": "CREATE TABLE table_name_88 (product VARCHAR, samples_taken VARCHAR, melamine_content_mg_kg_ VARCHAR, samples_failed VARCHAR)"}, {"answer": "SELECT MAX(samples_failed) FROM table_name_77 WHERE product = \"\u53ef\u6dc7\u724c\u5b30\u5e7c\u5152\u914d\u65b9\u4e73\u7c89\" AND samples_taken < 1", "question": "What the most samples failed for \u53ef\u6dc7\u724c\u5b30\u5e7c\u5152\u914d\u65b9\u4e73\u7c89 and had less than 1 samples taken?", "context": "CREATE TABLE table_name_77 (samples_failed INTEGER, product VARCHAR, samples_taken VARCHAR)"}, {"answer": "SELECT SUM(samples_taken) FROM table_name_12 WHERE melamine_content_mg_kg_ < 53.4 AND producer = \"qingdao suncare nutritional technology\"", "question": "How many samples taken from producer Qingdao Suncare Nutritional Technology with a melamine content less than 53.4?", "context": "CREATE TABLE table_name_12 (samples_taken INTEGER, melamine_content_mg_kg_ VARCHAR, producer VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE country = \"australia\"", "question": "What did the golfer from Australia score?", "context": "CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE opera = \"5.1%\" AND internet_explorer = \"59.5%\"", "question": "Which date has an Opera usage percentage of 5.1% and Internet Explorer usage of 59.5%?", "context": "CREATE TABLE table_name_64 (date VARCHAR, opera VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT source FROM table_name_28 WHERE date = \"june 2008\"", "question": "Which source has a date of June 2008?", "context": "CREATE TABLE table_name_28 (source VARCHAR, date VARCHAR)"}, {"answer": "SELECT source FROM table_name_52 WHERE internet_explorer = \"60.2%\"", "question": "Which source date has an Internet Explorer usage of 60.2%?", "context": "CREATE TABLE table_name_52 (source VARCHAR, internet_explorer VARCHAR)"}, {"answer": "SELECT city FROM table_name_88 WHERE home_team_s = \"brisbane broncos\"", "question": "What city has the home team of the brisbane broncos?", "context": "CREATE TABLE table_name_88 (city VARCHAR, home_team_s VARCHAR)"}, {"answer": "SELECT MIN(closed__as_a_rl_stadium_) FROM table_name_94 WHERE country = \"france\"", "question": "What is the earliest closed year in the country of france?", "context": "CREATE TABLE table_name_94 (closed__as_a_rl_stadium_ INTEGER, country VARCHAR)"}, {"answer": "SELECT res FROM table_name_7 WHERE time = \"2:20\"", "question": "What is the result for the event that lasted 2:20?", "context": "CREATE TABLE table_name_7 (res VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_54 WHERE res = \"loss\" AND event = \"gladiator challenge 87: collision course\"", "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 record FROM table_name_13 WHERE event = \"cage combat fighting championships: mayhem\"", "question": "For the Cage Combat Fighting Championships: Mayhem, what was the record?", "context": "CREATE TABLE table_name_13 (record VARCHAR, event VARCHAR)"}, {"answer": "SELECT designer FROM table_name_89 WHERE restaurant_name = \"the grapefruit moon\"", "question": "Who was the designer for The Grapefruit Moon?", "context": "CREATE TABLE table_name_89 (designer VARCHAR, restaurant_name VARCHAR)"}, {"answer": "SELECT chef FROM table_name_21 WHERE restaurant_name = \"lakes bar and grill\"", "question": "Who is the chef at Lakes Bar and Grill?", "context": "CREATE TABLE table_name_21 (chef VARCHAR, restaurant_name VARCHAR)"}, {"answer": "SELECT restaurant_name FROM table_name_85 WHERE designer = \"robin de groot\" AND location = \"cobourg, on\"", "question": "What is the name of the Cobourg, ON restaurant that had Robin de Groot as designer?", "context": "CREATE TABLE table_name_85 (restaurant_name VARCHAR, designer VARCHAR, location VARCHAR)"}, {"answer": "SELECT european_competitions FROM table_name_48 WHERE tier = 2 AND pos = 3", "question": "What European competitions have a tier of 2 and a position of 3?", "context": "CREATE TABLE table_name_48 (european_competitions VARCHAR, tier VARCHAR, pos VARCHAR)"}, {"answer": "SELECT nation FROM table_name_2 WHERE silver = 5 AND gold > 4", "question": "Which Nation won 5 Silver, and more than 4 Gold?", "context": "CREATE TABLE table_name_2 (nation VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_74 WHERE lane < 4 AND name = \"christophe lebon\"", "question": "What is the sum of heat for christophe lebon when lane is less than 4?", "context": "CREATE TABLE table_name_74 (heat VARCHAR, lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_79 WHERE rank < 9 AND heat > 5 AND nationality = \"united states\"", "question": "Who is from the united states, has a rank less than 9, and heat more than 5?", "context": "CREATE TABLE table_name_79 (name VARCHAR, nationality VARCHAR, rank VARCHAR, heat VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_38 WHERE nationality = \"serbia\" AND heat < 2", "question": "Serbia has a heat less than 2 and what sum of rank?", "context": "CREATE TABLE table_name_38 (rank VARCHAR, nationality VARCHAR, heat VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_38 WHERE rank = 33", "question": "When rank is 33, what is the smallest lane?", "context": "CREATE TABLE table_name_38 (lane INTEGER, rank VARCHAR)"}, {"answer": "SELECT model FROM table_name_6 WHERE number_of_cpus = \"1\u201310\" AND performance__mips_ = \"49\u2013447\"", "question": "Which Model has a Number of CPUs of 1\u201310, and a Performance (MIPS) of 49\u2013447?", "context": "CREATE TABLE table_name_6 (model VARCHAR, number_of_cpus VARCHAR, performance__mips_ VARCHAR)"}, {"answer": "SELECT MAX(year_introduced) FROM table_name_26 WHERE memory__gb_ = \"0.125\u20132\"", "question": "Which Year Introduced has a Memory (GB) of 0.125\u20132?", "context": "CREATE TABLE table_name_26 (year_introduced INTEGER, memory__gb_ VARCHAR)"}, {"answer": "SELECT number_of_cpus FROM table_name_59 WHERE memory__gb_ = \"0.5\u201316\"", "question": "Which Number of CPUs has a Memory (GB) of 0.5\u201316?", "context": "CREATE TABLE table_name_59 (number_of_cpus VARCHAR, memory__gb_ VARCHAR)"}, {"answer": "SELECT memory__gb_ FROM table_name_57 WHERE number_of_cpus = \"1\u20136\"", "question": "Which Memory (GB) has a Number of CPUs of 1\u20136?", "context": "CREATE TABLE table_name_57 (memory__gb_ VARCHAR, number_of_cpus VARCHAR)"}, {"answer": "SELECT fuel_type FROM table_name_62 WHERE mpg_us_extra_urban > 53.5 AND mpg_us_combined > 50 AND manufacturer = \"renault\"", "question": "Which Fuel Type that has a mpg-US Extra-Urban larger than 53.5, and a mpg-US Combined larger than 50 from renault?", "context": "CREATE TABLE table_name_62 (fuel_type VARCHAR, manufacturer VARCHAR, mpg_us_extra_urban VARCHAR, mpg_us_combined VARCHAR)"}, {"answer": "SELECT country FROM table_name_26 WHERE rank > 4 AND time = \"5:59.56\"", "question": "What is the Country of the Rowers with a Rank larger than 4 and Time of 5:59.56?", "context": "CREATE TABLE table_name_26 (country VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_98 WHERE rank > 2 AND notes = \"fb\" AND country = \"belarus\"", "question": "What is the Time of the Belarus Player with a Rank larger than 2 and Notes of FB?", "context": "CREATE TABLE table_name_98 (time VARCHAR, country VARCHAR, rank VARCHAR, notes VARCHAR)"}, {"answer": "SELECT time FROM table_name_75 WHERE notes = \"fa\" AND rank < 2", "question": "What is the Time of the Player with a Rank of 1 or 2 and Notes of FA?", "context": "CREATE TABLE table_name_75 (time VARCHAR, notes VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_66 WHERE country = \"poland\"", "question": "Who are the Rowers from Poland?", "context": "CREATE TABLE table_name_66 (rowers VARCHAR, country VARCHAR)"}, {"answer": "SELECT rowers FROM table_name_14 WHERE time = \"5:56.38\"", "question": "Who are the Rowers with a Time of 5:56.38?", "context": "CREATE TABLE table_name_14 (rowers VARCHAR, time VARCHAR)"}, {"answer": "SELECT title FROM table_name_95 WHERE release_date = \"1954-12-18\"", "question": "What's the title of the film with the release date of 1954-12-18?", "context": "CREATE TABLE table_name_95 (title VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT COUNT(production_number) FROM table_name_21 WHERE series = \"mm\" AND title = \"bell hoppy\"", "question": "What is the production number for Bell Hoppy in the MM Series?", "context": "CREATE TABLE table_name_21 (production_number VARCHAR, series VARCHAR, title VARCHAR)"}, {"answer": "SELECT SUM(scored) FROM table_name_75 WHERE losses < 0", "question": "How much Scored has Losses smaller than 0?", "context": "CREATE TABLE table_name_75 (scored INTEGER, losses INTEGER)"}, {"answer": "SELECT MIN(wins) FROM table_name_98 WHERE losses < 6 AND position = 4 AND played > 9", "question": "Which Wins have Losses smaller than 6, and a Position of 4, and Played larger than 9?", "context": "CREATE TABLE table_name_98 (wins INTEGER, played VARCHAR, losses VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(conceded) FROM table_name_77 WHERE wins < 3 AND points > 11", "question": "How much Conceded has Wins smaller than 3, and Points larger than 11?", "context": "CREATE TABLE table_name_77 (conceded VARCHAR, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_91 WHERE points < 15 AND conceded > 10 AND position > 8 AND wins = 1", "question": "Which Draws has Points smaller than 15, and a Conceded larger than 10, and a Position larger than 8, and Wins of 1?", "context": "CREATE TABLE table_name_91 (draws INTEGER, wins VARCHAR, position VARCHAR, points VARCHAR, conceded VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_62 WHERE points = 11", "question": "How many losses have 11 points?", "context": "CREATE TABLE table_name_62 (losses VARCHAR, points VARCHAR)"}, {"answer": "SELECT song_title FROM table_name_3 WHERE singer_s_ = \"sonu nigam\" AND lyricist = \"dev kohli/biddu\" AND number > 8", "question": "What is the song title sung by Sonu Nigam with lyricists of Dev Kohli/Biddu, and number over 8?", "context": "CREATE TABLE table_name_3 (song_title VARCHAR, number VARCHAR, singer_s_ VARCHAR, lyricist VARCHAR)"}, {"answer": "SELECT singer_s_ FROM table_name_97 WHERE lyricist = \"dev kohli\" AND number = 3", "question": "Who was the singer for the song numbered 3, with lyricist Dev Kohli?", "context": "CREATE TABLE table_name_97 (singer_s_ VARCHAR, lyricist VARCHAR, number VARCHAR)"}, {"answer": "SELECT AVG(number) FROM table_name_75 WHERE song_title = \"o sudha\"", "question": "What is the average number for the song \"O Sudha\"?", "context": "CREATE TABLE table_name_75 (number INTEGER, song_title VARCHAR)"}, {"answer": "SELECT length FROM table_name_53 WHERE song_title = \"ma ke jaisi\"", "question": "What is the average length for the song \"Ma Ke Jaisi\"?", "context": "CREATE TABLE table_name_53 (length VARCHAR, song_title VARCHAR)"}, {"answer": "SELECT name FROM table_name_83 WHERE fa_cup_goals = 0 AND league_cup_goals < 2 AND total_goals = 2", "question": "Who had fa cup goals of 0, league cup goals less than 2, and total goals of 2?", "context": "CREATE TABLE table_name_83 (name VARCHAR, total_goals VARCHAR, fa_cup_goals VARCHAR, league_cup_goals VARCHAR)"}, {"answer": "SELECT SUM(fa_cup_goals) FROM table_name_12 WHERE total_apps = \"10 (4)\"", "question": "what is the fa cup goals when total apps is 10 (4)?", "context": "CREATE TABLE table_name_12 (fa_cup_goals INTEGER, total_apps VARCHAR)"}, {"answer": "SELECT COUNT(total_goals) FROM table_name_52 WHERE fa_cup_apps > 0 AND position = \"mf\" AND league_goals = 4", "question": "how many times is the fa cup apps more than 0, the position mf and the league goals 4?", "context": "CREATE TABLE table_name_52 (total_goals VARCHAR, league_goals VARCHAR, fa_cup_apps VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(number_of_electorates__2009_) FROM table_name_83 WHERE constituency_number = \"193\"", "question": "What is the total number of electorates in 2009 with a constituency of 193?", "context": "CREATE TABLE table_name_83 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT reserved_for___sc___st__none_ FROM table_name_34 WHERE constituency_number = \"192\"", "question": "What is the reserved for the constituency of 192?", "context": "CREATE TABLE table_name_34 (reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT artist FROM table_name_79 WHERE percentage = \"11.32%\"", "question": "Which Artist has a Percentage of 11.32%?", "context": "CREATE TABLE table_name_79 (artist VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_14 WHERE date = \"november 28, 1982\"", "question": "What is the week for November 28, 1982?", "context": "CREATE TABLE table_name_14 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_32 WHERE result = \"l 41-37\"", "question": "What is the attendance number when the result is l 41-37?", "context": "CREATE TABLE table_name_32 (attendance VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_5 WHERE week < 4 AND result = \"w 31-20\"", "question": "What is the attendance in a week earlier than 4, and result is w 31-20?", "context": "CREATE TABLE table_name_5 (attendance INTEGER, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_31 WHERE week > 1 AND result = \"l 21-20\"", "question": "What is the opponent in a week larger than 1, with a result of l 21-20?", "context": "CREATE TABLE table_name_31 (opponent VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT sport FROM table_name_3 WHERE founded = 2010", "question": "What sport was played by the team founded in 2010?", "context": "CREATE TABLE table_name_3 (sport VARCHAR, founded VARCHAR)"}, {"answer": "SELECT club FROM table_name_27 WHERE founded < 2011 AND venue = \"champion window field\"", "question": "What club team was founded before 2011 and plays at the champion window field?", "context": "CREATE TABLE table_name_27 (club VARCHAR, founded VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_name_77 WHERE venue = \"champion window field\"", "question": "How many different dates are there for founded teams for the venue of champion window field?", "context": "CREATE TABLE table_name_77 (founded VARCHAR, venue VARCHAR)"}, {"answer": "SELECT club FROM table_name_40 WHERE venue = \"champion window field\"", "question": "What club team plays at the champion window field?", "context": "CREATE TABLE table_name_40 (club VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MAX(inflation_index__2000) = 100 AS _ FROM table_name_67 WHERE per_capita_income__as__percentage_of_usa_ = 10.65 AND year < 1990", "question": "Which Inflation Index (2000=100) has a Per Capita Income (as % of USA) of 10.65, and a Year smaller than 1990?", "context": "CREATE TABLE table_name_67 (inflation_index__2000 INTEGER, per_capita_income__as__percentage_of_usa_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_77 WHERE production_num = \"6998\"", "question": "What release date has 6998 as the production num.?", "context": "CREATE TABLE table_name_77 (release_date VARCHAR, production_num VARCHAR)"}, {"answer": "SELECT director FROM table_name_40 WHERE series = \"lt\" AND production_num = \"6982\"", "question": "What director has lt as the series, with 6982 as the production num.?", "context": "CREATE TABLE table_name_40 (director VARCHAR, series VARCHAR, production_num VARCHAR)"}, {"answer": "SELECT series FROM table_name_12 WHERE release_date = \"1935-07-13\"", "question": "What series has 1935-07-13 as the release date?", "context": "CREATE TABLE table_name_12 (series VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT title FROM table_name_66 WHERE series = \"lt\" AND director = \"ben hardaway\" AND production_num = \"6612\"", "question": "What title has lt as the series, ben hardaway as the director, with 6612 as the production num.?", "context": "CREATE TABLE table_name_66 (title VARCHAR, production_num VARCHAR, series VARCHAR, director VARCHAR)"}, {"answer": "SELECT title FROM table_name_26 WHERE label = \"pacific jazz\" AND year = 1963 AND label - Nr = st - 81", "question": "What is the song title from 1963 on the Pacific Jazz label, and a Label-Nr of st-81?", "context": "CREATE TABLE table_name_26 (title VARCHAR, label VARCHAR, year VARCHAR, Nr VARCHAR, st VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_37 WHERE label - Nr = st - 43", "question": "What is the earliest year with a label-Nr of st-43?", "context": "CREATE TABLE table_name_37 (year INTEGER, label VARCHAR, Nr VARCHAR, st VARCHAR)"}, {"answer": "SELECT title FROM table_name_3 WHERE label = \"pacific jazz\" AND label - Nr = st - 20124", "question": "What is the song title on the Pacific Jazz label, and a Label-Nr of st-20124?", "context": "CREATE TABLE table_name_3 (title VARCHAR, label VARCHAR, Nr VARCHAR, st VARCHAR)"}, {"answer": "SELECT type FROM table_name_42 WHERE year < 1968 AND title = \"stretchin' out\"", "question": "What is the type earlier than 1968, and a Title of stretchin' out?", "context": "CREATE TABLE table_name_42 (type VARCHAR, year VARCHAR, title VARCHAR)"}, {"answer": "SELECT team FROM table_name_19 WHERE pick = 31", "question": "what is the team that is pick 31?", "context": "CREATE TABLE table_name_19 (team VARCHAR, pick VARCHAR)"}, {"answer": "SELECT position FROM table_name_8 WHERE pick > 32 AND team = \"atlanta braves\"", "question": "what is the position when the pick is higher than 32 and the team is atlanta braves?", "context": "CREATE TABLE table_name_8 (position VARCHAR, pick VARCHAR, team VARCHAR)"}, {"answer": "SELECT position FROM table_name_16 WHERE pick > 33 AND school = \"tottenville hs (staten island, ny)\"", "question": "what is the position when the pick is higher than 33 and the school is tottenville hs (staten island, ny)?", "context": "CREATE TABLE table_name_16 (position VARCHAR, pick VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_99 WHERE week = 12", "question": "What is the Attendance of the game in Week 12?", "context": "CREATE TABLE table_name_99 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE date = \"december 3, 1979\"", "question": "What is the Opponent on December 3, 1979?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_62 WHERE opponent = \"philadelphia eagles\"", "question": "What is the Result of the game against Philadelphia Eagles?", "context": "CREATE TABLE table_name_62 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE date = \"march 27\"", "question": "What is the score March 27?", "context": "CREATE TABLE table_name_55 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE game > 4 AND series = \"3-2\"", "question": "What is the score for the game larger than 4 in series 3-2?", "context": "CREATE TABLE table_name_77 (score VARCHAR, game VARCHAR, series VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_56 WHERE series = \"4-2\"", "question": "What is the game number for series 4-2?", "context": "CREATE TABLE table_name_56 (game VARCHAR, series VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE game < 4 AND score = \"116-114\"", "question": "What date has a game smaller than 4, and a score of 116-114?", "context": "CREATE TABLE table_name_73 (date VARCHAR, game VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_43 WHERE date = \"april 7\"", "question": "What is the game number on April 7?", "context": "CREATE TABLE table_name_43 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT opposing_team FROM table_name_34 WHERE against < 19 AND date = \"20/05/1979\"", "question": "Which Opposing Team has an Against smaller than 19, and a Date of 20/05/1979?", "context": "CREATE TABLE table_name_34 (opposing_team VARCHAR, against VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(production_number) FROM table_name_76 WHERE title = \"pre-hysterical hare\"", "question": "What was the production number of the episode titel of pre-hysterical hare?", "context": "CREATE TABLE table_name_76 (production_number VARCHAR, title VARCHAR)"}, {"answer": "SELECT director FROM table_name_27 WHERE production_number = 1490", "question": "What director had a production number of 1490?", "context": "CREATE TABLE table_name_27 (director VARCHAR, production_number VARCHAR)"}, {"answer": "SELECT title FROM table_name_56 WHERE director = \"chuck jones\" AND release_date = \"1958-04-12\"", "question": "Which title was directed by chuck jones and released on 1958-04-12?", "context": "CREATE TABLE table_name_56 (title VARCHAR, director VARCHAR, release_date VARCHAR)"}, {"answer": "SELECT name FROM table_name_96 WHERE time > 53.06 AND lane < 8 AND rank > 2 AND nationality = \"japan\"", "question": "Which Name has a Time larger than 53.06, and a Lane smaller than 8, and a Rank larger than 2, and a Nationality of japan?", "context": "CREATE TABLE table_name_96 (name VARCHAR, nationality VARCHAR, rank VARCHAR, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_32 WHERE time = 53.61 AND rank > 3", "question": "How many lanes have a Time of 53.61, and a Rank larger than 3?", "context": "CREATE TABLE table_name_32 (lane INTEGER, time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT finish_position FROM table_name_64 WHERE year < 2009", "question": "What is the finish position in the year prior to 2009?", "context": "CREATE TABLE table_name_64 (finish_position VARCHAR, year INTEGER)"}, {"answer": "SELECT _number___county FROM table_name_88 WHERE location = \"ossian\"", "question": "Which #/ County has a Location of ossian?", "context": "CREATE TABLE table_name_88 (_number___county VARCHAR, location VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_79 WHERE ihsaa_class = \"aaaaa\" AND mascot = \"spartans\"", "question": "How much Enrollment has an IHSAA Class of aaaaa, and a Mascot of spartans?", "context": "CREATE TABLE table_name_79 (enrollment VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT SUM(enrollment) FROM table_name_5 WHERE school = \"fort wayne homestead\"", "question": "How much Enrollment has a School of fort wayne homestead?", "context": "CREATE TABLE table_name_5 (enrollment INTEGER, school VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_49 WHERE location = \"columbia city\"", "question": "Which IHSAA Class has a Location of columbia city?", "context": "CREATE TABLE table_name_49 (ihsaa_class VARCHAR, location VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_78 WHERE score = \"111-106\"", "question": "Who was the opponent at the game with a score of 111-106?", "context": "CREATE TABLE table_name_78 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT location_attendance FROM table_name_13 WHERE score = \"113-106\"", "question": "What was the location of the game with a score of 113-106?", "context": "CREATE TABLE table_name_13 (location_attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_52 WHERE team = \"denver broncos\"", "question": "What is the highest pick number for a pick drafted by the denver broncos?", "context": "CREATE TABLE table_name_52 (pick INTEGER, team VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_83 WHERE result = \"l 27-7\"", "question": "What opponent has l 27-7 as the result?", "context": "CREATE TABLE table_name_83 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_87 WHERE attendance = 54 OFFSET 187", "question": "How many weeks has 54,187 as the attendance?", "context": "CREATE TABLE table_name_87 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_96 WHERE opponent = \"alberta brianti\" AND score = \"6-4 2-6 6-2\"", "question": "What tournament had Alberta Brianti as an opponent with a score of 6-4 2-6 6-2?", "context": "CREATE TABLE table_name_96 (tournament VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE score = \"3-6 4-6\"", "question": "When was the score 3-6 4-6?", "context": "CREATE TABLE table_name_3 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_36 WHERE time = \"2:25.65\" AND lane > 3", "question": "What is the Rank of the Swimmer with a Time of 2:25.65 in a Lane larger than 3?", "context": "CREATE TABLE table_name_36 (rank INTEGER, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_52 WHERE name = \"qi hui\"", "question": "What is the Rank of Qi Hui?", "context": "CREATE TABLE table_name_52 (rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(forfeits) FROM table_name_84 WHERE wins < 8 AND losses > 16", "question": "How many Forfeits have Wins smaller than 8, and Losses larger than 16?", "context": "CREATE TABLE table_name_84 (forfeits VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_13 WHERE millewa = \"nangiloc\"", "question": "How many Losses have a Millewa of nangiloc?", "context": "CREATE TABLE table_name_13 (losses VARCHAR, millewa VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_58 WHERE draws > 0", "question": "How many Losses have Draws larger than 0?", "context": "CREATE TABLE table_name_58 (losses INTEGER, draws INTEGER)"}, {"answer": "SELECT AVG(rank) FROM table_name_46 WHERE name = \"elise matthysen\" AND lane < 8", "question": "What is the average rank of Elise Matthysen in lanes under 8?", "context": "CREATE TABLE table_name_46 (rank INTEGER, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT time FROM table_name_53 WHERE name = \"yuliya yefimova\"", "question": "What is the time of Yuliya Yefimova?", "context": "CREATE TABLE table_name_53 (time VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_1 WHERE lane < 3 AND nationality = \"great britain\"", "question": "Who was from Great Britain in lanes under number 3?", "context": "CREATE TABLE table_name_1 (name VARCHAR, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT wheel_arrangement FROM table_name_1 WHERE year_made = \"1910\"", "question": "What wheel arrangement was made in 1910?", "context": "CREATE TABLE table_name_1 (wheel_arrangement VARCHAR, year_made VARCHAR)"}, {"answer": "SELECT year_s__retired FROM table_name_32 WHERE serial_numbers = \"27317\u201327336\"", "question": "What year were the retired serial numbers 27317\u201327336?", "context": "CREATE TABLE table_name_32 (year_s__retired VARCHAR, serial_numbers VARCHAR)"}, {"answer": "SELECT surface FROM table_name_16 WHERE score = \"7-5, 5-7, 6-3\"", "question": "Which Surface has a score of 7-5, 5-7, 6-3?", "context": "CREATE TABLE table_name_16 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_30 WHERE score = \"6-4, 6-4\"", "question": "Which tournament has a Score of 6-4, 6-4?", "context": "CREATE TABLE table_name_30 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_41 WHERE date = \"10 november 2006\"", "question": "What was the Surface on during 10 November 2006?", "context": "CREATE TABLE table_name_41 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE date = \"25 may 2007\"", "question": "What was the Score on 25 May 2007?", "context": "CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_79 WHERE date = \"10 november 2006\"", "question": "What was the score on 10 November 2006?", "context": "CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT partnering FROM table_name_92 WHERE score = \"6-3, 4-6, 6-4\"", "question": "Which Partnering has a Score of 6-3, 4-6, 6-4?", "context": "CREATE TABLE table_name_92 (partnering VARCHAR, score VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_38 WHERE notes = \"qs\" AND country = \"china\"", "question": "What is the rank for the man from China with notes of QS?", "context": "CREATE TABLE table_name_38 (rank INTEGER, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_16 WHERE country = \"bulgaria\"", "question": "What is the rank for the competitor from Bulgaria?", "context": "CREATE TABLE table_name_16 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT athletes FROM table_name_62 WHERE rank < 5 AND country = \"china\"", "question": "Which athlete is ranked below 5 and is from China?", "context": "CREATE TABLE table_name_62 (athletes VARCHAR, rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT game FROM table_name_90 WHERE genre = \"platformer\"", "question": "Which game was a Platformer?", "context": "CREATE TABLE table_name_90 (game VARCHAR, genre VARCHAR)"}, {"answer": "SELECT developer_s_ FROM table_name_98 WHERE game = \"xcom: enemy unknown\"", "question": "Who was the developer of XCom: Enemy Unknown?", "context": "CREATE TABLE table_name_98 (developer_s_ VARCHAR, game VARCHAR)"}, {"answer": "SELECT platform_s_ FROM table_name_50 WHERE game = \"red dead redemption\"", "question": "Which platform was Red Dead Redemption for?", "context": "CREATE TABLE table_name_50 (platform_s_ VARCHAR, game VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_49 WHERE egyptian_premier_league < 2 AND egypt_cup < 0", "question": "What is the highest total for players with under 2 Egyptian Premier League goals and 0 Egypt Cup goals?", "context": "CREATE TABLE table_name_49 (total INTEGER, egyptian_premier_league VARCHAR, egypt_cup VARCHAR)"}, {"answer": "SELECT AVG(egypt_cup) FROM table_name_93 WHERE caf_champions_league = 0 AND egyptian_premier_league = 6 AND total < 6", "question": "What is the aveage Egypt Cup value for players with 0 CAF Champions League goals, 6 Egyptian Premier League goals, and totals under 6?", "context": "CREATE TABLE table_name_93 (egypt_cup INTEGER, total VARCHAR, caf_champions_league VARCHAR, egyptian_premier_league VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_64 WHERE gold > 0 AND rank < 2", "question": "how many times is gold more than 0 and the rank less than 2?", "context": "CREATE TABLE table_name_64 (silver VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_71 WHERE nation = \"france\" AND silver > 1", "question": "what is the highest total when the nation is france and silver is more than 1?", "context": "CREATE TABLE table_name_71 (total INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_94 WHERE nation = \"germany\" AND gold > 4", "question": "what is the least silver for germany when gold is more than 4?", "context": "CREATE TABLE table_name_94 (silver INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_23 WHERE total < 15 AND rank < 5 AND bronze = 4 AND gold < 3", "question": "How many times is the total less than 15, rank less than 5, bronze is 4 and gold smaller than 3?", "context": "CREATE TABLE table_name_23 (silver VARCHAR, gold VARCHAR, bronze VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT venue FROM table_name_71 WHERE date = \"september 5, 1998\"", "question": "What venue did the game on september 5, 1998 take place at?", "context": "CREATE TABLE table_name_71 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE competition = \"2000 tiger cup\" AND date = \"november 10, 2000\"", "question": "What venue did the 2000 tiger cup take place at on November 10, 2000?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE score = \"5-4\"", "question": "What date had a game with a score of 5-4?", "context": "CREATE TABLE table_name_63 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(s_barangay) FROM table_name_72 WHERE area___has__ > 865.13", "question": "What is the total of Barangay with an area larger than 865.13?", "context": "CREATE TABLE table_name_72 (s_barangay INTEGER, area___has__ INTEGER)"}, {"answer": "SELECT MIN(pop_density__per_km2_) FROM table_name_12 WHERE district = \"santa cruz\" AND s_barangay > 82", "question": "What is the lowest population density for the district of Santa Cruz and a Barangay larger than 82?", "context": "CREATE TABLE table_name_12 (pop_density__per_km2_ INTEGER, district VARCHAR, s_barangay VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_13 WHERE rank = \"17\" AND silver > 4", "question": "What is the average number of golds for teams in rank 17 with more than 4 silver?", "context": "CREATE TABLE table_name_13 (gold INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_88 WHERE bronze < 34 AND gold < 14 AND silver < 0", "question": "What is the average total for teams with under 34 bronzes, 0 silver, and under 14 gold?", "context": "CREATE TABLE table_name_88 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_54 WHERE silver < 0", "question": "What is the fewest number of golds for teams with 0 silver?", "context": "CREATE TABLE table_name_54 (gold INTEGER, silver INTEGER)"}, {"answer": "SELECT nations FROM table_name_87 WHERE year = \"2007\"", "question": "What nations participated in 2007?", "context": "CREATE TABLE table_name_87 (nations VARCHAR, year VARCHAR)"}, {"answer": "SELECT event_type FROM table_name_57 WHERE body = \"cmas\" AND year = \"1980\" AND sport = \"underwater hockey\"", "question": "What event type had BODY CMAS in 1980 and underwater hockey?", "context": "CREATE TABLE table_name_57 (event_type VARCHAR, sport VARCHAR, body VARCHAR, year VARCHAR)"}, {"answer": "SELECT body FROM table_name_12 WHERE event_type = \"world championship\" AND sport = \"underwater target shooting\"", "question": "What body is at the World Championship for Underwater Target shooting?", "context": "CREATE TABLE table_name_12 (body VARCHAR, event_type VARCHAR, sport VARCHAR)"}, {"answer": "SELECT body FROM table_name_43 WHERE year = \"1973\"", "question": "What body participated in 1973?", "context": "CREATE TABLE table_name_43 (body VARCHAR, year VARCHAR)"}, {"answer": "SELECT time FROM table_name_76 WHERE event = \"800m freestyle\"", "question": "What was the record setting time in the 800m freestyle?", "context": "CREATE TABLE table_name_76 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT power FROM table_name_26 WHERE class = \"a\" AND frequency = \"93.7\"", "question": "What power has A as the class, and 93.7 as the frequency?", "context": "CREATE TABLE table_name_26 (power VARCHAR, class VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_77 WHERE identifier = \"cbon-fm-11\"", "question": "What city of license has cbon-fm-11 as the identifier?", "context": "CREATE TABLE table_name_77 (city_of_license VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT power FROM table_name_17 WHERE city_of_license = \"thunder bay\"", "question": "What power has thunder bay as the city of license?", "context": "CREATE TABLE table_name_17 (power VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT identifier FROM table_name_98 WHERE power = \"100000 watts\"", "question": "What identifier has 100000 watts as the power?", "context": "CREATE TABLE table_name_98 (identifier VARCHAR, power VARCHAR)"}, {"answer": "SELECT identifier FROM table_name_92 WHERE frequency = \"90.3\"", "question": "What identifier has 90.3 as the frequency?", "context": "CREATE TABLE table_name_92 (identifier VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT class FROM table_name_28 WHERE identifier = \"cbon-fm-23\"", "question": "What class has cbon-fm-23 as the identifier?", "context": "CREATE TABLE table_name_28 (class VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_74 WHERE bronze > 1 AND nation = \"west germany\" AND gold > 2", "question": "What is the total number of medals for West Germany with more than 1 bronze medal and more than 2 gold medals?", "context": "CREATE TABLE table_name_74 (total VARCHAR, gold VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT rank FROM table_name_87 WHERE nation = \"denmark\"", "question": "What is Denmark's rank?", "context": "CREATE TABLE table_name_87 (rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT country FROM table_name_70 WHERE notes = \"fa\" AND athlete = \"ekaterina karsten\"", "question": "What country did ekaterina karsten row for with fa listed under notes?", "context": "CREATE TABLE table_name_70 (country VARCHAR, notes VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT time FROM table_name_37 WHERE country = \"france\"", "question": "What time was the race for the country of france?", "context": "CREATE TABLE table_name_37 (time VARCHAR, country VARCHAR)"}, {"answer": "SELECT time FROM table_name_10 WHERE notes = \"fb\" AND country = \"france\"", "question": "What time was the race for the country of france with fb listed under notes?", "context": "CREATE TABLE table_name_10 (time VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_10 WHERE country = \"bulgaria\"", "question": "What is the sum of the ranks for bulgaria?", "context": "CREATE TABLE table_name_10 (rank INTEGER, country VARCHAR)"}, {"answer": "SELECT rank FROM table_name_31 WHERE notes = \"fb\" AND country = \"new zealand\"", "question": "What is the rank of the new zealand team that had fb listed under notes?", "context": "CREATE TABLE table_name_31 (rank VARCHAR, notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT position FROM table_name_42 WHERE pick = 74", "question": "Which Position has a Pick of 74?", "context": "CREATE TABLE table_name_42 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT team FROM table_name_86 WHERE position = \"linebacker\"", "question": "Which Team has a Position of linebacker?", "context": "CREATE TABLE table_name_86 (team VARCHAR, position VARCHAR)"}, {"answer": "SELECT team FROM table_name_87 WHERE college = \"stanford\"", "question": "What is the Team for Stanford College?", "context": "CREATE TABLE table_name_87 (team VARCHAR, college VARCHAR)"}, {"answer": "SELECT pick FROM table_name_2 WHERE college = \"southeastern louisiana\"", "question": "What Pick does the College Southeastern Louisiana have?", "context": "CREATE TABLE table_name_2 (pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT gold FROM table_name_50 WHERE total > 2 AND bronze < 1", "question": "Can you tell me the Gold that has the Total larger than 2, and the Bronze smaller than 1?", "context": "CREATE TABLE table_name_50 (gold VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT nation FROM table_name_68 WHERE bronze = 1 AND gold = 0", "question": "Can you tell me the Nation that has the Bronze of 1, and the Gold of 0?", "context": "CREATE TABLE table_name_68 (nation VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_15 WHERE silver > 1 AND bronze < 8", "question": "Can you tell me the average Total that has the Silver larger than 1, and the Bronze smaller than 8?", "context": "CREATE TABLE table_name_15 (total INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_99 WHERE total = 4 AND silver = 1 AND gold < 2", "question": "What was the highest number of bronze medals when there were a total of 4 medals, 1 silver medals, and less than 2 medals?", "context": "CREATE TABLE table_name_99 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(pommel_horse) FROM table_name_6 WHERE rings < 59.85 AND team_total > 361.2", "question": "Count the Pommel Horse that has Rings smaller than 59.85 and a Team Total larger than 361.2?", "context": "CREATE TABLE table_name_6 (pommel_horse INTEGER, rings VARCHAR, team_total VARCHAR)"}, {"answer": "SELECT MAX(parallel_bars) FROM table_name_61 WHERE country = \"united states\" AND vault < 63.85", "question": "Name the highest Parallel Bars of the united states with a Vault smaller than 63.85?", "context": "CREATE TABLE table_name_61 (parallel_bars INTEGER, country VARCHAR, vault VARCHAR)"}, {"answer": "SELECT MAX(horizontal_bar) FROM table_name_4 WHERE country = \"france\" AND rings < 58.975", "question": "Name the highest Horizontal Bar which is in france and Rings smaller than 58.975?", "context": "CREATE TABLE table_name_4 (horizontal_bar INTEGER, country VARCHAR, rings VARCHAR)"}, {"answer": "SELECT artist FROM table_name_20 WHERE televote_sms = \"3.20%\"", "question": "who is the artist when the televote/sms is 3.20%?", "context": "CREATE TABLE table_name_20 (artist VARCHAR, televote_sms VARCHAR)"}, {"answer": "SELECT SUM(place) FROM table_name_47 WHERE televote_sms = \"2.39%\"", "question": "what is the place when the televote/sms is 2.39%?", "context": "CREATE TABLE table_name_47 (place INTEGER, televote_sms VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_54 WHERE televote_sms = \"2.39%\" AND place > 9", "question": "how many times was the televote/sms 2.39% and the place more than 9?", "context": "CREATE TABLE table_name_54 (draw VARCHAR, televote_sms VARCHAR, place VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_69 WHERE production_num > 5888 AND director = \"hugh harman and friz freleng\"", "question": "Which Release date has a Production Num larger than 5888, and a Director of hugh harman and friz freleng?", "context": "CREATE TABLE table_name_69 (release_date VARCHAR, production_num VARCHAR, director VARCHAR)"}, {"answer": "SELECT SUM(production_num) FROM table_name_93 WHERE title = \"bosko in dutch\"", "question": "How many production numbers have a Title of bosko in dutch?", "context": "CREATE TABLE table_name_93 (production_num INTEGER, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_92 WHERE director = \"tom palmer\" AND production_num > 5956", "question": "Which Release date has a Director of tom palmer, and a Production Num larger than 5956?", "context": "CREATE TABLE table_name_92 (release_date VARCHAR, director VARCHAR, production_num VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_9 WHERE years_at_club = \"1961\u20131966\" AND debut_year > 1961", "question": "How many Goals have Years at club of 1961\u20131966, and a Debut year larger than 1961?", "context": "CREATE TABLE table_name_9 (goals VARCHAR, years_at_club VARCHAR, debut_year VARCHAR)"}, {"answer": "SELECT AVG(debut_year) FROM table_name_76 WHERE goals = 0 AND years_at_club = \"1963\" AND games > 5", "question": "Which Debut year has Goals of 0, and Years at club of 1963, and Games larger than 5?", "context": "CREATE TABLE table_name_76 (debut_year INTEGER, games VARCHAR, goals VARCHAR, years_at_club VARCHAR)"}, {"answer": "SELECT AVG(debut_year) FROM table_name_44 WHERE player = \"bob hayton\" AND games < 2", "question": "Which Debut year has a Player of bob hayton, and Games smaller than 2?", "context": "CREATE TABLE table_name_44 (debut_year INTEGER, player VARCHAR, games VARCHAR)"}, {"answer": "SELECT name FROM table_name_38 WHERE sport = \"table tennis\" AND event = \"women's individual class 3\"", "question": "What is the name of the player who competed in the Women's Individual Class 3 in Table Tennis?", "context": "CREATE TABLE table_name_38 (name VARCHAR, sport VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_73 WHERE event = \"women's individual class 3\"", "question": "What was the date of the Women's Individual Class 3?", "context": "CREATE TABLE table_name_73 (date VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_88 WHERE name = \"rastislav turecek\"", "question": "What event did Rastislav Turecek participate in?", "context": "CREATE TABLE table_name_88 (event VARCHAR, name VARCHAR)"}, {"answer": "SELECT sport FROM table_name_16 WHERE name = \"miroslav jambor richard csejtey\"", "question": "What sport did Miroslav Jambor Richard Csejtey participate in?", "context": "CREATE TABLE table_name_16 (sport VARCHAR, name VARCHAR)"}, {"answer": "SELECT artist FROM table_name_7 WHERE draw = 6", "question": "Which Artist has a Draw of 6?", "context": "CREATE TABLE table_name_7 (artist VARCHAR, draw VARCHAR)"}, {"answer": "SELECT song FROM table_name_20 WHERE draw < 7 AND points > 41 AND language = \"german\"", "question": "Which Song has a Draw smaller than 7, and Points larger than 41, and a Language of german?", "context": "CREATE TABLE table_name_20 (song VARCHAR, language VARCHAR, draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT result FROM table_name_15 WHERE year > 2001", "question": "What was the result for the years after 2001?", "context": "CREATE TABLE table_name_15 (result VARCHAR, year INTEGER)"}, {"answer": "SELECT nominee_s_ FROM table_name_83 WHERE year = 2005", "question": "Who was the nominee for 2005?", "context": "CREATE TABLE table_name_83 (nominee_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT gp_gs FROM table_name_44 WHERE receptions > 4 AND long = 55 AND avg_g = 151", "question": "what is the gp-gs when the receptions is more than 4, long is 55 and avg/g is 151?", "context": "CREATE TABLE table_name_44 (gp_gs VARCHAR, avg_g VARCHAR, receptions VARCHAR, long VARCHAR)"}, {"answer": "SELECT name FROM table_name_1 WHERE avg_g = 13.7", "question": "what is the name when avg/g is 13.7?", "context": "CREATE TABLE table_name_1 (name VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT COUNT(receptions) FROM table_name_82 WHERE avg_g = 2", "question": "How many times is avg/g 2?", "context": "CREATE TABLE table_name_82 (receptions VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT SUM(avg_g) FROM table_name_75 WHERE name = \"john conner\" AND long < 25", "question": "what is the avg/g for john conner when long is less than 25?", "context": "CREATE TABLE table_name_75 (avg_g INTEGER, name VARCHAR, long VARCHAR)"}, {"answer": "SELECT conf FROM table_name_25 WHERE original_nfl_team = \"denver broncos\"", "question": "What conference did the player originally from the denver broncos play in?", "context": "CREATE TABLE table_name_25 (conf VARCHAR, original_nfl_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_72 WHERE college = \"texas southern\"", "question": "Who was the player from texas southern?", "context": "CREATE TABLE table_name_72 (player VARCHAR, college VARCHAR)"}, {"answer": "SELECT conf FROM table_name_44 WHERE pos = \"rb\"", "question": "What conference did the player with the position of rb play in?", "context": "CREATE TABLE table_name_44 (conf VARCHAR, pos VARCHAR)"}, {"answer": "SELECT original_nfl_team FROM table_name_86 WHERE conf = \"midwestern\"", "question": "What was the original nfl team that the player was in from the midwestern conference?", "context": "CREATE TABLE table_name_86 (original_nfl_team VARCHAR, conf VARCHAR)"}, {"answer": "SELECT pos FROM table_name_86 WHERE college = \"tennessee state\"", "question": "What position did athlete play from Tennessee state?", "context": "CREATE TABLE table_name_86 (pos VARCHAR, college VARCHAR)"}, {"answer": "SELECT affected_area_codes FROM table_name_95 WHERE effective_date = \"august 30, 2014\"", "question": "Which Affected area codes have an Effective date of august 30, 2014?", "context": "CREATE TABLE table_name_95 (affected_area_codes VARCHAR, effective_date VARCHAR)"}, {"answer": "SELECT airing_date FROM table_name_39 WHERE number_of_episodes > 20 AND genre = \"modern drama\"", "question": "Which Airing date has a Number of episodes larger than 20, and a Genre of modern drama?", "context": "CREATE TABLE table_name_39 (airing_date VARCHAR, number_of_episodes VARCHAR, genre VARCHAR)"}, {"answer": "SELECT genre FROM table_name_92 WHERE english_title__chinese_title_ = \"the romance of the white hair maiden \u767d\u9aee\u9b54\u5973\u50b3\"", "question": "Which Genre has an English title (Chinese title) of the romance of the white hair maiden \u767d\u9aee\u9b54\u5973\u50b3?", "context": "CREATE TABLE table_name_92 (genre VARCHAR, english_title__chinese_title_ VARCHAR)"}, {"answer": "SELECT grand_finalist FROM table_name_26 WHERE grand_finalists = \"jonathan loh, peterson poon, nathan santos\"", "question": "who is the grand finalist when the grand finalists are jonathan loh, peterson poon, nathan santos?", "context": "CREATE TABLE table_name_26 (grand_finalist VARCHAR, grand_finalists VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_40 WHERE gold = 20 AND rank < 1", "question": "What is the highest total number of medals for a team ranked smaller than 1 and had 20 gold medals?", "context": "CREATE TABLE table_name_40 (total INTEGER, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_31 WHERE gold > 1 AND total = 62", "question": "What is the nation that had more than 1 gold medal and a total of 62 medals?", "context": "CREATE TABLE table_name_31 (nation VARCHAR, gold VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_62 WHERE silver = 1 AND gold < 0", "question": "What is the highest total medals when there were 0 gold medals and 1 silver?", "context": "CREATE TABLE table_name_62 (total INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT 123 AS kg FROM table_name_41 WHERE world_record = \"total\"", "question": "What's the 123kg of the Total world record?", "context": "CREATE TABLE table_name_41 (world_record VARCHAR)"}, {"answer": "SELECT name FROM table_name_55 WHERE constituency_number = \"214\"", "question": "What is the name for the assembly segment with a constituency number of 214?", "context": "CREATE TABLE table_name_55 (name VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT district FROM table_name_20 WHERE name = \"mahidpur\"", "question": "What district has an assembly segment named mahidpur?", "context": "CREATE TABLE table_name_20 (district VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_39 WHERE wrestler = \"doug basham\"", "question": "Who is Doug Basham's team?", "context": "CREATE TABLE table_name_39 (team VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT elimination FROM table_name_71 WHERE wrestler = \"jorge santana\"", "question": "What's Jorge Santana's elimination?", "context": "CREATE TABLE table_name_71 (elimination VARCHAR, wrestler VARCHAR)"}, {"answer": "SELECT wrestler FROM table_name_6 WHERE elimination = \"1\"", "question": "Who's the wrestler with an elimination of 1?", "context": "CREATE TABLE table_name_6 (wrestler VARCHAR, elimination VARCHAR)"}, {"answer": "SELECT eliminated_by FROM table_name_61 WHERE elimination = \"1\"", "question": "Who's the eliminated by when the elimination was 1?", "context": "CREATE TABLE table_name_61 (eliminated_by VARCHAR, elimination VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE week < 9 AND result = \"l 27-10\"", "question": "What is the date where the result was L 27-10 in a week before week 9?", "context": "CREATE TABLE table_name_94 (date VARCHAR, week VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_91 WHERE jury > 22 AND televote = 130", "question": "What sum of draw had more than 22 in Jury and a Televote of 130?", "context": "CREATE TABLE table_name_91 (draw INTEGER, jury VARCHAR, televote VARCHAR)"}, {"answer": "SELECT SUM(jury) FROM table_name_86 WHERE place = \"2nd\" AND total > 190", "question": "What is the total of the jury that is 2nd place and the total is larger than 190?", "context": "CREATE TABLE table_name_86 (jury INTEGER, place VARCHAR, total VARCHAR)"}, {"answer": "SELECT AVG(l_100km_combined) FROM table_name_81 WHERE l_100km_urban__cold_ = 13.9 AND mpg_uk_combined > 28.5 AND mpg_uk_extra_urban < 38.7", "question": "What's the average L/km combines when the L/100km Urban is 13.9, the mpg-UK combined is more than 28.5 and the mpg-UK extra urban is less than 38.7?", "context": "CREATE TABLE table_name_81 (l_100km_combined INTEGER, mpg_uk_extra_urban VARCHAR, l_100km_urban__cold_ VARCHAR, mpg_uk_combined VARCHAR)"}, {"answer": "SELECT MIN(mpg_uk_combined) FROM table_name_42 WHERE mpg_uk_urban__cold_ = 25.4 AND l_100km_extra_urban < 6.9 AND l_100km_urban__cold_ > 11.1", "question": "What's the least mpg-UK combined when the mpg-UK urban is 25.4, the L/100km extra urban is less than 6.9 and the L/100km urban is more than 11.1?", "context": "CREATE TABLE table_name_42 (mpg_uk_combined INTEGER, l_100km_urban__cold_ VARCHAR, mpg_uk_urban__cold_ VARCHAR, l_100km_extra_urban VARCHAR)"}, {"answer": "SELECT COUNT(co_2_g_km) FROM table_name_20 WHERE fuel_type = \"diesel\" AND manufacturer = \"fiat\" AND l_100km_urban__cold_ > 6.3 AND mpg_uk_combined = 43.5", "question": "What's the CO2 g/km of a Fiat running on diesel with the L/100km urban more than 6.3 and an mpg-UK combined of 43.5?", "context": "CREATE TABLE table_name_20 (co_2_g_km VARCHAR, mpg_uk_combined VARCHAR, l_100km_urban__cold_ VARCHAR, fuel_type VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT COUNT(l_100km_extra_urban) FROM table_name_52 WHERE mpg_uk_combined > 19.2 AND l_100km_combined < 5.7 AND fuel_type = \"diesel\" AND mpg_us_combined < 50", "question": "What's the total L/100km extra urban fueled by diesel, when the mpg-UK combines is more than 19.2, mpg-US is less than 50 and the L/100m combined is less than 5.7?", "context": "CREATE TABLE table_name_52 (l_100km_extra_urban VARCHAR, mpg_us_combined VARCHAR, fuel_type VARCHAR, mpg_uk_combined VARCHAR, l_100km_combined VARCHAR)"}, {"answer": "SELECT SUM(engine_capacity) FROM table_name_53 WHERE mpg_uk_urban__cold_ < 12.2 AND mpg_uk_extra_urban < 18.8 AND mpg_us_urban < 7.2", "question": "What's the engine capacity when the mpg-UK urban is less than 12.2, the mpg-UK extra urban is less than 18.8 and the mpg-US turban is less than 7.2?", "context": "CREATE TABLE table_name_53 (engine_capacity INTEGER, mpg_us_urban VARCHAR, mpg_uk_urban__cold_ VARCHAR, mpg_uk_extra_urban VARCHAR)"}, {"answer": "SELECT SUM(mpg_us_urban) FROM table_name_61 WHERE mpg_uk_urban__cold_ = 20 AND mpg_uk_extra_urban < 37.2", "question": "What's the mpg-US urban when the mpg-UK urban is 20 and the mpg-UK extra urban is less than 37.2?", "context": "CREATE TABLE table_name_61 (mpg_us_urban INTEGER, mpg_uk_urban__cold_ VARCHAR, mpg_uk_extra_urban VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE assist_pass = \"abby wambach\" AND date = \"2010-07-13\"", "question": "What was the score on 2010-07-13 when Abby wambach had the assist/pass?", "context": "CREATE TABLE table_name_56 (score VARCHAR, assist_pass VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_3 WHERE lineup = \"start\" AND date = \"2008-06-17\"", "question": "What is the location on 2008-06-17 when the lineup was start?", "context": "CREATE TABLE table_name_3 (location VARCHAR, lineup VARCHAR, date VARCHAR)"}, {"answer": "SELECT assist_pass FROM table_name_54 WHERE date = \"2008-01-16\" AND score = \"2-0\"", "question": "What is the assist/pass on 2008-01-16 when the score was 2-0?", "context": "CREATE TABLE table_name_54 (assist_pass VARCHAR, date VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_98 WHERE location = \"match reports\"", "question": "What is the result at match reports?", "context": "CREATE TABLE table_name_98 (result VARCHAR, location VARCHAR)"}, {"answer": "SELECT points FROM table_name_24 WHERE goals_against = \"222\"", "question": "What's the points if the goals against were 222?", "context": "CREATE TABLE table_name_24 (points VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT points FROM table_name_95 WHERE goals_against = \"260\"", "question": "What are the points if the goals against were 260?", "context": "CREATE TABLE table_name_95 (points VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT games FROM table_name_72 WHERE standing = \"involuntary suspension of season (hurricane rita)\"", "question": "What are the games with an Involuntary suspension of Season (hurricane Rita)?", "context": "CREATE TABLE table_name_72 (games VARCHAR, standing VARCHAR)"}, {"answer": "SELECT goals_for FROM table_name_44 WHERE lost = \"involuntary suspension of season (hurricane rita)\"", "question": "What are the goals for a lost of Involuntary suspension of Season (hurricane Rita)?", "context": "CREATE TABLE table_name_44 (goals_for VARCHAR, lost VARCHAR)"}, {"answer": "SELECT season FROM table_name_10 WHERE games = \"72\" AND lost = \"9\"", "question": "What's the season that had a lost of 9 with 72 games?", "context": "CREATE TABLE table_name_10 (season VARCHAR, games VARCHAR, lost VARCHAR)"}, {"answer": "SELECT format FROM table_name_42 WHERE location = \"taipei\"", "question": "What event did he compete in at Taipei?", "context": "CREATE TABLE table_name_42 (format VARCHAR, location VARCHAR)"}, {"answer": "SELECT season FROM table_name_81 WHERE event_type = \"grand prix\" AND location = \"kuala lumpur\"", "question": "In what season did he compete in the Grand Prix in Kuala Lumpur?", "context": "CREATE TABLE table_name_81 (season VARCHAR, event_type VARCHAR, location VARCHAR)"}, {"answer": "SELECT position FROM table_name_82 WHERE pick < 3 AND team = \"san diego\"", "question": "What is the position of the player with a pick less than 3 from team san diego?", "context": "CREATE TABLE table_name_82 (position VARCHAR, pick VARCHAR, team VARCHAR)"}, {"answer": "SELECT location FROM table_name_38 WHERE silver = \"david mccann\" AND gold = \"morgan fox\"", "question": "What location did david mccann receive a siver and morgan fox win the gold?", "context": "CREATE TABLE table_name_38 (location VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_71 WHERE year = \"2011\"", "question": "Who received the bronze in 2011?", "context": "CREATE TABLE table_name_71 (bronze VARCHAR, year VARCHAR)"}, {"answer": "SELECT silver FROM table_name_31 WHERE year = \"2006\"", "question": "Who received the silver in 2006?", "context": "CREATE TABLE table_name_31 (silver VARCHAR, year VARCHAR)"}, {"answer": "SELECT obese_children_and_adolescents FROM table_name_1 WHERE obesity_rank = 48", "question": "What's the count for obese children and adolescents ranked 48?", "context": "CREATE TABLE table_name_1 (obese_children_and_adolescents VARCHAR, obesity_rank VARCHAR)"}, {"answer": "SELECT SUM(obesity_rank) FROM table_name_74 WHERE obese_children_and_adolescents = \"14.2%\"", "question": "What's the rank when the obese children and adolescent count is 14.2%?", "context": "CREATE TABLE table_name_74 (obesity_rank INTEGER, obese_children_and_adolescents VARCHAR)"}, {"answer": "SELECT obesity_rank FROM table_name_87 WHERE overweight__incl_obese__adults = \"66.8%\" AND state_and_district_of_columbia = \"west virginia\"", "question": "What's the rank in West Virginia when the overweight adult was 66.8%?", "context": "CREATE TABLE table_name_87 (obesity_rank VARCHAR, overweight__incl_obese__adults VARCHAR, state_and_district_of_columbia VARCHAR)"}, {"answer": "SELECT reserved_for___sc___st__none_ FROM table_name_27 WHERE name = \"jawad\"", "question": "What is reserved for Jawad?", "context": "CREATE TABLE table_name_27 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT reserved_for___sc___st__none_ FROM table_name_65 WHERE constituency_number = \"228\"", "question": "What is reserved for the constituency of 228?", "context": "CREATE TABLE table_name_65 (reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)"}, {"answer": "SELECT county FROM table_name_68 WHERE ihsaa_class = \"aaa\" AND enrollment < 799", "question": "Which County has an IHSAA Class of aaa, and an Enrollment smaller than 799?", "context": "CREATE TABLE table_name_68 (county VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT location FROM table_name_34 WHERE mascot = \"tigers\"", "question": "Which Location has a Mascot of tigers?", "context": "CREATE TABLE table_name_34 (location VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_77 WHERE executive_appointments = 28 AND background < 37", "question": "What's the most overall when the executive appointments were 28 and the background was smaller than 37?", "context": "CREATE TABLE table_name_77 (overall INTEGER, executive_appointments VARCHAR, background VARCHAR)"}, {"answer": "SELECT record FROM table_name_77 WHERE score = \"21-16\"", "question": "What was the record at the game with a score of 21-16?", "context": "CREATE TABLE table_name_77 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_91 WHERE week > 4 AND score = \"42-28\"", "question": "Who was the opponent at the game with a score of 42-28 after week 4?", "context": "CREATE TABLE table_name_91 (opponent VARCHAR, week VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_12 WHERE opponent = \"at dallas cowboys\"", "question": "what is the result when the opponent is at dallas cowboys?", "context": "CREATE TABLE table_name_12 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(enrollment) FROM table_name_79 WHERE year_joined = 1958 AND location = \"clarksville\"", "question": "what is the enrollement for the year joined 1958 in clarksville?", "context": "CREATE TABLE table_name_79 (enrollment INTEGER, year_joined VARCHAR, location VARCHAR)"}, {"answer": "SELECT _number___county FROM table_name_13 WHERE ihsaa_class = \"aaa\" AND enrollment > 611 AND mascot = \"dragons\"", "question": "what is the #/county that is ihsaa class aaa, has enrollment higher than 611 and the dragons is the mascot?", "context": "CREATE TABLE table_name_13 (_number___county VARCHAR, mascot VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT country_of_release FROM table_name_98 WHERE year_of_release = 1977", "question": "Where was the title released in 1977?", "context": "CREATE TABLE table_name_98 (country_of_release VARCHAR, year_of_release VARCHAR)"}, {"answer": "SELECT MAX(year_of_release) FROM table_name_40 WHERE label = \"mca\"", "question": "What was the last year MCA had a Release?", "context": "CREATE TABLE table_name_40 (year_of_release INTEGER, label VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_60 WHERE team = \"buffalo bills\"", "question": "What is the lowest pick for the Buffalo Bills?", "context": "CREATE TABLE table_name_60 (pick INTEGER, team VARCHAR)"}, {"answer": "SELECT player FROM table_name_61 WHERE team = \"boston patriots\"", "question": "Which player played for the Boston Patriots?", "context": "CREATE TABLE table_name_61 (player VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_10 WHERE result = \"2\u20134\" AND visitor = \"bryn\u00e4s if\"", "question": "How much Attendance has a Result of 2\u20134, and a Visitor of bryn\u00e4s if?", "context": "CREATE TABLE table_name_10 (attendance INTEGER, result VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT result FROM table_name_37 WHERE round > 17", "question": "Which Result has a Round larger than 17?", "context": "CREATE TABLE table_name_37 (result VARCHAR, round INTEGER)"}, {"answer": "SELECT MIN(electorate) FROM table_name_57 WHERE political_party = \"conservative\" AND constituency = \"south west devon\" AND \"conservative\" > 2 AND name = \"plymstock radford\"", "question": "What is the smallest electorate for the Conservative party in South West Devon constituency, with over 2 conservatives and a name of Plymstock Radford?", "context": "CREATE TABLE table_name_57 (electorate INTEGER, name VARCHAR, political_party VARCHAR, constituency VARCHAR)"}, {"answer": "SELECT event FROM table_name_66 WHERE year > 2007 AND position = \"88th\"", "question": "What event was in a year later than 2007 and in the 88th position?", "context": "CREATE TABLE table_name_66 (event VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT notes FROM table_name_36 WHERE year = 2005", "question": "What are the notes for 2005?", "context": "CREATE TABLE table_name_36 (notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT owner FROM table_name_78 WHERE call_sign = \"cklf-fm\"", "question": "Who is the owner of CKLF-FM?", "context": "CREATE TABLE table_name_78 (owner VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_78 WHERE format = \"first nations community\"", "question": "What frequency is First Nations Community?", "context": "CREATE TABLE table_name_78 (frequency VARCHAR, format VARCHAR)"}, {"answer": "SELECT format FROM table_name_84 WHERE branding = \"cbc radio 2\"", "question": "What format is CBC Radio 2?", "context": "CREATE TABLE table_name_84 (format VARCHAR, branding VARCHAR)"}, {"answer": "SELECT owner FROM table_name_72 WHERE call_sign = \"cksb-8-fm\"", "question": "Who owns CKSB-8-FM?", "context": "CREATE TABLE table_name_72 (owner VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT format FROM table_name_44 WHERE branding = \"premi\u00e8re cha\u00eene\"", "question": "What format is Premi\u00e8re Cha\u00eene?", "context": "CREATE TABLE table_name_44 (format VARCHAR, branding VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_92 WHERE championship = \"olympics\" AND event = \"men's eight\" AND nation = \"canada\" AND result = \"silver\"", "question": "What year was olympics, Canada and the Men's Eight Event ended with a silver medal?", "context": "CREATE TABLE table_name_92 (year INTEGER, result VARCHAR, nation VARCHAR, championship VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_2 WHERE year = 2006", "question": "What event was in 2006?", "context": "CREATE TABLE table_name_2 (event VARCHAR, year VARCHAR)"}, {"answer": "SELECT championship FROM table_name_99 WHERE nation = \"usa\" AND year > 1994 AND result = \"5th\"", "question": "What championship was in the USA after 1994, and resulted in 5th place?", "context": "CREATE TABLE table_name_99 (championship VARCHAR, result VARCHAR, nation VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_65 WHERE nation = \"canada\" AND result = \"silver\" AND championship = \"olympics\" AND event = \"men's coxless pair\"", "question": "What year did Canada get a silver in the olympics in the Men's Coxless Pair event?", "context": "CREATE TABLE table_name_65 (year INTEGER, event VARCHAR, championship VARCHAR, nation VARCHAR, result VARCHAR)"}, {"answer": "SELECT location FROM table_name_98 WHERE school = \"lacrosse\"", "question": "Where is the lacrosse school located?", "context": "CREATE TABLE table_name_98 (location VARCHAR, school VARCHAR)"}, {"answer": "SELECT ihsaa_class FROM table_name_32 WHERE mascot = \"tigers\"", "question": "Which IHSAA Class has a Mascot of tigers?", "context": "CREATE TABLE table_name_32 (ihsaa_class VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT location FROM table_name_62 WHERE enrollment > 543", "question": "Which Location has an Enrollment larger than 543?", "context": "CREATE TABLE table_name_62 (location VARCHAR, enrollment INTEGER)"}, {"answer": "SELECT county FROM table_name_16 WHERE enrollment = 297", "question": "Which County has an Enrollment of 297?", "context": "CREATE TABLE table_name_16 (county VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT school FROM table_name_52 WHERE enrollment > 264 AND county = \"46 la porte\"", "question": "Which School has an Enrollment larger than 264, and a County of 46 la porte?", "context": "CREATE TABLE table_name_52 (school VARCHAR, enrollment VARCHAR, county VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_90 WHERE gold > 1 AND bronze > 6", "question": "What is the number of silver medals when there are more than 1 gold, and more than 6 bronze?", "context": "CREATE TABLE table_name_90 (silver INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_32 WHERE silver > 1 AND nation = \"yugoslavia\"", "question": "What is the total when the Yugoslavia number of silver won is more than 1?", "context": "CREATE TABLE table_name_32 (total INTEGER, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_16 WHERE week < 1", "question": "What is the total attendance before week 1?", "context": "CREATE TABLE table_name_16 (attendance INTEGER, week INTEGER)"}, {"answer": "SELECT release_date FROM table_name_81 WHERE title = \"sniffles and the bookworm\"", "question": "When was sniffles and the bookworm released?", "context": "CREATE TABLE table_name_81 (release_date VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_54 WHERE series = \"mm\" AND title = \"land of the midnight fun\"", "question": "When was land of the midnight fun in the mm series released?", "context": "CREATE TABLE table_name_54 (release_date VARCHAR, series VARCHAR, title VARCHAR)"}, {"answer": "SELECT series FROM table_name_53 WHERE release_date = \"1939-07-15\" AND production_num = \"8863\"", "question": "Which series had a release on 1939-07-15 with the 8863 production number?", "context": "CREATE TABLE table_name_53 (series VARCHAR, release_date VARCHAR, production_num VARCHAR)"}, {"answer": "SELECT director FROM table_name_2 WHERE title = \"hamateur night\"", "question": "Who directed hamateur night?", "context": "CREATE TABLE table_name_2 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT release_date FROM table_name_29 WHERE production_num = \"9105\"", "question": "When was Production Number 9105 released?", "context": "CREATE TABLE table_name_29 (release_date VARCHAR, production_num VARCHAR)"}, {"answer": "SELECT class FROM table_name_8 WHERE frequency = \"90.1 fm\"", "question": "What Class has a Frequency of 90.1 FM?", "context": "CREATE TABLE table_name_8 (class VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT recnet FROM table_name_51 WHERE frequency = \"91.1 fm\"", "question": "What is listed for the RECNet that also has a Frequency of 91.1 FM?", "context": "CREATE TABLE table_name_51 (recnet VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT class FROM table_name_42 WHERE identifier = \"cbfx-fm-2\"", "question": "What Class has the Identifier fo CBFX-FM-2?", "context": "CREATE TABLE table_name_42 (class VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT recnet FROM table_name_51 WHERE class = \"b\" AND city_of_license = \"rouyn-noranda\"", "question": "What is the RECNet with a Class of B and the City of License of Rouyn-Noranda?", "context": "CREATE TABLE table_name_51 (recnet VARCHAR, class VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT class FROM table_name_21 WHERE identifier = \"cbfx-fm-6\"", "question": "What Class has the Identifier of CBFX-FM-6?", "context": "CREATE TABLE table_name_21 (class VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_53 WHERE identifier = \"cbfx-fm-6\"", "question": "What Frequency has the Identifier of CBFX-FM-6?", "context": "CREATE TABLE table_name_53 (frequency VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_23 WHERE silver < 1 AND nation = \"belgium\"", "question": "What is the total number of gold with less than 1 silver, from Belgium?", "context": "CREATE TABLE table_name_23 (gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_89 WHERE points < 15 AND name = \"sc forst\" AND drawn < 0", "question": "Which Lost has Points smaller than 15, and a Name of sc forst, and Drawn smaller than 0?", "context": "CREATE TABLE table_name_89 (lost INTEGER, drawn VARCHAR, points VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_78 WHERE lost = 8 AND played > 14", "question": "How much Position has a Lost of 8, and a Played larger than 14?", "context": "CREATE TABLE table_name_78 (position INTEGER, lost VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_80 WHERE lost > 8 AND points < 7", "question": "Which Drawn has a Lost larger than 8, and Points smaller than 7?", "context": "CREATE TABLE table_name_80 (drawn INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_13 WHERE name = \"erc lechbruck\" AND points < 17", "question": "How much Drawn has a Name of erc lechbruck, and Points smaller than 17?", "context": "CREATE TABLE table_name_13 (drawn VARCHAR, name VARCHAR, points VARCHAR)"}, {"answer": "SELECT town FROM table_name_81 WHERE municipality = \"mol\u0117tai district municipality\" AND population__2001_ < 470 AND population_rank = 187", "question": "What town is from the mol\u0117tai district municipality and has a population rank of 187 and a population less than 470 in 2001?", "context": "CREATE TABLE table_name_81 (town VARCHAR, population_rank VARCHAR, municipality VARCHAR, population__2001_ VARCHAR)"}, {"answer": "SELECT county FROM table_name_78 WHERE population_rank = 205", "question": "What county is the town with a rank of 205 located in?", "context": "CREATE TABLE table_name_78 (county VARCHAR, population_rank VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_name_95 WHERE percentage = \"5.02%\"", "question": "What is the fewest draws for percentages of 5.02%?", "context": "CREATE TABLE table_name_95 (draw INTEGER, percentage VARCHAR)"}, {"answer": "SELECT position FROM table_name_28 WHERE team = \"denver broncos\"", "question": "What is the position of the player from the denver broncos?", "context": "CREATE TABLE table_name_28 (position VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_12 WHERE team = \"kansas city chiefs\"", "question": "What is the average pick of the kansas city chiefs?", "context": "CREATE TABLE table_name_12 (pick INTEGER, team VARCHAR)"}, {"answer": "SELECT pick FROM table_name_70 WHERE college = \"wiley\"", "question": "What is the pick of wiley college?", "context": "CREATE TABLE table_name_70 (pick VARCHAR, college VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_53 WHERE home_team = \"alfreton town\"", "question": "What was the attendance for the game with alfreton town as the home team?", "context": "CREATE TABLE table_name_53 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE away_team = \"stafford rangers\"", "question": "What was the score of the game where stafford rangers was the away team?", "context": "CREATE TABLE table_name_92 (score VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_29 WHERE tie_no = \"1\"", "question": "Who was the home team that has a tie no of 1?", "context": "CREATE TABLE table_name_29 (home_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_28 WHERE away_team = \"southport\"", "question": "What is the tie no that has southport as the away team?", "context": "CREATE TABLE table_name_28 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_53 WHERE home_team = \"king's lynn\"", "question": "What was the attendance for the game that had the king's lynn as the home team?", "context": "CREATE TABLE table_name_53 (attendance VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_56 WHERE tie_no = \"1\"", "question": "What was the score for the game with a tie no of 1?", "context": "CREATE TABLE table_name_56 (score VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_53 WHERE date = \"december 21\"", "question": "What is the game number on December 21?", "context": "CREATE TABLE table_name_53 (game VARCHAR, date VARCHAR)"}, {"answer": "SELECT game FROM table_name_71 WHERE record = \"19-15\"", "question": "What is the Game with a Record of 19-15?", "context": "CREATE TABLE table_name_71 (game VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE game > 31 AND opponent = \"detroit\"", "question": "What is the Date of the game against Detroit in game 31 or after?", "context": "CREATE TABLE table_name_59 (date VARCHAR, game VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_42 WHERE total = 289", "question": "During which years did the golfer with the total of 289 win?", "context": "CREATE TABLE table_name_42 (year_s__won VARCHAR, total VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_84 WHERE finish = \"t56\"", "question": "What was the To par for the player who finished t56?", "context": "CREATE TABLE table_name_84 (to_par VARCHAR, finish VARCHAR)"}, {"answer": "SELECT country FROM table_name_53 WHERE total = 294", "question": "Which county did the player with a total of 294 represent?", "context": "CREATE TABLE table_name_53 (country VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_72 WHERE country = \"united states\" AND player = \"phil mickelson\"", "question": "What was the total for united states player phil mickelson?", "context": "CREATE TABLE table_name_72 (total INTEGER, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_52 WHERE rank < 4 AND time < 24.42", "question": "With a less than 4 rank, and a time less than 24.42 what is the smallest lane?", "context": "CREATE TABLE table_name_52 (lane INTEGER, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(time) FROM table_name_8 WHERE nationality = \"united states\" AND lane < 5", "question": "The swimmer from the United States in a lane less than 5, had what as the average time?", "context": "CREATE TABLE table_name_8 (time INTEGER, nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_3 WHERE lane < 2", "question": "What nationality is the swimmer that is in the lane that is less than 2?", "context": "CREATE TABLE table_name_3 (nationality VARCHAR, lane INTEGER)"}, {"answer": "SELECT MAX(losses) FROM table_name_15 WHERE draws < 0", "question": "Which Losses have Draws smaller than 0?", "context": "CREATE TABLE table_name_15 (losses INTEGER, draws INTEGER)"}, {"answer": "SELECT MAX(losses) FROM table_name_28 WHERE draws > 0", "question": "Which Losses have Draws larger than 0?", "context": "CREATE TABLE table_name_28 (losses INTEGER, draws INTEGER)"}, {"answer": "SELECT SUM(against) FROM table_name_66 WHERE losses < 7 AND wimmera_fl = \"horsham\"", "question": "How much Against has Losses smaller than 7, and a Wimmera FL of horsham?", "context": "CREATE TABLE table_name_66 (against INTEGER, losses VARCHAR, wimmera_fl VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_83 WHERE wins > 7 AND wimmera_fl = \"nhill\" AND losses > 8", "question": "How many Draws have Wins larger than 7, and a Wimmera FL of nhill, and Losses larger than 8?", "context": "CREATE TABLE table_name_83 (draws INTEGER, losses VARCHAR, wins VARCHAR, wimmera_fl VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_52 WHERE score = \"3-6, 2-6\"", "question": "What was the outcome of the match with a score of 3-6, 2-6?", "context": "CREATE TABLE table_name_52 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_70 WHERE opponent = \"magnus larsson\"", "question": "What was the tournament that had byron black playing against magnus larsson?", "context": "CREATE TABLE table_name_70 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_35 WHERE score = \"6-7, 4-6\"", "question": "What tournament had a game with a score of 6-7, 4-6?", "context": "CREATE TABLE table_name_35 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_76 WHERE round < 7 AND opponent = \"melbourne storm\"", "question": "what is the result when the round is less than 7 and the opponent is melbourne storm?", "context": "CREATE TABLE table_name_76 (result VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT venue FROM table_name_58 WHERE result = \"loss\" AND opponent = \"st george-illawarra dragons\"", "question": "what is the venue when the result is loss and the opponent is st george-illawarra dragons?", "context": "CREATE TABLE table_name_58 (venue VARCHAR, result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT silver FROM table_name_15 WHERE year = 1982", "question": "Who won silver in 1982?", "context": "CREATE TABLE table_name_15 (silver VARCHAR, year VARCHAR)"}, {"answer": "SELECT time FROM table_name_7 WHERE rank = 1", "question": "What is the Time of the Rowers in Rank 1?", "context": "CREATE TABLE table_name_7 (time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT time FROM table_name_36 WHERE country = \"belgium\"", "question": "What is the Time of the Rowers from Belgium?", "context": "CREATE TABLE table_name_36 (time VARCHAR, country VARCHAR)"}, {"answer": "SELECT time FROM table_name_56 WHERE lane = 7", "question": "What time does lane 7 have?", "context": "CREATE TABLE table_name_56 (time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT employed FROM table_name_74 WHERE position_held = \"mathematics & prefect master\"", "question": "What are the years employed shown for mathematics & prefect master?", "context": "CREATE TABLE table_name_74 (employed VARCHAR, position_held VARCHAR)"}, {"answer": "SELECT citation FROM table_name_6 WHERE employed = \"1970\u20131996\"", "question": "What citation is shown for the employed years of 1970\u20131996?", "context": "CREATE TABLE table_name_6 (citation VARCHAR, employed VARCHAR)"}, {"answer": "SELECT name FROM table_name_48 WHERE employed = \"1970\u20132005\"", "question": "What is the name of the person employed 1970\u20132005?", "context": "CREATE TABLE table_name_48 (name VARCHAR, employed VARCHAR)"}, {"answer": "SELECT time FROM table_name_28 WHERE rank < 4 AND country = \"finland\"", "question": "What is the Time of the Rowers from Finland with a Rank of less than 4?", "context": "CREATE TABLE table_name_28 (time VARCHAR, rank VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_56 WHERE time = \"7:30.92\"", "question": "What is the Rank of the Rowers with a Time of 7:30.92?", "context": "CREATE TABLE table_name_56 (rank INTEGER, time VARCHAR)"}, {"answer": "SELECT notes FROM table_name_16 WHERE country = \"finland\"", "question": "What are the Notes of the Country of finland?", "context": "CREATE TABLE table_name_16 (notes VARCHAR, country VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_31 WHERE week = 12", "question": "Who were the opponents for week 12?", "context": "CREATE TABLE table_name_31 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT polling_institute FROM table_name_1 WHERE lead = \"6%\"", "question": "Which polling institute showed a lead of 6%?", "context": "CREATE TABLE table_name_1 (polling_institute VARCHAR, lead VARCHAR)"}, {"answer": "SELECT date_s__released FROM table_name_76 WHERE democratic_alternative = \"1%\" AND labour = \"34%\"", "question": "Which date released had a Democratic Alternative value of 1% and Labour of 34%?", "context": "CREATE TABLE table_name_76 (date_s__released VARCHAR, democratic_alternative VARCHAR, labour VARCHAR)"}, {"answer": "SELECT nationalist FROM table_name_8 WHERE undecided__no_answer = \"29.2%\"", "question": "What is the Nationalist share of the poll for the response in which Undecided/No Answer received 29.2%?", "context": "CREATE TABLE table_name_8 (nationalist VARCHAR, undecided__no_answer VARCHAR)"}, {"answer": "SELECT democratic_alternative FROM table_name_31 WHERE polling_institute = \"malta today\"", "question": "What is the value of the Democratic Alternative for the poll released by Malta Today?", "context": "CREATE TABLE table_name_31 (democratic_alternative VARCHAR, polling_institute VARCHAR)"}, {"answer": "SELECT polling_institute FROM table_name_46 WHERE lead = \"12%\" AND labour = \"40.2%\"", "question": "Which polling institute showed a lead of 12% and a Labour share of the poll at 40.2%?", "context": "CREATE TABLE table_name_46 (polling_institute VARCHAR, lead VARCHAR, labour VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_75 WHERE opponent = \"minnesota vikings\"", "question": "What is the lowest week that has Minnesota Vikings as the opponent?", "context": "CREATE TABLE table_name_75 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_40 WHERE date = \"december 6, 1964\"", "question": "What opponent has December 6, 1964 as the date?", "context": "CREATE TABLE table_name_40 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_72 WHERE week < 3 AND date = \"september 18, 1965\"", "question": "What was the attendance of the game on September 18, 1965 before week 3?", "context": "CREATE TABLE table_name_72 (attendance VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_32 WHERE week < 3 AND attendance = \"53,658\"", "question": "What was the result of the game before week 3 with an attendance of 53,658?", "context": "CREATE TABLE table_name_32 (result VARCHAR, week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_3 WHERE date = \"september 26, 1965\"", "question": "What was the earliest week on September 26, 1965?", "context": "CREATE TABLE table_name_3 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_79 WHERE name = \"one south broad\"", "question": "What is the total time for one south broad?", "context": "CREATE TABLE table_name_79 (year INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_33 WHERE year < 1973 AND address = \"123 south broad street\"", "question": "What is the 123 south broad street address name before 1973?", "context": "CREATE TABLE table_name_33 (name VARCHAR, year VARCHAR, address VARCHAR)"}, {"answer": "SELECT competition FROM table_name_98 WHERE goal < 2", "question": "Which competition has goals less than 2?", "context": "CREATE TABLE table_name_98 (competition VARCHAR, goal INTEGER)"}, {"answer": "SELECT result FROM table_name_59 WHERE goal > 4", "question": "What's the result of a goal larger than 4?", "context": "CREATE TABLE table_name_59 (result VARCHAR, goal INTEGER)"}, {"answer": "SELECT type FROM table_name_44 WHERE course = \"marostica to bibione\"", "question": "tell me the type that has the marostica to bibione course.", "context": "CREATE TABLE table_name_44 (type VARCHAR, course VARCHAR)"}, {"answer": "SELECT winner FROM table_name_32 WHERE date = \"29 may\"", "question": "who won on 29 may?", "context": "CREATE TABLE table_name_32 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT term FROM table_name_55 WHERE hometown = \"ester creek\"", "question": "What is the term for hometown Ester Creek?", "context": "CREATE TABLE table_name_55 (term VARCHAR, hometown VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_81 WHERE total = 5 AND rank > 1", "question": "What is the number of Gold medals for the Nation with a Total of 5 and Rank larger than 1?", "context": "CREATE TABLE table_name_81 (gold INTEGER, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(silver) FROM table_name_26 WHERE bronze > 1 AND rank < 5", "question": "What is the total number of Silver for the Nation with more than 1 Bronze and a Rank less than 5?", "context": "CREATE TABLE table_name_26 (silver VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT round FROM table_name_92 WHERE res = \"loss\" AND event = \"ufc 118\"", "question": "In what round was the loss at ufc 118?", "context": "CREATE TABLE table_name_92 (round VARCHAR, res VARCHAR, event VARCHAR)"}, {"answer": "SELECT MIN(decile) FROM table_name_60 WHERE area = \"otumoetai\"", "question": "What is the smallest decile with an Area of otumoetai?", "context": "CREATE TABLE table_name_60 (decile INTEGER, area VARCHAR)"}, {"answer": "SELECT decile FROM table_name_62 WHERE area = \"welcome bay\" AND authority = \"state\"", "question": "Which decile has an Area of welcome bay, and an Authority of state?", "context": "CREATE TABLE table_name_62 (decile VARCHAR, area VARCHAR, authority VARCHAR)"}, {"answer": "SELECT SUM(decile) FROM table_name_93 WHERE gender = \"coed\" AND authority = \"state\" AND name = \"mount maunganui school\"", "question": "How many deciles have a Gender of coed, an Authority of state, and a Name of mount maunganui school?", "context": "CREATE TABLE table_name_93 (decile INTEGER, name VARCHAR, gender VARCHAR, authority VARCHAR)"}, {"answer": "SELECT name FROM table_name_96 WHERE decile = 5 AND area = \"tauranga\"", "question": "Which name has a Decile of 5, and an Area of tauranga?", "context": "CREATE TABLE table_name_96 (name VARCHAR, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT authority FROM table_name_21 WHERE gender = \"coed\" AND decile < 6 AND area = \"merivale\"", "question": "Which Authority has a Gender of coed, a Decile smaller than 6, and an Area of merivale?", "context": "CREATE TABLE table_name_21 (authority VARCHAR, area VARCHAR, gender VARCHAR, decile VARCHAR)"}, {"answer": "SELECT MIN(decile) FROM table_name_70 WHERE name = \"st mary's catholic school\"", "question": "What is the smallest decile with a Name of st mary's catholic school?", "context": "CREATE TABLE table_name_70 (decile INTEGER, name VARCHAR)"}, {"answer": "SELECT AVG(births__000s_) FROM table_name_14 WHERE total_fertility_rate = \"na\" AND natural_growth < 2.5", "question": "What is the average birth rate that has a total fertility rate of na, and a natural growth smaller than 2.5?", "context": "CREATE TABLE table_name_14 (births__000s_ INTEGER, total_fertility_rate VARCHAR, natural_growth VARCHAR)"}, {"answer": "SELECT deaths FROM table_name_41 WHERE natural_growth < 3.4 AND total_fertility_rate = \"1.63\"", "question": "What was the amount of deaths that had a natural growth smaller than 3.4, and a total fertility rate of 1.63?", "context": "CREATE TABLE table_name_41 (deaths VARCHAR, natural_growth VARCHAR, total_fertility_rate VARCHAR)"}, {"answer": "SELECT AVG(births__000s_) FROM table_name_38 WHERE deaths = 0.4", "question": "What is the average births that had a death rate of 0.4", "context": "CREATE TABLE table_name_38 (births__000s_ INTEGER, deaths VARCHAR)"}, {"answer": "SELECT SUM(births__000s_) FROM table_name_59 WHERE deaths > 7.6 AND year = \"1990-2009\"", "question": "What was the amount of Births (000s) that had a death rate larger than 7.6, and a Year of 1990-2009?", "context": "CREATE TABLE table_name_59 (births__000s_ INTEGER, deaths VARCHAR, year VARCHAR)"}, {"answer": "SELECT total_fertility_rate FROM table_name_60 WHERE deaths > 7.8", "question": "What was the total fertility rate that had a death rate larger than 7.8?", "context": "CREATE TABLE table_name_60 (total_fertility_rate VARCHAR, deaths INTEGER)"}, {"answer": "SELECT votes FROM table_name_78 WHERE occupation = \"security guard\"", "question": "How many votes did the security guard get?", "context": "CREATE TABLE table_name_78 (votes VARCHAR, occupation VARCHAR)"}, {"answer": "SELECT AVG(2005) FROM table_name_38 WHERE 2008 > 0 AND 2007 > 310 AND average_annual = 767 AND total > 4 OFFSET 597", "question": "What is the average value for 2005, when the value for 2008 is greater than 0, when the value for 2007 is greater than 310, when the Average annual is 767, and when the Total is greater than 4,597?", "context": "CREATE TABLE table_name_38 (total VARCHAR, average_annual VARCHAR)"}, {"answer": "SELECT AVG(2005) FROM table_name_32 WHERE average_annual = 767", "question": "What is the average value for 2005, when the value for Average annual is 767?", "context": "CREATE TABLE table_name_32 (average_annual VARCHAR)"}, {"answer": "SELECT year FROM table_name_83 WHERE tournament = \"1st division el salvador\" AND finish = \"champion\" AND team = \"fas\"", "question": "In what Year was 1st Division El Salvador with a Finish of Champion and a Team of Fas?", "context": "CREATE TABLE table_name_83 (year VARCHAR, team VARCHAR, tournament VARCHAR, finish VARCHAR)"}, {"answer": "SELECT year FROM table_name_99 WHERE finish = \"champions\"", "question": "In what Year was the Finish Champions?", "context": "CREATE TABLE table_name_99 (year VARCHAR, finish VARCHAR)"}, {"answer": "SELECT finish FROM table_name_25 WHERE team = \"platense municipal zacatecoluca\" AND tournament = \"1st division el salvador\"", "question": "During the Tournament of 1st Division El Salvador, what was the Finish for the Team of Platense Municipal Zacatecoluca?", "context": "CREATE TABLE table_name_25 (finish VARCHAR, team VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT role FROM table_name_82 WHERE tournament = \"1st division honduras\"", "question": "What is the Role in the 1st Division Honduras Tournament?", "context": "CREATE TABLE table_name_82 (role VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_21 WHERE year = \"1986\"", "question": "What is the Tournament in the Year of 1986?", "context": "CREATE TABLE table_name_21 (tournament VARCHAR, year VARCHAR)"}, {"answer": "SELECT role FROM table_name_65 WHERE team = \"platense municipal zacatecoluca\" AND tournament = \"torneo fraternidad/uncaf club championship\"", "question": "During the Tournament of Torneo Fraternidad/UNCAF Club championship, what is the Role of the Platense Municipal Zacatecoluca Team?", "context": "CREATE TABLE table_name_65 (role VARCHAR, team VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT record FROM table_name_61 WHERE opponent = \"yankees\" AND loss = \"mulholland (5-6)\"", "question": "What is the record of teams that play the yankees, and lose at mulholland (5-6)", "context": "CREATE TABLE table_name_61 (record VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_80 WHERE gold = 0 AND silver > 0 AND nation = \"ukraine\"", "question": "Which total is highest with 0 gold and more than 0 silver, in Ukraine?", "context": "CREATE TABLE table_name_80 (total INTEGER, nation VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_55 WHERE silver = 2 AND total > 10", "question": "What is the total rank with more than 2 silver and total larger than 10?", "context": "CREATE TABLE table_name_55 (rank INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_86 WHERE total > 2 AND gold < 0", "question": "What is the total rank with a total larger than 2, and less than 0 gold", "context": "CREATE TABLE table_name_86 (rank INTEGER, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_17 WHERE gold < 0", "question": "Which is the highest bronze with gold less than 0?", "context": "CREATE TABLE table_name_17 (bronze INTEGER, gold INTEGER)"}, {"answer": "SELECT SUM(total) FROM table_name_89 WHERE rank < 5 AND gold > 5 AND bronze > 8", "question": "What is the total with a rank less than 5, gold larger than 5 and bronze larger than 8?", "context": "CREATE TABLE table_name_89 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_3 WHERE result = \"1st\" AND extra = \"4 x 400 m relay\"", "question": "Result of 1st, and an Extra of 4 x 400 m relay is in what lowest year?", "context": "CREATE TABLE table_name_3 (year INTEGER, result VARCHAR, extra VARCHAR)"}, {"answer": "SELECT venue FROM table_name_41 WHERE year < 2007 AND result = \"1st\"", "question": "a Year smaller than 2007, and a Result of 1st is in what venue?", "context": "CREATE TABLE table_name_41 (venue VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_90 WHERE venue = \"melbourne , australia\" AND extra = \"200 m\"", "question": "Venue of melbourne , australia, and a Extra of 200 m has what results?", "context": "CREATE TABLE table_name_90 (result VARCHAR, venue VARCHAR, extra VARCHAR)"}, {"answer": "SELECT year FROM table_name_10 WHERE result = \"1st\" AND venue = \"melbourne , australia\" AND extra = \"100 m\"", "question": "Result of 1st, and a Venue of melbourne , australia, and a Extra of 100 m happened in which year?", "context": "CREATE TABLE table_name_10 (year VARCHAR, extra VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT rectifier FROM table_name_69 WHERE det_pre_amp = \"x\" AND _number_tubes = \"4\"", "question": "Name the rectifier for Det/Pre-amp of x and # tubes of 4", "context": "CREATE TABLE table_name_69 (rectifier VARCHAR, det_pre_amp VARCHAR, _number_tubes VARCHAR)"}, {"answer": "SELECT det_pre_amp FROM table_name_74 WHERE _number_tubes = \"8\"", "question": "Name the det/pre-amp with # of tubes of 8", "context": "CREATE TABLE table_name_74 (det_pre_amp VARCHAR, _number_tubes VARCHAR)"}, {"answer": "SELECT det_pre_amp FROM table_name_56 WHERE _number_tubes = \"4\" AND rectifier = \"x\"", "question": "Name the det/pre-amp with # tubes of 4 and rectifier of x", "context": "CREATE TABLE table_name_56 (det_pre_amp VARCHAR, _number_tubes VARCHAR, rectifier VARCHAR)"}, {"answer": "SELECT _number_tubes FROM table_name_30 WHERE audio_amp = \"x\"", "question": "Name the # tubes with audio amp of x", "context": "CREATE TABLE table_name_30 (_number_tubes VARCHAR, audio_amp VARCHAR)"}, {"answer": "SELECT competition FROM table_name_84 WHERE goal = 3", "question": "What type of Competition has a Goal of 3?", "context": "CREATE TABLE table_name_84 (competition VARCHAR, goal VARCHAR)"}, {"answer": "SELECT competition FROM table_name_17 WHERE date = \"july 1, 2000\"", "question": "Which Competition has the Date July 1, 2000?", "context": "CREATE TABLE table_name_17 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT years FROM table_name_46 WHERE representative = \"james robert jones\"", "question": "Which years did James Robert Jones serve?", "context": "CREATE TABLE table_name_46 (years VARCHAR, representative VARCHAR)"}, {"answer": "SELECT years FROM table_name_40 WHERE state = \"new hampshire\" AND representative = \"james hutchins johnson\"", "question": "James Hutchins Johnson, from New Hampshire, served during what years?", "context": "CREATE TABLE table_name_40 (years VARCHAR, state VARCHAR, representative VARCHAR)"}, {"answer": "SELECT team_name FROM table_name_97 WHERE losses = 6 AND games > 18", "question": "Who is the team that has played more than 18 games and has 6 losses?", "context": "CREATE TABLE table_name_97 (team_name VARCHAR, losses VARCHAR, games VARCHAR)"}, {"answer": "SELECT season FROM table_name_19 WHERE points < 16 AND losses = 18", "question": "Which season did the Burnaby Lakers have less than 16 points and less than 18 losses?", "context": "CREATE TABLE table_name_19 (season VARCHAR, points VARCHAR, losses VARCHAR)"}, {"answer": "SELECT team_name FROM table_name_23 WHERE losses > 15 AND season = \"1988\"", "question": "Which team had more than 15 losses in 1988?", "context": "CREATE TABLE table_name_23 (team_name VARCHAR, losses VARCHAR, season VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_11 WHERE team_name = \"burnaby lakers\" AND points = 8 AND season = \"1998\" AND games < 25", "question": "How many losses did the Burnaby Lakers accumulate when they scored 8 points in 1998 playing less than 25 games?", "context": "CREATE TABLE table_name_11 (losses INTEGER, games VARCHAR, season VARCHAR, team_name VARCHAR, points VARCHAR)"}, {"answer": "SELECT school_club_team FROM table_name_53 WHERE position = \"dl\"", "question": "What was the school for the player who was a DL?", "context": "CREATE TABLE table_name_53 (school_club_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_8 WHERE player = \"ian hazlett\"", "question": "Which pick was used on Ian Hazlett?", "context": "CREATE TABLE table_name_8 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT thumb_stick FROM table_name_37 WHERE basic_shape = \"curved\" AND backlit = \"yes\" AND supplier = \"genius\"", "question": "Which Thumb stick has a Basic shape of curved, a Backlit of yes, and a Supplier of genius?", "context": "CREATE TABLE table_name_37 (thumb_stick VARCHAR, supplier VARCHAR, basic_shape VARCHAR, backlit VARCHAR)"}, {"answer": "SELECT thumb_stick FROM table_name_76 WHERE wrist_pad = \"no\" AND supplier = \"sharkoon\"", "question": "Which Thumb stick has a Wrist pad of no, and a Supplier of sharkoon?", "context": "CREATE TABLE table_name_76 (thumb_stick VARCHAR, wrist_pad VARCHAR, supplier VARCHAR)"}, {"answer": "SELECT keys__x_modes_ FROM table_name_55 WHERE supplier = \"wolfking\"", "question": "Which keys (x modes) have a Supplier of wolfking?", "context": "CREATE TABLE table_name_55 (keys__x_modes_ VARCHAR, supplier VARCHAR)"}, {"answer": "SELECT supplier FROM table_name_16 WHERE basic_shape = \"flat\" AND wrist_pad = \"no\" AND keys__x_modes_ = \"25+\"", "question": "Which Supplier have a Basic shape of flat, a Wrist pad of no, and Keys (x modes) of 25+?", "context": "CREATE TABLE table_name_16 (supplier VARCHAR, keys__x_modes_ VARCHAR, basic_shape VARCHAR, wrist_pad VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE time = \"3:59\"", "question": "Who was the opponent with the time 3:59?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT israel_bowl FROM table_name_65 WHERE date = \"march 30, 2012\"", "question": "Name the Israel Bowl for march 30, 2012", "context": "CREATE TABLE table_name_65 (israel_bowl VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_47 WHERE date = \"march 28, 2008\"", "question": "Name the venue for march 28, 2008", "context": "CREATE TABLE table_name_47 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT champion FROM table_name_33 WHERE israel_bowl = \"iv\"", "question": "Name the champion for israel bowl of iv", "context": "CREATE TABLE table_name_33 (champion VARCHAR, israel_bowl VARCHAR)"}, {"answer": "SELECT season FROM table_name_56 WHERE runner_up = \"judean rebels\"", "question": "Name the season for runner up of judean rebels", "context": "CREATE TABLE table_name_56 (season VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT date__from_ FROM table_name_46 WHERE name_of_system = \"hsm (1883\u20131910) gt (1915\u20131922)\" AND traction_type = \"steam\"", "question": "On what date did the event begin that had a steam traction type and used the system named HSM (1883\u20131910) GT (1915\u20131922)?", "context": "CREATE TABLE table_name_46 (date__from_ VARCHAR, name_of_system VARCHAR, traction_type VARCHAR)"}, {"answer": "SELECT date__from_ FROM table_name_66 WHERE location = \"zaltbommel\"", "question": "On what date did the event at Zaltbommel begin?", "context": "CREATE TABLE table_name_66 (date__from_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_5 WHERE name_of_system = \"atm (1880\u20131911) geta (1911\u20131944)\" AND traction_type = \"electric\"", "question": "At what location did the event that used electric traction and system name ATM (1880\u20131911) GETA (1911\u20131944) occur?", "context": "CREATE TABLE table_name_5 (location VARCHAR, name_of_system VARCHAR, traction_type VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_93 WHERE country = \"england\" AND place = \"t1\"", "question": "What is the to par of the player from England with a t1 place?", "context": "CREATE TABLE table_name_93 (to_par VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_43 WHERE score = 69 - 70 - 67 = 206 AND player = \"sergio garc\u00eda\"", "question": "What is the country sergio garc\u00eda, who has a score of 69-70-67=206, is from?", "context": "CREATE TABLE table_name_43 (country VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_38 WHERE country = \"united states\" AND place = \"t5\"", "question": "What is the to par of the player from the United States with a t5 place?", "context": "CREATE TABLE table_name_38 (to_par VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_44 WHERE country = \"united states\" AND score = 69 - 68 - 65 = 202", "question": "What is the to par of the player from the United States with a score of 69-68-65=202?", "context": "CREATE TABLE table_name_44 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(lane) FROM table_name_88 WHERE time = \"2:01.51\" AND rank < 4", "question": "How many lanes had a rank smaller than 4 and a time of 2:01.51?", "context": "CREATE TABLE table_name_88 (lane VARCHAR, time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT time FROM table_name_39 WHERE lane = 7", "question": "What was the time of the person in lane 7?", "context": "CREATE TABLE table_name_39 (time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MAX(employees) FROM table_name_50 WHERE company = \"nokia\" AND rank < 3", "question": "How many employees at nokia, ranked under 3?", "context": "CREATE TABLE table_name_50 (employees INTEGER, company VARCHAR, rank VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_2 WHERE moving_to = \"shakhtar donetsk\" AND rank = 8", "question": "The person with a rank of 8 moving to Shakhtar Donetsk was moving from what Ukrainian Football Club as a transfer?", "context": "CREATE TABLE table_name_2 (moving_from VARCHAR, moving_to VARCHAR, rank VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_39 WHERE year > 2005 AND rank > 5 AND name = \"isma\u00ebl bangoura\"", "question": "Isma\u00ebl Bangoura with a rank larger than 5 after the year 2005 was moving to what football club?", "context": "CREATE TABLE table_name_39 (moving_to VARCHAR, name VARCHAR, year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_55 WHERE rank = 9", "question": "The player with a rank of 9, made a move from what football club?", "context": "CREATE TABLE table_name_55 (moving_from VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_37 WHERE year > 2005 AND moving_from = \"nancy\"", "question": "Moving from Nancy after 2005, what is listed as the lowest rank?", "context": "CREATE TABLE table_name_37 (rank INTEGER, year VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT year FROM table_name_64 WHERE rank < 8 AND moving_from = \"olympiacos\"", "question": "What is the listed year that has a rank smaller than 8 and moving from Olympiacos?", "context": "CREATE TABLE table_name_64 (year VARCHAR, rank VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT home_venue FROM table_name_63 WHERE state = \"goa\" AND city = \"salcette\"", "question": "Which team plays in Goa, Salcette?", "context": "CREATE TABLE table_name_63 (home_venue VARCHAR, state VARCHAR, city VARCHAR)"}, {"answer": "SELECT home_venue FROM table_name_95 WHERE team = \"bengaluru fc\"", "question": "Where is the home venue of Bengaluru FC?", "context": "CREATE TABLE table_name_95 (home_venue VARCHAR, team VARCHAR)"}, {"answer": "SELECT state FROM table_name_43 WHERE team = \"mumbai\"", "question": "What is the state of the team who plays in Mumbai?", "context": "CREATE TABLE table_name_43 (state VARCHAR, team VARCHAR)"}, {"answer": "SELECT city FROM table_name_31 WHERE state = \"maharashtra\" AND team = \"pune\"", "question": "Where is the city of Maharashtra's Pune team?", "context": "CREATE TABLE table_name_31 (city VARCHAR, state VARCHAR, team VARCHAR)"}, {"answer": "SELECT money_requested__\u00a3_ FROM table_name_10 WHERE company_or_product_name = \"basstoneslap\"", "question": "How much Money is requested by BassToneSlap?", "context": "CREATE TABLE table_name_10 (money_requested__\u00a3_ VARCHAR, company_or_product_name VARCHAR)"}, {"answer": "SELECT investing_dragon_s_ FROM table_name_43 WHERE money_requested__\u00a3_ = \"100,000\" AND entrepreneur_s_ = \"kay russell\"", "question": "Which Investing Dragon has requested \u00a3100,000 and is supported by Entrepreneur Kay Russell?", "context": "CREATE TABLE table_name_43 (investing_dragon_s_ VARCHAR, money_requested__\u00a3_ VARCHAR, entrepreneur_s_ VARCHAR)"}, {"answer": "SELECT company_or_product_name FROM table_name_83 WHERE episode = \"episode 3\" AND investing_dragon_s_ = \"deborah meaden\"", "question": "What is the name of the Company or Product that is Episode 3 and is suppoted by Investing Dragon Deborah Meaden?", "context": "CREATE TABLE table_name_83 (company_or_product_name VARCHAR, episode VARCHAR, investing_dragon_s_ VARCHAR)"}, {"answer": "SELECT episode FROM table_name_38 WHERE money_requested__\u00a3_ = \"150,000\"", "question": "Which Episode has requested \u00a3150,000?", "context": "CREATE TABLE table_name_38 (episode VARCHAR, money_requested__\u00a3_ VARCHAR)"}, {"answer": "SELECT counting_method FROM table_name_89 WHERE basis = \"network-centric\"", "question": "What is the counting method for a network-centric basis?", "context": "CREATE TABLE table_name_89 (counting_method VARCHAR, basis VARCHAR)"}, {"answer": "SELECT directed___undirected FROM table_name_83 WHERE name = \"mfinder\" AND basis = \"network-centric\"", "question": "What is the directed/undirected for mfinder, which has a network-centric basis?", "context": "CREATE TABLE table_name_83 (directed___undirected VARCHAR, name VARCHAR, basis VARCHAR)"}, {"answer": "SELECT directed___undirected FROM table_name_25 WHERE induced___non_induced = \"induced\" AND name = \"fpf (mavisto)\"", "question": "What is the directed/undirected of fpf (mavisto), which has an induced/non-induced of induced?", "context": "CREATE TABLE table_name_25 (directed___undirected VARCHAR, induced___non_induced VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_12 WHERE directed___undirected = \"both\" AND basis = \"subgraph-centric\"", "question": "What is the name of the algorithm with a directed/undirected of both and a subgraph-centric basis?", "context": "CREATE TABLE table_name_12 (name VARCHAR, directed___undirected VARCHAR, basis VARCHAR)"}, {"answer": "SELECT directed___undirected FROM table_name_13 WHERE induced___non_induced = \"induced\" AND counting_method = \"exact\" AND name = \"mfinder\"", "question": "What is the directed/undirected for mfinder, which has an induced/non-induced of induced and an exact counting method?", "context": "CREATE TABLE table_name_13 (directed___undirected VARCHAR, name VARCHAR, induced___non_induced VARCHAR, counting_method VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_6 WHERE outcome = \"winner\" AND surface = \"hard\" AND date = \"august 27, 2011\"", "question": "Who is the opponent for the winner outcome on a hard surface on August 27, 2011?", "context": "CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_59 WHERE date = \"august 5, 2007\"", "question": "What was the outcome on August 5, 2007?", "context": "CREATE TABLE table_name_59 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE date = \"january 16, 2010\"", "question": "What was the score on January 16, 2010?", "context": "CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT country FROM table_name_6 WHERE name = \"paul runyan\"", "question": "What country is Paul Runyan from?", "context": "CREATE TABLE table_name_6 (country VARCHAR, name VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_17 WHERE country = \"scotland\" AND name = \"willie macfarlane\"", "question": "What is the To par of Willie MacFarlane from the country of Scotland?", "context": "CREATE TABLE table_name_17 (to_par VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_25 WHERE to_par = \"+1\" AND score = 71 - 76 - 70 = 217", "question": "What country has a To par of +1 and the score of 71-76-70=217?", "context": "CREATE TABLE table_name_25 (country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_15 WHERE goals = \"143\"", "question": "What player scored 143 goals?", "context": "CREATE TABLE table_name_15 (player VARCHAR, goals VARCHAR)"}, {"answer": "SELECT season FROM table_name_75 WHERE club = \"south melbourne\"", "question": "In what season was there a club of South Melbourne?", "context": "CREATE TABLE table_name_75 (season VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_71 WHERE goals = \"143\"", "question": "What club scored 143 goals?", "context": "CREATE TABLE table_name_71 (club VARCHAR, goals VARCHAR)"}, {"answer": "SELECT season FROM table_name_86 WHERE player = \"bob pratt\"", "question": "In what season did Bob Pratt play?", "context": "CREATE TABLE table_name_86 (season VARCHAR, player VARCHAR)"}, {"answer": "SELECT goals FROM table_name_5 WHERE club = \"hawthorn\" AND season = \"1971\"", "question": "How many goals did the club from Hawthorn score in the 1971 season?", "context": "CREATE TABLE table_name_5 (goals VARCHAR, club VARCHAR, season VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE date = \"july 1\"", "question": "What source has july 1 as the date?", "context": "CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT municipality FROM table_name_2 WHERE area = \"outer circle south\" AND area_km\u00b2 < 368 AND county = \"akershus\" AND population > 14 OFFSET 398", "question": "Which municipality's area is outer circle south and smaller than 368 km in Akershus County with more than 14,398 people?", "context": "CREATE TABLE table_name_2 (municipality VARCHAR, population VARCHAR, county VARCHAR, area VARCHAR, area_km\u00b2 VARCHAR)"}, {"answer": "SELECT location FROM table_name_80 WHERE game > 6", "question": "What was the location of the game after game 6?", "context": "CREATE TABLE table_name_80 (location VARCHAR, game INTEGER)"}, {"answer": "SELECT february FROM table_name_13 WHERE september = \"kristine hanson\"", "question": "Who is in February where has September is kristine hanson?", "context": "CREATE TABLE table_name_13 (february VARCHAR, september VARCHAR)"}, {"answer": "SELECT january FROM table_name_71 WHERE april = \"chris cranston\"", "question": "Who is in January where April is chris cranston?", "context": "CREATE TABLE table_name_71 (january VARCHAR, april VARCHAR)"}, {"answer": "SELECT july FROM table_name_7 WHERE october = \"jill de vries\"", "question": "Who is in July where October is jill de vries?", "context": "CREATE TABLE table_name_7 (july VARCHAR, october VARCHAR)"}, {"answer": "SELECT november FROM table_name_48 WHERE february = \"willy rey\"", "question": "Who is in November where February is willy rey?", "context": "CREATE TABLE table_name_48 (november VARCHAR, february VARCHAR)"}, {"answer": "SELECT november FROM table_name_71 WHERE october = \"jill de vries\"", "question": "Who is in November where October is jill de vries?", "context": "CREATE TABLE table_name_71 (november VARCHAR, october VARCHAR)"}, {"answer": "SELECT july FROM table_name_8 WHERE february = \"linda forsythe\"", "question": "Who is in July where February is linda forsythe?", "context": "CREATE TABLE table_name_8 (july VARCHAR, february VARCHAR)"}, {"answer": "SELECT remarks FROM table_name_74 WHERE airline = \"dutch antilles express\"", "question": "What were the remarks for Dutch Antilles Express?", "context": "CREATE TABLE table_name_74 (remarks VARCHAR, airline VARCHAR)"}, {"answer": "SELECT remarks FROM table_name_83 WHERE destination_number < 19 AND rank < 5", "question": "What were the remarks for a destination under 19 and rank less than 5?", "context": "CREATE TABLE table_name_83 (remarks VARCHAR, destination_number VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE attendance > 45 OFFSET 817", "question": "Name the date when the attendance is more than 45,817", "context": "CREATE TABLE table_name_65 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT score FROM table_name_93 WHERE date = \"september 25\"", "question": "Name the score for september 25", "context": "CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_83 WHERE venue = \"athens, greece\"", "question": "What is the lowest year that has athens, greece as the venue?", "context": "CREATE TABLE table_name_83 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_45 WHERE result = \"1st\"", "question": "Which venue has 1st as the result?", "context": "CREATE TABLE table_name_45 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT extra FROM table_name_2 WHERE tournament = \"world championships\" AND result = \"1st\"", "question": "What extra has world championships as the tournament, and 1st as the result?", "context": "CREATE TABLE table_name_2 (extra VARCHAR, tournament VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_88 WHERE bronze = 7 AND total < 13", "question": "For all countries with 7 bronze medals and a total number of medals less than 13, what's the sum of silver medals?", "context": "CREATE TABLE table_name_88 (silver INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_92 WHERE total < 5 AND bronze > 2", "question": "For countries with total number of medals less than 5 and more than 2 bronze medals, what's the lowest number of gold medals?", "context": "CREATE TABLE table_name_92 (gold INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT class FROM table_name_74 WHERE laps = 31", "question": "Which Class has Laps of 31?", "context": "CREATE TABLE table_name_74 (class VARCHAR, laps VARCHAR)"}, {"answer": "SELECT county_team FROM table_name_8 WHERE club_team_s_ = \"thurles sarsfields\"", "question": "What country team had Thurles Sarsfields?", "context": "CREATE TABLE table_name_8 (county_team VARCHAR, club_team_s_ VARCHAR)"}, {"answer": "SELECT club_team_s_ FROM table_name_52 WHERE team_number > 14", "question": "How many club teams had more than 14 people?", "context": "CREATE TABLE table_name_52 (club_team_s_ VARCHAR, team_number INTEGER)"}, {"answer": "SELECT player FROM table_name_11 WHERE to_par = \"e\" AND country = \"spain\"", "question": "Who is from Spain with a to par of e?", "context": "CREATE TABLE table_name_11 (player VARCHAR, to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_10 WHERE player = \"steve stricker\"", "question": "Where was Steve Stricker from?", "context": "CREATE TABLE table_name_10 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_41 WHERE score = 69", "question": "Which country has 69 score?", "context": "CREATE TABLE table_name_41 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_69 WHERE start = \"12\"", "question": "How many laps were there when the start was 12?", "context": "CREATE TABLE table_name_69 (laps VARCHAR, start VARCHAR)"}, {"answer": "SELECT qual FROM table_name_63 WHERE rank = \"2\"", "question": "What was the qual when the rank was 2?", "context": "CREATE TABLE table_name_63 (qual VARCHAR, rank VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_83 WHERE frequency_mhz > 90.1 AND erp_w = 1", "question": "Tell me the call sign which has a frequency Mhz more than 90.1 and ERP W of 1", "context": "CREATE TABLE table_name_83 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT COUNT(erp_w) FROM table_name_8 WHERE call_sign = \"w217bf\"", "question": "Name the total number of ERP W when the call sign is w217bf", "context": "CREATE TABLE table_name_8 (erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT COUNT(frequency_mhz) FROM table_name_22 WHERE erp_w = 1 AND call_sign = \"w215bj\"", "question": "Name the total number of frequency Mhz for when it has ERP W of 1 and call sign of w215bj", "context": "CREATE TABLE table_name_22 (frequency_mhz VARCHAR, erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT AVG(erp_w) FROM table_name_90 WHERE city_of_license = \"pound, virginia\" AND frequency_mhz > 91.3", "question": "Name the average ERP W when it has a city of license of pound, virginia and frequency mhz more than 91.3", "context": "CREATE TABLE table_name_90 (erp_w INTEGER, city_of_license VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE result = \"2\u20132\" AND date = \"04 dec 2005\"", "question": "What is the Score that has a Result of 2\u20132 on 04 Dec 2005?", "context": "CREATE TABLE table_name_47 (score VARCHAR, result VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_38 WHERE date = \"26 jan 2005\"", "question": "What is the Result on 26 jan 2005?", "context": "CREATE TABLE table_name_38 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_12 WHERE date = \"26 jan 2005\"", "question": "What is the Venue on 26 jan 2005", "context": "CREATE TABLE table_name_12 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_43 WHERE date = \"26 jan 2005\"", "question": "What is the Competition On 26 jan 2005", "context": "CREATE TABLE table_name_43 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE competition = \"west asian games 2005\" AND date = \"10 dec 2005\"", "question": "What is the Score of West Asian Games 2005 on 10 dec 2005?", "context": "CREATE TABLE table_name_44 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_1 WHERE points_for = \"447\"", "question": "How many matches were drawn by a team with 447 points?", "context": "CREATE TABLE table_name_1 (drawn VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_10 WHERE played = \"22\" AND losing_bonus = \"3\" AND tries_against = \"45\"", "question": "For teams with 22 matches played, a losing bonus of 3, and 45 tries against, what was the number of points against?", "context": "CREATE TABLE table_name_10 (points_against VARCHAR, tries_against VARCHAR, played VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_16 WHERE points_for = \"332\"", "question": "For a team with 332 points for, what was the try bonus?", "context": "CREATE TABLE table_name_16 (try_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT club FROM table_name_38 WHERE tries_against = \"43\" AND try_bonus = \"9\"", "question": "Which club has a try bonus of 9 and 43 tries against?", "context": "CREATE TABLE table_name_38 (club VARCHAR, tries_against VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT played FROM table_name_31 WHERE points_for = \"473\"", "question": "How many matches were played by the team that has 473 points for?", "context": "CREATE TABLE table_name_31 (played VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT qual FROM table_name_6 WHERE laps = 125", "question": "What is the qual when there are 125 laps?", "context": "CREATE TABLE table_name_6 (qual VARCHAR, laps VARCHAR)"}, {"answer": "SELECT rank FROM table_name_26 WHERE laps > 107 AND qual = \"137.825\"", "question": "What is the rank when there are more than 107 laps and the qual is 137.825?", "context": "CREATE TABLE table_name_26 (rank VARCHAR, laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT rank FROM table_name_64 WHERE laps > 40 AND finish = \"23\"", "question": "What is the rank with more than 40 laps and a 23 finish?", "context": "CREATE TABLE table_name_64 (rank VARCHAR, laps VARCHAR, finish VARCHAR)"}, {"answer": "SELECT finish FROM table_name_75 WHERE year = \"1953\"", "question": "What is the finish in 1953?", "context": "CREATE TABLE table_name_75 (finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_96 WHERE rank = \"24\"", "question": "In what year was the rank 24?", "context": "CREATE TABLE table_name_96 (year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_88 WHERE money___$__ = 100 AND player = \"vic ghezzi\"", "question": "Which To par has $100 in money played by Vic Ghezzi?", "context": "CREATE TABLE table_name_88 (to_par VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_12 WHERE score = 75 - 71 - 75 - 72 = 293", "question": "What is the monetary sum with a score of 75-71-75-72=293?", "context": "CREATE TABLE table_name_12 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT wednesday FROM table_name_23 WHERE saturday = \"\u0f42\u0f5f\u0f60\u0f0b\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0d\"", "question": "Which Wednesday has a Saturday of \u0f42\u0f5f\u0f60\u0f0b\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0d?", "context": "CREATE TABLE table_name_23 (wednesday VARCHAR, saturday VARCHAR)"}, {"answer": "SELECT wednesday FROM table_name_16 WHERE sunday = \"\u0f42\u0f5f\u0f60\u0f0b\u0f49\u0f72\u0f0b\u0f58\u0f0d\"", "question": "Which Wednesday has a Sunday of \u0f42\u0f5f\u0f60\u0f0b\u0f49\u0f72\u0f0b\u0f58\u0f0d?", "context": "CREATE TABLE table_name_16 (wednesday VARCHAR, sunday VARCHAR)"}, {"answer": "SELECT tuesday FROM table_name_94 WHERE saturday = \"\u571f\u66dc\u65e5 doy\u014dbi\"", "question": "Which Tuesday has a Saturday of \u571f\u66dc\u65e5 doy\u014dbi?", "context": "CREATE TABLE table_name_94 (tuesday VARCHAR, saturday VARCHAR)"}, {"answer": "SELECT thursday FROM table_name_51 WHERE wednesday = \"\u661f\u671f\u4e09 xingqisen\"", "question": "Which Thursday has a Wednesday of \u661f\u671f\u4e09 xingqisen?", "context": "CREATE TABLE table_name_51 (thursday VARCHAR, wednesday VARCHAR)"}, {"answer": "SELECT wednesday FROM table_name_46 WHERE monday = \"\u6708\u66dc\u65e5 getsuy\u014dbi\"", "question": "Which Wednesday has a Monday of \u6708\u66dc\u65e5 getsuy\u014dbi?", "context": "CREATE TABLE table_name_46 (wednesday VARCHAR, monday VARCHAR)"}, {"answer": "SELECT saturday FROM table_name_8 WHERE thursday = \"\u6728\u66dc\u65e5 mokuy\u014dbi\"", "question": "Which Saturday has a Thursday of \u6728\u66dc\u65e5 mokuy\u014dbi", "context": "CREATE TABLE table_name_8 (saturday VARCHAR, thursday VARCHAR)"}, {"answer": "SELECT loss FROM table_name_84 WHERE opponent = \"angels\" AND record = \"50-31\"", "question": "What loss was against the angels with a 50-31 record?", "context": "CREATE TABLE table_name_84 (loss VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT pilot FROM table_name_42 WHERE date = \"september 27, 1972\"", "question": "Who is the pilot on September 27, 1972?", "context": "CREATE TABLE table_name_42 (pilot VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(altitude__ft_) FROM table_name_80 WHERE mach > 0.905 AND duration = \"00:06:17\"", "question": "What is the lowest altitude of the flight with a mach bigger than 0.905 and a duration of 00:06:17?", "context": "CREATE TABLE table_name_80 (altitude__ft_ INTEGER, mach VARCHAR, duration VARCHAR)"}, {"answer": "SELECT wicket FROM table_name_43 WHERE runs__balls_ = \"100 (45)\"", "question": "Which wicket had a 100 (45) Runs (balls) amount?", "context": "CREATE TABLE table_name_43 (wicket VARCHAR, runs__balls_ VARCHAR)"}, {"answer": "SELECT wicket FROM table_name_55 WHERE runs__balls_ = \"104 (69)\"", "question": "Which Wicket was it that had a 104 (69) Runs (balls) amount?", "context": "CREATE TABLE table_name_55 (wicket VARCHAR, runs__balls_ VARCHAR)"}, {"answer": "SELECT leagues_entering FROM table_name_69 WHERE clubs = \"8 \u2192 4\"", "question": "What is the item for Leagues entering, when the value for Clubs is 8 \u2192 4?", "context": "CREATE TABLE table_name_69 (leagues_entering VARCHAR, clubs VARCHAR)"}, {"answer": "SELECT round FROM table_name_31 WHERE fixtures = 2", "question": "What is the Round when the value for Fixtures is 2?", "context": "CREATE TABLE table_name_31 (round VARCHAR, fixtures VARCHAR)"}, {"answer": "SELECT new_entries FROM table_name_7 WHERE fixtures < 16 AND clubs = \"4 \u2192 2\"", "question": "What is the value for New entries, when the value for Fixtures is less than 16, and when the value for Clubs is 4 \u2192 2?", "context": "CREATE TABLE table_name_7 (new_entries VARCHAR, fixtures VARCHAR, clubs VARCHAR)"}, {"answer": "SELECT new_entries FROM table_name_71 WHERE fixtures = 2", "question": "What is the value for New entries, when the value for Fixtures is 2?", "context": "CREATE TABLE table_name_71 (new_entries VARCHAR, fixtures VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE format_s_ = \"album\"", "question": "Which date has a format's album?", "context": "CREATE TABLE table_name_31 (date VARCHAR, format_s_ VARCHAR)"}, {"answer": "SELECT title FROM table_name_87 WHERE year = 1991 AND date = \"march 21\"", "question": "What is the title for year 1991 and a date of March 21?", "context": "CREATE TABLE table_name_87 (title VARCHAR, year VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_44 WHERE award_description_s_ = \"platinum\"", "question": "What is the average year with an award of platinum?", "context": "CREATE TABLE table_name_44 (year INTEGER, award_description_s_ VARCHAR)"}, {"answer": "SELECT result_s_ FROM table_name_34 WHERE format_s_ = \"single\" AND date = \"march 21\"", "question": "What are the results of Format single on March 21?", "context": "CREATE TABLE table_name_34 (result_s_ VARCHAR, format_s_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT award_description_s_ FROM table_name_84 WHERE format_s_ = \"album\"", "question": "What are the award description with Format album?", "context": "CREATE TABLE table_name_84 (award_description_s_ VARCHAR, format_s_ VARCHAR)"}, {"answer": "SELECT MAX(goals) FROM table_name_97 WHERE assists < 101 AND points < 172", "question": "What is the largest number of goals with less than 101 assists and 172 points?", "context": "CREATE TABLE table_name_97 (goals INTEGER, assists VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_98 WHERE player = \"mike hyndman\" AND assists > 119", "question": "How many total points does Mike Hyndman have with more than 119 assists?", "context": "CREATE TABLE table_name_98 (points INTEGER, player VARCHAR, assists VARCHAR)"}, {"answer": "SELECT SUM(assists) FROM table_name_71 WHERE player = \"david tomlinson\"", "question": "How many assists does David Tomlinson have?", "context": "CREATE TABLE table_name_71 (assists INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_25 WHERE player = \"shawn mceachern\" AND goals < 79", "question": "How many points does Shawn Mceachern with less than 79 goals?", "context": "CREATE TABLE table_name_25 (points INTEGER, player VARCHAR, goals VARCHAR)"}, {"answer": "SELECT goals FROM table_name_6 WHERE player = \"mike eruzione\"", "question": "How many goals does Mike Eruzione have in total?", "context": "CREATE TABLE table_name_6 (goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT rider FROM table_name_22 WHERE laps < 10 AND manufacturer = \"aprilia\" AND time_retired = \"retirement\"", "question": "Which rider had fewer than 10 laps for the Aprilia manufacturer, finishing in retirement?", "context": "CREATE TABLE table_name_22 (rider VARCHAR, time_retired VARCHAR, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_86 WHERE grid > 20 AND laps < 26 AND manufacturer = \"aprilia\"", "question": "What is the time for a grid greater than 20, fewer than 26 laps, and the Aprilia manufacturer?", "context": "CREATE TABLE table_name_86 (time_retired VARCHAR, manufacturer VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT rider FROM table_name_95 WHERE laps > 23 AND manufacturer = \"aprilia\" AND grid = 14", "question": "Which rider had more than 23 laps, a manufacturer of Aprilia, and a grid of 14", "context": "CREATE TABLE table_name_95 (rider VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT years FROM table_name_29 WHERE representative = \"walter evans\"", "question": "When was Walter Evans a representative?", "context": "CREATE TABLE table_name_29 (years VARCHAR, representative VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_93 WHERE format = \"cd\"", "question": "Name the catalog with cd format", "context": "CREATE TABLE table_name_93 (catalog VARCHAR, format VARCHAR)"}, {"answer": "SELECT label FROM table_name_88 WHERE catalog = \"mhcl-20005\"", "question": "Name the label with catalog of mhcl-20005", "context": "CREATE TABLE table_name_88 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE catalog = \"alca-9198\"", "question": "Name the date with catalog of alca-9198", "context": "CREATE TABLE table_name_66 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT note FROM table_name_73 WHERE catalog = \"32xa-106\"", "question": "Name the note for catalog of 32xa-106", "context": "CREATE TABLE table_name_73 (note VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_84 WHERE label = \"alfa records\" AND format = \"cd\"", "question": "Name the catalog for alfa records and cd format", "context": "CREATE TABLE table_name_84 (catalog VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT format FROM table_name_28 WHERE note = \"12cm\" AND catalog = \"alca-9198\"", "question": "Name the format for 12cm note and catalog of alca-9198", "context": "CREATE TABLE table_name_28 (format VARCHAR, note VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT monday_mona__m\u00e1ni FROM table_name_84 WHERE thursday_thunor___thor = \"tongersdei\"", "question": "Which Monday Mona/Mani also had a Thursday Thunor/Thor of Tongersdei?", "context": "CREATE TABLE table_name_84 (monday_mona__m\u00e1ni VARCHAR, thursday_thunor___thor VARCHAR)"}, {"answer": "SELECT tuesday_tiw__tyr FROM table_name_61 WHERE sunday_sunna_s\u00f3l = \"sondag\"", "question": "Which Tuesday Tiw/Tyr has a Sunday Sunna/Sol of sondag?", "context": "CREATE TABLE table_name_61 (tuesday_tiw__tyr VARCHAR, sunday_sunna_s\u00f3l VARCHAR)"}, {"answer": "SELECT album FROM table_name_22 WHERE year = 1995", "question": "What is the 1995 Album?", "context": "CREATE TABLE table_name_22 (album VARCHAR, year VARCHAR)"}, {"answer": "SELECT album FROM table_name_83 WHERE record_label = \"rca\"", "question": "What album was recorded by the rca label?", "context": "CREATE TABLE table_name_83 (album VARCHAR, record_label VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_59 WHERE artist = \"queen\" AND weeks_at_number_one < 1", "question": "What's the sum of years when the Artist of the queen were less than 1?", "context": "CREATE TABLE table_name_59 (year VARCHAR, artist VARCHAR, weeks_at_number_one VARCHAR)"}, {"answer": "SELECT album FROM table_name_27 WHERE year = 1990", "question": "What is the 1990 Album?", "context": "CREATE TABLE table_name_27 (album VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_90 WHERE game_site = \"soldier field\"", "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 loss FROM table_name_41 WHERE record = \"20-13\"", "question": "Who lost the game with a record of 20-13?", "context": "CREATE TABLE table_name_41 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_38 WHERE date = \"may 28\"", "question": "Who lost the game on May 28?", "context": "CREATE TABLE table_name_38 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_65 WHERE date = \"may 26\"", "question": "Who lost the game on May 26?", "context": "CREATE TABLE table_name_65 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_82 WHERE time = \"3:01\"", "question": "Which date has the record time of 3:01?", "context": "CREATE TABLE table_name_82 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE opponent = \"devil rays\" AND date = \"april 24\"", "question": "What is the score of the Devil Rays on April 24?", "context": "CREATE TABLE table_name_28 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT transmittance__contrast_ratio FROM table_name_16 WHERE name = \"ips-provectus\"", "question": "What is Ips-provectus transmittance/contrast ratio?", "context": "CREATE TABLE table_name_16 (transmittance__contrast_ratio VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_44 WHERE rank < 8 AND total = 12 AND bronze < 4", "question": "What is the average silver for a rank less than 8, were there were no more than 4 bronze and 12 in total?", "context": "CREATE TABLE table_name_44 (silver INTEGER, bronze VARCHAR, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_94 WHERE total < 7 AND nation = \"gabon\" AND rank < 17", "question": "How many gold did Gabon have when they were ranked no higher than 17, and less than 7 in total?", "context": "CREATE TABLE table_name_94 (gold INTEGER, rank VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_5 WHERE date = \"april 24\"", "question": "Name the opponent for april 24", "context": "CREATE TABLE table_name_5 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE attendance = \"13,617\"", "question": "Name the score for attendance of 13,617", "context": "CREATE TABLE table_name_63 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_92 WHERE score = \"postponed (rain) not rescheduled\"", "question": "Name the opponent for Score of postponed (rain) not rescheduled", "context": "CREATE TABLE table_name_92 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT h_s_asst_principal FROM table_name_47 WHERE glendale_principal = \"joyce brace\" AND year = \"2002-2003\"", "question": "What is the H.S. Asst. principal with a Glendale principal Joyce Brace during 2002-2003?", "context": "CREATE TABLE table_name_47 (h_s_asst_principal VARCHAR, glendale_principal VARCHAR, year VARCHAR)"}, {"answer": "SELECT hs_principal FROM table_name_99 WHERE wr_principal = \"dave lovering\" AND ms_principal = \"marty pizur\"", "question": "Who is the h.s. principal with Dave Lovering as w.r. principal and Marty Pizur as m.s. principal?", "context": "CREATE TABLE table_name_99 (hs_principal VARCHAR, wr_principal VARCHAR, ms_principal VARCHAR)"}, {"answer": "SELECT glendale_principal FROM table_name_58 WHERE ms_principal = \"greg smorel\" AND hs_principal = \"joleen reinholz\" AND year = \"2006-2007\"", "question": "Who is the Glendale principal with Greg Smorel as m.s. principal and Joleen Reinholz as H.S. principal during 2006-2007?", "context": "CREATE TABLE table_name_58 (glendale_principal VARCHAR, year VARCHAR, ms_principal VARCHAR, hs_principal VARCHAR)"}, {"answer": "SELECT hh_principal FROM table_name_55 WHERE hs_principal = \"jim haught\" AND maplemere_principal = \"charlie taylor\" AND wr_principal = \"rich auerbach\"", "question": "Who is the h.h. principal with Jim Haught as h.s. principal, Charlie Taylor as maplemere principal, and Rich Auerbach as w.r. principal?", "context": "CREATE TABLE table_name_55 (hh_principal VARCHAR, wr_principal VARCHAR, hs_principal VARCHAR, maplemere_principal VARCHAR)"}, {"answer": "SELECT hh_principal FROM table_name_16 WHERE superintendent = \"james finch\" AND maplemere_principal = \"charlie taylor\"", "question": "Who is the h.h. principal with James Finch as the superintendent and Charlie Taylor as the maplemere principal?", "context": "CREATE TABLE table_name_16 (hh_principal VARCHAR, superintendent VARCHAR, maplemere_principal VARCHAR)"}, {"answer": "SELECT hs_principal FROM table_name_81 WHERE year = \"1973-1974\"", "question": "Who is the h.s. principal during 1973-1974?", "context": "CREATE TABLE table_name_81 (hs_principal VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_7 WHERE year < 1959 AND points > 4", "question": "what is the engine for year less than 1959 and points more than 4?", "context": "CREATE TABLE table_name_7 (engine VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_75 WHERE points = 4", "question": "what is the least year for 4 points?", "context": "CREATE TABLE table_name_75 (year INTEGER, points VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_6 WHERE engine = \"ferrari v8\" AND points < 4", "question": "what is the entrant for the ferrari v8 with points less than 4?", "context": "CREATE TABLE table_name_6 (entrant VARCHAR, engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_85 WHERE points = 0 AND engine = \"ferrari v8\"", "question": "what is the average year for 0 points and ferrari v8?", "context": "CREATE TABLE table_name_85 (year INTEGER, points VARCHAR, engine VARCHAR)"}, {"answer": "SELECT launched FROM table_name_81 WHERE territory = \"singapore\" AND channel = 83", "question": "When did channel 83 in singapore launch?", "context": "CREATE TABLE table_name_81 (launched VARCHAR, territory VARCHAR, channel VARCHAR)"}, {"answer": "SELECT territory FROM table_name_86 WHERE channel = 83", "question": "Where is channel 83 broadcasted?", "context": "CREATE TABLE table_name_86 (territory VARCHAR, channel VARCHAR)"}, {"answer": "SELECT broadcaster FROM table_name_12 WHERE territory = \"malaysia\"", "question": "Who broadcasts in malaysia?", "context": "CREATE TABLE table_name_12 (broadcaster VARCHAR, territory VARCHAR)"}, {"answer": "SELECT engine_s_ FROM table_name_19 WHERE year = 1983", "question": "What are the engines for 1983?", "context": "CREATE TABLE table_name_19 (engine_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT appearances FROM table_name_75 WHERE goals < 30 AND name = \"gary depalma\"", "question": "How many appearances did Gary Depalma make when he scored less than 30 goals?", "context": "CREATE TABLE table_name_75 (appearances VARCHAR, goals VARCHAR, name VARCHAR)"}, {"answer": "SELECT intergiro_classification FROM table_name_10 WHERE trofeo_fast_team = \"asics-c.g.a.\" AND stage = \"13\"", "question": "In stage 13, what is the intergiro classification and is on the team of Asics-c.g.a.?", "context": "CREATE TABLE table_name_10 (intergiro_classification VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR)"}, {"answer": "SELECT intergiro_classification FROM table_name_53 WHERE trofeo_fast_team = \"team polti\" AND stage = \"14\"", "question": "Which intergiro classification is there for team Polti at stage 14?", "context": "CREATE TABLE table_name_53 (intergiro_classification VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_name_97 WHERE general_classification = \"pavel tonkov\" AND stage = \"7\"", "question": "Who was the winner in stage 7 with a general classification of Pavel Tonkov?", "context": "CREATE TABLE table_name_97 (winner VARCHAR, general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_name_52 WHERE trofeo_fast_team = \"asics-c.g.a.\" AND mountains_classification = \"mariano piccoli\"", "question": "Who was the winner from team Asics-c.g.a. and has a mountains classification of Mariano Piccoli?", "context": "CREATE TABLE table_name_52 (winner VARCHAR, trofeo_fast_team VARCHAR, mountains_classification VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_54 WHERE stage = \"15\"", "question": "Which points classification was used in stage 15?", "context": "CREATE TABLE table_name_54 (points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT winner FROM table_name_70 WHERE mountains_classification = \"not awarded\" AND stage = \"1\"", "question": "Which winner of stage 1 was not awarded a mountains classification?", "context": "CREATE TABLE table_name_70 (winner VARCHAR, mountains_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT muzzle_device FROM table_name_18 WHERE barrel_twist = \"1:10\"", "question": "Name the muzzel device with barrel twist of 1:10", "context": "CREATE TABLE table_name_18 (muzzle_device VARCHAR, barrel_twist VARCHAR)"}, {"answer": "SELECT bayonet_lug FROM table_name_92 WHERE name = \"ar-15 lightweight\"", "question": "Name the bayonet lug with ar-15 lightweight", "context": "CREATE TABLE table_name_92 (bayonet_lug VARCHAR, name VARCHAR)"}, {"answer": "SELECT hand_guards FROM table_name_8 WHERE name = \"ar-15a2 government carbine\" AND barrel_twist = \"1:9\"", "question": "Name the hand guards for ar-15a2 government carbine and barrel twist of 1:9", "context": "CREATE TABLE table_name_8 (hand_guards VARCHAR, name VARCHAR, barrel_twist VARCHAR)"}, {"answer": "SELECT barrel_length FROM table_name_90 WHERE barrel_twist = \"1:7\"", "question": "Name the barrel length for barrel twist of 1:7", "context": "CREATE TABLE table_name_90 (barrel_length VARCHAR, barrel_twist VARCHAR)"}, {"answer": "SELECT three_mora_word FROM table_name_18 WHERE NOT accented_mora = \"low tone\" AND one_mora = \"2\"", "question": "What is the three-mora word with a low tone accented mora and a one mora of 2?", "context": "CREATE TABLE table_name_18 (three_mora_word VARCHAR, one_mora VARCHAR, accented_mora VARCHAR)"}, {"answer": "SELECT one_mora FROM table_name_73 WHERE three_mora_word = \"/kaze/ [k\u00e1z\u00e9]\"", "question": "What is the one mora for the three-mora word /kaze/ [k\u00e1z\u00e9]?", "context": "CREATE TABLE table_name_73 (one_mora VARCHAR, three_mora_word VARCHAR)"}, {"answer": "SELECT one_mora FROM table_name_29 WHERE three_mora_word = \"/\u02e9haru\ua71c/ [h\u00e0\u027d\u026f\u0301 ~ h\u00e0\u027d\u026f\u0302]\"", "question": "What is the one mora for the three-mora word /\u02e9haru\ua71c/ [h\u00e0\u027d\u026f\u0301 ~ h\u00e0\u027d\u026f\u0302]?", "context": "CREATE TABLE table_name_29 (one_mora VARCHAR, three_mora_word VARCHAR)"}, {"answer": "SELECT two_mora_word FROM table_name_53 WHERE NOT accented_mora = \"low tone\" AND gloss = \"/\u02e9kusu\ua71cri/ [k\u026f\u0300s\u026f\u0301\u027d\u00ec]\"", "question": "What is the two-mora word with a low tone accented mora and a gloss of /\u02e9kusu\ua71cri/ [k\u026f\u0300s\u026f\u0301\u027d\u00ec]?", "context": "CREATE TABLE table_name_53 (two_mora_word VARCHAR, gloss VARCHAR, accented_mora VARCHAR)"}, {"answer": "SELECT one_mora FROM table_name_95 WHERE NOT accented_mora = \"low tone\" AND gloss = \"/\u02e9okiru/ [\u00f2k\u00ec\u027d\u026f\u0301]\"", "question": "What is the one mora for a low tone mora with a gloss of /\u02e9okiru/ [\u00f2k\u00ec\u027d\u026f\u0301]?", "context": "CREATE TABLE table_name_95 (one_mora VARCHAR, gloss VARCHAR, accented_mora VARCHAR)"}, {"answer": "SELECT MAX(total_medals) FROM table_name_27 WHERE gold_medals = 0 AND ensemble = \"east 80 indoor percussion\"", "question": "What is the highest Total Medals that has 0 Gold Medal and a Ensemble of east 80 indoor percussion?", "context": "CREATE TABLE table_name_27 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR)"}, {"answer": "SELECT MIN(total_medals) FROM table_name_76 WHERE ensemble = \"madison independent\" AND bronze_medals > 0", "question": "What is the lowest Total Medals that has madison independent and Bronze Medals larger than 0", "context": "CREATE TABLE table_name_76 (total_medals INTEGER, ensemble VARCHAR, bronze_medals VARCHAR)"}, {"answer": "SELECT MIN(gold_medals) FROM table_name_18 WHERE ensemble = \"salem blue devils\" AND silver_medals < 1", "question": "what is Gold Medals that has  salem blue devils and a Silver Medals less than 1?", "context": "CREATE TABLE table_name_18 (gold_medals INTEGER, ensemble VARCHAR, silver_medals VARCHAR)"}, {"answer": "SELECT location FROM table_name_19 WHERE method = \"submission (armbar)\" AND opponent = \"mayra conde\"", "question": "What is the location of the match where the method was submission (armbar) and Mayra Conde was the opponent?", "context": "CREATE TABLE table_name_19 (location VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE method = \"submission (armbar)\" AND record = \"9-3-1\"", "question": "Who is the opponent of the match with a method of submission (armbar) and a 9-3-1 record?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, method VARCHAR, record VARCHAR)"}, {"answer": "SELECT time__eest_ FROM table_name_5 WHERE stage = \"ss8\"", "question": "What is the Time (EEST), when the Stage is ss8?", "context": "CREATE TABLE table_name_5 (time__eest_ VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_19 WHERE rally_leader = \"c. atkinson\"", "question": "What is the Stage, when the Rally leader is C. Atkinson?", "context": "CREATE TABLE table_name_19 (stage VARCHAR, rally_leader VARCHAR)"}, {"answer": "SELECT winner FROM table_name_92 WHERE name = \"ouninpohja 1\"", "question": "Who is the Winner, when the Name is Ouninpohja 1?", "context": "CREATE TABLE table_name_92 (winner VARCHAR, name VARCHAR)"}, {"answer": "SELECT length FROM table_name_68 WHERE name = \"himos\"", "question": "What is the Length, when the Name is Himos?", "context": "CREATE TABLE table_name_68 (length VARCHAR, name VARCHAR)"}, {"answer": "SELECT winner FROM table_name_95 WHERE length = \"21.27km\"", "question": "Who is the Winner when the Length is 21.27km?", "context": "CREATE TABLE table_name_95 (winner VARCHAR, length VARCHAR)"}, {"answer": "SELECT name FROM table_name_92 WHERE time = \"8:10.1\"", "question": "What is the Name, when the Time is 8:10.1?", "context": "CREATE TABLE table_name_92 (name VARCHAR, time VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_2 WHERE points = 0 AND year > 1961 AND chassis = \"ferrari 156\"", "question": "In the Formula One World Championships, which entrant had 0 points with a Ferrari 156 Chassis after 1961?", "context": "CREATE TABLE table_name_2 (entrant VARCHAR, chassis VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_80 WHERE year = 1965", "question": "During the Formula One World Championships, which engine was used in 1965?", "context": "CREATE TABLE table_name_80 (engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_78 WHERE chassis = \"ferrari 156\"", "question": "How many points were earned with a Chassis of a Ferrari 156?", "context": "CREATE TABLE table_name_78 (points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT finish FROM table_name_76 WHERE laps < 197 AND start = \"9\" AND qual = \"152.672\"", "question": "Where did the driver who started 9 with a qualifing speed of 152.672 and finished fewer than 197 laps finish?", "context": "CREATE TABLE table_name_76 (finish VARCHAR, qual VARCHAR, laps VARCHAR, start VARCHAR)"}, {"answer": "SELECT location FROM table_name_1 WHERE game = 7", "question": "What is the location of game 7?", "context": "CREATE TABLE table_name_1 (location VARCHAR, game VARCHAR)"}, {"answer": "SELECT location FROM table_name_20 WHERE game = 4", "question": "what is the location of game 4?", "context": "CREATE TABLE table_name_20 (location VARCHAR, game VARCHAR)"}, {"answer": "SELECT scorers FROM table_name_61 WHERE group_position = \"2nd\" AND opponents = \"olympiacos\"", "question": "Who were the 2nd group scorers that were opponents of olympiacos?", "context": "CREATE TABLE table_name_61 (scorers VARCHAR, group_position VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT scorers FROM table_name_94 WHERE result_f_a = \"1\u20130\"", "question": "Who were F\u2013A of 1\u20130 scorers?", "context": "CREATE TABLE table_name_94 (scorers VARCHAR, result_f_a VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_33 WHERE date = \"november 17\"", "question": "What was the final score of the game on November 17?", "context": "CREATE TABLE table_name_33 (final_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_23 WHERE visiting_team = \"indianapolis colts\" AND date = \"november 24\"", "question": "What was the final score of the game on November 24 with the visiting team the Indianapolis Colts?", "context": "CREATE TABLE table_name_23 (final_score VARCHAR, visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE final_score = \"30-17\" AND stadium = \"gillette stadium\"", "question": "When was the game at Gillette Stadium that ended in a final score of 30-17?", "context": "CREATE TABLE table_name_37 (date VARCHAR, final_score VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_41 WHERE date = \"september 15\"", "question": "Who was the visiting team that played on September 15?", "context": "CREATE TABLE table_name_41 (visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT year FROM table_name_74 WHERE regular_season = \"2nd, central\"", "question": "What year did the Nashville Metros have the Regular Season 2nd, central?", "context": "CREATE TABLE table_name_74 (year VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT division FROM table_name_96 WHERE playoffs = \"did not qualify\" AND league = \"usl pdl\" AND regular_season = \"7th, southeast\"", "question": "What division did the Nashville Metros play in during the year that they did not qualify for the Playoffs, where in the USL PDL League, and had the Regular Season 7th, Southeast?", "context": "CREATE TABLE table_name_96 (division VARCHAR, regular_season VARCHAR, playoffs VARCHAR, league VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_78 WHERE playoffs = \"did not qualify\" AND open_cup = \"did not qualify\" AND regular_season = \"7th, southeast\"", "question": "What was the average year that the Nashville Metros did not qualify for the Playoffs, did not qualify for the Open Cup, and had the Regular Season 7th, Southeast?", "context": "CREATE TABLE table_name_78 (year INTEGER, regular_season VARCHAR, playoffs VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_55 WHERE points = 52", "question": "Which chassis scored 52 points?", "context": "CREATE TABLE table_name_55 (chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT engine FROM table_name_51 WHERE points = 6 AND chassis = \"march 88c\"", "question": "Which engine scored 6 points and used the march 88c chassis?", "context": "CREATE TABLE table_name_51 (engine VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT d_43 FROM table_name_70 WHERE d_48 = \"d 9\"", "question": "Name the D 43 with D 48 of d 9", "context": "CREATE TABLE table_name_70 (d_43 VARCHAR, d_48 VARCHAR)"}, {"answer": "SELECT d_42 FROM table_name_7 WHERE d_43 = \"d 14\"", "question": "Name the D 42 with D 43 of d 14", "context": "CREATE TABLE table_name_7 (d_42 VARCHAR, d_43 VARCHAR)"}, {"answer": "SELECT d_47 FROM table_name_11 WHERE d_48 = \"d 29\"", "question": "Name the D 47 when it has D 48 of d 29", "context": "CREATE TABLE table_name_11 (d_47 VARCHAR, d_48 VARCHAR)"}, {"answer": "SELECT d_43 FROM table_name_45 WHERE d_48 = \"r 28\"", "question": "Name the D 43 and D 48 of r 28", "context": "CREATE TABLE table_name_45 (d_43 VARCHAR, d_48 VARCHAR)"}, {"answer": "SELECT d_47 FROM table_name_10 WHERE d_42 = \"d 22\"", "question": "Name the D 47 which has D 42 of d 22", "context": "CREATE TABLE table_name_10 (d_47 VARCHAR, d_42 VARCHAR)"}, {"answer": "SELECT region FROM table_name_2 WHERE label = \"central station\"", "question": "Which region had a label of Central Station?", "context": "CREATE TABLE table_name_2 (region VARCHAR, label VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_46 WHERE position = \"centre\" AND pick__number = \"105\"", "question": "What NHL team has a centre and pick number of 105?", "context": "CREATE TABLE table_name_46 (nhl_team VARCHAR, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_13 WHERE nhl_team = \"st. louis blues\"", "question": "What Pick # does the St. Louis Blues have?", "context": "CREATE TABLE table_name_13 (pick__number VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_18 WHERE pick__number = \"108\"", "question": "What is the position of the player with a Pick # of 108?", "context": "CREATE TABLE table_name_18 (position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT position FROM table_name_43 WHERE nhl_team = \"vancouver canucks\" AND pick__number = \"101\"", "question": "What position in the Vancouver Canucks has a Pick # of 101?", "context": "CREATE TABLE table_name_43 (position VARCHAR, nhl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT record FROM table_name_22 WHERE attendance = \"30,452\"", "question": "What was the team's record at the game attended by 30,452?", "context": "CREATE TABLE table_name_22 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_34 WHERE loss = \"crabtree (0-1)\"", "question": "What was the attendance at the game that had a loss of Crabtree (0-1)?", "context": "CREATE TABLE table_name_34 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_22 WHERE runner_s__up = \"chi-chi rodriguez\"", "question": "What races were Chi-Chi Rodriguez the runner-up in?", "context": "CREATE TABLE table_name_22 (tournament VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_12 WHERE runner_s__up = \"isao aoki\"", "question": "What was the margin of victory for Isao Aoki when he was a runner-up?", "context": "CREATE TABLE table_name_12 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_5 WHERE tournament = \"mazda senior tournament players championship\"", "question": "What was the winning score in the mazda senior tournament players championship?", "context": "CREATE TABLE table_name_5 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_16 WHERE winning_score = \u201327(65 - 68 - 64 - 64 = 261)", "question": "Which tournament ended with a winning score of \u201327 (65-68-64-64=261)?", "context": "CREATE TABLE table_name_16 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_39 WHERE date = \"feb 18, 1996\"", "question": "Who was the runner(s)-up for the Feb 18, 1996 tournament?", "context": "CREATE TABLE table_name_39 (runner_s__up VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_10 WHERE laps > 43 AND driver = \"oriol servia\"", "question": "What is Oriol Servia's average Grid on races with more than 43 laps?", "context": "CREATE TABLE table_name_10 (grid INTEGER, laps VARCHAR, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_name_96 WHERE points = 19", "question": "How many laps were there in the race that netted the winner 19 points?", "context": "CREATE TABLE table_name_96 (laps VARCHAR, points VARCHAR)"}, {"answer": "SELECT season FROM table_name_96 WHERE opponent = \"necaxa\"", "question": "In what Season is Necaxa an Opponent?", "context": "CREATE TABLE table_name_96 (season VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT season FROM table_name_97 WHERE opponent = \"victoria\"", "question": "In what season is Victoria the Opponent?", "context": "CREATE TABLE table_name_97 (season VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT authority FROM table_name_32 WHERE decile = 6 AND name = \"pongaroa school\"", "question": "Name the authority when the decile is 6 for pongaroa school", "context": "CREATE TABLE table_name_32 (authority VARCHAR, decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT years FROM table_name_48 WHERE name = \"dannevirke south school\"", "question": "Name the years for dannevirke south school", "context": "CREATE TABLE table_name_48 (years VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(decile) FROM table_name_78 WHERE authority = \"state\" AND area = \"eketahuna\" AND roll > 44", "question": "Name the least decile for state authority and area of eketahuna with roll more than 44", "context": "CREATE TABLE table_name_78 (decile INTEGER, roll VARCHAR, authority VARCHAR, area VARCHAR)"}, {"answer": "SELECT name FROM table_name_16 WHERE area = \"eketahuna\"", "question": "Tell me the name with area of eketahuna", "context": "CREATE TABLE table_name_16 (name VARCHAR, area VARCHAR)"}, {"answer": "SELECT completed FROM table_name_28 WHERE launched = \"12 april 1934\"", "question": "Name what was completed on 12 april 1934", "context": "CREATE TABLE table_name_28 (completed VARCHAR, launched VARCHAR)"}, {"answer": "SELECT launched FROM table_name_91 WHERE completed = \"13 september 1934\"", "question": "Name the launched for 13 september 1934 completion", "context": "CREATE TABLE table_name_91 (launched VARCHAR, completed VARCHAR)"}, {"answer": "SELECT ship FROM table_name_22 WHERE launched = \"29 may 1934\"", "question": "Name the ship launched 29 may 1934", "context": "CREATE TABLE table_name_22 (ship VARCHAR, launched VARCHAR)"}, {"answer": "SELECT laid_down FROM table_name_39 WHERE launched = \"16 february 1934\"", "question": "Name the laid down for launched being 16 february 1934", "context": "CREATE TABLE table_name_39 (laid_down VARCHAR, launched VARCHAR)"}, {"answer": "SELECT pennant_number FROM table_name_43 WHERE launched = \"29 march 1934\" AND completed = \"30 october 1934\"", "question": "Name the pennant number for completion of 30 october 1934 and launched 29 march 1934", "context": "CREATE TABLE table_name_43 (pennant_number VARCHAR, launched VARCHAR, completed VARCHAR)"}, {"answer": "SELECT laid_down FROM table_name_67 WHERE completed = \"22 october 1934\"", "question": "Name the laid down for completed of 22 october 1934", "context": "CREATE TABLE table_name_67 (laid_down VARCHAR, completed VARCHAR)"}, {"answer": "SELECT MIN(votes) FROM table_name_94 WHERE rank = \"5th\" AND riding = \"victoria\"", "question": "what is the lowest votes of the candidate ranked 5th and riding in victoria?", "context": "CREATE TABLE table_name_94 (votes INTEGER, rank VARCHAR, riding VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_21 WHERE result = \"aus by 295 runs\"", "question": "Which home captian has aus by 295 runs as the result?", "context": "CREATE TABLE table_name_21 (home_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_11 WHERE venue = \"adelaide oval\"", "question": "Which result has adelaide oval as the venue?", "context": "CREATE TABLE table_name_11 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT height FROM table_name_44 WHERE position = \"guard\" AND year_born = 1982", "question": "Born in 1982, this guard has what listed as a height?", "context": "CREATE TABLE table_name_44 (height VARCHAR, position VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT points_classification_navy_blue_jersey FROM table_name_8 WHERE general_classification_yellow_jersey = \"graeme brown\"", "question": "Which Points Classification Navy Blue Jersey that has a  Jersey of Graeme Brown", "context": "CREATE TABLE table_name_8 (points_classification_navy_blue_jersey VARCHAR, general_classification_yellow_jersey VARCHAR)"}, {"answer": "SELECT intermediate_sprints_classification_red_jersey FROM table_name_34 WHERE mountains_classification_green_jersey = \"murilo antonio fischer\" AND points_classification_navy_blue_jersey = \"jose joaquin rojas gil\"", "question": "What is the Intermediate Sprints Classification Red Jersey that has a Green Jersey of Murilo Antonio Fischer, and  Jose Joaquin Rojas Gil?", "context": "CREATE TABLE table_name_34 (intermediate_sprints_classification_red_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, points_classification_navy_blue_jersey VARCHAR)"}, {"answer": "SELECT general_classification_yellow_jersey FROM table_name_74 WHERE mountains_classification_green_jersey = \"murilo antonio fischer\" AND team_classification = \"lampre-fondital\"", "question": "What is General Classification Yellow Jersey that has a  Murilo Antonio Fischer, and  Lampre-Fondital?", "context": "CREATE TABLE table_name_74 (general_classification_yellow_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT points_classification_navy_blue_jersey FROM table_name_11 WHERE mountains_classification_green_jersey = \"yoann le boulanger\" AND team_classification = \"gerolsteiner\"", "question": "What is the Points Classification Navy Blue Jersey that has  Yoann le Boulanger, and  Gerolsteiner?", "context": "CREATE TABLE table_name_11 (points_classification_navy_blue_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, team_classification VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_75 WHERE date = \"april 7\"", "question": "What was the attendance on April 7?", "context": "CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT northumberland_senior_benevolent_bowl FROM table_name_25 WHERE northumberland_minor_cup = \"whitley bay 'a'\"", "question": "Who won the Northumberland Senior Benevolent Bowl, when the Northumberland Minor Cup was won by Whitley Bay 'a'?", "context": "CREATE TABLE table_name_25 (northumberland_senior_benevolent_bowl VARCHAR, northumberland_minor_cup VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_6 WHERE country = \"netherlands\"", "question": "What was the film nomination in the Netherlands?", "context": "CREATE TABLE table_name_6 (film_title_used_in_nomination VARCHAR, country VARCHAR)"}, {"answer": "SELECT director FROM table_name_6 WHERE original_title = \"turks fruit\"", "question": "Who directed Turks Fruit?", "context": "CREATE TABLE table_name_6 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT director FROM table_name_65 WHERE country = \"poland\"", "question": "What director is from Poland?", "context": "CREATE TABLE table_name_65 (director VARCHAR, country VARCHAR)"}, {"answer": "SELECT director FROM table_name_60 WHERE language = \"romanian\"", "question": "Who directed the Romanian film?", "context": "CREATE TABLE table_name_60 (director VARCHAR, language VARCHAR)"}, {"answer": "SELECT place FROM table_name_18 WHERE money___$__ > 400", "question": "What placement gets more than $400?", "context": "CREATE TABLE table_name_18 (place VARCHAR, money___$__ INTEGER)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_85 WHERE to_par = \"+2\" AND player = \"toney penna\"", "question": "What's the average payout of toney penna with a +2 par?", "context": "CREATE TABLE table_name_85 (money___ INTEGER, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_91 WHERE date = \"april 16\"", "question": "What is the attendance number of the game on April 16?", "context": "CREATE TABLE table_name_91 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(pick) FROM table_name_81 WHERE round < 3 AND college = \"northwestern state\"", "question": "What was the average pick of northwestern state college under round 3?", "context": "CREATE TABLE table_name_81 (pick INTEGER, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT position FROM table_name_32 WHERE college = \"rutgers\"", "question": "Rutgers college holds what position?", "context": "CREATE TABLE table_name_32 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(pick) FROM table_name_97 WHERE position = \"center\" AND name = \"les studdard\" AND round < 10", "question": "In what round smaller than 10, was the center les studdard picked in?", "context": "CREATE TABLE table_name_97 (pick INTEGER, round VARCHAR, position VARCHAR, name VARCHAR)"}, {"answer": "SELECT college FROM table_name_80 WHERE round < 2", "question": "Which college had rounds smaller than 2?", "context": "CREATE TABLE table_name_80 (college VARCHAR, round INTEGER)"}, {"answer": "SELECT record FROM table_name_8 WHERE score = \"7 - 2\"", "question": "What record was reached with a score of 7 - 2?", "context": "CREATE TABLE table_name_8 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT club FROM table_name_78 WHERE rank = \"5\"", "question": "What is the name of the club with a rank of 5?", "context": "CREATE TABLE table_name_78 (club VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_25 WHERE games = \"276\"", "question": "What is the rank that shows 276 games?", "context": "CREATE TABLE table_name_25 (rank VARCHAR, games VARCHAR)"}, {"answer": "SELECT rank FROM table_name_64 WHERE games = \"426\"", "question": "What is the rank that shows 426 games?", "context": "CREATE TABLE table_name_64 (rank VARCHAR, games VARCHAR)"}, {"answer": "SELECT games FROM table_name_39 WHERE player = \"roger merrett\"", "question": "What is the number of games for Roger Merrett?", "context": "CREATE TABLE table_name_39 (games VARCHAR, player VARCHAR)"}, {"answer": "SELECT engine FROM table_name_98 WHERE finish = \"27\"", "question": "What Engine had a Finish of 27?", "context": "CREATE TABLE table_name_98 (engine VARCHAR, finish VARCHAR)"}, {"answer": "SELECT engine FROM table_name_72 WHERE chassis = \"march 85c\"", "question": "What Engine had a chassis of March 85c?", "context": "CREATE TABLE table_name_72 (engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_68 WHERE finish = \"21\"", "question": "What Engine has a Finish of 21?", "context": "CREATE TABLE table_name_68 (engine VARCHAR, finish VARCHAR)"}, {"answer": "SELECT platform FROM table_name_84 WHERE publisher = \"mindark\"", "question": "On what platform does Mindark publish?", "context": "CREATE TABLE table_name_84 (platform VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT year FROM table_name_14 WHERE developer = \"avatar reality\"", "question": "What year did Avatar Reality release a game?", "context": "CREATE TABLE table_name_14 (year VARCHAR, developer VARCHAR)"}, {"answer": "SELECT publisher FROM table_name_35 WHERE title = \"crysis warhead\"", "question": "What publisher created Crysis Warhead?", "context": "CREATE TABLE table_name_35 (publisher VARCHAR, title VARCHAR)"}, {"answer": "SELECT platform FROM table_name_37 WHERE publisher = \"mindark\"", "question": "For what platform does Mindark publish?", "context": "CREATE TABLE table_name_37 (platform VARCHAR, publisher VARCHAR)"}, {"answer": "SELECT publisher FROM table_name_14 WHERE developer = \"paleo entertainment\"", "question": "What publisher does Paleo Entertainment develop for?", "context": "CREATE TABLE table_name_14 (publisher VARCHAR, developer VARCHAR)"}, {"answer": "SELECT developer FROM table_name_71 WHERE title = \"vigilance\"", "question": "Who was the developer for Vigilance?", "context": "CREATE TABLE table_name_71 (developer VARCHAR, title VARCHAR)"}, {"answer": "SELECT player FROM table_name_17 WHERE home_town = \"swift current, ab\"", "question": "Which player's home town is Swift Current, AB?", "context": "CREATE TABLE table_name_17 (player VARCHAR, home_town VARCHAR)"}, {"answer": "SELECT position FROM table_name_13 WHERE number = \"23\"", "question": "Which position does number 23 play?", "context": "CREATE TABLE table_name_13 (position VARCHAR, number VARCHAR)"}, {"answer": "SELECT number FROM table_name_22 WHERE position = \"skaters\"", "question": "Which number plays the skaters position?", "context": "CREATE TABLE table_name_22 (number VARCHAR, position VARCHAR)"}, {"answer": "SELECT weight FROM table_name_31 WHERE number = \"26\"", "question": "How much does number 26 weigh?", "context": "CREATE TABLE table_name_31 (weight VARCHAR, number VARCHAR)"}, {"answer": "SELECT family FROM table_name_40 WHERE name = \"humpback whale\"", "question": "Which family has a Name of humpback whale?", "context": "CREATE TABLE table_name_40 (family VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_20 WHERE red_list > 0 AND species_authority = \"balaenoptera acutorostrata lac\u00e9p\u00e8de, 1804\"", "question": "Which name has a Red List larger than 0, and a Species/Authority of balaenoptera acutorostrata lac\u00e9p\u00e8de, 1804?", "context": "CREATE TABLE table_name_20 (name VARCHAR, red_list VARCHAR, species_authority VARCHAR)"}, {"answer": "SELECT species_authority FROM table_name_44 WHERE name = \"true's beaked whale\"", "question": "Which Species/Authority has a Name of true's beaked whale?", "context": "CREATE TABLE table_name_44 (species_authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT engine_s_ FROM table_name_41 WHERE points = \"2\"", "question": "What engine has 2 points?", "context": "CREATE TABLE table_name_41 (engine_s_ VARCHAR, points VARCHAR)"}, {"answer": "SELECT tyres FROM table_name_37 WHERE year > 1974 AND points = \"5\"", "question": "What tyres are associated with a year after 1974 and 5 points?", "context": "CREATE TABLE table_name_37 (tyres VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT engine_s_ FROM table_name_71 WHERE chassis = \"ensign n177\" AND year < 1978", "question": "What is the engine(s) on the car before 1978 with ensign n177 chassis?", "context": "CREATE TABLE table_name_71 (engine_s_ VARCHAR, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT tyres FROM table_name_15 WHERE points = \"1\" AND chassis = \"ensign n177\"", "question": "What tyres have 1 point and an ensign n177 chassis?", "context": "CREATE TABLE table_name_15 (tyres VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_12 WHERE year < 1987 AND engine = \"bmw straight-4 (t/c)\" AND pts > 2", "question": "Before 1987, what is the Entrant with bmw straight-4 (t/c) as Engine and a great than 2 Pts?", "context": "CREATE TABLE table_name_12 (entrant VARCHAR, pts VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_46 WHERE name = \"ku hyo-jin\"", "question": "What did Ku Hyo-Jin rank?", "context": "CREATE TABLE table_name_46 (rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_55 WHERE time = \"2:25.86\" AND lane < 7", "question": "What was the rank of the person who swam in Lane 7 with a time of 2:25.86?", "context": "CREATE TABLE table_name_55 (rank INTEGER, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT laid_down FROM table_name_57 WHERE ship = \"fearless\"", "question": "Which Laid down has a Ship of fearless?", "context": "CREATE TABLE table_name_57 (laid_down VARCHAR, ship VARCHAR)"}, {"answer": "SELECT ship FROM table_name_43 WHERE pennant_number = \"h.69\"", "question": "Which ship has a Pennant number of h.69?", "context": "CREATE TABLE table_name_43 (ship VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT launched FROM table_name_36 WHERE commissioned = \"6 june 1935\"", "question": "Which Launched has Commissioned 6 june 1935?", "context": "CREATE TABLE table_name_36 (launched VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT launched FROM table_name_64 WHERE ship = \"fearless\"", "question": "What launch has a Ship of fearless?", "context": "CREATE TABLE table_name_64 (launched VARCHAR, ship VARCHAR)"}, {"answer": "SELECT commissioned FROM table_name_40 WHERE launched = \"28 june 1934\" AND pennant_number = \"h.78\"", "question": "Which commission was launched 28 june 1934, and has a Pennant number of h.78?", "context": "CREATE TABLE table_name_40 (commissioned VARCHAR, launched VARCHAR, pennant_number VARCHAR)"}, {"answer": "SELECT year FROM table_name_2 WHERE round = \"17\"", "question": "Which year has a Round of 17?", "context": "CREATE TABLE table_name_2 (year VARCHAR, round VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_73 WHERE club = \"essendon\" AND score = \"13.4.82\"", "question": "Which opponent has a Club of essendon, and a Score of 13.4.82?", "context": "CREATE TABLE table_name_73 (opponent VARCHAR, club VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_89 WHERE score = \"15.4.94\"", "question": "Which opponent has a Score of 15.4.94?", "context": "CREATE TABLE table_name_89 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_34 WHERE round = \"12\"", "question": "Which opponent has a Round of 12?", "context": "CREATE TABLE table_name_34 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT quarter FROM table_name_7 WHERE round = \"17\"", "question": "Which Quarter has a Round of 17?", "context": "CREATE TABLE table_name_7 (quarter VARCHAR, round VARCHAR)"}, {"answer": "SELECT whenbuilt FROM table_name_32 WHERE name = \"moray firth\"", "question": "When was moray firth built?", "context": "CREATE TABLE table_name_32 (whenbuilt VARCHAR, name VARCHAR)"}, {"answer": "SELECT withdrawn FROM table_name_93 WHERE name = \"charles dickens\"", "question": "Name the withdrawn for charles dickens", "context": "CREATE TABLE table_name_93 (withdrawn VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_24 WHERE date = \"july 27\"", "question": "Which opponent has a Date of july 27?", "context": "CREATE TABLE table_name_24 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_69 WHERE year < 2008 AND tournament = \"world race walking cup\"", "question": "What Venue held the World Race Walking Cup tourney before 2008?", "context": "CREATE TABLE table_name_69 (venue VARCHAR, year VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT event FROM table_name_8 WHERE venue = \"helsinki, finland\"", "question": "What tournement was held in Helsinki, Finland in 2005?", "context": "CREATE TABLE table_name_8 (event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_12 WHERE tournament = \"olympic games\" AND year = 2012", "question": "What Venue held the Olympic games in 2012?", "context": "CREATE TABLE table_name_12 (venue VARCHAR, tournament VARCHAR, year VARCHAR)"}, {"answer": "SELECT website FROM table_name_27 WHERE name = \"yamagata international documentary film festival\"", "question": "What's the website for the yamagata international documentary film festival?", "context": "CREATE TABLE table_name_27 (website VARCHAR, name VARCHAR)"}, {"answer": "SELECT rank FROM table_name_51 WHERE qual = \"135.328\"", "question": "How did Johnnie Parsons finish when his qualifying time was 135.328?", "context": "CREATE TABLE table_name_51 (rank VARCHAR, qual VARCHAR)"}, {"answer": "SELECT rank FROM table_name_67 WHERE laps > 200", "question": "What was Johnnie Parsons rank when he completed over 200 laps?", "context": "CREATE TABLE table_name_67 (rank VARCHAR, laps INTEGER)"}, {"answer": "SELECT podiums FROM table_name_62 WHERE wins = \"2\" AND season = 2008", "question": "What is the value for Podiums when the value for Wins is 2, and when the Season is 2008?", "context": "CREATE TABLE table_name_62 (podiums VARCHAR, wins VARCHAR, season VARCHAR)"}, {"answer": "SELECT position FROM table_name_98 WHERE series = \"macau grand prix\" AND season < 2007", "question": "What is the value for Position, when the Series is the Macau Grand Prix, and when the Season is before 2007?", "context": "CREATE TABLE table_name_98 (position VARCHAR, series VARCHAR, season VARCHAR)"}, {"answer": "SELECT wins FROM table_name_67 WHERE position = \"7th\"", "question": "What is the value for Wins when the Position is 7th?", "context": "CREATE TABLE table_name_67 (wins VARCHAR, position VARCHAR)"}, {"answer": "SELECT series FROM table_name_28 WHERE season > 2008 AND podiums = \"3\" AND position = \"8th\"", "question": "What is the Series, when the Season is after 2008, when the value for Podiums is 3, and when the Position is 8th?", "context": "CREATE TABLE table_name_28 (series VARCHAR, position VARCHAR, season VARCHAR, podiums VARCHAR)"}, {"answer": "SELECT podiums FROM table_name_65 WHERE season > 2008 AND series = \"gp2 asia series\"", "question": "What is the value for Podiums, when the Season is after 2008, and when the Series is GP2 Asia Series?", "context": "CREATE TABLE table_name_65 (podiums VARCHAR, season VARCHAR, series VARCHAR)"}, {"answer": "SELECT wins FROM table_name_41 WHERE series = \"gp2 series\" AND season < 2009", "question": "What is the value for Wins, when the Series is GP2 Series, and when the Season is before 2009?", "context": "CREATE TABLE table_name_41 (wins VARCHAR, series VARCHAR, season VARCHAR)"}, {"answer": "SELECT loss FROM table_name_68 WHERE opponent = \"indians\" AND record = \"15-15\"", "question": "What was the loss of the game against the Indians when the record was 15-15?", "context": "CREATE TABLE table_name_68 (loss VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_61 WHERE record = \"23-23\"", "question": "What is the total attendance for games when the record was 23-23?", "context": "CREATE TABLE table_name_61 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_61 WHERE division = \"conference\" AND league_pos = \"9th\" AND lost < 13", "question": "What is the total number of points for the conference division, a league position of 9th, and a lost result less than 13?", "context": "CREATE TABLE table_name_61 (points VARCHAR, lost VARCHAR, division VARCHAR, league_pos VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_36 WHERE league_pos = \"15th\" AND lost > 17", "question": "What is the drawn result with a league position of 15th and a lost result that is more than 17?", "context": "CREATE TABLE table_name_36 (drawn INTEGER, league_pos VARCHAR, lost VARCHAR)"}, {"answer": "SELECT competition FROM table_name_6 WHERE 2010 = \"dnp\"", "question": "Name the competition of 2010 of dnp", "context": "CREATE TABLE table_name_6 (competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE visitor = \"columbus\"", "question": "Name the score for columbus visitor", "context": "CREATE TABLE table_name_73 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_98 WHERE visitor = \"edmonton\"", "question": "Name the least attendance with visitor of edmonton", "context": "CREATE TABLE table_name_98 (attendance INTEGER, visitor VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_17 WHERE name = \"sue rolph\" AND rank < 5", "question": "What is the lowest numbered lane of Sue Rolph with a rank under 5?", "context": "CREATE TABLE table_name_17 (lane INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT lane FROM table_name_21 WHERE time = 55.69", "question": "What is the lane number of the swimmer with a time of 55.69?", "context": "CREATE TABLE table_name_21 (lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(league_cup) FROM table_name_9 WHERE championship = 4", "question": "What is the lowest number of league cups with 4 championships?", "context": "CREATE TABLE table_name_9 (league_cup INTEGER, championship VARCHAR)"}, {"answer": "SELECT MAX(fa_cup) FROM table_name_43 WHERE total = \"0 4\" AND championship < 4", "question": "What is the highest value for FA cups, that has a total of 0 4, with less than 4 championships?", "context": "CREATE TABLE table_name_43 (fa_cup INTEGER, total VARCHAR, championship VARCHAR)"}, {"answer": "SELECT MIN(fa_cup) FROM table_name_3 WHERE total = \"0 2\" AND league_cup < 0", "question": "How many FA cups were there without any league cups, but a total of 0 2?", "context": "CREATE TABLE table_name_3 (fa_cup INTEGER, total VARCHAR, league_cup VARCHAR)"}, {"answer": "SELECT player FROM table_name_99 WHERE pick__number = \"41\"", "question": "Who is Pick #41?", "context": "CREATE TABLE table_name_99 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT player FROM table_name_98 WHERE pick__number = \"40\"", "question": "Which player was Pick #40?", "context": "CREATE TABLE table_name_98 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_23 WHERE player = \"dave bonter\"", "question": "Which team picked Dave Bonter?", "context": "CREATE TABLE table_name_23 (nhl_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_81 WHERE college_junior_club_team = \"toronto marlboros (oha)\" AND pick__number = \"32\"", "question": "Which team picked the player from the Toronto Marlboros (OHA) as Pick #32?", "context": "CREATE TABLE table_name_81 (nhl_team VARCHAR, college_junior_club_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_25 WHERE league = \"eredivisie\" AND manager = \"jurrie koolhof\" AND goals < 10", "question": "Name the most games for eredivisie when jurrie koolhof is manager when goals are less than 10", "context": "CREATE TABLE table_name_25 (games INTEGER, goals VARCHAR, league VARCHAR, manager VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_98 WHERE games > 34 AND season = \"2009-10\"", "question": "Name the least rank when games are more than 34 and the season is 2009-10", "context": "CREATE TABLE table_name_98 (rank INTEGER, games VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_52 WHERE team = \"mv agusta\" AND rank = \"13th\" AND wins < 0", "question": "Name the least point for mv agusta and rank of 13th for wins less than 0", "context": "CREATE TABLE table_name_52 (points INTEGER, wins VARCHAR, team VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_10 WHERE wins = 0 AND points = 2", "question": "Name the rank for wins of 0 and points of 2", "context": "CREATE TABLE table_name_10 (rank VARCHAR, wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_31 WHERE year < 1955 AND rank = \"5th\" AND wins < 0", "question": "Name the total number of points with year less than 1955 and rank of 5th with wins less than 0", "context": "CREATE TABLE table_name_31 (points VARCHAR, wins VARCHAR, year VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(decile) FROM table_name_99 WHERE area = \"normanby\" AND roll < 157", "question": "What is the total decile in the area of Normanby with a roller smaller than 157?", "context": "CREATE TABLE table_name_99 (decile INTEGER, area VARCHAR, roll VARCHAR)"}, {"answer": "SELECT authority FROM table_name_62 WHERE decile > 5 AND roll = 170", "question": "What Authority has a decile greater than 5, with a roll of 170?", "context": "CREATE TABLE table_name_62 (authority VARCHAR, decile VARCHAR, roll VARCHAR)"}, {"answer": "SELECT AVG(goals_against_average) FROM table_name_33 WHERE games_played > 78", "question": "What is the average goals against average for those playing more than 78 games?", "context": "CREATE TABLE table_name_33 (goals_against_average INTEGER, games_played INTEGER)"}, {"answer": "SELECT player FROM table_name_50 WHERE games_played > 46 AND goals_allowed < 195", "question": "Who played over 46 games and allowed less than 195 goals?", "context": "CREATE TABLE table_name_50 (player VARCHAR, games_played VARCHAR, goals_allowed VARCHAR)"}, {"answer": "SELECT player FROM table_name_88 WHERE goals_against_average > 2.07 AND games_played = 44", "question": "Who played 44 games who averaged over 2.07 goals against?", "context": "CREATE TABLE table_name_88 (player VARCHAR, goals_against_average VARCHAR, games_played VARCHAR)"}, {"answer": "SELECT how_ashtagrama_iyers_say_it FROM table_name_6 WHERE pure_tamil = \"engal veetil, engal agathil\"", "question": "Name how ashtagrama lyers say it for engal veetil, engal agathil", "context": "CREATE TABLE table_name_6 (how_ashtagrama_iyers_say_it VARCHAR, pure_tamil VARCHAR)"}, {"answer": "SELECT english_meaning FROM table_name_8 WHERE how_other_tamils_say_it = \"engey poringo\"", "question": "Name the english meaning for engey poringo", "context": "CREATE TABLE table_name_8 (english_meaning VARCHAR, how_other_tamils_say_it VARCHAR)"}, {"answer": "SELECT how_other_iyers_say_it FROM table_name_22 WHERE how_ashtagrama_iyers_say_it = \"enga ullale\"", "question": "Name how other lyers say enga ullale", "context": "CREATE TABLE table_name_22 (how_other_iyers_say_it VARCHAR, how_ashtagrama_iyers_say_it VARCHAR)"}, {"answer": "SELECT pure_tamil FROM table_name_97 WHERE how_other_iyers_say_it = \"enga athilae\"", "question": "Name the pure tamil for enga athilae", "context": "CREATE TABLE table_name_97 (pure_tamil VARCHAR, how_other_iyers_say_it VARCHAR)"}, {"answer": "SELECT company FROM table_name_59 WHERE built = 1998 AND ship = \"excellent\"", "question": "What company built the ship named excellent in 1998?", "context": "CREATE TABLE table_name_59 (company VARCHAR, built VARCHAR, ship VARCHAR)"}, {"answer": "SELECT COUNT(built) FROM table_name_68 WHERE registry = \"united kingdom\" AND passengers = 1 OFFSET 300", "question": "What's the total built by the United Kingdom and holds 1,300 passengers?", "context": "CREATE TABLE table_name_68 (built VARCHAR, registry VARCHAR, passengers VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_67 WHERE stadium = \"ralph wilson stadium\"", "question": "Name the visiting team for stadium of ralph wilson stadium", "context": "CREATE TABLE table_name_67 (visiting_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE visiting_team = \"denver broncos\"", "question": "Name the date for visiting team of denver broncos", "context": "CREATE TABLE table_name_72 (date VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_46 WHERE host_team = \"san diego chargers\" AND final_score = \"23-45\"", "question": "Name the stadium with host team of san diego chargers and final score of 23-45", "context": "CREATE TABLE table_name_46 (stadium VARCHAR, host_team VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_35 WHERE final_score = \"20-10\"", "question": "Name the stadium with final score of 20-10", "context": "CREATE TABLE table_name_35 (stadium VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_47 WHERE visiting_team = \"philadelphia eagles\"", "question": "Name the date with visiting team of philadelphia eagles", "context": "CREATE TABLE table_name_47 (date VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_93 WHERE date = \"january 1 (2006)\"", "question": "Name the host team for january 1 (2006)", "context": "CREATE TABLE table_name_93 (host_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_36 WHERE school = \"delmar\"", "question": "What team belongs to Delmar?", "context": "CREATE TABLE table_name_36 (team VARCHAR, school VARCHAR)"}, {"answer": "SELECT division_record FROM table_name_63 WHERE school = \"laurel\"", "question": "What was Laurel's division record?", "context": "CREATE TABLE table_name_63 (division_record VARCHAR, school VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_90 WHERE code__iata_icao_ = \"bcm/lrbc\" AND 2010 > 240 OFFSET 735", "question": "What is the rank of airport with a (IATA/ICAO) of bcm/lrbc code and an amount of 240,735 in 2010?", "context": "CREATE TABLE table_name_90 (rank INTEGER, code__iata_icao_ VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_20 WHERE code__iata_icao_ = \"cra/lrcv\"", "question": "What is the average in 2010 of the team with a code of (IATA/ICAO) or cra/lrcv?", "context": "CREATE TABLE table_name_20 (code__iata_icao_ VARCHAR)"}, {"answer": "SELECT state_ranked_in_partisan_order FROM table_name_28 WHERE percentage_republicans = \"67%\" AND republican__democratic = \"24/12\"", "question": "Which state has 67% Republicans and a ratio of 24/12 of Republicans to Democrats?", "context": "CREATE TABLE table_name_28 (state_ranked_in_partisan_order VARCHAR, percentage_republicans VARCHAR, republican__democratic VARCHAR)"}, {"answer": "SELECT state_ranked_in_partisan_order FROM table_name_66 WHERE percentage_democrats = \"25%\" AND republican__democratic = \"6/2\"", "question": "What state is 25% Democrats has a ratio of 6/2 of Republicans to Democrats?", "context": "CREATE TABLE table_name_66 (state_ranked_in_partisan_order VARCHAR, percentage_democrats VARCHAR, republican__democratic VARCHAR)"}, {"answer": "SELECT republican__democratic FROM table_name_91 WHERE state_ranked_in_partisan_order = \"south carolina\"", "question": "What is the ratio of Republicans to Democrats in South Carolina?", "context": "CREATE TABLE table_name_91 (republican__democratic VARCHAR, state_ranked_in_partisan_order VARCHAR)"}, {"answer": "SELECT republican_seat_plurality FROM table_name_30 WHERE republican__democratic = \"12/4\"", "question": "What is the Republican seat plurality of the state with a ratio of 12/4 Republicans to Democrats?", "context": "CREATE TABLE table_name_30 (republican_seat_plurality VARCHAR, republican__democratic VARCHAR)"}, {"answer": "SELECT republican_seat_plurality FROM table_name_18 WHERE state_ranked_in_partisan_order = \"north carolina\"", "question": "What is the Republican seat plurality of North Carolina?", "context": "CREATE TABLE table_name_18 (republican_seat_plurality VARCHAR, state_ranked_in_partisan_order VARCHAR)"}, {"answer": "SELECT MAX(round_4) FROM table_name_56 WHERE score = 284 AND year > 1998", "question": "What is the highest score in round 4 and total of 284 in a year more recent than 1998?", "context": "CREATE TABLE table_name_56 (round_4 INTEGER, score VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(money__) AS \uffe5_ FROM table_name_65 WHERE round_2 = 65 AND round_4 < 67", "question": "What is the maximum \uffe5 for a round 2 score of 65 and a round 4 score smaller than 67?", "context": "CREATE TABLE table_name_65 (money__ INTEGER, round_2 VARCHAR, round_4 VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_23 WHERE tournament = \"dunlop phoenix tournament\" AND round_4 > 72", "question": "What is the earliest year when the Dunlop Phoenix Tournament was played with a round 4 score larger than 72?", "context": "CREATE TABLE table_name_23 (year INTEGER, tournament VARCHAR, round_4 VARCHAR)"}, {"answer": "SELECT MIN(round_1) FROM table_name_15 WHERE place = \"t15\" AND year < 1998", "question": "What is the lowest round with a place of t15 in a year earlier than 1998?", "context": "CREATE TABLE table_name_15 (round_1 INTEGER, place VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_61 WHERE driver = \"emerson fittipaldi\" AND event = \"brdc international trophy\"", "question": "Where was the BRDC International Trophy with driver Emerson Fittipaldi held?", "context": "CREATE TABLE table_name_61 (venue VARCHAR, driver VARCHAR, event VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_41 WHERE venue = \"kyalami\" AND driver = \"keke rosberg\"", "question": "What was the most recent race at Kyalami with Keke Rosberg competing?", "context": "CREATE TABLE table_name_41 (year INTEGER, venue VARCHAR, driver VARCHAR)"}, {"answer": "SELECT year FROM table_name_30 WHERE event = \"spanish grand prix\" AND driver = \"emerson fittipaldi\"", "question": "What year was the Spanish Grand Prix where Emerson Fittipaldi drove?", "context": "CREATE TABLE table_name_30 (year VARCHAR, event VARCHAR, driver VARCHAR)"}, {"answer": "SELECT result FROM table_name_51 WHERE venue = \"jarama\" AND driver = \"emerson fittipaldi\"", "question": "What was the outcome for Emerson Fittipaldi in the race held at Jarama?", "context": "CREATE TABLE table_name_51 (result VARCHAR, venue VARCHAR, driver VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_97 WHERE driver = \"wilson fittipaldi\"", "question": "How many years did Wilson Fittipaldi race?", "context": "CREATE TABLE table_name_97 (year VARCHAR, driver VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE loss = \"cox (6\u20132)\"", "question": "What was the score of the game that had a loss of Cox (6\u20132)?", "context": "CREATE TABLE table_name_44 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_74 WHERE loss = \"rojas (9\u20138)\"", "question": "What was the date of the game that had a loss of Rojas (9\u20138)?", "context": "CREATE TABLE table_name_74 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_25 WHERE loss = \"coates (0\u20132)\"", "question": "What was the score of the game that had a loss of Coates (0\u20132)?", "context": "CREATE TABLE table_name_25 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_12 WHERE record = \"58\u201347\"", "question": "What was the score of the game when the record was 58\u201347?", "context": "CREATE TABLE table_name_12 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT english_spelling FROM table_name_24 WHERE hebrew_word = \"\u05d9\u05b0\u05d4\u05d5\u05b9\u05e9\u05b8\u05e4\u05b8\u05d8\"", "question": "How do you spell the Hebrew word \u05d9\u05b0\u05d4\u05d5\u05b9\u05e9\u05b8\u05e4\u05b8\u05d8 in English?", "context": "CREATE TABLE table_name_24 (english_spelling VARCHAR, hebrew_word VARCHAR)"}, {"answer": "SELECT start FROM table_name_96 WHERE year = \"1956\"", "question": "Which start has 1956 as the year?", "context": "CREATE TABLE table_name_96 (start VARCHAR, year VARCHAR)"}, {"answer": "SELECT start FROM table_name_11 WHERE finish = \"32\" AND laps > 6", "question": "Which start has 32 as the finish and laps more than 6?", "context": "CREATE TABLE table_name_11 (start VARCHAR, finish VARCHAR, laps VARCHAR)"}, {"answer": "SELECT start FROM table_name_55 WHERE rank = \"4\"", "question": "Which start has 4 as a rank?", "context": "CREATE TABLE table_name_55 (start VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_25 WHERE start = \"1\"", "question": "How many laps have 1 as the start?", "context": "CREATE TABLE table_name_25 (laps VARCHAR, start VARCHAR)"}, {"answer": "SELECT finish FROM table_name_24 WHERE rank = \"33\" AND laps = 200", "question": "Which finish has 33 as a rank and 200 for laps?", "context": "CREATE TABLE table_name_24 (finish VARCHAR, rank VARCHAR, laps VARCHAR)"}, {"answer": "SELECT finish FROM table_name_95 WHERE rank = \"1\"", "question": "Which finish has 1 as the rank?", "context": "CREATE TABLE table_name_95 (finish VARCHAR, rank VARCHAR)"}, {"answer": "SELECT special_notes FROM table_name_91 WHERE issue_price < 24.95 AND theme = \"edmonton oilers\"", "question": "What are the special notes for an issue price under 24.95 with an edmonton oilers theme?", "context": "CREATE TABLE table_name_91 (special_notes VARCHAR, issue_price VARCHAR, theme VARCHAR)"}, {"answer": "SELECT theme FROM table_name_24 WHERE special_notes = \"from calgary flames gift set\"", "question": "What theme has special notes from calgary flames gift set?", "context": "CREATE TABLE table_name_24 (theme VARCHAR, special_notes VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_10 WHERE issue_price > 15.95 AND special_notes = \"from edmonton oilers gift set\"", "question": "What year has an issue price over 15.95, and a special notes from edmonton oilers gift set?", "context": "CREATE TABLE table_name_10 (year VARCHAR, issue_price VARCHAR, special_notes VARCHAR)"}, {"answer": "SELECT site FROM table_name_28 WHERE superintendent = \"john barry\"", "question": "What is the site when the superintendent was John Barry?", "context": "CREATE TABLE table_name_28 (site VARCHAR, superintendent VARCHAR)"}, {"answer": "SELECT guns FROM table_name_36 WHERE superintendent = \"silas talbot\"", "question": "What is the number of guns when the superintendent was Silas Talbot?", "context": "CREATE TABLE table_name_36 (guns VARCHAR, superintendent VARCHAR)"}, {"answer": "SELECT site FROM table_name_93 WHERE superintendent = \"james sever\"", "question": "What is the site when the superintendent was James Sever?", "context": "CREATE TABLE table_name_93 (site VARCHAR, superintendent VARCHAR)"}, {"answer": "SELECT loss FROM table_name_25 WHERE record = \"65-53\"", "question": "Who was the loss in the game with the record of 65-53?", "context": "CREATE TABLE table_name_25 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_75 WHERE opponent = \"rangers\" AND date = \"august 29\"", "question": "On August 29, What was the record playing against the Rangers?", "context": "CREATE TABLE table_name_75 (record VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_39 WHERE date = \"august 22\"", "question": "On August 22, how many people came to the game?", "context": "CREATE TABLE table_name_39 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(west_indies) FROM table_name_92 WHERE holder_at_the_end_of_the_series = \"west indies\" AND england > 1 AND season = \"1991\"", "question": "When west indes was a holder at the end of the series for the 1991 season with an england greater than 1, what is the smallest west indies?", "context": "CREATE TABLE table_name_92 (west_indies INTEGER, season VARCHAR, holder_at_the_end_of_the_series VARCHAR, england VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE record = \"27-31\"", "question": "When were the Brewers 27-31?", "context": "CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_63 WHERE score = \"2-8\"", "question": "When did the Brewers lose 2-8?", "context": "CREATE TABLE table_name_63 (loss VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_13 WHERE score = \"5-7\"", "question": "When the Brewers score was 5-7, what was the lowest attendance?", "context": "CREATE TABLE table_name_13 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_24 WHERE visiting_team = \"baltimore ravens\"", "question": "Who hosted the visiting team Baltimore Ravens?", "context": "CREATE TABLE table_name_24 (host_team VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_25 WHERE stadium = \"heinz field\"", "question": "What was the final score at Heinz Field?", "context": "CREATE TABLE table_name_25 (final_score VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_11 WHERE host_team = \"atlanta falcons\"", "question": "What is the home stadium of the Atlanta Falcons?", "context": "CREATE TABLE table_name_11 (stadium VARCHAR, host_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE visiting_team = \"new york giants\"", "question": "What date did the New York Giants play as a visiting team?", "context": "CREATE TABLE table_name_34 (date VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_60 WHERE place = \"t1\" AND player = \"tim herron\"", "question": "What is the score of Tim Herron, who placed t1?", "context": "CREATE TABLE table_name_60 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_71 WHERE score = 69 - 69 = 138 AND player = \"fred funk\"", "question": "What place does Fred Funk, who has a score of 69-69=138, have?", "context": "CREATE TABLE table_name_71 (place VARCHAR, player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE player = \"tiger woods\"", "question": "What is Tiger Woods's score?", "context": "CREATE TABLE table_name_1 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE country = \"australia\"", "question": "What is the score of Australia?", "context": "CREATE TABLE table_name_55 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_76 WHERE rider = \"marco melandri\"", "question": "Who was Constructor for rider Marco Melandri?", "context": "CREATE TABLE table_name_76 (constructor VARCHAR, rider VARCHAR)"}, {"answer": "SELECT motorcycle FROM table_name_23 WHERE rider = \"anthony west\"", "question": "Anthony West ride which Motorcyle?", "context": "CREATE TABLE table_name_23 (motorcycle VARCHAR, rider VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_59 WHERE nationality = \"canada\" AND position = \"right wing\" AND pick__number = \"43\"", "question": "What team draft a player from Canada that was picked #43 and plays right wing?", "context": "CREATE TABLE table_name_59 (nhl_team VARCHAR, pick__number VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_34 WHERE player = \"gerry methe\"", "question": "What nationality is Gerry Methe?", "context": "CREATE TABLE table_name_34 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_18 WHERE nationality = \"canada\" AND position = \"left wing\" AND pick__number = \"49\"", "question": "What which player from Canada was picked #49 and plays left wing?", "context": "CREATE TABLE table_name_18 (player VARCHAR, pick__number VARCHAR, nationality VARCHAR, position VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_74 WHERE player = \"dave hynes\"", "question": "What Nationality is Dave Hynes?", "context": "CREATE TABLE table_name_74 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_51 WHERE college_junior_club_team = \"estevan bruins (wchl)\"", "question": "The Estevan Bruins (WCHL) are affiliated with what NHL team?", "context": "CREATE TABLE table_name_51 (nhl_team VARCHAR, college_junior_club_team VARCHAR)"}, {"answer": "SELECT MAX(games) FROM table_name_27 WHERE goals_against < 14 AND wins > 1 AND draws < 2 AND goals_for = 3", "question": "what's the number of games with a Goals Against smaller than 14, and a Wins larger than 1, and a Draws smaller than 2, and a Goals For of 3?", "context": "CREATE TABLE table_name_27 (games INTEGER, goals_for VARCHAR, draws VARCHAR, goals_against VARCHAR, wins VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_85 WHERE games < 7 AND goals_for > 2 AND goals_against < 6 AND draws = 1", "question": "what's the total win count for Games smaller than 7, and a Goals For larger than 2, and a Goals Against smaller than 6, and Draws of 1", "context": "CREATE TABLE table_name_85 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, games VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT SUM(goals_for) FROM table_name_81 WHERE goals_against < 9 AND goal_differential = \"0\" AND draws < 2 AND wins = 1", "question": "for a Goals Against smaller than 9, and a Goal Differential of 0, and a Draws smaller than 2, and a Wins of 1, what's the goal total?", "context": "CREATE TABLE table_name_81 (goals_for INTEGER, wins VARCHAR, draws VARCHAR, goals_against VARCHAR, goal_differential VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_88 WHERE date = \"12 november 2006\"", "question": "What tournament happened on 12 november 2006?", "context": "CREATE TABLE table_name_88 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE date = \"6 june 2010\"", "question": "what was the score on 6 june 2010?", "context": "CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date_made FROM table_name_26 WHERE type = \"railmotor\"", "question": "When was the railmotor made?", "context": "CREATE TABLE table_name_26 (date_made VARCHAR, type VARCHAR)"}, {"answer": "SELECT fleet_numbers FROM table_name_19 WHERE type = \"4-6-4t\"", "question": "What are the fleet number for the 4-6-4t locomotive?", "context": "CREATE TABLE table_name_19 (fleet_numbers VARCHAR, type VARCHAR)"}, {"answer": "SELECT fast_laps FROM table_name_54 WHERE points = \"0\" AND series = \"world series by nissan\"", "question": "How many fast laps have 0 points in the World Series by Nissan?", "context": "CREATE TABLE table_name_54 (fast_laps VARCHAR, points VARCHAR, series VARCHAR)"}, {"answer": "SELECT fast_laps FROM table_name_28 WHERE series = \"world series by nissan\" AND races = \"6\" AND points = \"30\"", "question": "How many fast laps are in 6 races with 30 points in the World Series by Nissan?", "context": "CREATE TABLE table_name_28 (fast_laps VARCHAR, points VARCHAR, series VARCHAR, races VARCHAR)"}, {"answer": "SELECT team FROM table_name_74 WHERE points = \"test driver\"", "question": "Which team has the points category of test driver?", "context": "CREATE TABLE table_name_74 (team VARCHAR, points VARCHAR)"}, {"answer": "SELECT pos FROM table_name_37 WHERE points = \"0\" AND season = \"2007\u201308\"", "question": "What is the position with 0 points in Season of 2007\u201308?", "context": "CREATE TABLE table_name_37 (pos VARCHAR, points VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_69 WHERE points = 6", "question": "Name the least wins for 6 points", "context": "CREATE TABLE table_name_69 (wins INTEGER, points VARCHAR)"}, {"answer": "SELECT wins FROM table_name_15 WHERE year = 1963 AND team = \"bultaco\"", "question": "Name the wins for 1963 bultaco", "context": "CREATE TABLE table_name_15 (wins VARCHAR, year VARCHAR, team VARCHAR)"}, {"answer": "SELECT director FROM table_name_49 WHERE year > 2008 AND nationality_of_director = \"lebanon\"", "question": "Year larger than 2008, and a Nationality of director of lebanon is what director?", "context": "CREATE TABLE table_name_49 (director VARCHAR, year VARCHAR, nationality_of_director VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_52 WHERE film = \"taukukauppiaat\"", "question": "ilm of taukukauppiaat has how many total number of years?", "context": "CREATE TABLE table_name_52 (year VARCHAR, film VARCHAR)"}, {"answer": "SELECT film FROM table_name_10 WHERE award = \"troisi\u00e8me prix\" AND year < 2010 AND director = \"jan komasa\"", "question": "Award of troisi\u00e8me prix, and a Year smaller than 2010, and a Director of jan komasa is what film?", "context": "CREATE TABLE table_name_10 (film VARCHAR, director VARCHAR, award VARCHAR, year VARCHAR)"}, {"answer": "SELECT nationality_of_director FROM table_name_65 WHERE film = \"um sol alaranjado\"", "question": "Film of um sol alaranjado director is what nationality?", "context": "CREATE TABLE table_name_65 (nationality_of_director VARCHAR, film VARCHAR)"}, {"answer": "SELECT position FROM table_name_39 WHERE round = 5 AND college = \"alabama state\"", "question": "What is the position for round 5 from alabama state?", "context": "CREATE TABLE table_name_39 (position VARCHAR, round VARCHAR, college VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_37 WHERE overall > 131 AND position = \"wide receiver\" AND round < 5", "question": "what is the pick # when overall is more than 131, position is wide receiver and the round is less than 5?", "context": "CREATE TABLE table_name_37 (pick__number VARCHAR, round VARCHAR, overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_53 WHERE name = \"anthony gonzalez\"", "question": "what is the highest round for anthony gonzalez?", "context": "CREATE TABLE table_name_53 (round INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_56 WHERE name = \"brannon condren\" AND overall > 131", "question": "How many times is brannon condren with and overall more than 131 drafted?", "context": "CREATE TABLE table_name_56 (round VARCHAR, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT rider FROM table_name_10 WHERE time_retired = \"+31.426\"", "question": "Which rider has the time of +31.426?", "context": "CREATE TABLE table_name_10 (rider VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(grid) FROM table_name_9 WHERE manufacturer = \"suzuki\" AND time_retired = \"+1:01.894\"", "question": "What is the grid for the rider who rides a Suzuki and has the time of +1:01.894?", "context": "CREATE TABLE table_name_9 (grid INTEGER, manufacturer VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT score FROM table_name_87 WHERE country = \"australia\" AND place = \"4\"", "question": "What is the score for Australia with a place of 4?", "context": "CREATE TABLE table_name_87 (score VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_66 WHERE to_par = \"e\" AND player = \"arron oberholser\"", "question": "What is the place of To par of e when Arron Oberholser was the player ?", "context": "CREATE TABLE table_name_66 (place VARCHAR, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_83 WHERE place = \"t6\" AND player = \"k.j. choi\"", "question": "What is the score with a place of t6 for the player k.j. choi?", "context": "CREATE TABLE table_name_83 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_3 WHERE player = \"tiger woods\"", "question": "What is the country for the player Tiger Woods?", "context": "CREATE TABLE table_name_3 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_30 WHERE score = 72 - 68 - 70 = 210", "question": "What is the name of the player with a score of 72-68-70=210?", "context": "CREATE TABLE table_name_30 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_85 WHERE place = \"t6\" AND country = \"united states\"", "question": "What is the name of the player with t6 as his place and a country of United states?", "context": "CREATE TABLE table_name_85 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT fineness FROM table_name_11 WHERE year = 2008 AND reverse = \"chinese cuju sport\"", "question": "What is the fineness of the 2008 chinese cuju sport Reverse?", "context": "CREATE TABLE table_name_11 (fineness VARCHAR, year VARCHAR, reverse VARCHAR)"}, {"answer": "SELECT diameter FROM table_name_49 WHERE year = 2006 AND reverse = \"equestrian\"", "question": "What's the diameter of the 2006 equestrian Reverse?", "context": "CREATE TABLE table_name_49 (diameter VARCHAR, year VARCHAR, reverse VARCHAR)"}, {"answer": "SELECT denomination FROM table_name_80 WHERE year = 2006", "question": "What denomination was produced in 2006?", "context": "CREATE TABLE table_name_80 (denomination VARCHAR, year VARCHAR)"}, {"answer": "SELECT fineness FROM table_name_28 WHERE year < 2007", "question": "What was the fineness prior to 2007?", "context": "CREATE TABLE table_name_28 (fineness VARCHAR, year INTEGER)"}, {"answer": "SELECT weight FROM table_name_73 WHERE series = \"ii series\"", "question": "What does the ii Series weigh?", "context": "CREATE TABLE table_name_73 (weight VARCHAR, series VARCHAR)"}, {"answer": "SELECT loss FROM table_name_83 WHERE record = \"10-16\"", "question": "What loss has 10-16 as the record?", "context": "CREATE TABLE table_name_83 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_25 WHERE record = \"3-5\"", "question": "What is the least attendance that has 3-5 as a record?", "context": "CREATE TABLE table_name_25 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_23 WHERE date = \"april 4\"", "question": "What is the average attendance for the date of april 4?", "context": "CREATE TABLE table_name_23 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_93 WHERE date = \"april 2\"", "question": "Which opponent has april 2 as the date?", "context": "CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT remarks FROM table_name_79 WHERE airline = \"dutch antilles express\"", "question": "What is the Remark of Airline of Dutch Antilles Express?", "context": "CREATE TABLE table_name_79 (remarks VARCHAR, airline VARCHAR)"}, {"answer": "SELECT category FROM table_name_25 WHERE year < 2006 AND result = \"nominated\" AND title = \"cold feet\"", "question": "What Category has a Year that's smaller than 2006, has Result of Nominated, and a Title of Cold Feet?", "context": "CREATE TABLE table_name_25 (category VARCHAR, title VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_96 WHERE title = \"cold feet\"", "question": "What is recorded as the lowest Year that has the Title of Cold Feet?", "context": "CREATE TABLE table_name_96 (year INTEGER, title VARCHAR)"}, {"answer": "SELECT category FROM table_name_64 WHERE result = \"nominated\" AND year = 2006 AND title = \"pierrepoint\"", "question": "What Category has a Result of Nominated, Year of 2006, and the Title of Pierrepoint?", "context": "CREATE TABLE table_name_64 (category VARCHAR, title VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT title FROM table_name_63 WHERE year = 1999", "question": "What Title is listed for the Year of 1999?", "context": "CREATE TABLE table_name_63 (title VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_82 WHERE title = \"the queen\" AND award = \"british academy film award\" AND result = \"won\"", "question": "What is the total number of Year for the Title of The Queen, has an Award of British Academy Film Award, and has a Result of Won?", "context": "CREATE TABLE table_name_82 (year VARCHAR, result VARCHAR, title VARCHAR, award VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE opponent = \"northwestern\"", "question": "What was the date of the game against Northwestern?", "context": "CREATE TABLE table_name_62 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_44 WHERE city = \"louisville\"", "question": "Who was the opponent when the city was Louisville?", "context": "CREATE TABLE table_name_44 (opponent VARCHAR, city VARCHAR)"}, {"answer": "SELECT score FROM table_name_55 WHERE opponent = \"minnesota\"", "question": "What was the score of the game against Minnesota?", "context": "CREATE TABLE table_name_55 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE competition = \"friendly\" AND result = \"3\u20130\"", "question": "On what date was a friendly competition and a result of 3\u20130?", "context": "CREATE TABLE table_name_69 (date VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE score = \"1\u20130\" AND result = \"4\u20130\"", "question": "When was the score 1\u20130, and the result  4\u20130?", "context": "CREATE TABLE table_name_67 (date VARCHAR, score VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_17 WHERE venue = \"dakar , senegal\" AND date = \"3 september 2011\" AND score = \"2\u20130\"", "question": "What was the result at dakar , senegal, on 3 september 2011, and with a Score of 2\u20130?", "context": "CREATE TABLE table_name_17 (result VARCHAR, score VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT time FROM table_name_31 WHERE rank > 3 AND name = \"andrey kapralov\"", "question": "Which time has a Rank larger than 3, and a Name of andrey kapralov?", "context": "CREATE TABLE table_name_31 (time VARCHAR, rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_42 WHERE name = \"igor koleda\"", "question": "Which Nationality has a Name of igor koleda?", "context": "CREATE TABLE table_name_42 (nationality VARCHAR, name VARCHAR)"}, {"answer": "SELECT headquarters FROM table_name_26 WHERE company = \"getinge group\"", "question": "Where is the headquarters of the getinge group located?", "context": "CREATE TABLE table_name_26 (headquarters VARCHAR, company VARCHAR)"}, {"answer": "SELECT COUNT(s_asset__billion_) AS $_ FROM table_name_14 WHERE headquarters = \"stockholm, sweden\" AND market_value__billion_$_ < 39.8 AND revenue__billion_$__ > 5.8 AND profits__billion_$_ = 1.1", "question": "How much is the total assets of a company based in Stockholm, Sweden with a market capitalization smaller than 39.8 with revenues greater than 5.8 and profit of 1.1?", "context": "CREATE TABLE table_name_14 (s_asset__billion_ VARCHAR, profits__billion_$_ VARCHAR, revenue__billion_$__ VARCHAR, headquarters VARCHAR, market_value__billion_$_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE opponents = \"zi yan jie zheng\"", "question": "Name the date for zi yan jie zheng opponent", "context": "CREATE TABLE table_name_64 (date VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT partner FROM table_name_75 WHERE date = \"14 october 2007\"", "question": "Name the partner for 14 october 2007", "context": "CREATE TABLE table_name_75 (partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT partner FROM table_name_43 WHERE opponents = \"alexandra dulgheru magdal\u00e9na ryb\u00e1rikov\u00e1\"", "question": "Name the partner for opponents of alexandra dulgheru magdal\u00e9na ryb\u00e1rikov\u00e1", "context": "CREATE TABLE table_name_43 (partner VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_45 WHERE date = \"24 july 2011\"", "question": "Name the opponents for 24 july 2011", "context": "CREATE TABLE table_name_45 (opponents VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_28 WHERE name = \"ken walter\" AND overall > 195", "question": "What is Ken Walter's lowest pick number with an overall pick number larger than 195?", "context": "CREATE TABLE table_name_28 (pick__number INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT appearance FROM table_name_80 WHERE polyphenyl_ether = \"3- and 4-ring oxythio\"", "question": "What does Polyphenyl Ether of 3- and 4-ring oxythio look like?", "context": "CREATE TABLE table_name_80 (appearance VARCHAR, polyphenyl_ether VARCHAR)"}, {"answer": "SELECT distance FROM table_name_2 WHERE course = \"naples to foggia\"", "question": "How long was the course from Naples to Foggia?", "context": "CREATE TABLE table_name_2 (distance VARCHAR, course VARCHAR)"}, {"answer": "SELECT score FROM table_name_82 WHERE opponent = \"milos raonic\"", "question": "Name the score with opponent of milos raonic", "context": "CREATE TABLE table_name_82 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE surface = \"hard\" AND tournament = \"usa f5, brownsville\"", "question": "Name the date with a hard surface and tournament of usa f5, brownsville", "context": "CREATE TABLE table_name_83 (date VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_57 WHERE tournament = \"mexico f12, obreg\u00f3n\"", "question": "Name the outcome with tournament of mexico f12, obreg\u00f3n", "context": "CREATE TABLE table_name_57 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_24 WHERE date = \"march 25, 2012\"", "question": "Name the tournament for march 25, 2012", "context": "CREATE TABLE table_name_24 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_29 WHERE date = \"august 25, 1996\"", "question": "What was the final score for the August 25, 1996 match?", "context": "CREATE TABLE table_name_29 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_25 WHERE points < 6 AND engine = \"maserati straight-6\"", "question": "What is the average year of an entrant that had fewer than 6 points and a Maserati Straight-6 engine?", "context": "CREATE TABLE table_name_25 (year INTEGER, points VARCHAR, engine VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_17 WHERE chassis = \"maserati 250f\" AND year < 1957 AND points < 6", "question": "What entrant had a Maserati 250F chassis and fewer than 6 points before 1957?", "context": "CREATE TABLE table_name_17 (entrant VARCHAR, points VARCHAR, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_7 WHERE year = 1951", "question": "What chassis has a year of 1951?", "context": "CREATE TABLE table_name_7 (chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_55 WHERE engine = \"maserati straight-6\" AND entrant = \"officine alfieri maserati\" AND points < 6", "question": "What is the chassis of Officine Alfieri Maserati with a Maserati Straight-6 engine and fewer than 6 points?", "context": "CREATE TABLE table_name_55 (chassis VARCHAR, points VARCHAR, engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_87 WHERE time < 49.67 AND name = \"michael klim\" AND rank < 1", "question": "Which lane has a time less than 49.67, is from Michael Klim and less than 1 rank?", "context": "CREATE TABLE table_name_87 (lane INTEGER, rank VARCHAR, time VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_69 WHERE name = \"lorenzo vismara\" AND time > 49.67", "question": "What is the lowest lane with Lorenzo Vismara and a time higher than 49.67?", "context": "CREATE TABLE table_name_69 (lane INTEGER, name VARCHAR, time VARCHAR)"}, {"answer": "SELECT home FROM table_name_41 WHERE date = \"january 8\"", "question": "Who was the home team on January 8?", "context": "CREATE TABLE table_name_41 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE attendance = \"38,150\"", "question": "Who was the Opponent when the Attendance was 38,150?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT location FROM table_name_54 WHERE classification = \"ncaa division ii\" AND institution = \"franklin pierce university\"", "question": "Where is NCAA division ii Franklin Pierce University located at?", "context": "CREATE TABLE table_name_54 (location VARCHAR, classification VARCHAR, institution VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_4 WHERE institution = \"post university\"", "question": "Post University has what nickname?", "context": "CREATE TABLE table_name_4 (nickname VARCHAR, institution VARCHAR)"}, {"answer": "SELECT current_conference FROM table_name_6 WHERE nickname = \"river hawks\"", "question": "The River Hawks belonged to what current conference?", "context": "CREATE TABLE table_name_6 (current_conference VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_54 WHERE location = \"manchester, new hampshire\"", "question": "What is the nickname of the school located in Manchester, New Hampshire?", "context": "CREATE TABLE table_name_54 (nickname VARCHAR, location VARCHAR)"}, {"answer": "SELECT classification FROM table_name_4 WHERE current_conference = \"nec\" AND location = \"new britain, connecticut\"", "question": "What is the classification for the school in the NEC Conference located in New Britain, Connecticut?", "context": "CREATE TABLE table_name_4 (classification VARCHAR, current_conference VARCHAR, location VARCHAR)"}, {"answer": "SELECT institution FROM table_name_48 WHERE classification = \"ncaa division i\" AND current_conference = \"nec\" AND nickname = \"blue devils\"", "question": "What institution is a NCAA Division i school and part of the NEC conference with a nickname the Blue Devils?", "context": "CREATE TABLE table_name_48 (institution VARCHAR, nickname VARCHAR, classification VARCHAR, current_conference VARCHAR)"}, {"answer": "SELECT record FROM table_name_59 WHERE home = \"montreal maroons\"", "question": "What was the record at the home of the Montreal Maroons", "context": "CREATE TABLE table_name_59 (record VARCHAR, home VARCHAR)"}, {"answer": "SELECT school FROM table_name_49 WHERE _number___county = \"29 hamilton\"", "question": "which school shows #/county of 29 hamilton?", "context": "CREATE TABLE table_name_49 (school VARCHAR, _number___county VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_73 WHERE enrollment_08_09 = 320", "question": "what is the mascot for the enrollment 08-09 of 320?", "context": "CREATE TABLE table_name_73 (mascot VARCHAR, enrollment_08_09 VARCHAR)"}, {"answer": "SELECT school FROM table_name_93 WHERE location = \"michigantown\"", "question": "what is the school in michigantown?", "context": "CREATE TABLE table_name_93 (school VARCHAR, location VARCHAR)"}, {"answer": "SELECT episode_number FROM table_name_1 WHERE name = \"vibhav gautam\"", "question": "Which episode number was associated with Vibhav Gautam?", "context": "CREATE TABLE table_name_1 (episode_number VARCHAR, name VARCHAR)"}, {"answer": "SELECT city_state FROM table_name_52 WHERE status = \"2nd runner-up\"", "question": "Which city/state was associated with a contestant whose status was 2nd runner-up?", "context": "CREATE TABLE table_name_52 (city_state VARCHAR, status VARCHAR)"}, {"answer": "SELECT name FROM table_name_30 WHERE episode_number = \"episode 34\"", "question": "Which contestant was associated with episode 34?", "context": "CREATE TABLE table_name_30 (name VARCHAR, episode_number VARCHAR)"}, {"answer": "SELECT status AS Date FROM table_name_1 WHERE city_state = \"indor, madhya pradesh\"", "question": "What is the status of the city/state of Indor, Madhya Pradesh?", "context": "CREATE TABLE table_name_1 (status VARCHAR, city_state VARCHAR)"}, {"answer": "SELECT role FROM table_name_56 WHERE director = \"r.n. bradbury\" AND title = \"the trail beyond\"", "question": "What role did John Wayne play in The Trail Beyond, directed by R.N. Bradbury?", "context": "CREATE TABLE table_name_56 (role VARCHAR, director VARCHAR, title VARCHAR)"}, {"answer": "SELECT director FROM table_name_79 WHERE title = \"the star packer\"", "question": "Who directed the movie The Star Packer?", "context": "CREATE TABLE table_name_79 (director VARCHAR, title VARCHAR)"}, {"answer": "SELECT role FROM table_name_42 WHERE leading_lady = \"sheila terry\" AND title = \"the lawless frontier\"", "question": "What role did John Wayne play in The Lawless Frontier, with Sheila Terry as the leading lady?", "context": "CREATE TABLE table_name_42 (role VARCHAR, leading_lady VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_54 WHERE role = \"chris morrell\"", "question": "In what movie did John Wayne play the role of Chris Morrell?", "context": "CREATE TABLE table_name_54 (title VARCHAR, role VARCHAR)"}, {"answer": "SELECT role FROM table_name_80 WHERE leading_lady = \"verna hillie\"", "question": "What role did John Wayne play with Verna Hillie as the leading lady?", "context": "CREATE TABLE table_name_80 (role VARCHAR, leading_lady VARCHAR)"}, {"answer": "SELECT director FROM table_name_54 WHERE role = \"john travers\"", "question": "Who directed the movie when John Wayne played the role of John Travers?", "context": "CREATE TABLE table_name_54 (director VARCHAR, role VARCHAR)"}, {"answer": "SELECT record FROM table_name_44 WHERE decision = \"prusek\" AND date = \"november 26\"", "question": "What is the record for November 26, with the decision made by Prusek?", "context": "CREATE TABLE table_name_44 (record VARCHAR, decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_3 WHERE visitor = \"columbus\" AND decision = \"denis\" AND home = \"phoenix\"", "question": "What is the record for game where Columbus is visitor, Phoenix is home, and decision is made by Denis?", "context": "CREATE TABLE table_name_3 (record VARCHAR, home VARCHAR, visitor VARCHAR, decision VARCHAR)"}, {"answer": "SELECT record FROM table_name_10 WHERE decision = \"denis\" AND date = \"november 4\"", "question": "What is the record for November 4, with a decision made by Denis?", "context": "CREATE TABLE table_name_10 (record VARCHAR, decision VARCHAR, date VARCHAR)"}, {"answer": "SELECT intergiro_classification FROM table_name_34 WHERE points_classification = \"fabrizio guidi\" AND winner = \"nicolaj bo larsen\"", "question": "What is the Intergiro classification of Nicolaj bo Larsen, who has a Fabrizio guidi point classification?", "context": "CREATE TABLE table_name_34 (intergiro_classification VARCHAR, points_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_60 WHERE winner = \"mario cipollini\" AND general_classification = \"pavel tonkov\"", "question": "What is the mountain classification of Mario Cipollini, who has a general classification of Pavel tonkov?", "context": "CREATE TABLE table_name_60 (mountains_classification VARCHAR, winner VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT stage FROM table_name_13 WHERE trofeo_fast_team = \"gewiss playbus\" AND points_classification = \"fabrizio guidi\" AND winner = \"fabiano fontanelli\"", "question": "What is the stage of Fabiano Fontanelli, who had a Trofeo Fast Team of Gewiss Playbus and a point classification of Fabrizio Guidi?", "context": "CREATE TABLE table_name_13 (stage VARCHAR, winner VARCHAR, trofeo_fast_team VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT stage FROM table_name_56 WHERE points_classification = \"silvio martinello\" AND general_classification = \"davide rebellin\"", "question": "What is the stage with a point classification of Silvio Martinello and Davide Rebellin as the general classification?", "context": "CREATE TABLE table_name_56 (stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT trofeo_fast_team FROM table_name_67 WHERE points_classification = \"silvio martinello\" AND stage = \"6\"", "question": "What is the Trofeo Fast Team with a point classification of Silvio Martinello and stage 6?", "context": "CREATE TABLE table_name_67 (trofeo_fast_team VARCHAR, points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_59 WHERE club = \"castres\"", "question": "How many points did the Castres have?", "context": "CREATE TABLE table_name_59 (points_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_37 WHERE drawn = \"0\" AND points_for = \"617\"", "question": "Who is the club that had 617 points and a draw of 0?", "context": "CREATE TABLE table_name_37 (club VARCHAR, drawn VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT bonus_points FROM table_name_38 WHERE club = \"stade fran\u00e7ais\"", "question": "What number of bonus points did Stade Fran\u00e7ais?", "context": "CREATE TABLE table_name_38 (bonus_points VARCHAR, club VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_68 WHERE record = \"15\u201315\"", "question": "Who was the opponent at the game when the record was 15\u201315?", "context": "CREATE TABLE table_name_68 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_63 WHERE attendance = \"23,203\"", "question": "Who was the opponent at the game attended by 23,203?", "context": "CREATE TABLE table_name_63 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT loss FROM table_name_19 WHERE record = \"16\u201315\"", "question": "What was the loss of the game when the record was 16\u201315?", "context": "CREATE TABLE table_name_19 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_8 WHERE score = \"16\u20137\"", "question": "What was the attendance at the game that had a score of 16\u20137?", "context": "CREATE TABLE table_name_8 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE attendance = \"25,022\"", "question": "What was the date of the game attended by 25,022?", "context": "CREATE TABLE table_name_70 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_43 WHERE attendance > 28 OFFSET 459", "question": "Which record has an attendance larger than 28,459?", "context": "CREATE TABLE table_name_43 (record VARCHAR, attendance INTEGER)"}, {"answer": "SELECT score FROM table_name_92 WHERE record = \"32-37\"", "question": "When the record was 32-37 what was the score?", "context": "CREATE TABLE table_name_92 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_31 WHERE date = \"june 7\"", "question": "On the date of june 7 what was the score?", "context": "CREATE TABLE table_name_31 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_8 WHERE record = \"68-39\"", "question": "What was the score of the game when the record was 68-39?", "context": "CREATE TABLE table_name_8 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE opponent = \"white sox\" AND record = \"81-48\"", "question": "What was the game of the game against the White Sox with a record of 81-48?", "context": "CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_54 WHERE record = \"66-38\"", "question": "What was the date of the game when the record was 66-38?", "context": "CREATE TABLE table_name_54 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT category FROM table_name_6 WHERE nominee = \"brian d'arcy james\" AND result = \"nominated\"", "question": "What category was Brian D'arcy James nominated for?", "context": "CREATE TABLE table_name_6 (category VARCHAR, nominee VARCHAR, result VARCHAR)"}, {"answer": "SELECT moving_to FROM table_name_56 WHERE transfer_fee = \"\u00a3300,000\"", "question": "What is the item \"Moving to\", when the Transfer fee is \u00a3300,000?", "context": "CREATE TABLE table_name_56 (moving_to VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT country FROM table_name_94 WHERE transfer_fee = \"loan\" AND name = \"lynch\"", "question": "What is the Country, when the Transfer fee is \"loan\", and when the Name is Lynch?", "context": "CREATE TABLE table_name_94 (country VARCHAR, transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_86 WHERE transfer_fee = \"free\" AND name = \"dugdale\"", "question": "What is the Transfer window, when the Transfer fee is \"free\", and when the Name is Dugdale?", "context": "CREATE TABLE table_name_86 (transfer_window VARCHAR, transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_80 WHERE transfer_fee = \"loan\"", "question": "What is the Name, when the Transfer fee is \"loan\"?", "context": "CREATE TABLE table_name_80 (name VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_30 WHERE transfer_fee = \"free\" AND moving_to = \"norwich city\"", "question": "What is the Transfer window, when the Transfer fee is \"free\", and when the item \"Moving to\" is Norwich City?", "context": "CREATE TABLE table_name_30 (transfer_window VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_94 WHERE transfer_window = \"winter\" AND moving_to = \"northwich victoria\"", "question": "What is the Transfer fee, when the Transfer window is \"winter\", and when the item \"Moving to\" is Northwich Victoria?", "context": "CREATE TABLE table_name_94 (transfer_fee VARCHAR, transfer_window VARCHAR, moving_to VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_44 WHERE time_retired = \"collision\" AND grid = \"11\"", "question": "What companyw as the constructor when the Time/Retired was collision, and a Grid of 11?", "context": "CREATE TABLE table_name_44 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT time_retired FROM table_name_2 WHERE grid = \"8\"", "question": "What shows as the Time/Retired for Grid 8?", "context": "CREATE TABLE table_name_2 (time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT laps FROM table_name_36 WHERE grid = \"3\"", "question": "What is the number of laps for Grid 3?", "context": "CREATE TABLE table_name_36 (laps VARCHAR, grid VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_50 WHERE driver = \"nick heidfeld\"", "question": "What company was the constructor when Nick Heidfeld was the driver/", "context": "CREATE TABLE table_name_50 (constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT laps FROM table_name_48 WHERE time_retired = \"+1:08.577\"", "question": "What shows for laps when the Time/Retired was +1:08.577?", "context": "CREATE TABLE table_name_48 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_11 WHERE grid = \"1\"", "question": "What is the name of the constructor for Grid 1?", "context": "CREATE TABLE table_name_11 (constructor VARCHAR, grid VARCHAR)"}, {"answer": "SELECT test_career FROM table_name_98 WHERE player = \"mushfiqur rahim\"", "question": "When was Mushfiqur Rahim's test career?", "context": "CREATE TABLE table_name_98 (test_career VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_95 WHERE year < 1984", "question": "Name the sum of points for 1984", "context": "CREATE TABLE table_name_95 (points INTEGER, year INTEGER)"}, {"answer": "SELECT points FROM table_name_99 WHERE engine = \"chevrolet 265c\"", "question": "Name the points for Engine of chevrolet 265c", "context": "CREATE TABLE table_name_99 (points VARCHAR, engine VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_43 WHERE points = 147 AND engine = \"ford cosworth dfx\"", "question": "Name the chassis of 147 points and engine of ford cosworth dfx", "context": "CREATE TABLE table_name_43 (chassis VARCHAR, points VARCHAR, engine VARCHAR)"}, {"answer": "SELECT term FROM table_name_22 WHERE district = \"7\" AND party = \"democratic\"", "question": "Which term had a Democratic representative from district 7?", "context": "CREATE TABLE table_name_22 (term VARCHAR, district VARCHAR, party VARCHAR)"}, {"answer": "SELECT term FROM table_name_6 WHERE hometown = \"anchorage\" AND name = \"bruce biers kendall\"", "question": "What was the term of Bruce Biers Kendall whose hometown is Anchorage?", "context": "CREATE TABLE table_name_6 (term VARCHAR, hometown VARCHAR, name VARCHAR)"}, {"answer": "SELECT hometown FROM table_name_22 WHERE legislatures = \"twenty-sixth\"", "question": "What is the hometown of the representative that served the twenty-sixth legislature?", "context": "CREATE TABLE table_name_22 (hometown VARCHAR, legislatures VARCHAR)"}, {"answer": "SELECT qual FROM table_name_28 WHERE rank = \"19\"", "question": "What is the qual with a 19 rank?", "context": "CREATE TABLE table_name_28 (qual VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_33 WHERE finish = \"25\"", "question": "What rank has a 25 finish?", "context": "CREATE TABLE table_name_33 (rank VARCHAR, finish VARCHAR)"}, {"answer": "SELECT finish FROM table_name_69 WHERE qual = \"143.056\"", "question": "What finish has a 143.056 qual?", "context": "CREATE TABLE table_name_69 (finish VARCHAR, qual VARCHAR)"}, {"answer": "SELECT rank FROM table_name_17 WHERE laps > 165 AND finish = \"5\"", "question": "What rank had more than 165 laps and a finish of 5?", "context": "CREATE TABLE table_name_17 (rank VARCHAR, laps VARCHAR, finish VARCHAR)"}, {"answer": "SELECT record FROM table_name_22 WHERE opponent = \"blue jays\" AND loss = \"batista (0\u20133)\"", "question": "What was the record at the game against the Blue Jays with a loss of Batista (0\u20133)?", "context": "CREATE TABLE table_name_22 (record VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_90 WHERE record = \"14\u20138\"", "question": "What was the loss of the game when the record was 14\u20138?", "context": "CREATE TABLE table_name_90 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE record = \"28\u201319\"", "question": "What was the score of the game when the record was 28\u201319?", "context": "CREATE TABLE table_name_62 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_94 WHERE date = \"may 1\" AND loss = \"speier (1\u20133)\"", "question": "What was the record at the game held on May 1st with a loss of Speier (1\u20133)?", "context": "CREATE TABLE table_name_94 (record VARCHAR, date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT played FROM table_name_75 WHERE lost < 12 AND points > 37 AND drawn = 5", "question": "How many goes played fot hteam that lost less than 12 games, drew 5, and had over 37 points?", "context": "CREATE TABLE table_name_75 (played VARCHAR, drawn VARCHAR, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_83 WHERE drawn = 5 AND points > 41", "question": "How many games lost for the team that drew 5 times and had over 41 points?", "context": "CREATE TABLE table_name_83 (lost INTEGER, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_81 WHERE drawn < 5 AND team = \"army\" AND points > 51", "question": "How many games played for the army team with over 51 points and under 5 games drawn?", "context": "CREATE TABLE table_name_81 (played VARCHAR, points VARCHAR, drawn VARCHAR, team VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_4 WHERE team = \"navy\" AND lost > 11", "question": "How many points for the navy team that lost over 11?", "context": "CREATE TABLE table_name_4 (points INTEGER, team VARCHAR, lost VARCHAR)"}, {"answer": "SELECT class FROM table_name_31 WHERE race_title = \"xi coppa acerbo\"", "question": "What class of car had the XI Coppa Acerbo title?", "context": "CREATE TABLE table_name_31 (class VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT driver_s FROM table_name_67 WHERE race_title = \"iii coppa acerbo\"", "question": "Who won the III Coppa Acerbo title?", "context": "CREATE TABLE table_name_67 (driver_s VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT race_title FROM table_name_81 WHERE vehicle = \"maserati a6gcs\"", "question": "What's the name of the title for the Maserati A6GCS?", "context": "CREATE TABLE table_name_81 (race_title VARCHAR, vehicle VARCHAR)"}, {"answer": "SELECT driver_s FROM table_name_81 WHERE class = \"sports car\" AND race_title = \"xxiv gran premio di pescara\"", "question": "Who won the XXIV Gran Premio di Pescara in the sports car class?", "context": "CREATE TABLE table_name_81 (driver_s VARCHAR, class VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT surface FROM table_name_22 WHERE tournament = \"citt\u00e0 di caltanissetta\"", "question": "What surface was the citt\u00e0 di caltanissetta played on?", "context": "CREATE TABLE table_name_22 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_1 WHERE tournament = \"volkswagen challenger\"", "question": "What was the score in Volkswagen Challenger tournament?", "context": "CREATE TABLE table_name_1 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_23 WHERE 2011 = \"2,240,000\"", "question": "what is the production in 2010 with 2011 production of 2,240,000?", "context": "CREATE TABLE table_name_23 (Id VARCHAR)"}, {"answer": "SELECT rank FROM table_name_52 WHERE 2010 = \"2,903,000\"", "question": "what is the ranking for 2010 production of 2,903,000?", "context": "CREATE TABLE table_name_52 (rank VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_39 WHERE rank = \"8\"", "question": "what is the production in 2010 with rank of 8?", "context": "CREATE TABLE table_name_39 (rank VARCHAR)"}, {"answer": "SELECT club FROM table_name_95 WHERE captain = \"john hutchinson\"", "question": "What club captain is John Hutchinson in?", "context": "CREATE TABLE table_name_95 (club VARCHAR, captain VARCHAR)"}, {"answer": "SELECT australian_marquee FROM table_name_13 WHERE captain = \"michael beauchamp\"", "question": "What Australian Marquee team is Michael Beauchamp a captain of?", "context": "CREATE TABLE table_name_13 (australian_marquee VARCHAR, captain VARCHAR)"}, {"answer": "SELECT junior_marquee_player FROM table_name_22 WHERE captain = \"harry kewell\"", "question": "What Junior Marquee team is Harry Kewell of?", "context": "CREATE TABLE table_name_22 (junior_marquee_player VARCHAR, captain VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_33 WHERE frequency_mhz = \"91.1 fm\"", "question": "What is the name of call sign that uses a Frequency MHz of 91.1 fm?", "context": "CREATE TABLE table_name_33 (call_sign VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT COUNT(erp_w) FROM table_name_63 WHERE frequency_mhz = \"107.9 fm\"", "question": "How much is the total ERP W for an 107.9 fm freqeuncy MHz?", "context": "CREATE TABLE table_name_63 (erp_w VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_39 WHERE city_of_license = \"harmony township, new jersey\"", "question": "Can you tell me what is FCC info for harmony township, new jersey?", "context": "CREATE TABLE table_name_39 (fcc_info VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT MIN(erp_w) FROM table_name_66 WHERE city_of_license = \"allentown, pennsylvania\"", "question": "What is the smallest ERP for allentown, pennsylvania?", "context": "CREATE TABLE table_name_66 (erp_w INTEGER, city_of_license VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_42 WHERE time_retired = \"+3.9 secs\" AND laps < 96", "question": "Which grid has a time/retired of +3.9 secs in less than 96 laps?", "context": "CREATE TABLE table_name_42 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT driver FROM table_name_28 WHERE points = 7 AND team = \"team australia\"", "question": "Which driver has 7 points for team Australia?", "context": "CREATE TABLE table_name_28 (driver VARCHAR, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_85 WHERE team = \"dale coyne racing\" AND time_retired = \"mechanical\" AND points < 5", "question": "What is the fewest number of laps for a Dale Coyne Racing team with a mechanical time/retired and fewer than 5 points?", "context": "CREATE TABLE table_name_85 (laps INTEGER, points VARCHAR, team VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_61 WHERE driver = \"dan clarke\" AND grid > 10", "question": "What is the highest points total scored by Dan Clarke in a grid higher than 10?", "context": "CREATE TABLE table_name_61 (points INTEGER, driver VARCHAR, grid VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_80 WHERE location = \"boston, massachusetts\"", "question": "What is the earliest episode of the series that is set in Boston, Massachusetts?", "context": "CREATE TABLE table_name_80 (total INTEGER, location VARCHAR)"}, {"answer": "SELECT sample_size FROM table_name_84 WHERE date_s__administered = \"june 30, 2010\"", "question": "How many people were surveyed in the poll from June 30, 2010?", "context": "CREATE TABLE table_name_84 (sample_size VARCHAR, date_s__administered VARCHAR)"}, {"answer": "SELECT meg_whitman__r_ FROM table_name_35 WHERE margin_of_error = \"\u00b1 3.3%\"", "question": "What percentage of the vote with a margin of error of \u00b1 3.3% did Meg Whitman (R) get?", "context": "CREATE TABLE table_name_35 (meg_whitman__r_ VARCHAR, margin_of_error VARCHAR)"}, {"answer": "SELECT sample_size FROM table_name_61 WHERE poll_source = \"rasmussen reports\" AND date_s__administered = \"october 13, 2010\"", "question": "How many people participated in the Rasmussen Reports poll on October 13, 2010?", "context": "CREATE TABLE table_name_61 (sample_size VARCHAR, poll_source VARCHAR, date_s__administered VARCHAR)"}, {"answer": "SELECT meg_whitman__r_ FROM table_name_51 WHERE date_s__administered = \"october 21, 2010\"", "question": "What percent of the vote went to Meg Whitman in the poll taken on October 21, 2010.", "context": "CREATE TABLE table_name_51 (meg_whitman__r_ VARCHAR, date_s__administered VARCHAR)"}, {"answer": "SELECT prize FROM table_name_10 WHERE event = \"ept deauville\"", "question": "What is the Prize, when the Event is Ept Deauville?", "context": "CREATE TABLE table_name_10 (prize VARCHAR, event VARCHAR)"}, {"answer": "SELECT city FROM table_name_26 WHERE prize = \"\u20ac880,000\"", "question": "What is the City, when the Prize is \u20ac880,000?", "context": "CREATE TABLE table_name_26 (city VARCHAR, prize VARCHAR)"}, {"answer": "SELECT city FROM table_name_25 WHERE winner = \"ruben visser\"", "question": "What is the City, when the Winner is Ruben Visser?", "context": "CREATE TABLE table_name_25 (city VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_name_98 WHERE prize = \"\u20ac880,000\"", "question": "Who is the Winner, when the Prize is \u20ac880,000?", "context": "CREATE TABLE table_name_98 (winner VARCHAR, prize VARCHAR)"}, {"answer": "SELECT city FROM table_name_17 WHERE prize = \"$1,859,000\"", "question": "What is the City, when the Prize is $1,859,000?", "context": "CREATE TABLE table_name_17 (city VARCHAR, prize VARCHAR)"}, {"answer": "SELECT prize FROM table_name_11 WHERE event = \"ept sanremo\"", "question": "What is the Prize, when the Event is Ept Sanremo?", "context": "CREATE TABLE table_name_11 (prize VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE venue = \"edgbaston\"", "question": "On what date was the venue at Edgbaston?", "context": "CREATE TABLE table_name_97 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(image) FROM table_name_51 WHERE harrison = \"20w\" AND ashmolean < 20", "question": "What is the lowest image with a 20w Harrison, and less than 20 for Ashmolean?", "context": "CREATE TABLE table_name_51 (image INTEGER, harrison VARCHAR, ashmolean VARCHAR)"}, {"answer": "SELECT COUNT(ashmolean) FROM table_name_40 WHERE harrison = \"14s\" AND image < 542", "question": "What is the number of Ashmolean with 14s Harrison, and image less than 542?", "context": "CREATE TABLE table_name_40 (ashmolean VARCHAR, harrison VARCHAR, image VARCHAR)"}, {"answer": "SELECT cooper FROM table_name_43 WHERE ashmolean < 21 AND hahland < 4", "question": "What is the cooper with an Ashmolean less than 21, and hahland smaller than 4?", "context": "CREATE TABLE table_name_43 (cooper VARCHAR, ashmolean VARCHAR, hahland VARCHAR)"}, {"answer": "SELECT smith FROM table_name_62 WHERE ashmolean = 16", "question": "What is the smith with a 16 ashmolean?", "context": "CREATE TABLE table_name_62 (smith VARCHAR, ashmolean VARCHAR)"}, {"answer": "SELECT order FROM table_name_84 WHERE species_authority = \"hydrochaeris hydrochaeris (linnaeus, 1766)\"", "question": "What order has the Species Authority of hydrochaeris hydrochaeris (linnaeus, 1766)?", "context": "CREATE TABLE table_name_84 (order VARCHAR, species_authority VARCHAR)"}, {"answer": "SELECT MAX(red_list) FROM table_name_70 WHERE family = \"muridae\" AND species_authority = \"microtus pinetorum (le conte, 1830)\"", "question": "What is the highest Red List for the muridae family and species Authority of microtus pinetorum (le conte, 1830)?", "context": "CREATE TABLE table_name_70 (red_list INTEGER, family VARCHAR, species_authority VARCHAR)"}, {"answer": "SELECT name FROM table_name_76 WHERE species_authority = \"sigmodon hispidus say & ord, 1825\"", "question": "What is the name for the species Authority of sigmodon hispidus say & ord, 1825?", "context": "CREATE TABLE table_name_76 (name VARCHAR, species_authority VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_73 WHERE silver = 1 AND rank > 7", "question": "What is the largest total with a Silver of 1, and a Rank larger than 7?", "context": "CREATE TABLE table_name_73 (total INTEGER, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_98 WHERE bronze < 3 AND nation = \"zimbabwe\" AND silver < 6", "question": "How many totals have a Bronze smaller than 3, a Nation of zimbabwe, and a Silver smaller than 6?", "context": "CREATE TABLE table_name_98 (total VARCHAR, silver VARCHAR, bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_33 WHERE bronze < 6 AND total = 3 AND rank < 9", "question": "What is the smallest silver with a Bronze smaller than 6, a Total of 3, and a Rank smaller than 9?", "context": "CREATE TABLE table_name_33 (silver INTEGER, rank VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_14 WHERE gold = 0 AND nation = \"namibia\" AND total < 1", "question": "How many ranks have 0 golds, a Nation of namibia, and a Total smaller than 1?", "context": "CREATE TABLE table_name_14 (rank VARCHAR, total VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_22 WHERE bronze = 0 AND gold < 0", "question": "How many totals have a Bronze of 0, and a Gold smaller than 0?", "context": "CREATE TABLE table_name_22 (total INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_94 WHERE rank > 9 AND total > 1", "question": "What is the total silver with a Rank larger than 9, and a Total larger than 1?", "context": "CREATE TABLE table_name_94 (silver INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT percentage___percentage_ FROM table_name_31 WHERE males = \"1\"", "question": "Which language do 1% of males speak?", "context": "CREATE TABLE table_name_31 (percentage___percentage_ VARCHAR, males VARCHAR)"}, {"answer": "SELECT males FROM table_name_44 WHERE percentage___percentage_ = \"87.5\"", "question": "Which language do 87.5% of males speak?", "context": "CREATE TABLE table_name_44 (males VARCHAR, percentage___percentage_ VARCHAR)"}, {"answer": "SELECT females FROM table_name_10 WHERE number = \"706\"", "question": "Which language do 706 females speak?", "context": "CREATE TABLE table_name_10 (females VARCHAR, number VARCHAR)"}, {"answer": "SELECT females FROM table_name_11 WHERE language = \"ukrainian\"", "question": "How many females speak Ukrainian?", "context": "CREATE TABLE table_name_11 (females VARCHAR, language VARCHAR)"}, {"answer": "SELECT SUM(position) FROM table_name_98 WHERE goal_difference < -11 AND played < 38", "question": "What was the position of the team that had a goal difference of less than -11 and played less than 38 games?", "context": "CREATE TABLE table_name_98 (position INTEGER, goal_difference VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_61 WHERE goal_difference < 27 AND losses > 13 AND goals_for < 42 AND draws = 6", "question": "Which position had a goal difference of less than 27, lost more than 13 games, scored less than 42 goals and drew 6 games?", "context": "CREATE TABLE table_name_61 (played INTEGER, draws VARCHAR, goals_for VARCHAR, goal_difference VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_96 WHERE goals_against < 32", "question": "What was the number of wins with goals against of less than 32?", "context": "CREATE TABLE table_name_96 (wins VARCHAR, goals_against INTEGER)"}, {"answer": "SELECT AVG(in_service) FROM table_name_37 WHERE aircraft = \"antonov an-2 colt\"", "question": "How many Antonov An-2 Colt aircraft are in service?", "context": "CREATE TABLE table_name_37 (in_service INTEGER, aircraft VARCHAR)"}, {"answer": "SELECT name FROM table_name_67 WHERE position = \"rb\"", "question": "for the position of rb what is the name?", "context": "CREATE TABLE table_name_67 (name VARCHAR, position VARCHAR)"}, {"answer": "SELECT last_update FROM table_name_75 WHERE name = \"joe surratt\"", "question": "for the name of joe surratt what is the last update?", "context": "CREATE TABLE table_name_75 (last_update VARCHAR, name VARCHAR)"}, {"answer": "SELECT last_update FROM table_name_81 WHERE name = \"jamar jackson\"", "question": "for the name of jamar jackson what is the last update?", "context": "CREATE TABLE table_name_81 (last_update VARCHAR, name VARCHAR)"}, {"answer": "SELECT class FROM table_name_87 WHERE name = \"jamar jackson\"", "question": "for the name of jamar jackson what is the class?", "context": "CREATE TABLE table_name_87 (class VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_name_99 WHERE name = \"jamar jackson\"", "question": "for the name of jamar jackson what is the total of Number?", "context": "CREATE TABLE table_name_99 (number VARCHAR, name VARCHAR)"}, {"answer": "SELECT term_in_office FROM table_name_68 WHERE state = \"vic\" AND member = \"stewart mcarthur\"", "question": "What term did Stewart Mcarthur from Vic serve in office?", "context": "CREATE TABLE table_name_68 (term_in_office VARCHAR, state VARCHAR, member VARCHAR)"}, {"answer": "SELECT party FROM table_name_70 WHERE member = \"hon paul keating\"", "question": "What is Hon Paul Keating's Party?", "context": "CREATE TABLE table_name_70 (party VARCHAR, member VARCHAR)"}, {"answer": "SELECT member FROM table_name_73 WHERE party = \"liberal\" AND electorate = \"bruce\"", "question": "What member is in the liberal party and has an electorate of bruce?", "context": "CREATE TABLE table_name_73 (member VARCHAR, party VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT electorate FROM table_name_6 WHERE state = \"vic\" AND party = \"labor\" AND member = \"david charles\"", "question": "Which Electorate is from vic, a labor party, and is David Charles a member of?", "context": "CREATE TABLE table_name_6 (electorate VARCHAR, member VARCHAR, state VARCHAR, party VARCHAR)"}, {"answer": "SELECT format FROM table_name_59 WHERE label = \"alfa records\" AND date = \"july 27, 1994\"", "question": "Name the format on july 27, 1994 for alfa records", "context": "CREATE TABLE table_name_59 (format VARCHAR, label VARCHAR, date VARCHAR)"}, {"answer": "SELECT region FROM table_name_43 WHERE format = \"cd\" AND catalog = \"alca-9203\"", "question": "Name the region for cd with catalog of alca-9203", "context": "CREATE TABLE table_name_43 (region VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE label = \"alfa records\" AND catalog = \"alr-28045\"", "question": "Name the date for alfa records and catalog of alr-28045", "context": "CREATE TABLE table_name_6 (date VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_30 WHERE format = \"cd\" AND date = \"february 22, 1984\"", "question": "Name the region for cd format on february 22, 1984", "context": "CREATE TABLE table_name_30 (region VARCHAR, format VARCHAR, date VARCHAR)"}, {"answer": "SELECT region FROM table_name_6 WHERE date = \"february 14, 2002\"", "question": "Name the region for february 14, 2002", "context": "CREATE TABLE table_name_6 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(first_game) FROM table_name_16 WHERE lost > 16", "question": "What First game has a Lost greater than 16?", "context": "CREATE TABLE table_name_16 (first_game INTEGER, lost INTEGER)"}, {"answer": "SELECT percentage FROM table_name_80 WHERE first_game = 1998", "question": "What Percentage did the First game of 1998 have?", "context": "CREATE TABLE table_name_80 (percentage VARCHAR, first_game VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE bowling = \"4-15\"", "question": "What bowler has a record of 4-15?", "context": "CREATE TABLE table_name_97 (player VARCHAR, bowling VARCHAR)"}, {"answer": "SELECT rank FROM table_name_69 WHERE player = \"james franklin\"", "question": "What ranking is james franklin?", "context": "CREATE TABLE table_name_69 (rank VARCHAR, player VARCHAR)"}, {"answer": "SELECT venue FROM table_name_14 WHERE player = \"tim southee\"", "question": "what venue does tim southee bowl at?", "context": "CREATE TABLE table_name_14 (venue VARCHAR, player VARCHAR)"}, {"answer": "SELECT regular_season FROM table_name_38 WHERE year = \"2012\"", "question": "What was the regular season for 2012?", "context": "CREATE TABLE table_name_38 (regular_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(division) FROM table_name_91 WHERE playoffs = \"did not qualify\" AND open_cup = \"did not qualify\" AND year = \"2002\"", "question": "What is the lowest division in the playoffs and did not qualify for the Open Cup in 2002?", "context": "CREATE TABLE table_name_91 (division INTEGER, year VARCHAR, playoffs VARCHAR, open_cup VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_40 WHERE points > 0", "question": "What chassis has more than 0 points?", "context": "CREATE TABLE table_name_40 (chassis VARCHAR, points INTEGER)"}, {"answer": "SELECT COUNT(points) FROM table_name_95 WHERE year < 1955", "question": "How many points were there before 1955?", "context": "CREATE TABLE table_name_95 (points VARCHAR, year INTEGER)"}, {"answer": "SELECT MIN(points) FROM table_name_5 WHERE chassis = \"epperly indy roadster\" AND year = 1959", "question": "What is the lowest amount of points held by the Epperly Indy roadster in 1959?", "context": "CREATE TABLE table_name_5 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_3 WHERE points > 0", "question": "What Chassis has more than 0 points?", "context": "CREATE TABLE table_name_3 (chassis VARCHAR, points INTEGER)"}, {"answer": "SELECT date FROM table_name_15 WHERE attendance = \"4,286\"", "question": "What is the date that 4,286 attended?", "context": "CREATE TABLE table_name_15 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_64 WHERE opponent = \"cf pachuca\"", "question": "Where does CF Pachuca play?", "context": "CREATE TABLE table_name_64 (game_site VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_21 WHERE game_site = \"cup quarterfinals\"", "question": "What was the attendance of the Cup Quarterfinals game?", "context": "CREATE TABLE table_name_21 (attendance VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT 2000 FROM table_name_19 WHERE 2013 = \"3rd\"", "question": "What shows for 2000 when 2013 shows 3rd?", "context": "CREATE TABLE table_name_19 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_17 WHERE 2013 = \"3rd\"", "question": "What is the 2004 when 2013 is 3rd?", "context": "CREATE TABLE table_name_17 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_39 WHERE 2013 = \"4th\"", "question": "What is the 2009 when the 2013 is 4th?", "context": "CREATE TABLE table_name_39 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_4 WHERE 2000 = \"\u2013\" AND total = 3 AND 2004 = \"9th\"", "question": "What shows for 209 when the 2000 is \u2013, and a Total of 3, and a 2004 of 9th?", "context": "CREATE TABLE table_name_4 (total VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_14 WHERE championship = \"pga championship\"", "question": "What was the winning score in the PGA Championship?", "context": "CREATE TABLE table_name_14 (winning_score VARCHAR, championship VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_55 WHERE losses = 1", "question": "How many draws with 1 loss?", "context": "CREATE TABLE table_name_55 (draws INTEGER, losses VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_98 WHERE name = \"alex wilkinson\"", "question": "How many losses does Alex Wilkinson have?", "context": "CREATE TABLE table_name_98 (losses VARCHAR, name VARCHAR)"}, {"answer": "SELECT type FROM table_name_53 WHERE principal_activities = \"headquarters\"", "question": "Name the type for headquarters principal activites.", "context": "CREATE TABLE table_name_53 (type VARCHAR, principal_activities VARCHAR)"}, {"answer": "SELECT incorporated_in FROM table_name_73 WHERE principal_activities = \"travel agency\"", "question": "Name the incorporated for principal activites of travel agency", "context": "CREATE TABLE table_name_73 (incorporated_in VARCHAR, principal_activities VARCHAR)"}, {"answer": "SELECT title FROM table_name_23 WHERE presentation_of_credentials = \"april 24, 1884\"", "question": "Name the title with presentation of credentials of april 24, 1884", "context": "CREATE TABLE table_name_23 (title VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT presentation_of_credentials FROM table_name_45 WHERE appointed_by = \"grover cleveland\" AND representative = \"charles w. buck\"", "question": "Name the presentation of credentials for appointed by of grover cleveland and representative of charles w. buck", "context": "CREATE TABLE table_name_45 (presentation_of_credentials VARCHAR, appointed_by VARCHAR, representative VARCHAR)"}, {"answer": "SELECT title FROM table_name_62 WHERE presentation_of_credentials = \"april 10, 1907\"", "question": "Name the title with presentation of credentials of april 10, 1907", "context": "CREATE TABLE table_name_62 (title VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT title FROM table_name_65 WHERE termination_of_mission = \"february 24, 1828\"", "question": "Name the title with termination of mission of february 24, 1828", "context": "CREATE TABLE table_name_65 (title VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT title FROM table_name_24 WHERE termination_of_mission = \"april 10, 1939\"", "question": "Name the title with termination of mission of april 10, 1939", "context": "CREATE TABLE table_name_24 (title VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT termination_of_mission FROM table_name_18 WHERE appointed_by = \"woodrow wilson\" AND representative = \"benton mcmillin\"", "question": "Name the termination of mission for woodrow wilson appointed by and representative of benton mcmillin", "context": "CREATE TABLE table_name_18 (termination_of_mission VARCHAR, appointed_by VARCHAR, representative VARCHAR)"}, {"answer": "SELECT MAX(points_gained) FROM table_name_57 WHERE fans_took = \"907\" AND miles_[one_way] > 44.9", "question": "What is the highest points gained of the match where fans took 907 and there were more than 44.9 miles one way?", "context": "CREATE TABLE table_name_57 (points_gained INTEGER, fans_took VARCHAR, miles_ VARCHAR, one_way VARCHAR)"}, {"answer": "SELECT SUM(points_gained) FROM table_name_36 WHERE fans_took = \"403 [sunday]\"", "question": "What is the points gained of the match where fans took 403 [sunday]?", "context": "CREATE TABLE table_name_36 (points_gained INTEGER, fans_took VARCHAR)"}, {"answer": "SELECT team FROM table_name_71 WHERE fans_took = \"288\"", "question": "Which team had fans took of 288?", "context": "CREATE TABLE table_name_71 (team VARCHAR, fans_took VARCHAR)"}, {"answer": "SELECT years FROM table_name_99 WHERE ranking = 1", "question": "What years had a ranking of 1?", "context": "CREATE TABLE table_name_99 (years VARCHAR, ranking VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_25 WHERE goals = 50 AND ranking = 3", "question": "What is the nationality of the person with 50 goals and rank 3?", "context": "CREATE TABLE table_name_25 (nationality VARCHAR, goals VARCHAR, ranking VARCHAR)"}, {"answer": "SELECT status FROM table_name_58 WHERE name = \"joon-hyung park \ubc15\uc900\ud615\"", "question": "What was the status of joon-hyung park \ubc15\uc900\ud615?", "context": "CREATE TABLE table_name_58 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_80 WHERE style = \"ballet\" AND status = \"original cast\"", "question": "Who had a ballet style with original cast?", "context": "CREATE TABLE table_name_80 (name VARCHAR, style VARCHAR, status VARCHAR)"}, {"answer": "SELECT first_performance FROM table_name_80 WHERE status = \"replacement cast\"", "question": "When was the first performance with a replacement cast?", "context": "CREATE TABLE table_name_80 (first_performance VARCHAR, status VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_43 WHERE chassis = \"tyrrell 018\" AND points < 3", "question": "What is the latest year for the Tyrrell 018 Chassis that has less than 3 points?", "context": "CREATE TABLE table_name_43 (year INTEGER, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_42 WHERE engine = \"honda v6\" AND chassis = \"lotus 99t\"", "question": "Which entrant has a Honda V6 engine and a Lotus 99t chassis?", "context": "CREATE TABLE table_name_42 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT best FROM table_name_4 WHERE matches > 11 AND runs = 1088", "question": "Name the best when runs of 1088 and matches more than 11", "context": "CREATE TABLE table_name_4 (best VARCHAR, matches VARCHAR, runs VARCHAR)"}, {"answer": "SELECT MAX(runs) FROM table_name_68 WHERE wickets = 66 AND matches < 13", "question": "Name the most runs for wickets of 66 and matches less than 13", "context": "CREATE TABLE table_name_68 (runs INTEGER, wickets VARCHAR, matches VARCHAR)"}, {"answer": "SELECT score FROM table_name_29 WHERE opponent = \"san diego padres\" AND record = \"11-23\"", "question": "What is the score of the game with the San Diego Padres as the opponent and a record of 11-23?", "context": "CREATE TABLE table_name_29 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE record = \"14-31\"", "question": "What is the date of the game with a record of 14-31?", "context": "CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE record = \"17-31\"", "question": "What is the date of the game with a 17-31 record?", "context": "CREATE TABLE table_name_90 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_70 WHERE date = \"13 may\"", "question": "What is the record of the game on 13 May?", "context": "CREATE TABLE table_name_70 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_63 WHERE week = 15", "question": "What was average attendance during week 15?", "context": "CREATE TABLE table_name_63 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_75 WHERE result = \"t 17\u201317\"", "question": "What's the smallest week that had a result of t 17\u201317?", "context": "CREATE TABLE table_name_75 (week INTEGER, result VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_69 WHERE week = 12", "question": "Who was the opponent in week 12?", "context": "CREATE TABLE table_name_69 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT current_club FROM table_name_36 WHERE year_born > 1983 AND height < 2.12 AND position = \"forward\"", "question": "What is the current club of the Forward who was born after 1983 and who has a height under 2.12?", "context": "CREATE TABLE table_name_36 (current_club VARCHAR, position VARCHAR, year_born VARCHAR, height VARCHAR)"}, {"answer": "SELECT position FROM table_name_30 WHERE height > 2.12", "question": "What is the position of the player who is taller than 2.12?", "context": "CREATE TABLE table_name_30 (position VARCHAR, height INTEGER)"}, {"answer": "SELECT no_vote FROM table_name_48 WHERE state = \"north dakota\"", "question": "How many no votes did North Dakota have?", "context": "CREATE TABLE table_name_48 (no_vote VARCHAR, state VARCHAR)"}, {"answer": "SELECT date FROM table_name_92 WHERE state = \"colorado\"", "question": "What was the date for Colorado?", "context": "CREATE TABLE table_name_92 (date VARCHAR, state VARCHAR)"}, {"answer": "SELECT no_vote FROM table_name_31 WHERE date = \"1998\" AND state = \"alaska\"", "question": "How many no votes from Alaska in 1998?", "context": "CREATE TABLE table_name_31 (no_vote VARCHAR, date VARCHAR, state VARCHAR)"}, {"answer": "SELECT yes_vote FROM table_name_73 WHERE date = \"2006\" AND state = \"tennessee\"", "question": "How many positive votes for Tennessee in 2006?", "context": "CREATE TABLE table_name_73 (yes_vote VARCHAR, date VARCHAR, state VARCHAR)"}, {"answer": "SELECT name_of_the_song FROM table_name_82 WHERE kind_of_the_song = \"opening theme\" AND drama = \"revolving doors of vengeance\"", "question": "What is the name of the song that is part of the opening theme and has a drama of the revolving doors of vengeance?", "context": "CREATE TABLE table_name_82 (name_of_the_song VARCHAR, kind_of_the_song VARCHAR, drama VARCHAR)"}, {"answer": "SELECT SUM(floors) FROM table_name_15 WHERE street_address = \"32 n. main street\"", "question": "How many floors are there at 32 n. main street?", "context": "CREATE TABLE table_name_15 (floors INTEGER, street_address VARCHAR)"}, {"answer": "SELECT completed FROM table_name_64 WHERE rank = \"9\"", "question": "When did the rank 9 building got completed?", "context": "CREATE TABLE table_name_64 (completed VARCHAR, rank VARCHAR)"}, {"answer": "SELECT party FROM table_name_46 WHERE governments = \"24\"", "question": "Which party has 24 governments?", "context": "CREATE TABLE table_name_46 (party VARCHAR, governments VARCHAR)"}, {"answer": "SELECT governments FROM table_name_43 WHERE term_start = \"24 september 1984\"", "question": "What governments did the minister with a term start on 24 September 1984 have?", "context": "CREATE TABLE table_name_43 (governments VARCHAR, term_start VARCHAR)"}, {"answer": "SELECT term_end FROM table_name_37 WHERE party = \"national religious party\" AND minister = \"shlomo-yisrael ben-meir\"", "question": "When is the term end of Shlomo-Yisrael Ben-Meir of the National Religious Party?", "context": "CREATE TABLE table_name_37 (term_end VARCHAR, party VARCHAR, minister VARCHAR)"}, {"answer": "SELECT minister FROM table_name_71 WHERE term_end = \"10 march 1974\"", "question": "Who is the minister with a term end on 10 March 1974?", "context": "CREATE TABLE table_name_71 (minister VARCHAR, term_end VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_65 WHERE team_classification = \"predictor-lotto\" AND stage = \"1\"", "question": "Name the points classification for predictor-lotto and stage 1", "context": "CREATE TABLE table_name_65 (points_classification VARCHAR, team_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_66 WHERE team_classification = \"quick step-innergetic\" AND stage = \"7\"", "question": "Name the points classification for quick step-innergetic with stage 7", "context": "CREATE TABLE table_name_66 (points_classification VARCHAR, team_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_22 WHERE winner = \"robbie mcewen\"", "question": "Name the stgae with winner of robbie mcewen", "context": "CREATE TABLE table_name_22 (stage VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_name_96 WHERE general_classification = \"nick nuyens\" AND stage = \"2\"", "question": "Name the winner for nick nuyens for general classification and stage of 2", "context": "CREATE TABLE table_name_96 (winner VARCHAR, general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT team_classification FROM table_name_47 WHERE stage = \"6\"", "question": "Name the team classification for stage of 6", "context": "CREATE TABLE table_name_47 (team_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_name_44 WHERE location = \"davao\"", "question": "What is the Davao's power (kW)?", "context": "CREATE TABLE table_name_44 (power__kw_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT branding FROM table_name_35 WHERE callsign = \"dxre\"", "question": "What is the brand of DXRE?", "context": "CREATE TABLE table_name_35 (branding VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_name_74 WHERE location = \"davao\"", "question": "What is the power (kW) of Davao?", "context": "CREATE TABLE table_name_74 (power__kw_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_81 WHERE power__kw_ = \"5kw\" AND location = \"cagayan de oro\"", "question": "What is the callsign of Cagayan de Oro with 5kW?", "context": "CREATE TABLE table_name_81 (callsign VARCHAR, power__kw_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT callsign FROM table_name_23 WHERE power__kw_ = \"5kw\" AND branding = \"sonshine radio cotabato\"", "question": "What is the callsign of the 5kW Sonshine Radio Cotabato?", "context": "CREATE TABLE table_name_23 (callsign VARCHAR, power__kw_ VARCHAR, branding VARCHAR)"}, {"answer": "SELECT AVG(runs) FROM table_name_70 WHERE innings = 40 AND not_outs > 6", "question": "What's the average amount of Runs that has 40 innings, and Not outs larger than 6?", "context": "CREATE TABLE table_name_70 (runs INTEGER, innings VARCHAR, not_outs VARCHAR)"}, {"answer": "SELECT COUNT(innings) FROM table_name_68 WHERE runs = 1598 AND matches < 41", "question": "What's the total Innings that has Runs of 1598, and Matches less than 41?", "context": "CREATE TABLE table_name_68 (innings VARCHAR, runs VARCHAR, matches VARCHAR)"}, {"answer": "SELECT venue FROM table_name_12 WHERE year = 2008 AND notes = \"2:13:10\"", "question": "What venue held the event in 2008 that has 2:13:10 in the notes?", "context": "CREATE TABLE table_name_12 (venue VARCHAR, year VARCHAR, notes VARCHAR)"}, {"answer": "SELECT discoverer FROM table_name_43 WHERE museum = \"burpee museum of natural history\"", "question": "Who discovered the specimen at the Burpee Museum of Natural History?", "context": "CREATE TABLE table_name_43 (discoverer VARCHAR, museum VARCHAR)"}, {"answer": "SELECT museum AS city FROM table_name_28 WHERE discoverer = \"jane solem\"", "question": "What is the city of the Museum that houses the specimen discovered by Jane Solem?", "context": "CREATE TABLE table_name_28 (museum VARCHAR, discoverer VARCHAR)"}, {"answer": "SELECT museum AS city FROM table_name_48 WHERE name = \"sue\"", "question": "What city has the museum that holds the Sue specimen?", "context": "CREATE TABLE table_name_48 (museum VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_57 WHERE roll = \"637\"", "question": "With what Name does the Roll of 637 belong?", "context": "CREATE TABLE table_name_57 (name VARCHAR, roll VARCHAR)"}, {"answer": "SELECT authority FROM table_name_4 WHERE roll = \"70\"", "question": "Which is the Authority that has a Roll of 70?", "context": "CREATE TABLE table_name_4 (authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT years FROM table_name_91 WHERE decile = \"6\"", "question": "The Decile of 6 has which corresponding Years?", "context": "CREATE TABLE table_name_91 (years VARCHAR, decile VARCHAR)"}, {"answer": "SELECT award FROM table_name_78 WHERE director_s_ = \"candida scott knight\"", "question": "Name the award for candida scott knight", "context": "CREATE TABLE table_name_78 (award VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT recipient FROM table_name_94 WHERE award = \"\u00a36,947\" AND film = \"jamaica\"", "question": "Name the recipient for jamaica and award of \u00a36,947", "context": "CREATE TABLE table_name_94 (recipient VARCHAR, award VARCHAR, film VARCHAR)"}, {"answer": "SELECT film FROM table_name_98 WHERE award = \"\u00a33,740\"", "question": "Name the film for award of \u00a33,740", "context": "CREATE TABLE table_name_98 (film VARCHAR, award VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_81 WHERE recipient = \"maya vision international ltd\"", "question": "Name the director for maya vision international ltd", "context": "CREATE TABLE table_name_81 (director_s_ VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT film FROM table_name_66 WHERE award = \"\u00a33,386\"", "question": "Name the film for award of \u00a33,386", "context": "CREATE TABLE table_name_66 (film VARCHAR, award VARCHAR)"}, {"answer": "SELECT venue FROM table_name_4 WHERE position = \"25th\" AND year = 2004", "question": "Name the venue for 2004 and position of 25th", "context": "CREATE TABLE table_name_4 (venue VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_1 WHERE position = \"27th\"", "question": "Name the venue for 27th position", "context": "CREATE TABLE table_name_1 (venue VARCHAR, position VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE competition = \"2005 fifa confederations cup\" AND result = \"draw\"", "question": "What was the score of the draw in the 2005 FIFA Confederations Cup?", "context": "CREATE TABLE table_name_24 (score VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT MAX(peroutka) FROM table_name_69 WHERE others = 46 AND electors < 15", "question": "What is the highest Peroutka with 46 others, and less than 15 electors?", "context": "CREATE TABLE table_name_69 (peroutka INTEGER, others VARCHAR, electors VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_name_20 WHERE year = \"1990\"", "question": "Who came in 3rd place in 1990?", "context": "CREATE TABLE table_name_20 (year VARCHAR)"}, {"answer": "SELECT class AS pos FROM table_name_71 WHERE team = \"jml team panoz\"", "question": "Which class Pos has a Team of jml team panoz?", "context": "CREATE TABLE table_name_71 (class VARCHAR, team VARCHAR)"}, {"answer": "SELECT class AS pos FROM table_name_25 WHERE year > 1997 AND team = \"corvette racing\" AND class = \"gt1\" AND laps = 327", "question": "Which Class Pos has a Year larger than 1997, a Team of corvette racing, a Class of gt1, and 327 laps?", "context": "CREATE TABLE table_name_25 (class VARCHAR, laps VARCHAR, year VARCHAR, team VARCHAR)"}, {"answer": "SELECT final FROM table_name_11 WHERE no5 = \"simara\"", "question": "What is the final result of the team that has Simara as No.5?", "context": "CREATE TABLE table_name_11 (final VARCHAR, no5 VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_25 WHERE second_driver = \"jimmy bryan\"", "question": "Which Winning Driver has a Second Driver of jimmy bryan?", "context": "CREATE TABLE table_name_25 (winning_driver VARCHAR, second_driver VARCHAR)"}, {"answer": "SELECT AVG(cars_entered) FROM table_name_53 WHERE third_driver = \"manny ayulo\"", "question": "How many average Cars Entered have a Third Driver of manny ayulo?", "context": "CREATE TABLE table_name_53 (cars_entered INTEGER, third_driver VARCHAR)"}, {"answer": "SELECT MAX(cars_entered) FROM table_name_69 WHERE season = 1958", "question": "What are the largest Cars Entered with a Season of 1958?", "context": "CREATE TABLE table_name_69 (cars_entered INTEGER, season VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_2 WHERE third_driver = \"jimmy davies\"", "question": "What is the largest season with a Third Driver of jimmy davies?", "context": "CREATE TABLE table_name_2 (season INTEGER, third_driver VARCHAR)"}, {"answer": "SELECT MAX(cars_entered) FROM table_name_33 WHERE winning_driver = \"rodger ward\" AND season < 1959", "question": "What are the largest Cars Entered with a Winning Driver of rodger ward, and a Season smaller than 1959?", "context": "CREATE TABLE table_name_33 (cars_entered INTEGER, winning_driver VARCHAR, season VARCHAR)"}, {"answer": "SELECT engine FROM table_name_66 WHERE chassis = \"brabham bt58\" AND points > 2", "question": "What engine with more than 2 points has Brabham bt58 as Chassis?", "context": "CREATE TABLE table_name_66 (engine VARCHAR, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_71 WHERE engine = \"judd v8\" AND year = 1989", "question": "How many points did Judd v8 has in 1989?", "context": "CREATE TABLE table_name_71 (points VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_79 WHERE entrant = \"sasol jordan yamaha\"", "question": "How many years has Sasol Jordan Yamaha as an Entrant?", "context": "CREATE TABLE table_name_79 (year INTEGER, entrant VARCHAR)"}, {"answer": "SELECT record FROM table_name_30 WHERE loss = \"williams (3-1)\"", "question": "What was the record for the game that had a loss of Williams (3-1)?", "context": "CREATE TABLE table_name_30 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE loss = \"embree (1-2)\"", "question": "What was the score of the game that had a loss of Embree (1-2)?", "context": "CREATE TABLE table_name_98 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_55 WHERE tournament = \"olympic games\"", "question": "What shows for 2007 at the Olympic Games as tournament.", "context": "CREATE TABLE table_name_55 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_5 WHERE 2012 = \"1r\"", "question": "What shows for 2009 when the 2012 is 1R?", "context": "CREATE TABLE table_name_5 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_50 WHERE 2009 = \"q1\"", "question": "What is the 2010 when the 2009 shows Q1?", "context": "CREATE TABLE table_name_50 (Id VARCHAR)"}, {"answer": "SELECT gross_revenue__2011_ FROM table_name_8 WHERE state = \"mo\"", "question": "What is the gross revenue in 2011 for MO?", "context": "CREATE TABLE table_name_8 (gross_revenue__2011_ VARCHAR, state VARCHAR)"}, {"answer": "SELECT state FROM table_name_30 WHERE venue = \"tsukisamu dome\"", "question": "Which state has the venue Tsukisamu dome?", "context": "CREATE TABLE table_name_30 (state VARCHAR, venue VARCHAR)"}, {"answer": "SELECT city FROM table_name_92 WHERE gross_revenue__2011_ = \"$739,578\"", "question": "Which city had a gross revenue in 2011 of $739,578?", "context": "CREATE TABLE table_name_92 (city VARCHAR, gross_revenue__2011_ VARCHAR)"}, {"answer": "SELECT gross_revenue__2011_ FROM table_name_28 WHERE gross_revenue__1982_ = \"$1,988,047\"", "question": "What is the gross revenue in 2011 with a gross revenue in 1982 of $1,988,047?", "context": "CREATE TABLE table_name_28 (gross_revenue__2011_ VARCHAR, gross_revenue__1982_ VARCHAR)"}, {"answer": "SELECT grid FROM table_name_96 WHERE driver = \"mark webber\"", "question": "What was the grid when the driver was Mark Webber?", "context": "CREATE TABLE table_name_96 (grid VARCHAR, driver VARCHAR)"}, {"answer": "SELECT driver FROM table_name_1 WHERE constructor = \"renault\" AND time_retired = \"+38.600\"", "question": "Who was the driver, when the constructor was Renault, and when the Time/Retired was +38.600?", "context": "CREATE TABLE table_name_1 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT laps FROM table_name_73 WHERE time_retired = \"+1:00.003\"", "question": "How many laps were there when the Time/Retired was +1:00.003?", "context": "CREATE TABLE table_name_73 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT laps FROM table_name_45 WHERE time_retired = \"+14.403\"", "question": "How many laps were there when the Time/Retired was +14.403?", "context": "CREATE TABLE table_name_45 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT driver FROM table_name_10 WHERE laps = \"35\"", "question": "Who was the driver when there were 35 laps?", "context": "CREATE TABLE table_name_10 (driver VARCHAR, laps VARCHAR)"}, {"answer": "SELECT laps FROM table_name_7 WHERE constructor = \"renault\" AND driver = \"fernando alonso\"", "question": "How many laps were there when the constructor was Renault, and when the Driver was Fernando Alonso?", "context": "CREATE TABLE table_name_7 (laps VARCHAR, constructor VARCHAR, driver VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_74 WHERE name = \"new york life insurance building\"", "question": "What's the Street address with a Name of New York Life Insurance building?", "context": "CREATE TABLE table_name_74 (street_address VARCHAR, name VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_12 WHERE street_address = \"324 e. 11th street\"", "question": "What's the Years as tallest with a Street address of 324 E. 11th Street?", "context": "CREATE TABLE table_name_12 (years_as_tallest VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT height_feet___m FROM table_name_40 WHERE street_address = \"2345 grand avenue\"", "question": "What is listsed as the Height feet/m and has a Street address of 2345 Grand Avenue?", "context": "CREATE TABLE table_name_40 (height_feet___m VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_40 WHERE city = \"london\" AND enrollment < 30 OFFSET 000", "question": "What is the average capacity of stadiums in the City of London that belong to schools with an enrollment less than 30,000?", "context": "CREATE TABLE table_name_40 (capacity INTEGER, city VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT player FROM table_name_25 WHERE score = 69 - 70 = 139", "question": "Who had a score of 69-70=139?", "context": "CREATE TABLE table_name_25 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE result = \"5\u20130\"", "question": "What was the score of the game that had a result of 5\u20130?", "context": "CREATE TABLE table_name_30 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(heat) FROM table_name_99 WHERE time = \"2:23.95\"", "question": "What is the heat number of the athlete who finished in 2:23.95?", "context": "CREATE TABLE table_name_99 (heat INTEGER, time VARCHAR)"}, {"answer": "SELECT lane FROM table_name_6 WHERE nationality = \"zambia\"", "question": "Which lane did the athlete from Zambia swim in?", "context": "CREATE TABLE table_name_6 (lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_69 WHERE record = \"4-5\"", "question": "Who was the opponent at the game when the record was 4-5?", "context": "CREATE TABLE table_name_69 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(2009) FROM table_name_60 WHERE 2001 > 0 AND 1996 < 1 AND 2004 > 2", "question": "What is the average for 2009 when 2001 is more than 0, 1996 is less than 1 and 2004 is more than 2", "context": "CREATE TABLE table_name_60 (Id VARCHAR)"}, {"answer": "SELECT SUM(2009) FROM table_name_5 WHERE 1989 < 0", "question": "What is the listing for 2009 when 1989 is less than 0?", "context": "CREATE TABLE table_name_5 (Id VARCHAR)"}, {"answer": "SELECT AVG(2005) FROM table_name_77 WHERE 1995 > 3 AND 1996 < 4 AND 2011 > 5", "question": "what is the average for 2005 when 1995 is more than 3, 1996 is less than 4, and 2011 is more than 5?", "context": "CREATE TABLE table_name_77 (Id VARCHAR)"}, {"answer": "SELECT SUM(1999) FROM table_name_27 WHERE 1990 > 0 AND 2003 = 3 AND 2007 > 1 AND 1996 > 0", "question": "what is the listing for 1999 when 1990 is more than 0, 2003 is 3, 2007 is more than 1 and 1996 is more than 0?", "context": "CREATE TABLE table_name_27 (Id VARCHAR)"}, {"answer": "SELECT MIN(2012) FROM table_name_8 WHERE 2004 > 0 AND 2008 > 1 AND 1994 = 8 AND 2005 < 11", "question": "what is the listing for 2012 when 2004 is more than 0, 2008 is more than 1 1994 is 8 and 2005 is less than 11?", "context": "CREATE TABLE table_name_8 (Id VARCHAR)"}, {"answer": "SELECT SUM(1992) FROM table_name_14 WHERE 1999 > 1 AND 2008 < 2 AND 2003 < 2", "question": "what is the listing for 1992 when 1999 is more than 1, 2008 is less than 2 and 2003 is less than 2?", "context": "CREATE TABLE table_name_14 (Id VARCHAR)"}, {"answer": "SELECT _percentage_of_1_rep_max_last_set_ FROM table_name_28 WHERE set_4 = \"145lb x 5reps\"", "question": "How many % of 1 Rep Max(Last Set) has a Set 4 of 145lb x 5reps?", "context": "CREATE TABLE table_name_28 (_percentage_of_1_rep_max_last_set_ VARCHAR, set_4 VARCHAR)"}, {"answer": "SELECT volume_lbs FROM table_name_53 WHERE set_4 = \"115lb x 8reps\"", "question": "How many lbs does a set 4 of 115lb x 8reps have?", "context": "CREATE TABLE table_name_53 (volume_lbs VARCHAR, set_4 VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_1 WHERE week = 6", "question": "What is set 3 on week 6?", "context": "CREATE TABLE table_name_1 (set_3 VARCHAR, week VARCHAR)"}, {"answer": "SELECT gdp_per_capita__us$_ FROM table_name_90 WHERE gdp__billion_us$_ = \"156.640\"", "question": "What is the per-capita GDP for the country with an overall GDP of 156.640?", "context": "CREATE TABLE table_name_90 (gdp_per_capita__us$_ VARCHAR, gdp__billion_us$_ VARCHAR)"}, {"answer": "SELECT gdp_per_capita__us$_ FROM table_name_40 WHERE gdp__billion_us$_ = \"80.955\"", "question": "What is the per-capita GDP of the country with an overall GDP of 80.955?", "context": "CREATE TABLE table_name_40 (gdp_per_capita__us$_ VARCHAR, gdp__billion_us$_ VARCHAR)"}, {"answer": "SELECT member_countries FROM table_name_15 WHERE area__km\u00b2_ = \"871,980\"", "question": "Which country has an area of 871,980 square km?", "context": "CREATE TABLE table_name_15 (member_countries VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_74 WHERE partner = \"dora djilianova\" AND date = \"october 1, 1995\"", "question": "On October 1, 1995 with Dora Djilianova as a partner, what was the outcome of the match?", "context": "CREATE TABLE table_name_74 (outcome VARCHAR, partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_90 WHERE partner = \"lindsay lee-waters\"", "question": "With Lindsay Lee-Waters as a partner, what was the final score?", "context": "CREATE TABLE table_name_90 (score_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT score FROM table_name_58 WHERE date = \"august 17\"", "question": "Which score has a Date of august 17?", "context": "CREATE TABLE table_name_58 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE opponent = \"@ athletics\" AND record = \"76-57\"", "question": "Which score has an Opponent of @ athletics, and a Record of 76-57?", "context": "CREATE TABLE table_name_19 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_37 WHERE record = \"67-51\"", "question": "Which loss has a Record of 67-51?", "context": "CREATE TABLE table_name_37 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT position FROM table_name_31 WHERE wins = \"2\" AND season = 1992", "question": "Which position has 2 wins in 1992?", "context": "CREATE TABLE table_name_31 (position VARCHAR, wins VARCHAR, season VARCHAR)"}, {"answer": "SELECT wins FROM table_name_78 WHERE series = \"formula nippon\" AND position = \"8th\"", "question": "How many wins have a Series of formula nippon, and a Position of 8th?", "context": "CREATE TABLE table_name_78 (wins VARCHAR, series VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(season) FROM table_name_52 WHERE races = \"6\" AND series = \"all-japan gt championship\" AND wins = \"2\"", "question": "What is the smallest season with 6 races, 2 wins, and a Series of all-japan gt championship>", "context": "CREATE TABLE table_name_52 (season INTEGER, wins VARCHAR, races VARCHAR, series VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_88 WHERE to_par > 2 AND player = \"mark brooks\"", "question": "What was Mark Brooks total score when he finished more than 2 above par?", "context": "CREATE TABLE table_name_88 (total INTEGER, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_4 WHERE year_s__won = \"1993\"", "question": "What was the winning to par score of the 1993 PGA Championship?", "context": "CREATE TABLE table_name_4 (to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT SUM(construct__tion_no) FROM table_name_7 WHERE wheel_arrange__ment = \"4-4-0\"", "question": "How many constructions has a Wheel arrange- ment of 4-4-0?", "context": "CREATE TABLE table_name_7 (construct__tion_no INTEGER, wheel_arrange__ment VARCHAR)"}, {"answer": "SELECT builder FROM table_name_6 WHERE tc & stl_no__1883_84_ > 54 AND date_ordered = \"november 1881\"", "question": "Who built the order on November 1881 of more than 54 TC&StL no. (1883\u201384)?", "context": "CREATE TABLE table_name_6 (builder VARCHAR, date_ordered VARCHAR, tc VARCHAR, stl_no__1883_84_ VARCHAR)"}, {"answer": "SELECT season_outcome FROM table_name_10 WHERE school = \"sussex central\"", "question": "What is the Season Outcome for the Sussex Central School?", "context": "CREATE TABLE table_name_10 (season_outcome VARCHAR, school VARCHAR)"}, {"answer": "SELECT team FROM table_name_31 WHERE school = \"sussex tech\"", "question": "What is the School of Sussex Tech's Team?", "context": "CREATE TABLE table_name_31 (team VARCHAR, school VARCHAR)"}, {"answer": "SELECT team FROM table_name_68 WHERE school = \"milford\"", "question": "What is the Team for the Milford School?", "context": "CREATE TABLE table_name_68 (team VARCHAR, school VARCHAR)"}, {"answer": "SELECT season FROM table_name_79 WHERE rating = \"+33\"", "question": "Which season was one of the players rated +33?", "context": "CREATE TABLE table_name_79 (season VARCHAR, rating VARCHAR)"}, {"answer": "SELECT team FROM table_name_51 WHERE win__number = \"1\" AND rating = \"+85\"", "question": "What is the name of the team that had 1 win and a rating of +85?", "context": "CREATE TABLE table_name_51 (team VARCHAR, win__number VARCHAR, rating VARCHAR)"}, {"answer": "SELECT season FROM table_name_6 WHERE rating = \"+98\"", "question": "Which season was one of the players rated +98?", "context": "CREATE TABLE table_name_6 (season VARCHAR, rating VARCHAR)"}, {"answer": "SELECT rating FROM table_name_62 WHERE player = \"patrice bergeron\"", "question": "What is Patrice Bergeron's rating?", "context": "CREATE TABLE table_name_62 (rating VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_47 WHERE position = \"defensive tackle\" AND round = 4 AND pick__number < 36", "question": "Position of defensive tackle, and a Round of 4, and a Pick # smaller than 36 has what overall average?", "context": "CREATE TABLE table_name_47 (overall INTEGER, pick__number VARCHAR, position VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(pick__number) FROM table_name_88 WHERE name = \"jaimie thomas\" AND round < 7", "question": "Pick # that has a Name of jaimie thomas, and a Round smaller than 7 is how many numbers?", "context": "CREATE TABLE table_name_88 (pick__number VARCHAR, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT muzzle_device FROM table_name_47 WHERE barrel_twist = \"1:7\" AND stock = \"4th generation\"", "question": "What is the muzzle device with a 1:7 barrel twist and a stock 4th generation?", "context": "CREATE TABLE table_name_47 (muzzle_device VARCHAR, barrel_twist VARCHAR, stock VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE opponenent = \"poland\" AND match_type = \"ec -qualifier\"", "question": "When was the opponent Poland and the match type EC -qualifier?", "context": "CREATE TABLE table_name_12 (date VARCHAR, opponenent VARCHAR, match_type VARCHAR)"}, {"answer": "SELECT location FROM table_name_96 WHERE opponenent = \"germany\"", "question": "Where was the opponent Germany?", "context": "CREATE TABLE table_name_96 (location VARCHAR, opponenent VARCHAR)"}, {"answer": "SELECT opponenent FROM table_name_70 WHERE result = \"2-2 (draw)\"", "question": "Who was the opponent when the result was 2-2 (draw)?", "context": "CREATE TABLE table_name_70 (opponenent VARCHAR, result VARCHAR)"}, {"answer": "SELECT match_type FROM table_name_64 WHERE location = \"budapest\" AND opponenent = \"luxembourg\"", "question": "What was the match type in Budapest where the opponent was Luxembourg?", "context": "CREATE TABLE table_name_64 (match_type VARCHAR, location VARCHAR, opponenent VARCHAR)"}, {"answer": "SELECT player FROM table_name_95 WHERE score = 72 - 67 - 69 = 208", "question": "Which player has the score 72-67-69=208?", "context": "CREATE TABLE table_name_95 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_23 WHERE score = \"70-76-68-214\"", "question": "Who has the par score of 70-76-68-214?", "context": "CREATE TABLE table_name_23 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_71 WHERE score = \"70-76-68-214\"", "question": "Which country has the score 70-76-68-214?", "context": "CREATE TABLE table_name_71 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT first_performance FROM table_name_72 WHERE style = \"ballet\" AND status = \"final cast\" AND name = \"peter mazurowski\"", "question": "when was the first performance for the ballet with peter mazurowski in the final cast?", "context": "CREATE TABLE table_name_72 (first_performance VARCHAR, name VARCHAR, style VARCHAR, status VARCHAR)"}, {"answer": "SELECT name FROM table_name_26 WHERE first_performance = \"3 july 2011\"", "question": "who had the first performance on 3 july 2011?", "context": "CREATE TABLE table_name_26 (name VARCHAR, first_performance VARCHAR)"}, {"answer": "SELECT name FROM table_name_18 WHERE last_performance = \"3 july 2011\"", "question": "who had a last performance of 3 july 2011?", "context": "CREATE TABLE table_name_18 (name VARCHAR, last_performance VARCHAR)"}, {"answer": "SELECT status FROM table_name_73 WHERE style = \"ballet/ gymnastics\"", "question": "what's the status in the style of ballet/ gymnastics?", "context": "CREATE TABLE table_name_73 (status VARCHAR, style VARCHAR)"}, {"answer": "SELECT name FROM table_name_68 WHERE status = \"final cast\" AND first_performance = \"12 november 2011\"", "question": "what's the name with final cast status and first performance on 12 november 2011?", "context": "CREATE TABLE table_name_68 (name VARCHAR, status VARCHAR, first_performance VARCHAR)"}, {"answer": "SELECT last_performance FROM table_name_7 WHERE status = \"past\" AND style = \"ballet\" AND name = \"tommy batchelor\"", "question": "what last performance has past status, ballet as style and tommy batchelor?", "context": "CREATE TABLE table_name_7 (last_performance VARCHAR, name VARCHAR, status VARCHAR, style VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_38 WHERE nat = \"eng\" AND transfer_fee = \"youth system\" AND since < 2005 AND name = \"rix\"", "question": "How many goals was by Rix from Eng who started before 2005 in the youth system?", "context": "CREATE TABLE table_name_38 (goals VARCHAR, name VARCHAR, since VARCHAR, nat VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT nat FROM table_name_36 WHERE name = \"rix\"", "question": "Where is Rix from?", "context": "CREATE TABLE table_name_36 (nat VARCHAR, name VARCHAR)"}, {"answer": "SELECT specification FROM table_name_1 WHERE total_produced > 19 AND model = \"fb-1\"", "question": "What is the specification of the locomotives with a total produced more than 19 and a model of fb-1?", "context": "CREATE TABLE table_name_1 (specification VARCHAR, total_produced VARCHAR, model VARCHAR)"}, {"answer": "SELECT build_date FROM table_name_42 WHERE total_produced < 45 AND model = \"fb-2\"", "question": "What is the build date of the locomotives with a total produced less than 45 and a fb-2 model?", "context": "CREATE TABLE table_name_42 (build_date VARCHAR, total_produced VARCHAR, model VARCHAR)"}, {"answer": "SELECT prime_mover FROM table_name_16 WHERE model = \"fa-2\"", "question": "What is the prime mover of the locomotive with a fa-2 model?", "context": "CREATE TABLE table_name_16 (prime_mover VARCHAR, model VARCHAR)"}, {"answer": "SELECT build_date FROM table_name_55 WHERE model = \"fa-2\"", "question": "What is the build date of the locomotive with a fa-2 model?", "context": "CREATE TABLE table_name_55 (build_date VARCHAR, model VARCHAR)"}, {"answer": "SELECT region_served FROM table_name_1 WHERE transmitter_location = \"mount sugarloaf\"", "question": "What region has a transmitter located at Mount Sugarloaf?", "context": "CREATE TABLE table_name_1 (region_served VARCHAR, transmitter_location VARCHAR)"}, {"answer": "SELECT finals FROM table_name_71 WHERE prelim = \"out of playoffs\"", "question": "Name the finals for prelim of out of playoffs", "context": "CREATE TABLE table_name_71 (finals VARCHAR, prelim VARCHAR)"}, {"answer": "SELECT music_director FROM table_name_35 WHERE film = \"vettaiyaadu vilaiyaadu\"", "question": "Who is the musical director of the film Vettaiyaadu vilaiyaadu?", "context": "CREATE TABLE table_name_35 (music_director VARCHAR, film VARCHAR)"}, {"answer": "SELECT film FROM table_name_2 WHERE year = 2007 AND language = \"hindi\" AND music_director = \"shantanu moitra\"", "question": "What is the 2007 film in Hindi with a music director Shantanu moitra?", "context": "CREATE TABLE table_name_2 (film VARCHAR, music_director VARCHAR, year VARCHAR, language VARCHAR)"}, {"answer": "SELECT COUNT(loss) FROM table_name_84 WHERE coach = \"john kowalski\" AND pts < 9", "question": "What is the number of losses that coach John Kowalski has with a PTS smaller than 9?", "context": "CREATE TABLE table_name_84 (loss VARCHAR, coach VARCHAR, pts VARCHAR)"}, {"answer": "SELECT AVG(pct) FROM table_name_45 WHERE pts < 9 AND wins > 1", "question": "What is the average PCT when it has a PTS smaller than 9 a wins larger than 1?", "context": "CREATE TABLE table_name_45 (pct INTEGER, pts VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(pts) FROM table_name_11 WHERE pct < 0.1", "question": "What is the sum of PTS when there is a PCT smaller than 0.1?", "context": "CREATE TABLE table_name_11 (pts INTEGER, pct INTEGER)"}, {"answer": "SELECT coach FROM table_name_48 WHERE pct > 0.1 AND pts > 9 AND loss = 19", "question": "What coach has a PCT larger than 0.1, PTS larger than 9 and a loss of 19?", "context": "CREATE TABLE table_name_48 (coach VARCHAR, loss VARCHAR, pct VARCHAR, pts VARCHAR)"}, {"answer": "SELECT name FROM table_name_59 WHERE rank > 2 AND nationality = \"spain\"", "question": "What's the name of spain rank greater than 2?", "context": "CREATE TABLE table_name_59 (name VARCHAR, rank VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT time FROM table_name_84 WHERE lane < 4 AND nationality = \"spain\"", "question": "Spain had what time with lanes smaller than 4?", "context": "CREATE TABLE table_name_84 (time VARCHAR, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_76 WHERE name = \"noriko inada\"", "question": "What's the smallest rank of noriko inada?", "context": "CREATE TABLE table_name_76 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(lost) FROM table_name_34 WHERE played > 30", "question": "How many total losses have teams that played more than 30 games?", "context": "CREATE TABLE table_name_34 (lost VARCHAR, played INTEGER)"}, {"answer": "SELECT COUNT(rank) FROM table_name_55 WHERE time = \"2:15.98\" AND lane > 7", "question": "What is the number of the rank when the time is 2:15.98, in a lane larger than 7?", "context": "CREATE TABLE table_name_55 (rank VARCHAR, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_89 WHERE name = \"chen yan\" AND lane < 2", "question": "What is the number of the rank for the name of Chen Yan in a lane less than 2?", "context": "CREATE TABLE table_name_89 (rank VARCHAR, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_64 WHERE rank = 6", "question": "What is the smallest lane for rank 6?", "context": "CREATE TABLE table_name_64 (lane INTEGER, rank VARCHAR)"}, {"answer": "SELECT COUNT(league) AS Cup FROM table_name_30 WHERE total < 1", "question": "What's the total for a league cup less than 1?", "context": "CREATE TABLE table_name_30 (league VARCHAR, total INTEGER)"}, {"answer": "SELECT SUM(fa_cup) FROM table_name_3 WHERE league < 1", "question": "What's the FA Cup that has a league less than 1?", "context": "CREATE TABLE table_name_3 (fa_cup INTEGER, league INTEGER)"}, {"answer": "SELECT MAX(villages) FROM table_name_92 WHERE hanzi = \"\u5357\u6d41\u4e61\" AND population > 24 OFFSET 802", "question": "Which town has the most villages with the hanzi \u5357\u6d41\u4e61 and a population larger than 24,802?", "context": "CREATE TABLE table_name_92 (villages INTEGER, hanzi VARCHAR, population VARCHAR)"}, {"answer": "SELECT pos FROM table_name_41 WHERE laps = 296", "question": "What position did lap 296 come in?", "context": "CREATE TABLE table_name_41 (pos VARCHAR, laps VARCHAR)"}, {"answer": "SELECT played FROM table_name_21 WHERE try_bonus = \"4\" AND points_against = \"391\"", "question": "How many games did the Club that has a try bonus of 4 and 391 points against play ?", "context": "CREATE TABLE table_name_21 (played VARCHAR, try_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_32 WHERE played = \"22\" AND club = \"carmarthen athletic rfc\"", "question": "How many points against did Carmarthen Athletic RFC have when they played 22 games ?", "context": "CREATE TABLE table_name_32 (points_against VARCHAR, played VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_93 WHERE lost = \"10\"", "question": "Which club lost 10 games ?", "context": "CREATE TABLE table_name_93 (club VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_43 WHERE tries_for = \"77\"", "question": "How many points for did the club that had 77 tries for have ?", "context": "CREATE TABLE table_name_43 (points_for VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT club FROM table_name_8 WHERE try_bonus = \"2\"", "question": "Which club has a try bonus of 2 ?", "context": "CREATE TABLE table_name_8 (club VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_75 WHERE date = \"october 11\"", "question": "Name the most attendance for october 11", "context": "CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_52 WHERE date = \"october 19\"", "question": "Name the visitor for october 19", "context": "CREATE TABLE table_name_52 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_12 WHERE series_title = \"dragon laws ii: kidnapped\"", "question": "The highest year for the series titled dragon laws ii: kidnapped is what?", "context": "CREATE TABLE table_name_12 (year INTEGER, series_title VARCHAR)"}, {"answer": "SELECT role FROM table_name_73 WHERE series_title = \"dragon laws i: the undercover\"", "question": "The series titled dragon laws i: the undercover has what role?", "context": "CREATE TABLE table_name_73 (role VARCHAR, series_title VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_7 WHERE fastest_time__s_ = 15.82", "question": "Which athlete has the fastest time of 15.82?", "context": "CREATE TABLE table_name_7 (athlete VARCHAR, fastest_time__s_ VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_87 WHERE points > 0", "question": "What is the total number of years that an entrant had more than 0 points?", "context": "CREATE TABLE table_name_87 (year VARCHAR, points INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_name_65 WHERE engine = \"brm straight-4\"", "question": "Name the total number of years for brm straight-4", "context": "CREATE TABLE table_name_65 (year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_2 WHERE chassis = \"bmw t269 (f2)\"", "question": "Name the total number of points for chassis of bmw t269 (f2)", "context": "CREATE TABLE table_name_2 (points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(promotions) FROM table_name_43 WHERE team = \"pallacanestro messina\" AND relegations > 0", "question": "Whats the highest Promotions that has a Team of Pallacanestro Messina, along with Relegations larger than 0?", "context": "CREATE TABLE table_name_43 (promotions INTEGER, team VARCHAR, relegations VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_32 WHERE chassis = \"zakspeed 841\" AND year < 1985", "question": "What are the lowest points with a Chassis of zakspeed 841, and a Year smaller than 1985?", "context": "CREATE TABLE table_name_32 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_32 WHERE tyres = \"g\" AND points < 0", "question": "What is the lowest year with tyres in g and less than 0 points?", "context": "CREATE TABLE table_name_32 (year INTEGER, tyres VARCHAR, points VARCHAR)"}, {"answer": "SELECT year FROM table_name_6 WHERE engine_s_ = \"yamaha v8\"", "question": "Which year has an Engine(s) of yamaha v8?", "context": "CREATE TABLE table_name_6 (year VARCHAR, engine_s_ VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_40 WHERE chassis = \"zakspeed 881\"", "question": "What are the average points with a Chassis of zakspeed 881?", "context": "CREATE TABLE table_name_40 (points INTEGER, chassis VARCHAR)"}, {"answer": "SELECT league FROM table_name_95 WHERE venue = \"martin luther king, jr. recreation center\"", "question": "Which League has a Venue of martin luther king, jr. recreation center?", "context": "CREATE TABLE table_name_95 (league VARCHAR, venue VARCHAR)"}, {"answer": "SELECT championships__years_ FROM table_name_96 WHERE league = \"milb, florida state league\" AND venue = \"ed smith stadium\"", "question": "Which Championships (Years) have a League of milb, florida state league, and a Venue of ed smith stadium?", "context": "CREATE TABLE table_name_96 (championships__years_ VARCHAR, league VARCHAR, venue VARCHAR)"}, {"answer": "SELECT sport FROM table_name_11 WHERE league = \"continental basketball league\" AND venue = \"avalon middle school\"", "question": "Which Sport has a League of continental basketball league, and a Venue of avalon middle school?", "context": "CREATE TABLE table_name_11 (sport VARCHAR, league VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_38 WHERE sport = \"baseball\" AND championships__years_ = \"0\" AND league = \"milb, florida state league\" AND club = \"jupiter hammerheads\"", "question": "Which Venue has a Sport of baseball, Championships (Years) of 0, a League of milb, florida state league, and a Club of jupiter hammerheads?", "context": "CREATE TABLE table_name_38 (venue VARCHAR, club VARCHAR, league VARCHAR, sport VARCHAR, championships__years_ VARCHAR)"}, {"answer": "SELECT club FROM table_name_86 WHERE league = \"american basketball association\" AND venue = \"tba\"", "question": "Which club has a League of american basketball association, and a Venue of tba?", "context": "CREATE TABLE table_name_86 (club VARCHAR, league VARCHAR, venue VARCHAR)"}, {"answer": "SELECT area FROM table_name_71 WHERE years = \"1\u20138\" AND decile < 7 AND name = \"waikari school\"", "question": "Which area has Years of 1\u20138, a Decile smaller than 7, and a Name of waikari school?", "context": "CREATE TABLE table_name_71 (area VARCHAR, name VARCHAR, years VARCHAR, decile VARCHAR)"}, {"answer": "SELECT AVG(decile) FROM table_name_98 WHERE years = \"1\u20138\" AND area = \"waipara\"", "question": "What is the average decile with Years of 1\u20138, and an Area of waipara?", "context": "CREATE TABLE table_name_98 (decile INTEGER, years VARCHAR, area VARCHAR)"}, {"answer": "SELECT area FROM table_name_9 WHERE years = \"1\u20138\" AND name = \"broomfield school\"", "question": "Which area has Years of 1\u20138, and a Name of broomfield school?", "context": "CREATE TABLE table_name_9 (area VARCHAR, years VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(roll) FROM table_name_40 WHERE decile > 6 AND name = \"broomfield school\"", "question": "What is the smallest roll with a Decile larger than 6, and a Name of broomfield school?", "context": "CREATE TABLE table_name_40 (roll INTEGER, decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_97 WHERE roll = 270", "question": "Which name has a Roll of 270?", "context": "CREATE TABLE table_name_97 (name VARCHAR, roll VARCHAR)"}, {"answer": "SELECT directed_by FROM table_name_52 WHERE written_by = \"dan serafin\" AND original_airdate = \"july 23, 2008\"", "question": "Who directed the episode written by Dan Serafin and aired on July 23, 2008?", "context": "CREATE TABLE table_name_52 (directed_by VARCHAR, written_by VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT title FROM table_name_65 WHERE original_airdate = \"february 2, 2008\"", "question": "What is the title of the episode originally aired on February 2, 2008?", "context": "CREATE TABLE table_name_65 (title VARCHAR, original_airdate VARCHAR)"}, {"answer": "SELECT money_requested__\u00a3_ FROM table_name_2 WHERE entrepreneur_s_ = \"james seddon\"", "question": "How much money did James Seddon request?", "context": "CREATE TABLE table_name_2 (money_requested__\u00a3_ VARCHAR, entrepreneur_s_ VARCHAR)"}, {"answer": "SELECT entrepreneur_s_ FROM table_name_28 WHERE first_aired = \"24 august 2006\"", "question": "Which Entrepreneur(s) first aired on 24 August 2006?", "context": "CREATE TABLE table_name_28 (entrepreneur_s_ VARCHAR, first_aired VARCHAR)"}, {"answer": "SELECT entrepreneur_s_ FROM table_name_69 WHERE company_or_product_name = \"mixalbum\"", "question": "Which Entrepreneur(s) have mixalbum?", "context": "CREATE TABLE table_name_69 (entrepreneur_s_ VARCHAR, company_or_product_name VARCHAR)"}, {"answer": "SELECT money_requested__\u00a3_ FROM table_name_78 WHERE entrepreneur_s_ = \"ian chamings\"", "question": "How much money did Ian Chamings request?", "context": "CREATE TABLE table_name_78 (money_requested__\u00a3_ VARCHAR, entrepreneur_s_ VARCHAR)"}, {"answer": "SELECT investing_dragon_s_ FROM table_name_74 WHERE money_requested__\u00a3_ = \"100,000\" AND company_or_product_name = \"autosafe\"", "question": "Which Investing Dragon(s) requested 100,000 in money and has autosafe?", "context": "CREATE TABLE table_name_74 (investing_dragon_s_ VARCHAR, money_requested__\u00a3_ VARCHAR, company_or_product_name VARCHAR)"}, {"answer": "SELECT height_of_bridge_structure FROM table_name_8 WHERE opened < 2011 AND name = \"anqing bridge\"", "question": "How tall is the Anqing Bridge which opened prior to 2011?", "context": "CREATE TABLE table_name_8 (height_of_bridge_structure VARCHAR, opened VARCHAR, name VARCHAR)"}, {"answer": "SELECT location FROM table_name_18 WHERE type = \"cable-stayed\" AND opened = 2005 AND name = \"badong bridge\"", "question": "Where did the cable-stayed Badong Bridge  open in 2005?", "context": "CREATE TABLE table_name_18 (location VARCHAR, name VARCHAR, type VARCHAR, opened VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_53 WHERE performing_arts = \"janaprakal chandruang\"", "question": "Name the average year for janaprakal chandruang", "context": "CREATE TABLE table_name_53 (year INTEGER, performing_arts VARCHAR)"}, {"answer": "SELECT literature FROM table_name_72 WHERE performing_arts = \"pradit prasarttong\"", "question": "Name the literature for pradit prasarttong", "context": "CREATE TABLE table_name_72 (literature VARCHAR, performing_arts VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_43 WHERE runner_up = \"fabrice soulier\"", "question": "What was the first year Fabrice Soulier was a runner-up?", "context": "CREATE TABLE table_name_43 (year INTEGER, runner_up VARCHAR)"}, {"answer": "SELECT COUNT(entrants) FROM table_name_21 WHERE year = 2011", "question": "How many entrants were there in 2011?", "context": "CREATE TABLE table_name_21 (entrants VARCHAR, year VARCHAR)"}, {"answer": "SELECT rank FROM table_name_95 WHERE laps = 1059", "question": "What was the rank of Bobby Grim when he finished 1059 laps?", "context": "CREATE TABLE table_name_95 (rank VARCHAR, laps VARCHAR)"}, {"answer": "SELECT rd, _time FROM table_name_43 WHERE res = \"win\" AND type = \"tko\" AND opponent = \"carlos molina\"", "question": "What is the rd., time of the match with a win result, a tko type, and Carlos Molina as the opponent?", "context": "CREATE TABLE table_name_43 (rd VARCHAR, _time VARCHAR, opponent VARCHAR, res VARCHAR, type VARCHAR)"}, {"answer": "SELECT record FROM table_name_21 WHERE date = \"2009-07-18\"", "question": "What is the record of the match on 2009-07-18?", "context": "CREATE TABLE table_name_21 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT type FROM table_name_79 WHERE res = \"win\" AND opponent = \"michael gomez\"", "question": "What is the type of the match with a win result and Michael Gomez as the opponent?", "context": "CREATE TABLE table_name_79 (type VARCHAR, res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT goals FROM table_name_66 WHERE caps = 48", "question": "What were the goals when the caps were set at 48?", "context": "CREATE TABLE table_name_66 (goals VARCHAR, caps VARCHAR)"}, {"answer": "SELECT caps FROM table_name_22 WHERE player = \"mile sterjovski\"", "question": "How many caps did the player Mile Sterjovski have?", "context": "CREATE TABLE table_name_22 (caps VARCHAR, player VARCHAR)"}, {"answer": "SELECT goals FROM table_name_59 WHERE player = \"mile sterjovski\"", "question": "What are the goals of Mile Sterjovski as a player?", "context": "CREATE TABLE table_name_59 (goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(caps) FROM table_name_32 WHERE player = \"mitchell duke\"", "question": "How many caps did Mitchell Duke have overall?", "context": "CREATE TABLE table_name_32 (caps VARCHAR, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_83 WHERE date = \"16 february 2003\"", "question": "Which opponent has a Date of 16 february 2003?", "context": "CREATE TABLE table_name_83 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_61 WHERE venue = \"a\" AND opponent = \"stoke city\"", "question": "Which date has an A venue with an Opponent of stoke city?", "context": "CREATE TABLE table_name_61 (date VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_51 WHERE round = \"r5\"", "question": "Which opponent has a Round of r5?", "context": "CREATE TABLE table_name_51 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT scorers FROM table_name_41 WHERE venue = \"a\" AND opponent = \"arsenal\"", "question": "Which Scorers have a Venue of A, and an Opponent of arsenal?", "context": "CREATE TABLE table_name_41 (scorers VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_22 WHERE round = \"qf replay\"", "question": "Which Opponent has a Round of qf replay?", "context": "CREATE TABLE table_name_22 (opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT loss FROM table_name_84 WHERE date = \"april 6\"", "question": "Who took the loss on the April 6 game?", "context": "CREATE TABLE table_name_84 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_75 WHERE date = \"april 15\"", "question": "What was the record after the April 15 game?", "context": "CREATE TABLE table_name_75 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_38 WHERE record = \"10-13\"", "question": "Who was the opponent that led to a 10-13 record?", "context": "CREATE TABLE table_name_38 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_14 WHERE date = \"april 6\"", "question": "What is the record after the April 6 game?", "context": "CREATE TABLE table_name_14 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE date = \"april 12\"", "question": "What was the score for the April 12 game?", "context": "CREATE TABLE table_name_73 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_85 WHERE goals_for = 18 AND losses < 5", "question": "What team has the most wins with at least 18 goals and less than 5 losses?", "context": "CREATE TABLE table_name_85 (wins INTEGER, goals_for VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_12 WHERE team = \"cornwall hc\" AND goals_for > 18", "question": "How many times has the Cornwall HC team, that has scored more than 18 goals, lost ?", "context": "CREATE TABLE table_name_12 (losses VARCHAR, team VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MAX(number_in_series) FROM table_name_19 WHERE production_code = \"50021\u201350025\"", "question": "What is the series number that has a production code of 50021\u201350025?", "context": "CREATE TABLE table_name_19 (number_in_series INTEGER, production_code VARCHAR)"}, {"answer": "SELECT county_team FROM table_name_88 WHERE player = \"jimmy finn\"", "question": "Which county team has jimmy finn as the player?", "context": "CREATE TABLE table_name_88 (county_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(team_number) FROM table_name_93 WHERE player = \"john keane\"", "question": "How many team numbers have john keane as the player?", "context": "CREATE TABLE table_name_93 (team_number VARCHAR, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_15 WHERE player = \"john keane\"", "question": "Which position has john keane as the player?", "context": "CREATE TABLE table_name_15 (position VARCHAR, player VARCHAR)"}, {"answer": "SELECT loss FROM table_name_61 WHERE record = \"27-17\"", "question": "What was the loss of the game when the record was 27-17?", "context": "CREATE TABLE table_name_61 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(goals_against) FROM table_name_48 WHERE wins < 16 AND draws > 14", "question": "What are the smallest goals with wins smaller than 16, and a Draws larger than 14?", "context": "CREATE TABLE table_name_48 (goals_against INTEGER, wins VARCHAR, draws VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_86 WHERE points = \"42-2\" AND goals_against = 67 AND played < 44", "question": "What are the average wins with a Points of 42-2, and Goals against of 67, and Played smaller than 44?", "context": "CREATE TABLE table_name_86 (wins INTEGER, played VARCHAR, points VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_59 WHERE club = \"barcelona atl\u00e8tic\" AND goals_for > 56", "question": "Which average wins have a Club of barcelona atl\u00e8tic, and Goals for larger than 56?", "context": "CREATE TABLE table_name_59 (wins INTEGER, club VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT MIN(position) FROM table_name_63 WHERE goals_against < 78 AND points = \"42-2\" AND wins > 15", "question": "Which lowest position has goals against smaller than 78, Points of 42-2, and Wins larger than 15?", "context": "CREATE TABLE table_name_63 (position INTEGER, wins VARCHAR, goals_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_6 WHERE position = 2 AND goals_against > 53", "question": "Which lowest played has a Position of 2, and Goals against larger than 53?", "context": "CREATE TABLE table_name_6 (played INTEGER, position VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT SUM(goal_difference) FROM table_name_99 WHERE played > 44", "question": "How many goal differences have Played larger than 44?", "context": "CREATE TABLE table_name_99 (goal_difference INTEGER, played INTEGER)"}, {"answer": "SELECT MIN(year) FROM table_name_72 WHERE venue = \"vienna, austria\"", "question": "What year was the race in Vienna, Austria?", "context": "CREATE TABLE table_name_72 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT extra FROM table_name_80 WHERE year = 2002 AND result = \"8th\"", "question": "What event (Extra) in 2002 did the competitor compete in and place 8th?", "context": "CREATE TABLE table_name_80 (extra VARCHAR, year VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_29 WHERE tournament = \"olympic games\"", "question": "Where was the Olympic Games held?", "context": "CREATE TABLE table_name_29 (venue VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_82 WHERE points_for = \"418\"", "question": "That is the value for Try bonus when the value for Points is 418?", "context": "CREATE TABLE table_name_82 (try_bonus VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT club FROM table_name_44 WHERE played = \"22\" AND tries_for = \"41\"", "question": "What is the Club, when the value for Played is 22, and when the value for Tries is 41?", "context": "CREATE TABLE table_name_44 (club VARCHAR, played VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_12 WHERE losing_bonus = \"6\"", "question": "What is the value for Drawn, when the value for Losing bonus is 6?", "context": "CREATE TABLE table_name_12 (drawn VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT lost FROM table_name_35 WHERE try_bonus = \"2\" AND losing_bonus = \"4\"", "question": "What is the value for Lost, when the value for Try bonus is 2, and when the value for Losing bonus is 4?", "context": "CREATE TABLE table_name_35 (lost VARCHAR, try_bonus VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_61 WHERE points = \"43\"", "question": "What is the Losing bonus, when the value for Points is 43?", "context": "CREATE TABLE table_name_61 (losing_bonus VARCHAR, points VARCHAR)"}, {"answer": "SELECT club FROM table_name_8 WHERE lost = \"9\" AND tries_for = \"55\"", "question": "What is the Club, when the value for Lost is 9, and when the value for Tries is 55?", "context": "CREATE TABLE table_name_8 (club VARCHAR, lost VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_65 WHERE nationality = \"england\" AND games = 37", "question": "What is the largest draw with 37 games from England?", "context": "CREATE TABLE table_name_65 (drawn INTEGER, nationality VARCHAR, games VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_2 WHERE cambridge_united_career = \"2008\u20132009\" AND lost < 13", "question": "How many draws have a Cambridge United career of 2008\u20132009 and less than 13 losses?", "context": "CREATE TABLE table_name_2 (drawn VARCHAR, cambridge_united_career VARCHAR, lost VARCHAR)"}, {"answer": "SELECT record FROM table_name_66 WHERE score = \"1\u20130\"", "question": "What was the record at the game when the score was 1\u20130?", "context": "CREATE TABLE table_name_66 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE record = \"19\u201313\u20133\"", "question": "What was the score of the game when the record was 19\u201313\u20133?", "context": "CREATE TABLE table_name_92 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_16 WHERE score = \"1\u20133\"", "question": "Who was the visiting team when the score was 1\u20133?", "context": "CREATE TABLE table_name_16 (visitor VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_52 WHERE record = \"20\u201313\u20133\"", "question": "Who was the home team when there was a record of 20\u201313\u20133?", "context": "CREATE TABLE table_name_52 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE record = \"18\u201310\u20132\"", "question": "What was the date of the game with the record of 18\u201310\u20132?", "context": "CREATE TABLE table_name_60 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_30 WHERE visitor = \"minnesota\"", "question": "Visitor of minnesota has what average attendance?", "context": "CREATE TABLE table_name_30 (attendance INTEGER, visitor VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_9 WHERE date = \"december 29\"", "question": "Date of december 29 has what visitor?", "context": "CREATE TABLE table_name_9 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_61 WHERE score = \"2 \u2013 3\"", "question": "Score of 2 \u2013 3 has what attendance?", "context": "CREATE TABLE table_name_61 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_35 WHERE record = \"48-51\"", "question": "With a record of 48-51 for the team, the lowest 2005 attendance was listed as how many?", "context": "CREATE TABLE table_name_35 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_36 WHERE loss = \"obermueller (1-2)\"", "question": "What would be the lowest Attendance that also showed a loss of Obermueller (1-2)?", "context": "CREATE TABLE table_name_36 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_61 WHERE date = \"october 31\"", "question": "What was the stadium for the game held on October 31?", "context": "CREATE TABLE table_name_61 (stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_81 WHERE stadium = \"cleveland browns stadium\"", "question": "How many weeks in total were games played at Cleveland Browns Stadium?", "context": "CREATE TABLE table_name_81 (week VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT surface FROM table_name_97 WHERE date = \"23 october 2011\"", "question": "What was the surface on 23 October 2011?", "context": "CREATE TABLE table_name_97 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT coach FROM table_name_27 WHERE losses = 15", "question": "Which Notre Dame coach lost 15 games?", "context": "CREATE TABLE table_name_27 (coach VARCHAR, losses VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_43 WHERE years = \"1904\"", "question": "How many losses did Notre Dame have in 1904?", "context": "CREATE TABLE table_name_43 (losses INTEGER, years VARCHAR)"}, {"answer": "SELECT pct FROM table_name_86 WHERE years = \"1905\"", "question": "What was the winning percent of Notre Dame in 1905?", "context": "CREATE TABLE table_name_86 (pct VARCHAR, years VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_22 WHERE venue = \"edgbaston\"", "question": "Who is the home captain that played at Edgbaston?", "context": "CREATE TABLE table_name_22 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_41 WHERE venue = \"edgbaston\"", "question": "Who is the home captain that played at Edgbaston?", "context": "CREATE TABLE table_name_41 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_24 WHERE home_captain = \"graham gooch\" AND date = \"3,4,5,6,7 june 1993\"", "question": "For the matches with home captain Graham Gooch played on the dates 3,4,5,6,7 June 1993, what was the result?", "context": "CREATE TABLE table_name_24 (result VARCHAR, home_captain VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_32 WHERE date = \"3,4,5,6,7 june 1993\"", "question": "What was the venue for the matches played on the dates 3,4,5,6,7 June 1993?", "context": "CREATE TABLE table_name_32 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_81 WHERE venue = \"trent bridge\"", "question": "Who was the away captain for matches played at Trent Bridge?", "context": "CREATE TABLE table_name_81 (away_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT rank FROM table_name_32 WHERE club_clubs = \"hawthorn\"", "question": "Which rank is Hawthorn?", "context": "CREATE TABLE table_name_32 (rank VARCHAR, club_clubs VARCHAR)"}, {"answer": "SELECT first_performance FROM table_name_74 WHERE status = \"past\" AND style = \"ballet, tap\"", "question": "What is the First Performance when the status is past and the style was ballet, tap?", "context": "CREATE TABLE table_name_74 (first_performance VARCHAR, status VARCHAR, style VARCHAR)"}, {"answer": "SELECT last_performance FROM table_name_16 WHERE status = \"current cast\" AND name = \"noah parets\"", "question": "What was the Last Performance when the status is current cast, and a Name of noah parets?", "context": "CREATE TABLE table_name_16 (last_performance VARCHAR, status VARCHAR, name VARCHAR)"}, {"answer": "SELECT style FROM table_name_31 WHERE name = \"giuseppe bausilio\"", "question": "What is the style for Giuseppe Bausilio?", "context": "CREATE TABLE table_name_31 (style VARCHAR, name VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_56 WHERE event = \"jungle fight 6\"", "question": "Which opponent has the event Jungle Fight 6?", "context": "CREATE TABLE table_name_56 (opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT method FROM table_name_24 WHERE event = \"jungle fight 2\"", "question": "Which is the method under the event Jungle Fight 2?", "context": "CREATE TABLE table_name_24 (method VARCHAR, event VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_71 WHERE draw = 4", "question": "What is the total number of points when draw is 4?", "context": "CREATE TABLE table_name_71 (points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT SUM(goals_scored) FROM table_name_44 WHERE draw < 8 AND points = 19 AND goals_conceded > 26", "question": "what is the goals scored when draw is less than 8, points is 19 and goals conceded is more than 26?", "context": "CREATE TABLE table_name_44 (goals_scored INTEGER, goals_conceded VARCHAR, draw VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_15 WHERE goals_conceded < 24 AND place < 6 AND goals_scored < 26", "question": "what is the points when the goals conceded is less than 24, place is less than 6 and goals scored is less than 26?", "context": "CREATE TABLE table_name_15 (points INTEGER, goals_scored VARCHAR, goals_conceded VARCHAR, place VARCHAR)"}, {"answer": "SELECT SUM(place) FROM table_name_12 WHERE lost < 12 AND points < 19", "question": "what is the place when losses is less than 12 and points is less than 19?", "context": "CREATE TABLE table_name_12 (place INTEGER, lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(place) FROM table_name_13 WHERE lost > 12", "question": "what is the average place when lost is more than 12?", "context": "CREATE TABLE table_name_13 (place INTEGER, lost INTEGER)"}, {"answer": "SELECT SUM(year) FROM table_name_94 WHERE seats = \"48 of 120\" AND _percentage_votes > 34.18", "question": "In what Year were there 48 of 120 Seats and a % votes larger than 34.18?", "context": "CREATE TABLE table_name_94 (year INTEGER, seats VARCHAR, _percentage_votes VARCHAR)"}, {"answer": "SELECT seats FROM table_name_26 WHERE year > 1993 AND _percentage_votes = 38.72", "question": "After 1993, what is the Seats with a % votes of 38.72?", "context": "CREATE TABLE table_name_26 (seats VARCHAR, year VARCHAR, _percentage_votes VARCHAR)"}, {"answer": "SELECT MAX(isolation__km_) FROM table_name_61 WHERE elevation__m_ < 1320 AND municipality = \"hinn\u00f8ya\"", "question": "What is the highest Isolation (km) when the elevation was smaller than 1320, and a Municipality of hinn\u00f8ya?", "context": "CREATE TABLE table_name_61 (isolation__km_ INTEGER, elevation__m_ VARCHAR, municipality VARCHAR)"}, {"answer": "SELECT AVG(isolation__km_) FROM table_name_83 WHERE municipality = \"sunndal\" AND elevation__m_ > 1850", "question": "What is the average Isolation in the municipality of Sunndal at an elevation of more than 1850?", "context": "CREATE TABLE table_name_83 (isolation__km_ INTEGER, municipality VARCHAR, elevation__m_ VARCHAR)"}, {"answer": "SELECT MAX(elevation__m_) FROM table_name_83 WHERE peak = \"daurm\u00e5l\" AND isolation__km_ > 4", "question": "What is the highest elevation for the peak daurm\u00e5l, and an Isolation (km) larger than 4?", "context": "CREATE TABLE table_name_83 (elevation__m_ INTEGER, peak VARCHAR, isolation__km_ VARCHAR)"}, {"answer": "SELECT county FROM table_name_64 WHERE elevation__m_ < 1833 AND isolation__km_ > 18 AND peak = \"store lenangstind\"", "question": "What country has an Elevation less than 1833 and an Isolation (km) larger than 18, and a Peak of store lenangstind?", "context": "CREATE TABLE table_name_64 (county VARCHAR, peak VARCHAR, elevation__m_ VARCHAR, isolation__km_ VARCHAR)"}, {"answer": "SELECT county FROM table_name_9 WHERE prominence__m_ < 1292 AND isolation__km_ = 14", "question": "What country has a prominence less than 1292 and an Isolation (km) of 14?", "context": "CREATE TABLE table_name_9 (county VARCHAR, prominence__m_ VARCHAR, isolation__km_ VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_20 WHERE name = \"george bovell\"", "question": "Which lane did George Bovell swim in?", "context": "CREATE TABLE table_name_20 (lane INTEGER, name VARCHAR)"}, {"answer": "SELECT AVG(top_25) FROM table_name_79 WHERE cuts_made = 16 AND events < 23", "question": "What is the average of the top-25 with 16 cuts and less than 23 events?", "context": "CREATE TABLE table_name_79 (top_25 INTEGER, cuts_made VARCHAR, events VARCHAR)"}, {"answer": "SELECT MAX(top_25) FROM table_name_17 WHERE top_10 > 9 AND events < 29", "question": "What is the highest top-25 with more than 9 top-10 but less than 29 events?", "context": "CREATE TABLE table_name_17 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_60 WHERE name = \"brad scioli\" AND pick__number > 5", "question": "What's the Overall average that has brad scioli, and a Pick # larger than 5?", "context": "CREATE TABLE table_name_60 (overall INTEGER, name VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_51 WHERE college = \"arkansas\" AND round > 3", "question": "What's the lowest Overall average that has a College of Arkansas, and a Round larger than 3?", "context": "CREATE TABLE table_name_51 (overall INTEGER, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_65 WHERE pick__number = 4 AND round > 7", "question": "Which highest Overall has a Pick # of 4, and a Round larger than 7?", "context": "CREATE TABLE table_name_65 (overall INTEGER, pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_63 WHERE round < 7 AND pick__number = 4", "question": "What's the overall average that has a round less than 7, and a Pick # of 4?", "context": "CREATE TABLE table_name_63 (overall INTEGER, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT no4 FROM table_name_46 WHERE no5 = \"susana telmo\"", "question": "Who is the no. 4 team that has the no. 5 player Susana Telmo?", "context": "CREATE TABLE table_name_46 (no4 VARCHAR, no5 VARCHAR)"}, {"answer": "SELECT no9 FROM table_name_85 WHERE no6 = \"paulo\"", "question": "Who is the no. 9 team that has a no. 6 player of paulo?", "context": "CREATE TABLE table_name_85 (no9 VARCHAR, no6 VARCHAR)"}, {"answer": "SELECT no8 FROM table_name_72 WHERE no9 = \"telmo\"", "question": "Who this the no. 8 team that has a no. 9 player, Telmo?", "context": "CREATE TABLE table_name_72 (no8 VARCHAR, no9 VARCHAR)"}, {"answer": "SELECT nickname FROM table_name_73 WHERE age___ma__ = \"4.9\"", "question": "Name the nickname with age of 4.9", "context": "CREATE TABLE table_name_73 (nickname VARCHAR, age___ma__ VARCHAR)"}, {"answer": "SELECT island FROM table_name_73 WHERE age___ma__ = \"1.0\"", "question": "Name the island with age ma of 1.0", "context": "CREATE TABLE table_name_73 (island VARCHAR, age___ma__ VARCHAR)"}, {"answer": "SELECT elevation FROM table_name_79 WHERE nickname = \"the gathering place\"", "question": "Name the elevation of the gathering place", "context": "CREATE TABLE table_name_79 (elevation VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT record FROM table_name_32 WHERE game_site = \"kingdome\" AND result = \"w 24-6\"", "question": "Game site of kingdome, and a Result of w 24-6 has what record?", "context": "CREATE TABLE table_name_32 (record VARCHAR, game_site VARCHAR, result VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_68 WHERE date = \"september 25, 1983\"", "question": "Date of september 25, 1983 is what game site?", "context": "CREATE TABLE table_name_68 (game_site VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_71 WHERE score = \"6\u20133\"", "question": "What stadium held the game that had a score of 6\u20133?", "context": "CREATE TABLE table_name_71 (stadium VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE loss = \"reed (0\u20132)\"", "question": "What was the date of the game that had a loss of Reed (0\u20132)?", "context": "CREATE TABLE table_name_29 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE record = \"11-8\"", "question": "On which Date was there a record of 11-8?", "context": "CREATE TABLE table_name_37 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_1 WHERE vuelta = 1 AND tour > 7", "question": "How many podiums associated with 1 vuelta and over 7 tours?", "context": "CREATE TABLE table_name_1 (total VARCHAR, vuelta VARCHAR, tour VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_33 WHERE name = \"miguel indur\u00e1in\" AND vuelta > 1", "question": "What is the total for miguel indur\u00e1in with a Vuelta larger than 1?", "context": "CREATE TABLE table_name_33 (total INTEGER, name VARCHAR, vuelta VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_99 WHERE time_retired = \"+ 1 lap\" AND points < 7", "question": "What is the grid associated with a Time/Retired of + 1 lap, and under 7 points?", "context": "CREATE TABLE table_name_99 (grid INTEGER, time_retired VARCHAR, points VARCHAR)"}, {"answer": "SELECT grid FROM table_name_45 WHERE laps = 67", "question": "What grid is associated with 67 laps?", "context": "CREATE TABLE table_name_45 (grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT nation FROM table_name_27 WHERE date = \"8 june 1983\" AND athlete = \"marlies gohr\"", "question": "Name the nation for 8 june 1983 for marlies gohr", "context": "CREATE TABLE table_name_27 (nation VARCHAR, date VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT athlete FROM table_name_46 WHERE rank < 22 AND nation = \"bulgaria\"", "question": "Name the athlete for bulgaria with rank less than 22", "context": "CREATE TABLE table_name_46 (athlete VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT engine FROM table_name_97 WHERE year > 1978 AND entrant = \"ram penthouse rizla racing\"", "question": "What engine was used by Ram Penthouse Rizla Racing in 1978?", "context": "CREATE TABLE table_name_97 (engine VARCHAR, year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT college FROM table_name_98 WHERE year < 1962 AND position = \"rb\"", "question": "Which College has a Year smaller than 1962, and a Position of rb?", "context": "CREATE TABLE table_name_98 (college VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT year FROM table_name_96 WHERE college = \"nebraska\" AND pick = \"2\"", "question": "Which Year has a College of nebraska, and a Pick of 2?", "context": "CREATE TABLE table_name_96 (year VARCHAR, college VARCHAR, pick VARCHAR)"}, {"answer": "SELECT pick FROM table_name_56 WHERE year > 1983 AND player_name = \"brian jozwiak\"", "question": "Which Pick has a Year larger than 1983, and a Player name of brian jozwiak?", "context": "CREATE TABLE table_name_56 (pick VARCHAR, year VARCHAR, player_name VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_27 WHERE position = \"rb\" AND college = \"louisiana state\"", "question": "Which lowest year has a Position of rb, and a College of louisiana state?", "context": "CREATE TABLE table_name_27 (year INTEGER, position VARCHAR, college VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_75 WHERE player_name = \"ronnie bull\"", "question": "How many years have a Player name of ronnie bull?", "context": "CREATE TABLE table_name_75 (year INTEGER, player_name VARCHAR)"}, {"answer": "SELECT recipient FROM table_name_22 WHERE award = \"\u00a34,203\"", "question": "Who was the recipient of an award of \u00a34,203?", "context": "CREATE TABLE table_name_22 (recipient VARCHAR, award VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_10 WHERE award = \"\u00a36,245\"", "question": "Who directed the film that received an award of \u00a36,245?", "context": "CREATE TABLE table_name_10 (director_s_ VARCHAR, award VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_63 WHERE recipient = \"avie luthra\"", "question": "Who directed the film that Avie Luthra received an award for?", "context": "CREATE TABLE table_name_63 (director_s_ VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_44 WHERE film = \"antonio's breakfast\"", "question": "Who directed the film Antonio's Breakfast?", "context": "CREATE TABLE table_name_44 (director_s_ VARCHAR, film VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_48 WHERE date = \"2/3/05\" AND recipient = \"sister films\"", "question": "Who was the director of the film that Sister Films received an award for on 2/3/05?", "context": "CREATE TABLE table_name_48 (director_s_ VARCHAR, date VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE date = \"june 9\"", "question": "What is the score of the game on June 9?", "context": "CREATE TABLE table_name_75 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_6 WHERE date = \"july 2\"", "question": "What is the usual attendance for july 2?", "context": "CREATE TABLE table_name_6 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT deleted FROM table_name_53 WHERE cerclis_id = \"il0210090049\"", "question": "What was the value for deleted for CERCLIS ID of il0210090049?", "context": "CREATE TABLE table_name_53 (deleted VARCHAR, cerclis_id VARCHAR)"}, {"answer": "SELECT construction_completed FROM table_name_70 WHERE county = \"jo daviess\"", "question": "What is the date construction is completed in Jo Daviess county?", "context": "CREATE TABLE table_name_70 (construction_completed VARCHAR, county VARCHAR)"}, {"answer": "SELECT author FROM table_name_62 WHERE role = \"narrator\" AND year > 2009 AND release_air_date = \"7 october 2010\"", "question": "Role of narrator, and a Year larger than 2009, and a Release/Air Date of 7 october 2010 belongs to what author?", "context": "CREATE TABLE table_name_62 (author VARCHAR, release_air_date VARCHAR, role VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_96 WHERE role = \"narrator\" AND radio_station_production_company = \"bbc audiobooks\" AND release_air_date = \"13 november 2008\"", "question": "Role of narrator, and a Radio Station/Production Company of bbc audiobooks, and a Release/Air Date of 13 november 2008 is what sum of the year?", "context": "CREATE TABLE table_name_96 (year INTEGER, release_air_date VARCHAR, role VARCHAR, radio_station_production_company VARCHAR)"}, {"answer": "SELECT radio_station_production_company FROM table_name_73 WHERE role = \"interviewee & monologues\"", "question": "Radio Station/Production Company that has a Role of interviewee & monologues is what radio station?", "context": "CREATE TABLE table_name_73 (radio_station_production_company VARCHAR, role VARCHAR)"}, {"answer": "SELECT pos FROM table_name_79 WHERE team = \"racing organisation course\"", "question": "What was the position of the Racing Organisation Course team?", "context": "CREATE TABLE table_name_79 (pos VARCHAR, team VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_92 WHERE pos = \"dnf\" AND year < 2011 AND team = \"racing organisation course\"", "question": "Who were the co-drivers for the Racing Organisation Course team in years before 2011, who had a position of DNF?", "context": "CREATE TABLE table_name_92 (co_drivers VARCHAR, team VARCHAR, pos VARCHAR, year VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_49 WHERE year > 2010", "question": "Who were the co-drivers in years after 2010?", "context": "CREATE TABLE table_name_49 (co_drivers VARCHAR, year INTEGER)"}, {"answer": "SELECT date_made FROM table_name_99 WHERE fleet_numbers = \"4\"", "question": "What is the date made that has an associated fleet number of 4?", "context": "CREATE TABLE table_name_99 (date_made VARCHAR, fleet_numbers VARCHAR)"}, {"answer": "SELECT date_withdrawn FROM table_name_92 WHERE date_made = \"1904\"", "question": "What is the withdrawal date associated with a date made of 1904?", "context": "CREATE TABLE table_name_92 (date_withdrawn VARCHAR, date_made VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_36 WHERE result = \"l 7-38\"", "question": "Name the game site with result of l 7-38", "context": "CREATE TABLE table_name_36 (game_site VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_45 WHERE game_site = \"arrowhead stadium\"", "question": "Name the result for arrowhead stadium", "context": "CREATE TABLE table_name_45 (result VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_5 WHERE week > 2 AND opponent = \"new orleans saints\"", "question": "Name the least attendance for opponent of new orleans saints and week more than 2", "context": "CREATE TABLE table_name_5 (attendance INTEGER, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT earnings___$__ FROM table_name_7 WHERE top_10s = 23", "question": "What amount of earnings corresponds with a Top 10s rank of 23?", "context": "CREATE TABLE table_name_7 (earnings___$__ VARCHAR, top_10s VARCHAR)"}, {"answer": "SELECT earnings___$__ FROM table_name_59 WHERE tournaments_played < 28 AND year = \"2012\"", "question": "What 2012 amount of earnings corresponds with less than 28 tournaments played?", "context": "CREATE TABLE table_name_59 (earnings___$__ VARCHAR, tournaments_played VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_96 WHERE laps < 197 AND start = \"2\"", "question": "Tell me the year with Laps less than 197 and start of 2", "context": "CREATE TABLE table_name_96 (year VARCHAR, laps VARCHAR, start VARCHAR)"}, {"answer": "SELECT qual FROM table_name_61 WHERE start = \"totals\"", "question": "Name the qual with start of totals", "context": "CREATE TABLE table_name_61 (qual VARCHAR, start VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_90 WHERE rank = \"8\"", "question": "Name the total number of laps with rank of 8", "context": "CREATE TABLE table_name_90 (laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT start FROM table_name_13 WHERE laps = 199 AND qual = \"224.838\"", "question": "Name the start with Laps of 199 with qual of 224.838", "context": "CREATE TABLE table_name_13 (start VARCHAR, laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE score = \"1-2\" AND venue = \"athens olympic stadium\"", "question": "On what date was the score 1-2 at Athens Olympic Stadium?", "context": "CREATE TABLE table_name_37 (date VARCHAR, score VARCHAR, venue VARCHAR)"}, {"answer": "SELECT match_report FROM table_name_89 WHERE competition = \"euro2008q\" AND venue = \"athens olympic stadium\" AND date = \"november 17, 2007\"", "question": "What was the Match Report for the Euro2008q at the Athens Olympic Stadium on November 17, 2007?", "context": "CREATE TABLE table_name_89 (match_report VARCHAR, date VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT match_report FROM table_name_44 WHERE competition = \"euro2008q\" AND venue = \"athens olympic stadium\" AND score = \"1-2\"", "question": "What was the Match Report for the Euro2008q at the Athens Olympic Stadium and a score of 1-2?", "context": "CREATE TABLE table_name_44 (match_report VARCHAR, score VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE score = \"2-1\"", "question": "On what date was the score 2-1?", "context": "CREATE TABLE table_name_38 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE competition = \"friendly\"", "question": "On what date was the Competition of Friendly held?", "context": "CREATE TABLE table_name_70 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_81 WHERE venue = \"pankritio stadium\" AND date = \"june 6, 2007\"", "question": "What was the score at Pankritio Stadium on June 6, 2007?", "context": "CREATE TABLE table_name_81 (score VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE result = \"draw\" AND venue = \"sydney cricket ground\"", "question": "On what date was there a draw at Sydney Cricket Ground?", "context": "CREATE TABLE table_name_83 (date VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_20 WHERE result = \"draw\"", "question": "In what venue was the result a draw?", "context": "CREATE TABLE table_name_20 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE result = \"wi by 1 run\"", "question": "On what date was the result Wi by 1 run?", "context": "CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_77 WHERE result = \"draw\"", "question": "What venue had a draw?", "context": "CREATE TABLE table_name_77 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(pts) FROM table_name_98 WHERE chassis = \"jordan 192\"", "question": "What is the total number of points for entrants with a Jordan 192 chassis?", "context": "CREATE TABLE table_name_98 (pts INTEGER, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_20 WHERE chassis = \"march cg891\"", "question": "Which entrant had a chassis of March CG891?", "context": "CREATE TABLE table_name_20 (entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MIN(pts) FROM table_name_20 WHERE chassis = \"jordan 192\"", "question": "What is the lowest number of points for an entrant with a Jordan 192 chassis?", "context": "CREATE TABLE table_name_20 (pts INTEGER, chassis VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_77 WHERE attendance = \"14,029\"", "question": "What Opponent has the Attendance of 14,029?", "context": "CREATE TABLE table_name_77 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_63 WHERE date = \"april 12\"", "question": "Can you tell me the Attendance that has the Date of april 12?", "context": "CREATE TABLE table_name_63 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE opponent = \"brewers\" AND attendance = \"11,235\"", "question": "Can you tell me the Score that has the Opponent of brewers, and the Attendance of 11,235?", "context": "CREATE TABLE table_name_98 (score VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE attendance = \"4,567\"", "question": "Can you tell me the Score that has the Attendance of 4,567?", "context": "CREATE TABLE table_name_94 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE distance = \"km (mi)\" AND course = \"roccaraso to san giorgio del sannio\"", "question": "What is the date with the distance of km (mi) at the course of roccaraso to san giorgio del sannio?", "context": "CREATE TABLE table_name_20 (date VARCHAR, distance VARCHAR, course VARCHAR)"}, {"answer": "SELECT engine FROM table_name_59 WHERE entrant = \"larrousse f1\"", "question": "Name the engine with entrant of larrousse f1", "context": "CREATE TABLE table_name_59 (engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_19 WHERE engine = \"renault v10\" AND points > 4", "question": "Name the average yeara for engine of renault v10 with points more than 4", "context": "CREATE TABLE table_name_19 (year INTEGER, engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_47 WHERE year < 1994 AND chassis = \"lola lc89b\"", "question": "Name the sumof points for year less than 1994 and chassis of lola lc89b", "context": "CREATE TABLE table_name_47 (points INTEGER, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_92 WHERE year > 1991 AND chassis = \"lotus 109\"", "question": "Name the entrant for year more than 1991 and chassis of lotus 109", "context": "CREATE TABLE table_name_92 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_79 WHERE year = 1991", "question": "Name the sum of points for 1991", "context": "CREATE TABLE table_name_79 (points INTEGER, year VARCHAR)"}, {"answer": "SELECT type FROM table_name_85 WHERE course = \"turin to monza\"", "question": "Which type has turin to monza as a course?", "context": "CREATE TABLE table_name_85 (type VARCHAR, course VARCHAR)"}, {"answer": "SELECT course FROM table_name_15 WHERE type = \"km (mi)\"", "question": "Which course has km (mi) as a type?", "context": "CREATE TABLE table_name_15 (course VARCHAR, type VARCHAR)"}, {"answer": "SELECT winner FROM table_name_51 WHERE course = \"sanremo to cuneo\"", "question": "What winner has the sanremo to cuneo as the course?", "context": "CREATE TABLE table_name_51 (winner VARCHAR, course VARCHAR)"}, {"answer": "SELECT distance FROM table_name_5 WHERE stage = \"2\"", "question": "Name the distance for stage of 2", "context": "CREATE TABLE table_name_5 (distance VARCHAR, stage VARCHAR)"}, {"answer": "SELECT route FROM table_name_27 WHERE winner = \"s\u00e9bastien rosseler\"", "question": "Name the route with winner of s\u00e9bastien rosseler", "context": "CREATE TABLE table_name_27 (route VARCHAR, winner VARCHAR)"}, {"answer": "SELECT route FROM table_name_14 WHERE distance = \"170.8km\"", "question": "Name the route for 170.8km distance", "context": "CREATE TABLE table_name_14 (route VARCHAR, distance VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE winner = \"luciano pagliarini\"", "question": "Name the date for luciano pagliarini", "context": "CREATE TABLE table_name_68 (date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT date FROM table_name_10 WHERE winner = \"mark cavendish\"", "question": "Name the date for mark cavendish", "context": "CREATE TABLE table_name_10 (date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_94 WHERE qual = \"144.665\"", "question": "Name the laps for qual of 144.665", "context": "CREATE TABLE table_name_94 (laps INTEGER, qual VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_48 WHERE year = \"1961\"", "question": "Name the total number of Laps for year of 1961", "context": "CREATE TABLE table_name_48 (laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT finish FROM table_name_76 WHERE start = \"28\"", "question": "Name the finish for start of 28", "context": "CREATE TABLE table_name_76 (finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT laps FROM table_name_67 WHERE rank = \"14\" AND start = \"16\"", "question": "Name the laps for rank of 14 and start of 16", "context": "CREATE TABLE table_name_67 (laps VARCHAR, rank VARCHAR, start VARCHAR)"}, {"answer": "SELECT qual FROM table_name_25 WHERE year = \"1960\"", "question": "Name the qual for year of 1960", "context": "CREATE TABLE table_name_25 (qual VARCHAR, year VARCHAR)"}, {"answer": "SELECT player FROM table_name_65 WHERE position = \"lb\" AND overall = 128", "question": "What is the name of the player in position lb and an overall of 128?", "context": "CREATE TABLE table_name_65 (player VARCHAR, position VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_98 WHERE player = \"kenny lewis\" AND round > 5", "question": "What is the total overall when Kenny Lewis is the player in a round after 5?", "context": "CREATE TABLE table_name_98 (overall VARCHAR, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT college FROM table_name_41 WHERE overall > 15 AND round = 7", "question": "What is the college when the over is larger than 15 in round 7?", "context": "CREATE TABLE table_name_41 (college VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_87 WHERE overall < 128 AND college = \"brigham young\"", "question": "What is the position with an overall less than 128 for Brigham Young college?", "context": "CREATE TABLE table_name_87 (position VARCHAR, overall VARCHAR, college VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_81 WHERE date = \"4 february 2003\"", "question": "How many attended the game on 4 February 2003?", "context": "CREATE TABLE table_name_81 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT auckland FROM table_name_74 WHERE sydney = \"yes\" AND perth = \"no\" AND melbourne = \"yes\" AND gold_coast = \"yes\"", "question": "yes or no for the auckland with a yes for sydney, no for perth, yes for melbourne and yes for the gold coast?", "context": "CREATE TABLE table_name_74 (auckland VARCHAR, gold_coast VARCHAR, melbourne VARCHAR, sydney VARCHAR, perth VARCHAR)"}, {"answer": "SELECT adelaide FROM table_name_97 WHERE auckland = \"no\" AND melbourne = \"yes\" AND gold_coast = \"yes\"", "question": "yes or no for the adelaide with no for auckland, yes for melbourne, yes for the gold coast?", "context": "CREATE TABLE table_name_97 (adelaide VARCHAR, gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR)"}, {"answer": "SELECT gold_coast FROM table_name_2 WHERE melbourne = \"yes\" AND adelaide = \"yes\" AND auckland = \"yes\"", "question": "yes or no for the gold coast with yes for melbourne, yes for adelaide, yes for auckland?", "context": "CREATE TABLE table_name_2 (gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR, adelaide VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_92 WHERE gold_coast = \"yes\" AND adelaide = \"no\" AND auckland = \"no\"", "question": "yes or no for the melbourne with yes for gold coast, yes for adelaide, no for auckland?", "context": "CREATE TABLE table_name_92 (melbourne VARCHAR, auckland VARCHAR, gold_coast VARCHAR, adelaide VARCHAR)"}, {"answer": "SELECT sydney FROM table_name_43 WHERE melbourne = \"yes\" AND perth = \"no\" AND auckland = \"no\" AND gold_coast = \"no\"", "question": "yes or no for the sydney with yes for melbourne, no for perth, no for auckland and no for gold coast?", "context": "CREATE TABLE table_name_43 (sydney VARCHAR, gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR, perth VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_90 WHERE adelaide = \"yes\" AND gold_coast = \"no\"", "question": "yes or no for the melbourne that has no for adelaide, no for gold coast?", "context": "CREATE TABLE table_name_90 (melbourne VARCHAR, adelaide VARCHAR, gold_coast VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_1 WHERE wins = 0 AND runs_allowed > 72", "question": "How many losses did the team with 0 wins and more than 72 runs allowed have?", "context": "CREATE TABLE table_name_1 (losses INTEGER, wins VARCHAR, runs_allowed VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_96 WHERE rank < 3 AND team = \"united states\" AND wins > 6", "question": "What is the lowest amount of losses the United States, ranked higher than 3 with more than 6 wins, have?", "context": "CREATE TABLE table_name_96 (losses INTEGER, wins VARCHAR, rank VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(runs_allowed) FROM table_name_50 WHERE rank = 2 AND losses > 2", "question": "How many runs allowed did the team ranked 2 with more than 2 losses have?", "context": "CREATE TABLE table_name_50 (runs_allowed INTEGER, rank VARCHAR, losses VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_87 WHERE rank > 1 AND run_ratio < 5.85 AND losses > 4", "question": "How many total wins did the team ranked lower than 1 with a run ratio less than 5.85 and more than 4 losses have?", "context": "CREATE TABLE table_name_87 (wins VARCHAR, losses VARCHAR, rank VARCHAR, run_ratio VARCHAR)"}, {"answer": "SELECT MAX(run_ratio) FROM table_name_36 WHERE runs_allowed < 58 AND wins = 5 AND team = \"japan\"", "question": "What is the highest run ratio Japan, which has less than 58 runs and 5 wins, have?", "context": "CREATE TABLE table_name_36 (run_ratio INTEGER, team VARCHAR, runs_allowed VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_63 WHERE runs_allowed < 25 AND wins = 5", "question": "What is the average number of losses the team with less than 25 runs allowed and 5 wins have?", "context": "CREATE TABLE table_name_63 (losses INTEGER, runs_allowed VARCHAR, wins VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE opponent = \"tigers\"", "question": "Which date has tigers as the opponent?", "context": "CREATE TABLE table_name_14 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT loss FROM table_name_47 WHERE date = \"october 1\"", "question": "What loss has october 1 as the date?", "context": "CREATE TABLE table_name_47 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT year FROM table_name_26 WHERE points > 0 AND chassis = \"ags jh22\"", "question": "What year is listed that has points greater than 0 with a chassis labeled AGS JH22?", "context": "CREATE TABLE table_name_26 (year VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_76 WHERE tyres = \"p\" AND year > 1986", "question": "What is the total points listed that includes P listed Tyres after 1986?", "context": "CREATE TABLE table_name_76 (points INTEGER, tyres VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_73 WHERE chassis = \"ags jh23\" AND year < 1988", "question": "What point is the lowest for listings of chassis labeled AGS JH23 before 1988?", "context": "CREATE TABLE table_name_73 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_58 WHERE year = 1988", "question": "What is the total point for the year listed in 1988?", "context": "CREATE TABLE table_name_58 (points INTEGER, year VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_28 WHERE date = \"august 2\"", "question": "What was the attendance on August 2?", "context": "CREATE TABLE table_name_28 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_54 WHERE loss = \"kinney (0-1)\"", "question": "Which opponent lost with pitcher Kinney (0-1)?", "context": "CREATE TABLE table_name_54 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_77 WHERE date = \"august 23\"", "question": "What was the attendance on August 23?", "context": "CREATE TABLE table_name_77 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_27 WHERE cuts_made = 3 AND events > 4", "question": "What is the highest wins a tournament with 3 cuts and more than 4 events has?", "context": "CREATE TABLE table_name_27 (wins INTEGER, cuts_made VARCHAR, events VARCHAR)"}, {"answer": "SELECT MIN(events) FROM table_name_77 WHERE top_10 > 1 AND wins > 0", "question": "What is the lowest number of events a tournament with more than 1 top-10 and more than 0 wins has?", "context": "CREATE TABLE table_name_77 (events INTEGER, top_10 VARCHAR, wins VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_90 WHERE pos = \"6th\" AND year = 1998", "question": "How many laps did the 6th placed in 1998 complete?", "context": "CREATE TABLE table_name_90 (laps INTEGER, pos VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_name_55 WHERE class = \"c1\" AND laps > 331 AND year > 1990", "question": "What team was c1 class, had over 331 laps after 1990?", "context": "CREATE TABLE table_name_55 (team VARCHAR, year VARCHAR, class VARCHAR, laps VARCHAR)"}, {"answer": "SELECT class FROM table_name_16 WHERE co_drivers = \"eddie cheever raul boesel\"", "question": "What class did eddie cheever raul boesel race in?", "context": "CREATE TABLE table_name_16 (class VARCHAR, co_drivers VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_50 WHERE event = \"2012\"", "question": "What's the lowest rank of a player who played in 2012?", "context": "CREATE TABLE table_name_50 (rank INTEGER, event VARCHAR)"}, {"answer": "SELECT player FROM table_name_97 WHERE rank = 2011", "question": "What player has the rank 2011?", "context": "CREATE TABLE table_name_97 (player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE surface = \"hard\" AND rank = 10", "question": "What was the score of the match played on hard with a person ranked 10?", "context": "CREATE TABLE table_name_70 (score VARCHAR, surface VARCHAR, rank VARCHAR)"}, {"answer": "SELECT females FROM table_name_71 WHERE language = \"romanian\"", "question": "What females speak Romanian?", "context": "CREATE TABLE table_name_71 (females VARCHAR, language VARCHAR)"}, {"answer": "SELECT females FROM table_name_21 WHERE males = \"1 234\"", "question": "What females have males of 1 234?", "context": "CREATE TABLE table_name_21 (females VARCHAR, males VARCHAR)"}, {"answer": "SELECT males FROM table_name_22 WHERE language = \"polish\"", "question": "What males speak Polish?", "context": "CREATE TABLE table_name_22 (males VARCHAR, language VARCHAR)"}, {"answer": "SELECT number FROM table_name_20 WHERE males = \"977 948\"", "question": "What is the number of males 977 948?", "context": "CREATE TABLE table_name_20 (number VARCHAR, males VARCHAR)"}, {"answer": "SELECT MIN(over_no) FROM table_name_37 WHERE bowler = \"shane bond\"", "question": "Bowler of shane bond has what lowest overall number?", "context": "CREATE TABLE table_name_37 (over_no INTEGER, bowler VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE wickets = \"chris gayle caught kapali\"", "question": "Wickets of chris gayle caught kapali happened on what date?", "context": "CREATE TABLE table_name_16 (date VARCHAR, wickets VARCHAR)"}, {"answer": "SELECT year FROM table_name_34 WHERE third = \"kyle newman\"", "question": "What year did Kyle Newman place third?", "context": "CREATE TABLE table_name_34 (year VARCHAR, third VARCHAR)"}, {"answer": "SELECT venue FROM table_name_20 WHERE winner = \"jerran hart\"", "question": "What was the venue when Jerran Hart won?", "context": "CREATE TABLE table_name_20 (venue VARCHAR, winner VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_82 WHERE year = 2004", "question": "Who was the runner-up in 2004?", "context": "CREATE TABLE table_name_82 (runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_63 WHERE third = \"jack hargreaves\"", "question": "What was the venue when Jack Hargreaves finished third?", "context": "CREATE TABLE table_name_63 (venue VARCHAR, third VARCHAR)"}, {"answer": "SELECT venue FROM table_name_65 WHERE third = \"ben barker\"", "question": "What was the venue when Ben Barker finished third?", "context": "CREATE TABLE table_name_65 (venue VARCHAR, third VARCHAR)"}, {"answer": "SELECT province_region FROM table_name_91 WHERE icao = \"rjtq\"", "question": "What province/region is RJTQ located?", "context": "CREATE TABLE table_name_91 (province_region VARCHAR, icao VARCHAR)"}, {"answer": "SELECT city FROM table_name_57 WHERE icao = \"rjsn\"", "question": "In what city is RJSN located?", "context": "CREATE TABLE table_name_57 (city VARCHAR, icao VARCHAR)"}, {"answer": "SELECT iata FROM table_name_76 WHERE icao = \"rjcm\"", "question": "What is RJCM's IATA?", "context": "CREATE TABLE table_name_76 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT country FROM table_name_55 WHERE province_region = \"hokkaid\u014d\" AND airport = \"new chitose airport\"", "question": "In what country is Hokkaid\u014d and New Chitose airport located?", "context": "CREATE TABLE table_name_55 (country VARCHAR, province_region VARCHAR, airport VARCHAR)"}, {"answer": "SELECT country FROM table_name_69 WHERE airport = \"hiroshima airport\"", "question": "In what country is Hiroshima Airport located?", "context": "CREATE TABLE table_name_69 (country VARCHAR, airport VARCHAR)"}, {"answer": "SELECT icao FROM table_name_89 WHERE city = \"nakashibetsu\"", "question": "What is the ICAO of Nakashibetsu?", "context": "CREATE TABLE table_name_89 (icao VARCHAR, city VARCHAR)"}, {"answer": "SELECT lost FROM table_name_52 WHERE played = \"22\" AND losing_bp = \"2\" AND club = \"merthyr rfc\"", "question": "What is the total number of games lost when 22 have been played, the losing BP number is 2, and the club is Merthyr RFC?", "context": "CREATE TABLE table_name_52 (lost VARCHAR, club VARCHAR, played VARCHAR, losing_bp VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_74 WHERE lost = \"3\"", "question": "What is the number drawn when 3 have been lost?", "context": "CREATE TABLE table_name_74 (drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_79 WHERE try_bp = \"1\"", "question": "What is the number drawn when the try BP is 1?", "context": "CREATE TABLE table_name_79 (drawn VARCHAR, try_bp VARCHAR)"}, {"answer": "SELECT try_bp FROM table_name_82 WHERE losing_bp = \"4\" AND club = \"bargoed rfc\"", "question": "What is the try BP when the losing BP is 4 and the club is Bargoed RFC?", "context": "CREATE TABLE table_name_82 (try_bp VARCHAR, losing_bp VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_96 WHERE played = \"22\" AND drawn = \"0\" AND lost = \"14\" AND losing_bp = \"5\"", "question": "What is the club that has played 22 rounds, has a drawn score of 0, has lost 14, and whose losing BP is 5?", "context": "CREATE TABLE table_name_96 (club VARCHAR, losing_bp VARCHAR, lost VARCHAR, played VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_33 WHERE rank = \"3\" AND bronze > 3", "question": "What average Total has a Rank of 3 and a Bronze award larger than 3?", "context": "CREATE TABLE table_name_33 (total INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_84 WHERE gold = 13 AND bronze < 13", "question": "What average Total has a Gold award of 13 and a Bronze award less than 13?", "context": "CREATE TABLE table_name_84 (total INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_5 WHERE silver > 2 AND bronze < 13 AND total > 24", "question": "What is the average Gold award that has a Silver award greater than 2, and a Bronze award less than 13, and a Total greater than 24?", "context": "CREATE TABLE table_name_5 (gold INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT record FROM table_name_9 WHERE loss = \"guardado\"", "question": "What is the record number of the game where Guardado lost?", "context": "CREATE TABLE table_name_9 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_79 WHERE date = \"september 28\"", "question": "What was the lowest attendance recorded at a game on September 28?", "context": "CREATE TABLE table_name_79 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_75 WHERE total = 2 AND bronze > 1", "question": "What is the average gold that has a total of 2 and more than 1 bronze.", "context": "CREATE TABLE table_name_75 (gold INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_88 WHERE 2010 = \"a\" AND 2009 = \"a\" AND tournament = \"canada masters\"", "question": "What is the 2006 result of the Canada Masters tournament that is A in 2009 and A in 2010?", "context": "CREATE TABLE table_name_88 (tournament VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_73 WHERE 2010 = \"107\"", "question": "What is the result for 2006 of a tournament that is 107 in 2010?", "context": "CREATE TABLE table_name_73 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_40 WHERE 2011 = \"a\" AND 2006 = \"a\"", "question": "What is the 2010 result of a tournament that is A in 2006 and A in 2011?", "context": "CREATE TABLE table_name_40 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_29 WHERE 2009 = \"1r\" AND 2008 = \"1r\" AND 2007 = \"2r\"", "question": "What is the 2012 result of a tournament that is 2R in 2007, 1R in 2008 and 1R in 2009?", "context": "CREATE TABLE table_name_29 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_43 WHERE 2011 = \"q2\" AND 2012 = \"1r\" AND 2009 = \"1r\"", "question": "What is the 2010 result of a tournament that is 1R in 2009, Q2 in 2011 and 1R in 2012?", "context": "CREATE TABLE table_name_43 (Id VARCHAR)"}, {"answer": "SELECT MAX(match) FROM table_name_38 WHERE date = \"august 3, 2007\"", "question": "What match number took place on August 3, 2007?", "context": "CREATE TABLE table_name_38 (match INTEGER, date VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_1 WHERE 2013 = \"grand slam tournaments\"", "question": "What is the 2010 value of the 2013 Grand Slam Tournaments?", "context": "CREATE TABLE table_name_1 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_11 WHERE 2007 = \"a\" AND 2011 = \"qf\"", "question": "What is the 2012 value with A in 2007 and qf in 2011?", "context": "CREATE TABLE table_name_11 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_6 WHERE 2011 = \"1r\" AND tournament = \"australian open\"", "question": "What is the 2012 value with a 1r in 2011 in the Australian Open?", "context": "CREATE TABLE table_name_6 (tournament VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_68 WHERE 2011 = \"qf\"", "question": "What is the 2013 value with a qf in 2011?", "context": "CREATE TABLE table_name_68 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_26 WHERE 2012 = \"grand slam tournaments\"", "question": "What is the 2007 value at the 2012 Grand Slam Tournaments?", "context": "CREATE TABLE table_name_26 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_26 WHERE 2011 = \"qf\"", "question": "Which tournament had a qf in 2011?", "context": "CREATE TABLE table_name_26 (tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_13 WHERE competition = \"2014 fifa world cup qual.\"", "question": "What was the score for the 2014 FIFA World Cup Qual. competition?", "context": "CREATE TABLE table_name_13 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MAX(matches) FROM table_name_46 WHERE draws < 2 AND efficiency__percentage = \"25%\"", "question": "What is the highest number of matches with less than 2 draws that had an efficiency percent of 25%?", "context": "CREATE TABLE table_name_46 (matches INTEGER, draws VARCHAR, efficiency__percentage VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_27 WHERE matches < 4", "question": "What is the total number of Draws with less than 4 matches?", "context": "CREATE TABLE table_name_27 (draws VARCHAR, matches INTEGER)"}, {"answer": "SELECT AVG(frequency_mhz) FROM table_name_9 WHERE program = \"radio rezonans\"", "question": "What is the average MHz Frequency of radio rezonans?", "context": "CREATE TABLE table_name_9 (frequency_mhz INTEGER, program VARCHAR)"}, {"answer": "SELECT date FROM table_name_80 WHERE loss = \"lilly (2\u20132)\"", "question": "What date shows a Loss of lilly (2\u20132)?", "context": "CREATE TABLE table_name_80 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_74 WHERE time = \"3:16\" AND record = \"15\u201315\"", "question": "What is the loss when the time was 3:16, and a Record of 15\u201315?", "context": "CREATE TABLE table_name_74 (loss VARCHAR, time VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_59 WHERE time = \"2:57\" AND score = \"7\u20135\"", "question": "What team was the opponent when the time was 2:57, and a Score of 7\u20135?", "context": "CREATE TABLE table_name_59 (opponent VARCHAR, time VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE loss = \"ponson (4\u20133)\"", "question": "What date was the loss of ponson (4\u20133)?", "context": "CREATE TABLE table_name_68 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE loss = \"sparks (0\u20131)\"", "question": "What date was the loss of sparks (0\u20131)?", "context": "CREATE TABLE table_name_43 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT position FROM table_name_62 WHERE venue = \"tampere, finland\"", "question": "What is the position of the competition in Tampere, Finland?", "context": "CREATE TABLE table_name_62 (position VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_89 WHERE draws < 2 AND wins < 1 AND goal_difference = \"1:2\" AND losses > 1", "question": "What is the lowest total that has draws less than 2 and wins less than 1, losses bigger than 1 with a goal difference of 1:2", "context": "CREATE TABLE table_name_89 (total INTEGER, losses VARCHAR, goal_difference VARCHAR, draws VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(draws) FROM table_name_67 WHERE total = 1 AND goal_difference = \"2:0\"", "question": "What is the average number of draws that have a total of 1 and a goal difference of 2:0?", "context": "CREATE TABLE table_name_67 (draws INTEGER, total VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_83 WHERE goal_difference = \"0:2\" AND wins > 0", "question": "What is the lowest number of draws that have a goal difference of 0:2 and wins greater than 0?", "context": "CREATE TABLE table_name_83 (draws INTEGER, goal_difference VARCHAR, wins VARCHAR)"}, {"answer": "SELECT reg_season FROM table_name_89 WHERE avg_attendance_\u2020 = \"1,242\"", "question": "What regular season had an average attendance of 1,242?", "context": "CREATE TABLE table_name_89 (reg_season VARCHAR, avg_attendance_\u2020 VARCHAR)"}, {"answer": "SELECT league FROM table_name_72 WHERE avg_attendance_\u2020 = \"244\"", "question": "What league has an average attendance of 244?", "context": "CREATE TABLE table_name_72 (league VARCHAR, avg_attendance_\u2020 VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE opponent = \"white sox\" AND record = \"18-13\"", "question": "On what date was the opponent the White Sox and the record 18-13?", "context": "CREATE TABLE table_name_90 (date VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_23 WHERE record = \"19-13\"", "question": "What was the average attendance when the record was 19-13?", "context": "CREATE TABLE table_name_23 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_57 WHERE opponent = \"rangers\" AND attendance > 43 OFFSET 211", "question": "What was the Loss when the opponent was the Rangers and the attendance was greater than 43,211?", "context": "CREATE TABLE table_name_57 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_18 WHERE 2007 = \"2r\" AND 2009 = \"1r\"", "question": "What was the 2012 result associated with a 2007 finish of 2R and a 2009 of 1R?", "context": "CREATE TABLE table_name_18 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_2 WHERE 2012 = \"1r\" AND 2007 = \"2r\"", "question": "What was the 2009 result associated with a 2012 of 1R and a 2007 of 2R?", "context": "CREATE TABLE table_name_2 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_36 WHERE 2009 = \"a\" AND 2011 = \"2r\"", "question": "What was the 2008 result associated with a 2009 of A and a 2011 of 2R?", "context": "CREATE TABLE table_name_36 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_34 WHERE 2007 = \"lq\"", "question": "In which tournament did Pauline Parmentier finish LQ in 2007?", "context": "CREATE TABLE table_name_34 (tournament VARCHAR)"}, {"answer": "SELECT player_name FROM table_name_23 WHERE matches = \"51\"", "question": "Name the player name with matches of 51", "context": "CREATE TABLE table_name_23 (player_name VARCHAR, matches VARCHAR)"}, {"answer": "SELECT position FROM table_name_6 WHERE country = \"brazil\" AND period = \"2008\" AND goals = \"0 1\"", "question": "Name the position for brazil 2008 with goals of 0 1", "context": "CREATE TABLE table_name_6 (position VARCHAR, goals VARCHAR, country VARCHAR, period VARCHAR)"}, {"answer": "SELECT goals FROM table_name_38 WHERE matches = \"21\"", "question": "Name the goals with matches of 21", "context": "CREATE TABLE table_name_38 (goals VARCHAR, matches VARCHAR)"}, {"answer": "SELECT period FROM table_name_56 WHERE matches = \"0 0\" AND country = \"portugal\"", "question": "Name the period with matches of 0 0 of portugal", "context": "CREATE TABLE table_name_56 (period VARCHAR, matches VARCHAR, country VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_9 WHERE round = \"round 5\"", "question": "Name the opponents for round of round 5", "context": "CREATE TABLE table_name_9 (opponents VARCHAR, round VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_72 WHERE date = \"4 january 2004\"", "question": "Name the attendance for 4 january 2004", "context": "CREATE TABLE table_name_72 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_64 WHERE date = \"25 january 2004\"", "question": "Name the most attendance for 25 january 2004", "context": "CREATE TABLE table_name_64 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_54 WHERE round = \"final\"", "question": "What is the average Attendance for the final round?", "context": "CREATE TABLE table_name_54 (attendance INTEGER, round VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_67 WHERE h___a = \"h\" AND opponents = \"roma\"", "question": "What is the smallest number of people to attend a game with an H/A of h and the opponent was Roma?", "context": "CREATE TABLE table_name_67 (attendance INTEGER, h___a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT game FROM table_name_54 WHERE pov_character = \"quentyn martell\"", "question": "Which game does the quentyn martell have?", "context": "CREATE TABLE table_name_54 (game VARCHAR, pov_character VARCHAR)"}, {"answer": "SELECT storm FROM table_name_58 WHERE dance = \"4\" AND clash = \"3\"", "question": "Which storm has a clash of 3 and a dance of 4?", "context": "CREATE TABLE table_name_58 (storm VARCHAR, dance VARCHAR, clash VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_38 WHERE perth = \"no\" AND adelaide = \"no\" AND auckland = \"no\" AND sydney = \"yes\"", "question": "Name the melbourne with perth, adelaide and auckland of no with sydney of yes", "context": "CREATE TABLE table_name_38 (melbourne VARCHAR, sydney VARCHAR, auckland VARCHAR, perth VARCHAR, adelaide VARCHAR)"}, {"answer": "SELECT gold_coast FROM table_name_88 WHERE auckland = \"no\" AND melbourne = \"yes\"", "question": "Name the gold coast which has an auckland of no and melbourne of yes", "context": "CREATE TABLE table_name_88 (gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR)"}, {"answer": "SELECT sydney FROM table_name_53 WHERE perth = \"no\" AND adelaide = \"no\" AND melbourne = \"yes\" AND gold_coast = \"yes\"", "question": "Name the sydney with perth of no, adelaide of no with melbourne of yes and gold coast of yes", "context": "CREATE TABLE table_name_53 (sydney VARCHAR, gold_coast VARCHAR, melbourne VARCHAR, perth VARCHAR, adelaide VARCHAR)"}, {"answer": "SELECT adelaide FROM table_name_6 WHERE sydney = \"yes\" AND perth = \"yes\"", "question": "Name the Adelaide for Sydney of yes and Perth of yes", "context": "CREATE TABLE table_name_6 (adelaide VARCHAR, sydney VARCHAR, perth VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_49 WHERE adelaide = \"no\" AND auckland = \"yes\" AND gold_coast = \"no\"", "question": "Name the melbourne for adelaide of no with auckland of yes and gold coast of yes", "context": "CREATE TABLE table_name_49 (melbourne VARCHAR, gold_coast VARCHAR, adelaide VARCHAR, auckland VARCHAR)"}, {"answer": "SELECT Prime AS minister FROM table_name_71 WHERE minister = \"antoine wehenkel\"", "question": "Who is the Prime Minister of Antoine Wehenkel?", "context": "CREATE TABLE table_name_71 (Prime VARCHAR, minister VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_49 WHERE year < 1964 AND points > 7", "question": "What is the least amount of wins earlier than 1964 with more than 7 points?", "context": "CREATE TABLE table_name_49 (wins INTEGER, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_57 WHERE class = \"125cc\" AND wins = 1 AND year < 1961", "question": "What is the least points for class 125cc with 1 win earlier than 1961?", "context": "CREATE TABLE table_name_57 (points INTEGER, year VARCHAR, class VARCHAR, wins VARCHAR)"}, {"answer": "SELECT wins FROM table_name_6 WHERE points = 7", "question": "What is the number of wins when there are 7 points?", "context": "CREATE TABLE table_name_6 (wins VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_95 WHERE wins = 1", "question": "What is the least amount of points when there is 1 win?", "context": "CREATE TABLE table_name_95 (points INTEGER, wins VARCHAR)"}, {"answer": "SELECT club FROM table_name_38 WHERE goals_for > 35 AND draws > 7 AND losses = 20", "question": "What club has more than 35 goals, more than 7 draws, and 20 losses?", "context": "CREATE TABLE table_name_38 (club VARCHAR, losses VARCHAR, goals_for VARCHAR, draws VARCHAR)"}, {"answer": "SELECT SUM(goals_for) FROM table_name_5 WHERE draws > 9 AND played > 38", "question": "How many goals have more than 38 played and more than 9 draws?", "context": "CREATE TABLE table_name_5 (goals_for INTEGER, draws VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_32 WHERE goals_against > 59 AND position > 17", "question": "How many losses has more than 59 goals against and more than 17 position?", "context": "CREATE TABLE table_name_32 (losses INTEGER, goals_against VARCHAR, position VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE meet = \"2007 pan american games\" AND time = \"1:07.78\"", "question": "On what Date was the Meet of 2007 Pan American Games with a Time of 1:07.78?", "context": "CREATE TABLE table_name_66 (date VARCHAR, meet VARCHAR, time VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_98 WHERE time = \"2:07.64\"", "question": "What Nationality's time is 2:07.64?", "context": "CREATE TABLE table_name_98 (nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT event FROM table_name_4 WHERE time = \"4:01.00\"", "question": "What Event's Time is 4:01.00?", "context": "CREATE TABLE table_name_4 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_87 WHERE nationality = \"united states\" AND time = \"2:25.62\"", "question": "In what Location in the United States the Time 2:25.62?", "context": "CREATE TABLE table_name_87 (location VARCHAR, nationality VARCHAR, time VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_54 WHERE year > 1975 AND record = \"13\u201311\"", "question": "Year larger than 1975, and a Record of 13\u201311 is what playoffs?", "context": "CREATE TABLE table_name_54 (playoffs VARCHAR, year VARCHAR, record VARCHAR)"}, {"answer": "SELECT venue FROM table_name_57 WHERE year < 2005 AND category = \"world class\" AND result = \"bronze\"", "question": "What are the venues prior to 2005 in the World Class category that resulted in a bronze?", "context": "CREATE TABLE table_name_57 (venue VARCHAR, result VARCHAR, year VARCHAR, category VARCHAR)"}, {"answer": "SELECT competition FROM table_name_10 WHERE year < 2006 AND venue = \"svk nitra\"", "question": "What are the competitions that occurred before 2006 in SVK Nitra?", "context": "CREATE TABLE table_name_10 (competition VARCHAR, year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT category FROM table_name_93 WHERE year > 2007 AND competition = \"world championships\"", "question": "What are the categories of events that occurred after 2007 that were World Championships?", "context": "CREATE TABLE table_name_93 (category VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_22 WHERE year < 2010 AND venue = \"nor elverum\"", "question": "What was the result of events held at Nor Elverum, prior to 2010?", "context": "CREATE TABLE table_name_22 (result VARCHAR, year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT competition FROM table_name_17 WHERE year = 2003", "question": "What was the competition held in 2003?", "context": "CREATE TABLE table_name_17 (competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_33 WHERE entrant = \"scuderia ferrari\" AND points > 1", "question": "What chassis type does a scuderia ferrari with more than 1 point have?", "context": "CREATE TABLE table_name_33 (chassis VARCHAR, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_80 WHERE engine = \"ferrari flat-12\" AND points > 1", "question": "A ferrari flat-12 engine with more than 1 point has what kind of chassis?", "context": "CREATE TABLE table_name_80 (chassis VARCHAR, engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_91 WHERE chassis = \"merzario a2\"", "question": "What is the average year for a merzario a2 chassis?", "context": "CREATE TABLE table_name_91 (year INTEGER, chassis VARCHAR)"}, {"answer": "SELECT record FROM table_name_87 WHERE visitor = \"chicago black hawks\" AND date = \"november 24\"", "question": "What was the team's record when they played visitor team Chicago Black Hawks on November 24?", "context": "CREATE TABLE table_name_87 (record VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_77 WHERE home = \"chicago black hawks\" AND date = \"march 20\"", "question": "What is the name of the visitor team who played home team Chicago Black Hawks on March 20?", "context": "CREATE TABLE table_name_77 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_38 WHERE date = \"november 12\"", "question": "What was the team's record on November 12?", "context": "CREATE TABLE table_name_38 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT champion FROM table_name_33 WHERE year = \"1981\"", "question": "What champion has 1981 as the year?", "context": "CREATE TABLE table_name_33 (champion VARCHAR, year VARCHAR)"}, {"answer": "SELECT date_final FROM table_name_59 WHERE year = \"1982\"", "question": "What date final has 1982 as the year?", "context": "CREATE TABLE table_name_59 (date_final VARCHAR, year VARCHAR)"}, {"answer": "SELECT prize_money FROM table_name_56 WHERE commercial_name = \"michelob light challenge of champions\"", "question": "What prize money has michelob light challenge of champions as the commercial name?", "context": "CREATE TABLE table_name_56 (prize_money VARCHAR, commercial_name VARCHAR)"}, {"answer": "SELECT date_final FROM table_name_90 WHERE year = \"1989\"", "question": "What date final has 1989 as the year?", "context": "CREATE TABLE table_name_90 (date_final VARCHAR, year VARCHAR)"}, {"answer": "SELECT score_in_final FROM table_name_54 WHERE champion = \"boris becker\"", "question": "What score in final has boris becker as the champion?", "context": "CREATE TABLE table_name_54 (score_in_final VARCHAR, champion VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_9 WHERE engine = \"alta straight-4\" AND entrant = \"connaught engineering\" AND year < 1957", "question": "What is the greatest point of an Entrant of connaught engineering alta straight-4 engine before 1957", "context": "CREATE TABLE table_name_9 (points INTEGER, year VARCHAR, engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT engine FROM table_name_71 WHERE chassis = \"connaught type b\" AND year > 1957", "question": "What 1957 engine has a Chassis of connaught type b?", "context": "CREATE TABLE table_name_71 (engine VARCHAR, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE winning_score = \u22129(72 - 68 - 64 - 67 = 271)", "question": "When was the winning score \u22129 (72-68-64-67=271)?", "context": "CREATE TABLE table_name_89 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_77 WHERE tournament = \"mississippi gulf resort classic\"", "question": "What was the margin of victory for the Mississippi Gulf Resort Classic?", "context": "CREATE TABLE table_name_77 (margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_53 WHERE runner_s__up = \"mark calcavecchia\"", "question": "What was the margin of victory when Mark Calcavecchia was the runner-up?", "context": "CREATE TABLE table_name_53 (margin_of_victory VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE margin_of_victory = \"1 stroke\" AND tournament = \"the ace group classic\"", "question": "What was the date of the Ace Group Classic tournament with a 1 stroke margin of victory?", "context": "CREATE TABLE table_name_24 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_84 WHERE winning_score = \u22129(72 - 68 - 64 - 67 = 271)", "question": "What was the margin of victory when the winning score was \u22129 (72-68-64-67=271)?", "context": "CREATE TABLE table_name_84 (margin_of_victory VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_65 WHERE position = \"te\"", "question": "What is the average round for te position?", "context": "CREATE TABLE table_name_65 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_91 WHERE player = \"james davis\"", "question": "Name the average overall for james davis", "context": "CREATE TABLE table_name_91 (overall INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_89 WHERE player = \"james davis\" AND round > 5", "question": "Name the most overall for james davis and round more than 5", "context": "CREATE TABLE table_name_89 (overall INTEGER, player VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_20 WHERE college = \"villanova\" AND round < 2", "question": "Name the total number of overall for villanova and round less than 2", "context": "CREATE TABLE table_name_20 (overall VARCHAR, college VARCHAR, round VARCHAR)"}, {"answer": "SELECT state FROM table_name_8 WHERE mountain_peak = \"mount chiginagak\"", "question": "Which state is Mount Chiginagak located in?", "context": "CREATE TABLE table_name_8 (state VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT circumstances FROM table_name_62 WHERE location = \"baghlan\"", "question": "What were the circumstances for the Baghlan location?", "context": "CREATE TABLE table_name_62 (circumstances VARCHAR, location VARCHAR)"}, {"answer": "SELECT casualties FROM table_name_64 WHERE location = \"baghlan\"", "question": "What were the casualties in the Baghlan location?", "context": "CREATE TABLE table_name_64 (casualties VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE circumstances = \"natural cause\"", "question": "What was the date of natural cause situation?", "context": "CREATE TABLE table_name_12 (date VARCHAR, circumstances VARCHAR)"}, {"answer": "SELECT gold_coast FROM table_name_49 WHERE perth = \"no\" AND sydney = \"yes\" AND auckland = \"yes\"", "question": "Which Gold Coast has a Perth of no, a Sydney of yes, and an Auckland of yes?", "context": "CREATE TABLE table_name_49 (gold_coast VARCHAR, auckland VARCHAR, perth VARCHAR, sydney VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_14 WHERE auckland = \"no\" AND gold_coast = \"no\"", "question": "Which Melbourne has an Auckland of no, and a Gold Coast of no?", "context": "CREATE TABLE table_name_14 (melbourne VARCHAR, auckland VARCHAR, gold_coast VARCHAR)"}, {"answer": "SELECT adelaide FROM table_name_2 WHERE melbourne = \"yes\" AND auckland = \"yes\" AND perth = \"yes\"", "question": "Which Adelaide has a Melbourne of yes, an Auckland of yes, and a Perth of yes?", "context": "CREATE TABLE table_name_2 (adelaide VARCHAR, perth VARCHAR, melbourne VARCHAR, auckland VARCHAR)"}, {"answer": "SELECT sydney FROM table_name_27 WHERE perth = \"no\" AND melbourne = \"yes\" AND gold_coast = \"no\"", "question": "Which Sydney has a Perth of no, a Melbourne of yes, and a Gold Coast of no?", "context": "CREATE TABLE table_name_27 (sydney VARCHAR, gold_coast VARCHAR, perth VARCHAR, melbourne VARCHAR)"}, {"answer": "SELECT auckland FROM table_name_1 WHERE adelaide = \"no\" AND melbourne = \"yes\" AND sydney = \"yes\"", "question": "Which Auckland has an Adelaide of no, a Melbourne of yes, and a Sydney of yes?", "context": "CREATE TABLE table_name_1 (auckland VARCHAR, sydney VARCHAR, adelaide VARCHAR, melbourne VARCHAR)"}, {"answer": "SELECT adelaide FROM table_name_39 WHERE auckland = \"yes\" AND melbourne = \"yes\" AND perth = \"yes\" AND sydney = \"cancelled\"", "question": "Which Adelaide has an Auckland of yes, a Melbourne of yes, a Perth of yes, and a Sydney of cancelled?", "context": "CREATE TABLE table_name_39 (adelaide VARCHAR, sydney VARCHAR, perth VARCHAR, auckland VARCHAR, melbourne VARCHAR)"}, {"answer": "SELECT owner_s_ FROM table_name_75 WHERE team = \"rss racing\" AND driver_s_ = \"ryan sieg\"", "question": "Who is the owner of RSS Racing that driver Ryan Sieg belongs to?", "context": "CREATE TABLE table_name_75 (owner_s_ VARCHAR, team VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_name_21 WHERE primary_sponsor_s_ = \"parts plus\"", "question": "Parts Plus sponsors what driver?", "context": "CREATE TABLE table_name_21 (driver_s_ VARCHAR, primary_sponsor_s_ VARCHAR)"}, {"answer": "SELECT owner_s_ FROM table_name_61 WHERE team = \"nts motorsports\" AND primary_sponsor_s_ = \"qore-24\"", "question": "Who is the owner of NTS Motorsports sponsored by Qore-24?", "context": "CREATE TABLE table_name_61 (owner_s_ VARCHAR, team VARCHAR, primary_sponsor_s_ VARCHAR)"}, {"answer": "SELECT crew_chief FROM table_name_27 WHERE driver_s_ = \"matt kurzejewski\"", "question": "Who is the crew chief, of driver Matt kurzejewski?", "context": "CREATE TABLE table_name_27 (crew_chief VARCHAR, driver_s_ VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_name_18 WHERE crew_chief = \"gary ritter\"", "question": "Who is the driver that has a crew chief Gary Ritter?", "context": "CREATE TABLE table_name_18 (driver_s_ VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT award FROM table_name_24 WHERE year = 2009 AND category = \"songwriter of the year\"", "question": "what is the award for the 2009 songwriter of the year?", "context": "CREATE TABLE table_name_24 (award VARCHAR, year VARCHAR, category VARCHAR)"}, {"answer": "SELECT category FROM table_name_38 WHERE award = \"people's choice awards\"", "question": "what is the category that has the people's choice awards?", "context": "CREATE TABLE table_name_38 (category VARCHAR, award VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_77 WHERE nominated_work = \"general\" AND category = \"choice breakthrough artist\"", "question": "what year has general nominated in the category or choice breakthrough artist?", "context": "CREATE TABLE table_name_77 (year VARCHAR, nominated_work VARCHAR, category VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE date = \"6 february 2008\"", "question": "What was the score on 6 February 2008?", "context": "CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_41 WHERE date = \"14 november 2012\"", "question": "Which competition was held on 14 November 2012?", "context": "CREATE TABLE table_name_41 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_85 WHERE date = \"10 august 2011\"", "question": "What competition took place on 10 August 2011?", "context": "CREATE TABLE table_name_85 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_49 WHERE chassis = \"cooper t60\"", "question": "What is the average Year with Chassis equalling cooper t60?", "context": "CREATE TABLE table_name_49 (year INTEGER, chassis VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_26 WHERE entrant = \"cooper car company\" AND year = 1963", "question": "Which Chassis has an Entrant of cooper car company, and a Year of 1963?", "context": "CREATE TABLE table_name_26 (chassis VARCHAR, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_44 WHERE engine = \"climax straight-4\" AND points > 0", "question": "Which Entrant has an Engine of climax straight-4, and Points larger than 0?", "context": "CREATE TABLE table_name_44 (entrant VARCHAR, engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_78 WHERE surface = \"hard\" AND date = \"apr. 12, 1998\"", "question": "Which tournament has hard as the surface and apr. 12, 1998 as the date?", "context": "CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_51 WHERE opponent_in_the_final = \"wynne prakusya\"", "question": "Which surface has wynne prakusya as the opponent in the final?", "context": "CREATE TABLE table_name_51 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE opponent_in_the_final = \"wynne prakusya\"", "question": "What score has wynne prakusya as the opponent in the final?", "context": "CREATE TABLE table_name_15 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_79 WHERE date = \"nov. 21, 1999\"", "question": "What tournament has nov. 21, 1999 as the date?", "context": "CREATE TABLE table_name_79 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT authority FROM table_name_67 WHERE gender = \"coed\" AND name = \"chanel college\"", "question": "Name the authority for coed gender and chanel college", "context": "CREATE TABLE table_name_67 (authority VARCHAR, gender VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(decile) FROM table_name_62 WHERE authority = \"state\" AND area = \"fernridge\"", "question": "Name the average decile for state authority and area of fernridge", "context": "CREATE TABLE table_name_62 (decile INTEGER, authority VARCHAR, area VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_48 WHERE date = \"october 11, 1998\"", "question": "What was the week on October 11, 1998?", "context": "CREATE TABLE table_name_48 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_93 WHERE attendance = \"63,336\"", "question": "What is the location of the game with attendance of 63,336?", "context": "CREATE TABLE table_name_93 (game_site VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_96 WHERE week = 13", "question": "What was the date of the week 13 game?", "context": "CREATE TABLE table_name_96 (date VARCHAR, week VARCHAR)"}, {"answer": "SELECT division_record FROM table_name_48 WHERE team = \"panthers\"", "question": "What is the Panthers' Division Record?", "context": "CREATE TABLE table_name_48 (division_record VARCHAR, team VARCHAR)"}, {"answer": "SELECT division_record FROM table_name_39 WHERE team = \"senators\"", "question": "What is the Senators' division record?", "context": "CREATE TABLE table_name_39 (division_record VARCHAR, team VARCHAR)"}, {"answer": "SELECT record FROM table_name_86 WHERE date = \"january 18\"", "question": "What was the record after the January 18 game?", "context": "CREATE TABLE table_name_86 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_44 WHERE date = \"january 6\"", "question": "What was the record after the January 6 game?", "context": "CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT Former AS name FROM table_name_79 WHERE rank = 49", "question": "Name the former name for 49 rank", "context": "CREATE TABLE table_name_79 (Former VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nhl_team FROM table_name_66 WHERE position = \"left wing\"", "question": "Which NHL team has left wing listed as the position?", "context": "CREATE TABLE table_name_66 (nhl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT years FROM table_name_9 WHERE decile = 3 AND name = \"kakahi school\"", "question": "What years does Kakahi school, with a decile of 3, have?", "context": "CREATE TABLE table_name_9 (years VARCHAR, decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(decile) FROM table_name_64 WHERE authority = \"state\" AND name = \"ruapehu college\"", "question": "What is the average decile of Ruapehu college, which has a state authority?", "context": "CREATE TABLE table_name_64 (decile INTEGER, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(roll) FROM table_name_63 WHERE area = \"raetihi\" AND name = \"orautoha school\" AND decile < 8", "question": "What is the roll number of Orautoha school in Raetihi, which has a decile smaller than 8?", "context": "CREATE TABLE table_name_63 (roll INTEGER, decile VARCHAR, area VARCHAR, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE opponent = \"utah blaze\"", "question": "On what day was Utah Blaze the opponent?", "context": "CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_56 WHERE 2011 = \"1r\"", "question": "What is the 2006 value with a 1r in 2011?", "context": "CREATE TABLE table_name_56 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_85 WHERE 2004 = \"2r\" AND 2011 = \"3r\"", "question": "What is the 2010 value with a 2r in 200r and a 3r in 2011?", "context": "CREATE TABLE table_name_85 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_53 WHERE 2012 = \"2r\" AND 2002 = \"1r\"", "question": "What is the 2007 value with a 2r in 2012 and 1r in 2002?", "context": "CREATE TABLE table_name_53 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_46 WHERE 2011 = \"grand slam tournaments\"", "question": "What is the 2004 value in the 2011 Grand Slam Tournaments?", "context": "CREATE TABLE table_name_46 (Id VARCHAR)"}, {"answer": "SELECT 2004 FROM table_name_4 WHERE 2010 = \"sf\"", "question": "What is the 2004 value with a sf in 2010?", "context": "CREATE TABLE table_name_4 (Id VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE date = \"30 january 2013\"", "question": "Name the score for 30 january 2013", "context": "CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_92 WHERE goal__number > 4", "question": "Name the result for goal # more than 4", "context": "CREATE TABLE table_name_92 (result VARCHAR, goal__number INTEGER)"}, {"answer": "SELECT to_par FROM table_name_24 WHERE player = \"fred couples\"", "question": "What is Fred Couples to par?", "context": "CREATE TABLE table_name_24 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_9 WHERE score < 68", "question": "What place has a score under 68?", "context": "CREATE TABLE table_name_9 (place VARCHAR, score INTEGER)"}, {"answer": "SELECT winning_driver FROM table_name_96 WHERE winning_constructor = \"o.m.\"", "question": "Which driver won when o.m. was the winning constructor ?", "context": "CREATE TABLE table_name_96 (winning_driver VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_40 WHERE winning_constructor = \"bugatti\" AND name = \"boulogne grand prix\"", "question": "Which driver won when the winning constructor was bugatti at the Boulogne Grand Prix ?", "context": "CREATE TABLE table_name_40 (winning_driver VARCHAR, winning_constructor VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_36 WHERE winning_driver = \"meo constantini\" AND circuit = \"monza\"", "question": "What race did Meo Constantini win at the circuit of monza ?", "context": "CREATE TABLE table_name_36 (name VARCHAR, winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE winning_driver = \"aymo maggi\" AND name = \"rome grand prix\"", "question": "On what date did Aymo Maggi win the Rome Grand Prix ?", "context": "CREATE TABLE table_name_6 (date VARCHAR, winning_driver VARCHAR, name VARCHAR)"}, {"answer": "SELECT season_outcome FROM table_name_89 WHERE school = \"smyrna\"", "question": "Name the season outcome for smyrna", "context": "CREATE TABLE table_name_89 (season_outcome VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_87 WHERE team = \"eagles\"", "question": "Name the school for eagles", "context": "CREATE TABLE table_name_87 (school VARCHAR, team VARCHAR)"}, {"answer": "SELECT school FROM table_name_73 WHERE season_outcome = \"loss in first round of div. i playoffs\"", "question": "Name the school for Season Outcome of loss in first round of div. i playoffs", "context": "CREATE TABLE table_name_73 (school VARCHAR, season_outcome VARCHAR)"}, {"answer": "SELECT division_record FROM table_name_28 WHERE team = \"riders\"", "question": "Name the division record for riders", "context": "CREATE TABLE table_name_28 (division_record VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_44 WHERE school = \"milford\"", "question": "Name the team for school of milford", "context": "CREATE TABLE table_name_44 (team VARCHAR, school VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_14 WHERE chassis = \"stevens\" AND year < 1950", "question": "Name the average points for chassis of stevens and year less than 1950", "context": "CREATE TABLE table_name_14 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_54 WHERE chassis = \"kurtis kraft 500a\"", "question": "Name the least points for chassis of kurtis kraft 500a", "context": "CREATE TABLE table_name_54 (points INTEGER, chassis VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_89 WHERE chassis = \"kurtis kraft 4000\" AND points > 2", "question": "Name the total number of year for chassis of kurtis kraft 4000 and points more than 2", "context": "CREATE TABLE table_name_89 (year VARCHAR, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_24 WHERE week < 12 AND stadium = \"sports authority field at mile high\"", "question": "Who was the visiting team on weeks under 12 and at Sports Authority Field at Mile High?", "context": "CREATE TABLE table_name_24 (visiting_team VARCHAR, week VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_36 WHERE stadium = \"raymond james stadium\"", "question": "Who was the visiting team at Raymond James Stadium?", "context": "CREATE TABLE table_name_36 (visiting_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE visiting_team = \"houston texans\"", "question": "What date had the Houston Texans as visitors?", "context": "CREATE TABLE table_name_75 (date VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT year FROM table_name_55 WHERE percentage = \"9.66%\"", "question": "Name the year with percentage of 9.66%", "context": "CREATE TABLE table_name_55 (year VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT COUNT(popular_votes) FROM table_name_74 WHERE office = \"mn attorney general\" AND year = 1994", "question": "Name the total number of popular votes for mn attorney general in 1994", "context": "CREATE TABLE table_name_74 (popular_votes VARCHAR, office VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(popular_votes) FROM table_name_35 WHERE percentage = \"4.94%\" AND year > 1990", "question": "Name the average popular votes in years after 1990 with percentage of 4.94%", "context": "CREATE TABLE table_name_35 (popular_votes INTEGER, percentage VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(popular_votes) FROM table_name_35 WHERE year < 1994 AND percentage = \"0.96%\"", "question": "Name the least popular votes for year less than 1994 and percentage of 0.96%", "context": "CREATE TABLE table_name_35 (popular_votes INTEGER, year VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT player FROM table_name_57 WHERE place = \"t8\" AND country = \"united states\"", "question": "What United States player holds the place of t8?`", "context": "CREATE TABLE table_name_57 (player VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_51 WHERE score = 68 AND country = \"argentina\"", "question": "What country of argentina has the To par of 68?", "context": "CREATE TABLE table_name_51 (to_par VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_62 WHERE country = \"united states\" AND place = \"t8\" AND player = \"tiger woods\"", "question": "What is the To par and holds the t8 place of the United States player Tiger Woods?", "context": "CREATE TABLE table_name_62 (to_par VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_50 WHERE score = 69 AND player = \"miguel \u00e1ngel jim\u00e9nez\"", "question": "What country does miguel \u00e1ngel jim\u00e9nez player for and has a score of 69?", "context": "CREATE TABLE table_name_50 (country VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE track = \"truro\"", "question": "What is the date of the race at Truro?", "context": "CREATE TABLE table_name_32 (date VARCHAR, track VARCHAR)"}, {"answer": "SELECT year FROM table_name_88 WHERE result = \"nominated\" AND category = \"outstanding actor in a musical\"", "question": "Which Year has a nominated outstanding actor in a musical?", "context": "CREATE TABLE table_name_88 (year VARCHAR, result VARCHAR, category VARCHAR)"}, {"answer": "SELECT award FROM table_name_92 WHERE result = \"nominated\" AND category = \"outstanding choreography\"", "question": "Which Award has a nominated, and outstanding choreography?", "context": "CREATE TABLE table_name_92 (award VARCHAR, result VARCHAR, category VARCHAR)"}, {"answer": "SELECT award FROM table_name_20 WHERE category = \"best performance by a leading actor in a musical\"", "question": "Which Award  has best performance by a leading actor in a musical", "context": "CREATE TABLE table_name_20 (award VARCHAR, category VARCHAR)"}, {"answer": "SELECT club_career FROM table_name_65 WHERE position = \"df\" AND total_goals < 18 AND league_apps < 129 AND league_goals > 7", "question": "What was the club career for players in positions of DF, fewer than 18 total goals, fewer than 129 league appearances, and more than 7 league goals?", "context": "CREATE TABLE table_name_65 (club_career VARCHAR, league_goals VARCHAR, league_apps VARCHAR, position VARCHAR, total_goals VARCHAR)"}, {"answer": "SELECT MIN(total_goals) FROM table_name_3 WHERE league_apps < 171 AND total_apps = 151 AND position = \"df\"", "question": "What is the fewest total goals scored for players with under 171 league appearances, 151 total appearances, and the DF position?", "context": "CREATE TABLE table_name_3 (total_goals INTEGER, position VARCHAR, league_apps VARCHAR, total_apps VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_45 WHERE group = \"method fest independent film festival\"", "question": "What is the total number of Years that has the Group, Method Fest Independent Film Festival?", "context": "CREATE TABLE table_name_45 (year VARCHAR, group VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_79 WHERE group = \"logie award\" AND award = \"most outstanding actor\" AND result = \"nominated\"", "question": "What is the average Year that has the Group, Logie Award, the Award, Most Outstanding Actor, and the Result, nominated?", "context": "CREATE TABLE table_name_79 (year INTEGER, result VARCHAR, group VARCHAR, award VARCHAR)"}, {"answer": "SELECT group FROM table_name_31 WHERE result = \"nominated\" AND year < 2012 AND film_show = \"east west 101\" AND award = \"best lead actor in a television drama\"", "question": "Before 2012, which Group has the Result, nominated, the Film/Show, East West 101, and the Award, Best Lead Actor in A Television Drama?", "context": "CREATE TABLE table_name_31 (group VARCHAR, award VARCHAR, film_show VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT group FROM table_name_54 WHERE result = \"nominated\" AND year > 2008 AND award = \"best lead actor in a television drama\"", "question": "After 2008, which Group has the Result, nominated, and the Award, Best Lead Actor in a Television Drama?", "context": "CREATE TABLE table_name_54 (group VARCHAR, award VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT award FROM table_name_96 WHERE film_show = \"east west 101\" AND year < 2009 AND group = \"logie award\"", "question": "What is the Award, when the Film/Show is East West 101, and when the year is before 2009, and when the Group is Logie Award?", "context": "CREATE TABLE table_name_96 (award VARCHAR, group VARCHAR, film_show VARCHAR, year VARCHAR)"}, {"answer": "SELECT film_show FROM table_name_19 WHERE year = 2010", "question": "What is the Film/Show, when the Year is 2010?", "context": "CREATE TABLE table_name_19 (film_show VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_88 WHERE entrant = \"belond equa-flow / calif. muffler\"", "question": "Which year is that has a Entrant of belond equa-flow / calif. muffler?", "context": "CREATE TABLE table_name_88 (year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT AVG(wkts) FROM table_name_95 WHERE ovrs < 2", "question": "If the Ovrs is less than 2, what's the average in Wkts?", "context": "CREATE TABLE table_name_95 (wkts INTEGER, ovrs INTEGER)"}, {"answer": "SELECT MAX(wkts) FROM table_name_58 WHERE ovrs < 28.5 AND player = \"adam voges\"", "question": "If Adam Voges had less than 28.5 Ovrs, what are his highest Wkts?", "context": "CREATE TABLE table_name_58 (wkts INTEGER, ovrs VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(sacks) FROM table_name_59 WHERE year = \"2006\" AND solo < 62", "question": "How many sacks have 2006 as the year, and a solo less than 62?", "context": "CREATE TABLE table_name_59 (sacks INTEGER, year VARCHAR, solo VARCHAR)"}, {"answer": "SELECT AVG(pass_def) FROM table_name_63 WHERE team = \"green bay packers\" AND solo = 62 AND sacks < 2", "question": "What is the average pass def that has green bay packers as the team, 62 as the solo and sacks less than 2?", "context": "CREATE TABLE table_name_63 (pass_def INTEGER, sacks VARCHAR, team VARCHAR, solo VARCHAR)"}, {"answer": "SELECT COUNT(sacks) FROM table_name_69 WHERE solo = 72 AND ttkl < 112", "question": "How many sacks have 72 as the solo and a TTkl less than 112?", "context": "CREATE TABLE table_name_69 (sacks VARCHAR, solo VARCHAR, ttkl VARCHAR)"}, {"answer": "SELECT SUM(ttkl) FROM table_name_46 WHERE year = \"2004\" AND pass_def > 5", "question": "How many TTkl have 2004 as the year, and a pass def greater than 5?", "context": "CREATE TABLE table_name_46 (ttkl INTEGER, year VARCHAR, pass_def VARCHAR)"}, {"answer": "SELECT MAX(decile) FROM table_name_58 WHERE authority = \"state\" AND name = \"tarras school\"", "question": "What is the highest decile of Tarras school, which had a state authority?", "context": "CREATE TABLE table_name_58 (decile INTEGER, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(decile) FROM table_name_36 WHERE roll > 513", "question": "What is the decile of the school with a roll larger than 513?", "context": "CREATE TABLE table_name_36 (decile INTEGER, roll INTEGER)"}, {"answer": "SELECT area FROM table_name_96 WHERE authority = \"state\" AND name = \"cromwell primary school\"", "question": "What is the area of Cromwell Primary school, which has a state authority?", "context": "CREATE TABLE table_name_96 (area VARCHAR, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT player FROM table_name_46 WHERE figures = \"4/14\"", "question": "Which player has figures of 4/14?", "context": "CREATE TABLE table_name_46 (player VARCHAR, figures VARCHAR)"}, {"answer": "SELECT overs FROM table_name_31 WHERE ground = \"waca ground\" AND opponent = \"queensland\"", "question": "How many overs occurred at Waca Ground against Queensland?", "context": "CREATE TABLE table_name_31 (overs VARCHAR, ground VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT ground FROM table_name_37 WHERE figures = \"4/23\"", "question": "At which ground did Dirk Nannes have a figure of 4/23?", "context": "CREATE TABLE table_name_37 (ground VARCHAR, figures VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE overs = 3.3", "question": "Who was the opponent when Steven Smith had 3.3 overs?", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, overs VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_99 WHERE venue = \"brookvale oval\" AND margin > 46", "question": "Name the average year for brookvale oval and margin more than 46", "context": "CREATE TABLE table_name_99 (year INTEGER, venue VARCHAR, margin VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_93 WHERE venue = \"brookvale oval\"", "question": "Name the most year for brookvale oval", "context": "CREATE TABLE table_name_93 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_13 WHERE opponent = \"manly-warringah sea eagles\"", "question": "Name the average year for manly-warringah sea eagles", "context": "CREATE TABLE table_name_13 (year INTEGER, opponent VARCHAR)"}, {"answer": "SELECT partner FROM table_name_29 WHERE score = \"6\u20131, 6\u20134\"", "question": "Who is the partner with a score of 6\u20131, 6\u20134?", "context": "CREATE TABLE table_name_29 (partner VARCHAR, score VARCHAR)"}, {"answer": "SELECT best_supported_club FROM table_name_75 WHERE goals = 25 AND per_game > 1 OFFSET 156", "question": "what is the best supported club with a 25 Goal and a per game larger than 1,156?", "context": "CREATE TABLE table_name_75 (best_supported_club VARCHAR, goals VARCHAR, per_game VARCHAR)"}, {"answer": "SELECT age_groups FROM table_name_26 WHERE competition_name = \"big league world series\"", "question": "What are the age groups for the Big League World Series?", "context": "CREATE TABLE table_name_26 (age_groups VARCHAR, competition_name VARCHAR)"}, {"answer": "SELECT held_every FROM table_name_13 WHERE sport = \"table tennis\"", "question": "How often is the table tennis competition held?", "context": "CREATE TABLE table_name_13 (held_every VARCHAR, sport VARCHAR)"}, {"answer": "SELECT held_every FROM table_name_97 WHERE sport = \"cricket\"", "question": "How often is the cricket competition held?", "context": "CREATE TABLE table_name_97 (held_every VARCHAR, sport VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_7 WHERE record = \"47-43\"", "question": "What was the attendance of the Blue Jays' game when their record was 47-43?", "context": "CREATE TABLE table_name_7 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT year FROM table_name_36 WHERE points = 12 AND engine = \"cosworth v8\"", "question": "Which year had a Cosworth V8 engine and 12 points?", "context": "CREATE TABLE table_name_36 (year VARCHAR, points VARCHAR, engine VARCHAR)"}, {"answer": "SELECT points FROM table_name_14 WHERE entrant = \"ats wheels\" AND chassis = \"ats d2\"", "question": "How many points did the ATS Wheels entrant with an ATS D2 chassis have?", "context": "CREATE TABLE table_name_14 (points VARCHAR, entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT AVG(races) FROM table_name_56 WHERE podiums < 2 AND position = \"19th\" AND season < 2009", "question": "How many races have less than 2 podiums and 19th position before 2009?", "context": "CREATE TABLE table_name_56 (races INTEGER, season VARCHAR, podiums VARCHAR, position VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_23 WHERE pos = \"3rd\" AND team = \"joest racing\"", "question": "Which co drivers are 3rd in Joest racing?", "context": "CREATE TABLE table_name_23 (co_drivers VARCHAR, pos VARCHAR, team VARCHAR)"}, {"answer": "SELECT AVG(year_born) FROM table_name_97 WHERE player = \"radek necas\" AND height < 2.04", "question": "When was radek necas with less than 2.04 height born?", "context": "CREATE TABLE table_name_97 (year_born INTEGER, player VARCHAR, height VARCHAR)"}, {"answer": "SELECT MAX(height) FROM table_name_23 WHERE year_born = 1982 AND current_club = \"nymburk\"", "question": "How tall was the member of Nymburk, who was born in 1982?", "context": "CREATE TABLE table_name_23 (height INTEGER, year_born VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT COUNT(kerry_number) FROM table_name_64 WHERE county = \"taylor\" AND others_number > 65", "question": "What Kerry number does Taylor county have with more than 65 others#?", "context": "CREATE TABLE table_name_64 (kerry_number VARCHAR, county VARCHAR, others_number VARCHAR)"}, {"answer": "SELECT MIN(bush_number) FROM table_name_55 WHERE bush_percentage = \"66.0%\" AND others_number < 65", "question": "What is the smallest bush# with 66.0% bush and less than 65 others#?", "context": "CREATE TABLE table_name_55 (bush_number INTEGER, bush_percentage VARCHAR, others_number VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_84 WHERE venue = \"adelaide oval\"", "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 result FROM table_name_79 WHERE venue = \"melbourne cricket ground\"", "question": "What is the final score at Melbourne Cricket Ground?", "context": "CREATE TABLE table_name_79 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE date = \"april 28\"", "question": "Name the score for april 28", "context": "CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(heat) FROM table_name_38 WHERE name = \"anjelika solovieva\"", "question": "What is the average Heat for anjelika solovieva?", "context": "CREATE TABLE table_name_38 (heat INTEGER, name VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_37 WHERE nationality = \"netherlands antilles\"", "question": "What is the average lane with Netherlands Antilles Nationality?", "context": "CREATE TABLE table_name_37 (lane INTEGER, nationality VARCHAR)"}, {"answer": "SELECT finish FROM table_name_42 WHERE start = \"5\"", "question": "What is the finish of the year with start 5?", "context": "CREATE TABLE table_name_42 (finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT rank FROM table_name_26 WHERE year = \"1940\"", "question": "What is the rank in 1940?", "context": "CREATE TABLE table_name_26 (rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_73 WHERE rank = \"14\"", "question": "What is the highest laps of the year when the rank was 14?", "context": "CREATE TABLE table_name_73 (laps INTEGER, rank VARCHAR)"}, {"answer": "SELECT year FROM table_name_75 WHERE laps = 134", "question": "What year had 134 laps?", "context": "CREATE TABLE table_name_75 (year VARCHAR, laps VARCHAR)"}, {"answer": "SELECT finish FROM table_name_2 WHERE laps > 192 AND qual = \"135.736\"", "question": "What is the finish when there was more than 192 laps and a qual of 135.736?", "context": "CREATE TABLE table_name_2 (finish VARCHAR, laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_51 WHERE loss = \"glynn (0-2)\"", "question": "Witch opponent has a loss of Glynn (0-2)?", "context": "CREATE TABLE table_name_51 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT previous_champion_s_ FROM table_name_98 WHERE date_won = \"july 7, 2010\"", "question": "Who was the previous champion of the title won on July 7, 2010?", "context": "CREATE TABLE table_name_98 (previous_champion_s_ VARCHAR, date_won VARCHAR)"}, {"answer": "SELECT date_won FROM table_name_5 WHERE location = \"bayam\u00f3n, puerto rico\" AND champion_s_ = \"bonecrusher\"", "question": "When did Bonecrusher win the championship at Bayam\u00f3n, Puerto Rico?", "context": "CREATE TABLE table_name_5 (date_won VARCHAR, location VARCHAR, champion_s_ VARCHAR)"}, {"answer": "SELECT champion_s_ FROM table_name_4 WHERE previous_champion_s_ = \"lash\"", "question": "Who is the champion of the title previously held by Lash?", "context": "CREATE TABLE table_name_4 (champion_s_ VARCHAR, previous_champion_s_ VARCHAR)"}, {"answer": "SELECT championship FROM table_name_92 WHERE date_won = \"july 7, 2010\"", "question": "Which championship was won on July 7, 2010?", "context": "CREATE TABLE table_name_92 (championship VARCHAR, date_won VARCHAR)"}, {"answer": "SELECT trainer FROM table_name_50 WHERE odds = \"6/1\"", "question": "Who has 6/1 odds?", "context": "CREATE TABLE table_name_50 (trainer VARCHAR, odds VARCHAR)"}, {"answer": "SELECT SUM(dist__f_) FROM table_name_12 WHERE jockey = \"johnny murtagh\" AND runners < 26", "question": "What is the total dist with Johnny Murtagh and less than 26 runners?", "context": "CREATE TABLE table_name_12 (dist__f_ INTEGER, jockey VARCHAR, runners VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_55 WHERE odds = \"5/1\"", "question": "Who has 5/1 odds?", "context": "CREATE TABLE table_name_55 (jockey VARCHAR, odds VARCHAR)"}, {"answer": "SELECT course FROM table_name_34 WHERE jockey = \"fergal lynch\" AND odds = \"5/1\"", "question": "What course did Fergal Lynch end up with 5/1 odds?", "context": "CREATE TABLE table_name_34 (course VARCHAR, jockey VARCHAR, odds VARCHAR)"}, {"answer": "SELECT place FROM table_name_77 WHERE to_par = \"+4\" AND score = 74 - 70 - 74 - 74 = 292", "question": "What place has a To par of +4 and a score of 74-70-74-74=292?", "context": "CREATE TABLE table_name_77 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_39 WHERE country = \"united states\" AND to_par = \"e\"", "question": "What place in the United States has a To par of e?", "context": "CREATE TABLE table_name_39 (place VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_87 WHERE country = \"united states\" AND score = 74 - 69 - 71 - 74 = 288", "question": "What is the To par for the place in the United States and a score of 74-69-71-74=288?", "context": "CREATE TABLE table_name_87 (to_par VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_27 WHERE year < 2005 AND position = \"10th (sf)\"", "question": "What Venue is listed that has a Year smaller than 2005 and a Position of 10th (sf)?", "context": "CREATE TABLE table_name_27 (venue VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_47 WHERE position = \"7th (sf)\"", "question": "What's the average Year for the Position of 7th (sf)?", "context": "CREATE TABLE table_name_47 (year INTEGER, position VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_67 WHERE event = \"800 m\" AND venue = \"santiago de chile\"", "question": "What's the highest Year for the Venue of Santiago De Chile and the Event of 800 m?", "context": "CREATE TABLE table_name_67 (year INTEGER, event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_97 WHERE position = \"12th (sf)\"", "question": "What Venue has a Position of 12th (sf)?", "context": "CREATE TABLE table_name_97 (venue VARCHAR, position VARCHAR)"}, {"answer": "SELECT engine FROM table_name_47 WHERE entrant = \"team lotus\" AND year > 1962", "question": "Which engine has an Entrant of team lotus, and a Year larger than 1962?", "context": "CREATE TABLE table_name_47 (engine VARCHAR, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_69 WHERE year > 1966", "question": "How many points have a Year larger than 1966?", "context": "CREATE TABLE table_name_69 (points VARCHAR, year INTEGER)"}, {"answer": "SELECT MIN(points) FROM table_name_87 WHERE engine = \"climax v8\" AND year = 1966", "question": "What is the smallest number of points with an Engine of climax v8, and a Year of 1966?", "context": "CREATE TABLE table_name_87 (points INTEGER, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT points FROM table_name_91 WHERE year > 1975 AND entrant = \"team rothmans international\" AND chassis = \"march 771\"", "question": "How many points did Team Rothmans International have after 1975 when their Chassis was a March 771?", "context": "CREATE TABLE table_name_91 (points VARCHAR, chassis VARCHAR, year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_59 WHERE lane < 4 AND rank = 4", "question": "What Nationality of the person who has a Rank of 4", "context": "CREATE TABLE table_name_59 (nationality VARCHAR, lane VARCHAR, rank VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE date = \"october 14\"", "question": "Name the score on october 14", "context": "CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_68 WHERE goal_difference < -16 AND club = \"real oviedo\" AND wins < 9", "question": "What was the average number of \"goals for\", scored in the club Real Oviedo that had a \"goal difference\" lower than -16 and fewer than 9 wins?", "context": "CREATE TABLE table_name_68 (goals_for INTEGER, wins VARCHAR, goal_difference VARCHAR, club VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_80 WHERE goal_difference = -8 AND position < 12", "question": "How many people played at the club that had a \"goal difference\" of -8 and a position lower than 12?", "context": "CREATE TABLE table_name_80 (played INTEGER, goal_difference VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(goals_against) FROM table_name_13 WHERE goal_difference = 0 AND wins = 12 AND goals_for > 44", "question": "How many \"goals against\" were scored at the club that had a \"goal difference\" of 0, 12 wins, and more than 44 goals?", "context": "CREATE TABLE table_name_13 (goals_against VARCHAR, goals_for VARCHAR, goal_difference VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(goals_for) FROM table_name_85 WHERE wins = 18 AND goals_against < 38", "question": "What is the smallest number of \"goals for\" out of the clubs where there were 18 wins and fewer than 38 \"goals against\"?", "context": "CREATE TABLE table_name_85 (goals_for INTEGER, wins VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_37 WHERE fighter = \"manny pacquiao\"", "question": "When did Manny Pacquiao win his first championship?", "context": "CREATE TABLE table_name_37 (year INTEGER, fighter VARCHAR)"}, {"answer": "SELECT sport FROM table_name_29 WHERE nation_represented = \"united states\"", "question": "Which sport did the United States win?", "context": "CREATE TABLE table_name_29 (sport VARCHAR, nation_represented VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_72 WHERE nation_represented = \"philippines\"", "question": "What is the latest result where a person from the Philippines won?", "context": "CREATE TABLE table_name_72 (year INTEGER, nation_represented VARCHAR)"}, {"answer": "SELECT nation_represented FROM table_name_1 WHERE year = 2012", "question": "Which nation won the boxing championship in 2012?", "context": "CREATE TABLE table_name_1 (nation_represented VARCHAR, year VARCHAR)"}, {"answer": "SELECT total_seats FROM table_name_34 WHERE party = \"christian democratic union (cdu)\"", "question": "What is the total number of seats of the Christian Democratic Union (CDU) party?", "context": "CREATE TABLE table_name_34 (total_seats VARCHAR, party VARCHAR)"}, {"answer": "SELECT seat_percentage FROM table_name_41 WHERE vote_percentage = \"100.0%\"", "question": "What seat has a vote percentage of 100.0%", "context": "CREATE TABLE table_name_41 (seat_percentage VARCHAR, vote_percentage VARCHAR)"}, {"answer": "SELECT AVG(area__km\u00b2_) FROM table_name_24 WHERE name = \"glenella\" AND population__2011_ < 522", "question": "What was the area in Glenella with a population of 522 in 2011?", "context": "CREATE TABLE table_name_24 (area__km\u00b2_ INTEGER, name VARCHAR, population__2011_ VARCHAR)"}, {"answer": "SELECT COUNT(population_density) FROM table_name_6 WHERE name = \"siglunes\" AND change___percentage_ < -8.1", "question": "What is the population density of Siglunes when the change was smaller than -8.1 percent?", "context": "CREATE TABLE table_name_6 (population_density VARCHAR, name VARCHAR, change___percentage_ VARCHAR)"}, {"answer": "SELECT trainer FROM table_name_67 WHERE winner = \"crowd pleaser\"", "question": "Who was the trainer when Crowd Pleaser won?", "context": "CREATE TABLE table_name_67 (trainer VARCHAR, winner VARCHAR)"}, {"answer": "SELECT time FROM table_name_73 WHERE jockey = \"ramon dominguez\"", "question": "What was the race time of the horse with jockey Ramon Dominguez?", "context": "CREATE TABLE table_name_73 (time VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT jockey FROM table_name_70 WHERE year < 2012 AND owner = \"michael house\"", "question": "What jockey rode for Michael House before 2012", "context": "CREATE TABLE table_name_70 (jockey VARCHAR, year VARCHAR, owner VARCHAR)"}, {"answer": "SELECT events_won__uk_series_ FROM table_name_45 WHERE events_won__us_series_ < 1", "question": "How many UK events won for the contestant that won under 1 US event?", "context": "CREATE TABLE table_name_45 (events_won__uk_series_ VARCHAR, events_won__us_series_ INTEGER)"}, {"answer": "SELECT AVG(events_won__us_series_) FROM table_name_83 WHERE name = \"jason bennett\"", "question": "How many US events did jason bennett win?", "context": "CREATE TABLE table_name_83 (events_won__us_series_ INTEGER, name VARCHAR)"}, {"answer": "SELECT downhill FROM table_name_90 WHERE overall = \"7\"", "question": "Which downhill has 7 overalls?", "context": "CREATE TABLE table_name_90 (downhill VARCHAR, overall VARCHAR)"}, {"answer": "SELECT combined FROM table_name_93 WHERE overall = \"2\" AND slalom = \"5\"", "question": "What is the combined of 2 overalls and 5 slaloms?", "context": "CREATE TABLE table_name_93 (combined VARCHAR, overall VARCHAR, slalom VARCHAR)"}, {"answer": "SELECT overall FROM table_name_9 WHERE combined = \"1\" AND downhill = \"24\"", "question": "How many overalls has 1 combined and 24 downhills?", "context": "CREATE TABLE table_name_9 (overall VARCHAR, combined VARCHAR, downhill VARCHAR)"}, {"answer": "SELECT distance FROM table_name_94 WHERE race_leader = \"km (mi)\"", "question": "What Distance had a Race Leader in Km (mi)?", "context": "CREATE TABLE table_name_94 (distance VARCHAR, race_leader VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_10 WHERE tied = \"4\" AND goals_for < 257 AND games > 72", "question": "What is the highest number of points scored when Acadie-Bathurst had 4 tied games, less than 257 goals, and over 72 games played?", "context": "CREATE TABLE table_name_10 (points INTEGER, games VARCHAR, tied VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_54 WHERE percentage = \"3.33%\" AND lost < 29", "question": "What is the average of games played with a percentage of 3.33% and less than 29 losses?", "context": "CREATE TABLE table_name_54 (played INTEGER, percentage VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_22 WHERE first_game = 1991 AND percentage = \"22.22%\" AND lost > 7", "question": "What is the total number of games played that correlates with a first game in 1991, a percentage of 22.22%, and less than 7 losses?", "context": "CREATE TABLE table_name_22 (played VARCHAR, lost VARCHAR, first_game VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT MAX(drawn) FROM table_name_92 WHERE percentage = \"0.00%\" AND lost < 1", "question": "What is the highest number of draws that correlates with a percentage of 0.00% and less than 1 loss?", "context": "CREATE TABLE table_name_92 (drawn INTEGER, percentage VARCHAR, lost VARCHAR)"}, {"answer": "SELECT start FROM table_name_31 WHERE rank = \"11\"", "question": "What is the start value for rank 11?", "context": "CREATE TABLE table_name_31 (start VARCHAR, rank VARCHAR)"}, {"answer": "SELECT year FROM table_name_95 WHERE laps = 200", "question": "Which year has 200 laps?", "context": "CREATE TABLE table_name_95 (year VARCHAR, laps VARCHAR)"}, {"answer": "SELECT finish FROM table_name_67 WHERE start = \"19\"", "question": "What is the finish value for a start of 19?", "context": "CREATE TABLE table_name_67 (finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT city FROM table_name_84 WHERE stadium = \"naghsh jahan\"", "question": "where is the naghsh jahan stadium?", "context": "CREATE TABLE table_name_84 (city VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT city FROM table_name_43 WHERE past_season = \"n/a\"", "question": "what city has a past season of n/a?", "context": "CREATE TABLE table_name_43 (city VARCHAR, past_season VARCHAR)"}, {"answer": "SELECT city FROM table_name_74 WHERE team = \"pegah\"", "question": "where is the pegah team located?", "context": "CREATE TABLE table_name_74 (city VARCHAR, team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_8 WHERE past_season = \"7th\"", "question": "what stadium has a prior record of 7th?", "context": "CREATE TABLE table_name_8 (stadium VARCHAR, past_season VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_54 WHERE lane = 4 AND time = \"1:11.58\"", "question": "What is the Nationality on the swimmer in Lane 4 with a Time of 1:11.58?", "context": "CREATE TABLE table_name_54 (nationality VARCHAR, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_97 WHERE heat > 2 AND time = \"1:10.57\"", "question": "What is the lowest numbered Lane with a Time of 1:10.57 and Heat larger than 2?", "context": "CREATE TABLE table_name_97 (lane INTEGER, heat VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_88 WHERE name = \"smiljana marinovi\u0107\"", "question": "What is the Heat for Smiljana Marinovi\u0107?", "context": "CREATE TABLE table_name_88 (heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_62 WHERE heat = 4 AND name = \"byun hye-young\"", "question": "In heat 4, what is Byun Hye-young's Nationality?", "context": "CREATE TABLE table_name_62 (nationality VARCHAR, heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT kind_of_the_song FROM table_name_66 WHERE singer = \"miriam yeung\"", "question": "Which type of song did miriam yeung sing?", "context": "CREATE TABLE table_name_66 (kind_of_the_song VARCHAR, singer VARCHAR)"}, {"answer": "SELECT kind_of_the_song FROM table_name_50 WHERE number > 8 AND name_of_the_song = \"\u5be6\u60c5\"", "question": "What type of song is larger than 8 and named \u5be6\u60c5?", "context": "CREATE TABLE table_name_50 (kind_of_the_song VARCHAR, number VARCHAR, name_of_the_song VARCHAR)"}, {"answer": "SELECT name_of_the_song FROM table_name_75 WHERE kind_of_the_song = \"ending theme\" AND singer = \"miriam yeung\"", "question": "Which song has a ending theme, and is sung by miriam yeung?", "context": "CREATE TABLE table_name_75 (name_of_the_song VARCHAR, kind_of_the_song VARCHAR, singer VARCHAR)"}, {"answer": "SELECT number FROM table_name_68 WHERE name_of_the_song = \"\u5be6\u60c5\"", "question": "What is the number of the song named \u5be6\u60c5?", "context": "CREATE TABLE table_name_68 (number VARCHAR, name_of_the_song VARCHAR)"}, {"answer": "SELECT COUNT(start) FROM table_name_21 WHERE finish < 4", "question": "Name the total number of start when finish is less than 4", "context": "CREATE TABLE table_name_21 (start VARCHAR, finish INTEGER)"}, {"answer": "SELECT SUM(year) FROM table_name_68 WHERE start < 30", "question": "Name the sum of year when start is less than 30", "context": "CREATE TABLE table_name_68 (year INTEGER, start INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_name_59 WHERE start > 2", "question": "Name the most year with start more than 2", "context": "CREATE TABLE table_name_59 (year INTEGER, start INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_name_9 WHERE start < 2", "question": "Name the most year with start less than 2", "context": "CREATE TABLE table_name_9 (year INTEGER, start INTEGER)"}, {"answer": "SELECT year FROM table_name_78 WHERE start = 32", "question": "Name the year when start was 32", "context": "CREATE TABLE table_name_78 (year VARCHAR, start VARCHAR)"}, {"answer": "SELECT MAX(finish) FROM table_name_9 WHERE year = 2006", "question": "Name the most finish for 2006", "context": "CREATE TABLE table_name_9 (finish INTEGER, year VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_25 WHERE visitor = \"detroit\" AND record = \"36\u201313\u20135\"", "question": "What was the total attendance at games when Detroit was the visiting team and the record was 36\u201313\u20135?", "context": "CREATE TABLE table_name_25 (attendance VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT entered_office FROM table_name_2 WHERE first_minister = \"henry mcleish\"", "question": "When did first minister Henry Mcleish enter office?", "context": "CREATE TABLE table_name_2 (entered_office VARCHAR, first_minister VARCHAR)"}, {"answer": "SELECT name FROM table_name_86 WHERE left_office = \"14 november 2006\"", "question": "What is the name of the minister that left office on 14 November 2006?", "context": "CREATE TABLE table_name_86 (name VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT name FROM table_name_45 WHERE party = \"minister for community safety and legal affairs\"", "question": "What is the name of the minister from the party of minister for community safety and legal affairs?", "context": "CREATE TABLE table_name_45 (name VARCHAR, party VARCHAR)"}, {"answer": "SELECT name FROM table_name_80 WHERE entered_office = \"entered office\"", "question": "What is the name of the minister who has an entered office of entered office?", "context": "CREATE TABLE table_name_80 (name VARCHAR, entered_office VARCHAR)"}, {"answer": "SELECT party FROM table_name_3 WHERE left_office = \"26 november 2002\"", "question": "What is the party of the minister who left office on 26 November 2002?", "context": "CREATE TABLE table_name_3 (party VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT party FROM table_name_59 WHERE name = \"richard simpson\"", "question": "What is the party of Richard Simpson?", "context": "CREATE TABLE table_name_59 (party VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(spectators) FROM table_name_66 WHERE time___cest__ > 20.05 AND team__number2 = \"estonia\"", "question": "Name the sum of spectators for time more than 20.05 and team #2 of estonia", "context": "CREATE TABLE table_name_66 (spectators INTEGER, time___cest__ VARCHAR, team__number2 VARCHAR)"}, {"answer": "SELECT spectators FROM table_name_57 WHERE date = \"11 november 2011\"", "question": "Name the spectators for 11 november 2011", "context": "CREATE TABLE table_name_57 (spectators VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_68 WHERE record = \"54-39\"", "question": "Which loss has a Record of 54-39?", "context": "CREATE TABLE table_name_68 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_73 WHERE record = \"54-38\"", "question": "Which opponent has a Record of 54-38?", "context": "CREATE TABLE table_name_73 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_35 WHERE date = \"july 7\"", "question": "Which opponent has a date of July 7?", "context": "CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_54 WHERE loss = \"eichhorn (8-5)\"", "question": "Which record has a Loss of eichhorn (8-5)?", "context": "CREATE TABLE table_name_54 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_81 WHERE home = \"san jose\"", "question": "What is the average attendance San Jose home games?", "context": "CREATE TABLE table_name_81 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT record FROM table_name_13 WHERE loss = \"spillner (1-8)\"", "question": "What was the record at the game that had a loss of Spillner (1-8)?", "context": "CREATE TABLE table_name_13 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_48 WHERE loss = \"williams (1-1)\"", "question": "What was the score of the game that had a loss of Williams (1-1)?", "context": "CREATE TABLE table_name_48 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_7 WHERE record = \"63-52\"", "question": "What was the loss of the game that had a record of 63-52?", "context": "CREATE TABLE table_name_7 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_90 WHERE record = \"11-10\"", "question": "What was the score when the Washington Nationals had a record of 11-10?", "context": "CREATE TABLE table_name_90 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_24 WHERE record = \"8-4\"", "question": "Who was the opponent when the Washington Nationals had a record of 8-4?", "context": "CREATE TABLE table_name_24 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_54 WHERE score = \"7-3\" AND loss = \"worrell (0-1)\"", "question": "How many people were in attendance when the Washington Nationals had a score of 7-3 and a loss of Worrell (0-1)?", "context": "CREATE TABLE table_name_54 (attendance VARCHAR, score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT qual_2 FROM table_name_40 WHERE name = \"katherine legge\"", "question": "Name the Qual 2 which has the name of katherine legge", "context": "CREATE TABLE table_name_40 (qual_2 VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_2 WHERE best = \"58.846\"", "question": "Name the team with best of 58.846", "context": "CREATE TABLE table_name_2 (team VARCHAR, best VARCHAR)"}, {"answer": "SELECT name FROM table_name_46 WHERE best = \"58.403\"", "question": "Tell me the name with best of 58.403", "context": "CREATE TABLE table_name_46 (name VARCHAR, best VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_13 WHERE name = \"jan heylen\"", "question": "Tell me the qual 1 for jan heylen", "context": "CREATE TABLE table_name_13 (qual_1 VARCHAR, name VARCHAR)"}, {"answer": "SELECT loss FROM table_name_8 WHERE attendance = \"24,406\"", "question": "When the attendance was 24,406 who lost?", "context": "CREATE TABLE table_name_8 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE record = \"17-25\"", "question": "Which of the opponents has a record of 17-25?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_32 WHERE date = \"may 12\"", "question": "Who was the opponent that played on may 12?", "context": "CREATE TABLE table_name_32 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_18 WHERE league_position = \"1st\" AND opponents = \"west ham united\"", "question": "When in the 1st league position, how many people watch as they faced West Ham United?", "context": "CREATE TABLE table_name_18 (attendance INTEGER, league_position VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_29 WHERE nation = \"uganda\" AND total > 2", "question": "What is the average bronze medals of Uganda's swimmers when they earned over 2 medals?", "context": "CREATE TABLE table_name_29 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_95 WHERE bronze < 3 AND gold < 1 AND total = 1 AND nation = \"ireland\"", "question": "What is the highest number of silver medals that Ireland earned when they scored less than 3 bronze medals and earned 1 medal?", "context": "CREATE TABLE table_name_95 (silver INTEGER, nation VARCHAR, total VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_25 WHERE gold = 1 AND nation = \"djibouti\" AND total < 3", "question": "What's the highest silver and 1 gold that the nation of djibouti received with a total less than 3?", "context": "CREATE TABLE table_name_25 (silver INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_73 WHERE rank > 17 AND gold > 0", "question": "What's the total number that had a rank larger than 17 and a gold greater than 0?", "context": "CREATE TABLE table_name_73 (total VARCHAR, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_44 WHERE week < 2", "question": "Which opponent was faced before week 2?", "context": "CREATE TABLE table_name_44 (opponent VARCHAR, week INTEGER)"}, {"answer": "SELECT MIN(total) FROM table_name_30 WHERE year_s__won = \"1978\"", "question": "Name the least total for 1978 years won", "context": "CREATE TABLE table_name_30 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT total FROM table_name_24 WHERE finish = \"t22\"", "question": "Name the total with finish of t22", "context": "CREATE TABLE table_name_24 (total VARCHAR, finish VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_47 WHERE year_s__won = \"1975\"", "question": "Name the average total for years won of 1975", "context": "CREATE TABLE table_name_47 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT finish FROM table_name_26 WHERE player = \"lou graham\"", "question": "Name the finish with player lou graham", "context": "CREATE TABLE table_name_26 (finish VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_7 WHERE finish = \"t45\"", "question": "Name the total number of total with finish of t45", "context": "CREATE TABLE table_name_7 (total VARCHAR, finish VARCHAR)"}, {"answer": "SELECT year FROM table_name_73 WHERE league = \"malaysian super league\" AND malaysia_cup = \"group stage\"", "question": "What year was the League the malaysian super league, and a Malaysia Cup of group stage?", "context": "CREATE TABLE table_name_73 (year VARCHAR, league VARCHAR, malaysia_cup VARCHAR)"}, {"answer": "SELECT position FROM table_name_85 WHERE league = \"malaysian super league\" AND year = \"2011\"", "question": "What is the position when the League is the malaysian super league, and a Year of 2011?", "context": "CREATE TABLE table_name_85 (position VARCHAR, league VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_75 WHERE position = \"6/13\"", "question": "What year was the position 6/13?", "context": "CREATE TABLE table_name_75 (year VARCHAR, position VARCHAR)"}, {"answer": "SELECT year FROM table_name_38 WHERE league = \"malaysian super league\" AND position = \"10/14\"", "question": "What year was the League of malaysian super league, and the Position was 10/14?", "context": "CREATE TABLE table_name_38 (year VARCHAR, league VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(roll) FROM table_name_48 WHERE area = \"featherston\" AND authority = \"integrated\"", "question": "tell me the average roll for the featherston area and integrated authority.", "context": "CREATE TABLE table_name_48 (roll INTEGER, area VARCHAR, authority VARCHAR)"}, {"answer": "SELECT authority FROM table_name_43 WHERE decile < 6 AND roll < 65", "question": "tell me the authority that has a decile less than 6 and roll less than 65.", "context": "CREATE TABLE table_name_43 (authority VARCHAR, decile VARCHAR, roll VARCHAR)"}, {"answer": "SELECT AVG(roll) FROM table_name_83 WHERE name = \"pirinoa school\"", "question": "tell me the average roll for pirinoa school.", "context": "CREATE TABLE table_name_83 (roll INTEGER, name VARCHAR)"}, {"answer": "SELECT COUNT(decile) FROM table_name_90 WHERE roll = 251", "question": "tell me the total number of decile with a roll showing 251.", "context": "CREATE TABLE table_name_90 (decile VARCHAR, roll VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE year = 2004", "question": "What is the score for 2004?", "context": "CREATE TABLE table_name_69 (score VARCHAR, year VARCHAR)"}, {"answer": "SELECT location FROM table_name_72 WHERE champion = \"brigham young-hawaii\" AND defeated = \"western oregon\" AND score = \"3-0 (15-5, 15-9, 15-6)\"", "question": "what is the location when the champion is brigham young-hawaii, defeated is western oregon and the score is 3-0 (15-5, 15-9, 15-6)?", "context": "CREATE TABLE table_name_72 (location VARCHAR, score VARCHAR, champion VARCHAR, defeated VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_96 WHERE location = \"san diego, california\" AND defeated = \"houston baptist (texas)\"", "question": "what is the year when the location is san diego, california and defeated is houston baptist (texas)?", "context": "CREATE TABLE table_name_96 (year VARCHAR, location VARCHAR, defeated VARCHAR)"}, {"answer": "SELECT gross_mw FROM table_name_56 WHERE operation_start = \"2015\"", "question": "Operation start of 2015 has what gross mw?", "context": "CREATE TABLE table_name_56 (gross_mw VARCHAR, operation_start VARCHAR)"}, {"answer": "SELECT operation_start FROM table_name_44 WHERE gross_mw = \"220\" AND unit = \"kakrapar 1\"", "question": "Gross MW of 220, and a Unit of kakrapar 1 involves what operation start?", "context": "CREATE TABLE table_name_44 (operation_start VARCHAR, gross_mw VARCHAR, unit VARCHAR)"}, {"answer": "SELECT gross_mw FROM table_name_94 WHERE type = \"phase ii\"", "question": "Type of phase ii has what gross mw?", "context": "CREATE TABLE table_name_94 (gross_mw VARCHAR, type VARCHAR)"}, {"answer": "SELECT type FROM table_name_61 WHERE construction_start = \"phase i\"", "question": "Construction start of phase i includes what type?", "context": "CREATE TABLE table_name_61 (type VARCHAR, construction_start VARCHAR)"}, {"answer": "SELECT unit FROM table_name_75 WHERE construction_start = \"1 december 1984\"", "question": "Construction start of 1 december 1984 is what unit?", "context": "CREATE TABLE table_name_75 (unit VARCHAR, construction_start VARCHAR)"}, {"answer": "SELECT operation_start FROM table_name_51 WHERE construction_start = \"phase ii\"", "question": "Construction start of phase ii has what operation start?", "context": "CREATE TABLE table_name_51 (operation_start VARCHAR, construction_start VARCHAR)"}, {"answer": "SELECT ungegn FROM table_name_70 WHERE word_form = \"\u178f\u17d2\u179a\u17b8\u1791\u179f\"", "question": "what's the ungen for \u178f\u17d2\u179a\u17b8\u1791\u179f?", "context": "CREATE TABLE table_name_70 (ungegn VARCHAR, word_form VARCHAR)"}, {"answer": "SELECT notes FROM table_name_59 WHERE khmer = \"\u17e2\u17e8\"", "question": "what notes have the khmer \u17e2\u17e8?", "context": "CREATE TABLE table_name_59 (notes VARCHAR, khmer VARCHAR)"}, {"answer": "SELECT ungegn FROM table_name_23 WHERE khmer = \"\u17e1\u17e0\u17e0\"", "question": "what's the ungegn for the \u17e1\u17e0\u17e0 khmer?", "context": "CREATE TABLE table_name_23 (ungegn VARCHAR, khmer VARCHAR)"}, {"answer": "SELECT MAX(population___2010__) FROM table_name_22 WHERE territory = \"puerto rico\"", "question": "What was the population of Puerto Rico in 2010?", "context": "CREATE TABLE table_name_22 (population___2010__ INTEGER, territory VARCHAR)"}, {"answer": "SELECT territory FROM table_name_37 WHERE acquired > 1899 AND capital = \"saipan\"", "question": "What is the territory that was acquired past 1899 and has a capital of saipan?", "context": "CREATE TABLE table_name_37 (territory VARCHAR, acquired VARCHAR, capital VARCHAR)"}, {"answer": "SELECT termination_of_mission FROM table_name_76 WHERE appointed_by = \"franklin pierce\"", "question": "Name the termination of mission for appointed by of franklin pierce", "context": "CREATE TABLE table_name_76 (termination_of_mission VARCHAR, appointed_by VARCHAR)"}, {"answer": "SELECT representative FROM table_name_45 WHERE presentation_of_credentials = \"august 16, 1928\"", "question": "Name the representative with presentation of credentials of august 16, 1928", "context": "CREATE TABLE table_name_45 (representative VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT representative FROM table_name_65 WHERE appointed_by = \"george w. bush\" AND presentation_of_credentials = \"9 november 2007\"", "question": "Name the representative appointed by george w. bush with presentation of credentials 9 november 2007", "context": "CREATE TABLE table_name_65 (representative VARCHAR, appointed_by VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT title FROM table_name_21 WHERE representative = \"edward h. strobel\"", "question": "Name the title with representative edward h. strobel", "context": "CREATE TABLE table_name_21 (title VARCHAR, representative VARCHAR)"}, {"answer": "SELECT country FROM table_name_43 WHERE money___$__ = 600", "question": "Which Country that has 600?", "context": "CREATE TABLE table_name_43 (country VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_41 WHERE player = \"macdonald smith\"", "question": "What is the to par that has macdonald smith as the player?", "context": "CREATE TABLE table_name_41 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_9 WHERE place = \"t6\" AND score = 75 - 70 = 145", "question": "Which country has t6 as a place and 75-70=145 as the score?", "context": "CREATE TABLE table_name_9 (country VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_46 WHERE player = \"jimmy hines\"", "question": "What is the to par that has jimmy hines as the player?", "context": "CREATE TABLE table_name_46 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE place = \"t3\"", "question": "Which score has t3 as the place?", "context": "CREATE TABLE table_name_27 (score VARCHAR, place VARCHAR)"}, {"answer": "SELECT place FROM table_name_10 WHERE player = \"horton smith\"", "question": "Which place has horton smith as the player?", "context": "CREATE TABLE table_name_10 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_88 WHERE country = \"united states\" AND player = \"craig wood\"", "question": "Which place has United States as the country and Craig Wood as the player?", "context": "CREATE TABLE table_name_88 (place VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_94 WHERE 2007 = \"a\"", "question": "What was the 2013 finish for the tournament that had a 2007 finish of A?", "context": "CREATE TABLE table_name_94 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_62 WHERE tournament = \"us open\"", "question": "What was the 2012 finish in the US Open?", "context": "CREATE TABLE table_name_62 (tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_42 WHERE 2010 = \"4r\"", "question": "Which tournament had a 2010 finish of 4R?", "context": "CREATE TABLE table_name_42 (tournament VARCHAR)"}, {"answer": "SELECT qual FROM table_name_70 WHERE rank = \"29\" AND year = \"1957\"", "question": "What is the qualification for rank of 29 in 1957?", "context": "CREATE TABLE table_name_70 (qual VARCHAR, rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT place FROM table_name_46 WHERE to_par = \"+3\" AND score = 74 - 73 = 147", "question": "What is the Place when the To par was +3 and Score was 74-73=147?", "context": "CREATE TABLE table_name_46 (place VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_62 WHERE to_par = \"e\"", "question": "When the To par is E, what is the Score?", "context": "CREATE TABLE table_name_62 (score VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE player = \"lloyd mangrum\"", "question": "What was Lloyd Mangrum's Score?", "context": "CREATE TABLE table_name_63 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_66 WHERE player = \"dave douglas\"", "question": "What Dave Douglas' Place?", "context": "CREATE TABLE table_name_66 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_21 WHERE player = \"chick harbert\"", "question": "What's Chick Harbert's To par?", "context": "CREATE TABLE table_name_21 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_67 WHERE country = \"united states\" AND to_par = \"+4\" AND score = 71 - 77 = 148", "question": "What United States Player has a To par of +4 and a Score of 71-77=148?", "context": "CREATE TABLE table_name_67 (player VARCHAR, country VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_69 WHERE country = \"south korea\"", "question": "What is South Korea's to par value?", "context": "CREATE TABLE table_name_69 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(money___) AS $__ FROM table_name_86 WHERE player = \"tiger woods\"", "question": "What are Tiger Woods' average earnings?", "context": "CREATE TABLE table_name_86 (money___ INTEGER, player VARCHAR)"}, {"answer": "SELECT method FROM table_name_78 WHERE round < 3 AND record = \"4-2\"", "question": "What's the method for a record of 4-2 and round smaller than 3?", "context": "CREATE TABLE table_name_78 (method VARCHAR, round VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_99 WHERE round = 3 AND opponent = \"james zikic\"", "question": "Where's the location for the opponent James Zikic and 3 rounds?", "context": "CREATE TABLE table_name_99 (location VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT spouse FROM table_name_83 WHERE name = \"louise of hesse-kassel\"", "question": "Name the spouse for louise of hesse-kassel", "context": "CREATE TABLE table_name_83 (spouse VARCHAR, name VARCHAR)"}, {"answer": "SELECT became_consort FROM table_name_31 WHERE spouse = \"christian ix\"", "question": "Name the became consort for christian ix spouse", "context": "CREATE TABLE table_name_31 (became_consort VARCHAR, spouse VARCHAR)"}, {"answer": "SELECT marriage FROM table_name_6 WHERE ceased_to_be_consort = \"29 september 1898\"", "question": "Name the marriagefor ceased to be consort of 29 september 1898", "context": "CREATE TABLE table_name_6 (marriage VARCHAR, ceased_to_be_consort VARCHAR)"}, {"answer": "SELECT name FROM table_name_71 WHERE spouse = \"frederick ix\"", "question": "Tell me the name of the person married to frederick ix", "context": "CREATE TABLE table_name_71 (name VARCHAR, spouse VARCHAR)"}, {"answer": "SELECT birth FROM table_name_8 WHERE marriage = \"24 may 1935\"", "question": "Name the birth of the person married 24 may 1935", "context": "CREATE TABLE table_name_8 (birth VARCHAR, marriage VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_73 WHERE lane = 6", "question": "What was the rank of the player in lane 6?", "context": "CREATE TABLE table_name_73 (rank INTEGER, lane VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_11 WHERE laps = 6", "question": "Name the average year with Laps of 6", "context": "CREATE TABLE table_name_11 (year INTEGER, laps VARCHAR)"}, {"answer": "SELECT language FROM table_name_64 WHERE number = \"553 633\"", "question": "Which Language has a Number of 553 633?", "context": "CREATE TABLE table_name_64 (language VARCHAR, number VARCHAR)"}, {"answer": "SELECT males FROM table_name_76 WHERE percentage___percentage_ = \"0.42\"", "question": "Which Males have a percentage of 0.42?", "context": "CREATE TABLE table_name_76 (males VARCHAR, percentage___percentage_ VARCHAR)"}, {"answer": "SELECT language FROM table_name_69 WHERE percentage___percentage_ = \"6.49\"", "question": "What's the Language with a percentage of 6.49?", "context": "CREATE TABLE table_name_69 (language VARCHAR, percentage___percentage_ VARCHAR)"}, {"answer": "SELECT number FROM table_name_33 WHERE language = \"other\"", "question": "What Number has a Language listed as other?", "context": "CREATE TABLE table_name_33 (number VARCHAR, language VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_28 WHERE total > 3 AND bronze < 3 AND nation = \"belarus\" AND silver > 2", "question": "what is the highest gold count when total is more than 3, bronze less than 3, and nation of belarus with silver count more than 2?", "context": "CREATE TABLE table_name_28 (gold INTEGER, silver VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_82 WHERE silver < 0", "question": "with silver count at 0, what is the lowest bronze count?", "context": "CREATE TABLE table_name_82 (bronze INTEGER, silver INTEGER)"}, {"answer": "SELECT MIN(gold) FROM table_name_68 WHERE total < 3 AND silver > 1", "question": "what is the gold count with total less than 3 and more than 1 silver?", "context": "CREATE TABLE table_name_68 (gold INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT builder FROM table_name_83 WHERE length = \"42.8 m\" AND delivery = 2007", "question": "Who built the ship that is 42.8 m long and was delivered in 2007?", "context": "CREATE TABLE table_name_83 (builder VARCHAR, length VARCHAR, delivery VARCHAR)"}, {"answer": "SELECT human_resources_ & _operations FROM table_name_14 WHERE year = \"2003-2004\"", "question": "Who was the Human Resources & Operations person between 2003-2004?", "context": "CREATE TABLE table_name_14 (human_resources_ VARCHAR, _operations VARCHAR, year VARCHAR)"}, {"answer": "SELECT local_affairs FROM table_name_9 WHERE human_resources_ & _operations = \"n. charles hamilton\"", "question": "Who was in local affairs when the Human Resources & Operations was N. Charles Hamilton?", "context": "CREATE TABLE table_name_9 (local_affairs VARCHAR, human_resources_ VARCHAR, _operations VARCHAR)"}, {"answer": "SELECT human_resources_ & _operations FROM table_name_56 WHERE academic_ & _university_affairs = \"david hornsby\"", "question": "Who was in Human Resources & Operations when David Hornsby was in Academic & University Affairs?", "context": "CREATE TABLE table_name_56 (human_resources_ VARCHAR, _operations VARCHAR, academic_ VARCHAR, _university_affairs VARCHAR)"}, {"answer": "SELECT external_affairs FROM table_name_81 WHERE human_resources_ & _operations = \"jakki doyle\"", "question": "Who was in external affairs when Jakki Doyle was in Human Resources & Operations?", "context": "CREATE TABLE table_name_81 (external_affairs VARCHAR, human_resources_ VARCHAR, _operations VARCHAR)"}, {"answer": "SELECT local_affairs FROM table_name_9 WHERE year = \"2012-2013\"", "question": "Who was in local affairs in 2012-2013?", "context": "CREATE TABLE table_name_9 (local_affairs VARCHAR, year VARCHAR)"}, {"answer": "SELECT academic_ & _university_affairs FROM table_name_72 WHERE local_affairs = \"andrew langille\"", "question": "Who was in Academic & University Affairs when Andrew Langille  was in local affairs?", "context": "CREATE TABLE table_name_72 (academic_ VARCHAR, _university_affairs VARCHAR, local_affairs VARCHAR)"}, {"answer": "SELECT perth FROM table_name_51 WHERE gold_coast = \"yes\" AND adelaide = \"yes\" AND auckland = \"no\"", "question": "Which Perth's gold coast and Adelaide were yes when Auckland was no?", "context": "CREATE TABLE table_name_51 (perth VARCHAR, auckland VARCHAR, gold_coast VARCHAR, adelaide VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_59 WHERE gold_coast = \"yes\" AND adelaide = \"no\" AND sydney = \"yes\"", "question": "Which Melbourne had a gold coast and sydney which were yes, but an adelaide that was no?", "context": "CREATE TABLE table_name_59 (melbourne VARCHAR, sydney VARCHAR, gold_coast VARCHAR, adelaide VARCHAR)"}, {"answer": "SELECT adelaide FROM table_name_20 WHERE melbourne = \"yes\" AND auckland = \"no\" AND perth = \"yes\"", "question": "Which Adelaide's Melbourne and Perth were yes when Auckland was no?", "context": "CREATE TABLE table_name_20 (adelaide VARCHAR, perth VARCHAR, melbourne VARCHAR, auckland VARCHAR)"}, {"answer": "SELECT sydney FROM table_name_94 WHERE melbourne = \"no\" AND auckland = \"yes\"", "question": "Which Sydney's Melbourne was no, when Auckland was yes?", "context": "CREATE TABLE table_name_94 (sydney VARCHAR, melbourne VARCHAR, auckland VARCHAR)"}, {"answer": "SELECT sydney FROM table_name_47 WHERE gold_coast = \"no\" AND adelaide = \"no\" AND melbourne = \"no\" AND auckland = \"no\"", "question": "Which Syndney's Gold coast, Adelaide, Melbourne, and Auckland were all no?", "context": "CREATE TABLE table_name_47 (sydney VARCHAR, auckland VARCHAR, melbourne VARCHAR, gold_coast VARCHAR, adelaide VARCHAR)"}, {"answer": "SELECT adelaide FROM table_name_30 WHERE melbourne = \"no\" AND sydney = \"no\" AND gold_coast = \"no\"", "question": "Which Adelaide's Melbourne, Sydney, and Gold Coast were all no?", "context": "CREATE TABLE table_name_30 (adelaide VARCHAR, gold_coast VARCHAR, melbourne VARCHAR, sydney VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE type = \"plain stage\"", "question": "Name the date which has type of plain stage", "context": "CREATE TABLE table_name_2 (date VARCHAR, type VARCHAR)"}, {"answer": "SELECT distance FROM table_name_3 WHERE course = \"vittorio veneto to marina romea\"", "question": "Name the distance for Course of vittorio veneto to marina romea", "context": "CREATE TABLE table_name_3 (distance VARCHAR, course VARCHAR)"}, {"answer": "SELECT partner FROM table_name_52 WHERE surface = \"grass\"", "question": "Who was the partner that played a match on a grass court?", "context": "CREATE TABLE table_name_52 (partner VARCHAR, surface VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE partner = \"mardy fish\"", "question": "What was the score of the match in which mardy fish was the partner?", "context": "CREATE TABLE table_name_72 (score VARCHAR, partner VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_84 WHERE surface = \"hard\" AND outcome = \"runner-up\"", "question": "Who were the opponents in the match that was played on a hard court and had a runner-up outcome?", "context": "CREATE TABLE table_name_84 (opponents VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT time FROM table_name_86 WHERE opponent = \"phil collins\"", "question": "What is the time when the opponent is phil collins?", "context": "CREATE TABLE table_name_86 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_22 WHERE method = \"tko (punches)\" AND time = \"0:40\"", "question": "what is the total number of rounds when method is tko (punches) and time is 0:40?", "context": "CREATE TABLE table_name_22 (round VARCHAR, method VARCHAR, time VARCHAR)"}, {"answer": "SELECT method FROM table_name_5 WHERE time = \"0:51\"", "question": "what is the method when the time is 0:51?", "context": "CREATE TABLE table_name_5 (method VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_15 WHERE event = \"bellator 89\"", "question": "what is the time when the event is bellator 89?", "context": "CREATE TABLE table_name_15 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT AVG(debt_as__percentage_of_value) FROM table_name_7 WHERE _percentage_change_on_year = \"62\" AND operating_income__$m_ > -16", "question": "Name the average debt as % of value for operating income more than -16 and % change on year being 62", "context": "CREATE TABLE table_name_7 (debt_as__percentage_of_value INTEGER, _percentage_change_on_year VARCHAR, operating_income__$m_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_12 WHERE debt_as__percentage_of_value < 86 AND _percentage_change_on_year = \"21\"", "question": "Name the country where % change on year is 21 and value is less than 86", "context": "CREATE TABLE table_name_12 (country VARCHAR, debt_as__percentage_of_value VARCHAR, _percentage_change_on_year VARCHAR)"}, {"answer": "SELECT COUNT(revenue__) AS $m_ FROM table_name_21 WHERE country = \"italy\" AND team = \"internazionale\" AND operating_income__$m_ < 27", "question": "Name the total number of revenue for italy with team of internazionale with operating income less than 27", "context": "CREATE TABLE table_name_21 (revenue__ VARCHAR, operating_income__$m_ VARCHAR, country VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(revenue__) AS $m_ FROM table_name_92 WHERE operating_income__$m_ > 27 AND team = \"hamburg\" AND debt_as__percentage_of_value < 0", "question": "Name the most revenue for operating income more than 27 for hamburg and debt as % of value less than 0", "context": "CREATE TABLE table_name_92 (revenue__ INTEGER, debt_as__percentage_of_value VARCHAR, operating_income__$m_ VARCHAR, team VARCHAR)"}, {"answer": "SELECT result FROM table_name_29 WHERE h___a = \"h\" AND round = \"r6 replay\"", "question": "What is the result for an H/A of H and a round value of R6 replay?", "context": "CREATE TABLE table_name_29 (result VARCHAR, h___a VARCHAR, round VARCHAR)"}, {"answer": "SELECT kick_off FROM table_name_23 WHERE round = \"r4\"", "question": "What was the kickoff date for the round value of R4?", "context": "CREATE TABLE table_name_23 (kick_off VARCHAR, round VARCHAR)"}, {"answer": "SELECT country FROM table_name_22 WHERE player = \"henry picard\"", "question": "What country was Henry Picard from?", "context": "CREATE TABLE table_name_22 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(inversions) FROM table_name_89 WHERE opened = \"april 20, 2002\"", "question": "Name the sum of inversions for opened of april 20, 2002", "context": "CREATE TABLE table_name_89 (inversions INTEGER, opened VARCHAR)"}, {"answer": "SELECT opened FROM table_name_59 WHERE country = \"spain\"", "question": "Name the opened for spain", "context": "CREATE TABLE table_name_59 (opened VARCHAR, country VARCHAR)"}, {"answer": "SELECT status FROM table_name_29 WHERE park = \"six flags new england\"", "question": "Name the status for six flags new england", "context": "CREATE TABLE table_name_29 (status VARCHAR, park VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_30 WHERE money___\u00a3__ = \"200,000\" AND country = \"australia\"", "question": "Name the to par with money of 200,000 for australia", "context": "CREATE TABLE table_name_30 (to_par VARCHAR, money___\u00a3__ VARCHAR, country VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_73 WHERE country = \"ireland\"", "question": "Name the money for ireland", "context": "CREATE TABLE table_name_73 (money___\u00a3__ VARCHAR, country VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_56 WHERE player = \"p\u00e1draig harrington\"", "question": "Name the money for p\u00e1draig harrington", "context": "CREATE TABLE table_name_56 (money___\u00a3__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_84 WHERE score = 69 - 73 - 68 - 70 = 280", "question": "Name the to par for score of 69-73-68-70=280", "context": "CREATE TABLE table_name_84 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___\u00a3__ FROM table_name_49 WHERE to_par = \"-6\"", "question": "Name the money for the to par of -6", "context": "CREATE TABLE table_name_49 (money___\u00a3__ VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT term_end FROM table_name_85 WHERE party = \"centre party\"", "question": "On what date or dates did the term with the Centre Party end?", "context": "CREATE TABLE table_name_85 (term_end VARCHAR, party VARCHAR)"}, {"answer": "SELECT term_end FROM table_name_72 WHERE governments = \"27\" AND minister = \"tzachi hanegbi\"", "question": "When did the term end for the term that had government 27 and Minister Tzachi Hanegbi?", "context": "CREATE TABLE table_name_72 (term_end VARCHAR, governments VARCHAR, minister VARCHAR)"}, {"answer": "SELECT location___state FROM table_name_5 WHERE circuit = \"wanneroo raceway\"", "question": "What is the location/state of the race on the Wanneroo raceway?", "context": "CREATE TABLE table_name_5 (location___state VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT location___state FROM table_name_60 WHERE race_title = \"launceston\"", "question": "What is the location/state of the Launceston race?", "context": "CREATE TABLE table_name_60 (location___state VARCHAR, race_title VARCHAR)"}, {"answer": "SELECT team FROM table_name_55 WHERE winner = \"dick johnson\"", "question": "What is the team of winner Dick Johnson?", "context": "CREATE TABLE table_name_55 (team VARCHAR, winner VARCHAR)"}, {"answer": "SELECT race_title FROM table_name_8 WHERE team = \"jps team bmw\" AND circuit = \"oran park raceway\"", "question": "What is the race title of the Oran Park raceway circuit with team jps team bmw?", "context": "CREATE TABLE table_name_8 (race_title VARCHAR, team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT COUNT(population__hervey_bay_) FROM table_name_94 WHERE population__woocoo_ < 640 AND population__maryborough_ < 19 OFFSET 257", "question": "Name the total number of population hervey bay with population woocoo less than 640 and population of maryborough less than 19,257", "context": "CREATE TABLE table_name_94 (population__hervey_bay_ VARCHAR, population__woocoo_ VARCHAR, population__maryborough_ VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_20 WHERE rider = \"shoya tomizawa\"", "question": "Which manufacturer made Shoya Tomizawa's motorcycle?", "context": "CREATE TABLE table_name_20 (manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_24 WHERE time_retired = \"+37.351\"", "question": "How many laps were ridden in the race that had a Time/Retired of +37.351?", "context": "CREATE TABLE table_name_24 (laps VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_16 WHERE rider = \"mattia pasini\"", "question": "How many laps did Mattia Pasini ride?", "context": "CREATE TABLE table_name_16 (laps INTEGER, rider VARCHAR)"}, {"answer": "SELECT position FROM table_name_58 WHERE appearances = 244 AND leeds_career = \"1981\u20131989\"", "question": "What position does the player who has made 244 appearances with a Leeds career of 1981\u20131989 play?", "context": "CREATE TABLE table_name_58 (position VARCHAR, appearances VARCHAR, leeds_career VARCHAR)"}, {"answer": "SELECT position FROM table_name_56 WHERE appearances > 167 AND nationality = \"wales\" AND goals > 0 AND leeds_career = \"1977\u20131982\"", "question": "What position does the Wales player who made more than 167 appearances, had more than 0 goals, and had a Leeds career from 1977\u20131982 play?", "context": "CREATE TABLE table_name_56 (position VARCHAR, leeds_career VARCHAR, goals VARCHAR, appearances VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_68 WHERE leeds_career = \"1960\u20131964\" AND appearances < 120", "question": "What is the average number of goals for a player who had a Leeds career from 1960\u20131964 and made fewer than 120 appearances?", "context": "CREATE TABLE table_name_68 (goals INTEGER, leeds_career VARCHAR, appearances VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_15 WHERE 2005 = \"deandria hill\"", "question": "Who attended the school in 2008, that Deandria Hill attended in 2005?", "context": "CREATE TABLE table_name_15 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_70 WHERE 2005 = \"jasmine wilson\"", "question": "Who attended the school in 2006, that Jasmine Wilson attended in 2005?", "context": "CREATE TABLE table_name_70 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_60 WHERE 2007 = \"lakita hall\"", "question": "Who attended the school in 2009, that Lakita Hall attended in 2007?", "context": "CREATE TABLE table_name_60 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_20 WHERE 2008 = \"kiara spivey\"", "question": "Who attended the school in 2007, that Kiara Spivey attended in 2008?", "context": "CREATE TABLE table_name_20 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_32 WHERE 2007 = \"whitney powell\"", "question": "Who attended the school in 2006, that Whitney Powell attended in 2007?", "context": "CREATE TABLE table_name_32 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_42 WHERE 2006 = \"brikajdri wilson\"", "question": "Who attended the school in 2008, that Brikajdri Wilson attended in 2006?", "context": "CREATE TABLE table_name_42 (Id VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_85 WHERE lane > 5 AND name = \"elizabeth van welie\"", "question": "What is the lowest rank of a swimmer named Elizabeth Van Welie with a lane larger than 5?", "context": "CREATE TABLE table_name_85 (rank INTEGER, lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT rank FROM table_name_35 WHERE time = \"2:11.83\"", "question": "What is the rank of the swimmer with a time of 2:11.83?", "context": "CREATE TABLE table_name_35 (rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_17 WHERE time = \"2:07.57\" AND rank > 1", "question": "What is the lowest lane of a swimmer with a time of 2:07.57 and a rank larger than 1?", "context": "CREATE TABLE table_name_17 (lane INTEGER, time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_34 WHERE name = \"petria thomas\"", "question": "What is the rank of the swimmer named Petria Thomas?", "context": "CREATE TABLE table_name_34 (rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_56 WHERE group_position = \"3rd\"", "question": "How many people were in attendance when the group position was 3rd?", "context": "CREATE TABLE table_name_56 (attendance VARCHAR, group_position VARCHAR)"}, {"answer": "SELECT result_f___a FROM table_name_39 WHERE group_position = \"1st\" AND opponents = \"dynamo kyiv\"", "question": "What was the final score agains Dynamo Kyiv, when the group position was 1st?", "context": "CREATE TABLE table_name_39 (result_f___a VARCHAR, group_position VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_51 WHERE date = \"18 october 2000\"", "question": "What was the average attendance on 18 October 2000?", "context": "CREATE TABLE table_name_51 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT player FROM table_name_35 WHERE year_s__won = \"2007\"", "question": "In 2007, what player won player of the year?", "context": "CREATE TABLE table_name_35 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_45 WHERE player = \"mike weir\"", "question": "What year(s) did Mike Weir win player of the year?", "context": "CREATE TABLE table_name_45 (year_s__won VARCHAR, player VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_17 WHERE to_par = \"+14\"", "question": "The To par of +14 was won in what year(s)?", "context": "CREATE TABLE table_name_17 (year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT result FROM table_name_5 WHERE competition = \"1982 president's cup\"", "question": "What is the result when the competition is 1982 president's cup?", "context": "CREATE TABLE table_name_5 (result VARCHAR, competition VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE date = \"december 14, 1985\"", "question": "What is the score when the date is December 14, 1985?", "context": "CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_32 WHERE date = \"september 24, 1980\"", "question": "What is the venue when the date is September 24, 1980?", "context": "CREATE TABLE table_name_32 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE result = \"2-0\" AND score = \"1 goal\" AND competition = \"1980 afc asian cup\"", "question": "What is the venue when the result is 2-0, and the score is 1 goal, and the competition is 1980 afc asian cup?", "context": "CREATE TABLE table_name_60 (venue VARCHAR, competition VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_94 WHERE score = \"1 goal\" AND date = \"august 27, 1980\"", "question": "What is the venue when the score is 1 goal, and the date is August 27, 1980?", "context": "CREATE TABLE table_name_94 (venue VARCHAR, score VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_11 WHERE date = \"august 27, 1980\"", "question": "What is the result when the date is August 27, 1980?", "context": "CREATE TABLE table_name_11 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_15 WHERE entrant = \"bmw motorsport\"", "question": "What year shows the Entrant of bmw motorsport?", "context": "CREATE TABLE table_name_15 (year INTEGER, entrant VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_78 WHERE entrant = \"stp march engineering\"", "question": "Which Entrant of stp march engineering scored the lowest points?", "context": "CREATE TABLE table_name_78 (points INTEGER, entrant VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_64 WHERE chassis = \"march 762\" AND points > 0", "question": "What year had the Chassis of march 762 and more than 0 points?", "context": "CREATE TABLE table_name_64 (year VARCHAR, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_85 WHERE engine = \"bmw\" AND chassis = \"march 792\" AND year > 1979", "question": "Which engine of bmw had the lowest points and chassis of march 792 that is newer than 1979?", "context": "CREATE TABLE table_name_85 (points INTEGER, year VARCHAR, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT conference FROM table_name_74 WHERE city = \"boca raton\" AND school = \"florida atlantic university\"", "question": "Which Conference has a City of boca raton, and a School of florida atlantic university?", "context": "CREATE TABLE table_name_74 (conference VARCHAR, city VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_27 WHERE national_championships = 2 AND city = \"orlando\"", "question": "Which School has a National Championships of 2, and a City of orlando?", "context": "CREATE TABLE table_name_27 (school VARCHAR, national_championships VARCHAR, city VARCHAR)"}, {"answer": "SELECT school FROM table_name_21 WHERE national_championships < 2 AND nickname = \"lions\"", "question": "Which school has National Championships smaller than 2, and a Nickname of lions?", "context": "CREATE TABLE table_name_21 (school VARCHAR, national_championships VARCHAR, nickname VARCHAR)"}, {"answer": "SELECT win__percentage FROM table_name_95 WHERE 2011 = \"1r\" AND tournament = \"paris\"", "question": "What is the win percentage when 2011 shows 1r in the Paris tournament?", "context": "CREATE TABLE table_name_95 (win__percentage VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_32 WHERE 2011 = \"25\"", "question": "What shows for 2009 when 25 shows for 2011?", "context": "CREATE TABLE table_name_32 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_35 WHERE 2011 = \"1r\" AND tournament = \"us open\"", "question": "What shows for 2010 when 2011 is 1r at the US Open tournament?", "context": "CREATE TABLE table_name_35 (tournament VARCHAR)"}, {"answer": "SELECT win__percentage FROM table_name_74 WHERE 2010 = \"98\"", "question": "What is the win percentage when 2010 was 98?", "context": "CREATE TABLE table_name_74 (win__percentage VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_22 WHERE tournament = \"shanghai\"", "question": "What shows for 2008 at the Shanghai tournament?", "context": "CREATE TABLE table_name_22 (tournament VARCHAR)"}, {"answer": "SELECT win__percentage FROM table_name_19 WHERE 2012 = \"olympic games\"", "question": "What is the win percentage for the 2012 of olympic games?", "context": "CREATE TABLE table_name_19 (win__percentage VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE time = \"1:22\"", "question": "Who was the opponent in the match that lasted 1:22?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT round FROM table_name_36 WHERE opponent = \"jonatas novaes\"", "question": "Which round did the bout against Jonatas Novaes end in?", "context": "CREATE TABLE table_name_36 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(established) FROM table_name_53 WHERE championships < 1 AND club = \"erie seawolves\"", "question": "Name the average established for championships less than 1 and club of erie seawolves", "context": "CREATE TABLE table_name_53 (established INTEGER, championships VARCHAR, club VARCHAR)"}, {"answer": "SELECT MAX(championships) FROM table_name_76 WHERE club = \"erie seawolves\"", "question": "Name the most championships for club of erie seawolves", "context": "CREATE TABLE table_name_76 (championships INTEGER, club VARCHAR)"}, {"answer": "SELECT sport FROM table_name_19 WHERE championships < 1 AND club = \"erie bayhawks\"", "question": "Name the sport with championships less than 1 and club of erie bayhawks", "context": "CREATE TABLE table_name_19 (sport VARCHAR, championships VARCHAR, club VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE game = 3", "question": "what is the date for game 3?", "context": "CREATE TABLE table_name_71 (date VARCHAR, game VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_95 WHERE japanese_title = \"\u9913\u72fc\u4f1d\u8aac\u30d0\u30c8\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6\u30ba\uff12\"", "question": "What is the English title of \u9913\u72fc\u4f1d\u8aac\u30d0\u30c8\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6\u30ba\uff12?", "context": "CREATE TABLE table_name_95 (english_title VARCHAR, japanese_title VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE loss = \"francisco (1-1)\"", "question": "Who was the opponent when there was a loss of Francisco (1-1)?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE attendance = \"17,136\"", "question": "On what date was the attendance 17,136?", "context": "CREATE TABLE table_name_36 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_44 WHERE score = \"6-5\" AND loss = \"white (2-1)\"", "question": "Who was the opponent during the game with a score of 6-5 and a loss of White (2-1)?", "context": "CREATE TABLE table_name_44 (opponent VARCHAR, score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_19 WHERE attendance = \"41,087\"", "question": "What was the score for the game that had an attendance of 41,087?", "context": "CREATE TABLE table_name_19 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_12 WHERE loss = \"koch (0-1)\"", "question": "When the game had a loss of Koch (0-1) what was the attendance?", "context": "CREATE TABLE table_name_12 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT AVG(inegi_code) FROM table_name_6 WHERE municipal_seat = \"mexicali\" AND area__km2_ > 13 OFFSET 700", "question": "What is the inegi code for mexicali with 13,700 km area?", "context": "CREATE TABLE table_name_6 (inegi_code INTEGER, municipal_seat VARCHAR, area__km2_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE h___a = \"a\" AND league_position = \"9th\"", "question": "What is the date of the away game when the team has a league position of 9th?", "context": "CREATE TABLE table_name_34 (date VARCHAR, h___a VARCHAR, league_position VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_33 WHERE date = \"may 17\"", "question": "On May 17, what is the highest Attendance?", "context": "CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_49 WHERE entrant = \"modena team spa\" AND year > 1991", "question": "What is the highest number of points for the Modena Team Spa after 1991?", "context": "CREATE TABLE table_name_49 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_46 WHERE entrant = \"ligier gitanes\"", "question": "What was the earliest year for the Ligier Gitanes?", "context": "CREATE TABLE table_name_46 (year INTEGER, entrant VARCHAR)"}, {"answer": "SELECT MAX(money_requested__) AS \u00a3_ FROM table_name_24 WHERE episode = \"episode 7\" AND entrepreneur_s_ = \"jerry mantalvanos & paul merker\"", "question": "In episode 7 what was the highest amount of money requested by Jerry Mantalvanos & Paul Merker ?", "context": "CREATE TABLE table_name_24 (money_requested__ INTEGER, episode VARCHAR, entrepreneur_s_ VARCHAR)"}, {"answer": "SELECT money_requested__\u00a3_ FROM table_name_59 WHERE company_or_product_name = \"reestore\"", "question": "How much money did reestore request ?", "context": "CREATE TABLE table_name_59 (money_requested__\u00a3_ VARCHAR, company_or_product_name VARCHAR)"}, {"answer": "SELECT COUNT(money_requested__) AS \u00a3_ FROM table_name_6 WHERE company_or_product_name = \"gaming alerts\"", "question": "How much money did gaming alerts ask for?", "context": "CREATE TABLE table_name_6 (money_requested__ VARCHAR, company_or_product_name VARCHAR)"}, {"answer": "SELECT winner FROM table_name_96 WHERE prize = \"\u20ac93,000\"", "question": "Who is the winner of the prize of \u20ac93,000?", "context": "CREATE TABLE table_name_96 (winner VARCHAR, prize VARCHAR)"}, {"answer": "SELECT winner FROM table_name_50 WHERE prize = \"\u00a3200,000\"", "question": "Who is the winner of the prize of \u00a3200,000 as listed?", "context": "CREATE TABLE table_name_50 (winner VARCHAR, prize VARCHAR)"}, {"answer": "SELECT date FROM table_name_91 WHERE winner = \"ram vaswani\"", "question": "Ram Vaswani was a winner on what date?", "context": "CREATE TABLE table_name_91 (date VARCHAR, winner VARCHAR)"}, {"answer": "SELECT race FROM table_name_80 WHERE place = \"2nd\" AND season = 1996 AND date = \"20-jan-1996\"", "question": "Which race resulted in 2nd place in the 1996 season on 20-Jan-1996?", "context": "CREATE TABLE table_name_80 (race VARCHAR, date VARCHAR, place VARCHAR, season VARCHAR)"}, {"answer": "SELECT place FROM table_name_17 WHERE race = \"downhill\" AND season < 1996 AND date = \"11-mar-1995\"", "question": "What is the place result of the downhill race before the 1996 season on 11-Mar-1995?", "context": "CREATE TABLE table_name_17 (place VARCHAR, date VARCHAR, race VARCHAR, season VARCHAR)"}, {"answer": "SELECT place FROM table_name_73 WHERE season = 1996 AND location = \"lake louise, canada\"", "question": "What place result was the 1996 season at Lake Louise, Canada?", "context": "CREATE TABLE table_name_73 (place VARCHAR, season VARCHAR, location VARCHAR)"}, {"answer": "SELECT record FROM table_name_23 WHERE home = \"detroit red wings\" AND score = \"1\u20132\" AND date = \"december 29\"", "question": "What is the Record that has a Home of detroit red wings, and a Score of 1\u20132 on december 29?", "context": "CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR, home VARCHAR, score VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_82 WHERE record = \"10\u201311\u20135\"", "question": "Whose Visitor has a Record of 10\u201311\u20135?", "context": "CREATE TABLE table_name_82 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_90 WHERE matches < 2", "question": "What is the typical match smaller than 2?", "context": "CREATE TABLE table_name_90 (average INTEGER, matches INTEGER)"}, {"answer": "SELECT COUNT(total) FROM table_name_84 WHERE tally = \"1-19\" AND matches < 2", "question": "What are the total number of matches smaller than 2 with a tally of 1-19?", "context": "CREATE TABLE table_name_84 (total VARCHAR, tally VARCHAR, matches VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_47 WHERE county = \"tipperary\" AND rank < 1", "question": "What is the average total in the county of tipperary with a rank less than 1?", "context": "CREATE TABLE table_name_47 (average VARCHAR, county VARCHAR, rank VARCHAR)"}, {"answer": "SELECT qual FROM table_name_3 WHERE laps < 68", "question": "What is the Qual with less than 68 laps?", "context": "CREATE TABLE table_name_3 (qual VARCHAR, laps INTEGER)"}, {"answer": "SELECT year FROM table_name_15 WHERE qual = \"147.481\"", "question": "The 147.481 Qual, happened in what year?", "context": "CREATE TABLE table_name_15 (year VARCHAR, qual VARCHAR)"}, {"answer": "SELECT being__qualities_ FROM table_name_52 WHERE having__things_ = \"language, religions, work, customs, values, norms\"", "question": "Name the being for having things of language, religions, work, customs, values, norms?", "context": "CREATE TABLE table_name_52 (being__qualities_ VARCHAR, having__things_ VARCHAR)"}, {"answer": "SELECT having__things_ FROM table_name_99 WHERE interacting__settings_ = \"privacy, intimate spaces of togetherness\"", "question": "Name the having things for privacy, intimate spaces of togetherness", "context": "CREATE TABLE table_name_99 (having__things_ VARCHAR, interacting__settings_ VARCHAR)"}, {"answer": "SELECT interacting__settings_ FROM table_name_87 WHERE need = \"protection\"", "question": "Name the interacting for need of protection", "context": "CREATE TABLE table_name_87 (interacting__settings_ VARCHAR, need VARCHAR)"}, {"answer": "SELECT interacting__settings_ FROM table_name_40 WHERE doing__actions_ = \"co-operate, plan, take care of, help\"", "question": "Name the interacting settings for co-operate, plan, take care of, help", "context": "CREATE TABLE table_name_40 (interacting__settings_ VARCHAR, doing__actions_ VARCHAR)"}, {"answer": "SELECT being__qualities_ FROM table_name_36 WHERE having__things_ = \"language, religions, work, customs, values, norms\"", "question": "Name the being qualities for having things of language, religions, work, customs, values, norms", "context": "CREATE TABLE table_name_36 (being__qualities_ VARCHAR, having__things_ VARCHAR)"}, {"answer": "SELECT being__qualities_ FROM table_name_20 WHERE having__things_ = \"friendships, family, relationships with nature\"", "question": "Name the being qualities for having things of friendships, family, relationships with nature", "context": "CREATE TABLE table_name_20 (being__qualities_ VARCHAR, having__things_ VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_89 WHERE time = \"2:42\"", "question": "What was the attendance for the game that went 2:42?", "context": "CREATE TABLE table_name_89 (attendance INTEGER, time VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_72 WHERE name = \"s\u00e9bastien bourdais\" AND grid < 1", "question": "How many laps for s\u00e9bastien bourdais, and a Grid smaller than 1?", "context": "CREATE TABLE table_name_72 (laps INTEGER, name VARCHAR, grid VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE opponent = \"kim tiilikainen\"", "question": "What was the score in the match against Kim Tiilikainen?", "context": "CREATE TABLE table_name_49 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE surface = \"clay\" AND opponent = \"jean-julien rojer\"", "question": "What was the date of the match against Jean-Julien Rojer, on a clay surface?", "context": "CREATE TABLE table_name_59 (date VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_22 WHERE surface = \"hard\"", "question": "Which tournament had a hard surface?", "context": "CREATE TABLE table_name_22 (tournament VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_42 WHERE outcome = \"runner-up\" AND score = \"julia g\u00f6rges polona hercog\"", "question": "What is the surface of the match when the outcome was runner-up, and a Score of julia g\u00f6rges polona hercog?", "context": "CREATE TABLE table_name_42 (surface VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_60 WHERE score = \"akgul amanmuradova chuang chia-jung\"", "question": "What was the surface of the match when the score was akgul amanmuradova chuang chia-jung?", "context": "CREATE TABLE table_name_60 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE surface = \"hard\" AND opponent = \"eva hrdinov\u00e1\"", "question": "What date was the surface hard and Eva Hrdinov\u00e1 was the opponent?", "context": "CREATE TABLE table_name_40 (date VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_83 WHERE opponent = \"bethanie mattek-sands\"", "question": "What was the surface of the match against bethanie mattek-sands?", "context": "CREATE TABLE table_name_83 (surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT series_1 FROM table_name_58 WHERE series_2 = \"doug richards\"", "question": "What series 1 has a Doug Richards in Series 2?", "context": "CREATE TABLE table_name_58 (series_1 VARCHAR, series_2 VARCHAR)"}, {"answer": "SELECT series_1 FROM table_name_60 WHERE series_5 = \"peter jones\"", "question": "Who in series 1 corresponds with Peter Jones in series 5?", "context": "CREATE TABLE table_name_60 (series_1 VARCHAR, series_5 VARCHAR)"}, {"answer": "SELECT series_5 FROM table_name_57 WHERE series_3 = \"deborah meaden\"", "question": "Who in series 5 corresponds to Deborah Meaden in series 3?", "context": "CREATE TABLE table_name_57 (series_5 VARCHAR, series_3 VARCHAR)"}, {"answer": "SELECT series_11 FROM table_name_51 WHERE series_1 = \"peter jones\"", "question": "Who in series 11 corresponds to Peter Jones in series 1?", "context": "CREATE TABLE table_name_51 (series_11 VARCHAR, series_1 VARCHAR)"}, {"answer": "SELECT series_9 FROM table_name_55 WHERE series_2 = \"peter jones\"", "question": "Who in series 9 corresponds to Peter Jones in series 2?", "context": "CREATE TABLE table_name_55 (series_9 VARCHAR, series_2 VARCHAR)"}, {"answer": "SELECT score FROM table_name_86 WHERE record = \"55-39\"", "question": "What was the score of the game when the Blue Jays were 55-39?", "context": "CREATE TABLE table_name_86 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT individual FROM table_name_33 WHERE event = \"1998 pokljuka\"", "question": "Who was the individual in the event of 1998 Pokljuka?", "context": "CREATE TABLE table_name_33 (individual VARCHAR, event VARCHAR)"}, {"answer": "SELECT class FROM table_name_26 WHERE quantity_made = 5", "question": "Which locomotive class had 5 items made?", "context": "CREATE TABLE table_name_26 (class VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_40 WHERE type = \"4-6-4t\"", "question": "Which manufacturer made a locomotive with a type of 4-6-4t?", "context": "CREATE TABLE table_name_40 (manufacturer VARCHAR, type VARCHAR)"}, {"answer": "SELECT COUNT(event) FROM table_name_92 WHERE round = \"radek \u0161t\u011bp\u00e1nek\" AND NOT aces < 3", "question": "What is the event year radek \u0161t\u011bp\u00e1nek was the round and there were less than 3 aces?", "context": "CREATE TABLE table_name_92 (event VARCHAR, round VARCHAR, aces VARCHAR)"}, {"answer": "SELECT COUNT(player) FROM table_name_72 WHERE event > 2011 AND NOT aces < 9", "question": "How many players were in the event after 2011 with less than 9 aces?", "context": "CREATE TABLE table_name_72 (player VARCHAR, event VARCHAR, aces VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_72 WHERE player < 113 AND event = 2011", "question": "Who was the opponent in the 2011 event with less than 113 players?", "context": "CREATE TABLE table_name_72 (opponent VARCHAR, player VARCHAR, event VARCHAR)"}, {"answer": "SELECT MAX(player) FROM table_name_63 WHERE year = \"1r\" AND sets = \"clay\" AND NOT aces > 4", "question": "What is the highest number of players during 1r year with a clay set and more than 4 aces?", "context": "CREATE TABLE table_name_63 (player INTEGER, year VARCHAR, sets VARCHAR, aces VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_73 WHERE team_1 = \"sc gagnoa\"", "question": "Who played as Team 2 against Team 1 SC Gagnoa?", "context": "CREATE TABLE table_name_73 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_6 WHERE team_2 = \"mufulira wanderers\"", "question": "What was the 1st leg score when Mufulira Wanderers played as Team 2?", "context": "CREATE TABLE table_name_6 (team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_8 WHERE team_1 = \"water corporation\"", "question": "What's the score of the 1st leg when Water Corporation was Team 1?", "context": "CREATE TABLE table_name_8 (team_1 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_1 WHERE team_1 = \"gor mahia\"", "question": "What's the 1st leg score when Team 1 was Gor Mahia?", "context": "CREATE TABLE table_name_1 (team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_8 WHERE team_2 = \"lom\u00e9 i\"", "question": "Who played as Team 1 against Lom\u00e9 i?", "context": "CREATE TABLE table_name_8 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_39 WHERE year = 1952", "question": "Name the entrant for year of 1952", "context": "CREATE TABLE table_name_39 (entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_89 WHERE year = 1952", "question": "Name the total number of points for 1952", "context": "CREATE TABLE table_name_89 (points VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_52 WHERE chassis = \"talbot-lago t26c\" AND points < 3", "question": "Name the total number of years for talbot-lago t26c and points less than 3", "context": "CREATE TABLE table_name_52 (year VARCHAR, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT first_aired FROM table_name_15 WHERE entrepreneur_s_ = \"richard ernest\"", "question": "What episode featured entrepreneur Richard Ernest?", "context": "CREATE TABLE table_name_15 (first_aired VARCHAR, entrepreneur_s_ VARCHAR)"}, {"answer": "SELECT investing_dragon_s_ FROM table_name_87 WHERE money_requested__\u00a3_ = \"100,000\"", "question": "What Investing Dragons had a request of \u00a3100,000?", "context": "CREATE TABLE table_name_87 (investing_dragon_s_ VARCHAR, money_requested__\u00a3_ VARCHAR)"}, {"answer": "SELECT entrepreneur_s_ FROM table_name_27 WHERE money_requested__\u00a3_ = \"60,000\"", "question": "What Entrepreneurs requested \u00a360,000?", "context": "CREATE TABLE table_name_27 (entrepreneur_s_ VARCHAR, money_requested__\u00a3_ VARCHAR)"}, {"answer": "SELECT money_requested__\u00a3_ FROM table_name_92 WHERE investing_dragon_s_ = \"peter jones\" AND episode = \"episode 2\"", "question": "How much was requested from Investing Dragon Peter Jones request in episode 2?", "context": "CREATE TABLE table_name_92 (money_requested__\u00a3_ VARCHAR, investing_dragon_s_ VARCHAR, episode VARCHAR)"}, {"answer": "SELECT investing_dragon_s_ FROM table_name_5 WHERE company_or_product_name = \"razzamataz\"", "question": "Name the investing dragon for razzamataz", "context": "CREATE TABLE table_name_5 (investing_dragon_s_ VARCHAR, company_or_product_name VARCHAR)"}, {"answer": "SELECT first_aired FROM table_name_86 WHERE money_requested__\u00a3_ > 85 OFFSET 000", "question": "Name the first aired with money requested more than 85,000", "context": "CREATE TABLE table_name_86 (first_aired VARCHAR, money_requested__\u00a3_ INTEGER)"}, {"answer": "SELECT competition FROM table_name_36 WHERE result = \"3-2\" AND score = \"2-1\"", "question": "What is the competition type of the event with a result of 3-2 and a score of 2-1?", "context": "CREATE TABLE table_name_36 (competition VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE competition = \"friendly\" AND score = \"2-1\"", "question": "Which date has a competition type of friendly and a score of 2-1?", "context": "CREATE TABLE table_name_3 (date VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_94 WHERE competition = \"friendly\" AND result = \"4-5\"", "question": "What is the score of the event with a competition type of friendly and a result of 4-5?", "context": "CREATE TABLE table_name_94 (score VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE score = \"2-1\"", "question": "Which date has a score of 2-1?", "context": "CREATE TABLE table_name_6 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_81 WHERE competition = \"british home championship\"", "question": "Which date has a competition type of British home championship?", "context": "CREATE TABLE table_name_81 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT date FROM table_name_76 WHERE circuit = \"mallala motor sport park\"", "question": "what date was mallala motor sport park the circuit?", "context": "CREATE TABLE table_name_76 (date VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE team = \"m3 motorsport\" AND circuit = \"winton motor raceway\"", "question": "what date did the m3 motorsport team compete at winton motor raceway?", "context": "CREATE TABLE table_name_38 (date VARCHAR, team VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT agg FROM table_name_34 WHERE team_2 = \"asl sport guyanais\"", "question": "Name the agg for team 2 of asl sport guyanais.", "context": "CREATE TABLE table_name_34 (agg VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_12 WHERE team_1 = \"seba united\"", "question": "Name the agg for seba united", "context": "CREATE TABLE table_name_12 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_61 WHERE team_2 = \"defence force\"", "question": "Name the 2nd leg for defence force", "context": "CREATE TABLE table_name_61 (team_2 VARCHAR)"}, {"answer": "SELECT country FROM table_name_67 WHERE season > 2006 AND team = \"fc atyrau\"", "question": "Which country does FC Atyrau represent after the 2006 season?", "context": "CREATE TABLE table_name_67 (country VARCHAR, season VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_72 WHERE country = \"uzbekistan\" AND team = \"fc pakhtakor tashkent\" AND apps > 6", "question": "In which season did Fc Pakhtakor Tashkent represent the country of Uzbekistan with more than 6 apps?", "context": "CREATE TABLE table_name_72 (season INTEGER, apps VARCHAR, country VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(season) FROM table_name_89 WHERE goals = 1 AND apps > 11", "question": "How many seasons have 1 goals and more than 11 apps?", "context": "CREATE TABLE table_name_89 (season VARCHAR, goals VARCHAR, apps VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_44 WHERE record = \"39-44\"", "question": "What game that had a record of 39-44 had the lowest attendance?", "context": "CREATE TABLE table_name_44 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE loss = \"saarloos (7-7)\"", "question": "Who was the opponent at the game that had a loss of Saarloos (7-7)?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE record = \"81-60\"", "question": "What was the score of the game with a record of 81-60?", "context": "CREATE TABLE table_name_71 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_29 WHERE score = \"5-4\" AND loss = \"williams (2-4)\"", "question": "What was the lowest attendance at a game that had a score of 5-4 and a loss of Williams (2-4)?", "context": "CREATE TABLE table_name_29 (attendance INTEGER, score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT year FROM table_name_96 WHERE place = \"11th\" AND played = 26", "question": "What year did the 11th place play 26 games?", "context": "CREATE TABLE table_name_96 (year VARCHAR, place VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_24 WHERE ga = \"22\"", "question": "What is the total played games of a 22 G.A.?", "context": "CREATE TABLE table_name_24 (played VARCHAR, ga VARCHAR)"}, {"answer": "SELECT winner FROM table_name_39 WHERE course = \"genoa to livorno\"", "question": "Name the winner for genoa to livorno", "context": "CREATE TABLE table_name_39 (winner VARCHAR, course VARCHAR)"}, {"answer": "SELECT winner FROM table_name_80 WHERE date = \"5 june\"", "question": "Name the winner for 5 june", "context": "CREATE TABLE table_name_80 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_97 WHERE race_leader = \"rest day\"", "question": "Name the winner for rest day race leader", "context": "CREATE TABLE table_name_97 (winner VARCHAR, race_leader VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_22 WHERE lane < 5 AND nationality = \"germany\" AND name = \"sandra v\u00f6lker\"", "question": "Name the least rank for lane less than 5 for germany and sandra v\u00f6lker", "context": "CREATE TABLE table_name_22 (rank INTEGER, name VARCHAR, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_69 WHERE lane = 7", "question": "Name the total number of rank for lane 7", "context": "CREATE TABLE table_name_69 (rank VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MAX(time) FROM table_name_71 WHERE name = \"katrin mei\u00dfner\" AND rank < 5", "question": "Name the most time for katrin mei\u00dfner and rank less than 5", "context": "CREATE TABLE table_name_71 (time INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT name FROM table_name_2 WHERE time = 25.74", "question": "Tell me the name for time of 25.74", "context": "CREATE TABLE table_name_2 (name VARCHAR, time VARCHAR)"}, {"answer": "SELECT signed FROM table_name_50 WHERE school = \"university of southern california\"", "question": "Was the University of Southern California Signed?", "context": "CREATE TABLE table_name_50 (signed VARCHAR, school VARCHAR)"}, {"answer": "SELECT signed FROM table_name_13 WHERE school = \"university of michigan\"", "question": "Was the University of Michigan Signed?", "context": "CREATE TABLE table_name_13 (signed VARCHAR, school VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_92 WHERE school = \"university of southern california\"", "question": "What is the University of Southern California's highest Round?", "context": "CREATE TABLE table_name_92 (round INTEGER, school VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_89 WHERE venue = \"sabina park\"", "question": "Who was the home captain at Sabina Park?", "context": "CREATE TABLE table_name_89 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_30 WHERE venue = \"queen's park oval\"", "question": "What was the result of the game hosted at Queen's Park Oval?", "context": "CREATE TABLE table_name_30 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT genre FROM table_name_98 WHERE release_year_of_first_charted_record = 1988", "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 loss FROM table_name_96 WHERE record = \"77-65\"", "question": "What was the loss of the game with a record of 77-65?", "context": "CREATE TABLE table_name_96 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_29 WHERE record = \"84-71\"", "question": "What was the loss of the game with a record of 84-71?", "context": "CREATE TABLE table_name_29 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_11 WHERE record = \"34-41\"", "question": "What date was the record 34-41?", "context": "CREATE TABLE table_name_11 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT type FROM table_name_18 WHERE course = \"grosseto to rieti\"", "question": "What type had a course of Grosseto To Rieti?", "context": "CREATE TABLE table_name_18 (type VARCHAR, course VARCHAR)"}, {"answer": "SELECT season FROM table_name_53 WHERE league = \"wcjhl\" AND assists = 86", "question": "In what Season were there 86 Assists in the WCJHL League?", "context": "CREATE TABLE table_name_53 (season VARCHAR, league VARCHAR, assists VARCHAR)"}, {"answer": "SELECT MIN(assists) FROM table_name_37 WHERE league = \"wchl\" AND goals < 65", "question": "In the WCHL League,  what is the last Assists with less than 65 Goals?", "context": "CREATE TABLE table_name_37 (assists INTEGER, league VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_53 WHERE assists = 46", "question": "What are the most Points with an Assist of 46?", "context": "CREATE TABLE table_name_53 (points INTEGER, assists VARCHAR)"}, {"answer": "SELECT compound_name FROM table_name_2 WHERE colour = \"yellow\"", "question": "What compound is yellow?", "context": "CREATE TABLE table_name_2 (compound_name VARCHAR, colour VARCHAR)"}, {"answer": "SELECT colour FROM table_name_31 WHERE compound_name = \"super-soft\"", "question": "What color is the super-soft compound?", "context": "CREATE TABLE table_name_31 (colour VARCHAR, compound_name VARCHAR)"}, {"answer": "SELECT tickets_sold___available FROM table_name_26 WHERE gross_revenue__1979_ = \"$665,232\"", "question": "Which venue has Tickets Sold/ Available with a Gross Revenue (1979) of $665,232?", "context": "CREATE TABLE table_name_26 (tickets_sold___available VARCHAR, gross_revenue__1979_ VARCHAR)"}, {"answer": "SELECT gross_revenue__1979_ FROM table_name_83 WHERE venue = \"lyceum theatre\"", "question": "What is the Gross Revenue (1979) of the Venue, lyceum theatre?", "context": "CREATE TABLE table_name_83 (gross_revenue__1979_ VARCHAR, venue VARCHAR)"}, {"answer": "SELECT tickets_sold___available FROM table_name_44 WHERE venue = \"hippodrome\"", "question": "What is the amount of Tickets Sold/ Available at the Venue of hippodrome?", "context": "CREATE TABLE table_name_44 (tickets_sold___available VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_41 WHERE gross_revenue__2012_ = \"$179,712\"", "question": "Which Venue has a Gross Revenue (2012) of $179,712?", "context": "CREATE TABLE table_name_41 (venue VARCHAR, gross_revenue__2012_ VARCHAR)"}, {"answer": "SELECT venue FROM table_name_21 WHERE tickets_sold___available = \"4,700 / 4,700 (100%)\"", "question": "Which Venue has an amount of Tickets Sold/ Available of 4,700 / 4,700 (100%)?", "context": "CREATE TABLE table_name_21 (venue VARCHAR, tickets_sold___available VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE loss = \"willis (0\u20131)\"", "question": "What was the date of the game that had a loss of Willis (0\u20131)?", "context": "CREATE TABLE table_name_32 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_9 WHERE loss = \"travers (0\u20132)\"", "question": "What was the opponent at the game that had a loss of Travers (0\u20132)?", "context": "CREATE TABLE table_name_9 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_46 WHERE record = \"50-54\"", "question": "What was the Loss when the Record was 50-54?", "context": "CREATE TABLE table_name_46 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_35 WHERE loss = \"wells (4-7)\"", "question": "Who was the opponent when the loss was Wells (4-7)?", "context": "CREATE TABLE table_name_35 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT shoots FROM table_name_62 WHERE player = \"craig peacock a\"", "question": "What shows for shoots for craig peacock a?", "context": "CREATE TABLE table_name_62 (shoots VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(acquired) FROM table_name_73 WHERE number = 7", "question": "What is the average Acquired when the Number shows as 7?", "context": "CREATE TABLE table_name_73 (acquired INTEGER, number VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_87 WHERE 2013 = \"6th\"", "question": "What is the total of 2013 with 6th?", "context": "CREATE TABLE table_name_87 (total INTEGER)"}, {"answer": "SELECT 2009 FROM table_name_45 WHERE total = 1 AND 2004 = \"7th\"", "question": "Which 2009 year has a total of 1, and 2004 year of 7th?", "context": "CREATE TABLE table_name_45 (total VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_78 WHERE total = 5 AND 2009 = \"5th\"", "question": "What is the year 2013 with a total of 5, and 5th in 2009?", "context": "CREATE TABLE table_name_78 (total VARCHAR)"}, {"answer": "SELECT 2001 FROM table_name_26 WHERE total > 1 AND 2009 = \"8\"", "question": "What is the year 2001 with a total larger than 1, and 2009 with 8?", "context": "CREATE TABLE table_name_26 (total VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_34 WHERE record = \"90-70\"", "question": "What opponents have a record of 90-70?", "context": "CREATE TABLE table_name_34 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_45 WHERE attendance > 50 OFFSET 324", "question": "What game had more than 50,324 in attendance?", "context": "CREATE TABLE table_name_45 (date VARCHAR, attendance INTEGER)"}, {"answer": "SELECT start FROM table_name_76 WHERE engine = \"offy\" AND year = 1972", "question": "What is the start of Offy engine and in 1972?", "context": "CREATE TABLE table_name_76 (start VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_12 WHERE engine = \"offy\" AND finish = \"25th\"", "question": "What is the chassis for offy engine and 25th finish?", "context": "CREATE TABLE table_name_12 (chassis VARCHAR, engine VARCHAR, finish VARCHAR)"}, {"answer": "SELECT finish FROM table_name_7 WHERE chassis = \"mclaren\"", "question": "What is the finish of Mclaren chassis?", "context": "CREATE TABLE table_name_7 (finish VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT wrestlers FROM table_name_83 WHERE days_held = \"428\"", "question": "Name the wrestlers with days held of 428", "context": "CREATE TABLE table_name_83 (wrestlers VARCHAR, days_held VARCHAR)"}, {"answer": "SELECT wrestlers FROM table_name_58 WHERE days_held = \"69\"", "question": "Name the wrestlers for days held of 69", "context": "CREATE TABLE table_name_58 (wrestlers VARCHAR, days_held VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_51 WHERE surface = \"clay\" AND outcome = \"winner\" AND tournament = \"bogot\u00e1\" AND score = \"6\u20130, 6\u20134\"", "question": "Which opponent has a Surface of clay, an Outcome of winner, a Tournament of bogot\u00e1, and a Score of 6\u20130, 6\u20134?", "context": "CREATE TABLE table_name_51 (opponent VARCHAR, score VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE score = \"6\u20134, 3\u20136, 6\u20133\"", "question": "Which opponent has a Score of 6\u20134, 3\u20136, 6\u20133?", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE date = \"04 september 2006\"", "question": "What is the score for 04 september 2006?", "context": "CREATE TABLE table_name_21 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_40 WHERE score = \"4-6 6-2 6-1\"", "question": "Which Tournament has a Score of 4-6 6-2 6-1?", "context": "CREATE TABLE table_name_40 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_50 WHERE surface = \"clay\" AND score = \"4\u20136, 7\u20135, 2\u20136\"", "question": "Which outcome has a Surface of clay and a Score of 4\u20136, 7\u20135, 2\u20136?", "context": "CREATE TABLE table_name_50 (outcome VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE tournament = \"versmold\"", "question": "What date was versmold?", "context": "CREATE TABLE table_name_15 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT competition FROM table_name_17 WHERE opponents = \"motherwell\"", "question": "Name the competition for motherwell opponents", "context": "CREATE TABLE table_name_17 (competition VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT home_leg FROM table_name_82 WHERE competition = \"uefa europa league\" AND round = \"q1\" AND opponents = \"motherwell\"", "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 aggregate FROM table_name_65 WHERE opponents = \"tauras\"", "question": "Name the aggregate with opponents of tauras", "context": "CREATE TABLE table_name_65 (aggregate VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE record = \"53-75\"", "question": "What date was 53-75 recorded?", "context": "CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_42 WHERE overall = 62", "question": "Overall of 62 is what average round?", "context": "CREATE TABLE table_name_42 (round INTEGER, overall VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_32 WHERE college = \"san diego state\" AND pick__number < 30", "question": "College of san diego state, and a Pick # smaller than 30 is what lowest overall?", "context": "CREATE TABLE table_name_32 (overall INTEGER, college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_46 WHERE college = \"san diego state\" AND pick__number < 30", "question": "College of san diego state, and a Pick # smaller than 30 has what lowest overall?", "context": "CREATE TABLE table_name_46 (overall INTEGER, college VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_9 WHERE network_affiliation = \"independent\" AND format = \"variety\" AND station = \"kkup\"", "question": "Which city of license has an independent network affiliation, a variety format and is station KKUP?", "context": "CREATE TABLE table_name_9 (city_of_license VARCHAR, station VARCHAR, network_affiliation VARCHAR, format VARCHAR)"}, {"answer": "SELECT status FROM table_name_60 WHERE network_affiliation = \"independent\" AND station = \"kpfb\"", "question": "What is the status of the independent station KPFB?", "context": "CREATE TABLE table_name_60 (status VARCHAR, network_affiliation VARCHAR, station VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_56 WHERE status = \"owned by coyote communications\"", "question": "Which city station is owned by Coyote Communications?", "context": "CREATE TABLE table_name_56 (city_of_license VARCHAR, status VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_10 WHERE competition = \"olympic games\"", "question": "What year were the Olympic Games?", "context": "CREATE TABLE table_name_10 (year INTEGER, competition VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_92 WHERE position = \"5th\" AND venue = \"osaka, japan\"", "question": "What's the year in 5th position that happened in Osaka, Japan?", "context": "CREATE TABLE table_name_92 (year INTEGER, position VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_57 WHERE venue = \"barcelona, spain\"", "question": "What year was the venue in Barcelona, Spain?", "context": "CREATE TABLE table_name_57 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT decile FROM table_name_10 WHERE authority = \"state\" AND roll = 798", "question": "For a school with authority of state and a roll of 798, what is the decile?", "context": "CREATE TABLE table_name_10 (decile VARCHAR, authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT years FROM table_name_6 WHERE roll > 296 AND area = \"murupara\"", "question": "Murupara has a roll greater than 296 for what years?", "context": "CREATE TABLE table_name_6 (years VARCHAR, roll VARCHAR, area VARCHAR)"}, {"answer": "SELECT roll FROM table_name_66 WHERE authority = \"state\" AND decile > 1", "question": "When a school has authority of state and a decile greater than 1, what is the roll number?", "context": "CREATE TABLE table_name_66 (roll VARCHAR, authority VARCHAR, decile VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE date = \"august 30\"", "question": "Who did the Jays play on August 30?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_10 WHERE record = \"5-0-1\"", "question": "Which opponent has a record of 5-0-1?", "context": "CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT method FROM table_name_90 WHERE opponent = \"dan new\"", "question": "What method does the opponent of Dan New use?", "context": "CREATE TABLE table_name_90 (method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT method FROM table_name_27 WHERE record = \"3-0\"", "question": "Which method has a record of 3-0?", "context": "CREATE TABLE table_name_27 (method VARCHAR, record VARCHAR)"}, {"answer": "SELECT event FROM table_name_24 WHERE res = \"win\" AND round = \"n/a\" AND opponent = \"nicolas smith\"", "question": "Which event is a win by an opponent of Nicolas Smith, with the round marked n/a?", "context": "CREATE TABLE table_name_24 (event VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR)"}, {"answer": "SELECT event FROM table_name_36 WHERE round = \"1\" AND opponent = \"dan spychalski\"", "question": "Which event lasted 1 round and included an opponent of Dan Spychalski?", "context": "CREATE TABLE table_name_36 (event VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_70 WHERE opponent = \"jimmy smith\"", "question": "What is Jimmy Smith's opponent's record?", "context": "CREATE TABLE table_name_70 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(frequency) FROM table_name_47 WHERE brand = \"exa fm\"", "question": "Name the sum of frequecy with brand of exa fm", "context": "CREATE TABLE table_name_47 (frequency INTEGER, brand VARCHAR)"}, {"answer": "SELECT webcast FROM table_name_5 WHERE website = \"\u2022\" AND frequency = 103.3", "question": "Name the webcast for website of \u2022 and frequency of 103.3", "context": "CREATE TABLE table_name_5 (webcast VARCHAR, website VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT MIN(frequency) FROM table_name_54 WHERE brand = \"radio manantial\"", "question": "Name the lowest frequency for brand of radio manantial", "context": "CREATE TABLE table_name_54 (frequency INTEGER, brand VARCHAR)"}, {"answer": "SELECT COUNT(game) FROM table_name_13 WHERE score = \"new york yankees \u2013 2, brooklyn dodgers \u2013 3\"", "question": "Score of new york yankees \u2013 2, brooklyn dodgers \u2013 3 involves how many number of games?", "context": "CREATE TABLE table_name_13 (game VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_15 WHERE date = \"october 5\"", "question": "Date of october 5 had what score?", "context": "CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_47 WHERE score = \"brooklyn dodgers \u2013 3, new york yankees \u2013 5\" AND game > 1", "question": "brooklyn dodgers \u2013 3, new york yankees \u2013 5, and a Game larger than 1 had what attendance figure?", "context": "CREATE TABLE table_name_47 (attendance INTEGER, score VARCHAR, game VARCHAR)"}, {"answer": "SELECT mixed_doubles FROM table_name_42 WHERE season = 2002", "question": "Who won mixed doubles in the 2002 season?", "context": "CREATE TABLE table_name_42 (mixed_doubles VARCHAR, season VARCHAR)"}, {"answer": "SELECT MIN(quay_cranes) FROM table_name_72 WHERE berths = 1 AND operator = \"mtl\" AND terminal = \"terminal 5 (ct5)\"", "question": "Name the lowest Quay cranes for Berths of 1 and operator of mtl with terminal of terminal 5 (ct5)", "context": "CREATE TABLE table_name_72 (quay_cranes INTEGER, terminal VARCHAR, berths VARCHAR, operator VARCHAR)"}, {"answer": "SELECT operator FROM table_name_81 WHERE berths > 1 AND depth__m_ = \"12.5-15.5\"", "question": "Name the operator with berths more than 1 and depth of 12.5-15.5", "context": "CREATE TABLE table_name_81 (operator VARCHAR, berths VARCHAR, depth__m_ VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_3 WHERE chassis = \"mclaren m23\" AND entrant = \"centro asegurador\"", "question": "What is the average points that Centro Asegurador earned with the McLaren M23 chassis?", "context": "CREATE TABLE table_name_3 (points INTEGER, chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_94 WHERE year > 1981", "question": "What was the chassis of Emilio de Villota in 1981?", "context": "CREATE TABLE table_name_94 (chassis VARCHAR, year INTEGER)"}, {"answer": "SELECT director_s_ FROM table_name_98 WHERE date = \"14/6/6\"", "question": "What directors won an award on 14/6/6?", "context": "CREATE TABLE table_name_98 (director_s_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE recipient = \"passion pictures\"", "question": "What date did Passion Pictures receive an award?", "context": "CREATE TABLE table_name_42 (date VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT award FROM table_name_14 WHERE recipient = \"charlie productions ltd\"", "question": "What award did Charlie Productions Ltd receive?", "context": "CREATE TABLE table_name_14 (award VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT film FROM table_name_75 WHERE recipient = \"bub ltd\"", "question": "What film had Bub Ltd as the recipient?", "context": "CREATE TABLE table_name_75 (film VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT film FROM table_name_2 WHERE date = \"22/3/06\"", "question": "What film was awarded on 22/3/06?", "context": "CREATE TABLE table_name_2 (film VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE outcome = \"winner\" AND year > 2008", "question": "What score resulted in a winner after 2008?", "context": "CREATE TABLE table_name_18 (score VARCHAR, outcome VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE opponent = \"gan teik chai lin woon fui\"", "question": "What score has an opponent gan teik chai lin woon fui?", "context": "CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_77 WHERE opponent = \"gan teik chai lin woon fui\"", "question": "What tournament has an opponent gan teik chai lin woon fui?", "context": "CREATE TABLE table_name_77 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_59 WHERE opponent = \"jung jae-sung lee yong-dae\"", "question": "What tournament has an opponent jung jae-sung lee yong-dae?", "context": "CREATE TABLE table_name_59 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_12 WHERE loss = \"alexander (5-2)\"", "question": "What is the record of the team that lost to Alexander (5-2)?", "context": "CREATE TABLE table_name_12 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE record = \"17-11\"", "question": "Which opponent has a record of 17-11?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE record = \"15-9\"", "question": "What is the score of the game that resulted in a 15-9 record?", "context": "CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_86 WHERE date = \"may 26\"", "question": "What was the attendance on May 26?", "context": "CREATE TABLE table_name_86 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_34 WHERE loss = \"dotson (2-3)\"", "question": "What is the score of the game that was a loss to Dotson (2-3)?", "context": "CREATE TABLE table_name_34 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE record = \"19-11\"", "question": "On what date was the record 19-11?", "context": "CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_61 WHERE year < 1974", "question": "What were the highest points before the year 1974?", "context": "CREATE TABLE table_name_61 (points INTEGER, year INTEGER)"}, {"answer": "SELECT chassis FROM table_name_75 WHERE entrant = \"lavazza march\" AND points = 0.5", "question": "What was the chassis when the entrant was Lavazza March, and the points were 0.5?", "context": "CREATE TABLE table_name_75 (chassis VARCHAR, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_38 WHERE entrant = \"lavazza march\" AND year = 1975", "question": "What was the chassis when the entrant was Lavazza March, and the year was 1975?", "context": "CREATE TABLE table_name_38 (chassis VARCHAR, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_74 WHERE points > 0 AND entrant = \"march engineering\"", "question": "What was the chassis when the points were greater than 0 and the entrant was March Engineering?", "context": "CREATE TABLE table_name_74 (chassis VARCHAR, points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT name FROM table_name_21 WHERE time = 56.07", "question": "Who had a time of 56.07?", "context": "CREATE TABLE table_name_21 (name VARCHAR, time VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_83 WHERE english_title = \"madame rosa\"", "question": "What is the original title of Madame Rosa?", "context": "CREATE TABLE table_name_83 (original_title VARCHAR, english_title VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_42 WHERE director = \"paul verhoeven\"", "question": "What is the original title where Paul Verhoeven is the director?", "context": "CREATE TABLE table_name_42 (original_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_18 WHERE year = \"1978\"", "question": "What original title has a year of 1978?", "context": "CREATE TABLE table_name_18 (original_title VARCHAR, year VARCHAR)"}, {"answer": "SELECT director FROM table_name_14 WHERE original_title = \"best foreign film\"", "question": "Who is the director of the best foreign film?", "context": "CREATE TABLE table_name_14 (director VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_90 WHERE original_title = \"ansikte mot ansikte\"", "question": "What is the English title for Ansikte Mot Ansikte?", "context": "CREATE TABLE table_name_90 (english_title VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT circumstances FROM table_name_93 WHERE date = \"2009-09-05\"", "question": "What happened on 2009-09-05?", "context": "CREATE TABLE table_name_93 (circumstances VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_80 WHERE circumstances = \"combat\" AND date = \"2009-09-16\"", "question": "Where was the combat of 2009-09-16?", "context": "CREATE TABLE table_name_80 (location VARCHAR, circumstances VARCHAR, date VARCHAR)"}, {"answer": "SELECT circumstances FROM table_name_25 WHERE date = \"2009-03-14\"", "question": "What happened on 2009-03-14?", "context": "CREATE TABLE table_name_25 (circumstances VARCHAR, date VARCHAR)"}, {"answer": "SELECT casualties FROM table_name_71 WHERE circumstances = \"combat\" AND location = \"fayzabad area\"", "question": "How many casualties from the combat in the Fayzabad area?", "context": "CREATE TABLE table_name_71 (casualties VARCHAR, circumstances VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_28 WHERE date = \"2009-09-05\"", "question": "Where was the incident of 2009-09-05?", "context": "CREATE TABLE table_name_28 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_67 WHERE date = \"january 22\"", "question": "What is the home team of the game on January 22?", "context": "CREATE TABLE table_name_67 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE home = \"chicago black hawks\" AND visitor = \"new york rangers\" AND date = \"february 26\"", "question": "What is the score of the game on February 26 with the Chicago black hawks as the home team and the New York Rangers as the visitor team?", "context": "CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT home FROM table_name_74 WHERE date = \"february 4\"", "question": "What is the home team of the game on February 4?", "context": "CREATE TABLE table_name_74 (home VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_44 WHERE points < 1 AND chassis = \"zakspeed 871\"", "question": "What Team had less than 1 point with a Zakspeed 871 chassis?", "context": "CREATE TABLE table_name_44 (team VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_35 WHERE engine = \"ford cosworth dfr (mader) 3.5 v8\"", "question": "What is the lowest amount of points for a Ford Cosworth DFR (Mader) 3.5 V8 engine?", "context": "CREATE TABLE table_name_35 (points INTEGER, engine VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_55 WHERE chassis = \"rial arc2\"", "question": "What year was a Rial Arc2 chassis used?", "context": "CREATE TABLE table_name_55 (year INTEGER, chassis VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_25 WHERE silver = 1", "question": "Name the bronze when silver is 1", "context": "CREATE TABLE table_name_25 (bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_41 WHERE gold < 0", "question": "Name the least silver when gold is less than 0", "context": "CREATE TABLE table_name_41 (silver INTEGER, gold INTEGER)"}, {"answer": "SELECT MIN(silver) FROM table_name_40 WHERE nation = \"total\" AND bronze > 24", "question": "Name the least silver for nation of total when bronze is more than 24", "context": "CREATE TABLE table_name_40 (silver INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT year FROM table_name_14 WHERE finish = \"12th\" AND record = \"23-36\"", "question": "Name the year with finish of 12th and record of 23-36", "context": "CREATE TABLE table_name_14 (year VARCHAR, finish VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_78 WHERE year = \"1997\"", "question": "Name the record for 1997", "context": "CREATE TABLE table_name_78 (record VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_65 WHERE manager = \"jesus alfaro\" AND finish = \"6th\"", "question": "Name the year for jesus alfaro and finish of 6th", "context": "CREATE TABLE table_name_65 (year VARCHAR, manager VARCHAR, finish VARCHAR)"}, {"answer": "SELECT manager FROM table_name_45 WHERE playoffs = \"missed\" AND year = \"1999\"", "question": "Name the manager for playoffs of missed for 1999", "context": "CREATE TABLE table_name_45 (manager VARCHAR, playoffs VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_45 WHERE record = \"17-18\"", "question": "What was the average attendance when the record was 17-18?", "context": "CREATE TABLE table_name_45 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_60 WHERE entrant = \"marlboro brm\" AND chassis = \"brm p160b\"", "question": "What was marlboro brm's lowest points by using brm p160b?", "context": "CREATE TABLE table_name_60 (points INTEGER, entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_47 WHERE year = 1974", "question": "What is the total points in 1974?", "context": "CREATE TABLE table_name_47 (points VARCHAR, year VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_3 WHERE points = 0 AND year = 1974", "question": "Who has 0 points in 1974?", "context": "CREATE TABLE table_name_3 (entrant VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_37 WHERE chassis = \"mclaren m14a\"", "question": "What is the lowest points of using mclaren m14a as chassis?", "context": "CREATE TABLE table_name_37 (points INTEGER, chassis VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_39 WHERE location = \"saint paul\" AND final_score > 14.35 AND event = \"all around\"", "question": "Location of saint paul, and a Final-Score larger than 14.35, and a Event of all around is what sum of year?", "context": "CREATE TABLE table_name_39 (year INTEGER, event VARCHAR, location VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_61 WHERE competition = \"u.s championships\" AND event = \"all around\"", "question": "Competition of u.s championships, and a Event of all around has what average year?", "context": "CREATE TABLE table_name_61 (year INTEGER, competition VARCHAR, event VARCHAR)"}, {"answer": "SELECT film FROM table_name_55 WHERE year = 1970", "question": "What film was in 1970?", "context": "CREATE TABLE table_name_55 (film VARCHAR, year VARCHAR)"}, {"answer": "SELECT lyricist FROM table_name_14 WHERE film = \"mukti\"", "question": "Who wrote the lyrics for Mukti?", "context": "CREATE TABLE table_name_14 (lyricist VARCHAR, film VARCHAR)"}, {"answer": "SELECT song FROM table_name_13 WHERE music_director_s_ = \"shankar jaikishan\"", "question": "What song was directed by Shankar Jaikishan?", "context": "CREATE TABLE table_name_13 (song VARCHAR, music_director_s_ VARCHAR)"}, {"answer": "SELECT song FROM table_name_23 WHERE year > 1976 AND music_director_s_ = \"rahul dev burman\"", "question": "What song was written after 1976 and directed by Rahul Dev Burman?", "context": "CREATE TABLE table_name_23 (song VARCHAR, year VARCHAR, music_director_s_ VARCHAR)"}, {"answer": "SELECT car_s_ FROM table_name_24 WHERE rounds < 12 AND owner_s_ = \"scott deware\"", "question": "What car does Scott Deware own that has rounds under 12?", "context": "CREATE TABLE table_name_24 (car_s_ VARCHAR, rounds VARCHAR, owner_s_ VARCHAR)"}, {"answer": "SELECT city_or_town FROM table_name_92 WHERE top_division_titles = \"17\"", "question": "Which City or town has a Top division titles of 17", "context": "CREATE TABLE table_name_92 (city_or_town VARCHAR, top_division_titles VARCHAR)"}, {"answer": "SELECT city_or_town FROM table_name_70 WHERE number_of_seasons_in_top_division < 40 AND club = \"gaziantepspor\"", "question": "Which City or town has top division smaller than 40 and Gaziantepspor Club ?", "context": "CREATE TABLE table_name_70 (city_or_town VARCHAR, number_of_seasons_in_top_division VARCHAR, club VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_59 WHERE 2008 = \"2r\" AND 2011 = \"1r\"", "question": "What is the 2003 value with 2r in 2008 and 1r in 2011?", "context": "CREATE TABLE table_name_59 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_67 WHERE 2011 = \"2r\" AND 2008 = \"2r\"", "question": "What is the 2007 value with 2r in 2011 and 2r in 2008?", "context": "CREATE TABLE table_name_67 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_36 WHERE 2009 = \"1r\" AND 2011 = \"2r\" AND tournament = \"wimbledon\"", "question": "What is the 2007 value with 1r in 2009 and 2r in 2011 at the Tournament of Wimbledon?", "context": "CREATE TABLE table_name_36 (tournament VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_16 WHERE 2009 = \"1r\" AND tournament = \"australian open\"", "question": "What is the 2003 value with 1r in 2009 at the Australian Open?", "context": "CREATE TABLE table_name_16 (tournament VARCHAR)"}, {"answer": "SELECT wins FROM table_name_20 WHERE stadium = \"richmond cricket ground\"", "question": "How many wins did they have at Richmond Cricket Ground Stadium?", "context": "CREATE TABLE table_name_20 (wins VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_83 WHERE years = \"1905\"", "question": "How many games did they play in 1905?", "context": "CREATE TABLE table_name_83 (played INTEGER, years VARCHAR)"}, {"answer": "SELECT term_in_office FROM table_name_76 WHERE state = \"qld\" AND party = \"labor\" AND electorate = \"fisher\"", "question": "Which term in office has a qld state, a Party of labor, and an Electorate of fisher?", "context": "CREATE TABLE table_name_76 (term_in_office VARCHAR, electorate VARCHAR, state VARCHAR, party VARCHAR)"}, {"answer": "SELECT member FROM table_name_50 WHERE electorate = \"kennedy\"", "question": "Which member has an Electorate of kennedy?", "context": "CREATE TABLE table_name_50 (member VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT party FROM table_name_75 WHERE member = \"david jull\"", "question": "Which Party has a Member of david jull?", "context": "CREATE TABLE table_name_75 (party VARCHAR, member VARCHAR)"}, {"answer": "SELECT term_in_office FROM table_name_65 WHERE electorate = \"hinkler\"", "question": "Which term in office has an Electorate of hinkler?", "context": "CREATE TABLE table_name_65 (term_in_office VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT electorate FROM table_name_31 WHERE state = \"qld\" AND party = \"national\" AND member = \"hon evan adermann\"", "question": "Which Electorate has a State of qld, a Party of national, and a Member of hon evan adermann?", "context": "CREATE TABLE table_name_31 (electorate VARCHAR, member VARCHAR, state VARCHAR, party VARCHAR)"}, {"answer": "SELECT state FROM table_name_48 WHERE term_in_office = \"1984\u20131996\" AND party = \"labor\" AND member = \"robert tickner\"", "question": "Which state has a Term in office of 1984\u20131996, a Party of labor, and a Member of robert tickner?", "context": "CREATE TABLE table_name_48 (state VARCHAR, member VARCHAR, term_in_office VARCHAR, party VARCHAR)"}, {"answer": "SELECT SUM(decile) FROM table_name_44 WHERE authority = \"state\" AND name = \"pokuru school\" AND roll < 109", "question": "What is the total amount of decile with the authority of state around the Pokuru School and a roll smaller than 109?", "context": "CREATE TABLE table_name_44 (decile INTEGER, roll VARCHAR, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_11 WHERE team = \"corvette racing\" AND year = 2004", "question": "Name the most laps for corvette racing in 2004", "context": "CREATE TABLE table_name_11 (laps INTEGER, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT class FROM table_name_67 WHERE pos = \"4th\" AND year < 2006", "question": "Name the class for 4th position with year before 2006", "context": "CREATE TABLE table_name_67 (class VARCHAR, pos VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_17 WHERE pos = \"23rd\"", "question": "Name the total number of laps for 23rd position", "context": "CREATE TABLE table_name_17 (laps VARCHAR, pos VARCHAR)"}, {"answer": "SELECT team FROM table_name_83 WHERE laps < 315 AND co_drivers = \"david brabham franck lagorce\"", "question": "Name the team with laps less than 315 and co-drivers of david brabham franck lagorce?", "context": "CREATE TABLE table_name_83 (team VARCHAR, laps VARCHAR, co_drivers VARCHAR)"}, {"answer": "SELECT team FROM table_name_15 WHERE co_drivers = \"david brabham mario andretti\"", "question": "Name the team for co-drivers of david brabham mario andretti", "context": "CREATE TABLE table_name_15 (team VARCHAR, co_drivers VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_90 WHERE points > 0", "question": "Name the highest year with points more than 0", "context": "CREATE TABLE table_name_90 (year INTEGER, points INTEGER)"}, {"answer": "SELECT MAX(points) FROM table_name_8 WHERE year > 1953", "question": "Name the highest points when year is more than 1953", "context": "CREATE TABLE table_name_8 (points INTEGER, year INTEGER)"}, {"answer": "SELECT engine FROM table_name_38 WHERE points = 0 AND chassis = \"kuzma indy roadster\" AND year = 1954", "question": "Name the engine when points are 0 and chassis is kuzma indy roadster for 1954", "context": "CREATE TABLE table_name_38 (engine VARCHAR, year VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_92 WHERE chassis = \"kurtis kraft 3000\" AND year < 1951", "question": "Name the least points with chassis of kurtis kraft 3000 and year before 1951", "context": "CREATE TABLE table_name_92 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(pioneer) FROM table_name_31 WHERE year = 1966 AND sarina > 4 OFFSET 611", "question": "What is the lowest Pioneer population in 1966 with a Sarina population greater than 4,611?", "context": "CREATE TABLE table_name_31 (pioneer INTEGER, year VARCHAR, sarina VARCHAR)"}, {"answer": "SELECT year FROM table_name_1 WHERE director = \"soroush sehat\"", "question": "What is the year of the TV series directed by Soroush Sehat?", "context": "CREATE TABLE table_name_1 (year VARCHAR, director VARCHAR)"}, {"answer": "SELECT title FROM table_name_54 WHERE character = \"sheyda/ashraf\"", "question": "What is the title of the TV series with a character of Sheyda/Ashraf?", "context": "CREATE TABLE table_name_54 (title VARCHAR, character VARCHAR)"}, {"answer": "SELECT year FROM table_name_88 WHERE character = \"leiloon bala barareh\"", "question": "What is the year of the TV series that has a character of Leiloon Bala Barareh?", "context": "CREATE TABLE table_name_88 (year VARCHAR, character VARCHAR)"}, {"answer": "SELECT title FROM table_name_70 WHERE year = \"2012\"", "question": "What is the title of the TV series in 2012?", "context": "CREATE TABLE table_name_70 (title VARCHAR, year VARCHAR)"}, {"answer": "SELECT publisher FROM table_name_17 WHERE year = \"2014\" AND title = \"star citizen\"", "question": "Who published Star Citizen in 2014?", "context": "CREATE TABLE table_name_17 (publisher VARCHAR, year VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_96 WHERE developer = \"battlecry studios\"", "question": "Which title was developed by Battlecry Studios?", "context": "CREATE TABLE table_name_96 (title VARCHAR, developer VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_66 WHERE date = \"july 13\"", "question": "How many people were at the match on July 13/", "context": "CREATE TABLE table_name_66 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_44 WHERE date = \"july 27\"", "question": "Who was the opponent on July 27?", "context": "CREATE TABLE table_name_44 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_48 WHERE points_for = \"416\" AND club = \"ynysybwl rfc\"", "question": "For Ynysybwl RFC, what was the losing bonus for 416 points?", "context": "CREATE TABLE table_name_48 (losing_bonus VARCHAR, points_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_94 WHERE played = \"22\" AND points_against = \"453\" AND losing_bonus = \"5\"", "question": "For the club that had 453 points against, losing bonus of 5 and played of 22, what is the drawn?", "context": "CREATE TABLE table_name_94 (drawn VARCHAR, losing_bonus VARCHAR, played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_51 WHERE drawn = \"0\" AND tries_for = \"50\"", "question": "For the club that had tries of 50 and drawn of 0, what were the points?", "context": "CREATE TABLE table_name_51 (points_against VARCHAR, drawn VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_71 WHERE points_against = \"546\"", "question": "The club that had 546 points against, what was the losing bonus?", "context": "CREATE TABLE table_name_71 (losing_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT lost FROM table_name_47 WHERE club = \"ynysybwl rfc\"", "question": "What is the lost of Ynysybwl RFC?", "context": "CREATE TABLE table_name_47 (lost VARCHAR, club VARCHAR)"}, {"answer": "SELECT points FROM table_name_41 WHERE \"club\" = \"club\"", "question": "How many points does Club have?", "context": "CREATE TABLE table_name_41 (points VARCHAR)"}, {"answer": "SELECT part_6 FROM table_name_89 WHERE part_4 = \"march 2, 2008\"", "question": "When is Part 6, when Part 4 is on March 2, 2008?", "context": "CREATE TABLE table_name_89 (part_6 VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT title FROM table_name_98 WHERE episode__number > 2 AND part_6 = \"january 6, 2008\"", "question": "What is the Title, when the Episode # is after 2, and when Part 6 is on January 6, 2008?", "context": "CREATE TABLE table_name_98 (title VARCHAR, episode__number VARCHAR, part_6 VARCHAR)"}, {"answer": "SELECT part_2 FROM table_name_44 WHERE part_4 = \"december 9, 2007\"", "question": "When is Part 2, when Part 4 is on December 9, 2007?", "context": "CREATE TABLE table_name_44 (part_2 VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT part_1 FROM table_name_88 WHERE part_4 = \"february 10, 2008\"", "question": "When is Part 1, when Part 4 is on February 10, 2008?", "context": "CREATE TABLE table_name_88 (part_1 VARCHAR, part_4 VARCHAR)"}, {"answer": "SELECT part_2 FROM table_name_42 WHERE part_5 = \"january 24, 2008\"", "question": "When is Part 2, when Part 5 is on January 24, 2008?", "context": "CREATE TABLE table_name_42 (part_2 VARCHAR, part_5 VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_11 WHERE surface = \"hard\"", "question": "Who was the finals opponent on the hard surface tournament?", "context": "CREATE TABLE table_name_11 (opponent_in_the_final VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_46 WHERE tournament = \"curitiba\"", "question": "Which surface was played during Curitiba tournament?", "context": "CREATE TABLE table_name_46 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_92 WHERE event = \"ufc 109\"", "question": "What is the highest round for UFC 109?", "context": "CREATE TABLE table_name_92 (round INTEGER, event VARCHAR)"}, {"answer": "SELECT round FROM table_name_92 WHERE opponent = \"manny gamburyan\"", "question": "What round was the opponent Manny Gamburyan?", "context": "CREATE TABLE table_name_92 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_75 WHERE date = \"december 6, 1964\"", "question": "What was the week of the game played December 6, 1964?", "context": "CREATE TABLE table_name_75 (week INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_27 WHERE against = 2190 AND draws > 0", "question": "What is the fewest losses that had an against score of 2190 and more than 0 draws?", "context": "CREATE TABLE table_name_27 (losses INTEGER, against VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_75 WHERE byes > 0", "question": "What is the fewest number of draws for teams with more than 0 byes?", "context": "CREATE TABLE table_name_75 (draws INTEGER, byes INTEGER)"}, {"answer": "SELECT SUM(losses) FROM table_name_95 WHERE bellarine_fl = \"geelong amateur\" AND byes < 0", "question": "What is the sum of losses for Geelong Amateur, with 0 byes?", "context": "CREATE TABLE table_name_95 (losses INTEGER, bellarine_fl VARCHAR, byes VARCHAR)"}, {"answer": "SELECT SUM(wins) FROM table_name_51 WHERE draws > 0", "question": "What is the sum of the number of wins for teams with more than 0 draws?", "context": "CREATE TABLE table_name_51 (wins INTEGER, draws INTEGER)"}, {"answer": "SELECT stadium FROM table_name_1 WHERE host_team = \"jacksonville jaguars\"", "question": "What is the Stadium that hosts the team Jacksonville Jaguars?", "context": "CREATE TABLE table_name_1 (stadium VARCHAR, host_team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_45 WHERE date = \"november 13\"", "question": "What stadium was used on November 13?", "context": "CREATE TABLE table_name_45 (stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_70 WHERE stadium = \"lincoln financial field\"", "question": "What is the host team with the stadium Lincoln Financial Field?", "context": "CREATE TABLE table_name_70 (host_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_22 WHERE stadium = \"cleveland browns stadium\"", "question": "What team visited the Cleveland Browns Stadium?", "context": "CREATE TABLE table_name_22 (visiting_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_60 WHERE visiting_team = \"denver broncos\"", "question": "What stadium did the Denver Broncos visit?", "context": "CREATE TABLE table_name_60 (stadium VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_10 WHERE stadium = \"jacksonville municipal stadium\"", "question": "What team visited the Jacksonville Municipal Stadium?", "context": "CREATE TABLE table_name_10 (visiting_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT COUNT(boardings_and_deboardings) FROM table_name_68 WHERE city = \"linthicum\"", "question": "How many people boarded and de-boarded the Amtrak in Linthicum?", "context": "CREATE TABLE table_name_68 (boardings_and_deboardings VARCHAR, city VARCHAR)"}, {"answer": "SELECT total FROM table_name_86 WHERE europe = \"00 0 0 (0)\"", "question": "The Europe listing of 00 0 0 (0) also has what listed as the total?", "context": "CREATE TABLE table_name_86 (total VARCHAR, europe VARCHAR)"}, {"answer": "SELECT years FROM table_name_87 WHERE league = \"400 (21)\"", "question": "The league of 400 (21) has what years listed?", "context": "CREATE TABLE table_name_87 (years VARCHAR, league VARCHAR)"}, {"answer": "SELECT other_[c_] FROM table_name_46 WHERE fa_cup = \"0 44 0 (0)\"", "question": "With a FA Cup of 0 44 0 (0), the other [C] is listed as what?", "context": "CREATE TABLE table_name_46 (other_ VARCHAR, c_ VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT league FROM table_name_5 WHERE europe = \"117 0 (8)\"", "question": "The Europe listing of 117 0 (8) belongs to what league?", "context": "CREATE TABLE table_name_5 (league VARCHAR, europe VARCHAR)"}, {"answer": "SELECT fa_cup FROM table_name_36 WHERE other_[c_] = \"0 12 0 (0)\"", "question": "The other [C] of 0 12 0 (0) belongs to what FA Cup?", "context": "CREATE TABLE table_name_36 (fa_cup VARCHAR, other_ VARCHAR, c_ VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_33 WHERE silver = 4 AND edition = \"viii\"", "question": "What is the lowest VIII Edition Gold with a Silver of 4?", "context": "CREATE TABLE table_name_33 (gold INTEGER, silver VARCHAR, edition VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_22 WHERE silver > 10 AND edition = \"i\" AND gold > 9", "question": "What is the highest Edition I Bronze with a Gold higher than 9 and a Silver higher than 10?", "context": "CREATE TABLE table_name_22 (bronze INTEGER, gold VARCHAR, silver VARCHAR, edition VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_1 WHERE host_city = \"mexico city\" AND gold < 4 AND bronze < 2", "question": "What's the Total for a Mexico City game with a Gold of less than 4 and a Bronze of less than 2?", "context": "CREATE TABLE table_name_1 (total VARCHAR, bronze VARCHAR, host_city VARCHAR, gold VARCHAR)"}, {"answer": "SELECT host_city FROM table_name_74 WHERE silver > 6 AND total = 22", "question": "Which Host City has more than 6 Silver and a Total of 22?", "context": "CREATE TABLE table_name_74 (host_city VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT time FROM table_name_75 WHERE release_date = \"8/26/69\" AND track < 19", "question": "What was the time for tracks before 19 on 8/26/69?", "context": "CREATE TABLE table_name_75 (time VARCHAR, release_date VARCHAR, track VARCHAR)"}, {"answer": "SELECT venue FROM table_name_32 WHERE notes = \"am\"", "question": "Which venue has a note of AM?", "context": "CREATE TABLE table_name_32 (venue VARCHAR, notes VARCHAR)"}, {"answer": "SELECT time FROM table_name_12 WHERE date = \"august 16, 2008\"", "question": "What is the time associated with August 16, 2008?", "context": "CREATE TABLE table_name_12 (time VARCHAR, date VARCHAR)"}, {"answer": "SELECT event FROM table_name_44 WHERE venue = \"beijing\"", "question": "Which event was held in Beijing?", "context": "CREATE TABLE table_name_44 (event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT notes FROM table_name_59 WHERE venue = \"rome\" AND date = \"july 30, 2009\"", "question": "For a venue of Rome on July 30, 2009, what are the notes?", "context": "CREATE TABLE table_name_59 (notes VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_35 WHERE date = \"october 9\"", "question": "Name the score for october 9", "context": "CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_90 WHERE series = \"2-2\"", "question": "Name the loss for series 2-2", "context": "CREATE TABLE table_name_90 (loss VARCHAR, series VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_52 WHERE date = \"october 8\"", "question": "Name the total number of attendance for october 8", "context": "CREATE TABLE table_name_52 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT engine FROM table_name_74 WHERE points = 0 AND entrant = \"\u00e9lie bayol\"", "question": "Which engine did \u00c9lie Bayol use when they earned 0 points?", "context": "CREATE TABLE table_name_74 (engine VARCHAR, points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_98 WHERE attendance_g < 3 OFFSET 289", "question": "What season had the highest attendance/g than 3,289?", "context": "CREATE TABLE table_name_98 (season INTEGER, attendance_g INTEGER)"}, {"answer": "SELECT year FROM table_name_23 WHERE pts = 13", "question": "What year had 13 points?", "context": "CREATE TABLE table_name_23 (year VARCHAR, pts VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_95 WHERE year > 1964 AND engine = \"ford\" AND pts = 13", "question": "Which chassis has a year later than 1964, a Ford engine, and 13 points?", "context": "CREATE TABLE table_name_95 (chassis VARCHAR, pts VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_63 WHERE pts < 12 AND engine = \"climax\" AND chassis = \"lotus 24\"", "question": "Which entrant has fewer than 12 points, a Climax engine, and a Lotus 24 chassis?", "context": "CREATE TABLE table_name_63 (entrant VARCHAR, chassis VARCHAR, pts VARCHAR, engine VARCHAR)"}, {"answer": "SELECT MAX(pts) FROM table_name_41 WHERE engine = \"ford\" AND entrant = \"brooke bond oxo team surtees\" AND year = 1972", "question": "In 1972, what was the highest number of points with a Ford engine and an entrant of Brooke Bond Oxo Team Surtees?", "context": "CREATE TABLE table_name_41 (pts INTEGER, year VARCHAR, engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT year FROM table_name_16 WHERE engine = \"ford\" AND pts = 13", "question": "What year had a Ford engine and 13 points?", "context": "CREATE TABLE table_name_16 (year VARCHAR, engine VARCHAR, pts VARCHAR)"}, {"answer": "SELECT erp__analog__digital_ FROM table_name_27 WHERE region_served = \"rockhampton\"", "question": "What is the ERP for the Rockhampton region?", "context": "CREATE TABLE table_name_27 (erp__analog__digital_ VARCHAR, region_served VARCHAR)"}, {"answer": "SELECT channels___analog___digital__ FROM table_name_91 WHERE first_air_date = \"31 december 1990\" AND region_served = \"southern downs\"", "question": "What channels first aired on 31 December 1990 in the Southern Downs region?", "context": "CREATE TABLE table_name_91 (channels___analog___digital__ VARCHAR, first_air_date VARCHAR, region_served VARCHAR)"}, {"answer": "SELECT transmitter_location FROM table_name_95 WHERE city = \"maryborough\"", "question": "What is the transmitter location for city of Maryborough?", "context": "CREATE TABLE table_name_95 (transmitter_location VARCHAR, city VARCHAR)"}, {"answer": "SELECT erp__analog__digital_ FROM table_name_6 WHERE transmitter_location = \"mount goonaneman\"", "question": "What is the ERP for the Mount Goonaneman transmitter?", "context": "CREATE TABLE table_name_6 (erp__analog__digital_ VARCHAR, transmitter_location VARCHAR)"}, {"answer": "SELECT number FROM table_name_41 WHERE males = \"11\"", "question": "Which number has 11 males?", "context": "CREATE TABLE table_name_41 (number VARCHAR, males VARCHAR)"}, {"answer": "SELECT time FROM table_name_19 WHERE lane < 6 AND heat < 4 AND name = \"joanne malar\"", "question": "What is the time for a lane less than 6, and a heat less than 4 for Joanne Malar?", "context": "CREATE TABLE table_name_19 (time VARCHAR, name VARCHAR, lane VARCHAR, heat VARCHAR)"}, {"answer": "SELECT MAX(heat) FROM table_name_98 WHERE time = \"4:57.90\" AND rank > 22", "question": "What is the largest heat with a time of 4:57.90, and a Rank larger than 22?", "context": "CREATE TABLE table_name_98 (heat INTEGER, time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT time FROM table_name_28 WHERE name = \"adi bichman\"", "question": "What is the time for Adi Bichman?", "context": "CREATE TABLE table_name_28 (time VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_76 WHERE opponent = \"new york mets\" AND record = \"18-18\"", "question": "What is the total attendance at games against the New York Mets with a record of 18-18?", "context": "CREATE TABLE table_name_76 (attendance VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_20 WHERE score = \"4-2\"", "question": "What is the total attendance at games with a score of 4-2?", "context": "CREATE TABLE table_name_20 (attendance VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE host_team = \"new york giants\"", "question": "On what date did the New York Giants host a game?", "context": "CREATE TABLE table_name_42 (date VARCHAR, host_team VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_55 WHERE date = \"december 27\"", "question": "Who was the host team for the game on December 27?", "context": "CREATE TABLE table_name_55 (host_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_26 WHERE stadium = \"texas stadium\"", "question": "What was the final score of the game at Texas Stadium?", "context": "CREATE TABLE table_name_26 (final_score VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_67 WHERE stadium = \"hubert h. humphrey metrodome\"", "question": "Who was the visiting team who played at the hubert h. humphrey metrodome stadium?", "context": "CREATE TABLE table_name_67 (visiting_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE visiting_team = \"new england patriots\"", "question": "When did the New England Patriots play as the visiting team?", "context": "CREATE TABLE table_name_23 (date VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_85 WHERE visiting_team = \"los angeles raiders\"", "question": "At which stadium did the Los Angeles Raiders play as the visiting team?", "context": "CREATE TABLE table_name_85 (stadium VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE height = 1.92 AND current_club = \"montepaschi siena\"", "question": "Who is 1.92 m tall and a current club member of Montepaschi Siena", "context": "CREATE TABLE table_name_43 (player VARCHAR, height VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT date FROM table_name_14 WHERE tournament = \"la quinta\"", "question": "Which date has a Tournament of la quinta?", "context": "CREATE TABLE table_name_14 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE surface = \"carpet (i)\"", "question": "Which date has a Surface of carpet (i)?", "context": "CREATE TABLE table_name_44 (date VARCHAR, surface VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_21 WHERE date = \"april 20, 1987\"", "question": "Which tournament has a Date of april 20, 1987?", "context": "CREATE TABLE table_name_21 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_51 WHERE surface = \"hardcourt\" AND outcome = \"runner-up\" AND tournament = \"honolulu\"", "question": "Which Opponent has a Surface of hardcourt, an Outcome of runner-up, and a Tournament of honolulu?", "context": "CREATE TABLE table_name_51 (opponent VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_75 WHERE score = \"6\u20134, 6\u20134\"", "question": "Which Tournament has a Score of 6\u20134, 6\u20134?", "context": "CREATE TABLE table_name_75 (tournament VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE surface = \"hardcourt\" AND date = \"september 30, 1984\"", "question": "Which score has a Surface of hardcourt, and a Date of september 30, 1984?", "context": "CREATE TABLE table_name_39 (score VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(group) FROM table_name_99 WHERE fraction < 0.000748 AND half_life__s_ = 55.72 AND decay_constant__s_\u22121__ > 0.012400000000000001", "question": "What is the lowest group number that has a Fraction less than 0.000748, a Half-Life of 55.72 and a Decay Constant larger than 0.012400000000000001?", "context": "CREATE TABLE table_name_99 (group INTEGER, decay_constant__s_\u22121__ VARCHAR, fraction VARCHAR, half_life__s_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE loss = \"wakefield (5-2)\"", "question": "What was the date of the game with a loss of Wakefield (5-2)?", "context": "CREATE TABLE table_name_26 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_52 WHERE competition = \"european championships\"", "question": "What is the first year of the European Championships competition?", "context": "CREATE TABLE table_name_52 (year INTEGER, competition VARCHAR)"}, {"answer": "SELECT position FROM table_name_40 WHERE venue = \"helsinki, finland\"", "question": "Which position has a venue of Helsinki, Finland?", "context": "CREATE TABLE table_name_40 (position VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE where_sunk = \"east china sea\" AND ship_type = \"hell ship\"", "question": "What is the date that a hell ship sunk in the East China Sea?", "context": "CREATE TABLE table_name_71 (date VARCHAR, where_sunk VARCHAR, ship_type VARCHAR)"}, {"answer": "SELECT nat FROM table_name_39 WHERE ship_type = \"battlecruiser\" AND estimate = \"513\"", "question": "Which nation had a battlecruiser with an estimate of 513?", "context": "CREATE TABLE table_name_39 (nat VARCHAR, ship_type VARCHAR, estimate VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE where_sunk = \"south atlantic\"", "question": "What is the date that a ship sank in the South Atlantic?", "context": "CREATE TABLE table_name_59 (date VARCHAR, where_sunk VARCHAR)"}, {"answer": "SELECT ship_type FROM table_name_77 WHERE name = \"shinano\"", "question": "What type of ship was the Shinano?", "context": "CREATE TABLE table_name_77 (ship_type VARCHAR, name VARCHAR)"}, {"answer": "SELECT nat FROM table_name_24 WHERE name = \"roma\"", "question": "What nation had a ship named Roma?", "context": "CREATE TABLE table_name_24 (nat VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE opponent = \"indians\" AND record = \"21-19\"", "question": "What was score of the Blue Jays' game versus the Indians when their record was 21-19?", "context": "CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_95 WHERE floors < 31 AND street_address = \"211 union street\"", "question": "During what years did the tallest building, located at 211 Union Street, have less than 31 floors?", "context": "CREATE TABLE table_name_95 (years_as_tallest VARCHAR, floors VARCHAR, street_address VARCHAR)"}, {"answer": "SELECT AVG(floors) FROM table_name_76 WHERE street_address = \"170 fourth avenue north\"", "question": "What is the average number of floors at 170 Fourth Avenue North?", "context": "CREATE TABLE table_name_76 (floors INTEGER, street_address VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_94 WHERE name = \"life & casualty tower\"", "question": "What is the address of the Life & Casualty Tower?", "context": "CREATE TABLE table_name_94 (street_address VARCHAR, name VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_43 WHERE home_team = \"gillingham\"", "question": "What is listed as the Tie no for Home team of Gillingham?", "context": "CREATE TABLE table_name_43 (tie_no VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT tie_no FROM table_name_13 WHERE away_team = \"barnet\"", "question": "What is the Tie no listed for the Away team of Barnet?", "context": "CREATE TABLE table_name_13 (tie_no VARCHAR, away_team VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_97 WHERE tie_no = \"5\"", "question": "What is listed for the Attendance that has a Tie no of 5?", "context": "CREATE TABLE table_name_97 (attendance VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_38 WHERE tie_no = \"4\"", "question": "Which Away team has a Tie no of 4?", "context": "CREATE TABLE table_name_38 (away_team VARCHAR, tie_no VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_14 WHERE attendance = \"1,859\"", "question": "Which Home Team has an Attendance of 1,859?", "context": "CREATE TABLE table_name_14 (home_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_8 WHERE home_team = \"bristol rovers\"", "question": "What is listed as the Away team for the Home team of the Bristol Rovers?", "context": "CREATE TABLE table_name_8 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT SUM(first_season_of_current_spell_in_segunda_divisi\u00f3n) FROM table_name_44 WHERE city = \"ca\u00f1ete\"", "question": "What is the total of the first season in Segunda Divisi\u00f3n that has a City of ca\u00f1ete?", "context": "CREATE TABLE table_name_44 (first_season_of_current_spell_in_segunda_divisi\u00f3n INTEGER, city VARCHAR)"}, {"answer": "SELECT team FROM table_name_69 WHERE top_division_titles > 0 AND founded > 1927 AND stadium = \"miguel grau\"", "question": "Which team has Top division titles larger than 0, a Founded larger than 1927, and a Stadium of miguel grau?", "context": "CREATE TABLE table_name_69 (team VARCHAR, stadium VARCHAR, top_division_titles VARCHAR, founded VARCHAR)"}, {"answer": "SELECT city FROM table_name_69 WHERE first_season_of_current_spell_in_segunda_divisi\u00f3n < 2013", "question": "Which city has a First season of current spell in Segunda Divisi\u00f3n smaller than 2013?", "context": "CREATE TABLE table_name_69 (city VARCHAR, first_season_of_current_spell_in_segunda_divisi\u00f3n INTEGER)"}, {"answer": "SELECT MIN(capacity) FROM table_name_11 WHERE first_season_in_segunda_divisi\u00f3n = 2013 AND top_division_titles > 0", "question": "What is the smallest capacity for a First season in Segunda Divisi\u00f3n of 2013, and Top division titles larger than 0?", "context": "CREATE TABLE table_name_11 (capacity INTEGER, first_season_in_segunda_divisi\u00f3n VARCHAR, top_division_titles VARCHAR)"}, {"answer": "SELECT COUNT(enrollment) FROM table_name_99 WHERE institution = \"mcgill university\" AND capacity < 25 OFFSET 012", "question": "What's the total enrollment ofr Mcgill University that has a capacity less than 25,012?", "context": "CREATE TABLE table_name_99 (enrollment VARCHAR, institution VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT MIN(first_season) FROM table_name_8 WHERE city = \"montreal\" AND capacity > 5 OFFSET 100", "question": "What's the smallest season for Montreal that's greater than 5,100 for capacity?", "context": "CREATE TABLE table_name_8 (first_season INTEGER, city VARCHAR, capacity VARCHAR)"}, {"answer": "SELECT city FROM table_name_32 WHERE first_season = 1996", "question": "What's the name of the city whose first season was in 1996?", "context": "CREATE TABLE table_name_32 (city VARCHAR, first_season VARCHAR)"}, {"answer": "SELECT football_stadium FROM table_name_55 WHERE team = \"carabins\"", "question": "What's the name of the carabins stadium?", "context": "CREATE TABLE table_name_55 (football_stadium VARCHAR, team VARCHAR)"}, {"answer": "SELECT best FROM table_name_9 WHERE qual_2 = \"1:44.050\"", "question": "what team has the qual 2 of 1:44.050?", "context": "CREATE TABLE table_name_9 (best VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT name FROM table_name_87 WHERE team = \"forsythe racing\" AND qual_2 = \"1:47.132\"", "question": "what name goes along with the team of forsythe racing, and a Qual 2 of 1:47.132?", "context": "CREATE TABLE table_name_87 (name VARCHAR, team VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT team FROM table_name_82 WHERE qual_2 = \"1:44.027\"", "question": "what team had the 1:44.027 qual 2?", "context": "CREATE TABLE table_name_82 (team VARCHAR, qual_2 VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_25 WHERE name = \"alex tagliani\"", "question": "what is the qual 1 for alex tagliani?", "context": "CREATE TABLE table_name_25 (qual_1 VARCHAR, name VARCHAR)"}, {"answer": "SELECT team FROM table_name_75 WHERE best = \"1:43.134\"", "question": "what is the team with the best of 1:43.134?", "context": "CREATE TABLE table_name_75 (team VARCHAR, best VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_99 WHERE stadium = \"rca dome\"", "question": "Who was the visiting team at the matchup at the RCA Dome?", "context": "CREATE TABLE table_name_99 (visiting_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_11 WHERE host_team = \"detroit lions\"", "question": "What was the final score in the game in which the Detroit Lions were the home team?", "context": "CREATE TABLE table_name_11 (final_score VARCHAR, host_team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_11 WHERE date = \"november 20\"", "question": "Which stadium hosted the November 20 game?", "context": "CREATE TABLE table_name_11 (stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_13 WHERE host_team = \"minnesota vikings\"", "question": "Who was the visiting team against the Minnesota Vikings?", "context": "CREATE TABLE table_name_13 (visiting_team VARCHAR, host_team VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_22 WHERE stadium = \"candlestick park\"", "question": "Who was the host team at Candlestick Park?", "context": "CREATE TABLE table_name_22 (host_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE final_score = \"20-27\"", "question": "Which date had a final score of 20-27?", "context": "CREATE TABLE table_name_58 (date VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_66 WHERE position = \"2nd\"", "question": "How many years have had the position of 2nd?", "context": "CREATE TABLE table_name_66 (year VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_29 WHERE notes = \"20km\" AND year < 2002", "question": "What position had notes of 20km and a year earlier than 2002?", "context": "CREATE TABLE table_name_29 (position VARCHAR, notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT venue FROM table_name_26 WHERE year < 2006 AND position = \"10th\"", "question": "What was the venue before 2006, with the position of 10th?", "context": "CREATE TABLE table_name_26 (venue VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT notes FROM table_name_62 WHERE venue = \"turin, italy\"", "question": "What were the notes when the Venue was Turin, Italy?", "context": "CREATE TABLE table_name_62 (notes VARCHAR, venue VARCHAR)"}, {"answer": "SELECT secondary_military_speciality FROM table_name_21 WHERE real_name = \"gareth morgan\"", "question": "What is Gareth Morgan's Secondary Military Specialty?", "context": "CREATE TABLE table_name_21 (secondary_military_speciality VARCHAR, real_name VARCHAR)"}, {"answer": "SELECT code_name FROM table_name_81 WHERE birthplace = \"hawaii\"", "question": "What is the Code Name of the figure born in Hawaii?", "context": "CREATE TABLE table_name_81 (code_name VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT last_title FROM table_name_9 WHERE area_province = \"greater buenos aires\" AND first_season = \"1920\"", "question": "Name the last title for greater buenos aires and first season of 1920", "context": "CREATE TABLE table_name_9 (last_title VARCHAR, area_province VARCHAR, first_season VARCHAR)"}, {"answer": "SELECT area_province FROM table_name_64 WHERE district = \"c\u00f3rdoba\"", "question": "Name the area for District of c\u00f3rdoba", "context": "CREATE TABLE table_name_64 (area_province VARCHAR, district VARCHAR)"}, {"answer": "SELECT last_title FROM table_name_36 WHERE club = \"quilmes\"", "question": "Name the last title for club of quilmes", "context": "CREATE TABLE table_name_36 (last_title VARCHAR, club VARCHAR)"}, {"answer": "SELECT last_title FROM table_name_11 WHERE club = \"newell's old boys\"", "question": "Name the last time for club of newell's old boys", "context": "CREATE TABLE table_name_11 (last_title VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(scored) FROM table_name_64 WHERE competition = \"2011 long teng cup\" AND date = \"2 october 2011\"", "question": "Name the averag scored for 2011 long teng cup and 2 october 2011", "context": "CREATE TABLE table_name_64 (scored INTEGER, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT barrel_twist FROM table_name_63 WHERE barrel_length = \"11.5 in.\"", "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 AVG(year) FROM table_name_27 WHERE inglewood < 2 OFFSET 575", "question": "What is the average year that had a value less than 2,575 in Inglewood?", "context": "CREATE TABLE table_name_27 (year INTEGER, inglewood INTEGER)"}, {"answer": "SELECT nature_of_incident FROM table_name_62 WHERE location = \"kabul\" AND date = \"2004-01-28\"", "question": "What is the nature of the incident in Kabul on 2004-01-28?", "context": "CREATE TABLE table_name_62 (nature_of_incident VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT nature_of_incident FROM table_name_69 WHERE circumstances = \"bomb attack\"", "question": "What is the nature of the incident that's a bomb attack?", "context": "CREATE TABLE table_name_69 (nature_of_incident VARCHAR, circumstances VARCHAR)"}, {"answer": "SELECT nature_of_incident FROM table_name_93 WHERE casualties = \"3 wia\" AND circumstances = \"ied\"", "question": "What is the nature of the incident with Casualties of 3 wia, and Circumstances of ied?", "context": "CREATE TABLE table_name_93 (nature_of_incident VARCHAR, casualties VARCHAR, circumstances VARCHAR)"}, {"answer": "SELECT casualties FROM table_name_24 WHERE location = \"kunduz\" AND circumstances = \"suicide\"", "question": "Which Casualties have a Location of kunduz, and Circumstances of suicide?", "context": "CREATE TABLE table_name_24 (casualties VARCHAR, location VARCHAR, circumstances VARCHAR)"}, {"answer": "SELECT casualties FROM table_name_67 WHERE nature_of_incident = \"hostile\" AND circumstances = \"mortar attack\"", "question": "Which Casualties have a hostile Nature of incident and Circumstances of mortar attack?", "context": "CREATE TABLE table_name_67 (casualties VARCHAR, nature_of_incident VARCHAR, circumstances VARCHAR)"}, {"answer": "SELECT born_in FROM table_name_36 WHERE former_experience = \"commissioner of health\"", "question": "When was the delegate who has previous experience as a commissioner of health born?", "context": "CREATE TABLE table_name_36 (born_in VARCHAR, former_experience VARCHAR)"}, {"answer": "SELECT airport FROM table_name_85 WHERE city = \"kota kinabalu\"", "question": "What is the name of the airport in the city of Kota Kinabalu?", "context": "CREATE TABLE table_name_85 (airport VARCHAR, city VARCHAR)"}, {"answer": "SELECT iata FROM table_name_23 WHERE city = \"amsterdam\"", "question": "What is the IATA for the city of Amsterdam?", "context": "CREATE TABLE table_name_23 (iata VARCHAR, city VARCHAR)"}, {"answer": "SELECT country FROM table_name_3 WHERE iata = \"jfk\"", "question": "Which country has an IATA of JFK?", "context": "CREATE TABLE table_name_3 (country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT city FROM table_name_42 WHERE iata = \"auh\"", "question": "Which city has an IATA of AUH?", "context": "CREATE TABLE table_name_42 (city VARCHAR, iata VARCHAR)"}, {"answer": "SELECT airport FROM table_name_39 WHERE iata = \"ams\"", "question": "Which airport has an IATA of AMS?", "context": "CREATE TABLE table_name_39 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT city FROM table_name_59 WHERE icao = \"kiah\"", "question": "Which city has an ICAO of Kiah?", "context": "CREATE TABLE table_name_59 (city VARCHAR, icao VARCHAR)"}, {"answer": "SELECT genre FROM table_name_88 WHERE directed_by = \"s\u00e1ndor sim\u00f3\"", "question": "What Genre did S\u00e1ndor Sim\u00f3 direct?", "context": "CREATE TABLE table_name_88 (genre VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT genre FROM table_name_12 WHERE original_title = \"malina (ger.-aus.-fr.)\"", "question": "What is the Genre for Malina (ger.-aus.-fr.), an Original Title?", "context": "CREATE TABLE table_name_12 (genre VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_91 WHERE title_in_english = \"the last metro\"", "question": "The Last Metro refers to which Original Title?", "context": "CREATE TABLE table_name_91 (original_title VARCHAR, title_in_english VARCHAR)"}, {"answer": "SELECT genre FROM table_name_48 WHERE role = \"episode actor\" AND original_title = \"franciska vas\u00e1rnapjai (hungarian)\"", "question": "What original title, Franciska Vas\u00e1rnapjai (hungarian), had an Episode Actor role which was Directed by G\u00e9za Berem\u00e9nyi?", "context": "CREATE TABLE table_name_48 (genre VARCHAR, role VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_59 WHERE role = \"episode actor\" AND directed_by = \"g\u00e9za berem\u00e9nyi\"", "question": "What is the Original title for an Episode Actor role which was Directed by G\u00e9za Berem\u00e9nyi?", "context": "CREATE TABLE table_name_59 (original_title VARCHAR, role VARCHAR, directed_by VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_13 WHERE name = \"bob randall\"", "question": "What is the round for bob randall?", "context": "CREATE TABLE table_name_13 (round INTEGER, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_96 WHERE signed = \"yes\" AND round < 24 AND name = \"charlie hough\"", "question": "what is the position when signed is yes, round is less than 24 and name is charlie hough?", "context": "CREATE TABLE table_name_96 (position VARCHAR, name VARCHAR, signed VARCHAR, round VARCHAR)"}, {"answer": "SELECT school FROM table_name_26 WHERE signed = \"no\" AND round = 50", "question": "what is the school when signed is no and round is 50?", "context": "CREATE TABLE table_name_26 (school VARCHAR, signed VARCHAR, round VARCHAR)"}, {"answer": "SELECT school FROM table_name_68 WHERE round = 8", "question": "what is the school for round 8?", "context": "CREATE TABLE table_name_68 (school VARCHAR, round VARCHAR)"}, {"answer": "SELECT position FROM table_name_25 WHERE name = \"robert johnson\"", "question": "what is the position for robert johnson?", "context": "CREATE TABLE table_name_25 (position VARCHAR, name VARCHAR)"}, {"answer": "SELECT signed FROM table_name_48 WHERE position = \"ss\" AND school = \"carson city high school\"", "question": "Was position ss from carson city high school signed?", "context": "CREATE TABLE table_name_48 (signed VARCHAR, position VARCHAR, school VARCHAR)"}, {"answer": "SELECT AVG(yards) FROM table_name_46 WHERE starts > 12", "question": "What was the average number of yards Michael Henig had in a year when he had more than 12 starts/", "context": "CREATE TABLE table_name_46 (yards INTEGER, starts INTEGER)"}, {"answer": "SELECT AVG(starts) FROM table_name_54 WHERE yards > 1201", "question": "What was the average number of starts Michael Henig had in a year when he had more than 1201 yards?", "context": "CREATE TABLE table_name_54 (starts INTEGER, yards INTEGER)"}, {"answer": "SELECT airport FROM table_name_64 WHERE iata = \"cxb\"", "question": "Name the airport with IATA of cxb", "context": "CREATE TABLE table_name_64 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT airport FROM table_name_74 WHERE iata = \"dmk\"", "question": "Name the airport with IATA of dmk", "context": "CREATE TABLE table_name_74 (airport VARCHAR, iata VARCHAR)"}, {"answer": "SELECT city FROM table_name_15 WHERE airport = \"singapore changi airport\"", "question": "Name the city that has singapore changi airport", "context": "CREATE TABLE table_name_15 (city VARCHAR, airport VARCHAR)"}, {"answer": "SELECT icao FROM table_name_22 WHERE iata = \"zyl\"", "question": "Name the ICAO for when IATA is zyl", "context": "CREATE TABLE table_name_22 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT icao FROM table_name_69 WHERE iata = \"rgn\"", "question": "Name the ICAO for IATA of rgn", "context": "CREATE TABLE table_name_69 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT icao FROM table_name_62 WHERE iata = \"ccu\"", "question": "Name the ICAO for IATA of ccu", "context": "CREATE TABLE table_name_62 (icao VARCHAR, iata VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_90 WHERE total > 16", "question": "What is the largest gold with a Total larger than 16?", "context": "CREATE TABLE table_name_90 (gold INTEGER, total INTEGER)"}, {"answer": "SELECT MAX(silver) FROM table_name_79 WHERE total < 2 AND bronze < 1 AND nation = \"yugoslavia\"", "question": "What is the largest silver with a Total smaller than 2, a Bronze smaller than 1, and a Nation of yugoslavia?", "context": "CREATE TABLE table_name_79 (silver INTEGER, nation VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_58 WHERE nation = \"west germany\" AND gold > 0", "question": "What is the smallest bronze with a Nation of west germany, and a Gold larger than 0?", "context": "CREATE TABLE table_name_58 (bronze INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT record FROM table_name_34 WHERE date = \"july 2\"", "question": "What was the record on July 2?", "context": "CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(silver) FROM table_name_63 WHERE gold < 0", "question": "What is the largest silver with less than 0 gold?", "context": "CREATE TABLE table_name_63 (silver INTEGER, gold INTEGER)"}, {"answer": "SELECT AVG(total_viewers) FROM table_name_96 WHERE share = \"17.6%\"", "question": "What's the average total viewers that has 17.6% Share?", "context": "CREATE TABLE table_name_96 (total_viewers INTEGER, share VARCHAR)"}, {"answer": "SELECT share FROM table_name_84 WHERE episode_no = 1", "question": "What's the share of Episode 1?", "context": "CREATE TABLE table_name_84 (share VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_97 WHERE withdrawn = \"1913\"", "question": "How many locomotives were made that were withdrawn in 1913?", "context": "CREATE TABLE table_name_97 (quantity_made VARCHAR, withdrawn VARCHAR)"}, {"answer": "SELECT date_made FROM table_name_9 WHERE type = \"0-4-2\"", "question": "What is the date of creation for the locomotive having a type of 0-4-2", "context": "CREATE TABLE table_name_9 (date_made VARCHAR, type VARCHAR)"}, {"answer": "SELECT date_made FROM table_name_31 WHERE type = \"0-6-0\" AND gsr_class = \"441\"", "question": "What is the date of creation of the locomotive of type 0-6-0 and GSR class of 441?", "context": "CREATE TABLE table_name_31 (date_made VARCHAR, type VARCHAR, gsr_class VARCHAR)"}, {"answer": "SELECT venue FROM table_name_20 WHERE round = \"19\" AND player = \"tony lockett\"", "question": "In Round 19, where did Tony Lockett play?", "context": "CREATE TABLE table_name_20 (venue VARCHAR, round VARCHAR, player VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_17 WHERE year = \"1992\"", "question": "Who is the opponent in 1992?", "context": "CREATE TABLE table_name_17 (opponent VARCHAR, year VARCHAR)"}, {"answer": "SELECT club FROM table_name_87 WHERE score = \"18.1\"", "question": "What club had a score of 18.1?", "context": "CREATE TABLE table_name_87 (club VARCHAR, score VARCHAR)"}, {"answer": "SELECT COUNT(built) FROM table_name_51 WHERE withdrawn = 1967 AND br_sr_no = \"w27\" AND to_iow < 1926", "question": "What is the number for year built of W27 that was withdrawn in 1967 with a To LoW year earlier than 1926?", "context": "CREATE TABLE table_name_51 (built VARCHAR, to_iow VARCHAR, withdrawn VARCHAR, br_sr_no VARCHAR)"}, {"answer": "SELECT COUNT(withdrawn) FROM table_name_19 WHERE lswr_no > 210 AND to_iow = 1923", "question": "What is the number of the year withdrawn for a LSWR number greater than 210 and a To LoW year of 1923?", "context": "CREATE TABLE table_name_19 (withdrawn VARCHAR, lswr_no VARCHAR, to_iow VARCHAR)"}, {"answer": "SELECT br_sr_no FROM table_name_25 WHERE withdrawn = 1967 AND built < 1892 AND to_iow > 1927 AND sr_name = \"freshwater\"", "question": "What is the BR/SR number of Freshwater which was withdrawn in 1967 and built before 1892 with a To LoW year after 1927?", "context": "CREATE TABLE table_name_25 (br_sr_no VARCHAR, sr_name VARCHAR, to_iow VARCHAR, withdrawn VARCHAR, built VARCHAR)"}, {"answer": "SELECT engine FROM table_name_76 WHERE year < 1977", "question": "Name the engine for year less than 1977", "context": "CREATE TABLE table_name_76 (engine VARCHAR, year INTEGER)"}, {"answer": "SELECT start FROM table_name_70 WHERE year < 1977", "question": "Name the start for year less than 1977", "context": "CREATE TABLE table_name_70 (start VARCHAR, year INTEGER)"}, {"answer": "SELECT MIN(year) FROM table_name_13 WHERE start = \"17th\"", "question": "Name the least year for start of 17th", "context": "CREATE TABLE table_name_13 (year INTEGER, start VARCHAR)"}, {"answer": "SELECT start FROM table_name_39 WHERE finish = \"21st\"", "question": "Name the start for finish being 21st", "context": "CREATE TABLE table_name_39 (start VARCHAR, finish VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_52 WHERE network = \"omni television\" AND digital_psip = 14.1", "question": "What is the Call sign of the Omni television network with a Digitial PSIP of 14.1?", "context": "CREATE TABLE table_name_52 (call_sign VARCHAR, network VARCHAR, digital_psip VARCHAR)"}, {"answer": "SELECT COUNT(rogers_cable__ottawa_) FROM table_name_58 WHERE digital_psip > 9.1 AND vid\u00e9otron__gatineau_ = 14", "question": "What's the total number of Rogers Cable (Ottawa) channels that have a Digital PSIP greater than 9.1, and a Vid\u00e9otron (Gatineau) of channel 14?", "context": "CREATE TABLE table_name_58 (rogers_cable__ottawa_ VARCHAR, digital_psip VARCHAR, vid\u00e9otron__gatineau_ VARCHAR)"}, {"answer": "SELECT network FROM table_name_26 WHERE vid\u00e9otron__gatineau_ < 8 AND rogers_cable__ottawa_ < 8 AND call_sign = \"cjoh-dt\"", "question": "Which Network is on a Vid\u00e9otron (Gatineau)  channel lower than 8 and a Rogers Cable (Ottawa) channel lower than 8 and has a Call Sign of cjoh-dt?", "context": "CREATE TABLE table_name_26 (network VARCHAR, call_sign VARCHAR, vid\u00e9otron__gatineau_ VARCHAR, rogers_cable__ottawa_ VARCHAR)"}, {"answer": "SELECT record FROM table_name_35 WHERE time = \"8:17\"", "question": "What was the record after the fight that lasted 8:17?", "context": "CREATE TABLE table_name_35 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT res FROM table_name_27 WHERE opponent = \"tony halme\"", "question": "What was the result of the fight with Tony Halme?", "context": "CREATE TABLE table_name_27 (res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_44 WHERE date = \"august 26\"", "question": "Who did they play on August 26?", "context": "CREATE TABLE table_name_44 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_74 WHERE date = \"august 16\"", "question": "What was the attendance for the game on August 16?", "context": "CREATE TABLE table_name_74 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_60 WHERE loss = \"johnson (11-7)\"", "question": "What team did Johnson (11-7) play for?", "context": "CREATE TABLE table_name_60 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(pts) FROM table_name_51 WHERE engine = \"cosworth straight-4\"", "question": "What is the highest number of points the cosworth straight-4 engine scored?", "context": "CREATE TABLE table_name_51 (pts INTEGER, engine VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_13 WHERE entrant = \"shadow racing team\" AND pts > 0", "question": "What is the latest year that shadow racing team scored more than 0 points?", "context": "CREATE TABLE table_name_13 (year INTEGER, entrant VARCHAR, pts VARCHAR)"}, {"answer": "SELECT round FROM table_name_43 WHERE location = \"palavas-les-flots , herault , france\"", "question": "What round was held in palavas-les-flots , herault , france?", "context": "CREATE TABLE table_name_43 (round VARCHAR, location VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_33 WHERE team_2 = \"valencia\"", "question": "What is the second leg that Valencia was on?", "context": "CREATE TABLE table_name_33 (team_2 VARCHAR)"}, {"answer": "SELECT loss FROM table_name_68 WHERE record = \"14-19\"", "question": "Name the loss with record of 14-19", "context": "CREATE TABLE table_name_68 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE record = \"17-27\"", "question": "Name the score with record of 17-27", "context": "CREATE TABLE table_name_6 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_20 WHERE record = \"12-18\"", "question": "Name the opponent with record of 12-18", "context": "CREATE TABLE table_name_20 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_90 WHERE winner = \"pascal richard\"", "question": "Who was the General classification when Pascal Richard was the winner?", "context": "CREATE TABLE table_name_90 (general_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_20 WHERE stage = \"13\"", "question": "Who had the Points classification for Stage 13?", "context": "CREATE TABLE table_name_20 (points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_71 WHERE mountains_classification = \"pascal richard\" AND winner = \"vladimir poulnikov\"", "question": "What was the Stage when Pascal Richard had the Mountains classification and Vladimir Poulnikov won?", "context": "CREATE TABLE table_name_71 (stage VARCHAR, mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT SUM(score) FROM table_name_39 WHERE player = \"danny edwards\"", "question": "What's the total score of Danny Edwards?", "context": "CREATE TABLE table_name_39 (score INTEGER, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_20 WHERE score = 70 AND country = \"australia\"", "question": "Where was the place in Australia that had a score of 70?", "context": "CREATE TABLE table_name_20 (place VARCHAR, score VARCHAR, country VARCHAR)"}, {"answer": "SELECT episode FROM table_name_28 WHERE entrepreneur_s_ = \"adam weaver\"", "question": "The entrepreneur Adam Weaver was featured in which episode?", "context": "CREATE TABLE table_name_28 (episode VARCHAR, entrepreneur_s_ VARCHAR)"}, {"answer": "SELECT episode FROM table_name_60 WHERE entrepreneur_s_ = \"layla bennett\"", "question": "The entrepreneur Layla Bennett was featured in which episode?", "context": "CREATE TABLE table_name_60 (episode VARCHAR, entrepreneur_s_ VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_29 WHERE rank > 9", "question": "What is the highest population of the region with a rank bigger than 9?", "context": "CREATE TABLE table_name_29 (population INTEGER, rank INTEGER)"}, {"answer": "SELECT AVG(population) FROM table_name_24 WHERE density__pop_per_km_2__ < 487 AND rank = 9 AND area__km_2__ > 377 OFFSET 944", "question": "What is the average population of the region with a density less than 487, a rank of 9, and an area larger than 377,944?", "context": "CREATE TABLE table_name_24 (population INTEGER, area__km_2__ VARCHAR, density__pop_per_km_2__ VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(tdp___w__) FROM table_name_3 WHERE codename = \"sb850\"", "question": "What is the TDP (w) of the chipset with a codename sb850?", "context": "CREATE TABLE table_name_3 (tdp___w__ VARCHAR, codename VARCHAR)"}, {"answer": "SELECT round FROM table_name_46 WHERE score < 21.5", "question": "Which round is a lower score than 21.5?", "context": "CREATE TABLE table_name_46 (round VARCHAR, score INTEGER)"}, {"answer": "SELECT round FROM table_name_25 WHERE status = \"in\" AND song = \"\u53f6\u826f\u4fca - \u7231\u4f60\u4e0d\u662f\u7231\u7ed9\u522b\u4eba\u770b\"", "question": "Which round status is in with this song: \u53f6\u826f\u4fca - \u7231\u4f60\u4e0d\u662f\u7231\u7ed9\u522b\u4eba\u770b?", "context": "CREATE TABLE table_name_25 (round VARCHAR, status VARCHAR, song VARCHAR)"}, {"answer": "SELECT status FROM table_name_94 WHERE score = 21.5", "question": "Which status accompanies the score 21.5?", "context": "CREATE TABLE table_name_94 (status VARCHAR, score VARCHAR)"}, {"answer": "SELECT name FROM table_name_86 WHERE score > 22 AND song = \"\u6797\u4fca\u6770 - \u6728\u4e43\u4f0a\"", "question": "Wjat score is greater than 22 with this song: \u6797\u4fca\u6770 - \u6728\u4e43\u4f0a?", "context": "CREATE TABLE table_name_86 (name VARCHAR, score VARCHAR, song VARCHAR)"}, {"answer": "SELECT round FROM table_name_18 WHERE song = \"\u9676\u5586\u3001\u8521\u4f9d\u6797 - \u4eca\u5929\u4f60\u8981\u5ac1\u7ed9\u6211/\u66f9\u683c - \u4e16\u754c\u552f\u4e00\u7684\u4f60\"", "question": "What round has this song: \u9676\u5586\u3001\u8521\u4f9d\u6797 - \u4eca\u5929\u4f60\u8981\u5ac1\u7ed9\u6211/\u66f9\u683c - \u4e16\u754c\u552f\u4e00\u7684\u4f60?", "context": "CREATE TABLE table_name_18 (round VARCHAR, song VARCHAR)"}, {"answer": "SELECT artist FROM table_name_88 WHERE draw < 2", "question": "What is the artist with less than a 2 draw?", "context": "CREATE TABLE table_name_88 (artist VARCHAR, draw INTEGER)"}, {"answer": "SELECT AVG(issue_price) FROM table_name_73 WHERE special_notes = \"from toronto maple leafs gift set\" AND mintage = \"3527\"", "question": "What is the average issue price with from Toronto maple leafs gift set, and a Mintage of 3527?", "context": "CREATE TABLE table_name_73 (issue_price INTEGER, special_notes VARCHAR, mintage VARCHAR)"}, {"answer": "SELECT theme FROM table_name_91 WHERE mintage = \"3527\"", "question": "What theme has a mintage of 3527?", "context": "CREATE TABLE table_name_91 (theme VARCHAR, mintage VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_45 WHERE mintage = \"1264\" AND issue_price > 24.95", "question": "When was a mintage of 1264 with more than 24.95 issued?", "context": "CREATE TABLE table_name_45 (year INTEGER, mintage VARCHAR, issue_price VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_96 WHERE entrant = \"team motul brm\" AND chassis = \"brm p201\" AND points < 0", "question": "Name the most year for team motul brm and chassis of brm p201 and points less than 0", "context": "CREATE TABLE table_name_96 (year INTEGER, points VARCHAR, entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_25 WHERE year = 1975 AND chassis = \"hill gh1\"", "question": "Name the entrant for 1975 and chassis of hill gh1", "context": "CREATE TABLE table_name_25 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_49 WHERE engine = \"brm v12\"", "question": "Name the chassis for engine of brm v12", "context": "CREATE TABLE table_name_49 (chassis VARCHAR, engine VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_96 WHERE points > 0", "question": "Name the most year for points more than 0", "context": "CREATE TABLE table_name_96 (year INTEGER, points INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_32 WHERE chassis = \"brm p160e\" AND year > 1974", "question": "Name the sum of points for chassis of brm p160e and year more than 1974", "context": "CREATE TABLE table_name_32 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_64 WHERE year > 1991", "question": "What is the chassis after 1991?", "context": "CREATE TABLE table_name_64 (chassis VARCHAR, year INTEGER)"}, {"answer": "SELECT AVG(points) FROM table_name_54 WHERE year > 1992", "question": "What are the average points after 1992?", "context": "CREATE TABLE table_name_54 (points INTEGER, year INTEGER)"}, {"answer": "SELECT SUM(points) FROM table_name_29 WHERE year = 1991 AND chassis = \"footwork a11c\"", "question": "What is the sum of points in 1991, for footwork a11c chassis?", "context": "CREATE TABLE table_name_29 (points INTEGER, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_43 WHERE entrant = \"martini racing\" AND engine = \"alfa romeo flat-12\" AND chassis = \"brabham bt45\" AND year = 1976", "question": "How many points does an entrant of Martini Racing, the engine of an Alfa Romeo flat-12 a chassis of brabham bt45, and the year 1976 have?", "context": "CREATE TABLE table_name_43 (points VARCHAR, year VARCHAR, chassis VARCHAR, entrant VARCHAR, engine VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_35 WHERE year = 1974 AND entrant = \"goldie hexagon racing\"", "question": "Which chassis is from 1974 and was an entrant of Goldie Hexagon racing?", "context": "CREATE TABLE table_name_35 (chassis VARCHAR, year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_23 WHERE engine = \"cosworth v8\" AND year = 1973", "question": "What is the average points of a Cosworth v8 engine in 1973.", "context": "CREATE TABLE table_name_23 (points INTEGER, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_76 WHERE engine = \"alfa romeo flat-12\"", "question": "Which chassis has an Alfa Romeo flat-12 engine.", "context": "CREATE TABLE table_name_76 (chassis VARCHAR, engine VARCHAR)"}, {"answer": "SELECT score FROM table_name_87 WHERE attendance = \"32,036\"", "question": "What was the score of the game that had an attendance of 32,036?", "context": "CREATE TABLE table_name_87 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE record = \"46-34\"", "question": "On what date did the result leave the team with a record of 46-34?", "context": "CREATE TABLE table_name_4 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_37 WHERE round = \"1\" AND time = \"n/a\"", "question": "Name the opponent with round of 1 and time of n/a", "context": "CREATE TABLE table_name_37 (opponent VARCHAR, round VARCHAR, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_71 WHERE opponent = \"christian nielson\"", "question": "Name the record with opponent of christian nielson", "context": "CREATE TABLE table_name_71 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_59 WHERE method = \"decision\"", "question": "Name the opponent with decision", "context": "CREATE TABLE table_name_59 (opponent VARCHAR, method VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_name_53 WHERE year = \"2011\"", "question": "What was the 3rd place value in 2011?", "context": "CREATE TABLE table_name_53 (year VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_92 WHERE points_against = \"583\"", "question": "Name the tries for points against of 583", "context": "CREATE TABLE table_name_92 (tries_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_73 WHERE played = \"22\" AND tries_for = \"91\"", "question": "Nam the points for when tries for is 91 and played of 22", "context": "CREATE TABLE table_name_73 (points_for VARCHAR, played VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_95 WHERE tries_for = \"42\"", "question": "Name the drawn for tries for of 42", "context": "CREATE TABLE table_name_95 (drawn VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_60 WHERE tries_against = \"36\" AND points = \"66\"", "question": "Name the Drawn for tries against of 36 and points of 66", "context": "CREATE TABLE table_name_60 (drawn VARCHAR, tries_against VARCHAR, points VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_92 WHERE lost = \"10\"", "question": "Name the Try bonus with lost of 10", "context": "CREATE TABLE table_name_92 (try_bonus VARCHAR, lost VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_97 WHERE points_against = \"450\"", "question": "Name the points for when points against is of 450", "context": "CREATE TABLE table_name_97 (points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_3 WHERE team_2 = \"aurora\"", "question": "What was the 1st leg when Team 2 was Aurora?", "context": "CREATE TABLE table_name_3 (team_2 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_57 WHERE team_1 = \"chicago croatian\"", "question": "What was the 2nd leg when Team 1 was Chicago Croatian?", "context": "CREATE TABLE table_name_57 (team_1 VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_88 WHERE team_1 = \"am\u00e9rica\"", "question": "Who was Team 2 when Team 1 was Am\u00e9rica?", "context": "CREATE TABLE table_name_88 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_55 WHERE nhl_team = \"montreal canadiens\" AND pick__number = \"25\"", "question": "Which nationality do the Montreal Canadiens belong to with a pick# of 25?", "context": "CREATE TABLE table_name_55 (nationality VARCHAR, nhl_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_92 WHERE nhl_team = \"california golden seals\"", "question": "What is the pick# for the California Golden Seals?", "context": "CREATE TABLE table_name_92 (pick__number VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT AVG(goal) FROM table_name_81 WHERE venue = \"stade roi baudouin, brussels\"", "question": "What was the Goal in Stade Roi Baudouin, Brussels?", "context": "CREATE TABLE table_name_81 (goal INTEGER, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_48 WHERE competition = \"friendly\" AND goal > 2", "question": "What Venue had 2 or more Goals in a Friendly Competition?", "context": "CREATE TABLE table_name_48 (venue VARCHAR, competition VARCHAR, goal VARCHAR)"}, {"answer": "SELECT MAX(site) FROM table_name_42 WHERE sex_and_other_data = \"old male\"", "question": "Which Site that has a Sex and other data of old male?", "context": "CREATE TABLE table_name_42 (site INTEGER, sex_and_other_data VARCHAR)"}, {"answer": "SELECT age_groups FROM table_name_40 WHERE sport = \"figure skating\"", "question": "What is the age group for figure skating?", "context": "CREATE TABLE table_name_40 (age_groups VARCHAR, sport VARCHAR)"}, {"answer": "SELECT sport FROM table_name_58 WHERE age_groups = \"21 or younger\" AND competition_name = \"world youth netball championships\"", "question": "what is the sport when the age group is 21 or younger and the competition name is world youth netball championships?", "context": "CREATE TABLE table_name_58 (sport VARCHAR, age_groups VARCHAR, competition_name VARCHAR)"}, {"answer": "SELECT competition_name FROM table_name_42 WHERE age_groups = \"17 or younger\" AND sport = \"athletics\"", "question": "what is the competition name when the age group is 17 or younger for athletics?", "context": "CREATE TABLE table_name_42 (competition_name VARCHAR, age_groups VARCHAR, sport VARCHAR)"}, {"answer": "SELECT competing_entities FROM table_name_37 WHERE age_groups = \"18 or younger\" AND held_every = \"one year\" AND sport = \"table tennis\"", "question": "what is the competing entities when the age group is 18 or younger, held every is one year and the sport is table tennis?", "context": "CREATE TABLE table_name_37 (competing_entities VARCHAR, sport VARCHAR, age_groups VARCHAR, held_every VARCHAR)"}, {"answer": "SELECT result FROM table_name_9 WHERE episode = \"top 3\" AND original_artist = \"janis ian\"", "question": "What result did Janis Ian have in the episode of top 3?", "context": "CREATE TABLE table_name_9 (result VARCHAR, episode VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT result FROM table_name_39 WHERE episode = \"top 8\"", "question": "What was the result of the singer with the top 8?", "context": "CREATE TABLE table_name_39 (result VARCHAR, episode VARCHAR)"}, {"answer": "SELECT song_choice FROM table_name_72 WHERE episode = \"top 8\"", "question": "What song was chosen for the episode with the top 8?", "context": "CREATE TABLE table_name_72 (song_choice VARCHAR, episode VARCHAR)"}, {"answer": "SELECT episode FROM table_name_10 WHERE result = \"safe\" AND order__number = \"5\" AND original_artist = \"hoagy carmichael\"", "question": "Which episode had Hoagy carmichael safe with an order of 5?", "context": "CREATE TABLE table_name_10 (episode VARCHAR, original_artist VARCHAR, result VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT order__number FROM table_name_30 WHERE result = \"bottom 3\" AND original_artist = \"bee gees\"", "question": "In what order were the Bee Gees as the artist when it was a result of bottom 3?", "context": "CREATE TABLE table_name_30 (order__number VARCHAR, result VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_37 WHERE language = \"danish\" AND artist = \"mathias\"", "question": "Name the total number of drawn for danish and mathias", "context": "CREATE TABLE table_name_37 (draw VARCHAR, language VARCHAR, artist VARCHAR)"}, {"answer": "SELECT result FROM table_name_63 WHERE artist = \"linn nyg\u00e5rd\"", "question": "Name the result for linn nyg\u00e5rd", "context": "CREATE TABLE table_name_63 (result VARCHAR, artist VARCHAR)"}, {"answer": "SELECT song FROM table_name_42 WHERE draw < 7 AND artist = \"martin & johannes\"", "question": "Name the song for draw less than 7 and artists of martin & johannes", "context": "CREATE TABLE table_name_42 (song VARCHAR, draw VARCHAR, artist VARCHAR)"}, {"answer": "SELECT np___nnp FROM table_name_73 WHERE acdp = 1 AND others = 1 AND dp___da = 5", "question": "Name the NP/NNP for ACDP of 1 and others of 1 and DP/DA of 5", "context": "CREATE TABLE table_name_73 (np___nnp VARCHAR, dp___da VARCHAR, acdp VARCHAR, others VARCHAR)"}, {"answer": "SELECT player FROM table_name_43 WHERE money___$__ < 335", "question": "Which player won less than $335?", "context": "CREATE TABLE table_name_43 (player VARCHAR, money___$__ INTEGER)"}, {"answer": "SELECT place FROM table_name_43 WHERE country = \"australia\"", "question": "What was the place ranking for the player from Australia?", "context": "CREATE TABLE table_name_43 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_74 WHERE player = \"ed oliver\"", "question": "How much money did the player Ed Oliver win?", "context": "CREATE TABLE table_name_74 (money___ INTEGER, player VARCHAR)"}, {"answer": "SELECT competition FROM table_name_54 WHERE year > 1982 AND opponent = \"parramatta eels\"", "question": "What competition did Parramatta Eels join after 1982?", "context": "CREATE TABLE table_name_54 (competition VARCHAR, year VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT year FROM table_name_34 WHERE competition = \"nswrfl\" AND score = \"8-21\"", "question": "When did nswrfl has a score of 8-21?", "context": "CREATE TABLE table_name_34 (year VARCHAR, competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_80 WHERE attendance < 28 OFFSET 505", "question": "How many years have less than 28,505 attendance?", "context": "CREATE TABLE table_name_80 (year INTEGER, attendance INTEGER)"}, {"answer": "SELECT date FROM table_name_48 WHERE region = \"france\" AND catalog = \"82876-70291-2\"", "question": "What Date is listed for the Region of France and Catalog of 82876-70291-2?", "context": "CREATE TABLE table_name_48 (date VARCHAR, region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_93 WHERE region = \"china\"", "question": "Which Format is listed that has a Region of China?", "context": "CREATE TABLE table_name_93 (format VARCHAR, region VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE label = \"bertelsmann music group\" AND region = \"europe\"", "question": "What's the Date for the Label of Bertelsmann Music group and has a Region of Europe?", "context": "CREATE TABLE table_name_36 (date VARCHAR, label VARCHAR, region VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_17 WHERE opponent = \"royals\" AND score = \"17 - 6\"", "question": "How many people attended the Royals game with a score of 17 - 6?", "context": "CREATE TABLE table_name_17 (attendance INTEGER, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_21 WHERE date = \"april 27\"", "question": "What was the result of April 27's game?", "context": "CREATE TABLE table_name_21 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT players_per_console FROM table_name_51 WHERE genre = \"strategy\" AND year = 1992", "question": "For the strategy game in 1992, how many players were allowed per console?", "context": "CREATE TABLE table_name_51 (players_per_console VARCHAR, genre VARCHAR, year VARCHAR)"}, {"answer": "SELECT genre FROM table_name_72 WHERE publisher = \"atari\" AND year = 1991 AND developer = \"nufx\"", "question": "Which Genre was published by Atari and developed by NuFX in 1991?", "context": "CREATE TABLE table_name_72 (genre VARCHAR, developer VARCHAR, publisher VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_88 WHERE developer = \"music comp\"", "question": "Which year was the game developed by Music Comp in?", "context": "CREATE TABLE table_name_88 (year VARCHAR, developer VARCHAR)"}, {"answer": "SELECT record FROM table_name_65 WHERE date = \"august 31\"", "question": "Name the record for august 31", "context": "CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_79 WHERE date = \"august 6\"", "question": "Name the opponent for august 6", "context": "CREATE TABLE table_name_79 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_10 WHERE record = \"52-58\"", "question": "Name the opponent with record of 52-58", "context": "CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT class FROM table_name_68 WHERE quantity_made = 5", "question": "What Class has a Quantity made of 5?", "context": "CREATE TABLE table_name_68 (class VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT date_made FROM table_name_5 WHERE quantity_made = 13", "question": "What is listed as the Date made with a Quantity made of 13?", "context": "CREATE TABLE table_name_5 (date_made VARCHAR, quantity_made VARCHAR)"}, {"answer": "SELECT year FROM table_name_65 WHERE points = 4", "question": "What year shows 4 points?", "context": "CREATE TABLE table_name_65 (year VARCHAR, points VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_25 WHERE entrant = \"jaguar racing\" AND year < 2001", "question": "What is the most points when the entrant was Jaguar racing earlier than 2001?", "context": "CREATE TABLE table_name_25 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_64 WHERE year = 1999", "question": "What is the entrant in 1999?", "context": "CREATE TABLE table_name_64 (entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_42 WHERE chassis = \"jaguar r3\" AND year > 2002", "question": "What is the most points when the chassis was Jaguar R3 later than 2002?", "context": "CREATE TABLE table_name_42 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(skin_depth), _inches FROM table_name_30 WHERE resistivity__10_\u22126_ohm_inches_ = 1.12 AND relative_permeability > 1", "question": "What is the sum of skin depth with a resistivity of 1.12 and a relative permeability larger than 1?", "context": "CREATE TABLE table_name_30 (_inches VARCHAR, skin_depth INTEGER, resistivity__10_\u22126_ohm_inches_ VARCHAR, relative_permeability VARCHAR)"}, {"answer": "SELECT weight FROM table_name_2 WHERE player = \"jonathan bender\"", "question": "How much does Jonathan Bender weigh?", "context": "CREATE TABLE table_name_2 (weight VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(weight) FROM table_name_6 WHERE height = \"7-0\"", "question": "Of those with a height of 7-0, who weighs the most?", "context": "CREATE TABLE table_name_6 (weight INTEGER, height VARCHAR)"}, {"answer": "SELECT SUM(weight) FROM table_name_52 WHERE player = \"deshawn stevenson\"", "question": "What does DeShawn Stevenson weigh?", "context": "CREATE TABLE table_name_52 (weight INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(roll) FROM table_name_96 WHERE gender = \"coed\" AND authority = \"state integrated\" AND name = \"sacred heart school\"", "question": "Name the highest roll for coed and authority of state integrated with sacred heart school", "context": "CREATE TABLE table_name_96 (roll INTEGER, name VARCHAR, gender VARCHAR, authority VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_29 WHERE redline__rpm_ > 4750 AND year = 2005", "question": "What is the displacement of the engine that has a Redline rpm higher than 4750, from 2005?", "context": "CREATE TABLE table_name_29 (displacement VARCHAR, redline__rpm_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_21 WHERE engine_code = \"m57d30\"", "question": "From what year is the engine with engine code M57D30?", "context": "CREATE TABLE table_name_21 (year VARCHAR, engine_code VARCHAR)"}, {"answer": "SELECT AVG(redline__rpm_) FROM table_name_49 WHERE engine_code = \"m57tud30\" AND year > 2002", "question": "What is the average Redline RPM of engines with engine code M57TUD30, made after 2002?", "context": "CREATE TABLE table_name_49 (redline__rpm_ INTEGER, engine_code VARCHAR, year VARCHAR)"}, {"answer": "SELECT result_f_a FROM table_name_43 WHERE opponents = \"beijing hyundai\"", "question": "What was the result against Beijing Hyundai?", "context": "CREATE TABLE table_name_43 (result_f_a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT h___a FROM table_name_86 WHERE opponents = \"kashima antlers\"", "question": "Was the game with Kashima antlers at home or away?", "context": "CREATE TABLE table_name_86 (h___a VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE opponents = \"royal antwerp\"", "question": "What date was the game against Royal Antwerp?", "context": "CREATE TABLE table_name_87 (date VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT record FROM table_name_19 WHERE time = \"3:38\"", "question": "What Records Time is 3:38?", "context": "CREATE TABLE table_name_19 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(2004) FROM table_name_47 WHERE 2005 < 56 AND 2006 = 14", "question": "What Country has a number smaller than 56 in 2005 and of 14 in 2006?", "context": "CREATE TABLE table_name_47 (Id VARCHAR)"}, {"answer": "SELECT COUNT(2006) FROM table_name_31 WHERE 2004 < 3 AND 2005 > 1", "question": "What Country has a number smaller than 3 in 2004 and larger than 1 in 2005?", "context": "CREATE TABLE table_name_31 (Id VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_2 WHERE floors = 48", "question": "The building with 48 floors has an address in Las Vegas of what?", "context": "CREATE TABLE table_name_2 (street_address VARCHAR, floors VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_73 WHERE name = \"the palazzo\"", "question": "The Palazzo's street address is listed as what?", "context": "CREATE TABLE table_name_73 (street_address VARCHAR, name VARCHAR)"}, {"answer": "SELECT song_title FROM table_name_83 WHERE artist = \"winger\"", "question": "What's the title of the song by Winger?", "context": "CREATE TABLE table_name_83 (song_title VARCHAR, artist VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_name_36 WHERE runner_up = \"runner-up\"", "question": "What shows for 3rd place when Runner-up shows as runner-up?", "context": "CREATE TABLE table_name_36 (runner_up VARCHAR)"}, {"answer": "SELECT year FROM table_name_6 WHERE runner_up = \"england (24 pts)\"", "question": "What year shows as Runner-up of england (24 pts)?", "context": "CREATE TABLE table_name_6 (year VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_name_81 WHERE venue = \"pardubice\"", "question": "What shows for 3rd place when the venue was Pardubice?", "context": "CREATE TABLE table_name_81 (venue VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_name_60 WHERE year = \"1990\"", "question": "what shows for 3rd place in 1990?", "context": "CREATE TABLE table_name_60 (year VARCHAR)"}, {"answer": "SELECT year FROM table_name_51 WHERE venue = \"landshut\"", "question": "What year was the venue Landshut?", "context": "CREATE TABLE table_name_51 (year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT record FROM table_name_93 WHERE visitor = \"tampa bay\"", "question": "What is the record when Tampa Bay is the visitor?", "context": "CREATE TABLE table_name_93 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE decision = \"joseph\" AND home = \"san jose\"", "question": "What is the date when Joseph is the decision and San Jose is the home team?", "context": "CREATE TABLE table_name_40 (date VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT date FROM table_name_21 WHERE home = \"detroit\" AND visitor = \"colorado\"", "question": "What is the date of the match when Detroit is the home team and Colorado is the visiting team?", "context": "CREATE TABLE table_name_21 (date VARCHAR, home VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_76 WHERE week > 4 AND date = \"december 6, 1981\"", "question": "How many people were in attendance in a week over 4 on December 6, 1981?", "context": "CREATE TABLE table_name_76 (attendance VARCHAR, week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(game) FROM table_name_5 WHERE location = \"shibe park\" AND date = \"october 10\"", "question": "Name the least game for october 10 at shibe park", "context": "CREATE TABLE table_name_5 (game INTEGER, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_83 WHERE rank = \"1\" AND total > 34", "question": "What is the lowest bronze total that has a rank of 1 and more than 34 total medals?", "context": "CREATE TABLE table_name_83 (bronze INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_72 WHERE silver = \"13\"", "question": "What is the lowest bronze total that has a silver total of 13 medals?", "context": "CREATE TABLE table_name_72 (bronze INTEGER, silver VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_45 WHERE team = \"reno aces\" AND appearances > 1", "question": "With Appearances larger than 1, what is the Wins for the Reno Aces Team?", "context": "CREATE TABLE table_name_45 (wins INTEGER, team VARCHAR, appearances VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_54 WHERE appearances = 1 AND winning_percentage = 1 AND team = \"reno aces\"", "question": "For the Reno Aces, what are the Losses when they had 1 Appearances and a Winning Percentage of 1?", "context": "CREATE TABLE table_name_54 (losses INTEGER, team VARCHAR, appearances VARCHAR, winning_percentage VARCHAR)"}, {"answer": "SELECT AVG(appearances) FROM table_name_30 WHERE season_s_ = \"2009\" AND winning_percentage < 0", "question": "In 2009, what Appearances had a Winning Percentage of less than 0?", "context": "CREATE TABLE table_name_30 (appearances INTEGER, season_s_ VARCHAR, winning_percentage VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_85 WHERE year = 1969", "question": "What is the chassis for the year of 1969?", "context": "CREATE TABLE table_name_85 (chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT occupation FROM table_name_71 WHERE rank = \"5th\" AND gender = \"m\" AND residence = \"orono\"", "question": "Which Occupation has a Rank of 5th, a Gender of M, with a Residence of orono?", "context": "CREATE TABLE table_name_71 (occupation VARCHAR, residence VARCHAR, rank VARCHAR, gender VARCHAR)"}, {"answer": "SELECT gender FROM table_name_28 WHERE residence = \"haliburton\"", "question": "Which Gender has a Residence of Haliburton?", "context": "CREATE TABLE table_name_28 (gender VARCHAR, residence VARCHAR)"}, {"answer": "SELECT MIN(votes) FROM table_name_97 WHERE rank = \"5th\" AND occupation = \"retired\" AND riding = \"brant\"", "question": "What's the lowest in Votes with a Rank of 5th, has an Occupation of retired, along with a Riding of Brant?", "context": "CREATE TABLE table_name_97 (votes INTEGER, riding VARCHAR, rank VARCHAR, occupation VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_83 WHERE loss = \"clement (5\u20137)\"", "question": "What is the sum of the people in attendance when there was a Loss of clement (5\u20137)?", "context": "CREATE TABLE table_name_83 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT place FROM table_name_57 WHERE player = \"corey pavin\"", "question": "What place was Corey Pavin in?", "context": "CREATE TABLE table_name_57 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_45 WHERE player = \"bob tway\"", "question": "What was the two-round score for Bob Tway?", "context": "CREATE TABLE table_name_45 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_54 WHERE game > 2 AND time = \"2:37\"", "question": "How many people went to the game that lasted 2:37 after game 2?", "context": "CREATE TABLE table_name_54 (attendance INTEGER, game VARCHAR, time VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_64 WHERE frequency_mhz < 96.3 AND call_sign = \"w214ba\"", "question": "What is the FCC info of the w214ba call sign with a frequency below 96.3?", "context": "CREATE TABLE table_name_64 (fcc_info VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT COUNT(erp_w) FROM table_name_81 WHERE call_sign = \"w242ak\"", "question": "What is the total number of the ERP W with a call sign of w242ak?", "context": "CREATE TABLE table_name_81 (erp_w VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_48 WHERE frequency_mhz > 95.3 AND erp_w < 27 AND city_of_license = \"ocala, florida\"", "question": "What is the FCC info of the station with a frequency above 95.3 and an ERP W smaller than 27 in Ocala, Florida?", "context": "CREATE TABLE table_name_48 (fcc_info VARCHAR, city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT date FROM table_name_42 WHERE outcome = \"runner-up\" AND score = \"6\u20134, 6\u20132\" AND opponents = \"gisela dulko flavia pennetta\"", "question": "What date has an outcome of runner-up, and a Score of 6\u20134, 6\u20132, and a Opponents of gisela dulko flavia pennetta?", "context": "CREATE TABLE table_name_42 (date VARCHAR, opponents VARCHAR, outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_45 WHERE round = 10 AND name = \"ed tomlin\"", "question": "In Round 10, what was the Overall for Ed Tomlin?", "context": "CREATE TABLE table_name_45 (overall INTEGER, round VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_53 WHERE round < 5 AND pick__number = 23 AND overall = 23", "question": "What was the Position of Pick #23 in a Round less than 5 with 23 Overall?", "context": "CREATE TABLE table_name_53 (position VARCHAR, overall VARCHAR, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT AVG(pick__number) FROM table_name_8 WHERE overall = 296", "question": "What Average Pick # has an Overall of 296?", "context": "CREATE TABLE table_name_8 (pick__number INTEGER, overall VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_53 WHERE overall > 23 AND position = \"guard\" AND round = 13", "question": "In Round 13, what was the Pick # of the Guard Position with an Overall greater than 23?", "context": "CREATE TABLE table_name_53 (pick__number VARCHAR, round VARCHAR, overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_19 WHERE name = \"jim duncan\" AND overall > 107", "question": "With an Overall larger than 107, in what Round was Jim Duncan picked?", "context": "CREATE TABLE table_name_19 (round INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(pick__number) FROM table_name_97 WHERE college = \"maryland-eastern shore\"", "question": "What is the highest Pick # for the College of Maryland-Eastern Shore?", "context": "CREATE TABLE table_name_97 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_72 WHERE year > 1950 AND engine = \"offenhauser l4\" AND entrant = \"brown motors\"", "question": "What is Brown Motors best point total using the Offenhauser L4 engine since 1950?", "context": "CREATE TABLE table_name_72 (points INTEGER, entrant VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT length FROM table_name_41 WHERE stage = \"ss6\"", "question": "Name the length for stage of ss6", "context": "CREATE TABLE table_name_41 (length VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_51 WHERE rally_leader = \"m. gr\u00f6nholm\" AND winner = \"s.loeb\" AND time__eest_ = \"17:57\"", "question": "Name the stage for m. gr\u00f6nholm and winner of s.loeb with time of 17:57", "context": "CREATE TABLE table_name_51 (stage VARCHAR, time__eest_ VARCHAR, rally_leader VARCHAR, winner VARCHAR)"}, {"answer": "SELECT winner FROM table_name_82 WHERE name = \"schimatari 1\"", "question": "Name the winner for schimatari 1", "context": "CREATE TABLE table_name_82 (winner VARCHAR, name VARCHAR)"}, {"answer": "SELECT stage FROM table_name_85 WHERE time__eest_ = \"08:46\"", "question": "Name the stage for 08:46", "context": "CREATE TABLE table_name_85 (stage VARCHAR, time__eest_ VARCHAR)"}, {"answer": "SELECT winner FROM table_name_51 WHERE rally_leader = \"c. atkinson\" AND name = \"agia sotira 1\"", "question": "Name the winner with rally leader of c. atkinson and name of agia sotira 1", "context": "CREATE TABLE table_name_51 (winner VARCHAR, rally_leader VARCHAR, name VARCHAR)"}, {"answer": "SELECT winner FROM table_name_82 WHERE stage = \"ss14\"", "question": "Name the winner for ss14", "context": "CREATE TABLE table_name_82 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT loss FROM table_name_37 WHERE opponent = \"mariners\" AND date = \"september 12\"", "question": "Who lost when the mariners played on September 12?", "context": "CREATE TABLE table_name_37 (loss VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_63 WHERE date = \"september 7\"", "question": "On September 7 what was the record?", "context": "CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_48 WHERE date = \"september 29\"", "question": "Who plays on the date september 29?", "context": "CREATE TABLE table_name_48 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_34 WHERE call_sign = \"wriq\"", "question": "Which city of license has a wriq Call sign?", "context": "CREATE TABLE table_name_34 (city_of_license VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT SUM(frequency_mhz) FROM table_name_99 WHERE class = \"b1\"", "question": "What is the total of Frequency MHz with a Class of b1?", "context": "CREATE TABLE table_name_99 (frequency_mhz INTEGER, class VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_50 WHERE class = \"a\" AND call_sign = \"wffc\"", "question": "Which ERP W has a Class of A, and a Call sign of wffc?", "context": "CREATE TABLE table_name_50 (erp_w VARCHAR, class VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT class FROM table_name_83 WHERE city_of_license = \"ferrum, virginia\"", "question": "Which class City of license of ferrum, virginia?", "context": "CREATE TABLE table_name_83 (class VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_1 WHERE class = \"a\" AND frequency_mhz = 88.7", "question": "Which call sign has a Class of A, and a Frequency MHz of 88.7?", "context": "CREATE TABLE table_name_1 (call_sign VARCHAR, class VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT COUNT(heat) FROM table_name_49 WHERE time = \"58.44\"", "question": "what heat number had a time of 58.44?", "context": "CREATE TABLE table_name_49 (heat VARCHAR, time VARCHAR)"}, {"answer": "SELECT lane FROM table_name_86 WHERE nationality = \"new zealand\"", "question": "what lane was new zealand in?", "context": "CREATE TABLE table_name_86 (lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT stage FROM table_name_89 WHERE course = \"reggio calabria to catanzaro\"", "question": "What stage of the race was held on the course Reggio Calabria to Catanzaro?", "context": "CREATE TABLE table_name_89 (stage VARCHAR, course VARCHAR)"}, {"answer": "SELECT winner FROM table_name_97 WHERE course = \"rome to teramo\"", "question": "Who was the winner for the Rome to Teramo course?", "context": "CREATE TABLE table_name_97 (winner VARCHAR, course VARCHAR)"}, {"answer": "SELECT winner FROM table_name_25 WHERE stage = \"11\"", "question": "Who was the winner of stage 11?", "context": "CREATE TABLE table_name_25 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT AVG(apps) FROM table_name_64 WHERE country = \"indonesia\" AND goals < 1000", "question": "What is the average Apps of indonesia with Goals smaller than 1000?", "context": "CREATE TABLE table_name_64 (apps INTEGER, country VARCHAR, goals VARCHAR)"}, {"answer": "SELECT division FROM table_name_83 WHERE team = \"traktor tashkent\" AND season = \"2005\"", "question": "What division is Traktor Tashkent in 2005?", "context": "CREATE TABLE table_name_83 (division VARCHAR, team VARCHAR, season VARCHAR)"}, {"answer": "SELECT apps FROM table_name_41 WHERE country = \"uzbekistan\" AND season = \"2003\"", "question": "How many apps does Uzbekistan have in 2003?", "context": "CREATE TABLE table_name_41 (apps VARCHAR, country VARCHAR, season VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_5 WHERE record = \"74-77\"", "question": "What was the attendance at the game when the record was 74-77?", "context": "CREATE TABLE table_name_5 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE record = \"72-74\"", "question": "What was score of the game when the record was 72-74?", "context": "CREATE TABLE table_name_23 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT airdate FROM table_name_34 WHERE episode_no < 4 AND bbc_one_weekly_ranking = 6", "question": "What were the air-dates of the episodes before episode 4 that had a BBC One weekly ranking of 6?", "context": "CREATE TABLE table_name_34 (airdate VARCHAR, episode_no VARCHAR, bbc_one_weekly_ranking VARCHAR)"}, {"answer": "SELECT total_viewers FROM table_name_30 WHERE bbc_one_weekly_ranking > 7 AND episode_no < 4", "question": "What was the total viewership for BBC One weekly rankings larger than 7, before episode 4?", "context": "CREATE TABLE table_name_30 (total_viewers VARCHAR, bbc_one_weekly_ranking VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_54 WHERE bronze = 0 AND silver > 1 AND gold > 0", "question": "Name the most rank with bronze of 0 and silver more than 1 and gold more than 0", "context": "CREATE TABLE table_name_54 (rank INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_5 WHERE total < 1", "question": "Name the average silver with total less than 1", "context": "CREATE TABLE table_name_5 (silver INTEGER, total INTEGER)"}, {"answer": "SELECT AVG(year) FROM table_name_47 WHERE result = \"nominated\"", "question": "Name the average year for result of nominated", "context": "CREATE TABLE table_name_47 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT nominated_work FROM table_name_7 WHERE year = 1996 AND festival = \"black maria film and video festival\"", "question": "Name the nominated work for 1996 and festival of black maria film and video festival", "context": "CREATE TABLE table_name_7 (nominated_work VARCHAR, year VARCHAR, festival VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE venue = \"away\" AND win_draw_lose = \"lost\" AND team = \"accrington\"", "question": "What was the date of the away game that they lost to Accrington?", "context": "CREATE TABLE table_name_6 (date VARCHAR, team VARCHAR, venue VARCHAR, win_draw_lose VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE team = \"accrington\" AND venue = \"home\"", "question": "What was the date of the home game against Accrington?", "context": "CREATE TABLE table_name_65 (date VARCHAR, team VARCHAR, venue VARCHAR)"}, {"answer": "SELECT win_draw_lose FROM table_name_71 WHERE venue = \"home\" AND team = \"derby county\"", "question": "What was the result of the home game against Derby County?", "context": "CREATE TABLE table_name_71 (win_draw_lose VARCHAR, venue VARCHAR, team VARCHAR)"}, {"answer": "SELECT standard_cost__usd_ FROM table_name_27 WHERE creator = \"hans oischinger\"", "question": "What is the Standard cost (USD) by hans Oischinger Creator ?", "context": "CREATE TABLE table_name_27 (standard_cost__usd_ VARCHAR, creator VARCHAR)"}, {"answer": "SELECT standard_cost__usd_ FROM table_name_95 WHERE creator = \"kwin team\"", "question": "What is the Standard cost (USD) of Kwin team creator?", "context": "CREATE TABLE table_name_95 (standard_cost__usd_ VARCHAR, creator VARCHAR)"}, {"answer": "SELECT creator FROM table_name_45 WHERE latest_stable_version = \"0.5.2 (part of compiz fusion release)\"", "question": "Who is the Creator that has a version of 0.5.2 (part of compiz fusion release)?", "context": "CREATE TABLE table_name_45 (creator VARCHAR, latest_stable_version VARCHAR)"}, {"answer": "SELECT name FROM table_name_47 WHERE creator = \"hyriand\"", "question": "Who is  a Creator of hyriand?", "context": "CREATE TABLE table_name_47 (name VARCHAR, creator VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_68 WHERE game > 6", "question": "What is the number of people who attended the game later than game 6?", "context": "CREATE TABLE table_name_68 (attendance VARCHAR, game INTEGER)"}, {"answer": "SELECT title FROM table_name_29 WHERE year > 1986 AND format_s_ = \"album\"", "question": "Which title has a year later than 1986 with an album as the format?", "context": "CREATE TABLE table_name_29 (title VARCHAR, year VARCHAR, format_s_ VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_70 WHERE date = \"february 24\"", "question": "Which is the average year with the date of February 24?", "context": "CREATE TABLE table_name_70 (year INTEGER, date VARCHAR)"}, {"answer": "SELECT award_description_s_ FROM table_name_84 WHERE year > 1994 AND date = \"december 6\"", "question": "Which award description has a year later than 1994 with a date of December 6?", "context": "CREATE TABLE table_name_84 (award_description_s_ VARCHAR, year VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(goal) FROM table_name_91 WHERE date = \"december 4, 2010\" AND score = \"1-0\"", "question": "How many goals have a Date of december 4, 2010, and a Score of 1-0?", "context": "CREATE TABLE table_name_91 (goal VARCHAR, date VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_91 WHERE competition = \"2008 myanmar grand royal challenge cup\"", "question": "Which venue has a Competition of 2008 myanmar grand royal challenge cup?", "context": "CREATE TABLE table_name_91 (venue VARCHAR, competition VARCHAR)"}, {"answer": "SELECT venue FROM table_name_62 WHERE goal = 4", "question": "Which venue has a Goal of 4?", "context": "CREATE TABLE table_name_62 (venue VARCHAR, goal VARCHAR)"}, {"answer": "SELECT MAX(goal) FROM table_name_14 WHERE score = \"3-0\"", "question": "What is the largest goal with a Score of 3-0?", "context": "CREATE TABLE table_name_14 (goal INTEGER, score VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_37 WHERE partnering = \"bruno soares\" AND surface = \"clay\" AND date = \"august 1, 2010\"", "question": "Who did Bruno Soares and a partner face in the finals on a clay surface on August 1, 2010?", "context": "CREATE TABLE table_name_37 (opponents_in_the_final VARCHAR, date VARCHAR, partnering VARCHAR, surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_67 WHERE score = \"4\u20136, 6\u20132, [10\u20137]\"", "question": "What surface was played on that resulted in a score of 4\u20136, 6\u20132, [10\u20137]?", "context": "CREATE TABLE table_name_67 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_55 WHERE date = \"may 25, 2009\"", "question": "What was the outcome on May 25, 2009?", "context": "CREATE TABLE table_name_55 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_55 WHERE date = \"may 18, 2008\"", "question": "What was the outcome on May 18, 2008?", "context": "CREATE TABLE table_name_55 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_53 WHERE player = \"heath slocum\"", "question": "what is the place for Heath Slocum?", "context": "CREATE TABLE table_name_53 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_9 WHERE date = \"august 29\"", "question": "What is the attendance for august 29?", "context": "CREATE TABLE table_name_9 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_47 WHERE opponent = \"@ angels\" AND date = \"august 1\"", "question": "Which loss has an Opponent of @ angels, and a Date of august 1?", "context": "CREATE TABLE table_name_47 (loss VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE attendance = \"31,178\"", "question": "Which score has an Attendance of 31,178?", "context": "CREATE TABLE table_name_99 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT record FROM table_name_8 WHERE date = \"august 28\"", "question": "Which record has a Date of august 28?", "context": "CREATE TABLE table_name_8 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_55 WHERE attendance = \"23,952\"", "question": "Which loss has an Attendance of 23,952?", "context": "CREATE TABLE table_name_55 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_28 WHERE loss = \"corcoran (4-4)\"", "question": "Which opponent has a Loss of corcoran (4-4)?", "context": "CREATE TABLE table_name_28 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT location FROM table_name_30 WHERE competition = \"gold medal match\"", "question": "What is the location of the gold medal match?", "context": "CREATE TABLE table_name_30 (location VARCHAR, competition VARCHAR)"}, {"answer": "SELECT lineup FROM table_name_29 WHERE result = \"1-0 aet w\"", "question": "What was the lineup that resulted in 1-0 AET W?", "context": "CREATE TABLE table_name_29 (lineup VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_97 WHERE match = \"25\"", "question": "What was the result of match 25?", "context": "CREATE TABLE table_name_97 (result VARCHAR, match VARCHAR)"}, {"answer": "SELECT result FROM table_name_13 WHERE location = \"london 2012 women's olympic football tournament\"", "question": "What is the result of the London 2012 Women's Olympic Football Tournament?", "context": "CREATE TABLE table_name_13 (result VARCHAR, location VARCHAR)"}, {"answer": "SELECT score FROM table_name_7 WHERE loss = \"wegman (2-6)\"", "question": "What was the score of the game that had a loss of Wegman (2-6)?", "context": "CREATE TABLE table_name_7 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_55 WHERE loss = \"blyleven (4-5)\"", "question": "What was the record at the game that had a loss of Blyleven (4-5)?", "context": "CREATE TABLE table_name_55 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT city FROM table_name_74 WHERE jul = \"88 \u00b0f / 31.1 \u00b0c\"", "question": "Name the city with july of 88 \u00b0f / 31.1 \u00b0c", "context": "CREATE TABLE table_name_74 (city VARCHAR, jul VARCHAR)"}, {"answer": "SELECT city FROM table_name_63 WHERE feb = \"66 \u00b0f / 18.9 \u00b0c\"", "question": "Name the city with Feb of 66 \u00b0f / 18.9 \u00b0c", "context": "CREATE TABLE table_name_63 (city VARCHAR, feb VARCHAR)"}, {"answer": "SELECT city FROM table_name_15 WHERE sep = \"83 \u00b0f / 28.3 \u00b0c\"", "question": "Name the city with september of 83 \u00b0f / 28.3 \u00b0c", "context": "CREATE TABLE table_name_15 (city VARCHAR, sep VARCHAR)"}, {"answer": "SELECT jun FROM table_name_28 WHERE jul = \"84 \u00b0f / 28.9 \u00b0c\"", "question": "Name the june when it has july of 84 \u00b0f / 28.9 \u00b0c", "context": "CREATE TABLE table_name_28 (jun VARCHAR, jul VARCHAR)"}, {"answer": "SELECT time FROM table_name_84 WHERE date = \"may 9\"", "question": "What Time has Date of May 9?", "context": "CREATE TABLE table_name_84 (time VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(roll) FROM table_name_37 WHERE name = \"katikati college\"", "question": "What is the lowest roll number of Katikati college?", "context": "CREATE TABLE table_name_37 (roll INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(roll) FROM table_name_85 WHERE decile > 2 AND area = \"te puna\"", "question": "What is the highest roll number of the school in Te puna with a decile larger than 2?", "context": "CREATE TABLE table_name_85 (roll INTEGER, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT roll FROM table_name_62 WHERE decile = 4 AND name = \"te puke intermediate\"", "question": "What is the roll number of Te Puke Intermediate, which has a decile of 4?", "context": "CREATE TABLE table_name_62 (roll VARCHAR, decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(roll) FROM table_name_79 WHERE authority = \"state\" AND decile < 8", "question": "What is the highest roll number of the school with a state authority and a decile smaller than 8?", "context": "CREATE TABLE table_name_79 (roll INTEGER, authority VARCHAR, decile VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_10 WHERE points > 21 AND draw = 2", "question": "What is the total value for Lost, when the value for Points is greater than 21, and when the value for Draw is 2?", "context": "CREATE TABLE table_name_10 (lost INTEGER, points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT MAX(goals_scored) FROM table_name_33 WHERE team = \"san salvador f.c.\" AND points < 10", "question": "What is the total number of Goals Scored, when the Team is San Salvador F.C., and when the Points are less than 10?", "context": "CREATE TABLE table_name_33 (goals_scored INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(goals_conceded) FROM table_name_86 WHERE points < 26 AND played < 18", "question": "What are the total amount of Goals Conceded when the Points are less than 26, and when the value for Played is less than 18?", "context": "CREATE TABLE table_name_86 (goals_conceded INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(lost) FROM table_name_95 WHERE goals_scored > 20 AND played < 18", "question": "What is the average value for Lost, when the value for Goals Scored is greater than 20, and when the value for Played is less than 18?", "context": "CREATE TABLE table_name_95 (lost INTEGER, goals_scored VARCHAR, played VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE place = \"t8\" AND player = \"byron nelson\"", "question": "What is score of the game played in place t8 with Byron Nelson playing?", "context": "CREATE TABLE table_name_20 (score VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT SUM(money___) AS $__ FROM table_name_55 WHERE country = \"united states\" AND player = \"sam snead\"", "question": "What is the sum of Money of the game that was played in the United States with Sam Snead as a player?", "context": "CREATE TABLE table_name_55 (money___ INTEGER, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_57 WHERE score = 69 - 74 - 70 - 73 = 286", "question": "What is the Money ($) of the game with a score of 69-74-70-73=286?", "context": "CREATE TABLE table_name_57 (money___ INTEGER, score VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_82 WHERE young_rider_classification = \"francesco casagrande\" AND intergiro_classification = \"not awarded\" AND stage = \"2\"", "question": "Name the mountains classification which has a young rider classification of francesco casagrande and integiro classification of not awarded with stage of 2", "context": "CREATE TABLE table_name_82 (mountains_classification VARCHAR, stage VARCHAR, young_rider_classification VARCHAR, intergiro_classification VARCHAR)"}, {"answer": "SELECT winner FROM table_name_89 WHERE points_classification = \"adriano baffi\" AND intergiro_classification = \"j\u00e1n svorada\" AND stage = \"13\"", "question": "Name the winner for adriano baffi and integiro classification of j\u00e1n svorada for stage of 13", "context": "CREATE TABLE table_name_89 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, intergiro_classification VARCHAR)"}, {"answer": "SELECT trofeo_fast_team FROM table_name_55 WHERE young_rider_classification = \"francesco casagrande\" AND stage = \"10\"", "question": "Name trofeo fast team with young rider classification of francesco casagrande and stage of 10", "context": "CREATE TABLE table_name_55 (trofeo_fast_team VARCHAR, young_rider_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_69 WHERE routine_score = 26.6", "question": "What is the sum of the total for a routine score of 26.6?", "context": "CREATE TABLE table_name_69 (total INTEGER, routine_score VARCHAR)"}, {"answer": "SELECT january FROM table_name_53 WHERE april = \"courtney rachel culkin\"", "question": "Name the january when april is courtney rachel culkin", "context": "CREATE TABLE table_name_53 (january VARCHAR, april VARCHAR)"}, {"answer": "SELECT october FROM table_name_17 WHERE november = \"buffy tyler\"", "question": "Name the october when november is buffy tyler", "context": "CREATE TABLE table_name_17 (october VARCHAR, november VARCHAR)"}, {"answer": "SELECT october FROM table_name_47 WHERE september = \"dalene kurtis\"", "question": "Name the october when the september is dalene kurtis", "context": "CREATE TABLE table_name_47 (october VARCHAR, september VARCHAR)"}, {"answer": "SELECT april FROM table_name_41 WHERE june = \"candice cassidy\"", "question": "Name the april for candice cassidy", "context": "CREATE TABLE table_name_41 (april VARCHAR, june VARCHAR)"}, {"answer": "SELECT october FROM table_name_71 WHERE july = \"kimberley stanfield\"", "question": "Name the october for july of kimberley stanfield", "context": "CREATE TABLE table_name_71 (october VARCHAR, july VARCHAR)"}, {"answer": "SELECT representative FROM table_name_25 WHERE state = \"kentucky\" AND years = \"1855\u20131859\"", "question": "Which Representative was from Kentucky during the years of 1855\u20131859?", "context": "CREATE TABLE table_name_25 (representative VARCHAR, state VARCHAR, years VARCHAR)"}, {"answer": "SELECT lifespan FROM table_name_31 WHERE party = \"republican\" AND years = \"1953\u20131970\"", "question": "What was the lifespan of the Representative from the Republican Party during the years of 1953\u20131970?", "context": "CREATE TABLE table_name_31 (lifespan VARCHAR, party VARCHAR, years VARCHAR)"}, {"answer": "SELECT years FROM table_name_20 WHERE state = \"iowa\" AND lifespan = \"1880\u20131942\"", "question": "What years did the Representative from Iowa with a lifespan of 1880\u20131942 serve?", "context": "CREATE TABLE table_name_20 (years VARCHAR, state VARCHAR, lifespan VARCHAR)"}, {"answer": "SELECT representative FROM table_name_71 WHERE lifespan = \"1795\u20131866\"", "question": "Which Representative had a Lifespan of 1795\u20131866?", "context": "CREATE TABLE table_name_71 (representative VARCHAR, lifespan VARCHAR)"}, {"answer": "SELECT MIN(week) FROM table_name_47 WHERE attendance = \"bye\"", "question": "When did the Chiefs have their first bye?", "context": "CREATE TABLE table_name_47 (week INTEGER, attendance VARCHAR)"}, {"answer": "SELECT position FROM table_name_76 WHERE round = 2", "question": "What is the position played for the player drafted in round 2?", "context": "CREATE TABLE table_name_76 (position VARCHAR, round VARCHAR)"}, {"answer": "SELECT name FROM table_name_54 WHERE position = \"3b\"", "question": "what is the name of the player that played position 3b?", "context": "CREATE TABLE table_name_54 (name VARCHAR, position VARCHAR)"}, {"answer": "SELECT school FROM table_name_90 WHERE name = \"ivey armstrong\"", "question": "what is the school for Ivey armstrong?", "context": "CREATE TABLE table_name_90 (school VARCHAR, name VARCHAR)"}, {"answer": "SELECT position FROM table_name_37 WHERE school = \"university of alabama\"", "question": "what is the position for the player from university of alabama?", "context": "CREATE TABLE table_name_37 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT SUM(days_with_frost) FROM table_name_22 WHERE city_town = \"lugo\"", "question": "How many days with frost were there in the City/Town of Lugo have?", "context": "CREATE TABLE table_name_22 (days_with_frost INTEGER, city_town VARCHAR)"}, {"answer": "SELECT MIN(sunlight_hours) FROM table_name_98 WHERE city_town = \"ourense\" AND days_with_frost > 30", "question": "What is the lowest number of sunlight hours, and number of days with frost, more than 30, for the city of Ourense?", "context": "CREATE TABLE table_name_98 (sunlight_hours INTEGER, city_town VARCHAR, days_with_frost VARCHAR)"}, {"answer": "SELECT MAX(sunlight_hours) FROM table_name_23 WHERE city_town = \"pontevedra\"", "question": "What is the largest amount of sunlight hours for the City of Pontevedra?", "context": "CREATE TABLE table_name_23 (sunlight_hours INTEGER, city_town VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_8 WHERE nationality = \"united states\" AND rank = 3", "question": "for the rank of 3 for the united states, what is the average lane?", "context": "CREATE TABLE table_name_8 (lane INTEGER, nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_30 WHERE nationality = \"netherlands\" AND rank > 1", "question": "for the rank more than 1 and nationality of netherlands, what is the lane?", "context": "CREATE TABLE table_name_30 (lane INTEGER, nationality VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_27 WHERE lane < 3 AND time = 49.04", "question": "for the time of 49.04 and lane less than 3, what is the nationality?", "context": "CREATE TABLE table_name_27 (nationality VARCHAR, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT name FROM table_name_99 WHERE lane < 3 AND rank = 8", "question": "for the rank of 8 and lane less than 3 what is the name?", "context": "CREATE TABLE table_name_99 (name VARCHAR, lane VARCHAR, rank VARCHAR)"}, {"answer": "SELECT played FROM table_name_1 WHERE lost = \"2\"", "question": "What play has a loss of 2?", "context": "CREATE TABLE table_name_1 (played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_27 WHERE club = \"caerphilly rfc\"", "question": "What try bonus has a club of caerphilly rfc?", "context": "CREATE TABLE table_name_27 (try_bonus VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_38 WHERE played = \"22\" AND losing_bonus = \"7\"", "question": "What club has a play of 22, and losing bonus of 7?", "context": "CREATE TABLE table_name_38 (club VARCHAR, played VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_93 WHERE tries_against = \"77\" AND lost = \"16\"", "question": "What point against has tries against of 77, and a lost of 16?", "context": "CREATE TABLE table_name_93 (points_against VARCHAR, tries_against VARCHAR, lost VARCHAR)"}, {"answer": "SELECT sport FROM table_name_64 WHERE league = \"nll\"", "question": "The nll participate in what sport?", "context": "CREATE TABLE table_name_64 (sport VARCHAR, league VARCHAR)"}, {"answer": "SELECT began_play FROM table_name_50 WHERE club = \"western new york flash\"", "question": "When did the Club of western new york flash begin to play?", "context": "CREATE TABLE table_name_50 (began_play VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_61 WHERE sport = \"soccer\" AND league = \"nwsl\"", "question": "Which club plays soccer in the nwsl?", "context": "CREATE TABLE table_name_61 (club VARCHAR, sport VARCHAR, league VARCHAR)"}, {"answer": "SELECT began_play FROM table_name_48 WHERE club = \"rochester rhinos\"", "question": "When did the Rochester Rhinos begin to play?", "context": "CREATE TABLE table_name_48 (began_play VARCHAR, club VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_51 WHERE tour = 7 AND giro < 3", "question": "The sun of total that has a tour of 7 and a Giro smaller than 3 is 12.", "context": "CREATE TABLE table_name_51 (total INTEGER, tour VARCHAR, giro VARCHAR)"}, {"answer": "SELECT gender FROM table_name_68 WHERE name = \"lynmore primary school\"", "question": "What genders did Lynmore Primary School take?", "context": "CREATE TABLE table_name_68 (gender VARCHAR, name VARCHAR)"}, {"answer": "SELECT area FROM table_name_45 WHERE gender = \"coed\" AND decile = \"9\" AND name = \"kaharoa school\"", "question": "Which area served coed genders at Kaharoa school and had a Decile of 9?", "context": "CREATE TABLE table_name_45 (area VARCHAR, name VARCHAR, gender VARCHAR, decile VARCHAR)"}, {"answer": "SELECT gender FROM table_name_15 WHERE authority = \"integrated\" AND roll = 142", "question": "What was the gender for the integrated authority with a roll of 142?", "context": "CREATE TABLE table_name_15 (gender VARCHAR, authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT authority FROM table_name_46 WHERE area = \"eastbourne\" AND gender = \"coed\"", "question": "Who is the authority for the coed Eastbourne school?", "context": "CREATE TABLE table_name_46 (authority VARCHAR, area VARCHAR, gender VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_99 WHERE rank = \"3\"", "question": "What is the sum of all laps with rank 3?", "context": "CREATE TABLE table_name_99 (laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_32 WHERE start = \"10\" AND finish = \"20\"", "question": "What is the sum of all laps starting at 10 and finishing at 20?", "context": "CREATE TABLE table_name_32 (laps INTEGER, start VARCHAR, finish VARCHAR)"}, {"answer": "SELECT rank FROM table_name_90 WHERE start = \"10\" AND laps < 192", "question": "What's the rank when the start is 10 and the laps are fewer than 192?", "context": "CREATE TABLE table_name_90 (rank VARCHAR, start VARCHAR, laps VARCHAR)"}, {"answer": "SELECT rank FROM table_name_99 WHERE laps < 137 AND qual = \"116.470\"", "question": "What's the rank when the laps are fewer than 137 and the qual is 116.470?", "context": "CREATE TABLE table_name_99 (rank VARCHAR, laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_61 WHERE writer_s_ = \"al mackay\"", "question": "What director worked with Al Mackay as writer?", "context": "CREATE TABLE table_name_61 (director_s_ VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT producer_s_ FROM table_name_94 WHERE writer_s_ = \"robert sproul-cran\"", "question": "Which producer worked with Robert Sproul-cran as writer?", "context": "CREATE TABLE table_name_94 (producer_s_ VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT film FROM table_name_8 WHERE writer_s_ = \"al mackay\"", "question": "Which film did Al Mackay write?", "context": "CREATE TABLE table_name_8 (film VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_22 WHERE film = \"the chapel\"", "question": "Who directed the film 'The Chapel'?", "context": "CREATE TABLE table_name_22 (director_s_ VARCHAR, film VARCHAR)"}, {"answer": "SELECT award FROM table_name_40 WHERE producer_s_ = \"andrew ryder\"", "question": "What award did Andrew Ryder win as producer?", "context": "CREATE TABLE table_name_40 (award VARCHAR, producer_s_ VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_72 WHERE nationality = \"canada\" AND lane > 3", "question": "What is the total national rank of Canada with lanes larger than 3?", "context": "CREATE TABLE table_name_72 (rank INTEGER, nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_32 WHERE points = \"39+1\" AND draws < 7", "question": "For the team with 39+1 points and fewer than 7 draws, how many wins were scored?", "context": "CREATE TABLE table_name_32 (wins VARCHAR, points VARCHAR, draws VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_94 WHERE goal_difference > 3 AND losses < 8", "question": "For a goal difference greater than 3 and fewer than 8 losses, what is the most draws scored?", "context": "CREATE TABLE table_name_94 (draws INTEGER, goal_difference VARCHAR, losses VARCHAR)"}, {"answer": "SELECT club FROM table_name_47 WHERE goals_against < 29 AND goal_difference < 26", "question": "Which club had fewer than 29 goals against and a difference smaller than 26?", "context": "CREATE TABLE table_name_47 (club VARCHAR, goals_against VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE attendance = \"23,493\"", "question": "What was the score when the Rangers' attendance was 23,493?", "context": "CREATE TABLE table_name_70 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_60 WHERE date = \"april 14, 2007\"", "question": "Who was the opponent on the game on April 14, 2007?", "context": "CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_15 WHERE date = \"april 8, 2007\"", "question": "How many people were in attendance on the game on April 8, 2007?", "context": "CREATE TABLE table_name_15 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE attendance = \"16,404\"", "question": "What was the date of the game with 16,404 people?", "context": "CREATE TABLE table_name_18 (date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT category FROM table_name_61 WHERE winner_nominee_s_ = \"dev patel\"", "question": "Which category was Dev Patel nominated for?", "context": "CREATE TABLE table_name_61 (category VARCHAR, winner_nominee_s_ VARCHAR)"}, {"answer": "SELECT film FROM table_name_19 WHERE winner_nominee_s_ = \"eddie murphy\" AND result = \"nominated\"", "question": "Which film was Eddie Murphy nominated for?", "context": "CREATE TABLE table_name_19 (film VARCHAR, winner_nominee_s_ VARCHAR, result VARCHAR)"}, {"answer": "SELECT finish FROM table_name_71 WHERE start = \"22\"", "question": "When the start is 22, what is the finish?", "context": "CREATE TABLE table_name_71 (finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT year FROM table_name_39 WHERE laps = 54", "question": "What year resulted in 54 laps?", "context": "CREATE TABLE table_name_39 (year VARCHAR, laps VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE score = \"2\u20134\"", "question": "On what date was the score 2\u20134?", "context": "CREATE TABLE table_name_89 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT home FROM table_name_93 WHERE score = \"4\u20133\"", "question": "Who was the home team when the score was 4\u20133?", "context": "CREATE TABLE table_name_93 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE record = \"2\u20131\"", "question": "On what date was the record 2\u20131?", "context": "CREATE TABLE table_name_53 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_96 WHERE winning_team = \"opel team holzer 1\" AND round < 9 AND fastest_lap = \"bernd schneider\"", "question": "Who was the winning driver with the winning team Opel Team Holzer 1, and a round under 9 with the fastest lap being Bernd Schneider?", "context": "CREATE TABLE table_name_96 (winning_driver VARCHAR, fastest_lap VARCHAR, winning_team VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_18 WHERE winning_manufacturer = \"mercedes-benz\" AND circuit = \"hockenheimring\"", "question": "What was the final number for the winning manufacturer with Mercedes-benz, and a circuit of hockenheimring?", "context": "CREATE TABLE table_name_18 (round VARCHAR, winning_manufacturer VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_34 WHERE circuit = \"hockenheimring\" AND winning_manufacturer = \"mercedes-benz\"", "question": "What was the date of Circuit Hockenheimring and the winning manufacturer being Mercedes-Benz?", "context": "CREATE TABLE table_name_34 (date VARCHAR, circuit VARCHAR, winning_manufacturer VARCHAR)"}, {"answer": "SELECT winning_driver FROM table_name_15 WHERE circuit = \"lausitzring\"", "question": "Who was the winning driver of the Circuit of Lausitzring?", "context": "CREATE TABLE table_name_15 (winning_driver VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_47 WHERE brand = \"txdot har\"", "question": "What is the city of txdot har?", "context": "CREATE TABLE table_name_47 (city_of_license VARCHAR, brand VARCHAR)"}, {"answer": "SELECT website FROM table_name_22 WHERE brand = \"radio mexicana\"", "question": "What was radio mexicana's website?", "context": "CREATE TABLE table_name_22 (website VARCHAR, brand VARCHAR)"}, {"answer": "SELECT player FROM table_name_11 WHERE rank > 9", "question": "Which player ranks higher than 9?", "context": "CREATE TABLE table_name_11 (player VARCHAR, rank INTEGER)"}, {"answer": "SELECT gross_revenue__2011_ FROM table_name_78 WHERE gross_revenue__1982_ = \"$156,315\"", "question": "What was the 2011 gross revenue for the venue that had a gross revenue of $156,315 in 1982?", "context": "CREATE TABLE table_name_78 (gross_revenue__2011_ VARCHAR, gross_revenue__1982_ VARCHAR)"}, {"answer": "SELECT gross_revenue__2011_ FROM table_name_6 WHERE gross_revenue__1982_ = \"$156,315\"", "question": "What was the 2011 gross revenue for the venue that had a gross revenue of $156,315 in 1982?", "context": "CREATE TABLE table_name_6 (gross_revenue__2011_ VARCHAR, gross_revenue__1982_ VARCHAR)"}, {"answer": "SELECT tickets_sold___available FROM table_name_51 WHERE gross_revenue__2011_ = \"$333,100\"", "question": "How many tickets were sold / available for the venue that had a gross revenue of $333,100 in 2011?", "context": "CREATE TABLE table_name_51 (tickets_sold___available VARCHAR, gross_revenue__2011_ VARCHAR)"}, {"answer": "SELECT venue FROM table_name_54 WHERE city = \"brussels, belgium\"", "question": "What is the venue in the city of Brussels, Belgium?", "context": "CREATE TABLE table_name_54 (venue VARCHAR, city VARCHAR)"}, {"answer": "SELECT venue FROM table_name_84 WHERE gross_revenue__2011_ = \"$1,325,153\"", "question": "What venue had gross revenues of $1,325,153 in 2011?", "context": "CREATE TABLE table_name_84 (venue VARCHAR, gross_revenue__2011_ VARCHAR)"}, {"answer": "SELECT SUM(total_region) FROM table_name_90 WHERE mt_morgan > 5 OFFSET 060", "question": "What is the sum of people in the total region when more than 5,060 were in Mt. Morgan?", "context": "CREATE TABLE table_name_90 (total_region INTEGER, mt_morgan INTEGER)"}, {"answer": "SELECT SUM(swimsuit) FROM table_name_48 WHERE preliminaries < 8.27", "question": "What is the total swimsuit with Preliminaries smaller than 8.27?", "context": "CREATE TABLE table_name_48 (swimsuit INTEGER, preliminaries INTEGER)"}, {"answer": "SELECT AVG(interview) FROM table_name_65 WHERE preliminaries > 8.27 AND evening_gown = 8.85 AND average < 8.842", "question": "What's the average interview with Preliminaries larger than 8.27, an Evening Gown of 8.85, and an Average smaller than 8.842?", "context": "CREATE TABLE table_name_65 (interview INTEGER, average VARCHAR, preliminaries VARCHAR, evening_gown VARCHAR)"}, {"answer": "SELECT COUNT(swimsuit) FROM table_name_32 WHERE evening_gown > 9 AND interview > 8.405", "question": "How many swimsuits have an Evening Gown larger than 9, and an Interview larger than 8.405?", "context": "CREATE TABLE table_name_32 (swimsuit VARCHAR, evening_gown VARCHAR, interview VARCHAR)"}, {"answer": "SELECT 2000 AS _population FROM table_name_71 WHERE state_s_ = \"ok\" AND percent_change__1990_2000_ = \"a078 +17.22%\"", "question": "What is the 2000 population in OK with a 1990-2000 percent change of A078 +17.22%?", "context": "CREATE TABLE table_name_71 (state_s_ VARCHAR, percent_change__1990_2000_ VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_74 WHERE goalkeeper = \"wilfredo caballero\" AND average < 1.11", "question": "How many matches did goalkeeper Wilfredo Caballero have an average less than 1.11?", "context": "CREATE TABLE table_name_74 (matches INTEGER, goalkeeper VARCHAR, average VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_85 WHERE goals < 41 AND goalkeeper = \"claudio bravo\"", "question": "What is the average goals less than 41 that goalkeeper Claudio Bravo had?", "context": "CREATE TABLE table_name_85 (average VARCHAR, goals VARCHAR, goalkeeper VARCHAR)"}, {"answer": "SELECT MAX(average) FROM table_name_3 WHERE goals < 45 AND team = \"real sociedad\"", "question": "What is the highest average of goals less than 45 for team Real Sociedad?", "context": "CREATE TABLE table_name_3 (average INTEGER, goals VARCHAR, team VARCHAR)"}, {"answer": "SELECT ceased_to_be_countess FROM table_name_19 WHERE birth = \"3 may 1446\"", "question": "When did the person born on 3 May 1446 cease to be countess?", "context": "CREATE TABLE table_name_19 (ceased_to_be_countess VARCHAR, birth VARCHAR)"}, {"answer": "SELECT father FROM table_name_97 WHERE birth = \"1363\"", "question": "Who was the father of the person born in 1363?", "context": "CREATE TABLE table_name_97 (father VARCHAR, birth VARCHAR)"}, {"answer": "SELECT marriage FROM table_name_90 WHERE death = \"17 december 1471\"", "question": "When was the marriage of the person who died on 17 December 1471?", "context": "CREATE TABLE table_name_90 (marriage VARCHAR, death VARCHAR)"}, {"answer": "SELECT surface FROM table_name_38 WHERE against = \"poland\"", "question": "On what surface did Poland play as the against team?", "context": "CREATE TABLE table_name_38 (surface VARCHAR, against VARCHAR)"}, {"answer": "SELECT against FROM table_name_99 WHERE result = \"3\u20136, 2\u20136\"", "question": "Who was played against with a result of 3\u20136, 2\u20136?", "context": "CREATE TABLE table_name_99 (against VARCHAR, result VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_92 WHERE venue = \"paris, france\"", "question": "Name the least year for paris, france venue", "context": "CREATE TABLE table_name_92 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_72 WHERE school = \"mckinney high school\"", "question": "What's the total number of picks for mckinney high school?", "context": "CREATE TABLE table_name_72 (pick INTEGER, school VARCHAR)"}, {"answer": "SELECT MAX(pick) FROM table_name_31 WHERE player = \"adam jones\"", "question": "What was the highest pick for the player Adam Jones?", "context": "CREATE TABLE table_name_31 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT SUM(pick) FROM table_name_25 WHERE player = \"matt murton\"", "question": "What's the total number of picks for the player Matt Murton?", "context": "CREATE TABLE table_name_25 (pick INTEGER, player VARCHAR)"}, {"answer": "SELECT position FROM table_name_86 WHERE pick = 32", "question": "What position was pick 32?", "context": "CREATE TABLE table_name_86 (position VARCHAR, pick VARCHAR)"}, {"answer": "SELECT winner FROM table_name_49 WHERE circuit = \"barbagallo raceway\"", "question": "Who won at the Barbagallo Raceway circuit?", "context": "CREATE TABLE table_name_49 (winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT race_title FROM table_name_72 WHERE circuit = \"oran park raceway\"", "question": "What was the title of the race at Oran Park Raceway?", "context": "CREATE TABLE table_name_72 (race_title VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT winner FROM table_name_17 WHERE circuit = \"oran park raceway\"", "question": "Who won at the Oran Park Raceway?", "context": "CREATE TABLE table_name_17 (winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT city___state FROM table_name_70 WHERE winner = \"jim richards\" AND circuit = \"winton motor raceway\"", "question": "When Jim Richards won at the Winton Motor Raceway circuit, what was the city and state listed?", "context": "CREATE TABLE table_name_70 (city___state VARCHAR, winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT capacity__thousands_of_metric_tons_ FROM table_name_83 WHERE operator = \"cyprus amax minerals\"", "question": "What is the capacity of the mine that is operated by Cyprus Amax minerals?", "context": "CREATE TABLE table_name_83 (capacity__thousands_of_metric_tons_ VARCHAR, operator VARCHAR)"}, {"answer": "SELECT rank FROM table_name_56 WHERE county = \"pima\" AND mine = \"silver bell\"", "question": "What rank is the Silver Bell mine of Pima county?", "context": "CREATE TABLE table_name_56 (rank VARCHAR, county VARCHAR, mine VARCHAR)"}, {"answer": "SELECT capacity__thousands_of_metric_tons_ FROM table_name_67 WHERE county = \"gila\" AND mine = \"pinto valley\"", "question": "What is the capacity of the Pinto Valley mine in Gila county?", "context": "CREATE TABLE table_name_67 (capacity__thousands_of_metric_tons_ VARCHAR, county VARCHAR, mine VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_31 WHERE agg = \"10-2\"", "question": "What is the first leg with an agg of 10-2?", "context": "CREATE TABLE table_name_31 (agg VARCHAR)"}, {"answer": "SELECT agg FROM table_name_38 WHERE team_2 = \"vantour club mangoungou\"", "question": "What is the agg of team 2 for Vantour Club Mangoungou?", "context": "CREATE TABLE table_name_38 (agg VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_19 WHERE team_1 = \"hardware stars\"", "question": "What is the first leg of team 1 for Hardware stars?", "context": "CREATE TABLE table_name_19 (team_1 VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE opponent = \"siena\" AND ground = \"home\"", "question": "On what date was the game played at home against the opponent Siena?", "context": "CREATE TABLE table_name_58 (date VARCHAR, opponent VARCHAR, ground VARCHAR)"}, {"answer": "SELECT time FROM table_name_32 WHERE opponent = \"cagliari\" AND round = \"16\"", "question": "What time was the game played against Cagliari that lasted 16 rounds?", "context": "CREATE TABLE table_name_32 (time VARCHAR, opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT ground FROM table_name_7 WHERE score = \"3-2\" AND time = \"15:00 cet\"", "question": "Where was the game played that had a score of 3-2 and a time of 15:00 cet?", "context": "CREATE TABLE table_name_7 (ground VARCHAR, score VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE date = \"april 18\"", "question": "What was the score on April 18?", "context": "CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_77 WHERE loss = \"nakamura (0-1)\"", "question": "What was the attendance when Nakamura (0-1) lost?", "context": "CREATE TABLE table_name_77 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_6 WHERE loss = \"lilly (0-1)\"", "question": "What was their record when they lost with Lilly (0-1) pitching?", "context": "CREATE TABLE table_name_6 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_51 WHERE attendance = \"26,827\"", "question": "What was their record when the attendance was 26,827?", "context": "CREATE TABLE table_name_51 (record VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT december FROM table_name_76 WHERE february = \"anne-marie fox\"", "question": "Who is the December playmate with a February playmate Anne-Marie Fox?", "context": "CREATE TABLE table_name_76 (december VARCHAR, february VARCHAR)"}, {"answer": "SELECT august FROM table_name_51 WHERE october = \"shannon long\"", "question": "Who is the August playmate with the October playmate Shannon Long?", "context": "CREATE TABLE table_name_51 (august VARCHAR, october VARCHAR)"}, {"answer": "SELECT december FROM table_name_72 WHERE november = \"marlene janssen\"", "question": "Who is the December playmate with a November playmate Marlene Janssen?", "context": "CREATE TABLE table_name_72 (december VARCHAR, november VARCHAR)"}, {"answer": "SELECT november FROM table_name_66 WHERE july = \"hope marie carlton\"", "question": "Who is the November playmate with the July playmate Hope Marie Carlton?", "context": "CREATE TABLE table_name_66 (november VARCHAR, july VARCHAR)"}, {"answer": "SELECT march FROM table_name_53 WHERE august = \"gianna amore\"", "question": "Who is the March playmate with an August playmate Gianna Amore?", "context": "CREATE TABLE table_name_53 (march VARCHAR, august VARCHAR)"}, {"answer": "SELECT january FROM table_name_66 WHERE november = \"donna edmondson\"", "question": "Who is the January playmate with the November playmate Donna Edmondson?", "context": "CREATE TABLE table_name_66 (january VARCHAR, november VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_10 WHERE host_team = \"tennessee titans\"", "question": "What is the home stadium of the Tennessee Titans?", "context": "CREATE TABLE table_name_10 (stadium VARCHAR, host_team VARCHAR)"}, {"answer": "SELECT MAX(week) FROM table_name_29 WHERE visiting_team = \"houston texans\"", "question": "When were the Houston Texans the visiting team later in the season?", "context": "CREATE TABLE table_name_29 (week INTEGER, visiting_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE final_score = \"24-34\"", "question": "The final score was 24-34 on what date?", "context": "CREATE TABLE table_name_18 (date VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_24 WHERE silver = 2 AND total < 7", "question": "What is the total number of gold medals won by nations that won 2 silver medals but fewer than 7 in total?", "context": "CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_26 WHERE bronze = 7 AND gold > 18", "question": "What is the total number of medals won by nations that had 7 bronze medals and more than 18 gold medals?", "context": "CREATE TABLE table_name_26 (total INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_47 WHERE silver > 11 AND rank = \"1\" AND bronze < 7", "question": "What nation with Rank 1 won the fewest gold medals while winning more than 11 silver but fewer than 7 bronze medals?", "context": "CREATE TABLE table_name_47 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_43 WHERE bronze = 7 AND silver > 12", "question": "What is the highest total medals won by a nation that had 7 bronze but more than 12 silver medals?", "context": "CREATE TABLE table_name_43 (total INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_4 WHERE total = 37 AND rank = \"1\" AND bronze > 7", "question": "What nation won the fewest gold medals while being in Rank 1, with a total of 37 medals and more than 7 bronze medals?", "context": "CREATE TABLE table_name_4 (gold INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE opponent = \"yuliya ustyuzhanina\"", "question": "Name the score for yuliya ustyuzhanina", "context": "CREATE TABLE table_name_84 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_84 WHERE surface = \"hard\" AND tournament = \"fort walton beach\"", "question": "Name the date for hard surface and tournament of fort walton beach", "context": "CREATE TABLE table_name_84 (date VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_7 WHERE score = \"1\u20136, 6\u20134, 6\u20134\"", "question": "Name the opponent with score of 1\u20136, 6\u20134, 6\u20134", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE date = \"10 april 2007\" AND opponent = \"selima sfar\"", "question": "Name the score for 10 april 2007 and opponent of selima sfar", "context": "CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(runners) FROM table_name_34 WHERE placing > 8", "question": "How many runners had placings over 8?", "context": "CREATE TABLE table_name_34 (runners VARCHAR, placing INTEGER)"}, {"answer": "SELECT course FROM table_name_22 WHERE jockey = \"royston ffrench\"", "question": "Which course had a jockey of Royston FFrench?", "context": "CREATE TABLE table_name_22 (course VARCHAR, jockey VARCHAR)"}, {"answer": "SELECT AVG(prize__) AS \u00a3k_ FROM table_name_33 WHERE race = \"buttercross limited stakes\"", "question": "What is the average prize for the Buttercross Limited Stakes?", "context": "CREATE TABLE table_name_33 (prize__ INTEGER, race VARCHAR)"}, {"answer": "SELECT SUM(runners) FROM table_name_81 WHERE jockey = \"olivier peslier\" AND placing < 2", "question": "How many total runners had jockeys of Olivier Peslier with placings under 2?", "context": "CREATE TABLE table_name_81 (runners INTEGER, jockey VARCHAR, placing VARCHAR)"}, {"answer": "SELECT games FROM table_name_71 WHERE marks = \"21\"", "question": "Name the games with marks of 21", "context": "CREATE TABLE table_name_71 (games VARCHAR, marks VARCHAR)"}, {"answer": "SELECT kicks FROM table_name_40 WHERE goals = \"1\"", "question": "Name the kicks with goals of 1", "context": "CREATE TABLE table_name_40 (kicks VARCHAR, goals VARCHAR)"}, {"answer": "SELECT goals FROM table_name_65 WHERE games = \"6\"", "question": "Name the goals with games of 6", "context": "CREATE TABLE table_name_65 (goals VARCHAR, games VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE final_score = \"7-23\"", "question": "What game had the date was it with the final score of 7-23", "context": "CREATE TABLE table_name_35 (date VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_74 WHERE stadium = \"astrodome\"", "question": "What was the final score of the game at the astrodome?", "context": "CREATE TABLE table_name_74 (final_score VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_99 WHERE date = \"december 30\"", "question": "What was the final score for the date of December 30?", "context": "CREATE TABLE table_name_99 (final_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_90 WHERE stadium = \"jack murphy stadium\"", "question": "What was the name of the Visiting team at Jack Murphy Stadium?", "context": "CREATE TABLE table_name_90 (visiting_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_1 WHERE stadium = \"texas stadium\"", "question": "What was the name of the host team at Texas stadium?", "context": "CREATE TABLE table_name_1 (host_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_39 WHERE date = \"december 16\"", "question": "What was the name of the host team dated December 16?", "context": "CREATE TABLE table_name_39 (host_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_21 WHERE year > 1997", "question": "Are there any Teams after 1997?", "context": "CREATE TABLE table_name_21 (team VARCHAR, year INTEGER)"}, {"answer": "SELECT class FROM table_name_85 WHERE laps < 77", "question": "Which class has laps under 77?", "context": "CREATE TABLE table_name_85 (class VARCHAR, laps INTEGER)"}, {"answer": "SELECT boarded FROM table_name_48 WHERE class = \"first\"", "question": "Who boarded first class?", "context": "CREATE TABLE table_name_48 (boarded VARCHAR, class VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_80 WHERE away_fans < 151 AND opponent = \"bury\"", "question": "What was the lowest attendance at a game when there were fewer than 151 away fans and an opponent of Bury?", "context": "CREATE TABLE table_name_80 (attendance INTEGER, away_fans VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_15 WHERE year = 1978 AND chassis = \"ensign n177\"", "question": "What are the lowest number of points with a Year of 1978, and a Chassis of ensign n177?", "context": "CREATE TABLE table_name_15 (points INTEGER, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_8 WHERE entrant = \"warsteiner brewery\"", "question": "What are the highest number of points with an Entrant of warsteiner brewery?", "context": "CREATE TABLE table_name_8 (points INTEGER, entrant VARCHAR)"}, {"answer": "SELECT d_43 FROM table_name_68 WHERE d_46 = \"r 6\"", "question": "What is the D 43 when D 46 is R 6?", "context": "CREATE TABLE table_name_68 (d_43 VARCHAR, d_46 VARCHAR)"}, {"answer": "SELECT d_44 FROM table_name_64 WHERE d_43 = \"r 14\"", "question": "What is the D44 when D43 is R 14?", "context": "CREATE TABLE table_name_64 (d_44 VARCHAR, d_43 VARCHAR)"}, {"answer": "SELECT d_48 FROM table_name_27 WHERE d_43 = \"plurality \u2191\"", "question": "What is the D48 when D 43 is plurality \u2191??", "context": "CREATE TABLE table_name_27 (d_48 VARCHAR, d_43 VARCHAR)"}, {"answer": "SELECT d_44 FROM table_name_70 WHERE d_41 = \"d 16\"", "question": "What is the D44 when D41 is D 16?", "context": "CREATE TABLE table_name_70 (d_44 VARCHAR, d_41 VARCHAR)"}, {"answer": "SELECT gender FROM table_name_95 WHERE decile = 5 AND area = \"dalefield\"", "question": "What gender is the team that has a decile of 5 and in the Dalefield area?", "context": "CREATE TABLE table_name_95 (gender VARCHAR, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT name FROM table_name_61 WHERE roll < 81 AND area = \"dalefield\"", "question": "What school in Dalefield has a roll less than 81?", "context": "CREATE TABLE table_name_61 (name VARCHAR, roll VARCHAR, area VARCHAR)"}, {"answer": "SELECT MIN(height__m_) FROM table_name_22 WHERE island = \"burray\"", "question": "What is the lowest Height (m) on the island of Burray?", "context": "CREATE TABLE table_name_22 (height__m_ INTEGER, island VARCHAR)"}, {"answer": "SELECT group FROM table_name_99 WHERE height__m_ = 32 AND population = \"0\" AND island = \"faray\"", "question": "What group on the island of Faray has a Height (m) of 32 and a Population of 0?", "context": "CREATE TABLE table_name_99 (group VARCHAR, island VARCHAR, height__m_ VARCHAR, population VARCHAR)"}, {"answer": "SELECT group FROM table_name_23 WHERE population = \"see hoy\"", "question": "What group has a Population of see hoy?", "context": "CREATE TABLE table_name_23 (group VARCHAR, population VARCHAR)"}, {"answer": "SELECT group FROM table_name_49 WHERE population = \"0\" AND island = \"muckle green holm\"", "question": "What group on the island of Muckle Green Holm has a population of 0?", "context": "CREATE TABLE table_name_49 (group VARCHAR, population VARCHAR, island VARCHAR)"}, {"answer": "SELECT area___ha__ FROM table_name_31 WHERE height__m_ > 7 AND island = \"linga holm\"", "question": "What is the area (ha) of the group on the island of Linga Holm that has a Height (m) larger than 7?", "context": "CREATE TABLE table_name_31 (area___ha__ VARCHAR, height__m_ VARCHAR, island VARCHAR)"}, {"answer": "SELECT population FROM table_name_30 WHERE height__m_ = 15 AND area___ha__ = \"00017 17\"", "question": "What is the Population of the group that has a Height (m) of 15 and an Area (ha) of 00017 17?", "context": "CREATE TABLE table_name_30 (population VARCHAR, height__m_ VARCHAR, area___ha__ VARCHAR)"}, {"answer": "SELECT roll FROM table_name_86 WHERE area = \"aramoho\" AND decile = 1", "question": "What is the roll number of the school in Aramoho with a decile of 1?", "context": "CREATE TABLE table_name_86 (roll VARCHAR, area VARCHAR, decile VARCHAR)"}, {"answer": "SELECT area FROM table_name_54 WHERE name = \"mangamahu primary school\"", "question": "What is the area of Mangamahu primary school?", "context": "CREATE TABLE table_name_54 (area VARCHAR, name VARCHAR)"}, {"answer": "SELECT area FROM table_name_17 WHERE authority = \"state\" AND gender = \"coed\" AND roll = 122", "question": "What is the area of the coed school with a state authority and a roll number of 122?", "context": "CREATE TABLE table_name_17 (area VARCHAR, roll VARCHAR, authority VARCHAR, gender VARCHAR)"}, {"answer": "SELECT result___category FROM table_name_18 WHERE year < 2007", "question": "Which result is older than 2007?", "context": "CREATE TABLE table_name_18 (result___category VARCHAR, year INTEGER)"}, {"answer": "SELECT SUM(year) FROM table_name_39 WHERE album___song = \"speaking louder than before\"", "question": "What year was the Album/Song Speaking louder than before?", "context": "CREATE TABLE table_name_39 (year INTEGER, album___song VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_19 WHERE album___song = \"the best worst-case scenario\"", "question": "What is the most recent year with the Album/Song \"the best worst-case scenario\"?", "context": "CREATE TABLE table_name_19 (year INTEGER, album___song VARCHAR)"}, {"answer": "SELECT score FROM table_name_23 WHERE surface = \"clay\" AND partner = \"remi tezuka\"", "question": "What was the score of the final in which Melanie South played with partner Remi Tezuka on a clay surface?", "context": "CREATE TABLE table_name_23 (score VARCHAR, surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE partner = \"ksenia lykina\" AND tournament = \"kurume\"", "question": "What was the score of the final in which Melanie South played with partner Ksenia Lykina during the Kurume Cup tournament?", "context": "CREATE TABLE table_name_59 (score VARCHAR, partner VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_27 WHERE partner = \"katie o'brien\"", "question": "What was the score of the final in which Melanie South played with partner Katie O'Brien?", "context": "CREATE TABLE table_name_27 (score VARCHAR, partner VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_82 WHERE tournament = \"edinburgh\"", "question": "What was the outcome of the tournament in Edinburgh?", "context": "CREATE TABLE table_name_82 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT SUM(decile) FROM table_name_66 WHERE authority = \"state\" AND name = \"newfield park school\"", "question": "What is the total decile with an Authority of state, and a Name of newfield park school?", "context": "CREATE TABLE table_name_66 (decile INTEGER, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(decile) FROM table_name_47 WHERE roll > 34 AND gender = \"coed\" AND authority = \"state integrated\" AND area = \"georgetown\"", "question": "What is the largest decile with a Roll larger than 34, a Gender of coed, and an Authority of state integrated, and an Area of georgetown?", "context": "CREATE TABLE table_name_47 (decile INTEGER, area VARCHAR, authority VARCHAR, roll VARCHAR, gender VARCHAR)"}, {"answer": "SELECT MIN(roll) FROM table_name_97 WHERE authority = \"state\" AND name = \"newfield park school\" AND decile < 2", "question": "What is the smallest roll with an Authority of state, a Name of newfield park school, and a Decile smaller than 2?", "context": "CREATE TABLE table_name_97 (roll INTEGER, decile VARCHAR, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_65 WHERE area = \"makarewa\"", "question": "Which name has an Area of makarewa?", "context": "CREATE TABLE table_name_65 (name VARCHAR, area VARCHAR)"}, {"answer": "SELECT name FROM table_name_35 WHERE gender = \"coed\" AND decile > 5 AND roll = 131", "question": "Which name has a Gender of coed, and a Decile larger than 5, and a Roll of 131?", "context": "CREATE TABLE table_name_35 (name VARCHAR, roll VARCHAR, gender VARCHAR, decile VARCHAR)"}, {"answer": "SELECT SUM(ends) FROM table_name_65 WHERE goals < 0", "question": "Add up all the Ends columns that have goals smaller than 0.", "context": "CREATE TABLE table_name_65 (ends INTEGER, goals INTEGER)"}, {"answer": "SELECT competition FROM table_name_43 WHERE year = 2003", "question": "What was the competition in 2003?", "context": "CREATE TABLE table_name_43 (competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT competition FROM table_name_76 WHERE year = 2003", "question": "What was the competition in 2003?", "context": "CREATE TABLE table_name_76 (competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(position) FROM table_name_92 WHERE points = \"50+12\" AND draws < 10", "question": "Which position has 50+12 points and fewer than 10 draws?", "context": "CREATE TABLE table_name_92 (position INTEGER, points VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_62 WHERE goals_for < 40 AND played > 38", "question": "How many positions have goals of fewer than 40 and more than 38 played?", "context": "CREATE TABLE table_name_62 (position VARCHAR, goals_for VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_26 WHERE goal_difference < -2 AND club = \"cd sabadell\" AND played > 38", "question": "How many losses are there in the CD Sabadell club with a goal difference less than -2, and more than 38 played?", "context": "CREATE TABLE table_name_26 (losses INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(played) FROM table_name_64 WHERE goals_for < 43 AND draws > 9 AND position > 17 AND points = \"30-8\"", "question": "What are the average number of played with goals of less than 43, more than 9 draws, a higher position than 17 and 30-8 points?", "context": "CREATE TABLE table_name_64 (played INTEGER, points VARCHAR, position VARCHAR, goals_for VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(loss) FROM table_name_86 WHERE avg_g < -3.3 AND gain > 126", "question": "What is the total number of losses of the player with an avg/g smaller than -3.3 and a gain larger than 126?", "context": "CREATE TABLE table_name_86 (loss VARCHAR, avg_g VARCHAR, gain VARCHAR)"}, {"answer": "SELECT COUNT(loss) FROM table_name_41 WHERE gain > 27 AND avg_g < 55.9 AND name = \"jackson, t.\" AND long < 34", "question": "What is the total number of losses Jackson, T., who had more than 27 gain, an avg/g smaller than 55.9, and a long less than 34, had?", "context": "CREATE TABLE table_name_41 (loss VARCHAR, long VARCHAR, name VARCHAR, gain VARCHAR, avg_g VARCHAR)"}, {"answer": "SELECT COUNT(long) FROM table_name_45 WHERE loss = 0 AND gain < 17 AND avg_g > 0 AND name = \"dubose, e.\"", "question": "What is the total number of long Dubose, E., who had 0 losses, a gain less than 17, and an avg/g bigger than 0, had?", "context": "CREATE TABLE table_name_45 (long VARCHAR, name VARCHAR, avg_g VARCHAR, loss VARCHAR, gain VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE record = \"20\u201316\"", "question": "What date was the record 20\u201316?", "context": "CREATE TABLE table_name_38 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_43 WHERE opponent = \"brewers\" AND score = \"9\u20136\"", "question": "What was the attendance in the gave versus the Brewers with a score of 9\u20136?", "context": "CREATE TABLE table_name_43 (attendance VARCHAR, opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_90 WHERE date = \"may 26\"", "question": "What was the attendance on May 26?", "context": "CREATE TABLE table_name_90 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(inns) FROM table_name_56 WHERE matches = 127", "question": "Matches of 127 has how many total number of inns?", "context": "CREATE TABLE table_name_56 (inns VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MIN(runs) FROM table_name_83 WHERE name = \"clem hill\" AND inns > 126", "question": "Name of clem hill, and Inns larger than 126 has the lowest runs?", "context": "CREATE TABLE table_name_83 (runs INTEGER, name VARCHAR, inns VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_24 WHERE runs < 6106 AND inns < 146", "question": "Runs smaller than 6106, and Inns smaller than 146 has what total number of matches?", "context": "CREATE TABLE table_name_24 (matches VARCHAR, runs VARCHAR, inns VARCHAR)"}, {"answer": "SELECT MAX(inns) FROM table_name_64 WHERE seasons = \"1987\u20132007\" AND runs > 11622", "question": "Seasons of 1987\u20132007, and a Runs larger than 11622 is the highest inns?", "context": "CREATE TABLE table_name_64 (inns INTEGER, seasons VARCHAR, runs VARCHAR)"}, {"answer": "SELECT partner FROM table_name_46 WHERE opponents_in_the_final = \"franti\u0161ek \u010derm\u00e1k michal merti\u0148\u00e1k\"", "question": "Name the partner for opponents of franti\u0161ek \u010derm\u00e1k michal merti\u0148\u00e1k", "context": "CREATE TABLE table_name_46 (partner VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_63 WHERE date = \"january 12, 2013\"", "question": "Name the score in the final for january 12, 2013", "context": "CREATE TABLE table_name_63 (score_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_19 WHERE outcome = \"runner-up\" AND date = \"august 7, 2011\"", "question": "Name the opponents for outcome of runner-up and date of august 7, 2011", "context": "CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT partner FROM table_name_22 WHERE surface = \"grass\" AND opponents_in_the_final = \"j\u00fcrgen melzer philipp petzschner\"", "question": "Name the partner for surface of grass and opponents of j\u00fcrgen melzer philipp petzschner", "context": "CREATE TABLE table_name_22 (partner VARCHAR, surface VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_1 WHERE outcome = \"runner-up\" AND surface = \"hard\" AND opponents_in_the_final = \"micha\u00ebl llodra nenad zimonji\u0107\"", "question": "Name the score in the final for runner-up and hard surface with opponents being micha\u00ebl llodra nenad zimonji\u0107", "context": "CREATE TABLE table_name_1 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT launched FROM table_name_45 WHERE ship = \"wyandotte\"", "question": "What date was the ship 'Wyandotte' launched?", "context": "CREATE TABLE table_name_45 (launched VARCHAR, ship VARCHAR)"}, {"answer": "SELECT renamed FROM table_name_58 WHERE ship = \"ajax\"", "question": "What was the original name of the ship 'Ajax'?", "context": "CREATE TABLE table_name_58 (renamed VARCHAR, ship VARCHAR)"}, {"answer": "SELECT commissioned_or_completed_ * _ FROM table_name_60 WHERE ship = \"manhattan\"", "question": "What date was the ship named Manhattan completed?", "context": "CREATE TABLE table_name_60 (commissioned_or_completed_ VARCHAR, _ VARCHAR, ship VARCHAR)"}, {"answer": "SELECT class FROM table_name_77 WHERE laps < 336 AND year = 2004", "question": "What class had fewer than 336 laps in 2004?", "context": "CREATE TABLE table_name_77 (class VARCHAR, laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_72 WHERE game < 1", "question": "What is the average attendance of game 1?", "context": "CREATE TABLE table_name_72 (attendance INTEGER, game INTEGER)"}, {"answer": "SELECT MAX(attendance) FROM table_name_38 WHERE time = \"2:07\"", "question": "What is the attendance amount of the race with a time of 2:07?", "context": "CREATE TABLE table_name_38 (attendance INTEGER, time VARCHAR)"}, {"answer": "SELECT club FROM table_name_33 WHERE goals_for < 61 AND goals_against = 55", "question": "What club has less than 61 goals for and 55 goals against?", "context": "CREATE TABLE table_name_33 (club VARCHAR, goals_for VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_29 WHERE points = \"45+7\" AND position < 3", "question": "What is the amount of Draws for the game that had a score of 45+7 and a position below 3?", "context": "CREATE TABLE table_name_29 (draws VARCHAR, points VARCHAR, position VARCHAR)"}, {"answer": "SELECT MIN(draws) FROM table_name_86 WHERE goal_difference > -16 AND club = \"elche cf\" AND played > 38", "question": "What was the number of draws when the Elche CF club played 38 and had a goal difference of -16?", "context": "CREATE TABLE table_name_86 (draws INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)"}, {"answer": "SELECT recipient FROM table_name_7 WHERE year < 2008", "question": "Who was the recipient for Outstanding actress television series prior to 2008?", "context": "CREATE TABLE table_name_7 (recipient VARCHAR, year INTEGER)"}, {"answer": "SELECT opponent FROM table_name_67 WHERE record = \"71-78\"", "question": "Who was the opponent at the game when the record was 71-78?", "context": "CREATE TABLE table_name_67 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE loss = \"risley (0-1)\"", "question": "What was the date of the game that had a loss of Risley (0-1)?", "context": "CREATE TABLE table_name_2 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE record = \"70-74\"", "question": "What was the date of the game when the record was 70-74?", "context": "CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT name FROM table_name_78 WHERE moving_from = \"manchester united\"", "question": "What player was moving from manchester united?", "context": "CREATE TABLE table_name_78 (name VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT name FROM table_name_92 WHERE transfer_fee = \"\u00a3210k\"", "question": "What player costs \u00a3210k to transfer?", "context": "CREATE TABLE table_name_92 (name VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_28 WHERE transfer_window = \"winter\" AND country = \"wal\"", "question": "Who is moving during winter from wal?", "context": "CREATE TABLE table_name_28 (moving_from VARCHAR, transfer_window VARCHAR, country VARCHAR)"}, {"answer": "SELECT original_artist FROM table_name_32 WHERE episode = \"workshop #1\"", "question": "Which original artist has a Episode of workshop #1?", "context": "CREATE TABLE table_name_32 (original_artist VARCHAR, episode VARCHAR)"}, {"answer": "SELECT theme FROM table_name_79 WHERE episode = \"top 6\"", "question": "Which theme has a Episode of top 6?", "context": "CREATE TABLE table_name_79 (theme VARCHAR, episode VARCHAR)"}, {"answer": "SELECT theme FROM table_name_5 WHERE order__number = \"9\"", "question": "Which Theme has a Order # of 9?", "context": "CREATE TABLE table_name_5 (theme VARCHAR, order__number VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE date = \"august 19\"", "question": "What was the score on August 19?", "context": "CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_83 WHERE time = \"2:46\"", "question": "Where the time is 2:46, what is the record?", "context": "CREATE TABLE table_name_83 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE home = \"ny rangers\"", "question": "What is the Date, when the home team is the NY Rangers?", "context": "CREATE TABLE table_name_22 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT torque FROM table_name_38 WHERE power = \"220kw (299hp) @ 4000\"", "question": "Power of 220kw (299hp) @ 4000 has what torque?", "context": "CREATE TABLE table_name_38 (torque VARCHAR, power VARCHAR)"}, {"answer": "SELECT displacement FROM table_name_95 WHERE year > 2002 AND power = \"220kw (299hp) @ 4000\"", "question": "What is the Displacement that has Power of 220kw (299hp) @ 4000, and a year larger than 2002?", "context": "CREATE TABLE table_name_95 (displacement VARCHAR, year VARCHAR, power VARCHAR)"}, {"answer": "SELECT engine FROM table_name_21 WHERE displacement = \"4.4l (4423cc/269in\u00b3)\" AND power = \"220kw (299hp) @ 4000\"", "question": "Displacement of 4.4l (4423cc/269in\u00b3) and a Power of 220kw (299hp) @ 4000 belongs to what engine?", "context": "CREATE TABLE table_name_21 (engine VARCHAR, displacement VARCHAR, power VARCHAR)"}, {"answer": "SELECT week FROM table_name_5 WHERE original_artist = \"the police\"", "question": "What week was the Original artist, the police ?", "context": "CREATE TABLE table_name_5 (week VARCHAR, original_artist VARCHAR)"}, {"answer": "SELECT song_choice FROM table_name_38 WHERE result = \"advanced\" AND week = \"top 20\"", "question": "Which song garnered an advanced result during top 20 week ?", "context": "CREATE TABLE table_name_38 (song_choice VARCHAR, result VARCHAR, week VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_52 WHERE year > 1998 AND tournament = \"malaysia satellite\"", "question": "Which Malaysia Satellite tournaments were played after 1998?", "context": "CREATE TABLE table_name_52 (outcome VARCHAR, year VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT score FROM table_name_40 WHERE year < 2007 AND outcome = \"runner-up\" AND tournament = \"bulgaria open\"", "question": "Who was the runner-up for the Bulgaria Open, before 2007?", "context": "CREATE TABLE table_name_40 (score VARCHAR, tournament VARCHAR, year VARCHAR, outcome VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE tournament = \"dutch open\" AND opponent = \"wong choong hann\"", "question": "What was the score of the player who played against Wong Choong Hann in the Dutch Open?", "context": "CREATE TABLE table_name_47 (score VARCHAR, tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_51 WHERE opponent = \"nguyen tien minh\" AND tournament = \"bulgaria open\"", "question": "What was the outcome of the match against Nguyen Tien Minh in the Bulgaria Open?", "context": "CREATE TABLE table_name_51 (outcome VARCHAR, opponent VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_86 WHERE visiting_team = \"new york jets\"", "question": "What was the final score when the New York Jets were the Visiting Team?", "context": "CREATE TABLE table_name_86 (final_score VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_62 WHERE visiting_team = \"cleveland browns\"", "question": "When were the Cleveland Browns the visiting team?", "context": "CREATE TABLE table_name_62 (date VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_65 WHERE visiting_team = \"new york jets\"", "question": "Where were the New York Jets visiting?", "context": "CREATE TABLE table_name_65 (stadium VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_26 WHERE stadium = \"robert f. kennedy memorial stadium\"", "question": "What was the final score in Robert F. Kennedy Memorial Stadium?", "context": "CREATE TABLE table_name_26 (final_score VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_12 WHERE date = \"november 12\"", "question": "What was the visiting team on November 12?", "context": "CREATE TABLE table_name_12 (visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_13 WHERE visiting_team = \"new england patriots\"", "question": "In what stadium were the New England Patriots the visiting team?", "context": "CREATE TABLE table_name_13 (stadium VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT MIN(goals_conceded) FROM table_name_72 WHERE played < 18", "question": "If the games played are smaller than 18, what are the lowest goals conceded?", "context": "CREATE TABLE table_name_72 (goals_conceded INTEGER, played INTEGER)"}, {"answer": "SELECT COUNT(goals_conceded) FROM table_name_54 WHERE place < 8 AND played > 18", "question": "If the place is smaller than 8 and they played more than 18, what is the total number of goals conceded?", "context": "CREATE TABLE table_name_54 (goals_conceded VARCHAR, place VARCHAR, played VARCHAR)"}, {"answer": "SELECT SUM(place) FROM table_name_60 WHERE lost < 2", "question": "What is the sum of the place that has less than 2 losses?", "context": "CREATE TABLE table_name_60 (place INTEGER, lost INTEGER)"}, {"answer": "SELECT MIN(width) FROM table_name_18 WHERE frame_size = \"5k\" AND height < 2700", "question": "What is the smallest width for a frame size of 5k and a height shorter than 2700?", "context": "CREATE TABLE table_name_18 (width INTEGER, frame_size VARCHAR, height VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_57 WHERE date = \"august 29\"", "question": "What was the opponent on August 29?", "context": "CREATE TABLE table_name_57 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_61 WHERE attendance = \"16,468\"", "question": "Which team had the attendance of 16,468 and lost?", "context": "CREATE TABLE table_name_61 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_12 WHERE loss = \"trachsel (10-11)\"", "question": "What opponent has a loss of Trachsel (10-11)?", "context": "CREATE TABLE table_name_12 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_47 WHERE date = \"august 8\"", "question": "What was the attendance on August 8?", "context": "CREATE TABLE table_name_47 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT rapid FROM table_name_91 WHERE distance__km_ < 14.2 AND station = \"k\u014dmy\u014dji\"", "question": "Which rapid has a distance in km smaller than 14.2, and a Station of k\u014dmy\u014dji?", "context": "CREATE TABLE table_name_91 (rapid VARCHAR, distance__km_ VARCHAR, station VARCHAR)"}, {"answer": "SELECT SUM(other) FROM table_name_14 WHERE name = \"simon gillett category:articles with hcards\" AND total < 34", "question": "What is the sum of Other, when the Name is Simon Gillett Category:Articles with hCards, and when the Total is less than 34?", "context": "CREATE TABLE table_name_14 (other INTEGER, name VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(league) AS Cup FROM table_name_7 WHERE total < 1 AND league < 0", "question": "What is the sum of the value \"League Cup\", when the Total is less than 1, and when the League is less than 0?", "context": "CREATE TABLE table_name_7 (league INTEGER, total VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_60 WHERE name = \"simon gillett category:articles with hcards\" AND other > 3", "question": "What is the average Total, when the Name is Simon Gillett Category:Articles with hCards, and when the Other is greater than 3?", "context": "CREATE TABLE table_name_60 (total INTEGER, name VARCHAR, other VARCHAR)"}, {"answer": "SELECT SUM(league) AS Cup FROM table_name_68 WHERE other < 1 AND name = \"gareth farrelly category:articles with hcards\" AND league > 1", "question": "What is the sum of League Cup, when the Other is less than 1, when the Name is Gareth Farrelly Category:Articles with hCards, and when the League is greater than 1?", "context": "CREATE TABLE table_name_68 (league INTEGER, other VARCHAR, name VARCHAR)"}, {"answer": "SELECT champion FROM table_name_52 WHERE runner_up = \"christopher miles\"", "question": "Name the champion for christopher miles runner-up", "context": "CREATE TABLE table_name_52 (champion VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT champion FROM table_name_52 WHERE year = \"2000\"", "question": "Name the champion for 2000", "context": "CREATE TABLE table_name_52 (champion VARCHAR, year VARCHAR)"}, {"answer": "SELECT location FROM table_name_26 WHERE year = \"1998\"", "question": "Name the location for 1998", "context": "CREATE TABLE table_name_26 (location VARCHAR, year VARCHAR)"}, {"answer": "SELECT gold FROM table_name_42 WHERE total > 4", "question": "How many gold medals correspond with a total over 4?", "context": "CREATE TABLE table_name_42 (gold VARCHAR, total INTEGER)"}, {"answer": "SELECT SUM(gold) FROM table_name_72 WHERE total = 12 AND bronze < 4", "question": "What is the sum of gold medals with a total of 12 medals and less than 4 bronze medals?", "context": "CREATE TABLE table_name_72 (gold INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_7 WHERE rank = \"total\" AND bronze > 4", "question": "What is the smallest number of gold medals corresponding to the total rank with more than 4 bronze medals?", "context": "CREATE TABLE table_name_7 (gold INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_7 WHERE gold > 4", "question": "What is the smallest number of bronze medals with more than 4 gold medals?", "context": "CREATE TABLE table_name_7 (bronze INTEGER, gold INTEGER)"}, {"answer": "SELECT gender FROM table_name_3 WHERE riding = \"st. john's south\u2014mount pearl\"", "question": "The candidate with Riding of st. john's south\u2014mount pearl is what gender?", "context": "CREATE TABLE table_name_3 (gender VARCHAR, riding VARCHAR)"}, {"answer": "SELECT number FROM table_name_26 WHERE percentage___percentage_ = \"0.35\"", "question": "Which number has a 0.35 percentage?", "context": "CREATE TABLE table_name_26 (number VARCHAR, percentage___percentage_ VARCHAR)"}, {"answer": "SELECT percentage___percentage_ FROM table_name_90 WHERE language = \"russian\"", "question": "What is the percentage for Russian?", "context": "CREATE TABLE table_name_90 (percentage___percentage_ VARCHAR, language VARCHAR)"}, {"answer": "SELECT males FROM table_name_3 WHERE language = \"russian\"", "question": "How many males speak Russian?", "context": "CREATE TABLE table_name_3 (males VARCHAR, language VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_name_4 WHERE recipient = \"red rose chain ltd\"", "question": "Who is the writer for Red Rose Chain LTD?", "context": "CREATE TABLE table_name_4 (writer_s_ VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT producer_s_ FROM table_name_50 WHERE director_s_ = \"daniel cormack\"", "question": "Which producer did Daniel Cormack direct?", "context": "CREATE TABLE table_name_50 (producer_s_ VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT producer_s_ FROM table_name_91 WHERE recipient = \"laura tunstall\"", "question": "Who produced Laura Tunstall?", "context": "CREATE TABLE table_name_91 (producer_s_ VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_name_5 WHERE film = \"jehovah's witness\"", "question": "Who wrote the film Jehovah's Witness?", "context": "CREATE TABLE table_name_5 (writer_s_ VARCHAR, film VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE distance = \"5,000m\"", "question": "When did Hein Vergeer have a distance of 5,000m?", "context": "CREATE TABLE table_name_7 (date VARCHAR, distance VARCHAR)"}, {"answer": "SELECT notes FROM table_name_57 WHERE distance = \"men's speed skating\"", "question": "What were the notes during the distance of Men's Speed Skating?", "context": "CREATE TABLE table_name_57 (notes VARCHAR, distance VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE competition = \"uefa euro 2012 qualifying\"", "question": "What date has the competition of uefa euro 2012 qualifying?", "context": "CREATE TABLE table_name_77 (date VARCHAR, competition VARCHAR)"}, {"answer": "SELECT grade FROM table_name_27 WHERE priority_entry_rights_to_derby = \"turf 1600m\"", "question": "What is the Grade that has Turf 1600m?", "context": "CREATE TABLE table_name_27 (grade VARCHAR, priority_entry_rights_to_derby VARCHAR)"}, {"answer": "SELECT priority_entry_rights_to_derby FROM table_name_51 WHERE NOT race_name = 4", "question": "What is the Priority-entry-rights to Derby in rank 4?", "context": "CREATE TABLE table_name_51 (priority_entry_rights_to_derby VARCHAR, race_name VARCHAR)"}, {"answer": "SELECT COUNT(baia_mare) FROM table_name_59 WHERE electrica_north_transylvania < 14.476 AND bistrita = 643 AND zalau < 737", "question": "How many Baia Mare have an Electrica North Transylvania under 14.476, Bistrita of 643, and Zalau under 737?", "context": "CREATE TABLE table_name_59 (baia_mare VARCHAR, zalau VARCHAR, electrica_north_transylvania VARCHAR, bistrita VARCHAR)"}, {"answer": "SELECT MIN(satu_mare) FROM table_name_37 WHERE baia_mare > 523", "question": "What is the smallest Satu Mare value associated with Baia Mare over 523?", "context": "CREATE TABLE table_name_37 (satu_mare INTEGER, baia_mare INTEGER)"}, {"answer": "SELECT word_wrap_support FROM table_name_65 WHERE format = \"mobipocket\"", "question": "Which Word wrap support has a Format of mobipocket?", "context": "CREATE TABLE table_name_65 (word_wrap_support VARCHAR, format VARCHAR)"}, {"answer": "SELECT interactivity_support FROM table_name_75 WHERE format = \"fictionbook\"", "question": "Which Interactivity support has a Format of fictionbook?", "context": "CREATE TABLE table_name_75 (interactivity_support VARCHAR, format VARCHAR)"}, {"answer": "SELECT filename_extension FROM table_name_64 WHERE interactivity_support = \"no\" AND open_standard = \"yes\" AND image_support = \"no\"", "question": "Which Filename extension has an Interactivity support of no, an Open standard of yes, and an Image support of no?", "context": "CREATE TABLE table_name_64 (filename_extension VARCHAR, image_support VARCHAR, interactivity_support VARCHAR, open_standard VARCHAR)"}, {"answer": "SELECT filename_extension FROM table_name_26 WHERE word_wrap_support = \"yes\" AND open_standard = \"no\" AND interactivity_support = \"yes\"", "question": "Which Filename extension has a Word wrap support of yes, an Open standard of no, and an Interactivity support of yes?", "context": "CREATE TABLE table_name_26 (filename_extension VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR, open_standard VARCHAR)"}, {"answer": "SELECT format FROM table_name_22 WHERE interactivity_support = \"no\" AND word_wrap_support = \"yes\" AND image_support = \"yes\" AND open_standard = \"yes\"", "question": "Which Format has an Interactivity support of no, a Word wrap support of yes, an Image support of yes, and an Open standard of yes?", "context": "CREATE TABLE table_name_22 (format VARCHAR, open_standard VARCHAR, image_support VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_67 WHERE position = \"guard\" AND pick__number > 9", "question": "Position of guard, and a Pick # larger than 9 is what highest round?", "context": "CREATE TABLE table_name_67 (round INTEGER, position VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT college FROM table_name_55 WHERE pick__number < 11 AND name = \"von hutchins\"", "question": "Pick # smaller than 11, and a Name of von hutchins belongs to what college?", "context": "CREATE TABLE table_name_55 (college VARCHAR, pick__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(round) FROM table_name_60 WHERE college = \"idaho\" AND overall < 141", "question": "College of idaho, and an Overall smaller than 141 is what average round?", "context": "CREATE TABLE table_name_60 (round INTEGER, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_51 WHERE name = \"david kimball\" AND overall < 229", "question": "Name of David Kimball, and an Overall smaller than 229 is what highest round?", "context": "CREATE TABLE table_name_51 (round INTEGER, name VARCHAR, overall VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_70 WHERE engine = \"brm v8\"", "question": "How many points did the car with the brm v8 engine have?", "context": "CREATE TABLE table_name_70 (points VARCHAR, engine VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_59 WHERE year < 1966 AND points > 0", "question": "Which chassis has more than 0 points and was before 1966?", "context": "CREATE TABLE table_name_59 (chassis VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_10 WHERE year = 1964", "question": "How many points did he average in 1964?", "context": "CREATE TABLE table_name_10 (points INTEGER, year VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_22 WHERE engine = \"climax v8\" AND year < 1963", "question": "Before the year 1963 what was the fewest points the climax v8 engine had?", "context": "CREATE TABLE table_name_22 (points INTEGER, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_85 WHERE points < 1", "question": "What was the earliest year that had less than 1 point?", "context": "CREATE TABLE table_name_85 (year INTEGER, points INTEGER)"}, {"answer": "SELECT MAX(attendance) FROM table_name_33 WHERE date = \"october 27, 1963\"", "question": "How many were in attendance on October 27, 1963?", "context": "CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT _number___county FROM table_name_90 WHERE year_joined < 1981 AND location = \"chalmers\"", "question": "which # / county is correct for year less than 1981 and chalmers as location?", "context": "CREATE TABLE table_name_90 (_number___county VARCHAR, year_joined VARCHAR, location VARCHAR)"}, {"answer": "SELECT year_joined FROM table_name_65 WHERE _number___county = \"09 cass\"", "question": "what is the correct year for # / county of 09 cass?", "context": "CREATE TABLE table_name_65 (year_joined VARCHAR, _number___county VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_39 WHERE _number___county = \"66 pulaski 2\"", "question": "what's the mascot for 66 pulaski 2?", "context": "CREATE TABLE table_name_39 (mascot VARCHAR, _number___county VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_85 WHERE silver = 2 AND gold < 0", "question": "What is the total bronze with a Silver of 2, and a Gold smaller than 0?", "context": "CREATE TABLE table_name_85 (bronze INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_85 WHERE rank > 11 AND nation = \"switzerland\" AND silver < 0", "question": "What is the average total with a Rank larger than 11, a Nation of switzerland, and a Silver smaller than 0?", "context": "CREATE TABLE table_name_85 (total INTEGER, silver VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_48 WHERE bronze < 7 AND total = 1 AND nation = \"cape verde\" AND silver < 0", "question": "What is the total Gold with a Bronze smaller than 7, a Total of 1, a Nation of cape verde, and a Silver smaller than 0?", "context": "CREATE TABLE table_name_48 (gold INTEGER, silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT power FROM table_name_58 WHERE year < 1999", "question": "How powerful is the model before 1999?", "context": "CREATE TABLE table_name_58 (power VARCHAR, year INTEGER)"}, {"answer": "SELECT displacement FROM table_name_61 WHERE year = 1999 AND torque = \"280n\u00b7m (207lb\u00b7ft) @ 1750\"", "question": "What displacement is the model in 1999 with a Torque of 280n\u00b7m (207lb\u00b7ft) @ 1750?", "context": "CREATE TABLE table_name_61 (displacement VARCHAR, year VARCHAR, torque VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_56 WHERE power = \"90kw (121hp) @ 4000\"", "question": "When is the earliest year with a Power of 90kw (121hp) @ 4000?", "context": "CREATE TABLE table_name_56 (year INTEGER, power VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_55 WHERE torque = \"330n\u00b7m (243lb\u00b7ft) @ 2000-2500\"", "question": "When is the earliest year with a Torque of 330n\u00b7m (243lb\u00b7ft) @ 2000-2500?", "context": "CREATE TABLE table_name_55 (year INTEGER, torque VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_75 WHERE week = 14", "question": "What week 14 has the lowest attendance?", "context": "CREATE TABLE table_name_75 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_84 WHERE date = \"september 14, 1986\"", "question": "What is the highest attendance on September 14, 1986?", "context": "CREATE TABLE table_name_84 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT type FROM table_name_29 WHERE course = \"vicenza to marostica\"", "question": "What type is the race with the vicenza to marostica course?", "context": "CREATE TABLE table_name_29 (type VARCHAR, course VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_82 WHERE 2003 = \"a\" AND 2011 = \"3r\"", "question": "Name the 2005 for 2003 of a and 2011 of 3r", "context": "CREATE TABLE table_name_82 (Id VARCHAR)"}, {"answer": "SELECT 2006 FROM table_name_1 WHERE 2003 = \"a\" AND 2012 = \"a\"", "question": "Name the 2006 with 2003 of a and 2012 of a", "context": "CREATE TABLE table_name_1 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_9 WHERE 2006 = \"2r\"", "question": "Name the 2010 for 2006 of 2r", "context": "CREATE TABLE table_name_9 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_17 WHERE 2005 = \"a\" AND 2003 = \"a\" AND 2009 = \"sf\"", "question": "Name the 2007 for 2005 of a and 003 of a with 2009 of sf", "context": "CREATE TABLE table_name_17 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_97 WHERE 2006 = \"2r\"", "question": "Name the 2011 with 2006 of 2r", "context": "CREATE TABLE table_name_97 (Id VARCHAR)"}, {"answer": "SELECT venue FROM table_name_11 WHERE date = \"7 october 2011\"", "question": "what was the venue on 7 october 2011?", "context": "CREATE TABLE table_name_11 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(number) FROM table_name_74 WHERE opponent = \"julio c\u00e9sar v\u00e1squez\"", "question": "What is the highest number of the match with julio c\u00e9sar v\u00e1squez as the opponent?", "context": "CREATE TABLE table_name_74 (number INTEGER, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_47 WHERE date = \"2006-04-08\"", "question": "Who was the opponent of the match on 2006-04-08?", "context": "CREATE TABLE table_name_47 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_42 WHERE opponent = \"zab judah\"", "question": "What is the result of the match with Zab Judah as the opponent?", "context": "CREATE TABLE table_name_42 (result VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE result = \"ud 12/12\" AND name = \"pernell whitaker\" AND opponent = \"james mcgirt\"", "question": "What is the date of the match with a result of ud 12/12 between Pernell Whitaker and James Mcgirt?", "context": "CREATE TABLE table_name_87 (date VARCHAR, opponent VARCHAR, result VARCHAR, name VARCHAR)"}, {"answer": "SELECT score FROM table_name_50 WHERE date = \"13 june 2004\"", "question": "What score was on 13 June 2004?", "context": "CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT rider FROM table_name_50 WHERE final_position___tour < 50 AND final_position___vuelta < 11 AND year < 2008", "question": "Who is the rider with less than 50 final position-tours and less than 11 final position-vuelta before 2008?", "context": "CREATE TABLE table_name_50 (rider VARCHAR, year VARCHAR, final_position___tour VARCHAR, final_position___vuelta VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_67 WHERE final_position___tour > 72 AND final_position___vuelta < 77 AND final_position___giro < 57 AND rider = \"valdimir poelnikov\"", "question": "What is the earliest year of Valdimir Poelnikov, who has a final position-tour bigger than 72, a final position-vuelta less than 77, and a final position-giro less than 57?", "context": "CREATE TABLE table_name_67 (year INTEGER, rider VARCHAR, final_position___giro VARCHAR, final_position___tour VARCHAR, final_position___vuelta VARCHAR)"}, {"answer": "SELECT COUNT(final_position___tour) FROM table_name_95 WHERE final_position___giro > 20 AND rider = \"mariano piccoli\" AND year < 1999", "question": "What is the number of final position-tours Mariano Piccoli, who has more than 20 final position-giros, before 1999 has?", "context": "CREATE TABLE table_name_95 (final_position___tour VARCHAR, year VARCHAR, final_position___giro VARCHAR, rider VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_29 WHERE final_position___tour = 88 AND final_position___giro < 11", "question": "What year was the rider with a final position-tour of 88 and less than 11 final position-giros?", "context": "CREATE TABLE table_name_29 (year INTEGER, final_position___tour VARCHAR, final_position___giro VARCHAR)"}, {"answer": "SELECT loss FROM table_name_67 WHERE date = \"april 26\"", "question": "How much did they lose by on April 26?", "context": "CREATE TABLE table_name_67 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_99 WHERE opponent = \"indians\" AND record = \"13-4\"", "question": "What was the highest attendance when the opponent was the Indians and the record was 13-4?", "context": "CREATE TABLE table_name_99 (attendance INTEGER, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_75 WHERE record = \"15-4\"", "question": "What day did the record reach 15-4?", "context": "CREATE TABLE table_name_75 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT SUM(ranking) FROM table_name_2 WHERE nationality = \"england\" AND goals > 53", "question": "What is the number of ranking when the nationalits is England with more than 53 goals?", "context": "CREATE TABLE table_name_2 (ranking INTEGER, nationality VARCHAR, goals VARCHAR)"}, {"answer": "SELECT MIN(ranking) FROM table_name_67 WHERE name = \"paul mctiernan\"", "question": "What is the lowest ranking for Paul Mctiernan?", "context": "CREATE TABLE table_name_67 (ranking INTEGER, name VARCHAR)"}, {"answer": "SELECT years FROM table_name_38 WHERE ranking < 8 AND goals < 66 AND name = \"paul mcgee\"", "question": "What are the years when the ranking is less than 8 with less than 66 goals and name is Paul McGee?", "context": "CREATE TABLE table_name_38 (years VARCHAR, name VARCHAR, ranking VARCHAR, goals VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_59 WHERE year > 1999", "question": "Which entrant has a year after 1999?", "context": "CREATE TABLE table_name_59 (entrant VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(place) FROM table_name_40 WHERE round_1 = \"beat lee janzen 3&2\" AND year < 1998", "question": "Round 1 of beat lee janzen 3&2, and a Year smaller than 1998 has what total number of place?", "context": "CREATE TABLE table_name_40 (place VARCHAR, round_1 VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(money__) AS $_ FROM table_name_33 WHERE round_1 = \"71\"", "question": "Round 1 of 71 has how many highest money?", "context": "CREATE TABLE table_name_33 (money__ INTEGER, round_1 VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_19 WHERE round_1 = \"66\" AND money__$_ > 400 OFFSET 000", "question": "Round 1 of 66, and a Money ($) larger than 400,000 has what sum of year?", "context": "CREATE TABLE table_name_19 (year INTEGER, round_1 VARCHAR, money__$_ VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_72 WHERE round_1 = \"70\" AND money__$_ > 500 OFFSET 000", "question": "Round 1 of 70, and a Money ($) larger than 500,000 has the highest year?", "context": "CREATE TABLE table_name_72 (year INTEGER, round_1 VARCHAR, money__$_ VARCHAR)"}, {"answer": "SELECT MAX(debut_in_europe) FROM table_name_57 WHERE player = \"henrik larsson\" AND games < 108", "question": "When was the latest debut in Europe for Henrik Larsson, with less than 108 games?", "context": "CREATE TABLE table_name_57 (debut_in_europe INTEGER, player VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_53 WHERE debut_in_europe < 1961", "question": "What were the lowest goals with a debut before 1961 in Europe?", "context": "CREATE TABLE table_name_53 (goals INTEGER, debut_in_europe INTEGER)"}, {"answer": "SELECT AVG(goals) FROM table_name_17 WHERE player = \"thierry henry\" AND rank > 7", "question": "What was Thierry Henry's average goal when his rank was higher than 7?", "context": "CREATE TABLE table_name_17 (goals INTEGER, player VARCHAR, rank VARCHAR)"}, {"answer": "SELECT surface FROM table_name_58 WHERE date = \"february 25, 1996\"", "question": "Name the surface for february 25, 1996", "context": "CREATE TABLE table_name_58 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_90 WHERE date = \"may 18, 1997\"", "question": "Name the tournament for may 18, 1997", "context": "CREATE TABLE table_name_90 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT partner FROM table_name_8 WHERE date = \"may 2, 1993\"", "question": "Name the partner for may 2, 1993", "context": "CREATE TABLE table_name_8 (partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponents FROM table_name_80 WHERE date = \"may 18, 1997\"", "question": "Name the opponents for may 18, 1997", "context": "CREATE TABLE table_name_80 (opponents VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(erp_w) FROM table_name_21 WHERE call_sign = \"wpib\"", "question": "When the call sign is wpib, what is lowest ERP W?", "context": "CREATE TABLE table_name_21 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT class FROM table_name_44 WHERE call_sign = \"wokg\"", "question": "Which class's call sign is wokg?", "context": "CREATE TABLE table_name_44 (class VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT class FROM table_name_79 WHERE frequency_mhz = 89.3", "question": "The frequency 89.3 belongs to what class?", "context": "CREATE TABLE table_name_79 (class VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT SUM(high_estimate) FROM table_name_51 WHERE type = \"mass suicide\" AND location = \"france\" AND low_estimate > 16", "question": "With a type of mass suicide located in France and a low estimate greater than 16, the sum of the high estimate numbers listed is what number?", "context": "CREATE TABLE table_name_51 (high_estimate INTEGER, low_estimate VARCHAR, type VARCHAR, location VARCHAR)"}, {"answer": "SELECT SUM(low_estimate) FROM table_name_66 WHERE date = \"1978\"", "question": "What is the sum of low estimate(s) that is listed for the date of 1978?", "context": "CREATE TABLE table_name_66 (low_estimate INTEGER, date VARCHAR)"}, {"answer": "SELECT MAX(total_finals) FROM table_name_56 WHERE runners_up > 2 AND winners < 1", "question": "What is the highest total number of finals a club with more than 2 runners-up and fewer than 1 winner went to?", "context": "CREATE TABLE table_name_56 (total_finals INTEGER, runners_up VARCHAR, winners VARCHAR)"}, {"answer": "SELECT COUNT(receptions) FROM table_name_6 WHERE receiving_yards < 161 AND rushing_tds < 14", "question": "How many receptions were smaller than 161 receiving yards but also had less than 14 rushing TDs?", "context": "CREATE TABLE table_name_6 (receptions VARCHAR, receiving_yards VARCHAR, rushing_tds VARCHAR)"}, {"answer": "SELECT MAX(rushing_yards) FROM table_name_16 WHERE rushes = 283 AND rushing_tds < 10", "question": "What was the greatest number of rushing yards for a runner who had 283 rushes and less than 10 rushing TDs?", "context": "CREATE TABLE table_name_16 (rushing_yards INTEGER, rushes VARCHAR, rushing_tds VARCHAR)"}, {"answer": "SELECT agg FROM table_name_38 WHERE team_1 = \"vsadc\"", "question": "What was the Agg., when Team 1 was VSADC?", "context": "CREATE TABLE table_name_38 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_15 WHERE points = \"47+9\" AND played < 38", "question": "How many goals were scored by the team that played less than 38 games, and had points of 47+9?", "context": "CREATE TABLE table_name_15 (goals_for INTEGER, points VARCHAR, played VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_15 WHERE draws > 13 AND goal_difference = -14 AND losses < 14", "question": "What is the average wins of the team with more than 13 draws, a goal difference of -14, and losses less than 14?", "context": "CREATE TABLE table_name_15 (wins INTEGER, losses VARCHAR, draws VARCHAR, goal_difference VARCHAR)"}, {"answer": "SELECT points FROM table_name_39 WHERE goal_difference < 38 AND wins = 12 AND club = \"real oviedo\"", "question": "In the club of Real Oviedo, what were the points of the competitor with a goal difference less than 38, and 12 wins?", "context": "CREATE TABLE table_name_39 (points VARCHAR, club VARCHAR, goal_difference VARCHAR, wins VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE date = \"february 25\"", "question": "Name the record for february 25", "context": "CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_63 WHERE appearances = 116", "question": "What nationality has 116 appearances?", "context": "CREATE TABLE table_name_63 (nationality VARCHAR, appearances VARCHAR)"}, {"answer": "SELECT captaincy FROM table_name_89 WHERE appearances < 212 AND goals = 12 AND position_[a_] = \"defender\"", "question": "What is the captaincy for Defender that has less than 212 appearances and 12 goals?", "context": "CREATE TABLE table_name_89 (captaincy VARCHAR, appearances VARCHAR, goals VARCHAR, position_ VARCHAR, a_ VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_25 WHERE attendance > 55 OFFSET 189", "question": "Attendance larger than 55,189 is which average game?", "context": "CREATE TABLE table_name_25 (game INTEGER, attendance INTEGER)"}, {"answer": "SELECT score FROM table_name_15 WHERE game > 4 AND time = \"2:26\"", "question": "Game larger than 4, and a Time of 2:26 resulted in what score?", "context": "CREATE TABLE table_name_15 (score VARCHAR, game VARCHAR, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_19 WHERE round = 2 AND event = \"dream 9\"", "question": "What record does the event of dream 9 with a round of 2 hold?", "context": "CREATE TABLE table_name_19 (record VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT time FROM table_name_68 WHERE opponent = \"fredson paix\u00e3o\"", "question": "What time was Opponent Fredson Paix\u00e3o beaten in?", "context": "CREATE TABLE table_name_68 (time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT leagues_entering_at_this_round FROM table_name_39 WHERE clubs_remaining = 24", "question": "What league is entering this round with 24 clubs remaining?", "context": "CREATE TABLE table_name_39 (leagues_entering_at_this_round VARCHAR, clubs_remaining VARCHAR)"}, {"answer": "SELECT new_entries_this_round FROM table_name_71 WHERE phase = \"second phase\" AND winners_from_previous_round = \"4\"", "question": "How many new entries are there for a second phase that has 4 winners from previous rounds?", "context": "CREATE TABLE table_name_71 (new_entries_this_round VARCHAR, phase VARCHAR, winners_from_previous_round VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_42 WHERE start = \"21\"", "question": "What is the highest number of laps with a 21 start?", "context": "CREATE TABLE table_name_42 (laps INTEGER, start VARCHAR)"}, {"answer": "SELECT qual FROM table_name_5 WHERE rank = \"20\"", "question": "What is the qual for rank 20?", "context": "CREATE TABLE table_name_5 (qual VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(laps) FROM table_name_15 WHERE year = \"1949\"", "question": "What is the average number of laps in 1949?", "context": "CREATE TABLE table_name_15 (laps INTEGER, year VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_29 WHERE qual = \"128.260\"", "question": "What is the total number of laps with a 128.260 qual?", "context": "CREATE TABLE table_name_29 (laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT start FROM table_name_36 WHERE laps < 200 AND rank = \"11\"", "question": "What is the start number for a rank 11 race with less than 200 laps?", "context": "CREATE TABLE table_name_36 (start VARCHAR, laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT state_s__on_the_ballot FROM table_name_98 WHERE candidate = \"jack herer\"", "question": "Name the staes on the ballot for jack herer", "context": "CREATE TABLE table_name_98 (state_s__on_the_ballot VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT loss FROM table_name_87 WHERE record = \"45-59\"", "question": "Name the loss with record of 45-59", "context": "CREATE TABLE table_name_87 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_48 WHERE record = \"38-53\"", "question": "Name the loss with record of 38-53", "context": "CREATE TABLE table_name_48 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_30 WHERE record = \"33-47\"", "question": "Name the score for record 33-47", "context": "CREATE TABLE table_name_30 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_61 WHERE record = \"34-51\"", "question": "Name the attendance with record of 34-51", "context": "CREATE TABLE table_name_61 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_6 WHERE attendance = \"31,777\"", "question": "Name the opponent with attendance of 31,777", "context": "CREATE TABLE table_name_6 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_12 WHERE drawn = \"2\" AND losing_bonus = \"5\"", "question": "How many points drew 2 with a losing bonus of 5?", "context": "CREATE TABLE table_name_12 (points_for VARCHAR, drawn VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_74 WHERE tries_against = \"30\"", "question": "What is the number of tries for that has 30 tries against?", "context": "CREATE TABLE table_name_74 (tries_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT points FROM table_name_42 WHERE club = \"bridgend athletic rfc\"", "question": "How many points did the Bridgend Athletic RFC have?", "context": "CREATE TABLE table_name_42 (points VARCHAR, club VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_60 WHERE drawn = \"3\" AND points = \"50\"", "question": "How many points were scored against the club that drew 3 and scored 50 points?", "context": "CREATE TABLE table_name_60 (points_against VARCHAR, drawn VARCHAR, points VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_83 WHERE drawn = \"0\" AND points_for = \"427\"", "question": "What try bonus drew 0 and scored 427 points for?", "context": "CREATE TABLE table_name_83 (try_bonus VARCHAR, drawn VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT qual FROM table_name_97 WHERE year = \"1959\"", "question": "What was the qualifying time of Jim Rathmann in 1959?", "context": "CREATE TABLE table_name_97 (qual VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_26 WHERE entrant = \"fisa\"", "question": "What is the most recent championship for FISA?", "context": "CREATE TABLE table_name_26 (year INTEGER, entrant VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_12 WHERE engine = \"ats v8\"", "question": "What is the average points earned for entrants with ATS V8 engines?", "context": "CREATE TABLE table_name_12 (points INTEGER, engine VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_44 WHERE year = 2009 AND opponent_in_final = \"chong wei feng\"", "question": "What was the outcome from the 2009 match in the final against Chong Wei Feng?", "context": "CREATE TABLE table_name_44 (outcome VARCHAR, year VARCHAR, opponent_in_final VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_56 WHERE tries_for = \"25\"", "question": "What was the try bonus for the team with 25 tries for?", "context": "CREATE TABLE table_name_56 (try_bonus VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_86 WHERE club = \"bridgend athletic rfc\"", "question": "How many points for did Bridgend Athletic RFC score?", "context": "CREATE TABLE table_name_86 (points_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_49 WHERE try_bonus = \"5\"", "question": "How many tries for did the team with a try bonus of 5 score?", "context": "CREATE TABLE table_name_49 (tries_for VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_65 WHERE tries_against = \"42\"", "question": "How many points against did the team that allowed 42 tries against allow?", "context": "CREATE TABLE table_name_65 (points_against VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_58 WHERE total = 1 AND silver = 0 AND rank > 16", "question": "What is the average number of bronze medals associated with 0 silver, 1 total, and ranks over 16?", "context": "CREATE TABLE table_name_58 (bronze INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_33 WHERE bronze = 2 AND gold = 1 AND silver > 0", "question": "What is the highest total number of medals associated with 1 gold, more than 0 silver, and 2 bronze?", "context": "CREATE TABLE table_name_33 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_53 WHERE silver > 3 AND rank = 3 AND bronze > 2", "question": "What is the total number of Total values associated with mroe than 3 silvers, more than 2 bronze, and a rank of 3?", "context": "CREATE TABLE table_name_53 (total VARCHAR, bronze VARCHAR, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_75 WHERE bronze = 0 AND rank = 14 AND gold > 0", "question": "What is the smallest Silver value associated with teams having more than 0 gold, 0 bronze, and a rank of 14?", "context": "CREATE TABLE table_name_75 (silver INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT qual_1 FROM table_name_41 WHERE team = \"conquest racing\"", "question": "What is the qual 1 for conquest racing?", "context": "CREATE TABLE table_name_41 (qual_1 VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(best) FROM table_name_34 WHERE team = \"n/h/l racing\" AND name = \"graham rahal\" AND qual_2 > 59.384", "question": "Graham rahal for n/h/l racing has a qual 2 greater than 59.384 and how much lowest best?", "context": "CREATE TABLE table_name_34 (best INTEGER, qual_2 VARCHAR, team VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(best) FROM table_name_32 WHERE name = \"bruno junqueira\"", "question": "What is the total best for Bruno junqueira", "context": "CREATE TABLE table_name_32 (best INTEGER, name VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_25 WHERE location = \"brook\"", "question": "What is the Mascot of Brook?", "context": "CREATE TABLE table_name_25 (mascot VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(year_left) FROM table_name_73 WHERE location = \"fowler\"", "question": "When was the first year when Fowler joined?", "context": "CREATE TABLE table_name_73 (year_left INTEGER, location VARCHAR)"}, {"answer": "SELECT molecular_target FROM table_name_10 WHERE marine_organism_\u03b1 = \"bacterium\"", "question": "What is the molecular target of bacterium?", "context": "CREATE TABLE table_name_10 (molecular_target VARCHAR, marine_organism_\u03b1 VARCHAR)"}, {"answer": "SELECT marine_organism_\u03b1 FROM table_name_96 WHERE disease_area = \"cancer\" AND clinical_trials_\u03b2 = \"4/4\"", "question": "What is the organism that has a disease area of cancer and has 4/4 clinical trial b?", "context": "CREATE TABLE table_name_96 (marine_organism_\u03b1 VARCHAR, disease_area VARCHAR, clinical_trials_\u03b2 VARCHAR)"}, {"answer": "SELECT molecular_target FROM table_name_45 WHERE disease_area = \"antiviral\"", "question": "What is the molecular target of the organism that has a disease area of antiviral?", "context": "CREATE TABLE table_name_45 (molecular_target VARCHAR, disease_area VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE record = \"62\u201384\"", "question": "On what date was the record 62\u201384?", "context": "CREATE TABLE table_name_38 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE date = \"september 4\"", "question": "What was the record on September 4?", "context": "CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_79 WHERE date = \"september 26\"", "question": "What was the record on September 26?", "context": "CREATE TABLE table_name_79 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_35 WHERE loss = \"leal (1\u20134)\"", "question": "Who was the opponent with a Loss of Leal (1\u20134)?", "context": "CREATE TABLE table_name_35 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT COUNT(1958 AS _uta) FROM \"t\" AS able_name_49 WHERE class = \"t\"", "question": "In the Class T, what is the total of the 1958 UTA?", "context": "CREATE TABLE t (Id VARCHAR)"}, {"answer": "SELECT result FROM table_name_93 WHERE date = \"13 october 1993\"", "question": "What was the result of the match played on 13 October 1993?", "context": "CREATE TABLE table_name_93 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_67 WHERE goal = 21", "question": "When did the team score 21 goals?", "context": "CREATE TABLE table_name_67 (date VARCHAR, goal VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE date = \"14 october 1998\" AND goal > 10", "question": "What was the score of the match played on 14 October 1998, resulting in more than 10 goals?", "context": "CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR, goal VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_24 WHERE entrant = \"scuderia guastalla\"", "question": "What is the total number of years that Scuderia Guastalla was an entrant?", "context": "CREATE TABLE table_name_24 (year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_88 WHERE points = \"0\" AND entrant = \"scuderia ferrari\"", "question": "What was the earliest year that Scuderia Ferrari was an entrant with 0 points?", "context": "CREATE TABLE table_name_88 (year INTEGER, points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_24 WHERE chassis = \"ferrari 625\" AND points = \"2\"", "question": "What is the total number of years that has a chassis of Ferrari 625 and 2 points?", "context": "CREATE TABLE table_name_24 (year VARCHAR, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT song FROM table_name_53 WHERE work_done = \"guest vocals\" AND year = 2006 AND artist_s_ = \"cobra starship\"", "question": "Which 2006 Cobra Starship song has work done of guest vocals?", "context": "CREATE TABLE table_name_53 (song VARCHAR, artist_s_ VARCHAR, work_done VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(decile) FROM table_name_37 WHERE roll < 25 AND area = \"franz josef\"", "question": "What is the decile sum with a roll smaller than 25, and franz josef area?", "context": "CREATE TABLE table_name_37 (decile INTEGER, roll VARCHAR, area VARCHAR)"}, {"answer": "SELECT area FROM table_name_67 WHERE decile = 8 AND roll = 25", "question": "What is the area with decile of 8, and a 25 roll?", "context": "CREATE TABLE table_name_67 (area VARCHAR, decile VARCHAR, roll VARCHAR)"}, {"answer": "SELECT AVG(overall) FROM table_name_26 WHERE pick__number < 15", "question": "What is the overall pick average with the pick # lower than 15?", "context": "CREATE TABLE table_name_26 (overall INTEGER, pick__number INTEGER)"}, {"answer": "SELECT MIN(rank) FROM table_name_3 WHERE bronze = 3 AND total > 10", "question": "What is the lowest rank for Spain when more than 10 medals were won, 3 of which were bronze?", "context": "CREATE TABLE table_name_3 (rank INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT qual FROM table_name_38 WHERE year = \"1954\"", "question": "What is the Qual listed on the Year of 1954?", "context": "CREATE TABLE table_name_38 (qual VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_66 WHERE laps > 27 AND qual = \"144.683\"", "question": "Which Year has a Qual of 144.683 and Lap larger than 27?", "context": "CREATE TABLE table_name_66 (year VARCHAR, laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT qual FROM table_name_41 WHERE rank = \"27\"", "question": "What's the Qual listed with a Rank of 27?", "context": "CREATE TABLE table_name_41 (qual VARCHAR, rank VARCHAR)"}, {"answer": "SELECT team FROM table_name_45 WHERE year = 1978", "question": "Which Team has a Year of 1978?", "context": "CREATE TABLE table_name_45 (team VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_51 WHERE team = \"chesterfield racing\" AND chassis = \"march 761\"", "question": "Which Engine has a Team of Chesterfield Racing and include a Chassis of March 761?", "context": "CREATE TABLE table_name_51 (engine VARCHAR, team VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_37 WHERE mintage < 10 OFFSET 000", "question": "What is the smallest year with a Mintage smaller than 10,000?", "context": "CREATE TABLE table_name_37 (year INTEGER, mintage INTEGER)"}, {"answer": "SELECT loss FROM table_name_30 WHERE date = \"april 26\"", "question": "Which loss has a Date of april 26?", "context": "CREATE TABLE table_name_30 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE opponent = \"angels\" AND loss = \"sanderson (0\u20131)\"", "question": "Which date has an Opponent of angels, and a Loss of sanderson (0\u20131)?", "context": "CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_35 WHERE loss = \"darling (0\u20131)\"", "question": "What is the largest Attendance with a Loss of darling (0\u20131)?", "context": "CREATE TABLE table_name_35 (attendance INTEGER, loss VARCHAR)"}, {"answer": "SELECT maximum_seating_capacity FROM table_name_91 WHERE arena_venue = \"san agustin gym\"", "question": "What is the maximum capacity of the San Agustin Gym?", "context": "CREATE TABLE table_name_91 (maximum_seating_capacity VARCHAR, arena_venue VARCHAR)"}, {"answer": "SELECT province_region FROM table_name_98 WHERE location = \"cagayan de oro city\"", "question": "Where is the Cagayan de Oro city located?", "context": "CREATE TABLE table_name_98 (province_region VARCHAR, location VARCHAR)"}, {"answer": "SELECT province_region FROM table_name_42 WHERE home_campus = \"holy cross of davao college\"", "question": "Where is the Holy Cross of Davao College campus located?", "context": "CREATE TABLE table_name_42 (province_region VARCHAR, home_campus VARCHAR)"}, {"answer": "SELECT home_campus FROM table_name_2 WHERE arena_venue = \"san agustin gym\"", "question": "Which campus has the San Agustin gym?", "context": "CREATE TABLE table_name_2 (home_campus VARCHAR, arena_venue VARCHAR)"}, {"answer": "SELECT year_opened FROM table_name_44 WHERE arena_venue = \"san agustin gym\"", "question": "What year did the San Agustin gym open?", "context": "CREATE TABLE table_name_44 (year_opened VARCHAR, arena_venue VARCHAR)"}, {"answer": "SELECT player FROM table_name_10 WHERE total > 285 AND to_par = \"+14\"", "question": "Which player has a total bigger than 285 and a to par of +14?", "context": "CREATE TABLE table_name_10 (player VARCHAR, total VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_61 WHERE finish = \"t12\"", "question": "What is the highest total with a t12 finish?", "context": "CREATE TABLE table_name_61 (total INTEGER, finish VARCHAR)"}, {"answer": "SELECT country FROM table_name_98 WHERE finish = \"t4\"", "question": "Which country has a finish of t4?", "context": "CREATE TABLE table_name_98 (country VARCHAR, finish VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_71 WHERE total < 281", "question": "What year won has a total less than 281?", "context": "CREATE TABLE table_name_71 (year_s__won VARCHAR, total INTEGER)"}, {"answer": "SELECT chassis FROM table_name_96 WHERE rank = \"24th\"", "question": "Which chassis is ranked 24th?", "context": "CREATE TABLE table_name_96 (chassis VARCHAR, rank VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_94 WHERE year = 1993", "question": "Which chassis was made in 1993?", "context": "CREATE TABLE table_name_94 (chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT team FROM table_name_53 WHERE year < 1994", "question": "Which team is from earlier than 1994?", "context": "CREATE TABLE table_name_53 (team VARCHAR, year INTEGER)"}, {"answer": "SELECT rank FROM table_name_4 WHERE year > 1994", "question": "What rank is later than 1994?", "context": "CREATE TABLE table_name_4 (rank VARCHAR, year INTEGER)"}, {"answer": "SELECT AVG(year) FROM table_name_66 WHERE team = \"king\" AND points < 10", "question": "What year did the King team have fewer than 10 points?", "context": "CREATE TABLE table_name_66 (year INTEGER, team VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_42 WHERE engine = \"ford xb\" AND team = \"project indy\"", "question": "What are the average points for the Project Indy team that has the Ford xb engine?", "context": "CREATE TABLE table_name_42 (points INTEGER, engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT became_consort FROM table_name_92 WHERE marriage = \"4 april 1721\"", "question": "Name the became consort for marriage of 4 april 1721", "context": "CREATE TABLE table_name_92 (became_consort VARCHAR, marriage VARCHAR)"}, {"answer": "SELECT birth FROM table_name_55 WHERE spouse = \"frederick iv\" AND became_consort = \"4 april 1721\"", "question": "Name the birth of the person that has a spouse of frederick iv and became consort of 4 april 1721", "context": "CREATE TABLE table_name_55 (birth VARCHAR, spouse VARCHAR, became_consort VARCHAR)"}, {"answer": "SELECT became_consort FROM table_name_14 WHERE ceased_to_be_consort = \"4 april 1588 husband's death\"", "question": "Name the became consort for ceased to be consort of 4 april 1588 husband's death", "context": "CREATE TABLE table_name_14 (became_consort VARCHAR, ceased_to_be_consort VARCHAR)"}, {"answer": "SELECT marriage FROM table_name_74 WHERE spouse = \"christian viii\"", "question": "Name the marriage of the person who is married for christian viii", "context": "CREATE TABLE table_name_74 (marriage VARCHAR, spouse VARCHAR)"}, {"answer": "SELECT team FROM table_name_11 WHERE points = 48 AND class = \"500 cc\"", "question": "Who has 48 points in the class of 500 cc?", "context": "CREATE TABLE table_name_11 (team VARCHAR, points VARCHAR, class VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_43 WHERE team = \"benelli\" AND year < 1962", "question": "How many wins does Benelli have before 1962?", "context": "CREATE TABLE table_name_43 (wins VARCHAR, team VARCHAR, year VARCHAR)"}, {"answer": "SELECT natural_wood_keyboard FROM table_name_18 WHERE model = \"clps306\"", "question": "Which is Natural Wood Keyboard with a Model of clps306?", "context": "CREATE TABLE table_name_18 (natural_wood_keyboard VARCHAR, model VARCHAR)"}, {"answer": "SELECT graded_hammer__non_gh3_ FROM table_name_44 WHERE model = \"cvp501\"", "question": "Which Graded Hammer (Non GH3)  has a Model of cvp501?", "context": "CREATE TABLE table_name_44 (graded_hammer__non_gh3_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT natural_wood_keyboard FROM table_name_21 WHERE model = \"clp380\"", "question": "Which Natural Wood Keyboard has a CLP380 ?", "context": "CREATE TABLE table_name_21 (natural_wood_keyboard VARCHAR, model VARCHAR)"}, {"answer": "SELECT graded_hammer_three__gh3_ FROM table_name_20 WHERE model = \"clp320\"", "question": "Which Graded Hammer Three (GH3) shows Model of clp320?", "context": "CREATE TABLE table_name_20 (graded_hammer_three__gh3_ VARCHAR, model VARCHAR)"}, {"answer": "SELECT date FROM table_name_19 WHERE name = \"french grand prix\"", "question": "What was the date for the French Grand Prix?", "context": "CREATE TABLE table_name_19 (date VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_31 WHERE circuit = \"miramas\"", "question": "What was the name for the race in the Miramas circuit?", "context": "CREATE TABLE table_name_31 (name VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_44 WHERE winning_constructor = \"delage\"", "question": "Which circuit was Delage the winning constructor for?", "context": "CREATE TABLE table_name_44 (circuit VARCHAR, winning_constructor VARCHAR)"}, {"answer": "SELECT name FROM table_name_51 WHERE winning_constructor = \"bugatti\" AND circuit = \"monza\"", "question": "What is the name for the Monza circuit race were Bugatti was the winning constructor?", "context": "CREATE TABLE table_name_51 (name VARCHAR, winning_constructor VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT report FROM table_name_79 WHERE winning_drivers = \"frank lockhart\"", "question": "Which report shows that Frank Lockhart was a winning driver?", "context": "CREATE TABLE table_name_79 (report VARCHAR, winning_drivers VARCHAR)"}, {"answer": "SELECT ranking FROM table_name_25 WHERE gold < 20 AND event = \"1976 toronto\"", "question": "What Ranking has Gold less than 20 and the Event 1976 Toronto?", "context": "CREATE TABLE table_name_25 (ranking VARCHAR, gold VARCHAR, event VARCHAR)"}, {"answer": "SELECT gold FROM table_name_40 WHERE silver > 30 AND total < 107", "question": "What Gold has a Silver greater than 30 and a Total less than 107?", "context": "CREATE TABLE table_name_40 (gold VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_27 WHERE event = \"1972 heidelberg\" AND total < 5", "question": "What is the highest Bronze with the Event 1972 Heidelberg and Total less than 5?", "context": "CREATE TABLE table_name_27 (bronze INTEGER, event VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_21 WHERE event = \"2004 athens\" AND gold < 20", "question": "What is the Total with the Event 2004 Athens and Gold less than 20?", "context": "CREATE TABLE table_name_21 (total INTEGER, event VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_2 WHERE ranking = \"22nd of 32\" AND gold > 4", "question": "What is the lowest Bronze with a Ranking of 22nd of 32 and Gold larger than 4?", "context": "CREATE TABLE table_name_2 (bronze INTEGER, ranking VARCHAR, gold VARCHAR)"}, {"answer": "SELECT polling_firm FROM table_name_91 WHERE t_papadopoulos = \"31%\"", "question": "Which polling firm put T. Papadopoulos at 31%?", "context": "CREATE TABLE table_name_91 (polling_firm VARCHAR, t_papadopoulos VARCHAR)"}, {"answer": "SELECT t_papadopoulos FROM table_name_85 WHERE i_kasoulidis = \"27.1%\"", "question": "What was the percentage for T. Papadopoulos when I. Kasoulidis was 27.1%?", "context": "CREATE TABLE table_name_85 (t_papadopoulos VARCHAR, i_kasoulidis VARCHAR)"}, {"answer": "SELECT k_themistokleous FROM table_name_65 WHERE i_kasoulidis = \"30.1%\"", "question": "What was the percentage for K. Themistokleous when I. Kasoulidis was 30.1%?", "context": "CREATE TABLE table_name_65 (k_themistokleous VARCHAR, i_kasoulidis VARCHAR)"}, {"answer": "SELECT t_papadopoulos FROM table_name_48 WHERE d_christofias = \"28.4%\"", "question": "What was the percentage for T. Papadopoulos when D. Christofias was 28.4%?", "context": "CREATE TABLE table_name_48 (t_papadopoulos VARCHAR, d_christofias VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_93 WHERE 2007 = \"2r\" AND 2011 = \"2r\"", "question": "Which tournament has a 2007 of 2r, and a 2011 of 2r?", "context": "CREATE TABLE table_name_93 (tournament VARCHAR)"}, {"answer": "SELECT SUM(titles) FROM table_name_47 WHERE city = \"gy\u0151r\" AND rank > 4", "question": "What is the number of titles for the city of gy\u0151r with a rank larger than 4?", "context": "CREATE TABLE table_name_47 (titles INTEGER, city VARCHAR, rank VARCHAR)"}, {"answer": "SELECT score FROM table_name_99 WHERE home = \"toronto maple leafs\" AND date = \"february 1\"", "question": "What is the Score of the Toronto Maple Leafs home game on February 1?", "context": "CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE visitor = \"boston bruins\" AND date = \"march 13\"", "question": "What is the score of the Boston Bruins away game on March 13?", "context": "CREATE TABLE table_name_92 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_93 WHERE record = \"9\u20135\u20132\"", "question": "What visiting team has a record of 9\u20135\u20132?", "context": "CREATE TABLE table_name_93 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_98 WHERE record = \"12\u20138\u20133\"", "question": "What is the score of the game with a record of 12\u20138\u20133?", "context": "CREATE TABLE table_name_98 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE home = \"montreal canadiens\" AND record = \"14\u201311\u20133\"", "question": "What is the date that the Montreal Canadiens hosted a game with a record of 14\u201311\u20133?", "context": "CREATE TABLE table_name_77 (date VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT country FROM table_name_65 WHERE player = \"craig stadler\"", "question": "What is the country of Craig Stadler?", "context": "CREATE TABLE table_name_65 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_49 WHERE country = \"united states\" AND to_par = 9 AND player = \"gay brewer\"", "question": "What is the average total of Gay Brewer from the United States with a to par of 9?", "context": "CREATE TABLE table_name_49 (total INTEGER, player VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT finish FROM table_name_36 WHERE country = \"west germany\"", "question": "What was the finish by the player from West Germany?", "context": "CREATE TABLE table_name_36 (finish VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(goal) FROM table_name_45 WHERE competition = \"2006 fifa world cup qualification\"", "question": "What is the smallest goal during the 2006 fifa world cup qualification competition?", "context": "CREATE TABLE table_name_45 (goal INTEGER, competition VARCHAR)"}, {"answer": "SELECT representative FROM table_name_76 WHERE party = \"whig\"", "question": "Name the representative for party of whig", "context": "CREATE TABLE table_name_76 (representative VARCHAR, party VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_85 WHERE chassis = \"maserati 250f\" AND points < 0", "question": "Name the total number of years for chassis of maserati 250f and points less than 0", "context": "CREATE TABLE table_name_85 (year VARCHAR, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT engine FROM table_name_8 WHERE chassis = \"maserati 250f\" AND entrant = \"luigi piotti\" AND year < 1957", "question": "Name the engine with chassis of maserati 250f and entrant of luigi piotti with year less than 1957", "context": "CREATE TABLE table_name_8 (engine VARCHAR, year VARCHAR, chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_80 WHERE chassis = \"maserati 250f\" AND entrant = \"officine alfieri maserati\"", "question": "Name the sum of points for chassis of maserati 250f and entrant of officine alfieri maserati", "context": "CREATE TABLE table_name_80 (points INTEGER, chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_7 WHERE entrant = \"officine alfieri maserati\"", "question": "Name the lowest points for officine alfieri maserati", "context": "CREATE TABLE table_name_7 (points INTEGER, entrant VARCHAR)"}, {"answer": "SELECT height FROM table_name_36 WHERE players = \"ye fei\"", "question": "How tall is Ye Fei?", "context": "CREATE TABLE table_name_36 (height VARCHAR, players VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_1 WHERE date = \"july 26\"", "question": "What is the attendance of the game on July 26?", "context": "CREATE TABLE table_name_1 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_21 WHERE venue = \"antwerp, belgium\" AND result = \"2nd\"", "question": "How many years did the team place 2nd in Antwerp, Belgium?", "context": "CREATE TABLE table_name_21 (year VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_23 WHERE year < 1991", "question": "What is the name of the venue that was used before 1991?", "context": "CREATE TABLE table_name_23 (venue VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_name_30 WHERE result = \"2nd\" AND venue = \"auckland, new zealand\"", "question": "How many years did the team place 2nd in Auckland, New Zealand?", "context": "CREATE TABLE table_name_30 (year VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT started_round FROM table_name_57 WHERE last_match = \"january 16, 2008\"", "question": "What was the started round for the competition that had the last match on January 16, 2008?", "context": "CREATE TABLE table_name_57 (started_round VARCHAR, last_match VARCHAR)"}, {"answer": "SELECT first_match FROM table_name_81 WHERE last_match = \"december 16, 2007\"", "question": "On what date was the first match for the competition that ended its last match on December 16, 2007?", "context": "CREATE TABLE table_name_81 (first_match VARCHAR, last_match VARCHAR)"}, {"answer": "SELECT competition FROM table_name_66 WHERE final_position = \"winners\" AND final_round = \"finals\"", "question": "What competition had a final round in the finals and the final position winners?", "context": "CREATE TABLE table_name_66 (competition VARCHAR, final_position VARCHAR, final_round VARCHAR)"}, {"answer": "SELECT first_match FROM table_name_35 WHERE final_position = \"winners\" AND final_round = \"finals\"", "question": "On what date did the first match occur for the competition that ended with a final position of winners and the final round in the finals?", "context": "CREATE TABLE table_name_35 (first_match VARCHAR, final_position VARCHAR, final_round VARCHAR)"}, {"answer": "SELECT competition FROM table_name_15 WHERE first_match = \"december 20, 2007\"", "question": "What competition had its first match on December 20, 2007?", "context": "CREATE TABLE table_name_15 (competition VARCHAR, first_match VARCHAR)"}, {"answer": "SELECT first_match FROM table_name_6 WHERE final_position = \"winners\" AND competition = \"fifa club world cup\"", "question": "What was the date of the first match of the Fifa Club World Cup that ended with the final position as winners?", "context": "CREATE TABLE table_name_6 (first_match VARCHAR, final_position VARCHAR, competition VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_49 WHERE qual = \"142.653\"", "question": "What was Len Sutton's total number of completed laps when his qualifying time was 142.653?", "context": "CREATE TABLE table_name_49 (laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_81 WHERE frequency_mhz = 91.3", "question": "What call sign has a frequency of 91.3 MHz?", "context": "CREATE TABLE table_name_81 (call_sign VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_82 WHERE call_sign = \"k293bg\"", "question": "What city of license has a value of k293bg for its call sign?", "context": "CREATE TABLE table_name_82 (city_of_license VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_77 WHERE erp_w > 10 AND frequency_mhz = 103.7", "question": "When the frequency is 103.7 MHz and the ERP W is more than 10, what is the call sign?", "context": "CREATE TABLE table_name_77 (call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT AVG(frequency_mhz) FROM table_name_21 WHERE city_of_license = \"los banos, california\" AND erp_w < 10", "question": "In Los Banos, California, when the ERP W is than 10, what is the average Frequency MHz?", "context": "CREATE TABLE table_name_21 (frequency_mhz INTEGER, city_of_license VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_16 WHERE frequency_mhz < 95.5 AND erp_w > 10", "question": "What is the call sign when the frequency is less than 95.5 MHz, and a ERP W is higher than 10?", "context": "CREATE TABLE table_name_16 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT player FROM table_name_12 WHERE score = 73 - 69 - 74 - 71 = 287", "question": "Name the player with score of 73-69-74-71=287", "context": "CREATE TABLE table_name_12 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(to_par) FROM table_name_26 WHERE score = 71 - 74 - 71 - 72 = 288", "question": "Name the sum To par for score of 71-74-71-72=288", "context": "CREATE TABLE table_name_26 (to_par INTEGER, score VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_95 WHERE opponent = \"kathy horvath\"", "question": "Tell me the tournament for kathy horvath opponent", "context": "CREATE TABLE table_name_95 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_59 WHERE surface = \"hard\" AND tournament = \"maybelline classic\" AND opponent = \"wendy turnbull\"", "question": "Name the date for hard surface at maybelline classic with opponent of wendy turnbull", "context": "CREATE TABLE table_name_59 (date VARCHAR, opponent VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_86 WHERE round = \"semifinal\" AND surface = \"hard\" AND opponent = \"pam casale\"", "question": "Name the tournament for semifinal hard surface for opponent of pam casale", "context": "CREATE TABLE table_name_86 (tournament VARCHAR, opponent VARCHAR, round VARCHAR, surface VARCHAR)"}, {"answer": "SELECT date FROM table_name_36 WHERE surface = \"grass\" AND round = \"quarterfinal\" AND tournament = \"nsw building society open\"", "question": "Name the date for grass surface for quarterfinal at the nsw building society open tournament", "context": "CREATE TABLE table_name_36 (date VARCHAR, tournament VARCHAR, surface VARCHAR, round VARCHAR)"}, {"answer": "SELECT surface FROM table_name_56 WHERE tournament = \"united airlines tournament of champions\" AND round = \"final\"", "question": "Name the surface for united airlines tournament of champions final round", "context": "CREATE TABLE table_name_56 (surface VARCHAR, tournament VARCHAR, round VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE opponent = \"chris evert\" AND surface = \"carpet\"", "question": "Name the date for chris evert opponent and carpet surface", "context": "CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR, surface VARCHAR)"}, {"answer": "SELECT venue FROM table_name_94 WHERE date = \"25 may 2008\"", "question": "Name the venue for 25 may 2008", "context": "CREATE TABLE table_name_94 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE competition = \"2015 afc asian cup qualification\"", "question": "Name the score for 2015 afc asian cup qualification", "context": "CREATE TABLE table_name_73 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_6 WHERE date = \"13 december 2012\"", "question": "Name the competition for 13 december 2012", "context": "CREATE TABLE table_name_6 (competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_51 WHERE entrant = \"arrows racing team\" AND year > 1982", "question": "What was arrows racing team's highest points after 1982?", "context": "CREATE TABLE table_name_51 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_85 WHERE points = 2", "question": "How many years has 2 points?", "context": "CREATE TABLE table_name_85 (year INTEGER, points VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_33 WHERE song_title = \"love me tonight\"", "question": "Name the catalogue with song title of love me tonight", "context": "CREATE TABLE table_name_33 (catalogue VARCHAR, song_title VARCHAR)"}, {"answer": "SELECT song_title FROM table_name_75 WHERE time = \"1:51\"", "question": "Name the song title with time of 1:51", "context": "CREATE TABLE table_name_75 (song_title VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(track) FROM table_name_67 WHERE song_title = \"little sister\"", "question": "Name the least track with song of little sister", "context": "CREATE TABLE table_name_67 (track INTEGER, song_title VARCHAR)"}, {"answer": "SELECT player FROM table_name_53 WHERE score = \"79\"", "question": "What player has a score of 79?", "context": "CREATE TABLE table_name_53 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_43 WHERE ground = \"waca ground\" AND score = \"79\"", "question": "Who played on waca ground and scored 79 points?", "context": "CREATE TABLE table_name_43 (opponent VARCHAR, ground VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_8 WHERE balls = 49", "question": "What player had 49 balls?", "context": "CREATE TABLE table_name_8 (player VARCHAR, balls VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_83 WHERE score = \"3-5\"", "question": "What was the highest attendance of a game that had a score of 3-5?", "context": "CREATE TABLE table_name_83 (attendance INTEGER, score VARCHAR)"}, {"answer": "SELECT loss FROM table_name_29 WHERE record = \"54-61\"", "question": "Who took the loss in the game that ended with a 54-61 record?", "context": "CREATE TABLE table_name_29 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT 125 AS cc_winner FROM table_name_2 WHERE circuit = \"estoril\"", "question": "Name the 125cc winner with circuit of estoril", "context": "CREATE TABLE table_name_2 (circuit VARCHAR)"}, {"answer": "SELECT date FROM table_name_15 WHERE motogp_winner = \"casey stoner\" AND grand_prix = \"valencian grand prix\"", "question": "Name the date for motogp winner of casey stoner and grand prix of valencian grand prix", "context": "CREATE TABLE table_name_15 (date VARCHAR, motogp_winner VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT circuit FROM table_name_25 WHERE round = 18", "question": "Name the circuit for round 18", "context": "CREATE TABLE table_name_25 (circuit VARCHAR, round VARCHAR)"}, {"answer": "SELECT grand_prix FROM table_name_55 WHERE motogp_winner = \"casey stoner\" AND circuit = \"losail\"", "question": "Name the grand prix for casey stoner and circuit of losail", "context": "CREATE TABLE table_name_55 (grand_prix VARCHAR, motogp_winner VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT venue FROM table_name_36 WHERE date = \"2002-03-07\"", "question": "Where was the game held that was played on 2002-03-07?", "context": "CREATE TABLE table_name_36 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_18 WHERE nation = \"new zealand\" AND rank < 14", "question": "What is the total gold from New zealand and a rank less than 14?", "context": "CREATE TABLE table_name_18 (gold INTEGER, nation VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_75 WHERE gold < 0", "question": "What is the average of the silver that has less than 0 gold", "context": "CREATE TABLE table_name_75 (silver INTEGER, gold INTEGER)"}, {"answer": "SELECT nation FROM table_name_53 WHERE gold = 0 AND silver = 0 AND total = 2", "question": "Which nation has 0 gold, 0 silver and 2 total?", "context": "CREATE TABLE table_name_53 (nation VARCHAR, total VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_84 WHERE nation = \"norway\" AND bronze > 1", "question": "What is the total gold in Norway with more than 1 bronze?", "context": "CREATE TABLE table_name_84 (gold INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_27 WHERE nation = \"puerto rico\" AND total < 1", "question": "What is the total bronze from Puerto Rico with a total of less than 1?", "context": "CREATE TABLE table_name_27 (bronze INTEGER, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT season FROM table_name_53 WHERE club = \"celtic\"", "question": "Which season has the Celtic club?", "context": "CREATE TABLE table_name_53 (season VARCHAR, club VARCHAR)"}, {"answer": "SELECT party FROM table_name_3 WHERE minister = \"parker moloney\" AND title = \"minister for markets\"", "question": "What was Parker Moloney's party affiliation when he was the Minister for Markets?", "context": "CREATE TABLE table_name_3 (party VARCHAR, minister VARCHAR, title VARCHAR)"}, {"answer": "SELECT term_start FROM table_name_47 WHERE title = \"minister for agriculture, fisheries and forestry\" AND order = \"25\"", "question": "What was the starting date for the Minister for agriculture, fisheries and forestry that is in order number 25??", "context": "CREATE TABLE table_name_47 (term_start VARCHAR, title VARCHAR, order VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE venue = \"seoul\" AND result = \"8-0\"", "question": "What was the score in the venue of Seoul that resulted in 8-0?", "context": "CREATE TABLE table_name_32 (score VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE result = \"8-0\"", "question": "What date had a result of 8-0?", "context": "CREATE TABLE table_name_40 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_89 WHERE venue = \"kuala lumpur\" AND result = \"4-0\" AND date = \"july 26, 1977\"", "question": "On July 26, 1977, what competition played at the venue of Kuala Lumpur, resulted in 4-0?", "context": "CREATE TABLE table_name_89 (competition VARCHAR, date VARCHAR, venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_44 WHERE competition = \"1986 asian games\" AND result = \"2-0\"", "question": "What venue were the 1986 Asian games resulting in 2-0 played at?", "context": "CREATE TABLE table_name_44 (venue VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(league_goals) FROM table_name_45 WHERE player = \"john o'flynn\"", "question": "How many total League goals does Player John O'Flynn have?", "context": "CREATE TABLE table_name_45 (league_goals INTEGER, player VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_73 WHERE chassis = \"lotus 49b\"", "question": "What is the earliest year that had a Lotus 49B chassis?", "context": "CREATE TABLE table_name_73 (year INTEGER, chassis VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_18 WHERE name = \"lenny krayzelburg\"", "question": "Name the least lane for lenny krayzelburg", "context": "CREATE TABLE table_name_18 (lane INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_67 WHERE round = 9", "question": "Round of 9 involved what name?", "context": "CREATE TABLE table_name_67 (name VARCHAR, round VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_3 WHERE name = \"calvin o'neal\" AND round < 6", "question": "Name of calvin o'neal, and a Round smaller than 6 had what number total overall?", "context": "CREATE TABLE table_name_3 (overall VARCHAR, name VARCHAR, round VARCHAR)"}, {"answer": "SELECT work FROM table_name_47 WHERE year < 2007 AND award = \"blockbuster entertainment awards\"", "question": "Name the work for years before 2007 that won blockbuster entertainment awards", "context": "CREATE TABLE table_name_47 (work VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT cole FROM table_name_94 WHERE year < 2009 AND dylan = \"nominated\" AND work = \"big daddy\" AND award = \"mtv movie awards\"", "question": "Name the Cole for years before 2009 where Dylan was nominated for big daddy at mtv movie awards", "context": "CREATE TABLE table_name_94 (cole VARCHAR, award VARCHAR, work VARCHAR, year VARCHAR, dylan VARCHAR)"}, {"answer": "SELECT college FROM table_name_57 WHERE position = \"running back\"", "question": "Position of running back involves which college?", "context": "CREATE TABLE table_name_57 (college VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_name_6 WHERE round > 2 AND position = \"guard\"", "question": "Round larger than 2, and a Position of guard involves what college?", "context": "CREATE TABLE table_name_6 (college VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT college FROM table_name_72 WHERE pick__number < 46 AND round = 5 AND position = \"defensive tackle\"", "question": "Pick # smaller than 46, and a Round of 5, and a Position of defensive tackle involves which college?", "context": "CREATE TABLE table_name_72 (college VARCHAR, position VARCHAR, pick__number VARCHAR, round VARCHAR)"}, {"answer": "SELECT percentage___percentage_ FROM table_name_73 WHERE language = \"russian\"", "question": "What is the percentage who speak Russian?", "context": "CREATE TABLE table_name_73 (percentage___percentage_ VARCHAR, language VARCHAR)"}, {"answer": "SELECT number FROM table_name_50 WHERE language = \"german\"", "question": "How many speak german?", "context": "CREATE TABLE table_name_50 (number VARCHAR, language VARCHAR)"}, {"answer": "SELECT percentage___percentage_ FROM table_name_35 WHERE males = \"99\"", "question": "What is the percentage where males equal 99?", "context": "CREATE TABLE table_name_35 (percentage___percentage_ VARCHAR, males VARCHAR)"}, {"answer": "SELECT females FROM table_name_67 WHERE language = \"german\"", "question": "How many women speak German?", "context": "CREATE TABLE table_name_67 (females VARCHAR, language VARCHAR)"}, {"answer": "SELECT MIN(league_cup) FROM table_name_65 WHERE fa_cup < 0", "question": "What is the lowest number of league cups associated with 0 FA cups?", "context": "CREATE TABLE table_name_65 (league_cup INTEGER, fa_cup INTEGER)"}, {"answer": "SELECT SUM(fa_cup) FROM table_name_13 WHERE championship < 5 AND league_cup = 0 AND total > 3", "question": "How many FA cups for the player with under 5 champs, 0 league cups, and over 3 total?", "context": "CREATE TABLE table_name_13 (fa_cup INTEGER, total VARCHAR, championship VARCHAR, league_cup VARCHAR)"}, {"answer": "SELECT SUM(league_cup) FROM table_name_36 WHERE championship < 10 AND total < 3", "question": "How many league cups associated with under 10 championships and a total of under 3?", "context": "CREATE TABLE table_name_36 (league_cup INTEGER, championship VARCHAR, total VARCHAR)"}, {"answer": "SELECT group_position FROM table_name_80 WHERE result_f_a = \"2\u20130\"", "question": "Result F\u2013A of 2\u20130 had what group position?", "context": "CREATE TABLE table_name_80 (group_position VARCHAR, result_f_a VARCHAR)"}, {"answer": "SELECT group_position FROM table_name_93 WHERE result_f_a = \"5\u20130\"", "question": "Result F\u2013A of 5\u20130 had what group position?", "context": "CREATE TABLE table_name_93 (group_position VARCHAR, result_f_a VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_69 WHERE group_position = \"1st\" AND result_f_a = \"2\u20130\"", "question": "Group position of 1st, and a Result F\u2013A of 2\u20130 has what average attendance?", "context": "CREATE TABLE table_name_69 (attendance INTEGER, group_position VARCHAR, result_f_a VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE result_f_a = \"5\u20130\"", "question": "Result F\u2013A of 5\u20130 had what date?", "context": "CREATE TABLE table_name_72 (date VARCHAR, result_f_a VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_18 WHERE date = \"1 october 2003\"", "question": "Date of 1 october 2003 had what attendance?", "context": "CREATE TABLE table_name_18 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE partner = \"tathiana garbin\"", "question": "what score is it with tathiana garbin as partner?", "context": "CREATE TABLE table_name_84 (score VARCHAR, partner VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE partner = \"giulia casoni\"", "question": "what date was giulia casoni the partner?", "context": "CREATE TABLE table_name_48 (date VARCHAR, partner VARCHAR)"}, {"answer": "SELECT city FROM table_name_29 WHERE country = \"spain\" AND iata = \"ibz\"", "question": "for country of spain and iata of ibz, what's the city?", "context": "CREATE TABLE table_name_29 (city VARCHAR, country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT icao FROM table_name_76 WHERE airport = \"fiumicino airport\"", "question": "for fiumicino airport what is the icao?", "context": "CREATE TABLE table_name_76 (icao VARCHAR, airport VARCHAR)"}, {"answer": "SELECT airport FROM table_name_95 WHERE city = \"milan\" AND iata = \"lin\"", "question": "for milan and the iata of lin what is the airport?", "context": "CREATE TABLE table_name_95 (airport VARCHAR, city VARCHAR, iata VARCHAR)"}, {"answer": "SELECT iata FROM table_name_39 WHERE icao = \"eheh\"", "question": "what's the iata for the icao of eheh?", "context": "CREATE TABLE table_name_39 (iata VARCHAR, icao VARCHAR)"}, {"answer": "SELECT airport FROM table_name_58 WHERE country = \"united kingdom\" AND iata = \"lcy\"", "question": "which aiport is in the united kingdom and has iata of lcy?", "context": "CREATE TABLE table_name_58 (airport VARCHAR, country VARCHAR, iata VARCHAR)"}, {"answer": "SELECT F.goals FROM table_name_31 WHERE games = \"22 22\" AND points = \"012 12\"", "question": "Name the F. Goals for games of 22 22 and points of 012 12", "context": "CREATE TABLE table_name_31 (games VARCHAR, points VARCHAR)"}, {"answer": "SELECT points FROM table_name_43 WHERE games = \"16 16\"", "question": "Name the points for games of 16 16", "context": "CREATE TABLE table_name_43 (points VARCHAR, games VARCHAR)"}, {"answer": "SELECT tries FROM table_name_98 WHERE points = \"008 8\" AND games = \"27 27\"", "question": "Name the tries that has a points of 008 8 and games of 27 27", "context": "CREATE TABLE table_name_98 (tries VARCHAR, points VARCHAR, games VARCHAR)"}, {"answer": "SELECT F.goals FROM table_name_18 WHERE tries = \"0 0\" AND games = \"05 5\"", "question": "Name the F. Goals with tries of 0 0 and games of 05 5", "context": "CREATE TABLE table_name_18 (tries VARCHAR, games VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE tries = \"02 2\" AND points = \"008 8\"", "question": "Name the player with tries of 02 2 and points of 008 8", "context": "CREATE TABLE table_name_83 (player VARCHAR, tries VARCHAR, points VARCHAR)"}, {"answer": "SELECT area FROM table_name_73 WHERE name = \"william colenso college\"", "question": "Which area has a Name of william colenso college?", "context": "CREATE TABLE table_name_73 (area VARCHAR, name VARCHAR)"}, {"answer": "SELECT authority FROM table_name_41 WHERE name = \"tamatea high school\"", "question": "Which authority has a Name of tamatea high school?", "context": "CREATE TABLE table_name_41 (authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT gender FROM table_name_90 WHERE decile = 8 AND area = \"taradale\" AND years = \"1\u201313\"", "question": "Which gender has a Decile of 8, an Area of taradale, and Years of 1\u201313?", "context": "CREATE TABLE table_name_90 (gender VARCHAR, years VARCHAR, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT decile FROM table_name_69 WHERE years = \"\u2013\" AND gender = \"coed\"", "question": "Which Decile has Years of \u2013, and a Gender of coed?", "context": "CREATE TABLE table_name_69 (decile VARCHAR, years VARCHAR, gender VARCHAR)"}, {"answer": "SELECT COUNT(division) FROM table_name_83 WHERE apps > 5 AND country = \"greece\"", "question": "Name the total number of division for apps more than 5 for greece", "context": "CREATE TABLE table_name_83 (division VARCHAR, apps VARCHAR, country VARCHAR)"}, {"answer": "SELECT AVG(apps) FROM table_name_73 WHERE team = \"smederevo\"", "question": "Name the average apps for smederevo", "context": "CREATE TABLE table_name_73 (apps INTEGER, team VARCHAR)"}, {"answer": "SELECT engine FROM table_name_64 WHERE chassis = \"lotus 16\"", "question": "What model engine has a lotus 16 chassis?", "context": "CREATE TABLE table_name_64 (engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_80 WHERE entrant = \"fred tuck cars\" AND year > 1960", "question": "How many points after 1960 for fred tuck cars?", "context": "CREATE TABLE table_name_80 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT dist__miles_ FROM table_name_94 WHERE race_name = \"unnamed race\" AND runners = \"3\" AND course = \"newcastle\"", "question": "What is the distance for the unnamed race with 3 runners at Newcastle?", "context": "CREATE TABLE table_name_94 (dist__miles_ VARCHAR, course VARCHAR, race_name VARCHAR, runners VARCHAR)"}, {"answer": "SELECT score FROM table_name_51 WHERE record = \"18-25\"", "question": "Name the score when the record was 18-25", "context": "CREATE TABLE table_name_51 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_10 WHERE opponent = \"angels\"", "question": "Name the loss for the angels opponent", "context": "CREATE TABLE table_name_10 (loss VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_32 WHERE record = \"16-22\"", "question": "Name the total number of people that went when the record was 16-22", "context": "CREATE TABLE table_name_32 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_20 WHERE opponent = \"mariners\" AND date = \"may 10\"", "question": "Name the score for the mariners opponent on may 10", "context": "CREATE TABLE table_name_20 (score VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_25 WHERE partner = \"j\u00fcrgen melzer\" AND date = \"january 7, 2012\"", "question": "What was the Outcome for the Partner of J\u00fcrgen Melzer and the Date of January 7, 2012?", "context": "CREATE TABLE table_name_25 (outcome VARCHAR, partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_79 WHERE partner = \"j\u00fcrgen melzer\" AND date = \"july 16, 2011\"", "question": "What was the Surface for the Partner of J\u00fcrgen Melzer, and a Date of July 16, 2011?", "context": "CREATE TABLE table_name_79 (surface VARCHAR, partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_76 WHERE date = \"july 16, 2011\"", "question": "What's the Outcome for the Date of July 16, 2011?", "context": "CREATE TABLE table_name_76 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_94 WHERE partner = \"j\u00fcrgen melzer\" AND date = \"february 7, 2010\"", "question": "What's the Outcome for the Partner of J\u00fcrgen Melzer on the Date of February 7, 2010?", "context": "CREATE TABLE table_name_94 (outcome VARCHAR, partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT nation FROM table_name_77 WHERE rank > 9", "question": "Name the nation with rank more than 9", "context": "CREATE TABLE table_name_77 (nation VARCHAR, rank INTEGER)"}, {"answer": "SELECT MIN(bronze) FROM table_name_45 WHERE silver < 0", "question": "Name the least bronze for silver being less than 0", "context": "CREATE TABLE table_name_45 (bronze INTEGER, silver INTEGER)"}, {"answer": "SELECT SUM(rank) FROM table_name_90 WHERE bronze < 1 AND gold = 1 AND total < 1", "question": "Name the sum of rank for bronze less than 1 and gold of 1 with total less than 1", "context": "CREATE TABLE table_name_90 (rank INTEGER, total VARCHAR, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_55 WHERE silver < 0", "question": "Name the sum of rank for silver less than 0", "context": "CREATE TABLE table_name_55 (rank INTEGER, silver INTEGER)"}, {"answer": "SELECT MIN(rank) FROM table_name_5 WHERE silver < 1 AND total > 1 AND bronze < 1", "question": "Name the least rank when silver is less than 1 and bronze is less than 1 with total more than 1", "context": "CREATE TABLE table_name_5 (rank INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT date FROM table_name_90 WHERE series = \"1-4\"", "question": "What was the date of the game in which the series was 1-4?", "context": "CREATE TABLE table_name_90 (date VARCHAR, series VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE home = \"montreal canadiens\" AND date = \"april 11\"", "question": "What is the Score that has a Home of montreal canadiens on april 11?", "context": "CREATE TABLE table_name_6 (score VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_32 WHERE date = \"april 13\"", "question": "What is the Record on april 13?", "context": "CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_57 WHERE home = \"chicago black hawks\" AND record = \"0\u20131\"", "question": "When is Home of chicago black hawks has a Record of 0\u20131?", "context": "CREATE TABLE table_name_57 (date VARCHAR, home VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE visitor = \"chicago black hawks\" AND record = \"2\u20132\"", "question": "What is the Date that chicago black hawks has a Record of 2\u20132?", "context": "CREATE TABLE table_name_5 (date VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_38 WHERE score = \"0\u20132\"", "question": "Which Record has a Score of 0\u20132?", "context": "CREATE TABLE table_name_38 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_8 WHERE date = \"april 5\"", "question": "Who is the visitor on April 5?", "context": "CREATE TABLE table_name_8 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT team FROM table_name_14 WHERE year = \"2011\"", "question": "What is the Team, when the Year is 2011?", "context": "CREATE TABLE table_name_14 (team VARCHAR, year VARCHAR)"}, {"answer": "SELECT int_yds FROM table_name_68 WHERE team = \"new orleans saints\" AND sacks > 0 AND solo = 71", "question": "What is the value for INT YDS, when the Team is New Orleans Saints, and when the value for Sacks is greater than 0, and when the vale for Solo is 71?", "context": "CREATE TABLE table_name_68 (int_yds VARCHAR, solo VARCHAR, team VARCHAR, sacks VARCHAR)"}, {"answer": "SELECT MIN(sacks) FROM table_name_22 WHERE team = \"new orleans saints\" AND tackles = \"132\"", "question": "What is the value for lowest Sacks, when the Team is New Orleans Saints, and when the value for Tackles is 132?", "context": "CREATE TABLE table_name_22 (sacks INTEGER, team VARCHAR, tackles VARCHAR)"}, {"answer": "SELECT tackles FROM table_name_75 WHERE solo > 67 AND sacks < 2 AND int_yds > 1", "question": "What is the value for Tackles, when the value for Solo is greater than 67, when the value for Sacks is less than 2, and when the value for INT YDS is greater than 1?", "context": "CREATE TABLE table_name_75 (tackles VARCHAR, int_yds VARCHAR, solo VARCHAR, sacks VARCHAR)"}, {"answer": "SELECT COUNT(solo) FROM table_name_45 WHERE sacks = 2 AND team = \"new york jets\"", "question": "What is the total value for Solo, when the value of Sacks is 2, and when the Team is New York Jets?", "context": "CREATE TABLE table_name_45 (solo VARCHAR, sacks VARCHAR, team VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_39 WHERE score = \"6\u20134, 6\u20131\"", "question": "What is the outcome of the match with a score of 6\u20134, 6\u20131?", "context": "CREATE TABLE table_name_39 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE surface = \"clay\" AND opponent = \"andrea hlav\u00e1\u010dkov\u00e1\"", "question": "What date was the match on a clay surface against Andrea Hlav\u00e1\u010dkov\u00e1?", "context": "CREATE TABLE table_name_55 (date VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_54 WHERE tournament = \"herceg novi\"", "question": "What is the name of the opponent at the Herceg Novi tournament?", "context": "CREATE TABLE table_name_54 (opponent VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT loss FROM table_name_81 WHERE record = \"50-32\"", "question": "What was the loss of the game when the record was 50-32?", "context": "CREATE TABLE table_name_81 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_6 WHERE result = \"l 14\u20136\"", "question": "Who was the opponent with a result of l 14\u20136?", "context": "CREATE TABLE table_name_6 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_40 WHERE date = \"november 17, 1961\"", "question": "What is the sum of all attendance on November 17, 1961?", "context": "CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_18 WHERE week = 5", "question": "What is the smallest attendance in week 5?", "context": "CREATE TABLE table_name_18 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT 3 AS _rd FROM table_name_19 WHERE season < 4 AND lost = 61", "question": "Name the 3rd for season less than 4 and lost of 61", "context": "CREATE TABLE table_name_19 (season VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_27 WHERE first_game < 2000 AND lost < 21 AND drawn < 0", "question": "What is the sum of matches played that has a year of first match before 2000, fewer than 21 lost, and 0 drawn?", "context": "CREATE TABLE table_name_27 (played INTEGER, drawn VARCHAR, first_game VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MIN(played) FROM table_name_14 WHERE drawn > 0 AND percentage = \"12.50%\" AND lost < 3", "question": "What is the lowest number of matches played that has more than 0 draws, a percentage of 12.50%, and fewer than 3 losses?", "context": "CREATE TABLE table_name_14 (played INTEGER, lost VARCHAR, drawn VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT SUM(value) FROM table_name_2 WHERE word_form = \"\u179f\u17b6\u1798\u179f\u17b7\u1794\"", "question": "What's the total value of \u179f\u17b6\u1798\u179f\u17b7\u1794?", "context": "CREATE TABLE table_name_2 (value INTEGER, word_form VARCHAR)"}, {"answer": "SELECT word_form FROM table_name_30 WHERE other = \"sam sep\"", "question": "What can you say is the word from of sam sep?", "context": "CREATE TABLE table_name_30 (word_form VARCHAR, other VARCHAR)"}, {"answer": "SELECT MIN(khmer) FROM table_name_9 WHERE ala_lc = \"kau sip\" AND value < 90", "question": "What is smallest Khmer valued less than 90 have a kau sip ALA-LC?", "context": "CREATE TABLE table_name_9 (khmer INTEGER, ala_lc VARCHAR, value VARCHAR)"}, {"answer": "SELECT SUM(value) FROM table_name_73 WHERE ungegn = \"kau s\u0115b\"", "question": "How much is the total value of kau s\u0115b UNGEGN ?", "context": "CREATE TABLE table_name_73 (value INTEGER, ungegn VARCHAR)"}, {"answer": "SELECT MIN(losses) FROM table_name_79 WHERE club = \"c\u00e1diz cf\"", "question": "What is the lowest number of losses for the club c\u00e1diz cf?", "context": "CREATE TABLE table_name_79 (losses INTEGER, club VARCHAR)"}, {"answer": "SELECT artist FROM table_name_41 WHERE single___pack = \"guitar hero track pack 1\"", "question": "What is the name of the artist with a Single / Pack of guitar hero track pack 1?", "context": "CREATE TABLE table_name_41 (artist VARCHAR, single___pack VARCHAR)"}, {"answer": "SELECT record FROM table_name_34 WHERE loss = \"lemanczyk (0\u20131)\"", "question": "What was the record at the game that had a loss of Lemanczyk (0\u20131)?", "context": "CREATE TABLE table_name_34 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT time FROM table_name_29 WHERE game > 1 AND location = \"comiskey park (i)\" AND date = \"october 9\"", "question": "Game larger than 1, and a Location of comiskey park (i), and a Date of October 9 happened at what time?", "context": "CREATE TABLE table_name_29 (time VARCHAR, date VARCHAR, game VARCHAR, location VARCHAR)"}, {"answer": "SELECT time FROM table_name_1 WHERE date = \"october 8\"", "question": "Date of october 8 happened at what time?", "context": "CREATE TABLE table_name_1 (time VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_4 WHERE game = 1", "question": "Game 1's sum of attendance is?", "context": "CREATE TABLE table_name_4 (attendance INTEGER, game VARCHAR)"}, {"answer": "SELECT finish FROM table_name_54 WHERE year_s__won = \"2000\"", "question": "What was the finish of the winner of the 2000 Masters?", "context": "CREATE TABLE table_name_54 (finish VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT finish FROM table_name_83 WHERE country = \"fiji\"", "question": "For the player from Fiji, what was his finish?", "context": "CREATE TABLE table_name_83 (finish VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_91 WHERE to_par = \"+8\"", "question": "For the player finishing at +8, what is his nationality?", "context": "CREATE TABLE table_name_91 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT score FROM table_name_14 WHERE record = \"52\u2013103\"", "question": "What was the score of the game that had a record of 52\u2013103?", "context": "CREATE TABLE table_name_14 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE record = \"53\u2013104\"", "question": "What was the date of the game when the record was 53\u2013104?", "context": "CREATE TABLE table_name_89 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_49 WHERE loss = \"huffman (6\u201318)\"", "question": "What was the record at the game that had a loss of Huffman (6\u201318)?", "context": "CREATE TABLE table_name_49 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT format FROM table_name_72 WHERE date = \"august 29, 1998\"", "question": "Which format is released on August 29, 1998?", "context": "CREATE TABLE table_name_72 (format VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_5 WHERE date = \"january 25, 1987\"", "question": "What is the catalog number for the January 25, 1987 release?", "context": "CREATE TABLE table_name_5 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT format FROM table_name_31 WHERE date = \"may 27, 2009\"", "question": "Which format is released on May 27, 2009?", "context": "CREATE TABLE table_name_31 (format VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_89 WHERE date = \"may 27, 2009\"", "question": "What is the catalog number of the May 27, 2009 release?", "context": "CREATE TABLE table_name_89 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_87 WHERE format = \"cd\" AND catalog = \"alca-9206\"", "question": "What is the release date of a CD with the catalog number ALCA-9206?", "context": "CREATE TABLE table_name_87 (date VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_77 WHERE date = \"may 27, 2009\"", "question": "Which format is released on May 27, 2009?", "context": "CREATE TABLE table_name_77 (format VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(total_points) FROM table_name_24 WHERE games = 113 AND rank < 7", "question": "What was the average of points with ranks smaller than 7 but with total point games of 113?", "context": "CREATE TABLE table_name_24 (total_points INTEGER, games VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(roll) FROM table_name_11 WHERE area = \"waikaka\"", "question": "What is the sum of the roll with an area of Waikaka?", "context": "CREATE TABLE table_name_11 (roll INTEGER, area VARCHAR)"}, {"answer": "SELECT COUNT(roll) FROM table_name_21 WHERE name = \"east gore school\"", "question": "What is the roll number for East Gore School?", "context": "CREATE TABLE table_name_21 (roll VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(decile) FROM table_name_2 WHERE years = \"1-6\" AND area = \"maitland\"", "question": "What is the lowest decile with 1-6 years and area of Maitland?", "context": "CREATE TABLE table_name_2 (decile INTEGER, years VARCHAR, area VARCHAR)"}, {"answer": "SELECT gender FROM table_name_74 WHERE years = \"7-15\"", "question": "Which gender has 7-15 years?", "context": "CREATE TABLE table_name_74 (gender VARCHAR, years VARCHAR)"}, {"answer": "SELECT gender FROM table_name_23 WHERE area = \"otama\"", "question": "What is the gender for Otama?", "context": "CREATE TABLE table_name_23 (gender VARCHAR, area VARCHAR)"}, {"answer": "SELECT authority FROM table_name_46 WHERE roll = 96", "question": "What is the authority for roll of 96?", "context": "CREATE TABLE table_name_46 (authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT years FROM table_name_86 WHERE roll = 9", "question": "When is a Roll of 9?", "context": "CREATE TABLE table_name_86 (years VARCHAR, roll VARCHAR)"}, {"answer": "SELECT area FROM table_name_63 WHERE roll = 26", "question": "What is the Area with 26 in Roll", "context": "CREATE TABLE table_name_63 (area VARCHAR, roll VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_6 WHERE silver > 6 AND gold > 10", "question": "For nations with more than 6 silvers and more than 10 golds, what is the lowest total?", "context": "CREATE TABLE table_name_6 (total INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_21 WHERE bronze > 3 AND total > 36", "question": "What is the lowest rank for nations with more than 3 bronze medals and more than 36 total medals?", "context": "CREATE TABLE table_name_21 (rank INTEGER, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_80 WHERE silver > 1 AND gold = 1 AND total < 4", "question": "Which country has the most bronze and has more than one silver, 1 gold, and less than 4 total medals.", "context": "CREATE TABLE table_name_80 (bronze INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_75 WHERE total > 11", "question": "What nation has the most bronze medals with over 11 total medals?", "context": "CREATE TABLE table_name_75 (bronze INTEGER, total INTEGER)"}, {"answer": "SELECT SUM(silver) FROM table_name_15 WHERE nation = \"cuba\"", "question": "How many silver medals does Cuba have?", "context": "CREATE TABLE table_name_15 (silver INTEGER, nation VARCHAR)"}, {"answer": "SELECT location FROM table_name_23 WHERE loser = \"indianapolis colts\" AND result = \"24-14\"", "question": "Where was the game that the Indianapolis Colts lost 24-14?", "context": "CREATE TABLE table_name_23 (location VARCHAR, loser VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE loser = \"indianapolis colts\" AND year = 2004", "question": "On what date was the game that the Indianapolis Colts lost in 2004?", "context": "CREATE TABLE table_name_98 (date VARCHAR, loser VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner FROM table_name_14 WHERE loser = \"new england patriots\" AND result = \"40-21\"", "question": "Which team won against the New England Patriots 40-21?", "context": "CREATE TABLE table_name_14 (winner VARCHAR, loser VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_97 WHERE location = \"gillette stadium\" AND result = \"40-21\"", "question": "What was the date of the game played at Gillette Stadium with a score of 40-21?", "context": "CREATE TABLE table_name_97 (date VARCHAR, location VARCHAR, result VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_22 WHERE result = \"24-14\"", "question": "What year was the game that ended with a score of 24-14?", "context": "CREATE TABLE table_name_22 (year INTEGER, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE result = \"3-0 win\"", "question": "What was the score of the 3-0 Win result?", "context": "CREATE TABLE table_name_91 (score VARCHAR, result VARCHAR)"}, {"answer": "SELECT result FROM table_name_47 WHERE date = \"10 october 2009\"", "question": "What was the result of the game from 10 October 2009?", "context": "CREATE TABLE table_name_47 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_91 WHERE score = \"2-0\"", "question": "What is the name of the competition that has a score of 2-0?", "context": "CREATE TABLE table_name_91 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_37 WHERE home = \"dallas\"", "question": "Name the visitor for home of dallas", "context": "CREATE TABLE table_name_37 (visitor VARCHAR, home VARCHAR)"}, {"answer": "SELECT period FROM table_name_90 WHERE country = \"south korea\" AND peak_position = \"#1\"", "question": "Name the period for south korea with peak position of #1", "context": "CREATE TABLE table_name_90 (period VARCHAR, country VARCHAR, peak_position VARCHAR)"}, {"answer": "SELECT period FROM table_name_74 WHERE country = \"south korea\" AND peak_position = \"#24\"", "question": "Name the period for south korea with peak position of #24", "context": "CREATE TABLE table_name_74 (period VARCHAR, country VARCHAR, peak_position VARCHAR)"}, {"answer": "SELECT period FROM table_name_29 WHERE chart = \"g-music j-pop/k-pop chart\"", "question": "Name the period for Chart of g-music j-pop/k-pop chart", "context": "CREATE TABLE table_name_29 (period VARCHAR, chart VARCHAR)"}, {"answer": "SELECT sales FROM table_name_7 WHERE peak_position = \"#24\"", "question": "Name the sales with peak position of #24", "context": "CREATE TABLE table_name_7 (sales VARCHAR, peak_position VARCHAR)"}, {"answer": "SELECT aggregate FROM table_name_49 WHERE club = \"ajax\"", "question": "Which aggregate has ajax as the club?", "context": "CREATE TABLE table_name_49 (aggregate VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_19 WHERE date = \"march 1\"", "question": "How many attended on march 1?", "context": "CREATE TABLE table_name_19 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_96 WHERE date = \"march 21\"", "question": "Who was the visitor on march 21?", "context": "CREATE TABLE table_name_96 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT cyclist FROM table_name_85 WHERE nation = \"belgium\"", "question": "Who was the cyclist from Belgium?", "context": "CREATE TABLE table_name_85 (cyclist VARCHAR, nation VARCHAR)"}, {"answer": "SELECT nation FROM table_name_79 WHERE team = \"csc\"", "question": "What is the nation of the person who was from the CSC team?", "context": "CREATE TABLE table_name_79 (nation VARCHAR, team VARCHAR)"}, {"answer": "SELECT cyclist FROM table_name_70 WHERE team = \"gce\" AND uci_points < 20", "question": "Who is the cyclist from the GCE team and had UCI points under 20?", "context": "CREATE TABLE table_name_70 (cyclist VARCHAR, team VARCHAR, uci_points VARCHAR)"}, {"answer": "SELECT nation FROM table_name_7 WHERE cyclist = \"danilo di luca\"", "question": "Which nation is Danilo di Luca from?", "context": "CREATE TABLE table_name_7 (nation VARCHAR, cyclist VARCHAR)"}, {"answer": "SELECT nation FROM table_name_96 WHERE cyclist = \"robert gesink\"", "question": "Which nation is Robert Gesink from?", "context": "CREATE TABLE table_name_96 (nation VARCHAR, cyclist VARCHAR)"}, {"answer": "SELECT SUM(uci_points) FROM table_name_42 WHERE cyclist = \"kim kirchen\"", "question": "What is the sum of UCI points for Kim Kirchen?", "context": "CREATE TABLE table_name_42 (uci_points INTEGER, cyclist VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_91 WHERE ast_avg > 2.7 AND total_assists > 598", "question": "How many games for the player that has an over 2.7 assist average and over 598 total assists?", "context": "CREATE TABLE table_name_91 (games VARCHAR, ast_avg VARCHAR, total_assists VARCHAR)"}, {"answer": "SELECT MAX(ast_avg) FROM table_name_28 WHERE player = \"cam long\" AND games < 132", "question": "How many assists does cam long average in under 132 games?", "context": "CREATE TABLE table_name_28 (ast_avg INTEGER, player VARCHAR, games VARCHAR)"}, {"answer": "SELECT location FROM table_name_91 WHERE stadium = \"gortakeegan\"", "question": "Where is the Stadium of Gortakeegan located?", "context": "CREATE TABLE table_name_91 (location VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT points FROM table_name_74 WHERE year > 1972 AND chassis = \"march 721g\"", "question": "In 1972, how many points did the entrant with the March 721G Chassis have?", "context": "CREATE TABLE table_name_74 (points VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_56 WHERE entrant = \"stp march\" AND year > 1971", "question": "In 1971, how many total points did the entrant stp march have?", "context": "CREATE TABLE table_name_56 (points VARCHAR, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_88 WHERE year = 1971", "question": "Which Chassis was featured in the year 1971?", "context": "CREATE TABLE table_name_88 (chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_57 WHERE entrant = \"clarke-mordaunt-guthrie-durlacher\"", "question": "Which Chassis did the Entrant clarke-mordaunt-guthrie-durlacher carry?", "context": "CREATE TABLE table_name_57 (chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT AVG(total_g) FROM table_name_98 WHERE l_apps = 29 AND player = \"bartolo\" AND c_apps > 5", "question": "What is Bartolo's Total G when his L Apps is 29 and his C Apps are larger than 5?", "context": "CREATE TABLE table_name_98 (total_g INTEGER, c_apps VARCHAR, l_apps VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_58 WHERE college = \"southern\"", "question": "What is the lowest round for Southern College?", "context": "CREATE TABLE table_name_58 (round INTEGER, college VARCHAR)"}, {"answer": "SELECT name FROM table_name_64 WHERE round > 10 AND position = \"placekicker\"", "question": "Who had the placekicker position with a round above 10?", "context": "CREATE TABLE table_name_64 (name VARCHAR, round VARCHAR, position VARCHAR)"}, {"answer": "SELECT partner FROM table_name_45 WHERE surface = \"clay\" AND opponents = \"guillermo garc\u00eda-l\u00f3pez albert portas\"", "question": "What was the partner of the team that faced the guillermo garc\u00eda-l\u00f3pez albert portas on clay?", "context": "CREATE TABLE table_name_45 (partner VARCHAR, surface VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT date FROM table_name_9 WHERE opponents = \"guillermo garc\u00eda-l\u00f3pez albert portas\"", "question": "What are the dates where the opponent was guillermo garc\u00eda-l\u00f3pez albert portas?", "context": "CREATE TABLE table_name_9 (date VARCHAR, opponents VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_74 WHERE class = \"125cc\" AND points > 102 AND rank = \"2nd\"", "question": "What is the earliest year in the 125cc class with more than 102 points and a rank of 2nd?", "context": "CREATE TABLE table_name_74 (year INTEGER, rank VARCHAR, class VARCHAR, points VARCHAR)"}, {"answer": "SELECT team FROM table_name_72 WHERE points < 167 AND class = \"250cc\"", "question": "Which team had fewer than 167 points in the 250cc class?", "context": "CREATE TABLE table_name_72 (team VARCHAR, points VARCHAR, class VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_65 WHERE class = \"125cc\" AND rank = \"3rd\" AND year < 1996", "question": "For years before 1996, having a rank of 3rd in the 125cc class, what is the sum of the points?", "context": "CREATE TABLE table_name_65 (points INTEGER, year VARCHAR, class VARCHAR, rank VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_25 WHERE week = 12", "question": "Who did the Raiders play in week 12?", "context": "CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_21 WHERE game_site = \"the kingdome\"", "question": "How many people were at the game that took place at the Kingdome?", "context": "CREATE TABLE table_name_21 (attendance VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT lms_spr FROM table_name_60 WHERE car_no = \"15\"", "question": "Which is the LMS SPR when the car number was 15?", "context": "CREATE TABLE table_name_60 (lms_spr VARCHAR, car_no VARCHAR)"}, {"answer": "SELECT points FROM table_name_88 WHERE cat_fea = \"3\"", "question": "When the CAT FEA is 3 how many points were scored?", "context": "CREATE TABLE table_name_88 (points VARCHAR, cat_fea VARCHAR)"}, {"answer": "SELECT spa_fea FROM table_name_60 WHERE lms_fea = \"5\"", "question": "What was the SPA FEA when the LMS FEA was 5?", "context": "CREATE TABLE table_name_60 (spa_fea VARCHAR, lms_fea VARCHAR)"}, {"answer": "SELECT mnz_fea FROM table_name_73 WHERE sil_spr = \"18\"", "question": "What was the MNZ FEA when the SIL SPR was 18?", "context": "CREATE TABLE table_name_73 (mnz_fea VARCHAR, sil_spr VARCHAR)"}, {"answer": "SELECT championships__years_ FROM table_name_71 WHERE club = \"tampa bay storm\"", "question": "Which years did the Tampa Bay Storm win the Championships?", "context": "CREATE TABLE table_name_71 (championships__years_ VARCHAR, club VARCHAR)"}, {"answer": "SELECT height FROM table_name_57 WHERE year_born < 1975", "question": "What is the height of the person born before 1975?", "context": "CREATE TABLE table_name_57 (height VARCHAR, year_born INTEGER)"}, {"answer": "SELECT COUNT(term_expires) FROM table_name_52 WHERE province = \"north western\" AND name = \"ken wright\"", "question": "How many times did Ken Wright expired in North Western?", "context": "CREATE TABLE table_name_52 (term_expires VARCHAR, province VARCHAR, name VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_33 WHERE tournament = \"grand slam tournaments\"", "question": "Name the 2010 with tournament of grand slam tournaments", "context": "CREATE TABLE table_name_33 (tournament VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_58 WHERE 2010 = \"2r\" AND tournament = \"wimbledon\"", "question": "Name the 2008 with 2010 of 2r and wimbledon tournament", "context": "CREATE TABLE table_name_58 (tournament VARCHAR)"}, {"answer": "SELECT 2013 FROM table_name_22 WHERE 2010 = \"1r\"", "question": "Name the 2013 for 2010 of 1r", "context": "CREATE TABLE table_name_22 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_33 WHERE 2008 = \"1r\" AND 2011 = \"1r\" AND tournament = \"us open\"", "question": "Name the 2010 for 2008 of 1r and tournament of us open", "context": "CREATE TABLE table_name_33 (tournament VARCHAR)"}, {"answer": "SELECT years FROM table_name_43 WHERE decile = 4 AND authority = \"state\" AND name = \"mapiu school\"", "question": "Which years have a Decile of 4, an Authority of state, and a Name of mapiu school?", "context": "CREATE TABLE table_name_43 (years VARCHAR, name VARCHAR, decile VARCHAR, authority VARCHAR)"}, {"answer": "SELECT years FROM table_name_41 WHERE decile < 6 AND area = \"te kuiti\" AND authority = \"state integrated\"", "question": "Which years have a Decile smaller than 6, an Area of te kuiti, and an Authority of state integrated?", "context": "CREATE TABLE table_name_41 (years VARCHAR, authority VARCHAR, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT AVG(decile) FROM table_name_16 WHERE authority = \"state\" AND name = \"mapiu school\"", "question": "What is the average Decile with a state authority and a Name of mapiu school?", "context": "CREATE TABLE table_name_16 (decile INTEGER, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT years FROM table_name_16 WHERE area = \"rangitoto\"", "question": "Which years have an Area of rangitoto?", "context": "CREATE TABLE table_name_16 (years VARCHAR, area VARCHAR)"}, {"answer": "SELECT gender FROM table_name_6 WHERE name = \"rangitoto school\"", "question": "Which gender has a Name of rangitoto school?", "context": "CREATE TABLE table_name_6 (gender VARCHAR, name VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_89 WHERE player = \"ralph guldahl\"", "question": "What is the t o par for Ralph Guldahl?", "context": "CREATE TABLE table_name_89 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_22 WHERE player = \"ky laffoon\"", "question": "What is the score for Ky Laffoon?", "context": "CREATE TABLE table_name_22 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE money___$__ > 100 AND player = \"ralph guldahl\"", "question": "What is the score of Ralph Guldahl, who has more than $100?", "context": "CREATE TABLE table_name_77 (score VARCHAR, money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(money___) AS $__ FROM table_name_99 WHERE country = \"scotland united states\"", "question": "What is the highest amount of money a play from Scotland United States has?", "context": "CREATE TABLE table_name_99 (money___ INTEGER, country VARCHAR)"}, {"answer": "SELECT COUNT(goals_for) FROM table_name_6 WHERE pct__percentage > 0.557 AND points < 90 AND games > 68", "question": "How many Goals have a Pct % larger than 0.557, a points value smaller than 90, and a games value larger than 68?", "context": "CREATE TABLE table_name_6 (goals_for VARCHAR, games VARCHAR, pct__percentage VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(record___percentage__)[draw_ = _05_wins] FROM table_name_91 WHERE wins > 3 AND matches = 10 AND draws > 1", "question": "What is the draw record (%) total for clubs with more than 3 wins with 10 matches and more than 1 draw?", "context": "CREATE TABLE table_name_91 (record___percentage__ VARCHAR, draw_ VARCHAR, _05_wins VARCHAR, draws VARCHAR, wins VARCHAR, matches VARCHAR)"}, {"answer": "SELECT MAX(draws) FROM table_name_59 WHERE matches > 6 AND club = \"newcastle knights\" AND record___percentage__[draw_ = _05_wins] > 25", "question": "How many draws, more than 6, does Newcastle Knights have with a record (%) larger than 25?", "context": "CREATE TABLE table_name_59 (draws INTEGER, matches VARCHAR, club VARCHAR, record___percentage__ VARCHAR, draw_ VARCHAR, _05_wins VARCHAR)"}, {"answer": "SELECT MAX(losses) FROM table_name_29 WHERE matches = 10 AND draws > 1", "question": "Which club has the most losses with 10 matches played and more than 1 draw?", "context": "CREATE TABLE table_name_29 (losses INTEGER, matches VARCHAR, draws VARCHAR)"}, {"answer": "SELECT number FROM table_name_37 WHERE bb_ + hbp = 39 AND year = \"1985\"", "question": "The year of 1985 which has a BB +HBP of 39 has what Number listed?", "context": "CREATE TABLE table_name_37 (number VARCHAR, year VARCHAR, bb_ VARCHAR, hbp VARCHAR)"}, {"answer": "SELECT year FROM table_name_99 WHERE bb_ + hbp = 51", "question": "The year that has a BB + HBP of 51 is listed as?", "context": "CREATE TABLE table_name_99 (year VARCHAR, bb_ VARCHAR, hbp VARCHAR)"}, {"answer": "SELECT ba__place_ FROM table_name_70 WHERE bb_ + hbp > 49 AND team = \"seibu lions\" AND year = \"1992\"", "question": "In the year 1992 for the Seibu Lions, the BB + HBP which is larger than 49 was this as a BA (Place)?", "context": "CREATE TABLE table_name_70 (ba__place_ VARCHAR, year VARCHAR, team VARCHAR, bb_ VARCHAR, hbp VARCHAR)"}, {"answer": "SELECT loss FROM table_name_62 WHERE date = \"may 1\"", "question": "What team lost on May 1?", "context": "CREATE TABLE table_name_62 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_72 WHERE date = \"may 1\"", "question": "What was the final score for the game on May 1?", "context": "CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE date = \"may 4\"", "question": "What was the final score for the game on May 4?", "context": "CREATE TABLE table_name_91 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT 1994 FROM table_name_38 WHERE tournament = \"atp masters series\"", "question": "In 1994 what tournament held a ATP masters series", "context": "CREATE TABLE table_name_38 (tournament VARCHAR)"}, {"answer": "SELECT career_sr FROM table_name_62 WHERE tournament = \"masters series sr\"", "question": "What is the Career SR of the year that held the masters series Sr tournament", "context": "CREATE TABLE table_name_62 (career_sr VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT competition FROM table_name_77 WHERE score = \"1-0\" AND location = \"alvor\"", "question": "WHich competition was held on Alvor with a score 1-0?", "context": "CREATE TABLE table_name_77 (competition VARCHAR, score VARCHAR, location VARCHAR)"}, {"answer": "SELECT name FROM table_name_79 WHERE lane = 7", "question": "Which name has a Lane of 7?", "context": "CREATE TABLE table_name_79 (name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_58 WHERE nationality = \"iceland\"", "question": "How many lanes have a Nationality of iceland?", "context": "CREATE TABLE table_name_58 (lane INTEGER, nationality VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_65 WHERE lane = 1", "question": "What is the smallest rank with a Lane of 1?", "context": "CREATE TABLE table_name_65 (rank INTEGER, lane VARCHAR)"}, {"answer": "SELECT score FROM table_name_28 WHERE game = 1", "question": "What was the final score of Game 1?", "context": "CREATE TABLE table_name_28 (score VARCHAR, game VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE time = \"2:48\"", "question": "What date has 2:48 as the time?", "context": "CREATE TABLE table_name_48 (date VARCHAR, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_91 WHERE time = \"2:57\"", "question": "Which record has 2:57 as the time?", "context": "CREATE TABLE table_name_91 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT losing_bp FROM table_name_38 WHERE played = \"22\" AND lost = \"5\"", "question": "Can you tell me the Losing BP that has Played of 22, and the Lost of 5?", "context": "CREATE TABLE table_name_38 (losing_bp VARCHAR, played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT lost FROM table_name_50 WHERE try_bp = \"10\" AND club = \"uwic rfc\"", "question": "Can you tell the Lost that has the Try BP of 10, and the Club of uwic rfc?", "context": "CREATE TABLE table_name_50 (lost VARCHAR, try_bp VARCHAR, club VARCHAR)"}, {"answer": "SELECT club FROM table_name_34 WHERE lost = \"19\"", "question": "Can you tell me the Club that has the Lost of 19?", "context": "CREATE TABLE table_name_34 (club VARCHAR, lost VARCHAR)"}, {"answer": "SELECT lost FROM table_name_65 WHERE losing_bp = \"5\" AND try_bp = \"0\"", "question": "Can you tell me the Lost that has Losing BP of 5, and the Try BP of 0?", "context": "CREATE TABLE table_name_65 (lost VARCHAR, losing_bp VARCHAR, try_bp VARCHAR)"}, {"answer": "SELECT played FROM table_name_15 WHERE \"club\" = \"club\"", "question": "Can you tell me the Played that has the Club of club?", "context": "CREATE TABLE table_name_15 (played VARCHAR)"}, {"answer": "SELECT club FROM table_name_84 WHERE try_bp = \"0\"", "question": "Can you tell me the Club thay has the Try BP of 0?", "context": "CREATE TABLE table_name_84 (club VARCHAR, try_bp VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE points_against > 7 AND points_for = 27", "question": "What date did the Mountaineers score 27 points and their opponent scored more that 7?", "context": "CREATE TABLE table_name_82 (date VARCHAR, points_against VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT result FROM table_name_32 WHERE points_for < 13 AND points_against = 26", "question": "What was the final result when the Mountaineers scored less than 13 and their opponents scored 26?", "context": "CREATE TABLE table_name_32 (result VARCHAR, points_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_3 WHERE county = \"kilkenny\" AND tally = \"0-14\"", "question": "With a Tally of 0-14, what is the Rank in Kilkenny County?", "context": "CREATE TABLE table_name_3 (rank VARCHAR, county VARCHAR, tally VARCHAR)"}, {"answer": "SELECT county FROM table_name_78 WHERE opposition = \"dublin\"", "question": "What County has Dublin as the Opposition?", "context": "CREATE TABLE table_name_78 (county VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_48 WHERE opposition = \"tipperary\" AND county = \"limerick\" AND total > 12", "question": "In Limerick County, what is the Rank with a Total larger than 12 and Tipperary as the Opposition?", "context": "CREATE TABLE table_name_48 (rank INTEGER, total VARCHAR, opposition VARCHAR, county VARCHAR)"}, {"answer": "SELECT player FROM table_name_83 WHERE total = 10 AND opposition = \"kilkenny\"", "question": "What Player in Opposition of Kilkenny has a Total of 10?", "context": "CREATE TABLE table_name_83 (player VARCHAR, total VARCHAR, opposition VARCHAR)"}, {"answer": "SELECT time FROM table_name_4 WHERE lane > 4 AND nationality = \"romania\"", "question": "What is the time in Romania that has a lane larger than 4?", "context": "CREATE TABLE table_name_4 (time VARCHAR, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT heat FROM table_name_54 WHERE name = \"jin hao\"", "question": "Jin Hao had what amount of heat?", "context": "CREATE TABLE table_name_54 (heat VARCHAR, name VARCHAR)"}, {"answer": "SELECT heat FROM table_name_1 WHERE time = \"15:29.69\"", "question": "At time 15:29.69 what was the heat?", "context": "CREATE TABLE table_name_1 (heat VARCHAR, time VARCHAR)"}, {"answer": "SELECT class FROM table_name_31 WHERE laps < 6", "question": "What is the class of the team when less than 6 laps were completed?", "context": "CREATE TABLE table_name_31 (class VARCHAR, laps INTEGER)"}, {"answer": "SELECT COUNT(year) FROM table_name_51 WHERE team = \"scuderia lancia corse\"", "question": "What is the year when Scuderia Lancia Corse competed?", "context": "CREATE TABLE table_name_51 (year VARCHAR, team VARCHAR)"}, {"answer": "SELECT pos FROM table_name_23 WHERE year < 1973", "question": "What was the position of the teams before 1973?", "context": "CREATE TABLE table_name_23 (pos VARCHAR, year INTEGER)"}, {"answer": "SELECT laid_down FROM table_name_33 WHERE name = \"kaki\"", "question": "What is the laid down date of Kaki?", "context": "CREATE TABLE table_name_33 (laid_down VARCHAR, name VARCHAR)"}, {"answer": "SELECT launched FROM table_name_70 WHERE kanji = \"\u6817\"", "question": "What is the launch date of \u6817?", "context": "CREATE TABLE table_name_70 (launched VARCHAR, kanji VARCHAR)"}, {"answer": "SELECT completed FROM table_name_87 WHERE kanji = \"\u84ec\"", "question": "What is the completed date of \u84ec?", "context": "CREATE TABLE table_name_87 (completed VARCHAR, kanji VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_89 WHERE date = \"december 19, 2001\"", "question": "Which catalog was published on December 19, 2001?", "context": "CREATE TABLE table_name_89 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_37 WHERE date = \"october 21, 1981\"", "question": "What is the label for October 21, 1981?", "context": "CREATE TABLE table_name_37 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_94 WHERE catalog = \"alca-9201\"", "question": "What is the date for Catalog Alca-9201?", "context": "CREATE TABLE table_name_94 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT format FROM table_name_94 WHERE date = \"july 27, 1994\"", "question": "What is the format for July 27, 1994?", "context": "CREATE TABLE table_name_94 (format VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_16 WHERE label = \"alfa records\" AND format = \"cd\" AND catalog = \"alca-9201\"", "question": "What is the date of the label Alfa records, a CD format, and an alca-9201 catalog?", "context": "CREATE TABLE table_name_16 (date VARCHAR, catalog VARCHAR, label VARCHAR, format VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_18 WHERE format = \"cd\"", "question": "What catalog has the CD format?", "context": "CREATE TABLE table_name_18 (catalog VARCHAR, format VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_1 WHERE rank > 1 AND time = \"59.75\"", "question": "Which nationaly is ranked greater than 1, with a time of 59.75?", "context": "CREATE TABLE table_name_1 (nationality VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT name FROM table_name_19 WHERE lane > 3 AND nationality = \"france\"", "question": "Which france nationality has a lane larger than 3?", "context": "CREATE TABLE table_name_19 (name VARCHAR, lane VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_15 WHERE time = \"59.80\" AND lane < 8", "question": "What's the total rank of the lane smaller than 8 with a time of 59.80?", "context": "CREATE TABLE table_name_15 (rank INTEGER, time VARCHAR, lane VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_77 WHERE lane < 1", "question": "What's the top rank that's lane is smaller than 1?", "context": "CREATE TABLE table_name_77 (rank INTEGER, lane INTEGER)"}, {"answer": "SELECT SUM(took_office) FROM table_name_9 WHERE deputy_prime_minister = \"mariano rajoy brey\"", "question": "What year did deputy prime minister Mariano Rajoy Brey take office?", "context": "CREATE TABLE table_name_9 (took_office INTEGER, deputy_prime_minister VARCHAR)"}, {"answer": "SELECT deputy_prime_minister FROM table_name_8 WHERE term = \"7th legislature\" AND left_office = \"2004\"", "question": "Which deputy prime minister left office in 2004 and was in the 7th legislature?", "context": "CREATE TABLE table_name_8 (deputy_prime_minister VARCHAR, term VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT deputy_prime_minister FROM table_name_87 WHERE left_office = \"1981\"", "question": "Which deputy prime minister left office in 1981?", "context": "CREATE TABLE table_name_87 (deputy_prime_minister VARCHAR, left_office VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_32 WHERE year < 1955 AND chassis = \"connaught type a\"", "question": "How many points did Connaught Type A chassis earn on average before 1955?", "context": "CREATE TABLE table_name_32 (points INTEGER, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_62 WHERE draw = 6 AND rank > 10", "question": "What is the lowest points with 6 draws and lower than rank 10?", "context": "CREATE TABLE table_name_62 (points INTEGER, draw VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(draw) FROM table_name_94 WHERE rank = 4", "question": "What is the lowest draw with rank 4?", "context": "CREATE TABLE table_name_94 (draw INTEGER, rank VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_65 WHERE rank < 10 AND dance_styles = \"rumba/cha-cha/jazz dance\"", "question": "How many draws has lower than rank 10 in rumba/cha-cha/jazz dance?", "context": "CREATE TABLE table_name_65 (draw VARCHAR, rank VARCHAR, dance_styles VARCHAR)"}, {"answer": "SELECT COUNT(draw) FROM table_name_79 WHERE dance_styles = \"rumba/tango\"", "question": "How many draws have rumba/tango dance styles?", "context": "CREATE TABLE table_name_79 (draw VARCHAR, dance_styles VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_90 WHERE gold > 1 AND nation = \"russia\" AND bronze < 10", "question": "What's the sum of the totals for Russia with more than 1 gold and less than 10 bronze?", "context": "CREATE TABLE table_name_90 (total INTEGER, bronze VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_34 WHERE date = \"march 27, 2006\"", "question": "what tournament happened on march 27, 2006?", "context": "CREATE TABLE table_name_34 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE opponent = \"scoville jenkins\"", "question": "what was the score when scoville jenkins was the opponent?", "context": "CREATE TABLE table_name_59 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_91 WHERE date = \"november 14, 2005\"", "question": "what was the opponent on november 14, 2005?", "context": "CREATE TABLE table_name_91 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_94 WHERE date = \"may 2, 2011\"", "question": "what tournament happened on may 2, 2011?", "context": "CREATE TABLE table_name_94 (tournament VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_51 WHERE opponent = \"sam querrey\"", "question": "what tournament had sam querrey as the opponent?", "context": "CREATE TABLE table_name_51 (tournament VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_78 WHERE surface = \"hard\" AND opponent = \"jacob adaktusson\"", "question": "what tournament was on a hard surface and saw jacob adaktusson as the opponent?", "context": "CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_63 WHERE date = \"september 17, 1995\"", "question": "Who was the opponent on September 17, 1995?", "context": "CREATE TABLE table_name_63 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT week FROM table_name_93 WHERE attendance = \"51,265\"", "question": "Which week had an attendance of 51,265?", "context": "CREATE TABLE table_name_93 (week VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_58 WHERE date = \"december 17, 1995\"", "question": "Who was the opponent on December 17, 1995?", "context": "CREATE TABLE table_name_58 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_94 WHERE time = \"4:14\"", "question": "Which record has 4:14 as the time?", "context": "CREATE TABLE table_name_94 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE method = \"tko (strikes)\" AND opponent = \"daan kooiman\"", "question": "Which record has tko (strikes) as the method, and daan kooiman as the opponent?", "context": "CREATE TABLE table_name_57 (record VARCHAR, method VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT round FROM table_name_94 WHERE event = \"pain and glory 2006\"", "question": "Which round has pain and glory 2006 as the event?", "context": "CREATE TABLE table_name_94 (round VARCHAR, event VARCHAR)"}, {"answer": "SELECT record FROM table_name_14 WHERE opponent = \"john flemming\"", "question": "Which record has john flemming as the opponent?", "context": "CREATE TABLE table_name_14 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT record FROM table_name_49 WHERE time = \"5:00\" AND opponent = \"jess liaudin\" AND location = \"england\"", "question": "Which record has 5:00 as the time, jess liaudin as the opponent for the location of england?", "context": "CREATE TABLE table_name_49 (record VARCHAR, location VARCHAR, time VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE home = \"green bay packers\"", "question": "Name the score for home of green bay packers", "context": "CREATE TABLE table_name_37 (score VARCHAR, home VARCHAR)"}, {"answer": "SELECT home FROM table_name_93 WHERE score = \"21-17\"", "question": "Name the home for 21-17", "context": "CREATE TABLE table_name_93 (home VARCHAR, score VARCHAR)"}, {"answer": "SELECT engine FROM table_name_85 WHERE entrant = \"scuderia ambrosiana\" AND points < 4", "question": "What engine did Scuderia Ambrosiana with fewer than 4 points have?", "context": "CREATE TABLE table_name_85 (engine VARCHAR, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_39 WHERE year < 1954 AND points = 0", "question": "What chassis had fewer than 0 points in a year before 1954?", "context": "CREATE TABLE table_name_39 (chassis VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_5 WHERE entrant = \"g.a. vandervell\"", "question": "What chassis had an entrant of G.A. Vandervell?", "context": "CREATE TABLE table_name_5 (chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_3 WHERE date = \"may 2\"", "question": "How many people were in attendance on may 2?", "context": "CREATE TABLE table_name_3 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_7 WHERE date = \"may 17\"", "question": "How many people were in attendance on may 17?", "context": "CREATE TABLE table_name_7 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT COUNT(weeks_on_chart__uk_) FROM table_name_30 WHERE entered_chart__uk_ = \"14 september 2002\"", "question": "How many weeks did the single that entered the charts 14 september 2002 stay on the charts ?", "context": "CREATE TABLE table_name_30 (weeks_on_chart__uk_ VARCHAR, entered_chart__uk_ VARCHAR)"}, {"answer": "SELECT title FROM table_name_50 WHERE weeks_on_chart__uk_ = 23", "question": "Which single was on the Charts for 23 weeks ?", "context": "CREATE TABLE table_name_50 (title VARCHAR, weeks_on_chart__uk_ VARCHAR)"}, {"answer": "SELECT COUNT(ects_credit_points) FROM table_name_25 WHERE program = \"master in management\"", "question": "How many ECTS credit points occur with Master in Management?", "context": "CREATE TABLE table_name_25 (ects_credit_points VARCHAR, program VARCHAR)"}, {"answer": "SELECT teaching_language FROM table_name_69 WHERE program = \"master of quantitative finance\"", "question": "What is the teaching language for Master of Quantitative Finance?", "context": "CREATE TABLE table_name_69 (teaching_language VARCHAR, program VARCHAR)"}, {"answer": "SELECT program FROM table_name_35 WHERE duration__years_ = 3.5", "question": "Which program has 3.5 years?", "context": "CREATE TABLE table_name_35 (program VARCHAR, duration__years_ VARCHAR)"}, {"answer": "SELECT teaching_language FROM table_name_51 WHERE duration__years_ < 2 AND ects_credit_points < 65", "question": "What is the teaching language for a less than 2 year duration and less than 65 ECTS credit points?", "context": "CREATE TABLE table_name_51 (teaching_language VARCHAR, duration__years_ VARCHAR, ects_credit_points VARCHAR)"}, {"answer": "SELECT engine FROM table_name_79 WHERE pts > 0", "question": "What engine has more than 0 pts?", "context": "CREATE TABLE table_name_79 (engine VARCHAR, pts INTEGER)"}, {"answer": "SELECT AVG(pts) FROM table_name_44 WHERE engine = \"alfa romeo v12\" AND year > 1983", "question": "What is the average pots of Alfa Romeo v12 after 1983?", "context": "CREATE TABLE table_name_44 (pts INTEGER, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_75 WHERE competition = \"uefa champions league/european cup\" AND draw > 1", "question": "What was the total against in uefa champions league/european cup with more than 1 draw?", "context": "CREATE TABLE table_name_75 (against INTEGER, competition VARCHAR, draw VARCHAR)"}, {"answer": "SELECT SUM(against) FROM table_name_19 WHERE draw = 1 AND played < 8", "question": "What is the total against with 1 draw and less than 8 played?", "context": "CREATE TABLE table_name_19 (against INTEGER, draw VARCHAR, played VARCHAR)"}, {"answer": "SELECT wins FROM table_name_14 WHERE engine = \"zytek\" AND racing_team = \"super nova racing\"", "question": "How many times did Super Nova Racing win with a zytek engine?", "context": "CREATE TABLE table_name_14 (wins VARCHAR, engine VARCHAR, racing_team VARCHAR)"}, {"answer": "SELECT main_wins FROM table_name_63 WHERE team = \"france\"", "question": "How many main wins for France?", "context": "CREATE TABLE table_name_63 (main_wins VARCHAR, team VARCHAR)"}, {"answer": "SELECT poles FROM table_name_57 WHERE racing_team = \"status grand prix\"", "question": "How many poles does status grand prix have?", "context": "CREATE TABLE table_name_57 (poles VARCHAR, racing_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE record = \"88-74\"", "question": "Question does not make sense since there was no record of 88-74", "context": "CREATE TABLE table_name_77 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT award FROM table_name_1 WHERE name = \"lowe\"", "question": "What is the award type for all Lowe awards?", "context": "CREATE TABLE table_name_1 (award VARCHAR, name VARCHAR)"}, {"answer": "SELECT engine_s_ FROM table_name_57 WHERE year = 1966 AND points = \"42\"", "question": "Which engine(s) has a year of 1966, and a point of 42.", "context": "CREATE TABLE table_name_57 (engine_s_ VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT score1 FROM table_name_32 WHERE opponent = \"hapoel tel aviv\"", "question": "What was the score against hapoel tel aviv?", "context": "CREATE TABLE table_name_32 (score1 VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE opponent = \"cambridge united\"", "question": "What day did they play cambridge united?", "context": "CREATE TABLE table_name_51 (date VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT ground FROM table_name_65 WHERE match = 8", "question": "Where was match 8 played?", "context": "CREATE TABLE table_name_65 (ground VARCHAR, match VARCHAR)"}, {"answer": "SELECT name_[b_] FROM table_name_63 WHERE Pwin_percentage = 0.696", "question": "What is the name of the person with a PWin% of .696?", "context": "CREATE TABLE table_name_63 (name_ VARCHAR, b_ VARCHAR, Pwin_percentage VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_30 WHERE Pwin_percentage = \u2014 AND term_[c_] = \"1987\u20131988\" AND win_percentage < 0.506", "question": "What is the sum of the game with a PWin% of \u2014, Term [c] of 1987\u20131988, and Win% less than 0.506?", "context": "CREATE TABLE table_name_30 (games INTEGER, win_percentage VARCHAR, Pwin_percentage VARCHAR, \u2014 VARCHAR, term_ VARCHAR, c_ VARCHAR)"}, {"answer": "SELECT win_percentage FROM table_name_88 WHERE games = 80 AND Pwin_percentage = \u2014 AND term_[c_] = \"1987\u20131988\"", "question": "What is the win% for the game 80 and a PWin% of \u2014, and a Term [c ] of 1987\u20131988?", "context": "CREATE TABLE table_name_88 (win_percentage VARCHAR, games VARCHAR, Pwin_percentage VARCHAR, \u2014 VARCHAR, term_ VARCHAR, c_ VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_24 WHERE term_[c_] = \"1969 \u2013 1973\"", "question": "What is the of games when for the term [c] of 1969 \u2013 1973?", "context": "CREATE TABLE table_name_24 (games INTEGER, term_ VARCHAR, c_ VARCHAR)"}, {"answer": "SELECT method FROM table_name_6 WHERE date_of_execution = \"september 24, 1830\"", "question": "What was the method of execution on September 24, 1830?", "context": "CREATE TABLE table_name_6 (method VARCHAR, date_of_execution VARCHAR)"}, {"answer": "SELECT method FROM table_name_19 WHERE race = \"native american\" AND name = \"wau-bau-ne-me-mee\"", "question": "How was the native american, Wau-Bau-Ne-Me-Mee, executed?", "context": "CREATE TABLE table_name_19 (method VARCHAR, race VARCHAR, name VARCHAR)"}, {"answer": "SELECT race FROM table_name_52 WHERE date_of_execution = \"december 27, 1827\"", "question": "What was the race of the person executed on December 27, 1827?", "context": "CREATE TABLE table_name_52 (race VARCHAR, date_of_execution VARCHAR)"}, {"answer": "SELECT method FROM table_name_99 WHERE date_of_execution = \"december 27, 1827\" AND name = \"kewaubis\"", "question": "In what way was Kewaubis executed on December 27, 1827?", "context": "CREATE TABLE table_name_99 (method VARCHAR, date_of_execution VARCHAR, name VARCHAR)"}, {"answer": "SELECT method FROM table_name_30 WHERE race = \"native american\" AND date_of_execution = \"july 1836\"", "question": "How was the native american executed in July 1836?", "context": "CREATE TABLE table_name_30 (method VARCHAR, race VARCHAR, date_of_execution VARCHAR)"}, {"answer": "SELECT SUM(draws) FROM table_name_85 WHERE wins = 1 AND losses = 1 AND goal_differential = \"+1\"", "question": "How many draws have 1 win, 1 loss, and a Goal Differential of +1?", "context": "CREATE TABLE table_name_85 (draws INTEGER, goal_differential VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT genre FROM table_name_85 WHERE artist = \"led zeppelin\"", "question": "What genre is Led Zeppelin?", "context": "CREATE TABLE table_name_85 (genre VARCHAR, artist VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE loss = \"flanagan (6-7)\"", "question": "On what date was the Loss by Flanagan (6-7)?", "context": "CREATE TABLE table_name_40 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_45 WHERE record = \"48-50\"", "question": "During which loss was the record 48-50?", "context": "CREATE TABLE table_name_45 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_22 WHERE record = \"47-49\"", "question": "What was the score that made the record 47-49?", "context": "CREATE TABLE table_name_22 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_61 WHERE date = \"july 29\"", "question": "Who was the Opponent on July 29?", "context": "CREATE TABLE table_name_61 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_27 WHERE loss = \"key (7-11)\"", "question": "What was the record during the loss by key (7-11)?", "context": "CREATE TABLE table_name_27 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT SUM(diagram) FROM table_name_2 WHERE builder = \"york\"", "question": "What is the total diagram for builder york?", "context": "CREATE TABLE table_name_2 (diagram INTEGER, builder VARCHAR)"}, {"answer": "SELECT fleet_numbers FROM table_name_68 WHERE diagram < 99 AND built = \"1960\"", "question": "What fleet  numbers have a diagram less than 99 and built in 1960?", "context": "CREATE TABLE table_name_68 (fleet_numbers VARCHAR, diagram VARCHAR, built VARCHAR)"}, {"answer": "SELECT MIN(diagram) FROM table_name_4 WHERE built = \"1962\" AND lot_no < 30702", "question": "What diagram built in 1962 has a lot number smaller than 30702?", "context": "CREATE TABLE table_name_4 (diagram INTEGER, built VARCHAR, lot_no VARCHAR)"}, {"answer": "SELECT builder FROM table_name_44 WHERE lot_no = 30702", "question": "What builder has lot number 30702?", "context": "CREATE TABLE table_name_44 (builder VARCHAR, lot_no VARCHAR)"}, {"answer": "SELECT genre FROM table_name_92 WHERE year < 2013 AND name = \"kikumana\"", "question": "Which Genre has a Year before 2013, and a Name of kikumana?", "context": "CREATE TABLE table_name_92 (genre VARCHAR, year VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_91 WHERE post = \"designer\"", "question": "In what year has a Post of designer?", "context": "CREATE TABLE table_name_91 (year INTEGER, post VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_97 WHERE home = \"boston bruins\" AND date = \"november 15\"", "question": "Who is listed as the Visitor that has a Home of Boston Bruins and a Date of November 15?", "context": "CREATE TABLE table_name_97 (visitor VARCHAR, home VARCHAR, date VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_13 WHERE date = \"december 17\"", "question": "Which Visitor is listed as having a Date of December 17?", "context": "CREATE TABLE table_name_13 (visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_45 WHERE visitor = \"montreal maroons\" AND date = \"december 28\"", "question": "What's the Score with the Visitor of Montreal Maroons and has a Date of December 28?", "context": "CREATE TABLE table_name_45 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_97 WHERE week < 6 AND opponent = \"san diego chargers\"", "question": "What's the attendance of the san diego chargers game before week 6?", "context": "CREATE TABLE table_name_97 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_97 WHERE top_25 = 1 AND cuts_made < 2 AND events < 5", "question": "How many wins have a Top-25 of 1, Less than 2 cuts, and fewer than 5 events?", "context": "CREATE TABLE table_name_97 (wins VARCHAR, events VARCHAR, top_25 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MAX(events) FROM table_name_38 WHERE top_25 = 1 AND cuts_made < 1", "question": "How many events have a Top-25 of 1 and made less than 1 cut?", "context": "CREATE TABLE table_name_38 (events INTEGER, top_25 VARCHAR, cuts_made VARCHAR)"}, {"answer": "SELECT MIN(events) FROM table_name_10 WHERE tournament = \"pga championship\" AND wins > 0", "question": "During the PGA Championship, what's the lowest amount of events with wins greater than 0?", "context": "CREATE TABLE table_name_10 (events INTEGER, tournament VARCHAR, wins VARCHAR)"}, {"answer": "SELECT MIN(cuts_made) FROM table_name_65 WHERE wins < 0", "question": "What's the lowest number of cuts made while the win was less than 0?", "context": "CREATE TABLE table_name_65 (cuts_made INTEGER, wins INTEGER)"}, {"answer": "SELECT reactortype FROM table_name_64 WHERE gross_capacity = \"417 mw\" AND electricity_grid = \"27.12.1971\"", "question": "Which Reactortype has a gross capacity of 417 mw and an Electricity Grid of 27.12.1971?", "context": "CREATE TABLE table_name_64 (reactortype VARCHAR, gross_capacity VARCHAR, electricity_grid VARCHAR)"}, {"answer": "SELECT unit FROM table_name_61 WHERE construction_started = \"01.07.1967\"", "question": "Which Unit's Construction started on 01.07.1967?", "context": "CREATE TABLE table_name_61 (unit VARCHAR, construction_started VARCHAR)"}, {"answer": "SELECT commercial_operation FROM table_name_48 WHERE gross_capacity = \"417 mw\" AND electricity_grid = \"27.12.1971\"", "question": "Which Commercial Operation has both a Gross Capacity of 417 mw and an Electricity Grid 27.12.1971?", "context": "CREATE TABLE table_name_48 (commercial_operation VARCHAR, gross_capacity VARCHAR, electricity_grid VARCHAR)"}, {"answer": "SELECT shutdown FROM table_name_26 WHERE electricity_grid = \"28.12.1972\"", "question": "When did the Electricity Grid 28.12.1972 officially shutdown?", "context": "CREATE TABLE table_name_26 (shutdown VARCHAR, electricity_grid VARCHAR)"}, {"answer": "SELECT electricity_grid FROM table_name_17 WHERE commercial_operation = \"24.03.1973\"", "question": "Which Electricity Grid started its Commercial Operation of 24.03.1973?", "context": "CREATE TABLE table_name_17 (electricity_grid VARCHAR, commercial_operation VARCHAR)"}, {"answer": "SELECT name FROM table_name_70 WHERE app_gs_sub_ = \"14 (8/6)\"", "question": "Tell what has the App(GS/Sub) of 14 (8/6)", "context": "CREATE TABLE table_name_70 (name VARCHAR, app_gs_sub_ VARCHAR)"}, {"answer": "SELECT goals FROM table_name_57 WHERE since < 2007 AND app_gs_sub_ = \"97 (69/28)\"", "question": "Name the goals with since less than 2007 and App(GS/Sub) of 97 (69/28)", "context": "CREATE TABLE table_name_57 (goals VARCHAR, since VARCHAR, app_gs_sub_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE venue = \"cadott rock fest\"", "question": "When is  Cadott Rock Fest taken place?", "context": "CREATE TABLE table_name_65 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT city FROM table_name_29 WHERE venue = \"mandalay bay resort\"", "question": "Which City has mandalay bay resort", "context": "CREATE TABLE table_name_29 (city VARCHAR, venue VARCHAR)"}, {"answer": "SELECT city FROM table_name_70 WHERE date = \"october 26, 2007\"", "question": "Which City has a Date on october 26, 2007", "context": "CREATE TABLE table_name_70 (city VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_75 WHERE venue = \"mandalay bay resort\"", "question": "Which Attendance has Mandalay Bay Resort", "context": "CREATE TABLE table_name_75 (attendance VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_22 WHERE country = \"united states\" AND venue = \"mandalay bay resort\"", "question": "When is Country of united states, and a Venue of mandalay bay resort in?", "context": "CREATE TABLE table_name_22 (date VARCHAR, country VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE city = \"san jacinto, california\"", "question": "When has a City of san jacinto, california?", "context": "CREATE TABLE table_name_63 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_37 WHERE points > 0 AND entrant = \"scuderia ferrari\" AND year > 1952", "question": "Which Chassis has more than 0 points, an Entrant of Scuderia Ferrari, and was later than 1952?", "context": "CREATE TABLE table_name_37 (chassis VARCHAR, year VARCHAR, points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_47 WHERE engine = \"vanwall straight-4\"", "question": "Which Entrant has a vanwall straight-4 engine?", "context": "CREATE TABLE table_name_47 (entrant VARCHAR, engine VARCHAR)"}, {"answer": "SELECT region FROM table_name_58 WHERE date = \"1970\"", "question": "Which region has a date of 1970?", "context": "CREATE TABLE table_name_58 (region VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_52 WHERE date = \"1987\"", "question": "Which label has a date of 1987?", "context": "CREATE TABLE table_name_52 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_39 WHERE format = \"cd remastered with 3 bonus tracks\"", "question": "Which catalogue has a formate of \"CD Remastered with 3 bonus tracks\"?", "context": "CREATE TABLE table_name_39 (catalogue VARCHAR, format VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_63 WHERE date = \"1987\"", "question": "Which catalogue has a date of 1987?", "context": "CREATE TABLE table_name_63 (catalogue VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(season) FROM table_name_94 WHERE runners_up = \"al ahly\"", "question": "What is the latest season where Al Ahly is the runners-up?", "context": "CREATE TABLE table_name_94 (season INTEGER, runners_up VARCHAR)"}, {"answer": "SELECT season FROM table_name_87 WHERE score = \"vasco da gama\"", "question": "What is the season where Vasco da gama is the score?", "context": "CREATE TABLE table_name_87 (season VARCHAR, score VARCHAR)"}, {"answer": "SELECT winners FROM table_name_92 WHERE season = 2010", "question": "Who is the winner in 2010?", "context": "CREATE TABLE table_name_92 (winners VARCHAR, season VARCHAR)"}, {"answer": "SELECT winners FROM table_name_30 WHERE season = 2011", "question": "Who is the winner in 2011?", "context": "CREATE TABLE table_name_30 (winners VARCHAR, season VARCHAR)"}, {"answer": "SELECT third_place FROM table_name_79 WHERE host = \"japan\" AND season < 2006", "question": "What was the third place of the performance in 2006 with the host Japan?", "context": "CREATE TABLE table_name_79 (third_place VARCHAR, host VARCHAR, season VARCHAR)"}, {"answer": "SELECT round FROM table_name_11 WHERE club = \"dundee united\"", "question": "Which round did Dundee United end in?", "context": "CREATE TABLE table_name_11 (round VARCHAR, club VARCHAR)"}, {"answer": "SELECT event FROM table_name_25 WHERE pursuit = \"18th\" AND sprint = \"20th\"", "question": "Name the event with pursuit of 18th and sprint of 20th", "context": "CREATE TABLE table_name_25 (event VARCHAR, pursuit VARCHAR, sprint VARCHAR)"}, {"answer": "SELECT pursuit FROM table_name_43 WHERE event = \"1994 lillehammer\"", "question": "Name the pursuit for 1994 lillehammer", "context": "CREATE TABLE table_name_43 (pursuit VARCHAR, event VARCHAR)"}, {"answer": "SELECT sprint FROM table_name_28 WHERE mass_start = \"2nd\"", "question": "Name the sprint with mass start of 2nd", "context": "CREATE TABLE table_name_28 (sprint VARCHAR, mass_start VARCHAR)"}, {"answer": "SELECT country FROM table_name_31 WHERE year = 1993", "question": "What country had a film in 1993?", "context": "CREATE TABLE table_name_31 (country VARCHAR, year VARCHAR)"}, {"answer": "SELECT location FROM table_name_16 WHERE event = \"extreme challenge 63\" AND time = \"2:00\"", "question": "Where was Extreme Challenge 63 with a time of 2:00 held?", "context": "CREATE TABLE table_name_16 (location VARCHAR, event VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_30 WHERE event = \"ufc 114\"", "question": "How many total rounds were there at UFC 114?", "context": "CREATE TABLE table_name_30 (round VARCHAR, event VARCHAR)"}, {"answer": "SELECT res FROM table_name_1 WHERE time = \"0:20\"", "question": "In the round that lasted 0:20, what was the Res?", "context": "CREATE TABLE table_name_1 (res VARCHAR, time VARCHAR)"}, {"answer": "SELECT city FROM table_name_94 WHERE event = \"ept baden classic\"", "question": "In what City was the Ept Baden Classic?", "context": "CREATE TABLE table_name_94 (city VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_77 WHERE prize = \"\u20ac869,000\"", "question": "What Event has a Prize of \u20ac869,000?", "context": "CREATE TABLE table_name_77 (event VARCHAR, prize VARCHAR)"}, {"answer": "SELECT winner FROM table_name_22 WHERE prize = \"z\u01422,153,999\"", "question": "What Winner had a Prize of z\u01422,153,999?", "context": "CREATE TABLE table_name_22 (winner VARCHAR, prize VARCHAR)"}, {"answer": "SELECT AVG(decile) FROM table_name_6 WHERE roll < 20", "question": "How many decile has a roll less than 20?", "context": "CREATE TABLE table_name_6 (decile INTEGER, roll INTEGER)"}, {"answer": "SELECT gender FROM table_name_62 WHERE roll = 627", "question": "Which gender had a roll of 627?", "context": "CREATE TABLE table_name_62 (gender VARCHAR, roll VARCHAR)"}, {"answer": "SELECT area FROM table_name_11 WHERE decile < 10 AND name = \"glenorchy school\"", "question": "Glenorchy school has a decile less than 10 and is in what area?", "context": "CREATE TABLE table_name_11 (area VARCHAR, decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT gender FROM table_name_24 WHERE roll < 141 AND name = \"makarora primary school\"", "question": "Makarora primary school has a roll less than 141 and what gender?", "context": "CREATE TABLE table_name_24 (gender VARCHAR, roll VARCHAR, name VARCHAR)"}, {"answer": "SELECT season FROM table_name_78 WHERE round = \"1. round\" AND club = \"sporting cp\"", "question": "In what season did the Sporting CP Club have a 1. round?", "context": "CREATE TABLE table_name_78 (season VARCHAR, round VARCHAR, club VARCHAR)"}, {"answer": "SELECT away FROM table_name_28 WHERE club = \"ekranas\"", "question": "The Club of Ekranas was an away with a score of what?", "context": "CREATE TABLE table_name_28 (away VARCHAR, club VARCHAR)"}, {"answer": "SELECT lane FROM table_name_22 WHERE name = \"rhiannon leier\"", "question": "What is Rhiannon Leier's lane?", "context": "CREATE TABLE table_name_22 (lane VARCHAR, name VARCHAR)"}, {"answer": "SELECT pennant FROM table_name_13 WHERE name = \"narbada\"", "question": "What pennant does Narbada have?", "context": "CREATE TABLE table_name_13 (pennant VARCHAR, name VARCHAR)"}, {"answer": "SELECT laid_down FROM table_name_26 WHERE pennant = \"u21\"", "question": "What date was the U21 pennant laid down?", "context": "CREATE TABLE table_name_26 (laid_down VARCHAR, pennant VARCHAR)"}, {"answer": "SELECT position FROM table_name_10 WHERE overall < 106 AND college = \"virginia\"", "question": "What position went lower than 106 from the College of Virginia?", "context": "CREATE TABLE table_name_10 (position VARCHAR, overall VARCHAR, college VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_17 WHERE position = \"fullback\"", "question": "What is the lowest round a fullback went in?", "context": "CREATE TABLE table_name_17 (round INTEGER, position VARCHAR)"}, {"answer": "SELECT province FROM table_name_6 WHERE rank > 49", "question": "Name the province with rank more than 49", "context": "CREATE TABLE table_name_6 (province VARCHAR, rank INTEGER)"}, {"answer": "SELECT mountain_peak FROM table_name_17 WHERE location = \"46.7000\u00b0n 60.5992\u00b0w\"", "question": "Name the mountain peak with location of 46.7000\u00b0n 60.5992\u00b0w", "context": "CREATE TABLE table_name_17 (mountain_peak VARCHAR, location VARCHAR)"}, {"answer": "SELECT mountain_peak FROM table_name_16 WHERE rank < 6 AND location = \"81.9083\u00b0n 75.0250\u00b0w\"", "question": "Name the mountain peak with rank less than 6 abd location of 81.9083\u00b0n 75.0250\u00b0w", "context": "CREATE TABLE table_name_16 (mountain_peak VARCHAR, rank VARCHAR, location VARCHAR)"}, {"answer": "SELECT mountain_range FROM table_name_26 WHERE province = \"nunavut\" AND location = \"73.2294\u00b0n 78.6233\u00b0w\"", "question": "Name the mountain range for nunavut with location of 73.2294\u00b0n 78.6233\u00b0w", "context": "CREATE TABLE table_name_26 (mountain_range VARCHAR, province VARCHAR, location VARCHAR)"}, {"answer": "SELECT mountain_peak FROM table_name_67 WHERE rank = 49", "question": "Name the mountain peak of 49 rank", "context": "CREATE TABLE table_name_67 (mountain_peak VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(live_births_2006) FROM table_name_94 WHERE whites_as__percentage_of_pop = \"98.40%\" AND tfr_2006 > 2", "question": "What is the total number of live births in 2006 with 98.40% of the population as Whites and has more than 2 for the TFR?", "context": "CREATE TABLE table_name_94 (live_births_2006 INTEGER, whites_as__percentage_of_pop VARCHAR, tfr_2006 VARCHAR)"}, {"answer": "SELECT MIN(gfr_2006) FROM table_name_64 WHERE whites_as__percentage_of_pop = \"95.80%\" AND tfr_2006 > 2.14", "question": "What is the lowest total GFR that has 95.80% of the population as Whites, and a TFR total larger than 2.14, in 2006?", "context": "CREATE TABLE table_name_64 (gfr_2006 INTEGER, whites_as__percentage_of_pop VARCHAR, tfr_2006 VARCHAR)"}, {"answer": "SELECT MAX(live_births_2006) FROM table_name_6 WHERE county = \"cumbria\" AND tfr_2006 > 1.76", "question": "In 2006, what is the highest number for Live births in the County of Cumbria that has a TFR larger than 1.76?", "context": "CREATE TABLE table_name_6 (live_births_2006 INTEGER, county VARCHAR, tfr_2006 VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_46 WHERE team = \"pramac d'antin ducati\"", "question": "Question doesn't make sense since there is no team of pramac d'antin ducati", "context": "CREATE TABLE table_name_46 (year INTEGER, team VARCHAR)"}, {"answer": "SELECT player FROM table_name_4 WHERE current_club = \"ironi nahariya\" AND year_born = 1980", "question": "Which player from the Ironi Nahariya club was born in 1980?", "context": "CREATE TABLE table_name_4 (player VARCHAR, current_club VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT position FROM table_name_10 WHERE year_born > 1978 AND current_club = \"cherkassy monkeys\"", "question": "Which position from the Cherkassy Monkeys' club was born after 1978?", "context": "CREATE TABLE table_name_10 (position VARCHAR, year_born VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_19 WHERE headquarters = \"toronto, on\" AND screens < 1 OFFSET 438", "question": "What is the rank of the cinema when the headquarters are in toronto, ON and the screens is less than 1,438?", "context": "CREATE TABLE table_name_19 (rank INTEGER, headquarters VARCHAR, screens VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_3 WHERE sites > 62 AND circuit = \"cineplex entertainment\"", "question": "what is the rank of the cinema when the number of sites is more than 62 and the circuit is cineplex entertainment?", "context": "CREATE TABLE table_name_3 (rank INTEGER, sites VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT AVG(sites) FROM table_name_8 WHERE screens = 687 AND rank > 7", "question": "what is the number of sites when the number of screens is 687 and rank is more than 7?", "context": "CREATE TABLE table_name_8 (sites INTEGER, screens VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(sites) FROM table_name_33 WHERE headquarters = \"columbus, ga\" AND rank < 4", "question": "what is the lowest number of sites when the headquarters are in columbus, ga and the rank is smaller than 4?", "context": "CREATE TABLE table_name_33 (sites INTEGER, headquarters VARCHAR, rank VARCHAR)"}, {"answer": "SELECT other FROM table_name_9 WHERE value = \"1 000\"", "question": "What is the Other transliteration for value 1 000?", "context": "CREATE TABLE table_name_9 (other VARCHAR, value VARCHAR)"}, {"answer": "SELECT word_form FROM table_name_55 WHERE ala_lc = \"muay s\u2033ain\"", "question": "What is the word form for the ALA-LC transliteration of muay s\u2033ain?", "context": "CREATE TABLE table_name_55 (word_form VARCHAR, ala_lc VARCHAR)"}, {"answer": "SELECT value FROM table_name_90 WHERE other = \"muoy roy\"", "question": "What number value has the Other transliteration of muoy roy?", "context": "CREATE TABLE table_name_90 (value VARCHAR, other VARCHAR)"}, {"answer": "SELECT word_form FROM table_name_79 WHERE ala_lc = \"muay b\u00e2n\"", "question": "What is the word form for the ALA-LC transliteration of muay b\u00e2n?", "context": "CREATE TABLE table_name_79 (word_form VARCHAR, ala_lc VARCHAR)"}, {"answer": "SELECT loss FROM table_name_1 WHERE record = \"76-81\"", "question": "Name the loss when the record is 76-81", "context": "CREATE TABLE table_name_1 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_9 WHERE silver > 2 AND gold > 7", "question": "Which average bronze had a silver greater than 2 and a gold larger than 7?", "context": "CREATE TABLE table_name_9 (bronze INTEGER, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_15 WHERE total = 11 AND silver > 4", "question": "When the total was 11 and silver was greater than 4 what was the highest gold?", "context": "CREATE TABLE table_name_15 (gold INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_43 WHERE total < 4 AND gold > 1", "question": "How many bronze had a total less than 4 and gold bigger than 1?", "context": "CREATE TABLE table_name_43 (bronze VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(enrollment) FROM table_name_46 WHERE capacity > 35 OFFSET 650", "question": "What is the enrollment associated with a capacity greater then 35,650?", "context": "CREATE TABLE table_name_46 (enrollment INTEGER, capacity INTEGER)"}, {"answer": "SELECT date FROM table_name_88 WHERE opposing_pitcher = \"jack morris\" AND inning = \"4th\"", "question": "Which Date has an Opposing Pitcher of jack morris, and an Inning of 4th?", "context": "CREATE TABLE table_name_88 (date VARCHAR, opposing_pitcher VARCHAR, inning VARCHAR)"}, {"answer": "SELECT AVG(home_run) FROM table_name_55 WHERE game = 89", "question": "Which average Home Run has a Game of 89?", "context": "CREATE TABLE table_name_55 (home_run INTEGER, game VARCHAR)"}, {"answer": "SELECT team FROM table_name_18 WHERE home_run = 27", "question": "Which team has a Home Run of 27?", "context": "CREATE TABLE table_name_18 (team VARCHAR, home_run VARCHAR)"}, {"answer": "SELECT assist_pass FROM table_name_85 WHERE score = \"1-0\" AND goal = \"5\"", "question": "Which Assist/pass has a Score of 1-0, and a Goal of 5?", "context": "CREATE TABLE table_name_85 (assist_pass VARCHAR, score VARCHAR, goal VARCHAR)"}, {"answer": "SELECT assist_pass FROM table_name_73 WHERE result = \"6-2\"", "question": "Which Assist/pass has a Result of 6-2?", "context": "CREATE TABLE table_name_73 (assist_pass VARCHAR, result VARCHAR)"}, {"answer": "SELECT assist_pass FROM table_name_31 WHERE goal = \"5\"", "question": "Which Assist/pass has a Goal of 5?", "context": "CREATE TABLE table_name_31 (assist_pass VARCHAR, goal VARCHAR)"}, {"answer": "SELECT location FROM table_name_25 WHERE goal = \"2\"", "question": "Which location has a Goal of 2?", "context": "CREATE TABLE table_name_25 (location VARCHAR, goal VARCHAR)"}, {"answer": "SELECT lineup FROM table_name_95 WHERE location = \"usa virginia beach\"", "question": "Which lineup has a Location of usa virginia beach?", "context": "CREATE TABLE table_name_95 (lineup VARCHAR, location VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE score = \"5-1\"", "question": "Which date had a score of 5-1?", "context": "CREATE TABLE table_name_20 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_73 WHERE score = \"2-1\"", "question": "What result had a score of 2-1?", "context": "CREATE TABLE table_name_73 (result VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE score = \"3-2\"", "question": "Which date had a score of 3-2?", "context": "CREATE TABLE table_name_52 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_98 WHERE engine = \"porsche v12\" AND pts < 0", "question": "What is the oldest model Porsche v12 that has points less than or equal to 0.", "context": "CREATE TABLE table_name_98 (year INTEGER, engine VARCHAR, pts VARCHAR)"}, {"answer": "SELECT design FROM table_name_50 WHERE theme = \"alpine skiing\"", "question": "Which design uses the theme alpine skiing?", "context": "CREATE TABLE table_name_50 (design VARCHAR, theme VARCHAR)"}, {"answer": "SELECT date_of_issue FROM table_name_56 WHERE theme = \"bobsleigh\"", "question": "When did the Theme of bobsleigh release?", "context": "CREATE TABLE table_name_56 (date_of_issue VARCHAR, theme VARCHAR)"}, {"answer": "SELECT MAX(pts) FROM table_name_79 WHERE year > 1952 AND chassis = \"connaught type a\"", "question": "What is the highest pts after 1952 with connaught type a?", "context": "CREATE TABLE table_name_79 (pts INTEGER, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_30 WHERE week = 8", "question": "Who did the Chiefs play in Week 8?", "context": "CREATE TABLE table_name_30 (opponent VARCHAR, week VARCHAR)"}, {"answer": "SELECT surface FROM table_name_68 WHERE date = \"26 august 2001\"", "question": "On what surface was the 26 August 2001 tournament played?", "context": "CREATE TABLE table_name_68 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(capacity) FROM table_name_46 WHERE suites = \"150\"", "question": "What is the average capacity for 150 suites?", "context": "CREATE TABLE table_name_46 (capacity INTEGER, suites VARCHAR)"}, {"answer": "SELECT location FROM table_name_30 WHERE project = \"eren talu bidding project\"", "question": "Where is the Eren Talu bidding project located?", "context": "CREATE TABLE table_name_30 (location VARCHAR, project VARCHAR)"}, {"answer": "SELECT location FROM table_name_94 WHERE capacity > 52 OFFSET 000", "question": "Which location has a capacity larger than 52,000?", "context": "CREATE TABLE table_name_94 (location VARCHAR, capacity INTEGER)"}, {"answer": "SELECT MAX(capacity) FROM table_name_97 WHERE location = \"aslantepe\" AND year = \"2002-2005\"", "question": "What is the highest capacity in Aslantepe in 2002-2005?", "context": "CREATE TABLE table_name_97 (capacity INTEGER, location VARCHAR, year VARCHAR)"}, {"answer": "SELECT ungegn FROM table_name_40 WHERE khmer > \u17e1\u17e0\u17e0\u17e0\u17e0\u17e0\u17e0\u17e0\u17e0", "question": "What is the UNGEGN, when the Khmer is greater than \u17e1\u17e0\u17e0\u17e0\u17e0\u17e0\u17e0\u17e0\u17e0?", "context": "CREATE TABLE table_name_40 (ungegn VARCHAR, khmer INTEGER)"}, {"answer": "SELECT word_form FROM table_name_39 WHERE khmer > \u17e1\u17e0\u17e0\u17e0\u17e0\u17e0 AND ungegn = \"(mu\u014fy) d\u00e1b le\u0103n\"", "question": "What is the Word Form, when the Khmer is greater than \u17e1\u17e0\u17e0\u17e0\u17e0\u17e0, and the UNGEGN is (mu\u014fy) d\u00e1b le\u0103n?", "context": "CREATE TABLE table_name_39 (word_form VARCHAR, khmer VARCHAR, ungegn VARCHAR)"}, {"answer": "SELECT ungegn FROM table_name_34 WHERE value = \"10 000\"", "question": "What is the UNGEGN, when the Value is 10 000?", "context": "CREATE TABLE table_name_34 (ungegn VARCHAR, value VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_77 WHERE 2007 = \"wta premier mandatory tournaments\"", "question": "Name the 2008 for wta premier mandatory tournaments of 2007", "context": "CREATE TABLE table_name_77 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_71 WHERE tournament = \"beijing\"", "question": "Name the tournament of beijing", "context": "CREATE TABLE table_name_71 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_35 WHERE 2007 = \"2r\" AND tournament = \"wimbledon\"", "question": "Name the 2009 for 2007 of 2r and tournament of wimbledon", "context": "CREATE TABLE table_name_35 (tournament VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_64 WHERE 2010 = \"olympic games\"", "question": "Name the 2011 for 2010 of olympic games", "context": "CREATE TABLE table_name_64 (Id VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_62 WHERE tournament = \"tokyo\"", "question": "Name the 2011 for tokyo tournament", "context": "CREATE TABLE table_name_62 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_99 WHERE tournament = \"wta premier mandatory tournaments\"", "question": "Name the 2009 for wta premier mandatory tournaments", "context": "CREATE TABLE table_name_99 (tournament VARCHAR)"}, {"answer": "SELECT year FROM table_name_70 WHERE chassis = \"kurtis kraft 500g\"", "question": "Which year did Ray Crawford the Kurtis Kraft 500g chassis?", "context": "CREATE TABLE table_name_70 (year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT city FROM table_name_84 WHERE july__avg_high_\u00b0f_ < 84 AND january__avg_low_\u00b0f_ = \"34.3\"", "question": "What city had a july high below 84, and a january low of 34.3?", "context": "CREATE TABLE table_name_84 (city VARCHAR, july__avg_high_\u00b0f_ VARCHAR, january__avg_low_\u00b0f_ VARCHAR)"}, {"answer": "SELECT COUNT(july__avg_low_) AS \u00b0f_ FROM table_name_28 WHERE january__avg_high_\u00b0f_ = \"30.4\"", "question": "What is the july average low associated with a january average high of 30.4?", "context": "CREATE TABLE table_name_28 (july__avg_low_ VARCHAR, january__avg_high_\u00b0f_ VARCHAR)"}, {"answer": "SELECT class FROM table_name_50 WHERE identifier = \"cbua-fm\"", "question": "Which class has an identifier of CBUA-FM?", "context": "CREATE TABLE table_name_50 (class VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_15 WHERE frequency = \"90.1 fm\"", "question": "What is the city of license for the frequency 90.1 FM?", "context": "CREATE TABLE table_name_15 (city_of_license VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT power FROM table_name_50 WHERE city_of_license = \"beaver creek\"", "question": "What is the power when the city of license is Beaver Creek?", "context": "CREATE TABLE table_name_50 (power VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_70 WHERE class = \"lp\" AND identifier = \"cbdk\"", "question": "What is the city of license when the class is LP and the identifier is CBDK?", "context": "CREATE TABLE table_name_70 (city_of_license VARCHAR, class VARCHAR, identifier VARCHAR)"}, {"answer": "SELECT class FROM table_name_57 WHERE frequency = \"560 am\"", "question": "What is the class when the frequency is 560 AM?", "context": "CREATE TABLE table_name_57 (class VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT MIN(assets__us) AS $_billion_ FROM table_name_16 WHERE company = \"piraeus bank\" AND revenues__us$_billion_ < 3.9", "question": "What are the smallest assets with a Company of piraeus bank, and a Revenue (US$ billion) smaller than 3.9?", "context": "CREATE TABLE table_name_16 (assets__us INTEGER, company VARCHAR, revenues__us$_billion_ VARCHAR)"}, {"answer": "SELECT AVG(market_value__us) AS $_billion_ FROM table_name_87 WHERE revenues__us$_billion_ > 6.2 AND company = \"national bank of greece\" AND rank < 1", "question": "What is the average market value with a revenue greater than 6.2, a Company of national bank of greece, and a Rank smaller than 1?", "context": "CREATE TABLE table_name_87 (market_value__us INTEGER, rank VARCHAR, revenues__us$_billion_ VARCHAR, company VARCHAR)"}, {"answer": "SELECT company FROM table_name_41 WHERE market_value__us$_billion_ > 1 AND assets__us$_billion_ < 10.7 AND rank < 10 AND revenues__us$_billion_ = 9.3", "question": "Which company has a market value greater than 1, Assets (US$ billion) smaller than 10.7, a Rank smaller than 10, and revenue (US$ billion) of 9.3?", "context": "CREATE TABLE table_name_41 (company VARCHAR, revenues__us$_billion_ VARCHAR, rank VARCHAR, market_value__us$_billion_ VARCHAR, assets__us$_billion_ VARCHAR)"}, {"answer": "SELECT venue FROM table_name_72 WHERE result = \"eng by 6 wkts\"", "question": "Tell me the venue with result of eng by 6 wkts", "context": "CREATE TABLE table_name_72 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_14 WHERE venue = \"the oval\"", "question": "Name the Home captain for venue of the oval", "context": "CREATE TABLE table_name_14 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_69 WHERE result = \"wi by 9 wkts\"", "question": "Name the away captain with result of wi by 9 wkts", "context": "CREATE TABLE table_name_69 (away_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_46 WHERE result = \"eng by 6 wkts\"", "question": "Name the venue for eng by 6 wkts", "context": "CREATE TABLE table_name_46 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT last_performance FROM table_name_77 WHERE style = \"street dance\" AND name = \"george maguire\"", "question": "What is the date of the last performance when the style is street dance and the name is George Maguire?", "context": "CREATE TABLE table_name_77 (last_performance VARCHAR, style VARCHAR, name VARCHAR)"}, {"answer": "SELECT last_performance FROM table_name_11 WHERE name = \"liam mower\"", "question": "What is the date of the last performance for Liam Mower?", "context": "CREATE TABLE table_name_11 (last_performance VARCHAR, name VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_28 WHERE engine = \"weslake v12\" AND year < 1966", "question": "How many points did the Weslake v12 get in 1966?", "context": "CREATE TABLE table_name_28 (points INTEGER, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_3 WHERE year = 1965 AND chassis = \"ferrari 158\"", "question": "What was the name of the team in 1965 driving the Ferrari 158?", "context": "CREATE TABLE table_name_3 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_30 WHERE engine = \"weslake v12\"", "question": "What Chassis had a Weslake v12 in it?", "context": "CREATE TABLE table_name_30 (chassis VARCHAR, engine VARCHAR)"}, {"answer": "SELECT copaxone FROM table_name_13 WHERE mitoxantrone = \"no\" AND betaseron__beta_1b_ = \"no\"", "question": "Name the copaxone with mitoxantrone of no and betaseron (beta-1b) of no", "context": "CREATE TABLE table_name_13 (copaxone VARCHAR, mitoxantrone VARCHAR, betaseron__beta_1b_ VARCHAR)"}, {"answer": "SELECT test_career FROM table_name_46 WHERE tests > 41 AND catches > 33 AND total_dismissals = 147", "question": "Who has a career that has test larger than 41, catches over 33, and a total dismissals rate of 147?", "context": "CREATE TABLE table_name_46 (test_career VARCHAR, total_dismissals VARCHAR, tests VARCHAR, catches VARCHAR)"}, {"answer": "SELECT AVG(total_dismissals) FROM table_name_5 WHERE tests = 83 AND catches < 33", "question": "What is the average dismissals of 83 test and catches less than 33?", "context": "CREATE TABLE table_name_5 (total_dismissals INTEGER, tests VARCHAR, catches VARCHAR)"}, {"answer": "SELECT winner FROM table_name_72 WHERE points_classification = \"tony rominger\" AND stage = \"17\"", "question": "Which winner has a points classification of Tony Rominger at stage 17?", "context": "CREATE TABLE table_name_72 (winner VARCHAR, points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_93 WHERE mountains_classification = \"mariano piccoli\" AND points_classification = \"mario cipollini\" AND winner = \"laudelino cubino\"", "question": "Which stage has a mountains classification of Mariano Piccoli, a points classification of Mario Cipollini and was won by Laudelino Cubino?", "context": "CREATE TABLE table_name_93 (stage VARCHAR, winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT winner FROM table_name_87 WHERE stage = \"16\"", "question": "Who won stage 16?", "context": "CREATE TABLE table_name_87 (winner VARCHAR, stage VARCHAR)"}, {"answer": "SELECT mountains_classification FROM table_name_70 WHERE general_classification = \"tony rominger\" AND winner = \"maurizio fondriest\"", "question": "Which mountains classification has a general classification of Tony Rominger and was won by Maurizio Fondriest?", "context": "CREATE TABLE table_name_70 (mountains_classification VARCHAR, general_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_59 WHERE points_classification = \"tony rominger\" AND stage = \"18\"", "question": "What is the general classification at stage 18 that has a points classification of Tony Rominger?", "context": "CREATE TABLE table_name_59 (general_classification VARCHAR, points_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_5 WHERE mountains_classification = \"mariano piccoli\" AND winner = \"giuseppe citterio\"", "question": "Which stage has a mountains classification of Mariano Piccoli and was won by Giuseppe Citterio?", "context": "CREATE TABLE table_name_5 (stage VARCHAR, mountains_classification VARCHAR, winner VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_6 WHERE member = \"john armitage\"", "question": "What is the year First elected when the Member is John Armitage?", "context": "CREATE TABLE table_name_6 (first_elected VARCHAR, member VARCHAR)"}, {"answer": "SELECT electorate FROM table_name_16 WHERE first_elected = \"1974\" AND party = \"country\"", "question": "Who is the Electorate, when the year for First elected is 1974, and when the Party is Country?", "context": "CREATE TABLE table_name_16 (electorate VARCHAR, first_elected VARCHAR, party VARCHAR)"}, {"answer": "SELECT member FROM table_name_66 WHERE party = \"alp\" AND electorate = \"grey\"", "question": "Who is the Member when the Party is Alp, and when the Electorate is Grey?", "context": "CREATE TABLE table_name_66 (member VARCHAR, party VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT state FROM table_name_13 WHERE first_elected = \"1966\" AND member = \"alan jarman\"", "question": "What is the State, when the year First elected is 1966, and when the Member is Alan Jarman?", "context": "CREATE TABLE table_name_13 (state VARCHAR, first_elected VARCHAR, member VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_17 WHERE party = \"alp\" AND state = \"qld\"", "question": "What is the year First Elected, when the Party is Alp, and when the State is qld?", "context": "CREATE TABLE table_name_17 (first_elected VARCHAR, party VARCHAR, state VARCHAR)"}, {"answer": "SELECT first_elected FROM table_name_21 WHERE state = \"vic\" AND member = \"hon don chipp\"", "question": "What is the year First elected, when the State is vic, and when the Member is Hon Don Chipp?", "context": "CREATE TABLE table_name_21 (first_elected VARCHAR, state VARCHAR, member VARCHAR)"}, {"answer": "SELECT COUNT(starts) FROM table_name_18 WHERE wins > 2 AND money_list_rank > 1", "question": "Which total number of starts has more than 2 wins and a money list rank greater than 1?", "context": "CREATE TABLE table_name_18 (starts VARCHAR, wins VARCHAR, money_list_rank VARCHAR)"}, {"answer": "SELECT SUM(top_10) FROM table_name_98 WHERE wins > 2 AND top_25 < 16", "question": "What is the sum of Top 10 performances that have more than 2 wins and is higher than number 16 in the Top 25?", "context": "CREATE TABLE table_name_98 (top_10 INTEGER, wins VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MAX(money_list_rank) FROM table_name_44 WHERE top_25 < 2", "question": "What is the greatest money list ranking that has a Top 25 higher than 2?", "context": "CREATE TABLE table_name_44 (money_list_rank INTEGER, top_25 INTEGER)"}, {"answer": "SELECT away_team FROM table_name_68 WHERE attendance = \"3,395\"", "question": "What Away team had an Attendance of 3,395?", "context": "CREATE TABLE table_name_68 (away_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT home_team FROM table_name_12 WHERE attendance = \"2,776\"", "question": "What Home team had an Attendance of 2,776?", "context": "CREATE TABLE table_name_12 (home_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT engine FROM table_name_71 WHERE points > 1 AND year > 1981", "question": "Which engine has more than 1 point after 1981?", "context": "CREATE TABLE table_name_71 (engine VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_99 WHERE entrant = \"marlboro team alfa romeo\" AND chassis = \"alfa romeo 179\"", "question": "Which engine did Marlboro Team Alfa Romeo used with a chassis of alfa romeo 179?", "context": "CREATE TABLE table_name_99 (engine VARCHAR, entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT date FROM table_name_63 WHERE surface = \"road\" AND event = \"half marathon\"", "question": "When has a surface of road and an event of half marathon?", "context": "CREATE TABLE table_name_63 (date VARCHAR, surface VARCHAR, event VARCHAR)"}, {"answer": "SELECT surface FROM table_name_54 WHERE place = \"lappeenranta\"", "question": "Which Surface has a Place of lappeenranta?", "context": "CREATE TABLE table_name_54 (surface VARCHAR, place VARCHAR)"}, {"answer": "SELECT class AS pos FROM table_name_79 WHERE laps < 304 AND year > 2001", "question": "Which Class Pos have Laps smaller than 304, and a Year after 2001?", "context": "CREATE TABLE table_name_79 (class VARCHAR, laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_4 WHERE year > 2002 AND co_drivers = \"alexander frei bruno besson\"", "question": "What is the lowest Laps that has a Year after 2002 with Alexander Frei Bruno Besson?", "context": "CREATE TABLE table_name_4 (laps INTEGER, year VARCHAR, co_drivers VARCHAR)"}, {"answer": "SELECT crowd FROM table_name_15 WHERE score = \"w 7-6\"", "question": "How many people attended the score of w 7-6?", "context": "CREATE TABLE table_name_15 (crowd VARCHAR, score VARCHAR)"}, {"answer": "SELECT loss FROM table_name_25 WHERE score = \"w 4-3\"", "question": "Who lost that has a score of w 4-3?", "context": "CREATE TABLE table_name_25 (loss VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE loss = \"schrom\"", "question": "Loss of schrom happened on what date?", "context": "CREATE TABLE table_name_39 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE opponent = \"@mil\" AND record = \"45-16\"", "question": "Opponent of @mil, and a Record of 45-16 happened on what date?", "context": "CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_52 WHERE loss = \"willis\"", "question": "Loss of willis has what record?", "context": "CREATE TABLE table_name_52 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_95 WHERE loss = \"wilcox\" AND date = \"jun 18\"", "question": "Loss of wilcox, and a Date of jun 18 had what opponent?", "context": "CREATE TABLE table_name_95 (opponent VARCHAR, loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_64 WHERE score = 74 - 74 - 74 - 71 = 293", "question": "Name the to par for score of 74-74-74-71=293", "context": "CREATE TABLE table_name_64 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT player FROM table_name_69 WHERE score = 68 - 68 - 75 - 74 = 285", "question": "Name the player for 68-68-75-74=285", "context": "CREATE TABLE table_name_69 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_39 WHERE player = \"gene kunes\"", "question": "Name the to par for gene kunes", "context": "CREATE TABLE table_name_39 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_68 WHERE year < 1955", "question": "What is the average Points for a year before 1955?", "context": "CREATE TABLE table_name_68 (points INTEGER, year INTEGER)"}, {"answer": "SELECT SUM(year) FROM table_name_4 WHERE team = \"scuderia ferrari\" AND engine = \"ferrari 106 2.5 l4\" AND points > 12", "question": "What is the total year with a Team of scuderia ferrari, an Engine of ferrari 106 2.5 l4, and more than 12 points?", "context": "CREATE TABLE table_name_4 (year INTEGER, points VARCHAR, team VARCHAR, engine VARCHAR)"}, {"answer": "SELECT COUNT(wins) FROM table_name_13 WHERE podiums > 1 AND races = 9 AND season > 1984", "question": "How many wins has a podiums greater than 1 and 9 as the races with a season after 1984?", "context": "CREATE TABLE table_name_13 (wins VARCHAR, season VARCHAR, podiums VARCHAR, races VARCHAR)"}, {"answer": "SELECT MAX(podiums) FROM table_name_31 WHERE wins = 0 AND season > 1985", "question": "What is the highest Podiums with 0 as wins, and a season later than 1985?", "context": "CREATE TABLE table_name_31 (podiums INTEGER, wins VARCHAR, season VARCHAR)"}, {"answer": "SELECT budget FROM table_name_39 WHERE month_ & _year = \"march 2013\"", "question": "What was the Top Gear budget in March 2013?", "context": "CREATE TABLE table_name_39 (budget VARCHAR, month_ VARCHAR, _year VARCHAR)"}, {"answer": "SELECT episode FROM table_name_35 WHERE budget = \"\u00a37,000\"", "question": "Which episode of Top Gear had a budget of \u00a37,000?", "context": "CREATE TABLE table_name_35 (episode VARCHAR, budget VARCHAR)"}, {"answer": "SELECT month_ & _year FROM table_name_18 WHERE title = \"bolivia special\"", "question": "Which month and year held the Bolivia Special title?", "context": "CREATE TABLE table_name_18 (month_ VARCHAR, _year VARCHAR, title VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_8 WHERE position = \"right wing\"", "question": "Which team has a right wing position listed?", "context": "CREATE TABLE table_name_8 (college_junior_club_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_51 WHERE nationality = \"canada\" AND nhl_team = \"boston bruins\"", "question": "What position is the player that is from Canada and on the Boston Bruins", "context": "CREATE TABLE table_name_51 (position VARCHAR, nationality VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT position FROM table_name_92 WHERE nhl_team = \"los angeles kings\"", "question": "What is the position of the player on the Los Angeles Kings?", "context": "CREATE TABLE table_name_92 (position VARCHAR, nhl_team VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_13 WHERE pick__number = \"64\"", "question": "Which team has the # 64 pick?", "context": "CREATE TABLE table_name_13 (college_junior_club_team VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_72 WHERE pick__number = \"63\"", "question": "What nationality is the #63 pick?", "context": "CREATE TABLE table_name_72 (nationality VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT player FROM table_name_51 WHERE pick__number = \"69\"", "question": "What is the name of the player that is pick #69?", "context": "CREATE TABLE table_name_51 (player VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT tyres FROM table_name_56 WHERE points = 8", "question": "Which tyres received 8 points?", "context": "CREATE TABLE table_name_56 (tyres VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_86 WHERE engine_s_ = \"ford dfz 3.5 v8\"", "question": "How many points were awarded to the Ford DFZ 3.5 V8?", "context": "CREATE TABLE table_name_86 (points INTEGER, engine_s_ VARCHAR)"}, {"answer": "SELECT engine_s_ FROM table_name_44 WHERE points = 0 AND year = 1988", "question": "Which engine received 0 points in 1988?", "context": "CREATE TABLE table_name_44 (engine_s_ VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT issue_date FROM table_name_89 WHERE download = \"no available\" AND artist = \"eric prydz\"", "question": "What's the Issue Date for an Eric Prydz song with a no available Download information?", "context": "CREATE TABLE table_name_89 (issue_date VARCHAR, download VARCHAR, artist VARCHAR)"}, {"answer": "SELECT download FROM table_name_45 WHERE week = 44", "question": "What's the Download information for the song from Week 44?", "context": "CREATE TABLE table_name_45 (download VARCHAR, week VARCHAR)"}, {"answer": "SELECT title FROM table_name_5 WHERE download = \"crazy frog\" AND issue_date = \"july 2\"", "question": "What is the title of the July 2 song that is downloaded as Crazy Frog?", "context": "CREATE TABLE table_name_5 (title VARCHAR, download VARCHAR, issue_date VARCHAR)"}, {"answer": "SELECT division_record FROM table_name_78 WHERE school = \"woodbridge\"", "question": "What is the division record for Woodbridge?", "context": "CREATE TABLE table_name_78 (division_record VARCHAR, school VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_96 WHERE year = \"2004\"", "question": "Who was the runner-up in 2004?", "context": "CREATE TABLE table_name_96 (runner_up VARCHAR, year VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_name_41 WHERE venue = \"pardubice\"", "question": "Who was the 3rd place team at Pardubice?", "context": "CREATE TABLE table_name_41 (venue VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_95 WHERE country = \"denmark\"", "question": "Name the To par for denmark", "context": "CREATE TABLE table_name_95 (to_par VARCHAR, country VARCHAR)"}, {"answer": "SELECT place FROM table_name_43 WHERE player = \"pat perez\"", "question": "Nam ethe place for pat perez", "context": "CREATE TABLE table_name_43 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_16 WHERE player = \"vijay singh\"", "question": "Name the country vijay singh is from", "context": "CREATE TABLE table_name_16 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_31 WHERE frequency_mhz < 106.5 AND call_sign = \"w218ck\"", "question": "Which city has frequency under 106.5MHz and a callsign of w218ck?", "context": "CREATE TABLE table_name_31 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT class FROM table_name_20 WHERE city_of_license = \"richmond, virginia\"", "question": "Which class has a city of Richmond, Virginia?", "context": "CREATE TABLE table_name_20 (class VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_18 WHERE frequency_mhz = 91.3", "question": "What is the ERP W for the frequency of 91.3MHz?", "context": "CREATE TABLE table_name_18 (erp_w VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_41 WHERE frequency_mhz > 98.5 AND erp_w < 155", "question": "Which call sign has a frequency greater than 98.5MHz and ERP W under 155?", "context": "CREATE TABLE table_name_41 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT MIN(tracks) FROM table_name_26 WHERE length = \"18:36\"", "question": "Which tracks have a length of 18:36?", "context": "CREATE TABLE table_name_26 (tracks INTEGER, length VARCHAR)"}, {"answer": "SELECT length FROM table_name_13 WHERE disc = \"67\"", "question": "What is the length of disc 67?", "context": "CREATE TABLE table_name_13 (length VARCHAR, disc VARCHAR)"}, {"answer": "SELECT points FROM table_name_68 WHERE year > 1950 AND engine = \"maserati straight-6\"", "question": "What points larger than 1950 has a maserati straight-6 engine?", "context": "CREATE TABLE table_name_68 (points VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_92 WHERE entrant = \"officine alfieri maserati\" AND year = 1952", "question": "What is the chassis for a 1952 officine alfieri maserati with an entrant?", "context": "CREATE TABLE table_name_92 (chassis VARCHAR, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_44 WHERE year = 1951 AND chassis = \"alfa romeo 159m\"", "question": "What type of engine does a 1951 alfa romeo 159m chasis have?", "context": "CREATE TABLE table_name_44 (engine VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_29 WHERE engine = \"maserati straight-6\" AND year = 1952", "question": "What Entrant has a 1952 maserati straight-6 engine?", "context": "CREATE TABLE table_name_29 (entrant VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_82 WHERE year > 1950 AND points < 7", "question": "What Entrant older than 1950 has points smaller than 7?", "context": "CREATE TABLE table_name_82 (entrant VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_70 WHERE entrant = \"alfa romeo spa\" AND year < 1951", "question": "What is the total points that an 1951 Entrant alfa romeo spa have?", "context": "CREATE TABLE table_name_70 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT co_driver FROM table_name_51 WHERE laps > 32 AND year = 1999", "question": "Who is the co-driver in 1999 with more than 32 laps?", "context": "CREATE TABLE table_name_51 (co_driver VARCHAR, laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_77 WHERE fastest_lap = \"mark webber\" AND grand_prix = \"malaysian grand prix\"", "question": "Name the winning constructor for when the fastest lap was mark webber at the malaysian grand prix", "context": "CREATE TABLE table_name_77 (winning_constructor VARCHAR, fastest_lap VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT winning_constructor FROM table_name_22 WHERE grand_prix = \"abu dhabi grand prix\"", "question": "Name the winning constructor for abu dhabi grand prix", "context": "CREATE TABLE table_name_22 (winning_constructor VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_75 WHERE grand_prix = \"belgian grand prix\"", "question": "Name the pole position for belgian grand prix", "context": "CREATE TABLE table_name_75 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_28 WHERE grand_prix = \"korean grand prix\"", "question": "Name the pole positon for korean grand prix", "context": "CREATE TABLE table_name_28 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT pole_position FROM table_name_3 WHERE grand_prix = \"german grand prix\"", "question": "Name the pole position at the german grand prix", "context": "CREATE TABLE table_name_3 (pole_position VARCHAR, grand_prix VARCHAR)"}, {"answer": "SELECT code FROM table_name_21 WHERE currency = \"latvian lats\"", "question": "What is the code for Latvian Lats?", "context": "CREATE TABLE table_name_21 (code VARCHAR, currency VARCHAR)"}, {"answer": "SELECT currency FROM table_name_45 WHERE central_rate = \"3.45280\"", "question": "Which currency has a central rate of 3.45280?", "context": "CREATE TABLE table_name_45 (currency VARCHAR, central_rate VARCHAR)"}, {"answer": "SELECT currency FROM table_name_12 WHERE central_rate = \"0.702804\"", "question": "Which currency has a central rate of 0.702804?", "context": "CREATE TABLE table_name_12 (currency VARCHAR, central_rate VARCHAR)"}, {"answer": "SELECT entry_erm_ii FROM table_name_56 WHERE currency = \"hungarian forint\"", "question": "What is the entry ERM II for the Hungarian Forint?", "context": "CREATE TABLE table_name_56 (entry_erm_ii VARCHAR, currency VARCHAR)"}, {"answer": "SELECT official_target_date FROM table_name_34 WHERE currency = \"swedish krona\"", "question": "What is the official target date for the Swedish Krona?", "context": "CREATE TABLE table_name_34 (official_target_date VARCHAR, currency VARCHAR)"}, {"answer": "SELECT winner FROM table_name_8 WHERE event = \"ept german open\"", "question": "The EPT German open was won by which listed winner?", "context": "CREATE TABLE table_name_8 (winner VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_72 WHERE winner = \"will fry\"", "question": "What event did Will Fry win?", "context": "CREATE TABLE table_name_72 (event VARCHAR, winner VARCHAR)"}, {"answer": "SELECT city FROM table_name_25 WHERE event = \"ept german open\"", "question": "The EPT German Open took place in what city?", "context": "CREATE TABLE table_name_25 (city VARCHAR, event VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE city = \"copenhagen\"", "question": "When did an event take place in the City of Copenhagen?", "context": "CREATE TABLE table_name_58 (date VARCHAR, city VARCHAR)"}, {"answer": "SELECT city FROM table_name_56 WHERE prize = \"\u00a31,000,000\"", "question": "The prize of \u00a31,000,000 was given by an event in what city?", "context": "CREATE TABLE table_name_56 (city VARCHAR, prize VARCHAR)"}, {"answer": "SELECT event FROM table_name_93 WHERE winner = \"jo\u00e3o barbosa\"", "question": "Jo\u00e3o Barbosa was the winner of which event?", "context": "CREATE TABLE table_name_93 (event VARCHAR, winner VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_80 WHERE opponent = \"st. johnstone\" AND venue = \"home\"", "question": "What was the Attendance during the Home game where St. Johnstone was the Opponent?", "context": "CREATE TABLE table_name_80 (attendance VARCHAR, opponent VARCHAR, venue VARCHAR)"}, {"answer": "SELECT class FROM table_name_36 WHERE year = 1968", "question": "Which class has a Year of 1968?", "context": "CREATE TABLE table_name_36 (class VARCHAR, year VARCHAR)"}, {"answer": "SELECT class FROM table_name_34 WHERE team = \"kouros racing team\"", "question": "Which class has a Team of kouros racing team?", "context": "CREATE TABLE table_name_34 (class VARCHAR, team VARCHAR)"}, {"answer": "SELECT winner FROM table_name_33 WHERE loser = \"baltimore colts\" AND location = \"schaefer stadium\" AND result = \"42-3\"", "question": "Who is the Winner, when the Loser is the Baltimore Colts, when the Location is Schaefer Stadium, and when the Result is 42-3?", "context": "CREATE TABLE table_name_33 (winner VARCHAR, result VARCHAR, loser VARCHAR, location VARCHAR)"}, {"answer": "SELECT location FROM table_name_90 WHERE winner = \"baltimore colts\" AND year < 1972 AND result = \"14-6\"", "question": "What is the Location, when the Winner is the Baltimore Colts, when the Year is before 1972, and when the Result is 14-6?", "context": "CREATE TABLE table_name_90 (location VARCHAR, result VARCHAR, winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_46 WHERE year > 1978 AND location = \"memorial stadium (baltimore)\"", "question": "What is the Date, when the Year is after 1978, and when the Location is Memorial Stadium (Baltimore)?", "context": "CREATE TABLE table_name_46 (date VARCHAR, year VARCHAR, location VARCHAR)"}, {"answer": "SELECT engine FROM table_name_24 WHERE chassis = \"lotus 44 f2\"", "question": "Which engine has a Chassis of lotus 44 f2?", "context": "CREATE TABLE table_name_24 (engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_24 WHERE year = 1969", "question": "What entrant appeared in 1969?", "context": "CREATE TABLE table_name_24 (entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_7 WHERE year > 1969", "question": "Which engine has a Year larger than 1969?", "context": "CREATE TABLE table_name_7 (engine VARCHAR, year INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_name_79 WHERE entrant = \"ron harris / team lotus\"", "question": "What is the largest year with an Entrant of ron harris / team lotus?", "context": "CREATE TABLE table_name_79 (year INTEGER, entrant VARCHAR)"}, {"answer": "SELECT intergiro_classification FROM table_name_22 WHERE stage = \"21\"", "question": "During stage 21, who held the Intergiro classification?", "context": "CREATE TABLE table_name_22 (intergiro_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT stage FROM table_name_35 WHERE trofeo_fast_team = \"gatorade\"", "question": "During which stage was gatorade the Trofeo Fast Team?", "context": "CREATE TABLE table_name_35 (stage VARCHAR, trofeo_fast_team VARCHAR)"}, {"answer": "SELECT intergiro_classification FROM table_name_29 WHERE trofeo_fast_team = \"gb-mg maglificio\"", "question": "Who held the Intergiro classificaiton when the Trofeo Fast Team is gb-mg maglificio?", "context": "CREATE TABLE table_name_29 (intergiro_classification VARCHAR, trofeo_fast_team VARCHAR)"}, {"answer": "SELECT stage FROM table_name_76 WHERE intergiro_classification = \"miguel indurain\" AND points_classification = \"mario cipollini\" AND young_rider_classification = \"leonardo sierra\"", "question": "During which stage was the Intergiro classification held by Miguel Indurain, the Points classification held by Mario Cipollini, and the Young rider classification held by Leonardo Sierra?", "context": "CREATE TABLE table_name_76 (stage VARCHAR, young_rider_classification VARCHAR, intergiro_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT winner FROM table_name_10 WHERE general_classification = \"miguel indurain\" AND points_classification = \"mario cipollini\" AND mountains_classification = \"claudio chiappucci\" AND young_rider_classification = \"pavel tonkov\"", "question": "Who was the winner when the General classification was held by Miguel Indurain, the Points classification held by Mario Cipollini, the Mountains classification held by Claudio Chiappucci, and the Young RIder classification held by Pavel Tonkov?", "context": "CREATE TABLE table_name_10 (winner VARCHAR, young_rider_classification VARCHAR, mountains_classification VARCHAR, general_classification VARCHAR, points_classification VARCHAR)"}, {"answer": "SELECT goals_against FROM table_name_75 WHERE minutes = 2520", "question": "What is the goals against for the goalkeeper with 2520 minutes?", "context": "CREATE TABLE table_name_75 (goals_against VARCHAR, minutes VARCHAR)"}, {"answer": "SELECT AVG(games_played) FROM table_name_5 WHERE loses = 10 AND player = \"bo oshoniyi\" AND minutes > 1170", "question": "What is the average Games Played for Bo Oshoniyi, who had more than 1170 minutes and 10 loses?", "context": "CREATE TABLE table_name_5 (games_played INTEGER, minutes VARCHAR, loses VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(goals_against) FROM table_name_96 WHERE club = \"dallas burn\" AND ga_average > 1.46", "question": "What is the highest goals against the goalkeeper of Dallas Burn, who had a GA average larger than 1.46, had?", "context": "CREATE TABLE table_name_96 (goals_against INTEGER, club VARCHAR, ga_average VARCHAR)"}, {"answer": "SELECT MIN(loses) FROM table_name_54 WHERE minutes > 2776", "question": "What is the lowest number of losses a goalkeeper with more than 2776 minutes had?", "context": "CREATE TABLE table_name_54 (loses INTEGER, minutes INTEGER)"}, {"answer": "SELECT MIN(minutes) FROM table_name_25 WHERE games_played = 13", "question": "What is the lowest minutes a goalkeeper with 13 games played has?", "context": "CREATE TABLE table_name_25 (minutes INTEGER, games_played VARCHAR)"}, {"answer": "SELECT round FROM table_name_67 WHERE score = \"10-52\"", "question": "Which round resulted in 10-52?", "context": "CREATE TABLE table_name_67 (round VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_68 WHERE opponent = \"melbourne storm\" AND round = \"rd 7, 2006\"", "question": "What venue did Melbourne Storm played in Rd 7, 2006?", "context": "CREATE TABLE table_name_68 (venue VARCHAR, opponent VARCHAR, round VARCHAR)"}, {"answer": "SELECT venue FROM table_name_67 WHERE result = \"draw\"", "question": "In which venue was the result a draw?", "context": "CREATE TABLE table_name_67 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT school_colors FROM table_name_48 WHERE founded = 1969 AND institution = \"barton community college\"", "question": "Which School Colors were Founded of 1969, with an Institution of barton community college?", "context": "CREATE TABLE table_name_48 (school_colors VARCHAR, founded VARCHAR, institution VARCHAR)"}, {"answer": "SELECT institution FROM table_name_43 WHERE mascot = \"broncbusters\"", "question": "Which Institution has a Mascot of broncbusters?", "context": "CREATE TABLE table_name_43 (institution VARCHAR, mascot VARCHAR)"}, {"answer": "SELECT MAX(founded) FROM table_name_67 WHERE institution = \"cloud county community college\"", "question": "What is the largest Founded with an Institution of cloud county community college?", "context": "CREATE TABLE table_name_67 (founded INTEGER, institution VARCHAR)"}, {"answer": "SELECT COUNT(founded) FROM table_name_29 WHERE main_campus_location = \"liberal\"", "question": "What is the total Founded with a Main Campus Location of liberal?", "context": "CREATE TABLE table_name_29 (founded VARCHAR, main_campus_location VARCHAR)"}, {"answer": "SELECT \"2\" AS _person_dive FROM table_name_86 WHERE surface = \"2\"", "question": "What is the 2-person dive that has 2 as the surface?", "context": "CREATE TABLE table_name_86 (surface VARCHAR)"}, {"answer": "SELECT surface FROM table_name_5 WHERE cage_dive = \"2\"", "question": "What surface has 2 as a cage dive?", "context": "CREATE TABLE table_name_5 (surface VARCHAR, cage_dive VARCHAR)"}, {"answer": "SELECT 3 AS _person_dive FROM table_name_29 WHERE remote_camera = \"0\"", "question": "Which 3-person dive has 0 as a remote camera?", "context": "CREATE TABLE table_name_29 (remote_camera VARCHAR)"}, {"answer": "SELECT years FROM table_name_97 WHERE decile < 2 AND area = \"mohaka\"", "question": "Which years have a Decile smaller than 2, and an Area of mohaka?", "context": "CREATE TABLE table_name_97 (years VARCHAR, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT gender FROM table_name_76 WHERE authority = \"state\" AND years = \"1\u20138\" AND decile < 10 AND roll = 36", "question": "Which gender has an Authority of state, Years of 1\u20138, and a Decile smaller than 10, and a Roll of 36?", "context": "CREATE TABLE table_name_76 (gender VARCHAR, roll VARCHAR, decile VARCHAR, authority VARCHAR, years VARCHAR)"}, {"answer": "SELECT roll FROM table_name_2 WHERE area = \"mahia\"", "question": "Which roll has an Area of mahia?", "context": "CREATE TABLE table_name_2 (roll VARCHAR, area VARCHAR)"}, {"answer": "SELECT decile FROM table_name_34 WHERE authority = \"state\" AND roll < 61 AND area = \"kotemaori\"", "question": "Which Decile has an Authority of state, a Roll smaller than 61, and an Area of kotemaori?", "context": "CREATE TABLE table_name_34 (decile VARCHAR, area VARCHAR, authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT MAX(league) AS Cup FROM table_name_95 WHERE fa_cup > 2", "question": "What's the highest League Cup with an FA Cup thats larger than 2?", "context": "CREATE TABLE table_name_95 (league INTEGER, fa_cup INTEGER)"}, {"answer": "SELECT COUNT(fa_cup) FROM table_name_64 WHERE play_offs = 3 AND name = \"mitch cook category:articles with hcards\" AND total < 11", "question": "What's the total number of FA Cup with a Play-offs of 3, and the Name of Mitch Cook Category:Articles with hCards and has a Total thats less than 11?", "context": "CREATE TABLE table_name_64 (fa_cup VARCHAR, total VARCHAR, play_offs VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(fa_cup) FROM table_name_50 WHERE league < 29 AND play_offs < 0", "question": "What's the total of number of FA Cup that has a League small than 29 with Play-offs less than 0?", "context": "CREATE TABLE table_name_50 (fa_cup VARCHAR, league VARCHAR, play_offs VARCHAR)"}, {"answer": "SELECT MIN(play_offs) FROM table_name_48 WHERE league = 4 AND fa_cup > 1", "question": "What's the lowest Play-offs with a League of 4 and FA Cup larger than 1?", "context": "CREATE TABLE table_name_48 (play_offs INTEGER, league VARCHAR, fa_cup VARCHAR)"}, {"answer": "SELECT COUNT(league) AS Cup FROM table_name_8 WHERE play_offs > 2 AND name = \"mitch cook category:articles with hcards\"", "question": "What's the total number of League Cup with a Play-off larger than 2, and a Name of Mitch Cook Category:Articles with hCards?", "context": "CREATE TABLE table_name_8 (league VARCHAR, play_offs VARCHAR, name VARCHAR)"}, {"answer": "SELECT AVG(channel_4_weekly_rank_a) FROM table_name_20 WHERE viewers__millions_ < 2.19 AND airdate = \"december 7, 2007\"", "question": "What is the average Channel 4 weekly rank for less than 2.19 million viewers on December 7, 2007?", "context": "CREATE TABLE table_name_20 (channel_4_weekly_rank_a INTEGER, viewers__millions_ VARCHAR, airdate VARCHAR)"}, {"answer": "SELECT COUNT(viewers__millions_) FROM table_name_94 WHERE airdate = \"october 10, 2008\" AND channel_4_weekly_rank_a < 30", "question": "What is the number of viewers in millions for the episode on October 10, 2008, and a Channel 4 weekly rank a smaller than 30?", "context": "CREATE TABLE table_name_94 (viewers__millions_ VARCHAR, airdate VARCHAR, channel_4_weekly_rank_a VARCHAR)"}, {"answer": "SELECT duration FROM table_name_61 WHERE end_time = \"21:06\"", "question": "What is the duration of the flight with end time of 21:06?", "context": "CREATE TABLE table_name_61 (duration VARCHAR, end_time VARCHAR)"}, {"answer": "SELECT spacecraft FROM table_name_70 WHERE end_time = \"4 september 04:51\"", "question": "What is the spacecraft with end time of 4 September 04:51?", "context": "CREATE TABLE table_name_70 (spacecraft VARCHAR, end_time VARCHAR)"}, {"answer": "SELECT crew FROM table_name_73 WHERE end_time = \"21:11\"", "question": "What is the crew with the end time of 21:11?", "context": "CREATE TABLE table_name_73 (crew VARCHAR, end_time VARCHAR)"}, {"answer": "SELECT duration FROM table_name_40 WHERE spacecraft = \"expedition 20 iss zvezda\"", "question": "What is the duration of the Expedition 20 ISS Zvezda?", "context": "CREATE TABLE table_name_40 (duration VARCHAR, spacecraft VARCHAR)"}, {"answer": "SELECT crew FROM table_name_4 WHERE duration = \"12 minutes\"", "question": "Who was the crew for the duration of 12 minutes?", "context": "CREATE TABLE table_name_4 (crew VARCHAR, duration VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_49 WHERE entrant = \"connaught engineering\" AND points < 0", "question": "Name the sum of year for connaught engineering and points less than 0", "context": "CREATE TABLE table_name_49 (year INTEGER, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(win__percentage) FROM table_name_76 WHERE gb_[d_] = \"5\"", "question": "What is the average win percentage of a season with a GB of 5?", "context": "CREATE TABLE table_name_76 (win__percentage INTEGER, gb_ VARCHAR, d_ VARCHAR)"}, {"answer": "SELECT start FROM table_name_49 WHERE laps > 200", "question": "What was the starting position of Joie Chitwood when he finished more than 200 laps?", "context": "CREATE TABLE table_name_49 (start VARCHAR, laps INTEGER)"}, {"answer": "SELECT MIN(laps) FROM table_name_72 WHERE qual = \"124.619\"", "question": "What is Chitwood's lowest completed number of laps with a qualifying time of 124.619?", "context": "CREATE TABLE table_name_72 (laps INTEGER, qual VARCHAR)"}, {"answer": "SELECT venue FROM table_name_10 WHERE date = \"12 september 1998\"", "question": "Which venue was used on 12 September 1998?", "context": "CREATE TABLE table_name_10 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_[a_] FROM table_name_39 WHERE venue = \"vanuatu (n)\" AND date = \"5 september 1998\"", "question": "What is the score [A] of the match at Vanuatu (n) on 5 September 1998?", "context": "CREATE TABLE table_name_39 (score_ VARCHAR, a_ VARCHAR, venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT score_[a_] FROM table_name_49 WHERE date = \"19 september 1998\"", "question": "What is the score [A] of the match on 19 September 1998?", "context": "CREATE TABLE table_name_49 (score_ VARCHAR, a_ VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_40 WHERE record = \"32\u201319\u20137\"", "question": "What was the score of the game when the record was 32\u201319\u20137?", "context": "CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE record = \"9\u20135\u20132\"", "question": "What was the date of the game when the record was 9\u20135\u20132?", "context": "CREATE TABLE table_name_78 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_23 WHERE record = \"36\u201321\u20138\"", "question": "Who was the home team when the record was 36\u201321\u20138?", "context": "CREATE TABLE table_name_23 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE visitor = \"calgary flames\" AND record = \"1\u20132\u20130\"", "question": "What was the date of the game when the Calgary Flames were the visiting team and there was a record of 1\u20132\u20130?", "context": "CREATE TABLE table_name_17 (date VARCHAR, visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT home FROM table_name_15 WHERE record = \"27\u201314\u20136\"", "question": "Who was the home team when the record was 27\u201314\u20136?", "context": "CREATE TABLE table_name_15 (home VARCHAR, record VARCHAR)"}, {"answer": "SELECT lifespan FROM table_name_28 WHERE state = \"pennsylvania\" AND representative = \"harry p. o'neill\"", "question": "What was the lifespan of Representative Harry P. O'neill from the state of Pennsylvania?", "context": "CREATE TABLE table_name_28 (lifespan VARCHAR, state VARCHAR, representative VARCHAR)"}, {"answer": "SELECT years FROM table_name_70 WHERE representative = \"frank a. oliver\"", "question": "What years did Representative Frank A. Oliver serve?", "context": "CREATE TABLE table_name_70 (years VARCHAR, representative VARCHAR)"}, {"answer": "SELECT record FROM table_name_34 WHERE date = \"october 11\"", "question": "Name the record for october 11", "context": "CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_69 WHERE record = \"68-66\"", "question": "Name the score with record of 68-66", "context": "CREATE TABLE table_name_69 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_24 WHERE date = \"august 28\"", "question": "Name the record for august 28", "context": "CREATE TABLE table_name_24 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_63 WHERE player = \"leo diegel\"", "question": "What was the score for Leo Diegel?", "context": "CREATE TABLE table_name_63 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_41 WHERE to_par = \"\u20134\"", "question": "What is the name of the player with a To par of \u20134?", "context": "CREATE TABLE table_name_41 (player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT surface FROM table_name_35 WHERE partner = \"tiya rolle\"", "question": "What was the surface for the game that was played with partner Tiya Rolle?", "context": "CREATE TABLE table_name_35 (surface VARCHAR, partner VARCHAR)"}, {"answer": "SELECT score FROM table_name_22 WHERE partner = \"mashona washington\" AND date = \"january 10, 2011\"", "question": "What is the final score for the game played on January 10, 2011 with partner Mashona Washington?", "context": "CREATE TABLE table_name_22 (score VARCHAR, partner VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_8 WHERE date = \"07-jun-2010\"", "question": "What was the outcome for the game that was played on 07-Jun-2010?", "context": "CREATE TABLE table_name_8 (outcome VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_93 WHERE date = \"29-jun-2009\"", "question": "What is the score for the game that was played on 29-Jun-2009?", "context": "CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_50 WHERE date = \"12-apr-2005\"", "question": "What was the surface for the game that was played on 12-Apr-2005?", "context": "CREATE TABLE table_name_50 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT points FROM table_name_66 WHERE skipper = \"james allen\"", "question": "What points has james allen as the skipper?", "context": "CREATE TABLE table_name_66 (points VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT yacht_name FROM table_name_28 WHERE overall_place = \"12\"", "question": "What is the name of the yacht where 12 is the overall place?", "context": "CREATE TABLE table_name_28 (yacht_name VARCHAR, overall_place VARCHAR)"}, {"answer": "SELECT skipper FROM table_name_17 WHERE combined_elapsed_time = \"174d 01h 11m 59s\"", "question": "Which skipper has a combine elapsed time of 174d 01h 11m 59s?", "context": "CREATE TABLE table_name_17 (skipper VARCHAR, combined_elapsed_time VARCHAR)"}, {"answer": "SELECT skipper FROM table_name_92 WHERE yacht_name = \"barclays adventurer\"", "question": "Which skipper has barclays adventurer as the name of the yacht?", "context": "CREATE TABLE table_name_92 (skipper VARCHAR, yacht_name VARCHAR)"}, {"answer": "SELECT overall_place FROM table_name_47 WHERE combined_elapsed_time = \"170d 11h 31m 10s\"", "question": "What is the overall place that has 170d 11h 31m 10s as the combined elapsed time?", "context": "CREATE TABLE table_name_47 (overall_place VARCHAR, combined_elapsed_time VARCHAR)"}, {"answer": "SELECT senior_status FROM table_name_22 WHERE reason_for_termination = \"death\" AND chief_judge = \"\u2014\"", "question": "What was the senior status for the judge who was terminated because of death, with a Chief Judge entry of \u2014?", "context": "CREATE TABLE table_name_22 (senior_status VARCHAR, reason_for_termination VARCHAR, chief_judge VARCHAR)"}, {"answer": "SELECT location FROM table_name_96 WHERE classification = \"t12\"", "question": "What is the location of Classification of T12?", "context": "CREATE TABLE table_name_96 (location VARCHAR, classification VARCHAR)"}, {"answer": "SELECT fastest_time__s_ FROM table_name_40 WHERE athlete = \"jason smyth\"", "question": "What is the fastest time for athlete Jason Smyth?", "context": "CREATE TABLE table_name_40 (fastest_time__s_ VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT final FROM table_name_34 WHERE no2 = \"alzira ricardo b.\"", "question": "What was the final of play No. 2, Alzira Ricardo B.?", "context": "CREATE TABLE table_name_34 (final VARCHAR, no2 VARCHAR)"}, {"answer": "SELECT no10 FROM table_name_10 WHERE no8 = \"diana\"", "question": "What was the No. 10 team that has No. 8 of Diana?", "context": "CREATE TABLE table_name_10 (no10 VARCHAR, no8 VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_2 WHERE chassis = \"ensign n175\"", "question": "Name the total number of years for chassis of ensign n175", "context": "CREATE TABLE table_name_2 (year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_52 WHERE record = \"52-48\"", "question": "What was the Blue Jays lowest attendance when their record was 52-48?", "context": "CREATE TABLE table_name_52 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT result FROM table_name_73 WHERE home_away = \"home\" AND opponent = \"pride\"", "question": "What is the result when you play at home against Pride", "context": "CREATE TABLE table_name_73 (result VARCHAR, home_away VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT result FROM table_name_10 WHERE field = \"frontier field\"", "question": "What is the result of games played at frontier field", "context": "CREATE TABLE table_name_10 (result VARCHAR, field VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE field = \"hofstra stadium\"", "question": "What days were games played at Hofstra Stadium?", "context": "CREATE TABLE table_name_20 (date VARCHAR, field VARCHAR)"}, {"answer": "SELECT field FROM table_name_99 WHERE home_away = \"away\" AND opponent = \"bayhawks\"", "question": "What Field was played at in an away game against the bayhawks?", "context": "CREATE TABLE table_name_99 (field VARCHAR, home_away VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_59 WHERE date = \"february 18\"", "question": "What is the score of the game played on February 18?", "context": "CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT home FROM table_name_91 WHERE visitor = \"boston bruins\" AND date = \"january 11\"", "question": "Who was the home team that played against the Boston Bruins on January 11?", "context": "CREATE TABLE table_name_91 (home VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(year_born) FROM table_name_14 WHERE current_club = \"olimpija ljubljana\" AND height < 2.04", "question": "Name the sum of year for olimpija ljubljana with height less than 2.04", "context": "CREATE TABLE table_name_14 (year_born INTEGER, current_club VARCHAR, height VARCHAR)"}, {"answer": "SELECT position FROM table_name_10 WHERE height = 2.09", "question": "Name the position with height of 2.09", "context": "CREATE TABLE table_name_10 (position VARCHAR, height VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_64 WHERE record = \"26-35\"", "question": "What was the attendance at the ballpark during the game where the Blue Jays had a record of 26-35 during the 1996 season?", "context": "CREATE TABLE table_name_64 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT nominated_work FROM table_name_94 WHERE award = \"tony award\" AND year = 2009", "question": "What nominated work received a tony award in 2009?", "context": "CREATE TABLE table_name_94 (nominated_work VARCHAR, award VARCHAR, year VARCHAR)"}, {"answer": "SELECT result FROM table_name_38 WHERE year = 2012", "question": "What result in the table is from the year 2012?", "context": "CREATE TABLE table_name_38 (result VARCHAR, year VARCHAR)"}, {"answer": "SELECT 2011 FROM table_name_59 WHERE 2010 = \"2r\"", "question": "Name the 2011 with 2010 of 2r", "context": "CREATE TABLE table_name_59 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_97 WHERE 2011 = \"qf\"", "question": "Name the 2012 when 2011 is qf", "context": "CREATE TABLE table_name_97 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_5 WHERE 2011 = \"1r\"", "question": "Name the 2012 for 2011 being 1r", "context": "CREATE TABLE table_name_5 (Id VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_58 WHERE 2011 = \"qf\"", "question": "Name the 2012 for 2011 being qf", "context": "CREATE TABLE table_name_58 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_37 WHERE 2012 = \"f\"", "question": "Name the 2008 for 2012 f", "context": "CREATE TABLE table_name_37 (Id VARCHAR)"}, {"answer": "SELECT location FROM table_name_47 WHERE date = \"february 29, 2012\"", "question": "What is the location of the match on February 29, 2012?", "context": "CREATE TABLE table_name_47 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE date = \"november 15, 2011\"", "question": "What is the score of the match on November 15, 2011?", "context": "CREATE TABLE table_name_44 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(race) FROM table_name_48 WHERE circuit = \"mallala motor sport park\"", "question": "How many races were in the Mallala Motor Sport Park circuit?", "context": "CREATE TABLE table_name_48 (race VARCHAR, circuit VARCHAR)"}, {"answer": "SELECT MIN(race) FROM table_name_52 WHERE location___state = \"launceston, tasmania\"", "question": "What was the first race in Launceston, Tasmania?", "context": "CREATE TABLE table_name_52 (race INTEGER, location___state VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_90 WHERE team_1 = \"hamburg\"", "question": "Name the 2nd leg for team 1 of hamburg", "context": "CREATE TABLE table_name_90 (team_1 VARCHAR)"}, {"answer": "SELECT role FROM table_name_62 WHERE studio = \"mono\" AND title = \"paradise canyon\"", "question": "Name the role for mono studio and title of paradise canyon", "context": "CREATE TABLE table_name_62 (role VARCHAR, studio VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_89 WHERE leading_lady = \"marion burns\" AND role = \"john mason\"", "question": "Name the title for marion burns leading lady and role of john mason", "context": "CREATE TABLE table_name_89 (title VARCHAR, leading_lady VARCHAR, role VARCHAR)"}, {"answer": "SELECT role FROM table_name_11 WHERE studio = \"rep\" AND leading_lady = \"sheila mannors\" AND title = \"westward ho\"", "question": "Name the role for studio of rep with sheila mannors leading lady and title of westward ho", "context": "CREATE TABLE table_name_11 (role VARCHAR, title VARCHAR, studio VARCHAR, leading_lady VARCHAR)"}, {"answer": "SELECT studio FROM table_name_74 WHERE role = \"john scott\"", "question": "Name the studio for john scott", "context": "CREATE TABLE table_name_74 (studio VARCHAR, role VARCHAR)"}, {"answer": "SELECT SUM(total__000s_) FROM table_name_20 WHERE year = \"1996\"", "question": "What is the amount of 000s from 1996?", "context": "CREATE TABLE table_name_20 (total__000s_ INTEGER, year VARCHAR)"}, {"answer": "SELECT total__000s_ FROM table_name_35 WHERE germany = 16.6", "question": "What was the amount of 000s when Germany had 16.6?", "context": "CREATE TABLE table_name_35 (total__000s_ VARCHAR, germany VARCHAR)"}, {"answer": "SELECT AVG(concacaf) FROM table_name_59 WHERE merconorte > 0 AND player = \"jared borgetti\" AND superliga > 0", "question": "Name the average concacaf for merconorte larger than 0 and player of jared borgetti", "context": "CREATE TABLE table_name_59 (concacaf INTEGER, superliga VARCHAR, merconorte VARCHAR, player VARCHAR)"}, {"answer": "SELECT MIN(merconorte) FROM table_name_92 WHERE interliga = 2 AND matches > 260 AND superliga > 7", "question": "Name the least merconorte for interliga of 2 and matches more than 260 with superliga more than 7", "context": "CREATE TABLE table_name_92 (merconorte INTEGER, superliga VARCHAR, interliga VARCHAR, matches VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_84 WHERE score_in_final = \"5\u20137, 6\u20134, [10\u20137]\"", "question": "What was the outcome for the match that ended in a score of 5\u20137, 6\u20134, [10\u20137]?", "context": "CREATE TABLE table_name_84 (outcome VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_1 WHERE score_in_final = \"5\u20137, 6\u20134, [10\u20137]\"", "question": "What was the surface of the match that ended in a score of 5\u20137, 6\u20134, [10\u20137]?", "context": "CREATE TABLE table_name_1 (surface VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT opponents_in_final FROM table_name_72 WHERE score_in_final = \"w/o\"", "question": "Who were the opponents in the match or matches that ended in a score of W/O?", "context": "CREATE TABLE table_name_72 (opponents_in_final VARCHAR, score_in_final VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_93 WHERE engine = \"maserati straight-6\" AND points > 0 AND year = 1955", "question": "What kind of Chassis supports a Maserati Straight-6 engine with Points greater than 0 and built in the year 1955?", "context": "CREATE TABLE table_name_93 (chassis VARCHAR, year VARCHAR, engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_82 WHERE entrant = \"equipe gordini\"", "question": "What kind of Chassis supports an Equipe Gordini Entrant?", "context": "CREATE TABLE table_name_82 (chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_95 WHERE engine = \"maserati straight-6\" AND year < 1958 AND chassis = \"maserati 250f\" AND points < 4", "question": "What kind of Entrant has a Maserati Straight-6 Engine, built in the year 1958 or early, and has a Maserati 250f Chassis with points less than 4?", "context": "CREATE TABLE table_name_95 (entrant VARCHAR, points VARCHAR, chassis VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_86 WHERE engine = \"maserati straight-4\"", "question": "What is the average year for Maserati Straight-4 Engines?", "context": "CREATE TABLE table_name_86 (year INTEGER, engine VARCHAR)"}, {"answer": "SELECT SUM(erp_w) FROM table_name_56 WHERE class = \"d\" AND frequency_mhz = 98.7", "question": "Name the sum of ERP W for class of d and frequency mhz of 98.7", "context": "CREATE TABLE table_name_56 (erp_w INTEGER, class VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT erp_w FROM table_name_19 WHERE frequency_mhz > 93.3 AND city_of_license = \"washington, georgia\"", "question": "Name the ERP W with a frequency mhz more than 93.3 and city license of washington, georgia", "context": "CREATE TABLE table_name_19 (erp_w VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT record FROM table_name_41 WHERE res = \"loss\" AND event = \"hero's 3\"", "question": "Which record has a result of loss in the Hero's 3 event?", "context": "CREATE TABLE table_name_41 (record VARCHAR, res VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_98 WHERE record = \"4-0\"", "question": "Which event led to a 4-0 record?", "context": "CREATE TABLE table_name_98 (event VARCHAR, record VARCHAR)"}, {"answer": "SELECT location FROM table_name_73 WHERE record = \"10-3\"", "question": "Which location led to a 10-3 record?", "context": "CREATE TABLE table_name_73 (location VARCHAR, record VARCHAR)"}, {"answer": "SELECT record FROM table_name_90 WHERE opponent = \"masahiro oishi\"", "question": "In the match against Masahiro Oishi, what was the record?", "context": "CREATE TABLE table_name_90 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_38 WHERE drawn < 2 AND played > 8", "question": "What is the fewest number of points for clubs with less than 2 draws and more than 8 matches played?", "context": "CREATE TABLE table_name_38 (points INTEGER, drawn VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(drawn) FROM table_name_86 WHERE points = 2 AND lost < 6", "question": "What is the fewest drawn matches for teams with 2 points and fewer than 6 losses?", "context": "CREATE TABLE table_name_86 (drawn INTEGER, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_15 WHERE team = \"quetta zorawar\"", "question": "What is the most number of losses for Quetta Zorawar?", "context": "CREATE TABLE table_name_15 (lost INTEGER, team VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_45 WHERE lost = 2", "question": "What is the sum of the drawn values for teams with 2 losses?", "context": "CREATE TABLE table_name_45 (drawn INTEGER, lost VARCHAR)"}, {"answer": "SELECT round FROM table_name_24 WHERE margin = \"178\"", "question": "which round has a margin of 178?", "context": "CREATE TABLE table_name_24 (round VARCHAR, margin VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_38 WHERE gold < 1 AND rank < 5", "question": "Name the average total for gold less than 1 and rank less than 5", "context": "CREATE TABLE table_name_38 (total INTEGER, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_92 WHERE total > 1 AND bronze = 1 AND gold < 0", "question": "Name the sum of silver when total is mor ethan 1, bronze is 1 and gold is les than 0", "context": "CREATE TABLE table_name_92 (silver INTEGER, gold VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_70 WHERE bronze > 0 AND rank > 5 AND total > 2", "question": "Name the most gold when bronze is more than 0 and rank is more than 5 with total more than 2", "context": "CREATE TABLE table_name_70 (gold INTEGER, total VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_27 WHERE silver > 0 AND total = 6 AND gold > 0", "question": "Name the average bronze with silver more than 0, total of 6 and gold more than 0", "context": "CREATE TABLE table_name_27 (bronze INTEGER, gold VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_10 WHERE gold > 1 AND bronze > 0", "question": "Name the sum of total with gold more than 1 and bronze more than 0", "context": "CREATE TABLE table_name_10 (total INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT country FROM table_name_30 WHERE director_s_ = \"jonas geirnaert\"", "question": "What country did Jonas Geirnaert direct a film in?", "context": "CREATE TABLE table_name_30 (country VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT nominating_festival FROM table_name_35 WHERE country = \"germany\"", "question": "What Nominating Festival took place in Germany?", "context": "CREATE TABLE table_name_35 (nominating_festival VARCHAR, country VARCHAR)"}, {"answer": "SELECT category FROM table_name_30 WHERE country = \"switzerland\"", "question": "What is the category of the film made in Switzerland?", "context": "CREATE TABLE table_name_30 (category VARCHAR, country VARCHAR)"}, {"answer": "SELECT film FROM table_name_80 WHERE director_s_ = \"sandro aguilar\"", "question": "What film was directed by Sandro Aguilar?", "context": "CREATE TABLE table_name_80 (film VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT language FROM table_name_69 WHERE number = \"14\"", "question": "Name the language that has number of 14", "context": "CREATE TABLE table_name_69 (language VARCHAR, number VARCHAR)"}, {"answer": "SELECT number FROM table_name_73 WHERE language = \"other\"", "question": "Name the number which has language of other", "context": "CREATE TABLE table_name_73 (number VARCHAR, language VARCHAR)"}, {"answer": "SELECT AVG(goals_for) FROM table_name_77 WHERE losses = 19 AND goals_against > 59", "question": "Tell me the average goals for losses of 19 and goals against more than 59", "context": "CREATE TABLE table_name_77 (goals_for INTEGER, losses VARCHAR, goals_against VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_4 WHERE goals_against > 42 AND goals_for = 44 AND draws < 16", "question": "Name the average position when the goals against are more than 42 and draws less than 16 with goals of 44", "context": "CREATE TABLE table_name_4 (position INTEGER, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT regular_season FROM table_name_50 WHERE year = 2013", "question": "Which regular season was 2013 in?", "context": "CREATE TABLE table_name_50 (regular_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_15 WHERE playoffs = \"conference semifinals\"", "question": "What year did the team make conference semifinals?", "context": "CREATE TABLE table_name_15 (year VARCHAR, playoffs VARCHAR)"}, {"answer": "SELECT MIN(area__km\u00b2_) FROM table_name_21 WHERE country = \"russia\" AND rank = 23 AND population > 522 OFFSET 800", "question": "What's the smallest area in Russia that is ranked 23 with a population more than 522,800?", "context": "CREATE TABLE table_name_21 (area__km\u00b2_ INTEGER, population VARCHAR, country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT record FROM table_name_32 WHERE date = \"june 8\"", "question": "On the date of June 8 what was the record?", "context": "CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_32 WHERE date = \"june 15\"", "question": "On the date of June 15 what was the score?", "context": "CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_12 WHERE nhl_team = \"toronto maple leafs\" AND nationality = \"united states\"", "question": "What College/junior/club had a player of United States nationality drafted by the Toronto Maple Leafs?", "context": "CREATE TABLE table_name_12 (college_junior_club_team VARCHAR, nhl_team VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT college_junior_club_team FROM table_name_43 WHERE nhl_team = \"new york rangers\" AND position = \"defence\"", "question": "What is the college/junior/club team of the defence player drafted by the New York Rangers?", "context": "CREATE TABLE table_name_43 (college_junior_club_team VARCHAR, nhl_team VARCHAR, position VARCHAR)"}, {"answer": "SELECT rank FROM table_name_78 WHERE chassis = \"cadillac northstar lmp02\"", "question": "What is the rank of the cadillac northstar lmp02 chassis?", "context": "CREATE TABLE table_name_78 (rank VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_1 WHERE engine = \"audi 3.6l turbo v8\" AND rank = \"3rd\" AND points = 163", "question": "What is the entrant for the audi 3.6l turbo v8 engine and ranked 3rd with 163 points?", "context": "CREATE TABLE table_name_1 (entrant VARCHAR, points VARCHAR, engine VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_75 WHERE points > 123 AND chassis = \"audi r8\" AND class = \"lmp900\"", "question": "What is the rank with more than 123 points, an audi r8 chassis, and a lmp900 class?", "context": "CREATE TABLE table_name_75 (rank VARCHAR, class VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_57 WHERE year < 2004 AND entrant = \"bmw motorsport\" AND points = 123", "question": "What is the engine for the bmw motorsport entrant with 123 points before 2004?", "context": "CREATE TABLE table_name_57 (engine VARCHAR, points VARCHAR, year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT points FROM table_name_97 WHERE combined_elapsed_time = \"175d 20h 46m 04s\"", "question": "Which points have a Combined elapsed time of 175d 20h 46m 04s?", "context": "CREATE TABLE table_name_97 (points VARCHAR, combined_elapsed_time VARCHAR)"}, {"answer": "SELECT yacht_name FROM table_name_50 WHERE combined_elapsed_time = \"179d 11h 58m 14s\"", "question": "Which yacht name has a Combined elapsed time of 179d 11h 58m 14s?", "context": "CREATE TABLE table_name_50 (yacht_name VARCHAR, combined_elapsed_time VARCHAR)"}, {"answer": "SELECT skipper FROM table_name_90 WHERE points = \"78\"", "question": "Which skipper has 78 points?", "context": "CREATE TABLE table_name_90 (skipper VARCHAR, points VARCHAR)"}, {"answer": "SELECT overall_place FROM table_name_57 WHERE yacht_name = \"lg flatron\"", "question": "Which Overall place has a Yacht name of lg flatron?", "context": "CREATE TABLE table_name_57 (overall_place VARCHAR, yacht_name VARCHAR)"}, {"answer": "SELECT combined_elapsed_time FROM table_name_17 WHERE skipper = \"stephen wilkins\"", "question": "Which Combined elapsed time has a Skipper of stephen wilkins?", "context": "CREATE TABLE table_name_17 (combined_elapsed_time VARCHAR, skipper VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_84 WHERE entrant = \"coloni spa\" AND year < 1988", "question": "Before the year 1988, what is the lowest number of points that entrant Coloni SpA scored?", "context": "CREATE TABLE table_name_84 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_65 WHERE points = 0 AND entrant = \"automobiles gonfaronnaises sportives\"", "question": "Which chassis used by the entrant Automobiles Gonfaronnaises Sportives scored 0 points?", "context": "CREATE TABLE table_name_65 (chassis VARCHAR, points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_41 WHERE year < 1988", "question": "Who was the entrant before 1988?", "context": "CREATE TABLE table_name_41 (entrant VARCHAR, year INTEGER)"}, {"answer": "SELECT engine FROM table_name_89 WHERE year = 1987", "question": "Which engine was used in 1987?", "context": "CREATE TABLE table_name_89 (engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT league FROM table_name_39 WHERE year = 2001", "question": "What league did they play in 2001?", "context": "CREATE TABLE table_name_39 (league VARCHAR, year VARCHAR)"}, {"answer": "SELECT open_cup FROM table_name_21 WHERE reg_season = \"2nd, northeast\"", "question": "What open cup did they play in when they finished 2nd, northeast in the reg. season?", "context": "CREATE TABLE table_name_21 (open_cup VARCHAR, reg_season VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_27 WHERE date = \"october 9, 1983\" AND attendance < 40 OFFSET 492", "question": "What is the week with a date of October 9, 1983, and attendance smaller than 40,492?", "context": "CREATE TABLE table_name_27 (week VARCHAR, date VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_30 WHERE week = 14", "question": "What is the lowest attendance with week 14?", "context": "CREATE TABLE table_name_30 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT game_site FROM table_name_90 WHERE week = 12", "question": "Where did the Oakland Raiders play in week 12 of their 1976 season?", "context": "CREATE TABLE table_name_90 (game_site VARCHAR, week VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_43 WHERE entrant = \"barclay nordica arrows bmw\" AND engine = \"cosworth v8\"", "question": "How many years did Barclay Nordica Arrows BMW enter with Cosworth v8 engine?", "context": "CREATE TABLE table_name_43 (year INTEGER, entrant VARCHAR, engine VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_98 WHERE engine = \"bmw str-4 t/c\" AND entrant = \"barclay nordica arrows bmw\" AND points < 1", "question": "How many years did barclay nordica arrows bmw enter with a bmw str-4 t/c engine with less than 1 point?", "context": "CREATE TABLE table_name_98 (year INTEGER, points VARCHAR, engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_12 WHERE points = 4 AND chassis = \"ensign n180b\"", "question": "How many years was ensign n180b a Chassis with 4 points?", "context": "CREATE TABLE table_name_12 (year INTEGER, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT division_record FROM table_name_26 WHERE team = \"indians\"", "question": "What is the division record for the Indians?", "context": "CREATE TABLE table_name_26 (division_record VARCHAR, team VARCHAR)"}, {"answer": "SELECT overall_record FROM table_name_17 WHERE school = \"indian river\"", "question": "What is the overall record of Indian River?", "context": "CREATE TABLE table_name_17 (overall_record VARCHAR, school VARCHAR)"}, {"answer": "SELECT season_outcome FROM table_name_43 WHERE school = \"lake forest\"", "question": "What was the season outcome of Lake Forest?", "context": "CREATE TABLE table_name_43 (season_outcome VARCHAR, school VARCHAR)"}, {"answer": "SELECT COUNT(decile) FROM table_name_51 WHERE gender = \"coed\"", "question": "How many Deciles are coed?", "context": "CREATE TABLE table_name_51 (decile VARCHAR, gender VARCHAR)"}, {"answer": "SELECT MIN(decile) FROM table_name_94 WHERE gender = \"coed\"", "question": "Which is the lowest Decile that is coed?", "context": "CREATE TABLE table_name_94 (decile INTEGER, gender VARCHAR)"}, {"answer": "SELECT years FROM table_name_98 WHERE name = \"kawerau putauaki school\"", "question": "What are the years for Kawerau Putauaki School?", "context": "CREATE TABLE table_name_98 (years VARCHAR, name VARCHAR)"}, {"answer": "SELECT round___race FROM table_name_32 WHERE winning_driver = \"charles hollings\" AND pole_position = \"charles hollings\"", "question": "What is the round or race of the winning driver Charles Hollings and what was his pole position?", "context": "CREATE TABLE table_name_32 (round___race VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_69 WHERE performance = \"long jump\" AND competition = \"world indoor championships\" AND position = \"5th\"", "question": "What was the earliest year in which long jump was performed in the world indoor Championships in 5th position?", "context": "CREATE TABLE table_name_69 (year INTEGER, position VARCHAR, performance VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_12 WHERE position = \"4th\" AND venue = \"budapest, hungary\"", "question": "What was the latest year in which she took 4th position in Budapest, Hungary?", "context": "CREATE TABLE table_name_12 (year INTEGER, position VARCHAR, venue VARCHAR)"}, {"answer": "SELECT name FROM table_name_20 WHERE mission = \"apollo 16\" AND age_at_first_step = \"36y 6m 18d\"", "question": "Which astronaut went on the Apollo 16 mission at the age of 36y 6m 18d to step on the moon?", "context": "CREATE TABLE table_name_20 (name VARCHAR, mission VARCHAR, age_at_first_step VARCHAR)"}, {"answer": "SELECT mission FROM table_name_8 WHERE name = \"david scott\"", "question": "David Scott went on which mission?", "context": "CREATE TABLE table_name_8 (mission VARCHAR, name VARCHAR)"}, {"answer": "SELECT service FROM table_name_65 WHERE age_at_first_step = \"37y 8m 4d\"", "question": "The astronaut who was 37y 8m 4d when making a first step on the moon was in which service?", "context": "CREATE TABLE table_name_65 (service VARCHAR, age_at_first_step VARCHAR)"}, {"answer": "SELECT lunar_eva_dates FROM table_name_27 WHERE mission = \"apollo 12\" AND name = \"pete conrad\"", "question": "Pete Conrad was on the Apollo 12 mission but also had what Lunar EVA dates?", "context": "CREATE TABLE table_name_27 (lunar_eva_dates VARCHAR, mission VARCHAR, name VARCHAR)"}, {"answer": "SELECT born FROM table_name_27 WHERE age_at_first_step = \"38y 9m 7d\"", "question": "The Apollo astronaut who was 38y 9m 7d when first stepping on the moon is who?", "context": "CREATE TABLE table_name_27 (born VARCHAR, age_at_first_step VARCHAR)"}, {"answer": "SELECT class FROM table_name_72 WHERE year < 2011 AND chassis = \"audi r15 tdi\"", "question": "Which class has a year prior to 2011 and audi r15 tdi as the chassis?", "context": "CREATE TABLE table_name_72 (class VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_51 WHERE year > 2006 AND points = \"60\"", "question": "Which engine has a year later than 2006 and 60 as the points?", "context": "CREATE TABLE table_name_51 (engine VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_10 WHERE engine = \"audi 3.6l turbo v8\" AND rank = \"1st\" AND chassis = \"audi r8r\"", "question": "How many years has an engine of audi 3.6l turbo v8 and 1st as the rank with an audi r8r as the chassis?", "context": "CREATE TABLE table_name_10 (year VARCHAR, chassis VARCHAR, engine VARCHAR, rank VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_22 WHERE rank = \"25th\"", "question": "Which entrant has 25th as the rank?", "context": "CREATE TABLE table_name_22 (entrant VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(year_won) FROM table_name_20 WHERE player = \"rich beem\" AND to_par < 17", "question": "What is the average year Rich Beem had a to par less than 17?", "context": "CREATE TABLE table_name_20 (year_won INTEGER, player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MIN(year_won) FROM table_name_81 WHERE total > 156", "question": "What is the earliest year won with a total bigger than 156?", "context": "CREATE TABLE table_name_81 (year_won INTEGER, total INTEGER)"}, {"answer": "SELECT COUNT(total) FROM table_name_2 WHERE year_won < 2002 AND player = \"bob tway\" AND to_par > 7", "question": "What is the total for Bob Tway for the year won before 2002 with a to par bigger than 7?", "context": "CREATE TABLE table_name_2 (total VARCHAR, to_par VARCHAR, year_won VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_72 WHERE country = \"united states\" AND year_won > 1986 AND player = \"paul azinger\" AND total > 145", "question": "What is the to par for Paul Azinger from the United States after 1986 for a total bigger than 145?", "context": "CREATE TABLE table_name_72 (to_par VARCHAR, total VARCHAR, player VARCHAR, country VARCHAR, year_won VARCHAR)"}, {"answer": "SELECT MIN(year_won) FROM table_name_12 WHERE player = \"paul azinger\" AND to_par > 5", "question": "What is the earliest year won Paul Azinger had with a to par higher than 5?", "context": "CREATE TABLE table_name_12 (year_won INTEGER, player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT COUNT(year_won) FROM table_name_22 WHERE country = \"australia\" AND to_par > 16", "question": "What is the year won by Australia with a to par bigger than 16?", "context": "CREATE TABLE table_name_22 (year_won VARCHAR, country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT lifespan FROM table_name_96 WHERE representative = \"theodore f. kluttz\"", "question": "What is the Lifespan when the Representative is Theodore F. Kluttz?", "context": "CREATE TABLE table_name_96 (lifespan VARCHAR, representative VARCHAR)"}, {"answer": "SELECT week FROM table_name_88 WHERE result = \"l 35\u201337\"", "question": "What week's game had a result of l 35\u201337?", "context": "CREATE TABLE table_name_88 (week VARCHAR, result VARCHAR)"}, {"answer": "SELECT year FROM table_name_16 WHERE entrant = \"trio brdeact wind allass\"", "question": "What year was trio brdeact wind allass the entrant?", "context": "CREATE TABLE table_name_16 (year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_46 WHERE chassis = \"kurtis kraft 500f\"", "question": "What is the year when kurtis kraft 500f was the chassis?", "context": "CREATE TABLE table_name_46 (year INTEGER, chassis VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_38 WHERE points > 0", "question": "What is the earliest year when the points were more than 0?", "context": "CREATE TABLE table_name_38 (year INTEGER, points INTEGER)"}, {"answer": "SELECT name FROM table_name_91 WHERE area = \"balclutha\" AND decile < 7 AND roll > 186", "question": "What's the school name in Balclutha that has a Decile of 7 and a roll larger than 186?", "context": "CREATE TABLE table_name_91 (name VARCHAR, roll VARCHAR, area VARCHAR, decile VARCHAR)"}, {"answer": "SELECT name FROM table_name_52 WHERE area = \"balclutha\" AND roll < 55", "question": "Which school in Balclutha has a roll smaller than 55?", "context": "CREATE TABLE table_name_52 (name VARCHAR, area VARCHAR, roll VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE home = \"winnipeg jets\" AND score = \"4\u20136\"", "question": "When has winnipeg jets with a Score of 4\u20136?", "context": "CREATE TABLE table_name_82 (date VARCHAR, home VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_99 WHERE home = \"edmonton oilers\"", "question": "When is Edmonton Oilers in?", "context": "CREATE TABLE table_name_99 (date VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE visitor = \"winnipeg jets\" AND date = \"april 7\"", "question": "What is the Score that has a Winnipeg Jets as Visitor on april 7?", "context": "CREATE TABLE table_name_10 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_71 WHERE date = \"april 6\"", "question": "What is the Score on April 6?", "context": "CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE record = \"1\u20130\"", "question": "When has a Record of 1\u20130?", "context": "CREATE TABLE table_name_52 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT llws FROM table_name_37 WHERE year = 2003", "question": "What is the LLWS when the Year is 2003?", "context": "CREATE TABLE table_name_37 (llws VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_2 WHERE city = \"peabody\"", "question": "What is the earliest Year when the City is Peabody?", "context": "CREATE TABLE table_name_2 (year INTEGER, city VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_19 WHERE llws = \"4th place\" AND city = \"westport\"", "question": "What is the total number of Years when the LLWS is 4th place, and when the City is Westport?", "context": "CREATE TABLE table_name_19 (year VARCHAR, llws VARCHAR, city VARCHAR)"}, {"answer": "SELECT team FROM table_name_9 WHERE kit_manufacturer = \"pony\" AND captain = \"gary mabbutt\"", "question": "What team has Pony as the kit manufacturer and Gary Mabbutt as the captain?", "context": "CREATE TABLE table_name_9 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR)"}, {"answer": "SELECT manager_1 FROM table_name_95 WHERE team = \"leeds united\"", "question": "Who is the manager 1 for Leeds United?", "context": "CREATE TABLE table_name_95 (manager_1 VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_27 WHERE kit_manufacturer = \"pony\" AND captain = \"julian dicks\"", "question": "What is the team with a Pony kit manufacturer and Julian Dicks as the captain?", "context": "CREATE TABLE table_name_27 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR)"}, {"answer": "SELECT team FROM table_name_41 WHERE kit_manufacturer = \"umbro\" AND captain = \"eric cantona\"", "question": "What team has a kit manufacturer of Umbro and Eric Cantona as captain?", "context": "CREATE TABLE table_name_41 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR)"}, {"answer": "SELECT manager_1 FROM table_name_29 WHERE kit_manufacturer = \"puma\" AND shirt_sponsor = \"puma\"", "question": "Who is the manager 1 with Puma as the kit manufacturer and Puma as the shirt sponsor?", "context": "CREATE TABLE table_name_29 (manager_1 VARCHAR, kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT kit_manufacturer FROM table_name_1 WHERE shirt_sponsor = \"walkers\"", "question": "What is the kit manufacturer with Walkers as the shirt sponsor?", "context": "CREATE TABLE table_name_1 (kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_63 WHERE chassis = \"dallara 3087 lola t88/50\" AND year < 1988", "question": "Name the average points for dallara 3087 lola t88/50 and year before 1988", "context": "CREATE TABLE table_name_63 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_38 WHERE year = 1992", "question": "Name the sum of points for 1992", "context": "CREATE TABLE table_name_38 (points INTEGER, year VARCHAR)"}, {"answer": "SELECT points FROM table_name_56 WHERE year > 1987", "question": "Name the points for year more than 1987", "context": "CREATE TABLE table_name_56 (points VARCHAR, year INTEGER)"}, {"answer": "SELECT year FROM table_name_62 WHERE points < 20 AND chassis = \"dallara 3087\"", "question": "Name the year for points less than 20 and chassis of dallara 3087", "context": "CREATE TABLE table_name_62 (year VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(apps) FROM table_name_22 WHERE season = \"total\" AND goals > 3", "question": "What is the most apps that a has a total season and 3 goals?", "context": "CREATE TABLE table_name_22 (apps INTEGER, season VARCHAR, goals VARCHAR)"}, {"answer": "SELECT COUNT(apps) FROM table_name_90 WHERE goals = 2", "question": "What is the final number of apps with 2 goals?", "context": "CREATE TABLE table_name_90 (apps VARCHAR, goals VARCHAR)"}, {"answer": "SELECT airdate FROM table_name_62 WHERE bbc_one_weekly_ranking = 14", "question": "What date did the episode with a weekly ranking of 14 air?", "context": "CREATE TABLE table_name_62 (airdate VARCHAR, bbc_one_weekly_ranking VARCHAR)"}, {"answer": "SELECT COUNT(total_viewers) FROM table_name_84 WHERE share = \"18.8%\" AND bbc_one_weekly_ranking < 16", "question": "What is the total number of total viewers with a share of 18.8% and a weekly ranking under 16?", "context": "CREATE TABLE table_name_84 (total_viewers VARCHAR, share VARCHAR, bbc_one_weekly_ranking VARCHAR)"}, {"answer": "SELECT rider FROM table_name_36 WHERE grid = 37", "question": "Who has 37 grids?", "context": "CREATE TABLE table_name_36 (rider VARCHAR, grid VARCHAR)"}, {"answer": "SELECT AVG(grid) FROM table_name_78 WHERE laps > 23", "question": "What is the average grid with more than 23 laps?", "context": "CREATE TABLE table_name_78 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT AVG(grid) FROM table_name_56 WHERE laps > 23", "question": "What is the average grid with more than 23 laps?", "context": "CREATE TABLE table_name_56 (grid INTEGER, laps INTEGER)"}, {"answer": "SELECT AVG(decile) FROM table_name_84 WHERE name = \"te puru school\"", "question": "What is the average decile for te puru school?", "context": "CREATE TABLE table_name_84 (decile INTEGER, name VARCHAR)"}, {"answer": "SELECT SUM(decile) FROM table_name_64 WHERE area = \"whitianga\" AND roll < 835", "question": "What is the total decile with an Area of whitianga, and a Roll smaller than 835?", "context": "CREATE TABLE table_name_64 (decile INTEGER, area VARCHAR, roll VARCHAR)"}, {"answer": "SELECT name FROM table_name_50 WHERE area = \"kennedy bay\"", "question": "Which name has an Area of kennedy bay?", "context": "CREATE TABLE table_name_50 (name VARCHAR, area VARCHAR)"}, {"answer": "SELECT years FROM table_name_55 WHERE decile > 4 AND area = \"thames\"", "question": "Which years have a Decile larger than 4, and an Area of thames?", "context": "CREATE TABLE table_name_55 (years VARCHAR, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT authority FROM table_name_68 WHERE decile < 6 AND area = \"opoutere\"", "question": "Which Authority has a Decile smaller than 6, and an Area of opoutere?", "context": "CREATE TABLE table_name_68 (authority VARCHAR, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT gender FROM table_name_17 WHERE years = \"1\u20138\" AND authority = \"state\" AND roll < 184 AND name = \"matatoki school\"", "question": "Which gender has Years of 1\u20138, an Authority of state, a Roll less than 184, and a Name of matatoki school?", "context": "CREATE TABLE table_name_17 (gender VARCHAR, name VARCHAR, roll VARCHAR, years VARCHAR, authority VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_34 WHERE winning_score = \u20134(71 - 72 - 72 - 69 = 284)", "question": "What was the tournament that resulted in a winning score of \u20134 (71-72-72-69=284)?", "context": "CREATE TABLE table_name_34 (tournament VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_47 WHERE runner_s__up = \"brian kamm\"", "question": "What was the winning score of the event where Brian Kamm was the runner-up?", "context": "CREATE TABLE table_name_47 (winning_score VARCHAR, runner_s__up VARCHAR)"}, {"answer": "SELECT runner_s__up FROM table_name_27 WHERE winning_score = \u201315(66 - 67 - 70 - 70 = 273)", "question": "Who was the runner-up for the event that ended with a winning score of \u201315 (66-67-70-70=273)?", "context": "CREATE TABLE table_name_27 (runner_s__up VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_39 WHERE tournament = \"nike colorado classic\"", "question": "On what date was the Nike Colorado Classic held?", "context": "CREATE TABLE table_name_39 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_57 WHERE tournament = \"buy.com siouxland open\"", "question": "What was the winning score of the Buy.com Siouxland Open?", "context": "CREATE TABLE table_name_57 (winning_score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_63 WHERE rank > 8 AND routine_score > 27.6 AND difficulty_score = \"13.8\"", "question": "What is the total with lower than rank 8, and higher than 27.6 score and 13.8 difficulty?", "context": "CREATE TABLE table_name_63 (total INTEGER, difficulty_score VARCHAR, rank VARCHAR, routine_score VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_41 WHERE games < 15 AND silver < 0", "question": "What is the average medal total of the country who had 0 silver medals and participated in less than 15 games?", "context": "CREATE TABLE table_name_41 (total INTEGER, games VARCHAR, silver VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_41 WHERE chassis = \"forti fg01b forti fg03\" AND year < 1996", "question": "What is the least Points with Chassis of forti fg01b forti fg03, and a year less than 1996?", "context": "CREATE TABLE table_name_41 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_47 WHERE engine = \"ford zetec-r v8\" AND points > 0", "question": "What is the lowest year for an engine of ford zetec-r v8, and points greater than 0?", "context": "CREATE TABLE table_name_47 (year INTEGER, engine VARCHAR, points VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_63 WHERE engine = \"ford zetec-r v8\"", "question": "What are the average points for an engine of ford zetec-r v8?", "context": "CREATE TABLE table_name_63 (points INTEGER, engine VARCHAR)"}, {"answer": "SELECT years FROM table_name_78 WHERE name = \"elsthorpe school\"", "question": "Name the years for elsthorpe school", "context": "CREATE TABLE table_name_78 (years VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(roll) FROM table_name_19 WHERE name = \"st joseph's school\" AND decile < 5", "question": "Name the total number of roll for st joseph's school when decile is less than 5", "context": "CREATE TABLE table_name_19 (roll VARCHAR, name VARCHAR, decile VARCHAR)"}, {"answer": "SELECT gender FROM table_name_63 WHERE name = \"elsthorpe school\"", "question": "Name the gender for elsthorpe school", "context": "CREATE TABLE table_name_63 (gender VARCHAR, name VARCHAR)"}, {"answer": "SELECT drivers FROM table_name_88 WHERE chassis = \"season cancelled\"", "question": "Name the drivers for chassis of season cancelled", "context": "CREATE TABLE table_name_88 (drivers VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT teams FROM table_name_95 WHERE third__points_ = \"season cancelled\"", "question": "Name the teams for third points of season cancelled", "context": "CREATE TABLE table_name_95 (teams VARCHAR, third__points_ VARCHAR)"}, {"answer": "SELECT engine FROM table_name_29 WHERE rounds = \"11\" AND teams = \"25\"", "question": "Name the engine with rounds of 11 and teams of 25", "context": "CREATE TABLE table_name_29 (engine VARCHAR, rounds VARCHAR, teams VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE loss = \"mcdowell (12-7)\"", "question": "What was the score for the loss of McDowell (12-7)?", "context": "CREATE TABLE table_name_39 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_1 WHERE year = 2011", "question": "What is the total laps for the year 2011?", "context": "CREATE TABLE table_name_1 (laps INTEGER, year VARCHAR)"}, {"answer": "SELECT class AS pos FROM table_name_98 WHERE pos = \"9th\"", "question": "Which team is in 9th place?", "context": "CREATE TABLE table_name_98 (class VARCHAR, pos VARCHAR)"}, {"answer": "SELECT SUM(division) FROM table_name_69 WHERE country = \"serbia and montenegro\" AND apps < 12 AND goals > 0", "question": "What is the total of the Divison that is from the country Serbia and Montenegro with apps smaller than 12 with more goals than 0?", "context": "CREATE TABLE table_name_69 (division INTEGER, goals VARCHAR, country VARCHAR, apps VARCHAR)"}, {"answer": "SELECT SUM(goals) FROM table_name_8 WHERE team = \"partizan\" AND country = \"serbia\" AND division > 1", "question": "What is the total number of goals that the Partizan team from the country of serbia had that was larger than 1?", "context": "CREATE TABLE table_name_8 (goals INTEGER, division VARCHAR, team VARCHAR, country VARCHAR)"}, {"answer": "SELECT year FROM table_name_47 WHERE engine = \"honda ra168e 1.5 v6 t\"", "question": "What year was the Honda ra168e 1.5 v6 t engine used?", "context": "CREATE TABLE table_name_47 (year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT tyres FROM table_name_40 WHERE chassis = \"mp4/14\"", "question": "What tyres were used with the mp4/14 chassis?", "context": "CREATE TABLE table_name_40 (tyres VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT tickets_sold___available FROM table_name_54 WHERE city = \"barcelona\"", "question": "How many tickets were there sold/available in Barcelona?", "context": "CREATE TABLE table_name_54 (tickets_sold___available VARCHAR, city VARCHAR)"}, {"answer": "SELECT tickets_sold___available FROM table_name_44 WHERE gross_revenue__2011_ = \"$366,916\"", "question": "How many tickets were sold/available when the gross revenue (2011) was $366,916?", "context": "CREATE TABLE table_name_44 (tickets_sold___available VARCHAR, gross_revenue__2011_ VARCHAR)"}, {"answer": "SELECT tickets_sold___available FROM table_name_4 WHERE gross_revenue__2011_ = \"$5,948,390\"", "question": "How many tickets were sold/available when the gross revenue (2011) was $5,948,390?", "context": "CREATE TABLE table_name_4 (tickets_sold___available VARCHAR, gross_revenue__2011_ VARCHAR)"}, {"answer": "SELECT gross_revenue__1986_ FROM table_name_83 WHERE tickets_sold___available = \"24,000 / 24,000 (100%)\"", "question": "What was the gross revenue (1986) when there were tickets sold/available of 24,000 / 24,000 (100%)?", "context": "CREATE TABLE table_name_83 (gross_revenue__1986_ VARCHAR, tickets_sold___available VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_34 WHERE team_2 = \"stade d'abidjan\"", "question": "What was the score in the 1st leg when Stade d'Abidjan was Team 2?", "context": "CREATE TABLE table_name_34 (team_2 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_55 WHERE team_1 = \"union douala\"", "question": "What was the aggregate score that had Union Douala as Team 1?", "context": "CREATE TABLE table_name_55 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_46 WHERE agg = \"4-9\"", "question": "What was the 2nd leg score of the aggregate score of 4-9?", "context": "CREATE TABLE table_name_46 (agg VARCHAR)"}, {"answer": "SELECT team_2 FROM table_name_81 WHERE team_1 = \"stationery stores\"", "question": "Who was Team 2 when Stationery Stores was Team 1?", "context": "CREATE TABLE table_name_81 (team_2 VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_13 WHERE agg = \"1-1 1\"", "question": "Which Team 1 has an aggregate score of 1-1 1?", "context": "CREATE TABLE table_name_13 (team_1 VARCHAR, agg VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_47 WHERE year = 1977", "question": "Can you tell me the Chassis that has the Year of 1977?", "context": "CREATE TABLE table_name_47 (chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_7 WHERE chassis = \"march 742\" AND year > 1974", "question": "Can you tell me the Entrant that has the Chassis of march 742, and the Year larger than 1974?", "context": "CREATE TABLE table_name_7 (entrant VARCHAR, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_61 WHERE entrant = \"trivellato racing team\"", "question": "Can you tell me the Chassis that has the Entrant of trivellato racing team?", "context": "CREATE TABLE table_name_61 (chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_5 WHERE points = 13 AND year = 1975 AND entrant = \"scuderia citta del mille\"", "question": "Can you tell me the Chassis that has the Points of 13, and the Year of 1975, and the Entrant of scuderia citta del mille?", "context": "CREATE TABLE table_name_5 (chassis VARCHAR, entrant VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(value__) AS $m_ FROM table_name_26 WHERE revenue__$m_ < 374 AND debt_as__percentageof_value = \"84\"", "question": "What is the lowest value of a team with revenue less than 374 and a debt of 84%?", "context": "CREATE TABLE table_name_26 (value__ INTEGER, revenue__$m_ VARCHAR, debt_as__percentageof_value VARCHAR)"}, {"answer": "SELECT MAX(operating_income_) AS $m_ FROM table_name_23 WHERE _percentage_change_on_year = \"2\" AND value__$m_ < 1 OFFSET 036", "question": "What is the highest operating income that change by 2% and is less than $1,036m?", "context": "CREATE TABLE table_name_23 (operating_income_ INTEGER, _percentage_change_on_year VARCHAR, value__$m_ VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_66 WHERE date = \"september 19\"", "question": "Which team did they play on September 19?", "context": "CREATE TABLE table_name_66 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_8 WHERE frequency_mhz < 91.9 AND city_of_license = \"dansville, ny\"", "question": "What's the FCC info with a Frequency MHz thats smaller than 91.9 and has a CIty of license of Dansville, NY?", "context": "CREATE TABLE table_name_8 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_85 WHERE frequency_mhz < 100.3 AND city_of_license = \"lowville, ny\"", "question": "What's the FCC info with a Frequency MHz thats smaller than 100.3 and a City of License as Lowville, NY?", "context": "CREATE TABLE table_name_85 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT call_sign FROM table_name_26 WHERE frequency_mhz < 95.9 AND erp_w = 10", "question": "What's the Call sign with a Frequency MHz thats smaller than 95.9 and an ERP W of 10?", "context": "CREATE TABLE table_name_26 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT MAX(erp_w) FROM table_name_22 WHERE call_sign = \"w262ac\"", "question": "What is listed as the highest ERP W with a Call sign of W262AC?", "context": "CREATE TABLE table_name_22 (erp_w INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT COUNT(erp_w) FROM table_name_2 WHERE frequency_mhz > 97.7", "question": "What's the sum of ERP W with a Frequency MHz that larger than 97.7?", "context": "CREATE TABLE table_name_2 (erp_w VARCHAR, frequency_mhz INTEGER)"}, {"answer": "SELECT score FROM table_name_5 WHERE date = \"september 9\"", "question": "What was the score of the game played on September 9?", "context": "CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT overall_record FROM table_name_9 WHERE school = \"indian river\"", "question": "Name the overall record for indian river", "context": "CREATE TABLE table_name_9 (overall_record VARCHAR, school VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_17 WHERE score = 74 - 76 - 71 - 71 = 292", "question": "How much money was won for the game with a score of 74-76-71-71=292?", "context": "CREATE TABLE table_name_17 (money___$__ VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_74 WHERE score = 70 - 79 - 74 - 68 = 291", "question": "What country was the player from with a score of 70-79-74-68=291?", "context": "CREATE TABLE table_name_74 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_51 WHERE to_par < 2", "question": "When To par was less than 2, what was the score?", "context": "CREATE TABLE table_name_51 (score VARCHAR, to_par INTEGER)"}, {"answer": "SELECT date FROM table_name_23 WHERE result = \"sa by 10 wkts\"", "question": "When was the match with a result of sa by 10 wkts?", "context": "CREATE TABLE table_name_23 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_18 WHERE result = \"sa by 10 wkts\"", "question": "When was the match with a result of sa by 10 wkts?", "context": "CREATE TABLE table_name_18 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_49 WHERE venue = \"centurion park\"", "question": "When was there a match in Centurion Park?", "context": "CREATE TABLE table_name_49 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT finish FROM table_name_1 WHERE qual = \"144.817\"", "question": "Name the finish which has qual of 144.817", "context": "CREATE TABLE table_name_1 (finish VARCHAR, qual VARCHAR)"}, {"answer": "SELECT qual FROM table_name_78 WHERE rank = \"9\"", "question": "Name the qual for rank of 9", "context": "CREATE TABLE table_name_78 (qual VARCHAR, rank VARCHAR)"}, {"answer": "SELECT qual FROM table_name_1 WHERE year = \"1957\"", "question": "Name the qual for 1957", "context": "CREATE TABLE table_name_1 (qual VARCHAR, year VARCHAR)"}, {"answer": "SELECT status FROM table_name_61 WHERE name = \"de la red\"", "question": "What shows as the status for the name of de la red?", "context": "CREATE TABLE table_name_61 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT country FROM table_name_39 WHERE transfer_fee = \"\u2014\" AND transfer_window = \"summer\" AND status = \"loaned out\" AND name = \"gonz\u00e1lez\"", "question": "What country has a Transfer fee of \u2014, and a Transfer window of summer, and the Status of loaned out, and a Name of gonz\u00e1lez?", "context": "CREATE TABLE table_name_39 (country VARCHAR, name VARCHAR, status VARCHAR, transfer_fee VARCHAR, transfer_window VARCHAR)"}, {"answer": "SELECT status FROM table_name_29 WHERE name = \"diogo\"", "question": "What shows as the status for Diogo?", "context": "CREATE TABLE table_name_29 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_20 WHERE country = \"esp\" AND transfer_fee = \"\u20ac 7m\"", "question": "What is the name when the country is ESP and the transfer fee is \u20ac 7m?", "context": "CREATE TABLE table_name_20 (name VARCHAR, country VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_49 WHERE country = \"esp\" AND name = \"de la red\"", "question": "What is the transfer window for the country of ESP and the name of de la red?", "context": "CREATE TABLE table_name_49 (transfer_window VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT transfer_fee FROM table_name_53 WHERE name = \"diogo\"", "question": "What is the transfer fee of Diogo?", "context": "CREATE TABLE table_name_53 (transfer_fee VARCHAR, name VARCHAR)"}, {"answer": "SELECT MIN(att) FROM table_name_2 WHERE loss = \"lohse (12\u201311)\"", "question": "What was the lowest attendance at a game that had a loss of lohse (12\u201311)?", "context": "CREATE TABLE table_name_2 (att INTEGER, loss VARCHAR)"}, {"answer": "SELECT time FROM table_name_4 WHERE opponent = \"royals\" AND record = \"81\u201373\"", "question": "What was time of the game against the Royals with a record of 81\u201373?", "context": "CREATE TABLE table_name_4 (time VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT round FROM table_name_42 WHERE kick_off = \"1992-10-01 21:15\"", "question": "Which round has a Kick Off of 1992-10-01 21:15?", "context": "CREATE TABLE table_name_42 (round VARCHAR, kick_off VARCHAR)"}, {"answer": "SELECT round FROM table_name_8 WHERE kick_off = \"1993-02-17 20:30\"", "question": "Which round has a Kick Off of 1993-02-17 20:30?", "context": "CREATE TABLE table_name_8 (round VARCHAR, kick_off VARCHAR)"}, {"answer": "SELECT MIN(maximum_fps) FROM table_name_84 WHERE width = 3072 AND height < 1620", "question": "What is the lowest maximum of fps with a width of 3072 and a height less than 1620?", "context": "CREATE TABLE table_name_84 (maximum_fps INTEGER, width VARCHAR, height VARCHAR)"}, {"answer": "SELECT maximum_fps AS HDRx FROM table_name_47 WHERE height > 1080 AND least_compression_at_24_fps = \"6:1\" AND least_compression_at_maximum_fps = \"7:1\"", "question": "What is the maximum fps HDRx with a height larger than 1080 with a compression at 24 fps of 6:1 with a compression at maximum fps of at least 7:1?", "context": "CREATE TABLE table_name_47 (maximum_fps VARCHAR, least_compression_at_maximum_fps VARCHAR, height VARCHAR, least_compression_at_24_fps VARCHAR)"}, {"answer": "SELECT loss FROM table_name_22 WHERE record = \"52-36\"", "question": "Who got the loss on the game that ended in a 52-36 record?", "context": "CREATE TABLE table_name_22 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_74 WHERE record = \"55-41\"", "question": "Who got the loss for the game ending in a record of 55-41?", "context": "CREATE TABLE table_name_74 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_93 WHERE loss = \"dotson (8-6)\"", "question": "Which team opponent had a loss with their pitcher Dotson (8-6)?", "context": "CREATE TABLE table_name_93 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT AVG(2006) FROM table_name_47 WHERE production_year = \"wheat\" AND 2005 > 7340", "question": "What is the average 2006 value for wheat with a 2005 value greater than 7340?", "context": "CREATE TABLE table_name_47 (production_year VARCHAR)"}, {"answer": "SELECT AVG(2002) FROM table_name_31 WHERE 2010 < 5587 AND production_year = \"sunflower\" AND 2007 > 546", "question": "What is the average 2002 value for Sunflower, which had a 2010 value less than 5587 and a 2007 value greater than 546?", "context": "CREATE TABLE table_name_31 (production_year VARCHAR)"}, {"answer": "SELECT AVG(2001) FROM table_name_41 WHERE 2010 > 414 AND 2011 = 7192 AND 2005 > 7340", "question": "What is the average 2001 value with a 2010 value greater than 414, a 2011 value of 7192, and a 2005 value larger than 7340?", "context": "CREATE TABLE table_name_41 (Id VARCHAR)"}, {"answer": "SELECT SUM(2006) FROM table_name_83 WHERE 2011 > 4113 AND 2008 < 7181", "question": "What is the 2006 value with a 2011 value greater than 4113 and a 2008 value less than 7181?", "context": "CREATE TABLE table_name_83 (Id VARCHAR)"}, {"answer": "SELECT gamecenter FROM table_name_17 WHERE attendance = \"65,212\"", "question": "Name the gamecenter that has attendance of 65,212", "context": "CREATE TABLE table_name_17 (gamecenter VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT gamecenter FROM table_name_48 WHERE attendance = \"78,551\"", "question": "Name the gamecenter with attendance of 78,551", "context": "CREATE TABLE table_name_48 (gamecenter VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT tv_time FROM table_name_84 WHERE attendance = \"69,551\"", "question": "Name the tv time for attendance of 69,551", "context": "CREATE TABLE table_name_84 (tv_time VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_23 WHERE rider = \"imre toth\"", "question": "what is the smallest number of laps imre toth has?", "context": "CREATE TABLE table_name_23 (laps INTEGER, rider VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_96 WHERE manufacturer = \"gilera\" AND rider = \"marco simoncelli\" AND grid < 8", "question": "what is the smallest number of laps marco simoncelli has with grid less than 8 and gilera as the manufacturer?", "context": "CREATE TABLE table_name_96 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_34 WHERE venue = \"brisbane cricket ground\"", "question": "Who was the away captain at Brisbane Cricket Ground?", "context": "CREATE TABLE table_name_34 (away_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_34 WHERE venue = \"sydney cricket ground\"", "question": "Who was the home captain at Sydney Cricket Ground?", "context": "CREATE TABLE table_name_34 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_95 WHERE venue = \"brisbane cricket ground\"", "question": "On what date was the venue at Brisbane Cricket Ground?", "context": "CREATE TABLE table_name_95 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_60 WHERE venue = \"waca ground\"", "question": "Who was the away captain at Waca Ground?", "context": "CREATE TABLE table_name_60 (away_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE venue = \"brisbane cricket ground\"", "question": "On what date was the venue at Brisbane Cricket Ground?", "context": "CREATE TABLE table_name_23 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT score FROM table_name_65 WHERE date = \"june 30\"", "question": "What was the score for the game on June 30?", "context": "CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT title FROM table_name_12 WHERE catalog__number = \"pcr 502\"", "question": "What CD has a catalog # of PCR 502?", "context": "CREATE TABLE table_name_12 (title VARCHAR, catalog__number VARCHAR)"}, {"answer": "SELECT title FROM table_name_64 WHERE released = 2009", "question": "What CD was released in 2009?", "context": "CREATE TABLE table_name_64 (title VARCHAR, released VARCHAR)"}, {"answer": "SELECT MAX(division) FROM table_name_25 WHERE playoffs = \"quarter finals\" AND regular_season = \"5th\"", "question": "What is the highest Division when the playoffs were the quarter finals, with a Regular Season of 5th?", "context": "CREATE TABLE table_name_25 (division INTEGER, playoffs VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_17 WHERE playoffs = \"did not qualify\" AND regular_season = \"10th\"", "question": "What is the year when they did not qualify for the playoff and the Regular Season shows as 10th?", "context": "CREATE TABLE table_name_17 (year VARCHAR, playoffs VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT playoffs FROM table_name_52 WHERE open_cup = \"did not qualify\" AND regular_season = \"3rd, south atlantic\"", "question": "What shows for Playoffs when the Open Cup shows as did not qualify, and a Regular Season was 3rd, south atlantic?", "context": "CREATE TABLE table_name_52 (playoffs VARCHAR, open_cup VARCHAR, regular_season VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_66 WHERE year = 1962 AND class = \"125cc\" AND wins < 0", "question": "What is the highest points value for 1962, in the 125cc class, and with 0 wins?", "context": "CREATE TABLE table_name_66 (points INTEGER, wins VARCHAR, year VARCHAR, class VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_71 WHERE class = \"500cc\" AND year > 1962 AND wins < 0", "question": "What is the highest points value for the 500cc class in years after 1962 with 0 wins?", "context": "CREATE TABLE table_name_71 (points INTEGER, wins VARCHAR, class VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_49 WHERE team = \"ajs\" AND wins < 0", "question": "For Team AJS, what is the total number of points for drivers with 0 wins?", "context": "CREATE TABLE table_name_49 (points VARCHAR, team VARCHAR, wins VARCHAR)"}, {"answer": "SELECT year FROM table_name_81 WHERE points = 0 AND chassis = \"ags jh23b\"", "question": "Which year had 0 points and an AGS JH23B chassis?", "context": "CREATE TABLE table_name_81 (year VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT points FROM table_name_52 WHERE year > 1986 AND chassis = \"ags jh23b\"", "question": "How many points does the year after 1986 with a AGS JH23B chassis have?", "context": "CREATE TABLE table_name_52 (points VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT points FROM table_name_27 WHERE entrant = \"tyrrell racing organisation\"", "question": "How many points did the Tyrrell Racing Organisation have?", "context": "CREATE TABLE table_name_27 (points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT week FROM table_name_46 WHERE date = \"september 23, 1973\"", "question": "September 23, 1973 landed on which week of the season?", "context": "CREATE TABLE table_name_46 (week VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_88 WHERE rank > 4 AND total < 1", "question": "What's the lowest Gold if the Rank is over 4 but the Total is less than 1?", "context": "CREATE TABLE table_name_88 (gold INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_40 WHERE rank < 1", "question": "What's the highest bronze with a less than 1 Rank?", "context": "CREATE TABLE table_name_40 (bronze INTEGER, rank INTEGER)"}, {"answer": "SELECT AVG(total) FROM table_name_25 WHERE bronze = 5 AND silver < 4", "question": "What's the average total if the Bronze is 5 and the Silver is less than 4?", "context": "CREATE TABLE table_name_25 (total INTEGER, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT votes FROM table_name_81 WHERE residence = \"halifax\"", "question": "How many Votes, when the Residence is Halifax?", "context": "CREATE TABLE table_name_81 (votes VARCHAR, residence VARCHAR)"}, {"answer": "SELECT riding FROM table_name_47 WHERE rank = \"4th\"", "question": "What is the Riding, when the Rank is 4th?", "context": "CREATE TABLE table_name_47 (riding VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MAX(cuts_made) FROM table_name_61 WHERE top_25 > 4 AND top_5 = 1 AND wins > 0", "question": "Name the most cuts made with top-25 more than 4 and top 5 of 1 with wins more than 0", "context": "CREATE TABLE table_name_61 (cuts_made INTEGER, wins VARCHAR, top_25 VARCHAR, top_5 VARCHAR)"}, {"answer": "SELECT SUM(top_25) FROM table_name_65 WHERE wins < 1 AND events = 12", "question": "Name the top-25 with wins less than 1 and events of 12", "context": "CREATE TABLE table_name_65 (top_25 INTEGER, wins VARCHAR, events VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_28 WHERE attendance = \"7,891\"", "question": "Who was the away team when the attendance was 7,891?", "context": "CREATE TABLE table_name_28 (away_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE attendance = \"1,644\"", "question": "What was the score of the game when the attendance was 1,644?", "context": "CREATE TABLE table_name_38 (score VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_53 WHERE home_team = \"lincoln city\"", "question": "Who was the away team when the home team was Lincoln City?", "context": "CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT score FROM table_name_74 WHERE home_team = \"lincoln city\"", "question": "What was the score of the game when the home team was Lincoln City?", "context": "CREATE TABLE table_name_74 (score VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT away_team FROM table_name_64 WHERE attendance = \"7,891\"", "question": "Who was the away team when the attendance was 7,891?", "context": "CREATE TABLE table_name_64 (away_team VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_93 WHERE year < 1983", "question": "What is the most amount of points for a team before 1983?", "context": "CREATE TABLE table_name_93 (points INTEGER, year INTEGER)"}, {"answer": "SELECT team FROM table_name_71 WHERE points = 4 AND chassis = \"march 82/83c\"", "question": "What team has 4 points and a Chassis of march 82/83c?", "context": "CREATE TABLE table_name_71 (team VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_2 WHERE year > 1982 AND points = 11 AND team = \"curb motorsports\"", "question": "What engine was used by Curb Motorsports after 1982 that had 11 points?", "context": "CREATE TABLE table_name_2 (engine VARCHAR, team VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT engine FROM table_name_84 WHERE year < 1983", "question": "What is the Engine used before 1983?", "context": "CREATE TABLE table_name_84 (engine VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(average) FROM table_name_99 WHERE matches < 52 AND runs < 4564 AND wickets < 265", "question": "Name the total number of average for wickets less than 265, runs less than 4564 and matches less than 52", "context": "CREATE TABLE table_name_99 (average VARCHAR, wickets VARCHAR, matches VARCHAR, runs VARCHAR)"}, {"answer": "SELECT COUNT(average) FROM table_name_21 WHERE wickets > 537 AND career = \"1899/00-1925/26\" AND matches < 211", "question": "Name the total number of average for wickets more than 537, career of 1899/00-1925/26 and matches less than 211", "context": "CREATE TABLE table_name_21 (average VARCHAR, matches VARCHAR, wickets VARCHAR, career VARCHAR)"}, {"answer": "SELECT MIN(average) FROM table_name_38 WHERE wickets > 265 AND career = \"1888/89-1913/14\" AND matches > 51", "question": "Name the least average with wickets more than 265 and career of 1888/89-1913/14 and matches more than 51", "context": "CREATE TABLE table_name_38 (average INTEGER, matches VARCHAR, wickets VARCHAR, career VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_73 WHERE wickets < 537 AND career = \"1898/99-1919/20\" AND runs > 4476", "question": "Name the total number of matches with wickets less than 537 and career of 1898/99-1919/20 with runs more than 4476", "context": "CREATE TABLE table_name_73 (matches VARCHAR, runs VARCHAR, wickets VARCHAR, career VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_91 WHERE series = \"4-2\"", "question": "Can you tell me the Opponent that has the Series of 4-2?", "context": "CREATE TABLE table_name_91 (opponent VARCHAR, series VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_46 WHERE place = \"t4\" AND score = 75 - 69 - 74 - 72 = 290", "question": "What is the to par of the player with a t4 place and a score of 75-69-74-72=290?", "context": "CREATE TABLE table_name_46 (to_par VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_91 WHERE points < 8 AND chassis = \"maserati\"", "question": "Which entrant scored less than 8 points and used a Maserati chassis?", "context": "CREATE TABLE table_name_91 (entrant VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_15 WHERE engine = \"offenhauser l4\" AND year < 1955 AND chassis = \"kurtis kraft kk500a\" AND points = 9", "question": "Which entrant, with an Offenhauser L4 engine and a Kurtis Kraft KK500A chassis, scored 9 points before 1955?", "context": "CREATE TABLE table_name_15 (entrant VARCHAR, points VARCHAR, chassis VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_4 WHERE entrant = \"fuel injection\"", "question": "What type of engine did the Fuel Injection entrant use?", "context": "CREATE TABLE table_name_4 (engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_93 WHERE engine = \"offenhauser l4\" AND chassis = \"trevis\"", "question": "What is the average number of points for an Offenhauser L4 engine with a Trevis chassis?", "context": "CREATE TABLE table_name_93 (points INTEGER, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT poll_source FROM table_name_55 WHERE steve_poizner = \"37%\"", "question": "What poll had Steve Poizner at 37%?", "context": "CREATE TABLE table_name_55 (poll_source VARCHAR, steve_poizner VARCHAR)"}, {"answer": "SELECT date_s__administered FROM table_name_38 WHERE meg_whitman = \"60%\"", "question": "When did Meg Whitman get 60%?", "context": "CREATE TABLE table_name_38 (date_s__administered VARCHAR, meg_whitman VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_74 WHERE team = \"boston cannons\"", "question": "How many players were drafted from the Boston Cannons in the round?", "context": "CREATE TABLE table_name_74 (round INTEGER, team VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_26 WHERE team = \"long island lizards\"", "question": "Which round was a player from the Long Island Lizards drafted in first?", "context": "CREATE TABLE table_name_26 (round INTEGER, team VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_56 WHERE player = \"dave curry\"", "question": "Dave Curry has what Nationality?", "context": "CREATE TABLE table_name_56 (nationality VARCHAR, player VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_43 WHERE grid = 11", "question": "Name the manufacturer with grid of 11", "context": "CREATE TABLE table_name_43 (manufacturer VARCHAR, grid VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_26 WHERE grid > 18 AND laps > 1 AND time_retired = \"+1 lap\"", "question": "Name the manufacturer for grid more than 18 and laps more than 1 with tired/retired of +1 lap", "context": "CREATE TABLE table_name_26 (manufacturer VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT laps FROM table_name_92 WHERE manufacturer = \"suzuki\" AND time_retired = \"+1:02.804\"", "question": "Name the laps for suzuki and time/retired of +1:02.804", "context": "CREATE TABLE table_name_92 (laps VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_82 WHERE grid = 12", "question": "Name the sum of laps for 12 grids", "context": "CREATE TABLE table_name_82 (laps INTEGER, grid VARCHAR)"}, {"answer": "SELECT MAX(_number_of_total_votes) FROM table_name_31 WHERE _percentage_of_popular_vote = \"32.41%\" AND _number_of_seats_won > 95", "question": "Name the most # of total votes with % of popular vote of 32.41% and # of seats won more than 95", "context": "CREATE TABLE table_name_31 (_number_of_total_votes INTEGER, _percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR)"}, {"answer": "SELECT finish FROM table_name_95 WHERE year = \"1954\"", "question": "What was Jack McGrath's finish number in 1954?", "context": "CREATE TABLE table_name_95 (finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT start FROM table_name_72 WHERE qual = \"141.033\"", "question": "What place did Jack McGrath start in when he received a qual score of 141.033?", "context": "CREATE TABLE table_name_72 (start VARCHAR, qual VARCHAR)"}, {"answer": "SELECT rank FROM table_name_7 WHERE start = \"3\" AND finish = \"26\" AND year = \"1955\"", "question": "What was Jack McGrath's rank in 1955 when he started at 3 and finished at 26?", "context": "CREATE TABLE table_name_7 (rank VARCHAR, year VARCHAR, start VARCHAR, finish VARCHAR)"}, {"answer": "SELECT pre__season FROM table_name_21 WHERE may_5 = \"21\"", "question": "Which pre-season has May 5 of 21?", "context": "CREATE TABLE table_name_21 (pre__season VARCHAR, may_5 VARCHAR)"}, {"answer": "SELECT mar_3 FROM table_name_35 WHERE poll = \"baseball america (top 25)\"", "question": "Which March 3 has a Poll of baseball america (top 25)?", "context": "CREATE TABLE table_name_35 (mar_3 VARCHAR, poll VARCHAR)"}, {"answer": "SELECT pre__season FROM table_name_24 WHERE mar_3 = \"nr\" AND poll = \"usa today/espn coaches' poll (top 25)\"", "question": "Which pre-season has a Mar. 3 of nr, and a Poll of usa today/espn coaches' poll (top 25)?", "context": "CREATE TABLE table_name_24 (pre__season VARCHAR, mar_3 VARCHAR, poll VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_99 WHERE date = \"september 9, 1979\"", "question": "Who is the opponent on September 9, 1979?", "context": "CREATE TABLE table_name_99 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(week) FROM table_name_60 WHERE opponent = \"denver broncos\"", "question": "What is the sum of the week for the Denver Broncos?", "context": "CREATE TABLE table_name_60 (week INTEGER, opponent VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_52 WHERE date = \"december 2, 1979\"", "question": "What is the attendance number for December 2, 1979?", "context": "CREATE TABLE table_name_52 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT term_in_office FROM table_name_27 WHERE party = \"liberal\" AND state = \"sa\" AND member = \"ian mclachlan\"", "question": "Name the term in office for liberal and state of sa for ian mclachlan", "context": "CREATE TABLE table_name_27 (term_in_office VARCHAR, member VARCHAR, party VARCHAR, state VARCHAR)"}, {"answer": "SELECT record FROM table_name_16 WHERE date = \"july 26\"", "question": "What was the record for July 26?", "context": "CREATE TABLE table_name_16 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_52 WHERE points = 38 AND bp > 5", "question": "Played that has a Points of 38, and a B.P. larger than 5 has what sum?", "context": "CREATE TABLE table_name_52 (played INTEGER, points VARCHAR, bp VARCHAR)"}, {"answer": "SELECT COUNT(played) FROM table_name_25 WHERE bp = 0 AND pts_agst < 247", "question": "B.P. of 0, and a Pts Agst smaller than 247 has how many total number of played?", "context": "CREATE TABLE table_name_25 (played VARCHAR, bp VARCHAR, pts_agst VARCHAR)"}, {"answer": "SELECT COUNT(position) FROM table_name_22 WHERE pts_agst = 572 AND pts_for > 346", "question": "Pts Agst of 572, and a Pts For larger than 346 has what total number of position?", "context": "CREATE TABLE table_name_22 (position VARCHAR, pts_agst VARCHAR, pts_for VARCHAR)"}, {"answer": "SELECT MAX(rounds) FROM table_name_40 WHERE truck_s_ = \"chevrolet silverado\" AND team = \"rbr enterprises\"", "question": "What is the most number of rounds that the Team from RBR Enterprises and having a Chevrolet Silverado ran?", "context": "CREATE TABLE table_name_40 (rounds INTEGER, truck_s_ VARCHAR, team VARCHAR)"}, {"answer": "SELECT crew_chief FROM table_name_73 WHERE team = \"make motorsports\"", "question": "Who was the crew chief for the team from Make Motorsports?", "context": "CREATE TABLE table_name_73 (crew_chief VARCHAR, team VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_name_34 WHERE crew_chief = \"nick carlson\"", "question": "Who was the driver for crew chief Nick Carlson?", "context": "CREATE TABLE table_name_34 (driver_s_ VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT truck_s_ FROM table_name_23 WHERE driver_s_ = \"brett moffitt\" AND team = \"hattori racing enterprises\"", "question": "What is the truck used by Brett Moffitt, from Hattori Racing Enterprises?", "context": "CREATE TABLE table_name_23 (truck_s_ VARCHAR, driver_s_ VARCHAR, team VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_51 WHERE drawn = \"1\" AND try_bonus = \"10\"", "question": "What was the losing bonus that had 1 draw and a 10 try bonus?", "context": "CREATE TABLE table_name_51 (losing_bonus VARCHAR, drawn VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_99 WHERE tries_for = \"34\"", "question": "How many resulted in draws with 34 tries for?", "context": "CREATE TABLE table_name_99 (drawn VARCHAR, tries_for VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_69 WHERE points_against = \"520\"", "question": "How many tries against were there with 520 points against?", "context": "CREATE TABLE table_name_69 (tries_against VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_38 WHERE points_against = \"479\"", "question": "How many tries for were there while having 479 points against?", "context": "CREATE TABLE table_name_38 (tries_for VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT lost FROM table_name_52 WHERE points_against = \"479\"", "question": "How many resulted in a loss with 479 points against?", "context": "CREATE TABLE table_name_52 (lost VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_67 WHERE points = \"58\"", "question": "What is the try bonus when there were 58 points?", "context": "CREATE TABLE table_name_67 (try_bonus VARCHAR, points VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_2 WHERE record = \"44-28\"", "question": "Which opponent has a record of 44-28?", "context": "CREATE TABLE table_name_2 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_32 WHERE attendance = \"40,560\"", "question": "Which opponent has an attendance of 40,560?", "context": "CREATE TABLE table_name_32 (opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT loss FROM table_name_23 WHERE date = \"june 13\"", "question": "Which loss was on June 13?", "context": "CREATE TABLE table_name_23 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_86 WHERE record = \"43-28\"", "question": "What is the attendance that has a record of 43-28?", "context": "CREATE TABLE table_name_86 (attendance VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_69 WHERE record = \"43-28\"", "question": "What was the date of the record of 43-28?", "context": "CREATE TABLE table_name_69 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(goalsagainst) FROM table_name_40 WHERE points = 108 AND lost < 14", "question": "Goalsagainst that has a Points of 108, and a Lost smaller than 14 has what average?", "context": "CREATE TABLE table_name_40 (goalsagainst INTEGER, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT COUNT(games) FROM table_name_43 WHERE lost = 42 AND goalsfor > 195", "question": "Lost of 42, and a Goalsfor larger than 195 contains how many number of games?", "context": "CREATE TABLE table_name_43 (games VARCHAR, lost VARCHAR, goalsfor VARCHAR)"}, {"answer": "SELECT MIN(goalsfor) FROM table_name_38 WHERE season = \"2002\u201303\" AND lost > 14", "question": "Season of 2002\u201303, and a Lost larger than 14, what is the lowest goals?", "context": "CREATE TABLE table_name_38 (goalsfor INTEGER, season VARCHAR, lost VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_88 WHERE goalsagainst = 285 AND season = \"2006\u201307\" AND games < 70", "question": "Goalsagainst of 285, and a Season of 2006\u201307, and a Games smaller than 70 has what average points?", "context": "CREATE TABLE table_name_88 (points INTEGER, games VARCHAR, goalsagainst VARCHAR, season VARCHAR)"}, {"answer": "SELECT MAX(goalsagainst) FROM table_name_35 WHERE goalsfor = 288 AND points < 85", "question": "Goals for of 288, and Points smaller than 85 what is the highest goals against?", "context": "CREATE TABLE table_name_35 (goalsagainst INTEGER, goalsfor VARCHAR, points VARCHAR)"}, {"answer": "SELECT player FROM table_name_26 WHERE original_team = \"los angeles kings\"", "question": "What player originally played for the Los Angeles Kings?", "context": "CREATE TABLE table_name_26 (player VARCHAR, original_team VARCHAR)"}, {"answer": "SELECT offer_team FROM table_name_24 WHERE date = \"july 29, 1994\"", "question": "What Offer Team has a date of July 29, 1994?", "context": "CREATE TABLE table_name_24 (offer_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT result FROM table_name_79 WHERE offer_team = \"new york rangers\" AND player = \"adam graves\"", "question": "What is the Result that has the New York Rangers as the Offer Team and Adam Graves as the Player?", "context": "CREATE TABLE table_name_79 (result VARCHAR, offer_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_26 WHERE original_team = \"vancouver canucks\" AND result = \"matched\" AND player = \"ryan kesler\"", "question": "What date has Vancouver Canucks as the original team, Ryan Kesler as the player, and matched as the Result?", "context": "CREATE TABLE table_name_26 (date VARCHAR, player VARCHAR, original_team VARCHAR, result VARCHAR)"}, {"answer": "SELECT offer_team FROM table_name_59 WHERE player = \"david backes\"", "question": "What was David Backes' Offer Team?", "context": "CREATE TABLE table_name_59 (offer_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT result FROM table_name_73 WHERE offer_team = \"philadelphia flyers\" AND player = \"chris gratton\"", "question": "What is the result of Chris Gratton and Philadelphia Flyers as the Offer Team?", "context": "CREATE TABLE table_name_73 (result VARCHAR, offer_team VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_23 WHERE venue = \"away\" AND attendance = 5 OFFSET 000", "question": "Which game had an attendance of 5,000 and was away?", "context": "CREATE TABLE table_name_23 (game INTEGER, venue VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE year = 1786", "question": "When was the date in 1786?", "context": "CREATE TABLE table_name_82 (date VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_15 WHERE opponent = \"devil rays\" AND date = \"may 13\"", "question": "How low is the Attendance that has an Opponent of devil rays and a Date of may 13?", "context": "CREATE TABLE table_name_15 (attendance INTEGER, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_68 WHERE record = \"29-25\"", "question": "How high is the Attendance with a Record of 29-25?", "context": "CREATE TABLE table_name_68 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_45 WHERE loss = \"wells (6-2)\"", "question": "Which Opponent has a lost of wells (6-2)?", "context": "CREATE TABLE table_name_45 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_7 WHERE team_2 = \"(g14)morolo\"", "question": "What is the team 1 with a (g14)morolo team 2?", "context": "CREATE TABLE table_name_7 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_8 WHERE silver < 1 AND gold = 0 AND nation = \"switzerland\" AND bronze < 2", "question": "What is the average Total, when the value for Silver is less than 1, when the value for Gold is 0, when the Nation is Switzerland, and when the value for Bronze is 2?", "context": "CREATE TABLE table_name_8 (total INTEGER, bronze VARCHAR, nation VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_52 WHERE nation = \"sweden\" AND bronze < 3", "question": "What is the average Total, when the Nation is Sweden, and when the value for Bronze is less than 3?", "context": "CREATE TABLE table_name_52 (total INTEGER, nation VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_98 WHERE silver > 2 AND nation = \"west germany\"", "question": "What is the average value for Gold, when the value for Silver is greater than 2, and when the Nation is West Germany?", "context": "CREATE TABLE table_name_98 (gold INTEGER, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(gold) FROM table_name_31 WHERE bronze < 0", "question": "What is the value for Gold, when the value for Bronze is less than 0?", "context": "CREATE TABLE table_name_31 (gold VARCHAR, bronze INTEGER)"}, {"answer": "SELECT area FROM table_name_61 WHERE authority = \"state\" AND decile > 6 AND gender = \"coed\" AND roll = 26", "question": "Where is the coed school with state authority, a Decile larger than 6 and 26 enrolled?", "context": "CREATE TABLE table_name_61 (area VARCHAR, roll VARCHAR, gender VARCHAR, authority VARCHAR, decile VARCHAR)"}, {"answer": "SELECT AVG(roll) FROM table_name_18 WHERE name = \"fairfield school\"", "question": "What is the average roll for Fairfield school?", "context": "CREATE TABLE table_name_18 (roll INTEGER, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_5 WHERE roll > 26 AND area = \"fairfield\"", "question": "Which school has a roll larger than 26 and is located in Fairfield?", "context": "CREATE TABLE table_name_5 (name VARCHAR, roll VARCHAR, area VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_34 WHERE chassis = \"porsche 718\" AND year < 1964", "question": "how many points are there for a Chassis of porsche 718, and a Year smaller than 1964?", "context": "CREATE TABLE table_name_34 (points VARCHAR, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_27 WHERE points = 0 AND chassis = \"porsche 718\" AND year = 1961", "question": "what is the engine that saw 0 points, and a Chassis of porsche 718, in 1961?", "context": "CREATE TABLE table_name_27 (engine VARCHAR, year VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_57 WHERE chassis = \"porsche 718\" AND points = 0 AND year < 1964", "question": "what is the engine that saw a Chassis of porsche 718, and 0 points, prior to 1964?", "context": "CREATE TABLE table_name_57 (engine VARCHAR, year VARCHAR, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_85 WHERE nation = \"poland\"", "question": "Which bronze has a Nation of poland?", "context": "CREATE TABLE table_name_85 (bronze VARCHAR, nation VARCHAR)"}, {"answer": "SELECT gold FROM table_name_15 WHERE silver = \"3\" AND total = \"5\"", "question": "Which gold has 3 silver and a Total of 5?", "context": "CREATE TABLE table_name_15 (gold VARCHAR, silver VARCHAR, total VARCHAR)"}, {"answer": "SELECT gold FROM table_name_65 WHERE bronze = \"1\" AND rank = \"47\" AND nation = \"spain\"", "question": "Which gold has a Bronze of 1, a Rank of 47, and a Nation of spain?", "context": "CREATE TABLE table_name_65 (gold VARCHAR, nation VARCHAR, bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT nation FROM table_name_46 WHERE silver = \"1\" AND gold = \"0\" AND total = \"1\"", "question": "Which nation has a Silver of 1, a Gold of 0, and a Total of 1?", "context": "CREATE TABLE table_name_46 (nation VARCHAR, total VARCHAR, silver VARCHAR, gold VARCHAR)"}, {"answer": "SELECT bronze FROM table_name_66 WHERE rank = \"37\"", "question": "Which bronze has a Rank of 37?", "context": "CREATE TABLE table_name_66 (bronze VARCHAR, rank VARCHAR)"}, {"answer": "SELECT silver FROM table_name_76 WHERE bronze = \"1\" AND total = \"4\" AND nation = \"slovakia\"", "question": "Which silver has a Bronze of 1, a Total of 4, and a Nation of slovakia?", "context": "CREATE TABLE table_name_76 (silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_16 WHERE qual = \"138.750\"", "question": "What car had the fewest laps with a qual of 138.750?", "context": "CREATE TABLE table_name_16 (laps INTEGER, qual VARCHAR)"}, {"answer": "SELECT laps FROM table_name_3 WHERE qual = \"138.750\"", "question": "How many laps were there for the car with a qual of 138.750?", "context": "CREATE TABLE table_name_3 (laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT rank FROM table_name_72 WHERE qual = \"134.288\"", "question": "For the car with a qual of 134.288, what was the rank?", "context": "CREATE TABLE table_name_72 (rank VARCHAR, qual VARCHAR)"}, {"answer": "SELECT finish FROM table_name_95 WHERE year = \"1953\"", "question": "What was the finishing place for 1953?", "context": "CREATE TABLE table_name_95 (finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT name FROM table_name_73 WHERE laid_down = \"22 september 1939\" AND commissioned = \"30 august 1941\"", "question": "Tell me the name for commissioned of 30 august 1941 and laid down of 22 september 1939", "context": "CREATE TABLE table_name_73 (name VARCHAR, laid_down VARCHAR, commissioned VARCHAR)"}, {"answer": "SELECT score FROM table_name_70 WHERE loss = \"birkbeck (0\u20133)\"", "question": "What is the score when there was a Loss of birkbeck (0\u20133)?", "context": "CREATE TABLE table_name_70 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT gpu\u2021 FROM table_name_31 WHERE application = \"cushaw\"", "question": "Which GPU has the cushaw application?", "context": "CREATE TABLE table_name_31 (gpu\u2021 VARCHAR, application VARCHAR)"}, {"answer": "SELECT expected_speed_up\u2020 FROM table_name_47 WHERE application = \"gpu-hmmer\"", "question": "What is the expected speed up of the gpu-hmmer application?", "context": "CREATE TABLE table_name_47 (expected_speed_up\u2020 VARCHAR, application VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_32 WHERE stadium = \"cleveland browns stadium\"", "question": "Who was the host team at the game at the Cleveland Browns Stadium?", "context": "CREATE TABLE table_name_32 (host_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_94 WHERE visiting_team = \"buffalo bills\"", "question": "What was the final score when the Buffalo Bills were the visiting team?", "context": "CREATE TABLE table_name_94 (final_score VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_27 WHERE visiting_team = \"denver broncos\"", "question": "What was the final score when the Denver Broncos were the visiting team?", "context": "CREATE TABLE table_name_27 (final_score VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE stadium = \"alltel stadium\" AND final_score = \"6-20\"", "question": "What is the date that a game at the Alltel Stadium had a final score of 6-20?", "context": "CREATE TABLE table_name_48 (date VARCHAR, stadium VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT SUM(2 AS nd_pl) FROM table_name_14 WHERE motorcycle = \"ducati 916\" AND wins < 7", "question": "How many times was the motorcycle ducati 916 2nd place when wins is less than 7?", "context": "CREATE TABLE table_name_14 (motorcycle VARCHAR, wins VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_31 WHERE label = \"alfa records\" AND date = \"november 21, 1980\"", "question": "What Catalog has a label of Alfa records and a date of November 21, 1980?", "context": "CREATE TABLE table_name_31 (catalog VARCHAR, label VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_68 WHERE format = \"ed remaster cd\" AND date = \"december 19, 2001\"", "question": "What catalog has a format of ED remaster CD  and a date of December 19, 2001?", "context": "CREATE TABLE table_name_68 (catalog VARCHAR, format VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_35 WHERE label = \"alfa records\"", "question": "What Date has a label of alfa records?", "context": "CREATE TABLE table_name_35 (date VARCHAR, label VARCHAR)"}, {"answer": "SELECT region FROM table_name_46 WHERE label = \"alfa records\" AND date = \"january 23, 1987\"", "question": "What region has the label of alfa records and the date of January 23, 1987?", "context": "CREATE TABLE table_name_46 (region VARCHAR, label VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_72 WHERE format = \"cd\" AND catalog = \"alca-274\"", "question": "What date has the format of CD and catalog of alca-274?", "context": "CREATE TABLE table_name_72 (date VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_40 WHERE format = \"cd\"", "question": "What date has the format of cd?", "context": "CREATE TABLE table_name_40 (date VARCHAR, format VARCHAR)"}, {"answer": "SELECT decile FROM table_name_33 WHERE name = \"st mary's catholic school\"", "question": "What is the Decile number for St Mary's Catholic School?", "context": "CREATE TABLE table_name_33 (decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT authority FROM table_name_23 WHERE name = \"hauturu school\"", "question": "Which Authority is set for Hauturu School?", "context": "CREATE TABLE table_name_23 (authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_60 WHERE area = \"kio kio\"", "question": "What School is in the kio kio area?", "context": "CREATE TABLE table_name_60 (name VARCHAR, area VARCHAR)"}, {"answer": "SELECT race FROM table_name_61 WHERE position = \"5th\"", "question": "What race is in the 5th position?", "context": "CREATE TABLE table_name_61 (race VARCHAR, position VARCHAR)"}, {"answer": "SELECT replica FROM table_name_46 WHERE race = \"supersport race 1\"", "question": "What Replica has a race of supersport race 1?", "context": "CREATE TABLE table_name_46 (replica VARCHAR, race VARCHAR)"}, {"answer": "SELECT replica FROM table_name_82 WHERE position = \"5th\"", "question": "What replica has the 5th position?", "context": "CREATE TABLE table_name_82 (replica VARCHAR, position VARCHAR)"}, {"answer": "SELECT decimal FROM table_name_9 WHERE byte_string = \"standard\" AND model = \"sigma 7\"", "question": "When a Sigma 7 has a standard byte string, what is the value for the decimal?", "context": "CREATE TABLE table_name_9 (decimal VARCHAR, byte_string VARCHAR, model VARCHAR)"}, {"answer": "SELECT byte_string FROM table_name_23 WHERE memory_map = \"standard\" AND decimal = \"standard\" AND floating_point = \"standard\" AND max_memory__kwords_ < 512", "question": "What is the value for the byte string when the memory map, decimal, and floating points are all standard and the max memory is smaller than 512?", "context": "CREATE TABLE table_name_23 (byte_string VARCHAR, max_memory__kwords_ VARCHAR, floating_point VARCHAR, memory_map VARCHAR, decimal VARCHAR)"}, {"answer": "SELECT model FROM table_name_90 WHERE byte_string = \"standard\" AND floating_point = \"standard\"", "question": "What model has both a standard byte string and floating-point?", "context": "CREATE TABLE table_name_90 (model VARCHAR, byte_string VARCHAR, floating_point VARCHAR)"}, {"answer": "SELECT memory_map FROM table_name_68 WHERE byte_string = \"standard\" AND max_memory__kwords_ > 128 AND model = \"sigma 9\"", "question": "On a Sigma 9 with a standard byte string and more than 128 max memory, what is the value of the memory map?", "context": "CREATE TABLE table_name_68 (memory_map VARCHAR, model VARCHAR, byte_string VARCHAR, max_memory__kwords_ VARCHAR)"}, {"answer": "SELECT decimal FROM table_name_19 WHERE byte_string = \"standard\" AND memory_map = \"standard\" AND max_memory__kwords_ = 512", "question": "What is the decimal value when the memory map and byte string are standard, and the max memory is 512?", "context": "CREATE TABLE table_name_19 (decimal VARCHAR, max_memory__kwords_ VARCHAR, byte_string VARCHAR, memory_map VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_41 WHERE pos = \"dnf\" AND class = \"gt1\"", "question": "Who was the co-driver in the DNF position in the GT1 class?", "context": "CREATE TABLE table_name_41 (co_drivers VARCHAR, pos VARCHAR, class VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_14 WHERE year < 1986 AND team = \"martini lancia\"", "question": "Which co-driver was part of team Martini Lancia earlier than 1986?", "context": "CREATE TABLE table_name_14 (co_drivers VARCHAR, year VARCHAR, team VARCHAR)"}, {"answer": "SELECT class FROM table_name_53 WHERE team = \"le mans porsche team joest racing\"", "question": "The Le Mans Porsche team Joest Racing is in which class?", "context": "CREATE TABLE table_name_53 (class VARCHAR, team VARCHAR)"}, {"answer": "SELECT build_date FROM table_name_65 WHERE total_produced = 146", "question": "Name the build date for total produced of 146", "context": "CREATE TABLE table_name_65 (build_date VARCHAR, total_produced VARCHAR)"}, {"answer": "SELECT model FROM table_name_54 WHERE specification = \"dl-066\"", "question": "Name the model for specification of dl-066", "context": "CREATE TABLE table_name_54 (model VARCHAR, specification VARCHAR)"}, {"answer": "SELECT power_output FROM table_name_29 WHERE model = \"s-13\"", "question": "Name the power output for model of s-13", "context": "CREATE TABLE table_name_29 (power_output VARCHAR, model VARCHAR)"}, {"answer": "SELECT worst_score FROM table_name_95 WHERE best_score = 36 AND worst_dancer_s_ = \"john barnes\"", "question": "What's the worst score for the worst dancer(s) john barnes, with a best score of 36?", "context": "CREATE TABLE table_name_95 (worst_score VARCHAR, best_score VARCHAR, worst_dancer_s_ VARCHAR)"}, {"answer": "SELECT worst_dancer_s_ FROM table_name_91 WHERE dance = \"jive\"", "question": "What's the worst dance of jive dancer(s)?", "context": "CREATE TABLE table_name_91 (worst_dancer_s_ VARCHAR, dance VARCHAR)"}, {"answer": "SELECT best_score FROM table_name_19 WHERE worst_dancer_s_ = \"gethin jones/kenny logan\"", "question": "What's the best score, with the worst dancer(s) gethin jones/kenny logan?", "context": "CREATE TABLE table_name_19 (best_score VARCHAR, worst_dancer_s_ VARCHAR)"}, {"answer": "SELECT AVG(best_score) FROM table_name_46 WHERE worst_score = 15", "question": "What's the best average score with a bad score of 15?", "context": "CREATE TABLE table_name_46 (best_score INTEGER, worst_score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE record = \"66-69\"", "question": "What is the name of the opponent that has a record of 66-69?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_88 WHERE player = \"olin dutra\"", "question": "What was Olin Dutra's score?", "context": "CREATE TABLE table_name_88 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_22 WHERE player = \"craig wood\"", "question": "What was Craig Wood's score?", "context": "CREATE TABLE table_name_22 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_22 WHERE player = \"paul runyan\"", "question": "What was Paul Runyan's score?", "context": "CREATE TABLE table_name_22 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_84 WHERE to_par = \"e\"", "question": "What country has a To par of e?", "context": "CREATE TABLE table_name_84 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT position FROM table_name_5 WHERE school = \"villa park high school\"", "question": "What position for the player from villa park high school?", "context": "CREATE TABLE table_name_5 (position VARCHAR, school VARCHAR)"}, {"answer": "SELECT total FROM table_name_70 WHERE nation = \"czech republic\"", "question": "What is the total number of medals by the Czech republic?", "context": "CREATE TABLE table_name_70 (total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_56 WHERE rank < 2 AND bronze > 8", "question": "How many gold medals does the country ranked higher than 2 with more than 8 bronze have?", "context": "CREATE TABLE table_name_56 (gold INTEGER, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_98 WHERE gold < 3 AND silver > 2 AND total < 5", "question": "What is the highest rank a country with less than 3 gold, more than 2 silver, and less than 5 total medals has?", "context": "CREATE TABLE table_name_98 (rank INTEGER, total VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT date FROM table_name_51 WHERE record = \"5-4\"", "question": "When is the record 5-4?", "context": "CREATE TABLE table_name_51 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT genre FROM table_name_7 WHERE artist = \"prince\"", "question": "What is the Genre when the Artist is Prince?", "context": "CREATE TABLE table_name_7 (genre VARCHAR, artist VARCHAR)"}, {"answer": "SELECT genre FROM table_name_79 WHERE release_year_of_first_charted_record = 1968 AND country_of_origin = \"united states\"", "question": "What is the Genre, when the Release-year of first charted record is 1968, and when the Country of origin is United States?", "context": "CREATE TABLE table_name_79 (genre VARCHAR, release_year_of_first_charted_record VARCHAR, country_of_origin VARCHAR)"}, {"answer": "SELECT rr_nos FROM table_name_15 WHERE builder = \"hudswell clarke\" AND year < 1914", "question": "Name the RR numbers of hudswell clarke and years before 1914", "context": "CREATE TABLE table_name_15 (rr_nos VARCHAR, builder VARCHAR, year VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_67 WHERE player = \"vijay singh\"", "question": "What is the To par has the presence of Vijay Singh?", "context": "CREATE TABLE table_name_67 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT laps FROM table_name_51 WHERE rank = \"14\"", "question": "How many laps did Dick Rathmann complete when he ranked 14?", "context": "CREATE TABLE table_name_51 (laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT finish FROM table_name_35 WHERE qual = \"130.928\"", "question": "What was Dick Rathmann's Finish the year he Qualed at 130.928?", "context": "CREATE TABLE table_name_35 (finish VARCHAR, qual VARCHAR)"}, {"answer": "SELECT AVG(total_produced) FROM table_name_49 WHERE prime_mover = \"12-251c\"", "question": "What is the average total produced when the prime mover is 12-251c?", "context": "CREATE TABLE table_name_49 (total_produced INTEGER, prime_mover VARCHAR)"}, {"answer": "SELECT build_date FROM table_name_80 WHERE total_produced = 2", "question": "What is the build date when total produced is 2?", "context": "CREATE TABLE table_name_80 (build_date VARCHAR, total_produced VARCHAR)"}, {"answer": "SELECT MIN(total_produced) FROM table_name_47 WHERE model = \"m-420\"", "question": "What is the smallest total produced with a model of M-420?", "context": "CREATE TABLE table_name_47 (total_produced INTEGER, model VARCHAR)"}, {"answer": "SELECT prime_mover FROM table_name_87 WHERE build_date = \"1975\"", "question": "What is the prime mover for a build date in 1975?", "context": "CREATE TABLE table_name_87 (prime_mover VARCHAR, build_date VARCHAR)"}, {"answer": "SELECT model FROM table_name_15 WHERE total_produced > 5 AND prime_mover = \"12-251c\"", "question": "What model has a total produced more than 5 and a prime move of 12-251c?", "context": "CREATE TABLE table_name_15 (model VARCHAR, total_produced VARCHAR, prime_mover VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE decision = \"joseph\" AND home = \"detroit\" AND record = \"27\u201313\u20135\u20132\"", "question": "What was the date of the home Detroit game with a decision of Joseph and a record of 27\u201313\u20135\u20132?", "context": "CREATE TABLE table_name_85 (date VARCHAR, record VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_16 WHERE decision = \"legace\" AND home = \"dallas\"", "question": "What was the score of the home Dallas game that had a decision of Legace?", "context": "CREATE TABLE table_name_16 (score VARCHAR, decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_24 WHERE decision = \"joseph\" AND record = \"26\u201313\u20134\u20132\"", "question": "What was the score of the game that had a record of 26\u201313\u20134\u20132 and a decision of Joseph?", "context": "CREATE TABLE table_name_24 (score VARCHAR, decision VARCHAR, record VARCHAR)"}, {"answer": "SELECT visitor FROM table_name_86 WHERE record = \"28\u201314\u20136\u20132\"", "question": "Who was the visiting team when the record was 28\u201314\u20136\u20132?", "context": "CREATE TABLE table_name_86 (visitor VARCHAR, record VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_36 WHERE engine = \"mugen v8\" AND chassis = \"reynard 91d\"", "question": "What are the lowest points that have a Mugen V8 engine and a Reynard 91D chassis?", "context": "CREATE TABLE table_name_36 (points INTEGER, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_83 WHERE engine = \"mugen v8\" AND year = 1991", "question": "What are the highest points that have a Mugen V8 engine and happened in 1991?", "context": "CREATE TABLE table_name_83 (points INTEGER, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_3 WHERE engine = \"cosworth v8\" AND entrant = \"john player lotus\"", "question": "How many years did John Player Lotus used Cosworth v8?", "context": "CREATE TABLE table_name_3 (year INTEGER, engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_2 WHERE year > 1989 AND chassis = \"eurobrun er189b\"", "question": "Who used Eurobrun er189b after 1989?", "context": "CREATE TABLE table_name_2 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_50 WHERE year > 1990 AND engine = \"ford v8\" AND points = 8 AND chassis = \"jordan 191\"", "question": "Who used Ford v8 and Jordan 191 after 1990 and got 8 points?", "context": "CREATE TABLE table_name_50 (entrant VARCHAR, chassis VARCHAR, points VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT leftfielder FROM table_name_90 WHERE second_baseman = \"davey lopes\" AND first_baseman = \"steve garvey\" AND shortstop = \"bill russell\" AND year > 1977", "question": "What is the name of the Leftfielder when Davey Lopes was the Second Baseman and first baseman was steve garvey, Shortstop of bill russell eariler than 1977?", "context": "CREATE TABLE table_name_90 (leftfielder VARCHAR, year VARCHAR, shortstop VARCHAR, second_baseman VARCHAR, first_baseman VARCHAR)"}, {"answer": "SELECT shortstop FROM table_name_40 WHERE catcher = \"johnny roseboro\" AND third_baseman = \"jim lefebvre\" AND second_baseman = \"nate oliver\"", "question": "What is the name of the shortstop when the Catcher was johnny roseboro, and a Third Baseman of jim lefebvre, and a Second Baseman of nate oliver?", "context": "CREATE TABLE table_name_40 (shortstop VARCHAR, second_baseman VARCHAR, catcher VARCHAR, third_baseman VARCHAR)"}, {"answer": "SELECT first_baseman FROM table_name_53 WHERE shortstop = \"zoilo versalles\"", "question": "Who was the First Baseman when the Shortstop was zoilo versalles?", "context": "CREATE TABLE table_name_53 (first_baseman VARCHAR, shortstop VARCHAR)"}, {"answer": "SELECT leftfielder FROM table_name_25 WHERE shortstop = \"bill russell\" AND second_baseman = \"steve sax\" AND year = 1983", "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 MIN(year) FROM table_name_40 WHERE points < 3 AND entrant = \"parmalat forti ford\"", "question": "What is the earliest year with less than 3 points and Parmalat Forti Ford was the entrant?", "context": "CREATE TABLE table_name_40 (year INTEGER, points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_17 WHERE entrant = \"equipe ligier gauloises blondes\"", "question": "What is the average Points when equipe ligier gauloises blondes is the entrant?", "context": "CREATE TABLE table_name_17 (points INTEGER, entrant VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_86 WHERE entrant = \"parmalat forti ford\" AND year > 1995", "question": "What is the smallest amount of points for parmalat forti ford entrant later than 1995?", "context": "CREATE TABLE table_name_86 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_19 WHERE entrant = \"danka arrows yamaha\"", "question": "What is the company that made the chassis for the entrant danka arrows yamaha?", "context": "CREATE TABLE table_name_19 (chassis VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT college FROM table_name_2 WHERE name = \"ray graves\"", "question": "What college did Ray Graves attend?", "context": "CREATE TABLE table_name_2 (college VARCHAR, name VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_70 WHERE name = \"bill athey\"", "question": "What number pick was Bill Athey?", "context": "CREATE TABLE table_name_70 (pick__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_47 WHERE name = \"john cole\"", "question": "What is John Cole's overall pick number?", "context": "CREATE TABLE table_name_47 (overall VARCHAR, name VARCHAR)"}, {"answer": "SELECT date_made FROM table_name_50 WHERE class = \"waterford\"", "question": "What is the date of the locomotive with a Waterford class?", "context": "CREATE TABLE table_name_50 (date_made VARCHAR, class VARCHAR)"}, {"answer": "SELECT date_made FROM table_name_69 WHERE names = \"blacklion glencar\"", "question": "What is the date of the locomotive named Blacklion Glencar?", "context": "CREATE TABLE table_name_69 (date_made VARCHAR, names VARCHAR)"}, {"answer": "SELECT quantity_made FROM table_name_67 WHERE class = \"waterford\"", "question": "What is the quantity made of the locomotive with a Waterford class?", "context": "CREATE TABLE table_name_67 (quantity_made VARCHAR, class VARCHAR)"}, {"answer": "SELECT class FROM table_name_16 WHERE quantity_made = \"1\" AND type = \"0-6-0t\"", "question": "What is the class of the locomotive with a quantity made of 1 and a 0-6-0t type?", "context": "CREATE TABLE table_name_16 (class VARCHAR, quantity_made VARCHAR, type VARCHAR)"}, {"answer": "SELECT class FROM table_name_23 WHERE type = \"0-4-0st\"", "question": "What is the class of the locomotive with a 0-4-0st type?", "context": "CREATE TABLE table_name_23 (class VARCHAR, type VARCHAR)"}, {"answer": "SELECT names FROM table_name_98 WHERE class = \"glencar\"", "question": "What is the name of the locomotive with a Glencar class?", "context": "CREATE TABLE table_name_98 (names VARCHAR, class VARCHAR)"}, {"answer": "SELECT country FROM table_name_75 WHERE type = \"signed\" AND moving_from = \"porto\"", "question": "What country has signed type moving from porto?", "context": "CREATE TABLE table_name_75 (country VARCHAR, type VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_38 WHERE moving_from = \"borussia dortmund\"", "question": "Which transfer window was moving from borussia dortmund?", "context": "CREATE TABLE table_name_38 (transfer_window VARCHAR, moving_from VARCHAR)"}, {"answer": "SELECT moving_from FROM table_name_64 WHERE country = \"esp\" AND transfer_fee = \"youth system\"", "question": "What is moving from esp with transfer fee of youth system?", "context": "CREATE TABLE table_name_64 (moving_from VARCHAR, country VARCHAR, transfer_fee VARCHAR)"}, {"answer": "SELECT transfer_window FROM table_name_85 WHERE country = \"esp\" AND type = \"promoted\" AND ends > 2010", "question": "What is the transfer window in esp with promoted type and more than 2010 ends?", "context": "CREATE TABLE table_name_85 (transfer_window VARCHAR, ends VARCHAR, country VARCHAR, type VARCHAR)"}, {"answer": "SELECT week_12 FROM table_name_38 WHERE week_2 = \"magda tomek\"", "question": "Who is the week 12 for the week 2 with Magda Tomek?", "context": "CREATE TABLE table_name_38 (week_12 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_12 FROM table_name_35 WHERE week_4 = \"gerard ewelina\"", "question": "Who is the week 12 for the week 4 of Gerard Ewelina?", "context": "CREATE TABLE table_name_35 (week_12 VARCHAR, week_4 VARCHAR)"}, {"answer": "SELECT points FROM table_name_12 WHERE rebounds = \"al jefferson (7)\"", "question": "Who was the leader in Points when Al Jefferson (7) was the leader in Rebounds?", "context": "CREATE TABLE table_name_12 (points VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT steals FROM table_name_87 WHERE rebounds = \"travis watson (9)\"", "question": "Who was the leader in Steals when Travis Watson (9) was the leader in Rebounds?", "context": "CREATE TABLE table_name_87 (steals VARCHAR, rebounds VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_22 WHERE rebounds = \"al harrington (9)\"", "question": "What was the 1st Year Al Harrington (9) the leader in Rebounds?", "context": "CREATE TABLE table_name_22 (year INTEGER, rebounds VARCHAR)"}, {"answer": "SELECT points FROM table_name_7 WHERE steals = \"3 tied (2)\" AND assists = \"2 tied (5)\"", "question": "Who was the leader in Points with Assists of 2 tied (5) and Steals of 3 tied (2)?", "context": "CREATE TABLE table_name_7 (points VARCHAR, steals VARCHAR, assists VARCHAR)"}, {"answer": "SELECT AVG(average) FROM table_name_40 WHERE tally = \"0-29\" AND total > 29", "question": "Name the average with tally of 0-29 and total more than 29", "context": "CREATE TABLE table_name_40 (average INTEGER, tally VARCHAR, total VARCHAR)"}, {"answer": "SELECT tally FROM table_name_86 WHERE total < 27 AND average > 3.41", "question": "Name the tally with total less than 27 and average more than 3.41", "context": "CREATE TABLE table_name_86 (tally VARCHAR, total VARCHAR, average VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_14 WHERE engine = \"maserati straight-6\" AND entrant = \"h h gould\"", "question": "For engines of Maserati Straight-6 and entrants of H H Gould, what is the latest year?", "context": "CREATE TABLE table_name_14 (year INTEGER, engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_41 WHERE entrant = \"goulds' garage (bristol)\" AND engine = \"maserati straight-6\" AND year < 1956", "question": "What is the fewest number of points scored by Goulds' Garage (Bristol), engines of Maserati Straight-6, in years before 1956?", "context": "CREATE TABLE table_name_41 (points INTEGER, year VARCHAR, entrant VARCHAR, engine VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_59 WHERE points < 2 AND entrant = \"goulds' garage (bristol)\" AND year = 1954", "question": "Which chassis has fewer than 2 points, entrants of Goulds' Garage (Bristol), in 1954?", "context": "CREATE TABLE table_name_59 (chassis VARCHAR, year VARCHAR, points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_39 WHERE chassis = \"maserati 250f\" AND year > 1955", "question": "What is the most points that the Maserati 250F chassis scored in years after 1955?", "context": "CREATE TABLE table_name_39 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT engine FROM table_name_74 WHERE year > 1956", "question": "Which engine has a year larger than 1956?", "context": "CREATE TABLE table_name_74 (engine VARCHAR, year INTEGER)"}, {"answer": "SELECT MIN(age_on_mission) FROM table_name_81 WHERE name = \"stu roosa\"", "question": "What is the lowest age of an astronaut named Stu Roosa?", "context": "CREATE TABLE table_name_81 (age_on_mission INTEGER, name VARCHAR)"}, {"answer": "SELECT mission FROM table_name_70 WHERE service = \"nasa\" AND age_on_mission = 38", "question": "What mission did the astronaut who 38 years old on the mission and who served in NASA serve on?", "context": "CREATE TABLE table_name_70 (mission VARCHAR, service VARCHAR, age_on_mission VARCHAR)"}, {"answer": "SELECT lithium FROM table_name_54 WHERE rubidium = \"nabr (1.9)\"", "question": "what is the type of lithium when rubidium is nabr (1.9)?", "context": "CREATE TABLE table_name_54 (lithium VARCHAR, rubidium VARCHAR)"}, {"answer": "SELECT sodium FROM table_name_98 WHERE rubidium = \"nacl (2.1)\"", "question": "what is the properties of sodium when rubidium is nacl (2.1)?", "context": "CREATE TABLE table_name_98 (sodium VARCHAR, rubidium VARCHAR)"}, {"answer": "SELECT potassium FROM table_name_76 WHERE lithium = \"h a l o g e n s\" AND sodium = \"bromine\"", "question": "what is the properties of potassium when lithium is h a l o g e n s and sodium is bromine?", "context": "CREATE TABLE table_name_76 (potassium VARCHAR, lithium VARCHAR, sodium VARCHAR)"}, {"answer": "SELECT lithium FROM table_name_17 WHERE caesium = \"ki (1.7)\"", "question": "what is the properties of lithium when caesium is ki (1.7)?", "context": "CREATE TABLE table_name_17 (lithium VARCHAR, caesium VARCHAR)"}, {"answer": "SELECT sodium FROM table_name_10 WHERE lithium = \"h a l o g e n s\" AND rubidium = \"nacl (2.1)\"", "question": "what is the properties of sodium when lithium is h a l o g e n s and rubidium is nacl (2.1)?", "context": "CREATE TABLE table_name_10 (sodium VARCHAR, lithium VARCHAR, rubidium VARCHAR)"}, {"answer": "SELECT sodium FROM table_name_66 WHERE potassium = \"lii (1.5)\"", "question": "what is the properties of sodium when potassium is lii (1.5)?", "context": "CREATE TABLE table_name_66 (sodium VARCHAR, potassium VARCHAR)"}, {"answer": "SELECT prime_mover FROM table_name_61 WHERE model = \"rs-18\"", "question": "Which prime mover had a Model of rs-18?", "context": "CREATE TABLE table_name_61 (prime_mover VARCHAR, model VARCHAR)"}, {"answer": "SELECT model FROM table_name_98 WHERE specification = \"dl-718\"", "question": "Which model had a Specification of dl-718?", "context": "CREATE TABLE table_name_98 (model VARCHAR, specification VARCHAR)"}, {"answer": "SELECT power_output FROM table_name_23 WHERE build_date = \"1951\u20131956\"", "question": "Which power output had a Build date of 1951\u20131956?", "context": "CREATE TABLE table_name_23 (power_output VARCHAR, build_date VARCHAR)"}, {"answer": "SELECT wheel_arrangement FROM table_name_9 WHERE specification = \"dl-700\"", "question": "Which wheel arrangement had a Specification of dl-700?", "context": "CREATE TABLE table_name_9 (wheel_arrangement VARCHAR, specification VARCHAR)"}, {"answer": "SELECT player FROM table_name_2 WHERE year_born < 1985 AND height < 2.02", "question": "Who is the player born before 1985 who is less than 2.02 tall?", "context": "CREATE TABLE table_name_2 (player VARCHAR, year_born VARCHAR, height VARCHAR)"}, {"answer": "SELECT player FROM table_name_22 WHERE year_born < 1980 AND current_club = \"toronto raptors\"", "question": "Who is the player who was born before 1980 who currently plays for the Toronto Raptors?", "context": "CREATE TABLE table_name_22 (player VARCHAR, year_born VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT position FROM table_name_39 WHERE height < 1.96 AND year_born > 1980 AND player = \"sergio rodr\u00edguez\"", "question": "What position does Sergio Rodr\u00edguez, who is less than 1.96 tall and was born after 1980, play?", "context": "CREATE TABLE table_name_39 (position VARCHAR, player VARCHAR, height VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT year_born FROM table_name_25 WHERE position = \"guard\" AND current_club = \"memphis grizzlies\"", "question": "What year was the Guard who currently plays for the Memphis Grizzlies born?", "context": "CREATE TABLE table_name_25 (year_born VARCHAR, position VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT height FROM table_name_1 WHERE position = \"forward\" AND current_club = \"toronto raptors\"", "question": "What is the height of the Forward who currently plays for the Toronto Raptors?", "context": "CREATE TABLE table_name_1 (height VARCHAR, position VARCHAR, current_club VARCHAR)"}, {"answer": "SELECT group_position FROM table_name_55 WHERE date = \"24 september 2002\"", "question": "Date of 24 september 2002 is what group position?", "context": "CREATE TABLE table_name_55 (group_position VARCHAR, date VARCHAR)"}, {"answer": "SELECT result_f_a FROM table_name_37 WHERE date = \"24 september 2002\"", "question": "Date of 24 september 2002 had what F-A result?", "context": "CREATE TABLE table_name_37 (result_f_a VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_42 WHERE result_f_a = \"2\u20130\"", "question": "Result F\u2013A of 2\u20130 had what total number of attendance?", "context": "CREATE TABLE table_name_42 (attendance VARCHAR, result_f_a VARCHAR)"}, {"answer": "SELECT score FROM table_name_47 WHERE loss = \"myers (5-6)\"", "question": "What was the score of the game with a loss of Myers (5-6)?", "context": "CREATE TABLE table_name_47 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_50 WHERE attendance = \"41,212\"", "question": "What was the loss of the game attended by 41,212?", "context": "CREATE TABLE table_name_50 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_84 WHERE loss = \"wolf (3-4)\"", "question": "What was the attendance of the game that had a loss of Wolf (3-4)?", "context": "CREATE TABLE table_name_84 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT nation FROM table_name_60 WHERE athlete = \"bianca knight\"", "question": "what nation is bianca knight the answer for?", "context": "CREATE TABLE table_name_60 (nation VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT MIN(wind__m_s_) FROM table_name_16 WHERE nation = \"united states\" AND athlete = \"brenda morehead\"", "question": "what is the wind speed when brenda morehead was in the united states?", "context": "CREATE TABLE table_name_16 (wind__m_s_ INTEGER, nation VARCHAR, athlete VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_97 WHERE location = \"dresden\" AND fastest_time__s_ < 10.88", "question": "what is the highest rank in dresden with a time faster than 10.88?", "context": "CREATE TABLE table_name_97 (rank INTEGER, location VARCHAR, fastest_time__s_ VARCHAR)"}, {"answer": "SELECT course FROM table_name_10 WHERE date = \"1 june\"", "question": "What is the course on 1 June?", "context": "CREATE TABLE table_name_10 (course VARCHAR, date VARCHAR)"}, {"answer": "SELECT winner FROM table_name_95 WHERE course = \"florence to genoa\"", "question": "Who is the winner of the Florence to Genoa course?", "context": "CREATE TABLE table_name_95 (winner VARCHAR, course VARCHAR)"}, {"answer": "SELECT date FROM table_name_44 WHERE course = \"rome to florence\"", "question": "What is the date of the Rome to Florence course?", "context": "CREATE TABLE table_name_44 (date VARCHAR, course VARCHAR)"}, {"answer": "SELECT assists FROM table_name_94 WHERE blocks = \"2 tied (1)\" AND year > 1995", "question": "What is Assists that has a Blocks of 2 tied (1) with a Year larger than 1995", "context": "CREATE TABLE table_name_94 (assists VARCHAR, blocks VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_81 WHERE heat = 6 AND time = \"dns\"", "question": "What is the highest lane for heat 6 with a time of dns?", "context": "CREATE TABLE table_name_81 (lane INTEGER, heat VARCHAR, time VARCHAR)"}, {"answer": "SELECT MIN(lane) FROM table_name_43 WHERE time = \"2:05.90\" AND heat > 3", "question": "What is the lowest lane with a time of 2:05.90, and a Heat larger than 3?", "context": "CREATE TABLE table_name_43 (lane INTEGER, time VARCHAR, heat VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_70 WHERE lane > 4 AND time = \"2:00.37\"", "question": "What nationality has a lane larger than 4 and a Time of 2:00.37?", "context": "CREATE TABLE table_name_70 (nationality VARCHAR, lane VARCHAR, time VARCHAR)"}, {"answer": "SELECT AVG(lane) FROM table_name_57 WHERE nationality = \"belarus\"", "question": "What is the average Lane where Belarus is the nationality?", "context": "CREATE TABLE table_name_57 (lane INTEGER, nationality VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_16 WHERE name = \"nisha millet\"", "question": "What is the highest lane for nisha millet?", "context": "CREATE TABLE table_name_16 (lane INTEGER, name VARCHAR)"}, {"answer": "SELECT date FROM table_name_31 WHERE course = \"rome to naples\"", "question": "On what date was the race course from Rome to Naples?", "context": "CREATE TABLE table_name_31 (date VARCHAR, course VARCHAR)"}, {"answer": "SELECT losing_bp FROM table_name_72 WHERE played = \"22\" AND try_bp = \"9\"", "question": "Name the Losing BP with 22 played and 9 Try BP.", "context": "CREATE TABLE table_name_72 (losing_bp VARCHAR, played VARCHAR, try_bp VARCHAR)"}, {"answer": "SELECT losing_bp FROM table_name_14 WHERE drawn = \"1\" AND try_bp = \"6\"", "question": "Name the Losing BP with drawn of 1 and a Try BP of 6.", "context": "CREATE TABLE table_name_14 (losing_bp VARCHAR, drawn VARCHAR, try_bp VARCHAR)"}, {"answer": "SELECT losing_bp FROM table_name_14 WHERE lost = \"19\" AND club = \"newport saracens rfc\"", "question": "Name the Losing BP of Newport Saracens RFC and has a Lost of 19.", "context": "CREATE TABLE table_name_14 (losing_bp VARCHAR, lost VARCHAR, club VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_39 WHERE played = \"22\" AND club = \"ystrad rhondda rfc\"", "question": "Name the Drawn for Ystrad Rhondda RFC and has Played of 22.", "context": "CREATE TABLE table_name_39 (drawn VARCHAR, played VARCHAR, club VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_60 WHERE lost = \"1\"", "question": "Can you name the drawn with a Lost of 1?", "context": "CREATE TABLE table_name_60 (drawn VARCHAR, lost VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_34 WHERE losing_bp = \"8\"", "question": "With a Losing BP of 8, what is the drawn?", "context": "CREATE TABLE table_name_34 (drawn VARCHAR, losing_bp VARCHAR)"}, {"answer": "SELECT disposals FROM table_name_84 WHERE marks = \"134\"", "question": "What is the number of disposals when marks is 134?", "context": "CREATE TABLE table_name_84 (disposals VARCHAR, marks VARCHAR)"}, {"answer": "SELECT score1 FROM table_name_9 WHERE match = 42", "question": "What is the Score1 of Match 42?", "context": "CREATE TABLE table_name_9 (score1 VARCHAR, match VARCHAR)"}, {"answer": "SELECT date FROM table_name_2 WHERE match > 8 AND ground = \"a\" AND opponent = \"guiseley\"", "question": "On what date was the match higher than 8 on ground A against Guiseley?", "context": "CREATE TABLE table_name_2 (date VARCHAR, opponent VARCHAR, match VARCHAR, ground VARCHAR)"}, {"answer": "SELECT ground FROM table_name_60 WHERE date = \"31 jul 2007\"", "question": "On what ground was the game on 31 Jul 2007?", "context": "CREATE TABLE table_name_60 (ground VARCHAR, date VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_20 WHERE player = \"david toms\"", "question": "What is the total of David Toms?", "context": "CREATE TABLE table_name_20 (total INTEGER, player VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_96 WHERE finish = \"t10\" AND country = \"fiji\"", "question": "What is the average of Fiji with t10 Finish?", "context": "CREATE TABLE table_name_96 (total INTEGER, finish VARCHAR, country VARCHAR)"}, {"answer": "SELECT player FROM table_name_60 WHERE year_s__won = \"1983\"", "question": "Who won in 1983?", "context": "CREATE TABLE table_name_60 (player VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT website FROM table_name_89 WHERE language = \"english\" AND frequency = \"daily\"", "question": "Which english website has a daily frequency ?", "context": "CREATE TABLE table_name_89 (website VARCHAR, language VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_70 WHERE city = \"nuevo laredo\" AND name = \"el diario de nuevo laredo\"", "question": "What is the frequency of the newspaper, el diario de nuevo laredo in the city of nuevo laredo ?", "context": "CREATE TABLE table_name_70 (frequency VARCHAR, city VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_17 WHERE website = \"liderinformativo.com\"", "question": "What is the name of the newspaper with the website liderinformativo.com ?", "context": "CREATE TABLE table_name_17 (name VARCHAR, website VARCHAR)"}, {"answer": "SELECT website FROM table_name_77 WHERE language = \"english\" AND frequency = \"online newspaper\"", "question": "Which website is in english and has the frequency of an online newspaper ?", "context": "CREATE TABLE table_name_77 (website VARCHAR, language VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT city FROM table_name_3 WHERE language = \"spanish\" AND website = \"ultimahora.com\"", "question": "Which city has spanish news on the website ultimahora.com ?", "context": "CREATE TABLE table_name_3 (city VARCHAR, language VARCHAR, website VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_92 WHERE year > 1959", "question": "Which line after 1959 had the highest amount of points?", "context": "CREATE TABLE table_name_92 (points INTEGER, year INTEGER)"}, {"answer": "SELECT MIN(points) FROM table_name_59 WHERE year = 1954", "question": "Which line has the lowest amount of points and a year of 1954?", "context": "CREATE TABLE table_name_59 (points INTEGER, year VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_59 WHERE entrant = \"christy\" AND year < 1954", "question": "What is the total amount of points that Christy has in the years before 1954?", "context": "CREATE TABLE table_name_59 (points INTEGER, entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_82 WHERE engine = \"offenhauser l4\" AND chassis = \"kurtis kraft 500c\" AND entrant = \"federal engineering\"", "question": "Which is the latest year that has an engine of Offenhauser l4, a chassis of Kurtis Kraft 500c, and the entrant of Federal Engineering?", "context": "CREATE TABLE table_name_82 (year INTEGER, entrant VARCHAR, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_76 WHERE year = 1954", "question": "Which chasis was in the year 1954?", "context": "CREATE TABLE table_name_76 (chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_31 WHERE year = 2007 AND competition = \"world league\" AND town = \"novi sad\" AND opponent = \"italy\"", "question": "What is the final score in 2007 for the world league in novi sad played against Italy?", "context": "CREATE TABLE table_name_31 (final_score VARCHAR, opponent VARCHAR, town VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT competition FROM table_name_56 WHERE town = \"budva\" AND opponent = \"italy\"", "question": "what is the competition played in budva against italy?", "context": "CREATE TABLE table_name_56 (competition VARCHAR, town VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT competition FROM table_name_79 WHERE final_score = \"6:5\"", "question": "what is the competition that had a final score of 6:5?", "context": "CREATE TABLE table_name_79 (competition VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_90 WHERE year < 2007 AND town = \"trieste\"", "question": "who is the opponent when played in trieste before 2007?", "context": "CREATE TABLE table_name_90 (opponent VARCHAR, year VARCHAR, town VARCHAR)"}, {"answer": "SELECT MIN(bonus_pts) FROM table_name_36 WHERE rider = \"bob jameson\" AND rides < 15", "question": "What was Bob Jameson's lowest bonus where he had less than 15 rides?", "context": "CREATE TABLE table_name_36 (bonus_pts INTEGER, rider VARCHAR, rides VARCHAR)"}, {"answer": "SELECT MIN(rides) FROM table_name_92 WHERE bonus_pts < 3 AND matches < 7", "question": "How many rides did it take to get less than 3 bonus pts in no more than 7 matches?", "context": "CREATE TABLE table_name_92 (rides INTEGER, bonus_pts VARCHAR, matches VARCHAR)"}, {"answer": "SELECT AVG(total_points) FROM table_name_29 WHERE matches = 34 AND rides = 111 AND bonus_pts > 15", "question": "What is the total for 34 matches with 111 rides, but no more than 15 bonus points?", "context": "CREATE TABLE table_name_29 (total_points INTEGER, bonus_pts VARCHAR, matches VARCHAR, rides VARCHAR)"}, {"answer": "SELECT COUNT(rides) FROM table_name_16 WHERE total_points < 274 AND rider = \"ray day\" AND bonus_pts > 3", "question": "How many rides did it take Ray Day to get 274 points in total with less than 3 bonus points?", "context": "CREATE TABLE table_name_16 (rides VARCHAR, bonus_pts VARCHAR, total_points VARCHAR, rider VARCHAR)"}, {"answer": "SELECT rider FROM table_name_37 WHERE total_points < 342 AND rides < 76 AND matches = 7 AND bonus_pts > 2", "question": "Which rider had less than 342 points in no more than 76 rides in 7 matches with more than 2 bonus points?", "context": "CREATE TABLE table_name_37 (rider VARCHAR, bonus_pts VARCHAR, matches VARCHAR, total_points VARCHAR, rides VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_41 WHERE date = \"aug 11, 2002\"", "question": "What is the Margin of victory on aug 11, 2002?", "context": "CREATE TABLE table_name_41 (margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE winning_score = \u201316(70 - 65 - 65 = 200)", "question": "When has a Winning score of \u201316 (70-65-65=200)?", "context": "CREATE TABLE table_name_98 (date VARCHAR, winning_score VARCHAR)"}, {"answer": "SELECT margin_of_victory FROM table_name_21 WHERE date = \"oct 5, 1997\"", "question": "What is the Margin of victory on oct 5, 1997?", "context": "CREATE TABLE table_name_21 (margin_of_victory VARCHAR, date VARCHAR)"}, {"answer": "SELECT winning_score FROM table_name_93 WHERE date = \"oct 22, 2000\"", "question": "What is the Winning score on oct 22, 2000?", "context": "CREATE TABLE table_name_93 (winning_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(total_viewers) FROM table_name_82 WHERE share = \"16.2%\" AND episode_no < 1", "question": "How many episodes have a share of 16.2% and an episode number of less than 1?", "context": "CREATE TABLE table_name_82 (total_viewers VARCHAR, share VARCHAR, episode_no VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_31 WHERE 2012 = \"2r\" AND tournament = \"french open\"", "question": "If the French Open tournament had 2r in 2012, what was it in 2010?", "context": "CREATE TABLE table_name_31 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_43 WHERE 2010 = \"2r\"", "question": "Which 2012 tournament had 2r in 2010?", "context": "CREATE TABLE table_name_43 (Id VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_60 WHERE 2010 = \"2r\"", "question": "Which tournament had 2r in 2010?", "context": "CREATE TABLE table_name_60 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_71 WHERE 2012 = \"2r\" AND tournament = \"french open\"", "question": "If the French Open tournament had 2r in 2012, what was it in 2009?", "context": "CREATE TABLE table_name_71 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_84 WHERE 2012 = \"2r\" AND tournament = \"us open\"", "question": "If the US Open tournament had 2r in 2012, what was it in 2010?", "context": "CREATE TABLE table_name_84 (tournament VARCHAR)"}, {"answer": "SELECT school FROM table_name_56 WHERE team = \"senators\"", "question": "What is the school, when the Team is Senators?", "context": "CREATE TABLE table_name_56 (school VARCHAR, team VARCHAR)"}, {"answer": "SELECT season_outcome FROM table_name_70 WHERE school = \"sussex tech\"", "question": "What is the Season Outcome, when the School is Sussex Tech?", "context": "CREATE TABLE table_name_70 (season_outcome VARCHAR, school VARCHAR)"}, {"answer": "SELECT school FROM table_name_15 WHERE team = \"golden knights\"", "question": "What is the School, when the Team is Golden Knights?", "context": "CREATE TABLE table_name_15 (school VARCHAR, team VARCHAR)"}, {"answer": "SELECT venue FROM table_name_2 WHERE result = \"5\u20131\"", "question": "What is the Venue where the Result is 5\u20131?", "context": "CREATE TABLE table_name_2 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE goal > 11 AND competition = \"2009 nehru cup\" AND date = \"24 august 2009\"", "question": "What was the Score where Goal is larger than 11, and a Competition of 2009 nehru cup, and had a Date of 24 august 2009?", "context": "CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR, goal VARCHAR, competition VARCHAR)"}, {"answer": "SELECT result FROM table_name_68 WHERE goal = 9", "question": "What is the Result where Goal is 9?", "context": "CREATE TABLE table_name_68 (result VARCHAR, goal VARCHAR)"}, {"answer": "SELECT goal FROM table_name_65 WHERE competition = \"international friendly\" AND result = \"2\u20131\"", "question": "What was Goal that where Competition of international friendly, and a Result of 2\u20131?", "context": "CREATE TABLE table_name_65 (goal VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT competition FROM table_name_59 WHERE score = \"3\u20130\" AND goal > 4", "question": "What is the Competition where the Score was 3\u20130, and the was Goal larger than 4?", "context": "CREATE TABLE table_name_59 (competition VARCHAR, score VARCHAR, goal VARCHAR)"}, {"answer": "SELECT population__2009_estimate_ FROM table_name_34 WHERE name = \"northeast\"", "question": "What is the 2009 estimate population of the Northeast?", "context": "CREATE TABLE table_name_34 (population__2009_estimate_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT population__2009_estimate_ FROM table_name_79 WHERE largest_city = \"manaus\"", "question": "What is the 2009 estimate population of the region with Manaus as the largest city?", "context": "CREATE TABLE table_name_79 (population__2009_estimate_ VARCHAR, largest_city VARCHAR)"}, {"answer": "SELECT number_of_states FROM table_name_83 WHERE population__2009_estimate_ = \"27,3 million\"", "question": "How many states has a 2009 estimate population of 27,3 million?", "context": "CREATE TABLE table_name_83 (number_of_states VARCHAR, population__2009_estimate_ VARCHAR)"}, {"answer": "SELECT largest_metropolitan_area FROM table_name_99 WHERE name = \"central-west\"", "question": "What is the largest metropolitan area of the Central-West?", "context": "CREATE TABLE table_name_99 (largest_metropolitan_area VARCHAR, name VARCHAR)"}, {"answer": "SELECT population__2009_estimate_ FROM table_name_11 WHERE largest_city = \"manaus\"", "question": "What is the 2009 estimate population of the region with Manaus as the largest city?", "context": "CREATE TABLE table_name_11 (population__2009_estimate_ VARCHAR, largest_city VARCHAR)"}, {"answer": "SELECT leader_at_the_summit FROM table_name_78 WHERE stage > 14 AND category = 1 AND start = \"saint-girons\" AND finish = \"cauterets\"", "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 MIN(year) FROM table_name_56 WHERE start = \"saint-gaudens\" AND stage < 15", "question": "What was the earliest year that had a start of Saint-Gaudens and a stage smaller than 15?", "context": "CREATE TABLE table_name_56 (year INTEGER, start VARCHAR, stage VARCHAR)"}, {"answer": "SELECT model FROM table_name_62 WHERE seats = \"37-78\"", "question": "Which Model had 37-78 seats?", "context": "CREATE TABLE table_name_62 (model VARCHAR, seats VARCHAR)"}, {"answer": "SELECT studio FROM table_name_13 WHERE title = \"the oregon trail\"", "question": "Which studio did The Oregon Trail?", "context": "CREATE TABLE table_name_13 (studio VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_28 WHERE leading_lady = \"muriel evans\"", "question": "Which title had Muriel Evans as leading lady?", "context": "CREATE TABLE table_name_28 (title VARCHAR, leading_lady VARCHAR)"}, {"answer": "SELECT leading_lady FROM table_name_96 WHERE title = \"the lonely trail\"", "question": "Who is the leading lady in The Lonely Trail?", "context": "CREATE TABLE table_name_96 (leading_lady VARCHAR, title VARCHAR)"}, {"answer": "SELECT leading_lady FROM table_name_71 WHERE studio = \"uni\" AND director = \"frank strayer\"", "question": "Who was the leading lady for Uni studio and Frank Strayer?", "context": "CREATE TABLE table_name_71 (leading_lady VARCHAR, studio VARCHAR, director VARCHAR)"}, {"answer": "SELECT title FROM table_name_73 WHERE leading_lady = \"ann rutherford\" AND director = \"joseph kane\"", "question": "In which title was Ann Rutherford the leading lady for Joseph Kane?", "context": "CREATE TABLE table_name_73 (title VARCHAR, leading_lady VARCHAR, director VARCHAR)"}, {"answer": "SELECT leading_lady FROM table_name_59 WHERE director = \"joseph kane\" AND title = \"the lonely trail\"", "question": "Who is the leading lady in The Lonely Trail for Joseph Kane?", "context": "CREATE TABLE table_name_59 (leading_lady VARCHAR, director VARCHAR, title VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_12 WHERE year < 1960 AND points < 8", "question": "What was the Chassis with less than 8 points before 1960?", "context": "CREATE TABLE table_name_12 (chassis VARCHAR, year VARCHAR, points VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_58 WHERE points = 0", "question": "Which Chassis has 0 points?", "context": "CREATE TABLE table_name_58 (chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_85 WHERE year > 1957", "question": "What were the total Pints after 1957?", "context": "CREATE TABLE table_name_85 (points INTEGER, year INTEGER)"}, {"answer": "SELECT MAX(year) FROM table_name_41 WHERE entrant = \"dean van lines\"", "question": "What was the most recent year for Dean Van Lines?", "context": "CREATE TABLE table_name_41 (year INTEGER, entrant VARCHAR)"}, {"answer": "SELECT gold_coast FROM table_name_58 WHERE auckland = \"cancelled\" AND adelaide = \"yes\"", "question": "What Gold Coast has Auckland cancelled, and Adelaide yes?", "context": "CREATE TABLE table_name_58 (gold_coast VARCHAR, auckland VARCHAR, adelaide VARCHAR)"}, {"answer": "SELECT sydney FROM table_name_73 WHERE auckland = \"cancelled\" AND perth = \"yes\"", "question": "Which Sydney has Auckland cancelled and Perth yes?", "context": "CREATE TABLE table_name_73 (sydney VARCHAR, auckland VARCHAR, perth VARCHAR)"}, {"answer": "SELECT sydney FROM table_name_39 WHERE gold_coast = \"no\" AND adelaide = \"no\" AND auckland = \"no\"", "question": "Which Sydney has Gold Coast no, Adelaide no< and Auckland no?", "context": "CREATE TABLE table_name_39 (sydney VARCHAR, auckland VARCHAR, gold_coast VARCHAR, adelaide VARCHAR)"}, {"answer": "SELECT gold_coast FROM table_name_8 WHERE melbourne = \"yes\" AND auckland = \"yes\"", "question": "Which Gold Coast has Melbourne yes, and Auckland yes?", "context": "CREATE TABLE table_name_8 (gold_coast VARCHAR, melbourne VARCHAR, auckland VARCHAR)"}, {"answer": "SELECT perth FROM table_name_50 WHERE auckland = \"yes\" AND gold_coast = \"yes\"", "question": "Which Perth has Auckland yes and Gold Coast yes?", "context": "CREATE TABLE table_name_50 (perth VARCHAR, auckland VARCHAR, gold_coast VARCHAR)"}, {"answer": "SELECT gold_coast FROM table_name_24 WHERE auckland = \"no\" AND adelaide = \"yes\" AND melbourne = \"no\"", "question": "Which Gold Coast has Auckland no, Adelaide yes, and Melbourne no?", "context": "CREATE TABLE table_name_24 (gold_coast VARCHAR, melbourne VARCHAR, auckland VARCHAR, adelaide VARCHAR)"}, {"answer": "SELECT round FROM table_name_67 WHERE date = \"7 january 2003\"", "question": "What round was on 7 January 2003?", "context": "CREATE TABLE table_name_67 (round VARCHAR, date VARCHAR)"}, {"answer": "SELECT result_f_a FROM table_name_60 WHERE date = \"17 december 2002\"", "question": "What is the result F_A on 17 December 2002?", "context": "CREATE TABLE table_name_60 (result_f_a VARCHAR, date VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_14 WHERE date = \"7 january 2003\"", "question": "What attendance was on 7 January 2003?", "context": "CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT recording FROM table_name_86 WHERE year = \"2012\"", "question": "Name the recording for 2012", "context": "CREATE TABLE table_name_86 (recording VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_43 WHERE category = \"best female pop vocal album\" AND result = \"won\"", "question": "Name the year with the best female pop vocal album and result of won", "context": "CREATE TABLE table_name_43 (year VARCHAR, category VARCHAR, result VARCHAR)"}, {"answer": "SELECT category FROM table_name_15 WHERE year = \"2013\"", "question": "Name the category for 2013", "context": "CREATE TABLE table_name_15 (category VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(gold) FROM table_name_94 WHERE silver < 0", "question": "Which was the lowest gold when silver was smaller than 0?", "context": "CREATE TABLE table_name_94 (gold INTEGER, silver INTEGER)"}, {"answer": "SELECT MAX(total) FROM table_name_74 WHERE rank = 6 AND bronze = 2 AND gold > 0", "question": "Which is the highest total at rank 6, bronze 2, and gold larger than 0?", "context": "CREATE TABLE table_name_74 (total INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(bronze) FROM table_name_89 WHERE rank > 5 AND nation = \"chinese taipei\" AND total < 1", "question": "Which is the highest bronze at Chinese Taipei when the rank was higher than 5 and total was smaller than 1?", "context": "CREATE TABLE table_name_89 (bronze INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR)"}, {"answer": "SELECT us_dance FROM table_name_89 WHERE year > 1985", "question": "Name the US dance when the year is more than 1985", "context": "CREATE TABLE table_name_89 (us_dance VARCHAR, year INTEGER)"}, {"answer": "SELECT us_hot_100 FROM table_name_81 WHERE album = \"i like you\"", "question": "Name the US Hot 100 for album of I like you", "context": "CREATE TABLE table_name_81 (us_hot_100 VARCHAR, album VARCHAR)"}, {"answer": "SELECT us_r & b FROM table_name_39 WHERE year = 1981", "question": "Name the US R&B for 1981", "context": "CREATE TABLE table_name_39 (us_r VARCHAR, b VARCHAR, year VARCHAR)"}, {"answer": "SELECT writer_s_ FROM table_name_57 WHERE recipient = \"parkville pictures ltd\"", "question": "Who was the writer when Parkville Pictures Ltd was the recipient?", "context": "CREATE TABLE table_name_57 (writer_s_ VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_35 WHERE writer_s_ = \"alex winckler\"", "question": "Alex Winckler wrote the film, who was the director?", "context": "CREATE TABLE table_name_35 (director_s_ VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_43 WHERE writer_s_ = \"edward jeffreys\"", "question": "On what date was Edward Jeffreys the writer?", "context": "CREATE TABLE table_name_43 (date VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE award = \"\u00a36,600\"", "question": "What date was the award of \u00a36,600 was given?", "context": "CREATE TABLE table_name_48 (date VARCHAR, award VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_54 WHERE recipient = \"redbag pictures ltd\"", "question": "Who was the director that had a recipient of Redbag Pictures Ltd?", "context": "CREATE TABLE table_name_54 (director_s_ VARCHAR, recipient VARCHAR)"}, {"answer": "SELECT award FROM table_name_64 WHERE writer_s_ = \"edward jeffreys\"", "question": "What's the name of the award that Edward Jeffreys was the writer?", "context": "CREATE TABLE table_name_64 (award VARCHAR, writer_s_ VARCHAR)"}, {"answer": "SELECT player FROM table_name_40 WHERE year_born = 1981", "question": "Who is the Player born in 1981?", "context": "CREATE TABLE table_name_40 (player VARCHAR, year_born VARCHAR)"}, {"answer": "SELECT COUNT(height) FROM table_name_49 WHERE year_born < 1977", "question": "What is the Height that has a year born before 1977", "context": "CREATE TABLE table_name_49 (height VARCHAR, year_born INTEGER)"}, {"answer": "SELECT MIN(total_region) FROM table_name_75 WHERE year > 2001 AND broadsound > 6 OFFSET 843", "question": "What is the lowest Total Region that has a Year after 2001, and a Broadsound greater than 6,843?", "context": "CREATE TABLE table_name_75 (total_region INTEGER, year VARCHAR, broadsound VARCHAR)"}, {"answer": "SELECT SUM(total_region) FROM table_name_2 WHERE year = 1954 AND nebo > 447", "question": "What is the sum of Total Regions that have the Year 1954, and a Nebo greater than 447?", "context": "CREATE TABLE table_name_2 (total_region INTEGER, year VARCHAR, nebo VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_34 WHERE gold < 2 AND nation = \"uganda\" AND total > 2", "question": "What is the number of Bronze for the Nation of Uganda with less than 2 Gold and Total medals?", "context": "CREATE TABLE table_name_34 (bronze VARCHAR, total VARCHAR, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_30 WHERE nation = \"canada\" AND silver < 7", "question": "With less than 7 Silver medals, how many Gold medals did Canada receive?", "context": "CREATE TABLE table_name_30 (gold INTEGER, nation VARCHAR, silver VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_4 WHERE score = \"6\u20131, 6\u20134\"", "question": "What is the outcome of a score that is 6\u20131, 6\u20134?", "context": "CREATE TABLE table_name_4 (outcome VARCHAR, score VARCHAR)"}, {"answer": "SELECT surface FROM table_name_40 WHERE score = \"7\u20136 (7\u20133) , 6\u20133\"", "question": "What is the surface of the score, 7\u20136 (7\u20133) , 6\u20133?", "context": "CREATE TABLE table_name_40 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_71 WHERE year < 2008 AND position = \"14th (q)\"", "question": "What venue did he play in before 2008 and finished 14th (q)?", "context": "CREATE TABLE table_name_71 (venue VARCHAR, year VARCHAR, position VARCHAR)"}, {"answer": "SELECT competition FROM table_name_6 WHERE year < 2007 AND venue = \"gothenburg, sweden\"", "question": "What competition did he compete in before 2007 in gothenburg, sweden?", "context": "CREATE TABLE table_name_6 (competition VARCHAR, year VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_55 WHERE position = \"7th\"", "question": "What venue did he finish 7th?", "context": "CREATE TABLE table_name_55 (venue VARCHAR, position VARCHAR)"}, {"answer": "SELECT MAX(performances) FROM table_name_43 WHERE role = \"geoffrey fitton\"", "question": "Name the most performances for geoffrey fitton", "context": "CREATE TABLE table_name_43 (performances INTEGER, role VARCHAR)"}, {"answer": "SELECT role FROM table_name_49 WHERE closing_date = \"feb 4, 1961\"", "question": "Name the role for Feb 4, 1961 closing date", "context": "CREATE TABLE table_name_49 (role VARCHAR, closing_date VARCHAR)"}, {"answer": "SELECT theatre FROM table_name_31 WHERE performances > 49 AND role = \"aaron jablonski schuyler grogan\"", "question": "Name the theatre for aaron jablonski schuyler grogan with performances more than 49", "context": "CREATE TABLE table_name_31 (theatre VARCHAR, performances VARCHAR, role VARCHAR)"}, {"answer": "SELECT title FROM table_name_29 WHERE no_in_series < 4", "question": "What are the titles for episodes prior to episode 4?", "context": "CREATE TABLE table_name_29 (title VARCHAR, no_in_series INTEGER)"}, {"answer": "SELECT title FROM table_name_23 WHERE no_in_series < 4", "question": "What are the titles for episodes prior to episode 4?", "context": "CREATE TABLE table_name_23 (title VARCHAR, no_in_series INTEGER)"}, {"answer": "SELECT original_air_date FROM table_name_58 WHERE no_in_series > 3", "question": "What the air dates for the episodes are episode 3 in the series?", "context": "CREATE TABLE table_name_58 (original_air_date VARCHAR, no_in_series INTEGER)"}, {"answer": "SELECT MAX(laps) FROM table_name_17 WHERE qual = \"165.229\"", "question": "How many laps resulted from a Qual of 165.229?", "context": "CREATE TABLE table_name_17 (laps INTEGER, qual VARCHAR)"}, {"answer": "SELECT qual FROM table_name_4 WHERE start = \"15\"", "question": "Whent he start was 15, what was the Qual?", "context": "CREATE TABLE table_name_4 (qual VARCHAR, start VARCHAR)"}, {"answer": "SELECT start FROM table_name_15 WHERE rank = \"7\" AND laps > 100", "question": "What was the start result with a Rank of 7 and more than 100 laps?", "context": "CREATE TABLE table_name_15 (start VARCHAR, rank VARCHAR, laps VARCHAR)"}, {"answer": "SELECT shirt_sponsor FROM table_name_59 WHERE team = \"blackburn rovers\"", "question": "Who was the shirt sponsor for the Blackburn Rovers?", "context": "CREATE TABLE table_name_59 (shirt_sponsor VARCHAR, team VARCHAR)"}, {"answer": "SELECT captain FROM table_name_60 WHERE team = \"bolton wanderers\"", "question": "Who was the team captain of the Bolton Wanderers?", "context": "CREATE TABLE table_name_60 (captain VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_75 WHERE kit_manufacturer = \"adidas\" AND shirt_sponsor = \"tdk\"", "question": "For which team did Adidas manufacture kits and TDK sponsor shirts?", "context": "CREATE TABLE table_name_75 (team VARCHAR, kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT team FROM table_name_5 WHERE captain = \"robbie earle\"", "question": "On which team was Robbie Earle the captain?", "context": "CREATE TABLE table_name_5 (team VARCHAR, captain VARCHAR)"}, {"answer": "SELECT manager_1 FROM table_name_24 WHERE captain = \"neil redfearn\"", "question": "Who was the manager for the team with captain Neil Redfearn?", "context": "CREATE TABLE table_name_24 (manager_1 VARCHAR, captain VARCHAR)"}, {"answer": "SELECT captain FROM table_name_56 WHERE team = \"crystal palace\"", "question": "Who was the team captain for Crystal Palace?", "context": "CREATE TABLE table_name_56 (captain VARCHAR, team VARCHAR)"}, {"answer": "SELECT MIN(score) FROM table_name_96 WHERE drop_goals > 0 AND penalties = 52 AND number > 5", "question": "drop goals larger than 0, and a Penalties of 52, and a Number larger than 5 had what lowest score?", "context": "CREATE TABLE table_name_96 (score INTEGER, number VARCHAR, drop_goals VARCHAR, penalties VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_name_50 WHERE player = \"jaco coetzee\" AND tries > 6", "question": "Player of jaco coetzee, and a Tries larger than 6 had what total number of score?", "context": "CREATE TABLE table_name_50 (score VARCHAR, player VARCHAR, tries VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_60 WHERE school = \"washington state university\"", "question": "What is the highest round that has a draftee from Washington State University?", "context": "CREATE TABLE table_name_60 (round INTEGER, school VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_16 WHERE name = \"bob randall\"", "question": "What round was Bob Randall selected in?", "context": "CREATE TABLE table_name_16 (round INTEGER, name VARCHAR)"}, {"answer": "SELECT ont FROM table_name_5 WHERE nb = \"10\" AND normal_total = \"77\"", "question": "Name the Ont of N.B. of 10 and normal total of 77", "context": "CREATE TABLE table_name_5 (ont VARCHAR, nb VARCHAR, normal_total VARCHAR)"}, {"answer": "SELECT date_enacted FROM table_name_73 WHERE ns = \"10\" AND normal_total = \"104\"", "question": "Name the date enacted for N.S. of 10 and normal total of 104", "context": "CREATE TABLE table_name_73 (date_enacted VARCHAR, ns VARCHAR, normal_total VARCHAR)"}, {"answer": "SELECT ns FROM table_name_11 WHERE normal_total = \"102\"", "question": "Name the NS with normal total of 102", "context": "CREATE TABLE table_name_11 (ns VARCHAR, normal_total VARCHAR)"}, {"answer": "SELECT normal_total FROM table_name_62 WHERE que = \"24\"", "question": "Name the normal with que of 24", "context": "CREATE TABLE table_name_62 (normal_total VARCHAR, que VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_41 WHERE entrant = \"peter whitehead\" AND chassis = \"alta f2\"", "question": "What is the sum of all the points won by Peter Whitehead in an alta f2 Chassis?", "context": "CREATE TABLE table_name_41 (points INTEGER, entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT points FROM table_name_95 WHERE entrant = \"g a vandervell\"", "question": "How many points does g a vandervell have?", "context": "CREATE TABLE table_name_95 (points VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_77 WHERE chassis = \"ferrari 125\" AND year > 1952", "question": "How many total points were earned with ferrari 125 Chassis after 1952?", "context": "CREATE TABLE table_name_77 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_42 WHERE entrant = \"peter whitehead\" AND chassis = \"ferrari 125\"", "question": "What is the total number of Points that Peter Whitehead earned in a Ferrari 125?", "context": "CREATE TABLE table_name_42 (points INTEGER, entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT d_41_\u221a FROM table_name_20 WHERE d_43_o = \"r 13\"", "question": "Name the D 41 \u221a for having D 43 of r 13", "context": "CREATE TABLE table_name_20 (d_41_\u221a VARCHAR, d_43_o VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_26 WHERE transfer_fee___\u20ac_million_ > 13 AND year > 2008", "question": "What was the rank of a transfer fee larger than 13 million, and after 2008?", "context": "CREATE TABLE table_name_26 (rank VARCHAR, transfer_fee___\u20ac_million_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT president FROM table_name_69 WHERE elected = 2010", "question": "What president was elected in 2010?", "context": "CREATE TABLE table_name_69 (president VARCHAR, elected VARCHAR)"}, {"answer": "SELECT AVG(_percentage_2006) FROM table_name_70 WHERE seats_2001 > 15 AND _percentage_2001 > 100", "question": "When seats for 2001 is greater than 15 and % 2001 is greater than 100, what is the % 2006?", "context": "CREATE TABLE table_name_70 (_percentage_2006 INTEGER, seats_2001 VARCHAR, _percentage_2001 VARCHAR)"}, {"answer": "SELECT COUNT(_percentage_2001) FROM table_name_32 WHERE seats_2001 = 7", "question": "What is the sum of % for 2001 if 2001 seats equals 7?", "context": "CREATE TABLE table_name_32 (_percentage_2001 VARCHAR, seats_2001 VARCHAR)"}, {"answer": "SELECT MAX(seats_2001) FROM table_name_71 WHERE _percentage_2006 = 13 AND _percentage_2001 > 12.1", "question": "If 2006 is 13% and 2001 is greater than 12.1%, what is the greatest number of seats for 2001?", "context": "CREATE TABLE table_name_71 (seats_2001 INTEGER, _percentage_2006 VARCHAR, _percentage_2001 VARCHAR)"}, {"answer": "SELECT circumstances FROM table_name_18 WHERE nature_of_incident = \"hostile\" AND location = \"road to jalalabad\"", "question": "What were the circumstances of the Hostile incident on the road to Jalalabad?", "context": "CREATE TABLE table_name_18 (circumstances VARCHAR, nature_of_incident VARCHAR, location VARCHAR)"}, {"answer": "SELECT circumstances FROM table_name_89 WHERE location = \"road to jalalabad\"", "question": "What was the circumstance that happened on the road to Jalalabad?", "context": "CREATE TABLE table_name_89 (circumstances VARCHAR, location VARCHAR)"}, {"answer": "SELECT circumstances FROM table_name_3 WHERE location = \"mazar-i-sharif\"", "question": "What happened in Mazar-i-sharif?", "context": "CREATE TABLE table_name_3 (circumstances VARCHAR, location VARCHAR)"}, {"answer": "SELECT index FROM table_name_23 WHERE country = \"singapore\" AND name = \"chen bangjun andie\"", "question": "What is the Index number of Chen Bangjun Andie from Singapore?", "context": "CREATE TABLE table_name_23 (index VARCHAR, country VARCHAR, name VARCHAR)"}, {"answer": "SELECT Chinese AS name FROM table_name_51 WHERE status = \"eliminated\" AND country = \"singapore\" AND index = \"f9\"", "question": "What is the Chinese name of the Eliminated player from Singapore in Index f9?", "context": "CREATE TABLE table_name_51 (Chinese VARCHAR, index VARCHAR, status VARCHAR, country VARCHAR)"}, {"answer": "SELECT Chinese AS name FROM table_name_73 WHERE index = \"f10\"", "question": "What is the Chinese name of the player in Index F10?", "context": "CREATE TABLE table_name_73 (Chinese VARCHAR, index VARCHAR)"}, {"answer": "SELECT name FROM table_name_67 WHERE country = \"malaysia, kuala lumpur\" AND index = \"f8\"", "question": "What is the name of the player from Malaysia, Kuala Lumpur in Index f8?", "context": "CREATE TABLE table_name_67 (name VARCHAR, country VARCHAR, index VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_36 WHERE date = \"august 8\"", "question": "Who was the opponent of the game on August 8?", "context": "CREATE TABLE table_name_36 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT winners FROM table_name_29 WHERE venue = \"vojens\"", "question": "Who took the winning slot at the Vojens venue?", "context": "CREATE TABLE table_name_29 (winners VARCHAR, venue VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_93 WHERE venue = \"pocking\" AND year = \"1980\"", "question": "Who was the runner-up in 1980 at the Pocking venue?", "context": "CREATE TABLE table_name_93 (runner_up VARCHAR, venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_71 WHERE fastest_time__s_ = \"11.26\" AND nation = \"united states\"", "question": "What rank did the United States swimmer come in who posted 11.26 seconds in the 100-meter youth female division?", "context": "CREATE TABLE table_name_71 (rank VARCHAR, fastest_time__s_ VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_25 WHERE round > 17", "question": "What is the lowest overall with more than 17 rounds?", "context": "CREATE TABLE table_name_25 (overall INTEGER, round INTEGER)"}, {"answer": "SELECT position FROM table_name_15 WHERE round = 14", "question": "What position has 14 rounds?", "context": "CREATE TABLE table_name_15 (position VARCHAR, round VARCHAR)"}, {"answer": "SELECT player FROM table_name_72 WHERE score = 69 - 73 - 68 = 210 AND country = \"united states\"", "question": "What United States player has a score of 69-73-68=210?", "context": "CREATE TABLE table_name_72 (player VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_49 WHERE place = \"t10\" AND country = \"argentina\"", "question": "What Argentina country is in t10 place?", "context": "CREATE TABLE table_name_49 (score VARCHAR, place VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_99 WHERE score = 71 - 71 - 68 = 210", "question": "Which country has the score of 71-71-68=210?", "context": "CREATE TABLE table_name_99 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_29 WHERE score = 72 - 71 - 68 = 211", "question": "What To par scored 72-71-68=211?", "context": "CREATE TABLE table_name_29 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT award FROM table_name_94 WHERE result = \"won\" AND category = \"choice tv villain\" AND year > 2008", "question": "Name the award won for category of choice tv villain in years after 2008", "context": "CREATE TABLE table_name_94 (award VARCHAR, year VARCHAR, result VARCHAR, category VARCHAR)"}, {"answer": "SELECT award FROM table_name_38 WHERE result = \"nominated\" AND year > 2011", "question": "Name the award for nominated result and year after 2011", "context": "CREATE TABLE table_name_38 (award VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT perth FROM table_name_97 WHERE sydney = \"yes\" AND gold_coast = \"yes\" AND adelaide = \"no\"", "question": "Which Perth also has Sydney yes, Gold Coast yes, and Adelaide no?", "context": "CREATE TABLE table_name_97 (perth VARCHAR, adelaide VARCHAR, sydney VARCHAR, gold_coast VARCHAR)"}, {"answer": "SELECT perth FROM table_name_56 WHERE gold_coast = \"yes\" AND sydney = \"yes\" AND melbourne = \"yes\" AND adelaide = \"yes\"", "question": "Which Perth has Gold Coast yes, Sydney yes, Melbourne yes, and Adelaide yes?", "context": "CREATE TABLE table_name_56 (perth VARCHAR, adelaide VARCHAR, melbourne VARCHAR, gold_coast VARCHAR, sydney VARCHAR)"}, {"answer": "SELECT adelaide FROM table_name_31 WHERE sydney = \"yes\" AND melbourne = \"yes\" AND perth = \"no\"", "question": "Which Adelaide has Sydney yes, Melbourne yes, and Perth no?", "context": "CREATE TABLE table_name_31 (adelaide VARCHAR, perth VARCHAR, sydney VARCHAR, melbourne VARCHAR)"}, {"answer": "SELECT adelaide FROM table_name_13 WHERE perth = \"no\" AND gold_coast = \"yes\" AND sydney = \"yes\"", "question": "Which Adelaide has Perth no, Gold Coast no, and Sydney yes?", "context": "CREATE TABLE table_name_13 (adelaide VARCHAR, sydney VARCHAR, perth VARCHAR, gold_coast VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_11 WHERE gold_coast = \"yes\" AND perth = \"cancelled\" AND adelaide = \"cancelled\"", "question": "Which Melbourne has Gold Coast yes, Perth cancelled, and Adelaide cancelled?", "context": "CREATE TABLE table_name_11 (melbourne VARCHAR, adelaide VARCHAR, gold_coast VARCHAR, perth VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_71 WHERE sydney = \"yes\" AND gold_coast = \"yes\" AND perth = \"yes\"", "question": "Which Melbourne has Sydney yes, Gold Coast yes, and Perth yes?", "context": "CREATE TABLE table_name_71 (melbourne VARCHAR, perth VARCHAR, sydney VARCHAR, gold_coast VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_name_30 WHERE winners = \"matej \u017eagar\"", "question": "Who came in 3rd when Matej \u017eagar won?", "context": "CREATE TABLE table_name_30 (winners VARCHAR)"}, {"answer": "SELECT winners FROM table_name_25 WHERE venue = \"kr\u0161ko\"", "question": "Who won at Kr\u0161ko?", "context": "CREATE TABLE table_name_25 (winners VARCHAR, venue VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_name_2 WHERE winners = \"nicolai klindt\"", "question": "Who came in 3rd when Nicolai Klindt won?", "context": "CREATE TABLE table_name_2 (winners VARCHAR)"}, {"answer": "SELECT 3 AS rd_place FROM table_name_99 WHERE \"venue\" = \"venue\"", "question": "Who came in 3rd at Venue?", "context": "CREATE TABLE table_name_99 (Id VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_99 WHERE record = \"1\u20130\"", "question": "What is the total number of weeks that the Steelers had a record of 1\u20130?", "context": "CREATE TABLE table_name_99 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE result = \"l 20\u201317\"", "question": "Who was the opponent at the Steelers game that had a result of l 20\u201317?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, result VARCHAR)"}, {"answer": "SELECT condition FROM table_name_41 WHERE partial_thromboplastin_time = \"prolonged\" AND platelet_count = \"unaffected\" AND bleeding_time = \"prolonged\"", "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_14 WHERE partial_thromboplastin_time = \"prolonged or unaffected\"", "question": "Name the condition with partial thromboplastin time of prolonged or unaffected", "context": "CREATE TABLE table_name_14 (condition VARCHAR, partial_thromboplastin_time VARCHAR)"}, {"answer": "SELECT condition FROM table_name_4 WHERE partial_thromboplastin_time = \"unaffected\" AND prothrombin_time = \"unaffected\" AND platelet_count = \"decreased\"", "question": "Name the condition with partial thromboplastin time of unaffected and prothrombin time of unaffected with platelet count of decreased", "context": "CREATE TABLE table_name_4 (condition VARCHAR, platelet_count VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR)"}, {"answer": "SELECT condition FROM table_name_52 WHERE platelet_count = \"unaffected\" AND bleeding_time = \"unaffected\" AND prothrombin_time = \"prolonged\" AND partial_thromboplastin_time = \"prolonged\"", "question": "Name the condition with platelet count of unaffected and bleeding time of unaffected with prothrombin time of prolonged and partial thromboplastin time of prolonged", "context": "CREATE TABLE table_name_52 (condition VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, platelet_count VARCHAR, bleeding_time VARCHAR)"}, {"answer": "SELECT bleeding_time FROM table_name_83 WHERE platelet_count = \"unaffected\" AND condition = \"factor xii deficiency\"", "question": "Name the bleeding time with platelet count of unaffected and condition of factor xii deficiency", "context": "CREATE TABLE table_name_83 (bleeding_time VARCHAR, platelet_count VARCHAR, condition VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_8 WHERE efficiency__percentage = \"6.3%\" AND draws < 1", "question": "what is the number of losses with draws less than 1 and 6.3% efficiency?", "context": "CREATE TABLE table_name_8 (losses INTEGER, efficiency__percentage VARCHAR, draws VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_12 WHERE name = \"ali said gouled\"", "question": "what is the number of draws for ali said gouled?", "context": "CREATE TABLE table_name_12 (draws VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(draws) FROM table_name_11 WHERE losses = 4 AND efficiency__percentage = \"28.6%\"", "question": "what is the number of draws when there are 4 losses and 28.6% efficiency?", "context": "CREATE TABLE table_name_11 (draws VARCHAR, losses VARCHAR, efficiency__percentage VARCHAR)"}, {"answer": "SELECT females FROM table_name_60 WHERE males = \"1 548\"", "question": "Name the females when males are 1 548", "context": "CREATE TABLE table_name_60 (females VARCHAR, males VARCHAR)"}, {"answer": "SELECT percentage___percentage_ FROM table_name_11 WHERE number = \"1 343\"", "question": "Name the percentage with number of 1 343", "context": "CREATE TABLE table_name_11 (percentage___percentage_ VARCHAR, number VARCHAR)"}, {"answer": "SELECT percentage___percentage_ FROM table_name_17 WHERE females = \"2\"", "question": "Name the percentage which has females of 2", "context": "CREATE TABLE table_name_17 (percentage___percentage_ VARCHAR, females VARCHAR)"}, {"answer": "SELECT males FROM table_name_57 WHERE language = \"persons that didn't name their native language\"", "question": "Name the males for language of persons that didn't name their native language", "context": "CREATE TABLE table_name_57 (males VARCHAR, language VARCHAR)"}, {"answer": "SELECT school_colors FROM table_name_66 WHERE main_campus_location = \"overland park\"", "question": "What are the school colors for the college whose main campus is overland park?", "context": "CREATE TABLE table_name_66 (school_colors VARCHAR, main_campus_location VARCHAR)"}, {"answer": "SELECT MIN(founded) FROM table_name_37 WHERE institution = \"independence community college\"", "question": "What is independence community college's newest campus?", "context": "CREATE TABLE table_name_37 (founded INTEGER, institution VARCHAR)"}, {"answer": "SELECT main_campus_location FROM table_name_61 WHERE founded = 1967", "question": "What college was founded in 1967?", "context": "CREATE TABLE table_name_61 (main_campus_location VARCHAR, founded VARCHAR)"}, {"answer": "SELECT name FROM table_name_9 WHERE function = \"explorator\"", "question": "Who had a function of explorator?", "context": "CREATE TABLE table_name_9 (name VARCHAR, function VARCHAR)"}, {"answer": "SELECT competing_entities FROM table_name_4 WHERE first_held < 1970", "question": "Can you tell me the Competing entities that has the First held smaller than 1970?", "context": "CREATE TABLE table_name_4 (competing_entities VARCHAR, first_held INTEGER)"}, {"answer": "SELECT surface FROM table_name_42 WHERE date = \"october 3, 2010\"", "question": "What surface was played on on October 3, 2010?", "context": "CREATE TABLE table_name_42 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT tier FROM table_name_5 WHERE opponent_in_the_final = \"manana shapakidze\"", "question": "What was the tier versus Manana Shapakidze?", "context": "CREATE TABLE table_name_5 (tier VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE opponent_in_the_final = \"michaela pochabov\u00e1\"", "question": "What was the score versus Michaela Pochabov\u00e1?", "context": "CREATE TABLE table_name_85 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_75 WHERE date = \"may 8, 2006\"", "question": "Who was the opponent on May 8, 2006?", "context": "CREATE TABLE table_name_75 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT tier FROM table_name_59 WHERE opponent_in_the_final = \"annalisa bona\"", "question": "What was the tier versus Annalisa bona?", "context": "CREATE TABLE table_name_59 (tier VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT song FROM table_name_62 WHERE votes > 640 AND draw = 1", "question": "Which song has votes greater than 640 and a draw of 1?", "context": "CREATE TABLE table_name_62 (song VARCHAR, votes VARCHAR, draw VARCHAR)"}, {"answer": "SELECT bush_percentage FROM table_name_39 WHERE kerry_percentage = \"58.1%\"", "question": "When Keey has 58.1% what % does Bush have?", "context": "CREATE TABLE table_name_39 (bush_percentage VARCHAR, kerry_percentage VARCHAR)"}, {"answer": "SELECT real_betis_career FROM table_name_63 WHERE appearances < 98 AND nationality = \"spain\" AND goals > 15", "question": "Which of Real Betis career had appearances smaller than 98, nationality of Spain, and goals greater than 15?", "context": "CREATE TABLE table_name_63 (real_betis_career VARCHAR, goals VARCHAR, appearances VARCHAR, nationality VARCHAR)"}, {"answer": "SELECT decile FROM table_name_67 WHERE authority = \"state\" AND area = \"raumati south\"", "question": "What Decile has State Authority and Raumati South Area?", "context": "CREATE TABLE table_name_67 (decile VARCHAR, authority VARCHAR, area VARCHAR)"}, {"answer": "SELECT SUM(decile) FROM table_name_6 WHERE area = \"waikanae\"", "question": "What is the total Decile with Waikanae Area?", "context": "CREATE TABLE table_name_6 (decile INTEGER, area VARCHAR)"}, {"answer": "SELECT player FROM table_name_8 WHERE place = \"t10\" AND score = 80 - 70 - 72 - 72 = 294", "question": "What Player with a Place of T10 had a Score of 80-70-72-72=294?", "context": "CREATE TABLE table_name_8 (player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_19 WHERE player = \"lloyd mangrum\"", "question": "What was the Money ($) amount for Lloyd Mangrum?", "context": "CREATE TABLE table_name_19 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_20 WHERE player = \"cary middlecoff\"", "question": "What was the Money ($) amount for Cary Middlecoff?", "context": "CREATE TABLE table_name_20 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT date FROM table_name_98 WHERE score = \"5\u20132\" AND loss = \"lilly (9\u20139)\"", "question": "What date was the game with a score of 5\u20132, and a Loss of lilly (9\u20139)?", "context": "CREATE TABLE table_name_98 (date VARCHAR, score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_38 WHERE score = \"5\u20134 (11)\"", "question": "What team was the opponent when there was a score of 5\u20134 (11)?", "context": "CREATE TABLE table_name_38 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_93 WHERE record = \"47\u201339\"", "question": "What date was the game with a record of 47\u201339?", "context": "CREATE TABLE table_name_93 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_78 WHERE player = \"tom watson\"", "question": "What year did Tom Watson win?", "context": "CREATE TABLE table_name_78 (year_s__won VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_93 WHERE player = \"tom watson\" AND to_par > 10", "question": "What is the total number that Tom Watson parred larger than 10?", "context": "CREATE TABLE table_name_93 (total VARCHAR, player VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE record = \"4-5\"", "question": "Which date has a Record of 4-5?", "context": "CREATE TABLE table_name_71 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE loss = \"gubicza (0-1)\"", "question": "Which score has a Loss of gubicza (0-1)?", "context": "CREATE TABLE table_name_66 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_87 WHERE date = \"april 18\"", "question": "Which loss happened april 18?", "context": "CREATE TABLE table_name_87 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_9 WHERE opponent = \"orioles\" AND date = \"april 14\"", "question": "Which record has an Opponent of orioles and a Date of april 14?", "context": "CREATE TABLE table_name_9 (record VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_96 WHERE date = \"april 25\"", "question": "Which record has a Date of april 25?", "context": "CREATE TABLE table_name_96 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_31 WHERE record = \"4-5\"", "question": "Which opponent has a Record of 4-5?", "context": "CREATE TABLE table_name_31 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT country FROM table_name_9 WHERE nominating_festival = \"prix uip venezia\"", "question": "Name the country which has prix uip venezia", "context": "CREATE TABLE table_name_9 (country VARCHAR, nominating_festival VARCHAR)"}, {"answer": "SELECT nominating_festival FROM table_name_1 WHERE director_s_ = \"2004\"", "question": "Name the nominating festival for director of 2004", "context": "CREATE TABLE table_name_1 (nominating_festival VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT category FROM table_name_66 WHERE nominating_festival = \"prix uip berlin\"", "question": "Name the category for prix uip berlin", "context": "CREATE TABLE table_name_66 (category VARCHAR, nominating_festival VARCHAR)"}, {"answer": "SELECT nominating_festival FROM table_name_93 WHERE film = \"un cartus de kent si un pachet de cafea\"", "question": "Name the nominating festival for un cartus de kent si un pachet de cafea", "context": "CREATE TABLE table_name_93 (nominating_festival VARCHAR, film VARCHAR)"}, {"answer": "SELECT director_s_ FROM table_name_92 WHERE film = \"alt i alt\"", "question": "Name the director of alt i alt", "context": "CREATE TABLE table_name_92 (director_s_ VARCHAR, film VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE record = \"81-54\"", "question": "What's the score of the game they played against a team with a record of 81-54?", "context": "CREATE TABLE table_name_95 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_51 WHERE record = \"84-56\"", "question": "What game score was there for the team with a record of 84-56?", "context": "CREATE TABLE table_name_51 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT winner FROM table_name_65 WHERE city = \"loutraki\"", "question": "Who is the Winner for the City of Loutraki?", "context": "CREATE TABLE table_name_65 (winner VARCHAR, city VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE event = \"ept copenhagen\"", "question": "What is the Date for the Event ept copenhagen?", "context": "CREATE TABLE table_name_71 (date VARCHAR, event VARCHAR)"}, {"answer": "SELECT event FROM table_name_56 WHERE winner = \"john dibella\"", "question": "What Event did John dibella win?", "context": "CREATE TABLE table_name_56 (event VARCHAR, winner VARCHAR)"}, {"answer": "SELECT prize FROM table_name_11 WHERE winner = \"benny spindler\"", "question": "What was the prize for winner benny spindler?", "context": "CREATE TABLE table_name_11 (prize VARCHAR, winner VARCHAR)"}, {"answer": "SELECT event FROM table_name_32 WHERE city = \"copenhagen\"", "question": "What was the Event in the city of copenhagen?", "context": "CREATE TABLE table_name_32 (event VARCHAR, city VARCHAR)"}, {"answer": "SELECT event FROM table_name_45 WHERE prize = \"\u20ac850,000\"", "question": "What was the Event for the prize of \u20ac850,000?", "context": "CREATE TABLE table_name_45 (event VARCHAR, prize VARCHAR)"}, {"answer": "SELECT place FROM table_name_2 WHERE player = \"emmet french\"", "question": "In which place is Emmet French?", "context": "CREATE TABLE table_name_2 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT gold_coast FROM table_name_73 WHERE melbourne = \"yes\" AND perth = \"no\" AND adelaide = \"yes\"", "question": "What is the result for Gold Coast when Melbourne and Adelaide are yes, but Perth is no?", "context": "CREATE TABLE table_name_73 (gold_coast VARCHAR, adelaide VARCHAR, melbourne VARCHAR, perth VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_52 WHERE adelaide = \"yes\" AND sydney = \"yes\" AND perth = \"yes\" AND gold_coast = \"no\"", "question": "What is the result for Melbourne when Adelaide, Sydney, and Perth are yes, and Gold Coast is no?", "context": "CREATE TABLE table_name_52 (melbourne VARCHAR, gold_coast VARCHAR, perth VARCHAR, adelaide VARCHAR, sydney VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_1 WHERE gold_coast = \"no\" AND perth = \"no\" AND auckland = \"no\" AND sydney = \"no\"", "question": "What is the result for Melbourne when Gold Coast, Perth, Auckland, and Sydney are no?", "context": "CREATE TABLE table_name_1 (melbourne VARCHAR, sydney VARCHAR, auckland VARCHAR, gold_coast VARCHAR, perth VARCHAR)"}, {"answer": "SELECT gold_coast FROM table_name_6 WHERE adelaide = \"yes\" AND auckland = \"no\" AND perth = \"yes\"", "question": "What is the result for Gold Coast when Adelaide and Perth are yes, but Auckland is no?", "context": "CREATE TABLE table_name_6 (gold_coast VARCHAR, perth VARCHAR, adelaide VARCHAR, auckland VARCHAR)"}, {"answer": "SELECT gold_coast FROM table_name_8 WHERE melbourne = \"yes\" AND sydney = \"yes\" AND auckland = \"no\" AND perth = \"no\"", "question": "What is the result for Gold Coast when Melbourne and Sydney are yes, while Auckland and Perth are no?", "context": "CREATE TABLE table_name_8 (gold_coast VARCHAR, perth VARCHAR, auckland VARCHAR, melbourne VARCHAR, sydney VARCHAR)"}, {"answer": "SELECT melbourne FROM table_name_56 WHERE adelaide = \"no\" AND auckland = \"yes\"", "question": "What is the result for Melbourne when Adelaide is no, and Auckland is yes?", "context": "CREATE TABLE table_name_56 (melbourne VARCHAR, adelaide VARCHAR, auckland VARCHAR)"}, {"answer": "SELECT winner FROM table_name_35 WHERE date = \"3 june\"", "question": "Who won on 3 june?", "context": "CREATE TABLE table_name_35 (winner VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_83 WHERE race_leader = \"hermann buse ( ger )\" AND stage = \"5\"", "question": "Which date has a Race Leader of hermann buse ( ger ), and a Stage of 5?", "context": "CREATE TABLE table_name_83 (date VARCHAR, race_leader VARCHAR, stage VARCHAR)"}, {"answer": "SELECT race_leader FROM table_name_33 WHERE stage = \"7\"", "question": "Which race Leader has a Stage of 7?", "context": "CREATE TABLE table_name_33 (race_leader VARCHAR, stage VARCHAR)"}, {"answer": "SELECT date FROM table_name_68 WHERE stage = \"12\"", "question": "Which date has a Stage of 12?", "context": "CREATE TABLE table_name_68 (date VARCHAR, stage VARCHAR)"}, {"answer": "SELECT result FROM table_name_69 WHERE year = 1994 AND award = \"song of the year\"", "question": "What was the result for song of the year award in 1994?", "context": "CREATE TABLE table_name_69 (result VARCHAR, year VARCHAR, award VARCHAR)"}, {"answer": "SELECT result FROM table_name_10 WHERE nominated_work = \"neil finn\"", "question": "What was the result for work made by Neil Finn?", "context": "CREATE TABLE table_name_10 (result VARCHAR, nominated_work VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS $__ FROM table_name_34 WHERE country = \"argentina\"", "question": "what is the money for argentina?", "context": "CREATE TABLE table_name_34 (money___ VARCHAR, country VARCHAR)"}, {"answer": "SELECT money___$__ FROM table_name_77 WHERE player = \"trevor immelman\"", "question": "what is the money for trevor immelman?", "context": "CREATE TABLE table_name_77 (money___$__ VARCHAR, player VARCHAR)"}, {"answer": "SELECT place FROM table_name_64 WHERE country = \"ireland\"", "question": "what is the place for ireland?", "context": "CREATE TABLE table_name_64 (place VARCHAR, country VARCHAR)"}, {"answer": "SELECT result FROM table_name_59 WHERE opponent = \"leeds\" AND date = \"20/03/2008\"", "question": "What result was a date of 20/03/2008 with leeds as the opponent", "context": "CREATE TABLE table_name_59 (result VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT ht FROM table_name_31 WHERE venue = \"stadio luigi ferraris\"", "question": "What was the HT for the game at Stadio Luigi Ferraris?", "context": "CREATE TABLE table_name_31 (ht VARCHAR, venue VARCHAR)"}, {"answer": "SELECT ht FROM table_name_54 WHERE venue = \"zagreb\" AND score = \"0-2\"", "question": "What was the HT for the game at Zagreb, with a full-time score of 0-2?", "context": "CREATE TABLE table_name_54 (ht VARCHAR, venue VARCHAR, score VARCHAR)"}, {"answer": "SELECT competition FROM table_name_96 WHERE venue = \"zurich\"", "question": "What was the competition that was played in Zurich?", "context": "CREATE TABLE table_name_96 (competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT first_game FROM table_name_89 WHERE lost > 4", "question": "When was the first game associated with over 4 losses?", "context": "CREATE TABLE table_name_89 (first_game VARCHAR, lost INTEGER)"}, {"answer": "SELECT MIN(drawn) FROM table_name_39 WHERE played > 39", "question": "What is the lowest number of games drawn associated with over 39 games played?", "context": "CREATE TABLE table_name_39 (drawn INTEGER, played INTEGER)"}, {"answer": "SELECT MAX(lost) FROM table_name_43 WHERE played < 1", "question": "What is the highest number of losses when there are under 1 games played?", "context": "CREATE TABLE table_name_43 (lost INTEGER, played INTEGER)"}, {"answer": "SELECT location FROM table_name_67 WHERE game > 2 AND time = \"2:56\"", "question": "What location has more than 2 games with 2:56?", "context": "CREATE TABLE table_name_67 (location VARCHAR, game VARCHAR, time VARCHAR)"}, {"answer": "SELECT location FROM table_name_64 WHERE date = \"october 10\"", "question": "What location has October 10 as date?", "context": "CREATE TABLE table_name_64 (location VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(seats_2006) FROM table_name_64 WHERE _percentage_2001 = 39 AND seats_2001 < 12", "question": "what is the seats 2006 total with %2001 of 39 and seats 2001 less than 12?", "context": "CREATE TABLE table_name_64 (seats_2006 INTEGER, _percentage_2001 VARCHAR, seats_2001 VARCHAR)"}, {"answer": "SELECT SUM(seats_2006) FROM table_name_33 WHERE parties_and_voter_communities = \"voter turnout in %\" AND _percentage_2006 > 51.5", "question": "what is the total number of seats 2006 that has parties and voter turnout in % and whose %2006 is greater than 51.5?", "context": "CREATE TABLE table_name_33 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR)"}, {"answer": "SELECT SUM(seats_2001) FROM table_name_91 WHERE parties_and_voter_communities = \"cdu\" AND seats_2006 > 10", "question": "what is the total number of seats 2001 with seats 2006 more than 10 and voter communities of cdu?", "context": "CREATE TABLE table_name_91 (seats_2001 INTEGER, parties_and_voter_communities VARCHAR, seats_2006 VARCHAR)"}, {"answer": "SELECT loss FROM table_name_56 WHERE record = \"3\u20132\"", "question": "What was the loss of the game when the record was 3\u20132?", "context": "CREATE TABLE table_name_56 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_12 WHERE loss = \"shields (1\u20131)\"", "question": "Who was the opponent at the game that had a loss of Shields (1\u20131)?", "context": "CREATE TABLE table_name_12 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_75 WHERE player = \"andrew symonds\" AND season = \"2004\"", "question": "Who is the opponent for Andrew Symonds in the 2004 season?", "context": "CREATE TABLE table_name_75 (opponent VARCHAR, player VARCHAR, season VARCHAR)"}, {"answer": "SELECT country_of_origin FROM table_name_81 WHERE artist = \"journey\"", "question": "Name th country of origin for journey", "context": "CREATE TABLE table_name_81 (country_of_origin VARCHAR, artist VARCHAR)"}, {"answer": "SELECT period_active FROM table_name_42 WHERE artist = \"enya\"", "question": "Name the period active for enya", "context": "CREATE TABLE table_name_42 (period_active VARCHAR, artist VARCHAR)"}, {"answer": "SELECT genre FROM table_name_92 WHERE release_year_of_first_charted_record < 1980 AND country_of_origin = \"jamaica\"", "question": "Name the genre for release-year of firsst charted less than 1980 and origin of jamaica", "context": "CREATE TABLE table_name_92 (genre VARCHAR, release_year_of_first_charted_record VARCHAR, country_of_origin VARCHAR)"}, {"answer": "SELECT 2 AS nd_member FROM table_name_31 WHERE election = \"1885\"", "question": "Who is the 2nd member during 1885 election?", "context": "CREATE TABLE table_name_31 (election VARCHAR)"}, {"answer": "SELECT 1 AS st_party FROM table_name_34 WHERE election = \"1857\"", "question": "What is the 1st party during the 1857 election?", "context": "CREATE TABLE table_name_34 (election VARCHAR)"}, {"answer": "SELECT language FROM table_name_8 WHERE percentage___percentage_ = \"2.54\"", "question": "Which language has the percentage of 2.54?", "context": "CREATE TABLE table_name_8 (language VARCHAR, percentage___percentage_ VARCHAR)"}, {"answer": "SELECT females FROM table_name_66 WHERE language = \"polish\"", "question": "What is the number of females that has the Polish language?", "context": "CREATE TABLE table_name_66 (females VARCHAR, language VARCHAR)"}, {"answer": "SELECT males FROM table_name_13 WHERE females = \"62 331\"", "question": "What was the number of males that had the number females 62 331?", "context": "CREATE TABLE table_name_13 (males VARCHAR, females VARCHAR)"}, {"answer": "SELECT position FROM table_name_31 WHERE class = \"sophomore\"", "question": "Which position has a sophomore class?", "context": "CREATE TABLE table_name_31 (position VARCHAR, class VARCHAR)"}, {"answer": "SELECT MIN(preliminaries) FROM table_name_94 WHERE evening_gown = 8.472", "question": "What is the lowest Preliminary score of a contestant that has an Evening Gown score of 8.472?", "context": "CREATE TABLE table_name_94 (preliminaries INTEGER, evening_gown VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_9 WHERE set_1 = \"25\u201320\"", "question": "Which Set 3 has a Set 1 of 25\u201320?", "context": "CREATE TABLE table_name_9 (set_3 VARCHAR, set_1 VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_22 WHERE time = \"10:00\" AND set_2 = \"25\u201319\"", "question": "Which Set 3 has a Time of 10:00, and a Set 2 of 25\u201319?", "context": "CREATE TABLE table_name_22 (set_3 VARCHAR, time VARCHAR, set_2 VARCHAR)"}, {"answer": "SELECT set_1 FROM table_name_25 WHERE set_3 = \"16\u201325\"", "question": "Which Set 1 has a Set 3 of 16\u201325?", "context": "CREATE TABLE table_name_25 (set_1 VARCHAR, set_3 VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_56 WHERE score = \"0\u20133\" AND time = \"18:30\" AND date = \"july 10\"", "question": "Which Set 3 has a Score of 0\u20133, a Time of 18:30, and a Date of july 10?", "context": "CREATE TABLE table_name_56 (set_3 VARCHAR, date VARCHAR, score VARCHAR, time VARCHAR)"}, {"answer": "SELECT score FROM table_name_10 WHERE set_2 = \"17\u201325\" AND total = \"48\u201375\"", "question": "Which score has a Set 2 of 17\u201325, and a Total of 48\u201375?", "context": "CREATE TABLE table_name_10 (score VARCHAR, set_2 VARCHAR, total VARCHAR)"}, {"answer": "SELECT set_3 FROM table_name_61 WHERE time = \"10:00\" AND score = \"3\u20132\" AND total = \"113\u2013102\"", "question": "Which set 3 has a Time of 10:00, and a Score of 3\u20132, and a Total of 113\u2013102?", "context": "CREATE TABLE table_name_61 (set_3 VARCHAR, total VARCHAR, time VARCHAR, score VARCHAR)"}, {"answer": "SELECT live___studio FROM table_name_98 WHERE year < 1983", "question": "Is it live or studio before 1983?", "context": "CREATE TABLE table_name_98 (live___studio VARCHAR, year INTEGER)"}, {"answer": "SELECT COUNT(1 AS st_prize___) AS $__ FROM table_name_15 WHERE country = \"united states\" AND score < 271 AND year > 1964 AND winner = \"bobby mitchell\"", "question": "What is the total number of 1st prize ($) that has a United States country with a score lower than 271 and in a year after 1964 with a winner of Bobby Mitchell?", "context": "CREATE TABLE table_name_15 (winner VARCHAR, year VARCHAR, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT SUM(round) FROM table_name_32 WHERE name = \"marcus howard\"", "question": "What is the round for marcus howard?", "context": "CREATE TABLE table_name_32 (round INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_89 WHERE finish = \"30\"", "question": "What is the highest laps with a 30 finish?", "context": "CREATE TABLE table_name_89 (laps INTEGER, finish VARCHAR)"}, {"answer": "SELECT rank FROM table_name_34 WHERE qual = \"150.163\"", "question": "What is the rank of the 150.163 qual?", "context": "CREATE TABLE table_name_34 (rank VARCHAR, qual VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_34 WHERE qual = \"142.744\"", "question": "What is the lowest laps with a 142.744 qual?", "context": "CREATE TABLE table_name_34 (laps INTEGER, qual VARCHAR)"}, {"answer": "SELECT year FROM table_name_25 WHERE laps < 160 AND rank = \"26\"", "question": "What year had less than 160 laps and a rank of 26?", "context": "CREATE TABLE table_name_25 (year VARCHAR, laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT khmer FROM table_name_40 WHERE other = \"soun\"", "question": "for the other of soun, what's the khmer?", "context": "CREATE TABLE table_name_40 (khmer VARCHAR, other VARCHAR)"}, {"answer": "SELECT khmer FROM table_name_20 WHERE other = \"mouy\"", "question": "for the other of mouy, what's the khmer?", "context": "CREATE TABLE table_name_20 (khmer VARCHAR, other VARCHAR)"}, {"answer": "SELECT language FROM table_name_14 WHERE director = \"hans kristensen\"", "question": "What is the language of the film directed by Hans Kristensen?", "context": "CREATE TABLE table_name_14 (language VARCHAR, director VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_10 WHERE film_title_used_in_nomination = \"dersu uzala\"", "question": "What is the original title of the film for which Dersu Uzala was nominated?", "context": "CREATE TABLE table_name_10 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)"}, {"answer": "SELECT language FROM table_name_41 WHERE country = \"argentina\"", "question": "What is Argentina's language?", "context": "CREATE TABLE table_name_41 (language VARCHAR, country VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_22 WHERE year > 1985 AND entrant = \"jolly club spa\"", "question": "What chassis did Jolly Club Spa used after 1985?", "context": "CREATE TABLE table_name_22 (chassis VARCHAR, year VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT engine FROM table_name_74 WHERE chassis = \"minardi m187\"", "question": "What engine was paired with Minardi m187?", "context": "CREATE TABLE table_name_74 (engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MAX(points) FROM table_name_30 WHERE tyres = \"g\" AND chassis = \"minardi m187\"", "question": "What is the highest points with g Tyres and Minardi m187?", "context": "CREATE TABLE table_name_30 (points INTEGER, tyres VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_26 WHERE tyres = \"g\" AND year < 1987", "question": "What Chassis has g Tyres before 1987?", "context": "CREATE TABLE table_name_26 (chassis VARCHAR, tyres VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_82 WHERE tyres = \"g\" AND chassis = \"minardi m187\"", "question": "How many years were g Tyres and Minardi m187 used?", "context": "CREATE TABLE table_name_82 (year INTEGER, tyres VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_21 WHERE rank = \"1st\" AND entrant = \"adt champion racing\"", "question": "What engine what in the vehicle when adt champion racing ranked in 1st place?", "context": "CREATE TABLE table_name_21 (engine VARCHAR, rank VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_18 WHERE rank = \"18th\"", "question": "What Chassis ranked 18th?", "context": "CREATE TABLE table_name_18 (chassis VARCHAR, rank VARCHAR)"}, {"answer": "SELECT class FROM table_name_2 WHERE points < 206 AND chassis = \"audi r8\" AND entrant = \"adt champion racing\" AND rank = \"1st\"", "question": "What was the class when adt champion racing ranked 1st with an audi r8 chassis, and less than 206 points?", "context": "CREATE TABLE table_name_2 (class VARCHAR, rank VARCHAR, entrant VARCHAR, points VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT winner_nominee_s_ FROM table_name_27 WHERE year = 2001", "question": "Who were the winner and nominees in 2001?", "context": "CREATE TABLE table_name_27 (winner_nominee_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT winner_nominee_s_ FROM table_name_44 WHERE result = \"nominated\" AND film = \"rugrats go wild\"", "question": "Who is nominated for the film Rugrats Go Wild?", "context": "CREATE TABLE table_name_44 (winner_nominee_s_ VARCHAR, result VARCHAR, film VARCHAR)"}, {"answer": "SELECT COUNT(goals) FROM table_name_87 WHERE apps < 26 AND club = \"werder bremen\"", "question": "How many goals did he score with under 26 appearances for werder bremen?", "context": "CREATE TABLE table_name_87 (goals VARCHAR, apps VARCHAR, club VARCHAR)"}, {"answer": "SELECT AVG(goals) FROM table_name_32 WHERE competition = \"bundesliga\" AND apps < 7", "question": "How many goals did he have in the bundesliga with under 7 appearances?", "context": "CREATE TABLE table_name_32 (goals INTEGER, competition VARCHAR, apps VARCHAR)"}, {"answer": "SELECT season FROM table_name_91 WHERE apps = 7", "question": "What season did he have 7 appearances?", "context": "CREATE TABLE table_name_91 (season VARCHAR, apps VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_71 WHERE score = 73 - 71 = 144", "question": "What is the to par for the score 73-71=144?", "context": "CREATE TABLE table_name_71 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT place FROM table_name_92 WHERE player = \"julius boros\"", "question": "What area did Julius Boros play at?", "context": "CREATE TABLE table_name_92 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_2 WHERE score = 74 - 70 = 144", "question": "What country  has a score of 74-70=144", "context": "CREATE TABLE table_name_2 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT canterbury FROM table_name_67 WHERE central_districts = \"276* m.d. crowe & p.s. briasco v (c) 1986/87\"", "question": "Which of the Canterbury has a Central District of 276* M.D. Crowe & P.S. Briasco V (C) 1986/87?", "context": "CREATE TABLE table_name_67 (canterbury VARCHAR, central_districts VARCHAR)"}, {"answer": "SELECT auckland FROM table_name_5 WHERE otago = \"184 r.c. blunt & w. hawksworth v (c) 1931/32\"", "question": "What is Auckland thats got Otago of 184 R.C. Blunt & W. Hawksworth V (C) 1931/32?", "context": "CREATE TABLE table_name_5 (auckland VARCHAR, otago VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_8 WHERE year > 2009", "question": "What tournament was after 2009?", "context": "CREATE TABLE table_name_8 (tournament VARCHAR, year INTEGER)"}, {"answer": "SELECT event FROM table_name_16 WHERE venue = \"chihuahua, mexico\"", "question": "What event was held in Chihuahua, Mexico?", "context": "CREATE TABLE table_name_16 (event VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(population) FROM table_name_45 WHERE country_region = \"hong kong\" AND rank < 2", "question": "Can you tell me the sun of Population that has the Country/Region of hong kong, and the Rank smaller than 2?", "context": "CREATE TABLE table_name_45 (population INTEGER, country_region VARCHAR, rank VARCHAR)"}, {"answer": "SELECT manager_1 FROM table_name_72 WHERE shirt_sponsor = \"hewlett-packard\"", "question": "Who is the manager with the Hewlett-Packard shirt sponsor?", "context": "CREATE TABLE table_name_72 (manager_1 VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT captain FROM table_name_30 WHERE kit_manufacturer = \"fox leisure\"", "question": "Who is the captain of the team that has a kit manufacturer of Fox Leisure?", "context": "CREATE TABLE table_name_30 (captain VARCHAR, kit_manufacturer VARCHAR)"}, {"answer": "SELECT captain FROM table_name_79 WHERE shirt_sponsor = \"one2one\"", "question": "One2one is the shirt sponsor for the captain of what team?", "context": "CREATE TABLE table_name_79 (captain VARCHAR, shirt_sponsor VARCHAR)"}, {"answer": "SELECT kit_manufacturer FROM table_name_50 WHERE captain = \"gareth southgate\"", "question": "What company is the kit manufacturer that Gareth Southgate belongs to?", "context": "CREATE TABLE table_name_50 (kit_manufacturer VARCHAR, captain VARCHAR)"}, {"answer": "SELECT result FROM table_name_81 WHERE year = 2010 AND tournament = \"world amateur championship\"", "question": "for the tournament of world amateur championship what was the result in 2010?", "context": "CREATE TABLE table_name_81 (result VARCHAR, year VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT location FROM table_name_45 WHERE rank > 8 AND date = \"22 july 2011\"", "question": "Which location had a race that took place on 22 July 2011 and has a rank greater than 8?", "context": "CREATE TABLE table_name_45 (location VARCHAR, rank VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(gold_medals) FROM table_name_27 WHERE total_medals = 2 AND bronze_medals < 0", "question": "How many gold medals for the school with 2 total medals and under 0 bronzes?", "context": "CREATE TABLE table_name_27 (gold_medals VARCHAR, total_medals VARCHAR, bronze_medals VARCHAR)"}, {"answer": "SELECT COUNT(gold_medals) FROM table_name_73 WHERE ensemble = \"bellbrook hs\" AND silver_medals < 1", "question": "How many gold medals for bellbrook HS with less than 1 silver?", "context": "CREATE TABLE table_name_73 (gold_medals VARCHAR, ensemble VARCHAR, silver_medals VARCHAR)"}, {"answer": "SELECT silver_medals FROM table_name_57 WHERE gold_medals = 2 AND total_medals > 2", "question": "How many silvers for a school with 2 golds and over 2 total?", "context": "CREATE TABLE table_name_57 (silver_medals VARCHAR, gold_medals VARCHAR, total_medals VARCHAR)"}, {"answer": "SELECT COUNT(gold_medals) FROM table_name_43 WHERE total_medals < 1", "question": "How many gold medals for the school with less than 1 total?", "context": "CREATE TABLE table_name_43 (gold_medals VARCHAR, total_medals INTEGER)"}, {"answer": "SELECT entrant FROM table_name_76 WHERE year = 1967", "question": "What is the entrant for 1967?", "context": "CREATE TABLE table_name_76 (entrant VARCHAR, year VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_11 WHERE year > 1963 AND chassis = \"eagle mk1\"", "question": "What ist he entrant later than 1963 with an eagle MK1 chassis?", "context": "CREATE TABLE table_name_11 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_65 WHERE pts = \"0\"", "question": "What is the entrant that has 0 points?", "context": "CREATE TABLE table_name_65 (entrant VARCHAR, pts VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_33 WHERE pts = \"16\"", "question": "What is the earliest year with 16 points?", "context": "CREATE TABLE table_name_33 (year INTEGER, pts VARCHAR)"}, {"answer": "SELECT venue FROM table_name_60 WHERE margin < 66 AND opponent = \"north queensland cowboys\"", "question": "Name the venue for margin less than 66 and opponent of north queensland cowboys", "context": "CREATE TABLE table_name_60 (venue VARCHAR, margin VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_93 WHERE opponent = \"penrith panthers\"", "question": "Name the sum of year for penrith panthers opponent", "context": "CREATE TABLE table_name_93 (year INTEGER, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE venue = \"mt smart stadium\" AND year = 1996", "question": "Name the opponent for 1996 at the mt smart stadium venue", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_95 WHERE margin = 46", "question": "Name the average year for 46 margin", "context": "CREATE TABLE table_name_95 (year INTEGER, margin VARCHAR)"}, {"answer": "SELECT margin FROM table_name_89 WHERE year = 2002", "question": "Name the margin for 2002", "context": "CREATE TABLE table_name_89 (margin VARCHAR, year VARCHAR)"}, {"answer": "SELECT affiliation FROM table_name_54 WHERE enrollment > 502", "question": "Which Affiliation has an Enrollement larger than 502?", "context": "CREATE TABLE table_name_54 (affiliation VARCHAR, enrollment INTEGER)"}, {"answer": "SELECT school FROM table_name_76 WHERE enrollment < 301", "question": "What School has an Enrollement smaller than 301?", "context": "CREATE TABLE table_name_76 (school VARCHAR, enrollment INTEGER)"}, {"answer": "SELECT grades FROM table_name_36 WHERE enrollment > 443 AND student_body = \"co-ed\"", "question": "Which Grades has an Enrollment larger htan 443 with a Student body of Co-ed?", "context": "CREATE TABLE table_name_36 (grades VARCHAR, enrollment VARCHAR, student_body VARCHAR)"}, {"answer": "SELECT student_body FROM table_name_27 WHERE affiliation = \"roman catholic\" AND enrollment = 502", "question": "What's the Student Body with an Affiliation of Roman Catholic and has an Enrollment of 502?", "context": "CREATE TABLE table_name_27 (student_body VARCHAR, affiliation VARCHAR, enrollment VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_67 WHERE final_position___tour = 54 AND final_position___vuelta > 55", "question": "What is the average year that has a final Tour position of 54 and a final Vuelta position over 55?", "context": "CREATE TABLE table_name_67 (year INTEGER, final_position___tour VARCHAR, final_position___vuelta VARCHAR)"}, {"answer": "SELECT final_position___vuelta FROM table_name_26 WHERE final_position___giro > 39 AND final_position___tour = 90", "question": "What is the final Vuelta position associated with a final Giro position over 39 and a final Tour position of 90?", "context": "CREATE TABLE table_name_26 (final_position___vuelta VARCHAR, final_position___giro VARCHAR, final_position___tour VARCHAR)"}, {"answer": "SELECT COUNT(final_position___giro) FROM table_name_45 WHERE year = 1971 AND final_position___tour > 50", "question": "How many Giro positions are associated with the year 1971 and Tour final positions over 50?", "context": "CREATE TABLE table_name_45 (final_position___giro VARCHAR, year VARCHAR, final_position___tour VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_94 WHERE rider = \"alex baldolini\"", "question": "How many laps did the rider Alex Baldolini take?", "context": "CREATE TABLE table_name_94 (laps INTEGER, rider VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_85 WHERE time_retired = \"+7.213\" AND grid > 7", "question": "How many laps were completed in the time of +7.213 with a grid number larger than 7?", "context": "CREATE TABLE table_name_85 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_22 WHERE manufacturer = \"ktm\" AND time_retired = \"+3.578\" AND grid > 4", "question": "What is total number of laps for bikes manufactured by KTM with a time of +3.578 and a grid number larger than 4?", "context": "CREATE TABLE table_name_22 (laps VARCHAR, grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)"}, {"answer": "SELECT surface FROM table_name_91 WHERE date = \"may 10, 2009\"", "question": "What was the surface for the May 10, 2009 tournament?", "context": "CREATE TABLE table_name_91 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_44 WHERE laps < 282 AND tyres = \"p\"", "question": "Which co-driver has fewer than 282 laps and type P tyres?", "context": "CREATE TABLE table_name_44 (co_drivers VARCHAR, laps VARCHAR, tyres VARCHAR)"}, {"answer": "SELECT class FROM table_name_24 WHERE tyres = \"g\" AND year > 1988", "question": "Which class more recent than 1988 has G tyres?", "context": "CREATE TABLE table_name_24 (class VARCHAR, tyres VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(caps) FROM table_name_54 WHERE player = \"bruce djite\"", "question": "What is the greatest number of caps for Bruce Djite?", "context": "CREATE TABLE table_name_54 (caps INTEGER, player VARCHAR)"}, {"answer": "SELECT goals FROM table_name_54 WHERE player = \"eugene galekovi\u0107\"", "question": "How many goals were scored by Eugene Galekovi\u0107?", "context": "CREATE TABLE table_name_54 (goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT goals FROM table_name_45 WHERE caps > 16", "question": "How many goals were scored by players with more than 16 caps?", "context": "CREATE TABLE table_name_45 (goals VARCHAR, caps INTEGER)"}, {"answer": "SELECT MAX(rank) FROM table_name_75 WHERE nationality = \"netherlands\"", "question": "What is the highest place of a swimmer from the Netherlands?", "context": "CREATE TABLE table_name_75 (rank INTEGER, nationality VARCHAR)"}, {"answer": "SELECT authority FROM table_name_64 WHERE roll < 254 AND decile = \"8\" AND area = \"te akau\"", "question": "Name the authority for te akau with roll less than 254 and decile of 8", "context": "CREATE TABLE table_name_64 (authority VARCHAR, area VARCHAR, roll VARCHAR, decile VARCHAR)"}, {"answer": "SELECT name FROM table_name_63 WHERE decile = \"6\" AND roll = 93", "question": "Tell me the name with decile of 6 and roll of 93", "context": "CREATE TABLE table_name_63 (name VARCHAR, decile VARCHAR, roll VARCHAR)"}, {"answer": "SELECT result FROM table_name_44 WHERE date = \"january 26, 2006\"", "question": "What is the result of the match on January 26, 2006?", "context": "CREATE TABLE table_name_44 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT bluetooth FROM table_name_5 WHERE launch_year > 2004 AND rom___mib__ = 128 AND wifi = \"802.11b\"", "question": "What was the status of Bluetooth for the model that launched after 2004 with a ROM (MiB) of 128 and a Wifi of 802.11b?", "context": "CREATE TABLE table_name_5 (bluetooth VARCHAR, wifi VARCHAR, launch_year VARCHAR, rom___mib__ VARCHAR)"}, {"answer": "SELECT ram___mib__ FROM table_name_71 WHERE model = \"x30 mid-range\"", "question": "What is the RAM (MiB) value for the X30 Mid-Range model?", "context": "CREATE TABLE table_name_71 (ram___mib__ VARCHAR, model VARCHAR)"}, {"answer": "SELECT SUM(points) FROM table_name_14 WHERE games > 68 AND tied = \"4\" AND goals_against > 272", "question": "How many points did the team with more than 68 games, 4 ties, and more than 272 goals against have?", "context": "CREATE TABLE table_name_14 (points INTEGER, goals_against VARCHAR, games VARCHAR, tied VARCHAR)"}, {"answer": "SELECT event FROM table_name_42 WHERE time = \"45.74\"", "question": "Which event had the time 45.74?", "context": "CREATE TABLE table_name_42 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT time FROM table_name_3 WHERE date = \"december 15, 2010\"", "question": "What was the time of December 15, 2010?", "context": "CREATE TABLE table_name_3 (time VARCHAR, date VARCHAR)"}, {"answer": "SELECT notes FROM table_name_89 WHERE time = \"45.74\"", "question": "What were the notes for the time 45.74?", "context": "CREATE TABLE table_name_89 (notes VARCHAR, time VARCHAR)"}, {"answer": "SELECT player FROM table_name_61 WHERE tries = 23", "question": "What Player has 23 Tries?", "context": "CREATE TABLE table_name_61 (player VARCHAR, tries VARCHAR)"}, {"answer": "SELECT goals FROM table_name_89 WHERE player = \"matt cook\"", "question": "How many Goals did Matt Cook have?", "context": "CREATE TABLE table_name_89 (goals VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_32 WHERE position = \"full back\" AND apps = 0", "question": "What Full Back Player has 0 Apps?", "context": "CREATE TABLE table_name_32 (player VARCHAR, position VARCHAR, apps VARCHAR)"}, {"answer": "SELECT position FROM table_name_38 WHERE goals = \"0\" AND tries < 1 AND player = \"matt james\"", "question": "With 0 Goals and less than 1 Tries, what is Matt James position?", "context": "CREATE TABLE table_name_38 (position VARCHAR, player VARCHAR, goals VARCHAR, tries VARCHAR)"}, {"answer": "SELECT MIN(round) FROM table_name_91 WHERE school = \"university of southern california\"", "question": "What is the earliest round drafted for a University of Southern California player?", "context": "CREATE TABLE table_name_91 (round INTEGER, school VARCHAR)"}, {"answer": "SELECT COUNT(round) FROM table_name_24 WHERE position = \"1b\" AND signed = \"no cardinals - 1969 june\"", "question": "What round drafted was the 1b and a Signed of no cardinals - 1969 june?", "context": "CREATE TABLE table_name_24 (round VARCHAR, position VARCHAR, signed VARCHAR)"}, {"answer": "SELECT event FROM table_name_60 WHERE opponent = \"akihiro gono\" AND method = \"decision\"", "question": "Which event has an Opponent of akihiro gono, and a Method of decision?", "context": "CREATE TABLE table_name_60 (event VARCHAR, opponent VARCHAR, method VARCHAR)"}, {"answer": "SELECT location FROM table_name_84 WHERE opponent = \"masanori suda\"", "question": "Which location has an Opponent of masanori suda?", "context": "CREATE TABLE table_name_84 (location VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_46 WHERE time = \"1:34\"", "question": "Which opponent has a Time of 1:34?", "context": "CREATE TABLE table_name_46 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT event FROM table_name_52 WHERE res = \"loss\" AND opponent = \"maurice smith\"", "question": "Which event resulted in loss with an Opponent of maurice smith?", "context": "CREATE TABLE table_name_52 (event VARCHAR, res VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT gold FROM table_name_97 WHERE bronze = \"\u2193 1\" AND sport = \"cycling\"", "question": "What is the winner of gold  that also has \u2193 1 in the sport of cycling?", "context": "CREATE TABLE table_name_97 (gold VARCHAR, bronze VARCHAR, sport VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_91 WHERE team = \"gulf racing middle east\"", "question": "What is the most recent year that Gulf Racing Middle East won?", "context": "CREATE TABLE table_name_91 (year INTEGER, team VARCHAR)"}, {"answer": "SELECT class FROM table_name_58 WHERE co_drivers = \"emanuele pirro jj lehto\"", "question": "What is the class of the co-driver emanuele pirro jj lehto?", "context": "CREATE TABLE table_name_58 (class VARCHAR, co_drivers VARCHAR)"}, {"answer": "SELECT pos FROM table_name_95 WHERE team = \"arena motorsports international\"", "question": "What was the final position of Arena Motorsports International?", "context": "CREATE TABLE table_name_95 (pos VARCHAR, team VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_24 WHERE year = 1992", "question": "Who was the Co-Driver of the winner of 1992's race?", "context": "CREATE TABLE table_name_24 (co_drivers VARCHAR, year VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_38 WHERE outcome = \"runner-up\" AND surface = \"hard (i)\"", "question": "What is the score in the final with runner-up as the outcome and hard (i) as the surface?", "context": "CREATE TABLE table_name_38 (score_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT 1 AS st_leg FROM table_name_3 WHERE team_1 = \"us mbila nzambi\"", "question": "What is the 1st leg score when US Mbila Nzambi is team 1?", "context": "CREATE TABLE table_name_3 (team_1 VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE date = \"may 20\"", "question": "Who was the opponent on May 20?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT loss FROM table_name_85 WHERE date = \"may 25\"", "question": "Who took the loss on May 25?", "context": "CREATE TABLE table_name_85 (loss VARCHAR, date VARCHAR)"}, {"answer": "SELECT record FROM table_name_74 WHERE score = \"2-3\"", "question": "What was the record after the game that ended in a 2-3 loss?", "context": "CREATE TABLE table_name_74 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE loss = \"politte (0-2)\"", "question": "What was the date of the game that had a loss of Politte (0-2)?", "context": "CREATE TABLE table_name_25 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_93 WHERE loss = \"hendrickson (0-1)\"", "question": "Who was the opponent at the game that had a loss of Hendrickson (0-1)?", "context": "CREATE TABLE table_name_93 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT MIN(attendance) FROM table_name_7 WHERE record = \"7-15\"", "question": "What was the smallest attendance at a game when the record was 7-15?", "context": "CREATE TABLE table_name_7 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_71 WHERE record = \"6-13\"", "question": "What was the average attendance at a game when the record was 6-13?", "context": "CREATE TABLE table_name_71 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT SUM(yield), _neutrons_per_fission FROM table_name_77 WHERE decay_constant__s_\u22121__ < 0.301 AND half_life__s_ = 22.72 AND group > 2", "question": "What is the yield, neutrons per fission of the group with decay constants less than 0.301, a half-life of 22.72, and a group number larger than 2?", "context": "CREATE TABLE table_name_77 (_neutrons_per_fission VARCHAR, yield INTEGER, group VARCHAR, decay_constant__s_\u22121__ VARCHAR, half_life__s_ VARCHAR)"}, {"answer": "SELECT MAX(overall) FROM table_name_38 WHERE round = 3 AND pick__number > 10", "question": "With Round 3 and Pick # over 10, what is the higher Overall number?", "context": "CREATE TABLE table_name_38 (overall INTEGER, round VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_18 WHERE college = \"nebraska\" AND overall < 190", "question": "What is the highest round for College of Nebraska if the Overall is under 190?", "context": "CREATE TABLE table_name_18 (round INTEGER, college VARCHAR, overall VARCHAR)"}, {"answer": "SELECT college FROM table_name_34 WHERE pick__number = 1 AND overall > 1 AND round = 7", "question": "Which college has a Pick # 1, Overall more than one, and Round is 7?", "context": "CREATE TABLE table_name_34 (college VARCHAR, round VARCHAR, pick__number VARCHAR, overall VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_43 WHERE date = \"21 august 2004\"", "question": "What was the attendance on 21 August 2004?", "context": "CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_76 WHERE time > 53.38", "question": "What is the average rank of an athlete that holds a time higher than 53.38?", "context": "CREATE TABLE table_name_76 (rank INTEGER, time INTEGER)"}, {"answer": "SELECT MAX(lane) FROM table_name_43 WHERE time = 52.84", "question": "What lane did the swimmer with a time of 52.84 have?", "context": "CREATE TABLE table_name_43 (lane INTEGER, time VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_57 WHERE rank = 3", "question": "What lane did the rank 3 swimmer use?", "context": "CREATE TABLE table_name_57 (lane INTEGER, rank VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_3 WHERE date = \"july 15\"", "question": "Which opponent played on July 15?", "context": "CREATE TABLE table_name_3 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT place FROM table_name_94 WHERE player = \"jimmy demaret\"", "question": "Where has Jimmy Demaret as a player?", "context": "CREATE TABLE table_name_94 (place VARCHAR, player VARCHAR)"}, {"answer": "SELECT COUNT(money___) AS $__ FROM table_name_94 WHERE country = \"united states\" AND player = \"byron nelson\"", "question": "How much does it cost for United States and Byron nelson?", "context": "CREATE TABLE table_name_94 (money___ VARCHAR, country VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_11 WHERE place = \"t8\" AND player = \"byron nelson\"", "question": "Which Country has a Place of t8 and byron nelson?", "context": "CREATE TABLE table_name_11 (country VARCHAR, place VARCHAR, player VARCHAR)"}, {"answer": "SELECT AVG(pop_\u00b9) FROM table_name_75 WHERE region = \"ch\u016bgoku\" AND prefecture = \"okayama\"", "question": "Name the average pop for ch\u016bgoku and prefecture of okayama", "context": "CREATE TABLE table_name_75 (pop_\u00b9 INTEGER, region VARCHAR, prefecture VARCHAR)"}, {"answer": "SELECT MAX(pop_\u00b9) FROM table_name_11 WHERE prefecture = \"tottori\"", "question": "Name the highest pop for tottori", "context": "CREATE TABLE table_name_11 (pop_\u00b9 INTEGER, prefecture VARCHAR)"}, {"answer": "SELECT SUM(pop_\u00b9) FROM table_name_13 WHERE prefecture = \"shizuoka\"", "question": "Name the sum of pop for shizuoka", "context": "CREATE TABLE table_name_13 (pop_\u00b9 INTEGER, prefecture VARCHAR)"}, {"answer": "SELECT COUNT(pop_\u00b9) FROM table_name_10 WHERE prefecture = \"ibaraki\"", "question": "Name the total number of pop for ibaraki", "context": "CREATE TABLE table_name_10 (pop_\u00b9 VARCHAR, prefecture VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_16 WHERE location = \"mishawaka\"", "question": "Who is the mascot for Mishawaka?", "context": "CREATE TABLE table_name_16 (mascot VARCHAR, location VARCHAR)"}, {"answer": "SELECT previous_conference FROM table_name_67 WHERE school = \"penn\"", "question": "Which previous conference is associated with Penn school?", "context": "CREATE TABLE table_name_67 (previous_conference VARCHAR, school VARCHAR)"}, {"answer": "SELECT location FROM table_name_97 WHERE county = \"71 st. joseph\" AND school = \"south bend washington\"", "question": "Which location is in 71 St. Joseph county with South Bend Washington school?", "context": "CREATE TABLE table_name_97 (location VARCHAR, county VARCHAR, school VARCHAR)"}, {"answer": "SELECT mascot FROM table_name_8 WHERE school = \"south bend clay\"", "question": "What is the mascot for South Bend Clay?", "context": "CREATE TABLE table_name_8 (mascot VARCHAR, school VARCHAR)"}, {"answer": "SELECT street_address FROM table_name_13 WHERE architect = \"edmund woolley and andrew hamilton\"", "question": "What was the address of the building with architects Edmund Woolley and Andrew Hamilton?", "context": "CREATE TABLE table_name_13 (street_address VARCHAR, architect VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_78 WHERE name = \"tenth presbyterian church\"", "question": "How many years as tallest building was the Tenth Presbyterian Church?", "context": "CREATE TABLE table_name_78 (years_as_tallest VARCHAR, name VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_6 WHERE name = \"independence hall\"", "question": "How many years as tallest building was Independence Hall?", "context": "CREATE TABLE table_name_6 (years_as_tallest VARCHAR, name VARCHAR)"}, {"answer": "SELECT height_ft__m_ FROM table_name_69 WHERE name = \"tenth presbyterian church\"", "question": "What is the height of the Tenth Presbyterian Church?", "context": "CREATE TABLE table_name_69 (height_ft__m_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT record FROM table_name_63 WHERE loss = \"plesac (1-5)\"", "question": "For the Loss of Plesac (1-5), what is the Record?", "context": "CREATE TABLE table_name_63 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_18 WHERE loss = \"plesac (1-5)\"", "question": "For the Loss of Plesac (1-5), what is the Record?", "context": "CREATE TABLE table_name_18 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_98 WHERE year < 1990 AND chassis = \"eurobrun er189\"", "question": "Name the entrant for year less than 1990 and chassis of eurobrun er189", "context": "CREATE TABLE table_name_98 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_57 WHERE year < 1990 AND chassis = \"eurobrun er189\"", "question": "Name the engine for years before 1990 and chassis of eurobrun er189", "context": "CREATE TABLE table_name_57 (engine VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT MIN(touchdowns) FROM table_name_79 WHERE receptions = 51 AND games_started < 16", "question": "With games started smaller than 16 plus receptions of 51, what is the smallest amount of touchdowns listed?", "context": "CREATE TABLE table_name_79 (touchdowns INTEGER, receptions VARCHAR, games_started VARCHAR)"}, {"answer": "SELECT MAX(games_played) FROM table_name_9 WHERE receptions = 6 AND games_started = 10 AND fumbles < 3", "question": "What are the highest number of games played that had game starts of 10, receptions of 6 and fumbles smaller than 3?", "context": "CREATE TABLE table_name_9 (games_played INTEGER, fumbles VARCHAR, receptions VARCHAR, games_started VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE casualties = \"1 wia\" AND circumstances = \"ied\" AND location = \"15km nw of pol-e khomri\"", "question": "When was the location 15km NW of Pol-E Khomri, the circumstaances IED and the casualties of 1 WIA?", "context": "CREATE TABLE table_name_66 (date VARCHAR, location VARCHAR, casualties VARCHAR, circumstances VARCHAR)"}, {"answer": "SELECT date FROM table_name_17 WHERE location = \"pol-e khomri\"", "question": "When was the incident in Pol-E Khomri?", "context": "CREATE TABLE table_name_17 (date VARCHAR, location VARCHAR)"}, {"answer": "SELECT nature_of_incident FROM table_name_99 WHERE location = \"imam sahib area, kunduz province\"", "question": "What was the incident in imam sahib area, kunduz province?", "context": "CREATE TABLE table_name_99 (nature_of_incident VARCHAR, location VARCHAR)"}, {"answer": "SELECT gender FROM table_name_14 WHERE romanized_name = \"kim yoon-yeong\"", "question": "What gender has Romanized name and kim yoon-yeong?", "context": "CREATE TABLE table_name_14 (gender VARCHAR, romanized_name VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_97 WHERE team = \"baltimore ravens\" AND games < 15", "question": "What year did Willis McGahee play fewer than 15 games with the Baltimore Ravens?", "context": "CREATE TABLE table_name_97 (year INTEGER, team VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_81 WHERE year > 2013", "question": "After the 2013 season, what was the fewest number of games that Willis McGahee played in a single season?", "context": "CREATE TABLE table_name_81 (games INTEGER, year INTEGER)"}, {"answer": "SELECT result FROM table_name_32 WHERE competition = \"2006 fifa world cup qualifier\" AND venue = \"warner park sporting complex, bassaterre\"", "question": "What is the result when the competition was the 2006 fifa world cup qualifier, and a Venue of warner park sporting complex, bassaterre?", "context": "CREATE TABLE table_name_32 (result VARCHAR, competition VARCHAR, venue VARCHAR)"}, {"answer": "SELECT venue FROM table_name_98 WHERE competition = \"friendly\" AND result = \"2\u20133\"", "question": "What is the name of the venue when the competition was friendly, with a Result of 2\u20133?", "context": "CREATE TABLE table_name_98 (venue VARCHAR, competition VARCHAR, result VARCHAR)"}, {"answer": "SELECT venue FROM table_name_21 WHERE score = \"5\u20130\" AND competition = \"2007 caribbean cup qualifier\"", "question": "What is the name of the venue when the score was 5\u20130, and a Competition of 2007 caribbean cup qualifier?", "context": "CREATE TABLE table_name_21 (venue VARCHAR, score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT death FROM table_name_45 WHERE name = \"elisabeth of valois\"", "question": "When did elisabeth of valois die?", "context": "CREATE TABLE table_name_45 (death VARCHAR, name VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_14 WHERE year < 1975 AND chassis = \"lotus 20\"", "question": "Who is entered earlier than 1975 and has a Lotus 20 chassis?", "context": "CREATE TABLE table_name_14 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT engine FROM table_name_41 WHERE chassis = \"lotus 49c\"", "question": "Which engine has a Lotus 49c chassis?", "context": "CREATE TABLE table_name_41 (engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_16 WHERE entrant = \"scuderia scribante\" AND chassis = \"brabham bt11\" AND year < 1968", "question": "What are the average points of Scuderia Scribante with a Brabham bt11 chassis before 1968?", "context": "CREATE TABLE table_name_16 (points INTEGER, year VARCHAR, entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_20 WHERE year > 1972 AND chassis = \"mclaren m23\"", "question": "How many points are there for a Mclaren m23 chassis later than 1972?", "context": "CREATE TABLE table_name_20 (points VARCHAR, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT AVG(change___percentage_) FROM table_name_51 WHERE land_area__km\u00b2_ = 546.74 AND population_density__per_km\u00b2_ > 0.5", "question": "What is the average change to have a land area of 546.74 and a population density greater than 0.5?", "context": "CREATE TABLE table_name_51 (change___percentage_ INTEGER, land_area__km\u00b2_ VARCHAR, population_density__per_km\u00b2_ VARCHAR)"}, {"answer": "SELECT finish FROM table_name_64 WHERE year > 1994 AND team = \"mb2\" AND start = \"31\"", "question": "What was the result after 1994 for team MB2 and 31 starts?", "context": "CREATE TABLE table_name_64 (finish VARCHAR, start VARCHAR, year VARCHAR, team VARCHAR)"}, {"answer": "SELECT team FROM table_name_22 WHERE start = \"33\"", "question": "What team has 33 starts?", "context": "CREATE TABLE table_name_22 (team VARCHAR, start VARCHAR)"}, {"answer": "SELECT team FROM table_name_90 WHERE year < 1997 AND manufacturer = \"ford\" AND finish = \"35\"", "question": "What team finished 35 in a ford before 1997?", "context": "CREATE TABLE table_name_90 (team VARCHAR, finish VARCHAR, year VARCHAR, manufacturer VARCHAR)"}, {"answer": "SELECT SUM(score) FROM table_name_29 WHERE venue = \"halmstad\" AND year < 2002", "question": "What was the sum of the scores before the year 2002, that had the venue of Halmstad?", "context": "CREATE TABLE table_name_29 (score INTEGER, venue VARCHAR, year VARCHAR)"}, {"answer": "SELECT MAX(score) FROM table_name_1 WHERE country = \"france\" AND venue = \"bokskogens\"", "question": "What was France's highest score when the venue was Bokskogens?", "context": "CREATE TABLE table_name_1 (score INTEGER, country VARCHAR, venue VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_25 WHERE winner = \"matthew king\" AND score > 270", "question": "What was the earliest year during which the winner was Matthew King, and during which the score was higher than 270?", "context": "CREATE TABLE table_name_25 (year INTEGER, winner VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_7 WHERE score = 270", "question": "What was the average year during which the score was 270?", "context": "CREATE TABLE table_name_7 (year INTEGER, score VARCHAR)"}, {"answer": "SELECT COUNT(score) FROM table_name_76 WHERE winner = \"david patrick\" AND year > 2005", "question": "What were the total number scores after 2005, when the winner was David Patrick?", "context": "CREATE TABLE table_name_76 (score VARCHAR, winner VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_16 WHERE venue = \"bokskogens\"", "question": "What was the average year that the venue was Bokskogens?", "context": "CREATE TABLE table_name_16 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_66 WHERE score = \"4 - 2\"", "question": "Who did the Toronto Blue Jays play against where the score was 4 - 2?", "context": "CREATE TABLE table_name_66 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_52 WHERE date = \"april 11\"", "question": "Who did the Blue Jays play against on April 11?", "context": "CREATE TABLE table_name_52 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_44 WHERE date = \"april 24\"", "question": "Who did the Blue Jays play against on April 24?", "context": "CREATE TABLE table_name_44 (opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(value__) AS $m_ FROM table_name_95 WHERE country = \"england\" AND operating_income_$m_ > -5 AND revenue__$m_ < 103", "question": "What was the average Value ($M) when the Country was England, the Operating income($m) was greater than -5, and the Revenue ($M) was smaller than 103?", "context": "CREATE TABLE table_name_95 (value__ INTEGER, revenue__$m_ VARCHAR, country VARCHAR, operating_income_$m_ VARCHAR)"}, {"answer": "SELECT COUNT(value__) AS $m_ FROM table_name_54 WHERE country = \"spain\" AND rank = 19 AND debt_as__percentageof_value > 159", "question": "What was the total amount of Value ($M), when the Country was Spain, the Rank was 19, and the Debt as % of value was larger than 159?", "context": "CREATE TABLE table_name_54 (value__ VARCHAR, debt_as__percentageof_value VARCHAR, country VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(value__) AS $m_ FROM table_name_3 WHERE revenue__$m_ < 307 AND team = \"valencia\" AND rank < 19", "question": "What was the sum of Value ($M), when the Revenue ($M) was less than 307, the Team was Valencia, and the Rank was smaller than 19?", "context": "CREATE TABLE table_name_3 (value__ INTEGER, rank VARCHAR, revenue__$m_ VARCHAR, team VARCHAR)"}, {"answer": "SELECT COUNT(value__) AS $m_ FROM table_name_36 WHERE rank > 6 AND _percentage_change_on_year = \"-27\"", "question": "What was the total amount of Value ($M), when the Rank was higher than 6, and the % change on year was -27?", "context": "CREATE TABLE table_name_36 (value__ VARCHAR, rank VARCHAR, _percentage_change_on_year VARCHAR)"}, {"answer": "SELECT SUM(revenue__) AS $m_ FROM table_name_35 WHERE debt_as__percentageof_value > 27 AND operating_income_$m_ = 77", "question": "What was the sum of Revenue ($M), when the Debt as % of value was higher than 27, and the Operating income($m) was 77?", "context": "CREATE TABLE table_name_35 (revenue__ INTEGER, debt_as__percentageof_value VARCHAR, operating_income_$m_ VARCHAR)"}, {"answer": "SELECT screening_completed FROM table_name_22 WHERE screening_started = \"23 january 2006\"", "question": "Name the screening completed for screening started 23 january 2006", "context": "CREATE TABLE table_name_22 (screening_completed VARCHAR, screening_started VARCHAR)"}, {"answer": "SELECT screening_started FROM table_name_40 WHERE screening_completed = \"3 may 2006\"", "question": "Name the screening started when it was completed 3 may 2006", "context": "CREATE TABLE table_name_40 (screening_started VARCHAR, screening_completed VARCHAR)"}, {"answer": "SELECT award FROM table_name_2 WHERE result = \"nominated\" AND year = 2007", "question": "What award was Trent Tesoro nominated for in 2007?", "context": "CREATE TABLE table_name_2 (award VARCHAR, result VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_43 WHERE record = \"80-64\"", "question": "What is the score for the team that has a record of 80-64?", "context": "CREATE TABLE table_name_43 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT finish FROM table_name_72 WHERE engine = \"cosworth\" AND team = \"team scandia\"", "question": "What position did team scandia finish when their engine was cosworth?", "context": "CREATE TABLE table_name_72 (finish VARCHAR, engine VARCHAR, team VARCHAR)"}, {"answer": "SELECT finish FROM table_name_10 WHERE engine = \"oldsmobile\" AND start = \"dnq\"", "question": "What was the position of the team that used an oldsmobile engine and DNQ?", "context": "CREATE TABLE table_name_10 (finish VARCHAR, engine VARCHAR, start VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_37 WHERE gold > 0 AND nation = \"russia\"", "question": "what is the least bronze when gold is more than 0 for russia?", "context": "CREATE TABLE table_name_37 (bronze INTEGER, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_19 WHERE nation = \"italy\" AND gold > 1", "question": "what is the highest rank for italy when gold is more than 1?", "context": "CREATE TABLE table_name_19 (rank INTEGER, nation VARCHAR, gold VARCHAR)"}, {"answer": "SELECT SUM(total) FROM table_name_1 WHERE bronze > 1 AND gold < 1", "question": "what is the total when bronze is more than 1 and gold smaller than 1?", "context": "CREATE TABLE table_name_1 (total INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT avg_seek_time_[ms] FROM table_name_26 WHERE device < 3231", "question": "What is the avg seek time for a device that is less than 3231?", "context": "CREATE TABLE table_name_26 (avg_seek_time_ VARCHAR, ms VARCHAR, device INTEGER)"}, {"answer": "SELECT MIN(avg_transfer_rate_)[kb_s] FROM table_name_69 WHERE device = 3243", "question": "What is the smallest transfer rate for a 3243 device?", "context": "CREATE TABLE table_name_69 (kb_s VARCHAR, avg_transfer_rate_ INTEGER, device VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_59 WHERE year > 1955", "question": "Which entrant has a year after 1955?", "context": "CREATE TABLE table_name_59 (entrant VARCHAR, year INTEGER)"}, {"answer": "SELECT MAX(draws) FROM table_name_35 WHERE club = \"real valladolid\" AND played < 38", "question": "How many draws has a Club of real valladolid that was played less than 38?", "context": "CREATE TABLE table_name_35 (draws INTEGER, club VARCHAR, played VARCHAR)"}, {"answer": "SELECT COUNT(losses) FROM table_name_51 WHERE goal_difference = 5 AND draws > 10 AND goals_against = 43", "question": "How many losses are there with 5 goal differences, drew more than 10 times, and 43 goals against?", "context": "CREATE TABLE table_name_51 (losses VARCHAR, goals_against VARCHAR, goal_difference VARCHAR, draws VARCHAR)"}, {"answer": "SELECT award_show FROM table_name_66 WHERE year = 2004 AND category = \"most popular drama\"", "question": "On which award show was Bad Girls nominated for Most Popular Drama in 2004?", "context": "CREATE TABLE table_name_66 (award_show VARCHAR, year VARCHAR, category VARCHAR)"}, {"answer": "SELECT recipient_s_ FROM table_name_5 WHERE result = \"nominated\" AND category = \"most popular drama\" AND year > 2004", "question": "Who was the recipient when the show was nominated for Most Popular Drama after 2004?", "context": "CREATE TABLE table_name_5 (recipient_s_ VARCHAR, year VARCHAR, result VARCHAR, category VARCHAR)"}, {"answer": "SELECT award_show FROM table_name_53 WHERE category = \"best loved drama\" AND year = 2002", "question": "In what award show was Bad Girls nominated for Best Loved Drama in 2002?", "context": "CREATE TABLE table_name_53 (award_show VARCHAR, category VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(total) FROM table_name_97 WHERE silver = 2 AND rank > 7", "question": "What is the average total number of medals for a nation with 2 silver medals and a rank larger than 7?", "context": "CREATE TABLE table_name_97 (total INTEGER, silver VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_95 WHERE silver < 14 AND bronze < 3 AND total = 4 AND nation = \"ukraine\"", "question": "What is the lowest rank of Ukraine with fewer than 14 silver medals, fewer than 3 bronze medals, and a total of 4 medals?", "context": "CREATE TABLE table_name_95 (rank INTEGER, nation VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_68 WHERE total = 16 AND rank > 3", "question": "What is the total of bronze medals from nations with more than 16 total medals and ranks larger than 3?", "context": "CREATE TABLE table_name_68 (bronze VARCHAR, total VARCHAR, rank VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_90 WHERE total = 4 AND gold = 1", "question": "What is the total number of bronze medals with a total of 4 medals and 1 gold medal?", "context": "CREATE TABLE table_name_90 (bronze VARCHAR, total VARCHAR, gold VARCHAR)"}, {"answer": "SELECT qual FROM table_name_35 WHERE laps > 162 AND year = \"1953\"", "question": "What was the qualification with more than 162 laps in 1953?", "context": "CREATE TABLE table_name_35 (qual VARCHAR, laps VARCHAR, year VARCHAR)"}, {"answer": "SELECT qual FROM table_name_16 WHERE laps = 585", "question": "What was the qualification with more than 585 laps?", "context": "CREATE TABLE table_name_16 (qual VARCHAR, laps VARCHAR)"}, {"answer": "SELECT COUNT(laps) FROM table_name_50 WHERE qual = \"136.168\"", "question": "How many laps had a qualification of 136.168?", "context": "CREATE TABLE table_name_50 (laps VARCHAR, qual VARCHAR)"}, {"answer": "SELECT appointed_by FROM table_name_15 WHERE title = \"envoy extraordinary and minister plenipotentiary\" AND termination_of_mission = \"march 16, 1905\"", "question": "Who was appointed with the title of envoy extraordinary and minister plenipotentiary, and a termination of mission of march 16, 1905?", "context": "CREATE TABLE table_name_15 (appointed_by VARCHAR, title VARCHAR, termination_of_mission VARCHAR)"}, {"answer": "SELECT gdp__billion_us$_ FROM table_name_29 WHERE gdp_per_capita__us$_ = \"8,861\"", "question": "What is the GDP (billion US$) of the country that has a GDP per capita (US$) of 8,861?", "context": "CREATE TABLE table_name_29 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR)"}, {"answer": "SELECT member_countries FROM table_name_71 WHERE population = \"1,341,664\"", "question": "What is the name of the member country that has a Population of 1,341,664?", "context": "CREATE TABLE table_name_71 (member_countries VARCHAR, population VARCHAR)"}, {"answer": "SELECT population FROM table_name_15 WHERE gdp_per_capita__us$_ = \"15,054\"", "question": "What is the total population of the country that has a GDP per capita (US$) of 15,054?", "context": "CREATE TABLE table_name_15 (population VARCHAR, gdp_per_capita__us$_ VARCHAR)"}, {"answer": "SELECT member_countries FROM table_name_47 WHERE area__km\u00b2_ = \"49,036\"", "question": "What is the name of the country that has an Area (km\u00b2) of 49,036?", "context": "CREATE TABLE table_name_47 (member_countries VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT gdp__billion_us$_ FROM table_name_76 WHERE area__km\u00b2_ = \"316\"", "question": "What is the GDP (billion US$) of the country that has an Area (km\u00b2) of 316?", "context": "CREATE TABLE table_name_76 (gdp__billion_us$_ VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT gdp_per_capita__us$_ FROM table_name_54 WHERE population = \"2,011,473\"", "question": "What is the GDP per capita (US$) of the country that has a Population of 2,011,473?", "context": "CREATE TABLE table_name_54 (gdp_per_capita__us$_ VARCHAR, population VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_24 WHERE language = \"korean\"", "question": "What is the original title for the Korean language film?", "context": "CREATE TABLE table_name_24 (original_title VARCHAR, language VARCHAR)"}, {"answer": "SELECT language FROM table_name_24 WHERE original_title = \"la diagonale du fou\"", "question": "What language is the film La Diagonale du Fou in?", "context": "CREATE TABLE table_name_24 (language VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_88 WHERE language = \"hindi\"", "question": "What was the original title of the Hindi film?", "context": "CREATE TABLE table_name_88 (original_title VARCHAR, language VARCHAR)"}, {"answer": "SELECT language FROM table_name_22 WHERE original_title = \"karnal\"", "question": "What language is the film Karnal in?", "context": "CREATE TABLE table_name_22 (language VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_18 WHERE country = \"netherlands\"", "question": "What was the film title nominated from the Netherlands?", "context": "CREATE TABLE table_name_18 (film_title_used_in_nomination VARCHAR, country VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_16 WHERE country = \"sweden\"", "question": "What was the film title nominated from the Sweden?", "context": "CREATE TABLE table_name_16 (film_title_used_in_nomination VARCHAR, country VARCHAR)"}, {"answer": "SELECT score FROM table_name_73 WHERE date = \"15 june 1992\"", "question": "On the Date of 15 June 1992 what is the Score that is listed?", "context": "CREATE TABLE table_name_73 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(crimean_war) FROM table_name_49 WHERE second_afghan_war = \"1\" AND school = \"hamblin and porter's school, cork\"", "question": "What is the average Crimean War with a Second Afghan War totaling 1, and a School of hamblin and porter's school, cork?", "context": "CREATE TABLE table_name_49 (crimean_war INTEGER, second_afghan_war VARCHAR, school VARCHAR)"}, {"answer": "SELECT venue FROM table_name_92 WHERE sport = \"basketball\"", "question": "What Venue has Basketball as a Sport?", "context": "CREATE TABLE table_name_92 (venue VARCHAR, sport VARCHAR)"}, {"answer": "SELECT venue FROM table_name_71 WHERE club = \"spartak st. petersburg\"", "question": "What Venue has Spartak St. Petersburg Club?", "context": "CREATE TABLE table_name_71 (venue VARCHAR, club VARCHAR)"}, {"answer": "SELECT sport FROM table_name_40 WHERE established = 1935 AND league = \"vsl\"", "question": "What League of VSL Sport was Established in 1935?", "context": "CREATE TABLE table_name_40 (sport VARCHAR, established VARCHAR, league VARCHAR)"}, {"answer": "SELECT club FROM table_name_13 WHERE league = \"mhl\" AND established = 2010", "question": "What Club Established in 2010 has a League of MHL?", "context": "CREATE TABLE table_name_13 (club VARCHAR, league VARCHAR, established VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_64 WHERE week = 12", "question": "What was the highest attendance week 12?", "context": "CREATE TABLE table_name_64 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT record FROM table_name_4 WHERE result = \"w 33-3\"", "question": "What is the record for the result w 33-3?", "context": "CREATE TABLE table_name_4 (record VARCHAR, result VARCHAR)"}, {"answer": "SELECT committee FROM table_name_98 WHERE first_elected = 1993", "question": "What Committee has the First Elected of 1993?", "context": "CREATE TABLE table_name_98 (committee VARCHAR, first_elected VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_name_22 WHERE counties_represented = \"anne arundel\" AND district = \"30\" AND committee = \"ways and means\"", "question": "What is the total number of First Elected that has counties represented of Anne Arundel, District of 30, and a Ways and Means Committee?", "context": "CREATE TABLE table_name_22 (first_elected VARCHAR, committee VARCHAR, counties_represented VARCHAR, district VARCHAR)"}, {"answer": "SELECT counties_represented FROM table_name_97 WHERE first_elected = 2006 AND committee = \"ways and means\"", "question": "What counties represented have a First Elected of 2006 and a Ways and Means Committee?", "context": "CREATE TABLE table_name_97 (counties_represented VARCHAR, first_elected VARCHAR, committee VARCHAR)"}, {"answer": "SELECT venue FROM table_name_56 WHERE year > 2001 AND competition = \"summer olympics\"", "question": "What is the venue when the year is after 2001 for the summer olympics?", "context": "CREATE TABLE table_name_56 (venue VARCHAR, year VARCHAR, competition VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_48 WHERE date = \"august 8\"", "question": "What is the total attendance for the August 8 game?", "context": "CREATE TABLE table_name_48 (attendance INTEGER, date VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_53 WHERE record = \"56-59\"", "question": "Which opponent led to a 56-59 record?", "context": "CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT venue FROM table_name_21 WHERE result = \"22-12\"", "question": "Where did they play that the score was 22-12?", "context": "CREATE TABLE table_name_21 (venue VARCHAR, result VARCHAR)"}, {"answer": "SELECT language FROM table_name_56 WHERE year > 2007 AND role = \"urvashi mathur\"", "question": "What language is spoken after 2007 for the role of urvashi mathur?", "context": "CREATE TABLE table_name_56 (language VARCHAR, year VARCHAR, role VARCHAR)"}, {"answer": "SELECT role FROM table_name_26 WHERE language = \"hindi\" AND year = 2011", "question": "What role is spoken in hindi in 2011?", "context": "CREATE TABLE table_name_26 (role VARCHAR, language VARCHAR, year VARCHAR)"}, {"answer": "SELECT notes FROM table_name_30 WHERE language = \"hindi\" AND title = \"miley naa miley hum\"", "question": "What is the note section for the role with a language of hindi and a title of miley naa miley hum?", "context": "CREATE TABLE table_name_30 (notes VARCHAR, language VARCHAR, title VARCHAR)"}, {"answer": "SELECT title FROM table_name_38 WHERE english_translation = \"without me\"", "question": "What is the title of the song that has a translation of Without Me?", "context": "CREATE TABLE table_name_38 (title VARCHAR, english_translation VARCHAR)"}, {"answer": "SELECT molecules FROM table_name_8 WHERE percent_of_mass = \"1.0\"", "question": "what is the molecules when the percent mass is 1.0?", "context": "CREATE TABLE table_name_8 (molecules VARCHAR, percent_of_mass VARCHAR)"}, {"answer": "SELECT molweight__daltons_ FROM table_name_47 WHERE percent_of_mass = \"1.5\"", "question": "what is the mol.weight (daltons) when the percent of mass is 1.5?", "context": "CREATE TABLE table_name_47 (molweight__daltons_ VARCHAR, percent_of_mass VARCHAR)"}, {"answer": "SELECT percent_of_mass FROM table_name_58 WHERE molecules = \"1.74e14*\"", "question": "what is the perfect of mass when the molecules is 1.74e14*?", "context": "CREATE TABLE table_name_58 (percent_of_mass VARCHAR, molecules VARCHAR)"}, {"answer": "SELECT percent_of_mass FROM table_name_21 WHERE molweight__daltons_ = \"1e11\"", "question": "what is the percent of mass when the mol.weight (daltons) is 1e11?", "context": "CREATE TABLE table_name_21 (percent_of_mass VARCHAR, molweight__daltons_ VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_31 WHERE away_team = \"dynamo kyiv\" AND home_team = \"torpedo zaporizhia\"", "question": "How many people attended the game when the away team was dynamo kyiv, and a Home team of torpedo zaporizhia?", "context": "CREATE TABLE table_name_31 (attendance VARCHAR, away_team VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT round FROM table_name_55 WHERE home_team = \"chornomorets odessa\"", "question": "What was the round when the home team was chornomorets odessa?", "context": "CREATE TABLE table_name_55 (round VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT rank FROM table_name_55 WHERE location = \"dnipro stadium , kremenchuk\"", "question": "What is the rank when the game was at dnipro stadium , kremenchuk?", "context": "CREATE TABLE table_name_55 (rank VARCHAR, location VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_48 WHERE engine = \"lamborghini v12\" AND chassis = \"minardi m191b\"", "question": "What are the lowest points for the engines of the Lamborghini v12 and the Chassis on Minardi m191b?", "context": "CREATE TABLE table_name_48 (points INTEGER, engine VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_98 WHERE year < 1997 AND engine = \"lamborghini v12\"", "question": "What is the Chassis from before 1997 with a Lamborghini v12 engine?", "context": "CREATE TABLE table_name_98 (chassis VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_32 WHERE chassis = \"minardi m190\" AND points > 0", "question": "What is the total of the year with a point larger than 0 or the Chassis of Minardi m190?", "context": "CREATE TABLE table_name_32 (year INTEGER, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT MIN(points) FROM table_name_89 WHERE year = 1992 AND chassis = \"minardi m192\"", "question": "What are the lowest points from 1992 with a Chassis of Minardi m192?", "context": "CREATE TABLE table_name_89 (points INTEGER, year VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT entrant FROM table_name_67 WHERE points = 0 AND year = 1997", "question": "What Entrant has 0 points and from 1997?", "context": "CREATE TABLE table_name_67 (entrant VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(roll) FROM table_name_98 WHERE decile = 7 AND authority = \"state\" AND area = \"macraes flat\"", "question": "What is the total roll with a decile less than 7, and an authority of state, in the Macraes Flat area?", "context": "CREATE TABLE table_name_98 (roll VARCHAR, area VARCHAR, decile VARCHAR, authority VARCHAR)"}, {"answer": "SELECT years FROM table_name_78 WHERE decile > 6 AND area = \"waikouaiti\"", "question": "What year has a decile more than 6, in the Waikouaiti area?", "context": "CREATE TABLE table_name_78 (years VARCHAR, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT regular_season FROM table_name_64 WHERE year = \"1994/95\"", "question": "What place did the Nashville Metros place in the 1994/95 Season?", "context": "CREATE TABLE table_name_64 (regular_season VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_63 WHERE league = \"usisl indoor\"", "question": "What years did the Nashville Metros have Usisl Indoor League?", "context": "CREATE TABLE table_name_63 (year VARCHAR, league VARCHAR)"}, {"answer": "SELECT round FROM table_name_37 WHERE opponent = \"kim eun-ha\"", "question": "Which Round has kim eun-ha as an Opponent?", "context": "CREATE TABLE table_name_37 (round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT edition FROM table_name_95 WHERE surface = \"clay\" AND opponent = \"park sung-hee\"", "question": "Which kind of Edition that has a Surface of clay, and Park Sung-Hee as an opponent?", "context": "CREATE TABLE table_name_95 (edition VARCHAR, surface VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT MAX(gold) FROM table_name_87 WHERE total > 9 AND silver > 10", "question": "What is the highest gold number count where a county had over 9 golds and 10 silvers?", "context": "CREATE TABLE table_name_87 (gold INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT SUM(bronze) FROM table_name_88 WHERE total = 7 AND silver > 5", "question": "How many bronze medals did the country with 7 medals and over 5 silver medals receive?", "context": "CREATE TABLE table_name_88 (bronze INTEGER, total VARCHAR, silver VARCHAR)"}, {"answer": "SELECT date FROM table_name_78 WHERE venue = \"lord's\"", "question": "Name the date for venue of lord's", "context": "CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT result FROM table_name_82 WHERE venue = \"lord's\"", "question": "Name the result for venue of lord's", "context": "CREATE TABLE table_name_82 (result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT date FROM table_name_24 WHERE result = \"eng by 23 runs\"", "question": "Name the date for result of eng by 23 runs", "context": "CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR)"}, {"answer": "SELECT date FROM table_name_37 WHERE result = \"draw\" AND venue = \"edgbaston\"", "question": "Name the date for result of draw, and venue of edgbaston", "context": "CREATE TABLE table_name_37 (date VARCHAR, result VARCHAR, venue VARCHAR)"}, {"answer": "SELECT COUNT(week) FROM table_name_73 WHERE record = \"5-5\"", "question": "What is the total number of weeks that the Seahawks had a record of 5-5?", "context": "CREATE TABLE table_name_73 (week VARCHAR, record VARCHAR)"}, {"answer": "SELECT name FROM table_name_77 WHERE wins = \"1\" AND losses = \"1\" AND matches = \"2\"", "question": "Who has 1 win, 1 loss, and has played 2 matches?", "context": "CREATE TABLE table_name_77 (name VARCHAR, matches VARCHAR, wins VARCHAR, losses VARCHAR)"}, {"answer": "SELECT name FROM table_name_47 WHERE losses = \"5\" AND matches = \"11\"", "question": "Who has 5 losses and has played 11 matches?", "context": "CREATE TABLE table_name_47 (name VARCHAR, losses VARCHAR, matches VARCHAR)"}, {"answer": "SELECT matches FROM table_name_43 WHERE wins = \"1\" AND name = \"mohammad al-shamlan\"", "question": "How many matches has Mohammad Al-Shamlan played when there is 1 win?", "context": "CREATE TABLE table_name_43 (matches VARCHAR, wins VARCHAR, name VARCHAR)"}, {"answer": "SELECT matches FROM table_name_92 WHERE draws = \"1\" AND wins = \"1\"", "question": "How many matches were played when there was 1 draw and 1 win?", "context": "CREATE TABLE table_name_92 (matches VARCHAR, draws VARCHAR, wins VARCHAR)"}, {"answer": "SELECT played FROM table_name_65 WHERE lost = \"5\"", "question": "Name the played with lost of 5", "context": "CREATE TABLE table_name_65 (played VARCHAR, lost VARCHAR)"}, {"answer": "SELECT played FROM table_name_95 WHERE points_against = \"points against\"", "question": "Name the played with points against of points against", "context": "CREATE TABLE table_name_95 (played VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_35 WHERE tries_against = \"38\"", "question": "Name the tries with tries against of 38", "context": "CREATE TABLE table_name_35 (tries_for VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_91 WHERE played = \"22\" AND points = \"52\" AND tries_against = \"51\"", "question": "Name the points against when tries against is 51 and points is 52 with played of 22", "context": "CREATE TABLE table_name_91 (points_against VARCHAR, tries_against VARCHAR, played VARCHAR, points VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_27 WHERE club = \"cwmllynfell rfc\"", "question": "Name the points against for cwmllynfell rfc", "context": "CREATE TABLE table_name_27 (points_against VARCHAR, club VARCHAR)"}, {"answer": "SELECT lead FROM table_name_8 WHERE polling_firm = \"election results\" AND psoe = \"39.6% 175\"", "question": "What is lead for the Election Results polling firm and has a PSOE of 39.6% 175?", "context": "CREATE TABLE table_name_8 (lead VARCHAR, polling_firm VARCHAR, psoe VARCHAR)"}, {"answer": "SELECT psoe FROM table_name_78 WHERE polling_firm = \"local elections\"", "question": "What is the PSOE for the Local Elections polling firm?", "context": "CREATE TABLE table_name_78 (psoe VARCHAR, polling_firm VARCHAR)"}, {"answer": "SELECT date FROM table_name_86 WHERE psoe = \"36.1%\"", "question": "Which date has a PSOE of 36.1%?", "context": "CREATE TABLE table_name_86 (date VARCHAR, psoe VARCHAR)"}, {"answer": "SELECT height_ft___m FROM table_name_80 WHERE floors = 9", "question": "Name the height with 9 floors", "context": "CREATE TABLE table_name_80 (height_ft___m VARCHAR, floors VARCHAR)"}, {"answer": "SELECT years_as_tallest FROM table_name_4 WHERE floors > 18", "question": "Name the years as tallest when floors are larger than 18", "context": "CREATE TABLE table_name_4 (years_as_tallest VARCHAR, floors INTEGER)"}, {"answer": "SELECT name FROM table_name_25 WHERE floors = 17", "question": "Tell me the name that has 17 floors", "context": "CREATE TABLE table_name_25 (name VARCHAR, floors VARCHAR)"}, {"answer": "SELECT position FROM table_name_64 WHERE overall < 254 AND round < 5 AND pick__number < 13", "question": "Which was the position for overall less than 254, round less than 5 and pick number less than 13?", "context": "CREATE TABLE table_name_64 (position VARCHAR, pick__number VARCHAR, overall VARCHAR, round VARCHAR)"}, {"answer": "SELECT round FROM table_name_84 WHERE overall = 6", "question": "Name the round having an overall of 6", "context": "CREATE TABLE table_name_84 (round VARCHAR, overall VARCHAR)"}, {"answer": "SELECT position FROM table_name_96 WHERE college = \"virginia\"", "question": "Name the position of the player from college of virginia", "context": "CREATE TABLE table_name_96 (position VARCHAR, college VARCHAR)"}, {"answer": "SELECT date FROM table_name_48 WHERE goal = 3", "question": "What was the date of the game that had a goal of 3?", "context": "CREATE TABLE table_name_48 (date VARCHAR, goal VARCHAR)"}, {"answer": "SELECT date FROM table_name_58 WHERE goal = 4", "question": "What was the date of the game that had a goal of 4?", "context": "CREATE TABLE table_name_58 (date VARCHAR, goal VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_20 WHERE lane = 5", "question": "What is the highest rank of a swimmer in lane 5?", "context": "CREATE TABLE table_name_20 (rank INTEGER, lane VARCHAR)"}, {"answer": "SELECT MIN(rank) FROM table_name_28 WHERE name = \"jens kruppa\" AND lane > 2", "question": "What is the lowest rank of Jens Kruppa in a lane larger than 2?", "context": "CREATE TABLE table_name_28 (rank INTEGER, name VARCHAR, lane VARCHAR)"}, {"answer": "SELECT nationality FROM table_name_33 WHERE rank < 6 AND lane = 6", "question": "Which nationality has a lane of 6 and a rank smaller than 6?", "context": "CREATE TABLE table_name_33 (nationality VARCHAR, rank VARCHAR, lane VARCHAR)"}, {"answer": "SELECT total FROM table_name_33 WHERE player = \"tony jacklin\"", "question": "What is Tony Jacklin's total?", "context": "CREATE TABLE table_name_33 (total VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_9 WHERE player = \"todd hamilton\"", "question": "What was Todd Hamilton's to par?", "context": "CREATE TABLE table_name_9 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_6 WHERE to_par > 11", "question": "When was a game won with more than 11 to par?", "context": "CREATE TABLE table_name_6 (year_s__won VARCHAR, to_par INTEGER)"}, {"answer": "SELECT location FROM table_name_77 WHERE callsign = \"dwrj-fm\"", "question": "Where is the place that has a Callsign of DWRJ-FM?", "context": "CREATE TABLE table_name_77 (location VARCHAR, callsign VARCHAR)"}, {"answer": "SELECT power__kw_ FROM table_name_75 WHERE location = \"metro manila\"", "question": "Which Power has Location in metro manila", "context": "CREATE TABLE table_name_75 (power__kw_ VARCHAR, location VARCHAR)"}, {"answer": "SELECT tier FROM table_name_61 WHERE tournament = \"mont de marson\"", "question": "Which tier of the tournament has Mont de Marson in it?", "context": "CREATE TABLE table_name_61 (tier VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_65 WHERE opponents_in_the_final = \"akgul amanmuradova nina bratchikova\"", "question": "Which date has opponents, Akgul Amanmuradova Nina Bratchikova, in the final?", "context": "CREATE TABLE table_name_65 (date VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_20 WHERE opponents_in_the_final = \"claire de gubernatis alexandra dulgheru\"", "question": "Which date has opponents, Claire De Gubernatis Alexandra Dulgheru, in the final?", "context": "CREATE TABLE table_name_20 (date VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE tournament = \"antalya-belek\"", "question": "What is the score in the touranament of Antalya-Belek?", "context": "CREATE TABLE table_name_66 (score VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE tier = \"itf $10k\"", "question": "Which date has the tier of Itf $10k?", "context": "CREATE TABLE table_name_66 (date VARCHAR, tier VARCHAR)"}, {"answer": "SELECT vs_all FROM table_name_72 WHERE vs_terran = \"159\"", "question": "What is the score vs. all when the score vs. Terran is 159?", "context": "CREATE TABLE table_name_72 (vs_all VARCHAR, vs_terran VARCHAR)"}, {"answer": "SELECT vs_protoss FROM table_name_97 WHERE vs_terran = \"10 wins\"", "question": "What is the score vs. Protoss when the score vs. Terran is 10 wins?", "context": "CREATE TABLE table_name_97 (vs_protoss VARCHAR, vs_terran VARCHAR)"}, {"answer": "SELECT vs_terran FROM table_name_12 WHERE vs_zerg = \"69\"", "question": "What is the score vs. Terran when the score vs. Zerg is 69?", "context": "CREATE TABLE table_name_12 (vs_terran VARCHAR, vs_zerg VARCHAR)"}, {"answer": "SELECT as_of_september_1, _2012 FROM table_name_61 WHERE vs_all = \"65.47%\"", "question": "What occurrs as of September 1, 2012 when the value for vs. all is 65.47%?", "context": "CREATE TABLE table_name_61 (as_of_september_1 VARCHAR, _2012 VARCHAR, vs_all VARCHAR)"}, {"answer": "SELECT record FROM table_name_35 WHERE opponent = \"bye\"", "question": "What is the record of the opponent that has a bye?", "context": "CREATE TABLE table_name_35 (record VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT AVG(total_medals) FROM table_name_99 WHERE gold_medals = 0 AND ensemble = \"roland hayes school\"", "question": "What was the average total medals received by Roland Hayes School when there were 0 gold medals?", "context": "CREATE TABLE table_name_99 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR)"}, {"answer": "SELECT COUNT(total_medals) FROM table_name_42 WHERE ensemble = \"james logan high school\" AND silver_medals < 1", "question": "What was the total number of medals received by James Logan High School when it received less than 1 silver medal?", "context": "CREATE TABLE table_name_42 (total_medals VARCHAR, ensemble VARCHAR, silver_medals VARCHAR)"}, {"answer": "SELECT MAX(bronze_medals) FROM table_name_77 WHERE gold_medals < 0", "question": "What is the highest number of bronze medals received by an ensemble who received fewer than 0 gold medals?", "context": "CREATE TABLE table_name_77 (bronze_medals INTEGER, gold_medals INTEGER)"}, {"answer": "SELECT score FROM table_name_3 WHERE competition = \"2008 africa cup of nations\"", "question": "What was the Score of the 2008 Africa Cup of Nations Competition?", "context": "CREATE TABLE table_name_3 (score VARCHAR, competition VARCHAR)"}, {"answer": "SELECT MAX(goals_for) FROM table_name_18 WHERE losses < 15 AND position > 8 AND points = \"42+4\"", "question": "Name the most goals with losses less than 15 and position more than 8 with points of 42+4", "context": "CREATE TABLE table_name_18 (goals_for INTEGER, points VARCHAR, losses VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(goals_against) FROM table_name_92 WHERE draws = 8 AND losses < 12 AND wins > 22", "question": "Name the average goals against for draws of 8 and wins more than 22 with losses less than 12", "context": "CREATE TABLE table_name_92 (goals_against INTEGER, wins VARCHAR, draws VARCHAR, losses VARCHAR)"}, {"answer": "SELECT MIN(wins) FROM table_name_19 WHERE position < 20 AND goals_for = 35 AND goal_difference < -20", "question": "Name the least wins for goal difference being less than -20 with position less than 20 and goals for of 35", "context": "CREATE TABLE table_name_19 (wins INTEGER, goal_difference VARCHAR, position VARCHAR, goals_for VARCHAR)"}, {"answer": "SELECT AVG(losses) FROM table_name_58 WHERE draws > 6 AND played > 38", "question": "Name the average losses for draws larger than 6 and played more than 38", "context": "CREATE TABLE table_name_58 (losses INTEGER, draws VARCHAR, played VARCHAR)"}, {"answer": "SELECT MIN(goals_against) FROM table_name_4 WHERE played > 38", "question": "Name the least goals against for played more than 38", "context": "CREATE TABLE table_name_4 (goals_against INTEGER, played INTEGER)"}, {"answer": "SELECT entrant FROM table_name_64 WHERE year > 1961 AND engine = \"ferrari v8\" AND points < 23", "question": "After 1961, who as the Entrant when the engine was a Ferrari v8, and when the points were lower than 23?", "context": "CREATE TABLE table_name_64 (entrant VARCHAR, points VARCHAR, year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_38 WHERE year = 1967", "question": "What is was the Chassis in 1967?", "context": "CREATE TABLE table_name_38 (chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT COUNT(points) FROM table_name_97 WHERE engine = \"ferrari v6\" AND year = 1962", "question": "In 1962, what was the total number of points, when the Engine was Ferrari v6?", "context": "CREATE TABLE table_name_97 (points VARCHAR, engine VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_51 WHERE points < 6 AND year = 1961", "question": "In 1961, what was the Chassis when the points were lower than 6?", "context": "CREATE TABLE table_name_51 (chassis VARCHAR, points VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_68 WHERE entrant = \"scuderia ferrari\" AND chassis = \"ferrari 312/66\"", "question": "What was the sum of the years, when the entrant was Scuderia Ferrari, and when the Chassis was Ferrari 312/66?", "context": "CREATE TABLE table_name_68 (year INTEGER, entrant VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_69 WHERE entrant = \"scuderia centro sud\" AND points = 6", "question": "What was the sum of the years, when the entrant was Scuderia Centro Sud, and when there were 6 points?", "context": "CREATE TABLE table_name_69 (year INTEGER, entrant VARCHAR, points VARCHAR)"}, {"answer": "SELECT authority FROM table_name_93 WHERE gender = \"coed\" AND area = \"kelvin grove\" AND name = \"tkkm o manawatu\"", "question": "In the tkkm o manawatu coed school in kelvin grove, what is the Authority listed/", "context": "CREATE TABLE table_name_93 (authority VARCHAR, name VARCHAR, gender VARCHAR, area VARCHAR)"}, {"answer": "SELECT authority FROM table_name_49 WHERE gender = \"coed\" AND decile > 4 AND roll = \"150\"", "question": "which Authority has a coed school with a decile greater than 4, with a 150 roll?", "context": "CREATE TABLE table_name_49 (authority VARCHAR, roll VARCHAR, gender VARCHAR, decile VARCHAR)"}, {"answer": "SELECT language FROM table_name_68 WHERE original_title = \"trotta\"", "question": "Name the language for trotta", "context": "CREATE TABLE table_name_68 (language VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_85 WHERE director = \"luis bu\u00f1uel\"", "question": "Name the original title directed by luis bu\u00f1uel", "context": "CREATE TABLE table_name_85 (original_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_79 WHERE director = \"sudhendu roy\"", "question": "Name the original title directed by sudhendu roy", "context": "CREATE TABLE table_name_79 (original_title VARCHAR, director VARCHAR)"}, {"answer": "SELECT film_title_used_in_nomination FROM table_name_78 WHERE language = \"spanish\" AND country = \"peru\"", "question": "Name the film title that is spanish from peru", "context": "CREATE TABLE table_name_78 (film_title_used_in_nomination VARCHAR, language VARCHAR, country VARCHAR)"}, {"answer": "SELECT language FROM table_name_96 WHERE country = \"switzerland\"", "question": "Name the langauge for switzerland", "context": "CREATE TABLE table_name_96 (language VARCHAR, country VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_54 WHERE rank > 2 AND bronze = 1 AND silver > 0 AND gold < 0", "question": "What is the Total with 0 Silver and Gold, 1 Bronze and Rank larger than 2?", "context": "CREATE TABLE table_name_54 (total INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_70 WHERE rank < 5 AND gold > 2 AND total = 9 AND silver < 4", "question": "How many Bronze medals were received by the nation that Ranked less than 5 and received more than 2 Gold medals, less than 4 Silver medals with a Total of 9 medals?", "context": "CREATE TABLE table_name_70 (bronze INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR, gold VARCHAR)"}, {"answer": "SELECT order FROM table_name_26 WHERE family = \"vespertilionidae\" AND name = \"northern long-eared myotis\"", "question": "which order of bat belongs to the family of vespertilionidae and includes the northern long-eared myotis?", "context": "CREATE TABLE table_name_26 (order VARCHAR, family VARCHAR, name VARCHAR)"}, {"answer": "SELECT year FROM table_name_42 WHERE class = \"wsc\"", "question": "What year has WSC class?", "context": "CREATE TABLE table_name_42 (year VARCHAR, class VARCHAR)"}, {"answer": "SELECT race FROM table_name_27 WHERE jockey = \"d. beadman\" AND result = \"4th\"", "question": "Which race has D. Beadman for the jockey and a 4th place result?", "context": "CREATE TABLE table_name_27 (race VARCHAR, jockey VARCHAR, result VARCHAR)"}, {"answer": "SELECT 1 AS st_member FROM table_name_7 WHERE election = \"1884 by-election\"", "question": "Who is the 1st member in the 1884 by-election?", "context": "CREATE TABLE table_name_7 (election VARCHAR)"}, {"answer": "SELECT 2 AS nd_party FROM table_name_16 WHERE election = \"1874\"", "question": "What is the 2nd party in the 1874 election?", "context": "CREATE TABLE table_name_16 (election VARCHAR)"}, {"answer": "SELECT school FROM table_name_64 WHERE position = \"c\"", "question": "Which school had a player who played the C position?", "context": "CREATE TABLE table_name_64 (school VARCHAR, position VARCHAR)"}, {"answer": "SELECT AVG(game) FROM table_name_11 WHERE date = \"october 16\"", "question": "Which game is on the date October 16?", "context": "CREATE TABLE table_name_11 (game INTEGER, date VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_75 WHERE 2006 = \"q1\" AND tournament = \"french open\"", "question": "What is the 2009 value with a q1 in 2006 in the French Open?", "context": "CREATE TABLE table_name_75 (tournament VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_83 WHERE 2008 = \"2r\" AND 2013 = \"a\"", "question": "What is the 2010 value with a 2r in 2008 and A in 2013?", "context": "CREATE TABLE table_name_83 (Id VARCHAR)"}, {"answer": "SELECT 2007 FROM table_name_26 WHERE 2009 = \"1r\" AND tournament = \"us open\"", "question": "What is the 2007 value with 1r in 2009 in the US Open?", "context": "CREATE TABLE table_name_26 (tournament VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_55 WHERE 2011 = \"grand slam tournaments\"", "question": "What is the 2009 value in the 2011 Grand Slam Tournaments?", "context": "CREATE TABLE table_name_55 (Id VARCHAR)"}, {"answer": "SELECT 2005 FROM table_name_73 WHERE 2013 = \"1r\" AND 2011 = \"q2\"", "question": "What is the 2005 value with 1r in 2013 and q2 in 2011?", "context": "CREATE TABLE table_name_73 (Id VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_60 WHERE tournament = \"australian open\"", "question": "What is the 2010 value in the Australian Open?", "context": "CREATE TABLE table_name_60 (tournament VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_64 WHERE frequency_mhz < 102.3 AND erp_w = 25", "question": "what is the city of license for the station with the frequency mhz less than 102.3 abd erp w of 25?", "context": "CREATE TABLE table_name_64 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT class FROM table_name_35 WHERE call_sign = \"w254ah\"", "question": "\\What is the class of the station with the call sign w254ah?", "context": "CREATE TABLE table_name_35 (class VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT class FROM table_name_54 WHERE erp_w > 30", "question": "what is the class of the station with erp w more than 30?", "context": "CREATE TABLE table_name_54 (class VARCHAR, erp_w INTEGER)"}, {"answer": "SELECT MAX(frequency_mhz) FROM table_name_77 WHERE call_sign = \"w292cu\"", "question": "what is the highest frequency mhz with the call sign w292cu?", "context": "CREATE TABLE table_name_77 (frequency_mhz INTEGER, call_sign VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_98 WHERE chassis = \"ej15 ej15b\"", "question": "Which constructor makes the ej15 ej15b chassis?", "context": "CREATE TABLE table_name_98 (constructor VARCHAR, chassis VARCHAR)"}, {"answer": "SELECT tyre FROM table_name_35 WHERE driver = \"pedro de la rosa\"", "question": "Which tyre is on the car driven by Pedro de la Rosa?", "context": "CREATE TABLE table_name_35 (tyre VARCHAR, driver VARCHAR)"}, {"answer": "SELECT constructor FROM table_name_34 WHERE chassis = \"rb1\" AND driver = \"david coulthard\"", "question": "Which constructor made the car with a rb1 chassis and which is driven by David Coulthard?", "context": "CREATE TABLE table_name_34 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT engine_\u2020 FROM table_name_85 WHERE chassis = \"c24\" AND driver = \"jacques villeneuve\"", "question": "Which constructor manufactured the car with a c24 chassis and which is driven by Jacques Villeneuve?", "context": "CREATE TABLE table_name_85 (engine_\u2020 VARCHAR, chassis VARCHAR, driver VARCHAR)"}, {"answer": "SELECT region FROM table_name_39 WHERE catalog = \"mhcl-20004\"", "question": "What Region is the MHCL-20004 Catalog?", "context": "CREATE TABLE table_name_39 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT region FROM table_name_88 WHERE catalog = \"alca-272\"", "question": "What region is the ALCA-272 Catalog?", "context": "CREATE TABLE table_name_88 (region VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_77 WHERE catalog = \"alca-9197\"", "question": "What label is the ALCA-9197 Catalog?", "context": "CREATE TABLE table_name_77 (label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_82 WHERE catalog = \"mhcl-20004\"", "question": "What date is the MHCL-20004 Catalog?", "context": "CREATE TABLE table_name_82 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE format = \"ed remaster cd\" AND catalog = \"toct-24365\"", "question": "On what date was the Ed Remaster CD and TOCT-24365 Catalog released?", "context": "CREATE TABLE table_name_88 (date VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT identity_ies_ FROM table_name_93 WHERE dvd_volume > 5", "question": "What identities have more than 5 DVD volumes?", "context": "CREATE TABLE table_name_93 (identity_ies_ VARCHAR, dvd_volume INTEGER)"}, {"answer": "SELECT dvd_volume FROM table_name_36 WHERE identity_ies_ = \"skippy johnson\"", "question": "How many DVD volumes was identified by Skippy Johnson?", "context": "CREATE TABLE table_name_36 (dvd_volume VARCHAR, identity_ies_ VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE visitor = \"st. louis\"", "question": "What was the score when St. Louis was the visiting team?", "context": "CREATE TABLE table_name_92 (score VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT decision FROM table_name_85 WHERE visitor = \"chicago\"", "question": "What was the decision when Chicago was the visiting team?", "context": "CREATE TABLE table_name_85 (decision VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE home = \"detroit\" AND decision = \"legace\" AND date = \"december 3\"", "question": "What was the score on December 3 when Detroit was the home team and Legace took the decision?", "context": "CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR, home VARCHAR, decision VARCHAR)"}, {"answer": "SELECT record FROM table_name_68 WHERE visitor = \"minnesota\"", "question": "What was the record when Minnesota was the visiting team?", "context": "CREATE TABLE table_name_68 (record VARCHAR, visitor VARCHAR)"}, {"answer": "SELECT date FROM table_name_3 WHERE catalog = \"alca-275\"", "question": "On what date was the record with catalog ALCA-275 released?", "context": "CREATE TABLE table_name_3 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT label FROM table_name_9 WHERE date = \"march 25, 1984\"", "question": "What label released a record on March 25, 1984?", "context": "CREATE TABLE table_name_9 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT label FROM table_name_83 WHERE date = \"december 19, 2001\"", "question": "What label released a record on December 19, 2001?", "context": "CREATE TABLE table_name_83 (label VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalog FROM table_name_94 WHERE date = \"may 27, 2009\"", "question": "What is the catalog of the record released on May 27, 2009?", "context": "CREATE TABLE table_name_94 (catalog VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE label = \"village records\" AND catalog = \"vrcl-2205\"", "question": "On what date was a record from Village Records with catalog VRCL-2205 released?", "context": "CREATE TABLE table_name_5 (date VARCHAR, label VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_32 WHERE catalog = \"alca-275\"", "question": "On what date was the record with catalog ALCA-275 released?", "context": "CREATE TABLE table_name_32 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT MIN(took_office) FROM table_name_70 WHERE name = \"yvette alexander\" AND up_for_reelection > 2016", "question": "What was the earliest year that Yvette Alexander took office and was up for reelection after 2016?", "context": "CREATE TABLE table_name_70 (took_office INTEGER, name VARCHAR, up_for_reelection VARCHAR)"}, {"answer": "SELECT MIN(up_for_reelection) FROM table_name_80 WHERE took_office > 2011 AND position = \"chairman\"", "question": "What is the earliest year a Chairman who took office after 2011 is up for reelection?", "context": "CREATE TABLE table_name_80 (up_for_reelection INTEGER, took_office VARCHAR, position VARCHAR)"}, {"answer": "SELECT year FROM table_name_17 WHERE laps < 36", "question": "What year had less than 36 laps?", "context": "CREATE TABLE table_name_17 (year VARCHAR, laps INTEGER)"}, {"answer": "SELECT MAX(laps) FROM table_name_84 WHERE finish = \"10\" AND qual = \"106.185\"", "question": "What was the most laps with a finish of 10 and qualification of 106.185?", "context": "CREATE TABLE table_name_84 (laps INTEGER, finish VARCHAR, qual VARCHAR)"}, {"answer": "SELECT MAX(laps) FROM table_name_38 WHERE qual = \"106.185\"", "question": "What is the most laps with a qualification of 106.185?", "context": "CREATE TABLE table_name_38 (laps INTEGER, qual VARCHAR)"}, {"answer": "SELECT year FROM table_name_59 WHERE laps < 64 AND finish = \"25\"", "question": "In what year were laps less than 64 and the finish at 25?", "context": "CREATE TABLE table_name_59 (year VARCHAR, laps VARCHAR, finish VARCHAR)"}, {"answer": "SELECT qual FROM table_name_51 WHERE year = \"1932\"", "question": "What was the qualification in 1932?", "context": "CREATE TABLE table_name_51 (qual VARCHAR, year VARCHAR)"}, {"answer": "SELECT start FROM table_name_12 WHERE rank = \"3\" AND year = \"1936\"", "question": "What was the start with a rank of  3 in 1936?", "context": "CREATE TABLE table_name_12 (start VARCHAR, rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT agg FROM table_name_47 WHERE team_1 = \"al-merrikh\"", "question": "For a Team 1 of Al-Merrikh, what was the aggregate?", "context": "CREATE TABLE table_name_47 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_74 WHERE agg = \"1-3\"", "question": "For an aggregate of 1-3, what was the 2nd leg?", "context": "CREATE TABLE table_name_74 (agg VARCHAR)"}, {"answer": "SELECT 2 AS nd_leg FROM table_name_96 WHERE team_2 = \"al-faisaly\"", "question": "For a team 2 of Al-Faisaly, what was the 2nd leg?", "context": "CREATE TABLE table_name_96 (team_2 VARCHAR)"}, {"answer": "SELECT years FROM table_name_90 WHERE area = \"upper hutt\" AND authority = \"private\"", "question": "What years is the private school in upper hutt?", "context": "CREATE TABLE table_name_90 (years VARCHAR, area VARCHAR, authority VARCHAR)"}, {"answer": "SELECT name FROM table_name_39 WHERE decile = \"7\" AND area = \"upper hutt\"", "question": "What school with a decile of 7 is in upper hutt?", "context": "CREATE TABLE table_name_39 (name VARCHAR, decile VARCHAR, area VARCHAR)"}, {"answer": "SELECT authority FROM table_name_58 WHERE gender = \"coed\" AND area = \"pinehaven\"", "question": "What authority is the coed school in pinehaven?", "context": "CREATE TABLE table_name_58 (authority VARCHAR, gender VARCHAR, area VARCHAR)"}, {"answer": "SELECT years FROM table_name_96 WHERE name = \"plateau school\"", "question": "What years does plateau school serve?", "context": "CREATE TABLE table_name_96 (years VARCHAR, name VARCHAR)"}, {"answer": "SELECT authority FROM table_name_2 WHERE name = \"upper valley middle school\"", "question": "Is Upper valley middle school public or private?", "context": "CREATE TABLE table_name_2 (authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT record FROM table_name_57 WHERE date = \"june 13\"", "question": "What is the record on June 13?", "context": "CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT MAX(lot_no) FROM table_name_46 WHERE notes = \"b4 bogies\" AND diagram = 185", "question": "Name the most lot number with notes of b4 bogies and diagram of 185", "context": "CREATE TABLE table_name_46 (lot_no INTEGER, notes VARCHAR, diagram VARCHAR)"}, {"answer": "SELECT fleet_numbers FROM table_name_10 WHERE diagram = 186 AND lot_no = 30798", "question": "Name the fleet numbers for diagram of 186 and lot number of 30798", "context": "CREATE TABLE table_name_10 (fleet_numbers VARCHAR, diagram VARCHAR, lot_no VARCHAR)"}, {"answer": "SELECT name FROM table_name_36 WHERE direction = \"toyohashi east\" AND length__km_ = 24.7", "question": "What line is 24.7 km and head towards Toyohashi East?", "context": "CREATE TABLE table_name_36 (name VARCHAR, direction VARCHAR, length__km_ VARCHAR)"}, {"answer": "SELECT record FROM table_name_26 WHERE date = \"november 18\"", "question": "What is the record on November 18?", "context": "CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_22 WHERE home = \"chicago bears\"", "question": "What was the average attendance when Chicago Bears were the home team?", "context": "CREATE TABLE table_name_22 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE record = \"5-4-1\"", "question": "What is the score when the record is 5-4-1?", "context": "CREATE TABLE table_name_52 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_63 WHERE record = \"1-1-0\"", "question": "What is the largest number in attendance when the record is 1-1-0?", "context": "CREATE TABLE table_name_63 (attendance INTEGER, record VARCHAR)"}, {"answer": "SELECT gdp_per_capita__us$_ FROM table_name_77 WHERE population = \"56,210,000\"", "question": "What is the GDP of the nation with 56,210,000 people?", "context": "CREATE TABLE table_name_77 (gdp_per_capita__us$_ VARCHAR, population VARCHAR)"}, {"answer": "SELECT area__km\u00b2_ FROM table_name_11 WHERE gdp_per_capita__us$_ = \"11,929\"", "question": "What is the area of the nation with GDP per capita (US$) of 11,929?", "context": "CREATE TABLE table_name_11 (area__km\u00b2_ VARCHAR, gdp_per_capita__us$_ VARCHAR)"}, {"answer": "SELECT population FROM table_name_99 WHERE gdp_per_capita__us$_ = \"11,929\"", "question": "What is the population of the nation that has a GDP per capita (US$) of 11,929?", "context": "CREATE TABLE table_name_99 (population VARCHAR, gdp_per_capita__us$_ VARCHAR)"}, {"answer": "SELECT population FROM table_name_31 WHERE area__km\u00b2_ = \"70,273\"", "question": "What is the Population of the nation that has an Area (km\u00b2) of 70,273?", "context": "CREATE TABLE table_name_31 (population VARCHAR, area__km\u00b2_ VARCHAR)"}, {"answer": "SELECT population FROM table_name_68 WHERE member_countries = \"existing members (1973)\"", "question": "What is the Population of the nation that has a Member countries consisting of existing members (1973)?", "context": "CREATE TABLE table_name_68 (population VARCHAR, member_countries VARCHAR)"}, {"answer": "SELECT television_network FROM table_name_67 WHERE type_of_network = \"community\" AND founded = \"2002\"", "question": "What television network, founded in 2002, has a community type of network?", "context": "CREATE TABLE table_name_67 (television_network VARCHAR, type_of_network VARCHAR, founded VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_67 WHERE visiting_team = \"green bay packers\"", "question": "At what stadium did the Green Bay Packers play an away game?", "context": "CREATE TABLE table_name_67 (stadium VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_60 WHERE final_score = \"31-28\"", "question": "At what stadium was the final score 31-28?", "context": "CREATE TABLE table_name_60 (stadium VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_53 WHERE visiting_team = \"kansas city chiefs\"", "question": "Which team hosted the Kansas City Chiefs?", "context": "CREATE TABLE table_name_53 (host_team VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_75 WHERE stadium = \"tampa stadium\"", "question": "What team hosted at Tampa Stadium?", "context": "CREATE TABLE table_name_75 (host_team VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT score FROM table_name_89 WHERE record = \"43-26\"", "question": "With a record of 43-26, what was the score that game?", "context": "CREATE TABLE table_name_89 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_58 WHERE opponent = \"tigers\" AND date = \"june 8\"", "question": "On June 8, what's the loss when the Blue Jays played the Tigers?", "context": "CREATE TABLE table_name_58 (loss VARCHAR, opponent VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_71 WHERE record = \"38-22\"", "question": "What date was the record 38-22?", "context": "CREATE TABLE table_name_71 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE record = \"39-25\"", "question": "The game that had a record of 39-25, what was the score?", "context": "CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT runner_up FROM table_name_12 WHERE margin_of_victory = \"10 strokes\"", "question": "Which runner-up has a 10 strokes margin of victory?", "context": "CREATE TABLE table_name_12 (runner_up VARCHAR, margin_of_victory VARCHAR)"}, {"answer": "SELECT event FROM table_name_66 WHERE time = \"0:55\"", "question": "Which of the events only lasted no more than 0:55?", "context": "CREATE TABLE table_name_66 (event VARCHAR, time VARCHAR)"}, {"answer": "SELECT event FROM table_name_50 WHERE round = 3 AND opponent = \"fernando terere\"", "question": "Which event only lasted for 3 rounds against Fernando Terere?", "context": "CREATE TABLE table_name_50 (event VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT primary_sponsor_s_ FROM table_name_4 WHERE owner_s_ = \"randy humphrey\"", "question": "What is the Primary Sponsor for the team owned by Randy Humphrey?", "context": "CREATE TABLE table_name_4 (primary_sponsor_s_ VARCHAR, owner_s_ VARCHAR)"}, {"answer": "SELECT driver_s_ FROM table_name_57 WHERE owner_s_ = \"bob keselowski\"", "question": "Who is the Driver on Bob Keselowski's team?", "context": "CREATE TABLE table_name_57 (driver_s_ VARCHAR, owner_s_ VARCHAR)"}, {"answer": "SELECT team FROM table_name_50 WHERE crew_chief = \"walter giles\"", "question": "Walter Giles is Crew Chief of what team?", "context": "CREATE TABLE table_name_50 (team VARCHAR, crew_chief VARCHAR)"}, {"answer": "SELECT club FROM table_name_34 WHERE stadium = \"stc krymteplitsia\"", "question": "What club does the stadium stc krymteplitsia belong to?", "context": "CREATE TABLE table_name_34 (club VARCHAR, stadium VARCHAR)"}, {"answer": "SELECT qual FROM table_name_61 WHERE year = \"1947\"", "question": "What was Tony Bettenhausen's qualifying time in 1947?", "context": "CREATE TABLE table_name_61 (qual VARCHAR, year VARCHAR)"}, {"answer": "SELECT year FROM table_name_43 WHERE laps > 200", "question": "Which year did Tony Bettenhausen complete more than 200 laps?", "context": "CREATE TABLE table_name_43 (year VARCHAR, laps INTEGER)"}, {"answer": "SELECT 2006 FROM table_name_40 WHERE 2003 = \"not held\" AND 2012 = \"a\"", "question": "What was the value in 2006 when 2003 was not held and 2012 was A?", "context": "CREATE TABLE table_name_40 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_35 WHERE 2012 = \"grand slam tournaments\"", "question": "What was the 2008 value when 2012 was Grand Slam Tournaments?", "context": "CREATE TABLE table_name_35 (Id VARCHAR)"}, {"answer": "SELECT 2008 FROM table_name_1 WHERE 2012 = \"1r\" AND 2010 = \"a\" AND 2005 = \"a\"", "question": "What was the value in 2008 when 2012 was 1R, 2010 was A, and 2005 was A?", "context": "CREATE TABLE table_name_1 (Id VARCHAR)"}, {"answer": "SELECT 2003 FROM table_name_86 WHERE 2006 = \"wta premier mandatory tournaments\"", "question": "What was the value in 2003 when 2006 was WTA Premier Mandatory Tournaments?", "context": "CREATE TABLE table_name_86 (Id VARCHAR)"}, {"answer": "SELECT 2009 FROM table_name_5 WHERE 2005 = \"a\" AND tournament = \"australian open\"", "question": "What was the value in 2009 when 2005 was A for the Australian Open?", "context": "CREATE TABLE table_name_5 (tournament VARCHAR)"}, {"answer": "SELECT 2012 FROM table_name_83 WHERE 2002 = \"q1\" AND 2010 = \"1r\"", "question": "What was the value in 2012 when 2002 was Q1 and 2010 was 1R?", "context": "CREATE TABLE table_name_83 (Id VARCHAR)"}, {"answer": "SELECT type FROM table_name_15 WHERE gnis_id = 1139805", "question": "What type has a GNIS ID of 1139805", "context": "CREATE TABLE table_name_15 (type VARCHAR, gnis_id VARCHAR)"}, {"answer": "SELECT name FROM table_name_85 WHERE usgs_map = \"clear lake\"", "question": "Which name has a USGS Map of clear lake?", "context": "CREATE TABLE table_name_85 (name VARCHAR, usgs_map VARCHAR)"}, {"answer": "SELECT status FROM table_name_31 WHERE name = \"norris\"", "question": "What is the status of Norris?", "context": "CREATE TABLE table_name_31 (status VARCHAR, name VARCHAR)"}, {"answer": "SELECT source FROM table_name_18 WHERE name = \"laird\"", "question": "What is the source for Laird?", "context": "CREATE TABLE table_name_18 (source VARCHAR, name VARCHAR)"}, {"answer": "SELECT 1958 AS _ci\u00e9 FROM table_name_69 WHERE class = \"s\"", "question": "What 1958 CIE is class s?", "context": "CREATE TABLE table_name_69 (class VARCHAR)"}, {"answer": "SELECT date_withdrawn FROM table_name_96 WHERE fleet_numbers = \"12, 25, 42\u201346, 50, 70\u201371, 74\u201377, 106\u2013107, 129\"", "question": "What day withdrawn is associated with fleet numbers of 12, 25, 42\u201346, 50, 70\u201371, 74\u201377, 106\u2013107, 129?", "context": "CREATE TABLE table_name_96 (date_withdrawn VARCHAR, fleet_numbers VARCHAR)"}, {"answer": "SELECT player FROM table_name_72 WHERE score = 74 - 74 - 73 - 70 = 291", "question": "Which player has a score of 74-74-73-70=291?", "context": "CREATE TABLE table_name_72 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(earnings___) AS $__ FROM table_name_58 WHERE country = \"united states\" AND score = 72 - 68 - 74 - 72 = 286", "question": "What is the average earnings of a United States player who had a score of 72-68-74-72=286?", "context": "CREATE TABLE table_name_58 (earnings___ INTEGER, country VARCHAR, score VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_12 WHERE loss = \"mercker (3-1)\"", "question": "What was the attendance at the game that had a loss of Mercker (3-1)?", "context": "CREATE TABLE table_name_12 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_49 WHERE loss = \"ayala (6-12)\"", "question": "What was the attendance at the game that had a loss of Ayala (6-12)?", "context": "CREATE TABLE table_name_49 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_65 WHERE score = \"9-7\"", "question": "What was the loss of the game that had a score of 9-7?", "context": "CREATE TABLE table_name_65 (loss VARCHAR, score VARCHAR)"}, {"answer": "SELECT loss FROM table_name_62 WHERE attendance = \"14,691\"", "question": "What was the loss of the game attended by 14,691?", "context": "CREATE TABLE table_name_62 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT loss FROM table_name_21 WHERE attendance = \"29,704\"", "question": "What was the loss of the game attended by 29,704?", "context": "CREATE TABLE table_name_21 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT winner FROM table_name_66 WHERE location = \"clemson, sc\" AND date = \"november 17, 2012\"", "question": "What is the Winner, when the Location is Clemson, SC, and when the Date is November 17, 2012?", "context": "CREATE TABLE table_name_66 (winner VARCHAR, location VARCHAR, date VARCHAR)"}, {"answer": "SELECT location FROM table_name_88 WHERE score = \"38-29\"", "question": "What is the Location, when the Score is 38-29?", "context": "CREATE TABLE table_name_88 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT location FROM table_name_63 WHERE score = \"35-31\"", "question": "What is the Location, when the Score is 35-31?", "context": "CREATE TABLE table_name_63 (location VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE location = \"clemson, sc\" AND winner = \"clemson\" AND date = \"november 11, 2006\"", "question": "What is the Score, when the Location is Clemson, SC, when the Winner is Clemson, and when the Date is November 11, 2006?", "context": "CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, location VARCHAR, winner VARCHAR)"}, {"answer": "SELECT result FROM table_name_83 WHERE date = \"november 16, 1969\"", "question": "What was the game result on November 16, 1969?", "context": "CREATE TABLE table_name_83 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT general_classification FROM table_name_99 WHERE stage = \"3\"", "question": "What is the general classification of stage 3", "context": "CREATE TABLE table_name_99 (general_classification VARCHAR, stage VARCHAR)"}, {"answer": "SELECT points_classification FROM table_name_55 WHERE young_rider_classification = \"lech piasecki\" AND general_classification = \"stephen roche\" AND winner = \"carrera jeans-vagabond\"", "question": "How many points did lech piasecki, stephen roche, and carrera jeans-vagabond have?", "context": "CREATE TABLE table_name_55 (points_classification VARCHAR, winner VARCHAR, young_rider_classification VARCHAR, general_classification VARCHAR)"}, {"answer": "SELECT venue FROM table_name_23 WHERE date = \"11 september 2012\"", "question": "What venue was the 11 September 2012 game?", "context": "CREATE TABLE table_name_23 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(decile) FROM table_name_40 WHERE roll < 3", "question": "What is the lowest Decile for a school with a roll smaller than 3?", "context": "CREATE TABLE table_name_40 (decile INTEGER, roll INTEGER)"}, {"answer": "SELECT gender FROM table_name_86 WHERE decile = 5 AND roll = 90", "question": "What is the Gender of students at a school with a Decile of 5 and a Roll of 90?", "context": "CREATE TABLE table_name_86 (gender VARCHAR, decile VARCHAR, roll VARCHAR)"}, {"answer": "SELECT years FROM table_name_27 WHERE roll > 23 AND decile > 5", "question": "Name the Years of schools with a Roll Larger than 23 and a Decile greater than 5.", "context": "CREATE TABLE table_name_27 (years VARCHAR, roll VARCHAR, decile VARCHAR)"}, {"answer": "SELECT COUNT(roll) FROM table_name_56 WHERE authority = \"state\" AND area = \"hapuku\" AND decile > 4", "question": "What is the total number of Rolls of State schools in Hapuku with a Decile greater than 4?", "context": "CREATE TABLE table_name_56 (roll VARCHAR, decile VARCHAR, authority VARCHAR, area VARCHAR)"}, {"answer": "SELECT d_45 FROM table_name_23 WHERE d_42 = \"r 22\"", "question": "What is the D45 associated with a D42 of r 22?", "context": "CREATE TABLE table_name_23 (d_45 VARCHAR, d_42 VARCHAR)"}, {"answer": "SELECT d_43 FROM table_name_44 WHERE d_41 = \"r 21\"", "question": "What is the D43 associated with a D41 of r 21?", "context": "CREATE TABLE table_name_44 (d_43 VARCHAR, d_41 VARCHAR)"}, {"answer": "SELECT d_42 FROM table_name_31 WHERE d_47 = \"d 27\"", "question": "What is the D42 associated with a D47 of d 27?", "context": "CREATE TABLE table_name_31 (d_42 VARCHAR, d_47 VARCHAR)"}, {"answer": "SELECT d_43 FROM table_name_92 WHERE d_41 = \"r 16\"", "question": "What is the D43 associated with a D41 of r 16?", "context": "CREATE TABLE table_name_92 (d_43 VARCHAR, d_41 VARCHAR)"}, {"answer": "SELECT record FROM table_name_84 WHERE loss = \"hargan (14\u201313)\"", "question": "What is the record for the game when the loss was hargan (14\u201313)?", "context": "CREATE TABLE table_name_84 (record VARCHAR, loss VARCHAR)"}, {"answer": "SELECT record FROM table_name_10 WHERE score = \"7\u20135\"", "question": "What is the record for the game with a score of 7\u20135?", "context": "CREATE TABLE table_name_10 (record VARCHAR, score VARCHAR)"}, {"answer": "SELECT date FROM table_name_4 WHERE loss = \"aker (3\u20138)\"", "question": "What date was the game with  loss of Aker (3\u20138)?", "context": "CREATE TABLE table_name_4 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_86 WHERE score = \"7\u20131\"", "question": "What team was the opponent when the score was 7\u20131?", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_18 WHERE opponent = \"orioles\" AND loss = \"morehead (5\u20134)\"", "question": "What was the score when the opponent was the Orioles and the loss shows morehead (5\u20134)?", "context": "CREATE TABLE table_name_18 (score VARCHAR, opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_35 WHERE record = \"60-61\"", "question": "Name the opponent with a record of 60-61", "context": "CREATE TABLE table_name_35 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT name FROM table_name_94 WHERE perfection = \"77.96%\"", "question": "Who had a perfection percentage of 77.96%?", "context": "CREATE TABLE table_name_94 (name VARCHAR, perfection VARCHAR)"}, {"answer": "SELECT rank FROM table_name_46 WHERE name = \"svetlana fedorenko\"", "question": "What was the rank of Svetlana Fedorenko?", "context": "CREATE TABLE table_name_46 (rank VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_62 WHERE perfection = \"73.24%\"", "question": "Who had a perfection percentage of 73.24%?", "context": "CREATE TABLE table_name_62 (name VARCHAR, perfection VARCHAR)"}, {"answer": "SELECT score FROM table_name_38 WHERE date = \"june 1\"", "question": "What was the score of the game on June 1?", "context": "CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_6 WHERE opponent = \"andrei pavel\"", "question": "What was the score against andrei pavel?", "context": "CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_52 WHERE tournament = \"bologna\"", "question": "When was the tournament of bologna?", "context": "CREATE TABLE table_name_52 (date VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_31 WHERE surface = \"clay\" AND score = \"6\u20131, 7\u20136\"", "question": "Who played on clay and had a score of 6\u20131, 7\u20136?", "context": "CREATE TABLE table_name_31 (opponent VARCHAR, surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_16 WHERE surface = \"clay\" AND date = \"3 march 2012\"", "question": "Who played on clay on 3 march 2012?", "context": "CREATE TABLE table_name_16 (opponent VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE opponent = \"fabrice martin\"", "question": "What was the score against fabrice martin?", "context": "CREATE TABLE table_name_66 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT surface FROM table_name_58 WHERE score = \"7\u20135, 3\u20136, 7\u20136\"", "question": "What was the surface of the score of 7\u20135, 3\u20136, 7\u20136?", "context": "CREATE TABLE table_name_58 (surface VARCHAR, score VARCHAR)"}, {"answer": "SELECT order FROM table_name_61 WHERE elector = \"marino bulcani\"", "question": "What's the Order with an Elector of Marino Bulcani?", "context": "CREATE TABLE table_name_61 (order VARCHAR, elector VARCHAR)"}, {"answer": "SELECT elevator FROM table_name_25 WHERE elevated = \"1378, september 18\" AND order = \"cardinal-priest\" AND elector = \"poncello orsini\"", "question": "What's the Elevator that has Elevated: 1378, September 18, an Order of Cardinal-Priest, and an Elector of Poncello Orsini?", "context": "CREATE TABLE table_name_25 (elevator VARCHAR, elector VARCHAR, elevated VARCHAR, order VARCHAR)"}, {"answer": "SELECT elector FROM table_name_62 WHERE title = \"deacon of s. maria in domnica\"", "question": "What is listed as the Elector with the Title of Deacon of S. Maria in Domnica?", "context": "CREATE TABLE table_name_62 (elector VARCHAR, title VARCHAR)"}, {"answer": "SELECT elevated FROM table_name_78 WHERE order = \"cardinal-bishop\"", "question": "What's listed for the Elevated category that has an Order of Cardinal-Bishop?", "context": "CREATE TABLE table_name_78 (elevated VARCHAR, order VARCHAR)"}, {"answer": "SELECT division_record FROM table_name_79 WHERE school = \"milford\"", "question": "The Milford School has what Division Record?", "context": "CREATE TABLE table_name_79 (division_record VARCHAR, school VARCHAR)"}, {"answer": "SELECT team FROM table_name_29 WHERE school = \"sussex tech\"", "question": "What is the name of the School of the Sussex Tech's Team?", "context": "CREATE TABLE table_name_29 (team VARCHAR, school VARCHAR)"}, {"answer": "SELECT score FROM table_name_5 WHERE player = \"arnold palmer\"", "question": "What was Arnold Palmer's score in the tournamnet?", "context": "CREATE TABLE table_name_5 (score VARCHAR, player VARCHAR)"}, {"answer": "SELECT party FROM table_name_31 WHERE member = \"peter white\"", "question": "What the name of Peter White's party?", "context": "CREATE TABLE table_name_31 (party VARCHAR, member VARCHAR)"}, {"answer": "SELECT term_in_office FROM table_name_73 WHERE electorate = \"indi\"", "question": "What term did an Electorate of indi have in office?", "context": "CREATE TABLE table_name_73 (term_in_office VARCHAR, electorate VARCHAR)"}, {"answer": "SELECT term_in_office FROM table_name_9 WHERE member = \"hon ralph hunt\"", "question": "What term did hon ralph hunt serve in office?", "context": "CREATE TABLE table_name_9 (term_in_office VARCHAR, member VARCHAR)"}, {"answer": "SELECT party FROM table_name_65 WHERE state = \"vic\" AND member = \"peter fisher\"", "question": "What party is Peter Fisher from Vic serve in office?", "context": "CREATE TABLE table_name_65 (party VARCHAR, state VARCHAR, member VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_26 WHERE year = 2012", "question": "How many laps were done in 2012?", "context": "CREATE TABLE table_name_26 (laps INTEGER, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE score = \"1\u20136 6\u20131 3\u20136\"", "question": "On what day was the score of 1\u20136 6\u20131 3\u20136 achieved?", "context": "CREATE TABLE table_name_12 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT AVG(gold) FROM table_name_62 WHERE total < 14 AND bronze < 1 AND nation = \"czech republic\"", "question": "Name the average gold for czech republic and bronze less than 1 when total is less than 14", "context": "CREATE TABLE table_name_62 (gold INTEGER, nation VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_13 WHERE silver = 4 AND bronze < 3", "question": "Name the highest rank when silver is 4 and bronze is less than 3", "context": "CREATE TABLE table_name_13 (rank INTEGER, silver VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_59 WHERE bronze = 4 AND silver > 6", "question": "Name the total number of total for bronze of 4 and silver more than 6", "context": "CREATE TABLE table_name_59 (total VARCHAR, bronze VARCHAR, silver VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_11 WHERE surface = \"carpet (i)\"", "question": "When the Surface was Carpet (i), what was the Outcome?", "context": "CREATE TABLE table_name_11 (outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT SUM(draw) FROM table_name_49 WHERE place > 6 AND votes > 38", "question": "What is the draw number of the song with a place lower than 6 and more than 38 votes?", "context": "CREATE TABLE table_name_49 (draw INTEGER, place VARCHAR, votes VARCHAR)"}, {"answer": "SELECT COUNT(votes) FROM table_name_4 WHERE artist = \"sahlene\" AND place > 1", "question": "What is the total number of votes Sahlene with a place below 1 has?", "context": "CREATE TABLE table_name_4 (votes VARCHAR, artist VARCHAR, place VARCHAR)"}, {"answer": "SELECT MAX(place) FROM table_name_8 WHERE votes = 38 AND draw > 3", "question": "What is the highest place of the song with 38 votes and a draw great than 3?", "context": "CREATE TABLE table_name_8 (place INTEGER, votes VARCHAR, draw VARCHAR)"}, {"answer": "SELECT SUM(votes) FROM table_name_93 WHERE draw < 4 AND artist = \"yvetta kadakas & ivo linna\"", "question": "How many votes did Yvetta Kadakas & Ivo Linna, who had less than 4 draws, have?", "context": "CREATE TABLE table_name_93 (votes INTEGER, draw VARCHAR, artist VARCHAR)"}, {"answer": "SELECT year FROM table_name_27 WHERE finish = \"3\"", "question": "What year was there a finish of 3?", "context": "CREATE TABLE table_name_27 (year VARCHAR, finish VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_97 WHERE start = \"33\"", "question": "What year was the start 33?", "context": "CREATE TABLE table_name_97 (year INTEGER, start VARCHAR)"}, {"answer": "SELECT year FROM table_name_48 WHERE team = \"simon\" AND start = \"3\"", "question": "When was there a team of Simon and the start was 3?", "context": "CREATE TABLE table_name_48 (year VARCHAR, team VARCHAR, start VARCHAR)"}, {"answer": "SELECT city FROM table_name_69 WHERE spire__m_ = \"105\" AND roof___m__ < 96 AND built = 1985", "question": "What's the name of the 1985 city with a Spire (m) of 105, and a Roof (m) smaller than 96?", "context": "CREATE TABLE table_name_69 (city VARCHAR, built VARCHAR, spire__m_ VARCHAR, roof___m__ VARCHAR)"}, {"answer": "SELECT AVG(floors) FROM table_name_67 WHERE built = 2004 AND roof___m__ = 106", "question": "What's the average number of floors that were built in 2004, and have a roof (m) of 106?", "context": "CREATE TABLE table_name_67 (floors INTEGER, built VARCHAR, roof___m__ VARCHAR)"}, {"answer": "SELECT SUM(floors) FROM table_name_73 WHERE built > 2006 AND rank = 12", "question": "What's the total number of floors built after 2006, and have a rank of 12?", "context": "CREATE TABLE table_name_73 (floors INTEGER, built VARCHAR, rank VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_80 WHERE h___a = \"n\"", "question": "What is the sum of attendance for H/A values of \"n\"?", "context": "CREATE TABLE table_name_80 (attendance INTEGER, h___a VARCHAR)"}, {"answer": "SELECT score FROM table_name_85 WHERE opponent = \"stefano galvani\"", "question": "Name the score which has opponent of stefano galvani", "context": "CREATE TABLE table_name_85 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT score FROM table_name_44 WHERE opponent = \"javier genaro-martinez\"", "question": "Name the score with opponent of javier genaro-martinez", "context": "CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_58 WHERE tournament = \"dunlop world challenge\"", "question": "Name the outcome for dunlop world challenge", "context": "CREATE TABLE table_name_58 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_31 WHERE date = \"december 6\"", "question": "Who was the visiting team on December 6?", "context": "CREATE TABLE table_name_31 (visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_31 WHERE date = \"october 4\"", "question": "Who was the host team on October 4?", "context": "CREATE TABLE table_name_31 (host_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT value___usd__ FROM table_name_70 WHERE date = \"unknown\" AND business = \"energy\" AND country = \"new zealand\"", "question": "In New Zealand, what's the value that has an unknown date and is an energy business?", "context": "CREATE TABLE table_name_70 (value___usd__ VARCHAR, country VARCHAR, date VARCHAR, business VARCHAR)"}, {"answer": "SELECT company FROM table_name_20 WHERE business = \"energy\" AND date = \"unknown\"", "question": "What company has an unknown date and is an energy business?", "context": "CREATE TABLE table_name_20 (company VARCHAR, business VARCHAR, date VARCHAR)"}, {"answer": "SELECT company FROM table_name_35 WHERE business = \"energy\" AND date = \"unknown\" AND country = \"united kingdom\"", "question": "In the United Kingdom, what company has an unknown date and is an energy business?", "context": "CREATE TABLE table_name_35 (company VARCHAR, country VARCHAR, business VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE country = \"united kingdom\"", "question": "For the United Kingdom, what's the date?", "context": "CREATE TABLE table_name_88 (date VARCHAR, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_15 WHERE date = \"unknown\" AND company = \"enernoc australia pty ltd\"", "question": "For the Enernoc Australia Pty Ltd, what's the country with an unknown date?", "context": "CREATE TABLE table_name_15 (country VARCHAR, date VARCHAR, company VARCHAR)"}, {"answer": "SELECT date FROM table_name_29 WHERE venue = \"luxembourg\"", "question": "Which date is associated with a venue of Luxembourg?", "context": "CREATE TABLE table_name_29 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_10 WHERE chassis = \"kurtis kraft 500a\" AND points < 1.5", "question": "What is the year with a Kurtis Kraft 500a chassis, and less than 1.5 points?", "context": "CREATE TABLE table_name_10 (year INTEGER, chassis VARCHAR, points VARCHAR)"}, {"answer": "SELECT SUM(year) FROM table_name_86 WHERE chassis = \"kurtis kraft 500a\"", "question": "What is the year with a kurtis kraft 500a chassis?", "context": "CREATE TABLE table_name_86 (year INTEGER, chassis VARCHAR)"}, {"answer": "SELECT MIN(pick__number) FROM table_name_78 WHERE college = \"saint vincent college\"", "question": "What is the lowest Pick # of Saint Vincent College?", "context": "CREATE TABLE table_name_78 (pick__number INTEGER, college VARCHAR)"}, {"answer": "SELECT MIN(overall) FROM table_name_45 WHERE name = \"jack harmon\" AND pick__number < 5", "question": "What is the Overall for Pick # less than 5 Jack Harmon?", "context": "CREATE TABLE table_name_45 (overall INTEGER, name VARCHAR, pick__number VARCHAR)"}, {"answer": "SELECT rank FROM table_name_98 WHERE total_gdp__\u20ac_bn__ = \"\u20ac11.243\"", "question": "Which rank has a Total GDP (\u20ac bn) of \u20ac11.243??", "context": "CREATE TABLE table_name_98 (rank VARCHAR, total_gdp__\u20ac_bn__ VARCHAR)"}, {"answer": "SELECT region FROM table_name_58 WHERE total_gdp__\u20ac_bn__ = \"\u20ac11,745.353\"", "question": "What is the Region that has a Total GDP (\u20ac bn ) of \u20ac11,745.353?", "context": "CREATE TABLE table_name_58 (region VARCHAR, total_gdp__\u20ac_bn__ VARCHAR)"}, {"answer": "SELECT region FROM table_name_24 WHERE _percentage_growth = \"\u22123.6\"", "question": "Which Region that has a growth of \u22123.6%?", "context": "CREATE TABLE table_name_24 (region VARCHAR, _percentage_growth VARCHAR)"}, {"answer": "SELECT per_capita FROM table_name_42 WHERE region = \"greece\"", "question": "What is the per capita of Greece?", "context": "CREATE TABLE table_name_42 (per_capita VARCHAR, region VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_97 WHERE bronze = 40 AND gold > 42", "question": "What is the fewest number of silver medals received by a nation who received 40 bronze medals and more than 42 gold medals?", "context": "CREATE TABLE table_name_97 (silver INTEGER, bronze VARCHAR, gold VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_72 WHERE total > 3 AND bronze > 22 AND gold < 395 AND nation = \"austria\"", "question": "What is the lowest number of silver medals received by Austria when they receive more than 3 total medals, more than 22 bronze medals, and fewer than 395 gold medals?", "context": "CREATE TABLE table_name_72 (silver INTEGER, nation VARCHAR, gold VARCHAR, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT AVG(silver) FROM table_name_53 WHERE gold > 6 AND bronze < 5", "question": "What is the average number of silver medals with more than 6 gold meals and less than 5 bronze medals?", "context": "CREATE TABLE table_name_53 (silver INTEGER, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(rank) FROM table_name_39 WHERE nation = \"switzerland\" AND total > 2", "question": "How many ranks are for Switzerland with more than 2 total medals?", "context": "CREATE TABLE table_name_39 (rank VARCHAR, nation VARCHAR, total VARCHAR)"}, {"answer": "SELECT event FROM table_name_39 WHERE round > 2 AND method = \"ko (kick)\"", "question": "What is the event of the match with a round larger than 2 and ended with a method of ko (kick)?", "context": "CREATE TABLE table_name_39 (event VARCHAR, round VARCHAR, method VARCHAR)"}, {"answer": "SELECT method FROM table_name_82 WHERE round > 1 AND event = \"k-1 andy memorial 2001 japan gp final\"", "question": "What is the method of the match after round 1 in the k-1 andy memorial 2001 japan gp final?", "context": "CREATE TABLE table_name_82 (method VARCHAR, round VARCHAR, event VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_91 WHERE opponent = \"rene rooze\" AND location = \"saitama, japan\"", "question": "What is the highest round of the match with Rene Rooze as the opponent in Saitama, Japan?", "context": "CREATE TABLE table_name_91 (round INTEGER, opponent VARCHAR, location VARCHAR)"}, {"answer": "SELECT MAX(round) FROM table_name_97 WHERE time = \"0:57\"", "question": "What is the highest round of the match with a time of 0:57?", "context": "CREATE TABLE table_name_97 (round INTEGER, time VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_52 WHERE tries_for = \"52\" AND try_bonus = \"7\"", "question": "How many points did the Club score that has a try bonus of 7 and 52 tries for ?", "context": "CREATE TABLE table_name_52 (points_for VARCHAR, tries_for VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_64 WHERE tries_against = \"80\"", "question": "What is the Losing bonus of the club that has 80 tries against ?", "context": "CREATE TABLE table_name_64 (losing_bonus VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT tries_for FROM table_name_2 WHERE club = \"waunarlwydd rfc\"", "question": "How many tries for does waunarlwydd rfc have ?", "context": "CREATE TABLE table_name_2 (tries_for VARCHAR, club VARCHAR)"}, {"answer": "SELECT lost FROM table_name_7 WHERE points = \"47\"", "question": "How many losses did the club with 47 points have ?", "context": "CREATE TABLE table_name_7 (lost VARCHAR, points VARCHAR)"}, {"answer": "SELECT points_against FROM table_name_92 WHERE try_bonus = \"6\" AND tries_against = \"54\"", "question": "How many points against does the club that has a try bonus of 6 and tries against of 54 have ?", "context": "CREATE TABLE table_name_92 (points_against VARCHAR, try_bonus VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT co_drivers FROM table_name_81 WHERE year = 2008", "question": "Who were the co-drivers in 2008?", "context": "CREATE TABLE table_name_81 (co_drivers VARCHAR, year VARCHAR)"}, {"answer": "SELECT pos FROM table_name_66 WHERE year = 2006", "question": "What was the position in 2006?", "context": "CREATE TABLE table_name_66 (pos VARCHAR, year VARCHAR)"}, {"answer": "SELECT class FROM table_name_32 WHERE laps = 325", "question": "What was the class when there were 325 laps?", "context": "CREATE TABLE table_name_32 (class VARCHAR, laps VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_89 WHERE year = 2001", "question": "What is the English title of the film from 2001?", "context": "CREATE TABLE table_name_89 (english_title VARCHAR, year VARCHAR)"}, {"answer": "SELECT original_title FROM table_name_95 WHERE year < 2003 AND country = \"japan/taiwan\"", "question": "What is the original title of the film from Japan/Taiwan before 2003?", "context": "CREATE TABLE table_name_95 (original_title VARCHAR, year VARCHAR, country VARCHAR)"}, {"answer": "SELECT english_title FROM table_name_53 WHERE director_s_ = \"fernando meirelles\"", "question": "What is the English title of the film directed by Fernando Meirelles?", "context": "CREATE TABLE table_name_53 (english_title VARCHAR, director_s_ VARCHAR)"}, {"answer": "SELECT country FROM table_name_69 WHERE original_title = \"cidade de deus\"", "question": "What is the country of the original title Cidade de deus?", "context": "CREATE TABLE table_name_69 (country VARCHAR, original_title VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_44 WHERE country = \"mexico\"", "question": "What is the earliest year of a film from Mexico?", "context": "CREATE TABLE table_name_44 (year INTEGER, country VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_74 WHERE country = \"france/hong kong\"", "question": "What is the average year of the film from France/Hong Kong?", "context": "CREATE TABLE table_name_74 (year INTEGER, country VARCHAR)"}, {"answer": "SELECT country FROM table_name_45 WHERE place = \"t3\"", "question": "Name the country for t3 place", "context": "CREATE TABLE table_name_45 (country VARCHAR, place VARCHAR)"}, {"answer": "SELECT country FROM table_name_28 WHERE to_par = \"+2\"", "question": "Name the country with +2 to par", "context": "CREATE TABLE table_name_28 (country VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_30 WHERE player = \"colin montgomerie\"", "question": "Name the to par for colin montgomerie", "context": "CREATE TABLE table_name_30 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT score FROM table_name_64 WHERE country = \"scotland\"", "question": "Name the score for scotland", "context": "CREATE TABLE table_name_64 (score VARCHAR, country VARCHAR)"}, {"answer": "SELECT island FROM table_name_3 WHERE population > 76 AND height__m_ > 210 AND area___ha__ > 12068", "question": "What island has a population over 76, a height over 210, and an area larger than 12068?", "context": "CREATE TABLE table_name_3 (island VARCHAR, area___ha__ VARCHAR, population VARCHAR, height__m_ VARCHAR)"}, {"answer": "SELECT MAX(population) FROM table_name_17 WHERE location = \"scalloway islands\" AND island = \"trondra\"", "question": "What is the highest population of Trondra Island in the Scalloway Islands?", "context": "CREATE TABLE table_name_17 (population INTEGER, location VARCHAR, island VARCHAR)"}, {"answer": "SELECT COUNT(drawn) FROM table_name_57 WHERE percentage = \"7.14%\" AND lost > 12", "question": "How many matches were drawn associated with a percentage of 7.14% and more than 12 losses?", "context": "CREATE TABLE table_name_57 (drawn VARCHAR, percentage VARCHAR, lost VARCHAR)"}, {"answer": "SELECT percentage FROM table_name_27 WHERE first_game < 1997 AND lost < 2 AND played < 5", "question": "Which percentage has a first game before 1997, fewer than 2 losses, and fewer than 5 matches played?", "context": "CREATE TABLE table_name_27 (percentage VARCHAR, played VARCHAR, first_game VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(drawn) FROM table_name_42 WHERE first_game < 2006 AND played < 2", "question": "What is the total number of drawn matches from first game years before 2006 and fewer than 2 matches played?", "context": "CREATE TABLE table_name_42 (drawn INTEGER, first_game VARCHAR, played VARCHAR)"}, {"answer": "SELECT MAX(lost) FROM table_name_37 WHERE played = 2 AND first_game > 1997 AND drawn > 0", "question": "What is the highest number of losses associated with 2 matches played, a first game after 1997, and more than 0 draws?", "context": "CREATE TABLE table_name_37 (lost INTEGER, drawn VARCHAR, played VARCHAR, first_game VARCHAR)"}, {"answer": "SELECT result FROM table_name_53 WHERE date = \"5,6,7,8 june 1997\"", "question": "What is the Result of the Test match at the Edgbaston Venue on 5,6,7,8 June 1997?", "context": "CREATE TABLE table_name_53 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE venue = \"the oval\"", "question": "What is the Date of the Test match of Australia in England at The Oval Venue?", "context": "CREATE TABLE table_name_12 (date VARCHAR, venue VARCHAR)"}, {"answer": "SELECT away_captain FROM table_name_56 WHERE result = \"aus by 264 runs\"", "question": "Who was the Away captain for the Test match of Australia in England where the Result was AUS by 264 runs?", "context": "CREATE TABLE table_name_56 (away_captain VARCHAR, result VARCHAR)"}, {"answer": "SELECT home_captain FROM table_name_99 WHERE venue = \"edgbaston\"", "question": "Who was the Home captain for the Test match of Australia in England at the Edgbaston Venue?", "context": "CREATE TABLE table_name_99 (home_captain VARCHAR, venue VARCHAR)"}, {"answer": "SELECT role FROM table_name_8 WHERE notes = \"co-protagonist\" AND year = \"2008-2009\"", "question": "what is the name of the role that has co-protagonist in the notes field and the years of 2008-2009?", "context": "CREATE TABLE table_name_8 (role VARCHAR, notes VARCHAR, year VARCHAR)"}, {"answer": "SELECT role FROM table_name_41 WHERE title = \"olvidarte jamas\"", "question": "What is the name of the role that has a Title of Olvidarte Jamas?", "context": "CREATE TABLE table_name_41 (role VARCHAR, title VARCHAR)"}, {"answer": "SELECT production_company FROM table_name_45 WHERE year = \"2005\"", "question": "Which production company has the year of 2005 listed?", "context": "CREATE TABLE table_name_45 (production_company VARCHAR, year VARCHAR)"}, {"answer": "SELECT role FROM table_name_26 WHERE notes = \"antagonist\" AND title = \"salud, dinero y amor\"", "question": "What is the name of the role that has a Title of Salud, Dinero y Amor and antagonist in the notes field?", "context": "CREATE TABLE table_name_26 (role VARCHAR, notes VARCHAR, title VARCHAR)"}, {"answer": "SELECT production_company FROM table_name_19 WHERE year = \"2008-2009\"", "question": "What is the name of the production company that has a year of 2008-2009?", "context": "CREATE TABLE table_name_19 (production_company VARCHAR, year VARCHAR)"}, {"answer": "SELECT authority FROM table_name_82 WHERE area = \"tirau\" AND name = \"kuranui primary school\"", "question": "What is the Authority for Kuranui Primary School that is located in the Area of Tirau?", "context": "CREATE TABLE table_name_82 (authority VARCHAR, area VARCHAR, name VARCHAR)"}, {"answer": "SELECT name FROM table_name_38 WHERE decile > 7", "question": "Which Names have Deciles larger than 7?", "context": "CREATE TABLE table_name_38 (name VARCHAR, decile INTEGER)"}, {"answer": "SELECT gender FROM table_name_62 WHERE roll = \"135\"", "question": "What Gender are the schools that have a Roll of 135?", "context": "CREATE TABLE table_name_62 (gender VARCHAR, roll VARCHAR)"}, {"answer": "SELECT name FROM table_name_13 WHERE authority = \"state\" AND roll = \"72\"", "question": "What is the Name of a state Authority that has a Roll of 72?", "context": "CREATE TABLE table_name_13 (name VARCHAR, authority VARCHAR, roll VARCHAR)"}, {"answer": "SELECT score FROM table_name_37 WHERE competition = \"friendly\" AND date = \"19 april 1979\"", "question": "Which friendly competition took place on 19 April 1979?", "context": "CREATE TABLE table_name_37 (score VARCHAR, competition VARCHAR, date VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_83 WHERE team_2 = \"dynamos fc\"", "question": "Which Team 1 faced Dynamos FC?", "context": "CREATE TABLE table_name_83 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT agg FROM table_name_81 WHERE team_1 = \"al-hilal\"", "question": "What is Team 1 Al-Hilal's Agg.?", "context": "CREATE TABLE table_name_81 (agg VARCHAR, team_1 VARCHAR)"}, {"answer": "SELECT record FROM table_name_34 WHERE date = \"may 7\"", "question": "Which record happened on the date of May 7?", "context": "CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_53 WHERE opponent_in_the_final = \"lubomira bacheva\"", "question": "Which tournament had Lubomira Bacheva as the opponent in the final?", "context": "CREATE TABLE table_name_53 (tournament VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT opponent_in_the_final FROM table_name_46 WHERE date = \"5 july 1992\"", "question": "Who was the opponent in the final on 5 July 1992?", "context": "CREATE TABLE table_name_46 (opponent_in_the_final VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_89 WHERE opponent_in_the_final = \"kyoko nagatsuka\"", "question": "What is the date of the tournament where Kyoko Nagatsuka was the opponent in the final?", "context": "CREATE TABLE table_name_89 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_24 WHERE tournament = \"vaihingen\"", "question": "What is the surface at the tournament of Vaihingen?", "context": "CREATE TABLE table_name_24 (surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT surface FROM table_name_59 WHERE opponent_in_the_final = \"anna benzon\"", "question": "What was the surface of the tournament where Anna Benzon was the opponent in the final?", "context": "CREATE TABLE table_name_59 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT AVG(position) FROM table_name_54 WHERE points < 13 AND goals_ + __ > -12", "question": "What is the average position of Eesti P\u00f5levkivi J\u00f5hvi when they had less than 13 points and worse than a -12 goal differential?", "context": "CREATE TABLE table_name_54 (position INTEGER, points VARCHAR, goals_ VARCHAR, __ VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_18 WHERE score = 70 - 72 - 70 - 69 = 281", "question": "What is the to par for the player who had a score of 70-72-70-69=281?", "context": "CREATE TABLE table_name_18 (to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT year FROM table_name_88 WHERE qual = \"totals\"", "question": "What year had the qual of totals", "context": "CREATE TABLE table_name_88 (year VARCHAR, qual VARCHAR)"}, {"answer": "SELECT qual FROM table_name_64 WHERE finish = \"16\" AND year = \"1968\"", "question": "What qual had a finish of 16 in 1968?", "context": "CREATE TABLE table_name_64 (qual VARCHAR, finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT finish FROM table_name_21 WHERE start = \"25\" AND laps > 46", "question": "What was the finish with the start of 25 and a lap larger than 46?", "context": "CREATE TABLE table_name_21 (finish VARCHAR, start VARCHAR, laps VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_99 WHERE start = \"19\"", "question": "What was the lowest lap with the ranking of 19?", "context": "CREATE TABLE table_name_99 (laps INTEGER, start VARCHAR)"}, {"answer": "SELECT MIN(ovrs) FROM table_name_89 WHERE wkts = 0", "question": "Name the least ovrs for wkts of 0", "context": "CREATE TABLE table_name_89 (ovrs INTEGER, wkts VARCHAR)"}, {"answer": "SELECT AVG(econ) FROM table_name_2 WHERE ovrs > 25.5 AND runs > 703", "question": "Name the average econ for runs more than 703 and ovrs more than 25.5", "context": "CREATE TABLE table_name_2 (econ INTEGER, ovrs VARCHAR, runs VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_68 WHERE class = \"car\" AND stages_won = \"0\" AND position = \"dnf\"", "question": "What is the average year that has a car that won 0 stages with a position of DNF?", "context": "CREATE TABLE table_name_68 (year INTEGER, position VARCHAR, class VARCHAR, stages_won VARCHAR)"}, {"answer": "SELECT class FROM table_name_20 WHERE stages_won = \"2\" AND position = \"dnf\"", "question": "What is the class that that won 2 stages and has a position of DNF?", "context": "CREATE TABLE table_name_20 (class VARCHAR, stages_won VARCHAR, position VARCHAR)"}, {"answer": "SELECT position FROM table_name_89 WHERE vehicle = \"bmw\" AND year = 2006", "question": "What position did the BMW vehicle made in 2006 hold?", "context": "CREATE TABLE table_name_89 (position VARCHAR, vehicle VARCHAR, year VARCHAR)"}, {"answer": "SELECT builder FROM table_name_68 WHERE fuel_propulsion = \"diesel\" AND model = \"d40lf\" AND order_year = \"2005\"", "question": "Which builder has a Fuel Propulsion of diesel, a Model of d40lf, and an Order Year of 2005?", "context": "CREATE TABLE table_name_68 (builder VARCHAR, order_year VARCHAR, fuel_propulsion VARCHAR, model VARCHAR)"}, {"answer": "SELECT model FROM table_name_1 WHERE fleet_series__quantity_ = \"11081-11092 (12)\"", "question": "Which model has a Fleet Series (Quantity) of 11081-11092 (12)?", "context": "CREATE TABLE table_name_1 (model VARCHAR, fleet_series__quantity_ VARCHAR)"}, {"answer": "SELECT order_year FROM table_name_73 WHERE fleet_series__quantity_ = \"12081-12090 (10)\"", "question": "Which order year has a Fleet Series (Quantity) of 12081-12090 (10)?", "context": "CREATE TABLE table_name_73 (order_year VARCHAR, fleet_series__quantity_ VARCHAR)"}, {"answer": "SELECT fleet_series__quantity_ FROM table_name_23 WHERE builder = \"mci\" AND order_year = \"2002\"", "question": "Which Fleet Series (Quantity) that has a Builder of mci, and an Order Year of 2002?", "context": "CREATE TABLE table_name_23 (fleet_series__quantity_ VARCHAR, builder VARCHAR, order_year VARCHAR)"}, {"answer": "SELECT fleet_series__quantity_ FROM table_name_60 WHERE order_year = \"2010\" AND model = \"de40lfr\"", "question": "Which Fleet Series (Quantity) has an Order Year of 2010, and a Model of de40lfr?", "context": "CREATE TABLE table_name_60 (fleet_series__quantity_ VARCHAR, order_year VARCHAR, model VARCHAR)"}, {"answer": "SELECT fuel_propulsion FROM table_name_73 WHERE fleet_series__quantity_ = \"04001-04125 (125)\"", "question": "Which Fuel Propulsion has a Fleet Series (Quantity) of 04001-04125 (125)?", "context": "CREATE TABLE table_name_73 (fuel_propulsion VARCHAR, fleet_series__quantity_ VARCHAR)"}, {"answer": "SELECT SUM(roll) FROM table_name_65 WHERE name = \"morrinsville school\"", "question": "Name the sum of roll for morrinsville school", "context": "CREATE TABLE table_name_65 (roll INTEGER, name VARCHAR)"}, {"answer": "SELECT authority FROM table_name_88 WHERE name = \"morrinsville college\"", "question": "Name the authority for morrinsville college", "context": "CREATE TABLE table_name_88 (authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT years FROM table_name_67 WHERE decile < 7 AND name = \"waitoa school\"", "question": "Name the years when decile was less than 7 for waitoa school", "context": "CREATE TABLE table_name_67 (years VARCHAR, decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(roll) FROM table_name_31 WHERE authority = \"state\" AND name = \"stanley avenue school\" AND decile > 5", "question": "Name the total number of roll for state authority and stanley avenue school with decile more than 5", "context": "CREATE TABLE table_name_31 (roll VARCHAR, decile VARCHAR, authority VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(grid) FROM table_name_35 WHERE laps = 18", "question": "What is the grid total associated with 18 laps?", "context": "CREATE TABLE table_name_35 (grid VARCHAR, laps VARCHAR)"}, {"answer": "SELECT rider FROM table_name_14 WHERE manufacturer = \"aprilia\" AND laps < 18 AND grid = 17", "question": "What rider is on an aprilia that went under 18 laps with a grid total of 17?", "context": "CREATE TABLE table_name_14 (rider VARCHAR, grid VARCHAR, manufacturer VARCHAR, laps VARCHAR)"}, {"answer": "SELECT manufacturer FROM table_name_85 WHERE rider = \"simone corsi\"", "question": "What is the Manufacturer for simone corsi?", "context": "CREATE TABLE table_name_85 (manufacturer VARCHAR, rider VARCHAR)"}, {"answer": "SELECT MIN(grid) FROM table_name_77 WHERE time_retired = \"+33.634\" AND laps < 19", "question": "What is the grid total associated with a Time/Retired of +33.634, and a Laps smaller than 19?", "context": "CREATE TABLE table_name_77 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)"}, {"answer": "SELECT power_rpm FROM table_name_37 WHERE torque__nm__rpm = \"n\u00b7m (lb\u00b7ft)/*n\u00b7m (lb\u00b7ft) @1750\"", "question": "Tell me the power when the torque is n\u00b7m (lb\u00b7ft)/*n\u00b7m (lb\u00b7ft) @1750", "context": "CREATE TABLE table_name_37 (power_rpm VARCHAR, torque__nm__rpm VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_84 WHERE model_engine = \"2.0 duratorq\"", "question": "Name the capacity for the engine of 2.0 duratorq", "context": "CREATE TABLE table_name_84 (capacity VARCHAR, model_engine VARCHAR)"}, {"answer": "SELECT capacity FROM table_name_90 WHERE torque__nm__rpm = \"n\u00b7m (lb\u00b7ft) @4150\"", "question": "Name the capacity for the torque of n\u00b7m (lb\u00b7ft) @4150", "context": "CREATE TABLE table_name_90 (capacity VARCHAR, torque__nm__rpm VARCHAR)"}, {"answer": "SELECT power_rpm FROM table_name_91 WHERE model_engine = \"1.8 duratorq\"", "question": "Name the power for 1.8 duratorq", "context": "CREATE TABLE table_name_91 (power_rpm VARCHAR, model_engine VARCHAR)"}, {"answer": "SELECT power_rpm FROM table_name_62 WHERE torque__nm__rpm = \"n\u00b7m (lb\u00b7ft)/*n\u00b7m (lb\u00b7ft) @1750\"", "question": "Name the power for when the torque is n\u00b7m (lb\u00b7ft)/*n\u00b7m (lb\u00b7ft) @1750", "context": "CREATE TABLE table_name_62 (power_rpm VARCHAR, torque__nm__rpm VARCHAR)"}, {"answer": "SELECT MIN(goals) FROM table_name_20 WHERE goal_ratio = 0.14 AND debut_in_europe < 1995", "question": "What are the smallest goals with a Goal Ratio of 0.14, and a Debut in Europe smaller than 1995?", "context": "CREATE TABLE table_name_20 (goals INTEGER, goal_ratio VARCHAR, debut_in_europe VARCHAR)"}, {"answer": "SELECT AVG(goal_ratio) FROM table_name_71 WHERE goals > 1 AND games > 161 AND debut_in_europe < 1985", "question": "What's the average goal ratio with Goals larger than 1, Games larger than 161, and a Debut in Europe smaller than 1985?", "context": "CREATE TABLE table_name_71 (goal_ratio INTEGER, debut_in_europe VARCHAR, goals VARCHAR, games VARCHAR)"}, {"answer": "SELECT MIN(games) FROM table_name_51 WHERE goals = 20 AND goal_ratio < 0.14", "question": "What lowest games have 20 goals and a Goal Ratio smaller than 0.14?", "context": "CREATE TABLE table_name_51 (games INTEGER, goals VARCHAR, goal_ratio VARCHAR)"}, {"answer": "SELECT MAX(goal_ratio) FROM table_name_73 WHERE goals < 0", "question": "What is the largest goal ratio with Goals smaller than 0?", "context": "CREATE TABLE table_name_73 (goal_ratio INTEGER, goals INTEGER)"}, {"answer": "SELECT MIN(games) FROM table_name_87 WHERE goal_ratio = 0 AND goals < 0", "question": "What lowest games have a Goal Ratio of 0, and Goals smaller than 0?", "context": "CREATE TABLE table_name_87 (games INTEGER, goal_ratio VARCHAR, goals VARCHAR)"}, {"answer": "SELECT COUNT(debut_in_europe) FROM table_name_77 WHERE goals < 76 AND games > 151 AND rank > 5", "question": "How many debuts in Europe have less than 76 goals, more than 151 games, and a rank greater than 5?", "context": "CREATE TABLE table_name_77 (debut_in_europe VARCHAR, rank VARCHAR, goals VARCHAR, games VARCHAR)"}, {"answer": "SELECT AVG(points) FROM table_name_18 WHERE chassis = \"ferrari 1512\" AND year > 1965", "question": "What is the average points of the Ferrari 1512 Chassis after 1965?", "context": "CREATE TABLE table_name_18 (points INTEGER, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT chassis FROM table_name_33 WHERE year > 1965 AND team = \"cooper car company\" AND engine = \"maserati v12\"", "question": "What is the Chassis of the Cooper Car Company after 1965 when the engine was a Maserati v12?", "context": "CREATE TABLE table_name_33 (chassis VARCHAR, engine VARCHAR, year VARCHAR, team VARCHAR)"}, {"answer": "SELECT location FROM table_name_9 WHERE round < 3 AND opponent = \"matt horwich\"", "question": "Which location had a round of 3, and an Opponent of matt horwich?", "context": "CREATE TABLE table_name_9 (location VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT time FROM table_name_45 WHERE event = \"sportfight 10\"", "question": "What was the time of sportfight 10?", "context": "CREATE TABLE table_name_45 (time VARCHAR, event VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_71 WHERE time = \"0:29\"", "question": "Which opponent had a time of 0:29?", "context": "CREATE TABLE table_name_71 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_name_10 WHERE builder = \"ruston hornsby\" AND date = 1961 AND name = \"topsy\"", "question": "What number has the builder ruston hornsby, the date 1961, and the name Topsy?", "context": "CREATE TABLE table_name_10 (number VARCHAR, name VARCHAR, builder VARCHAR, date VARCHAR)"}, {"answer": "SELECT COUNT(number) FROM table_name_62 WHERE builder = \"hunslet\" AND works_number > 822", "question": "What is the number with the builder hunslet and a works number greater than 822?", "context": "CREATE TABLE table_name_62 (number VARCHAR, builder VARCHAR, works_number VARCHAR)"}, {"answer": "SELECT score FROM table_name_95 WHERE date = \"march 14\"", "question": "What was the score of the March 14 game?", "context": "CREATE TABLE table_name_95 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_52 WHERE visitor = \"ottawa senators\" AND date = \"december 11\"", "question": "What was the score for the December 11 game against the Ottawa Senators?", "context": "CREATE TABLE table_name_52 (score VARCHAR, visitor VARCHAR, date VARCHAR)"}, {"answer": "SELECT project FROM table_name_40 WHERE length_overall_in_meters__without_bowsprit_ = 25 AND name = \"levante\"", "question": "Name the project with length overall being 25 and name of levante", "context": "CREATE TABLE table_name_40 (project VARCHAR, length_overall_in_meters__without_bowsprit_ VARCHAR, name VARCHAR)"}, {"answer": "SELECT SUM(hull_no) FROM table_name_84 WHERE destination = \"portugal\"", "question": "Name the sum of Hull number with portugal destination", "context": "CREATE TABLE table_name_84 (hull_no INTEGER, destination VARCHAR)"}, {"answer": "SELECT SUM(hull_no) FROM table_name_37 WHERE destination = \"italy\" AND year > 1999", "question": "Name the sum of hull number for italy and year more than 1999", "context": "CREATE TABLE table_name_37 (hull_no INTEGER, destination VARCHAR, year VARCHAR)"}, {"answer": "SELECT result_s_ FROM table_name_91 WHERE format_s_ = \"album\" AND year = 1994", "question": "Give me the result for a format saying album with 1994 as the year.", "context": "CREATE TABLE table_name_91 (result_s_ VARCHAR, format_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT award_description_s_ FROM table_name_17 WHERE year = 1989", "question": "List the Award Descriptions for the year of 1989.", "context": "CREATE TABLE table_name_17 (award_description_s_ VARCHAR, year VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE date = \"august 5\"", "question": "What was the score of the game played on August 5?", "context": "CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_25 WHERE record = \"60-56\"", "question": "On what date was the Blue Jays record 60-56?", "context": "CREATE TABLE table_name_25 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT name FROM table_name_4 WHERE first_elected > 1988 AND district = \"mason\"", "question": "Tell me the name for first elected more than 1988 and district of mason", "context": "CREATE TABLE table_name_4 (name VARCHAR, first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT party FROM table_name_88 WHERE first_elected > 1999 AND position = \"supervisor\" AND name = \"john foust\"", "question": "Name the party with first elected more than 1999 and position of supervisor for john foust", "context": "CREATE TABLE table_name_88 (party VARCHAR, name VARCHAR, first_elected VARCHAR, position VARCHAR)"}, {"answer": "SELECT COUNT(first_elected) FROM table_name_20 WHERE district = \"dranesville\"", "question": "Name the total number of first elected for dranesville", "context": "CREATE TABLE table_name_20 (first_elected VARCHAR, district VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_71 WHERE venue = \"sydney cricket ground\" AND opponent = \"parramatta eels\"", "question": "What year was the venue at Sydney Cricket Ground, and the opponent was Parramatta Eels?", "context": "CREATE TABLE table_name_71 (year VARCHAR, venue VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT competition FROM table_name_71 WHERE year = 1978", "question": "What was the competition in 1978?", "context": "CREATE TABLE table_name_71 (competition VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_24 WHERE attendance = \"80,388\"", "question": "What year was the average attendance 80,388?", "context": "CREATE TABLE table_name_24 (year INTEGER, attendance VARCHAR)"}, {"answer": "SELECT score FROM table_name_67 WHERE opponent = \"new zealand warriors\"", "question": "What was the score with the opponent being New Zealand Warriors?", "context": "CREATE TABLE table_name_67 (score VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT 1 AS st_party FROM table_name_28 WHERE election = \"1847\"", "question": "Which 1st Party has an election in 1847?", "context": "CREATE TABLE table_name_28 (election VARCHAR)"}, {"answer": "SELECT 1 AS st_party FROM table_name_92 WHERE election = \"1865\"", "question": "Which 1st Party has an election in 1865?", "context": "CREATE TABLE table_name_92 (election VARCHAR)"}, {"answer": "SELECT AVG(total_points) FROM table_name_29 WHERE rider = \"dennis gavros\" AND bonus_pts < 31", "question": "What was the average number of points with bonus pts less than 31 with the rider dennis gavros?", "context": "CREATE TABLE table_name_29 (total_points INTEGER, rider VARCHAR, bonus_pts VARCHAR)"}, {"answer": "SELECT COUNT(matches) FROM table_name_35 WHERE rider = \"dennis gavros\" AND total_points < 167", "question": "How many total matches involving dennis gavros had total points less than 167?", "context": "CREATE TABLE table_name_35 (matches VARCHAR, rider VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT MIN(matches) FROM table_name_36 WHERE bonus_pts = 19 AND total_points > 421", "question": "What is the smallest number of matches with Bonus Pts of 19 and Total Points greater than 421?", "context": "CREATE TABLE table_name_36 (matches INTEGER, bonus_pts VARCHAR, total_points VARCHAR)"}, {"answer": "SELECT category FROM table_name_33 WHERE date < 2006 AND rider_2 = \"bart brentjens\"", "question": "Which category earlier than 2006 has Bart Brentjens as rider 2?", "context": "CREATE TABLE table_name_33 (category VARCHAR, date VARCHAR, rider_2 VARCHAR)"}, {"answer": "SELECT COUNT(date) FROM table_name_37 WHERE category = \"ladies\" AND team = \"rothaus-cube\"", "question": "How many dates does the ladies category correspond to Rothaus-Cube?", "context": "CREATE TABLE table_name_37 (date VARCHAR, category VARCHAR, team VARCHAR)"}, {"answer": "SELECT category FROM table_name_28 WHERE team = \"cannondale vredestein\"", "question": "Which category has a team of Cannondale Vredestein?", "context": "CREATE TABLE table_name_28 (category VARCHAR, team VARCHAR)"}, {"answer": "SELECT qual FROM table_name_9 WHERE rank = \"9\"", "question": "What is the qual with a rank 9?", "context": "CREATE TABLE table_name_9 (qual VARCHAR, rank VARCHAR)"}, {"answer": "SELECT finish FROM table_name_17 WHERE year = \"1956\"", "question": "What is the finish in 1956?", "context": "CREATE TABLE table_name_17 (finish VARCHAR, year VARCHAR)"}, {"answer": "SELECT finish FROM table_name_91 WHERE laps = 200 AND start = \"3\"", "question": "What is the finish with 200 laps and a start of 3?", "context": "CREATE TABLE table_name_91 (finish VARCHAR, laps VARCHAR, start VARCHAR)"}, {"answer": "SELECT qual FROM table_name_86 WHERE laps = 200 AND rank = \"27\"", "question": "What is the qual with 200 laps and a rank of 27?", "context": "CREATE TABLE table_name_86 (qual VARCHAR, laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_13 WHERE finish = \"14\"", "question": "What is the rank with a 14 finish?", "context": "CREATE TABLE table_name_13 (rank VARCHAR, finish VARCHAR)"}, {"answer": "SELECT MIN(cuts_made) FROM table_name_72 WHERE tournament = \"masters tournament\" AND top_25 < 0", "question": "What is the lowest cuts made of the Masters tournament, which had a top-25 less than 0?", "context": "CREATE TABLE table_name_72 (cuts_made INTEGER, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT MAX(wins) FROM table_name_82 WHERE cuts_made = 1 AND top_25 < 1 AND events < 2", "question": "What is the highest number of wins a tournament with 1 cuts made, a top-25 less than 1, and less than 2 events has?", "context": "CREATE TABLE table_name_82 (wins INTEGER, events VARCHAR, cuts_made VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT AVG(events) FROM table_name_84 WHERE tournament = \"masters tournament\" AND top_25 > 0", "question": "What is the average number of events the Masters tournament, which has more than 0 top-25, has?", "context": "CREATE TABLE table_name_84 (events INTEGER, tournament VARCHAR, top_25 VARCHAR)"}, {"answer": "SELECT COUNT(top_25) FROM table_name_93 WHERE events < 2", "question": "What is the total number of top-25 a tournament with less than 2 events has?", "context": "CREATE TABLE table_name_93 (top_25 VARCHAR, events INTEGER)"}, {"answer": "SELECT date FROM table_name_98 WHERE loss = \"gott (2-7)\"", "question": "What was the date of the game that had a loss of Gott (2-7)?", "context": "CREATE TABLE table_name_98 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_13 WHERE record = \"54-58\"", "question": "Who was the opponent at the game when the record was 54-58?", "context": "CREATE TABLE table_name_13 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE record = \"59-65\"", "question": "What was the score of the game when the record was 59-65?", "context": "CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_35 WHERE loss = \"caldwell (10-11)\"", "question": "Who was the opponent at the game that had a loss of Caldwell (10-11)?", "context": "CREATE TABLE table_name_35 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_1 WHERE time = \"1:26\"", "question": "Which opponent had a time of 1:26?", "context": "CREATE TABLE table_name_1 (opponent VARCHAR, time VARCHAR)"}, {"answer": "SELECT date FROM table_name_77 WHERE opponent = \"royals\" AND record = \"18-12\"", "question": "What was the date of the game with the Kansas City Royals when the Blue Jays record was 18-12?", "context": "CREATE TABLE table_name_77 (date VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_33 WHERE region = \"uk\" AND format = \"vinyl\" AND date = \"1986\"", "question": "Which catalogue is from the UK region, and is on vinyl, and was dated in 1986?", "context": "CREATE TABLE table_name_33 (catalogue VARCHAR, date VARCHAR, region VARCHAR, format VARCHAR)"}, {"answer": "SELECT region FROM table_name_82 WHERE label = \"bronze\" AND catalogue = \"202 876-270\"", "question": "What region has a bronze label and a catalogue of 202 876-270?", "context": "CREATE TABLE table_name_82 (region VARCHAR, label VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT label FROM table_name_52 WHERE region = \"germany\"", "question": "Which label is from the Germany region?", "context": "CREATE TABLE table_name_52 (label VARCHAR, region VARCHAR)"}, {"answer": "SELECT label FROM table_name_31 WHERE catalogue = \"brol 34531\"", "question": "What label has brol 34531 as it's catalogue?", "context": "CREATE TABLE table_name_31 (label VARCHAR, catalogue VARCHAR)"}, {"answer": "SELECT label FROM table_name_61 WHERE region = \"uk\" AND date = \"1986\" AND format = \"cd\"", "question": "Which label has UK for its region, is on a CD, and is dated from 1986?", "context": "CREATE TABLE table_name_61 (label VARCHAR, format VARCHAR, region VARCHAR, date VARCHAR)"}, {"answer": "SELECT catalogue FROM table_name_46 WHERE label = \"essential, castle music\"", "question": "Which catalogue has essential, castle music as it's label?", "context": "CREATE TABLE table_name_46 (catalogue VARCHAR, label VARCHAR)"}, {"answer": "SELECT period_active FROM table_name_83 WHERE release_year_of_first_charted_record = 1973 AND genre = \"rock\"", "question": "What's the period of a rock album released in 1973?", "context": "CREATE TABLE table_name_83 (period_active VARCHAR, release_year_of_first_charted_record VARCHAR, genre VARCHAR)"}, {"answer": "SELECT pick__number FROM table_name_15 WHERE name = \"bill atessis\"", "question": "Name the pick number for bill atessis", "context": "CREATE TABLE table_name_15 (pick__number VARCHAR, name VARCHAR)"}, {"answer": "SELECT COUNT(overall) FROM table_name_6 WHERE position = \"defensive tackle\"", "question": "Name the total number of overall for defensive tackle", "context": "CREATE TABLE table_name_6 (overall VARCHAR, position VARCHAR)"}, {"answer": "SELECT engine FROM table_name_7 WHERE entrant = \"daimler benz ag\"", "question": "Which engine has daimler benz ag as an entrant?", "context": "CREATE TABLE table_name_7 (engine VARCHAR, entrant VARCHAR)"}, {"answer": "SELECT year_s__won FROM table_name_86 WHERE to_par = \"+6\"", "question": "In which years was the to par +6?", "context": "CREATE TABLE table_name_86 (year_s__won VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_31 WHERE year_s__won = \"1991\"", "question": "In 1991, what was the lowest total?", "context": "CREATE TABLE table_name_31 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT SUM(lane) FROM table_name_11 WHERE rank > 22", "question": "What are the total lanes that have a rank larger than 22?", "context": "CREATE TABLE table_name_11 (lane INTEGER, rank INTEGER)"}, {"answer": "SELECT name FROM table_name_55 WHERE rank > 2 AND lane = 1 AND nationality = \"hong kong\"", "question": "Which one has a rank bigger than 2, lane of 1, and is from Hong Kong?", "context": "CREATE TABLE table_name_55 (name VARCHAR, nationality VARCHAR, rank VARCHAR, lane VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_52 WHERE nationality = \"japan\" AND lane < 7 AND heat < 3", "question": "What rank is from Japan, has a lane smaller than 7 and a heat smaller than 3?", "context": "CREATE TABLE table_name_52 (rank INTEGER, heat VARCHAR, nationality VARCHAR, lane VARCHAR)"}, {"answer": "SELECT SUM(losses) FROM table_name_9 WHERE manager = \"jim hoff\" AND wins < 12", "question": "What was Jim Hoff's sum of losses and a wins smaller than 12?", "context": "CREATE TABLE table_name_9 (losses INTEGER, manager VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_42 WHERE years = \"1978\" AND games < 141", "question": "What was the average of games that were one in 1978 that were smaller than 141?", "context": "CREATE TABLE table_name_42 (wins INTEGER, years VARCHAR, games VARCHAR)"}, {"answer": "SELECT SUM(games) FROM table_name_80 WHERE manager = \"richie hebner\" AND wins < 34", "question": "What was the sum of Richie Hebner winning games that were smaller 34?", "context": "CREATE TABLE table_name_80 (games INTEGER, manager VARCHAR, wins VARCHAR)"}, {"answer": "SELECT AVG(wins) FROM table_name_91 WHERE games < 3 AND manager = \"george scherger\" AND losses < 1", "question": "What was the average of wins with manager George Scherger smaller than 3 and losses smaller than 1?", "context": "CREATE TABLE table_name_91 (wins INTEGER, losses VARCHAR, games VARCHAR, manager VARCHAR)"}, {"answer": "SELECT date FROM table_name_53 WHERE race = \"golden slipper\"", "question": "When was the golden slipper race?", "context": "CREATE TABLE table_name_53 (date VARCHAR, race VARCHAR)"}, {"answer": "SELECT race FROM table_name_78 WHERE weight__kg_ < 55.5", "question": "In which races did the jockey weigh less than 55.5 kg?", "context": "CREATE TABLE table_name_78 (race VARCHAR, weight__kg_ INTEGER)"}, {"answer": "SELECT result FROM table_name_28 WHERE venue = \"rosehill\" AND race = \"todman stakes\"", "question": "What was the result of the Todman stakes race at rosehill?", "context": "CREATE TABLE table_name_28 (result VARCHAR, venue VARCHAR, race VARCHAR)"}, {"answer": "SELECT country FROM table_name_80 WHERE player = \"ky laffoon\"", "question": "What Country has Player Ky Laffoon?", "context": "CREATE TABLE table_name_80 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_24 WHERE country = \"united states\" AND money___$__ = 356", "question": "What Player is from the Country United States and Money ($) of 356?", "context": "CREATE TABLE table_name_24 (player VARCHAR, country VARCHAR, money___$__ VARCHAR)"}, {"answer": "SELECT player FROM table_name_10 WHERE to_par = \"+1\" AND score = 75 - 70 - 71 - 73 = 289", "question": "What Player has a To par of +1 and the Score 75-70-71-73=289?", "context": "CREATE TABLE table_name_10 (player VARCHAR, to_par VARCHAR, score VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_73 WHERE tournament = \"rome 2, italy\"", "question": "What was the outcome for the Rome 2, Italy tournament?", "context": "CREATE TABLE table_name_73 (outcome VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_38 WHERE opponents_in_the_final = \"marius c\u0103lug\u0103ru ciprian petre porumb\"", "question": "What was the outcome of the match opponents in the final of Marius C\u0103lug\u0103ru Ciprian Petre Porumb?", "context": "CREATE TABLE table_name_38 (outcome VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_81 WHERE total = 11 AND bronze < 3", "question": "How many golds have a Total of 11, and a Bronze smaller than 3?", "context": "CREATE TABLE table_name_81 (gold INTEGER, total VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_34 WHERE bronze = 0 AND total > 1 AND nation = \"chad\" AND silver > 0", "question": "How many golds have a Bronze of 0, a Total larger than 1, a Nation of chad, and a Silver larger than 0?", "context": "CREATE TABLE table_name_34 (gold INTEGER, silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR)"}, {"answer": "SELECT MIN(silver) FROM table_name_7 WHERE gold = 1 AND nation = \"lithuania\"", "question": "What is the smallest silver with a Gold of 1, and a Nation of lithuania?", "context": "CREATE TABLE table_name_7 (silver INTEGER, gold VARCHAR, nation VARCHAR)"}, {"answer": "SELECT COUNT(bronze) FROM table_name_62 WHERE gold > 1 AND rank = 2 AND silver < 12", "question": "What is the total bronze with a Gold larger than 1, a Rank of 2, and a Silver smaller than 12?", "context": "CREATE TABLE table_name_62 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_59 WHERE date = \"december 23\"", "question": "Which Visiting Team is on december 23?", "context": "CREATE TABLE table_name_59 (visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_86 WHERE final_score = \"42-23\"", "question": "Which Host Team has Final Score of 42-23?", "context": "CREATE TABLE table_name_86 (host_team VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT date FROM table_name_64 WHERE final_score = \"31-7\"", "question": "When did Final Score of 31-7 happen?", "context": "CREATE TABLE table_name_64 (date VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT 2010 FROM table_name_74 WHERE 2011 = \"grand slam tournaments\"", "question": "Which Tournament in 2010 also has Grand Slam tournaments in 2011", "context": "CREATE TABLE table_name_74 (Id VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_81 WHERE opponent = \"new york mets\" AND record = \"51-33\"", "question": "What was the average attendance when the New York Mets were opponents with a record of 51-33?", "context": "CREATE TABLE table_name_81 (attendance INTEGER, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_36 WHERE date = \"october 18\"", "question": "What visiting team played on October 18?", "context": "CREATE TABLE table_name_36 (visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_49 WHERE stadium = \"3com park\" AND date = \"october 7\"", "question": "What visiting team played at 3com park on October 7?", "context": "CREATE TABLE table_name_49 (visiting_team VARCHAR, stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_55 WHERE final_score = \"13-10\"", "question": "Which host team won on a final scoreline of 13-10?", "context": "CREATE TABLE table_name_55 (host_team VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_30 WHERE final_score = \"27-34\"", "question": "In what stadium did a game result in a final scoreline reading 27-34?", "context": "CREATE TABLE table_name_30 (stadium VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_92 WHERE host_team = \"jacksonville jaguars\"", "question": "In the game in which the Jacksonville Jaguars were hosts, what was the name of the visiting team?", "context": "CREATE TABLE table_name_92 (visiting_team VARCHAR, host_team VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_77 WHERE final_score = \"18-40\"", "question": "Which visiting team wound up with a final score of 18-40?", "context": "CREATE TABLE table_name_77 (visiting_team VARCHAR, final_score VARCHAR)"}, {"answer": "SELECT SUM(attendance) FROM table_name_30 WHERE week = 16", "question": "Name the sum of attendacne for 16 weeks", "context": "CREATE TABLE table_name_30 (attendance INTEGER, week VARCHAR)"}, {"answer": "SELECT result FROM table_name_25 WHERE week < 7 AND game_site = \"los angeles memorial coliseum\"", "question": "Name the result for week less than 7 and game sites of los angeles memorial coliseum", "context": "CREATE TABLE table_name_25 (result VARCHAR, week VARCHAR, game_site VARCHAR)"}, {"answer": "SELECT result FROM table_name_14 WHERE week = 7", "question": "Name the result for week 7", "context": "CREATE TABLE table_name_14 (result VARCHAR, week VARCHAR)"}, {"answer": "SELECT COUNT(loss) FROM table_name_97 WHERE avg_g = \"3.6\" AND gain > 51", "question": "How many yards lost by the player with more gained than 51 and average/g of 3.6?", "context": "CREATE TABLE table_name_97 (loss VARCHAR, avg_g VARCHAR, gain VARCHAR)"}, {"answer": "SELECT SUM(gain) FROM table_name_43 WHERE avg_g = \"26.8\" AND loss < 13", "question": "What are the gains for the player with average of 26.8 and lost yard fewer than 13?", "context": "CREATE TABLE table_name_43 (gain INTEGER, avg_g VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE opponent_in_the_final = \"flavio cipolla\"", "question": "When did Mathieu play against Flavio Cipolla?", "context": "CREATE TABLE table_name_60 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_65 WHERE score_in_the_final = \"6\u20133, 6\u20132\"", "question": "Which tournament had a final score of 6\u20133, 6\u20132?", "context": "CREATE TABLE table_name_65 (tournament VARCHAR, score_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_84 WHERE opponent_in_the_final = \"antonio vei\u0107\"", "question": "On which surface did Mathieu play against Antonio Vei\u0107?", "context": "CREATE TABLE table_name_84 (surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_60 WHERE opponent_in_the_final = \"antonio vei\u0107\"", "question": "When did Mathieu play against Antonio Vei\u0107?", "context": "CREATE TABLE table_name_60 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT date FROM table_name_7 WHERE opponent_in_the_final = \"andrey golubev\"", "question": "When did Mathieu play against Andrey Golubev?", "context": "CREATE TABLE table_name_7 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT park FROM table_name_48 WHERE opened = \"1999\"", "question": "What park opened in 1999?", "context": "CREATE TABLE table_name_48 (park VARCHAR, opened VARCHAR)"}, {"answer": "SELECT record FROM table_name_39 WHERE home = \"detroit\" AND decision = \"denis\"", "question": "Name the record for detroit and decision of denis", "context": "CREATE TABLE table_name_39 (record VARCHAR, home VARCHAR, decision VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_78 WHERE visitor = \"dallas\"", "question": "Name the average attendance with dallas visitor", "context": "CREATE TABLE table_name_78 (attendance INTEGER, visitor VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_29 WHERE player = \"tom kite\"", "question": "How close to par was Tom Kite when he played?", "context": "CREATE TABLE table_name_29 (to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT country FROM table_name_8 WHERE score = 71 - 72 = 143", "question": "Which of the countries showed a score of 71-72=143?", "context": "CREATE TABLE table_name_8 (country VARCHAR, score VARCHAR)"}, {"answer": "SELECT country FROM table_name_44 WHERE place = \"t9\" AND score = 72 - 72 = 144 AND player = \"tom watson\"", "question": "Which country watch Tom Watson at t9 score 72-72=144?", "context": "CREATE TABLE table_name_44 (country VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_97 WHERE to_par = \"e\"", "question": "What was the final score when the player was an e to par?", "context": "CREATE TABLE table_name_97 (score VARCHAR, to_par VARCHAR)"}, {"answer": "SELECT team FROM table_name_7 WHERE attempts = \"307\"", "question": "What is the name of the team that has 307 attempts?", "context": "CREATE TABLE table_name_7 (team VARCHAR, attempts VARCHAR)"}, {"answer": "SELECT team FROM table_name_8 WHERE attempts = \"1,317\"", "question": "What is the name of the team that has 1,317 attempts?", "context": "CREATE TABLE table_name_8 (team VARCHAR, attempts VARCHAR)"}, {"answer": "SELECT year FROM table_name_68 WHERE yards = \"2,242\"", "question": "What year was 2,242 yards achieved?", "context": "CREATE TABLE table_name_68 (year VARCHAR, yards VARCHAR)"}, {"answer": "SELECT team FROM table_name_16 WHERE completion__percentage = \"59.8%\"", "question": "Which team has a 59.8% completion rate?", "context": "CREATE TABLE table_name_16 (team VARCHAR, completion__percentage VARCHAR)"}, {"answer": "SELECT COUNT(year) FROM table_name_31 WHERE engine = \"maserati straight-6\"", "question": "Which year has has a Engine of maserati straight-6?", "context": "CREATE TABLE table_name_31 (year VARCHAR, engine VARCHAR)"}, {"answer": "SELECT points FROM table_name_91 WHERE chassis = \"lancia d50\" AND year = 1954", "question": "What is the Point of Chassis of Lancia d50 in 1954", "context": "CREATE TABLE table_name_91 (points VARCHAR, chassis VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(matches) FROM table_name_26 WHERE high_score = \"299\" AND innings < 412", "question": "What is the match total for a score over 299 and under 412 innings?", "context": "CREATE TABLE table_name_26 (matches INTEGER, high_score VARCHAR, innings VARCHAR)"}, {"answer": "SELECT MAX(runs) FROM table_name_96 WHERE high_score = \"385\" AND innings < 407", "question": "What is the high run total associated with a high score of 385 and under 407 innings?", "context": "CREATE TABLE table_name_96 (runs INTEGER, high_score VARCHAR, innings VARCHAR)"}, {"answer": "SELECT team_1 FROM table_name_46 WHERE team_2 = \"union douala\"", "question": "What Team 1 has union douala as Team 2?", "context": "CREATE TABLE table_name_46 (team_1 VARCHAR, team_2 VARCHAR)"}, {"answer": "SELECT score FROM table_name_91 WHERE loss = \"cerutti (0-1)\"", "question": "What was the score of the game that had a loss of Cerutti (0-1)?", "context": "CREATE TABLE table_name_91 (score VARCHAR, loss VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_73 WHERE record = \"93-54\"", "question": "Who was the opponent at the game that had a record of 93-54?", "context": "CREATE TABLE table_name_73 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT COUNT(to_par) FROM table_name_37 WHERE total > 156", "question": "What was the score to par for 156 strokes?", "context": "CREATE TABLE table_name_37 (to_par VARCHAR, total INTEGER)"}, {"answer": "SELECT AVG(total) FROM table_name_69 WHERE to_par > 9 AND player = \"arnold palmer\"", "question": "How many strokes for arnold palmer with a to par of greater than 9?", "context": "CREATE TABLE table_name_69 (total INTEGER, to_par VARCHAR, player VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_74 WHERE year_s__won = \"1960\"", "question": "What was the score to par in 1960?", "context": "CREATE TABLE table_name_74 (to_par VARCHAR, year_s__won VARCHAR)"}, {"answer": "SELECT MIN(first_game) FROM table_name_78 WHERE lost = 7 AND drawn < 0", "question": "What is the earliest first game for a rugby team that has 7 lost games and 0 draws?", "context": "CREATE TABLE table_name_78 (first_game INTEGER, lost VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT SUM(played) FROM table_name_55 WHERE percentage = \"0.00%\" AND drawn < 0", "question": "How many games were played by a team that won 0.00% of their games and 0 draws?", "context": "CREATE TABLE table_name_55 (played INTEGER, percentage VARCHAR, drawn VARCHAR)"}, {"answer": "SELECT 1 AS st_match FROM table_name_61 WHERE team = \"brisbane bears\"", "question": "Name the 1st match for brisbane bears", "context": "CREATE TABLE table_name_61 (team VARCHAR)"}, {"answer": "SELECT lost FROM table_name_66 WHERE matches = \"1 928\"", "question": "Name the lost for matches of 1 928", "context": "CREATE TABLE table_name_66 (lost VARCHAR, matches VARCHAR)"}, {"answer": "SELECT lost FROM table_name_64 WHERE _percentage_won = \"55.37\"", "question": "Name the lost for % won of 55.37", "context": "CREATE TABLE table_name_64 (lost VARCHAR, _percentage_won VARCHAR)"}, {"answer": "SELECT matches FROM table_name_11 WHERE team = \"gold coast\"", "question": "Name the matches for gold coast", "context": "CREATE TABLE table_name_11 (matches VARCHAR, team VARCHAR)"}, {"answer": "SELECT lost FROM table_name_46 WHERE _percentage_won = \"55.37\"", "question": "Name the lost for % won of 55.37", "context": "CREATE TABLE table_name_46 (lost VARCHAR, _percentage_won VARCHAR)"}, {"answer": "SELECT year FROM table_name_99 WHERE cable = \"4.6%\"", "question": "What is the year when cable was 4.6%?", "context": "CREATE TABLE table_name_99 (year VARCHAR, cable VARCHAR)"}, {"answer": "SELECT other FROM table_name_54 WHERE year = \"2012\"", "question": "What is the other for 2012?", "context": "CREATE TABLE table_name_54 (other VARCHAR, year VARCHAR)"}, {"answer": "SELECT xdsl FROM table_name_1 WHERE other = \"0.6%\" AND fttx = \"35.4%\"", "question": "What is the xDSL for the other of 0.6% and FTTx of 35.4%?", "context": "CREATE TABLE table_name_1 (xdsl VARCHAR, other VARCHAR, fttx VARCHAR)"}, {"answer": "SELECT other FROM table_name_15 WHERE xdsl = \"78.2%\"", "question": "What is the other for a 78.2% xDSL?", "context": "CREATE TABLE table_name_15 (other VARCHAR, xdsl VARCHAR)"}, {"answer": "SELECT xdsl FROM table_name_55 WHERE other = \"0.6%\" AND year = \"2010\"", "question": "What is the xDSL in 2010 when the other was 0.6%?", "context": "CREATE TABLE table_name_55 (xdsl VARCHAR, other VARCHAR, year VARCHAR)"}, {"answer": "SELECT date FROM table_name_23 WHERE result = \"won\" AND score = \"1-0\"", "question": "Which date has a Result of won, and a Score of 1-0?", "context": "CREATE TABLE table_name_23 (date VARCHAR, result VARCHAR, score VARCHAR)"}, {"answer": "SELECT result FROM table_name_86 WHERE date = \"november 2, 2007\"", "question": "Which result has a Date of november 2, 2007?", "context": "CREATE TABLE table_name_86 (result VARCHAR, date VARCHAR)"}, {"answer": "SELECT competition FROM table_name_7 WHERE score = \"2-0\"", "question": "Which Competition has a Score of 2-0?", "context": "CREATE TABLE table_name_7 (competition VARCHAR, score VARCHAR)"}, {"answer": "SELECT venue FROM table_name_51 WHERE date = \"january 9, 2011\"", "question": "Which Venue has a Date of january 9, 2011?", "context": "CREATE TABLE table_name_51 (venue VARCHAR, date VARCHAR)"}, {"answer": "SELECT termination_of_mission FROM table_name_58 WHERE presentation_of_credentials = \"july 4, 1898\"", "question": "What is the termination of mission date of the representative with a presentation of credentials date on July 4, 1898?", "context": "CREATE TABLE table_name_58 (termination_of_mission VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT presentation_of_credentials FROM table_name_7 WHERE title = \"ambassador extraordinary and plenipotentiary\" AND representative = \"ra\u00fal h. castro\"", "question": "What is the presentation of credentials date of ra\u00fal h. castro, who has a title of ambassador extraordinary and plenipotentiary?", "context": "CREATE TABLE table_name_7 (presentation_of_credentials VARCHAR, title VARCHAR, representative VARCHAR)"}, {"answer": "SELECT representative FROM table_name_32 WHERE presentation_of_credentials = \"february 23, 1854\"", "question": "Who is the representative with a presentation of credentials date on February 23, 1854?", "context": "CREATE TABLE table_name_32 (representative VARCHAR, presentation_of_credentials VARCHAR)"}, {"answer": "SELECT title FROM table_name_52 WHERE appointed_by = \"james k. polk\"", "question": "What is the title of the representative appointed by James K. Polk?", "context": "CREATE TABLE table_name_52 (title VARCHAR, appointed_by VARCHAR)"}, {"answer": "SELECT termination_of_mission FROM table_name_37 WHERE appointed_by = \"franklin pierce\" AND title = \"charg\u00e9 d'affaires\"", "question": "What is the termination of mission date of the representative appointed by Franklin Pierce with a title of charg\u00e9 d'affaires?", "context": "CREATE TABLE table_name_37 (termination_of_mission VARCHAR, appointed_by VARCHAR, title VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_41 WHERE date = \"november 29\"", "question": "What is the Stadium held on november 29?", "context": "CREATE TABLE table_name_41 (stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_99 WHERE date = \"december 20\"", "question": "Who is the Visiting team on december 20?", "context": "CREATE TABLE table_name_99 (visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_44 WHERE visiting_team = \"pittsburgh steelers\"", "question": "Which Stadium has a Visiting team of pittsburgh steelers?", "context": "CREATE TABLE table_name_44 (stadium VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_61 WHERE visiting_team = \"chicago bears\"", "question": "Who is the Host team that has a chicago bears as a visiting team?", "context": "CREATE TABLE table_name_61 (host_team VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT final_score FROM table_name_48 WHERE date = \"november 22\"", "question": "What is the Final score on november 22?", "context": "CREATE TABLE table_name_48 (final_score VARCHAR, date VARCHAR)"}, {"answer": "SELECT host_team FROM table_name_71 WHERE visiting_team = \"indianapolis colts\"", "question": "What is the Host team that has indianapolis colts as a Visiting team?", "context": "CREATE TABLE table_name_71 (host_team VARCHAR, visiting_team VARCHAR)"}, {"answer": "SELECT winners FROM table_name_34 WHERE runners_up = \"np cooper av cooke\"", "question": "Who won when np cooper av cooke was runner up?", "context": "CREATE TABLE table_name_34 (winners VARCHAR, runners_up VARCHAR)"}, {"answer": "SELECT record FROM table_name_35 WHERE time = \"1:44\"", "question": "What was the record of the match that had a time of 1:44?", "context": "CREATE TABLE table_name_35 (record VARCHAR, time VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_54 WHERE event = \"gcm \u2013 d.o.g. 4\"", "question": "Who was the opponent at GCM \u2013 D.O.G. 4?", "context": "CREATE TABLE table_name_54 (opponent VARCHAR, event VARCHAR)"}, {"answer": "SELECT location FROM table_name_48 WHERE round < 2 AND opponent = \"hikaru sato\"", "question": "What was the location of the match that ended before round 2, against Hikaru Sato?", "context": "CREATE TABLE table_name_48 (location VARCHAR, round VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT company_or_product_name FROM table_name_25 WHERE money_requested__\u00a3_ = \"75,000\" AND entrepreneur_s_ = \"geoff and colette bell\"", "question": "What was the Company or Product name where Entrepreneurs Geoff and Colette Bell requested \u00a375,000?", "context": "CREATE TABLE table_name_25 (company_or_product_name VARCHAR, money_requested__\u00a3_ VARCHAR, entrepreneur_s_ VARCHAR)"}, {"answer": "SELECT investing_dragon_s_ FROM table_name_82 WHERE episode = \"episode 9\" AND entrepreneur_s_ = \"ashley sayed\"", "question": "Which Investing Dragon(s) belong to Episode 9 with the Entrepreneur Ashley Sayed?", "context": "CREATE TABLE table_name_82 (investing_dragon_s_ VARCHAR, episode VARCHAR, entrepreneur_s_ VARCHAR)"}, {"answer": "SELECT episode FROM table_name_99 WHERE entrepreneur_s_ = \"luke booth and christopher eves\"", "question": "What Episode did Entrepreneur(s) Luke Booth and Christopher Eves take part?", "context": "CREATE TABLE table_name_99 (episode VARCHAR, entrepreneur_s_ VARCHAR)"}, {"answer": "SELECT company_or_product_name FROM table_name_17 WHERE episode = \"episode 11\" AND money_requested__\u00a3_ = \"70,000\"", "question": "Which Company or Product name requested \u00a370,000 on Episode 11?", "context": "CREATE TABLE table_name_17 (company_or_product_name VARCHAR, episode VARCHAR, money_requested__\u00a3_ VARCHAR)"}, {"answer": "SELECT MIN(height) FROM table_name_52 WHERE player = \"stephen arigbabu\"", "question": "What is stephen arigbabu's height?", "context": "CREATE TABLE table_name_52 (height INTEGER, player VARCHAR)"}, {"answer": "SELECT MAX(attendance) FROM table_name_12 WHERE visitor = \"los angeles\"", "question": "For all games with los angeles as visitor, what is the highest attendance of all?", "context": "CREATE TABLE table_name_12 (attendance INTEGER, visitor VARCHAR)"}, {"answer": "SELECT AVG(attendance) FROM table_name_1 WHERE home = \"calgary\"", "question": "For all games with calgary as home, what is the average number of attendees?", "context": "CREATE TABLE table_name_1 (attendance INTEGER, home VARCHAR)"}, {"answer": "SELECT no5 FROM table_name_29 WHERE no1 = \"lena claudisabel\" AND no2 = \"lena sylvie\"", "question": "Who is no. 5 when Lena Claudisabel is no. 1 and Lena Sylvie is no. 2?", "context": "CREATE TABLE table_name_29 (no5 VARCHAR, no1 VARCHAR, no2 VARCHAR)"}, {"answer": "SELECT no3 FROM table_name_62 WHERE no1 = \"claudio sylvie\"", "question": "Who is no.3 when Claudio Sylvie is no.1?", "context": "CREATE TABLE table_name_62 (no3 VARCHAR, no1 VARCHAR)"}, {"answer": "SELECT score FROM table_name_77 WHERE record = \"18-20\"", "question": "What was the score of the game when the record was 18-20?", "context": "CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT partner FROM table_name_7 WHERE opponents_in_the_final = \"flavio cipolla simone vagnozzi\"", "question": "Who was the Partner for Flavio Cipolla Simone Vagnozzi Opponents in the final?", "context": "CREATE TABLE table_name_7 (partner VARCHAR, opponents_in_the_final VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_62 WHERE surface = \"carpet (i)\"", "question": "Who were the Opponents in the final that played on a carpet (i) Surface?", "context": "CREATE TABLE table_name_62 (opponents_in_the_final VARCHAR, surface VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_70 WHERE surface = \"clay\" AND tournament = \"dortmund\"", "question": "Played on Clay Surface, what was the Score of the Dortmund Tournament?", "context": "CREATE TABLE table_name_70 (score_in_the_final VARCHAR, surface VARCHAR, tournament VARCHAR)"}, {"answer": "SELECT opponents_in_the_final FROM table_name_38 WHERE partner = \"frederik nielsen\"", "question": "Who is Partner Frederik Nielsen's Opponents in the final?", "context": "CREATE TABLE table_name_38 (opponents_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT score_in_the_final FROM table_name_48 WHERE partner = \"tomas behrend\"", "question": "What is Partner Tomas Behrend's Score in the final?", "context": "CREATE TABLE table_name_48 (score_in_the_final VARCHAR, partner VARCHAR)"}, {"answer": "SELECT country FROM table_name_67 WHERE player = \"larry mize\"", "question": "What Country does Larry Mize play for?", "context": "CREATE TABLE table_name_67 (country VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_20 WHERE year_s__won = \"1976\"", "question": "What is the winning total from 1976?", "context": "CREATE TABLE table_name_20 (total INTEGER, year_s__won VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_42 WHERE owner = \"michael e. pegram\"", "question": "What year was owner Michael E. Pegram's last win?", "context": "CREATE TABLE table_name_42 (year INTEGER, owner VARCHAR)"}, {"answer": "SELECT trainer FROM table_name_94 WHERE owner = \"cherry valley farm\"", "question": "Who is the trainer for Cherry Valley Farm?", "context": "CREATE TABLE table_name_94 (trainer VARCHAR, owner VARCHAR)"}, {"answer": "SELECT owner FROM table_name_75 WHERE year > 2009 AND winner = \"blueeyesintherein\"", "question": "Who owned winner Blueeyesintherein after 2009?", "context": "CREATE TABLE table_name_75 (owner VARCHAR, year VARCHAR, winner VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_8 WHERE record = \"33-15\"", "question": "Who was the Blue Jays' opponent when their record was 33-15?", "context": "CREATE TABLE table_name_8 (opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_3 WHERE record = \"36-20\"", "question": "Who did the Blue Jays lose to when their record was 36-20?", "context": "CREATE TABLE table_name_3 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT rank FROM table_name_3 WHERE qual = \"141.471\"", "question": "What is the rank of the qual 141.471?", "context": "CREATE TABLE table_name_3 (rank VARCHAR, qual VARCHAR)"}, {"answer": "SELECT start FROM table_name_18 WHERE laps = 55", "question": "What is the start of lap 55?", "context": "CREATE TABLE table_name_18 (start VARCHAR, laps VARCHAR)"}, {"answer": "SELECT rank FROM table_name_63 WHERE year = \"1956\"", "question": "What is rank of the year 1956?", "context": "CREATE TABLE table_name_63 (rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT laps FROM table_name_78 WHERE rank = \"13\"", "question": "What is the lap number for the rank of 13?", "context": "CREATE TABLE table_name_78 (laps VARCHAR, rank VARCHAR)"}, {"answer": "SELECT rank FROM table_name_33 WHERE year = \"1961\"", "question": "What is the rank for 1961?", "context": "CREATE TABLE table_name_33 (rank VARCHAR, year VARCHAR)"}, {"answer": "SELECT SUM(laps) FROM table_name_60 WHERE finish = \"24\"", "question": "What is the sum of the lap with a finish of 24?", "context": "CREATE TABLE table_name_60 (laps INTEGER, finish VARCHAR)"}, {"answer": "SELECT band FROM table_name_17 WHERE album_or_song = \"self versus self - immersion\"", "question": "Which band plays Self Versus Self - Immersion?", "context": "CREATE TABLE table_name_17 (band VARCHAR, album_or_song VARCHAR)"}, {"answer": "SELECT event FROM table_name_11 WHERE method = \"submission (rear naked choke)\" AND record = \"9-4\"", "question": "What Event used submission (rear naked choke) with 9-4?", "context": "CREATE TABLE table_name_11 (event VARCHAR, method VARCHAR, record VARCHAR)"}, {"answer": "SELECT event FROM table_name_41 WHERE opponent = \"donald ouimet\"", "question": "What event was Donald Ouimet involved?", "context": "CREATE TABLE table_name_41 (event VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT event FROM table_name_37 WHERE position = \"3rd\" AND year = 2010", "question": "What event did she finish 3rd in 2010?", "context": "CREATE TABLE table_name_37 (event VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_95 WHERE venue = \"tampere, finland\"", "question": "What year did she compete in tampere, finland?", "context": "CREATE TABLE table_name_95 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT place FROM table_name_77 WHERE score > 66 AND player = \"ben hogan\"", "question": "Ben Hogan with a score larger than 66 had a place listed of what?", "context": "CREATE TABLE table_name_77 (place VARCHAR, score VARCHAR, player VARCHAR)"}, {"answer": "SELECT player FROM table_name_27 WHERE score = 70", "question": "With a score of 70, this player's name is listed as what?", "context": "CREATE TABLE table_name_27 (player VARCHAR, score VARCHAR)"}, {"answer": "SELECT to_par FROM table_name_69 WHERE score < 71 AND place = \"t6\"", "question": "With a score smaller than 71 along with a place of t6, what is the To par score?", "context": "CREATE TABLE table_name_69 (to_par VARCHAR, score VARCHAR, place VARCHAR)"}, {"answer": "SELECT hanyu_pinyin FROM table_name_98 WHERE gdp_2011__billion_yuan_ > 688.02 AND regional_population_2010_ = \"8,700,400\"", "question": "Which Hanyu Pinyin has a GDP in 2011 larger than 688.02 billion yuan and a regional population of 8,700,400 in 2010?", "context": "CREATE TABLE table_name_98 (hanyu_pinyin VARCHAR, gdp_2011__billion_yuan_ VARCHAR, regional_population_2010_ VARCHAR)"}, {"answer": "SELECT hanzi FROM table_name_92 WHERE regional_population_2010_ = \"4,591,972\"", "question": "Which Hanzi has a Regional Population of 4,591,972 in 2010?", "context": "CREATE TABLE table_name_92 (hanzi VARCHAR, regional_population_2010_ VARCHAR)"}, {"answer": "SELECT name FROM table_name_19 WHERE rank < 5 AND time < 55.62 AND lane < 5 AND nationality = \"netherlands\"", "question": "What is the Name of the person from the Netherlands in a Lane lower than 5, with a Rank better than 5, and a time of less than 55.62?", "context": "CREATE TABLE table_name_19 (name VARCHAR, nationality VARCHAR, lane VARCHAR, rank VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_59 WHERE name = \"karen pickering\" AND time < 55.71", "question": "What is the highest Rank of Karen Pickering when she had a time of less than 55.71?", "context": "CREATE TABLE table_name_59 (rank INTEGER, name VARCHAR, time VARCHAR)"}, {"answer": "SELECT MAX(lane) FROM table_name_68 WHERE time > 55.94 AND rank > 8", "question": "What is the highest Lane number of a person with a time of 55.94 with a Rank that's bigger than 8?", "context": "CREATE TABLE table_name_68 (lane INTEGER, time VARCHAR, rank VARCHAR)"}, {"answer": "SELECT date FROM table_name_85 WHERE loss = \"burns (0-1)\"", "question": "What was the date of the game that had a loss of Burns (0-1)?", "context": "CREATE TABLE table_name_85 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT loss FROM table_name_77 WHERE record = \"20-16\"", "question": "What was the loss of the game when the record was 20-16?", "context": "CREATE TABLE table_name_77 (loss VARCHAR, record VARCHAR)"}, {"answer": "SELECT loss FROM table_name_22 WHERE attendance = \"18,769\"", "question": "What was the loss of the game that had an attendance of 18,769?", "context": "CREATE TABLE table_name_22 (loss VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE loss = \"geisel (0-1)\"", "question": "What was the date of the game that had a loss of Geisel (0-1)?", "context": "CREATE TABLE table_name_5 (date VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_12 WHERE opponent = \"royals\" AND attendance = \"12,699\"", "question": "What is the date of the game against the Royals that had an attendance of 12,699?", "context": "CREATE TABLE table_name_12 (date VARCHAR, opponent VARCHAR, attendance VARCHAR)"}, {"answer": "SELECT MAX(floors) FROM table_name_62 WHERE name = \"regions center\" AND rank < 11", "question": "When Regions center has a rank less than 11, what is the greatest number o floors?", "context": "CREATE TABLE table_name_62 (floors INTEGER, name VARCHAR, rank VARCHAR)"}, {"answer": "SELECT AVG(rank) FROM table_name_84 WHERE floors = 24", "question": "What is the average rank for a building with 24 floors?", "context": "CREATE TABLE table_name_84 (rank INTEGER, floors VARCHAR)"}, {"answer": "SELECT SUM(rank) FROM table_name_89 WHERE name = \"omni nashville hotel\"", "question": "What is the rank for Omni nashville hotel?", "context": "CREATE TABLE table_name_89 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT MAX(rank) FROM table_name_27 WHERE name = \"fifth third center\"", "question": "What is the greatest rank for Fifth third center?", "context": "CREATE TABLE table_name_27 (rank INTEGER, name VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_77 WHERE floors < 23 AND height_ft__m_ = \"292 (89)\" AND rank < 14", "question": "When a building is 292 (89) ft (m) tall, has less than 23 floors, and ranks less than 14, what is the average year?", "context": "CREATE TABLE table_name_77 (year INTEGER, rank VARCHAR, floors VARCHAR, height_ft__m_ VARCHAR)"}, {"answer": "SELECT regular_season___preseason FROM table_name_70 WHERE date = \"august 25, 2007\"", "question": "What type of regular season/preseason game was played on August 25, 2007?", "context": "CREATE TABLE table_name_70 (regular_season___preseason VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_36 WHERE date = \"august 22, 2008\"", "question": "In what stadium was the game on August 22, 2008 played?", "context": "CREATE TABLE table_name_36 (stadium VARCHAR, date VARCHAR)"}, {"answer": "SELECT stadium FROM table_name_89 WHERE home_team = \"dallas cowboys 21\"", "question": "In what stadium was the home team Dallas Cowboys 21?", "context": "CREATE TABLE table_name_89 (stadium VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT date FROM table_name_28 WHERE home_team = \"dallas cowboys 34\"", "question": "On what date was the home team the Dallas Cowboys 34?", "context": "CREATE TABLE table_name_28 (date VARCHAR, home_team VARCHAR)"}, {"answer": "SELECT visiting_team FROM table_name_59 WHERE date = \"october 15, 2006\"", "question": "Who was the visiting team on October 15, 2006?", "context": "CREATE TABLE table_name_59 (visiting_team VARCHAR, date VARCHAR)"}, {"answer": "SELECT MIN(laps) FROM table_name_49 WHERE finish = \"7\" AND start = \"6\"", "question": "What's the smallest amount of Laps that had a finish of 7 with a start of 6?", "context": "CREATE TABLE table_name_49 (laps INTEGER, finish VARCHAR, start VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_36 WHERE gold < 3 AND silver > 1 AND rank = 6 AND nation = \"hungary\"", "question": "What is the smallest bronze with a Gold smaller than 3, and a Silver larger than 1, and a Rank of 6, and a Nation of hungary?", "context": "CREATE TABLE table_name_36 (bronze INTEGER, nation VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR)"}, {"answer": "SELECT AVG(bronze) FROM table_name_73 WHERE rank = 4 AND silver < 1", "question": "What is the average bronze with a rank of 4 and less than 1 silver?", "context": "CREATE TABLE table_name_73 (bronze INTEGER, rank VARCHAR, silver VARCHAR)"}, {"answer": "SELECT silver FROM table_name_74 WHERE gold > 4 AND rank = 1", "question": "Which silver has a Gold larger than 4, and a Rank of 1?", "context": "CREATE TABLE table_name_74 (silver VARCHAR, gold VARCHAR, rank VARCHAR)"}, {"answer": "SELECT MIN(bronze) FROM table_name_52 WHERE total = 3 AND nation = \"hungary\" AND gold < 0", "question": "What lowest bronze has a total of 3, a Nation of hungary, and a Gold smaller than 0?", "context": "CREATE TABLE table_name_52 (bronze INTEGER, gold VARCHAR, total VARCHAR, nation VARCHAR)"}, {"answer": "SELECT SUM(gold) FROM table_name_29 WHERE rank = 7 AND bronze = 1 AND silver < 0", "question": "How many gold have a Rank of 7, and a Bronze of 1, and a Silver smaller than 0?", "context": "CREATE TABLE table_name_29 (gold INTEGER, silver VARCHAR, rank VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_71 WHERE silver < 2 AND nation = \"ukraine\" AND gold < 3", "question": "How many Totals have a Silver smaller than 2, and a Nation of ukraine, and a Gold smaller than 3?", "context": "CREATE TABLE table_name_71 (total VARCHAR, gold VARCHAR, silver VARCHAR, nation VARCHAR)"}, {"answer": "SELECT player FROM table_name_17 WHERE season = \"2007\"", "question": "Which player played in 2007?", "context": "CREATE TABLE table_name_17 (player VARCHAR, season VARCHAR)"}, {"answer": "SELECT bowling FROM table_name_7 WHERE player = \"min patel\"", "question": "What was Min Patel's bowling?", "context": "CREATE TABLE table_name_7 (bowling VARCHAR, player VARCHAR)"}, {"answer": "SELECT week_1 FROM table_name_35 WHERE week_2 = \"piia jarkko\"", "question": "Who was the week 1 nomination when the week 2 nomination was Piia Jarkko?", "context": "CREATE TABLE table_name_35 (week_1 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT week_12 FROM table_name_10 WHERE week_9 = \"walked (day 11)\"", "question": "Who was the week 12 nomination when the week 9 nomination walked (day 11)?", "context": "CREATE TABLE table_name_10 (week_12 VARCHAR, week_9 VARCHAR)"}, {"answer": "SELECT week_12 FROM table_name_1 WHERE week_1 = \"maria maxine\" AND week_2 = \"henri satu\"", "question": "What is the week 12 nomination that had a week 1 nomination of Maria Maxine and a week 2 nomination of Henri Satu?", "context": "CREATE TABLE table_name_1 (week_12 VARCHAR, week_1 VARCHAR, week_2 VARCHAR)"}, {"answer": "SELECT height_m___ft__ FROM table_name_44 WHERE city_of_license = \"malone, ny\"", "question": "Name the heightfor city of license of malone, ny", "context": "CREATE TABLE table_name_44 (height_m___ft__ VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT class FROM table_name_74 WHERE call_sign = \"wmhn\"", "question": "Name the class with call sign of wmhn", "context": "CREATE TABLE table_name_74 (class VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT frequency FROM table_name_78 WHERE class = \"b\"", "question": "Name the frequency with class of b", "context": "CREATE TABLE table_name_78 (frequency VARCHAR, class VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_37 WHERE frequency = \"90.1 fm\"", "question": "Name the city of license with frequency of 90.1 fm", "context": "CREATE TABLE table_name_37 (city_of_license VARCHAR, frequency VARCHAR)"}, {"answer": "SELECT COUNT(erp___power_w) FROM table_name_34 WHERE frequency = \"89.3 fm\" AND facility_id < 40430", "question": "Name the total number of ERP/Power W for frequency of 89.3 fm and facility ID less than 40430", "context": "CREATE TABLE table_name_34 (erp___power_w VARCHAR, frequency VARCHAR, facility_id VARCHAR)"}, {"answer": "SELECT engine_s_ FROM table_name_68 WHERE tyres = \"f\" AND year = 1971", "question": "What is the Engine(s) that has  f Tyres in 1971?", "context": "CREATE TABLE table_name_68 (engine_s_ VARCHAR, tyres VARCHAR, year VARCHAR)"}, {"answer": "SELECT MIN(att) FROM table_name_6 WHERE date = \"june 27\"", "question": "What was the attendance on June 27?", "context": "CREATE TABLE table_name_6 (att INTEGER, date VARCHAR)"}, {"answer": "SELECT surface FROM table_name_3 WHERE date = \"12 september 2006\"", "question": "Name the surface for 12 september 2006", "context": "CREATE TABLE table_name_3 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT score FROM table_name_46 WHERE opponent_in_the_final = \"paul baccanello\"", "question": "Name the score for opponent in the final being paul baccanello", "context": "CREATE TABLE table_name_46 (score VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT surface FROM table_name_5 WHERE date = \"20 march 2007\"", "question": "Name the surface for 20 march 2007", "context": "CREATE TABLE table_name_5 (surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT date FROM table_name_5 WHERE opponent_in_the_final = \"ignasi villacampa\"", "question": "Name the date for opponent in the final being ignasi villacampa", "context": "CREATE TABLE table_name_5 (date VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT tournament FROM table_name_11 WHERE surface = \"grass\" AND opponent_in_the_final = \"paul baccanello\"", "question": "Name the tournament for grass surface and opponent in the final being paul baccanello", "context": "CREATE TABLE table_name_11 (tournament VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)"}, {"answer": "SELECT MIN(year) FROM table_name_43 WHERE location = \"milan\" AND champion = \"guillermo vilas\"", "question": "When is the earliest year in milan that guillermo vilas was champion?", "context": "CREATE TABLE table_name_43 (year INTEGER, location VARCHAR, champion VARCHAR)"}, {"answer": "SELECT location FROM table_name_13 WHERE year > 1985 AND runner_up = \"tim mayotte\"", "question": "Where in 1985 was tim mayotte runner up?", "context": "CREATE TABLE table_name_13 (location VARCHAR, year VARCHAR, runner_up VARCHAR)"}, {"answer": "SELECT score FROM table_name_68 WHERE year > 1978 AND champion = \"stefan edberg\"", "question": "What was the score when stefan edberg won after 1978?", "context": "CREATE TABLE table_name_68 (score VARCHAR, year VARCHAR, champion VARCHAR)"}, {"answer": "SELECT MAX(facility_id) FROM table_name_52 WHERE city_of_license = \"wheeling\" AND erp_kw < 4.5", "question": "What is the Facility ID that has a City of license of wheeling, and a ERP kW less than 4.5?", "context": "CREATE TABLE table_name_52 (facility_id INTEGER, city_of_license VARCHAR, erp_kw VARCHAR)"}, {"answer": "SELECT city_of_license FROM table_name_45 WHERE erp_kw > 4.5 AND station = \"w23dr-d\"", "question": "What is the City of license that has a ERP kW more than 4.5 and w23dr-d?", "context": "CREATE TABLE table_name_45 (city_of_license VARCHAR, erp_kw VARCHAR, station VARCHAR)"}, {"answer": "SELECT location FROM table_name_46 WHERE date_of_demolition = 1940 AND church_name = \"christ church greyfriars\"", "question": "What is the location that has a date of demolition of 1940 and has a church named Christ Church Greyfriars?", "context": "CREATE TABLE table_name_46 (location VARCHAR, date_of_demolition VARCHAR, church_name VARCHAR)"}, {"answer": "SELECT COUNT(date_of_demolition) FROM table_name_7 WHERE location = \"wood street\"", "question": "How many dates of demolition are located on Wood Street?", "context": "CREATE TABLE table_name_7 (date_of_demolition VARCHAR, location VARCHAR)"}, {"answer": "SELECT score FROM table_name_11 WHERE surface = \"clay\" AND date = \"19 may 2008\"", "question": "What was Olga Govortsova's score when she played on a clay surface on 19 May 2008?", "context": "CREATE TABLE table_name_11 (score VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT outcome FROM table_name_59 WHERE surface = \"grass\"", "question": "What was Olga Govortsova's outcome when she played on a grass surface?", "context": "CREATE TABLE table_name_59 (outcome VARCHAR, surface VARCHAR)"}, {"answer": "SELECT score FROM table_name_84 WHERE surface = \"clay\" AND date = \"26 may 2012\"", "question": "What was Olga Govortsova's goal when she played on a clay surface on 26 May 2012?", "context": "CREATE TABLE table_name_84 (score VARCHAR, surface VARCHAR, date VARCHAR)"}, {"answer": "SELECT mountain_range FROM table_name_35 WHERE rank = 19", "question": "Which mountain range has a rank of 19?", "context": "CREATE TABLE table_name_35 (mountain_range VARCHAR, rank VARCHAR)"}, {"answer": "SELECT location FROM table_name_41 WHERE mountain_range = \"coast mountains\" AND rank < 18 AND mountain_peak = \"skihist mountain\"", "question": "Which location includes Coast Mountains with a rank less than 18 at Skihist Mountain?", "context": "CREATE TABLE table_name_41 (location VARCHAR, mountain_peak VARCHAR, mountain_range VARCHAR, rank VARCHAR)"}, {"answer": "SELECT mountain_range FROM table_name_64 WHERE mountain_peak = \"mount hubbard\"", "question": "Which mountain range includes Mount Hubbard?", "context": "CREATE TABLE table_name_64 (mountain_range VARCHAR, mountain_peak VARCHAR)"}, {"answer": "SELECT province FROM table_name_25 WHERE mountain_range = \"axel heiberg island\"", "question": "Which province includes Axel Heiberg Island?", "context": "CREATE TABLE table_name_25 (province VARCHAR, mountain_range VARCHAR)"}, {"answer": "SELECT notes FROM table_name_94 WHERE position = \"12th\"", "question": "What are the notes of events that finished in 12th position?", "context": "CREATE TABLE table_name_94 (notes VARCHAR, position VARCHAR)"}, {"answer": "SELECT venue FROM table_name_40 WHERE position = \"2nd\" AND year = 1985", "question": "Which venue was finished in 2nd position in 1985?", "context": "CREATE TABLE table_name_40 (venue VARCHAR, position VARCHAR, year VARCHAR)"}, {"answer": "SELECT AVG(year) FROM table_name_97 WHERE venue = \"antwerp, belgium\"", "question": "What is the average year of events that took place in Antwerp, Belgium?", "context": "CREATE TABLE table_name_97 (year INTEGER, venue VARCHAR)"}, {"answer": "SELECT MAX(year) FROM table_name_42 WHERE notes = \"team competition\" AND venue = \"antwerp, belgium\"", "question": "What's the year of the event that took place most recently in Antwerp, Belgium with team competition notes?", "context": "CREATE TABLE table_name_42 (year INTEGER, notes VARCHAR, venue VARCHAR)"}, {"answer": "SELECT label FROM table_name_76 WHERE format = \"lp\" AND catalog = \"ch-9192\"", "question": "What was the label's format LP and catalog of CH-9192?", "context": "CREATE TABLE table_name_76 (label VARCHAR, format VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT date FROM table_name_66 WHERE catalog = \"chd-9192\"", "question": "When was Catalog CHD-9192 published?", "context": "CREATE TABLE table_name_66 (date VARCHAR, catalog VARCHAR)"}, {"answer": "SELECT fcc_info FROM table_name_64 WHERE frequency_mhz = 107.5", "question": "I need the FCC info on the radio Frequency MHz 107.5?", "context": "CREATE TABLE table_name_64 (fcc_info VARCHAR, frequency_mhz VARCHAR)"}, {"answer": "SELECT frequency_mhz FROM table_name_28 WHERE city_of_license = \"allapattah, florida\"", "question": "Give me the MHz Frequency of Allapattah, Florida.", "context": "CREATE TABLE table_name_28 (frequency_mhz VARCHAR, city_of_license VARCHAR)"}, {"answer": "SELECT class FROM table_name_10 WHERE call_sign = \"w298ak\"", "question": "What class does the w298ak sign belong to?", "context": "CREATE TABLE table_name_10 (class VARCHAR, call_sign VARCHAR)"}, {"answer": "SELECT class FROM table_name_9 WHERE erp_w = 800", "question": "What class is ERP W of 800?", "context": "CREATE TABLE table_name_9 (class VARCHAR, erp_w VARCHAR)"}, {"answer": "SELECT SUM(goals_conceded) FROM table_name_10 WHERE points < 21 AND lost < 8", "question": "What is the total of Goals Conceded that has Points smaller than 21 and a Lost thats smaller than 8?", "context": "CREATE TABLE table_name_10 (goals_conceded INTEGER, points VARCHAR, lost VARCHAR)"}, {"answer": "SELECT SUM(lost) FROM table_name_69 WHERE points > 28 AND draw = 5 AND place < 1", "question": "What's the total of Lost that's got Points larger than 28, Draw of 5, and Place that's smaller than 1?", "context": "CREATE TABLE table_name_69 (lost INTEGER, place VARCHAR, points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT SUM(goals_scored) FROM table_name_40 WHERE points < 27 AND team = \"c.d. atl\u00e9tico balboa\"", "question": "What's the total of Goals Scored with Points that's smaller than 27, and a Team of C.D. Atl\u00e9tico Balboa?", "context": "CREATE TABLE table_name_40 (goals_scored INTEGER, points VARCHAR, team VARCHAR)"}, {"answer": "SELECT MAX(played) FROM table_name_9 WHERE place > 10", "question": "What is listed as the Highest Played and that has a Place that is larger than 10?", "context": "CREATE TABLE table_name_9 (played INTEGER, place INTEGER)"}, {"answer": "SELECT MAX(played) FROM table_name_19 WHERE points = 17 AND draw < 5", "question": "What is listed as the Highest Played, has Points of 17, and Draw that is smaller than 5?", "context": "CREATE TABLE table_name_19 (played INTEGER, points VARCHAR, draw VARCHAR)"}, {"answer": "SELECT date FROM table_name_38 WHERE score = \"6-4\"", "question": "When was the game that ended with a score of 6-4?", "context": "CREATE TABLE table_name_38 (date VARCHAR, score VARCHAR)"}, {"answer": "SELECT score FROM table_name_39 WHERE date = \"april 8\"", "question": "What was the score on April 8?", "context": "CREATE TABLE table_name_39 (score VARCHAR, date VARCHAR)"}, {"answer": "SELECT decision FROM table_name_12 WHERE home = \"minnesota\"", "question": "What was the decision in Minnesota?", "context": "CREATE TABLE table_name_12 (decision VARCHAR, home VARCHAR)"}, {"answer": "SELECT score FROM table_name_80 WHERE record = \"58\u201315\u20138\"", "question": "Which score has a record of 58\u201315\u20138?", "context": "CREATE TABLE table_name_80 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT section FROM table_name_74 WHERE level = \"tier 3\" AND position = \"6th\" AND season = \"1937-38\"", "question": "Which section has a level of Tier 3, is in the 6th position, and is in the 1937-38 season?", "context": "CREATE TABLE table_name_74 (section VARCHAR, season VARCHAR, level VARCHAR, position VARCHAR)"}, {"answer": "SELECT section FROM table_name_8 WHERE position = \"6th\"", "question": "Which section is in the 6th position?", "context": "CREATE TABLE table_name_8 (section VARCHAR, position VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_92 WHERE date = \"june 11\"", "question": "Name the attendance with date of june 11", "context": "CREATE TABLE table_name_92 (attendance VARCHAR, date VARCHAR)"}, {"answer": "SELECT partnerships FROM table_name_70 WHERE runs = \"27\"", "question": "Which partnership has a run number of 27?", "context": "CREATE TABLE table_name_70 (partnerships VARCHAR, runs VARCHAR)"}, {"answer": "SELECT venue FROM table_name_79 WHERE partnerships = \"shoaib malik / misbah-ul-haq\"", "question": "What venue did the parntership of shoaib malik / misbah-ul-haq occur?", "context": "CREATE TABLE table_name_79 (venue VARCHAR, partnerships VARCHAR)"}, {"answer": "SELECT venue FROM table_name_74 WHERE partnerships = \"herschelle gibbs / justin kemp\"", "question": "What venue did the partnership of herschelle gibbs / justin kemp happen?", "context": "CREATE TABLE table_name_74 (venue VARCHAR, partnerships VARCHAR)"}, {"answer": "SELECT played FROM table_name_77 WHERE points_for = \"310\"", "question": "What is the number Played that has 310 Points for?", "context": "CREATE TABLE table_name_77 (played VARCHAR, points_for VARCHAR)"}, {"answer": "SELECT losing_bonus FROM table_name_62 WHERE points_against = \"588\"", "question": "What Losing bonus has a Points against of 588?", "context": "CREATE TABLE table_name_62 (losing_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT tries_against FROM table_name_43 WHERE losing_bonus = \"7\"", "question": "What Tries against has a Losing bonus of 7?", "context": "CREATE TABLE table_name_43 (tries_against VARCHAR, losing_bonus VARCHAR)"}, {"answer": "SELECT try_bonus FROM table_name_61 WHERE points_against = \"488\"", "question": "What Try bonus has a Points against of 488?", "context": "CREATE TABLE table_name_61 (try_bonus VARCHAR, points_against VARCHAR)"}, {"answer": "SELECT points_for FROM table_name_26 WHERE try_bonus = \"140\"", "question": "What Points for has a Try bonus of 140?", "context": "CREATE TABLE table_name_26 (points_for VARCHAR, try_bonus VARCHAR)"}, {"answer": "SELECT drawn FROM table_name_90 WHERE tries_against = \"0\"", "question": "What Drawn has a Tries against of 0?", "context": "CREATE TABLE table_name_90 (drawn VARCHAR, tries_against VARCHAR)"}, {"answer": "SELECT days_held FROM table_name_48 WHERE reign > 3 AND defenses = 1", "question": "What is the days held the champion with a reign larger than 3 and 1 defense has?", "context": "CREATE TABLE table_name_48 (days_held VARCHAR, reign VARCHAR, defenses VARCHAR)"}, {"answer": "SELECT days_held FROM table_name_1 WHERE reign > 3 AND defenses < 1", "question": "What is the days held the champion with a reign larger than 3 and less than 1 defense has?", "context": "CREATE TABLE table_name_1 (days_held VARCHAR, reign VARCHAR, defenses VARCHAR)"}, {"answer": "SELECT AVG(defenses) FROM table_name_57 WHERE days_held = \"404\" AND reign > 1", "question": "What is the average defenses a champion with 404 days held and a reign larger than 1 has?", "context": "CREATE TABLE table_name_57 (defenses INTEGER, days_held VARCHAR, reign VARCHAR)"}, {"answer": "SELECT MIN(defenses) FROM table_name_46 WHERE days_held = \"345\"", "question": "What is the lowest defense a champion with 345 days held has?", "context": "CREATE TABLE table_name_46 (defenses INTEGER, days_held VARCHAR)"}, {"answer": "SELECT date FROM table_name_6 WHERE record = \"76-72\"", "question": "On what date was there a record of 76-72?", "context": "CREATE TABLE table_name_6 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT attendance FROM table_name_58 WHERE loss = \"ponson (1-5)\"", "question": "What was the attendance that had a loss of Ponson (1-5)?", "context": "CREATE TABLE table_name_58 (attendance VARCHAR, loss VARCHAR)"}, {"answer": "SELECT date FROM table_name_70 WHERE record = \"36-39\"", "question": "On which day was there a record of 36-39?", "context": "CREATE TABLE table_name_70 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT date FROM table_name_88 WHERE record = \"30-31\"", "question": "On what day was the record 30-31?", "context": "CREATE TABLE table_name_88 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_82 WHERE loss = \"leonard (7\u20138)\"", "question": "Who was the opponent at the game that had a loss of Leonard (7\u20138)?", "context": "CREATE TABLE table_name_82 (opponent VARCHAR, loss VARCHAR)"}, {"answer": "SELECT score FROM table_name_3 WHERE record = \"18\u201343\"", "question": "What was the score of the game when the record was 18\u201343?", "context": "CREATE TABLE table_name_3 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_75 WHERE opponent = \"royals\" AND record = \"24\u201352\"", "question": "What was the score of the game against the Royals when the record was 24\u201352?", "context": "CREATE TABLE table_name_75 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_36 WHERE record = \"22\u201346\"", "question": "What was the score of the game when the record was 22\u201346?", "context": "CREATE TABLE table_name_36 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT real_name FROM table_name_51 WHERE primary_military_speciality = \"shock paratrooper\"", "question": "What is the real name of the person whose primary military specialty is shock paratrooper?", "context": "CREATE TABLE table_name_51 (real_name VARCHAR, primary_military_speciality VARCHAR)"}, {"answer": "SELECT birthplace FROM table_name_71 WHERE real_name = \"pete sanderson\"", "question": "What is the birthplace of Pete Sanderson?", "context": "CREATE TABLE table_name_71 (birthplace VARCHAR, real_name VARCHAR)"}, {"answer": "SELECT function__figure_ FROM table_name_30 WHERE real_name = \"jean-luc bouvier\"", "question": "What role did Jean-Luc Bouvier serve?", "context": "CREATE TABLE table_name_30 (function__figure_ VARCHAR, real_name VARCHAR)"}, {"answer": "SELECT real_name FROM table_name_28 WHERE function__figure_ = \"pilot of the silent attack kayak\"", "question": "What is the real name of the person who is a pilot of the silent attack kayak?", "context": "CREATE TABLE table_name_28 (real_name VARCHAR, function__figure_ VARCHAR)"}, {"answer": "SELECT code_name FROM table_name_94 WHERE birthplace = \"liverpool\"", "question": "What is the code name of the person born in Liverpool?", "context": "CREATE TABLE table_name_94 (code_name VARCHAR, birthplace VARCHAR)"}, {"answer": "SELECT name FROM table_name_25 WHERE sport = \"canoeing\"", "question": "What is the names for the medalist in the sport of canoeing?", "context": "CREATE TABLE table_name_25 (name VARCHAR, sport VARCHAR)"}, {"answer": "SELECT games FROM table_name_90 WHERE event = \"women's half middleweight\"", "question": "What games had the women's half middleweight event?", "context": "CREATE TABLE table_name_90 (games VARCHAR, event VARCHAR)"}, {"answer": "SELECT name FROM table_name_95 WHERE medal = \"bronze\" AND games = \"2000 sydney\"", "question": "Who received the bronze medal in the 2000 Sydney games?", "context": "CREATE TABLE table_name_95 (name VARCHAR, medal VARCHAR, games VARCHAR)"}, {"answer": "SELECT COUNT(attendance) FROM table_name_80 WHERE opponent = \"twins\"", "question": "How many people attended when opponent was twins?", "context": "CREATE TABLE table_name_80 (attendance VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT date FROM table_name_55 WHERE record = \"41-46\"", "question": "Which date has a Record of 41-46?", "context": "CREATE TABLE table_name_55 (date VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_66 WHERE record = \"48-55\"", "question": "Which score has a Record of 48-55?", "context": "CREATE TABLE table_name_66 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_96 WHERE record = \"44-49\"", "question": "Which score has a Record of 44-49?", "context": "CREATE TABLE table_name_96 (score VARCHAR, record VARCHAR)"}, {"answer": "SELECT score FROM table_name_92 WHERE opponent = \"white sox\" AND record = \"2-0\"", "question": "Which score has an Opponent of white sox, and a Record of 2-0?", "context": "CREATE TABLE table_name_92 (score VARCHAR, opponent VARCHAR, record VARCHAR)"}, {"answer": "SELECT AVG(popular_votes) FROM table_name_94 WHERE candidate = \"candice sjostrom\"", "question": "How many votes did candice sjostrom receive?", "context": "CREATE TABLE table_name_94 (popular_votes INTEGER, candidate VARCHAR)"}, {"answer": "SELECT percentage FROM table_name_23 WHERE candidate = \"chris wright\"", "question": "What percentage did chris wright receive?", "context": "CREATE TABLE table_name_23 (percentage VARCHAR, candidate VARCHAR)"}, {"answer": "SELECT AVG(popular_votes) FROM table_name_2 WHERE office = \"us representative 4\" AND percentage = \"1.59%\" AND year > 1992", "question": "How many votes for the candidate after 1992, 1.59% of the vote, and the office of us representative 4?", "context": "CREATE TABLE table_name_2 (popular_votes INTEGER, year VARCHAR, office VARCHAR, percentage VARCHAR)"}, {"answer": "SELECT years FROM table_name_36 WHERE representative = \"j. smith young\"", "question": "What years did J. Smith Young serve as a Representative?", "context": "CREATE TABLE table_name_36 (years VARCHAR, representative VARCHAR)"}, {"answer": "SELECT party FROM table_name_58 WHERE representative = \"thomas l. young\"", "question": "Which party did Thomas L. Young belong to?", "context": "CREATE TABLE table_name_58 (party VARCHAR, representative VARCHAR)"}, {"answer": "SELECT MIN(total) FROM table_name_57 WHERE gold = 0 AND bronze > 2 AND silver > 1", "question": "What is the lowest total amount of medals from countries with 0 gold medals, more than 2 bronze medals, and more than 1 silver medal?", "context": "CREATE TABLE table_name_57 (total INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR)"}, {"answer": "SELECT SUM(silver) FROM table_name_66 WHERE rank = \"14\" AND total < 1", "question": "What is the total number of silver medals for countries of rank 14, with less than 1 total medals?", "context": "CREATE TABLE table_name_66 (silver INTEGER, rank VARCHAR, total VARCHAR)"}, {"answer": "SELECT COUNT(total) FROM table_name_96 WHERE fumble_rec > 0 AND fumble_force = 0", "question": "How many tackles for the player with over 0 fumble recovries and 0 forced fumbles?", "context": "CREATE TABLE table_name_96 (total VARCHAR, fumble_rec VARCHAR, fumble_force VARCHAR)"}, {"answer": "SELECT COUNT(fumble_force) FROM table_name_20 WHERE solo < 2 AND player = \"jim laney\"", "question": "How many forced fumbles for jim laney with under 2 solo tackles?", "context": "CREATE TABLE table_name_20 (fumble_force VARCHAR, solo VARCHAR, player VARCHAR)"}, {"answer": "SELECT MAX(total) FROM table_name_31 WHERE solo > 15", "question": "What is the high total for players with over 15 solo tackles?", "context": "CREATE TABLE table_name_31 (total INTEGER, solo INTEGER)"}, {"answer": "SELECT SUM(fumble_rec) FROM table_name_65 WHERE sacks = \"0\" AND fumble_force = \"0\" AND player = \"scott gajos\" AND solo < 2", "question": "How many fumble recoveries for scott gajos with 0 forced fubmles, 0 sacks, and under 2 solo tackles?", "context": "CREATE TABLE table_name_65 (fumble_rec INTEGER, solo VARCHAR, player VARCHAR, sacks VARCHAR, fumble_force VARCHAR)"}, {"answer": "SELECT opponent FROM table_name_64 WHERE time = \"20:00 gmt\" AND ground = \"camp nou\"", "question": "Who is the Opponent playing at 20:00 GMT at Camp Nou?", "context": "CREATE TABLE table_name_64 (opponent VARCHAR, time VARCHAR, ground VARCHAR)"}, {"answer": "SELECT time FROM table_name_35 WHERE score = \"3-2\"", "question": "What time was the match played with a score of 3-2?", "context": "CREATE TABLE table_name_35 (time VARCHAR, score VARCHAR)"}, {"answer": "SELECT ground FROM table_name_83 WHERE opponent = \"aston villa\"", "question": "On which ground did the team play Aston Villa?", "context": "CREATE TABLE table_name_83 (ground VARCHAR, opponent VARCHAR)"}, {"answer": "SELECT competition FROM table_name_60 WHERE ground = \"san siro\" AND time = \"18:30 gmt\"", "question": "What kind of competition was it at San Siro at 18:30 GMT?", "context": "CREATE TABLE table_name_60 (competition VARCHAR, ground VARCHAR, time VARCHAR)"}, {"answer": "SELECT COUNT(decile) FROM table_name_34 WHERE name = \"redwood school\"", "question": "What is the total number of decile for the redwood school locality?", "context": "CREATE TABLE table_name_34 (decile VARCHAR, name VARCHAR)"}, {"answer": "SELECT report FROM table_name_71 WHERE circuit = \"tripoli\"", "question": "Which report includes a Circuit of Tripoli?", "context": "CREATE TABLE table_name_71 (report VARCHAR, circuit VARCHAR)"}]